commit f4e87ed80baaa139d3a72b188a5da7ffc055abb4 Author: Sébastien Delafond Date: Thu May 1 20:01:26 2014 +0200 Imported Upstream version 0.5 diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..99eaedeb --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test + +coverage.html +coverage*.out + +*.pyc + +_vendor/ + +gen +man/aptly.1.html +man/aptly.1.ronn \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..789f6a81 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: go + +go: + - 1.1 + - 1.2.1 + - tip + +env: + global: + - secure: "YSwtFrMqh4oUvdSQTXBXMHHLWeQgyNEL23ChIZwU0nuDGIcQZ65kipu0PzefedtUbK4ieC065YCUi4UDDh6gPotB/Wu1pnYg3dyQ7rFvhaVYAAUEpajAdXZhlx+7+J8a4FZMeC/kqiahxoRgLbthF9019ouIqhGB9zHKI6/yZwc=" + +install: + - make prepare + + +script: make travis + +matrix: + allow_failures: + - go: tip diff --git a/src/github.com/smira/aptly/Gomfile b/src/github.com/smira/aptly/Gomfile new file mode 100644 index 00000000..0af08a39 --- /dev/null +++ b/src/github.com/smira/aptly/Gomfile @@ -0,0 +1,22 @@ +gom 'code.google.com/p/go-uuid/uuid', :commit => '5fac954758f5' +gom 'code.google.com/p/go.crypto/ssh/terminal', :commit => '7aa593ce8cea' +gom 'code.google.com/p/gographviz', :commit => '212766062629' +gom 'code.google.com/p/snappy-go/snappy', :commit => '12e4b4183793' +gom 'github.com/cheggaaa/pb', :commit => '74be7a1388046f374ac36e93d46f5d56e856f827' +gom 'github.com/smira/commander' +gom 'github.com/smira/flag' +gom 'github.com/mkrautz/goar', :commit => '36eb5f3452b1283a211fa35bc00c646fd0db5c4b' +gom 'github.com/syndtr/goleveldb/leveldb', :commit => 'ff3719c6816e2cd194f05058452d660608e178ac' +gom 'github.com/ugorji/go/codec', :commit => '71c2886f5a673a35f909803f38ece5810165097b' +gom 'github.com/wsxiaoys/terminal/color', :commit => '5668e431776a7957528361f90ce828266c69ed08' + +group :test do + gom 'launchpad.net/gocheck' +end + +group :development do + gom 'github.com/golang/lint/golint' + gom 'github.com/mattn/goveralls' + gom 'github.com/axw/gocov/gocov' + gom 'code.google.com/p/go.tools/cmd/cover' +end diff --git a/src/github.com/smira/aptly/LICENSE b/src/github.com/smira/aptly/LICENSE new file mode 100644 index 00000000..aeb91a2c --- /dev/null +++ b/src/github.com/smira/aptly/LICENSE @@ -0,0 +1,21 @@ +Copyright 2013-2014 Andrey Smirnov. All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. \ No newline at end of file diff --git a/src/github.com/smira/aptly/Makefile b/src/github.com/smira/aptly/Makefile new file mode 100644 index 00000000..62d806a5 --- /dev/null +++ b/src/github.com/smira/aptly/Makefile @@ -0,0 +1,75 @@ +GOVERSION=$(shell go version | awk '{print $$3;}') +PACKAGES=database deb files http utils +ALL_PACKAGES=aptly cmd console database deb files http utils +BINPATH=$(abspath ./_vendor/bin) +GOM_ENVIRONMENT=-test +PYTHON?=python + +ifeq ($(GOVERSION), devel) +TRAVIS_TARGET=coveralls +GOM_ENVIRONMENT+=-development +else +TRAVIS_TARGET=test +endif + +ifeq ($(TRAVIS), true) +GOM=$(HOME)/gopath/bin/gom +else +GOM=gom +endif + +all: test check system-test + +prepare: + go get -u github.com/mattn/gom + $(GOM) $(GOM_ENVIRONMENT) install + +coverage.out: + rm -f coverage.*.out + for i in $(PACKAGES); do $(GOM) test -coverprofile=coverage.$$i.out -covermode=count ./$$i; done + echo "mode: count" > coverage.out + grep -v -h "mode: count" coverage.*.out >> coverage.out + rm -f coverage.*.out + +coverage: coverage.out + $(GOM) exec go tool cover -html=coverage.out + rm -f coverage.out + +check: + $(GOM) exec go tool vet -all=true -shadow=true $(ALL_PACKAGES:%=./%) + $(GOM) exec golint $(ALL_PACKAGES:%=./%) + +install: + $(GOM) build -o $(BINPATH)/aptly + +system-test: install +ifeq ($(GOVERSION),$(filter $(GOVERSION),go1.2 go1.2.1 devel)) + if [ ! -e ~/aptly-fixture-db ]; then git clone https://github.com/aptly-dev/aptly-fixture-db.git ~/aptly-fixture-db/; fi +endif + if [ ! -e ~/aptly-fixture-pool ]; then git clone https://github.com/aptly-dev/aptly-fixture-pool.git ~/aptly-fixture-pool/; fi + PATH=$(BINPATH)/:$(PATH) $(PYTHON) system/run.py --long + +travis: $(TRAVIS_TARGET) system-test + +test: + $(GOM) test -v ./... -gocheck.v=true + +coveralls: coverage.out + $(GOM) exec $(BINPATH)/goveralls -service travis-ci.org -coverprofile=coverage.out -repotoken=$(COVERALLS_TOKEN) + +mem.png: mem.dat mem.gp + gnuplot mem.gp + open mem.png + +package: + rm -rf root/ + mkdir -p root/usr/bin/ root/usr/share/man/man1/ root/etc/bash_completion.d + cp $(BINPATH)/aptly root/usr/bin + cp man/aptly.1 root/usr/share/man/man1 + (cd root/etc/bash_completion.d && wget https://raw.github.com/aptly-dev/aptly-bash-completion/master/aptly) + gzip root/usr/share/man/man1/aptly.1 + fpm -s dir -t deb -n aptly -v $(VERSION) --url=http://www.aptly.info/ --license=MIT --vendor="Andrey Smirnov " \ + -f -m "Andrey Smirnov " --description="Debian repository management tool" -C root/ . + mv aptly_$(VERSION)_*.deb ~ + +.PHONY: coverage.out diff --git a/src/github.com/smira/aptly/README.rst b/src/github.com/smira/aptly/README.rst new file mode 100644 index 00000000..9f71870b --- /dev/null +++ b/src/github.com/smira/aptly/README.rst @@ -0,0 +1,68 @@ +===== +aptly +===== + +.. image:: https://travis-ci.org/smira/aptly.png?branch=master + :target: https://travis-ci.org/smira/aptly + +.. image:: https://coveralls.io/repos/smira/aptly/badge.png?branch=HEAD + :target: https://coveralls.io/r/smira/aptly?branch=HEAD + +Aptly is a swiss army knife for Debian repository management. + +Documentation is available at `http://www.aptly.info/ `_. For support use +mailing list `aptly-discuss `_. + +Aptly features: ("+" means planned features) + +* make mirrors of remote Debian/Ubuntu repositories, limiting by components/architectures +* take snapshots of mirrors at any point in time, fixing state of repository at some moment of time +* publish snapshot as Debian repository, ready to be consumed by apt +* controlled update of one or more packages in snapshot from upstream mirror, tracking dependencies +* merge two or more snapshots into one +* filter repository by search query, pulling dependencies when required (+) +* publish self-made packages as Debian repositories (+) +* mirror repositories "as-is" (without resigning with user's key) (+) +* support for yum repositories (+) + +Current limitations: + +* debian-installer and translations not supported yet + +Download +-------- + +To install aptly on Debian/Ubuntu, add new repository to /etc/apt/sources.list:: + + deb http://repo.aptly.info/ squeeze main + +And import key that is used to sign the release:: + + $ gpg --keyserver keys.gnupg.net --recv-keys 2A194991 + $ gpg -a --export 2A194991 | sudo apt-key add - + +After that you can install aptly as any other software package:: + + $ apt-get update + $ apt-get install aptly + +Don't worry about squeeze part in repo name: aptly package should work on Debian squeeze+, +Ubuntu 10.0+. Package contains aptly binary, man page and bash completion. + +Binary executables (depends almost only on libc) are available for download from `Bintray `_. + +If you have Go environment set up, you can build aptly from source by running (go 1.1+ required):: + + go get -u github.com/mattn/gom + mkdir -p $GOPATH/src/github.com/smira/aptly + git clone https://github.com/smira/aptly $GOPATH/src/github.com/smira/aptly + cd $GOPATH/src/github.com/smira/aptly + gom -production install + gom build -o $GOPATH/bin/aptly + +Aptly is using `gom `_ to fix external dependencies, so regular ``go get github.com/smira/aptly`` +should work as well, but might fail or produce different result (if external libraries got updated). + +If you don't have Go installed (or older version), you can easily install Go using `gvm `_. + + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/CONTRIBUTORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/CONTRIBUTORS new file mode 100644 index 00000000..b382a04e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/CONTRIBUTORS @@ -0,0 +1 @@ +Paul Borman diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/lib/codereview/codereview.cfg b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/lib/codereview/codereview.cfg new file mode 100644 index 00000000..112c1c3e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/lib/codereview/codereview.cfg @@ -0,0 +1 @@ +defaultcc: borman@google.com diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/lib/codereview/codereview.py b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/lib/codereview/codereview.py new file mode 100644 index 00000000..adaff328 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/lib/codereview/codereview.py @@ -0,0 +1,3291 @@ +# coding=utf-8 +# (The line above is necessary so that I can use 世界 in the +# *comment* below without Python getting all bent out of shape.) + +# Copyright 2007-2009 Google Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +'''Mercurial interface to codereview.appspot.com. + +To configure, set the following options in +your repository's .hg/hgrc file. + + [extensions] + codereview = path/to/codereview.py + + [codereview] + server = codereview.appspot.com + +The server should be running Rietveld; see http://code.google.com/p/rietveld/. + +In addition to the new commands, this extension introduces +the file pattern syntax @nnnnnn, where nnnnnn is a change list +number, to mean the files included in that change list, which +must be associated with the current client. + +For example, if change 123456 contains the files x.go and y.go, +"hg diff @123456" is equivalent to"hg diff x.go y.go". +''' + +from mercurial import cmdutil, commands, hg, util, error, match +from mercurial.node import nullrev, hex, nullid, short +import os, re, time +import stat +import subprocess +import threading +from HTMLParser import HTMLParser + +# The standard 'json' package is new in Python 2.6. +# Before that it was an external package named simplejson. +try: + # Standard location in 2.6 and beyond. + import json +except Exception, e: + try: + # Conventional name for earlier package. + import simplejson as json + except: + try: + # Was also bundled with django, which is commonly installed. + from django.utils import simplejson as json + except: + # We give up. + raise e + +try: + hgversion = util.version() +except: + from mercurial.version import version as v + hgversion = v.get_version() + +try: + from mercurial.discovery import findcommonincoming +except: + def findcommonincoming(repo, remote): + return repo.findcommonincoming(remote) + +# in Mercurial 1.9 the cmdutil.match and cmdutil.revpair moved to scmutil +if hgversion >= '1.9': + from mercurial import scmutil +else: + scmutil = cmdutil + +oldMessage = """ +The code review extension requires Mercurial 1.3 or newer. + +To install a new Mercurial, + + sudo easy_install mercurial + +works on most systems. +""" + +linuxMessage = """ +You may need to clear your current Mercurial installation by running: + + sudo apt-get remove mercurial mercurial-common + sudo rm -rf /etc/mercurial +""" + +if hgversion < '1.3': + msg = oldMessage + if os.access("/etc/mercurial", 0): + msg += linuxMessage + raise util.Abort(msg) + +def promptyesno(ui, msg): + # Arguments to ui.prompt changed between 1.3 and 1.3.1. + # Even so, some 1.3.1 distributions seem to have the old prompt!?!? + # What a terrible way to maintain software. + try: + return ui.promptchoice(msg, ["&yes", "&no"], 0) == 0 + except AttributeError: + return ui.prompt(msg, ["&yes", "&no"], "y") != "n" + +# To experiment with Mercurial in the python interpreter: +# >>> repo = hg.repository(ui.ui(), path = ".") + +####################################################################### +# Normally I would split this into multiple files, but it simplifies +# import path headaches to keep it all in one file. Sorry. + +import sys +if __name__ == "__main__": + print >>sys.stderr, "This is a Mercurial extension and should not be invoked directly." + sys.exit(2) + +server = "codereview.appspot.com" +server_url_base = None +defaultcc = None +contributors = {} +missing_codereview = None +real_rollback = None +releaseBranch = None + +####################################################################### +# RE: UNICODE STRING HANDLING +# +# Python distinguishes between the str (string of bytes) +# and unicode (string of code points) types. Most operations +# work on either one just fine, but some (like regexp matching) +# require unicode, and others (like write) require str. +# +# As befits the language, Python hides the distinction between +# unicode and str by converting between them silently, but +# *only* if all the bytes/code points involved are 7-bit ASCII. +# This means that if you're not careful, your program works +# fine on "hello, world" and fails on "hello, 世界". And of course, +# the obvious way to be careful - use static types - is unavailable. +# So the only way is trial and error to find where to put explicit +# conversions. +# +# Because more functions do implicit conversion to str (string of bytes) +# than do implicit conversion to unicode (string of code points), +# the convention in this module is to represent all text as str, +# converting to unicode only when calling a unicode-only function +# and then converting back to str as soon as possible. + +def typecheck(s, t): + if type(s) != t: + raise util.Abort("type check failed: %s has type %s != %s" % (repr(s), type(s), t)) + +# If we have to pass unicode instead of str, ustr does that conversion clearly. +def ustr(s): + typecheck(s, str) + return s.decode("utf-8") + +# Even with those, Mercurial still sometimes turns unicode into str +# and then tries to use it as ascii. Change Mercurial's default. +def set_mercurial_encoding_to_utf8(): + from mercurial import encoding + encoding.encoding = 'utf-8' + +set_mercurial_encoding_to_utf8() + +# Even with those we still run into problems. +# I tried to do things by the book but could not convince +# Mercurial to let me check in a change with UTF-8 in the +# CL description or author field, no matter how many conversions +# between str and unicode I inserted and despite changing the +# default encoding. I'm tired of this game, so set the default +# encoding for all of Python to 'utf-8', not 'ascii'. +def default_to_utf8(): + import sys + reload(sys) # site.py deleted setdefaultencoding; get it back + sys.setdefaultencoding('utf-8') + +default_to_utf8() + +####################################################################### +# Change list parsing. +# +# Change lists are stored in .hg/codereview/cl.nnnnnn +# where nnnnnn is the number assigned by the code review server. +# Most data about a change list is stored on the code review server +# too: the description, reviewer, and cc list are all stored there. +# The only thing in the cl.nnnnnn file is the list of relevant files. +# Also, the existence of the cl.nnnnnn file marks this repository +# as the one where the change list lives. + +emptydiff = """Index: ~rietveld~placeholder~ +=================================================================== +diff --git a/~rietveld~placeholder~ b/~rietveld~placeholder~ +new file mode 100644 +""" + +class CL(object): + def __init__(self, name): + typecheck(name, str) + self.name = name + self.desc = '' + self.files = [] + self.reviewer = [] + self.cc = [] + self.url = '' + self.local = False + self.web = False + self.copied_from = None # None means current user + self.mailed = False + self.private = False + + def DiskText(self): + cl = self + s = "" + if cl.copied_from: + s += "Author: " + cl.copied_from + "\n\n" + if cl.private: + s += "Private: " + str(self.private) + "\n" + s += "Mailed: " + str(self.mailed) + "\n" + s += "Description:\n" + s += Indent(cl.desc, "\t") + s += "Files:\n" + for f in cl.files: + s += "\t" + f + "\n" + typecheck(s, str) + return s + + def EditorText(self): + cl = self + s = _change_prolog + s += "\n" + if cl.copied_from: + s += "Author: " + cl.copied_from + "\n" + if cl.url != '': + s += 'URL: ' + cl.url + ' # cannot edit\n\n' + if cl.private: + s += "Private: True\n" + s += "Reviewer: " + JoinComma(cl.reviewer) + "\n" + s += "CC: " + JoinComma(cl.cc) + "\n" + s += "\n" + s += "Description:\n" + if cl.desc == '': + s += "\t\n" + else: + s += Indent(cl.desc, "\t") + s += "\n" + if cl.local or cl.name == "new": + s += "Files:\n" + for f in cl.files: + s += "\t" + f + "\n" + s += "\n" + typecheck(s, str) + return s + + def PendingText(self): + cl = self + s = cl.name + ":" + "\n" + s += Indent(cl.desc, "\t") + s += "\n" + if cl.copied_from: + s += "\tAuthor: " + cl.copied_from + "\n" + s += "\tReviewer: " + JoinComma(cl.reviewer) + "\n" + s += "\tCC: " + JoinComma(cl.cc) + "\n" + s += "\tFiles:\n" + for f in cl.files: + s += "\t\t" + f + "\n" + typecheck(s, str) + return s + + def Flush(self, ui, repo): + if self.name == "new": + self.Upload(ui, repo, gofmt_just_warn=True, creating=True) + dir = CodeReviewDir(ui, repo) + path = dir + '/cl.' + self.name + f = open(path+'!', "w") + f.write(self.DiskText()) + f.close() + if sys.platform == "win32" and os.path.isfile(path): + os.remove(path) + os.rename(path+'!', path) + if self.web and not self.copied_from: + EditDesc(self.name, desc=self.desc, + reviewers=JoinComma(self.reviewer), cc=JoinComma(self.cc), + private=self.private) + + def Delete(self, ui, repo): + dir = CodeReviewDir(ui, repo) + os.unlink(dir + "/cl." + self.name) + + def Subject(self): + s = line1(self.desc) + if len(s) > 60: + s = s[0:55] + "..." + if self.name != "new": + s = "code review %s: %s" % (self.name, s) + typecheck(s, str) + return s + + def Upload(self, ui, repo, send_mail=False, gofmt=True, gofmt_just_warn=False, creating=False, quiet=False): + if not self.files and not creating: + ui.warn("no files in change list\n") + if ui.configbool("codereview", "force_gofmt", True) and gofmt: + CheckFormat(ui, repo, self.files, just_warn=gofmt_just_warn) + set_status("uploading CL metadata + diffs") + os.chdir(repo.root) + form_fields = [ + ("content_upload", "1"), + ("reviewers", JoinComma(self.reviewer)), + ("cc", JoinComma(self.cc)), + ("description", self.desc), + ("base_hashes", ""), + ] + + if self.name != "new": + form_fields.append(("issue", self.name)) + vcs = None + # We do not include files when creating the issue, + # because we want the patch sets to record the repository + # and base revision they are diffs against. We use the patch + # set message for that purpose, but there is no message with + # the first patch set. Instead the message gets used as the + # new CL's overall subject. So omit the diffs when creating + # and then we'll run an immediate upload. + # This has the effect that every CL begins with an empty "Patch set 1". + if self.files and not creating: + vcs = MercurialVCS(upload_options, ui, repo) + data = vcs.GenerateDiff(self.files) + files = vcs.GetBaseFiles(data) + if len(data) > MAX_UPLOAD_SIZE: + uploaded_diff_file = [] + form_fields.append(("separate_patches", "1")) + else: + uploaded_diff_file = [("data", "data.diff", data)] + else: + uploaded_diff_file = [("data", "data.diff", emptydiff)] + + if vcs and self.name != "new": + form_fields.append(("subject", "diff -r " + vcs.base_rev + " " + getremote(ui, repo, {}).path)) + else: + # First upload sets the subject for the CL itself. + form_fields.append(("subject", self.Subject())) + ctype, body = EncodeMultipartFormData(form_fields, uploaded_diff_file) + response_body = MySend("/upload", body, content_type=ctype) + patchset = None + msg = response_body + lines = msg.splitlines() + if len(lines) >= 2: + msg = lines[0] + patchset = lines[1].strip() + patches = [x.split(" ", 1) for x in lines[2:]] + if response_body.startswith("Issue updated.") and quiet: + pass + else: + ui.status(msg + "\n") + set_status("uploaded CL metadata + diffs") + if not response_body.startswith("Issue created.") and not response_body.startswith("Issue updated."): + raise util.Abort("failed to update issue: " + response_body) + issue = msg[msg.rfind("/")+1:] + self.name = issue + if not self.url: + self.url = server_url_base + self.name + if not uploaded_diff_file: + set_status("uploading patches") + patches = UploadSeparatePatches(issue, rpc, patchset, data, upload_options) + if vcs: + set_status("uploading base files") + vcs.UploadBaseFiles(issue, rpc, patches, patchset, upload_options, files) + if send_mail: + set_status("sending mail") + MySend("/" + issue + "/mail", payload="") + self.web = True + set_status("flushing changes to disk") + self.Flush(ui, repo) + return + + def Mail(self, ui, repo): + pmsg = "Hello " + JoinComma(self.reviewer) + if self.cc: + pmsg += " (cc: %s)" % (', '.join(self.cc),) + pmsg += ",\n" + pmsg += "\n" + repourl = getremote(ui, repo, {}).path + if not self.mailed: + pmsg += "I'd like you to review this change to\n" + repourl + "\n" + else: + pmsg += "Please take another look.\n" + typecheck(pmsg, str) + PostMessage(ui, self.name, pmsg, subject=self.Subject()) + self.mailed = True + self.Flush(ui, repo) + +def GoodCLName(name): + typecheck(name, str) + return re.match("^[0-9]+$", name) + +def ParseCL(text, name): + typecheck(text, str) + typecheck(name, str) + sname = None + lineno = 0 + sections = { + 'Author': '', + 'Description': '', + 'Files': '', + 'URL': '', + 'Reviewer': '', + 'CC': '', + 'Mailed': '', + 'Private': '', + } + for line in text.split('\n'): + lineno += 1 + line = line.rstrip() + if line != '' and line[0] == '#': + continue + if line == '' or line[0] == ' ' or line[0] == '\t': + if sname == None and line != '': + return None, lineno, 'text outside section' + if sname != None: + sections[sname] += line + '\n' + continue + p = line.find(':') + if p >= 0: + s, val = line[:p].strip(), line[p+1:].strip() + if s in sections: + sname = s + if val != '': + sections[sname] += val + '\n' + continue + return None, lineno, 'malformed section header' + + for k in sections: + sections[k] = StripCommon(sections[k]).rstrip() + + cl = CL(name) + if sections['Author']: + cl.copied_from = sections['Author'] + cl.desc = sections['Description'] + for line in sections['Files'].split('\n'): + i = line.find('#') + if i >= 0: + line = line[0:i].rstrip() + line = line.strip() + if line == '': + continue + cl.files.append(line) + cl.reviewer = SplitCommaSpace(sections['Reviewer']) + cl.cc = SplitCommaSpace(sections['CC']) + cl.url = sections['URL'] + if sections['Mailed'] != 'False': + # Odd default, but avoids spurious mailings when + # reading old CLs that do not have a Mailed: line. + # CLs created with this update will always have + # Mailed: False on disk. + cl.mailed = True + if sections['Private'] in ('True', 'true', 'Yes', 'yes'): + cl.private = True + if cl.desc == '': + cl.desc = '' + return cl, 0, '' + +def SplitCommaSpace(s): + typecheck(s, str) + s = s.strip() + if s == "": + return [] + return re.split(", *", s) + +def CutDomain(s): + typecheck(s, str) + i = s.find('@') + if i >= 0: + s = s[0:i] + return s + +def JoinComma(l): + for s in l: + typecheck(s, str) + return ", ".join(l) + +def ExceptionDetail(): + s = str(sys.exc_info()[0]) + if s.startswith(""): + s = s[7:-2] + elif s.startswith(""): + s = s[8:-2] + arg = str(sys.exc_info()[1]) + if len(arg) > 0: + s += ": " + arg + return s + +def IsLocalCL(ui, repo, name): + return GoodCLName(name) and os.access(CodeReviewDir(ui, repo) + "/cl." + name, 0) + +# Load CL from disk and/or the web. +def LoadCL(ui, repo, name, web=True): + typecheck(name, str) + set_status("loading CL " + name) + if not GoodCLName(name): + return None, "invalid CL name" + dir = CodeReviewDir(ui, repo) + path = dir + "cl." + name + if os.access(path, 0): + ff = open(path) + text = ff.read() + ff.close() + cl, lineno, err = ParseCL(text, name) + if err != "": + return None, "malformed CL data: "+err + cl.local = True + else: + cl = CL(name) + if web: + set_status("getting issue metadata from web") + d = JSONGet(ui, "/api/" + name + "?messages=true") + set_status(None) + if d is None: + return None, "cannot load CL %s from server" % (name,) + if 'owner_email' not in d or 'issue' not in d or str(d['issue']) != name: + return None, "malformed response loading CL data from code review server" + cl.dict = d + cl.reviewer = d.get('reviewers', []) + cl.cc = d.get('cc', []) + if cl.local and cl.copied_from and cl.desc: + # local copy of CL written by someone else + # and we saved a description. use that one, + # so that committers can edit the description + # before doing hg submit. + pass + else: + cl.desc = d.get('description', "") + cl.url = server_url_base + name + cl.web = True + cl.private = d.get('private', False) != False + set_status("loaded CL " + name) + return cl, '' + +global_status = None + +def set_status(s): + # print >>sys.stderr, "\t", time.asctime(), s + global global_status + global_status = s + +class StatusThread(threading.Thread): + def __init__(self): + threading.Thread.__init__(self) + def run(self): + # pause a reasonable amount of time before + # starting to display status messages, so that + # most hg commands won't ever see them. + time.sleep(30) + + # now show status every 15 seconds + while True: + time.sleep(15 - time.time() % 15) + s = global_status + if s is None: + continue + if s == "": + s = "(unknown status)" + print >>sys.stderr, time.asctime(), s + +def start_status_thread(): + t = StatusThread() + t.setDaemon(True) # allowed to exit if t is still running + t.start() + +class LoadCLThread(threading.Thread): + def __init__(self, ui, repo, dir, f, web): + threading.Thread.__init__(self) + self.ui = ui + self.repo = repo + self.dir = dir + self.f = f + self.web = web + self.cl = None + def run(self): + cl, err = LoadCL(self.ui, self.repo, self.f[3:], web=self.web) + if err != '': + self.ui.warn("loading "+self.dir+self.f+": " + err + "\n") + return + self.cl = cl + +# Load all the CLs from this repository. +def LoadAllCL(ui, repo, web=True): + dir = CodeReviewDir(ui, repo) + m = {} + files = [f for f in os.listdir(dir) if f.startswith('cl.')] + if not files: + return m + active = [] + first = True + for f in files: + t = LoadCLThread(ui, repo, dir, f, web) + t.start() + if web and first: + # first request: wait in case it needs to authenticate + # otherwise we get lots of user/password prompts + # running in parallel. + t.join() + if t.cl: + m[t.cl.name] = t.cl + first = False + else: + active.append(t) + for t in active: + t.join() + if t.cl: + m[t.cl.name] = t.cl + return m + +# Find repository root. On error, ui.warn and return None +def RepoDir(ui, repo): + url = repo.url(); + if not url.startswith('file:'): + ui.warn("repository %s is not in local file system\n" % (url,)) + return None + url = url[5:] + if url.endswith('/'): + url = url[:-1] + typecheck(url, str) + return url + +# Find (or make) code review directory. On error, ui.warn and return None +def CodeReviewDir(ui, repo): + dir = RepoDir(ui, repo) + if dir == None: + return None + dir += '/.hg/codereview/' + if not os.path.isdir(dir): + try: + os.mkdir(dir, 0700) + except: + ui.warn('cannot mkdir %s: %s\n' % (dir, ExceptionDetail())) + return None + typecheck(dir, str) + return dir + +# Turn leading tabs into spaces, so that the common white space +# prefix doesn't get confused when people's editors write out +# some lines with spaces, some with tabs. Only a heuristic +# (some editors don't use 8 spaces either) but a useful one. +def TabsToSpaces(line): + i = 0 + while i < len(line) and line[i] == '\t': + i += 1 + return ' '*(8*i) + line[i:] + +# Strip maximal common leading white space prefix from text +def StripCommon(text): + typecheck(text, str) + ws = None + for line in text.split('\n'): + line = line.rstrip() + if line == '': + continue + line = TabsToSpaces(line) + white = line[:len(line)-len(line.lstrip())] + if ws == None: + ws = white + else: + common = '' + for i in range(min(len(white), len(ws))+1): + if white[0:i] == ws[0:i]: + common = white[0:i] + ws = common + if ws == '': + break + if ws == None: + return text + t = '' + for line in text.split('\n'): + line = line.rstrip() + line = TabsToSpaces(line) + if line.startswith(ws): + line = line[len(ws):] + if line == '' and t == '': + continue + t += line + '\n' + while len(t) >= 2 and t[-2:] == '\n\n': + t = t[:-1] + typecheck(t, str) + return t + +# Indent text with indent. +def Indent(text, indent): + typecheck(text, str) + typecheck(indent, str) + t = '' + for line in text.split('\n'): + t += indent + line + '\n' + typecheck(t, str) + return t + +# Return the first line of l +def line1(text): + typecheck(text, str) + return text.split('\n')[0] + +_change_prolog = """# Change list. +# Lines beginning with # are ignored. +# Multi-line values should be indented. +""" + +####################################################################### +# Mercurial helper functions + +# Get effective change nodes taking into account applied MQ patches +def effective_revpair(repo): + try: + return scmutil.revpair(repo, ['qparent']) + except: + return scmutil.revpair(repo, None) + +# Return list of changed files in repository that match pats. +# Warn about patterns that did not match. +def matchpats(ui, repo, pats, opts): + matcher = scmutil.match(repo, pats, opts) + node1, node2 = effective_revpair(repo) + modified, added, removed, deleted, unknown, ignored, clean = repo.status(node1, node2, matcher, ignored=True, clean=True, unknown=True) + return (modified, added, removed, deleted, unknown, ignored, clean) + +# Return list of changed files in repository that match pats. +# The patterns came from the command line, so we warn +# if they have no effect or cannot be understood. +def ChangedFiles(ui, repo, pats, opts, taken=None): + taken = taken or {} + # Run each pattern separately so that we can warn about + # patterns that didn't do anything useful. + for p in pats: + modified, added, removed, deleted, unknown, ignored, clean = matchpats(ui, repo, [p], opts) + redo = False + for f in unknown: + promptadd(ui, repo, f) + redo = True + for f in deleted: + promptremove(ui, repo, f) + redo = True + if redo: + modified, added, removed, deleted, unknown, ignored, clean = matchpats(ui, repo, [p], opts) + for f in modified + added + removed: + if f in taken: + ui.warn("warning: %s already in CL %s\n" % (f, taken[f].name)) + if not modified and not added and not removed: + ui.warn("warning: %s did not match any modified files\n" % (p,)) + + # Again, all at once (eliminates duplicates) + modified, added, removed = matchpats(ui, repo, pats, opts)[:3] + l = modified + added + removed + l.sort() + if taken: + l = Sub(l, taken.keys()) + return l + +# Return list of changed files in repository that match pats and still exist. +def ChangedExistingFiles(ui, repo, pats, opts): + modified, added = matchpats(ui, repo, pats, opts)[:2] + l = modified + added + l.sort() + return l + +# Return list of files claimed by existing CLs +def Taken(ui, repo): + all = LoadAllCL(ui, repo, web=False) + taken = {} + for _, cl in all.items(): + for f in cl.files: + taken[f] = cl + return taken + +# Return list of changed files that are not claimed by other CLs +def DefaultFiles(ui, repo, pats, opts): + return ChangedFiles(ui, repo, pats, opts, taken=Taken(ui, repo)) + +def Sub(l1, l2): + return [l for l in l1 if l not in l2] + +def Add(l1, l2): + l = l1 + Sub(l2, l1) + l.sort() + return l + +def Intersect(l1, l2): + return [l for l in l1 if l in l2] + +def getremote(ui, repo, opts): + # save $http_proxy; creating the HTTP repo object will + # delete it in an attempt to "help" + proxy = os.environ.get('http_proxy') + source = hg.parseurl(ui.expandpath("default"), None)[0] + try: + remoteui = hg.remoteui # hg 1.6 + except: + remoteui = cmdutil.remoteui + other = hg.repository(remoteui(repo, opts), source) + if proxy is not None: + os.environ['http_proxy'] = proxy + return other + +def Incoming(ui, repo, opts): + _, incoming, _ = findcommonincoming(repo, getremote(ui, repo, opts)) + return incoming + +desc_re = '^(.+: |(tag )?(release|weekly)\.|fix build|undo CL)' + +desc_msg = '''Your CL description appears not to use the standard form. + +The first line of your change description is conventionally a +one-line summary of the change, prefixed by the primary affected package, +and is used as the subject for code review mail; the rest of the description +elaborates. + +Examples: + + encoding/rot13: new package + + math: add IsInf, IsNaN + + net: fix cname in LookupHost + + unicode: update to Unicode 5.0.2 + +''' + + +def promptremove(ui, repo, f): + if promptyesno(ui, "hg remove %s (y/n)?" % (f,)): + if commands.remove(ui, repo, 'path:'+f) != 0: + ui.warn("error removing %s" % (f,)) + +def promptadd(ui, repo, f): + if promptyesno(ui, "hg add %s (y/n)?" % (f,)): + if commands.add(ui, repo, 'path:'+f) != 0: + ui.warn("error adding %s" % (f,)) + +def EditCL(ui, repo, cl): + set_status(None) # do not show status + s = cl.EditorText() + while True: + s = ui.edit(s, ui.username()) + clx, line, err = ParseCL(s, cl.name) + if err != '': + if not promptyesno(ui, "error parsing change list: line %d: %s\nre-edit (y/n)?" % (line, err)): + return "change list not modified" + continue + + # Check description. + if clx.desc == '': + if promptyesno(ui, "change list should have a description\nre-edit (y/n)?"): + continue + elif re.search('', clx.desc): + if promptyesno(ui, "change list description omits reason for undo\nre-edit (y/n)?"): + continue + elif not re.match(desc_re, clx.desc.split('\n')[0]): + if promptyesno(ui, desc_msg + "re-edit (y/n)?"): + continue + + # Check file list for files that need to be hg added or hg removed + # or simply aren't understood. + pats = ['path:'+f for f in clx.files] + modified, added, removed, deleted, unknown, ignored, clean = matchpats(ui, repo, pats, {}) + files = [] + for f in clx.files: + if f in modified or f in added or f in removed: + files.append(f) + continue + if f in deleted: + promptremove(ui, repo, f) + files.append(f) + continue + if f in unknown: + promptadd(ui, repo, f) + files.append(f) + continue + if f in ignored: + ui.warn("error: %s is excluded by .hgignore; omitting\n" % (f,)) + continue + if f in clean: + ui.warn("warning: %s is listed in the CL but unchanged\n" % (f,)) + files.append(f) + continue + p = repo.root + '/' + f + if os.path.isfile(p): + ui.warn("warning: %s is a file but not known to hg\n" % (f,)) + files.append(f) + continue + if os.path.isdir(p): + ui.warn("error: %s is a directory, not a file; omitting\n" % (f,)) + continue + ui.warn("error: %s does not exist; omitting\n" % (f,)) + clx.files = files + + cl.desc = clx.desc + cl.reviewer = clx.reviewer + cl.cc = clx.cc + cl.files = clx.files + cl.private = clx.private + break + return "" + +# For use by submit, etc. (NOT by change) +# Get change list number or list of files from command line. +# If files are given, make a new change list. +def CommandLineCL(ui, repo, pats, opts, defaultcc=None): + if len(pats) > 0 and GoodCLName(pats[0]): + if len(pats) != 1: + return None, "cannot specify change number and file names" + if opts.get('message'): + return None, "cannot use -m with existing CL" + cl, err = LoadCL(ui, repo, pats[0], web=True) + if err != "": + return None, err + else: + cl = CL("new") + cl.local = True + cl.files = ChangedFiles(ui, repo, pats, opts, taken=Taken(ui, repo)) + if not cl.files: + return None, "no files changed" + if opts.get('reviewer'): + cl.reviewer = Add(cl.reviewer, SplitCommaSpace(opts.get('reviewer'))) + if opts.get('cc'): + cl.cc = Add(cl.cc, SplitCommaSpace(opts.get('cc'))) + if defaultcc: + cl.cc = Add(cl.cc, defaultcc) + if cl.name == "new": + if opts.get('message'): + cl.desc = opts.get('message') + else: + err = EditCL(ui, repo, cl) + if err != '': + return None, err + return cl, "" + +# reposetup replaces cmdutil.match with this wrapper, +# which expands the syntax @clnumber to mean the files +# in that CL. +original_match = None +def ReplacementForCmdutilMatch(repo, pats=None, opts=None, globbed=False, default='relpath'): + taken = [] + files = [] + pats = pats or [] + opts = opts or {} + for p in pats: + if p.startswith('@'): + taken.append(p) + clname = p[1:] + if not GoodCLName(clname): + raise util.Abort("invalid CL name " + clname) + cl, err = LoadCL(repo.ui, repo, clname, web=False) + if err != '': + raise util.Abort("loading CL " + clname + ": " + err) + if not cl.files: + raise util.Abort("no files in CL " + clname) + files = Add(files, cl.files) + pats = Sub(pats, taken) + ['path:'+f for f in files] + + # work-around for http://selenic.com/hg/rev/785bbc8634f8 + if hgversion >= '1.9' and not hasattr(repo, 'match'): + repo = repo[None] + + return original_match(repo, pats=pats, opts=opts, globbed=globbed, default=default) + +def RelativePath(path, cwd): + n = len(cwd) + if path.startswith(cwd) and path[n] == '/': + return path[n+1:] + return path + +def CheckFormat(ui, repo, files, just_warn=False): + set_status("running gofmt") + CheckGofmt(ui, repo, files, just_warn) + CheckTabfmt(ui, repo, files, just_warn) + +# Check that gofmt run on the list of files does not change them +def CheckGofmt(ui, repo, files, just_warn): + files = [f for f in files if (f.startswith('src/') or f.startswith('test/bench/')) and f.endswith('.go')] + if not files: + return + cwd = os.getcwd() + files = [RelativePath(repo.root + '/' + f, cwd) for f in files] + files = [f for f in files if os.access(f, 0)] + if not files: + return + try: + cmd = subprocess.Popen(["gofmt", "-l"] + files, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=sys.platform != "win32") + cmd.stdin.close() + except: + raise util.Abort("gofmt: " + ExceptionDetail()) + data = cmd.stdout.read() + errors = cmd.stderr.read() + cmd.wait() + set_status("done with gofmt") + if len(errors) > 0: + ui.warn("gofmt errors:\n" + errors.rstrip() + "\n") + return + if len(data) > 0: + msg = "gofmt needs to format these files (run hg gofmt):\n" + Indent(data, "\t").rstrip() + if just_warn: + ui.warn("warning: " + msg + "\n") + else: + raise util.Abort(msg) + return + +# Check that *.[chys] files indent using tabs. +def CheckTabfmt(ui, repo, files, just_warn): + files = [f for f in files if f.startswith('src/') and re.search(r"\.[chys]$", f)] + if not files: + return + cwd = os.getcwd() + files = [RelativePath(repo.root + '/' + f, cwd) for f in files] + files = [f for f in files if os.access(f, 0)] + badfiles = [] + for f in files: + try: + for line in open(f, 'r'): + # Four leading spaces is enough to complain about, + # except that some Plan 9 code uses four spaces as the label indent, + # so allow that. + if line.startswith(' ') and not re.match(' [A-Za-z0-9_]+:', line): + badfiles.append(f) + break + except: + # ignore cannot open file, etc. + pass + if len(badfiles) > 0: + msg = "these files use spaces for indentation (use tabs instead):\n\t" + "\n\t".join(badfiles) + if just_warn: + ui.warn("warning: " + msg + "\n") + else: + raise util.Abort(msg) + return + +####################################################################### +# Mercurial commands + +# every command must take a ui and and repo as arguments. +# opts is a dict where you can find other command line flags +# +# Other parameters are taken in order from items on the command line that +# don't start with a dash. If no default value is given in the parameter list, +# they are required. +# + +def change(ui, repo, *pats, **opts): + """create, edit or delete a change list + + Create, edit or delete a change list. + A change list is a group of files to be reviewed and submitted together, + plus a textual description of the change. + Change lists are referred to by simple alphanumeric names. + + Changes must be reviewed before they can be submitted. + + In the absence of options, the change command opens the + change list for editing in the default editor. + + Deleting a change with the -d or -D flag does not affect + the contents of the files listed in that change. To revert + the files listed in a change, use + + hg revert @123456 + + before running hg change -d 123456. + """ + + if missing_codereview: + return missing_codereview + + dirty = {} + if len(pats) > 0 and GoodCLName(pats[0]): + name = pats[0] + if len(pats) != 1: + return "cannot specify CL name and file patterns" + pats = pats[1:] + cl, err = LoadCL(ui, repo, name, web=True) + if err != '': + return err + if not cl.local and (opts["stdin"] or not opts["stdout"]): + return "cannot change non-local CL " + name + else: + if repo[None].branch() != "default": + return "cannot run hg change outside default branch" + name = "new" + cl = CL("new") + dirty[cl] = True + files = ChangedFiles(ui, repo, pats, opts, taken=Taken(ui, repo)) + + if opts["delete"] or opts["deletelocal"]: + if opts["delete"] and opts["deletelocal"]: + return "cannot use -d and -D together" + flag = "-d" + if opts["deletelocal"]: + flag = "-D" + if name == "new": + return "cannot use "+flag+" with file patterns" + if opts["stdin"] or opts["stdout"]: + return "cannot use "+flag+" with -i or -o" + if not cl.local: + return "cannot change non-local CL " + name + if opts["delete"]: + if cl.copied_from: + return "original author must delete CL; hg change -D will remove locally" + PostMessage(ui, cl.name, "*** Abandoned ***", send_mail=cl.mailed) + EditDesc(cl.name, closed=True, private=cl.private) + cl.Delete(ui, repo) + return + + if opts["stdin"]: + s = sys.stdin.read() + clx, line, err = ParseCL(s, name) + if err != '': + return "error parsing change list: line %d: %s" % (line, err) + if clx.desc is not None: + cl.desc = clx.desc; + dirty[cl] = True + if clx.reviewer is not None: + cl.reviewer = clx.reviewer + dirty[cl] = True + if clx.cc is not None: + cl.cc = clx.cc + dirty[cl] = True + if clx.files is not None: + cl.files = clx.files + dirty[cl] = True + if clx.private != cl.private: + cl.private = clx.private + dirty[cl] = True + + if not opts["stdin"] and not opts["stdout"]: + if name == "new": + cl.files = files + err = EditCL(ui, repo, cl) + if err != "": + return err + dirty[cl] = True + + for d, _ in dirty.items(): + name = d.name + d.Flush(ui, repo) + if name == "new": + d.Upload(ui, repo, quiet=True) + + if opts["stdout"]: + ui.write(cl.EditorText()) + elif opts["pending"]: + ui.write(cl.PendingText()) + elif name == "new": + if ui.quiet: + ui.write(cl.name) + else: + ui.write("CL created: " + cl.url + "\n") + return + +def code_login(ui, repo, **opts): + """log in to code review server + + Logs in to the code review server, saving a cookie in + a file in your home directory. + """ + if missing_codereview: + return missing_codereview + + MySend(None) + +def clpatch(ui, repo, clname, **opts): + """import a patch from the code review server + + Imports a patch from the code review server into the local client. + If the local client has already modified any of the files that the + patch modifies, this command will refuse to apply the patch. + + Submitting an imported patch will keep the original author's + name as the Author: line but add your own name to a Committer: line. + """ + if repo[None].branch() != "default": + return "cannot run hg clpatch outside default branch" + return clpatch_or_undo(ui, repo, clname, opts, mode="clpatch") + +def undo(ui, repo, clname, **opts): + """undo the effect of a CL + + Creates a new CL that undoes an earlier CL. + After creating the CL, opens the CL text for editing so that + you can add the reason for the undo to the description. + """ + if repo[None].branch() != "default": + return "cannot run hg undo outside default branch" + return clpatch_or_undo(ui, repo, clname, opts, mode="undo") + +def release_apply(ui, repo, clname, **opts): + """apply a CL to the release branch + + Creates a new CL copying a previously committed change + from the main branch to the release branch. + The current client must either be clean or already be in + the release branch. + + The release branch must be created by starting with a + clean client, disabling the code review plugin, and running: + + hg update weekly.YYYY-MM-DD + hg branch release-branch.rNN + hg commit -m 'create release-branch.rNN' + hg push --new-branch + + Then re-enable the code review plugin. + + People can test the release branch by running + + hg update release-branch.rNN + + in a clean client. To return to the normal tree, + + hg update default + + Move changes since the weekly into the release branch + using hg release-apply followed by the usual code review + process and hg submit. + + When it comes time to tag the release, record the + final long-form tag of the release-branch.rNN + in the *default* branch's .hgtags file. That is, run + + hg update default + + and then edit .hgtags as you would for a weekly. + + """ + c = repo[None] + if not releaseBranch: + return "no active release branches" + if c.branch() != releaseBranch: + if c.modified() or c.added() or c.removed(): + raise util.Abort("uncommitted local changes - cannot switch branches") + err = hg.clean(repo, releaseBranch) + if err: + return err + try: + err = clpatch_or_undo(ui, repo, clname, opts, mode="backport") + if err: + raise util.Abort(err) + except Exception, e: + hg.clean(repo, "default") + raise e + return None + +def rev2clname(rev): + # Extract CL name from revision description. + # The last line in the description that is a codereview URL is the real one. + # Earlier lines might be part of the user-written description. + all = re.findall('(?m)^http://codereview.appspot.com/([0-9]+)$', rev.description()) + if len(all) > 0: + return all[-1] + return "" + +undoHeader = """undo CL %s / %s + + + +««« original CL description +""" + +undoFooter = """ +»»» +""" + +backportHeader = """[%s] %s + +««« CL %s / %s +""" + +backportFooter = """ +»»» +""" + +# Implementation of clpatch/undo. +def clpatch_or_undo(ui, repo, clname, opts, mode): + if missing_codereview: + return missing_codereview + + if mode == "undo" or mode == "backport": + if hgversion < '1.4': + # Don't have cmdutil.match (see implementation of sync command). + return "hg is too old to run hg %s - update to 1.4 or newer" % mode + + # Find revision in Mercurial repository. + # Assume CL number is 7+ decimal digits. + # Otherwise is either change log sequence number (fewer decimal digits), + # hexadecimal hash, or tag name. + # Mercurial will fall over long before the change log + # sequence numbers get to be 7 digits long. + if re.match('^[0-9]{7,}$', clname): + found = False + matchfn = scmutil.match(repo, [], {'rev': None}) + def prep(ctx, fns): + pass + for ctx in cmdutil.walkchangerevs(repo, matchfn, {'rev': None}, prep): + rev = repo[ctx.rev()] + # Last line with a code review URL is the actual review URL. + # Earlier ones might be part of the CL description. + n = rev2clname(rev) + if n == clname: + found = True + break + if not found: + return "cannot find CL %s in local repository" % clname + else: + rev = repo[clname] + if not rev: + return "unknown revision %s" % clname + clname = rev2clname(rev) + if clname == "": + return "cannot find CL name in revision description" + + # Create fresh CL and start with patch that would reverse the change. + vers = short(rev.node()) + cl = CL("new") + desc = str(rev.description()) + if mode == "undo": + cl.desc = (undoHeader % (clname, vers)) + desc + undoFooter + else: + cl.desc = (backportHeader % (releaseBranch, line1(desc), clname, vers)) + desc + undoFooter + v1 = vers + v0 = short(rev.parents()[0].node()) + if mode == "undo": + arg = v1 + ":" + v0 + else: + vers = v0 + arg = v0 + ":" + v1 + patch = RunShell(["hg", "diff", "--git", "-r", arg]) + + else: # clpatch + cl, vers, patch, err = DownloadCL(ui, repo, clname) + if err != "": + return err + if patch == emptydiff: + return "codereview issue %s has no diff" % clname + + # find current hg version (hg identify) + ctx = repo[None] + parents = ctx.parents() + id = '+'.join([short(p.node()) for p in parents]) + + # if version does not match the patch version, + # try to update the patch line numbers. + if vers != "" and id != vers: + # "vers in repo" gives the wrong answer + # on some versions of Mercurial. Instead, do the actual + # lookup and catch the exception. + try: + repo[vers].description() + except: + return "local repository is out of date; sync to get %s" % (vers) + patch1, err = portPatch(repo, patch, vers, id) + if err != "": + if not opts["ignore_hgpatch_failure"]: + return "codereview issue %s is out of date: %s (%s->%s)" % (clname, err, vers, id) + else: + patch = patch1 + argv = ["hgpatch"] + if opts["no_incoming"] or mode == "backport": + argv += ["--checksync=false"] + try: + cmd = subprocess.Popen(argv, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None, close_fds=sys.platform != "win32") + except: + return "hgpatch: " + ExceptionDetail() + + out, err = cmd.communicate(patch) + if cmd.returncode != 0 and not opts["ignore_hgpatch_failure"]: + return "hgpatch failed" + cl.local = True + cl.files = out.strip().split() + if not cl.files and not opts["ignore_hgpatch_failure"]: + return "codereview issue %s has no changed files" % clname + files = ChangedFiles(ui, repo, [], opts) + extra = Sub(cl.files, files) + if extra: + ui.warn("warning: these files were listed in the patch but not changed:\n\t" + "\n\t".join(extra) + "\n") + cl.Flush(ui, repo) + if mode == "undo": + err = EditCL(ui, repo, cl) + if err != "": + return "CL created, but error editing: " + err + cl.Flush(ui, repo) + else: + ui.write(cl.PendingText() + "\n") + +# portPatch rewrites patch from being a patch against +# oldver to being a patch against newver. +def portPatch(repo, patch, oldver, newver): + lines = patch.splitlines(True) # True = keep \n + delta = None + for i in range(len(lines)): + line = lines[i] + if line.startswith('--- a/'): + file = line[6:-1] + delta = fileDeltas(repo, file, oldver, newver) + if not delta or not line.startswith('@@ '): + continue + # @@ -x,y +z,w @@ means the patch chunk replaces + # the original file's line numbers x up to x+y with the + # line numbers z up to z+w in the new file. + # Find the delta from x in the original to the same + # line in the current version and add that delta to both + # x and z. + m = re.match('@@ -([0-9]+),([0-9]+) \+([0-9]+),([0-9]+) @@', line) + if not m: + return None, "error parsing patch line numbers" + n1, len1, n2, len2 = int(m.group(1)), int(m.group(2)), int(m.group(3)), int(m.group(4)) + d, err = lineDelta(delta, n1, len1) + if err != "": + return "", err + n1 += d + n2 += d + lines[i] = "@@ -%d,%d +%d,%d @@\n" % (n1, len1, n2, len2) + + newpatch = ''.join(lines) + return newpatch, "" + +# fileDelta returns the line number deltas for the given file's +# changes from oldver to newver. +# The deltas are a list of (n, len, newdelta) triples that say +# lines [n, n+len) were modified, and after that range the +# line numbers are +newdelta from what they were before. +def fileDeltas(repo, file, oldver, newver): + cmd = ["hg", "diff", "--git", "-r", oldver + ":" + newver, "path:" + file] + data = RunShell(cmd, silent_ok=True) + deltas = [] + for line in data.splitlines(): + m = re.match('@@ -([0-9]+),([0-9]+) \+([0-9]+),([0-9]+) @@', line) + if not m: + continue + n1, len1, n2, len2 = int(m.group(1)), int(m.group(2)), int(m.group(3)), int(m.group(4)) + deltas.append((n1, len1, n2+len2-(n1+len1))) + return deltas + +# lineDelta finds the appropriate line number delta to apply to the lines [n, n+len). +# It returns an error if those lines were rewritten by the patch. +def lineDelta(deltas, n, len): + d = 0 + for (old, oldlen, newdelta) in deltas: + if old >= n+len: + break + if old+len > n: + return 0, "patch and recent changes conflict" + d = newdelta + return d, "" + +def download(ui, repo, clname, **opts): + """download a change from the code review server + + Download prints a description of the given change list + followed by its diff, downloaded from the code review server. + """ + if missing_codereview: + return missing_codereview + + cl, vers, patch, err = DownloadCL(ui, repo, clname) + if err != "": + return err + ui.write(cl.EditorText() + "\n") + ui.write(patch + "\n") + return + +def file(ui, repo, clname, pat, *pats, **opts): + """assign files to or remove files from a change list + + Assign files to or (with -d) remove files from a change list. + + The -d option only removes files from the change list. + It does not edit them or remove them from the repository. + """ + if missing_codereview: + return missing_codereview + + pats = tuple([pat] + list(pats)) + if not GoodCLName(clname): + return "invalid CL name " + clname + + dirty = {} + cl, err = LoadCL(ui, repo, clname, web=False) + if err != '': + return err + if not cl.local: + return "cannot change non-local CL " + clname + + files = ChangedFiles(ui, repo, pats, opts) + + if opts["delete"]: + oldfiles = Intersect(files, cl.files) + if oldfiles: + if not ui.quiet: + ui.status("# Removing files from CL. To undo:\n") + ui.status("# cd %s\n" % (repo.root)) + for f in oldfiles: + ui.status("# hg file %s %s\n" % (cl.name, f)) + cl.files = Sub(cl.files, oldfiles) + cl.Flush(ui, repo) + else: + ui.status("no such files in CL") + return + + if not files: + return "no such modified files" + + files = Sub(files, cl.files) + taken = Taken(ui, repo) + warned = False + for f in files: + if f in taken: + if not warned and not ui.quiet: + ui.status("# Taking files from other CLs. To undo:\n") + ui.status("# cd %s\n" % (repo.root)) + warned = True + ocl = taken[f] + if not ui.quiet: + ui.status("# hg file %s %s\n" % (ocl.name, f)) + if ocl not in dirty: + ocl.files = Sub(ocl.files, files) + dirty[ocl] = True + cl.files = Add(cl.files, files) + dirty[cl] = True + for d, _ in dirty.items(): + d.Flush(ui, repo) + return + +def gofmt(ui, repo, *pats, **opts): + """apply gofmt to modified files + + Applies gofmt to the modified files in the repository that match + the given patterns. + """ + if missing_codereview: + return missing_codereview + + files = ChangedExistingFiles(ui, repo, pats, opts) + files = [f for f in files if f.endswith(".go")] + if not files: + return "no modified go files" + cwd = os.getcwd() + files = [RelativePath(repo.root + '/' + f, cwd) for f in files] + try: + cmd = ["gofmt", "-l"] + if not opts["list"]: + cmd += ["-w"] + if os.spawnvp(os.P_WAIT, "gofmt", cmd + files) != 0: + raise util.Abort("gofmt did not exit cleanly") + except error.Abort, e: + raise + except: + raise util.Abort("gofmt: " + ExceptionDetail()) + return + +def mail(ui, repo, *pats, **opts): + """mail a change for review + + Uploads a patch to the code review server and then sends mail + to the reviewer and CC list asking for a review. + """ + if missing_codereview: + return missing_codereview + + cl, err = CommandLineCL(ui, repo, pats, opts, defaultcc=defaultcc) + if err != "": + return err + cl.Upload(ui, repo, gofmt_just_warn=True) + if not cl.reviewer: + # If no reviewer is listed, assign the review to defaultcc. + # This makes sure that it appears in the + # codereview.appspot.com/user/defaultcc + # page, so that it doesn't get dropped on the floor. + if not defaultcc: + return "no reviewers listed in CL" + cl.cc = Sub(cl.cc, defaultcc) + cl.reviewer = defaultcc + cl.Flush(ui, repo) + + if cl.files == []: + return "no changed files, not sending mail" + + cl.Mail(ui, repo) + +def pending(ui, repo, *pats, **opts): + """show pending changes + + Lists pending changes followed by a list of unassigned but modified files. + """ + if missing_codereview: + return missing_codereview + + m = LoadAllCL(ui, repo, web=True) + names = m.keys() + names.sort() + for name in names: + cl = m[name] + ui.write(cl.PendingText() + "\n") + + files = DefaultFiles(ui, repo, [], opts) + if len(files) > 0: + s = "Changed files not in any CL:\n" + for f in files: + s += "\t" + f + "\n" + ui.write(s) + +def reposetup(ui, repo): + global original_match + if original_match is None: + start_status_thread() + original_match = scmutil.match + scmutil.match = ReplacementForCmdutilMatch + RietveldSetup(ui, repo) + +def CheckContributor(ui, repo, user=None): + set_status("checking CONTRIBUTORS file") + user, userline = FindContributor(ui, repo, user, warn=False) + if not userline: + raise util.Abort("cannot find %s in CONTRIBUTORS" % (user,)) + return userline + +def FindContributor(ui, repo, user=None, warn=True): + if not user: + user = ui.config("ui", "username") + if not user: + raise util.Abort("[ui] username is not configured in .hgrc") + user = user.lower() + m = re.match(r".*<(.*)>", user) + if m: + user = m.group(1) + + if user not in contributors: + if warn: + ui.warn("warning: cannot find %s in CONTRIBUTORS\n" % (user,)) + return user, None + + user, email = contributors[user] + return email, "%s <%s>" % (user, email) + +def submit(ui, repo, *pats, **opts): + """submit change to remote repository + + Submits change to remote repository. + Bails out if the local repository is not in sync with the remote one. + """ + if missing_codereview: + return missing_codereview + + # We already called this on startup but sometimes Mercurial forgets. + set_mercurial_encoding_to_utf8() + + repo.ui.quiet = True + if not opts["no_incoming"] and Incoming(ui, repo, opts): + return "local repository out of date; must sync before submit" + + cl, err = CommandLineCL(ui, repo, pats, opts, defaultcc=defaultcc) + if err != "": + return err + + user = None + if cl.copied_from: + user = cl.copied_from + userline = CheckContributor(ui, repo, user) + typecheck(userline, str) + + about = "" + if cl.reviewer: + about += "R=" + JoinComma([CutDomain(s) for s in cl.reviewer]) + "\n" + if opts.get('tbr'): + tbr = SplitCommaSpace(opts.get('tbr')) + cl.reviewer = Add(cl.reviewer, tbr) + about += "TBR=" + JoinComma([CutDomain(s) for s in tbr]) + "\n" + if cl.cc: + about += "CC=" + JoinComma([CutDomain(s) for s in cl.cc]) + "\n" + + if not cl.reviewer: + return "no reviewers listed in CL" + + if not cl.local: + return "cannot submit non-local CL" + + # upload, to sync current patch and also get change number if CL is new. + if not cl.copied_from: + cl.Upload(ui, repo, gofmt_just_warn=True) + + # check gofmt for real; allowed upload to warn in order to save CL. + cl.Flush(ui, repo) + CheckFormat(ui, repo, cl.files) + + about += "%s%s\n" % (server_url_base, cl.name) + + if cl.copied_from: + about += "\nCommitter: " + CheckContributor(ui, repo, None) + "\n" + typecheck(about, str) + + if not cl.mailed and not cl.copied_from: # in case this is TBR + cl.Mail(ui, repo) + + # submit changes locally + date = opts.get('date') + if date: + opts['date'] = util.parsedate(date) + typecheck(opts['date'], str) + opts['message'] = cl.desc.rstrip() + "\n\n" + about + typecheck(opts['message'], str) + + if opts['dryrun']: + print "NOT SUBMITTING:" + print "User: ", userline + print "Message:" + print Indent(opts['message'], "\t") + print "Files:" + print Indent('\n'.join(cl.files), "\t") + return "dry run; not submitted" + + m = match.exact(repo.root, repo.getcwd(), cl.files) + node = repo.commit(ustr(opts['message']), ustr(userline), opts.get('date'), m) + if not node: + return "nothing changed" + + # push to remote; if it fails for any reason, roll back + try: + log = repo.changelog + rev = log.rev(node) + parents = log.parentrevs(rev) + if (rev-1 not in parents and + (parents == (nullrev, nullrev) or + len(log.heads(log.node(parents[0]))) > 1 and + (parents[1] == nullrev or len(log.heads(log.node(parents[1]))) > 1))): + # created new head + raise util.Abort("local repository out of date; must sync before submit") + + # push changes to remote. + # if it works, we're committed. + # if not, roll back + other = getremote(ui, repo, opts) + r = repo.push(other, False, None) + if r == 0: + raise util.Abort("local repository out of date; must sync before submit") + except: + real_rollback() + raise + + # we're committed. upload final patch, close review, add commit message + changeURL = short(node) + url = other.url() + m = re.match("^https?://([^@/]+@)?([^.]+)\.googlecode\.com/hg/?", url) + if m: + changeURL = "http://code.google.com/p/%s/source/detail?r=%s" % (m.group(2), changeURL) + else: + print >>sys.stderr, "URL: ", url + pmsg = "*** Submitted as " + changeURL + " ***\n\n" + opts['message'] + + # When posting, move reviewers to CC line, + # so that the issue stops showing up in their "My Issues" page. + PostMessage(ui, cl.name, pmsg, reviewers="", cc=JoinComma(cl.reviewer+cl.cc)) + + if not cl.copied_from: + EditDesc(cl.name, closed=True, private=cl.private) + cl.Delete(ui, repo) + + c = repo[None] + if c.branch() == releaseBranch and not c.modified() and not c.added() and not c.removed(): + ui.write("switching from %s to default branch.\n" % releaseBranch) + err = hg.clean(repo, "default") + if err: + return err + return None + +def sync(ui, repo, **opts): + """synchronize with remote repository + + Incorporates recent changes from the remote repository + into the local repository. + """ + if missing_codereview: + return missing_codereview + + if not opts["local"]: + ui.status = sync_note + ui.note = sync_note + other = getremote(ui, repo, opts) + modheads = repo.pull(other) + err = commands.postincoming(ui, repo, modheads, True, "tip") + if err: + return err + commands.update(ui, repo, rev="default") + sync_changes(ui, repo) + +def sync_note(msg): + # we run sync (pull -u) in verbose mode to get the + # list of files being updated, but that drags along + # a bunch of messages we don't care about. + # omit them. + if msg == 'resolving manifests\n': + return + if msg == 'searching for changes\n': + return + if msg == "couldn't find merge tool hgmerge\n": + return + sys.stdout.write(msg) + +def sync_changes(ui, repo): + # Look through recent change log descriptions to find + # potential references to http://.*/our-CL-number. + # Double-check them by looking at the Rietveld log. + def Rev(rev): + desc = repo[rev].description().strip() + for clname in re.findall('(?m)^http://(?:[^\n]+)/([0-9]+)$', desc): + if IsLocalCL(ui, repo, clname) and IsRietveldSubmitted(ui, clname, repo[rev].hex()): + ui.warn("CL %s submitted as %s; closing\n" % (clname, repo[rev])) + cl, err = LoadCL(ui, repo, clname, web=False) + if err != "": + ui.warn("loading CL %s: %s\n" % (clname, err)) + continue + if not cl.copied_from: + EditDesc(cl.name, closed=True, private=cl.private) + cl.Delete(ui, repo) + + if hgversion < '1.4': + get = util.cachefunc(lambda r: repo[r].changeset()) + changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, [], get, {'rev': None}) + n = 0 + for st, rev, fns in changeiter: + if st != 'iter': + continue + n += 1 + if n > 100: + break + Rev(rev) + else: + matchfn = scmutil.match(repo, [], {'rev': None}) + def prep(ctx, fns): + pass + for ctx in cmdutil.walkchangerevs(repo, matchfn, {'rev': None}, prep): + Rev(ctx.rev()) + + # Remove files that are not modified from the CLs in which they appear. + all = LoadAllCL(ui, repo, web=False) + changed = ChangedFiles(ui, repo, [], {}) + for _, cl in all.items(): + extra = Sub(cl.files, changed) + if extra: + ui.warn("Removing unmodified files from CL %s:\n" % (cl.name,)) + for f in extra: + ui.warn("\t%s\n" % (f,)) + cl.files = Sub(cl.files, extra) + cl.Flush(ui, repo) + if not cl.files: + if not cl.copied_from: + ui.warn("CL %s has no files; delete (abandon) with hg change -d %s\n" % (cl.name, cl.name)) + else: + ui.warn("CL %s has no files; delete locally with hg change -D %s\n" % (cl.name, cl.name)) + return + +def upload(ui, repo, name, **opts): + """upload diffs to the code review server + + Uploads the current modifications for a given change to the server. + """ + if missing_codereview: + return missing_codereview + + repo.ui.quiet = True + cl, err = LoadCL(ui, repo, name, web=True) + if err != "": + return err + if not cl.local: + return "cannot upload non-local change" + cl.Upload(ui, repo) + print "%s%s\n" % (server_url_base, cl.name) + return + +review_opts = [ + ('r', 'reviewer', '', 'add reviewer'), + ('', 'cc', '', 'add cc'), + ('', 'tbr', '', 'add future reviewer'), + ('m', 'message', '', 'change description (for new change)'), +] + +cmdtable = { + # The ^ means to show this command in the help text that + # is printed when running hg with no arguments. + "^change": ( + change, + [ + ('d', 'delete', None, 'delete existing change list'), + ('D', 'deletelocal', None, 'delete locally, but do not change CL on server'), + ('i', 'stdin', None, 'read change list from standard input'), + ('o', 'stdout', None, 'print change list to standard output'), + ('p', 'pending', None, 'print pending summary to standard output'), + ], + "[-d | -D] [-i] [-o] change# or FILE ..." + ), + "^clpatch": ( + clpatch, + [ + ('', 'ignore_hgpatch_failure', None, 'create CL metadata even if hgpatch fails'), + ('', 'no_incoming', None, 'disable check for incoming changes'), + ], + "change#" + ), + # Would prefer to call this codereview-login, but then + # hg help codereview prints the help for this command + # instead of the help for the extension. + "code-login": ( + code_login, + [], + "", + ), + "^download": ( + download, + [], + "change#" + ), + "^file": ( + file, + [ + ('d', 'delete', None, 'delete files from change list (but not repository)'), + ], + "[-d] change# FILE ..." + ), + "^gofmt": ( + gofmt, + [ + ('l', 'list', None, 'list files that would change, but do not edit them'), + ], + "FILE ..." + ), + "^pending|p": ( + pending, + [], + "[FILE ...]" + ), + "^mail": ( + mail, + review_opts + [ + ] + commands.walkopts, + "[-r reviewer] [--cc cc] [change# | file ...]" + ), + "^release-apply": ( + release_apply, + [ + ('', 'ignore_hgpatch_failure', None, 'create CL metadata even if hgpatch fails'), + ('', 'no_incoming', None, 'disable check for incoming changes'), + ], + "change#" + ), + # TODO: release-start, release-tag, weekly-tag + "^submit": ( + submit, + review_opts + [ + ('', 'no_incoming', None, 'disable initial incoming check (for testing)'), + ('n', 'dryrun', None, 'make change only locally (for testing)'), + ] + commands.walkopts + commands.commitopts + commands.commitopts2, + "[-r reviewer] [--cc cc] [change# | file ...]" + ), + "^sync": ( + sync, + [ + ('', 'local', None, 'do not pull changes from remote repository') + ], + "[--local]", + ), + "^undo": ( + undo, + [ + ('', 'ignore_hgpatch_failure', None, 'create CL metadata even if hgpatch fails'), + ('', 'no_incoming', None, 'disable check for incoming changes'), + ], + "change#" + ), + "^upload": ( + upload, + [], + "change#" + ), +} + + +####################################################################### +# Wrappers around upload.py for interacting with Rietveld + +# HTML form parser +class FormParser(HTMLParser): + def __init__(self): + self.map = {} + self.curtag = None + self.curdata = None + HTMLParser.__init__(self) + def handle_starttag(self, tag, attrs): + if tag == "input": + key = None + value = '' + for a in attrs: + if a[0] == 'name': + key = a[1] + if a[0] == 'value': + value = a[1] + if key is not None: + self.map[key] = value + if tag == "textarea": + key = None + for a in attrs: + if a[0] == 'name': + key = a[1] + if key is not None: + self.curtag = key + self.curdata = '' + def handle_endtag(self, tag): + if tag == "textarea" and self.curtag is not None: + self.map[self.curtag] = self.curdata + self.curtag = None + self.curdata = None + def handle_charref(self, name): + self.handle_data(unichr(int(name))) + def handle_entityref(self, name): + import htmlentitydefs + if name in htmlentitydefs.entitydefs: + self.handle_data(htmlentitydefs.entitydefs[name]) + else: + self.handle_data("&" + name + ";") + def handle_data(self, data): + if self.curdata is not None: + self.curdata += data + +def JSONGet(ui, path): + try: + data = MySend(path, force_auth=False) + typecheck(data, str) + d = fix_json(json.loads(data)) + except: + ui.warn("JSONGet %s: %s\n" % (path, ExceptionDetail())) + return None + return d + +# Clean up json parser output to match our expectations: +# * all strings are UTF-8-encoded str, not unicode. +# * missing fields are missing, not None, +# so that d.get("foo", defaultvalue) works. +def fix_json(x): + if type(x) in [str, int, float, bool, type(None)]: + pass + elif type(x) is unicode: + x = x.encode("utf-8") + elif type(x) is list: + for i in range(len(x)): + x[i] = fix_json(x[i]) + elif type(x) is dict: + todel = [] + for k in x: + if x[k] is None: + todel.append(k) + else: + x[k] = fix_json(x[k]) + for k in todel: + del x[k] + else: + raise util.Abort("unknown type " + str(type(x)) + " in fix_json") + if type(x) is str: + x = x.replace('\r\n', '\n') + return x + +def IsRietveldSubmitted(ui, clname, hex): + dict = JSONGet(ui, "/api/" + clname + "?messages=true") + if dict is None: + return False + for msg in dict.get("messages", []): + text = msg.get("text", "") + m = re.match('\*\*\* Submitted as [^*]*?([0-9a-f]+) \*\*\*', text) + if m is not None and len(m.group(1)) >= 8 and hex.startswith(m.group(1)): + return True + return False + +def IsRietveldMailed(cl): + for msg in cl.dict.get("messages", []): + if msg.get("text", "").find("I'd like you to review this change") >= 0: + return True + return False + +def DownloadCL(ui, repo, clname): + set_status("downloading CL " + clname) + cl, err = LoadCL(ui, repo, clname, web=True) + if err != "": + return None, None, None, "error loading CL %s: %s" % (clname, err) + + # Find most recent diff + diffs = cl.dict.get("patchsets", []) + if not diffs: + return None, None, None, "CL has no patch sets" + patchid = diffs[-1] + + patchset = JSONGet(ui, "/api/" + clname + "/" + str(patchid)) + if patchset is None: + return None, None, None, "error loading CL patchset %s/%d" % (clname, patchid) + if patchset.get("patchset", 0) != patchid: + return None, None, None, "malformed patchset information" + + vers = "" + msg = patchset.get("message", "").split() + if len(msg) >= 3 and msg[0] == "diff" and msg[1] == "-r": + vers = msg[2] + diff = "/download/issue" + clname + "_" + str(patchid) + ".diff" + + diffdata = MySend(diff, force_auth=False) + + # Print warning if email is not in CONTRIBUTORS file. + email = cl.dict.get("owner_email", "") + if not email: + return None, None, None, "cannot find owner for %s" % (clname) + him = FindContributor(ui, repo, email) + me = FindContributor(ui, repo, None) + if him == me: + cl.mailed = IsRietveldMailed(cl) + else: + cl.copied_from = email + + return cl, vers, diffdata, "" + +def MySend(request_path, payload=None, + content_type="application/octet-stream", + timeout=None, force_auth=True, + **kwargs): + """Run MySend1 maybe twice, because Rietveld is unreliable.""" + try: + return MySend1(request_path, payload, content_type, timeout, force_auth, **kwargs) + except Exception, e: + if type(e) != urllib2.HTTPError or e.code != 500: # only retry on HTTP 500 error + raise + print >>sys.stderr, "Loading "+request_path+": "+ExceptionDetail()+"; trying again in 2 seconds." + time.sleep(2) + return MySend1(request_path, payload, content_type, timeout, force_auth, **kwargs) + +# Like upload.py Send but only authenticates when the +# redirect is to www.google.com/accounts. This keeps +# unnecessary redirects from happening during testing. +def MySend1(request_path, payload=None, + content_type="application/octet-stream", + timeout=None, force_auth=True, + **kwargs): + """Sends an RPC and returns the response. + + Args: + request_path: The path to send the request to, eg /api/appversion/create. + payload: The body of the request, or None to send an empty request. + content_type: The Content-Type header to use. + timeout: timeout in seconds; default None i.e. no timeout. + (Note: for large requests on OS X, the timeout doesn't work right.) + kwargs: Any keyword arguments are converted into query string parameters. + + Returns: + The response body, as a string. + """ + # TODO: Don't require authentication. Let the server say + # whether it is necessary. + global rpc + if rpc == None: + rpc = GetRpcServer(upload_options) + self = rpc + if not self.authenticated and force_auth: + self._Authenticate() + if request_path is None: + return + + old_timeout = socket.getdefaulttimeout() + socket.setdefaulttimeout(timeout) + try: + tries = 0 + while True: + tries += 1 + args = dict(kwargs) + url = "http://%s%s" % (self.host, request_path) + if args: + url += "?" + urllib.urlencode(args) + req = self._CreateRequest(url=url, data=payload) + req.add_header("Content-Type", content_type) + try: + f = self.opener.open(req) + response = f.read() + f.close() + # Translate \r\n into \n, because Rietveld doesn't. + response = response.replace('\r\n', '\n') + # who knows what urllib will give us + if type(response) == unicode: + response = response.encode("utf-8") + typecheck(response, str) + return response + except urllib2.HTTPError, e: + if tries > 3: + raise + elif e.code == 401: + self._Authenticate() + elif e.code == 302: + loc = e.info()["location"] + if not loc.startswith('https://www.google.com/a') or loc.find('/ServiceLogin') < 0: + return '' + self._Authenticate() + else: + raise + finally: + socket.setdefaulttimeout(old_timeout) + +def GetForm(url): + f = FormParser() + f.feed(ustr(MySend(url))) # f.feed wants unicode + f.close() + # convert back to utf-8 to restore sanity + m = {} + for k,v in f.map.items(): + m[k.encode("utf-8")] = v.replace("\r\n", "\n").encode("utf-8") + return m + +def EditDesc(issue, subject=None, desc=None, reviewers=None, cc=None, closed=False, private=False): + set_status("uploading change to description") + form_fields = GetForm("/" + issue + "/edit") + if subject is not None: + form_fields['subject'] = subject + if desc is not None: + form_fields['description'] = desc + if reviewers is not None: + form_fields['reviewers'] = reviewers + if cc is not None: + form_fields['cc'] = cc + if closed: + form_fields['closed'] = "checked" + if private: + form_fields['private'] = "checked" + ctype, body = EncodeMultipartFormData(form_fields.items(), []) + response = MySend("/" + issue + "/edit", body, content_type=ctype) + if response != "": + print >>sys.stderr, "Error editing description:\n" + "Sent form: \n", form_fields, "\n", response + sys.exit(2) + +def PostMessage(ui, issue, message, reviewers=None, cc=None, send_mail=True, subject=None): + set_status("uploading message") + form_fields = GetForm("/" + issue + "/publish") + if reviewers is not None: + form_fields['reviewers'] = reviewers + if cc is not None: + form_fields['cc'] = cc + if send_mail: + form_fields['send_mail'] = "checked" + else: + del form_fields['send_mail'] + if subject is not None: + form_fields['subject'] = subject + form_fields['message'] = message + + form_fields['message_only'] = '1' # Don't include draft comments + if reviewers is not None or cc is not None: + form_fields['message_only'] = '' # Must set '' in order to override cc/reviewer + ctype = "applications/x-www-form-urlencoded" + body = urllib.urlencode(form_fields) + response = MySend("/" + issue + "/publish", body, content_type=ctype) + if response != "": + print response + sys.exit(2) + +class opt(object): + pass + +def nocommit(*pats, **opts): + """(disabled when using this extension)""" + raise util.Abort("codereview extension enabled; use mail, upload, or submit instead of commit") + +def nobackout(*pats, **opts): + """(disabled when using this extension)""" + raise util.Abort("codereview extension enabled; use undo instead of backout") + +def norollback(*pats, **opts): + """(disabled when using this extension)""" + raise util.Abort("codereview extension enabled; use undo instead of rollback") + +def RietveldSetup(ui, repo): + global defaultcc, upload_options, rpc, server, server_url_base, force_google_account, verbosity, contributors + global missing_codereview + + repo_config_path = '' + # Read repository-specific options from lib/codereview/codereview.cfg + try: + repo_config_path = repo.root + '/lib/codereview/codereview.cfg' + f = open(repo_config_path) + for line in f: + if line.startswith('defaultcc: '): + defaultcc = SplitCommaSpace(line[10:]) + except: + # If there are no options, chances are good this is not + # a code review repository; stop now before we foul + # things up even worse. Might also be that repo doesn't + # even have a root. See issue 959. + if repo_config_path == '': + missing_codereview = 'codereview disabled: repository has no root' + else: + missing_codereview = 'codereview disabled: cannot open ' + repo_config_path + return + + # Should only modify repository with hg submit. + # Disable the built-in Mercurial commands that might + # trip things up. + cmdutil.commit = nocommit + global real_rollback + real_rollback = repo.rollback + repo.rollback = norollback + # would install nobackout if we could; oh well + + try: + f = open(repo.root + '/CONTRIBUTORS', 'r') + except: + raise util.Abort("cannot open %s: %s" % (repo.root+'/CONTRIBUTORS', ExceptionDetail())) + for line in f: + # CONTRIBUTORS is a list of lines like: + # Person + # Person + # The first email address is the one used in commit logs. + if line.startswith('#'): + continue + m = re.match(r"([^<>]+\S)\s+(<[^<>\s]+>)((\s+<[^<>\s]+>)*)\s*$", line) + if m: + name = m.group(1) + email = m.group(2)[1:-1] + contributors[email.lower()] = (name, email) + for extra in m.group(3).split(): + contributors[extra[1:-1].lower()] = (name, email) + + if not ui.verbose: + verbosity = 0 + + # Config options. + x = ui.config("codereview", "server") + if x is not None: + server = x + + # TODO(rsc): Take from ui.username? + email = None + x = ui.config("codereview", "email") + if x is not None: + email = x + + server_url_base = "http://" + server + "/" + + testing = ui.config("codereview", "testing") + force_google_account = ui.configbool("codereview", "force_google_account", False) + + upload_options = opt() + upload_options.email = email + upload_options.host = None + upload_options.verbose = 0 + upload_options.description = None + upload_options.description_file = None + upload_options.reviewers = None + upload_options.cc = None + upload_options.message = None + upload_options.issue = None + upload_options.download_base = False + upload_options.revision = None + upload_options.send_mail = False + upload_options.vcs = None + upload_options.server = server + upload_options.save_cookies = True + + if testing: + upload_options.save_cookies = False + upload_options.email = "test@example.com" + + rpc = None + + global releaseBranch + tags = repo.branchtags().keys() + if 'release-branch.r100' in tags: + # NOTE(rsc): This tags.sort is going to get the wrong + # answer when comparing release-branch.r99 with + # release-branch.r100. If we do ten releases a year + # that gives us 4 years before we have to worry about this. + raise util.Abort('tags.sort needs to be fixed for release-branch.r100') + tags.sort() + for t in tags: + if t.startswith('release-branch.'): + releaseBranch = t + +####################################################################### +# http://codereview.appspot.com/static/upload.py, heavily edited. + +#!/usr/bin/env python +# +# Copyright 2007 Google Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Tool for uploading diffs from a version control system to the codereview app. + +Usage summary: upload.py [options] [-- diff_options] + +Diff options are passed to the diff command of the underlying system. + +Supported version control systems: + Git + Mercurial + Subversion + +It is important for Git/Mercurial users to specify a tree/node/branch to diff +against by using the '--rev' option. +""" +# This code is derived from appcfg.py in the App Engine SDK (open source), +# and from ASPN recipe #146306. + +import cookielib +import getpass +import logging +import mimetypes +import optparse +import os +import re +import socket +import subprocess +import sys +import urllib +import urllib2 +import urlparse + +# The md5 module was deprecated in Python 2.5. +try: + from hashlib import md5 +except ImportError: + from md5 import md5 + +try: + import readline +except ImportError: + pass + +# The logging verbosity: +# 0: Errors only. +# 1: Status messages. +# 2: Info logs. +# 3: Debug logs. +verbosity = 1 + +# Max size of patch or base file. +MAX_UPLOAD_SIZE = 900 * 1024 + +# whitelist for non-binary filetypes which do not start with "text/" +# .mm (Objective-C) shows up as application/x-freemind on my Linux box. +TEXT_MIMETYPES = [ + 'application/javascript', + 'application/x-javascript', + 'application/x-freemind' +] + +def GetEmail(prompt): + """Prompts the user for their email address and returns it. + + The last used email address is saved to a file and offered up as a suggestion + to the user. If the user presses enter without typing in anything the last + used email address is used. If the user enters a new address, it is saved + for next time we prompt. + + """ + last_email_file_name = os.path.expanduser("~/.last_codereview_email_address") + last_email = "" + if os.path.exists(last_email_file_name): + try: + last_email_file = open(last_email_file_name, "r") + last_email = last_email_file.readline().strip("\n") + last_email_file.close() + prompt += " [%s]" % last_email + except IOError, e: + pass + email = raw_input(prompt + ": ").strip() + if email: + try: + last_email_file = open(last_email_file_name, "w") + last_email_file.write(email) + last_email_file.close() + except IOError, e: + pass + else: + email = last_email + return email + + +def StatusUpdate(msg): + """Print a status message to stdout. + + If 'verbosity' is greater than 0, print the message. + + Args: + msg: The string to print. + """ + if verbosity > 0: + print msg + + +def ErrorExit(msg): + """Print an error message to stderr and exit.""" + print >>sys.stderr, msg + sys.exit(1) + + +class ClientLoginError(urllib2.HTTPError): + """Raised to indicate there was an error authenticating with ClientLogin.""" + + def __init__(self, url, code, msg, headers, args): + urllib2.HTTPError.__init__(self, url, code, msg, headers, None) + self.args = args + self.reason = args["Error"] + + +class AbstractRpcServer(object): + """Provides a common interface for a simple RPC server.""" + + def __init__(self, host, auth_function, host_override=None, extra_headers={}, save_cookies=False): + """Creates a new HttpRpcServer. + + Args: + host: The host to send requests to. + auth_function: A function that takes no arguments and returns an + (email, password) tuple when called. Will be called if authentication + is required. + host_override: The host header to send to the server (defaults to host). + extra_headers: A dict of extra headers to append to every request. + save_cookies: If True, save the authentication cookies to local disk. + If False, use an in-memory cookiejar instead. Subclasses must + implement this functionality. Defaults to False. + """ + self.host = host + self.host_override = host_override + self.auth_function = auth_function + self.authenticated = False + self.extra_headers = extra_headers + self.save_cookies = save_cookies + self.opener = self._GetOpener() + if self.host_override: + logging.info("Server: %s; Host: %s", self.host, self.host_override) + else: + logging.info("Server: %s", self.host) + + def _GetOpener(self): + """Returns an OpenerDirector for making HTTP requests. + + Returns: + A urllib2.OpenerDirector object. + """ + raise NotImplementedError() + + def _CreateRequest(self, url, data=None): + """Creates a new urllib request.""" + logging.debug("Creating request for: '%s' with payload:\n%s", url, data) + req = urllib2.Request(url, data=data) + if self.host_override: + req.add_header("Host", self.host_override) + for key, value in self.extra_headers.iteritems(): + req.add_header(key, value) + return req + + def _GetAuthToken(self, email, password): + """Uses ClientLogin to authenticate the user, returning an auth token. + + Args: + email: The user's email address + password: The user's password + + Raises: + ClientLoginError: If there was an error authenticating with ClientLogin. + HTTPError: If there was some other form of HTTP error. + + Returns: + The authentication token returned by ClientLogin. + """ + account_type = "GOOGLE" + if self.host.endswith(".google.com") and not force_google_account: + # Needed for use inside Google. + account_type = "HOSTED" + req = self._CreateRequest( + url="https://www.google.com/accounts/ClientLogin", + data=urllib.urlencode({ + "Email": email, + "Passwd": password, + "service": "ah", + "source": "rietveld-codereview-upload", + "accountType": account_type, + }), + ) + try: + response = self.opener.open(req) + response_body = response.read() + response_dict = dict(x.split("=") for x in response_body.split("\n") if x) + return response_dict["Auth"] + except urllib2.HTTPError, e: + if e.code == 403: + body = e.read() + response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) + raise ClientLoginError(req.get_full_url(), e.code, e.msg, e.headers, response_dict) + else: + raise + + def _GetAuthCookie(self, auth_token): + """Fetches authentication cookies for an authentication token. + + Args: + auth_token: The authentication token returned by ClientLogin. + + Raises: + HTTPError: If there was an error fetching the authentication cookies. + """ + # This is a dummy value to allow us to identify when we're successful. + continue_location = "http://localhost/" + args = {"continue": continue_location, "auth": auth_token} + req = self._CreateRequest("http://%s/_ah/login?%s" % (self.host, urllib.urlencode(args))) + try: + response = self.opener.open(req) + except urllib2.HTTPError, e: + response = e + if (response.code != 302 or + response.info()["location"] != continue_location): + raise urllib2.HTTPError(req.get_full_url(), response.code, response.msg, response.headers, response.fp) + self.authenticated = True + + def _Authenticate(self): + """Authenticates the user. + + The authentication process works as follows: + 1) We get a username and password from the user + 2) We use ClientLogin to obtain an AUTH token for the user + (see http://code.google.com/apis/accounts/AuthForInstalledApps.html). + 3) We pass the auth token to /_ah/login on the server to obtain an + authentication cookie. If login was successful, it tries to redirect + us to the URL we provided. + + If we attempt to access the upload API without first obtaining an + authentication cookie, it returns a 401 response (or a 302) and + directs us to authenticate ourselves with ClientLogin. + """ + for i in range(3): + credentials = self.auth_function() + try: + auth_token = self._GetAuthToken(credentials[0], credentials[1]) + except ClientLoginError, e: + if e.reason == "BadAuthentication": + print >>sys.stderr, "Invalid username or password." + continue + if e.reason == "CaptchaRequired": + print >>sys.stderr, ( + "Please go to\n" + "https://www.google.com/accounts/DisplayUnlockCaptcha\n" + "and verify you are a human. Then try again.") + break + if e.reason == "NotVerified": + print >>sys.stderr, "Account not verified." + break + if e.reason == "TermsNotAgreed": + print >>sys.stderr, "User has not agreed to TOS." + break + if e.reason == "AccountDeleted": + print >>sys.stderr, "The user account has been deleted." + break + if e.reason == "AccountDisabled": + print >>sys.stderr, "The user account has been disabled." + break + if e.reason == "ServiceDisabled": + print >>sys.stderr, "The user's access to the service has been disabled." + break + if e.reason == "ServiceUnavailable": + print >>sys.stderr, "The service is not available; try again later." + break + raise + self._GetAuthCookie(auth_token) + return + + def Send(self, request_path, payload=None, + content_type="application/octet-stream", + timeout=None, + **kwargs): + """Sends an RPC and returns the response. + + Args: + request_path: The path to send the request to, eg /api/appversion/create. + payload: The body of the request, or None to send an empty request. + content_type: The Content-Type header to use. + timeout: timeout in seconds; default None i.e. no timeout. + (Note: for large requests on OS X, the timeout doesn't work right.) + kwargs: Any keyword arguments are converted into query string parameters. + + Returns: + The response body, as a string. + """ + # TODO: Don't require authentication. Let the server say + # whether it is necessary. + if not self.authenticated: + self._Authenticate() + + old_timeout = socket.getdefaulttimeout() + socket.setdefaulttimeout(timeout) + try: + tries = 0 + while True: + tries += 1 + args = dict(kwargs) + url = "http://%s%s" % (self.host, request_path) + if args: + url += "?" + urllib.urlencode(args) + req = self._CreateRequest(url=url, data=payload) + req.add_header("Content-Type", content_type) + try: + f = self.opener.open(req) + response = f.read() + f.close() + return response + except urllib2.HTTPError, e: + if tries > 3: + raise + elif e.code == 401 or e.code == 302: + self._Authenticate() + else: + raise + finally: + socket.setdefaulttimeout(old_timeout) + + +class HttpRpcServer(AbstractRpcServer): + """Provides a simplified RPC-style interface for HTTP requests.""" + + def _Authenticate(self): + """Save the cookie jar after authentication.""" + super(HttpRpcServer, self)._Authenticate() + if self.save_cookies: + StatusUpdate("Saving authentication cookies to %s" % self.cookie_file) + self.cookie_jar.save() + + def _GetOpener(self): + """Returns an OpenerDirector that supports cookies and ignores redirects. + + Returns: + A urllib2.OpenerDirector object. + """ + opener = urllib2.OpenerDirector() + opener.add_handler(urllib2.ProxyHandler()) + opener.add_handler(urllib2.UnknownHandler()) + opener.add_handler(urllib2.HTTPHandler()) + opener.add_handler(urllib2.HTTPDefaultErrorHandler()) + opener.add_handler(urllib2.HTTPSHandler()) + opener.add_handler(urllib2.HTTPErrorProcessor()) + if self.save_cookies: + self.cookie_file = os.path.expanduser("~/.codereview_upload_cookies_" + server) + self.cookie_jar = cookielib.MozillaCookieJar(self.cookie_file) + if os.path.exists(self.cookie_file): + try: + self.cookie_jar.load() + self.authenticated = True + StatusUpdate("Loaded authentication cookies from %s" % self.cookie_file) + except (cookielib.LoadError, IOError): + # Failed to load cookies - just ignore them. + pass + else: + # Create an empty cookie file with mode 600 + fd = os.open(self.cookie_file, os.O_CREAT, 0600) + os.close(fd) + # Always chmod the cookie file + os.chmod(self.cookie_file, 0600) + else: + # Don't save cookies across runs of update.py. + self.cookie_jar = cookielib.CookieJar() + opener.add_handler(urllib2.HTTPCookieProcessor(self.cookie_jar)) + return opener + + +def GetRpcServer(options): + """Returns an instance of an AbstractRpcServer. + + Returns: + A new AbstractRpcServer, on which RPC calls can be made. + """ + + rpc_server_class = HttpRpcServer + + def GetUserCredentials(): + """Prompts the user for a username and password.""" + # Disable status prints so they don't obscure the password prompt. + global global_status + st = global_status + global_status = None + + email = options.email + if email is None: + email = GetEmail("Email (login for uploading to %s)" % options.server) + password = getpass.getpass("Password for %s: " % email) + + # Put status back. + global_status = st + return (email, password) + + # If this is the dev_appserver, use fake authentication. + host = (options.host or options.server).lower() + if host == "localhost" or host.startswith("localhost:"): + email = options.email + if email is None: + email = "test@example.com" + logging.info("Using debug user %s. Override with --email" % email) + server = rpc_server_class( + options.server, + lambda: (email, "password"), + host_override=options.host, + extra_headers={"Cookie": 'dev_appserver_login="%s:False"' % email}, + save_cookies=options.save_cookies) + # Don't try to talk to ClientLogin. + server.authenticated = True + return server + + return rpc_server_class(options.server, GetUserCredentials, + host_override=options.host, save_cookies=options.save_cookies) + + +def EncodeMultipartFormData(fields, files): + """Encode form fields for multipart/form-data. + + Args: + fields: A sequence of (name, value) elements for regular form fields. + files: A sequence of (name, filename, value) elements for data to be + uploaded as files. + Returns: + (content_type, body) ready for httplib.HTTP instance. + + Source: + http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/146306 + """ + BOUNDARY = '-M-A-G-I-C---B-O-U-N-D-A-R-Y-' + CRLF = '\r\n' + lines = [] + for (key, value) in fields: + typecheck(key, str) + typecheck(value, str) + lines.append('--' + BOUNDARY) + lines.append('Content-Disposition: form-data; name="%s"' % key) + lines.append('') + lines.append(value) + for (key, filename, value) in files: + typecheck(key, str) + typecheck(filename, str) + typecheck(value, str) + lines.append('--' + BOUNDARY) + lines.append('Content-Disposition: form-data; name="%s"; filename="%s"' % (key, filename)) + lines.append('Content-Type: %s' % GetContentType(filename)) + lines.append('') + lines.append(value) + lines.append('--' + BOUNDARY + '--') + lines.append('') + body = CRLF.join(lines) + content_type = 'multipart/form-data; boundary=%s' % BOUNDARY + return content_type, body + + +def GetContentType(filename): + """Helper to guess the content-type from the filename.""" + return mimetypes.guess_type(filename)[0] or 'application/octet-stream' + + +# Use a shell for subcommands on Windows to get a PATH search. +use_shell = sys.platform.startswith("win") + +def RunShellWithReturnCode(command, print_output=False, + universal_newlines=True, env=os.environ): + """Executes a command and returns the output from stdout and the return code. + + Args: + command: Command to execute. + print_output: If True, the output is printed to stdout. + If False, both stdout and stderr are ignored. + universal_newlines: Use universal_newlines flag (default: True). + + Returns: + Tuple (output, return code) + """ + logging.info("Running %s", command) + p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, + shell=use_shell, universal_newlines=universal_newlines, env=env) + if print_output: + output_array = [] + while True: + line = p.stdout.readline() + if not line: + break + print line.strip("\n") + output_array.append(line) + output = "".join(output_array) + else: + output = p.stdout.read() + p.wait() + errout = p.stderr.read() + if print_output and errout: + print >>sys.stderr, errout + p.stdout.close() + p.stderr.close() + return output, p.returncode + + +def RunShell(command, silent_ok=False, universal_newlines=True, + print_output=False, env=os.environ): + data, retcode = RunShellWithReturnCode(command, print_output, universal_newlines, env) + if retcode: + ErrorExit("Got error status from %s:\n%s" % (command, data)) + if not silent_ok and not data: + ErrorExit("No output from %s" % command) + return data + + +class VersionControlSystem(object): + """Abstract base class providing an interface to the VCS.""" + + def __init__(self, options): + """Constructor. + + Args: + options: Command line options. + """ + self.options = options + + def GenerateDiff(self, args): + """Return the current diff as a string. + + Args: + args: Extra arguments to pass to the diff command. + """ + raise NotImplementedError( + "abstract method -- subclass %s must override" % self.__class__) + + def GetUnknownFiles(self): + """Return a list of files unknown to the VCS.""" + raise NotImplementedError( + "abstract method -- subclass %s must override" % self.__class__) + + def CheckForUnknownFiles(self): + """Show an "are you sure?" prompt if there are unknown files.""" + unknown_files = self.GetUnknownFiles() + if unknown_files: + print "The following files are not added to version control:" + for line in unknown_files: + print line + prompt = "Are you sure to continue?(y/N) " + answer = raw_input(prompt).strip() + if answer != "y": + ErrorExit("User aborted") + + def GetBaseFile(self, filename): + """Get the content of the upstream version of a file. + + Returns: + A tuple (base_content, new_content, is_binary, status) + base_content: The contents of the base file. + new_content: For text files, this is empty. For binary files, this is + the contents of the new file, since the diff output won't contain + information to reconstruct the current file. + is_binary: True iff the file is binary. + status: The status of the file. + """ + + raise NotImplementedError( + "abstract method -- subclass %s must override" % self.__class__) + + + def GetBaseFiles(self, diff): + """Helper that calls GetBase file for each file in the patch. + + Returns: + A dictionary that maps from filename to GetBaseFile's tuple. Filenames + are retrieved based on lines that start with "Index:" or + "Property changes on:". + """ + files = {} + for line in diff.splitlines(True): + if line.startswith('Index:') or line.startswith('Property changes on:'): + unused, filename = line.split(':', 1) + # On Windows if a file has property changes its filename uses '\' + # instead of '/'. + filename = filename.strip().replace('\\', '/') + files[filename] = self.GetBaseFile(filename) + return files + + + def UploadBaseFiles(self, issue, rpc_server, patch_list, patchset, options, + files): + """Uploads the base files (and if necessary, the current ones as well).""" + + def UploadFile(filename, file_id, content, is_binary, status, is_base): + """Uploads a file to the server.""" + set_status("uploading " + filename) + file_too_large = False + if is_base: + type = "base" + else: + type = "current" + if len(content) > MAX_UPLOAD_SIZE: + print ("Not uploading the %s file for %s because it's too large." % + (type, filename)) + file_too_large = True + content = "" + checksum = md5(content).hexdigest() + if options.verbose > 0 and not file_too_large: + print "Uploading %s file for %s" % (type, filename) + url = "/%d/upload_content/%d/%d" % (int(issue), int(patchset), file_id) + form_fields = [ + ("filename", filename), + ("status", status), + ("checksum", checksum), + ("is_binary", str(is_binary)), + ("is_current", str(not is_base)), + ] + if file_too_large: + form_fields.append(("file_too_large", "1")) + if options.email: + form_fields.append(("user", options.email)) + ctype, body = EncodeMultipartFormData(form_fields, [("data", filename, content)]) + response_body = rpc_server.Send(url, body, content_type=ctype) + if not response_body.startswith("OK"): + StatusUpdate(" --> %s" % response_body) + sys.exit(1) + + # Don't want to spawn too many threads, nor do we want to + # hit Rietveld too hard, or it will start serving 500 errors. + # When 8 works, it's no better than 4, and sometimes 8 is + # too many for Rietveld to handle. + MAX_PARALLEL_UPLOADS = 4 + + sema = threading.BoundedSemaphore(MAX_PARALLEL_UPLOADS) + upload_threads = [] + finished_upload_threads = [] + + class UploadFileThread(threading.Thread): + def __init__(self, args): + threading.Thread.__init__(self) + self.args = args + def run(self): + UploadFile(*self.args) + finished_upload_threads.append(self) + sema.release() + + def StartUploadFile(*args): + sema.acquire() + while len(finished_upload_threads) > 0: + t = finished_upload_threads.pop() + upload_threads.remove(t) + t.join() + t = UploadFileThread(args) + upload_threads.append(t) + t.start() + + def WaitForUploads(): + for t in upload_threads: + t.join() + + patches = dict() + [patches.setdefault(v, k) for k, v in patch_list] + for filename in patches.keys(): + base_content, new_content, is_binary, status = files[filename] + file_id_str = patches.get(filename) + if file_id_str.find("nobase") != -1: + base_content = None + file_id_str = file_id_str[file_id_str.rfind("_") + 1:] + file_id = int(file_id_str) + if base_content != None: + StartUploadFile(filename, file_id, base_content, is_binary, status, True) + if new_content != None: + StartUploadFile(filename, file_id, new_content, is_binary, status, False) + WaitForUploads() + + def IsImage(self, filename): + """Returns true if the filename has an image extension.""" + mimetype = mimetypes.guess_type(filename)[0] + if not mimetype: + return False + return mimetype.startswith("image/") + + def IsBinary(self, filename): + """Returns true if the guessed mimetyped isnt't in text group.""" + mimetype = mimetypes.guess_type(filename)[0] + if not mimetype: + return False # e.g. README, "real" binaries usually have an extension + # special case for text files which don't start with text/ + if mimetype in TEXT_MIMETYPES: + return False + return not mimetype.startswith("text/") + +class FakeMercurialUI(object): + def __init__(self): + self.quiet = True + self.output = '' + + def write(self, *args, **opts): + self.output += ' '.join(args) + +use_hg_shell = False # set to True to shell out to hg always; slower + +class MercurialVCS(VersionControlSystem): + """Implementation of the VersionControlSystem interface for Mercurial.""" + + def __init__(self, options, ui, repo): + super(MercurialVCS, self).__init__(options) + self.ui = ui + self.repo = repo + # Absolute path to repository (we can be in a subdir) + self.repo_dir = os.path.normpath(repo.root) + # Compute the subdir + cwd = os.path.normpath(os.getcwd()) + assert cwd.startswith(self.repo_dir) + self.subdir = cwd[len(self.repo_dir):].lstrip(r"\/") + if self.options.revision: + self.base_rev = self.options.revision + else: + mqparent, err = RunShellWithReturnCode(['hg', 'log', '--rev', 'qparent', '--template={node}']) + if not err and mqparent != "": + self.base_rev = mqparent + else: + self.base_rev = RunShell(["hg", "parents", "-q"]).split(':')[1].strip() + def _GetRelPath(self, filename): + """Get relative path of a file according to the current directory, + given its logical path in the repo.""" + assert filename.startswith(self.subdir), (filename, self.subdir) + return filename[len(self.subdir):].lstrip(r"\/") + + def GenerateDiff(self, extra_args): + # If no file specified, restrict to the current subdir + extra_args = extra_args or ["."] + cmd = ["hg", "diff", "--git", "-r", self.base_rev] + extra_args + data = RunShell(cmd, silent_ok=True) + svndiff = [] + filecount = 0 + for line in data.splitlines(): + m = re.match("diff --git a/(\S+) b/(\S+)", line) + if m: + # Modify line to make it look like as it comes from svn diff. + # With this modification no changes on the server side are required + # to make upload.py work with Mercurial repos. + # NOTE: for proper handling of moved/copied files, we have to use + # the second filename. + filename = m.group(2) + svndiff.append("Index: %s" % filename) + svndiff.append("=" * 67) + filecount += 1 + logging.info(line) + else: + svndiff.append(line) + if not filecount: + ErrorExit("No valid patches found in output from hg diff") + return "\n".join(svndiff) + "\n" + + def GetUnknownFiles(self): + """Return a list of files unknown to the VCS.""" + args = [] + status = RunShell(["hg", "status", "--rev", self.base_rev, "-u", "."], + silent_ok=True) + unknown_files = [] + for line in status.splitlines(): + st, fn = line.split(" ", 1) + if st == "?": + unknown_files.append(fn) + return unknown_files + + def GetBaseFile(self, filename): + set_status("inspecting " + filename) + # "hg status" and "hg cat" both take a path relative to the current subdir + # rather than to the repo root, but "hg diff" has given us the full path + # to the repo root. + base_content = "" + new_content = None + is_binary = False + oldrelpath = relpath = self._GetRelPath(filename) + # "hg status -C" returns two lines for moved/copied files, one otherwise + if use_hg_shell: + out = RunShell(["hg", "status", "-C", "--rev", self.base_rev, relpath]) + else: + fui = FakeMercurialUI() + ret = commands.status(fui, self.repo, *[relpath], **{'rev': [self.base_rev], 'copies': True}) + if ret: + raise util.Abort(ret) + out = fui.output + out = out.splitlines() + # HACK: strip error message about missing file/directory if it isn't in + # the working copy + if out[0].startswith('%s: ' % relpath): + out = out[1:] + status, what = out[0].split(' ', 1) + if len(out) > 1 and status == "A" and what == relpath: + oldrelpath = out[1].strip() + status = "M" + if ":" in self.base_rev: + base_rev = self.base_rev.split(":", 1)[0] + else: + base_rev = self.base_rev + if status != "A": + if use_hg_shell: + base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath], silent_ok=True) + else: + base_content = str(self.repo[base_rev][oldrelpath].data()) + is_binary = "\0" in base_content # Mercurial's heuristic + if status != "R": + new_content = open(relpath, "rb").read() + is_binary = is_binary or "\0" in new_content + if is_binary and base_content and use_hg_shell: + # Fetch again without converting newlines + base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath], + silent_ok=True, universal_newlines=False) + if not is_binary or not self.IsImage(relpath): + new_content = None + return base_content, new_content, is_binary, status + + +# NOTE: The SplitPatch function is duplicated in engine.py, keep them in sync. +def SplitPatch(data): + """Splits a patch into separate pieces for each file. + + Args: + data: A string containing the output of svn diff. + + Returns: + A list of 2-tuple (filename, text) where text is the svn diff output + pertaining to filename. + """ + patches = [] + filename = None + diff = [] + for line in data.splitlines(True): + new_filename = None + if line.startswith('Index:'): + unused, new_filename = line.split(':', 1) + new_filename = new_filename.strip() + elif line.startswith('Property changes on:'): + unused, temp_filename = line.split(':', 1) + # When a file is modified, paths use '/' between directories, however + # when a property is modified '\' is used on Windows. Make them the same + # otherwise the file shows up twice. + temp_filename = temp_filename.strip().replace('\\', '/') + if temp_filename != filename: + # File has property changes but no modifications, create a new diff. + new_filename = temp_filename + if new_filename: + if filename and diff: + patches.append((filename, ''.join(diff))) + filename = new_filename + diff = [line] + continue + if diff is not None: + diff.append(line) + if filename and diff: + patches.append((filename, ''.join(diff))) + return patches + + +def UploadSeparatePatches(issue, rpc_server, patchset, data, options): + """Uploads a separate patch for each file in the diff output. + + Returns a list of [patch_key, filename] for each file. + """ + patches = SplitPatch(data) + rv = [] + for patch in patches: + set_status("uploading patch for " + patch[0]) + if len(patch[1]) > MAX_UPLOAD_SIZE: + print ("Not uploading the patch for " + patch[0] + + " because the file is too large.") + continue + form_fields = [("filename", patch[0])] + if not options.download_base: + form_fields.append(("content_upload", "1")) + files = [("data", "data.diff", patch[1])] + ctype, body = EncodeMultipartFormData(form_fields, files) + url = "/%d/upload_patch/%d" % (int(issue), int(patchset)) + print "Uploading patch for " + patch[0] + response_body = rpc_server.Send(url, body, content_type=ctype) + lines = response_body.splitlines() + if not lines or lines[0] != "OK": + StatusUpdate(" --> %s" % response_body) + sys.exit(1) + rv.append([lines[1], patch[0]]) + return rv diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/LICENSE b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/LICENSE new file mode 100644 index 00000000..ab6b011a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/dce.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/dce.go new file mode 100755 index 00000000..50a0f2d0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/dce.go @@ -0,0 +1,84 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "encoding/binary" + "fmt" + "os" +) + +// A Domain represents a Version 2 domain +type Domain byte + +// Domain constants for DCE Security (Version 2) UUIDs. +const ( + Person = Domain(0) + Group = Domain(1) + Org = Domain(2) +) + +// NewDCESecurity returns a DCE Security (Version 2) UUID. +// +// The domain should be one of Person, Group or Org. +// On a POSIX system the id should be the users UID for the Person +// domain and the users GID for the Group. The meaning of id for +// the domain Org or on non-POSIX systems is site defined. +// +// For a given domain/id pair the same token may be returned for up to +// 7 minutes and 10 seconds. +func NewDCESecurity(domain Domain, id uint32) UUID { + uuid := NewUUID() + if uuid != nil { + uuid[6] = (uuid[6] & 0x0f) | 0x20 // Version 2 + uuid[9] = byte(domain) + binary.BigEndian.PutUint32(uuid[0:], id) + } + return uuid +} + +// NewDCEPerson returns a DCE Security (Version 2) UUID in the person +// domain with the id returned by os.Getuid. +// +// NewDCEPerson(Person, uint32(os.Getuid())) +func NewDCEPerson() UUID { + return NewDCESecurity(Person, uint32(os.Getuid())) +} + +// NewDCEGroup returns a DCE Security (Version 2) UUID in the group +// domain with the id returned by os.Getgid. +// +// NewDCEGroup(Group, uint32(os.Getgid())) +func NewDCEGroup() UUID { + return NewDCESecurity(Group, uint32(os.Getgid())) +} + +// Domain returns the domain for a Version 2 UUID or false. +func (uuid UUID) Domain() (Domain, bool) { + if v, _ := uuid.Version(); v != 2 { + return 0, false + } + return Domain(uuid[9]), true +} + +// Id returns the id for a Version 2 UUID or false. +func (uuid UUID) Id() (uint32, bool) { + if v, _ := uuid.Version(); v != 2 { + return 0, false + } + return binary.BigEndian.Uint32(uuid[0:4]), true +} + +func (d Domain) String() string { + switch d { + case Person: + return "Person" + case Group: + return "Group" + case Org: + return "Org" + } + return fmt.Sprintf("Domain%d", int(d)) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/doc.go new file mode 100755 index 00000000..d8bd013e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/doc.go @@ -0,0 +1,8 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The uuid package generates and inspects UUIDs. +// +// UUIDs are based on RFC 4122 and DCE 1.1: Authentication and Security Services. +package uuid diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/hash.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/hash.go new file mode 100644 index 00000000..cdd4192f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/hash.go @@ -0,0 +1,53 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "crypto/md5" + "crypto/sha1" + "hash" +) + +// Well known Name Space IDs and UUIDs +var ( + NameSpace_DNS = Parse("6ba7b810-9dad-11d1-80b4-00c04fd430c8") + NameSpace_URL = Parse("6ba7b811-9dad-11d1-80b4-00c04fd430c8") + NameSpace_OID = Parse("6ba7b812-9dad-11d1-80b4-00c04fd430c8") + NameSpace_X500 = Parse("6ba7b814-9dad-11d1-80b4-00c04fd430c8") + NIL = Parse("00000000-0000-0000-0000-000000000000") +) + +// NewHash returns a new UUID dervied from the hash of space concatenated with +// data generated by h. The hash should be at least 16 byte in length. The +// first 16 bytes of the hash are used to form the UUID. The version of the +// UUID will be the lower 4 bits of version. NewHash is used to implement +// NewMD5 and NewSHA1. +func NewHash(h hash.Hash, space UUID, data []byte, version int) UUID { + h.Reset() + h.Write(space) + h.Write([]byte(data)) + s := h.Sum(nil) + uuid := make([]byte, 16) + copy(uuid, s) + uuid[6] = (uuid[6] & 0x0f) | uint8((version&0xf)<<4) + uuid[8] = (uuid[8] & 0x3f) | 0x80 // RFC 4122 variant + return uuid +} + +// NewMD5 returns a new MD5 (Version 3) UUID based on the +// supplied name space and data. +// +// NewHash(md5.New(), space, data, 3) +func NewMD5(space UUID, data []byte) UUID { + return NewHash(md5.New(), space, data, 3) +} + +// NewSHA1 returns a new SHA1 (Version 5) UUID based on the +// supplied name space and data. +// +// NewHash(sha1.New(), space, data, 5) +func NewSHA1(space UUID, data []byte) UUID { + return NewHash(sha1.New(), space, data, 5) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/node.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/node.go new file mode 100755 index 00000000..dd0a8ac1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/node.go @@ -0,0 +1,101 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import "net" + +var ( + interfaces []net.Interface // cached list of interfaces + ifname string // name of interface being used + nodeID []byte // hardware for version 1 UUIDs +) + +// NodeInterface returns the name of the interface from which the NodeID was +// derived. The interface "user" is returned if the NodeID was set by +// SetNodeID. +func NodeInterface() string { + return ifname +} + +// SetNodeInterface selects the hardware address to be used for Version 1 UUIDs. +// If name is "" then the first usable interface found will be used or a random +// Node ID will be generated. If a named interface cannot be found then false +// is returned. +// +// SetNodeInterface never fails when name is "". +func SetNodeInterface(name string) bool { + if interfaces == nil { + var err error + interfaces, err = net.Interfaces() + if err != nil && name != "" { + return false + } + } + + for _, ifs := range interfaces { + if len(ifs.HardwareAddr) >= 6 && (name == "" || name == ifs.Name) { + if setNodeID(ifs.HardwareAddr) { + ifname = ifs.Name + return true + } + } + } + + // We found no interfaces with a valid hardware address. If name + // does not specify a specific interface generate a random Node ID + // (section 4.1.6) + if name == "" { + if nodeID == nil { + nodeID = make([]byte, 6) + } + randomBits(nodeID) + return true + } + return false +} + +// NodeID returns a slice of a copy of the current Node ID, setting the Node ID +// if not already set. +func NodeID() []byte { + if nodeID == nil { + SetNodeInterface("") + } + nid := make([]byte, 6) + copy(nid, nodeID) + return nid +} + +// SetNodeID sets the Node ID to be used for Version 1 UUIDs. The first 6 bytes +// of id are used. If id is less than 6 bytes then false is returned and the +// Node ID is not set. +func SetNodeID(id []byte) bool { + if setNodeID(id) { + ifname = "user" + return true + } + return false +} + +func setNodeID(id []byte) bool { + if len(id) < 6 { + return false + } + if nodeID == nil { + nodeID = make([]byte, 6) + } + copy(nodeID, id) + return true +} + +// NodeID returns the 6 byte node id encoded in uuid. It returns nil if uuid is +// not valid. The NodeID is only well defined for version 1 and 2 UUIDs. +func (uuid UUID) NodeID() []byte { + if len(uuid) != 16 { + return nil + } + node := make([]byte, 6) + copy(node, uuid[10:]) + return node +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/time.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/time.go new file mode 100755 index 00000000..ad467968 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/time.go @@ -0,0 +1,112 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "encoding/binary" + "time" +) + +// A Time represents a time as the number of 100's of nanoseconds since 15 Oct +// 1582. +type Time int64 + +const ( + lillian = 2299160 // Julian day of 15 Oct 1582 + unix = 2440587 // Julian day of 1 Jan 1970 + epoch = unix - lillian // Days between epochs + g1582 = epoch * 86400 // seconds between epochs + g1582ns100 = g1582 * 10000000 // 100s of a nanoseconds between epochs +) + +var ( + lasttime uint64 // last time we returned + clock_seq uint16 // clock sequence for this run + + timeNow = time.Now // for testing +) + +// UnixTime converts t the number of seconds and nanoseconds using the Unix +// epoch of 1 Jan 1970. +func (t Time) UnixTime() (sec, nsec int64) { + sec = int64(t - g1582ns100) + nsec = (sec % 10000000) * 100 + sec /= 10000000 + return sec, nsec +} + +// GetTime returns the current Time (100s of nanoseconds since 15 Oct 1582) and +// adjusts the clock sequence as needed. An error is returned if the current +// time cannot be determined. +func GetTime() (Time, error) { + t := timeNow() + + // If we don't have a clock sequence already, set one. + if clock_seq == 0 { + SetClockSequence(-1) + } + now := uint64(t.UnixNano()/100) + g1582ns100 + + // If time has gone backwards with this clock sequence then we + // increment the clock sequence + if now <= lasttime { + clock_seq = ((clock_seq + 1) & 0x3fff) | 0x8000 + } + lasttime = now + return Time(now), nil +} + +// ClockSequence returns the current clock sequence, generating one if not +// already set. The clock sequence is only used for Version 1 UUIDs. +// +// The uuid package does not use global static storage for the clock sequence or +// the last time a UUID was generated. Unless SetClockSequence a new random +// clock sequence is generated the first time a clock sequence is requested by +// ClockSequence, GetTime, or NewUUID. (section 4.2.1.1) sequence is generated +// for +func ClockSequence() int { + if clock_seq == 0 { + SetClockSequence(-1) + } + return int(clock_seq & 0x3fff) +} + +// SetClockSeq sets the clock sequence to the lower 14 bits of seq. Setting to +// -1 causes a new sequence to be generated. +func SetClockSequence(seq int) { + if seq == -1 { + var b [2]byte + randomBits(b[:]) // clock sequence + seq = int(b[0])<<8 | int(b[1]) + } + old_seq := clock_seq + clock_seq = uint16(seq&0x3fff) | 0x8000 // Set our variant + if old_seq != clock_seq { + lasttime = 0 + } +} + +// Time returns the time in 100s of nanoseconds since 15 Oct 1582 encoded in +// uuid. It returns false if uuid is not valid. The time is only well defined +// for version 1 and 2 UUIDs. +func (uuid UUID) Time() (Time, bool) { + if len(uuid) != 16 { + return 0, false + } + time := int64(binary.BigEndian.Uint32(uuid[0:4])) + time |= int64(binary.BigEndian.Uint16(uuid[4:6])) << 32 + time |= int64(binary.BigEndian.Uint16(uuid[6:8])&0xfff) << 48 + return Time(time), true +} + +// ClockSequence returns the clock sequence encoded in uuid. It returns false +// if uuid is not valid. The clock sequence is only well defined for version 1 +// and 2 UUIDs. +func (uuid UUID) ClockSequence() (int, bool) { + if len(uuid) != 16 { + return 0, false + } + return int(binary.BigEndian.Uint16(uuid[8:10])) & 0x3fff, true +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/util.go new file mode 100644 index 00000000..de40b102 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/util.go @@ -0,0 +1,43 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "io" +) + +// randomBits completely fills slice b with random data. +func randomBits(b []byte) { + if _, err := io.ReadFull(rander, b); err != nil { + panic(err.Error()) // rand should never fail + } +} + +// xvalues returns the value of a byte as a hexadecimal digit or 255. +var xvalues = []byte{ + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255, 255, 255, 255, 255, 255, + 255, 10, 11, 12, 13, 14, 15, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 10, 11, 12, 13, 14, 15, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, +} + +// xtob converts the the first two hex bytes of x into a byte. +func xtob(x string) (byte, bool) { + b1 := xvalues[x[0]] + b2 := xvalues[x[1]] + return (b1 << 4) | b2, b1 != 255 && b2 != 255 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/uuid.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/uuid.go new file mode 100755 index 00000000..2920fae6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/uuid.go @@ -0,0 +1,163 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "bytes" + "crypto/rand" + "fmt" + "io" + "strings" +) + +// A UUID is a 128 bit (16 byte) Universal Unique IDentifier as defined in RFC +// 4122. +type UUID []byte + +// A Version represents a UUIDs version. +type Version byte + +// A Variant represents a UUIDs variant. +type Variant byte + +// Constants returned by Variant. +const ( + Invalid = Variant(iota) // Invalid UUID + RFC4122 // The variant specified in RFC4122 + Reserved // Reserved, NCS backward compatibility. + Microsoft // Reserved, Microsoft Corporation backward compatibility. + Future // Reserved for future definition. +) + +var rander = rand.Reader // random function + +// New returns a new random (version 4) UUID as a string. It is a convenience +// function for NewRandom().String(). +func New() string { + return NewRandom().String() +} + +// Parse decodes s into a UUID or returns nil. Both the UUID form of +// xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx and +// urn:uuid:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx are decoded. +func Parse(s string) UUID { + if len(s) == 36+9 { + if strings.ToLower(s[:9]) != "urn:uuid:" { + return nil + } + s = s[9:] + } else if len(s) != 36 { + return nil + } + if s[8] != '-' || s[13] != '-' || s[18] != '-' || s[23] != '-' { + return nil + } + uuid := make([]byte, 16) + for i, x := range []int{ + 0, 2, 4, 6, + 9, 11, + 14, 16, + 19, 21, + 24, 26, 28, 30, 32, 34} { + if v, ok := xtob(s[x:]); !ok { + return nil + } else { + uuid[i] = v + } + } + return uuid +} + +// Equal returns true if uuid1 and uuid2 are equal. +func Equal(uuid1, uuid2 UUID) bool { + return bytes.Equal(uuid1, uuid2) +} + +// String returns the string form of uuid, xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx +// , or "" if uuid is invalid. +func (uuid UUID) String() string { + if uuid == nil || len(uuid) != 16 { + return "" + } + b := []byte(uuid) + return fmt.Sprintf("%08x-%04x-%04x-%04x-%012x", + b[:4], b[4:6], b[6:8], b[8:10], b[10:]) +} + +// URN returns the RFC 2141 URN form of uuid, +// urn:uuid:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, or "" if uuid is invalid. +func (uuid UUID) URN() string { + if uuid == nil || len(uuid) != 16 { + return "" + } + b := []byte(uuid) + return fmt.Sprintf("urn:uuid:%08x-%04x-%04x-%04x-%012x", + b[:4], b[4:6], b[6:8], b[8:10], b[10:]) +} + +// Variant returns the variant encoded in uuid. It returns Invalid if +// uuid is invalid. +func (uuid UUID) Variant() Variant { + if len(uuid) != 16 { + return Invalid + } + switch { + case (uuid[8] & 0xc0) == 0x80: + return RFC4122 + case (uuid[8] & 0xe0) == 0xc0: + return Microsoft + case (uuid[8] & 0xe0) == 0xe0: + return Future + default: + return Reserved + } + panic("unreachable") +} + +// Version returns the verison of uuid. It returns false if uuid is not +// valid. +func (uuid UUID) Version() (Version, bool) { + if len(uuid) != 16 { + return 0, false + } + return Version(uuid[6] >> 4), true +} + +func (v Version) String() string { + if v > 15 { + return fmt.Sprintf("BAD_VERSION_%d", v) + } + return fmt.Sprintf("VERSION_%d", v) +} + +func (v Variant) String() string { + switch v { + case RFC4122: + return "RFC4122" + case Reserved: + return "Reserved" + case Microsoft: + return "Microsoft" + case Future: + return "Future" + case Invalid: + return "Invalid" + } + return fmt.Sprintf("BadVariant%d", int(v)) +} + +// SetRand sets the random number generator to r, which implents io.Reader. +// If r.Read returns an error when the package requests random data then +// a panic will be issued. +// +// Calling SetRand with nil sets the random number generator to the default +// generator. +func SetRand(r io.Reader) { + if r == nil { + rander = rand.Reader + return + } + rander = r +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/uuid_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/uuid_test.go new file mode 100755 index 00000000..417ebeb2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/uuid_test.go @@ -0,0 +1,390 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "bytes" + "fmt" + "os" + "strings" + "testing" + "time" +) + +type test struct { + in string + version Version + variant Variant + isuuid bool +} + +var tests = []test{ + {"f47ac10b-58cc-0372-8567-0e02b2c3d479", 0, RFC4122, true}, + {"f47ac10b-58cc-1372-8567-0e02b2c3d479", 1, RFC4122, true}, + {"f47ac10b-58cc-2372-8567-0e02b2c3d479", 2, RFC4122, true}, + {"f47ac10b-58cc-3372-8567-0e02b2c3d479", 3, RFC4122, true}, + {"f47ac10b-58cc-4372-8567-0e02b2c3d479", 4, RFC4122, true}, + {"f47ac10b-58cc-5372-8567-0e02b2c3d479", 5, RFC4122, true}, + {"f47ac10b-58cc-6372-8567-0e02b2c3d479", 6, RFC4122, true}, + {"f47ac10b-58cc-7372-8567-0e02b2c3d479", 7, RFC4122, true}, + {"f47ac10b-58cc-8372-8567-0e02b2c3d479", 8, RFC4122, true}, + {"f47ac10b-58cc-9372-8567-0e02b2c3d479", 9, RFC4122, true}, + {"f47ac10b-58cc-a372-8567-0e02b2c3d479", 10, RFC4122, true}, + {"f47ac10b-58cc-b372-8567-0e02b2c3d479", 11, RFC4122, true}, + {"f47ac10b-58cc-c372-8567-0e02b2c3d479", 12, RFC4122, true}, + {"f47ac10b-58cc-d372-8567-0e02b2c3d479", 13, RFC4122, true}, + {"f47ac10b-58cc-e372-8567-0e02b2c3d479", 14, RFC4122, true}, + {"f47ac10b-58cc-f372-8567-0e02b2c3d479", 15, RFC4122, true}, + + {"urn:uuid:f47ac10b-58cc-4372-0567-0e02b2c3d479", 4, Reserved, true}, + {"URN:UUID:f47ac10b-58cc-4372-0567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-0567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-1567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-2567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-3567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-4567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-5567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-6567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-7567-0e02b2c3d479", 4, Reserved, true}, + {"f47ac10b-58cc-4372-8567-0e02b2c3d479", 4, RFC4122, true}, + {"f47ac10b-58cc-4372-9567-0e02b2c3d479", 4, RFC4122, true}, + {"f47ac10b-58cc-4372-a567-0e02b2c3d479", 4, RFC4122, true}, + {"f47ac10b-58cc-4372-b567-0e02b2c3d479", 4, RFC4122, true}, + {"f47ac10b-58cc-4372-c567-0e02b2c3d479", 4, Microsoft, true}, + {"f47ac10b-58cc-4372-d567-0e02b2c3d479", 4, Microsoft, true}, + {"f47ac10b-58cc-4372-e567-0e02b2c3d479", 4, Future, true}, + {"f47ac10b-58cc-4372-f567-0e02b2c3d479", 4, Future, true}, + + {"f47ac10b158cc-5372-a567-0e02b2c3d479", 0, Invalid, false}, + {"f47ac10b-58cc25372-a567-0e02b2c3d479", 0, Invalid, false}, + {"f47ac10b-58cc-53723a567-0e02b2c3d479", 0, Invalid, false}, + {"f47ac10b-58cc-5372-a56740e02b2c3d479", 0, Invalid, false}, + {"f47ac10b-58cc-5372-a567-0e02-2c3d479", 0, Invalid, false}, + {"g47ac10b-58cc-4372-a567-0e02b2c3d479", 0, Invalid, false}, +} + +var constants = []struct { + c interface{} + name string +}{ + {Person, "Person"}, + {Group, "Group"}, + {Org, "Org"}, + {Invalid, "Invalid"}, + {RFC4122, "RFC4122"}, + {Reserved, "Reserved"}, + {Microsoft, "Microsoft"}, + {Future, "Future"}, + {Domain(17), "Domain17"}, + {Variant(42), "BadVariant42"}, +} + +func testTest(t *testing.T, in string, tt test) { + uuid := Parse(in) + if ok := (uuid != nil); ok != tt.isuuid { + t.Errorf("Parse(%s) got %v expected %v\b", in, ok, tt.isuuid) + } + if uuid == nil { + return + } + + if v := uuid.Variant(); v != tt.variant { + t.Errorf("Variant(%s) got %d expected %d\b", in, v, tt.variant) + } + if v, _ := uuid.Version(); v != tt.version { + t.Errorf("Version(%s) got %d expected %d\b", in, v, tt.version) + } +} + +func TestUUID(t *testing.T) { + for _, tt := range tests { + testTest(t, tt.in, tt) + testTest(t, strings.ToUpper(tt.in), tt) + } +} + +func TestConstants(t *testing.T) { + for x, tt := range constants { + v, ok := tt.c.(fmt.Stringer) + if !ok { + t.Errorf("%x: %v: not a stringer", x, v) + } else if s := v.String(); s != tt.name { + v, _ := tt.c.(int) + t.Errorf("%x: Constant %T:%d gives %q, expected %q\n", x, tt.c, v, s, tt.name) + } + } +} + +func TestRandomUUID(t *testing.T) { + m := make(map[string]bool) + for x := 1; x < 32; x++ { + uuid := NewRandom() + s := uuid.String() + if m[s] { + t.Errorf("NewRandom returned duplicated UUID %s\n", s) + } + m[s] = true + if v, _ := uuid.Version(); v != 4 { + t.Errorf("Random UUID of version %s\n", v) + } + if uuid.Variant() != RFC4122 { + t.Errorf("Random UUID is variant %d\n", uuid.Variant()) + } + } +} + +func TestNew(t *testing.T) { + m := make(map[string]bool) + for x := 1; x < 32; x++ { + s := New() + if m[s] { + t.Errorf("New returned duplicated UUID %s\n", s) + } + m[s] = true + uuid := Parse(s) + if uuid == nil { + t.Errorf("New returned %q which does not decode\n", s) + continue + } + if v, _ := uuid.Version(); v != 4 { + t.Errorf("Random UUID of version %s\n", v) + } + if uuid.Variant() != RFC4122 { + t.Errorf("Random UUID is variant %d\n", uuid.Variant()) + } + } +} + +func clockSeq(t *testing.T, uuid UUID) int { + seq, ok := uuid.ClockSequence() + if !ok { + t.Fatalf("%s: invalid clock sequence\n", uuid) + } + return seq +} + +func TestClockSeq(t *testing.T) { + // Fake time.Now for this test to return a monotonically advancing time; restore it at end. + defer func(orig func() time.Time) { timeNow = orig }(timeNow) + monTime := time.Now() + timeNow = func() time.Time { + monTime = monTime.Add(1 * time.Second) + return monTime + } + + SetClockSequence(-1) + uuid1 := NewUUID() + uuid2 := NewUUID() + + if clockSeq(t, uuid1) != clockSeq(t, uuid2) { + t.Errorf("clock sequence %d != %d\n", clockSeq(t, uuid1), clockSeq(t, uuid2)) + } + + SetClockSequence(-1) + uuid2 = NewUUID() + + // Just on the very off chance we generated the same sequence + // two times we try again. + if clockSeq(t, uuid1) == clockSeq(t, uuid2) { + SetClockSequence(-1) + uuid2 = NewUUID() + } + if clockSeq(t, uuid1) == clockSeq(t, uuid2) { + t.Errorf("Duplicate clock sequence %d\n", clockSeq(t, uuid1)) + } + + SetClockSequence(0x1234) + uuid1 = NewUUID() + if seq := clockSeq(t, uuid1); seq != 0x1234 { + t.Errorf("%s: expected seq 0x1234 got 0x%04x\n", uuid1, seq) + } +} + +func TestCoding(t *testing.T) { + text := "7d444840-9dc0-11d1-b245-5ffdce74fad2" + urn := "urn:uuid:7d444840-9dc0-11d1-b245-5ffdce74fad2" + data := UUID{ + 0x7d, 0x44, 0x48, 0x40, + 0x9d, 0xc0, + 0x11, 0xd1, + 0xb2, 0x45, + 0x5f, 0xfd, 0xce, 0x74, 0xfa, 0xd2, + } + if v := data.String(); v != text { + t.Errorf("%x: encoded to %s, expected %s\n", data, v, text) + } + if v := data.URN(); v != urn { + t.Errorf("%x: urn is %s, expected %s\n", data, v, urn) + } + + uuid := Parse(text) + if !Equal(uuid, data) { + t.Errorf("%s: decoded to %s, expected %s\n", text, uuid, data) + } +} + +func TestVersion1(t *testing.T) { + uuid1 := NewUUID() + uuid2 := NewUUID() + + if Equal(uuid1, uuid2) { + t.Errorf("%s:duplicate uuid\n", uuid1) + } + if v, _ := uuid1.Version(); v != 1 { + t.Errorf("%s: version %s expected 1\n", uuid1, v) + } + if v, _ := uuid2.Version(); v != 1 { + t.Errorf("%s: version %s expected 1\n", uuid2, v) + } + n1 := uuid1.NodeID() + n2 := uuid2.NodeID() + if !bytes.Equal(n1, n2) { + t.Errorf("Different nodes %x != %x\n", n1, n2) + } + t1, ok := uuid1.Time() + if !ok { + t.Errorf("%s: invalid time\n", uuid1) + } + t2, ok := uuid2.Time() + if !ok { + t.Errorf("%s: invalid time\n", uuid2) + } + q1, ok := uuid1.ClockSequence() + if !ok { + t.Errorf("%s: invalid clock sequence\n", uuid1) + } + q2, ok := uuid2.ClockSequence() + if !ok { + t.Errorf("%s: invalid clock sequence", uuid2) + } + + switch { + case t1 == t2 && q1 == q2: + t.Errorf("time stopped\n") + case t1 > t2 && q1 == q2: + t.Errorf("time reversed\n") + case t1 < t2 && q1 != q2: + t.Errorf("clock sequence chaned unexpectedly\n") + } +} + +func TestNodeAndTime(t *testing.T) { + // Time is February 5, 1998 12:30:23.136364800 AM GMT + + uuid := Parse("7d444840-9dc0-11d1-b245-5ffdce74fad2") + node := []byte{0x5f, 0xfd, 0xce, 0x74, 0xfa, 0xd2} + + ts, ok := uuid.Time() + if ok { + c := time.Unix(ts.UnixTime()) + want := time.Date(1998, 2, 5, 0, 30, 23, 136364800, time.UTC) + if !c.Equal(want) { + t.Errorf("Got time %v, want %v", c, want) + } + } else { + t.Errorf("%s: bad time\n", uuid) + } + if !bytes.Equal(node, uuid.NodeID()) { + t.Errorf("Expected node %v got %v\n", node, uuid.NodeID()) + } +} + +func TestMD5(t *testing.T) { + uuid := NewMD5(NameSpace_DNS, []byte("python.org")).String() + want := "6fa459ea-ee8a-3ca4-894e-db77e160355e" + if uuid != want { + t.Errorf("MD5: got %q expected %q\n", uuid, want) + } +} + +func TestSHA1(t *testing.T) { + uuid := NewSHA1(NameSpace_DNS, []byte("python.org")).String() + want := "886313e1-3b8a-5372-9b90-0c9aee199e5d" + if uuid != want { + t.Errorf("SHA1: got %q expected %q\n", uuid, want) + } +} + +func TestNodeID(t *testing.T) { + nid := []byte{1, 2, 3, 4, 5, 6} + SetNodeInterface("") + s := NodeInterface() + if s == "" || s == "user" { + t.Errorf("NodeInterface %q after SetInteface\n", s) + } + node1 := NodeID() + if node1 == nil { + t.Errorf("NodeID nil after SetNodeInterface\n", s) + } + SetNodeID(nid) + s = NodeInterface() + if s != "user" { + t.Errorf("Expected NodeInterface %q got %q\n", "user", s) + } + node2 := NodeID() + if node2 == nil { + t.Errorf("NodeID nil after SetNodeID\n", s) + } + if bytes.Equal(node1, node2) { + t.Errorf("NodeID not changed after SetNodeID\n", s) + } else if !bytes.Equal(nid, node2) { + t.Errorf("NodeID is %x, expected %x\n", node2, nid) + } +} + +func testDCE(t *testing.T, name string, uuid UUID, domain Domain, id uint32) { + if uuid == nil { + t.Errorf("%s failed\n", name) + return + } + if v, _ := uuid.Version(); v != 2 { + t.Errorf("%s: %s: expected version 2, got %s\n", name, uuid, v) + return + } + if v, ok := uuid.Domain(); !ok || v != domain { + if !ok { + t.Errorf("%s: %d: Domain failed\n", name, uuid) + } else { + t.Errorf("%s: %s: expected domain %d, got %d\n", name, uuid, domain, v) + } + } + if v, ok := uuid.Id(); !ok || v != id { + if !ok { + t.Errorf("%s: %d: Id failed\n", name, uuid) + } else { + t.Errorf("%s: %s: expected id %d, got %d\n", name, uuid, id, v) + } + } +} + +func TestDCE(t *testing.T) { + testDCE(t, "NewDCESecurity", NewDCESecurity(42, 12345678), 42, 12345678) + testDCE(t, "NewDCEPerson", NewDCEPerson(), Person, uint32(os.Getuid())) + testDCE(t, "NewDCEGroup", NewDCEGroup(), Group, uint32(os.Getgid())) +} + +type badRand struct{} + +func (r badRand) Read(buf []byte) (int, error) { + for i, _ := range buf { + buf[i] = byte(i) + } + return len(buf), nil +} + +func TestBadRand(t *testing.T) { + SetRand(badRand{}) + uuid1 := New() + uuid2 := New() + if uuid1 != uuid2 { + t.Errorf("execpted duplicates, got %q and %q\n", uuid1, uuid2) + } + SetRand(nil) + uuid1 = New() + uuid2 = New() + if uuid1 == uuid2 { + t.Errorf("unexecpted duplicates, got %q\n", uuid1) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/version1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/version1.go new file mode 100644 index 00000000..63580044 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/version1.go @@ -0,0 +1,41 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +import ( + "encoding/binary" +) + +// NewUUID returns a Version 1 UUID based on the current NodeID and clock +// sequence, and the current time. If the NodeID has not been set by SetNodeID +// or SetNodeInterface then it will be set automatically. If the NodeID cannot +// be set NewUUID returns nil. If clock sequence has not been set by +// SetClockSequence then it will be set automatically. If GetTime fails to +// return the current NewUUID returns nil. +func NewUUID() UUID { + if nodeID == nil { + SetNodeInterface("") + } + + now, err := GetTime() + if err != nil { + return nil + } + + uuid := make([]byte, 16) + + time_low := uint32(now & 0xffffffff) + time_mid := uint16((now >> 32) & 0xffff) + time_hi := uint16((now >> 48) & 0x0fff) + time_hi |= 0x1000 // Version 1 + + binary.BigEndian.PutUint32(uuid[0:], time_low) + binary.BigEndian.PutUint16(uuid[4:], time_mid) + binary.BigEndian.PutUint16(uuid[6:], time_hi) + binary.BigEndian.PutUint16(uuid[8:], clock_seq) + copy(uuid[10:], nodeID) + + return uuid +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/version4.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/version4.go new file mode 100644 index 00000000..b3d4a368 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go-uuid/uuid/version4.go @@ -0,0 +1,25 @@ +// Copyright 2011 Google Inc. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package uuid + +// Random returns a Random (Version 4) UUID or panics. +// +// The strength of the UUIDs is based on the strength of the crypto/rand +// package. +// +// A note about uniqueness derived from from the UUID Wikipedia entry: +// +// Randomly generated UUIDs have 122 random bits. One's annual risk of being +// hit by a meteorite is estimated to be one chance in 17 billion, that +// means the probability is about 0.00000000006 (6 × 10−11), +// equivalent to the odds of creating a few tens of trillions of UUIDs in a +// year and having one duplicate. +func NewRandom() UUID { + uuid := make([]byte, 16) + randomBits([]byte(uuid)) + uuid[6] = (uuid[6] & 0x0f) | 0x40 // Version 4 + uuid[8] = (uuid[8] & 0x3f) | 0x80 // Variant is 10 + return uuid +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/.hgignore b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/.hgignore new file mode 100644 index 00000000..c27ee1ef --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/.hgignore @@ -0,0 +1,3 @@ +# Add no patterns to .hgignore except for files generated by the build. +syntax:glob +last-change diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/AUTHORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/AUTHORS new file mode 100644 index 00000000..15167cd7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/AUTHORS @@ -0,0 +1,3 @@ +# This source code refers to The Go Authors for copyright purposes. +# The master list of authors is in the main Go distribution, +# visible at http://tip.golang.org/AUTHORS. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/CONTRIBUTORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/CONTRIBUTORS new file mode 100644 index 00000000..1c4577e9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/CONTRIBUTORS @@ -0,0 +1,3 @@ +# This source code was written by the Go contributors. +# The master list of contributors is in the main Go distribution, +# visible at http://tip.golang.org/CONTRIBUTORS. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/LICENSE b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/LICENSE new file mode 100644 index 00000000..6a66aea5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/PATENTS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/PATENTS new file mode 100644 index 00000000..73309904 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/PATENTS @@ -0,0 +1,22 @@ +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the Go project. + +Google hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer and otherwise run, modify and propagate the contents of this +implementation of Go, where such license applies only to those patent +claims, both currently owned or controlled by Google and acquired in +the future, licensable by Google that are necessarily infringed by this +implementation of Go. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of Go or any code incorporated within this +implementation of Go constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of Go +shall terminate as of the date such litigation is filed. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/README new file mode 100644 index 00000000..f1e0cbf9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/README @@ -0,0 +1,3 @@ +This repository holds supplementary Go cryptography libraries. + +To submit changes to this repository, see http://golang.org/doc/contribute.html. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/base64.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/base64.go new file mode 100644 index 00000000..fc311609 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/base64.go @@ -0,0 +1,35 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bcrypt + +import "encoding/base64" + +const alphabet = "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" + +var bcEncoding = base64.NewEncoding(alphabet) + +func base64Encode(src []byte) []byte { + n := bcEncoding.EncodedLen(len(src)) + dst := make([]byte, n) + bcEncoding.Encode(dst, src) + for dst[n-1] == '=' { + n-- + } + return dst[:n] +} + +func base64Decode(src []byte) ([]byte, error) { + numOfEquals := 4 - (len(src) % 4) + for i := 0; i < numOfEquals; i++ { + src = append(src, '=') + } + + dst := make([]byte, bcEncoding.DecodedLen(len(src))) + n, err := bcEncoding.Decode(dst, src) + if err != nil { + return nil, err + } + return dst[:n], nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/bcrypt.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/bcrypt.go new file mode 100644 index 00000000..10b8d64f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/bcrypt.go @@ -0,0 +1,294 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package bcrypt implements Provos and Mazières's bcrypt adaptive hashing +// algorithm. See http://www.usenix.org/event/usenix99/provos/provos.pdf +package bcrypt + +// The code is a port of Provos and Mazières's C implementation. +import ( + "code.google.com/p/go.crypto/blowfish" + "crypto/rand" + "crypto/subtle" + "errors" + "fmt" + "io" + "strconv" +) + +const ( + MinCost int = 4 // the minimum allowable cost as passed in to GenerateFromPassword + MaxCost int = 31 // the maximum allowable cost as passed in to GenerateFromPassword + DefaultCost int = 10 // the cost that will actually be set if a cost below MinCost is passed into GenerateFromPassword +) + +// The error returned from CompareHashAndPassword when a password and hash do +// not match. +var ErrMismatchedHashAndPassword = errors.New("crypto/bcrypt: hashedPassword is not the hash of the given password") + +// The error returned from CompareHashAndPassword when a hash is too short to +// be a bcrypt hash. +var ErrHashTooShort = errors.New("crypto/bcrypt: hashedSecret too short to be a bcrypted password") + +// The error returned from CompareHashAndPassword when a hash was created with +// a bcrypt algorithm newer than this implementation. +type HashVersionTooNewError byte + +func (hv HashVersionTooNewError) Error() string { + return fmt.Sprintf("crypto/bcrypt: bcrypt algorithm version '%c' requested is newer than current version '%c'", byte(hv), majorVersion) +} + +// The error returned from CompareHashAndPassword when a hash starts with something other than '$' +type InvalidHashPrefixError byte + +func (ih InvalidHashPrefixError) Error() string { + return fmt.Sprintf("crypto/bcrypt: bcrypt hashes must start with '$', but hashedSecret started with '%c'", byte(ih)) +} + +type InvalidCostError int + +func (ic InvalidCostError) Error() string { + return fmt.Sprintf("crypto/bcrypt: cost %d is outside allowed range (%d,%d)", int(ic), int(MinCost), int(MaxCost)) +} + +const ( + majorVersion = '2' + minorVersion = 'a' + maxSaltSize = 16 + maxCryptedHashSize = 23 + encodedSaltSize = 22 + encodedHashSize = 31 + minHashSize = 59 +) + +// magicCipherData is an IV for the 64 Blowfish encryption calls in +// bcrypt(). It's the string "OrpheanBeholderScryDoubt" in big-endian bytes. +var magicCipherData = []byte{ + 0x4f, 0x72, 0x70, 0x68, + 0x65, 0x61, 0x6e, 0x42, + 0x65, 0x68, 0x6f, 0x6c, + 0x64, 0x65, 0x72, 0x53, + 0x63, 0x72, 0x79, 0x44, + 0x6f, 0x75, 0x62, 0x74, +} + +type hashed struct { + hash []byte + salt []byte + cost int // allowed range is MinCost to MaxCost + major byte + minor byte +} + +// GenerateFromPassword returns the bcrypt hash of the password at the given +// cost. If the cost given is less than MinCost, the cost will be set to +// DefaultCost, instead. Use CompareHashAndPassword, as defined in this package, +// to compare the returned hashed password with its cleartext version. +func GenerateFromPassword(password []byte, cost int) ([]byte, error) { + p, err := newFromPassword(password, cost) + if err != nil { + return nil, err + } + return p.Hash(), nil +} + +// CompareHashAndPassword compares a bcrypt hashed password with its possible +// plaintext equivalent. Returns nil on success, or an error on failure. +func CompareHashAndPassword(hashedPassword, password []byte) error { + p, err := newFromHash(hashedPassword) + if err != nil { + return err + } + + otherHash, err := bcrypt(password, p.cost, p.salt) + if err != nil { + return err + } + + otherP := &hashed{otherHash, p.salt, p.cost, p.major, p.minor} + if subtle.ConstantTimeCompare(p.Hash(), otherP.Hash()) == 1 { + return nil + } + + return ErrMismatchedHashAndPassword +} + +// Cost returns the hashing cost used to create the given hashed +// password. When, in the future, the hashing cost of a password system needs +// to be increased in order to adjust for greater computational power, this +// function allows one to establish which passwords need to be updated. +func Cost(hashedPassword []byte) (int, error) { + p, err := newFromHash(hashedPassword) + if err != nil { + return 0, err + } + return p.cost, nil +} + +func newFromPassword(password []byte, cost int) (*hashed, error) { + if cost < MinCost { + cost = DefaultCost + } + p := new(hashed) + p.major = majorVersion + p.minor = minorVersion + + err := checkCost(cost) + if err != nil { + return nil, err + } + p.cost = cost + + unencodedSalt := make([]byte, maxSaltSize) + _, err = io.ReadFull(rand.Reader, unencodedSalt) + if err != nil { + return nil, err + } + + p.salt = base64Encode(unencodedSalt) + hash, err := bcrypt(password, p.cost, p.salt) + if err != nil { + return nil, err + } + p.hash = hash + return p, err +} + +func newFromHash(hashedSecret []byte) (*hashed, error) { + if len(hashedSecret) < minHashSize { + return nil, ErrHashTooShort + } + p := new(hashed) + n, err := p.decodeVersion(hashedSecret) + if err != nil { + return nil, err + } + hashedSecret = hashedSecret[n:] + n, err = p.decodeCost(hashedSecret) + if err != nil { + return nil, err + } + hashedSecret = hashedSecret[n:] + + // The "+2" is here because we'll have to append at most 2 '=' to the salt + // when base64 decoding it in expensiveBlowfishSetup(). + p.salt = make([]byte, encodedSaltSize, encodedSaltSize+2) + copy(p.salt, hashedSecret[:encodedSaltSize]) + + hashedSecret = hashedSecret[encodedSaltSize:] + p.hash = make([]byte, len(hashedSecret)) + copy(p.hash, hashedSecret) + + return p, nil +} + +func bcrypt(password []byte, cost int, salt []byte) ([]byte, error) { + cipherData := make([]byte, len(magicCipherData)) + copy(cipherData, magicCipherData) + + c, err := expensiveBlowfishSetup(password, uint32(cost), salt) + if err != nil { + return nil, err + } + + for i := 0; i < 24; i += 8 { + for j := 0; j < 64; j++ { + c.Encrypt(cipherData[i:i+8], cipherData[i:i+8]) + } + } + + // Bug compatibility with C bcrypt implementations. We only encode 23 of + // the 24 bytes encrypted. + hsh := base64Encode(cipherData[:maxCryptedHashSize]) + return hsh, nil +} + +func expensiveBlowfishSetup(key []byte, cost uint32, salt []byte) (*blowfish.Cipher, error) { + + csalt, err := base64Decode(salt) + if err != nil { + return nil, err + } + + // Bug compatibility with C bcrypt implementations. They use the trailing + // NULL in the key string during expansion. + ckey := append(key, 0) + + c, err := blowfish.NewSaltedCipher(ckey, csalt) + if err != nil { + return nil, err + } + + var i, rounds uint64 + rounds = 1 << cost + for i = 0; i < rounds; i++ { + blowfish.ExpandKey(ckey, c) + blowfish.ExpandKey(csalt, c) + } + + return c, nil +} + +func (p *hashed) Hash() []byte { + arr := make([]byte, 60) + arr[0] = '$' + arr[1] = p.major + n := 2 + if p.minor != 0 { + arr[2] = p.minor + n = 3 + } + arr[n] = '$' + n += 1 + copy(arr[n:], []byte(fmt.Sprintf("%02d", p.cost))) + n += 2 + arr[n] = '$' + n += 1 + copy(arr[n:], p.salt) + n += encodedSaltSize + copy(arr[n:], p.hash) + n += encodedHashSize + return arr[:n] +} + +func (p *hashed) decodeVersion(sbytes []byte) (int, error) { + if sbytes[0] != '$' { + return -1, InvalidHashPrefixError(sbytes[0]) + } + if sbytes[1] > majorVersion { + return -1, HashVersionTooNewError(sbytes[1]) + } + p.major = sbytes[1] + n := 3 + if sbytes[2] != '$' { + p.minor = sbytes[2] + n++ + } + return n, nil +} + +// sbytes should begin where decodeVersion left off. +func (p *hashed) decodeCost(sbytes []byte) (int, error) { + cost, err := strconv.Atoi(string(sbytes[0:2])) + if err != nil { + return -1, err + } + err = checkCost(cost) + if err != nil { + return -1, err + } + p.cost = cost + return 3, nil +} + +func (p *hashed) String() string { + return fmt.Sprintf("&{hash: %#v, salt: %#v, cost: %d, major: %c, minor: %c}", string(p.hash), p.salt, p.cost, p.major, p.minor) +} + +func checkCost(cost int) error { + if cost < MinCost || cost > MaxCost { + return InvalidCostError(cost) + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/bcrypt_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/bcrypt_test.go new file mode 100644 index 00000000..f9491031 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bcrypt/bcrypt_test.go @@ -0,0 +1,217 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bcrypt + +import ( + "bytes" + "fmt" + "testing" +) + +func TestBcryptingIsEasy(t *testing.T) { + pass := []byte("mypassword") + hp, err := GenerateFromPassword(pass, 0) + if err != nil { + t.Fatalf("GenerateFromPassword error: %s", err) + } + + if CompareHashAndPassword(hp, pass) != nil { + t.Errorf("%v should hash %s correctly", hp, pass) + } + + notPass := "notthepass" + err = CompareHashAndPassword(hp, []byte(notPass)) + if err != ErrMismatchedHashAndPassword { + t.Errorf("%v and %s should be mismatched", hp, notPass) + } +} + +func TestBcryptingIsCorrect(t *testing.T) { + pass := []byte("allmine") + salt := []byte("XajjQvNhvvRt5GSeFk1xFe") + expectedHash := []byte("$2a$10$XajjQvNhvvRt5GSeFk1xFeyqRrsxkhBkUiQeg0dt.wU1qD4aFDcga") + + hash, err := bcrypt(pass, 10, salt) + if err != nil { + t.Fatalf("bcrypt blew up: %v", err) + } + if !bytes.HasSuffix(expectedHash, hash) { + t.Errorf("%v should be the suffix of %v", hash, expectedHash) + } + + h, err := newFromHash(expectedHash) + if err != nil { + t.Errorf("Unable to parse %s: %v", string(expectedHash), err) + } + + // This is not the safe way to compare these hashes. We do this only for + // testing clarity. Use bcrypt.CompareHashAndPassword() + if err == nil && !bytes.Equal(expectedHash, h.Hash()) { + t.Errorf("Parsed hash %v should equal %v", h.Hash(), expectedHash) + } +} + +func TestTooLongPasswordsWork(t *testing.T) { + salt := []byte("XajjQvNhvvRt5GSeFk1xFe") + // One byte over the usual 56 byte limit that blowfish has + tooLongPass := []byte("012345678901234567890123456789012345678901234567890123456") + tooLongExpected := []byte("$2a$10$XajjQvNhvvRt5GSeFk1xFe5l47dONXg781AmZtd869sO8zfsHuw7C") + hash, err := bcrypt(tooLongPass, 10, salt) + if err != nil { + t.Fatalf("bcrypt blew up on long password: %v", err) + } + if !bytes.HasSuffix(tooLongExpected, hash) { + t.Errorf("%v should be the suffix of %v", hash, tooLongExpected) + } +} + +type InvalidHashTest struct { + err error + hash []byte +} + +var invalidTests = []InvalidHashTest{ + {ErrHashTooShort, []byte("$2a$10$fooo")}, + {ErrHashTooShort, []byte("$2a")}, + {HashVersionTooNewError('3'), []byte("$3a$10$sssssssssssssssssssssshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")}, + {InvalidHashPrefixError('%'), []byte("%2a$10$sssssssssssssssssssssshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")}, + {InvalidCostError(32), []byte("$2a$32$sssssssssssssssssssssshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")}, +} + +func TestInvalidHashErrors(t *testing.T) { + check := func(name string, expected, err error) { + if err == nil { + t.Errorf("%s: Should have returned an error", name) + } + if err != nil && err != expected { + t.Errorf("%s gave err %v but should have given %v", name, err, expected) + } + } + for _, iht := range invalidTests { + _, err := newFromHash(iht.hash) + check("newFromHash", iht.err, err) + err = CompareHashAndPassword(iht.hash, []byte("anything")) + check("CompareHashAndPassword", iht.err, err) + } +} + +func TestUnpaddedBase64Encoding(t *testing.T) { + original := []byte{101, 201, 101, 75, 19, 227, 199, 20, 239, 236, 133, 32, 30, 109, 243, 30} + encodedOriginal := []byte("XajjQvNhvvRt5GSeFk1xFe") + + encoded := base64Encode(original) + + if !bytes.Equal(encodedOriginal, encoded) { + t.Errorf("Encoded %v should have equaled %v", encoded, encodedOriginal) + } + + decoded, err := base64Decode(encodedOriginal) + if err != nil { + t.Fatalf("base64Decode blew up: %s", err) + } + + if !bytes.Equal(decoded, original) { + t.Errorf("Decoded %v should have equaled %v", decoded, original) + } +} + +func TestCost(t *testing.T) { + suffix := "XajjQvNhvvRt5GSeFk1xFe5l47dONXg781AmZtd869sO8zfsHuw7C" + for _, vers := range []string{"2a", "2"} { + for _, cost := range []int{4, 10} { + s := fmt.Sprintf("$%s$%02d$%s", vers, cost, suffix) + h := []byte(s) + actual, err := Cost(h) + if err != nil { + t.Errorf("Cost, error: %s", err) + continue + } + if actual != cost { + t.Errorf("Cost, expected: %d, actual: %d", cost, actual) + } + } + } + _, err := Cost([]byte("$a$a$" + suffix)) + if err == nil { + t.Errorf("Cost, malformed but no error returned") + } +} + +func TestCostValidationInHash(t *testing.T) { + if testing.Short() { + return + } + + pass := []byte("mypassword") + + for c := 0; c < MinCost; c++ { + p, _ := newFromPassword(pass, c) + if p.cost != DefaultCost { + t.Errorf("newFromPassword should default costs below %d to %d, but was %d", MinCost, DefaultCost, p.cost) + } + } + + p, _ := newFromPassword(pass, 14) + if p.cost != 14 { + t.Errorf("newFromPassword should default cost to 14, but was %d", p.cost) + } + + hp, _ := newFromHash(p.Hash()) + if p.cost != hp.cost { + t.Errorf("newFromHash should maintain the cost at %d, but was %d", p.cost, hp.cost) + } + + _, err := newFromPassword(pass, 32) + if err == nil { + t.Fatalf("newFromPassword: should return a cost error") + } + if err != InvalidCostError(32) { + t.Errorf("newFromPassword: should return cost error, got %#v", err) + } +} + +func TestCostReturnsWithLeadingZeroes(t *testing.T) { + hp, _ := newFromPassword([]byte("abcdefgh"), 7) + cost := hp.Hash()[4:7] + expected := []byte("07$") + + if !bytes.Equal(expected, cost) { + t.Errorf("single digit costs in hash should have leading zeros: was %v instead of %v", cost, expected) + } +} + +func TestMinorNotRequired(t *testing.T) { + noMinorHash := []byte("$2$10$XajjQvNhvvRt5GSeFk1xFeyqRrsxkhBkUiQeg0dt.wU1qD4aFDcga") + h, err := newFromHash(noMinorHash) + if err != nil { + t.Fatalf("No minor hash blew up: %s", err) + } + if h.minor != 0 { + t.Errorf("Should leave minor version at 0, but was %d", h.minor) + } + + if !bytes.Equal(noMinorHash, h.Hash()) { + t.Errorf("Should generate hash %v, but created %v", noMinorHash, h.Hash()) + } +} + +func BenchmarkEqual(b *testing.B) { + b.StopTimer() + passwd := []byte("somepasswordyoulike") + hash, _ := GenerateFromPassword(passwd, 10) + b.StartTimer() + for i := 0; i < b.N; i++ { + CompareHashAndPassword(hash, passwd) + } +} + +func BenchmarkGeneration(b *testing.B) { + b.StopTimer() + passwd := []byte("mylongpassword1234") + b.StartTimer() + for i := 0; i < b.N; i++ { + GenerateFromPassword(passwd, 10) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/block.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/block.go new file mode 100644 index 00000000..7b14dec7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/block.go @@ -0,0 +1,190 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package blowfish + +// ExpandKey performs a key expansion on the given *Cipher. Specifically, it +// performs the Blowfish algorithm's key schedule which sets up the *Cipher's +// pi and substitution tables for calls to Encrypt. This is used, primarily, +// by the bcrypt package to reuse the Blowfish key schedule during its +// set up. It's unlikely that you need to use this directly. +func ExpandKey(key []byte, c *Cipher) { + j := 0 + for i := 0; i < 18; i++ { + var d uint32 + for k := 0; k < 4; k++ { + d = d<<8 | uint32(key[j]) + j++ + if j >= len(key) { + j = 0 + } + } + c.p[i] ^= d + } + + var l, r uint32 + for i := 0; i < 18; i += 2 { + l, r = encryptBlock(l, r, c) + c.p[i], c.p[i+1] = l, r + } + + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s0[i], c.s0[i+1] = l, r + } + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s1[i], c.s1[i+1] = l, r + } + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s2[i], c.s2[i+1] = l, r + } + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s3[i], c.s3[i+1] = l, r + } +} + +// This is similar to ExpandKey, but folds the salt during the key +// schedule. While ExpandKey is essentially expandKeyWithSalt with an all-zero +// salt passed in, reusing ExpandKey turns out to be a place of inefficiency +// and specializing it here is useful. +func expandKeyWithSalt(key []byte, salt []byte, c *Cipher) { + j := 0 + for i := 0; i < 18; i++ { + var d uint32 + for k := 0; k < 4; k++ { + d = d<<8 | uint32(key[j]) + j++ + if j >= len(key) { + j = 0 + } + } + c.p[i] ^= d + } + + j = 0 + var expandedSalt [4]uint32 + for i := range expandedSalt { + var d uint32 + for k := 0; k < 4; k++ { + d = d<<8 | uint32(salt[j]) + j++ + if j >= len(salt) { + j = 0 + } + } + expandedSalt[i] = d + } + + var l, r uint32 + for i := 0; i < 18; i += 2 { + l ^= expandedSalt[i&2] + r ^= expandedSalt[(i&2)+1] + l, r = encryptBlock(l, r, c) + c.p[i], c.p[i+1] = l, r + } + + for i := 0; i < 256; i += 4 { + l ^= expandedSalt[2] + r ^= expandedSalt[3] + l, r = encryptBlock(l, r, c) + c.s0[i], c.s0[i+1] = l, r + + l ^= expandedSalt[0] + r ^= expandedSalt[1] + l, r = encryptBlock(l, r, c) + c.s0[i+2], c.s0[i+3] = l, r + + } + + for i := 0; i < 256; i += 4 { + l ^= expandedSalt[2] + r ^= expandedSalt[3] + l, r = encryptBlock(l, r, c) + c.s1[i], c.s1[i+1] = l, r + + l ^= expandedSalt[0] + r ^= expandedSalt[1] + l, r = encryptBlock(l, r, c) + c.s1[i+2], c.s1[i+3] = l, r + } + + for i := 0; i < 256; i += 4 { + l ^= expandedSalt[2] + r ^= expandedSalt[3] + l, r = encryptBlock(l, r, c) + c.s2[i], c.s2[i+1] = l, r + + l ^= expandedSalt[0] + r ^= expandedSalt[1] + l, r = encryptBlock(l, r, c) + c.s2[i+2], c.s2[i+3] = l, r + } + + for i := 0; i < 256; i += 4 { + l ^= expandedSalt[2] + r ^= expandedSalt[3] + l, r = encryptBlock(l, r, c) + c.s3[i], c.s3[i+1] = l, r + + l ^= expandedSalt[0] + r ^= expandedSalt[1] + l, r = encryptBlock(l, r, c) + c.s3[i+2], c.s3[i+3] = l, r + } +} + +func encryptBlock(l, r uint32, c *Cipher) (uint32, uint32) { + xl, xr := l, r + xl ^= c.p[0] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[1] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[2] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[3] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[4] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[5] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[6] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[7] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[8] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[9] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[10] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[11] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[12] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[13] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[14] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[15] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[16] + xr ^= c.p[17] + return xr, xl +} + +func decryptBlock(l, r uint32, c *Cipher) (uint32, uint32) { + xl, xr := l, r + xl ^= c.p[17] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[16] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[15] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[14] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[13] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[12] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[11] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[10] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[9] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[8] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[7] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[6] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[5] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[4] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[3] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[2] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[1] + xr ^= c.p[0] + return xr, xl +} + +func zero(x []uint32) { + for i := range x { + x[i] = 0 + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/blowfish_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/blowfish_test.go new file mode 100644 index 00000000..1038d2e3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/blowfish_test.go @@ -0,0 +1,210 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package blowfish + +import ( + "testing" +) + +type CryptTest struct { + key []byte + in []byte + out []byte +} + +// Test vector values are from http://www.schneier.com/code/vectors.txt. +var encryptTests = []CryptTest{ + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x4E, 0xF9, 0x97, 0x45, 0x61, 0x98, 0xDD, 0x78}}, + { + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x51, 0x86, 0x6F, 0xD5, 0xB8, 0x5E, 0xCB, 0x8A}}, + { + []byte{0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01}, + []byte{0x7D, 0x85, 0x6F, 0x9A, 0x61, 0x30, 0x63, 0xF2}}, + { + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x24, 0x66, 0xDD, 0x87, 0x8B, 0x96, 0x3C, 0x9D}}, + + { + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x61, 0xF9, 0xC3, 0x80, 0x22, 0x81, 0xB0, 0x96}}, + { + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x7D, 0x0C, 0xC6, 0x30, 0xAF, 0xDA, 0x1E, 0xC7}}, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x4E, 0xF9, 0x97, 0x45, 0x61, 0x98, 0xDD, 0x78}}, + { + []byte{0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x0A, 0xCE, 0xAB, 0x0F, 0xC6, 0xA0, 0xA2, 0x8D}}, + { + []byte{0x7C, 0xA1, 0x10, 0x45, 0x4A, 0x1A, 0x6E, 0x57}, + []byte{0x01, 0xA1, 0xD6, 0xD0, 0x39, 0x77, 0x67, 0x42}, + []byte{0x59, 0xC6, 0x82, 0x45, 0xEB, 0x05, 0x28, 0x2B}}, + { + []byte{0x01, 0x31, 0xD9, 0x61, 0x9D, 0xC1, 0x37, 0x6E}, + []byte{0x5C, 0xD5, 0x4C, 0xA8, 0x3D, 0xEF, 0x57, 0xDA}, + []byte{0xB1, 0xB8, 0xCC, 0x0B, 0x25, 0x0F, 0x09, 0xA0}}, + { + []byte{0x07, 0xA1, 0x13, 0x3E, 0x4A, 0x0B, 0x26, 0x86}, + []byte{0x02, 0x48, 0xD4, 0x38, 0x06, 0xF6, 0x71, 0x72}, + []byte{0x17, 0x30, 0xE5, 0x77, 0x8B, 0xEA, 0x1D, 0xA4}}, + { + []byte{0x38, 0x49, 0x67, 0x4C, 0x26, 0x02, 0x31, 0x9E}, + []byte{0x51, 0x45, 0x4B, 0x58, 0x2D, 0xDF, 0x44, 0x0A}, + []byte{0xA2, 0x5E, 0x78, 0x56, 0xCF, 0x26, 0x51, 0xEB}}, + { + []byte{0x04, 0xB9, 0x15, 0xBA, 0x43, 0xFE, 0xB5, 0xB6}, + []byte{0x42, 0xFD, 0x44, 0x30, 0x59, 0x57, 0x7F, 0xA2}, + []byte{0x35, 0x38, 0x82, 0xB1, 0x09, 0xCE, 0x8F, 0x1A}}, + { + []byte{0x01, 0x13, 0xB9, 0x70, 0xFD, 0x34, 0xF2, 0xCE}, + []byte{0x05, 0x9B, 0x5E, 0x08, 0x51, 0xCF, 0x14, 0x3A}, + []byte{0x48, 0xF4, 0xD0, 0x88, 0x4C, 0x37, 0x99, 0x18}}, + { + []byte{0x01, 0x70, 0xF1, 0x75, 0x46, 0x8F, 0xB5, 0xE6}, + []byte{0x07, 0x56, 0xD8, 0xE0, 0x77, 0x47, 0x61, 0xD2}, + []byte{0x43, 0x21, 0x93, 0xB7, 0x89, 0x51, 0xFC, 0x98}}, + { + []byte{0x43, 0x29, 0x7F, 0xAD, 0x38, 0xE3, 0x73, 0xFE}, + []byte{0x76, 0x25, 0x14, 0xB8, 0x29, 0xBF, 0x48, 0x6A}, + []byte{0x13, 0xF0, 0x41, 0x54, 0xD6, 0x9D, 0x1A, 0xE5}}, + { + []byte{0x07, 0xA7, 0x13, 0x70, 0x45, 0xDA, 0x2A, 0x16}, + []byte{0x3B, 0xDD, 0x11, 0x90, 0x49, 0x37, 0x28, 0x02}, + []byte{0x2E, 0xED, 0xDA, 0x93, 0xFF, 0xD3, 0x9C, 0x79}}, + { + []byte{0x04, 0x68, 0x91, 0x04, 0xC2, 0xFD, 0x3B, 0x2F}, + []byte{0x26, 0x95, 0x5F, 0x68, 0x35, 0xAF, 0x60, 0x9A}, + []byte{0xD8, 0x87, 0xE0, 0x39, 0x3C, 0x2D, 0xA6, 0xE3}}, + { + []byte{0x37, 0xD0, 0x6B, 0xB5, 0x16, 0xCB, 0x75, 0x46}, + []byte{0x16, 0x4D, 0x5E, 0x40, 0x4F, 0x27, 0x52, 0x32}, + []byte{0x5F, 0x99, 0xD0, 0x4F, 0x5B, 0x16, 0x39, 0x69}}, + { + []byte{0x1F, 0x08, 0x26, 0x0D, 0x1A, 0xC2, 0x46, 0x5E}, + []byte{0x6B, 0x05, 0x6E, 0x18, 0x75, 0x9F, 0x5C, 0xCA}, + []byte{0x4A, 0x05, 0x7A, 0x3B, 0x24, 0xD3, 0x97, 0x7B}}, + { + []byte{0x58, 0x40, 0x23, 0x64, 0x1A, 0xBA, 0x61, 0x76}, + []byte{0x00, 0x4B, 0xD6, 0xEF, 0x09, 0x17, 0x60, 0x62}, + []byte{0x45, 0x20, 0x31, 0xC1, 0xE4, 0xFA, 0xDA, 0x8E}}, + { + []byte{0x02, 0x58, 0x16, 0x16, 0x46, 0x29, 0xB0, 0x07}, + []byte{0x48, 0x0D, 0x39, 0x00, 0x6E, 0xE7, 0x62, 0xF2}, + []byte{0x75, 0x55, 0xAE, 0x39, 0xF5, 0x9B, 0x87, 0xBD}}, + { + []byte{0x49, 0x79, 0x3E, 0xBC, 0x79, 0xB3, 0x25, 0x8F}, + []byte{0x43, 0x75, 0x40, 0xC8, 0x69, 0x8F, 0x3C, 0xFA}, + []byte{0x53, 0xC5, 0x5F, 0x9C, 0xB4, 0x9F, 0xC0, 0x19}}, + { + []byte{0x4F, 0xB0, 0x5E, 0x15, 0x15, 0xAB, 0x73, 0xA7}, + []byte{0x07, 0x2D, 0x43, 0xA0, 0x77, 0x07, 0x52, 0x92}, + []byte{0x7A, 0x8E, 0x7B, 0xFA, 0x93, 0x7E, 0x89, 0xA3}}, + { + []byte{0x49, 0xE9, 0x5D, 0x6D, 0x4C, 0xA2, 0x29, 0xBF}, + []byte{0x02, 0xFE, 0x55, 0x77, 0x81, 0x17, 0xF1, 0x2A}, + []byte{0xCF, 0x9C, 0x5D, 0x7A, 0x49, 0x86, 0xAD, 0xB5}}, + { + []byte{0x01, 0x83, 0x10, 0xDC, 0x40, 0x9B, 0x26, 0xD6}, + []byte{0x1D, 0x9D, 0x5C, 0x50, 0x18, 0xF7, 0x28, 0xC2}, + []byte{0xD1, 0xAB, 0xB2, 0x90, 0x65, 0x8B, 0xC7, 0x78}}, + { + []byte{0x1C, 0x58, 0x7F, 0x1C, 0x13, 0x92, 0x4F, 0xEF}, + []byte{0x30, 0x55, 0x32, 0x28, 0x6D, 0x6F, 0x29, 0x5A}, + []byte{0x55, 0xCB, 0x37, 0x74, 0xD1, 0x3E, 0xF2, 0x01}}, + { + []byte{0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0xFA, 0x34, 0xEC, 0x48, 0x47, 0xB2, 0x68, 0xB2}}, + { + []byte{0x1F, 0x1F, 0x1F, 0x1F, 0x0E, 0x0E, 0x0E, 0x0E}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0xA7, 0x90, 0x79, 0x51, 0x08, 0xEA, 0x3C, 0xAE}}, + { + []byte{0xE0, 0xFE, 0xE0, 0xFE, 0xF1, 0xFE, 0xF1, 0xFE}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0xC3, 0x9E, 0x07, 0x2D, 0x9F, 0xAC, 0x63, 0x1D}}, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x01, 0x49, 0x33, 0xE0, 0xCD, 0xAF, 0xF6, 0xE4}}, + { + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0xF2, 0x1E, 0x9A, 0x77, 0xB7, 0x1C, 0x49, 0xBC}}, + { + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x24, 0x59, 0x46, 0x88, 0x57, 0x54, 0x36, 0x9A}}, + { + []byte{0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10}, + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x6B, 0x5C, 0x5A, 0x9C, 0x5D, 0x9E, 0x0A, 0x5A}}, +} + +func TestCipherEncrypt(t *testing.T) { + for i, tt := range encryptTests { + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(tt.key), err) + continue + } + ct := make([]byte, len(tt.out)) + c.Encrypt(ct, tt.in) + for j, v := range ct { + if v != tt.out[j] { + t.Errorf("Cipher.Encrypt, test vector #%d: cipher-text[%d] = %#x, expected %#x", i, j, v, tt.out[j]) + break + } + } + } +} + +func TestCipherDecrypt(t *testing.T) { + for i, tt := range encryptTests { + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(tt.key), err) + continue + } + pt := make([]byte, len(tt.in)) + c.Decrypt(pt, tt.out) + for j, v := range pt { + if v != tt.in[j] { + t.Errorf("Cipher.Decrypt, test vector #%d: plain-text[%d] = %#x, expected %#x", i, j, v, tt.in[j]) + break + } + } + } +} + +func TestSaltedCipherKeyLength(t *testing.T) { + var key []byte + for i := 0; i < 4; i++ { + _, err := NewSaltedCipher(key, []byte{'a'}) + if err != KeySizeError(i) { + t.Errorf("NewSaltedCipher with short key, gave error %#v, expected %#v", err, KeySizeError(i)) + } + key = append(key, 'a') + } + + // A 57-byte key. One over the typical blowfish restriction. + key = []byte("012345678901234567890123456789012345678901234567890123456") + _, err := NewSaltedCipher(key, []byte{'a'}) + if err != nil { + t.Errorf("NewSaltedCipher with long key, gave error %#v", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/cipher.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/cipher.go new file mode 100644 index 00000000..fbefe78c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/cipher.go @@ -0,0 +1,90 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package blowfish implements Bruce Schneier's Blowfish encryption algorithm. +package blowfish + +// The code is a port of Bruce Schneier's C implementation. +// See http://www.schneier.com/blowfish.html. + +import "strconv" + +// The Blowfish block size in bytes. +const BlockSize = 8 + +// A Cipher is an instance of Blowfish encryption using a particular key. +type Cipher struct { + p [18]uint32 + s0, s1, s2, s3 [256]uint32 +} + +type KeySizeError int + +func (k KeySizeError) Error() string { + return "crypto/blowfish: invalid key size " + strconv.Itoa(int(k)) +} + +// NewCipher creates and returns a Cipher. +// The key argument should be the Blowfish key, 4 to 56 bytes. +func NewCipher(key []byte) (*Cipher, error) { + var result Cipher + k := len(key) + if k < 4 || k > 56 { + return nil, KeySizeError(k) + } + initCipher(key, &result) + ExpandKey(key, &result) + return &result, nil +} + +// NewSaltedCipher creates a returns a Cipher that folds a salt into its key +// schedule. For most purposes, NewCipher, instead of NewSaltedCipher, is +// sufficient and desirable. For bcrypt compatiblity, the key can be over 56 +// bytes. Only the first 16 bytes of salt are used. +func NewSaltedCipher(key, salt []byte) (*Cipher, error) { + var result Cipher + k := len(key) + if k < 4 { + return nil, KeySizeError(k) + } + initCipher(key, &result) + expandKeyWithSalt(key, salt, &result) + return &result, nil +} + +// BlockSize returns the Blowfish block size, 8 bytes. +// It is necessary to satisfy the Block interface in the +// package "crypto/cipher". +func (c *Cipher) BlockSize() int { return BlockSize } + +// Encrypt encrypts the 8-byte buffer src using the key k +// and stores the result in dst. +// Note that for amounts of data larger than a block, +// it is not safe to just call Encrypt on successive blocks; +// instead, use an encryption mode like CBC (see crypto/cipher/cbc.go). +func (c *Cipher) Encrypt(dst, src []byte) { + l := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + l, r = encryptBlock(l, r, c) + dst[0], dst[1], dst[2], dst[3] = byte(l>>24), byte(l>>16), byte(l>>8), byte(l) + dst[4], dst[5], dst[6], dst[7] = byte(r>>24), byte(r>>16), byte(r>>8), byte(r) +} + +// Decrypt decrypts the 8-byte buffer src using the key k +// and stores the result in dst. +func (c *Cipher) Decrypt(dst, src []byte) { + l := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + l, r = decryptBlock(l, r, c) + dst[0], dst[1], dst[2], dst[3] = byte(l>>24), byte(l>>16), byte(l>>8), byte(l) + dst[4], dst[5], dst[6], dst[7] = byte(r>>24), byte(r>>16), byte(r>>8), byte(r) +} + +func initCipher(key []byte, c *Cipher) { + copy(c.p[0:], p[0:]) + copy(c.s0[0:], s0[0:]) + copy(c.s1[0:], s1[0:]) + copy(c.s2[0:], s2[0:]) + copy(c.s3[0:], s3[0:]) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/const.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/const.go new file mode 100644 index 00000000..8c5ee4cb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/blowfish/const.go @@ -0,0 +1,199 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The startup permutation array and substitution boxes. +// They are the hexadecimal digits of PI; see: +// http://www.schneier.com/code/constants.txt. + +package blowfish + +var s0 = [256]uint32{ + 0xd1310ba6, 0x98dfb5ac, 0x2ffd72db, 0xd01adfb7, 0xb8e1afed, 0x6a267e96, + 0xba7c9045, 0xf12c7f99, 0x24a19947, 0xb3916cf7, 0x0801f2e2, 0x858efc16, + 0x636920d8, 0x71574e69, 0xa458fea3, 0xf4933d7e, 0x0d95748f, 0x728eb658, + 0x718bcd58, 0x82154aee, 0x7b54a41d, 0xc25a59b5, 0x9c30d539, 0x2af26013, + 0xc5d1b023, 0x286085f0, 0xca417918, 0xb8db38ef, 0x8e79dcb0, 0x603a180e, + 0x6c9e0e8b, 0xb01e8a3e, 0xd71577c1, 0xbd314b27, 0x78af2fda, 0x55605c60, + 0xe65525f3, 0xaa55ab94, 0x57489862, 0x63e81440, 0x55ca396a, 0x2aab10b6, + 0xb4cc5c34, 0x1141e8ce, 0xa15486af, 0x7c72e993, 0xb3ee1411, 0x636fbc2a, + 0x2ba9c55d, 0x741831f6, 0xce5c3e16, 0x9b87931e, 0xafd6ba33, 0x6c24cf5c, + 0x7a325381, 0x28958677, 0x3b8f4898, 0x6b4bb9af, 0xc4bfe81b, 0x66282193, + 0x61d809cc, 0xfb21a991, 0x487cac60, 0x5dec8032, 0xef845d5d, 0xe98575b1, + 0xdc262302, 0xeb651b88, 0x23893e81, 0xd396acc5, 0x0f6d6ff3, 0x83f44239, + 0x2e0b4482, 0xa4842004, 0x69c8f04a, 0x9e1f9b5e, 0x21c66842, 0xf6e96c9a, + 0x670c9c61, 0xabd388f0, 0x6a51a0d2, 0xd8542f68, 0x960fa728, 0xab5133a3, + 0x6eef0b6c, 0x137a3be4, 0xba3bf050, 0x7efb2a98, 0xa1f1651d, 0x39af0176, + 0x66ca593e, 0x82430e88, 0x8cee8619, 0x456f9fb4, 0x7d84a5c3, 0x3b8b5ebe, + 0xe06f75d8, 0x85c12073, 0x401a449f, 0x56c16aa6, 0x4ed3aa62, 0x363f7706, + 0x1bfedf72, 0x429b023d, 0x37d0d724, 0xd00a1248, 0xdb0fead3, 0x49f1c09b, + 0x075372c9, 0x80991b7b, 0x25d479d8, 0xf6e8def7, 0xe3fe501a, 0xb6794c3b, + 0x976ce0bd, 0x04c006ba, 0xc1a94fb6, 0x409f60c4, 0x5e5c9ec2, 0x196a2463, + 0x68fb6faf, 0x3e6c53b5, 0x1339b2eb, 0x3b52ec6f, 0x6dfc511f, 0x9b30952c, + 0xcc814544, 0xaf5ebd09, 0xbee3d004, 0xde334afd, 0x660f2807, 0x192e4bb3, + 0xc0cba857, 0x45c8740f, 0xd20b5f39, 0xb9d3fbdb, 0x5579c0bd, 0x1a60320a, + 0xd6a100c6, 0x402c7279, 0x679f25fe, 0xfb1fa3cc, 0x8ea5e9f8, 0xdb3222f8, + 0x3c7516df, 0xfd616b15, 0x2f501ec8, 0xad0552ab, 0x323db5fa, 0xfd238760, + 0x53317b48, 0x3e00df82, 0x9e5c57bb, 0xca6f8ca0, 0x1a87562e, 0xdf1769db, + 0xd542a8f6, 0x287effc3, 0xac6732c6, 0x8c4f5573, 0x695b27b0, 0xbbca58c8, + 0xe1ffa35d, 0xb8f011a0, 0x10fa3d98, 0xfd2183b8, 0x4afcb56c, 0x2dd1d35b, + 0x9a53e479, 0xb6f84565, 0xd28e49bc, 0x4bfb9790, 0xe1ddf2da, 0xa4cb7e33, + 0x62fb1341, 0xcee4c6e8, 0xef20cada, 0x36774c01, 0xd07e9efe, 0x2bf11fb4, + 0x95dbda4d, 0xae909198, 0xeaad8e71, 0x6b93d5a0, 0xd08ed1d0, 0xafc725e0, + 0x8e3c5b2f, 0x8e7594b7, 0x8ff6e2fb, 0xf2122b64, 0x8888b812, 0x900df01c, + 0x4fad5ea0, 0x688fc31c, 0xd1cff191, 0xb3a8c1ad, 0x2f2f2218, 0xbe0e1777, + 0xea752dfe, 0x8b021fa1, 0xe5a0cc0f, 0xb56f74e8, 0x18acf3d6, 0xce89e299, + 0xb4a84fe0, 0xfd13e0b7, 0x7cc43b81, 0xd2ada8d9, 0x165fa266, 0x80957705, + 0x93cc7314, 0x211a1477, 0xe6ad2065, 0x77b5fa86, 0xc75442f5, 0xfb9d35cf, + 0xebcdaf0c, 0x7b3e89a0, 0xd6411bd3, 0xae1e7e49, 0x00250e2d, 0x2071b35e, + 0x226800bb, 0x57b8e0af, 0x2464369b, 0xf009b91e, 0x5563911d, 0x59dfa6aa, + 0x78c14389, 0xd95a537f, 0x207d5ba2, 0x02e5b9c5, 0x83260376, 0x6295cfa9, + 0x11c81968, 0x4e734a41, 0xb3472dca, 0x7b14a94a, 0x1b510052, 0x9a532915, + 0xd60f573f, 0xbc9bc6e4, 0x2b60a476, 0x81e67400, 0x08ba6fb5, 0x571be91f, + 0xf296ec6b, 0x2a0dd915, 0xb6636521, 0xe7b9f9b6, 0xff34052e, 0xc5855664, + 0x53b02d5d, 0xa99f8fa1, 0x08ba4799, 0x6e85076a, +} + +var s1 = [256]uint32{ + 0x4b7a70e9, 0xb5b32944, 0xdb75092e, 0xc4192623, 0xad6ea6b0, 0x49a7df7d, + 0x9cee60b8, 0x8fedb266, 0xecaa8c71, 0x699a17ff, 0x5664526c, 0xc2b19ee1, + 0x193602a5, 0x75094c29, 0xa0591340, 0xe4183a3e, 0x3f54989a, 0x5b429d65, + 0x6b8fe4d6, 0x99f73fd6, 0xa1d29c07, 0xefe830f5, 0x4d2d38e6, 0xf0255dc1, + 0x4cdd2086, 0x8470eb26, 0x6382e9c6, 0x021ecc5e, 0x09686b3f, 0x3ebaefc9, + 0x3c971814, 0x6b6a70a1, 0x687f3584, 0x52a0e286, 0xb79c5305, 0xaa500737, + 0x3e07841c, 0x7fdeae5c, 0x8e7d44ec, 0x5716f2b8, 0xb03ada37, 0xf0500c0d, + 0xf01c1f04, 0x0200b3ff, 0xae0cf51a, 0x3cb574b2, 0x25837a58, 0xdc0921bd, + 0xd19113f9, 0x7ca92ff6, 0x94324773, 0x22f54701, 0x3ae5e581, 0x37c2dadc, + 0xc8b57634, 0x9af3dda7, 0xa9446146, 0x0fd0030e, 0xecc8c73e, 0xa4751e41, + 0xe238cd99, 0x3bea0e2f, 0x3280bba1, 0x183eb331, 0x4e548b38, 0x4f6db908, + 0x6f420d03, 0xf60a04bf, 0x2cb81290, 0x24977c79, 0x5679b072, 0xbcaf89af, + 0xde9a771f, 0xd9930810, 0xb38bae12, 0xdccf3f2e, 0x5512721f, 0x2e6b7124, + 0x501adde6, 0x9f84cd87, 0x7a584718, 0x7408da17, 0xbc9f9abc, 0xe94b7d8c, + 0xec7aec3a, 0xdb851dfa, 0x63094366, 0xc464c3d2, 0xef1c1847, 0x3215d908, + 0xdd433b37, 0x24c2ba16, 0x12a14d43, 0x2a65c451, 0x50940002, 0x133ae4dd, + 0x71dff89e, 0x10314e55, 0x81ac77d6, 0x5f11199b, 0x043556f1, 0xd7a3c76b, + 0x3c11183b, 0x5924a509, 0xf28fe6ed, 0x97f1fbfa, 0x9ebabf2c, 0x1e153c6e, + 0x86e34570, 0xeae96fb1, 0x860e5e0a, 0x5a3e2ab3, 0x771fe71c, 0x4e3d06fa, + 0x2965dcb9, 0x99e71d0f, 0x803e89d6, 0x5266c825, 0x2e4cc978, 0x9c10b36a, + 0xc6150eba, 0x94e2ea78, 0xa5fc3c53, 0x1e0a2df4, 0xf2f74ea7, 0x361d2b3d, + 0x1939260f, 0x19c27960, 0x5223a708, 0xf71312b6, 0xebadfe6e, 0xeac31f66, + 0xe3bc4595, 0xa67bc883, 0xb17f37d1, 0x018cff28, 0xc332ddef, 0xbe6c5aa5, + 0x65582185, 0x68ab9802, 0xeecea50f, 0xdb2f953b, 0x2aef7dad, 0x5b6e2f84, + 0x1521b628, 0x29076170, 0xecdd4775, 0x619f1510, 0x13cca830, 0xeb61bd96, + 0x0334fe1e, 0xaa0363cf, 0xb5735c90, 0x4c70a239, 0xd59e9e0b, 0xcbaade14, + 0xeecc86bc, 0x60622ca7, 0x9cab5cab, 0xb2f3846e, 0x648b1eaf, 0x19bdf0ca, + 0xa02369b9, 0x655abb50, 0x40685a32, 0x3c2ab4b3, 0x319ee9d5, 0xc021b8f7, + 0x9b540b19, 0x875fa099, 0x95f7997e, 0x623d7da8, 0xf837889a, 0x97e32d77, + 0x11ed935f, 0x16681281, 0x0e358829, 0xc7e61fd6, 0x96dedfa1, 0x7858ba99, + 0x57f584a5, 0x1b227263, 0x9b83c3ff, 0x1ac24696, 0xcdb30aeb, 0x532e3054, + 0x8fd948e4, 0x6dbc3128, 0x58ebf2ef, 0x34c6ffea, 0xfe28ed61, 0xee7c3c73, + 0x5d4a14d9, 0xe864b7e3, 0x42105d14, 0x203e13e0, 0x45eee2b6, 0xa3aaabea, + 0xdb6c4f15, 0xfacb4fd0, 0xc742f442, 0xef6abbb5, 0x654f3b1d, 0x41cd2105, + 0xd81e799e, 0x86854dc7, 0xe44b476a, 0x3d816250, 0xcf62a1f2, 0x5b8d2646, + 0xfc8883a0, 0xc1c7b6a3, 0x7f1524c3, 0x69cb7492, 0x47848a0b, 0x5692b285, + 0x095bbf00, 0xad19489d, 0x1462b174, 0x23820e00, 0x58428d2a, 0x0c55f5ea, + 0x1dadf43e, 0x233f7061, 0x3372f092, 0x8d937e41, 0xd65fecf1, 0x6c223bdb, + 0x7cde3759, 0xcbee7460, 0x4085f2a7, 0xce77326e, 0xa6078084, 0x19f8509e, + 0xe8efd855, 0x61d99735, 0xa969a7aa, 0xc50c06c2, 0x5a04abfc, 0x800bcadc, + 0x9e447a2e, 0xc3453484, 0xfdd56705, 0x0e1e9ec9, 0xdb73dbd3, 0x105588cd, + 0x675fda79, 0xe3674340, 0xc5c43465, 0x713e38d8, 0x3d28f89e, 0xf16dff20, + 0x153e21e7, 0x8fb03d4a, 0xe6e39f2b, 0xdb83adf7, +} + +var s2 = [256]uint32{ + 0xe93d5a68, 0x948140f7, 0xf64c261c, 0x94692934, 0x411520f7, 0x7602d4f7, + 0xbcf46b2e, 0xd4a20068, 0xd4082471, 0x3320f46a, 0x43b7d4b7, 0x500061af, + 0x1e39f62e, 0x97244546, 0x14214f74, 0xbf8b8840, 0x4d95fc1d, 0x96b591af, + 0x70f4ddd3, 0x66a02f45, 0xbfbc09ec, 0x03bd9785, 0x7fac6dd0, 0x31cb8504, + 0x96eb27b3, 0x55fd3941, 0xda2547e6, 0xabca0a9a, 0x28507825, 0x530429f4, + 0x0a2c86da, 0xe9b66dfb, 0x68dc1462, 0xd7486900, 0x680ec0a4, 0x27a18dee, + 0x4f3ffea2, 0xe887ad8c, 0xb58ce006, 0x7af4d6b6, 0xaace1e7c, 0xd3375fec, + 0xce78a399, 0x406b2a42, 0x20fe9e35, 0xd9f385b9, 0xee39d7ab, 0x3b124e8b, + 0x1dc9faf7, 0x4b6d1856, 0x26a36631, 0xeae397b2, 0x3a6efa74, 0xdd5b4332, + 0x6841e7f7, 0xca7820fb, 0xfb0af54e, 0xd8feb397, 0x454056ac, 0xba489527, + 0x55533a3a, 0x20838d87, 0xfe6ba9b7, 0xd096954b, 0x55a867bc, 0xa1159a58, + 0xcca92963, 0x99e1db33, 0xa62a4a56, 0x3f3125f9, 0x5ef47e1c, 0x9029317c, + 0xfdf8e802, 0x04272f70, 0x80bb155c, 0x05282ce3, 0x95c11548, 0xe4c66d22, + 0x48c1133f, 0xc70f86dc, 0x07f9c9ee, 0x41041f0f, 0x404779a4, 0x5d886e17, + 0x325f51eb, 0xd59bc0d1, 0xf2bcc18f, 0x41113564, 0x257b7834, 0x602a9c60, + 0xdff8e8a3, 0x1f636c1b, 0x0e12b4c2, 0x02e1329e, 0xaf664fd1, 0xcad18115, + 0x6b2395e0, 0x333e92e1, 0x3b240b62, 0xeebeb922, 0x85b2a20e, 0xe6ba0d99, + 0xde720c8c, 0x2da2f728, 0xd0127845, 0x95b794fd, 0x647d0862, 0xe7ccf5f0, + 0x5449a36f, 0x877d48fa, 0xc39dfd27, 0xf33e8d1e, 0x0a476341, 0x992eff74, + 0x3a6f6eab, 0xf4f8fd37, 0xa812dc60, 0xa1ebddf8, 0x991be14c, 0xdb6e6b0d, + 0xc67b5510, 0x6d672c37, 0x2765d43b, 0xdcd0e804, 0xf1290dc7, 0xcc00ffa3, + 0xb5390f92, 0x690fed0b, 0x667b9ffb, 0xcedb7d9c, 0xa091cf0b, 0xd9155ea3, + 0xbb132f88, 0x515bad24, 0x7b9479bf, 0x763bd6eb, 0x37392eb3, 0xcc115979, + 0x8026e297, 0xf42e312d, 0x6842ada7, 0xc66a2b3b, 0x12754ccc, 0x782ef11c, + 0x6a124237, 0xb79251e7, 0x06a1bbe6, 0x4bfb6350, 0x1a6b1018, 0x11caedfa, + 0x3d25bdd8, 0xe2e1c3c9, 0x44421659, 0x0a121386, 0xd90cec6e, 0xd5abea2a, + 0x64af674e, 0xda86a85f, 0xbebfe988, 0x64e4c3fe, 0x9dbc8057, 0xf0f7c086, + 0x60787bf8, 0x6003604d, 0xd1fd8346, 0xf6381fb0, 0x7745ae04, 0xd736fccc, + 0x83426b33, 0xf01eab71, 0xb0804187, 0x3c005e5f, 0x77a057be, 0xbde8ae24, + 0x55464299, 0xbf582e61, 0x4e58f48f, 0xf2ddfda2, 0xf474ef38, 0x8789bdc2, + 0x5366f9c3, 0xc8b38e74, 0xb475f255, 0x46fcd9b9, 0x7aeb2661, 0x8b1ddf84, + 0x846a0e79, 0x915f95e2, 0x466e598e, 0x20b45770, 0x8cd55591, 0xc902de4c, + 0xb90bace1, 0xbb8205d0, 0x11a86248, 0x7574a99e, 0xb77f19b6, 0xe0a9dc09, + 0x662d09a1, 0xc4324633, 0xe85a1f02, 0x09f0be8c, 0x4a99a025, 0x1d6efe10, + 0x1ab93d1d, 0x0ba5a4df, 0xa186f20f, 0x2868f169, 0xdcb7da83, 0x573906fe, + 0xa1e2ce9b, 0x4fcd7f52, 0x50115e01, 0xa70683fa, 0xa002b5c4, 0x0de6d027, + 0x9af88c27, 0x773f8641, 0xc3604c06, 0x61a806b5, 0xf0177a28, 0xc0f586e0, + 0x006058aa, 0x30dc7d62, 0x11e69ed7, 0x2338ea63, 0x53c2dd94, 0xc2c21634, + 0xbbcbee56, 0x90bcb6de, 0xebfc7da1, 0xce591d76, 0x6f05e409, 0x4b7c0188, + 0x39720a3d, 0x7c927c24, 0x86e3725f, 0x724d9db9, 0x1ac15bb4, 0xd39eb8fc, + 0xed545578, 0x08fca5b5, 0xd83d7cd3, 0x4dad0fc4, 0x1e50ef5e, 0xb161e6f8, + 0xa28514d9, 0x6c51133c, 0x6fd5c7e7, 0x56e14ec4, 0x362abfce, 0xddc6c837, + 0xd79a3234, 0x92638212, 0x670efa8e, 0x406000e0, +} + +var s3 = [256]uint32{ + 0x3a39ce37, 0xd3faf5cf, 0xabc27737, 0x5ac52d1b, 0x5cb0679e, 0x4fa33742, + 0xd3822740, 0x99bc9bbe, 0xd5118e9d, 0xbf0f7315, 0xd62d1c7e, 0xc700c47b, + 0xb78c1b6b, 0x21a19045, 0xb26eb1be, 0x6a366eb4, 0x5748ab2f, 0xbc946e79, + 0xc6a376d2, 0x6549c2c8, 0x530ff8ee, 0x468dde7d, 0xd5730a1d, 0x4cd04dc6, + 0x2939bbdb, 0xa9ba4650, 0xac9526e8, 0xbe5ee304, 0xa1fad5f0, 0x6a2d519a, + 0x63ef8ce2, 0x9a86ee22, 0xc089c2b8, 0x43242ef6, 0xa51e03aa, 0x9cf2d0a4, + 0x83c061ba, 0x9be96a4d, 0x8fe51550, 0xba645bd6, 0x2826a2f9, 0xa73a3ae1, + 0x4ba99586, 0xef5562e9, 0xc72fefd3, 0xf752f7da, 0x3f046f69, 0x77fa0a59, + 0x80e4a915, 0x87b08601, 0x9b09e6ad, 0x3b3ee593, 0xe990fd5a, 0x9e34d797, + 0x2cf0b7d9, 0x022b8b51, 0x96d5ac3a, 0x017da67d, 0xd1cf3ed6, 0x7c7d2d28, + 0x1f9f25cf, 0xadf2b89b, 0x5ad6b472, 0x5a88f54c, 0xe029ac71, 0xe019a5e6, + 0x47b0acfd, 0xed93fa9b, 0xe8d3c48d, 0x283b57cc, 0xf8d56629, 0x79132e28, + 0x785f0191, 0xed756055, 0xf7960e44, 0xe3d35e8c, 0x15056dd4, 0x88f46dba, + 0x03a16125, 0x0564f0bd, 0xc3eb9e15, 0x3c9057a2, 0x97271aec, 0xa93a072a, + 0x1b3f6d9b, 0x1e6321f5, 0xf59c66fb, 0x26dcf319, 0x7533d928, 0xb155fdf5, + 0x03563482, 0x8aba3cbb, 0x28517711, 0xc20ad9f8, 0xabcc5167, 0xccad925f, + 0x4de81751, 0x3830dc8e, 0x379d5862, 0x9320f991, 0xea7a90c2, 0xfb3e7bce, + 0x5121ce64, 0x774fbe32, 0xa8b6e37e, 0xc3293d46, 0x48de5369, 0x6413e680, + 0xa2ae0810, 0xdd6db224, 0x69852dfd, 0x09072166, 0xb39a460a, 0x6445c0dd, + 0x586cdecf, 0x1c20c8ae, 0x5bbef7dd, 0x1b588d40, 0xccd2017f, 0x6bb4e3bb, + 0xdda26a7e, 0x3a59ff45, 0x3e350a44, 0xbcb4cdd5, 0x72eacea8, 0xfa6484bb, + 0x8d6612ae, 0xbf3c6f47, 0xd29be463, 0x542f5d9e, 0xaec2771b, 0xf64e6370, + 0x740e0d8d, 0xe75b1357, 0xf8721671, 0xaf537d5d, 0x4040cb08, 0x4eb4e2cc, + 0x34d2466a, 0x0115af84, 0xe1b00428, 0x95983a1d, 0x06b89fb4, 0xce6ea048, + 0x6f3f3b82, 0x3520ab82, 0x011a1d4b, 0x277227f8, 0x611560b1, 0xe7933fdc, + 0xbb3a792b, 0x344525bd, 0xa08839e1, 0x51ce794b, 0x2f32c9b7, 0xa01fbac9, + 0xe01cc87e, 0xbcc7d1f6, 0xcf0111c3, 0xa1e8aac7, 0x1a908749, 0xd44fbd9a, + 0xd0dadecb, 0xd50ada38, 0x0339c32a, 0xc6913667, 0x8df9317c, 0xe0b12b4f, + 0xf79e59b7, 0x43f5bb3a, 0xf2d519ff, 0x27d9459c, 0xbf97222c, 0x15e6fc2a, + 0x0f91fc71, 0x9b941525, 0xfae59361, 0xceb69ceb, 0xc2a86459, 0x12baa8d1, + 0xb6c1075e, 0xe3056a0c, 0x10d25065, 0xcb03a442, 0xe0ec6e0e, 0x1698db3b, + 0x4c98a0be, 0x3278e964, 0x9f1f9532, 0xe0d392df, 0xd3a0342b, 0x8971f21e, + 0x1b0a7441, 0x4ba3348c, 0xc5be7120, 0xc37632d8, 0xdf359f8d, 0x9b992f2e, + 0xe60b6f47, 0x0fe3f11d, 0xe54cda54, 0x1edad891, 0xce6279cf, 0xcd3e7e6f, + 0x1618b166, 0xfd2c1d05, 0x848fd2c5, 0xf6fb2299, 0xf523f357, 0xa6327623, + 0x93a83531, 0x56cccd02, 0xacf08162, 0x5a75ebb5, 0x6e163697, 0x88d273cc, + 0xde966292, 0x81b949d0, 0x4c50901b, 0x71c65614, 0xe6c6c7bd, 0x327a140a, + 0x45e1d006, 0xc3f27b9a, 0xc9aa53fd, 0x62a80f00, 0xbb25bfe2, 0x35bdd2f6, + 0x71126905, 0xb2040222, 0xb6cbcf7c, 0xcd769c2b, 0x53113ec0, 0x1640e3d3, + 0x38abbd60, 0x2547adf0, 0xba38209c, 0xf746ce76, 0x77afa1c5, 0x20756060, + 0x85cbfe4e, 0x8ae88dd8, 0x7aaaf9b0, 0x4cf9aa7e, 0x1948c25c, 0x02fb8a8c, + 0x01c36ae4, 0xd6ebe1f9, 0x90d4f869, 0xa65cdea0, 0x3f09252d, 0xc208e69f, + 0xb74e6132, 0xce77e25b, 0x578fdfe3, 0x3ac372e6, +} + +var p = [18]uint32{ + 0x243f6a88, 0x85a308d3, 0x13198a2e, 0x03707344, 0xa4093822, 0x299f31d0, + 0x082efa98, 0xec4e6c89, 0x452821e6, 0x38d01377, 0xbe5466cf, 0x34e90c6c, + 0xc0ac29b7, 0xc97c50dd, 0x3f84d5b5, 0xb5470917, 0x9216d5d9, 0x8979fb1b, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/bn256.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/bn256.go new file mode 100644 index 00000000..bc96e3d3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/bn256.go @@ -0,0 +1,404 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package bn256 implements a particular bilinear group at the 128-bit security level. +// +// Bilinear groups are the basis of many of the new cryptographic protocols +// that have been proposed over the past decade. They consist of a triplet of +// groups (G₁, G₂ and GT) such that there exists a function e(g₁ˣ,g₂ʸ)=gTˣʸ +// (where gₓ is a generator of the respective group). That function is called +// a pairing function. +// +// This package specifically implements the Optimal Ate pairing over a 256-bit +// Barreto-Naehrig curve as described in +// http://cryptojedi.org/papers/dclxvi-20100714.pdf. Its output is compatible +// with the implementation described in that paper. +package bn256 + +import ( + "crypto/rand" + "io" + "math/big" +) + +// BUG(agl): this implementation is not constant time. +// TODO(agl): keep GF(p²) elements in Mongomery form. + +// G1 is an abstract cyclic group. The zero value is suitable for use as the +// output of an operation, but cannot be used as an input. +type G1 struct { + p *curvePoint +} + +// RandomG1 returns x and g₁ˣ where x is a random, non-zero number read from r. +func RandomG1(r io.Reader) (*big.Int, *G1, error) { + var k *big.Int + var err error + + for { + k, err = rand.Int(r, Order) + if err != nil { + return nil, nil, err + } + if k.Sign() > 0 { + break + } + } + + return k, new(G1).ScalarBaseMult(k), nil +} + +func (g *G1) String() string { + return "bn256.G1" + g.p.String() +} + +// ScalarBaseMult sets e to g*k where g is the generator of the group and +// then returns e. +func (e *G1) ScalarBaseMult(k *big.Int) *G1 { + if e.p == nil { + e.p = newCurvePoint(nil) + } + e.p.Mul(curveGen, k, new(bnPool)) + return e +} + +// ScalarMult sets e to a*k and then returns e. +func (e *G1) ScalarMult(a *G1, k *big.Int) *G1 { + if e.p == nil { + e.p = newCurvePoint(nil) + } + e.p.Mul(a.p, k, new(bnPool)) + return e +} + +// Add sets e to a+b and then returns e. +// BUG(agl): this function is not complete: a==b fails. +func (e *G1) Add(a, b *G1) *G1 { + if e.p == nil { + e.p = newCurvePoint(nil) + } + e.p.Add(a.p, b.p, new(bnPool)) + return e +} + +// Neg sets e to -a and then returns e. +func (e *G1) Neg(a *G1) *G1 { + if e.p == nil { + e.p = newCurvePoint(nil) + } + e.p.Negative(a.p) + return e +} + +// Marshal converts n to a byte slice. +func (n *G1) Marshal() []byte { + n.p.MakeAffine(nil) + + xBytes := new(big.Int).Mod(n.p.x, p).Bytes() + yBytes := new(big.Int).Mod(n.p.y, p).Bytes() + + // Each value is a 256-bit number. + const numBytes = 256 / 8 + + ret := make([]byte, numBytes*2) + copy(ret[1*numBytes-len(xBytes):], xBytes) + copy(ret[2*numBytes-len(yBytes):], yBytes) + + return ret +} + +// Unmarshal sets e to the result of converting the output of Marshal back into +// a group element and then returns e. +func (e *G1) Unmarshal(m []byte) (*G1, bool) { + // Each value is a 256-bit number. + const numBytes = 256 / 8 + + if len(m) != 2*numBytes { + return nil, false + } + + if e.p == nil { + e.p = newCurvePoint(nil) + } + + e.p.x.SetBytes(m[0*numBytes : 1*numBytes]) + e.p.y.SetBytes(m[1*numBytes : 2*numBytes]) + + if e.p.x.Sign() == 0 && e.p.y.Sign() == 0 { + // This is the point at infinity. + e.p.y.SetInt64(1) + e.p.z.SetInt64(0) + e.p.t.SetInt64(0) + } else { + e.p.z.SetInt64(1) + e.p.t.SetInt64(1) + + if !e.p.IsOnCurve() { + return nil, false + } + } + + return e, true +} + +// G2 is an abstract cyclic group. The zero value is suitable for use as the +// output of an operation, but cannot be used as an input. +type G2 struct { + p *twistPoint +} + +// RandomG1 returns x and g₂ˣ where x is a random, non-zero number read from r. +func RandomG2(r io.Reader) (*big.Int, *G2, error) { + var k *big.Int + var err error + + for { + k, err = rand.Int(r, Order) + if err != nil { + return nil, nil, err + } + if k.Sign() > 0 { + break + } + } + + return k, new(G2).ScalarBaseMult(k), nil +} + +func (g *G2) String() string { + return "bn256.G2" + g.p.String() +} + +// ScalarBaseMult sets e to g*k where g is the generator of the group and +// then returns out. +func (e *G2) ScalarBaseMult(k *big.Int) *G2 { + if e.p == nil { + e.p = newTwistPoint(nil) + } + e.p.Mul(twistGen, k, new(bnPool)) + return e +} + +// ScalarMult sets e to a*k and then returns e. +func (e *G2) ScalarMult(a *G2, k *big.Int) *G2 { + if e.p == nil { + e.p = newTwistPoint(nil) + } + e.p.Mul(a.p, k, new(bnPool)) + return e +} + +// Add sets e to a+b and then returns e. +// BUG(agl): this function is not complete: a==b fails. +func (e *G2) Add(a, b *G2) *G2 { + if e.p == nil { + e.p = newTwistPoint(nil) + } + e.p.Add(a.p, b.p, new(bnPool)) + return e +} + +// Marshal converts n into a byte slice. +func (n *G2) Marshal() []byte { + n.p.MakeAffine(nil) + + xxBytes := new(big.Int).Mod(n.p.x.x, p).Bytes() + xyBytes := new(big.Int).Mod(n.p.x.y, p).Bytes() + yxBytes := new(big.Int).Mod(n.p.y.x, p).Bytes() + yyBytes := new(big.Int).Mod(n.p.y.y, p).Bytes() + + // Each value is a 256-bit number. + const numBytes = 256 / 8 + + ret := make([]byte, numBytes*4) + copy(ret[1*numBytes-len(xxBytes):], xxBytes) + copy(ret[2*numBytes-len(xyBytes):], xyBytes) + copy(ret[3*numBytes-len(yxBytes):], yxBytes) + copy(ret[4*numBytes-len(yyBytes):], yyBytes) + + return ret +} + +// Unmarshal sets e to the result of converting the output of Marshal back into +// a group element and then returns e. +func (e *G2) Unmarshal(m []byte) (*G2, bool) { + // Each value is a 256-bit number. + const numBytes = 256 / 8 + + if len(m) != 4*numBytes { + return nil, false + } + + if e.p == nil { + e.p = newTwistPoint(nil) + } + + e.p.x.x.SetBytes(m[0*numBytes : 1*numBytes]) + e.p.x.y.SetBytes(m[1*numBytes : 2*numBytes]) + e.p.y.x.SetBytes(m[2*numBytes : 3*numBytes]) + e.p.y.y.SetBytes(m[3*numBytes : 4*numBytes]) + + if e.p.x.x.Sign() == 0 && + e.p.x.y.Sign() == 0 && + e.p.y.x.Sign() == 0 && + e.p.y.y.Sign() == 0 { + // This is the point at infinity. + e.p.y.SetOne() + e.p.z.SetZero() + e.p.t.SetZero() + } else { + e.p.z.SetOne() + e.p.t.SetOne() + + if !e.p.IsOnCurve() { + return nil, false + } + } + + return e, true +} + +// GT is an abstract cyclic group. The zero value is suitable for use as the +// output of an operation, but cannot be used as an input. +type GT struct { + p *gfP12 +} + +func (g *GT) String() string { + return "bn256.GT" + g.p.String() +} + +// ScalarMult sets e to a*k and then returns e. +func (e *GT) ScalarMult(a *GT, k *big.Int) *GT { + if e.p == nil { + e.p = newGFp12(nil) + } + e.p.Exp(a.p, k, new(bnPool)) + return e +} + +// Add sets e to a+b and then returns e. +func (e *GT) Add(a, b *GT) *GT { + if e.p == nil { + e.p = newGFp12(nil) + } + e.p.Mul(a.p, b.p, new(bnPool)) + return e +} + +// Neg sets e to -a and then returns e. +func (e *GT) Neg(a *GT) *GT { + if e.p == nil { + e.p = newGFp12(nil) + } + e.p.Invert(a.p, new(bnPool)) + return e +} + +// Marshal converts n into a byte slice. +func (n *GT) Marshal() []byte { + n.p.Minimal() + + xxxBytes := n.p.x.x.x.Bytes() + xxyBytes := n.p.x.x.y.Bytes() + xyxBytes := n.p.x.y.x.Bytes() + xyyBytes := n.p.x.y.y.Bytes() + xzxBytes := n.p.x.z.x.Bytes() + xzyBytes := n.p.x.z.y.Bytes() + yxxBytes := n.p.y.x.x.Bytes() + yxyBytes := n.p.y.x.y.Bytes() + yyxBytes := n.p.y.y.x.Bytes() + yyyBytes := n.p.y.y.y.Bytes() + yzxBytes := n.p.y.z.x.Bytes() + yzyBytes := n.p.y.z.y.Bytes() + + // Each value is a 256-bit number. + const numBytes = 256 / 8 + + ret := make([]byte, numBytes*12) + copy(ret[1*numBytes-len(xxxBytes):], xxxBytes) + copy(ret[2*numBytes-len(xxyBytes):], xxyBytes) + copy(ret[3*numBytes-len(xyxBytes):], xyxBytes) + copy(ret[4*numBytes-len(xyyBytes):], xyyBytes) + copy(ret[5*numBytes-len(xzxBytes):], xzxBytes) + copy(ret[6*numBytes-len(xzyBytes):], xzyBytes) + copy(ret[7*numBytes-len(yxxBytes):], yxxBytes) + copy(ret[8*numBytes-len(yxyBytes):], yxyBytes) + copy(ret[9*numBytes-len(yyxBytes):], yyxBytes) + copy(ret[10*numBytes-len(yyyBytes):], yyyBytes) + copy(ret[11*numBytes-len(yzxBytes):], yzxBytes) + copy(ret[12*numBytes-len(yzyBytes):], yzyBytes) + + return ret +} + +// Unmarshal sets e to the result of converting the output of Marshal back into +// a group element and then returns e. +func (e *GT) Unmarshal(m []byte) (*GT, bool) { + // Each value is a 256-bit number. + const numBytes = 256 / 8 + + if len(m) != 12*numBytes { + return nil, false + } + + if e.p == nil { + e.p = newGFp12(nil) + } + + e.p.x.x.x.SetBytes(m[0*numBytes : 1*numBytes]) + e.p.x.x.y.SetBytes(m[1*numBytes : 2*numBytes]) + e.p.x.y.x.SetBytes(m[2*numBytes : 3*numBytes]) + e.p.x.y.y.SetBytes(m[3*numBytes : 4*numBytes]) + e.p.x.z.x.SetBytes(m[4*numBytes : 5*numBytes]) + e.p.x.z.y.SetBytes(m[5*numBytes : 6*numBytes]) + e.p.y.x.x.SetBytes(m[6*numBytes : 7*numBytes]) + e.p.y.x.y.SetBytes(m[7*numBytes : 8*numBytes]) + e.p.y.y.x.SetBytes(m[8*numBytes : 9*numBytes]) + e.p.y.y.y.SetBytes(m[9*numBytes : 10*numBytes]) + e.p.y.z.x.SetBytes(m[10*numBytes : 11*numBytes]) + e.p.y.z.y.SetBytes(m[11*numBytes : 12*numBytes]) + + return e, true +} + +// Pair calculates an Optimal Ate pairing. +func Pair(g1 *G1, g2 *G2) *GT { + return >{optimalAte(g2.p, g1.p, new(bnPool))} +} + +// bnPool implements a tiny cache of *big.Int objects that's used to reduce the +// number of allocations made during processing. +type bnPool struct { + bns []*big.Int + count int +} + +func (pool *bnPool) Get() *big.Int { + if pool == nil { + return new(big.Int) + } + + pool.count++ + l := len(pool.bns) + if l == 0 { + return new(big.Int) + } + + bn := pool.bns[l-1] + pool.bns = pool.bns[:l-1] + return bn +} + +func (pool *bnPool) Put(bn *big.Int) { + if pool == nil { + return + } + pool.bns = append(pool.bns, bn) + pool.count-- +} + +func (pool *bnPool) Count() int { + return pool.count +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/bn256_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/bn256_test.go new file mode 100644 index 00000000..1cec3884 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/bn256_test.go @@ -0,0 +1,304 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +import ( + "bytes" + "crypto/rand" + "math/big" + "testing" +) + +func TestGFp2Invert(t *testing.T) { + pool := new(bnPool) + + a := newGFp2(pool) + a.x.SetString("23423492374", 10) + a.y.SetString("12934872398472394827398470", 10) + + inv := newGFp2(pool) + inv.Invert(a, pool) + + b := newGFp2(pool).Mul(inv, a, pool) + if b.x.Int64() != 0 || b.y.Int64() != 1 { + t.Fatalf("bad result for a^-1*a: %s %s", b.x, b.y) + } + + a.Put(pool) + b.Put(pool) + inv.Put(pool) + + if c := pool.Count(); c > 0 { + t.Errorf("Pool count non-zero: %d\n", c) + } +} + +func isZero(n *big.Int) bool { + return new(big.Int).Mod(n, p).Int64() == 0 +} + +func isOne(n *big.Int) bool { + return new(big.Int).Mod(n, p).Int64() == 1 +} + +func TestGFp6Invert(t *testing.T) { + pool := new(bnPool) + + a := newGFp6(pool) + a.x.x.SetString("239487238491", 10) + a.x.y.SetString("2356249827341", 10) + a.y.x.SetString("082659782", 10) + a.y.y.SetString("182703523765", 10) + a.z.x.SetString("978236549263", 10) + a.z.y.SetString("64893242", 10) + + inv := newGFp6(pool) + inv.Invert(a, pool) + + b := newGFp6(pool).Mul(inv, a, pool) + if !isZero(b.x.x) || + !isZero(b.x.y) || + !isZero(b.y.x) || + !isZero(b.y.y) || + !isZero(b.z.x) || + !isOne(b.z.y) { + t.Fatalf("bad result for a^-1*a: %s", b) + } + + a.Put(pool) + b.Put(pool) + inv.Put(pool) + + if c := pool.Count(); c > 0 { + t.Errorf("Pool count non-zero: %d\n", c) + } +} + +func TestGFp12Invert(t *testing.T) { + pool := new(bnPool) + + a := newGFp12(pool) + a.x.x.x.SetString("239846234862342323958623", 10) + a.x.x.y.SetString("2359862352529835623", 10) + a.x.y.x.SetString("928836523", 10) + a.x.y.y.SetString("9856234", 10) + a.x.z.x.SetString("235635286", 10) + a.x.z.y.SetString("5628392833", 10) + a.y.x.x.SetString("252936598265329856238956532167968", 10) + a.y.x.y.SetString("23596239865236954178968", 10) + a.y.y.x.SetString("95421692834", 10) + a.y.y.y.SetString("236548", 10) + a.y.z.x.SetString("924523", 10) + a.y.z.y.SetString("12954623", 10) + + inv := newGFp12(pool) + inv.Invert(a, pool) + + b := newGFp12(pool).Mul(inv, a, pool) + if !isZero(b.x.x.x) || + !isZero(b.x.x.y) || + !isZero(b.x.y.x) || + !isZero(b.x.y.y) || + !isZero(b.x.z.x) || + !isZero(b.x.z.y) || + !isZero(b.y.x.x) || + !isZero(b.y.x.y) || + !isZero(b.y.y.x) || + !isZero(b.y.y.y) || + !isZero(b.y.z.x) || + !isOne(b.y.z.y) { + t.Fatalf("bad result for a^-1*a: %s", b) + } + + a.Put(pool) + b.Put(pool) + inv.Put(pool) + + if c := pool.Count(); c > 0 { + t.Errorf("Pool count non-zero: %d\n", c) + } +} + +func TestCurveImpl(t *testing.T) { + pool := new(bnPool) + + g := &curvePoint{ + pool.Get().SetInt64(1), + pool.Get().SetInt64(-2), + pool.Get().SetInt64(1), + pool.Get().SetInt64(0), + } + + x := pool.Get().SetInt64(32498273234) + X := newCurvePoint(pool).Mul(g, x, pool) + + y := pool.Get().SetInt64(98732423523) + Y := newCurvePoint(pool).Mul(g, y, pool) + + s1 := newCurvePoint(pool).Mul(X, y, pool).MakeAffine(pool) + s2 := newCurvePoint(pool).Mul(Y, x, pool).MakeAffine(pool) + + if s1.x.Cmp(s2.x) != 0 || + s2.x.Cmp(s1.x) != 0 { + t.Errorf("DH points don't match: (%s, %s) (%s, %s)", s1.x, s1.y, s2.x, s2.y) + } + + pool.Put(x) + X.Put(pool) + pool.Put(y) + Y.Put(pool) + s1.Put(pool) + s2.Put(pool) + g.Put(pool) + + if c := pool.Count(); c > 0 { + t.Errorf("Pool count non-zero: %d\n", c) + } +} + +func TestOrderG1(t *testing.T) { + g := new(G1).ScalarBaseMult(Order) + if !g.p.IsInfinity() { + t.Error("G1 has incorrect order") + } + + one := new(G1).ScalarBaseMult(new(big.Int).SetInt64(1)) + g.Add(g, one) + g.p.MakeAffine(nil) + if g.p.x.Cmp(one.p.x) != 0 || g.p.y.Cmp(one.p.y) != 0 { + t.Errorf("1+0 != 1 in G1") + } +} + +func TestOrderG2(t *testing.T) { + g := new(G2).ScalarBaseMult(Order) + if !g.p.IsInfinity() { + t.Error("G2 has incorrect order") + } + + one := new(G2).ScalarBaseMult(new(big.Int).SetInt64(1)) + g.Add(g, one) + g.p.MakeAffine(nil) + if g.p.x.x.Cmp(one.p.x.x) != 0 || + g.p.x.y.Cmp(one.p.x.y) != 0 || + g.p.y.x.Cmp(one.p.y.x) != 0 || + g.p.y.y.Cmp(one.p.y.y) != 0 { + t.Errorf("1+0 != 1 in G2") + } +} + +func TestOrderGT(t *testing.T) { + gt := Pair(&G1{curveGen}, &G2{twistGen}) + g := new(GT).ScalarMult(gt, Order) + if !g.p.IsOne() { + t.Error("GT has incorrect order") + } +} + +func TestBilinearity(t *testing.T) { + for i := 0; i < 2; i++ { + a, p1, _ := RandomG1(rand.Reader) + b, p2, _ := RandomG2(rand.Reader) + e1 := Pair(p1, p2) + + e2 := Pair(&G1{curveGen}, &G2{twistGen}) + e2.ScalarMult(e2, a) + e2.ScalarMult(e2, b) + + minusE2 := new(GT).Neg(e2) + e1.Add(e1, minusE2) + + if !e1.p.IsOne() { + t.Fatalf("bad pairing result: %s", e1) + } + } +} + +func TestG1Marshal(t *testing.T) { + g := new(G1).ScalarBaseMult(new(big.Int).SetInt64(1)) + form := g.Marshal() + _, ok := new(G1).Unmarshal(form) + if !ok { + t.Fatalf("failed to unmarshal") + } + + g.ScalarBaseMult(Order) + form = g.Marshal() + g2, ok := new(G1).Unmarshal(form) + if !ok { + t.Fatalf("failed to unmarshal ∞") + } + if !g2.p.IsInfinity() { + t.Fatalf("∞ unmarshaled incorrectly") + } +} + +func TestG2Marshal(t *testing.T) { + g := new(G2).ScalarBaseMult(new(big.Int).SetInt64(1)) + form := g.Marshal() + _, ok := new(G2).Unmarshal(form) + if !ok { + t.Fatalf("failed to unmarshal") + } + + g.ScalarBaseMult(Order) + form = g.Marshal() + g2, ok := new(G2).Unmarshal(form) + if !ok { + t.Fatalf("failed to unmarshal ∞") + } + if !g2.p.IsInfinity() { + t.Fatalf("∞ unmarshaled incorrectly") + } +} + +func TestG1Identity(t *testing.T) { + g := new(G1).ScalarBaseMult(new(big.Int).SetInt64(0)) + if !g.p.IsInfinity() { + t.Error("failure") + } +} + +func TestG2Identity(t *testing.T) { + g := new(G2).ScalarBaseMult(new(big.Int).SetInt64(0)) + if !g.p.IsInfinity() { + t.Error("failure") + } +} + +func TestTripartiteDiffieHellman(t *testing.T) { + a, _ := rand.Int(rand.Reader, Order) + b, _ := rand.Int(rand.Reader, Order) + c, _ := rand.Int(rand.Reader, Order) + + pa, _ := new(G1).Unmarshal(new(G1).ScalarBaseMult(a).Marshal()) + qa, _ := new(G2).Unmarshal(new(G2).ScalarBaseMult(a).Marshal()) + pb, _ := new(G1).Unmarshal(new(G1).ScalarBaseMult(b).Marshal()) + qb, _ := new(G2).Unmarshal(new(G2).ScalarBaseMult(b).Marshal()) + pc, _ := new(G1).Unmarshal(new(G1).ScalarBaseMult(c).Marshal()) + qc, _ := new(G2).Unmarshal(new(G2).ScalarBaseMult(c).Marshal()) + + k1 := Pair(pb, qc) + k1.ScalarMult(k1, a) + k1Bytes := k1.Marshal() + + k2 := Pair(pc, qa) + k2.ScalarMult(k2, b) + k2Bytes := k2.Marshal() + + k3 := Pair(pa, qb) + k3.ScalarMult(k3, c) + k3Bytes := k3.Marshal() + + if !bytes.Equal(k1Bytes, k2Bytes) || !bytes.Equal(k2Bytes, k3Bytes) { + t.Errorf("keys didn't agree") + } +} + +func BenchmarkPairing(b *testing.B) { + for i := 0; i < b.N; i++ { + Pair(&G1{curveGen}, &G2{twistGen}) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/constants.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/constants.go new file mode 100644 index 00000000..08ccfdf3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/constants.go @@ -0,0 +1,44 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +import ( + "math/big" +) + +func bigFromBase10(s string) *big.Int { + n, _ := new(big.Int).SetString(s, 10) + return n +} + +// u is the BN parameter that determines the prime: 1868033³. +var u = bigFromBase10("6518589491078791937") + +// p is a prime over which we form a basic field: 36u⁴+36u³+24u³+6u+1. +var p = bigFromBase10("65000549695646603732796438742359905742825358107623003571877145026864184071783") + +// Order is the number of elements in both G₁ and G₂: 36u⁴+36u³+18u³+6u+1. +var Order = bigFromBase10("65000549695646603732796438742359905742570406053903786389881062969044166799969") + +// xiToPMinus1Over6 is ξ^((p-1)/6) where ξ = i+3. +var xiToPMinus1Over6 = &gfP2{bigFromBase10("8669379979083712429711189836753509758585994370025260553045152614783263110636"), bigFromBase10("19998038925833620163537568958541907098007303196759855091367510456613536016040")} + +// xiToPMinus1Over3 is ξ^((p-1)/3) where ξ = i+3. +var xiToPMinus1Over3 = &gfP2{bigFromBase10("26098034838977895781559542626833399156321265654106457577426020397262786167059"), bigFromBase10("15931493369629630809226283458085260090334794394361662678240713231519278691715")} + +// xiToPMinus1Over2 is ξ^((p-1)/2) where ξ = i+3. +var xiToPMinus1Over2 = &gfP2{bigFromBase10("50997318142241922852281555961173165965672272825141804376761836765206060036244"), bigFromBase10("38665955945962842195025998234511023902832543644254935982879660597356748036009")} + +// xiToPSquaredMinus1Over3 is ξ^((p²-1)/3) where ξ = i+3. +var xiToPSquaredMinus1Over3 = bigFromBase10("65000549695646603727810655408050771481677621702948236658134783353303381437752") + +// xiTo2PSquaredMinus2Over3 is ξ^((2p²-2)/3) where ξ = i+3 (a cubic root of unity, mod p). +var xiTo2PSquaredMinus2Over3 = bigFromBase10("4985783334309134261147736404674766913742361673560802634030") + +// xiToPSquaredMinus1Over6 is ξ^((1p²-1)/6) where ξ = i+3 (a cubic root of -1, mod p). +var xiToPSquaredMinus1Over6 = bigFromBase10("65000549695646603727810655408050771481677621702948236658134783353303381437753") + +// xiTo2PMinus2Over3 is ξ^((2p-2)/3) where ξ = i+3. +var xiTo2PMinus2Over3 = &gfP2{bigFromBase10("19885131339612776214803633203834694332692106372356013117629940868870585019582"), bigFromBase10("21645619881471562101905880913352894726728173167203616652430647841922248593627")} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/curve.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/curve.go new file mode 100644 index 00000000..55b7063f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/curve.go @@ -0,0 +1,278 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +import ( + "math/big" +) + +// curvePoint implements the elliptic curve y²=x³+3. Points are kept in +// Jacobian form and t=z² when valid. G₁ is the set of points of this curve on +// GF(p). +type curvePoint struct { + x, y, z, t *big.Int +} + +var curveB = new(big.Int).SetInt64(3) + +// curveGen is the generator of G₁. +var curveGen = &curvePoint{ + new(big.Int).SetInt64(1), + new(big.Int).SetInt64(-2), + new(big.Int).SetInt64(1), + new(big.Int).SetInt64(1), +} + +func newCurvePoint(pool *bnPool) *curvePoint { + return &curvePoint{ + pool.Get(), + pool.Get(), + pool.Get(), + pool.Get(), + } +} + +func (c *curvePoint) String() string { + c.MakeAffine(new(bnPool)) + return "(" + c.x.String() + ", " + c.y.String() + ")" +} + +func (c *curvePoint) Put(pool *bnPool) { + pool.Put(c.x) + pool.Put(c.y) + pool.Put(c.z) + pool.Put(c.t) +} + +func (c *curvePoint) Set(a *curvePoint) { + c.x.Set(a.x) + c.y.Set(a.y) + c.z.Set(a.z) + c.t.Set(a.t) +} + +// IsOnCurve returns true iff c is on the curve where c must be in affine form. +func (c *curvePoint) IsOnCurve() bool { + yy := new(big.Int).Mul(c.y, c.y) + xxx := new(big.Int).Mul(c.x, c.x) + xxx.Mul(xxx, c.x) + yy.Sub(yy, xxx) + yy.Sub(yy, curveB) + if yy.Sign() < 0 || yy.Cmp(p) >= 0 { + yy.Mod(yy, p) + } + return yy.Sign() == 0 +} + +func (c *curvePoint) SetInfinity() { + c.z.SetInt64(0) +} + +func (c *curvePoint) IsInfinity() bool { + return c.z.Sign() == 0 +} + +func (c *curvePoint) Add(a, b *curvePoint, pool *bnPool) { + if a.IsInfinity() { + c.Set(b) + return + } + if b.IsInfinity() { + c.Set(a) + return + } + + // See http://hyperelliptic.org/EFD/g1p/auto-code/shortw/jacobian-0/addition/add-2007-bl.op3 + + // Normalize the points by replacing a = [x1:y1:z1] and b = [x2:y2:z2] + // by [u1:s1:z1·z2] and [u2:s2:z1·z2] + // where u1 = x1·z2², s1 = y1·z2³ and u1 = x2·z1², s2 = y2·z1³ + z1z1 := pool.Get().Mul(a.z, a.z) + z1z1.Mod(z1z1, p) + z2z2 := pool.Get().Mul(b.z, b.z) + z2z2.Mod(z2z2, p) + u1 := pool.Get().Mul(a.x, z2z2) + u1.Mod(u1, p) + u2 := pool.Get().Mul(b.x, z1z1) + u2.Mod(u2, p) + + t := pool.Get().Mul(b.z, z2z2) + t.Mod(t, p) + s1 := pool.Get().Mul(a.y, t) + s1.Mod(s1, p) + + t.Mul(a.z, z1z1) + t.Mod(t, p) + s2 := pool.Get().Mul(b.y, t) + s2.Mod(s2, p) + + // Compute x = (2h)²(s²-u1-u2) + // where s = (s2-s1)/(u2-u1) is the slope of the line through + // (u1,s1) and (u2,s2). The extra factor 2h = 2(u2-u1) comes from the value of z below. + // This is also: + // 4(s2-s1)² - 4h²(u1+u2) = 4(s2-s1)² - 4h³ - 4h²(2u1) + // = r² - j - 2v + // with the notations below. + h := pool.Get().Sub(u2, u1) + xEqual := h.Sign() == 0 + + t.Add(h, h) + // i = 4h² + i := pool.Get().Mul(t, t) + i.Mod(i, p) + // j = 4h³ + j := pool.Get().Mul(h, i) + j.Mod(j, p) + + t.Sub(s2, s1) + yEqual := t.Sign() == 0 + if xEqual && yEqual { + c.Double(a, pool) + return + } + r := pool.Get().Add(t, t) + + v := pool.Get().Mul(u1, i) + v.Mod(v, p) + + // t4 = 4(s2-s1)² + t4 := pool.Get().Mul(r, r) + t4.Mod(t4, p) + t.Add(v, v) + t6 := pool.Get().Sub(t4, j) + c.x.Sub(t6, t) + + // Set y = -(2h)³(s1 + s*(x/4h²-u1)) + // This is also + // y = - 2·s1·j - (s2-s1)(2x - 2i·u1) = r(v-x) - 2·s1·j + t.Sub(v, c.x) // t7 + t4.Mul(s1, j) // t8 + t4.Mod(t4, p) + t6.Add(t4, t4) // t9 + t4.Mul(r, t) // t10 + t4.Mod(t4, p) + c.y.Sub(t4, t6) + + // Set z = 2(u2-u1)·z1·z2 = 2h·z1·z2 + t.Add(a.z, b.z) // t11 + t4.Mul(t, t) // t12 + t4.Mod(t4, p) + t.Sub(t4, z1z1) // t13 + t4.Sub(t, z2z2) // t14 + c.z.Mul(t4, h) + c.z.Mod(c.z, p) + + pool.Put(z1z1) + pool.Put(z2z2) + pool.Put(u1) + pool.Put(u2) + pool.Put(t) + pool.Put(s1) + pool.Put(s2) + pool.Put(h) + pool.Put(i) + pool.Put(j) + pool.Put(r) + pool.Put(v) + pool.Put(t4) + pool.Put(t6) +} + +func (c *curvePoint) Double(a *curvePoint, pool *bnPool) { + // See http://hyperelliptic.org/EFD/g1p/auto-code/shortw/jacobian-0/doubling/dbl-2009-l.op3 + A := pool.Get().Mul(a.x, a.x) + A.Mod(A, p) + B := pool.Get().Mul(a.y, a.y) + B.Mod(B, p) + C := pool.Get().Mul(B, B) + C.Mod(C, p) + + t := pool.Get().Add(a.x, B) + t2 := pool.Get().Mul(t, t) + t2.Mod(t2, p) + t.Sub(t2, A) + t2.Sub(t, C) + d := pool.Get().Add(t2, t2) + t.Add(A, A) + e := pool.Get().Add(t, A) + f := pool.Get().Mul(e, e) + f.Mod(f, p) + + t.Add(d, d) + c.x.Sub(f, t) + + t.Add(C, C) + t2.Add(t, t) + t.Add(t2, t2) + c.y.Sub(d, c.x) + t2.Mul(e, c.y) + t2.Mod(t2, p) + c.y.Sub(t2, t) + + t.Mul(a.y, a.z) + t.Mod(t, p) + c.z.Add(t, t) + + pool.Put(A) + pool.Put(B) + pool.Put(C) + pool.Put(t) + pool.Put(t2) + pool.Put(d) + pool.Put(e) + pool.Put(f) +} + +func (c *curvePoint) Mul(a *curvePoint, scalar *big.Int, pool *bnPool) *curvePoint { + sum := newCurvePoint(pool) + sum.SetInfinity() + t := newCurvePoint(pool) + + for i := scalar.BitLen(); i >= 0; i-- { + t.Double(sum, pool) + if scalar.Bit(i) != 0 { + sum.Add(t, a, pool) + } else { + sum.Set(t) + } + } + + c.Set(sum) + sum.Put(pool) + t.Put(pool) + return c +} + +func (c *curvePoint) MakeAffine(pool *bnPool) *curvePoint { + if words := c.z.Bits(); len(words) == 1 && words[0] == 1 { + return c + } + + zInv := pool.Get().ModInverse(c.z, p) + t := pool.Get().Mul(c.y, zInv) + t.Mod(t, p) + zInv2 := pool.Get().Mul(zInv, zInv) + zInv2.Mod(zInv2, p) + c.y.Mul(t, zInv2) + c.y.Mod(c.y, p) + t.Mul(c.x, zInv2) + t.Mod(t, p) + c.x.Set(t) + c.z.SetInt64(1) + c.t.SetInt64(1) + + pool.Put(zInv) + pool.Put(t) + pool.Put(zInv2) + + return c +} + +func (c *curvePoint) Negative(a *curvePoint) { + c.x.Set(a.x) + c.y.Neg(a.y) + c.z.Set(a.z) + c.t.SetInt64(0) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/example_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/example_test.go new file mode 100644 index 00000000..b2d19807 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/example_test.go @@ -0,0 +1,43 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +import ( + "crypto/rand" +) + +func ExamplePair() { + // This implements the tripartite Diffie-Hellman algorithm from "A One + // Round Protocol for Tripartite Diffie-Hellman", A. Joux. + // http://www.springerlink.com/content/cddc57yyva0hburb/fulltext.pdf + + // Each of three parties, a, b and c, generate a private value. + a, _ := rand.Int(rand.Reader, Order) + b, _ := rand.Int(rand.Reader, Order) + c, _ := rand.Int(rand.Reader, Order) + + // Then each party calculates g₁ and g₂ times their private value. + pa := new(G1).ScalarBaseMult(a) + qa := new(G2).ScalarBaseMult(a) + + pb := new(G1).ScalarBaseMult(b) + qb := new(G2).ScalarBaseMult(b) + + pc := new(G1).ScalarBaseMult(c) + qc := new(G2).ScalarBaseMult(c) + + // Now each party exchanges its public values with the other two and + // all parties can calculate the shared key. + k1 := Pair(pb, qc) + k1.ScalarMult(k1, a) + + k2 := Pair(pc, qa) + k2.ScalarMult(k2, b) + + k3 := Pair(pa, qb) + k3.ScalarMult(k3, c) + + // k1, k2 and k3 will all be equal. +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp12.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp12.go new file mode 100644 index 00000000..f084eddf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp12.go @@ -0,0 +1,200 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +// For details of the algorithms used, see "Multiplication and Squaring on +// Pairing-Friendly Fields, Devegili et al. +// http://eprint.iacr.org/2006/471.pdf. + +import ( + "math/big" +) + +// gfP12 implements the field of size p¹² as a quadratic extension of gfP6 +// where ω²=τ. +type gfP12 struct { + x, y *gfP6 // value is xω + y +} + +func newGFp12(pool *bnPool) *gfP12 { + return &gfP12{newGFp6(pool), newGFp6(pool)} +} + +func (e *gfP12) String() string { + return "(" + e.x.String() + "," + e.y.String() + ")" +} + +func (e *gfP12) Put(pool *bnPool) { + e.x.Put(pool) + e.y.Put(pool) +} + +func (e *gfP12) Set(a *gfP12) *gfP12 { + e.x.Set(a.x) + e.y.Set(a.y) + return e +} + +func (e *gfP12) SetZero() *gfP12 { + e.x.SetZero() + e.y.SetZero() + return e +} + +func (e *gfP12) SetOne() *gfP12 { + e.x.SetZero() + e.y.SetOne() + return e +} + +func (e *gfP12) Minimal() { + e.x.Minimal() + e.y.Minimal() +} + +func (e *gfP12) IsZero() bool { + e.Minimal() + return e.x.IsZero() && e.y.IsZero() +} + +func (e *gfP12) IsOne() bool { + e.Minimal() + return e.x.IsZero() && e.y.IsOne() +} + +func (e *gfP12) Conjugate(a *gfP12) *gfP12 { + e.x.Negative(a.x) + e.y.Set(a.y) + return a +} + +func (e *gfP12) Negative(a *gfP12) *gfP12 { + e.x.Negative(a.x) + e.y.Negative(a.y) + return e +} + +// Frobenius computes (xω+y)^p = x^p ω·ξ^((p-1)/6) + y^p +func (e *gfP12) Frobenius(a *gfP12, pool *bnPool) *gfP12 { + e.x.Frobenius(a.x, pool) + e.y.Frobenius(a.y, pool) + e.x.MulScalar(e.x, xiToPMinus1Over6, pool) + return e +} + +// FrobeniusP2 computes (xω+y)^p² = x^p² ω·ξ^((p²-1)/6) + y^p² +func (e *gfP12) FrobeniusP2(a *gfP12, pool *bnPool) *gfP12 { + e.x.FrobeniusP2(a.x) + e.x.MulGFP(e.x, xiToPSquaredMinus1Over6) + e.y.FrobeniusP2(a.y) + return e +} + +func (e *gfP12) Add(a, b *gfP12) *gfP12 { + e.x.Add(a.x, b.x) + e.y.Add(a.y, b.y) + return e +} + +func (e *gfP12) Sub(a, b *gfP12) *gfP12 { + e.x.Sub(a.x, b.x) + e.y.Sub(a.y, b.y) + return e +} + +func (e *gfP12) Mul(a, b *gfP12, pool *bnPool) *gfP12 { + tx := newGFp6(pool) + tx.Mul(a.x, b.y, pool) + t := newGFp6(pool) + t.Mul(b.x, a.y, pool) + tx.Add(tx, t) + + ty := newGFp6(pool) + ty.Mul(a.y, b.y, pool) + t.Mul(a.x, b.x, pool) + t.MulTau(t, pool) + e.y.Add(ty, t) + e.x.Set(tx) + + tx.Put(pool) + ty.Put(pool) + t.Put(pool) + return e +} + +func (e *gfP12) MulScalar(a *gfP12, b *gfP6, pool *bnPool) *gfP12 { + e.x.Mul(e.x, b, pool) + e.y.Mul(e.y, b, pool) + return e +} + +func (c *gfP12) Exp(a *gfP12, power *big.Int, pool *bnPool) *gfP12 { + sum := newGFp12(pool) + sum.SetOne() + t := newGFp12(pool) + + for i := power.BitLen() - 1; i >= 0; i-- { + t.Square(sum, pool) + if power.Bit(i) != 0 { + sum.Mul(t, a, pool) + } else { + sum.Set(t) + } + } + + c.Set(sum) + + sum.Put(pool) + t.Put(pool) + + return c +} + +func (e *gfP12) Square(a *gfP12, pool *bnPool) *gfP12 { + // Complex squaring algorithm + v0 := newGFp6(pool) + v0.Mul(a.x, a.y, pool) + + t := newGFp6(pool) + t.MulTau(a.x, pool) + t.Add(a.y, t) + ty := newGFp6(pool) + ty.Add(a.x, a.y) + ty.Mul(ty, t, pool) + ty.Sub(ty, v0) + t.MulTau(v0, pool) + ty.Sub(ty, t) + + e.y.Set(ty) + e.x.Double(v0) + + v0.Put(pool) + t.Put(pool) + ty.Put(pool) + + return e +} + +func (e *gfP12) Invert(a *gfP12, pool *bnPool) *gfP12 { + // See "Implementing cryptographic pairings", M. Scott, section 3.2. + // ftp://136.206.11.249/pub/crypto/pairings.pdf + t1 := newGFp6(pool) + t2 := newGFp6(pool) + + t1.Square(a.x, pool) + t2.Square(a.y, pool) + t1.MulTau(t1, pool) + t1.Sub(t2, t1) + t2.Invert(t1, pool) + + e.x.Negative(a.x) + e.y.Set(a.y) + e.MulScalar(e, t2, pool) + + t1.Put(pool) + t2.Put(pool) + + return e +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp2.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp2.go new file mode 100644 index 00000000..97f3f1f3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp2.go @@ -0,0 +1,219 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +// For details of the algorithms used, see "Multiplication and Squaring on +// Pairing-Friendly Fields, Devegili et al. +// http://eprint.iacr.org/2006/471.pdf. + +import ( + "math/big" +) + +// gfP2 implements a field of size p² as a quadratic extension of the base +// field where i²=-1. +type gfP2 struct { + x, y *big.Int // value is xi+y. +} + +func newGFp2(pool *bnPool) *gfP2 { + return &gfP2{pool.Get(), pool.Get()} +} + +func (e *gfP2) String() string { + x := new(big.Int).Mod(e.x, p) + y := new(big.Int).Mod(e.y, p) + return "(" + x.String() + "," + y.String() + ")" +} + +func (e *gfP2) Put(pool *bnPool) { + pool.Put(e.x) + pool.Put(e.y) +} + +func (e *gfP2) Set(a *gfP2) *gfP2 { + e.x.Set(a.x) + e.y.Set(a.y) + return e +} + +func (e *gfP2) SetZero() *gfP2 { + e.x.SetInt64(0) + e.y.SetInt64(0) + return e +} + +func (e *gfP2) SetOne() *gfP2 { + e.x.SetInt64(0) + e.y.SetInt64(1) + return e +} + +func (e *gfP2) Minimal() { + if e.x.Sign() < 0 || e.x.Cmp(p) >= 0 { + e.x.Mod(e.x, p) + } + if e.y.Sign() < 0 || e.y.Cmp(p) >= 0 { + e.y.Mod(e.y, p) + } +} + +func (e *gfP2) IsZero() bool { + return e.x.Sign() == 0 && e.y.Sign() == 0 +} + +func (e *gfP2) IsOne() bool { + if e.x.Sign() != 0 { + return false + } + words := e.y.Bits() + return len(words) == 1 && words[0] == 1 +} + +func (e *gfP2) Conjugate(a *gfP2) *gfP2 { + e.y.Set(a.y) + e.x.Neg(a.x) + return e +} + +func (e *gfP2) Negative(a *gfP2) *gfP2 { + e.x.Neg(a.x) + e.y.Neg(a.y) + return e +} + +func (e *gfP2) Add(a, b *gfP2) *gfP2 { + e.x.Add(a.x, b.x) + e.y.Add(a.y, b.y) + return e +} + +func (e *gfP2) Sub(a, b *gfP2) *gfP2 { + e.x.Sub(a.x, b.x) + e.y.Sub(a.y, b.y) + return e +} + +func (e *gfP2) Double(a *gfP2) *gfP2 { + e.x.Lsh(a.x, 1) + e.y.Lsh(a.y, 1) + return e +} + +func (c *gfP2) Exp(a *gfP2, power *big.Int, pool *bnPool) *gfP2 { + sum := newGFp2(pool) + sum.SetOne() + t := newGFp2(pool) + + for i := power.BitLen() - 1; i >= 0; i-- { + t.Square(sum, pool) + if power.Bit(i) != 0 { + sum.Mul(t, a, pool) + } else { + sum.Set(t) + } + } + + c.Set(sum) + + sum.Put(pool) + t.Put(pool) + + return c +} + +// See "Multiplication and Squaring in Pairing-Friendly Fields", +// http://eprint.iacr.org/2006/471.pdf +func (e *gfP2) Mul(a, b *gfP2, pool *bnPool) *gfP2 { + tx := pool.Get().Mul(a.x, b.y) + t := pool.Get().Mul(b.x, a.y) + tx.Add(tx, t) + tx.Mod(tx, p) + + ty := pool.Get().Mul(a.y, b.y) + t.Mul(a.x, b.x) + ty.Sub(ty, t) + e.y.Mod(ty, p) + e.x.Set(tx) + + pool.Put(tx) + pool.Put(ty) + pool.Put(t) + + return e +} + +func (e *gfP2) MulScalar(a *gfP2, b *big.Int) *gfP2 { + e.x.Mul(a.x, b) + e.y.Mul(a.y, b) + return e +} + +// MulXi sets e=ξa where ξ=i+3 and then returns e. +func (e *gfP2) MulXi(a *gfP2, pool *bnPool) *gfP2 { + // (xi+y)(i+3) = (3x+y)i+(3y-x) + tx := pool.Get().Lsh(a.x, 1) + tx.Add(tx, a.x) + tx.Add(tx, a.y) + + ty := pool.Get().Lsh(a.y, 1) + ty.Add(ty, a.y) + ty.Sub(ty, a.x) + + e.x.Set(tx) + e.y.Set(ty) + + pool.Put(tx) + pool.Put(ty) + + return e +} + +func (e *gfP2) Square(a *gfP2, pool *bnPool) *gfP2 { + // Complex squaring algorithm: + // (xi+b)² = (x+y)(y-x) + 2*i*x*y + t1 := pool.Get().Sub(a.y, a.x) + t2 := pool.Get().Add(a.x, a.y) + ty := pool.Get().Mul(t1, t2) + ty.Mod(ty, p) + + t1.Mul(a.x, a.y) + t1.Lsh(t1, 1) + + e.x.Mod(t1, p) + e.y.Set(ty) + + pool.Put(t1) + pool.Put(t2) + pool.Put(ty) + + return e +} + +func (e *gfP2) Invert(a *gfP2, pool *bnPool) *gfP2 { + // See "Implementing cryptographic pairings", M. Scott, section 3.2. + // ftp://136.206.11.249/pub/crypto/pairings.pdf + t := pool.Get() + t.Mul(a.y, a.y) + t2 := pool.Get() + t2.Mul(a.x, a.x) + t.Add(t, t2) + + inv := pool.Get() + inv.ModInverse(t, p) + + e.x.Neg(a.x) + e.x.Mul(e.x, inv) + e.x.Mod(e.x, p) + + e.y.Mul(a.y, inv) + e.y.Mod(e.y, p) + + pool.Put(t) + pool.Put(t2) + pool.Put(inv) + + return e +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp6.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp6.go new file mode 100644 index 00000000..f98ae782 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/gfp6.go @@ -0,0 +1,296 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +// For details of the algorithms used, see "Multiplication and Squaring on +// Pairing-Friendly Fields, Devegili et al. +// http://eprint.iacr.org/2006/471.pdf. + +import ( + "math/big" +) + +// gfP6 implements the field of size p⁶ as a cubic extension of gfP2 where τ³=ξ +// and ξ=i+3. +type gfP6 struct { + x, y, z *gfP2 // value is xτ² + yτ + z +} + +func newGFp6(pool *bnPool) *gfP6 { + return &gfP6{newGFp2(pool), newGFp2(pool), newGFp2(pool)} +} + +func (e *gfP6) String() string { + return "(" + e.x.String() + "," + e.y.String() + "," + e.z.String() + ")" +} + +func (e *gfP6) Put(pool *bnPool) { + e.x.Put(pool) + e.y.Put(pool) + e.z.Put(pool) +} + +func (e *gfP6) Set(a *gfP6) *gfP6 { + e.x.Set(a.x) + e.y.Set(a.y) + e.z.Set(a.z) + return e +} + +func (e *gfP6) SetZero() *gfP6 { + e.x.SetZero() + e.y.SetZero() + e.z.SetZero() + return e +} + +func (e *gfP6) SetOne() *gfP6 { + e.x.SetZero() + e.y.SetZero() + e.z.SetOne() + return e +} + +func (e *gfP6) Minimal() { + e.x.Minimal() + e.y.Minimal() + e.z.Minimal() +} + +func (e *gfP6) IsZero() bool { + return e.x.IsZero() && e.y.IsZero() && e.z.IsZero() +} + +func (e *gfP6) IsOne() bool { + return e.x.IsZero() && e.y.IsZero() && e.z.IsOne() +} + +func (e *gfP6) Negative(a *gfP6) *gfP6 { + e.x.Negative(a.x) + e.y.Negative(a.y) + e.z.Negative(a.z) + return e +} + +func (e *gfP6) Frobenius(a *gfP6, pool *bnPool) *gfP6 { + e.x.Conjugate(a.x) + e.y.Conjugate(a.y) + e.z.Conjugate(a.z) + + e.x.Mul(e.x, xiTo2PMinus2Over3, pool) + e.y.Mul(e.y, xiToPMinus1Over3, pool) + return e +} + +// FrobeniusP2 computes (xτ²+yτ+z)^(p²) = xτ^(2p²) + yτ^(p²) + z +func (e *gfP6) FrobeniusP2(a *gfP6) *gfP6 { + // τ^(2p²) = τ²τ^(2p²-2) = τ²ξ^((2p²-2)/3) + e.x.MulScalar(a.x, xiTo2PSquaredMinus2Over3) + // τ^(p²) = ττ^(p²-1) = τξ^((p²-1)/3) + e.y.MulScalar(a.y, xiToPSquaredMinus1Over3) + e.z.Set(a.z) + return e +} + +func (e *gfP6) Add(a, b *gfP6) *gfP6 { + e.x.Add(a.x, b.x) + e.y.Add(a.y, b.y) + e.z.Add(a.z, b.z) + return e +} + +func (e *gfP6) Sub(a, b *gfP6) *gfP6 { + e.x.Sub(a.x, b.x) + e.y.Sub(a.y, b.y) + e.z.Sub(a.z, b.z) + return e +} + +func (e *gfP6) Double(a *gfP6) *gfP6 { + e.x.Double(a.x) + e.y.Double(a.y) + e.z.Double(a.z) + return e +} + +func (e *gfP6) Mul(a, b *gfP6, pool *bnPool) *gfP6 { + // "Multiplication and Squaring on Pairing-Friendly Fields" + // Section 4, Karatsuba method. + // http://eprint.iacr.org/2006/471.pdf + + v0 := newGFp2(pool) + v0.Mul(a.z, b.z, pool) + v1 := newGFp2(pool) + v1.Mul(a.y, b.y, pool) + v2 := newGFp2(pool) + v2.Mul(a.x, b.x, pool) + + t0 := newGFp2(pool) + t0.Add(a.x, a.y) + t1 := newGFp2(pool) + t1.Add(b.x, b.y) + tz := newGFp2(pool) + tz.Mul(t0, t1, pool) + + tz.Sub(tz, v1) + tz.Sub(tz, v2) + tz.MulXi(tz, pool) + tz.Add(tz, v0) + + t0.Add(a.y, a.z) + t1.Add(b.y, b.z) + ty := newGFp2(pool) + ty.Mul(t0, t1, pool) + ty.Sub(ty, v0) + ty.Sub(ty, v1) + t0.MulXi(v2, pool) + ty.Add(ty, t0) + + t0.Add(a.x, a.z) + t1.Add(b.x, b.z) + tx := newGFp2(pool) + tx.Mul(t0, t1, pool) + tx.Sub(tx, v0) + tx.Add(tx, v1) + tx.Sub(tx, v2) + + e.x.Set(tx) + e.y.Set(ty) + e.z.Set(tz) + + t0.Put(pool) + t1.Put(pool) + tx.Put(pool) + ty.Put(pool) + tz.Put(pool) + v0.Put(pool) + v1.Put(pool) + v2.Put(pool) + return e +} + +func (e *gfP6) MulScalar(a *gfP6, b *gfP2, pool *bnPool) *gfP6 { + e.x.Mul(a.x, b, pool) + e.y.Mul(a.y, b, pool) + e.z.Mul(a.z, b, pool) + return e +} + +func (e *gfP6) MulGFP(a *gfP6, b *big.Int) *gfP6 { + e.x.MulScalar(a.x, b) + e.y.MulScalar(a.y, b) + e.z.MulScalar(a.z, b) + return e +} + +// MulTau computes τ·(aτ²+bτ+c) = bτ²+cτ+aξ +func (e *gfP6) MulTau(a *gfP6, pool *bnPool) { + tz := newGFp2(pool) + tz.MulXi(a.x, pool) + ty := newGFp2(pool) + ty.Set(a.y) + e.y.Set(a.z) + e.x.Set(ty) + e.z.Set(tz) + tz.Put(pool) + ty.Put(pool) +} + +func (e *gfP6) Square(a *gfP6, pool *bnPool) *gfP6 { + v0 := newGFp2(pool).Square(a.z, pool) + v1 := newGFp2(pool).Square(a.y, pool) + v2 := newGFp2(pool).Square(a.x, pool) + + c0 := newGFp2(pool).Add(a.x, a.y) + c0.Square(c0, pool) + c0.Sub(c0, v1) + c0.Sub(c0, v2) + c0.MulXi(c0, pool) + c0.Add(c0, v0) + + c1 := newGFp2(pool).Add(a.y, a.z) + c1.Square(c1, pool) + c1.Sub(c1, v0) + c1.Sub(c1, v1) + xiV2 := newGFp2(pool).MulXi(v2, pool) + c1.Add(c1, xiV2) + + c2 := newGFp2(pool).Add(a.x, a.z) + c2.Square(c2, pool) + c2.Sub(c2, v0) + c2.Add(c2, v1) + c2.Sub(c2, v2) + + e.x.Set(c2) + e.y.Set(c1) + e.z.Set(c0) + + v0.Put(pool) + v1.Put(pool) + v2.Put(pool) + c0.Put(pool) + c1.Put(pool) + c2.Put(pool) + xiV2.Put(pool) + + return e +} + +func (e *gfP6) Invert(a *gfP6, pool *bnPool) *gfP6 { + // See "Implementing cryptographic pairings", M. Scott, section 3.2. + // ftp://136.206.11.249/pub/crypto/pairings.pdf + + // Here we can give a short explanation of how it works: let j be a cubic root of + // unity in GF(p²) so that 1+j+j²=0. + // Then (xτ² + yτ + z)(xj²τ² + yjτ + z)(xjτ² + yj²τ + z) + // = (xτ² + yτ + z)(Cτ²+Bτ+A) + // = (x³ξ²+y³ξ+z³-3ξxyz) = F is an element of the base field (the norm). + // + // On the other hand (xj²τ² + yjτ + z)(xjτ² + yj²τ + z) + // = τ²(y²-ξxz) + τ(ξx²-yz) + (z²-ξxy) + // + // So that's why A = (z²-ξxy), B = (ξx²-yz), C = (y²-ξxz) + t1 := newGFp2(pool) + + A := newGFp2(pool) + A.Square(a.z, pool) + t1.Mul(a.x, a.y, pool) + t1.MulXi(t1, pool) + A.Sub(A, t1) + + B := newGFp2(pool) + B.Square(a.x, pool) + B.MulXi(B, pool) + t1.Mul(a.y, a.z, pool) + B.Sub(B, t1) + + C := newGFp2(pool) + C.Square(a.y, pool) + t1.Mul(a.x, a.z, pool) + C.Sub(C, t1) + + F := newGFp2(pool) + F.Mul(C, a.y, pool) + F.MulXi(F, pool) + t1.Mul(A, a.z, pool) + F.Add(F, t1) + t1.Mul(B, a.x, pool) + t1.MulXi(t1, pool) + F.Add(F, t1) + + F.Invert(F, pool) + + e.x.Mul(C, F, pool) + e.y.Mul(B, F, pool) + e.z.Mul(A, F, pool) + + t1.Put(pool) + A.Put(pool) + B.Put(pool) + C.Put(pool) + F.Put(pool) + + return e +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/optate.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/optate.go new file mode 100644 index 00000000..7ae0746e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/optate.go @@ -0,0 +1,395 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +func lineFunctionAdd(r, p *twistPoint, q *curvePoint, r2 *gfP2, pool *bnPool) (a, b, c *gfP2, rOut *twistPoint) { + // See the mixed addition algorithm from "Faster Computation of the + // Tate Pairing", http://arxiv.org/pdf/0904.0854v3.pdf + + B := newGFp2(pool).Mul(p.x, r.t, pool) + + D := newGFp2(pool).Add(p.y, r.z) + D.Square(D, pool) + D.Sub(D, r2) + D.Sub(D, r.t) + D.Mul(D, r.t, pool) + + H := newGFp2(pool).Sub(B, r.x) + I := newGFp2(pool).Square(H, pool) + + E := newGFp2(pool).Add(I, I) + E.Add(E, E) + + J := newGFp2(pool).Mul(H, E, pool) + + L1 := newGFp2(pool).Sub(D, r.y) + L1.Sub(L1, r.y) + + V := newGFp2(pool).Mul(r.x, E, pool) + + rOut = newTwistPoint(pool) + rOut.x.Square(L1, pool) + rOut.x.Sub(rOut.x, J) + rOut.x.Sub(rOut.x, V) + rOut.x.Sub(rOut.x, V) + + rOut.z.Add(r.z, H) + rOut.z.Square(rOut.z, pool) + rOut.z.Sub(rOut.z, r.t) + rOut.z.Sub(rOut.z, I) + + t := newGFp2(pool).Sub(V, rOut.x) + t.Mul(t, L1, pool) + t2 := newGFp2(pool).Mul(r.y, J, pool) + t2.Add(t2, t2) + rOut.y.Sub(t, t2) + + rOut.t.Square(rOut.z, pool) + + t.Add(p.y, rOut.z) + t.Square(t, pool) + t.Sub(t, r2) + t.Sub(t, rOut.t) + + t2.Mul(L1, p.x, pool) + t2.Add(t2, t2) + a = newGFp2(pool) + a.Sub(t2, t) + + c = newGFp2(pool) + c.MulScalar(rOut.z, q.y) + c.Add(c, c) + + b = newGFp2(pool) + b.SetZero() + b.Sub(b, L1) + b.MulScalar(b, q.x) + b.Add(b, b) + + B.Put(pool) + D.Put(pool) + H.Put(pool) + I.Put(pool) + E.Put(pool) + J.Put(pool) + L1.Put(pool) + V.Put(pool) + t.Put(pool) + t2.Put(pool) + + return +} + +func lineFunctionDouble(r *twistPoint, q *curvePoint, pool *bnPool) (a, b, c *gfP2, rOut *twistPoint) { + // See the doubling algorithm for a=0 from "Faster Computation of the + // Tate Pairing", http://arxiv.org/pdf/0904.0854v3.pdf + + A := newGFp2(pool).Square(r.x, pool) + B := newGFp2(pool).Square(r.y, pool) + C := newGFp2(pool).Square(B, pool) + + D := newGFp2(pool).Add(r.x, B) + D.Square(D, pool) + D.Sub(D, A) + D.Sub(D, C) + D.Add(D, D) + + E := newGFp2(pool).Add(A, A) + E.Add(E, A) + + G := newGFp2(pool).Square(E, pool) + + rOut = newTwistPoint(pool) + rOut.x.Sub(G, D) + rOut.x.Sub(rOut.x, D) + + rOut.z.Add(r.y, r.z) + rOut.z.Square(rOut.z, pool) + rOut.z.Sub(rOut.z, B) + rOut.z.Sub(rOut.z, r.t) + + rOut.y.Sub(D, rOut.x) + rOut.y.Mul(rOut.y, E, pool) + t := newGFp2(pool).Add(C, C) + t.Add(t, t) + t.Add(t, t) + rOut.y.Sub(rOut.y, t) + + rOut.t.Square(rOut.z, pool) + + t.Mul(E, r.t, pool) + t.Add(t, t) + b = newGFp2(pool) + b.SetZero() + b.Sub(b, t) + b.MulScalar(b, q.x) + + a = newGFp2(pool) + a.Add(r.x, E) + a.Square(a, pool) + a.Sub(a, A) + a.Sub(a, G) + t.Add(B, B) + t.Add(t, t) + a.Sub(a, t) + + c = newGFp2(pool) + c.Mul(rOut.z, r.t, pool) + c.Add(c, c) + c.MulScalar(c, q.y) + + A.Put(pool) + B.Put(pool) + C.Put(pool) + D.Put(pool) + E.Put(pool) + G.Put(pool) + t.Put(pool) + + return +} + +func mulLine(ret *gfP12, a, b, c *gfP2, pool *bnPool) { + a2 := newGFp6(pool) + a2.x.SetZero() + a2.y.Set(a) + a2.z.Set(b) + a2.Mul(a2, ret.x, pool) + t3 := newGFp6(pool).MulScalar(ret.y, c, pool) + + t := newGFp2(pool) + t.Add(b, c) + t2 := newGFp6(pool) + t2.x.SetZero() + t2.y.Set(a) + t2.z.Set(t) + ret.x.Add(ret.x, ret.y) + + ret.y.Set(t3) + + ret.x.Mul(ret.x, t2, pool) + ret.x.Sub(ret.x, a2) + ret.x.Sub(ret.x, ret.y) + a2.MulTau(a2, pool) + ret.y.Add(ret.y, a2) + + a2.Put(pool) + t3.Put(pool) + t2.Put(pool) + t.Put(pool) +} + +// sixuPlus2NAF is 6u+2 in non-adjacent form. +var sixuPlus2NAF = []int8{0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, -1, 0, 1, 0, 0, 0, 1, 0, -1, 0, 0, 0, -1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 1} + +// miller implements the Miller loop for calculating the Optimal Ate pairing. +// See algorithm 1 from http://cryptojedi.org/papers/dclxvi-20100714.pdf +func miller(q *twistPoint, p *curvePoint, pool *bnPool) *gfP12 { + ret := newGFp12(pool) + ret.SetOne() + + aAffine := newTwistPoint(pool) + aAffine.Set(q) + aAffine.MakeAffine(pool) + + bAffine := newCurvePoint(pool) + bAffine.Set(p) + bAffine.MakeAffine(pool) + + minusA := newTwistPoint(pool) + minusA.Negative(aAffine, pool) + + r := newTwistPoint(pool) + r.Set(aAffine) + + r2 := newGFp2(pool) + r2.Square(aAffine.y, pool) + + for i := len(sixuPlus2NAF) - 1; i > 0; i-- { + a, b, c, newR := lineFunctionDouble(r, bAffine, pool) + if i != len(sixuPlus2NAF)-1 { + ret.Square(ret, pool) + } + + mulLine(ret, a, b, c, pool) + a.Put(pool) + b.Put(pool) + c.Put(pool) + r.Put(pool) + r = newR + + switch sixuPlus2NAF[i-1] { + case 1: + a, b, c, newR = lineFunctionAdd(r, aAffine, bAffine, r2, pool) + case -1: + a, b, c, newR = lineFunctionAdd(r, minusA, bAffine, r2, pool) + default: + continue + } + + mulLine(ret, a, b, c, pool) + a.Put(pool) + b.Put(pool) + c.Put(pool) + r.Put(pool) + r = newR + } + + // In order to calculate Q1 we have to convert q from the sextic twist + // to the full GF(p^12) group, apply the Frobenius there, and convert + // back. + // + // The twist isomorphism is (x', y') -> (xω², yω³). If we consider just + // x for a moment, then after applying the Frobenius, we have x̄ω^(2p) + // where x̄ is the conjugate of x. If we are going to apply the inverse + // isomorphism we need a value with a single coefficient of ω² so we + // rewrite this as x̄ω^(2p-2)ω². ξ⁶ = ω and, due to the construction of + // p, 2p-2 is a multiple of six. Therefore we can rewrite as + // x̄ξ^((p-1)/3)ω² and applying the inverse isomorphism eliminates the + // ω². + // + // A similar argument can be made for the y value. + + q1 := newTwistPoint(pool) + q1.x.Conjugate(aAffine.x) + q1.x.Mul(q1.x, xiToPMinus1Over3, pool) + q1.y.Conjugate(aAffine.y) + q1.y.Mul(q1.y, xiToPMinus1Over2, pool) + q1.z.SetOne() + q1.t.SetOne() + + // For Q2 we are applying the p² Frobenius. The two conjugations cancel + // out and we are left only with the factors from the isomorphism. In + // the case of x, we end up with a pure number which is why + // xiToPSquaredMinus1Over3 is ∈ GF(p). With y we get a factor of -1. We + // ignore this to end up with -Q2. + + minusQ2 := newTwistPoint(pool) + minusQ2.x.MulScalar(aAffine.x, xiToPSquaredMinus1Over3) + minusQ2.y.Set(aAffine.y) + minusQ2.z.SetOne() + minusQ2.t.SetOne() + + r2.Square(q1.y, pool) + a, b, c, newR := lineFunctionAdd(r, q1, bAffine, r2, pool) + mulLine(ret, a, b, c, pool) + a.Put(pool) + b.Put(pool) + c.Put(pool) + r.Put(pool) + r = newR + + r2.Square(minusQ2.y, pool) + a, b, c, newR = lineFunctionAdd(r, minusQ2, bAffine, r2, pool) + mulLine(ret, a, b, c, pool) + a.Put(pool) + b.Put(pool) + c.Put(pool) + r.Put(pool) + r = newR + + aAffine.Put(pool) + bAffine.Put(pool) + minusA.Put(pool) + r.Put(pool) + r2.Put(pool) + + return ret +} + +// finalExponentiation computes the (p¹²-1)/Order-th power of an element of +// GF(p¹²) to obtain an element of GT (steps 13-15 of algorithm 1 from +// http://cryptojedi.org/papers/dclxvi-20100714.pdf) +func finalExponentiation(in *gfP12, pool *bnPool) *gfP12 { + t1 := newGFp12(pool) + + // This is the p^6-Frobenius + t1.x.Negative(in.x) + t1.y.Set(in.y) + + inv := newGFp12(pool) + inv.Invert(in, pool) + t1.Mul(t1, inv, pool) + + t2 := newGFp12(pool).FrobeniusP2(t1, pool) + t1.Mul(t1, t2, pool) + + fp := newGFp12(pool).Frobenius(t1, pool) + fp2 := newGFp12(pool).FrobeniusP2(t1, pool) + fp3 := newGFp12(pool).Frobenius(fp2, pool) + + fu, fu2, fu3 := newGFp12(pool), newGFp12(pool), newGFp12(pool) + fu.Exp(t1, u, pool) + fu2.Exp(fu, u, pool) + fu3.Exp(fu2, u, pool) + + y3 := newGFp12(pool).Frobenius(fu, pool) + fu2p := newGFp12(pool).Frobenius(fu2, pool) + fu3p := newGFp12(pool).Frobenius(fu3, pool) + y2 := newGFp12(pool).FrobeniusP2(fu2, pool) + + y0 := newGFp12(pool) + y0.Mul(fp, fp2, pool) + y0.Mul(y0, fp3, pool) + + y1, y4, y5 := newGFp12(pool), newGFp12(pool), newGFp12(pool) + y1.Conjugate(t1) + y5.Conjugate(fu2) + y3.Conjugate(y3) + y4.Mul(fu, fu2p, pool) + y4.Conjugate(y4) + + y6 := newGFp12(pool) + y6.Mul(fu3, fu3p, pool) + y6.Conjugate(y6) + + t0 := newGFp12(pool) + t0.Square(y6, pool) + t0.Mul(t0, y4, pool) + t0.Mul(t0, y5, pool) + t1.Mul(y3, y5, pool) + t1.Mul(t1, t0, pool) + t0.Mul(t0, y2, pool) + t1.Square(t1, pool) + t1.Mul(t1, t0, pool) + t1.Square(t1, pool) + t0.Mul(t1, y1, pool) + t1.Mul(t1, y0, pool) + t0.Square(t0, pool) + t0.Mul(t0, t1, pool) + + inv.Put(pool) + t1.Put(pool) + t2.Put(pool) + fp.Put(pool) + fp2.Put(pool) + fp3.Put(pool) + fu.Put(pool) + fu2.Put(pool) + fu3.Put(pool) + fu2p.Put(pool) + fu3p.Put(pool) + y0.Put(pool) + y1.Put(pool) + y2.Put(pool) + y3.Put(pool) + y4.Put(pool) + y5.Put(pool) + y6.Put(pool) + + return t0 +} + +func optimalAte(a *twistPoint, b *curvePoint, pool *bnPool) *gfP12 { + e := miller(a, b, pool) + ret := finalExponentiation(e, pool) + e.Put(pool) + + if a.IsInfinity() || b.IsInfinity() { + ret.SetOne() + } + + return ret +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/twist.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/twist.go new file mode 100644 index 00000000..4f8b3fed --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/bn256/twist.go @@ -0,0 +1,249 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bn256 + +import ( + "math/big" +) + +// twistPoint implements the elliptic curve y²=x³+3/ξ over GF(p²). Points are +// kept in Jacobian form and t=z² when valid. The group G₂ is the set of +// n-torsion points of this curve over GF(p²) (where n = Order) +type twistPoint struct { + x, y, z, t *gfP2 +} + +var twistB = &gfP2{ + bigFromBase10("6500054969564660373279643874235990574282535810762300357187714502686418407178"), + bigFromBase10("45500384786952622612957507119651934019977750675336102500314001518804928850249"), +} + +// twistGen is the generator of group G₂. +var twistGen = &twistPoint{ + &gfP2{ + bigFromBase10("21167961636542580255011770066570541300993051739349375019639421053990175267184"), + bigFromBase10("64746500191241794695844075326670126197795977525365406531717464316923369116492"), + }, + &gfP2{ + bigFromBase10("20666913350058776956210519119118544732556678129809273996262322366050359951122"), + bigFromBase10("17778617556404439934652658462602675281523610326338642107814333856843981424549"), + }, + &gfP2{ + bigFromBase10("0"), + bigFromBase10("1"), + }, + &gfP2{ + bigFromBase10("0"), + bigFromBase10("1"), + }, +} + +func newTwistPoint(pool *bnPool) *twistPoint { + return &twistPoint{ + newGFp2(pool), + newGFp2(pool), + newGFp2(pool), + newGFp2(pool), + } +} + +func (c *twistPoint) String() string { + return "(" + c.x.String() + ", " + c.y.String() + ", " + c.z.String() + ")" +} + +func (c *twistPoint) Put(pool *bnPool) { + c.x.Put(pool) + c.y.Put(pool) + c.z.Put(pool) + c.t.Put(pool) +} + +func (c *twistPoint) Set(a *twistPoint) { + c.x.Set(a.x) + c.y.Set(a.y) + c.z.Set(a.z) + c.t.Set(a.t) +} + +// IsOnCurve returns true iff c is on the curve where c must be in affine form. +func (c *twistPoint) IsOnCurve() bool { + pool := new(bnPool) + yy := newGFp2(pool).Square(c.y, pool) + xxx := newGFp2(pool).Square(c.x, pool) + xxx.Mul(xxx, c.x, pool) + yy.Sub(yy, xxx) + yy.Sub(yy, twistB) + yy.Minimal() + return yy.x.Sign() == 0 && yy.y.Sign() == 0 +} + +func (c *twistPoint) SetInfinity() { + c.z.SetZero() +} + +func (c *twistPoint) IsInfinity() bool { + return c.z.IsZero() +} + +func (c *twistPoint) Add(a, b *twistPoint, pool *bnPool) { + // For additional comments, see the same function in curve.go. + + if a.IsInfinity() { + c.Set(b) + return + } + if b.IsInfinity() { + c.Set(a) + return + } + + // See http://hyperelliptic.org/EFD/g1p/auto-code/shortw/jacobian-0/addition/add-2007-bl.op3 + z1z1 := newGFp2(pool).Square(a.z, pool) + z2z2 := newGFp2(pool).Square(b.z, pool) + u1 := newGFp2(pool).Mul(a.x, z2z2, pool) + u2 := newGFp2(pool).Mul(b.x, z1z1, pool) + + t := newGFp2(pool).Mul(b.z, z2z2, pool) + s1 := newGFp2(pool).Mul(a.y, t, pool) + + t.Mul(a.z, z1z1, pool) + s2 := newGFp2(pool).Mul(b.y, t, pool) + + h := newGFp2(pool).Sub(u2, u1) + xEqual := h.IsZero() + + t.Add(h, h) + i := newGFp2(pool).Square(t, pool) + j := newGFp2(pool).Mul(h, i, pool) + + t.Sub(s2, s1) + yEqual := t.IsZero() + if xEqual && yEqual { + c.Double(a, pool) + return + } + r := newGFp2(pool).Add(t, t) + + v := newGFp2(pool).Mul(u1, i, pool) + + t4 := newGFp2(pool).Square(r, pool) + t.Add(v, v) + t6 := newGFp2(pool).Sub(t4, j) + c.x.Sub(t6, t) + + t.Sub(v, c.x) // t7 + t4.Mul(s1, j, pool) // t8 + t6.Add(t4, t4) // t9 + t4.Mul(r, t, pool) // t10 + c.y.Sub(t4, t6) + + t.Add(a.z, b.z) // t11 + t4.Square(t, pool) // t12 + t.Sub(t4, z1z1) // t13 + t4.Sub(t, z2z2) // t14 + c.z.Mul(t4, h, pool) + + z1z1.Put(pool) + z2z2.Put(pool) + u1.Put(pool) + u2.Put(pool) + t.Put(pool) + s1.Put(pool) + s2.Put(pool) + h.Put(pool) + i.Put(pool) + j.Put(pool) + r.Put(pool) + v.Put(pool) + t4.Put(pool) + t6.Put(pool) +} + +func (c *twistPoint) Double(a *twistPoint, pool *bnPool) { + // See http://hyperelliptic.org/EFD/g1p/auto-code/shortw/jacobian-0/doubling/dbl-2009-l.op3 + A := newGFp2(pool).Square(a.x, pool) + B := newGFp2(pool).Square(a.y, pool) + C := newGFp2(pool).Square(B, pool) + + t := newGFp2(pool).Add(a.x, B) + t2 := newGFp2(pool).Square(t, pool) + t.Sub(t2, A) + t2.Sub(t, C) + d := newGFp2(pool).Add(t2, t2) + t.Add(A, A) + e := newGFp2(pool).Add(t, A) + f := newGFp2(pool).Square(e, pool) + + t.Add(d, d) + c.x.Sub(f, t) + + t.Add(C, C) + t2.Add(t, t) + t.Add(t2, t2) + c.y.Sub(d, c.x) + t2.Mul(e, c.y, pool) + c.y.Sub(t2, t) + + t.Mul(a.y, a.z, pool) + c.z.Add(t, t) + + A.Put(pool) + B.Put(pool) + C.Put(pool) + t.Put(pool) + t2.Put(pool) + d.Put(pool) + e.Put(pool) + f.Put(pool) +} + +func (c *twistPoint) Mul(a *twistPoint, scalar *big.Int, pool *bnPool) *twistPoint { + sum := newTwistPoint(pool) + sum.SetInfinity() + t := newTwistPoint(pool) + + for i := scalar.BitLen(); i >= 0; i-- { + t.Double(sum, pool) + if scalar.Bit(i) != 0 { + sum.Add(t, a, pool) + } else { + sum.Set(t) + } + } + + c.Set(sum) + sum.Put(pool) + t.Put(pool) + return c +} + +func (c *twistPoint) MakeAffine(pool *bnPool) *twistPoint { + if c.z.IsOne() { + return c + } + + zInv := newGFp2(pool).Invert(c.z, pool) + t := newGFp2(pool).Mul(c.y, zInv, pool) + zInv2 := newGFp2(pool).Square(zInv, pool) + c.y.Mul(t, zInv2, pool) + t.Mul(c.x, zInv2, pool) + c.x.Set(t) + c.z.SetOne() + c.t.SetOne() + + zInv.Put(pool) + t.Put(pool) + zInv2.Put(pool) + + return c +} + +func (c *twistPoint) Negative(a *twistPoint, pool *bnPool) { + c.x.Set(a.x) + c.y.SetZero() + c.y.Sub(c.y, a.y) + c.z.Set(a.z) + c.t.SetZero() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/cast5/cast5.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/cast5/cast5.go new file mode 100644 index 00000000..8c1b299b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/cast5/cast5.go @@ -0,0 +1,526 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cast5 implements CAST5, as defined in RFC 2144. CAST5 is a common +// OpenPGP cipher. +package cast5 + +import "errors" + +const BlockSize = 8 +const KeySize = 16 + +type Cipher struct { + masking [16]uint32 + rotate [16]uint8 +} + +func NewCipher(key []byte) (c *Cipher, err error) { + if len(key) != KeySize { + return nil, errors.New("CAST5: keys must be 16 bytes") + } + + c = new(Cipher) + c.keySchedule(key) + return +} + +func (c *Cipher) BlockSize() int { + return BlockSize +} + +func (c *Cipher) Encrypt(dst, src []byte) { + l := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + + l, r = r, l^f1(r, c.masking[0], c.rotate[0]) + l, r = r, l^f2(r, c.masking[1], c.rotate[1]) + l, r = r, l^f3(r, c.masking[2], c.rotate[2]) + l, r = r, l^f1(r, c.masking[3], c.rotate[3]) + + l, r = r, l^f2(r, c.masking[4], c.rotate[4]) + l, r = r, l^f3(r, c.masking[5], c.rotate[5]) + l, r = r, l^f1(r, c.masking[6], c.rotate[6]) + l, r = r, l^f2(r, c.masking[7], c.rotate[7]) + + l, r = r, l^f3(r, c.masking[8], c.rotate[8]) + l, r = r, l^f1(r, c.masking[9], c.rotate[9]) + l, r = r, l^f2(r, c.masking[10], c.rotate[10]) + l, r = r, l^f3(r, c.masking[11], c.rotate[11]) + + l, r = r, l^f1(r, c.masking[12], c.rotate[12]) + l, r = r, l^f2(r, c.masking[13], c.rotate[13]) + l, r = r, l^f3(r, c.masking[14], c.rotate[14]) + l, r = r, l^f1(r, c.masking[15], c.rotate[15]) + + dst[0] = uint8(r >> 24) + dst[1] = uint8(r >> 16) + dst[2] = uint8(r >> 8) + dst[3] = uint8(r) + dst[4] = uint8(l >> 24) + dst[5] = uint8(l >> 16) + dst[6] = uint8(l >> 8) + dst[7] = uint8(l) +} + +func (c *Cipher) Decrypt(dst, src []byte) { + l := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + + l, r = r, l^f1(r, c.masking[15], c.rotate[15]) + l, r = r, l^f3(r, c.masking[14], c.rotate[14]) + l, r = r, l^f2(r, c.masking[13], c.rotate[13]) + l, r = r, l^f1(r, c.masking[12], c.rotate[12]) + + l, r = r, l^f3(r, c.masking[11], c.rotate[11]) + l, r = r, l^f2(r, c.masking[10], c.rotate[10]) + l, r = r, l^f1(r, c.masking[9], c.rotate[9]) + l, r = r, l^f3(r, c.masking[8], c.rotate[8]) + + l, r = r, l^f2(r, c.masking[7], c.rotate[7]) + l, r = r, l^f1(r, c.masking[6], c.rotate[6]) + l, r = r, l^f3(r, c.masking[5], c.rotate[5]) + l, r = r, l^f2(r, c.masking[4], c.rotate[4]) + + l, r = r, l^f1(r, c.masking[3], c.rotate[3]) + l, r = r, l^f3(r, c.masking[2], c.rotate[2]) + l, r = r, l^f2(r, c.masking[1], c.rotate[1]) + l, r = r, l^f1(r, c.masking[0], c.rotate[0]) + + dst[0] = uint8(r >> 24) + dst[1] = uint8(r >> 16) + dst[2] = uint8(r >> 8) + dst[3] = uint8(r) + dst[4] = uint8(l >> 24) + dst[5] = uint8(l >> 16) + dst[6] = uint8(l >> 8) + dst[7] = uint8(l) +} + +type keyScheduleA [4][7]uint8 +type keyScheduleB [4][5]uint8 + +// keyScheduleRound contains the magic values for a round of the key schedule. +// The keyScheduleA deals with the lines like: +// z0z1z2z3 = x0x1x2x3 ^ S5[xD] ^ S6[xF] ^ S7[xC] ^ S8[xE] ^ S7[x8] +// Conceptually, both x and z are in the same array, x first. The first +// element describes which word of this array gets written to and the +// second, which word gets read. So, for the line above, it's "4, 0", because +// it's writing to the first word of z, which, being after x, is word 4, and +// reading from the first word of x: word 0. +// +// Next are the indexes into the S-boxes. Now the array is treated as bytes. So +// "xD" is 0xd. The first byte of z is written as "16 + 0", just to be clear +// that it's z that we're indexing. +// +// keyScheduleB deals with lines like: +// K1 = S5[z8] ^ S6[z9] ^ S7[z7] ^ S8[z6] ^ S5[z2] +// "K1" is ignored because key words are always written in order. So the five +// elements are the S-box indexes. They use the same form as in keyScheduleA, +// above. + +type keyScheduleRound struct{} +type keySchedule []keyScheduleRound + +var schedule = []struct { + a keyScheduleA + b keyScheduleB +}{ + { + keyScheduleA{ + {4, 0, 0xd, 0xf, 0xc, 0xe, 0x8}, + {5, 2, 16 + 0, 16 + 2, 16 + 1, 16 + 3, 0xa}, + {6, 3, 16 + 7, 16 + 6, 16 + 5, 16 + 4, 9}, + {7, 1, 16 + 0xa, 16 + 9, 16 + 0xb, 16 + 8, 0xb}, + }, + keyScheduleB{ + {16 + 8, 16 + 9, 16 + 7, 16 + 6, 16 + 2}, + {16 + 0xa, 16 + 0xb, 16 + 5, 16 + 4, 16 + 6}, + {16 + 0xc, 16 + 0xd, 16 + 3, 16 + 2, 16 + 9}, + {16 + 0xe, 16 + 0xf, 16 + 1, 16 + 0, 16 + 0xc}, + }, + }, + { + keyScheduleA{ + {0, 6, 16 + 5, 16 + 7, 16 + 4, 16 + 6, 16 + 0}, + {1, 4, 0, 2, 1, 3, 16 + 2}, + {2, 5, 7, 6, 5, 4, 16 + 1}, + {3, 7, 0xa, 9, 0xb, 8, 16 + 3}, + }, + keyScheduleB{ + {3, 2, 0xc, 0xd, 8}, + {1, 0, 0xe, 0xf, 0xd}, + {7, 6, 8, 9, 3}, + {5, 4, 0xa, 0xb, 7}, + }, + }, + { + keyScheduleA{ + {4, 0, 0xd, 0xf, 0xc, 0xe, 8}, + {5, 2, 16 + 0, 16 + 2, 16 + 1, 16 + 3, 0xa}, + {6, 3, 16 + 7, 16 + 6, 16 + 5, 16 + 4, 9}, + {7, 1, 16 + 0xa, 16 + 9, 16 + 0xb, 16 + 8, 0xb}, + }, + keyScheduleB{ + {16 + 3, 16 + 2, 16 + 0xc, 16 + 0xd, 16 + 9}, + {16 + 1, 16 + 0, 16 + 0xe, 16 + 0xf, 16 + 0xc}, + {16 + 7, 16 + 6, 16 + 8, 16 + 9, 16 + 2}, + {16 + 5, 16 + 4, 16 + 0xa, 16 + 0xb, 16 + 6}, + }, + }, + { + keyScheduleA{ + {0, 6, 16 + 5, 16 + 7, 16 + 4, 16 + 6, 16 + 0}, + {1, 4, 0, 2, 1, 3, 16 + 2}, + {2, 5, 7, 6, 5, 4, 16 + 1}, + {3, 7, 0xa, 9, 0xb, 8, 16 + 3}, + }, + keyScheduleB{ + {8, 9, 7, 6, 3}, + {0xa, 0xb, 5, 4, 7}, + {0xc, 0xd, 3, 2, 8}, + {0xe, 0xf, 1, 0, 0xd}, + }, + }, +} + +func (c *Cipher) keySchedule(in []byte) { + var t [8]uint32 + var k [32]uint32 + + for i := 0; i < 4; i++ { + j := i * 4 + t[i] = uint32(in[j])<<24 | uint32(in[j+1])<<16 | uint32(in[j+2])<<8 | uint32(in[j+3]) + } + + x := []byte{6, 7, 4, 5} + ki := 0 + + for half := 0; half < 2; half++ { + for _, round := range schedule { + for j := 0; j < 4; j++ { + var a [7]uint8 + copy(a[:], round.a[j][:]) + w := t[a[1]] + w ^= sBox[4][(t[a[2]>>2]>>(24-8*(a[2]&3)))&0xff] + w ^= sBox[5][(t[a[3]>>2]>>(24-8*(a[3]&3)))&0xff] + w ^= sBox[6][(t[a[4]>>2]>>(24-8*(a[4]&3)))&0xff] + w ^= sBox[7][(t[a[5]>>2]>>(24-8*(a[5]&3)))&0xff] + w ^= sBox[x[j]][(t[a[6]>>2]>>(24-8*(a[6]&3)))&0xff] + t[a[0]] = w + } + + for j := 0; j < 4; j++ { + var b [5]uint8 + copy(b[:], round.b[j][:]) + w := sBox[4][(t[b[0]>>2]>>(24-8*(b[0]&3)))&0xff] + w ^= sBox[5][(t[b[1]>>2]>>(24-8*(b[1]&3)))&0xff] + w ^= sBox[6][(t[b[2]>>2]>>(24-8*(b[2]&3)))&0xff] + w ^= sBox[7][(t[b[3]>>2]>>(24-8*(b[3]&3)))&0xff] + w ^= sBox[4+j][(t[b[4]>>2]>>(24-8*(b[4]&3)))&0xff] + k[ki] = w + ki++ + } + } + } + + for i := 0; i < 16; i++ { + c.masking[i] = k[i] + c.rotate[i] = uint8(k[16+i] & 0x1f) + } +} + +// These are the three 'f' functions. See RFC 2144, section 2.2. +func f1(d, m uint32, r uint8) uint32 { + t := m + d + I := (t << r) | (t >> (32 - r)) + return ((sBox[0][I>>24] ^ sBox[1][(I>>16)&0xff]) - sBox[2][(I>>8)&0xff]) + sBox[3][I&0xff] +} + +func f2(d, m uint32, r uint8) uint32 { + t := m ^ d + I := (t << r) | (t >> (32 - r)) + return ((sBox[0][I>>24] - sBox[1][(I>>16)&0xff]) + sBox[2][(I>>8)&0xff]) ^ sBox[3][I&0xff] +} + +func f3(d, m uint32, r uint8) uint32 { + t := m - d + I := (t << r) | (t >> (32 - r)) + return ((sBox[0][I>>24] + sBox[1][(I>>16)&0xff]) ^ sBox[2][(I>>8)&0xff]) - sBox[3][I&0xff] +} + +var sBox = [8][256]uint32{ + { + 0x30fb40d4, 0x9fa0ff0b, 0x6beccd2f, 0x3f258c7a, 0x1e213f2f, 0x9c004dd3, 0x6003e540, 0xcf9fc949, + 0xbfd4af27, 0x88bbbdb5, 0xe2034090, 0x98d09675, 0x6e63a0e0, 0x15c361d2, 0xc2e7661d, 0x22d4ff8e, + 0x28683b6f, 0xc07fd059, 0xff2379c8, 0x775f50e2, 0x43c340d3, 0xdf2f8656, 0x887ca41a, 0xa2d2bd2d, + 0xa1c9e0d6, 0x346c4819, 0x61b76d87, 0x22540f2f, 0x2abe32e1, 0xaa54166b, 0x22568e3a, 0xa2d341d0, + 0x66db40c8, 0xa784392f, 0x004dff2f, 0x2db9d2de, 0x97943fac, 0x4a97c1d8, 0x527644b7, 0xb5f437a7, + 0xb82cbaef, 0xd751d159, 0x6ff7f0ed, 0x5a097a1f, 0x827b68d0, 0x90ecf52e, 0x22b0c054, 0xbc8e5935, + 0x4b6d2f7f, 0x50bb64a2, 0xd2664910, 0xbee5812d, 0xb7332290, 0xe93b159f, 0xb48ee411, 0x4bff345d, + 0xfd45c240, 0xad31973f, 0xc4f6d02e, 0x55fc8165, 0xd5b1caad, 0xa1ac2dae, 0xa2d4b76d, 0xc19b0c50, + 0x882240f2, 0x0c6e4f38, 0xa4e4bfd7, 0x4f5ba272, 0x564c1d2f, 0xc59c5319, 0xb949e354, 0xb04669fe, + 0xb1b6ab8a, 0xc71358dd, 0x6385c545, 0x110f935d, 0x57538ad5, 0x6a390493, 0xe63d37e0, 0x2a54f6b3, + 0x3a787d5f, 0x6276a0b5, 0x19a6fcdf, 0x7a42206a, 0x29f9d4d5, 0xf61b1891, 0xbb72275e, 0xaa508167, + 0x38901091, 0xc6b505eb, 0x84c7cb8c, 0x2ad75a0f, 0x874a1427, 0xa2d1936b, 0x2ad286af, 0xaa56d291, + 0xd7894360, 0x425c750d, 0x93b39e26, 0x187184c9, 0x6c00b32d, 0x73e2bb14, 0xa0bebc3c, 0x54623779, + 0x64459eab, 0x3f328b82, 0x7718cf82, 0x59a2cea6, 0x04ee002e, 0x89fe78e6, 0x3fab0950, 0x325ff6c2, + 0x81383f05, 0x6963c5c8, 0x76cb5ad6, 0xd49974c9, 0xca180dcf, 0x380782d5, 0xc7fa5cf6, 0x8ac31511, + 0x35e79e13, 0x47da91d0, 0xf40f9086, 0xa7e2419e, 0x31366241, 0x051ef495, 0xaa573b04, 0x4a805d8d, + 0x548300d0, 0x00322a3c, 0xbf64cddf, 0xba57a68e, 0x75c6372b, 0x50afd341, 0xa7c13275, 0x915a0bf5, + 0x6b54bfab, 0x2b0b1426, 0xab4cc9d7, 0x449ccd82, 0xf7fbf265, 0xab85c5f3, 0x1b55db94, 0xaad4e324, + 0xcfa4bd3f, 0x2deaa3e2, 0x9e204d02, 0xc8bd25ac, 0xeadf55b3, 0xd5bd9e98, 0xe31231b2, 0x2ad5ad6c, + 0x954329de, 0xadbe4528, 0xd8710f69, 0xaa51c90f, 0xaa786bf6, 0x22513f1e, 0xaa51a79b, 0x2ad344cc, + 0x7b5a41f0, 0xd37cfbad, 0x1b069505, 0x41ece491, 0xb4c332e6, 0x032268d4, 0xc9600acc, 0xce387e6d, + 0xbf6bb16c, 0x6a70fb78, 0x0d03d9c9, 0xd4df39de, 0xe01063da, 0x4736f464, 0x5ad328d8, 0xb347cc96, + 0x75bb0fc3, 0x98511bfb, 0x4ffbcc35, 0xb58bcf6a, 0xe11f0abc, 0xbfc5fe4a, 0xa70aec10, 0xac39570a, + 0x3f04442f, 0x6188b153, 0xe0397a2e, 0x5727cb79, 0x9ceb418f, 0x1cacd68d, 0x2ad37c96, 0x0175cb9d, + 0xc69dff09, 0xc75b65f0, 0xd9db40d8, 0xec0e7779, 0x4744ead4, 0xb11c3274, 0xdd24cb9e, 0x7e1c54bd, + 0xf01144f9, 0xd2240eb1, 0x9675b3fd, 0xa3ac3755, 0xd47c27af, 0x51c85f4d, 0x56907596, 0xa5bb15e6, + 0x580304f0, 0xca042cf1, 0x011a37ea, 0x8dbfaadb, 0x35ba3e4a, 0x3526ffa0, 0xc37b4d09, 0xbc306ed9, + 0x98a52666, 0x5648f725, 0xff5e569d, 0x0ced63d0, 0x7c63b2cf, 0x700b45e1, 0xd5ea50f1, 0x85a92872, + 0xaf1fbda7, 0xd4234870, 0xa7870bf3, 0x2d3b4d79, 0x42e04198, 0x0cd0ede7, 0x26470db8, 0xf881814c, + 0x474d6ad7, 0x7c0c5e5c, 0xd1231959, 0x381b7298, 0xf5d2f4db, 0xab838653, 0x6e2f1e23, 0x83719c9e, + 0xbd91e046, 0x9a56456e, 0xdc39200c, 0x20c8c571, 0x962bda1c, 0xe1e696ff, 0xb141ab08, 0x7cca89b9, + 0x1a69e783, 0x02cc4843, 0xa2f7c579, 0x429ef47d, 0x427b169c, 0x5ac9f049, 0xdd8f0f00, 0x5c8165bf, + }, + { + 0x1f201094, 0xef0ba75b, 0x69e3cf7e, 0x393f4380, 0xfe61cf7a, 0xeec5207a, 0x55889c94, 0x72fc0651, + 0xada7ef79, 0x4e1d7235, 0xd55a63ce, 0xde0436ba, 0x99c430ef, 0x5f0c0794, 0x18dcdb7d, 0xa1d6eff3, + 0xa0b52f7b, 0x59e83605, 0xee15b094, 0xe9ffd909, 0xdc440086, 0xef944459, 0xba83ccb3, 0xe0c3cdfb, + 0xd1da4181, 0x3b092ab1, 0xf997f1c1, 0xa5e6cf7b, 0x01420ddb, 0xe4e7ef5b, 0x25a1ff41, 0xe180f806, + 0x1fc41080, 0x179bee7a, 0xd37ac6a9, 0xfe5830a4, 0x98de8b7f, 0x77e83f4e, 0x79929269, 0x24fa9f7b, + 0xe113c85b, 0xacc40083, 0xd7503525, 0xf7ea615f, 0x62143154, 0x0d554b63, 0x5d681121, 0xc866c359, + 0x3d63cf73, 0xcee234c0, 0xd4d87e87, 0x5c672b21, 0x071f6181, 0x39f7627f, 0x361e3084, 0xe4eb573b, + 0x602f64a4, 0xd63acd9c, 0x1bbc4635, 0x9e81032d, 0x2701f50c, 0x99847ab4, 0xa0e3df79, 0xba6cf38c, + 0x10843094, 0x2537a95e, 0xf46f6ffe, 0xa1ff3b1f, 0x208cfb6a, 0x8f458c74, 0xd9e0a227, 0x4ec73a34, + 0xfc884f69, 0x3e4de8df, 0xef0e0088, 0x3559648d, 0x8a45388c, 0x1d804366, 0x721d9bfd, 0xa58684bb, + 0xe8256333, 0x844e8212, 0x128d8098, 0xfed33fb4, 0xce280ae1, 0x27e19ba5, 0xd5a6c252, 0xe49754bd, + 0xc5d655dd, 0xeb667064, 0x77840b4d, 0xa1b6a801, 0x84db26a9, 0xe0b56714, 0x21f043b7, 0xe5d05860, + 0x54f03084, 0x066ff472, 0xa31aa153, 0xdadc4755, 0xb5625dbf, 0x68561be6, 0x83ca6b94, 0x2d6ed23b, + 0xeccf01db, 0xa6d3d0ba, 0xb6803d5c, 0xaf77a709, 0x33b4a34c, 0x397bc8d6, 0x5ee22b95, 0x5f0e5304, + 0x81ed6f61, 0x20e74364, 0xb45e1378, 0xde18639b, 0x881ca122, 0xb96726d1, 0x8049a7e8, 0x22b7da7b, + 0x5e552d25, 0x5272d237, 0x79d2951c, 0xc60d894c, 0x488cb402, 0x1ba4fe5b, 0xa4b09f6b, 0x1ca815cf, + 0xa20c3005, 0x8871df63, 0xb9de2fcb, 0x0cc6c9e9, 0x0beeff53, 0xe3214517, 0xb4542835, 0x9f63293c, + 0xee41e729, 0x6e1d2d7c, 0x50045286, 0x1e6685f3, 0xf33401c6, 0x30a22c95, 0x31a70850, 0x60930f13, + 0x73f98417, 0xa1269859, 0xec645c44, 0x52c877a9, 0xcdff33a6, 0xa02b1741, 0x7cbad9a2, 0x2180036f, + 0x50d99c08, 0xcb3f4861, 0xc26bd765, 0x64a3f6ab, 0x80342676, 0x25a75e7b, 0xe4e6d1fc, 0x20c710e6, + 0xcdf0b680, 0x17844d3b, 0x31eef84d, 0x7e0824e4, 0x2ccb49eb, 0x846a3bae, 0x8ff77888, 0xee5d60f6, + 0x7af75673, 0x2fdd5cdb, 0xa11631c1, 0x30f66f43, 0xb3faec54, 0x157fd7fa, 0xef8579cc, 0xd152de58, + 0xdb2ffd5e, 0x8f32ce19, 0x306af97a, 0x02f03ef8, 0x99319ad5, 0xc242fa0f, 0xa7e3ebb0, 0xc68e4906, + 0xb8da230c, 0x80823028, 0xdcdef3c8, 0xd35fb171, 0x088a1bc8, 0xbec0c560, 0x61a3c9e8, 0xbca8f54d, + 0xc72feffa, 0x22822e99, 0x82c570b4, 0xd8d94e89, 0x8b1c34bc, 0x301e16e6, 0x273be979, 0xb0ffeaa6, + 0x61d9b8c6, 0x00b24869, 0xb7ffce3f, 0x08dc283b, 0x43daf65a, 0xf7e19798, 0x7619b72f, 0x8f1c9ba4, + 0xdc8637a0, 0x16a7d3b1, 0x9fc393b7, 0xa7136eeb, 0xc6bcc63e, 0x1a513742, 0xef6828bc, 0x520365d6, + 0x2d6a77ab, 0x3527ed4b, 0x821fd216, 0x095c6e2e, 0xdb92f2fb, 0x5eea29cb, 0x145892f5, 0x91584f7f, + 0x5483697b, 0x2667a8cc, 0x85196048, 0x8c4bacea, 0x833860d4, 0x0d23e0f9, 0x6c387e8a, 0x0ae6d249, + 0xb284600c, 0xd835731d, 0xdcb1c647, 0xac4c56ea, 0x3ebd81b3, 0x230eabb0, 0x6438bc87, 0xf0b5b1fa, + 0x8f5ea2b3, 0xfc184642, 0x0a036b7a, 0x4fb089bd, 0x649da589, 0xa345415e, 0x5c038323, 0x3e5d3bb9, + 0x43d79572, 0x7e6dd07c, 0x06dfdf1e, 0x6c6cc4ef, 0x7160a539, 0x73bfbe70, 0x83877605, 0x4523ecf1, + }, + { + 0x8defc240, 0x25fa5d9f, 0xeb903dbf, 0xe810c907, 0x47607fff, 0x369fe44b, 0x8c1fc644, 0xaececa90, + 0xbeb1f9bf, 0xeefbcaea, 0xe8cf1950, 0x51df07ae, 0x920e8806, 0xf0ad0548, 0xe13c8d83, 0x927010d5, + 0x11107d9f, 0x07647db9, 0xb2e3e4d4, 0x3d4f285e, 0xb9afa820, 0xfade82e0, 0xa067268b, 0x8272792e, + 0x553fb2c0, 0x489ae22b, 0xd4ef9794, 0x125e3fbc, 0x21fffcee, 0x825b1bfd, 0x9255c5ed, 0x1257a240, + 0x4e1a8302, 0xbae07fff, 0x528246e7, 0x8e57140e, 0x3373f7bf, 0x8c9f8188, 0xa6fc4ee8, 0xc982b5a5, + 0xa8c01db7, 0x579fc264, 0x67094f31, 0xf2bd3f5f, 0x40fff7c1, 0x1fb78dfc, 0x8e6bd2c1, 0x437be59b, + 0x99b03dbf, 0xb5dbc64b, 0x638dc0e6, 0x55819d99, 0xa197c81c, 0x4a012d6e, 0xc5884a28, 0xccc36f71, + 0xb843c213, 0x6c0743f1, 0x8309893c, 0x0feddd5f, 0x2f7fe850, 0xd7c07f7e, 0x02507fbf, 0x5afb9a04, + 0xa747d2d0, 0x1651192e, 0xaf70bf3e, 0x58c31380, 0x5f98302e, 0x727cc3c4, 0x0a0fb402, 0x0f7fef82, + 0x8c96fdad, 0x5d2c2aae, 0x8ee99a49, 0x50da88b8, 0x8427f4a0, 0x1eac5790, 0x796fb449, 0x8252dc15, + 0xefbd7d9b, 0xa672597d, 0xada840d8, 0x45f54504, 0xfa5d7403, 0xe83ec305, 0x4f91751a, 0x925669c2, + 0x23efe941, 0xa903f12e, 0x60270df2, 0x0276e4b6, 0x94fd6574, 0x927985b2, 0x8276dbcb, 0x02778176, + 0xf8af918d, 0x4e48f79e, 0x8f616ddf, 0xe29d840e, 0x842f7d83, 0x340ce5c8, 0x96bbb682, 0x93b4b148, + 0xef303cab, 0x984faf28, 0x779faf9b, 0x92dc560d, 0x224d1e20, 0x8437aa88, 0x7d29dc96, 0x2756d3dc, + 0x8b907cee, 0xb51fd240, 0xe7c07ce3, 0xe566b4a1, 0xc3e9615e, 0x3cf8209d, 0x6094d1e3, 0xcd9ca341, + 0x5c76460e, 0x00ea983b, 0xd4d67881, 0xfd47572c, 0xf76cedd9, 0xbda8229c, 0x127dadaa, 0x438a074e, + 0x1f97c090, 0x081bdb8a, 0x93a07ebe, 0xb938ca15, 0x97b03cff, 0x3dc2c0f8, 0x8d1ab2ec, 0x64380e51, + 0x68cc7bfb, 0xd90f2788, 0x12490181, 0x5de5ffd4, 0xdd7ef86a, 0x76a2e214, 0xb9a40368, 0x925d958f, + 0x4b39fffa, 0xba39aee9, 0xa4ffd30b, 0xfaf7933b, 0x6d498623, 0x193cbcfa, 0x27627545, 0x825cf47a, + 0x61bd8ba0, 0xd11e42d1, 0xcead04f4, 0x127ea392, 0x10428db7, 0x8272a972, 0x9270c4a8, 0x127de50b, + 0x285ba1c8, 0x3c62f44f, 0x35c0eaa5, 0xe805d231, 0x428929fb, 0xb4fcdf82, 0x4fb66a53, 0x0e7dc15b, + 0x1f081fab, 0x108618ae, 0xfcfd086d, 0xf9ff2889, 0x694bcc11, 0x236a5cae, 0x12deca4d, 0x2c3f8cc5, + 0xd2d02dfe, 0xf8ef5896, 0xe4cf52da, 0x95155b67, 0x494a488c, 0xb9b6a80c, 0x5c8f82bc, 0x89d36b45, + 0x3a609437, 0xec00c9a9, 0x44715253, 0x0a874b49, 0xd773bc40, 0x7c34671c, 0x02717ef6, 0x4feb5536, + 0xa2d02fff, 0xd2bf60c4, 0xd43f03c0, 0x50b4ef6d, 0x07478cd1, 0x006e1888, 0xa2e53f55, 0xb9e6d4bc, + 0xa2048016, 0x97573833, 0xd7207d67, 0xde0f8f3d, 0x72f87b33, 0xabcc4f33, 0x7688c55d, 0x7b00a6b0, + 0x947b0001, 0x570075d2, 0xf9bb88f8, 0x8942019e, 0x4264a5ff, 0x856302e0, 0x72dbd92b, 0xee971b69, + 0x6ea22fde, 0x5f08ae2b, 0xaf7a616d, 0xe5c98767, 0xcf1febd2, 0x61efc8c2, 0xf1ac2571, 0xcc8239c2, + 0x67214cb8, 0xb1e583d1, 0xb7dc3e62, 0x7f10bdce, 0xf90a5c38, 0x0ff0443d, 0x606e6dc6, 0x60543a49, + 0x5727c148, 0x2be98a1d, 0x8ab41738, 0x20e1be24, 0xaf96da0f, 0x68458425, 0x99833be5, 0x600d457d, + 0x282f9350, 0x8334b362, 0xd91d1120, 0x2b6d8da0, 0x642b1e31, 0x9c305a00, 0x52bce688, 0x1b03588a, + 0xf7baefd5, 0x4142ed9c, 0xa4315c11, 0x83323ec5, 0xdfef4636, 0xa133c501, 0xe9d3531c, 0xee353783, + }, + { + 0x9db30420, 0x1fb6e9de, 0xa7be7bef, 0xd273a298, 0x4a4f7bdb, 0x64ad8c57, 0x85510443, 0xfa020ed1, + 0x7e287aff, 0xe60fb663, 0x095f35a1, 0x79ebf120, 0xfd059d43, 0x6497b7b1, 0xf3641f63, 0x241e4adf, + 0x28147f5f, 0x4fa2b8cd, 0xc9430040, 0x0cc32220, 0xfdd30b30, 0xc0a5374f, 0x1d2d00d9, 0x24147b15, + 0xee4d111a, 0x0fca5167, 0x71ff904c, 0x2d195ffe, 0x1a05645f, 0x0c13fefe, 0x081b08ca, 0x05170121, + 0x80530100, 0xe83e5efe, 0xac9af4f8, 0x7fe72701, 0xd2b8ee5f, 0x06df4261, 0xbb9e9b8a, 0x7293ea25, + 0xce84ffdf, 0xf5718801, 0x3dd64b04, 0xa26f263b, 0x7ed48400, 0x547eebe6, 0x446d4ca0, 0x6cf3d6f5, + 0x2649abdf, 0xaea0c7f5, 0x36338cc1, 0x503f7e93, 0xd3772061, 0x11b638e1, 0x72500e03, 0xf80eb2bb, + 0xabe0502e, 0xec8d77de, 0x57971e81, 0xe14f6746, 0xc9335400, 0x6920318f, 0x081dbb99, 0xffc304a5, + 0x4d351805, 0x7f3d5ce3, 0xa6c866c6, 0x5d5bcca9, 0xdaec6fea, 0x9f926f91, 0x9f46222f, 0x3991467d, + 0xa5bf6d8e, 0x1143c44f, 0x43958302, 0xd0214eeb, 0x022083b8, 0x3fb6180c, 0x18f8931e, 0x281658e6, + 0x26486e3e, 0x8bd78a70, 0x7477e4c1, 0xb506e07c, 0xf32d0a25, 0x79098b02, 0xe4eabb81, 0x28123b23, + 0x69dead38, 0x1574ca16, 0xdf871b62, 0x211c40b7, 0xa51a9ef9, 0x0014377b, 0x041e8ac8, 0x09114003, + 0xbd59e4d2, 0xe3d156d5, 0x4fe876d5, 0x2f91a340, 0x557be8de, 0x00eae4a7, 0x0ce5c2ec, 0x4db4bba6, + 0xe756bdff, 0xdd3369ac, 0xec17b035, 0x06572327, 0x99afc8b0, 0x56c8c391, 0x6b65811c, 0x5e146119, + 0x6e85cb75, 0xbe07c002, 0xc2325577, 0x893ff4ec, 0x5bbfc92d, 0xd0ec3b25, 0xb7801ab7, 0x8d6d3b24, + 0x20c763ef, 0xc366a5fc, 0x9c382880, 0x0ace3205, 0xaac9548a, 0xeca1d7c7, 0x041afa32, 0x1d16625a, + 0x6701902c, 0x9b757a54, 0x31d477f7, 0x9126b031, 0x36cc6fdb, 0xc70b8b46, 0xd9e66a48, 0x56e55a79, + 0x026a4ceb, 0x52437eff, 0x2f8f76b4, 0x0df980a5, 0x8674cde3, 0xedda04eb, 0x17a9be04, 0x2c18f4df, + 0xb7747f9d, 0xab2af7b4, 0xefc34d20, 0x2e096b7c, 0x1741a254, 0xe5b6a035, 0x213d42f6, 0x2c1c7c26, + 0x61c2f50f, 0x6552daf9, 0xd2c231f8, 0x25130f69, 0xd8167fa2, 0x0418f2c8, 0x001a96a6, 0x0d1526ab, + 0x63315c21, 0x5e0a72ec, 0x49bafefd, 0x187908d9, 0x8d0dbd86, 0x311170a7, 0x3e9b640c, 0xcc3e10d7, + 0xd5cad3b6, 0x0caec388, 0xf73001e1, 0x6c728aff, 0x71eae2a1, 0x1f9af36e, 0xcfcbd12f, 0xc1de8417, + 0xac07be6b, 0xcb44a1d8, 0x8b9b0f56, 0x013988c3, 0xb1c52fca, 0xb4be31cd, 0xd8782806, 0x12a3a4e2, + 0x6f7de532, 0x58fd7eb6, 0xd01ee900, 0x24adffc2, 0xf4990fc5, 0x9711aac5, 0x001d7b95, 0x82e5e7d2, + 0x109873f6, 0x00613096, 0xc32d9521, 0xada121ff, 0x29908415, 0x7fbb977f, 0xaf9eb3db, 0x29c9ed2a, + 0x5ce2a465, 0xa730f32c, 0xd0aa3fe8, 0x8a5cc091, 0xd49e2ce7, 0x0ce454a9, 0xd60acd86, 0x015f1919, + 0x77079103, 0xdea03af6, 0x78a8565e, 0xdee356df, 0x21f05cbe, 0x8b75e387, 0xb3c50651, 0xb8a5c3ef, + 0xd8eeb6d2, 0xe523be77, 0xc2154529, 0x2f69efdf, 0xafe67afb, 0xf470c4b2, 0xf3e0eb5b, 0xd6cc9876, + 0x39e4460c, 0x1fda8538, 0x1987832f, 0xca007367, 0xa99144f8, 0x296b299e, 0x492fc295, 0x9266beab, + 0xb5676e69, 0x9bd3ddda, 0xdf7e052f, 0xdb25701c, 0x1b5e51ee, 0xf65324e6, 0x6afce36c, 0x0316cc04, + 0x8644213e, 0xb7dc59d0, 0x7965291f, 0xccd6fd43, 0x41823979, 0x932bcdf6, 0xb657c34d, 0x4edfd282, + 0x7ae5290c, 0x3cb9536b, 0x851e20fe, 0x9833557e, 0x13ecf0b0, 0xd3ffb372, 0x3f85c5c1, 0x0aef7ed2, + }, + { + 0x7ec90c04, 0x2c6e74b9, 0x9b0e66df, 0xa6337911, 0xb86a7fff, 0x1dd358f5, 0x44dd9d44, 0x1731167f, + 0x08fbf1fa, 0xe7f511cc, 0xd2051b00, 0x735aba00, 0x2ab722d8, 0x386381cb, 0xacf6243a, 0x69befd7a, + 0xe6a2e77f, 0xf0c720cd, 0xc4494816, 0xccf5c180, 0x38851640, 0x15b0a848, 0xe68b18cb, 0x4caadeff, + 0x5f480a01, 0x0412b2aa, 0x259814fc, 0x41d0efe2, 0x4e40b48d, 0x248eb6fb, 0x8dba1cfe, 0x41a99b02, + 0x1a550a04, 0xba8f65cb, 0x7251f4e7, 0x95a51725, 0xc106ecd7, 0x97a5980a, 0xc539b9aa, 0x4d79fe6a, + 0xf2f3f763, 0x68af8040, 0xed0c9e56, 0x11b4958b, 0xe1eb5a88, 0x8709e6b0, 0xd7e07156, 0x4e29fea7, + 0x6366e52d, 0x02d1c000, 0xc4ac8e05, 0x9377f571, 0x0c05372a, 0x578535f2, 0x2261be02, 0xd642a0c9, + 0xdf13a280, 0x74b55bd2, 0x682199c0, 0xd421e5ec, 0x53fb3ce8, 0xc8adedb3, 0x28a87fc9, 0x3d959981, + 0x5c1ff900, 0xfe38d399, 0x0c4eff0b, 0x062407ea, 0xaa2f4fb1, 0x4fb96976, 0x90c79505, 0xb0a8a774, + 0xef55a1ff, 0xe59ca2c2, 0xa6b62d27, 0xe66a4263, 0xdf65001f, 0x0ec50966, 0xdfdd55bc, 0x29de0655, + 0x911e739a, 0x17af8975, 0x32c7911c, 0x89f89468, 0x0d01e980, 0x524755f4, 0x03b63cc9, 0x0cc844b2, + 0xbcf3f0aa, 0x87ac36e9, 0xe53a7426, 0x01b3d82b, 0x1a9e7449, 0x64ee2d7e, 0xcddbb1da, 0x01c94910, + 0xb868bf80, 0x0d26f3fd, 0x9342ede7, 0x04a5c284, 0x636737b6, 0x50f5b616, 0xf24766e3, 0x8eca36c1, + 0x136e05db, 0xfef18391, 0xfb887a37, 0xd6e7f7d4, 0xc7fb7dc9, 0x3063fcdf, 0xb6f589de, 0xec2941da, + 0x26e46695, 0xb7566419, 0xf654efc5, 0xd08d58b7, 0x48925401, 0xc1bacb7f, 0xe5ff550f, 0xb6083049, + 0x5bb5d0e8, 0x87d72e5a, 0xab6a6ee1, 0x223a66ce, 0xc62bf3cd, 0x9e0885f9, 0x68cb3e47, 0x086c010f, + 0xa21de820, 0xd18b69de, 0xf3f65777, 0xfa02c3f6, 0x407edac3, 0xcbb3d550, 0x1793084d, 0xb0d70eba, + 0x0ab378d5, 0xd951fb0c, 0xded7da56, 0x4124bbe4, 0x94ca0b56, 0x0f5755d1, 0xe0e1e56e, 0x6184b5be, + 0x580a249f, 0x94f74bc0, 0xe327888e, 0x9f7b5561, 0xc3dc0280, 0x05687715, 0x646c6bd7, 0x44904db3, + 0x66b4f0a3, 0xc0f1648a, 0x697ed5af, 0x49e92ff6, 0x309e374f, 0x2cb6356a, 0x85808573, 0x4991f840, + 0x76f0ae02, 0x083be84d, 0x28421c9a, 0x44489406, 0x736e4cb8, 0xc1092910, 0x8bc95fc6, 0x7d869cf4, + 0x134f616f, 0x2e77118d, 0xb31b2be1, 0xaa90b472, 0x3ca5d717, 0x7d161bba, 0x9cad9010, 0xaf462ba2, + 0x9fe459d2, 0x45d34559, 0xd9f2da13, 0xdbc65487, 0xf3e4f94e, 0x176d486f, 0x097c13ea, 0x631da5c7, + 0x445f7382, 0x175683f4, 0xcdc66a97, 0x70be0288, 0xb3cdcf72, 0x6e5dd2f3, 0x20936079, 0x459b80a5, + 0xbe60e2db, 0xa9c23101, 0xeba5315c, 0x224e42f2, 0x1c5c1572, 0xf6721b2c, 0x1ad2fff3, 0x8c25404e, + 0x324ed72f, 0x4067b7fd, 0x0523138e, 0x5ca3bc78, 0xdc0fd66e, 0x75922283, 0x784d6b17, 0x58ebb16e, + 0x44094f85, 0x3f481d87, 0xfcfeae7b, 0x77b5ff76, 0x8c2302bf, 0xaaf47556, 0x5f46b02a, 0x2b092801, + 0x3d38f5f7, 0x0ca81f36, 0x52af4a8a, 0x66d5e7c0, 0xdf3b0874, 0x95055110, 0x1b5ad7a8, 0xf61ed5ad, + 0x6cf6e479, 0x20758184, 0xd0cefa65, 0x88f7be58, 0x4a046826, 0x0ff6f8f3, 0xa09c7f70, 0x5346aba0, + 0x5ce96c28, 0xe176eda3, 0x6bac307f, 0x376829d2, 0x85360fa9, 0x17e3fe2a, 0x24b79767, 0xf5a96b20, + 0xd6cd2595, 0x68ff1ebf, 0x7555442c, 0xf19f06be, 0xf9e0659a, 0xeeb9491d, 0x34010718, 0xbb30cab8, + 0xe822fe15, 0x88570983, 0x750e6249, 0xda627e55, 0x5e76ffa8, 0xb1534546, 0x6d47de08, 0xefe9e7d4, + }, + { + 0xf6fa8f9d, 0x2cac6ce1, 0x4ca34867, 0xe2337f7c, 0x95db08e7, 0x016843b4, 0xeced5cbc, 0x325553ac, + 0xbf9f0960, 0xdfa1e2ed, 0x83f0579d, 0x63ed86b9, 0x1ab6a6b8, 0xde5ebe39, 0xf38ff732, 0x8989b138, + 0x33f14961, 0xc01937bd, 0xf506c6da, 0xe4625e7e, 0xa308ea99, 0x4e23e33c, 0x79cbd7cc, 0x48a14367, + 0xa3149619, 0xfec94bd5, 0xa114174a, 0xeaa01866, 0xa084db2d, 0x09a8486f, 0xa888614a, 0x2900af98, + 0x01665991, 0xe1992863, 0xc8f30c60, 0x2e78ef3c, 0xd0d51932, 0xcf0fec14, 0xf7ca07d2, 0xd0a82072, + 0xfd41197e, 0x9305a6b0, 0xe86be3da, 0x74bed3cd, 0x372da53c, 0x4c7f4448, 0xdab5d440, 0x6dba0ec3, + 0x083919a7, 0x9fbaeed9, 0x49dbcfb0, 0x4e670c53, 0x5c3d9c01, 0x64bdb941, 0x2c0e636a, 0xba7dd9cd, + 0xea6f7388, 0xe70bc762, 0x35f29adb, 0x5c4cdd8d, 0xf0d48d8c, 0xb88153e2, 0x08a19866, 0x1ae2eac8, + 0x284caf89, 0xaa928223, 0x9334be53, 0x3b3a21bf, 0x16434be3, 0x9aea3906, 0xefe8c36e, 0xf890cdd9, + 0x80226dae, 0xc340a4a3, 0xdf7e9c09, 0xa694a807, 0x5b7c5ecc, 0x221db3a6, 0x9a69a02f, 0x68818a54, + 0xceb2296f, 0x53c0843a, 0xfe893655, 0x25bfe68a, 0xb4628abc, 0xcf222ebf, 0x25ac6f48, 0xa9a99387, + 0x53bddb65, 0xe76ffbe7, 0xe967fd78, 0x0ba93563, 0x8e342bc1, 0xe8a11be9, 0x4980740d, 0xc8087dfc, + 0x8de4bf99, 0xa11101a0, 0x7fd37975, 0xda5a26c0, 0xe81f994f, 0x9528cd89, 0xfd339fed, 0xb87834bf, + 0x5f04456d, 0x22258698, 0xc9c4c83b, 0x2dc156be, 0x4f628daa, 0x57f55ec5, 0xe2220abe, 0xd2916ebf, + 0x4ec75b95, 0x24f2c3c0, 0x42d15d99, 0xcd0d7fa0, 0x7b6e27ff, 0xa8dc8af0, 0x7345c106, 0xf41e232f, + 0x35162386, 0xe6ea8926, 0x3333b094, 0x157ec6f2, 0x372b74af, 0x692573e4, 0xe9a9d848, 0xf3160289, + 0x3a62ef1d, 0xa787e238, 0xf3a5f676, 0x74364853, 0x20951063, 0x4576698d, 0xb6fad407, 0x592af950, + 0x36f73523, 0x4cfb6e87, 0x7da4cec0, 0x6c152daa, 0xcb0396a8, 0xc50dfe5d, 0xfcd707ab, 0x0921c42f, + 0x89dff0bb, 0x5fe2be78, 0x448f4f33, 0x754613c9, 0x2b05d08d, 0x48b9d585, 0xdc049441, 0xc8098f9b, + 0x7dede786, 0xc39a3373, 0x42410005, 0x6a091751, 0x0ef3c8a6, 0x890072d6, 0x28207682, 0xa9a9f7be, + 0xbf32679d, 0xd45b5b75, 0xb353fd00, 0xcbb0e358, 0x830f220a, 0x1f8fb214, 0xd372cf08, 0xcc3c4a13, + 0x8cf63166, 0x061c87be, 0x88c98f88, 0x6062e397, 0x47cf8e7a, 0xb6c85283, 0x3cc2acfb, 0x3fc06976, + 0x4e8f0252, 0x64d8314d, 0xda3870e3, 0x1e665459, 0xc10908f0, 0x513021a5, 0x6c5b68b7, 0x822f8aa0, + 0x3007cd3e, 0x74719eef, 0xdc872681, 0x073340d4, 0x7e432fd9, 0x0c5ec241, 0x8809286c, 0xf592d891, + 0x08a930f6, 0x957ef305, 0xb7fbffbd, 0xc266e96f, 0x6fe4ac98, 0xb173ecc0, 0xbc60b42a, 0x953498da, + 0xfba1ae12, 0x2d4bd736, 0x0f25faab, 0xa4f3fceb, 0xe2969123, 0x257f0c3d, 0x9348af49, 0x361400bc, + 0xe8816f4a, 0x3814f200, 0xa3f94043, 0x9c7a54c2, 0xbc704f57, 0xda41e7f9, 0xc25ad33a, 0x54f4a084, + 0xb17f5505, 0x59357cbe, 0xedbd15c8, 0x7f97c5ab, 0xba5ac7b5, 0xb6f6deaf, 0x3a479c3a, 0x5302da25, + 0x653d7e6a, 0x54268d49, 0x51a477ea, 0x5017d55b, 0xd7d25d88, 0x44136c76, 0x0404a8c8, 0xb8e5a121, + 0xb81a928a, 0x60ed5869, 0x97c55b96, 0xeaec991b, 0x29935913, 0x01fdb7f1, 0x088e8dfa, 0x9ab6f6f5, + 0x3b4cbf9f, 0x4a5de3ab, 0xe6051d35, 0xa0e1d855, 0xd36b4cf1, 0xf544edeb, 0xb0e93524, 0xbebb8fbd, + 0xa2d762cf, 0x49c92f54, 0x38b5f331, 0x7128a454, 0x48392905, 0xa65b1db8, 0x851c97bd, 0xd675cf2f, + }, + { + 0x85e04019, 0x332bf567, 0x662dbfff, 0xcfc65693, 0x2a8d7f6f, 0xab9bc912, 0xde6008a1, 0x2028da1f, + 0x0227bce7, 0x4d642916, 0x18fac300, 0x50f18b82, 0x2cb2cb11, 0xb232e75c, 0x4b3695f2, 0xb28707de, + 0xa05fbcf6, 0xcd4181e9, 0xe150210c, 0xe24ef1bd, 0xb168c381, 0xfde4e789, 0x5c79b0d8, 0x1e8bfd43, + 0x4d495001, 0x38be4341, 0x913cee1d, 0x92a79c3f, 0x089766be, 0xbaeeadf4, 0x1286becf, 0xb6eacb19, + 0x2660c200, 0x7565bde4, 0x64241f7a, 0x8248dca9, 0xc3b3ad66, 0x28136086, 0x0bd8dfa8, 0x356d1cf2, + 0x107789be, 0xb3b2e9ce, 0x0502aa8f, 0x0bc0351e, 0x166bf52a, 0xeb12ff82, 0xe3486911, 0xd34d7516, + 0x4e7b3aff, 0x5f43671b, 0x9cf6e037, 0x4981ac83, 0x334266ce, 0x8c9341b7, 0xd0d854c0, 0xcb3a6c88, + 0x47bc2829, 0x4725ba37, 0xa66ad22b, 0x7ad61f1e, 0x0c5cbafa, 0x4437f107, 0xb6e79962, 0x42d2d816, + 0x0a961288, 0xe1a5c06e, 0x13749e67, 0x72fc081a, 0xb1d139f7, 0xf9583745, 0xcf19df58, 0xbec3f756, + 0xc06eba30, 0x07211b24, 0x45c28829, 0xc95e317f, 0xbc8ec511, 0x38bc46e9, 0xc6e6fa14, 0xbae8584a, + 0xad4ebc46, 0x468f508b, 0x7829435f, 0xf124183b, 0x821dba9f, 0xaff60ff4, 0xea2c4e6d, 0x16e39264, + 0x92544a8b, 0x009b4fc3, 0xaba68ced, 0x9ac96f78, 0x06a5b79a, 0xb2856e6e, 0x1aec3ca9, 0xbe838688, + 0x0e0804e9, 0x55f1be56, 0xe7e5363b, 0xb3a1f25d, 0xf7debb85, 0x61fe033c, 0x16746233, 0x3c034c28, + 0xda6d0c74, 0x79aac56c, 0x3ce4e1ad, 0x51f0c802, 0x98f8f35a, 0x1626a49f, 0xeed82b29, 0x1d382fe3, + 0x0c4fb99a, 0xbb325778, 0x3ec6d97b, 0x6e77a6a9, 0xcb658b5c, 0xd45230c7, 0x2bd1408b, 0x60c03eb7, + 0xb9068d78, 0xa33754f4, 0xf430c87d, 0xc8a71302, 0xb96d8c32, 0xebd4e7be, 0xbe8b9d2d, 0x7979fb06, + 0xe7225308, 0x8b75cf77, 0x11ef8da4, 0xe083c858, 0x8d6b786f, 0x5a6317a6, 0xfa5cf7a0, 0x5dda0033, + 0xf28ebfb0, 0xf5b9c310, 0xa0eac280, 0x08b9767a, 0xa3d9d2b0, 0x79d34217, 0x021a718d, 0x9ac6336a, + 0x2711fd60, 0x438050e3, 0x069908a8, 0x3d7fedc4, 0x826d2bef, 0x4eeb8476, 0x488dcf25, 0x36c9d566, + 0x28e74e41, 0xc2610aca, 0x3d49a9cf, 0xbae3b9df, 0xb65f8de6, 0x92aeaf64, 0x3ac7d5e6, 0x9ea80509, + 0xf22b017d, 0xa4173f70, 0xdd1e16c3, 0x15e0d7f9, 0x50b1b887, 0x2b9f4fd5, 0x625aba82, 0x6a017962, + 0x2ec01b9c, 0x15488aa9, 0xd716e740, 0x40055a2c, 0x93d29a22, 0xe32dbf9a, 0x058745b9, 0x3453dc1e, + 0xd699296e, 0x496cff6f, 0x1c9f4986, 0xdfe2ed07, 0xb87242d1, 0x19de7eae, 0x053e561a, 0x15ad6f8c, + 0x66626c1c, 0x7154c24c, 0xea082b2a, 0x93eb2939, 0x17dcb0f0, 0x58d4f2ae, 0x9ea294fb, 0x52cf564c, + 0x9883fe66, 0x2ec40581, 0x763953c3, 0x01d6692e, 0xd3a0c108, 0xa1e7160e, 0xe4f2dfa6, 0x693ed285, + 0x74904698, 0x4c2b0edd, 0x4f757656, 0x5d393378, 0xa132234f, 0x3d321c5d, 0xc3f5e194, 0x4b269301, + 0xc79f022f, 0x3c997e7e, 0x5e4f9504, 0x3ffafbbd, 0x76f7ad0e, 0x296693f4, 0x3d1fce6f, 0xc61e45be, + 0xd3b5ab34, 0xf72bf9b7, 0x1b0434c0, 0x4e72b567, 0x5592a33d, 0xb5229301, 0xcfd2a87f, 0x60aeb767, + 0x1814386b, 0x30bcc33d, 0x38a0c07d, 0xfd1606f2, 0xc363519b, 0x589dd390, 0x5479f8e6, 0x1cb8d647, + 0x97fd61a9, 0xea7759f4, 0x2d57539d, 0x569a58cf, 0xe84e63ad, 0x462e1b78, 0x6580f87e, 0xf3817914, + 0x91da55f4, 0x40a230f3, 0xd1988f35, 0xb6e318d2, 0x3ffa50bc, 0x3d40f021, 0xc3c0bdae, 0x4958c24c, + 0x518f36b2, 0x84b1d370, 0x0fedce83, 0x878ddada, 0xf2a279c7, 0x94e01be8, 0x90716f4b, 0x954b8aa3, + }, + { + 0xe216300d, 0xbbddfffc, 0xa7ebdabd, 0x35648095, 0x7789f8b7, 0xe6c1121b, 0x0e241600, 0x052ce8b5, + 0x11a9cfb0, 0xe5952f11, 0xece7990a, 0x9386d174, 0x2a42931c, 0x76e38111, 0xb12def3a, 0x37ddddfc, + 0xde9adeb1, 0x0a0cc32c, 0xbe197029, 0x84a00940, 0xbb243a0f, 0xb4d137cf, 0xb44e79f0, 0x049eedfd, + 0x0b15a15d, 0x480d3168, 0x8bbbde5a, 0x669ded42, 0xc7ece831, 0x3f8f95e7, 0x72df191b, 0x7580330d, + 0x94074251, 0x5c7dcdfa, 0xabbe6d63, 0xaa402164, 0xb301d40a, 0x02e7d1ca, 0x53571dae, 0x7a3182a2, + 0x12a8ddec, 0xfdaa335d, 0x176f43e8, 0x71fb46d4, 0x38129022, 0xce949ad4, 0xb84769ad, 0x965bd862, + 0x82f3d055, 0x66fb9767, 0x15b80b4e, 0x1d5b47a0, 0x4cfde06f, 0xc28ec4b8, 0x57e8726e, 0x647a78fc, + 0x99865d44, 0x608bd593, 0x6c200e03, 0x39dc5ff6, 0x5d0b00a3, 0xae63aff2, 0x7e8bd632, 0x70108c0c, + 0xbbd35049, 0x2998df04, 0x980cf42a, 0x9b6df491, 0x9e7edd53, 0x06918548, 0x58cb7e07, 0x3b74ef2e, + 0x522fffb1, 0xd24708cc, 0x1c7e27cd, 0xa4eb215b, 0x3cf1d2e2, 0x19b47a38, 0x424f7618, 0x35856039, + 0x9d17dee7, 0x27eb35e6, 0xc9aff67b, 0x36baf5b8, 0x09c467cd, 0xc18910b1, 0xe11dbf7b, 0x06cd1af8, + 0x7170c608, 0x2d5e3354, 0xd4de495a, 0x64c6d006, 0xbcc0c62c, 0x3dd00db3, 0x708f8f34, 0x77d51b42, + 0x264f620f, 0x24b8d2bf, 0x15c1b79e, 0x46a52564, 0xf8d7e54e, 0x3e378160, 0x7895cda5, 0x859c15a5, + 0xe6459788, 0xc37bc75f, 0xdb07ba0c, 0x0676a3ab, 0x7f229b1e, 0x31842e7b, 0x24259fd7, 0xf8bef472, + 0x835ffcb8, 0x6df4c1f2, 0x96f5b195, 0xfd0af0fc, 0xb0fe134c, 0xe2506d3d, 0x4f9b12ea, 0xf215f225, + 0xa223736f, 0x9fb4c428, 0x25d04979, 0x34c713f8, 0xc4618187, 0xea7a6e98, 0x7cd16efc, 0x1436876c, + 0xf1544107, 0xbedeee14, 0x56e9af27, 0xa04aa441, 0x3cf7c899, 0x92ecbae6, 0xdd67016d, 0x151682eb, + 0xa842eedf, 0xfdba60b4, 0xf1907b75, 0x20e3030f, 0x24d8c29e, 0xe139673b, 0xefa63fb8, 0x71873054, + 0xb6f2cf3b, 0x9f326442, 0xcb15a4cc, 0xb01a4504, 0xf1e47d8d, 0x844a1be5, 0xbae7dfdc, 0x42cbda70, + 0xcd7dae0a, 0x57e85b7a, 0xd53f5af6, 0x20cf4d8c, 0xcea4d428, 0x79d130a4, 0x3486ebfb, 0x33d3cddc, + 0x77853b53, 0x37effcb5, 0xc5068778, 0xe580b3e6, 0x4e68b8f4, 0xc5c8b37e, 0x0d809ea2, 0x398feb7c, + 0x132a4f94, 0x43b7950e, 0x2fee7d1c, 0x223613bd, 0xdd06caa2, 0x37df932b, 0xc4248289, 0xacf3ebc3, + 0x5715f6b7, 0xef3478dd, 0xf267616f, 0xc148cbe4, 0x9052815e, 0x5e410fab, 0xb48a2465, 0x2eda7fa4, + 0xe87b40e4, 0xe98ea084, 0x5889e9e1, 0xefd390fc, 0xdd07d35b, 0xdb485694, 0x38d7e5b2, 0x57720101, + 0x730edebc, 0x5b643113, 0x94917e4f, 0x503c2fba, 0x646f1282, 0x7523d24a, 0xe0779695, 0xf9c17a8f, + 0x7a5b2121, 0xd187b896, 0x29263a4d, 0xba510cdf, 0x81f47c9f, 0xad1163ed, 0xea7b5965, 0x1a00726e, + 0x11403092, 0x00da6d77, 0x4a0cdd61, 0xad1f4603, 0x605bdfb0, 0x9eedc364, 0x22ebe6a8, 0xcee7d28a, + 0xa0e736a0, 0x5564a6b9, 0x10853209, 0xc7eb8f37, 0x2de705ca, 0x8951570f, 0xdf09822b, 0xbd691a6c, + 0xaa12e4f2, 0x87451c0f, 0xe0f6a27a, 0x3ada4819, 0x4cf1764f, 0x0d771c2b, 0x67cdb156, 0x350d8384, + 0x5938fa0f, 0x42399ef3, 0x36997b07, 0x0e84093d, 0x4aa93e61, 0x8360d87b, 0x1fa98b0c, 0x1149382c, + 0xe97625a5, 0x0614d1b7, 0x0e25244b, 0x0c768347, 0x589e8d82, 0x0d2059d1, 0xa466bb1e, 0xf8da0a82, + 0x04f19130, 0xba6e4ec0, 0x99265164, 0x1ee7230d, 0x50b2ad80, 0xeaee6801, 0x8db2a283, 0xea8bf59e, + }, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/cast5/cast5_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/cast5/cast5_test.go new file mode 100644 index 00000000..778b272a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/cast5/cast5_test.go @@ -0,0 +1,106 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cast5 + +import ( + "bytes" + "encoding/hex" + "testing" +) + +// This test vector is taken from RFC 2144, App B.1. +// Since the other two test vectors are for reduced-round variants, we can't +// use them. +var basicTests = []struct { + key, plainText, cipherText string +}{ + { + "0123456712345678234567893456789a", + "0123456789abcdef", + "238b4fe5847e44b2", + }, +} + +func TestBasic(t *testing.T) { + for i, test := range basicTests { + key, _ := hex.DecodeString(test.key) + plainText, _ := hex.DecodeString(test.plainText) + expected, _ := hex.DecodeString(test.cipherText) + + c, err := NewCipher(key) + if err != nil { + t.Errorf("#%d: failed to create Cipher: %s", i, err) + continue + } + var cipherText [BlockSize]byte + c.Encrypt(cipherText[:], plainText) + if !bytes.Equal(cipherText[:], expected) { + t.Errorf("#%d: got:%x want:%x", i, cipherText, expected) + } + + var plainTextAgain [BlockSize]byte + c.Decrypt(plainTextAgain[:], cipherText[:]) + if !bytes.Equal(plainTextAgain[:], plainText) { + t.Errorf("#%d: got:%x want:%x", i, plainTextAgain, plainText) + } + } +} + +// TestFull performs the test specified in RFC 2144, App B.2. +// However, due to the length of time taken, it's disabled here and a more +// limited version is included, below. +func TestFull(t *testing.T) { + if testing.Short() { + // This is too slow for normal testing + return + } + + a, b := iterate(1000000) + + const expectedA = "eea9d0a249fd3ba6b3436fb89d6dca92" + const expectedB = "b2c95eb00c31ad7180ac05b8e83d696e" + + if hex.EncodeToString(a) != expectedA { + t.Errorf("a: got:%x want:%s", a, expectedA) + } + if hex.EncodeToString(b) != expectedB { + t.Errorf("b: got:%x want:%s", b, expectedB) + } +} + +func iterate(iterations int) ([]byte, []byte) { + const initValueHex = "0123456712345678234567893456789a" + + initValue, _ := hex.DecodeString(initValueHex) + + var a, b [16]byte + copy(a[:], initValue) + copy(b[:], initValue) + + for i := 0; i < iterations; i++ { + c, _ := NewCipher(b[:]) + c.Encrypt(a[:8], a[:8]) + c.Encrypt(a[8:], a[8:]) + c, _ = NewCipher(a[:]) + c.Encrypt(b[:8], b[:8]) + c.Encrypt(b[8:], b[8:]) + } + + return a[:], b[:] +} + +func TestLimited(t *testing.T) { + a, b := iterate(1000) + + const expectedA = "23f73b14b02a2ad7dfb9f2c35644798d" + const expectedB = "e5bf37eff14c456a40b21ce369370a9f" + + if hex.EncodeToString(a) != expectedA { + t.Errorf("a: got:%x want:%s", a, expectedA) + } + if hex.EncodeToString(b) != expectedB { + t.Errorf("b: got:%x want:%s", b, expectedB) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/codereview.cfg b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/codereview.cfg new file mode 100644 index 00000000..43dbf3ce --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/codereview.cfg @@ -0,0 +1,2 @@ +defaultcc: golang-codereviews@googlegroups.com +contributors: http://go.googlecode.com/hg/CONTRIBUTORS diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/const_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/const_amd64.s new file mode 100644 index 00000000..cc420879 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/const_amd64.s @@ -0,0 +1,20 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +DATA ·REDMASK51(SB)/8, $0x0007FFFFFFFFFFFF +GLOBL ·REDMASK51(SB), $8 + +DATA ·_121666_213(SB)/8, $996687872 +GLOBL ·_121666_213(SB), $8 + +DATA ·_2P0(SB)/8, $0xFFFFFFFFFFFDA +GLOBL ·_2P0(SB), $8 + +DATA ·_2P1234(SB)/8, $0xFFFFFFFFFFFFE +GLOBL ·_2P1234(SB), $8 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/cswap_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/cswap_amd64.s new file mode 100644 index 00000000..16204ed6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/cswap_amd64.s @@ -0,0 +1,88 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +// func cswap(inout *[5]uint64, v uint64) +TEXT ·cswap(SB),7,$0 + MOVQ inout+0(FP),DI + MOVQ v+8(FP),SI + + CMPQ SI,$1 + MOVQ 0(DI),SI + MOVQ 80(DI),DX + MOVQ 8(DI),CX + MOVQ 88(DI),R8 + MOVQ SI,R9 + CMOVQEQ DX,SI + CMOVQEQ R9,DX + MOVQ CX,R9 + CMOVQEQ R8,CX + CMOVQEQ R9,R8 + MOVQ SI,0(DI) + MOVQ DX,80(DI) + MOVQ CX,8(DI) + MOVQ R8,88(DI) + MOVQ 16(DI),SI + MOVQ 96(DI),DX + MOVQ 24(DI),CX + MOVQ 104(DI),R8 + MOVQ SI,R9 + CMOVQEQ DX,SI + CMOVQEQ R9,DX + MOVQ CX,R9 + CMOVQEQ R8,CX + CMOVQEQ R9,R8 + MOVQ SI,16(DI) + MOVQ DX,96(DI) + MOVQ CX,24(DI) + MOVQ R8,104(DI) + MOVQ 32(DI),SI + MOVQ 112(DI),DX + MOVQ 40(DI),CX + MOVQ 120(DI),R8 + MOVQ SI,R9 + CMOVQEQ DX,SI + CMOVQEQ R9,DX + MOVQ CX,R9 + CMOVQEQ R8,CX + CMOVQEQ R9,R8 + MOVQ SI,32(DI) + MOVQ DX,112(DI) + MOVQ CX,40(DI) + MOVQ R8,120(DI) + MOVQ 48(DI),SI + MOVQ 128(DI),DX + MOVQ 56(DI),CX + MOVQ 136(DI),R8 + MOVQ SI,R9 + CMOVQEQ DX,SI + CMOVQEQ R9,DX + MOVQ CX,R9 + CMOVQEQ R8,CX + CMOVQEQ R9,R8 + MOVQ SI,48(DI) + MOVQ DX,128(DI) + MOVQ CX,56(DI) + MOVQ R8,136(DI) + MOVQ 64(DI),SI + MOVQ 144(DI),DX + MOVQ 72(DI),CX + MOVQ 152(DI),R8 + MOVQ SI,R9 + CMOVQEQ DX,SI + CMOVQEQ R9,DX + MOVQ CX,R9 + CMOVQEQ R8,CX + CMOVQEQ R9,R8 + MOVQ SI,64(DI) + MOVQ DX,144(DI) + MOVQ CX,72(DI) + MOVQ R8,152(DI) + MOVQ DI,AX + MOVQ SI,DX + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/curve25519.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/curve25519.go new file mode 100644 index 00000000..5b7b9bc9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/curve25519.go @@ -0,0 +1,841 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// We have a implementation in amd64 assembly so this code is only run on +// non-amd64 platforms. The amd64 assembly does not support gccgo. +// +build !amd64 gccgo + +package curve25519 + +// This code is a port of the public domain, "ref10" implementation of +// curve25519 from SUPERCOP 20130419 by D. J. Bernstein. + +// fieldElement represents an element of the field GF(2^255 - 19). An element +// t, entries t[0]...t[9], represents the integer t[0]+2^26 t[1]+2^51 t[2]+2^77 +// t[3]+2^102 t[4]+...+2^230 t[9]. Bounds on each t[i] vary depending on +// context. +type fieldElement [10]int32 + +func feZero(fe *fieldElement) { + for i := range fe { + fe[i] = 0 + } +} + +func feOne(fe *fieldElement) { + feZero(fe) + fe[0] = 1 +} + +func feAdd(dst, a, b *fieldElement) { + for i := range dst { + dst[i] = a[i] + b[i] + } +} + +func feSub(dst, a, b *fieldElement) { + for i := range dst { + dst[i] = a[i] - b[i] + } +} + +func feCopy(dst, src *fieldElement) { + for i := range dst { + dst[i] = src[i] + } +} + +// feCSwap replaces (f,g) with (g,f) if b == 1; replaces (f,g) with (f,g) if b == 0. +// +// Preconditions: b in {0,1}. +func feCSwap(f, g *fieldElement, b int32) { + var x fieldElement + b = -b + for i := range x { + x[i] = b & (f[i] ^ g[i]) + } + + for i := range f { + f[i] ^= x[i] + } + for i := range g { + g[i] ^= x[i] + } +} + +// load3 reads a 24-bit, little-endian value from in. +func load3(in []byte) int64 { + var r int64 + r = int64(in[0]) + r |= int64(in[1]) << 8 + r |= int64(in[2]) << 16 + return r +} + +// load4 reads a 32-bit, little-endian value from in. +func load4(in []byte) int64 { + var r int64 + r = int64(in[0]) + r |= int64(in[1]) << 8 + r |= int64(in[2]) << 16 + r |= int64(in[3]) << 24 + return r +} + +func feFromBytes(dst *fieldElement, src *[32]byte) { + h0 := load4(src[:]) + h1 := load3(src[4:]) << 6 + h2 := load3(src[7:]) << 5 + h3 := load3(src[10:]) << 3 + h4 := load3(src[13:]) << 2 + h5 := load4(src[16:]) + h6 := load3(src[20:]) << 7 + h7 := load3(src[23:]) << 5 + h8 := load3(src[26:]) << 4 + h9 := load3(src[29:]) << 2 + + var carry [10]int64 + carry[9] = (h9 + 1<<24) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + carry[1] = (h1 + 1<<24) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[3] = (h3 + 1<<24) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[5] = (h5 + 1<<24) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + carry[7] = (h7 + 1<<24) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[0] = (h0 + 1<<25) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[2] = (h2 + 1<<25) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[4] = (h4 + 1<<25) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[6] = (h6 + 1<<25) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + carry[8] = (h8 + 1<<25) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + dst[0] = int32(h0) + dst[1] = int32(h1) + dst[2] = int32(h2) + dst[3] = int32(h3) + dst[4] = int32(h4) + dst[5] = int32(h5) + dst[6] = int32(h6) + dst[7] = int32(h7) + dst[8] = int32(h8) + dst[9] = int32(h9) +} + +// feToBytes marshals h to s. +// Preconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Write p=2^255-19; q=floor(h/p). +// Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))). +// +// Proof: +// Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4. +// Also have |h-2^230 h9|<2^230 so |19 2^(-255)(h-2^230 h9)|<1/4. +// +// Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9). +// Then 0> 25 + q = (h[0] + q) >> 26 + q = (h[1] + q) >> 25 + q = (h[2] + q) >> 26 + q = (h[3] + q) >> 25 + q = (h[4] + q) >> 26 + q = (h[5] + q) >> 25 + q = (h[6] + q) >> 26 + q = (h[7] + q) >> 25 + q = (h[8] + q) >> 26 + q = (h[9] + q) >> 25 + + // Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. + h[0] += 19 * q + // Goal: Output h-2^255 q, which is between 0 and 2^255-20. + + carry[0] = h[0] >> 26 + h[1] += carry[0] + h[0] -= carry[0] << 26 + carry[1] = h[1] >> 25 + h[2] += carry[1] + h[1] -= carry[1] << 25 + carry[2] = h[2] >> 26 + h[3] += carry[2] + h[2] -= carry[2] << 26 + carry[3] = h[3] >> 25 + h[4] += carry[3] + h[3] -= carry[3] << 25 + carry[4] = h[4] >> 26 + h[5] += carry[4] + h[4] -= carry[4] << 26 + carry[5] = h[5] >> 25 + h[6] += carry[5] + h[5] -= carry[5] << 25 + carry[6] = h[6] >> 26 + h[7] += carry[6] + h[6] -= carry[6] << 26 + carry[7] = h[7] >> 25 + h[8] += carry[7] + h[7] -= carry[7] << 25 + carry[8] = h[8] >> 26 + h[9] += carry[8] + h[8] -= carry[8] << 26 + carry[9] = h[9] >> 25 + h[9] -= carry[9] << 25 + // h10 = carry9 + + // Goal: Output h[0]+...+2^255 h10-2^255 q, which is between 0 and 2^255-20. + // Have h[0]+...+2^230 h[9] between 0 and 2^255-1; + // evidently 2^255 h10-2^255 q = 0. + // Goal: Output h[0]+...+2^230 h[9]. + + s[0] = byte(h[0] >> 0) + s[1] = byte(h[0] >> 8) + s[2] = byte(h[0] >> 16) + s[3] = byte((h[0] >> 24) | (h[1] << 2)) + s[4] = byte(h[1] >> 6) + s[5] = byte(h[1] >> 14) + s[6] = byte((h[1] >> 22) | (h[2] << 3)) + s[7] = byte(h[2] >> 5) + s[8] = byte(h[2] >> 13) + s[9] = byte((h[2] >> 21) | (h[3] << 5)) + s[10] = byte(h[3] >> 3) + s[11] = byte(h[3] >> 11) + s[12] = byte((h[3] >> 19) | (h[4] << 6)) + s[13] = byte(h[4] >> 2) + s[14] = byte(h[4] >> 10) + s[15] = byte(h[4] >> 18) + s[16] = byte(h[5] >> 0) + s[17] = byte(h[5] >> 8) + s[18] = byte(h[5] >> 16) + s[19] = byte((h[5] >> 24) | (h[6] << 1)) + s[20] = byte(h[6] >> 7) + s[21] = byte(h[6] >> 15) + s[22] = byte((h[6] >> 23) | (h[7] << 3)) + s[23] = byte(h[7] >> 5) + s[24] = byte(h[7] >> 13) + s[25] = byte((h[7] >> 21) | (h[8] << 4)) + s[26] = byte(h[8] >> 4) + s[27] = byte(h[8] >> 12) + s[28] = byte((h[8] >> 20) | (h[9] << 6)) + s[29] = byte(h[9] >> 2) + s[30] = byte(h[9] >> 10) + s[31] = byte(h[9] >> 18) +} + +// feMul calculates h = f * g +// Can overlap h with f or g. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// |g| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Notes on implementation strategy: +// +// Using schoolbook multiplication. +// Karatsuba would save a little in some cost models. +// +// Most multiplications by 2 and 19 are 32-bit precomputations; +// cheaper than 64-bit postcomputations. +// +// There is one remaining multiplication by 19 in the carry chain; +// one *19 precomputation can be merged into this, +// but the resulting data flow is considerably less clean. +// +// There are 12 carries below. +// 10 of them are 2-way parallelizable and vectorizable. +// Can get away with 11 carries, but then data flow is much deeper. +// +// With tighter constraints on inputs can squeeze carries into int32. +func feMul(h, f, g *fieldElement) { + f0 := f[0] + f1 := f[1] + f2 := f[2] + f3 := f[3] + f4 := f[4] + f5 := f[5] + f6 := f[6] + f7 := f[7] + f8 := f[8] + f9 := f[9] + g0 := g[0] + g1 := g[1] + g2 := g[2] + g3 := g[3] + g4 := g[4] + g5 := g[5] + g6 := g[6] + g7 := g[7] + g8 := g[8] + g9 := g[9] + g1_19 := 19 * g1 // 1.4*2^29 + g2_19 := 19 * g2 // 1.4*2^30; still ok + g3_19 := 19 * g3 + g4_19 := 19 * g4 + g5_19 := 19 * g5 + g6_19 := 19 * g6 + g7_19 := 19 * g7 + g8_19 := 19 * g8 + g9_19 := 19 * g9 + f1_2 := 2 * f1 + f3_2 := 2 * f3 + f5_2 := 2 * f5 + f7_2 := 2 * f7 + f9_2 := 2 * f9 + f0g0 := int64(f0) * int64(g0) + f0g1 := int64(f0) * int64(g1) + f0g2 := int64(f0) * int64(g2) + f0g3 := int64(f0) * int64(g3) + f0g4 := int64(f0) * int64(g4) + f0g5 := int64(f0) * int64(g5) + f0g6 := int64(f0) * int64(g6) + f0g7 := int64(f0) * int64(g7) + f0g8 := int64(f0) * int64(g8) + f0g9 := int64(f0) * int64(g9) + f1g0 := int64(f1) * int64(g0) + f1g1_2 := int64(f1_2) * int64(g1) + f1g2 := int64(f1) * int64(g2) + f1g3_2 := int64(f1_2) * int64(g3) + f1g4 := int64(f1) * int64(g4) + f1g5_2 := int64(f1_2) * int64(g5) + f1g6 := int64(f1) * int64(g6) + f1g7_2 := int64(f1_2) * int64(g7) + f1g8 := int64(f1) * int64(g8) + f1g9_38 := int64(f1_2) * int64(g9_19) + f2g0 := int64(f2) * int64(g0) + f2g1 := int64(f2) * int64(g1) + f2g2 := int64(f2) * int64(g2) + f2g3 := int64(f2) * int64(g3) + f2g4 := int64(f2) * int64(g4) + f2g5 := int64(f2) * int64(g5) + f2g6 := int64(f2) * int64(g6) + f2g7 := int64(f2) * int64(g7) + f2g8_19 := int64(f2) * int64(g8_19) + f2g9_19 := int64(f2) * int64(g9_19) + f3g0 := int64(f3) * int64(g0) + f3g1_2 := int64(f3_2) * int64(g1) + f3g2 := int64(f3) * int64(g2) + f3g3_2 := int64(f3_2) * int64(g3) + f3g4 := int64(f3) * int64(g4) + f3g5_2 := int64(f3_2) * int64(g5) + f3g6 := int64(f3) * int64(g6) + f3g7_38 := int64(f3_2) * int64(g7_19) + f3g8_19 := int64(f3) * int64(g8_19) + f3g9_38 := int64(f3_2) * int64(g9_19) + f4g0 := int64(f4) * int64(g0) + f4g1 := int64(f4) * int64(g1) + f4g2 := int64(f4) * int64(g2) + f4g3 := int64(f4) * int64(g3) + f4g4 := int64(f4) * int64(g4) + f4g5 := int64(f4) * int64(g5) + f4g6_19 := int64(f4) * int64(g6_19) + f4g7_19 := int64(f4) * int64(g7_19) + f4g8_19 := int64(f4) * int64(g8_19) + f4g9_19 := int64(f4) * int64(g9_19) + f5g0 := int64(f5) * int64(g0) + f5g1_2 := int64(f5_2) * int64(g1) + f5g2 := int64(f5) * int64(g2) + f5g3_2 := int64(f5_2) * int64(g3) + f5g4 := int64(f5) * int64(g4) + f5g5_38 := int64(f5_2) * int64(g5_19) + f5g6_19 := int64(f5) * int64(g6_19) + f5g7_38 := int64(f5_2) * int64(g7_19) + f5g8_19 := int64(f5) * int64(g8_19) + f5g9_38 := int64(f5_2) * int64(g9_19) + f6g0 := int64(f6) * int64(g0) + f6g1 := int64(f6) * int64(g1) + f6g2 := int64(f6) * int64(g2) + f6g3 := int64(f6) * int64(g3) + f6g4_19 := int64(f6) * int64(g4_19) + f6g5_19 := int64(f6) * int64(g5_19) + f6g6_19 := int64(f6) * int64(g6_19) + f6g7_19 := int64(f6) * int64(g7_19) + f6g8_19 := int64(f6) * int64(g8_19) + f6g9_19 := int64(f6) * int64(g9_19) + f7g0 := int64(f7) * int64(g0) + f7g1_2 := int64(f7_2) * int64(g1) + f7g2 := int64(f7) * int64(g2) + f7g3_38 := int64(f7_2) * int64(g3_19) + f7g4_19 := int64(f7) * int64(g4_19) + f7g5_38 := int64(f7_2) * int64(g5_19) + f7g6_19 := int64(f7) * int64(g6_19) + f7g7_38 := int64(f7_2) * int64(g7_19) + f7g8_19 := int64(f7) * int64(g8_19) + f7g9_38 := int64(f7_2) * int64(g9_19) + f8g0 := int64(f8) * int64(g0) + f8g1 := int64(f8) * int64(g1) + f8g2_19 := int64(f8) * int64(g2_19) + f8g3_19 := int64(f8) * int64(g3_19) + f8g4_19 := int64(f8) * int64(g4_19) + f8g5_19 := int64(f8) * int64(g5_19) + f8g6_19 := int64(f8) * int64(g6_19) + f8g7_19 := int64(f8) * int64(g7_19) + f8g8_19 := int64(f8) * int64(g8_19) + f8g9_19 := int64(f8) * int64(g9_19) + f9g0 := int64(f9) * int64(g0) + f9g1_38 := int64(f9_2) * int64(g1_19) + f9g2_19 := int64(f9) * int64(g2_19) + f9g3_38 := int64(f9_2) * int64(g3_19) + f9g4_19 := int64(f9) * int64(g4_19) + f9g5_38 := int64(f9_2) * int64(g5_19) + f9g6_19 := int64(f9) * int64(g6_19) + f9g7_38 := int64(f9_2) * int64(g7_19) + f9g8_19 := int64(f9) * int64(g8_19) + f9g9_38 := int64(f9_2) * int64(g9_19) + h0 := f0g0 + f1g9_38 + f2g8_19 + f3g7_38 + f4g6_19 + f5g5_38 + f6g4_19 + f7g3_38 + f8g2_19 + f9g1_38 + h1 := f0g1 + f1g0 + f2g9_19 + f3g8_19 + f4g7_19 + f5g6_19 + f6g5_19 + f7g4_19 + f8g3_19 + f9g2_19 + h2 := f0g2 + f1g1_2 + f2g0 + f3g9_38 + f4g8_19 + f5g7_38 + f6g6_19 + f7g5_38 + f8g4_19 + f9g3_38 + h3 := f0g3 + f1g2 + f2g1 + f3g0 + f4g9_19 + f5g8_19 + f6g7_19 + f7g6_19 + f8g5_19 + f9g4_19 + h4 := f0g4 + f1g3_2 + f2g2 + f3g1_2 + f4g0 + f5g9_38 + f6g8_19 + f7g7_38 + f8g6_19 + f9g5_38 + h5 := f0g5 + f1g4 + f2g3 + f3g2 + f4g1 + f5g0 + f6g9_19 + f7g8_19 + f8g7_19 + f9g6_19 + h6 := f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 + f9g7_38 + h7 := f0g7 + f1g6 + f2g5 + f3g4 + f4g3 + f5g2 + f6g1 + f7g0 + f8g9_19 + f9g8_19 + h8 := f0g8 + f1g7_2 + f2g6 + f3g5_2 + f4g4 + f5g3_2 + f6g2 + f7g1_2 + f8g0 + f9g9_38 + h9 := f0g9 + f1g8 + f2g7 + f3g6 + f4g5 + f5g4 + f6g3 + f7g2 + f8g1 + f9g0 + var carry [10]int64 + + // |h0| <= (1.1*1.1*2^52*(1+19+19+19+19)+1.1*1.1*2^50*(38+38+38+38+38)) + // i.e. |h0| <= 1.2*2^59; narrower ranges for h2, h4, h6, h8 + // |h1| <= (1.1*1.1*2^51*(1+1+19+19+19+19+19+19+19+19)) + // i.e. |h1| <= 1.5*2^58; narrower ranges for h3, h5, h7, h9 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + // |h0| <= 2^25 + // |h4| <= 2^25 + // |h1| <= 1.51*2^58 + // |h5| <= 1.51*2^58 + + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + // |h1| <= 2^24; from now on fits into int32 + // |h5| <= 2^24; from now on fits into int32 + // |h2| <= 1.21*2^59 + // |h6| <= 1.21*2^59 + + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + // |h2| <= 2^25; from now on fits into int32 unchanged + // |h6| <= 2^25; from now on fits into int32 unchanged + // |h3| <= 1.51*2^58 + // |h7| <= 1.51*2^58 + + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + // |h3| <= 2^24; from now on fits into int32 unchanged + // |h7| <= 2^24; from now on fits into int32 unchanged + // |h4| <= 1.52*2^33 + // |h8| <= 1.52*2^33 + + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + // |h4| <= 2^25; from now on fits into int32 unchanged + // |h8| <= 2^25; from now on fits into int32 unchanged + // |h5| <= 1.01*2^24 + // |h9| <= 1.51*2^58 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + // |h9| <= 2^24; from now on fits into int32 unchanged + // |h0| <= 1.8*2^37 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + // |h0| <= 2^25; from now on fits into int32 unchanged + // |h1| <= 1.01*2^24 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feSquare calculates h = f*f. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func feSquare(h, f *fieldElement) { + f0 := f[0] + f1 := f[1] + f2 := f[2] + f3 := f[3] + f4 := f[4] + f5 := f[5] + f6 := f[6] + f7 := f[7] + f8 := f[8] + f9 := f[9] + f0_2 := 2 * f0 + f1_2 := 2 * f1 + f2_2 := 2 * f2 + f3_2 := 2 * f3 + f4_2 := 2 * f4 + f5_2 := 2 * f5 + f6_2 := 2 * f6 + f7_2 := 2 * f7 + f5_38 := 38 * f5 // 1.31*2^30 + f6_19 := 19 * f6 // 1.31*2^30 + f7_38 := 38 * f7 // 1.31*2^30 + f8_19 := 19 * f8 // 1.31*2^30 + f9_38 := 38 * f9 // 1.31*2^30 + f0f0 := int64(f0) * int64(f0) + f0f1_2 := int64(f0_2) * int64(f1) + f0f2_2 := int64(f0_2) * int64(f2) + f0f3_2 := int64(f0_2) * int64(f3) + f0f4_2 := int64(f0_2) * int64(f4) + f0f5_2 := int64(f0_2) * int64(f5) + f0f6_2 := int64(f0_2) * int64(f6) + f0f7_2 := int64(f0_2) * int64(f7) + f0f8_2 := int64(f0_2) * int64(f8) + f0f9_2 := int64(f0_2) * int64(f9) + f1f1_2 := int64(f1_2) * int64(f1) + f1f2_2 := int64(f1_2) * int64(f2) + f1f3_4 := int64(f1_2) * int64(f3_2) + f1f4_2 := int64(f1_2) * int64(f4) + f1f5_4 := int64(f1_2) * int64(f5_2) + f1f6_2 := int64(f1_2) * int64(f6) + f1f7_4 := int64(f1_2) * int64(f7_2) + f1f8_2 := int64(f1_2) * int64(f8) + f1f9_76 := int64(f1_2) * int64(f9_38) + f2f2 := int64(f2) * int64(f2) + f2f3_2 := int64(f2_2) * int64(f3) + f2f4_2 := int64(f2_2) * int64(f4) + f2f5_2 := int64(f2_2) * int64(f5) + f2f6_2 := int64(f2_2) * int64(f6) + f2f7_2 := int64(f2_2) * int64(f7) + f2f8_38 := int64(f2_2) * int64(f8_19) + f2f9_38 := int64(f2) * int64(f9_38) + f3f3_2 := int64(f3_2) * int64(f3) + f3f4_2 := int64(f3_2) * int64(f4) + f3f5_4 := int64(f3_2) * int64(f5_2) + f3f6_2 := int64(f3_2) * int64(f6) + f3f7_76 := int64(f3_2) * int64(f7_38) + f3f8_38 := int64(f3_2) * int64(f8_19) + f3f9_76 := int64(f3_2) * int64(f9_38) + f4f4 := int64(f4) * int64(f4) + f4f5_2 := int64(f4_2) * int64(f5) + f4f6_38 := int64(f4_2) * int64(f6_19) + f4f7_38 := int64(f4) * int64(f7_38) + f4f8_38 := int64(f4_2) * int64(f8_19) + f4f9_38 := int64(f4) * int64(f9_38) + f5f5_38 := int64(f5) * int64(f5_38) + f5f6_38 := int64(f5_2) * int64(f6_19) + f5f7_76 := int64(f5_2) * int64(f7_38) + f5f8_38 := int64(f5_2) * int64(f8_19) + f5f9_76 := int64(f5_2) * int64(f9_38) + f6f6_19 := int64(f6) * int64(f6_19) + f6f7_38 := int64(f6) * int64(f7_38) + f6f8_38 := int64(f6_2) * int64(f8_19) + f6f9_38 := int64(f6) * int64(f9_38) + f7f7_38 := int64(f7) * int64(f7_38) + f7f8_38 := int64(f7_2) * int64(f8_19) + f7f9_76 := int64(f7_2) * int64(f9_38) + f8f8_19 := int64(f8) * int64(f8_19) + f8f9_38 := int64(f8) * int64(f9_38) + f9f9_38 := int64(f9) * int64(f9_38) + h0 := f0f0 + f1f9_76 + f2f8_38 + f3f7_76 + f4f6_38 + f5f5_38 + h1 := f0f1_2 + f2f9_38 + f3f8_38 + f4f7_38 + f5f6_38 + h2 := f0f2_2 + f1f1_2 + f3f9_76 + f4f8_38 + f5f7_76 + f6f6_19 + h3 := f0f3_2 + f1f2_2 + f4f9_38 + f5f8_38 + f6f7_38 + h4 := f0f4_2 + f1f3_4 + f2f2 + f5f9_76 + f6f8_38 + f7f7_38 + h5 := f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38 + h6 := f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19 + h7 := f0f7_2 + f1f6_2 + f2f5_2 + f3f4_2 + f8f9_38 + h8 := f0f8_2 + f1f7_4 + f2f6_2 + f3f5_4 + f4f4 + f9f9_38 + h9 := f0f9_2 + f1f8_2 + f2f7_2 + f3f6_2 + f4f5_2 + var carry [10]int64 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feMul121666 calculates h = f * 121666. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func feMul121666(h, f *fieldElement) { + h0 := int64(f[0]) * 121666 + h1 := int64(f[1]) * 121666 + h2 := int64(f[2]) * 121666 + h3 := int64(f[3]) * 121666 + h4 := int64(f[4]) * 121666 + h5 := int64(f[5]) * 121666 + h6 := int64(f[6]) * 121666 + h7 := int64(f[7]) * 121666 + h8 := int64(f[8]) * 121666 + h9 := int64(f[9]) * 121666 + var carry [10]int64 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feInvert sets out = z^-1. +func feInvert(out, z *fieldElement) { + var t0, t1, t2, t3 fieldElement + var i int + + feSquare(&t0, z) + for i = 1; i < 1; i++ { + feSquare(&t0, &t0) + } + feSquare(&t1, &t0) + for i = 1; i < 2; i++ { + feSquare(&t1, &t1) + } + feMul(&t1, z, &t1) + feMul(&t0, &t0, &t1) + feSquare(&t2, &t0) + for i = 1; i < 1; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t1, &t2) + feSquare(&t2, &t1) + for i = 1; i < 5; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t2, &t1) + for i = 1; i < 10; i++ { + feSquare(&t2, &t2) + } + feMul(&t2, &t2, &t1) + feSquare(&t3, &t2) + for i = 1; i < 20; i++ { + feSquare(&t3, &t3) + } + feMul(&t2, &t3, &t2) + feSquare(&t2, &t2) + for i = 1; i < 10; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t2, &t1) + for i = 1; i < 50; i++ { + feSquare(&t2, &t2) + } + feMul(&t2, &t2, &t1) + feSquare(&t3, &t2) + for i = 1; i < 100; i++ { + feSquare(&t3, &t3) + } + feMul(&t2, &t3, &t2) + feSquare(&t2, &t2) + for i = 1; i < 50; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t1, &t1) + for i = 1; i < 5; i++ { + feSquare(&t1, &t1) + } + feMul(out, &t1, &t0) +} + +func scalarMult(out, in, base *[32]byte) { + var e [32]byte + + copy(e[:], in[:]) + e[0] &= 248 + e[31] &= 127 + e[31] |= 64 + + var x1, x2, z2, x3, z3, tmp0, tmp1 fieldElement + feFromBytes(&x1, base) + feOne(&x2) + feCopy(&x3, &x1) + feOne(&z3) + + swap := int32(0) + for pos := 254; pos >= 0; pos-- { + b := e[pos/8] >> uint(pos&7) + b &= 1 + swap ^= int32(b) + feCSwap(&x2, &x3, swap) + feCSwap(&z2, &z3, swap) + swap = int32(b) + + feSub(&tmp0, &x3, &z3) + feSub(&tmp1, &x2, &z2) + feAdd(&x2, &x2, &z2) + feAdd(&z2, &x3, &z3) + feMul(&z3, &tmp0, &x2) + feMul(&z2, &z2, &tmp1) + feSquare(&tmp0, &tmp1) + feSquare(&tmp1, &x2) + feAdd(&x3, &z3, &z2) + feSub(&z2, &z3, &z2) + feMul(&x2, &tmp1, &tmp0) + feSub(&tmp1, &tmp1, &tmp0) + feSquare(&z2, &z2) + feMul121666(&z3, &tmp1) + feSquare(&x3, &x3) + feAdd(&tmp0, &tmp0, &z3) + feMul(&z3, &x1, &z2) + feMul(&z2, &tmp1, &tmp0) + } + + feCSwap(&x2, &x3, swap) + feCSwap(&z2, &z3, swap) + + feInvert(&z2, &z2) + feMul(&x2, &x2, &z2) + feToBytes(out, &x2) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/curve25519_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/curve25519_test.go new file mode 100644 index 00000000..14b0ee87 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/curve25519_test.go @@ -0,0 +1,29 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package curve25519 + +import ( + "fmt" + "testing" +) + +const expectedHex = "89161fde887b2b53de549af483940106ecc114d6982daa98256de23bdf77661a" + +func TestBaseScalarMult(t *testing.T) { + var a, b [32]byte + in := &a + out := &b + a[0] = 1 + + for i := 0; i < 200; i++ { + ScalarBaseMult(out, in) + in, out = out, in + } + + result := fmt.Sprintf("%x", in[:]) + if result != expectedHex { + t.Errorf("incorrect result: got %s, want %s", result, expectedHex) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/doc.go new file mode 100644 index 00000000..f7db9c1c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/doc.go @@ -0,0 +1,23 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package curve25519 provides an implementation of scalar multiplication on +// the elliptic curve known as curve25519. See http://cr.yp.to/ecdh.html +package curve25519 + +// basePoint is the x coordinate of the generator of the curve. +var basePoint = [32]byte{9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} + +// ScalarMult sets dst to the product in*base where dst and base are the x +// coordinates of group points and all values are in little-endian form. +func ScalarMult(dst, in, base *[32]byte) { + scalarMult(dst, in, base) +} + +// ScalarBaseMult sets dst to the product in*base where dst and base are the x +// coordinates of group points, base is the standard generator and all values +// are in little-endian form. +func ScalarBaseMult(dst, in *[32]byte) { + ScalarMult(dst, in, &basePoint) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/freeze_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/freeze_amd64.s new file mode 100644 index 00000000..0b80eefe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/freeze_amd64.s @@ -0,0 +1,94 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +// func freeze(inout *[5]uint64) +TEXT ·freeze(SB),7,$96-8 + MOVQ inout+0(FP), DI + + MOVQ SP,R11 + MOVQ $31,CX + NOTQ CX + ANDQ CX,SP + ADDQ $32,SP + + MOVQ R11,0(SP) + MOVQ R12,8(SP) + MOVQ R13,16(SP) + MOVQ R14,24(SP) + MOVQ R15,32(SP) + MOVQ BX,40(SP) + MOVQ BP,48(SP) + MOVQ 0(DI),SI + MOVQ 8(DI),DX + MOVQ 16(DI),CX + MOVQ 24(DI),R8 + MOVQ 32(DI),R9 + MOVQ ·REDMASK51(SB),AX + MOVQ AX,R10 + SUBQ $18,R10 + MOVQ $3,R11 +REDUCELOOP: + MOVQ SI,R12 + SHRQ $51,R12 + ANDQ AX,SI + ADDQ R12,DX + MOVQ DX,R12 + SHRQ $51,R12 + ANDQ AX,DX + ADDQ R12,CX + MOVQ CX,R12 + SHRQ $51,R12 + ANDQ AX,CX + ADDQ R12,R8 + MOVQ R8,R12 + SHRQ $51,R12 + ANDQ AX,R8 + ADDQ R12,R9 + MOVQ R9,R12 + SHRQ $51,R12 + ANDQ AX,R9 + IMUL3Q $19,R12,R12 + ADDQ R12,SI + SUBQ $1,R11 + JA REDUCELOOP + MOVQ $1,R12 + CMPQ R10,SI + CMOVQLT R11,R12 + CMPQ AX,DX + CMOVQNE R11,R12 + CMPQ AX,CX + CMOVQNE R11,R12 + CMPQ AX,R8 + CMOVQNE R11,R12 + CMPQ AX,R9 + CMOVQNE R11,R12 + NEGQ R12 + ANDQ R12,AX + ANDQ R12,R10 + SUBQ R10,SI + SUBQ AX,DX + SUBQ AX,CX + SUBQ AX,R8 + SUBQ AX,R9 + MOVQ SI,0(DI) + MOVQ DX,8(DI) + MOVQ CX,16(DI) + MOVQ R8,24(DI) + MOVQ R9,32(DI) + MOVQ 0(SP),R11 + MOVQ 8(SP),R12 + MOVQ 16(SP),R13 + MOVQ 24(SP),R14 + MOVQ 32(SP),R15 + MOVQ 40(SP),BX + MOVQ 48(SP),BP + MOVQ R11,SP + MOVQ DI,AX + MOVQ SI,DX + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/ladderstep_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/ladderstep_amd64.s new file mode 100644 index 00000000..10bb89fe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/ladderstep_amd64.s @@ -0,0 +1,1398 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +// func ladderstep(inout *[5][5]uint64) +TEXT ·ladderstep(SB),0,$384-8 + MOVQ inout+0(FP),DI + + MOVQ SP,R11 + MOVQ $31,CX + NOTQ CX + ANDQ CX,SP + ADDQ $32,SP + + MOVQ R11,0(SP) + MOVQ R12,8(SP) + MOVQ R13,16(SP) + MOVQ R14,24(SP) + MOVQ R15,32(SP) + MOVQ BX,40(SP) + MOVQ BP,48(SP) + MOVQ 40(DI),SI + MOVQ 48(DI),DX + MOVQ 56(DI),CX + MOVQ 64(DI),R8 + MOVQ 72(DI),R9 + MOVQ SI,AX + MOVQ DX,R10 + MOVQ CX,R11 + MOVQ R8,R12 + MOVQ R9,R13 + ADDQ ·_2P0(SB),AX + ADDQ ·_2P1234(SB),R10 + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 80(DI),SI + ADDQ 88(DI),DX + ADDQ 96(DI),CX + ADDQ 104(DI),R8 + ADDQ 112(DI),R9 + SUBQ 80(DI),AX + SUBQ 88(DI),R10 + SUBQ 96(DI),R11 + SUBQ 104(DI),R12 + SUBQ 112(DI),R13 + MOVQ SI,56(SP) + MOVQ DX,64(SP) + MOVQ CX,72(SP) + MOVQ R8,80(SP) + MOVQ R9,88(SP) + MOVQ AX,96(SP) + MOVQ R10,104(SP) + MOVQ R11,112(SP) + MOVQ R12,120(SP) + MOVQ R13,128(SP) + MOVQ 96(SP),AX + MULQ 96(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 96(SP),AX + SHLQ $1,AX + MULQ 104(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 96(SP),AX + SHLQ $1,AX + MULQ 112(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 96(SP),AX + SHLQ $1,AX + MULQ 120(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 96(SP),AX + SHLQ $1,AX + MULQ 128(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 104(SP),AX + MULQ 104(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 104(SP),AX + SHLQ $1,AX + MULQ 112(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 104(SP),AX + SHLQ $1,AX + MULQ 120(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 104(SP),DX + IMUL3Q $38,DX,AX + MULQ 128(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 112(SP),AX + MULQ 112(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 112(SP),DX + IMUL3Q $38,DX,AX + MULQ 120(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 112(SP),DX + IMUL3Q $38,DX,AX + MULQ 128(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 120(SP),DX + IMUL3Q $19,DX,AX + MULQ 120(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 120(SP),DX + IMUL3Q $38,DX,AX + MULQ 128(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 128(SP),DX + IMUL3Q $19,DX,AX + MULQ 128(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,136(SP) + MOVQ R8,144(SP) + MOVQ R9,152(SP) + MOVQ AX,160(SP) + MOVQ R10,168(SP) + MOVQ 56(SP),AX + MULQ 56(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 56(SP),AX + SHLQ $1,AX + MULQ 64(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 56(SP),AX + SHLQ $1,AX + MULQ 72(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 56(SP),AX + SHLQ $1,AX + MULQ 80(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 56(SP),AX + SHLQ $1,AX + MULQ 88(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 64(SP),AX + MULQ 64(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 64(SP),AX + SHLQ $1,AX + MULQ 72(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 64(SP),AX + SHLQ $1,AX + MULQ 80(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 64(SP),DX + IMUL3Q $38,DX,AX + MULQ 88(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 72(SP),AX + MULQ 72(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 72(SP),DX + IMUL3Q $38,DX,AX + MULQ 80(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 72(SP),DX + IMUL3Q $38,DX,AX + MULQ 88(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 80(SP),DX + IMUL3Q $19,DX,AX + MULQ 80(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 80(SP),DX + IMUL3Q $38,DX,AX + MULQ 88(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 88(SP),DX + IMUL3Q $19,DX,AX + MULQ 88(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,176(SP) + MOVQ R8,184(SP) + MOVQ R9,192(SP) + MOVQ AX,200(SP) + MOVQ R10,208(SP) + MOVQ SI,SI + MOVQ R8,DX + MOVQ R9,CX + MOVQ AX,R8 + MOVQ R10,R9 + ADDQ ·_2P0(SB),SI + ADDQ ·_2P1234(SB),DX + ADDQ ·_2P1234(SB),CX + ADDQ ·_2P1234(SB),R8 + ADDQ ·_2P1234(SB),R9 + SUBQ 136(SP),SI + SUBQ 144(SP),DX + SUBQ 152(SP),CX + SUBQ 160(SP),R8 + SUBQ 168(SP),R9 + MOVQ SI,216(SP) + MOVQ DX,224(SP) + MOVQ CX,232(SP) + MOVQ R8,240(SP) + MOVQ R9,248(SP) + MOVQ 120(DI),SI + MOVQ 128(DI),DX + MOVQ 136(DI),CX + MOVQ 144(DI),R8 + MOVQ 152(DI),R9 + MOVQ SI,AX + MOVQ DX,R10 + MOVQ CX,R11 + MOVQ R8,R12 + MOVQ R9,R13 + ADDQ ·_2P0(SB),AX + ADDQ ·_2P1234(SB),R10 + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 160(DI),SI + ADDQ 168(DI),DX + ADDQ 176(DI),CX + ADDQ 184(DI),R8 + ADDQ 192(DI),R9 + SUBQ 160(DI),AX + SUBQ 168(DI),R10 + SUBQ 176(DI),R11 + SUBQ 184(DI),R12 + SUBQ 192(DI),R13 + MOVQ SI,256(SP) + MOVQ DX,264(SP) + MOVQ CX,272(SP) + MOVQ R8,280(SP) + MOVQ R9,288(SP) + MOVQ AX,296(SP) + MOVQ R10,304(SP) + MOVQ R11,312(SP) + MOVQ R12,320(SP) + MOVQ R13,328(SP) + MOVQ 280(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,336(SP) + MULQ 112(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 288(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,344(SP) + MULQ 104(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 256(SP),AX + MULQ 96(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 256(SP),AX + MULQ 104(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 256(SP),AX + MULQ 112(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 256(SP),AX + MULQ 120(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 256(SP),AX + MULQ 128(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 264(SP),AX + MULQ 96(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 264(SP),AX + MULQ 104(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 264(SP),AX + MULQ 112(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 264(SP),AX + MULQ 120(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 264(SP),DX + IMUL3Q $19,DX,AX + MULQ 128(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 272(SP),AX + MULQ 96(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 272(SP),AX + MULQ 104(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 272(SP),AX + MULQ 112(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 272(SP),DX + IMUL3Q $19,DX,AX + MULQ 120(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 272(SP),DX + IMUL3Q $19,DX,AX + MULQ 128(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 280(SP),AX + MULQ 96(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 280(SP),AX + MULQ 104(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 336(SP),AX + MULQ 120(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 336(SP),AX + MULQ 128(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 288(SP),AX + MULQ 96(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 344(SP),AX + MULQ 112(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 344(SP),AX + MULQ 120(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 344(SP),AX + MULQ 128(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,96(SP) + MOVQ R8,104(SP) + MOVQ R9,112(SP) + MOVQ AX,120(SP) + MOVQ R10,128(SP) + MOVQ 320(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,256(SP) + MULQ 72(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 328(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,264(SP) + MULQ 64(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 296(SP),AX + MULQ 56(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 296(SP),AX + MULQ 64(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 296(SP),AX + MULQ 72(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 296(SP),AX + MULQ 80(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 296(SP),AX + MULQ 88(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 304(SP),AX + MULQ 56(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 304(SP),AX + MULQ 64(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 304(SP),AX + MULQ 72(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 304(SP),AX + MULQ 80(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 304(SP),DX + IMUL3Q $19,DX,AX + MULQ 88(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 312(SP),AX + MULQ 56(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 312(SP),AX + MULQ 64(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 312(SP),AX + MULQ 72(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 312(SP),DX + IMUL3Q $19,DX,AX + MULQ 80(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 312(SP),DX + IMUL3Q $19,DX,AX + MULQ 88(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 320(SP),AX + MULQ 56(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 320(SP),AX + MULQ 64(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 256(SP),AX + MULQ 80(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 256(SP),AX + MULQ 88(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 328(SP),AX + MULQ 56(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 264(SP),AX + MULQ 72(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 264(SP),AX + MULQ 80(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 264(SP),AX + MULQ 88(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,DX + MOVQ R8,CX + MOVQ R9,R11 + MOVQ AX,R12 + MOVQ R10,R13 + ADDQ ·_2P0(SB),DX + ADDQ ·_2P1234(SB),CX + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 96(SP),SI + ADDQ 104(SP),R8 + ADDQ 112(SP),R9 + ADDQ 120(SP),AX + ADDQ 128(SP),R10 + SUBQ 96(SP),DX + SUBQ 104(SP),CX + SUBQ 112(SP),R11 + SUBQ 120(SP),R12 + SUBQ 128(SP),R13 + MOVQ SI,120(DI) + MOVQ R8,128(DI) + MOVQ R9,136(DI) + MOVQ AX,144(DI) + MOVQ R10,152(DI) + MOVQ DX,160(DI) + MOVQ CX,168(DI) + MOVQ R11,176(DI) + MOVQ R12,184(DI) + MOVQ R13,192(DI) + MOVQ 120(DI),AX + MULQ 120(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 128(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 136(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 144(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 152(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 128(DI),AX + MULQ 128(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 128(DI),AX + SHLQ $1,AX + MULQ 136(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 128(DI),AX + SHLQ $1,AX + MULQ 144(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 128(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(DI),AX + MULQ 136(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 136(DI),DX + IMUL3Q $38,DX,AX + MULQ 144(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(DI),DX + IMUL3Q $19,DX,AX + MULQ 144(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 152(DI),DX + IMUL3Q $19,DX,AX + MULQ 152(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,120(DI) + MOVQ R8,128(DI) + MOVQ R9,136(DI) + MOVQ AX,144(DI) + MOVQ R10,152(DI) + MOVQ 160(DI),AX + MULQ 160(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 168(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 176(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 184(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 192(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 168(DI),AX + MULQ 168(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 168(DI),AX + SHLQ $1,AX + MULQ 176(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 168(DI),AX + SHLQ $1,AX + MULQ 184(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 168(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),AX + MULQ 176(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 176(DI),DX + IMUL3Q $38,DX,AX + MULQ 184(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),DX + IMUL3Q $19,DX,AX + MULQ 184(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,160(DI) + MOVQ R8,168(DI) + MOVQ R9,176(DI) + MOVQ AX,184(DI) + MOVQ R10,192(DI) + MOVQ 184(DI),SI + IMUL3Q $19,SI,AX + MOVQ AX,56(SP) + MULQ 16(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 192(DI),DX + IMUL3Q $19,DX,AX + MOVQ AX,64(SP) + MULQ 8(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 160(DI),AX + MULQ 0(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 160(DI),AX + MULQ 8(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 160(DI),AX + MULQ 16(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 160(DI),AX + MULQ 24(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 160(DI),AX + MULQ 32(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 168(DI),AX + MULQ 0(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 168(DI),AX + MULQ 8(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 168(DI),AX + MULQ 16(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 168(DI),AX + MULQ 24(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 168(DI),DX + IMUL3Q $19,DX,AX + MULQ 32(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),AX + MULQ 0(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 176(DI),AX + MULQ 8(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 176(DI),AX + MULQ 16(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 176(DI),DX + IMUL3Q $19,DX,AX + MULQ 24(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),DX + IMUL3Q $19,DX,AX + MULQ 32(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),AX + MULQ 0(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 184(DI),AX + MULQ 8(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 56(SP),AX + MULQ 24(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 56(SP),AX + MULQ 32(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(DI),AX + MULQ 0(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 64(SP),AX + MULQ 16(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),AX + MULQ 24(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 64(SP),AX + MULQ 32(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,160(DI) + MOVQ R8,168(DI) + MOVQ R9,176(DI) + MOVQ AX,184(DI) + MOVQ R10,192(DI) + MOVQ 200(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,56(SP) + MULQ 152(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 208(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,64(SP) + MULQ 144(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(SP),AX + MULQ 136(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(SP),AX + MULQ 144(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 176(SP),AX + MULQ 152(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 176(SP),AX + MULQ 160(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 176(SP),AX + MULQ 168(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 184(SP),AX + MULQ 136(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(SP),AX + MULQ 144(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 184(SP),AX + MULQ 152(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 184(SP),AX + MULQ 160(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 184(SP),DX + IMUL3Q $19,DX,AX + MULQ 168(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 192(SP),AX + MULQ 136(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(SP),AX + MULQ 144(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 192(SP),AX + MULQ 152(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 192(SP),DX + IMUL3Q $19,DX,AX + MULQ 160(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 192(SP),DX + IMUL3Q $19,DX,AX + MULQ 168(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 200(SP),AX + MULQ 136(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 200(SP),AX + MULQ 144(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 56(SP),AX + MULQ 160(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 56(SP),AX + MULQ 168(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 208(SP),AX + MULQ 136(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 64(SP),AX + MULQ 152(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),AX + MULQ 160(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 64(SP),AX + MULQ 168(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,40(DI) + MOVQ R8,48(DI) + MOVQ R9,56(DI) + MOVQ AX,64(DI) + MOVQ R10,72(DI) + MOVQ 216(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + MOVQ AX,SI + MOVQ DX,CX + MOVQ 224(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,CX + MOVQ DX,R8 + MOVQ 232(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R8 + MOVQ DX,R9 + MOVQ 240(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R9 + MOVQ DX,R10 + MOVQ 248(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R10 + IMUL3Q $19,DX,DX + ADDQ DX,SI + ADDQ 136(SP),SI + ADDQ 144(SP),CX + ADDQ 152(SP),R8 + ADDQ 160(SP),R9 + ADDQ 168(SP),R10 + MOVQ SI,80(DI) + MOVQ CX,88(DI) + MOVQ R8,96(DI) + MOVQ R9,104(DI) + MOVQ R10,112(DI) + MOVQ 104(DI),SI + IMUL3Q $19,SI,AX + MOVQ AX,56(SP) + MULQ 232(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 112(DI),DX + IMUL3Q $19,DX,AX + MOVQ AX,64(SP) + MULQ 224(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 80(DI),AX + MULQ 216(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 80(DI),AX + MULQ 224(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 80(DI),AX + MULQ 232(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 80(DI),AX + MULQ 240(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 80(DI),AX + MULQ 248(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 88(DI),AX + MULQ 216(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 88(DI),AX + MULQ 224(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 88(DI),AX + MULQ 232(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 88(DI),AX + MULQ 240(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 88(DI),DX + IMUL3Q $19,DX,AX + MULQ 248(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 96(DI),AX + MULQ 216(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 96(DI),AX + MULQ 224(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 96(DI),AX + MULQ 232(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 96(DI),DX + IMUL3Q $19,DX,AX + MULQ 240(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 96(DI),DX + IMUL3Q $19,DX,AX + MULQ 248(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 104(DI),AX + MULQ 216(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 104(DI),AX + MULQ 224(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 56(SP),AX + MULQ 240(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 56(SP),AX + MULQ 248(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 112(DI),AX + MULQ 216(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 64(SP),AX + MULQ 232(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),AX + MULQ 240(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 64(SP),AX + MULQ 248(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ ·REDMASK51(SB),DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,80(DI) + MOVQ R8,88(DI) + MOVQ R9,96(DI) + MOVQ AX,104(DI) + MOVQ R10,112(DI) + MOVQ 0(SP),R11 + MOVQ 8(SP),R12 + MOVQ 16(SP),R13 + MOVQ 24(SP),R14 + MOVQ 32(SP),R15 + MOVQ 40(SP),BX + MOVQ 48(SP),BP + MOVQ R11,SP + MOVQ DI,AX + MOVQ SI,DX + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/mont25519_amd64.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/mont25519_amd64.go new file mode 100644 index 00000000..3275877b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/mont25519_amd64.go @@ -0,0 +1,240 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo + +package curve25519 + +// These functions are implemented in the .s files. The names of the functions +// in the rest of the file are also taken from the SUPERCOP sources to help +// people following along. + +//go:noescape + +func cswap(inout *[5]uint64, v uint64) + +//go:noescape + +func ladderstep(inout *[5][5]uint64) + +//go:noescape + +func freeze(inout *[5]uint64) + +//go:noescape + +func mul(dest, a, b *[5]uint64) + +//go:noescape + +func square(out, in *[5]uint64) + +// mladder uses a Montgomery ladder to calculate (xr/zr) *= s. +func mladder(xr, zr *[5]uint64, s *[32]byte) { + var work [5][5]uint64 + + work[0] = *xr + setint(&work[1], 1) + setint(&work[2], 0) + work[3] = *xr + setint(&work[4], 1) + + j := uint(6) + var prevbit byte + + for i := 31; i >= 0; i-- { + for j < 8 { + bit := ((*s)[i] >> j) & 1 + swap := bit ^ prevbit + prevbit = bit + cswap(&work[1], uint64(swap)) + ladderstep(&work) + j-- + } + j = 7 + } + + *xr = work[1] + *zr = work[2] +} + +func scalarMult(out, in, base *[32]byte) { + var e [32]byte + copy(e[:], (*in)[:]) + e[0] &= 248 + e[31] &= 127 + e[31] |= 64 + + var t, z [5]uint64 + unpack(&t, base) + mladder(&t, &z, &e) + invert(&z, &z) + mul(&t, &t, &z) + pack(out, &t) +} + +func setint(r *[5]uint64, v uint64) { + r[0] = v + r[1] = 0 + r[2] = 0 + r[3] = 0 + r[4] = 0 +} + +// unpack sets r = x where r consists of 5, 51-bit limbs in little-endian +// order. +func unpack(r *[5]uint64, x *[32]byte) { + r[0] = uint64(x[0]) | + uint64(x[1])<<8 | + uint64(x[2])<<16 | + uint64(x[3])<<24 | + uint64(x[4])<<32 | + uint64(x[5])<<40 | + uint64(x[6]&7)<<48 + + r[1] = uint64(x[6])>>3 | + uint64(x[7])<<5 | + uint64(x[8])<<13 | + uint64(x[9])<<21 | + uint64(x[10])<<29 | + uint64(x[11])<<37 | + uint64(x[12]&63)<<45 + + r[2] = uint64(x[12])>>6 | + uint64(x[13])<<2 | + uint64(x[14])<<10 | + uint64(x[15])<<18 | + uint64(x[16])<<26 | + uint64(x[17])<<34 | + uint64(x[18])<<42 | + uint64(x[19]&1)<<50 + + r[3] = uint64(x[19])>>1 | + uint64(x[20])<<7 | + uint64(x[21])<<15 | + uint64(x[22])<<23 | + uint64(x[23])<<31 | + uint64(x[24])<<39 | + uint64(x[25]&15)<<47 + + r[4] = uint64(x[25])>>4 | + uint64(x[26])<<4 | + uint64(x[27])<<12 | + uint64(x[28])<<20 | + uint64(x[29])<<28 | + uint64(x[30])<<36 | + uint64(x[31]&127)<<44 +} + +// pack sets out = x where out is the usual, little-endian form of the 5, +// 51-bit limbs in x. +func pack(out *[32]byte, x *[5]uint64) { + t := *x + freeze(&t) + + out[0] = byte(t[0]) + out[1] = byte(t[0] >> 8) + out[2] = byte(t[0] >> 16) + out[3] = byte(t[0] >> 24) + out[4] = byte(t[0] >> 32) + out[5] = byte(t[0] >> 40) + out[6] = byte(t[0] >> 48) + + out[6] ^= byte(t[1]<<3) & 0xf8 + out[7] = byte(t[1] >> 5) + out[8] = byte(t[1] >> 13) + out[9] = byte(t[1] >> 21) + out[10] = byte(t[1] >> 29) + out[11] = byte(t[1] >> 37) + out[12] = byte(t[1] >> 45) + + out[12] ^= byte(t[2]<<6) & 0xc0 + out[13] = byte(t[2] >> 2) + out[14] = byte(t[2] >> 10) + out[15] = byte(t[2] >> 18) + out[16] = byte(t[2] >> 26) + out[17] = byte(t[2] >> 34) + out[18] = byte(t[2] >> 42) + out[19] = byte(t[2] >> 50) + + out[19] ^= byte(t[3]<<1) & 0xfe + out[20] = byte(t[3] >> 7) + out[21] = byte(t[3] >> 15) + out[22] = byte(t[3] >> 23) + out[23] = byte(t[3] >> 31) + out[24] = byte(t[3] >> 39) + out[25] = byte(t[3] >> 47) + + out[25] ^= byte(t[4]<<4) & 0xf0 + out[26] = byte(t[4] >> 4) + out[27] = byte(t[4] >> 12) + out[28] = byte(t[4] >> 20) + out[29] = byte(t[4] >> 28) + out[30] = byte(t[4] >> 36) + out[31] = byte(t[4] >> 44) +} + +// invert calculates r = x^-1 mod p using Fermat's little theorem. +func invert(r *[5]uint64, x *[5]uint64) { + var z2, z9, z11, z2_5_0, z2_10_0, z2_20_0, z2_50_0, z2_100_0, t [5]uint64 + + square(&z2, x) /* 2 */ + square(&t, &z2) /* 4 */ + square(&t, &t) /* 8 */ + mul(&z9, &t, x) /* 9 */ + mul(&z11, &z9, &z2) /* 11 */ + square(&t, &z11) /* 22 */ + mul(&z2_5_0, &t, &z9) /* 2^5 - 2^0 = 31 */ + + square(&t, &z2_5_0) /* 2^6 - 2^1 */ + for i := 1; i < 5; i++ { /* 2^20 - 2^10 */ + square(&t, &t) + } + mul(&z2_10_0, &t, &z2_5_0) /* 2^10 - 2^0 */ + + square(&t, &z2_10_0) /* 2^11 - 2^1 */ + for i := 1; i < 10; i++ { /* 2^20 - 2^10 */ + square(&t, &t) + } + mul(&z2_20_0, &t, &z2_10_0) /* 2^20 - 2^0 */ + + square(&t, &z2_20_0) /* 2^21 - 2^1 */ + for i := 1; i < 20; i++ { /* 2^40 - 2^20 */ + square(&t, &t) + } + mul(&t, &t, &z2_20_0) /* 2^40 - 2^0 */ + + square(&t, &t) /* 2^41 - 2^1 */ + for i := 1; i < 10; i++ { /* 2^50 - 2^10 */ + square(&t, &t) + } + mul(&z2_50_0, &t, &z2_10_0) /* 2^50 - 2^0 */ + + square(&t, &z2_50_0) /* 2^51 - 2^1 */ + for i := 1; i < 50; i++ { /* 2^100 - 2^50 */ + square(&t, &t) + } + mul(&z2_100_0, &t, &z2_50_0) /* 2^100 - 2^0 */ + + square(&t, &z2_100_0) /* 2^101 - 2^1 */ + for i := 1; i < 100; i++ { /* 2^200 - 2^100 */ + square(&t, &t) + } + mul(&t, &t, &z2_100_0) /* 2^200 - 2^0 */ + + square(&t, &t) /* 2^201 - 2^1 */ + for i := 1; i < 50; i++ { /* 2^250 - 2^50 */ + square(&t, &t) + } + mul(&t, &t, &z2_50_0) /* 2^250 - 2^0 */ + + square(&t, &t) /* 2^251 - 2^1 */ + square(&t, &t) /* 2^252 - 2^2 */ + square(&t, &t) /* 2^253 - 2^3 */ + + square(&t, &t) /* 2^254 - 2^4 */ + + square(&t, &t) /* 2^255 - 2^5 */ + mul(r, &t, &z11) /* 2^255 - 21 */ +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/mul_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/mul_amd64.s new file mode 100644 index 00000000..5404f320 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/mul_amd64.s @@ -0,0 +1,191 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +// func mul(dest, a, b *[5]uint64) +TEXT ·mul(SB),0,$128-24 + MOVQ dest+0(FP), DI + MOVQ a+8(FP), SI + MOVQ b+16(FP), DX + + MOVQ SP,R11 + MOVQ $31,CX + NOTQ CX + ANDQ CX,SP + ADDQ $32,SP + + MOVQ R11,0(SP) + MOVQ R12,8(SP) + MOVQ R13,16(SP) + MOVQ R14,24(SP) + MOVQ R15,32(SP) + MOVQ BX,40(SP) + MOVQ BP,48(SP) + MOVQ DI,56(SP) + MOVQ DX,CX + MOVQ 24(SI),DX + IMUL3Q $19,DX,AX + MOVQ AX,64(SP) + MULQ 16(CX) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 32(SI),DX + IMUL3Q $19,DX,AX + MOVQ AX,72(SP) + MULQ 8(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SI),AX + MULQ 0(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SI),AX + MULQ 8(CX) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 0(SI),AX + MULQ 16(CX) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 0(SI),AX + MULQ 24(CX) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 0(SI),AX + MULQ 32(CX) + MOVQ AX,BX + MOVQ DX,BP + MOVQ 8(SI),AX + MULQ 0(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SI),AX + MULQ 8(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SI),AX + MULQ 16(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SI),AX + MULQ 24(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 8(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 16(SI),AX + MULQ 0(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 16(SI),AX + MULQ 8(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 16(SI),AX + MULQ 16(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 16(SI),DX + IMUL3Q $19,DX,AX + MULQ 24(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 16(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 24(SI),AX + MULQ 0(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 24(SI),AX + MULQ 8(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 64(SP),AX + MULQ 24(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 64(SP),AX + MULQ 32(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 32(SI),AX + MULQ 0(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 72(SP),AX + MULQ 16(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 72(SP),AX + MULQ 24(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 72(SP),AX + MULQ 32(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ ·REDMASK51(SB),SI + SHLQ $13,R9:R8 + ANDQ SI,R8 + SHLQ $13,R11:R10 + ANDQ SI,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ SI,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ SI,R14 + ADDQ R13,R14 + SHLQ $13,BP:BX + ANDQ SI,BX + ADDQ R15,BX + IMUL3Q $19,BP,DX + ADDQ DX,R8 + MOVQ R8,DX + SHRQ $51,DX + ADDQ R10,DX + MOVQ DX,CX + SHRQ $51,DX + ANDQ SI,R8 + ADDQ R12,DX + MOVQ DX,R9 + SHRQ $51,DX + ANDQ SI,CX + ADDQ R14,DX + MOVQ DX,AX + SHRQ $51,DX + ANDQ SI,R9 + ADDQ BX,DX + MOVQ DX,R10 + SHRQ $51,DX + ANDQ SI,AX + IMUL3Q $19,DX,DX + ADDQ DX,R8 + ANDQ SI,R10 + MOVQ R8,0(DI) + MOVQ CX,8(DI) + MOVQ R9,16(DI) + MOVQ AX,24(DI) + MOVQ R10,32(DI) + MOVQ 0(SP),R11 + MOVQ 8(SP),R12 + MOVQ 16(SP),R13 + MOVQ 24(SP),R14 + MOVQ 32(SP),R15 + MOVQ 40(SP),BX + MOVQ 48(SP),BP + MOVQ R11,SP + MOVQ DI,AX + MOVQ SI,DX + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/square_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/square_amd64.s new file mode 100644 index 00000000..cb0053fa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/curve25519/square_amd64.s @@ -0,0 +1,153 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +// func square(out, in *[5]uint64) +TEXT ·square(SB),7,$96-16 + MOVQ out+0(FP), DI + MOVQ in+8(FP), SI + + MOVQ SP,R11 + MOVQ $31,CX + NOTQ CX + ANDQ CX,SP + ADDQ $32, SP + + MOVQ R11,0(SP) + MOVQ R12,8(SP) + MOVQ R13,16(SP) + MOVQ R14,24(SP) + MOVQ R15,32(SP) + MOVQ BX,40(SP) + MOVQ BP,48(SP) + MOVQ 0(SI),AX + MULQ 0(SI) + MOVQ AX,CX + MOVQ DX,R8 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 8(SI) + MOVQ AX,R9 + MOVQ DX,R10 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 16(SI) + MOVQ AX,R11 + MOVQ DX,R12 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 24(SI) + MOVQ AX,R13 + MOVQ DX,R14 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 32(SI) + MOVQ AX,R15 + MOVQ DX,BX + MOVQ 8(SI),AX + MULQ 8(SI) + ADDQ AX,R11 + ADCQ DX,R12 + MOVQ 8(SI),AX + SHLQ $1,AX + MULQ 16(SI) + ADDQ AX,R13 + ADCQ DX,R14 + MOVQ 8(SI),AX + SHLQ $1,AX + MULQ 24(SI) + ADDQ AX,R15 + ADCQ DX,BX + MOVQ 8(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,CX + ADCQ DX,R8 + MOVQ 16(SI),AX + MULQ 16(SI) + ADDQ AX,R15 + ADCQ DX,BX + MOVQ 16(SI),DX + IMUL3Q $38,DX,AX + MULQ 24(SI) + ADDQ AX,CX + ADCQ DX,R8 + MOVQ 16(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,R9 + ADCQ DX,R10 + MOVQ 24(SI),DX + IMUL3Q $19,DX,AX + MULQ 24(SI) + ADDQ AX,R9 + ADCQ DX,R10 + MOVQ 24(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,R11 + ADCQ DX,R12 + MOVQ 32(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(SI) + ADDQ AX,R13 + ADCQ DX,R14 + MOVQ ·REDMASK51(SB),SI + SHLQ $13,R8:CX + ANDQ SI,CX + SHLQ $13,R10:R9 + ANDQ SI,R9 + ADDQ R8,R9 + SHLQ $13,R12:R11 + ANDQ SI,R11 + ADDQ R10,R11 + SHLQ $13,R14:R13 + ANDQ SI,R13 + ADDQ R12,R13 + SHLQ $13,BX:R15 + ANDQ SI,R15 + ADDQ R14,R15 + IMUL3Q $19,BX,DX + ADDQ DX,CX + MOVQ CX,DX + SHRQ $51,DX + ADDQ R9,DX + ANDQ SI,CX + MOVQ DX,R8 + SHRQ $51,DX + ADDQ R11,DX + ANDQ SI,R8 + MOVQ DX,R9 + SHRQ $51,DX + ADDQ R13,DX + ANDQ SI,R9 + MOVQ DX,AX + SHRQ $51,DX + ADDQ R15,DX + ANDQ SI,AX + MOVQ DX,R10 + SHRQ $51,DX + IMUL3Q $19,DX,DX + ADDQ DX,CX + ANDQ SI,R10 + MOVQ CX,0(DI) + MOVQ R8,8(DI) + MOVQ R9,16(DI) + MOVQ AX,24(DI) + MOVQ R10,32(DI) + MOVQ 0(SP),R11 + MOVQ 8(SP),R12 + MOVQ 16(SP),R13 + MOVQ 24(SP),R14 + MOVQ 32(SP),R15 + MOVQ 40(SP),BX + MOVQ 48(SP),BP + MOVQ R11,SP + MOVQ DI,AX + MOVQ SI,DX + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/example_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/example_test.go new file mode 100644 index 00000000..4eda6b2d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/example_test.go @@ -0,0 +1,61 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package hkdf_test + +import ( + "bytes" + "code.google.com/p/go.crypto/hkdf" + "crypto/rand" + "crypto/sha256" + "fmt" + "io" +) + +// Usage example that expands one master key into three other cryptographically +// secure keys. +func Example_usage() { + // Underlying hash function to use + hash := sha256.New + + // Cryptographically secure master key. + master := []byte{0x00, 0x01, 0x02, 0x03} // i.e. NOT this. + + // Non secret salt, optional (can be nil) + // Recommended: hash-length sized random + salt := make([]byte, hash().Size()) + n, err := io.ReadFull(rand.Reader, salt) + if n != len(salt) || err != nil { + fmt.Println("error:", err) + return + } + + // Non secret context specific info, optional (can be nil). + // Note, independent from the master key. + info := []byte{0x03, 0x14, 0x15, 0x92, 0x65} + + // Create the key derivation function + hkdf := hkdf.New(hash, master, salt, info) + + // Generate the required keys + keys := make([][]byte, 3) + for i := 0; i < len(keys); i++ { + keys[i] = make([]byte, 24) + n, err := io.ReadFull(hkdf, keys[i]) + if n != len(keys[i]) || err != nil { + fmt.Println("error:", err) + return + } + } + + // Keys should contain 192 bit random keys + for i := 1; i <= len(keys); i++ { + fmt.Printf("Key #%d: %v\n", i, !bytes.Equal(keys[i-1], make([]byte, 24))) + } + + // Output: + // Key #1: true + // Key #2: true + // Key #3: true +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/hkdf.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/hkdf.go new file mode 100644 index 00000000..b20e834d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/hkdf.go @@ -0,0 +1,77 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package hkdf implements the HMAC-based Extract-and-Expand Key Derivation +// Function (HKDF) as defined in RFC 5869. +// +// HKDF is a cryptographic key derivation function (KDF) with the goal of +// expanding limited input keying material into one or more cryptographically +// strong secret keys. +// +// RFC 5869: https://tools.ietf.org/html/rfc5869 +package hkdf + +import ( + "crypto/hmac" + "errors" + "hash" + "io" +) + +type hkdf struct { + expander hash.Hash + size int + + info []byte + counter byte + + prev []byte + cache []byte +} + +func (f *hkdf) Read(p []byte) (int, error) { + // Check whether enough data can be generated + need := len(p) + remains := len(f.cache) + int(255-f.counter+1)*f.size + if remains < need { + return 0, errors.New("hkdf: entropy limit reached") + } + // Read from the cache, if enough data is present + n := copy(p, f.cache) + p = p[n:] + + // Fill the buffer + var input []byte + for len(p) > 0 { + input = append(f.prev, f.info...) + input = append(input, f.counter) + + f.expander.Reset() + f.expander.Write(input) + f.prev = f.expander.Sum(f.prev[:0]) + f.counter++ + + // Copy the new batch into p + f.cache = f.prev + n = copy(p, f.cache) + p = p[n:] + } + // Save leftovers for next run + f.cache = f.cache[n:] + + return need, nil +} + +// New returns a new HKDF using the given hash, the secret keying material to expand +// and optional salt and info fields. +func New(hash func() hash.Hash, secret, salt, info []byte) io.Reader { + if salt == nil { + salt = make([]byte, hash().Size()) + } + extractor := hmac.New(hash, salt) + extractor.Write(secret) + prk := extractor.Sum(nil) + + return &hkdf{hmac.New(hash, prk), extractor.Size(), info, 1, nil, nil} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/hkdf_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/hkdf_test.go new file mode 100644 index 00000000..cee659bc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/hkdf/hkdf_test.go @@ -0,0 +1,370 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. +package hkdf + +import ( + "bytes" + "crypto/md5" + "crypto/sha1" + "crypto/sha256" + "crypto/sha512" + "hash" + "io" + "testing" +) + +type hkdfTest struct { + hash func() hash.Hash + master []byte + salt []byte + info []byte + out []byte +} + +var hkdfTests = []hkdfTest{ + // Tests from RFC 5869 + { + sha256.New, + []byte{ + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + }, + []byte{ + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, + }, + []byte{ + 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, + 0xf8, 0xf9, + }, + []byte{ + 0x3c, 0xb2, 0x5f, 0x25, 0xfa, 0xac, 0xd5, 0x7a, + 0x90, 0x43, 0x4f, 0x64, 0xd0, 0x36, 0x2f, 0x2a, + 0x2d, 0x2d, 0x0a, 0x90, 0xcf, 0x1a, 0x5a, 0x4c, + 0x5d, 0xb0, 0x2d, 0x56, 0xec, 0xc4, 0xc5, 0xbf, + 0x34, 0x00, 0x72, 0x08, 0xd5, 0xb8, 0x87, 0x18, + 0x58, 0x65, + }, + }, + { + sha256.New, + []byte{ + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, + 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, + 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, + 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, + 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, + 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, + 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, + }, + []byte{ + 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, + 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, + 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, + 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, + 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, + 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, + 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, + 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, + }, + []byte{ + 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, + 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, + 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, + 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, + 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, + 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, + 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, + 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, + 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, + }, + []byte{ + 0xb1, 0x1e, 0x39, 0x8d, 0xc8, 0x03, 0x27, 0xa1, + 0xc8, 0xe7, 0xf7, 0x8c, 0x59, 0x6a, 0x49, 0x34, + 0x4f, 0x01, 0x2e, 0xda, 0x2d, 0x4e, 0xfa, 0xd8, + 0xa0, 0x50, 0xcc, 0x4c, 0x19, 0xaf, 0xa9, 0x7c, + 0x59, 0x04, 0x5a, 0x99, 0xca, 0xc7, 0x82, 0x72, + 0x71, 0xcb, 0x41, 0xc6, 0x5e, 0x59, 0x0e, 0x09, + 0xda, 0x32, 0x75, 0x60, 0x0c, 0x2f, 0x09, 0xb8, + 0x36, 0x77, 0x93, 0xa9, 0xac, 0xa3, 0xdb, 0x71, + 0xcc, 0x30, 0xc5, 0x81, 0x79, 0xec, 0x3e, 0x87, + 0xc1, 0x4c, 0x01, 0xd5, 0xc1, 0xf3, 0x43, 0x4f, + 0x1d, 0x87, + }, + }, + { + sha256.New, + []byte{ + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + }, + []byte{}, + []byte{}, + []byte{ + 0x8d, 0xa4, 0xe7, 0x75, 0xa5, 0x63, 0xc1, 0x8f, + 0x71, 0x5f, 0x80, 0x2a, 0x06, 0x3c, 0x5a, 0x31, + 0xb8, 0xa1, 0x1f, 0x5c, 0x5e, 0xe1, 0x87, 0x9e, + 0xc3, 0x45, 0x4e, 0x5f, 0x3c, 0x73, 0x8d, 0x2d, + 0x9d, 0x20, 0x13, 0x95, 0xfa, 0xa4, 0xb6, 0x1a, + 0x96, 0xc8, + }, + }, + { + sha1.New, + []byte{ + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, + }, + []byte{ + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, + }, + []byte{ + 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, + 0xf8, 0xf9, + }, + []byte{ + 0x08, 0x5a, 0x01, 0xea, 0x1b, 0x10, 0xf3, 0x69, + 0x33, 0x06, 0x8b, 0x56, 0xef, 0xa5, 0xad, 0x81, + 0xa4, 0xf1, 0x4b, 0x82, 0x2f, 0x5b, 0x09, 0x15, + 0x68, 0xa9, 0xcd, 0xd4, 0xf1, 0x55, 0xfd, 0xa2, + 0xc2, 0x2e, 0x42, 0x24, 0x78, 0xd3, 0x05, 0xf3, + 0xf8, 0x96, + }, + }, + { + sha1.New, + []byte{ + 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, + 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, + 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, + 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, + 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, + 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, + 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, + 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, + }, + []byte{ + 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, + 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, + 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, + 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, + 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, + 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, + 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, + 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, + }, + []byte{ + 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, + 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, + 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, + 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, + 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, + 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, + 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, + 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, + 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, + }, + []byte{ + 0x0b, 0xd7, 0x70, 0xa7, 0x4d, 0x11, 0x60, 0xf7, + 0xc9, 0xf1, 0x2c, 0xd5, 0x91, 0x2a, 0x06, 0xeb, + 0xff, 0x6a, 0xdc, 0xae, 0x89, 0x9d, 0x92, 0x19, + 0x1f, 0xe4, 0x30, 0x56, 0x73, 0xba, 0x2f, 0xfe, + 0x8f, 0xa3, 0xf1, 0xa4, 0xe5, 0xad, 0x79, 0xf3, + 0xf3, 0x34, 0xb3, 0xb2, 0x02, 0xb2, 0x17, 0x3c, + 0x48, 0x6e, 0xa3, 0x7c, 0xe3, 0xd3, 0x97, 0xed, + 0x03, 0x4c, 0x7f, 0x9d, 0xfe, 0xb1, 0x5c, 0x5e, + 0x92, 0x73, 0x36, 0xd0, 0x44, 0x1f, 0x4c, 0x43, + 0x00, 0xe2, 0xcf, 0xf0, 0xd0, 0x90, 0x0b, 0x52, + 0xd3, 0xb4, + }, + }, + { + sha1.New, + []byte{ + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, + }, + []byte{}, + []byte{}, + []byte{ + 0x0a, 0xc1, 0xaf, 0x70, 0x02, 0xb3, 0xd7, 0x61, + 0xd1, 0xe5, 0x52, 0x98, 0xda, 0x9d, 0x05, 0x06, + 0xb9, 0xae, 0x52, 0x05, 0x72, 0x20, 0xa3, 0x06, + 0xe0, 0x7b, 0x6b, 0x87, 0xe8, 0xdf, 0x21, 0xd0, + 0xea, 0x00, 0x03, 0x3d, 0xe0, 0x39, 0x84, 0xd3, + 0x49, 0x18, + }, + }, + { + sha1.New, + []byte{ + 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, + 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, + 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, + }, + nil, + []byte{}, + []byte{ + 0x2c, 0x91, 0x11, 0x72, 0x04, 0xd7, 0x45, 0xf3, + 0x50, 0x0d, 0x63, 0x6a, 0x62, 0xf6, 0x4f, 0x0a, + 0xb3, 0xba, 0xe5, 0x48, 0xaa, 0x53, 0xd4, 0x23, + 0xb0, 0xd1, 0xf2, 0x7e, 0xbb, 0xa6, 0xf5, 0xe5, + 0x67, 0x3a, 0x08, 0x1d, 0x70, 0xcc, 0xe7, 0xac, + 0xfc, 0x48, + }, + }, +} + +func TestHKDF(t *testing.T) { + for i, tt := range hkdfTests { + hkdf := New(tt.hash, tt.master, tt.salt, tt.info) + out := make([]byte, len(tt.out)) + + n, err := io.ReadFull(hkdf, out) + if n != len(tt.out) || err != nil { + t.Errorf("test %d: not enough output bytes: %d.", i, n) + } + + if !bytes.Equal(out, tt.out) { + t.Errorf("test %d: incorrect output: have %v, need %v.", i, out, tt.out) + } + } +} + +func TestHKDFMultiRead(t *testing.T) { + for i, tt := range hkdfTests { + hkdf := New(tt.hash, tt.master, tt.salt, tt.info) + out := make([]byte, len(tt.out)) + + for b := 0; b < len(tt.out); b++ { + n, err := io.ReadFull(hkdf, out[b:b+1]) + if n != 1 || err != nil { + t.Errorf("test %d.%d: not enough output bytes: have %d, need %d .", i, b, n, len(tt.out)) + } + } + + if !bytes.Equal(out, tt.out) { + t.Errorf("test %d: incorrect output: have %v, need %v.", i, out, tt.out) + } + } +} + +func TestHKDFLimit(t *testing.T) { + hash := sha1.New + master := []byte{0x00, 0x01, 0x02, 0x03} + info := []byte{} + + hkdf := New(hash, master, nil, info) + limit := hash().Size() * 255 + out := make([]byte, limit) + + // The maximum output bytes should be extractable + n, err := io.ReadFull(hkdf, out) + if n != limit || err != nil { + t.Errorf("not enough output bytes: %d, %v.", n, err) + } + + // Reading one more should fail + n, err = io.ReadFull(hkdf, make([]byte, 1)) + if n > 0 || err == nil { + t.Errorf("key expansion overflowed: n = %d, err = %v", n, err) + } +} + +func Benchmark16ByteMD5Single(b *testing.B) { + benchmarkHKDFSingle(md5.New, 16, b) +} + +func Benchmark20ByteSHA1Single(b *testing.B) { + benchmarkHKDFSingle(sha1.New, 20, b) +} + +func Benchmark32ByteSHA256Single(b *testing.B) { + benchmarkHKDFSingle(sha256.New, 32, b) +} + +func Benchmark64ByteSHA512Single(b *testing.B) { + benchmarkHKDFSingle(sha512.New, 64, b) +} + +func Benchmark8ByteMD5Stream(b *testing.B) { + benchmarkHKDFStream(md5.New, 8, b) +} + +func Benchmark16ByteMD5Stream(b *testing.B) { + benchmarkHKDFStream(md5.New, 16, b) +} + +func Benchmark8ByteSHA1Stream(b *testing.B) { + benchmarkHKDFStream(sha1.New, 8, b) +} + +func Benchmark20ByteSHA1Stream(b *testing.B) { + benchmarkHKDFStream(sha1.New, 20, b) +} + +func Benchmark8ByteSHA256Stream(b *testing.B) { + benchmarkHKDFStream(sha256.New, 8, b) +} + +func Benchmark32ByteSHA256Stream(b *testing.B) { + benchmarkHKDFStream(sha256.New, 32, b) +} + +func Benchmark8ByteSHA512Stream(b *testing.B) { + benchmarkHKDFStream(sha512.New, 8, b) +} + +func Benchmark64ByteSHA512Stream(b *testing.B) { + benchmarkHKDFStream(sha512.New, 64, b) +} + +func benchmarkHKDFSingle(hasher func() hash.Hash, block int, b *testing.B) { + master := []byte{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07} + salt := []byte{0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17} + info := []byte{0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27} + out := make([]byte, block) + + b.SetBytes(int64(block)) + b.ResetTimer() + + for i := 0; i < b.N; i++ { + hkdf := New(hasher, master, salt, info) + io.ReadFull(hkdf, out) + } +} + +func benchmarkHKDFStream(hasher func() hash.Hash, block int, b *testing.B) { + master := []byte{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07} + salt := []byte{0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17} + info := []byte{0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27} + out := make([]byte, block) + + b.SetBytes(int64(block)) + b.ResetTimer() + + hkdf := New(hasher, master, salt, info) + for i := 0; i < b.N; i++ { + _, err := io.ReadFull(hkdf, out) + if err != nil { + hkdf = New(hasher, master, salt, info) + i-- + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4.go new file mode 100644 index 00000000..c5f7c57d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4.go @@ -0,0 +1,118 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package md4 implements the MD4 hash algorithm as defined in RFC 1320. +package md4 + +import ( + "crypto" + "hash" +) + +func init() { + crypto.RegisterHash(crypto.MD4, New) +} + +// The size of an MD4 checksum in bytes. +const Size = 16 + +// The blocksize of MD4 in bytes. +const BlockSize = 64 + +const ( + _Chunk = 64 + _Init0 = 0x67452301 + _Init1 = 0xEFCDAB89 + _Init2 = 0x98BADCFE + _Init3 = 0x10325476 +) + +// digest represents the partial evaluation of a checksum. +type digest struct { + s [4]uint32 + x [_Chunk]byte + nx int + len uint64 +} + +func (d *digest) Reset() { + d.s[0] = _Init0 + d.s[1] = _Init1 + d.s[2] = _Init2 + d.s[3] = _Init3 + d.nx = 0 + d.len = 0 +} + +// New returns a new hash.Hash computing the MD4 checksum. +func New() hash.Hash { + d := new(digest) + d.Reset() + return d +} + +func (d *digest) Size() int { return Size } + +func (d *digest) BlockSize() int { return BlockSize } + +func (d *digest) Write(p []byte) (nn int, err error) { + nn = len(p) + d.len += uint64(nn) + if d.nx > 0 { + n := len(p) + if n > _Chunk-d.nx { + n = _Chunk - d.nx + } + for i := 0; i < n; i++ { + d.x[d.nx+i] = p[i] + } + d.nx += n + if d.nx == _Chunk { + _Block(d, d.x[0:]) + d.nx = 0 + } + p = p[n:] + } + n := _Block(d, p) + p = p[n:] + if len(p) > 0 { + d.nx = copy(d.x[:], p) + } + return +} + +func (d0 *digest) Sum(in []byte) []byte { + // Make a copy of d0, so that caller can keep writing and summing. + d := new(digest) + *d = *d0 + + // Padding. Add a 1 bit and 0 bits until 56 bytes mod 64. + len := d.len + var tmp [64]byte + tmp[0] = 0x80 + if len%64 < 56 { + d.Write(tmp[0 : 56-len%64]) + } else { + d.Write(tmp[0 : 64+56-len%64]) + } + + // Length in bits. + len <<= 3 + for i := uint(0); i < 8; i++ { + tmp[i] = byte(len >> (8 * i)) + } + d.Write(tmp[0:8]) + + if d.nx != 0 { + panic("d.nx != 0") + } + + for _, s := range d.s { + in = append(in, byte(s>>0)) + in = append(in, byte(s>>8)) + in = append(in, byte(s>>16)) + in = append(in, byte(s>>24)) + } + return in +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4_test.go new file mode 100644 index 00000000..b56edd78 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4_test.go @@ -0,0 +1,71 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package md4 + +import ( + "fmt" + "io" + "testing" +) + +type md4Test struct { + out string + in string +} + +var golden = []md4Test{ + {"31d6cfe0d16ae931b73c59d7e0c089c0", ""}, + {"bde52cb31de33e46245e05fbdbd6fb24", "a"}, + {"ec388dd78999dfc7cf4632465693b6bf", "ab"}, + {"a448017aaf21d8525fc10ae87aa6729d", "abc"}, + {"41decd8f579255c5200f86a4bb3ba740", "abcd"}, + {"9803f4a34e8eb14f96adba49064a0c41", "abcde"}, + {"804e7f1c2586e50b49ac65db5b645131", "abcdef"}, + {"752f4adfe53d1da0241b5bc216d098fc", "abcdefg"}, + {"ad9daf8d49d81988590a6f0e745d15dd", "abcdefgh"}, + {"1e4e28b05464316b56402b3815ed2dfd", "abcdefghi"}, + {"dc959c6f5d6f9e04e4380777cc964b3d", "abcdefghij"}, + {"1b5701e265778898ef7de5623bbe7cc0", "Discard medicine more than two years old."}, + {"d7f087e090fe7ad4a01cb59dacc9a572", "He who has a shady past knows that nice guys finish last."}, + {"a6f8fd6df617c72837592fc3570595c9", "I wouldn't marry him with a ten foot pole."}, + {"c92a84a9526da8abc240c05d6b1a1ce0", "Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave"}, + {"f6013160c4dcb00847069fee3bb09803", "The days of the digital watch are numbered. -Tom Stoppard"}, + {"2c3bb64f50b9107ed57640fe94bec09f", "Nepal premier won't resign."}, + {"45b7d8a32c7806f2f7f897332774d6e4", "For every action there is an equal and opposite government program."}, + {"b5b4f9026b175c62d7654bdc3a1cd438", "His money is twice tainted: 'taint yours and 'taint mine."}, + {"caf44e80f2c20ce19b5ba1cab766e7bd", "There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977"}, + {"191fae6707f496aa54a6bce9f2ecf74d", "It's a tiny change to the code and not completely disgusting. - Bob Manchek"}, + {"9ddc753e7a4ccee6081cd1b45b23a834", "size: a.out: bad magic"}, + {"8d050f55b1cadb9323474564be08a521", "The major problem is with sendmail. -Mark Horton"}, + {"ad6e2587f74c3e3cc19146f6127fa2e3", "Give me a rock, paper and scissors and I will move the world. CCFestoon"}, + {"1d616d60a5fabe85589c3f1566ca7fca", "If the enemy is within range, then so are you."}, + {"aec3326a4f496a2ced65a1963f84577f", "It's well we cannot hear the screams/That we create in others' dreams."}, + {"77b4fd762d6b9245e61c50bf6ebf118b", "You remind me of a TV show, but that's all right: I watch it anyway."}, + {"e8f48c726bae5e516f6ddb1a4fe62438", "C is as portable as Stonehedge!!"}, + {"a3a84366e7219e887423b01f9be7166e", "Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley"}, + {"a6b7aa35157e984ef5d9b7f32e5fbb52", "The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction. Lewis-Randall Rule"}, + {"75661f0545955f8f9abeeb17845f3fd6", "How can you write a big system without C++? -Paul Glick"}, +} + +func TestGolden(t *testing.T) { + for i := 0; i < len(golden); i++ { + g := golden[i] + c := New() + for j := 0; j < 3; j++ { + if j < 2 { + io.WriteString(c, g.in) + } else { + io.WriteString(c, g.in[0:len(g.in)/2]) + c.Sum(nil) + io.WriteString(c, g.in[len(g.in)/2:]) + } + s := fmt.Sprintf("%x", c.Sum(nil)) + if s != g.out { + t.Fatalf("md4[%d](%s) = %s want %s", j, g.in, s, g.out) + } + c.Reset() + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4block.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4block.go new file mode 100644 index 00000000..3fed475f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/md4/md4block.go @@ -0,0 +1,89 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// MD4 block step. +// In its own file so that a faster assembly or C version +// can be substituted easily. + +package md4 + +var shift1 = []uint{3, 7, 11, 19} +var shift2 = []uint{3, 5, 9, 13} +var shift3 = []uint{3, 9, 11, 15} + +var xIndex2 = []uint{0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15} +var xIndex3 = []uint{0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15} + +func _Block(dig *digest, p []byte) int { + a := dig.s[0] + b := dig.s[1] + c := dig.s[2] + d := dig.s[3] + n := 0 + var X [16]uint32 + for len(p) >= _Chunk { + aa, bb, cc, dd := a, b, c, d + + j := 0 + for i := 0; i < 16; i++ { + X[i] = uint32(p[j]) | uint32(p[j+1])<<8 | uint32(p[j+2])<<16 | uint32(p[j+3])<<24 + j += 4 + } + + // If this needs to be made faster in the future, + // the usual trick is to unroll each of these + // loops by a factor of 4; that lets you replace + // the shift[] lookups with constants and, + // with suitable variable renaming in each + // unrolled body, delete the a, b, c, d = d, a, b, c + // (or you can let the optimizer do the renaming). + // + // The index variables are uint so that % by a power + // of two can be optimized easily by a compiler. + + // Round 1. + for i := uint(0); i < 16; i++ { + x := i + s := shift1[i%4] + f := ((c ^ d) & b) ^ d + a += f + X[x] + a = a<>(32-s) + a, b, c, d = d, a, b, c + } + + // Round 2. + for i := uint(0); i < 16; i++ { + x := xIndex2[i] + s := shift2[i%4] + g := (b & c) | (b & d) | (c & d) + a += g + X[x] + 0x5a827999 + a = a<>(32-s) + a, b, c, d = d, a, b, c + } + + // Round 3. + for i := uint(0); i < 16; i++ { + x := xIndex3[i] + s := shift3[i%4] + h := b ^ c ^ d + a += h + X[x] + 0x6ed9eba1 + a = a<>(32-s) + a, b, c, d = d, a, b, c + } + + a += aa + b += bb + c += cc + d += dd + + p = p[_Chunk:] + n += _Chunk + } + + dig.s[0] = a + dig.s[1] = b + dig.s[2] = c + dig.s[3] = d + return n +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/box/box.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/box/box.go new file mode 100644 index 00000000..a1e58e92 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/box/box.go @@ -0,0 +1,85 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package box authenticates and encrypts messages using public-key cryptography. + +Box uses Curve25519, XSalsa20 and Poly1305 to encrypt and authenticate +messages. The length of messages is not hidden. + +It is the caller's responsibility to ensure the uniqueness of nonces—for +example, by using nonce 1 for the first message, nonce 2 for the second +message, etc. Nonces are long enough that randomly generated nonces have +negligible risk of collision. + +This package is interoperable with NaCl: http://nacl.cr.yp.to/box.html. +*/ +package box + +import ( + "code.google.com/p/go.crypto/curve25519" + "code.google.com/p/go.crypto/nacl/secretbox" + "code.google.com/p/go.crypto/salsa20/salsa" + "io" +) + +// Overhead is the number of bytes of overhead when boxing a message. +const Overhead = secretbox.Overhead + +// GenerateKey generates a new public/private key pair suitable for use with +// Seal and Open. +func GenerateKey(rand io.Reader) (publicKey, privateKey *[32]byte, err error) { + publicKey = new([32]byte) + privateKey = new([32]byte) + _, err = io.ReadFull(rand, privateKey[:]) + if err != nil { + publicKey = nil + privateKey = nil + return + } + + curve25519.ScalarBaseMult(publicKey, privateKey) + return +} + +var zeros [16]byte + +// Precompute calculates the shared key between peersPublicKey and privateKey +// and writes it to sharedKey. The shared key can be used with +// OpenAfterPrecomputation and SealAfterPrecomputation to speed up processing +// when using the same pair of keys repeatedly. +func Precompute(sharedKey, peersPublicKey, privateKey *[32]byte) { + curve25519.ScalarMult(sharedKey, privateKey, peersPublicKey) + salsa.HSalsa20(sharedKey, &zeros, sharedKey, &salsa.Sigma) +} + +// Seal appends an encrypted and authenticated copy of message to out, which +// will be Overhead bytes longer than the original and must not overlap. The +// nonce must be unique for each distinct message for a given pair of keys. +func Seal(out, message []byte, nonce *[24]byte, peersPublicKey, privateKey *[32]byte) []byte { + var sharedKey [32]byte + Precompute(&sharedKey, peersPublicKey, privateKey) + return secretbox.Seal(out, message, nonce, &sharedKey) +} + +// SealAfterPrecomputation performs the same actions as Seal, but takes a +// shared key as generated by Precompute. +func SealAfterPrecomputation(out, message []byte, nonce *[24]byte, sharedKey *[32]byte) []byte { + return secretbox.Seal(out, message, nonce, sharedKey) +} + +// Open authenticates and decrypts a box produced by Seal and appends the +// message to out, which must not overlap box. The output will be Overhead +// bytes smaller than box. +func Open(out, box []byte, nonce *[24]byte, peersPublicKey, privateKey *[32]byte) ([]byte, bool) { + var sharedKey [32]byte + Precompute(&sharedKey, peersPublicKey, privateKey) + return secretbox.Open(out, box, nonce, &sharedKey) +} + +// OpenAfterPrecomputation performs the same actions as Open, but takes a +// shared key as generated by Precompute. +func OpenAfterPrecomputation(out, box []byte, nonce *[24]byte, sharedKey *[32]byte) ([]byte, bool) { + return secretbox.Open(out, box, nonce, sharedKey) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/box/box_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/box/box_test.go new file mode 100644 index 00000000..6cf2e15b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/box/box_test.go @@ -0,0 +1,78 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package box + +import ( + "bytes" + "crypto/rand" + "encoding/hex" + "testing" + + "code.google.com/p/go.crypto/curve25519" +) + +func TestSealOpen(t *testing.T) { + publicKey1, privateKey1, _ := GenerateKey(rand.Reader) + publicKey2, privateKey2, _ := GenerateKey(rand.Reader) + + if *privateKey1 == *privateKey2 { + t.Fatalf("private keys are equal!") + } + if *publicKey1 == *publicKey2 { + t.Fatalf("public keys are equal!") + } + message := []byte("test message") + var nonce [24]byte + + box := Seal(nil, message, &nonce, publicKey1, privateKey2) + opened, ok := Open(nil, box, &nonce, publicKey2, privateKey1) + if !ok { + t.Fatalf("failed to open box") + } + + if !bytes.Equal(opened, message) { + t.Fatalf("got %x, want %x", opened, message) + } + + for i := range box { + box[i] ^= 0x40 + _, ok := Open(nil, box, &nonce, publicKey2, privateKey1) + if ok { + t.Fatalf("opened box with byte %d corrupted", i) + } + box[i] ^= 0x40 + } +} + +func TestBox(t *testing.T) { + var privateKey1, privateKey2 [32]byte + for i := range privateKey1[:] { + privateKey1[i] = 1 + } + for i := range privateKey2[:] { + privateKey2[i] = 2 + } + + var publicKey1 [32]byte + curve25519.ScalarBaseMult(&publicKey1, &privateKey1) + var message [64]byte + for i := range message[:] { + message[i] = 3 + } + + var nonce [24]byte + for i := range nonce[:] { + nonce[i] = 4 + } + + box := Seal(nil, message[:], &nonce, &publicKey1, &privateKey2) + + // expected was generated using the C implementation of NaCl. + expected, _ := hex.DecodeString("78ea30b19d2341ebbdba54180f821eec265cf86312549bea8a37652a8bb94f07b78a73ed1708085e6ddd0e943bbdeb8755079a37eb31d86163ce241164a47629c0539f330b4914cd135b3855bc2a2dfc") + + if !bytes.Equal(box, expected) { + t.Fatalf("box didn't match, got\n%x\n, expected\n%x", box, expected) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/secretbox/secretbox.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/secretbox/secretbox.go new file mode 100644 index 00000000..ad64c24e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/secretbox/secretbox.go @@ -0,0 +1,149 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package secretbox encrypts and authenticates small messages. + +Secretbox uses XSalsa20 and Poly1305 to encrypt and authenticate messages with +secret-key cryptography. The length of messages is not hidden. + +It is the caller's responsibility to ensure the uniqueness of nonces—for +example, by using nonce 1 for the first message, nonce 2 for the second +message, etc. Nonces are long enough that randomly generated nonces have +negligible risk of collision. + +This package is interoperable with NaCl: http://nacl.cr.yp.to/secretbox.html. +*/ +package secretbox + +import ( + "code.google.com/p/go.crypto/poly1305" + "code.google.com/p/go.crypto/salsa20/salsa" +) + +// Overhead is the number of bytes of overhead when boxing a message. +const Overhead = poly1305.TagSize + +// setup produces a sub-key and Salsa20 counter given a nonce and key. +func setup(subKey *[32]byte, counter *[16]byte, nonce *[24]byte, key *[32]byte) { + // We use XSalsa20 for encryption so first we need to generate a + // key and nonce with HSalsa20. + var hNonce [16]byte + copy(hNonce[:], nonce[:]) + salsa.HSalsa20(subKey, &hNonce, key, &salsa.Sigma) + + // The final 8 bytes of the original nonce form the new nonce. + copy(counter[:], nonce[16:]) +} + +// sliceForAppend takes a slice and a requested number of bytes. It returns a +// slice with the contents of the given slice followed by that many bytes and a +// second slice that aliases into it and contains only the extra bytes. If the +// original slice has sufficient capacity then no allocation is performed. +func sliceForAppend(in []byte, n int) (head, tail []byte) { + if total := len(in) + n; cap(in) >= total { + head = in[:total] + } else { + head = make([]byte, total) + copy(head, in) + } + tail = head[len(in):] + return +} + +// Seal appends an encrypted and authenticated copy of message to out, which +// must not overlap message. The key and nonce pair must be unique for each +// distinct message and the output will be Overhead bytes longer than message. +func Seal(out, message []byte, nonce *[24]byte, key *[32]byte) []byte { + var subKey [32]byte + var counter [16]byte + setup(&subKey, &counter, nonce, key) + + // The Poly1305 key is generated by encrypting 32 bytes of zeros. Since + // Salsa20 works with 64-byte blocks, we also generate 32 bytes of + // keystream as a side effect. + var firstBlock [64]byte + salsa.XORKeyStream(firstBlock[:], firstBlock[:], &counter, &subKey) + + var poly1305Key [32]byte + copy(poly1305Key[:], firstBlock[:]) + + ret, out := sliceForAppend(out, len(message)+poly1305.TagSize) + + // We XOR up to 32 bytes of message with the keystream generated from + // the first block. + firstMessageBlock := message + if len(firstMessageBlock) > 32 { + firstMessageBlock = firstMessageBlock[:32] + } + + tagOut := out + out = out[poly1305.TagSize:] + for i, x := range firstMessageBlock { + out[i] = firstBlock[32+i] ^ x + } + message = message[len(firstMessageBlock):] + ciphertext := out + out = out[len(firstMessageBlock):] + + // Now encrypt the rest. + counter[8] = 1 + salsa.XORKeyStream(out, message, &counter, &subKey) + + var tag [poly1305.TagSize]byte + poly1305.Sum(&tag, ciphertext, &poly1305Key) + copy(tagOut, tag[:]) + + return ret +} + +// Open authenticates and decrypts a box produced by Seal and appends the +// message to out, which must not overlap box. The output will be Overhead +// bytes smaller than box. +func Open(out []byte, box []byte, nonce *[24]byte, key *[32]byte) ([]byte, bool) { + if len(box) < Overhead { + return nil, false + } + + var subKey [32]byte + var counter [16]byte + setup(&subKey, &counter, nonce, key) + + // The Poly1305 key is generated by encrypting 32 bytes of zeros. Since + // Salsa20 works with 64-byte blocks, we also generate 32 bytes of + // keystream as a side effect. + var firstBlock [64]byte + salsa.XORKeyStream(firstBlock[:], firstBlock[:], &counter, &subKey) + + var poly1305Key [32]byte + copy(poly1305Key[:], firstBlock[:]) + var tag [poly1305.TagSize]byte + copy(tag[:], box) + + if !poly1305.Verify(&tag, box[poly1305.TagSize:], &poly1305Key) { + return nil, false + } + + ret, out := sliceForAppend(out, len(box)-Overhead) + + // We XOR up to 32 bytes of box with the keystream generated from + // the first block. + box = box[Overhead:] + firstMessageBlock := box + if len(firstMessageBlock) > 32 { + firstMessageBlock = firstMessageBlock[:32] + } + for i, x := range firstMessageBlock { + out[i] = firstBlock[32+i] ^ x + } + + box = box[len(firstMessageBlock):] + out = out[len(firstMessageBlock):] + + // Now decrypt the rest. + counter[8] = 1 + salsa.XORKeyStream(out, box, &counter, &subKey) + + return ret, true +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/secretbox/secretbox_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/secretbox/secretbox_test.go new file mode 100644 index 00000000..664dc152 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/nacl/secretbox/secretbox_test.go @@ -0,0 +1,91 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package secretbox + +import ( + "bytes" + "crypto/rand" + "encoding/hex" + "testing" +) + +func TestSealOpen(t *testing.T) { + var key [32]byte + var nonce [24]byte + + rand.Reader.Read(key[:]) + rand.Reader.Read(nonce[:]) + + var box, opened []byte + + for msgLen := 0; msgLen < 128; msgLen += 17 { + message := make([]byte, msgLen) + rand.Reader.Read(message) + + box = Seal(box[:0], message, &nonce, &key) + var ok bool + opened, ok = Open(opened[:0], box, &nonce, &key) + if !ok { + t.Errorf("%d: failed to open box", msgLen) + continue + } + + if !bytes.Equal(opened, message) { + t.Errorf("%d: got %x, expected %x", msgLen, opened, message) + continue + } + } + + for i := range box { + box[i] ^= 0x20 + _, ok := Open(opened[:0], box, &nonce, &key) + if ok { + t.Errorf("box was opened after corrupting byte %d", i) + } + box[i] ^= 0x20 + } +} + +func TestSecretBox(t *testing.T) { + var key [32]byte + var nonce [24]byte + var message [64]byte + + for i := range key[:] { + key[i] = 1 + } + for i := range nonce[:] { + nonce[i] = 2 + } + for i := range message[:] { + message[i] = 3 + } + + box := Seal(nil, message[:], &nonce, &key) + // expected was generated using the C implementation of NaCl. + expected, _ := hex.DecodeString("8442bc313f4626f1359e3b50122b6ce6fe66ddfe7d39d14e637eb4fd5b45beadab55198df6ab5368439792a23c87db70acb6156dc5ef957ac04f6276cf6093b84be77ff0849cc33e34b7254d5a8f65ad") + + if !bytes.Equal(box, expected) { + t.Fatalf("box didn't match, got\n%x\n, expected\n%x", box, expected) + } +} + +func TestAppend(t *testing.T) { + var key [32]byte + var nonce [24]byte + var message [8]byte + + out := make([]byte, 4) + box := Seal(out, message[:], &nonce, &key) + if !bytes.Equal(box[:4], out[:4]) { + t.Fatalf("Seal didn't correctly append") + } + + out = make([]byte, 4, 100) + box = Seal(out, message[:], &nonce, &key) + if !bytes.Equal(box[:4], out[:4]) { + t.Fatalf("Seal didn't correctly append with sufficient capacity.") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ocsp/ocsp.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ocsp/ocsp.go new file mode 100644 index 00000000..2a56a810 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ocsp/ocsp.go @@ -0,0 +1,347 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ocsp parses OCSP responses as specified in RFC 2560. OCSP responses +// are signed messages attesting to the validity of a certificate for a small +// period of time. This is used to manage revocation for X.509 certificates. +package ocsp + +import ( + "crypto" + _ "crypto/sha1" + "crypto/x509" + "crypto/x509/pkix" + "encoding/asn1" + "math/big" + "time" +) + +var idPKIXOCSPBasic = asn1.ObjectIdentifier([]int{1, 3, 6, 1, 5, 5, 7, 48, 1, 1}) + +// These are internal structures that reflect the ASN.1 structure of an OCSP +// response. See RFC 2560, section 4.2. + +const ( + ocspSuccess = 0 + ocspMalformed = 1 + ocspInternalError = 2 + ocspTryLater = 3 + ocspSigRequired = 4 + ocspUnauthorized = 5 +) + +type certID struct { + HashAlgorithm pkix.AlgorithmIdentifier + NameHash []byte + IssuerKeyHash []byte + SerialNumber *big.Int +} + +type responseASN1 struct { + Status asn1.Enumerated + Response responseBytes `asn1:"explicit,tag:0"` +} + +type responseBytes struct { + ResponseType asn1.ObjectIdentifier + Response []byte +} + +type basicResponse struct { + TBSResponseData responseData + SignatureAlgorithm pkix.AlgorithmIdentifier + Signature asn1.BitString + Certificates []asn1.RawValue `asn1:"explicit,tag:0,optional"` +} + +type responseData struct { + Raw asn1.RawContent + Version int `asn1:"optional,default:1,explicit,tag:0"` + RequestorName pkix.RDNSequence `asn1:"optional,explicit,tag:1"` + KeyHash []byte `asn1:"optional,explicit,tag:2"` + ProducedAt time.Time + Responses []singleResponse +} + +type singleResponse struct { + CertID certID + Good asn1.Flag `asn1:"explicit,tag:0,optional"` + Revoked revokedInfo `asn1:"explicit,tag:1,optional"` + Unknown asn1.Flag `asn1:"explicit,tag:2,optional"` + ThisUpdate time.Time + NextUpdate time.Time `asn1:"explicit,tag:0,optional"` +} + +type revokedInfo struct { + RevocationTime time.Time + Reason int `asn1:"explicit,tag:0,optional"` +} + +var ( + oidSignatureMD2WithRSA = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 2} + oidSignatureMD5WithRSA = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 4} + oidSignatureSHA1WithRSA = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 5} + oidSignatureSHA256WithRSA = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 11} + oidSignatureSHA384WithRSA = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 12} + oidSignatureSHA512WithRSA = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 13} + oidSignatureDSAWithSHA1 = asn1.ObjectIdentifier{1, 2, 840, 10040, 4, 3} + oidSignatureDSAWithSHA256 = asn1.ObjectIdentifier{2, 16, 840, 1, 101, 4, 3, 2} + oidSignatureECDSAWithSHA1 = asn1.ObjectIdentifier{1, 2, 840, 10045, 4, 1} + oidSignatureECDSAWithSHA256 = asn1.ObjectIdentifier{1, 2, 840, 10045, 4, 3, 2} + oidSignatureECDSAWithSHA384 = asn1.ObjectIdentifier{1, 2, 840, 10045, 4, 3, 3} + oidSignatureECDSAWithSHA512 = asn1.ObjectIdentifier{1, 2, 840, 10045, 4, 3, 4} +) + +// TODO(agl): this is taken from crypto/x509 and so should probably be exported +// from crypto/x509 or crypto/x509/pkix. +func getSignatureAlgorithmFromOID(oid asn1.ObjectIdentifier) x509.SignatureAlgorithm { + switch { + case oid.Equal(oidSignatureMD2WithRSA): + return x509.MD2WithRSA + case oid.Equal(oidSignatureMD5WithRSA): + return x509.MD5WithRSA + case oid.Equal(oidSignatureSHA1WithRSA): + return x509.SHA1WithRSA + case oid.Equal(oidSignatureSHA256WithRSA): + return x509.SHA256WithRSA + case oid.Equal(oidSignatureSHA384WithRSA): + return x509.SHA384WithRSA + case oid.Equal(oidSignatureSHA512WithRSA): + return x509.SHA512WithRSA + case oid.Equal(oidSignatureDSAWithSHA1): + return x509.DSAWithSHA1 + case oid.Equal(oidSignatureDSAWithSHA256): + return x509.DSAWithSHA256 + case oid.Equal(oidSignatureECDSAWithSHA1): + return x509.ECDSAWithSHA1 + case oid.Equal(oidSignatureECDSAWithSHA256): + return x509.ECDSAWithSHA256 + case oid.Equal(oidSignatureECDSAWithSHA384): + return x509.ECDSAWithSHA384 + case oid.Equal(oidSignatureECDSAWithSHA512): + return x509.ECDSAWithSHA512 + } + return x509.UnknownSignatureAlgorithm +} + +// This is the exposed reflection of the internal OCSP structures. + +const ( + // Good means that the certificate is valid. + Good = iota + // Revoked means that the certificate has been deliberately revoked. + Revoked = iota + // Unknown means that the OCSP responder doesn't know about the certificate. + Unknown = iota + // ServerFailed means that the OCSP responder failed to process the request. + ServerFailed = iota +) + +// Response represents an OCSP response. See RFC 2560. +type Response struct { + // Status is one of {Good, Revoked, Unknown, ServerFailed} + Status int + SerialNumber *big.Int + ProducedAt, ThisUpdate, NextUpdate, RevokedAt time.Time + RevocationReason int + Certificate *x509.Certificate + // TBSResponseData contains the raw bytes of the signed response. If + // Certificate is nil then this can be used to verify Signature. + TBSResponseData []byte + Signature []byte + SignatureAlgorithm x509.SignatureAlgorithm +} + +// CheckSignatureFrom checks that the signature in resp is a valid signature +// from issuer. This should only be used if resp.Certificate is nil. Otherwise, +// the OCSP response contained an intermediate certificate that created the +// signature. That signature is checked by ParseResponse and only +// resp.Certificate remains to be validated. +func (resp *Response) CheckSignatureFrom(issuer *x509.Certificate) error { + return issuer.CheckSignature(resp.SignatureAlgorithm, resp.TBSResponseData, resp.Signature) +} + +// ParseError results from an invalid OCSP response. +type ParseError string + +func (p ParseError) Error() string { + return string(p) +} + +// ParseResponse parses an OCSP response in DER form. It only supports +// responses for a single certificate. If the response contains a certificate +// then the signature over the response is checked. If issuer is not nil then +// it will be used to validate the signature or embedded certificate. Invalid +// signatures or parse failures will result in a ParseError. +func ParseResponse(bytes []byte, issuer *x509.Certificate) (*Response, error) { + var resp responseASN1 + rest, err := asn1.Unmarshal(bytes, &resp) + if err != nil { + return nil, err + } + if len(rest) > 0 { + return nil, ParseError("trailing data in OCSP response") + } + + ret := new(Response) + if resp.Status != ocspSuccess { + ret.Status = ServerFailed + return ret, nil + } + + if !resp.Response.ResponseType.Equal(idPKIXOCSPBasic) { + return nil, ParseError("bad OCSP response type") + } + + var basicResp basicResponse + rest, err = asn1.Unmarshal(resp.Response.Response, &basicResp) + if err != nil { + return nil, err + } + + if len(basicResp.Certificates) > 1 { + return nil, ParseError("OCSP response contains bad number of certificates") + } + + if len(basicResp.TBSResponseData.Responses) != 1 { + return nil, ParseError("OCSP response contains bad number of responses") + } + + ret.TBSResponseData = basicResp.TBSResponseData.Raw + ret.Signature = basicResp.Signature.RightAlign() + ret.SignatureAlgorithm = getSignatureAlgorithmFromOID(basicResp.SignatureAlgorithm.Algorithm) + + if len(basicResp.Certificates) > 0 { + ret.Certificate, err = x509.ParseCertificate(basicResp.Certificates[0].FullBytes) + if err != nil { + return nil, err + } + + if err := ret.CheckSignatureFrom(ret.Certificate); err != nil { + return nil, ParseError("bad OCSP signature") + } + + if issuer != nil { + if err := issuer.CheckSignature(ret.Certificate.SignatureAlgorithm, ret.Certificate.RawTBSCertificate, ret.Certificate.Signature); err != nil { + return nil, ParseError("bad signature on embedded certificate") + } + } + } else if issuer != nil { + if err := ret.CheckSignatureFrom(issuer); err != nil { + return nil, ParseError("bad OCSP signature") + } + } + + r := basicResp.TBSResponseData.Responses[0] + + ret.SerialNumber = r.CertID.SerialNumber + + switch { + case bool(r.Good): + ret.Status = Good + case bool(r.Unknown): + ret.Status = Unknown + default: + ret.Status = Revoked + ret.RevokedAt = r.Revoked.RevocationTime + ret.RevocationReason = r.Revoked.Reason + } + + ret.ProducedAt = basicResp.TBSResponseData.ProducedAt + ret.ThisUpdate = r.ThisUpdate + ret.NextUpdate = r.NextUpdate + + return ret, nil +} + +// https://tools.ietf.org/html/rfc2560#section-4.1.1 +type ocspRequest struct { + TBSRequest tbsRequest +} + +type tbsRequest struct { + Version int `asn1:"explicit,tag:0,default:0"` + RequestList []request +} + +type request struct { + Cert certID +} + +// RequestOptions contains options for constructing OCSP requests. +type RequestOptions struct { + // Hash contains the hash function that should be used when + // constructing the OCSP request. If zero, SHA-1 will be used. + Hash crypto.Hash +} + +func (opts *RequestOptions) hash() crypto.Hash { + if opts == nil || opts.Hash == 0 { + // SHA-1 is nearly universally used in OCSP. + return crypto.SHA1 + } + return opts.Hash +} + +// CreateRequest returns a DER-encoded, OCSP request for the status of cert. If +// opts is nil then sensible defaults are used. +func CreateRequest(cert, issuer *x509.Certificate, opts *RequestOptions) ([]byte, error) { + hashFunc := opts.hash() + + // OCSP seems to be the only place where these raw hash identifiers are + // used. I took the following from + // http://msdn.microsoft.com/en-us/library/ff635603.aspx + var hashOID asn1.ObjectIdentifier + switch hashFunc { + case crypto.SHA1: + hashOID = asn1.ObjectIdentifier([]int{1, 3, 14, 3, 2, 26}) + case crypto.SHA256: + hashOID = asn1.ObjectIdentifier([]int{2, 16, 840, 1, 101, 3, 4, 2, 1}) + case crypto.SHA384: + hashOID = asn1.ObjectIdentifier([]int{2, 16, 840, 1, 101, 3, 4, 2, 2}) + case crypto.SHA512: + hashOID = asn1.ObjectIdentifier([]int{2, 16, 840, 1, 101, 3, 4, 2, 3}) + default: + return nil, x509.ErrUnsupportedAlgorithm + } + + if !hashFunc.Available() { + return nil, x509.ErrUnsupportedAlgorithm + } + h := opts.hash().New() + + var publicKeyInfo struct { + Algorithm pkix.AlgorithmIdentifier + PublicKey asn1.BitString + } + if _, err := asn1.Unmarshal(issuer.RawSubjectPublicKeyInfo, &publicKeyInfo); err != nil { + return nil, err + } + + h.Write(publicKeyInfo.PublicKey.RightAlign()) + issuerKeyHash := h.Sum(nil) + + h.Reset() + h.Write(issuer.RawSubject) + issuerNameHash := h.Sum(nil) + + return asn1.Marshal(ocspRequest{ + tbsRequest{ + Version: 0, + RequestList: []request{ + { + Cert: certID{ + pkix.AlgorithmIdentifier{ + Algorithm: hashOID, + Parameters: asn1.RawValue{Tag: 5 /* ASN.1 NULL */}, + }, + issuerNameHash, + issuerKeyHash, + cert.SerialNumber, + }, + }, + }, + }, + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ocsp/ocsp_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ocsp/ocsp_test.go new file mode 100644 index 00000000..fcdf6fe2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ocsp/ocsp_test.go @@ -0,0 +1,274 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ocsp + +import ( + "bytes" + "crypto/x509" + "encoding/hex" + "math/big" + "reflect" + "testing" + "time" +) + +func TestOCSPDecode(t *testing.T) { + responseBytes, _ := hex.DecodeString(ocspResponseHex) + resp, err := ParseResponse(responseBytes, nil) + if err != nil { + t.Error(err) + } + + expected := Response{ + Status: 0, + SerialNumber: big.NewInt(0x1d0fa), + RevocationReason: 0, + ThisUpdate: time.Date(2010, 7, 7, 15, 1, 5, 0, time.UTC), + NextUpdate: time.Date(2010, 7, 7, 18, 35, 17, 0, time.UTC), + } + + if !reflect.DeepEqual(resp.ThisUpdate, expected.ThisUpdate) { + t.Errorf("resp.ThisUpdate: got %d, want %d", resp.ThisUpdate, expected.ThisUpdate) + } + + if !reflect.DeepEqual(resp.NextUpdate, expected.NextUpdate) { + t.Errorf("resp.NextUpdate: got %d, want %d", resp.NextUpdate, expected.NextUpdate) + } + + if resp.Status != expected.Status { + t.Errorf("resp.Status: got %d, want %d", resp.Status, expected.Status) + } + + if resp.SerialNumber.Cmp(expected.SerialNumber) != 0 { + t.Errorf("resp.SerialNumber: got %x, want %x", resp.SerialNumber, expected.SerialNumber) + } + + if resp.RevocationReason != expected.RevocationReason { + t.Errorf("resp.RevocationReason: got %d, want %d", resp.RevocationReason, expected.RevocationReason) + } +} + +func TestOCSPDecodeWithoutCert(t *testing.T) { + responseBytes, _ := hex.DecodeString(ocspResponseWithoutCertHex) + _, err := ParseResponse(responseBytes, nil) + if err != nil { + t.Error(err) + } +} + +func TestOCSPSignature(t *testing.T) { + issuerCert, _ := hex.DecodeString(startComHex) + issuer, err := x509.ParseCertificate(issuerCert) + if err != nil { + t.Fatal(err) + } + + response, _ := hex.DecodeString(ocspResponseHex) + if _, err := ParseResponse(response, issuer); err != nil { + t.Error(err) + } +} + +func TestOCSPRequest(t *testing.T) { + leafCert, _ := hex.DecodeString(leafCertHex) + cert, err := x509.ParseCertificate(leafCert) + if err != nil { + t.Fatal(err) + } + + issuerCert, _ := hex.DecodeString(issuerCertHex) + issuer, err := x509.ParseCertificate(issuerCert) + if err != nil { + t.Fatal(err) + } + + request, err := CreateRequest(cert, issuer, nil) + if err != nil { + t.Fatal(err) + } + + expected, _ := hex.DecodeString(ocspRequestHex) + if !bytes.Equal(request, expected) { + t.Errorf("got %x, wanted %x", request, expected) + } +} + +// This OCSP response was taken from Thawte's public OCSP responder. +// To recreate: +// $ openssl s_client -tls1 -showcerts -servername www.google.com -connect www.google.com:443 +// Copy and paste the first certificate into /tmp/cert.crt and the second into +// /tmp/intermediate.crt +// $ openssl ocsp -issuer /tmp/intermediate.crt -cert /tmp/cert.crt -url http://ocsp.thawte.com -resp_text -respout /tmp/ocsp.der +// Then hex encode the result: +// $ python -c 'print file("/tmp/ocsp.der", "r").read().encode("hex")' + +const ocspResponseHex = "308206bc0a0100a08206b5308206b106092b0601050507300101048206a23082069e3081" + + "c9a14e304c310b300906035504061302494c31163014060355040a130d5374617274436f" + + "6d204c74642e312530230603550403131c5374617274436f6d20436c6173732031204f43" + + "5350205369676e6572180f32303130303730373137333531375a30663064303c30090605" + + "2b0e03021a050004146568874f40750f016a3475625e1f5c93e5a26d580414eb4234d098" + + "b0ab9ff41b6b08f7cc642eef0e2c45020301d0fa8000180f323031303037303731353031" + + "30355aa011180f32303130303730373138333531375a300d06092a864886f70d01010505" + + "000382010100ab557ff070d1d7cebbb5f0ec91a15c3fed22eb2e1b8244f1b84545f013a4" + + "fb46214c5e3fbfbebb8a56acc2b9db19f68fd3c3201046b3824d5ba689f99864328710cb" + + "467195eb37d84f539e49f859316b32964dc3e47e36814ce94d6c56dd02733b1d0802f7ff" + + "4eebdbbd2927dcf580f16cbc290f91e81b53cb365e7223f1d6e20a88ea064104875e0145" + + "672b20fc14829d51ca122f5f5d77d3ad6c83889c55c7dc43680ba2fe3cef8b05dbcabdc0" + + "d3e09aaf9725597f8c858c2fa38c0d6aed2e6318194420dd1a1137445d13e1c97ab47896" + + "17a4e08925f46f867b72e3a4dc1f08cb870b2b0717f7207faa0ac512e628a029aba7457a" + + "e63dcf3281e2162d9349a08204ba308204b6308204b23082039aa003020102020101300d" + + "06092a864886f70d010105050030818c310b300906035504061302494c31163014060355" + + "040a130d5374617274436f6d204c74642e312b3029060355040b13225365637572652044" + + "69676974616c204365727469666963617465205369676e696e6731383036060355040313" + + "2f5374617274436f6d20436c6173732031205072696d61727920496e7465726d65646961" + + "746520536572766572204341301e170d3037313032353030323330365a170d3132313032" + + "333030323330365a304c310b300906035504061302494c31163014060355040a130d5374" + + "617274436f6d204c74642e312530230603550403131c5374617274436f6d20436c617373" + + "2031204f435350205369676e657230820122300d06092a864886f70d0101010500038201" + + "0f003082010a0282010100b9561b4c45318717178084e96e178df2255e18ed8d8ecc7c2b" + + "7b51a6c1c2e6bf0aa3603066f132fe10ae97b50e99fa24b83fc53dd2777496387d14e1c3" + + "a9b6a4933e2ac12413d085570a95b8147414a0bc007c7bcf222446ef7f1a156d7ea1c577" + + "fc5f0facdfd42eb0f5974990cb2f5cefebceef4d1bdc7ae5c1075c5a99a93171f2b0845b" + + "4ff0864e973fcfe32f9d7511ff87a3e943410c90a4493a306b6944359340a9ca96f02b66" + + "ce67f028df2980a6aaee8d5d5d452b8b0eb93f923cc1e23fcccbdbe7ffcb114d08fa7a6a" + + "3c404f825d1a0e715935cf623a8c7b59670014ed0622f6089a9447a7a19010f7fe58f841" + + "29a2765ea367824d1c3bb2fda308530203010001a382015c30820158300c0603551d1301" + + "01ff04023000300b0603551d0f0404030203a8301e0603551d250417301506082b060105" + + "0507030906092b0601050507300105301d0603551d0e0416041445e0a36695414c5dd449" + + "bc00e33cdcdbd2343e173081a80603551d230481a030819d8014eb4234d098b0ab9ff41b" + + "6b08f7cc642eef0e2c45a18181a47f307d310b300906035504061302494c311630140603" + + "55040a130d5374617274436f6d204c74642e312b3029060355040b132253656375726520" + + "4469676974616c204365727469666963617465205369676e696e67312930270603550403" + + "13205374617274436f6d2043657274696669636174696f6e20417574686f726974798201" + + "0a30230603551d12041c301a8618687474703a2f2f7777772e737461727473736c2e636f" + + "6d2f302c06096086480186f842010d041f161d5374617274436f6d205265766f63617469" + + "6f6e20417574686f72697479300d06092a864886f70d01010505000382010100182d2215" + + "8f0fc0291324fa8574c49bb8ff2835085adcbf7b7fc4191c397ab6951328253fffe1e5ec" + + "2a7da0d50fca1a404e6968481366939e666c0a6209073eca57973e2fefa9ed1718e8176f" + + "1d85527ff522c08db702e3b2b180f1cbff05d98128252cf0f450f7dd2772f4188047f19d" + + "c85317366f94bc52d60f453a550af58e308aaab00ced33040b62bf37f5b1ab2a4f7f0f80" + + "f763bf4d707bc8841d7ad9385ee2a4244469260b6f2bf085977af9074796048ecc2f9d48" + + "a1d24ce16e41a9941568fec5b42771e118f16c106a54ccc339a4b02166445a167902e75e" + + "6d8620b0825dcd18a069b90fd851d10fa8effd409deec02860d26d8d833f304b10669b42" + +const startComHex = "308206343082041ca003020102020118300d06092a864886f70d0101050500307d310b30" + + "0906035504061302494c31163014060355040a130d5374617274436f6d204c74642e312b" + + "3029060355040b1322536563757265204469676974616c20436572746966696361746520" + + "5369676e696e6731293027060355040313205374617274436f6d20436572746966696361" + + "74696f6e20417574686f72697479301e170d3037313032343230353431375a170d313731" + + "3032343230353431375a30818c310b300906035504061302494c31163014060355040a13" + + "0d5374617274436f6d204c74642e312b3029060355040b13225365637572652044696769" + + "74616c204365727469666963617465205369676e696e67313830360603550403132f5374" + + "617274436f6d20436c6173732031205072696d61727920496e7465726d65646961746520" + + "53657276657220434130820122300d06092a864886f70d01010105000382010f00308201" + + "0a0282010100b689c6acef09527807ac9263d0f44418188480561f91aee187fa3250b4d3" + + "4706f0e6075f700e10f71dc0ce103634855a0f92ac83c6ac58523fba38e8fce7a724e240" + + "a60876c0926e9e2a6d4d3f6e61200adb59ded27d63b33e46fefa215118d7cd30a6ed076e" + + "3b7087b4f9faebee823c056f92f7a4dc0a301e9373fe07cad75f809d225852ae06da8b87" + + "2369b0e42ad8ea83d2bdf371db705a280faf5a387045123f304dcd3baf17e50fcba0a95d" + + "48aab16150cb34cd3c5cc30be810c08c9bf0030362feb26c3e720eee1c432ac9480e5739" + + "c43121c810c12c87fe5495521f523c31129b7fe7c0a0a559d5e28f3ef0d5a8e1d77031a9" + + "c4b3cfaf6d532f06f4a70203010001a38201ad308201a9300f0603551d130101ff040530" + + "030101ff300e0603551d0f0101ff040403020106301d0603551d0e04160414eb4234d098" + + "b0ab9ff41b6b08f7cc642eef0e2c45301f0603551d230418301680144e0bef1aa4405ba5" + + "17698730ca346843d041aef2306606082b06010505070101045a3058302706082b060105" + + "05073001861b687474703a2f2f6f6373702e737461727473736c2e636f6d2f6361302d06" + + "082b060105050730028621687474703a2f2f7777772e737461727473736c2e636f6d2f73" + + "667363612e637274305b0603551d1f045430523027a025a0238621687474703a2f2f7777" + + "772e737461727473736c2e636f6d2f73667363612e63726c3027a025a023862168747470" + + "3a2f2f63726c2e737461727473736c2e636f6d2f73667363612e63726c3081800603551d" + + "20047930773075060b2b0601040181b5370102013066302e06082b060105050702011622" + + "687474703a2f2f7777772e737461727473736c2e636f6d2f706f6c6963792e7064663034" + + "06082b060105050702011628687474703a2f2f7777772e737461727473736c2e636f6d2f" + + "696e7465726d6564696174652e706466300d06092a864886f70d01010505000382020100" + + "2109493ea5886ee00b8b48da314d8ff75657a2e1d36257e9b556f38545753be5501f048b" + + "e6a05a3ee700ae85d0fbff200364cbad02e1c69172f8a34dd6dee8cc3fa18aa2e37c37a7" + + "c64f8f35d6f4d66e067bdd21d9cf56ffcb302249fe8904f385e5aaf1e71fe875904dddf9" + + "46f74234f745580c110d84b0c6da5d3ef9019ee7e1da5595be741c7bfc4d144fac7e5547" + + "7d7bf4a50d491e95e8f712c1ccff76a62547d0f37535be97b75816ebaa5c786fec5330af" + + "ea044dcca902e3f0b60412f630b1113d904e5664d7dc3c435f7339ef4baf87ebf6fe6888" + + "4472ead207c669b0c1a18bef1749d761b145485f3b2021e95bb2ccf4d7e931f50b15613b" + + "7a94e3ebd9bc7f94ae6ae3626296a8647cb887f399327e92a252bebbf865cfc9f230fc8b" + + "c1c2a696d75f89e15c3480f58f47072fb491bfb1a27e5f4b5ad05b9f248605515a690365" + + "434971c5e06f94346bf61bd8a9b04c7e53eb8f48dfca33b548fa364a1a53a6330cd089cd" + + "4915cd89313c90c072d7654b52358a461144b93d8e2865a63e799e5c084429adb035112e" + + "214eb8d2e7103e5d8483b3c3c2e4d2c6fd094b7409ddf1b3d3193e800da20b19f038e7c5" + + "c2afe223db61e29d5c6e2089492e236ab262c145b49faf8ba7f1223bf87de290d07a19fb" + + "4a4ce3d27d5f4a8303ed27d6239e6b8db459a2d9ef6c8229dd75193c3f4c108defbb7527" + + "d2ae83a7a8ce5ba7" + +const ocspResponseWithoutCertHex = "308201d40a0100a08201cd308201c906092b0601050507300101048201ba3082" + + "01b630819fa2160414884451ff502a695e2d88f421bad90cf2cecbea7c180f3230313330" + + "3631383037323434335a30743072304a300906052b0e03021a0500041448b60d38238df8" + + "456e4ee5843ea394111802979f0414884451ff502a695e2d88f421bad90cf2cecbea7c02" + + "1100f78b13b946fc9635d8ab49de9d2148218000180f3230313330363138303732343433" + + "5aa011180f32303133303632323037323434335a300d06092a864886f70d010105050003" + + "82010100103e18b3d297a5e7a6c07a4fc52ac46a15c0eba96f3be17f0ffe84de5b8c8e05" + + "5a8f577586a849dc4abd6440eb6fedde4622451e2823c1cbf3558b4e8184959c9fe96eff" + + "8bc5f95866c58c6d087519faabfdae37e11d9874f1bc0db292208f645dd848185e4dd38b" + + "6a8547dfa7b74d514a8470015719064d35476b95bebb03d4d2845c5ca15202d2784878f2" + + "0f904c24f09736f044609e9c271381713400e563023d212db422236440c6f377bbf24b2b" + + "9e7dec8698e36a8df68b7592ad3489fb2937afb90eb85d2aa96b81c94c25057dbd4759d9" + + "20a1a65c7f0b6427a224b3c98edd96b9b61f706099951188b0289555ad30a216fb774651" + + "5a35fca2e054dfa8" + +const ocspRequestHex = "30563054a003020100304d304b3049300906052b0e03021a05000414c0fe0278fc991888" + + "91b3f212e9c7e1b21ab7bfc004140dfc1df0a9e0f01ce7f2b213177e6f8d157cd4f60210" + + "017f77deb3bcbb235d44ccc7dba62e72" + +const leafCertHex = "308203c830820331a0030201020210017f77deb3bcbb235d44ccc7dba62e72300d06092a" + + "864886f70d01010505003081ba311f301d060355040a1316566572695369676e20547275" + + "7374204e6574776f726b31173015060355040b130e566572695369676e2c20496e632e31" + + "333031060355040b132a566572695369676e20496e7465726e6174696f6e616c20536572" + + "766572204341202d20436c617373203331493047060355040b13407777772e7665726973" + + "69676e2e636f6d2f43505320496e636f72702e6279205265662e204c494142494c495459" + + "204c54442e286329393720566572695369676e301e170d3132303632313030303030305a" + + "170d3133313233313233353935395a3068310b3009060355040613025553311330110603" + + "550408130a43616c69666f726e6961311230100603550407130950616c6f20416c746f31" + + "173015060355040a130e46616365626f6f6b2c20496e632e311730150603550403140e2a" + + "2e66616365626f6f6b2e636f6d30819f300d06092a864886f70d010101050003818d0030" + + "818902818100ae94b171e2deccc1693e051063240102e0689ae83c39b6b3e74b97d48d7b" + + "23689100b0b496ee62f0e6d356bcf4aa0f50643402f5d1766aa972835a7564723f39bbef" + + "5290ded9bcdbf9d3d55dfad23aa03dc604c54d29cf1d4b3bdbd1a809cfae47b44c7eae17" + + "c5109bee24a9cf4a8d911bb0fd0415ae4c3f430aa12a557e2ae10203010001a382011e30" + + "82011a30090603551d130402300030440603551d20043d303b3039060b6086480186f845" + + "01071703302a302806082b06010505070201161c68747470733a2f2f7777772e76657269" + + "7369676e2e636f6d2f727061303c0603551d1f043530333031a02fa02d862b687474703a" + + "2f2f535652496e746c2d63726c2e766572697369676e2e636f6d2f535652496e746c2e63" + + "726c301d0603551d250416301406082b0601050507030106082b06010505070302300b06" + + "03551d0f0404030205a0303406082b0601050507010104283026302406082b0601050507" + + "30018618687474703a2f2f6f6373702e766572697369676e2e636f6d30270603551d1104" + + "20301e820e2a2e66616365626f6f6b2e636f6d820c66616365626f6f6b2e636f6d300d06" + + "092a864886f70d0101050500038181005b6c2b75f8ed30aa51aad36aba595e555141951f" + + "81a53b447910ac1f76ff78fc2781616b58f3122afc1c87010425e9ed43df1a7ba6498060" + + "67e2688af03db58c7df4ee03309a6afc247ccb134dc33e54c6bc1d5133a532a73273b1d7" + + "9cadc08e7e1a83116d34523340b0305427a21742827c98916698ee7eaf8c3bdd71700817" + +const issuerCertHex = "30820383308202eca003020102021046fcebbab4d02f0f926098233f93078f300d06092a" + + "864886f70d0101050500305f310b300906035504061302555331173015060355040a130e" + + "566572695369676e2c20496e632e31373035060355040b132e436c617373203320507562" + + "6c6963205072696d6172792043657274696669636174696f6e20417574686f7269747930" + + "1e170d3937303431373030303030305a170d3136313032343233353935395a3081ba311f" + + "301d060355040a1316566572695369676e205472757374204e6574776f726b3117301506" + + "0355040b130e566572695369676e2c20496e632e31333031060355040b132a5665726953" + + "69676e20496e7465726e6174696f6e616c20536572766572204341202d20436c61737320" + + "3331493047060355040b13407777772e766572697369676e2e636f6d2f43505320496e63" + + "6f72702e6279205265662e204c494142494c495459204c54442e28632939372056657269" + + "5369676e30819f300d06092a864886f70d010101050003818d0030818902818100d88280" + + "e8d619027d1f85183925a2652be1bfd405d3bce6363baaf04c6c5bb6e7aa3c734555b2f1" + + "bdea9742ed9a340a15d4a95cf54025ddd907c132b2756cc4cabba3fe56277143aa63f530" + + "3e9328e5faf1093bf3b74d4e39f75c495ab8c11dd3b28afe70309542cbfe2b518b5a3c3a" + + "f9224f90b202a7539c4f34e7ab04b27b6f0203010001a381e33081e0300f0603551d1304" + + "0830060101ff02010030440603551d20043d303b3039060b6086480186f8450107010130" + + "2a302806082b06010505070201161c68747470733a2f2f7777772e766572697369676e2e" + + "636f6d2f43505330340603551d25042d302b06082b0601050507030106082b0601050507" + + "030206096086480186f8420401060a6086480186f845010801300b0603551d0f04040302" + + "0106301106096086480186f842010104040302010630310603551d1f042a30283026a024" + + "a0228620687474703a2f2f63726c2e766572697369676e2e636f6d2f706361332e63726c" + + "300d06092a864886f70d010105050003818100408e4997968a73dd8e4def3e61b7caa062" + + "adf40e0abb753de26ed82cc7bff4b98c369bcaa2d09c724639f6a682036511c4bcbf2da6" + + "f5d93b0ab598fab378b91ef22b4c62d5fdb27a1ddf33fd73f9a5d82d8c2aead1fcb028b6" + + "e94948134b838a1b487b24f738de6f4154b8ab576b06dfc7a2d4a9f6f136628088f28b75" + + "d68071" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/armor.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/armor.go new file mode 100644 index 00000000..c7ab2efd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/armor.go @@ -0,0 +1,219 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package armor implements OpenPGP ASCII Armor, see RFC 4880. OpenPGP Armor is +// very similar to PEM except that it has an additional CRC checksum. +package armor + +import ( + "bufio" + "bytes" + "code.google.com/p/go.crypto/openpgp/errors" + "encoding/base64" + "io" +) + +// A Block represents an OpenPGP armored structure. +// +// The encoded form is: +// -----BEGIN Type----- +// Headers +// +// base64-encoded Bytes +// '=' base64 encoded checksum +// -----END Type----- +// where Headers is a possibly empty sequence of Key: Value lines. +// +// Since the armored data can be very large, this package presents a streaming +// interface. +type Block struct { + Type string // The type, taken from the preamble (i.e. "PGP SIGNATURE"). + Header map[string]string // Optional headers. + Body io.Reader // A Reader from which the contents can be read + lReader lineReader + oReader openpgpReader +} + +var ArmorCorrupt error = errors.StructuralError("armor invalid") + +const crc24Init = 0xb704ce +const crc24Poly = 0x1864cfb +const crc24Mask = 0xffffff + +// crc24 calculates the OpenPGP checksum as specified in RFC 4880, section 6.1 +func crc24(crc uint32, d []byte) uint32 { + for _, b := range d { + crc ^= uint32(b) << 16 + for i := 0; i < 8; i++ { + crc <<= 1 + if crc&0x1000000 != 0 { + crc ^= crc24Poly + } + } + } + return crc +} + +var armorStart = []byte("-----BEGIN ") +var armorEnd = []byte("-----END ") +var armorEndOfLine = []byte("-----") + +// lineReader wraps a line based reader. It watches for the end of an armor +// block and records the expected CRC value. +type lineReader struct { + in *bufio.Reader + buf []byte + eof bool + crc uint32 +} + +func (l *lineReader) Read(p []byte) (n int, err error) { + if l.eof { + return 0, io.EOF + } + + if len(l.buf) > 0 { + n = copy(p, l.buf) + l.buf = l.buf[n:] + return + } + + line, isPrefix, err := l.in.ReadLine() + if err != nil { + return + } + if isPrefix { + return 0, ArmorCorrupt + } + + if len(line) == 5 && line[0] == '=' { + // This is the checksum line + var expectedBytes [3]byte + var m int + m, err = base64.StdEncoding.Decode(expectedBytes[0:], line[1:]) + if m != 3 || err != nil { + return + } + l.crc = uint32(expectedBytes[0])<<16 | + uint32(expectedBytes[1])<<8 | + uint32(expectedBytes[2]) + + line, _, err = l.in.ReadLine() + if err != nil && err != io.EOF { + return + } + if !bytes.HasPrefix(line, armorEnd) { + return 0, ArmorCorrupt + } + + l.eof = true + return 0, io.EOF + } + + if len(line) > 96 { + return 0, ArmorCorrupt + } + + n = copy(p, line) + bytesToSave := len(line) - n + if bytesToSave > 0 { + if cap(l.buf) < bytesToSave { + l.buf = make([]byte, 0, bytesToSave) + } + l.buf = l.buf[0:bytesToSave] + copy(l.buf, line[n:]) + } + + return +} + +// openpgpReader passes Read calls to the underlying base64 decoder, but keeps +// a running CRC of the resulting data and checks the CRC against the value +// found by the lineReader at EOF. +type openpgpReader struct { + lReader *lineReader + b64Reader io.Reader + currentCRC uint32 +} + +func (r *openpgpReader) Read(p []byte) (n int, err error) { + n, err = r.b64Reader.Read(p) + r.currentCRC = crc24(r.currentCRC, p[:n]) + + if err == io.EOF { + if r.lReader.crc != uint32(r.currentCRC&crc24Mask) { + return 0, ArmorCorrupt + } + } + + return +} + +// Decode reads a PGP armored block from the given Reader. It will ignore +// leading garbage. If it doesn't find a block, it will return nil, io.EOF. The +// given Reader is not usable after calling this function: an arbitrary amount +// of data may have been read past the end of the block. +func Decode(in io.Reader) (p *Block, err error) { + r := bufio.NewReaderSize(in, 100) + var line []byte + ignoreNext := false + +TryNextBlock: + p = nil + + // Skip leading garbage + for { + ignoreThis := ignoreNext + line, ignoreNext, err = r.ReadLine() + if err != nil { + return + } + if ignoreNext || ignoreThis { + continue + } + line = bytes.TrimSpace(line) + if len(line) > len(armorStart)+len(armorEndOfLine) && bytes.HasPrefix(line, armorStart) { + break + } + } + + p = new(Block) + p.Type = string(line[len(armorStart) : len(line)-len(armorEndOfLine)]) + p.Header = make(map[string]string) + nextIsContinuation := false + var lastKey string + + // Read headers + for { + isContinuation := nextIsContinuation + line, nextIsContinuation, err = r.ReadLine() + if err != nil { + p = nil + return + } + if isContinuation { + p.Header[lastKey] += string(line) + continue + } + line = bytes.TrimSpace(line) + if len(line) == 0 { + break + } + + i := bytes.Index(line, []byte(": ")) + if i == -1 { + goto TryNextBlock + } + lastKey = string(line[:i]) + p.Header[lastKey] = string(line[i+2:]) + } + + p.lReader.in = r + p.oReader.currentCRC = crc24Init + p.oReader.lReader = &p.lReader + p.oReader.b64Reader = base64.NewDecoder(base64.StdEncoding, &p.lReader) + p.Body = &p.oReader + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/armor_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/armor_test.go new file mode 100644 index 00000000..9334e94e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/armor_test.go @@ -0,0 +1,95 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package armor + +import ( + "bytes" + "hash/adler32" + "io/ioutil" + "testing" +) + +func TestDecodeEncode(t *testing.T) { + buf := bytes.NewBuffer([]byte(armorExample1)) + result, err := Decode(buf) + if err != nil { + t.Error(err) + } + expectedType := "PGP SIGNATURE" + if result.Type != expectedType { + t.Errorf("result.Type: got:%s want:%s", result.Type, expectedType) + } + if len(result.Header) != 1 { + t.Errorf("len(result.Header): got:%d want:1", len(result.Header)) + } + v, ok := result.Header["Version"] + if !ok || v != "GnuPG v1.4.10 (GNU/Linux)" { + t.Errorf("result.Header: got:%#v", result.Header) + } + + contents, err := ioutil.ReadAll(result.Body) + if err != nil { + t.Error(err) + } + + if adler32.Checksum(contents) != 0x27b144be { + t.Errorf("contents: got: %x", contents) + } + + buf = bytes.NewBuffer(nil) + w, err := Encode(buf, result.Type, result.Header) + if err != nil { + t.Error(err) + } + _, err = w.Write(contents) + if err != nil { + t.Error(err) + } + w.Close() + + if !bytes.Equal(buf.Bytes(), []byte(armorExample1)) { + t.Errorf("got: %s\nwant: %s", string(buf.Bytes()), armorExample1) + } +} + +func TestLongHeader(t *testing.T) { + buf := bytes.NewBuffer([]byte(armorLongLine)) + result, err := Decode(buf) + if err != nil { + t.Error(err) + return + } + value, ok := result.Header["Version"] + if !ok { + t.Errorf("missing Version header") + } + if value != longValueExpected { + t.Errorf("got: %s want: %s", value, longValueExpected) + } +} + +const armorExample1 = `-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.10 (GNU/Linux) + +iJwEAAECAAYFAk1Fv/0ACgkQo01+GMIMMbsYTwQAiAw+QAaNfY6WBdplZ/uMAccm +4g+81QPmTSGHnetSb6WBiY13kVzK4HQiZH8JSkmmroMLuGeJwsRTEL4wbjRyUKEt +p1xwUZDECs234F1xiG5enc5SGlRtP7foLBz9lOsjx+LEcA4sTl5/2eZR9zyFZqWW +TxRjs+fJCIFuo71xb1g= +=/teI +-----END PGP SIGNATURE-----` + +const armorLongLine = `-----BEGIN PGP SIGNATURE----- +Version: 0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz + +iQEcBAABAgAGBQJMtFESAAoJEKsQXJGvOPsVj40H/1WW6jaMXv4BW+1ueDSMDwM8 +kx1fLOXbVM5/Kn5LStZNt1jWWnpxdz7eq3uiqeCQjmqUoRde3YbB2EMnnwRbAhpp +cacnAvy9ZQ78OTxUdNW1mhX5bS6q1MTEJnl+DcyigD70HG/yNNQD7sOPMdYQw0TA +byQBwmLwmTsuZsrYqB68QyLHI+DUugn+kX6Hd2WDB62DKa2suoIUIHQQCd/ofwB3 +WfCYInXQKKOSxu2YOg2Eb4kLNhSMc1i9uKUWAH+sdgJh7NBgdoE4MaNtBFkHXRvv +okWuf3+xA9ksp1npSY/mDvgHijmjvtpRDe6iUeqfCn8N9u9CBg8geANgaG8+QA4= +=wfQG +-----END PGP SIGNATURE-----` + +const longValueExpected = "0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/encode.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/encode.go new file mode 100644 index 00000000..6f07582c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/armor/encode.go @@ -0,0 +1,160 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package armor + +import ( + "encoding/base64" + "io" +) + +var armorHeaderSep = []byte(": ") +var blockEnd = []byte("\n=") +var newline = []byte("\n") +var armorEndOfLineOut = []byte("-----\n") + +// writeSlices writes its arguments to the given Writer. +func writeSlices(out io.Writer, slices ...[]byte) (err error) { + for _, s := range slices { + _, err = out.Write(s) + if err != nil { + return err + } + } + return +} + +// lineBreaker breaks data across several lines, all of the same byte length +// (except possibly the last). Lines are broken with a single '\n'. +type lineBreaker struct { + lineLength int + line []byte + used int + out io.Writer + haveWritten bool +} + +func newLineBreaker(out io.Writer, lineLength int) *lineBreaker { + return &lineBreaker{ + lineLength: lineLength, + line: make([]byte, lineLength), + used: 0, + out: out, + } +} + +func (l *lineBreaker) Write(b []byte) (n int, err error) { + n = len(b) + + if n == 0 { + return + } + + if l.used == 0 && l.haveWritten { + _, err = l.out.Write([]byte{'\n'}) + if err != nil { + return + } + } + + if l.used+len(b) < l.lineLength { + l.used += copy(l.line[l.used:], b) + return + } + + l.haveWritten = true + _, err = l.out.Write(l.line[0:l.used]) + if err != nil { + return + } + excess := l.lineLength - l.used + l.used = 0 + + _, err = l.out.Write(b[0:excess]) + if err != nil { + return + } + + _, err = l.Write(b[excess:]) + return +} + +func (l *lineBreaker) Close() (err error) { + if l.used > 0 { + _, err = l.out.Write(l.line[0:l.used]) + if err != nil { + return + } + } + + return +} + +// encoding keeps track of a running CRC24 over the data which has been written +// to it and outputs a OpenPGP checksum when closed, followed by an armor +// trailer. +// +// It's built into a stack of io.Writers: +// encoding -> base64 encoder -> lineBreaker -> out +type encoding struct { + out io.Writer + breaker *lineBreaker + b64 io.WriteCloser + crc uint32 + blockType []byte +} + +func (e *encoding) Write(data []byte) (n int, err error) { + e.crc = crc24(e.crc, data) + return e.b64.Write(data) +} + +func (e *encoding) Close() (err error) { + err = e.b64.Close() + if err != nil { + return + } + e.breaker.Close() + + var checksumBytes [3]byte + checksumBytes[0] = byte(e.crc >> 16) + checksumBytes[1] = byte(e.crc >> 8) + checksumBytes[2] = byte(e.crc) + + var b64ChecksumBytes [4]byte + base64.StdEncoding.Encode(b64ChecksumBytes[:], checksumBytes[:]) + + return writeSlices(e.out, blockEnd, b64ChecksumBytes[:], newline, armorEnd, e.blockType, armorEndOfLine) +} + +// Encode returns a WriteCloser which will encode the data written to it in +// OpenPGP armor. +func Encode(out io.Writer, blockType string, headers map[string]string) (w io.WriteCloser, err error) { + bType := []byte(blockType) + err = writeSlices(out, armorStart, bType, armorEndOfLineOut) + if err != nil { + return + } + + for k, v := range headers { + err = writeSlices(out, []byte(k), armorHeaderSep, []byte(v), newline) + if err != nil { + return + } + } + + _, err = out.Write(newline) + if err != nil { + return + } + + e := &encoding{ + out: out, + breaker: newLineBreaker(out, 64), + crc: crc24Init, + blockType: bType, + } + e.b64 = base64.NewEncoder(base64.StdEncoding, e.breaker) + return e, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/canonical_text.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/canonical_text.go new file mode 100644 index 00000000..e601e389 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/canonical_text.go @@ -0,0 +1,59 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package openpgp + +import "hash" + +// NewCanonicalTextHash reformats text written to it into the canonical +// form and then applies the hash h. See RFC 4880, section 5.2.1. +func NewCanonicalTextHash(h hash.Hash) hash.Hash { + return &canonicalTextHash{h, 0} +} + +type canonicalTextHash struct { + h hash.Hash + s int +} + +var newline = []byte{'\r', '\n'} + +func (cth *canonicalTextHash) Write(buf []byte) (int, error) { + start := 0 + + for i, c := range buf { + switch cth.s { + case 0: + if c == '\r' { + cth.s = 1 + } else if c == '\n' { + cth.h.Write(buf[start:i]) + cth.h.Write(newline) + start = i + 1 + } + case 1: + cth.s = 0 + } + } + + cth.h.Write(buf[start:]) + return len(buf), nil +} + +func (cth *canonicalTextHash) Sum(in []byte) []byte { + return cth.h.Sum(in) +} + +func (cth *canonicalTextHash) Reset() { + cth.h.Reset() + cth.s = 0 +} + +func (cth *canonicalTextHash) Size() int { + return cth.h.Size() +} + +func (cth *canonicalTextHash) BlockSize() int { + return cth.h.BlockSize() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/canonical_text_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/canonical_text_test.go new file mode 100644 index 00000000..8f3ba2a8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/canonical_text_test.go @@ -0,0 +1,52 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package openpgp + +import ( + "bytes" + "testing" +) + +type recordingHash struct { + buf *bytes.Buffer +} + +func (r recordingHash) Write(b []byte) (n int, err error) { + return r.buf.Write(b) +} + +func (r recordingHash) Sum(in []byte) []byte { + return append(in, r.buf.Bytes()...) +} + +func (r recordingHash) Reset() { + panic("shouldn't be called") +} + +func (r recordingHash) Size() int { + panic("shouldn't be called") +} + +func (r recordingHash) BlockSize() int { + panic("shouldn't be called") +} + +func testCanonicalText(t *testing.T, input, expected string) { + r := recordingHash{bytes.NewBuffer(nil)} + c := NewCanonicalTextHash(r) + c.Write([]byte(input)) + result := c.Sum(nil) + if expected != string(result) { + t.Errorf("input: %x got: %x want: %x", input, result, expected) + } +} + +func TestCanonicalText(t *testing.T) { + testCanonicalText(t, "foo\n", "foo\r\n") + testCanonicalText(t, "foo", "foo") + testCanonicalText(t, "foo\r\n", "foo\r\n") + testCanonicalText(t, "foo\r\nbar", "foo\r\nbar") + testCanonicalText(t, "foo\r\nbar\n\n", "foo\r\nbar\r\n\r\n") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/clearsign/clearsign.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/clearsign/clearsign.go new file mode 100644 index 00000000..a753bcf3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/clearsign/clearsign.go @@ -0,0 +1,362 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package clearsign generates and processes OpenPGP, clear-signed data. See +// RFC 4880, section 7. +// +// Clearsigned messages are cryptographically signed, but the contents of the +// message are kept in plaintext so that it can be read without special tools. +package clearsign + +import ( + "bufio" + "bytes" + "crypto" + "hash" + "io" + "net/textproto" + "strconv" + + "code.google.com/p/go.crypto/openpgp/armor" + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/packet" +) + +// A Block represents a clearsigned message. A signature on a Block can +// be checked by passing Bytes into openpgp.CheckDetachedSignature. +type Block struct { + Headers textproto.MIMEHeader // Optional message headers + Plaintext []byte // The original message text + Bytes []byte // The signed message + ArmoredSignature *armor.Block // The signature block +} + +// start is the marker which denotes the beginning of a clearsigned message. +var start = []byte("\n-----BEGIN PGP SIGNED MESSAGE-----") + +// dashEscape is prefixed to any lines that begin with a hypen so that they +// can't be confused with endText. +var dashEscape = []byte("- ") + +// endText is a marker which denotes the end of the message and the start of +// an armored signature. +var endText = []byte("-----BEGIN PGP SIGNATURE-----") + +// end is a marker which denotes the end of the armored signature. +var end = []byte("\n-----END PGP SIGNATURE-----") + +var crlf = []byte("\r\n") +var lf = byte('\n') + +// getLine returns the first \r\n or \n delineated line from the given byte +// array. The line does not include the \r\n or \n. The remainder of the byte +// array (also not including the new line bytes) is also returned and this will +// always be smaller than the original argument. +func getLine(data []byte) (line, rest []byte) { + i := bytes.Index(data, []byte{'\n'}) + var j int + if i < 0 { + i = len(data) + j = i + } else { + j = i + 1 + if i > 0 && data[i-1] == '\r' { + i-- + } + } + return data[0:i], data[j:] +} + +// Decode finds the first clearsigned message in data and returns it, as well +// as the suffix of data which remains after the message. +func Decode(data []byte) (b *Block, rest []byte) { + // start begins with a newline. However, at the very beginning of + // the byte array, we'll accept the start string without it. + rest = data + if bytes.HasPrefix(data, start[1:]) { + rest = rest[len(start)-1:] + } else if i := bytes.Index(data, start); i >= 0 { + rest = rest[i+len(start):] + } else { + return nil, data + } + + // Consume the start line. + _, rest = getLine(rest) + + var line []byte + b = &Block{ + Headers: make(textproto.MIMEHeader), + } + + // Next come a series of header lines. + for { + // This loop terminates because getLine's second result is + // always smaller than its argument. + if len(rest) == 0 { + return nil, data + } + // An empty line marks the end of the headers. + if line, rest = getLine(rest); len(line) == 0 { + break + } + + i := bytes.Index(line, []byte{':'}) + if i == -1 { + return nil, data + } + + key, val := line[0:i], line[i+1:] + key = bytes.TrimSpace(key) + val = bytes.TrimSpace(val) + b.Headers.Add(string(key), string(val)) + } + + for { + start := rest + + line, rest = getLine(rest) + if bytes.Equal(line, endText) { + // Back up to the start of the line because armor expects to see the + // header line. + rest = start + break + } + + // The final CRLF isn't included in the hash so we don't write it until + // we've seen the next line. + if len(b.Bytes) > 0 { + b.Bytes = append(b.Bytes, crlf...) + } + if bytes.HasPrefix(line, dashEscape) { + line = line[2:] + } + line = bytes.TrimRight(line, " \t") + b.Bytes = append(b.Bytes, line...) + + b.Plaintext = append(b.Plaintext, line...) + b.Plaintext = append(b.Plaintext, lf) + } + + // We want to find the extent of the armored data (including any newlines at + // the end). + i := bytes.Index(rest, end) + if i == -1 { + return nil, data + } + i += len(end) + for i < len(rest) && (rest[i] == '\r' || rest[i] == '\n') { + i++ + } + armored := rest[:i] + rest = rest[i:] + + var err error + b.ArmoredSignature, err = armor.Decode(bytes.NewBuffer(armored)) + if err != nil { + return nil, data + } + + return b, rest +} + +// A dashEscaper is an io.WriteCloser which processes the body of a clear-signed +// message. The clear-signed message is written to buffered and a hash, suitable +// for signing, is maintained in h. +// +// When closed, an armored signature is created and written to complete the +// message. +type dashEscaper struct { + buffered *bufio.Writer + h hash.Hash + hashType crypto.Hash + + atBeginningOfLine bool + isFirstLine bool + + whitespace []byte + byteBuf []byte // a one byte buffer to save allocations + + privateKey *packet.PrivateKey + config *packet.Config +} + +func (d *dashEscaper) Write(data []byte) (n int, err error) { + for _, b := range data { + d.byteBuf[0] = b + + if d.atBeginningOfLine { + // The final CRLF isn't included in the hash so we have to wait + // until this point (the start of the next line) before writing it. + if !d.isFirstLine { + d.h.Write(crlf) + } + d.isFirstLine = false + + // At the beginning of a line, hyphens have to be escaped. + if b == '-' { + // The signature isn't calculated over the dash-escaped text so + // the escape is only written to buffered. + if _, err = d.buffered.Write(dashEscape); err != nil { + return + } + d.h.Write(d.byteBuf) + d.atBeginningOfLine = false + } else if b == '\n' { + // Nothing to do because we dely writing CRLF to the hash. + } else { + d.h.Write(d.byteBuf) + d.atBeginningOfLine = false + } + if err = d.buffered.WriteByte(b); err != nil { + return + } + } else { + // Any whitespace at the end of the line has to be removed so we + // buffer it until we find out whether there's more on this line. + if b == ' ' || b == '\t' || b == '\r' { + d.whitespace = append(d.whitespace, b) + } else if b == '\n' { + // We got a raw \n. Drop any trailing whitespace and write a + // CRLF. + d.whitespace = d.whitespace[:0] + // We dely writing CRLF to the hash until the start of the + // next line. + if err = d.buffered.WriteByte(b); err != nil { + return + } + d.atBeginningOfLine = true + } else { + // Any buffered whitespace wasn't at the end of the line so + // we need to write it out. + if len(d.whitespace) > 0 { + d.h.Write(d.whitespace) + if _, err = d.buffered.Write(d.whitespace); err != nil { + return + } + d.whitespace = d.whitespace[:0] + } + d.h.Write(d.byteBuf) + if err = d.buffered.WriteByte(b); err != nil { + return + } + } + } + } + + n = len(data) + return +} + +func (d *dashEscaper) Close() (err error) { + if !d.atBeginningOfLine { + if err = d.buffered.WriteByte(lf); err != nil { + return + } + } + sig := new(packet.Signature) + sig.SigType = packet.SigTypeText + sig.PubKeyAlgo = d.privateKey.PubKeyAlgo + sig.Hash = d.hashType + sig.CreationTime = d.config.Now() + sig.IssuerKeyId = &d.privateKey.KeyId + + if err = sig.Sign(d.h, d.privateKey, d.config); err != nil { + return + } + + out, err := armor.Encode(d.buffered, "PGP SIGNATURE", nil) + if err != nil { + return + } + + if err = sig.Serialize(out); err != nil { + return + } + if err = out.Close(); err != nil { + return + } + if err = d.buffered.Flush(); err != nil { + return + } + return +} + +// Encode returns a WriteCloser which will clear-sign a message with privateKey +// and write it to w. If config is nil, sensible defaults are used. +func Encode(w io.Writer, privateKey *packet.PrivateKey, config *packet.Config) (plaintext io.WriteCloser, err error) { + if privateKey.Encrypted { + return nil, errors.InvalidArgumentError("signing key is encrypted") + } + + hashType := config.Hash() + name := nameOfHash(hashType) + if len(name) == 0 { + return nil, errors.UnsupportedError("unknown hash type: " + strconv.Itoa(int(hashType))) + } + + h := hashType.New() + if h == nil { + return nil, errors.UnsupportedError("unsupported hash type: " + strconv.Itoa(int(hashType))) + } + + buffered := bufio.NewWriter(w) + // start has a \n at the beginning that we don't want here. + if _, err = buffered.Write(start[1:]); err != nil { + return + } + if err = buffered.WriteByte(lf); err != nil { + return + } + if _, err = buffered.WriteString("Hash: "); err != nil { + return + } + if _, err = buffered.WriteString(name); err != nil { + return + } + if err = buffered.WriteByte(lf); err != nil { + return + } + if err = buffered.WriteByte(lf); err != nil { + return + } + + plaintext = &dashEscaper{ + buffered: buffered, + h: h, + hashType: hashType, + + atBeginningOfLine: true, + isFirstLine: true, + + byteBuf: make([]byte, 1), + + privateKey: privateKey, + config: config, + } + + return +} + +// nameOfHash returns the OpenPGP name for the given hash, or the empty string +// if the name isn't known. See RFC 4880, section 9.4. +func nameOfHash(h crypto.Hash) string { + switch h { + case crypto.MD5: + return "MD5" + case crypto.SHA1: + return "SHA1" + case crypto.RIPEMD160: + return "RIPEMD160" + case crypto.SHA224: + return "SHA224" + case crypto.SHA256: + return "SHA256" + case crypto.SHA384: + return "SHA384" + case crypto.SHA512: + return "SHA512" + } + return "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/clearsign/clearsign_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/clearsign/clearsign_test.go new file mode 100644 index 00000000..876d604d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/clearsign/clearsign_test.go @@ -0,0 +1,161 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package clearsign + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp" + "testing" +) + +func TestParse(t *testing.T) { + b, rest := Decode(clearsignInput) + if b == nil { + t.Fatal("failed to decode clearsign message") + } + if !bytes.Equal(rest, []byte("trailing")) { + t.Errorf("unexpected remaining bytes returned: %s", string(rest)) + } + if b.ArmoredSignature.Type != "PGP SIGNATURE" { + t.Errorf("bad armor type, got:%s, want:PGP SIGNATURE", b.ArmoredSignature.Type) + } + expected := []byte("Hello world\r\nline 2") + if !bytes.Equal(b.Bytes, expected) { + t.Errorf("bad body, got:%x want:%x", b.Bytes, expected) + } + + expected = []byte("Hello world\nline 2\n") + if !bytes.Equal(b.Plaintext, expected) { + t.Errorf("bad plaintext, got:%x want:%x", b.Plaintext, expected) + } + + keyring, err := openpgp.ReadArmoredKeyRing(bytes.NewBufferString(signingKey)) + if err != nil { + t.Errorf("failed to parse public key: %s", err) + } + + if _, err := openpgp.CheckDetachedSignature(keyring, bytes.NewBuffer(b.Bytes), b.ArmoredSignature.Body); err != nil { + t.Errorf("failed to check signature: %s", err) + } +} + +func TestParseWithNoNewlineAtEnd(t *testing.T) { + input := clearsignInput + input = input[:len(input)-len("trailing")-1] + b, rest := Decode(input) + if b == nil { + t.Fatal("failed to decode clearsign message") + } + if len(rest) > 0 { + t.Errorf("unexpected remaining bytes returned: %s", string(rest)) + } +} + +var signingTests = []struct { + in, signed, plaintext string +}{ + {"", "", ""}, + {"a", "a", "a\n"}, + {"a\n", "a", "a\n"}, + {"-a\n", "-a", "-a\n"}, + {"--a\nb", "--a\r\nb", "--a\nb\n"}, +} + +func TestSigning(t *testing.T) { + keyring, err := openpgp.ReadArmoredKeyRing(bytes.NewBufferString(signingKey)) + if err != nil { + t.Errorf("failed to parse public key: %s", err) + } + + for i, test := range signingTests { + var buf bytes.Buffer + + plaintext, err := Encode(&buf, keyring[0].PrivateKey, nil) + if err != nil { + t.Errorf("#%d: error from Encode: %s", i, err) + continue + } + if _, err := plaintext.Write([]byte(test.in)); err != nil { + t.Errorf("#%d: error from Write: %s", i, err) + continue + } + if err := plaintext.Close(); err != nil { + t.Fatalf("#%d: error from Close: %s", i, err) + continue + } + + b, _ := Decode(buf.Bytes()) + if b == nil { + t.Errorf("#%d: failed to decode clearsign message", i) + continue + } + if !bytes.Equal(b.Bytes, []byte(test.signed)) { + t.Errorf("#%d: bad result, got:%x, want:%x", i, b.Bytes, test.signed) + continue + } + if !bytes.Equal(b.Plaintext, []byte(test.plaintext)) { + t.Errorf("#%d: bad result, got:%x, want:%x", i, b.Plaintext, test.plaintext) + continue + } + + if _, err := openpgp.CheckDetachedSignature(keyring, bytes.NewBuffer(b.Bytes), b.ArmoredSignature.Body); err != nil { + t.Errorf("#%d: failed to check signature: %s", i, err) + } + } +} + +var clearsignInput = []byte(` +;lasjlkfdsa + +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +Hello world +line 2 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.10 (GNU/Linux) + +iJwEAQECAAYFAk8kMuEACgkQO9o98PRieSpMsAQAhmY/vwmNpflrPgmfWsYhk5O8 +pjnBUzZwqTDoDeINjZEoPDSpQAHGhjFjgaDx/Gj4fAl0dM4D0wuUEBb6QOrwflog +2A2k9kfSOMOtk0IH/H5VuFN1Mie9L/erYXjTQIptv9t9J7NoRBMU0QOOaFU0JaO9 +MyTpno24AjIAGb+mH1U= +=hIJ6 +-----END PGP SIGNATURE----- +trailing`) + +var signingKey = `-----BEGIN PGP PRIVATE KEY BLOCK----- +Version: GnuPG v1.4.10 (GNU/Linux) + +lQHYBE2rFNoBBADFwqWQIW/DSqcB4yCQqnAFTJ27qS5AnB46ccAdw3u4Greeu3Bp +idpoHdjULy7zSKlwR1EA873dO/k/e11Ml3dlAFUinWeejWaK2ugFP6JjiieSsrKn +vWNicdCS4HTWn0X4sjl0ZiAygw6GNhqEQ3cpLeL0g8E9hnYzJKQ0LWJa0QARAQAB +AAP/TB81EIo2VYNmTq0pK1ZXwUpxCrvAAIG3hwKjEzHcbQznsjNvPUihZ+NZQ6+X +0HCfPAdPkGDCLCb6NavcSW+iNnLTrdDnSI6+3BbIONqWWdRDYJhqZCkqmG6zqSfL +IdkJgCw94taUg5BWP/AAeQrhzjChvpMQTVKQL5mnuZbUCeMCAN5qrYMP2S9iKdnk +VANIFj7656ARKt/nf4CBzxcpHTyB8+d2CtPDKCmlJP6vL8t58Jmih+kHJMvC0dzn +gr5f5+sCAOOe5gt9e0am7AvQWhdbHVfJU0TQJx+m2OiCJAqGTB1nvtBLHdJnfdC9 +TnXXQ6ZXibqLyBies/xeY2sCKL5qtTMCAKnX9+9d/5yQxRyrQUHt1NYhaXZnJbHx +q4ytu0eWz+5i68IYUSK69jJ1NWPM0T6SkqpB3KCAIv68VFm9PxqG1KmhSrQIVGVz +dCBLZXmIuAQTAQIAIgUCTasU2gIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AA +CgkQO9o98PRieSoLhgQAkLEZex02Qt7vGhZzMwuN0R22w3VwyYyjBx+fM3JFETy1 +ut4xcLJoJfIaF5ZS38UplgakHG0FQ+b49i8dMij0aZmDqGxrew1m4kBfjXw9B/v+ +eIqpODryb6cOSwyQFH0lQkXC040pjq9YqDsO5w0WYNXYKDnzRV0p4H1pweo2VDid +AdgETasU2gEEAN46UPeWRqKHvA99arOxee38fBt2CI08iiWyI8T3J6ivtFGixSqV +bRcPxYO/qLpVe5l84Nb3X71GfVXlc9hyv7CD6tcowL59hg1E/DC5ydI8K8iEpUmK +/UnHdIY5h8/kqgGxkY/T/hgp5fRQgW1ZoZxLajVlMRZ8W4tFtT0DeA+JABEBAAEA +A/0bE1jaaZKj6ndqcw86jd+QtD1SF+Cf21CWRNeLKnUds4FRRvclzTyUMuWPkUeX +TaNNsUOFqBsf6QQ2oHUBBK4VCHffHCW4ZEX2cd6umz7mpHW6XzN4DECEzOVksXtc +lUC1j4UB91DC/RNQqwX1IV2QLSwssVotPMPqhOi0ZLNY7wIA3n7DWKInxYZZ4K+6 +rQ+POsz6brEoRHwr8x6XlHenq1Oki855pSa1yXIARoTrSJkBtn5oI+f8AzrnN0BN +oyeQAwIA/7E++3HDi5aweWrViiul9cd3rcsS0dEnksPhvS0ozCJiHsq/6GFmy7J8 +QSHZPteedBnZyNp5jR+H7cIfVN3KgwH/Skq4PsuPhDq5TKK6i8Pc1WW8MA6DXTdU +nLkX7RGmMwjC0DBf7KWAlPjFaONAX3a8ndnz//fy1q7u2l9AZwrj1qa1iJ8EGAEC +AAkFAk2rFNoCGwwACgkQO9o98PRieSo2/QP/WTzr4ioINVsvN1akKuekmEMI3LAp +BfHwatufxxP1U+3Si/6YIk7kuPB9Hs+pRqCXzbvPRrI8NHZBmc8qIGthishdCYad +AHcVnXjtxrULkQFGbGvhKURLvS9WnzD/m1K2zzwxzkPTzT9/Yf06O6Mal5AdugPL +VrM0m72/jnpKo04= +=zNCn +-----END PGP PRIVATE KEY BLOCK----- +` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/elgamal/elgamal.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/elgamal/elgamal.go new file mode 100644 index 00000000..a553bdee --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/elgamal/elgamal.go @@ -0,0 +1,122 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package elgamal implements ElGamal encryption, suitable for OpenPGP, +// as specified in "A Public-Key Cryptosystem and a Signature Scheme Based on +// Discrete Logarithms," IEEE Transactions on Information Theory, v. IT-31, +// n. 4, 1985, pp. 469-472. +// +// This form of ElGamal embeds PKCS#1 v1.5 padding, which may make it +// unsuitable for other protocols. RSA should be used in preference in any +// case. +package elgamal + +import ( + "crypto/rand" + "crypto/subtle" + "errors" + "io" + "math/big" +) + +// PublicKey represents an ElGamal public key. +type PublicKey struct { + G, P, Y *big.Int +} + +// PrivateKey represents an ElGamal private key. +type PrivateKey struct { + PublicKey + X *big.Int +} + +// Encrypt encrypts the given message to the given public key. The result is a +// pair of integers. Errors can result from reading random, or because msg is +// too large to be encrypted to the public key. +func Encrypt(random io.Reader, pub *PublicKey, msg []byte) (c1, c2 *big.Int, err error) { + pLen := (pub.P.BitLen() + 7) / 8 + if len(msg) > pLen-11 { + err = errors.New("elgamal: message too long") + return + } + + // EM = 0x02 || PS || 0x00 || M + em := make([]byte, pLen-1) + em[0] = 2 + ps, mm := em[1:len(em)-len(msg)-1], em[len(em)-len(msg):] + err = nonZeroRandomBytes(ps, random) + if err != nil { + return + } + em[len(em)-len(msg)-1] = 0 + copy(mm, msg) + + m := new(big.Int).SetBytes(em) + + k, err := rand.Int(random, pub.P) + if err != nil { + return + } + + c1 = new(big.Int).Exp(pub.G, k, pub.P) + s := new(big.Int).Exp(pub.Y, k, pub.P) + c2 = s.Mul(s, m) + c2.Mod(c2, pub.P) + + return +} + +// Decrypt takes two integers, resulting from an ElGamal encryption, and +// returns the plaintext of the message. An error can result only if the +// ciphertext is invalid. Users should keep in mind that this is a padding +// oracle and thus, if exposed to an adaptive chosen ciphertext attack, can +// be used to break the cryptosystem. See ``Chosen Ciphertext Attacks +// Against Protocols Based on the RSA Encryption Standard PKCS #1'', Daniel +// Bleichenbacher, Advances in Cryptology (Crypto '98), +func Decrypt(priv *PrivateKey, c1, c2 *big.Int) (msg []byte, err error) { + s := new(big.Int).Exp(c1, priv.X, priv.P) + s.ModInverse(s, priv.P) + s.Mul(s, c2) + s.Mod(s, priv.P) + em := s.Bytes() + + firstByteIsTwo := subtle.ConstantTimeByteEq(em[0], 2) + + // The remainder of the plaintext must be a string of non-zero random + // octets, followed by a 0, followed by the message. + // lookingForIndex: 1 iff we are still looking for the zero. + // index: the offset of the first zero byte. + var lookingForIndex, index int + lookingForIndex = 1 + + for i := 1; i < len(em); i++ { + equals0 := subtle.ConstantTimeByteEq(em[i], 0) + index = subtle.ConstantTimeSelect(lookingForIndex&equals0, i, index) + lookingForIndex = subtle.ConstantTimeSelect(equals0, 0, lookingForIndex) + } + + if firstByteIsTwo != 1 || lookingForIndex != 0 || index < 9 { + return nil, errors.New("elgamal: decryption error") + } + return em[index+1:], nil +} + +// nonZeroRandomBytes fills the given slice with non-zero random octets. +func nonZeroRandomBytes(s []byte, rand io.Reader) (err error) { + _, err = io.ReadFull(rand, s) + if err != nil { + return + } + + for i := 0; i < len(s); i++ { + for s[i] == 0 { + _, err = io.ReadFull(rand, s[i:i+1]) + if err != nil { + return + } + } + } + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/elgamal/elgamal_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/elgamal/elgamal_test.go new file mode 100644 index 00000000..c4f99f5c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/elgamal/elgamal_test.go @@ -0,0 +1,49 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package elgamal + +import ( + "bytes" + "crypto/rand" + "math/big" + "testing" +) + +// This is the 1024-bit MODP group from RFC 5114, section 2.1: +const primeHex = "B10B8F96A080E01DDE92DE5EAE5D54EC52C99FBCFB06A3C69A6A9DCA52D23B616073E28675A23D189838EF1E2EE652C013ECB4AEA906112324975C3CD49B83BFACCBDD7D90C4BD7098488E9C219A73724EFFD6FAE5644738FAA31A4FF55BCCC0A151AF5F0DC8B4BD45BF37DF365C1A65E68CFDA76D4DA708DF1FB2BC2E4A4371" + +const generatorHex = "A4D1CBD5C3FD34126765A442EFB99905F8104DD258AC507FD6406CFF14266D31266FEA1E5C41564B777E690F5504F213160217B4B01B886A5E91547F9E2749F4D7FBD7D3B9A92EE1909D0D2263F80A76A6A24C087A091F531DBF0A0169B6A28AD662A4D18E73AFA32D779D5918D08BC8858F4DCEF97C2A24855E6EEB22B3B2E5" + +func fromHex(hex string) *big.Int { + n, ok := new(big.Int).SetString(hex, 16) + if !ok { + panic("failed to parse hex number") + } + return n +} + +func TestEncryptDecrypt(t *testing.T) { + priv := &PrivateKey{ + PublicKey: PublicKey{ + G: fromHex(generatorHex), + P: fromHex(primeHex), + }, + X: fromHex("42"), + } + priv.Y = new(big.Int).Exp(priv.G, priv.X, priv.P) + + message := []byte("hello world") + c1, c2, err := Encrypt(rand.Reader, &priv.PublicKey, message) + if err != nil { + t.Errorf("error encrypting: %s", err) + } + message2, err := Decrypt(priv, c1, c2) + if err != nil { + t.Errorf("error decrypting: %s", err) + } + if !bytes.Equal(message2, message) { + t.Errorf("decryption failed, got: %x, want: %x", message2, message) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/errors/errors.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/errors/errors.go new file mode 100644 index 00000000..cb3f3196 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/errors/errors.go @@ -0,0 +1,64 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package errors contains common error types for the OpenPGP packages. +package errors + +import ( + "strconv" +) + +// A StructuralError is returned when OpenPGP data is found to be syntactically +// invalid. +type StructuralError string + +func (s StructuralError) Error() string { + return "openpgp: invalid data: " + string(s) +} + +// UnsupportedError indicates that, although the OpenPGP data is valid, it +// makes use of currently unimplemented features. +type UnsupportedError string + +func (s UnsupportedError) Error() string { + return "openpgp: unsupported feature: " + string(s) +} + +// InvalidArgumentError indicates that the caller is in error and passed an +// incorrect value. +type InvalidArgumentError string + +func (i InvalidArgumentError) Error() string { + return "openpgp: invalid argument: " + string(i) +} + +// SignatureError indicates that a syntactically valid signature failed to +// validate. +type SignatureError string + +func (b SignatureError) Error() string { + return "openpgp: invalid signature: " + string(b) +} + +type keyIncorrectError int + +func (ki keyIncorrectError) Error() string { + return "openpgp: incorrect key" +} + +var ErrKeyIncorrect error = keyIncorrectError(0) + +type unknownIssuerError int + +func (unknownIssuerError) Error() string { + return "openpgp: signature made by unknown entity" +} + +var ErrUnknownIssuer error = unknownIssuerError(0) + +type UnknownPacketTypeError uint8 + +func (upte UnknownPacketTypeError) Error() string { + return "openpgp: unknown packet type: " + strconv.Itoa(int(upte)) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/keys.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/keys.go new file mode 100644 index 00000000..f4f03518 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/keys.go @@ -0,0 +1,563 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package openpgp + +import ( + "code.google.com/p/go.crypto/openpgp/armor" + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/packet" + "crypto/rsa" + "io" + "time" +) + +// PublicKeyType is the armor type for a PGP public key. +var PublicKeyType = "PGP PUBLIC KEY BLOCK" + +// PrivateKeyType is the armor type for a PGP private key. +var PrivateKeyType = "PGP PRIVATE KEY BLOCK" + +// An Entity represents the components of an OpenPGP key: a primary public key +// (which must be a signing key), one or more identities claimed by that key, +// and zero or more subkeys, which may be encryption keys. +type Entity struct { + PrimaryKey *packet.PublicKey + PrivateKey *packet.PrivateKey + Identities map[string]*Identity // indexed by Identity.Name + Subkeys []Subkey +} + +// An Identity represents an identity claimed by an Entity and zero or more +// assertions by other entities about that claim. +type Identity struct { + Name string // by convention, has the form "Full Name (comment) " + UserId *packet.UserId + SelfSignature *packet.Signature + Signatures []*packet.Signature +} + +// A Subkey is an additional public key in an Entity. Subkeys can be used for +// encryption. +type Subkey struct { + PublicKey *packet.PublicKey + PrivateKey *packet.PrivateKey + Sig *packet.Signature +} + +// A Key identifies a specific public key in an Entity. This is either the +// Entity's primary key or a subkey. +type Key struct { + Entity *Entity + PublicKey *packet.PublicKey + PrivateKey *packet.PrivateKey + SelfSignature *packet.Signature +} + +// A KeyRing provides access to public and private keys. +type KeyRing interface { + // KeysById returns the set of keys that have the given key id. + KeysById(id uint64) []Key + // DecryptionKeys returns all private keys that are valid for + // decryption. + DecryptionKeys() []Key +} + +// primaryIdentity returns the Identity marked as primary or the first identity +// if none are so marked. +func (e *Entity) primaryIdentity() *Identity { + var firstIdentity *Identity + for _, ident := range e.Identities { + if firstIdentity == nil { + firstIdentity = ident + } + if ident.SelfSignature.IsPrimaryId != nil && *ident.SelfSignature.IsPrimaryId { + return ident + } + } + return firstIdentity +} + +// encryptionKey returns the best candidate Key for encrypting a message to the +// given Entity. +func (e *Entity) encryptionKey(now time.Time) (Key, bool) { + candidateSubkey := -1 + + for i, subkey := range e.Subkeys { + if subkey.Sig.FlagsValid && + subkey.Sig.FlagEncryptCommunications && + subkey.PublicKey.PubKeyAlgo.CanEncrypt() && + !subkey.Sig.KeyExpired(now) { + candidateSubkey = i + break + } + } + + if candidateSubkey != -1 { + subkey := e.Subkeys[candidateSubkey] + return Key{e, subkey.PublicKey, subkey.PrivateKey, subkey.Sig}, true + } + + // If we don't have any candidate subkeys for encryption and + // the primary key doesn't have any usage metadata then we + // assume that the primary key is ok. Or, if the primary key is + // marked as ok to encrypt to, then we can obviously use it. + i := e.primaryIdentity() + if !i.SelfSignature.FlagsValid || i.SelfSignature.FlagEncryptCommunications && + e.PrimaryKey.PubKeyAlgo.CanEncrypt() && + !i.SelfSignature.KeyExpired(now) { + return Key{e, e.PrimaryKey, e.PrivateKey, i.SelfSignature}, true + } + + // This Entity appears to be signing only. + return Key{}, false +} + +// signingKey return the best candidate Key for signing a message with this +// Entity. +func (e *Entity) signingKey(now time.Time) (Key, bool) { + candidateSubkey := -1 + + for i, subkey := range e.Subkeys { + if subkey.Sig.FlagsValid && + subkey.Sig.FlagSign && + subkey.PublicKey.PubKeyAlgo.CanSign() && + !subkey.Sig.KeyExpired(now) { + candidateSubkey = i + break + } + } + + if candidateSubkey != -1 { + subkey := e.Subkeys[candidateSubkey] + return Key{e, subkey.PublicKey, subkey.PrivateKey, subkey.Sig}, true + } + + // If we have no candidate subkey then we assume that it's ok to sign + // with the primary key. + i := e.primaryIdentity() + if !i.SelfSignature.FlagsValid || i.SelfSignature.FlagSign && + !i.SelfSignature.KeyExpired(now) { + return Key{e, e.PrimaryKey, e.PrivateKey, i.SelfSignature}, true + } + + return Key{}, false +} + +// An EntityList contains one or more Entities. +type EntityList []*Entity + +// KeysById returns the set of keys that have the given key id. +func (el EntityList) KeysById(id uint64) (keys []Key) { + for _, e := range el { + if e.PrimaryKey.KeyId == id { + var selfSig *packet.Signature + for _, ident := range e.Identities { + if selfSig == nil { + selfSig = ident.SelfSignature + } else if ident.SelfSignature.IsPrimaryId != nil && *ident.SelfSignature.IsPrimaryId { + selfSig = ident.SelfSignature + break + } + } + keys = append(keys, Key{e, e.PrimaryKey, e.PrivateKey, selfSig}) + } + + for _, subKey := range e.Subkeys { + if subKey.PublicKey.KeyId == id { + keys = append(keys, Key{e, subKey.PublicKey, subKey.PrivateKey, subKey.Sig}) + } + } + } + return +} + +// DecryptionKeys returns all private keys that are valid for decryption. +func (el EntityList) DecryptionKeys() (keys []Key) { + for _, e := range el { + for _, subKey := range e.Subkeys { + if subKey.PrivateKey != nil && (!subKey.Sig.FlagsValid || subKey.Sig.FlagEncryptStorage || subKey.Sig.FlagEncryptCommunications) { + keys = append(keys, Key{e, subKey.PublicKey, subKey.PrivateKey, subKey.Sig}) + } + } + } + return +} + +// ReadArmoredKeyRing reads one or more public/private keys from an armor keyring file. +func ReadArmoredKeyRing(r io.Reader) (EntityList, error) { + block, err := armor.Decode(r) + if err == io.EOF { + return nil, errors.InvalidArgumentError("no armored data found") + } + if err != nil { + return nil, err + } + if block.Type != PublicKeyType && block.Type != PrivateKeyType { + return nil, errors.InvalidArgumentError("expected public or private key block, got: " + block.Type) + } + + return ReadKeyRing(block.Body) +} + +// ReadKeyRing reads one or more public/private keys. Unsupported keys are +// ignored as long as at least a single valid key is found. +func ReadKeyRing(r io.Reader) (el EntityList, err error) { + packets := packet.NewReader(r) + var lastUnsupportedError error + + for { + var e *Entity + e, err = ReadEntity(packets) + if err != nil { + // TODO: warn about skipped unsupported/unreadable keys + if _, ok := err.(errors.UnsupportedError); ok { + lastUnsupportedError = err + err = readToNextPublicKey(packets) + } else if _, ok := err.(errors.StructuralError); ok { + // Skip unreadable, badly-formatted keys + lastUnsupportedError = err + err = readToNextPublicKey(packets) + } + if err == io.EOF { + err = nil + break + } + if err != nil { + el = nil + break + } + } else { + el = append(el, e) + } + } + + if len(el) == 0 && err == nil { + err = lastUnsupportedError + } + return +} + +// readToNextPublicKey reads packets until the start of the entity and leaves +// the first packet of the new entity in the Reader. +func readToNextPublicKey(packets *packet.Reader) (err error) { + var p packet.Packet + for { + p, err = packets.Next() + if err == io.EOF { + return + } else if err != nil { + if _, ok := err.(errors.UnsupportedError); ok { + err = nil + continue + } + return + } + + if pk, ok := p.(*packet.PublicKey); ok && !pk.IsSubkey { + packets.Unread(p) + return + } + } + + panic("unreachable") +} + +// ReadEntity reads an entity (public key, identities, subkeys etc) from the +// given Reader. +func ReadEntity(packets *packet.Reader) (*Entity, error) { + e := new(Entity) + e.Identities = make(map[string]*Identity) + + p, err := packets.Next() + if err != nil { + return nil, err + } + + var ok bool + if e.PrimaryKey, ok = p.(*packet.PublicKey); !ok { + if e.PrivateKey, ok = p.(*packet.PrivateKey); !ok { + packets.Unread(p) + return nil, errors.StructuralError("first packet was not a public/private key") + } else { + e.PrimaryKey = &e.PrivateKey.PublicKey + } + } + + if !e.PrimaryKey.PubKeyAlgo.CanSign() { + return nil, errors.StructuralError("primary key cannot be used for signatures") + } + + var current *Identity +EachPacket: + for { + p, err := packets.Next() + if err == io.EOF { + break + } else if err != nil { + return nil, err + } + + switch pkt := p.(type) { + case *packet.UserId: + current = new(Identity) + current.Name = pkt.Id + current.UserId = pkt + e.Identities[pkt.Id] = current + + for { + p, err = packets.Next() + if err == io.EOF { + return nil, io.ErrUnexpectedEOF + } else if err != nil { + return nil, err + } + + sig, ok := p.(*packet.Signature) + if !ok { + return nil, errors.StructuralError("user ID packet not followed by self-signature") + } + + if (sig.SigType == packet.SigTypePositiveCert || sig.SigType == packet.SigTypeGenericCert) && sig.IssuerKeyId != nil && *sig.IssuerKeyId == e.PrimaryKey.KeyId { + if err = e.PrimaryKey.VerifyUserIdSignature(pkt.Id, sig); err != nil { + return nil, errors.StructuralError("user ID self-signature invalid: " + err.Error()) + } + current.SelfSignature = sig + break + } + current.Signatures = append(current.Signatures, sig) + } + case *packet.Signature: + if current == nil { + return nil, errors.StructuralError("signature packet found before user id packet") + } + current.Signatures = append(current.Signatures, pkt) + case *packet.PrivateKey: + if pkt.IsSubkey == false { + packets.Unread(p) + break EachPacket + } + err = addSubkey(e, packets, &pkt.PublicKey, pkt) + if err != nil { + return nil, err + } + case *packet.PublicKey: + if pkt.IsSubkey == false { + packets.Unread(p) + break EachPacket + } + err = addSubkey(e, packets, pkt, nil) + if err != nil { + return nil, err + } + default: + // we ignore unknown packets + } + } + + if len(e.Identities) == 0 { + return nil, errors.StructuralError("entity without any identities") + } + + return e, nil +} + +func addSubkey(e *Entity, packets *packet.Reader, pub *packet.PublicKey, priv *packet.PrivateKey) error { + var subKey Subkey + subKey.PublicKey = pub + subKey.PrivateKey = priv + p, err := packets.Next() + if err == io.EOF { + return io.ErrUnexpectedEOF + } + if err != nil { + return errors.StructuralError("subkey signature invalid: " + err.Error()) + } + var ok bool + subKey.Sig, ok = p.(*packet.Signature) + if !ok { + return errors.StructuralError("subkey packet not followed by signature") + } + if subKey.Sig.SigType != packet.SigTypeSubkeyBinding { + return errors.StructuralError("subkey signature with wrong type") + } + err = e.PrimaryKey.VerifyKeySignature(subKey.PublicKey, subKey.Sig) + if err != nil { + return errors.StructuralError("subkey signature invalid: " + err.Error()) + } + e.Subkeys = append(e.Subkeys, subKey) + return nil +} + +const defaultRSAKeyBits = 2048 + +// NewEntity returns an Entity that contains a fresh RSA/RSA keypair with a +// single identity composed of the given full name, comment and email, any of +// which may be empty but must not contain any of "()<>\x00". +// If config is nil, sensible defaults will be used. +func NewEntity(name, comment, email string, config *packet.Config) (*Entity, error) { + currentTime := config.Now() + + uid := packet.NewUserId(name, comment, email) + if uid == nil { + return nil, errors.InvalidArgumentError("user id field contained invalid characters") + } + signingPriv, err := rsa.GenerateKey(config.Random(), defaultRSAKeyBits) + if err != nil { + return nil, err + } + encryptingPriv, err := rsa.GenerateKey(config.Random(), defaultRSAKeyBits) + if err != nil { + return nil, err + } + + e := &Entity{ + PrimaryKey: packet.NewRSAPublicKey(currentTime, &signingPriv.PublicKey), + PrivateKey: packet.NewRSAPrivateKey(currentTime, signingPriv), + Identities: make(map[string]*Identity), + } + isPrimaryId := true + e.Identities[uid.Id] = &Identity{ + Name: uid.Name, + UserId: uid, + SelfSignature: &packet.Signature{ + CreationTime: currentTime, + SigType: packet.SigTypePositiveCert, + PubKeyAlgo: packet.PubKeyAlgoRSA, + Hash: config.Hash(), + IsPrimaryId: &isPrimaryId, + FlagsValid: true, + FlagSign: true, + FlagCertify: true, + IssuerKeyId: &e.PrimaryKey.KeyId, + }, + } + + e.Subkeys = make([]Subkey, 1) + e.Subkeys[0] = Subkey{ + PublicKey: packet.NewRSAPublicKey(currentTime, &encryptingPriv.PublicKey), + PrivateKey: packet.NewRSAPrivateKey(currentTime, encryptingPriv), + Sig: &packet.Signature{ + CreationTime: currentTime, + SigType: packet.SigTypeSubkeyBinding, + PubKeyAlgo: packet.PubKeyAlgoRSA, + Hash: config.Hash(), + FlagsValid: true, + FlagEncryptStorage: true, + FlagEncryptCommunications: true, + IssuerKeyId: &e.PrimaryKey.KeyId, + }, + } + e.Subkeys[0].PublicKey.IsSubkey = true + e.Subkeys[0].PrivateKey.IsSubkey = true + + return e, nil +} + +// SerializePrivate serializes an Entity, including private key material, to +// the given Writer. For now, it must only be used on an Entity returned from +// NewEntity. +// If config is nil, sensible defaults will be used. +func (e *Entity) SerializePrivate(w io.Writer, config *packet.Config) (err error) { + err = e.PrivateKey.Serialize(w) + if err != nil { + return + } + for _, ident := range e.Identities { + err = ident.UserId.Serialize(w) + if err != nil { + return + } + err = ident.SelfSignature.SignUserId(ident.UserId.Id, e.PrimaryKey, e.PrivateKey, config) + if err != nil { + return + } + err = ident.SelfSignature.Serialize(w) + if err != nil { + return + } + } + for _, subkey := range e.Subkeys { + err = subkey.PrivateKey.Serialize(w) + if err != nil { + return + } + err = subkey.Sig.SignKey(subkey.PublicKey, e.PrivateKey, config) + if err != nil { + return + } + err = subkey.Sig.Serialize(w) + if err != nil { + return + } + } + return nil +} + +// Serialize writes the public part of the given Entity to w. (No private +// key material will be output). +func (e *Entity) Serialize(w io.Writer) error { + err := e.PrimaryKey.Serialize(w) + if err != nil { + return err + } + for _, ident := range e.Identities { + err = ident.UserId.Serialize(w) + if err != nil { + return err + } + err = ident.SelfSignature.Serialize(w) + if err != nil { + return err + } + for _, sig := range ident.Signatures { + err = sig.Serialize(w) + if err != nil { + return err + } + } + } + for _, subkey := range e.Subkeys { + err = subkey.PublicKey.Serialize(w) + if err != nil { + return err + } + err = subkey.Sig.Serialize(w) + if err != nil { + return err + } + } + return nil +} + +// SignIdentity adds a signature to e, from signer, attesting that identity is +// associated with e. The provided identity must already be an element of +// e.Identities and the private key of signer must have been decrypted if +// necessary. +// If config is nil, sensible defaults will be used. +func (e *Entity) SignIdentity(identity string, signer *Entity, config *packet.Config) error { + if signer.PrivateKey == nil { + return errors.InvalidArgumentError("signing Entity must have a private key") + } + if signer.PrivateKey.Encrypted { + return errors.InvalidArgumentError("signing Entity's private key must be decrypted") + } + ident, ok := e.Identities[identity] + if !ok { + return errors.InvalidArgumentError("given identity string not found in Entity") + } + + sig := &packet.Signature{ + SigType: packet.SigTypeGenericCert, + PubKeyAlgo: signer.PrivateKey.PubKeyAlgo, + Hash: config.Hash(), + CreationTime: config.Now(), + IssuerKeyId: &signer.PrivateKey.KeyId, + } + if err := sig.SignKey(e.PrimaryKey, signer.PrivateKey, config); err != nil { + return err + } + ident.Signatures = append(ident.Signatures, sig) + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/keys_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/keys_test.go new file mode 100644 index 00000000..d0d9621e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/keys_test.go @@ -0,0 +1,41 @@ +package openpgp + +import ( + "testing" + "time" +) + +func TestKeyExpiry(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(expiringKeyHex)) + entity := kring[0] + + const timeFormat = "2006-01-02" + time1, _ := time.Parse(timeFormat, "2013-07-01") + // The expiringKeyHex key is structured as: + // + // pub 1024R/5E237D8C created: 2013-07-01 expires: 2013-07-31 usage: SC + // sub 1024R/1ABB25A0 created: 2013-07-01 expires: 2013-07-08 usage: E + // sub 1024R/96A672F5 created: 2013-07-01 expires: 2013-07-31 usage: E + // + // So this should select the first, non-expired encryption key. + key, _ := entity.encryptionKey(time1) + if id := key.PublicKey.KeyIdShortString(); id != "1ABB25A0" { + t.Errorf("Expected key 1ABB25A0 at time %s, but got key %s", time1.Format(timeFormat), id) + } + + // Once the first encryption subkey has expired, the second should be + // selected. + time2, _ := time.Parse(timeFormat, "2013-07-09") + key, _ = entity.encryptionKey(time2) + if id := key.PublicKey.KeyIdShortString(); id != "96A672F5" { + t.Errorf("Expected key 96A672F5 at time %s, but got key %s", time2.Format(timeFormat), id) + } + + // Once all the keys have expired, nothing should be returned. + time3, _ := time.Parse(timeFormat, "2013-08-01") + if key, ok := entity.encryptionKey(time3); ok { + t.Errorf("Expected no key at time %s, but got key %s", time3.Format(timeFormat), key.PublicKey.KeyIdShortString()) + } +} + +const expiringKeyHex = "988d0451d1ec5d010400ba3385721f2dc3f4ab096b2ee867ab77213f0a27a8538441c35d2fa225b08798a1439a66a5150e6bdc3f40f5d28d588c712394c632b6299f77db8c0d48d37903fb72ebd794d61be6aa774688839e5fdecfe06b2684cc115d240c98c66cb1ef22ae84e3aa0c2b0c28665c1e7d4d044e7f270706193f5223c8d44e0d70b7b8da830011010001b40f4578706972792074657374206b657988be041301020028050251d1ec5d021b03050900278d00060b090807030206150802090a0b0416020301021e01021780000a091072589ad75e237d8c033503fd10506d72837834eb7f994117740723adc39227104b0d326a1161871c0b415d25b4aedef946ca77ea4c05af9c22b32cf98be86ab890111fced1ee3f75e87b7cc3c00dc63bbc85dfab91c0dc2ad9de2c4d13a34659333a85c6acc1a669c5e1d6cecb0cf1e56c10e72d855ae177ddc9e766f9b2dda57ccbb75f57156438bbdb4e42b88d0451d1ec5d0104009c64906559866c5cb61578f5846a94fcee142a489c9b41e67b12bb54cfe86eb9bc8566460f9a720cb00d6526fbccfd4f552071a8e3f7744b1882d01036d811ee5a3fb91a1c568055758f43ba5d2c6a9676b012f3a1a89e47bbf624f1ad571b208f3cc6224eb378f1645dd3d47584463f9eadeacfd1ce6f813064fbfdcc4b5a53001101000188a504180102000f021b0c050251d1f06b050900093e89000a091072589ad75e237d8c20e00400ab8310a41461425b37889c4da28129b5fae6084fafbc0a47dd1adc74a264c6e9c9cc125f40462ee1433072a58384daef88c961c390ed06426a81b464a53194c4e291ddd7e2e2ba3efced01537d713bd111f48437bde2363446200995e8e0d4e528dda377fd1e8f8ede9c8e2198b393bd86852ce7457a7e3daf74d510461a5b77b88d0451d1ece8010400b3a519f83ab0010307e83bca895170acce8964a044190a2b368892f7a244758d9fc193482648acb1fb9780d28cc22d171931f38bb40279389fc9bf2110876d4f3db4fcfb13f22f7083877fe56592b3b65251312c36f83ffcb6d313c6a17f197dd471f0712aad15a8537b435a92471ba2e5b0c72a6c72536c3b567c558d7b6051001101000188a504180102000f021b0c050251d1f07b050900279091000a091072589ad75e237d8ce69e03fe286026afacf7c97ee20673864d4459a2240b5655219950643c7dba0ac384b1d4359c67805b21d98211f7b09c2a0ccf6410c8c04d4ff4a51293725d8d6570d9d8bb0e10c07d22357caeb49626df99c180be02d77d1fe8ed25e7a54481237646083a9f89a11566cd20b9e995b1487c5f9e02aeb434f3a1897cd416dd0a87861838da3e9e" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/compressed.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/compressed.go new file mode 100644 index 00000000..f1bd2f53 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/compressed.go @@ -0,0 +1,123 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "code.google.com/p/go.crypto/openpgp/errors" + "compress/bzip2" + "compress/flate" + "compress/zlib" + "io" + "strconv" +) + +// Compressed represents a compressed OpenPGP packet. The decompressed contents +// will contain more OpenPGP packets. See RFC 4880, section 5.6. +type Compressed struct { + Body io.Reader +} + +const ( + NoCompression = flate.NoCompression + BestSpeed = flate.BestSpeed + BestCompression = flate.BestCompression + DefaultCompression = flate.DefaultCompression +) + +// CompressionConfig contains compressor configuration settings. +type CompressionConfig struct { + // Level is the compression level to use. It must be set to + // between -1 and 9, with -1 causing the compressor to use the + // default compression level, 0 causing the compressor to use + // no compression and 1 to 9 representing increasing (better, + // slower) compression levels. If Level is less than -1 or + // more then 9, a non-nil error will be returned during + // encryption. See the constants above for convenient common + // settings for Level. + Level int +} + +func (c *Compressed) parse(r io.Reader) error { + var buf [1]byte + _, err := readFull(r, buf[:]) + if err != nil { + return err + } + + switch buf[0] { + case 1: + c.Body = flate.NewReader(r) + case 2: + c.Body, err = zlib.NewReader(r) + case 3: + c.Body = bzip2.NewReader(r) + default: + err = errors.UnsupportedError("unknown compression algorithm: " + strconv.Itoa(int(buf[0]))) + } + + return err +} + +// compressedWriterCloser represents the serialized compression stream +// header and the compressor. Its Close() method ensures that both the +// compressor and serialized stream header are closed. Its Write() +// method writes to the compressor. +type compressedWriteCloser struct { + sh io.Closer // Stream Header + c io.WriteCloser // Compressor +} + +func (cwc compressedWriteCloser) Write(p []byte) (int, error) { + return cwc.c.Write(p) +} + +func (cwc compressedWriteCloser) Close() (err error) { + err = cwc.c.Close() + if err != nil { + return err + } + + return cwc.sh.Close() +} + +// SerializeCompressed serializes a compressed data packet to w and +// returns a WriteCloser to which the literal data packets themselves +// can be written and which MUST be closed on completion. If cc is +// nil, sensible defaults will be used to configure the compression +// algorithm. +func SerializeCompressed(w io.WriteCloser, algo CompressionAlgo, cc *CompressionConfig) (literaldata io.WriteCloser, err error) { + compressed, err := serializeStreamHeader(w, packetTypeCompressed) + if err != nil { + return + } + + _, err = compressed.Write([]byte{uint8(algo)}) + if err != nil { + return + } + + level := DefaultCompression + if cc != nil { + level = cc.Level + } + + var compressor io.WriteCloser + switch algo { + case CompressionZIP: + compressor, err = flate.NewWriter(compressed, level) + case CompressionZLIB: + compressor, err = zlib.NewWriterLevel(compressed, level) + default: + s := strconv.Itoa(int(algo)) + err = errors.UnsupportedError("Unsupported compression algorithm: " + s) + } + if err != nil { + return + } + + literaldata = compressedWriteCloser{compressed, compressor} + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/compressed_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/compressed_test.go new file mode 100644 index 00000000..cb2d70bd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/compressed_test.go @@ -0,0 +1,41 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "encoding/hex" + "io" + "io/ioutil" + "testing" +) + +func TestCompressed(t *testing.T) { + packet, err := Read(readerFromHex(compressedHex)) + if err != nil { + t.Errorf("failed to read Compressed: %s", err) + return + } + + c, ok := packet.(*Compressed) + if !ok { + t.Error("didn't find Compressed packet") + return + } + + contents, err := ioutil.ReadAll(c.Body) + if err != nil && err != io.EOF { + t.Error(err) + return + } + + expected, _ := hex.DecodeString(compressedExpectedHex) + if !bytes.Equal(expected, contents) { + t.Errorf("got:%x want:%x", contents, expected) + } +} + +const compressedHex = "a3013b2d90c4e02b72e25f727e5e496a5e49b11e1700" +const compressedExpectedHex = "cb1062004d14c8fe636f6e74656e74732e0a" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/config.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/config.go new file mode 100644 index 00000000..8c4f213c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/config.go @@ -0,0 +1,70 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "crypto" + "crypto/rand" + "io" + "time" +) + +// Config collects a number of parameters along with sensible defaults. +// A nil *Config is valid and results in all default values. +type Config struct { + // Rand provides the source of entropy. + // If nil, the crypto/rand Reader is used. + Rand io.Reader + // DefaultHash is the default hash function to be used. + // If zero, SHA-256 is used. + DefaultHash crypto.Hash + // DefaultCipher is the cipher to be used. + // If zero, AES-128 is used. + DefaultCipher CipherFunction + // Time returns the current time as the number of seconds since the + // epoch. If Time is nil, time.Now is used. + Time func() time.Time + // DefaultCompressionAlgo is the compression algorithm to be + // applied to the plaintext before encryption. If zero, no + // compression is done. + DefaultCompressionAlgo CompressionAlgo + // CompressionConfig configures the compression settings. + CompressionConfig *CompressionConfig +} + +func (c *Config) Random() io.Reader { + if c == nil || c.Rand == nil { + return rand.Reader + } + return c.Rand +} + +func (c *Config) Hash() crypto.Hash { + if c == nil || uint(c.DefaultHash) == 0 { + return crypto.SHA256 + } + return c.DefaultHash +} + +func (c *Config) Cipher() CipherFunction { + if c == nil || uint8(c.DefaultCipher) == 0 { + return CipherAES128 + } + return c.DefaultCipher +} + +func (c *Config) Now() time.Time { + if c == nil || c.Time == nil { + return time.Now() + } + return c.Time() +} + +func (c *Config) Compression() CompressionAlgo { + if c == nil { + return CompressionNone + } + return c.DefaultCompressionAlgo +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/encrypted_key.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/encrypted_key.go new file mode 100644 index 00000000..be96bf80 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/encrypted_key.go @@ -0,0 +1,168 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "code.google.com/p/go.crypto/openpgp/elgamal" + "code.google.com/p/go.crypto/openpgp/errors" + "crypto/rsa" + "encoding/binary" + "io" + "math/big" + "strconv" +) + +const encryptedKeyVersion = 3 + +// EncryptedKey represents a public-key encrypted session key. See RFC 4880, +// section 5.1. +type EncryptedKey struct { + KeyId uint64 + Algo PublicKeyAlgorithm + CipherFunc CipherFunction // only valid after a successful Decrypt + Key []byte // only valid after a successful Decrypt + + encryptedMPI1, encryptedMPI2 []byte +} + +func (e *EncryptedKey) parse(r io.Reader) (err error) { + var buf [10]byte + _, err = readFull(r, buf[:]) + if err != nil { + return + } + if buf[0] != encryptedKeyVersion { + return errors.UnsupportedError("unknown EncryptedKey version " + strconv.Itoa(int(buf[0]))) + } + e.KeyId = binary.BigEndian.Uint64(buf[1:9]) + e.Algo = PublicKeyAlgorithm(buf[9]) + switch e.Algo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly: + e.encryptedMPI1, _, err = readMPI(r) + case PubKeyAlgoElGamal: + e.encryptedMPI1, _, err = readMPI(r) + if err != nil { + return + } + e.encryptedMPI2, _, err = readMPI(r) + } + _, err = consumeAll(r) + return +} + +func checksumKeyMaterial(key []byte) uint16 { + var checksum uint16 + for _, v := range key { + checksum += uint16(v) + } + return checksum +} + +// Decrypt decrypts an encrypted session key with the given private key. The +// private key must have been decrypted first. +// If config is nil, sensible defaults will be used. +func (e *EncryptedKey) Decrypt(priv *PrivateKey, config *Config) error { + var err error + var b []byte + + // TODO(agl): use session key decryption routines here to avoid + // padding oracle attacks. + switch priv.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly: + b, err = rsa.DecryptPKCS1v15(config.Random(), priv.PrivateKey.(*rsa.PrivateKey), e.encryptedMPI1) + case PubKeyAlgoElGamal: + c1 := new(big.Int).SetBytes(e.encryptedMPI1) + c2 := new(big.Int).SetBytes(e.encryptedMPI2) + b, err = elgamal.Decrypt(priv.PrivateKey.(*elgamal.PrivateKey), c1, c2) + default: + err = errors.InvalidArgumentError("cannot decrypted encrypted session key with private key of type " + strconv.Itoa(int(priv.PubKeyAlgo))) + } + + if err != nil { + return err + } + + e.CipherFunc = CipherFunction(b[0]) + e.Key = b[1 : len(b)-2] + expectedChecksum := uint16(b[len(b)-2])<<8 | uint16(b[len(b)-1]) + checksum := checksumKeyMaterial(e.Key) + if checksum != expectedChecksum { + return errors.StructuralError("EncryptedKey checksum incorrect") + } + + return nil +} + +// SerializeEncryptedKey serializes an encrypted key packet to w that contains +// key, encrypted to pub. +// If config is nil, sensible defaults will be used. +func SerializeEncryptedKey(w io.Writer, pub *PublicKey, cipherFunc CipherFunction, key []byte, config *Config) error { + var buf [10]byte + buf[0] = encryptedKeyVersion + binary.BigEndian.PutUint64(buf[1:9], pub.KeyId) + buf[9] = byte(pub.PubKeyAlgo) + + keyBlock := make([]byte, 1 /* cipher type */ +len(key)+2 /* checksum */) + keyBlock[0] = byte(cipherFunc) + copy(keyBlock[1:], key) + checksum := checksumKeyMaterial(key) + keyBlock[1+len(key)] = byte(checksum >> 8) + keyBlock[1+len(key)+1] = byte(checksum) + + switch pub.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly: + return serializeEncryptedKeyRSA(w, config.Random(), buf, pub.PublicKey.(*rsa.PublicKey), keyBlock) + case PubKeyAlgoElGamal: + return serializeEncryptedKeyElGamal(w, config.Random(), buf, pub.PublicKey.(*elgamal.PublicKey), keyBlock) + case PubKeyAlgoDSA, PubKeyAlgoRSASignOnly: + return errors.InvalidArgumentError("cannot encrypt to public key of type " + strconv.Itoa(int(pub.PubKeyAlgo))) + } + + return errors.UnsupportedError("encrypting a key to public key of type " + strconv.Itoa(int(pub.PubKeyAlgo))) +} + +func serializeEncryptedKeyRSA(w io.Writer, rand io.Reader, header [10]byte, pub *rsa.PublicKey, keyBlock []byte) error { + cipherText, err := rsa.EncryptPKCS1v15(rand, pub, keyBlock) + if err != nil { + return errors.InvalidArgumentError("RSA encryption failed: " + err.Error()) + } + + packetLen := 10 /* header length */ + 2 /* mpi size */ + len(cipherText) + + err = serializeHeader(w, packetTypeEncryptedKey, packetLen) + if err != nil { + return err + } + _, err = w.Write(header[:]) + if err != nil { + return err + } + return writeMPI(w, 8*uint16(len(cipherText)), cipherText) +} + +func serializeEncryptedKeyElGamal(w io.Writer, rand io.Reader, header [10]byte, pub *elgamal.PublicKey, keyBlock []byte) error { + c1, c2, err := elgamal.Encrypt(rand, pub, keyBlock) + if err != nil { + return errors.InvalidArgumentError("ElGamal encryption failed: " + err.Error()) + } + + packetLen := 10 /* header length */ + packetLen += 2 /* mpi size */ + (c1.BitLen()+7)/8 + packetLen += 2 /* mpi size */ + (c2.BitLen()+7)/8 + + err = serializeHeader(w, packetTypeEncryptedKey, packetLen) + if err != nil { + return err + } + _, err = w.Write(header[:]) + if err != nil { + return err + } + err = writeBig(w, c1) + if err != nil { + return err + } + return writeBig(w, c2) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/encrypted_key_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/encrypted_key_test.go new file mode 100644 index 00000000..0a8dcc6d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/encrypted_key_test.go @@ -0,0 +1,125 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "crypto/rsa" + "fmt" + "math/big" + "testing" +) + +func bigFromBase10(s string) *big.Int { + b, ok := new(big.Int).SetString(s, 10) + if !ok { + panic("bigFromBase10 failed") + } + return b +} + +var encryptedKeyPub = rsa.PublicKey{ + E: 65537, + N: bigFromBase10("115804063926007623305902631768113868327816898845124614648849934718568541074358183759250136204762053879858102352159854352727097033322663029387610959884180306668628526686121021235757016368038585212410610742029286439607686208110250133174279811431933746643015923132833417396844716207301518956640020862630546868823"), +} + +var encryptedKeyRSAPriv = &rsa.PrivateKey{ + PublicKey: encryptedKeyPub, + D: bigFromBase10("32355588668219869544751561565313228297765464314098552250409557267371233892496951383426602439009993875125222579159850054973310859166139474359774543943714622292329487391199285040721944491839695981199720170366763547754915493640685849961780092241140181198779299712578774460837139360803883139311171713302987058393"), +} + +var encryptedKeyPriv = &PrivateKey{ + PublicKey: PublicKey{ + PubKeyAlgo: PubKeyAlgoRSA, + }, + PrivateKey: encryptedKeyRSAPriv, +} + +func TestDecryptingEncryptedKey(t *testing.T) { + const encryptedKeyHex = "c18c032a67d68660df41c70104005789d0de26b6a50c985a02a13131ca829c413a35d0e6fa8d6842599252162808ac7439c72151c8c6183e76923fe3299301414d0c25a2f06a2257db3839e7df0ec964773f6e4c4ac7ff3b48c444237166dd46ba8ff443a5410dc670cb486672fdbe7c9dfafb75b4fea83af3a204fe2a7dfa86bd20122b4f3d2646cbeecb8f7be8" + const expectedKeyHex = "d930363f7e0308c333b9618617ea728963d8df993665ae7be1092d4926fd864b" + + p, err := Read(readerFromHex(encryptedKeyHex)) + if err != nil { + t.Errorf("error from Read: %s", err) + return + } + ek, ok := p.(*EncryptedKey) + if !ok { + t.Errorf("didn't parse an EncryptedKey, got %#v", p) + return + } + + if ek.KeyId != 0x2a67d68660df41c7 || ek.Algo != PubKeyAlgoRSA { + t.Errorf("unexpected EncryptedKey contents: %#v", ek) + return + } + + err = ek.Decrypt(encryptedKeyPriv, nil) + if err != nil { + t.Errorf("error from Decrypt: %s", err) + return + } + + if ek.CipherFunc != CipherAES256 { + t.Errorf("unexpected EncryptedKey contents: %#v", ek) + return + } + + keyHex := fmt.Sprintf("%x", ek.Key) + if keyHex != expectedKeyHex { + t.Errorf("bad key, got %s want %x", keyHex, expectedKeyHex) + } +} + +func TestEncryptingEncryptedKey(t *testing.T) { + key := []byte{1, 2, 3, 4} + const expectedKeyHex = "01020304" + const keyId = 42 + + pub := &PublicKey{ + PublicKey: &encryptedKeyPub, + KeyId: keyId, + PubKeyAlgo: PubKeyAlgoRSAEncryptOnly, + } + + buf := new(bytes.Buffer) + err := SerializeEncryptedKey(buf, pub, CipherAES128, key, nil) + if err != nil { + t.Errorf("error writing encrypted key packet: %s", err) + } + + p, err := Read(buf) + if err != nil { + t.Errorf("error from Read: %s", err) + return + } + ek, ok := p.(*EncryptedKey) + if !ok { + t.Errorf("didn't parse an EncryptedKey, got %#v", p) + return + } + + if ek.KeyId != keyId || ek.Algo != PubKeyAlgoRSAEncryptOnly { + t.Errorf("unexpected EncryptedKey contents: %#v", ek) + return + } + + err = ek.Decrypt(encryptedKeyPriv, nil) + if err != nil { + t.Errorf("error from Decrypt: %s", err) + return + } + + if ek.CipherFunc != CipherAES128 { + t.Errorf("unexpected EncryptedKey contents: %#v", ek) + return + } + + keyHex := fmt.Sprintf("%x", ek.Key) + if keyHex != expectedKeyHex { + t.Errorf("bad key, got %s want %x", keyHex, expectedKeyHex) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/literal.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/literal.go new file mode 100644 index 00000000..1a9ec6e5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/literal.go @@ -0,0 +1,89 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "encoding/binary" + "io" +) + +// LiteralData represents an encrypted file. See RFC 4880, section 5.9. +type LiteralData struct { + IsBinary bool + FileName string + Time uint32 // Unix epoch time. Either creation time or modification time. 0 means undefined. + Body io.Reader +} + +// ForEyesOnly returns whether the contents of the LiteralData have been marked +// as especially sensitive. +func (l *LiteralData) ForEyesOnly() bool { + return l.FileName == "_CONSOLE" +} + +func (l *LiteralData) parse(r io.Reader) (err error) { + var buf [256]byte + + _, err = readFull(r, buf[:2]) + if err != nil { + return + } + + l.IsBinary = buf[0] == 'b' + fileNameLen := int(buf[1]) + + _, err = readFull(r, buf[:fileNameLen]) + if err != nil { + return + } + + l.FileName = string(buf[:fileNameLen]) + + _, err = readFull(r, buf[:4]) + if err != nil { + return + } + + l.Time = binary.BigEndian.Uint32(buf[:4]) + l.Body = r + return +} + +// SerializeLiteral serializes a literal data packet to w and returns a +// WriteCloser to which the data itself can be written and which MUST be closed +// on completion. The fileName is truncated to 255 bytes. +func SerializeLiteral(w io.WriteCloser, isBinary bool, fileName string, time uint32) (plaintext io.WriteCloser, err error) { + var buf [4]byte + buf[0] = 't' + if isBinary { + buf[0] = 'b' + } + if len(fileName) > 255 { + fileName = fileName[:255] + } + buf[1] = byte(len(fileName)) + + inner, err := serializeStreamHeader(w, packetTypeLiteralData) + if err != nil { + return + } + + _, err = inner.Write(buf[:2]) + if err != nil { + return + } + _, err = inner.Write([]byte(fileName)) + if err != nil { + return + } + binary.BigEndian.PutUint32(buf[:], time) + _, err = inner.Write(buf[:]) + if err != nil { + return + } + + plaintext = inner + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/ocfb.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/ocfb.go new file mode 100644 index 00000000..ce2a33a5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/ocfb.go @@ -0,0 +1,143 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// OpenPGP CFB Mode. http://tools.ietf.org/html/rfc4880#section-13.9 + +package packet + +import ( + "crypto/cipher" +) + +type ocfbEncrypter struct { + b cipher.Block + fre []byte + outUsed int +} + +// An OCFBResyncOption determines if the "resynchronization step" of OCFB is +// performed. +type OCFBResyncOption bool + +const ( + OCFBResync OCFBResyncOption = true + OCFBNoResync OCFBResyncOption = false +) + +// NewOCFBEncrypter returns a cipher.Stream which encrypts data with OpenPGP's +// cipher feedback mode using the given cipher.Block, and an initial amount of +// ciphertext. randData must be random bytes and be the same length as the +// cipher.Block's block size. Resync determines if the "resynchronization step" +// from RFC 4880, 13.9 step 7 is performed. Different parts of OpenPGP vary on +// this point. +func NewOCFBEncrypter(block cipher.Block, randData []byte, resync OCFBResyncOption) (cipher.Stream, []byte) { + blockSize := block.BlockSize() + if len(randData) != blockSize { + return nil, nil + } + + x := &ocfbEncrypter{ + b: block, + fre: make([]byte, blockSize), + outUsed: 0, + } + prefix := make([]byte, blockSize+2) + + block.Encrypt(x.fre, x.fre) + for i := 0; i < blockSize; i++ { + prefix[i] = randData[i] ^ x.fre[i] + } + + block.Encrypt(x.fre, prefix[:blockSize]) + prefix[blockSize] = x.fre[0] ^ randData[blockSize-2] + prefix[blockSize+1] = x.fre[1] ^ randData[blockSize-1] + + if resync { + block.Encrypt(x.fre, prefix[2:]) + } else { + x.fre[0] = prefix[blockSize] + x.fre[1] = prefix[blockSize+1] + x.outUsed = 2 + } + return x, prefix +} + +func (x *ocfbEncrypter) XORKeyStream(dst, src []byte) { + for i := 0; i < len(src); i++ { + if x.outUsed == len(x.fre) { + x.b.Encrypt(x.fre, x.fre) + x.outUsed = 0 + } + + x.fre[x.outUsed] ^= src[i] + dst[i] = x.fre[x.outUsed] + x.outUsed++ + } +} + +type ocfbDecrypter struct { + b cipher.Block + fre []byte + outUsed int +} + +// NewOCFBDecrypter returns a cipher.Stream which decrypts data with OpenPGP's +// cipher feedback mode using the given cipher.Block. Prefix must be the first +// blockSize + 2 bytes of the ciphertext, where blockSize is the cipher.Block's +// block size. If an incorrect key is detected then nil is returned. On +// successful exit, blockSize+2 bytes of decrypted data are written into +// prefix. Resync determines if the "resynchronization step" from RFC 4880, +// 13.9 step 7 is performed. Different parts of OpenPGP vary on this point. +func NewOCFBDecrypter(block cipher.Block, prefix []byte, resync OCFBResyncOption) cipher.Stream { + blockSize := block.BlockSize() + if len(prefix) != blockSize+2 { + return nil + } + + x := &ocfbDecrypter{ + b: block, + fre: make([]byte, blockSize), + outUsed: 0, + } + prefixCopy := make([]byte, len(prefix)) + copy(prefixCopy, prefix) + + block.Encrypt(x.fre, x.fre) + for i := 0; i < blockSize; i++ { + prefixCopy[i] ^= x.fre[i] + } + + block.Encrypt(x.fre, prefix[:blockSize]) + prefixCopy[blockSize] ^= x.fre[0] + prefixCopy[blockSize+1] ^= x.fre[1] + + if prefixCopy[blockSize-2] != prefixCopy[blockSize] || + prefixCopy[blockSize-1] != prefixCopy[blockSize+1] { + return nil + } + + if resync { + block.Encrypt(x.fre, prefix[2:]) + } else { + x.fre[0] = prefix[blockSize] + x.fre[1] = prefix[blockSize+1] + x.outUsed = 2 + } + copy(prefix, prefixCopy) + return x +} + +func (x *ocfbDecrypter) XORKeyStream(dst, src []byte) { + for i := 0; i < len(src); i++ { + if x.outUsed == len(x.fre) { + x.b.Encrypt(x.fre, x.fre) + x.outUsed = 0 + } + + c := src[i] + dst[i] = x.fre[x.outUsed] ^ src[i] + x.fre[x.outUsed] = c + x.outUsed++ + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/ocfb_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/ocfb_test.go new file mode 100644 index 00000000..91022c04 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/ocfb_test.go @@ -0,0 +1,46 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "crypto/aes" + "crypto/rand" + "testing" +) + +var commonKey128 = []byte{0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c} + +func testOCFB(t *testing.T, resync OCFBResyncOption) { + block, err := aes.NewCipher(commonKey128) + if err != nil { + t.Error(err) + return + } + + plaintext := []byte("this is the plaintext, which is long enough to span several blocks.") + randData := make([]byte, block.BlockSize()) + rand.Reader.Read(randData) + ocfb, prefix := NewOCFBEncrypter(block, randData, resync) + ciphertext := make([]byte, len(plaintext)) + ocfb.XORKeyStream(ciphertext, plaintext) + + ocfbdec := NewOCFBDecrypter(block, prefix, resync) + if ocfbdec == nil { + t.Errorf("NewOCFBDecrypter failed (resync: %t)", resync) + return + } + plaintextCopy := make([]byte, len(plaintext)) + ocfbdec.XORKeyStream(plaintextCopy, ciphertext) + + if !bytes.Equal(plaintextCopy, plaintext) { + t.Errorf("got: %x, want: %x (resync: %t)", plaintextCopy, plaintext, resync) + } +} + +func TestOCFB(t *testing.T) { + testOCFB(t, OCFBNoResync) + testOCFB(t, OCFBResync) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/one_pass_signature.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/one_pass_signature.go new file mode 100644 index 00000000..8b5c547e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/one_pass_signature.go @@ -0,0 +1,73 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/s2k" + "crypto" + "encoding/binary" + "io" + "strconv" +) + +// OnePassSignature represents a one-pass signature packet. See RFC 4880, +// section 5.4. +type OnePassSignature struct { + SigType SignatureType + Hash crypto.Hash + PubKeyAlgo PublicKeyAlgorithm + KeyId uint64 + IsLast bool +} + +const onePassSignatureVersion = 3 + +func (ops *OnePassSignature) parse(r io.Reader) (err error) { + var buf [13]byte + + _, err = readFull(r, buf[:]) + if err != nil { + return + } + if buf[0] != onePassSignatureVersion { + err = errors.UnsupportedError("one-pass-signature packet version " + strconv.Itoa(int(buf[0]))) + } + + var ok bool + ops.Hash, ok = s2k.HashIdToHash(buf[2]) + if !ok { + return errors.UnsupportedError("hash function: " + strconv.Itoa(int(buf[2]))) + } + + ops.SigType = SignatureType(buf[1]) + ops.PubKeyAlgo = PublicKeyAlgorithm(buf[3]) + ops.KeyId = binary.BigEndian.Uint64(buf[4:12]) + ops.IsLast = buf[12] != 0 + return +} + +// Serialize marshals the given OnePassSignature to w. +func (ops *OnePassSignature) Serialize(w io.Writer) error { + var buf [13]byte + buf[0] = onePassSignatureVersion + buf[1] = uint8(ops.SigType) + var ok bool + buf[2], ok = s2k.HashToHashId(ops.Hash) + if !ok { + return errors.UnsupportedError("hash type: " + strconv.Itoa(int(ops.Hash))) + } + buf[3] = uint8(ops.PubKeyAlgo) + binary.BigEndian.PutUint64(buf[4:12], ops.KeyId) + if ops.IsLast { + buf[12] = 1 + } + + if err := serializeHeader(w, packetTypeOnePassSignature, len(buf)); err != nil { + return err + } + _, err := w.Write(buf[:]) + return err +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/opaque.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/opaque.go new file mode 100644 index 00000000..5f9ad44c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/opaque.go @@ -0,0 +1,161 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/errors" + "io" + "io/ioutil" +) + +// OpaquePacket represents an OpenPGP packet as raw, unparsed data. This is +// useful for splitting and storing the original packet contents separately, +// handling unsupported packet types or accessing parts of the packet not yet +// implemented by this package. +type OpaquePacket struct { + // Packet type + Tag uint8 + // Reason why the packet was parsed opaquely + Reason error + // Binary contents of the packet data + Contents []byte +} + +func (op *OpaquePacket) parse(r io.Reader) (err error) { + op.Contents, err = ioutil.ReadAll(r) + return +} + +// Serialize marshals the packet to a writer in its original form, including +// the packet header. +func (op *OpaquePacket) Serialize(w io.Writer) (err error) { + err = serializeHeader(w, packetType(op.Tag), len(op.Contents)) + if err == nil { + _, err = w.Write(op.Contents) + } + return +} + +// Parse attempts to parse the opaque contents into a structure supported by +// this package. If the packet is not known then the result will be another +// OpaquePacket. +func (op *OpaquePacket) Parse() (p Packet, err error) { + hdr := bytes.NewBuffer(nil) + err = serializeHeader(hdr, packetType(op.Tag), len(op.Contents)) + if err != nil { + op.Reason = err + return op, err + } + p, err = Read(io.MultiReader(hdr, bytes.NewBuffer(op.Contents))) + if err != nil { + op.Reason = err + p = op + } + return +} + +// OpaqueReader reads OpaquePackets from an io.Reader. +type OpaqueReader struct { + r io.Reader +} + +func NewOpaqueReader(r io.Reader) *OpaqueReader { + return &OpaqueReader{r: r} +} + +// Read the next OpaquePacket. +func (or *OpaqueReader) Next() (op *OpaquePacket, err error) { + tag, _, contents, err := readHeader(or.r) + if err != nil { + return + } + op = &OpaquePacket{Tag: uint8(tag), Reason: err} + err = op.parse(contents) + if err != nil { + consumeAll(contents) + } + return +} + +// OpaqueSubpacket represents an unparsed OpenPGP subpacket, +// as found in signature and user attribute packets. +type OpaqueSubpacket struct { + SubType uint8 + Contents []byte +} + +// OpaqueSubpackets extracts opaque, unparsed OpenPGP subpackets from +// their byte representation. +func OpaqueSubpackets(contents []byte) (result []*OpaqueSubpacket, err error) { + var ( + subHeaderLen int + subPacket *OpaqueSubpacket + ) + for len(contents) > 0 { + subHeaderLen, subPacket, err = nextSubpacket(contents) + if err != nil { + break + } + result = append(result, subPacket) + contents = contents[subHeaderLen+len(subPacket.Contents):] + } + return +} + +func nextSubpacket(contents []byte) (subHeaderLen int, subPacket *OpaqueSubpacket, err error) { + // RFC 4880, section 5.2.3.1 + var subLen uint32 + if len(contents) < 1 { + goto Truncated + } + subPacket = &OpaqueSubpacket{} + switch { + case contents[0] < 192: + subHeaderLen = 2 // 1 length byte, 1 subtype byte + if len(contents) < subHeaderLen { + goto Truncated + } + subLen = uint32(contents[0]) + contents = contents[1:] + case contents[0] < 255: + subHeaderLen = 3 // 2 length bytes, 1 subtype + if len(contents) < subHeaderLen { + goto Truncated + } + subLen = uint32(contents[0]-192)<<8 + uint32(contents[1]) + 192 + contents = contents[2:] + default: + subHeaderLen = 6 // 5 length bytes, 1 subtype + if len(contents) < subHeaderLen { + goto Truncated + } + subLen = uint32(contents[1])<<24 | + uint32(contents[2])<<16 | + uint32(contents[3])<<8 | + uint32(contents[4]) + contents = contents[5:] + } + if subLen > uint32(len(contents)) { + goto Truncated + } + subPacket.SubType = contents[0] + subPacket.Contents = contents[1:subLen] + return +Truncated: + err = errors.StructuralError("subpacket truncated") + return +} + +func (osp *OpaqueSubpacket) Serialize(w io.Writer) (err error) { + buf := make([]byte, 6) + n := serializeSubpacketLength(buf, len(osp.Contents)+1) + buf[n] = osp.SubType + if _, err = w.Write(buf[:n+1]); err != nil { + return + } + _, err = w.Write(osp.Contents) + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/opaque_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/opaque_test.go new file mode 100644 index 00000000..f27bbfe0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/opaque_test.go @@ -0,0 +1,67 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "encoding/hex" + "io" + "testing" +) + +// Test packet.Read error handling in OpaquePacket.Parse, +// which attempts to re-read an OpaquePacket as a supported +// Packet type. +func TestOpaqueParseReason(t *testing.T) { + buf, err := hex.DecodeString(UnsupportedKeyHex) + if err != nil { + t.Fatal(err) + } + or := NewOpaqueReader(bytes.NewBuffer(buf)) + count := 0 + badPackets := 0 + var uid *UserId + for { + op, err := or.Next() + if err == io.EOF { + break + } else if err != nil { + t.Errorf("#%d: opaque read error: %v", count, err) + break + } + // try to parse opaque packet + p, err := op.Parse() + switch pkt := p.(type) { + case *UserId: + uid = pkt + case *OpaquePacket: + // If an OpaquePacket can't re-parse, packet.Read + // certainly had its reasons. + if pkt.Reason == nil { + t.Errorf("#%d: opaque packet, no reason", count) + } else { + badPackets++ + } + } + count++ + } + + const expectedBad = 3 + // Test post-conditions, make sure we actually parsed packets as expected. + if badPackets != expectedBad { + t.Errorf("unexpected # unparseable packets: %d (want %d)", badPackets, expectedBad) + } + if uid == nil { + t.Errorf("failed to find expected UID in unsupported keyring") + } else if uid.Id != "Armin M. Warda " { + t.Errorf("unexpected UID: %v", uid.Id) + } +} + +// This key material has public key and signature packet versions modified to +// an unsupported value (1), so that trying to parse the OpaquePacket to +// a typed packet will get an error. It also contains a GnuPG trust packet. +// (Created with: od -An -t x1 pubring.gpg | xargs | sed 's/ //g') +const UnsupportedKeyHex = `988d012e7a18a20000010400d6ac00d92b89c1f4396c243abb9b76d2e9673ad63483291fed88e22b82e255e441c078c6abbbf7d2d195e50b62eeaa915b85b0ec20c225ce2c64c167cacb6e711daf2e45da4a8356a059b8160e3b3628ac0dd8437b31f06d53d6e8ea4214d4a26406a6b63e1001406ef23e0bb3069fac9a99a91f77dfafd5de0f188a5da5e3c9000511b42741726d696e204d2e205761726461203c7761726461406e657068696c696d2e727568722e64653e8900950105102e8936c705d1eb399e58489901013f0e03ff5a0c4f421e34fcfa388129166420c08cd76987bcdec6f01bd0271459a85cc22048820dd4e44ac2c7d23908d540f54facf1b36b0d9c20488781ce9dca856531e76e2e846826e9951338020a03a09b57aa5faa82e9267458bd76105399885ac35af7dc1cbb6aaed7c39e1039f3b5beda2c0e916bd38560509bab81235d1a0ead83b0020000` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/packet.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/packet.go new file mode 100644 index 00000000..832b33f5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/packet.go @@ -0,0 +1,535 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package packet implements parsing and serialization of OpenPGP packets, as +// specified in RFC 4880. +package packet + +import ( + "bufio" + "code.google.com/p/go.crypto/cast5" + "code.google.com/p/go.crypto/openpgp/errors" + "crypto/aes" + "crypto/cipher" + "crypto/des" + "io" + "math/big" +) + +// readFull is the same as io.ReadFull except that reading zero bytes returns +// ErrUnexpectedEOF rather than EOF. +func readFull(r io.Reader, buf []byte) (n int, err error) { + n, err = io.ReadFull(r, buf) + if err == io.EOF { + err = io.ErrUnexpectedEOF + } + return +} + +// readLength reads an OpenPGP length from r. See RFC 4880, section 4.2.2. +func readLength(r io.Reader) (length int64, isPartial bool, err error) { + var buf [4]byte + _, err = readFull(r, buf[:1]) + if err != nil { + return + } + switch { + case buf[0] < 192: + length = int64(buf[0]) + case buf[0] < 224: + length = int64(buf[0]-192) << 8 + _, err = readFull(r, buf[0:1]) + if err != nil { + return + } + length += int64(buf[0]) + 192 + case buf[0] < 255: + length = int64(1) << (buf[0] & 0x1f) + isPartial = true + default: + _, err = readFull(r, buf[0:4]) + if err != nil { + return + } + length = int64(buf[0])<<24 | + int64(buf[1])<<16 | + int64(buf[2])<<8 | + int64(buf[3]) + } + return +} + +// partialLengthReader wraps an io.Reader and handles OpenPGP partial lengths. +// The continuation lengths are parsed and removed from the stream and EOF is +// returned at the end of the packet. See RFC 4880, section 4.2.2.4. +type partialLengthReader struct { + r io.Reader + remaining int64 + isPartial bool +} + +func (r *partialLengthReader) Read(p []byte) (n int, err error) { + for r.remaining == 0 { + if !r.isPartial { + return 0, io.EOF + } + r.remaining, r.isPartial, err = readLength(r.r) + if err != nil { + return 0, err + } + } + + toRead := int64(len(p)) + if toRead > r.remaining { + toRead = r.remaining + } + + n, err = r.r.Read(p[:int(toRead)]) + r.remaining -= int64(n) + if n < int(toRead) && err == io.EOF { + err = io.ErrUnexpectedEOF + } + return +} + +// partialLengthWriter writes a stream of data using OpenPGP partial lengths. +// See RFC 4880, section 4.2.2.4. +type partialLengthWriter struct { + w io.WriteCloser + lengthByte [1]byte +} + +func (w *partialLengthWriter) Write(p []byte) (n int, err error) { + for len(p) > 0 { + for power := uint(14); power < 32; power-- { + l := 1 << power + if len(p) >= l { + w.lengthByte[0] = 224 + uint8(power) + _, err = w.w.Write(w.lengthByte[:]) + if err != nil { + return + } + var m int + m, err = w.w.Write(p[:l]) + n += m + if err != nil { + return + } + p = p[l:] + break + } + } + } + return +} + +func (w *partialLengthWriter) Close() error { + w.lengthByte[0] = 0 + _, err := w.w.Write(w.lengthByte[:]) + if err != nil { + return err + } + return w.w.Close() +} + +// A spanReader is an io.LimitReader, but it returns ErrUnexpectedEOF if the +// underlying Reader returns EOF before the limit has been reached. +type spanReader struct { + r io.Reader + n int64 +} + +func (l *spanReader) Read(p []byte) (n int, err error) { + if l.n <= 0 { + return 0, io.EOF + } + if int64(len(p)) > l.n { + p = p[0:l.n] + } + n, err = l.r.Read(p) + l.n -= int64(n) + if l.n > 0 && err == io.EOF { + err = io.ErrUnexpectedEOF + } + return +} + +// readHeader parses a packet header and returns an io.Reader which will return +// the contents of the packet. See RFC 4880, section 4.2. +func readHeader(r io.Reader) (tag packetType, length int64, contents io.Reader, err error) { + var buf [4]byte + _, err = io.ReadFull(r, buf[:1]) + if err != nil { + return + } + if buf[0]&0x80 == 0 { + err = errors.StructuralError("tag byte does not have MSB set") + return + } + if buf[0]&0x40 == 0 { + // Old format packet + tag = packetType((buf[0] & 0x3f) >> 2) + lengthType := buf[0] & 3 + if lengthType == 3 { + length = -1 + contents = r + return + } + lengthBytes := 1 << lengthType + _, err = readFull(r, buf[0:lengthBytes]) + if err != nil { + return + } + for i := 0; i < lengthBytes; i++ { + length <<= 8 + length |= int64(buf[i]) + } + contents = &spanReader{r, length} + return + } + + // New format packet + tag = packetType(buf[0] & 0x3f) + length, isPartial, err := readLength(r) + if err != nil { + return + } + if isPartial { + contents = &partialLengthReader{ + remaining: length, + isPartial: true, + r: r, + } + length = -1 + } else { + contents = &spanReader{r, length} + } + return +} + +// serializeHeader writes an OpenPGP packet header to w. See RFC 4880, section +// 4.2. +func serializeHeader(w io.Writer, ptype packetType, length int) (err error) { + var buf [6]byte + var n int + + buf[0] = 0x80 | 0x40 | byte(ptype) + if length < 192 { + buf[1] = byte(length) + n = 2 + } else if length < 8384 { + length -= 192 + buf[1] = 192 + byte(length>>8) + buf[2] = byte(length) + n = 3 + } else { + buf[1] = 255 + buf[2] = byte(length >> 24) + buf[3] = byte(length >> 16) + buf[4] = byte(length >> 8) + buf[5] = byte(length) + n = 6 + } + + _, err = w.Write(buf[:n]) + return +} + +// serializeStreamHeader writes an OpenPGP packet header to w where the +// length of the packet is unknown. It returns a io.WriteCloser which can be +// used to write the contents of the packet. See RFC 4880, section 4.2. +func serializeStreamHeader(w io.WriteCloser, ptype packetType) (out io.WriteCloser, err error) { + var buf [1]byte + buf[0] = 0x80 | 0x40 | byte(ptype) + _, err = w.Write(buf[:]) + if err != nil { + return + } + out = &partialLengthWriter{w: w} + return +} + +// Packet represents an OpenPGP packet. Users are expected to try casting +// instances of this interface to specific packet types. +type Packet interface { + parse(io.Reader) error +} + +// consumeAll reads from the given Reader until error, returning the number of +// bytes read. +func consumeAll(r io.Reader) (n int64, err error) { + var m int + var buf [1024]byte + + for { + m, err = r.Read(buf[:]) + n += int64(m) + if err == io.EOF { + err = nil + return + } + if err != nil { + return + } + } + + panic("unreachable") +} + +// packetType represents the numeric ids of the different OpenPGP packet types. See +// http://www.iana.org/assignments/pgp-parameters/pgp-parameters.xhtml#pgp-parameters-2 +type packetType uint8 + +const ( + packetTypeEncryptedKey packetType = 1 + packetTypeSignature packetType = 2 + packetTypeSymmetricKeyEncrypted packetType = 3 + packetTypeOnePassSignature packetType = 4 + packetTypePrivateKey packetType = 5 + packetTypePublicKey packetType = 6 + packetTypePrivateSubkey packetType = 7 + packetTypeCompressed packetType = 8 + packetTypeSymmetricallyEncrypted packetType = 9 + packetTypeLiteralData packetType = 11 + packetTypeUserId packetType = 13 + packetTypePublicSubkey packetType = 14 + packetTypeUserAttribute packetType = 17 + packetTypeSymmetricallyEncryptedMDC packetType = 18 +) + +// peekVersion detects the version of a public key packet about to +// be read. A bufio.Reader at the original position of the io.Reader +// is returned. +func peekVersion(r io.Reader) (bufr *bufio.Reader, ver byte, err error) { + bufr = bufio.NewReader(r) + var verBuf []byte + if verBuf, err = bufr.Peek(1); err != nil { + return + } + ver = verBuf[0] + return +} + +// Read reads a single OpenPGP packet from the given io.Reader. If there is an +// error parsing a packet, the whole packet is consumed from the input. +func Read(r io.Reader) (p Packet, err error) { + tag, _, contents, err := readHeader(r) + if err != nil { + return + } + + switch tag { + case packetTypeEncryptedKey: + p = new(EncryptedKey) + case packetTypeSignature: + var version byte + // Detect signature version + if contents, version, err = peekVersion(contents); err != nil { + return + } + if version < 4 { + p = new(SignatureV3) + } else { + p = new(Signature) + } + case packetTypeSymmetricKeyEncrypted: + p = new(SymmetricKeyEncrypted) + case packetTypeOnePassSignature: + p = new(OnePassSignature) + case packetTypePrivateKey, packetTypePrivateSubkey: + pk := new(PrivateKey) + if tag == packetTypePrivateSubkey { + pk.IsSubkey = true + } + p = pk + case packetTypePublicKey, packetTypePublicSubkey: + var version byte + if contents, version, err = peekVersion(contents); err != nil { + return + } + isSubkey := tag == packetTypePublicSubkey + if version < 4 { + p = &PublicKeyV3{IsSubkey: isSubkey} + } else { + p = &PublicKey{IsSubkey: isSubkey} + } + case packetTypeCompressed: + p = new(Compressed) + case packetTypeSymmetricallyEncrypted: + p = new(SymmetricallyEncrypted) + case packetTypeLiteralData: + p = new(LiteralData) + case packetTypeUserId: + p = new(UserId) + case packetTypeUserAttribute: + p = new(UserAttribute) + case packetTypeSymmetricallyEncryptedMDC: + se := new(SymmetricallyEncrypted) + se.MDC = true + p = se + default: + err = errors.UnknownPacketTypeError(tag) + } + if p != nil { + err = p.parse(contents) + } + if err != nil { + consumeAll(contents) + } + return +} + +// SignatureType represents the different semantic meanings of an OpenPGP +// signature. See RFC 4880, section 5.2.1. +type SignatureType uint8 + +const ( + SigTypeBinary SignatureType = 0 + SigTypeText = 1 + SigTypeGenericCert = 0x10 + SigTypePersonaCert = 0x11 + SigTypeCasualCert = 0x12 + SigTypePositiveCert = 0x13 + SigTypeSubkeyBinding = 0x18 +) + +// PublicKeyAlgorithm represents the different public key system specified for +// OpenPGP. See +// http://www.iana.org/assignments/pgp-parameters/pgp-parameters.xhtml#pgp-parameters-12 +type PublicKeyAlgorithm uint8 + +const ( + PubKeyAlgoRSA PublicKeyAlgorithm = 1 + PubKeyAlgoRSAEncryptOnly PublicKeyAlgorithm = 2 + PubKeyAlgoRSASignOnly PublicKeyAlgorithm = 3 + PubKeyAlgoElGamal PublicKeyAlgorithm = 16 + PubKeyAlgoDSA PublicKeyAlgorithm = 17 + // RFC 6637, Section 5. + PubKeyAlgoECDH PublicKeyAlgorithm = 18 + PubKeyAlgoECDSA PublicKeyAlgorithm = 19 +) + +// CanEncrypt returns true if it's possible to encrypt a message to a public +// key of the given type. +func (pka PublicKeyAlgorithm) CanEncrypt() bool { + switch pka { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoElGamal: + return true + } + return false +} + +// CanSign returns true if it's possible for a public key of the given type to +// sign a message. +func (pka PublicKeyAlgorithm) CanSign() bool { + switch pka { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly, PubKeyAlgoDSA: + return true + } + return false +} + +// CipherFunction represents the different block ciphers specified for OpenPGP. See +// http://www.iana.org/assignments/pgp-parameters/pgp-parameters.xhtml#pgp-parameters-13 +type CipherFunction uint8 + +const ( + Cipher3DES CipherFunction = 2 + CipherCAST5 CipherFunction = 3 + CipherAES128 CipherFunction = 7 + CipherAES192 CipherFunction = 8 + CipherAES256 CipherFunction = 9 +) + +// KeySize returns the key size, in bytes, of cipher. +func (cipher CipherFunction) KeySize() int { + switch cipher { + case Cipher3DES: + return 24 + case CipherCAST5: + return cast5.KeySize + case CipherAES128: + return 16 + case CipherAES192: + return 24 + case CipherAES256: + return 32 + } + return 0 +} + +// blockSize returns the block size, in bytes, of cipher. +func (cipher CipherFunction) blockSize() int { + switch cipher { + case Cipher3DES: + return des.BlockSize + case CipherCAST5: + return 8 + case CipherAES128, CipherAES192, CipherAES256: + return 16 + } + return 0 +} + +// new returns a fresh instance of the given cipher. +func (cipher CipherFunction) new(key []byte) (block cipher.Block) { + switch cipher { + case Cipher3DES: + block, _ = des.NewTripleDESCipher(key) + case CipherCAST5: + block, _ = cast5.NewCipher(key) + case CipherAES128, CipherAES192, CipherAES256: + block, _ = aes.NewCipher(key) + } + return +} + +// readMPI reads a big integer from r. The bit length returned is the bit +// length that was specified in r. This is preserved so that the integer can be +// reserialized exactly. +func readMPI(r io.Reader) (mpi []byte, bitLength uint16, err error) { + var buf [2]byte + _, err = readFull(r, buf[0:]) + if err != nil { + return + } + bitLength = uint16(buf[0])<<8 | uint16(buf[1]) + numBytes := (int(bitLength) + 7) / 8 + mpi = make([]byte, numBytes) + _, err = readFull(r, mpi) + return +} + +// mpiLength returns the length of the given *big.Int when serialized as an +// MPI. +func mpiLength(n *big.Int) (mpiLengthInBytes int) { + mpiLengthInBytes = 2 /* MPI length */ + mpiLengthInBytes += (n.BitLen() + 7) / 8 + return +} + +// writeMPI serializes a big integer to w. +func writeMPI(w io.Writer, bitLength uint16, mpiBytes []byte) (err error) { + _, err = w.Write([]byte{byte(bitLength >> 8), byte(bitLength)}) + if err == nil { + _, err = w.Write(mpiBytes) + } + return +} + +// writeBig serializes a *big.Int to w. +func writeBig(w io.Writer, i *big.Int) error { + return writeMPI(w, uint16(i.BitLen()), i.Bytes()) +} + +// CompressionAlgo Represents the different compression algorithms +// supported by OpenPGP (except for BZIP2, which is not currently +// supported). See Section 9.3 of RFC 4880. +type CompressionAlgo uint8 + +const ( + CompressionNone CompressionAlgo = 0 + CompressionZIP CompressionAlgo = 1 + CompressionZLIB CompressionAlgo = 2 +) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/packet_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/packet_test.go new file mode 100644 index 00000000..c2fd72be --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/packet_test.go @@ -0,0 +1,255 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/errors" + "encoding/hex" + "fmt" + "io" + "io/ioutil" + "testing" +) + +func TestReadFull(t *testing.T) { + var out [4]byte + + b := bytes.NewBufferString("foo") + n, err := readFull(b, out[:3]) + if n != 3 || err != nil { + t.Errorf("full read failed n:%d err:%s", n, err) + } + + b = bytes.NewBufferString("foo") + n, err = readFull(b, out[:4]) + if n != 3 || err != io.ErrUnexpectedEOF { + t.Errorf("partial read failed n:%d err:%s", n, err) + } + + b = bytes.NewBuffer(nil) + n, err = readFull(b, out[:3]) + if n != 0 || err != io.ErrUnexpectedEOF { + t.Errorf("empty read failed n:%d err:%s", n, err) + } +} + +func readerFromHex(s string) io.Reader { + data, err := hex.DecodeString(s) + if err != nil { + panic("readerFromHex: bad input") + } + return bytes.NewBuffer(data) +} + +var readLengthTests = []struct { + hexInput string + length int64 + isPartial bool + err error +}{ + {"", 0, false, io.ErrUnexpectedEOF}, + {"1f", 31, false, nil}, + {"c0", 0, false, io.ErrUnexpectedEOF}, + {"c101", 256 + 1 + 192, false, nil}, + {"e0", 1, true, nil}, + {"e1", 2, true, nil}, + {"e2", 4, true, nil}, + {"ff", 0, false, io.ErrUnexpectedEOF}, + {"ff00", 0, false, io.ErrUnexpectedEOF}, + {"ff0000", 0, false, io.ErrUnexpectedEOF}, + {"ff000000", 0, false, io.ErrUnexpectedEOF}, + {"ff00000000", 0, false, nil}, + {"ff01020304", 16909060, false, nil}, +} + +func TestReadLength(t *testing.T) { + for i, test := range readLengthTests { + length, isPartial, err := readLength(readerFromHex(test.hexInput)) + if test.err != nil { + if err != test.err { + t.Errorf("%d: expected different error got:%s want:%s", i, err, test.err) + } + continue + } + if err != nil { + t.Errorf("%d: unexpected error: %s", i, err) + continue + } + if length != test.length || isPartial != test.isPartial { + t.Errorf("%d: bad result got:(%d,%t) want:(%d,%t)", i, length, isPartial, test.length, test.isPartial) + } + } +} + +var partialLengthReaderTests = []struct { + hexInput string + err error + hexOutput string +}{ + {"e0", io.ErrUnexpectedEOF, ""}, + {"e001", io.ErrUnexpectedEOF, ""}, + {"e0010102", nil, "0102"}, + {"ff00000000", nil, ""}, + {"e10102e1030400", nil, "01020304"}, + {"e101", io.ErrUnexpectedEOF, ""}, +} + +func TestPartialLengthReader(t *testing.T) { + for i, test := range partialLengthReaderTests { + r := &partialLengthReader{readerFromHex(test.hexInput), 0, true} + out, err := ioutil.ReadAll(r) + if test.err != nil { + if err != test.err { + t.Errorf("%d: expected different error got:%s want:%s", i, err, test.err) + } + continue + } + if err != nil { + t.Errorf("%d: unexpected error: %s", i, err) + continue + } + + got := fmt.Sprintf("%x", out) + if got != test.hexOutput { + t.Errorf("%d: got:%s want:%s", i, test.hexOutput, got) + } + } +} + +var readHeaderTests = []struct { + hexInput string + structuralError bool + unexpectedEOF bool + tag int + length int64 + hexOutput string +}{ + {"", false, false, 0, 0, ""}, + {"7f", true, false, 0, 0, ""}, + + // Old format headers + {"80", false, true, 0, 0, ""}, + {"8001", false, true, 0, 1, ""}, + {"800102", false, false, 0, 1, "02"}, + {"81000102", false, false, 0, 1, "02"}, + {"820000000102", false, false, 0, 1, "02"}, + {"860000000102", false, false, 1, 1, "02"}, + {"83010203", false, false, 0, -1, "010203"}, + + // New format headers + {"c0", false, true, 0, 0, ""}, + {"c000", false, false, 0, 0, ""}, + {"c00102", false, false, 0, 1, "02"}, + {"c0020203", false, false, 0, 2, "0203"}, + {"c00202", false, true, 0, 2, ""}, + {"c3020203", false, false, 3, 2, "0203"}, +} + +func TestReadHeader(t *testing.T) { + for i, test := range readHeaderTests { + tag, length, contents, err := readHeader(readerFromHex(test.hexInput)) + if test.structuralError { + if _, ok := err.(errors.StructuralError); ok { + continue + } + t.Errorf("%d: expected StructuralError, got:%s", i, err) + continue + } + if err != nil { + if len(test.hexInput) == 0 && err == io.EOF { + continue + } + if !test.unexpectedEOF || err != io.ErrUnexpectedEOF { + t.Errorf("%d: unexpected error from readHeader: %s", i, err) + } + continue + } + if int(tag) != test.tag || length != test.length { + t.Errorf("%d: got:(%d,%d) want:(%d,%d)", i, int(tag), length, test.tag, test.length) + continue + } + + body, err := ioutil.ReadAll(contents) + if err != nil { + if !test.unexpectedEOF || err != io.ErrUnexpectedEOF { + t.Errorf("%d: unexpected error from contents: %s", i, err) + } + continue + } + if test.unexpectedEOF { + t.Errorf("%d: expected ErrUnexpectedEOF from contents but got no error", i) + continue + } + got := fmt.Sprintf("%x", body) + if got != test.hexOutput { + t.Errorf("%d: got:%s want:%s", i, got, test.hexOutput) + } + } +} + +func TestSerializeHeader(t *testing.T) { + tag := packetTypePublicKey + lengths := []int{0, 1, 2, 64, 192, 193, 8000, 8384, 8385, 10000} + + for _, length := range lengths { + buf := bytes.NewBuffer(nil) + serializeHeader(buf, tag, length) + tag2, length2, _, err := readHeader(buf) + if err != nil { + t.Errorf("length %d, err: %s", length, err) + } + if tag2 != tag { + t.Errorf("length %d, tag incorrect (got %d, want %d)", length, tag2, tag) + } + if int(length2) != length { + t.Errorf("length %d, length incorrect (got %d)", length, length2) + } + } +} + +func TestPartialLengths(t *testing.T) { + buf := bytes.NewBuffer(nil) + w := new(partialLengthWriter) + w.w = noOpCloser{buf} + + const maxChunkSize = 64 + + var b [maxChunkSize]byte + var n uint8 + for l := 1; l <= maxChunkSize; l++ { + for i := 0; i < l; i++ { + b[i] = n + n++ + } + m, err := w.Write(b[:l]) + if m != l { + t.Errorf("short write got: %d want: %d", m, l) + } + if err != nil { + t.Errorf("error from write: %s", err) + } + } + w.Close() + + want := (maxChunkSize * (maxChunkSize + 1)) / 2 + copyBuf := bytes.NewBuffer(nil) + r := &partialLengthReader{buf, 0, true} + m, err := io.Copy(copyBuf, r) + if m != int64(want) { + t.Errorf("short copy got: %d want: %d", m, want) + } + if err != nil { + t.Errorf("error from copy: %s", err) + } + + copyBytes := copyBuf.Bytes() + for i := 0; i < want; i++ { + if copyBytes[i] != uint8(i) { + t.Errorf("bad pattern in copy at %d", i) + break + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/private_key.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/private_key.go new file mode 100644 index 00000000..98cc14b1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/private_key.go @@ -0,0 +1,310 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/elgamal" + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/s2k" + "crypto/cipher" + "crypto/dsa" + "crypto/rsa" + "crypto/sha1" + "io" + "io/ioutil" + "math/big" + "strconv" + "time" +) + +// PrivateKey represents a possibly encrypted private key. See RFC 4880, +// section 5.5.3. +type PrivateKey struct { + PublicKey + Encrypted bool // if true then the private key is unavailable until Decrypt has been called. + encryptedData []byte + cipher CipherFunction + s2k func(out, in []byte) + PrivateKey interface{} // An *rsa.PrivateKey or *dsa.PrivateKey. + sha1Checksum bool + iv []byte +} + +func NewRSAPrivateKey(currentTime time.Time, priv *rsa.PrivateKey) *PrivateKey { + pk := new(PrivateKey) + pk.PublicKey = *NewRSAPublicKey(currentTime, &priv.PublicKey) + pk.PrivateKey = priv + return pk +} + +func NewDSAPrivateKey(currentTime time.Time, priv *dsa.PrivateKey) *PrivateKey { + pk := new(PrivateKey) + pk.PublicKey = *NewDSAPublicKey(currentTime, &priv.PublicKey) + pk.PrivateKey = priv + return pk +} + +func (pk *PrivateKey) parse(r io.Reader) (err error) { + err = (&pk.PublicKey).parse(r) + if err != nil { + return + } + var buf [1]byte + _, err = readFull(r, buf[:]) + if err != nil { + return + } + + s2kType := buf[0] + + switch s2kType { + case 0: + pk.s2k = nil + pk.Encrypted = false + case 254, 255: + _, err = readFull(r, buf[:]) + if err != nil { + return + } + pk.cipher = CipherFunction(buf[0]) + pk.Encrypted = true + pk.s2k, err = s2k.Parse(r) + if err != nil { + return + } + if s2kType == 254 { + pk.sha1Checksum = true + } + default: + return errors.UnsupportedError("deprecated s2k function in private key") + } + + if pk.Encrypted { + blockSize := pk.cipher.blockSize() + if blockSize == 0 { + return errors.UnsupportedError("unsupported cipher in private key: " + strconv.Itoa(int(pk.cipher))) + } + pk.iv = make([]byte, blockSize) + _, err = readFull(r, pk.iv) + if err != nil { + return + } + } + + pk.encryptedData, err = ioutil.ReadAll(r) + if err != nil { + return + } + + if !pk.Encrypted { + return pk.parsePrivateKey(pk.encryptedData) + } + + return +} + +func mod64kHash(d []byte) uint16 { + var h uint16 + for _, b := range d { + h += uint16(b) + } + return h +} + +func (pk *PrivateKey) Serialize(w io.Writer) (err error) { + // TODO(agl): support encrypted private keys + buf := bytes.NewBuffer(nil) + err = pk.PublicKey.serializeWithoutHeaders(buf) + if err != nil { + return + } + buf.WriteByte(0 /* no encryption */) + + privateKeyBuf := bytes.NewBuffer(nil) + + switch priv := pk.PrivateKey.(type) { + case *rsa.PrivateKey: + err = serializeRSAPrivateKey(privateKeyBuf, priv) + case *dsa.PrivateKey: + err = serializeDSAPrivateKey(privateKeyBuf, priv) + default: + err = errors.InvalidArgumentError("unknown private key type") + } + if err != nil { + return + } + + ptype := packetTypePrivateKey + contents := buf.Bytes() + privateKeyBytes := privateKeyBuf.Bytes() + if pk.IsSubkey { + ptype = packetTypePrivateSubkey + } + err = serializeHeader(w, ptype, len(contents)+len(privateKeyBytes)+2) + if err != nil { + return + } + _, err = w.Write(contents) + if err != nil { + return + } + _, err = w.Write(privateKeyBytes) + if err != nil { + return + } + + checksum := mod64kHash(privateKeyBytes) + var checksumBytes [2]byte + checksumBytes[0] = byte(checksum >> 8) + checksumBytes[1] = byte(checksum) + _, err = w.Write(checksumBytes[:]) + + return +} + +func serializeRSAPrivateKey(w io.Writer, priv *rsa.PrivateKey) error { + err := writeBig(w, priv.D) + if err != nil { + return err + } + err = writeBig(w, priv.Primes[1]) + if err != nil { + return err + } + err = writeBig(w, priv.Primes[0]) + if err != nil { + return err + } + return writeBig(w, priv.Precomputed.Qinv) +} + +func serializeDSAPrivateKey(w io.Writer, priv *dsa.PrivateKey) error { + return writeBig(w, priv.X) +} + +// Decrypt decrypts an encrypted private key using a passphrase. +func (pk *PrivateKey) Decrypt(passphrase []byte) error { + if !pk.Encrypted { + return nil + } + + key := make([]byte, pk.cipher.KeySize()) + pk.s2k(key, passphrase) + block := pk.cipher.new(key) + cfb := cipher.NewCFBDecrypter(block, pk.iv) + + data := pk.encryptedData + cfb.XORKeyStream(data, data) + + if pk.sha1Checksum { + if len(data) < sha1.Size { + return errors.StructuralError("truncated private key data") + } + h := sha1.New() + h.Write(data[:len(data)-sha1.Size]) + sum := h.Sum(nil) + if !bytes.Equal(sum, data[len(data)-sha1.Size:]) { + return errors.StructuralError("private key checksum failure") + } + data = data[:len(data)-sha1.Size] + } else { + if len(data) < 2 { + return errors.StructuralError("truncated private key data") + } + var sum uint16 + for i := 0; i < len(data)-2; i++ { + sum += uint16(data[i]) + } + if data[len(data)-2] != uint8(sum>>8) || + data[len(data)-1] != uint8(sum) { + return errors.StructuralError("private key checksum failure") + } + data = data[:len(data)-2] + } + + return pk.parsePrivateKey(data) +} + +func (pk *PrivateKey) parsePrivateKey(data []byte) (err error) { + switch pk.PublicKey.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly, PubKeyAlgoRSAEncryptOnly: + return pk.parseRSAPrivateKey(data) + case PubKeyAlgoDSA: + return pk.parseDSAPrivateKey(data) + case PubKeyAlgoElGamal: + return pk.parseElGamalPrivateKey(data) + } + panic("impossible") +} + +func (pk *PrivateKey) parseRSAPrivateKey(data []byte) (err error) { + rsaPub := pk.PublicKey.PublicKey.(*rsa.PublicKey) + rsaPriv := new(rsa.PrivateKey) + rsaPriv.PublicKey = *rsaPub + + buf := bytes.NewBuffer(data) + d, _, err := readMPI(buf) + if err != nil { + return + } + p, _, err := readMPI(buf) + if err != nil { + return + } + q, _, err := readMPI(buf) + if err != nil { + return + } + + rsaPriv.D = new(big.Int).SetBytes(d) + rsaPriv.Primes = make([]*big.Int, 2) + rsaPriv.Primes[0] = new(big.Int).SetBytes(p) + rsaPriv.Primes[1] = new(big.Int).SetBytes(q) + rsaPriv.Precompute() + pk.PrivateKey = rsaPriv + pk.Encrypted = false + pk.encryptedData = nil + + return nil +} + +func (pk *PrivateKey) parseDSAPrivateKey(data []byte) (err error) { + dsaPub := pk.PublicKey.PublicKey.(*dsa.PublicKey) + dsaPriv := new(dsa.PrivateKey) + dsaPriv.PublicKey = *dsaPub + + buf := bytes.NewBuffer(data) + x, _, err := readMPI(buf) + if err != nil { + return + } + + dsaPriv.X = new(big.Int).SetBytes(x) + pk.PrivateKey = dsaPriv + pk.Encrypted = false + pk.encryptedData = nil + + return nil +} + +func (pk *PrivateKey) parseElGamalPrivateKey(data []byte) (err error) { + pub := pk.PublicKey.PublicKey.(*elgamal.PublicKey) + priv := new(elgamal.PrivateKey) + priv.PublicKey = *pub + + buf := bytes.NewBuffer(data) + x, _, err := readMPI(buf) + if err != nil { + return + } + + priv.X = new(big.Int).SetBytes(x) + pk.PrivateKey = priv + pk.Encrypted = false + pk.encryptedData = nil + + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/private_key_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/private_key_test.go new file mode 100644 index 00000000..35d8951a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/private_key_test.go @@ -0,0 +1,58 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "testing" + "time" +) + +var privateKeyTests = []struct { + privateKeyHex string + creationTime time.Time +}{ + { + privKeyRSAHex, + time.Unix(0x4cc349a8, 0), + }, + { + privKeyElGamalHex, + time.Unix(0x4df9ee1a, 0), + }, +} + +func TestPrivateKeyRead(t *testing.T) { + for i, test := range privateKeyTests { + packet, err := Read(readerFromHex(test.privateKeyHex)) + if err != nil { + t.Errorf("#%d: failed to parse: %s", i, err) + continue + } + + privKey := packet.(*PrivateKey) + + if !privKey.Encrypted { + t.Errorf("#%d: private key isn't encrypted", i) + continue + } + + err = privKey.Decrypt([]byte("testing")) + if err != nil { + t.Errorf("#%d: failed to decrypt: %s", i, err) + continue + } + + if !privKey.CreationTime.Equal(test.creationTime) || privKey.Encrypted { + t.Errorf("#%d: bad result, got: %#v", i, privKey) + } + } +} + +// Generated with `gpg --export-secret-keys "Test Key 2"` +const privKeyRSAHex = "9501fe044cc349a8010400b70ca0010e98c090008d45d1ee8f9113bd5861fd57b88bacb7c68658747663f1e1a3b5a98f32fda6472373c024b97359cd2efc88ff60f77751adfbf6af5e615e6a1408cfad8bf0cea30b0d5f53aa27ad59089ba9b15b7ebc2777a25d7b436144027e3bcd203909f147d0e332b240cf63d3395f5dfe0df0a6c04e8655af7eacdf0011010001fe0303024a252e7d475fd445607de39a265472aa74a9320ba2dac395faa687e9e0336aeb7e9a7397e511b5afd9dc84557c80ac0f3d4d7bfec5ae16f20d41c8c84a04552a33870b930420e230e179564f6d19bb153145e76c33ae993886c388832b0fa042ddda7f133924f3854481533e0ede31d51278c0519b29abc3bf53da673e13e3e1214b52413d179d7f66deee35cac8eacb060f78379d70ef4af8607e68131ff529439668fc39c9ce6dfef8a5ac234d234802cbfb749a26107db26406213ae5c06d4673253a3cbee1fcbae58d6ab77e38d6e2c0e7c6317c48e054edadb5a40d0d48acb44643d998139a8a66bb820be1f3f80185bc777d14b5954b60effe2448a036d565c6bc0b915fcea518acdd20ab07bc1529f561c58cd044f723109b93f6fd99f876ff891d64306b5d08f48bab59f38695e9109c4dec34013ba3153488ce070268381ba923ee1eb77125b36afcb4347ec3478c8f2735b06ef17351d872e577fa95d0c397c88c71b59629a36aec" + +// Generated by `gpg --export-secret-keys` followed by a manual extraction of +// the ElGamal subkey from the packets. +const privKeyElGamalHex = "9d0157044df9ee1a100400eb8e136a58ec39b582629cdadf830bc64e0a94ed8103ca8bb247b27b11b46d1d25297ef4bcc3071785ba0c0bedfe89eabc5287fcc0edf81ab5896c1c8e4b20d27d79813c7aede75320b33eaeeaa586edc00fd1036c10133e6ba0ff277245d0d59d04b2b3421b7244aca5f4a8d870c6f1c1fbff9e1c26699a860b9504f35ca1d700030503fd1ededd3b840795be6d9ccbe3c51ee42e2f39233c432b831ddd9c4e72b7025a819317e47bf94f9ee316d7273b05d5fcf2999c3a681f519b1234bbfa6d359b4752bd9c3f77d6b6456cde152464763414ca130f4e91d91041432f90620fec0e6d6b5116076c2985d5aeaae13be492b9b329efcaf7ee25120159a0a30cd976b42d7afe030302dae7eb80db744d4960c4df930d57e87fe81412eaace9f900e6c839817a614ddb75ba6603b9417c33ea7b6c93967dfa2bcff3fa3c74a5ce2c962db65b03aece14c96cbd0038fc" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key.go new file mode 100644 index 00000000..0fe312f3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key.go @@ -0,0 +1,664 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/elgamal" + "code.google.com/p/go.crypto/openpgp/errors" + "crypto" + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rsa" + "crypto/sha1" + _ "crypto/sha256" + _ "crypto/sha512" + "encoding/binary" + "fmt" + "hash" + "io" + "math/big" + "strconv" + "time" +) + +var ( + // NIST curve P-256 + oidCurveP256 []byte = []byte{0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x03, 0x01, 0x07} + // NIST curve P-384 + oidCurveP384 []byte = []byte{0x2B, 0x81, 0x04, 0x00, 0x22} + // NIST curve P-521 + oidCurveP521 []byte = []byte{0x2B, 0x81, 0x04, 0x00, 0x23} +) + +const maxOIDLength = 8 + +// ecdsaKey stores the algorithm-specific fields for ECDSA keys. +// as defined in RFC 6637, Section 9. +type ecdsaKey struct { + // oid contains the OID byte sequence identifying the elliptic curve used + oid []byte + // p contains the elliptic curve point that represents the public key + p parsedMPI +} + +// parseOID reads the OID for the curve as defined in RFC 6637, Section 9. +func parseOID(r io.Reader) (oid []byte, err error) { + buf := make([]byte, maxOIDLength) + if _, err = readFull(r, buf[:1]); err != nil { + return + } + oidLen := buf[0] + if int(oidLen) > len(buf) { + err = errors.UnsupportedError("invalid oid length: " + strconv.Itoa(int(oidLen))) + return + } + oid = buf[:oidLen] + _, err = readFull(r, oid) + return +} + +func (f *ecdsaKey) parse(r io.Reader) (err error) { + if f.oid, err = parseOID(r); err != nil { + return err + } + f.p.bytes, f.p.bitLength, err = readMPI(r) + return +} + +func (f *ecdsaKey) serialize(w io.Writer) (err error) { + buf := make([]byte, maxOIDLength+1) + buf[0] = byte(len(f.oid)) + copy(buf[1:], f.oid) + if _, err = w.Write(buf[:len(f.oid)+1]); err != nil { + return + } + return writeMPIs(w, f.p) +} + +func (f *ecdsaKey) newECDSA() (*ecdsa.PublicKey, error) { + var c elliptic.Curve + if bytes.Equal(f.oid, oidCurveP256) { + c = elliptic.P256() + } else if bytes.Equal(f.oid, oidCurveP384) { + c = elliptic.P384() + } else if bytes.Equal(f.oid, oidCurveP521) { + c = elliptic.P521() + } else { + return nil, errors.UnsupportedError(fmt.Sprintf("unsupported oid: %x", f.oid)) + } + x, y := elliptic.Unmarshal(c, f.p.bytes) + if x == nil { + return nil, errors.UnsupportedError("failed to parse EC point") + } + return &ecdsa.PublicKey{Curve: c, X: x, Y: y}, nil +} + +func (f *ecdsaKey) byteLen() int { + return 1 + len(f.oid) + 2 + len(f.p.bytes) +} + +type kdfHashFunction byte +type kdfAlgorithm byte + +// ecdhKdf stores key derivation function parameters +// used for ECDH encryption. See RFC 6637, Section 9. +type ecdhKdf struct { + KdfHash kdfHashFunction + KdfAlgo kdfAlgorithm +} + +func (f *ecdhKdf) parse(r io.Reader) (err error) { + buf := make([]byte, 1) + if _, err = readFull(r, buf); err != nil { + return + } + kdfLen := int(buf[0]) + if kdfLen < 3 { + return errors.UnsupportedError("Unsupported ECDH KDF length: " + strconv.Itoa(kdfLen)) + } + buf = make([]byte, kdfLen) + if _, err = readFull(r, buf); err != nil { + return + } + reserved := int(buf[0]) + f.KdfHash = kdfHashFunction(buf[1]) + f.KdfAlgo = kdfAlgorithm(buf[2]) + if reserved != 0x01 { + return errors.UnsupportedError("Unsupported KDF reserved field: " + strconv.Itoa(reserved)) + } + return +} + +func (f *ecdhKdf) serialize(w io.Writer) (err error) { + buf := make([]byte, 4) + // See RFC 6637, Section 9, Algorithm-Specific Fields for ECDH keys. + buf[0] = byte(0x03) // Length of the following fields + buf[1] = byte(0x01) // Reserved for future extensions, must be 1 for now + buf[2] = byte(f.KdfHash) + buf[3] = byte(f.KdfAlgo) + _, err = w.Write(buf[:]) + return +} + +func (f *ecdhKdf) byteLen() int { + return 4 +} + +// PublicKey represents an OpenPGP public key. See RFC 4880, section 5.5.2. +type PublicKey struct { + CreationTime time.Time + PubKeyAlgo PublicKeyAlgorithm + PublicKey interface{} // *rsa.PublicKey, *dsa.PublicKey or *ecdsa.PublicKey + Fingerprint [20]byte + KeyId uint64 + IsSubkey bool + + n, e, p, q, g, y parsedMPI + + // RFC 6637 fields + ec *ecdsaKey + ecdh *ecdhKdf +} + +// signingKey provides a convenient abstraction over signature verification +// for v3 and v4 public keys. +type signingKey interface { + SerializeSignaturePrefix(io.Writer) + serializeWithoutHeaders(io.Writer) error +} + +func fromBig(n *big.Int) parsedMPI { + return parsedMPI{ + bytes: n.Bytes(), + bitLength: uint16(n.BitLen()), + } +} + +// NewRSAPublicKey returns a PublicKey that wraps the given rsa.PublicKey. +func NewRSAPublicKey(creationTime time.Time, pub *rsa.PublicKey) *PublicKey { + pk := &PublicKey{ + CreationTime: creationTime, + PubKeyAlgo: PubKeyAlgoRSA, + PublicKey: pub, + n: fromBig(pub.N), + e: fromBig(big.NewInt(int64(pub.E))), + } + + pk.setFingerPrintAndKeyId() + return pk +} + +// NewDSAPublicKey returns a PublicKey that wraps the given rsa.PublicKey. +func NewDSAPublicKey(creationTime time.Time, pub *dsa.PublicKey) *PublicKey { + pk := &PublicKey{ + CreationTime: creationTime, + PubKeyAlgo: PubKeyAlgoDSA, + PublicKey: pub, + p: fromBig(pub.P), + q: fromBig(pub.Q), + g: fromBig(pub.G), + y: fromBig(pub.Y), + } + + pk.setFingerPrintAndKeyId() + return pk +} + +func (pk *PublicKey) parse(r io.Reader) (err error) { + // RFC 4880, section 5.5.2 + var buf [6]byte + _, err = readFull(r, buf[:]) + if err != nil { + return + } + if buf[0] != 4 { + return errors.UnsupportedError("public key version") + } + pk.CreationTime = time.Unix(int64(uint32(buf[1])<<24|uint32(buf[2])<<16|uint32(buf[3])<<8|uint32(buf[4])), 0) + pk.PubKeyAlgo = PublicKeyAlgorithm(buf[5]) + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + err = pk.parseRSA(r) + case PubKeyAlgoDSA: + err = pk.parseDSA(r) + case PubKeyAlgoElGamal: + err = pk.parseElGamal(r) + case PubKeyAlgoECDSA: + pk.ec = new(ecdsaKey) + if err = pk.ec.parse(r); err != nil { + return err + } + pk.PublicKey, err = pk.ec.newECDSA() + case PubKeyAlgoECDH: + pk.ec = new(ecdsaKey) + if err = pk.ec.parse(r); err != nil { + return + } + pk.ecdh = new(ecdhKdf) + if err = pk.ecdh.parse(r); err != nil { + return + } + // The ECDH key is stored in an ecdsa.PublicKey for convenience. + pk.PublicKey, err = pk.ec.newECDSA() + default: + err = errors.UnsupportedError("public key type: " + strconv.Itoa(int(pk.PubKeyAlgo))) + } + if err != nil { + return + } + + pk.setFingerPrintAndKeyId() + return +} + +func (pk *PublicKey) setFingerPrintAndKeyId() { + // RFC 4880, section 12.2 + fingerPrint := sha1.New() + pk.SerializeSignaturePrefix(fingerPrint) + pk.serializeWithoutHeaders(fingerPrint) + copy(pk.Fingerprint[:], fingerPrint.Sum(nil)) + pk.KeyId = binary.BigEndian.Uint64(pk.Fingerprint[12:20]) +} + +// parseRSA parses RSA public key material from the given Reader. See RFC 4880, +// section 5.5.2. +func (pk *PublicKey) parseRSA(r io.Reader) (err error) { + pk.n.bytes, pk.n.bitLength, err = readMPI(r) + if err != nil { + return + } + pk.e.bytes, pk.e.bitLength, err = readMPI(r) + if err != nil { + return + } + + if len(pk.e.bytes) > 3 { + err = errors.UnsupportedError("large public exponent") + return + } + rsa := &rsa.PublicKey{ + N: new(big.Int).SetBytes(pk.n.bytes), + E: 0, + } + for i := 0; i < len(pk.e.bytes); i++ { + rsa.E <<= 8 + rsa.E |= int(pk.e.bytes[i]) + } + pk.PublicKey = rsa + return +} + +// parseDSA parses DSA public key material from the given Reader. See RFC 4880, +// section 5.5.2. +func (pk *PublicKey) parseDSA(r io.Reader) (err error) { + pk.p.bytes, pk.p.bitLength, err = readMPI(r) + if err != nil { + return + } + pk.q.bytes, pk.q.bitLength, err = readMPI(r) + if err != nil { + return + } + pk.g.bytes, pk.g.bitLength, err = readMPI(r) + if err != nil { + return + } + pk.y.bytes, pk.y.bitLength, err = readMPI(r) + if err != nil { + return + } + + dsa := new(dsa.PublicKey) + dsa.P = new(big.Int).SetBytes(pk.p.bytes) + dsa.Q = new(big.Int).SetBytes(pk.q.bytes) + dsa.G = new(big.Int).SetBytes(pk.g.bytes) + dsa.Y = new(big.Int).SetBytes(pk.y.bytes) + pk.PublicKey = dsa + return +} + +// parseElGamal parses ElGamal public key material from the given Reader. See +// RFC 4880, section 5.5.2. +func (pk *PublicKey) parseElGamal(r io.Reader) (err error) { + pk.p.bytes, pk.p.bitLength, err = readMPI(r) + if err != nil { + return + } + pk.g.bytes, pk.g.bitLength, err = readMPI(r) + if err != nil { + return + } + pk.y.bytes, pk.y.bitLength, err = readMPI(r) + if err != nil { + return + } + + elgamal := new(elgamal.PublicKey) + elgamal.P = new(big.Int).SetBytes(pk.p.bytes) + elgamal.G = new(big.Int).SetBytes(pk.g.bytes) + elgamal.Y = new(big.Int).SetBytes(pk.y.bytes) + pk.PublicKey = elgamal + return +} + +// SerializeSignaturePrefix writes the prefix for this public key to the given Writer. +// The prefix is used when calculating a signature over this public key. See +// RFC 4880, section 5.2.4. +func (pk *PublicKey) SerializeSignaturePrefix(h io.Writer) { + var pLength uint16 + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + pLength += 2 + uint16(len(pk.n.bytes)) + pLength += 2 + uint16(len(pk.e.bytes)) + case PubKeyAlgoDSA: + pLength += 2 + uint16(len(pk.p.bytes)) + pLength += 2 + uint16(len(pk.q.bytes)) + pLength += 2 + uint16(len(pk.g.bytes)) + pLength += 2 + uint16(len(pk.y.bytes)) + case PubKeyAlgoElGamal: + pLength += 2 + uint16(len(pk.p.bytes)) + pLength += 2 + uint16(len(pk.g.bytes)) + pLength += 2 + uint16(len(pk.y.bytes)) + case PubKeyAlgoECDSA: + pLength += uint16(pk.ec.byteLen()) + case PubKeyAlgoECDH: + pLength += uint16(pk.ec.byteLen()) + pLength += uint16(pk.ecdh.byteLen()) + default: + panic("unknown public key algorithm") + } + pLength += 6 + h.Write([]byte{0x99, byte(pLength >> 8), byte(pLength)}) + return +} + +func (pk *PublicKey) Serialize(w io.Writer) (err error) { + length := 6 // 6 byte header + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + length += 2 + len(pk.n.bytes) + length += 2 + len(pk.e.bytes) + case PubKeyAlgoDSA: + length += 2 + len(pk.p.bytes) + length += 2 + len(pk.q.bytes) + length += 2 + len(pk.g.bytes) + length += 2 + len(pk.y.bytes) + case PubKeyAlgoElGamal: + length += 2 + len(pk.p.bytes) + length += 2 + len(pk.g.bytes) + length += 2 + len(pk.y.bytes) + case PubKeyAlgoECDSA: + length += pk.ec.byteLen() + case PubKeyAlgoECDH: + length += pk.ec.byteLen() + length += pk.ecdh.byteLen() + default: + panic("unknown public key algorithm") + } + + packetType := packetTypePublicKey + if pk.IsSubkey { + packetType = packetTypePublicSubkey + } + err = serializeHeader(w, packetType, length) + if err != nil { + return + } + return pk.serializeWithoutHeaders(w) +} + +// serializeWithoutHeaders marshals the PublicKey to w in the form of an +// OpenPGP public key packet, not including the packet header. +func (pk *PublicKey) serializeWithoutHeaders(w io.Writer) (err error) { + var buf [6]byte + buf[0] = 4 + t := uint32(pk.CreationTime.Unix()) + buf[1] = byte(t >> 24) + buf[2] = byte(t >> 16) + buf[3] = byte(t >> 8) + buf[4] = byte(t) + buf[5] = byte(pk.PubKeyAlgo) + + _, err = w.Write(buf[:]) + if err != nil { + return + } + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + return writeMPIs(w, pk.n, pk.e) + case PubKeyAlgoDSA: + return writeMPIs(w, pk.p, pk.q, pk.g, pk.y) + case PubKeyAlgoElGamal: + return writeMPIs(w, pk.p, pk.g, pk.y) + case PubKeyAlgoECDSA: + return pk.ec.serialize(w) + case PubKeyAlgoECDH: + if err = pk.ec.serialize(w); err != nil { + return + } + return pk.ecdh.serialize(w) + } + return errors.InvalidArgumentError("bad public-key algorithm") +} + +// CanSign returns true iff this public key can generate signatures +func (pk *PublicKey) CanSign() bool { + return pk.PubKeyAlgo != PubKeyAlgoRSAEncryptOnly && pk.PubKeyAlgo != PubKeyAlgoElGamal +} + +// VerifySignature returns nil iff sig is a valid signature, made by this +// public key, of the data hashed into signed. signed is mutated by this call. +func (pk *PublicKey) VerifySignature(signed hash.Hash, sig *Signature) (err error) { + if !pk.CanSign() { + return errors.InvalidArgumentError("public key cannot generate signatures") + } + + signed.Write(sig.HashSuffix) + hashBytes := signed.Sum(nil) + + if hashBytes[0] != sig.HashTag[0] || hashBytes[1] != sig.HashTag[1] { + return errors.SignatureError("hash tag doesn't match") + } + + if pk.PubKeyAlgo != sig.PubKeyAlgo { + return errors.InvalidArgumentError("public key and signature use different algorithms") + } + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + rsaPublicKey, _ := pk.PublicKey.(*rsa.PublicKey) + err = rsa.VerifyPKCS1v15(rsaPublicKey, sig.Hash, hashBytes, sig.RSASignature.bytes) + if err != nil { + return errors.SignatureError("RSA verification failure") + } + return nil + case PubKeyAlgoDSA: + dsaPublicKey, _ := pk.PublicKey.(*dsa.PublicKey) + // Need to truncate hashBytes to match FIPS 186-3 section 4.6. + subgroupSize := (dsaPublicKey.Q.BitLen() + 7) / 8 + if len(hashBytes) > subgroupSize { + hashBytes = hashBytes[:subgroupSize] + } + if !dsa.Verify(dsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.DSASigR.bytes), new(big.Int).SetBytes(sig.DSASigS.bytes)) { + return errors.SignatureError("DSA verification failure") + } + return nil + case PubKeyAlgoECDSA: + ecdsaPublicKey := pk.PublicKey.(*ecdsa.PublicKey) + if !ecdsa.Verify(ecdsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.ECDSASigR.bytes), new(big.Int).SetBytes(sig.ECDSASigS.bytes)) { + return errors.SignatureError("ECDSA verification failure") + } + return nil + default: + return errors.SignatureError("Unsupported public key algorithm used in signature") + } + panic("unreachable") +} + +// VerifySignatureV3 returns nil iff sig is a valid signature, made by this +// public key, of the data hashed into signed. signed is mutated by this call. +func (pk *PublicKey) VerifySignatureV3(signed hash.Hash, sig *SignatureV3) (err error) { + if !pk.CanSign() { + return errors.InvalidArgumentError("public key cannot generate signatures") + } + + suffix := make([]byte, 5) + suffix[0] = byte(sig.SigType) + binary.BigEndian.PutUint32(suffix[1:], uint32(sig.CreationTime.Unix())) + signed.Write(suffix) + hashBytes := signed.Sum(nil) + + if hashBytes[0] != sig.HashTag[0] || hashBytes[1] != sig.HashTag[1] { + return errors.SignatureError("hash tag doesn't match") + } + + if pk.PubKeyAlgo != sig.PubKeyAlgo { + return errors.InvalidArgumentError("public key and signature use different algorithms") + } + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + rsaPublicKey := pk.PublicKey.(*rsa.PublicKey) + if err = rsa.VerifyPKCS1v15(rsaPublicKey, sig.Hash, hashBytes, sig.RSASignature.bytes); err != nil { + return errors.SignatureError("RSA verification failure") + } + return + case PubKeyAlgoDSA: + dsaPublicKey := pk.PublicKey.(*dsa.PublicKey) + // Need to truncate hashBytes to match FIPS 186-3 section 4.6. + subgroupSize := (dsaPublicKey.Q.BitLen() + 7) / 8 + if len(hashBytes) > subgroupSize { + hashBytes = hashBytes[:subgroupSize] + } + if !dsa.Verify(dsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.DSASigR.bytes), new(big.Int).SetBytes(sig.DSASigS.bytes)) { + return errors.SignatureError("DSA verification failure") + } + return nil + default: + panic("shouldn't happen") + } + panic("unreachable") +} + +// keySignatureHash returns a Hash of the message that needs to be signed for +// pk to assert a subkey relationship to signed. +func keySignatureHash(pk, signed signingKey, hashFunc crypto.Hash) (h hash.Hash, err error) { + if !hashFunc.Available() { + return nil, errors.UnsupportedError("hash function") + } + h = hashFunc.New() + + // RFC 4880, section 5.2.4 + pk.SerializeSignaturePrefix(h) + pk.serializeWithoutHeaders(h) + signed.SerializeSignaturePrefix(h) + signed.serializeWithoutHeaders(h) + return +} + +// VerifyKeySignature returns nil iff sig is a valid signature, made by this +// public key, of signed. +func (pk *PublicKey) VerifyKeySignature(signed *PublicKey, sig *Signature) (err error) { + h, err := keySignatureHash(pk, signed, sig.Hash) + if err != nil { + return err + } + return pk.VerifySignature(h, sig) +} + +// userIdSignatureHash returns a Hash of the message that needs to be signed +// to assert that pk is a valid key for id. +func userIdSignatureHash(id string, pk *PublicKey, hashFunc crypto.Hash) (h hash.Hash, err error) { + if !hashFunc.Available() { + return nil, errors.UnsupportedError("hash function") + } + h = hashFunc.New() + + // RFC 4880, section 5.2.4 + pk.SerializeSignaturePrefix(h) + pk.serializeWithoutHeaders(h) + + var buf [5]byte + buf[0] = 0xb4 + buf[1] = byte(len(id) >> 24) + buf[2] = byte(len(id) >> 16) + buf[3] = byte(len(id) >> 8) + buf[4] = byte(len(id)) + h.Write(buf[:]) + h.Write([]byte(id)) + + return +} + +// VerifyUserIdSignature returns nil iff sig is a valid signature, made by this +// public key, of id. +func (pk *PublicKey) VerifyUserIdSignature(id string, sig *Signature) (err error) { + h, err := userIdSignatureHash(id, pk, sig.Hash) + if err != nil { + return err + } + return pk.VerifySignature(h, sig) +} + +// VerifyUserIdSignatureV3 returns nil iff sig is a valid signature, made by this +// public key, of id. +func (pk *PublicKey) VerifyUserIdSignatureV3(id string, sig *SignatureV3) (err error) { + h, err := userIdSignatureV3Hash(id, pk, sig.Hash) + if err != nil { + return err + } + return pk.VerifySignatureV3(h, sig) +} + +// KeyIdString returns the public key's fingerprint in capital hex +// (e.g. "6C7EE1B8621CC013"). +func (pk *PublicKey) KeyIdString() string { + return fmt.Sprintf("%X", pk.Fingerprint[12:20]) +} + +// KeyIdShortString returns the short form of public key's fingerprint +// in capital hex, as shown by gpg --list-keys (e.g. "621CC013"). +func (pk *PublicKey) KeyIdShortString() string { + return fmt.Sprintf("%X", pk.Fingerprint[16:20]) +} + +// A parsedMPI is used to store the contents of a big integer, along with the +// bit length that was specified in the original input. This allows the MPI to +// be reserialized exactly. +type parsedMPI struct { + bytes []byte + bitLength uint16 +} + +// writeMPIs is a utility function for serializing several big integers to the +// given Writer. +func writeMPIs(w io.Writer, mpis ...parsedMPI) (err error) { + for _, mpi := range mpis { + err = writeMPI(w, mpi.bitLength, mpi.bytes) + if err != nil { + return + } + } + return +} + +// BitLength returns the bit length for the given public key. +func (pk *PublicKey) BitLength() (bitLength uint16, err error) { + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + bitLength = pk.n.bitLength + case PubKeyAlgoDSA: + bitLength = pk.p.bitLength + case PubKeyAlgoElGamal: + bitLength = pk.p.bitLength + default: + err = errors.InvalidArgumentError("bad public-key algorithm") + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_test.go new file mode 100644 index 00000000..47168a41 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_test.go @@ -0,0 +1,202 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "encoding/hex" + "testing" + "time" +) + +var pubKeyTests = []struct { + hexData string + hexFingerprint string + creationTime time.Time + pubKeyAlgo PublicKeyAlgorithm + keyId uint64 + keyIdString string + keyIdShort string +}{ + {rsaPkDataHex, rsaFingerprintHex, time.Unix(0x4d3c5c10, 0), PubKeyAlgoRSA, 0xa34d7e18c20c31bb, "A34D7E18C20C31BB", "C20C31BB"}, + {dsaPkDataHex, dsaFingerprintHex, time.Unix(0x4d432f89, 0), PubKeyAlgoDSA, 0x8e8fbe54062f19ed, "8E8FBE54062F19ED", "062F19ED"}, + {ecdsaPkDataHex, ecdsaFingerprintHex, time.Unix(0x5071c294, 0), PubKeyAlgoECDSA, 0x43fe956c542ca00b, "43FE956C542CA00B", "542CA00B"}, +} + +func TestPublicKeyRead(t *testing.T) { + for i, test := range pubKeyTests { + packet, err := Read(readerFromHex(test.hexData)) + if err != nil { + t.Errorf("#%d: Read error: %s", i, err) + continue + } + pk, ok := packet.(*PublicKey) + if !ok { + t.Errorf("#%d: failed to parse, got: %#v", i, packet) + continue + } + if pk.PubKeyAlgo != test.pubKeyAlgo { + t.Errorf("#%d: bad public key algorithm got:%x want:%x", i, pk.PubKeyAlgo, test.pubKeyAlgo) + } + if !pk.CreationTime.Equal(test.creationTime) { + t.Errorf("#%d: bad creation time got:%v want:%v", i, pk.CreationTime, test.creationTime) + } + expectedFingerprint, _ := hex.DecodeString(test.hexFingerprint) + if !bytes.Equal(expectedFingerprint, pk.Fingerprint[:]) { + t.Errorf("#%d: bad fingerprint got:%x want:%x", i, pk.Fingerprint[:], expectedFingerprint) + } + if pk.KeyId != test.keyId { + t.Errorf("#%d: bad keyid got:%x want:%x", i, pk.KeyId, test.keyId) + } + if g, e := pk.KeyIdString(), test.keyIdString; g != e { + t.Errorf("#%d: bad KeyIdString got:%q want:%q", i, g, e) + } + if g, e := pk.KeyIdShortString(), test.keyIdShort; g != e { + t.Errorf("#%d: bad KeyIdShortString got:%q want:%q", i, g, e) + } + } +} + +func TestPublicKeySerialize(t *testing.T) { + for i, test := range pubKeyTests { + packet, err := Read(readerFromHex(test.hexData)) + if err != nil { + t.Errorf("#%d: Read error: %s", i, err) + continue + } + pk, ok := packet.(*PublicKey) + if !ok { + t.Errorf("#%d: failed to parse, got: %#v", i, packet) + continue + } + serializeBuf := bytes.NewBuffer(nil) + err = pk.Serialize(serializeBuf) + if err != nil { + t.Errorf("#%d: failed to serialize: %s", i, err) + continue + } + + packet, err = Read(serializeBuf) + if err != nil { + t.Errorf("#%d: Read error (from serialized data): %s", i, err) + continue + } + pk, ok = packet.(*PublicKey) + if !ok { + t.Errorf("#%d: failed to parse serialized data, got: %#v", i, packet) + continue + } + } +} + +func TestEcc384Serialize(t *testing.T) { + r := readerFromHex(ecc384PubHex) + var w bytes.Buffer + for i := 0; i < 2; i++ { + // Public key + p, err := Read(r) + if err != nil { + t.Error(err) + } + pubkey := p.(*PublicKey) + if !bytes.Equal(pubkey.ec.oid, []byte{0x2b, 0x81, 0x04, 0x00, 0x22}) { + t.Errorf("Unexpected pubkey OID: %x", pubkey.ec.oid) + } + if !bytes.Equal(pubkey.ec.p.bytes[:5], []byte{0x04, 0xf6, 0xb8, 0xc5, 0xac}) { + t.Errorf("Unexpected pubkey P[:5]: %x", pubkey.ec.p.bytes) + } + if pubkey.KeyId != 0x098033880F54719F { + t.Errorf("Unexpected pubkey ID: %x", pubkey.KeyId) + } + err = pubkey.Serialize(&w) + if err != nil { + t.Error(err) + } + // User ID + p, err = Read(r) + if err != nil { + t.Error(err) + } + uid := p.(*UserId) + if uid.Id != "ec_dsa_dh_384 " { + t.Error("Unexpected UID:", uid.Id) + } + err = uid.Serialize(&w) + if err != nil { + t.Error(err) + } + // User ID Sig + p, err = Read(r) + if err != nil { + t.Error(err) + } + uidSig := p.(*Signature) + err = pubkey.VerifyUserIdSignature(uid.Id, uidSig) + if err != nil { + t.Error(err, ": UID") + } + err = uidSig.Serialize(&w) + if err != nil { + t.Error(err) + } + // Subkey + p, err = Read(r) + if err != nil { + t.Error(err) + } + subkey := p.(*PublicKey) + if !bytes.Equal(subkey.ec.oid, []byte{0x2b, 0x81, 0x04, 0x00, 0x22}) { + t.Errorf("Unexpected subkey OID: %x", subkey.ec.oid) + } + if !bytes.Equal(subkey.ec.p.bytes[:5], []byte{0x04, 0x2f, 0xaa, 0x84, 0x02}) { + t.Errorf("Unexpected subkey P[:5]: %x", subkey.ec.p.bytes) + } + if subkey.ecdh.KdfHash != 0x09 { + t.Error("Expected KDF hash function SHA384 (0x09), got", subkey.ecdh.KdfHash) + } + if subkey.ecdh.KdfAlgo != 0x09 { + t.Error("Expected KDF symmetric alg AES256 (0x09), got", subkey.ecdh.KdfAlgo) + } + if subkey.KeyId != 0xAA8B938F9A201946 { + t.Errorf("Unexpected subkey ID: %x", subkey.KeyId) + } + err = subkey.Serialize(&w) + if err != nil { + t.Error(err) + } + // Subkey Sig + p, err = Read(r) + if err != nil { + t.Error(err) + } + subkeySig := p.(*Signature) + err = pubkey.VerifyKeySignature(subkey, subkeySig) + if err != nil { + t.Error(err) + } + err = subkeySig.Serialize(&w) + if err != nil { + t.Error(err) + } + // Now read back what we've written again + r = bytes.NewBuffer(w.Bytes()) + w.Reset() + } +} + +const rsaFingerprintHex = "5fb74b1d03b1e3cb31bc2f8aa34d7e18c20c31bb" + +const rsaPkDataHex = "988d044d3c5c10010400b1d13382944bd5aba23a4312968b5095d14f947f600eb478e14a6fcb16b0e0cac764884909c020bc495cfcc39a935387c661507bdb236a0612fb582cac3af9b29cc2c8c70090616c41b662f4da4c1201e195472eb7f4ae1ccbcbf9940fe21d985e379a5563dde5b9a23d35f1cfaa5790da3b79db26f23695107bfaca8e7b5bcd0011010001" + +const dsaFingerprintHex = "eece4c094db002103714c63c8e8fbe54062f19ed" + +const dsaPkDataHex = "9901a2044d432f89110400cd581334f0d7a1e1bdc8b9d6d8c0baf68793632735d2bb0903224cbaa1dfbf35a60ee7a13b92643421e1eb41aa8d79bea19a115a677f6b8ba3c7818ce53a6c2a24a1608bd8b8d6e55c5090cbde09dd26e356267465ae25e69ec8bdd57c7bbb2623e4d73336f73a0a9098f7f16da2e25252130fd694c0e8070c55a812a423ae7f00a0ebf50e70c2f19c3520a551bd4b08d30f23530d3d03ff7d0bf4a53a64a09dc5e6e6e35854b7d70c882b0c60293401958b1bd9e40abec3ea05ba87cf64899299d4bd6aa7f459c201d3fbbd6c82004bdc5e8a9eb8082d12054cc90fa9d4ec251a843236a588bf49552441817436c4f43326966fe85447d4e6d0acf8fa1ef0f014730770603ad7634c3088dc52501c237328417c31c89ed70400b2f1a98b0bf42f11fefc430704bebbaa41d9f355600c3facee1e490f64208e0e094ea55e3a598a219a58500bf78ac677b670a14f4e47e9cf8eab4f368cc1ddcaa18cc59309d4cc62dd4f680e73e6cc3e1ce87a84d0925efbcb26c575c093fc42eecf45135fabf6403a25c2016e1774c0484e440a18319072c617cc97ac0a3bb0" + +const ecdsaFingerprintHex = "9892270b38b8980b05c8d56d43fe956c542ca00b" + +const ecdsaPkDataHex = "9893045071c29413052b8104002304230401f4867769cedfa52c325018896245443968e52e51d0c2df8d939949cb5b330f2921711fbee1c9b9dddb95d15cb0255e99badeddda7cc23d9ddcaacbc290969b9f24019375d61c2e4e3b36953a28d8b2bc95f78c3f1d592fb24499be348656a7b17e3963187b4361afe497bc5f9f81213f04069f8e1fb9e6a6290ae295ca1a92b894396cb4" + +// Source: https://sites.google.com/site/brainhub/pgpecckeys#TOC-ECC-NIST-P-384-key +const ecc384PubHex = `99006f044d53059213052b81040022030304f6b8c5aced5b84ef9f4a209db2e4a9dfb70d28cb8c10ecd57674a9fa5a67389942b62d5e51367df4c7bfd3f8e500feecf07ed265a621a8ebbbe53e947ec78c677eba143bd1533c2b350e1c29f82313e1e1108eba063be1e64b10e6950e799c2db42465635f6473615f64685f333834203c6f70656e70677040627261696e6875622e6f72673e8900cb04101309005305024d530592301480000000002000077072656665727265642d656d61696c2d656e636f64696e67407067702e636f6d7067706d696d65040b090807021901051b03000000021602051e010000000415090a08000a0910098033880f54719fca2b0180aa37350968bd5f115afd8ce7bc7b103822152dbff06d0afcda835329510905b98cb469ba208faab87c7412b799e7b633017f58364ea480e8a1a3f253a0c5f22c446e8be9a9fce6210136ee30811abbd49139de28b5bdf8dc36d06ae748579e9ff503b90073044d53059212052b810400220303042faa84024a20b6735c4897efa5bfb41bf85b7eefeab5ca0cb9ffc8ea04a46acb25534a577694f9e25340a4ab5223a9dd1eda530c8aa2e6718db10d7e672558c7736fe09369ea5739a2a3554bf16d41faa50562f11c6d39bbd5dffb6b9a9ec9180301090989008404181309000c05024d530592051b0c000000000a0910098033880f54719f80970180eee7a6d8fcee41ee4f9289df17f9bcf9d955dca25c583b94336f3a2b2d4986dc5cf417b8d2dc86f741a9e1a6d236c0e3017d1c76575458a0cfb93ae8a2b274fcc65ceecd7a91eec83656ba13219969f06945b48c56bd04152c3a0553c5f2f4bd1267` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_v3.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_v3.go new file mode 100644 index 00000000..c6adf75b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_v3.go @@ -0,0 +1,274 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "crypto" + "crypto/md5" + "crypto/rsa" + "encoding/binary" + "fmt" + "hash" + "io" + "math/big" + "strconv" + "time" + + "code.google.com/p/go.crypto/openpgp/errors" +) + +// PublicKeyV3 represents older, version 3 public keys. These keys are less secure and +// should not be used for signing or encrypting. They are supported here only for +// parsing version 3 key material and validating signatures. +// See RFC 4880, section 5.5.2. +type PublicKeyV3 struct { + CreationTime time.Time + DaysToExpire uint16 + PubKeyAlgo PublicKeyAlgorithm + PublicKey *rsa.PublicKey + Fingerprint [16]byte + KeyId uint64 + IsSubkey bool + + n, e parsedMPI +} + +// newRSAPublicKeyV3 returns a PublicKey that wraps the given rsa.PublicKey. +// Included here for testing purposes only. RFC 4880, section 5.5.2: +// "an implementation MUST NOT generate a V3 key, but MAY accept it." +func newRSAPublicKeyV3(creationTime time.Time, pub *rsa.PublicKey) *PublicKeyV3 { + pk := &PublicKeyV3{ + CreationTime: creationTime, + PublicKey: pub, + n: fromBig(pub.N), + e: fromBig(big.NewInt(int64(pub.E))), + } + + pk.setFingerPrintAndKeyId() + return pk +} + +func (pk *PublicKeyV3) parse(r io.Reader) (err error) { + // RFC 4880, section 5.5.2 + var buf [8]byte + if _, err = readFull(r, buf[:]); err != nil { + return + } + if buf[0] < 2 || buf[0] > 3 { + return errors.UnsupportedError("public key version") + } + pk.CreationTime = time.Unix(int64(uint32(buf[1])<<24|uint32(buf[2])<<16|uint32(buf[3])<<8|uint32(buf[4])), 0) + pk.DaysToExpire = binary.BigEndian.Uint16(buf[5:7]) + pk.PubKeyAlgo = PublicKeyAlgorithm(buf[7]) + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + err = pk.parseRSA(r) + default: + err = errors.UnsupportedError("public key type: " + strconv.Itoa(int(pk.PubKeyAlgo))) + } + if err != nil { + return + } + + pk.setFingerPrintAndKeyId() + return +} + +func (pk *PublicKeyV3) setFingerPrintAndKeyId() { + // RFC 4880, section 12.2 + fingerPrint := md5.New() + fingerPrint.Write(pk.n.bytes) + fingerPrint.Write(pk.e.bytes) + fingerPrint.Sum(pk.Fingerprint[:0]) + pk.KeyId = binary.BigEndian.Uint64(pk.n.bytes[len(pk.n.bytes)-8:]) +} + +// parseRSA parses RSA public key material from the given Reader. See RFC 4880, +// section 5.5.2. +func (pk *PublicKeyV3) parseRSA(r io.Reader) (err error) { + if pk.n.bytes, pk.n.bitLength, err = readMPI(r); err != nil { + return + } + if pk.e.bytes, pk.e.bitLength, err = readMPI(r); err != nil { + return + } + + if len(pk.e.bytes) > 3 { + err = errors.UnsupportedError("large public exponent") + return + } + rsa := &rsa.PublicKey{N: new(big.Int).SetBytes(pk.n.bytes)} + for i := 0; i < len(pk.e.bytes); i++ { + rsa.E <<= 8 + rsa.E |= int(pk.e.bytes[i]) + } + pk.PublicKey = rsa + return +} + +// SerializeSignaturePrefix writes the prefix for this public key to the given Writer. +// The prefix is used when calculating a signature over this public key. See +// RFC 4880, section 5.2.4. +func (pk *PublicKeyV3) SerializeSignaturePrefix(w io.Writer) { + var pLength uint16 + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + pLength += 2 + uint16(len(pk.n.bytes)) + pLength += 2 + uint16(len(pk.e.bytes)) + default: + panic("unknown public key algorithm") + } + pLength += 6 + w.Write([]byte{0x99, byte(pLength >> 8), byte(pLength)}) + return +} + +func (pk *PublicKeyV3) Serialize(w io.Writer) (err error) { + length := 8 // 8 byte header + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + length += 2 + len(pk.n.bytes) + length += 2 + len(pk.e.bytes) + default: + panic("unknown public key algorithm") + } + + packetType := packetTypePublicKey + if pk.IsSubkey { + packetType = packetTypePublicSubkey + } + if err = serializeHeader(w, packetType, length); err != nil { + return + } + return pk.serializeWithoutHeaders(w) +} + +// serializeWithoutHeaders marshals the PublicKey to w in the form of an +// OpenPGP public key packet, not including the packet header. +func (pk *PublicKeyV3) serializeWithoutHeaders(w io.Writer) (err error) { + var buf [8]byte + // Version 3 + buf[0] = 3 + // Creation time + t := uint32(pk.CreationTime.Unix()) + buf[1] = byte(t >> 24) + buf[2] = byte(t >> 16) + buf[3] = byte(t >> 8) + buf[4] = byte(t) + // Days to expire + buf[5] = byte(pk.DaysToExpire >> 8) + buf[6] = byte(pk.DaysToExpire) + // Public key algorithm + buf[7] = byte(pk.PubKeyAlgo) + + if _, err = w.Write(buf[:]); err != nil { + return + } + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + return writeMPIs(w, pk.n, pk.e) + } + return errors.InvalidArgumentError("bad public-key algorithm") +} + +// CanSign returns true iff this public key can generate signatures +func (pk *PublicKeyV3) CanSign() bool { + return pk.PubKeyAlgo != PubKeyAlgoRSAEncryptOnly +} + +// VerifySignatureV3 returns nil iff sig is a valid signature, made by this +// public key, of the data hashed into signed. signed is mutated by this call. +func (pk *PublicKeyV3) VerifySignatureV3(signed hash.Hash, sig *SignatureV3) (err error) { + if !pk.CanSign() { + return errors.InvalidArgumentError("public key cannot generate signatures") + } + + suffix := make([]byte, 5) + suffix[0] = byte(sig.SigType) + binary.BigEndian.PutUint32(suffix[1:], uint32(sig.CreationTime.Unix())) + signed.Write(suffix) + hashBytes := signed.Sum(nil) + + if hashBytes[0] != sig.HashTag[0] || hashBytes[1] != sig.HashTag[1] { + return errors.SignatureError("hash tag doesn't match") + } + + if pk.PubKeyAlgo != sig.PubKeyAlgo { + return errors.InvalidArgumentError("public key and signature use different algorithms") + } + + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + if err = rsa.VerifyPKCS1v15(pk.PublicKey, sig.Hash, hashBytes, sig.RSASignature.bytes); err != nil { + return errors.SignatureError("RSA verification failure") + } + return + default: + // V3 public keys only support RSA. + panic("shouldn't happen") + } + panic("unreachable") +} + +// VerifyUserIdSignatureV3 returns nil iff sig is a valid signature, made by this +// public key, of id. +func (pk *PublicKeyV3) VerifyUserIdSignatureV3(id string, sig *SignatureV3) (err error) { + h, err := userIdSignatureV3Hash(id, pk, sig.Hash) + if err != nil { + return err + } + return pk.VerifySignatureV3(h, sig) +} + +// VerifyKeySignatureV3 returns nil iff sig is a valid signature, made by this +// public key, of signed. +func (pk *PublicKeyV3) VerifyKeySignatureV3(signed *PublicKeyV3, sig *SignatureV3) (err error) { + h, err := keySignatureHash(pk, signed, sig.Hash) + if err != nil { + return err + } + return pk.VerifySignatureV3(h, sig) +} + +// userIdSignatureV3Hash returns a Hash of the message that needs to be signed +// to assert that pk is a valid key for id. +func userIdSignatureV3Hash(id string, pk signingKey, hfn crypto.Hash) (h hash.Hash, err error) { + if h = hfn.New(); h == nil { + return nil, errors.UnsupportedError("hash function") + } + + // RFC 4880, section 5.2.4 + pk.SerializeSignaturePrefix(h) + pk.serializeWithoutHeaders(h) + + h.Write([]byte(id)) + + return +} + +// KeyIdString returns the public key's fingerprint in capital hex +// (e.g. "6C7EE1B8621CC013"). +func (pk *PublicKeyV3) KeyIdString() string { + return fmt.Sprintf("%X", pk.KeyId) +} + +// KeyIdShortString returns the short form of public key's fingerprint +// in capital hex, as shown by gpg --list-keys (e.g. "621CC013"). +func (pk *PublicKeyV3) KeyIdShortString() string { + return fmt.Sprintf("%X", pk.KeyId&0xFFFFFFFF) +} + +// BitLength returns the bit length for the given public key. +func (pk *PublicKeyV3) BitLength() (bitLength uint16, err error) { + switch pk.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSAEncryptOnly, PubKeyAlgoRSASignOnly: + bitLength = pk.n.bitLength + default: + err = errors.InvalidArgumentError("bad public-key algorithm") + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_v3_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_v3_test.go new file mode 100644 index 00000000..e0640590 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/public_key_v3_test.go @@ -0,0 +1,82 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "encoding/hex" + "testing" + "time" +) + +var pubKeyV3Test = struct { + hexFingerprint string + creationTime time.Time + pubKeyAlgo PublicKeyAlgorithm + keyId uint64 + keyIdString string + keyIdShort string +}{ + "103BECF5BD1E837C89D19E98487767F7", + time.Unix(779753634, 0), + PubKeyAlgoRSA, + 0xDE0F188A5DA5E3C9, + "DE0F188A5DA5E3C9", + "5DA5E3C9"} + +func TestPublicKeyV3Read(t *testing.T) { + i, test := 0, pubKeyV3Test + packet, err := Read(v3KeyReader(t)) + if err != nil { + t.Fatalf("#%d: Read error: %s", i, err) + } + pk, ok := packet.(*PublicKeyV3) + if !ok { + t.Fatalf("#%d: failed to parse, got: %#v", i, packet) + } + if pk.PubKeyAlgo != test.pubKeyAlgo { + t.Errorf("#%d: bad public key algorithm got:%x want:%x", i, pk.PubKeyAlgo, test.pubKeyAlgo) + } + if !pk.CreationTime.Equal(test.creationTime) { + t.Errorf("#%d: bad creation time got:%v want:%v", i, pk.CreationTime, test.creationTime) + } + expectedFingerprint, _ := hex.DecodeString(test.hexFingerprint) + if !bytes.Equal(expectedFingerprint, pk.Fingerprint[:]) { + t.Errorf("#%d: bad fingerprint got:%x want:%x", i, pk.Fingerprint[:], expectedFingerprint) + } + if pk.KeyId != test.keyId { + t.Errorf("#%d: bad keyid got:%x want:%x", i, pk.KeyId, test.keyId) + } + if g, e := pk.KeyIdString(), test.keyIdString; g != e { + t.Errorf("#%d: bad KeyIdString got:%q want:%q", i, g, e) + } + if g, e := pk.KeyIdShortString(), test.keyIdShort; g != e { + t.Errorf("#%d: bad KeyIdShortString got:%q want:%q", i, g, e) + } +} + +func TestPublicKeyV3Serialize(t *testing.T) { + //for i, test := range pubKeyV3Tests { + i := 0 + packet, err := Read(v3KeyReader(t)) + if err != nil { + t.Fatalf("#%d: Read error: %s", i, err) + } + pk, ok := packet.(*PublicKeyV3) + if !ok { + t.Fatalf("#%d: failed to parse, got: %#v", i, packet) + } + var serializeBuf bytes.Buffer + if err = pk.Serialize(&serializeBuf); err != nil { + t.Fatalf("#%d: failed to serialize: %s", i, err) + } + + if packet, err = Read(bytes.NewBuffer(serializeBuf.Bytes())); err != nil { + t.Fatalf("#%d: Read error (from serialized data): %s", i, err) + } + if pk, ok = packet.(*PublicKeyV3); !ok { + t.Fatalf("#%d: failed to parse serialized data, got: %#v", i, packet) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/reader.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/reader.go new file mode 100644 index 00000000..3325d636 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/reader.go @@ -0,0 +1,62 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "code.google.com/p/go.crypto/openpgp/errors" + "io" +) + +// Reader reads packets from an io.Reader and allows packets to be 'unread' so +// that they result from the next call to Next. +type Reader struct { + q []Packet + readers []io.Reader +} + +// Next returns the most recently unread Packet, or reads another packet from +// the top-most io.Reader. Unknown packet types are skipped. +func (r *Reader) Next() (p Packet, err error) { + if len(r.q) > 0 { + p = r.q[len(r.q)-1] + r.q = r.q[:len(r.q)-1] + return + } + + for len(r.readers) > 0 { + p, err = Read(r.readers[len(r.readers)-1]) + if err == nil { + return + } + if err == io.EOF { + r.readers = r.readers[:len(r.readers)-1] + continue + } + if _, ok := err.(errors.UnknownPacketTypeError); !ok { + return nil, err + } + } + + return nil, io.EOF +} + +// Push causes the Reader to start reading from a new io.Reader. When an EOF +// error is seen from the new io.Reader, it is popped and the Reader continues +// to read from the next most recent io.Reader. +func (r *Reader) Push(reader io.Reader) { + r.readers = append(r.readers, reader) +} + +// Unread causes the given Packet to be returned from the next call to Next. +func (r *Reader) Unread(p Packet) { + r.q = append(r.q, p) +} + +func NewReader(r io.Reader) *Reader { + return &Reader{ + q: nil, + readers: []io.Reader{r}, + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature.go new file mode 100644 index 00000000..dbed36ed --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature.go @@ -0,0 +1,637 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/s2k" + "crypto" + "crypto/dsa" + "crypto/rsa" + "encoding/binary" + "hash" + "io" + "strconv" + "time" +) + +// Signature represents a signature. See RFC 4880, section 5.2. +type Signature struct { + SigType SignatureType + PubKeyAlgo PublicKeyAlgorithm + Hash crypto.Hash + + // HashSuffix is extra data that is hashed in after the signed data. + HashSuffix []byte + // HashTag contains the first two bytes of the hash for fast rejection + // of bad signed data. + HashTag [2]byte + CreationTime time.Time + + RSASignature parsedMPI + DSASigR, DSASigS parsedMPI + ECDSASigR, ECDSASigS parsedMPI + + // rawSubpackets contains the unparsed subpackets, in order. + rawSubpackets []outputSubpacket + + // The following are optional so are nil when not included in the + // signature. + + SigLifetimeSecs, KeyLifetimeSecs *uint32 + PreferredSymmetric, PreferredHash, PreferredCompression []uint8 + IssuerKeyId *uint64 + IsPrimaryId *bool + + // FlagsValid is set if any flags were given. See RFC 4880, section + // 5.2.3.21 for details. + FlagsValid bool + FlagCertify, FlagSign, FlagEncryptCommunications, FlagEncryptStorage bool + + outSubpackets []outputSubpacket +} + +func (sig *Signature) parse(r io.Reader) (err error) { + // RFC 4880, section 5.2.3 + var buf [5]byte + _, err = readFull(r, buf[:1]) + if err != nil { + return + } + if buf[0] != 4 { + err = errors.UnsupportedError("signature packet version " + strconv.Itoa(int(buf[0]))) + return + } + + _, err = readFull(r, buf[:5]) + if err != nil { + return + } + sig.SigType = SignatureType(buf[0]) + sig.PubKeyAlgo = PublicKeyAlgorithm(buf[1]) + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly, PubKeyAlgoDSA, PubKeyAlgoECDSA: + default: + err = errors.UnsupportedError("public key algorithm " + strconv.Itoa(int(sig.PubKeyAlgo))) + return + } + + var ok bool + sig.Hash, ok = s2k.HashIdToHash(buf[2]) + if !ok { + return errors.UnsupportedError("hash function " + strconv.Itoa(int(buf[2]))) + } + + hashedSubpacketsLength := int(buf[3])<<8 | int(buf[4]) + l := 6 + hashedSubpacketsLength + sig.HashSuffix = make([]byte, l+6) + sig.HashSuffix[0] = 4 + copy(sig.HashSuffix[1:], buf[:5]) + hashedSubpackets := sig.HashSuffix[6:l] + _, err = readFull(r, hashedSubpackets) + if err != nil { + return + } + // See RFC 4880, section 5.2.4 + trailer := sig.HashSuffix[l:] + trailer[0] = 4 + trailer[1] = 0xff + trailer[2] = uint8(l >> 24) + trailer[3] = uint8(l >> 16) + trailer[4] = uint8(l >> 8) + trailer[5] = uint8(l) + + err = parseSignatureSubpackets(sig, hashedSubpackets, true) + if err != nil { + return + } + + _, err = readFull(r, buf[:2]) + if err != nil { + return + } + unhashedSubpacketsLength := int(buf[0])<<8 | int(buf[1]) + unhashedSubpackets := make([]byte, unhashedSubpacketsLength) + _, err = readFull(r, unhashedSubpackets) + if err != nil { + return + } + err = parseSignatureSubpackets(sig, unhashedSubpackets, false) + if err != nil { + return + } + + _, err = readFull(r, sig.HashTag[:2]) + if err != nil { + return + } + + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + sig.RSASignature.bytes, sig.RSASignature.bitLength, err = readMPI(r) + case PubKeyAlgoDSA: + sig.DSASigR.bytes, sig.DSASigR.bitLength, err = readMPI(r) + if err == nil { + sig.DSASigS.bytes, sig.DSASigS.bitLength, err = readMPI(r) + } + case PubKeyAlgoECDSA: + sig.ECDSASigR.bytes, sig.ECDSASigR.bitLength, err = readMPI(r) + if err == nil { + sig.ECDSASigS.bytes, sig.ECDSASigS.bitLength, err = readMPI(r) + } + default: + panic("unreachable") + } + return +} + +// parseSignatureSubpackets parses subpackets of the main signature packet. See +// RFC 4880, section 5.2.3.1. +func parseSignatureSubpackets(sig *Signature, subpackets []byte, isHashed bool) (err error) { + for len(subpackets) > 0 { + subpackets, err = parseSignatureSubpacket(sig, subpackets, isHashed) + if err != nil { + return + } + } + + if sig.CreationTime.IsZero() { + err = errors.StructuralError("no creation time in signature") + } + + return +} + +type signatureSubpacketType uint8 + +const ( + creationTimeSubpacket signatureSubpacketType = 2 + signatureExpirationSubpacket signatureSubpacketType = 3 + keyExpirationSubpacket signatureSubpacketType = 9 + prefSymmetricAlgosSubpacket signatureSubpacketType = 11 + issuerSubpacket signatureSubpacketType = 16 + prefHashAlgosSubpacket signatureSubpacketType = 21 + prefCompressionSubpacket signatureSubpacketType = 22 + primaryUserIdSubpacket signatureSubpacketType = 25 + keyFlagsSubpacket signatureSubpacketType = 27 +) + +// parseSignatureSubpacket parses a single subpacket. len(subpacket) is >= 1. +func parseSignatureSubpacket(sig *Signature, subpacket []byte, isHashed bool) (rest []byte, err error) { + // RFC 4880, section 5.2.3.1 + var ( + length uint32 + packetType signatureSubpacketType + isCritical bool + ) + switch { + case subpacket[0] < 192: + length = uint32(subpacket[0]) + subpacket = subpacket[1:] + case subpacket[0] < 255: + if len(subpacket) < 2 { + goto Truncated + } + length = uint32(subpacket[0]-192)<<8 + uint32(subpacket[1]) + 192 + subpacket = subpacket[2:] + default: + if len(subpacket) < 5 { + goto Truncated + } + length = uint32(subpacket[1])<<24 | + uint32(subpacket[2])<<16 | + uint32(subpacket[3])<<8 | + uint32(subpacket[4]) + subpacket = subpacket[5:] + } + if length > uint32(len(subpacket)) { + goto Truncated + } + rest = subpacket[length:] + subpacket = subpacket[:length] + if len(subpacket) == 0 { + err = errors.StructuralError("zero length signature subpacket") + return + } + packetType = signatureSubpacketType(subpacket[0] & 0x7f) + isCritical = subpacket[0]&0x80 == 0x80 + subpacket = subpacket[1:] + sig.rawSubpackets = append(sig.rawSubpackets, outputSubpacket{isHashed, packetType, isCritical, subpacket}) + switch packetType { + case creationTimeSubpacket: + if !isHashed { + err = errors.StructuralError("signature creation time in non-hashed area") + return + } + if len(subpacket) != 4 { + err = errors.StructuralError("signature creation time not four bytes") + return + } + t := binary.BigEndian.Uint32(subpacket) + sig.CreationTime = time.Unix(int64(t), 0) + case signatureExpirationSubpacket: + // Signature expiration time, section 5.2.3.10 + if !isHashed { + return + } + if len(subpacket) != 4 { + err = errors.StructuralError("expiration subpacket with bad length") + return + } + sig.SigLifetimeSecs = new(uint32) + *sig.SigLifetimeSecs = binary.BigEndian.Uint32(subpacket) + case keyExpirationSubpacket: + // Key expiration time, section 5.2.3.6 + if !isHashed { + return + } + if len(subpacket) != 4 { + err = errors.StructuralError("key expiration subpacket with bad length") + return + } + sig.KeyLifetimeSecs = new(uint32) + *sig.KeyLifetimeSecs = binary.BigEndian.Uint32(subpacket) + case prefSymmetricAlgosSubpacket: + // Preferred symmetric algorithms, section 5.2.3.7 + if !isHashed { + return + } + sig.PreferredSymmetric = make([]byte, len(subpacket)) + copy(sig.PreferredSymmetric, subpacket) + case issuerSubpacket: + // Issuer, section 5.2.3.5 + if len(subpacket) != 8 { + err = errors.StructuralError("issuer subpacket with bad length") + return + } + sig.IssuerKeyId = new(uint64) + *sig.IssuerKeyId = binary.BigEndian.Uint64(subpacket) + case prefHashAlgosSubpacket: + // Preferred hash algorithms, section 5.2.3.8 + if !isHashed { + return + } + sig.PreferredHash = make([]byte, len(subpacket)) + copy(sig.PreferredHash, subpacket) + case prefCompressionSubpacket: + // Preferred compression algorithms, section 5.2.3.9 + if !isHashed { + return + } + sig.PreferredCompression = make([]byte, len(subpacket)) + copy(sig.PreferredCompression, subpacket) + case primaryUserIdSubpacket: + // Primary User ID, section 5.2.3.19 + if !isHashed { + return + } + if len(subpacket) != 1 { + err = errors.StructuralError("primary user id subpacket with bad length") + return + } + sig.IsPrimaryId = new(bool) + if subpacket[0] > 0 { + *sig.IsPrimaryId = true + } + case keyFlagsSubpacket: + // Key flags, section 5.2.3.21 + if !isHashed { + return + } + if len(subpacket) == 0 { + err = errors.StructuralError("empty key flags subpacket") + return + } + sig.FlagsValid = true + if subpacket[0]&1 != 0 { + sig.FlagCertify = true + } + if subpacket[0]&2 != 0 { + sig.FlagSign = true + } + if subpacket[0]&4 != 0 { + sig.FlagEncryptCommunications = true + } + if subpacket[0]&8 != 0 { + sig.FlagEncryptStorage = true + } + + default: + if isCritical { + err = errors.UnsupportedError("unknown critical signature subpacket type " + strconv.Itoa(int(packetType))) + return + } + } + return + +Truncated: + err = errors.StructuralError("signature subpacket truncated") + return +} + +// subpacketLengthLength returns the length, in bytes, of an encoded length value. +func subpacketLengthLength(length int) int { + if length < 192 { + return 1 + } + if length < 16320 { + return 2 + } + return 5 +} + +// serializeSubpacketLength marshals the given length into to. +func serializeSubpacketLength(to []byte, length int) int { + // RFC 4880, Section 4.2.2. + if length < 192 { + to[0] = byte(length) + return 1 + } + if length < 16320 { + length -= 192 + to[0] = byte((length >> 8) + 192) + to[1] = byte(length) + return 2 + } + to[0] = 255 + to[1] = byte(length >> 24) + to[2] = byte(length >> 16) + to[3] = byte(length >> 8) + to[4] = byte(length) + return 5 +} + +// subpacketsLength returns the serialized length, in bytes, of the given +// subpackets. +func subpacketsLength(subpackets []outputSubpacket, hashed bool) (length int) { + for _, subpacket := range subpackets { + if subpacket.hashed == hashed { + length += subpacketLengthLength(len(subpacket.contents) + 1) + length += 1 // type byte + length += len(subpacket.contents) + } + } + return +} + +// serializeSubpackets marshals the given subpackets into to. +func serializeSubpackets(to []byte, subpackets []outputSubpacket, hashed bool) { + for _, subpacket := range subpackets { + if subpacket.hashed == hashed { + n := serializeSubpacketLength(to, len(subpacket.contents)+1) + to[n] = byte(subpacket.subpacketType) + to = to[1+n:] + n = copy(to, subpacket.contents) + to = to[n:] + } + } + return +} + +// KeyExpired returns whether sig is a self-signature of a key that has +// expired. +func (sig *Signature) KeyExpired(currentTime time.Time) bool { + if sig.KeyLifetimeSecs == nil { + return false + } + expiry := sig.CreationTime.Add(time.Duration(*sig.KeyLifetimeSecs) * time.Second) + return currentTime.After(expiry) +} + +// buildHashSuffix constructs the HashSuffix member of sig in preparation for signing. +func (sig *Signature) buildHashSuffix() (err error) { + hashedSubpacketsLen := subpacketsLength(sig.outSubpackets, true) + + var ok bool + l := 6 + hashedSubpacketsLen + sig.HashSuffix = make([]byte, l+6) + sig.HashSuffix[0] = 4 + sig.HashSuffix[1] = uint8(sig.SigType) + sig.HashSuffix[2] = uint8(sig.PubKeyAlgo) + sig.HashSuffix[3], ok = s2k.HashToHashId(sig.Hash) + if !ok { + sig.HashSuffix = nil + return errors.InvalidArgumentError("hash cannot be represented in OpenPGP: " + strconv.Itoa(int(sig.Hash))) + } + sig.HashSuffix[4] = byte(hashedSubpacketsLen >> 8) + sig.HashSuffix[5] = byte(hashedSubpacketsLen) + serializeSubpackets(sig.HashSuffix[6:l], sig.outSubpackets, true) + trailer := sig.HashSuffix[l:] + trailer[0] = 4 + trailer[1] = 0xff + trailer[2] = byte(l >> 24) + trailer[3] = byte(l >> 16) + trailer[4] = byte(l >> 8) + trailer[5] = byte(l) + return +} + +func (sig *Signature) signPrepareHash(h hash.Hash) (digest []byte, err error) { + err = sig.buildHashSuffix() + if err != nil { + return + } + + h.Write(sig.HashSuffix) + digest = h.Sum(nil) + copy(sig.HashTag[:], digest) + return +} + +// Sign signs a message with a private key. The hash, h, must contain +// the hash of the message to be signed and will be mutated by this function. +// On success, the signature is stored in sig. Call Serialize to write it out. +// If config is nil, sensible defaults will be used. +func (sig *Signature) Sign(h hash.Hash, priv *PrivateKey, config *Config) (err error) { + sig.outSubpackets = sig.buildSubpackets() + digest, err := sig.signPrepareHash(h) + if err != nil { + return + } + + switch priv.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + sig.RSASignature.bytes, err = rsa.SignPKCS1v15(config.Random(), priv.PrivateKey.(*rsa.PrivateKey), sig.Hash, digest) + sig.RSASignature.bitLength = uint16(8 * len(sig.RSASignature.bytes)) + case PubKeyAlgoDSA: + dsaPriv := priv.PrivateKey.(*dsa.PrivateKey) + + // Need to truncate hashBytes to match FIPS 186-3 section 4.6. + subgroupSize := (dsaPriv.Q.BitLen() + 7) / 8 + if len(digest) > subgroupSize { + digest = digest[:subgroupSize] + } + r, s, err := dsa.Sign(config.Random(), dsaPriv, digest) + if err == nil { + sig.DSASigR.bytes = r.Bytes() + sig.DSASigR.bitLength = uint16(8 * len(sig.DSASigR.bytes)) + sig.DSASigS.bytes = s.Bytes() + sig.DSASigS.bitLength = uint16(8 * len(sig.DSASigS.bytes)) + } + default: + err = errors.UnsupportedError("public key algorithm: " + strconv.Itoa(int(sig.PubKeyAlgo))) + } + + return +} + +// SignUserId computes a signature from priv, asserting that pub is a valid +// key for the identity id. On success, the signature is stored in sig. Call +// Serialize to write it out. +// If config is nil, sensible defaults will be used. +func (sig *Signature) SignUserId(id string, pub *PublicKey, priv *PrivateKey, config *Config) error { + h, err := userIdSignatureHash(id, pub, sig.Hash) + if err != nil { + return nil + } + return sig.Sign(h, priv, config) +} + +// SignKey computes a signature from priv, asserting that pub is a subkey. On +// success, the signature is stored in sig. Call Serialize to write it out. +// If config is nil, sensible defaults will be used. +func (sig *Signature) SignKey(pub *PublicKey, priv *PrivateKey, config *Config) error { + h, err := keySignatureHash(&priv.PublicKey, pub, sig.Hash) + if err != nil { + return err + } + return sig.Sign(h, priv, config) +} + +// Serialize marshals sig to w. Sign, SignUserId or SignKey must have been +// called first. +func (sig *Signature) Serialize(w io.Writer) (err error) { + if len(sig.outSubpackets) == 0 { + sig.outSubpackets = sig.rawSubpackets + } + if sig.RSASignature.bytes == nil && sig.DSASigR.bytes == nil && sig.ECDSASigR.bytes == nil { + return errors.InvalidArgumentError("Signature: need to call Sign, SignUserId or SignKey before Serialize") + } + + sigLength := 0 + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + sigLength = 2 + len(sig.RSASignature.bytes) + case PubKeyAlgoDSA: + sigLength = 2 + len(sig.DSASigR.bytes) + sigLength += 2 + len(sig.DSASigS.bytes) + case PubKeyAlgoECDSA: + sigLength = 2 + len(sig.ECDSASigR.bytes) + sigLength += 2 + len(sig.ECDSASigS.bytes) + default: + panic("impossible") + } + + unhashedSubpacketsLen := subpacketsLength(sig.outSubpackets, false) + length := len(sig.HashSuffix) - 6 /* trailer not included */ + + 2 /* length of unhashed subpackets */ + unhashedSubpacketsLen + + 2 /* hash tag */ + sigLength + err = serializeHeader(w, packetTypeSignature, length) + if err != nil { + return + } + + _, err = w.Write(sig.HashSuffix[:len(sig.HashSuffix)-6]) + if err != nil { + return + } + + unhashedSubpackets := make([]byte, 2+unhashedSubpacketsLen) + unhashedSubpackets[0] = byte(unhashedSubpacketsLen >> 8) + unhashedSubpackets[1] = byte(unhashedSubpacketsLen) + serializeSubpackets(unhashedSubpackets[2:], sig.outSubpackets, false) + + _, err = w.Write(unhashedSubpackets) + if err != nil { + return + } + _, err = w.Write(sig.HashTag[:]) + if err != nil { + return + } + + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + err = writeMPIs(w, sig.RSASignature) + case PubKeyAlgoDSA: + err = writeMPIs(w, sig.DSASigR, sig.DSASigS) + case PubKeyAlgoECDSA: + err = writeMPIs(w, sig.ECDSASigR, sig.ECDSASigS) + default: + panic("impossible") + } + return +} + +// outputSubpacket represents a subpacket to be marshaled. +type outputSubpacket struct { + hashed bool // true if this subpacket is in the hashed area. + subpacketType signatureSubpacketType + isCritical bool + contents []byte +} + +func (sig *Signature) buildSubpackets() (subpackets []outputSubpacket) { + creationTime := make([]byte, 4) + binary.BigEndian.PutUint32(creationTime, uint32(sig.CreationTime.Unix())) + subpackets = append(subpackets, outputSubpacket{true, creationTimeSubpacket, false, creationTime}) + + if sig.IssuerKeyId != nil { + keyId := make([]byte, 8) + binary.BigEndian.PutUint64(keyId, *sig.IssuerKeyId) + subpackets = append(subpackets, outputSubpacket{true, issuerSubpacket, false, keyId}) + } + + if sig.SigLifetimeSecs != nil && *sig.SigLifetimeSecs != 0 { + sigLifetime := make([]byte, 4) + binary.BigEndian.PutUint32(sigLifetime, *sig.SigLifetimeSecs) + subpackets = append(subpackets, outputSubpacket{true, signatureExpirationSubpacket, true, sigLifetime}) + } + + // Key flags may only appear in self-signatures or certification signatures. + + if sig.FlagsValid { + var flags byte + if sig.FlagCertify { + flags |= 1 + } + if sig.FlagSign { + flags |= 2 + } + if sig.FlagEncryptCommunications { + flags |= 4 + } + if sig.FlagEncryptStorage { + flags |= 8 + } + subpackets = append(subpackets, outputSubpacket{true, keyFlagsSubpacket, false, []byte{flags}}) + } + + // The following subpackets may only appear in self-signatures + + if sig.KeyLifetimeSecs != nil && *sig.KeyLifetimeSecs != 0 { + keyLifetime := make([]byte, 4) + binary.BigEndian.PutUint32(keyLifetime, *sig.KeyLifetimeSecs) + subpackets = append(subpackets, outputSubpacket{true, keyExpirationSubpacket, true, keyLifetime}) + } + + if sig.IsPrimaryId != nil && *sig.IsPrimaryId { + subpackets = append(subpackets, outputSubpacket{true, primaryUserIdSubpacket, false, []byte{1}}) + } + + if len(sig.PreferredSymmetric) > 0 { + subpackets = append(subpackets, outputSubpacket{true, prefSymmetricAlgosSubpacket, false, sig.PreferredSymmetric}) + } + + if len(sig.PreferredHash) > 0 { + subpackets = append(subpackets, outputSubpacket{true, prefHashAlgosSubpacket, false, sig.PreferredHash}) + } + + if len(sig.PreferredCompression) > 0 { + subpackets = append(subpackets, outputSubpacket{true, prefCompressionSubpacket, false, sig.PreferredCompression}) + } + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_test.go new file mode 100644 index 00000000..c1bbde8b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_test.go @@ -0,0 +1,42 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "crypto" + "encoding/hex" + "testing" +) + +func TestSignatureRead(t *testing.T) { + packet, err := Read(readerFromHex(signatureDataHex)) + if err != nil { + t.Error(err) + return + } + sig, ok := packet.(*Signature) + if !ok || sig.SigType != SigTypeBinary || sig.PubKeyAlgo != PubKeyAlgoRSA || sig.Hash != crypto.SHA1 { + t.Errorf("failed to parse, got: %#v", packet) + } +} + +func TestSignatureReserialize(t *testing.T) { + packet, _ := Read(readerFromHex(signatureDataHex)) + sig := packet.(*Signature) + out := new(bytes.Buffer) + err := sig.Serialize(out) + if err != nil { + t.Errorf("error reserializing: %s", err) + return + } + + expected, _ := hex.DecodeString(signatureDataHex) + if !bytes.Equal(expected, out.Bytes()) { + t.Errorf("output doesn't match input (got vs expected):\n%s\n%s", hex.Dump(out.Bytes()), hex.Dump(expected)) + } +} + +const signatureDataHex = "c2c05c04000102000605024cb45112000a0910ab105c91af38fb158f8d07ff5596ea368c5efe015bed6e78348c0f033c931d5f2ce5db54ce7f2a7e4b4ad64db758d65a7a71773edeab7ba2a9e0908e6a94a1175edd86c1d843279f045b021a6971a72702fcbd650efc393c5474d5b59a15f96d2eaad4c4c426797e0dcca2803ef41c6ff234d403eec38f31d610c344c06f2401c262f0993b2e66cad8a81ebc4322c723e0d4ba09fe917e8777658307ad8329adacba821420741009dfe87f007759f0982275d028a392c6ed983a0d846f890b36148c7358bdb8a516007fac760261ecd06076813831a36d0459075d1befa245ae7f7fb103d92ca759e9498fe60ef8078a39a3beda510deea251ea9f0a7f0df6ef42060f20780360686f3e400e" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_v3.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_v3.go new file mode 100644 index 00000000..1bba74df --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_v3.go @@ -0,0 +1,146 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "crypto" + "encoding/binary" + "fmt" + "io" + "strconv" + "time" + + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/s2k" +) + +// SignatureV3 represents older version 3 signatures. These signatures are less secure +// than version 4 and should not be used to create new signatures. They are included +// here for backwards compatibility to read and validate with older key material. +// See RFC 4880, section 5.2.2. +type SignatureV3 struct { + SigType SignatureType + CreationTime time.Time + IssuerKeyId uint64 + PubKeyAlgo PublicKeyAlgorithm + Hash crypto.Hash + HashTag [2]byte + + RSASignature parsedMPI + DSASigR, DSASigS parsedMPI +} + +func (sig *SignatureV3) parse(r io.Reader) (err error) { + // RFC 4880, section 5.2.2 + var buf [8]byte + if _, err = readFull(r, buf[:1]); err != nil { + return + } + if buf[0] < 2 || buf[0] > 3 { + err = errors.UnsupportedError("signature packet version " + strconv.Itoa(int(buf[0]))) + return + } + if _, err = readFull(r, buf[:1]); err != nil { + return + } + if buf[0] != 5 { + err = errors.UnsupportedError( + "invalid hashed material length " + strconv.Itoa(int(buf[0]))) + return + } + + // Read hashed material: signature type + creation time + if _, err = readFull(r, buf[:5]); err != nil { + return + } + sig.SigType = SignatureType(buf[0]) + t := binary.BigEndian.Uint32(buf[1:5]) + sig.CreationTime = time.Unix(int64(t), 0) + + // Eight-octet Key ID of signer. + if _, err = readFull(r, buf[:8]); err != nil { + return + } + sig.IssuerKeyId = binary.BigEndian.Uint64(buf[:]) + + // Public-key and hash algorithm + if _, err = readFull(r, buf[:2]); err != nil { + return + } + sig.PubKeyAlgo = PublicKeyAlgorithm(buf[0]) + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly, PubKeyAlgoDSA: + default: + err = errors.UnsupportedError("public key algorithm " + strconv.Itoa(int(sig.PubKeyAlgo))) + return + } + var ok bool + if sig.Hash, ok = s2k.HashIdToHash(buf[1]); !ok { + return errors.UnsupportedError("hash function " + strconv.Itoa(int(buf[2]))) + } + + // Two-octet field holding left 16 bits of signed hash value. + if _, err = readFull(r, sig.HashTag[:2]); err != nil { + return + } + + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + sig.RSASignature.bytes, sig.RSASignature.bitLength, err = readMPI(r) + case PubKeyAlgoDSA: + if sig.DSASigR.bytes, sig.DSASigR.bitLength, err = readMPI(r); err != nil { + return + } + sig.DSASigS.bytes, sig.DSASigS.bitLength, err = readMPI(r) + default: + panic("unreachable") + } + return +} + +// Serialize marshals sig to w. Sign, SignUserId or SignKey must have been +// called first. +func (sig *SignatureV3) Serialize(w io.Writer) (err error) { + buf := make([]byte, 8) + + // Write the sig type and creation time + buf[0] = byte(sig.SigType) + binary.BigEndian.PutUint32(buf[1:5], uint32(sig.CreationTime.Unix())) + if _, err = w.Write(buf[:5]); err != nil { + return + } + + // Write the issuer long key ID + binary.BigEndian.PutUint64(buf[:8], sig.IssuerKeyId) + if _, err = w.Write(buf[:8]); err != nil { + return + } + + // Write public key algorithm, hash ID, and hash value + buf[0] = byte(sig.PubKeyAlgo) + hashId, ok := s2k.HashToHashId(sig.Hash) + if !ok { + return errors.UnsupportedError(fmt.Sprintf("hash function %v", sig.Hash)) + } + buf[1] = hashId + copy(buf[2:4], sig.HashTag[:]) + if _, err = w.Write(buf[:4]); err != nil { + return + } + + if sig.RSASignature.bytes == nil && sig.DSASigR.bytes == nil { + return errors.InvalidArgumentError("Signature: need to call Sign, SignUserId or SignKey before Serialize") + } + + switch sig.PubKeyAlgo { + case PubKeyAlgoRSA, PubKeyAlgoRSASignOnly: + err = writeMPIs(w, sig.RSASignature) + case PubKeyAlgoDSA: + err = writeMPIs(w, sig.DSASigR, sig.DSASigS) + default: + panic("impossible") + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_v3_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_v3_test.go new file mode 100644 index 00000000..57f26b59 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/signature_v3_test.go @@ -0,0 +1,92 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "crypto" + "encoding/hex" + "io" + "io/ioutil" + "testing" + + "code.google.com/p/go.crypto/openpgp/armor" +) + +func TestSignatureV3Read(t *testing.T) { + r := v3KeyReader(t) + Read(r) // Skip public key + Read(r) // Skip uid + packet, err := Read(r) // Signature + if err != nil { + t.Error(err) + return + } + sig, ok := packet.(*SignatureV3) + if !ok || sig.SigType != SigTypeGenericCert || sig.PubKeyAlgo != PubKeyAlgoRSA || sig.Hash != crypto.MD5 { + t.Errorf("failed to parse, got: %#v", packet) + } +} + +func TestSignatureV3Reserialize(t *testing.T) { + r := v3KeyReader(t) + Read(r) // Skip public key + Read(r) // Skip uid + packet, err := Read(r) + if err != nil { + t.Error(err) + return + } + sig := packet.(*SignatureV3) + out := new(bytes.Buffer) + if err = sig.Serialize(out); err != nil { + t.Errorf("error reserializing: %s", err) + return + } + expected, err := ioutil.ReadAll(v3KeyReader(t)) + if err != nil { + t.Error(err) + return + } + expected = expected[4+141+4+39:] // See pgpdump offsets below, this is where the sig starts + if !bytes.Equal(expected, out.Bytes()) { + t.Errorf("output doesn't match input (got vs expected):\n%s\n%s", hex.Dump(out.Bytes()), hex.Dump(expected)) + } +} + +func v3KeyReader(t *testing.T) io.Reader { + armorBlock, err := armor.Decode(bytes.NewBufferString(keySigV3Armor)) + if err != nil { + t.Fatalf("armor Decode failed: %v", err) + } + return armorBlock.Body +} + +// keySigV3Armor is some V3 public key I found in an SKS dump. +// Old: Public Key Packet(tag 6)(141 bytes) +// Ver 4 - new +// Public key creation time - Fri Sep 16 17:13:54 CDT 1994 +// Pub alg - unknown(pub 0) +// Unknown public key(pub 0) +// Old: User ID Packet(tag 13)(39 bytes) +// User ID - Armin M. Warda +// Old: Signature Packet(tag 2)(149 bytes) +// Ver 4 - new +// Sig type - unknown(05) +// Pub alg - ElGamal Encrypt-Only(pub 16) +// Hash alg - unknown(hash 46) +// Hashed Sub: unknown(sub 81, critical)(1988 bytes) +const keySigV3Armor = `-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: SKS 1.0.10 + +mI0CLnoYogAAAQQA1qwA2SuJwfQ5bCQ6u5t20ulnOtY0gykf7YjiK4LiVeRBwHjGq7v30tGV +5Qti7qqRW4Ww7CDCJc4sZMFnystucR2vLkXaSoNWoFm4Fg47NiisDdhDezHwbVPW6OpCFNSi +ZAamtj4QAUBu8j4LswafrJqZqR9336/V3g8Yil2l48kABRG0J0FybWluIE0uIFdhcmRhIDx3 +YXJkYUBuZXBoaWxpbS5ydWhyLmRlPoiVAgUQLok2xwXR6zmeWEiZAQE/DgP/WgxPQh40/Po4 +gSkWZCDAjNdph7zexvAb0CcUWahcwiBIgg3U5ErCx9I5CNVA9U+s8bNrDZwgSIeBzp3KhWUx +524uhGgm6ZUTOAIKA6CbV6pfqoLpJnRYvXYQU5mIWsNa99wcu2qu18OeEDnztb7aLA6Ra9OF +YFCbq4EjXRoOrYM= +=LPjs +-----END PGP PUBLIC KEY BLOCK-----` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetric_key_encrypted.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetric_key_encrypted.go new file mode 100644 index 00000000..a78344ff --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetric_key_encrypted.go @@ -0,0 +1,163 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/s2k" + "crypto/cipher" + "io" + "strconv" +) + +// This is the largest session key that we'll support. Since no 512-bit cipher +// has even been seriously used, this is comfortably large. +const maxSessionKeySizeInBytes = 64 + +// SymmetricKeyEncrypted represents a passphrase protected session key. See RFC +// 4880, section 5.3. +type SymmetricKeyEncrypted struct { + CipherFunc CipherFunction + Encrypted bool + Key []byte // Empty unless Encrypted is false. + s2k func(out, in []byte) + encryptedKey []byte +} + +const symmetricKeyEncryptedVersion = 4 + +func (ske *SymmetricKeyEncrypted) parse(r io.Reader) (err error) { + // RFC 4880, section 5.3. + var buf [2]byte + _, err = readFull(r, buf[:]) + if err != nil { + return + } + if buf[0] != symmetricKeyEncryptedVersion { + return errors.UnsupportedError("SymmetricKeyEncrypted version") + } + ske.CipherFunc = CipherFunction(buf[1]) + + if ske.CipherFunc.KeySize() == 0 { + return errors.UnsupportedError("unknown cipher: " + strconv.Itoa(int(buf[1]))) + } + + ske.s2k, err = s2k.Parse(r) + if err != nil { + return + } + + encryptedKey := make([]byte, maxSessionKeySizeInBytes) + // The session key may follow. We just have to try and read to find + // out. If it exists then we limit it to maxSessionKeySizeInBytes. + n, err := readFull(r, encryptedKey) + if err != nil && err != io.ErrUnexpectedEOF { + return + } + err = nil + if n != 0 { + if n == maxSessionKeySizeInBytes { + return errors.UnsupportedError("oversized encrypted session key") + } + ske.encryptedKey = encryptedKey[:n] + } + + ske.Encrypted = true + + return +} + +// Decrypt attempts to decrypt an encrypted session key. If it returns nil, +// ske.Key will contain the session key. +func (ske *SymmetricKeyEncrypted) Decrypt(passphrase []byte) error { + if !ske.Encrypted { + return nil + } + + key := make([]byte, ske.CipherFunc.KeySize()) + ske.s2k(key, passphrase) + + if len(ske.encryptedKey) == 0 { + ske.Key = key + } else { + // the IV is all zeros + iv := make([]byte, ske.CipherFunc.blockSize()) + c := cipher.NewCFBDecrypter(ske.CipherFunc.new(key), iv) + c.XORKeyStream(ske.encryptedKey, ske.encryptedKey) + ske.CipherFunc = CipherFunction(ske.encryptedKey[0]) + if ske.CipherFunc.blockSize() == 0 { + return errors.UnsupportedError("unknown cipher: " + strconv.Itoa(int(ske.CipherFunc))) + } + ske.CipherFunc = CipherFunction(ske.encryptedKey[0]) + ske.Key = ske.encryptedKey[1:] + if len(ske.Key)%ske.CipherFunc.blockSize() != 0 { + ske.Key = nil + return errors.StructuralError("length of decrypted key not a multiple of block size") + } + } + + ske.Encrypted = false + return nil +} + +// SerializeSymmetricKeyEncrypted serializes a symmetric key packet to w. The +// packet contains a random session key, encrypted by a key derived from the +// given passphrase. The session key is returned and must be passed to +// SerializeSymmetricallyEncrypted. +// If config is nil, sensible defaults will be used. +func SerializeSymmetricKeyEncrypted(w io.Writer, passphrase []byte, config *Config) (key []byte, err error) { + cipherFunc := config.Cipher() + keySize := cipherFunc.KeySize() + if keySize == 0 { + return nil, errors.UnsupportedError("unknown cipher: " + strconv.Itoa(int(cipherFunc))) + } + + s2kBuf := new(bytes.Buffer) + keyEncryptingKey := make([]byte, keySize) + // s2k.Serialize salts and stretches the passphrase, and writes the + // resulting key to keyEncryptingKey and the s2k descriptor to s2kBuf. + err = s2k.Serialize(s2kBuf, keyEncryptingKey, config.Random(), passphrase) + if err != nil { + return + } + s2kBytes := s2kBuf.Bytes() + + packetLength := 2 /* header */ + len(s2kBytes) + 1 /* cipher type */ + keySize + err = serializeHeader(w, packetTypeSymmetricKeyEncrypted, packetLength) + if err != nil { + return + } + + var buf [2]byte + buf[0] = symmetricKeyEncryptedVersion + buf[1] = byte(cipherFunc) + _, err = w.Write(buf[:]) + if err != nil { + return + } + _, err = w.Write(s2kBytes) + if err != nil { + return + } + + sessionKey := make([]byte, keySize) + _, err = io.ReadFull(config.Random(), sessionKey) + if err != nil { + return + } + iv := make([]byte, cipherFunc.blockSize()) + c := cipher.NewCFBEncrypter(cipherFunc.new(keyEncryptingKey), iv) + encryptedCipherAndKey := make([]byte, keySize+1) + c.XORKeyStream(encryptedCipherAndKey, buf[1:]) + c.XORKeyStream(encryptedCipherAndKey[1:], sessionKey) + _, err = w.Write(encryptedCipherAndKey) + if err != nil { + return + } + + key = sessionKey + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetric_key_encrypted_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetric_key_encrypted_test.go new file mode 100644 index 00000000..dd983cb3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetric_key_encrypted_test.go @@ -0,0 +1,102 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "encoding/hex" + "io" + "io/ioutil" + "testing" +) + +func TestSymmetricKeyEncrypted(t *testing.T) { + buf := readerFromHex(symmetricallyEncryptedHex) + packet, err := Read(buf) + if err != nil { + t.Errorf("failed to read SymmetricKeyEncrypted: %s", err) + return + } + ske, ok := packet.(*SymmetricKeyEncrypted) + if !ok { + t.Error("didn't find SymmetricKeyEncrypted packet") + return + } + err = ske.Decrypt([]byte("password")) + if err != nil { + t.Error(err) + return + } + + packet, err = Read(buf) + if err != nil { + t.Errorf("failed to read SymmetricallyEncrypted: %s", err) + return + } + se, ok := packet.(*SymmetricallyEncrypted) + if !ok { + t.Error("didn't find SymmetricallyEncrypted packet") + return + } + r, err := se.Decrypt(ske.CipherFunc, ske.Key) + if err != nil { + t.Error(err) + return + } + + contents, err := ioutil.ReadAll(r) + if err != nil && err != io.EOF { + t.Error(err) + return + } + + expectedContents, _ := hex.DecodeString(symmetricallyEncryptedContentsHex) + if !bytes.Equal(expectedContents, contents) { + t.Errorf("bad contents got:%x want:%x", contents, expectedContents) + } +} + +const symmetricallyEncryptedHex = "8c0d04030302371a0b38d884f02060c91cf97c9973b8e58e028e9501708ccfe618fb92afef7fa2d80ddadd93cf" +const symmetricallyEncryptedContentsHex = "cb1062004d14c4df636f6e74656e74732e0a" + +func TestSerializeSymmetricKeyEncrypted(t *testing.T) { + buf := bytes.NewBuffer(nil) + passphrase := []byte("testing") + config := &Config{ + DefaultCipher: CipherAES128, + } + + key, err := SerializeSymmetricKeyEncrypted(buf, passphrase, config) + if err != nil { + t.Errorf("failed to serialize: %s", err) + return + } + + p, err := Read(buf) + if err != nil { + t.Errorf("failed to reparse: %s", err) + return + } + ske, ok := p.(*SymmetricKeyEncrypted) + if !ok { + t.Errorf("parsed a different packet type: %#v", p) + return + } + + if !ske.Encrypted { + t.Errorf("SKE not encrypted but should be") + } + if ske.CipherFunc != config.DefaultCipher { + t.Errorf("SKE cipher function is %d (expected %d)", ske.CipherFunc, config.DefaultCipher) + } + err = ske.Decrypt(passphrase) + if err != nil { + t.Errorf("failed to decrypt reparsed SKE: %s", err) + return + } + if !bytes.Equal(key, ske.Key) { + t.Errorf("keys don't match after Decrpyt: %x (original) vs %x (parsed)", key, ske.Key) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetrically_encrypted.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetrically_encrypted.go new file mode 100644 index 00000000..04dd670f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetrically_encrypted.go @@ -0,0 +1,290 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "code.google.com/p/go.crypto/openpgp/errors" + "crypto/cipher" + "crypto/sha1" + "crypto/subtle" + "hash" + "io" + "strconv" +) + +// SymmetricallyEncrypted represents a symmetrically encrypted byte string. The +// encrypted contents will consist of more OpenPGP packets. See RFC 4880, +// sections 5.7 and 5.13. +type SymmetricallyEncrypted struct { + MDC bool // true iff this is a type 18 packet and thus has an embedded MAC. + contents io.Reader + prefix []byte +} + +const symmetricallyEncryptedVersion = 1 + +func (se *SymmetricallyEncrypted) parse(r io.Reader) error { + if se.MDC { + // See RFC 4880, section 5.13. + var buf [1]byte + _, err := readFull(r, buf[:]) + if err != nil { + return err + } + if buf[0] != symmetricallyEncryptedVersion { + return errors.UnsupportedError("unknown SymmetricallyEncrypted version") + } + } + se.contents = r + return nil +} + +// Decrypt returns a ReadCloser, from which the decrypted contents of the +// packet can be read. An incorrect key can, with high probability, be detected +// immediately and this will result in a KeyIncorrect error being returned. +func (se *SymmetricallyEncrypted) Decrypt(c CipherFunction, key []byte) (io.ReadCloser, error) { + keySize := c.KeySize() + if keySize == 0 { + return nil, errors.UnsupportedError("unknown cipher: " + strconv.Itoa(int(c))) + } + if len(key) != keySize { + return nil, errors.InvalidArgumentError("SymmetricallyEncrypted: incorrect key length") + } + + if se.prefix == nil { + se.prefix = make([]byte, c.blockSize()+2) + _, err := readFull(se.contents, se.prefix) + if err != nil { + return nil, err + } + } else if len(se.prefix) != c.blockSize()+2 { + return nil, errors.InvalidArgumentError("can't try ciphers with different block lengths") + } + + ocfbResync := OCFBResync + if se.MDC { + // MDC packets use a different form of OCFB mode. + ocfbResync = OCFBNoResync + } + + s := NewOCFBDecrypter(c.new(key), se.prefix, ocfbResync) + if s == nil { + return nil, errors.ErrKeyIncorrect + } + + plaintext := cipher.StreamReader{S: s, R: se.contents} + + if se.MDC { + // MDC packets have an embedded hash that we need to check. + h := sha1.New() + h.Write(se.prefix) + return &seMDCReader{in: plaintext, h: h}, nil + } + + // Otherwise, we just need to wrap plaintext so that it's a valid ReadCloser. + return seReader{plaintext}, nil +} + +// seReader wraps an io.Reader with a no-op Close method. +type seReader struct { + in io.Reader +} + +func (ser seReader) Read(buf []byte) (int, error) { + return ser.in.Read(buf) +} + +func (ser seReader) Close() error { + return nil +} + +const mdcTrailerSize = 1 /* tag byte */ + 1 /* length byte */ + sha1.Size + +// An seMDCReader wraps an io.Reader, maintains a running hash and keeps hold +// of the most recent 22 bytes (mdcTrailerSize). Upon EOF, those bytes form an +// MDC packet containing a hash of the previous contents which is checked +// against the running hash. See RFC 4880, section 5.13. +type seMDCReader struct { + in io.Reader + h hash.Hash + trailer [mdcTrailerSize]byte + scratch [mdcTrailerSize]byte + trailerUsed int + error bool + eof bool +} + +func (ser *seMDCReader) Read(buf []byte) (n int, err error) { + if ser.error { + err = io.ErrUnexpectedEOF + return + } + if ser.eof { + err = io.EOF + return + } + + // If we haven't yet filled the trailer buffer then we must do that + // first. + for ser.trailerUsed < mdcTrailerSize { + n, err = ser.in.Read(ser.trailer[ser.trailerUsed:]) + ser.trailerUsed += n + if err == io.EOF { + if ser.trailerUsed != mdcTrailerSize { + n = 0 + err = io.ErrUnexpectedEOF + ser.error = true + return + } + ser.eof = true + n = 0 + return + } + + if err != nil { + n = 0 + return + } + } + + // If it's a short read then we read into a temporary buffer and shift + // the data into the caller's buffer. + if len(buf) <= mdcTrailerSize { + n, err = readFull(ser.in, ser.scratch[:len(buf)]) + copy(buf, ser.trailer[:n]) + ser.h.Write(buf[:n]) + copy(ser.trailer[:], ser.trailer[n:]) + copy(ser.trailer[mdcTrailerSize-n:], ser.scratch[:]) + if n < len(buf) { + ser.eof = true + err = io.EOF + } + return + } + + n, err = ser.in.Read(buf[mdcTrailerSize:]) + copy(buf, ser.trailer[:]) + ser.h.Write(buf[:n]) + copy(ser.trailer[:], buf[n:]) + + if err == io.EOF { + ser.eof = true + } + return +} + +// This is a new-format packet tag byte for a type 19 (MDC) packet. +const mdcPacketTagByte = byte(0x80) | 0x40 | 19 + +func (ser *seMDCReader) Close() error { + if ser.error { + return errors.SignatureError("error during reading") + } + + for !ser.eof { + // We haven't seen EOF so we need to read to the end + var buf [1024]byte + _, err := ser.Read(buf[:]) + if err == io.EOF { + break + } + if err != nil { + return errors.SignatureError("error during reading") + } + } + + if ser.trailer[0] != mdcPacketTagByte || ser.trailer[1] != sha1.Size { + return errors.SignatureError("MDC packet not found") + } + ser.h.Write(ser.trailer[:2]) + + final := ser.h.Sum(nil) + if subtle.ConstantTimeCompare(final, ser.trailer[2:]) != 1 { + return errors.SignatureError("hash mismatch") + } + return nil +} + +// An seMDCWriter writes through to an io.WriteCloser while maintains a running +// hash of the data written. On close, it emits an MDC packet containing the +// running hash. +type seMDCWriter struct { + w io.WriteCloser + h hash.Hash +} + +func (w *seMDCWriter) Write(buf []byte) (n int, err error) { + w.h.Write(buf) + return w.w.Write(buf) +} + +func (w *seMDCWriter) Close() (err error) { + var buf [mdcTrailerSize]byte + + buf[0] = mdcPacketTagByte + buf[1] = sha1.Size + w.h.Write(buf[:2]) + digest := w.h.Sum(nil) + copy(buf[2:], digest) + + _, err = w.w.Write(buf[:]) + if err != nil { + return + } + return w.w.Close() +} + +// noOpCloser is like an ioutil.NopCloser, but for an io.Writer. +type noOpCloser struct { + w io.Writer +} + +func (c noOpCloser) Write(data []byte) (n int, err error) { + return c.w.Write(data) +} + +func (c noOpCloser) Close() error { + return nil +} + +// SerializeSymmetricallyEncrypted serializes a symmetrically encrypted packet +// to w and returns a WriteCloser to which the to-be-encrypted packets can be +// written. +// If config is nil, sensible defaults will be used. +func SerializeSymmetricallyEncrypted(w io.Writer, c CipherFunction, key []byte, config *Config) (contents io.WriteCloser, err error) { + if c.KeySize() != len(key) { + return nil, errors.InvalidArgumentError("SymmetricallyEncrypted.Serialize: bad key length") + } + writeCloser := noOpCloser{w} + ciphertext, err := serializeStreamHeader(writeCloser, packetTypeSymmetricallyEncryptedMDC) + if err != nil { + return + } + + _, err = ciphertext.Write([]byte{symmetricallyEncryptedVersion}) + if err != nil { + return + } + + block := c.new(key) + blockSize := block.BlockSize() + iv := make([]byte, blockSize) + _, err = config.Random().Read(iv) + if err != nil { + return + } + s, prefix := NewOCFBEncrypter(block, iv, OCFBNoResync) + _, err = ciphertext.Write(prefix) + if err != nil { + return + } + plaintext := cipher.StreamWriter{S: s, W: ciphertext} + + h := sha1.New() + h.Write(iv) + h.Write(iv[blockSize-2:]) + contents = &seMDCWriter{w: plaintext, h: h} + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetrically_encrypted_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetrically_encrypted_test.go new file mode 100644 index 00000000..c4845eb2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/symmetrically_encrypted_test.go @@ -0,0 +1,123 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/errors" + "crypto/sha1" + "encoding/hex" + "io" + "io/ioutil" + "testing" +) + +// TestReader wraps a []byte and returns reads of a specific length. +type testReader struct { + data []byte + stride int +} + +func (t *testReader) Read(buf []byte) (n int, err error) { + n = t.stride + if n > len(t.data) { + n = len(t.data) + } + if n > len(buf) { + n = len(buf) + } + copy(buf, t.data) + t.data = t.data[n:] + if len(t.data) == 0 { + err = io.EOF + } + return +} + +func testMDCReader(t *testing.T) { + mdcPlaintext, _ := hex.DecodeString(mdcPlaintextHex) + + for stride := 1; stride < len(mdcPlaintext)/2; stride++ { + r := &testReader{data: mdcPlaintext, stride: stride} + mdcReader := &seMDCReader{in: r, h: sha1.New()} + body, err := ioutil.ReadAll(mdcReader) + if err != nil { + t.Errorf("stride: %d, error: %s", stride, err) + continue + } + if !bytes.Equal(body, mdcPlaintext[:len(mdcPlaintext)-22]) { + t.Errorf("stride: %d: bad contents %x", stride, body) + continue + } + + err = mdcReader.Close() + if err != nil { + t.Errorf("stride: %d, error on Close: %s", stride, err) + } + } + + mdcPlaintext[15] ^= 80 + + r := &testReader{data: mdcPlaintext, stride: 2} + mdcReader := &seMDCReader{in: r, h: sha1.New()} + _, err := ioutil.ReadAll(mdcReader) + if err != nil { + t.Errorf("corruption test, error: %s", err) + return + } + err = mdcReader.Close() + if err == nil { + t.Error("corruption: no error") + } else if _, ok := err.(*errors.SignatureError); !ok { + t.Errorf("corruption: expected SignatureError, got: %s", err) + } +} + +const mdcPlaintextHex = "a302789c3b2d93c4e0eb9aba22283539b3203335af44a134afb800c849cb4c4de10200aff40b45d31432c80cb384299a0655966d6939dfdeed1dddf980" + +func TestSerialize(t *testing.T) { + buf := bytes.NewBuffer(nil) + c := CipherAES128 + key := make([]byte, c.KeySize()) + + w, err := SerializeSymmetricallyEncrypted(buf, c, key, nil) + if err != nil { + t.Errorf("error from SerializeSymmetricallyEncrypted: %s", err) + return + } + + contents := []byte("hello world\n") + + w.Write(contents) + w.Close() + + p, err := Read(buf) + if err != nil { + t.Errorf("error from Read: %s", err) + return + } + + se, ok := p.(*SymmetricallyEncrypted) + if !ok { + t.Errorf("didn't read a *SymmetricallyEncrypted") + return + } + + r, err := se.Decrypt(c, key) + if err != nil { + t.Errorf("error from Decrypt: %s", err) + return + } + + contentsCopy := bytes.NewBuffer(nil) + _, err = io.Copy(contentsCopy, r) + if err != nil { + t.Errorf("error from io.Copy: %s", err) + return + } + if !bytes.Equal(contentsCopy.Bytes(), contents) { + t.Errorf("contents not equal got: %x want: %x", contentsCopy.Bytes(), contents) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userattribute.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userattribute.go new file mode 100644 index 00000000..96a2b382 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userattribute.go @@ -0,0 +1,91 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "image" + "image/jpeg" + "io" + "io/ioutil" +) + +const UserAttrImageSubpacket = 1 + +// UserAttribute is capable of storing other types of data about a user +// beyond name, email and a text comment. In practice, user attributes are typically used +// to store a signed thumbnail photo JPEG image of the user. +// See RFC 4880, section 5.12. +type UserAttribute struct { + Contents []*OpaqueSubpacket +} + +// NewUserAttributePhoto creates a user attribute packet +// containing the given images. +func NewUserAttributePhoto(photos ...image.Image) (uat *UserAttribute, err error) { + uat = new(UserAttribute) + for _, photo := range photos { + var buf bytes.Buffer + // RFC 4880, Section 5.12.1. + data := []byte{ + 0x10, 0x00, // Little-endian image header length (16 bytes) + 0x01, // Image header version 1 + 0x01, // JPEG + 0, 0, 0, 0, // 12 reserved octets, must be all zero. + 0, 0, 0, 0, + 0, 0, 0, 0} + if _, err = buf.Write(data); err != nil { + return + } + if err = jpeg.Encode(&buf, photo, nil); err != nil { + return + } + uat.Contents = append(uat.Contents, &OpaqueSubpacket{ + SubType: UserAttrImageSubpacket, + Contents: buf.Bytes()}) + } + return +} + +// NewUserAttribute creates a new user attribute packet containing the given subpackets. +func NewUserAttribute(contents ...*OpaqueSubpacket) *UserAttribute { + return &UserAttribute{Contents: contents} +} + +func (uat *UserAttribute) parse(r io.Reader) (err error) { + // RFC 4880, section 5.13 + b, err := ioutil.ReadAll(r) + if err != nil { + return + } + uat.Contents, err = OpaqueSubpackets(b) + return +} + +// Serialize marshals the user attribute to w in the form of an OpenPGP packet, including +// header. +func (uat *UserAttribute) Serialize(w io.Writer) (err error) { + var buf bytes.Buffer + for _, sp := range uat.Contents { + sp.Serialize(&buf) + } + if err = serializeHeader(w, packetTypeUserAttribute, buf.Len()); err != nil { + return err + } + _, err = w.Write(buf.Bytes()) + return +} + +// ImageData returns zero or more byte slices, each containing +// JPEG File Interchange Format (JFIF), for each photo in the +// the user attribute packet. +func (uat *UserAttribute) ImageData() (imageData [][]byte) { + for _, sp := range uat.Contents { + if sp.SubType == UserAttrImageSubpacket && len(sp.Contents) > 16 { + imageData = append(imageData, sp.Contents[16:]) + } + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userattribute_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userattribute_test.go new file mode 100644 index 00000000..13ca5143 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userattribute_test.go @@ -0,0 +1,109 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "bytes" + "encoding/base64" + "image/color" + "image/jpeg" + "testing" +) + +func TestParseUserAttribute(t *testing.T) { + r := base64.NewDecoder(base64.StdEncoding, bytes.NewBufferString(userAttributePacket)) + for i := 0; i < 2; i++ { + p, err := Read(r) + if err != nil { + t.Fatal(err) + } + uat := p.(*UserAttribute) + imgs := uat.ImageData() + if len(imgs) != 1 { + t.Errorf("Unexpected number of images in user attribute packet: %d", len(imgs)) + } + if len(imgs[0]) != 3395 { + t.Errorf("Unexpected JPEG image size: %d", len(imgs[0])) + } + img, err := jpeg.Decode(bytes.NewBuffer(imgs[0])) + if err != nil { + t.Errorf("Error decoding JPEG image: %v", err) + } + // A pixel in my right eye. + pixel := color.NRGBAModel.Convert(img.At(56, 36)) + ref := color.NRGBA{R: 157, G: 128, B: 124, A: 255} + if pixel != ref { + t.Errorf("Unexpected pixel color: %v", pixel) + } + w := bytes.NewBuffer(nil) + err = uat.Serialize(w) + if err != nil { + t.Errorf("Error writing user attribute: %v", err) + } + r = bytes.NewBuffer(w.Bytes()) + } +} + +const userAttributePacket = ` +0cyWzJQBEAABAQAAAAAAAAAAAAAAAP/Y/+AAEEpGSUYAAQIAAAEAAQAA/9sAQwAFAwQEBAMFBAQE +BQUFBgcMCAcHBwcPCgsJDBEPEhIRDxEQExYcFxMUGhUQERghGBocHR8fHxMXIiQiHiQcHh8e/9sA +QwEFBQUHBgcOCAgOHhQRFB4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4e +Hh4eHh4eHh4e/8AAEQgAZABkAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYH +CAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHw +JDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6 +g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk +5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIB +AgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEX +GBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKT +lJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX2 +9/j5+v/aAAwDAQACEQMRAD8A5uGP06VehQ4pIox04q5EnHSvAep+hIIl4zVuMHGPWmRrUWtalaaN +pU2oXsgSGJSxPr6ClvoitErs0Itqjc7BQOpPAFYmrfEnwjojtHNqaXEynBjtx5hH4jj9a8B8d+Od +W8UXZjWR4LJT+7t0Jwfc+prnIdO1CWZEW2mZ3HyDactXXDB3V5s8evm1namj6r0H4weCLtxG+ova +ueP30RA/MV6not1bX0Ed1ZzxzwyDKvGwZSPqK+Ff+ES8R8t/ZV2oHUmM10Hgbxp4m8BatEfNnWBH +/eWshOxx9Kmpg4te49RUM1kn+8Wh9zQ4P1FaMC7l465rjPh14y0fxnoseoaXOpfaPOgJ+eI98j09 +67W19M15bi4uzPSqTU480WXkjZkAyAR61DPE6OCSOalWRRgZxjvTb598sfU4FBwx5uY4T4feIm8P +TeJbAgc65NIM+8cX+FFeLfF3Vr3SfiNrMFrMypJMJcDPUqP8KK+kpVFyLU+ar037SXqX4hxVpMY7 +1UhPpVlT2rybKx9smWYz3NeH/EDVLzxt40j8O6bITaQybPlbKkjq39K9O8fasdH8IahfKxWQRFIy +Ou9uB/OuE/Z/0y3j1d9TuyoZCMs5xjuea1pLli5nn46q240l13PcfhN8EvDNtpcEl/CklyVBLuMk +mvU/Dfwo0BL/AO13FjEDD/qyV7Vn+CvGPg8zRpJrVm8ikLtEg6+1ew2dxZ3EQaJgysuQPasH7eXW +1zzsbVhT92kk/PsYieEND+zlPs6c/wCyAPyryH4wfCPRtW0u6j+xRLOxLxSoADkDpXY+MPjJ4c0S +9k082d3O8ZKkxw5XI96ytK+IGk+IpFjRpod+Qq3C7QT6A1E6NenaXbqRg6rlLlqS0fRnxjpd1r/w +w8afa7GWRPKbZLGeBKmeVNfZngLxNaeKfDdprVjxHcLlkJ5Vh1H5185/tDad9h8XOsqAw3Cb0cjq +CfX61P8AsveKf7L8T3fhe5nxa3g324YniQdh9R/KuivTdSmp9TXB1/Z1nRlsfU249QBx1pWfcwI7 +Cq6u2Ovamb9rYz16V5x7Psz5q/aJhZfibcupIElvE3H+7j+lFbXx9szP45jlUfeso8/99OKK9elL +3EeNVopzZVharCtxVRGGMk02S5JyFOB69zWTieypnL/GksfB+0cr9oQt69awPhPpD69Y3Ky3DWth +CWluGU4LAdq3vibGs/g68BJygVxjrwRW5+ztoRv/AAs8EeCZnO/J/hzz/Kumi4wp3kePjlOdZKPY +ml8Mvo6WM9ppi7J0EkQYMzkb1X0wW+bJHGACa+ivg14huZPCkjXUO6SImIYOQAP6UQ2sGneHmiWF +CYoSAAuM8etXfhBpMr+EZ3SSNRcMx6ZxWdes6ytBGSwkMNFuo7pnP614Ut9Zn1C4uLySKcwObGFA +Qnm4+XcR71h+CfDHiKCQWuv2YWFtw+bBZQD8rcE8n2Ney+GbGGQSM6I7xvtI681rXdp8hKRRp6t3 +FYPE1VDlsY1nQjWdl+J8w/tOeDZZ/AMd/EGefTHyxxyYjwfyODXg3waRh8UtEcFh+8Jb8FNfZPxh +Ak8J6nbPIsiyW7LnseK+Ofh99ptPHFnf2lu0y2twGcKuSEPB/Q1WHk50miq1o14TXU+xop+On61H +NMC6Nis1LgsAcUTSt1APFcXJZn0EqmhyvxA037friTYziBV6f7Tf40Vr3k4aXLx5OMZIzRXZB2ik +efJXbPHJJcnaD9aN2R1qoGO8/WkuLlIV+YjdjpXSonQ5lTxfiTwzqCnkeQxx9BWx+zPrQsrBFYja +zEfrXL6lfie3khcjY6lSPUGud+G3iA6FrY0uQ/KJsA9gCa0jSvFpnBi6tpKSPu++nsIfDFxeXciR +qIicscY4rxTwB8RUkn1axsPEf2LTYx85kTGzqCUP8VcJ47+JOs+I0Hhq1njjt/ufIeSvq1VtE+Gs +eoaUbSHUrkHdu3WtuX5Ix81XRh7OL5jirVpV5Whdn0F8C/iX4auVn0i612T7bASoe8wjTAd89K9g +vtSt5NMa4t5lkRhgOh3Dn6V8aaz8KZrIR3OlQ6r56LySmSxxz06Vo/CHx34h0rxBP4XvJ5AjK2RP +nEbAEj6ZxjPrWM6fMmoswqJxqJ1VZnqHxn1NLPwveqWHmNC2BnnNcD8DfDkGi+CH1m+ijN1qMzNA +4GSIiAMf+hVxPxU8Tapc3c0F9MGCn5GU5BX0Pau3+HmrT3XgXSIJCBHDGdgAx1NYSpezha52Yauq +1dya2Wh2onAIwTj1p0lxxWWLkhRyCKWa5O3ORXOos9KVQluZm83j0oqi84JyWH50Vdmc7ep43d3I +t1Z2Iz2FYdxeSTsxyRnvTdVuDNcNluM9KrKcg817NOnZGNbEXdkNckjrXGeIIprPxFFdRHAlIwem +COtdmxrG8Q2cd/ZNExw45RvQ1bVjim+dWNzw7eaTD4mN3dndCQCo6hmI5zXpj/Ea/wBHjkh0kwRW +xXEfl4yTxXzXZalJDL9nuWKMmRnHcV2Hh3WreCyYXW2SWQhd5P3F6n+lS43d2cTm6d7Ox9EWPxH1 +ODQxPqWpCaSU/ukUc4z3/WvKW8UhviAdaMewYZG98gj9c1ymoa8LyWOJHwkTDaVPb0qpr+q2m6Nb +cfvNo349az9mou9iZVXNWbub3jm98/Vza2ReV7lsJg/e3dsV654UR9N0K0sZP9ZDGFbHr3rzL4P+ +H7rXfEEWr3I3W1qf3IYdW9fwqDxf4k8UeH/G95p08kscHmk25dPlZT0we9YTj7SXKjpw1aNG8mj3 +FLv5ccU959ycnmvKPDnxB82YQarGsZPAlTp+IrvIr1ZIgySKwIyCOhFYTpyg9T0qWIhVV4svzPvf +IdhgY4orPachj81FRdmtzxqdiZmJ9aQEgdqZcPtmbJ71DJcAZ5r20kkeXJtsfPIQDwPzrG1a+S3i +LyHAHvmp7y7HOD1rlNdm+1T7Acovf3o+J2RMpezjzMvrob67pX9o2ShZlYgg/wAWKxZLLWLZ/Ke3 +mVh14yK9M+BMC3dre2ko3LHKCB7EV7EngeGQJdQ7HyBkMKS0djgq1W3c+XtK03U522RwzsTwNiEk +ntXoHgf4calql9El/G8UZbLfLyfr7V9FeGvh+s+0Lbxxcglu2K1NW1nwN4Gk/wBLuI57tV5jjwzE +/QVNS+0dWYRqNvXRFv4eeCodKsY1ggVIY1G3K4z714h+1Jqul3GpwaXYeXJLbzgyyrg4b+6D+HNb +vjz436zq9m+naHF/ZdkeGfOZXH17V4Vqt2b29K+ZuOc5bnce5zWdPBShL2lTfojSeJhy+zp/NjVz +1Bwa6DSfFGq6fbJFDKrov8DjPFcu97ZxsUe4jVhwVJ5Bpp1mwQiLewJPXacVq6fNpYyjOUXdHoKf +EG8VQHsInbuVcgflRXnt5fIs2FYHgcgUVi8LG+xusdW/mN7U2KgEVkTzPt60UVfQ9eHxGHrV1MGi +iD4V25x1qvdgLAMd6KK0pbHm4x++dp8FtUubLxJ5EIjMc+A4Za+qfD8pe1JZVOBmiinW3RyRPMfi +R8QPE638+k2l6LK0Hylbddhb6nOa80mlkcmWR2kcnlnOSaKK7qCXKcNdu5narcSrAoBxvODWJIga +VckjDdqKKwq/EaQ0gUdbjQ6mr7QGBUcd6tPBC6gtGpOOuKKKie5qn7qIpEXd0HSiiimSf//Z` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userid.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userid.go new file mode 100644 index 00000000..d6bea7d4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userid.go @@ -0,0 +1,160 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "io" + "io/ioutil" + "strings" +) + +// UserId contains text that is intended to represent the name and email +// address of the key holder. See RFC 4880, section 5.11. By convention, this +// takes the form "Full Name (Comment) " +type UserId struct { + Id string // By convention, this takes the form "Full Name (Comment) " which is split out in the fields below. + + Name, Comment, Email string +} + +func hasInvalidCharacters(s string) bool { + for _, c := range s { + switch c { + case '(', ')', '<', '>', 0: + return true + } + } + return false +} + +// NewUserId returns a UserId or nil if any of the arguments contain invalid +// characters. The invalid characters are '\x00', '(', ')', '<' and '>' +func NewUserId(name, comment, email string) *UserId { + // RFC 4880 doesn't deal with the structure of userid strings; the + // name, comment and email form is just a convention. However, there's + // no convention about escaping the metacharacters and GPG just refuses + // to create user ids where, say, the name contains a '('. We mirror + // this behaviour. + + if hasInvalidCharacters(name) || hasInvalidCharacters(comment) || hasInvalidCharacters(email) { + return nil + } + + uid := new(UserId) + uid.Name, uid.Comment, uid.Email = name, comment, email + uid.Id = name + if len(comment) > 0 { + if len(uid.Id) > 0 { + uid.Id += " " + } + uid.Id += "(" + uid.Id += comment + uid.Id += ")" + } + if len(email) > 0 { + if len(uid.Id) > 0 { + uid.Id += " " + } + uid.Id += "<" + uid.Id += email + uid.Id += ">" + } + return uid +} + +func (uid *UserId) parse(r io.Reader) (err error) { + // RFC 4880, section 5.11 + b, err := ioutil.ReadAll(r) + if err != nil { + return + } + uid.Id = string(b) + uid.Name, uid.Comment, uid.Email = parseUserId(uid.Id) + return +} + +// Serialize marshals uid to w in the form of an OpenPGP packet, including +// header. +func (uid *UserId) Serialize(w io.Writer) error { + err := serializeHeader(w, packetTypeUserId, len(uid.Id)) + if err != nil { + return err + } + _, err = w.Write([]byte(uid.Id)) + return err +} + +// parseUserId extracts the name, comment and email from a user id string that +// is formatted as "Full Name (Comment) ". +func parseUserId(id string) (name, comment, email string) { + var n, c, e struct { + start, end int + } + var state int + + for offset, rune := range id { + switch state { + case 0: + // Entering name + n.start = offset + state = 1 + fallthrough + case 1: + // In name + if rune == '(' { + state = 2 + n.end = offset + } else if rune == '<' { + state = 5 + n.end = offset + } + case 2: + // Entering comment + c.start = offset + state = 3 + fallthrough + case 3: + // In comment + if rune == ')' { + state = 4 + c.end = offset + } + case 4: + // Between comment and email + if rune == '<' { + state = 5 + } + case 5: + // Entering email + e.start = offset + state = 6 + fallthrough + case 6: + // In email + if rune == '>' { + state = 7 + e.end = offset + } + default: + // After email + } + } + switch state { + case 1: + // ended in the name + n.end = len(id) + case 3: + // ended in comment + c.end = len(id) + case 6: + // ended in email + e.end = len(id) + } + + name = strings.TrimSpace(id[n.start:n.end]) + comment = strings.TrimSpace(id[c.start:c.end]) + email = strings.TrimSpace(id[e.start:e.end]) + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userid_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userid_test.go new file mode 100644 index 00000000..29681938 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/packet/userid_test.go @@ -0,0 +1,87 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package packet + +import ( + "testing" +) + +var userIdTests = []struct { + id string + name, comment, email string +}{ + {"", "", "", ""}, + {"John Smith", "John Smith", "", ""}, + {"John Smith ()", "John Smith", "", ""}, + {"John Smith () <>", "John Smith", "", ""}, + {"(comment", "", "comment", ""}, + {"(comment)", "", "comment", ""}, + {" sdfk", "", "", "email"}, + {" John Smith ( Comment ) asdkflj < email > lksdfj", "John Smith", "Comment", "email"}, + {" John Smith < email > lksdfj", "John Smith", "", "email"}, + {"("}, + {"foo", "bar", "", "foo (bar)"}, + {"foo", "", "baz", "foo "}, + {"", "bar", "baz", "(bar) "}, + {"foo", "bar", "baz", "foo (bar) "}, +} + +func TestNewUserId(t *testing.T) { + for i, test := range newUserIdTests { + uid := NewUserId(test.name, test.comment, test.email) + if uid == nil { + t.Errorf("#%d: returned nil", i) + continue + } + if uid.Id != test.id { + t.Errorf("#%d: got '%s', want '%s'", i, uid.Id, test.id) + } + } +} + +var invalidNewUserIdTests = []struct { + name, comment, email string +}{ + {"foo(", "", ""}, + {"foo<", "", ""}, + {"", "bar)", ""}, + {"", "bar<", ""}, + {"", "", "baz>"}, + {"", "", "baz)"}, + {"", "", "baz\x00"}, +} + +func TestNewUserIdWithInvalidInput(t *testing.T) { + for i, test := range invalidNewUserIdTests { + if uid := NewUserId(test.name, test.comment, test.email); uid != nil { + t.Errorf("#%d: returned non-nil value: %#v", i, uid) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/read.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/read.go new file mode 100644 index 00000000..4bdb8345 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/read.go @@ -0,0 +1,431 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package openpgp implements high level operations on OpenPGP messages. +package openpgp + +import ( + "code.google.com/p/go.crypto/openpgp/armor" + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/packet" + "crypto" + _ "crypto/sha256" + "hash" + "io" + "strconv" +) + +// SignatureType is the armor type for a PGP signature. +var SignatureType = "PGP SIGNATURE" + +// readArmored reads an armored block with the given type. +func readArmored(r io.Reader, expectedType string) (body io.Reader, err error) { + block, err := armor.Decode(r) + if err != nil { + return + } + + if block.Type != expectedType { + return nil, errors.InvalidArgumentError("expected '" + expectedType + "', got: " + block.Type) + } + + return block.Body, nil +} + +// MessageDetails contains the result of parsing an OpenPGP encrypted and/or +// signed message. +type MessageDetails struct { + IsEncrypted bool // true if the message was encrypted. + EncryptedToKeyIds []uint64 // the list of recipient key ids. + IsSymmetricallyEncrypted bool // true if a passphrase could have decrypted the message. + DecryptedWith Key // the private key used to decrypt the message, if any. + IsSigned bool // true if the message is signed. + SignedByKeyId uint64 // the key id of the signer, if any. + SignedBy *Key // the key of the signer, if available. + LiteralData *packet.LiteralData // the metadata of the contents + UnverifiedBody io.Reader // the contents of the message. + + // If IsSigned is true and SignedBy is non-zero then the signature will + // be verified as UnverifiedBody is read. The signature cannot be + // checked until the whole of UnverifiedBody is read so UnverifiedBody + // must be consumed until EOF before the data can trusted. Even if a + // message isn't signed (or the signer is unknown) the data may contain + // an authentication code that is only checked once UnverifiedBody has + // been consumed. Once EOF has been seen, the following fields are + // valid. (An authentication code failure is reported as a + // SignatureError error when reading from UnverifiedBody.) + SignatureError error // nil if the signature is good. + Signature *packet.Signature // the signature packet itself. + + decrypted io.ReadCloser +} + +// A PromptFunction is used as a callback by functions that may need to decrypt +// a private key, or prompt for a passphrase. It is called with a list of +// acceptable, encrypted private keys and a boolean that indicates whether a +// passphrase is usable. It should either decrypt a private key or return a +// passphrase to try. If the decrypted private key or given passphrase isn't +// correct, the function will be called again, forever. Any error returned will +// be passed up. +type PromptFunction func(keys []Key, symmetric bool) ([]byte, error) + +// A keyEnvelopePair is used to store a private key with the envelope that +// contains a symmetric key, encrypted with that key. +type keyEnvelopePair struct { + key Key + encryptedKey *packet.EncryptedKey +} + +// ReadMessage parses an OpenPGP message that may be signed and/or encrypted. +// The given KeyRing should contain both public keys (for signature +// verification) and, possibly encrypted, private keys for decrypting. +// If config is nil, sensible defaults will be used. +func ReadMessage(r io.Reader, keyring KeyRing, prompt PromptFunction, config *packet.Config) (md *MessageDetails, err error) { + var p packet.Packet + + var symKeys []*packet.SymmetricKeyEncrypted + var pubKeys []keyEnvelopePair + var se *packet.SymmetricallyEncrypted + + packets := packet.NewReader(r) + md = new(MessageDetails) + md.IsEncrypted = true + + // The message, if encrypted, starts with a number of packets + // containing an encrypted decryption key. The decryption key is either + // encrypted to a public key, or with a passphrase. This loop + // collects these packets. +ParsePackets: + for { + p, err = packets.Next() + if err != nil { + return nil, err + } + switch p := p.(type) { + case *packet.SymmetricKeyEncrypted: + // This packet contains the decryption key encrypted with a passphrase. + md.IsSymmetricallyEncrypted = true + symKeys = append(symKeys, p) + case *packet.EncryptedKey: + // This packet contains the decryption key encrypted to a public key. + md.EncryptedToKeyIds = append(md.EncryptedToKeyIds, p.KeyId) + switch p.Algo { + case packet.PubKeyAlgoRSA, packet.PubKeyAlgoRSAEncryptOnly, packet.PubKeyAlgoElGamal: + break + default: + continue + } + var keys []Key + if p.KeyId == 0 { + keys = keyring.DecryptionKeys() + } else { + keys = keyring.KeysById(p.KeyId) + } + for _, k := range keys { + pubKeys = append(pubKeys, keyEnvelopePair{k, p}) + } + case *packet.SymmetricallyEncrypted: + se = p + break ParsePackets + case *packet.Compressed, *packet.LiteralData, *packet.OnePassSignature: + // This message isn't encrypted. + if len(symKeys) != 0 || len(pubKeys) != 0 { + return nil, errors.StructuralError("key material not followed by encrypted message") + } + packets.Unread(p) + return readSignedMessage(packets, nil, keyring) + } + } + + var candidates []Key + var decrypted io.ReadCloser + + // Now that we have the list of encrypted keys we need to decrypt at + // least one of them or, if we cannot, we need to call the prompt + // function so that it can decrypt a key or give us a passphrase. +FindKey: + for { + // See if any of the keys already have a private key available + candidates = candidates[:0] + candidateFingerprints := make(map[string]bool) + + for _, pk := range pubKeys { + if pk.key.PrivateKey == nil { + continue + } + if !pk.key.PrivateKey.Encrypted { + if len(pk.encryptedKey.Key) == 0 { + pk.encryptedKey.Decrypt(pk.key.PrivateKey, config) + } + if len(pk.encryptedKey.Key) == 0 { + continue + } + decrypted, err = se.Decrypt(pk.encryptedKey.CipherFunc, pk.encryptedKey.Key) + if err != nil && err != errors.ErrKeyIncorrect { + return nil, err + } + if decrypted != nil { + md.DecryptedWith = pk.key + break FindKey + } + } else { + fpr := string(pk.key.PublicKey.Fingerprint[:]) + if v := candidateFingerprints[fpr]; v { + continue + } + candidates = append(candidates, pk.key) + candidateFingerprints[fpr] = true + } + } + + if len(candidates) == 0 && len(symKeys) == 0 { + return nil, errors.ErrKeyIncorrect + } + + if prompt == nil { + return nil, errors.ErrKeyIncorrect + } + + passphrase, err := prompt(candidates, len(symKeys) != 0) + if err != nil { + return nil, err + } + + // Try the symmetric passphrase first + if len(symKeys) != 0 && passphrase != nil { + for _, s := range symKeys { + err = s.Decrypt(passphrase) + if err == nil && !s.Encrypted { + decrypted, err = se.Decrypt(s.CipherFunc, s.Key) + if err != nil && err != errors.ErrKeyIncorrect { + return nil, err + } + if decrypted != nil { + break FindKey + } + } + + } + } + } + + md.decrypted = decrypted + packets.Push(decrypted) + return readSignedMessage(packets, md, keyring) +} + +// readSignedMessage reads a possibly signed message if mdin is non-zero then +// that structure is updated and returned. Otherwise a fresh MessageDetails is +// used. +func readSignedMessage(packets *packet.Reader, mdin *MessageDetails, keyring KeyRing) (md *MessageDetails, err error) { + if mdin == nil { + mdin = new(MessageDetails) + } + md = mdin + + var p packet.Packet + var h hash.Hash + var wrappedHash hash.Hash +FindLiteralData: + for { + p, err = packets.Next() + if err != nil { + return nil, err + } + switch p := p.(type) { + case *packet.Compressed: + packets.Push(p.Body) + case *packet.OnePassSignature: + if !p.IsLast { + return nil, errors.UnsupportedError("nested signatures") + } + + h, wrappedHash, err = hashForSignature(p.Hash, p.SigType) + if err != nil { + md = nil + return + } + + md.IsSigned = true + md.SignedByKeyId = p.KeyId + keys := keyring.KeysById(p.KeyId) + for i, key := range keys { + if key.SelfSignature.FlagsValid && !key.SelfSignature.FlagSign { + continue + } + md.SignedBy = &keys[i] + break + } + case *packet.LiteralData: + md.LiteralData = p + break FindLiteralData + } + } + + if md.SignedBy != nil { + md.UnverifiedBody = &signatureCheckReader{packets, h, wrappedHash, md} + } else if md.decrypted != nil { + md.UnverifiedBody = checkReader{md} + } else { + md.UnverifiedBody = md.LiteralData.Body + } + + return md, nil +} + +// hashForSignature returns a pair of hashes that can be used to verify a +// signature. The signature may specify that the contents of the signed message +// should be preprocessed (i.e. to normalize line endings). Thus this function +// returns two hashes. The second should be used to hash the message itself and +// performs any needed preprocessing. +func hashForSignature(hashId crypto.Hash, sigType packet.SignatureType) (hash.Hash, hash.Hash, error) { + h := hashId.New() + if h == nil { + return nil, nil, errors.UnsupportedError("hash not available: " + strconv.Itoa(int(hashId))) + } + + switch sigType { + case packet.SigTypeBinary: + return h, h, nil + case packet.SigTypeText: + return h, NewCanonicalTextHash(h), nil + } + + return nil, nil, errors.UnsupportedError("unsupported signature type: " + strconv.Itoa(int(sigType))) +} + +// checkReader wraps an io.Reader from a LiteralData packet. When it sees EOF +// it closes the ReadCloser from any SymmetricallyEncrypted packet to trigger +// MDC checks. +type checkReader struct { + md *MessageDetails +} + +func (cr checkReader) Read(buf []byte) (n int, err error) { + n, err = cr.md.LiteralData.Body.Read(buf) + if err == io.EOF { + mdcErr := cr.md.decrypted.Close() + if mdcErr != nil { + err = mdcErr + } + } + return +} + +// signatureCheckReader wraps an io.Reader from a LiteralData packet and hashes +// the data as it is read. When it sees an EOF from the underlying io.Reader +// it parses and checks a trailing Signature packet and triggers any MDC checks. +type signatureCheckReader struct { + packets *packet.Reader + h, wrappedHash hash.Hash + md *MessageDetails +} + +func (scr *signatureCheckReader) Read(buf []byte) (n int, err error) { + n, err = scr.md.LiteralData.Body.Read(buf) + scr.wrappedHash.Write(buf[:n]) + if err == io.EOF { + var p packet.Packet + p, scr.md.SignatureError = scr.packets.Next() + if scr.md.SignatureError != nil { + return + } + + var ok bool + if scr.md.Signature, ok = p.(*packet.Signature); !ok { + scr.md.SignatureError = errors.StructuralError("LiteralData not followed by Signature") + return + } + + scr.md.SignatureError = scr.md.SignedBy.PublicKey.VerifySignature(scr.h, scr.md.Signature) + + // The SymmetricallyEncrypted packet, if any, might have an + // unsigned hash of its own. In order to check this we need to + // close that Reader. + if scr.md.decrypted != nil { + mdcErr := scr.md.decrypted.Close() + if mdcErr != nil { + err = mdcErr + } + } + } + return +} + +// CheckDetachedSignature takes a signed file and a detached signature and +// returns the signer if the signature is valid. If the signer isn't known, +// ErrUnknownIssuer is returned. +func CheckDetachedSignature(keyring KeyRing, signed, signature io.Reader) (signer *Entity, err error) { + p, err := packet.Read(signature) + if err != nil { + return + } + + var issuerKeyId uint64 + var hashFunc crypto.Hash + var sigType packet.SignatureType + + switch sig := p.(type) { + case *packet.Signature: + if sig.IssuerKeyId == nil { + return nil, errors.StructuralError("signature doesn't have an issuer") + } + issuerKeyId = *sig.IssuerKeyId + hashFunc = sig.Hash + sigType = sig.SigType + case *packet.SignatureV3: + issuerKeyId = sig.IssuerKeyId + hashFunc = sig.Hash + sigType = sig.SigType + default: + return nil, errors.StructuralError("non signature packet found") + } + + keys := keyring.KeysById(issuerKeyId) + if len(keys) == 0 { + return nil, errors.ErrUnknownIssuer + } + + h, wrappedHash, err := hashForSignature(hashFunc, sigType) + if err != nil { + return + } + + _, err = io.Copy(wrappedHash, signed) + if err != nil && err != io.EOF { + return + } + + for _, key := range keys { + if key.SelfSignature.FlagsValid && !key.SelfSignature.FlagSign { + continue + } + switch sig := p.(type) { + case *packet.Signature: + err = key.PublicKey.VerifySignature(h, sig) + case *packet.SignatureV3: + err = key.PublicKey.VerifySignatureV3(h, sig) + } + if err == nil { + return key.Entity, nil + } + } + + if err != nil { + return + } + + return nil, errors.ErrUnknownIssuer +} + +// CheckArmoredDetachedSignature performs the same actions as +// CheckDetachedSignature but expects the signature to be armored. +func CheckArmoredDetachedSignature(keyring KeyRing, signed, signature io.Reader) (signer *Entity, err error) { + body, err := readArmored(signature, SignatureType) + if err != nil { + return + } + + return CheckDetachedSignature(keyring, signed, body) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/read_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/read_test.go new file mode 100644 index 00000000..3c908373 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/read_test.go @@ -0,0 +1,375 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package openpgp + +import ( + "bytes" + "code.google.com/p/go.crypto/openpgp/errors" + _ "crypto/sha512" + "encoding/hex" + "io" + "io/ioutil" + "testing" +) + +func readerFromHex(s string) io.Reader { + data, err := hex.DecodeString(s) + if err != nil { + panic("readerFromHex: bad input") + } + return bytes.NewBuffer(data) +} + +func TestReadKeyRing(t *testing.T) { + kring, err := ReadKeyRing(readerFromHex(testKeys1And2Hex)) + if err != nil { + t.Error(err) + return + } + if len(kring) != 2 || uint32(kring[0].PrimaryKey.KeyId) != 0xC20C31BB || uint32(kring[1].PrimaryKey.KeyId) != 0x1E35246B { + t.Errorf("bad keyring: %#v", kring) + } +} + +func TestRereadKeyRing(t *testing.T) { + kring, err := ReadKeyRing(readerFromHex(testKeys1And2Hex)) + if err != nil { + t.Errorf("error in initial parse: %s", err) + return + } + out := new(bytes.Buffer) + err = kring[0].Serialize(out) + if err != nil { + t.Errorf("error in serialization: %s", err) + return + } + kring, err = ReadKeyRing(out) + if err != nil { + t.Errorf("error in second parse: %s", err) + return + } + + if len(kring) != 1 || uint32(kring[0].PrimaryKey.KeyId) != 0xC20C31BB { + t.Errorf("bad keyring: %#v", kring) + } +} + +func TestReadPrivateKeyRing(t *testing.T) { + kring, err := ReadKeyRing(readerFromHex(testKeys1And2PrivateHex)) + if err != nil { + t.Error(err) + return + } + if len(kring) != 2 || uint32(kring[0].PrimaryKey.KeyId) != 0xC20C31BB || uint32(kring[1].PrimaryKey.KeyId) != 0x1E35246B || kring[0].PrimaryKey == nil { + t.Errorf("bad keyring: %#v", kring) + } +} + +func TestReadDSAKey(t *testing.T) { + kring, err := ReadKeyRing(readerFromHex(dsaTestKeyHex)) + if err != nil { + t.Error(err) + return + } + if len(kring) != 1 || uint32(kring[0].PrimaryKey.KeyId) != 0x0CCC0360 { + t.Errorf("bad parse: %#v", kring) + } +} + +func TestDSAHashTruncatation(t *testing.T) { + // dsaKeyWithSHA512 was generated with GnuPG and --cert-digest-algo + // SHA512 in order to require DSA hash truncation to verify correctly. + _, err := ReadKeyRing(readerFromHex(dsaKeyWithSHA512)) + if err != nil { + t.Error(err) + } +} + +func TestGetKeyById(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(testKeys1And2Hex)) + + keys := kring.KeysById(0xa34d7e18c20c31bb) + if len(keys) != 1 || keys[0].Entity != kring[0] { + t.Errorf("bad result for 0xa34d7e18c20c31bb: %#v", keys) + } + + keys = kring.KeysById(0xfd94408d4543314f) + if len(keys) != 1 || keys[0].Entity != kring[0] { + t.Errorf("bad result for 0xa34d7e18c20c31bb: %#v", keys) + } +} + +func checkSignedMessage(t *testing.T, signedHex, expected string) { + kring, _ := ReadKeyRing(readerFromHex(testKeys1And2Hex)) + + md, err := ReadMessage(readerFromHex(signedHex), kring, nil, nil) + if err != nil { + t.Error(err) + return + } + + if !md.IsSigned || md.SignedByKeyId != 0xa34d7e18c20c31bb || md.SignedBy == nil || md.IsEncrypted || md.IsSymmetricallyEncrypted || len(md.EncryptedToKeyIds) != 0 || md.IsSymmetricallyEncrypted { + t.Errorf("bad MessageDetails: %#v", md) + } + + contents, err := ioutil.ReadAll(md.UnverifiedBody) + if err != nil { + t.Errorf("error reading UnverifiedBody: %s", err) + } + if string(contents) != expected { + t.Errorf("bad UnverifiedBody got:%s want:%s", string(contents), expected) + } + if md.SignatureError != nil || md.Signature == nil { + t.Errorf("failed to validate: %s", md.SignatureError) + } +} + +func TestSignedMessage(t *testing.T) { + checkSignedMessage(t, signedMessageHex, signedInput) +} + +func TestTextSignedMessage(t *testing.T) { + checkSignedMessage(t, signedTextMessageHex, signedTextInput) +} + +var signedEncryptedMessageTests = []struct { + keyRingHex string + messageHex string + signedByKeyId uint64 + encryptedToKeyId uint64 +}{ + { + testKeys1And2PrivateHex, + signedEncryptedMessageHex, + 0xa34d7e18c20c31bb, + 0x2a67d68660df41c7, + }, + { + dsaElGamalTestKeysHex, + signedEncryptedMessage2Hex, + 0x33af447ccd759b09, + 0xcf6a7abcd43e3673, + }, +} + +func TestSignedEncryptedMessage(t *testing.T) { + for i, test := range signedEncryptedMessageTests { + expected := "Signed and encrypted message\n" + kring, _ := ReadKeyRing(readerFromHex(test.keyRingHex)) + prompt := func(keys []Key, symmetric bool) ([]byte, error) { + if symmetric { + t.Errorf("prompt: message was marked as symmetrically encrypted") + return nil, errors.ErrKeyIncorrect + } + + if len(keys) == 0 { + t.Error("prompt: no keys requested") + return nil, errors.ErrKeyIncorrect + } + + err := keys[0].PrivateKey.Decrypt([]byte("passphrase")) + if err != nil { + t.Errorf("prompt: error decrypting key: %s", err) + return nil, errors.ErrKeyIncorrect + } + + return nil, nil + } + + md, err := ReadMessage(readerFromHex(test.messageHex), kring, prompt, nil) + if err != nil { + t.Errorf("#%d: error reading message: %s", i, err) + return + } + + if !md.IsSigned || md.SignedByKeyId != test.signedByKeyId || md.SignedBy == nil || !md.IsEncrypted || md.IsSymmetricallyEncrypted || len(md.EncryptedToKeyIds) == 0 || md.EncryptedToKeyIds[0] != test.encryptedToKeyId { + t.Errorf("#%d: bad MessageDetails: %#v", i, md) + } + + contents, err := ioutil.ReadAll(md.UnverifiedBody) + if err != nil { + t.Errorf("#%d: error reading UnverifiedBody: %s", i, err) + } + if string(contents) != expected { + t.Errorf("#%d: bad UnverifiedBody got:%s want:%s", i, string(contents), expected) + } + + if md.SignatureError != nil || md.Signature == nil { + t.Errorf("#%d: failed to validate: %s", i, md.SignatureError) + } + } +} + +func TestUnspecifiedRecipient(t *testing.T) { + expected := "Recipient unspecified\n" + kring, _ := ReadKeyRing(readerFromHex(testKeys1And2PrivateHex)) + + md, err := ReadMessage(readerFromHex(recipientUnspecifiedHex), kring, nil, nil) + if err != nil { + t.Errorf("error reading message: %s", err) + return + } + + contents, err := ioutil.ReadAll(md.UnverifiedBody) + if err != nil { + t.Errorf("error reading UnverifiedBody: %s", err) + } + if string(contents) != expected { + t.Errorf("bad UnverifiedBody got:%s want:%s", string(contents), expected) + } +} + +func TestSymmetricallyEncrypted(t *testing.T) { + expected := "Symmetrically encrypted.\n" + + prompt := func(keys []Key, symmetric bool) ([]byte, error) { + if len(keys) != 0 { + t.Errorf("prompt: len(keys) = %d (want 0)", len(keys)) + } + + if !symmetric { + t.Errorf("symmetric is not set") + } + + return []byte("password"), nil + } + + md, err := ReadMessage(readerFromHex(symmetricallyEncryptedCompressedHex), nil, prompt, nil) + if err != nil { + t.Errorf("ReadMessage: %s", err) + return + } + + contents, err := ioutil.ReadAll(md.UnverifiedBody) + if err != nil { + t.Errorf("ReadAll: %s", err) + } + + expectedCreationTime := uint32(1295992998) + if md.LiteralData.Time != expectedCreationTime { + t.Errorf("LiteralData.Time is %d, want %d", md.LiteralData.Time, expectedCreationTime) + } + + if string(contents) != expected { + t.Errorf("contents got: %s want: %s", string(contents), expected) + } +} + +func testDetachedSignature(t *testing.T, kring KeyRing, signature io.Reader, sigInput, tag string, expectedSignerKeyId uint64) { + signed := bytes.NewBufferString(sigInput) + signer, err := CheckDetachedSignature(kring, signed, signature) + if err != nil { + t.Errorf("%s: signature error: %s", tag, err) + return + } + if signer == nil { + t.Errorf("%s: signer is nil", tag) + return + } + if signer.PrimaryKey.KeyId != expectedSignerKeyId { + t.Errorf("%s: wrong signer got:%x want:%x", tag, signer.PrimaryKey.KeyId, expectedSignerKeyId) + } +} + +func TestDetachedSignature(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(testKeys1And2Hex)) + testDetachedSignature(t, kring, readerFromHex(detachedSignatureHex), signedInput, "binary", testKey1KeyId) + testDetachedSignature(t, kring, readerFromHex(detachedSignatureTextHex), signedInput, "text", testKey1KeyId) + testDetachedSignature(t, kring, readerFromHex(detachedSignatureV3TextHex), signedInput, "v3", testKey1KeyId) +} + +func TestDetachedSignatureDSA(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(dsaTestKeyHex)) + testDetachedSignature(t, kring, readerFromHex(detachedSignatureDSAHex), signedInput, "binary", testKey3KeyId) +} + +func TestReadingArmoredPrivateKey(t *testing.T) { + el, err := ReadArmoredKeyRing(bytes.NewBufferString(armoredPrivateKeyBlock)) + if err != nil { + t.Error(err) + } + if len(el) != 1 { + t.Errorf("got %d entities, wanted 1\n", len(el)) + } +} + +func TestNoArmoredData(t *testing.T) { + _, err := ReadArmoredKeyRing(bytes.NewBufferString("foo")) + if _, ok := err.(errors.InvalidArgumentError); !ok { + t.Errorf("error was not an InvalidArgumentError: %s", err) + } +} + +const testKey1KeyId = 0xA34D7E18C20C31BB +const testKey3KeyId = 0x338934250CCC0360 + +const signedInput = "Signed message\nline 2\nline 3\n" +const signedTextInput = "Signed message\r\nline 2\r\nline 3\r\n" + +const recipientUnspecifiedHex = "848c0300000000000000000103ff62d4d578d03cf40c3da998dfe216c074fa6ddec5e31c197c9666ba292830d91d18716a80f699f9d897389a90e6d62d0238f5f07a5248073c0f24920e4bc4a30c2d17ee4e0cae7c3d4aaa4e8dced50e3010a80ee692175fa0385f62ecca4b56ee6e9980aa3ec51b61b077096ac9e800edaf161268593eedb6cc7027ff5cb32745d250010d407a6221ae22ef18469b444f2822478c4d190b24d36371a95cb40087cdd42d9399c3d06a53c0673349bfb607927f20d1e122bde1e2bf3aa6cae6edf489629bcaa0689539ae3b718914d88ededc3b" + +const detachedSignatureHex = "889c04000102000605024d449cd1000a0910a34d7e18c20c31bb167603ff57718d09f28a519fdc7b5a68b6a3336da04df85e38c5cd5d5bd2092fa4629848a33d85b1729402a2aab39c3ac19f9d573f773cc62c264dc924c067a79dfd8a863ae06c7c8686120760749f5fd9b1e03a64d20a7df3446ddc8f0aeadeaeba7cbaee5c1e366d65b6a0c6cc749bcb912d2f15013f812795c2e29eb7f7b77f39ce77" + +const detachedSignatureTextHex = "889c04010102000605024d449d21000a0910a34d7e18c20c31bbc8c60400a24fbef7342603a41cb1165767bd18985d015fb72fe05db42db36cfb2f1d455967f1e491194fbf6cf88146222b23bf6ffbd50d17598d976a0417d3192ff9cc0034fd00f287b02e90418bbefe609484b09231e4e7a5f3562e199bf39909ab5276c4d37382fe088f6b5c3426fc1052865da8b3ab158672d58b6264b10823dc4b39" + +const detachedSignatureV3TextHex = "8900950305005255c25ca34d7e18c20c31bb0102bb3f04009f6589ef8a028d6e54f6eaf25432e590d31c3a41f4710897585e10c31e5e332c7f9f409af8512adceaff24d0da1474ab07aa7bce4f674610b010fccc5b579ae5eb00a127f272fb799f988ab8e4574c141da6dbfecfef7e6b2c478d9a3d2551ba741f260ee22bec762812f0053e05380bfdd55ad0f22d8cdf71b233fe51ae8a24" + +const detachedSignatureDSAHex = "884604001102000605024d6c4eac000a0910338934250ccc0360f18d00a087d743d6405ed7b87755476629600b8b694a39e900a0abff8126f46faf1547c1743c37b21b4ea15b8f83" + +const testKeys1And2Hex = "988d044d3c5c10010400b1d13382944bd5aba23a4312968b5095d14f947f600eb478e14a6fcb16b0e0cac764884909c020bc495cfcc39a935387c661507bdb236a0612fb582cac3af9b29cc2c8c70090616c41b662f4da4c1201e195472eb7f4ae1ccbcbf9940fe21d985e379a5563dde5b9a23d35f1cfaa5790da3b79db26f23695107bfaca8e7b5bcd0011010001b41054657374204b6579203120285253412988b804130102002205024d3c5c10021b03060b090807030206150802090a0b0416020301021e01021780000a0910a34d7e18c20c31bbb5b304009cc45fe610b641a2c146331be94dade0a396e73ca725e1b25c21708d9cab46ecca5ccebc23055879df8f99eea39b377962a400f2ebdc36a7c99c333d74aeba346315137c3ff9d0a09b0273299090343048afb8107cf94cbd1400e3026f0ccac7ecebbc4d78588eb3e478fe2754d3ca664bcf3eac96ca4a6b0c8d7df5102f60f6b0020003b88d044d3c5c10010400b201df61d67487301f11879d514f4248ade90c8f68c7af1284c161098de4c28c2850f1ec7b8e30f959793e571542ffc6532189409cb51c3d30dad78c4ad5165eda18b20d9826d8707d0f742e2ab492103a85bbd9ddf4f5720f6de7064feb0d39ee002219765bb07bcfb8b877f47abe270ddeda4f676108cecb6b9bb2ad484a4f0011010001889f04180102000905024d3c5c10021b0c000a0910a34d7e18c20c31bb1a03040085c8d62e16d05dc4e9dad64953c8a2eed8b6c12f92b1575eeaa6dcf7be9473dd5b24b37b6dffbb4e7c99ed1bd3cb11634be19b3e6e207bed7505c7ca111ccf47cb323bf1f8851eb6360e8034cbff8dd149993c959de89f8f77f38e7e98b8e3076323aa719328e2b408db5ec0d03936efd57422ba04f925cdc7b4c1af7590e40ab0020003988d044d3c5c33010400b488c3e5f83f4d561f317817538d9d0397981e9aef1321ca68ebfae1cf8b7d388e19f4b5a24a82e2fbbf1c6c26557a6c5845307a03d815756f564ac7325b02bc83e87d5480a8fae848f07cb891f2d51ce7df83dcafdc12324517c86d472cc0ee10d47a68fd1d9ae49a6c19bbd36d82af597a0d88cc9c49de9df4e696fc1f0b5d0011010001b42754657374204b6579203220285253412c20656e637279707465642070726976617465206b65792988b804130102002205024d3c5c33021b03060b090807030206150802090a0b0416020301021e01021780000a0910d4984f961e35246b98940400908a73b6a6169f700434f076c6c79015a49bee37130eaf23aaa3cfa9ce60bfe4acaa7bc95f1146ada5867e0079babb38804891f4f0b8ebca57a86b249dee786161a755b7a342e68ccf3f78ed6440a93a6626beb9a37aa66afcd4f888790cb4bb46d94a4ae3eb3d7d3e6b00f6bfec940303e89ec5b32a1eaaacce66497d539328b0020003b88d044d3c5c33010400a4e913f9442abcc7f1804ccab27d2f787ffa592077ca935a8bb23165bd8d57576acac647cc596b2c3f814518cc8c82953c7a4478f32e0cf645630a5ba38d9618ef2bc3add69d459ae3dece5cab778938d988239f8c5ae437807075e06c828019959c644ff05ef6a5a1dab72227c98e3a040b0cf219026640698d7a13d8538a570011010001889f04180102000905024d3c5c33021b0c000a0910d4984f961e35246b26c703ff7ee29ef53bc1ae1ead533c408fa136db508434e233d6e62be621e031e5940bbd4c08142aed0f82217e7c3e1ec8de574bc06ccf3c36633be41ad78a9eacd209f861cae7b064100758545cc9dd83db71806dc1cfd5fb9ae5c7474bba0c19c44034ae61bae5eca379383339dece94ff56ff7aa44a582f3e5c38f45763af577c0934b0020003" + +const testKeys1And2PrivateHex = "9501d8044d3c5c10010400b1d13382944bd5aba23a4312968b5095d14f947f600eb478e14a6fcb16b0e0cac764884909c020bc495cfcc39a935387c661507bdb236a0612fb582cac3af9b29cc2c8c70090616c41b662f4da4c1201e195472eb7f4ae1ccbcbf9940fe21d985e379a5563dde5b9a23d35f1cfaa5790da3b79db26f23695107bfaca8e7b5bcd00110100010003ff4d91393b9a8e3430b14d6209df42f98dc927425b881f1209f319220841273a802a97c7bdb8b3a7740b3ab5866c4d1d308ad0d3a79bd1e883aacf1ac92dfe720285d10d08752a7efe3c609b1d00f17f2805b217be53999a7da7e493bfc3e9618fd17018991b8128aea70a05dbce30e4fbe626aa45775fa255dd9177aabf4df7cf0200c1ded12566e4bc2bb590455e5becfb2e2c9796482270a943343a7835de41080582c2be3caf5981aa838140e97afa40ad652a0b544f83eb1833b0957dce26e47b0200eacd6046741e9ce2ec5beb6fb5e6335457844fb09477f83b050a96be7da043e17f3a9523567ed40e7a521f818813a8b8a72209f1442844843ccc7eb9805442570200bdafe0438d97ac36e773c7162028d65844c4d463e2420aa2228c6e50dc2743c3d6c72d0d782a5173fe7be2169c8a9f4ef8a7cf3e37165e8c61b89c346cdc6c1799d2b41054657374204b6579203120285253412988b804130102002205024d3c5c10021b03060b090807030206150802090a0b0416020301021e01021780000a0910a34d7e18c20c31bbb5b304009cc45fe610b641a2c146331be94dade0a396e73ca725e1b25c21708d9cab46ecca5ccebc23055879df8f99eea39b377962a400f2ebdc36a7c99c333d74aeba346315137c3ff9d0a09b0273299090343048afb8107cf94cbd1400e3026f0ccac7ecebbc4d78588eb3e478fe2754d3ca664bcf3eac96ca4a6b0c8d7df5102f60f6b00200009d01d8044d3c5c10010400b201df61d67487301f11879d514f4248ade90c8f68c7af1284c161098de4c28c2850f1ec7b8e30f959793e571542ffc6532189409cb51c3d30dad78c4ad5165eda18b20d9826d8707d0f742e2ab492103a85bbd9ddf4f5720f6de7064feb0d39ee002219765bb07bcfb8b877f47abe270ddeda4f676108cecb6b9bb2ad484a4f00110100010003fd17a7490c22a79c59281fb7b20f5e6553ec0c1637ae382e8adaea295f50241037f8997cf42c1ce26417e015091451b15424b2c59eb8d4161b0975630408e394d3b00f88d4b4e18e2cc85e8251d4753a27c639c83f5ad4a571c4f19d7cd460b9b73c25ade730c99df09637bd173d8e3e981ac64432078263bb6dc30d3e974150dd0200d0ee05be3d4604d2146fb0457f31ba17c057560785aa804e8ca5530a7cd81d3440d0f4ba6851efcfd3954b7e68908fc0ba47f7ac37bf559c6c168b70d3a7c8cd0200da1c677c4bce06a068070f2b3733b0a714e88d62aa3f9a26c6f5216d48d5c2b5624144f3807c0df30be66b3268eeeca4df1fbded58faf49fc95dc3c35f134f8b01fd1396b6c0fc1b6c4f0eb8f5e44b8eace1e6073e20d0b8bc5385f86f1cf3f050f66af789f3ef1fc107b7f4421e19e0349c730c68f0a226981f4e889054fdb4dc149e8e889f04180102000905024d3c5c10021b0c000a0910a34d7e18c20c31bb1a03040085c8d62e16d05dc4e9dad64953c8a2eed8b6c12f92b1575eeaa6dcf7be9473dd5b24b37b6dffbb4e7c99ed1bd3cb11634be19b3e6e207bed7505c7ca111ccf47cb323bf1f8851eb6360e8034cbff8dd149993c959de89f8f77f38e7e98b8e3076323aa719328e2b408db5ec0d03936efd57422ba04f925cdc7b4c1af7590e40ab00200009501fe044d3c5c33010400b488c3e5f83f4d561f317817538d9d0397981e9aef1321ca68ebfae1cf8b7d388e19f4b5a24a82e2fbbf1c6c26557a6c5845307a03d815756f564ac7325b02bc83e87d5480a8fae848f07cb891f2d51ce7df83dcafdc12324517c86d472cc0ee10d47a68fd1d9ae49a6c19bbd36d82af597a0d88cc9c49de9df4e696fc1f0b5d0011010001fe030302e9030f3c783e14856063f16938530e148bc57a7aa3f3e4f90df9dceccdc779bc0835e1ad3d006e4a8d7b36d08b8e0de5a0d947254ecfbd22037e6572b426bcfdc517796b224b0036ff90bc574b5509bede85512f2eefb520fb4b02aa523ba739bff424a6fe81c5041f253f8d757e69a503d3563a104d0d49e9e890b9d0c26f96b55b743883b472caa7050c4acfd4a21f875bdf1258d88bd61224d303dc9df77f743137d51e6d5246b88c406780528fd9a3e15bab5452e5b93970d9dcc79f48b38651b9f15bfbcf6da452837e9cc70683d1bdca94507870f743e4ad902005812488dd342f836e72869afd00ce1850eea4cfa53ce10e3608e13d3c149394ee3cbd0e23d018fcbcb6e2ec5a1a22972d1d462ca05355d0d290dd2751e550d5efb38c6c89686344df64852bf4ff86638708f644e8ec6bd4af9b50d8541cb91891a431326ab2e332faa7ae86cfb6e0540aa63160c1e5cdd5a4add518b303fff0a20117c6bc77f7cfbaf36b04c865c6c2b42754657374204b6579203220285253412c20656e637279707465642070726976617465206b65792988b804130102002205024d3c5c33021b03060b090807030206150802090a0b0416020301021e01021780000a0910d4984f961e35246b98940400908a73b6a6169f700434f076c6c79015a49bee37130eaf23aaa3cfa9ce60bfe4acaa7bc95f1146ada5867e0079babb38804891f4f0b8ebca57a86b249dee786161a755b7a342e68ccf3f78ed6440a93a6626beb9a37aa66afcd4f888790cb4bb46d94a4ae3eb3d7d3e6b00f6bfec940303e89ec5b32a1eaaacce66497d539328b00200009d01fe044d3c5c33010400a4e913f9442abcc7f1804ccab27d2f787ffa592077ca935a8bb23165bd8d57576acac647cc596b2c3f814518cc8c82953c7a4478f32e0cf645630a5ba38d9618ef2bc3add69d459ae3dece5cab778938d988239f8c5ae437807075e06c828019959c644ff05ef6a5a1dab72227c98e3a040b0cf219026640698d7a13d8538a570011010001fe030302e9030f3c783e148560f936097339ae381d63116efcf802ff8b1c9360767db5219cc987375702a4123fd8657d3e22700f23f95020d1b261eda5257e9a72f9a918e8ef22dd5b3323ae03bbc1923dd224db988cadc16acc04b120a9f8b7e84da9716c53e0334d7b66586ddb9014df604b41be1e960dcfcbc96f4ed150a1a0dd070b9eb14276b9b6be413a769a75b519a53d3ecc0c220e85cd91ca354d57e7344517e64b43b6e29823cbd87eae26e2b2e78e6dedfbb76e3e9f77bcb844f9a8932eb3db2c3f9e44316e6f5d60e9e2a56e46b72abe6b06dc9a31cc63f10023d1f5e12d2a3ee93b675c96f504af0001220991c88db759e231b3320dcedf814dcf723fd9857e3d72d66a0f2af26950b915abdf56c1596f46a325bf17ad4810d3535fb02a259b247ac3dbd4cc3ecf9c51b6c07cebb009c1506fba0a89321ec8683e3fd009a6e551d50243e2d5092fefb3321083a4bad91320dc624bd6b5dddf93553e3d53924c05bfebec1fb4bd47e89a1a889f04180102000905024d3c5c33021b0c000a0910d4984f961e35246b26c703ff7ee29ef53bc1ae1ead533c408fa136db508434e233d6e62be621e031e5940bbd4c08142aed0f82217e7c3e1ec8de574bc06ccf3c36633be41ad78a9eacd209f861cae7b064100758545cc9dd83db71806dc1cfd5fb9ae5c7474bba0c19c44034ae61bae5eca379383339dece94ff56ff7aa44a582f3e5c38f45763af577c0934b0020000" + +const dsaElGamalTestKeysHex = "9501e1044dfcb16a110400aa3e5c1a1f43dd28c2ffae8abf5cfce555ee874134d8ba0a0f7b868ce2214beddc74e5e1e21ded354a95d18acdaf69e5e342371a71fbb9093162e0c5f3427de413a7f2c157d83f5cd2f9d791256dc4f6f0e13f13c3302af27f2384075ab3021dff7a050e14854bbde0a1094174855fc02f0bae8e00a340d94a1f22b32e48485700a0cec672ac21258fb95f61de2ce1af74b2c4fa3e6703ff698edc9be22c02ae4d916e4fa223f819d46582c0516235848a77b577ea49018dcd5e9e15cff9dbb4663a1ae6dd7580fa40946d40c05f72814b0f88481207e6c0832c3bded4853ebba0a7e3bd8e8c66df33d5a537cd4acf946d1080e7a3dcea679cb2b11a72a33a2b6a9dc85f466ad2ddf4c3db6283fa645343286971e3dd700703fc0c4e290d45767f370831a90187e74e9972aae5bff488eeff7d620af0362bfb95c1a6c3413ab5d15a2e4139e5d07a54d72583914661ed6a87cce810be28a0aa8879a2dd39e52fb6fe800f4f181ac7e328f740cde3d09a05cecf9483e4cca4253e60d4429ffd679d9996a520012aad119878c941e3cf151459873bdfc2a9563472fe0303027a728f9feb3b864260a1babe83925ce794710cfd642ee4ae0e5b9d74cee49e9c67b6cd0ea5dfbb582132195a121356a1513e1bca73e5b80c58c7ccb4164453412f456c47616d616c2054657374204b65792031886204131102002205024dfcb16a021b03060b090807030206150802090a0b0416020301021e01021780000a091033af447ccd759b09fadd00a0b8fd6f5a790bad7e9f2dbb7632046dc4493588db009c087c6a9ba9f7f49fab221587a74788c00db4889ab00200009d0157044dfcb16a1004008dec3f9291205255ccff8c532318133a6840739dd68b03ba942676f9038612071447bf07d00d559c5c0875724ea16a4c774f80d8338b55fca691a0522e530e604215b467bbc9ccfd483a1da99d7bc2648b4318fdbd27766fc8bfad3fddb37c62b8ae7ccfe9577e9b8d1e77c1d417ed2c2ef02d52f4da11600d85d3229607943700030503ff506c94c87c8cab778e963b76cf63770f0a79bf48fb49d3b4e52234620fc9f7657f9f8d56c96a2b7c7826ae6b57ebb2221a3fe154b03b6637cea7e6d98e3e45d87cf8dc432f723d3d71f89c5192ac8d7290684d2c25ce55846a80c9a7823f6acd9bb29fa6cd71f20bc90eccfca20451d0c976e460e672b000df49466408d527affe0303027a728f9feb3b864260abd761730327bca2aaa4ea0525c175e92bf240682a0e83b226f97ecb2e935b62c9a133858ce31b271fa8eb41f6a1b3cd72a63025ce1a75ee4180dcc284884904181102000905024dfcb16a021b0c000a091033af447ccd759b09dd0b009e3c3e7296092c81bee5a19929462caaf2fff3ae26009e218c437a2340e7ea628149af1ec98ec091a43992b00200009501e1044dfcb1be1104009f61faa61aa43df75d128cbe53de528c4aec49ce9360c992e70c77072ad5623de0a3a6212771b66b39a30dad6781799e92608316900518ec01184a85d872365b7d2ba4bacfb5882ea3c2473d3750dc6178cc1cf82147fb58caa28b28e9f12f6d1efcb0534abed644156c91cca4ab78834268495160b2400bc422beb37d237c2300a0cac94911b6d493bda1e1fbc6feeca7cb7421d34b03fe22cec6ccb39675bb7b94a335c2b7be888fd3906a1125f33301d8aa6ec6ee6878f46f73961c8d57a3e9544d8ef2a2cbfd4d52da665b1266928cfe4cb347a58c412815f3b2d2369dec04b41ac9a71cc9547426d5ab941cccf3b18575637ccfb42df1a802df3cfe0a999f9e7109331170e3a221991bf868543960f8c816c28097e503fe319db10fb98049f3a57d7c80c420da66d56f3644371631fad3f0ff4040a19a4fedc2d07727a1b27576f75a4d28c47d8246f27071e12d7a8de62aad216ddbae6aa02efd6b8a3e2818cda48526549791ab277e447b3a36c57cefe9b592f5eab73959743fcc8e83cbefec03a329b55018b53eec196765ae40ef9e20521a603c551efe0303020950d53a146bf9c66034d00c23130cce95576a2ff78016ca471276e8227fb30b1ffbd92e61804fb0c3eff9e30b1a826ee8f3e4730b4d86273ca977b4164453412f456c47616d616c2054657374204b65792032886204131102002205024dfcb1be021b03060b090807030206150802090a0b0416020301021e01021780000a0910a86bf526325b21b22bd9009e34511620415c974750a20df5cb56b182f3b48e6600a0a9466cb1a1305a84953445f77d461593f1d42bc1b00200009d0157044dfcb1be1004009565a951da1ee87119d600c077198f1c1bceb0f7aa54552489298e41ff788fa8f0d43a69871f0f6f77ebdfb14a4260cf9fbeb65d5844b4272a1904dd95136d06c3da745dc46327dd44a0f16f60135914368c8039a34033862261806bb2c5ce1152e2840254697872c85441ccb7321431d75a747a4bfb1d2c66362b51ce76311700030503fc0ea76601c196768070b7365a200e6ddb09307f262d5f39eec467b5f5784e22abdf1aa49226f59ab37cb49969d8f5230ea65caf56015abda62604544ed526c5c522bf92bed178a078789f6c807b6d34885688024a5bed9e9f8c58d11d4b82487b44c5f470c5606806a0443b79cadb45e0f897a561a53f724e5349b9267c75ca17fe0303020950d53a146bf9c660bc5f4ce8f072465e2d2466434320c1e712272fafc20e342fe7608101580fa1a1a367e60486a7cd1246b7ef5586cf5e10b32762b710a30144f12dd17dd4884904181102000905024dfcb1be021b0c000a0910a86bf526325b21b2904c00a0b2b66b4b39ccffda1d10f3ea8d58f827e30a8b8e009f4255b2d8112a184e40cde43a34e8655ca7809370b0020000" + +const signedMessageHex = "a3019bc0cbccc0c4b8d8b74ee2108fe16ec6d3ca490cbe362d3f8333d3f352531472538b8b13d353b97232f352158c20943157c71c16064626063656269052062e4e01987e9b6fccff4b7df3a34c534b23e679cbec3bc0f8f6e64dfb4b55fe3f8efa9ce110ddb5cd79faf1d753c51aecfa669f7e7aa043436596cccc3359cb7dd6bbe9ecaa69e5989d9e57209571edc0b2fa7f57b9b79a64ee6e99ce1371395fee92fec2796f7b15a77c386ff668ee27f6d38f0baa6c438b561657377bf6acff3c5947befd7bf4c196252f1d6e5c524d0300" + +const signedTextMessageHex = "a3019bc0cbccc8c4b8d8b74ee2108fe16ec6d36a250cbece0c178233d3f352531472538b8b13d35379b97232f352158ca0b4312f57c71c1646462606365626906a062e4e019811591798ff99bf8afee860b0d8a8c2a85c3387e3bcf0bb3b17987f2bbcfab2aa526d930cbfd3d98757184df3995c9f3e7790e36e3e9779f06089d4c64e9e47dd6202cb6e9bc73c5d11bb59fbaf89d22d8dc7cf199ddf17af96e77c5f65f9bbed56f427bd8db7af37f6c9984bf9385efaf5f184f986fb3e6adb0ecfe35bbf92d16a7aa2a344fb0bc52fb7624f0200" + +const signedEncryptedMessageHex = "848c032a67d68660df41c70103ff5789d0de26b6a50c985a02a13131ca829c413a35d0e6fa8d6842599252162808ac7439c72151c8c6183e76923fe3299301414d0c25a2f06a2257db3839e7df0ec964773f6e4c4ac7ff3b48c444237166dd46ba8ff443a5410dc670cb486672fdbe7c9dfafb75b4fea83af3a204fe2a7dfa86bd20122b4f3d2646cbeecb8f7be8d2c03b018bd210b1d3791e1aba74b0f1034e122ab72e760492c192383cf5e20b5628bd043272d63df9b923f147eb6091cd897553204832aba48fec54aa447547bb16305a1024713b90e77fd0065f1918271947549205af3c74891af22ee0b56cd29bfec6d6e351901cd4ab3ece7c486f1e32a792d4e474aed98ee84b3f591c7dff37b64e0ecd68fd036d517e412dcadf85840ce184ad7921ad446c4ee28db80447aea1ca8d4f574db4d4e37688158ddd19e14ee2eab4873d46947d65d14a23e788d912cf9a19624ca7352469b72a83866b7c23cb5ace3deab3c7018061b0ba0f39ed2befe27163e5083cf9b8271e3e3d52cc7ad6e2a3bd81d4c3d7022f8d" + +const signedEncryptedMessage2Hex = "85010e03cf6a7abcd43e36731003fb057f5495b79db367e277cdbe4ab90d924ddee0c0381494112ff8c1238fb0184af35d1731573b01bc4c55ecacd2aafbe2003d36310487d1ecc9ac994f3fada7f9f7f5c3a64248ab7782906c82c6ff1303b69a84d9a9529c31ecafbcdb9ba87e05439897d87e8a2a3dec55e14df19bba7f7bd316291c002ae2efd24f83f9e3441203fc081c0c23dc3092a454ca8a082b27f631abf73aca341686982e8fbda7e0e7d863941d68f3de4a755c2964407f4b5e0477b3196b8c93d551dd23c8beef7d0f03fbb1b6066f78907faf4bf1677d8fcec72651124080e0b7feae6b476e72ab207d38d90b958759fdedfc3c6c35717c9dbfc979b3cfbbff0a76d24a5e57056bb88acbd2a901ef64bc6e4db02adc05b6250ff378de81dca18c1910ab257dff1b9771b85bb9bbe0a69f5989e6d1710a35e6dfcceb7d8fb5ccea8db3932b3d9ff3fe0d327597c68b3622aec8e3716c83a6c93f497543b459b58ba504ed6bcaa747d37d2ca746fe49ae0a6ce4a8b694234e941b5159ff8bd34b9023da2814076163b86f40eed7c9472f81b551452d5ab87004a373c0172ec87ea6ce42ccfa7dbdad66b745496c4873d8019e8c28d6b3" + +const symmetricallyEncryptedCompressedHex = "8c0d04030302eb4a03808145d0d260c92f714339e13de5a79881216431925bf67ee2898ea61815f07894cd0703c50d0a76ef64d482196f47a8bc729af9b80bb6" + +const dsaTestKeyHex = "9901a2044d6c49de110400cb5ce438cf9250907ac2ba5bf6547931270b89f7c4b53d9d09f4d0213a5ef2ec1f26806d3d259960f872a4a102ef1581ea3f6d6882d15134f21ef6a84de933cc34c47cc9106efe3bd84c6aec12e78523661e29bc1a61f0aab17fa58a627fd5fd33f5149153fbe8cd70edf3d963bc287ef875270ff14b5bfdd1bca4483793923b00a0fe46d76cb6e4cbdc568435cd5480af3266d610d303fe33ae8273f30a96d4d34f42fa28ce1112d425b2e3bf7ea553d526e2db6b9255e9dc7419045ce817214d1a0056dbc8d5289956a4b1b69f20f1105124096e6a438f41f2e2495923b0f34b70642607d45559595c7fe94d7fa85fc41bf7d68c1fd509ebeaa5f315f6059a446b9369c277597e4f474a9591535354c7e7f4fd98a08aa60400b130c24ff20bdfbf683313f5daebf1c9b34b3bdadfc77f2ddd72ee1fb17e56c473664bc21d66467655dd74b9005e3a2bacce446f1920cd7017231ae447b67036c9b431b8179deacd5120262d894c26bc015bffe3d827ba7087ad9b700d2ca1f6d16cc1786581e5dd065f293c31209300f9b0afcc3f7c08dd26d0a22d87580b4db41054657374204b65792033202844534129886204131102002205024d6c49de021b03060b090807030206150802090a0b0416020301021e01021780000a0910338934250ccc03607e0400a0bdb9193e8a6b96fc2dfc108ae848914b504481f100a09c4dc148cb693293a67af24dd40d2b13a9e36794" + +const dsaTestKeyPrivateHex = "9501bb044d6c49de110400cb5ce438cf9250907ac2ba5bf6547931270b89f7c4b53d9d09f4d0213a5ef2ec1f26806d3d259960f872a4a102ef1581ea3f6d6882d15134f21ef6a84de933cc34c47cc9106efe3bd84c6aec12e78523661e29bc1a61f0aab17fa58a627fd5fd33f5149153fbe8cd70edf3d963bc287ef875270ff14b5bfdd1bca4483793923b00a0fe46d76cb6e4cbdc568435cd5480af3266d610d303fe33ae8273f30a96d4d34f42fa28ce1112d425b2e3bf7ea553d526e2db6b9255e9dc7419045ce817214d1a0056dbc8d5289956a4b1b69f20f1105124096e6a438f41f2e2495923b0f34b70642607d45559595c7fe94d7fa85fc41bf7d68c1fd509ebeaa5f315f6059a446b9369c277597e4f474a9591535354c7e7f4fd98a08aa60400b130c24ff20bdfbf683313f5daebf1c9b34b3bdadfc77f2ddd72ee1fb17e56c473664bc21d66467655dd74b9005e3a2bacce446f1920cd7017231ae447b67036c9b431b8179deacd5120262d894c26bc015bffe3d827ba7087ad9b700d2ca1f6d16cc1786581e5dd065f293c31209300f9b0afcc3f7c08dd26d0a22d87580b4d00009f592e0619d823953577d4503061706843317e4fee083db41054657374204b65792033202844534129886204131102002205024d6c49de021b03060b090807030206150802090a0b0416020301021e01021780000a0910338934250ccc03607e0400a0bdb9193e8a6b96fc2dfc108ae848914b504481f100a09c4dc148cb693293a67af24dd40d2b13a9e36794" + +const armoredPrivateKeyBlock = `-----BEGIN PGP PRIVATE KEY BLOCK----- +Version: GnuPG v1.4.10 (GNU/Linux) + +lQHYBE2rFNoBBADFwqWQIW/DSqcB4yCQqnAFTJ27qS5AnB46ccAdw3u4Greeu3Bp +idpoHdjULy7zSKlwR1EA873dO/k/e11Ml3dlAFUinWeejWaK2ugFP6JjiieSsrKn +vWNicdCS4HTWn0X4sjl0ZiAygw6GNhqEQ3cpLeL0g8E9hnYzJKQ0LWJa0QARAQAB +AAP/TB81EIo2VYNmTq0pK1ZXwUpxCrvAAIG3hwKjEzHcbQznsjNvPUihZ+NZQ6+X +0HCfPAdPkGDCLCb6NavcSW+iNnLTrdDnSI6+3BbIONqWWdRDYJhqZCkqmG6zqSfL +IdkJgCw94taUg5BWP/AAeQrhzjChvpMQTVKQL5mnuZbUCeMCAN5qrYMP2S9iKdnk +VANIFj7656ARKt/nf4CBzxcpHTyB8+d2CtPDKCmlJP6vL8t58Jmih+kHJMvC0dzn +gr5f5+sCAOOe5gt9e0am7AvQWhdbHVfJU0TQJx+m2OiCJAqGTB1nvtBLHdJnfdC9 +TnXXQ6ZXibqLyBies/xeY2sCKL5qtTMCAKnX9+9d/5yQxRyrQUHt1NYhaXZnJbHx +q4ytu0eWz+5i68IYUSK69jJ1NWPM0T6SkqpB3KCAIv68VFm9PxqG1KmhSrQIVGVz +dCBLZXmIuAQTAQIAIgUCTasU2gIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AA +CgkQO9o98PRieSoLhgQAkLEZex02Qt7vGhZzMwuN0R22w3VwyYyjBx+fM3JFETy1 +ut4xcLJoJfIaF5ZS38UplgakHG0FQ+b49i8dMij0aZmDqGxrew1m4kBfjXw9B/v+ +eIqpODryb6cOSwyQFH0lQkXC040pjq9YqDsO5w0WYNXYKDnzRV0p4H1pweo2VDid +AdgETasU2gEEAN46UPeWRqKHvA99arOxee38fBt2CI08iiWyI8T3J6ivtFGixSqV +bRcPxYO/qLpVe5l84Nb3X71GfVXlc9hyv7CD6tcowL59hg1E/DC5ydI8K8iEpUmK +/UnHdIY5h8/kqgGxkY/T/hgp5fRQgW1ZoZxLajVlMRZ8W4tFtT0DeA+JABEBAAEA +A/0bE1jaaZKj6ndqcw86jd+QtD1SF+Cf21CWRNeLKnUds4FRRvclzTyUMuWPkUeX +TaNNsUOFqBsf6QQ2oHUBBK4VCHffHCW4ZEX2cd6umz7mpHW6XzN4DECEzOVksXtc +lUC1j4UB91DC/RNQqwX1IV2QLSwssVotPMPqhOi0ZLNY7wIA3n7DWKInxYZZ4K+6 +rQ+POsz6brEoRHwr8x6XlHenq1Oki855pSa1yXIARoTrSJkBtn5oI+f8AzrnN0BN +oyeQAwIA/7E++3HDi5aweWrViiul9cd3rcsS0dEnksPhvS0ozCJiHsq/6GFmy7J8 +QSHZPteedBnZyNp5jR+H7cIfVN3KgwH/Skq4PsuPhDq5TKK6i8Pc1WW8MA6DXTdU +nLkX7RGmMwjC0DBf7KWAlPjFaONAX3a8ndnz//fy1q7u2l9AZwrj1qa1iJ8EGAEC +AAkFAk2rFNoCGwwACgkQO9o98PRieSo2/QP/WTzr4ioINVsvN1akKuekmEMI3LAp +BfHwatufxxP1U+3Si/6YIk7kuPB9Hs+pRqCXzbvPRrI8NHZBmc8qIGthishdCYad +AHcVnXjtxrULkQFGbGvhKURLvS9WnzD/m1K2zzwxzkPTzT9/Yf06O6Mal5AdugPL +VrM0m72/jnpKo04= +=zNCn +-----END PGP PRIVATE KEY BLOCK-----` + +const dsaKeyWithSHA512 = `9901a2044f04b07f110400db244efecc7316553ee08d179972aab87bb1214de7692593fcf5b6feb1c80fba268722dd464748539b85b81d574cd2d7ad0ca2444de4d849b8756bad7768c486c83a824f9bba4af773d11742bdfb4ac3b89ef8cc9452d4aad31a37e4b630d33927bff68e879284a1672659b8b298222fc68f370f3e24dccacc4a862442b9438b00a0ea444a24088dc23e26df7daf8f43cba3bffc4fe703fe3d6cd7fdca199d54ed8ae501c30e3ec7871ea9cdd4cf63cfe6fc82281d70a5b8bb493f922cd99fba5f088935596af087c8d818d5ec4d0b9afa7f070b3d7c1dd32a84fca08d8280b4890c8da1dde334de8e3cad8450eed2a4a4fcc2db7b8e5528b869a74a7f0189e11ef097ef1253582348de072bb07a9fa8ab838e993cef0ee203ff49298723e2d1f549b00559f886cd417a41692ce58d0ac1307dc71d85a8af21b0cf6eaa14baf2922d3a70389bedf17cc514ba0febbd107675a372fe84b90162a9e88b14d4b1c6be855b96b33fb198c46f058568817780435b6936167ebb3724b680f32bf27382ada2e37a879b3d9de2abe0c3f399350afd1ad438883f4791e2e3b4184453412068617368207472756e636174696f6e207465737488620413110a002205024f04b07f021b03060b090807030206150802090a0b0416020301021e01021780000a0910ef20e0cefca131581318009e2bf3bf047a44d75a9bacd00161ee04d435522397009a03a60d51bd8a568c6c021c8d7cf1be8d990d6417b0020003` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/s2k/s2k.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/s2k/s2k.go new file mode 100644 index 00000000..33462cc8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/s2k/s2k.go @@ -0,0 +1,196 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package s2k implements the various OpenPGP string-to-key transforms as +// specified in RFC 4800 section 3.7.1. +package s2k + +import ( + "code.google.com/p/go.crypto/openpgp/errors" + "crypto" + "hash" + "io" + "strconv" +) + +// Simple writes to out the result of computing the Simple S2K function (RFC +// 4880, section 3.7.1.1) using the given hash and input passphrase. +func Simple(out []byte, h hash.Hash, in []byte) { + Salted(out, h, in, nil) +} + +var zero [1]byte + +// Salted writes to out the result of computing the Salted S2K function (RFC +// 4880, section 3.7.1.2) using the given hash, input passphrase and salt. +func Salted(out []byte, h hash.Hash, in []byte, salt []byte) { + done := 0 + var digest []byte + + for i := 0; done < len(out); i++ { + h.Reset() + for j := 0; j < i; j++ { + h.Write(zero[:]) + } + h.Write(salt) + h.Write(in) + digest = h.Sum(digest[:0]) + n := copy(out[done:], digest) + done += n + } +} + +// Iterated writes to out the result of computing the Iterated and Salted S2K +// function (RFC 4880, section 3.7.1.3) using the given hash, input passphrase, +// salt and iteration count. +func Iterated(out []byte, h hash.Hash, in []byte, salt []byte, count int) { + combined := make([]byte, len(in)+len(salt)) + copy(combined, salt) + copy(combined[len(salt):], in) + + if count < len(combined) { + count = len(combined) + } + + done := 0 + var digest []byte + for i := 0; done < len(out); i++ { + h.Reset() + for j := 0; j < i; j++ { + h.Write(zero[:]) + } + written := 0 + for written < count { + if written+len(combined) > count { + todo := count - written + h.Write(combined[:todo]) + written = count + } else { + h.Write(combined) + written += len(combined) + } + } + digest = h.Sum(digest[:0]) + n := copy(out[done:], digest) + done += n + } +} + +// Parse reads a binary specification for a string-to-key transformation from r +// and returns a function which performs that transform. +func Parse(r io.Reader) (f func(out, in []byte), err error) { + var buf [9]byte + + _, err = io.ReadFull(r, buf[:2]) + if err != nil { + return + } + + hash, ok := HashIdToHash(buf[1]) + if !ok { + return nil, errors.UnsupportedError("hash for S2K function: " + strconv.Itoa(int(buf[1]))) + } + h := hash.New() + if h == nil { + return nil, errors.UnsupportedError("hash not available: " + strconv.Itoa(int(hash))) + } + + switch buf[0] { + case 0: + f := func(out, in []byte) { + Simple(out, h, in) + } + return f, nil + case 1: + _, err = io.ReadFull(r, buf[:8]) + if err != nil { + return + } + f := func(out, in []byte) { + Salted(out, h, in, buf[:8]) + } + return f, nil + case 3: + _, err = io.ReadFull(r, buf[:9]) + if err != nil { + return + } + count := (16 + int(buf[8]&15)) << (uint32(buf[8]>>4) + 6) + f := func(out, in []byte) { + Iterated(out, h, in, buf[:8], count) + } + return f, nil + } + + return nil, errors.UnsupportedError("S2K function") +} + +// Serialize salts and stretches the given passphrase and writes the resulting +// key into key. It also serializes an S2K descriptor to w. +func Serialize(w io.Writer, key []byte, rand io.Reader, passphrase []byte) error { + var buf [11]byte + buf[0] = 3 /* iterated and salted */ + buf[1], _ = HashToHashId(crypto.SHA1) + salt := buf[2:10] + if _, err := io.ReadFull(rand, salt); err != nil { + return err + } + const count = 65536 // this is the default in gpg + buf[10] = 96 // 65536 iterations + if _, err := w.Write(buf[:]); err != nil { + return err + } + + Iterated(key, crypto.SHA1.New(), passphrase, salt, count) + return nil +} + +// hashToHashIdMapping contains pairs relating OpenPGP's hash identifier with +// Go's crypto.Hash type. See RFC 4880, section 9.4. +var hashToHashIdMapping = []struct { + id byte + hash crypto.Hash + name string +}{ + {1, crypto.MD5, "MD5"}, + {2, crypto.SHA1, "SHA1"}, + {3, crypto.RIPEMD160, "RIPEMD160"}, + {8, crypto.SHA256, "SHA256"}, + {9, crypto.SHA384, "SHA384"}, + {10, crypto.SHA512, "SHA512"}, + {11, crypto.SHA224, "SHA224"}, +} + +// HashIdToHash returns a crypto.Hash which corresponds to the given OpenPGP +// hash id. +func HashIdToHash(id byte) (h crypto.Hash, ok bool) { + for _, m := range hashToHashIdMapping { + if m.id == id { + return m.hash, true + } + } + return 0, false +} + +// HashIdToString returns the name of the hash function corresponding to the +// given OpenPGP hash id, or panics if id is unknown. +func HashIdToString(id byte) (name string, ok bool) { + for _, m := range hashToHashIdMapping { + if m.id == id { + return m.name, true + } + } + + return "", false +} + +// HashIdToHash returns an OpenPGP hash id which corresponds the given Hash. +func HashToHashId(h crypto.Hash) (id byte, ok bool) { + for _, m := range hashToHashIdMapping { + if m.hash == h { + return m.id, true + } + } + return 0, false +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/s2k/s2k_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/s2k/s2k_test.go new file mode 100644 index 00000000..48988280 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/s2k/s2k_test.go @@ -0,0 +1,118 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package s2k + +import ( + "bytes" + "crypto/rand" + "crypto/sha1" + "encoding/hex" + "testing" +) + +var saltedTests = []struct { + in, out string +}{ + {"hello", "10295ac1"}, + {"world", "ac587a5e"}, + {"foo", "4dda8077"}, + {"bar", "bd8aac6b9ea9cae04eae6a91c6133b58b5d9a61c14f355516ed9370456"}, + {"x", "f1d3f289"}, + {"xxxxxxxxxxxxxxxxxxxxxxx", "e00d7b45"}, +} + +func TestSalted(t *testing.T) { + h := sha1.New() + salt := [4]byte{1, 2, 3, 4} + + for i, test := range saltedTests { + expected, _ := hex.DecodeString(test.out) + out := make([]byte, len(expected)) + Salted(out, h, []byte(test.in), salt[:]) + if !bytes.Equal(expected, out) { + t.Errorf("#%d, got: %x want: %x", i, out, expected) + } + } +} + +var iteratedTests = []struct { + in, out string +}{ + {"hello", "83126105"}, + {"world", "6fa317f9"}, + {"foo", "8fbc35b9"}, + {"bar", "2af5a99b54f093789fd657f19bd245af7604d0f6ae06f66602a46a08ae"}, + {"x", "5a684dfe"}, + {"xxxxxxxxxxxxxxxxxxxxxxx", "18955174"}, +} + +func TestIterated(t *testing.T) { + h := sha1.New() + salt := [4]byte{4, 3, 2, 1} + + for i, test := range iteratedTests { + expected, _ := hex.DecodeString(test.out) + out := make([]byte, len(expected)) + Iterated(out, h, []byte(test.in), salt[:], 31) + if !bytes.Equal(expected, out) { + t.Errorf("#%d, got: %x want: %x", i, out, expected) + } + } +} + +var parseTests = []struct { + spec, in, out string +}{ + /* Simple with SHA1 */ + {"0002", "hello", "aaf4c61d"}, + /* Salted with SHA1 */ + {"01020102030405060708", "hello", "f4f7d67e"}, + /* Iterated with SHA1 */ + {"03020102030405060708f1", "hello", "f2a57b7c"}, +} + +func TestParse(t *testing.T) { + for i, test := range parseTests { + spec, _ := hex.DecodeString(test.spec) + buf := bytes.NewBuffer(spec) + f, err := Parse(buf) + if err != nil { + t.Errorf("%d: Parse returned error: %s", i, err) + continue + } + + expected, _ := hex.DecodeString(test.out) + out := make([]byte, len(expected)) + f(out, []byte(test.in)) + if !bytes.Equal(out, expected) { + t.Errorf("%d: output got: %x want: %x", i, out, expected) + } + if testing.Short() { + break + } + } +} + +func TestSerialize(t *testing.T) { + buf := bytes.NewBuffer(nil) + key := make([]byte, 16) + passphrase := []byte("testing") + err := Serialize(buf, key, rand.Reader, passphrase) + if err != nil { + t.Errorf("failed to serialize: %s", err) + return + } + + f, err := Parse(buf) + if err != nil { + t.Errorf("failed to reparse: %s", err) + return + } + key2 := make([]byte, len(key)) + f(key2, passphrase) + if !bytes.Equal(key2, key) { + t.Errorf("keys don't match: %x (serialied) vs %x (parsed)", key, key2) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/write.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/write.go new file mode 100644 index 00000000..a67ffca5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/write.go @@ -0,0 +1,374 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package openpgp + +import ( + "code.google.com/p/go.crypto/openpgp/armor" + "code.google.com/p/go.crypto/openpgp/errors" + "code.google.com/p/go.crypto/openpgp/packet" + "code.google.com/p/go.crypto/openpgp/s2k" + "crypto" + "hash" + "io" + "strconv" + "time" +) + +// DetachSign signs message with the private key from signer (which must +// already have been decrypted) and writes the signature to w. +// If config is nil, sensible defaults will be used. +func DetachSign(w io.Writer, signer *Entity, message io.Reader, config *packet.Config) error { + return detachSign(w, signer, message, packet.SigTypeBinary, config) +} + +// ArmoredDetachSign signs message with the private key from signer (which +// must already have been decrypted) and writes an armored signature to w. +// If config is nil, sensible defaults will be used. +func ArmoredDetachSign(w io.Writer, signer *Entity, message io.Reader, config *packet.Config) (err error) { + return armoredDetachSign(w, signer, message, packet.SigTypeBinary, config) +} + +// DetachSignText signs message (after canonicalising the line endings) with +// the private key from signer (which must already have been decrypted) and +// writes the signature to w. +// If config is nil, sensible defaults will be used. +func DetachSignText(w io.Writer, signer *Entity, message io.Reader, config *packet.Config) error { + return detachSign(w, signer, message, packet.SigTypeText, config) +} + +// ArmoredDetachSignText signs message (after canonicalising the line endings) +// with the private key from signer (which must already have been decrypted) +// and writes an armored signature to w. +// If config is nil, sensible defaults will be used. +func ArmoredDetachSignText(w io.Writer, signer *Entity, message io.Reader, config *packet.Config) error { + return armoredDetachSign(w, signer, message, packet.SigTypeText, config) +} + +func armoredDetachSign(w io.Writer, signer *Entity, message io.Reader, sigType packet.SignatureType, config *packet.Config) (err error) { + out, err := armor.Encode(w, SignatureType, nil) + if err != nil { + return + } + err = detachSign(out, signer, message, sigType, config) + if err != nil { + return + } + return out.Close() +} + +func detachSign(w io.Writer, signer *Entity, message io.Reader, sigType packet.SignatureType, config *packet.Config) (err error) { + if signer.PrivateKey == nil { + return errors.InvalidArgumentError("signing key doesn't have a private key") + } + if signer.PrivateKey.Encrypted { + return errors.InvalidArgumentError("signing key is encrypted") + } + + sig := new(packet.Signature) + sig.SigType = sigType + sig.PubKeyAlgo = signer.PrivateKey.PubKeyAlgo + sig.Hash = config.Hash() + sig.CreationTime = config.Now() + sig.IssuerKeyId = &signer.PrivateKey.KeyId + + h, wrappedHash, err := hashForSignature(sig.Hash, sig.SigType) + if err != nil { + return + } + io.Copy(wrappedHash, message) + + err = sig.Sign(h, signer.PrivateKey, config) + if err != nil { + return + } + + return sig.Serialize(w) +} + +// FileHints contains metadata about encrypted files. This metadata is, itself, +// encrypted. +type FileHints struct { + // IsBinary can be set to hint that the contents are binary data. + IsBinary bool + // FileName hints at the name of the file that should be written. It's + // truncated to 255 bytes if longer. It may be empty to suggest that the + // file should not be written to disk. It may be equal to "_CONSOLE" to + // suggest the data should not be written to disk. + FileName string + // ModTime contains the modification time of the file, or the zero time if not applicable. + ModTime time.Time +} + +// SymmetricallyEncrypt acts like gpg -c: it encrypts a file with a passphrase. +// The resulting WriteCloser must be closed after the contents of the file have +// been written. +// If config is nil, sensible defaults will be used. +func SymmetricallyEncrypt(ciphertext io.Writer, passphrase []byte, hints *FileHints, config *packet.Config) (plaintext io.WriteCloser, err error) { + if hints == nil { + hints = &FileHints{} + } + + key, err := packet.SerializeSymmetricKeyEncrypted(ciphertext, passphrase, config) + if err != nil { + return + } + w, err := packet.SerializeSymmetricallyEncrypted(ciphertext, config.Cipher(), key, config) + if err != nil { + return + } + + literaldata := w + if algo := config.Compression(); algo != packet.CompressionNone { + var compConfig *packet.CompressionConfig + if config != nil { + compConfig = config.CompressionConfig + } + literaldata, err = packet.SerializeCompressed(w, algo, compConfig) + if err != nil { + return + } + } + + var epochSeconds uint32 + if !hints.ModTime.IsZero() { + epochSeconds = uint32(hints.ModTime.Unix()) + } + return packet.SerializeLiteral(literaldata, hints.IsBinary, hints.FileName, epochSeconds) +} + +// intersectPreferences mutates and returns a prefix of a that contains only +// the values in the intersection of a and b. The order of a is preserved. +func intersectPreferences(a []uint8, b []uint8) (intersection []uint8) { + var j int + for _, v := range a { + for _, v2 := range b { + if v == v2 { + a[j] = v + j++ + break + } + } + } + + return a[:j] +} + +func hashToHashId(h crypto.Hash) uint8 { + v, ok := s2k.HashToHashId(h) + if !ok { + panic("tried to convert unknown hash") + } + return v +} + +// Encrypt encrypts a message to a number of recipients and, optionally, signs +// it. hints contains optional information, that is also encrypted, that aids +// the recipients in processing the message. The resulting WriteCloser must +// be closed after the contents of the file have been written. +// If config is nil, sensible defaults will be used. +func Encrypt(ciphertext io.Writer, to []*Entity, signed *Entity, hints *FileHints, config *packet.Config) (plaintext io.WriteCloser, err error) { + var signer *packet.PrivateKey + if signed != nil { + signKey, ok := signed.signingKey(config.Now()) + if !ok { + return nil, errors.InvalidArgumentError("no valid signing keys") + } + signer = signKey.PrivateKey + if signer.Encrypted { + return nil, errors.InvalidArgumentError("signing key must be decrypted") + } + } + + // These are the possible ciphers that we'll use for the message. + candidateCiphers := []uint8{ + uint8(packet.CipherAES128), + uint8(packet.CipherAES256), + uint8(packet.CipherCAST5), + } + // These are the possible hash functions that we'll use for the signature. + candidateHashes := []uint8{ + hashToHashId(crypto.SHA256), + hashToHashId(crypto.SHA512), + hashToHashId(crypto.SHA1), + hashToHashId(crypto.RIPEMD160), + } + // In the event that a recipient doesn't specify any supported ciphers + // or hash functions, these are the ones that we assume that every + // implementation supports. + defaultCiphers := candidateCiphers[len(candidateCiphers)-1:] + defaultHashes := candidateHashes[len(candidateHashes)-1:] + + encryptKeys := make([]Key, len(to)) + for i := range to { + var ok bool + encryptKeys[i], ok = to[i].encryptionKey(config.Now()) + if !ok { + return nil, errors.InvalidArgumentError("cannot encrypt a message to key id " + strconv.FormatUint(to[i].PrimaryKey.KeyId, 16) + " because it has no encryption keys") + } + + sig := to[i].primaryIdentity().SelfSignature + + preferredSymmetric := sig.PreferredSymmetric + if len(preferredSymmetric) == 0 { + preferredSymmetric = defaultCiphers + } + preferredHashes := sig.PreferredHash + if len(preferredHashes) == 0 { + preferredHashes = defaultHashes + } + candidateCiphers = intersectPreferences(candidateCiphers, preferredSymmetric) + candidateHashes = intersectPreferences(candidateHashes, preferredHashes) + } + + if len(candidateCiphers) == 0 || len(candidateHashes) == 0 { + return nil, errors.InvalidArgumentError("cannot encrypt because recipient set shares no common algorithms") + } + + cipher := packet.CipherFunction(candidateCiphers[0]) + // If the cipher specifed by config is a candidate, we'll use that. + configuredCipher := config.Cipher() + for _, c := range candidateCiphers { + cipherFunc := packet.CipherFunction(c) + if cipherFunc == configuredCipher { + cipher = cipherFunc + break + } + } + + var hash crypto.Hash + for _, hashId := range candidateHashes { + if h, ok := s2k.HashIdToHash(hashId); ok && h.Available() { + hash = h + break + } + } + + // If the hash specified by config is a candidate, we'll use that. + if configuredHash := config.Hash(); configuredHash.Available() { + for _, hashId := range candidateHashes { + if h, ok := s2k.HashIdToHash(hashId); ok && h == configuredHash { + hash = h + break + } + } + } + + if hash == 0 { + hashId := candidateHashes[0] + name, ok := s2k.HashIdToString(hashId) + if !ok { + name = "#" + strconv.Itoa(int(hashId)) + } + return nil, errors.InvalidArgumentError("cannot encrypt because no candidate hash functions are compiled in. (Wanted " + name + " in this case.)") + } + + symKey := make([]byte, cipher.KeySize()) + if _, err := io.ReadFull(config.Random(), symKey); err != nil { + return nil, err + } + + for _, key := range encryptKeys { + if err := packet.SerializeEncryptedKey(ciphertext, key.PublicKey, cipher, symKey, config); err != nil { + return nil, err + } + } + + encryptedData, err := packet.SerializeSymmetricallyEncrypted(ciphertext, cipher, symKey, config) + if err != nil { + return + } + + if signer != nil { + ops := &packet.OnePassSignature{ + SigType: packet.SigTypeBinary, + Hash: hash, + PubKeyAlgo: signer.PubKeyAlgo, + KeyId: signer.KeyId, + IsLast: true, + } + if err := ops.Serialize(encryptedData); err != nil { + return nil, err + } + } + + if hints == nil { + hints = &FileHints{} + } + + w := encryptedData + if signer != nil { + // If we need to write a signature packet after the literal + // data then we need to stop literalData from closing + // encryptedData. + w = noOpCloser{encryptedData} + + } + var epochSeconds uint32 + if !hints.ModTime.IsZero() { + epochSeconds = uint32(hints.ModTime.Unix()) + } + literalData, err := packet.SerializeLiteral(w, hints.IsBinary, hints.FileName, epochSeconds) + if err != nil { + return nil, err + } + + if signer != nil { + return signatureWriter{encryptedData, literalData, hash, hash.New(), signer, config}, nil + } + return literalData, nil +} + +// signatureWriter hashes the contents of a message while passing it along to +// literalData. When closed, it closes literalData, writes a signature packet +// to encryptedData and then also closes encryptedData. +type signatureWriter struct { + encryptedData io.WriteCloser + literalData io.WriteCloser + hashType crypto.Hash + h hash.Hash + signer *packet.PrivateKey + config *packet.Config +} + +func (s signatureWriter) Write(data []byte) (int, error) { + s.h.Write(data) + return s.literalData.Write(data) +} + +func (s signatureWriter) Close() error { + sig := &packet.Signature{ + SigType: packet.SigTypeBinary, + PubKeyAlgo: s.signer.PubKeyAlgo, + Hash: s.hashType, + CreationTime: s.config.Now(), + IssuerKeyId: &s.signer.KeyId, + } + + if err := sig.Sign(s.h, s.signer, s.config); err != nil { + return err + } + if err := s.literalData.Close(); err != nil { + return err + } + if err := sig.Serialize(s.encryptedData); err != nil { + return err + } + return s.encryptedData.Close() +} + +// noOpCloser is like an ioutil.NopCloser, but for an io.Writer. +// TODO: we have two of these in OpenPGP packages alone. This probably needs +// to be promoted somewhere more common. +type noOpCloser struct { + w io.Writer +} + +func (c noOpCloser) Write(data []byte) (n int, err error) { + return c.w.Write(data) +} + +func (c noOpCloser) Close() error { + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/write_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/write_test.go new file mode 100644 index 00000000..9f8c358b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/openpgp/write_test.go @@ -0,0 +1,234 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package openpgp + +import ( + "bytes" + "io" + "io/ioutil" + "testing" + "time" +) + +func TestSignDetached(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(testKeys1And2PrivateHex)) + out := bytes.NewBuffer(nil) + message := bytes.NewBufferString(signedInput) + err := DetachSign(out, kring[0], message, nil) + if err != nil { + t.Error(err) + } + + testDetachedSignature(t, kring, out, signedInput, "check", testKey1KeyId) +} + +func TestSignTextDetached(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(testKeys1And2PrivateHex)) + out := bytes.NewBuffer(nil) + message := bytes.NewBufferString(signedInput) + err := DetachSignText(out, kring[0], message, nil) + if err != nil { + t.Error(err) + } + + testDetachedSignature(t, kring, out, signedInput, "check", testKey1KeyId) +} + +func TestSignDetachedDSA(t *testing.T) { + kring, _ := ReadKeyRing(readerFromHex(dsaTestKeyPrivateHex)) + out := bytes.NewBuffer(nil) + message := bytes.NewBufferString(signedInput) + err := DetachSign(out, kring[0], message, nil) + if err != nil { + t.Error(err) + } + + testDetachedSignature(t, kring, out, signedInput, "check", testKey3KeyId) +} + +func TestNewEntity(t *testing.T) { + if testing.Short() { + return + } + + e, err := NewEntity("Test User", "test", "test@example.com", nil) + if err != nil { + t.Errorf("failed to create entity: %s", err) + return + } + + w := bytes.NewBuffer(nil) + if err := e.SerializePrivate(w, nil); err != nil { + t.Errorf("failed to serialize entity: %s", err) + return + } + serialized := w.Bytes() + + el, err := ReadKeyRing(w) + if err != nil { + t.Errorf("failed to reparse entity: %s", err) + return + } + + if len(el) != 1 { + t.Errorf("wrong number of entities found, got %d, want 1", len(el)) + } + + w = bytes.NewBuffer(nil) + if err := e.SerializePrivate(w, nil); err != nil { + t.Errorf("failed to serialize entity second time: %s", err) + return + } + + if !bytes.Equal(w.Bytes(), serialized) { + t.Errorf("results differed") + } +} + +func TestSymmetricEncryption(t *testing.T) { + buf := new(bytes.Buffer) + plaintext, err := SymmetricallyEncrypt(buf, []byte("testing"), nil, nil) + if err != nil { + t.Errorf("error writing headers: %s", err) + return + } + message := []byte("hello world\n") + _, err = plaintext.Write(message) + if err != nil { + t.Errorf("error writing to plaintext writer: %s", err) + } + err = plaintext.Close() + if err != nil { + t.Errorf("error closing plaintext writer: %s", err) + } + + md, err := ReadMessage(buf, nil, func(keys []Key, symmetric bool) ([]byte, error) { + return []byte("testing"), nil + }, nil) + if err != nil { + t.Errorf("error rereading message: %s", err) + } + messageBuf := bytes.NewBuffer(nil) + _, err = io.Copy(messageBuf, md.UnverifiedBody) + if err != nil { + t.Errorf("error rereading message: %s", err) + } + if !bytes.Equal(message, messageBuf.Bytes()) { + t.Errorf("recovered message incorrect got '%s', want '%s'", messageBuf.Bytes(), message) + } +} + +var testEncryptionTests = []struct { + keyRingHex string + isSigned bool +}{ + { + testKeys1And2PrivateHex, + false, + }, + { + testKeys1And2PrivateHex, + true, + }, + { + dsaElGamalTestKeysHex, + false, + }, + { + dsaElGamalTestKeysHex, + true, + }, +} + +func TestEncryption(t *testing.T) { + for i, test := range testEncryptionTests { + kring, _ := ReadKeyRing(readerFromHex(test.keyRingHex)) + + passphrase := []byte("passphrase") + for _, entity := range kring { + if entity.PrivateKey != nil && entity.PrivateKey.Encrypted { + err := entity.PrivateKey.Decrypt(passphrase) + if err != nil { + t.Errorf("#%d: failed to decrypt key", i) + } + } + for _, subkey := range entity.Subkeys { + if subkey.PrivateKey != nil && subkey.PrivateKey.Encrypted { + err := subkey.PrivateKey.Decrypt(passphrase) + if err != nil { + t.Errorf("#%d: failed to decrypt subkey", i) + } + } + } + } + + var signed *Entity + if test.isSigned { + signed = kring[0] + } + + buf := new(bytes.Buffer) + w, err := Encrypt(buf, kring[:1], signed, nil /* no hints */, nil) + if err != nil { + t.Errorf("#%d: error in Encrypt: %s", i, err) + continue + } + + const message = "testing" + _, err = w.Write([]byte(message)) + if err != nil { + t.Errorf("#%d: error writing plaintext: %s", i, err) + continue + } + err = w.Close() + if err != nil { + t.Errorf("#%d: error closing WriteCloser: %s", i, err) + continue + } + + md, err := ReadMessage(buf, kring, nil /* no prompt */, nil) + if err != nil { + t.Errorf("#%d: error reading message: %s", i, err) + continue + } + + testTime, _ := time.Parse("2006-01-02", "2013-07-01") + if test.isSigned { + signKey, _ := kring[0].signingKey(testTime) + expectedKeyId := signKey.PublicKey.KeyId + if md.SignedByKeyId != expectedKeyId { + t.Errorf("#%d: message signed by wrong key id, got: %d, want: %d", i, *md.SignedBy, expectedKeyId) + } + if md.SignedBy == nil { + t.Errorf("#%d: failed to find the signing Entity", i) + } + } + + plaintext, err := ioutil.ReadAll(md.UnverifiedBody) + if err != nil { + t.Errorf("#%d: error reading encrypted contents: %s", i, err) + continue + } + + encryptKey, _ := kring[0].encryptionKey(testTime) + expectedKeyId := encryptKey.PublicKey.KeyId + if len(md.EncryptedToKeyIds) != 1 || md.EncryptedToKeyIds[0] != expectedKeyId { + t.Errorf("#%d: expected message to be encrypted to %v, but got %#v", i, expectedKeyId, md.EncryptedToKeyIds) + } + + if string(plaintext) != message { + t.Errorf("#%d: got: %s, want: %s", i, string(plaintext), message) + } + + if test.isSigned { + if md.SignatureError != nil { + t.Errorf("#%d: signature error: %s", i, md.SignatureError) + } + if md.Signature == nil { + t.Error("signature missing") + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/libotr_test_helper.c b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/libotr_test_helper.c new file mode 100644 index 00000000..6423eeda --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/libotr_test_helper.c @@ -0,0 +1,171 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code can be compiled and used to test the otr package against libotr. +// See otr_test.go. + +// +build ignore + +#include +#include +#include + +#include +#include + +static int g_session_established = 0; + +OtrlPolicy policy(void *opdata, ConnContext *context) { + return OTRL_POLICY_ALWAYS; +} + +int is_logged_in(void *opdata, const char *accountname, const char *protocol, const char *recipient) { + return 1; +} + +void inject_message(void *opdata, const char *accountname, const char *protocol, const char *recipient, const char *message) { + printf("%s\n", message); + fflush(stdout); + fprintf(stderr, "libotr helper sent: %s\n", message); +} + +void notify(void *opdata, OtrlNotifyLevel level, const char *accountname, const char *protocol, const char *username, const char *title, const char *primary, const char *secondary) { + fprintf(stderr, "NOTIFY: %s %s %s %s\n", username, title, primary, secondary); +} + +int display_otr_message(void *opdata, const char *accountname, const char *protocol, const char *username, const char *msg) { + fprintf(stderr, "MESSAGE: %s %s\n", username, msg); + return 1; +} + +void update_context_list(void *opdata) { +} + +const char *protocol_name(void *opdata, const char *protocol) { + return "PROTOCOL"; +} + +void protocol_name_free(void *opdata, const char *protocol_name) { +} + +void new_fingerprint(void *opdata, OtrlUserState us, const char *accountname, const char *protocol, const char *username, unsigned char fingerprint[20]) { + fprintf(stderr, "NEW FINGERPRINT\n"); + g_session_established = 1; +} + +void write_fingerprints(void *opdata) { +} + +void gone_secure(void *opdata, ConnContext *context) { +} + +void gone_insecure(void *opdata, ConnContext *context) { +} + +void still_secure(void *opdata, ConnContext *context, int is_reply) { +} + +void log_message(void *opdata, const char *message) { + fprintf(stderr, "MESSAGE: %s\n", message); +} + +int max_message_size(void *opdata, ConnContext *context) { + return 99999; +} + +const char *account_name(void *opdata, const char *account, const char *protocol) { + return "ACCOUNT"; +} + +void account_name_free(void *opdata, const char *account_name) { +} + +OtrlMessageAppOps uiops = { + policy, + NULL, + is_logged_in, + inject_message, + notify, + display_otr_message, + update_context_list, + protocol_name, + protocol_name_free, + new_fingerprint, + write_fingerprints, + gone_secure, + gone_insecure, + still_secure, + log_message, + max_message_size, + account_name, + account_name_free, +}; + +static const char kPrivateKeyData[] = "(privkeys (account (name \"account\") (protocol proto) (private-key (dsa (p #00FC07ABCF0DC916AFF6E9AE47BEF60C7AB9B4D6B2469E436630E36F8A489BE812486A09F30B71224508654940A835301ACC525A4FF133FC152CC53DCC59D65C30A54F1993FE13FE63E5823D4C746DB21B90F9B9C00B49EC7404AB1D929BA7FBA12F2E45C6E0A651689750E8528AB8C031D3561FECEE72EBB4A090D450A9B7A857#) (q #00997BD266EF7B1F60A5C23F3A741F2AEFD07A2081#) (g #535E360E8A95EBA46A4F7DE50AD6E9B2A6DB785A66B64EB9F20338D2A3E8FB0E94725848F1AA6CC567CB83A1CC517EC806F2E92EAE71457E80B2210A189B91250779434B41FC8A8873F6DB94BEA7D177F5D59E7E114EE10A49CFD9CEF88AE43387023B672927BA74B04EB6BBB5E57597766A2F9CE3857D7ACE3E1E3BC1FC6F26#) (y #0AC8670AD767D7A8D9D14CC1AC6744CD7D76F993B77FFD9E39DF01E5A6536EF65E775FCEF2A983E2A19BD6415500F6979715D9FD1257E1FE2B6F5E1E74B333079E7C880D39868462A93454B41877BE62E5EF0A041C2EE9C9E76BD1E12AE25D9628DECB097025DD625EF49C3258A1A3C0FF501E3DC673B76D7BABF349009B6ECF#) (x #14D0345A3562C480A039E3C72764F72D79043216#)))))\n"; + +int +main() { + OTRL_INIT; + + // We have to write the private key information to a file because the libotr + // API demands a filename to read from. + const char *tmpdir = "/tmp"; + if (getenv("TMP")) { + tmpdir = getenv("TMP"); + } + + char private_key_file[256]; + snprintf(private_key_file, sizeof(private_key_file), "%s/libotr_test_helper_privatekeys-XXXXXX", tmpdir); + int fd = mkstemp(private_key_file); + if (fd == -1) { + perror("creating temp file"); + } + write(fd, kPrivateKeyData, sizeof(kPrivateKeyData)-1); + close(fd); + + OtrlUserState userstate = otrl_userstate_create(); + otrl_privkey_read(userstate, private_key_file); + unlink(private_key_file); + + fprintf(stderr, "libotr helper started\n"); + + char buf[4096]; + + for (;;) { + char* message = fgets(buf, sizeof(buf), stdin); + if (strlen(message) == 0) { + break; + } + message[strlen(message) - 1] = 0; + fprintf(stderr, "libotr helper got: %s\n", message); + + char *newmessage = NULL; + OtrlTLV *tlvs; + int ignore_message = otrl_message_receiving(userstate, &uiops, NULL, "account", "proto", "peer", message, &newmessage, &tlvs, NULL, NULL); + if (tlvs) { + otrl_tlv_free(tlvs); + } + + if (newmessage != NULL) { + fprintf(stderr, "libotr got: %s\n", newmessage); + otrl_message_free(newmessage); + + gcry_error_t err; + char *newmessage = NULL; + + err = otrl_message_sending(userstate, &uiops, NULL, "account", "proto", "peer", "test message", NULL, &newmessage, NULL, NULL); + if (newmessage == NULL) { + fprintf(stderr, "libotr didn't encrypt message\n"); + return 1; + } + write(1, newmessage, strlen(newmessage)); + write(1, "\n", 1); + g_session_established = 0; + otrl_message_free(newmessage); + write(1, "?OTRv2?\n", 8); + } + } + + return 0; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/otr.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/otr.go new file mode 100644 index 00000000..d98b3234 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/otr.go @@ -0,0 +1,1400 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package otr implements the Off The Record protocol as specified in +// http://www.cypherpunks.ca/otr/Protocol-v2-3.1.0.html +package otr + +import ( + "bytes" + "crypto/aes" + "crypto/cipher" + "crypto/dsa" + "crypto/hmac" + "crypto/rand" + "crypto/sha1" + "crypto/sha256" + "crypto/subtle" + "encoding/base64" + "encoding/hex" + "errors" + "hash" + "io" + "math/big" + "strconv" +) + +// SecurityChange describes a change in the security state of a Conversation. +type SecurityChange int + +const ( + NoChange SecurityChange = iota + // NewKeys indicates that a key exchange has completed. This occurs + // when a conversation first becomes encrypted, and when the keys are + // renegotiated within an encrypted conversation. + NewKeys + // SMPSecretNeeded indicates that the peer has started an + // authentication and that we need to supply a secret. Call SMPQuestion + // to get the optional, human readable challenge and then Authenticate + // to supply the matching secret. + SMPSecretNeeded + // SMPComplete indicates that an authentication completed. The identity + // of the peer has now been confirmed. + SMPComplete + // SMPFailed indicates that an authentication failed. + SMPFailed + // ConversationEnded indicates that the peer ended the secure + // conversation. + ConversationEnded +) + +// QueryMessage can be sent to a peer to start an OTR conversation. +var QueryMessage = "?OTRv2?" + +// ErrorPrefix can be used to make an OTR error by appending an error message +// to it. +var ErrorPrefix = "?OTR Error:" + +var ( + fragmentPartSeparator = []byte(",") + fragmentPrefix = []byte("?OTR,") + msgPrefix = []byte("?OTR:") + queryMarker = []byte("?OTR") +) + +// isQuery attempts to parse an OTR query from msg and returns the greatest +// common version, or 0 if msg is not an OTR query. +func isQuery(msg []byte) (greatestCommonVersion int) { + pos := bytes.Index(msg, queryMarker) + if pos == -1 { + return 0 + } + for i, c := range msg[pos+len(queryMarker):] { + if i == 0 { + if c == '?' { + // Indicates support for version 1, but we don't + // implement that. + continue + } + + if c != 'v' { + // Invalid message + return 0 + } + + continue + } + + if c == '?' { + // End of message + return + } + + if c == ' ' || c == '\t' { + // Probably an invalid message + return 0 + } + + if c == '2' { + greatestCommonVersion = 2 + } + } + + return 0 +} + +const ( + statePlaintext = iota + stateEncrypted + stateFinished +) + +const ( + authStateNone = iota + authStateAwaitingDHKey + authStateAwaitingRevealSig + authStateAwaitingSig +) + +const ( + msgTypeDHCommit = 2 + msgTypeData = 3 + msgTypeDHKey = 10 + msgTypeRevealSig = 17 + msgTypeSig = 18 +) + +const ( + // If the requested fragment size is less than this, it will be ignored. + minFragmentSize = 18 + // Messages are padded to a multiple of this number of bytes. + paddingGranularity = 256 + // The number of bytes in a Diffie-Hellman private value (320-bits). + dhPrivateBytes = 40 + // The number of bytes needed to represent an element of the DSA + // subgroup (160-bits). + dsaSubgroupBytes = 20 + // The number of bytes of the MAC that are sent on the wire (160-bits). + macPrefixBytes = 20 +) + +// These are the global, common group parameters for OTR. +var ( + p *big.Int // group prime + g *big.Int // group generator + q *big.Int // group order + pMinus2 *big.Int +) + +func init() { + p, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA237327FFFFFFFFFFFFFFFF", 16) + q, _ = new(big.Int).SetString("7FFFFFFFFFFFFFFFE487ED5110B4611A62633145C06E0E68948127044533E63A0105DF531D89CD9128A5043CC71A026EF7CA8CD9E69D218D98158536F92F8A1BA7F09AB6B6A8E122F242DABB312F3F637A262174D31BF6B585FFAE5B7A035BF6F71C35FDAD44CFD2D74F9208BE258FF324943328F6722D9EE1003E5C50B1DF82CC6D241B0E2AE9CD348B1FD47E9267AFC1B2AE91EE51D6CB0E3179AB1042A95DCF6A9483B84B4B36B3861AA7255E4C0278BA36046511B993FFFFFFFFFFFFFFFF", 16) + g = new(big.Int).SetInt64(2) + pMinus2 = new(big.Int).Sub(p, g) +} + +// Conversation represents a relation with a peer. The zero value is a valid +// Conversation, although PrivateKey must be set. +// +// When communicating with a peer, all inbound messages should be passed to +// Conversation.Receive and all outbound messages to Conversation.Send. The +// Conversation will take care of maintaining the encryption state and +// negotiating encryption as needed. +type Conversation struct { + // PrivateKey contains the private key to use to sign key exchanges. + PrivateKey *PrivateKey + + // Rand can be set to override the entropy source. Otherwise, + // crypto/rand will be used. + Rand io.Reader + // If FragmentSize is set, all messages produced by Receive and Send + // will be fragmented into messages of, at most, this number of bytes. + FragmentSize int + + // Once Receive has returned NewKeys once, the following fields are + // valid. + SSID [8]byte + TheirPublicKey PublicKey + + state, authState int + + r [16]byte + x, y *big.Int + gx, gy *big.Int + gxBytes []byte + digest [sha256.Size]byte + + revealKeys, sigKeys akeKeys + + myKeyId uint32 + myCurrentDHPub *big.Int + myCurrentDHPriv *big.Int + myLastDHPub *big.Int + myLastDHPriv *big.Int + + theirKeyId uint32 + theirCurrentDHPub *big.Int + theirLastDHPub *big.Int + + keySlots [4]keySlot + + myCounter [8]byte + theirLastCtr [8]byte + oldMACs []byte + + k, n int // fragment state + frag []byte + + smp smpState +} + +// A keySlot contains key material for a specific (their keyid, my keyid) pair. +type keySlot struct { + // used is true if this slot is valid. If false, it's free for reuse. + used bool + theirKeyId uint32 + myKeyId uint32 + sendAESKey, recvAESKey []byte + sendMACKey, recvMACKey []byte + theirLastCtr [8]byte +} + +// akeKeys are generated during key exchange. There's one set for the reveal +// signature message and another for the signature message. In the protocol +// spec the latter are indicated with a prime mark. +type akeKeys struct { + c [16]byte + m1, m2 [32]byte +} + +func (c *Conversation) rand() io.Reader { + if c.Rand != nil { + return c.Rand + } + return rand.Reader +} + +func (c *Conversation) randMPI(buf []byte) *big.Int { + _, err := io.ReadFull(c.rand(), buf) + if err != nil { + panic("otr: short read from random source") + } + + return new(big.Int).SetBytes(buf) +} + +// tlv represents the type-length value from the protocol. +type tlv struct { + typ, length uint16 + data []byte +} + +const ( + tlvTypePadding = 0 + tlvTypeDisconnected = 1 + tlvTypeSMP1 = 2 + tlvTypeSMP2 = 3 + tlvTypeSMP3 = 4 + tlvTypeSMP4 = 5 + tlvTypeSMPAbort = 6 + tlvTypeSMP1WithQuestion = 7 +) + +// Receive handles a message from a peer. It returns a human readable message, +// an indicator of whether that message was encrypted, a hint about the +// encryption state and zero or more messages to send back to the peer. +// These messages do not need to be passed to Send before transmission. +func (c *Conversation) Receive(in []byte) (out []byte, encrypted bool, change SecurityChange, toSend [][]byte, err error) { + if bytes.HasPrefix(in, fragmentPrefix) { + in, err = c.processFragment(in) + if in == nil || err != nil { + return + } + } + + if bytes.HasPrefix(in, msgPrefix) && in[len(in)-1] == '.' { + in = in[len(msgPrefix) : len(in)-1] + } else if version := isQuery(in); version > 0 { + c.authState = authStateAwaitingDHKey + c.myKeyId = 0 + toSend = c.encode(c.generateDHCommit()) + return + } else { + // plaintext message + out = in + return + } + + msg := make([]byte, base64.StdEncoding.DecodedLen(len(in))) + msgLen, err := base64.StdEncoding.Decode(msg, in) + if err != nil { + err = errors.New("otr: invalid base64 encoding in message") + return + } + msg = msg[:msgLen] + + // The first two bytes are the protocol version (2) + if len(msg) < 3 || msg[0] != 0 || msg[1] != 2 { + err = errors.New("otr: invalid OTR message") + return + } + + msgType := int(msg[2]) + msg = msg[3:] + + switch msgType { + case msgTypeDHCommit: + switch c.authState { + case authStateNone: + c.authState = authStateAwaitingRevealSig + if err = c.processDHCommit(msg); err != nil { + return + } + c.myKeyId = 0 + toSend = c.encode(c.generateDHKey()) + return + case authStateAwaitingDHKey: + // This is a 'SYN-crossing'. The greater digest wins. + var cmp int + if cmp, err = c.compareToDHCommit(msg); err != nil { + return + } + if cmp > 0 { + // We win. Retransmit DH commit. + toSend = c.encode(c.serializeDHCommit()) + return + } else { + // They win. We forget about our DH commit. + c.authState = authStateAwaitingRevealSig + if err = c.processDHCommit(msg); err != nil { + return + } + c.myKeyId = 0 + toSend = c.encode(c.generateDHKey()) + return + } + case authStateAwaitingRevealSig: + if err = c.processDHCommit(msg); err != nil { + return + } + toSend = c.encode(c.serializeDHKey()) + case authStateAwaitingSig: + if err = c.processDHCommit(msg); err != nil { + return + } + c.myKeyId = 0 + toSend = c.encode(c.generateDHKey()) + c.authState = authStateAwaitingRevealSig + default: + panic("bad state") + } + case msgTypeDHKey: + switch c.authState { + case authStateAwaitingDHKey: + var isSame bool + if isSame, err = c.processDHKey(msg); err != nil { + return + } + if isSame { + err = errors.New("otr: unexpected duplicate DH key") + return + } + toSend = c.encode(c.generateRevealSig()) + c.authState = authStateAwaitingSig + case authStateAwaitingSig: + var isSame bool + if isSame, err = c.processDHKey(msg); err != nil { + return + } + if isSame { + toSend = c.encode(c.serializeDHKey()) + } + } + case msgTypeRevealSig: + if c.authState != authStateAwaitingRevealSig { + return + } + if err = c.processRevealSig(msg); err != nil { + return + } + toSend = c.encode(c.generateSig()) + c.authState = authStateNone + c.state = stateEncrypted + change = NewKeys + case msgTypeSig: + if c.authState != authStateAwaitingSig { + return + } + if err = c.processSig(msg); err != nil { + return + } + c.authState = authStateNone + c.state = stateEncrypted + change = NewKeys + case msgTypeData: + if c.state != stateEncrypted { + err = errors.New("otr: encrypted message received without encrypted session established") + return + } + var tlvs []tlv + out, tlvs, err = c.processData(msg) + encrypted = true + + EachTLV: + for _, inTLV := range tlvs { + switch inTLV.typ { + case tlvTypeDisconnected: + change = ConversationEnded + c.state = stateFinished + break EachTLV + case tlvTypeSMP1, tlvTypeSMP2, tlvTypeSMP3, tlvTypeSMP4, tlvTypeSMPAbort, tlvTypeSMP1WithQuestion: + var reply tlv + var complete bool + reply, complete, err = c.processSMP(inTLV) + if err == smpSecretMissingError { + err = nil + change = SMPSecretNeeded + c.smp.saved = &inTLV + return + } else if err == smpFailureError { + err = nil + change = SMPFailed + return + } + if complete { + change = SMPComplete + } + if reply.typ != 0 { + toSend = c.encode(c.generateData(nil, &reply)) + } + break EachTLV + default: + // skip unknown TLVs + } + } + default: + err = errors.New("otr: unknown message type " + strconv.Itoa(msgType)) + } + + return +} + +// Send takes a human readable message from the local user, possibly encrypts +// it and returns zero one or more messages to send to the peer. +func (c *Conversation) Send(msg []byte) ([][]byte, error) { + switch c.state { + case statePlaintext: + return [][]byte{msg}, nil + case stateEncrypted: + return c.encode(c.generateData(msg, nil)), nil + case stateFinished: + return nil, errors.New("otr: cannot send message because secure conversation has finished") + } + + return nil, errors.New("otr: cannot send message in current state") +} + +// SMPQuestion returns the human readable challenge question from the peer. +// It's only valid after Receive has returned SMPSecretNeeded. +func (c *Conversation) SMPQuestion() string { + return c.smp.question +} + +// Authenticate begins an authentication with the peer. Authentication involves +// an optional challenge message and a shared secret. The authentication +// proceeds until either Receive returns SMPComplete, SMPSecretNeeded (which +// indicates that a new authentication is happening and thus this one was +// aborted) or SMPFailed. +func (c *Conversation) Authenticate(question string, mutualSecret []byte) (toSend [][]byte, err error) { + if c.state != stateEncrypted { + err = errors.New("otr: can't authenticate a peer without a secure conversation established") + return + } + + if c.smp.saved != nil { + c.calcSMPSecret(mutualSecret, false /* they started it */) + + var out tlv + var complete bool + out, complete, err = c.processSMP(*c.smp.saved) + if complete { + panic("SMP completed on the first message") + } + c.smp.saved = nil + if out.typ != 0 { + toSend = c.encode(c.generateData(nil, &out)) + } + return + } + + c.calcSMPSecret(mutualSecret, true /* we started it */) + outs := c.startSMP(question) + for _, out := range outs { + toSend = append(toSend, c.encode(c.generateData(nil, &out))...) + } + return +} + +// End ends a secure conversation by generating a termination message for +// the peer and switches to unencrypted communication. +func (c *Conversation) End() (toSend [][]byte) { + switch c.state { + case statePlaintext: + return nil + case stateEncrypted: + c.state = statePlaintext + return c.encode(c.generateData(nil, &tlv{typ: tlvTypeDisconnected})) + case stateFinished: + c.state = statePlaintext + return nil + } + panic("unreachable") +} + +// IsEncrypted returns true if a message passed to Send would be encrypted +// before transmission. This result remains valid until the next call to +// Receive or End, which may change the state of the Conversation. +func (c *Conversation) IsEncrypted() bool { + return c.state == stateEncrypted +} + +var fragmentError = errors.New("otr: invalid OTR fragment") + +// processFragment processes a fragmented OTR message and possibly returns a +// complete message. Fragmented messages look like "?OTR,k,n,msg," where k is +// the fragment number (starting from 1), n is the number of fragments in this +// message and msg is a substring of the base64 encoded message. +func (c *Conversation) processFragment(in []byte) (out []byte, err error) { + in = in[len(fragmentPrefix):] // remove "?OTR," + parts := bytes.Split(in, fragmentPartSeparator) + if len(parts) != 4 || len(parts[3]) != 0 { + return nil, fragmentError + } + + k, err := strconv.Atoi(string(parts[0])) + if err != nil { + return nil, fragmentError + } + + n, err := strconv.Atoi(string(parts[1])) + if err != nil { + return nil, fragmentError + } + + if k < 1 || n < 1 || k > n { + return nil, fragmentError + } + + if k == 1 { + c.frag = append(c.frag[:0], parts[2]...) + c.k, c.n = k, n + } else if n == c.n && k == c.k+1 { + c.frag = append(c.frag, parts[2]...) + c.k++ + } else { + c.frag = c.frag[:0] + c.n, c.k = 0, 0 + } + + if c.n > 0 && c.k == c.n { + c.n, c.k = 0, 0 + return c.frag, nil + } + + return nil, nil +} + +func (c *Conversation) generateDHCommit() []byte { + _, err := io.ReadFull(c.rand(), c.r[:]) + if err != nil { + panic("otr: short read from random source") + } + + var xBytes [dhPrivateBytes]byte + c.x = c.randMPI(xBytes[:]) + c.gx = new(big.Int).Exp(g, c.x, p) + c.gy = nil + c.gxBytes = appendMPI(nil, c.gx) + + h := sha256.New() + h.Write(c.gxBytes) + h.Sum(c.digest[:0]) + + aesCipher, err := aes.NewCipher(c.r[:]) + if err != nil { + panic(err.Error()) + } + + var iv [aes.BlockSize]byte + ctr := cipher.NewCTR(aesCipher, iv[:]) + ctr.XORKeyStream(c.gxBytes, c.gxBytes) + + return c.serializeDHCommit() +} + +func (c *Conversation) serializeDHCommit() []byte { + var ret []byte + ret = appendU16(ret, 2) // protocol version + ret = append(ret, msgTypeDHCommit) + ret = appendData(ret, c.gxBytes) + ret = appendData(ret, c.digest[:]) + return ret +} + +func (c *Conversation) processDHCommit(in []byte) error { + var ok1, ok2 bool + c.gxBytes, in, ok1 = getData(in) + digest, in, ok2 := getData(in) + if !ok1 || !ok2 || len(in) > 0 { + return errors.New("otr: corrupt DH commit message") + } + copy(c.digest[:], digest) + return nil +} + +func (c *Conversation) compareToDHCommit(in []byte) (int, error) { + _, in, ok1 := getData(in) + digest, in, ok2 := getData(in) + if !ok1 || !ok2 || len(in) > 0 { + return 0, errors.New("otr: corrupt DH commit message") + } + return bytes.Compare(c.digest[:], digest), nil +} + +func (c *Conversation) generateDHKey() []byte { + var yBytes [dhPrivateBytes]byte + c.y = c.randMPI(yBytes[:]) + c.gy = new(big.Int).Exp(g, c.y, p) + return c.serializeDHKey() +} + +func (c *Conversation) serializeDHKey() []byte { + var ret []byte + ret = appendU16(ret, 2) // protocol version + ret = append(ret, msgTypeDHKey) + ret = appendMPI(ret, c.gy) + return ret +} + +func (c *Conversation) processDHKey(in []byte) (isSame bool, err error) { + gy, in, ok := getMPI(in) + if !ok { + err = errors.New("otr: corrupt DH key message") + return + } + if gy.Cmp(g) < 0 || gy.Cmp(pMinus2) > 0 { + err = errors.New("otr: DH value out of range") + return + } + if c.gy != nil { + isSame = c.gy.Cmp(gy) == 0 + return + } + c.gy = gy + return +} + +func (c *Conversation) generateEncryptedSignature(keys *akeKeys, xFirst bool) ([]byte, []byte) { + var xb []byte + xb = c.PrivateKey.PublicKey.Serialize(xb) + + var verifyData []byte + if xFirst { + verifyData = appendMPI(verifyData, c.gx) + verifyData = appendMPI(verifyData, c.gy) + } else { + verifyData = appendMPI(verifyData, c.gy) + verifyData = appendMPI(verifyData, c.gx) + } + verifyData = append(verifyData, xb...) + verifyData = appendU32(verifyData, c.myKeyId) + + mac := hmac.New(sha256.New, keys.m1[:]) + mac.Write(verifyData) + mb := mac.Sum(nil) + + xb = appendU32(xb, c.myKeyId) + xb = append(xb, c.PrivateKey.Sign(c.rand(), mb)...) + + aesCipher, err := aes.NewCipher(keys.c[:]) + if err != nil { + panic(err.Error()) + } + var iv [aes.BlockSize]byte + ctr := cipher.NewCTR(aesCipher, iv[:]) + ctr.XORKeyStream(xb, xb) + + mac = hmac.New(sha256.New, keys.m2[:]) + encryptedSig := appendData(nil, xb) + mac.Write(encryptedSig) + + return encryptedSig, mac.Sum(nil) +} + +func (c *Conversation) generateRevealSig() []byte { + s := new(big.Int).Exp(c.gy, c.x, p) + c.calcAKEKeys(s) + c.myKeyId++ + + encryptedSig, mac := c.generateEncryptedSignature(&c.revealKeys, true /* gx comes first */) + + c.myCurrentDHPub = c.gx + c.myCurrentDHPriv = c.x + c.rotateDHKeys() + incCounter(&c.myCounter) + + var ret []byte + ret = appendU16(ret, 2) + ret = append(ret, msgTypeRevealSig) + ret = appendData(ret, c.r[:]) + ret = append(ret, encryptedSig...) + ret = append(ret, mac[:20]...) + return ret +} + +func (c *Conversation) processEncryptedSig(encryptedSig, theirMAC []byte, keys *akeKeys, xFirst bool) error { + mac := hmac.New(sha256.New, keys.m2[:]) + mac.Write(appendData(nil, encryptedSig)) + myMAC := mac.Sum(nil)[:20] + + if len(myMAC) != len(theirMAC) || subtle.ConstantTimeCompare(myMAC, theirMAC) == 0 { + return errors.New("bad signature MAC in encrypted signature") + } + + aesCipher, err := aes.NewCipher(keys.c[:]) + if err != nil { + panic(err.Error()) + } + var iv [aes.BlockSize]byte + ctr := cipher.NewCTR(aesCipher, iv[:]) + ctr.XORKeyStream(encryptedSig, encryptedSig) + + sig := encryptedSig + sig, ok1 := c.TheirPublicKey.Parse(sig) + keyId, sig, ok2 := getU32(sig) + if !ok1 || !ok2 { + return errors.New("otr: corrupt encrypted signature") + } + + var verifyData []byte + if xFirst { + verifyData = appendMPI(verifyData, c.gx) + verifyData = appendMPI(verifyData, c.gy) + } else { + verifyData = appendMPI(verifyData, c.gy) + verifyData = appendMPI(verifyData, c.gx) + } + verifyData = c.TheirPublicKey.Serialize(verifyData) + verifyData = appendU32(verifyData, keyId) + + mac = hmac.New(sha256.New, keys.m1[:]) + mac.Write(verifyData) + mb := mac.Sum(nil) + + sig, ok1 = c.TheirPublicKey.Verify(mb, sig) + if !ok1 { + return errors.New("bad signature in encrypted signature") + } + if len(sig) > 0 { + return errors.New("corrupt encrypted signature") + } + + c.theirKeyId = keyId + zero(c.theirLastCtr[:]) + return nil +} + +func (c *Conversation) processRevealSig(in []byte) error { + r, in, ok1 := getData(in) + encryptedSig, in, ok2 := getData(in) + theirMAC := in + if !ok1 || !ok2 || len(theirMAC) != 20 { + return errors.New("otr: corrupt reveal signature message") + } + + aesCipher, err := aes.NewCipher(r) + if err != nil { + return errors.New("otr: cannot create AES cipher from reveal signature message: " + err.Error()) + } + var iv [aes.BlockSize]byte + ctr := cipher.NewCTR(aesCipher, iv[:]) + ctr.XORKeyStream(c.gxBytes, c.gxBytes) + h := sha256.New() + h.Write(c.gxBytes) + digest := h.Sum(nil) + if len(digest) != len(c.digest) || subtle.ConstantTimeCompare(digest, c.digest[:]) == 0 { + return errors.New("otr: bad commit MAC in reveal signature message") + } + var rest []byte + c.gx, rest, ok1 = getMPI(c.gxBytes) + if !ok1 || len(rest) > 0 { + return errors.New("otr: gx corrupt after decryption") + } + if c.gx.Cmp(g) < 0 || c.gx.Cmp(pMinus2) > 0 { + return errors.New("otr: DH value out of range") + } + s := new(big.Int).Exp(c.gx, c.y, p) + c.calcAKEKeys(s) + + if err := c.processEncryptedSig(encryptedSig, theirMAC, &c.revealKeys, true /* gx comes first */); err != nil { + return errors.New("otr: in reveal signature message: " + err.Error()) + } + + c.theirCurrentDHPub = c.gx + c.theirLastDHPub = nil + + return nil +} + +func (c *Conversation) generateSig() []byte { + c.myKeyId++ + + encryptedSig, mac := c.generateEncryptedSignature(&c.sigKeys, false /* gy comes first */) + + c.myCurrentDHPub = c.gy + c.myCurrentDHPriv = c.y + c.rotateDHKeys() + incCounter(&c.myCounter) + + var ret []byte + ret = appendU16(ret, 2) + ret = append(ret, msgTypeSig) + ret = append(ret, encryptedSig...) + ret = append(ret, mac[:macPrefixBytes]...) + return ret +} + +func (c *Conversation) processSig(in []byte) error { + encryptedSig, in, ok1 := getData(in) + theirMAC := in + if !ok1 || len(theirMAC) != macPrefixBytes { + return errors.New("otr: corrupt signature message") + } + + if err := c.processEncryptedSig(encryptedSig, theirMAC, &c.sigKeys, false /* gy comes first */); err != nil { + return errors.New("otr: in signature message: " + err.Error()) + } + + c.theirCurrentDHPub = c.gy + c.theirLastDHPub = nil + + return nil +} + +func (c *Conversation) rotateDHKeys() { + // evict slots using our retired key id + for i := range c.keySlots { + slot := &c.keySlots[i] + if slot.used && slot.myKeyId == c.myKeyId-1 { + slot.used = false + c.oldMACs = append(c.oldMACs, slot.sendMACKey...) + c.oldMACs = append(c.oldMACs, slot.recvMACKey...) + } + } + + c.myLastDHPriv = c.myCurrentDHPriv + c.myLastDHPub = c.myCurrentDHPub + + var xBytes [dhPrivateBytes]byte + c.myCurrentDHPriv = c.randMPI(xBytes[:]) + c.myCurrentDHPub = new(big.Int).Exp(g, c.myCurrentDHPriv, p) + c.myKeyId++ +} + +func (c *Conversation) processData(in []byte) (out []byte, tlvs []tlv, err error) { + origIn := in + flags, in, ok1 := getU8(in) + theirKeyId, in, ok2 := getU32(in) + myKeyId, in, ok3 := getU32(in) + y, in, ok4 := getMPI(in) + counter, in, ok5 := getNBytes(in, 8) + encrypted, in, ok6 := getData(in) + macedData := origIn[:len(origIn)-len(in)] + theirMAC, in, ok7 := getNBytes(in, macPrefixBytes) + _, in, ok8 := getData(in) + if !ok1 || !ok2 || !ok3 || !ok4 || !ok5 || !ok6 || !ok7 || !ok8 || len(in) > 0 { + err = errors.New("otr: corrupt data message") + return + } + + ignoreErrors := flags&1 != 0 + + slot, err := c.calcDataKeys(myKeyId, theirKeyId) + if err != nil { + if ignoreErrors { + err = nil + } + return + } + + mac := hmac.New(sha1.New, slot.recvMACKey) + mac.Write([]byte{0, 2, 3}) + mac.Write(macedData) + myMAC := mac.Sum(nil) + if len(myMAC) != len(theirMAC) || subtle.ConstantTimeCompare(myMAC, theirMAC) == 0 { + if !ignoreErrors { + err = errors.New("otr: bad MAC on data message") + } + return + } + + if bytes.Compare(counter, slot.theirLastCtr[:]) <= 0 { + err = errors.New("otr: counter regressed") + return + } + copy(slot.theirLastCtr[:], counter) + + var iv [aes.BlockSize]byte + copy(iv[:], counter) + aesCipher, err := aes.NewCipher(slot.recvAESKey) + if err != nil { + panic(err.Error()) + } + ctr := cipher.NewCTR(aesCipher, iv[:]) + ctr.XORKeyStream(encrypted, encrypted) + decrypted := encrypted + + if myKeyId == c.myKeyId { + c.rotateDHKeys() + } + if theirKeyId == c.theirKeyId { + // evict slots using their retired key id + for i := range c.keySlots { + slot := &c.keySlots[i] + if slot.used && slot.theirKeyId == theirKeyId-1 { + slot.used = false + c.oldMACs = append(c.oldMACs, slot.sendMACKey...) + c.oldMACs = append(c.oldMACs, slot.recvMACKey...) + } + } + + c.theirLastDHPub = c.theirCurrentDHPub + c.theirKeyId++ + c.theirCurrentDHPub = y + } + + if nulPos := bytes.IndexByte(decrypted, 0); nulPos >= 0 { + out = decrypted[:nulPos] + tlvData := decrypted[nulPos+1:] + for len(tlvData) > 0 { + var t tlv + var ok1, ok2, ok3 bool + + t.typ, tlvData, ok1 = getU16(tlvData) + t.length, tlvData, ok2 = getU16(tlvData) + t.data, tlvData, ok3 = getNBytes(tlvData, int(t.length)) + if !ok1 || !ok2 || !ok3 { + err = errors.New("otr: corrupt tlv data") + } + tlvs = append(tlvs, t) + } + } else { + out = decrypted + } + + return +} + +func (c *Conversation) generateData(msg []byte, extra *tlv) []byte { + slot, err := c.calcDataKeys(c.myKeyId-1, c.theirKeyId) + if err != nil { + panic("otr: failed to generate sending keys: " + err.Error()) + } + + var plaintext []byte + plaintext = append(plaintext, msg...) + plaintext = append(plaintext, 0) + + padding := paddingGranularity - ((len(plaintext) + 4) % paddingGranularity) + plaintext = appendU16(plaintext, tlvTypePadding) + plaintext = appendU16(plaintext, uint16(padding)) + for i := 0; i < padding; i++ { + plaintext = append(plaintext, 0) + } + + if extra != nil { + plaintext = appendU16(plaintext, extra.typ) + plaintext = appendU16(plaintext, uint16(len(extra.data))) + plaintext = append(plaintext, extra.data...) + } + + encrypted := make([]byte, len(plaintext)) + + var iv [aes.BlockSize]byte + copy(iv[:], c.myCounter[:]) + aesCipher, err := aes.NewCipher(slot.sendAESKey) + if err != nil { + panic(err.Error()) + } + ctr := cipher.NewCTR(aesCipher, iv[:]) + ctr.XORKeyStream(encrypted, plaintext) + + var ret []byte + ret = appendU16(ret, 2) + ret = append(ret, msgTypeData) + ret = append(ret, 0 /* flags */) + ret = appendU32(ret, c.myKeyId-1) + ret = appendU32(ret, c.theirKeyId) + ret = appendMPI(ret, c.myCurrentDHPub) + ret = append(ret, c.myCounter[:]...) + ret = appendData(ret, encrypted) + + mac := hmac.New(sha1.New, slot.sendMACKey) + mac.Write(ret) + ret = append(ret, mac.Sum(nil)[:macPrefixBytes]...) + ret = appendData(ret, c.oldMACs) + c.oldMACs = nil + incCounter(&c.myCounter) + + return ret +} + +func incCounter(counter *[8]byte) { + for i := 7; i >= 0; i-- { + counter[i]++ + if counter[i] > 0 { + break + } + } +} + +// calcDataKeys computes the keys used to encrypt a data message given the key +// IDs. +func (c *Conversation) calcDataKeys(myKeyId, theirKeyId uint32) (slot *keySlot, err error) { + // Check for a cache hit. + for i := range c.keySlots { + slot = &c.keySlots[i] + if slot.used && slot.theirKeyId == theirKeyId && slot.myKeyId == myKeyId { + return + } + } + + // Find an empty slot to write into. + slot = nil + for i := range c.keySlots { + if !c.keySlots[i].used { + slot = &c.keySlots[i] + break + } + } + if slot == nil { + err = errors.New("otr: internal error: no key slots") + return + } + + var myPriv, myPub, theirPub *big.Int + + if myKeyId == c.myKeyId { + myPriv = c.myCurrentDHPriv + myPub = c.myCurrentDHPub + } else if myKeyId == c.myKeyId-1 { + myPriv = c.myLastDHPriv + myPub = c.myLastDHPub + } else { + err = errors.New("otr: peer requested keyid " + strconv.FormatUint(uint64(myKeyId), 10) + " when I'm on " + strconv.FormatUint(uint64(c.myKeyId), 10)) + return + } + + if theirKeyId == c.theirKeyId { + theirPub = c.theirCurrentDHPub + } else if theirKeyId == c.theirKeyId-1 && c.theirLastDHPub != nil { + theirPub = c.theirLastDHPub + } else { + err = errors.New("otr: peer requested keyid " + strconv.FormatUint(uint64(myKeyId), 10) + " when they're on " + strconv.FormatUint(uint64(c.myKeyId), 10)) + return + } + + var sendPrefixByte, recvPrefixByte [1]byte + + if myPub.Cmp(theirPub) > 0 { + // we're the high end + sendPrefixByte[0], recvPrefixByte[0] = 1, 2 + } else { + // we're the low end + sendPrefixByte[0], recvPrefixByte[0] = 2, 1 + } + + s := new(big.Int).Exp(theirPub, myPriv, p) + sBytes := appendMPI(nil, s) + + h := sha1.New() + h.Write(sendPrefixByte[:]) + h.Write(sBytes) + slot.sendAESKey = h.Sum(slot.sendAESKey[:0])[:16] + + h.Reset() + h.Write(slot.sendAESKey) + slot.sendMACKey = h.Sum(slot.sendMACKey[:0]) + + h.Reset() + h.Write(recvPrefixByte[:]) + h.Write(sBytes) + slot.recvAESKey = h.Sum(slot.recvAESKey[:0])[:16] + + h.Reset() + h.Write(slot.recvAESKey) + slot.recvMACKey = h.Sum(slot.recvMACKey[:0]) + + zero(slot.theirLastCtr[:]) + return +} + +func (c *Conversation) calcAKEKeys(s *big.Int) { + mpi := appendMPI(nil, s) + h := sha256.New() + + var cBytes [32]byte + hashWithPrefix(c.SSID[:], 0, mpi, h) + + hashWithPrefix(cBytes[:], 1, mpi, h) + copy(c.revealKeys.c[:], cBytes[:16]) + copy(c.sigKeys.c[:], cBytes[16:]) + + hashWithPrefix(c.revealKeys.m1[:], 2, mpi, h) + hashWithPrefix(c.revealKeys.m2[:], 3, mpi, h) + hashWithPrefix(c.sigKeys.m1[:], 4, mpi, h) + hashWithPrefix(c.sigKeys.m2[:], 5, mpi, h) +} + +func hashWithPrefix(out []byte, prefix byte, in []byte, h hash.Hash) { + h.Reset() + var p [1]byte + p[0] = prefix + h.Write(p[:]) + h.Write(in) + if len(out) == h.Size() { + h.Sum(out[:0]) + } else { + digest := h.Sum(nil) + copy(out, digest) + } +} + +func (c *Conversation) encode(msg []byte) [][]byte { + b64 := make([]byte, base64.StdEncoding.EncodedLen(len(msg))+len(msgPrefix)+1) + base64.StdEncoding.Encode(b64[len(msgPrefix):], msg) + copy(b64, msgPrefix) + b64[len(b64)-1] = '.' + + if c.FragmentSize < minFragmentSize || len(b64) <= c.FragmentSize { + // We can encode this in a single fragment. + return [][]byte{b64} + } + + // We have to fragment this message. + var ret [][]byte + bytesPerFragment := c.FragmentSize - minFragmentSize + numFragments := (len(b64) + bytesPerFragment) / bytesPerFragment + + for i := 0; i < numFragments; i++ { + frag := []byte("?OTR," + strconv.Itoa(i+1) + "," + strconv.Itoa(numFragments) + ",") + todo := bytesPerFragment + if todo > len(b64) { + todo = len(b64) + } + frag = append(frag, b64[:todo]...) + b64 = b64[todo:] + frag = append(frag, ',') + ret = append(ret, frag) + } + + return ret +} + +type PublicKey struct { + dsa.PublicKey +} + +func (pk *PublicKey) Parse(in []byte) ([]byte, bool) { + var ok bool + var pubKeyType uint16 + + if pubKeyType, in, ok = getU16(in); !ok || pubKeyType != 0 { + return nil, false + } + if pk.P, in, ok = getMPI(in); !ok { + return nil, false + } + if pk.Q, in, ok = getMPI(in); !ok { + return nil, false + } + if pk.G, in, ok = getMPI(in); !ok { + return nil, false + } + if pk.Y, in, ok = getMPI(in); !ok { + return nil, false + } + + return in, true +} + +func (pk *PublicKey) Serialize(in []byte) []byte { + in = appendU16(in, 0) + in = appendMPI(in, pk.P) + in = appendMPI(in, pk.Q) + in = appendMPI(in, pk.G) + in = appendMPI(in, pk.Y) + return in +} + +// Fingerprint returns the 20-byte, binary fingerprint of the PublicKey. +func (pk *PublicKey) Fingerprint() []byte { + b := pk.Serialize(nil) + h := sha1.New() + h.Write(b[2:]) + return h.Sum(nil) +} + +func (pk *PublicKey) Verify(hashed, sig []byte) ([]byte, bool) { + if len(sig) != 2*dsaSubgroupBytes { + return nil, false + } + r := new(big.Int).SetBytes(sig[:dsaSubgroupBytes]) + s := new(big.Int).SetBytes(sig[dsaSubgroupBytes:]) + ok := dsa.Verify(&pk.PublicKey, hashed, r, s) + return sig[dsaSubgroupBytes*2:], ok +} + +type PrivateKey struct { + PublicKey + dsa.PrivateKey +} + +func (priv *PrivateKey) Sign(rand io.Reader, hashed []byte) []byte { + r, s, err := dsa.Sign(rand, &priv.PrivateKey, hashed) + if err != nil { + panic(err.Error()) + } + rBytes := r.Bytes() + sBytes := s.Bytes() + if len(rBytes) > dsaSubgroupBytes || len(sBytes) > dsaSubgroupBytes { + panic("DSA signature too large") + } + + out := make([]byte, 2*dsaSubgroupBytes) + copy(out[dsaSubgroupBytes-len(rBytes):], rBytes) + copy(out[len(out)-len(sBytes):], sBytes) + return out +} + +func (priv *PrivateKey) Serialize(in []byte) []byte { + in = priv.PublicKey.Serialize(in) + in = appendMPI(in, priv.PrivateKey.X) + return in +} + +func (priv *PrivateKey) Parse(in []byte) ([]byte, bool) { + in, ok := priv.PublicKey.Parse(in) + if !ok { + return in, ok + } + priv.PrivateKey.PublicKey = priv.PublicKey.PublicKey + priv.PrivateKey.X, in, ok = getMPI(in) + return in, ok +} + +func (priv *PrivateKey) Generate(rand io.Reader) { + if err := dsa.GenerateParameters(&priv.PrivateKey.PublicKey.Parameters, rand, dsa.L1024N160); err != nil { + panic(err.Error()) + } + if err := dsa.GenerateKey(&priv.PrivateKey, rand); err != nil { + panic(err.Error()) + } + priv.PublicKey.PublicKey = priv.PrivateKey.PublicKey +} + +func notHex(r rune) bool { + if r >= '0' && r <= '9' || + r >= 'a' && r <= 'f' || + r >= 'A' && r <= 'F' { + return false + } + + return true +} + +// Import parses the contents of a libotr private key file. +func (priv *PrivateKey) Import(in []byte) bool { + mpiStart := []byte(" #") + + mpis := make([]*big.Int, 5) + + for i := 0; i < len(mpis); i++ { + start := bytes.Index(in, mpiStart) + if start == -1 { + return false + } + in = in[start+len(mpiStart):] + end := bytes.IndexFunc(in, notHex) + if end == -1 { + return false + } + hexBytes := in[:end] + in = in[end:] + + if len(hexBytes)&1 != 0 { + return false + } + + mpiBytes := make([]byte, len(hexBytes)/2) + if _, err := hex.Decode(mpiBytes, hexBytes); err != nil { + return false + } + + mpis[i] = new(big.Int).SetBytes(mpiBytes) + } + + priv.PrivateKey.P = mpis[0] + priv.PrivateKey.Q = mpis[1] + priv.PrivateKey.G = mpis[2] + priv.PrivateKey.Y = mpis[3] + priv.PrivateKey.X = mpis[4] + priv.PublicKey.PublicKey = priv.PrivateKey.PublicKey + + a := new(big.Int).Exp(priv.PrivateKey.G, priv.PrivateKey.X, priv.PrivateKey.P) + return a.Cmp(priv.PrivateKey.Y) == 0 +} + +func getU8(in []byte) (uint8, []byte, bool) { + if len(in) < 1 { + return 0, in, false + } + return in[0], in[1:], true +} + +func getU16(in []byte) (uint16, []byte, bool) { + if len(in) < 2 { + return 0, in, false + } + r := uint16(in[0])<<8 | uint16(in[1]) + return r, in[2:], true +} + +func getU32(in []byte) (uint32, []byte, bool) { + if len(in) < 4 { + return 0, in, false + } + r := uint32(in[0])<<24 | uint32(in[1])<<16 | uint32(in[2])<<8 | uint32(in[3]) + return r, in[4:], true +} + +func getMPI(in []byte) (*big.Int, []byte, bool) { + l, in, ok := getU32(in) + if !ok || uint32(len(in)) < l { + return nil, in, false + } + r := new(big.Int).SetBytes(in[:l]) + return r, in[l:], true +} + +func getData(in []byte) ([]byte, []byte, bool) { + l, in, ok := getU32(in) + if !ok || uint32(len(in)) < l { + return nil, in, false + } + return in[:l], in[l:], true +} + +func getNBytes(in []byte, n int) ([]byte, []byte, bool) { + if len(in) < n { + return nil, in, false + } + return in[:n], in[n:], true +} + +func appendU16(out []byte, v uint16) []byte { + out = append(out, byte(v>>8), byte(v)) + return out +} + +func appendU32(out []byte, v uint32) []byte { + out = append(out, byte(v>>24), byte(v>>16), byte(v>>8), byte(v)) + return out +} + +func appendData(out, v []byte) []byte { + out = appendU32(out, uint32(len(v))) + out = append(out, v...) + return out +} + +func appendMPI(out []byte, v *big.Int) []byte { + vBytes := v.Bytes() + out = appendU32(out, uint32(len(vBytes))) + out = append(out, vBytes...) + return out +} + +func appendMPIs(out []byte, mpis ...*big.Int) []byte { + for _, mpi := range mpis { + out = appendMPI(out, mpi) + } + return out +} + +func zero(b []byte) { + for i := range b { + b[i] = 0 + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/otr_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/otr_test.go new file mode 100644 index 00000000..1e2bbfc8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/otr_test.go @@ -0,0 +1,368 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package otr + +import ( + "bufio" + "bytes" + "crypto/rand" + "encoding/hex" + "math/big" + "os" + "os/exec" + "testing" +) + +var isQueryTests = []struct { + msg string + expectedVersion int +}{ + {"foo", 0}, + {"?OtR", 0}, + {"?OtR?", 0}, + {"?OTR?", 0}, + {"?OTRv?", 0}, + {"?OTRv1?", 0}, + {"?OTR?v1?", 0}, + {"?OTR?v?", 0}, + {"?OTR?v2?", 2}, + {"?OTRv2?", 2}, + {"?OTRv23?", 2}, + {"?OTRv23 ?", 0}, +} + +func TestIsQuery(t *testing.T) { + for i, test := range isQueryTests { + version := isQuery([]byte(test.msg)) + if version != test.expectedVersion { + t.Errorf("#%d: got %d, want %d", i, version, test.expectedVersion) + } + } +} + +var alicePrivateKeyHex = "000000000080c81c2cb2eb729b7e6fd48e975a932c638b3a9055478583afa46755683e30102447f6da2d8bec9f386bbb5da6403b0040fee8650b6ab2d7f32c55ab017ae9b6aec8c324ab5844784e9a80e194830d548fb7f09a0410df2c4d5c8bc2b3e9ad484e65412be689cf0834694e0839fb2954021521ffdffb8f5c32c14dbf2020b3ce7500000014da4591d58def96de61aea7b04a8405fe1609308d000000808ddd5cb0b9d66956e3dea5a915d9aba9d8a6e7053b74dadb2fc52f9fe4e5bcc487d2305485ed95fed026ad93f06ebb8c9e8baf693b7887132c7ffdd3b0f72f4002ff4ed56583ca7c54458f8c068ca3e8a4dfa309d1dd5d34e2a4b68e6f4338835e5e0fb4317c9e4c7e4806dafda3ef459cd563775a586dd91b1319f72621bf3f00000080b8147e74d8c45e6318c37731b8b33b984a795b3653c2cd1d65cc99efe097cb7eb2fa49569bab5aab6e8a1c261a27d0f7840a5e80b317e6683042b59b6dceca2879c6ffc877a465be690c15e4a42f9a7588e79b10faac11b1ce3741fcef7aba8ce05327a2c16d279ee1b3d77eb783fb10e3356caa25635331e26dd42b8396c4d00000001420bec691fea37ecea58a5c717142f0b804452f57" + +var aliceFingerprintHex = "0bb01c360424522e94ee9c346ce877a1a4288b2f" + +var bobPrivateKeyHex = "000000000080a5138eb3d3eb9c1d85716faecadb718f87d31aaed1157671d7fee7e488f95e8e0ba60ad449ec732710a7dec5190f7182af2e2f98312d98497221dff160fd68033dd4f3a33b7c078d0d9f66e26847e76ca7447d4bab35486045090572863d9e4454777f24d6706f63e02548dfec2d0a620af37bbc1d24f884708a212c343b480d00000014e9c58f0ea21a5e4dfd9f44b6a9f7f6a9961a8fa9000000803c4d111aebd62d3c50c2889d420a32cdf1e98b70affcc1fcf44d59cca2eb019f6b774ef88153fb9b9615441a5fe25ea2d11b74ce922ca0232bd81b3c0fcac2a95b20cb6e6c0c5c1ace2e26f65dc43c751af0edbb10d669890e8ab6beea91410b8b2187af1a8347627a06ecea7e0f772c28aae9461301e83884860c9b656c722f0000008065af8625a555ea0e008cd04743671a3cda21162e83af045725db2eb2bb52712708dc0cc1a84c08b3649b88a966974bde27d8612c2861792ec9f08786a246fcadd6d8d3a81a32287745f309238f47618c2bd7612cb8b02d940571e0f30b96420bcd462ff542901b46109b1e5ad6423744448d20a57818a8cbb1647d0fea3b664e0000001440f9f2eb554cb00d45a5826b54bfa419b6980e48" + +func TestKeySerialization(t *testing.T) { + var priv PrivateKey + alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex) + rest, ok := priv.Parse(alicePrivateKey) + if !ok { + t.Error("failed to parse private key") + } + if len(rest) > 0 { + t.Error("data remaining after parsing private key") + } + + out := priv.Serialize(nil) + if !bytes.Equal(alicePrivateKey, out) { + t.Errorf("serialization (%x) is not equal to original (%x)", out, alicePrivateKey) + } + + aliceFingerprint, _ := hex.DecodeString(aliceFingerprintHex) + fingerprint := priv.PublicKey.Fingerprint() + if !bytes.Equal(aliceFingerprint, fingerprint) { + t.Errorf("fingerprint (%x) is not equal to expected value (%x)", fingerprint, aliceFingerprint) + } +} + +const libOTRPrivateKey = `(privkeys + (account +(name "foo@example.com") +(protocol prpl-jabber) +(private-key + (dsa + (p #00FC07ABCF0DC916AFF6E9AE47BEF60C7AB9B4D6B2469E436630E36F8A489BE812486A09F30B71224508654940A835301ACC525A4FF133FC152CC53DCC59D65C30A54F1993FE13FE63E5823D4C746DB21B90F9B9C00B49EC7404AB1D929BA7FBA12F2E45C6E0A651689750E8528AB8C031D3561FECEE72EBB4A090D450A9B7A857#) + (q #00997BD266EF7B1F60A5C23F3A741F2AEFD07A2081#) + (g #535E360E8A95EBA46A4F7DE50AD6E9B2A6DB785A66B64EB9F20338D2A3E8FB0E94725848F1AA6CC567CB83A1CC517EC806F2E92EAE71457E80B2210A189B91250779434B41FC8A8873F6DB94BEA7D177F5D59E7E114EE10A49CFD9CEF88AE43387023B672927BA74B04EB6BBB5E57597766A2F9CE3857D7ACE3E1E3BC1FC6F26#) + (y #0AC8670AD767D7A8D9D14CC1AC6744CD7D76F993B77FFD9E39DF01E5A6536EF65E775FCEF2A983E2A19BD6415500F6979715D9FD1257E1FE2B6F5E1E74B333079E7C880D39868462A93454B41877BE62E5EF0A041C2EE9C9E76BD1E12AE25D9628DECB097025DD625EF49C3258A1A3C0FF501E3DC673B76D7BABF349009B6ECF#) + (x #14D0345A3562C480A039E3C72764F72D79043216#) + ) + ) + ) +)` + +func TestParseLibOTRPrivateKey(t *testing.T) { + var priv PrivateKey + + if !priv.Import([]byte(libOTRPrivateKey)) { + t.Fatalf("Failed to import sample private key") + } +} + +func TestSignVerify(t *testing.T) { + var priv PrivateKey + alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex) + _, ok := priv.Parse(alicePrivateKey) + if !ok { + t.Error("failed to parse private key") + } + + var msg [32]byte + rand.Reader.Read(msg[:]) + + sig := priv.Sign(rand.Reader, msg[:]) + rest, ok := priv.PublicKey.Verify(msg[:], sig) + if !ok { + t.Errorf("signature (%x) of %x failed to verify", sig, msg[:]) + } else if len(rest) > 0 { + t.Error("signature data remains after verification") + } + + sig[10] ^= 80 + _, ok = priv.PublicKey.Verify(msg[:], sig) + if ok { + t.Errorf("corrupted signature (%x) of %x verified", sig, msg[:]) + } +} + +func TestConversation(t *testing.T) { + alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex) + bobPrivateKey, _ := hex.DecodeString(bobPrivateKeyHex) + + var alice, bob Conversation + alice.PrivateKey = new(PrivateKey) + bob.PrivateKey = new(PrivateKey) + alice.PrivateKey.Parse(alicePrivateKey) + bob.PrivateKey.Parse(bobPrivateKey) + alice.FragmentSize = 100 + bob.FragmentSize = 100 + + var alicesMessage, bobsMessage [][]byte + var out []byte + var aliceChange, bobChange SecurityChange + var err error + alicesMessage = append(alicesMessage, []byte(QueryMessage)) + + if alice.IsEncrypted() { + t.Error("Alice believes that the conversation is secure before we've started") + } + if bob.IsEncrypted() { + t.Error("Bob believes that the conversation is secure before we've started") + } + + for round := 0; len(alicesMessage) > 0 || len(bobsMessage) > 0; round++ { + bobsMessage = nil + for i, msg := range alicesMessage { + out, _, bobChange, bobsMessage, err = bob.Receive(msg) + if len(out) > 0 { + t.Errorf("Bob generated output during key exchange, round %d, message %d", round, i) + } + if err != nil { + t.Fatalf("Bob returned an error, round %d, message %d (%x): %s", round, i, msg, err) + } + if len(bobsMessage) > 0 && i != len(alicesMessage)-1 { + t.Errorf("Bob produced output while processing a fragment, round %d, message %d", round, i) + } + } + + alicesMessage = nil + for i, msg := range bobsMessage { + out, _, aliceChange, alicesMessage, err = alice.Receive(msg) + if len(out) > 0 { + t.Errorf("Alice generated output during key exchange, round %d, message %d", round, i) + } + if err != nil { + t.Fatalf("Alice returned an error, round %d, message %d (%x): %s", round, i, msg, err) + } + if len(alicesMessage) > 0 && i != len(bobsMessage)-1 { + t.Errorf("Alice produced output while processing a fragment, round %d, message %d", round, i) + } + } + } + + if aliceChange != NewKeys { + t.Errorf("Alice terminated without signaling new keys") + } + if bobChange != NewKeys { + t.Errorf("Bob terminated without signaling new keys") + } + + if !bytes.Equal(alice.SSID[:], bob.SSID[:]) { + t.Errorf("Session identifiers don't match. Alice has %x, Bob has %x", alice.SSID[:], bob.SSID[:]) + } + + if !alice.IsEncrypted() { + t.Error("Alice doesn't believe that the conversation is secure") + } + if !bob.IsEncrypted() { + t.Error("Bob doesn't believe that the conversation is secure") + } + + var testMessage = []byte("hello Bob") + alicesMessage, err = alice.Send(testMessage) + for i, msg := range alicesMessage { + out, encrypted, _, _, err := bob.Receive(msg) + if err != nil { + t.Errorf("Error generated while processing test message: %s", err.Error()) + } + if len(out) > 0 { + if i != len(alicesMessage)-1 { + t.Fatal("Bob produced a message while processing a fragment of Alice's") + } + if !encrypted { + t.Errorf("Message was not marked as encrypted") + } + if !bytes.Equal(out, testMessage) { + t.Errorf("Message corrupted: got %x, want %x", out, testMessage) + } + } + } +} + +func TestGoodSMP(t *testing.T) { + var alice, bob Conversation + + alice.smp.secret = new(big.Int).SetInt64(42) + bob.smp.secret = alice.smp.secret + + var alicesMessages, bobsMessages []tlv + var aliceComplete, bobComplete bool + var err error + var out tlv + + alicesMessages = alice.startSMP("") + for round := 0; len(alicesMessages) > 0 || len(bobsMessages) > 0; round++ { + bobsMessages = bobsMessages[:0] + for i, msg := range alicesMessages { + out, bobComplete, err = bob.processSMP(msg) + if err != nil { + t.Errorf("Error from Bob in round %d: %s", round, err) + } + if bobComplete && i != len(alicesMessages)-1 { + t.Errorf("Bob returned a completed signal before processing all of Alice's messages in round %d", round) + } + if out.typ != 0 { + bobsMessages = append(bobsMessages, out) + } + } + + alicesMessages = alicesMessages[:0] + for i, msg := range bobsMessages { + out, aliceComplete, err = alice.processSMP(msg) + if err != nil { + t.Errorf("Error from Alice in round %d: %s", round, err) + } + if aliceComplete && i != len(bobsMessages)-1 { + t.Errorf("Alice returned a completed signal before processing all of Bob's messages in round %d", round) + } + if out.typ != 0 { + alicesMessages = append(alicesMessages, out) + } + } + } + + if !aliceComplete || !bobComplete { + t.Errorf("SMP completed without both sides reporting success: alice: %v, bob: %v\n", aliceComplete, bobComplete) + } +} + +func TestBadSMP(t *testing.T) { + var alice, bob Conversation + + alice.smp.secret = new(big.Int).SetInt64(42) + bob.smp.secret = new(big.Int).SetInt64(43) + + var alicesMessages, bobsMessages []tlv + + alicesMessages = alice.startSMP("") + for round := 0; len(alicesMessages) > 0 || len(bobsMessages) > 0; round++ { + bobsMessages = bobsMessages[:0] + for _, msg := range alicesMessages { + out, complete, _ := bob.processSMP(msg) + if complete { + t.Errorf("Bob signaled completion in round %d", round) + } + if out.typ != 0 { + bobsMessages = append(bobsMessages, out) + } + } + + alicesMessages = alicesMessages[:0] + for _, msg := range bobsMessages { + out, complete, _ := alice.processSMP(msg) + if complete { + t.Errorf("Alice signaled completion in round %d", round) + } + if out.typ != 0 { + alicesMessages = append(alicesMessages, out) + } + } + } +} + +func TestAgainstLibOTR(t *testing.T) { + // This test requires otr.c.test to be built as /tmp/a.out. + // If enabled, this tests runs forever performing OTR handshakes in a + // loop. + return + + alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex) + var alice Conversation + alice.PrivateKey = new(PrivateKey) + alice.PrivateKey.Parse(alicePrivateKey) + + cmd := exec.Command("/tmp/a.out") + cmd.Stderr = os.Stderr + + out, err := cmd.StdinPipe() + if err != nil { + t.Fatal(err) + } + defer out.Close() + stdout, err := cmd.StdoutPipe() + if err != nil { + t.Fatal(err) + } + in := bufio.NewReader(stdout) + + if err := cmd.Start(); err != nil { + t.Fatal(err) + } + + out.Write([]byte(QueryMessage)) + out.Write([]byte("\n")) + var expectedText = []byte("test message") + + for { + line, isPrefix, err := in.ReadLine() + if isPrefix { + t.Fatal("line from subprocess too long") + } + if err != nil { + t.Fatal(err) + } + text, encrypted, change, alicesMessage, err := alice.Receive(line) + if err != nil { + t.Fatal(err) + } + for _, msg := range alicesMessage { + out.Write(msg) + out.Write([]byte("\n")) + } + if change == NewKeys { + alicesMessage, err := alice.Send([]byte("Go -> libotr test message")) + if err != nil { + t.Errorf("error sending message: %s", err.Error()) + } else { + for _, msg := range alicesMessage { + out.Write(msg) + out.Write([]byte("\n")) + } + } + } + if len(text) > 0 { + if !bytes.Equal(text, expectedText) { + t.Errorf("expected %x, but got %x", expectedText, text) + } + if !encrypted { + t.Error("message wasn't encrypted") + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/smp.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/smp.go new file mode 100644 index 00000000..dc6de4ee --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/otr/smp.go @@ -0,0 +1,572 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements the Socialist Millionaires Protocol as described in +// http://www.cypherpunks.ca/otr/Protocol-v2-3.1.0.html. The protocol +// specification is required in order to understand this code and, where +// possible, the variable names in the code match up with the spec. + +package otr + +import ( + "bytes" + "crypto/sha256" + "errors" + "hash" + "math/big" +) + +type smpFailure string + +func (s smpFailure) Error() string { + return string(s) +} + +var smpFailureError = smpFailure("otr: SMP protocol failed") +var smpSecretMissingError = smpFailure("otr: mutual secret needed") + +const smpVersion = 1 + +const ( + smpState1 = iota + smpState2 + smpState3 + smpState4 +) + +type smpState struct { + state int + a2, a3, b2, b3, pb, qb *big.Int + g2a, g3a *big.Int + g2, g3 *big.Int + g3b, papb, qaqb, ra *big.Int + saved *tlv + secret *big.Int + question string +} + +func (c *Conversation) startSMP(question string) (tlvs []tlv) { + if c.smp.state != smpState1 { + tlvs = append(tlvs, c.generateSMPAbort()) + } + tlvs = append(tlvs, c.generateSMP1(question)) + c.smp.question = "" + c.smp.state = smpState2 + return +} + +func (c *Conversation) resetSMP() { + c.smp.state = smpState1 + c.smp.secret = nil + c.smp.question = "" +} + +func (c *Conversation) processSMP(in tlv) (out tlv, complete bool, err error) { + data := in.data + + switch in.typ { + case tlvTypeSMPAbort: + if c.smp.state != smpState1 { + err = smpFailureError + } + c.resetSMP() + return + case tlvTypeSMP1WithQuestion: + // We preprocess this into a SMP1 message. + nulPos := bytes.IndexByte(data, 0) + if nulPos == -1 { + err = errors.New("otr: SMP message with question didn't contain a NUL byte") + return + } + c.smp.question = string(data[:nulPos]) + data = data[nulPos+1:] + } + + numMPIs, data, ok := getU32(data) + if !ok || numMPIs > 20 { + err = errors.New("otr: corrupt SMP message") + return + } + + mpis := make([]*big.Int, numMPIs) + for i := range mpis { + var ok bool + mpis[i], data, ok = getMPI(data) + if !ok { + err = errors.New("otr: corrupt SMP message") + return + } + } + + switch in.typ { + case tlvTypeSMP1, tlvTypeSMP1WithQuestion: + if c.smp.state != smpState1 { + c.resetSMP() + out = c.generateSMPAbort() + return + } + if c.smp.secret == nil { + err = smpSecretMissingError + return + } + if err = c.processSMP1(mpis); err != nil { + return + } + c.smp.state = smpState3 + out = c.generateSMP2() + case tlvTypeSMP2: + if c.smp.state != smpState2 { + c.resetSMP() + out = c.generateSMPAbort() + return + } + if out, err = c.processSMP2(mpis); err != nil { + out = c.generateSMPAbort() + return + } + c.smp.state = smpState4 + case tlvTypeSMP3: + if c.smp.state != smpState3 { + c.resetSMP() + out = c.generateSMPAbort() + return + } + if out, err = c.processSMP3(mpis); err != nil { + return + } + c.smp.state = smpState1 + c.smp.secret = nil + complete = true + case tlvTypeSMP4: + if c.smp.state != smpState4 { + c.resetSMP() + out = c.generateSMPAbort() + return + } + if err = c.processSMP4(mpis); err != nil { + out = c.generateSMPAbort() + return + } + c.smp.state = smpState1 + c.smp.secret = nil + complete = true + default: + panic("unknown SMP message") + } + + return +} + +func (c *Conversation) calcSMPSecret(mutualSecret []byte, weStarted bool) { + h := sha256.New() + h.Write([]byte{smpVersion}) + if weStarted { + h.Write(c.PrivateKey.PublicKey.Fingerprint()) + h.Write(c.TheirPublicKey.Fingerprint()) + } else { + h.Write(c.TheirPublicKey.Fingerprint()) + h.Write(c.PrivateKey.PublicKey.Fingerprint()) + } + h.Write(c.SSID[:]) + h.Write(mutualSecret) + c.smp.secret = new(big.Int).SetBytes(h.Sum(nil)) +} + +func (c *Conversation) generateSMP1(question string) tlv { + var randBuf [16]byte + c.smp.a2 = c.randMPI(randBuf[:]) + c.smp.a3 = c.randMPI(randBuf[:]) + g2a := new(big.Int).Exp(g, c.smp.a2, p) + g3a := new(big.Int).Exp(g, c.smp.a3, p) + h := sha256.New() + + r2 := c.randMPI(randBuf[:]) + r := new(big.Int).Exp(g, r2, p) + c2 := new(big.Int).SetBytes(hashMPIs(h, 1, r)) + d2 := new(big.Int).Mul(c.smp.a2, c2) + d2.Sub(r2, d2) + d2.Mod(d2, q) + if d2.Sign() < 0 { + d2.Add(d2, q) + } + + r3 := c.randMPI(randBuf[:]) + r.Exp(g, r3, p) + c3 := new(big.Int).SetBytes(hashMPIs(h, 2, r)) + d3 := new(big.Int).Mul(c.smp.a3, c3) + d3.Sub(r3, d3) + d3.Mod(d3, q) + if d3.Sign() < 0 { + d3.Add(d3, q) + } + + var ret tlv + if len(question) > 0 { + ret.typ = tlvTypeSMP1WithQuestion + ret.data = append(ret.data, question...) + ret.data = append(ret.data, 0) + } else { + ret.typ = tlvTypeSMP1 + } + ret.data = appendU32(ret.data, 6) + ret.data = appendMPIs(ret.data, g2a, c2, d2, g3a, c3, d3) + return ret +} + +func (c *Conversation) processSMP1(mpis []*big.Int) error { + if len(mpis) != 6 { + return errors.New("otr: incorrect number of arguments in SMP1 message") + } + g2a := mpis[0] + c2 := mpis[1] + d2 := mpis[2] + g3a := mpis[3] + c3 := mpis[4] + d3 := mpis[5] + h := sha256.New() + + r := new(big.Int).Exp(g, d2, p) + s := new(big.Int).Exp(g2a, c2, p) + r.Mul(r, s) + r.Mod(r, p) + t := new(big.Int).SetBytes(hashMPIs(h, 1, r)) + if c2.Cmp(t) != 0 { + return errors.New("otr: ZKP c2 incorrect in SMP1 message") + } + r.Exp(g, d3, p) + s.Exp(g3a, c3, p) + r.Mul(r, s) + r.Mod(r, p) + t.SetBytes(hashMPIs(h, 2, r)) + if c3.Cmp(t) != 0 { + return errors.New("otr: ZKP c3 incorrect in SMP1 message") + } + + c.smp.g2a = g2a + c.smp.g3a = g3a + return nil +} + +func (c *Conversation) generateSMP2() tlv { + var randBuf [16]byte + b2 := c.randMPI(randBuf[:]) + c.smp.b3 = c.randMPI(randBuf[:]) + r2 := c.randMPI(randBuf[:]) + r3 := c.randMPI(randBuf[:]) + r4 := c.randMPI(randBuf[:]) + r5 := c.randMPI(randBuf[:]) + r6 := c.randMPI(randBuf[:]) + + g2b := new(big.Int).Exp(g, b2, p) + g3b := new(big.Int).Exp(g, c.smp.b3, p) + + r := new(big.Int).Exp(g, r2, p) + h := sha256.New() + c2 := new(big.Int).SetBytes(hashMPIs(h, 3, r)) + d2 := new(big.Int).Mul(b2, c2) + d2.Sub(r2, d2) + d2.Mod(d2, q) + if d2.Sign() < 0 { + d2.Add(d2, q) + } + + r.Exp(g, r3, p) + c3 := new(big.Int).SetBytes(hashMPIs(h, 4, r)) + d3 := new(big.Int).Mul(c.smp.b3, c3) + d3.Sub(r3, d3) + d3.Mod(d3, q) + if d3.Sign() < 0 { + d3.Add(d3, q) + } + + c.smp.g2 = new(big.Int).Exp(c.smp.g2a, b2, p) + c.smp.g3 = new(big.Int).Exp(c.smp.g3a, c.smp.b3, p) + c.smp.pb = new(big.Int).Exp(c.smp.g3, r4, p) + c.smp.qb = new(big.Int).Exp(g, r4, p) + r.Exp(c.smp.g2, c.smp.secret, p) + c.smp.qb.Mul(c.smp.qb, r) + c.smp.qb.Mod(c.smp.qb, p) + + s := new(big.Int) + s.Exp(c.smp.g2, r6, p) + r.Exp(g, r5, p) + s.Mul(r, s) + s.Mod(s, p) + r.Exp(c.smp.g3, r5, p) + cp := new(big.Int).SetBytes(hashMPIs(h, 5, r, s)) + + // D5 = r5 - r4 cP mod q and D6 = r6 - y cP mod q + + s.Mul(r4, cp) + r.Sub(r5, s) + d5 := new(big.Int).Mod(r, q) + if d5.Sign() < 0 { + d5.Add(d5, q) + } + + s.Mul(c.smp.secret, cp) + r.Sub(r6, s) + d6 := new(big.Int).Mod(r, q) + if d6.Sign() < 0 { + d6.Add(d6, q) + } + + var ret tlv + ret.typ = tlvTypeSMP2 + ret.data = appendU32(ret.data, 11) + ret.data = appendMPIs(ret.data, g2b, c2, d2, g3b, c3, d3, c.smp.pb, c.smp.qb, cp, d5, d6) + return ret +} + +func (c *Conversation) processSMP2(mpis []*big.Int) (out tlv, err error) { + if len(mpis) != 11 { + err = errors.New("otr: incorrect number of arguments in SMP2 message") + return + } + g2b := mpis[0] + c2 := mpis[1] + d2 := mpis[2] + g3b := mpis[3] + c3 := mpis[4] + d3 := mpis[5] + pb := mpis[6] + qb := mpis[7] + cp := mpis[8] + d5 := mpis[9] + d6 := mpis[10] + h := sha256.New() + + r := new(big.Int).Exp(g, d2, p) + s := new(big.Int).Exp(g2b, c2, p) + r.Mul(r, s) + r.Mod(r, p) + s.SetBytes(hashMPIs(h, 3, r)) + if c2.Cmp(s) != 0 { + err = errors.New("otr: ZKP c2 failed in SMP2 message") + return + } + + r.Exp(g, d3, p) + s.Exp(g3b, c3, p) + r.Mul(r, s) + r.Mod(r, p) + s.SetBytes(hashMPIs(h, 4, r)) + if c3.Cmp(s) != 0 { + err = errors.New("otr: ZKP c3 failed in SMP2 message") + return + } + + c.smp.g2 = new(big.Int).Exp(g2b, c.smp.a2, p) + c.smp.g3 = new(big.Int).Exp(g3b, c.smp.a3, p) + + r.Exp(g, d5, p) + s.Exp(c.smp.g2, d6, p) + r.Mul(r, s) + s.Exp(qb, cp, p) + r.Mul(r, s) + r.Mod(r, p) + + s.Exp(c.smp.g3, d5, p) + t := new(big.Int).Exp(pb, cp, p) + s.Mul(s, t) + s.Mod(s, p) + t.SetBytes(hashMPIs(h, 5, s, r)) + if cp.Cmp(t) != 0 { + err = errors.New("otr: ZKP cP failed in SMP2 message") + return + } + + var randBuf [16]byte + r4 := c.randMPI(randBuf[:]) + r5 := c.randMPI(randBuf[:]) + r6 := c.randMPI(randBuf[:]) + r7 := c.randMPI(randBuf[:]) + + pa := new(big.Int).Exp(c.smp.g3, r4, p) + r.Exp(c.smp.g2, c.smp.secret, p) + qa := new(big.Int).Exp(g, r4, p) + qa.Mul(qa, r) + qa.Mod(qa, p) + + r.Exp(g, r5, p) + s.Exp(c.smp.g2, r6, p) + r.Mul(r, s) + r.Mod(r, p) + + s.Exp(c.smp.g3, r5, p) + cp.SetBytes(hashMPIs(h, 6, s, r)) + + r.Mul(r4, cp) + d5 = new(big.Int).Sub(r5, r) + d5.Mod(d5, q) + if d5.Sign() < 0 { + d5.Add(d5, q) + } + + r.Mul(c.smp.secret, cp) + d6 = new(big.Int).Sub(r6, r) + d6.Mod(d6, q) + if d6.Sign() < 0 { + d6.Add(d6, q) + } + + r.ModInverse(qb, p) + qaqb := new(big.Int).Mul(qa, r) + qaqb.Mod(qaqb, p) + + ra := new(big.Int).Exp(qaqb, c.smp.a3, p) + r.Exp(qaqb, r7, p) + s.Exp(g, r7, p) + cr := new(big.Int).SetBytes(hashMPIs(h, 7, s, r)) + + r.Mul(c.smp.a3, cr) + d7 := new(big.Int).Sub(r7, r) + d7.Mod(d7, q) + if d7.Sign() < 0 { + d7.Add(d7, q) + } + + c.smp.g3b = g3b + c.smp.qaqb = qaqb + + r.ModInverse(pb, p) + c.smp.papb = new(big.Int).Mul(pa, r) + c.smp.papb.Mod(c.smp.papb, p) + c.smp.ra = ra + + out.typ = tlvTypeSMP3 + out.data = appendU32(out.data, 8) + out.data = appendMPIs(out.data, pa, qa, cp, d5, d6, ra, cr, d7) + return +} + +func (c *Conversation) processSMP3(mpis []*big.Int) (out tlv, err error) { + if len(mpis) != 8 { + err = errors.New("otr: incorrect number of arguments in SMP3 message") + return + } + pa := mpis[0] + qa := mpis[1] + cp := mpis[2] + d5 := mpis[3] + d6 := mpis[4] + ra := mpis[5] + cr := mpis[6] + d7 := mpis[7] + h := sha256.New() + + r := new(big.Int).Exp(g, d5, p) + s := new(big.Int).Exp(c.smp.g2, d6, p) + r.Mul(r, s) + s.Exp(qa, cp, p) + r.Mul(r, s) + r.Mod(r, p) + + s.Exp(c.smp.g3, d5, p) + t := new(big.Int).Exp(pa, cp, p) + s.Mul(s, t) + s.Mod(s, p) + t.SetBytes(hashMPIs(h, 6, s, r)) + if t.Cmp(cp) != 0 { + err = errors.New("otr: ZKP cP failed in SMP3 message") + return + } + + r.ModInverse(c.smp.qb, p) + qaqb := new(big.Int).Mul(qa, r) + qaqb.Mod(qaqb, p) + + r.Exp(qaqb, d7, p) + s.Exp(ra, cr, p) + r.Mul(r, s) + r.Mod(r, p) + + s.Exp(g, d7, p) + t.Exp(c.smp.g3a, cr, p) + s.Mul(s, t) + s.Mod(s, p) + t.SetBytes(hashMPIs(h, 7, s, r)) + if t.Cmp(cr) != 0 { + err = errors.New("otr: ZKP cR failed in SMP3 message") + return + } + + var randBuf [16]byte + r7 := c.randMPI(randBuf[:]) + rb := new(big.Int).Exp(qaqb, c.smp.b3, p) + + r.Exp(qaqb, r7, p) + s.Exp(g, r7, p) + cr = new(big.Int).SetBytes(hashMPIs(h, 8, s, r)) + + r.Mul(c.smp.b3, cr) + d7 = new(big.Int).Sub(r7, r) + d7.Mod(d7, q) + if d7.Sign() < 0 { + d7.Add(d7, q) + } + + out.typ = tlvTypeSMP4 + out.data = appendU32(out.data, 3) + out.data = appendMPIs(out.data, rb, cr, d7) + + r.ModInverse(c.smp.pb, p) + r.Mul(pa, r) + r.Mod(r, p) + s.Exp(ra, c.smp.b3, p) + if r.Cmp(s) != 0 { + err = smpFailureError + } + + return +} + +func (c *Conversation) processSMP4(mpis []*big.Int) error { + if len(mpis) != 3 { + return errors.New("otr: incorrect number of arguments in SMP4 message") + } + rb := mpis[0] + cr := mpis[1] + d7 := mpis[2] + h := sha256.New() + + r := new(big.Int).Exp(c.smp.qaqb, d7, p) + s := new(big.Int).Exp(rb, cr, p) + r.Mul(r, s) + r.Mod(r, p) + + s.Exp(g, d7, p) + t := new(big.Int).Exp(c.smp.g3b, cr, p) + s.Mul(s, t) + s.Mod(s, p) + t.SetBytes(hashMPIs(h, 8, s, r)) + if t.Cmp(cr) != 0 { + return errors.New("otr: ZKP cR failed in SMP4 message") + } + + r.Exp(rb, c.smp.a3, p) + if r.Cmp(c.smp.papb) != 0 { + return smpFailureError + } + + return nil +} + +func (c *Conversation) generateSMPAbort() tlv { + return tlv{typ: tlvTypeSMPAbort} +} + +func hashMPIs(h hash.Hash, magic byte, mpis ...*big.Int) []byte { + if h != nil { + h.Reset() + } else { + h = sha256.New() + } + + h.Write([]byte{magic}) + for _, mpi := range mpis { + h.Write(appendMPI(nil, mpi)) + } + return h.Sum(nil) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/pbkdf2/pbkdf2.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/pbkdf2/pbkdf2.go new file mode 100644 index 00000000..c02b4d5a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/pbkdf2/pbkdf2.go @@ -0,0 +1,77 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package pbkdf2 implements the key derivation function PBKDF2 as defined in RFC +2898 / PKCS #5 v2.0. + +A key derivation function is useful when encrypting data based on a password +or any other not-fully-random data. It uses a pseudorandom function to derive +a secure encryption key based on the password. + +While v2.0 of the standard defines only one pseudorandom function to use, +HMAC-SHA1, the drafted v2.1 specification allows use of all five FIPS Approved +Hash Functions SHA-1, SHA-224, SHA-256, SHA-384 and SHA-512 for HMAC. To +choose, you can pass the `New` functions from the different SHA packages to +pbkdf2.Key. +*/ +package pbkdf2 + +import ( + "crypto/hmac" + "hash" +) + +// Key derives a key from the password, salt and iteration count, returning a +// []byte of length keylen that can be used as cryptographic key. The key is +// derived based on the method described as PBKDF2 with the HMAC variant using +// the supplied hash function. +// +// For example, to use a HMAC-SHA-1 based PBKDF2 key derivation function, you +// can get a derived key for e.g. AES-256 (which needs a 32-byte key) by +// doing: +// +// dk := pbkdf2.Key([]byte("some password"), salt, 4096, 32, sha1.New) +// +// Remember to get a good random salt. At least 8 bytes is recommended by the +// RFC. +// +// Using a higher iteration count will increase the cost of an exhaustive +// search but will also make derivation proportionally slower. +func Key(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte { + prf := hmac.New(h, password) + hashLen := prf.Size() + numBlocks := (keyLen + hashLen - 1) / hashLen + + var buf [4]byte + dk := make([]byte, 0, numBlocks*hashLen) + U := make([]byte, hashLen) + for block := 1; block <= numBlocks; block++ { + // N.B.: || means concatenation, ^ means XOR + // for each block T_i = U_1 ^ U_2 ^ ... ^ U_iter + // U_1 = PRF(password, salt || uint(i)) + prf.Reset() + prf.Write(salt) + buf[0] = byte(block >> 24) + buf[1] = byte(block >> 16) + buf[2] = byte(block >> 8) + buf[3] = byte(block) + prf.Write(buf[:4]) + dk = prf.Sum(dk) + T := dk[len(dk)-hashLen:] + copy(U, T) + + // U_n = PRF(password, U_(n-1)) + for n := 2; n <= iter; n++ { + prf.Reset() + prf.Write(U) + U = U[:0] + U = prf.Sum(U) + for x := range U { + T[x] ^= U[x] + } + } + } + return dk[:keyLen] +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/pbkdf2/pbkdf2_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/pbkdf2/pbkdf2_test.go new file mode 100644 index 00000000..13792406 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/pbkdf2/pbkdf2_test.go @@ -0,0 +1,157 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pbkdf2 + +import ( + "bytes" + "crypto/sha1" + "crypto/sha256" + "hash" + "testing" +) + +type testVector struct { + password string + salt string + iter int + output []byte +} + +// Test vectors from RFC 6070, http://tools.ietf.org/html/rfc6070 +var sha1TestVectors = []testVector{ + { + "password", + "salt", + 1, + []byte{ + 0x0c, 0x60, 0xc8, 0x0f, 0x96, 0x1f, 0x0e, 0x71, + 0xf3, 0xa9, 0xb5, 0x24, 0xaf, 0x60, 0x12, 0x06, + 0x2f, 0xe0, 0x37, 0xa6, + }, + }, + { + "password", + "salt", + 2, + []byte{ + 0xea, 0x6c, 0x01, 0x4d, 0xc7, 0x2d, 0x6f, 0x8c, + 0xcd, 0x1e, 0xd9, 0x2a, 0xce, 0x1d, 0x41, 0xf0, + 0xd8, 0xde, 0x89, 0x57, + }, + }, + { + "password", + "salt", + 4096, + []byte{ + 0x4b, 0x00, 0x79, 0x01, 0xb7, 0x65, 0x48, 0x9a, + 0xbe, 0xad, 0x49, 0xd9, 0x26, 0xf7, 0x21, 0xd0, + 0x65, 0xa4, 0x29, 0xc1, + }, + }, + // // This one takes too long + // { + // "password", + // "salt", + // 16777216, + // []byte{ + // 0xee, 0xfe, 0x3d, 0x61, 0xcd, 0x4d, 0xa4, 0xe4, + // 0xe9, 0x94, 0x5b, 0x3d, 0x6b, 0xa2, 0x15, 0x8c, + // 0x26, 0x34, 0xe9, 0x84, + // }, + // }, + { + "passwordPASSWORDpassword", + "saltSALTsaltSALTsaltSALTsaltSALTsalt", + 4096, + []byte{ + 0x3d, 0x2e, 0xec, 0x4f, 0xe4, 0x1c, 0x84, 0x9b, + 0x80, 0xc8, 0xd8, 0x36, 0x62, 0xc0, 0xe4, 0x4a, + 0x8b, 0x29, 0x1a, 0x96, 0x4c, 0xf2, 0xf0, 0x70, + 0x38, + }, + }, + { + "pass\000word", + "sa\000lt", + 4096, + []byte{ + 0x56, 0xfa, 0x6a, 0xa7, 0x55, 0x48, 0x09, 0x9d, + 0xcc, 0x37, 0xd7, 0xf0, 0x34, 0x25, 0xe0, 0xc3, + }, + }, +} + +// Test vectors from +// http://stackoverflow.com/questions/5130513/pbkdf2-hmac-sha2-test-vectors +var sha256TestVectors = []testVector{ + { + "password", + "salt", + 1, + []byte{ + 0x12, 0x0f, 0xb6, 0xcf, 0xfc, 0xf8, 0xb3, 0x2c, + 0x43, 0xe7, 0x22, 0x52, 0x56, 0xc4, 0xf8, 0x37, + 0xa8, 0x65, 0x48, 0xc9, + }, + }, + { + "password", + "salt", + 2, + []byte{ + 0xae, 0x4d, 0x0c, 0x95, 0xaf, 0x6b, 0x46, 0xd3, + 0x2d, 0x0a, 0xdf, 0xf9, 0x28, 0xf0, 0x6d, 0xd0, + 0x2a, 0x30, 0x3f, 0x8e, + }, + }, + { + "password", + "salt", + 4096, + []byte{ + 0xc5, 0xe4, 0x78, 0xd5, 0x92, 0x88, 0xc8, 0x41, + 0xaa, 0x53, 0x0d, 0xb6, 0x84, 0x5c, 0x4c, 0x8d, + 0x96, 0x28, 0x93, 0xa0, + }, + }, + { + "passwordPASSWORDpassword", + "saltSALTsaltSALTsaltSALTsaltSALTsalt", + 4096, + []byte{ + 0x34, 0x8c, 0x89, 0xdb, 0xcb, 0xd3, 0x2b, 0x2f, + 0x32, 0xd8, 0x14, 0xb8, 0x11, 0x6e, 0x84, 0xcf, + 0x2b, 0x17, 0x34, 0x7e, 0xbc, 0x18, 0x00, 0x18, + 0x1c, + }, + }, + { + "pass\000word", + "sa\000lt", + 4096, + []byte{ + 0x89, 0xb6, 0x9d, 0x05, 0x16, 0xf8, 0x29, 0x89, + 0x3c, 0x69, 0x62, 0x26, 0x65, 0x0a, 0x86, 0x87, + }, + }, +} + +func testHash(t *testing.T, h func() hash.Hash, hashName string, vectors []testVector) { + for i, v := range vectors { + o := Key([]byte(v.password), []byte(v.salt), v.iter, len(v.output), h) + if !bytes.Equal(o, v.output) { + t.Errorf("%s %d: expected %x, got %x", hashName, i, v.output, o) + } + } +} + +func TestWithHMACSHA1(t *testing.T) { + testHash(t, sha1.New, "SHA1", sha1TestVectors) +} + +func TestWithHMACSHA256(t *testing.T) { + testHash(t, sha256.New, "SHA256", sha256TestVectors) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/const_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/const_amd64.s new file mode 100644 index 00000000..e26ea670 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/const_amd64.s @@ -0,0 +1,45 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +DATA ·SCALE(SB)/8, $0x37F4000000000000 +GLOBL ·SCALE(SB), $8 +DATA ·TWO32(SB)/8, $0x41F0000000000000 +GLOBL ·TWO32(SB), $8 +DATA ·TWO64(SB)/8, $0x43F0000000000000 +GLOBL ·TWO64(SB), $8 +DATA ·TWO96(SB)/8, $0x45F0000000000000 +GLOBL ·TWO96(SB), $8 +DATA ·ALPHA32(SB)/8, $0x45E8000000000000 +GLOBL ·ALPHA32(SB), $8 +DATA ·ALPHA64(SB)/8, $0x47E8000000000000 +GLOBL ·ALPHA64(SB), $8 +DATA ·ALPHA96(SB)/8, $0x49E8000000000000 +GLOBL ·ALPHA96(SB), $8 +DATA ·ALPHA130(SB)/8, $0x4C08000000000000 +GLOBL ·ALPHA130(SB), $8 +DATA ·DOFFSET0(SB)/8, $0x4330000000000000 +GLOBL ·DOFFSET0(SB), $8 +DATA ·DOFFSET1(SB)/8, $0x4530000000000000 +GLOBL ·DOFFSET1(SB), $8 +DATA ·DOFFSET2(SB)/8, $0x4730000000000000 +GLOBL ·DOFFSET2(SB), $8 +DATA ·DOFFSET3(SB)/8, $0x4930000000000000 +GLOBL ·DOFFSET3(SB), $8 +DATA ·DOFFSET3MINUSTWO128(SB)/8, $0x492FFFFE00000000 +GLOBL ·DOFFSET3MINUSTWO128(SB), $8 +DATA ·HOFFSET0(SB)/8, $0x43300001FFFFFFFB +GLOBL ·HOFFSET0(SB), $8 +DATA ·HOFFSET1(SB)/8, $0x45300001FFFFFFFE +GLOBL ·HOFFSET1(SB), $8 +DATA ·HOFFSET2(SB)/8, $0x47300001FFFFFFFE +GLOBL ·HOFFSET2(SB), $8 +DATA ·HOFFSET3(SB)/8, $0x49300003FFFFFFFE +GLOBL ·HOFFSET3(SB), $8 +DATA ·ROUNDING(SB)/2, $0x137f +GLOBL ·ROUNDING(SB), $2 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305.go new file mode 100644 index 00000000..2270d2b3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305.go @@ -0,0 +1,32 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package poly1305 implements Poly1305 one-time message authentication code as specified in http://cr.yp.to/mac/poly1305-20050329.pdf. + +Poly1305 is a fast, one-time authentication function. It is infeasible for an +attacker to generate an authenticator for a message without the key. However, a +key must only be used for a single message. Authenticating two different +messages with the same key allows an attacker to forge authenticators for other +messages with the same key. + +Poly1305 was originally coupled with AES in order to make Poly1305-AES. AES was +used with a fixed key in order to generate one-time keys from an nonce. +However, in this package AES isn't used and the one-time key is specified +directly. +*/ +package poly1305 + +import "crypto/subtle" + +// TagSize is the size, in bytes, of a poly1305 authenticator. +const TagSize = 16 + +// Verify returns true if mac is a valid authenticator for m with the given +// key. +func Verify(mac *[16]byte, m []byte, key *[32]byte) bool { + var tmp [16]byte + Sum(&tmp, m, key) + return subtle.ConstantTimeCompare(tmp[:], mac[:]) == 1 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305_amd64.s new file mode 100644 index 00000000..b9ad0ba4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305_amd64.s @@ -0,0 +1,497 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo + +// func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]key) +TEXT ·poly1305(SB),0,$224-32 + MOVQ out+0(FP),DI + MOVQ m+8(FP),SI + MOVQ mlen+16(FP),DX + MOVQ key+24(FP),CX + + MOVQ SP,R11 + MOVQ $31,R9 + NOTQ R9 + ANDQ R9,SP + ADDQ $32,SP + + MOVQ R11,32(SP) + MOVQ R12,40(SP) + MOVQ R13,48(SP) + MOVQ R14,56(SP) + MOVQ R15,64(SP) + MOVQ BX,72(SP) + MOVQ BP,80(SP) + FLDCW ·ROUNDING(SB) + MOVL 0(CX),R8 + MOVL 4(CX),R9 + MOVL 8(CX),AX + MOVL 12(CX),R10 + MOVQ DI,88(SP) + MOVQ CX,96(SP) + MOVL $0X43300000,108(SP) + MOVL $0X45300000,116(SP) + MOVL $0X47300000,124(SP) + MOVL $0X49300000,132(SP) + ANDL $0X0FFFFFFF,R8 + ANDL $0X0FFFFFFC,R9 + ANDL $0X0FFFFFFC,AX + ANDL $0X0FFFFFFC,R10 + MOVL R8,104(SP) + MOVL R9,112(SP) + MOVL AX,120(SP) + MOVL R10,128(SP) + FMOVD 104(SP), F0 + FSUBD ·DOFFSET0(SB), F0 + FMOVD 112(SP), F0 + FSUBD ·DOFFSET1(SB), F0 + FMOVD 120(SP), F0 + FSUBD ·DOFFSET2(SB), F0 + FMOVD 128(SP), F0 + FSUBD ·DOFFSET3(SB), F0 + FXCHD F0, F3 + FMOVDP F0, 136(SP) + FXCHD F0, F1 + FMOVD F0, 144(SP) + FMULD ·SCALE(SB), F0 + FMOVDP F0, 152(SP) + FMOVD F0, 160(SP) + FMULD ·SCALE(SB), F0 + FMOVDP F0, 168(SP) + FMOVD F0, 176(SP) + FMULD ·SCALE(SB), F0 + FMOVDP F0, 184(SP) + FLDZ + FLDZ + FLDZ + FLDZ + CMPQ DX,$16 + JB ADDATMOST15BYTES + INITIALATLEAST16BYTES: + MOVL 12(SI),DI + MOVL 8(SI),CX + MOVL 4(SI),R8 + MOVL 0(SI),R9 + MOVL DI,128(SP) + MOVL CX,120(SP) + MOVL R8,112(SP) + MOVL R9,104(SP) + ADDQ $16,SI + SUBQ $16,DX + FXCHD F0, F3 + FADDD 128(SP), F0 + FSUBD ·DOFFSET3MINUSTWO128(SB), F0 + FXCHD F0, F1 + FADDD 112(SP), F0 + FSUBD ·DOFFSET1(SB), F0 + FXCHD F0, F2 + FADDD 120(SP), F0 + FSUBD ·DOFFSET2(SB), F0 + FXCHD F0, F3 + FADDD 104(SP), F0 + FSUBD ·DOFFSET0(SB), F0 + CMPQ DX,$16 + JB MULTIPLYADDATMOST15BYTES + MULTIPLYADDATLEAST16BYTES: + MOVL 12(SI),DI + MOVL 8(SI),CX + MOVL 4(SI),R8 + MOVL 0(SI),R9 + MOVL DI,128(SP) + MOVL CX,120(SP) + MOVL R8,112(SP) + MOVL R9,104(SP) + ADDQ $16,SI + SUBQ $16,DX + FMOVD ·ALPHA130(SB), F0 + FADDD F2,F0 + FSUBD ·ALPHA130(SB), F0 + FSUBD F0,F2 + FMULD ·SCALE(SB), F0 + FMOVD ·ALPHA32(SB), F0 + FADDD F2,F0 + FSUBD ·ALPHA32(SB), F0 + FSUBD F0,F2 + FXCHD F0, F2 + FADDDP F0,F1 + FMOVD ·ALPHA64(SB), F0 + FADDD F4,F0 + FSUBD ·ALPHA64(SB), F0 + FSUBD F0,F4 + FMOVD ·ALPHA96(SB), F0 + FADDD F6,F0 + FSUBD ·ALPHA96(SB), F0 + FSUBD F0,F6 + FXCHD F0, F6 + FADDDP F0,F1 + FXCHD F0, F3 + FADDDP F0,F5 + FXCHD F0, F3 + FADDDP F0,F1 + FMOVD 176(SP), F0 + FMULD F3,F0 + FMOVD 160(SP), F0 + FMULD F4,F0 + FMOVD 144(SP), F0 + FMULD F5,F0 + FMOVD 136(SP), F0 + FMULDP F0,F6 + FMOVD 160(SP), F0 + FMULD F4,F0 + FADDDP F0,F3 + FMOVD 144(SP), F0 + FMULD F4,F0 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F4,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULDP F0,F4 + FXCHD F0, F3 + FADDDP F0,F5 + FMOVD 144(SP), F0 + FMULD F4,F0 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F4,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULD F4,F0 + FADDDP F0,F3 + FMOVD 168(SP), F0 + FMULDP F0,F4 + FXCHD F0, F3 + FADDDP F0,F4 + FMOVD 136(SP), F0 + FMULD F5,F0 + FADDDP F0,F1 + FXCHD F0, F3 + FMOVD 184(SP), F0 + FMULD F5,F0 + FADDDP F0,F3 + FXCHD F0, F1 + FMOVD 168(SP), F0 + FMULD F5,F0 + FADDDP F0,F1 + FMOVD 152(SP), F0 + FMULDP F0,F5 + FXCHD F0, F4 + FADDDP F0,F1 + CMPQ DX,$16 + FXCHD F0, F2 + FMOVD 128(SP), F0 + FSUBD ·DOFFSET3MINUSTWO128(SB), F0 + FADDDP F0,F1 + FXCHD F0, F1 + FMOVD 120(SP), F0 + FSUBD ·DOFFSET2(SB), F0 + FADDDP F0,F1 + FXCHD F0, F3 + FMOVD 112(SP), F0 + FSUBD ·DOFFSET1(SB), F0 + FADDDP F0,F1 + FXCHD F0, F2 + FMOVD 104(SP), F0 + FSUBD ·DOFFSET0(SB), F0 + FADDDP F0,F1 + JAE MULTIPLYADDATLEAST16BYTES + MULTIPLYADDATMOST15BYTES: + FMOVD ·ALPHA130(SB), F0 + FADDD F2,F0 + FSUBD ·ALPHA130(SB), F0 + FSUBD F0,F2 + FMULD ·SCALE(SB), F0 + FMOVD ·ALPHA32(SB), F0 + FADDD F2,F0 + FSUBD ·ALPHA32(SB), F0 + FSUBD F0,F2 + FMOVD ·ALPHA64(SB), F0 + FADDD F5,F0 + FSUBD ·ALPHA64(SB), F0 + FSUBD F0,F5 + FMOVD ·ALPHA96(SB), F0 + FADDD F7,F0 + FSUBD ·ALPHA96(SB), F0 + FSUBD F0,F7 + FXCHD F0, F7 + FADDDP F0,F1 + FXCHD F0, F5 + FADDDP F0,F1 + FXCHD F0, F3 + FADDDP F0,F5 + FADDDP F0,F1 + FMOVD 176(SP), F0 + FMULD F1,F0 + FMOVD 160(SP), F0 + FMULD F2,F0 + FMOVD 144(SP), F0 + FMULD F3,F0 + FMOVD 136(SP), F0 + FMULDP F0,F4 + FMOVD 160(SP), F0 + FMULD F5,F0 + FADDDP F0,F3 + FMOVD 144(SP), F0 + FMULD F5,F0 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F5,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULDP F0,F5 + FXCHD F0, F4 + FADDDP F0,F3 + FMOVD 144(SP), F0 + FMULD F5,F0 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F5,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULD F5,F0 + FADDDP F0,F4 + FMOVD 168(SP), F0 + FMULDP F0,F5 + FXCHD F0, F4 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F5,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULD F5,F0 + FADDDP F0,F4 + FMOVD 168(SP), F0 + FMULD F5,F0 + FADDDP F0,F3 + FMOVD 152(SP), F0 + FMULDP F0,F5 + FXCHD F0, F4 + FADDDP F0,F1 + ADDATMOST15BYTES: + CMPQ DX,$0 + JE NOMOREBYTES + MOVL $0,0(SP) + MOVL $0, 4 (SP) + MOVL $0, 8 (SP) + MOVL $0, 12 (SP) + LEAQ 0(SP),DI + MOVQ DX,CX + REP; MOVSB + MOVB $1,0(DI) + MOVL 12 (SP),DI + MOVL 8 (SP),SI + MOVL 4 (SP),DX + MOVL 0(SP),CX + MOVL DI,128(SP) + MOVL SI,120(SP) + MOVL DX,112(SP) + MOVL CX,104(SP) + FXCHD F0, F3 + FADDD 128(SP), F0 + FSUBD ·DOFFSET3(SB), F0 + FXCHD F0, F2 + FADDD 120(SP), F0 + FSUBD ·DOFFSET2(SB), F0 + FXCHD F0, F1 + FADDD 112(SP), F0 + FSUBD ·DOFFSET1(SB), F0 + FXCHD F0, F3 + FADDD 104(SP), F0 + FSUBD ·DOFFSET0(SB), F0 + FMOVD ·ALPHA130(SB), F0 + FADDD F3,F0 + FSUBD ·ALPHA130(SB), F0 + FSUBD F0,F3 + FMULD ·SCALE(SB), F0 + FMOVD ·ALPHA32(SB), F0 + FADDD F2,F0 + FSUBD ·ALPHA32(SB), F0 + FSUBD F0,F2 + FMOVD ·ALPHA64(SB), F0 + FADDD F6,F0 + FSUBD ·ALPHA64(SB), F0 + FSUBD F0,F6 + FMOVD ·ALPHA96(SB), F0 + FADDD F5,F0 + FSUBD ·ALPHA96(SB), F0 + FSUBD F0,F5 + FXCHD F0, F4 + FADDDP F0,F3 + FXCHD F0, F6 + FADDDP F0,F1 + FXCHD F0, F3 + FADDDP F0,F5 + FXCHD F0, F3 + FADDDP F0,F1 + FMOVD 176(SP), F0 + FMULD F3,F0 + FMOVD 160(SP), F0 + FMULD F4,F0 + FMOVD 144(SP), F0 + FMULD F5,F0 + FMOVD 136(SP), F0 + FMULDP F0,F6 + FMOVD 160(SP), F0 + FMULD F5,F0 + FADDDP F0,F3 + FMOVD 144(SP), F0 + FMULD F5,F0 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F5,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULDP F0,F5 + FXCHD F0, F4 + FADDDP F0,F5 + FMOVD 144(SP), F0 + FMULD F6,F0 + FADDDP F0,F2 + FMOVD 136(SP), F0 + FMULD F6,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULD F6,F0 + FADDDP F0,F4 + FMOVD 168(SP), F0 + FMULDP F0,F6 + FXCHD F0, F5 + FADDDP F0,F4 + FMOVD 136(SP), F0 + FMULD F2,F0 + FADDDP F0,F1 + FMOVD 184(SP), F0 + FMULD F2,F0 + FADDDP F0,F5 + FMOVD 168(SP), F0 + FMULD F2,F0 + FADDDP F0,F3 + FMOVD 152(SP), F0 + FMULDP F0,F2 + FXCHD F0, F1 + FADDDP F0,F3 + FXCHD F0, F3 + FXCHD F0, F2 + NOMOREBYTES: + MOVL $0,R10 + FMOVD ·ALPHA130(SB), F0 + FADDD F4,F0 + FSUBD ·ALPHA130(SB), F0 + FSUBD F0,F4 + FMULD ·SCALE(SB), F0 + FMOVD ·ALPHA32(SB), F0 + FADDD F2,F0 + FSUBD ·ALPHA32(SB), F0 + FSUBD F0,F2 + FMOVD ·ALPHA64(SB), F0 + FADDD F4,F0 + FSUBD ·ALPHA64(SB), F0 + FSUBD F0,F4 + FMOVD ·ALPHA96(SB), F0 + FADDD F6,F0 + FSUBD ·ALPHA96(SB), F0 + FXCHD F0, F6 + FSUBD F6,F0 + FXCHD F0, F4 + FADDDP F0,F3 + FXCHD F0, F4 + FADDDP F0,F1 + FXCHD F0, F2 + FADDDP F0,F3 + FXCHD F0, F4 + FADDDP F0,F3 + FXCHD F0, F3 + FADDD ·HOFFSET0(SB), F0 + FXCHD F0, F3 + FADDD ·HOFFSET1(SB), F0 + FXCHD F0, F1 + FADDD ·HOFFSET2(SB), F0 + FXCHD F0, F2 + FADDD ·HOFFSET3(SB), F0 + FXCHD F0, F3 + FMOVDP F0, 104(SP) + FMOVDP F0, 112(SP) + FMOVDP F0, 120(SP) + FMOVDP F0, 128(SP) + MOVL 108(SP),DI + ANDL $63,DI + MOVL 116(SP),SI + ANDL $63,SI + MOVL 124(SP),DX + ANDL $63,DX + MOVL 132(SP),CX + ANDL $63,CX + MOVL 112(SP),R8 + ADDL DI,R8 + MOVQ R8,112(SP) + MOVL 120(SP),DI + ADCL SI,DI + MOVQ DI,120(SP) + MOVL 128(SP),DI + ADCL DX,DI + MOVQ DI,128(SP) + MOVL R10,DI + ADCL CX,DI + MOVQ DI,136(SP) + MOVQ $5,DI + MOVL 104(SP),SI + ADDL SI,DI + MOVQ DI,104(SP) + MOVL R10,DI + MOVQ 112(SP),DX + ADCL DX,DI + MOVQ DI,112(SP) + MOVL R10,DI + MOVQ 120(SP),CX + ADCL CX,DI + MOVQ DI,120(SP) + MOVL R10,DI + MOVQ 128(SP),R8 + ADCL R8,DI + MOVQ DI,128(SP) + MOVQ $0XFFFFFFFC,DI + MOVQ 136(SP),R9 + ADCL R9,DI + SARL $16,DI + MOVQ DI,R9 + XORL $0XFFFFFFFF,R9 + ANDQ DI,SI + MOVQ 104(SP),AX + ANDQ R9,AX + ORQ AX,SI + ANDQ DI,DX + MOVQ 112(SP),AX + ANDQ R9,AX + ORQ AX,DX + ANDQ DI,CX + MOVQ 120(SP),AX + ANDQ R9,AX + ORQ AX,CX + ANDQ DI,R8 + MOVQ 128(SP),DI + ANDQ R9,DI + ORQ DI,R8 + MOVQ 88(SP),DI + MOVQ 96(SP),R9 + ADDL 16(R9),SI + ADCL 20(R9),DX + ADCL 24(R9),CX + ADCL 28(R9),R8 + MOVL SI,0(DI) + MOVL DX,4(DI) + MOVL CX,8(DI) + MOVL R8,12(DI) + MOVQ 32(SP),R11 + MOVQ 40(SP),R12 + MOVQ 48(SP),R13 + MOVQ 56(SP),R14 + MOVQ 64(SP),R15 + MOVQ 72(SP),BX + MOVQ 80(SP),BP + MOVQ R11,SP + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305_test.go new file mode 100644 index 00000000..2c6d1bc9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/poly1305_test.go @@ -0,0 +1,74 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package poly1305 + +import ( + "bytes" + "testing" +) + +var testData = []struct { + in, k, correct []byte +}{ + { + []byte("Hello world!"), + []byte("this is 32-byte key for Poly1305"), + []byte{0xa6, 0xf7, 0x45, 0x00, 0x8f, 0x81, 0xc9, 0x16, 0xa2, 0x0d, 0xcc, 0x74, 0xee, 0xf2, 0xb2, 0xf0}, + }, + { + make([]byte, 32), + []byte("this is 32-byte key for Poly1305"), + []byte{0x49, 0xec, 0x78, 0x09, 0x0e, 0x48, 0x1e, 0xc6, 0xc2, 0x6b, 0x33, 0xb9, 0x1c, 0xcc, 0x03, 0x07}, + }, + { + make([]byte, 2007), + []byte("this is 32-byte key for Poly1305"), + []byte{0xda, 0x84, 0xbc, 0xab, 0x02, 0x67, 0x6c, 0x38, 0xcd, 0xb0, 0x15, 0x60, 0x42, 0x74, 0xc2, 0xaa}, + }, + { + make([]byte, 2007), + make([]byte, 32), + make([]byte, 16), + }, +} + +func TestSum(t *testing.T) { + var out [16]byte + var key [32]byte + + for i, v := range testData { + copy(key[:], v.k) + Sum(&out, v.in, &key) + if !bytes.Equal(out[:], v.correct) { + t.Errorf("%d: expected %x, got %x", i, v.correct, out[:]) + } + } +} + +func Benchmark1K(b *testing.B) { + b.StopTimer() + var out [16]byte + var key [32]byte + in := make([]byte, 1024) + b.SetBytes(int64(len(in))) + b.StartTimer() + + for i := 0; i < b.N; i++ { + Sum(&out, in, &key) + } +} + +func Benchmark64(b *testing.B) { + b.StopTimer() + var out [16]byte + var key [32]byte + in := make([]byte, 64) + b.SetBytes(int64(len(in))) + b.StartTimer() + + for i := 0; i < b.N; i++ { + Sum(&out, in, &key) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/sum_amd64.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/sum_amd64.go new file mode 100644 index 00000000..eb22ca15 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/sum_amd64.go @@ -0,0 +1,24 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo + +package poly1305 + +// This function is implemented in poly1305_amd64.s + +//go:noescape + +func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]byte) + +// Sum generates an authenticator for m using a one-time key and puts the +// 16-byte result into out. Authenticating two different messages with the same +// key allows an attacker to forge messages at will. +func Sum(out *[16]byte, m []byte, key *[32]byte) { + var mPtr *byte + if len(m) > 0 { + mPtr = &m[0] + } + poly1305(out, mPtr, uint64(len(m)), key) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/sum_ref.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/sum_ref.go new file mode 100644 index 00000000..12568a2f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/poly1305/sum_ref.go @@ -0,0 +1,1531 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !amd64 gccgo + +package poly1305 + +// Based on original, public domain implementation from NaCl by D. J. +// Bernstein. + +import "math" + +const ( + alpham80 = 0.00000000558793544769287109375 + alpham48 = 24.0 + alpham16 = 103079215104.0 + alpha0 = 6755399441055744.0 + alpha18 = 1770887431076116955136.0 + alpha32 = 29014219670751100192948224.0 + alpha50 = 7605903601369376408980219232256.0 + alpha64 = 124615124604835863084731911901282304.0 + alpha82 = 32667107224410092492483962313449748299776.0 + alpha96 = 535217884764734955396857238543560676143529984.0 + alpha112 = 35076039295941670036888435985190792471742381031424.0 + alpha130 = 9194973245195333150150082162901855101712434733101613056.0 + scale = 0.0000000000000000000000000000000000000036734198463196484624023016788195177431833298649127735047148490821200539357960224151611328125 + offset0 = 6755408030990331.0 + offset1 = 29014256564239239022116864.0 + offset2 = 124615283061160854719918951570079744.0 + offset3 = 535219245894202480694386063513315216128475136.0 +) + +// Sum generates an authenticator for m using a one-time key and puts the +// 16-byte result into out. Authenticating two different messages with the same +// key allows an attacker to forge messages at will. +func Sum(out *[16]byte, m []byte, key *[32]byte) { + r := key + s := key[16:] + var ( + y7 float64 + y6 float64 + y1 float64 + y0 float64 + y5 float64 + y4 float64 + x7 float64 + x6 float64 + x1 float64 + x0 float64 + y3 float64 + y2 float64 + x5 float64 + r3lowx0 float64 + x4 float64 + r0lowx6 float64 + x3 float64 + r3highx0 float64 + x2 float64 + r0highx6 float64 + r0lowx0 float64 + sr1lowx6 float64 + r0highx0 float64 + sr1highx6 float64 + sr3low float64 + r1lowx0 float64 + sr2lowx6 float64 + r1highx0 float64 + sr2highx6 float64 + r2lowx0 float64 + sr3lowx6 float64 + r2highx0 float64 + sr3highx6 float64 + r1highx4 float64 + r1lowx4 float64 + r0highx4 float64 + r0lowx4 float64 + sr3highx4 float64 + sr3lowx4 float64 + sr2highx4 float64 + sr2lowx4 float64 + r0lowx2 float64 + r0highx2 float64 + r1lowx2 float64 + r1highx2 float64 + r2lowx2 float64 + r2highx2 float64 + sr3lowx2 float64 + sr3highx2 float64 + z0 float64 + z1 float64 + z2 float64 + z3 float64 + m0 int64 + m1 int64 + m2 int64 + m3 int64 + m00 uint32 + m01 uint32 + m02 uint32 + m03 uint32 + m10 uint32 + m11 uint32 + m12 uint32 + m13 uint32 + m20 uint32 + m21 uint32 + m22 uint32 + m23 uint32 + m30 uint32 + m31 uint32 + m32 uint32 + m33 uint64 + lbelow2 int32 + lbelow3 int32 + lbelow4 int32 + lbelow5 int32 + lbelow6 int32 + lbelow7 int32 + lbelow8 int32 + lbelow9 int32 + lbelow10 int32 + lbelow11 int32 + lbelow12 int32 + lbelow13 int32 + lbelow14 int32 + lbelow15 int32 + s00 uint32 + s01 uint32 + s02 uint32 + s03 uint32 + s10 uint32 + s11 uint32 + s12 uint32 + s13 uint32 + s20 uint32 + s21 uint32 + s22 uint32 + s23 uint32 + s30 uint32 + s31 uint32 + s32 uint32 + s33 uint32 + bits32 uint64 + f uint64 + f0 uint64 + f1 uint64 + f2 uint64 + f3 uint64 + f4 uint64 + g uint64 + g0 uint64 + g1 uint64 + g2 uint64 + g3 uint64 + g4 uint64 + ) + + var p int32 + + l := int32(len(m)) + + r00 := uint32(r[0]) + + r01 := uint32(r[1]) + + r02 := uint32(r[2]) + r0 := int64(2151) + + r03 := uint32(r[3]) + r03 &= 15 + r0 <<= 51 + + r10 := uint32(r[4]) + r10 &= 252 + r01 <<= 8 + r0 += int64(r00) + + r11 := uint32(r[5]) + r02 <<= 16 + r0 += int64(r01) + + r12 := uint32(r[6]) + r03 <<= 24 + r0 += int64(r02) + + r13 := uint32(r[7]) + r13 &= 15 + r1 := int64(2215) + r0 += int64(r03) + + d0 := r0 + r1 <<= 51 + r2 := int64(2279) + + r20 := uint32(r[8]) + r20 &= 252 + r11 <<= 8 + r1 += int64(r10) + + r21 := uint32(r[9]) + r12 <<= 16 + r1 += int64(r11) + + r22 := uint32(r[10]) + r13 <<= 24 + r1 += int64(r12) + + r23 := uint32(r[11]) + r23 &= 15 + r2 <<= 51 + r1 += int64(r13) + + d1 := r1 + r21 <<= 8 + r2 += int64(r20) + + r30 := uint32(r[12]) + r30 &= 252 + r22 <<= 16 + r2 += int64(r21) + + r31 := uint32(r[13]) + r23 <<= 24 + r2 += int64(r22) + + r32 := uint32(r[14]) + r2 += int64(r23) + r3 := int64(2343) + + d2 := r2 + r3 <<= 51 + + r33 := uint32(r[15]) + r33 &= 15 + r31 <<= 8 + r3 += int64(r30) + + r32 <<= 16 + r3 += int64(r31) + + r33 <<= 24 + r3 += int64(r32) + + r3 += int64(r33) + h0 := alpha32 - alpha32 + + d3 := r3 + h1 := alpha32 - alpha32 + + h2 := alpha32 - alpha32 + + h3 := alpha32 - alpha32 + + h4 := alpha32 - alpha32 + + r0low := math.Float64frombits(uint64(d0)) + h5 := alpha32 - alpha32 + + r1low := math.Float64frombits(uint64(d1)) + h6 := alpha32 - alpha32 + + r2low := math.Float64frombits(uint64(d2)) + h7 := alpha32 - alpha32 + + r0low -= alpha0 + + r1low -= alpha32 + + r2low -= alpha64 + + r0high := r0low + alpha18 + + r3low := math.Float64frombits(uint64(d3)) + + r1high := r1low + alpha50 + sr1low := scale * r1low + + r2high := r2low + alpha82 + sr2low := scale * r2low + + r0high -= alpha18 + r0high_stack := r0high + + r3low -= alpha96 + + r1high -= alpha50 + r1high_stack := r1high + + sr1high := sr1low + alpham80 + + r0low -= r0high + + r2high -= alpha82 + sr3low = scale * r3low + + sr2high := sr2low + alpham48 + + r1low -= r1high + r1low_stack := r1low + + sr1high -= alpham80 + sr1high_stack := sr1high + + r2low -= r2high + r2low_stack := r2low + + sr2high -= alpham48 + sr2high_stack := sr2high + + r3high := r3low + alpha112 + r0low_stack := r0low + + sr1low -= sr1high + sr1low_stack := sr1low + + sr3high := sr3low + alpham16 + r2high_stack := r2high + + sr2low -= sr2high + sr2low_stack := sr2low + + r3high -= alpha112 + r3high_stack := r3high + + sr3high -= alpham16 + sr3high_stack := sr3high + + r3low -= r3high + r3low_stack := r3low + + sr3low -= sr3high + sr3low_stack := sr3low + + if l < 16 { + goto addatmost15bytes + } + + m00 = uint32(m[p+0]) + m0 = 2151 + + m0 <<= 51 + m1 = 2215 + m01 = uint32(m[p+1]) + + m1 <<= 51 + m2 = 2279 + m02 = uint32(m[p+2]) + + m2 <<= 51 + m3 = 2343 + m03 = uint32(m[p+3]) + + m10 = uint32(m[p+4]) + m01 <<= 8 + m0 += int64(m00) + + m11 = uint32(m[p+5]) + m02 <<= 16 + m0 += int64(m01) + + m12 = uint32(m[p+6]) + m03 <<= 24 + m0 += int64(m02) + + m13 = uint32(m[p+7]) + m3 <<= 51 + m0 += int64(m03) + + m20 = uint32(m[p+8]) + m11 <<= 8 + m1 += int64(m10) + + m21 = uint32(m[p+9]) + m12 <<= 16 + m1 += int64(m11) + + m22 = uint32(m[p+10]) + m13 <<= 24 + m1 += int64(m12) + + m23 = uint32(m[p+11]) + m1 += int64(m13) + + m30 = uint32(m[p+12]) + m21 <<= 8 + m2 += int64(m20) + + m31 = uint32(m[p+13]) + m22 <<= 16 + m2 += int64(m21) + + m32 = uint32(m[p+14]) + m23 <<= 24 + m2 += int64(m22) + + m33 = uint64(m[p+15]) + m2 += int64(m23) + + d0 = m0 + m31 <<= 8 + m3 += int64(m30) + + d1 = m1 + m32 <<= 16 + m3 += int64(m31) + + d2 = m2 + m33 += 256 + + m33 <<= 24 + m3 += int64(m32) + + m3 += int64(m33) + d3 = m3 + + p += 16 + l -= 16 + + z0 = math.Float64frombits(uint64(d0)) + + z1 = math.Float64frombits(uint64(d1)) + + z2 = math.Float64frombits(uint64(d2)) + + z3 = math.Float64frombits(uint64(d3)) + + z0 -= alpha0 + + z1 -= alpha32 + + z2 -= alpha64 + + z3 -= alpha96 + + h0 += z0 + + h1 += z1 + + h3 += z2 + + h5 += z3 + + if l < 16 { + goto multiplyaddatmost15bytes + } + +multiplyaddatleast16bytes: + + m2 = 2279 + m20 = uint32(m[p+8]) + y7 = h7 + alpha130 + + m2 <<= 51 + m3 = 2343 + m21 = uint32(m[p+9]) + y6 = h6 + alpha130 + + m3 <<= 51 + m0 = 2151 + m22 = uint32(m[p+10]) + y1 = h1 + alpha32 + + m0 <<= 51 + m1 = 2215 + m23 = uint32(m[p+11]) + y0 = h0 + alpha32 + + m1 <<= 51 + m30 = uint32(m[p+12]) + y7 -= alpha130 + + m21 <<= 8 + m2 += int64(m20) + m31 = uint32(m[p+13]) + y6 -= alpha130 + + m22 <<= 16 + m2 += int64(m21) + m32 = uint32(m[p+14]) + y1 -= alpha32 + + m23 <<= 24 + m2 += int64(m22) + m33 = uint64(m[p+15]) + y0 -= alpha32 + + m2 += int64(m23) + m00 = uint32(m[p+0]) + y5 = h5 + alpha96 + + m31 <<= 8 + m3 += int64(m30) + m01 = uint32(m[p+1]) + y4 = h4 + alpha96 + + m32 <<= 16 + m02 = uint32(m[p+2]) + x7 = h7 - y7 + y7 *= scale + + m33 += 256 + m03 = uint32(m[p+3]) + x6 = h6 - y6 + y6 *= scale + + m33 <<= 24 + m3 += int64(m31) + m10 = uint32(m[p+4]) + x1 = h1 - y1 + + m01 <<= 8 + m3 += int64(m32) + m11 = uint32(m[p+5]) + x0 = h0 - y0 + + m3 += int64(m33) + m0 += int64(m00) + m12 = uint32(m[p+6]) + y5 -= alpha96 + + m02 <<= 16 + m0 += int64(m01) + m13 = uint32(m[p+7]) + y4 -= alpha96 + + m03 <<= 24 + m0 += int64(m02) + d2 = m2 + x1 += y7 + + m0 += int64(m03) + d3 = m3 + x0 += y6 + + m11 <<= 8 + m1 += int64(m10) + d0 = m0 + x7 += y5 + + m12 <<= 16 + m1 += int64(m11) + x6 += y4 + + m13 <<= 24 + m1 += int64(m12) + y3 = h3 + alpha64 + + m1 += int64(m13) + d1 = m1 + y2 = h2 + alpha64 + + x0 += x1 + + x6 += x7 + + y3 -= alpha64 + r3low = r3low_stack + + y2 -= alpha64 + r0low = r0low_stack + + x5 = h5 - y5 + r3lowx0 = r3low * x0 + r3high = r3high_stack + + x4 = h4 - y4 + r0lowx6 = r0low * x6 + r0high = r0high_stack + + x3 = h3 - y3 + r3highx0 = r3high * x0 + sr1low = sr1low_stack + + x2 = h2 - y2 + r0highx6 = r0high * x6 + sr1high = sr1high_stack + + x5 += y3 + r0lowx0 = r0low * x0 + r1low = r1low_stack + + h6 = r3lowx0 + r0lowx6 + sr1lowx6 = sr1low * x6 + r1high = r1high_stack + + x4 += y2 + r0highx0 = r0high * x0 + sr2low = sr2low_stack + + h7 = r3highx0 + r0highx6 + sr1highx6 = sr1high * x6 + sr2high = sr2high_stack + + x3 += y1 + r1lowx0 = r1low * x0 + r2low = r2low_stack + + h0 = r0lowx0 + sr1lowx6 + sr2lowx6 = sr2low * x6 + r2high = r2high_stack + + x2 += y0 + r1highx0 = r1high * x0 + sr3low = sr3low_stack + + h1 = r0highx0 + sr1highx6 + sr2highx6 = sr2high * x6 + sr3high = sr3high_stack + + x4 += x5 + r2lowx0 = r2low * x0 + z2 = math.Float64frombits(uint64(d2)) + + h2 = r1lowx0 + sr2lowx6 + sr3lowx6 = sr3low * x6 + + x2 += x3 + r2highx0 = r2high * x0 + z3 = math.Float64frombits(uint64(d3)) + + h3 = r1highx0 + sr2highx6 + sr3highx6 = sr3high * x6 + + r1highx4 = r1high * x4 + z2 -= alpha64 + + h4 = r2lowx0 + sr3lowx6 + r1lowx4 = r1low * x4 + + r0highx4 = r0high * x4 + z3 -= alpha96 + + h5 = r2highx0 + sr3highx6 + r0lowx4 = r0low * x4 + + h7 += r1highx4 + sr3highx4 = sr3high * x4 + + h6 += r1lowx4 + sr3lowx4 = sr3low * x4 + + h5 += r0highx4 + sr2highx4 = sr2high * x4 + + h4 += r0lowx4 + sr2lowx4 = sr2low * x4 + + h3 += sr3highx4 + r0lowx2 = r0low * x2 + + h2 += sr3lowx4 + r0highx2 = r0high * x2 + + h1 += sr2highx4 + r1lowx2 = r1low * x2 + + h0 += sr2lowx4 + r1highx2 = r1high * x2 + + h2 += r0lowx2 + r2lowx2 = r2low * x2 + + h3 += r0highx2 + r2highx2 = r2high * x2 + + h4 += r1lowx2 + sr3lowx2 = sr3low * x2 + + h5 += r1highx2 + sr3highx2 = sr3high * x2 + + p += 16 + l -= 16 + h6 += r2lowx2 + + h7 += r2highx2 + + z1 = math.Float64frombits(uint64(d1)) + h0 += sr3lowx2 + + z0 = math.Float64frombits(uint64(d0)) + h1 += sr3highx2 + + z1 -= alpha32 + + z0 -= alpha0 + + h5 += z3 + + h3 += z2 + + h1 += z1 + + h0 += z0 + + if l >= 16 { + goto multiplyaddatleast16bytes + } + +multiplyaddatmost15bytes: + + y7 = h7 + alpha130 + + y6 = h6 + alpha130 + + y1 = h1 + alpha32 + + y0 = h0 + alpha32 + + y7 -= alpha130 + + y6 -= alpha130 + + y1 -= alpha32 + + y0 -= alpha32 + + y5 = h5 + alpha96 + + y4 = h4 + alpha96 + + x7 = h7 - y7 + y7 *= scale + + x6 = h6 - y6 + y6 *= scale + + x1 = h1 - y1 + + x0 = h0 - y0 + + y5 -= alpha96 + + y4 -= alpha96 + + x1 += y7 + + x0 += y6 + + x7 += y5 + + x6 += y4 + + y3 = h3 + alpha64 + + y2 = h2 + alpha64 + + x0 += x1 + + x6 += x7 + + y3 -= alpha64 + r3low = r3low_stack + + y2 -= alpha64 + r0low = r0low_stack + + x5 = h5 - y5 + r3lowx0 = r3low * x0 + r3high = r3high_stack + + x4 = h4 - y4 + r0lowx6 = r0low * x6 + r0high = r0high_stack + + x3 = h3 - y3 + r3highx0 = r3high * x0 + sr1low = sr1low_stack + + x2 = h2 - y2 + r0highx6 = r0high * x6 + sr1high = sr1high_stack + + x5 += y3 + r0lowx0 = r0low * x0 + r1low = r1low_stack + + h6 = r3lowx0 + r0lowx6 + sr1lowx6 = sr1low * x6 + r1high = r1high_stack + + x4 += y2 + r0highx0 = r0high * x0 + sr2low = sr2low_stack + + h7 = r3highx0 + r0highx6 + sr1highx6 = sr1high * x6 + sr2high = sr2high_stack + + x3 += y1 + r1lowx0 = r1low * x0 + r2low = r2low_stack + + h0 = r0lowx0 + sr1lowx6 + sr2lowx6 = sr2low * x6 + r2high = r2high_stack + + x2 += y0 + r1highx0 = r1high * x0 + sr3low = sr3low_stack + + h1 = r0highx0 + sr1highx6 + sr2highx6 = sr2high * x6 + sr3high = sr3high_stack + + x4 += x5 + r2lowx0 = r2low * x0 + + h2 = r1lowx0 + sr2lowx6 + sr3lowx6 = sr3low * x6 + + x2 += x3 + r2highx0 = r2high * x0 + + h3 = r1highx0 + sr2highx6 + sr3highx6 = sr3high * x6 + + r1highx4 = r1high * x4 + + h4 = r2lowx0 + sr3lowx6 + r1lowx4 = r1low * x4 + + r0highx4 = r0high * x4 + + h5 = r2highx0 + sr3highx6 + r0lowx4 = r0low * x4 + + h7 += r1highx4 + sr3highx4 = sr3high * x4 + + h6 += r1lowx4 + sr3lowx4 = sr3low * x4 + + h5 += r0highx4 + sr2highx4 = sr2high * x4 + + h4 += r0lowx4 + sr2lowx4 = sr2low * x4 + + h3 += sr3highx4 + r0lowx2 = r0low * x2 + + h2 += sr3lowx4 + r0highx2 = r0high * x2 + + h1 += sr2highx4 + r1lowx2 = r1low * x2 + + h0 += sr2lowx4 + r1highx2 = r1high * x2 + + h2 += r0lowx2 + r2lowx2 = r2low * x2 + + h3 += r0highx2 + r2highx2 = r2high * x2 + + h4 += r1lowx2 + sr3lowx2 = sr3low * x2 + + h5 += r1highx2 + sr3highx2 = sr3high * x2 + + h6 += r2lowx2 + + h7 += r2highx2 + + h0 += sr3lowx2 + + h1 += sr3highx2 + +addatmost15bytes: + + if l == 0 { + goto nomorebytes + } + + lbelow2 = l - 2 + + lbelow3 = l - 3 + + lbelow2 >>= 31 + lbelow4 = l - 4 + + m00 = uint32(m[p+0]) + lbelow3 >>= 31 + p += lbelow2 + + m01 = uint32(m[p+1]) + lbelow4 >>= 31 + p += lbelow3 + + m02 = uint32(m[p+2]) + p += lbelow4 + m0 = 2151 + + m03 = uint32(m[p+3]) + m0 <<= 51 + m1 = 2215 + + m0 += int64(m00) + m01 &^= uint32(lbelow2) + + m02 &^= uint32(lbelow3) + m01 -= uint32(lbelow2) + + m01 <<= 8 + m03 &^= uint32(lbelow4) + + m0 += int64(m01) + lbelow2 -= lbelow3 + + m02 += uint32(lbelow2) + lbelow3 -= lbelow4 + + m02 <<= 16 + m03 += uint32(lbelow3) + + m03 <<= 24 + m0 += int64(m02) + + m0 += int64(m03) + lbelow5 = l - 5 + + lbelow6 = l - 6 + lbelow7 = l - 7 + + lbelow5 >>= 31 + lbelow8 = l - 8 + + lbelow6 >>= 31 + p += lbelow5 + + m10 = uint32(m[p+4]) + lbelow7 >>= 31 + p += lbelow6 + + m11 = uint32(m[p+5]) + lbelow8 >>= 31 + p += lbelow7 + + m12 = uint32(m[p+6]) + m1 <<= 51 + p += lbelow8 + + m13 = uint32(m[p+7]) + m10 &^= uint32(lbelow5) + lbelow4 -= lbelow5 + + m10 += uint32(lbelow4) + lbelow5 -= lbelow6 + + m11 &^= uint32(lbelow6) + m11 += uint32(lbelow5) + + m11 <<= 8 + m1 += int64(m10) + + m1 += int64(m11) + m12 &^= uint32(lbelow7) + + lbelow6 -= lbelow7 + m13 &^= uint32(lbelow8) + + m12 += uint32(lbelow6) + lbelow7 -= lbelow8 + + m12 <<= 16 + m13 += uint32(lbelow7) + + m13 <<= 24 + m1 += int64(m12) + + m1 += int64(m13) + m2 = 2279 + + lbelow9 = l - 9 + m3 = 2343 + + lbelow10 = l - 10 + lbelow11 = l - 11 + + lbelow9 >>= 31 + lbelow12 = l - 12 + + lbelow10 >>= 31 + p += lbelow9 + + m20 = uint32(m[p+8]) + lbelow11 >>= 31 + p += lbelow10 + + m21 = uint32(m[p+9]) + lbelow12 >>= 31 + p += lbelow11 + + m22 = uint32(m[p+10]) + m2 <<= 51 + p += lbelow12 + + m23 = uint32(m[p+11]) + m20 &^= uint32(lbelow9) + lbelow8 -= lbelow9 + + m20 += uint32(lbelow8) + lbelow9 -= lbelow10 + + m21 &^= uint32(lbelow10) + m21 += uint32(lbelow9) + + m21 <<= 8 + m2 += int64(m20) + + m2 += int64(m21) + m22 &^= uint32(lbelow11) + + lbelow10 -= lbelow11 + m23 &^= uint32(lbelow12) + + m22 += uint32(lbelow10) + lbelow11 -= lbelow12 + + m22 <<= 16 + m23 += uint32(lbelow11) + + m23 <<= 24 + m2 += int64(m22) + + m3 <<= 51 + lbelow13 = l - 13 + + lbelow13 >>= 31 + lbelow14 = l - 14 + + lbelow14 >>= 31 + p += lbelow13 + lbelow15 = l - 15 + + m30 = uint32(m[p+12]) + lbelow15 >>= 31 + p += lbelow14 + + m31 = uint32(m[p+13]) + p += lbelow15 + m2 += int64(m23) + + m32 = uint32(m[p+14]) + m30 &^= uint32(lbelow13) + lbelow12 -= lbelow13 + + m30 += uint32(lbelow12) + lbelow13 -= lbelow14 + + m3 += int64(m30) + m31 &^= uint32(lbelow14) + + m31 += uint32(lbelow13) + m32 &^= uint32(lbelow15) + + m31 <<= 8 + lbelow14 -= lbelow15 + + m3 += int64(m31) + m32 += uint32(lbelow14) + d0 = m0 + + m32 <<= 16 + m33 = uint64(lbelow15 + 1) + d1 = m1 + + m33 <<= 24 + m3 += int64(m32) + d2 = m2 + + m3 += int64(m33) + d3 = m3 + + z3 = math.Float64frombits(uint64(d3)) + + z2 = math.Float64frombits(uint64(d2)) + + z1 = math.Float64frombits(uint64(d1)) + + z0 = math.Float64frombits(uint64(d0)) + + z3 -= alpha96 + + z2 -= alpha64 + + z1 -= alpha32 + + z0 -= alpha0 + + h5 += z3 + + h3 += z2 + + h1 += z1 + + h0 += z0 + + y7 = h7 + alpha130 + + y6 = h6 + alpha130 + + y1 = h1 + alpha32 + + y0 = h0 + alpha32 + + y7 -= alpha130 + + y6 -= alpha130 + + y1 -= alpha32 + + y0 -= alpha32 + + y5 = h5 + alpha96 + + y4 = h4 + alpha96 + + x7 = h7 - y7 + y7 *= scale + + x6 = h6 - y6 + y6 *= scale + + x1 = h1 - y1 + + x0 = h0 - y0 + + y5 -= alpha96 + + y4 -= alpha96 + + x1 += y7 + + x0 += y6 + + x7 += y5 + + x6 += y4 + + y3 = h3 + alpha64 + + y2 = h2 + alpha64 + + x0 += x1 + + x6 += x7 + + y3 -= alpha64 + r3low = r3low_stack + + y2 -= alpha64 + r0low = r0low_stack + + x5 = h5 - y5 + r3lowx0 = r3low * x0 + r3high = r3high_stack + + x4 = h4 - y4 + r0lowx6 = r0low * x6 + r0high = r0high_stack + + x3 = h3 - y3 + r3highx0 = r3high * x0 + sr1low = sr1low_stack + + x2 = h2 - y2 + r0highx6 = r0high * x6 + sr1high = sr1high_stack + + x5 += y3 + r0lowx0 = r0low * x0 + r1low = r1low_stack + + h6 = r3lowx0 + r0lowx6 + sr1lowx6 = sr1low * x6 + r1high = r1high_stack + + x4 += y2 + r0highx0 = r0high * x0 + sr2low = sr2low_stack + + h7 = r3highx0 + r0highx6 + sr1highx6 = sr1high * x6 + sr2high = sr2high_stack + + x3 += y1 + r1lowx0 = r1low * x0 + r2low = r2low_stack + + h0 = r0lowx0 + sr1lowx6 + sr2lowx6 = sr2low * x6 + r2high = r2high_stack + + x2 += y0 + r1highx0 = r1high * x0 + sr3low = sr3low_stack + + h1 = r0highx0 + sr1highx6 + sr2highx6 = sr2high * x6 + sr3high = sr3high_stack + + x4 += x5 + r2lowx0 = r2low * x0 + + h2 = r1lowx0 + sr2lowx6 + sr3lowx6 = sr3low * x6 + + x2 += x3 + r2highx0 = r2high * x0 + + h3 = r1highx0 + sr2highx6 + sr3highx6 = sr3high * x6 + + r1highx4 = r1high * x4 + + h4 = r2lowx0 + sr3lowx6 + r1lowx4 = r1low * x4 + + r0highx4 = r0high * x4 + + h5 = r2highx0 + sr3highx6 + r0lowx4 = r0low * x4 + + h7 += r1highx4 + sr3highx4 = sr3high * x4 + + h6 += r1lowx4 + sr3lowx4 = sr3low * x4 + + h5 += r0highx4 + sr2highx4 = sr2high * x4 + + h4 += r0lowx4 + sr2lowx4 = sr2low * x4 + + h3 += sr3highx4 + r0lowx2 = r0low * x2 + + h2 += sr3lowx4 + r0highx2 = r0high * x2 + + h1 += sr2highx4 + r1lowx2 = r1low * x2 + + h0 += sr2lowx4 + r1highx2 = r1high * x2 + + h2 += r0lowx2 + r2lowx2 = r2low * x2 + + h3 += r0highx2 + r2highx2 = r2high * x2 + + h4 += r1lowx2 + sr3lowx2 = sr3low * x2 + + h5 += r1highx2 + sr3highx2 = sr3high * x2 + + h6 += r2lowx2 + + h7 += r2highx2 + + h0 += sr3lowx2 + + h1 += sr3highx2 + +nomorebytes: + + y7 = h7 + alpha130 + + y0 = h0 + alpha32 + + y1 = h1 + alpha32 + + y2 = h2 + alpha64 + + y7 -= alpha130 + + y3 = h3 + alpha64 + + y4 = h4 + alpha96 + + y5 = h5 + alpha96 + + x7 = h7 - y7 + y7 *= scale + + y0 -= alpha32 + + y1 -= alpha32 + + y2 -= alpha64 + + h6 += x7 + + y3 -= alpha64 + + y4 -= alpha96 + + y5 -= alpha96 + + y6 = h6 + alpha130 + + x0 = h0 - y0 + + x1 = h1 - y1 + + x2 = h2 - y2 + + y6 -= alpha130 + + x0 += y7 + + x3 = h3 - y3 + + x4 = h4 - y4 + + x5 = h5 - y5 + + x6 = h6 - y6 + + y6 *= scale + + x2 += y0 + + x3 += y1 + + x4 += y2 + + x0 += y6 + + x5 += y3 + + x6 += y4 + + x2 += x3 + + x0 += x1 + + x4 += x5 + + x6 += y5 + + x2 += offset1 + d1 = int64(math.Float64bits(x2)) + + x0 += offset0 + d0 = int64(math.Float64bits(x0)) + + x4 += offset2 + d2 = int64(math.Float64bits(x4)) + + x6 += offset3 + d3 = int64(math.Float64bits(x6)) + + f0 = uint64(d0) + + f1 = uint64(d1) + bits32 = math.MaxUint64 + + f2 = uint64(d2) + bits32 >>= 32 + + f3 = uint64(d3) + f = f0 >> 32 + + f0 &= bits32 + f &= 255 + + f1 += f + g0 = f0 + 5 + + g = g0 >> 32 + g0 &= bits32 + + f = f1 >> 32 + f1 &= bits32 + + f &= 255 + g1 = f1 + g + + g = g1 >> 32 + f2 += f + + f = f2 >> 32 + g1 &= bits32 + + f2 &= bits32 + f &= 255 + + f3 += f + g2 = f2 + g + + g = g2 >> 32 + g2 &= bits32 + + f4 = f3 >> 32 + f3 &= bits32 + + f4 &= 255 + g3 = f3 + g + + g = g3 >> 32 + g3 &= bits32 + + g4 = f4 + g + + g4 = g4 - 4 + s00 = uint32(s[0]) + + f = uint64(int64(g4) >> 63) + s01 = uint32(s[1]) + + f0 &= f + g0 &^= f + s02 = uint32(s[2]) + + f1 &= f + f0 |= g0 + s03 = uint32(s[3]) + + g1 &^= f + f2 &= f + s10 = uint32(s[4]) + + f3 &= f + g2 &^= f + s11 = uint32(s[5]) + + g3 &^= f + f1 |= g1 + s12 = uint32(s[6]) + + f2 |= g2 + f3 |= g3 + s13 = uint32(s[7]) + + s01 <<= 8 + f0 += uint64(s00) + s20 = uint32(s[8]) + + s02 <<= 16 + f0 += uint64(s01) + s21 = uint32(s[9]) + + s03 <<= 24 + f0 += uint64(s02) + s22 = uint32(s[10]) + + s11 <<= 8 + f1 += uint64(s10) + s23 = uint32(s[11]) + + s12 <<= 16 + f1 += uint64(s11) + s30 = uint32(s[12]) + + s13 <<= 24 + f1 += uint64(s12) + s31 = uint32(s[13]) + + f0 += uint64(s03) + f1 += uint64(s13) + s32 = uint32(s[14]) + + s21 <<= 8 + f2 += uint64(s20) + s33 = uint32(s[15]) + + s22 <<= 16 + f2 += uint64(s21) + + s23 <<= 24 + f2 += uint64(s22) + + s31 <<= 8 + f3 += uint64(s30) + + s32 <<= 16 + f3 += uint64(s31) + + s33 <<= 24 + f3 += uint64(s32) + + f2 += uint64(s23) + f3 += uint64(s33) + + out[0] = byte(f0) + f0 >>= 8 + out[1] = byte(f0) + f0 >>= 8 + out[2] = byte(f0) + f0 >>= 8 + out[3] = byte(f0) + f0 >>= 8 + f1 += f0 + + out[4] = byte(f1) + f1 >>= 8 + out[5] = byte(f1) + f1 >>= 8 + out[6] = byte(f1) + f1 >>= 8 + out[7] = byte(f1) + f1 >>= 8 + f2 += f1 + + out[8] = byte(f2) + f2 >>= 8 + out[9] = byte(f2) + f2 >>= 8 + out[10] = byte(f2) + f2 >>= 8 + out[11] = byte(f2) + f2 >>= 8 + f3 += f2 + + out[12] = byte(f3) + f3 >>= 8 + out[13] = byte(f3) + f3 >>= 8 + out[14] = byte(f3) + f3 >>= 8 + out[15] = byte(f3) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160.go new file mode 100644 index 00000000..da690f0b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160.go @@ -0,0 +1,120 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ripemd160 implements the RIPEMD-160 hash algorithm. +package ripemd160 + +// RIPEMD-160 is designed by by Hans Dobbertin, Antoon Bosselaers, and Bart +// Preneel with specifications available at: +// http://homes.esat.kuleuven.be/~cosicart/pdf/AB-9601/AB-9601.pdf. + +import ( + "crypto" + "hash" +) + +func init() { + crypto.RegisterHash(crypto.RIPEMD160, New) +} + +// The size of the checksum in bytes. +const Size = 20 + +// The block size of the hash algorithm in bytes. +const BlockSize = 64 + +const ( + _s0 = 0x67452301 + _s1 = 0xefcdab89 + _s2 = 0x98badcfe + _s3 = 0x10325476 + _s4 = 0xc3d2e1f0 +) + +// digest represents the partial evaluation of a checksum. +type digest struct { + s [5]uint32 // running context + x [BlockSize]byte // temporary buffer + nx int // index into x + tc uint64 // total count of bytes processed +} + +func (d *digest) Reset() { + d.s[0], d.s[1], d.s[2], d.s[3], d.s[4] = _s0, _s1, _s2, _s3, _s4 + d.nx = 0 + d.tc = 0 +} + +// New returns a new hash.Hash computing the checksum. +func New() hash.Hash { + result := new(digest) + result.Reset() + return result +} + +func (d *digest) Size() int { return Size } + +func (d *digest) BlockSize() int { return BlockSize } + +func (d *digest) Write(p []byte) (nn int, err error) { + nn = len(p) + d.tc += uint64(nn) + if d.nx > 0 { + n := len(p) + if n > BlockSize-d.nx { + n = BlockSize - d.nx + } + for i := 0; i < n; i++ { + d.x[d.nx+i] = p[i] + } + d.nx += n + if d.nx == BlockSize { + _Block(d, d.x[0:]) + d.nx = 0 + } + p = p[n:] + } + n := _Block(d, p) + p = p[n:] + if len(p) > 0 { + d.nx = copy(d.x[:], p) + } + return +} + +func (d0 *digest) Sum(in []byte) []byte { + // Make a copy of d0 so that caller can keep writing and summing. + d := *d0 + + // Padding. Add a 1 bit and 0 bits until 56 bytes mod 64. + tc := d.tc + var tmp [64]byte + tmp[0] = 0x80 + if tc%64 < 56 { + d.Write(tmp[0 : 56-tc%64]) + } else { + d.Write(tmp[0 : 64+56-tc%64]) + } + + // Length in bits. + tc <<= 3 + for i := uint(0); i < 8; i++ { + tmp[i] = byte(tc >> (8 * i)) + } + d.Write(tmp[0:8]) + + if d.nx != 0 { + panic("d.nx != 0") + } + + var digest [Size]byte + for i, s := range d.s { + digest[i*4] = byte(s) + digest[i*4+1] = byte(s >> 8) + digest[i*4+2] = byte(s >> 16) + digest[i*4+3] = byte(s >> 24) + } + + return append(in, digest[:]...) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160_test.go new file mode 100644 index 00000000..5df1b259 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160_test.go @@ -0,0 +1,64 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ripemd160 + +// Test vectors are from: +// http://homes.esat.kuleuven.be/~bosselae/ripemd160.html + +import ( + "fmt" + "io" + "testing" +) + +type mdTest struct { + out string + in string +} + +var vectors = [...]mdTest{ + {"9c1185a5c5e9fc54612808977ee8f548b2258d31", ""}, + {"0bdc9d2d256b3ee9daae347be6f4dc835a467ffe", "a"}, + {"8eb208f7e05d987a9b044a8e98c6b087f15a0bfc", "abc"}, + {"5d0689ef49d2fae572b881b123a85ffa21595f36", "message digest"}, + {"f71c27109c692c1b56bbdceb5b9d2865b3708dbc", "abcdefghijklmnopqrstuvwxyz"}, + {"12a053384a9c0c88e405a06c27dcf49ada62eb2b", "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"}, + {"b0e20b6e3116640286ed3a87a5713079b21f5189", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"}, + {"9b752e45573d4b39f4dbd3323cab82bf63326bfb", "12345678901234567890123456789012345678901234567890123456789012345678901234567890"}, +} + +func TestVectors(t *testing.T) { + for i := 0; i < len(vectors); i++ { + tv := vectors[i] + md := New() + for j := 0; j < 3; j++ { + if j < 2 { + io.WriteString(md, tv.in) + } else { + io.WriteString(md, tv.in[0:len(tv.in)/2]) + md.Sum(nil) + io.WriteString(md, tv.in[len(tv.in)/2:]) + } + s := fmt.Sprintf("%x", md.Sum(nil)) + if s != tv.out { + t.Fatalf("RIPEMD-160[%d](%s) = %s, expected %s", j, tv.in, s, tv.out) + } + md.Reset() + } + } +} + +func TestMillionA(t *testing.T) { + md := New() + for i := 0; i < 100000; i++ { + io.WriteString(md, "aaaaaaaaaa") + } + out := "52783243c1697bdbe16d37f97f68f08325dc1528" + s := fmt.Sprintf("%x", md.Sum(nil)) + if s != out { + t.Fatalf("RIPEMD-160 (1 million 'a') = %s, expected %s", s, out) + } + md.Reset() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160block.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160block.go new file mode 100644 index 00000000..7bc8e6c4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ripemd160/ripemd160block.go @@ -0,0 +1,161 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// RIPEMD-160 block step. +// In its own file so that a faster assembly or C version +// can be substituted easily. + +package ripemd160 + +// work buffer indices and roll amounts for one line +var _n = [80]uint{ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, + 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, + 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, + 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13, +} + +var _r = [80]uint{ + 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, + 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, + 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, + 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, + 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6, +} + +// same for the other parallel one +var n_ = [80]uint{ + 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, + 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, + 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, + 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, + 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11, +} + +var r_ = [80]uint{ + 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, + 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, + 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, + 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, + 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11, +} + +func _Block(md *digest, p []byte) int { + n := 0 + var x [16]uint32 + var alpha, beta uint32 + for len(p) >= BlockSize { + a, b, c, d, e := md.s[0], md.s[1], md.s[2], md.s[3], md.s[4] + aa, bb, cc, dd, ee := a, b, c, d, e + j := 0 + for i := 0; i < 16; i++ { + x[i] = uint32(p[j]) | uint32(p[j+1])<<8 | uint32(p[j+2])<<16 | uint32(p[j+3])<<24 + j += 4 + } + + // round 1 + i := 0 + for i < 16 { + alpha = a + (b ^ c ^ d) + x[_n[i]] + s := _r[i] + alpha = (alpha<>(32-s)) + e + beta = c<<10 | c>>22 + a, b, c, d, e = e, alpha, b, beta, d + + // parallel line + alpha = aa + (bb ^ (cc | ^dd)) + x[n_[i]] + 0x50a28be6 + s = r_[i] + alpha = (alpha<>(32-s)) + ee + beta = cc<<10 | cc>>22 + aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd + + i++ + } + + // round 2 + for i < 32 { + alpha = a + (b&c | ^b&d) + x[_n[i]] + 0x5a827999 + s := _r[i] + alpha = (alpha<>(32-s)) + e + beta = c<<10 | c>>22 + a, b, c, d, e = e, alpha, b, beta, d + + // parallel line + alpha = aa + (bb&dd | cc&^dd) + x[n_[i]] + 0x5c4dd124 + s = r_[i] + alpha = (alpha<>(32-s)) + ee + beta = cc<<10 | cc>>22 + aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd + + i++ + } + + // round 3 + for i < 48 { + alpha = a + (b | ^c ^ d) + x[_n[i]] + 0x6ed9eba1 + s := _r[i] + alpha = (alpha<>(32-s)) + e + beta = c<<10 | c>>22 + a, b, c, d, e = e, alpha, b, beta, d + + // parallel line + alpha = aa + (bb | ^cc ^ dd) + x[n_[i]] + 0x6d703ef3 + s = r_[i] + alpha = (alpha<>(32-s)) + ee + beta = cc<<10 | cc>>22 + aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd + + i++ + } + + // round 4 + for i < 64 { + alpha = a + (b&d | c&^d) + x[_n[i]] + 0x8f1bbcdc + s := _r[i] + alpha = (alpha<>(32-s)) + e + beta = c<<10 | c>>22 + a, b, c, d, e = e, alpha, b, beta, d + + // parallel line + alpha = aa + (bb&cc | ^bb&dd) + x[n_[i]] + 0x7a6d76e9 + s = r_[i] + alpha = (alpha<>(32-s)) + ee + beta = cc<<10 | cc>>22 + aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd + + i++ + } + + // round 5 + for i < 80 { + alpha = a + (b ^ (c | ^d)) + x[_n[i]] + 0xa953fd4e + s := _r[i] + alpha = (alpha<>(32-s)) + e + beta = c<<10 | c>>22 + a, b, c, d, e = e, alpha, b, beta, d + + // parallel line + alpha = aa + (bb ^ cc ^ dd) + x[n_[i]] + s = r_[i] + alpha = (alpha<>(32-s)) + ee + beta = cc<<10 | cc>>22 + aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd + + i++ + } + + // combine results + dd += c + md.s[1] + md.s[1] = md.s[2] + d + ee + md.s[2] = md.s[3] + e + aa + md.s[3] = md.s[4] + a + bb + md.s[4] = md.s[0] + b + cc + md.s[0] = dd + + p = p[BlockSize:] + n += BlockSize + } + return n +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/hsalsa20.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/hsalsa20.go new file mode 100644 index 00000000..4ba47d59 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/hsalsa20.go @@ -0,0 +1,144 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package salsa provides low-level access to functions in the Salsa family. +package salsa + +// Sigma is the Salsa20 constant for 256-bit keys. +var Sigma = [16]byte{'e', 'x', 'p', 'a', 'n', 'd', ' ', '3', '2', '-', 'b', 'y', 't', 'e', ' ', 'k'} + +// HSalsa20 applies the HSalsa20 core function to a 16-byte input in, 32-byte +// key k, and 16-byte constant c, and puts the result into the 32-byte array +// out. +func HSalsa20(out *[32]byte, in *[16]byte, k *[32]byte, c *[16]byte) { + x0 := uint32(c[0]) | uint32(c[1])<<8 | uint32(c[2])<<16 | uint32(c[3])<<24 + x1 := uint32(k[0]) | uint32(k[1])<<8 | uint32(k[2])<<16 | uint32(k[3])<<24 + x2 := uint32(k[4]) | uint32(k[5])<<8 | uint32(k[6])<<16 | uint32(k[7])<<24 + x3 := uint32(k[8]) | uint32(k[9])<<8 | uint32(k[10])<<16 | uint32(k[11])<<24 + x4 := uint32(k[12]) | uint32(k[13])<<8 | uint32(k[14])<<16 | uint32(k[15])<<24 + x5 := uint32(c[4]) | uint32(c[5])<<8 | uint32(c[6])<<16 | uint32(c[7])<<24 + x6 := uint32(in[0]) | uint32(in[1])<<8 | uint32(in[2])<<16 | uint32(in[3])<<24 + x7 := uint32(in[4]) | uint32(in[5])<<8 | uint32(in[6])<<16 | uint32(in[7])<<24 + x8 := uint32(in[8]) | uint32(in[9])<<8 | uint32(in[10])<<16 | uint32(in[11])<<24 + x9 := uint32(in[12]) | uint32(in[13])<<8 | uint32(in[14])<<16 | uint32(in[15])<<24 + x10 := uint32(c[8]) | uint32(c[9])<<8 | uint32(c[10])<<16 | uint32(c[11])<<24 + x11 := uint32(k[16]) | uint32(k[17])<<8 | uint32(k[18])<<16 | uint32(k[19])<<24 + x12 := uint32(k[20]) | uint32(k[21])<<8 | uint32(k[22])<<16 | uint32(k[23])<<24 + x13 := uint32(k[24]) | uint32(k[25])<<8 | uint32(k[26])<<16 | uint32(k[27])<<24 + x14 := uint32(k[28]) | uint32(k[29])<<8 | uint32(k[30])<<16 | uint32(k[31])<<24 + x15 := uint32(c[12]) | uint32(c[13])<<8 | uint32(c[14])<<16 | uint32(c[15])<<24 + + for i := 0; i < 20; i += 2 { + u := x0 + x12 + x4 ^= u<<7 | u>>(32-7) + u = x4 + x0 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x4 + x12 ^= u<<13 | u>>(32-13) + u = x12 + x8 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x1 + x9 ^= u<<7 | u>>(32-7) + u = x9 + x5 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x9 + x1 ^= u<<13 | u>>(32-13) + u = x1 + x13 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x6 + x14 ^= u<<7 | u>>(32-7) + u = x14 + x10 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x14 + x6 ^= u<<13 | u>>(32-13) + u = x6 + x2 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x11 + x3 ^= u<<7 | u>>(32-7) + u = x3 + x15 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x3 + x11 ^= u<<13 | u>>(32-13) + u = x11 + x7 + x15 ^= u<<18 | u>>(32-18) + + u = x0 + x3 + x1 ^= u<<7 | u>>(32-7) + u = x1 + x0 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x1 + x3 ^= u<<13 | u>>(32-13) + u = x3 + x2 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x4 + x6 ^= u<<7 | u>>(32-7) + u = x6 + x5 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x6 + x4 ^= u<<13 | u>>(32-13) + u = x4 + x7 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x9 + x11 ^= u<<7 | u>>(32-7) + u = x11 + x10 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x11 + x9 ^= u<<13 | u>>(32-13) + u = x9 + x8 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x14 + x12 ^= u<<7 | u>>(32-7) + u = x12 + x15 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x12 + x14 ^= u<<13 | u>>(32-13) + u = x14 + x13 + x15 ^= u<<18 | u>>(32-18) + } + out[0] = byte(x0) + out[1] = byte(x0 >> 8) + out[2] = byte(x0 >> 16) + out[3] = byte(x0 >> 24) + + out[4] = byte(x5) + out[5] = byte(x5 >> 8) + out[6] = byte(x5 >> 16) + out[7] = byte(x5 >> 24) + + out[8] = byte(x10) + out[9] = byte(x10 >> 8) + out[10] = byte(x10 >> 16) + out[11] = byte(x10 >> 24) + + out[12] = byte(x15) + out[13] = byte(x15 >> 8) + out[14] = byte(x15 >> 16) + out[15] = byte(x15 >> 24) + + out[16] = byte(x6) + out[17] = byte(x6 >> 8) + out[18] = byte(x6 >> 16) + out[19] = byte(x6 >> 24) + + out[20] = byte(x7) + out[21] = byte(x7 >> 8) + out[22] = byte(x7 >> 16) + out[23] = byte(x7 >> 24) + + out[24] = byte(x8) + out[25] = byte(x8 >> 8) + out[26] = byte(x8 >> 16) + out[27] = byte(x8 >> 24) + + out[28] = byte(x9) + out[29] = byte(x9 >> 8) + out[30] = byte(x9 >> 16) + out[31] = byte(x9 >> 24) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa2020_amd64.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa2020_amd64.s new file mode 100644 index 00000000..6e1df963 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa2020_amd64.s @@ -0,0 +1,902 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!appengine,!gccgo + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html + +// func salsa2020XORKeyStream(out, in *byte, n uint64, nonce, key *byte) +TEXT ·salsa2020XORKeyStream(SB),0,$512-40 + MOVQ out+0(FP),DI + MOVQ in+8(FP),SI + MOVQ n+16(FP),DX + MOVQ nonce+24(FP),CX + MOVQ key+32(FP),R8 + + MOVQ SP,R11 + MOVQ $31,R9 + NOTQ R9 + ANDQ R9,SP + ADDQ $32,SP + + MOVQ R11,352(SP) + MOVQ R12,360(SP) + MOVQ R13,368(SP) + MOVQ R14,376(SP) + MOVQ R15,384(SP) + MOVQ BX,392(SP) + MOVQ BP,400(SP) + MOVQ DX,R9 + MOVQ CX,DX + MOVQ R8,R10 + CMPQ R9,$0 + JBE DONE + START: + MOVL 20(R10),CX + MOVL 0(R10),R8 + MOVL 0(DX),AX + MOVL 16(R10),R11 + MOVL CX,0(SP) + MOVL R8, 4 (SP) + MOVL AX, 8 (SP) + MOVL R11, 12 (SP) + MOVL 8(DX),CX + MOVL 24(R10),R8 + MOVL 4(R10),AX + MOVL 4(DX),R11 + MOVL CX,16(SP) + MOVL R8, 20 (SP) + MOVL AX, 24 (SP) + MOVL R11, 28 (SP) + MOVL 12(DX),CX + MOVL 12(R10),DX + MOVL 28(R10),R8 + MOVL 8(R10),AX + MOVL DX,32(SP) + MOVL CX, 36 (SP) + MOVL R8, 40 (SP) + MOVL AX, 44 (SP) + MOVQ $1634760805,DX + MOVQ $857760878,CX + MOVQ $2036477234,R8 + MOVQ $1797285236,AX + MOVL DX,48(SP) + MOVL CX, 52 (SP) + MOVL R8, 56 (SP) + MOVL AX, 60 (SP) + CMPQ R9,$256 + JB BYTESBETWEEN1AND255 + MOVOA 48(SP),X0 + PSHUFL $0X55,X0,X1 + PSHUFL $0XAA,X0,X2 + PSHUFL $0XFF,X0,X3 + PSHUFL $0X00,X0,X0 + MOVOA X1,64(SP) + MOVOA X2,80(SP) + MOVOA X3,96(SP) + MOVOA X0,112(SP) + MOVOA 0(SP),X0 + PSHUFL $0XAA,X0,X1 + PSHUFL $0XFF,X0,X2 + PSHUFL $0X00,X0,X3 + PSHUFL $0X55,X0,X0 + MOVOA X1,128(SP) + MOVOA X2,144(SP) + MOVOA X3,160(SP) + MOVOA X0,176(SP) + MOVOA 16(SP),X0 + PSHUFL $0XFF,X0,X1 + PSHUFL $0X55,X0,X2 + PSHUFL $0XAA,X0,X0 + MOVOA X1,192(SP) + MOVOA X2,208(SP) + MOVOA X0,224(SP) + MOVOA 32(SP),X0 + PSHUFL $0X00,X0,X1 + PSHUFL $0XAA,X0,X2 + PSHUFL $0XFF,X0,X0 + MOVOA X1,240(SP) + MOVOA X2,256(SP) + MOVOA X0,272(SP) + BYTESATLEAST256: + MOVL 16(SP),DX + MOVL 36 (SP),CX + MOVL DX,288(SP) + MOVL CX,304(SP) + ADDQ $1,DX + SHLQ $32,CX + ADDQ CX,DX + MOVQ DX,CX + SHRQ $32,CX + MOVL DX, 292 (SP) + MOVL CX, 308 (SP) + ADDQ $1,DX + SHLQ $32,CX + ADDQ CX,DX + MOVQ DX,CX + SHRQ $32,CX + MOVL DX, 296 (SP) + MOVL CX, 312 (SP) + ADDQ $1,DX + SHLQ $32,CX + ADDQ CX,DX + MOVQ DX,CX + SHRQ $32,CX + MOVL DX, 300 (SP) + MOVL CX, 316 (SP) + ADDQ $1,DX + SHLQ $32,CX + ADDQ CX,DX + MOVQ DX,CX + SHRQ $32,CX + MOVL DX,16(SP) + MOVL CX, 36 (SP) + MOVQ R9,408(SP) + MOVQ $20,DX + MOVOA 64(SP),X0 + MOVOA 80(SP),X1 + MOVOA 96(SP),X2 + MOVOA 256(SP),X3 + MOVOA 272(SP),X4 + MOVOA 128(SP),X5 + MOVOA 144(SP),X6 + MOVOA 176(SP),X7 + MOVOA 192(SP),X8 + MOVOA 208(SP),X9 + MOVOA 224(SP),X10 + MOVOA 304(SP),X11 + MOVOA 112(SP),X12 + MOVOA 160(SP),X13 + MOVOA 240(SP),X14 + MOVOA 288(SP),X15 + MAINLOOP1: + MOVOA X1,320(SP) + MOVOA X2,336(SP) + MOVOA X13,X1 + PADDL X12,X1 + MOVOA X1,X2 + PSLLL $7,X1 + PXOR X1,X14 + PSRLL $25,X2 + PXOR X2,X14 + MOVOA X7,X1 + PADDL X0,X1 + MOVOA X1,X2 + PSLLL $7,X1 + PXOR X1,X11 + PSRLL $25,X2 + PXOR X2,X11 + MOVOA X12,X1 + PADDL X14,X1 + MOVOA X1,X2 + PSLLL $9,X1 + PXOR X1,X15 + PSRLL $23,X2 + PXOR X2,X15 + MOVOA X0,X1 + PADDL X11,X1 + MOVOA X1,X2 + PSLLL $9,X1 + PXOR X1,X9 + PSRLL $23,X2 + PXOR X2,X9 + MOVOA X14,X1 + PADDL X15,X1 + MOVOA X1,X2 + PSLLL $13,X1 + PXOR X1,X13 + PSRLL $19,X2 + PXOR X2,X13 + MOVOA X11,X1 + PADDL X9,X1 + MOVOA X1,X2 + PSLLL $13,X1 + PXOR X1,X7 + PSRLL $19,X2 + PXOR X2,X7 + MOVOA X15,X1 + PADDL X13,X1 + MOVOA X1,X2 + PSLLL $18,X1 + PXOR X1,X12 + PSRLL $14,X2 + PXOR X2,X12 + MOVOA 320(SP),X1 + MOVOA X12,320(SP) + MOVOA X9,X2 + PADDL X7,X2 + MOVOA X2,X12 + PSLLL $18,X2 + PXOR X2,X0 + PSRLL $14,X12 + PXOR X12,X0 + MOVOA X5,X2 + PADDL X1,X2 + MOVOA X2,X12 + PSLLL $7,X2 + PXOR X2,X3 + PSRLL $25,X12 + PXOR X12,X3 + MOVOA 336(SP),X2 + MOVOA X0,336(SP) + MOVOA X6,X0 + PADDL X2,X0 + MOVOA X0,X12 + PSLLL $7,X0 + PXOR X0,X4 + PSRLL $25,X12 + PXOR X12,X4 + MOVOA X1,X0 + PADDL X3,X0 + MOVOA X0,X12 + PSLLL $9,X0 + PXOR X0,X10 + PSRLL $23,X12 + PXOR X12,X10 + MOVOA X2,X0 + PADDL X4,X0 + MOVOA X0,X12 + PSLLL $9,X0 + PXOR X0,X8 + PSRLL $23,X12 + PXOR X12,X8 + MOVOA X3,X0 + PADDL X10,X0 + MOVOA X0,X12 + PSLLL $13,X0 + PXOR X0,X5 + PSRLL $19,X12 + PXOR X12,X5 + MOVOA X4,X0 + PADDL X8,X0 + MOVOA X0,X12 + PSLLL $13,X0 + PXOR X0,X6 + PSRLL $19,X12 + PXOR X12,X6 + MOVOA X10,X0 + PADDL X5,X0 + MOVOA X0,X12 + PSLLL $18,X0 + PXOR X0,X1 + PSRLL $14,X12 + PXOR X12,X1 + MOVOA 320(SP),X0 + MOVOA X1,320(SP) + MOVOA X4,X1 + PADDL X0,X1 + MOVOA X1,X12 + PSLLL $7,X1 + PXOR X1,X7 + PSRLL $25,X12 + PXOR X12,X7 + MOVOA X8,X1 + PADDL X6,X1 + MOVOA X1,X12 + PSLLL $18,X1 + PXOR X1,X2 + PSRLL $14,X12 + PXOR X12,X2 + MOVOA 336(SP),X12 + MOVOA X2,336(SP) + MOVOA X14,X1 + PADDL X12,X1 + MOVOA X1,X2 + PSLLL $7,X1 + PXOR X1,X5 + PSRLL $25,X2 + PXOR X2,X5 + MOVOA X0,X1 + PADDL X7,X1 + MOVOA X1,X2 + PSLLL $9,X1 + PXOR X1,X10 + PSRLL $23,X2 + PXOR X2,X10 + MOVOA X12,X1 + PADDL X5,X1 + MOVOA X1,X2 + PSLLL $9,X1 + PXOR X1,X8 + PSRLL $23,X2 + PXOR X2,X8 + MOVOA X7,X1 + PADDL X10,X1 + MOVOA X1,X2 + PSLLL $13,X1 + PXOR X1,X4 + PSRLL $19,X2 + PXOR X2,X4 + MOVOA X5,X1 + PADDL X8,X1 + MOVOA X1,X2 + PSLLL $13,X1 + PXOR X1,X14 + PSRLL $19,X2 + PXOR X2,X14 + MOVOA X10,X1 + PADDL X4,X1 + MOVOA X1,X2 + PSLLL $18,X1 + PXOR X1,X0 + PSRLL $14,X2 + PXOR X2,X0 + MOVOA 320(SP),X1 + MOVOA X0,320(SP) + MOVOA X8,X0 + PADDL X14,X0 + MOVOA X0,X2 + PSLLL $18,X0 + PXOR X0,X12 + PSRLL $14,X2 + PXOR X2,X12 + MOVOA X11,X0 + PADDL X1,X0 + MOVOA X0,X2 + PSLLL $7,X0 + PXOR X0,X6 + PSRLL $25,X2 + PXOR X2,X6 + MOVOA 336(SP),X2 + MOVOA X12,336(SP) + MOVOA X3,X0 + PADDL X2,X0 + MOVOA X0,X12 + PSLLL $7,X0 + PXOR X0,X13 + PSRLL $25,X12 + PXOR X12,X13 + MOVOA X1,X0 + PADDL X6,X0 + MOVOA X0,X12 + PSLLL $9,X0 + PXOR X0,X15 + PSRLL $23,X12 + PXOR X12,X15 + MOVOA X2,X0 + PADDL X13,X0 + MOVOA X0,X12 + PSLLL $9,X0 + PXOR X0,X9 + PSRLL $23,X12 + PXOR X12,X9 + MOVOA X6,X0 + PADDL X15,X0 + MOVOA X0,X12 + PSLLL $13,X0 + PXOR X0,X11 + PSRLL $19,X12 + PXOR X12,X11 + MOVOA X13,X0 + PADDL X9,X0 + MOVOA X0,X12 + PSLLL $13,X0 + PXOR X0,X3 + PSRLL $19,X12 + PXOR X12,X3 + MOVOA X15,X0 + PADDL X11,X0 + MOVOA X0,X12 + PSLLL $18,X0 + PXOR X0,X1 + PSRLL $14,X12 + PXOR X12,X1 + MOVOA X9,X0 + PADDL X3,X0 + MOVOA X0,X12 + PSLLL $18,X0 + PXOR X0,X2 + PSRLL $14,X12 + PXOR X12,X2 + MOVOA 320(SP),X12 + MOVOA 336(SP),X0 + SUBQ $2,DX + JA MAINLOOP1 + PADDL 112(SP),X12 + PADDL 176(SP),X7 + PADDL 224(SP),X10 + PADDL 272(SP),X4 + MOVD X12,DX + MOVD X7,CX + MOVD X10,R8 + MOVD X4,R9 + PSHUFL $0X39,X12,X12 + PSHUFL $0X39,X7,X7 + PSHUFL $0X39,X10,X10 + PSHUFL $0X39,X4,X4 + XORL 0(SI),DX + XORL 4(SI),CX + XORL 8(SI),R8 + XORL 12(SI),R9 + MOVL DX,0(DI) + MOVL CX,4(DI) + MOVL R8,8(DI) + MOVL R9,12(DI) + MOVD X12,DX + MOVD X7,CX + MOVD X10,R8 + MOVD X4,R9 + PSHUFL $0X39,X12,X12 + PSHUFL $0X39,X7,X7 + PSHUFL $0X39,X10,X10 + PSHUFL $0X39,X4,X4 + XORL 64(SI),DX + XORL 68(SI),CX + XORL 72(SI),R8 + XORL 76(SI),R9 + MOVL DX,64(DI) + MOVL CX,68(DI) + MOVL R8,72(DI) + MOVL R9,76(DI) + MOVD X12,DX + MOVD X7,CX + MOVD X10,R8 + MOVD X4,R9 + PSHUFL $0X39,X12,X12 + PSHUFL $0X39,X7,X7 + PSHUFL $0X39,X10,X10 + PSHUFL $0X39,X4,X4 + XORL 128(SI),DX + XORL 132(SI),CX + XORL 136(SI),R8 + XORL 140(SI),R9 + MOVL DX,128(DI) + MOVL CX,132(DI) + MOVL R8,136(DI) + MOVL R9,140(DI) + MOVD X12,DX + MOVD X7,CX + MOVD X10,R8 + MOVD X4,R9 + XORL 192(SI),DX + XORL 196(SI),CX + XORL 200(SI),R8 + XORL 204(SI),R9 + MOVL DX,192(DI) + MOVL CX,196(DI) + MOVL R8,200(DI) + MOVL R9,204(DI) + PADDL 240(SP),X14 + PADDL 64(SP),X0 + PADDL 128(SP),X5 + PADDL 192(SP),X8 + MOVD X14,DX + MOVD X0,CX + MOVD X5,R8 + MOVD X8,R9 + PSHUFL $0X39,X14,X14 + PSHUFL $0X39,X0,X0 + PSHUFL $0X39,X5,X5 + PSHUFL $0X39,X8,X8 + XORL 16(SI),DX + XORL 20(SI),CX + XORL 24(SI),R8 + XORL 28(SI),R9 + MOVL DX,16(DI) + MOVL CX,20(DI) + MOVL R8,24(DI) + MOVL R9,28(DI) + MOVD X14,DX + MOVD X0,CX + MOVD X5,R8 + MOVD X8,R9 + PSHUFL $0X39,X14,X14 + PSHUFL $0X39,X0,X0 + PSHUFL $0X39,X5,X5 + PSHUFL $0X39,X8,X8 + XORL 80(SI),DX + XORL 84(SI),CX + XORL 88(SI),R8 + XORL 92(SI),R9 + MOVL DX,80(DI) + MOVL CX,84(DI) + MOVL R8,88(DI) + MOVL R9,92(DI) + MOVD X14,DX + MOVD X0,CX + MOVD X5,R8 + MOVD X8,R9 + PSHUFL $0X39,X14,X14 + PSHUFL $0X39,X0,X0 + PSHUFL $0X39,X5,X5 + PSHUFL $0X39,X8,X8 + XORL 144(SI),DX + XORL 148(SI),CX + XORL 152(SI),R8 + XORL 156(SI),R9 + MOVL DX,144(DI) + MOVL CX,148(DI) + MOVL R8,152(DI) + MOVL R9,156(DI) + MOVD X14,DX + MOVD X0,CX + MOVD X5,R8 + MOVD X8,R9 + XORL 208(SI),DX + XORL 212(SI),CX + XORL 216(SI),R8 + XORL 220(SI),R9 + MOVL DX,208(DI) + MOVL CX,212(DI) + MOVL R8,216(DI) + MOVL R9,220(DI) + PADDL 288(SP),X15 + PADDL 304(SP),X11 + PADDL 80(SP),X1 + PADDL 144(SP),X6 + MOVD X15,DX + MOVD X11,CX + MOVD X1,R8 + MOVD X6,R9 + PSHUFL $0X39,X15,X15 + PSHUFL $0X39,X11,X11 + PSHUFL $0X39,X1,X1 + PSHUFL $0X39,X6,X6 + XORL 32(SI),DX + XORL 36(SI),CX + XORL 40(SI),R8 + XORL 44(SI),R9 + MOVL DX,32(DI) + MOVL CX,36(DI) + MOVL R8,40(DI) + MOVL R9,44(DI) + MOVD X15,DX + MOVD X11,CX + MOVD X1,R8 + MOVD X6,R9 + PSHUFL $0X39,X15,X15 + PSHUFL $0X39,X11,X11 + PSHUFL $0X39,X1,X1 + PSHUFL $0X39,X6,X6 + XORL 96(SI),DX + XORL 100(SI),CX + XORL 104(SI),R8 + XORL 108(SI),R9 + MOVL DX,96(DI) + MOVL CX,100(DI) + MOVL R8,104(DI) + MOVL R9,108(DI) + MOVD X15,DX + MOVD X11,CX + MOVD X1,R8 + MOVD X6,R9 + PSHUFL $0X39,X15,X15 + PSHUFL $0X39,X11,X11 + PSHUFL $0X39,X1,X1 + PSHUFL $0X39,X6,X6 + XORL 160(SI),DX + XORL 164(SI),CX + XORL 168(SI),R8 + XORL 172(SI),R9 + MOVL DX,160(DI) + MOVL CX,164(DI) + MOVL R8,168(DI) + MOVL R9,172(DI) + MOVD X15,DX + MOVD X11,CX + MOVD X1,R8 + MOVD X6,R9 + XORL 224(SI),DX + XORL 228(SI),CX + XORL 232(SI),R8 + XORL 236(SI),R9 + MOVL DX,224(DI) + MOVL CX,228(DI) + MOVL R8,232(DI) + MOVL R9,236(DI) + PADDL 160(SP),X13 + PADDL 208(SP),X9 + PADDL 256(SP),X3 + PADDL 96(SP),X2 + MOVD X13,DX + MOVD X9,CX + MOVD X3,R8 + MOVD X2,R9 + PSHUFL $0X39,X13,X13 + PSHUFL $0X39,X9,X9 + PSHUFL $0X39,X3,X3 + PSHUFL $0X39,X2,X2 + XORL 48(SI),DX + XORL 52(SI),CX + XORL 56(SI),R8 + XORL 60(SI),R9 + MOVL DX,48(DI) + MOVL CX,52(DI) + MOVL R8,56(DI) + MOVL R9,60(DI) + MOVD X13,DX + MOVD X9,CX + MOVD X3,R8 + MOVD X2,R9 + PSHUFL $0X39,X13,X13 + PSHUFL $0X39,X9,X9 + PSHUFL $0X39,X3,X3 + PSHUFL $0X39,X2,X2 + XORL 112(SI),DX + XORL 116(SI),CX + XORL 120(SI),R8 + XORL 124(SI),R9 + MOVL DX,112(DI) + MOVL CX,116(DI) + MOVL R8,120(DI) + MOVL R9,124(DI) + MOVD X13,DX + MOVD X9,CX + MOVD X3,R8 + MOVD X2,R9 + PSHUFL $0X39,X13,X13 + PSHUFL $0X39,X9,X9 + PSHUFL $0X39,X3,X3 + PSHUFL $0X39,X2,X2 + XORL 176(SI),DX + XORL 180(SI),CX + XORL 184(SI),R8 + XORL 188(SI),R9 + MOVL DX,176(DI) + MOVL CX,180(DI) + MOVL R8,184(DI) + MOVL R9,188(DI) + MOVD X13,DX + MOVD X9,CX + MOVD X3,R8 + MOVD X2,R9 + XORL 240(SI),DX + XORL 244(SI),CX + XORL 248(SI),R8 + XORL 252(SI),R9 + MOVL DX,240(DI) + MOVL CX,244(DI) + MOVL R8,248(DI) + MOVL R9,252(DI) + MOVQ 408(SP),R9 + SUBQ $256,R9 + ADDQ $256,SI + ADDQ $256,DI + CMPQ R9,$256 + JAE BYTESATLEAST256 + CMPQ R9,$0 + JBE DONE + BYTESBETWEEN1AND255: + CMPQ R9,$64 + JAE NOCOPY + MOVQ DI,DX + LEAQ 416(SP),DI + MOVQ R9,CX + REP; MOVSB + LEAQ 416(SP),DI + LEAQ 416(SP),SI + NOCOPY: + MOVQ R9,408(SP) + MOVOA 48(SP),X0 + MOVOA 0(SP),X1 + MOVOA 16(SP),X2 + MOVOA 32(SP),X3 + MOVOA X1,X4 + MOVQ $20,CX + MAINLOOP2: + PADDL X0,X4 + MOVOA X0,X5 + MOVOA X4,X6 + PSLLL $7,X4 + PSRLL $25,X6 + PXOR X4,X3 + PXOR X6,X3 + PADDL X3,X5 + MOVOA X3,X4 + MOVOA X5,X6 + PSLLL $9,X5 + PSRLL $23,X6 + PXOR X5,X2 + PSHUFL $0X93,X3,X3 + PXOR X6,X2 + PADDL X2,X4 + MOVOA X2,X5 + MOVOA X4,X6 + PSLLL $13,X4 + PSRLL $19,X6 + PXOR X4,X1 + PSHUFL $0X4E,X2,X2 + PXOR X6,X1 + PADDL X1,X5 + MOVOA X3,X4 + MOVOA X5,X6 + PSLLL $18,X5 + PSRLL $14,X6 + PXOR X5,X0 + PSHUFL $0X39,X1,X1 + PXOR X6,X0 + PADDL X0,X4 + MOVOA X0,X5 + MOVOA X4,X6 + PSLLL $7,X4 + PSRLL $25,X6 + PXOR X4,X1 + PXOR X6,X1 + PADDL X1,X5 + MOVOA X1,X4 + MOVOA X5,X6 + PSLLL $9,X5 + PSRLL $23,X6 + PXOR X5,X2 + PSHUFL $0X93,X1,X1 + PXOR X6,X2 + PADDL X2,X4 + MOVOA X2,X5 + MOVOA X4,X6 + PSLLL $13,X4 + PSRLL $19,X6 + PXOR X4,X3 + PSHUFL $0X4E,X2,X2 + PXOR X6,X3 + PADDL X3,X5 + MOVOA X1,X4 + MOVOA X5,X6 + PSLLL $18,X5 + PSRLL $14,X6 + PXOR X5,X0 + PSHUFL $0X39,X3,X3 + PXOR X6,X0 + PADDL X0,X4 + MOVOA X0,X5 + MOVOA X4,X6 + PSLLL $7,X4 + PSRLL $25,X6 + PXOR X4,X3 + PXOR X6,X3 + PADDL X3,X5 + MOVOA X3,X4 + MOVOA X5,X6 + PSLLL $9,X5 + PSRLL $23,X6 + PXOR X5,X2 + PSHUFL $0X93,X3,X3 + PXOR X6,X2 + PADDL X2,X4 + MOVOA X2,X5 + MOVOA X4,X6 + PSLLL $13,X4 + PSRLL $19,X6 + PXOR X4,X1 + PSHUFL $0X4E,X2,X2 + PXOR X6,X1 + PADDL X1,X5 + MOVOA X3,X4 + MOVOA X5,X6 + PSLLL $18,X5 + PSRLL $14,X6 + PXOR X5,X0 + PSHUFL $0X39,X1,X1 + PXOR X6,X0 + PADDL X0,X4 + MOVOA X0,X5 + MOVOA X4,X6 + PSLLL $7,X4 + PSRLL $25,X6 + PXOR X4,X1 + PXOR X6,X1 + PADDL X1,X5 + MOVOA X1,X4 + MOVOA X5,X6 + PSLLL $9,X5 + PSRLL $23,X6 + PXOR X5,X2 + PSHUFL $0X93,X1,X1 + PXOR X6,X2 + PADDL X2,X4 + MOVOA X2,X5 + MOVOA X4,X6 + PSLLL $13,X4 + PSRLL $19,X6 + PXOR X4,X3 + PSHUFL $0X4E,X2,X2 + PXOR X6,X3 + SUBQ $4,CX + PADDL X3,X5 + MOVOA X1,X4 + MOVOA X5,X6 + PSLLL $18,X5 + PXOR X7,X7 + PSRLL $14,X6 + PXOR X5,X0 + PSHUFL $0X39,X3,X3 + PXOR X6,X0 + JA MAINLOOP2 + PADDL 48(SP),X0 + PADDL 0(SP),X1 + PADDL 16(SP),X2 + PADDL 32(SP),X3 + MOVD X0,CX + MOVD X1,R8 + MOVD X2,R9 + MOVD X3,AX + PSHUFL $0X39,X0,X0 + PSHUFL $0X39,X1,X1 + PSHUFL $0X39,X2,X2 + PSHUFL $0X39,X3,X3 + XORL 0(SI),CX + XORL 48(SI),R8 + XORL 32(SI),R9 + XORL 16(SI),AX + MOVL CX,0(DI) + MOVL R8,48(DI) + MOVL R9,32(DI) + MOVL AX,16(DI) + MOVD X0,CX + MOVD X1,R8 + MOVD X2,R9 + MOVD X3,AX + PSHUFL $0X39,X0,X0 + PSHUFL $0X39,X1,X1 + PSHUFL $0X39,X2,X2 + PSHUFL $0X39,X3,X3 + XORL 20(SI),CX + XORL 4(SI),R8 + XORL 52(SI),R9 + XORL 36(SI),AX + MOVL CX,20(DI) + MOVL R8,4(DI) + MOVL R9,52(DI) + MOVL AX,36(DI) + MOVD X0,CX + MOVD X1,R8 + MOVD X2,R9 + MOVD X3,AX + PSHUFL $0X39,X0,X0 + PSHUFL $0X39,X1,X1 + PSHUFL $0X39,X2,X2 + PSHUFL $0X39,X3,X3 + XORL 40(SI),CX + XORL 24(SI),R8 + XORL 8(SI),R9 + XORL 56(SI),AX + MOVL CX,40(DI) + MOVL R8,24(DI) + MOVL R9,8(DI) + MOVL AX,56(DI) + MOVD X0,CX + MOVD X1,R8 + MOVD X2,R9 + MOVD X3,AX + XORL 60(SI),CX + XORL 44(SI),R8 + XORL 28(SI),R9 + XORL 12(SI),AX + MOVL CX,60(DI) + MOVL R8,44(DI) + MOVL R9,28(DI) + MOVL AX,12(DI) + MOVQ 408(SP),R9 + MOVL 16(SP),CX + MOVL 36 (SP),R8 + ADDQ $1,CX + SHLQ $32,R8 + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $32,R8 + MOVL CX,16(SP) + MOVL R8, 36 (SP) + CMPQ R9,$64 + JA BYTESATLEAST65 + JAE BYTESATLEAST64 + MOVQ DI,SI + MOVQ DX,DI + MOVQ R9,CX + REP; MOVSB + BYTESATLEAST64: + DONE: + MOVQ 352(SP),R11 + MOVQ 360(SP),R12 + MOVQ 368(SP),R13 + MOVQ 376(SP),R14 + MOVQ 384(SP),R15 + MOVQ 392(SP),BX + MOVQ 400(SP),BP + MOVQ R11,SP + RET + BYTESATLEAST65: + SUBQ $64,R9 + ADDQ $64,DI + ADDQ $64,SI + JMP BYTESBETWEEN1AND255 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa208.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa208.go new file mode 100644 index 00000000..9bfc0927 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa208.go @@ -0,0 +1,199 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package salsa + +// Core208 applies the Salsa20/8 core function to the 64-byte array in and puts +// the result into the 64-byte array out. The input and output may be the same array. +func Core208(out *[64]byte, in *[64]byte) { + j0 := uint32(in[0]) | uint32(in[1])<<8 | uint32(in[2])<<16 | uint32(in[3])<<24 + j1 := uint32(in[4]) | uint32(in[5])<<8 | uint32(in[6])<<16 | uint32(in[7])<<24 + j2 := uint32(in[8]) | uint32(in[9])<<8 | uint32(in[10])<<16 | uint32(in[11])<<24 + j3 := uint32(in[12]) | uint32(in[13])<<8 | uint32(in[14])<<16 | uint32(in[15])<<24 + j4 := uint32(in[16]) | uint32(in[17])<<8 | uint32(in[18])<<16 | uint32(in[19])<<24 + j5 := uint32(in[20]) | uint32(in[21])<<8 | uint32(in[22])<<16 | uint32(in[23])<<24 + j6 := uint32(in[24]) | uint32(in[25])<<8 | uint32(in[26])<<16 | uint32(in[27])<<24 + j7 := uint32(in[28]) | uint32(in[29])<<8 | uint32(in[30])<<16 | uint32(in[31])<<24 + j8 := uint32(in[32]) | uint32(in[33])<<8 | uint32(in[34])<<16 | uint32(in[35])<<24 + j9 := uint32(in[36]) | uint32(in[37])<<8 | uint32(in[38])<<16 | uint32(in[39])<<24 + j10 := uint32(in[40]) | uint32(in[41])<<8 | uint32(in[42])<<16 | uint32(in[43])<<24 + j11 := uint32(in[44]) | uint32(in[45])<<8 | uint32(in[46])<<16 | uint32(in[47])<<24 + j12 := uint32(in[48]) | uint32(in[49])<<8 | uint32(in[50])<<16 | uint32(in[51])<<24 + j13 := uint32(in[52]) | uint32(in[53])<<8 | uint32(in[54])<<16 | uint32(in[55])<<24 + j14 := uint32(in[56]) | uint32(in[57])<<8 | uint32(in[58])<<16 | uint32(in[59])<<24 + j15 := uint32(in[60]) | uint32(in[61])<<8 | uint32(in[62])<<16 | uint32(in[63])<<24 + + x0, x1, x2, x3, x4, x5, x6, x7, x8 := j0, j1, j2, j3, j4, j5, j6, j7, j8 + x9, x10, x11, x12, x13, x14, x15 := j9, j10, j11, j12, j13, j14, j15 + + for i := 0; i < 8; i += 2 { + u := x0 + x12 + x4 ^= u<<7 | u>>(32-7) + u = x4 + x0 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x4 + x12 ^= u<<13 | u>>(32-13) + u = x12 + x8 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x1 + x9 ^= u<<7 | u>>(32-7) + u = x9 + x5 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x9 + x1 ^= u<<13 | u>>(32-13) + u = x1 + x13 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x6 + x14 ^= u<<7 | u>>(32-7) + u = x14 + x10 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x14 + x6 ^= u<<13 | u>>(32-13) + u = x6 + x2 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x11 + x3 ^= u<<7 | u>>(32-7) + u = x3 + x15 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x3 + x11 ^= u<<13 | u>>(32-13) + u = x11 + x7 + x15 ^= u<<18 | u>>(32-18) + + u = x0 + x3 + x1 ^= u<<7 | u>>(32-7) + u = x1 + x0 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x1 + x3 ^= u<<13 | u>>(32-13) + u = x3 + x2 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x4 + x6 ^= u<<7 | u>>(32-7) + u = x6 + x5 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x6 + x4 ^= u<<13 | u>>(32-13) + u = x4 + x7 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x9 + x11 ^= u<<7 | u>>(32-7) + u = x11 + x10 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x11 + x9 ^= u<<13 | u>>(32-13) + u = x9 + x8 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x14 + x12 ^= u<<7 | u>>(32-7) + u = x12 + x15 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x12 + x14 ^= u<<13 | u>>(32-13) + u = x14 + x13 + x15 ^= u<<18 | u>>(32-18) + } + x0 += j0 + x1 += j1 + x2 += j2 + x3 += j3 + x4 += j4 + x5 += j5 + x6 += j6 + x7 += j7 + x8 += j8 + x9 += j9 + x10 += j10 + x11 += j11 + x12 += j12 + x13 += j13 + x14 += j14 + x15 += j15 + + out[0] = byte(x0) + out[1] = byte(x0 >> 8) + out[2] = byte(x0 >> 16) + out[3] = byte(x0 >> 24) + + out[4] = byte(x1) + out[5] = byte(x1 >> 8) + out[6] = byte(x1 >> 16) + out[7] = byte(x1 >> 24) + + out[8] = byte(x2) + out[9] = byte(x2 >> 8) + out[10] = byte(x2 >> 16) + out[11] = byte(x2 >> 24) + + out[12] = byte(x3) + out[13] = byte(x3 >> 8) + out[14] = byte(x3 >> 16) + out[15] = byte(x3 >> 24) + + out[16] = byte(x4) + out[17] = byte(x4 >> 8) + out[18] = byte(x4 >> 16) + out[19] = byte(x4 >> 24) + + out[20] = byte(x5) + out[21] = byte(x5 >> 8) + out[22] = byte(x5 >> 16) + out[23] = byte(x5 >> 24) + + out[24] = byte(x6) + out[25] = byte(x6 >> 8) + out[26] = byte(x6 >> 16) + out[27] = byte(x6 >> 24) + + out[28] = byte(x7) + out[29] = byte(x7 >> 8) + out[30] = byte(x7 >> 16) + out[31] = byte(x7 >> 24) + + out[32] = byte(x8) + out[33] = byte(x8 >> 8) + out[34] = byte(x8 >> 16) + out[35] = byte(x8 >> 24) + + out[36] = byte(x9) + out[37] = byte(x9 >> 8) + out[38] = byte(x9 >> 16) + out[39] = byte(x9 >> 24) + + out[40] = byte(x10) + out[41] = byte(x10 >> 8) + out[42] = byte(x10 >> 16) + out[43] = byte(x10 >> 24) + + out[44] = byte(x11) + out[45] = byte(x11 >> 8) + out[46] = byte(x11 >> 16) + out[47] = byte(x11 >> 24) + + out[48] = byte(x12) + out[49] = byte(x12 >> 8) + out[50] = byte(x12 >> 16) + out[51] = byte(x12 >> 24) + + out[52] = byte(x13) + out[53] = byte(x13 >> 8) + out[54] = byte(x13 >> 16) + out[55] = byte(x13 >> 24) + + out[56] = byte(x14) + out[57] = byte(x14 >> 8) + out[58] = byte(x14 >> 16) + out[59] = byte(x14 >> 24) + + out[60] = byte(x15) + out[61] = byte(x15 >> 8) + out[62] = byte(x15 >> 16) + out[63] = byte(x15 >> 24) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa20_amd64.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa20_amd64.go new file mode 100644 index 00000000..903c7858 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa20_amd64.go @@ -0,0 +1,23 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!appengine,!gccgo + +package salsa + +// This function is implemented in salsa2020_amd64.s. + +//go:noescape + +func salsa2020XORKeyStream(out, in *byte, n uint64, nonce, key *byte) + +// XORKeyStream crypts bytes from in to out using the given key and counters. +// In and out may be the same slice but otherwise should not overlap. Counter +// contains the raw salsa20 counter bytes (both nonce and block counter). +func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte) { + if len(in) == 0 { + return + } + salsa2020XORKeyStream(&out[0], &in[0], uint64(len(in)), &counter[0], &key[0]) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa20_ref.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa20_ref.go new file mode 100644 index 00000000..95f8ca5b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa20_ref.go @@ -0,0 +1,234 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !amd64 appengine gccgo + +package salsa + +const rounds = 20 + +// core applies the Salsa20 core function to 16-byte input in, 32-byte key k, +// and 16-byte constant c, and puts the result into 64-byte array out. +func core(out *[64]byte, in *[16]byte, k *[32]byte, c *[16]byte) { + j0 := uint32(c[0]) | uint32(c[1])<<8 | uint32(c[2])<<16 | uint32(c[3])<<24 + j1 := uint32(k[0]) | uint32(k[1])<<8 | uint32(k[2])<<16 | uint32(k[3])<<24 + j2 := uint32(k[4]) | uint32(k[5])<<8 | uint32(k[6])<<16 | uint32(k[7])<<24 + j3 := uint32(k[8]) | uint32(k[9])<<8 | uint32(k[10])<<16 | uint32(k[11])<<24 + j4 := uint32(k[12]) | uint32(k[13])<<8 | uint32(k[14])<<16 | uint32(k[15])<<24 + j5 := uint32(c[4]) | uint32(c[5])<<8 | uint32(c[6])<<16 | uint32(c[7])<<24 + j6 := uint32(in[0]) | uint32(in[1])<<8 | uint32(in[2])<<16 | uint32(in[3])<<24 + j7 := uint32(in[4]) | uint32(in[5])<<8 | uint32(in[6])<<16 | uint32(in[7])<<24 + j8 := uint32(in[8]) | uint32(in[9])<<8 | uint32(in[10])<<16 | uint32(in[11])<<24 + j9 := uint32(in[12]) | uint32(in[13])<<8 | uint32(in[14])<<16 | uint32(in[15])<<24 + j10 := uint32(c[8]) | uint32(c[9])<<8 | uint32(c[10])<<16 | uint32(c[11])<<24 + j11 := uint32(k[16]) | uint32(k[17])<<8 | uint32(k[18])<<16 | uint32(k[19])<<24 + j12 := uint32(k[20]) | uint32(k[21])<<8 | uint32(k[22])<<16 | uint32(k[23])<<24 + j13 := uint32(k[24]) | uint32(k[25])<<8 | uint32(k[26])<<16 | uint32(k[27])<<24 + j14 := uint32(k[28]) | uint32(k[29])<<8 | uint32(k[30])<<16 | uint32(k[31])<<24 + j15 := uint32(c[12]) | uint32(c[13])<<8 | uint32(c[14])<<16 | uint32(c[15])<<24 + + x0, x1, x2, x3, x4, x5, x6, x7, x8 := j0, j1, j2, j3, j4, j5, j6, j7, j8 + x9, x10, x11, x12, x13, x14, x15 := j9, j10, j11, j12, j13, j14, j15 + + for i := 0; i < rounds; i += 2 { + u := x0 + x12 + x4 ^= u<<7 | u>>(32-7) + u = x4 + x0 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x4 + x12 ^= u<<13 | u>>(32-13) + u = x12 + x8 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x1 + x9 ^= u<<7 | u>>(32-7) + u = x9 + x5 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x9 + x1 ^= u<<13 | u>>(32-13) + u = x1 + x13 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x6 + x14 ^= u<<7 | u>>(32-7) + u = x14 + x10 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x14 + x6 ^= u<<13 | u>>(32-13) + u = x6 + x2 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x11 + x3 ^= u<<7 | u>>(32-7) + u = x3 + x15 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x3 + x11 ^= u<<13 | u>>(32-13) + u = x11 + x7 + x15 ^= u<<18 | u>>(32-18) + + u = x0 + x3 + x1 ^= u<<7 | u>>(32-7) + u = x1 + x0 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x1 + x3 ^= u<<13 | u>>(32-13) + u = x3 + x2 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x4 + x6 ^= u<<7 | u>>(32-7) + u = x6 + x5 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x6 + x4 ^= u<<13 | u>>(32-13) + u = x4 + x7 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x9 + x11 ^= u<<7 | u>>(32-7) + u = x11 + x10 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x11 + x9 ^= u<<13 | u>>(32-13) + u = x9 + x8 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x14 + x12 ^= u<<7 | u>>(32-7) + u = x12 + x15 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x12 + x14 ^= u<<13 | u>>(32-13) + u = x14 + x13 + x15 ^= u<<18 | u>>(32-18) + } + x0 += j0 + x1 += j1 + x2 += j2 + x3 += j3 + x4 += j4 + x5 += j5 + x6 += j6 + x7 += j7 + x8 += j8 + x9 += j9 + x10 += j10 + x11 += j11 + x12 += j12 + x13 += j13 + x14 += j14 + x15 += j15 + + out[0] = byte(x0) + out[1] = byte(x0 >> 8) + out[2] = byte(x0 >> 16) + out[3] = byte(x0 >> 24) + + out[4] = byte(x1) + out[5] = byte(x1 >> 8) + out[6] = byte(x1 >> 16) + out[7] = byte(x1 >> 24) + + out[8] = byte(x2) + out[9] = byte(x2 >> 8) + out[10] = byte(x2 >> 16) + out[11] = byte(x2 >> 24) + + out[12] = byte(x3) + out[13] = byte(x3 >> 8) + out[14] = byte(x3 >> 16) + out[15] = byte(x3 >> 24) + + out[16] = byte(x4) + out[17] = byte(x4 >> 8) + out[18] = byte(x4 >> 16) + out[19] = byte(x4 >> 24) + + out[20] = byte(x5) + out[21] = byte(x5 >> 8) + out[22] = byte(x5 >> 16) + out[23] = byte(x5 >> 24) + + out[24] = byte(x6) + out[25] = byte(x6 >> 8) + out[26] = byte(x6 >> 16) + out[27] = byte(x6 >> 24) + + out[28] = byte(x7) + out[29] = byte(x7 >> 8) + out[30] = byte(x7 >> 16) + out[31] = byte(x7 >> 24) + + out[32] = byte(x8) + out[33] = byte(x8 >> 8) + out[34] = byte(x8 >> 16) + out[35] = byte(x8 >> 24) + + out[36] = byte(x9) + out[37] = byte(x9 >> 8) + out[38] = byte(x9 >> 16) + out[39] = byte(x9 >> 24) + + out[40] = byte(x10) + out[41] = byte(x10 >> 8) + out[42] = byte(x10 >> 16) + out[43] = byte(x10 >> 24) + + out[44] = byte(x11) + out[45] = byte(x11 >> 8) + out[46] = byte(x11 >> 16) + out[47] = byte(x11 >> 24) + + out[48] = byte(x12) + out[49] = byte(x12 >> 8) + out[50] = byte(x12 >> 16) + out[51] = byte(x12 >> 24) + + out[52] = byte(x13) + out[53] = byte(x13 >> 8) + out[54] = byte(x13 >> 16) + out[55] = byte(x13 >> 24) + + out[56] = byte(x14) + out[57] = byte(x14 >> 8) + out[58] = byte(x14 >> 16) + out[59] = byte(x14 >> 24) + + out[60] = byte(x15) + out[61] = byte(x15 >> 8) + out[62] = byte(x15 >> 16) + out[63] = byte(x15 >> 24) +} + +// XORKeyStream crypts bytes from in to out using the given key and counters. +// In and out may be the same slice but otherwise should not overlap. Counter +// contains the raw salsa20 counter bytes (both nonce and block counter). +func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte) { + var block [64]byte + var counterCopy [16]byte + copy(counterCopy[:], counter[:]) + + for len(in) >= 64 { + core(&block, &counterCopy, key, &Sigma) + for i, x := range block { + out[i] = in[i] ^ x + } + u := uint32(1) + for i := 8; i < 16; i++ { + u += uint32(counterCopy[i]) + counterCopy[i] = byte(u) + u >>= 8 + } + in = in[64:] + out = out[64:] + } + + if len(in) > 0 { + core(&block, &counterCopy, key, &Sigma) + for i, v := range in { + out[i] = v ^ block[i] + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa_test.go new file mode 100644 index 00000000..f8cecd9e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa/salsa_test.go @@ -0,0 +1,35 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package salsa + +import "testing" + +func TestCore208(t *testing.T) { + in := [64]byte{ + 0x7e, 0x87, 0x9a, 0x21, 0x4f, 0x3e, 0xc9, 0x86, + 0x7c, 0xa9, 0x40, 0xe6, 0x41, 0x71, 0x8f, 0x26, + 0xba, 0xee, 0x55, 0x5b, 0x8c, 0x61, 0xc1, 0xb5, + 0x0d, 0xf8, 0x46, 0x11, 0x6d, 0xcd, 0x3b, 0x1d, + 0xee, 0x24, 0xf3, 0x19, 0xdf, 0x9b, 0x3d, 0x85, + 0x14, 0x12, 0x1e, 0x4b, 0x5a, 0xc5, 0xaa, 0x32, + 0x76, 0x02, 0x1d, 0x29, 0x09, 0xc7, 0x48, 0x29, + 0xed, 0xeb, 0xc6, 0x8d, 0xb8, 0xb8, 0xc2, 0x5e} + + out := [64]byte{ + 0xa4, 0x1f, 0x85, 0x9c, 0x66, 0x08, 0xcc, 0x99, + 0x3b, 0x81, 0xca, 0xcb, 0x02, 0x0c, 0xef, 0x05, + 0x04, 0x4b, 0x21, 0x81, 0xa2, 0xfd, 0x33, 0x7d, + 0xfd, 0x7b, 0x1c, 0x63, 0x96, 0x68, 0x2f, 0x29, + 0xb4, 0x39, 0x31, 0x68, 0xe3, 0xc9, 0xe6, 0xbc, + 0xfe, 0x6b, 0xc5, 0xb7, 0xa0, 0x6d, 0x96, 0xba, + 0xe4, 0x24, 0xcc, 0x10, 0x2c, 0x91, 0x74, 0x5c, + 0x24, 0xad, 0x67, 0x3d, 0xc7, 0x61, 0x8f, 0x81, + } + + Core208(&in, &in) + if in != out { + t.Errorf("expected %x, got %x", out, in) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa20.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa20.go new file mode 100644 index 00000000..c308ca38 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa20.go @@ -0,0 +1,54 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package salsa20 implements the Salsa20 stream cipher as specified in http://cr.yp.to/snuffle/spec.pdf. + +Salsa20 differs from many other stream ciphers in that it is message orientated +rather than byte orientated. Keystream blocks are not preserved between calls, +therefore each side must encrypt/decrypt data with the same segmentation. + +Another aspect of this difference is that part of the counter is exposed as +an nonce in each call. Encrypting two different messages with the same (key, +nonce) pair leads to trivial plaintext recovery. This is analogous to +encrypting two different messages with the same key with a traditional stream +cipher. + +This package also implements XSalsa20: a version of Salsa20 with a 24-byte +nonce as specified in http://cr.yp.to/snuffle/xsalsa-20081128.pdf. Simply +passing a 24-byte slice as the nonce triggers XSalsa20. +*/ +package salsa20 + +// TODO(agl): implement XORKeyStream12 and XORKeyStream8 - the reduced round variants of Salsa20. + +import ( + "code.google.com/p/go.crypto/salsa20/salsa" +) + +// XORKeyStream crypts bytes from in to out using the given key and nonce. In +// and out may be the same slice but otherwise should not overlap. Nonce must +// be either 8 or 24 bytes long. +func XORKeyStream(out, in []byte, nonce []byte, key *[32]byte) { + if len(out) < len(in) { + in = in[:len(out)] + } + + var subNonce [16]byte + + if len(nonce) == 24 { + var subKey [32]byte + var hNonce [16]byte + copy(hNonce[:], nonce[:16]) + salsa.HSalsa20(&subKey, &hNonce, key, &salsa.Sigma) + copy(subNonce[:], nonce[16:]) + key = &subKey + } else if len(nonce) == 8 { + copy(subNonce[:], nonce[:]) + } else { + panic("salsa20: nonce must be 8 or 24 bytes") + } + + salsa.XORKeyStream(out, in, &subNonce, key) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa20_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa20_test.go new file mode 100644 index 00000000..0ef3328e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/salsa20/salsa20_test.go @@ -0,0 +1,139 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package salsa20 + +import ( + "bytes" + "encoding/hex" + "testing" +) + +func fromHex(s string) []byte { + ret, err := hex.DecodeString(s) + if err != nil { + panic(err) + } + return ret +} + +// testVectors was taken from set 6 of the ECRYPT test vectors: +// http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/submissions/salsa20/full/verified.test-vectors?logsort=rev&rev=210&view=markup +var testVectors = []struct { + key []byte + iv []byte + numBytes int + xor []byte +}{ + { + fromHex("0053A6F94C9FF24598EB3E91E4378ADD3083D6297CCF2275C81B6EC11467BA0D"), + fromHex("0D74DB42A91077DE"), + 131072, + fromHex("C349B6A51A3EC9B712EAED3F90D8BCEE69B7628645F251A996F55260C62EF31FD6C6B0AEA94E136C9D984AD2DF3578F78E457527B03A0450580DD874F63B1AB9"), + }, + { + fromHex("0558ABFE51A4F74A9DF04396E93C8FE23588DB2E81D4277ACD2073C6196CBF12"), + fromHex("167DE44BB21980E7"), + 131072, + fromHex("C3EAAF32836BACE32D04E1124231EF47E101367D6305413A0EEB07C60698A2876E4D031870A739D6FFDDD208597AFF0A47AC17EDB0167DD67EBA84F1883D4DFD"), + }, + { + fromHex("0A5DB00356A9FC4FA2F5489BEE4194E73A8DE03386D92C7FD22578CB1E71C417"), + fromHex("1F86ED54BB2289F0"), + 131072, + fromHex("3CD23C3DC90201ACC0CF49B440B6C417F0DC8D8410A716D5314C059E14B1A8D9A9FB8EA3D9C8DAE12B21402F674AA95C67B1FC514E994C9D3F3A6E41DFF5BBA6"), + }, + { + fromHex("0F62B5085BAE0154A7FA4DA0F34699EC3F92E5388BDE3184D72A7DD02376C91C"), + fromHex("288FF65DC42B92F9"), + 131072, + fromHex("E00EBCCD70D69152725F9987982178A2E2E139C7BCBE04CA8A0E99E318D9AB76F988C8549F75ADD790BA4F81C176DA653C1A043F11A958E169B6D2319F4EEC1A"), + }, +} + +func TestSalsa20(t *testing.T) { + var inBuf, outBuf []byte + var key [32]byte + + for i, test := range testVectors { + if test.numBytes%64 != 0 { + t.Errorf("#%d: numBytes is not a multiple of 64", i) + continue + } + + if test.numBytes > len(inBuf) { + inBuf = make([]byte, test.numBytes) + outBuf = make([]byte, test.numBytes) + } + in := inBuf[:test.numBytes] + out := outBuf[:test.numBytes] + copy(key[:], test.key) + XORKeyStream(out, in, test.iv, &key) + + var xor [64]byte + for len(out) > 0 { + for i := 0; i < 64; i++ { + xor[i] ^= out[i] + } + out = out[64:] + } + + if !bytes.Equal(xor[:], test.xor) { + t.Errorf("#%d: bad result", i) + } + } +} + +var xSalsa20TestData = []struct { + in, nonce, key, out []byte +}{ + { + []byte("Hello world!"), + []byte("24-byte nonce for xsalsa"), + []byte("this is 32-byte key for xsalsa20"), + []byte{0x00, 0x2d, 0x45, 0x13, 0x84, 0x3f, 0xc2, 0x40, 0xc4, 0x01, 0xe5, 0x41}, + }, + { + make([]byte, 64), + []byte("24-byte nonce for xsalsa"), + []byte("this is 32-byte key for xsalsa20"), + []byte{0x48, 0x48, 0x29, 0x7f, 0xeb, 0x1f, 0xb5, 0x2f, 0xb6, + 0x6d, 0x81, 0x60, 0x9b, 0xd5, 0x47, 0xfa, 0xbc, 0xbe, 0x70, + 0x26, 0xed, 0xc8, 0xb5, 0xe5, 0xe4, 0x49, 0xd0, 0x88, 0xbf, + 0xa6, 0x9c, 0x08, 0x8f, 0x5d, 0x8d, 0xa1, 0xd7, 0x91, 0x26, + 0x7c, 0x2c, 0x19, 0x5a, 0x7f, 0x8c, 0xae, 0x9c, 0x4b, 0x40, + 0x50, 0xd0, 0x8c, 0xe6, 0xd3, 0xa1, 0x51, 0xec, 0x26, 0x5f, + 0x3a, 0x58, 0xe4, 0x76, 0x48}, + }, +} + +func TestXSalsa20(t *testing.T) { + var key [32]byte + + for i, test := range xSalsa20TestData { + out := make([]byte, len(test.in)) + copy(key[:], test.key) + XORKeyStream(out, test.in, test.nonce, &key) + if !bytes.Equal(out, test.out) { + t.Errorf("%d: expected %x, got %x", i, test.out, out) + } + } +} + +var ( + keyArray [32]byte + key = &keyArray + nonce [8]byte + msg = make([]byte, 1<<10) +) + +func BenchmarkXOR1K(b *testing.B) { + b.StopTimer() + out := make([]byte, 1024) + b.StartTimer() + for i := 0; i < b.N; i++ { + XORKeyStream(out, msg[:1024], nonce[:], key) + } + b.SetBytes(1024) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/scrypt/scrypt.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/scrypt/scrypt.go new file mode 100644 index 00000000..f7a9fe1a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/scrypt/scrypt.go @@ -0,0 +1,243 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package scrypt implements the scrypt key derivation function as defined in +// Colin Percival's paper "Stronger Key Derivation via Sequential Memory-Hard +// Functions" (http://www.tarsnap.com/scrypt/scrypt.pdf). +package scrypt + +import ( + "crypto/sha256" + "errors" + + "code.google.com/p/go.crypto/pbkdf2" +) + +const maxInt = int(^uint(0) >> 1) + +// blockCopy copies n numbers from src into dst. +func blockCopy(dst, src []uint32, n int) { + copy(dst, src[:n]) +} + +// blockXOR XORs numbers from dst with n numbers from src. +func blockXOR(dst, src []uint32, n int) { + for i, v := range src[:n] { + dst[i] ^= v + } +} + +// salsaXOR applies Salsa20/8 to the XOR of 16 numbers from tmp and in, +// and puts the result into both both tmp and out. +func salsaXOR(tmp *[16]uint32, in, out []uint32) { + w0 := tmp[0] ^ in[0] + w1 := tmp[1] ^ in[1] + w2 := tmp[2] ^ in[2] + w3 := tmp[3] ^ in[3] + w4 := tmp[4] ^ in[4] + w5 := tmp[5] ^ in[5] + w6 := tmp[6] ^ in[6] + w7 := tmp[7] ^ in[7] + w8 := tmp[8] ^ in[8] + w9 := tmp[9] ^ in[9] + w10 := tmp[10] ^ in[10] + w11 := tmp[11] ^ in[11] + w12 := tmp[12] ^ in[12] + w13 := tmp[13] ^ in[13] + w14 := tmp[14] ^ in[14] + w15 := tmp[15] ^ in[15] + + x0, x1, x2, x3, x4, x5, x6, x7, x8 := w0, w1, w2, w3, w4, w5, w6, w7, w8 + x9, x10, x11, x12, x13, x14, x15 := w9, w10, w11, w12, w13, w14, w15 + + for i := 0; i < 8; i += 2 { + u := x0 + x12 + x4 ^= u<<7 | u>>(32-7) + u = x4 + x0 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x4 + x12 ^= u<<13 | u>>(32-13) + u = x12 + x8 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x1 + x9 ^= u<<7 | u>>(32-7) + u = x9 + x5 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x9 + x1 ^= u<<13 | u>>(32-13) + u = x1 + x13 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x6 + x14 ^= u<<7 | u>>(32-7) + u = x14 + x10 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x14 + x6 ^= u<<13 | u>>(32-13) + u = x6 + x2 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x11 + x3 ^= u<<7 | u>>(32-7) + u = x3 + x15 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x3 + x11 ^= u<<13 | u>>(32-13) + u = x11 + x7 + x15 ^= u<<18 | u>>(32-18) + + u = x0 + x3 + x1 ^= u<<7 | u>>(32-7) + u = x1 + x0 + x2 ^= u<<9 | u>>(32-9) + u = x2 + x1 + x3 ^= u<<13 | u>>(32-13) + u = x3 + x2 + x0 ^= u<<18 | u>>(32-18) + + u = x5 + x4 + x6 ^= u<<7 | u>>(32-7) + u = x6 + x5 + x7 ^= u<<9 | u>>(32-9) + u = x7 + x6 + x4 ^= u<<13 | u>>(32-13) + u = x4 + x7 + x5 ^= u<<18 | u>>(32-18) + + u = x10 + x9 + x11 ^= u<<7 | u>>(32-7) + u = x11 + x10 + x8 ^= u<<9 | u>>(32-9) + u = x8 + x11 + x9 ^= u<<13 | u>>(32-13) + u = x9 + x8 + x10 ^= u<<18 | u>>(32-18) + + u = x15 + x14 + x12 ^= u<<7 | u>>(32-7) + u = x12 + x15 + x13 ^= u<<9 | u>>(32-9) + u = x13 + x12 + x14 ^= u<<13 | u>>(32-13) + u = x14 + x13 + x15 ^= u<<18 | u>>(32-18) + } + x0 += w0 + x1 += w1 + x2 += w2 + x3 += w3 + x4 += w4 + x5 += w5 + x6 += w6 + x7 += w7 + x8 += w8 + x9 += w9 + x10 += w10 + x11 += w11 + x12 += w12 + x13 += w13 + x14 += w14 + x15 += w15 + + out[0], tmp[0] = x0, x0 + out[1], tmp[1] = x1, x1 + out[2], tmp[2] = x2, x2 + out[3], tmp[3] = x3, x3 + out[4], tmp[4] = x4, x4 + out[5], tmp[5] = x5, x5 + out[6], tmp[6] = x6, x6 + out[7], tmp[7] = x7, x7 + out[8], tmp[8] = x8, x8 + out[9], tmp[9] = x9, x9 + out[10], tmp[10] = x10, x10 + out[11], tmp[11] = x11, x11 + out[12], tmp[12] = x12, x12 + out[13], tmp[13] = x13, x13 + out[14], tmp[14] = x14, x14 + out[15], tmp[15] = x15, x15 +} + +func blockMix(tmp *[16]uint32, in, out []uint32, r int) { + blockCopy(tmp[:], in[(2*r-1)*16:], 16) + for i := 0; i < 2*r; i += 2 { + salsaXOR(tmp, in[i*16:], out[i*8:]) + salsaXOR(tmp, in[i*16+16:], out[i*8+r*16:]) + } +} + +func integer(b []uint32, r int) uint64 { + j := (2*r - 1) * 16 + return uint64(b[j]) | uint64(b[j+1])<<32 +} + +func smix(b []byte, r, N int, v, xy []uint32) { + var tmp [16]uint32 + x := xy + y := xy[32*r:] + + j := 0 + for i := 0; i < 32*r; i++ { + x[i] = uint32(b[j]) | uint32(b[j+1])<<8 | uint32(b[j+2])<<16 | uint32(b[j+3])<<24 + j += 4 + } + for i := 0; i < N; i += 2 { + blockCopy(v[i*(32*r):], x, 32*r) + blockMix(&tmp, x, y, r) + + blockCopy(v[(i+1)*(32*r):], y, 32*r) + blockMix(&tmp, y, x, r) + } + for i := 0; i < N; i += 2 { + j := int(integer(x, r) & uint64(N-1)) + blockXOR(x, v[j*(32*r):], 32*r) + blockMix(&tmp, x, y, r) + + j = int(integer(y, r) & uint64(N-1)) + blockXOR(y, v[j*(32*r):], 32*r) + blockMix(&tmp, y, x, r) + } + j = 0 + for _, v := range x[:32*r] { + b[j+0] = byte(v >> 0) + b[j+1] = byte(v >> 8) + b[j+2] = byte(v >> 16) + b[j+3] = byte(v >> 24) + j += 4 + } +} + +// Key derives a key from the password, salt, and cost parameters, returning +// a byte slice of length keyLen that can be used as cryptographic key. +// +// N is a CPU/memory cost parameter, which must be a power of two greater than 1. +// r and p must satisfy r * p < 2³⁰. If the parameters do not satisfy the +// limits, the function returns a nil byte slice and an error. +// +// For example, you can get a derived key for e.g. AES-256 (which needs a +// 32-byte key) by doing: +// +// dk := scrypt.Key([]byte("some password"), salt, 16384, 8, 1, 32) +// +// The recommended parameters for interactive logins as of 2009 are N=16384, +// r=8, p=1. They should be increased as memory latency and CPU parallelism +// increases. Remember to get a good random salt. +func Key(password, salt []byte, N, r, p, keyLen int) ([]byte, error) { + if N <= 1 || N&(N-1) != 0 { + return nil, errors.New("scrypt: N must be > 1 and a power of 2") + } + if uint64(r)*uint64(p) >= 1<<30 || r > maxInt/128/p || r > maxInt/256 || N > maxInt/128/r { + return nil, errors.New("scrypt: parameters are too large") + } + + xy := make([]uint32, 64*r) + v := make([]uint32, 32*N*r) + b := pbkdf2.Key(password, salt, 1, p*128*r, sha256.New) + + for i := 0; i < p; i++ { + smix(b[i*128*r:], r, N, v, xy) + } + + return pbkdf2.Key(password, b, 1, keyLen, sha256.New), nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/scrypt/scrypt_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/scrypt/scrypt_test.go new file mode 100644 index 00000000..e096c3a3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/scrypt/scrypt_test.go @@ -0,0 +1,160 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package scrypt + +import ( + "bytes" + "testing" +) + +type testVector struct { + password string + salt string + N, r, p int + output []byte +} + +var good = []testVector{ + { + "password", + "salt", + 2, 10, 10, + []byte{ + 0x48, 0x2c, 0x85, 0x8e, 0x22, 0x90, 0x55, 0xe6, 0x2f, + 0x41, 0xe0, 0xec, 0x81, 0x9a, 0x5e, 0xe1, 0x8b, 0xdb, + 0x87, 0x25, 0x1a, 0x53, 0x4f, 0x75, 0xac, 0xd9, 0x5a, + 0xc5, 0xe5, 0xa, 0xa1, 0x5f, + }, + }, + { + "password", + "salt", + 16, 100, 100, + []byte{ + 0x88, 0xbd, 0x5e, 0xdb, 0x52, 0xd1, 0xdd, 0x0, 0x18, + 0x87, 0x72, 0xad, 0x36, 0x17, 0x12, 0x90, 0x22, 0x4e, + 0x74, 0x82, 0x95, 0x25, 0xb1, 0x8d, 0x73, 0x23, 0xa5, + 0x7f, 0x91, 0x96, 0x3c, 0x37, + }, + }, + { + "this is a long \000 password", + "and this is a long \000 salt", + 16384, 8, 1, + []byte{ + 0xc3, 0xf1, 0x82, 0xee, 0x2d, 0xec, 0x84, 0x6e, 0x70, + 0xa6, 0x94, 0x2f, 0xb5, 0x29, 0x98, 0x5a, 0x3a, 0x09, + 0x76, 0x5e, 0xf0, 0x4c, 0x61, 0x29, 0x23, 0xb1, 0x7f, + 0x18, 0x55, 0x5a, 0x37, 0x07, 0x6d, 0xeb, 0x2b, 0x98, + 0x30, 0xd6, 0x9d, 0xe5, 0x49, 0x26, 0x51, 0xe4, 0x50, + 0x6a, 0xe5, 0x77, 0x6d, 0x96, 0xd4, 0x0f, 0x67, 0xaa, + 0xee, 0x37, 0xe1, 0x77, 0x7b, 0x8a, 0xd5, 0xc3, 0x11, + 0x14, 0x32, 0xbb, 0x3b, 0x6f, 0x7e, 0x12, 0x64, 0x40, + 0x18, 0x79, 0xe6, 0x41, 0xae, + }, + }, + { + "p", + "s", + 2, 1, 1, + []byte{ + 0x48, 0xb0, 0xd2, 0xa8, 0xa3, 0x27, 0x26, 0x11, 0x98, + 0x4c, 0x50, 0xeb, 0xd6, 0x30, 0xaf, 0x52, + }, + }, + + { + "", + "", + 16, 1, 1, + []byte{ + 0x77, 0xd6, 0x57, 0x62, 0x38, 0x65, 0x7b, 0x20, 0x3b, + 0x19, 0xca, 0x42, 0xc1, 0x8a, 0x04, 0x97, 0xf1, 0x6b, + 0x48, 0x44, 0xe3, 0x07, 0x4a, 0xe8, 0xdf, 0xdf, 0xfa, + 0x3f, 0xed, 0xe2, 0x14, 0x42, 0xfc, 0xd0, 0x06, 0x9d, + 0xed, 0x09, 0x48, 0xf8, 0x32, 0x6a, 0x75, 0x3a, 0x0f, + 0xc8, 0x1f, 0x17, 0xe8, 0xd3, 0xe0, 0xfb, 0x2e, 0x0d, + 0x36, 0x28, 0xcf, 0x35, 0xe2, 0x0c, 0x38, 0xd1, 0x89, + 0x06, + }, + }, + { + "password", + "NaCl", + 1024, 8, 16, + []byte{ + 0xfd, 0xba, 0xbe, 0x1c, 0x9d, 0x34, 0x72, 0x00, 0x78, + 0x56, 0xe7, 0x19, 0x0d, 0x01, 0xe9, 0xfe, 0x7c, 0x6a, + 0xd7, 0xcb, 0xc8, 0x23, 0x78, 0x30, 0xe7, 0x73, 0x76, + 0x63, 0x4b, 0x37, 0x31, 0x62, 0x2e, 0xaf, 0x30, 0xd9, + 0x2e, 0x22, 0xa3, 0x88, 0x6f, 0xf1, 0x09, 0x27, 0x9d, + 0x98, 0x30, 0xda, 0xc7, 0x27, 0xaf, 0xb9, 0x4a, 0x83, + 0xee, 0x6d, 0x83, 0x60, 0xcb, 0xdf, 0xa2, 0xcc, 0x06, + 0x40, + }, + }, + { + "pleaseletmein", "SodiumChloride", + 16384, 8, 1, + []byte{ + 0x70, 0x23, 0xbd, 0xcb, 0x3a, 0xfd, 0x73, 0x48, 0x46, + 0x1c, 0x06, 0xcd, 0x81, 0xfd, 0x38, 0xeb, 0xfd, 0xa8, + 0xfb, 0xba, 0x90, 0x4f, 0x8e, 0x3e, 0xa9, 0xb5, 0x43, + 0xf6, 0x54, 0x5d, 0xa1, 0xf2, 0xd5, 0x43, 0x29, 0x55, + 0x61, 0x3f, 0x0f, 0xcf, 0x62, 0xd4, 0x97, 0x05, 0x24, + 0x2a, 0x9a, 0xf9, 0xe6, 0x1e, 0x85, 0xdc, 0x0d, 0x65, + 0x1e, 0x40, 0xdf, 0xcf, 0x01, 0x7b, 0x45, 0x57, 0x58, + 0x87, + }, + }, + /* + // Disabled: needs 1 GiB RAM and takes too long for a simple test. + { + "pleaseletmein", "SodiumChloride", + 1048576, 8, 1, + []byte{ + 0x21, 0x01, 0xcb, 0x9b, 0x6a, 0x51, 0x1a, 0xae, 0xad, + 0xdb, 0xbe, 0x09, 0xcf, 0x70, 0xf8, 0x81, 0xec, 0x56, + 0x8d, 0x57, 0x4a, 0x2f, 0xfd, 0x4d, 0xab, 0xe5, 0xee, + 0x98, 0x20, 0xad, 0xaa, 0x47, 0x8e, 0x56, 0xfd, 0x8f, + 0x4b, 0xa5, 0xd0, 0x9f, 0xfa, 0x1c, 0x6d, 0x92, 0x7c, + 0x40, 0xf4, 0xc3, 0x37, 0x30, 0x40, 0x49, 0xe8, 0xa9, + 0x52, 0xfb, 0xcb, 0xf4, 0x5c, 0x6f, 0xa7, 0x7a, 0x41, + 0xa4, + }, + }, + */ +} + +var bad = []testVector{ + {"p", "s", 0, 1, 1, nil}, // N == 0 + {"p", "s", 1, 1, 1, nil}, // N == 1 + {"p", "s", 7, 8, 1, nil}, // N is not power of 2 + {"p", "s", 16, maxInt / 2, maxInt / 2, nil}, // p * r too large +} + +func TestKey(t *testing.T) { + for i, v := range good { + k, err := Key([]byte(v.password), []byte(v.salt), v.N, v.r, v.p, len(v.output)) + if err != nil { + t.Errorf("%d: got unexpected error: %s", i, err) + } + if !bytes.Equal(k, v.output) { + t.Errorf("%d: expected %x, got %x", i, v.output, k) + } + } + for i, v := range bad { + _, err := Key([]byte(v.password), []byte(v.salt), v.N, v.r, v.p, 32) + if err == nil { + t.Errorf("%d: expected error, got nil", i) + } + } +} + +func BenchmarkKey(b *testing.B) { + for i := 0; i < b.N; i++ { + Key([]byte("password"), []byte("salt"), 16384, 8, 1, 64) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/keccakf.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/keccakf.go new file mode 100644 index 00000000..76c0312a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/keccakf.go @@ -0,0 +1,165 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package sha3 + +// This file implements the core Keccak permutation function necessary for computing SHA3. +// This is implemented in a separate file to allow for replacement by an optimized implementation. +// Nothing in this package is exported. +// For the detailed specification, refer to the Keccak web site (http://keccak.noekeon.org/). + +// rc stores the round constants for use in the ι step. +var rc = [...]uint64{ + 0x0000000000000001, + 0x0000000000008082, + 0x800000000000808A, + 0x8000000080008000, + 0x000000000000808B, + 0x0000000080000001, + 0x8000000080008081, + 0x8000000000008009, + 0x000000000000008A, + 0x0000000000000088, + 0x0000000080008009, + 0x000000008000000A, + 0x000000008000808B, + 0x800000000000008B, + 0x8000000000008089, + 0x8000000000008003, + 0x8000000000008002, + 0x8000000000000080, + 0x000000000000800A, + 0x800000008000000A, + 0x8000000080008081, + 0x8000000000008080, + 0x0000000080000001, + 0x8000000080008008, +} + +// keccakF computes the complete Keccak-f function consisting of 24 rounds with a different +// constant (rc) in each round. This implementation fully unrolls the round function to avoid +// inner loops, as well as pre-calculating shift offsets. +func keccakF(a *[numLanes]uint64) { + var t, bc0, bc1, bc2, bc3, bc4 uint64 + for _, roundConstant := range rc { + // θ step + bc0 = a[0] ^ a[5] ^ a[10] ^ a[15] ^ a[20] + bc1 = a[1] ^ a[6] ^ a[11] ^ a[16] ^ a[21] + bc2 = a[2] ^ a[7] ^ a[12] ^ a[17] ^ a[22] + bc3 = a[3] ^ a[8] ^ a[13] ^ a[18] ^ a[23] + bc4 = a[4] ^ a[9] ^ a[14] ^ a[19] ^ a[24] + t = bc4 ^ (bc1<<1 ^ bc1>>63) + a[0] ^= t + a[5] ^= t + a[10] ^= t + a[15] ^= t + a[20] ^= t + t = bc0 ^ (bc2<<1 ^ bc2>>63) + a[1] ^= t + a[6] ^= t + a[11] ^= t + a[16] ^= t + a[21] ^= t + t = bc1 ^ (bc3<<1 ^ bc3>>63) + a[2] ^= t + a[7] ^= t + a[12] ^= t + a[17] ^= t + a[22] ^= t + t = bc2 ^ (bc4<<1 ^ bc4>>63) + a[3] ^= t + a[8] ^= t + a[13] ^= t + a[18] ^= t + a[23] ^= t + t = bc3 ^ (bc0<<1 ^ bc0>>63) + a[4] ^= t + a[9] ^= t + a[14] ^= t + a[19] ^= t + a[24] ^= t + + // ρ and π steps + t = a[1] + t, a[10] = a[10], t<<1^t>>(64-1) + t, a[7] = a[7], t<<3^t>>(64-3) + t, a[11] = a[11], t<<6^t>>(64-6) + t, a[17] = a[17], t<<10^t>>(64-10) + t, a[18] = a[18], t<<15^t>>(64-15) + t, a[3] = a[3], t<<21^t>>(64-21) + t, a[5] = a[5], t<<28^t>>(64-28) + t, a[16] = a[16], t<<36^t>>(64-36) + t, a[8] = a[8], t<<45^t>>(64-45) + t, a[21] = a[21], t<<55^t>>(64-55) + t, a[24] = a[24], t<<2^t>>(64-2) + t, a[4] = a[4], t<<14^t>>(64-14) + t, a[15] = a[15], t<<27^t>>(64-27) + t, a[23] = a[23], t<<41^t>>(64-41) + t, a[19] = a[19], t<<56^t>>(64-56) + t, a[13] = a[13], t<<8^t>>(64-8) + t, a[12] = a[12], t<<25^t>>(64-25) + t, a[2] = a[2], t<<43^t>>(64-43) + t, a[20] = a[20], t<<62^t>>(64-62) + t, a[14] = a[14], t<<18^t>>(64-18) + t, a[22] = a[22], t<<39^t>>(64-39) + t, a[9] = a[9], t<<61^t>>(64-61) + t, a[6] = a[6], t<<20^t>>(64-20) + a[1] = t<<44 ^ t>>(64-44) + + // χ step + bc0 = a[0] + bc1 = a[1] + bc2 = a[2] + bc3 = a[3] + bc4 = a[4] + a[0] ^= bc2 &^ bc1 + a[1] ^= bc3 &^ bc2 + a[2] ^= bc4 &^ bc3 + a[3] ^= bc0 &^ bc4 + a[4] ^= bc1 &^ bc0 + bc0 = a[5] + bc1 = a[6] + bc2 = a[7] + bc3 = a[8] + bc4 = a[9] + a[5] ^= bc2 &^ bc1 + a[6] ^= bc3 &^ bc2 + a[7] ^= bc4 &^ bc3 + a[8] ^= bc0 &^ bc4 + a[9] ^= bc1 &^ bc0 + bc0 = a[10] + bc1 = a[11] + bc2 = a[12] + bc3 = a[13] + bc4 = a[14] + a[10] ^= bc2 &^ bc1 + a[11] ^= bc3 &^ bc2 + a[12] ^= bc4 &^ bc3 + a[13] ^= bc0 &^ bc4 + a[14] ^= bc1 &^ bc0 + bc0 = a[15] + bc1 = a[16] + bc2 = a[17] + bc3 = a[18] + bc4 = a[19] + a[15] ^= bc2 &^ bc1 + a[16] ^= bc3 &^ bc2 + a[17] ^= bc4 &^ bc3 + a[18] ^= bc0 &^ bc4 + a[19] ^= bc1 &^ bc0 + bc0 = a[20] + bc1 = a[21] + bc2 = a[22] + bc3 = a[23] + bc4 = a[24] + a[20] ^= bc2 &^ bc1 + a[21] ^= bc3 &^ bc2 + a[22] ^= bc4 &^ bc3 + a[23] ^= bc0 &^ bc4 + a[24] ^= bc1 &^ bc0 + + // ι step + a[0] ^= roundConstant + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/sha3.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/sha3.go new file mode 100644 index 00000000..e1f9aa85 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/sha3.go @@ -0,0 +1,213 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package sha3 implements the SHA3 hash algorithm (formerly called Keccak) chosen by NIST in 2012. +// This file provides a SHA3 implementation which implements the standard hash.Hash interface. +// Writing input data, including padding, and reading output data are computed in this file. +// Note that the current implementation can compute the hash of an integral number of bytes only. +// This is a consequence of the hash interface in which a buffer of bytes is passed in. +// The internals of the Keccak-f function are computed in keccakf.go. +// For the detailed specification, refer to the Keccak web site (http://keccak.noekeon.org/). +package sha3 + +import ( + "encoding/binary" + "hash" +) + +// laneSize is the size in bytes of each "lane" of the internal state of SHA3 (5 * 5 * 8). +// Note that changing this size would requires using a type other than uint64 to store each lane. +const laneSize = 8 + +// sliceSize represents the dimensions of the internal state, a square matrix of +// sliceSize ** 2 lanes. This is the size of both the "rows" and "columns" dimensions in the +// terminology of the SHA3 specification. +const sliceSize = 5 + +// numLanes represents the total number of lanes in the state. +const numLanes = sliceSize * sliceSize + +// stateSize is the size in bytes of the internal state of SHA3 (5 * 5 * WSize). +const stateSize = laneSize * numLanes + +// digest represents the partial evaluation of a checksum. +// Note that capacity, and not outputSize, is the critical security parameter, as SHA3 can output +// an arbitrary number of bytes for any given capacity. The Keccak proposal recommends that +// capacity = 2*outputSize to ensure that finding a collision of size outputSize requires +// O(2^{outputSize/2}) computations (the birthday lower bound). Future standards may modify the +// capacity/outputSize ratio to allow for more output with lower cryptographic security. +type digest struct { + a [numLanes]uint64 // main state of the hash + outputSize int // desired output size in bytes + capacity int // number of bytes to leave untouched during squeeze/absorb + absorbed int // number of bytes absorbed thus far +} + +// minInt returns the lesser of two integer arguments, to simplify the absorption routine. +func minInt(v1, v2 int) int { + if v1 <= v2 { + return v1 + } + return v2 +} + +// rate returns the number of bytes of the internal state which can be absorbed or squeezed +// in between calls to the permutation function. +func (d *digest) rate() int { + return stateSize - d.capacity +} + +// Reset clears the internal state by zeroing bytes in the state buffer. +// This can be skipped for a newly-created hash state; the default zero-allocated state is correct. +func (d *digest) Reset() { + d.absorbed = 0 + for i := range d.a { + d.a[i] = 0 + } +} + +// BlockSize, required by the hash.Hash interface, does not have a standard intepretation +// for a sponge-based construction like SHA3. We return the data rate: the number of bytes which +// can be absorbed per invocation of the permutation function. For Merkle-Damgård based hashes +// (ie SHA1, SHA2, MD5) the output size of the internal compression function is returned. +// We consider this to be roughly equivalent because it represents the number of bytes of output +// produced per cryptographic operation. +func (d *digest) BlockSize() int { return d.rate() } + +// Size returns the output size of the hash function in bytes. +func (d *digest) Size() int { + return d.outputSize +} + +// unalignedAbsorb is a helper function for Write, which absorbs data that isn't aligned with an +// 8-byte lane. This requires shifting the individual bytes into position in a uint64. +func (d *digest) unalignedAbsorb(p []byte) { + var t uint64 + for i := len(p) - 1; i >= 0; i-- { + t <<= 8 + t |= uint64(p[i]) + } + offset := (d.absorbed) % d.rate() + t <<= 8 * uint(offset%laneSize) + d.a[offset/laneSize] ^= t + d.absorbed += len(p) +} + +// Write "absorbs" bytes into the state of the SHA3 hash, updating as needed when the sponge +// "fills up" with rate() bytes. Since lanes are stored internally as type uint64, this requires +// converting the incoming bytes into uint64s using a little endian interpretation. This +// implementation is optimized for large, aligned writes of multiples of 8 bytes (laneSize). +// Non-aligned or uneven numbers of bytes require shifting and are slower. +func (d *digest) Write(p []byte) (int, error) { + // An initial offset is needed if the we aren't absorbing to the first lane initially. + offset := d.absorbed % d.rate() + toWrite := len(p) + + // The first lane may need to absorb unaligned and/or incomplete data. + if (offset%laneSize != 0 || len(p) < 8) && len(p) > 0 { + toAbsorb := minInt(laneSize-(offset%laneSize), len(p)) + d.unalignedAbsorb(p[:toAbsorb]) + p = p[toAbsorb:] + offset = (d.absorbed) % d.rate() + + // For every rate() bytes absorbed, the state must be permuted via the F Function. + if (d.absorbed)%d.rate() == 0 { + keccakF(&d.a) + } + } + + // This loop should absorb the bulk of the data into full, aligned lanes. + // It will call the update function as necessary. + for len(p) > 7 { + firstLane := offset / laneSize + lastLane := minInt(d.rate()/laneSize, firstLane+len(p)/laneSize) + + // This inner loop absorbs input bytes into the state in groups of 8, converted to uint64s. + for lane := firstLane; lane < lastLane; lane++ { + d.a[lane] ^= binary.LittleEndian.Uint64(p[:laneSize]) + p = p[laneSize:] + } + d.absorbed += (lastLane - firstLane) * laneSize + // For every rate() bytes absorbed, the state must be permuted via the F Function. + if (d.absorbed)%d.rate() == 0 { + keccakF(&d.a) + } + + offset = 0 + } + + // If there are insufficient bytes to fill the final lane, an unaligned absorption. + // This should always start at a correct lane boundary though, or else it would be caught + // by the uneven opening lane case above. + if len(p) > 0 { + d.unalignedAbsorb(p) + } + + return toWrite, nil +} + +// pad computes the SHA3 padding scheme based on the number of bytes absorbed. +// The padding is a 1 bit, followed by an arbitrary number of 0s and then a final 1 bit, such that +// the input bits plus padding bits are a multiple of rate(). Adding the padding simply requires +// xoring an opening and closing bit into the appropriate lanes. +func (d *digest) pad() { + offset := d.absorbed % d.rate() + // The opening pad bit must be shifted into position based on the number of bytes absorbed + padOpenLane := offset / laneSize + d.a[padOpenLane] ^= 0x0000000000000001 << uint(8*(offset%laneSize)) + // The closing padding bit is always in the last position + padCloseLane := (d.rate() / laneSize) - 1 + d.a[padCloseLane] ^= 0x8000000000000000 +} + +// finalize prepares the hash to output data by padding and one final permutation of the state. +func (d *digest) finalize() { + d.pad() + keccakF(&d.a) +} + +// squeeze outputs an arbitrary number of bytes from the hash state. +// Squeezing can require multiple calls to the F function (one per rate() bytes squeezed), +// although this is not the case for standard SHA3 parameters. This implementation only supports +// squeezing a single time, subsequent squeezes may lose alignment. Future implementations +// may wish to support multiple squeeze calls, for example to support use as a PRNG. +func (d *digest) squeeze(in []byte, toSqueeze int) []byte { + // Because we read in blocks of laneSize, we need enough room to read + // an integral number of lanes + needed := toSqueeze + (laneSize-toSqueeze%laneSize)%laneSize + if cap(in)-len(in) < needed { + newIn := make([]byte, len(in), len(in)+needed) + copy(newIn, in) + in = newIn + } + out := in[len(in) : len(in)+needed] + + for len(out) > 0 { + for i := 0; i < d.rate() && len(out) > 0; i += laneSize { + binary.LittleEndian.PutUint64(out[:], d.a[i/laneSize]) + out = out[laneSize:] + } + if len(out) > 0 { + keccakF(&d.a) + } + } + return in[:len(in)+toSqueeze] // Re-slice in case we wrote extra data. +} + +// Sum applies padding to the hash state and then squeezes out the desired nubmer of output bytes. +func (d *digest) Sum(in []byte) []byte { + // Make a copy of the original hash so that caller can keep writing and summing. + dup := *d + dup.finalize() + return dup.squeeze(in, dup.outputSize) +} + +// The NewKeccakX constructors enable initializing a hash in any of the four recommend sizes +// from the Keccak specification, all of which set capacity=2*outputSize. Note that the final +// NIST standard for SHA3 may specify different input/output lengths. +// The output size is indicated in bits but converted into bytes internally. +func NewKeccak224() hash.Hash { return &digest{outputSize: 224 / 8, capacity: 2 * 224 / 8} } +func NewKeccak256() hash.Hash { return &digest{outputSize: 256 / 8, capacity: 2 * 256 / 8} } +func NewKeccak384() hash.Hash { return &digest{outputSize: 384 / 8, capacity: 2 * 384 / 8} } +func NewKeccak512() hash.Hash { return &digest{outputSize: 512 / 8, capacity: 2 * 512 / 8} } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/sha3_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/sha3_test.go new file mode 100644 index 00000000..05e7c958 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/sha3/sha3_test.go @@ -0,0 +1,270 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package sha3 + +// These tests are a subset of those provided by the Keccak web site(http://keccak.noekeon.org/). + +import ( + "bytes" + "encoding/hex" + "fmt" + "hash" + "strings" + "testing" +) + +// testDigests maintains a digest state of each standard type. +var testDigests = map[string]*digest{ + "Keccak224": {outputSize: 224 / 8, capacity: 2 * 224 / 8}, + "Keccak256": {outputSize: 256 / 8, capacity: 2 * 256 / 8}, + "Keccak384": {outputSize: 384 / 8, capacity: 2 * 384 / 8}, + "Keccak512": {outputSize: 512 / 8, capacity: 2 * 512 / 8}, +} + +// testVector represents a test input and expected outputs from multiple algorithm variants. +type testVector struct { + desc string + input []byte + repeat int // input will be concatenated the input this many times. + want map[string]string +} + +// decodeHex converts an hex-encoded string into a raw byte string. +func decodeHex(s string) []byte { + b, err := hex.DecodeString(s) + if err != nil { + panic(err) + } + return b +} + +// shortTestVectors stores a series of short testVectors. +// Inputs of 8, 248, and 264 bits from http://keccak.noekeon.org/ are included below. +// The standard defines additional test inputs of all sizes between 0 and 2047 bits. +// Because the current implementation can only handle an integral number of bytes, +// most of the standard test inputs can't be used. +var shortKeccakTestVectors = []testVector{ + { + desc: "short-8b", + input: decodeHex("CC"), + repeat: 1, + want: map[string]string{ + "Keccak224": "A9CAB59EB40A10B246290F2D6086E32E3689FAF1D26B470C899F2802", + "Keccak256": "EEAD6DBFC7340A56CAEDC044696A168870549A6A7F6F56961E84A54BD9970B8A", + "Keccak384": "1B84E62A46E5A201861754AF5DC95C4A1A69CAF4A796AE405680161E29572641F5FA1E8641D7958336EE7B11C58F73E9", + "Keccak512": "8630C13CBD066EA74BBE7FE468FEC1DEE10EDC1254FB4C1B7C5FD69B646E44160B8CE01D05A0908CA790DFB080F4B513BC3B6225ECE7A810371441A5AC666EB9", + }, + }, + { + desc: "short-248b", + input: decodeHex("84FB51B517DF6C5ACCB5D022F8F28DA09B10232D42320FFC32DBECC3835B29"), + repeat: 1, + want: map[string]string{ + "Keccak224": "81AF3A7A5BD4C1F948D6AF4B96F93C3B0CF9C0E7A6DA6FCD71EEC7F6", + "Keccak256": "D477FB02CAAA95B3280EC8EE882C29D9E8A654B21EF178E0F97571BF9D4D3C1C", + "Keccak384": "503DCAA4ADDA5A9420B2E436DD62D9AB2E0254295C2982EF67FCE40F117A2400AB492F7BD5D133C6EC2232268BC27B42", + "Keccak512": "9D8098D8D6EDBBAA2BCFC6FB2F89C3EAC67FEC25CDFE75AA7BD570A648E8C8945FF2EC280F6DCF73386109155C5BBC444C707BB42EAB873F5F7476657B1BC1A8", + }, + }, + { + desc: "short-264b", + input: decodeHex("DE8F1B3FAA4B7040ED4563C3B8E598253178E87E4D0DF75E4FF2F2DEDD5A0BE046"), + repeat: 1, + want: map[string]string{ + "Keccak224": "F217812E362EC64D4DC5EACFABC165184BFA456E5C32C2C7900253D0", + "Keccak256": "E78C421E6213AFF8DE1F025759A4F2C943DB62BBDE359C8737E19B3776ED2DD2", + "Keccak384": "CF38764973F1EC1C34B5433AE75A3AAD1AAEF6AB197850C56C8617BCD6A882F6666883AC17B2DCCDBAA647075D0972B5", + "Keccak512": "9A7688E31AAF40C15575FC58C6B39267AAD3722E696E518A9945CF7F7C0FEA84CB3CB2E9F0384A6B5DC671ADE7FB4D2B27011173F3EEEAF17CB451CF26542031", + }, + }, +} + +// longTestVectors stores longer testVectors (currently only one). +// The computed test vector is 64 MiB long and is a truncated version of the +// ExtremelyLongMsgKAT taken from http://keccak.noekeon.org/. +var longKeccakTestVectors = []testVector{ + { + desc: "long-64MiB", + input: []byte("abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmno"), + repeat: 1024 * 1024, + want: map[string]string{ + "Keccak224": "50E35E40980FEEFF1EA490957B0E970257F75EA0D410EE0F0B8A7A58", + "Keccak256": "5015A4935F0B51E091C6550A94DCD262C08998232CCAA22E7F0756DEAC0DC0D0", + "Keccak384": "7907A8D0FAA7BC6A90FE14C6C958C956A0877E751455D8F13ACDB96F144B5896E716C06EC0CB56557A94EF5C3355F6F3", + "Keccak512": "3EC327D6759F769DEB74E80CA70C831BC29CAB048A4BF4190E4A1DD5C6507CF2B4B58937FDE81D36014E7DFE1B1DD8B0F27CB7614F9A645FEC114F1DAAEFC056", + }, + }, +} + +// TestKeccakVectors checks that correct output is produced for a set of known testVectors. +func TestKeccakVectors(t *testing.T) { + testCases := append([]testVector{}, shortKeccakTestVectors...) + if !testing.Short() { + testCases = append(testCases, longKeccakTestVectors...) + } + for _, tc := range testCases { + for alg, want := range tc.want { + d := testDigests[alg] + d.Reset() + for i := 0; i < tc.repeat; i++ { + d.Write(tc.input) + } + got := strings.ToUpper(hex.EncodeToString(d.Sum(nil))) + if got != want { + t.Errorf("%s, alg=%s\ngot %q, want %q", tc.desc, alg, got, want) + } + } + } +} + +// dumpState is a debugging function to pretty-print the internal state of the hash. +func (d *digest) dumpState() { + fmt.Printf("SHA3 hash, %d B output, %d B capacity (%d B rate)\n", d.outputSize, d.capacity, d.rate()) + fmt.Printf("Internal state after absorbing %d B:\n", d.absorbed) + + for x := 0; x < sliceSize; x++ { + for y := 0; y < sliceSize; y++ { + fmt.Printf("%v, ", d.a[x*sliceSize+y]) + } + fmt.Println("") + } +} + +// TestUnalignedWrite tests that writing data in an arbitrary pattern with small input buffers. +func TestUnalignedWrite(t *testing.T) { + buf := sequentialBytes(0x10000) + for alg, d := range testDigests { + d.Reset() + d.Write(buf) + want := d.Sum(nil) + d.Reset() + for i := 0; i < len(buf); { + // Cycle through offsets which make a 137 byte sequence. + // Because 137 is prime this sequence should exercise all corner cases. + offsets := [17]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1} + for _, j := range offsets { + j = minInt(j, len(buf)-i) + d.Write(buf[i : i+j]) + i += j + } + } + got := d.Sum(nil) + if !bytes.Equal(got, want) { + t.Errorf("Unaligned writes, alg=%s\ngot %q, want %q", alg, got, want) + } + } +} + +func TestAppend(t *testing.T) { + d := NewKeccak224() + + for capacity := 2; capacity < 64; capacity += 64 { + // The first time around the loop, Sum will have to reallocate. + // The second time, it will not. + buf := make([]byte, 2, capacity) + d.Reset() + d.Write([]byte{0xcc}) + buf = d.Sum(buf) + expected := "0000A9CAB59EB40A10B246290F2D6086E32E3689FAF1D26B470C899F2802" + if got := strings.ToUpper(hex.EncodeToString(buf)); got != expected { + t.Errorf("got %s, want %s", got, expected) + } + } +} + +func TestAppendNoRealloc(t *testing.T) { + buf := make([]byte, 1, 200) + d := NewKeccak224() + d.Write([]byte{0xcc}) + buf = d.Sum(buf) + expected := "00A9CAB59EB40A10B246290F2D6086E32E3689FAF1D26B470C899F2802" + if got := strings.ToUpper(hex.EncodeToString(buf)); got != expected { + t.Errorf("got %s, want %s", got, expected) + } +} + +// sequentialBytes produces a buffer of size consecutive bytes 0x00, 0x01, ..., used for testing. +func sequentialBytes(size int) []byte { + result := make([]byte, size) + for i := range result { + result[i] = byte(i) + } + return result +} + +// benchmarkBlockWrite tests the speed of writing data and never calling the permutation function. +func benchmarkBlockWrite(b *testing.B, d *digest) { + b.StopTimer() + d.Reset() + // Write all but the last byte of a block, to ensure that the permutation is not called. + data := sequentialBytes(d.rate() - 1) + b.SetBytes(int64(len(data))) + b.StartTimer() + for i := 0; i < b.N; i++ { + d.absorbed = 0 // Reset absorbed to avoid ever calling the permutation function + d.Write(data) + } + b.StopTimer() + d.Reset() +} + +// BenchmarkPermutationFunction measures the speed of the permutation function with no input data. +func BenchmarkPermutationFunction(b *testing.B) { + b.SetBytes(int64(stateSize)) + var lanes [numLanes]uint64 + for i := 0; i < b.N; i++ { + keccakF(&lanes) + } +} + +// BenchmarkSingleByteWrite tests the latency from writing a single byte +func BenchmarkSingleByteWrite(b *testing.B) { + b.StopTimer() + d := testDigests["Keccak512"] + d.Reset() + data := sequentialBytes(1) //1 byte buffer + b.SetBytes(int64(d.rate()) - 1) + b.StartTimer() + for i := 0; i < b.N; i++ { + d.absorbed = 0 // Reset absorbed to avoid ever calling the permutation function + + // Write all but the last byte of a block, one byte at a time. + for j := 0; j < d.rate()-1; j++ { + d.Write(data) + } + } + b.StopTimer() + d.Reset() +} + +// BenchmarkSingleByteX measures the block write speed for each size of the digest. +func BenchmarkBlockWrite512(b *testing.B) { benchmarkBlockWrite(b, testDigests["Keccak512"]) } +func BenchmarkBlockWrite384(b *testing.B) { benchmarkBlockWrite(b, testDigests["Keccak384"]) } +func BenchmarkBlockWrite256(b *testing.B) { benchmarkBlockWrite(b, testDigests["Keccak256"]) } +func BenchmarkBlockWrite224(b *testing.B) { benchmarkBlockWrite(b, testDigests["Keccak224"]) } + +// benchmarkBulkHash tests the speed to hash a 16 KiB buffer. +func benchmarkBulkHash(b *testing.B, h hash.Hash) { + b.StopTimer() + h.Reset() + size := 1 << 14 + data := sequentialBytes(size) + b.SetBytes(int64(size)) + b.StartTimer() + + var digest []byte + for i := 0; i < b.N; i++ { + h.Write(data) + digest = h.Sum(digest[:0]) + } + b.StopTimer() + h.Reset() +} + +// benchmarkBulkKeccakX test the speed to hash a 16 KiB buffer by calling benchmarkBulkHash. +func BenchmarkBulkKeccak512(b *testing.B) { benchmarkBulkHash(b, NewKeccak512()) } +func BenchmarkBulkKeccak384(b *testing.B) { benchmarkBulkHash(b, NewKeccak384()) } +func BenchmarkBulkKeccak256(b *testing.B) { benchmarkBulkHash(b, NewKeccak256()) } +func BenchmarkBulkKeccak224(b *testing.B) { benchmarkBulkHash(b, NewKeccak224()) } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/agent.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/agent.go new file mode 100644 index 00000000..a91da34c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/agent.go @@ -0,0 +1,250 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "encoding/base64" + "errors" + "io" + "sync" +) + +// See [PROTOCOL.agent], section 3. +const ( + // 3.2 Requests from client to agent for protocol 2 key operations + agentRequestIdentities = 11 + agentSignRequest = 13 + agentAddIdentity = 17 + agentRemoveIdentity = 18 + agentRemoveAllIdentities = 19 + agentAddIdConstrained = 25 + + // 3.3 Key-type independent requests from client to agent + agentAddSmartcardKey = 20 + agentRemoveSmartcardKey = 21 + agentLock = 22 + agentUnlock = 23 + agentAddSmartcardKeyConstrained = 26 + + // 3.4 Generic replies from agent to client + agentFailure = 5 + agentSuccess = 6 + + // 3.6 Replies from agent to client for protocol 2 key operations + agentIdentitiesAnswer = 12 + agentSignResponse = 14 + + // 3.7 Key constraint identifiers + agentConstrainLifetime = 1 + agentConstrainConfirm = 2 +) + +// maxAgentResponseBytes is the maximum agent reply size that is accepted. This +// is a sanity check, not a limit in the spec. +const maxAgentResponseBytes = 16 << 20 + +// Agent messages: +// These structures mirror the wire format of the corresponding ssh agent +// messages found in [PROTOCOL.agent]. + +type failureAgentMsg struct{} + +type successAgentMsg struct{} + +// See [PROTOCOL.agent], section 2.5.2. +type requestIdentitiesAgentMsg struct{} + +// See [PROTOCOL.agent], section 2.5.2. +type identitiesAnswerAgentMsg struct { + NumKeys uint32 + Keys []byte `ssh:"rest"` +} + +// See [PROTOCOL.agent], section 2.6.2. +type signRequestAgentMsg struct { + KeyBlob []byte + Data []byte + Flags uint32 +} + +// See [PROTOCOL.agent], section 2.6.2. +type signResponseAgentMsg struct { + SigBlob []byte +} + +// AgentKey represents a protocol 2 key as defined in [PROTOCOL.agent], +// section 2.5.2. +type AgentKey struct { + blob []byte + Comment string +} + +// String returns the storage form of an agent key with the format, base64 +// encoded serialized key, and the comment if it is not empty. +func (ak *AgentKey) String() string { + algo, _, ok := parseString(ak.blob) + if !ok { + return "ssh: malformed key" + } + + s := string(algo) + " " + base64.StdEncoding.EncodeToString(ak.blob) + + if ak.Comment != "" { + s += " " + ak.Comment + } + + return s +} + +// Key returns an agent's public key as one of the supported key or certificate types. +func (ak *AgentKey) Key() (PublicKey, error) { + if key, _, ok := ParsePublicKey(ak.blob); ok { + return key, nil + } + return nil, errors.New("ssh: failed to parse key blob") +} + +func parseAgentKey(in []byte) (out *AgentKey, rest []byte, ok bool) { + ak := new(AgentKey) + + if ak.blob, in, ok = parseString(in); !ok { + return + } + + comment, in, ok := parseString(in) + if !ok { + return + } + ak.Comment = string(comment) + + return ak, in, true +} + +// AgentClient provides a means to communicate with an ssh agent process based +// on the protocol described in [PROTOCOL.agent]?rev=1.6. +type AgentClient struct { + // conn is typically represented by using a *net.UnixConn + conn io.ReadWriter + // mu is used to prevent concurrent access to the agent + mu sync.Mutex +} + +// NewAgentClient creates and returns a new *AgentClient using the +// passed in io.ReadWriter as a connection to a ssh agent. +func NewAgentClient(rw io.ReadWriter) *AgentClient { + return &AgentClient{conn: rw} +} + +// sendAndReceive sends req to the agent and waits for a reply. On success, +// the reply is unmarshaled into reply and replyType is set to the first byte of +// the reply, which contains the type of the message. +func (ac *AgentClient) sendAndReceive(req []byte) (reply interface{}, replyType uint8, err error) { + // ac.mu prevents multiple, concurrent requests. Since the agent is typically + // on the same machine, we don't attempt to pipeline the requests. + ac.mu.Lock() + defer ac.mu.Unlock() + + msg := make([]byte, stringLength(len(req))) + marshalString(msg, req) + if _, err = ac.conn.Write(msg); err != nil { + return + } + + var respSizeBuf [4]byte + if _, err = io.ReadFull(ac.conn, respSizeBuf[:]); err != nil { + return + } + respSize, _, _ := parseUint32(respSizeBuf[:]) + + if respSize > maxAgentResponseBytes { + err = errors.New("ssh: agent reply too large") + return + } + + buf := make([]byte, respSize) + if _, err = io.ReadFull(ac.conn, buf); err != nil { + return + } + return unmarshalAgentMsg(buf) +} + +// RequestIdentities queries the agent for protocol 2 keys as defined in +// [PROTOCOL.agent] section 2.5.2. +func (ac *AgentClient) RequestIdentities() ([]*AgentKey, error) { + req := marshal(agentRequestIdentities, requestIdentitiesAgentMsg{}) + + msg, msgType, err := ac.sendAndReceive(req) + if err != nil { + return nil, err + } + + switch msg := msg.(type) { + case *identitiesAnswerAgentMsg: + if msg.NumKeys > maxAgentResponseBytes/8 { + return nil, errors.New("ssh: too many keys in agent reply") + } + keys := make([]*AgentKey, msg.NumKeys) + data := msg.Keys + for i := uint32(0); i < msg.NumKeys; i++ { + var key *AgentKey + var ok bool + if key, data, ok = parseAgentKey(data); !ok { + return nil, ParseError{agentIdentitiesAnswer} + } + keys[i] = key + } + return keys, nil + case *failureAgentMsg: + return nil, errors.New("ssh: failed to list keys") + } + return nil, UnexpectedMessageError{agentIdentitiesAnswer, msgType} +} + +// SignRequest requests the signing of data by the agent using a protocol 2 key +// as defined in [PROTOCOL.agent] section 2.6.2. +func (ac *AgentClient) SignRequest(key PublicKey, data []byte) ([]byte, error) { + req := marshal(agentSignRequest, signRequestAgentMsg{ + KeyBlob: MarshalPublicKey(key), + Data: data, + }) + + msg, msgType, err := ac.sendAndReceive(req) + if err != nil { + return nil, err + } + + switch msg := msg.(type) { + case *signResponseAgentMsg: + return msg.SigBlob, nil + case *failureAgentMsg: + return nil, errors.New("ssh: failed to sign challenge") + } + return nil, UnexpectedMessageError{agentSignResponse, msgType} +} + +// unmarshalAgentMsg parses an agent message in packet, returning the parsed +// form and the message type of packet. +func unmarshalAgentMsg(packet []byte) (interface{}, uint8, error) { + if len(packet) < 1 { + return nil, 0, ParseError{0} + } + var msg interface{} + switch packet[0] { + case agentFailure: + msg = new(failureAgentMsg) + case agentSuccess: + msg = new(successAgentMsg) + case agentIdentitiesAnswer: + msg = new(identitiesAnswerAgentMsg) + case agentSignResponse: + msg = new(signResponseAgentMsg) + default: + return nil, 0, UnexpectedMessageError{0, packet[0]} + } + if err := unmarshal(msg, packet, packet[0]); err != nil { + return nil, 0, err + } + return msg, packet[0], nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/buffer.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/buffer.go new file mode 100644 index 00000000..601dad34 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/buffer.go @@ -0,0 +1,96 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "io" + "sync" +) + +// buffer provides a linked list buffer for data exchange +// between producer and consumer. Theoretically the buffer is +// of unlimited capacity as it does no allocation of its own. +type buffer struct { + // protects concurrent access to head, tail and closed + *sync.Cond + + head *element // the buffer that will be read first + tail *element // the buffer that will be read last + + closed bool +} + +// An element represents a single link in a linked list. +type element struct { + buf []byte + next *element +} + +// newBuffer returns an empty buffer that is not closed. +func newBuffer() *buffer { + e := new(element) + b := &buffer{ + Cond: newCond(), + head: e, + tail: e, + } + return b +} + +// write makes buf available for Read to receive. +// buf must not be modified after the call to write. +func (b *buffer) write(buf []byte) { + b.Cond.L.Lock() + defer b.Cond.L.Unlock() + e := &element{buf: buf} + b.tail.next = e + b.tail = e + b.Cond.Signal() +} + +// eof closes the buffer. Reads from the buffer once all +// the data has been consumed will receive os.EOF. +func (b *buffer) eof() error { + b.Cond.L.Lock() + defer b.Cond.L.Unlock() + b.closed = true + b.Cond.Signal() + return nil +} + +// Read reads data from the internal buffer in buf. +// Reads will block if no data is available, or until +// the buffer is closed. +func (b *buffer) Read(buf []byte) (n int, err error) { + b.Cond.L.Lock() + defer b.Cond.L.Unlock() + for len(buf) > 0 { + // if there is data in b.head, copy it + if len(b.head.buf) > 0 { + r := copy(buf, b.head.buf) + buf, b.head.buf = buf[r:], b.head.buf[r:] + n += r + continue + } + // if there is a next buffer, make it the head + if len(b.head.buf) == 0 && b.head != b.tail { + b.head = b.head.next + continue + } + // if at least one byte has been copied, return + if n > 0 { + break + } + // if nothing was read, and there is nothing outstanding + // check to see if the buffer is closed. + if b.closed { + err = io.EOF + break + } + // out of buffers, wait for producer + b.Cond.Wait() + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/buffer_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/buffer_test.go new file mode 100644 index 00000000..135c4aec --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/buffer_test.go @@ -0,0 +1,87 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "io" + "testing" +) + +var BYTES = []byte("abcdefghijklmnopqrstuvwxyz") + +func TestBufferReadwrite(t *testing.T) { + b := newBuffer() + b.write(BYTES[:10]) + r, _ := b.Read(make([]byte, 10)) + if r != 10 { + t.Fatalf("Expected written == read == 10, written: 10, read %d", r) + } + + b = newBuffer() + b.write(BYTES[:5]) + r, _ = b.Read(make([]byte, 10)) + if r != 5 { + t.Fatalf("Expected written == read == 5, written: 5, read %d", r) + } + + b = newBuffer() + b.write(BYTES[:10]) + r, _ = b.Read(make([]byte, 5)) + if r != 5 { + t.Fatalf("Expected written == 10, read == 5, written: 10, read %d", r) + } + + b = newBuffer() + b.write(BYTES[:5]) + b.write(BYTES[5:15]) + r, _ = b.Read(make([]byte, 10)) + r2, _ := b.Read(make([]byte, 10)) + if r != 10 || r2 != 5 || 15 != r+r2 { + t.Fatal("Expected written == read == 15") + } +} + +func TestBufferClose(t *testing.T) { + b := newBuffer() + b.write(BYTES[:10]) + b.eof() + _, err := b.Read(make([]byte, 5)) + if err != nil { + t.Fatal("expected read of 5 to not return EOF") + } + b = newBuffer() + b.write(BYTES[:10]) + b.eof() + r, err := b.Read(make([]byte, 5)) + r2, err2 := b.Read(make([]byte, 10)) + if r != 5 || r2 != 5 || err != nil || err2 != nil { + t.Fatal("expected reads of 5 and 5") + } + + b = newBuffer() + b.write(BYTES[:10]) + b.eof() + r, err = b.Read(make([]byte, 5)) + r2, err2 = b.Read(make([]byte, 10)) + r3, err3 := b.Read(make([]byte, 10)) + if r != 5 || r2 != 5 || r3 != 0 || err != nil || err2 != nil || err3 != io.EOF { + t.Fatal("expected reads of 5 and 5 and 0, with EOF") + } + + b = newBuffer() + b.write(make([]byte, 5)) + b.write(make([]byte, 10)) + b.eof() + r, err = b.Read(make([]byte, 9)) + r2, err2 = b.Read(make([]byte, 3)) + r3, err3 = b.Read(make([]byte, 3)) + r4, err4 := b.Read(make([]byte, 10)) + if err != nil || err2 != nil || err3 != nil || err4 != io.EOF { + t.Fatalf("Expected EOF on forth read only, err=%v, err2=%v, err3=%v, err4=%v", err, err2, err3, err4) + } + if r != 9 || r2 != 3 || r3 != 3 || r4 != 0 { + t.Fatal("Expected written == read == 15", r, r2, r3, r4) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/certs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/certs.go new file mode 100644 index 00000000..d958f310 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/certs.go @@ -0,0 +1,378 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "time" +) + +// These constants from [PROTOCOL.certkeys] represent the algorithm names +// for certificate types supported by this package. +const ( + CertAlgoRSAv01 = "ssh-rsa-cert-v01@openssh.com" + CertAlgoDSAv01 = "ssh-dss-cert-v01@openssh.com" + CertAlgoECDSA256v01 = "ecdsa-sha2-nistp256-cert-v01@openssh.com" + CertAlgoECDSA384v01 = "ecdsa-sha2-nistp384-cert-v01@openssh.com" + CertAlgoECDSA521v01 = "ecdsa-sha2-nistp521-cert-v01@openssh.com" +) + +// Certificate types are used to specify whether a certificate is for identification +// of a user or a host. Current identities are defined in [PROTOCOL.certkeys]. +const ( + UserCert = 1 + HostCert = 2 +) + +type signature struct { + Format string + Blob []byte +} + +type tuple struct { + Name string + Data string +} + +const ( + maxUint64 = 1<<64 - 1 + maxInt64 = 1<<63 - 1 +) + +// CertTime represents an unsigned 64-bit time value in seconds starting from +// UNIX epoch. We use CertTime instead of time.Time in order to properly handle +// the "infinite" time value ^0, which would become negative when expressed as +// an int64. +type CertTime uint64 + +func (ct CertTime) Time() time.Time { + if ct > maxInt64 { + return time.Unix(maxInt64, 0) + } + return time.Unix(int64(ct), 0) +} + +func (ct CertTime) IsInfinite() bool { + return ct == maxUint64 +} + +// An OpenSSHCertV01 represents an OpenSSH certificate as defined in +// [PROTOCOL.certkeys]?rev=1.8. +type OpenSSHCertV01 struct { + Nonce []byte + Key PublicKey + Serial uint64 + Type uint32 + KeyId string + ValidPrincipals []string + ValidAfter, ValidBefore CertTime + CriticalOptions []tuple + Extensions []tuple + Reserved []byte + SignatureKey PublicKey + Signature *signature +} + +// validateOpenSSHCertV01Signature uses the cert's SignatureKey to verify that +// the cert's Signature.Blob is the result of signing the cert bytes starting +// from the algorithm string and going up to and including the SignatureKey. +func validateOpenSSHCertV01Signature(cert *OpenSSHCertV01) bool { + return cert.SignatureKey.Verify(cert.BytesForSigning(), cert.Signature.Blob) +} + +var certAlgoNames = map[string]string{ + KeyAlgoRSA: CertAlgoRSAv01, + KeyAlgoDSA: CertAlgoDSAv01, + KeyAlgoECDSA256: CertAlgoECDSA256v01, + KeyAlgoECDSA384: CertAlgoECDSA384v01, + KeyAlgoECDSA521: CertAlgoECDSA521v01, +} + +// certToPrivAlgo returns the underlying algorithm for a certificate algorithm. +// Panics if a non-certificate algorithm is passed. +func certToPrivAlgo(algo string) string { + for privAlgo, pubAlgo := range certAlgoNames { + if pubAlgo == algo { + return privAlgo + } + } + panic("unknown cert algorithm") +} + +func (cert *OpenSSHCertV01) marshal(includeAlgo, includeSig bool) []byte { + algoName := cert.PublicKeyAlgo() + pubKey := cert.Key.Marshal() + sigKey := MarshalPublicKey(cert.SignatureKey) + + var length int + if includeAlgo { + length += stringLength(len(algoName)) + } + length += stringLength(len(cert.Nonce)) + length += len(pubKey) + length += 8 // Length of Serial + length += 4 // Length of Type + length += stringLength(len(cert.KeyId)) + length += lengthPrefixedNameListLength(cert.ValidPrincipals) + length += 8 // Length of ValidAfter + length += 8 // Length of ValidBefore + length += tupleListLength(cert.CriticalOptions) + length += tupleListLength(cert.Extensions) + length += stringLength(len(cert.Reserved)) + length += stringLength(len(sigKey)) + if includeSig { + length += signatureLength(cert.Signature) + } + + ret := make([]byte, length) + r := ret + if includeAlgo { + r = marshalString(r, []byte(algoName)) + } + r = marshalString(r, cert.Nonce) + copy(r, pubKey) + r = r[len(pubKey):] + r = marshalUint64(r, cert.Serial) + r = marshalUint32(r, cert.Type) + r = marshalString(r, []byte(cert.KeyId)) + r = marshalLengthPrefixedNameList(r, cert.ValidPrincipals) + r = marshalUint64(r, uint64(cert.ValidAfter)) + r = marshalUint64(r, uint64(cert.ValidBefore)) + r = marshalTupleList(r, cert.CriticalOptions) + r = marshalTupleList(r, cert.Extensions) + r = marshalString(r, cert.Reserved) + r = marshalString(r, sigKey) + if includeSig { + r = marshalSignature(r, cert.Signature) + } + if len(r) > 0 { + panic("ssh: internal error, marshaling certificate did not fill the entire buffer") + } + return ret +} + +func (cert *OpenSSHCertV01) BytesForSigning() []byte { + return cert.marshal(true, false) +} + +func (cert *OpenSSHCertV01) Marshal() []byte { + return cert.marshal(false, true) +} + +func (c *OpenSSHCertV01) PublicKeyAlgo() string { + algo, ok := certAlgoNames[c.Key.PublicKeyAlgo()] + if !ok { + panic("unknown cert key type") + } + return algo +} + +func (c *OpenSSHCertV01) PrivateKeyAlgo() string { + return c.Key.PrivateKeyAlgo() +} + +func (c *OpenSSHCertV01) Verify(data []byte, sig []byte) bool { + return c.Key.Verify(data, sig) +} + +func parseOpenSSHCertV01(in []byte, algo string) (out *OpenSSHCertV01, rest []byte, ok bool) { + cert := new(OpenSSHCertV01) + + if cert.Nonce, in, ok = parseString(in); !ok { + return + } + + privAlgo := certToPrivAlgo(algo) + cert.Key, in, ok = parsePubKey(in, privAlgo) + if !ok { + return + } + + // We test PublicKeyAlgo to make sure we don't use some weird sub-cert. + if cert.Key.PublicKeyAlgo() != privAlgo { + ok = false + return + } + + if cert.Serial, in, ok = parseUint64(in); !ok { + return + } + + if cert.Type, in, ok = parseUint32(in); !ok { + return + } + + keyId, in, ok := parseString(in) + if !ok { + return + } + cert.KeyId = string(keyId) + + if cert.ValidPrincipals, in, ok = parseLengthPrefixedNameList(in); !ok { + return + } + + va, in, ok := parseUint64(in) + if !ok { + return + } + cert.ValidAfter = CertTime(va) + + vb, in, ok := parseUint64(in) + if !ok { + return + } + cert.ValidBefore = CertTime(vb) + + if cert.CriticalOptions, in, ok = parseTupleList(in); !ok { + return + } + + if cert.Extensions, in, ok = parseTupleList(in); !ok { + return + } + + if cert.Reserved, in, ok = parseString(in); !ok { + return + } + + sigKey, in, ok := parseString(in) + if !ok { + return + } + if cert.SignatureKey, _, ok = ParsePublicKey(sigKey); !ok { + return + } + + if cert.Signature, in, ok = parseSignature(in); !ok { + return + } + + ok = true + return cert, in, ok +} + +func lengthPrefixedNameListLength(namelist []string) int { + length := 4 // length prefix for list + for _, name := range namelist { + length += 4 // length prefix for name + length += len(name) + } + return length +} + +func marshalLengthPrefixedNameList(to []byte, namelist []string) []byte { + length := uint32(lengthPrefixedNameListLength(namelist) - 4) + to = marshalUint32(to, length) + for _, name := range namelist { + to = marshalString(to, []byte(name)) + } + return to +} + +func parseLengthPrefixedNameList(in []byte) (out []string, rest []byte, ok bool) { + list, rest, ok := parseString(in) + if !ok { + return + } + + for len(list) > 0 { + var next []byte + if next, list, ok = parseString(list); !ok { + return nil, nil, false + } + out = append(out, string(next)) + } + ok = true + return +} + +func tupleListLength(tupleList []tuple) int { + length := 4 // length prefix for list + for _, t := range tupleList { + length += 4 // length prefix for t.Name + length += len(t.Name) + length += 4 // length prefix for t.Data + length += len(t.Data) + } + return length +} + +func marshalTupleList(to []byte, tuplelist []tuple) []byte { + length := uint32(tupleListLength(tuplelist) - 4) + to = marshalUint32(to, length) + for _, t := range tuplelist { + to = marshalString(to, []byte(t.Name)) + to = marshalString(to, []byte(t.Data)) + } + return to +} + +func parseTupleList(in []byte) (out []tuple, rest []byte, ok bool) { + list, rest, ok := parseString(in) + if !ok { + return + } + + for len(list) > 0 { + var name, data []byte + var ok bool + name, list, ok = parseString(list) + if !ok { + return nil, nil, false + } + data, list, ok = parseString(list) + if !ok { + return nil, nil, false + } + out = append(out, tuple{string(name), string(data)}) + } + ok = true + return +} + +func signatureLength(sig *signature) int { + length := 4 // length prefix for signature + length += stringLength(len(sig.Format)) + length += stringLength(len(sig.Blob)) + return length +} + +func marshalSignature(to []byte, sig *signature) []byte { + length := uint32(signatureLength(sig) - 4) + to = marshalUint32(to, length) + to = marshalString(to, []byte(sig.Format)) + to = marshalString(to, sig.Blob) + return to +} + +func parseSignatureBody(in []byte) (out *signature, rest []byte, ok bool) { + var format []byte + if format, in, ok = parseString(in); !ok { + return + } + + out = &signature{ + Format: string(format), + } + + if out.Blob, in, ok = parseString(in); !ok { + return + } + + return out, in, ok +} + +func parseSignature(in []byte) (out *signature, rest []byte, ok bool) { + var sigBytes []byte + if sigBytes, rest, ok = parseString(in); !ok { + return + } + + out, sigBytes, ok = parseSignatureBody(sigBytes) + if !ok || len(sigBytes) > 0 { + return nil, nil, false + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/certs_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/certs_test.go new file mode 100644 index 00000000..3cec28ec --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/certs_test.go @@ -0,0 +1,55 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "testing" +) + +// Cert generated by ssh-keygen 6.0p1 Debian-4. +// % ssh-keygen -s ca-key -I test user-key +var exampleSSHCert = `ssh-rsa-cert-v01@openssh.com AAAAHHNzaC1yc2EtY2VydC12MDFAb3BlbnNzaC5jb20AAAAgb1srW/W3ZDjYAO45xLYAwzHBDLsJ4Ux6ICFIkTjb1LEAAAADAQABAAAAYQCkoR51poH0wE8w72cqSB8Sszx+vAhzcMdCO0wqHTj7UNENHWEXGrU0E0UQekD7U+yhkhtoyjbPOVIP7hNa6aRk/ezdh/iUnCIt4Jt1v3Z1h1P+hA4QuYFMHNB+rmjPwAcAAAAAAAAAAAAAAAEAAAAEdGVzdAAAAAAAAAAAAAAAAP//////////AAAAAAAAAIIAAAAVcGVybWl0LVgxMS1mb3J3YXJkaW5nAAAAAAAAABdwZXJtaXQtYWdlbnQtZm9yd2FyZGluZwAAAAAAAAAWcGVybWl0LXBvcnQtZm9yd2FyZGluZwAAAAAAAAAKcGVybWl0LXB0eQAAAAAAAAAOcGVybWl0LXVzZXItcmMAAAAAAAAAAAAAAHcAAAAHc3NoLXJzYQAAAAMBAAEAAABhANFS2kaktpSGc+CcmEKPyw9mJC4nZKxHKTgLVZeaGbFZOvJTNzBspQHdy7Q1uKSfktxpgjZnksiu/tFF9ngyY2KFoc+U88ya95IZUycBGCUbBQ8+bhDtw/icdDGQD5WnUwAAAG8AAAAHc3NoLXJzYQAAAGC8Y9Z2LQKhIhxf52773XaWrXdxP0t3GBVo4A10vUWiYoAGepr6rQIoGGXFxT4B9Gp+nEBJjOwKDXPrAevow0T9ca8gZN+0ykbhSrXLE5Ao48rqr3zP4O1/9P7e6gp0gw8=` + +func TestParseCert(t *testing.T) { + authKeyBytes := []byte(exampleSSHCert) + + key, _, _, rest, ok := ParseAuthorizedKey(authKeyBytes) + if !ok { + t.Fatalf("could not parse certificate") + } + if len(rest) > 0 { + t.Errorf("rest: got %q, want empty", rest) + } + + if _, ok = key.(*OpenSSHCertV01); !ok { + t.Fatalf("got %#v, want *OpenSSHCertV01", key) + } + + marshaled := MarshalAuthorizedKey(key) + // Before comparison, remove the trailing newline that + // MarshalAuthorizedKey adds. + marshaled = marshaled[:len(marshaled)-1] + if !bytes.Equal(authKeyBytes, marshaled) { + t.Errorf("marshaled certificate does not match original: got %q, want %q", marshaled, authKeyBytes) + } +} + +func TestVerifyCert(t *testing.T) { + key, _, _, _, _ := ParseAuthorizedKey([]byte(exampleSSHCert)) + validCert := key.(*OpenSSHCertV01) + if ok := validateOpenSSHCertV01Signature(validCert); !ok { + t.Error("Unable to validate certificate!") + } + + invalidCert := &OpenSSHCertV01{ + Key: rsaKey.PublicKey(), + SignatureKey: ecdsaKey.PublicKey(), + Signature: &signature{}, + } + if ok := validateOpenSSHCertV01Signature(invalidCert); ok { + t.Error("Invalid cert signature passed validation!") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/channel.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/channel.go new file mode 100644 index 00000000..c5413c9f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/channel.go @@ -0,0 +1,594 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "errors" + "fmt" + "io" + "sync" + "sync/atomic" +) + +// extendedDataTypeCode identifies an OpenSSL extended data type. See RFC 4254, +// section 5.2. +type extendedDataTypeCode uint32 + +const ( + // extendedDataStderr is the extended data type that is used for stderr. + extendedDataStderr extendedDataTypeCode = 1 + + // minPacketLength defines the smallest valid packet + minPacketLength = 9 + + // channelMaxPacketSize defines the maximum packet size advertised in open messages + channelMaxPacketSize = 1 << 15 // RFC 4253 6.1, minimum 32 KiB + + // channelWindowSize defines the window size advertised in open messages + channelWindowSize = 64 * channelMaxPacketSize // Like OpenSSH +) + +// A Channel is an ordered, reliable, duplex stream that is multiplexed over an +// SSH connection. Channel.Read can return a ChannelRequest as an error. +type Channel interface { + // Accept accepts the channel creation request. + Accept() error + // Reject rejects the channel creation request. After calling this, no + // other methods on the Channel may be called. If they are then the + // peer is likely to signal a protocol error and drop the connection. + Reject(reason RejectionReason, message string) error + + // Read may return a ChannelRequest as an error. + Read(data []byte) (int, error) + Write(data []byte) (int, error) + Close() error + + // Stderr returns an io.Writer that writes to this channel with the + // extended data type set to stderr. + Stderr() io.Writer + + // AckRequest either sends an ack or nack to the channel request. + AckRequest(ok bool) error + + // ChannelType returns the type of the channel, as supplied by the + // client. + ChannelType() string + // ExtraData returns the arbitrary payload for this channel, as supplied + // by the client. This data is specific to the channel type. + ExtraData() []byte +} + +// ChannelRequest represents a request sent on a channel, outside of the normal +// stream of bytes. It may result from calling Read on a Channel. +type ChannelRequest struct { + Request string + WantReply bool + Payload []byte +} + +func (c ChannelRequest) Error() string { + return "ssh: channel request received" +} + +// RejectionReason is an enumeration used when rejecting channel creation +// requests. See RFC 4254, section 5.1. +type RejectionReason uint32 + +const ( + Prohibited RejectionReason = iota + 1 + ConnectionFailed + UnknownChannelType + ResourceShortage +) + +// String converts the rejection reason to human readable form. +func (r RejectionReason) String() string { + switch r { + case Prohibited: + return "administratively prohibited" + case ConnectionFailed: + return "connect failed" + case UnknownChannelType: + return "unknown channel type" + case ResourceShortage: + return "resource shortage" + } + return fmt.Sprintf("unknown reason %d", int(r)) +} + +type channel struct { + packetConn // the underlying transport + localId, remoteId uint32 + remoteWin window + maxPacket uint32 + isClosed uint32 // atomic bool, non zero if true +} + +func (c *channel) sendWindowAdj(n int) error { + msg := windowAdjustMsg{ + PeersId: c.remoteId, + AdditionalBytes: uint32(n), + } + return c.writePacket(marshal(msgChannelWindowAdjust, msg)) +} + +// sendEOF sends EOF to the remote side. RFC 4254 Section 5.3 +func (c *channel) sendEOF() error { + return c.writePacket(marshal(msgChannelEOF, channelEOFMsg{ + PeersId: c.remoteId, + })) +} + +// sendClose informs the remote side of our intent to close the channel. +func (c *channel) sendClose() error { + return c.packetConn.writePacket(marshal(msgChannelClose, channelCloseMsg{ + PeersId: c.remoteId, + })) +} + +func (c *channel) sendChannelOpenFailure(reason RejectionReason, message string) error { + reject := channelOpenFailureMsg{ + PeersId: c.remoteId, + Reason: reason, + Message: message, + Language: "en", + } + return c.writePacket(marshal(msgChannelOpenFailure, reject)) +} + +func (c *channel) writePacket(b []byte) error { + if c.closed() { + return io.EOF + } + if uint32(len(b)) > c.maxPacket { + return fmt.Errorf("ssh: cannot write %d bytes, maxPacket is %d bytes", len(b), c.maxPacket) + } + return c.packetConn.writePacket(b) +} + +func (c *channel) closed() bool { + return atomic.LoadUint32(&c.isClosed) > 0 +} + +func (c *channel) setClosed() bool { + return atomic.CompareAndSwapUint32(&c.isClosed, 0, 1) +} + +type serverChan struct { + channel + // immutable once created + chanType string + extraData []byte + + serverConn *ServerConn + myWindow uint32 + theyClosed bool // indicates the close msg has been received from the remote side + theySentEOF bool + isDead uint32 + err error + + pendingRequests []ChannelRequest + pendingData []byte + head, length int + + // This lock is inferior to serverConn.lock + cond *sync.Cond +} + +func (c *serverChan) Accept() error { + c.serverConn.lock.Lock() + defer c.serverConn.lock.Unlock() + + if c.serverConn.err != nil { + return c.serverConn.err + } + + confirm := channelOpenConfirmMsg{ + PeersId: c.remoteId, + MyId: c.localId, + MyWindow: c.myWindow, + MaxPacketSize: c.maxPacket, + } + return c.writePacket(marshal(msgChannelOpenConfirm, confirm)) +} + +func (c *serverChan) Reject(reason RejectionReason, message string) error { + c.serverConn.lock.Lock() + defer c.serverConn.lock.Unlock() + + if c.serverConn.err != nil { + return c.serverConn.err + } + + return c.sendChannelOpenFailure(reason, message) +} + +func (c *serverChan) handlePacket(packet interface{}) { + c.cond.L.Lock() + defer c.cond.L.Unlock() + + switch packet := packet.(type) { + case *channelRequestMsg: + req := ChannelRequest{ + Request: packet.Request, + WantReply: packet.WantReply, + Payload: packet.RequestSpecificData, + } + + c.pendingRequests = append(c.pendingRequests, req) + c.cond.Signal() + case *channelCloseMsg: + c.theyClosed = true + c.cond.Signal() + case *channelEOFMsg: + c.theySentEOF = true + c.cond.Signal() + case *windowAdjustMsg: + if !c.remoteWin.add(packet.AdditionalBytes) { + panic("illegal window update") + } + default: + panic("unknown packet type") + } +} + +func (c *serverChan) handleData(data []byte) { + c.cond.L.Lock() + defer c.cond.L.Unlock() + + // The other side should never send us more than our window. + if len(data)+c.length > len(c.pendingData) { + // TODO(agl): we should tear down the channel with a protocol + // error. + return + } + + c.myWindow -= uint32(len(data)) + for i := 0; i < 2; i++ { + tail := c.head + c.length + if tail >= len(c.pendingData) { + tail -= len(c.pendingData) + } + n := copy(c.pendingData[tail:], data) + data = data[n:] + c.length += n + } + + c.cond.Signal() +} + +func (c *serverChan) Stderr() io.Writer { + return extendedDataChannel{c: c, t: extendedDataStderr} +} + +// extendedDataChannel is an io.Writer that writes any data to c as extended +// data of the given type. +type extendedDataChannel struct { + t extendedDataTypeCode + c *serverChan +} + +func (edc extendedDataChannel) Write(data []byte) (n int, err error) { + const headerLength = 13 // 1 byte message type, 4 bytes remoteId, 4 bytes extended message type, 4 bytes data length + c := edc.c + for len(data) > 0 { + space := min(c.maxPacket-headerLength, len(data)) + if space, err = c.getWindowSpace(space); err != nil { + return 0, err + } + todo := data + if uint32(len(todo)) > space { + todo = todo[:space] + } + + packet := make([]byte, headerLength+len(todo)) + packet[0] = msgChannelExtendedData + marshalUint32(packet[1:], c.remoteId) + marshalUint32(packet[5:], uint32(edc.t)) + marshalUint32(packet[9:], uint32(len(todo))) + copy(packet[13:], todo) + + if err = c.writePacket(packet); err != nil { + return + } + + n += len(todo) + data = data[len(todo):] + } + + return +} + +func (c *serverChan) Read(data []byte) (n int, err error) { + n, err, windowAdjustment := c.read(data) + + if windowAdjustment > 0 { + packet := marshal(msgChannelWindowAdjust, windowAdjustMsg{ + PeersId: c.remoteId, + AdditionalBytes: windowAdjustment, + }) + err = c.writePacket(packet) + } + + return +} + +func (c *serverChan) read(data []byte) (n int, err error, windowAdjustment uint32) { + c.cond.L.Lock() + defer c.cond.L.Unlock() + + if c.err != nil { + return 0, c.err, 0 + } + + for { + if c.theySentEOF || c.theyClosed || c.dead() { + return 0, io.EOF, 0 + } + + if len(c.pendingRequests) > 0 { + req := c.pendingRequests[0] + if len(c.pendingRequests) == 1 { + c.pendingRequests = nil + } else { + oldPendingRequests := c.pendingRequests + c.pendingRequests = make([]ChannelRequest, len(oldPendingRequests)-1) + copy(c.pendingRequests, oldPendingRequests[1:]) + } + + return 0, req, 0 + } + + if c.length > 0 { + tail := min(uint32(c.head+c.length), len(c.pendingData)) + n = copy(data, c.pendingData[c.head:tail]) + c.head += n + c.length -= n + if c.head == len(c.pendingData) { + c.head = 0 + } + + windowAdjustment = uint32(len(c.pendingData)-c.length) - c.myWindow + if windowAdjustment < uint32(len(c.pendingData)/2) { + windowAdjustment = 0 + } + c.myWindow += windowAdjustment + + return + } + + c.cond.Wait() + } + + panic("unreachable") +} + +// getWindowSpace takes, at most, max bytes of space from the peer's window. It +// returns the number of bytes actually reserved. +func (c *serverChan) getWindowSpace(max uint32) (uint32, error) { + if c.dead() || c.closed() { + return 0, io.EOF + } + return c.remoteWin.reserve(max), nil +} + +func (c *serverChan) dead() bool { + return atomic.LoadUint32(&c.isDead) > 0 +} + +func (c *serverChan) setDead() { + atomic.StoreUint32(&c.isDead, 1) +} + +func (c *serverChan) Write(data []byte) (n int, err error) { + const headerLength = 9 // 1 byte message type, 4 bytes remoteId, 4 bytes data length + for len(data) > 0 { + space := min(c.maxPacket-headerLength, len(data)) + if space, err = c.getWindowSpace(space); err != nil { + return 0, err + } + todo := data + if uint32(len(todo)) > space { + todo = todo[:space] + } + + packet := make([]byte, headerLength+len(todo)) + packet[0] = msgChannelData + marshalUint32(packet[1:], c.remoteId) + marshalUint32(packet[5:], uint32(len(todo))) + copy(packet[9:], todo) + + if err = c.writePacket(packet); err != nil { + return + } + + n += len(todo) + data = data[len(todo):] + } + + return +} + +// Close signals the intent to close the channel. +func (c *serverChan) Close() error { + c.serverConn.lock.Lock() + defer c.serverConn.lock.Unlock() + + if c.serverConn.err != nil { + return c.serverConn.err + } + + if !c.setClosed() { + return errors.New("ssh: channel already closed") + } + return c.sendClose() +} + +func (c *serverChan) AckRequest(ok bool) error { + c.serverConn.lock.Lock() + defer c.serverConn.lock.Unlock() + + if c.serverConn.err != nil { + return c.serverConn.err + } + + if !ok { + ack := channelRequestFailureMsg{ + PeersId: c.remoteId, + } + return c.writePacket(marshal(msgChannelFailure, ack)) + } + + ack := channelRequestSuccessMsg{ + PeersId: c.remoteId, + } + return c.writePacket(marshal(msgChannelSuccess, ack)) +} + +func (c *serverChan) ChannelType() string { + return c.chanType +} + +func (c *serverChan) ExtraData() []byte { + return c.extraData +} + +// A clientChan represents a single RFC 4254 channel multiplexed +// over a SSH connection. +type clientChan struct { + channel + stdin *chanWriter + stdout *chanReader + stderr *chanReader + msg chan interface{} +} + +// newClientChan returns a partially constructed *clientChan +// using the local id provided. To be usable clientChan.remoteId +// needs to be assigned once known. +func newClientChan(cc packetConn, id uint32) *clientChan { + c := &clientChan{ + channel: channel{ + packetConn: cc, + localId: id, + remoteWin: window{Cond: newCond()}, + }, + msg: make(chan interface{}, 16), + } + c.stdin = &chanWriter{ + channel: &c.channel, + } + c.stdout = &chanReader{ + channel: &c.channel, + buffer: newBuffer(), + } + c.stderr = &chanReader{ + channel: &c.channel, + buffer: newBuffer(), + } + return c +} + +// waitForChannelOpenResponse, if successful, fills out +// the remoteId and records any initial window advertisement. +func (c *clientChan) waitForChannelOpenResponse() error { + switch msg := (<-c.msg).(type) { + case *channelOpenConfirmMsg: + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + return errors.New("ssh: invalid MaxPacketSize from peer") + } + // fixup remoteId field + c.remoteId = msg.MyId + c.maxPacket = msg.MaxPacketSize + c.remoteWin.add(msg.MyWindow) + return nil + case *channelOpenFailureMsg: + return errors.New(safeString(msg.Message)) + } + return errors.New("ssh: unexpected packet") +} + +// Close signals the intent to close the channel. +func (c *clientChan) Close() error { + if !c.setClosed() { + return errors.New("ssh: channel already closed") + } + c.stdout.eof() + c.stderr.eof() + return c.sendClose() +} + +// A chanWriter represents the stdin of a remote process. +type chanWriter struct { + *channel + // indicates the writer has been closed. eof is owned by the + // caller of Write/Close. + eof bool +} + +// Write writes data to the remote process's standard input. +func (w *chanWriter) Write(data []byte) (written int, err error) { + const headerLength = 9 // 1 byte message type, 4 bytes remoteId, 4 bytes data length + for len(data) > 0 { + if w.eof || w.closed() { + err = io.EOF + return + } + // never send more data than maxPacket even if + // there is sufficient window. + n := min(w.maxPacket-headerLength, len(data)) + r := w.remoteWin.reserve(n) + n = r + remoteId := w.remoteId + packet := []byte{ + msgChannelData, + byte(remoteId >> 24), byte(remoteId >> 16), byte(remoteId >> 8), byte(remoteId), + byte(n >> 24), byte(n >> 16), byte(n >> 8), byte(n), + } + if err = w.writePacket(append(packet, data[:n]...)); err != nil { + break + } + data = data[n:] + written += int(n) + } + return +} + +func min(a uint32, b int) uint32 { + if a < uint32(b) { + return a + } + return uint32(b) +} + +func (w *chanWriter) Close() error { + w.eof = true + return w.sendEOF() +} + +// A chanReader represents stdout or stderr of a remote process. +type chanReader struct { + *channel // the channel backing this reader + *buffer +} + +// Read reads data from the remote process's stdout or stderr. +func (r *chanReader) Read(buf []byte) (int, error) { + n, err := r.buffer.Read(buf) + if err != nil { + if err == io.EOF { + return n, err + } + return 0, err + } + err = r.sendWindowAdj(n) + if err == io.EOF && n > 0 { + // sendWindowAdjust can return io.EOF if the remote peer has + // closed the connection, however we want to defer forwarding io.EOF to the + // caller of Read until the buffer has been drained. + err = nil + } + return n, err +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/cipher.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/cipher.go new file mode 100644 index 00000000..bc2e9838 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/cipher.go @@ -0,0 +1,100 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto/aes" + "crypto/cipher" + "crypto/rc4" +) + +// streamDump is used to dump the initial keystream for stream ciphers. It is a +// a write-only buffer, and not intended for reading so do not require a mutex. +var streamDump [512]byte + +// noneCipher implements cipher.Stream and provides no encryption. It is used +// by the transport before the first key-exchange. +type noneCipher struct{} + +func (c noneCipher) XORKeyStream(dst, src []byte) { + copy(dst, src) +} + +func newAESCTR(key, iv []byte) (cipher.Stream, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + return cipher.NewCTR(c, iv), nil +} + +func newRC4(key, iv []byte) (cipher.Stream, error) { + return rc4.NewCipher(key) +} + +type cipherMode struct { + keySize int + ivSize int + skip int + createFunc func(key, iv []byte) (cipher.Stream, error) +} + +func (c *cipherMode) createCipher(key, iv []byte) (cipher.Stream, error) { + if len(key) < c.keySize { + panic("ssh: key length too small for cipher") + } + if len(iv) < c.ivSize { + panic("ssh: iv too small for cipher") + } + + stream, err := c.createFunc(key[:c.keySize], iv[:c.ivSize]) + if err != nil { + return nil, err + } + + for remainingToDump := c.skip; remainingToDump > 0; { + dumpThisTime := remainingToDump + if dumpThisTime > len(streamDump) { + dumpThisTime = len(streamDump) + } + stream.XORKeyStream(streamDump[:dumpThisTime], streamDump[:dumpThisTime]) + remainingToDump -= dumpThisTime + } + + return stream, nil +} + +// Specifies a default set of ciphers and a preference order. This is based on +// OpenSSH's default client preference order, minus algorithms that are not +// implemented. +var DefaultCipherOrder = []string{ + "aes128-ctr", "aes192-ctr", "aes256-ctr", + "arcfour256", "arcfour128", +} + +// cipherModes documents properties of supported ciphers. Ciphers not included +// are not supported and will not be negotiated, even if explicitly requested in +// ClientConfig.Crypto.Ciphers. +var cipherModes = map[string]*cipherMode{ + // Ciphers from RFC4344, which introduced many CTR-based ciphers. Algorithms + // are defined in the order specified in the RFC. + "aes128-ctr": {16, aes.BlockSize, 0, newAESCTR}, + "aes192-ctr": {24, aes.BlockSize, 0, newAESCTR}, + "aes256-ctr": {32, aes.BlockSize, 0, newAESCTR}, + + // Ciphers from RFC4345, which introduces security-improved arcfour ciphers. + // They are defined in the order specified in the RFC. + "arcfour128": {16, 0, 1536, newRC4}, + "arcfour256": {32, 0, 1536, newRC4}, +} + +// defaultKeyExchangeOrder specifies a default set of key exchange algorithms +// with preferences. +var defaultKeyExchangeOrder = []string{ + // P384 and P521 are not constant-time yet, but since we don't + // reuse ephemeral keys, using them for ECDH should be OK. + kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521, + kexAlgoDH14SHA1, kexAlgoDH1SHA1, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/cipher_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/cipher_test.go new file mode 100644 index 00000000..ea27bd8a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/cipher_test.go @@ -0,0 +1,62 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "testing" +) + +// TestCipherReversal tests that each cipher factory produces ciphers that can +// encrypt and decrypt some data successfully. +func TestCipherReversal(t *testing.T) { + testData := []byte("abcdefghijklmnopqrstuvwxyz012345") + testKey := []byte("AbCdEfGhIjKlMnOpQrStUvWxYz012345") + testIv := []byte("sdflkjhsadflkjhasdflkjhsadfklhsa") + + cryptBuffer := make([]byte, 32) + + for name, cipherMode := range cipherModes { + encrypter, err := cipherMode.createCipher(testKey, testIv) + if err != nil { + t.Errorf("failed to create encrypter for %q: %s", name, err) + continue + } + decrypter, err := cipherMode.createCipher(testKey, testIv) + if err != nil { + t.Errorf("failed to create decrypter for %q: %s", name, err) + continue + } + + copy(cryptBuffer, testData) + + encrypter.XORKeyStream(cryptBuffer, cryptBuffer) + if name == "none" { + if !bytes.Equal(cryptBuffer, testData) { + t.Errorf("encryption made change with 'none' cipher") + continue + } + } else { + if bytes.Equal(cryptBuffer, testData) { + t.Errorf("encryption made no change with %q", name) + continue + } + } + + decrypter.XORKeyStream(cryptBuffer, cryptBuffer) + if !bytes.Equal(cryptBuffer, testData) { + t.Errorf("decrypted bytes not equal to input with %q", name) + continue + } + } +} + +func TestDefaultCiphersExist(t *testing.T) { + for _, cipherAlgo := range DefaultCipherOrder { + if _, ok := cipherModes[cipherAlgo]; !ok { + t.Errorf("default cipher %q is unknown", cipherAlgo) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client.go new file mode 100644 index 00000000..e2d25570 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client.go @@ -0,0 +1,524 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto/rand" + "encoding/binary" + "errors" + "fmt" + "io" + "net" + "sync" +) + +// ClientConn represents the client side of an SSH connection. +type ClientConn struct { + transport *transport + config *ClientConfig + chanList // channels associated with this connection + forwardList // forwarded tcpip connections from the remote side + globalRequest + + // Address as passed to the Dial function. + dialAddress string + + serverVersion string +} + +type globalRequest struct { + sync.Mutex + response chan interface{} +} + +// Client returns a new SSH client connection using c as the underlying transport. +func Client(c net.Conn, config *ClientConfig) (*ClientConn, error) { + return clientWithAddress(c, "", config) +} + +func clientWithAddress(c net.Conn, addr string, config *ClientConfig) (*ClientConn, error) { + conn := &ClientConn{ + transport: newTransport(c, config.rand(), true /* is client */), + config: config, + globalRequest: globalRequest{response: make(chan interface{}, 1)}, + dialAddress: addr, + } + + if err := conn.handshake(); err != nil { + conn.transport.Close() + return nil, fmt.Errorf("handshake failed: %v", err) + } + go conn.mainLoop() + return conn, nil +} + +// Close closes the connection. +func (c *ClientConn) Close() error { return c.transport.Close() } + +// LocalAddr returns the local network address. +func (c *ClientConn) LocalAddr() net.Addr { return c.transport.LocalAddr() } + +// RemoteAddr returns the remote network address. +func (c *ClientConn) RemoteAddr() net.Addr { return c.transport.RemoteAddr() } + +// handshake performs the client side key exchange. See RFC 4253 Section 7. +func (c *ClientConn) handshake() error { + clientVersion := []byte(packageVersion) + if c.config.ClientVersion != "" { + clientVersion = []byte(c.config.ClientVersion) + } + + serverVersion, err := exchangeVersions(c.transport.Conn, clientVersion) + if err != nil { + return err + } + c.serverVersion = string(serverVersion) + + clientKexInit := kexInitMsg{ + KexAlgos: c.config.Crypto.kexes(), + ServerHostKeyAlgos: supportedHostKeyAlgos, + CiphersClientServer: c.config.Crypto.ciphers(), + CiphersServerClient: c.config.Crypto.ciphers(), + MACsClientServer: c.config.Crypto.macs(), + MACsServerClient: c.config.Crypto.macs(), + CompressionClientServer: supportedCompressions, + CompressionServerClient: supportedCompressions, + } + kexInitPacket := marshal(msgKexInit, clientKexInit) + if err := c.transport.writePacket(kexInitPacket); err != nil { + return err + } + packet, err := c.transport.readPacket() + if err != nil { + return err + } + + var serverKexInit kexInitMsg + if err = unmarshal(&serverKexInit, packet, msgKexInit); err != nil { + return err + } + + algs := findAgreedAlgorithms(&clientKexInit, &serverKexInit) + if algs == nil { + return errors.New("ssh: no common algorithms") + } + + if serverKexInit.FirstKexFollows && algs.kex != serverKexInit.KexAlgos[0] { + // The server sent a Kex message for the wrong algorithm, + // which we have to ignore. + if _, err := c.transport.readPacket(); err != nil { + return err + } + } + + kex, ok := kexAlgoMap[algs.kex] + if !ok { + return fmt.Errorf("ssh: unexpected key exchange algorithm %v", algs.kex) + } + + magics := handshakeMagics{ + clientVersion: clientVersion, + serverVersion: serverVersion, + clientKexInit: kexInitPacket, + serverKexInit: packet, + } + result, err := kex.Client(c.transport, c.config.rand(), &magics) + if err != nil { + return err + } + + err = verifyHostKeySignature(algs.hostKey, result.HostKey, result.H, result.Signature) + if err != nil { + return err + } + + if checker := c.config.HostKeyChecker; checker != nil { + err = checker.Check(c.dialAddress, c.transport.RemoteAddr(), algs.hostKey, result.HostKey) + if err != nil { + return err + } + } + + c.transport.prepareKeyChange(algs, result) + + if err = c.transport.writePacket([]byte{msgNewKeys}); err != nil { + return err + } + if packet, err = c.transport.readPacket(); err != nil { + return err + } + if packet[0] != msgNewKeys { + return UnexpectedMessageError{msgNewKeys, packet[0]} + } + return c.authenticate() +} + +// Verify the host key obtained in the key exchange. +func verifyHostKeySignature(hostKeyAlgo string, hostKeyBytes []byte, data []byte, signature []byte) error { + hostKey, rest, ok := ParsePublicKey(hostKeyBytes) + if len(rest) > 0 || !ok { + return errors.New("ssh: could not parse hostkey") + } + + sig, rest, ok := parseSignatureBody(signature) + if len(rest) > 0 || !ok { + return errors.New("ssh: signature parse error") + } + if sig.Format != hostKeyAlgo { + return fmt.Errorf("ssh: unexpected signature type %q", sig.Format) + } + + if !hostKey.Verify(data, sig.Blob) { + return errors.New("ssh: host key signature error") + } + return nil +} + +// mainLoop reads incoming messages and routes channel messages +// to their respective ClientChans. +func (c *ClientConn) mainLoop() { + defer func() { + c.transport.Close() + c.chanList.closeAll() + c.forwardList.closeAll() + }() + + for { + packet, err := c.transport.readPacket() + if err != nil { + break + } + // TODO(dfc) A note on blocking channel use. + // The msg, data and dataExt channels of a clientChan can + // cause this loop to block indefinitely if the consumer does + // not service them. + switch packet[0] { + case msgChannelData: + if len(packet) < 9 { + // malformed data packet + return + } + remoteId := binary.BigEndian.Uint32(packet[1:5]) + length := binary.BigEndian.Uint32(packet[5:9]) + packet = packet[9:] + + if length != uint32(len(packet)) { + return + } + ch, ok := c.getChan(remoteId) + if !ok { + return + } + ch.stdout.write(packet) + case msgChannelExtendedData: + if len(packet) < 13 { + // malformed data packet + return + } + remoteId := binary.BigEndian.Uint32(packet[1:5]) + datatype := binary.BigEndian.Uint32(packet[5:9]) + length := binary.BigEndian.Uint32(packet[9:13]) + packet = packet[13:] + + if length != uint32(len(packet)) { + return + } + // RFC 4254 5.2 defines data_type_code 1 to be data destined + // for stderr on interactive sessions. Other data types are + // silently discarded. + if datatype == 1 { + ch, ok := c.getChan(remoteId) + if !ok { + return + } + ch.stderr.write(packet) + } + default: + decoded, err := decode(packet) + if err != nil { + if _, ok := err.(UnexpectedMessageError); ok { + fmt.Printf("mainLoop: unexpected message: %v\n", err) + continue + } + return + } + switch msg := decoded.(type) { + case *channelOpenMsg: + c.handleChanOpen(msg) + case *channelOpenConfirmMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.msg <- msg + case *channelOpenFailureMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.msg <- msg + case *channelCloseMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.Close() + close(ch.msg) + c.chanList.remove(msg.PeersId) + case *channelEOFMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.stdout.eof() + // RFC 4254 is mute on how EOF affects dataExt messages but + // it is logical to signal EOF at the same time. + ch.stderr.eof() + case *channelRequestSuccessMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.msg <- msg + case *channelRequestFailureMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.msg <- msg + case *channelRequestMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + ch.msg <- msg + case *windowAdjustMsg: + ch, ok := c.getChan(msg.PeersId) + if !ok { + return + } + if !ch.remoteWin.add(msg.AdditionalBytes) { + // invalid window update + return + } + case *globalRequestMsg: + // This handles keepalive messages and matches + // the behaviour of OpenSSH. + if msg.WantReply { + c.transport.writePacket(marshal(msgRequestFailure, globalRequestFailureMsg{})) + } + case *globalRequestSuccessMsg, *globalRequestFailureMsg: + c.globalRequest.response <- msg + case *disconnectMsg: + return + default: + fmt.Printf("mainLoop: unhandled message %T: %v\n", msg, msg) + } + } + } +} + +// Handle channel open messages from the remote side. +func (c *ClientConn) handleChanOpen(msg *channelOpenMsg) { + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + c.sendConnectionFailed(msg.PeersId) + } + + switch msg.ChanType { + case "forwarded-tcpip": + laddr, rest, ok := parseTCPAddr(msg.TypeSpecificData) + if !ok { + // invalid request + c.sendConnectionFailed(msg.PeersId) + return + } + + l, ok := c.forwardList.lookup(*laddr) + if !ok { + // TODO: print on a more structured log. + fmt.Println("could not find forward list entry for", laddr) + // Section 7.2, implementations MUST reject spurious incoming + // connections. + c.sendConnectionFailed(msg.PeersId) + return + } + raddr, rest, ok := parseTCPAddr(rest) + if !ok { + // invalid request + c.sendConnectionFailed(msg.PeersId) + return + } + ch := c.newChan(c.transport) + ch.remoteId = msg.PeersId + ch.remoteWin.add(msg.PeersWindow) + ch.maxPacket = msg.MaxPacketSize + + m := channelOpenConfirmMsg{ + PeersId: ch.remoteId, + MyId: ch.localId, + MyWindow: channelWindowSize, + MaxPacketSize: channelMaxPacketSize, + } + + c.transport.writePacket(marshal(msgChannelOpenConfirm, m)) + l <- forward{ch, raddr} + default: + // unknown channel type + m := channelOpenFailureMsg{ + PeersId: msg.PeersId, + Reason: UnknownChannelType, + Message: fmt.Sprintf("unknown channel type: %v", msg.ChanType), + Language: "en_US.UTF-8", + } + c.transport.writePacket(marshal(msgChannelOpenFailure, m)) + } +} + +// sendGlobalRequest sends a global request message as specified +// in RFC4254 section 4. To correctly synchronise messages, a lock +// is held internally until a response is returned. +func (c *ClientConn) sendGlobalRequest(m interface{}) (*globalRequestSuccessMsg, error) { + c.globalRequest.Lock() + defer c.globalRequest.Unlock() + if err := c.transport.writePacket(marshal(msgGlobalRequest, m)); err != nil { + return nil, err + } + r := <-c.globalRequest.response + if r, ok := r.(*globalRequestSuccessMsg); ok { + return r, nil + } + return nil, errors.New("request failed") +} + +// sendConnectionFailed rejects an incoming channel identified +// by remoteId. +func (c *ClientConn) sendConnectionFailed(remoteId uint32) error { + m := channelOpenFailureMsg{ + PeersId: remoteId, + Reason: ConnectionFailed, + Message: "invalid request", + Language: "en_US.UTF-8", + } + return c.transport.writePacket(marshal(msgChannelOpenFailure, m)) +} + +// parseTCPAddr parses the originating address from the remote into a *net.TCPAddr. +// RFC 4254 section 7.2 is mute on what to do if parsing fails but the forwardlist +// requires a valid *net.TCPAddr to operate, so we enforce that restriction here. +func parseTCPAddr(b []byte) (*net.TCPAddr, []byte, bool) { + addr, b, ok := parseString(b) + if !ok { + return nil, b, false + } + port, b, ok := parseUint32(b) + if !ok { + return nil, b, false + } + ip := net.ParseIP(string(addr)) + if ip == nil { + return nil, b, false + } + return &net.TCPAddr{IP: ip, Port: int(port)}, b, true +} + +// Dial connects to the given network address using net.Dial and +// then initiates a SSH handshake, returning the resulting client connection. +func Dial(network, addr string, config *ClientConfig) (*ClientConn, error) { + conn, err := net.Dial(network, addr) + if err != nil { + return nil, err + } + return clientWithAddress(conn, addr, config) +} + +// A ClientConfig structure is used to configure a ClientConn. After one has +// been passed to an SSH function it must not be modified. +type ClientConfig struct { + // Rand provides the source of entropy for key exchange. If Rand is + // nil, the cryptographic random reader in package crypto/rand will + // be used. + Rand io.Reader + + // The username to authenticate. + User string + + // A slice of ClientAuth methods. Only the first instance + // of a particular RFC 4252 method will be used during authentication. + Auth []ClientAuth + + // HostKeyChecker, if not nil, is called during the cryptographic + // handshake to validate the server's host key. A nil HostKeyChecker + // implies that all host keys are accepted. + HostKeyChecker HostKeyChecker + + // Cryptographic-related configuration. + Crypto CryptoConfig + + // The identification string that will be used for the connection. + // If empty, a reasonable default is used. + ClientVersion string +} + +func (c *ClientConfig) rand() io.Reader { + if c.Rand == nil { + return rand.Reader + } + return c.Rand +} + +// Thread safe channel list. +type chanList struct { + // protects concurrent access to chans + sync.Mutex + // chans are indexed by the local id of the channel, clientChan.localId. + // The PeersId value of messages received by ClientConn.mainLoop is + // used to locate the right local clientChan in this slice. + chans []*clientChan +} + +// Allocate a new ClientChan with the next avail local id. +func (c *chanList) newChan(p packetConn) *clientChan { + c.Lock() + defer c.Unlock() + for i := range c.chans { + if c.chans[i] == nil { + ch := newClientChan(p, uint32(i)) + c.chans[i] = ch + return ch + } + } + i := len(c.chans) + ch := newClientChan(p, uint32(i)) + c.chans = append(c.chans, ch) + return ch +} + +func (c *chanList) getChan(id uint32) (*clientChan, bool) { + c.Lock() + defer c.Unlock() + if id >= uint32(len(c.chans)) { + return nil, false + } + return c.chans[id], true +} + +func (c *chanList) remove(id uint32) { + c.Lock() + defer c.Unlock() + c.chans[id] = nil +} + +func (c *chanList) closeAll() { + c.Lock() + defer c.Unlock() + + for _, ch := range c.chans { + if ch == nil { + continue + } + ch.Close() + close(ch.msg) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_auth.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_auth.go new file mode 100644 index 00000000..29be0ca4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_auth.go @@ -0,0 +1,509 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "errors" + "fmt" + "io" + "net" +) + +// authenticate authenticates with the remote server. See RFC 4252. +func (c *ClientConn) authenticate() error { + // initiate user auth session + if err := c.transport.writePacket(marshal(msgServiceRequest, serviceRequestMsg{serviceUserAuth})); err != nil { + return err + } + packet, err := c.transport.readPacket() + if err != nil { + return err + } + var serviceAccept serviceAcceptMsg + if err := unmarshal(&serviceAccept, packet, msgServiceAccept); err != nil { + return err + } + // during the authentication phase the client first attempts the "none" method + // then any untried methods suggested by the server. + tried, remain := make(map[string]bool), make(map[string]bool) + for auth := ClientAuth(new(noneAuth)); auth != nil; { + ok, methods, err := auth.auth(c.transport.sessionID, c.config.User, c.transport, c.config.rand()) + if err != nil { + return err + } + if ok { + // success + return nil + } + tried[auth.method()] = true + delete(remain, auth.method()) + for _, meth := range methods { + if tried[meth] { + // if we've tried meth already, skip it. + continue + } + remain[meth] = true + } + auth = nil + for _, a := range c.config.Auth { + if remain[a.method()] { + auth = a + break + } + } + } + return fmt.Errorf("ssh: unable to authenticate, attempted methods %v, no supported methods remain", keys(tried)) +} + +func keys(m map[string]bool) (s []string) { + for k := range m { + s = append(s, k) + } + return +} + +// HostKeyChecker represents a database of known server host keys. +type HostKeyChecker interface { + // Check is called during the handshake to check server's + // public key for unexpected changes. The hostKey argument is + // in SSH wire format. It can be parsed using + // ssh.ParsePublicKey. The address before DNS resolution is + // passed in the addr argument, so the key can also be checked + // against the hostname. + Check(addr string, remote net.Addr, algorithm string, hostKey []byte) error +} + +// A ClientAuth represents an instance of an RFC 4252 authentication method. +type ClientAuth interface { + // auth authenticates user over transport t. + // Returns true if authentication is successful. + // If authentication is not successful, a []string of alternative + // method names is returned. + auth(session []byte, user string, p packetConn, rand io.Reader) (bool, []string, error) + + // method returns the RFC 4252 method name. + method() string +} + +// "none" authentication, RFC 4252 section 5.2. +type noneAuth int + +func (n *noneAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { + if err := c.writePacket(marshal(msgUserAuthRequest, userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: "none", + })); err != nil { + return false, nil, err + } + + return handleAuthResponse(c) +} + +func (n *noneAuth) method() string { + return "none" +} + +// "password" authentication, RFC 4252 Section 8. +type passwordAuth struct { + ClientPassword +} + +func (p *passwordAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { + type passwordAuthMsg struct { + User string + Service string + Method string + Reply bool + Password string + } + + pw, err := p.Password(user) + if err != nil { + return false, nil, err + } + + if err := c.writePacket(marshal(msgUserAuthRequest, passwordAuthMsg{ + User: user, + Service: serviceSSH, + Method: "password", + Reply: false, + Password: pw, + })); err != nil { + return false, nil, err + } + + return handleAuthResponse(c) +} + +func (p *passwordAuth) method() string { + return "password" +} + +// A ClientPassword implements access to a client's passwords. +type ClientPassword interface { + // Password returns the password to use for user. + Password(user string) (password string, err error) +} + +// ClientAuthPassword returns a ClientAuth using password authentication. +func ClientAuthPassword(impl ClientPassword) ClientAuth { + return &passwordAuth{impl} +} + +// ClientKeyring implements access to a client key ring. +type ClientKeyring interface { + // Key returns the i'th Publickey, or nil if no key exists at i. + Key(i int) (key PublicKey, err error) + + // Sign returns a signature of the given data using the i'th key + // and the supplied random source. + Sign(i int, rand io.Reader, data []byte) (sig []byte, err error) +} + +// "publickey" authentication, RFC 4252 Section 7. +type publickeyAuth struct { + ClientKeyring +} + +type publickeyAuthMsg struct { + User string + Service string + Method string + // HasSig indicates to the receiver packet that the auth request is signed and + // should be used for authentication of the request. + HasSig bool + Algoname string + Pubkey string + // Sig is defined as []byte so marshal will exclude it during validateKey + Sig []byte `ssh:"rest"` +} + +func (p *publickeyAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { + // Authentication is performed in two stages. The first stage sends an + // enquiry to test if each key is acceptable to the remote. The second + // stage attempts to authenticate with the valid keys obtained in the + // first stage. + + var index int + // a map of public keys to their index in the keyring + validKeys := make(map[int]PublicKey) + for { + key, err := p.Key(index) + if err != nil { + return false, nil, err + } + if key == nil { + // no more keys in the keyring + break + } + + if ok, err := p.validateKey(key, user, c); ok { + validKeys[index] = key + } else { + if err != nil { + return false, nil, err + } + } + index++ + } + + // methods that may continue if this auth is not successful. + var methods []string + for i, key := range validKeys { + pubkey := MarshalPublicKey(key) + algoname := key.PublicKeyAlgo() + data := buildDataSignedForAuth(session, userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: p.method(), + }, []byte(algoname), pubkey) + sigBlob, err := p.Sign(i, rand, data) + if err != nil { + return false, nil, err + } + // manually wrap the serialized signature in a string + s := serializeSignature(key.PublicKeyAlgo(), sigBlob) + sig := make([]byte, stringLength(len(s))) + marshalString(sig, s) + msg := publickeyAuthMsg{ + User: user, + Service: serviceSSH, + Method: p.method(), + HasSig: true, + Algoname: algoname, + Pubkey: string(pubkey), + Sig: sig, + } + p := marshal(msgUserAuthRequest, msg) + if err := c.writePacket(p); err != nil { + return false, nil, err + } + success, methods, err := handleAuthResponse(c) + if err != nil { + return false, nil, err + } + if success { + return success, methods, err + } + } + return false, methods, nil +} + +// validateKey validates the key provided it is acceptable to the server. +func (p *publickeyAuth) validateKey(key PublicKey, user string, c packetConn) (bool, error) { + pubkey := MarshalPublicKey(key) + algoname := key.PublicKeyAlgo() + msg := publickeyAuthMsg{ + User: user, + Service: serviceSSH, + Method: p.method(), + HasSig: false, + Algoname: algoname, + Pubkey: string(pubkey), + } + if err := c.writePacket(marshal(msgUserAuthRequest, msg)); err != nil { + return false, err + } + + return p.confirmKeyAck(key, c) +} + +func (p *publickeyAuth) confirmKeyAck(key PublicKey, c packetConn) (bool, error) { + pubkey := MarshalPublicKey(key) + algoname := key.PublicKeyAlgo() + + for { + packet, err := c.readPacket() + if err != nil { + return false, err + } + switch packet[0] { + case msgUserAuthBanner: + // TODO(gpaul): add callback to present the banner to the user + case msgUserAuthPubKeyOk: + msg := userAuthPubKeyOkMsg{} + if err := unmarshal(&msg, packet, msgUserAuthPubKeyOk); err != nil { + return false, err + } + if msg.Algo != algoname || msg.PubKey != string(pubkey) { + return false, nil + } + return true, nil + case msgUserAuthFailure: + return false, nil + default: + return false, UnexpectedMessageError{msgUserAuthSuccess, packet[0]} + } + } + panic("unreachable") +} + +func (p *publickeyAuth) method() string { + return "publickey" +} + +// ClientAuthKeyring returns a ClientAuth using public key authentication. +func ClientAuthKeyring(impl ClientKeyring) ClientAuth { + return &publickeyAuth{impl} +} + +// handleAuthResponse returns whether the preceding authentication request succeeded +// along with a list of remaining authentication methods to try next and +// an error if an unexpected response was received. +func handleAuthResponse(c packetConn) (bool, []string, error) { + for { + packet, err := c.readPacket() + if err != nil { + return false, nil, err + } + + switch packet[0] { + case msgUserAuthBanner: + // TODO: add callback to present the banner to the user + case msgUserAuthFailure: + msg := userAuthFailureMsg{} + if err := unmarshal(&msg, packet, msgUserAuthFailure); err != nil { + return false, nil, err + } + return false, msg.Methods, nil + case msgUserAuthSuccess: + return true, nil, nil + case msgDisconnect: + return false, nil, io.EOF + default: + return false, nil, UnexpectedMessageError{msgUserAuthSuccess, packet[0]} + } + } + panic("unreachable") +} + +// ClientAuthAgent returns a ClientAuth using public key authentication via +// an agent. +func ClientAuthAgent(agent *AgentClient) ClientAuth { + return ClientAuthKeyring(&agentKeyring{agent: agent}) +} + +// agentKeyring implements ClientKeyring. +type agentKeyring struct { + agent *AgentClient + keys []*AgentKey +} + +func (kr *agentKeyring) Key(i int) (key PublicKey, err error) { + if kr.keys == nil { + if kr.keys, err = kr.agent.RequestIdentities(); err != nil { + return + } + } + if i >= len(kr.keys) { + return + } + return kr.keys[i].Key() +} + +func (kr *agentKeyring) Sign(i int, rand io.Reader, data []byte) (sig []byte, err error) { + var key PublicKey + if key, err = kr.Key(i); err != nil { + return + } + if key == nil { + return nil, errors.New("ssh: key index out of range") + } + if sig, err = kr.agent.SignRequest(key, data); err != nil { + return + } + + // Unmarshal the signature. + + var ok bool + if _, sig, ok = parseString(sig); !ok { + return nil, errors.New("ssh: malformed signature response from agent") + } + if sig, _, ok = parseString(sig); !ok { + return nil, errors.New("ssh: malformed signature response from agent") + } + return sig, nil +} + +// ClientKeyboardInteractive should prompt the user for the given +// questions. +type ClientKeyboardInteractive interface { + // Challenge should print the questions, optionally disabling + // echoing (eg. for passwords), and return all the answers. + // Challenge may be called multiple times in a single + // session. After successful authentication, the server may + // send a challenge with no questions, for which the user and + // instruction messages should be printed. RFC 4256 section + // 3.3 details how the UI should behave for both CLI and + // GUI environments. + Challenge(user, instruction string, questions []string, echos []bool) ([]string, error) +} + +// ClientAuthKeyboardInteractive returns a ClientAuth using a +// prompt/response sequence controlled by the server. +func ClientAuthKeyboardInteractive(impl ClientKeyboardInteractive) ClientAuth { + return &keyboardInteractiveAuth{impl} +} + +type keyboardInteractiveAuth struct { + ClientKeyboardInteractive +} + +func (k *keyboardInteractiveAuth) method() string { + return "keyboard-interactive" +} + +func (k *keyboardInteractiveAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (bool, []string, error) { + type initiateMsg struct { + User string + Service string + Method string + Language string + Submethods string + } + + if err := c.writePacket(marshal(msgUserAuthRequest, initiateMsg{ + User: user, + Service: serviceSSH, + Method: "keyboard-interactive", + })); err != nil { + return false, nil, err + } + + for { + packet, err := c.readPacket() + if err != nil { + return false, nil, err + } + + // like handleAuthResponse, but with less options. + switch packet[0] { + case msgUserAuthBanner: + // TODO: Print banners during userauth. + continue + case msgUserAuthInfoRequest: + // OK + case msgUserAuthFailure: + var msg userAuthFailureMsg + if err := unmarshal(&msg, packet, msgUserAuthFailure); err != nil { + return false, nil, err + } + return false, msg.Methods, nil + case msgUserAuthSuccess: + return true, nil, nil + default: + return false, nil, UnexpectedMessageError{msgUserAuthInfoRequest, packet[0]} + } + + var msg userAuthInfoRequestMsg + if err := unmarshal(&msg, packet, packet[0]); err != nil { + return false, nil, err + } + + // Manually unpack the prompt/echo pairs. + rest := msg.Prompts + var prompts []string + var echos []bool + for i := 0; i < int(msg.NumPrompts); i++ { + prompt, r, ok := parseString(rest) + if !ok || len(r) == 0 { + return false, nil, errors.New("ssh: prompt format error") + } + prompts = append(prompts, string(prompt)) + echos = append(echos, r[0] != 0) + rest = r[1:] + } + + if len(rest) != 0 { + return false, nil, fmt.Errorf("ssh: junk following message %q", rest) + } + + answers, err := k.Challenge(msg.User, msg.Instruction, prompts, echos) + if err != nil { + return false, nil, err + } + + if len(answers) != len(prompts) { + return false, nil, errors.New("ssh: not enough answers from keyboard-interactive callback") + } + responseLength := 1 + 4 + for _, a := range answers { + responseLength += stringLength(len(a)) + } + serialized := make([]byte, responseLength) + p := serialized + p[0] = msgUserAuthInfoResponse + p = p[1:] + p = marshalUint32(p, uint32(len(answers))) + for _, a := range answers { + p = marshalString(p, []byte(a)) + } + + if err := c.writePacket(serialized); err != nil { + return false, nil, err + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_auth_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_auth_test.go new file mode 100644 index 00000000..f2fc9c64 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_auth_test.go @@ -0,0 +1,368 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "crypto/dsa" + "io" + "io/ioutil" + "math/big" + "strings" + "testing" + + _ "crypto/sha1" +) + +// private key for mock server +const testServerPrivateKey = `-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEA19lGVsTqIT5iiNYRgnoY1CwkbETW5cq+Rzk5v/kTlf31XpSU +70HVWkbTERECjaYdXM2gGcbb+sxpq6GtXf1M3kVomycqhxwhPv4Cr6Xp4WT/jkFx +9z+FFzpeodGJWjOH6L2H5uX1Cvr9EDdQp9t9/J32/qBFntY8GwoUI/y/1MSTmMiF +tupdMODN064vd3gyMKTwrlQ8tZM6aYuyOPsutLlUY7M5x5FwMDYvnPDSeyT/Iw0z +s3B+NCyqeeMd2T7YzQFnRATj0M7rM5LoSs7DVqVriOEABssFyLj31PboaoLhOKgc +qoM9khkNzr7FHVvi+DhYM2jD0DwvqZLN6NmnLwIDAQABAoIBAQCGVj+kuSFOV1lT ++IclQYA6bM6uY5mroqcSBNegVxCNhWU03BxlW//BE9tA/+kq53vWylMeN9mpGZea +riEMIh25KFGWXqXlOOioH8bkMsqA8S7sBmc7jljyv+0toQ9vCCtJ+sueNPhxQQxH +D2YvUjfzBQ04I9+wn30BByDJ1QA/FoPsunxIOUCcRBE/7jxuLYcpR+JvEF68yYIh +atXRld4W4in7T65YDR8jK1Uj9XAcNeDYNpT/M6oFLx1aPIlkG86aCWRO19S1jLPT +b1ZAKHHxPMCVkSYW0RqvIgLXQOR62D0Zne6/2wtzJkk5UCjkSQ2z7ZzJpMkWgDgN +ifCULFPBAoGBAPoMZ5q1w+zB+knXUD33n1J+niN6TZHJulpf2w5zsW+m2K6Zn62M +MXndXlVAHtk6p02q9kxHdgov34Uo8VpuNjbS1+abGFTI8NZgFo+bsDxJdItemwC4 +KJ7L1iz39hRN/ZylMRLz5uTYRGddCkeIHhiG2h7zohH/MaYzUacXEEy3AoGBANz8 +e/msleB+iXC0cXKwds26N4hyMdAFE5qAqJXvV3S2W8JZnmU+sS7vPAWMYPlERPk1 +D8Q2eXqdPIkAWBhrx4RxD7rNc5qFNcQWEhCIxC9fccluH1y5g2M+4jpMX2CT8Uv+ +3z+NoJ5uDTXZTnLCfoZzgZ4nCZVZ+6iU5U1+YXFJAoGBANLPpIV920n/nJmmquMj +orI1R/QXR9Cy56cMC65agezlGOfTYxk5Cfl5Ve+/2IJCfgzwJyjWUsFx7RviEeGw +64o7JoUom1HX+5xxdHPsyZ96OoTJ5RqtKKoApnhRMamau0fWydH1yeOEJd+TRHhc +XStGfhz8QNa1dVFvENczja1vAoGABGWhsd4VPVpHMc7lUvrf4kgKQtTC2PjA4xoc +QJ96hf/642sVE76jl+N6tkGMzGjnVm4P2j+bOy1VvwQavKGoXqJBRd5Apppv727g +/SM7hBXKFc/zH80xKBBgP/i1DR7kdjakCoeu4ngeGywvu2jTS6mQsqzkK+yWbUxJ +I7mYBsECgYB/KNXlTEpXtz/kwWCHFSYA8U74l7zZbVD8ul0e56JDK+lLcJ0tJffk +gqnBycHj6AhEycjda75cs+0zybZvN4x65KZHOGW/O/7OAWEcZP5TPb3zf9ned3Hl +NsZoFj52ponUM6+99A2CmezFCN16c4mbA//luWF+k3VVqR6BpkrhKw== +-----END RSA PRIVATE KEY-----` + +const testClientPrivateKey = `-----BEGIN RSA PRIVATE KEY----- +MIIBOwIBAAJBALdGZxkXDAjsYk10ihwU6Id2KeILz1TAJuoq4tOgDWxEEGeTrcld +r/ZwVaFzjWzxaf6zQIJbfaSEAhqD5yo72+sCAwEAAQJBAK8PEVU23Wj8mV0QjwcJ +tZ4GcTUYQL7cF4+ezTCE9a1NrGnCP2RuQkHEKxuTVrxXt+6OF15/1/fuXnxKjmJC +nxkCIQDaXvPPBi0c7vAxGwNY9726x01/dNbHCE0CBtcotobxpwIhANbbQbh3JHVW +2haQh4fAG5mhesZKAGcxTyv4mQ7uMSQdAiAj+4dzMpJWdSzQ+qGHlHMIBvVHLkqB +y2VdEyF7DPCZewIhAI7GOI/6LDIFOvtPo6Bj2nNmyQ1HU6k/LRtNIXi4c9NJAiAr +rrxx26itVhJmcvoUhOjwuzSlP2bE5VHAvkGB352YBg== +-----END RSA PRIVATE KEY-----` + +// keychain implements the ClientKeyring interface +type keychain struct { + keys []Signer +} + +func (k *keychain) Key(i int) (PublicKey, error) { + if i < 0 || i >= len(k.keys) { + return nil, nil + } + + return k.keys[i].PublicKey(), nil +} + +func (k *keychain) Sign(i int, rand io.Reader, data []byte) (sig []byte, err error) { + return k.keys[i].Sign(rand, data) +} + +func (k *keychain) add(key Signer) { + k.keys = append(k.keys, key) +} + +func (k *keychain) loadPEM(file string) error { + buf, err := ioutil.ReadFile(file) + if err != nil { + return err + } + key, err := ParsePrivateKey(buf) + if err != nil { + return err + } + k.add(key) + return nil +} + +// password implements the ClientPassword interface +type password string + +func (p password) Password(user string) (string, error) { + return string(p), nil +} + +type keyboardInteractive map[string]string + +func (cr *keyboardInteractive) Challenge(user string, instruction string, questions []string, echos []bool) ([]string, error) { + var answers []string + for _, q := range questions { + answers = append(answers, (*cr)[q]) + } + return answers, nil +} + +// reused internally by tests +var ( + rsaKey Signer + dsaKey Signer + clientKeychain = new(keychain) + clientPassword = password("tiger") + serverConfig = &ServerConfig{ + PasswordCallback: func(conn *ServerConn, user, pass string) bool { + return user == "testuser" && pass == string(clientPassword) + }, + PublicKeyCallback: func(conn *ServerConn, user, algo string, pubkey []byte) bool { + key, _ := clientKeychain.Key(0) + expected := MarshalPublicKey(key) + algoname := key.PublicKeyAlgo() + return user == "testuser" && algo == algoname && bytes.Equal(pubkey, expected) + }, + KeyboardInteractiveCallback: func(conn *ServerConn, user string, client ClientKeyboardInteractive) bool { + ans, err := client.Challenge("user", + "instruction", + []string{"question1", "question2"}, + []bool{true, true}) + if err != nil { + return false + } + ok := user == "testuser" && ans[0] == "answer1" && ans[1] == "answer2" + client.Challenge("user", "motd", nil, nil) + return ok + }, + } +) + +func init() { + var err error + rsaKey, err = ParsePrivateKey([]byte(testServerPrivateKey)) + if err != nil { + panic("unable to set private key: " + err.Error()) + } + rawDSAKey := new(dsa.PrivateKey) + + // taken from crypto/dsa/dsa_test.go + rawDSAKey.P, _ = new(big.Int).SetString("A9B5B793FB4785793D246BAE77E8FF63CA52F442DA763C440259919FE1BC1D6065A9350637A04F75A2F039401D49F08E066C4D275A5A65DA5684BC563C14289D7AB8A67163BFBF79D85972619AD2CFF55AB0EE77A9002B0EF96293BDD0F42685EBB2C66C327079F6C98000FBCB79AACDE1BC6F9D5C7B1A97E3D9D54ED7951FEF", 16) + rawDSAKey.Q, _ = new(big.Int).SetString("E1D3391245933D68A0714ED34BBCB7A1F422B9C1", 16) + rawDSAKey.G, _ = new(big.Int).SetString("634364FC25248933D01D1993ECABD0657CC0CB2CEED7ED2E3E8AECDFCDC4A25C3B15E9E3B163ACA2984B5539181F3EFF1A5E8903D71D5B95DA4F27202B77D2C44B430BB53741A8D59A8F86887525C9F2A6A5980A195EAA7F2FF910064301DEF89D3AA213E1FAC7768D89365318E370AF54A112EFBA9246D9158386BA1B4EEFDA", 16) + rawDSAKey.Y, _ = new(big.Int).SetString("32969E5780CFE1C849A1C276D7AEB4F38A23B591739AA2FE197349AEEBD31366AEE5EB7E6C6DDB7C57D02432B30DB5AA66D9884299FAA72568944E4EEDC92EA3FBC6F39F53412FBCC563208F7C15B737AC8910DBC2D9C9B8C001E72FDC40EB694AB1F06A5A2DBD18D9E36C66F31F566742F11EC0A52E9F7B89355C02FB5D32D2", 16) + rawDSAKey.X, _ = new(big.Int).SetString("5078D4D29795CBE76D3AACFE48C9AF0BCDBEE91A", 16) + + dsaKey, err = NewSignerFromKey(rawDSAKey) + if err != nil { + panic("NewSignerFromKey: " + err.Error()) + } + clientKeychain.add(rsaKey) + serverConfig.AddHostKey(rsaKey) +} + +// newMockAuthServer creates a new Server bound to +// the loopback interface. The server exits after +// processing one handshake. +func newMockAuthServer(t *testing.T) string { + l, err := Listen("tcp", "127.0.0.1:0", serverConfig) + if err != nil { + t.Fatalf("unable to newMockAuthServer: %s", err) + } + go func() { + defer l.Close() + c, err := l.Accept() + if err != nil { + t.Errorf("Unable to accept incoming connection: %v", err) + return + } + if err := c.Handshake(); err != nil { + // not Errorf because this is expected to + // fail for some tests. + t.Logf("Handshaking error: %v", err) + return + } + defer c.Close() + }() + return l.Addr().String() +} + +func TestClientAuthPublicKey(t *testing.T) { + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyring(clientKeychain), + }, + } + c, err := Dial("tcp", newMockAuthServer(t), config) + if err != nil { + t.Fatalf("unable to dial remote side: %s", err) + } + c.Close() +} + +func TestClientAuthPassword(t *testing.T) { + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthPassword(clientPassword), + }, + } + + c, err := Dial("tcp", newMockAuthServer(t), config) + if err != nil { + t.Fatalf("unable to dial remote side: %s", err) + } + c.Close() +} + +func TestClientAuthWrongPassword(t *testing.T) { + wrongPw := password("wrong") + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthPassword(wrongPw), + ClientAuthKeyring(clientKeychain), + }, + } + + c, err := Dial("tcp", newMockAuthServer(t), config) + if err != nil { + t.Fatalf("unable to dial remote side: %s", err) + } + c.Close() +} + +func TestClientAuthKeyboardInteractive(t *testing.T) { + answers := keyboardInteractive(map[string]string{ + "question1": "answer1", + "question2": "answer2", + }) + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyboardInteractive(&answers), + }, + } + + c, err := Dial("tcp", newMockAuthServer(t), config) + if err != nil { + t.Fatalf("unable to dial remote side: %s", err) + } + c.Close() +} + +func TestClientAuthWrongKeyboardInteractive(t *testing.T) { + answers := keyboardInteractive(map[string]string{ + "question1": "answer1", + "question2": "WRONG", + }) + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyboardInteractive(&answers), + }, + } + + c, err := Dial("tcp", newMockAuthServer(t), config) + if err == nil { + c.Close() + t.Fatalf("wrong answers should not have authenticated with KeyboardInteractive") + } +} + +// the mock server will only authenticate ssh-rsa keys +func TestClientAuthInvalidPublicKey(t *testing.T) { + kc := new(keychain) + + kc.add(dsaKey) + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyring(kc), + }, + } + + c, err := Dial("tcp", newMockAuthServer(t), config) + if err == nil { + c.Close() + t.Fatalf("dsa private key should not have authenticated with rsa public key") + } +} + +// the client should authenticate with the second key +func TestClientAuthRSAandDSA(t *testing.T) { + kc := new(keychain) + kc.add(dsaKey) + kc.add(rsaKey) + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyring(kc), + }, + } + c, err := Dial("tcp", newMockAuthServer(t), config) + if err != nil { + t.Fatalf("client could not authenticate with rsa key: %v", err) + } + c.Close() +} + +func TestClientHMAC(t *testing.T) { + kc := new(keychain) + kc.add(rsaKey) + for _, mac := range DefaultMACOrder { + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyring(kc), + }, + Crypto: CryptoConfig{ + MACs: []string{mac}, + }, + } + c, err := Dial("tcp", newMockAuthServer(t), config) + if err != nil { + t.Fatalf("client could not authenticate with mac algo %s: %v", mac, err) + } + c.Close() + } +} + +// issue 4285. +func TestClientUnsupportedCipher(t *testing.T) { + kc := new(keychain) + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyring(kc), + }, + Crypto: CryptoConfig{ + Ciphers: []string{"aes128-cbc"}, // not currently supported + }, + } + c, err := Dial("tcp", newMockAuthServer(t), config) + if err == nil { + t.Errorf("expected no ciphers in common") + c.Close() + } +} + +func TestClientUnsupportedKex(t *testing.T) { + kc := new(keychain) + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthKeyring(kc), + }, + Crypto: CryptoConfig{ + KeyExchanges: []string{"diffie-hellman-group-exchange-sha256"}, // not currently supported + }, + } + c, err := Dial("tcp", newMockAuthServer(t), config) + if err == nil || !strings.Contains(err.Error(), "no common algorithms") { + t.Errorf("got %v, expected 'no common algorithms'", err) + } + if c != nil { + c.Close() + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_test.go new file mode 100644 index 00000000..f6c11b95 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/client_test.go @@ -0,0 +1,34 @@ +package ssh + +import ( + "net" + "testing" +) + +func testClientVersion(t *testing.T, config *ClientConfig, expected string) { + clientConn, serverConn := net.Pipe() + receivedVersion := make(chan string, 1) + go func() { + version, err := readVersion(serverConn) + if err != nil { + receivedVersion <- "" + } else { + receivedVersion <- string(version) + } + serverConn.Close() + }() + Client(clientConn, config) + actual := <-receivedVersion + if actual != expected { + t.Fatalf("got %s; want %s", actual, expected) + } +} + +func TestCustomClientVersion(t *testing.T) { + version := "Test-Client-Version-0.0" + testClientVersion(t, &ClientConfig{ClientVersion: version}, version) +} + +func TestDefaultClientVersion(t *testing.T) { + testClientVersion(t, &ClientConfig{}, packageVersion) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/common.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/common.go new file mode 100644 index 00000000..4870e569 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/common.go @@ -0,0 +1,352 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto" + "fmt" + "sync" + + _ "crypto/sha1" + _ "crypto/sha256" + _ "crypto/sha512" +) + +// These are string constants in the SSH protocol. +const ( + compressionNone = "none" + serviceUserAuth = "ssh-userauth" + serviceSSH = "ssh-connection" +) + +var supportedKexAlgos = []string{ + kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521, + kexAlgoDH14SHA1, kexAlgoDH1SHA1, +} + +var supportedHostKeyAlgos = []string{ + KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, + KeyAlgoRSA, KeyAlgoDSA, +} + +var supportedCompressions = []string{compressionNone} + +// hashFuncs keeps the mapping of supported algorithms to their respective +// hashes needed for signature verification. +var hashFuncs = map[string]crypto.Hash{ + KeyAlgoRSA: crypto.SHA1, + KeyAlgoDSA: crypto.SHA1, + KeyAlgoECDSA256: crypto.SHA256, + KeyAlgoECDSA384: crypto.SHA384, + KeyAlgoECDSA521: crypto.SHA512, + CertAlgoRSAv01: crypto.SHA1, + CertAlgoDSAv01: crypto.SHA1, + CertAlgoECDSA256v01: crypto.SHA256, + CertAlgoECDSA384v01: crypto.SHA384, + CertAlgoECDSA521v01: crypto.SHA512, +} + +// UnexpectedMessageError results when the SSH message that we received didn't +// match what we wanted. +type UnexpectedMessageError struct { + expected, got uint8 +} + +func (u UnexpectedMessageError) Error() string { + return fmt.Sprintf("ssh: unexpected message type %d (expected %d)", u.got, u.expected) +} + +// ParseError results from a malformed SSH message. +type ParseError struct { + msgType uint8 +} + +func (p ParseError) Error() string { + return fmt.Sprintf("ssh: parse error in message type %d", p.msgType) +} + +func findCommonAlgorithm(clientAlgos []string, serverAlgos []string) (commonAlgo string, ok bool) { + for _, clientAlgo := range clientAlgos { + for _, serverAlgo := range serverAlgos { + if clientAlgo == serverAlgo { + return clientAlgo, true + } + } + } + return +} + +func findCommonCipher(clientCiphers []string, serverCiphers []string) (commonCipher string, ok bool) { + for _, clientCipher := range clientCiphers { + for _, serverCipher := range serverCiphers { + // reject the cipher if we have no cipherModes definition + if clientCipher == serverCipher && cipherModes[clientCipher] != nil { + return clientCipher, true + } + } + } + return +} + +type algorithms struct { + kex string + hostKey string + wCipher string + rCipher string + rMAC string + wMAC string + rCompression string + wCompression string +} + +func findAgreedAlgorithms(clientKexInit, serverKexInit *kexInitMsg) (algs *algorithms) { + var ok bool + result := &algorithms{} + result.kex, ok = findCommonAlgorithm(clientKexInit.KexAlgos, serverKexInit.KexAlgos) + if !ok { + return + } + + result.hostKey, ok = findCommonAlgorithm(clientKexInit.ServerHostKeyAlgos, serverKexInit.ServerHostKeyAlgos) + if !ok { + return + } + + result.wCipher, ok = findCommonCipher(clientKexInit.CiphersClientServer, serverKexInit.CiphersClientServer) + if !ok { + return + } + + result.rCipher, ok = findCommonCipher(clientKexInit.CiphersServerClient, serverKexInit.CiphersServerClient) + if !ok { + return + } + + result.wMAC, ok = findCommonAlgorithm(clientKexInit.MACsClientServer, serverKexInit.MACsClientServer) + if !ok { + return + } + + result.rMAC, ok = findCommonAlgorithm(clientKexInit.MACsServerClient, serverKexInit.MACsServerClient) + if !ok { + return + } + + result.wCompression, ok = findCommonAlgorithm(clientKexInit.CompressionClientServer, serverKexInit.CompressionClientServer) + if !ok { + return + } + + result.rCompression, ok = findCommonAlgorithm(clientKexInit.CompressionServerClient, serverKexInit.CompressionServerClient) + if !ok { + return + } + + return result +} + +// Cryptographic configuration common to both ServerConfig and ClientConfig. +type CryptoConfig struct { + // The allowed key exchanges algorithms. If unspecified then a + // default set of algorithms is used. + KeyExchanges []string + + // The allowed cipher algorithms. If unspecified then DefaultCipherOrder is + // used. + Ciphers []string + + // The allowed MAC algorithms. If unspecified then DefaultMACOrder is used. + MACs []string +} + +func (c *CryptoConfig) ciphers() []string { + if c.Ciphers == nil { + return DefaultCipherOrder + } + return c.Ciphers +} + +func (c *CryptoConfig) kexes() []string { + if c.KeyExchanges == nil { + return defaultKeyExchangeOrder + } + return c.KeyExchanges +} + +func (c *CryptoConfig) macs() []string { + if c.MACs == nil { + return DefaultMACOrder + } + return c.MACs +} + +// serialize a signed slice according to RFC 4254 6.6. The name should +// be a key type name, rather than a cert type name. +func serializeSignature(name string, sig []byte) []byte { + length := stringLength(len(name)) + length += stringLength(len(sig)) + + ret := make([]byte, length) + r := marshalString(ret, []byte(name)) + r = marshalString(r, sig) + + return ret +} + +// MarshalPublicKey serializes a supported key or certificate for use +// by the SSH wire protocol. It can be used for comparison with the +// pubkey argument of ServerConfig's PublicKeyCallback as well as for +// generating an authorized_keys or host_keys file. +func MarshalPublicKey(key PublicKey) []byte { + // See also RFC 4253 6.6. + algoname := key.PublicKeyAlgo() + blob := key.Marshal() + + length := stringLength(len(algoname)) + length += len(blob) + ret := make([]byte, length) + r := marshalString(ret, []byte(algoname)) + copy(r, blob) + return ret +} + +// pubAlgoToPrivAlgo returns the private key algorithm format name that +// corresponds to a given public key algorithm format name. For most +// public keys, the private key algorithm name is the same. For some +// situations, such as openssh certificates, the private key algorithm and +// public key algorithm names differ. This accounts for those situations. +func pubAlgoToPrivAlgo(pubAlgo string) string { + switch pubAlgo { + case CertAlgoRSAv01: + return KeyAlgoRSA + case CertAlgoDSAv01: + return KeyAlgoDSA + case CertAlgoECDSA256v01: + return KeyAlgoECDSA256 + case CertAlgoECDSA384v01: + return KeyAlgoECDSA384 + case CertAlgoECDSA521v01: + return KeyAlgoECDSA521 + } + return pubAlgo +} + +// buildDataSignedForAuth returns the data that is signed in order to prove +// possession of a private key. See RFC 4252, section 7. +func buildDataSignedForAuth(sessionId []byte, req userAuthRequestMsg, algo, pubKey []byte) []byte { + user := []byte(req.User) + service := []byte(req.Service) + method := []byte(req.Method) + + length := stringLength(len(sessionId)) + length += 1 + length += stringLength(len(user)) + length += stringLength(len(service)) + length += stringLength(len(method)) + length += 1 + length += stringLength(len(algo)) + length += stringLength(len(pubKey)) + + ret := make([]byte, length) + r := marshalString(ret, sessionId) + r[0] = msgUserAuthRequest + r = r[1:] + r = marshalString(r, user) + r = marshalString(r, service) + r = marshalString(r, method) + r[0] = 1 + r = r[1:] + r = marshalString(r, algo) + r = marshalString(r, pubKey) + return ret +} + +// safeString sanitises s according to RFC 4251, section 9.2. +// All control characters except tab, carriage return and newline are +// replaced by 0x20. +func safeString(s string) string { + out := []byte(s) + for i, c := range out { + if c < 0x20 && c != 0xd && c != 0xa && c != 0x9 { + out[i] = 0x20 + } + } + return string(out) +} + +func appendU16(buf []byte, n uint16) []byte { + return append(buf, byte(n>>8), byte(n)) +} + +func appendU32(buf []byte, n uint32) []byte { + return append(buf, byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) +} + +func appendInt(buf []byte, n int) []byte { + return appendU32(buf, uint32(n)) +} + +func appendString(buf []byte, s string) []byte { + buf = appendU32(buf, uint32(len(s))) + buf = append(buf, s...) + return buf +} + +func appendBool(buf []byte, b bool) []byte { + if b { + buf = append(buf, 1) + } else { + buf = append(buf, 0) + } + return buf +} + +// newCond is a helper to hide the fact that there is no usable zero +// value for sync.Cond. +func newCond() *sync.Cond { return sync.NewCond(new(sync.Mutex)) } + +// window represents the buffer available to clients +// wishing to write to a channel. +type window struct { + *sync.Cond + win uint32 // RFC 4254 5.2 says the window size can grow to 2^32-1 +} + +// add adds win to the amount of window available +// for consumers. +func (w *window) add(win uint32) bool { + // a zero sized window adjust is a noop. + if win == 0 { + return true + } + w.L.Lock() + if w.win+win < win { + w.L.Unlock() + return false + } + w.win += win + // It is unusual that multiple goroutines would be attempting to reserve + // window space, but not guaranteed. Use broadcast to notify all waiters + // that additional window is available. + w.Broadcast() + w.L.Unlock() + return true +} + +// reserve reserves win from the available window capacity. +// If no capacity remains, reserve will block. reserve may +// return less than requested. +func (w *window) reserve(win uint32) uint32 { + w.L.Lock() + for w.win == 0 { + w.Wait() + } + if w.win < win { + win = w.win + } + w.win -= win + w.L.Unlock() + return win +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/common_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/common_test.go new file mode 100644 index 00000000..d9df56fa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/common_test.go @@ -0,0 +1,57 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "io" + "net" + "testing" +) + +func TestSafeString(t *testing.T) { + strings := map[string]string{ + "\x20\x0d\x0a": "\x20\x0d\x0a", + "flibble": "flibble", + "new\x20line": "new\x20line", + "123456\x07789": "123456 789", + "\t\t\x10\r\n": "\t\t \r\n", + } + + for s, expected := range strings { + actual := safeString(s) + if expected != actual { + t.Errorf("expected: %v, actual: %v", []byte(expected), []byte(actual)) + } + } +} + +// Make sure Read/Write are not exposed. +func TestConnHideRWMethods(t *testing.T) { + for _, c := range []interface{}{new(ServerConn), new(ClientConn)} { + if _, ok := c.(io.Reader); ok { + t.Errorf("%T implements io.Reader", c) + } + if _, ok := c.(io.Writer); ok { + t.Errorf("%T implements io.Writer", c) + } + } +} + +func TestConnSupportsLocalRemoteMethods(t *testing.T) { + type LocalAddr interface { + LocalAddr() net.Addr + } + type RemoteAddr interface { + RemoteAddr() net.Addr + } + for _, c := range []interface{}{new(ServerConn), new(ClientConn)} { + if _, ok := c.(LocalAddr); !ok { + t.Errorf("%T does not implement LocalAddr", c) + } + if _, ok := c.(RemoteAddr); !ok { + t.Errorf("%T does not implement RemoteAddr", c) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/doc.go new file mode 100644 index 00000000..22ff3388 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/doc.go @@ -0,0 +1,19 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package ssh implements an SSH client and server. + +SSH is a transport security protocol, an authentication protocol and a +family of application protocols. The most typical application level +protocol is a remote shell and this is specifically implemented. However, +the multiplexed nature of SSH is exposed to users that wish to support +others. + +References: + [PROTOCOL.certkeys]: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys + [PROTOCOL.agent]: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.agent + [SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1 +*/ +package ssh diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/example_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/example_test.go new file mode 100644 index 00000000..a88a6773 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/example_test.go @@ -0,0 +1,191 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "fmt" + "io/ioutil" + "log" + "net/http" + + "code.google.com/p/go.crypto/ssh/terminal" +) + +func ExampleListen() { + // An SSH server is represented by a ServerConfig, which holds + // certificate details and handles authentication of ServerConns. + config := &ServerConfig{ + PasswordCallback: func(conn *ServerConn, user, pass string) bool { + return user == "testuser" && pass == "tiger" + }, + } + + privateBytes, err := ioutil.ReadFile("id_rsa") + if err != nil { + panic("Failed to load private key") + } + + private, err := ParsePrivateKey(privateBytes) + if err != nil { + panic("Failed to parse private key") + } + + config.AddHostKey(private) + + // Once a ServerConfig has been configured, connections can be + // accepted. + listener, err := Listen("tcp", "0.0.0.0:2022", config) + if err != nil { + panic("failed to listen for connection") + } + sConn, err := listener.Accept() + if err != nil { + panic("failed to accept incoming connection") + } + if err := sConn.Handshake(); err != nil { + panic("failed to handshake") + } + + // A ServerConn multiplexes several channels, which must + // themselves be Accepted. + for { + // Accept reads from the connection, demultiplexes packets + // to their corresponding channels and returns when a new + // channel request is seen. Some goroutine must always be + // calling Accept; otherwise no messages will be forwarded + // to the channels. + channel, err := sConn.Accept() + if err != nil { + panic("error from Accept") + } + + // Channels have a type, depending on the application level + // protocol intended. In the case of a shell, the type is + // "session" and ServerShell may be used to present a simple + // terminal interface. + if channel.ChannelType() != "session" { + channel.Reject(UnknownChannelType, "unknown channel type") + continue + } + channel.Accept() + + term := terminal.NewTerminal(channel, "> ") + serverTerm := &ServerTerminal{ + Term: term, + Channel: channel, + } + go func() { + defer channel.Close() + for { + line, err := serverTerm.ReadLine() + if err != nil { + break + } + fmt.Println(line) + } + }() + } +} + +func ExampleDial() { + // An SSH client is represented with a ClientConn. Currently only + // the "password" authentication method is supported. + // + // To authenticate with the remote server you must pass at least one + // implementation of ClientAuth via the Auth field in ClientConfig. + config := &ClientConfig{ + User: "username", + Auth: []ClientAuth{ + // ClientAuthPassword wraps a ClientPassword implementation + // in a type that implements ClientAuth. + ClientAuthPassword(password("yourpassword")), + }, + } + client, err := Dial("tcp", "yourserver.com:22", config) + if err != nil { + panic("Failed to dial: " + err.Error()) + } + + // Each ClientConn can support multiple interactive sessions, + // represented by a Session. + session, err := client.NewSession() + if err != nil { + panic("Failed to create session: " + err.Error()) + } + defer session.Close() + + // Once a Session is created, you can execute a single command on + // the remote side using the Run method. + var b bytes.Buffer + session.Stdout = &b + if err := session.Run("/usr/bin/whoami"); err != nil { + panic("Failed to run: " + err.Error()) + } + fmt.Println(b.String()) +} + +func ExampleClientConn_Listen() { + config := &ClientConfig{ + User: "username", + Auth: []ClientAuth{ + ClientAuthPassword(password("password")), + }, + } + // Dial your ssh server. + conn, err := Dial("tcp", "localhost:22", config) + if err != nil { + log.Fatalf("unable to connect: %s", err) + } + defer conn.Close() + + // Request the remote side to open port 8080 on all interfaces. + l, err := conn.Listen("tcp", "0.0.0.0:8080") + if err != nil { + log.Fatalf("unable to register tcp forward: %v", err) + } + defer l.Close() + + // Serve HTTP with your SSH server acting as a reverse proxy. + http.Serve(l, http.HandlerFunc(func(resp http.ResponseWriter, req *http.Request) { + fmt.Fprintf(resp, "Hello world!\n") + })) +} + +func ExampleSession_RequestPty() { + // Create client config + config := &ClientConfig{ + User: "username", + Auth: []ClientAuth{ + ClientAuthPassword(password("password")), + }, + } + // Connect to ssh server + conn, err := Dial("tcp", "localhost:22", config) + if err != nil { + log.Fatalf("unable to connect: %s", err) + } + defer conn.Close() + // Create a session + session, err := conn.NewSession() + if err != nil { + log.Fatalf("unable to create session: %s", err) + } + defer session.Close() + // Set up terminal modes + modes := TerminalModes{ + ECHO: 0, // disable echoing + TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud + TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud + } + // Request pseudo terminal + if err := session.RequestPty("xterm", 80, 40, modes); err != nil { + log.Fatalf("request for pseudo terminal failed: %s", err) + } + // Start remote shell + if err := session.Shell(); err != nil { + log.Fatalf("failed to start shell: %s", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/kex.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/kex.go new file mode 100644 index 00000000..d2e3b707 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/kex.go @@ -0,0 +1,386 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rand" + "errors" + "io" + "math/big" +) + +const ( + kexAlgoDH1SHA1 = "diffie-hellman-group1-sha1" + kexAlgoDH14SHA1 = "diffie-hellman-group14-sha1" + kexAlgoECDH256 = "ecdh-sha2-nistp256" + kexAlgoECDH384 = "ecdh-sha2-nistp384" + kexAlgoECDH521 = "ecdh-sha2-nistp521" +) + +// kexResult captures the outcome of a key exchange. +type kexResult struct { + // Session hash. See also RFC 4253, section 8. + H []byte + + // Shared secret. See also RFC 4253, section 8. + K []byte + + // Host key as hashed into H + HostKey []byte + + // Signature of H + Signature []byte + + // A cryptographic hash function that matches the security + // level of the key exchange algorithm. It is used for + // calculating H, and for deriving keys from H and K. + Hash crypto.Hash + + // The session ID, which is the first H computed. This is used + // to signal data inside transport. + SessionID []byte +} + +// handshakeMagics contains data that is always included in the +// session hash. +type handshakeMagics struct { + clientVersion, serverVersion []byte + clientKexInit, serverKexInit []byte +} + +func (m *handshakeMagics) write(w io.Writer) { + writeString(w, m.clientVersion) + writeString(w, m.serverVersion) + writeString(w, m.clientKexInit) + writeString(w, m.serverKexInit) +} + +// kexAlgorithm abstracts different key exchange algorithms. +type kexAlgorithm interface { + // Server runs server-side key agreement, signing the result + // with a hostkey. + Server(p packetConn, rand io.Reader, magics *handshakeMagics, s Signer) (*kexResult, error) + + // Client runs the client-side key agreement. Caller is + // responsible for verifying the host key signature. + Client(p packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) +} + +// dhGroup is a multiplicative group suitable for implementing Diffie-Hellman key agreement. +type dhGroup struct { + g, p *big.Int +} + +func (group *dhGroup) diffieHellman(theirPublic, myPrivate *big.Int) (*big.Int, error) { + if theirPublic.Sign() <= 0 || theirPublic.Cmp(group.p) >= 0 { + return nil, errors.New("ssh: DH parameter out of bounds") + } + return new(big.Int).Exp(theirPublic, myPrivate, group.p), nil +} + +func (group *dhGroup) Client(c packetConn, randSource io.Reader, magics *handshakeMagics) (*kexResult, error) { + hashFunc := crypto.SHA1 + + x, err := rand.Int(randSource, group.p) + if err != nil { + return nil, err + } + X := new(big.Int).Exp(group.g, x, group.p) + kexDHInit := kexDHInitMsg{ + X: X, + } + if err := c.writePacket(marshal(msgKexDHInit, kexDHInit)); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexDHReply kexDHReplyMsg + if err = unmarshal(&kexDHReply, packet, msgKexDHReply); err != nil { + return nil, err + } + + kInt, err := group.diffieHellman(kexDHReply.Y, x) + if err != nil { + return nil, err + } + + h := hashFunc.New() + magics.write(h) + writeString(h, kexDHReply.HostKey) + writeInt(h, X) + writeInt(h, kexDHReply.Y) + K := make([]byte, intLength(kInt)) + marshalInt(K, kInt) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: kexDHReply.HostKey, + Signature: kexDHReply.Signature, + Hash: crypto.SHA1, + }, nil +} + +func (group *dhGroup) Server(c packetConn, randSource io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + hashFunc := crypto.SHA1 + packet, err := c.readPacket() + if err != nil { + return + } + var kexDHInit kexDHInitMsg + if err = unmarshal(&kexDHInit, packet, msgKexDHInit); err != nil { + return + } + + y, err := rand.Int(randSource, group.p) + if err != nil { + return + } + + Y := new(big.Int).Exp(group.g, y, group.p) + kInt, err := group.diffieHellman(kexDHInit.X, y) + if err != nil { + return nil, err + } + + hostKeyBytes := MarshalPublicKey(priv.PublicKey()) + + h := hashFunc.New() + magics.write(h) + writeString(h, hostKeyBytes) + writeInt(h, kexDHInit.X) + writeInt(h, Y) + + K := make([]byte, intLength(kInt)) + marshalInt(K, kInt) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, randSource, H) + if err != nil { + return nil, err + } + + kexDHReply := kexDHReplyMsg{ + HostKey: hostKeyBytes, + Y: Y, + Signature: sig, + } + packet = marshal(msgKexDHReply, kexDHReply) + + err = c.writePacket(packet) + return &kexResult{ + H: H, + K: K, + HostKey: hostKeyBytes, + Signature: sig, + Hash: crypto.SHA1, + }, nil +} + +// ecdh performs Elliptic Curve Diffie-Hellman key exchange as +// described in RFC 5656, section 4. +type ecdh struct { + curve elliptic.Curve +} + +func (kex *ecdh) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { + ephKey, err := ecdsa.GenerateKey(kex.curve, rand) + if err != nil { + return nil, err + } + + kexInit := kexECDHInitMsg{ + ClientPubKey: elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y), + } + + serialized := marshal(msgKexECDHInit, kexInit) + if err := c.writePacket(serialized); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var reply kexECDHReplyMsg + if err = unmarshal(&reply, packet, msgKexECDHReply); err != nil { + return nil, err + } + + x, y, err := unmarshalECKey(kex.curve, reply.EphemeralPubKey) + if err != nil { + return nil, err + } + + // generate shared secret + secret, _ := kex.curve.ScalarMult(x, y, ephKey.D.Bytes()) + + h := ecHash(kex.curve).New() + magics.write(h) + writeString(h, reply.HostKey) + writeString(h, kexInit.ClientPubKey) + writeString(h, reply.EphemeralPubKey) + K := make([]byte, intLength(secret)) + marshalInt(K, secret) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: reply.HostKey, + Signature: reply.Signature, + Hash: ecHash(kex.curve), + }, nil +} + +// unmarshalECKey parses and checks an EC key. +func unmarshalECKey(curve elliptic.Curve, pubkey []byte) (x, y *big.Int, err error) { + x, y = elliptic.Unmarshal(curve, pubkey) + if x == nil { + return nil, nil, errors.New("ssh: elliptic.Unmarshal failure") + } + if !validateECPublicKey(curve, x, y) { + return nil, nil, errors.New("ssh: public key not on curve") + } + return x, y, nil +} + +// validateECPublicKey checks that the point is a valid public key for +// the given curve. See [SEC1], 3.2.2 +func validateECPublicKey(curve elliptic.Curve, x, y *big.Int) bool { + if x.Sign() == 0 && y.Sign() == 0 { + return false + } + + if x.Cmp(curve.Params().P) >= 0 { + return false + } + + if y.Cmp(curve.Params().P) >= 0 { + return false + } + + if !curve.IsOnCurve(x, y) { + return false + } + + // We don't check if N * PubKey == 0, since + // + // - the NIST curves have cofactor = 1, so this is implicit. + // (We don't foresee an implementation that supports non NIST + // curves) + // + // - for ephemeral keys, we don't need to worry about small + // subgroup attacks. + return true +} + +func (kex *ecdh) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexECDHInit kexECDHInitMsg + if err = unmarshal(&kexECDHInit, packet, msgKexECDHInit); err != nil { + return nil, err + } + + clientX, clientY, err := unmarshalECKey(kex.curve, kexECDHInit.ClientPubKey) + if err != nil { + return nil, err + } + + // We could cache this key across multiple users/multiple + // connection attempts, but the benefit is small. OpenSSH + // generates a new key for each incoming connection. + ephKey, err := ecdsa.GenerateKey(kex.curve, rand) + if err != nil { + return nil, err + } + + hostKeyBytes := MarshalPublicKey(priv.PublicKey()) + + serializedEphKey := elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y) + + // generate shared secret + secret, _ := kex.curve.ScalarMult(clientX, clientY, ephKey.D.Bytes()) + + h := ecHash(kex.curve).New() + magics.write(h) + writeString(h, hostKeyBytes) + writeString(h, kexECDHInit.ClientPubKey) + writeString(h, serializedEphKey) + + K := make([]byte, intLength(secret)) + marshalInt(K, secret) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, rand, H) + if err != nil { + return nil, err + } + + reply := kexECDHReplyMsg{ + EphemeralPubKey: serializedEphKey, + HostKey: hostKeyBytes, + Signature: sig, + } + + serialized := marshal(msgKexECDHReply, reply) + if err := c.writePacket(serialized); err != nil { + return nil, err + } + + return &kexResult{ + H: H, + K: K, + HostKey: reply.HostKey, + Signature: sig, + Hash: ecHash(kex.curve), + }, nil +} + +var kexAlgoMap = map[string]kexAlgorithm{} + +func init() { + // This is the group called diffie-hellman-group1-sha1 in RFC + // 4253 and Oakley Group 2 in RFC 2409. + p, _ := new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF", 16) + kexAlgoMap[kexAlgoDH1SHA1] = &dhGroup{ + g: new(big.Int).SetInt64(2), + p: p, + } + + // This is the group called diffie-hellman-group14-sha1 in RFC + // 4253 and Oakley Group 14 in RFC 3526. + p, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF", 16) + + kexAlgoMap[kexAlgoDH14SHA1] = &dhGroup{ + g: new(big.Int).SetInt64(2), + p: p, + } + + kexAlgoMap[kexAlgoECDH521] = &ecdh{elliptic.P521()} + kexAlgoMap[kexAlgoECDH384] = &ecdh{elliptic.P384()} + kexAlgoMap[kexAlgoECDH256] = &ecdh{elliptic.P256()} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/kex_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/kex_test.go new file mode 100644 index 00000000..1e931a31 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/kex_test.go @@ -0,0 +1,48 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Key exchange tests. + +import ( + "crypto/rand" + "reflect" + "testing" +) + +func TestKexes(t *testing.T) { + type kexResultErr struct { + result *kexResult + err error + } + + for name, kex := range kexAlgoMap { + a, b := memPipe() + + s := make(chan kexResultErr, 1) + c := make(chan kexResultErr, 1) + var magics handshakeMagics + go func() { + r, e := kex.Client(a, rand.Reader, &magics) + c <- kexResultErr{r, e} + }() + go func() { + r, e := kex.Server(b, rand.Reader, &magics, ecdsaKey) + s <- kexResultErr{r, e} + }() + + clientRes := <-c + serverRes := <-s + if clientRes.err != nil { + t.Errorf("client: %v", clientRes.err) + } + if serverRes.err != nil { + t.Errorf("server: %v", serverRes.err) + } + if !reflect.DeepEqual(clientRes.result, serverRes.result) { + t.Errorf("kex %q: mismatch %#v, %#v", name, clientRes.result, serverRes.result) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/keys.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/keys.go new file mode 100644 index 00000000..b41fefc8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/keys.go @@ -0,0 +1,609 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "crypto" + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rsa" + "crypto/x509" + "encoding/asn1" + "encoding/base64" + "encoding/pem" + "errors" + "fmt" + "io" + "math/big" +) + +// These constants represent the algorithm names for key types supported by this +// package. +const ( + KeyAlgoRSA = "ssh-rsa" + KeyAlgoDSA = "ssh-dss" + KeyAlgoECDSA256 = "ecdsa-sha2-nistp256" + KeyAlgoECDSA384 = "ecdsa-sha2-nistp384" + KeyAlgoECDSA521 = "ecdsa-sha2-nistp521" +) + +// parsePubKey parses a public key of the given algorithm. +// Use ParsePublicKey for keys with prepended algorithm. +func parsePubKey(in []byte, algo string) (pubKey PublicKey, rest []byte, ok bool) { + switch algo { + case KeyAlgoRSA: + return parseRSA(in) + case KeyAlgoDSA: + return parseDSA(in) + case KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521: + return parseECDSA(in) + case CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01: + return parseOpenSSHCertV01(in, algo) + } + return nil, nil, false +} + +// parseAuthorizedKey parses a public key in OpenSSH authorized_keys format +// (see sshd(8) manual page) once the options and key type fields have been +// removed. +func parseAuthorizedKey(in []byte) (out PublicKey, comment string, ok bool) { + in = bytes.TrimSpace(in) + + i := bytes.IndexAny(in, " \t") + if i == -1 { + i = len(in) + } + base64Key := in[:i] + + key := make([]byte, base64.StdEncoding.DecodedLen(len(base64Key))) + n, err := base64.StdEncoding.Decode(key, base64Key) + if err != nil { + return + } + key = key[:n] + out, _, ok = ParsePublicKey(key) + if !ok { + return nil, "", false + } + comment = string(bytes.TrimSpace(in[i:])) + return +} + +// ParseAuthorizedKeys parses a public key from an authorized_keys +// file used in OpenSSH according to the sshd(8) manual page. +func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, ok bool) { + for len(in) > 0 { + end := bytes.IndexByte(in, '\n') + if end != -1 { + rest = in[end+1:] + in = in[:end] + } else { + rest = nil + } + + end = bytes.IndexByte(in, '\r') + if end != -1 { + in = in[:end] + } + + in = bytes.TrimSpace(in) + if len(in) == 0 || in[0] == '#' { + in = rest + continue + } + + i := bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + if out, comment, ok = parseAuthorizedKey(in[i:]); ok { + return + } + + // No key type recognised. Maybe there's an options field at + // the beginning. + var b byte + inQuote := false + var candidateOptions []string + optionStart := 0 + for i, b = range in { + isEnd := !inQuote && (b == ' ' || b == '\t') + if (b == ',' && !inQuote) || isEnd { + if i-optionStart > 0 { + candidateOptions = append(candidateOptions, string(in[optionStart:i])) + } + optionStart = i + 1 + } + if isEnd { + break + } + if b == '"' && (i == 0 || (i > 0 && in[i-1] != '\\')) { + inQuote = !inQuote + } + } + for i < len(in) && (in[i] == ' ' || in[i] == '\t') { + i++ + } + if i == len(in) { + // Invalid line: unmatched quote + in = rest + continue + } + + in = in[i:] + i = bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + if out, comment, ok = parseAuthorizedKey(in[i:]); ok { + options = candidateOptions + return + } + + in = rest + continue + } + + return +} + +// ParsePublicKey parses an SSH public key formatted for use in +// the SSH wire protocol according to RFC 4253, section 6.6. +func ParsePublicKey(in []byte) (out PublicKey, rest []byte, ok bool) { + algo, in, ok := parseString(in) + if !ok { + return + } + + return parsePubKey(in, string(algo)) +} + +// MarshalAuthorizedKey returns a byte stream suitable for inclusion +// in an OpenSSH authorized_keys file following the format specified +// in the sshd(8) manual page. +func MarshalAuthorizedKey(key PublicKey) []byte { + b := &bytes.Buffer{} + b.WriteString(key.PublicKeyAlgo()) + b.WriteByte(' ') + e := base64.NewEncoder(base64.StdEncoding, b) + e.Write(MarshalPublicKey(key)) + e.Close() + b.WriteByte('\n') + return b.Bytes() +} + +// PublicKey is an abstraction of different types of public keys. +type PublicKey interface { + // PrivateKeyAlgo returns the name of the encryption system. + PrivateKeyAlgo() string + + // PublicKeyAlgo returns the algorithm for the public key, + // which may be different from PrivateKeyAlgo for certificates. + PublicKeyAlgo() string + + // Marshal returns the serialized key data in SSH wire format, + // without the name prefix. Callers should typically use + // MarshalPublicKey(). + Marshal() []byte + + // Verify that sig is a signature on the given data using this + // key. This function will hash the data appropriately first. + Verify(data []byte, sigBlob []byte) bool +} + +// A Signer is can create signatures that verify against a public key. +type Signer interface { + // PublicKey returns an associated PublicKey instance. + PublicKey() PublicKey + + // Sign returns raw signature for the given data. This method + // will apply the hash specified for the keytype to the data. + Sign(rand io.Reader, data []byte) ([]byte, error) +} + +type rsaPublicKey rsa.PublicKey + +func (r *rsaPublicKey) PrivateKeyAlgo() string { + return "ssh-rsa" +} + +func (r *rsaPublicKey) PublicKeyAlgo() string { + return r.PrivateKeyAlgo() +} + +// parseRSA parses an RSA key according to RFC 4253, section 6.6. +func parseRSA(in []byte) (out PublicKey, rest []byte, ok bool) { + key := new(rsa.PublicKey) + + bigE, in, ok := parseInt(in) + if !ok || bigE.BitLen() > 24 { + return + } + e := bigE.Int64() + if e < 3 || e&1 == 0 { + ok = false + return + } + key.E = int(e) + + if key.N, in, ok = parseInt(in); !ok { + return + } + + ok = true + return (*rsaPublicKey)(key), in, ok +} + +func (r *rsaPublicKey) Marshal() []byte { + // See RFC 4253, section 6.6. + e := new(big.Int).SetInt64(int64(r.E)) + length := intLength(e) + length += intLength(r.N) + + ret := make([]byte, length) + rest := marshalInt(ret, e) + marshalInt(rest, r.N) + + return ret +} + +func (r *rsaPublicKey) Verify(data []byte, sig []byte) bool { + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), crypto.SHA1, digest, sig) == nil +} + +type rsaPrivateKey struct { + *rsa.PrivateKey +} + +func (r *rsaPrivateKey) PublicKey() PublicKey { + return (*rsaPublicKey)(&r.PrivateKey.PublicKey) +} + +func (r *rsaPrivateKey) Sign(rand io.Reader, data []byte) ([]byte, error) { + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + return rsa.SignPKCS1v15(rand, r.PrivateKey, crypto.SHA1, digest) +} + +type dsaPublicKey dsa.PublicKey + +func (r *dsaPublicKey) PrivateKeyAlgo() string { + return "ssh-dss" +} + +func (r *dsaPublicKey) PublicKeyAlgo() string { + return r.PrivateKeyAlgo() +} + +// parseDSA parses an DSA key according to RFC 4253, section 6.6. +func parseDSA(in []byte) (out PublicKey, rest []byte, ok bool) { + key := new(dsa.PublicKey) + + if key.P, in, ok = parseInt(in); !ok { + return + } + + if key.Q, in, ok = parseInt(in); !ok { + return + } + + if key.G, in, ok = parseInt(in); !ok { + return + } + + if key.Y, in, ok = parseInt(in); !ok { + return + } + + ok = true + return (*dsaPublicKey)(key), in, ok +} + +func (r *dsaPublicKey) Marshal() []byte { + // See RFC 4253, section 6.6. + length := intLength(r.P) + length += intLength(r.Q) + length += intLength(r.G) + length += intLength(r.Y) + + ret := make([]byte, length) + rest := marshalInt(ret, r.P) + rest = marshalInt(rest, r.Q) + rest = marshalInt(rest, r.G) + marshalInt(rest, r.Y) + + return ret +} + +func (k *dsaPublicKey) Verify(data []byte, sigBlob []byte) bool { + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + + // Per RFC 4253, section 6.6, + // The value for 'dss_signature_blob' is encoded as a string containing + // r, followed by s (which are 160-bit integers, without lengths or + // padding, unsigned, and in network byte order). + // For DSS purposes, sig.Blob should be exactly 40 bytes in length. + if len(sigBlob) != 40 { + return false + } + r := new(big.Int).SetBytes(sigBlob[:20]) + s := new(big.Int).SetBytes(sigBlob[20:]) + return dsa.Verify((*dsa.PublicKey)(k), digest, r, s) +} + +type dsaPrivateKey struct { + *dsa.PrivateKey +} + +func (k *dsaPrivateKey) PublicKey() PublicKey { + return (*dsaPublicKey)(&k.PrivateKey.PublicKey) +} + +func (k *dsaPrivateKey) Sign(rand io.Reader, data []byte) ([]byte, error) { + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + r, s, err := dsa.Sign(rand, k.PrivateKey, digest) + if err != nil { + return nil, err + } + + sig := make([]byte, 40) + copy(sig[:20], r.Bytes()) + copy(sig[20:], s.Bytes()) + return sig, nil +} + +type ecdsaPublicKey ecdsa.PublicKey + +func (key *ecdsaPublicKey) PrivateKeyAlgo() string { + return "ecdsa-sha2-" + key.nistID() +} + +func (key *ecdsaPublicKey) nistID() string { + switch key.Params().BitSize { + case 256: + return "nistp256" + case 384: + return "nistp384" + case 521: + return "nistp521" + } + panic("ssh: unsupported ecdsa key size") +} + +func supportedEllipticCurve(curve elliptic.Curve) bool { + return (curve == elliptic.P256() || curve == elliptic.P384() || curve == elliptic.P521()) +} + +// ecHash returns the hash to match the given elliptic curve, see RFC +// 5656, section 6.2.1 +func ecHash(curve elliptic.Curve) crypto.Hash { + bitSize := curve.Params().BitSize + switch { + case bitSize <= 256: + return crypto.SHA256 + case bitSize <= 384: + return crypto.SHA384 + } + return crypto.SHA512 +} + +func (key *ecdsaPublicKey) PublicKeyAlgo() string { + return key.PrivateKeyAlgo() +} + +// parseECDSA parses an ECDSA key according to RFC 5656, section 3.1. +func parseECDSA(in []byte) (out PublicKey, rest []byte, ok bool) { + var identifier []byte + if identifier, in, ok = parseString(in); !ok { + return + } + + key := new(ecdsa.PublicKey) + + switch string(identifier) { + case "nistp256": + key.Curve = elliptic.P256() + case "nistp384": + key.Curve = elliptic.P384() + case "nistp521": + key.Curve = elliptic.P521() + default: + ok = false + return + } + + var keyBytes []byte + if keyBytes, in, ok = parseString(in); !ok { + return + } + + key.X, key.Y = elliptic.Unmarshal(key.Curve, keyBytes) + if key.X == nil || key.Y == nil { + ok = false + return + } + return (*ecdsaPublicKey)(key), in, ok +} + +func (key *ecdsaPublicKey) Marshal() []byte { + // See RFC 5656, section 3.1. + keyBytes := elliptic.Marshal(key.Curve, key.X, key.Y) + + ID := key.nistID() + length := stringLength(len(ID)) + length += stringLength(len(keyBytes)) + + ret := make([]byte, length) + r := marshalString(ret, []byte(ID)) + r = marshalString(r, keyBytes) + return ret +} + +func (key *ecdsaPublicKey) Verify(data []byte, sigBlob []byte) bool { + h := ecHash(key.Curve).New() + h.Write(data) + digest := h.Sum(nil) + + // Per RFC 5656, section 3.1.2, + // The ecdsa_signature_blob value has the following specific encoding: + // mpint r + // mpint s + r, rest, ok := parseInt(sigBlob) + if !ok { + return false + } + s, rest, ok := parseInt(rest) + if !ok || len(rest) > 0 { + return false + } + return ecdsa.Verify((*ecdsa.PublicKey)(key), digest, r, s) +} + +type ecdsaPrivateKey struct { + *ecdsa.PrivateKey +} + +func (k *ecdsaPrivateKey) PublicKey() PublicKey { + return (*ecdsaPublicKey)(&k.PrivateKey.PublicKey) +} + +func (k *ecdsaPrivateKey) Sign(rand io.Reader, data []byte) ([]byte, error) { + h := ecHash(k.PrivateKey.PublicKey.Curve).New() + h.Write(data) + digest := h.Sum(nil) + r, s, err := ecdsa.Sign(rand, k.PrivateKey, digest) + if err != nil { + return nil, err + } + + sig := make([]byte, intLength(r)+intLength(s)) + rest := marshalInt(sig, r) + marshalInt(rest, s) + return sig, nil +} + +// NewPrivateKey takes a pointer to rsa, dsa or ecdsa PrivateKey +// returns a corresponding Signer instance. EC keys should use P256, +// P384 or P521. +func NewSignerFromKey(k interface{}) (Signer, error) { + var sshKey Signer + switch t := k.(type) { + case *rsa.PrivateKey: + sshKey = &rsaPrivateKey{t} + case *dsa.PrivateKey: + sshKey = &dsaPrivateKey{t} + case *ecdsa.PrivateKey: + if !supportedEllipticCurve(t.Curve) { + return nil, errors.New("ssh: only P256, P384 and P521 EC keys are supported.") + } + + sshKey = &ecdsaPrivateKey{t} + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", k) + } + return sshKey, nil +} + +// NewPublicKey takes a pointer to rsa, dsa or ecdsa PublicKey +// and returns a corresponding ssh PublicKey instance. EC keys should use P256, P384 or P521. +func NewPublicKey(k interface{}) (PublicKey, error) { + var sshKey PublicKey + switch t := k.(type) { + case *rsa.PublicKey: + sshKey = (*rsaPublicKey)(t) + case *ecdsa.PublicKey: + if !supportedEllipticCurve(t.Curve) { + return nil, errors.New("ssh: only P256, P384 and P521 EC keys are supported.") + } + sshKey = (*ecdsaPublicKey)(t) + case *dsa.PublicKey: + sshKey = (*dsaPublicKey)(t) + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", k) + } + return sshKey, nil +} + +// ParsePublicKey parses a PEM encoded private key. It supports +// PKCS#1, RSA, DSA and ECDSA private keys. +func ParsePrivateKey(pemBytes []byte) (Signer, error) { + block, _ := pem.Decode(pemBytes) + if block == nil { + return nil, errors.New("ssh: no key found") + } + + var rawkey interface{} + switch block.Type { + case "RSA PRIVATE KEY": + rsa, err := x509.ParsePKCS1PrivateKey(block.Bytes) + if err != nil { + return nil, err + } + rawkey = rsa + case "EC PRIVATE KEY": + ec, err := x509.ParseECPrivateKey(block.Bytes) + if err != nil { + return nil, err + } + rawkey = ec + case "DSA PRIVATE KEY": + ec, err := parseDSAPrivate(block.Bytes) + if err != nil { + return nil, err + } + rawkey = ec + default: + return nil, fmt.Errorf("ssh: unsupported key type %q", block.Type) + } + + return NewSignerFromKey(rawkey) +} + +// parseDSAPrivate parses a DSA key in ASN.1 DER encoding, as +// documented in the OpenSSL DSA manpage. +// TODO(hanwen): move this in to crypto/x509 after the Go 1.2 freeze. +func parseDSAPrivate(p []byte) (*dsa.PrivateKey, error) { + k := struct { + Version int + P *big.Int + Q *big.Int + G *big.Int + Priv *big.Int + Pub *big.Int + }{} + rest, err := asn1.Unmarshal(p, &k) + if err != nil { + return nil, errors.New("ssh: failed to parse DSA key: " + err.Error()) + } + if len(rest) > 0 { + return nil, errors.New("ssh: garbage after DSA key") + } + + return &dsa.PrivateKey{ + PublicKey: dsa.PublicKey{ + Parameters: dsa.Parameters{ + P: k.P, + Q: k.Q, + G: k.G, + }, + Y: k.Priv, + }, + X: k.Pub, + }, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/keys_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/keys_test.go new file mode 100644 index 00000000..3c4b7351 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/keys_test.go @@ -0,0 +1,214 @@ +package ssh + +import ( + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rand" + "crypto/rsa" + "reflect" + "strings" + "testing" +) + +var ( + ecdsaKey Signer + ecdsa384Key Signer + ecdsa521Key Signer + testCertKey Signer +) + +type testSigner struct { + Signer + pub PublicKey +} + +func (ts *testSigner) PublicKey() PublicKey { + if ts.pub != nil { + return ts.pub + } + return ts.Signer.PublicKey() +} + +func init() { + raw256, _ := ecdsa.GenerateKey(elliptic.P256(), rand.Reader) + ecdsaKey, _ = NewSignerFromKey(raw256) + + raw384, _ := ecdsa.GenerateKey(elliptic.P384(), rand.Reader) + ecdsa384Key, _ = NewSignerFromKey(raw384) + + raw521, _ := ecdsa.GenerateKey(elliptic.P521(), rand.Reader) + ecdsa521Key, _ = NewSignerFromKey(raw521) + + // Create a cert and sign it for use in tests. + testCert := &OpenSSHCertV01{ + Nonce: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil + Key: ecdsaKey.PublicKey(), + ValidPrincipals: []string{"gopher1", "gopher2"}, // increases test coverage + ValidAfter: 0, // unix epoch + ValidBefore: maxUint64, // The end of currently representable time. + Reserved: []byte{}, // To pass reflect.DeepEqual after marshal & parse, this must be non-nil + SignatureKey: rsaKey.PublicKey(), + } + sigBytes, _ := rsaKey.Sign(rand.Reader, testCert.BytesForSigning()) + testCert.Signature = &signature{ + Format: testCert.SignatureKey.PublicKeyAlgo(), + Blob: sigBytes, + } + testCertKey = &testSigner{ + Signer: ecdsaKey, + pub: testCert, + } +} + +func rawKey(pub PublicKey) interface{} { + switch k := pub.(type) { + case *rsaPublicKey: + return (*rsa.PublicKey)(k) + case *dsaPublicKey: + return (*dsa.PublicKey)(k) + case *ecdsaPublicKey: + return (*ecdsa.PublicKey)(k) + case *OpenSSHCertV01: + return k + } + panic("unknown key type") +} + +func TestKeyMarshalParse(t *testing.T) { + keys := []Signer{rsaKey, dsaKey, ecdsaKey, ecdsa384Key, ecdsa521Key, testCertKey} + for _, priv := range keys { + pub := priv.PublicKey() + roundtrip, rest, ok := ParsePublicKey(MarshalPublicKey(pub)) + if !ok { + t.Errorf("ParsePublicKey(%T) failed", pub) + } + + if len(rest) > 0 { + t.Errorf("ParsePublicKey(%T): trailing junk", pub) + } + + k1 := rawKey(pub) + k2 := rawKey(roundtrip) + + if !reflect.DeepEqual(k1, k2) { + t.Errorf("got %#v in roundtrip, want %#v", k2, k1) + } + } +} + +func TestUnsupportedCurves(t *testing.T) { + raw, err := ecdsa.GenerateKey(elliptic.P224(), rand.Reader) + if err != nil { + t.Fatalf("GenerateKey: %v", err) + } + + if _, err = NewSignerFromKey(raw); err == nil || !strings.Contains(err.Error(), "only P256") { + t.Fatalf("NewPrivateKey should not succeed with P224, got: %v", err) + } + + if _, err = NewPublicKey(&raw.PublicKey); err == nil || !strings.Contains(err.Error(), "only P256") { + t.Fatalf("NewPublicKey should not succeed with P224, got: %v", err) + } +} + +func TestNewPublicKey(t *testing.T) { + keys := []Signer{rsaKey, dsaKey, ecdsaKey} + for _, k := range keys { + raw := rawKey(k.PublicKey()) + pub, err := NewPublicKey(raw) + if err != nil { + t.Errorf("NewPublicKey(%#v): %v", raw, err) + } + if !reflect.DeepEqual(k.PublicKey(), pub) { + t.Errorf("NewPublicKey(%#v) = %#v, want %#v", raw, pub, k.PublicKey()) + } + } +} + +func TestKeySignVerify(t *testing.T) { + keys := []Signer{rsaKey, dsaKey, ecdsaKey, testCertKey} + for _, priv := range keys { + pub := priv.PublicKey() + + data := []byte("sign me") + sig, err := priv.Sign(rand.Reader, data) + if err != nil { + t.Fatalf("Sign(%T): %v", priv, err) + } + + if !pub.Verify(data, sig) { + t.Errorf("publicKey.Verify(%T) failed", priv) + } + } +} + +func TestParseRSAPrivateKey(t *testing.T) { + key, err := ParsePrivateKey([]byte(testServerPrivateKey)) + if err != nil { + t.Fatalf("ParsePrivateKey: %v", err) + } + + rsa, ok := key.(*rsaPrivateKey) + if !ok { + t.Fatalf("got %T, want *rsa.PrivateKey", rsa) + } + + if err := rsa.Validate(); err != nil { + t.Errorf("Validate: %v", err) + } +} + +func TestParseECPrivateKey(t *testing.T) { + // Taken from the data in test/ . + pem := []byte(`-----BEGIN EC PRIVATE KEY----- +MHcCAQEEINGWx0zo6fhJ/0EAfrPzVFyFC9s18lBt3cRoEDhS3ARooAoGCCqGSM49 +AwEHoUQDQgAEi9Hdw6KvZcWxfg2IDhA7UkpDtzzt6ZqJXSsFdLd+Kx4S3Sx4cVO+ +6/ZOXRnPmNAlLUqjShUsUBBngG0u2fqEqA== +-----END EC PRIVATE KEY-----`) + + key, err := ParsePrivateKey(pem) + if err != nil { + t.Fatalf("ParsePrivateKey: %v", err) + } + + ecKey, ok := key.(*ecdsaPrivateKey) + if !ok { + t.Fatalf("got %T, want *ecdsaPrivateKey", ecKey) + } + + if !validateECPublicKey(ecKey.Curve, ecKey.X, ecKey.Y) { + t.Fatalf("public key does not validate.") + } +} + +// ssh-keygen -t dsa -f /tmp/idsa.pem +var dsaPEM = `-----BEGIN DSA PRIVATE KEY----- +MIIBuwIBAAKBgQD6PDSEyXiI9jfNs97WuM46MSDCYlOqWw80ajN16AohtBncs1YB +lHk//dQOvCYOsYaE+gNix2jtoRjwXhDsc25/IqQbU1ahb7mB8/rsaILRGIbA5WH3 +EgFtJmXFovDz3if6F6TzvhFpHgJRmLYVR8cqsezL3hEZOvvs2iH7MorkxwIVAJHD +nD82+lxh2fb4PMsIiaXudAsBAoGAQRf7Q/iaPRn43ZquUhd6WwvirqUj+tkIu6eV +2nZWYmXLlqFQKEy4Tejl7Wkyzr2OSYvbXLzo7TNxLKoWor6ips0phYPPMyXld14r +juhT24CrhOzuLMhDduMDi032wDIZG4Y+K7ElU8Oufn8Sj5Wge8r6ANmmVgmFfynr +FhdYCngCgYEA3ucGJ93/Mx4q4eKRDxcWD3QzWyqpbRVRRV1Vmih9Ha/qC994nJFz +DQIdjxDIT2Rk2AGzMqFEB68Zc3O+Wcsmz5eWWzEwFxaTwOGWTyDqsDRLm3fD+QYj +nOwuxb0Kce+gWI8voWcqC9cyRm09jGzu2Ab3Bhtpg8JJ8L7gS3MRZK4CFEx4UAfY +Fmsr0W6fHB9nhS4/UXM8 +-----END DSA PRIVATE KEY-----` + +func TestParseDSA(t *testing.T) { + s, err := ParsePrivateKey([]byte(dsaPEM)) + if err != nil { + t.Fatalf("ParsePrivateKey returned error: %s", err) + } + + data := []byte("sign me") + sig, err := s.Sign(rand.Reader, data) + if err != nil { + t.Fatalf("dsa.Sign: %v", err) + } + + if !s.PublicKey().Verify(data, sig) { + t.Error("Verify failed.") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/mac.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/mac.go new file mode 100644 index 00000000..6862d3e3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/mac.go @@ -0,0 +1,58 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Message authentication support + +import ( + "crypto/hmac" + "crypto/sha1" + "hash" +) + +type macMode struct { + keySize int + new func(key []byte) hash.Hash +} + +// truncatingMAC wraps around a hash.Hash and truncates the output digest to +// a given size. +type truncatingMAC struct { + length int + hmac hash.Hash +} + +func (t truncatingMAC) Write(data []byte) (int, error) { + return t.hmac.Write(data) +} + +func (t truncatingMAC) Sum(in []byte) []byte { + out := t.hmac.Sum(in) + return out[:len(in)+t.length] +} + +func (t truncatingMAC) Reset() { + t.hmac.Reset() +} + +func (t truncatingMAC) Size() int { + return t.length +} + +func (t truncatingMAC) BlockSize() int { return t.hmac.BlockSize() } + +// Specifies a default set of MAC algorithms and a preference order. +// This is based on RFC 4253, section 6.4, with the removal of the +// hmac-md5 variants as they have reached the end of their useful life. +var DefaultMACOrder = []string{"hmac-sha1", "hmac-sha1-96"} + +var macModes = map[string]*macMode{ + "hmac-sha1": {20, func(key []byte) hash.Hash { + return hmac.New(sha1.New, key) + }}, + "hmac-sha1-96": {20, func(key []byte) hash.Hash { + return truncatingMAC{12, hmac.New(sha1.New, key)} + }}, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/mempipe_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/mempipe_test.go new file mode 100644 index 00000000..ec1b854e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/mempipe_test.go @@ -0,0 +1,102 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "io" + "sync" + "testing" +) + +// An in-memory packetConn. It is safe to call Close and writePacket +// from different goroutines. +type memTransport struct { + eof bool + pending [][]byte + write *memTransport + sync.Mutex + *sync.Cond +} + +func (t *memTransport) readPacket() ([]byte, error) { + t.Lock() + defer t.Unlock() + for { + if len(t.pending) > 0 { + r := t.pending[0] + t.pending = t.pending[1:] + return r, nil + } + if t.eof { + return nil, io.EOF + } + t.Cond.Wait() + } +} + +func (t *memTransport) Close() error { + t.write.Lock() + defer t.write.Unlock() + if t.write.eof { + return io.EOF + } + t.write.eof = true + t.write.Cond.Broadcast() + return nil +} + +func (t *memTransport) writePacket(p []byte) error { + t.write.Lock() + defer t.write.Unlock() + if t.write.eof { + return io.EOF + } + t.write.pending = append(t.write.pending, p) + t.write.Cond.Signal() + return nil +} + +func memPipe() (a, b packetConn) { + t1 := memTransport{} + t2 := memTransport{} + t1.write = &t2 + t2.write = &t1 + t1.Cond = sync.NewCond(&t1.Mutex) + t2.Cond = sync.NewCond(&t2.Mutex) + return &t1, &t2 +} + +func TestmemPipe(t *testing.T) { + a, b := memPipe() + if err := a.writePacket([]byte{42}); err != nil { + t.Fatalf("writePacket: %v", err) + } + if err := a.Close(); err != nil { + t.Fatal("Close: ", err) + } + p, err := b.readPacket() + if err != nil { + t.Fatal("readPacket: ", err) + } + if len(p) != 1 || p[0] != 42 { + t.Fatalf("got %v, want {42}", p) + } + p, err = b.readPacket() + if err != io.EOF { + t.Fatalf("got %v, %v, want EOF", p, err) + } +} + +func TestDoubleClose(t *testing.T) { + a, _ := memPipe() + err := a.Close() + if err != nil { + t.Errorf("Close: %v", err) + } + err = a.Close() + if err != io.EOF { + t.Errorf("expect EOF on double close.") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/messages.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/messages.go new file mode 100644 index 00000000..94c3ea03 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/messages.go @@ -0,0 +1,659 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "encoding/binary" + "io" + "math/big" + "reflect" +) + +// These are SSH message type numbers. They are scattered around several +// documents but many were taken from [SSH-PARAMETERS]. +const ( + msgDisconnect = 1 + msgIgnore = 2 + msgUnimplemented = 3 + msgDebug = 4 + msgServiceRequest = 5 + msgServiceAccept = 6 + + msgKexInit = 20 + msgNewKeys = 21 + + // Diffie-Helman + msgKexDHInit = 30 + msgKexDHReply = 31 + + msgKexECDHInit = 30 + msgKexECDHReply = 31 + + // Standard authentication messages + msgUserAuthRequest = 50 + msgUserAuthFailure = 51 + msgUserAuthSuccess = 52 + msgUserAuthBanner = 53 + msgUserAuthPubKeyOk = 60 + + // Method specific messages + msgUserAuthInfoRequest = 60 + msgUserAuthInfoResponse = 61 + + msgGlobalRequest = 80 + msgRequestSuccess = 81 + msgRequestFailure = 82 + + // Channel manipulation + msgChannelOpen = 90 + msgChannelOpenConfirm = 91 + msgChannelOpenFailure = 92 + msgChannelWindowAdjust = 93 + msgChannelData = 94 + msgChannelExtendedData = 95 + msgChannelEOF = 96 + msgChannelClose = 97 + msgChannelRequest = 98 + msgChannelSuccess = 99 + msgChannelFailure = 100 +) + +// SSH messages: +// +// These structures mirror the wire format of the corresponding SSH messages. +// They are marshaled using reflection with the marshal and unmarshal functions +// in this file. The only wrinkle is that a final member of type []byte with a +// ssh tag of "rest" receives the remainder of a packet when unmarshaling. + +// See RFC 4253, section 11.1. +type disconnectMsg struct { + Reason uint32 + Message string + Language string +} + +// See RFC 4253, section 7.1. +type kexInitMsg struct { + Cookie [16]byte + KexAlgos []string + ServerHostKeyAlgos []string + CiphersClientServer []string + CiphersServerClient []string + MACsClientServer []string + MACsServerClient []string + CompressionClientServer []string + CompressionServerClient []string + LanguagesClientServer []string + LanguagesServerClient []string + FirstKexFollows bool + Reserved uint32 +} + +// See RFC 4253, section 8. +type kexDHInitMsg struct { + X *big.Int +} + +type kexECDHInitMsg struct { + ClientPubKey []byte +} + +type kexECDHReplyMsg struct { + HostKey []byte + EphemeralPubKey []byte + Signature []byte +} + +type kexDHReplyMsg struct { + HostKey []byte + Y *big.Int + Signature []byte +} + +// See RFC 4253, section 10. +type serviceRequestMsg struct { + Service string +} + +// See RFC 4253, section 10. +type serviceAcceptMsg struct { + Service string +} + +// See RFC 4252, section 5. +type userAuthRequestMsg struct { + User string + Service string + Method string + Payload []byte `ssh:"rest"` +} + +// See RFC 4252, section 5.1 +type userAuthFailureMsg struct { + Methods []string + PartialSuccess bool +} + +// See RFC 4256, section 3.2 +type userAuthInfoRequestMsg struct { + User string + Instruction string + DeprecatedLanguage string + NumPrompts uint32 + Prompts []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +type channelOpenMsg struct { + ChanType string + PeersId uint32 + PeersWindow uint32 + MaxPacketSize uint32 + TypeSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +type channelOpenConfirmMsg struct { + PeersId uint32 + MyId uint32 + MyWindow uint32 + MaxPacketSize uint32 + TypeSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +type channelOpenFailureMsg struct { + PeersId uint32 + Reason RejectionReason + Message string + Language string +} + +type channelRequestMsg struct { + PeersId uint32 + Request string + WantReply bool + RequestSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.4. +type channelRequestSuccessMsg struct { + PeersId uint32 +} + +// See RFC 4254, section 5.4. +type channelRequestFailureMsg struct { + PeersId uint32 +} + +// See RFC 4254, section 5.3 +type channelCloseMsg struct { + PeersId uint32 +} + +// See RFC 4254, section 5.3 +type channelEOFMsg struct { + PeersId uint32 +} + +// See RFC 4254, section 4 +type globalRequestMsg struct { + Type string + WantReply bool +} + +// See RFC 4254, section 4 +type globalRequestSuccessMsg struct { + Data []byte `ssh:"rest"` +} + +// See RFC 4254, section 4 +type globalRequestFailureMsg struct { + Data []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.2 +type windowAdjustMsg struct { + PeersId uint32 + AdditionalBytes uint32 +} + +// See RFC 4252, section 7 +type userAuthPubKeyOkMsg struct { + Algo string + PubKey string +} + +// unmarshal parses the SSH wire data in packet into out using +// reflection. expectedType, if non-zero, is the SSH message type that +// the packet is expected to start with. unmarshal either returns nil +// on success, or a ParseError or UnexpectedMessageError on error. +func unmarshal(out interface{}, packet []byte, expectedType uint8) error { + if len(packet) == 0 { + return ParseError{expectedType} + } + if expectedType > 0 { + if packet[0] != expectedType { + return UnexpectedMessageError{expectedType, packet[0]} + } + packet = packet[1:] + } + + v := reflect.ValueOf(out).Elem() + structType := v.Type() + var ok bool + for i := 0; i < v.NumField(); i++ { + field := v.Field(i) + t := field.Type() + switch t.Kind() { + case reflect.Bool: + if len(packet) < 1 { + return ParseError{expectedType} + } + field.SetBool(packet[0] != 0) + packet = packet[1:] + case reflect.Array: + if t.Elem().Kind() != reflect.Uint8 { + panic("array of non-uint8") + } + if len(packet) < t.Len() { + return ParseError{expectedType} + } + for j, n := 0, t.Len(); j < n; j++ { + field.Index(j).Set(reflect.ValueOf(packet[j])) + } + packet = packet[t.Len():] + case reflect.Uint32: + var u32 uint32 + if u32, packet, ok = parseUint32(packet); !ok { + return ParseError{expectedType} + } + field.SetUint(uint64(u32)) + case reflect.String: + var s []byte + if s, packet, ok = parseString(packet); !ok { + return ParseError{expectedType} + } + field.SetString(string(s)) + case reflect.Slice: + switch t.Elem().Kind() { + case reflect.Uint8: + if structType.Field(i).Tag.Get("ssh") == "rest" { + field.Set(reflect.ValueOf(packet)) + packet = nil + } else { + var s []byte + if s, packet, ok = parseString(packet); !ok { + return ParseError{expectedType} + } + field.Set(reflect.ValueOf(s)) + } + case reflect.String: + var nl []string + if nl, packet, ok = parseNameList(packet); !ok { + return ParseError{expectedType} + } + field.Set(reflect.ValueOf(nl)) + default: + panic("slice of unknown type") + } + case reflect.Ptr: + if t == bigIntType { + var n *big.Int + if n, packet, ok = parseInt(packet); !ok { + return ParseError{expectedType} + } + field.Set(reflect.ValueOf(n)) + } else { + panic("pointer to unknown type") + } + default: + panic("unknown type") + } + } + + if len(packet) != 0 { + return ParseError{expectedType} + } + + return nil +} + +// marshal serializes the message in msg. The given message type is +// prepended if it is non-zero. +func marshal(msgType uint8, msg interface{}) []byte { + out := make([]byte, 0, 64) + if msgType > 0 { + out = append(out, msgType) + } + + v := reflect.ValueOf(msg) + for i, n := 0, v.NumField(); i < n; i++ { + field := v.Field(i) + switch t := field.Type(); t.Kind() { + case reflect.Bool: + var v uint8 + if field.Bool() { + v = 1 + } + out = append(out, v) + case reflect.Array: + if t.Elem().Kind() != reflect.Uint8 { + panic("array of non-uint8") + } + for j, l := 0, t.Len(); j < l; j++ { + out = append(out, uint8(field.Index(j).Uint())) + } + case reflect.Uint32: + out = appendU32(out, uint32(field.Uint())) + case reflect.String: + s := field.String() + out = appendInt(out, len(s)) + out = append(out, s...) + case reflect.Slice: + switch t.Elem().Kind() { + case reflect.Uint8: + if v.Type().Field(i).Tag.Get("ssh") != "rest" { + out = appendInt(out, field.Len()) + } + out = append(out, field.Bytes()...) + case reflect.String: + offset := len(out) + out = appendU32(out, 0) + if n := field.Len(); n > 0 { + for j := 0; j < n; j++ { + f := field.Index(j) + if j != 0 { + out = append(out, ',') + } + out = append(out, f.String()...) + } + // overwrite length value + binary.BigEndian.PutUint32(out[offset:], uint32(len(out)-offset-4)) + } + default: + panic("slice of unknown type") + } + case reflect.Ptr: + if t == bigIntType { + var n *big.Int + nValue := reflect.ValueOf(&n) + nValue.Elem().Set(field) + needed := intLength(n) + oldLength := len(out) + + if cap(out)-len(out) < needed { + newOut := make([]byte, len(out), 2*(len(out)+needed)) + copy(newOut, out) + out = newOut + } + out = out[:oldLength+needed] + marshalInt(out[oldLength:], n) + } else { + panic("pointer to unknown type") + } + } + } + + return out +} + +var bigOne = big.NewInt(1) + +func parseString(in []byte) (out, rest []byte, ok bool) { + if len(in) < 4 { + return + } + length := binary.BigEndian.Uint32(in) + if uint32(len(in)) < 4+length { + return + } + out = in[4 : 4+length] + rest = in[4+length:] + ok = true + return +} + +var ( + comma = []byte{','} + emptyNameList = []string{} +) + +func parseNameList(in []byte) (out []string, rest []byte, ok bool) { + contents, rest, ok := parseString(in) + if !ok { + return + } + if len(contents) == 0 { + out = emptyNameList + return + } + parts := bytes.Split(contents, comma) + out = make([]string, len(parts)) + for i, part := range parts { + out[i] = string(part) + } + return +} + +func parseInt(in []byte) (out *big.Int, rest []byte, ok bool) { + contents, rest, ok := parseString(in) + if !ok { + return + } + out = new(big.Int) + + if len(contents) > 0 && contents[0]&0x80 == 0x80 { + // This is a negative number + notBytes := make([]byte, len(contents)) + for i := range notBytes { + notBytes[i] = ^contents[i] + } + out.SetBytes(notBytes) + out.Add(out, bigOne) + out.Neg(out) + } else { + // Positive number + out.SetBytes(contents) + } + ok = true + return +} + +func parseUint32(in []byte) (uint32, []byte, bool) { + if len(in) < 4 { + return 0, nil, false + } + return binary.BigEndian.Uint32(in), in[4:], true +} + +func parseUint64(in []byte) (uint64, []byte, bool) { + if len(in) < 8 { + return 0, nil, false + } + return binary.BigEndian.Uint64(in), in[8:], true +} + +func nameListLength(namelist []string) int { + length := 4 /* uint32 length prefix */ + for i, name := range namelist { + if i != 0 { + length++ /* comma */ + } + length += len(name) + } + return length +} + +func intLength(n *big.Int) int { + length := 4 /* length bytes */ + if n.Sign() < 0 { + nMinus1 := new(big.Int).Neg(n) + nMinus1.Sub(nMinus1, bigOne) + bitLen := nMinus1.BitLen() + if bitLen%8 == 0 { + // The number will need 0xff padding + length++ + } + length += (bitLen + 7) / 8 + } else if n.Sign() == 0 { + // A zero is the zero length string + } else { + bitLen := n.BitLen() + if bitLen%8 == 0 { + // The number will need 0x00 padding + length++ + } + length += (bitLen + 7) / 8 + } + + return length +} + +func marshalUint32(to []byte, n uint32) []byte { + binary.BigEndian.PutUint32(to, n) + return to[4:] +} + +func marshalUint64(to []byte, n uint64) []byte { + binary.BigEndian.PutUint64(to, n) + return to[8:] +} + +func marshalInt(to []byte, n *big.Int) []byte { + lengthBytes := to + to = to[4:] + length := 0 + + if n.Sign() < 0 { + // A negative number has to be converted to two's-complement + // form. So we'll subtract 1 and invert. If the + // most-significant-bit isn't set then we'll need to pad the + // beginning with 0xff in order to keep the number negative. + nMinus1 := new(big.Int).Neg(n) + nMinus1.Sub(nMinus1, bigOne) + bytes := nMinus1.Bytes() + for i := range bytes { + bytes[i] ^= 0xff + } + if len(bytes) == 0 || bytes[0]&0x80 == 0 { + to[0] = 0xff + to = to[1:] + length++ + } + nBytes := copy(to, bytes) + to = to[nBytes:] + length += nBytes + } else if n.Sign() == 0 { + // A zero is the zero length string + } else { + bytes := n.Bytes() + if len(bytes) > 0 && bytes[0]&0x80 != 0 { + // We'll have to pad this with a 0x00 in order to + // stop it looking like a negative number. + to[0] = 0 + to = to[1:] + length++ + } + nBytes := copy(to, bytes) + to = to[nBytes:] + length += nBytes + } + + lengthBytes[0] = byte(length >> 24) + lengthBytes[1] = byte(length >> 16) + lengthBytes[2] = byte(length >> 8) + lengthBytes[3] = byte(length) + return to +} + +func writeInt(w io.Writer, n *big.Int) { + length := intLength(n) + buf := make([]byte, length) + marshalInt(buf, n) + w.Write(buf) +} + +func writeString(w io.Writer, s []byte) { + var lengthBytes [4]byte + lengthBytes[0] = byte(len(s) >> 24) + lengthBytes[1] = byte(len(s) >> 16) + lengthBytes[2] = byte(len(s) >> 8) + lengthBytes[3] = byte(len(s)) + w.Write(lengthBytes[:]) + w.Write(s) +} + +func stringLength(n int) int { + return 4 + n +} + +func marshalString(to []byte, s []byte) []byte { + to[0] = byte(len(s) >> 24) + to[1] = byte(len(s) >> 16) + to[2] = byte(len(s) >> 8) + to[3] = byte(len(s)) + to = to[4:] + copy(to, s) + return to[len(s):] +} + +var bigIntType = reflect.TypeOf((*big.Int)(nil)) + +// Decode a packet into its corresponding message. +func decode(packet []byte) (interface{}, error) { + var msg interface{} + switch packet[0] { + case msgDisconnect: + msg = new(disconnectMsg) + case msgServiceRequest: + msg = new(serviceRequestMsg) + case msgServiceAccept: + msg = new(serviceAcceptMsg) + case msgKexInit: + msg = new(kexInitMsg) + case msgKexDHInit: + msg = new(kexDHInitMsg) + case msgKexDHReply: + msg = new(kexDHReplyMsg) + case msgUserAuthRequest: + msg = new(userAuthRequestMsg) + case msgUserAuthFailure: + msg = new(userAuthFailureMsg) + case msgUserAuthPubKeyOk: + msg = new(userAuthPubKeyOkMsg) + case msgGlobalRequest: + msg = new(globalRequestMsg) + case msgRequestSuccess: + msg = new(globalRequestSuccessMsg) + case msgRequestFailure: + msg = new(globalRequestFailureMsg) + case msgChannelOpen: + msg = new(channelOpenMsg) + case msgChannelOpenConfirm: + msg = new(channelOpenConfirmMsg) + case msgChannelOpenFailure: + msg = new(channelOpenFailureMsg) + case msgChannelWindowAdjust: + msg = new(windowAdjustMsg) + case msgChannelEOF: + msg = new(channelEOFMsg) + case msgChannelClose: + msg = new(channelCloseMsg) + case msgChannelRequest: + msg = new(channelRequestMsg) + case msgChannelSuccess: + msg = new(channelRequestSuccessMsg) + case msgChannelFailure: + msg = new(channelRequestFailureMsg) + default: + return nil, UnexpectedMessageError{0, packet[0]} + } + if err := unmarshal(msg, packet, packet[0]); err != nil { + return nil, err + } + return msg, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/messages_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/messages_test.go new file mode 100644 index 00000000..ec1d7be6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/messages_test.go @@ -0,0 +1,232 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "math/big" + "math/rand" + "reflect" + "testing" + "testing/quick" +) + +var intLengthTests = []struct { + val, length int +}{ + {0, 4 + 0}, + {1, 4 + 1}, + {127, 4 + 1}, + {128, 4 + 2}, + {-1, 4 + 1}, +} + +func TestIntLength(t *testing.T) { + for _, test := range intLengthTests { + v := new(big.Int).SetInt64(int64(test.val)) + length := intLength(v) + if length != test.length { + t.Errorf("For %d, got length %d but expected %d", test.val, length, test.length) + } + } +} + +var messageTypes = []interface{}{ + &kexInitMsg{}, + &kexDHInitMsg{}, + &serviceRequestMsg{}, + &serviceAcceptMsg{}, + &userAuthRequestMsg{}, + &channelOpenMsg{}, + &channelOpenConfirmMsg{}, + &channelOpenFailureMsg{}, + &channelRequestMsg{}, + &channelRequestSuccessMsg{}, +} + +func TestMarshalUnmarshal(t *testing.T) { + rand := rand.New(rand.NewSource(0)) + for i, iface := range messageTypes { + ty := reflect.ValueOf(iface).Type() + + n := 100 + if testing.Short() { + n = 5 + } + for j := 0; j < n; j++ { + v, ok := quick.Value(ty, rand) + if !ok { + t.Errorf("#%d: failed to create value", i) + break + } + + m1 := v.Elem().Interface() + m2 := iface + + marshaled := marshal(msgIgnore, m1) + if err := unmarshal(m2, marshaled, msgIgnore); err != nil { + t.Errorf("#%d failed to unmarshal %#v: %s", i, m1, err) + break + } + + if !reflect.DeepEqual(v.Interface(), m2) { + t.Errorf("#%d\ngot: %#v\nwant:%#v\n%x", i, m2, m1, marshaled) + break + } + } + } +} + +func TestUnmarshalEmptyPacket(t *testing.T) { + var b []byte + var m channelRequestSuccessMsg + err := unmarshal(&m, b, msgChannelRequest) + want := ParseError{msgChannelRequest} + if _, ok := err.(ParseError); !ok { + t.Fatalf("got %T, want %T", err, want) + } + if got := err.(ParseError); want != got { + t.Fatal("got %#v, want %#v", got, want) + } +} + +func TestUnmarshalUnexpectedPacket(t *testing.T) { + type S struct { + I uint32 + S string + B bool + } + + s := S{42, "hello", true} + packet := marshal(42, s) + roundtrip := S{} + err := unmarshal(&roundtrip, packet, 43) + if err == nil { + t.Fatal("expected error, not nil") + } + want := UnexpectedMessageError{43, 42} + if got, ok := err.(UnexpectedMessageError); !ok || want != got { + t.Fatal("expected %q, got %q", want, got) + } +} + +func TestBareMarshalUnmarshal(t *testing.T) { + type S struct { + I uint32 + S string + B bool + } + + s := S{42, "hello", true} + packet := marshal(0, s) + roundtrip := S{} + unmarshal(&roundtrip, packet, 0) + + if !reflect.DeepEqual(s, roundtrip) { + t.Errorf("got %#v, want %#v", roundtrip, s) + } +} + +func TestBareMarshal(t *testing.T) { + type S2 struct { + I uint32 + } + s := S2{42} + packet := marshal(0, s) + i, rest, ok := parseUint32(packet) + if len(rest) > 0 || !ok { + t.Errorf("parseInt(%q): parse error", packet) + } + if i != s.I { + t.Errorf("got %d, want %d", i, s.I) + } +} + +func randomBytes(out []byte, rand *rand.Rand) { + for i := 0; i < len(out); i++ { + out[i] = byte(rand.Int31()) + } +} + +func randomNameList(rand *rand.Rand) []string { + ret := make([]string, rand.Int31()&15) + for i := range ret { + s := make([]byte, 1+(rand.Int31()&15)) + for j := range s { + s[j] = 'a' + uint8(rand.Int31()&15) + } + ret[i] = string(s) + } + return ret +} + +func randomInt(rand *rand.Rand) *big.Int { + return new(big.Int).SetInt64(int64(int32(rand.Uint32()))) +} + +func (*kexInitMsg) Generate(rand *rand.Rand, size int) reflect.Value { + ki := &kexInitMsg{} + randomBytes(ki.Cookie[:], rand) + ki.KexAlgos = randomNameList(rand) + ki.ServerHostKeyAlgos = randomNameList(rand) + ki.CiphersClientServer = randomNameList(rand) + ki.CiphersServerClient = randomNameList(rand) + ki.MACsClientServer = randomNameList(rand) + ki.MACsServerClient = randomNameList(rand) + ki.CompressionClientServer = randomNameList(rand) + ki.CompressionServerClient = randomNameList(rand) + ki.LanguagesClientServer = randomNameList(rand) + ki.LanguagesServerClient = randomNameList(rand) + if rand.Int31()&1 == 1 { + ki.FirstKexFollows = true + } + return reflect.ValueOf(ki) +} + +func (*kexDHInitMsg) Generate(rand *rand.Rand, size int) reflect.Value { + dhi := &kexDHInitMsg{} + dhi.X = randomInt(rand) + return reflect.ValueOf(dhi) +} + +// TODO(dfc) maybe this can be removed in the future if testing/quick can handle +// derived basic types. +func (RejectionReason) Generate(rand *rand.Rand, size int) reflect.Value { + m := RejectionReason(Prohibited) + return reflect.ValueOf(m) +} + +var ( + _kexInitMsg = new(kexInitMsg).Generate(rand.New(rand.NewSource(0)), 10).Elem().Interface() + _kexDHInitMsg = new(kexDHInitMsg).Generate(rand.New(rand.NewSource(0)), 10).Elem().Interface() + + _kexInit = marshal(msgKexInit, _kexInitMsg) + _kexDHInit = marshal(msgKexDHInit, _kexDHInitMsg) +) + +func BenchmarkMarshalKexInitMsg(b *testing.B) { + for i := 0; i < b.N; i++ { + marshal(msgKexInit, _kexInitMsg) + } +} + +func BenchmarkUnmarshalKexInitMsg(b *testing.B) { + m := new(kexInitMsg) + for i := 0; i < b.N; i++ { + unmarshal(m, _kexInit, msgKexInit) + } +} + +func BenchmarkMarshalKexDHInitMsg(b *testing.B) { + for i := 0; i < b.N; i++ { + marshal(msgKexDHInit, _kexDHInitMsg) + } +} + +func BenchmarkUnmarshalKexDHInitMsg(b *testing.B) { + m := new(kexDHInitMsg) + for i := 0; i < b.N; i++ { + unmarshal(m, _kexDHInit, msgKexDHInit) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/server.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/server.go new file mode 100644 index 00000000..b4defbef --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/server.go @@ -0,0 +1,692 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "crypto/rand" + "encoding/binary" + "errors" + "fmt" + "io" + "net" + "sync" + + _ "crypto/sha1" +) + +type ServerConfig struct { + hostKeys []Signer + + // Rand provides the source of entropy for key exchange. If Rand is + // nil, the cryptographic random reader in package crypto/rand will + // be used. + Rand io.Reader + + // NoClientAuth is true if clients are allowed to connect without + // authenticating. + NoClientAuth bool + + // PasswordCallback, if non-nil, is called when a user attempts to + // authenticate using a password. It may be called concurrently from + // several goroutines. + PasswordCallback func(conn *ServerConn, user, password string) bool + + // PublicKeyCallback, if non-nil, is called when a client attempts public + // key authentication. It must return true if the given public key is + // valid for the given user. + PublicKeyCallback func(conn *ServerConn, user, algo string, pubkey []byte) bool + + // KeyboardInteractiveCallback, if non-nil, is called when + // keyboard-interactive authentication is selected (RFC + // 4256). The client object's Challenge function should be + // used to query the user. The callback may offer multiple + // Challenge rounds. To avoid information leaks, the client + // should be presented a challenge even if the user is + // unknown. + KeyboardInteractiveCallback func(conn *ServerConn, user string, client ClientKeyboardInteractive) bool + + // Cryptographic-related configuration. + Crypto CryptoConfig +} + +func (c *ServerConfig) rand() io.Reader { + if c.Rand == nil { + return rand.Reader + } + return c.Rand +} + +// AddHostKey adds a private key as a host key. If an existing host +// key exists with the same algorithm, it is overwritten. +func (s *ServerConfig) AddHostKey(key Signer) { + for i, k := range s.hostKeys { + if k.PublicKey().PublicKeyAlgo() == key.PublicKey().PublicKeyAlgo() { + s.hostKeys[i] = key + return + } + } + + s.hostKeys = append(s.hostKeys, key) +} + +// SetRSAPrivateKey sets the private key for a Server. A Server must have a +// private key configured in order to accept connections. The private key must +// be in the form of a PEM encoded, PKCS#1, RSA private key. The file "id_rsa" +// typically contains such a key. +func (s *ServerConfig) SetRSAPrivateKey(pemBytes []byte) error { + priv, err := ParsePrivateKey(pemBytes) + if err != nil { + return err + } + s.AddHostKey(priv) + return nil +} + +// cachedPubKey contains the results of querying whether a public key is +// acceptable for a user. The cache only applies to a single ServerConn. +type cachedPubKey struct { + user, algo string + pubKey []byte + result bool +} + +const maxCachedPubKeys = 16 + +// A ServerConn represents an incoming connection. +type ServerConn struct { + transport *transport + config *ServerConfig + + channels map[uint32]*serverChan + nextChanId uint32 + + // lock protects err and channels. + lock sync.Mutex + err error + + // cachedPubKeys contains the cache results of tests for public keys. + // Since SSH clients will query whether a public key is acceptable + // before attempting to authenticate with it, we end up with duplicate + // queries for public key validity. + cachedPubKeys []cachedPubKey + + // User holds the successfully authenticated user name. + // It is empty if no authentication is used. It is populated before + // any authentication callback is called and not assigned to after that. + User string + + // ClientVersion is the client's version, populated after + // Handshake is called. It should not be modified. + ClientVersion []byte + + // Our version. + serverVersion []byte +} + +// Server returns a new SSH server connection +// using c as the underlying transport. +func Server(c net.Conn, config *ServerConfig) *ServerConn { + return &ServerConn{ + transport: newTransport(c, config.rand(), false /* not client */), + channels: make(map[uint32]*serverChan), + config: config, + } +} + +// signAndMarshal signs the data with the appropriate algorithm, +// and serializes the result in SSH wire format. +func signAndMarshal(k Signer, rand io.Reader, data []byte) ([]byte, error) { + sig, err := k.Sign(rand, data) + if err != nil { + return nil, err + } + + return serializeSignature(k.PublicKey().PrivateKeyAlgo(), sig), nil +} + +// Close closes the connection. +func (s *ServerConn) Close() error { return s.transport.Close() } + +// LocalAddr returns the local network address. +func (c *ServerConn) LocalAddr() net.Addr { return c.transport.LocalAddr() } + +// RemoteAddr returns the remote network address. +func (c *ServerConn) RemoteAddr() net.Addr { return c.transport.RemoteAddr() } + +// Handshake performs an SSH transport and client authentication on the given ServerConn. +func (s *ServerConn) Handshake() error { + var err error + s.serverVersion = []byte(packageVersion) + s.ClientVersion, err = exchangeVersions(s.transport.Conn, s.serverVersion) + if err != nil { + return err + } + if err := s.clientInitHandshake(nil, nil); err != nil { + return err + } + + var packet []byte + if packet, err = s.transport.readPacket(); err != nil { + return err + } + var serviceRequest serviceRequestMsg + if err := unmarshal(&serviceRequest, packet, msgServiceRequest); err != nil { + return err + } + if serviceRequest.Service != serviceUserAuth { + return errors.New("ssh: requested service '" + serviceRequest.Service + "' before authenticating") + } + serviceAccept := serviceAcceptMsg{ + Service: serviceUserAuth, + } + if err := s.transport.writePacket(marshal(msgServiceAccept, serviceAccept)); err != nil { + return err + } + + if err := s.authenticate(); err != nil { + return err + } + return err +} + +func (s *ServerConn) clientInitHandshake(clientKexInit *kexInitMsg, clientKexInitPacket []byte) (err error) { + serverKexInit := kexInitMsg{ + KexAlgos: s.config.Crypto.kexes(), + CiphersClientServer: s.config.Crypto.ciphers(), + CiphersServerClient: s.config.Crypto.ciphers(), + MACsClientServer: s.config.Crypto.macs(), + MACsServerClient: s.config.Crypto.macs(), + CompressionClientServer: supportedCompressions, + CompressionServerClient: supportedCompressions, + } + for _, k := range s.config.hostKeys { + serverKexInit.ServerHostKeyAlgos = append( + serverKexInit.ServerHostKeyAlgos, k.PublicKey().PublicKeyAlgo()) + } + + serverKexInitPacket := marshal(msgKexInit, serverKexInit) + if err = s.transport.writePacket(serverKexInitPacket); err != nil { + return + } + + if clientKexInitPacket == nil { + clientKexInit = new(kexInitMsg) + if clientKexInitPacket, err = s.transport.readPacket(); err != nil { + return + } + if err = unmarshal(clientKexInit, clientKexInitPacket, msgKexInit); err != nil { + return + } + } + + algs := findAgreedAlgorithms(clientKexInit, &serverKexInit) + if algs == nil { + return errors.New("ssh: no common algorithms") + } + + if clientKexInit.FirstKexFollows && algs.kex != clientKexInit.KexAlgos[0] { + // The client sent a Kex message for the wrong algorithm, + // which we have to ignore. + if _, err = s.transport.readPacket(); err != nil { + return + } + } + + var hostKey Signer + for _, k := range s.config.hostKeys { + if algs.hostKey == k.PublicKey().PublicKeyAlgo() { + hostKey = k + } + } + + kex, ok := kexAlgoMap[algs.kex] + if !ok { + return fmt.Errorf("ssh: unexpected key exchange algorithm %v", algs.kex) + } + + magics := handshakeMagics{ + serverVersion: s.serverVersion, + clientVersion: s.ClientVersion, + serverKexInit: marshal(msgKexInit, serverKexInit), + clientKexInit: clientKexInitPacket, + } + result, err := kex.Server(s.transport, s.config.rand(), &magics, hostKey) + if err != nil { + return err + } + + if err = s.transport.prepareKeyChange(algs, result); err != nil { + return err + } + + if err = s.transport.writePacket([]byte{msgNewKeys}); err != nil { + return + } + if packet, err := s.transport.readPacket(); err != nil { + return err + } else if packet[0] != msgNewKeys { + return UnexpectedMessageError{msgNewKeys, packet[0]} + } + + return +} + +func isAcceptableAlgo(algo string) bool { + switch algo { + case KeyAlgoRSA, KeyAlgoDSA, KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, + CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01: + return true + } + return false +} + +// testPubKey returns true if the given public key is acceptable for the user. +func (s *ServerConn) testPubKey(user, algo string, pubKey []byte) bool { + if s.config.PublicKeyCallback == nil || !isAcceptableAlgo(algo) { + return false + } + + for _, c := range s.cachedPubKeys { + if c.user == user && c.algo == algo && bytes.Equal(c.pubKey, pubKey) { + return c.result + } + } + + result := s.config.PublicKeyCallback(s, user, algo, pubKey) + if len(s.cachedPubKeys) < maxCachedPubKeys { + c := cachedPubKey{ + user: user, + algo: algo, + pubKey: make([]byte, len(pubKey)), + result: result, + } + copy(c.pubKey, pubKey) + s.cachedPubKeys = append(s.cachedPubKeys, c) + } + + return result +} + +func (s *ServerConn) authenticate() error { + var userAuthReq userAuthRequestMsg + var err error + var packet []byte + +userAuthLoop: + for { + if packet, err = s.transport.readPacket(); err != nil { + return err + } + if err = unmarshal(&userAuthReq, packet, msgUserAuthRequest); err != nil { + return err + } + + if userAuthReq.Service != serviceSSH { + return errors.New("ssh: client attempted to negotiate for unknown service: " + userAuthReq.Service) + } + + switch userAuthReq.Method { + case "none": + if s.config.NoClientAuth { + break userAuthLoop + } + case "password": + if s.config.PasswordCallback == nil { + break + } + payload := userAuthReq.Payload + if len(payload) < 1 || payload[0] != 0 { + return ParseError{msgUserAuthRequest} + } + payload = payload[1:] + password, payload, ok := parseString(payload) + if !ok || len(payload) > 0 { + return ParseError{msgUserAuthRequest} + } + + s.User = userAuthReq.User + if s.config.PasswordCallback(s, userAuthReq.User, string(password)) { + break userAuthLoop + } + case "keyboard-interactive": + if s.config.KeyboardInteractiveCallback == nil { + break + } + + s.User = userAuthReq.User + if s.config.KeyboardInteractiveCallback(s, s.User, &sshClientKeyboardInteractive{s}) { + break userAuthLoop + } + case "publickey": + if s.config.PublicKeyCallback == nil { + break + } + payload := userAuthReq.Payload + if len(payload) < 1 { + return ParseError{msgUserAuthRequest} + } + isQuery := payload[0] == 0 + payload = payload[1:] + algoBytes, payload, ok := parseString(payload) + if !ok { + return ParseError{msgUserAuthRequest} + } + algo := string(algoBytes) + + pubKey, payload, ok := parseString(payload) + if !ok { + return ParseError{msgUserAuthRequest} + } + if isQuery { + // The client can query if the given public key + // would be okay. + if len(payload) > 0 { + return ParseError{msgUserAuthRequest} + } + if s.testPubKey(userAuthReq.User, algo, pubKey) { + okMsg := userAuthPubKeyOkMsg{ + Algo: algo, + PubKey: string(pubKey), + } + if err = s.transport.writePacket(marshal(msgUserAuthPubKeyOk, okMsg)); err != nil { + return err + } + continue userAuthLoop + } + } else { + sig, payload, ok := parseSignature(payload) + if !ok || len(payload) > 0 { + return ParseError{msgUserAuthRequest} + } + // Ensure the public key algo and signature algo + // are supported. Compare the private key + // algorithm name that corresponds to algo with + // sig.Format. This is usually the same, but + // for certs, the names differ. + if !isAcceptableAlgo(algo) || !isAcceptableAlgo(sig.Format) || pubAlgoToPrivAlgo(algo) != sig.Format { + break + } + signedData := buildDataSignedForAuth(s.transport.sessionID, userAuthReq, algoBytes, pubKey) + key, _, ok := ParsePublicKey(pubKey) + if !ok { + return ParseError{msgUserAuthRequest} + } + + if !key.Verify(signedData, sig.Blob) { + return ParseError{msgUserAuthRequest} + } + // TODO(jmpittman): Implement full validation for certificates. + s.User = userAuthReq.User + if s.testPubKey(userAuthReq.User, algo, pubKey) { + break userAuthLoop + } + } + } + + var failureMsg userAuthFailureMsg + if s.config.PasswordCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "password") + } + if s.config.PublicKeyCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "publickey") + } + if s.config.KeyboardInteractiveCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "keyboard-interactive") + } + + if len(failureMsg.Methods) == 0 { + return errors.New("ssh: no authentication methods configured but NoClientAuth is also false") + } + + if err = s.transport.writePacket(marshal(msgUserAuthFailure, failureMsg)); err != nil { + return err + } + } + + packet = []byte{msgUserAuthSuccess} + if err = s.transport.writePacket(packet); err != nil { + return err + } + + return nil +} + +// sshClientKeyboardInteractive implements a ClientKeyboardInteractive by +// asking the client on the other side of a ServerConn. +type sshClientKeyboardInteractive struct { + *ServerConn +} + +func (c *sshClientKeyboardInteractive) Challenge(user, instruction string, questions []string, echos []bool) (answers []string, err error) { + if len(questions) != len(echos) { + return nil, errors.New("ssh: echos and questions must have equal length") + } + + var prompts []byte + for i := range questions { + prompts = appendString(prompts, questions[i]) + prompts = appendBool(prompts, echos[i]) + } + + if err := c.transport.writePacket(marshal(msgUserAuthInfoRequest, userAuthInfoRequestMsg{ + Instruction: instruction, + NumPrompts: uint32(len(questions)), + Prompts: prompts, + })); err != nil { + return nil, err + } + + packet, err := c.transport.readPacket() + if err != nil { + return nil, err + } + if packet[0] != msgUserAuthInfoResponse { + return nil, UnexpectedMessageError{msgUserAuthInfoResponse, packet[0]} + } + packet = packet[1:] + + n, packet, ok := parseUint32(packet) + if !ok || int(n) != len(questions) { + return nil, &ParseError{msgUserAuthInfoResponse} + } + + for i := uint32(0); i < n; i++ { + ans, rest, ok := parseString(packet) + if !ok { + return nil, &ParseError{msgUserAuthInfoResponse} + } + + answers = append(answers, string(ans)) + packet = rest + } + if len(packet) != 0 { + return nil, errors.New("ssh: junk at end of message") + } + + return answers, nil +} + +const defaultWindowSize = 32768 + +// Accept reads and processes messages on a ServerConn. It must be called +// in order to demultiplex messages to any resulting Channels. +func (s *ServerConn) Accept() (Channel, error) { + // TODO(dfc) s.lock is not held here so visibility of s.err is not guaranteed. + if s.err != nil { + return nil, s.err + } + + for { + packet, err := s.transport.readPacket() + if err != nil { + + s.lock.Lock() + s.err = err + s.lock.Unlock() + + // TODO(dfc) s.lock protects s.channels but isn't being held here. + for _, c := range s.channels { + c.setDead() + c.handleData(nil) + } + + return nil, err + } + + switch packet[0] { + case msgChannelData: + if len(packet) < 9 { + // malformed data packet + return nil, ParseError{msgChannelData} + } + remoteId := binary.BigEndian.Uint32(packet[1:5]) + s.lock.Lock() + c, ok := s.channels[remoteId] + if !ok { + s.lock.Unlock() + continue + } + if length := binary.BigEndian.Uint32(packet[5:9]); length > 0 { + packet = packet[9:] + c.handleData(packet[:length]) + } + s.lock.Unlock() + default: + decoded, err := decode(packet) + if err != nil { + return nil, err + } + switch msg := decoded.(type) { + case *channelOpenMsg: + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + return nil, errors.New("ssh: invalid MaxPacketSize from peer") + } + c := &serverChan{ + channel: channel{ + packetConn: s.transport, + remoteId: msg.PeersId, + remoteWin: window{Cond: newCond()}, + maxPacket: msg.MaxPacketSize, + }, + chanType: msg.ChanType, + extraData: msg.TypeSpecificData, + myWindow: defaultWindowSize, + serverConn: s, + cond: newCond(), + pendingData: make([]byte, defaultWindowSize), + } + c.remoteWin.add(msg.PeersWindow) + s.lock.Lock() + c.localId = s.nextChanId + s.nextChanId++ + s.channels[c.localId] = c + s.lock.Unlock() + return c, nil + + case *channelRequestMsg: + s.lock.Lock() + c, ok := s.channels[msg.PeersId] + if !ok { + s.lock.Unlock() + continue + } + c.handlePacket(msg) + s.lock.Unlock() + + case *windowAdjustMsg: + s.lock.Lock() + c, ok := s.channels[msg.PeersId] + if !ok { + s.lock.Unlock() + continue + } + c.handlePacket(msg) + s.lock.Unlock() + + case *channelEOFMsg: + s.lock.Lock() + c, ok := s.channels[msg.PeersId] + if !ok { + s.lock.Unlock() + continue + } + c.handlePacket(msg) + s.lock.Unlock() + + case *channelCloseMsg: + s.lock.Lock() + c, ok := s.channels[msg.PeersId] + if !ok { + s.lock.Unlock() + continue + } + c.handlePacket(msg) + s.lock.Unlock() + + case *globalRequestMsg: + if msg.WantReply { + if err := s.transport.writePacket([]byte{msgRequestFailure}); err != nil { + return nil, err + } + } + + case *kexInitMsg: + s.lock.Lock() + if err := s.clientInitHandshake(msg, packet); err != nil { + s.lock.Unlock() + return nil, err + } + s.lock.Unlock() + case *disconnectMsg: + return nil, io.EOF + default: + // Unknown message. Ignore. + } + } + } + + panic("unreachable") +} + +// A Listener implements a network listener (net.Listener) for SSH connections. +type Listener struct { + listener net.Listener + config *ServerConfig +} + +// Addr returns the listener's network address. +func (l *Listener) Addr() net.Addr { + return l.listener.Addr() +} + +// Close closes the listener. +func (l *Listener) Close() error { + return l.listener.Close() +} + +// Accept waits for and returns the next incoming SSH connection. +// The receiver should call Handshake() in another goroutine +// to avoid blocking the accepter. +func (l *Listener) Accept() (*ServerConn, error) { + c, err := l.listener.Accept() + if err != nil { + return nil, err + } + return Server(c, l.config), nil +} + +// Listen creates an SSH listener accepting connections on +// the given network address using net.Listen. +func Listen(network, addr string, config *ServerConfig) (*Listener, error) { + l, err := net.Listen(network, addr) + if err != nil { + return nil, err + } + return &Listener{ + l, + config, + }, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/server_terminal.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/server_terminal.go new file mode 100644 index 00000000..708a9159 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/server_terminal.go @@ -0,0 +1,81 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// A Terminal is capable of parsing and generating virtual terminal +// data from an SSH client. +type Terminal interface { + ReadLine() (line string, err error) + SetSize(x, y int) + Write([]byte) (int, error) +} + +// ServerTerminal contains the state for running a terminal that is capable of +// reading lines of input. +type ServerTerminal struct { + Term Terminal + Channel Channel +} + +// parsePtyRequest parses the payload of the pty-req message and extracts the +// dimensions of the terminal. See RFC 4254, section 6.2. +func parsePtyRequest(s []byte) (width, height int, ok bool) { + _, s, ok = parseString(s) + if !ok { + return + } + width32, s, ok := parseUint32(s) + if !ok { + return + } + height32, _, ok := parseUint32(s) + width = int(width32) + height = int(height32) + if width < 1 { + ok = false + } + if height < 1 { + ok = false + } + return +} + +func (ss *ServerTerminal) Write(buf []byte) (n int, err error) { + return ss.Term.Write(buf) +} + +// ReadLine returns a line of input from the terminal. +func (ss *ServerTerminal) ReadLine() (line string, err error) { + for { + if line, err = ss.Term.ReadLine(); err == nil { + return + } + + req, ok := err.(ChannelRequest) + if !ok { + return + } + + ok = false + switch req.Request { + case "pty-req": + var width, height int + width, height, ok = parsePtyRequest(req.Payload) + ss.Term.SetSize(width, height) + case "shell": + ok = true + if len(req.Payload) > 0 { + // We don't accept any commands, only the default shell. + ok = false + } + case "env": + ok = true + } + if req.WantReply { + ss.Channel.AckRequest(ok) + } + } + panic("unreachable") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/session.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/session.go new file mode 100644 index 00000000..39f2d223 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/session.go @@ -0,0 +1,626 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Session implements an interactive session described in +// "RFC 4254, section 6". + +import ( + "bytes" + "errors" + "fmt" + "io" + "io/ioutil" + "sync" +) + +type Signal string + +// POSIX signals as listed in RFC 4254 Section 6.10. +const ( + SIGABRT Signal = "ABRT" + SIGALRM Signal = "ALRM" + SIGFPE Signal = "FPE" + SIGHUP Signal = "HUP" + SIGILL Signal = "ILL" + SIGINT Signal = "INT" + SIGKILL Signal = "KILL" + SIGPIPE Signal = "PIPE" + SIGQUIT Signal = "QUIT" + SIGSEGV Signal = "SEGV" + SIGTERM Signal = "TERM" + SIGUSR1 Signal = "USR1" + SIGUSR2 Signal = "USR2" +) + +var signals = map[Signal]int{ + SIGABRT: 6, + SIGALRM: 14, + SIGFPE: 8, + SIGHUP: 1, + SIGILL: 4, + SIGINT: 2, + SIGKILL: 9, + SIGPIPE: 13, + SIGQUIT: 3, + SIGSEGV: 11, + SIGTERM: 15, +} + +type TerminalModes map[uint8]uint32 + +// POSIX terminal mode flags as listed in RFC 4254 Section 8. +const ( + tty_OP_END = 0 + VINTR = 1 + VQUIT = 2 + VERASE = 3 + VKILL = 4 + VEOF = 5 + VEOL = 6 + VEOL2 = 7 + VSTART = 8 + VSTOP = 9 + VSUSP = 10 + VDSUSP = 11 + VREPRINT = 12 + VWERASE = 13 + VLNEXT = 14 + VFLUSH = 15 + VSWTCH = 16 + VSTATUS = 17 + VDISCARD = 18 + IGNPAR = 30 + PARMRK = 31 + INPCK = 32 + ISTRIP = 33 + INLCR = 34 + IGNCR = 35 + ICRNL = 36 + IUCLC = 37 + IXON = 38 + IXANY = 39 + IXOFF = 40 + IMAXBEL = 41 + ISIG = 50 + ICANON = 51 + XCASE = 52 + ECHO = 53 + ECHOE = 54 + ECHOK = 55 + ECHONL = 56 + NOFLSH = 57 + TOSTOP = 58 + IEXTEN = 59 + ECHOCTL = 60 + ECHOKE = 61 + PENDIN = 62 + OPOST = 70 + OLCUC = 71 + ONLCR = 72 + OCRNL = 73 + ONOCR = 74 + ONLRET = 75 + CS7 = 90 + CS8 = 91 + PARENB = 92 + PARODD = 93 + TTY_OP_ISPEED = 128 + TTY_OP_OSPEED = 129 +) + +// A Session represents a connection to a remote command or shell. +type Session struct { + // Stdin specifies the remote process's standard input. + // If Stdin is nil, the remote process reads from an empty + // bytes.Buffer. + Stdin io.Reader + + // Stdout and Stderr specify the remote process's standard + // output and error. + // + // If either is nil, Run connects the corresponding file + // descriptor to an instance of ioutil.Discard. There is a + // fixed amount of buffering that is shared for the two streams. + // If either blocks it may eventually cause the remote + // command to block. + Stdout io.Writer + Stderr io.Writer + + *clientChan // the channel backing this session + + started bool // true once Start, Run or Shell is invoked. + copyFuncs []func() error + errors chan error // one send per copyFunc + + // true if pipe method is active + stdinpipe, stdoutpipe, stderrpipe bool +} + +// RFC 4254 Section 6.4. +type setenvRequest struct { + PeersId uint32 + Request string + WantReply bool + Name string + Value string +} + +// RFC 4254 Section 6.5. +type subsystemRequestMsg struct { + PeersId uint32 + Request string + WantReply bool + Subsystem string +} + +// Setenv sets an environment variable that will be applied to any +// command executed by Shell or Run. +func (s *Session) Setenv(name, value string) error { + req := setenvRequest{ + PeersId: s.remoteId, + Request: "env", + WantReply: true, + Name: name, + Value: value, + } + if err := s.writePacket(marshal(msgChannelRequest, req)); err != nil { + return err + } + return s.waitForResponse() +} + +// RFC 4254 Section 6.2. +type ptyRequestMsg struct { + PeersId uint32 + Request string + WantReply bool + Term string + Columns uint32 + Rows uint32 + Width uint32 + Height uint32 + Modelist string +} + +// RequestPty requests the association of a pty with the session on the remote host. +func (s *Session) RequestPty(term string, h, w int, termmodes TerminalModes) error { + var tm []byte + for k, v := range termmodes { + tm = append(tm, k) + tm = appendU32(tm, v) + } + tm = append(tm, tty_OP_END) + req := ptyRequestMsg{ + PeersId: s.remoteId, + Request: "pty-req", + WantReply: true, + Term: term, + Columns: uint32(w), + Rows: uint32(h), + Width: uint32(w * 8), + Height: uint32(h * 8), + Modelist: string(tm), + } + if err := s.writePacket(marshal(msgChannelRequest, req)); err != nil { + return err + } + return s.waitForResponse() +} + +// RequestSubsystem requests the association of a subsystem with the session on the remote host. +// A subsystem is a predefined command that runs in the background when the ssh session is initiated +func (s *Session) RequestSubsystem(subsystem string) error { + req := subsystemRequestMsg{ + PeersId: s.remoteId, + Request: "subsystem", + WantReply: true, + Subsystem: subsystem, + } + if err := s.writePacket(marshal(msgChannelRequest, req)); err != nil { + return err + } + return s.waitForResponse() +} + +// RFC 4254 Section 6.9. +type signalMsg struct { + PeersId uint32 + Request string + WantReply bool + Signal string +} + +// Signal sends the given signal to the remote process. +// sig is one of the SIG* constants. +func (s *Session) Signal(sig Signal) error { + req := signalMsg{ + PeersId: s.remoteId, + Request: "signal", + WantReply: false, + Signal: string(sig), + } + return s.writePacket(marshal(msgChannelRequest, req)) +} + +// RFC 4254 Section 6.5. +type execMsg struct { + PeersId uint32 + Request string + WantReply bool + Command string +} + +// Start runs cmd on the remote host. Typically, the remote +// server passes cmd to the shell for interpretation. +// A Session only accepts one call to Run, Start or Shell. +func (s *Session) Start(cmd string) error { + if s.started { + return errors.New("ssh: session already started") + } + req := execMsg{ + PeersId: s.remoteId, + Request: "exec", + WantReply: true, + Command: cmd, + } + if err := s.writePacket(marshal(msgChannelRequest, req)); err != nil { + return err + } + if err := s.waitForResponse(); err != nil { + return fmt.Errorf("ssh: could not execute command %s: %v", cmd, err) + } + return s.start() +} + +// Run runs cmd on the remote host. Typically, the remote +// server passes cmd to the shell for interpretation. +// A Session only accepts one call to Run, Start, Shell, Output, +// or CombinedOutput. +// +// The returned error is nil if the command runs, has no problems +// copying stdin, stdout, and stderr, and exits with a zero exit +// status. +// +// If the command fails to run or doesn't complete successfully, the +// error is of type *ExitError. Other error types may be +// returned for I/O problems. +func (s *Session) Run(cmd string) error { + err := s.Start(cmd) + if err != nil { + return err + } + return s.Wait() +} + +// Output runs cmd on the remote host and returns its standard output. +func (s *Session) Output(cmd string) ([]byte, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + var b bytes.Buffer + s.Stdout = &b + err := s.Run(cmd) + return b.Bytes(), err +} + +type singleWriter struct { + b bytes.Buffer + mu sync.Mutex +} + +func (w *singleWriter) Write(p []byte) (int, error) { + w.mu.Lock() + defer w.mu.Unlock() + return w.b.Write(p) +} + +// CombinedOutput runs cmd on the remote host and returns its combined +// standard output and standard error. +func (s *Session) CombinedOutput(cmd string) ([]byte, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + if s.Stderr != nil { + return nil, errors.New("ssh: Stderr already set") + } + var b singleWriter + s.Stdout = &b + s.Stderr = &b + err := s.Run(cmd) + return b.b.Bytes(), err +} + +// Shell starts a login shell on the remote host. A Session only +// accepts one call to Run, Start, Shell, Output, or CombinedOutput. +func (s *Session) Shell() error { + if s.started { + return errors.New("ssh: session already started") + } + req := channelRequestMsg{ + PeersId: s.remoteId, + Request: "shell", + WantReply: true, + } + if err := s.writePacket(marshal(msgChannelRequest, req)); err != nil { + return err + } + if err := s.waitForResponse(); err != nil { + return fmt.Errorf("ssh: could not execute shell: %v", err) + } + return s.start() +} + +func (s *Session) waitForResponse() error { + msg := <-s.msg + switch msg.(type) { + case *channelRequestSuccessMsg: + return nil + case *channelRequestFailureMsg: + return errors.New("ssh: request failed") + } + return fmt.Errorf("ssh: unknown packet %T received: %v", msg, msg) +} + +func (s *Session) start() error { + s.started = true + + type F func(*Session) + for _, setupFd := range []F{(*Session).stdin, (*Session).stdout, (*Session).stderr} { + setupFd(s) + } + + s.errors = make(chan error, len(s.copyFuncs)) + for _, fn := range s.copyFuncs { + go func(fn func() error) { + s.errors <- fn() + }(fn) + } + return nil +} + +// Wait waits for the remote command to exit. +// +// The returned error is nil if the command runs, has no problems +// copying stdin, stdout, and stderr, and exits with a zero exit +// status. +// +// If the command fails to run or doesn't complete successfully, the +// error is of type *ExitError. Other error types may be +// returned for I/O problems. +func (s *Session) Wait() error { + if !s.started { + return errors.New("ssh: session not started") + } + waitErr := s.wait() + + var copyError error + for _ = range s.copyFuncs { + if err := <-s.errors; err != nil && copyError == nil { + copyError = err + } + } + if waitErr != nil { + return waitErr + } + return copyError +} + +func (s *Session) wait() error { + wm := Waitmsg{status: -1} + + // Wait for msg channel to be closed before returning. + for msg := range s.msg { + switch msg := msg.(type) { + case *channelRequestMsg: + switch msg.Request { + case "exit-status": + d := msg.RequestSpecificData + wm.status = int(d[0])<<24 | int(d[1])<<16 | int(d[2])<<8 | int(d[3]) + case "exit-signal": + signal, rest, ok := parseString(msg.RequestSpecificData) + if !ok { + return fmt.Errorf("wait: could not parse request data: %v", msg.RequestSpecificData) + } + wm.signal = safeString(string(signal)) + + // skip coreDumped bool + if len(rest) == 0 { + return fmt.Errorf("wait: could not parse request data: %v", msg.RequestSpecificData) + } + rest = rest[1:] + + errmsg, rest, ok := parseString(rest) + if !ok { + return fmt.Errorf("wait: could not parse request data: %v", msg.RequestSpecificData) + } + wm.msg = safeString(string(errmsg)) + + lang, _, ok := parseString(rest) + if !ok { + return fmt.Errorf("wait: could not parse request data: %v", msg.RequestSpecificData) + } + wm.lang = safeString(string(lang)) + default: + // This handles keepalives and matches + // OpenSSH's behaviour. + if msg.WantReply { + s.writePacket(marshal(msgChannelFailure, channelRequestFailureMsg{ + PeersId: s.remoteId, + })) + } + } + default: + return fmt.Errorf("wait: unexpected packet %T received: %v", msg, msg) + } + } + if wm.status == 0 { + return nil + } + if wm.status == -1 { + // exit-status was never sent from server + if wm.signal == "" { + return errors.New("wait: remote command exited without exit status or exit signal") + } + wm.status = 128 + if _, ok := signals[Signal(wm.signal)]; ok { + wm.status += signals[Signal(wm.signal)] + } + } + return &ExitError{wm} +} + +func (s *Session) stdin() { + if s.stdinpipe { + return + } + if s.Stdin == nil { + s.Stdin = new(bytes.Buffer) + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.clientChan.stdin, s.Stdin) + if err1 := s.clientChan.stdin.Close(); err == nil && err1 != io.EOF { + err = err1 + } + return err + }) +} + +func (s *Session) stdout() { + if s.stdoutpipe { + return + } + if s.Stdout == nil { + s.Stdout = ioutil.Discard + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.Stdout, s.clientChan.stdout) + return err + }) +} + +func (s *Session) stderr() { + if s.stderrpipe { + return + } + if s.Stderr == nil { + s.Stderr = ioutil.Discard + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.Stderr, s.clientChan.stderr) + return err + }) +} + +// StdinPipe returns a pipe that will be connected to the +// remote command's standard input when the command starts. +func (s *Session) StdinPipe() (io.WriteCloser, error) { + if s.Stdin != nil { + return nil, errors.New("ssh: Stdin already set") + } + if s.started { + return nil, errors.New("ssh: StdinPipe after process started") + } + s.stdinpipe = true + return s.clientChan.stdin, nil +} + +// StdoutPipe returns a pipe that will be connected to the +// remote command's standard output when the command starts. +// There is a fixed amount of buffering that is shared between +// stdout and stderr streams. If the StdoutPipe reader is +// not serviced fast enough it may eventually cause the +// remote command to block. +func (s *Session) StdoutPipe() (io.Reader, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + if s.started { + return nil, errors.New("ssh: StdoutPipe after process started") + } + s.stdoutpipe = true + return s.clientChan.stdout, nil +} + +// StderrPipe returns a pipe that will be connected to the +// remote command's standard error when the command starts. +// There is a fixed amount of buffering that is shared between +// stdout and stderr streams. If the StderrPipe reader is +// not serviced fast enough it may eventually cause the +// remote command to block. +func (s *Session) StderrPipe() (io.Reader, error) { + if s.Stderr != nil { + return nil, errors.New("ssh: Stderr already set") + } + if s.started { + return nil, errors.New("ssh: StderrPipe after process started") + } + s.stderrpipe = true + return s.clientChan.stderr, nil +} + +// NewSession returns a new interactive session on the remote host. +func (c *ClientConn) NewSession() (*Session, error) { + ch := c.newChan(c.transport) + if err := c.transport.writePacket(marshal(msgChannelOpen, channelOpenMsg{ + ChanType: "session", + PeersId: ch.localId, + PeersWindow: channelWindowSize, + MaxPacketSize: channelMaxPacketSize, + })); err != nil { + c.chanList.remove(ch.localId) + return nil, err + } + if err := ch.waitForChannelOpenResponse(); err != nil { + c.chanList.remove(ch.localId) + return nil, fmt.Errorf("ssh: unable to open session: %v", err) + } + return &Session{ + clientChan: ch, + }, nil +} + +// An ExitError reports unsuccessful completion of a remote command. +type ExitError struct { + Waitmsg +} + +func (e *ExitError) Error() string { + return e.Waitmsg.String() +} + +// Waitmsg stores the information about an exited remote command +// as reported by Wait. +type Waitmsg struct { + status int + signal string + msg string + lang string +} + +// ExitStatus returns the exit status of the remote command. +func (w Waitmsg) ExitStatus() int { + return w.status +} + +// Signal returns the exit signal of the remote command if +// it was terminated violently. +func (w Waitmsg) Signal() string { + return w.signal +} + +// Msg returns the exit message given by the remote command +func (w Waitmsg) Msg() string { + return w.msg +} + +// Lang returns the language tag. See RFC 3066 +func (w Waitmsg) Lang() string { + return w.lang +} + +func (w Waitmsg) String() string { + return fmt.Sprintf("Process exited with: %v. Reason was: %v (%v)", w.status, w.msg, w.signal) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/session_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/session_test.go new file mode 100644 index 00000000..5cff58a9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/session_test.go @@ -0,0 +1,789 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Session tests. + +import ( + "bytes" + crypto_rand "crypto/rand" + "io" + "io/ioutil" + "math/rand" + "net" + "testing" + + "code.google.com/p/go.crypto/ssh/terminal" +) + +type serverType func(*serverChan, *testing.T) + +// dial constructs a new test server and returns a *ClientConn. +func dial(handler serverType, t *testing.T) *ClientConn { + l, err := Listen("tcp", "127.0.0.1:0", serverConfig) + if err != nil { + t.Fatalf("unable to listen: %v", err) + } + go func() { + defer l.Close() + conn, err := l.Accept() + if err != nil { + t.Errorf("Unable to accept: %v", err) + return + } + defer conn.Close() + if err := conn.Handshake(); err != nil { + t.Errorf("Unable to handshake: %v", err) + return + } + done := make(chan struct{}) + for { + ch, err := conn.Accept() + if err == io.EOF || err == io.ErrUnexpectedEOF { + return + } + // We sometimes get ECONNRESET rather than EOF. + if _, ok := err.(*net.OpError); ok { + return + } + if err != nil { + t.Errorf("Unable to accept incoming channel request: %v", err) + return + } + if ch.ChannelType() != "session" { + ch.Reject(UnknownChannelType, "unknown channel type") + continue + } + ch.Accept() + go func() { + defer close(done) + handler(ch.(*serverChan), t) + }() + } + <-done + }() + + config := &ClientConfig{ + User: "testuser", + Auth: []ClientAuth{ + ClientAuthPassword(clientPassword), + }, + } + + c, err := Dial("tcp", l.Addr().String(), config) + if err != nil { + t.Fatalf("unable to dial remote side: %v", err) + } + return c +} + +// Test a simple string is returned to session.Stdout. +func TestSessionShell(t *testing.T) { + conn := dial(shellHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + stdout := new(bytes.Buffer) + session.Stdout = stdout + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %s", err) + } + if err := session.Wait(); err != nil { + t.Fatalf("Remote command did not exit cleanly: %v", err) + } + actual := stdout.String() + if actual != "golang" { + t.Fatalf("Remote shell did not return expected string: expected=golang, actual=%s", actual) + } +} + +// TODO(dfc) add support for Std{in,err}Pipe when the Server supports it. + +// Test a simple string is returned via StdoutPipe. +func TestSessionStdoutPipe(t *testing.T) { + conn := dial(shellHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + stdout, err := session.StdoutPipe() + if err != nil { + t.Fatalf("Unable to request StdoutPipe(): %v", err) + } + var buf bytes.Buffer + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + done := make(chan bool, 1) + go func() { + if _, err := io.Copy(&buf, stdout); err != nil { + t.Errorf("Copy of stdout failed: %v", err) + } + done <- true + }() + if err := session.Wait(); err != nil { + t.Fatalf("Remote command did not exit cleanly: %v", err) + } + <-done + actual := buf.String() + if actual != "golang" { + t.Fatalf("Remote shell did not return expected string: expected=golang, actual=%s", actual) + } +} + +// Test that a simple string is returned via the Output helper, +// and that stderr is discarded. +func TestSessionOutput(t *testing.T) { + conn := dial(fixedOutputHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + + buf, err := session.Output("") // cmd is ignored by fixedOutputHandler + if err != nil { + t.Error("Remote command did not exit cleanly:", err) + } + w := "this-is-stdout." + g := string(buf) + if g != w { + t.Error("Remote command did not return expected string:") + t.Logf("want %q", w) + t.Logf("got %q", g) + } +} + +// Test that both stdout and stderr are returned +// via the CombinedOutput helper. +func TestSessionCombinedOutput(t *testing.T) { + conn := dial(fixedOutputHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + + buf, err := session.CombinedOutput("") // cmd is ignored by fixedOutputHandler + if err != nil { + t.Error("Remote command did not exit cleanly:", err) + } + const stdout = "this-is-stdout." + const stderr = "this-is-stderr." + g := string(buf) + if g != stdout+stderr && g != stderr+stdout { + t.Error("Remote command did not return expected string:") + t.Logf("want %q, or %q", stdout+stderr, stderr+stdout) + t.Logf("got %q", g) + } +} + +// Test non-0 exit status is returned correctly. +func TestExitStatusNonZero(t *testing.T) { + conn := dial(exitStatusNonZeroHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err == nil { + t.Fatalf("expected command to fail but it didn't") + } + e, ok := err.(*ExitError) + if !ok { + t.Fatalf("expected *ExitError but got %T", err) + } + if e.ExitStatus() != 15 { + t.Fatalf("expected command to exit with 15 but got %v", e.ExitStatus()) + } +} + +// Test 0 exit status is returned correctly. +func TestExitStatusZero(t *testing.T) { + conn := dial(exitStatusZeroHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err != nil { + t.Fatalf("expected nil but got %v", err) + } +} + +// Test exit signal and status are both returned correctly. +func TestExitSignalAndStatus(t *testing.T) { + conn := dial(exitSignalAndStatusHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err == nil { + t.Fatalf("expected command to fail but it didn't") + } + e, ok := err.(*ExitError) + if !ok { + t.Fatalf("expected *ExitError but got %T", err) + } + if e.Signal() != "TERM" || e.ExitStatus() != 15 { + t.Fatalf("expected command to exit with signal TERM and status 15 but got signal %s and status %v", e.Signal(), e.ExitStatus()) + } +} + +// Test exit signal and status are both returned correctly. +func TestKnownExitSignalOnly(t *testing.T) { + conn := dial(exitSignalHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err == nil { + t.Fatalf("expected command to fail but it didn't") + } + e, ok := err.(*ExitError) + if !ok { + t.Fatalf("expected *ExitError but got %T", err) + } + if e.Signal() != "TERM" || e.ExitStatus() != 143 { + t.Fatalf("expected command to exit with signal TERM and status 143 but got signal %s and status %v", e.Signal(), e.ExitStatus()) + } +} + +// Test exit signal and status are both returned correctly. +func TestUnknownExitSignal(t *testing.T) { + conn := dial(exitSignalUnknownHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err == nil { + t.Fatalf("expected command to fail but it didn't") + } + e, ok := err.(*ExitError) + if !ok { + t.Fatalf("expected *ExitError but got %T", err) + } + if e.Signal() != "SYS" || e.ExitStatus() != 128 { + t.Fatalf("expected command to exit with signal SYS and status 128 but got signal %s and status %v", e.Signal(), e.ExitStatus()) + } +} + +// Test WaitMsg is not returned if the channel closes abruptly. +func TestExitWithoutStatusOrSignal(t *testing.T) { + conn := dial(exitWithoutSignalOrStatus, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err == nil { + t.Fatalf("expected command to fail but it didn't") + } + _, ok := err.(*ExitError) + if ok { + // you can't actually test for errors.errorString + // because it's not exported. + t.Fatalf("expected *errorString but got %T", err) + } +} + +func TestInvalidServerMessage(t *testing.T) { + conn := dial(sendInvalidRecord, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + // Make sure that we closed all the clientChans when the connection + // failed. + session.wait() + + defer session.Close() +} + +// In the wild some clients (and servers) send zero sized window updates. +// Test that the client can continue after receiving a zero sized update. +func TestClientZeroWindowAdjust(t *testing.T) { + conn := dial(sendZeroWindowAdjust, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err != nil { + t.Fatalf("expected nil but got %v", err) + } +} + +// In the wild some clients (and servers) send zero sized window updates. +// Test that the server can continue after receiving a zero size update. +func TestServerZeroWindowAdjust(t *testing.T) { + conn := dial(exitStatusZeroHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + + // send a bogus zero sized window update + session.clientChan.sendWindowAdj(0) + + err = session.Wait() + if err != nil { + t.Fatalf("expected nil but got %v", err) + } +} + +// Verify that the client never sends a packet larger than maxpacket. +func TestClientStdinRespectsMaxPacketSize(t *testing.T) { + conn := dial(discardHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("failed to request new session: %v", err) + } + defer session.Close() + stdin, err := session.StdinPipe() + if err != nil { + t.Fatalf("failed to obtain stdinpipe: %v", err) + } + const size = 100 * 1000 + for i := 0; i < 10; i++ { + n, err := stdin.Write(make([]byte, size)) + if n != size || err != nil { + t.Fatalf("failed to write: %d, %v", n, err) + } + } +} + +// Verify that the client never accepts a packet larger than maxpacket. +func TestServerStdoutRespectsMaxPacketSize(t *testing.T) { + conn := dial(largeSendHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + out, err := session.StdoutPipe() + if err != nil { + t.Fatalf("Unable to connect to Stdout: %v", err) + } + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + if _, err := ioutil.ReadAll(out); err != nil { + t.Fatalf("failed to read: %v", err) + } +} + +func TestClientCannotSendAfterEOF(t *testing.T) { + conn := dial(exitWithoutSignalOrStatus, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + in, err := session.StdinPipe() + if err != nil { + t.Fatalf("Unable to connect channel stdin: %v", err) + } + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + if err := in.Close(); err != nil { + t.Fatalf("Unable to close stdin: %v", err) + } + if _, err := in.Write([]byte("foo")); err == nil { + t.Fatalf("Session write should fail") + } +} + +func TestClientCannotSendAfterClose(t *testing.T) { + conn := dial(exitWithoutSignalOrStatus, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatalf("Unable to request new session: %v", err) + } + defer session.Close() + in, err := session.StdinPipe() + if err != nil { + t.Fatalf("Unable to connect channel stdin: %v", err) + } + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + // close underlying channel + if err := session.channel.Close(); err != nil { + t.Fatalf("Unable to close session: %v", err) + } + if _, err := in.Write([]byte("foo")); err == nil { + t.Fatalf("Session write should fail") + } +} + +func TestClientCannotSendHugePacket(t *testing.T) { + // client and server use the same transport write code so this + // test suffices for both. + conn := dial(shellHandler, t) + defer conn.Close() + if err := conn.transport.writePacket(make([]byte, maxPacket*2)); err == nil { + t.Fatalf("huge packet write should fail") + } +} + +// windowTestBytes is the number of bytes that we'll send to the SSH server. +const windowTestBytes = 16000 * 200 + +// TestServerWindow writes random data to the server. The server is expected to echo +// the same data back, which is compared against the original. +func TestServerWindow(t *testing.T) { + origBuf := bytes.NewBuffer(make([]byte, 0, windowTestBytes)) + io.CopyN(origBuf, crypto_rand.Reader, windowTestBytes) + origBytes := origBuf.Bytes() + + conn := dial(echoHandler, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatal(err) + } + defer session.Close() + result := make(chan []byte) + + go func() { + defer close(result) + echoedBuf := bytes.NewBuffer(make([]byte, 0, windowTestBytes)) + serverStdout, err := session.StdoutPipe() + if err != nil { + t.Errorf("StdoutPipe failed: %v", err) + return + } + n, err := copyNRandomly("stdout", echoedBuf, serverStdout, windowTestBytes) + if err != nil && err != io.EOF { + t.Errorf("Read only %d bytes from server, expected %d: %v", n, windowTestBytes, err) + } + result <- echoedBuf.Bytes() + }() + + serverStdin, err := session.StdinPipe() + if err != nil { + t.Fatalf("StdinPipe failed: %v", err) + } + written, err := copyNRandomly("stdin", serverStdin, origBuf, windowTestBytes) + if err != nil { + t.Fatalf("failed to copy origBuf to serverStdin: %v", err) + } + if written != windowTestBytes { + t.Fatalf("Wrote only %d of %d bytes to server", written, windowTestBytes) + } + + echoedBytes := <-result + + if !bytes.Equal(origBytes, echoedBytes) { + t.Fatalf("Echoed buffer differed from original, orig %d, echoed %d", len(origBytes), len(echoedBytes)) + } +} + +// Verify the client can handle a keepalive packet from the server. +func TestClientHandlesKeepalives(t *testing.T) { + conn := dial(channelKeepaliveSender, t) + defer conn.Close() + session, err := conn.NewSession() + if err != nil { + t.Fatal(err) + } + defer session.Close() + if err := session.Shell(); err != nil { + t.Fatalf("Unable to execute command: %v", err) + } + err = session.Wait() + if err != nil { + t.Fatalf("expected nil but got: %v", err) + } +} + +type exitStatusMsg struct { + PeersId uint32 + Request string + WantReply bool + Status uint32 +} + +type exitSignalMsg struct { + PeersId uint32 + Request string + WantReply bool + Signal string + CoreDumped bool + Errmsg string + Lang string +} + +func newServerShell(ch *serverChan, prompt string) *ServerTerminal { + term := terminal.NewTerminal(ch, prompt) + return &ServerTerminal{ + Term: term, + Channel: ch, + } +} + +func exitStatusZeroHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + // this string is returned to stdout + shell := newServerShell(ch, "> ") + readLine(shell, t) + sendStatus(0, ch, t) +} + +func exitStatusNonZeroHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + shell := newServerShell(ch, "> ") + readLine(shell, t) + sendStatus(15, ch, t) +} + +func exitSignalAndStatusHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + shell := newServerShell(ch, "> ") + readLine(shell, t) + sendStatus(15, ch, t) + sendSignal("TERM", ch, t) +} + +func exitSignalHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + shell := newServerShell(ch, "> ") + readLine(shell, t) + sendSignal("TERM", ch, t) +} + +func exitSignalUnknownHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + shell := newServerShell(ch, "> ") + readLine(shell, t) + sendSignal("SYS", ch, t) +} + +func exitWithoutSignalOrStatus(ch *serverChan, t *testing.T) { + defer ch.Close() + shell := newServerShell(ch, "> ") + readLine(shell, t) +} + +func shellHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + // this string is returned to stdout + shell := newServerShell(ch, "golang") + readLine(shell, t) + sendStatus(0, ch, t) +} + +// Ignores the command, writes fixed strings to stderr and stdout. +// Strings are "this-is-stdout." and "this-is-stderr.". +func fixedOutputHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + + _, err := ch.Read(make([]byte, 0)) + if _, ok := err.(ChannelRequest); !ok { + t.Fatalf("error: expected channel request, got: %#v", err) + return + } + // ignore request, always send some text + ch.AckRequest(true) + + _, err = io.WriteString(ch, "this-is-stdout.") + if err != nil { + t.Fatalf("error writing on server: %v", err) + } + _, err = io.WriteString(ch.Stderr(), "this-is-stderr.") + if err != nil { + t.Fatalf("error writing on server: %v", err) + } + sendStatus(0, ch, t) +} + +func readLine(shell *ServerTerminal, t *testing.T) { + if _, err := shell.ReadLine(); err != nil && err != io.EOF { + t.Errorf("unable to read line: %v", err) + } +} + +func sendStatus(status uint32, ch *serverChan, t *testing.T) { + msg := exitStatusMsg{ + PeersId: ch.remoteId, + Request: "exit-status", + WantReply: false, + Status: status, + } + if err := ch.writePacket(marshal(msgChannelRequest, msg)); err != nil { + t.Errorf("unable to send status: %v", err) + } +} + +func sendSignal(signal string, ch *serverChan, t *testing.T) { + sig := exitSignalMsg{ + PeersId: ch.remoteId, + Request: "exit-signal", + WantReply: false, + Signal: signal, + CoreDumped: false, + Errmsg: "Process terminated", + Lang: "en-GB-oed", + } + if err := ch.writePacket(marshal(msgChannelRequest, sig)); err != nil { + t.Errorf("unable to send signal: %v", err) + } +} + +func sendInvalidRecord(ch *serverChan, t *testing.T) { + defer ch.Close() + packet := make([]byte, 1+4+4+1) + packet[0] = msgChannelData + marshalUint32(packet[1:], 29348723 /* invalid channel id */) + marshalUint32(packet[5:], 1) + packet[9] = 42 + + if err := ch.writePacket(packet); err != nil { + t.Errorf("unable send invalid record: %v", err) + } +} + +func sendZeroWindowAdjust(ch *serverChan, t *testing.T) { + defer ch.Close() + // send a bogus zero sized window update + ch.sendWindowAdj(0) + shell := newServerShell(ch, "> ") + readLine(shell, t) + sendStatus(0, ch, t) +} + +func discardHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + // grow the window to avoid being fooled by + // the initial 1 << 14 window. + ch.sendWindowAdj(1024 * 1024) + io.Copy(ioutil.Discard, ch) +} + +func largeSendHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + // grow the window to avoid being fooled by + // the initial 1 << 14 window. + ch.sendWindowAdj(1024 * 1024) + shell := newServerShell(ch, "> ") + readLine(shell, t) + // try to send more than the 32k window + // will allow + if err := ch.writePacket(make([]byte, 128*1024)); err == nil { + t.Errorf("wrote packet larger than 32k") + } +} + +func echoHandler(ch *serverChan, t *testing.T) { + defer ch.Close() + if n, err := copyNRandomly("echohandler", ch, ch, windowTestBytes); err != nil { + t.Errorf("short write, wrote %d, expected %d: %v ", n, windowTestBytes, err) + } +} + +// copyNRandomly copies n bytes from src to dst. It uses a variable, and random, +// buffer size to exercise more code paths. +func copyNRandomly(title string, dst io.Writer, src io.Reader, n int) (int, error) { + var ( + buf = make([]byte, 32*1024) + written int + remaining = n + ) + for remaining > 0 { + l := rand.Intn(1 << 15) + if remaining < l { + l = remaining + } + nr, er := src.Read(buf[:l]) + nw, ew := dst.Write(buf[:nr]) + remaining -= nw + written += nw + if ew != nil { + return written, ew + } + if nr != nw { + return written, io.ErrShortWrite + } + if er != nil && er != io.EOF { + return written, er + } + } + return written, nil +} + +func channelKeepaliveSender(ch *serverChan, t *testing.T) { + defer ch.Close() + shell := newServerShell(ch, "> ") + readLine(shell, t) + msg := channelRequestMsg{ + PeersId: ch.remoteId, + Request: "keepalive@openssh.com", + WantReply: true, + } + if err := ch.writePacket(marshal(msgChannelRequest, msg)); err != nil { + t.Errorf("unable to send channel keepalive request: %v", err) + } + sendStatus(0, ch, t) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/tcpip.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/tcpip.go new file mode 100644 index 00000000..74fc1a7c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/tcpip.go @@ -0,0 +1,367 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "errors" + "fmt" + "io" + "math/rand" + "net" + "strconv" + "strings" + "sync" + "time" +) + +// Listen requests the remote peer open a listening socket +// on addr. Incoming connections will be available by calling +// Accept on the returned net.Listener. +func (c *ClientConn) Listen(n, addr string) (net.Listener, error) { + laddr, err := net.ResolveTCPAddr(n, addr) + if err != nil { + return nil, err + } + return c.ListenTCP(laddr) +} + +// Automatic port allocation is broken with OpenSSH before 6.0. See +// also https://bugzilla.mindrot.org/show_bug.cgi?id=2017. In +// particular, OpenSSH 5.9 sends a channelOpenMsg with port number 0, +// rather than the actual port number. This means you can never open +// two different listeners with auto allocated ports. We work around +// this by trying explicit ports until we succeed. + +const openSSHPrefix = "OpenSSH_" + +var portRandomizer = rand.New(rand.NewSource(time.Now().UnixNano())) + +// isBrokenOpenSSHVersion returns true if the given version string +// specifies a version of OpenSSH that is known to have a bug in port +// forwarding. +func isBrokenOpenSSHVersion(versionStr string) bool { + i := strings.Index(versionStr, openSSHPrefix) + if i < 0 { + return false + } + i += len(openSSHPrefix) + j := i + for ; j < len(versionStr); j++ { + if versionStr[j] < '0' || versionStr[j] > '9' { + break + } + } + version, _ := strconv.Atoi(versionStr[i:j]) + return version < 6 +} + +// autoPortListenWorkaround simulates automatic port allocation by +// trying random ports repeatedly. +func (c *ClientConn) autoPortListenWorkaround(laddr *net.TCPAddr) (net.Listener, error) { + var sshListener net.Listener + var err error + const tries = 10 + for i := 0; i < tries; i++ { + addr := *laddr + addr.Port = 1024 + portRandomizer.Intn(60000) + sshListener, err = c.ListenTCP(&addr) + if err == nil { + laddr.Port = addr.Port + return sshListener, err + } + } + return nil, fmt.Errorf("ssh: listen on random port failed after %d tries: %v", tries, err) +} + +// RFC 4254 7.1 +type channelForwardMsg struct { + Message string + WantReply bool + raddr string + rport uint32 +} + +// ListenTCP requests the remote peer open a listening socket +// on laddr. Incoming connections will be available by calling +// Accept on the returned net.Listener. +func (c *ClientConn) ListenTCP(laddr *net.TCPAddr) (net.Listener, error) { + if laddr.Port == 0 && isBrokenOpenSSHVersion(c.serverVersion) { + return c.autoPortListenWorkaround(laddr) + } + + m := channelForwardMsg{ + "tcpip-forward", + true, // sendGlobalRequest waits for a reply + laddr.IP.String(), + uint32(laddr.Port), + } + // send message + resp, err := c.sendGlobalRequest(m) + if err != nil { + return nil, err + } + + // If the original port was 0, then the remote side will + // supply a real port number in the response. + if laddr.Port == 0 { + port, _, ok := parseUint32(resp.Data) + if !ok { + return nil, errors.New("unable to parse response") + } + laddr.Port = int(port) + } + + // Register this forward, using the port number we obtained. + ch := c.forwardList.add(*laddr) + + return &tcpListener{laddr, c, ch}, nil +} + +// forwardList stores a mapping between remote +// forward requests and the tcpListeners. +type forwardList struct { + sync.Mutex + entries []forwardEntry +} + +// forwardEntry represents an established mapping of a laddr on a +// remote ssh server to a channel connected to a tcpListener. +type forwardEntry struct { + laddr net.TCPAddr + c chan forward +} + +// forward represents an incoming forwarded tcpip connection. The +// arguments to add/remove/lookup should be address as specified in +// the original forward-request. +type forward struct { + c *clientChan // the ssh client channel underlying this forward + raddr *net.TCPAddr // the raddr of the incoming connection +} + +func (l *forwardList) add(addr net.TCPAddr) chan forward { + l.Lock() + defer l.Unlock() + f := forwardEntry{ + addr, + make(chan forward, 1), + } + l.entries = append(l.entries, f) + return f.c +} + +// remove removes the forward entry, and the channel feeding its +// listener. +func (l *forwardList) remove(addr net.TCPAddr) { + l.Lock() + defer l.Unlock() + for i, f := range l.entries { + if addr.IP.Equal(f.laddr.IP) && addr.Port == f.laddr.Port { + l.entries = append(l.entries[:i], l.entries[i+1:]...) + close(f.c) + return + } + } +} + +// closeAll closes and clears all forwards. +func (l *forwardList) closeAll() { + l.Lock() + defer l.Unlock() + for _, f := range l.entries { + close(f.c) + } + l.entries = nil +} + +func (l *forwardList) lookup(addr net.TCPAddr) (chan forward, bool) { + l.Lock() + defer l.Unlock() + for _, f := range l.entries { + if addr.IP.Equal(f.laddr.IP) && addr.Port == f.laddr.Port { + return f.c, true + } + } + return nil, false +} + +type tcpListener struct { + laddr *net.TCPAddr + + conn *ClientConn + in <-chan forward +} + +// Accept waits for and returns the next connection to the listener. +func (l *tcpListener) Accept() (net.Conn, error) { + s, ok := <-l.in + if !ok { + return nil, io.EOF + } + return &tcpChanConn{ + tcpChan: &tcpChan{ + clientChan: s.c, + Reader: s.c.stdout, + Writer: s.c.stdin, + }, + laddr: l.laddr, + raddr: s.raddr, + }, nil +} + +// Close closes the listener. +func (l *tcpListener) Close() error { + m := channelForwardMsg{ + "cancel-tcpip-forward", + true, + l.laddr.IP.String(), + uint32(l.laddr.Port), + } + l.conn.forwardList.remove(*l.laddr) + if _, err := l.conn.sendGlobalRequest(m); err != nil { + return err + } + return nil +} + +// Addr returns the listener's network address. +func (l *tcpListener) Addr() net.Addr { + return l.laddr +} + +// Dial initiates a connection to the addr from the remote host. +// The resulting connection has a zero LocalAddr() and RemoteAddr(). +func (c *ClientConn) Dial(n, addr string) (net.Conn, error) { + // Parse the address into host and numeric port. + host, portString, err := net.SplitHostPort(addr) + if err != nil { + return nil, err + } + port, err := strconv.ParseUint(portString, 10, 16) + if err != nil { + return nil, err + } + // Use a zero address for local and remote address. + zeroAddr := &net.TCPAddr{ + IP: net.IPv4zero, + Port: 0, + } + ch, err := c.dial(net.IPv4zero.String(), 0, host, int(port)) + if err != nil { + return nil, err + } + return &tcpChanConn{ + tcpChan: ch, + laddr: zeroAddr, + raddr: zeroAddr, + }, nil +} + +// DialTCP connects to the remote address raddr on the network net, +// which must be "tcp", "tcp4", or "tcp6". If laddr is not nil, it is used +// as the local address for the connection. +func (c *ClientConn) DialTCP(n string, laddr, raddr *net.TCPAddr) (net.Conn, error) { + if laddr == nil { + laddr = &net.TCPAddr{ + IP: net.IPv4zero, + Port: 0, + } + } + ch, err := c.dial(laddr.IP.String(), laddr.Port, raddr.IP.String(), raddr.Port) + if err != nil { + return nil, err + } + return &tcpChanConn{ + tcpChan: ch, + laddr: laddr, + raddr: raddr, + }, nil +} + +// RFC 4254 7.2 +type channelOpenDirectMsg struct { + ChanType string + PeersId uint32 + PeersWindow uint32 + MaxPacketSize uint32 + raddr string + rport uint32 + laddr string + lport uint32 +} + +// dial opens a direct-tcpip connection to the remote server. laddr and raddr are passed as +// strings and are expected to be resolvable at the remote end. +func (c *ClientConn) dial(laddr string, lport int, raddr string, rport int) (*tcpChan, error) { + ch := c.newChan(c.transport) + if err := c.transport.writePacket(marshal(msgChannelOpen, channelOpenDirectMsg{ + ChanType: "direct-tcpip", + PeersId: ch.localId, + PeersWindow: channelWindowSize, + MaxPacketSize: channelMaxPacketSize, + raddr: raddr, + rport: uint32(rport), + laddr: laddr, + lport: uint32(lport), + })); err != nil { + c.chanList.remove(ch.localId) + return nil, err + } + if err := ch.waitForChannelOpenResponse(); err != nil { + c.chanList.remove(ch.localId) + return nil, fmt.Errorf("ssh: unable to open direct tcpip connection: %v", err) + } + return &tcpChan{ + clientChan: ch, + Reader: ch.stdout, + Writer: ch.stdin, + }, nil +} + +type tcpChan struct { + *clientChan // the backing channel + io.Reader + io.Writer +} + +// tcpChanConn fulfills the net.Conn interface without +// the tcpChan having to hold laddr or raddr directly. +type tcpChanConn struct { + *tcpChan + laddr, raddr net.Addr +} + +// LocalAddr returns the local network address. +func (t *tcpChanConn) LocalAddr() net.Addr { + return t.laddr +} + +// RemoteAddr returns the remote network address. +func (t *tcpChanConn) RemoteAddr() net.Addr { + return t.raddr +} + +// SetDeadline sets the read and write deadlines associated +// with the connection. +func (t *tcpChanConn) SetDeadline(deadline time.Time) error { + if err := t.SetReadDeadline(deadline); err != nil { + return err + } + return t.SetWriteDeadline(deadline) +} + +// SetReadDeadline sets the read deadline. +// A zero value for t means Read will not time out. +// After the deadline, the error from Read will implement net.Error +// with Timeout() == true. +func (t *tcpChanConn) SetReadDeadline(deadline time.Time) error { + return errors.New("ssh: tcpChan: deadline not supported") +} + +// SetWriteDeadline exists to satisfy the net.Conn interface +// but is not implemented by this type. It always returns an error. +func (t *tcpChanConn) SetWriteDeadline(deadline time.Time) error { + return errors.New("ssh: tcpChan: deadline not supported") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/tcpip_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/tcpip_test.go new file mode 100644 index 00000000..7fa9fc43 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/tcpip_test.go @@ -0,0 +1,16 @@ +package ssh + +import ( + "testing" +) + +func TestAutoPortListenBroken(t *testing.T) { + broken := "SSH-2.0-OpenSSH_5.9hh11" + works := "SSH-2.0-OpenSSH_6.1" + if !isBrokenOpenSSHVersion(broken) { + t.Errorf("version %q not marked as broken", broken) + } + if isBrokenOpenSSHVersion(works) { + t.Errorf("version %q marked as broken", works) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/terminal.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/terminal.go new file mode 100644 index 00000000..86853d6b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/terminal.go @@ -0,0 +1,699 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package terminal + +import ( + "io" + "sync" + "unicode/utf8" +) + +// EscapeCodes contains escape sequences that can be written to the terminal in +// order to achieve different styles of text. +type EscapeCodes struct { + // Foreground colors + Black, Red, Green, Yellow, Blue, Magenta, Cyan, White []byte + + // Reset all attributes + Reset []byte +} + +var vt100EscapeCodes = EscapeCodes{ + Black: []byte{keyEscape, '[', '3', '0', 'm'}, + Red: []byte{keyEscape, '[', '3', '1', 'm'}, + Green: []byte{keyEscape, '[', '3', '2', 'm'}, + Yellow: []byte{keyEscape, '[', '3', '3', 'm'}, + Blue: []byte{keyEscape, '[', '3', '4', 'm'}, + Magenta: []byte{keyEscape, '[', '3', '5', 'm'}, + Cyan: []byte{keyEscape, '[', '3', '6', 'm'}, + White: []byte{keyEscape, '[', '3', '7', 'm'}, + + Reset: []byte{keyEscape, '[', '0', 'm'}, +} + +// Terminal contains the state for running a VT100 terminal that is capable of +// reading lines of input. +type Terminal struct { + // AutoCompleteCallback, if non-null, is called for each keypress with + // the full input line and the current position of the cursor (in + // bytes, as an index into |line|). If it returns ok=false, the key + // press is processed normally. Otherwise it returns a replacement line + // and the new cursor position. + AutoCompleteCallback func(line string, pos int, key rune) (newLine string, newPos int, ok bool) + + // Escape contains a pointer to the escape codes for this terminal. + // It's always a valid pointer, although the escape codes themselves + // may be empty if the terminal doesn't support them. + Escape *EscapeCodes + + // lock protects the terminal and the state in this object from + // concurrent processing of a key press and a Write() call. + lock sync.Mutex + + c io.ReadWriter + prompt string + + // line is the current line being entered. + line []rune + // pos is the logical position of the cursor in line + pos int + // echo is true if local echo is enabled + echo bool + + // cursorX contains the current X value of the cursor where the left + // edge is 0. cursorY contains the row number where the first row of + // the current line is 0. + cursorX, cursorY int + // maxLine is the greatest value of cursorY so far. + maxLine int + + termWidth, termHeight int + + // outBuf contains the terminal data to be sent. + outBuf []byte + // remainder contains the remainder of any partial key sequences after + // a read. It aliases into inBuf. + remainder []byte + inBuf [256]byte + + // history contains previously entered commands so that they can be + // accessed with the up and down keys. + history stRingBuffer + // historyIndex stores the currently accessed history entry, where zero + // means the immediately previous entry. + historyIndex int + // When navigating up and down the history it's possible to return to + // the incomplete, initial line. That value is stored in + // historyPending. + historyPending string +} + +// NewTerminal runs a VT100 terminal on the given ReadWriter. If the ReadWriter is +// a local terminal, that terminal must first have been put into raw mode. +// prompt is a string that is written at the start of each input line (i.e. +// "> "). +func NewTerminal(c io.ReadWriter, prompt string) *Terminal { + return &Terminal{ + Escape: &vt100EscapeCodes, + c: c, + prompt: prompt, + termWidth: 80, + termHeight: 24, + echo: true, + historyIndex: -1, + } +} + +const ( + keyCtrlD = 4 + keyEnter = '\r' + keyEscape = 27 + keyBackspace = 127 + keyUnknown = 0xd800 /* UTF-16 surrogate area */ + iota + keyUp + keyDown + keyLeft + keyRight + keyAltLeft + keyAltRight + keyHome + keyEnd + keyDeleteWord + keyDeleteLine +) + +// bytesToKey tries to parse a key sequence from b. If successful, it returns +// the key and the remainder of the input. Otherwise it returns utf8.RuneError. +func bytesToKey(b []byte) (rune, []byte) { + if len(b) == 0 { + return utf8.RuneError, nil + } + + switch b[0] { + case 1: // ^A + return keyHome, b[1:] + case 5: // ^E + return keyEnd, b[1:] + case 8: // ^H + return keyBackspace, b[1:] + case 11: // ^K + return keyDeleteLine, b[1:] + case 23: // ^W + return keyDeleteWord, b[1:] + } + + if b[0] != keyEscape { + if !utf8.FullRune(b) { + return utf8.RuneError, b + } + r, l := utf8.DecodeRune(b) + return r, b[l:] + } + + if len(b) >= 3 && b[0] == keyEscape && b[1] == '[' { + switch b[2] { + case 'A': + return keyUp, b[3:] + case 'B': + return keyDown, b[3:] + case 'C': + return keyRight, b[3:] + case 'D': + return keyLeft, b[3:] + } + } + + if len(b) >= 3 && b[0] == keyEscape && b[1] == 'O' { + switch b[2] { + case 'H': + return keyHome, b[3:] + case 'F': + return keyEnd, b[3:] + } + } + + if len(b) >= 6 && b[0] == keyEscape && b[1] == '[' && b[2] == '1' && b[3] == ';' && b[4] == '3' { + switch b[5] { + case 'C': + return keyAltRight, b[6:] + case 'D': + return keyAltLeft, b[6:] + } + } + + // If we get here then we have a key that we don't recognise, or a + // partial sequence. It's not clear how one should find the end of a + // sequence without knowing them all, but it seems that [a-zA-Z] only + // appears at the end of a sequence. + for i, c := range b[0:] { + if c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' { + return keyUnknown, b[i+1:] + } + } + + return utf8.RuneError, b +} + +// queue appends data to the end of t.outBuf +func (t *Terminal) queue(data []rune) { + t.outBuf = append(t.outBuf, []byte(string(data))...) +} + +var eraseUnderCursor = []rune{' ', keyEscape, '[', 'D'} +var space = []rune{' '} + +func isPrintable(key rune) bool { + isInSurrogateArea := key >= 0xd800 && key <= 0xdbff + return key >= 32 && !isInSurrogateArea +} + +// moveCursorToPos appends data to t.outBuf which will move the cursor to the +// given, logical position in the text. +func (t *Terminal) moveCursorToPos(pos int) { + if !t.echo { + return + } + + x := len(t.prompt) + pos + y := x / t.termWidth + x = x % t.termWidth + + up := 0 + if y < t.cursorY { + up = t.cursorY - y + } + + down := 0 + if y > t.cursorY { + down = y - t.cursorY + } + + left := 0 + if x < t.cursorX { + left = t.cursorX - x + } + + right := 0 + if x > t.cursorX { + right = x - t.cursorX + } + + t.cursorX = x + t.cursorY = y + t.move(up, down, left, right) +} + +func (t *Terminal) move(up, down, left, right int) { + movement := make([]rune, 3*(up+down+left+right)) + m := movement + for i := 0; i < up; i++ { + m[0] = keyEscape + m[1] = '[' + m[2] = 'A' + m = m[3:] + } + for i := 0; i < down; i++ { + m[0] = keyEscape + m[1] = '[' + m[2] = 'B' + m = m[3:] + } + for i := 0; i < left; i++ { + m[0] = keyEscape + m[1] = '[' + m[2] = 'D' + m = m[3:] + } + for i := 0; i < right; i++ { + m[0] = keyEscape + m[1] = '[' + m[2] = 'C' + m = m[3:] + } + + t.queue(movement) +} + +func (t *Terminal) clearLineToRight() { + op := []rune{keyEscape, '[', 'K'} + t.queue(op) +} + +const maxLineLength = 4096 + +func (t *Terminal) setLine(newLine []rune, newPos int) { + if t.echo { + t.moveCursorToPos(0) + t.writeLine(newLine) + for i := len(newLine); i < len(t.line); i++ { + t.writeLine(space) + } + t.moveCursorToPos(newPos) + } + t.line = newLine + t.pos = newPos +} + +func (t *Terminal) eraseNPreviousChars(n int) { + if n == 0 { + return + } + + if t.pos < n { + n = t.pos + } + t.pos -= n + t.moveCursorToPos(t.pos) + + copy(t.line[t.pos:], t.line[n+t.pos:]) + t.line = t.line[:len(t.line)-n] + if t.echo { + t.writeLine(t.line[t.pos:]) + for i := 0; i < n; i++ { + t.queue(space) + } + t.cursorX += n + t.moveCursorToPos(t.pos) + } +} + +// countToLeftWord returns then number of characters from the cursor to the +// start of the previous word. +func (t *Terminal) countToLeftWord() int { + if t.pos == 0 { + return 0 + } + + pos := t.pos - 1 + for pos > 0 { + if t.line[pos] != ' ' { + break + } + pos-- + } + for pos > 0 { + if t.line[pos] == ' ' { + pos++ + break + } + pos-- + } + + return t.pos - pos +} + +// countToRightWord returns then number of characters from the cursor to the +// start of the next word. +func (t *Terminal) countToRightWord() int { + pos := t.pos + for pos < len(t.line) { + if t.line[pos] == ' ' { + break + } + pos++ + } + for pos < len(t.line) { + if t.line[pos] != ' ' { + break + } + pos++ + } + return pos - t.pos +} + +// handleKey processes the given key and, optionally, returns a line of text +// that the user has entered. +func (t *Terminal) handleKey(key rune) (line string, ok bool) { + switch key { + case keyBackspace: + if t.pos == 0 { + return + } + t.eraseNPreviousChars(1) + case keyAltLeft: + // move left by a word. + t.pos -= t.countToLeftWord() + t.moveCursorToPos(t.pos) + case keyAltRight: + // move right by a word. + t.pos += t.countToRightWord() + t.moveCursorToPos(t.pos) + case keyLeft: + if t.pos == 0 { + return + } + t.pos-- + t.moveCursorToPos(t.pos) + case keyRight: + if t.pos == len(t.line) { + return + } + t.pos++ + t.moveCursorToPos(t.pos) + case keyHome: + if t.pos == 0 { + return + } + t.pos = 0 + t.moveCursorToPos(t.pos) + case keyEnd: + if t.pos == len(t.line) { + return + } + t.pos = len(t.line) + t.moveCursorToPos(t.pos) + case keyUp: + entry, ok := t.history.NthPreviousEntry(t.historyIndex + 1) + if !ok { + return "", false + } + if t.historyIndex == -1 { + t.historyPending = string(t.line) + } + t.historyIndex++ + runes := []rune(entry) + t.setLine(runes, len(runes)) + case keyDown: + switch t.historyIndex { + case -1: + return + case 0: + runes := []rune(t.historyPending) + t.setLine(runes, len(runes)) + t.historyIndex-- + default: + entry, ok := t.history.NthPreviousEntry(t.historyIndex - 1) + if ok { + t.historyIndex-- + runes := []rune(entry) + t.setLine(runes, len(runes)) + } + } + case keyEnter: + t.moveCursorToPos(len(t.line)) + t.queue([]rune("\r\n")) + line = string(t.line) + ok = true + t.line = t.line[:0] + t.pos = 0 + t.cursorX = 0 + t.cursorY = 0 + t.maxLine = 0 + case keyDeleteWord: + // Delete zero or more spaces and then one or more characters. + t.eraseNPreviousChars(t.countToLeftWord()) + case keyDeleteLine: + // Delete everything from the current cursor position to the + // end of line. + for i := t.pos; i < len(t.line); i++ { + t.queue(space) + t.cursorX++ + } + t.line = t.line[:t.pos] + t.moveCursorToPos(t.pos) + default: + if t.AutoCompleteCallback != nil { + prefix := string(t.line[:t.pos]) + suffix := string(t.line[t.pos:]) + + t.lock.Unlock() + newLine, newPos, completeOk := t.AutoCompleteCallback(prefix+suffix, len(prefix), key) + t.lock.Lock() + + if completeOk { + t.setLine([]rune(newLine), utf8.RuneCount([]byte(newLine)[:newPos])) + return + } + } + if !isPrintable(key) { + return + } + if len(t.line) == maxLineLength { + return + } + if len(t.line) == cap(t.line) { + newLine := make([]rune, len(t.line), 2*(1+len(t.line))) + copy(newLine, t.line) + t.line = newLine + } + t.line = t.line[:len(t.line)+1] + copy(t.line[t.pos+1:], t.line[t.pos:]) + t.line[t.pos] = key + if t.echo { + t.writeLine(t.line[t.pos:]) + } + t.pos++ + t.moveCursorToPos(t.pos) + } + return +} + +func (t *Terminal) writeLine(line []rune) { + for len(line) != 0 { + remainingOnLine := t.termWidth - t.cursorX + todo := len(line) + if todo > remainingOnLine { + todo = remainingOnLine + } + t.queue(line[:todo]) + t.cursorX += todo + line = line[todo:] + + if t.cursorX == t.termWidth { + t.cursorX = 0 + t.cursorY++ + if t.cursorY > t.maxLine { + t.maxLine = t.cursorY + } + } + } +} + +func (t *Terminal) Write(buf []byte) (n int, err error) { + t.lock.Lock() + defer t.lock.Unlock() + + if t.cursorX == 0 && t.cursorY == 0 { + // This is the easy case: there's nothing on the screen that we + // have to move out of the way. + return t.c.Write(buf) + } + + // We have a prompt and possibly user input on the screen. We + // have to clear it first. + t.move(0 /* up */, 0 /* down */, t.cursorX /* left */, 0 /* right */) + t.cursorX = 0 + t.clearLineToRight() + + for t.cursorY > 0 { + t.move(1 /* up */, 0, 0, 0) + t.cursorY-- + t.clearLineToRight() + } + + if _, err = t.c.Write(t.outBuf); err != nil { + return + } + t.outBuf = t.outBuf[:0] + + if n, err = t.c.Write(buf); err != nil { + return + } + + t.queue([]rune(t.prompt)) + chars := len(t.prompt) + if t.echo { + t.queue(t.line) + chars += len(t.line) + } + t.cursorX = chars % t.termWidth + t.cursorY = chars / t.termWidth + t.moveCursorToPos(t.pos) + + if _, err = t.c.Write(t.outBuf); err != nil { + return + } + t.outBuf = t.outBuf[:0] + return +} + +// ReadPassword temporarily changes the prompt and reads a password, without +// echo, from the terminal. +func (t *Terminal) ReadPassword(prompt string) (line string, err error) { + t.lock.Lock() + defer t.lock.Unlock() + + oldPrompt := t.prompt + t.prompt = prompt + t.echo = false + + line, err = t.readLine() + + t.prompt = oldPrompt + t.echo = true + + return +} + +// ReadLine returns a line of input from the terminal. +func (t *Terminal) ReadLine() (line string, err error) { + t.lock.Lock() + defer t.lock.Unlock() + + return t.readLine() +} + +func (t *Terminal) readLine() (line string, err error) { + // t.lock must be held at this point + + if t.cursorX == 0 && t.cursorY == 0 { + t.writeLine([]rune(t.prompt)) + t.c.Write(t.outBuf) + t.outBuf = t.outBuf[:0] + } + + for { + rest := t.remainder + lineOk := false + for !lineOk { + var key rune + key, rest = bytesToKey(rest) + if key == utf8.RuneError { + break + } + if key == keyCtrlD { + return "", io.EOF + } + line, lineOk = t.handleKey(key) + } + if len(rest) > 0 { + n := copy(t.inBuf[:], rest) + t.remainder = t.inBuf[:n] + } else { + t.remainder = nil + } + t.c.Write(t.outBuf) + t.outBuf = t.outBuf[:0] + if lineOk { + if t.echo { + t.historyIndex = -1 + t.history.Add(line) + } + return + } + + // t.remainder is a slice at the beginning of t.inBuf + // containing a partial key sequence + readBuf := t.inBuf[len(t.remainder):] + var n int + + t.lock.Unlock() + n, err = t.c.Read(readBuf) + t.lock.Lock() + + if err != nil { + return + } + + t.remainder = t.inBuf[:n+len(t.remainder)] + } + + panic("unreachable") // for Go 1.0. +} + +// SetPrompt sets the prompt to be used when reading subsequent lines. +func (t *Terminal) SetPrompt(prompt string) { + t.lock.Lock() + defer t.lock.Unlock() + + t.prompt = prompt +} + +func (t *Terminal) SetSize(width, height int) { + t.lock.Lock() + defer t.lock.Unlock() + + t.termWidth, t.termHeight = width, height +} + +// stRingBuffer is a ring buffer of strings. +type stRingBuffer struct { + // entries contains max elements. + entries []string + max int + // head contains the index of the element most recently added to the ring. + head int + // size contains the number of elements in the ring. + size int +} + +func (s *stRingBuffer) Add(a string) { + if s.entries == nil { + const defaultNumEntries = 100 + s.entries = make([]string, defaultNumEntries) + s.max = defaultNumEntries + } + + s.head = (s.head + 1) % s.max + s.entries[s.head] = a + if s.size < s.max { + s.size++ + } +} + +// NthPreviousEntry returns the value passed to the nth previous call to Add. +// If n is zero then the immediately prior value is returned, if one, then the +// next most recent, and so on. If such an element doesn't exist then ok is +// false. +func (s *stRingBuffer) NthPreviousEntry(n int) (value string, ok bool) { + if n >= s.size { + return "", false + } + index := s.head - n + if index < 0 { + index += s.max + } + return s.entries[index], true +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/terminal_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/terminal_test.go new file mode 100644 index 00000000..641576c8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/terminal_test.go @@ -0,0 +1,209 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package terminal + +import ( + "io" + "testing" +) + +type MockTerminal struct { + toSend []byte + bytesPerRead int + received []byte +} + +func (c *MockTerminal) Read(data []byte) (n int, err error) { + n = len(data) + if n == 0 { + return + } + if n > len(c.toSend) { + n = len(c.toSend) + } + if n == 0 { + return 0, io.EOF + } + if c.bytesPerRead > 0 && n > c.bytesPerRead { + n = c.bytesPerRead + } + copy(data, c.toSend[:n]) + c.toSend = c.toSend[n:] + return +} + +func (c *MockTerminal) Write(data []byte) (n int, err error) { + c.received = append(c.received, data...) + return len(data), nil +} + +func TestClose(t *testing.T) { + c := &MockTerminal{} + ss := NewTerminal(c, "> ") + line, err := ss.ReadLine() + if line != "" { + t.Errorf("Expected empty line but got: %s", line) + } + if err != io.EOF { + t.Errorf("Error should have been EOF but got: %s", err) + } +} + +var keyPressTests = []struct { + in string + line string + err error + throwAwayLines int +}{ + { + err: io.EOF, + }, + { + in: "\r", + line: "", + }, + { + in: "foo\r", + line: "foo", + }, + { + in: "a\x1b[Cb\r", // right + line: "ab", + }, + { + in: "a\x1b[Db\r", // left + line: "ba", + }, + { + in: "a\177b\r", // backspace + line: "b", + }, + { + in: "\x1b[A\r", // up + }, + { + in: "\x1b[B\r", // down + }, + { + in: "line\x1b[A\x1b[B\r", // up then down + line: "line", + }, + { + in: "line1\rline2\x1b[A\r", // recall previous line. + line: "line1", + throwAwayLines: 1, + }, + { + // recall two previous lines and append. + in: "line1\rline2\rline3\x1b[A\x1b[Axxx\r", + line: "line1xxx", + throwAwayLines: 2, + }, + { + // Ctrl-A to move to beginning of line followed by ^K to kill + // line. + in: "a b \001\013\r", + line: "", + }, + { + // Ctrl-A to move to beginning of line, Ctrl-E to move to end, + // finally ^K to kill nothing. + in: "a b \001\005\013\r", + line: "a b ", + }, + { + in: "\027\r", + line: "", + }, + { + in: "a\027\r", + line: "", + }, + { + in: "a \027\r", + line: "", + }, + { + in: "a b\027\r", + line: "a ", + }, + { + in: "a b \027\r", + line: "a ", + }, + { + in: "one two thr\x1b[D\027\r", + line: "one two r", + }, + { + in: "\013\r", + line: "", + }, + { + in: "a\013\r", + line: "a", + }, + { + in: "ab\x1b[D\013\r", + line: "a", + }, + { + in: "Ξεσκεπάζω\r", + line: "Ξεσκεπάζω", + }, + { + in: "£\r\x1b[A\177\r", // non-ASCII char, enter, up, backspace. + line: "", + throwAwayLines: 1, + }, + { + in: "£\r££\x1b[A\x1b[B\177\r", // non-ASCII char, enter, 2x non-ASCII, up, down, backspace, enter. + line: "£", + throwAwayLines: 1, + }, +} + +func TestKeyPresses(t *testing.T) { + for i, test := range keyPressTests { + for j := 1; j < len(test.in); j++ { + c := &MockTerminal{ + toSend: []byte(test.in), + bytesPerRead: j, + } + ss := NewTerminal(c, "> ") + for k := 0; k < test.throwAwayLines; k++ { + _, err := ss.ReadLine() + if err != nil { + t.Errorf("Throwaway line %d from test %d resulted in error: %s", k, i, err) + } + } + line, err := ss.ReadLine() + if line != test.line { + t.Errorf("Line resulting from test %d (%d bytes per read) was '%s', expected '%s'", i, j, line, test.line) + break + } + if err != test.err { + t.Errorf("Error resulting from test %d (%d bytes per read) was '%v', expected '%v'", i, j, err, test.err) + break + } + } + } +} + +func TestPasswordNotSaved(t *testing.T) { + c := &MockTerminal{ + toSend: []byte("password\r\x1b[A\r"), + bytesPerRead: 1, + } + ss := NewTerminal(c, "> ") + pw, _ := ss.ReadPassword("> ") + if pw != "password" { + t.Fatalf("failed to read password, got %s", pw) + } + line, _ := ss.ReadLine() + if len(line) > 0 { + t.Fatalf("password was saved in history") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util.go new file mode 100644 index 00000000..8df94f5d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util.go @@ -0,0 +1,128 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build linux,!appengine darwin + +// Package terminal provides support functions for dealing with terminals, as +// commonly found on UNIX systems. +// +// Putting a terminal into raw mode is the most common requirement: +// +// oldState, err := terminal.MakeRaw(0) +// if err != nil { +// panic(err) +// } +// defer terminal.Restore(0, oldState) +package terminal + +import ( + "io" + "syscall" + "unsafe" +) + +// State contains the state of a terminal. +type State struct { + termios syscall.Termios +} + +// IsTerminal returns true if the given file descriptor is a terminal. +func IsTerminal(fd int) bool { + var termios syscall.Termios + _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) + return err == 0 +} + +// MakeRaw put the terminal connected to the given file descriptor into raw +// mode and returns the previous state of the terminal so that it can be +// restored. +func MakeRaw(fd int) (*State, error) { + var oldState State + if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 { + return nil, err + } + + newState := oldState.termios + newState.Iflag &^= syscall.ISTRIP | syscall.INLCR | syscall.ICRNL | syscall.IGNCR | syscall.IXON | syscall.IXOFF + newState.Lflag &^= syscall.ECHO | syscall.ICANON | syscall.ISIG + if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 { + return nil, err + } + + return &oldState, nil +} + +// GetState returns the current state of a terminal which may be useful to +// restore the terminal after a signal. +func GetState(fd int) (*State, error) { + var oldState State + if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 { + return nil, err + } + + return &oldState, nil +} + +// Restore restores the terminal connected to the given file descriptor to a +// previous state. +func Restore(fd int, state *State) error { + _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&state.termios)), 0, 0, 0) + return err +} + +// GetSize returns the dimensions of the given terminal. +func GetSize(fd int) (width, height int, err error) { + var dimensions [4]uint16 + + if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), uintptr(syscall.TIOCGWINSZ), uintptr(unsafe.Pointer(&dimensions)), 0, 0, 0); err != 0 { + return -1, -1, err + } + return int(dimensions[1]), int(dimensions[0]), nil +} + +// ReadPassword reads a line of input from a terminal without local echo. This +// is commonly used for inputting passwords and other sensitive data. The slice +// returned does not include the \n. +func ReadPassword(fd int) ([]byte, error) { + var oldState syscall.Termios + if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0); err != 0 { + return nil, err + } + + newState := oldState + newState.Lflag &^= syscall.ECHO + newState.Lflag |= syscall.ICANON | syscall.ISIG + newState.Iflag |= syscall.ICRNL + if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 { + return nil, err + } + + defer func() { + syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0) + }() + + var buf [16]byte + var ret []byte + for { + n, err := syscall.Read(fd, buf[:]) + if err != nil { + return nil, err + } + if n == 0 { + if len(ret) == 0 { + return nil, io.EOF + } + break + } + if buf[n-1] == '\n' { + n-- + } + ret = append(ret, buf[:n]...) + if n < len(buf) { + break + } + } + + return ret, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util_bsd.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util_bsd.go new file mode 100644 index 00000000..1654453b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util_bsd.go @@ -0,0 +1,12 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build darwin + +package terminal + +import "syscall" + +const ioctlReadTermios = syscall.TIOCGETA +const ioctlWriteTermios = syscall.TIOCSETA diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util_linux.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util_linux.go new file mode 100644 index 00000000..283144b7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/terminal/util_linux.go @@ -0,0 +1,12 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build linux + +package terminal + +import "syscall" + +const ioctlReadTermios = syscall.TCGETS +const ioctlWriteTermios = syscall.TCSETS diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/doc.go new file mode 100644 index 00000000..787b8fa2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/doc.go @@ -0,0 +1,7 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This package contains integration tests for the +// code.google.com/p/go.crypto/ssh package. +package test diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/forward_unix_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/forward_unix_test.go new file mode 100644 index 00000000..3a57c100 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/forward_unix_test.go @@ -0,0 +1,160 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build darwin freebsd linux netbsd openbsd plan9 + +package test + +import ( + "bytes" + "io" + "io/ioutil" + "math/rand" + "net" + "testing" + "time" +) + +func TestPortForward(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + sshListener, err := conn.Listen("tcp", "localhost:0") + if err != nil { + t.Fatal(err) + } + + go func() { + sshConn, err := sshListener.Accept() + if err != nil { + t.Fatalf("listen.Accept failed: %v", err) + } + + _, err = io.Copy(sshConn, sshConn) + if err != nil && err != io.EOF { + t.Fatalf("ssh client copy: %v", err) + } + sshConn.Close() + }() + + forwardedAddr := sshListener.Addr().String() + tcpConn, err := net.Dial("tcp", forwardedAddr) + if err != nil { + t.Fatalf("TCP dial failed: %v", err) + } + + readChan := make(chan []byte) + go func() { + data, _ := ioutil.ReadAll(tcpConn) + readChan <- data + }() + + // Invent some data. + data := make([]byte, 100*1000) + for i := range data { + data[i] = byte(i % 255) + } + + var sent []byte + for len(sent) < 1000*1000 { + // Send random sized chunks + m := rand.Intn(len(data)) + n, err := tcpConn.Write(data[:m]) + if err != nil { + break + } + sent = append(sent, data[:n]...) + } + if err := tcpConn.(*net.TCPConn).CloseWrite(); err != nil { + t.Errorf("tcpConn.CloseWrite: %v", err) + } + + read := <-readChan + + if len(sent) != len(read) { + t.Fatalf("got %d bytes, want %d", len(read), len(sent)) + } + if bytes.Compare(sent, read) != 0 { + t.Fatalf("read back data does not match") + } + + if err := sshListener.Close(); err != nil { + t.Fatalf("sshListener.Close: %v", err) + } + + // Check that the forward disappeared. + tcpConn, err = net.Dial("tcp", forwardedAddr) + if err == nil { + tcpConn.Close() + t.Errorf("still listening to %s after closing", forwardedAddr) + } +} + +func TestAcceptClose(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + + sshListener, err := conn.Listen("tcp", "localhost:0") + if err != nil { + t.Fatal(err) + } + + quit := make(chan error, 1) + go func() { + for { + c, err := sshListener.Accept() + if err != nil { + quit <- err + break + } + c.Close() + } + }() + sshListener.Close() + + select { + case <-time.After(1 * time.Second): + t.Errorf("timeout: listener did not close.") + case err := <-quit: + t.Logf("quit as expected (error %v)", err) + } +} + +// Check that listeners exit if the underlying client transport dies. +func TestPortForwardConnectionClose(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + + sshListener, err := conn.Listen("tcp", "localhost:0") + if err != nil { + t.Fatal(err) + } + + quit := make(chan error, 1) + go func() { + for { + c, err := sshListener.Accept() + if err != nil { + quit <- err + break + } + c.Close() + } + }() + + // It would be even nicer if we closed the server side, but it + // is more involved as the fd for that side is dup()ed. + server.clientConn.Close() + + select { + case <-time.After(1 * time.Second): + t.Errorf("timeout: listener did not close.") + case err := <-quit: + t.Logf("quit as expected (error %v)", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/keys_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/keys_test.go new file mode 100644 index 00000000..b1164220 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/keys_test.go @@ -0,0 +1,246 @@ +package test + +import ( + "reflect" + "strings" + "testing" + + "code.google.com/p/go.crypto/ssh" +) + +var ( + validKey = `AAAAB3NzaC1yc2EAAAADAQABAAABAQDEX/dPu4PmtvgK3La9zioCEDrJ` + + `yUr6xEIK7Pr+rLgydcqWTU/kt7w7gKjOw4vvzgHfjKl09CWyvgb+y5dCiTk` + + `9MxI+erGNhs3pwaoS+EavAbawB7iEqYyTep3YaJK+4RJ4OX7ZlXMAIMrTL+` + + `UVrK89t56hCkFYaAgo3VY+z6rb/b3bDBYtE1Y2tS7C3au73aDgeb9psIrSV` + + `86ucKBTl5X62FnYiyGd++xCnLB6uLximM5OKXfLzJQNS/QyZyk12g3D8y69` + + `Xw1GzCSKX1u1+MQboyf0HJcG2ryUCLHdcDVppApyHx2OLq53hlkQ/yxdflD` + + `qCqAE4j+doagSsIfC1T2T` + + authWithOptions = []string{ + `# comments to ignore before any keys...`, + ``, + `env="HOME=/home/root",no-port-forwarding ssh-rsa ` + validKey + ` user@host`, + `# comments to ignore, along with a blank line`, + ``, + `env="HOME=/home/root2" ssh-rsa ` + validKey + ` user2@host2`, + ``, + `# more comments, plus a invalid entry`, + `ssh-rsa data-that-will-not-parse user@host3`, + } + + authOptions = strings.Join(authWithOptions, "\n") + authWithCRLF = strings.Join(authWithOptions, "\r\n") + authInvalid = []byte(`ssh-rsa`) + authWithQuotedCommaInEnv = []byte(`env="HOME=/home/root,dir",no-port-forwarding ssh-rsa ` + validKey + ` user@host`) + authWithQuotedSpaceInEnv = []byte(`env="HOME=/home/root dir",no-port-forwarding ssh-rsa ` + validKey + ` user@host`) + authWithQuotedQuoteInEnv = []byte(`env="HOME=/home/\"root dir",no-port-forwarding` + "\t" + `ssh-rsa` + "\t" + validKey + ` user@host`) + + authWithDoubleQuotedQuote = []byte(`no-port-forwarding,env="HOME=/home/ \"root dir\"" ssh-rsa ` + validKey + "\t" + `user@host`) + authWithInvalidSpace = []byte(`env="HOME=/home/root dir", no-port-forwarding ssh-rsa ` + validKey + ` user@host +#more to follow but still no valid keys`) + authWithMissingQuote = []byte(`env="HOME=/home/root,no-port-forwarding ssh-rsa ` + validKey + ` user@host +env="HOME=/home/root",shared-control ssh-rsa ` + validKey + ` user@host`) + + testClientPrivateKey = `-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAxF/3T7uD5rb4Cty2vc4qAhA6yclK+sRCCuz6/qy4MnXKlk1P +5Le8O4CozsOL784B34ypdPQlsr4G/suXQok5PTMSPnqxjYbN6cGqEvhGrwG2sAe4 +hKmMk3qd2GiSvuESeDl+2ZVzACDK0y/lFayvPbeeoQpBWGgIKN1WPs+q2/292wwW +LRNWNrUuwt2ru92g4Hm/abCK0lfOrnCgU5eV+thZ2IshnfvsQpyweri8YpjOTil3 +y8yUDUv0MmcpNdoNw/MuvV8NRswkil9btfjEG6Mn9ByXBtq8lAix3XA1aaQKch8d +ji6ud4ZZEP8sXX5Q6gqgBOI/naGoErCHwtU9kwIDAQABAoIBAFJRKAp0QEZmTHPB +MZk+4r0asIoFpziXLFgIHu7C2DPOzK1Umzj1DCKlPB3wOqi7Ym2jOSWdcnAK2EPW +dAGgJC5TSkKGjAcXixmB5RkumfKidUI0+lQh/puTurcMnvcEwglDkLkEvMBA/sSo +Pw9m486rOgOnmNzGPyViItURmD2+0yDdLl/vOsO/L1p76GCd0q0J3LqnmsQmawi7 +Zwj2Stm6BIrggG5GsF204Iet5219TYLo4g1Qb2AlJ9C8P1FtAWhMwJalDxH9Os2/ +KCDjnaq5n3bXbIU+3QjskjeVXL/Fnbhjnh4zs1EA7eHzl9dCGbcZ2LOimo2PRo8q +wVQmz4ECgYEA9dhiu74TxRVoaO5N2X+FsMzRO8gZdP3Z9IrV4jVN8WT4Vdp0snoF +gkVkqqbQUNKUb5K6B3Js/qNKfcjLbCNq9fewTcT6WsHQdtPbX/QA6Pa2Z29wrlA2 +wrIYaAkmVaHny7wsOmgX01aOnuf2MlUnksK43sjZHdIo/m+sDKwwY1cCgYEAzHx4 +mwUDMdRF4qpDKJhthraBNejRextNQQYsHVnNaMwZ4aeQcH5l85Cgjm7VpGlbVyBQ +h4zwFvllImp3D2U3mjVkV8Tm9ID98eWvw2YDzBnS3P3SysajD23Z+BXSG9GNv/8k +oAm+bVlvnJy4haK2AcIMk1YFuDuAOmy73abk7iUCgYEAj4qVM1sq/eKfAM1LJRfg +/jbIX+hYfMePD8pUUWygIra6jJ4tjtvSBZrwyPb3IImjY3W/KoP0AcVjxAeORohz +dkP1a6L8LiuFxSuzpdW5BkyuebxGhXCOWKVVvMDC4jLTPVCUXlHSv3GFemCjjgXM +QlNxT5rjsha4Gr8nLIsJAacCgYA4VA1Q/pd7sXKy1p37X8nD8yAyvnh+Be5I/C9I +woUP2jFC9MqYAmmJJ4ziz2swiAkuPeuQ+2Tjnz2ZtmQnrIUdiJmkh8vrDGFnshKx +q7deELsCPzVCwGcIiAUkDra7DQWUHu9y2lxHePyC0rUNst2aLF8UcvzOXC2danhx +vViQtQKBgCmZ7YavE/GNWww8N3xHBJ6UPmUuhQlnAbgNCcdyz30MevBg/JbyUTs2 +slftTH15QusJ1UoITnnZuFJ40LqDvh8UhiK09ffM/IbUx839/m2vUOdFZB/WNn9g +Cy0LzddU4KE8JZ/tlk68+hM5fjLLA0aqSunaql5CKfplwLu8x1hL +-----END RSA PRIVATE KEY----- +` + keys = map[string]string{ + "ssh_host_dsa_key": `-----BEGIN DSA PRIVATE KEY----- +MIIBugIBAAKBgQDe2SIKvZdBp+InawtSXH0NotiMPhm3udyu4hh/E+icMz264kDX +v+sV7ddnSQGQWZ/eVU7Jtx29dCMD1VlFpEd7yGKzmdwJIeA+YquNWoqBRQEJsWWS +7Fsfvv83dA/DTNIQfOY3+TIs6Mb9vagbgQMU3JUWEhbLE9LCEU6UwwRlpQIVAL4p +JF83SwpE8Jx6KnDpR89npkl/AoGAAy00TdDnAXvStwrZiAFbjZi8xDmPa9WwpfhJ +Rkno45TthDLrS+WmqY8/LTwlqZdOBtoBAynMJfKkUiZM21lWWpL1hRKYdwBlIBy5 +XdR2/6wcPSuZ0tCQhDBTstX0Q3P1j198KGKvzy7q9vILKQwtSRqLS1y4JJERafdO +E+9CnGwCgYBz0WwBe2EZtGhGhBdnelTIBeo7PIsr0PzqxQj+dc8PBl8K9FfhRyOp +U39stUvoUxE9vaIFrY1P5xENjLFnPf+hlcuf40GUWEssW9YWPOaBp8afa9hY5Sxs +pvNR6eZFEFOJnx/ZgcA4g+vbrgGi5cM0W470mbGw2CkfJQUafdoIgAIUF+2I9kZe +2FTBuC9uacqczDlc+0k= +-----END DSA PRIVATE KEY-----`, + "ssh_host_rsa_key": `-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAuf76Ue2Wtae9oDtaS6rIJgO7iCFTsZUTW9LBsvx/2nli6jKU +d9tUbBRzgdbnRLJ32UljXhERuB/axlrX8/lBzUZ+oYiM0KkEEOXY1z/bcMxdRxGF +XHuf4uXvyC2XyA4+ZvBeS4j1QFyIHZ62o7gAlKMTjiek3B4AQEJAlCLmhH3jB8wc +K/IYXAOlNGM5G44/ZLQpTi8diOV6DLs7tJ7rtEQedOEJfZng5rwp0USFkqcbfDbe +9/hk0J32jZvOtZNBokYtBb4YEdIiWBzzNtHzU3Dzw61+TKVXaH5HaIvzL9iMrw9f +kJbJyogfZk9BJfemEN+xqP72jlhE8LXNhpTxFQIDAQABAoIBAHbdf+Y5+5XuNF6h +b8xpwW2h9whBnDYiOnP1VfroKWFbMB7R4lZS4joMO+FfkP8zOyqvHwTvza4pFWys +g9SUmDvy8FyVYsC7MzEFYzX0xm3o/Te898ip7P1Zy4rXsGeWysSImwqU5X+TYx3i +33/zyNM1APtZVJ+jwK9QZ+sD/uPuZK2yS03HGSMZq6ebdoOSaYhluKrxXllSLO1J +KJxDiDdy2lEFw0W8HcI3ly1lg6OI+TRqqaCcLVNF4fNJmYIFM+2VEI9BdgynIh0Q +pMZlJKgaEBcSqCymnTK81ohYD1cV4st2B0km3Sw35Rl04Ij5ITeiya3hp8VfE6UY +PljkA6UCgYEA4811FTFj+kzNZ86C4OW1T5sM4NZt8gcz6CSvVnl+bDzbEOMMyzP7 +2I9zKsR5ApdodH2m8d+RUw1Oe0bNGW5xig/DH/hn9lLQaO52JAi0we8A94dUUMSq +fUk9jKZEXpP/MlfTdJaPos9mxT7z8jREQxIiqH9AV0rLVDOCfDbSWj8CgYEA0QTE +IAUuki3UUqYKzLQrh/QmhY5KTx5amNW9XZ2VGtJvDPJrtBSBZlPEuXZAc4eBWEc7 +U3Y9QwsalzupU6Yi6+gmofaXs8xJnj+jKth1DnJvrbLLGlSmf2Ijnwt22TyFUOtt +UAknpjHutDjQPf7pUGWaCPgwwKFsdB8EBjpJF6sCgYAfXesBQAvEK08dPBJJZVfR +3kenrd71tIgxLtv1zETcIoUHjjv0vvOunhH9kZAYC0EWyTZzl5UrGmn0D4uuNMbt +e74iaNHn2P9Zc3xQ+eHp0j8P1lKFzI6tMaiH9Vz0qOw6wl0bcJ/WizhbcI+migvc +MGMVUHBLlMDqly0gbWwJgQKBgQCgtb9ut01FjANSwORQ3L8Tu3/a9Lrh9n7GQKFn +V4CLrP1BwStavOF5ojMCPo/zxF6JV8ufsqwL3n/FhFP/QyBarpb1tTqTPiHkkR2O +Ffx67TY9IdnUFv4lt3mYEiKBiW0f+MSF42Qe/wmAfKZw5IzUCirTdrFVi0huSGK5 +vxrwHQKBgHZ7RoC3I2f6F5fflA2ZAe9oJYC7XT624rY7VeOBwK0W0F47iV3euPi/ +pKvLIBLcWL1Lboo+girnmSZtIYg2iLS3b4T9VFcKWg0y4AVwmhMWe9jWIltfWAAX +9l0lNikMRGAx3eXudKXEtbGt3/cUzPVaQUHy5LiBxkxnFxgaJPXs +-----END RSA PRIVATE KEY-----`, + "ssh_host_ecdsa_key": `-----BEGIN EC PRIVATE KEY----- +MHcCAQEEINGWx0zo6fhJ/0EAfrPzVFyFC9s18lBt3cRoEDhS3ARooAoGCCqGSM49 +AwEHoUQDQgAEi9Hdw6KvZcWxfg2IDhA7UkpDtzzt6ZqJXSsFdLd+Kx4S3Sx4cVO+ +6/ZOXRnPmNAlLUqjShUsUBBngG0u2fqEqA== +-----END EC PRIVATE KEY-----`, + "authorized_keys": `ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEX/dPu4PmtvgK3La9zioCEDrJyUr6xEIK7Pr+rLgydcqWTU/kt7w7gKjOw4vvzgHfjKl09CWyvgb+y5dCiTk9MxI+erGNhs3pwaoS+EavAbawB7iEqYyTep3YaJK+4RJ4OX7ZlXMAIMrTL+UVrK89t56hCkFYaAgo3VY+z6rb/b3bDBYtE1Y2tS7C3au73aDgeb9psIrSV86ucKBTl5X62FnYiyGd++xCnLB6uLximM5OKXfLzJQNS/QyZyk12g3D8y69Xw1GzCSKX1u1+MQboyf0HJcG2ryUCLHdcDVppApyHx2OLq53hlkQ/yxdflDqCqAE4j+doagSsIfC1T2T user@host`, + } +) + +func TestMarshalParsePublicKey(t *testing.T) { + pub := getTestPublicKey(t) + + authKeys := ssh.MarshalAuthorizedKey(pub) + actualFields := strings.Fields(string(authKeys)) + if len(actualFields) == 0 { + t.Fatalf("failed authKeys: %v", authKeys) + } + + // drop the comment + expectedFields := strings.Fields(keys["authorized_keys"])[0:2] + + if !reflect.DeepEqual(actualFields, expectedFields) { + t.Errorf("got %v, expected %v", actualFields, expectedFields) + } + + actPub, _, _, _, ok := ssh.ParseAuthorizedKey([]byte(keys["authorized_keys"])) + if !ok { + t.Fatalf("cannot parse %v", keys["authorized_keys"]) + } + if !reflect.DeepEqual(actPub, pub) { + t.Errorf("got %v, expected %v", actPub, pub) + } +} + +type authResult struct { + pubKey interface{} //*rsa.PublicKey + options []string + comments string + rest string + ok bool +} + +func testAuthorizedKeys(t *testing.T, authKeys []byte, expected []authResult) { + rest := authKeys + var values []authResult + for len(rest) > 0 { + var r authResult + r.pubKey, r.comments, r.options, rest, r.ok = ssh.ParseAuthorizedKey(rest) + r.rest = string(rest) + values = append(values, r) + } + + if !reflect.DeepEqual(values, expected) { + t.Errorf("got %q, expected %q", values, expected) + } + +} + +func getTestPublicKey(t *testing.T) ssh.PublicKey { + priv, err := ssh.ParsePrivateKey([]byte(testClientPrivateKey)) + if err != nil { + t.Fatalf("ParsePrivateKey: %v", err) + } + + return priv.PublicKey() +} + +func TestAuth(t *testing.T) { + pub := getTestPublicKey(t) + rest2 := strings.Join(authWithOptions[3:], "\n") + rest3 := strings.Join(authWithOptions[6:], "\n") + testAuthorizedKeys(t, []byte(authOptions), []authResult{ + {pub, []string{`env="HOME=/home/root"`, "no-port-forwarding"}, "user@host", rest2, true}, + {pub, []string{`env="HOME=/home/root2"`}, "user2@host2", rest3, true}, + {nil, nil, "", "", false}, + }) +} + +func TestAuthWithCRLF(t *testing.T) { + pub := getTestPublicKey(t) + rest2 := strings.Join(authWithOptions[3:], "\r\n") + rest3 := strings.Join(authWithOptions[6:], "\r\n") + testAuthorizedKeys(t, []byte(authWithCRLF), []authResult{ + {pub, []string{`env="HOME=/home/root"`, "no-port-forwarding"}, "user@host", rest2, true}, + {pub, []string{`env="HOME=/home/root2"`}, "user2@host2", rest3, true}, + {nil, nil, "", "", false}, + }) +} + +func TestAuthWithQuotedSpaceInEnv(t *testing.T) { + pub := getTestPublicKey(t) + testAuthorizedKeys(t, []byte(authWithQuotedSpaceInEnv), []authResult{ + {pub, []string{`env="HOME=/home/root dir"`, "no-port-forwarding"}, "user@host", "", true}, + }) +} + +func TestAuthWithQuotedCommaInEnv(t *testing.T) { + pub := getTestPublicKey(t) + testAuthorizedKeys(t, []byte(authWithQuotedCommaInEnv), []authResult{ + {pub, []string{`env="HOME=/home/root,dir"`, "no-port-forwarding"}, "user@host", "", true}, + }) +} + +func TestAuthWithQuotedQuoteInEnv(t *testing.T) { + pub := getTestPublicKey(t) + testAuthorizedKeys(t, []byte(authWithQuotedQuoteInEnv), []authResult{ + {pub, []string{`env="HOME=/home/\"root dir"`, "no-port-forwarding"}, "user@host", "", true}, + }) + + testAuthorizedKeys(t, []byte(authWithDoubleQuotedQuote), []authResult{ + {pub, []string{"no-port-forwarding", `env="HOME=/home/ \"root dir\""`}, "user@host", "", true}, + }) + +} + +func TestAuthWithInvalidSpace(t *testing.T) { + testAuthorizedKeys(t, []byte(authWithInvalidSpace), []authResult{ + {nil, nil, "", "", false}, + }) +} + +func TestAuthWithMissingQuote(t *testing.T) { + pub := getTestPublicKey(t) + testAuthorizedKeys(t, []byte(authWithMissingQuote), []authResult{ + {pub, []string{`env="HOME=/home/root"`, `shared-control`}, "user@host", "", true}, + }) +} + +func TestInvalidEntry(t *testing.T) { + _, _, _, _, ok := ssh.ParseAuthorizedKey(authInvalid) + if ok { + t.Errorf("Expected invalid entry, returned valid entry") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/session_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/session_test.go new file mode 100644 index 00000000..bd7307dd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/session_test.go @@ -0,0 +1,185 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !windows + +package test + +// Session functional tests. + +import ( + "bytes" + "code.google.com/p/go.crypto/ssh" + "io" + "strings" + "testing" +) + +func TestRunCommandSuccess(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + session, err := conn.NewSession() + if err != nil { + t.Fatalf("session failed: %v", err) + } + defer session.Close() + err = session.Run("true") + if err != nil { + t.Fatalf("session failed: %v", err) + } +} + +func TestHostKeyCheck(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + + conf := clientConfig() + k := conf.HostKeyChecker.(*storedHostKey) + + // change the keys. + k.keys[ssh.KeyAlgoRSA][25]++ + k.keys[ssh.KeyAlgoDSA][25]++ + k.keys[ssh.KeyAlgoECDSA256][25]++ + + conn, err := server.TryDial(conf) + if err == nil { + conn.Close() + t.Fatalf("dial should have failed.") + } else if !strings.Contains(err.Error(), "host key mismatch") { + t.Fatalf("'host key mismatch' not found in %v", err) + } +} + +func TestRunCommandFailed(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + session, err := conn.NewSession() + if err != nil { + t.Fatalf("session failed: %v", err) + } + defer session.Close() + err = session.Run(`bash -c "kill -9 $$"`) + if err == nil { + t.Fatalf("session succeeded: %v", err) + } +} + +func TestRunCommandWeClosed(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + session, err := conn.NewSession() + if err != nil { + t.Fatalf("session failed: %v", err) + } + err = session.Shell() + if err != nil { + t.Fatalf("shell failed: %v", err) + } + err = session.Close() + if err != nil { + t.Fatalf("shell failed: %v", err) + } +} + +func TestFuncLargeRead(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + session, err := conn.NewSession() + if err != nil { + t.Fatalf("unable to create new session: %s", err) + } + + stdout, err := session.StdoutPipe() + if err != nil { + t.Fatalf("unable to acquire stdout pipe: %s", err) + } + + err = session.Start("dd if=/dev/urandom bs=2048 count=1") + if err != nil { + t.Fatalf("unable to execute remote command: %s", err) + } + + buf := new(bytes.Buffer) + n, err := io.Copy(buf, stdout) + if err != nil { + t.Fatalf("error reading from remote stdout: %s", err) + } + + if n != 2048 { + t.Fatalf("Expected %d bytes but read only %d from remote command", 2048, n) + } +} + +func TestInvalidTerminalMode(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + session, err := conn.NewSession() + if err != nil { + t.Fatalf("session failed: %v", err) + } + defer session.Close() + + if err = session.RequestPty("vt100", 80, 40, ssh.TerminalModes{255: 1984}); err == nil { + t.Fatalf("req-pty failed: successful request with invalid mode") + } +} + +func TestValidTerminalMode(t *testing.T) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + session, err := conn.NewSession() + if err != nil { + t.Fatalf("session failed: %v", err) + } + defer session.Close() + + stdout, err := session.StdoutPipe() + if err != nil { + t.Fatalf("unable to acquire stdout pipe: %s", err) + } + + stdin, err := session.StdinPipe() + if err != nil { + t.Fatalf("unable to acquire stdin pipe: %s", err) + } + + tm := ssh.TerminalModes{ssh.ECHO: 0} + if err = session.RequestPty("xterm", 80, 40, tm); err != nil { + t.Fatalf("req-pty failed: %s", err) + } + + err = session.Shell() + if err != nil { + t.Fatalf("session failed: %s", err) + } + + stdin.Write([]byte("stty -a && exit\n")) + + var buf bytes.Buffer + if _, err := io.Copy(&buf, stdout); err != nil { + t.Fatalf("reading failed: %s", err) + } + + if sttyOutput := buf.String(); !strings.Contains(sttyOutput, "-echo ") { + t.Fatalf("terminal mode failure: expected -echo in stty output, got %s", sttyOutput) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/tcpip_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/tcpip_test.go new file mode 100644 index 00000000..ee06b60b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/tcpip_test.go @@ -0,0 +1,47 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !windows + +package test + +// direct-tcpip functional tests + +import ( + "net" + "net/http" + "testing" +) + +func TestTCPIPHTTP(t *testing.T) { + // google.com will generate at least one redirect, possibly three + // depending on your location. + doTest(t, "http://google.com") +} + +func TestTCPIPHTTPS(t *testing.T) { + doTest(t, "https://encrypted.google.com/") +} + +func doTest(t *testing.T, url string) { + server := newServer(t) + defer server.Shutdown() + conn := server.Dial(clientConfig()) + defer conn.Close() + + tr := &http.Transport{ + Dial: func(n, addr string) (net.Conn, error) { + return conn.Dial(n, addr) + }, + } + client := &http.Client{ + Transport: tr, + } + resp, err := client.Get(url) + if err != nil { + t.Fatalf("unable to proxy: %s", err) + } + // got a body without error + t.Log(resp) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/test_unix_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/test_unix_test.go new file mode 100644 index 00000000..86df3f48 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/test/test_unix_test.go @@ -0,0 +1,296 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build darwin freebsd linux netbsd openbsd plan9 + +package test + +// functional test harness for unix. + +import ( + "bytes" + "fmt" + "io" + "io/ioutil" + "log" + "net" + "os" + "os/exec" + "os/user" + "path/filepath" + "testing" + "text/template" + + "code.google.com/p/go.crypto/ssh" +) + +const sshd_config = ` +Protocol 2 +HostKey {{.Dir}}/ssh_host_rsa_key +HostKey {{.Dir}}/ssh_host_dsa_key +HostKey {{.Dir}}/ssh_host_ecdsa_key +Pidfile {{.Dir}}/sshd.pid +#UsePrivilegeSeparation no +KeyRegenerationInterval 3600 +ServerKeyBits 768 +SyslogFacility AUTH +LogLevel DEBUG2 +LoginGraceTime 120 +PermitRootLogin no +StrictModes no +RSAAuthentication yes +PubkeyAuthentication yes +AuthorizedKeysFile {{.Dir}}/authorized_keys +IgnoreRhosts yes +RhostsRSAAuthentication no +HostbasedAuthentication no +` + +var ( + configTmpl template.Template + privateKey ssh.Signer + hostKeyRSA ssh.Signer + hostKeyECDSA ssh.Signer + hostKeyDSA ssh.Signer +) + +func init() { + template.Must(configTmpl.Parse(sshd_config)) + + for n, k := range map[string]*ssh.Signer{ + "ssh_host_ecdsa_key": &hostKeyECDSA, + "ssh_host_rsa_key": &hostKeyRSA, + "ssh_host_dsa_key": &hostKeyDSA, + } { + var err error + *k, err = ssh.ParsePrivateKey([]byte(keys[n])) + if err != nil { + panic(fmt.Sprintf("ParsePrivateKey(%q): %v", n, err)) + } + } + + var err error + privateKey, err = ssh.ParsePrivateKey([]byte(testClientPrivateKey)) + if err != nil { + panic(fmt.Sprintf("ParsePrivateKey: %v", err)) + } +} + +type server struct { + t *testing.T + cleanup func() // executed during Shutdown + configfile string + cmd *exec.Cmd + output bytes.Buffer // holds stderr from sshd process + + // Client half of the network connection. + clientConn net.Conn +} + +func username() string { + var username string + if user, err := user.Current(); err == nil { + username = user.Username + } else { + // user.Current() currently requires cgo. If an error is + // returned attempt to get the username from the environment. + log.Printf("user.Current: %v; falling back on $USER", err) + username = os.Getenv("USER") + } + if username == "" { + panic("Unable to get username") + } + return username +} + +type storedHostKey struct { + // keys map from an algorithm string to binary key data. + keys map[string][]byte +} + +func (k *storedHostKey) Add(key ssh.PublicKey) { + if k.keys == nil { + k.keys = map[string][]byte{} + } + k.keys[key.PublicKeyAlgo()] = ssh.MarshalPublicKey(key) +} + +func (k *storedHostKey) Check(addr string, remote net.Addr, algo string, key []byte) error { + if k.keys == nil || bytes.Compare(key, k.keys[algo]) != 0 { + return fmt.Errorf("host key mismatch. Got %q, want %q", key, k.keys[algo]) + } + return nil +} + +func clientConfig() *ssh.ClientConfig { + keyChecker := storedHostKey{} + keyChecker.Add(hostKeyECDSA.PublicKey()) + keyChecker.Add(hostKeyRSA.PublicKey()) + keyChecker.Add(hostKeyDSA.PublicKey()) + + kc := new(keychain) + kc.keys = append(kc.keys, privateKey) + config := &ssh.ClientConfig{ + User: username(), + Auth: []ssh.ClientAuth{ + ssh.ClientAuthKeyring(kc), + }, + HostKeyChecker: &keyChecker, + } + return config +} + +// unixConnection creates two halves of a connected net.UnixConn. It +// is used for connecting the Go SSH client with sshd without opening +// ports. +func unixConnection() (*net.UnixConn, *net.UnixConn, error) { + dir, err := ioutil.TempDir("", "unixConnection") + if err != nil { + return nil, nil, err + } + defer os.Remove(dir) + + addr := filepath.Join(dir, "ssh") + listener, err := net.Listen("unix", addr) + if err != nil { + return nil, nil, err + } + defer listener.Close() + c1, err := net.Dial("unix", addr) + if err != nil { + return nil, nil, err + } + + c2, err := listener.Accept() + if err != nil { + c1.Close() + return nil, nil, err + } + + return c1.(*net.UnixConn), c2.(*net.UnixConn), nil +} + +func (s *server) TryDial(config *ssh.ClientConfig) (*ssh.ClientConn, error) { + sshd, err := exec.LookPath("sshd") + if err != nil { + s.t.Skipf("skipping test: %v", err) + } + + c1, c2, err := unixConnection() + if err != nil { + s.t.Fatalf("unixConnection: %v", err) + } + + s.cmd = exec.Command(sshd, "-f", s.configfile, "-i", "-e") + f, err := c2.File() + if err != nil { + s.t.Fatalf("UnixConn.File: %v", err) + } + defer f.Close() + s.cmd.Stdin = f + s.cmd.Stdout = f + s.cmd.Stderr = &s.output + if err := s.cmd.Start(); err != nil { + s.t.Fail() + s.Shutdown() + s.t.Fatalf("s.cmd.Start: %v", err) + } + s.clientConn = c1 + return ssh.Client(c1, config) +} + +func (s *server) Dial(config *ssh.ClientConfig) *ssh.ClientConn { + conn, err := s.TryDial(config) + if err != nil { + s.t.Fail() + s.Shutdown() + s.t.Fatalf("ssh.Client: %v", err) + } + return conn +} + +func (s *server) Shutdown() { + if s.cmd != nil && s.cmd.Process != nil { + // Don't check for errors; if it fails it's most + // likely "os: process already finished", and we don't + // care about that. Use os.Interrupt, so child + // processes are killed too. + s.cmd.Process.Signal(os.Interrupt) + s.cmd.Wait() + } + if s.t.Failed() { + // log any output from sshd process + s.t.Logf("sshd: %s", s.output.String()) + } + s.cleanup() +} + +// newServer returns a new mock ssh server. +func newServer(t *testing.T) *server { + dir, err := ioutil.TempDir("", "sshtest") + if err != nil { + t.Fatal(err) + } + f, err := os.Create(filepath.Join(dir, "sshd_config")) + if err != nil { + t.Fatal(err) + } + err = configTmpl.Execute(f, map[string]string{ + "Dir": dir, + }) + if err != nil { + t.Fatal(err) + } + f.Close() + + for k, v := range keys { + f, err := os.OpenFile(filepath.Join(dir, k), os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0600) + if err != nil { + t.Fatal(err) + } + if _, err := f.Write([]byte(v)); err != nil { + t.Fatal(err) + } + f.Close() + } + + return &server{ + t: t, + configfile: f.Name(), + cleanup: func() { + if err := os.RemoveAll(dir); err != nil { + t.Error(err) + } + }, + } +} + +// keychain implements the ClientKeyring interface. +type keychain struct { + keys []ssh.Signer +} + +func (k *keychain) Key(i int) (ssh.PublicKey, error) { + if i < 0 || i >= len(k.keys) { + return nil, nil + } + return k.keys[i].PublicKey(), nil +} + +func (k *keychain) Sign(i int, rand io.Reader, data []byte) (sig []byte, err error) { + return k.keys[i].Sign(rand, data) +} + +func (k *keychain) loadPEM(file string) error { + buf, err := ioutil.ReadFile(file) + if err != nil { + return err + } + key, err := ssh.ParsePrivateKey(buf) + if err != nil { + return err + } + k.keys = append(k.keys, key) + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/transport.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/transport.go new file mode 100644 index 00000000..46fa2626 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/transport.go @@ -0,0 +1,426 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bufio" + "crypto/cipher" + "crypto/subtle" + "encoding/binary" + "errors" + "hash" + "io" + "net" + "sync" +) + +const ( + packetSizeMultiple = 16 // TODO(huin) this should be determined by the cipher. + + // RFC 4253 section 6.1 defines a minimum packet size of 32768 that implementations + // MUST be able to process (plus a few more kilobytes for padding and mac). The RFC + // indicates implementations SHOULD be able to handle larger packet sizes, but then + // waffles on about reasonable limits. + // + // OpenSSH caps their maxPacket at 256kb so we choose to do the same. + maxPacket = 256 * 1024 +) + +// packetConn represents a transport that implements packet based +// operations. +type packetConn interface { + // Encrypt and send a packet of data to the remote peer. + writePacket(packet []byte) error + + // Read a packet from the connection + readPacket() ([]byte, error) + + // Close closes the write-side of the connection. + Close() error +} + +// transport represents the SSH connection to the remote peer. +type transport struct { + reader + writer + + net.Conn + + // Initial H used for the session ID. Once assigned this does + // not change, even during subsequent key exchanges. + sessionID []byte +} + +// reader represents the incoming connection state. +type reader struct { + io.Reader + common +} + +// writer represents the outgoing connection state. +type writer struct { + sync.Mutex // protects writer.Writer from concurrent writes + *bufio.Writer + rand io.Reader + common +} + +// prepareKeyChange sets up key material for a keychange. The key changes in +// both directions are triggered by reading and writing a msgNewKey packet +// respectively. +func (t *transport) prepareKeyChange(algs *algorithms, kexResult *kexResult) error { + t.writer.cipherAlgo = algs.wCipher + t.writer.macAlgo = algs.wMAC + t.writer.compressionAlgo = algs.wCompression + + t.reader.cipherAlgo = algs.rCipher + t.reader.macAlgo = algs.rMAC + t.reader.compressionAlgo = algs.rCompression + + if t.sessionID == nil { + t.sessionID = kexResult.H + } + + kexResult.SessionID = t.sessionID + t.reader.pendingKeyChange <- kexResult + t.writer.pendingKeyChange <- kexResult + return nil +} + +// common represents the cipher state needed to process messages in a single +// direction. +type common struct { + seqNum uint32 + mac hash.Hash + cipher cipher.Stream + + cipherAlgo string + macAlgo string + compressionAlgo string + + dir direction + pendingKeyChange chan *kexResult +} + +// Read and decrypt a single packet from the remote peer. +func (r *reader) readPacket() ([]byte, error) { + var lengthBytes = make([]byte, 5) + var macSize uint32 + if _, err := io.ReadFull(r, lengthBytes); err != nil { + return nil, err + } + + r.cipher.XORKeyStream(lengthBytes, lengthBytes) + + if r.mac != nil { + r.mac.Reset() + seqNumBytes := []byte{ + byte(r.seqNum >> 24), + byte(r.seqNum >> 16), + byte(r.seqNum >> 8), + byte(r.seqNum), + } + r.mac.Write(seqNumBytes) + r.mac.Write(lengthBytes) + macSize = uint32(r.mac.Size()) + } + + length := binary.BigEndian.Uint32(lengthBytes[0:4]) + paddingLength := uint32(lengthBytes[4]) + + if length <= paddingLength+1 { + return nil, errors.New("ssh: invalid packet length, packet too small") + } + + if length > maxPacket { + return nil, errors.New("ssh: invalid packet length, packet too large") + } + + packet := make([]byte, length-1+macSize) + if _, err := io.ReadFull(r, packet); err != nil { + return nil, err + } + mac := packet[length-1:] + r.cipher.XORKeyStream(packet, packet[:length-1]) + + if r.mac != nil { + r.mac.Write(packet[:length-1]) + if subtle.ConstantTimeCompare(r.mac.Sum(nil), mac) != 1 { + return nil, errors.New("ssh: MAC failure") + } + } + + r.seqNum++ + packet = packet[:length-paddingLength-1] + + if len(packet) > 0 && packet[0] == msgNewKeys { + select { + case k := <-r.pendingKeyChange: + if err := r.setupKeys(r.dir, k); err != nil { + return nil, err + } + default: + return nil, errors.New("ssh: got bogus newkeys message.") + } + } + return packet, nil +} + +// Read and decrypt next packet discarding debug and noop messages. +func (t *transport) readPacket() ([]byte, error) { + for { + packet, err := t.reader.readPacket() + if err != nil { + return nil, err + } + if len(packet) == 0 { + return nil, errors.New("ssh: zero length packet") + } + + if packet[0] != msgIgnore && packet[0] != msgDebug { + return packet, nil + } + } + panic("unreachable") +} + +// Encrypt and send a packet of data to the remote peer. +func (w *writer) writePacket(packet []byte) error { + changeKeys := len(packet) > 0 && packet[0] == msgNewKeys + + if len(packet) > maxPacket { + return errors.New("ssh: packet too large") + } + w.Mutex.Lock() + defer w.Mutex.Unlock() + + paddingLength := packetSizeMultiple - (5+len(packet))%packetSizeMultiple + if paddingLength < 4 { + paddingLength += packetSizeMultiple + } + + length := len(packet) + 1 + paddingLength + lengthBytes := []byte{ + byte(length >> 24), + byte(length >> 16), + byte(length >> 8), + byte(length), + byte(paddingLength), + } + padding := make([]byte, paddingLength) + _, err := io.ReadFull(w.rand, padding) + if err != nil { + return err + } + + if w.mac != nil { + w.mac.Reset() + seqNumBytes := []byte{ + byte(w.seqNum >> 24), + byte(w.seqNum >> 16), + byte(w.seqNum >> 8), + byte(w.seqNum), + } + w.mac.Write(seqNumBytes) + w.mac.Write(lengthBytes) + w.mac.Write(packet) + w.mac.Write(padding) + } + + // TODO(dfc) lengthBytes, packet and padding should be + // subslices of a single buffer + w.cipher.XORKeyStream(lengthBytes, lengthBytes) + w.cipher.XORKeyStream(packet, packet) + w.cipher.XORKeyStream(padding, padding) + + if _, err := w.Write(lengthBytes); err != nil { + return err + } + if _, err := w.Write(packet); err != nil { + return err + } + if _, err := w.Write(padding); err != nil { + return err + } + + if w.mac != nil { + if _, err := w.Write(w.mac.Sum(nil)); err != nil { + return err + } + } + + w.seqNum++ + if err = w.Flush(); err != nil { + return err + } + + if changeKeys { + select { + case k := <-w.pendingKeyChange: + err = w.setupKeys(w.dir, k) + default: + panic("ssh: no key material for msgNewKeys") + } + } + return err +} + +func newTransport(conn net.Conn, rand io.Reader, isClient bool) *transport { + t := &transport{ + reader: reader{ + Reader: bufio.NewReader(conn), + common: common{ + cipher: noneCipher{}, + pendingKeyChange: make(chan *kexResult, 1), + }, + }, + writer: writer{ + Writer: bufio.NewWriter(conn), + rand: rand, + common: common{ + cipher: noneCipher{}, + pendingKeyChange: make(chan *kexResult, 1), + }, + }, + Conn: conn, + } + if isClient { + t.reader.dir = serverKeys + t.writer.dir = clientKeys + } else { + t.reader.dir = clientKeys + t.writer.dir = serverKeys + } + + return t +} + +type direction struct { + ivTag []byte + keyTag []byte + macKeyTag []byte +} + +// TODO(dfc) can this be made a constant ? +var ( + serverKeys = direction{[]byte{'B'}, []byte{'D'}, []byte{'F'}} + clientKeys = direction{[]byte{'A'}, []byte{'C'}, []byte{'E'}} +) + +// setupKeys sets the cipher and MAC keys from kex.K, kex.H and sessionId, as +// described in RFC 4253, section 6.4. direction should either be serverKeys +// (to setup server->client keys) or clientKeys (for client->server keys). +func (c *common) setupKeys(d direction, r *kexResult) error { + cipherMode := cipherModes[c.cipherAlgo] + macMode := macModes[c.macAlgo] + + iv := make([]byte, cipherMode.ivSize) + key := make([]byte, cipherMode.keySize) + macKey := make([]byte, macMode.keySize) + + h := r.Hash.New() + generateKeyMaterial(iv, d.ivTag, r.K, r.H, r.SessionID, h) + generateKeyMaterial(key, d.keyTag, r.K, r.H, r.SessionID, h) + generateKeyMaterial(macKey, d.macKeyTag, r.K, r.H, r.SessionID, h) + + c.mac = macMode.new(macKey) + + var err error + c.cipher, err = cipherMode.createCipher(key, iv) + return err +} + +// generateKeyMaterial fills out with key material generated from tag, K, H +// and sessionId, as specified in RFC 4253, section 7.2. +func generateKeyMaterial(out, tag []byte, K, H, sessionId []byte, h hash.Hash) { + var digestsSoFar []byte + + for len(out) > 0 { + h.Reset() + h.Write(K) + h.Write(H) + + if len(digestsSoFar) == 0 { + h.Write(tag) + h.Write(sessionId) + } else { + h.Write(digestsSoFar) + } + + digest := h.Sum(nil) + n := copy(out, digest) + out = out[n:] + if len(out) > 0 { + digestsSoFar = append(digestsSoFar, digest...) + } + } +} + +const packageVersion = "SSH-2.0-Go" + +// Sends and receives a version line. The versionLine string should +// be US ASCII, start with "SSH-2.0-", and should not include a +// newline. exchangeVersions returns the other side's version line. +func exchangeVersions(rw io.ReadWriter, versionLine []byte) (them []byte, err error) { + // Contrary to the RFC, we do not ignore lines that don't + // start with "SSH-2.0-" to make the library usable with + // nonconforming servers. + for _, c := range versionLine { + // The spec disallows non US-ASCII chars, and + // specifically forbids null chars. + if c < 32 { + return nil, errors.New("ssh: junk character in version line") + } + } + if _, err = rw.Write(append(versionLine, '\r', '\n')); err != nil { + return + } + + them, err = readVersion(rw) + return them, err +} + +// maxVersionStringBytes is the maximum number of bytes that we'll +// accept as a version string. RFC 4253 section 4.2 limits this at 255 +// chars +const maxVersionStringBytes = 255 + +// Read version string as specified by RFC 4253, section 4.2. +func readVersion(r io.Reader) ([]byte, error) { + versionString := make([]byte, 0, 64) + var ok bool + var buf [1]byte + + for len(versionString) < maxVersionStringBytes { + _, err := io.ReadFull(r, buf[:]) + if err != nil { + return nil, err + } + // The RFC says that the version should be terminated with \r\n + // but several SSH servers actually only send a \n. + if buf[0] == '\n' { + ok = true + break + } + + // non ASCII chars are disallowed, but we are lenient, + // since Go doesn't use null-terminated strings. + + // The RFC allows a comment after a space, however, + // all of it (version and comments) goes into the + // session hash. + versionString = append(versionString, buf[0]) + } + + if !ok { + return nil, errors.New("ssh: overflow reading version string") + } + + // There might be a '\r' on the end which we should remove. + if len(versionString) > 0 && versionString[len(versionString)-1] == '\r' { + versionString = versionString[:len(versionString)-1] + } + return versionString, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/transport_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/transport_test.go new file mode 100644 index 00000000..33201146 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/ssh/transport_test.go @@ -0,0 +1,69 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "strings" + "testing" +) + +func TestReadVersion(t *testing.T) { + longversion := strings.Repeat("SSH-2.0-bla", 50)[:253] + cases := map[string]string{ + "SSH-2.0-bla\r\n": "SSH-2.0-bla", + "SSH-2.0-bla\n": "SSH-2.0-bla", + longversion + "\r\n": longversion, + } + + for in, want := range cases { + result, err := readVersion(bytes.NewBufferString(in)) + if err != nil { + t.Errorf("readVersion(%q): %s", in, err) + } + got := string(result) + if got != want { + t.Errorf("got %q, want %q", got, want) + } + } +} + +func TestReadVersionError(t *testing.T) { + longversion := strings.Repeat("SSH-2.0-bla", 50)[:253] + cases := []string{ + longversion + "too-long\r\n", + } + for _, in := range cases { + if _, err := readVersion(bytes.NewBufferString(in)); err == nil { + t.Errorf("readVersion(%q) should have failed", in) + } + } +} + +func TestExchangeVersionsBasic(t *testing.T) { + v := "SSH-2.0-bla" + buf := bytes.NewBufferString(v + "\r\n") + them, err := exchangeVersions(buf, []byte("xyz")) + if err != nil { + t.Errorf("exchangeVersions: %v", err) + } + + if want := "SSH-2.0-bla"; string(them) != want { + t.Errorf("got %q want %q for our version", them, want) + } +} + +func TestExchangeVersions(t *testing.T) { + cases := []string{ + "not\x000allowed", + "not allowed\n", + } + for _, c := range cases { + buf := bytes.NewBufferString("SSH-2.0-bla\r\n") + if _, err := exchangeVersions(buf, []byte(c)); err == nil { + t.Errorf("exchangeVersions(%q): should have failed", c) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/twofish/twofish.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/twofish/twofish.go new file mode 100644 index 00000000..a930218c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/twofish/twofish.go @@ -0,0 +1,342 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package twofish implements Bruce Schneier's Twofish encryption algorithm. +package twofish + +// Twofish is defined in http://www.schneier.com/paper-twofish-paper.pdf [TWOFISH] + +// This code is a port of the LibTom C implementation. +// See http://libtom.org/?page=features&newsitems=5&whatfile=crypt. +// LibTomCrypt is free for all purposes under the public domain. +// It was heavily inspired by the go blowfish package. + +import "strconv" + +// BlockSize is the constant block size of Twofish. +const BlockSize = 16 + +const mdsPolynomial = 0x169 // x^8 + x^6 + x^5 + x^3 + 1, see [TWOFISH] 4.2 +const rsPolynomial = 0x14d // x^8 + x^6 + x^3 + x^2 + 1, see [TWOFISH] 4.3 + +// A Cipher is an instance of Twofish encryption using a particular key. +type Cipher struct { + s [4][256]uint32 + k [40]uint32 +} + +type KeySizeError int + +func (k KeySizeError) Error() string { + return "crypto/twofish: invalid key size " + strconv.Itoa(int(k)) +} + +// NewCipher creates and returns a Cipher. +// The key argument should be the Twofish key, 16, 24 or 32 bytes. +func NewCipher(key []byte) (*Cipher, error) { + keylen := len(key) + + if keylen != 16 && keylen != 24 && keylen != 32 { + return nil, KeySizeError(keylen) + } + + // k is the number of 64 bit words in key + k := keylen / 8 + + // Create the S[..] words + var S [4 * 4]byte + for i := 0; i < k; i++ { + // Computes [y0 y1 y2 y3] = rs . [x0 x1 x2 x3 x4 x5 x6 x7] + for j, rsRow := range rs { + for k, rsVal := range rsRow { + S[4*i+j] ^= gfMult(key[8*i+k], rsVal, rsPolynomial) + } + } + } + + // Calculate subkeys + c := new(Cipher) + var tmp [4]byte + for i := byte(0); i < 20; i++ { + // A = h(p * 2x, Me) + for j := range tmp { + tmp[j] = 2 * i + } + A := h(tmp[:], key, 0) + + // B = rolc(h(p * (2x + 1), Mo), 8) + for j := range tmp { + tmp[j] = 2*i + 1 + } + B := h(tmp[:], key, 1) + B = rol(B, 8) + + c.k[2*i] = A + B + + // K[2i+1] = (A + 2B) <<< 9 + c.k[2*i+1] = rol(2*B+A, 9) + } + + // Calculate sboxes + switch k { + case 2: + for i := range c.s[0] { + c.s[0][i] = mdsColumnMult(sbox[1][sbox[0][sbox[0][byte(i)]^S[0]]^S[4]], 0) + c.s[1][i] = mdsColumnMult(sbox[0][sbox[0][sbox[1][byte(i)]^S[1]]^S[5]], 1) + c.s[2][i] = mdsColumnMult(sbox[1][sbox[1][sbox[0][byte(i)]^S[2]]^S[6]], 2) + c.s[3][i] = mdsColumnMult(sbox[0][sbox[1][sbox[1][byte(i)]^S[3]]^S[7]], 3) + } + case 3: + for i := range c.s[0] { + c.s[0][i] = mdsColumnMult(sbox[1][sbox[0][sbox[0][sbox[1][byte(i)]^S[0]]^S[4]]^S[8]], 0) + c.s[1][i] = mdsColumnMult(sbox[0][sbox[0][sbox[1][sbox[1][byte(i)]^S[1]]^S[5]]^S[9]], 1) + c.s[2][i] = mdsColumnMult(sbox[1][sbox[1][sbox[0][sbox[0][byte(i)]^S[2]]^S[6]]^S[10]], 2) + c.s[3][i] = mdsColumnMult(sbox[0][sbox[1][sbox[1][sbox[0][byte(i)]^S[3]]^S[7]]^S[11]], 3) + } + default: + for i := range c.s[0] { + c.s[0][i] = mdsColumnMult(sbox[1][sbox[0][sbox[0][sbox[1][sbox[1][byte(i)]^S[0]]^S[4]]^S[8]]^S[12]], 0) + c.s[1][i] = mdsColumnMult(sbox[0][sbox[0][sbox[1][sbox[1][sbox[0][byte(i)]^S[1]]^S[5]]^S[9]]^S[13]], 1) + c.s[2][i] = mdsColumnMult(sbox[1][sbox[1][sbox[0][sbox[0][sbox[0][byte(i)]^S[2]]^S[6]]^S[10]]^S[14]], 2) + c.s[3][i] = mdsColumnMult(sbox[0][sbox[1][sbox[1][sbox[0][sbox[1][byte(i)]^S[3]]^S[7]]^S[11]]^S[15]], 3) + } + } + + return c, nil +} + +// BlockSize returns the Twofish block size, 16 bytes. +func (c *Cipher) BlockSize() int { return BlockSize } + +// store32l stores src in dst in little-endian form. +func store32l(dst []byte, src uint32) { + dst[0] = byte(src) + dst[1] = byte(src >> 8) + dst[2] = byte(src >> 16) + dst[3] = byte(src >> 24) + return +} + +// load32l reads a little-endian uint32 from src. +func load32l(src []byte) uint32 { + return uint32(src[0]) | uint32(src[1])<<8 | uint32(src[2])<<16 | uint32(src[3])<<24 +} + +// rol returns x after a left circular rotation of y bits. +func rol(x, y uint32) uint32 { + return (x << (y & 31)) | (x >> (32 - (y & 31))) +} + +// ror returns x after a right circular rotation of y bits. +func ror(x, y uint32) uint32 { + return (x >> (y & 31)) | (x << (32 - (y & 31))) +} + +// The RS matrix. See [TWOFISH] 4.3 +var rs = [4][8]byte{ + {0x01, 0xA4, 0x55, 0x87, 0x5A, 0x58, 0xDB, 0x9E}, + {0xA4, 0x56, 0x82, 0xF3, 0x1E, 0xC6, 0x68, 0xE5}, + {0x02, 0xA1, 0xFC, 0xC1, 0x47, 0xAE, 0x3D, 0x19}, + {0xA4, 0x55, 0x87, 0x5A, 0x58, 0xDB, 0x9E, 0x03}, +} + +// sbox tables +var sbox = [2][256]byte{ + { + 0xa9, 0x67, 0xb3, 0xe8, 0x04, 0xfd, 0xa3, 0x76, 0x9a, 0x92, 0x80, 0x78, 0xe4, 0xdd, 0xd1, 0x38, + 0x0d, 0xc6, 0x35, 0x98, 0x18, 0xf7, 0xec, 0x6c, 0x43, 0x75, 0x37, 0x26, 0xfa, 0x13, 0x94, 0x48, + 0xf2, 0xd0, 0x8b, 0x30, 0x84, 0x54, 0xdf, 0x23, 0x19, 0x5b, 0x3d, 0x59, 0xf3, 0xae, 0xa2, 0x82, + 0x63, 0x01, 0x83, 0x2e, 0xd9, 0x51, 0x9b, 0x7c, 0xa6, 0xeb, 0xa5, 0xbe, 0x16, 0x0c, 0xe3, 0x61, + 0xc0, 0x8c, 0x3a, 0xf5, 0x73, 0x2c, 0x25, 0x0b, 0xbb, 0x4e, 0x89, 0x6b, 0x53, 0x6a, 0xb4, 0xf1, + 0xe1, 0xe6, 0xbd, 0x45, 0xe2, 0xf4, 0xb6, 0x66, 0xcc, 0x95, 0x03, 0x56, 0xd4, 0x1c, 0x1e, 0xd7, + 0xfb, 0xc3, 0x8e, 0xb5, 0xe9, 0xcf, 0xbf, 0xba, 0xea, 0x77, 0x39, 0xaf, 0x33, 0xc9, 0x62, 0x71, + 0x81, 0x79, 0x09, 0xad, 0x24, 0xcd, 0xf9, 0xd8, 0xe5, 0xc5, 0xb9, 0x4d, 0x44, 0x08, 0x86, 0xe7, + 0xa1, 0x1d, 0xaa, 0xed, 0x06, 0x70, 0xb2, 0xd2, 0x41, 0x7b, 0xa0, 0x11, 0x31, 0xc2, 0x27, 0x90, + 0x20, 0xf6, 0x60, 0xff, 0x96, 0x5c, 0xb1, 0xab, 0x9e, 0x9c, 0x52, 0x1b, 0x5f, 0x93, 0x0a, 0xef, + 0x91, 0x85, 0x49, 0xee, 0x2d, 0x4f, 0x8f, 0x3b, 0x47, 0x87, 0x6d, 0x46, 0xd6, 0x3e, 0x69, 0x64, + 0x2a, 0xce, 0xcb, 0x2f, 0xfc, 0x97, 0x05, 0x7a, 0xac, 0x7f, 0xd5, 0x1a, 0x4b, 0x0e, 0xa7, 0x5a, + 0x28, 0x14, 0x3f, 0x29, 0x88, 0x3c, 0x4c, 0x02, 0xb8, 0xda, 0xb0, 0x17, 0x55, 0x1f, 0x8a, 0x7d, + 0x57, 0xc7, 0x8d, 0x74, 0xb7, 0xc4, 0x9f, 0x72, 0x7e, 0x15, 0x22, 0x12, 0x58, 0x07, 0x99, 0x34, + 0x6e, 0x50, 0xde, 0x68, 0x65, 0xbc, 0xdb, 0xf8, 0xc8, 0xa8, 0x2b, 0x40, 0xdc, 0xfe, 0x32, 0xa4, + 0xca, 0x10, 0x21, 0xf0, 0xd3, 0x5d, 0x0f, 0x00, 0x6f, 0x9d, 0x36, 0x42, 0x4a, 0x5e, 0xc1, 0xe0, + }, + { + 0x75, 0xf3, 0xc6, 0xf4, 0xdb, 0x7b, 0xfb, 0xc8, 0x4a, 0xd3, 0xe6, 0x6b, 0x45, 0x7d, 0xe8, 0x4b, + 0xd6, 0x32, 0xd8, 0xfd, 0x37, 0x71, 0xf1, 0xe1, 0x30, 0x0f, 0xf8, 0x1b, 0x87, 0xfa, 0x06, 0x3f, + 0x5e, 0xba, 0xae, 0x5b, 0x8a, 0x00, 0xbc, 0x9d, 0x6d, 0xc1, 0xb1, 0x0e, 0x80, 0x5d, 0xd2, 0xd5, + 0xa0, 0x84, 0x07, 0x14, 0xb5, 0x90, 0x2c, 0xa3, 0xb2, 0x73, 0x4c, 0x54, 0x92, 0x74, 0x36, 0x51, + 0x38, 0xb0, 0xbd, 0x5a, 0xfc, 0x60, 0x62, 0x96, 0x6c, 0x42, 0xf7, 0x10, 0x7c, 0x28, 0x27, 0x8c, + 0x13, 0x95, 0x9c, 0xc7, 0x24, 0x46, 0x3b, 0x70, 0xca, 0xe3, 0x85, 0xcb, 0x11, 0xd0, 0x93, 0xb8, + 0xa6, 0x83, 0x20, 0xff, 0x9f, 0x77, 0xc3, 0xcc, 0x03, 0x6f, 0x08, 0xbf, 0x40, 0xe7, 0x2b, 0xe2, + 0x79, 0x0c, 0xaa, 0x82, 0x41, 0x3a, 0xea, 0xb9, 0xe4, 0x9a, 0xa4, 0x97, 0x7e, 0xda, 0x7a, 0x17, + 0x66, 0x94, 0xa1, 0x1d, 0x3d, 0xf0, 0xde, 0xb3, 0x0b, 0x72, 0xa7, 0x1c, 0xef, 0xd1, 0x53, 0x3e, + 0x8f, 0x33, 0x26, 0x5f, 0xec, 0x76, 0x2a, 0x49, 0x81, 0x88, 0xee, 0x21, 0xc4, 0x1a, 0xeb, 0xd9, + 0xc5, 0x39, 0x99, 0xcd, 0xad, 0x31, 0x8b, 0x01, 0x18, 0x23, 0xdd, 0x1f, 0x4e, 0x2d, 0xf9, 0x48, + 0x4f, 0xf2, 0x65, 0x8e, 0x78, 0x5c, 0x58, 0x19, 0x8d, 0xe5, 0x98, 0x57, 0x67, 0x7f, 0x05, 0x64, + 0xaf, 0x63, 0xb6, 0xfe, 0xf5, 0xb7, 0x3c, 0xa5, 0xce, 0xe9, 0x68, 0x44, 0xe0, 0x4d, 0x43, 0x69, + 0x29, 0x2e, 0xac, 0x15, 0x59, 0xa8, 0x0a, 0x9e, 0x6e, 0x47, 0xdf, 0x34, 0x35, 0x6a, 0xcf, 0xdc, + 0x22, 0xc9, 0xc0, 0x9b, 0x89, 0xd4, 0xed, 0xab, 0x12, 0xa2, 0x0d, 0x52, 0xbb, 0x02, 0x2f, 0xa9, + 0xd7, 0x61, 0x1e, 0xb4, 0x50, 0x04, 0xf6, 0xc2, 0x16, 0x25, 0x86, 0x56, 0x55, 0x09, 0xbe, 0x91, + }, +} + +// gfMult returns a·b in GF(2^8)/p +func gfMult(a, b byte, p uint32) byte { + B := [2]uint32{0, uint32(b)} + P := [2]uint32{0, p} + var result uint32 + + // branchless GF multiplier + for i := 0; i < 7; i++ { + result ^= B[a&1] + a >>= 1 + B[1] = P[B[1]>>7] ^ (B[1] << 1) + } + result ^= B[a&1] + return byte(result) +} + +// mdsColumnMult calculates y{col} where [y0 y1 y2 y3] = MDS · [x0] +func mdsColumnMult(in byte, col int) uint32 { + mul01 := in + mul5B := gfMult(in, 0x5B, mdsPolynomial) + mulEF := gfMult(in, 0xEF, mdsPolynomial) + + switch col { + case 0: + return uint32(mul01) | uint32(mul5B)<<8 | uint32(mulEF)<<16 | uint32(mulEF)<<24 + case 1: + return uint32(mulEF) | uint32(mulEF)<<8 | uint32(mul5B)<<16 | uint32(mul01)<<24 + case 2: + return uint32(mul5B) | uint32(mulEF)<<8 | uint32(mul01)<<16 | uint32(mulEF)<<24 + case 3: + return uint32(mul5B) | uint32(mul01)<<8 | uint32(mulEF)<<16 | uint32(mul5B)<<24 + } + + panic("unreachable") +} + +// h implements the S-box generation function. See [TWOFISH] 4.3.5 +func h(in, key []byte, offset int) uint32 { + var y [4]byte + for x := range y { + y[x] = in[x] + } + switch len(key) / 8 { + case 4: + y[0] = sbox[1][y[0]] ^ key[4*(6+offset)+0] + y[1] = sbox[0][y[1]] ^ key[4*(6+offset)+1] + y[2] = sbox[0][y[2]] ^ key[4*(6+offset)+2] + y[3] = sbox[1][y[3]] ^ key[4*(6+offset)+3] + fallthrough + case 3: + y[0] = sbox[1][y[0]] ^ key[4*(4+offset)+0] + y[1] = sbox[1][y[1]] ^ key[4*(4+offset)+1] + y[2] = sbox[0][y[2]] ^ key[4*(4+offset)+2] + y[3] = sbox[0][y[3]] ^ key[4*(4+offset)+3] + fallthrough + case 2: + y[0] = sbox[1][sbox[0][sbox[0][y[0]]^key[4*(2+offset)+0]]^key[4*(0+offset)+0]] + y[1] = sbox[0][sbox[0][sbox[1][y[1]]^key[4*(2+offset)+1]]^key[4*(0+offset)+1]] + y[2] = sbox[1][sbox[1][sbox[0][y[2]]^key[4*(2+offset)+2]]^key[4*(0+offset)+2]] + y[3] = sbox[0][sbox[1][sbox[1][y[3]]^key[4*(2+offset)+3]]^key[4*(0+offset)+3]] + } + // [y0 y1 y2 y3] = MDS . [x0 x1 x2 x3] + var mdsMult uint32 + for i := range y { + mdsMult ^= mdsColumnMult(y[i], i) + } + return mdsMult +} + +// Encrypt encrypts a 16-byte block from src to dst, which may overlap. +// Note that for amounts of data larger than a block, +// it is not safe to just call Encrypt on successive blocks; +// instead, use an encryption mode like CBC (see crypto/cipher/cbc.go). +func (c *Cipher) Encrypt(dst, src []byte) { + S1 := c.s[0] + S2 := c.s[1] + S3 := c.s[2] + S4 := c.s[3] + + // Load input + ia := load32l(src[0:4]) + ib := load32l(src[4:8]) + ic := load32l(src[8:12]) + id := load32l(src[12:16]) + + // Pre-whitening + ia ^= c.k[0] + ib ^= c.k[1] + ic ^= c.k[2] + id ^= c.k[3] + + for i := 0; i < 8; i++ { + k := c.k[8+i*4 : 12+i*4] + t2 := S2[byte(ib)] ^ S3[byte(ib>>8)] ^ S4[byte(ib>>16)] ^ S1[byte(ib>>24)] + t1 := S1[byte(ia)] ^ S2[byte(ia>>8)] ^ S3[byte(ia>>16)] ^ S4[byte(ia>>24)] + t2 + ic = ror(ic^(t1+k[0]), 1) + id = rol(id, 1) ^ (t2 + t1 + k[1]) + + t2 = S2[byte(id)] ^ S3[byte(id>>8)] ^ S4[byte(id>>16)] ^ S1[byte(id>>24)] + t1 = S1[byte(ic)] ^ S2[byte(ic>>8)] ^ S3[byte(ic>>16)] ^ S4[byte(ic>>24)] + t2 + ia = ror(ia^(t1+k[2]), 1) + ib = rol(ib, 1) ^ (t2 + t1 + k[3]) + } + + // Output with "undo last swap" + ta := ic ^ c.k[4] + tb := id ^ c.k[5] + tc := ia ^ c.k[6] + td := ib ^ c.k[7] + + store32l(dst[0:4], ta) + store32l(dst[4:8], tb) + store32l(dst[8:12], tc) + store32l(dst[12:16], td) +} + +// Decrypt decrypts a 16-byte block from src to dst, which may overlap. +func (c *Cipher) Decrypt(dst, src []byte) { + S1 := c.s[0] + S2 := c.s[1] + S3 := c.s[2] + S4 := c.s[3] + + // Load input + ta := load32l(src[0:4]) + tb := load32l(src[4:8]) + tc := load32l(src[8:12]) + td := load32l(src[12:16]) + + // Undo undo final swap + ia := tc ^ c.k[6] + ib := td ^ c.k[7] + ic := ta ^ c.k[4] + id := tb ^ c.k[5] + + for i := 8; i > 0; i-- { + k := c.k[4+i*4 : 8+i*4] + t2 := S2[byte(id)] ^ S3[byte(id>>8)] ^ S4[byte(id>>16)] ^ S1[byte(id>>24)] + t1 := S1[byte(ic)] ^ S2[byte(ic>>8)] ^ S3[byte(ic>>16)] ^ S4[byte(ic>>24)] + t2 + ia = rol(ia, 1) ^ (t1 + k[2]) + ib = ror(ib^(t2+t1+k[3]), 1) + + t2 = S2[byte(ib)] ^ S3[byte(ib>>8)] ^ S4[byte(ib>>16)] ^ S1[byte(ib>>24)] + t1 = S1[byte(ia)] ^ S2[byte(ia>>8)] ^ S3[byte(ia>>16)] ^ S4[byte(ia>>24)] + t2 + ic = rol(ic, 1) ^ (t1 + k[0]) + id = ror(id^(t2+t1+k[1]), 1) + } + + // Undo pre-whitening + ia ^= c.k[0] + ib ^= c.k[1] + ic ^= c.k[2] + id ^= c.k[3] + + store32l(dst[0:4], ia) + store32l(dst[4:8], ib) + store32l(dst[8:12], ic) + store32l(dst[12:16], id) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/twofish/twofish_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/twofish/twofish_test.go new file mode 100644 index 00000000..303081f3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/twofish/twofish_test.go @@ -0,0 +1,129 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package twofish + +import ( + "bytes" + "testing" +) + +var qbox = [2][4][16]byte{ + { + {0x8, 0x1, 0x7, 0xD, 0x6, 0xF, 0x3, 0x2, 0x0, 0xB, 0x5, 0x9, 0xE, 0xC, 0xA, 0x4}, + {0xE, 0xC, 0xB, 0x8, 0x1, 0x2, 0x3, 0x5, 0xF, 0x4, 0xA, 0x6, 0x7, 0x0, 0x9, 0xD}, + {0xB, 0xA, 0x5, 0xE, 0x6, 0xD, 0x9, 0x0, 0xC, 0x8, 0xF, 0x3, 0x2, 0x4, 0x7, 0x1}, + {0xD, 0x7, 0xF, 0x4, 0x1, 0x2, 0x6, 0xE, 0x9, 0xB, 0x3, 0x0, 0x8, 0x5, 0xC, 0xA}, + }, + { + {0x2, 0x8, 0xB, 0xD, 0xF, 0x7, 0x6, 0xE, 0x3, 0x1, 0x9, 0x4, 0x0, 0xA, 0xC, 0x5}, + {0x1, 0xE, 0x2, 0xB, 0x4, 0xC, 0x3, 0x7, 0x6, 0xD, 0xA, 0x5, 0xF, 0x9, 0x0, 0x8}, + {0x4, 0xC, 0x7, 0x5, 0x1, 0x6, 0x9, 0xA, 0x0, 0xE, 0xD, 0x8, 0x2, 0xB, 0x3, 0xF}, + {0xB, 0x9, 0x5, 0x1, 0xC, 0x3, 0xD, 0xE, 0x6, 0x4, 0x7, 0xF, 0x2, 0x0, 0x8, 0xA}, + }, +} + +// genSbox generates the variable sbox +func genSbox(qi int, x byte) byte { + a0, b0 := x/16, x%16 + for i := 0; i < 2; i++ { + a1 := a0 ^ b0 + b1 := (a0 ^ ((b0 << 3) | (b0 >> 1)) ^ (a0 << 3)) & 15 + a0 = qbox[qi][2*i][a1] + b0 = qbox[qi][2*i+1][b1] + } + return (b0 << 4) + a0 +} + +func TestSbox(t *testing.T) { + for n := range sbox { + for m := range sbox[n] { + if genSbox(n, byte(m)) != sbox[n][m] { + t.Errorf("#%d|%d: sbox value = %d want %d", n, m, sbox[n][m], genSbox(n, byte(m))) + } + } + } +} + +var testVectors = []struct { + key []byte + dec []byte + enc []byte +}{ + // These tests are extracted from LibTom + { + []byte{0x9F, 0x58, 0x9F, 0x5C, 0xF6, 0x12, 0x2C, 0x32, 0xB6, 0xBF, 0xEC, 0x2F, 0x2A, 0xE8, 0xC3, 0x5A}, + []byte{0xD4, 0x91, 0xDB, 0x16, 0xE7, 0xB1, 0xC3, 0x9E, 0x86, 0xCB, 0x08, 0x6B, 0x78, 0x9F, 0x54, 0x19}, + []byte{0x01, 0x9F, 0x98, 0x09, 0xDE, 0x17, 0x11, 0x85, 0x8F, 0xAA, 0xC3, 0xA3, 0xBA, 0x20, 0xFB, 0xC3}, + }, + { + []byte{0x88, 0xB2, 0xB2, 0x70, 0x6B, 0x10, 0x5E, 0x36, 0xB4, 0x46, 0xBB, 0x6D, 0x73, 0x1A, 0x1E, 0x88, + 0xEF, 0xA7, 0x1F, 0x78, 0x89, 0x65, 0xBD, 0x44}, + []byte{0x39, 0xDA, 0x69, 0xD6, 0xBA, 0x49, 0x97, 0xD5, 0x85, 0xB6, 0xDC, 0x07, 0x3C, 0xA3, 0x41, 0xB2}, + []byte{0x18, 0x2B, 0x02, 0xD8, 0x14, 0x97, 0xEA, 0x45, 0xF9, 0xDA, 0xAC, 0xDC, 0x29, 0x19, 0x3A, 0x65}, + }, + { + []byte{0xD4, 0x3B, 0xB7, 0x55, 0x6E, 0xA3, 0x2E, 0x46, 0xF2, 0xA2, 0x82, 0xB7, 0xD4, 0x5B, 0x4E, 0x0D, + 0x57, 0xFF, 0x73, 0x9D, 0x4D, 0xC9, 0x2C, 0x1B, 0xD7, 0xFC, 0x01, 0x70, 0x0C, 0xC8, 0x21, 0x6F}, + []byte{0x90, 0xAF, 0xE9, 0x1B, 0xB2, 0x88, 0x54, 0x4F, 0x2C, 0x32, 0xDC, 0x23, 0x9B, 0x26, 0x35, 0xE6}, + []byte{0x6C, 0xB4, 0x56, 0x1C, 0x40, 0xBF, 0x0A, 0x97, 0x05, 0x93, 0x1C, 0xB6, 0xD4, 0x08, 0xE7, 0xFA}, + }, + // These test are derived from http://www.schneier.com/code/ecb_ival.txt + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x9F, 0x58, 0x9F, 0x5C, 0xF6, 0x12, 0x2C, 0x32, 0xB6, 0xBF, 0xEC, 0x2F, 0x2A, 0xE8, 0xC3, 0x5A}, + }, + { + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10, + 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, + }, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0xCF, 0xD1, 0xD2, 0xE5, 0xA9, 0xBE, 0x9C, 0xDF, 0x50, 0x1F, 0x13, 0xB8, 0x92, 0xBD, 0x22, 0x48}, + }, + { + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10, + 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF, + }, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x37, 0x52, 0x7B, 0xE0, 0x05, 0x23, 0x34, 0xB8, 0x9F, 0x0C, 0xFC, 0xCA, 0xE8, 0x7C, 0xFA, 0x20}, + }, +} + +func TestCipher(t *testing.T) { + for n, tt := range testVectors { + // Test if the plaintext (dec) is encrypts to the given + // ciphertext (enc) using the given key. Test also if enc can + // be decrypted again into dec. + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("#%d: NewCipher: %v", n, err) + return + } + + buf := make([]byte, 16) + c.Encrypt(buf, tt.dec) + if !bytes.Equal(buf, tt.enc) { + t.Errorf("#%d: encrypt = %x want %x", n, buf, tt.enc) + } + c.Decrypt(buf, tt.enc) + if !bytes.Equal(buf, tt.dec) { + t.Errorf("#%d: decrypt = %x want %x", n, buf, tt.dec) + } + + // Test that 16 zero bytes, encrypted 1000 times then decrypted + // 1000 times results in zero bytes again. + zero := make([]byte, 16) + buf = make([]byte, 16) + for i := 0; i < 1000; i++ { + c.Encrypt(buf, buf) + } + for i := 0; i < 1000; i++ { + c.Decrypt(buf, buf) + } + if !bytes.Equal(buf, zero) { + t.Errorf("#%d: encrypt/decrypt 1000: have %x want %x", n, buf, zero) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/block.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/block.go new file mode 100644 index 00000000..bf5d2459 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/block.go @@ -0,0 +1,66 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + Implementation adapted from Needham and Wheeler's paper: + http://www.cix.co.uk/~klockstone/xtea.pdf + + A precalculated look up table is used during encryption/decryption for values that are based purely on the key. +*/ + +package xtea + +// XTEA is based on 64 rounds. +const numRounds = 64 + +// blockToUint32 reads an 8 byte slice into two uint32s. +// The block is treated as big endian. +func blockToUint32(src []byte) (uint32, uint32) { + r0 := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r1 := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + return r0, r1 +} + +// uint32ToBlock writes two uint32s into an 8 byte data block. +// Values are written as big endian. +func uint32ToBlock(v0, v1 uint32, dst []byte) { + dst[0] = byte(v0 >> 24) + dst[1] = byte(v0 >> 16) + dst[2] = byte(v0 >> 8) + dst[3] = byte(v0) + dst[4] = byte(v1 >> 24) + dst[5] = byte(v1 >> 16) + dst[6] = byte(v1 >> 8) + dst[7] = byte(v1 >> 0) +} + +// encryptBlock encrypts a single 8 byte block using XTEA. +func encryptBlock(c *Cipher, dst, src []byte) { + v0, v1 := blockToUint32(src) + + // Two rounds of XTEA applied per loop + for i := 0; i < numRounds; { + v0 += ((v1<<4 ^ v1>>5) + v1) ^ c.table[i] + i++ + v1 += ((v0<<4 ^ v0>>5) + v0) ^ c.table[i] + i++ + } + + uint32ToBlock(v0, v1, dst) +} + +// decryptBlock decrypt a single 8 byte block using XTEA. +func decryptBlock(c *Cipher, dst, src []byte) { + v0, v1 := blockToUint32(src) + + // Two rounds of XTEA applied per loop + for i := numRounds; i > 0; { + i-- + v1 -= ((v0<<4 ^ v0>>5) + v0) ^ c.table[i] + i-- + v0 -= ((v1<<4 ^ v1>>5) + v1) ^ c.table[i] + } + + uint32ToBlock(v0, v1, dst) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/cipher.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/cipher.go new file mode 100644 index 00000000..0e10b8e5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/cipher.go @@ -0,0 +1,82 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package xtea implements XTEA encryption, as defined in Needham and Wheeler's +// 1997 technical report, "Tea extensions." +package xtea + +// For details, see http://www.cix.co.uk/~klockstone/xtea.pdf + +import "strconv" + +// The XTEA block size in bytes. +const BlockSize = 8 + +// A Cipher is an instance of an XTEA cipher using a particular key. +// table contains a series of precalculated values that are used each round. +type Cipher struct { + table [64]uint32 +} + +type KeySizeError int + +func (k KeySizeError) Error() string { + return "crypto/xtea: invalid key size " + strconv.Itoa(int(k)) +} + +// NewCipher creates and returns a new Cipher. +// The key argument should be the XTEA key. +// XTEA only supports 128 bit (16 byte) keys. +func NewCipher(key []byte) (*Cipher, error) { + k := len(key) + switch k { + default: + return nil, KeySizeError(k) + case 16: + break + } + + c := new(Cipher) + initCipher(c, key) + + return c, nil +} + +// BlockSize returns the XTEA block size, 8 bytes. +// It is necessary to satisfy the Block interface in the +// package "crypto/cipher". +func (c *Cipher) BlockSize() int { return BlockSize } + +// Encrypt encrypts the 8 byte buffer src using the key and stores the result in dst. +// Note that for amounts of data larger than a block, +// it is not safe to just call Encrypt on successive blocks; +// instead, use an encryption mode like CBC (see crypto/cipher/cbc.go). +func (c *Cipher) Encrypt(dst, src []byte) { encryptBlock(c, dst, src) } + +// Decrypt decrypts the 8 byte buffer src using the key k and stores the result in dst. +func (c *Cipher) Decrypt(dst, src []byte) { decryptBlock(c, dst, src) } + +// initCipher initializes the cipher context by creating a look up table +// of precalculated values that are based on the key. +func initCipher(c *Cipher, key []byte) { + // Load the key into four uint32s + var k [4]uint32 + for i := 0; i < len(k); i++ { + j := i << 2 // Multiply by 4 + k[i] = uint32(key[j+0])<<24 | uint32(key[j+1])<<16 | uint32(key[j+2])<<8 | uint32(key[j+3]) + } + + // Precalculate the table + const delta = 0x9E3779B9 + var sum uint32 = 0 + + // Two rounds of XTEA applied per loop + for i := 0; i < numRounds; { + c.table[i] = sum + k[sum&3] + i++ + sum += delta + c.table[i] = sum + k[(sum>>11)&3] + i++ + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/xtea_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/xtea_test.go new file mode 100644 index 00000000..be711bf5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xtea/xtea_test.go @@ -0,0 +1,229 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package xtea + +import ( + "testing" +) + +// A sample test key for when we just want to initialize a cipher +var testKey = []byte{0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF} + +// Test that the block size for XTEA is correct +func TestBlocksize(t *testing.T) { + if BlockSize != 8 { + t.Errorf("BlockSize constant - expected 8, got %d", BlockSize) + return + } + + c, err := NewCipher(testKey) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(testKey), err) + return + } + + result := c.BlockSize() + if result != 8 { + t.Errorf("BlockSize function - expected 8, got %d", result) + return + } +} + +// A series of test values to confirm that the Cipher.table array was initialized correctly +var testTable = []uint32{ + 0x00112233, 0x6B1568B8, 0xE28CE030, 0xC5089E2D, 0xC5089E2D, 0x1EFBD3A2, 0xA7845C2A, 0x78EF0917, + 0x78EF0917, 0x172682D0, 0x5B6AC714, 0x822AC955, 0x3DE68511, 0xDC1DFECA, 0x2062430E, 0x3611343F, + 0xF1CCEFFB, 0x900469B4, 0xD448ADF8, 0x2E3BE36D, 0xB6C46BF5, 0x994029F2, 0x994029F2, 0xF3335F67, + 0x6AAAD6DF, 0x4D2694DC, 0x4D2694DC, 0xEB5E0E95, 0x2FA252D9, 0x4551440A, 0x121E10D6, 0xB0558A8F, + 0xE388BDC3, 0x0A48C004, 0xC6047BC0, 0x643BF579, 0xA88039BD, 0x02736F32, 0x8AFBF7BA, 0x5C66A4A7, + 0x5C66A4A7, 0xC76AEB2C, 0x3EE262A4, 0x215E20A1, 0x215E20A1, 0x7B515616, 0x03D9DE9E, 0x1988CFCF, + 0xD5448B8B, 0x737C0544, 0xB7C04988, 0xDE804BC9, 0x9A3C0785, 0x3873813E, 0x7CB7C582, 0xD6AAFAF7, + 0x4E22726F, 0x309E306C, 0x309E306C, 0x8A9165E1, 0x1319EE69, 0xF595AC66, 0xF595AC66, 0x4F88E1DB, +} + +// Test that the cipher context is initialized correctly +func TestCipherInit(t *testing.T) { + c, err := NewCipher(testKey) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(testKey), err) + return + } + + for i := 0; i < len(c.table); i++ { + if c.table[i] != testTable[i] { + t.Errorf("NewCipher() failed to initialize Cipher.table[%d] correctly. Expected %08X, got %08X", i, testTable[i], c.table[i]) + break + } + } +} + +// Test that invalid key sizes return an error +func TestInvalidKeySize(t *testing.T) { + // Test a long key + key := []byte{ + 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF, + 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF, + } + + _, err := NewCipher(key) + if err == nil { + t.Errorf("Invalid key size %d didn't result in an error.", len(key)) + } + + // Test a short key + key = []byte{0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77} + + _, err = NewCipher(key) + if err == nil { + t.Errorf("Invalid key size %d didn't result in an error.", len(key)) + } +} + +// Test that we can correctly decode some bytes we have encoded +func TestEncodeDecode(t *testing.T) { + original := []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF} + input := original + output := make([]byte, BlockSize) + + c, err := NewCipher(testKey) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(testKey), err) + return + } + + // Encrypt the input block + c.Encrypt(output, input) + + // Check that the output does not match the input + differs := false + for i := 0; i < len(input); i++ { + if output[i] != input[i] { + differs = true + break + } + } + if differs == false { + t.Error("Cipher.Encrypt: Failed to encrypt the input block.") + return + } + + // Decrypt the block we just encrypted + input = output + output = make([]byte, BlockSize) + c.Decrypt(output, input) + + // Check that the output from decrypt matches our initial input + for i := 0; i < len(input); i++ { + if output[i] != original[i] { + t.Errorf("Decrypted byte %d differed. Expected %02X, got %02X\n", i, original[i], output[i]) + return + } + } +} + +// Test Vectors +type CryptTest struct { + key []byte + plainText []byte + cipherText []byte +} + +var CryptTests = []CryptTest{ + // These were sourced from http://www.freemedialibrary.com/index.php/XTEA_test_vectors + { + []byte{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + []byte{0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48}, + []byte{0x49, 0x7d, 0xf3, 0xd0, 0x72, 0x61, 0x2c, 0xb5}, + }, + { + []byte{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + []byte{0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41}, + []byte{0xe7, 0x8f, 0x2d, 0x13, 0x74, 0x43, 0x41, 0xd8}, + }, + { + []byte{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + []byte{0x5a, 0x5b, 0x6e, 0x27, 0x89, 0x48, 0xd7, 0x7f}, + []byte{0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41}, + }, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48}, + []byte{0xa0, 0x39, 0x05, 0x89, 0xf8, 0xb8, 0xef, 0xa5}, + }, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41}, + []byte{0xed, 0x23, 0x37, 0x5a, 0x82, 0x1a, 0x8c, 0x2d}, + }, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x70, 0xe1, 0x22, 0x5d, 0x6e, 0x4e, 0x76, 0x55}, + []byte{0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41}, + }, + + // These vectors are from http://wiki.secondlife.com/wiki/XTEA_Strong_Encryption_Implementation#Bouncy_Castle_C.23_API + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0xDE, 0xE9, 0xD4, 0xD8, 0xF7, 0x13, 0x1E, 0xD9}, + }, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08}, + []byte{0x06, 0x5C, 0x1B, 0x89, 0x75, 0xC6, 0xA8, 0x16}, + }, + { + []byte{0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x1F, 0xF9, 0xA0, 0x26, 0x1A, 0xC6, 0x42, 0x64}, + }, + { + []byte{0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A}, + []byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08}, + []byte{0x8C, 0x67, 0x15, 0x5B, 0x2E, 0xF9, 0x1E, 0xAD}, + }, +} + +// Test encryption +func TestCipherEncrypt(t *testing.T) { + for i, tt := range CryptTests { + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("NewCipher(%d bytes), vector %d = %s", len(tt.key), i, err) + continue + } + + out := make([]byte, len(tt.plainText)) + c.Encrypt(out, tt.plainText) + + for j := 0; j < len(out); j++ { + if out[j] != tt.cipherText[j] { + t.Errorf("Cipher.Encrypt %d: out[%d] = %02X, expected %02X", i, j, out[j], tt.cipherText[j]) + break + } + } + } +} + +// Test decryption +func TestCipherDecrypt(t *testing.T) { + for i, tt := range CryptTests { + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("NewCipher(%d bytes), vector %d = %s", len(tt.key), i, err) + continue + } + + out := make([]byte, len(tt.cipherText)) + c.Decrypt(out, tt.cipherText) + + for j := 0; j < len(out); j++ { + if out[j] != tt.plainText[j] { + t.Errorf("Cipher.Decrypt %d: out[%d] = %02X, expected %02X", i, j, out[j], tt.plainText[j]) + break + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xts/xts.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xts/xts.go new file mode 100644 index 00000000..f0af79da --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xts/xts.go @@ -0,0 +1,138 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package xts implements the XTS cipher mode as specified in IEEE P1619/D16. +// +// XTS mode is typically used for disk encryption, which presents a number of +// novel problems that make more common modes inapplicable. The disk is +// conceptually an array of sectors and we must be able to encrypt and decrypt +// a sector in isolation. However, an attacker must not be able to transpose +// two sectors of plaintext by transposing their ciphertext. +// +// XTS wraps a block cipher with Rogaway's XEX mode in order to build a +// tweakable block cipher. This allows each sector to have a unique tweak and +// effectively create a unique key for each sector. +// +// XTS does not provide any authentication. An attacker can manipulate the +// ciphertext and randomise a block (16 bytes) of the plaintext. +// +// (Note: this package does not implement ciphertext-stealing so sectors must +// be a multiple of 16 bytes.) +package xts + +import ( + "crypto/cipher" + "errors" +) + +// Cipher contains an expanded key structure. It doesn't contain mutable state +// and therefore can be used concurrently. +type Cipher struct { + k1, k2 cipher.Block +} + +// blockSize is the block size that the underlying cipher must have. XTS is +// only defined for 16-byte ciphers. +const blockSize = 16 + +// NewCipher creates a Cipher given a function for creating the underlying +// block cipher (which must have a block size of 16 bytes). The key must be +// twice the length of the underlying cipher's key. +func NewCipher(cipherFunc func([]byte) (cipher.Block, error), key []byte) (c *Cipher, err error) { + c = new(Cipher) + if c.k1, err = cipherFunc(key[:len(key)/2]); err != nil { + return + } + c.k2, err = cipherFunc(key[len(key)/2:]) + + if c.k1.BlockSize() != blockSize { + err = errors.New("xts: cipher does not have a block size of 16") + } + + return +} + +// Encrypt encrypts a sector of plaintext and puts the result into ciphertext. +// Plaintext and ciphertext may be the same slice but should not overlap. +// Sectors must be a multiple of 16 bytes and less than 2²⁴ bytes. +func (c *Cipher) Encrypt(ciphertext, plaintext []byte, sectorNum uint64) { + if len(ciphertext) < len(plaintext) { + panic("xts: ciphertext is smaller than plaintext") + } + if len(plaintext)%blockSize != 0 { + panic("xts: plaintext is not a multiple of the block size") + } + + var tweak [blockSize]byte + for i := 0; i < 8; i++ { + tweak[i] = byte(sectorNum) + sectorNum >>= 8 + } + + c.k2.Encrypt(tweak[:], tweak[:]) + + for i := 0; i < len(plaintext); i += blockSize { + for j := 0; j < blockSize; j++ { + ciphertext[i+j] = plaintext[i+j] ^ tweak[j] + } + c.k1.Encrypt(ciphertext[i:], ciphertext[i:]) + for j := 0; j < blockSize; j++ { + ciphertext[i+j] ^= tweak[j] + } + + mul2(&tweak) + } +} + +// Decrypt decrypts a sector of ciphertext and puts the result into plaintext. +// Plaintext and ciphertext may be the same slice but should not overlap. +// Sectors must be a multiple of 16 bytes and less than 2²⁴ bytes. +func (c *Cipher) Decrypt(plaintext, ciphertext []byte, sectorNum uint64) { + if len(plaintext) < len(ciphertext) { + panic("xts: plaintext is smaller than ciphertext") + } + if len(ciphertext)%blockSize != 0 { + panic("xts: ciphertext is not a multiple of the block size") + } + + var tweak [blockSize]byte + for i := 0; i < 8; i++ { + tweak[i] = byte(sectorNum) + sectorNum >>= 8 + } + + c.k2.Encrypt(tweak[:], tweak[:]) + + for i := 0; i < len(plaintext); i += blockSize { + for j := 0; j < blockSize; j++ { + plaintext[i+j] = ciphertext[i+j] ^ tweak[j] + } + c.k1.Decrypt(plaintext[i:], plaintext[i:]) + for j := 0; j < blockSize; j++ { + plaintext[i+j] ^= tweak[j] + } + + mul2(&tweak) + } +} + +// mul2 multiplies tweak by 2 in GF(2¹²⁸) with an irreducible polynomial of +// x¹²⁸ + x⁷ + x² + x + 1. +func mul2(tweak *[blockSize]byte) { + var carryIn byte + for j := range tweak { + carryOut := tweak[j] >> 7 + tweak[j] = (tweak[j] << 1) + carryIn + carryIn = carryOut + } + if carryIn != 0 { + // If we have a carry bit then we need to subtract a multiple + // of the irreducible polynomial (x¹²⁸ + x⁷ + x² + x + 1). + // By dropping the carry bit, we're subtracting the x^128 term + // so all that remains is to subtract x⁷ + x² + x + 1. + // Subtraction (and addition) in this representation is just + // XOR. + tweak[0] ^= 1<<7 | 1<<2 | 1<<1 | 1 + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xts/xts_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xts/xts_test.go new file mode 100644 index 00000000..7a5e9fad --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.crypto/xts/xts_test.go @@ -0,0 +1,85 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package xts + +import ( + "bytes" + "crypto/aes" + "encoding/hex" + "testing" +) + +// These test vectors have been taken from IEEE P1619/D16, Annex B. +var xtsTestVectors = []struct { + key string + sector uint64 + plaintext string + ciphertext string +}{ + { + "0000000000000000000000000000000000000000000000000000000000000000", + 0, + "0000000000000000000000000000000000000000000000000000000000000000", + "917cf69ebd68b2ec9b9fe9a3eadda692cd43d2f59598ed858c02c2652fbf922e", + }, { + "1111111111111111111111111111111122222222222222222222222222222222", + 0x3333333333, + "4444444444444444444444444444444444444444444444444444444444444444", + "c454185e6a16936e39334038acef838bfb186fff7480adc4289382ecd6d394f0", + }, { + "fffefdfcfbfaf9f8f7f6f5f4f3f2f1f022222222222222222222222222222222", + 0x3333333333, + "4444444444444444444444444444444444444444444444444444444444444444", + "af85336b597afc1a900b2eb21ec949d292df4c047e0b21532186a5971a227a89", + }, { + "2718281828459045235360287471352631415926535897932384626433832795", + 0, + "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff", + "27a7479befa1d476489f308cd4cfa6e2a96e4bbe3208ff25287dd3819616e89cc78cf7f5e543445f8333d8fa7f56000005279fa5d8b5e4ad40e736ddb4d35412328063fd2aab53e5ea1e0a9f332500a5df9487d07a5c92cc512c8866c7e860ce93fdf166a24912b422976146ae20ce846bb7dc9ba94a767aaef20c0d61ad02655ea92dc4c4e41a8952c651d33174be51a10c421110e6d81588ede82103a252d8a750e8768defffed9122810aaeb99f9172af82b604dc4b8e51bcb08235a6f4341332e4ca60482a4ba1a03b3e65008fc5da76b70bf1690db4eae29c5f1badd03c5ccf2a55d705ddcd86d449511ceb7ec30bf12b1fa35b913f9f747a8afd1b130e94bff94effd01a91735ca1726acd0b197c4e5b03393697e126826fb6bbde8ecc1e08298516e2c9ed03ff3c1b7860f6de76d4cecd94c8119855ef5297ca67e9f3e7ff72b1e99785ca0a7e7720c5b36dc6d72cac9574c8cbbc2f801e23e56fd344b07f22154beba0f08ce8891e643ed995c94d9a69c9f1b5f499027a78572aeebd74d20cc39881c213ee770b1010e4bea718846977ae119f7a023ab58cca0ad752afe656bb3c17256a9f6e9bf19fdd5a38fc82bbe872c5539edb609ef4f79c203ebb140f2e583cb2ad15b4aa5b655016a8449277dbd477ef2c8d6c017db738b18deb4a427d1923ce3ff262735779a418f20a282df920147beabe421ee5319d0568", + }, { + "2718281828459045235360287471352631415926535897932384626433832795", + 1, + "27a7479befa1d476489f308cd4cfa6e2a96e4bbe3208ff25287dd3819616e89cc78cf7f5e543445f8333d8fa7f56000005279fa5d8b5e4ad40e736ddb4d35412328063fd2aab53e5ea1e0a9f332500a5df9487d07a5c92cc512c8866c7e860ce93fdf166a24912b422976146ae20ce846bb7dc9ba94a767aaef20c0d61ad02655ea92dc4c4e41a8952c651d33174be51a10c421110e6d81588ede82103a252d8a750e8768defffed9122810aaeb99f9172af82b604dc4b8e51bcb08235a6f4341332e4ca60482a4ba1a03b3e65008fc5da76b70bf1690db4eae29c5f1badd03c5ccf2a55d705ddcd86d449511ceb7ec30bf12b1fa35b913f9f747a8afd1b130e94bff94effd01a91735ca1726acd0b197c4e5b03393697e126826fb6bbde8ecc1e08298516e2c9ed03ff3c1b7860f6de76d4cecd94c8119855ef5297ca67e9f3e7ff72b1e99785ca0a7e7720c5b36dc6d72cac9574c8cbbc2f801e23e56fd344b07f22154beba0f08ce8891e643ed995c94d9a69c9f1b5f499027a78572aeebd74d20cc39881c213ee770b1010e4bea718846977ae119f7a023ab58cca0ad752afe656bb3c17256a9f6e9bf19fdd5a38fc82bbe872c5539edb609ef4f79c203ebb140f2e583cb2ad15b4aa5b655016a8449277dbd477ef2c8d6c017db738b18deb4a427d1923ce3ff262735779a418f20a282df920147beabe421ee5319d0568", + "264d3ca8512194fec312c8c9891f279fefdd608d0c027b60483a3fa811d65ee59d52d9e40ec5672d81532b38b6b089ce951f0f9c35590b8b978d175213f329bb1c2fd30f2f7f30492a61a532a79f51d36f5e31a7c9a12c286082ff7d2394d18f783e1a8e72c722caaaa52d8f065657d2631fd25bfd8e5baad6e527d763517501c68c5edc3cdd55435c532d7125c8614deed9adaa3acade5888b87bef641c4c994c8091b5bcd387f3963fb5bc37aa922fbfe3df4e5b915e6eb514717bdd2a74079a5073f5c4bfd46adf7d282e7a393a52579d11a028da4d9cd9c77124f9648ee383b1ac763930e7162a8d37f350b2f74b8472cf09902063c6b32e8c2d9290cefbd7346d1c779a0df50edcde4531da07b099c638e83a755944df2aef1aa31752fd323dcb710fb4bfbb9d22b925bc3577e1b8949e729a90bbafeacf7f7879e7b1147e28ba0bae940db795a61b15ecf4df8db07b824bb062802cc98a9545bb2aaeed77cb3fc6db15dcd7d80d7d5bc406c4970a3478ada8899b329198eb61c193fb6275aa8ca340344a75a862aebe92eee1ce032fd950b47d7704a3876923b4ad62844bf4a09c4dbe8b4397184b7471360c9564880aedddb9baa4af2e75394b08cd32ff479c57a07d3eab5d54de5f9738b8d27f27a9f0ab11799d7b7ffefb2704c95c6ad12c39f1e867a4b7b1d7818a4b753dfd2a89ccb45e001a03a867b187f225dd", + }, { + "27182818284590452353602874713526624977572470936999595749669676273141592653589793238462643383279502884197169399375105820974944592", + 0xff, + "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff", + "1c3b3a102f770386e4836c99e370cf9bea00803f5e482357a4ae12d414a3e63b5d31e276f8fe4a8d66b317f9ac683f44680a86ac35adfc3345befecb4bb188fd5776926c49a3095eb108fd1098baec70aaa66999a72a82f27d848b21d4a741b0c5cd4d5fff9dac89aeba122961d03a757123e9870f8acf1000020887891429ca2a3e7a7d7df7b10355165c8b9a6d0a7de8b062c4500dc4cd120c0f7418dae3d0b5781c34803fa75421c790dfe1de1834f280d7667b327f6c8cd7557e12ac3a0f93ec05c52e0493ef31a12d3d9260f79a289d6a379bc70c50841473d1a8cc81ec583e9645e07b8d9670655ba5bbcfecc6dc3966380ad8fecb17b6ba02469a020a84e18e8f84252070c13e9f1f289be54fbc481457778f616015e1327a02b140f1505eb309326d68378f8374595c849d84f4c333ec4423885143cb47bd71c5edae9be69a2ffeceb1bec9de244fbe15992b11b77c040f12bd8f6a975a44a0f90c29a9abc3d4d893927284c58754cce294529f8614dcd2aba991925fedc4ae74ffac6e333b93eb4aff0479da9a410e4450e0dd7ae4c6e2910900575da401fc07059f645e8b7e9bfdef33943054ff84011493c27b3429eaedb4ed5376441a77ed43851ad77f16f541dfd269d50d6a5f14fb0aab1cbb4c1550be97f7ab4066193c4caa773dad38014bd2092fa755c824bb5e54c4f36ffda9fcea70b9c6e693e148c151", + }, +} + +func fromHex(s string) []byte { + ret, err := hex.DecodeString(s) + if err != nil { + panic("xts: invalid hex in test") + } + return ret +} + +func TestXTS(t *testing.T) { + for i, test := range xtsTestVectors { + c, err := NewCipher(aes.NewCipher, fromHex(test.key)) + if err != nil { + t.Errorf("#%d: failed to create cipher: %s", i, err) + continue + } + plaintext := fromHex(test.plaintext) + ciphertext := make([]byte, len(plaintext)) + c.Encrypt(ciphertext, plaintext, test.sector) + + expectedCiphertext := fromHex(test.ciphertext) + if !bytes.Equal(ciphertext, expectedCiphertext) { + t.Errorf("#%d: encrypted failed, got: %x, want: %x", i, ciphertext, expectedCiphertext) + continue + } + + decrypted := make([]byte, len(ciphertext)) + c.Decrypt(decrypted, ciphertext, test.sector) + if !bytes.Equal(decrypted, plaintext) { + t.Errorf("#%d: decryption failed, got: %x, want: %x", i, decrypted, plaintext) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/.hgignore b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/.hgignore new file mode 100644 index 00000000..c27ee1ef --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/.hgignore @@ -0,0 +1,3 @@ +# Add no patterns to .hgignore except for files generated by the build. +syntax:glob +last-change diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/AUTHORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/AUTHORS new file mode 100644 index 00000000..15167cd7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/AUTHORS @@ -0,0 +1,3 @@ +# This source code refers to The Go Authors for copyright purposes. +# The master list of authors is in the main Go distribution, +# visible at http://tip.golang.org/AUTHORS. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/CONTRIBUTORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/CONTRIBUTORS new file mode 100644 index 00000000..1c4577e9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/CONTRIBUTORS @@ -0,0 +1,3 @@ +# This source code was written by the Go contributors. +# The master list of contributors is in the main Go distribution, +# visible at http://tip.golang.org/CONTRIBUTORS. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/LICENSE b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/LICENSE new file mode 100644 index 00000000..6a66aea5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/PATENTS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/PATENTS new file mode 100644 index 00000000..73309904 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/PATENTS @@ -0,0 +1,22 @@ +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the Go project. + +Google hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer and otherwise run, modify and propagate the contents of this +implementation of Go, where such license applies only to those patent +claims, both currently owned or controlled by Google and acquired in +the future, licensable by Google that are necessarily infringed by this +implementation of Go. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of Go or any code incorporated within this +implementation of Go constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of Go +shall terminate as of the date such litigation is filed. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/README new file mode 100644 index 00000000..916ae2e6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/README @@ -0,0 +1,10 @@ +This subrepository holds the source for various packages and tools that support +the Go programming language. + +Some of the tools, godoc and vet for example, are included in binary Go distributions. +Others, including the Go oracle and the test coverage tool, can be fetched with "go get". + +Packages include a type-checker for Go and an implementation of the +Static Single Assignment form (SSA) representation for Go programs. + +To submit changes to this repository, see http://golang.org/doc/contribute.html. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/enclosing.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/enclosing.go new file mode 100644 index 00000000..2de739ef --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/enclosing.go @@ -0,0 +1,625 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package astutil + +// This file defines utilities for working with source positions. + +import ( + "fmt" + "go/ast" + "go/token" + "sort" +) + +// PathEnclosingInterval returns the node that encloses the source +// interval [start, end), and all its ancestors up to the AST root. +// +// The definition of "enclosing" used by this function considers +// additional whitespace abutting a node to be enclosed by it. +// In this example: +// +// z := x + y // add them +// <-A-> +// <----B-----> +// +// the ast.BinaryExpr(+) node is considered to enclose interval B +// even though its [Pos()..End()) is actually only interval A. +// This behaviour makes user interfaces more tolerant of imperfect +// input. +// +// This function treats tokens as nodes, though they are not included +// in the result. e.g. PathEnclosingInterval("+") returns the +// enclosing ast.BinaryExpr("x + y"). +// +// If start==end, the 1-char interval following start is used instead. +// +// The 'exact' result is true if the interval contains only path[0] +// and perhaps some adjacent whitespace. It is false if the interval +// overlaps multiple children of path[0], or if it contains only +// interior whitespace of path[0]. +// In this example: +// +// z := x + y // add them +// <--C--> <---E--> +// ^ +// D +// +// intervals C, D and E are inexact. C is contained by the +// z-assignment statement, because it spans three of its children (:=, +// x, +). So too is the 1-char interval D, because it contains only +// interior whitespace of the assignment. E is considered interior +// whitespace of the BlockStmt containing the assignment. +// +// Precondition: [start, end) both lie within the same file as root. +// TODO(adonovan): return (nil, false) in this case and remove precond. +// Requires FileSet; see loader.tokenFileContainsPos. +// +// Postcondition: path is never nil; it always contains at least 'root'. +// +func PathEnclosingInterval(root *ast.File, start, end token.Pos) (path []ast.Node, exact bool) { + // fmt.Printf("EnclosingInterval %d %d\n", start, end) // debugging + + // Precondition: node.[Pos..End) and adjoining whitespace contain [start, end). + var visit func(node ast.Node) bool + visit = func(node ast.Node) bool { + path = append(path, node) + + nodePos := node.Pos() + nodeEnd := node.End() + + // fmt.Printf("visit(%T, %d, %d)\n", node, nodePos, nodeEnd) // debugging + + // Intersect [start, end) with interval of node. + if start < nodePos { + start = nodePos + } + if end > nodeEnd { + end = nodeEnd + } + + // Find sole child that contains [start, end). + children := childrenOf(node) + l := len(children) + for i, child := range children { + // [childPos, childEnd) is unaugmented interval of child. + childPos := child.Pos() + childEnd := child.End() + + // [augPos, augEnd) is whitespace-augmented interval of child. + augPos := childPos + augEnd := childEnd + if i > 0 { + augPos = children[i-1].End() // start of preceding whitespace + } + if i < l-1 { + nextChildPos := children[i+1].Pos() + // Does [start, end) lie between child and next child? + if start >= augEnd && end <= nextChildPos { + return false // inexact match + } + augEnd = nextChildPos // end of following whitespace + } + + // fmt.Printf("\tchild %d: [%d..%d)\tcontains interval [%d..%d)?\n", + // i, augPos, augEnd, start, end) // debugging + + // Does augmented child strictly contain [start, end)? + if augPos <= start && end <= augEnd { + _, isToken := child.(tokenNode) + return isToken || visit(child) + } + + // Does [start, end) overlap multiple children? + // i.e. left-augmented child contains start + // but LR-augmented child does not contain end. + if start < childEnd && end > augEnd { + break + } + } + + // No single child contained [start, end), + // so node is the result. Is it exact? + + // (It's tempting to put this condition before the + // child loop, but it gives the wrong result in the + // case where a node (e.g. ExprStmt) and its sole + // child have equal intervals.) + if start == nodePos && end == nodeEnd { + return true // exact match + } + + return false // inexact: overlaps multiple children + } + + if start > end { + start, end = end, start + } + + if start < root.End() && end > root.Pos() { + if start == end { + end = start + 1 // empty interval => interval of size 1 + } + exact = visit(root) + + // Reverse the path: + for i, l := 0, len(path); i < l/2; i++ { + path[i], path[l-1-i] = path[l-1-i], path[i] + } + } else { + // Selection lies within whitespace preceding the + // first (or following the last) declaration in the file. + // The result nonetheless always includes the ast.File. + path = append(path, root) + } + + return +} + +// tokenNode is a dummy implementation of ast.Node for a single token. +// They are used transiently by PathEnclosingInterval but never escape +// this package. +// +type tokenNode struct { + pos token.Pos + end token.Pos +} + +func (n tokenNode) Pos() token.Pos { + return n.pos +} + +func (n tokenNode) End() token.Pos { + return n.end +} + +func tok(pos token.Pos, len int) ast.Node { + return tokenNode{pos, pos + token.Pos(len)} +} + +// childrenOf returns the direct non-nil children of ast.Node n. +// It may include fake ast.Node implementations for bare tokens. +// it is not safe to call (e.g.) ast.Walk on such nodes. +// +func childrenOf(n ast.Node) []ast.Node { + var children []ast.Node + + // First add nodes for all true subtrees. + ast.Inspect(n, func(node ast.Node) bool { + if node == n { // push n + return true // recur + } + if node != nil { // push child + children = append(children, node) + } + return false // no recursion + }) + + // Then add fake Nodes for bare tokens. + switch n := n.(type) { + case *ast.ArrayType: + children = append(children, + tok(n.Lbrack, len("[")), + tok(n.Elt.End(), len("]"))) + + case *ast.AssignStmt: + children = append(children, + tok(n.TokPos, len(n.Tok.String()))) + + case *ast.BasicLit: + children = append(children, + tok(n.ValuePos, len(n.Value))) + + case *ast.BinaryExpr: + children = append(children, tok(n.OpPos, len(n.Op.String()))) + + case *ast.BlockStmt: + children = append(children, + tok(n.Lbrace, len("{")), + tok(n.Rbrace, len("}"))) + + case *ast.BranchStmt: + children = append(children, + tok(n.TokPos, len(n.Tok.String()))) + + case *ast.CallExpr: + children = append(children, + tok(n.Lparen, len("(")), + tok(n.Rparen, len(")"))) + if n.Ellipsis != 0 { + children = append(children, tok(n.Ellipsis, len("..."))) + } + + case *ast.CaseClause: + if n.List == nil { + children = append(children, + tok(n.Case, len("default"))) + } else { + children = append(children, + tok(n.Case, len("case"))) + } + children = append(children, tok(n.Colon, len(":"))) + + case *ast.ChanType: + switch n.Dir { + case ast.RECV: + children = append(children, tok(n.Begin, len("<-chan"))) + case ast.SEND: + children = append(children, tok(n.Begin, len("chan<-"))) + case ast.RECV | ast.SEND: + children = append(children, tok(n.Begin, len("chan"))) + } + + case *ast.CommClause: + if n.Comm == nil { + children = append(children, + tok(n.Case, len("default"))) + } else { + children = append(children, + tok(n.Case, len("case"))) + } + children = append(children, tok(n.Colon, len(":"))) + + case *ast.Comment: + // nop + + case *ast.CommentGroup: + // nop + + case *ast.CompositeLit: + children = append(children, + tok(n.Lbrace, len("{")), + tok(n.Rbrace, len("{"))) + + case *ast.DeclStmt: + // nop + + case *ast.DeferStmt: + children = append(children, + tok(n.Defer, len("defer"))) + + case *ast.Ellipsis: + children = append(children, + tok(n.Ellipsis, len("..."))) + + case *ast.EmptyStmt: + // nop + + case *ast.ExprStmt: + // nop + + case *ast.Field: + // TODO(adonovan): Field.{Doc,Comment,Tag}? + + case *ast.FieldList: + children = append(children, + tok(n.Opening, len("(")), + tok(n.Closing, len(")"))) + + case *ast.File: + // TODO test: Doc + children = append(children, + tok(n.Package, len("package"))) + + case *ast.ForStmt: + children = append(children, + tok(n.For, len("for"))) + + case *ast.FuncDecl: + // TODO(adonovan): FuncDecl.Comment? + + // Uniquely, FuncDecl breaks the invariant that + // preorder traversal yields tokens in lexical order: + // in fact, FuncDecl.Recv precedes FuncDecl.Type.Func. + // + // As a workaround, we inline the case for FuncType + // here and order things correctly. + // + children = nil // discard ast.Walk(FuncDecl) info subtrees + children = append(children, tok(n.Type.Func, len("func"))) + if n.Recv != nil { + children = append(children, n.Recv) + } + children = append(children, n.Name) + if n.Type.Params != nil { + children = append(children, n.Type.Params) + } + if n.Type.Results != nil { + children = append(children, n.Type.Results) + } + if n.Body != nil { + children = append(children, n.Body) + } + + case *ast.FuncLit: + // nop + + case *ast.FuncType: + if n.Func != 0 { + children = append(children, + tok(n.Func, len("func"))) + } + + case *ast.GenDecl: + children = append(children, + tok(n.TokPos, len(n.Tok.String()))) + if n.Lparen != 0 { + children = append(children, + tok(n.Lparen, len("(")), + tok(n.Rparen, len(")"))) + } + + case *ast.GoStmt: + children = append(children, + tok(n.Go, len("go"))) + + case *ast.Ident: + children = append(children, + tok(n.NamePos, len(n.Name))) + + case *ast.IfStmt: + children = append(children, + tok(n.If, len("if"))) + + case *ast.ImportSpec: + // TODO(adonovan): ImportSpec.{Doc,EndPos}? + + case *ast.IncDecStmt: + children = append(children, + tok(n.TokPos, len(n.Tok.String()))) + + case *ast.IndexExpr: + children = append(children, + tok(n.Lbrack, len("{")), + tok(n.Rbrack, len("}"))) + + case *ast.InterfaceType: + children = append(children, + tok(n.Interface, len("interface"))) + + case *ast.KeyValueExpr: + children = append(children, + tok(n.Colon, len(":"))) + + case *ast.LabeledStmt: + children = append(children, + tok(n.Colon, len(":"))) + + case *ast.MapType: + children = append(children, + tok(n.Map, len("map"))) + + case *ast.ParenExpr: + children = append(children, + tok(n.Lparen, len("(")), + tok(n.Rparen, len(")"))) + + case *ast.RangeStmt: + children = append(children, + tok(n.For, len("for")), + tok(n.TokPos, len(n.Tok.String()))) + + case *ast.ReturnStmt: + children = append(children, + tok(n.Return, len("return"))) + + case *ast.SelectStmt: + children = append(children, + tok(n.Select, len("select"))) + + case *ast.SelectorExpr: + // nop + + case *ast.SendStmt: + children = append(children, + tok(n.Arrow, len("<-"))) + + case *ast.SliceExpr: + children = append(children, + tok(n.Lbrack, len("[")), + tok(n.Rbrack, len("]"))) + + case *ast.StarExpr: + children = append(children, tok(n.Star, len("*"))) + + case *ast.StructType: + children = append(children, tok(n.Struct, len("struct"))) + + case *ast.SwitchStmt: + children = append(children, tok(n.Switch, len("switch"))) + + case *ast.TypeAssertExpr: + children = append(children, + tok(n.Lparen-1, len(".")), + tok(n.Lparen, len("(")), + tok(n.Rparen, len(")"))) + + case *ast.TypeSpec: + // TODO(adonovan): TypeSpec.{Doc,Comment}? + + case *ast.TypeSwitchStmt: + children = append(children, tok(n.Switch, len("switch"))) + + case *ast.UnaryExpr: + children = append(children, tok(n.OpPos, len(n.Op.String()))) + + case *ast.ValueSpec: + // TODO(adonovan): ValueSpec.{Doc,Comment}? + + default: + // Includes *ast.BadDecl, *ast.BadExpr, *ast.BadStmt. + panic(fmt.Sprintf("unexpected node type %T", n)) + } + + // TODO(adonovan): opt: merge the logic of ast.Inspect() into + // the switch above so we can make interleaved callbacks for + // both Nodes and Tokens in the right order and avoid the need + // to sort. + sort.Sort(byPos(children)) + + return children +} + +type byPos []ast.Node + +func (sl byPos) Len() int { + return len(sl) +} +func (sl byPos) Less(i, j int) bool { + return sl[i].Pos() < sl[j].Pos() +} +func (sl byPos) Swap(i, j int) { + sl[i], sl[j] = sl[j], sl[i] +} + +// NodeDescription returns a description of the concrete type of n suitable +// for a user interface. +// +// TODO(adonovan): in some cases (e.g. Field, FieldList, Ident, +// StarExpr) we could be much more specific given the path to the AST +// root. Perhaps we should do that. +// +func NodeDescription(n ast.Node) string { + switch n := n.(type) { + case *ast.ArrayType: + return "array type" + case *ast.AssignStmt: + return "assignment" + case *ast.BadDecl: + return "bad declaration" + case *ast.BadExpr: + return "bad expression" + case *ast.BadStmt: + return "bad statement" + case *ast.BasicLit: + return "basic literal" + case *ast.BinaryExpr: + return fmt.Sprintf("binary %s operation", n.Op) + case *ast.BlockStmt: + return "block" + case *ast.BranchStmt: + switch n.Tok { + case token.BREAK: + return "break statement" + case token.CONTINUE: + return "continue statement" + case token.GOTO: + return "goto statement" + case token.FALLTHROUGH: + return "fall-through statement" + } + case *ast.CallExpr: + return "function call (or conversion)" + case *ast.CaseClause: + return "case clause" + case *ast.ChanType: + return "channel type" + case *ast.CommClause: + return "communication clause" + case *ast.Comment: + return "comment" + case *ast.CommentGroup: + return "comment group" + case *ast.CompositeLit: + return "composite literal" + case *ast.DeclStmt: + return NodeDescription(n.Decl) + " statement" + case *ast.DeferStmt: + return "defer statement" + case *ast.Ellipsis: + return "ellipsis" + case *ast.EmptyStmt: + return "empty statement" + case *ast.ExprStmt: + return "expression statement" + case *ast.Field: + // Can be any of these: + // struct {x, y int} -- struct field(s) + // struct {T} -- anon struct field + // interface {I} -- interface embedding + // interface {f()} -- interface method + // func (A) func(B) C -- receiver, param(s), result(s) + return "field/method/parameter" + case *ast.FieldList: + return "field/method/parameter list" + case *ast.File: + return "source file" + case *ast.ForStmt: + return "for loop" + case *ast.FuncDecl: + return "function declaration" + case *ast.FuncLit: + return "function literal" + case *ast.FuncType: + return "function type" + case *ast.GenDecl: + switch n.Tok { + case token.IMPORT: + return "import declaration" + case token.CONST: + return "constant declaration" + case token.TYPE: + return "type declaration" + case token.VAR: + return "variable declaration" + } + case *ast.GoStmt: + return "go statement" + case *ast.Ident: + return "identifier" + case *ast.IfStmt: + return "if statement" + case *ast.ImportSpec: + return "import specification" + case *ast.IncDecStmt: + if n.Tok == token.INC { + return "increment statement" + } + return "decrement statement" + case *ast.IndexExpr: + return "index expression" + case *ast.InterfaceType: + return "interface type" + case *ast.KeyValueExpr: + return "key/value association" + case *ast.LabeledStmt: + return "statement label" + case *ast.MapType: + return "map type" + case *ast.Package: + return "package" + case *ast.ParenExpr: + return "parenthesized " + NodeDescription(n.X) + case *ast.RangeStmt: + return "range loop" + case *ast.ReturnStmt: + return "return statement" + case *ast.SelectStmt: + return "select statement" + case *ast.SelectorExpr: + return "selector" + case *ast.SendStmt: + return "channel send" + case *ast.SliceExpr: + return "slice expression" + case *ast.StarExpr: + return "*-operation" // load/store expr or pointer type + case *ast.StructType: + return "struct type" + case *ast.SwitchStmt: + return "switch statement" + case *ast.TypeAssertExpr: + return "type assertion" + case *ast.TypeSpec: + return "type specification" + case *ast.TypeSwitchStmt: + return "type switch" + case *ast.UnaryExpr: + return fmt.Sprintf("unary %s operation", n.Op) + case *ast.ValueSpec: + return "value specification" + + } + panic(fmt.Sprintf("unexpected node type: %T", n)) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/enclosing_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/enclosing_test.go new file mode 100644 index 00000000..18b911d9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/enclosing_test.go @@ -0,0 +1,195 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package astutil_test + +// This file defines tests of PathEnclosingInterval. + +// TODO(adonovan): exhaustive tests that run over the whole input +// tree, not just handcrafted examples. + +import ( + "bytes" + "fmt" + "go/ast" + "go/parser" + "go/token" + "strings" + "testing" + + "code.google.com/p/go.tools/astutil" +) + +// pathToString returns a string containing the concrete types of the +// nodes in path. +func pathToString(path []ast.Node) string { + var buf bytes.Buffer + fmt.Fprint(&buf, "[") + for i, n := range path { + if i > 0 { + fmt.Fprint(&buf, " ") + } + fmt.Fprint(&buf, strings.TrimPrefix(fmt.Sprintf("%T", n), "*ast.")) + } + fmt.Fprint(&buf, "]") + return buf.String() +} + +// findInterval parses input and returns the [start, end) positions of +// the first occurrence of substr in input. f==nil indicates failure; +// an error has already been reported in that case. +// +func findInterval(t *testing.T, fset *token.FileSet, input, substr string) (f *ast.File, start, end token.Pos) { + f, err := parser.ParseFile(fset, "", input, 0) + if err != nil { + t.Errorf("parse error: %s", err) + return + } + + i := strings.Index(input, substr) + if i < 0 { + t.Errorf("%q is not a substring of input", substr) + f = nil + return + } + + filePos := fset.File(f.Package) + return f, filePos.Pos(i), filePos.Pos(i + len(substr)) +} + +// Common input for following tests. +const input = ` +// Hello. +package main +import "fmt" +func f() {} +func main() { + z := (x + y) // add them + f() // NB: ExprStmt and its CallExpr have same Pos/End +} +` + +func TestPathEnclosingInterval_Exact(t *testing.T) { + // For the exact tests, we check that a substring is mapped to + // the canonical string for the node it denotes. + tests := []struct { + substr string // first occurrence of this string indicates interval + node string // complete text of expected containing node + }{ + {"package", + input[11 : len(input)-1]}, + {"\npack", + input[11 : len(input)-1]}, + {"main", + "main"}, + {"import", + "import \"fmt\""}, + {"\"fmt\"", + "\"fmt\""}, + {"\nfunc f() {}\n", + "func f() {}"}, + {"x ", + "x"}, + {" y", + "y"}, + {"z", + "z"}, + {" + ", + "x + y"}, + {" :=", + "z := (x + y)"}, + {"x + y", + "x + y"}, + {"(x + y)", + "(x + y)"}, + {" (x + y) ", + "(x + y)"}, + {" (x + y) // add", + "(x + y)"}, + {"func", + "func f() {}"}, + {"func f() {}", + "func f() {}"}, + {"\nfun", + "func f() {}"}, + {" f", + "f"}, + } + for _, test := range tests { + f, start, end := findInterval(t, new(token.FileSet), input, test.substr) + if f == nil { + continue + } + + path, exact := astutil.PathEnclosingInterval(f, start, end) + if !exact { + t.Errorf("PathEnclosingInterval(%q) not exact", test.substr) + continue + } + + if len(path) == 0 { + if test.node != "" { + t.Errorf("PathEnclosingInterval(%q).path: got [], want %q", + test.substr, test.node) + } + continue + } + + if got := input[path[0].Pos():path[0].End()]; got != test.node { + t.Errorf("PathEnclosingInterval(%q): got %q, want %q (path was %s)", + test.substr, got, test.node, pathToString(path)) + continue + } + } +} + +func TestPathEnclosingInterval_Paths(t *testing.T) { + // For these tests, we check only the path of the enclosing + // node, but not its complete text because it's often quite + // large when !exact. + tests := []struct { + substr string // first occurrence of this string indicates interval + path string // the pathToString(),exact of the expected path + }{ + {"// add", + "[BlockStmt FuncDecl File],false"}, + {"(x + y", + "[ParenExpr AssignStmt BlockStmt FuncDecl File],false"}, + {"x +", + "[BinaryExpr ParenExpr AssignStmt BlockStmt FuncDecl File],false"}, + {"z := (x", + "[AssignStmt BlockStmt FuncDecl File],false"}, + {"func f", + "[FuncDecl File],false"}, + {"func f()", + "[FuncDecl File],false"}, + {" f()", + "[FuncDecl File],false"}, + {"() {}", + "[FuncDecl File],false"}, + {"// Hello", + "[File],false"}, + {" f", + "[Ident FuncDecl File],true"}, + {"func ", + "[FuncDecl File],true"}, + {"mai", + "[Ident File],true"}, + {"f() // NB", + "[CallExpr ExprStmt BlockStmt FuncDecl File],true"}, + } + for _, test := range tests { + f, start, end := findInterval(t, new(token.FileSet), input, test.substr) + if f == nil { + continue + } + + path, exact := astutil.PathEnclosingInterval(f, start, end) + if got := fmt.Sprintf("%s,%v", pathToString(path), exact); got != test.path { + t.Errorf("PathEnclosingInterval(%q): got %q, want %q", + test.substr, got, test.path) + continue + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/imports.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/imports.go new file mode 100644 index 00000000..37451ec5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/imports.go @@ -0,0 +1,419 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package astutil contains common utilities for working with the Go AST. +package astutil + +import ( + "bufio" + "bytes" + "fmt" + "go/ast" + "go/format" + "go/parser" + "go/token" + "log" + "path" + "strconv" + "strings" +) + +// AddImport adds the import path to the file f, if absent. +func AddImport(fset *token.FileSet, f *ast.File, ipath string) (added bool) { + return AddNamedImport(fset, f, "", ipath) +} + +// AddNamedImport adds the import path to the file f, if absent. +// If name is not empty, it is used to rename the import. +// +// For example, calling +// AddNamedImport(f, "pathpkg", "path") +// adds +// import pathpkg "path" +func AddNamedImport(fset *token.FileSet, f *ast.File, name, ipath string) (added bool) { + if imports(f, ipath) { + return false + } + + newImport := &ast.ImportSpec{ + Path: &ast.BasicLit{ + Kind: token.STRING, + Value: strconv.Quote(ipath), + }, + } + if name != "" { + newImport.Name = &ast.Ident{Name: name} + } + + // Find an import decl to add to. + var ( + bestMatch = -1 + lastImport = -1 + impDecl *ast.GenDecl + impIndex = -1 + hasImports = false + ) + for i, decl := range f.Decls { + gen, ok := decl.(*ast.GenDecl) + if ok && gen.Tok == token.IMPORT { + hasImports = true + lastImport = i + // Do not add to import "C", to avoid disrupting the + // association with its doc comment, breaking cgo. + if declImports(gen, "C") { + continue + } + + // Compute longest shared prefix with imports in this block. + for j, spec := range gen.Specs { + impspec := spec.(*ast.ImportSpec) + n := matchLen(importPath(impspec), ipath) + if n > bestMatch { + bestMatch = n + impDecl = gen + impIndex = j + } + } + } + } + + // If no import decl found, add one after the last import. + if impDecl == nil { + // TODO(bradfitz): remove this hack. See comment below on + // addImportViaSourceModification. + if !hasImports { + f2, err := addImportViaSourceModification(fset, f, name, ipath) + if err == nil { + *f = *f2 + return true + } + log.Printf("addImportViaSourceModification error: %v", err) + } + + // TODO(bradfitz): fix above and resume using this old code: + impDecl = &ast.GenDecl{ + Tok: token.IMPORT, + } + f.Decls = append(f.Decls, nil) + copy(f.Decls[lastImport+2:], f.Decls[lastImport+1:]) + f.Decls[lastImport+1] = impDecl + } + + // Ensure the import decl has parentheses, if needed. + if len(impDecl.Specs) > 0 && !impDecl.Lparen.IsValid() { + impDecl.Lparen = impDecl.Pos() + } + + insertAt := impIndex + 1 + if insertAt == 0 { + insertAt = len(impDecl.Specs) + } + impDecl.Specs = append(impDecl.Specs, nil) + copy(impDecl.Specs[insertAt+1:], impDecl.Specs[insertAt:]) + impDecl.Specs[insertAt] = newImport + if insertAt > 0 { + // Assign same position as the previous import, + // so that the sorter sees it as being in the same block. + prev := impDecl.Specs[insertAt-1] + newImport.Path.ValuePos = prev.Pos() + newImport.EndPos = prev.Pos() + } + if len(impDecl.Specs) > 1 && impDecl.Lparen == 0 { + // set Lparen to something not zero, so the printer prints + // the full block rather just the first ImportSpec. + impDecl.Lparen = 1 + } + + f.Imports = append(f.Imports, newImport) + return true +} + +// DeleteImport deletes the import path from the file f, if present. +func DeleteImport(fset *token.FileSet, f *ast.File, path string) (deleted bool) { + oldImport := importSpec(f, path) + + // Find the import node that imports path, if any. + for i, decl := range f.Decls { + gen, ok := decl.(*ast.GenDecl) + if !ok || gen.Tok != token.IMPORT { + continue + } + for j, spec := range gen.Specs { + impspec := spec.(*ast.ImportSpec) + if oldImport != impspec { + continue + } + + // We found an import spec that imports path. + // Delete it. + deleted = true + copy(gen.Specs[j:], gen.Specs[j+1:]) + gen.Specs = gen.Specs[:len(gen.Specs)-1] + + // If this was the last import spec in this decl, + // delete the decl, too. + if len(gen.Specs) == 0 { + copy(f.Decls[i:], f.Decls[i+1:]) + f.Decls = f.Decls[:len(f.Decls)-1] + } else if len(gen.Specs) == 1 { + gen.Lparen = token.NoPos // drop parens + } + if j > 0 { + // We deleted an entry but now there will be + // a blank line-sized hole where the import was. + // Close the hole by making the previous + // import appear to "end" where this one did. + gen.Specs[j-1].(*ast.ImportSpec).EndPos = impspec.End() + } + break + } + } + + // Delete it from f.Imports. + for i, imp := range f.Imports { + if imp == oldImport { + copy(f.Imports[i:], f.Imports[i+1:]) + f.Imports = f.Imports[:len(f.Imports)-1] + break + } + } + + return +} + +// RewriteImport rewrites any import of path oldPath to path newPath. +func RewriteImport(fset *token.FileSet, f *ast.File, oldPath, newPath string) (rewrote bool) { + for _, imp := range f.Imports { + if importPath(imp) == oldPath { + rewrote = true + // record old End, because the default is to compute + // it using the length of imp.Path.Value. + imp.EndPos = imp.End() + imp.Path.Value = strconv.Quote(newPath) + } + } + return +} + +// UsesImport reports whether a given import is used. +func UsesImport(f *ast.File, path string) (used bool) { + spec := importSpec(f, path) + if spec == nil { + return + } + + name := spec.Name.String() + switch name { + case "": + // If the package name is not explicitly specified, + // make an educated guess. This is not guaranteed to be correct. + lastSlash := strings.LastIndex(path, "/") + if lastSlash == -1 { + name = path + } else { + name = path[lastSlash+1:] + } + case "_", ".": + // Not sure if this import is used - err on the side of caution. + return true + } + + ast.Walk(visitFn(func(n ast.Node) { + sel, ok := n.(*ast.SelectorExpr) + if ok && isTopName(sel.X, name) { + used = true + } + }), f) + + return +} + +type visitFn func(node ast.Node) + +func (fn visitFn) Visit(node ast.Node) ast.Visitor { + fn(node) + return fn +} + +// imports returns true if f imports path. +func imports(f *ast.File, path string) bool { + return importSpec(f, path) != nil +} + +// importSpec returns the import spec if f imports path, +// or nil otherwise. +func importSpec(f *ast.File, path string) *ast.ImportSpec { + for _, s := range f.Imports { + if importPath(s) == path { + return s + } + } + return nil +} + +// importPath returns the unquoted import path of s, +// or "" if the path is not properly quoted. +func importPath(s *ast.ImportSpec) string { + t, err := strconv.Unquote(s.Path.Value) + if err == nil { + return t + } + return "" +} + +// declImports reports whether gen contains an import of path. +func declImports(gen *ast.GenDecl, path string) bool { + if gen.Tok != token.IMPORT { + return false + } + for _, spec := range gen.Specs { + impspec := spec.(*ast.ImportSpec) + if importPath(impspec) == path { + return true + } + } + return false +} + +// RenameTop renames all references to the top-level name old. +// It returns true if it makes any changes. +func RenameTop(f *ast.File, old, new string) bool { + var fixed bool + + // Rename any conflicting imports + // (assuming package name is last element of path). + for _, s := range f.Imports { + if s.Name != nil { + if s.Name.Name == old { + s.Name.Name = new + fixed = true + } + } else { + _, thisName := path.Split(importPath(s)) + if thisName == old { + s.Name = ast.NewIdent(new) + fixed = true + } + } + } + + // Rename any top-level declarations. + for _, d := range f.Decls { + switch d := d.(type) { + case *ast.FuncDecl: + if d.Recv == nil && d.Name.Name == old { + d.Name.Name = new + d.Name.Obj.Name = new + fixed = true + } + case *ast.GenDecl: + for _, s := range d.Specs { + switch s := s.(type) { + case *ast.TypeSpec: + if s.Name.Name == old { + s.Name.Name = new + s.Name.Obj.Name = new + fixed = true + } + case *ast.ValueSpec: + for _, n := range s.Names { + if n.Name == old { + n.Name = new + n.Obj.Name = new + fixed = true + } + } + } + } + } + } + + // Rename top-level old to new, both unresolved names + // (probably defined in another file) and names that resolve + // to a declaration we renamed. + ast.Walk(visitFn(func(n ast.Node) { + id, ok := n.(*ast.Ident) + if ok && isTopName(id, old) { + id.Name = new + fixed = true + } + if ok && id.Obj != nil && id.Name == old && id.Obj.Name == new { + id.Name = id.Obj.Name + fixed = true + } + }), f) + + return fixed +} + +// matchLen returns the length of the longest prefix shared by x and y. +func matchLen(x, y string) int { + i := 0 + for i < len(x) && i < len(y) && x[i] == y[i] { + i++ + } + return i +} + +// isTopName returns true if n is a top-level unresolved identifier with the given name. +func isTopName(n ast.Expr, name string) bool { + id, ok := n.(*ast.Ident) + return ok && id.Name == name && id.Obj == nil +} + +// Imports returns the file imports grouped by paragraph. +func Imports(fset *token.FileSet, f *ast.File) [][]*ast.ImportSpec { + var groups [][]*ast.ImportSpec + + for _, decl := range f.Decls { + genDecl, ok := decl.(*ast.GenDecl) + if !ok || genDecl.Tok != token.IMPORT { + break + } + + group := []*ast.ImportSpec{} + + var lastLine int + for _, spec := range genDecl.Specs { + importSpec := spec.(*ast.ImportSpec) + pos := importSpec.Path.ValuePos + line := fset.Position(pos).Line + if lastLine > 0 && pos > 0 && line-lastLine > 1 { + groups = append(groups, group) + group = []*ast.ImportSpec{} + } + group = append(group, importSpec) + lastLine = line + } + groups = append(groups, group) + } + + return groups +} + +// NOTE(bradfitz): this is a bit of a hack for golang.org/issue/6884 +// because we can't get the comment positions correct. Instead of modifying +// the AST, we print it, modify the text, and re-parse it. Gross. +func addImportViaSourceModification(fset *token.FileSet, f *ast.File, name, ipath string) (*ast.File, error) { + var buf bytes.Buffer + if err := format.Node(&buf, fset, f); err != nil { + return nil, fmt.Errorf("Error formatting ast.File node: %v", err) + } + var out bytes.Buffer + sc := bufio.NewScanner(bytes.NewReader(buf.Bytes())) + didAdd := false + for sc.Scan() { + ln := sc.Text() + out.WriteString(ln) + out.WriteByte('\n') + if !didAdd && strings.HasPrefix(ln, "package ") { + fmt.Fprintf(&out, "\nimport %s %q\n\n", name, ipath) + didAdd = true + } + } + if err := sc.Err(); err != nil { + return nil, err + } + return parser.ParseFile(fset, "", out.Bytes(), parser.ParseComments) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/imports_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/imports_test.go new file mode 100644 index 00000000..55e2edcf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/astutil/imports_test.go @@ -0,0 +1,683 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package astutil + +import ( + "bytes" + "go/ast" + "go/format" + "go/parser" + "go/token" + "reflect" + "strconv" + "testing" +) + +var fset = token.NewFileSet() + +func parse(t *testing.T, name, in string) *ast.File { + file, err := parser.ParseFile(fset, name, in, parser.ParseComments) + if err != nil { + t.Fatalf("%s parse: %v", name, err) + } + return file +} + +func print(t *testing.T, name string, f *ast.File) string { + var buf bytes.Buffer + if err := format.Node(&buf, fset, f); err != nil { + t.Fatalf("%s gofmt: %v", name, err) + } + return string(buf.Bytes()) +} + +type test struct { + name string + renamedPkg string + pkg string + in string + out string + broken bool // known broken +} + +var addTests = []test{ + { + name: "leave os alone", + pkg: "os", + in: `package main + +import ( + "os" +) +`, + out: `package main + +import ( + "os" +) +`, + }, + { + name: "import.1", + pkg: "os", + in: `package main +`, + out: `package main + +import "os" +`, + }, + { + name: "import.2", + pkg: "os", + in: `package main + +// Comment +import "C" +`, + out: `package main + +// Comment +import "C" +import "os" +`, + }, + { + name: "import.3", + pkg: "os", + in: `package main + +// Comment +import "C" + +import ( + "io" + "utf8" +) +`, + out: `package main + +// Comment +import "C" + +import ( + "io" + "os" + "utf8" +) +`, + }, + { + name: "import.17", + pkg: "x/y/z", + in: `package main + +// Comment +import "C" + +import ( + "a" + "b" + + "x/w" + + "d/f" +) +`, + out: `package main + +// Comment +import "C" + +import ( + "a" + "b" + + "x/w" + "x/y/z" + + "d/f" +) +`, + }, + { + name: "import into singular block", + pkg: "bytes", + in: `package main + +import "os" + +`, + out: `package main + +import ( + "bytes" + "os" +) +`, + }, + { + name: "", + renamedPkg: "fmtpkg", + pkg: "fmt", + in: `package main + +import "os" + +`, + out: `package main + +import ( + fmtpkg "fmt" + "os" +) +`, + }, + { + name: "struct comment", + pkg: "time", + in: `package main + +// This is a comment before a struct. +type T struct { + t time.Time +} +`, + out: `package main + +import "time" + +// This is a comment before a struct. +type T struct { + t time.Time +} +`, + }, +} + +func TestAddImport(t *testing.T) { + for _, test := range addTests { + file := parse(t, test.name, test.in) + var before bytes.Buffer + ast.Fprint(&before, fset, file, nil) + AddNamedImport(fset, file, test.renamedPkg, test.pkg) + if got := print(t, test.name, file); got != test.out { + if test.broken { + t.Logf("%s is known broken:\ngot: %s\nwant: %s", test.name, got, test.out) + } else { + t.Errorf("%s:\ngot: %s\nwant: %s", test.name, got, test.out) + } + var after bytes.Buffer + ast.Fprint(&after, fset, file, nil) + + t.Logf("AST before:\n%s\nAST after:\n%s\n", before.String(), after.String()) + } + } +} + +func TestDoubleAddImport(t *testing.T) { + file := parse(t, "doubleimport", "package main\n") + AddImport(fset, file, "os") + AddImport(fset, file, "bytes") + want := `package main + +import ( + "bytes" + "os" +) +` + if got := print(t, "doubleimport", file); got != want { + t.Errorf("got: %s\nwant: %s", got, want) + } +} + +var deleteTests = []test{ + { + name: "import.4", + pkg: "os", + in: `package main + +import ( + "os" +) +`, + out: `package main +`, + }, + { + name: "import.5", + pkg: "os", + in: `package main + +// Comment +import "C" +import "os" +`, + out: `package main + +// Comment +import "C" +`, + }, + { + name: "import.6", + pkg: "os", + in: `package main + +// Comment +import "C" + +import ( + "io" + "os" + "utf8" +) +`, + out: `package main + +// Comment +import "C" + +import ( + "io" + "utf8" +) +`, + }, + { + name: "import.7", + pkg: "io", + in: `package main + +import ( + "io" // a + "os" // b + "utf8" // c +) +`, + out: `package main + +import ( + // a + "os" // b + "utf8" // c +) +`, + }, + { + name: "import.8", + pkg: "os", + in: `package main + +import ( + "io" // a + "os" // b + "utf8" // c +) +`, + out: `package main + +import ( + "io" // a + // b + "utf8" // c +) +`, + }, + { + name: "import.9", + pkg: "utf8", + in: `package main + +import ( + "io" // a + "os" // b + "utf8" // c +) +`, + out: `package main + +import ( + "io" // a + "os" // b + // c +) +`, + }, + { + name: "import.10", + pkg: "io", + in: `package main + +import ( + "io" + "os" + "utf8" +) +`, + out: `package main + +import ( + "os" + "utf8" +) +`, + }, + { + name: "import.11", + pkg: "os", + in: `package main + +import ( + "io" + "os" + "utf8" +) +`, + out: `package main + +import ( + "io" + "utf8" +) +`, + }, + { + name: "import.12", + pkg: "utf8", + in: `package main + +import ( + "io" + "os" + "utf8" +) +`, + out: `package main + +import ( + "io" + "os" +) +`, + }, + { + name: "handle.raw.quote.imports", + pkg: "os", + in: "package main\n\nimport `os`", + out: `package main +`, + }, +} + +func TestDeleteImport(t *testing.T) { + for _, test := range deleteTests { + file := parse(t, test.name, test.in) + DeleteImport(fset, file, test.pkg) + if got := print(t, test.name, file); got != test.out { + t.Errorf("%s:\ngot: %s\nwant: %s", test.name, got, test.out) + } + } +} + +type rewriteTest struct { + name string + srcPkg string + dstPkg string + in string + out string +} + +var rewriteTests = []rewriteTest{ + { + name: "import.13", + srcPkg: "utf8", + dstPkg: "encoding/utf8", + in: `package main + +import ( + "io" + "os" + "utf8" // thanks ken +) +`, + out: `package main + +import ( + "encoding/utf8" // thanks ken + "io" + "os" +) +`, + }, + { + name: "import.14", + srcPkg: "asn1", + dstPkg: "encoding/asn1", + in: `package main + +import ( + "asn1" + "crypto" + "crypto/rsa" + _ "crypto/sha1" + "crypto/x509" + "crypto/x509/pkix" + "time" +) + +var x = 1 +`, + out: `package main + +import ( + "crypto" + "crypto/rsa" + _ "crypto/sha1" + "crypto/x509" + "crypto/x509/pkix" + "encoding/asn1" + "time" +) + +var x = 1 +`, + }, + { + name: "import.15", + srcPkg: "url", + dstPkg: "net/url", + in: `package main + +import ( + "bufio" + "net" + "path" + "url" +) + +var x = 1 // comment on x, not on url +`, + out: `package main + +import ( + "bufio" + "net" + "net/url" + "path" +) + +var x = 1 // comment on x, not on url +`, + }, + { + name: "import.16", + srcPkg: "http", + dstPkg: "net/http", + in: `package main + +import ( + "flag" + "http" + "log" + "text/template" +) + +var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18 +`, + out: `package main + +import ( + "flag" + "log" + "net/http" + "text/template" +) + +var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18 +`, + }, +} + +func TestRewriteImport(t *testing.T) { + for _, test := range rewriteTests { + file := parse(t, test.name, test.in) + RewriteImport(fset, file, test.srcPkg, test.dstPkg) + if got := print(t, test.name, file); got != test.out { + t.Errorf("%s:\ngot: %s\nwant: %s", test.name, got, test.out) + } + } +} + +var renameTests = []rewriteTest{ + { + name: "rename pkg use", + srcPkg: "bytes", + dstPkg: "bytes_", + in: `package main + +func f() []byte { + buf := new(bytes.Buffer) + return buf.Bytes() +} +`, + out: `package main + +func f() []byte { + buf := new(bytes_.Buffer) + return buf.Bytes() +} +`, + }, +} + +func TestRenameTop(t *testing.T) { + for _, test := range renameTests { + file := parse(t, test.name, test.in) + RenameTop(file, test.srcPkg, test.dstPkg) + if got := print(t, test.name, file); got != test.out { + t.Errorf("%s:\ngot: %s\nwant: %s", test.name, got, test.out) + } + } +} + +var importsTests = []struct { + name string + in string + want [][]string +}{ + { + name: "no packages", + in: `package foo +`, + want: nil, + }, + { + name: "one group", + in: `package foo + +import ( + "fmt" + "testing" +) +`, + want: [][]string{{"fmt", "testing"}}, + }, + { + name: "four groups", + in: `package foo + +import "C" +import ( + "fmt" + "testing" + + "appengine" + + "myproject/mylib1" + "myproject/mylib2" +) +`, + want: [][]string{ + {"C"}, + {"fmt", "testing"}, + {"appengine"}, + {"myproject/mylib1", "myproject/mylib2"}, + }, + }, + { + name: "multiple factored groups", + in: `package foo + +import ( + "fmt" + "testing" + + "appengine" +) +import ( + "reflect" + + "bytes" +) +`, + want: [][]string{ + {"fmt", "testing"}, + {"appengine"}, + {"reflect"}, + {"bytes"}, + }, + }, +} + +func unquote(s string) string { + res, err := strconv.Unquote(s) + if err != nil { + return "could_not_unquote" + } + return res +} + +func TestImports(t *testing.T) { + fset := token.NewFileSet() + for _, test := range importsTests { + f, err := parser.ParseFile(fset, "test.go", test.in, 0) + if err != nil { + t.Errorf("%s: %v", test.name, err) + continue + } + var got [][]string + for _, block := range Imports(fset, f) { + var b []string + for _, spec := range block { + b = append(b, unquote(spec.Path.Value)) + } + got = append(got, b) + } + if !reflect.DeepEqual(got, test.want) { + t.Errorf("Imports(%s)=%v, want %v", test.name, got, test.want) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/blog/atom/atom.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/blog/atom/atom.go new file mode 100644 index 00000000..bc114dd7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/blog/atom/atom.go @@ -0,0 +1,57 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Adapted from encoding/xml/read_test.go. + +// Package atom defines XML data structures for an Atom feed. +package atom + +import ( + "encoding/xml" + "time" +) + +type Feed struct { + XMLName xml.Name `xml:"http://www.w3.org/2005/Atom feed"` + Title string `xml:"title"` + ID string `xml:"id"` + Link []Link `xml:"link"` + Updated TimeStr `xml:"updated"` + Author *Person `xml:"author"` + Entry []*Entry `xml:"entry"` +} + +type Entry struct { + Title string `xml:"title"` + ID string `xml:"id"` + Link []Link `xml:"link"` + Published TimeStr `xml:"published"` + Updated TimeStr `xml:"updated"` + Author *Person `xml:"author"` + Summary *Text `xml:"summary"` + Content *Text `xml:"content"` +} + +type Link struct { + Rel string `xml:"rel,attr"` + Href string `xml:"href,attr"` +} + +type Person struct { + Name string `xml:"name"` + URI string `xml:"uri,omitempty"` + Email string `xml:"email,omitempty"` + InnerXML string `xml:",innerxml"` +} + +type Text struct { + Type string `xml:"type,attr"` + Body string `xml:",chardata"` +} + +type TimeStr string + +func Time(t time.Time) TimeStr { + return TimeStr(t.Format("2006-01-02T15:04:05-07:00")) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/blog/blog.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/blog/blog.go new file mode 100644 index 00000000..148bbefc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/blog/blog.go @@ -0,0 +1,424 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package blog implements a web server for articles written in present format. +package blog + +import ( + "bytes" + "encoding/json" + "encoding/xml" + "fmt" + "html/template" + "log" + "net/http" + "os" + "path/filepath" + "regexp" + "sort" + "strings" + "time" + + "code.google.com/p/go.tools/blog/atom" + "code.google.com/p/go.tools/present" +) + +var validJSONPFunc = regexp.MustCompile(`(?i)^[a-z_][a-z0-9_.]*$`) + +// Config specifies Server configuration values. +type Config struct { + ContentPath string // Relative or absolute location of article files and related content. + TemplatePath string // Relative or absolute location of template files. + + BaseURL string // Absolute base URL (for permalinks; no trailing slash). + BasePath string // Base URL path relative to server root (no trailing slash). + GodocURL string // The base URL of godoc (for menu bar; no trailing slash). + Hostname string // Server host name, used for rendering ATOM feeds. + + HomeArticles int // Articles to display on the home page. + FeedArticles int // Articles to include in Atom and JSON feeds. + FeedTitle string // The title of the Atom XML feed + + PlayEnabled bool +} + +// Doc represents an article adorned with presentation data. +type Doc struct { + *present.Doc + Permalink string // Canonical URL for this document. + Path string // Path relative to server root (including base). + HTML template.HTML // rendered article + + Related []*Doc + Newer, Older *Doc +} + +// Server implements an http.Handler that serves blog articles. +type Server struct { + cfg Config + docs []*Doc + tags []string + docPaths map[string]*Doc // key is path without BasePath. + docTags map[string][]*Doc + template struct { + home, index, article, doc *template.Template + } + atomFeed []byte // pre-rendered Atom feed + jsonFeed []byte // pre-rendered JSON feed + content http.Handler +} + +// NewServer constructs a new Server using the specified config. +func NewServer(cfg Config) (*Server, error) { + present.PlayEnabled = cfg.PlayEnabled + + root := filepath.Join(cfg.TemplatePath, "root.tmpl") + parse := func(name string) (*template.Template, error) { + t := template.New("").Funcs(funcMap) + return t.ParseFiles(root, filepath.Join(cfg.TemplatePath, name)) + } + + s := &Server{cfg: cfg} + + // Parse templates. + var err error + s.template.home, err = parse("home.tmpl") + if err != nil { + return nil, err + } + s.template.index, err = parse("index.tmpl") + if err != nil { + return nil, err + } + s.template.article, err = parse("article.tmpl") + if err != nil { + return nil, err + } + p := present.Template().Funcs(funcMap) + s.template.doc, err = p.ParseFiles(filepath.Join(cfg.TemplatePath, "doc.tmpl")) + if err != nil { + return nil, err + } + + // Load content. + err = s.loadDocs(filepath.Clean(cfg.ContentPath)) + if err != nil { + return nil, err + } + + err = s.renderAtomFeed() + if err != nil { + return nil, err + } + + err = s.renderJSONFeed() + if err != nil { + return nil, err + } + + // Set up content file server. + s.content = http.StripPrefix(s.cfg.BasePath, http.FileServer(http.Dir(cfg.ContentPath))) + + return s, nil +} + +var funcMap = template.FuncMap{ + "sectioned": sectioned, + "authors": authors, +} + +// sectioned returns true if the provided Doc contains more than one section. +// This is used to control whether to display the table of contents and headings. +func sectioned(d *present.Doc) bool { + return len(d.Sections) > 1 +} + +// authors returns a comma-separated list of author names. +func authors(authors []present.Author) string { + var b bytes.Buffer + last := len(authors) - 1 + for i, a := range authors { + if i > 0 { + if i == last { + b.WriteString(" and ") + } else { + b.WriteString(", ") + } + } + b.WriteString(authorName(a)) + } + return b.String() +} + +// authorName returns the first line of the Author text: the author's name. +func authorName(a present.Author) string { + el := a.TextElem() + if len(el) == 0 { + return "" + } + text, ok := el[0].(present.Text) + if !ok || len(text.Lines) == 0 { + return "" + } + return text.Lines[0] +} + +// loadDocs reads all content from the provided file system root, renders all +// the articles it finds, adds them to the Server's docs field, computes the +// denormalized docPaths, docTags, and tags fields, and populates the various +// helper fields (Next, Previous, Related) for each Doc. +func (s *Server) loadDocs(root string) error { + // Read content into docs field. + const ext = ".article" + fn := func(p string, info os.FileInfo, err error) error { + if filepath.Ext(p) != ext { + return nil + } + f, err := os.Open(p) + if err != nil { + return err + } + defer f.Close() + d, err := present.Parse(f, p, 0) + if err != nil { + return err + } + html := new(bytes.Buffer) + err = d.Render(html, s.template.doc) + if err != nil { + return err + } + p = p[len(root) : len(p)-len(ext)] // trim root and extension + p = filepath.ToSlash(p) + s.docs = append(s.docs, &Doc{ + Doc: d, + Path: s.cfg.BasePath + p, + Permalink: s.cfg.BaseURL + p, + HTML: template.HTML(html.String()), + }) + return nil + } + err := filepath.Walk(root, fn) + if err != nil { + return err + } + sort.Sort(docsByTime(s.docs)) + + // Pull out doc paths and tags and put in reverse-associating maps. + s.docPaths = make(map[string]*Doc) + s.docTags = make(map[string][]*Doc) + for _, d := range s.docs { + s.docPaths[strings.TrimPrefix(d.Path, s.cfg.BasePath)] = d + for _, t := range d.Tags { + s.docTags[t] = append(s.docTags[t], d) + } + } + + // Pull out unique sorted list of tags. + for t := range s.docTags { + s.tags = append(s.tags, t) + } + sort.Strings(s.tags) + + // Set up presentation-related fields, Newer, Older, and Related. + for _, doc := range s.docs { + // Newer, Older: docs adjacent to doc + for i := range s.docs { + if s.docs[i] != doc { + continue + } + if i > 0 { + doc.Newer = s.docs[i-1] + } + if i+1 < len(s.docs) { + doc.Older = s.docs[i+1] + } + break + } + + // Related: all docs that share tags with doc. + related := make(map[*Doc]bool) + for _, t := range doc.Tags { + for _, d := range s.docTags[t] { + if d != doc { + related[d] = true + } + } + } + for d := range related { + doc.Related = append(doc.Related, d) + } + sort.Sort(docsByTime(doc.Related)) + } + + return nil +} + +// renderAtomFeed generates an XML Atom feed and stores it in the Server's +// atomFeed field. +func (s *Server) renderAtomFeed() error { + var updated time.Time + if len(s.docs) > 0 { + updated = s.docs[0].Time + } + feed := atom.Feed{ + Title: s.cfg.FeedTitle, + ID: "tag:" + s.cfg.Hostname + ",2013:" + s.cfg.Hostname, + Updated: atom.Time(updated), + Link: []atom.Link{{ + Rel: "self", + Href: s.cfg.BaseURL + "/feed.atom", + }}, + } + for i, doc := range s.docs { + if i >= s.cfg.FeedArticles { + break + } + e := &atom.Entry{ + Title: doc.Title, + ID: feed.ID + doc.Path, + Link: []atom.Link{{ + Rel: "alternate", + Href: doc.Permalink, + }}, + Published: atom.Time(doc.Time), + Updated: atom.Time(doc.Time), + Summary: &atom.Text{ + Type: "html", + Body: summary(doc), + }, + Content: &atom.Text{ + Type: "html", + Body: string(doc.HTML), + }, + Author: &atom.Person{ + Name: authors(doc.Authors), + }, + } + feed.Entry = append(feed.Entry, e) + } + data, err := xml.Marshal(&feed) + if err != nil { + return err + } + s.atomFeed = data + return nil +} + +type jsonItem struct { + Title string + Link string + Time time.Time + Summary string + Content string + Author string +} + +// renderJSONFeed generates a JSON feed and stores it in the Server's jsonFeed +// field. +func (s *Server) renderJSONFeed() error { + var feed []jsonItem + for i, doc := range s.docs { + if i >= s.cfg.FeedArticles { + break + } + item := jsonItem{ + Title: doc.Title, + Link: doc.Permalink, + Time: doc.Time, + Summary: summary(doc), + Content: string(doc.HTML), + Author: authors(doc.Authors), + } + feed = append(feed, item) + } + data, err := json.Marshal(feed) + if err != nil { + return err + } + s.jsonFeed = data + return nil +} + +// summary returns the first paragraph of text from the provided Doc. +func summary(d *Doc) string { + if len(d.Sections) == 0 { + return "" + } + for _, elem := range d.Sections[0].Elem { + text, ok := elem.(present.Text) + if !ok || text.Pre { + // skip everything but non-text elements + continue + } + var buf bytes.Buffer + for _, s := range text.Lines { + buf.WriteString(string(present.Style(s))) + buf.WriteByte('\n') + } + return buf.String() + } + return "" +} + +// rootData encapsulates data destined for the root template. +type rootData struct { + Doc *Doc + BasePath string + GodocURL string + Data interface{} +} + +// ServeHTTP serves the front, index, and article pages +// as well as the ATOM and JSON feeds. +func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) { + var ( + d = rootData{BasePath: s.cfg.BasePath, GodocURL: s.cfg.GodocURL} + t *template.Template + ) + switch p := strings.TrimPrefix(r.URL.Path, s.cfg.BasePath); p { + case "/": + d.Data = s.docs + if len(s.docs) > s.cfg.HomeArticles { + d.Data = s.docs[:s.cfg.HomeArticles] + } + t = s.template.home + case "/index": + d.Data = s.docs + t = s.template.index + case "/feed.atom", "/feeds/posts/default": + w.Header().Set("Content-type", "application/atom+xml; charset=utf-8") + w.Write(s.atomFeed) + return + case "/.json": + if p := r.FormValue("jsonp"); validJSONPFunc.MatchString(p) { + w.Header().Set("Content-type", "application/javascript; charset=utf-8") + fmt.Fprintf(w, "%v(%s)", p, s.jsonFeed) + return + } + w.Header().Set("Content-type", "application/json; charset=utf-8") + w.Write(s.jsonFeed) + return + default: + doc, ok := s.docPaths[p] + if !ok { + // Not a doc; try to just serve static content. + s.content.ServeHTTP(w, r) + return + } + d.Doc = doc + t = s.template.article + } + err := t.ExecuteTemplate(w, "root", d) + if err != nil { + log.Println(err) + } +} + +// docsByTime implements sort.Interface, sorting Docs by their Time field. +type docsByTime []*Doc + +func (s docsByTime) Len() int { return len(s) } +func (s docsByTime) Swap(i, j int) { s[i], s[j] = s[j], s[i] } +func (s docsByTime) Less(i, j int) bool { return s[i].Time.After(s[j].Time) } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/benchcmp.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/benchcmp.go new file mode 100644 index 00000000..c2f0013e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/benchcmp.go @@ -0,0 +1,160 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "flag" + "fmt" + "os" + "sort" + "strconv" + "text/tabwriter" +) + +var ( + changedOnly = flag.Bool("changed", false, "show only benchmarks that have changed") + magSort = flag.Bool("mag", false, "sort benchmarks by magnitude of change") +) + +const usageFooter = ` +Each input file should be from: + go test -test.run=NONE -test.bench=. > [old,new].txt + +Benchcmp compares old and new for each benchmark. + +If -test.benchmem=true is added to the "go test" command +benchcmp will also compare memory allocations. +` + +func main() { + flag.Usage = func() { + fmt.Fprintf(os.Stderr, "usage: %s old.txt new.txt\n\n", os.Args[0]) + flag.PrintDefaults() + fmt.Fprint(os.Stderr, usageFooter) + os.Exit(2) + } + flag.Parse() + if flag.NArg() != 2 { + flag.Usage() + } + + before := parseFile(flag.Arg(0)) + after := parseFile(flag.Arg(1)) + + cmps, warnings := Correlate(before, after) + + for _, warn := range warnings { + fmt.Fprintln(os.Stderr, warn) + } + + if len(cmps) == 0 { + fatal("benchcmp: no repeated benchmarks") + } + + w := new(tabwriter.Writer) + w.Init(os.Stdout, 0, 0, 5, ' ', 0) + defer w.Flush() + + var header bool // Has the header has been displayed yet for a given block? + + if *magSort { + sort.Sort(ByDeltaNsOp(cmps)) + } else { + sort.Sort(ByParseOrder(cmps)) + } + for _, cmp := range cmps { + if !cmp.Measured(NsOp) { + continue + } + if delta := cmp.DeltaNsOp(); !*changedOnly || delta.Changed() { + if !header { + fmt.Fprintf(w, "benchmark\told ns/op\tnew ns/op\tdelta\t\n") + header = true + } + fmt.Fprintf(w, "%s\t%s\t%s\t%s\t\n", cmp.Name(), formatNs(cmp.Before.NsOp), formatNs(cmp.After.NsOp), delta.Percent()) + } + } + + header = false + if *magSort { + sort.Sort(ByDeltaMbS(cmps)) + } + for _, cmp := range cmps { + if !cmp.Measured(MbS) { + continue + } + if delta := cmp.DeltaMbS(); !*changedOnly || delta.Changed() { + if !header { + fmt.Fprintf(w, "\nbenchmark\told MB/s\tnew MB/s\tspeedup\t\n") + header = true + } + fmt.Fprintf(w, "%s\t%.2f\t%.2f\t%s\t\n", cmp.Name(), cmp.Before.MbS, cmp.After.MbS, delta.Multiple()) + } + } + + header = false + if *magSort { + sort.Sort(ByDeltaAllocsOp(cmps)) + } + for _, cmp := range cmps { + if !cmp.Measured(AllocsOp) { + continue + } + if delta := cmp.DeltaAllocsOp(); !*changedOnly || delta.Changed() { + if !header { + fmt.Fprintf(w, "\nbenchmark\told allocs\tnew allocs\tdelta\t\n") + header = true + } + fmt.Fprintf(w, "%s\t%d\t%d\t%s\t\n", cmp.Name(), cmp.Before.AllocsOp, cmp.After.AllocsOp, delta.Percent()) + } + } + + header = false + if *magSort { + sort.Sort(ByDeltaBOp(cmps)) + } + for _, cmp := range cmps { + if !cmp.Measured(BOp) { + continue + } + if delta := cmp.DeltaBOp(); !*changedOnly || delta.Changed() { + if !header { + fmt.Fprintf(w, "\nbenchmark\told bytes\tnew bytes\tdelta\t\n") + header = true + } + fmt.Fprintf(w, "%s\t%d\t%d\t%s\t\n", cmp.Name(), cmp.Before.BOp, cmp.After.BOp, cmp.DeltaBOp().Percent()) + } + } +} + +func fatal(msg interface{}) { + fmt.Fprintln(os.Stderr, msg) + os.Exit(1) +} + +func parseFile(path string) BenchSet { + f, err := os.Open(path) + if err != nil { + fatal(err) + } + bb, err := ParseBenchSet(f) + if err != nil { + fatal(err) + } + return bb +} + +// formatNs formats ns measurements to expose a useful amount of +// precision. It mirrors the ns precision logic of testing.B. +func formatNs(ns float64) string { + prec := 0 + switch { + case ns < 10: + prec = 2 + case ns < 100: + prec = 1 + } + return strconv.FormatFloat(ns, 'f', prec, 64) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/compare.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/compare.go new file mode 100644 index 00000000..9ebe4265 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/compare.go @@ -0,0 +1,148 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "math" +) + +// BenchCmp is a pair of benchmarks. +type BenchCmp struct { + Before *Bench + After *Bench +} + +// Correlate correlates benchmarks from two BenchSets. +func Correlate(before, after BenchSet) (cmps []BenchCmp, warnings []string) { + cmps = make([]BenchCmp, 0, len(after)) + for name, beforebb := range before { + afterbb := after[name] + if len(beforebb) != len(afterbb) { + warnings = append(warnings, fmt.Sprintf("ignoring %s: before has %d instances, after has %d", name, len(beforebb), len(afterbb))) + continue + } + for i, beforeb := range beforebb { + afterb := afterbb[i] + cmps = append(cmps, BenchCmp{beforeb, afterb}) + } + } + return +} + +func (c BenchCmp) Name() string { return c.Before.Name } +func (c BenchCmp) String() string { return fmt.Sprintf("<%s, %s>", c.Before, c.After) } +func (c BenchCmp) Measured(flag int) bool { return c.Before.Measured&c.After.Measured&flag != 0 } +func (c BenchCmp) DeltaNsOp() Delta { return Delta{c.Before.NsOp, c.After.NsOp} } +func (c BenchCmp) DeltaMbS() Delta { return Delta{c.Before.MbS, c.After.MbS} } +func (c BenchCmp) DeltaBOp() Delta { return Delta{float64(c.Before.BOp), float64(c.After.BOp)} } +func (c BenchCmp) DeltaAllocsOp() Delta { + return Delta{float64(c.Before.AllocsOp), float64(c.After.AllocsOp)} +} + +// Delta is the before and after value for a benchmark measurement. +// Both must be non-negative. +type Delta struct { + Before float64 + After float64 +} + +// mag calculates the magnitude of a change, regardless of the direction of +// the change. mag is intended for sorting and has no independent meaning. +func (d Delta) mag() float64 { + switch { + case d.Before != 0 && d.After != 0 && d.Before >= d.After: + return d.After / d.Before + case d.Before != 0 && d.After != 0 && d.Before < d.After: + return d.Before / d.After + case d.Before == 0 && d.After == 0: + return 1 + default: + // 0 -> 1 or 1 -> 0 + // These are significant changes and worth surfacing. + return math.Inf(1) + } +} + +// Changed reports whether the benchmark quantities are different. +func (d Delta) Changed() bool { return d.Before != d.After } + +// Float64 returns After / Before. If Before is 0, Float64 returns +// 1 if After is also 0, and +Inf otherwise. +func (d Delta) Float64() float64 { + switch { + case d.Before != 0: + return d.After / d.Before + case d.After == 0: + return 1 + default: + return math.Inf(1) + } +} + +// Percent formats a Delta as a percent change, ranging from -100% up. +func (d Delta) Percent() string { + return fmt.Sprintf("%+.2f%%", 100*d.Float64()-100) +} + +// Multiple formats a Delta as a multiplier, ranging from 0.00x up. +func (d Delta) Multiple() string { + return fmt.Sprintf("%.2fx", d.Float64()) +} + +func (d Delta) String() string { + return fmt.Sprintf("Δ(%f, %f)", d.Before, d.After) +} + +// ByParseOrder sorts BenchCmps to match the order in +// which the Before benchmarks were presented to Parse. +type ByParseOrder []BenchCmp + +func (x ByParseOrder) Len() int { return len(x) } +func (x ByParseOrder) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x ByParseOrder) Less(i, j int) bool { return x[i].Before.ord < x[j].Before.ord } + +// lessByDelta provides lexicographic ordering: +// * largest delta by magnitude +// * alphabetic by name +func lessByDelta(i, j BenchCmp, calcDelta func(BenchCmp) Delta) bool { + iDelta, jDelta := calcDelta(i).mag(), calcDelta(j).mag() + if iDelta != jDelta { + return iDelta < jDelta + } + return i.Name() < j.Name() +} + +// ByDeltaNsOp sorts BenchCmps lexicographically by change +// in ns/op, descending, then by benchmark name. +type ByDeltaNsOp []BenchCmp + +func (x ByDeltaNsOp) Len() int { return len(x) } +func (x ByDeltaNsOp) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x ByDeltaNsOp) Less(i, j int) bool { return lessByDelta(x[i], x[j], BenchCmp.DeltaNsOp) } + +// ByDeltaMbS sorts BenchCmps lexicographically by change +// in MB/s, descending, then by benchmark name. +type ByDeltaMbS []BenchCmp + +func (x ByDeltaMbS) Len() int { return len(x) } +func (x ByDeltaMbS) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x ByDeltaMbS) Less(i, j int) bool { return lessByDelta(x[i], x[j], BenchCmp.DeltaMbS) } + +// ByDeltaBOp sorts BenchCmps lexicographically by change +// in B/op, descending, then by benchmark name. +type ByDeltaBOp []BenchCmp + +func (x ByDeltaBOp) Len() int { return len(x) } +func (x ByDeltaBOp) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x ByDeltaBOp) Less(i, j int) bool { return lessByDelta(x[i], x[j], BenchCmp.DeltaBOp) } + +// ByDeltaAllocsOp sorts BenchCmps lexicographically by change +// in allocs/op, descending, then by benchmark name. +type ByDeltaAllocsOp []BenchCmp + +func (x ByDeltaAllocsOp) Len() int { return len(x) } +func (x ByDeltaAllocsOp) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x ByDeltaAllocsOp) Less(i, j int) bool { return lessByDelta(x[i], x[j], BenchCmp.DeltaAllocsOp) } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/compare_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/compare_test.go new file mode 100644 index 00000000..5baca667 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/compare_test.go @@ -0,0 +1,131 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "math" + "reflect" + "sort" + "testing" +) + +func TestDelta(t *testing.T) { + cases := []struct { + before float64 + after float64 + mag float64 + f float64 + changed bool + pct string + mult string + }{ + {before: 1, after: 1, mag: 1, f: 1, changed: false, pct: "+0.00%", mult: "1.00x"}, + {before: 1, after: 2, mag: 0.5, f: 2, changed: true, pct: "+100.00%", mult: "2.00x"}, + {before: 2, after: 1, mag: 0.5, f: 0.5, changed: true, pct: "-50.00%", mult: "0.50x"}, + {before: 0, after: 0, mag: 1, f: 1, changed: false, pct: "+0.00%", mult: "1.00x"}, + {before: 1, after: 0, mag: math.Inf(1), f: 0, changed: true, pct: "-100.00%", mult: "0.00x"}, + {before: 0, after: 1, mag: math.Inf(1), f: math.Inf(1), changed: true, pct: "+Inf%", mult: "+Infx"}, + } + for _, tt := range cases { + d := Delta{tt.before, tt.after} + if want, have := tt.mag, d.mag(); want != have { + t.Errorf("%s.mag(): want %f have %f", d, want, have) + } + if want, have := tt.f, d.Float64(); want != have { + t.Errorf("%s.Float64(): want %f have %f", d, want, have) + } + if want, have := tt.changed, d.Changed(); want != have { + t.Errorf("%s.Changed(): want %t have %t", d, want, have) + } + if want, have := tt.pct, d.Percent(); want != have { + t.Errorf("%s.Percent(): want %q have %q", d, want, have) + } + if want, have := tt.mult, d.Multiple(); want != have { + t.Errorf("%s.Multiple(): want %q have %q", d, want, have) + } + } +} + +func TestCorrelate(t *testing.T) { + // Benches that are going to be successfully correlated get N thus: + // 0x + // Read this: " of , from ". + before := BenchSet{ + "BenchmarkOneEach": []*Bench{{Name: "BenchmarkOneEach", N: 0x11b}}, + "BenchmarkOneToNone": []*Bench{{Name: "BenchmarkOneToNone"}}, + "BenchmarkOneToTwo": []*Bench{{Name: "BenchmarkOneToTwo"}}, + "BenchmarkTwoToOne": []*Bench{ + {Name: "BenchmarkTwoToOne"}, + {Name: "BenchmarkTwoToOne"}, + }, + "BenchmarkTwoEach": []*Bench{ + {Name: "BenchmarkTwoEach", N: 0x12b}, + {Name: "BenchmarkTwoEach", N: 0x22b}, + }, + } + + after := BenchSet{ + "BenchmarkOneEach": []*Bench{{Name: "BenchmarkOneEach", N: 0x11a}}, + "BenchmarkNoneToOne": []*Bench{{Name: "BenchmarkNoneToOne"}}, + "BenchmarkTwoToOne": []*Bench{{Name: "BenchmarkTwoToOne"}}, + "BenchmarkOneToTwo": []*Bench{ + {Name: "BenchmarkOneToTwo"}, + {Name: "BenchmarkOneToTwo"}, + }, + "BenchmarkTwoEach": []*Bench{ + {Name: "BenchmarkTwoEach", N: 0x12a}, + {Name: "BenchmarkTwoEach", N: 0x22a}, + }, + } + + pairs, errs := Correlate(before, after) + + // Fail to match: BenchmarkOneToNone, BenchmarkOneToTwo, BenchmarkTwoToOne. + // Correlate does not notice BenchmarkNoneToOne. + if len(errs) != 3 { + t.Errorf("Correlated expected 4 errors, got %d: %v", len(errs), errs) + } + + // Want three correlated pairs: one BenchmarkOneEach, two BenchmarkTwoEach. + if len(pairs) != 3 { + t.Fatalf("Correlated expected 3 pairs, got %v", pairs) + } + + for _, pair := range pairs { + if pair.Before.N&0xF != 0xb { + t.Errorf("unexpected Before in pair %s", pair) + } + if pair.After.N&0xF != 0xa { + t.Errorf("unexpected After in pair %s", pair) + } + if pair.Before.N>>4 != pair.After.N>>4 { + t.Errorf("mismatched pair %s", pair) + } + } +} + +func TestBenchCmpSorting(t *testing.T) { + c := []BenchCmp{ + {&Bench{Name: "BenchmarkMuchFaster", NsOp: 10, ord: 3}, &Bench{Name: "BenchmarkMuchFaster", NsOp: 1}}, + {&Bench{Name: "BenchmarkSameB", NsOp: 5, ord: 1}, &Bench{Name: "BenchmarkSameB", NsOp: 5}}, + {&Bench{Name: "BenchmarkSameA", NsOp: 5, ord: 2}, &Bench{Name: "BenchmarkSameA", NsOp: 5}}, + {&Bench{Name: "BenchmarkSlower", NsOp: 10, ord: 0}, &Bench{Name: "BenchmarkSlower", NsOp: 11}}, + } + + // Test just one magnitude-based sort order; they are symmetric. + sort.Sort(ByDeltaNsOp(c)) + want := []string{"BenchmarkMuchFaster", "BenchmarkSlower", "BenchmarkSameA", "BenchmarkSameB"} + have := []string{c[0].Name(), c[1].Name(), c[2].Name(), c[3].Name()} + if !reflect.DeepEqual(want, have) { + t.Errorf("ByDeltaNsOp incorrect sorting: want %v have %v", want, have) + } + + sort.Sort(ByParseOrder(c)) + want = []string{"BenchmarkSlower", "BenchmarkSameB", "BenchmarkSameA", "BenchmarkMuchFaster"} + have = []string{c[0].Name(), c[1].Name(), c[2].Name(), c[3].Name()} + if !reflect.DeepEqual(want, have) { + t.Errorf("ByParseOrder incorrect sorting: want %v have %v", want, have) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/doc.go new file mode 100644 index 00000000..b0714b90 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/doc.go @@ -0,0 +1,37 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + +The benchcmp command displays performance changes between benchmarks. + +Benchcmp parses the output of two 'go test' benchmark runs, +correlates the results per benchmark, and displays the deltas. + +To measure the performance impact of a change, use 'go test' +to run benchmarks before and after the change: + + go test -run=NONE -bench=. ./... > old.txt + # make changes + go test -run=NONE -bench=. ./... > new.txt + +Then feed the benchmark results to benchcmp: + + benchcmp old.txt new.txt + +Benchcmp will summarize and display the performance changes, +in a format like this: + + $ benchcmp old.txt new.txt + benchmark old ns/op new ns/op delta + BenchmarkConcat 523 68.6 -86.88% + + benchmark old allocs new allocs delta + BenchmarkConcat 3 1 -66.67% + + benchmark old bytes new bytes delta + BenchmarkConcat 80 48 -40.00% + +*/ +package main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/parse.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/parse.go new file mode 100644 index 00000000..c8cb5326 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/parse.go @@ -0,0 +1,127 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bufio" + "bytes" + "fmt" + "io" + "strconv" + "strings" +) + +// Flags used by Bench.Measured to indicate +// which measurements a Bench contains. +const ( + NsOp = 1 << iota + MbS + BOp + AllocsOp +) + +// Bench is one run of a single benchmark. +type Bench struct { + Name string // benchmark name + N int // number of iterations + NsOp float64 // nanoseconds per iteration + MbS float64 // MB processed per second + BOp uint64 // bytes allocated per iteration + AllocsOp uint64 // allocs per iteration + Measured int // which measurements were recorded + ord int // ordinal position within a benchmark run, used for sorting +} + +// ParseLine extracts a Bench from a single line of testing.B output. +func ParseLine(line string) (*Bench, error) { + fields := strings.Fields(line) + + // Two required, positional fields: Name and iterations. + if len(fields) < 2 { + return nil, fmt.Errorf("two fields required, have %d", len(fields)) + } + if !strings.HasPrefix(fields[0], "Benchmark") { + return nil, fmt.Errorf(`first field does not start with "Benchmark`) + } + n, err := strconv.Atoi(fields[1]) + if err != nil { + return nil, err + } + b := &Bench{Name: fields[0], N: n} + + // Parse any remaining pairs of fields; we've parsed one pair already. + for i := 1; i < len(fields)/2; i++ { + b.parseMeasurement(fields[i*2], fields[i*2+1]) + } + return b, nil +} + +func (b *Bench) parseMeasurement(quant string, unit string) { + switch unit { + case "ns/op": + if f, err := strconv.ParseFloat(quant, 64); err == nil { + b.NsOp = f + b.Measured |= NsOp + } + case "MB/s": + if f, err := strconv.ParseFloat(quant, 64); err == nil { + b.MbS = f + b.Measured |= MbS + } + case "B/op": + if i, err := strconv.ParseUint(quant, 10, 64); err == nil { + b.BOp = i + b.Measured |= BOp + } + case "allocs/op": + if i, err := strconv.ParseUint(quant, 10, 64); err == nil { + b.AllocsOp = i + b.Measured |= AllocsOp + } + } +} + +func (b *Bench) String() string { + buf := new(bytes.Buffer) + fmt.Fprintf(buf, "%s %d", b.Name, b.N) + if b.Measured&NsOp != 0 { + fmt.Fprintf(buf, " %.2f ns/op", b.NsOp) + } + if b.Measured&MbS != 0 { + fmt.Fprintf(buf, " %.2f MB/s", b.MbS) + } + if b.Measured&BOp != 0 { + fmt.Fprintf(buf, " %d B/op", b.BOp) + } + if b.Measured&AllocsOp != 0 { + fmt.Fprintf(buf, " %d allocs/op", b.AllocsOp) + } + return buf.String() +} + +// BenchSet is a collection of benchmarks from one +// testing.B run, keyed by name to faciliate comparison. +type BenchSet map[string][]*Bench + +// Parse extracts a BenchSet from testing.B output. Parse +// preserves the order of benchmarks that have identical names. +func ParseBenchSet(r io.Reader) (BenchSet, error) { + bb := make(BenchSet) + scan := bufio.NewScanner(r) + ord := 0 + for scan.Scan() { + if b, err := ParseLine(scan.Text()); err == nil { + b.ord = ord + bb[b.Name] = append(bb[b.Name], b) + ord++ + } + } + + if err := scan.Err(); err != nil { + return nil, err + } + + return bb, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/parse_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/parse_test.go new file mode 100644 index 00000000..3f3c0036 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/benchcmp/parse_test.go @@ -0,0 +1,154 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "reflect" + "strings" + "testing" +) + +func TestParseLine(t *testing.T) { + cases := []struct { + line string + want *Bench + err bool // expect an error + }{ + { + line: "BenchmarkEncrypt 100000000 19.6 ns/op", + want: &Bench{ + Name: "BenchmarkEncrypt", + N: 100000000, NsOp: 19.6, + Measured: NsOp, + }, + }, + { + line: "BenchmarkEncrypt 100000000 19.6 ns/op 817.77 MB/s", + want: &Bench{ + Name: "BenchmarkEncrypt", + N: 100000000, NsOp: 19.6, MbS: 817.77, + Measured: NsOp | MbS, + }, + }, + { + line: "BenchmarkEncrypt 100000000 19.6 ns/op 817.77", + want: &Bench{ + Name: "BenchmarkEncrypt", + N: 100000000, NsOp: 19.6, + Measured: NsOp, + }, + }, + { + line: "BenchmarkEncrypt 100000000 19.6 ns/op 817.77 MB/s 5 allocs/op", + want: &Bench{ + Name: "BenchmarkEncrypt", + N: 100000000, NsOp: 19.6, MbS: 817.77, AllocsOp: 5, + Measured: NsOp | MbS | AllocsOp, + }, + }, + { + line: "BenchmarkEncrypt 100000000 19.6 ns/op 817.77 MB/s 3 B/op 5 allocs/op", + want: &Bench{ + Name: "BenchmarkEncrypt", + N: 100000000, NsOp: 19.6, MbS: 817.77, BOp: 3, AllocsOp: 5, + Measured: NsOp | MbS | BOp | AllocsOp, + }, + }, + // error handling cases + { + line: "BenchPress 100 19.6 ns/op", // non-benchmark + err: true, + }, + { + line: "BenchmarkEncrypt lots 19.6 ns/op", // non-int iterations + err: true, + }, + { + line: "BenchmarkBridge 100000000 19.6 smoots", // unknown unit + want: &Bench{ + Name: "BenchmarkBridge", + N: 100000000, + }, + }, + { + line: "PASS", + err: true, + }, + } + + for _, tt := range cases { + have, err := ParseLine(tt.line) + if tt.err && err == nil { + t.Errorf("parsing line %q should have failed", tt.line) + continue + } + if !reflect.DeepEqual(have, tt.want) { + t.Errorf("parsed line %q incorrectly, want %v have %v", tt.line, tt.want, have) + } + } +} + +func TestParseBenchSet(t *testing.T) { + // Test two things: + // 1. The noise that can accompany testing.B output gets ignored. + // 2. Benchmarks with the same name have their order preserved. + in := ` + ? crypto [no test files] + PASS + pem_decrypt_test.go:17: test 4. %!s(x509.PEMCipher=5) + ... [output truncated] + + BenchmarkEncrypt 100000000 19.6 ns/op + BenchmarkEncrypt 5000000 517 ns/op + === RUN TestChunk + --- PASS: TestChunk (0.00 seconds) + --- SKIP: TestLinuxSendfile (0.00 seconds) + fs_test.go:716: skipping; linux-only test + BenchmarkReadRequestApachebench 1000000 2960 ns/op 27.70 MB/s 839 B/op 9 allocs/op + BenchmarkClientServerParallel64 50000 59192 ns/op 7028 B/op 60 allocs/op + ok net/http 95.783s + ` + + want := BenchSet{ + "BenchmarkReadRequestApachebench": []*Bench{ + { + Name: "BenchmarkReadRequestApachebench", + N: 1000000, NsOp: 2960, MbS: 27.70, BOp: 839, AllocsOp: 9, + Measured: NsOp | MbS | BOp | AllocsOp, + ord: 2, + }, + }, + "BenchmarkClientServerParallel64": []*Bench{ + { + Name: "BenchmarkClientServerParallel64", + N: 50000, NsOp: 59192, BOp: 7028, AllocsOp: 60, + Measured: NsOp | BOp | AllocsOp, + ord: 3, + }, + }, + "BenchmarkEncrypt": []*Bench{ + { + Name: "BenchmarkEncrypt", + N: 100000000, NsOp: 19.6, + Measured: NsOp, + ord: 0, + }, + { + Name: "BenchmarkEncrypt", + N: 5000000, NsOp: 517, + Measured: NsOp, + ord: 1, + }, + }, + } + + have, err := ParseBenchSet(strings.NewReader(in)) + if err != nil { + t.Fatalf("unexpected err during ParseBenchSet: %v", err) + } + if !reflect.DeepEqual(want, have) { + t.Errorf("parsed bench set incorrectly, want %v have %v", want, have) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/cover.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/cover.go new file mode 100644 index 00000000..9c15f41b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/cover.go @@ -0,0 +1,645 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "flag" + "fmt" + "go/ast" + "go/parser" + "go/printer" + "go/token" + "io" + "io/ioutil" + "log" + "os" + "path/filepath" + "sort" + "strconv" +) + +const usageMessage = "" + + `Usage of 'go tool cover': +Given a coverage profile produced by 'go test': + go test -coverprofile=c.out + +Open a web browser displaying annotated source code: + go tool cover -html=c.out + +Write out an HTML file instead of launching a web browser: + go tool cover -html=c.out -o coverage.html + +Display coverage percentages to stdout for each function: + go tool cover -func=c.out + +Finally, to generate modified source code with coverage annotations +(what go test -cover does): + go tool cover -mode=set -var=CoverageVariableName program.go +` + +func usage() { + fmt.Fprintln(os.Stderr, usageMessage) + fmt.Fprintln(os.Stderr, "Flags:") + flag.PrintDefaults() + fmt.Fprintln(os.Stderr, "\n Only one of -html, -func, or -mode may be set.") + os.Exit(2) +} + +var ( + mode = flag.String("mode", "", "coverage mode: set, count, atomic") + varVar = flag.String("var", "GoCover", "name of coverage variable to generate") + output = flag.String("o", "", "file for output; default: stdout") + htmlOut = flag.String("html", "", "generate HTML representation of coverage profile") + funcOut = flag.String("func", "", "output coverage profile information for each function") +) + +var profile string // The profile to read; the value of -html or -func + +var counterStmt func(*File, ast.Expr) ast.Stmt + +const ( + atomicPackagePath = "sync/atomic" + atomicPackageName = "_cover_atomic_" +) + +func main() { + flag.Usage = usage + flag.Parse() + + // Usage information when no arguments. + if flag.NFlag() == 0 && flag.NArg() == 0 { + flag.Usage() + } + + err := parseFlags() + if err != nil { + fmt.Fprintln(os.Stderr, err) + fmt.Fprintln(os.Stderr, `For usage information, run "go tool cover -help"`) + os.Exit(2) + } + + // Generate coverage-annotated source. + if *mode != "" { + annotate(flag.Arg(0)) + return + } + + // Output HTML or function coverage information. + if *htmlOut != "" { + err = htmlOutput(profile, *output) + } else { + err = funcOutput(profile, *output) + } + + if err != nil { + fmt.Fprintf(os.Stderr, "cover: %v\n", err) + os.Exit(2) + } +} + +// parseFlags sets the profile and counterStmt globals and performs validations. +func parseFlags() error { + profile = *htmlOut + if *funcOut != "" { + if profile != "" { + return fmt.Errorf("too many options") + } + profile = *funcOut + } + + // Must either display a profile or rewrite Go source. + if (profile == "") == (*mode == "") { + return fmt.Errorf("too many options") + } + + if *mode != "" { + switch *mode { + case "set": + counterStmt = setCounterStmt + case "count": + counterStmt = incCounterStmt + case "atomic": + counterStmt = atomicCounterStmt + default: + return fmt.Errorf("unknown -mode %v", *mode) + } + + if flag.NArg() == 0 { + return fmt.Errorf("missing source file") + } else if flag.NArg() == 1 { + return nil + } + } else if flag.NArg() == 0 { + return nil + } + return fmt.Errorf("too many arguments") +} + +// Block represents the information about a basic block to be recorded in the analysis. +// Note: Our definition of basic block is based on control structures; we don't break +// apart && and ||. We could but it doesn't seem important enough to bother. +type Block struct { + startByte token.Pos + endByte token.Pos + numStmt int +} + +// File is a wrapper for the state of a file used in the parser. +// The basic parse tree walker is a method of this type. +type File struct { + fset *token.FileSet + name string // Name of file. + astFile *ast.File + blocks []Block + atomicPkg string // Package name for "sync/atomic" in this file. +} + +// Visit implements the ast.Visitor interface. +func (f *File) Visit(node ast.Node) ast.Visitor { + switch n := node.(type) { + case *ast.BlockStmt: + // If it's a switch or select, the body is a list of case clauses; don't tag the block itself. + if len(n.List) > 0 { + switch n.List[0].(type) { + case *ast.CaseClause: // switch + for _, n := range n.List { + clause := n.(*ast.CaseClause) + clause.Body = f.addCounters(clause.Pos(), clause.End(), clause.Body, false) + } + return f + case *ast.CommClause: // select + for _, n := range n.List { + clause := n.(*ast.CommClause) + clause.Body = f.addCounters(clause.Pos(), clause.End(), clause.Body, false) + } + return f + } + } + n.List = f.addCounters(n.Lbrace, n.Rbrace+1, n.List, true) // +1 to step past closing brace. + case *ast.IfStmt: + ast.Walk(f, n.Body) + if n.Else == nil { + return nil + } + // The elses are special, because if we have + // if x { + // } else if y { + // } + // we want to cover the "if y". To do this, we need a place to drop the counter, + // so we add a hidden block: + // if x { + // } else { + // if y { + // } + // } + const backupToElse = token.Pos(len("else ")) // The AST doesn't remember the else location. We can make an accurate guess. + switch stmt := n.Else.(type) { + case *ast.IfStmt: + block := &ast.BlockStmt{ + Lbrace: stmt.If - backupToElse, // So the covered part looks like it starts at the "else". + List: []ast.Stmt{stmt}, + Rbrace: stmt.End(), + } + n.Else = block + case *ast.BlockStmt: + stmt.Lbrace -= backupToElse // So the block looks like it starts at the "else". + default: + panic("unexpected node type in if") + } + ast.Walk(f, n.Else) + return nil + case *ast.SelectStmt: + // Don't annotate an empty select - creates a syntax error. + if n.Body == nil || len(n.Body.List) == 0 { + return nil + } + case *ast.SwitchStmt: + // Don't annotate an empty switch - creates a syntax error. + if n.Body == nil || len(n.Body.List) == 0 { + return nil + } + } + return f +} + +// unquote returns the unquoted string. +func unquote(s string) string { + t, err := strconv.Unquote(s) + if err != nil { + log.Fatalf("cover: improperly quoted string %q\n", s) + } + return t +} + +// addImport adds an import for the specified path, if one does not already exist, and returns +// the local package name. +func (f *File) addImport(path string) string { + // Does the package already import it? + for _, s := range f.astFile.Imports { + if unquote(s.Path.Value) == path { + if s.Name != nil { + return s.Name.Name + } + return filepath.Base(path) + } + } + newImport := &ast.ImportSpec{ + Name: ast.NewIdent(atomicPackageName), + Path: &ast.BasicLit{ + Kind: token.STRING, + Value: fmt.Sprintf("%q", path), + }, + } + impDecl := &ast.GenDecl{ + Tok: token.IMPORT, + Specs: []ast.Spec{ + newImport, + }, + } + // Make the new import the first Decl in the file. + astFile := f.astFile + astFile.Decls = append(astFile.Decls, nil) + copy(astFile.Decls[1:], astFile.Decls[0:]) + astFile.Decls[0] = impDecl + astFile.Imports = append(astFile.Imports, newImport) + + // Now refer to the package, just in case it ends up unused. + // That is, append to the end of the file the declaration + // var _ = _cover_atomic_.AddUint32 + reference := &ast.GenDecl{ + Tok: token.VAR, + Specs: []ast.Spec{ + &ast.ValueSpec{ + Names: []*ast.Ident{ + ast.NewIdent("_"), + }, + Values: []ast.Expr{ + &ast.SelectorExpr{ + X: ast.NewIdent(atomicPackageName), + Sel: ast.NewIdent("AddUint32"), + }, + }, + }, + }, + } + astFile.Decls = append(astFile.Decls, reference) + return atomicPackageName +} + +var slashslash = []byte("//") + +// initialComments returns the prefix of content containing only +// whitepace and line comments. Any +build directives must appear +// within this region. This approach is more reliable than using +// go/printer to print a modified AST containing comments. +// +func initialComments(content []byte) []byte { + // Derived from go/build.Context.shouldBuild. + end := 0 + p := content + for len(p) > 0 { + line := p + if i := bytes.IndexByte(line, '\n'); i >= 0 { + line, p = line[:i], p[i+1:] + } else { + p = p[len(p):] + } + line = bytes.TrimSpace(line) + if len(line) == 0 { // Blank line. + end = len(content) - len(p) + continue + } + if !bytes.HasPrefix(line, slashslash) { // Not comment line. + break + } + } + return content[:end] +} + +func annotate(name string) { + fset := token.NewFileSet() + content, err := ioutil.ReadFile(name) + if err != nil { + log.Fatalf("cover: %s: %s", name, err) + } + parsedFile, err := parser.ParseFile(fset, name, content, 0) + if err != nil { + log.Fatalf("cover: %s: %s", name, err) + } + + file := &File{ + fset: fset, + name: name, + astFile: parsedFile, + } + if *mode == "atomic" { + file.atomicPkg = file.addImport(atomicPackagePath) + } + ast.Walk(file, file.astFile) + fd := os.Stdout + if *output != "" { + var err error + fd, err = os.Create(*output) + if err != nil { + log.Fatalf("cover: %s", err) + } + } + fd.Write(initialComments(content)) // Retain '// +build' directives. + file.print(fd) + // After printing the source tree, add some declarations for the counters etc. + // We could do this by adding to the tree, but it's easier just to print the text. + file.addVariables(fd) +} + +func (f *File) print(w io.Writer) { + printer.Fprint(w, f.fset, f.astFile) +} + +// intLiteral returns an ast.BasicLit representing the integer value. +func (f *File) intLiteral(i int) *ast.BasicLit { + node := &ast.BasicLit{ + Kind: token.INT, + Value: fmt.Sprint(i), + } + return node +} + +// index returns an ast.BasicLit representing the number of counters present. +func (f *File) index() *ast.BasicLit { + return f.intLiteral(len(f.blocks)) +} + +// setCounterStmt returns the expression: __count[23] = 1. +func setCounterStmt(f *File, counter ast.Expr) ast.Stmt { + return &ast.AssignStmt{ + Lhs: []ast.Expr{counter}, + Tok: token.ASSIGN, + Rhs: []ast.Expr{f.intLiteral(1)}, + } +} + +// incCounterStmt returns the expression: __count[23]++. +func incCounterStmt(f *File, counter ast.Expr) ast.Stmt { + return &ast.IncDecStmt{ + X: counter, + Tok: token.INC, + } +} + +// atomicCounterStmt returns the expression: atomic.AddUint32(&__count[23], 1) +func atomicCounterStmt(f *File, counter ast.Expr) ast.Stmt { + return &ast.ExprStmt{ + X: &ast.CallExpr{ + Fun: &ast.SelectorExpr{ + X: ast.NewIdent(f.atomicPkg), + Sel: ast.NewIdent("AddUint32"), + }, + Args: []ast.Expr{&ast.UnaryExpr{ + Op: token.AND, + X: counter, + }, + f.intLiteral(1), + }, + }, + } +} + +// newCounter creates a new counter expression of the appropriate form. +func (f *File) newCounter(start, end token.Pos, numStmt int) ast.Stmt { + counter := &ast.IndexExpr{ + X: &ast.SelectorExpr{ + X: ast.NewIdent(*varVar), + Sel: ast.NewIdent("Count"), + }, + Index: f.index(), + } + stmt := counterStmt(f, counter) + f.blocks = append(f.blocks, Block{start, end, numStmt}) + return stmt +} + +// addCounters takes a list of statements and adds counters to the beginning of +// each basic block at the top level of that list. For instance, given +// +// S1 +// if cond { +// S2 +// } +// S3 +// +// counters will be added before S1 and before S3. The block containing S2 +// will be visited in a separate call. +// TODO: Nested simple blocks get unecessary (but correct) counters +func (f *File) addCounters(pos, blockEnd token.Pos, list []ast.Stmt, extendToClosingBrace bool) []ast.Stmt { + // Special case: make sure we add a counter to an empty block. Can't do this below + // or we will add a counter to an empty statement list after, say, a return statement. + if len(list) == 0 { + return []ast.Stmt{f.newCounter(pos, blockEnd, 0)} + } + // We have a block (statement list), but it may have several basic blocks due to the + // appearance of statements that affect the flow of control. + var newList []ast.Stmt + for { + // Find first statement that affects flow of control (break, continue, if, etc.). + // It will be the last statement of this basic block. + var last int + end := blockEnd + for last = 0; last < len(list); last++ { + end = f.statementBoundary(list[last]) + if f.endsBasicSourceBlock(list[last]) { + extendToClosingBrace = false // Block is broken up now. + last++ + break + } + } + if extendToClosingBrace { + end = blockEnd + } + if pos != end { // Can have no source to cover if e.g. blocks abut. + newList = append(newList, f.newCounter(pos, end, last)) + } + newList = append(newList, list[0:last]...) + list = list[last:] + if len(list) == 0 { + break + } + pos = list[0].Pos() + } + return newList +} + +// hasFuncLiteral reports the existence and position of the first func literal +// in the node, if any. If a func literal appears, it usually marks the termination +// of a basic block because the function body is itself a block. +// Therefore we draw a line at the start of the body of the first function literal we find. +// TODO: what if there's more than one? Probably doesn't matter much. +func hasFuncLiteral(n ast.Node) (bool, token.Pos) { + var literal funcLitFinder + ast.Walk(&literal, n) + return literal.found(), token.Pos(literal) +} + +// statementBoundary finds the location in s that terminates the current basic +// block in the source. +func (f *File) statementBoundary(s ast.Stmt) token.Pos { + // Control flow statements are easy. + switch s := s.(type) { + case *ast.BlockStmt: + // Treat blocks like basic blocks to avoid overlapping counters. + return s.Lbrace + case *ast.IfStmt: + return s.Body.Lbrace + case *ast.ForStmt: + return s.Body.Lbrace + case *ast.LabeledStmt: + return f.statementBoundary(s.Stmt) + case *ast.RangeStmt: + // Ranges might loop over things with function literals.: for _ = range []func(){ ... } {. + // TODO: There are a few other such possibilities, but they're extremely unlikely. + found, pos := hasFuncLiteral(s.X) + if found { + return pos + } + return s.Body.Lbrace + case *ast.SwitchStmt: + return s.Body.Lbrace + case *ast.SelectStmt: + return s.Body.Lbrace + case *ast.TypeSwitchStmt: + return s.Body.Lbrace + } + // If not a control flow statement, it is a declaration, expression, call, etc. and it may have a function literal. + // If it does, that's tricky because we want to exclude the body of the function from this block. + // Draw a line at the start of the body of the first function literal we find. + // TODO: what if there's more than one? Probably doesn't matter much. + found, pos := hasFuncLiteral(s) + if found { + return pos + } + return s.End() +} + +// endsBasicSourceBlock reports whether s changes the flow of control: break, if, etc., +// or if it's just problematic, for instance contains a function literal, which will complicate +// accounting due to the block-within-an expression. +func (f *File) endsBasicSourceBlock(s ast.Stmt) bool { + switch s := s.(type) { + case *ast.BlockStmt: + // Treat blocks like basic blocks to avoid overlapping counters. + return true + case *ast.BranchStmt: + return true + case *ast.ForStmt: + return true + case *ast.IfStmt: + return true + case *ast.LabeledStmt: + return f.endsBasicSourceBlock(s.Stmt) + case *ast.RangeStmt: + return true + case *ast.SwitchStmt: + return true + case *ast.SelectStmt: + return true + case *ast.TypeSwitchStmt: + return true + } + found, _ := hasFuncLiteral(s) + return found +} + +// funcLitFinder implements the ast.Visitor pattern to find the location of any +// function literal in a subtree. +type funcLitFinder token.Pos + +func (f *funcLitFinder) Visit(node ast.Node) (w ast.Visitor) { + if f.found() { + return nil // Prune search. + } + switch n := node.(type) { + case *ast.FuncLit: + *f = funcLitFinder(n.Body.Lbrace) + return nil // Prune search. + } + return f +} + +func (f *funcLitFinder) found() bool { + return token.Pos(*f) != token.NoPos +} + +// Sort interface for []block1; used for self-check in addVariables. + +type block1 struct { + Block + index int +} + +type blockSlice []block1 + +func (b blockSlice) Len() int { return len(b) } +func (b blockSlice) Less(i, j int) bool { return b[i].startByte < b[j].startByte } +func (b blockSlice) Swap(i, j int) { b[i], b[j] = b[j], b[i] } + +// addVariables adds to the end of the file the declarations to set up the counter and position variables. +func (f *File) addVariables(w io.Writer) { + // Self-check: Verify that the instrumented basic blocks are disjoint. + t := make([]block1, len(f.blocks)) + for i := range f.blocks { + t[i].Block = f.blocks[i] + t[i].index = i + } + sort.Sort(blockSlice(t)) + for i := 1; i < len(t); i++ { + if t[i-1].endByte > t[i].startByte { + fmt.Fprintf(os.Stderr, "cover: internal error: block %d overlaps block %d\n", t[i-1].index, t[i].index) + fmt.Fprintf(os.Stderr, "\t%s:#%d,#%d %s:#%d,#%d\n", f.name, t[i-1].startByte, t[i-1].endByte, f.name, t[i].startByte, t[i].endByte) + } + } + + // Declare the coverage struct as a package-level variable. + fmt.Fprintf(w, "\nvar %s = struct {\n", *varVar) + fmt.Fprintf(w, "\tCount [%d]uint32\n", len(f.blocks)) + fmt.Fprintf(w, "\tPos [3 * %d]uint32\n", len(f.blocks)) + fmt.Fprintf(w, "\tNumStmt [%d]uint16\n", len(f.blocks)) + fmt.Fprintf(w, "} {\n") + + // Initialize the position array field. + fmt.Fprintf(w, "\tPos: [3 * %d]uint32{\n", len(f.blocks)) + + // A nice long list of positions. Each position is encoded as follows to reduce size: + // - 32-bit starting line number + // - 32-bit ending line number + // - (16 bit ending column number << 16) | (16-bit starting column number). + for i, block := range f.blocks { + start := f.fset.Position(block.startByte) + end := f.fset.Position(block.endByte) + fmt.Fprintf(w, "\t\t%d, %d, %#x, // [%d]\n", start.Line, end.Line, (end.Column&0xFFFF)<<16|(start.Column&0xFFFF), i) + } + + // Close the position array. + fmt.Fprintf(w, "\t},\n") + + // Initialize the position array field. + fmt.Fprintf(w, "\tNumStmt: [%d]uint16{\n", len(f.blocks)) + + // A nice long list of statements-per-block, so we can give a conventional + // valuation of "percent covered". To save space, it's a 16-bit number, so we + // clamp it if it overflows - won't matter in practice. + for i, block := range f.blocks { + n := block.numStmt + if n > 1<<16-1 { + n = 1<<16 - 1 + } + fmt.Fprintf(w, "\t\t%d, // %d\n", n, i) + } + + // Close the statements-per-block array. + fmt.Fprintf(w, "\t},\n") + + // Close the struct initialization. + fmt.Fprintf(w, "}\n") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/cover_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/cover_test.go new file mode 100644 index 00000000..82c1ce5c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/cover_test.go @@ -0,0 +1,87 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main_test + +import ( + "bytes" + "fmt" + "io/ioutil" + "os" + "os/exec" + "path/filepath" + "testing" +) + +const ( + // Data directory, also the package directory for the test. + testdata = "testdata" + + // Binaries we compile. + testcover = "./testcover.exe" +) + +var ( + // Files we use. + testMain = filepath.Join(testdata, "main.go") + testTest = filepath.Join(testdata, "test.go") + coverInput = filepath.Join(testdata, "test_line.go") + coverOutput = filepath.Join(testdata, "test_cover.go") +) + +var debug = false // Keeps the rewritten files around if set. + +// Run this shell script, but do it in Go so it can be run by "go test". +// +// replace the word LINE with the line number < testdata/test.go > testdata/test_line.go +// go build -o ./testcover +// ./testcover -mode=count -var=CoverTest -o ./testdata/test_cover.go testdata/test_line.go +// go run ./testdata/main.go ./testdata/test.go +// +func TestCover(t *testing.T) { + // Read in the test file (testTest) and write it, with LINEs specified, to coverInput. + file, err := ioutil.ReadFile(testTest) + if err != nil { + t.Fatal(err) + } + lines := bytes.Split(file, []byte("\n")) + for i, line := range lines { + lines[i] = bytes.Replace(line, []byte("LINE"), []byte(fmt.Sprint(i+1)), -1) + } + err = ioutil.WriteFile(coverInput, bytes.Join(lines, []byte("\n")), 0666) + + // defer removal of test_line.go + if !debug { + defer os.Remove(coverInput) + } + + // go build -o testcover + cmd := exec.Command("go", "build", "-o", testcover) + run(cmd, t) + + // defer removal of testcover + defer os.Remove(testcover) + + // ./testcover -mode=count -var=coverTest -o ./testdata/test_cover.go testdata/test_line.go + cmd = exec.Command(testcover, "-mode=count", "-var=coverTest", "-o", coverOutput, coverInput) + run(cmd, t) + + // defer removal of ./testdata/test_cover.go + if !debug { + defer os.Remove(coverOutput) + } + + // go run ./testdata/main.go ./testdata/test.go + cmd = exec.Command("go", "run", testMain, coverOutput) + run(cmd, t) +} + +func run(c *exec.Cmd, t *testing.T) { + c.Stdout = os.Stdout + c.Stderr = os.Stderr + err := c.Run() + if err != nil { + t.Fatal(err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/doc.go new file mode 100644 index 00000000..636d7e08 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/doc.go @@ -0,0 +1,21 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Cover is a program for analyzing the coverage profiles generated by +'go test -coverprofile=cover.out'. + +Cover is also used by 'go test -cover' to rewrite the source code with +annotations to track which parts of each function are executed. +It operates on one Go source file at a time, computing approximate +basic block information by studying the source. It is thus more portable +than binary-rewriting coverage tools, but also a little less capable. +For instance, it does not probe inside && and || expressions, and can +be mildly confused by single statements with multiple function literals. + +For usage information, please see: + go help testflag + go tool cover -help +*/ +package main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/func.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/func.go new file mode 100644 index 00000000..649fc9e7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/func.go @@ -0,0 +1,166 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements the visitor that computes the (line, column)-(line-column) range for each function. + +package main + +import ( + "bufio" + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/token" + "os" + "path/filepath" + "text/tabwriter" + + "code.google.com/p/go.tools/cover" +) + +// funcOutput takes two file names as arguments, a coverage profile to read as input and an output +// file to write ("" means to write to standard output). The function reads the profile and produces +// as output the coverage data broken down by function, like this: +// +// fmt/format.go: init 100.0% +// fmt/format.go: computePadding 84.6% +// ... +// fmt/scan.go: doScan 100.0% +// fmt/scan.go: advance 96.2% +// fmt/scan.go: doScanf 96.8% +// total: (statements) 91.4% + +func funcOutput(profile, outputFile string) error { + profiles, err := cover.ParseProfiles(profile) + if err != nil { + return err + } + + var out *bufio.Writer + if outputFile == "" { + out = bufio.NewWriter(os.Stdout) + } else { + fd, err := os.Create(outputFile) + if err != nil { + return err + } + defer fd.Close() + out = bufio.NewWriter(fd) + } + defer out.Flush() + + tabber := tabwriter.NewWriter(out, 1, 8, 1, '\t', 0) + defer tabber.Flush() + + var total, covered int64 + for _, profile := range profiles { + fn := profile.FileName + file, err := findFile(fn) + if err != nil { + return err + } + funcs, err := findFuncs(file) + if err != nil { + return err + } + // Now match up functions and profile blocks. + for _, f := range funcs { + c, t := f.coverage(profile) + fmt.Fprintf(tabber, "%s:\t%s\t%.1f%%\n", fn, f.name, 100.0*float64(c)/float64(t)) + total += t + covered += c + } + } + fmt.Fprintf(tabber, "total:\t(statements)\t%.1f%%\n", 100.0*float64(covered)/float64(total)) + + return nil +} + +// findFuncs parses the file and returns a slice of FuncExtent descriptors. +func findFuncs(name string) ([]*FuncExtent, error) { + fset := token.NewFileSet() + parsedFile, err := parser.ParseFile(fset, name, nil, 0) + if err != nil { + return nil, err + } + visitor := &FuncVisitor{ + fset: fset, + name: name, + astFile: parsedFile, + } + ast.Walk(visitor, visitor.astFile) + return visitor.funcs, nil +} + +// FuncExtent describes a function's extent in the source by file and position. +type FuncExtent struct { + name string + startLine int + startCol int + endLine int + endCol int +} + +// FuncVisitor implements the visitor that builds the function position list for a file. +type FuncVisitor struct { + fset *token.FileSet + name string // Name of file. + astFile *ast.File + funcs []*FuncExtent +} + +// Visit implements the ast.Visitor interface. +func (v *FuncVisitor) Visit(node ast.Node) ast.Visitor { + switch n := node.(type) { + case *ast.FuncDecl: + start := v.fset.Position(n.Pos()) + end := v.fset.Position(n.End()) + fe := &FuncExtent{ + name: n.Name.Name, + startLine: start.Line, + startCol: start.Column, + endLine: end.Line, + endCol: end.Column, + } + v.funcs = append(v.funcs, fe) + } + return v +} + +// coverage returns the fraction of the statements in the function that were covered, as a numerator and denominator. +func (f *FuncExtent) coverage(profile *cover.Profile) (num, den int64) { + // We could avoid making this n^2 overall by doing a single scan and annotating the functions, + // but the sizes of the data structures is never very large and the scan is almost instantaneous. + var covered, total int64 + // The blocks are sorted, so we can stop counting as soon as we reach the end of the relevant block. + for _, b := range profile.Blocks { + if b.StartLine > f.endLine || (b.StartLine == f.endLine && b.StartCol >= f.endCol) { + // Past the end of the function. + break + } + if b.EndLine < f.startLine || (b.EndLine == f.startLine && b.EndCol <= f.startCol) { + // Before the beginning of the function + continue + } + total += int64(b.NumStmt) + if b.Count > 0 { + covered += int64(b.NumStmt) + } + } + if total == 0 { + total = 1 // Avoid zero denominator. + } + return covered, total +} + +// findFile finds the location of the named file in GOROOT, GOPATH etc. +func findFile(file string) (string, error) { + dir, file := filepath.Split(file) + pkg, err := build.Import(dir, ".", build.FindOnly) + if err != nil { + return "", fmt.Errorf("can't find %q: %v", file, err) + } + return filepath.Join(pkg.Dir, file), nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/html.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/html.go new file mode 100644 index 00000000..c54ef4d3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/html.go @@ -0,0 +1,262 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bufio" + "bytes" + "fmt" + "html/template" + "io" + "io/ioutil" + "math" + "os" + "os/exec" + "path/filepath" + "runtime" + + "code.google.com/p/go.tools/cover" +) + +// htmlOutput reads the profile data from profile and generates an HTML +// coverage report, writing it to outfile. If outfile is empty, +// it writes the report to a temporary file and opens it in a web browser. +func htmlOutput(profile, outfile string) error { + profiles, err := cover.ParseProfiles(profile) + if err != nil { + return err + } + + var d templateData + + for _, profile := range profiles { + fn := profile.FileName + if profile.Mode == "set" { + d.Set = true + } + file, err := findFile(fn) + if err != nil { + return err + } + src, err := ioutil.ReadFile(file) + if err != nil { + return fmt.Errorf("can't read %q: %v", fn, err) + } + var buf bytes.Buffer + err = htmlGen(&buf, src, profile.Boundaries(src)) + if err != nil { + return err + } + d.Files = append(d.Files, &templateFile{ + Name: fn, + Body: template.HTML(buf.String()), + }) + } + + var out *os.File + if outfile == "" { + var dir string + dir, err = ioutil.TempDir("", "cover") + if err != nil { + return err + } + out, err = os.Create(filepath.Join(dir, "coverage.html")) + } else { + out, err = os.Create(outfile) + } + err = htmlTemplate.Execute(out, d) + if err == nil { + err = out.Close() + } + if err != nil { + return err + } + + if outfile == "" { + if !startBrowser("file://" + out.Name()) { + fmt.Fprintf(os.Stderr, "HTML output written to %s\n", out.Name()) + } + } + + return nil +} + +// htmlGen generates an HTML coverage report with the provided filename, +// source code, and tokens, and writes it to the given Writer. +func htmlGen(w io.Writer, src []byte, boundaries []cover.Boundary) error { + dst := bufio.NewWriter(w) + for i := range src { + for len(boundaries) > 0 && boundaries[0].Offset == i { + b := boundaries[0] + if b.Start { + n := 0 + if b.Count > 0 { + n = int(math.Floor(b.Norm*9)) + 1 + } + fmt.Fprintf(dst, ``, n, b.Count) + } else { + dst.WriteString("") + } + boundaries = boundaries[1:] + } + switch b := src[i]; b { + case '>': + dst.WriteString(">") + case '<': + dst.WriteString("<") + case '&': + dst.WriteString("&") + case '\t': + dst.WriteString(" ") + default: + dst.WriteByte(b) + } + } + return dst.Flush() +} + +// startBrowser tries to open the URL in a browser +// and reports whether it succeeds. +func startBrowser(url string) bool { + // try to start the browser + var args []string + switch runtime.GOOS { + case "darwin": + args = []string{"open"} + case "windows": + args = []string{"cmd", "/c", "start"} + default: + args = []string{"xdg-open"} + } + cmd := exec.Command(args[0], append(args[1:], url)...) + return cmd.Start() == nil +} + +// rgb returns an rgb value for the specified coverage value +// between 0 (no coverage) and 10 (max coverage). +func rgb(n int) string { + if n == 0 { + return "rgb(192, 0, 0)" // Red + } + // Gradient from gray to green. + r := 128 - 12*(n-1) + g := 128 + 12*(n-1) + b := 128 + 3*(n-1) + return fmt.Sprintf("rgb(%v, %v, %v)", r, g, b) +} + +// colors generates the CSS rules for coverage colors. +func colors() template.CSS { + var buf bytes.Buffer + for i := 0; i < 11; i++ { + fmt.Fprintf(&buf, ".cov%v { color: %v }\n", i, rgb(i)) + } + return template.CSS(buf.String()) +} + +var htmlTemplate = template.Must(template.New("html").Funcs(template.FuncMap{ + "colors": colors, +}).Parse(tmplHTML)) + +type templateData struct { + Files []*templateFile + Set bool +} + +type templateFile struct { + Name string + Body template.HTML +} + +const tmplHTML = ` + + + + + + + +
+ +
+ not tracked + {{if .Set}} + not covered + covered + {{else}} + no coverage + low coverage + * + * + * + * + * + * + * + * + high coverage + {{end}} +
+
+
+ {{range $i, $f := .Files}} +
{{$f.Body}}
+ {{end}} +
+ + + +` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/testdata/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/testdata/main.go new file mode 100644 index 00000000..c704b157 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/testdata/main.go @@ -0,0 +1,93 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test runner for coverage test. This file is not coverage-annotated; test.go is. +// It knows the coverage counter is called "coverTest". + +package main + +import ( + "fmt" + "os" +) + +func main() { + testAll() + verify() +} + +type block struct { + count uint32 + line uint32 +} + +var counters = make(map[block]bool) + +// check records the location and expected value for a counter. +func check(line, count uint32) { + b := block{ + count, + line, + } + counters[b] = true +} + +// checkVal is a version of check that returns its extra argument, +// so it can be used in conditionals. +func checkVal(line, count uint32, val int) int { + b := block{ + count, + line, + } + counters[b] = true + return val +} + +var PASS = true + +// verify checks the expected counts against the actual. It runs after the test has completed. +func verify() { + for b := range counters { + got, index := count(b.line) + if b.count == anything && got != 0 { + got = anything + } + if got != b.count { + fmt.Fprintf(os.Stderr, "test_go:%d expected count %d got %d [counter %d]\n", b.line, b.count, got, index) + PASS = false + } + } + if !PASS { + fmt.Fprintf(os.Stderr, "FAIL\n") + os.Exit(2) + } +} + +// count returns the count and index for the counter at the specified line. +func count(line uint32) (uint32, int) { + // Linear search is fine. Choose perfect fit over approximate. + // We can have a closing brace for a range on the same line as a condition for an "else if" + // and we don't want that brace to steal the count for the condition on the "if". + // Therefore we test for a perfect (lo==line && hi==line) match, but if we can't + // find that we take the first imperfect match. + index := -1 + indexLo := uint32(1e9) + for i := range coverTest.Count { + lo, hi := coverTest.Pos[3*i], coverTest.Pos[3*i+1] + if lo == line && line == hi { + return coverTest.Count[i], i + } + // Choose the earliest match (the counters are in unpredictable order). + if lo <= line && line <= hi && indexLo > lo { + index = i + indexLo = lo + } + } + if index == -1 { + fmt.Fprintln(os.Stderr, "cover_test: no counter for line", line) + PASS = false + return 0, 0 + } + return coverTest.Count[index], index +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/testdata/test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/testdata/test.go new file mode 100644 index 00000000..80b1f6b1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/cover/testdata/test.go @@ -0,0 +1,177 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This program is processed by the cover command, and then testAll is called. +// The test driver in main.go can then compare the coverage statistics with expectation. + +// The word LINE is replaced by the line number in this file. When the file is executed, +// the coverage processing has changed the line numbers, so we can't use runtime.Caller. + +package main + +const anything = 1e9 // Just some unlikely value that means "we got here, don't care how often" + +func testAll() { + testSimple() + testBlockRun() + testIf() + testFor() + testRange() + testSwitch() + testTypeSwitch() + testSelect1() + testSelect2() +} + +func testSimple() { + check(LINE, 1) +} + +func testIf() { + if true { + check(LINE, 1) + } else { + check(LINE, 0) + } + if false { + check(LINE, 0) + } else { + check(LINE, 1) + } + for i := 0; i < 3; i++ { + if checkVal(LINE, 3, i) <= 2 { + check(LINE, 3) + } + if checkVal(LINE, 3, i) <= 1 { + check(LINE, 2) + } + if checkVal(LINE, 3, i) <= 0 { + check(LINE, 1) + } + } + for i := 0; i < 3; i++ { + if checkVal(LINE, 3, i) <= 1 { + check(LINE, 2) + } else { + check(LINE, 1) + } + } + for i := 0; i < 3; i++ { + if checkVal(LINE, 3, i) <= 0 { + check(LINE, 1) + } else if checkVal(LINE, 2, i) <= 1 { + check(LINE, 1) + } else if checkVal(LINE, 1, i) <= 2 { + check(LINE, 1) + } else if checkVal(LINE, 0, i) <= 3 { + check(LINE, 0) + } + } +} + +func testFor() { + for i := 0; i < 10; i++ { + check(LINE, 10) + } +} + +func testRange() { + for _, f := range []func(){ + func() { check(LINE, 1) }, + } { + f() + check(LINE, 1) + } +} + +func testBlockRun() { + check(LINE, 1) + { + check(LINE, 1) + } + { + check(LINE, 1) + } + check(LINE, 1) + { + check(LINE, 1) + } + { + check(LINE, 1) + } + check(LINE, 1) +} + +func testSwitch() { + for i := 0; i < 5; i++ { + switch i { + case 0: + check(LINE, 1) + case 1: + check(LINE, 1) + case 2: + check(LINE, 1) + default: + check(LINE, 2) + } + } +} + +func testTypeSwitch() { + var x = []interface{}{1, 2.0, "hi"} + for _, v := range x { + switch v.(type) { + case int: + check(LINE, 1) + case float64: + check(LINE, 1) + case string: + check(LINE, 1) + case complex128: + check(LINE, 0) + default: + check(LINE, 0) + } + } +} + +func testSelect1() { + c := make(chan int) + go func() { + for i := 0; i < 1000; i++ { + c <- i + } + }() + for { + select { + case <-c: + check(LINE, anything) + case <-c: + check(LINE, anything) + default: + check(LINE, 1) + return + } + } +} + +func testSelect2() { + c1 := make(chan int, 1000) + c2 := make(chan int, 1000) + for i := 0; i < 1000; i++ { + c1 <- i + c2 <- i + } + for { + select { + case <-c1: + check(LINE, 1000) + case <-c2: + check(LINE, 1000) + default: + check(LINE, 1) + return + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/eg/eg.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/eg/eg.go new file mode 100644 index 00000000..6241a022 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/eg/eg.go @@ -0,0 +1,121 @@ +// The eg command performs example-based refactoring. +package main + +import ( + "flag" + "fmt" + "go/parser" + "go/printer" + "go/token" + "os" + "path/filepath" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/refactor/eg" +) + +var ( + helpFlag = flag.Bool("help", false, "show detailed help message") + templateFlag = flag.String("t", "", "template.go file specifying the refactoring") + transitiveFlag = flag.Bool("transitive", false, "apply refactoring to all dependencies too") + writeFlag = flag.Bool("w", false, "rewrite input files in place (by default, the results are printed to standard output)") + verboseFlag = flag.Bool("v", false, "show verbose matcher diagnostics") +) + +const usage = `eg: an example-based refactoring tool. + +Usage: eg -t template.go [-w] [-transitive] ... +-t template.go specifies the template file (use -help to see explanation) +-w causes files to be re-written in place. +-transitive causes all dependencies to be refactored too. +` + loader.FromArgsUsage + +func main() { + if err := doMain(); err != nil { + fmt.Fprintf(os.Stderr, "%s: %s.\n", filepath.Base(os.Args[0]), err) + os.Exit(1) + } +} + +func doMain() error { + flag.Parse() + args := flag.Args() + + if *helpFlag { + fmt.Fprint(os.Stderr, eg.Help) + os.Exit(2) + } + + if *templateFlag == "" { + return fmt.Errorf("no -t template.go file specified") + } + + conf := loader.Config{ + Fset: token.NewFileSet(), + ParserMode: parser.ParseComments, + SourceImports: true, + } + + // The first Created package is the template. + if err := conf.CreateFromFilenames("template", *templateFlag); err != nil { + return err // e.g. "foo.go:1: syntax error" + } + + if len(args) == 0 { + fmt.Fprint(os.Stderr, usage) + os.Exit(1) + } + + if _, err := conf.FromArgs(args, true); err != nil { + return err + } + + // Load, parse and type-check the whole program. + iprog, err := conf.Load() + if err != nil { + return err + } + + // Analyze the template. + template := iprog.Created[0] + xform, err := eg.NewTransformer(iprog.Fset, template, *verboseFlag) + if err != nil { + return err + } + + // Apply it to the input packages. + var pkgs []*loader.PackageInfo + if *transitiveFlag { + for _, info := range iprog.AllPackages { + pkgs = append(pkgs, info) + } + } else { + pkgs = iprog.InitialPackages() + } + var hadErrors bool + for _, pkg := range pkgs { + if pkg == template { + continue + } + for _, file := range pkg.Files { + n := xform.Transform(&pkg.Info, pkg.Pkg, file) + if n == 0 { + continue + } + filename := iprog.Fset.File(file.Pos()).Name() + fmt.Fprintf(os.Stderr, "=== %s (%d matches):\n", filename, n) + if *writeFlag { + if err := eg.WriteAST(iprog.Fset, filename, file); err != nil { + fmt.Fprintf(os.Stderr, "Error: %s\n", err) + hadErrors = true + } + } else { + printer.Fprint(os.Stdout, iprog.Fset, file) + } + } + } + if hadErrors { + os.Exit(1) + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/doc.go new file mode 100644 index 00000000..cf17c6ae --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/doc.go @@ -0,0 +1,69 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The godex command prints (dumps) exported information of packages +// or selected package objects. +// +// In contrast to godoc, godex extracts this information from compiled +// object files. Hence the exported data is truly what a compiler will +// see, at the cost of missing commentary. +// +// Usage: godex [flags] {path[.name]} +// +// Each argument must be a (possibly partial) package path, optionally +// followed by a dot and the name of a package object: +// +// godex math +// godex math.Sin +// godex math.Sin fmt.Printf +// godex go/types +// +// godex automatically tries all possible package path prefixes if only a +// partial package path is given. For instance, for the path "go/types", +// godex prepends "code.google.com/p/go.tools". +// +// The prefixes are computed by searching the directories specified by +// the GOROOT and GOPATH environment variables (and by excluding the +// build OS- and architecture-specific directory names from the path). +// The search order is depth-first and alphabetic; for a partial path +// "foo", a package "a/foo" is found before "b/foo". +// +// Absolute and relative paths may be provided, which disable automatic +// prefix generation: +// +// godex $GOROOT/pkg/darwin_amd64/sort +// godex ./sort +// +// All but the last path element may contain dots; a dot in the last path +// element separates the package path from the package object name. If the +// last path element contains a dot, terminate the argument with another +// dot (indicating an empty object name). For instance, the path for a +// package foo.bar would be specified as in: +// +// godex foo.bar. +// +// The flags are: +// +// -s="" +// only consider packages from src, where src is one of the supported compilers +// -v=false +// verbose mode +// +// The following sources (-s arguments) are supported: +// +// gc +// gc-generated object files +// gccgo +// gccgo-generated object files +// gccgo-new +// gccgo-generated object files using a condensed format (experimental) +// source +// (uncompiled) source code (not yet implemented) +// +// If no -s argument is provided, godex will try to find a matching source. +// +package main + +// BUG(gri): support for -s=source is not yet implemented +// BUG(gri): gccgo-importing appears to have occasional problems stalling godex; try -s=gc as work-around diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/gc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/gc.go new file mode 100644 index 00000000..aa4979fa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/gc.go @@ -0,0 +1,15 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements access to gc-generated export data. + +package main + +import ( + "code.google.com/p/go.tools/go/gcimporter" +) + +func init() { + register("gc", gcimporter.Import) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/gccgo.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/gccgo.go new file mode 100644 index 00000000..1f3916c9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/gccgo.go @@ -0,0 +1,125 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements access to gccgo-generated export data. + +package main + +import ( + "debug/elf" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "strings" + + "code.google.com/p/go.tools/go/gccgoimporter" + "code.google.com/p/go.tools/go/importer" + "code.google.com/p/go.tools/go/types" +) + +func init() { + incpaths := []string{"/"} + + // importer for default gccgo + var inst gccgoimporter.GccgoInstallation + inst.InitFromDriver("gccgo") + register("gccgo", inst.GetImporter(incpaths)) + + // importer for gccgo using condensed export format (experimental) + register("gccgo-new", getNewImporter(append(append(incpaths, inst.SearchPaths()...), "."))) +} + +// This function is an adjusted variant of gccgoimporter.GccgoInstallation.GetImporter. +func getNewImporter(searchpaths []string) types.Importer { + return func(imports map[string]*types.Package, pkgpath string) (pkg *types.Package, err error) { + if pkgpath == "unsafe" { + return types.Unsafe, nil + } + + fpath, err := findExportFile(searchpaths, pkgpath) + if err != nil { + return + } + + reader, closer, err := openExportFile(fpath) + if err != nil { + return nil, err + } + defer closer.Close() + + // TODO(gri) At the moment we just read the entire file. + // We should change importer.ImportData to take an io.Reader instead. + data, err := ioutil.ReadAll(reader) + if err != nil && err != io.EOF { + return nil, err + } + + return importer.ImportData(packages, data) + } +} + +// This function is an exact copy of gccgoimporter.findExportFile. +func findExportFile(searchpaths []string, pkgpath string) (string, error) { + for _, spath := range searchpaths { + pkgfullpath := filepath.Join(spath, pkgpath) + pkgdir, name := filepath.Split(pkgfullpath) + + for _, filepath := range [...]string{ + pkgfullpath, + pkgfullpath + ".gox", + pkgdir + "lib" + name + ".so", + pkgdir + "lib" + name + ".a", + pkgfullpath + ".o", + } { + fi, err := os.Stat(filepath) + if err == nil && !fi.IsDir() { + return filepath, nil + } + } + } + + return "", fmt.Errorf("%s: could not find export data (tried %s)", pkgpath, strings.Join(searchpaths, ":")) +} + +// This function is an exact copy of gccgoimporter.openExportFile. +func openExportFile(fpath string) (reader io.ReadSeeker, closer io.Closer, err error) { + f, err := os.Open(fpath) + if err != nil { + return + } + defer func() { + if err != nil { + f.Close() + } + }() + closer = f + + var magic [4]byte + _, err = f.ReadAt(magic[:], 0) + if err != nil { + return + } + + if string(magic[:]) == "v1;\n" { + // Raw export data. + reader = f + return + } + + ef, err := elf.NewFile(f) + if err != nil { + return + } + + sec := ef.Section(".go_export") + if sec == nil { + err = fmt.Errorf("%s: .go_export section not found", fpath) + return + } + + reader = sec.Open() + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/godex.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/godex.go new file mode 100644 index 00000000..bdfa236c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/godex.go @@ -0,0 +1,207 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "errors" + "flag" + "fmt" + "go/build" + "io/ioutil" + "os" + "path/filepath" + "strings" + + "code.google.com/p/go.tools/go/types" +) + +var ( + source = flag.String("s", "", "only consider packages from src, where src is one of the supported compilers") + verbose = flag.Bool("v", false, "verbose mode") +) + +// lists of registered sources and corresponding importers +var ( + sources []string + importers []types.Importer + importFailed = errors.New("import failed") +) + +// map of imported packages +var packages = make(map[string]*types.Package) + +func usage() { + fmt.Fprintln(os.Stderr, "usage: godex [flags] {path|qualifiedIdent}") + flag.PrintDefaults() + os.Exit(2) +} + +func report(msg string) { + fmt.Fprintln(os.Stderr, "error: "+msg) + os.Exit(2) +} + +func main() { + flag.Usage = usage + flag.Parse() + + if flag.NArg() == 0 { + report("no package name, path, or file provided") + } + + imp := tryImports + if *source != "" { + imp = lookup(*source) + if imp == nil { + report("source (-s argument) must be one of: " + strings.Join(sources, ", ")) + } + } + + for _, arg := range flag.Args() { + path, name := splitPathIdent(arg) + logf("\tprocessing %q: path = %q, name = %s\n", arg, path, name) + + // generate possible package path prefixes + // (at the moment we do this for each argument - should probably cache the generated prefixes) + prefixes := make(chan string) + go genPrefixes(prefixes, !filepath.IsAbs(path) && !build.IsLocalImport(path)) + + // import package + pkg, err := tryPrefixes(packages, prefixes, path, imp) + if err != nil { + logf("\t=> ignoring %q: %s\n", path, err) + continue + } + + // filter objects if needed + var filter func(types.Object) bool + if name != "" { + filter = func(obj types.Object) bool { + // TODO(gri) perhaps use regular expression matching here? + return obj.Name() == name + } + } + + // print contents + print(os.Stdout, pkg, filter) + } +} + +func logf(format string, args ...interface{}) { + if *verbose { + fmt.Fprintf(os.Stderr, format, args...) + } +} + +// splitPathIdent splits a path.name argument into its components. +// All but the last path element may contain dots. +func splitPathIdent(arg string) (path, name string) { + if i := strings.LastIndex(arg, "."); i >= 0 { + if j := strings.LastIndex(arg, "/"); j < i { + // '.' is not part of path + path = arg[:i] + name = arg[i+1:] + return + } + } + path = arg + return +} + +// tryPrefixes tries to import the package given by (the possibly partial) path using the given importer imp +// by prepending all possible prefixes to path. It returns with the first package that it could import, or +// with an error. +func tryPrefixes(packages map[string]*types.Package, prefixes chan string, path string, imp types.Importer) (pkg *types.Package, err error) { + for prefix := range prefixes { + actual := path + if prefix == "" { + // don't use filepath.Join as it will sanitize the path and remove + // a leading dot and then the path is not recognized as a relative + // package path by the importers anymore + logf("\ttrying no prefix\n") + } else { + actual = filepath.Join(prefix, path) + logf("\ttrying prefix %q\n", prefix) + } + pkg, err = imp(packages, actual) + if err == nil { + break + } + logf("\t=> importing %q failed: %s\n", actual, err) + } + return +} + +// tryImports is an importer that tries all registered importers +// successively until one of them succeeds or all of them failed. +func tryImports(packages map[string]*types.Package, path string) (pkg *types.Package, err error) { + for i, imp := range importers { + logf("\t\ttrying %s import\n", sources[i]) + pkg, err = imp(packages, path) + if err == nil { + break + } + logf("\t\t=> %s import failed: %s\n", sources[i], err) + } + return +} + +// protect protects an importer imp from panics and returns the protected importer. +func protect(imp types.Importer) types.Importer { + return func(packages map[string]*types.Package, path string) (pkg *types.Package, err error) { + defer func() { + if recover() != nil { + pkg = nil + err = importFailed + } + }() + return imp(packages, path) + } +} + +// register registers an importer imp for a given source src. +func register(src string, imp types.Importer) { + if lookup(src) != nil { + panic(src + " importer already registered") + } + sources = append(sources, src) + importers = append(importers, protect(imp)) +} + +// lookup returns the importer imp for a given source src. +func lookup(src string) types.Importer { + for i, s := range sources { + if s == src { + return importers[i] + } + } + return nil +} + +func genPrefixes(out chan string, all bool) { + out <- "" + if all { + platform := build.Default.GOOS + "_" + build.Default.GOARCH + dirnames := append([]string{build.Default.GOROOT}, filepath.SplitList(build.Default.GOPATH)...) + for _, dirname := range dirnames { + walkDir(filepath.Join(dirname, "pkg", platform), "", out) + } + } + close(out) +} + +func walkDir(dirname, prefix string, out chan string) { + fiList, err := ioutil.ReadDir(dirname) + if err != nil { + return + } + for _, fi := range fiList { + if fi.IsDir() && !strings.HasPrefix(fi.Name(), ".") { + prefix := filepath.Join(prefix, fi.Name()) + out <- prefix + walkDir(filepath.Join(dirname, fi.Name()), prefix, out) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/print.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/print.go new file mode 100644 index 00000000..e02f5e20 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/print.go @@ -0,0 +1,365 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "fmt" + "go/token" + "io" + "math/big" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// TODO(gri) use tabwriter for alignment? + +func print(w io.Writer, pkg *types.Package, filter func(types.Object) bool) { + var p printer + p.pkg = pkg + p.printPackage(pkg, filter) + io.Copy(w, &p.buf) +} + +type printer struct { + pkg *types.Package + buf bytes.Buffer + indent int // current indentation level + last byte // last byte written +} + +func (p *printer) print(s string) { + // Write the string one byte at a time. We care about the presence of + // newlines for indentation which we will see even in the presence of + // (non-corrupted) Unicode; no need to read one rune at a time. + for i := 0; i < len(s); i++ { + ch := s[i] + if ch != '\n' && p.last == '\n' { + // Note: This could lead to a range overflow for very large + // indentations, but it's extremely unlikely to happen for + // non-pathological code. + p.buf.WriteString("\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"[:p.indent]) + } + p.buf.WriteByte(ch) + p.last = ch + } +} + +func (p *printer) printf(format string, args ...interface{}) { + p.print(fmt.Sprintf(format, args...)) +} + +// methodsFor returns the named type and corresponding methods if the type +// denoted by obj is not an interface and has methods. Otherwise it returns +// the zero value. +func methodsFor(obj *types.TypeName) (*types.Named, []*types.Selection) { + named, _ := obj.Type().(*types.Named) + if named == nil { + // A type name's type can also be the + // exported basic type unsafe.Pointer. + return nil, nil + } + if _, ok := named.Underlying().(*types.Interface); ok { + // ignore interfaces + return nil, nil + } + methods := combinedMethodSet(named) + if len(methods) == 0 { + return nil, nil + } + return named, methods +} + +func (p *printer) printPackage(pkg *types.Package, filter func(types.Object) bool) { + // collect objects by kind + var ( + consts []*types.Const + typem []*types.Named // non-interface types with methods + typez []*types.TypeName // interfaces or types without methods + vars []*types.Var + funcs []*types.Func + builtins []*types.Builtin + methods = make(map[*types.Named][]*types.Selection) // method sets for named types + ) + scope := pkg.Scope() + for _, name := range scope.Names() { + obj := scope.Lookup(name) + if obj.Exported() { + // collect top-level exported and possibly filtered objects + if filter == nil || filter(obj) { + switch obj := obj.(type) { + case *types.Const: + consts = append(consts, obj) + case *types.TypeName: + // group into types with methods and types without + if named, m := methodsFor(obj); named != nil { + typem = append(typem, named) + methods[named] = m + } else { + typez = append(typez, obj) + } + case *types.Var: + vars = append(vars, obj) + case *types.Func: + funcs = append(funcs, obj) + case *types.Builtin: + // for unsafe.Sizeof, etc. + builtins = append(builtins, obj) + } + } + } else if filter == nil { + // no filtering: collect top-level unexported types with methods + if obj, _ := obj.(*types.TypeName); obj != nil { + // see case *types.TypeName above + if named, m := methodsFor(obj); named != nil { + typem = append(typem, named) + methods[named] = m + } + } + } + } + + p.printf("package %s // %q\n", pkg.Name(), pkg.Path()) + + p.printDecl("const", len(consts), func() { + for _, obj := range consts { + p.printObj(obj) + p.print("\n") + } + }) + + p.printDecl("var", len(vars), func() { + for _, obj := range vars { + p.printObj(obj) + p.print("\n") + } + }) + + p.printDecl("type", len(typez), func() { + for _, obj := range typez { + p.printf("%s ", obj.Name()) + p.writeType(p.pkg, obj.Type().Underlying()) + p.print("\n") + } + }) + + // non-interface types with methods + for _, named := range typem { + first := true + if obj := named.Obj(); obj.Exported() { + if first { + p.print("\n") + first = false + } + p.printf("type %s ", obj.Name()) + p.writeType(p.pkg, named.Underlying()) + p.print("\n") + } + for _, m := range methods[named] { + if obj := m.Obj(); obj.Exported() { + if first { + p.print("\n") + first = false + } + p.printFunc(m.Recv(), obj.(*types.Func)) + p.print("\n") + } + } + } + + if len(funcs) > 0 { + p.print("\n") + for _, obj := range funcs { + p.printFunc(nil, obj) + p.print("\n") + } + } + + // TODO(gri) better handling of builtins (package unsafe only) + if len(builtins) > 0 { + p.print("\n") + for _, obj := range builtins { + p.printf("func %s() // builtin\n", obj.Name()) + } + } + + p.print("\n") +} + +func (p *printer) printDecl(keyword string, n int, printGroup func()) { + switch n { + case 0: + // nothing to do + case 1: + p.printf("\n%s ", keyword) + printGroup() + default: + p.printf("\n%s (\n", keyword) + p.indent++ + printGroup() + p.indent-- + p.print(")\n") + } +} + +// absInt returns the absolute value of v as a *big.Int. +// v must be a numeric value. +func absInt(v exact.Value) *big.Int { + // compute big-endian representation of v + b := exact.Bytes(v) // little-endian + for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { + b[i], b[j] = b[j], b[i] + } + return new(big.Int).SetBytes(b) +} + +var ( + one = big.NewRat(1, 1) + ten = big.NewRat(10, 1) +) + +// floatString returns the string representation for a +// numeric value v in normalized floating-point format. +func floatString(v exact.Value) string { + if exact.Sign(v) == 0 { + return "0.0" + } + // x != 0 + + // convert |v| into a big.Rat x + x := new(big.Rat).SetFrac(absInt(exact.Num(v)), absInt(exact.Denom(v))) + + // normalize x and determine exponent e + // (This is not very efficient, but also not speed-critical.) + var e int + for x.Cmp(ten) >= 0 { + x.Quo(x, ten) + e++ + } + for x.Cmp(one) < 0 { + x.Mul(x, ten) + e-- + } + + // TODO(gri) Values such as 1/2 are easier to read in form 0.5 + // rather than 5.0e-1. Similarly, 1.0e1 is easier to read as + // 10.0. Fine-tune best exponent range for readability. + + s := x.FloatString(100) // good-enough precision + + // trim trailing 0's + i := len(s) + for i > 0 && s[i-1] == '0' { + i-- + } + s = s[:i] + + // add a 0 if the number ends in decimal point + if len(s) > 0 && s[len(s)-1] == '.' { + s += "0" + } + + // add exponent and sign + if e != 0 { + s += fmt.Sprintf("e%+d", e) + } + if exact.Sign(v) < 0 { + s = "-" + s + } + + // TODO(gri) If v is a "small" fraction (i.e., numerator and denominator + // are just a small number of decimal digits), add the exact fraction as + // a comment. For instance: 3.3333...e-1 /* = 1/3 */ + + return s +} + +// valString returns the string representation for the value v. +// Setting floatFmt forces an integer value to be formatted in +// normalized floating-point format. +// TODO(gri) Move this code into package exact. +func valString(v exact.Value, floatFmt bool) string { + switch v.Kind() { + case exact.Int: + if floatFmt { + return floatString(v) + } + case exact.Float: + return floatString(v) + case exact.Complex: + re := exact.Real(v) + im := exact.Imag(v) + var s string + if exact.Sign(re) != 0 { + s = floatString(re) + if exact.Sign(im) >= 0 { + s += " + " + } else { + s += " - " + im = exact.UnaryOp(token.SUB, im, 0) // negate im + } + } + // im != 0, otherwise v would be exact.Int or exact.Float + return s + floatString(im) + "i" + } + return v.String() +} + +func (p *printer) printObj(obj types.Object) { + p.print(obj.Name()) + // don't write untyped types (for constants) + typ, basic := obj.Type().Underlying().(*types.Basic) + if basic && typ.Info()&types.IsUntyped == 0 { + p.print(" ") + p.writeType(p.pkg, typ) + } + // write constant value + if obj, ok := obj.(*types.Const); ok { + floatFmt := basic && typ.Info()&(types.IsFloat|types.IsComplex) != 0 + p.print(" = ") + p.print(valString(obj.Val(), floatFmt)) + } +} + +func (p *printer) printFunc(recvType types.Type, obj *types.Func) { + p.print("func ") + sig := obj.Type().(*types.Signature) + if recvType != nil { + p.print("(") + p.writeType(p.pkg, recvType) + p.print(") ") + } + p.print(obj.Name()) + p.writeSignature(p.pkg, sig) +} + +// combinedMethodSet returns the method set for a named type T +// merged with all the methods of *T that have different names than +// the methods of T. +// +// combinedMethodSet is analogous to types/typeutil.IntuitiveMethodSet +// but doesn't require a MethodSetCache. +// TODO(gri) If this functionality doesn't change over time, consider +// just calling IntuitiveMethodSet eventually. +func combinedMethodSet(T *types.Named) []*types.Selection { + // method set for T + mset := types.NewMethodSet(T) + var res []*types.Selection + for i, n := 0, mset.Len(); i < n; i++ { + res = append(res, mset.At(i)) + } + + // add all *T methods with names different from T methods + pmset := types.NewMethodSet(types.NewPointer(T)) + for i, n := 0, pmset.Len(); i < n; i++ { + pm := pmset.At(i) + if obj := pm.Obj(); mset.Lookup(obj.Pkg(), obj.Name()) == nil { + res = append(res, pm) + } + } + + return res +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/source.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/source.go new file mode 100644 index 00000000..0f527d16 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/source.go @@ -0,0 +1,19 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements access to export data from source. + +package main + +import ( + "code.google.com/p/go.tools/go/types" +) + +func init() { + register("source", sourceImporter) +} + +func sourceImporter(packages map[string]*types.Package, path string) (*types.Package, error) { + panic("unimplemented") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/writetype.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/writetype.go new file mode 100644 index 00000000..8f80283d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godex/writetype.go @@ -0,0 +1,242 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements writing of types. The functionality is lifted +// directly from go/types, but now contains various modifications for +// nicer output. +// +// TODO(gri) back-port once we have a fixed interface and once the +// go/types API is not frozen anymore for the 1.3 release; and remove +// this implementation if possible. + +package main + +import "code.google.com/p/go.tools/go/types" + +func (p *printer) writeType(this *types.Package, typ types.Type) { + p.writeTypeInternal(this, typ, make([]types.Type, 8)) +} + +// From go/types - leave for now to ease back-porting this code. +const GcCompatibilityMode = false + +func (p *printer) writeTypeInternal(this *types.Package, typ types.Type, visited []types.Type) { + // Theoretically, this is a quadratic lookup algorithm, but in + // practice deeply nested composite types with unnamed component + // types are uncommon. This code is likely more efficient than + // using a map. + for _, t := range visited { + if t == typ { + p.printf("○%T", typ) // cycle to typ + return + } + } + visited = append(visited, typ) + + switch t := typ.(type) { + case nil: + p.print("") + + case *types.Basic: + if t.Kind() == types.UnsafePointer { + p.print("unsafe.") + } + if GcCompatibilityMode { + // forget the alias names + switch t.Kind() { + case types.Byte: + t = types.Typ[types.Uint8] + case types.Rune: + t = types.Typ[types.Int32] + } + } + p.print(t.Name()) + + case *types.Array: + p.printf("[%d]", t.Len()) + p.writeTypeInternal(this, t.Elem(), visited) + + case *types.Slice: + p.print("[]") + p.writeTypeInternal(this, t.Elem(), visited) + + case *types.Struct: + n := t.NumFields() + if n == 0 { + p.print("struct{}") + return + } + + p.print("struct {\n") + p.indent++ + for i := 0; i < n; i++ { + f := t.Field(i) + if !f.Anonymous() { + p.printf("%s ", f.Name()) + } + p.writeTypeInternal(this, f.Type(), visited) + if tag := t.Tag(i); tag != "" { + p.printf(" %q", tag) + } + p.print("\n") + } + p.indent-- + p.print("}") + + case *types.Pointer: + p.print("*") + p.writeTypeInternal(this, t.Elem(), visited) + + case *types.Tuple: + p.writeTuple(this, t, false, visited) + + case *types.Signature: + p.print("func") + p.writeSignatureInternal(this, t, visited) + + case *types.Interface: + // We write the source-level methods and embedded types rather + // than the actual method set since resolved method signatures + // may have non-printable cycles if parameters have anonymous + // interface types that (directly or indirectly) embed the + // current interface. For instance, consider the result type + // of m: + // + // type T interface{ + // m() interface{ T } + // } + // + n := t.NumMethods() + if n == 0 { + p.print("interface{}") + return + } + + p.print("interface {\n") + p.indent++ + if GcCompatibilityMode { + // print flattened interface + // (useful to compare against gc-generated interfaces) + for i := 0; i < n; i++ { + m := t.Method(i) + p.print(m.Name()) + p.writeSignatureInternal(this, m.Type().(*types.Signature), visited) + p.print("\n") + } + } else { + // print explicit interface methods and embedded types + for i, n := 0, t.NumExplicitMethods(); i < n; i++ { + m := t.ExplicitMethod(i) + p.print(m.Name()) + p.writeSignatureInternal(this, m.Type().(*types.Signature), visited) + p.print("\n") + } + for i, n := 0, t.NumEmbeddeds(); i < n; i++ { + typ := t.Embedded(i) + p.writeTypeInternal(this, typ, visited) + p.print("\n") + } + } + p.indent-- + p.print("}") + + case *types.Map: + p.print("map[") + p.writeTypeInternal(this, t.Key(), visited) + p.print("]") + p.writeTypeInternal(this, t.Elem(), visited) + + case *types.Chan: + var s string + var parens bool + switch t.Dir() { + case types.SendRecv: + s = "chan " + // chan (<-chan T) requires parentheses + if c, _ := t.Elem().(*types.Chan); c != nil && c.Dir() == types.RecvOnly { + parens = true + } + case types.SendOnly: + s = "chan<- " + case types.RecvOnly: + s = "<-chan " + default: + panic("unreachable") + } + p.print(s) + if parens { + p.print("(") + } + p.writeTypeInternal(this, t.Elem(), visited) + if parens { + p.print(")") + } + + case *types.Named: + s := "" + if obj := t.Obj(); obj != nil { + if pkg := obj.Pkg(); pkg != nil { + if pkg != this { + p.print(pkg.Path()) + p.print(".") + } + // TODO(gri): function-local named types should be displayed + // differently from named types at package level to avoid + // ambiguity. + } + s = obj.Name() + } + p.print(s) + + default: + // For externally defined implementations of Type. + p.print(t.String()) + } +} + +func (p *printer) writeTuple(this *types.Package, tup *types.Tuple, variadic bool, visited []types.Type) { + p.print("(") + for i, n := 0, tup.Len(); i < n; i++ { + if i > 0 { + p.print(", ") + } + v := tup.At(i) + if name := v.Name(); name != "" { + p.print(name) + p.print(" ") + } + typ := v.Type() + if variadic && i == n-1 { + p.print("...") + typ = typ.(*types.Slice).Elem() + } + p.writeTypeInternal(this, typ, visited) + } + p.print(")") +} + +func (p *printer) writeSignature(this *types.Package, sig *types.Signature) { + p.writeSignatureInternal(this, sig, make([]types.Type, 8)) +} + +func (p *printer) writeSignatureInternal(this *types.Package, sig *types.Signature, visited []types.Type) { + p.writeTuple(this, sig.Params(), sig.Variadic(), visited) + + res := sig.Results() + n := res.Len() + if n == 0 { + // no result + return + } + + p.print(" ") + if n == 1 && res.At(0).Name() == "" { + // single unnamed result + p.writeTypeInternal(this, res.At(0).Type(), visited) + return + } + + // multiple or named result(s) + p.writeTuple(this, res, false, visited) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/README.godoc-app b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/README.godoc-app new file mode 100644 index 00000000..20ae100e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/README.godoc-app @@ -0,0 +1,56 @@ +godoc on appengine +------------------ + +Prerequisites +------------- + +* Go appengine SDK + https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go + +* Go sources at tip under $GOROOT + +* Godoc sources at tip inside $GOPATH + (go get -d code.google.com/p/go.tools/cmd/godoc) + + +Directory structure +------------------- + +* Let $APPDIR be the directory containing the app engine files. + (e.g., $APPDIR=$HOME/godoc-app) + +* $APPDIR contains the following entries (this may change depending on + app-engine release and version of godoc): + + app.yaml + code.google.com/p/go.tools/cmd/godoc + godoc.zip + index.split.* + +* The app.yaml file is set up per app engine documentation. + For instance: + + application: godoc-app + version: 1 + runtime: go + api_version: go1 + + handlers: + - url: /.* + script: _go_app + + +Configuring and running godoc +----------------------------- + +To configure godoc, run + + bash setup-godoc-app.bash + +to prepare an $APPDIR as described above. See the script for details on usage. + +To run godoc locally, using the App Engine development server, run + + /dev_appserver.py $APPDIR + +godoc should come up at http://localhost:8080 . diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/appinit.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/appinit.go new file mode 100644 index 00000000..d71ae6b9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/appinit.go @@ -0,0 +1,63 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package main + +// This file replaces main.go when running godoc under app-engine. +// See README.godoc-app for details. + +import ( + "archive/zip" + "log" + "path" + + "code.google.com/p/go.tools/godoc" + "code.google.com/p/go.tools/godoc/static" + "code.google.com/p/go.tools/godoc/vfs" + "code.google.com/p/go.tools/godoc/vfs/mapfs" + "code.google.com/p/go.tools/godoc/vfs/zipfs" +) + +func init() { + playEnabled = true + + log.Println("initializing godoc ...") + log.Printf(".zip file = %s", zipFilename) + log.Printf(".zip GOROOT = %s", zipGoroot) + log.Printf("index files = %s", indexFilenames) + + goroot := path.Join("/", zipGoroot) // fsHttp paths are relative to '/' + + // read .zip file and set up file systems + const zipfile = zipFilename + rc, err := zip.OpenReader(zipfile) + if err != nil { + log.Fatalf("%s: %s\n", zipfile, err) + } + // rc is never closed (app running forever) + fs.Bind("/", zipfs.New(rc, zipFilename), goroot, vfs.BindReplace) + fs.Bind("/lib/godoc", mapfs.New(static.Files), "/", vfs.BindReplace) + + corpus := godoc.NewCorpus(fs) + corpus.Verbose = false + corpus.IndexEnabled = true + corpus.IndexFiles = indexFilenames + if err := corpus.Init(); err != nil { + log.Fatal(err) + } + go corpus.RunIndexer() + + pres = godoc.NewPresentation(corpus) + pres.TabWidth = 8 + pres.ShowPlayground = true + pres.ShowExamples = true + pres.DeclLinks = true + + readTemplates(pres, true) + registerHandlers(pres) + + log.Println("godoc initialization complete") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/blog.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/blog.go new file mode 100644 index 00000000..ddaa2c4f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/blog.go @@ -0,0 +1,81 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "go/build" + "log" + "net/http" + "os" + "path/filepath" + "runtime" + "strings" + "sync" + + "code.google.com/p/go.tools/blog" + "code.google.com/p/go.tools/godoc/redirect" +) + +const ( + blogRepo = "code.google.com/p/go.blog" + blogURL = "http://blog.golang.org/" + blogPath = "/blog/" +) + +var ( + blogServer http.Handler // set by blogInit + blogInitOnce sync.Once + playEnabled bool +) + +func init() { + // Initialize blog only when first accessed. + http.HandleFunc(blogPath, func(w http.ResponseWriter, r *http.Request) { + blogInitOnce.Do(blogInit) + blogServer.ServeHTTP(w, r) + }) +} + +func blogInit() { + // Binary distributions will include the blog content in "/blog". + root := filepath.Join(runtime.GOROOT(), "blog") + + // Prefer content from go.blog repository if present. + if pkg, err := build.Import(blogRepo, "", build.FindOnly); err == nil { + root = pkg.Dir + } + + // If content is not available fall back to redirect. + if fi, err := os.Stat(root); err != nil || !fi.IsDir() { + fmt.Fprintf(os.Stderr, "Blog content not available locally. "+ + "To install, run \n\tgo get %v\n", blogRepo) + blogServer = http.HandlerFunc(blogRedirectHandler) + return + } + + s, err := blog.NewServer(blog.Config{ + BaseURL: blogPath, + BasePath: strings.TrimSuffix(blogPath, "/"), + ContentPath: filepath.Join(root, "content"), + TemplatePath: filepath.Join(root, "template"), + HomeArticles: 5, + PlayEnabled: playEnabled, + }) + if err != nil { + log.Fatal(err) + } + blogServer = s +} + +func blogRedirectHandler(w http.ResponseWriter, r *http.Request) { + if r.URL.Path == blogPath { + http.Redirect(w, r, blogURL, http.StatusFound) + return + } + blogPrefixHandler.ServeHTTP(w, r) +} + +var blogPrefixHandler = redirect.PrefixHandler(blogPath, blogURL) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/codewalk.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/codewalk.go new file mode 100644 index 00000000..5885c788 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/codewalk.go @@ -0,0 +1,523 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The /doc/codewalk/ tree is synthesized from codewalk descriptions, +// files named $GOROOT/doc/codewalk/*.xml. +// For an example and a description of the format, see +// http://golang.org/doc/codewalk/codewalk or run godoc -http=:6060 +// and see http://localhost:6060/doc/codewalk/codewalk . +// That page is itself a codewalk; the source code for it is +// $GOROOT/doc/codewalk/codewalk.xml. + +package main + +import ( + "bytes" + "encoding/xml" + "errors" + "fmt" + "io" + "log" + "net/http" + "os" + pathpkg "path" + "regexp" + "sort" + "strconv" + "strings" + "text/template" + "unicode/utf8" + + "code.google.com/p/go.tools/godoc" + "code.google.com/p/go.tools/godoc/vfs" +) + +var codewalkHTML, codewalkdirHTML *template.Template + +// Handler for /doc/codewalk/ and below. +func codewalk(w http.ResponseWriter, r *http.Request) { + relpath := r.URL.Path[len("/doc/codewalk/"):] + abspath := r.URL.Path + + r.ParseForm() + if f := r.FormValue("fileprint"); f != "" { + codewalkFileprint(w, r, f) + return + } + + // If directory exists, serve list of code walks. + dir, err := fs.Lstat(abspath) + if err == nil && dir.IsDir() { + codewalkDir(w, r, relpath, abspath) + return + } + + // If file exists, serve using standard file server. + if err == nil { + pres.ServeFile(w, r) + return + } + + // Otherwise append .xml and hope to find + // a codewalk description, but before trim + // the trailing /. + abspath = strings.TrimRight(abspath, "/") + cw, err := loadCodewalk(abspath + ".xml") + if err != nil { + log.Print(err) + pres.ServeError(w, r, relpath, err) + return + } + + // Canonicalize the path and redirect if changed + if redir(w, r) { + return + } + + pres.ServePage(w, godoc.Page{ + Title: "Codewalk: " + cw.Title, + Tabtitle: cw.Title, + Body: applyTemplate(codewalkHTML, "codewalk", cw), + }) +} + +func redir(w http.ResponseWriter, r *http.Request) (redirected bool) { + canonical := pathpkg.Clean(r.URL.Path) + if !strings.HasSuffix(canonical, "/") { + canonical += "/" + } + if r.URL.Path != canonical { + url := *r.URL + url.Path = canonical + http.Redirect(w, r, url.String(), http.StatusMovedPermanently) + redirected = true + } + return +} + +func applyTemplate(t *template.Template, name string, data interface{}) []byte { + var buf bytes.Buffer + if err := t.Execute(&buf, data); err != nil { + log.Printf("%s.Execute: %s", name, err) + } + return buf.Bytes() +} + +// A Codewalk represents a single codewalk read from an XML file. +type Codewalk struct { + Title string `xml:"title,attr"` + File []string `xml:"file"` + Step []*Codestep `xml:"step"` +} + +// A Codestep is a single step in a codewalk. +type Codestep struct { + // Filled in from XML + Src string `xml:"src,attr"` + Title string `xml:"title,attr"` + XML string `xml:",innerxml"` + + // Derived from Src; not in XML. + Err error + File string + Lo int + LoByte int + Hi int + HiByte int + Data []byte +} + +// String method for printing in template. +// Formats file address nicely. +func (st *Codestep) String() string { + s := st.File + if st.Lo != 0 || st.Hi != 0 { + s += fmt.Sprintf(":%d", st.Lo) + if st.Lo != st.Hi { + s += fmt.Sprintf(",%d", st.Hi) + } + } + return s +} + +// loadCodewalk reads a codewalk from the named XML file. +func loadCodewalk(filename string) (*Codewalk, error) { + f, err := fs.Open(filename) + if err != nil { + return nil, err + } + defer f.Close() + cw := new(Codewalk) + d := xml.NewDecoder(f) + d.Entity = xml.HTMLEntity + err = d.Decode(cw) + if err != nil { + return nil, &os.PathError{Op: "parsing", Path: filename, Err: err} + } + + // Compute file list, evaluate line numbers for addresses. + m := make(map[string]bool) + for _, st := range cw.Step { + i := strings.Index(st.Src, ":") + if i < 0 { + i = len(st.Src) + } + filename := st.Src[0:i] + data, err := vfs.ReadFile(fs, filename) + if err != nil { + st.Err = err + continue + } + if i < len(st.Src) { + lo, hi, err := addrToByteRange(st.Src[i+1:], 0, data) + if err != nil { + st.Err = err + continue + } + // Expand match to line boundaries. + for lo > 0 && data[lo-1] != '\n' { + lo-- + } + for hi < len(data) && (hi == 0 || data[hi-1] != '\n') { + hi++ + } + st.Lo = byteToLine(data, lo) + st.Hi = byteToLine(data, hi-1) + } + st.Data = data + st.File = filename + m[filename] = true + } + + // Make list of files + cw.File = make([]string, len(m)) + i := 0 + for f := range m { + cw.File[i] = f + i++ + } + sort.Strings(cw.File) + + return cw, nil +} + +// codewalkDir serves the codewalk directory listing. +// It scans the directory for subdirectories or files named *.xml +// and prepares a table. +func codewalkDir(w http.ResponseWriter, r *http.Request, relpath, abspath string) { + type elem struct { + Name string + Title string + } + + dir, err := fs.ReadDir(abspath) + if err != nil { + log.Print(err) + pres.ServeError(w, r, relpath, err) + return + } + var v []interface{} + for _, fi := range dir { + name := fi.Name() + if fi.IsDir() { + v = append(v, &elem{name + "/", ""}) + } else if strings.HasSuffix(name, ".xml") { + cw, err := loadCodewalk(abspath + "/" + name) + if err != nil { + continue + } + v = append(v, &elem{name[0 : len(name)-len(".xml")], cw.Title}) + } + } + + pres.ServePage(w, godoc.Page{ + Title: "Codewalks", + Body: applyTemplate(codewalkdirHTML, "codewalkdir", v), + }) +} + +// codewalkFileprint serves requests with ?fileprint=f&lo=lo&hi=hi. +// The filename f has already been retrieved and is passed as an argument. +// Lo and hi are the numbers of the first and last line to highlight +// in the response. This format is used for the middle window pane +// of the codewalk pages. It is a separate iframe and does not get +// the usual godoc HTML wrapper. +func codewalkFileprint(w http.ResponseWriter, r *http.Request, f string) { + abspath := f + data, err := vfs.ReadFile(fs, abspath) + if err != nil { + log.Print(err) + pres.ServeError(w, r, f, err) + return + } + lo, _ := strconv.Atoi(r.FormValue("lo")) + hi, _ := strconv.Atoi(r.FormValue("hi")) + if hi < lo { + hi = lo + } + lo = lineToByte(data, lo) + hi = lineToByte(data, hi+1) + + // Put the mark 4 lines before lo, so that the iframe + // shows a few lines of context before the highlighted + // section. + n := 4 + mark := lo + for ; mark > 0 && n > 0; mark-- { + if data[mark-1] == '\n' { + if n--; n == 0 { + break + } + } + } + + io.WriteString(w, `
`)
+	template.HTMLEscape(w, data[0:mark])
+	io.WriteString(w, "")
+	template.HTMLEscape(w, data[mark:lo])
+	if lo < hi {
+		io.WriteString(w, "
") + template.HTMLEscape(w, data[lo:hi]) + io.WriteString(w, "
") + } + template.HTMLEscape(w, data[hi:]) + io.WriteString(w, "
") +} + +// addrToByte evaluates the given address starting at offset start in data. +// It returns the lo and hi byte offset of the matched region within data. +// See http://plan9.bell-labs.com/sys/doc/sam/sam.html Table II +// for details on the syntax. +func addrToByteRange(addr string, start int, data []byte) (lo, hi int, err error) { + var ( + dir byte + prevc byte + charOffset bool + ) + lo = start + hi = start + for addr != "" && err == nil { + c := addr[0] + switch c { + default: + err = errors.New("invalid address syntax near " + string(c)) + case ',': + if len(addr) == 1 { + hi = len(data) + } else { + _, hi, err = addrToByteRange(addr[1:], hi, data) + } + return + + case '+', '-': + if prevc == '+' || prevc == '-' { + lo, hi, err = addrNumber(data, lo, hi, prevc, 1, charOffset) + } + dir = c + + case '$': + lo = len(data) + hi = len(data) + if len(addr) > 1 { + dir = '+' + } + + case '#': + charOffset = true + + case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + var i int + for i = 1; i < len(addr); i++ { + if addr[i] < '0' || addr[i] > '9' { + break + } + } + var n int + n, err = strconv.Atoi(addr[0:i]) + if err != nil { + break + } + lo, hi, err = addrNumber(data, lo, hi, dir, n, charOffset) + dir = 0 + charOffset = false + prevc = c + addr = addr[i:] + continue + + case '/': + var i, j int + Regexp: + for i = 1; i < len(addr); i++ { + switch addr[i] { + case '\\': + i++ + case '/': + j = i + 1 + break Regexp + } + } + if j == 0 { + j = i + } + pattern := addr[1:i] + lo, hi, err = addrRegexp(data, lo, hi, dir, pattern) + prevc = c + addr = addr[j:] + continue + } + prevc = c + addr = addr[1:] + } + + if err == nil && dir != 0 { + lo, hi, err = addrNumber(data, lo, hi, dir, 1, charOffset) + } + if err != nil { + return 0, 0, err + } + return lo, hi, nil +} + +// addrNumber applies the given dir, n, and charOffset to the address lo, hi. +// dir is '+' or '-', n is the count, and charOffset is true if the syntax +// used was #n. Applying +n (or +#n) means to advance n lines +// (or characters) after hi. Applying -n (or -#n) means to back up n lines +// (or characters) before lo. +// The return value is the new lo, hi. +func addrNumber(data []byte, lo, hi int, dir byte, n int, charOffset bool) (int, int, error) { + switch dir { + case 0: + lo = 0 + hi = 0 + fallthrough + + case '+': + if charOffset { + pos := hi + for ; n > 0 && pos < len(data); n-- { + _, size := utf8.DecodeRune(data[pos:]) + pos += size + } + if n == 0 { + return pos, pos, nil + } + break + } + // find next beginning of line + if hi > 0 { + for hi < len(data) && data[hi-1] != '\n' { + hi++ + } + } + lo = hi + if n == 0 { + return lo, hi, nil + } + for ; hi < len(data); hi++ { + if data[hi] != '\n' { + continue + } + switch n--; n { + case 1: + lo = hi + 1 + case 0: + return lo, hi + 1, nil + } + } + + case '-': + if charOffset { + // Scan backward for bytes that are not UTF-8 continuation bytes. + pos := lo + for ; pos > 0 && n > 0; pos-- { + if data[pos]&0xc0 != 0x80 { + n-- + } + } + if n == 0 { + return pos, pos, nil + } + break + } + // find earlier beginning of line + for lo > 0 && data[lo-1] != '\n' { + lo-- + } + hi = lo + if n == 0 { + return lo, hi, nil + } + for ; lo >= 0; lo-- { + if lo > 0 && data[lo-1] != '\n' { + continue + } + switch n--; n { + case 1: + hi = lo + case 0: + return lo, hi, nil + } + } + } + + return 0, 0, errors.New("address out of range") +} + +// addrRegexp searches for pattern in the given direction starting at lo, hi. +// The direction dir is '+' (search forward from hi) or '-' (search backward from lo). +// Backward searches are unimplemented. +func addrRegexp(data []byte, lo, hi int, dir byte, pattern string) (int, int, error) { + re, err := regexp.Compile(pattern) + if err != nil { + return 0, 0, err + } + if dir == '-' { + // Could implement reverse search using binary search + // through file, but that seems like overkill. + return 0, 0, errors.New("reverse search not implemented") + } + m := re.FindIndex(data[hi:]) + if len(m) > 0 { + m[0] += hi + m[1] += hi + } else if hi > 0 { + // No match. Wrap to beginning of data. + m = re.FindIndex(data) + } + if len(m) == 0 { + return 0, 0, errors.New("no match for " + pattern) + } + return m[0], m[1], nil +} + +// lineToByte returns the byte index of the first byte of line n. +// Line numbers begin at 1. +func lineToByte(data []byte, n int) int { + if n <= 1 { + return 0 + } + n-- + for i, c := range data { + if c == '\n' { + if n--; n == 0 { + return i + 1 + } + } + } + return len(data) +} + +// byteToLine returns the number of the line containing the byte at index i. +func byteToLine(data []byte, i int) int { + l := 1 + for j, c := range data { + if j == i { + return l + } + if c == '\n' { + l++ + } + } + return l +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/doc.go new file mode 100644 index 00000000..88ff2018 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/doc.go @@ -0,0 +1,144 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + +Godoc extracts and generates documentation for Go programs. + +It has two modes. + +Without the -http flag, it runs in command-line mode and prints plain text +documentation to standard output and exits. If both a library package and +a command with the same name exists, using the prefix cmd/ will force +documentation on the command rather than the library package. If the -src +flag is specified, godoc prints the exported interface of a package in Go +source form, or the implementation of a specific exported language entity: + + godoc fmt # documentation for package fmt + godoc fmt Printf # documentation for fmt.Printf + godoc cmd/go # force documentation for the go command + godoc -src fmt # fmt package interface in Go source form + godoc -src fmt Printf # implementation of fmt.Printf + +In command-line mode, the -q flag enables search queries against a godoc running +as a webserver. If no explicit server address is specified with the -server flag, +godoc first tries localhost:6060 and then http://golang.org. + + godoc -q Reader + godoc -q math.Sin + godoc -server=:6060 -q sin + +With the -http flag, it runs as a web server and presents the documentation as a +web page. + + godoc -http=:6060 + +Usage: + godoc [flag] package [name ...] + +The flags are: + -v + verbose mode + -q + arguments are considered search queries: a legal query is a + single identifier (such as ToLower) or a qualified identifier + (such as math.Sin) + -src + print (exported) source in command-line mode + -tabwidth=4 + width of tabs in units of spaces + -timestamps=true + show timestamps with directory listings + -index + enable identifier and full text search index + (no search box is shown if -index is not set) + -index_files="" + glob pattern specifying index files; if not empty, + the index is read from these files in sorted order + -index_throttle=0.75 + index throttle value; a value of 0 means no time is allocated + to the indexer (the indexer will never finish), a value of 1.0 + means that index creation is running at full throttle (other + goroutines may get no time while the index is built) + -links=true: + link identifiers to their declarations + -write_index=false + write index to a file; the file name must be specified with + -index_files + -maxresults=10000 + maximum number of full text search results shown + (no full text index is built if maxresults <= 0) + -notes="BUG" + regular expression matching note markers to show + (e.g., "BUG|TODO", ".*") + -html + print HTML in command-line mode + -goroot=$GOROOT + Go root directory + -http=addr + HTTP service address (e.g., '127.0.0.1:6060' or just ':6060') + -server=addr + webserver address for command line searches + -analysis=type,pointer + comma-separated list of analyses to perform + "type": display identifier resolution, type info, method sets, + 'implements', and static callees + "pointer" display channel peers, callers and dynamic callees + (significantly slower) + See http://golang.org/lib/godoc/analysis/help.html for details. + -templates="" + directory containing alternate template files; if set, + the directory may provide alternative template files + for the files in $GOROOT/lib/godoc + -url=path + print to standard output the data that would be served by + an HTTP request for path + -zip="" + zip file providing the file system to serve; disabled if empty + +By default, godoc looks at the packages it finds via $GOROOT and $GOPATH (if set). +This behavior can be altered by providing an alternative $GOROOT with the -goroot +flag. + +When godoc runs as a web server and -index is set, a search index is maintained. +The index is created at startup. + +The index contains both identifier and full text search information (searchable +via regular expressions). The maximum number of full text search results shown +can be set with the -maxresults flag; if set to 0, no full text results are +shown, and only an identifier index but no full text search index is created. + +The presentation mode of web pages served by godoc can be controlled with the +"m" URL parameter; it accepts a comma-separated list of flag names as value: + + all show documentation for all declarations, not just the exported ones + methods show all embedded methods, not just those of unexported anonymous fields + src show the original source code rather then the extracted documentation + text present the page in textual (command-line) form rather than HTML + flat present flat (not indented) directory listings using full paths + +For instance, http://golang.org/pkg/math/big/?m=all,text shows the documentation +for all (not just the exported) declarations of package big, in textual form (as +it would appear when using godoc from the command line: "godoc -src math/big .*"). + +By default, godoc serves files from the file system of the underlying OS. +Instead, a .zip file may be provided via the -zip flag, which contains +the file system to serve. The file paths stored in the .zip file must use +slash ('/') as path separator; and they must be unrooted. $GOROOT (or -goroot) +must be set to the .zip file directory path containing the Go root directory. +For instance, for a .zip file created by the command: + + zip go.zip $HOME/go + +one may run godoc as follows: + + godoc -http=:6060 -zip=go.zip -goroot=$HOME/go + +Godoc documentation is converted to HTML or to text using the go/doc package; +see http://golang.org/pkg/go/doc/#ToHTML for the exact rules. +See "Godoc: documenting Go code" for how to write good comments for godoc: +http://golang.org/doc/articles/godoc_documenting_go_code.html + +*/ +package main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/godoc_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/godoc_test.go new file mode 100644 index 00000000..2cf98772 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/godoc_test.go @@ -0,0 +1,278 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main_test + +import ( + "bytes" + "fmt" + "io/ioutil" + "net" + "net/http" + "os" + "os/exec" + "path/filepath" + "regexp" + "runtime" + "strings" + "testing" + "time" +) + +var godocTests = []struct { + args []string + matches []string // regular expressions + dontmatch []string // regular expressions +}{ + { + args: []string{"fmt"}, + matches: []string{ + `import "fmt"`, + `Package fmt implements formatted I/O`, + }, + }, + { + args: []string{"io", "WriteString"}, + matches: []string{ + `func WriteString\(`, + `WriteString writes the contents of the string s to w`, + }, + }, + { + args: []string{"nonexistingpkg"}, + matches: []string{ + `no such file or directory|does not exist|cannot find the file`, + }, + }, + { + args: []string{"fmt", "NonexistentSymbol"}, + matches: []string{ + `No match found\.`, + }, + }, + { + args: []string{"-src", "syscall", "Open"}, + matches: []string{ + `func Open\(`, + }, + dontmatch: []string{ + `No match found\.`, + }, + }, +} + +// buildGodoc builds the godoc executable. +// It returns its path, and a cleanup function. +// +// TODO(adonovan): opt: do this at most once, and do the cleanup +// exactly once. How though? There's no atexit. +func buildGodoc(t *testing.T) (bin string, cleanup func()) { + tmp, err := ioutil.TempDir("", "godoc-regtest-") + if err != nil { + t.Fatal(err) + } + + bin = filepath.Join(tmp, "godoc") + if runtime.GOOS == "windows" { + bin += ".exe" + } + cmd := exec.Command("go", "build", "-o", bin) + if err := cmd.Run(); err != nil { + t.Fatalf("Building godoc: %v", err) + } + + return bin, func() { os.RemoveAll(tmp) } +} + +// Basic regression test for godoc command-line tool. +func TestCLI(t *testing.T) { + bin, cleanup := buildGodoc(t) + defer cleanup() + for _, test := range godocTests { + cmd := exec.Command(bin, test.args...) + cmd.Args[0] = "godoc" + out, err := cmd.CombinedOutput() + if err != nil { + t.Errorf("Running with args %#v: %v", test.args, err) + continue + } + for _, pat := range test.matches { + re := regexp.MustCompile(pat) + if !re.Match(out) { + t.Errorf("godoc %v =\n%s\nwanted /%v/", strings.Join(test.args, " "), out, pat) + } + } + for _, pat := range test.dontmatch { + re := regexp.MustCompile(pat) + if re.Match(out) { + t.Errorf("godoc %v =\n%s\ndid not want /%v/", strings.Join(test.args, " "), out, pat) + } + } + } +} + +func serverAddress(t *testing.T) string { + ln, err := net.Listen("tcp", "127.0.0.1:0") + if err != nil { + ln, err = net.Listen("tcp6", "[::1]:0") + } + if err != nil { + t.Fatal(err) + } + defer ln.Close() + return ln.Addr().String() +} + +func waitForServer(t *testing.T, address string) { + // Poll every 50ms for a total of 5s. + for i := 0; i < 100; i++ { + time.Sleep(50 * time.Millisecond) + conn, err := net.Dial("tcp", address) + if err != nil { + continue + } + conn.Close() + return + } + t.Fatalf("Server %q failed to respond in 5 seconds", address) +} + +// Basic integration test for godoc HTTP interface. +func TestWeb(t *testing.T) { + bin, cleanup := buildGodoc(t) + defer cleanup() + addr := serverAddress(t) + cmd := exec.Command(bin, fmt.Sprintf("-http=%s", addr)) + cmd.Stdout = os.Stderr + cmd.Stderr = os.Stderr + cmd.Args[0] = "godoc" + if err := cmd.Start(); err != nil { + t.Fatalf("failed to start godoc: %s", err) + } + defer cmd.Process.Kill() + waitForServer(t, addr) + tests := []struct{ path, substr string }{ + {"/", "Go is an open source programming language"}, + {"/pkg/fmt/", "Package fmt implements formatted I/O"}, + {"/src/pkg/fmt/", "scan_test.go"}, + {"/src/pkg/fmt/print.go", "// Println formats using"}, + } + for _, test := range tests { + url := fmt.Sprintf("http://%s%s", addr, test.path) + resp, err := http.Get(url) + if err != nil { + t.Errorf("GET %s failed: %s", url, err) + continue + } + body, err := ioutil.ReadAll(resp.Body) + resp.Body.Close() + if err != nil { + t.Errorf("GET %s: failed to read body: %s (response: %v)", url, err, resp) + } + if bytes.Index(body, []byte(test.substr)) < 0 { + t.Errorf("GET %s: want substring %q in body, got:\n%s", + url, test.substr, string(body)) + } + } +} + +// Basic integration test for godoc -analysis=type (via HTTP interface). +func TestTypeAnalysis(t *testing.T) { + // Write a fake GOROOT/GOPATH. + tmpdir, err := ioutil.TempDir("", "godoc-analysis") + if err != nil { + t.Fatal("ioutil.TempDir failed: %s", err) + } + defer os.RemoveAll(tmpdir) + for _, f := range []struct{ file, content string }{ + {"goroot/src/pkg/lib/lib.go", ` +package lib +type T struct{} +const C = 3 +var V T +func (T) F() int { return C } +`}, + {"gopath/src/app/main.go", ` +package main +import "lib" +func main() { print(lib.V) } +`}, + } { + file := filepath.Join(tmpdir, f.file) + if err := os.MkdirAll(filepath.Dir(file), 0755); err != nil { + t.Fatalf("MkdirAll(%s) failed: %s", filepath.Dir(file), err) + } + if err := ioutil.WriteFile(file, []byte(f.content), 0644); err != nil { + t.Fatal(err) + } + } + + // Start the server. + bin, cleanup := buildGodoc(t) + defer cleanup() + addr := serverAddress(t) + cmd := exec.Command(bin, fmt.Sprintf("-http=%s", addr), "-analysis=type") + cmd.Env = append(cmd.Env, fmt.Sprintf("GOROOT=%s/goroot", tmpdir)) + cmd.Env = append(cmd.Env, fmt.Sprintf("GOPATH=%s/gopath", tmpdir)) + cmd.Env = append(cmd.Env, os.Environ()...) + cmd.Stdout = os.Stderr + cmd.Stderr = os.Stderr + cmd.Args[0] = "godoc" + if err := cmd.Start(); err != nil { + t.Fatalf("failed to start godoc: %s", err) + } + defer cmd.Process.Kill() + waitForServer(t, addr) + + t0 := time.Now() + + // Make an HTTP request and check for a regular expression match. + // The patterns are very crude checks that basic type information + // has been annotated onto the source view. +tryagain: + for _, test := range []struct{ url, pattern string }{ + {"/src/pkg/lib/lib.go", "L2.*package .*Package docs for lib.*/pkg/lib"}, + {"/src/pkg/lib/lib.go", "L3.*type .*type info for T.*struct"}, + {"/src/pkg/lib/lib.go", "L5.*var V .*type T struct"}, + {"/src/pkg/lib/lib.go", "L6.*func .*type T struct.*T.*return .*const C untyped int.*C"}, + + {"/src/pkg/app/main.go", "L2.*package .*Package docs for app"}, + {"/src/pkg/app/main.go", "L3.*import .*Package docs for lib.*lib"}, + {"/src/pkg/app/main.go", "L4.*func main.*package lib.*lib.*var lib.V lib.T.*V"}, + } { + url := fmt.Sprintf("http://%s%s", addr, test.url) + resp, err := http.Get(url) + if err != nil { + t.Errorf("GET %s failed: %s", url, err) + continue + } + body, err := ioutil.ReadAll(resp.Body) + resp.Body.Close() + if err != nil { + t.Errorf("GET %s: failed to read body: %s (response: %v)", url, err, resp) + continue + } + + if !bytes.Contains(body, []byte("Static analysis features")) { + // Type analysis results usually become available within + // ~4ms after godoc startup (for this input on my machine). + if elapsed := time.Since(t0); elapsed > 500*time.Millisecond { + t.Fatalf("type analysis results still unavailable after %s", elapsed) + } + time.Sleep(10 * time.Millisecond) + goto tryagain + } + + match, err := regexp.Match(test.pattern, body) + if err != nil { + t.Errorf("regexp.Match(%q) failed: %s", test.pattern, err) + continue + } + if !match { + // This is a really ugly failure message. + t.Errorf("GET %s: body doesn't match %q, got:\n%s", + url, test.pattern, string(body)) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/handlers.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/handlers.go new file mode 100644 index 00000000..66abbefe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/handlers.go @@ -0,0 +1,83 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The /doc/codewalk/ tree is synthesized from codewalk descriptions, +// files named $GOROOT/doc/codewalk/*.xml. +// For an example and a description of the format, see +// http://golang.org/doc/codewalk/codewalk or run godoc -http=:6060 +// and see http://localhost:6060/doc/codewalk/codewalk . +// That page is itself a codewalk; the source code for it is +// $GOROOT/doc/codewalk/codewalk.xml. + +package main + +import ( + "log" + "net/http" + "text/template" + + "code.google.com/p/go.tools/godoc" + "code.google.com/p/go.tools/godoc/redirect" + "code.google.com/p/go.tools/godoc/vfs" +) + +var ( + pres *godoc.Presentation + fs = vfs.NameSpace{} +) + +func registerHandlers(pres *godoc.Presentation) { + if pres == nil { + panic("nil Presentation") + } + http.HandleFunc("/doc/codewalk/", codewalk) + http.Handle("/doc/play/", pres.FileServer()) + http.Handle("/robots.txt", pres.FileServer()) + http.Handle("/", pres) + http.Handle("/pkg/C/", redirect.Handler("/cmd/cgo/")) + redirect.Register(nil) +} + +func readTemplate(name string) *template.Template { + if pres == nil { + panic("no global Presentation set yet") + } + path := "lib/godoc/" + name + + // use underlying file system fs to read the template file + // (cannot use template ParseFile functions directly) + data, err := vfs.ReadFile(fs, path) + if err != nil { + log.Fatal("readTemplate: ", err) + } + // be explicit with errors (for app engine use) + t, err := template.New(name).Funcs(pres.FuncMap()).Parse(string(data)) + if err != nil { + log.Fatal("readTemplate: ", err) + } + return t +} + +func readTemplates(p *godoc.Presentation, html bool) { + p.PackageText = readTemplate("package.txt") + p.SearchText = readTemplate("search.txt") + + if html || p.HTMLMode { + codewalkHTML = readTemplate("codewalk.html") + codewalkdirHTML = readTemplate("codewalkdir.html") + p.CallGraphHTML = readTemplate("callgraph.html") + p.DirlistHTML = readTemplate("dirlist.html") + p.ErrorHTML = readTemplate("error.html") + p.ExampleHTML = readTemplate("example.html") + p.GodocHTML = readTemplate("godoc.html") + p.ImplementsHTML = readTemplate("implements.html") + p.MethodSetHTML = readTemplate("methodset.html") + p.PackageHTML = readTemplate("package.html") + p.SearchHTML = readTemplate("search.html") + p.SearchDocHTML = readTemplate("searchdoc.html") + p.SearchCodeHTML = readTemplate("searchcode.html") + p.SearchTxtHTML = readTemplate("searchtxt.html") + p.SearchDescXML = readTemplate("opensearch.xml") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/main.go new file mode 100644 index 00000000..6c21e66b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/main.go @@ -0,0 +1,325 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// godoc: Go Documentation Server + +// Web server tree: +// +// http://godoc/ main landing page +// http://godoc/doc/ serve from $GOROOT/doc - spec, mem, etc. +// http://godoc/src/ serve files from $GOROOT/src; .go gets pretty-printed +// http://godoc/cmd/ serve documentation about commands +// http://godoc/pkg/ serve documentation about packages +// (idea is if you say import "compress/zlib", you go to +// http://godoc/pkg/compress/zlib) +// +// Command-line interface: +// +// godoc packagepath [name ...] +// +// godoc compress/zlib +// - prints doc for package compress/zlib +// godoc crypto/block Cipher NewCMAC +// - prints doc for Cipher and NewCMAC in package crypto/block + +// +build !appengine + +package main + +import ( + "archive/zip" + _ "expvar" // to serve /debug/vars + "flag" + "fmt" + "go/build" + "log" + "net/http" + "net/http/httptest" + _ "net/http/pprof" // to serve /debug/pprof/* + "net/url" + "os" + "path/filepath" + "regexp" + "runtime" + "strings" + + "code.google.com/p/go.tools/godoc" + "code.google.com/p/go.tools/godoc/analysis" + "code.google.com/p/go.tools/godoc/static" + "code.google.com/p/go.tools/godoc/vfs" + "code.google.com/p/go.tools/godoc/vfs/gatefs" + "code.google.com/p/go.tools/godoc/vfs/mapfs" + "code.google.com/p/go.tools/godoc/vfs/zipfs" +) + +const ( + defaultAddr = ":6060" // default webserver address + toolsPath = "code.google.com/p/go.tools/cmd/" +) + +var ( + // file system to serve + // (with e.g.: zip -r go.zip $GOROOT -i \*.go -i \*.html -i \*.css -i \*.js -i \*.txt -i \*.c -i \*.h -i \*.s -i \*.png -i \*.jpg -i \*.sh -i favicon.ico) + zipfile = flag.String("zip", "", "zip file providing the file system to serve; disabled if empty") + + // file-based index + writeIndex = flag.Bool("write_index", false, "write index to a file; the file name must be specified with -index_files") + + analysisFlag = flag.String("analysis", "", `comma-separated list of analyses to perform (supported: type, pointer). See http://golang.org/lib/godoc/analysis/help.html`) + + // network + httpAddr = flag.String("http", "", "HTTP service address (e.g., '"+defaultAddr+"')") + serverAddr = flag.String("server", "", "webserver address for command line searches") + + // layout control + html = flag.Bool("html", false, "print HTML in command-line mode") + srcMode = flag.Bool("src", false, "print (exported) source in command-line mode") + urlFlag = flag.String("url", "", "print HTML for named URL") + + // command-line searches + query = flag.Bool("q", false, "arguments are considered search queries") + + verbose = flag.Bool("v", false, "verbose mode") + + // file system roots + // TODO(gri) consider the invariant that goroot always end in '/' + goroot = flag.String("goroot", runtime.GOROOT(), "Go root directory") + + // layout control + tabWidth = flag.Int("tabwidth", 4, "tab width") + showTimestamps = flag.Bool("timestamps", false, "show timestamps with directory listings") + templateDir = flag.String("templates", "", "directory containing alternate template files") + showPlayground = flag.Bool("play", false, "enable playground in web interface") + showExamples = flag.Bool("ex", false, "show examples in command line mode") + declLinks = flag.Bool("links", true, "link identifiers to their declarations") + + // search index + indexEnabled = flag.Bool("index", false, "enable search index") + indexFiles = flag.String("index_files", "", "glob pattern specifying index files;"+ + "if not empty, the index is read from these files in sorted order") + maxResults = flag.Int("maxresults", 10000, "maximum number of full text search results shown") + indexThrottle = flag.Float64("index_throttle", 0.75, "index throttle value; 0.0 = no time allocated, 1.0 = full throttle") + + // source code notes + notesRx = flag.String("notes", "BUG", "regular expression matching note markers to show") +) + +func usage() { + fmt.Fprintf(os.Stderr, + "usage: godoc package [name ...]\n"+ + " godoc -http="+defaultAddr+"\n") + flag.PrintDefaults() + os.Exit(2) +} + +func loggingHandler(h http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { + log.Printf("%s\t%s", req.RemoteAddr, req.URL) + h.ServeHTTP(w, req) + }) +} + +func handleURLFlag() { + // Try up to 10 fetches, following redirects. + urlstr := *urlFlag + for i := 0; i < 10; i++ { + // Prepare request. + u, err := url.Parse(urlstr) + if err != nil { + log.Fatal(err) + } + req := &http.Request{ + URL: u, + } + + // Invoke default HTTP handler to serve request + // to our buffering httpWriter. + w := httptest.NewRecorder() + http.DefaultServeMux.ServeHTTP(w, req) + + // Return data, error, or follow redirect. + switch w.Code { + case 200: // ok + os.Stdout.Write(w.Body.Bytes()) + return + case 301, 302, 303, 307: // redirect + redirect := w.HeaderMap.Get("Location") + if redirect == "" { + log.Fatalf("HTTP %d without Location header", w.Code) + } + urlstr = redirect + default: + log.Fatalf("HTTP error %d", w.Code) + } + } + log.Fatalf("too many redirects") +} + +func main() { + flag.Usage = usage + flag.Parse() + + playEnabled = *showPlayground + + // Check usage: either server and no args, command line and args, or index creation mode + if (*httpAddr != "" || *urlFlag != "") != (flag.NArg() == 0) && !*writeIndex { + usage() + } + + var fsGate chan bool + fsGate = make(chan bool, 20) + + // Determine file system to use. + if *zipfile == "" { + // use file system of underlying OS + fs.Bind("/", gatefs.New(vfs.OS(*goroot), fsGate), "/", vfs.BindReplace) + } else { + // use file system specified via .zip file (path separator must be '/') + rc, err := zip.OpenReader(*zipfile) + if err != nil { + log.Fatalf("%s: %s\n", *zipfile, err) + } + defer rc.Close() // be nice (e.g., -writeIndex mode) + fs.Bind("/", zipfs.New(rc, *zipfile), *goroot, vfs.BindReplace) + } + if *templateDir != "" { + fs.Bind("/lib/godoc", vfs.OS(*templateDir), "/", vfs.BindBefore) + } else { + fs.Bind("/lib/godoc", mapfs.New(static.Files), "/", vfs.BindReplace) + } + + // Bind $GOPATH trees into Go root. + for _, p := range filepath.SplitList(build.Default.GOPATH) { + fs.Bind("/src/pkg", gatefs.New(vfs.OS(p), fsGate), "/src", vfs.BindAfter) + } + + httpMode := *httpAddr != "" + + var typeAnalysis, pointerAnalysis bool + if *analysisFlag != "" { + for _, a := range strings.Split(*analysisFlag, ",") { + switch a { + case "type": + typeAnalysis = true + case "pointer": + pointerAnalysis = true + default: + log.Fatalf("unknown analysis: %s", a) + } + } + } + + corpus := godoc.NewCorpus(fs) + corpus.Verbose = *verbose + corpus.MaxResults = *maxResults + corpus.IndexEnabled = *indexEnabled && httpMode + if *maxResults == 0 { + corpus.IndexFullText = false + } + corpus.IndexFiles = *indexFiles + corpus.IndexThrottle = *indexThrottle + if *writeIndex { + corpus.IndexThrottle = 1.0 + } + if *writeIndex || httpMode || *urlFlag != "" { + if err := corpus.Init(); err != nil { + log.Fatal(err) + } + } + + pres = godoc.NewPresentation(corpus) + pres.TabWidth = *tabWidth + pres.ShowTimestamps = *showTimestamps + pres.ShowPlayground = *showPlayground + pres.ShowExamples = *showExamples + pres.DeclLinks = *declLinks + pres.SrcMode = *srcMode + pres.HTMLMode = *html + if *notesRx != "" { + pres.NotesRx = regexp.MustCompile(*notesRx) + } + + readTemplates(pres, httpMode || *urlFlag != "") + registerHandlers(pres) + + if *writeIndex { + // Write search index and exit. + if *indexFiles == "" { + log.Fatal("no index file specified") + } + + log.Println("initialize file systems") + *verbose = true // want to see what happens + + corpus.UpdateIndex() + + log.Println("writing index file", *indexFiles) + f, err := os.Create(*indexFiles) + if err != nil { + log.Fatal(err) + } + index, _ := corpus.CurrentIndex() + _, err = index.WriteTo(f) + if err != nil { + log.Fatal(err) + } + + log.Println("done") + return + } + + // Print content that would be served at the URL *urlFlag. + if *urlFlag != "" { + handleURLFlag() + return + } + + if httpMode { + // HTTP server mode. + var handler http.Handler = http.DefaultServeMux + if *verbose { + log.Printf("Go Documentation Server") + log.Printf("version = %s", runtime.Version()) + log.Printf("address = %s", *httpAddr) + log.Printf("goroot = %s", *goroot) + log.Printf("tabwidth = %d", *tabWidth) + switch { + case !*indexEnabled: + log.Print("search index disabled") + case *maxResults > 0: + log.Printf("full text index enabled (maxresults = %d)", *maxResults) + default: + log.Print("identifier search index enabled") + } + fs.Fprint(os.Stderr) + handler = loggingHandler(handler) + } + + // Initialize search index. + if *indexEnabled { + go corpus.RunIndexer() + } + + // Start type/pointer analysis. + if typeAnalysis || pointerAnalysis { + go analysis.Run(pointerAnalysis, &corpus.Analysis) + } + + // Start http server. + if err := http.ListenAndServe(*httpAddr, handler); err != nil { + log.Fatalf("ListenAndServe %s: %v", *httpAddr, err) + } + + return + } + + if *query { + handleRemoteSearch() + return + } + + if err := godoc.CommandLine(os.Stdout, fs, pres, flag.Args()); err != nil { + log.Print(err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/play.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/play.go new file mode 100644 index 00000000..61a5c459 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/play.go @@ -0,0 +1,44 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/json" + "fmt" + "go/format" + "net/http" + + // This package registers "/compile" and "/share" handlers + // that redirect to the golang.org playground. + _ "code.google.com/p/go.tools/playground" +) + +func init() { + http.HandleFunc("/fmt", fmtHandler) +} + +type fmtResponse struct { + Body string + Error string +} + +// fmtHandler takes a Go program in its "body" form value, formats it with +// standard gofmt formatting, and writes a fmtResponse as a JSON object. +func fmtHandler(w http.ResponseWriter, r *http.Request) { + resp := new(fmtResponse) + body, err := format.Source([]byte(r.FormValue("body"))) + if err != nil { + resp.Error = err.Error() + } else { + resp.Body = string(body) + } + json.NewEncoder(w).Encode(resp) +} + +// disabledHandler serves a 501 "Not Implemented" response. +func disabledHandler(w http.ResponseWriter, r *http.Request) { + w.WriteHeader(http.StatusNotImplemented) + fmt.Fprint(w, "This functionality is not available via local godoc.") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/remotesearch.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/remotesearch.go new file mode 100644 index 00000000..f01d5c7a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/remotesearch.go @@ -0,0 +1,72 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine + +package main + +import ( + "errors" + "flag" + "io" + "log" + "net/http" + "net/url" + "os" +) + +func handleRemoteSearch() { + // Command-line queries. + for i := 0; i < flag.NArg(); i++ { + res, err := remoteSearch(flag.Arg(i)) + if err != nil { + log.Fatalf("remoteSearch: %s", err) + } + io.Copy(os.Stdout, res.Body) + } + return +} + +// remoteSearchURL returns the search URL for a given query as needed by +// remoteSearch. If html is set, an html result is requested; otherwise +// the result is in textual form. +// Adjust this function as necessary if modeNames or FormValue parameters +// change. +func remoteSearchURL(query string, html bool) string { + s := "/search?m=text&q=" + if html { + s = "/search?q=" + } + return s + url.QueryEscape(query) +} + +func remoteSearch(query string) (res *http.Response, err error) { + // list of addresses to try + var addrs []string + if *serverAddr != "" { + // explicit server address - only try this one + addrs = []string{*serverAddr} + } else { + addrs = []string{ + defaultAddr, + "golang.org", + } + } + + // remote search + search := remoteSearchURL(query, *html) + for _, addr := range addrs { + url := "http://" + addr + search + res, err = http.Get(url) + if err == nil && res.StatusCode == http.StatusOK { + break + } + } + + if err == nil && res.StatusCode != http.StatusOK { + err = errors.New(res.Status) + } + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/setup-godoc-app.bash b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/setup-godoc-app.bash new file mode 100755 index 00000000..1756f4ef --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/godoc/setup-godoc-app.bash @@ -0,0 +1,134 @@ +#!/usr/bin/env bash + +# Copyright 2011 The Go Authors. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +# This script creates a complete godoc app in $APPDIR. +# It copies the cmd/godoc and src/pkg/go/... sources from GOROOT, +# synthesizes an app.yaml file, and creates the .zip, index, and +# configuration files. +# +# If an argument is provided it is assumed to be the app-engine godoc directory. +# Without an argument, $APPDIR is used instead. If GOROOT is not set, "go env" +# is consulted to find the $GOROOT. +# +# The script creates a .zip file representing the $GOROOT file system +# and computes the correspondig search index files. These files are then +# copied to $APPDIR. A corresponding godoc configuration file is created +# in $APPDIR/appconfig.go. + +ZIPFILE=godoc.zip +INDEXFILE=godoc.index +SPLITFILES=index.split. +GODOC=code.google.com/p/go.tools/cmd/godoc +CONFIGFILE=$GODOC/appconfig.go + +error() { + echo "error: $1" + exit 2 +} + +getArgs() { + if [ -z $APPENGINE_SDK ]; then + error "APPENGINE_SDK environment variable not set" + fi + if [ ! -x $APPENGINE_SDK/go ]; then + error "couldn't find go comment in $APPENGINE_SDK" + fi + if [ -z $GOROOT ]; then + GOROOT=$(go env GOROOT) + echo "GOROOT not set explicitly, using go env value instead" + fi + if [ -z $APPDIR ]; then + if [ $# == 0 ]; then + error "APPDIR not set, and no argument provided" + fi + APPDIR=$1 + echo "APPDIR not set, using argument instead" + fi + + # safety checks + if [ ! -d $GOROOT ]; then + error "$GOROOT is not a directory" + fi + if [ -e $APPDIR ]; then + error "$APPDIR exists; check and remove it before trying again" + fi + + # reporting + echo "GOROOT = $GOROOT" + echo "APPDIR = $APPDIR" +} + +fetchGodoc() { + echo "*** Fetching godoc (if not already in GOPATH)" + unset GOBIN + go=$APPENGINE_SDK/go + $go get -d -tags appengine $GODOC + mkdir -p $APPDIR/$GODOC + cp $(find $($go list -f '{{.Dir}}' $GODOC) -type f -depth 1) $APPDIR/$GODOC/ +} + +makeAppYaml() { + echo "*** make $APPDIR/app.yaml" + cat > $APPDIR/app.yaml < $APPDIR/$CONFIGFILE <", os.Stdin, os.Stdout, true); err != nil { + report(err) + } + return + } + + for i := 0; i < flag.NArg(); i++ { + path := flag.Arg(i) + switch dir, err := os.Stat(path); { + case err != nil: + report(err) + case dir.IsDir(): + walkDir(path) + default: + if err := processFile(path, nil, os.Stdout, false); err != nil { + report(err) + } + } + } +} + +func diff(b1, b2 []byte) (data []byte, err error) { + f1, err := ioutil.TempFile("", "gofmt") + if err != nil { + return + } + defer os.Remove(f1.Name()) + defer f1.Close() + + f2, err := ioutil.TempFile("", "gofmt") + if err != nil { + return + } + defer os.Remove(f2.Name()) + defer f2.Close() + + f1.Write(b1) + f2.Write(b2) + + data, err = exec.Command("diff", "-u", f1.Name(), f2.Name()).CombinedOutput() + if len(data) > 0 { + // diff exits with a non-zero status when the files don't match. + // Ignore that failure as long as we get output. + err = nil + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/gotype/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/gotype/doc.go new file mode 100644 index 00000000..e6893781 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/gotype/doc.go @@ -0,0 +1,62 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +The gotype command does syntactic and semantic analysis of Go files +and packages like the front-end of a Go compiler. Errors are reported +if the analysis fails; otherwise gotype is quiet (unless -v is set). + +Without a list of paths, gotype reads from standard input, which +must provide a single Go source file defining a complete package. + +If a single path is specified that is a directory, gotype checks +the Go files in that directory; they must all belong to the same +package. + +Otherwise, each path must be the filename of Go file belonging to +the same package. + +Usage: + gotype [flags] [path...] + +The flags are: + -a + use all (incl. _test.go) files when processing a directory + -e + report all errors (not just the first 10) + -v + verbose mode + -gccgo + use gccimporter instead of gcimporter + +Debugging flags: + -seq + parse sequentially, rather than in parallel + -ast + print AST (forces -seq) + -trace + print parse trace (forces -seq) + -comments + parse comments (ignored unless -ast or -trace is provided) + +Examples: + +To check the files a.go, b.go, and c.go: + + gotype a.go b.go c.go + +To check an entire package in the directory dir and print the processed files: + + gotype -v dir + +To check an entire package including tests in the local directory: + + gotype -a . + +To verify the output of a pipe: + + echo "package foo" | gotype + +*/ +package main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/gotype/gotype.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/gotype/gotype.go new file mode 100644 index 00000000..efc5a4c1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/gotype/gotype.go @@ -0,0 +1,262 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "flag" + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/scanner" + "go/token" + "io/ioutil" + "os" + "path/filepath" + "runtime" + "time" + + "code.google.com/p/go.tools/go/gccgoimporter" + _ "code.google.com/p/go.tools/go/gcimporter" + "code.google.com/p/go.tools/go/types" +) + +var ( + // main operation modes + allFiles = flag.Bool("a", false, "use all (incl. _test.go) files when processing a directory") + allErrors = flag.Bool("e", false, "report all errors (not just the first 10)") + verbose = flag.Bool("v", false, "verbose mode") + gccgo = flag.Bool("gccgo", false, "use gccgoimporter instead of gcimporter") + + // debugging support + sequential = flag.Bool("seq", false, "parse sequentially, rather than in parallel") + printAST = flag.Bool("ast", false, "print AST (forces -seq)") + printTrace = flag.Bool("trace", false, "print parse trace (forces -seq)") + parseComments = flag.Bool("comments", false, "parse comments (ignored unless -ast or -trace is provided)") +) + +var ( + fset = token.NewFileSet() + errorCount = 0 + parserMode parser.Mode + sizes types.Sizes +) + +func initParserMode() { + if *allErrors { + parserMode |= parser.AllErrors + } + if *printTrace { + parserMode |= parser.Trace + } + if *parseComments && (*printAST || *printTrace) { + parserMode |= parser.ParseComments + } +} + +func initSizes() { + wordSize := 8 + maxAlign := 8 + switch build.Default.GOARCH { + case "386", "arm": + wordSize = 4 + maxAlign = 4 + // add more cases as needed + } + sizes = &types.StdSizes{WordSize: int64(wordSize), MaxAlign: int64(maxAlign)} +} + +func usage() { + fmt.Fprintln(os.Stderr, "usage: gotype [flags] [path ...]") + flag.PrintDefaults() + os.Exit(2) +} + +func report(err error) { + scanner.PrintError(os.Stderr, err) + if list, ok := err.(scanner.ErrorList); ok { + errorCount += len(list) + return + } + errorCount++ +} + +// parse may be called concurrently +func parse(filename string, src interface{}) (*ast.File, error) { + if *verbose { + fmt.Println(filename) + } + file, err := parser.ParseFile(fset, filename, src, parserMode) // ok to access fset concurrently + if *printAST { + ast.Print(fset, file) + } + return file, err +} + +func parseStdin() (*ast.File, error) { + src, err := ioutil.ReadAll(os.Stdin) + if err != nil { + return nil, err + } + return parse("", src) +} + +func parseFiles(filenames []string) ([]*ast.File, error) { + files := make([]*ast.File, len(filenames)) + + if *sequential { + for i, filename := range filenames { + var err error + files[i], err = parse(filename, nil) + if err != nil { + return nil, err // leave unfinished goroutines hanging + } + } + } else { + type parseResult struct { + file *ast.File + err error + } + + out := make(chan parseResult) + for _, filename := range filenames { + go func(filename string) { + file, err := parse(filename, nil) + out <- parseResult{file, err} + }(filename) + } + + for i := range filenames { + res := <-out + if res.err != nil { + return nil, res.err // leave unfinished goroutines hanging + } + files[i] = res.file + } + } + + return files, nil +} + +func parseDir(dirname string) ([]*ast.File, error) { + ctxt := build.Default + pkginfo, err := ctxt.ImportDir(dirname, 0) + if _, nogo := err.(*build.NoGoError); err != nil && !nogo { + return nil, err + } + filenames := append(pkginfo.GoFiles, pkginfo.CgoFiles...) + if *allFiles { + filenames = append(filenames, pkginfo.TestGoFiles...) + } + + // complete file names + for i, filename := range filenames { + filenames[i] = filepath.Join(dirname, filename) + } + + return parseFiles(filenames) +} + +func getPkgFiles(args []string) ([]*ast.File, error) { + if len(args) == 0 { + // stdin + file, err := parseStdin() + if err != nil { + return nil, err + } + return []*ast.File{file}, nil + } + + if len(args) == 1 { + // possibly a directory + path := args[0] + info, err := os.Stat(path) + if err != nil { + return nil, err + } + if info.IsDir() { + return parseDir(path) + } + } + + // list of files + return parseFiles(args) +} + +func checkPkgFiles(files []*ast.File) { + type bailout struct{} + conf := types.Config{ + FakeImportC: true, + Error: func(err error) { + if !*allErrors && errorCount >= 10 { + panic(bailout{}) + } + report(err) + }, + Sizes: sizes, + } + if *gccgo { + var inst gccgoimporter.GccgoInstallation + inst.InitFromDriver("gccgo") + conf.Import = inst.GetImporter(nil) + } + + defer func() { + switch p := recover().(type) { + case nil, bailout: + // normal return or early exit + default: + // re-panic + panic(p) + } + }() + + const path = "pkg" // any non-empty string will do for now + conf.Check(path, fset, files, nil) +} + +func printStats(d time.Duration) { + fileCount := 0 + lineCount := 0 + fset.Iterate(func(f *token.File) bool { + fileCount++ + lineCount += f.LineCount() + return true + }) + + fmt.Printf( + "%s (%d files, %d lines, %d lines/s)\n", + d, fileCount, lineCount, int64(float64(lineCount)/d.Seconds()), + ) +} + +func main() { + runtime.GOMAXPROCS(runtime.NumCPU()) // remove this once runtime is smarter + + flag.Usage = usage + flag.Parse() + if *printAST || *printTrace { + *sequential = true + } + initParserMode() + initSizes() + + start := time.Now() + + files, err := getPkgFiles(flag.Args()) + if err != nil { + report(err) + os.Exit(2) + } + + checkPkgFiles(files) + if errorCount > 0 { + os.Exit(2) + } + + if *verbose { + printStats(time.Since(start)) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/html2article/conv.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/html2article/conv.go new file mode 100644 index 00000000..95595a10 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/html2article/conv.go @@ -0,0 +1,348 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This program takes an HTML file and outputs a corresponding article file in +// present format. See: code.google.com/p/go.tools/present +package main + +import ( + "bufio" + "bytes" + "errors" + "flag" + "fmt" + "io" + "log" + "os" + "regexp" + "strings" + + "code.google.com/p/go.net/html" + "code.google.com/p/go.net/html/atom" +) + +func main() { + flag.Parse() + + err := convert(os.Stdout, os.Stdin) + if err != nil { + log.Fatal(err) + } +} + +func convert(w io.Writer, r io.Reader) error { + root, err := html.Parse(r) + if err != nil { + return err + } + + style := find(root, isTag(atom.Style)) + parseStyles(style) + + body := find(root, isTag(atom.Body)) + if body == nil { + return errors.New("couldn't find body") + } + article := limitNewlineRuns(makeHeadings(strings.TrimSpace(text(body)))) + _, err = fmt.Fprintf(w, "Title\n\n%s", article) + return err +} + +type Style string + +const ( + Bold Style = "*" + Italic Style = "_" + Code Style = "`" +) + +var cssRules = make(map[string]Style) + +func parseStyles(style *html.Node) { + if style == nil || style.FirstChild == nil { + log.Println("couldn't find styles") + return + } + s := bufio.NewScanner(strings.NewReader(style.FirstChild.Data)) + + findRule := func(b []byte, atEOF bool) (advance int, token []byte, err error) { + if i := bytes.Index(b, []byte("{")); i >= 0 { + token = bytes.TrimSpace(b[:i]) + advance = i + } + return + } + findBody := func(b []byte, atEOF bool) (advance int, token []byte, err error) { + if len(b) == 0 { + return + } + if b[0] != '{' { + err = fmt.Errorf("expected {, got %c", b[0]) + return + } + if i := bytes.Index(b, []byte("}")); i < 0 { + err = fmt.Errorf("can't find closing }") + return + } else { + token = b[1:i] + advance = i + 1 + } + return + } + + s.Split(findRule) + for s.Scan() { + rule := s.Text() + s.Split(findBody) + if !s.Scan() { + break + } + b := strings.ToLower(s.Text()) + switch { + case strings.Contains(b, "italic"): + cssRules[rule] = Italic + case strings.Contains(b, "bold"): + cssRules[rule] = Bold + case strings.Contains(b, "Consolas") || strings.Contains(b, "Courier New"): + cssRules[rule] = Code + } + s.Split(findRule) + } + if err := s.Err(); err != nil { + log.Println(err) + } +} + +var newlineRun = regexp.MustCompile(`\n\n+`) + +func limitNewlineRuns(s string) string { + return newlineRun.ReplaceAllString(s, "\n\n") +} + +func makeHeadings(body string) string { + buf := new(bytes.Buffer) + lines := strings.Split(body, "\n") + for i, s := range lines { + if i == 0 && !isBoldTitle(s) { + buf.WriteString("* Introduction\n\n") + } + if isBoldTitle(s) { + s = strings.TrimSpace(strings.Replace(s, "*", " ", -1)) + s = "* " + s + } + buf.WriteString(s) + buf.WriteByte('\n') + } + return buf.String() +} + +func isBoldTitle(s string) bool { + return !strings.Contains(s, " ") && + strings.HasPrefix(s, "*") && + strings.HasSuffix(s, "*") +} + +func indent(buf *bytes.Buffer, s string) { + for _, l := range strings.Split(s, "\n") { + if l != "" { + buf.WriteByte('\t') + buf.WriteString(l) + } + buf.WriteByte('\n') + } +} + +func unwrap(buf *bytes.Buffer, s string) { + var cont bool + for _, l := range strings.Split(s, "\n") { + l = strings.TrimSpace(l) + if len(l) == 0 { + if cont { + buf.WriteByte('\n') + buf.WriteByte('\n') + } + cont = false + } else { + if cont { + buf.WriteByte(' ') + } + buf.WriteString(l) + cont = true + } + } +} + +func text(n *html.Node) string { + var buf bytes.Buffer + walk(n, func(n *html.Node) bool { + switch n.Type { + case html.TextNode: + buf.WriteString(n.Data) + return false + case html.ElementNode: + // no-op + default: + return true + } + a := n.DataAtom + if a == atom.Span { + switch { + case hasStyle(Code)(n): + a = atom.Code + case hasStyle(Bold)(n): + a = atom.B + case hasStyle(Italic)(n): + a = atom.I + } + } + switch a { + case atom.Br: + buf.WriteByte('\n') + case atom.P: + unwrap(&buf, childText(n)) + buf.WriteString("\n\n") + case atom.Li: + buf.WriteString("- ") + unwrap(&buf, childText(n)) + buf.WriteByte('\n') + case atom.Pre: + indent(&buf, childText(n)) + buf.WriteByte('\n') + case atom.A: + fmt.Fprintf(&buf, "[[%s][%s]]", attr(n, "href"), childText(n)) + case atom.Code: + buf.WriteString(highlight(n, "`")) + case atom.B: + buf.WriteString(highlight(n, "*")) + case atom.I: + buf.WriteString(highlight(n, "_")) + case atom.Img: + src := attr(n, "src") + fmt.Fprintf(&buf, ".image %s\n", src) + case atom.Iframe: + src, w, h := attr(n, "src"), attr(n, "width"), attr(n, "height") + fmt.Fprintf(&buf, "\n.iframe %s %s %s\n", src, h, w) + case atom.Param: + if attr(n, "name") == "movie" { + // Old style YouTube embed. + u := attr(n, "value") + u = strings.Replace(u, "/v/", "/embed/", 1) + if i := strings.Index(u, "&"); i >= 0 { + u = u[:i] + } + fmt.Fprintf(&buf, "\n.iframe %s 540 304\n", u) + } + default: + return true + } + return false + }) + return buf.String() +} + +func childText(node *html.Node) string { + var buf bytes.Buffer + for n := node.FirstChild; n != nil; n = n.NextSibling { + fmt.Fprint(&buf, text(n)) + } + return buf.String() +} + +func highlight(node *html.Node, char string) string { + t := strings.Replace(childText(node), " ", char, -1) + return fmt.Sprintf("%s%s%s", char, t, char) +} + +type selector func(*html.Node) bool + +func isTag(a atom.Atom) selector { + return func(n *html.Node) bool { + return n.DataAtom == a + } +} + +func hasClass(name string) selector { + return func(n *html.Node) bool { + for _, a := range n.Attr { + if a.Key == "class" { + for _, c := range strings.Fields(a.Val) { + if c == name { + return true + } + } + } + } + return false + } +} + +func hasStyle(s Style) selector { + return func(n *html.Node) bool { + for rule, s2 := range cssRules { + if s2 != s { + continue + } + if strings.HasPrefix(rule, ".") && hasClass(rule[1:])(n) { + return true + } + if n.DataAtom.String() == rule { + return true + } + } + return false + } +} + +func hasAttr(key, val string) selector { + return func(n *html.Node) bool { + for _, a := range n.Attr { + if a.Key == key && a.Val == val { + return true + } + } + return false + } +} + +func attr(node *html.Node, key string) (value string) { + for _, attr := range node.Attr { + if attr.Key == key { + return attr.Val + } + } + return "" +} + +func findAll(node *html.Node, fn selector) (nodes []*html.Node) { + walk(node, func(n *html.Node) bool { + if fn(n) { + nodes = append(nodes, n) + } + return true + }) + return +} + +func find(n *html.Node, fn selector) *html.Node { + var result *html.Node + walk(n, func(n *html.Node) bool { + if result != nil { + return false + } + if fn(n) { + result = n + return false + } + return true + }) + return result +} + +func walk(n *html.Node, fn selector) { + if fn(n) { + for c := n.FirstChild; c != nil; c = c.NextSibling { + walk(c, fn) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/emacs-test.bash b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/emacs-test.bash new file mode 100755 index 00000000..b3f7af6f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/emacs-test.bash @@ -0,0 +1,50 @@ +#!/bin/bash +# +# Simple test of Go oracle/Emacs integration. +# Requires that GOROOT and GOPATH are set. +# Side effect: builds and installs oracle in $GOROOT. + +set -eu + +[ -z "$GOROOT" ] && { echo "Error: GOROOT is unset." >&2; exit 1; } +[ -z "$GOPATH" ] && { echo "Error: GOPATH is unset." >&2; exit 1; } + +log=/tmp/$(basename $0)-$$.log +thisdir=$(dirname $0) + +function die() { + echo "Error: $@." + cat $log + exit 1 +} >&2 + +trap "rm -f $log" EXIT + +# Build and install oracle. +go get code.google.com/p/go.tools/cmd/oracle || die "'go get' failed" +mv -f $GOPATH/bin/oracle $GOROOT/bin/ +$GOROOT/bin/oracle >$log 2>&1 || true # (prints usage and exits 1) +grep -q "Run.*help" $log || die "$GOROOT/bin/oracle not installed" + + +# Run Emacs, set the scope to the oracle tool itself, +# load ./main.go, and describe the "fmt" import. +emacs --batch --no-splash --no-window-system --no-init \ + --load $GOROOT/misc/emacs/go-mode.el \ + --load $thisdir/oracle.el \ + --eval ' +(progn + (setq go-oracle-scope "code.google.com/p/go.tools/cmd/oracle") + (find-file "'$thisdir'/main.go") + (search-forward "\"fmt\"") + (backward-char) + (go-oracle-describe) + (princ (with-current-buffer "*go-oracle*" + (buffer-substring-no-properties (point-min) (point-max)))) + (kill-emacs 0)) +' main.go >$log 2>&1 || die "emacs command failed" + +# Check that Println is mentioned. +grep -q "fmt/print.go.*func Println" $log || die "didn't find expected lines in log; got:" + +echo "PASS" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/main.go new file mode 100644 index 00000000..d99f9dc1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/main.go @@ -0,0 +1,192 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// oracle: a tool for answering questions about Go source code. +// http://golang.org/s/oracle-design +// http://golang.org/s/oracle-user-manual +// +// Run with -help flag or help subcommand for usage information. +// +package main + +import ( + "bufio" + "encoding/json" + "encoding/xml" + "flag" + "fmt" + "go/build" + "io" + "log" + "os" + "runtime" + "runtime/pprof" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/oracle" +) + +var posFlag = flag.String("pos", "", + "Filename and byte offset or extent of a syntax element about which to query, "+ + "e.g. foo.go:#123,#456, bar.go:#123.") + +var ptalogFlag = flag.String("ptalog", "", + "Location of the points-to analysis log file, or empty to disable logging.") + +var formatFlag = flag.String("format", "plain", "Output format. One of {plain,json,xml}.") + +// TODO(adonovan): flip this flag after PTA presolver is implemented. +var reflectFlag = flag.Bool("reflect", false, "Analyze reflection soundly (slow).") + +const useHelp = "Run 'oracle -help' for more information.\n" + +const helpMessage = `Go source code oracle. +Usage: oracle [ ...] ... + +The -format flag controls the output format: + plain an editor-friendly format in which every line of output + is of the form "pos: text", where pos is "-" if unknown. + json structured data in JSON syntax. + xml structured data in XML syntax. + +The -pos flag is required in all modes except 'callgraph'. + +The mode argument determines the query to perform: + + callees show possible targets of selected function call + callers show possible callers of selected function + callgraph show complete callgraph of program + callstack show path from callgraph root to selected function + describe describe selected syntax: definition, methods, etc + freevars show free variables of selection + implements show 'implements' relation for selected package + peers show send/receive corresponding to selected channel op + referrers show all refs to entity denoted by selected identifier + +The user manual is available here: http://golang.org/s/oracle-user-manual + +Examples: + +Describe the syntax at offset 530 in this file (an import spec): +% oracle -pos=src/code.google.com/p/go.tools/cmd/oracle/main.go:#530 describe \ + code.google.com/p/go.tools/cmd/oracle + +Print the callgraph of the trivial web-server in JSON format: +% oracle -format=json src/pkg/net/http/triv.go callgraph +` + loader.FromArgsUsage + +var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file") + +func init() { + // If $GOMAXPROCS isn't set, use the full capacity of the machine. + // For small machines, use at least 4 threads. + if os.Getenv("GOMAXPROCS") == "" { + n := runtime.NumCPU() + if n < 4 { + n = 4 + } + runtime.GOMAXPROCS(n) + } +} + +func printHelp() { + fmt.Fprintln(os.Stderr, helpMessage) + fmt.Fprintln(os.Stderr, "Flags:") + flag.PrintDefaults() +} + +func main() { + // Don't print full help unless -help was requested. + // Just gently remind users that it's there. + flag.Usage = func() { fmt.Fprint(os.Stderr, useHelp) } + flag.CommandLine.Init(os.Args[0], flag.ContinueOnError) // hack + if err := flag.CommandLine.Parse(os.Args[1:]); err != nil { + // (err has already been printed) + if err == flag.ErrHelp { + printHelp() + } + os.Exit(2) + } + + args := flag.Args() + if len(args) == 0 || args[0] == "" { + fmt.Fprint(os.Stderr, "Error: a mode argument is required.\n"+useHelp) + os.Exit(2) + } + + mode := args[0] + args = args[1:] + if mode == "help" { + printHelp() + os.Exit(2) + } + + if len(args) == 0 && mode != "what" { + fmt.Fprint(os.Stderr, "Error: no package arguments.\n"+useHelp) + os.Exit(2) + } + + // Set up points-to analysis log file. + var ptalog io.Writer + if *ptalogFlag != "" { + if f, err := os.Create(*ptalogFlag); err != nil { + log.Fatalf("Failed to create PTA log file: %s", err) + } else { + buf := bufio.NewWriter(f) + ptalog = buf + defer func() { + buf.Flush() + f.Close() + }() + } + } + + // Profiling support. + if *cpuprofile != "" { + f, err := os.Create(*cpuprofile) + if err != nil { + log.Fatal(err) + } + pprof.StartCPUProfile(f) + defer pprof.StopCPUProfile() + } + + // -format flag + switch *formatFlag { + case "json", "plain", "xml": + // ok + default: + fmt.Fprintf(os.Stderr, "Error: illegal -format value: %q.\n"+useHelp, *formatFlag) + os.Exit(2) + } + + // Ask the oracle. + res, err := oracle.Query(args, mode, *posFlag, ptalog, &build.Default, *reflectFlag) + if err != nil { + fmt.Fprintf(os.Stderr, "Error: %s.\n", err) + os.Exit(1) + } + + // Print the result. + switch *formatFlag { + case "json": + b, err := json.MarshalIndent(res.Serial(), "", "\t") + if err != nil { + fmt.Fprintf(os.Stderr, "JSON error: %s.\n", err) + os.Exit(1) + } + os.Stdout.Write(b) + + case "xml": + b, err := xml.MarshalIndent(res.Serial(), "", "\t") + if err != nil { + fmt.Fprintf(os.Stderr, "XML error: %s.\n", err) + os.Exit(1) + } + os.Stdout.Write(b) + + case "plain": + res.WriteTo(os.Stdout) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/oracle.el b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/oracle.el new file mode 100644 index 00000000..dacf9da1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/oracle.el @@ -0,0 +1,223 @@ +;;; +;;; Integration of the Go 'oracle' analysis tool into Emacs. +;;; +;;; To install the Go oracle, run: +;;; % export GOROOT=... GOPATH=... +;;; % go get code.google.com/p/go.tools/cmd/oracle +;;; % mv $GOPATH/bin/oracle $GOROOT/bin/ +;;; +;;; Load this file into Emacs and set go-oracle-scope to your +;;; configuration. Then, find a file of Go source code, enable +;;; go-oracle-mode, select an expression of interest, and press `C-c C-o d' +;;; (for "describe") or run one of the other go-oracle-xxx commands. +;;; +;;; TODO(adonovan): simplify installation and configuration by making +;;; oracle a subcommand of 'go tool'. + +(require 'compile) +(require 'go-mode) +(require 'cl) + +(defgroup go-oracle nil + "Options specific to the Go oracle." + :group 'go) + +(defcustom go-oracle-command (concat (car (go-root-and-paths)) "/bin/oracle") + "The Go oracle command; the default is $GOROOT/bin/oracle." + :type 'string + :group 'go-oracle) + +(defcustom go-oracle-scope "" + "The scope of the analysis. See `go-oracle-set-scope'." + :type 'string + :group 'go-oracle) + +(defvar go-oracle--scope-history + nil + "History of values supplied to `go-oracle-set-scope'.") + +;; TODO(adonovan): I'd like to get rid of this separate mode since it +;; makes it harder to use the oracle. +(defvar go-oracle-mode-map + (let ((m (make-sparse-keymap))) + (define-key m (kbd "C-c C-o t") #'go-oracle-describe) ; t for type + (define-key m (kbd "C-c C-o f") #'go-oracle-freevars) + (define-key m (kbd "C-c C-o g") #'go-oracle-callgraph) + (define-key m (kbd "C-c C-o i") #'go-oracle-implements) + (define-key m (kbd "C-c C-o c") #'go-oracle-peers) ; c for channel + (define-key m (kbd "C-c C-o r") #'go-oracle-referrers) + (define-key m (kbd "C-c C-o d") #'go-oracle-definition) + (define-key m (kbd "C-c C-o p") #'go-oracle-pointsto) + (define-key m (kbd "C-c C-o s") #'go-oracle-callstack) + (define-key m (kbd "C-c C-o <") #'go-oracle-callers) + (define-key m (kbd "C-c C-o >") #'go-oracle-callees) + m)) + +;; TODO(dominikh): Rethink set-scope some. Setting it to a file is +;; painful because it doesn't use find-file, and variables/~ aren't +;; expanded. Setting it to an import path is somewhat painful because +;; it doesn't make use of go-mode's import path completion. One option +;; would be having two different functions, but then we can't +;; automatically call it when no scope has been set. Also it wouldn't +;; easily allow specifying more than one file/package. +(defun go-oracle-set-scope () + "Set the scope for the Go oracle, prompting the user to edit the +previous scope. + +The scope specifies a set of arguments, separated by spaces. +It may be: +1) a set of packages whose main() functions will be analyzed. +2) a list of *.go filenames; they will treated like as a single + package (see #3). +3) a single package whose main() function and/or Test* functions + will be analyzed. + +In the common case, this is similar to the argument(s) you would +specify to 'go build'." + (interactive) + (let ((scope (read-from-minibuffer "Go oracle scope: " + go-oracle-scope + nil + nil + 'go-oracle--scope-history))) + (if (string-equal "" scope) + (error "You must specify a non-empty scope for the Go oracle")) + (setq go-oracle-scope scope))) + +(defun go-oracle--run (mode) + "Run the Go oracle in the specified MODE, passing it the +selected region of the current buffer. Process the output to +replace each file name with a small hyperlink. Display the +result." + (if (not buffer-file-name) + (error "Cannot use oracle on a buffer without a file name")) + ;; It's not sufficient to save a modified buffer since if + ;; gofmt-before-save is on the before-save-hook, saving will + ;; disturb the selected region. + (if (buffer-modified-p) + (error "Please save the buffer before invoking go-oracle")) + (if (string-equal "" go-oracle-scope) + (go-oracle-set-scope)) + (let* ((filename (file-truename buffer-file-name)) + (posflag (if (use-region-p) + (format "-pos=%s:#%d,#%d" + filename + (1- (go--position-bytes (region-beginning))) + (1- (go--position-bytes (region-end)))) + (format "-pos=%s:#%d" + filename + (1- (position-bytes (point)))))) + ;; This would be simpler if we could just run 'go tool oracle'. + (env-vars (go-root-and-paths)) + (goroot-env (concat "GOROOT=" (car env-vars))) + (gopath-env (concat "GOPATH=" (mapconcat #'identity (cdr env-vars) ":")))) + (with-current-buffer (get-buffer-create "*go-oracle*") + (setq buffer-read-only nil) + (erase-buffer) + (insert "Go Oracle\n") + (let ((args (append (list go-oracle-command nil t nil posflag mode) + (split-string go-oracle-scope " " t)))) + ;; Log the command to *Messages*, for debugging. + (message "Command: %s:" args) + (message nil) ; clears/shrinks minibuffer + + (message "Running oracle...") + ;; Use dynamic binding to modify/restore the environment + (let ((process-environment (list* goroot-env gopath-env process-environment))) + (apply #'call-process args))) + (insert "\n") + (compilation-mode) + (setq compilation-error-screen-columns nil) + + ;; Hide the file/line info to save space. + ;; Replace each with a little widget. + ;; compilation-mode + this loop = slooow. + ;; TODO(adonovan): have oracle give us JSON + ;; and we'll do the markup directly. + (let ((buffer-read-only nil) + (p 1)) + (while (not (null p)) + (let ((np (compilation-next-single-property-change p 'compilation-message))) + ;; TODO(adonovan): this can be verbose in the *Messages* buffer. + ;; (message "Post-processing link (%d%%)" (/ (* p 100) (point-max))) + (if np + (when (equal (line-number-at-pos p) (line-number-at-pos np)) + ;; np is (typically) the space following ":"; consume it too. + (put-text-property p np 'display "▶") + (goto-char np) + (insert " "))) + (setq p np))) + (message nil)) + + (let ((w (display-buffer (current-buffer)))) + (balance-windows) + (shrink-window-if-larger-than-buffer w) + (set-window-point w (point-min)))))) + +(defun go-oracle-callees () + "Show possible callees of the function call at the current point." + (interactive) + (go-oracle--run "callees")) + +(defun go-oracle-callers () + "Show the set of callers of the function containing the current point." + (interactive) + (go-oracle--run "callers")) + +(defun go-oracle-callgraph () + "Show the callgraph of the current program." + (interactive) + (go-oracle--run "callgraph")) + +(defun go-oracle-callstack () + "Show an arbitrary path from a root of the call graph to the +function containing the current point." + (interactive) + (go-oracle--run "callstack")) + +(defun go-oracle-definition () + "Show the definition of the selected identifier." + (interactive) + (go-oracle--run "definition")) + +(defun go-oracle-describe () + "Describe the selected syntax, its kind, type and methods." + (interactive) + (go-oracle--run "describe")) + +(defun go-oracle-pointsto () + "Show what the selected expression points to." + (interactive) + (go-oracle--run "pointsto")) + +(defun go-oracle-implements () + "Describe the 'implements' relation for types in the package +containing the current point." + (interactive) + (go-oracle--run "implements")) + +(defun go-oracle-freevars () + "Enumerate the free variables of the current selection." + (interactive) + (go-oracle--run "freevars")) + +(defun go-oracle-peers () + "Enumerate the set of possible corresponding sends/receives for +this channel receive/send operation." + (interactive) + (go-oracle--run "peers")) + +(defun go-oracle-referrers () + "Enumerate all references to the object denoted by the selected +identifier." + (interactive) + (go-oracle--run "referrers")) + +;; TODO(dominikh): better docstring +(define-minor-mode go-oracle-mode "Oracle minor mode for go-mode + +Keys specific to go-oracle-mode: +\\{go-oracle-mode-map}" + nil " oracle" go-oracle-mode-map) + +(provide 'go-oracle) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/oracle.vim b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/oracle.vim new file mode 100644 index 00000000..cadda781 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/oracle/oracle.vim @@ -0,0 +1,107 @@ +" -*- text -*- +" oracle.vim -- Vim integration for the Go oracle. +" +" Load with (e.g.) :source oracle.vim +" Call with (e.g.) :GoOracleDescribe +" while cursor or selection is over syntax of interest. +" Run :copen to show the quick-fix file. +" +" This is an absolutely rudimentary integration of the Go Oracle into +" Vim's quickfix mechanism and it needs a number of usability +" improvements before it can be practically useful to Vim users. +" Voluntary contributions welcomed! +" +" TODO(adonovan): +" - reject buffers with no filename. +" - hide all filenames in quickfix buffer. + +" Get the path to the Go oracle executable. +func! s:go_oracle_bin() + let [ext, sep] = (has('win32') || has('win64') ? ['.exe', ';'] : ['', ':']) + let go_oracle = globpath(join(split($GOPATH, sep), ','), '/bin/oracle' . ext) + if go_oracle == '' + let go_oracle = globpath($GOROOT, '/bin/oracle' . ext) + endif + return go_oracle +endfunction + +let s:go_oracle = s:go_oracle_bin() + +func! s:qflist(output) + let qflist = [] + " Parse GNU-style 'file:line.col-line.col: message' format. + let mx = '^\(\a:[\\/][^:]\+\|[^:]\+\):\(\d\+\):\(\d\+\):\(.*\)$' + for line in split(a:output, "\n") + let ml = matchlist(line, mx) + " Ignore non-match lines or warnings + if ml == [] || ml[4] =~ '^ warning:' + continue + endif + let item = { + \ 'filename': ml[1], + \ 'text': ml[4], + \ 'lnum': ml[2], + \ 'col': ml[3], + \} + let bnr = bufnr(fnameescape(ml[1])) + if bnr != -1 + let item['bufnr'] = bnr + endif + call add(qflist, item) + endfor + call setqflist(qflist) + cwindow +endfun + +func! s:getpos(l, c) + if &encoding != 'utf-8' + let buf = a:l == 1 ? '' : (join(getline(1, a:l-1), "\n") . "\n") + let buf .= a:c == 1 ? '' : getline('.')[:a:c-2] + return len(iconv(buf, &encoding, 'utf-8')) + endif + return line2byte(a:l) + (a:c-2) +endfun + +func! s:RunOracle(mode, selected) range abort + let fname = expand('%:p') + let sname = get(g:, 'go_oracle_scope_file', fname) + if a:selected != -1 + let pos1 = s:getpos(line("'<"), col("'<")) + let pos2 = s:getpos(line("'>"), col("'>")) + let cmd = printf('%s -pos=%s:#%d,#%d %s %s', + \ s:go_oracle, + \ shellescape(fname), pos1, pos2, a:mode, shellescape(sname)) + else + let pos = s:getpos(line('.'), col('.')) + let cmd = printf('%s -pos=%s:#%d %s %s', + \ s:go_oracle, + \ shellescape(fname), pos, a:mode, shellescape(sname)) + endif + call s:qflist(system(cmd)) +endfun + +" Describe the expression at the current point. +command! -range=% GoOracleDescribe + \ call s:RunOracle('describe', ) + +" Show possible callees of the function call at the current point. +command! -range=% GoOracleCallees + \ call s:RunOracle('callees', ) + +" Show the set of callers of the function containing the current point. +command! -range=% GoOracleCallers + \ call s:RunOracle('callers', ) + +" Show the callgraph of the current program. +command! -range=% GoOracleCallgraph + \ call s:RunOracle('callgraph', ) + +" Describe the 'implements' relation for types in the +" package containing the current point. +command! -range=% GoOracleImplements + \ call s:RunOracle('implements', ) + +" Enumerate the set of possible corresponding sends/receives for +" this channel receive/send operation. +command! -range=% GoOracleChannelPeers + \ call s:RunOracle('peers', ) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/ssadump/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/ssadump/main.go new file mode 100644 index 00000000..484ceee5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/ssadump/main.go @@ -0,0 +1,210 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// ssadump: a tool for displaying and interpreting the SSA form of Go programs. +package main + +import ( + "flag" + "fmt" + "go/build" + "os" + "runtime" + "runtime/pprof" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/interp" + "code.google.com/p/go.tools/go/types" +) + +var buildFlag = flag.String("build", "", `Options controlling the SSA builder. +The value is a sequence of zero or more of these letters: +C perform sanity [C]hecking of the SSA form. +D include [D]ebug info for every function. +P log [P]ackage inventory. +F log [F]unction SSA code. +S log [S]ource locations as SSA builder progresses. +G use binary object files from gc to provide imports (no code). +L build distinct packages seria[L]ly instead of in parallel. +N build [N]aive SSA form: don't replace local loads/stores with registers. +`) + +var testFlag = flag.Bool("test", false, "Loads test code (*_test.go) for imported packages.") + +var runFlag = flag.Bool("run", false, "Invokes the SSA interpreter on the program.") + +var interpFlag = flag.String("interp", "", `Options controlling the SSA test interpreter. +The value is a sequence of zero or more more of these letters: +R disable [R]ecover() from panic; show interpreter crash instead. +T [T]race execution of the program. Best for single-threaded programs! +`) + +const usage = `SSA builder and interpreter. +Usage: ssadump [ ...] ... +Use -help flag to display options. + +Examples: +% ssadump -build=FPG hello.go # quickly dump SSA form of a single package +% ssadump -run -interp=T hello.go # interpret a program, with tracing +% ssadump -run -test unicode -- -test.v # interpret the unicode package's tests, verbosely +` + loader.FromArgsUsage + + ` +When -run is specified, ssadump will run the program. +The entry point depends on the -test flag: +if clear, it runs the first package named main. +if set, it runs the tests of each package. +` + +var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file") + +func init() { + // If $GOMAXPROCS isn't set, use the full capacity of the machine. + // For small machines, use at least 4 threads. + if os.Getenv("GOMAXPROCS") == "" { + n := runtime.NumCPU() + if n < 4 { + n = 4 + } + runtime.GOMAXPROCS(n) + } +} + +func main() { + if err := doMain(); err != nil { + fmt.Fprintf(os.Stderr, "ssadump: %s.\n", err) + os.Exit(1) + } +} + +func doMain() error { + flag.Parse() + args := flag.Args() + + conf := loader.Config{ + Build: &build.Default, + SourceImports: true, + } + // TODO(adonovan): make go/types choose its default Sizes from + // build.Default or a specified *build.Context. + var wordSize int64 = 8 + switch conf.Build.GOARCH { + case "386", "arm": + wordSize = 4 + } + conf.TypeChecker.Sizes = &types.StdSizes{ + MaxAlign: 8, + WordSize: wordSize, + } + + var mode ssa.BuilderMode + for _, c := range *buildFlag { + switch c { + case 'D': + mode |= ssa.GlobalDebug + case 'P': + mode |= ssa.LogPackages | ssa.BuildSerially + case 'F': + mode |= ssa.LogFunctions | ssa.BuildSerially + case 'S': + mode |= ssa.LogSource | ssa.BuildSerially + case 'C': + mode |= ssa.SanityCheckFunctions + case 'N': + mode |= ssa.NaiveForm + case 'G': + conf.SourceImports = false + case 'L': + mode |= ssa.BuildSerially + default: + return fmt.Errorf("unknown -build option: '%c'", c) + } + } + + var interpMode interp.Mode + for _, c := range *interpFlag { + switch c { + case 'T': + interpMode |= interp.EnableTracing + case 'R': + interpMode |= interp.DisableRecover + default: + return fmt.Errorf("unknown -interp option: '%c'", c) + } + } + + if len(args) == 0 { + fmt.Fprint(os.Stderr, usage) + os.Exit(1) + } + + // Profiling support. + if *cpuprofile != "" { + f, err := os.Create(*cpuprofile) + if err != nil { + fmt.Fprintln(os.Stderr, err) + os.Exit(1) + } + pprof.StartCPUProfile(f) + defer pprof.StopCPUProfile() + } + + // Use the initial packages from the command line. + args, err := conf.FromArgs(args, *testFlag) + if err != nil { + return err + } + + // The interpreter needs the runtime package. + if *runFlag { + conf.Import("runtime") + } + + // Load, parse and type-check the whole program. + iprog, err := conf.Load() + if err != nil { + return err + } + + // Create and build SSA-form program representation. + prog := ssa.Create(iprog, mode) + prog.BuildAll() + + // Run the interpreter. + if *runFlag { + var main *ssa.Package + pkgs := prog.AllPackages() + if *testFlag { + // If -test, run all packages' tests. + if len(pkgs) > 0 { + main = prog.CreateTestMainPackage(pkgs...) + } + if main == nil { + return fmt.Errorf("no tests") + } + } else { + // Otherwise, run main.main. + for _, pkg := range pkgs { + if pkg.Object.Name() == "main" { + main = pkg + if main.Func("main") == nil { + return fmt.Errorf("no func main() in main package") + } + break + } + } + if main == nil { + return fmt.Errorf("no main package") + } + } + + if runtime.GOARCH != build.Default.GOARCH { + return fmt.Errorf("cross-interpretation is not yet supported (target has GOARCH %s, interpreter has %s)", + build.Default.GOARCH, runtime.GOARCH) + } + + interp.Interpret(main, interpMode, conf.TypeChecker.Sizes, main.Object.Path(), args) + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/asmdecl.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/asmdecl.go new file mode 100644 index 00000000..001b1770 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/asmdecl.go @@ -0,0 +1,533 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Identify mismatches between assembly files and Go func declarations. + +package main + +import ( + "bytes" + "fmt" + "go/ast" + "go/token" + "regexp" + "strconv" + "strings" +) + +// 'kind' is a kind of assembly variable. +// The kinds 1, 2, 4, 8 stand for values of that size. +type asmKind int + +// These special kinds are not valid sizes. +const ( + asmString asmKind = 100 + iota + asmSlice + asmInterface + asmEmptyInterface +) + +// An asmArch describes assembly parameters for an architecture +type asmArch struct { + name string + ptrSize int + intSize int + bigEndian bool +} + +// An asmFunc describes the expected variables for a function on a given architecture. +type asmFunc struct { + arch *asmArch + size int // size of all arguments + vars map[string]*asmVar + varByOffset map[int]*asmVar +} + +// An asmVar describes a single assembly variable. +type asmVar struct { + name string + kind asmKind + typ string + off int + size int + inner []*asmVar +} + +var ( + asmArch386 = asmArch{"386", 4, 4, false} + asmArchArm = asmArch{"arm", 4, 4, false} + asmArchAmd64 = asmArch{"amd64", 8, 8, false} + + arches = []*asmArch{ + &asmArch386, + &asmArchArm, + &asmArchAmd64, + } +) + +var ( + re = regexp.MustCompile + asmPlusBuild = re(`//\s+\+build\s+([^\n]+)`) + asmTEXT = re(`\bTEXT\b.*·([^\(]+)\(SB\)(?:\s*,\s*([0-9A-Z|+]+))?(?:\s*,\s*\$([0-9]+)(?:-([0-9]+))?)?`) + asmDATA = re(`\b(DATA|GLOBL)\b`) + asmNamedFP = re(`([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`) + asmUnnamedFP = re(`[^+\-0-9]](([0-9]+)\(FP\))`) + asmOpcode = re(`^\s*(?:[A-Z0-9a-z_]+:)?\s*([A-Z]+)\s*([^,]*)(?:,\s*(.*))?`) +) + +func asmCheck(pkg *Package) { + if !vet("asmdecl") { + return + } + + // No work if no assembly files. + if !pkg.hasFileWithSuffix(".s") { + return + } + + // Gather declarations. knownFunc[name][arch] is func description. + knownFunc := make(map[string]map[string]*asmFunc) + + for _, f := range pkg.files { + if f.file != nil { + for _, decl := range f.file.Decls { + if decl, ok := decl.(*ast.FuncDecl); ok && decl.Body == nil { + knownFunc[decl.Name.Name] = f.asmParseDecl(decl) + } + } + } + } + + var fn *asmFunc + for _, f := range pkg.files { + if !strings.HasSuffix(f.name, ".s") { + continue + } + Println("Checking file", f.name) + + // Determine architecture from file name if possible. + var arch string + for _, a := range arches { + if strings.HasSuffix(f.name, "_"+a.name+".s") { + arch = a.name + break + } + } + + lines := strings.SplitAfter(string(f.content), "\n") + for lineno, line := range lines { + lineno++ + + badf := func(format string, args ...interface{}) { + f.Badf(token.NoPos, "%s:%d: [%s] %s", f.name, lineno, arch, fmt.Sprintf(format, args...)) + } + + if arch == "" { + // Determine architecture from +build line if possible. + if m := asmPlusBuild.FindStringSubmatch(line); m != nil { + Fields: + for _, fld := range strings.Fields(m[1]) { + for _, a := range arches { + if a.name == fld { + arch = a.name + break Fields + } + } + } + } + } + + if m := asmTEXT.FindStringSubmatch(line); m != nil { + if arch == "" { + f.Warnf(token.NoPos, "%s: cannot determine architecture for assembly file", f.name) + return + } + fn = knownFunc[m[1]][arch] + if fn != nil { + size, _ := strconv.Atoi(m[4]) + if size != fn.size && (m[2] != "7" && !strings.Contains(m[2], "NOSPLIT") || size != 0) { + badf("wrong argument size %d; expected $...-%d", size, fn.size) + } + } + continue + } else if strings.Contains(line, "TEXT") && strings.Contains(line, "SB") { + // function, but not visible from Go (didn't match asmTEXT), so stop checking + fn = nil + continue + } + + if asmDATA.FindStringSubmatch(line) != nil { + fn = nil + } + if fn == nil { + continue + } + + for _, m := range asmUnnamedFP.FindAllStringSubmatch(line, -1) { + badf("use of unnamed argument %s", m[1]) + } + + for _, m := range asmNamedFP.FindAllStringSubmatch(line, -1) { + name := m[1] + off := 0 + if m[2] != "" { + off, _ = strconv.Atoi(m[2]) + } + v := fn.vars[name] + if v == nil { + // Allow argframe+0(FP). + if name == "argframe" && off == 0 { + continue + } + v = fn.varByOffset[off] + if v != nil { + badf("unknown variable %s; offset %d is %s+%d(FP)", name, off, v.name, v.off) + } else { + badf("unknown variable %s", name) + } + continue + } + asmCheckVar(badf, fn, line, m[0], off, v) + } + } + } +} + +// asmParseDecl parses a function decl for expected assembly variables. +func (f *File) asmParseDecl(decl *ast.FuncDecl) map[string]*asmFunc { + var ( + arch *asmArch + fn *asmFunc + offset int + failed bool + ) + + addVar := func(outer string, v asmVar) { + if vo := fn.vars[outer]; vo != nil { + vo.inner = append(vo.inner, &v) + } + fn.vars[v.name] = &v + for i := 0; i < v.size; i++ { + fn.varByOffset[v.off+i] = &v + } + } + + addParams := func(list []*ast.Field) { + for i, fld := range list { + // Determine alignment, size, and kind of type in declaration. + var align, size int + var kind asmKind + names := fld.Names + typ := f.gofmt(fld.Type) + switch t := fld.Type.(type) { + default: + switch typ { + default: + f.Warnf(fld.Type.Pos(), "unknown assembly argument type %s", typ) + failed = true + return + case "int8", "uint8", "byte", "bool": + size = 1 + case "int16", "uint16": + size = 2 + case "int32", "uint32", "float32": + size = 4 + case "int64", "uint64", "float64": + align = arch.ptrSize + size = 8 + case "int", "uint": + size = arch.intSize + case "uintptr", "iword", "Word", "Errno", "unsafe.Pointer": + size = arch.ptrSize + case "string": + size = arch.ptrSize * 2 + align = arch.ptrSize + kind = asmString + } + case *ast.ChanType, *ast.FuncType, *ast.MapType, *ast.StarExpr: + size = arch.ptrSize + case *ast.InterfaceType: + align = arch.ptrSize + size = 2 * arch.ptrSize + if len(t.Methods.List) > 0 { + kind = asmInterface + } else { + kind = asmEmptyInterface + } + case *ast.ArrayType: + if t.Len == nil { + size = arch.ptrSize + 2*arch.intSize + align = arch.ptrSize + kind = asmSlice + break + } + f.Warnf(fld.Type.Pos(), "unsupported assembly argument type %s", typ) + failed = true + case *ast.StructType: + f.Warnf(fld.Type.Pos(), "unsupported assembly argument type %s", typ) + failed = true + } + if align == 0 { + align = size + } + if kind == 0 { + kind = asmKind(size) + } + offset += -offset & (align - 1) + + // Create variable for each name being declared with this type. + if len(names) == 0 { + name := "unnamed" + if decl.Type.Results != nil && len(decl.Type.Results.List) > 0 && &list[0] == &decl.Type.Results.List[0] && i == 0 { + // Assume assembly will refer to single unnamed result as r. + name = "ret" + } + names = []*ast.Ident{{Name: name}} + } + for _, id := range names { + name := id.Name + addVar("", asmVar{ + name: name, + kind: kind, + typ: typ, + off: offset, + size: size, + }) + switch kind { + case 8: + if arch.ptrSize == 4 { + w1, w2 := "lo", "hi" + if arch.bigEndian { + w1, w2 = w2, w1 + } + addVar(name, asmVar{ + name: name + "_" + w1, + kind: 4, + typ: "half " + typ, + off: offset, + size: 4, + }) + addVar(name, asmVar{ + name: name + "_" + w2, + kind: 4, + typ: "half " + typ, + off: offset + 4, + size: 4, + }) + } + + case asmEmptyInterface: + addVar(name, asmVar{ + name: name + "_type", + kind: asmKind(arch.ptrSize), + typ: "interface type", + off: offset, + size: arch.ptrSize, + }) + addVar(name, asmVar{ + name: name + "_data", + kind: asmKind(arch.ptrSize), + typ: "interface data", + off: offset + arch.ptrSize, + size: arch.ptrSize, + }) + + case asmInterface: + addVar(name, asmVar{ + name: name + "_itable", + kind: asmKind(arch.ptrSize), + typ: "interface itable", + off: offset, + size: arch.ptrSize, + }) + addVar(name, asmVar{ + name: name + "_data", + kind: asmKind(arch.ptrSize), + typ: "interface data", + off: offset + arch.ptrSize, + size: arch.ptrSize, + }) + + case asmSlice: + addVar(name, asmVar{ + name: name + "_base", + kind: asmKind(arch.ptrSize), + typ: "slice base", + off: offset, + size: arch.ptrSize, + }) + addVar(name, asmVar{ + name: name + "_len", + kind: asmKind(arch.intSize), + typ: "slice len", + off: offset + arch.ptrSize, + size: arch.intSize, + }) + addVar(name, asmVar{ + name: name + "_cap", + kind: asmKind(arch.intSize), + typ: "slice cap", + off: offset + arch.ptrSize + arch.intSize, + size: arch.intSize, + }) + + case asmString: + addVar(name, asmVar{ + name: name + "_base", + kind: asmKind(arch.ptrSize), + typ: "string base", + off: offset, + size: arch.ptrSize, + }) + addVar(name, asmVar{ + name: name + "_len", + kind: asmKind(arch.intSize), + typ: "string len", + off: offset + arch.ptrSize, + size: arch.intSize, + }) + } + offset += size + } + } + } + + m := make(map[string]*asmFunc) + for _, arch = range arches { + fn = &asmFunc{ + arch: arch, + vars: make(map[string]*asmVar), + varByOffset: make(map[int]*asmVar), + } + offset = 0 + addParams(decl.Type.Params.List) + if decl.Type.Results != nil && len(decl.Type.Results.List) > 0 { + offset += -offset & (arch.ptrSize - 1) + addParams(decl.Type.Results.List) + } + fn.size = offset + m[arch.name] = fn + } + + if failed { + return nil + } + return m +} + +// asmCheckVar checks a single variable reference. +func asmCheckVar(badf func(string, ...interface{}), fn *asmFunc, line, expr string, off int, v *asmVar) { + m := asmOpcode.FindStringSubmatch(line) + if m == nil { + badf("cannot find assembly opcode") + } + + // Determine operand sizes from instruction. + // Typically the suffix suffices, but there are exceptions. + var src, dst, kind asmKind + op := m[1] + switch fn.arch.name + "." + op { + case "386.FMOVLP": + src, dst = 8, 4 + case "arm.MOVD": + src = 8 + case "arm.MOVW": + src = 4 + case "arm.MOVH", "arm.MOVHU": + src = 2 + case "arm.MOVB", "arm.MOVBU": + src = 1 + default: + if fn.arch.name == "386" || fn.arch.name == "amd64" { + if strings.HasPrefix(op, "F") && (strings.HasSuffix(op, "D") || strings.HasSuffix(op, "DP")) { + // FMOVDP, FXCHD, etc + src = 8 + break + } + if strings.HasPrefix(op, "F") && (strings.HasSuffix(op, "F") || strings.HasSuffix(op, "FP")) { + // FMOVFP, FXCHF, etc + src = 4 + break + } + if strings.HasSuffix(op, "SD") { + // MOVSD, SQRTSD, etc + src = 8 + break + } + if strings.HasSuffix(op, "SS") { + // MOVSS, SQRTSS, etc + src = 4 + break + } + if strings.HasPrefix(op, "SET") { + // SETEQ, etc + src = 1 + break + } + switch op[len(op)-1] { + case 'B': + src = 1 + case 'W': + src = 2 + case 'L': + src = 4 + case 'D', 'Q': + src = 8 + } + } + } + if dst == 0 { + dst = src + } + + // Determine whether the match we're holding + // is the first or second argument. + if strings.Index(line, expr) > strings.Index(line, ",") { + kind = dst + } else { + kind = src + } + + vk := v.kind + vt := v.typ + switch vk { + case asmInterface, asmEmptyInterface, asmString, asmSlice: + // allow reference to first word (pointer) + vk = v.inner[0].kind + vt = v.inner[0].typ + } + + if off != v.off { + var inner bytes.Buffer + for i, vi := range v.inner { + if len(v.inner) > 1 { + fmt.Fprintf(&inner, ",") + } + fmt.Fprintf(&inner, " ") + if i == len(v.inner)-1 { + fmt.Fprintf(&inner, "or ") + } + fmt.Fprintf(&inner, "%s+%d(FP)", vi.name, vi.off) + } + badf("invalid offset %s; expected %s+%d(FP)%s", expr, v.name, v.off, inner.String()) + return + } + if kind != 0 && kind != vk { + var inner bytes.Buffer + if len(v.inner) > 0 { + fmt.Fprintf(&inner, " containing") + for i, vi := range v.inner { + if i > 0 && len(v.inner) > 2 { + fmt.Fprintf(&inner, ",") + } + fmt.Fprintf(&inner, " ") + if i > 0 && i == len(v.inner)-1 { + fmt.Fprintf(&inner, "and ") + } + fmt.Fprintf(&inner, "%s+%d(FP)", vi.name, vi.off) + } + } + badf("invalid %s of %s; %s is %d-byte value%s", op, expr, vt, vk, inner.String()) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/assign.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/assign.go new file mode 100644 index 00000000..58123a7d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/assign.go @@ -0,0 +1,44 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +This file contains the code to check for useless assignments. +*/ + +package main + +import ( + "go/ast" + "go/token" + "reflect" +) + +// TODO: should also check for assignments to struct fields inside methods +// that are on T instead of *T. + +// checkAssignStmt checks for assignments of the form " = ". +// These are almost always useless, and even when they aren't they are usually a mistake. +func (f *File) checkAssignStmt(stmt *ast.AssignStmt) { + if !vet("assign") { + return + } + if stmt.Tok != token.ASSIGN { + return // ignore := + } + if len(stmt.Lhs) != len(stmt.Rhs) { + // If LHS and RHS have different cardinality, they can't be the same. + return + } + for i, lhs := range stmt.Lhs { + rhs := stmt.Rhs[i] + if reflect.TypeOf(lhs) != reflect.TypeOf(rhs) { + continue // short-circuit the heavy-weight gofmt check + } + le := f.gofmt(lhs) + re := f.gofmt(rhs) + if le == re { + f.Badf(stmt.Pos(), "self-assignment of %s to %s", re, le) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/atomic.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/atomic.go new file mode 100644 index 00000000..dfe3f03c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/atomic.go @@ -0,0 +1,59 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "go/ast" + "go/token" +) + +// checkAtomicAssignment walks the assignment statement checking for common +// mistaken usage of atomic package, such as: x = atomic.AddUint64(&x, 1) +func (f *File) checkAtomicAssignment(n *ast.AssignStmt) { + if !vet("atomic") { + return + } + + if len(n.Lhs) != len(n.Rhs) { + return + } + + for i, right := range n.Rhs { + call, ok := right.(*ast.CallExpr) + if !ok { + continue + } + sel, ok := call.Fun.(*ast.SelectorExpr) + if !ok { + continue + } + pkg, ok := sel.X.(*ast.Ident) + if !ok || pkg.Name != "atomic" { + continue + } + + switch sel.Sel.Name { + case "AddInt32", "AddInt64", "AddUint32", "AddUint64", "AddUintptr": + f.checkAtomicAddAssignment(n.Lhs[i], call) + } + } +} + +// checkAtomicAddAssignment walks the atomic.Add* method calls checking for assigning the return value +// to the same variable being used in the operation +func (f *File) checkAtomicAddAssignment(left ast.Expr, call *ast.CallExpr) { + arg := call.Args[0] + broken := false + + if uarg, ok := arg.(*ast.UnaryExpr); ok && uarg.Op == token.AND { + broken = f.gofmt(left) == f.gofmt(uarg.X) + } else if star, ok := left.(*ast.StarExpr); ok { + broken = f.gofmt(star.X) == f.gofmt(arg) + } + + if broken { + f.Bad(left.Pos(), "direct assignment to atomic value") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/buildtag.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/buildtag.go new file mode 100644 index 00000000..2d86edf7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/buildtag.go @@ -0,0 +1,91 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "fmt" + "os" + "strings" + "unicode" +) + +var ( + nl = []byte("\n") + slashSlash = []byte("//") + plusBuild = []byte("+build") +) + +// checkBuildTag checks that build tags are in the correct location and well-formed. +func checkBuildTag(name string, data []byte) { + if !vet("buildtags") { + return + } + lines := bytes.SplitAfter(data, nl) + + // Determine cutpoint where +build comments are no longer valid. + // They are valid in leading // comments in the file followed by + // a blank line. + var cutoff int + for i, line := range lines { + line = bytes.TrimSpace(line) + if len(line) == 0 { + cutoff = i + continue + } + if bytes.HasPrefix(line, slashSlash) { + continue + } + break + } + + for i, line := range lines { + line = bytes.TrimSpace(line) + if !bytes.HasPrefix(line, slashSlash) { + continue + } + text := bytes.TrimSpace(line[2:]) + if bytes.HasPrefix(text, plusBuild) { + fields := bytes.Fields(text) + if !bytes.Equal(fields[0], plusBuild) { + // Comment is something like +buildasdf not +build. + fmt.Fprintf(os.Stderr, "%s:%d: possible malformed +build comment\n", name, i+1) + continue + } + if i >= cutoff { + fmt.Fprintf(os.Stderr, "%s:%d: +build comment must appear before package clause and be followed by a blank line\n", name, i+1) + setExit(1) + continue + } + // Check arguments. + Args: + for _, arg := range fields[1:] { + for _, elem := range strings.Split(string(arg), ",") { + if strings.HasPrefix(elem, "!!") { + fmt.Fprintf(os.Stderr, "%s:%d: invalid double negative in build constraint: %s\n", name, i+1, arg) + setExit(1) + break Args + } + if strings.HasPrefix(elem, "!") { + elem = elem[1:] + } + for _, c := range elem { + if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' { + fmt.Fprintf(os.Stderr, "%s:%d: invalid non-alphanumeric build constraint: %s\n", name, i+1, arg) + setExit(1) + break Args + } + } + } + } + continue + } + // Comment with +build but not at beginning. + if bytes.Contains(line, plusBuild) && i < cutoff { + fmt.Fprintf(os.Stderr, "%s:%d: possible malformed +build comment\n", name, i+1) + continue + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/composite.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/composite.go new file mode 100644 index 00000000..879e6ce6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/composite.go @@ -0,0 +1,121 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the test for unkeyed struct literals. + +package main + +import ( + "flag" + "go/ast" + "strings" + + "code.google.com/p/go.tools/cmd/vet/whitelist" +) + +var compositeWhiteList = flag.Bool("compositewhitelist", true, "use composite white list; for testing only") + +// checkUnkeyedLiteral checks if a composite literal is a struct literal with +// unkeyed fields. +func (f *File) checkUnkeyedLiteral(c *ast.CompositeLit) { + if !vet("composites") { + return + } + + typ := c.Type + for { + if typ1, ok := c.Type.(*ast.ParenExpr); ok { + typ = typ1 + continue + } + break + } + + switch typ.(type) { + case *ast.ArrayType: + return + case *ast.MapType: + return + case *ast.StructType: + return // a literal struct type does not need to use keys + case *ast.Ident: + // A simple type name like t or T does not need keys either, + // since it is almost certainly declared in the current package. + // (The exception is names being used via import . "pkg", but + // those are already breaking the Go 1 compatibility promise, + // so not reporting potential additional breakage seems okay.) + return + } + + // Otherwise the type is a selector like pkg.Name. + // We only care if pkg.Name is a struct, not if it's a map, array, or slice. + isStruct, typeString := f.pkg.isStruct(c) + if !isStruct { + return + } + + if typeString == "" { // isStruct doesn't know + typeString = f.gofmt(typ) + } + + // It's a struct, or we can't tell it's not a struct because we don't have types. + + // Check if the CompositeLit contains an unkeyed field. + allKeyValue := true + for _, e := range c.Elts { + if _, ok := e.(*ast.KeyValueExpr); !ok { + allKeyValue = false + break + } + } + if allKeyValue { + return + } + + // Check that the CompositeLit's type has the form pkg.Typ. + s, ok := c.Type.(*ast.SelectorExpr) + if !ok { + return + } + pkg, ok := s.X.(*ast.Ident) + if !ok { + return + } + + // Convert the package name to an import path, and compare to a whitelist. + path := pkgPath(f, pkg.Name) + if path == "" { + f.Badf(c.Pos(), "unresolvable package for %s.%s literal", pkg.Name, s.Sel.Name) + return + } + typeName := path + "." + s.Sel.Name + if *compositeWhiteList && whitelist.UnkeyedLiteral[typeName] { + return + } + + f.Bad(c.Pos(), typeString+" composite literal uses unkeyed fields") +} + +// pkgPath returns the import path "image/png" for the package name "png". +// +// This is based purely on syntax and convention, and not on the imported +// package's contents. It will be incorrect if a package name differs from the +// leaf element of the import path, or if the package was a dot import. +func pkgPath(f *File, pkgName string) (path string) { + for _, x := range f.file.Imports { + s := strings.Trim(x.Path.Value, `"`) + if x.Name != nil { + // Catch `import pkgName "foo/bar"`. + if x.Name.Name == pkgName { + return s + } + } else { + // Catch `import "pkgName"` or `import "foo/bar/pkgName"`. + if s == pkgName || strings.HasSuffix(s, "/"+pkgName) { + return s + } + } + } + return "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/copylock.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/copylock.go new file mode 100644 index 00000000..31651eff --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/copylock.go @@ -0,0 +1,101 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the code to check that locks are not passed by value. + +package main + +import ( + "bytes" + "fmt" + "go/ast" + + "code.google.com/p/go.tools/go/types" +) + +// checkCopyLocks checks whether a function might +// inadvertently copy a lock, by checking whether +// its receiver, parameters, or return values +// are locks. +func (f *File) checkCopyLocks(d *ast.FuncDecl) { + if !vet("copylocks") { + return + } + + if d.Recv != nil && len(d.Recv.List) > 0 { + expr := d.Recv.List[0].Type + if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { + f.Badf(expr.Pos(), "%s passes Lock by value: %v", d.Name.Name, path) + } + } + + if d.Type.Params != nil { + for _, field := range d.Type.Params.List { + expr := field.Type + if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { + f.Badf(expr.Pos(), "%s passes Lock by value: %v", d.Name.Name, path) + } + } + } + + if d.Type.Results != nil { + for _, field := range d.Type.Results.List { + expr := field.Type + if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { + f.Badf(expr.Pos(), "%s returns Lock by value: %v", d.Name.Name, path) + } + } + } +} + +type typePath []types.Type + +// pathString pretty-prints a typePath. +func (path typePath) String() string { + n := len(path) + var buf bytes.Buffer + for i := range path { + if i > 0 { + fmt.Fprint(&buf, " contains ") + } + // The human-readable path is in reverse order, outermost to innermost. + fmt.Fprint(&buf, path[n-i-1].String()) + } + return buf.String() +} + +// lockPath returns a typePath describing the location of a lock value +// contained in typ. If there is no contained lock, it returns nil. +func lockPath(tpkg *types.Package, typ types.Type) typePath { + if typ == nil { + return nil + } + + // We're only interested in the case in which the underlying + // type is a struct. (Interfaces and pointers are safe to copy.) + styp, ok := typ.Underlying().(*types.Struct) + if !ok { + return nil + } + + // We're looking for cases in which a reference to this type + // can be locked, but a value cannot. This differentiates + // embedded interfaces from embedded values. + if plock := types.NewMethodSet(types.NewPointer(typ)).Lookup(tpkg, "Lock"); plock != nil { + if lock := types.NewMethodSet(typ).Lookup(tpkg, "Lock"); lock == nil { + return []types.Type{typ} + } + } + + nfields := styp.NumFields() + for i := 0; i < nfields; i++ { + ftyp := styp.Field(i).Type() + subpath := lockPath(tpkg, ftyp) + if subpath != nil { + return append(subpath, typ) + } + } + + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/deadcode.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/deadcode.go new file mode 100644 index 00000000..a956930c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/deadcode.go @@ -0,0 +1,280 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Check for syntactically unreachable code. + +package main + +import ( + "go/ast" + "go/token" +) + +type deadState struct { + f *File + hasBreak map[ast.Stmt]bool + hasGoto map[string]bool + labels map[string]ast.Stmt + breakTarget ast.Stmt + + reachable bool +} + +// checkUnreachable checks a function body for dead code. +func (f *File) checkUnreachable(body *ast.BlockStmt) { + if !vet("unreachable") || body == nil { + return + } + + d := &deadState{ + f: f, + hasBreak: make(map[ast.Stmt]bool), + hasGoto: make(map[string]bool), + labels: make(map[string]ast.Stmt), + } + + d.findLabels(body) + + d.reachable = true + d.findDead(body) +} + +// findLabels gathers information about the labels defined and used by stmt +// and about which statements break, whether a label is involved or not. +func (d *deadState) findLabels(stmt ast.Stmt) { + switch x := stmt.(type) { + default: + d.f.Warnf(x.Pos(), "internal error in findLabels: unexpected statement %T", x) + + case *ast.AssignStmt, + *ast.BadStmt, + *ast.DeclStmt, + *ast.DeferStmt, + *ast.EmptyStmt, + *ast.ExprStmt, + *ast.GoStmt, + *ast.IncDecStmt, + *ast.ReturnStmt, + *ast.SendStmt: + // no statements inside + + case *ast.BlockStmt: + for _, stmt := range x.List { + d.findLabels(stmt) + } + + case *ast.BranchStmt: + switch x.Tok { + case token.GOTO: + d.hasGoto[x.Label.Name] = true + + case token.BREAK: + stmt := d.breakTarget + if x.Label != nil { + stmt = d.labels[x.Label.Name] + } + if stmt != nil { + d.hasBreak[stmt] = true + } + } + + case *ast.IfStmt: + d.findLabels(x.Body) + if x.Else != nil { + d.findLabels(x.Else) + } + + case *ast.LabeledStmt: + d.labels[x.Label.Name] = x.Stmt + d.findLabels(x.Stmt) + + // These cases are all the same, but the x.Body only works + // when the specific type of x is known, so the cases cannot + // be merged. + case *ast.ForStmt: + outer := d.breakTarget + d.breakTarget = x + d.findLabels(x.Body) + d.breakTarget = outer + + case *ast.RangeStmt: + outer := d.breakTarget + d.breakTarget = x + d.findLabels(x.Body) + d.breakTarget = outer + + case *ast.SelectStmt: + outer := d.breakTarget + d.breakTarget = x + d.findLabels(x.Body) + d.breakTarget = outer + + case *ast.SwitchStmt: + outer := d.breakTarget + d.breakTarget = x + d.findLabels(x.Body) + d.breakTarget = outer + + case *ast.TypeSwitchStmt: + outer := d.breakTarget + d.breakTarget = x + d.findLabels(x.Body) + d.breakTarget = outer + + case *ast.CommClause: + for _, stmt := range x.Body { + d.findLabels(stmt) + } + + case *ast.CaseClause: + for _, stmt := range x.Body { + d.findLabels(stmt) + } + } +} + +// findDead walks the statement looking for dead code. +// If d.reachable is false on entry, stmt itself is dead. +// When findDead returns, d.reachable tells whether the +// statement following stmt is reachable. +func (d *deadState) findDead(stmt ast.Stmt) { + // Is this a labeled goto target? + // If so, assume it is reachable due to the goto. + // This is slightly conservative, in that we don't + // check that the goto is reachable, so + // L: goto L + // will not provoke a warning. + // But it's good enough. + if x, isLabel := stmt.(*ast.LabeledStmt); isLabel && d.hasGoto[x.Label.Name] { + d.reachable = true + } + + if !d.reachable { + switch stmt.(type) { + case *ast.EmptyStmt: + // do not warn about unreachable empty statements + default: + d.f.Bad(stmt.Pos(), "unreachable code") + d.reachable = true // silence error about next statement + } + } + + switch x := stmt.(type) { + default: + d.f.Warnf(x.Pos(), "internal error in findDead: unexpected statement %T", x) + + case *ast.AssignStmt, + *ast.BadStmt, + *ast.DeclStmt, + *ast.DeferStmt, + *ast.EmptyStmt, + *ast.GoStmt, + *ast.IncDecStmt, + *ast.SendStmt: + // no control flow + + case *ast.BlockStmt: + for _, stmt := range x.List { + d.findDead(stmt) + } + + case *ast.BranchStmt: + switch x.Tok { + case token.BREAK, token.GOTO, token.FALLTHROUGH: + d.reachable = false + case token.CONTINUE: + // NOTE: We accept "continue" statements as terminating. + // They are not necessary in the spec definition of terminating, + // because a continue statement cannot be the final statement + // before a return. But for the more general problem of syntactically + // identifying dead code, continue redirects control flow just + // like the other terminating statements. + d.reachable = false + } + + case *ast.ExprStmt: + // Call to panic? + call, ok := x.X.(*ast.CallExpr) + if ok { + name, ok := call.Fun.(*ast.Ident) + if ok && name.Name == "panic" && name.Obj == nil { + d.reachable = false + } + } + + case *ast.ForStmt: + d.findDead(x.Body) + d.reachable = x.Cond != nil || d.hasBreak[x] + + case *ast.IfStmt: + d.findDead(x.Body) + if x.Else != nil { + r := d.reachable + d.reachable = true + d.findDead(x.Else) + d.reachable = d.reachable || r + } else { + // might not have executed if statement + d.reachable = true + } + + case *ast.LabeledStmt: + d.findDead(x.Stmt) + + case *ast.RangeStmt: + d.findDead(x.Body) + d.reachable = true + + case *ast.ReturnStmt: + d.reachable = false + + case *ast.SelectStmt: + // NOTE: Unlike switch and type switch below, we don't care + // whether a select has a default, because a select without a + // default blocks until one of the cases can run. That's different + // from a switch without a default, which behaves like it has + // a default with an empty body. + anyReachable := false + for _, comm := range x.Body.List { + d.reachable = true + for _, stmt := range comm.(*ast.CommClause).Body { + d.findDead(stmt) + } + anyReachable = anyReachable || d.reachable + } + d.reachable = anyReachable || d.hasBreak[x] + + case *ast.SwitchStmt: + anyReachable := false + hasDefault := false + for _, cas := range x.Body.List { + cc := cas.(*ast.CaseClause) + if cc.List == nil { + hasDefault = true + } + d.reachable = true + for _, stmt := range cc.Body { + d.findDead(stmt) + } + anyReachable = anyReachable || d.reachable + } + d.reachable = anyReachable || d.hasBreak[x] || !hasDefault + + case *ast.TypeSwitchStmt: + anyReachable := false + hasDefault := false + for _, cas := range x.Body.List { + cc := cas.(*ast.CaseClause) + if cc.List == nil { + hasDefault = true + } + d.reachable = true + for _, stmt := range cc.Body { + d.findDead(stmt) + } + anyReachable = anyReachable || d.reachable + } + d.reachable = anyReachable || d.hasBreak[x] || !hasDefault + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/doc.go new file mode 100644 index 00000000..72832da9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/doc.go @@ -0,0 +1,159 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + +Vet examines Go source code and reports suspicious constructs, such as Printf +calls whose arguments do not align with the format string. Vet uses heuristics +that do not guarantee all reports are genuine problems, but it can find errors +not caught by the compilers. + +It can be invoked three ways: + +By package, from the go tool: + go vet package/path/name +vets the package whose path is provided. + +By files: + go tool vet source/directory/*.go +vets the files named, all of which must be in the same package. + +By directory: + go tool vet source/directory +recursively descends the directory, vetting each file in isolation. +Package-level type-checking is disabled, so the vetting is weaker. + +Vet's exit code is 2 for erroneous invocation of the tool, 1 if a +problem was reported, and 0 otherwise. Note that the tool does not +check every possible problem and depends on unreliable heuristics +so it should be used as guidance only, not as a firm indicator of +program correctness. + +By default all checks are performed. If any flags are explicitly set +to true, only those tests are run. Conversely, if any flag is +explicitly set to false, only those tests are disabled. +Thus -printf=true runs the printf check, -printf=false runs all checks +except the printf check. + +Available checks: + +1. Printf family + +Flag -printf + +Suspicious calls to functions in the Printf family, including any functions +with these names: + Print Printf Println + Fprint Fprintf Fprintln + Sprint Sprintf Sprintln + Error Errorf + Fatal Fatalf + Panic Panicf Panicln +If the function name ends with an 'f', the function is assumed to take +a format descriptor string in the manner of fmt.Printf. If not, vet +complains about arguments that look like format descriptor strings. + +It also checks for errors such as using a Writer as the first argument of +Printf. + +2. Methods + +Flag -methods + +Non-standard signatures for methods with familiar names, including: + Format GobEncode GobDecode MarshalJSON MarshalXML + Peek ReadByte ReadFrom ReadRune Scan Seek + UnmarshalJSON UnreadByte UnreadRune WriteByte + WriteTo + +3. Struct tags + +Flag -structtags + +Struct tags that do not follow the format understood by reflect.StructTag.Get. + +4. Unkeyed composite literals + +Flag -composites + +Composite struct literals that do not use the field-keyed syntax. + +5. Assembly declarations + +Flag -asmdecl + +Mismatches between assembly files and Go function declarations. + +6. Useless assignments + +Flag -assign + +Check for useless assignments. + +7. Atomic mistakes + +Flag -atomic + +Common mistaken usages of the sync/atomic package. + +8. Build tags + +Flag -buildtags + +Badly formed or misplaced +build tags. + +9. Copying locks + +Flag -copylocks + +Locks that are erroneously passed by value. + +10. Nil function comparison + +Flag -nilfunc + +Comparisons between functions and nil. + +11. Range loop variables + +Flag -rangeloops + +Incorrect uses of range loop variables in closures. + +12. Unreachable code + +Flag -unreachable + +Unreachable code. + +13. Shadowed variables + +Flag -shadow=false (experimental; must be set explicitly) + +Variables that may have been unintentionally shadowed. + + +Other flags + +These flags configure the behavior of vet: + + -all (default true) + Check everything; disabled if any explicit check is requested. + -v + Verbose mode + -printfuncs + A comma-separated list of print-like functions to supplement + the standard list. Each entry is in the form Name:N where N + is the zero-based argument position of the first argument + involved in the print: either the format or the first print + argument for non-formatted prints. For example, + if you have Warn and Warnf functions that take an + io.Writer as their first argument, like Fprintf, + -printfuncs=Warn:1,Warnf:1 + -shadowstrict + Whether to be strict about shadowing; can be noisy. + -test + For testing only: sets -all and -shadow. +*/ +package main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/main.go new file mode 100644 index 00000000..b915da32 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/main.go @@ -0,0 +1,562 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Vet is a simple checker for static errors in Go source code. +// See doc.go for more information. +package main + +import ( + "bytes" + "flag" + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/printer" + "go/token" + "io/ioutil" + "os" + "path/filepath" + "strconv" + "strings" + + _ "code.google.com/p/go.tools/go/gcimporter" + "code.google.com/p/go.tools/go/types" +) + +// TODO: Need a flag to set build tags when parsing the package. + +var verbose = flag.Bool("v", false, "verbose") +var strictShadowing = flag.Bool("shadowstrict", false, "whether to be strict about shadowing; can be noisy") +var testFlag = flag.Bool("test", false, "for testing only: sets -all and -shadow") +var exitCode = 0 + +// "all" is here only for the appearance of backwards compatibility. +// It has no effect; the triState flags do the work. +var all = flag.Bool("all", true, "check everything; disabled if any explicit check is requested") + +// Flags to control which individual checks to perform. +var report = map[string]*triState{ + "asmdecl": triStateFlag("asmdecl", unset, "check assembly against Go declarations"), + "assign": triStateFlag("assign", unset, "check for useless assignments"), + "atomic": triStateFlag("atomic", unset, "check for common mistaken usages of the sync/atomic package"), + "buildtags": triStateFlag("buildtags", unset, "check that +build tags are valid"), + "composites": triStateFlag("composites", unset, "check that composite literals used field-keyed elements"), + "copylocks": triStateFlag("copylocks", unset, "check that locks are not passed by value"), + "methods": triStateFlag("methods", unset, "check that canonically named methods are canonically defined"), + "nilfunc": triStateFlag("nilfunc", unset, "check for comparisons between functions and nil"), + "printf": triStateFlag("printf", unset, "check printf-like invocations"), + "rangeloops": triStateFlag("rangeloops", unset, "check that range loop variables are used correctly"), + "shadow": triStateFlag("shadow", unset, "check for shadowed variables (experimental; must be set explicitly)"), + "structtags": triStateFlag("structtags", unset, "check that struct field tags have canonical format"), + "unreachable": triStateFlag("unreachable", unset, "check for unreachable code"), +} + +// experimental records the flags enabling experimental features. These must be +// requested explicitly; they are not enabled by -all. +var experimental = map[string]bool{ + "shadow": true, +} + +// setTrueCount record how many flags are explicitly set to true. +var setTrueCount int + +// A triState is a boolean that knows whether it has been set to either true or false. +// It is used to identify if a flag appears; the standard boolean flag cannot +// distinguish missing from unset. It also satisfies flag.Value. +type triState int + +const ( + unset triState = iota + setTrue + setFalse +) + +func triStateFlag(name string, value triState, usage string) *triState { + flag.Var(&value, name, usage) + return &value +} + +// triState implements flag.Value, flag.Getter, and flag.boolFlag. +// They work like boolean flags: we can say vet -printf as well as vet -printf=true +func (ts *triState) Get() interface{} { + return *ts == setTrue +} + +func (ts triState) isTrue() bool { + return ts == setTrue +} + +func (ts *triState) Set(value string) error { + b, err := strconv.ParseBool(value) + if err != nil { + return err + } + if b { + *ts = setTrue + setTrueCount++ + } else { + *ts = setFalse + } + return nil +} + +func (ts *triState) String() string { + switch *ts { + case unset: + return "unset" + case setTrue: + return "true" + case setFalse: + return "false" + } + panic("not reached") +} + +func (ts triState) IsBoolFlag() bool { + return true +} + +// vet tells whether to report errors for the named check, a flag name. +func vet(name string) bool { + if *testFlag { + return true + } + return report[name].isTrue() +} + +// setExit sets the value for os.Exit when it is called, later. It +// remembers the highest value. +func setExit(err int) { + if err > exitCode { + exitCode = err + } +} + +// Usage is a replacement usage function for the flags package. +func Usage() { + fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0]) + fmt.Fprintf(os.Stderr, "\tvet [flags] directory...\n") + fmt.Fprintf(os.Stderr, "\tvet [flags] files... # Must be a single package\n") + fmt.Fprintf(os.Stderr, "For more information run\n") + fmt.Fprintf(os.Stderr, "\tgodoc code.google.com/p/go.tools/cmd/vet\n\n") + fmt.Fprintf(os.Stderr, "Flags:\n") + flag.PrintDefaults() + os.Exit(2) +} + +// File is a wrapper for the state of a file used in the parser. +// The parse tree walkers are all methods of this type. +type File struct { + pkg *Package + fset *token.FileSet + name string + content []byte + file *ast.File + b bytes.Buffer // for use by methods + + // The last "String() string" method receiver we saw while walking. + // This is used by the recursiveStringer method in print.go. + lastStringerReceiver *ast.Object +} + +func main() { + flag.Usage = Usage + flag.Parse() + + // If any flag is set, we run only those checks requested. + // If no flags are set true, set all the non-experimental ones not explicitly set (in effect, set the "-all" flag). + if setTrueCount == 0 { + for name, setting := range report { + if *setting == unset && !experimental[name] { + *setting = setTrue + } + } + } + + if *printfuncs != "" { + for _, name := range strings.Split(*printfuncs, ",") { + if len(name) == 0 { + flag.Usage() + } + skip := 0 + if colon := strings.LastIndex(name, ":"); colon > 0 { + var err error + skip, err = strconv.Atoi(name[colon+1:]) + if err != nil { + errorf(`illegal format for "Func:N" argument %q; %s`, name, err) + } + name = name[:colon] + } + name = strings.ToLower(name) + if name[len(name)-1] == 'f' { + printfList[name] = skip + } else { + printList[name] = skip + } + } + } + + if flag.NArg() == 0 { + Usage() + } + dirs := false + files := false + for _, name := range flag.Args() { + // Is it a directory? + fi, err := os.Stat(name) + if err != nil { + warnf("error walking tree: %s", err) + continue + } + if fi.IsDir() { + dirs = true + } else { + files = true + } + } + if dirs && files { + Usage() + } + if dirs { + for _, name := range flag.Args() { + walkDir(name) + } + return + } + if !doPackage(".", flag.Args()) { + warnf("no files checked") + } + os.Exit(exitCode) +} + +// prefixDirectory places the directory name on the beginning of each name in the list. +func prefixDirectory(directory string, names []string) { + if directory != "." { + for i, name := range names { + names[i] = filepath.Join(directory, name) + } + } +} + +// doPackageDir analyzes the single package found in the directory, if there is one, +// plus a test package, if there is one. +func doPackageDir(directory string) { + pkg, err := build.Default.ImportDir(directory, 0) + if err != nil { + // If it's just that there are no go source files, that's fine. + if _, nogo := err.(*build.NoGoError); nogo { + return + } + // Non-fatal: we are doing a recursive walk and there may be other directories. + warnf("cannot process directory %s: %s", directory, err) + return + } + var names []string + names = append(names, pkg.GoFiles...) + names = append(names, pkg.CgoFiles...) + names = append(names, pkg.TestGoFiles...) // These are also in the "foo" package. + names = append(names, pkg.SFiles...) + prefixDirectory(directory, names) + doPackage(directory, names) + // Is there also a "foo_test" package? If so, do that one as well. + if len(pkg.XTestGoFiles) > 0 { + names = pkg.XTestGoFiles + prefixDirectory(directory, names) + doPackage(directory, names) + } +} + +type Package struct { + path string + defs map[*ast.Ident]types.Object + uses map[*ast.Ident]types.Object + types map[ast.Expr]types.TypeAndValue + spans map[types.Object]Span + files []*File + typesPkg *types.Package +} + +// doPackage analyzes the single package constructed from the named files. +// It returns whether any files were checked. +func doPackage(directory string, names []string) bool { + var files []*File + var astFiles []*ast.File + fs := token.NewFileSet() + for _, name := range names { + f, err := os.Open(name) + if err != nil { + // Warn but continue to next package. + warnf("%s: %s", name, err) + return false + } + defer f.Close() + data, err := ioutil.ReadAll(f) + if err != nil { + warnf("%s: %s", name, err) + return false + } + checkBuildTag(name, data) + var parsedFile *ast.File + if strings.HasSuffix(name, ".go") { + parsedFile, err = parser.ParseFile(fs, name, bytes.NewReader(data), 0) + if err != nil { + warnf("%s: %s", name, err) + return false + } + astFiles = append(astFiles, parsedFile) + } + files = append(files, &File{fset: fs, content: data, name: name, file: parsedFile}) + } + if len(astFiles) == 0 { + return false + } + pkg := new(Package) + pkg.path = astFiles[0].Name.Name + pkg.files = files + // Type check the package. + err := pkg.check(fs, astFiles) + if err != nil && *verbose { + warnf("%s", err) + } + for _, file := range files { + file.pkg = pkg + if file.file != nil { + file.walkFile(file.name, file.file) + } + } + asmCheck(pkg) + return true +} + +func visit(path string, f os.FileInfo, err error) error { + if err != nil { + warnf("walk error: %s", err) + return err + } + // One package per directory. Ignore the files themselves. + if !f.IsDir() { + return nil + } + doPackageDir(path) + return nil +} + +func (pkg *Package) hasFileWithSuffix(suffix string) bool { + for _, f := range pkg.files { + if strings.HasSuffix(f.name, suffix) { + return true + } + } + return false +} + +// walkDir recursively walks the tree looking for Go packages. +func walkDir(root string) { + filepath.Walk(root, visit) +} + +// errorf formats the error to standard error, adding program +// identification and a newline, and exits. +func errorf(format string, args ...interface{}) { + fmt.Fprintf(os.Stderr, "vet: "+format+"\n", args...) + os.Exit(2) +} + +// warnf formats the error to standard error, adding program +// identification and a newline, but does not exit. +func warnf(format string, args ...interface{}) { + fmt.Fprintf(os.Stderr, "vet: "+format+"\n", args...) + setExit(1) +} + +// Println is fmt.Println guarded by -v. +func Println(args ...interface{}) { + if !*verbose { + return + } + fmt.Println(args...) +} + +// Printf is fmt.Printf guarded by -v. +func Printf(format string, args ...interface{}) { + if !*verbose { + return + } + fmt.Printf(format+"\n", args...) +} + +// Bad reports an error and sets the exit code.. +func (f *File) Bad(pos token.Pos, args ...interface{}) { + f.Warn(pos, args...) + setExit(1) +} + +// Badf reports a formatted error and sets the exit code. +func (f *File) Badf(pos token.Pos, format string, args ...interface{}) { + f.Warnf(pos, format, args...) + setExit(1) +} + +// loc returns a formatted representation of the position. +func (f *File) loc(pos token.Pos) string { + if pos == token.NoPos { + return "" + } + // Do not print columns. Because the pos often points to the start of an + // expression instead of the inner part with the actual error, the + // precision can mislead. + posn := f.fset.Position(pos) + return fmt.Sprintf("%s:%d", posn.Filename, posn.Line) +} + +// Warn reports an error but does not set the exit code. +func (f *File) Warn(pos token.Pos, args ...interface{}) { + fmt.Fprint(os.Stderr, f.loc(pos)+": "+fmt.Sprintln(args...)) +} + +// Warnf reports a formatted error but does not set the exit code. +func (f *File) Warnf(pos token.Pos, format string, args ...interface{}) { + fmt.Fprintf(os.Stderr, f.loc(pos)+": "+format+"\n", args...) +} + +// walkFile walks the file's tree. +func (f *File) walkFile(name string, file *ast.File) { + Println("Checking file", name) + ast.Walk(f, file) +} + +// Visit implements the ast.Visitor interface. +func (f *File) Visit(node ast.Node) ast.Visitor { + switch n := node.(type) { + case *ast.AssignStmt: + f.walkAssignStmt(n) + case *ast.BinaryExpr: + f.walkBinaryExpr(n) + case *ast.CallExpr: + f.walkCallExpr(n) + case *ast.CompositeLit: + f.walkCompositeLit(n) + case *ast.Field: + f.walkFieldTag(n) + case *ast.FuncDecl: + f.walkFuncDecl(n) + case *ast.FuncLit: + f.walkFuncLit(n) + case *ast.GenDecl: + f.walkGenDecl(n) + case *ast.InterfaceType: + f.walkInterfaceType(n) + case *ast.RangeStmt: + f.walkRangeStmt(n) + } + return f +} + +// walkAssignStmt walks an assignment statement +func (f *File) walkAssignStmt(stmt *ast.AssignStmt) { + f.checkAssignStmt(stmt) + f.checkAtomicAssignment(stmt) + f.checkShadowAssignment(stmt) +} + +func (f *File) walkBinaryExpr(expr *ast.BinaryExpr) { + f.checkNilFuncComparison(expr) +} + +// walkCall walks a call expression. +func (f *File) walkCall(call *ast.CallExpr, name string) { + f.checkFmtPrintfCall(call, name) +} + +// walkCallExpr walks a call expression. +func (f *File) walkCallExpr(call *ast.CallExpr) { + switch x := call.Fun.(type) { + case *ast.Ident: + f.walkCall(call, x.Name) + case *ast.SelectorExpr: + f.walkCall(call, x.Sel.Name) + } +} + +// walkCompositeLit walks a composite literal. +func (f *File) walkCompositeLit(c *ast.CompositeLit) { + f.checkUnkeyedLiteral(c) +} + +// walkFieldTag walks a struct field tag. +func (f *File) walkFieldTag(field *ast.Field) { + if field.Tag == nil { + return + } + f.checkCanonicalFieldTag(field) +} + +// walkMethod walks the method's signature. +func (f *File) walkMethod(id *ast.Ident, t *ast.FuncType) { + f.checkCanonicalMethod(id, t) +} + +// walkFuncDecl walks a function declaration. +func (f *File) walkFuncDecl(d *ast.FuncDecl) { + f.checkUnreachable(d.Body) + if d.Recv != nil { + f.walkMethod(d.Name, d.Type) + } + f.prepStringerReceiver(d) + f.checkCopyLocks(d) +} + +// prepStringerReceiver checks whether the given declaration is a fmt.Stringer +// implementation, and if so sets the File's lastStringerReceiver field to the +// declaration's receiver object. +func (f *File) prepStringerReceiver(d *ast.FuncDecl) { + if !f.isStringer(d) { + return + } + if l := d.Recv.List; len(l) == 1 { + if n := l[0].Names; len(n) == 1 { + f.lastStringerReceiver = n[0].Obj + } + } +} + +// isStringer returns true if the provided declaration is a "String() string" +// method; an implementation of fmt.Stringer. +func (f *File) isStringer(d *ast.FuncDecl) bool { + return d.Recv != nil && d.Name.Name == "String" && d.Type.Results != nil && + len(d.Type.Params.List) == 0 && len(d.Type.Results.List) == 1 && + f.pkg.types[d.Type.Results.List[0].Type].Type == types.Typ[types.String] +} + +// walkGenDecl walks a general declaration. +func (f *File) walkGenDecl(d *ast.GenDecl) { + f.checkShadowDecl(d) +} + +// walkFuncLit walks a function literal. +func (f *File) walkFuncLit(x *ast.FuncLit) { + f.checkUnreachable(x.Body) +} + +// walkInterfaceType walks the method signatures of an interface. +func (f *File) walkInterfaceType(t *ast.InterfaceType) { + for _, field := range t.Methods.List { + for _, id := range field.Names { + f.walkMethod(id, field.Type.(*ast.FuncType)) + } + } +} + +// walkRangeStmt walks a range statement. +func (f *File) walkRangeStmt(n *ast.RangeStmt) { + checkRangeLoop(f, n) +} + +// gofmt returns a string representation of the expression. +func (f *File) gofmt(x ast.Expr) string { + f.b.Reset() + printer.Fprint(&f.b, f.fset, x) + return f.b.String() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/method.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/method.go new file mode 100644 index 00000000..89565c94 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/method.go @@ -0,0 +1,163 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the code to check canonical methods. + +package main + +import ( + "fmt" + "go/ast" + "go/printer" + "strings" +) + +type MethodSig struct { + args []string + results []string +} + +// canonicalMethods lists the input and output types for Go methods +// that are checked using dynamic interface checks. Because the +// checks are dynamic, such methods would not cause a compile error +// if they have the wrong signature: instead the dynamic check would +// fail, sometimes mysteriously. If a method is found with a name listed +// here but not the input/output types listed here, vet complains. +// +// A few of the canonical methods have very common names. +// For example, a type might implement a Scan method that +// has nothing to do with fmt.Scanner, but we still want to check +// the methods that are intended to implement fmt.Scanner. +// To do that, the arguments that have a = prefix are treated as +// signals that the canonical meaning is intended: if a Scan +// method doesn't have a fmt.ScanState as its first argument, +// we let it go. But if it does have a fmt.ScanState, then the +// rest has to match. +var canonicalMethods = map[string]MethodSig{ + // "Flush": {{}, {"error"}}, // http.Flusher and jpeg.writer conflict + "Format": {[]string{"=fmt.State", "rune"}, []string{}}, // fmt.Formatter + "GobDecode": {[]string{"[]byte"}, []string{"error"}}, // gob.GobDecoder + "GobEncode": {[]string{}, []string{"[]byte", "error"}}, // gob.GobEncoder + "MarshalJSON": {[]string{}, []string{"[]byte", "error"}}, // json.Marshaler + "MarshalXML": {[]string{"*xml.Encoder", "xml.StartElement"}, []string{"error"}}, // xml.Marshaler + "Peek": {[]string{"=int"}, []string{"[]byte", "error"}}, // image.reader (matching bufio.Reader) + "ReadByte": {[]string{}, []string{"byte", "error"}}, // io.ByteReader + "ReadFrom": {[]string{"=io.Reader"}, []string{"int64", "error"}}, // io.ReaderFrom + "ReadRune": {[]string{}, []string{"rune", "int", "error"}}, // io.RuneReader + "Scan": {[]string{"=fmt.ScanState", "rune"}, []string{"error"}}, // fmt.Scanner + "Seek": {[]string{"=int64", "int"}, []string{"int64", "error"}}, // io.Seeker + "UnmarshalJSON": {[]string{"[]byte"}, []string{"error"}}, // json.Unmarshaler + "UnmarshalXML": {[]string{"*xml.Decoder", "xml.StartElement"}, []string{"error"}}, // xml.Unmarshaler + "UnreadByte": {[]string{}, []string{"error"}}, + "UnreadRune": {[]string{}, []string{"error"}}, + "WriteByte": {[]string{"byte"}, []string{"error"}}, // jpeg.writer (matching bufio.Writer) + "WriteTo": {[]string{"=io.Writer"}, []string{"int64", "error"}}, // io.WriterTo +} + +func (f *File) checkCanonicalMethod(id *ast.Ident, t *ast.FuncType) { + if !vet("methods") { + return + } + // Expected input/output. + expect, ok := canonicalMethods[id.Name] + if !ok { + return + } + + // Actual input/output + args := typeFlatten(t.Params.List) + var results []ast.Expr + if t.Results != nil { + results = typeFlatten(t.Results.List) + } + + // Do the =s (if any) all match? + if !f.matchParams(expect.args, args, "=") || !f.matchParams(expect.results, results, "=") { + return + } + + // Everything must match. + if !f.matchParams(expect.args, args, "") || !f.matchParams(expect.results, results, "") { + expectFmt := id.Name + "(" + argjoin(expect.args) + ")" + if len(expect.results) == 1 { + expectFmt += " " + argjoin(expect.results) + } else if len(expect.results) > 1 { + expectFmt += " (" + argjoin(expect.results) + ")" + } + + f.b.Reset() + if err := printer.Fprint(&f.b, f.fset, t); err != nil { + fmt.Fprintf(&f.b, "<%s>", err) + } + actual := f.b.String() + actual = strings.TrimPrefix(actual, "func") + actual = id.Name + actual + + f.Badf(id.Pos(), "method %s should have signature %s", actual, expectFmt) + } +} + +func argjoin(x []string) string { + y := make([]string, len(x)) + for i, s := range x { + if s[0] == '=' { + s = s[1:] + } + y[i] = s + } + return strings.Join(y, ", ") +} + +// Turn parameter list into slice of types +// (in the ast, types are Exprs). +// Have to handle f(int, bool) and f(x, y, z int) +// so not a simple 1-to-1 conversion. +func typeFlatten(l []*ast.Field) []ast.Expr { + var t []ast.Expr + for _, f := range l { + if len(f.Names) == 0 { + t = append(t, f.Type) + continue + } + for _ = range f.Names { + t = append(t, f.Type) + } + } + return t +} + +// Does each type in expect with the given prefix match the corresponding type in actual? +func (f *File) matchParams(expect []string, actual []ast.Expr, prefix string) bool { + for i, x := range expect { + if !strings.HasPrefix(x, prefix) { + continue + } + if i >= len(actual) { + return false + } + if !f.matchParamType(x, actual[i]) { + return false + } + } + if prefix == "" && len(actual) > len(expect) { + return false + } + return true +} + +// Does this one type match? +func (f *File) matchParamType(expect string, actual ast.Expr) bool { + if strings.HasPrefix(expect, "=") { + expect = expect[1:] + } + // Strip package name if we're in that package. + if n := len(f.file.Name.Name); len(expect) > n && expect[:n] == f.file.Name.Name && expect[n] == '.' { + expect = expect[n+1:] + } + + // Overkill but easy. + f.b.Reset() + printer.Fprint(&f.b, f.fset, actual) + return f.b.String() == expect +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/nilfunc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/nilfunc.go new file mode 100644 index 00000000..922ecc37 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/nilfunc.go @@ -0,0 +1,63 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +This file contains the code to check for useless function comparisons. +A useless comparison is one like f == nil as opposed to f() == nil. +*/ + +package main + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +func (f *File) checkNilFuncComparison(e *ast.BinaryExpr) { + if !vet("nilfunc") { + return + } + + // Only want == or != comparisons. + if e.Op != token.EQL && e.Op != token.NEQ { + return + } + + // Only want comparisons with a nil identifier on one side. + var e2 ast.Expr + switch { + case f.isNil(e.X): + e2 = e.Y + case f.isNil(e.Y): + e2 = e.X + default: + return + } + + // Only want identifiers or selector expressions. + var obj types.Object + switch v := e2.(type) { + case *ast.Ident: + obj = f.pkg.uses[v] + case *ast.SelectorExpr: + obj = f.pkg.uses[v.Sel] + default: + return + } + + // Only want functions. + if _, ok := obj.(*types.Func); !ok { + return + } + + f.Badf(e.Pos(), "comparison of function %v %v nil is always %v", obj.Name(), e.Op, e.Op == token.NEQ) +} + +// isNil reports whether the provided expression is the built-in nil +// identifier. +func (f *File) isNil(e ast.Expr) bool { + return f.pkg.types[e].Type == types.Typ[types.UntypedNil] +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/print.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/print.go new file mode 100644 index 00000000..e15e87ea --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/print.go @@ -0,0 +1,503 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the printf-checker. + +package main + +import ( + "bytes" + "flag" + "go/ast" + "go/token" + "strconv" + "strings" + "unicode/utf8" + + "code.google.com/p/go.tools/go/exact" +) + +var printfuncs = flag.String("printfuncs", "", "comma-separated list of print function names to check") + +// printfList records the formatted-print functions. The value is the location +// of the format parameter. Names are lower-cased so the lookup is +// case insensitive. +var printfList = map[string]int{ + "errorf": 0, + "fatalf": 0, + "fprintf": 1, + "panicf": 0, + "printf": 0, + "sprintf": 0, +} + +// printList records the unformatted-print functions. The value is the location +// of the first parameter to be printed. Names are lower-cased so the lookup is +// case insensitive. +var printList = map[string]int{ + "error": 0, + "fatal": 0, + "fprint": 1, "fprintln": 1, + "panic": 0, "panicln": 0, + "print": 0, "println": 0, + "sprint": 0, "sprintln": 0, +} + +// checkCall triggers the print-specific checks if the call invokes a print function. +func (f *File) checkFmtPrintfCall(call *ast.CallExpr, Name string) { + if !vet("printf") { + return + } + name := strings.ToLower(Name) + if skip, ok := printfList[name]; ok { + f.checkPrintf(call, Name, skip) + return + } + if skip, ok := printList[name]; ok { + f.checkPrint(call, Name, skip) + return + } +} + +// formatState holds the parsed representation of a printf directive such as "%3.*[4]d". +// It is constructed by parsePrintfVerb. +type formatState struct { + verb rune // the format verb: 'd' for "%d" + format string // the full format directive from % through verb, "%.3d". + name string // Printf, Sprintf etc. + flags []byte // the list of # + etc. + argNums []int // the successive argument numbers that are consumed, adjusted to refer to actual arg in call + indexed bool // whether an indexing expression appears: %[1]d. + firstArg int // Index of first argument after the format in the Printf call. + // Used only during parse. + file *File + call *ast.CallExpr + argNum int // Which argument we're expecting to format now. + indexPending bool // Whether we have an indexed argument that has not resolved. + nbytes int // number of bytes of the format string consumed. +} + +// checkPrintf checks a call to a formatted print routine such as Printf. +// call.Args[formatIndex] is (well, should be) the format argument. +func (f *File) checkPrintf(call *ast.CallExpr, name string, formatIndex int) { + if formatIndex >= len(call.Args) { + f.Bad(call.Pos(), "too few arguments in call to", name) + return + } + lit := f.pkg.types[call.Args[formatIndex]].Value + if lit == nil { + if *verbose { + f.Warn(call.Pos(), "can't check non-constant format in call to", name) + } + return + } + if lit.Kind() != exact.String { + f.Badf(call.Pos(), "constant %v not a string in call to %s", lit, name) + return + } + format := exact.StringVal(lit) + firstArg := formatIndex + 1 // Arguments are immediately after format string. + if !strings.Contains(format, "%") { + if len(call.Args) > firstArg { + f.Badf(call.Pos(), "no formatting directive in %s call", name) + } + return + } + // Hard part: check formats against args. + argNum := firstArg + indexed := false + for i, w := 0, 0; i < len(format); i += w { + w = 1 + if format[i] == '%' { + state := f.parsePrintfVerb(call, name, format[i:], firstArg, argNum) + if state == nil { + return + } + w = len(state.format) + if state.indexed { + indexed = true + } + if !f.okPrintfArg(call, state) { // One error per format is enough. + return + } + if len(state.argNums) > 0 { + // Continue with the next sequential argument. + argNum = state.argNums[len(state.argNums)-1] + 1 + } + } + } + // Dotdotdot is hard. + if call.Ellipsis.IsValid() && argNum >= len(call.Args)-1 { + return + } + // If the arguments were direct indexed, we assume the programmer knows what's up. + // Otherwise, there should be no leftover arguments. + if !indexed && argNum != len(call.Args) { + expect := argNum - firstArg + numArgs := len(call.Args) - firstArg + f.Badf(call.Pos(), "wrong number of args for format in %s call: %d needed but %d args", name, expect, numArgs) + } +} + +// parseFlags accepts any printf flags. +func (s *formatState) parseFlags() { + for s.nbytes < len(s.format) { + switch c := s.format[s.nbytes]; c { + case '#', '0', '+', '-', ' ': + s.flags = append(s.flags, c) + s.nbytes++ + default: + return + } + } +} + +// scanNum advances through a decimal number if present. +func (s *formatState) scanNum() { + for ; s.nbytes < len(s.format); s.nbytes++ { + c := s.format[s.nbytes] + if c < '0' || '9' < c { + return + } + } +} + +// parseIndex scans an index expression. It returns false if there is a syntax error. +func (s *formatState) parseIndex() bool { + if s.nbytes == len(s.format) || s.format[s.nbytes] != '[' { + return true + } + // Argument index present. + s.indexed = true + s.nbytes++ // skip '[' + start := s.nbytes + s.scanNum() + if s.nbytes == len(s.format) || s.nbytes == start || s.format[s.nbytes] != ']' { + s.file.Badf(s.call.Pos(), "illegal syntax for printf argument index") + return false + } + arg32, err := strconv.ParseInt(s.format[start:s.nbytes], 10, 32) + if err != nil { + s.file.Badf(s.call.Pos(), "illegal syntax for printf argument index: %s", err) + return false + } + s.nbytes++ // skip ']' + arg := int(arg32) + arg += s.firstArg - 1 // We want to zero-index the actual arguments. + s.argNum = arg + s.indexPending = true + return true +} + +// parseNum scans a width or precision (or *). It returns false if there's a bad index expression. +func (s *formatState) parseNum() bool { + if s.nbytes < len(s.format) && s.format[s.nbytes] == '*' { + if s.indexPending { // Absorb it. + s.indexPending = false + } + s.nbytes++ + s.argNums = append(s.argNums, s.argNum) + s.argNum++ + } else { + s.scanNum() + } + return true +} + +// parsePrecision scans for a precision. It returns false if there's a bad index expression. +func (s *formatState) parsePrecision() bool { + // If there's a period, there may be a precision. + if s.nbytes < len(s.format) && s.format[s.nbytes] == '.' { + s.flags = append(s.flags, '.') // Treat precision as a flag. + s.nbytes++ + if !s.parseIndex() { + return false + } + if !s.parseNum() { + return false + } + } + return true +} + +// parsePrintfVerb looks the formatting directive that begins the format string +// and returns a formatState that encodes what the directive wants, without looking +// at the actual arguments present in the call. The result is nil if there is an error. +func (f *File) parsePrintfVerb(call *ast.CallExpr, name, format string, firstArg, argNum int) *formatState { + state := &formatState{ + format: format, + name: name, + flags: make([]byte, 0, 5), + argNum: argNum, + argNums: make([]int, 0, 1), + nbytes: 1, // There's guaranteed to be a percent sign. + indexed: false, + firstArg: firstArg, + file: f, + call: call, + } + // There may be flags. + state.parseFlags() + indexPending := false + // There may be an index. + if !state.parseIndex() { + return nil + } + // There may be a width. + if !state.parseNum() { + return nil + } + // There may be a precision. + if !state.parsePrecision() { + return nil + } + // Now a verb, possibly prefixed by an index (which we may already have). + if !indexPending && !state.parseIndex() { + return nil + } + if state.nbytes == len(state.format) { + f.Badf(call.Pos(), "missing verb at end of format string in %s call", name) + return nil + } + verb, w := utf8.DecodeRuneInString(state.format[state.nbytes:]) + state.verb = verb + state.nbytes += w + if verb != '%' { + state.argNums = append(state.argNums, state.argNum) + } + state.format = state.format[:state.nbytes] + return state +} + +// printfArgType encodes the types of expressions a printf verb accepts. It is a bitmask. +type printfArgType int + +const ( + argBool printfArgType = 1 << iota + argInt + argRune + argString + argFloat + argComplex + argPointer + anyType printfArgType = ^0 +) + +type printVerb struct { + verb rune // User may provide verb through Formatter; could be a rune. + flags string // known flags are all ASCII + typ printfArgType +} + +// Common flag sets for printf verbs. +const ( + noFlag = "" + numFlag = " -+.0" + sharpNumFlag = " -+.0#" + allFlags = " -+.0#" +) + +// printVerbs identifies which flags are known to printf for each verb. +// TODO: A type that implements Formatter may do what it wants, and vet +// will complain incorrectly. +var printVerbs = []printVerb{ + // '-' is a width modifier, always valid. + // '.' is a precision for float, max width for strings. + // '+' is required sign for numbers, Go format for %v. + // '#' is alternate format for several verbs. + // ' ' is spacer for numbers + {'%', noFlag, 0}, + {'b', numFlag, argInt | argFloat | argComplex}, + {'c', "-", argRune | argInt}, + {'d', numFlag, argInt}, + {'e', numFlag, argFloat | argComplex}, + {'E', numFlag, argFloat | argComplex}, + {'f', numFlag, argFloat | argComplex}, + {'F', numFlag, argFloat | argComplex}, + {'g', numFlag, argFloat | argComplex}, + {'G', numFlag, argFloat | argComplex}, + {'o', sharpNumFlag, argInt}, + {'p', "-#", argPointer}, + {'q', " -+.0#", argRune | argInt | argString}, + {'s', " -+.0", argString}, + {'t', "-", argBool}, + {'T', "-", anyType}, + {'U', "-#", argRune | argInt}, + {'v', allFlags, anyType}, + {'x', sharpNumFlag, argRune | argInt | argString}, + {'X', sharpNumFlag, argRune | argInt | argString}, +} + +// okPrintfArg compares the formatState to the arguments actually present, +// reporting any discrepancies it can discern. If the final argument is ellipsissed, +// there's little it can do for that. +func (f *File) okPrintfArg(call *ast.CallExpr, state *formatState) (ok bool) { + var v printVerb + found := false + // Linear scan is fast enough for a small list. + for _, v = range printVerbs { + if v.verb == state.verb { + found = true + break + } + } + if !found { + f.Badf(call.Pos(), "unrecognized printf verb %q", state.verb) + return false + } + for _, flag := range state.flags { + if !strings.ContainsRune(v.flags, rune(flag)) { + f.Badf(call.Pos(), "unrecognized printf flag for verb %q: %q", state.verb, flag) + return false + } + } + // Verb is good. If len(state.argNums)>trueArgs, we have something like %.*s and all + // but the final arg must be an integer. + trueArgs := 1 + if state.verb == '%' { + trueArgs = 0 + } + nargs := len(state.argNums) + for i := 0; i < nargs-trueArgs; i++ { + argNum := state.argNums[i] + if !f.argCanBeChecked(call, i, true, state) { + return + } + arg := call.Args[argNum] + if !f.matchArgType(argInt, nil, arg) { + f.Badf(call.Pos(), "arg %s for * in printf format not of type int", f.gofmt(arg)) + return false + } + } + if state.verb == '%' { + return true + } + argNum := state.argNums[len(state.argNums)-1] + if !f.argCanBeChecked(call, len(state.argNums)-1, false, state) { + return false + } + arg := call.Args[argNum] + if !f.matchArgType(v.typ, nil, arg) { + typeString := "" + if typ := f.pkg.types[arg].Type; typ != nil { + typeString = typ.String() + } + f.Badf(call.Pos(), "arg %s for printf verb %%%c of wrong type: %s", f.gofmt(arg), state.verb, typeString) + return false + } + if v.typ&argString != 0 && v.verb != 'T' && !bytes.Contains(state.flags, []byte{'#'}) && f.recursiveStringer(arg) { + f.Badf(call.Pos(), "arg %s for printf causes recursive call to String method", f.gofmt(arg)) + return false + } + return true +} + +// recursiveStringer reports whether the provided argument is r or &r for the +// fmt.Stringer receiver identifier r. +func (f *File) recursiveStringer(e ast.Expr) bool { + if f.lastStringerReceiver == nil { + return false + } + var obj *ast.Object + switch e := e.(type) { + case *ast.Ident: + obj = e.Obj + case *ast.UnaryExpr: + if id, ok := e.X.(*ast.Ident); ok && e.Op == token.AND { + obj = id.Obj + } + } + + // It's unlikely to be a recursive stringer if it has a Format method. + if typ := f.pkg.types[e].Type; typ != nil { + // Not a perfect match; see issue 6259. + if f.hasMethod(typ, "Format") { + return false + } + } + + // We compare the underlying Object, which checks that the identifier + // is the one we declared as the receiver for the String method in + // which this printf appears. + return obj == f.lastStringerReceiver +} + +// argCanBeChecked reports whether the specified argument is statically present; +// it may be beyond the list of arguments or in a terminal slice... argument, which +// means we can't see it. +func (f *File) argCanBeChecked(call *ast.CallExpr, formatArg int, isStar bool, state *formatState) bool { + argNum := state.argNums[formatArg] + if argNum < 0 { + // Shouldn't happen, so catch it with prejudice. + panic("negative arg num") + } + if argNum < len(call.Args)-1 { + return true // Always OK. + } + if call.Ellipsis.IsValid() { + return false // We just can't tell; there could be many more arguments. + } + if argNum < len(call.Args) { + return true + } + // There are bad indexes in the format or there are fewer arguments than the format needs. + // This is the argument number relative to the format: Printf("%s", "hi") will give 1 for the "hi". + arg := argNum - state.firstArg + 1 // People think of arguments as 1-indexed. + f.Badf(call.Pos(), `missing argument for %s("%s"): format reads arg %d, have only %d args`, state.name, state.format, arg, len(call.Args)-state.firstArg) + return false +} + +// checkPrint checks a call to an unformatted print routine such as Println. +// call.Args[firstArg] is the first argument to be printed. +func (f *File) checkPrint(call *ast.CallExpr, name string, firstArg int) { + isLn := strings.HasSuffix(name, "ln") + isF := strings.HasPrefix(name, "F") + args := call.Args + // check for Println(os.Stderr, ...) + if firstArg == 0 && !isF && len(args) > 0 { + if sel, ok := args[0].(*ast.SelectorExpr); ok { + if x, ok := sel.X.(*ast.Ident); ok { + if x.Name == "os" && strings.HasPrefix(sel.Sel.Name, "Std") { + f.Badf(call.Pos(), "first argument to %s is %s.%s", name, x.Name, sel.Sel.Name) + } + } + } + } + if len(args) <= firstArg { + // If we have a call to a method called Error that satisfies the Error interface, + // then it's ok. Otherwise it's something like (*T).Error from the testing package + // and we need to check it. + if name == "Error" && f.isErrorMethodCall(call) { + return + } + // If it's an Error call now, it's probably for printing errors. + if !isLn { + // Check the signature to be sure: there are niladic functions called "error". + if firstArg != 0 || f.numArgsInSignature(call) != firstArg { + f.Badf(call.Pos(), "no args in %s call", name) + } + } + return + } + arg := args[firstArg] + if lit, ok := arg.(*ast.BasicLit); ok && lit.Kind == token.STRING { + if strings.Contains(lit.Value, "%") { + f.Badf(call.Pos(), "possible formatting directive in %s call", name) + } + } + if isLn { + // The last item, if a string, should not have a newline. + arg = args[len(call.Args)-1] + if lit, ok := arg.(*ast.BasicLit); ok && lit.Kind == token.STRING { + if strings.HasSuffix(lit.Value, `\n"`) { + f.Badf(call.Pos(), "%s call ends with newline", name) + } + } + } + for _, arg := range args { + if f.recursiveStringer(arg) { + f.Badf(call.Pos(), "arg %s for print causes recursive call to String method", f.gofmt(arg)) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/rangeloop.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/rangeloop.go new file mode 100644 index 00000000..61fd6ac5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/rangeloop.go @@ -0,0 +1,65 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +This file contains the code to check range loop variables bound inside function +literals that are deferred or launched in new goroutines. We only check +instances where the defer or go statement is the last statement in the loop +body, as otherwise we would need whole program analysis. + +For example: + + for i, v := range s { + go func() { + println(i, v) // not what you might expect + }() + } + +See: http://golang.org/doc/go_faq.html#closures_and_goroutines +*/ + +package main + +import "go/ast" + +// checkRangeLoop walks the body of the provided range statement, checking if +// its index or value variables are used unsafely inside goroutines or deferred +// function literals. +func checkRangeLoop(f *File, n *ast.RangeStmt) { + if !vet("rangeloops") { + return + } + key, _ := n.Key.(*ast.Ident) + val, _ := n.Value.(*ast.Ident) + if key == nil && val == nil { + return + } + sl := n.Body.List + if len(sl) == 0 { + return + } + var last *ast.CallExpr + switch s := sl[len(sl)-1].(type) { + case *ast.GoStmt: + last = s.Call + case *ast.DeferStmt: + last = s.Call + default: + return + } + lit, ok := last.Fun.(*ast.FuncLit) + if !ok { + return + } + ast.Inspect(lit.Body, func(n ast.Node) bool { + id, ok := n.(*ast.Ident) + if !ok || id.Obj == nil { + return true + } + if key != nil && id.Obj == key.Obj || val != nil && id.Obj == val.Obj { + f.Bad(id.Pos(), "range variable", id.Name, "enclosed by function") + } + return true + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/shadow.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/shadow.go new file mode 100644 index 00000000..bb230eee --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/shadow.go @@ -0,0 +1,231 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +This file contains the code to check for shadowed variables. +A shadowed variable is a variable declared in an inner scope +with the same name and type as a variable in an outer scope, +and where the outer variable is mentioned after the inner one +is declared. + +(This definition can be refined; the module generates too many +false positives and is not yet enabled by default.) + +For example: + + func BadRead(f *os.File, buf []byte) error { + var err error + for { + n, err := f.Read(buf) // shadows the function variable 'err' + if err != nil { + break // causes return of wrong value + } + foo(buf) + } + return err + } + +*/ + +package main + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +// Span stores the minimum range of byte positions in the file in which a +// given variable (types.Object) is mentioned. It is lexically defined: it spans +// from the beginning of its first mention to the end of its last mention. +// A variable is considered shadowed (if *strictShadowing is off) only if the +// shadowing variable is declared within the span of the shadowed variable. +// In other words, if a variable is shadowed but not used after the shadowed +// variable is declared, it is inconsequential and not worth complaining about. +// This simple check dramatically reduces the nuisance rate for the shadowing +// check, at least until something cleverer comes along. +// +// One wrinkle: A "naked return" is a silent use of a variable that the Span +// will not capture, but the compilers catch naked returns of shadowed +// variables so we don't need to. +// +// Cases this gets wrong (TODO): +// - If a for loop's continuation statement mentions a variable redeclared in +// the block, we should complain about it but don't. +// - A variable declared inside a function literal can falsely be identified +// as shadowing a variable in the outer function. +// +type Span struct { + min token.Pos + max token.Pos +} + +// contains reports whether the position is inside the span. +func (s Span) contains(pos token.Pos) bool { + return s.min <= pos && pos < s.max +} + +// growSpan expands the span for the object to contain the instance represented +// by the identifier. +func (pkg *Package) growSpan(ident *ast.Ident, obj types.Object) { + if *strictShadowing { + return // No need + } + pos := ident.Pos() + end := ident.End() + span, ok := pkg.spans[obj] + if ok { + if span.min > pos { + span.min = pos + } + if span.max < end { + span.max = end + } + } else { + span = Span{pos, end} + } + pkg.spans[obj] = span +} + +// checkShadowAssignment checks for shadowing in a short variable declaration. +func (f *File) checkShadowAssignment(a *ast.AssignStmt) { + if !vet("shadow") { + return + } + if a.Tok != token.DEFINE { + return + } + if f.idiomaticShortRedecl(a) { + return + } + for _, expr := range a.Lhs { + ident, ok := expr.(*ast.Ident) + if !ok { + f.Badf(expr.Pos(), "invalid AST: short variable declaration of non-identifier") + return + } + f.checkShadowing(ident) + } +} + +// idiomaticShortRedecl reports whether this short declaration can be ignored for +// the purposes of shadowing, that is, that any redeclarations it contains are deliberate. +func (f *File) idiomaticShortRedecl(a *ast.AssignStmt) bool { + // Don't complain about deliberate redeclarations of the form + // i := i + // Such constructs are idiomatic in range loops to create a new variable + // for each iteration. Another example is + // switch n := n.(type) + if len(a.Rhs) != len(a.Lhs) { + return false + } + // We know it's an assignment, so the LHS must be all identifiers. (We check anyway.) + for i, expr := range a.Lhs { + lhs, ok := expr.(*ast.Ident) + if !ok { + f.Badf(expr.Pos(), "invalid AST: short variable declaration of non-identifier") + return true // Don't do any more processing. + } + switch rhs := a.Rhs[i].(type) { + case *ast.Ident: + if lhs.Name != rhs.Name { + return false + } + case *ast.TypeAssertExpr: + if id, ok := rhs.X.(*ast.Ident); ok { + if lhs.Name != id.Name { + return false + } + } + } + } + return true +} + +// idiomaticRedecl reports whether this declaration spec can be ignored for +// the purposes of shadowing, that is, that any redeclarations it contains are deliberate. +func (f *File) idiomaticRedecl(d *ast.ValueSpec) bool { + // Don't complain about deliberate redeclarations of the form + // var i, j = i, j + if len(d.Names) != len(d.Values) { + return false + } + for i, lhs := range d.Names { + if rhs, ok := d.Values[i].(*ast.Ident); ok { + if lhs.Name != rhs.Name { + return false + } + } + } + return true +} + +// checkShadowDecl checks for shadowing in a general variable declaration. +func (f *File) checkShadowDecl(d *ast.GenDecl) { + if !vet("shadow") { + return + } + if d.Tok != token.VAR { + return + } + for _, spec := range d.Specs { + valueSpec, ok := spec.(*ast.ValueSpec) + if !ok { + f.Badf(spec.Pos(), "invalid AST: var GenDecl not ValueSpec") + return + } + // Don't complain about deliberate redeclarations of the form + // var i = i + if f.idiomaticRedecl(valueSpec) { + return + } + for _, ident := range valueSpec.Names { + f.checkShadowing(ident) + } + } +} + +// checkShadowing checks whether the identifier shadows an identifier in an outer scope. +func (f *File) checkShadowing(ident *ast.Ident) { + if ident.Name == "_" { + // Can't shadow the blank identifier. + return + } + obj := f.pkg.defs[ident] + if obj == nil { + return + } + // obj.Parent.Parent is the surrounding scope. If we can find another declaration + // starting from there, we have a shadowed variable. + shadowed := obj.Parent().Parent().LookupParent(obj.Name()) + if shadowed == nil { + return + } + // Don't complain if it's shadowing a universe-declared variable; that's fine. + if shadowed.Parent() == types.Universe { + return + } + if *strictShadowing { + // The shadowed variable must appear before this one to be an instance of shadowing. + if shadowed.Pos() > ident.Pos() { + return + } + } else { + // Don't complain if the span of validity of the shadowed variable doesn't include + // the shadowing variable. + span, ok := f.pkg.spans[shadowed] + if !ok { + f.Badf(ident.Pos(), "internal error: no range for %s", ident.Name) + return + } + if !span.contains(ident.Pos()) { + return + } + } + // Don't complain if the types differ: that implies the programmer really wants two variables. + if types.Identical(obj.Type(), shadowed.Type()) { + f.Badf(ident.Pos(), "declaration of %s shadows declaration at %s", obj.Name(), f.loc(shadowed.Pos())) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/structtag.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/structtag.go new file mode 100644 index 00000000..d8357883 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/structtag.go @@ -0,0 +1,37 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the test for canonical struct tags. + +package main + +import ( + "go/ast" + "reflect" + "strconv" +) + +// checkField checks a struct field tag. +func (f *File) checkCanonicalFieldTag(field *ast.Field) { + if !vet("structtags") { + return + } + if field.Tag == nil { + return + } + + tag, err := strconv.Unquote(field.Tag.Value) + if err != nil { + f.Badf(field.Pos(), "unable to read struct tag %s", field.Tag.Value) + return + } + + // Check tag for validity by appending + // new key:value to end and checking that + // the tag parsing code can find it. + if reflect.StructTag(tag+` _gofix:"_magic"`).Get("_gofix") != "_magic" { + f.Badf(field.Pos(), "struct field tag %s not compatible with reflect.StructTag.Get", field.Tag.Value) + return + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm.go new file mode 100644 index 00000000..d8df5aae --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm.go @@ -0,0 +1,31 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build ignore + +// This file contains declarations to test the assembly in test_asm.s. + +package testdata + +func arg1(x int8, y uint8) +func arg2(x int16, y uint16) +func arg4(x int32, y uint32) +func arg8(x int64, y uint64) +func argint(x int, y uint) +func argptr(x *byte, y *byte, c chan int, m map[int]int, f func()) +func argstring(x, y string) +func argslice(x, y []string) +func argiface(x interface{}, y interface { + m() +}) +func returnint() int +func returnbyte(x int) byte +func returnnamed(x byte) (r1 int, r2 int16, r3 string, r4 byte) + +func noprof(x int) +func dupok(x int) +func nosplit(x int) +func rodata(x int) +func noptr(x int) +func wrapper(x int) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm1.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm1.s new file mode 100644 index 00000000..8cd9eeab --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm1.s @@ -0,0 +1,247 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64 +// +build vet_test + +TEXT ·arg1(SB),0,$0-2 + MOVB x+0(FP), AX + MOVB y+1(FP), BX + MOVW x+0(FP), AX // ERROR "\[amd64\] invalid MOVW of x\+0\(FP\); int8 is 1-byte value" + MOVW y+1(FP), AX // ERROR "invalid MOVW of y\+1\(FP\); uint8 is 1-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int8 is 1-byte value" + MOVL y+1(FP), AX // ERROR "invalid MOVL of y\+1\(FP\); uint8 is 1-byte value" + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int8 is 1-byte value" + MOVQ y+1(FP), AX // ERROR "invalid MOVQ of y\+1\(FP\); uint8 is 1-byte value" + MOVB x+1(FP), AX // ERROR "invalid offset x\+1\(FP\); expected x\+0\(FP\)" + MOVB y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+1\(FP\)" + TESTB x+0(FP), AX + TESTB y+1(FP), BX + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int8 is 1-byte value" + TESTW y+1(FP), AX // ERROR "invalid TESTW of y\+1\(FP\); uint8 is 1-byte value" + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int8 is 1-byte value" + TESTL y+1(FP), AX // ERROR "invalid TESTL of y\+1\(FP\); uint8 is 1-byte value" + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int8 is 1-byte value" + TESTQ y+1(FP), AX // ERROR "invalid TESTQ of y\+1\(FP\); uint8 is 1-byte value" + TESTB x+1(FP), AX // ERROR "invalid offset x\+1\(FP\); expected x\+0\(FP\)" + TESTB y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+1\(FP\)" + RET + +TEXT ·arg2(SB),0,$0-4 + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int16 is 2-byte value" + MOVB y+2(FP), AX // ERROR "invalid MOVB of y\+2\(FP\); uint16 is 2-byte value" + MOVW x+0(FP), AX + MOVW y+2(FP), BX + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int16 is 2-byte value" + MOVL y+2(FP), AX // ERROR "invalid MOVL of y\+2\(FP\); uint16 is 2-byte value" + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int16 is 2-byte value" + MOVQ y+2(FP), AX // ERROR "invalid MOVQ of y\+2\(FP\); uint16 is 2-byte value" + MOVW x+2(FP), AX // ERROR "invalid offset x\+2\(FP\); expected x\+0\(FP\)" + MOVW y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+2\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int16 is 2-byte value" + TESTB y+2(FP), AX // ERROR "invalid TESTB of y\+2\(FP\); uint16 is 2-byte value" + TESTW x+0(FP), AX + TESTW y+2(FP), BX + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int16 is 2-byte value" + TESTL y+2(FP), AX // ERROR "invalid TESTL of y\+2\(FP\); uint16 is 2-byte value" + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int16 is 2-byte value" + TESTQ y+2(FP), AX // ERROR "invalid TESTQ of y\+2\(FP\); uint16 is 2-byte value" + TESTW x+2(FP), AX // ERROR "invalid offset x\+2\(FP\); expected x\+0\(FP\)" + TESTW y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+2\(FP\)" + RET + +TEXT ·arg4(SB),0,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-8" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int32 is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); uint32 is 4-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int32 is 4-byte value" + MOVW y+4(FP), AX // ERROR "invalid MOVW of y\+4\(FP\); uint32 is 4-byte value" + MOVL x+0(FP), AX + MOVL y+4(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int32 is 4-byte value" + MOVQ y+4(FP), AX // ERROR "invalid MOVQ of y\+4\(FP\); uint32 is 4-byte value" + MOVL x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVL y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int32 is 4-byte value" + TESTB y+4(FP), BX // ERROR "invalid TESTB of y\+4\(FP\); uint32 is 4-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int32 is 4-byte value" + TESTW y+4(FP), AX // ERROR "invalid TESTW of y\+4\(FP\); uint32 is 4-byte value" + TESTL x+0(FP), AX + TESTL y+4(FP), AX + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int32 is 4-byte value" + TESTQ y+4(FP), AX // ERROR "invalid TESTQ of y\+4\(FP\); uint32 is 4-byte value" + TESTL x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + TESTL y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + RET + +TEXT ·arg8(SB),7,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-16" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int64 is 8-byte value" + MOVB y+8(FP), BX // ERROR "invalid MOVB of y\+8\(FP\); uint64 is 8-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int64 is 8-byte value" + MOVW y+8(FP), AX // ERROR "invalid MOVW of y\+8\(FP\); uint64 is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int64 is 8-byte value" + MOVL y+8(FP), AX // ERROR "invalid MOVL of y\+8\(FP\); uint64 is 8-byte value" + MOVQ x+0(FP), AX + MOVQ y+8(FP), AX + MOVQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int64 is 8-byte value" + TESTB y+8(FP), BX // ERROR "invalid TESTB of y\+8\(FP\); uint64 is 8-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int64 is 8-byte value" + TESTW y+8(FP), AX // ERROR "invalid TESTW of y\+8\(FP\); uint64 is 8-byte value" + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int64 is 8-byte value" + TESTL y+8(FP), AX // ERROR "invalid TESTL of y\+8\(FP\); uint64 is 8-byte value" + TESTQ x+0(FP), AX + TESTQ y+8(FP), AX + TESTQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + TESTQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + RET + +TEXT ·argint(SB),0,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-16" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int is 8-byte value" + MOVB y+8(FP), BX // ERROR "invalid MOVB of y\+8\(FP\); uint is 8-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int is 8-byte value" + MOVW y+8(FP), AX // ERROR "invalid MOVW of y\+8\(FP\); uint is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int is 8-byte value" + MOVL y+8(FP), AX // ERROR "invalid MOVL of y\+8\(FP\); uint is 8-byte value" + MOVQ x+0(FP), AX + MOVQ y+8(FP), AX + MOVQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int is 8-byte value" + TESTB y+8(FP), BX // ERROR "invalid TESTB of y\+8\(FP\); uint is 8-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int is 8-byte value" + TESTW y+8(FP), AX // ERROR "invalid TESTW of y\+8\(FP\); uint is 8-byte value" + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int is 8-byte value" + TESTL y+8(FP), AX // ERROR "invalid TESTL of y\+8\(FP\); uint is 8-byte value" + TESTQ x+0(FP), AX + TESTQ y+8(FP), AX + TESTQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + TESTQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + RET + +TEXT ·argptr(SB),7,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-40" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); \*byte is 8-byte value" + MOVB y+8(FP), BX // ERROR "invalid MOVB of y\+8\(FP\); \*byte is 8-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); \*byte is 8-byte value" + MOVW y+8(FP), AX // ERROR "invalid MOVW of y\+8\(FP\); \*byte is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); \*byte is 8-byte value" + MOVL y+8(FP), AX // ERROR "invalid MOVL of y\+8\(FP\); \*byte is 8-byte value" + MOVQ x+0(FP), AX + MOVQ y+8(FP), AX + MOVQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); \*byte is 8-byte value" + TESTB y+8(FP), BX // ERROR "invalid TESTB of y\+8\(FP\); \*byte is 8-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); \*byte is 8-byte value" + TESTW y+8(FP), AX // ERROR "invalid TESTW of y\+8\(FP\); \*byte is 8-byte value" + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); \*byte is 8-byte value" + TESTL y+8(FP), AX // ERROR "invalid TESTL of y\+8\(FP\); \*byte is 8-byte value" + TESTQ x+0(FP), AX + TESTQ y+8(FP), AX + TESTQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + TESTQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + MOVL c+16(FP), AX // ERROR "invalid MOVL of c\+16\(FP\); chan int is 8-byte value" + MOVL m+24(FP), AX // ERROR "invalid MOVL of m\+24\(FP\); map\[int\]int is 8-byte value" + MOVL f+32(FP), AX // ERROR "invalid MOVL of f\+32\(FP\); func\(\) is 8-byte value" + RET + +TEXT ·argstring(SB),0,$32 // ERROR "wrong argument size 0; expected \$\.\.\.-32" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); string base is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); string base is 8-byte value" + MOVQ x+0(FP), AX + MOVW x_base+0(FP), AX // ERROR "invalid MOVW of x_base\+0\(FP\); string base is 8-byte value" + MOVL x_base+0(FP), AX // ERROR "invalid MOVL of x_base\+0\(FP\); string base is 8-byte value" + MOVQ x_base+0(FP), AX + MOVW x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+8\(FP\)" + MOVL x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+8\(FP\)" + MOVQ x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+8\(FP\)" + MOVW x_len+8(FP), AX // ERROR "invalid MOVW of x_len\+8\(FP\); string len is 8-byte value" + MOVL x_len+8(FP), AX // ERROR "invalid MOVL of x_len\+8\(FP\); string len is 8-byte value" + MOVQ x_len+8(FP), AX + MOVQ y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+16\(FP\)" + MOVQ y_len+8(FP), AX // ERROR "invalid offset y_len\+8\(FP\); expected y_len\+24\(FP\)" + RET + +TEXT ·argslice(SB),0,$48 // ERROR "wrong argument size 0; expected \$\.\.\.-48" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); slice base is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); slice base is 8-byte value" + MOVQ x+0(FP), AX + MOVW x_base+0(FP), AX // ERROR "invalid MOVW of x_base\+0\(FP\); slice base is 8-byte value" + MOVL x_base+0(FP), AX // ERROR "invalid MOVL of x_base\+0\(FP\); slice base is 8-byte value" + MOVQ x_base+0(FP), AX + MOVW x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+8\(FP\)" + MOVL x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+8\(FP\)" + MOVQ x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+8\(FP\)" + MOVW x_len+8(FP), AX // ERROR "invalid MOVW of x_len\+8\(FP\); slice len is 8-byte value" + MOVL x_len+8(FP), AX // ERROR "invalid MOVL of x_len\+8\(FP\); slice len is 8-byte value" + MOVQ x_len+8(FP), AX + MOVW x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+16\(FP\)" + MOVL x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+16\(FP\)" + MOVQ x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+16\(FP\)" + MOVW x_cap+16(FP), AX // ERROR "invalid MOVW of x_cap\+16\(FP\); slice cap is 8-byte value" + MOVL x_cap+16(FP), AX // ERROR "invalid MOVL of x_cap\+16\(FP\); slice cap is 8-byte value" + MOVQ x_cap+16(FP), AX + MOVQ y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+24\(FP\)" + MOVQ y_len+8(FP), AX // ERROR "invalid offset y_len\+8\(FP\); expected y_len\+32\(FP\)" + MOVQ y_cap+16(FP), AX // ERROR "invalid offset y_cap\+16\(FP\); expected y_cap\+40\(FP\)" + RET + +TEXT ·argiface(SB),0,$0-32 + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); interface type is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); interface type is 8-byte value" + MOVQ x+0(FP), AX + MOVW x_type+0(FP), AX // ERROR "invalid MOVW of x_type\+0\(FP\); interface type is 8-byte value" + MOVL x_type+0(FP), AX // ERROR "invalid MOVL of x_type\+0\(FP\); interface type is 8-byte value" + MOVQ x_type+0(FP), AX + MOVQ x_itable+0(FP), AX // ERROR "unknown variable x_itable; offset 0 is x_type\+0\(FP\)" + MOVQ x_itable+1(FP), AX // ERROR "unknown variable x_itable; offset 1 is x_type\+0\(FP\)" + MOVW x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+8\(FP\)" + MOVL x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+8\(FP\)" + MOVQ x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+8\(FP\)" + MOVW x_data+8(FP), AX // ERROR "invalid MOVW of x_data\+8\(FP\); interface data is 8-byte value" + MOVL x_data+8(FP), AX // ERROR "invalid MOVL of x_data\+8\(FP\); interface data is 8-byte value" + MOVQ x_data+8(FP), AX + MOVW y+16(FP), AX // ERROR "invalid MOVW of y\+16\(FP\); interface itable is 8-byte value" + MOVL y+16(FP), AX // ERROR "invalid MOVL of y\+16\(FP\); interface itable is 8-byte value" + MOVQ y+16(FP), AX + MOVW y_itable+16(FP), AX // ERROR "invalid MOVW of y_itable\+16\(FP\); interface itable is 8-byte value" + MOVL y_itable+16(FP), AX // ERROR "invalid MOVL of y_itable\+16\(FP\); interface itable is 8-byte value" + MOVQ y_itable+16(FP), AX + MOVQ y_type+16(FP), AX // ERROR "unknown variable y_type; offset 16 is y_itable\+16\(FP\)" + MOVW y_data+16(FP), AX // ERROR "invalid offset y_data\+16\(FP\); expected y_data\+24\(FP\)" + MOVL y_data+16(FP), AX // ERROR "invalid offset y_data\+16\(FP\); expected y_data\+24\(FP\)" + MOVQ y_data+16(FP), AX // ERROR "invalid offset y_data\+16\(FP\); expected y_data\+24\(FP\)" + MOVW y_data+24(FP), AX // ERROR "invalid MOVW of y_data\+24\(FP\); interface data is 8-byte value" + MOVL y_data+24(FP), AX // ERROR "invalid MOVL of y_data\+24\(FP\); interface data is 8-byte value" + MOVQ y_data+24(FP), AX + RET + +TEXT ·returnint(SB),0,$0-8 + MOVB AX, ret+0(FP) // ERROR "invalid MOVB of ret\+0\(FP\); int is 8-byte value" + MOVW AX, ret+0(FP) // ERROR "invalid MOVW of ret\+0\(FP\); int is 8-byte value" + MOVL AX, ret+0(FP) // ERROR "invalid MOVL of ret\+0\(FP\); int is 8-byte value" + MOVQ AX, ret+0(FP) + MOVQ AX, ret+1(FP) // ERROR "invalid offset ret\+1\(FP\); expected ret\+0\(FP\)" + MOVQ AX, r+0(FP) // ERROR "unknown variable r; offset 0 is ret\+0\(FP\)" + RET + +TEXT ·returnbyte(SB),0,$0-9 + MOVQ x+0(FP), AX + MOVB AX, ret+8(FP) + MOVW AX, ret+8(FP) // ERROR "invalid MOVW of ret\+8\(FP\); byte is 1-byte value" + MOVL AX, ret+8(FP) // ERROR "invalid MOVL of ret\+8\(FP\); byte is 1-byte value" + MOVQ AX, ret+8(FP) // ERROR "invalid MOVQ of ret\+8\(FP\); byte is 1-byte value" + MOVB AX, ret+7(FP) // ERROR "invalid offset ret\+7\(FP\); expected ret\+8\(FP\)" + RET + +TEXT ·returnnamed(SB),0,$0-41 + MOVB x+0(FP), AX + MOVQ AX, r1+8(FP) + MOVW AX, r2+16(FP) + MOVQ AX, r3+24(FP) + MOVQ AX, r3_base+24(FP) + MOVQ AX, r3_len+32(FP) + MOVB AX, r4+40(FP) + MOVL AX, r1+8(FP) // ERROR "invalid MOVL of r1\+8\(FP\); int is 8-byte value" + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm2.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm2.s new file mode 100644 index 00000000..d8679c57 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm2.s @@ -0,0 +1,251 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build 386 +// +build vet_test + +TEXT ·arg1(SB),0,$0-2 + MOVB x+0(FP), AX + MOVB y+1(FP), BX + MOVW x+0(FP), AX // ERROR "\[386\] invalid MOVW of x\+0\(FP\); int8 is 1-byte value" + MOVW y+1(FP), AX // ERROR "invalid MOVW of y\+1\(FP\); uint8 is 1-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int8 is 1-byte value" + MOVL y+1(FP), AX // ERROR "invalid MOVL of y\+1\(FP\); uint8 is 1-byte value" + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int8 is 1-byte value" + MOVQ y+1(FP), AX // ERROR "invalid MOVQ of y\+1\(FP\); uint8 is 1-byte value" + MOVB x+1(FP), AX // ERROR "invalid offset x\+1\(FP\); expected x\+0\(FP\)" + MOVB y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+1\(FP\)" + TESTB x+0(FP), AX + TESTB y+1(FP), BX + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int8 is 1-byte value" + TESTW y+1(FP), AX // ERROR "invalid TESTW of y\+1\(FP\); uint8 is 1-byte value" + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int8 is 1-byte value" + TESTL y+1(FP), AX // ERROR "invalid TESTL of y\+1\(FP\); uint8 is 1-byte value" + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int8 is 1-byte value" + TESTQ y+1(FP), AX // ERROR "invalid TESTQ of y\+1\(FP\); uint8 is 1-byte value" + TESTB x+1(FP), AX // ERROR "invalid offset x\+1\(FP\); expected x\+0\(FP\)" + TESTB y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+1\(FP\)" + RET + +TEXT ·arg2(SB),0,$0-4 + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int16 is 2-byte value" + MOVB y+2(FP), AX // ERROR "invalid MOVB of y\+2\(FP\); uint16 is 2-byte value" + MOVW x+0(FP), AX + MOVW y+2(FP), BX + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int16 is 2-byte value" + MOVL y+2(FP), AX // ERROR "invalid MOVL of y\+2\(FP\); uint16 is 2-byte value" + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int16 is 2-byte value" + MOVQ y+2(FP), AX // ERROR "invalid MOVQ of y\+2\(FP\); uint16 is 2-byte value" + MOVW x+2(FP), AX // ERROR "invalid offset x\+2\(FP\); expected x\+0\(FP\)" + MOVW y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+2\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int16 is 2-byte value" + TESTB y+2(FP), AX // ERROR "invalid TESTB of y\+2\(FP\); uint16 is 2-byte value" + TESTW x+0(FP), AX + TESTW y+2(FP), BX + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int16 is 2-byte value" + TESTL y+2(FP), AX // ERROR "invalid TESTL of y\+2\(FP\); uint16 is 2-byte value" + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int16 is 2-byte value" + TESTQ y+2(FP), AX // ERROR "invalid TESTQ of y\+2\(FP\); uint16 is 2-byte value" + TESTW x+2(FP), AX // ERROR "invalid offset x\+2\(FP\); expected x\+0\(FP\)" + TESTW y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+2\(FP\)" + RET + +TEXT ·arg4(SB),0,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-8" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int32 is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); uint32 is 4-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int32 is 4-byte value" + MOVW y+4(FP), AX // ERROR "invalid MOVW of y\+4\(FP\); uint32 is 4-byte value" + MOVL x+0(FP), AX + MOVL y+4(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int32 is 4-byte value" + MOVQ y+4(FP), AX // ERROR "invalid MOVQ of y\+4\(FP\); uint32 is 4-byte value" + MOVL x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVL y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int32 is 4-byte value" + TESTB y+4(FP), BX // ERROR "invalid TESTB of y\+4\(FP\); uint32 is 4-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int32 is 4-byte value" + TESTW y+4(FP), AX // ERROR "invalid TESTW of y\+4\(FP\); uint32 is 4-byte value" + TESTL x+0(FP), AX + TESTL y+4(FP), AX + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int32 is 4-byte value" + TESTQ y+4(FP), AX // ERROR "invalid TESTQ of y\+4\(FP\); uint32 is 4-byte value" + TESTL x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + TESTL y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + RET + +TEXT ·arg8(SB),7,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-16" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int64 is 8-byte value" + MOVB y+8(FP), BX // ERROR "invalid MOVB of y\+8\(FP\); uint64 is 8-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int64 is 8-byte value" + MOVW y+8(FP), AX // ERROR "invalid MOVW of y\+8\(FP\); uint64 is 8-byte value" + MOVL x+0(FP), AX // ERROR "invalid MOVL of x\+0\(FP\); int64 is 8-byte value containing x_lo\+0\(FP\) and x_hi\+4\(FP\)" + MOVL x_lo+0(FP), AX + MOVL x_hi+4(FP), AX + MOVL y+8(FP), AX // ERROR "invalid MOVL of y\+8\(FP\); uint64 is 8-byte value containing y_lo\+8\(FP\) and y_hi\+12\(FP\)" + MOVL y_lo+8(FP), AX + MOVL y_hi+12(FP), AX + MOVQ x+0(FP), AX + MOVQ y+8(FP), AX + MOVQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int64 is 8-byte value" + TESTB y+8(FP), BX // ERROR "invalid TESTB of y\+8\(FP\); uint64 is 8-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int64 is 8-byte value" + TESTW y+8(FP), AX // ERROR "invalid TESTW of y\+8\(FP\); uint64 is 8-byte value" + TESTL x+0(FP), AX // ERROR "invalid TESTL of x\+0\(FP\); int64 is 8-byte value containing x_lo\+0\(FP\) and x_hi\+4\(FP\)" + TESTL y+8(FP), AX // ERROR "invalid TESTL of y\+8\(FP\); uint64 is 8-byte value containing y_lo\+8\(FP\) and y_hi\+12\(FP\)" + TESTQ x+0(FP), AX + TESTQ y+8(FP), AX + TESTQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + TESTQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + RET + +TEXT ·argint(SB),0,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-8" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); uint is 4-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int is 4-byte value" + MOVW y+4(FP), AX // ERROR "invalid MOVW of y\+4\(FP\); uint is 4-byte value" + MOVL x+0(FP), AX + MOVL y+4(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); int is 4-byte value" + MOVQ y+4(FP), AX // ERROR "invalid MOVQ of y\+4\(FP\); uint is 4-byte value" + MOVQ x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); int is 4-byte value" + TESTB y+4(FP), BX // ERROR "invalid TESTB of y\+4\(FP\); uint is 4-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); int is 4-byte value" + TESTW y+4(FP), AX // ERROR "invalid TESTW of y\+4\(FP\); uint is 4-byte value" + TESTL x+0(FP), AX + TESTL y+4(FP), AX + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); int is 4-byte value" + TESTQ y+4(FP), AX // ERROR "invalid TESTQ of y\+4\(FP\); uint is 4-byte value" + TESTQ x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + TESTQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + RET + +TEXT ·argptr(SB),7,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-20" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); \*byte is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); \*byte is 4-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); \*byte is 4-byte value" + MOVW y+4(FP), AX // ERROR "invalid MOVW of y\+4\(FP\); \*byte is 4-byte value" + MOVL x+0(FP), AX + MOVL y+4(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); \*byte is 4-byte value" + MOVQ y+4(FP), AX // ERROR "invalid MOVQ of y\+4\(FP\); \*byte is 4-byte value" + MOVQ x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + TESTB x+0(FP), AX // ERROR "invalid TESTB of x\+0\(FP\); \*byte is 4-byte value" + TESTB y+4(FP), BX // ERROR "invalid TESTB of y\+4\(FP\); \*byte is 4-byte value" + TESTW x+0(FP), AX // ERROR "invalid TESTW of x\+0\(FP\); \*byte is 4-byte value" + TESTW y+4(FP), AX // ERROR "invalid TESTW of y\+4\(FP\); \*byte is 4-byte value" + TESTL x+0(FP), AX + TESTL y+4(FP), AX + TESTQ x+0(FP), AX // ERROR "invalid TESTQ of x\+0\(FP\); \*byte is 4-byte value" + TESTQ y+4(FP), AX // ERROR "invalid TESTQ of y\+4\(FP\); \*byte is 4-byte value" + TESTQ x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + TESTQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + MOVW c+8(FP), AX // ERROR "invalid MOVW of c\+8\(FP\); chan int is 4-byte value" + MOVW m+12(FP), AX // ERROR "invalid MOVW of m\+12\(FP\); map\[int\]int is 4-byte value" + MOVW f+16(FP), AX // ERROR "invalid MOVW of f\+16\(FP\); func\(\) is 4-byte value" + RET + +TEXT ·argstring(SB),0,$16 // ERROR "wrong argument size 0; expected \$\.\.\.-16" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); string base is 4-byte value" + MOVL x+0(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); string base is 4-byte value" + MOVW x_base+0(FP), AX // ERROR "invalid MOVW of x_base\+0\(FP\); string base is 4-byte value" + MOVL x_base+0(FP), AX + MOVQ x_base+0(FP), AX // ERROR "invalid MOVQ of x_base\+0\(FP\); string base is 4-byte value" + MOVW x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVL x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVQ x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVW x_len+4(FP), AX // ERROR "invalid MOVW of x_len\+4\(FP\); string len is 4-byte value" + MOVL x_len+4(FP), AX + MOVQ x_len+4(FP), AX // ERROR "invalid MOVQ of x_len\+4\(FP\); string len is 4-byte value" + MOVQ y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+8\(FP\)" + MOVQ y_len+4(FP), AX // ERROR "invalid offset y_len\+4\(FP\); expected y_len\+12\(FP\)" + RET + +TEXT ·argslice(SB),0,$24 // ERROR "wrong argument size 0; expected \$\.\.\.-24" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); slice base is 4-byte value" + MOVL x+0(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); slice base is 4-byte value" + MOVW x_base+0(FP), AX // ERROR "invalid MOVW of x_base\+0\(FP\); slice base is 4-byte value" + MOVL x_base+0(FP), AX + MOVQ x_base+0(FP), AX // ERROR "invalid MOVQ of x_base\+0\(FP\); slice base is 4-byte value" + MOVW x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVL x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVQ x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVW x_len+4(FP), AX // ERROR "invalid MOVW of x_len\+4\(FP\); slice len is 4-byte value" + MOVL x_len+4(FP), AX + MOVQ x_len+4(FP), AX // ERROR "invalid MOVQ of x_len\+4\(FP\); slice len is 4-byte value" + MOVW x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+8\(FP\)" + MOVL x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+8\(FP\)" + MOVQ x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+8\(FP\)" + MOVW x_cap+8(FP), AX // ERROR "invalid MOVW of x_cap\+8\(FP\); slice cap is 4-byte value" + MOVL x_cap+8(FP), AX + MOVQ x_cap+8(FP), AX // ERROR "invalid MOVQ of x_cap\+8\(FP\); slice cap is 4-byte value" + MOVQ y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+12\(FP\)" + MOVQ y_len+4(FP), AX // ERROR "invalid offset y_len\+4\(FP\); expected y_len\+16\(FP\)" + MOVQ y_cap+8(FP), AX // ERROR "invalid offset y_cap\+8\(FP\); expected y_cap\+20\(FP\)" + RET + +TEXT ·argiface(SB),0,$0-16 + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); interface type is 4-byte value" + MOVL x+0(FP), AX + MOVQ x+0(FP), AX // ERROR "invalid MOVQ of x\+0\(FP\); interface type is 4-byte value" + MOVW x_type+0(FP), AX // ERROR "invalid MOVW of x_type\+0\(FP\); interface type is 4-byte value" + MOVL x_type+0(FP), AX + MOVQ x_type+0(FP), AX // ERROR "invalid MOVQ of x_type\+0\(FP\); interface type is 4-byte value" + MOVQ x_itable+0(FP), AX // ERROR "unknown variable x_itable; offset 0 is x_type\+0\(FP\)" + MOVQ x_itable+1(FP), AX // ERROR "unknown variable x_itable; offset 1 is x_type\+0\(FP\)" + MOVW x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+4\(FP\)" + MOVL x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+4\(FP\)" + MOVQ x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+4\(FP\)" + MOVW x_data+4(FP), AX // ERROR "invalid MOVW of x_data\+4\(FP\); interface data is 4-byte value" + MOVL x_data+4(FP), AX + MOVQ x_data+4(FP), AX // ERROR "invalid MOVQ of x_data\+4\(FP\); interface data is 4-byte value" + MOVW y+8(FP), AX // ERROR "invalid MOVW of y\+8\(FP\); interface itable is 4-byte value" + MOVL y+8(FP), AX + MOVQ y+8(FP), AX // ERROR "invalid MOVQ of y\+8\(FP\); interface itable is 4-byte value" + MOVW y_itable+8(FP), AX // ERROR "invalid MOVW of y_itable\+8\(FP\); interface itable is 4-byte value" + MOVL y_itable+8(FP), AX + MOVQ y_itable+8(FP), AX // ERROR "invalid MOVQ of y_itable\+8\(FP\); interface itable is 4-byte value" + MOVQ y_type+8(FP), AX // ERROR "unknown variable y_type; offset 8 is y_itable\+8\(FP\)" + MOVW y_data+8(FP), AX // ERROR "invalid offset y_data\+8\(FP\); expected y_data\+12\(FP\)" + MOVL y_data+8(FP), AX // ERROR "invalid offset y_data\+8\(FP\); expected y_data\+12\(FP\)" + MOVQ y_data+8(FP), AX // ERROR "invalid offset y_data\+8\(FP\); expected y_data\+12\(FP\)" + MOVW y_data+12(FP), AX // ERROR "invalid MOVW of y_data\+12\(FP\); interface data is 4-byte value" + MOVL y_data+12(FP), AX + MOVQ y_data+12(FP), AX // ERROR "invalid MOVQ of y_data\+12\(FP\); interface data is 4-byte value" + RET + +TEXT ·returnint(SB),0,$0-4 + MOVB AX, ret+0(FP) // ERROR "invalid MOVB of ret\+0\(FP\); int is 4-byte value" + MOVW AX, ret+0(FP) // ERROR "invalid MOVW of ret\+0\(FP\); int is 4-byte value" + MOVL AX, ret+0(FP) + MOVQ AX, ret+0(FP) // ERROR "invalid MOVQ of ret\+0\(FP\); int is 4-byte value" + MOVQ AX, ret+1(FP) // ERROR "invalid offset ret\+1\(FP\); expected ret\+0\(FP\)" + MOVQ AX, r+0(FP) // ERROR "unknown variable r; offset 0 is ret\+0\(FP\)" + RET + +TEXT ·returnbyte(SB),0,$0-5 + MOVL x+0(FP), AX + MOVB AX, ret+4(FP) + MOVW AX, ret+4(FP) // ERROR "invalid MOVW of ret\+4\(FP\); byte is 1-byte value" + MOVL AX, ret+4(FP) // ERROR "invalid MOVL of ret\+4\(FP\); byte is 1-byte value" + MOVQ AX, ret+4(FP) // ERROR "invalid MOVQ of ret\+4\(FP\); byte is 1-byte value" + MOVB AX, ret+3(FP) // ERROR "invalid offset ret\+3\(FP\); expected ret\+4\(FP\)" + RET + +TEXT ·returnnamed(SB),0,$0-21 + MOVB x+0(FP), AX + MOVL AX, r1+4(FP) + MOVW AX, r2+8(FP) + MOVL AX, r3+12(FP) + MOVL AX, r3_base+12(FP) + MOVL AX, r3_len+16(FP) + MOVB AX, r4+20(FP) + MOVQ AX, r1+4(FP) // ERROR "invalid MOVQ of r1\+4\(FP\); int is 4-byte value" + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm3.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm3.s new file mode 100644 index 00000000..bf98805a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm3.s @@ -0,0 +1,166 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build arm +// +build vet_test + +TEXT ·arg1(SB),0,$0-2 + MOVB x+0(FP), AX + MOVB y+1(FP), BX + MOVH x+0(FP), AX // ERROR "\[arm\] invalid MOVH of x\+0\(FP\); int8 is 1-byte value" + MOVH y+1(FP), AX // ERROR "invalid MOVH of y\+1\(FP\); uint8 is 1-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int8 is 1-byte value" + MOVW y+1(FP), AX // ERROR "invalid MOVW of y\+1\(FP\); uint8 is 1-byte value" + MOVB x+1(FP), AX // ERROR "invalid offset x\+1\(FP\); expected x\+0\(FP\)" + MOVB y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+1\(FP\)" + RET + +TEXT ·arg2(SB),0,$0-4 + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int16 is 2-byte value" + MOVB y+2(FP), AX // ERROR "invalid MOVB of y\+2\(FP\); uint16 is 2-byte value" + MOVH x+0(FP), AX + MOVH y+2(FP), BX + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int16 is 2-byte value" + MOVW y+2(FP), AX // ERROR "invalid MOVW of y\+2\(FP\); uint16 is 2-byte value" + MOVH x+2(FP), AX // ERROR "invalid offset x\+2\(FP\); expected x\+0\(FP\)" + MOVH y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+2\(FP\)" + RET + +TEXT ·arg4(SB),0,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-8" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int32 is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); uint32 is 4-byte value" + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); int32 is 4-byte value" + MOVH y+4(FP), AX // ERROR "invalid MOVH of y\+4\(FP\); uint32 is 4-byte value" + MOVW x+0(FP), AX + MOVW y+4(FP), AX + MOVW x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVW y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + RET + +TEXT ·arg8(SB),7,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-16" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int64 is 8-byte value" + MOVB y+8(FP), BX // ERROR "invalid MOVB of y\+8\(FP\); uint64 is 8-byte value" + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); int64 is 8-byte value" + MOVH y+8(FP), AX // ERROR "invalid MOVH of y\+8\(FP\); uint64 is 8-byte value" + MOVW x+0(FP), AX // ERROR "invalid MOVW of x\+0\(FP\); int64 is 8-byte value containing x_lo\+0\(FP\) and x_hi\+4\(FP\)" + MOVW x_lo+0(FP), AX + MOVW x_hi+4(FP), AX + MOVW y+8(FP), AX // ERROR "invalid MOVW of y\+8\(FP\); uint64 is 8-byte value containing y_lo\+8\(FP\) and y_hi\+12\(FP\)" + MOVW y_lo+8(FP), AX + MOVW y_hi+12(FP), AX + MOVQ x+0(FP), AX + MOVQ y+8(FP), AX + MOVQ x+8(FP), AX // ERROR "invalid offset x\+8\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+8\(FP\)" + RET + +TEXT ·argint(SB),0,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-8" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); int is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); uint is 4-byte value" + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); int is 4-byte value" + MOVH y+4(FP), AX // ERROR "invalid MOVH of y\+4\(FP\); uint is 4-byte value" + MOVW x+0(FP), AX + MOVW y+4(FP), AX + MOVQ x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + RET + +TEXT ·argptr(SB),7,$0-2 // ERROR "wrong argument size 2; expected \$\.\.\.-20" + MOVB x+0(FP), AX // ERROR "invalid MOVB of x\+0\(FP\); \*byte is 4-byte value" + MOVB y+4(FP), BX // ERROR "invalid MOVB of y\+4\(FP\); \*byte is 4-byte value" + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); \*byte is 4-byte value" + MOVH y+4(FP), AX // ERROR "invalid MOVH of y\+4\(FP\); \*byte is 4-byte value" + MOVW x+0(FP), AX + MOVW y+4(FP), AX + MOVQ x+4(FP), AX // ERROR "invalid offset x\+4\(FP\); expected x\+0\(FP\)" + MOVQ y+2(FP), AX // ERROR "invalid offset y\+2\(FP\); expected y\+4\(FP\)" + MOVH c+8(FP), AX // ERROR "invalid MOVH of c\+8\(FP\); chan int is 4-byte value" + MOVH m+12(FP), AX // ERROR "invalid MOVH of m\+12\(FP\); map\[int\]int is 4-byte value" + MOVH f+16(FP), AX // ERROR "invalid MOVH of f\+16\(FP\); func\(\) is 4-byte value" + RET + +TEXT ·argstring(SB),0,$16 // ERROR "wrong argument size 0; expected \$\.\.\.-16" + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); string base is 4-byte value" + MOVW x+0(FP), AX + MOVH x_base+0(FP), AX // ERROR "invalid MOVH of x_base\+0\(FP\); string base is 4-byte value" + MOVW x_base+0(FP), AX + MOVH x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVW x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVQ x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVH x_len+4(FP), AX // ERROR "invalid MOVH of x_len\+4\(FP\); string len is 4-byte value" + MOVW x_len+4(FP), AX + MOVQ y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+8\(FP\)" + MOVQ y_len+4(FP), AX // ERROR "invalid offset y_len\+4\(FP\); expected y_len\+12\(FP\)" + RET + +TEXT ·argslice(SB),0,$24 // ERROR "wrong argument size 0; expected \$\.\.\.-24" + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); slice base is 4-byte value" + MOVW x+0(FP), AX + MOVH x_base+0(FP), AX // ERROR "invalid MOVH of x_base\+0\(FP\); slice base is 4-byte value" + MOVW x_base+0(FP), AX + MOVH x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVW x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVQ x_len+0(FP), AX // ERROR "invalid offset x_len\+0\(FP\); expected x_len\+4\(FP\)" + MOVH x_len+4(FP), AX // ERROR "invalid MOVH of x_len\+4\(FP\); slice len is 4-byte value" + MOVW x_len+4(FP), AX + MOVH x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+8\(FP\)" + MOVW x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+8\(FP\)" + MOVQ x_cap+0(FP), AX // ERROR "invalid offset x_cap\+0\(FP\); expected x_cap\+8\(FP\)" + MOVH x_cap+8(FP), AX // ERROR "invalid MOVH of x_cap\+8\(FP\); slice cap is 4-byte value" + MOVW x_cap+8(FP), AX + MOVQ y+0(FP), AX // ERROR "invalid offset y\+0\(FP\); expected y\+12\(FP\)" + MOVQ y_len+4(FP), AX // ERROR "invalid offset y_len\+4\(FP\); expected y_len\+16\(FP\)" + MOVQ y_cap+8(FP), AX // ERROR "invalid offset y_cap\+8\(FP\); expected y_cap\+20\(FP\)" + RET + +TEXT ·argiface(SB),0,$0-16 + MOVH x+0(FP), AX // ERROR "invalid MOVH of x\+0\(FP\); interface type is 4-byte value" + MOVW x+0(FP), AX + MOVH x_type+0(FP), AX // ERROR "invalid MOVH of x_type\+0\(FP\); interface type is 4-byte value" + MOVW x_type+0(FP), AX + MOVQ x_itable+0(FP), AX // ERROR "unknown variable x_itable; offset 0 is x_type\+0\(FP\)" + MOVQ x_itable+1(FP), AX // ERROR "unknown variable x_itable; offset 1 is x_type\+0\(FP\)" + MOVH x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+4\(FP\)" + MOVW x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+4\(FP\)" + MOVQ x_data+0(FP), AX // ERROR "invalid offset x_data\+0\(FP\); expected x_data\+4\(FP\)" + MOVH x_data+4(FP), AX // ERROR "invalid MOVH of x_data\+4\(FP\); interface data is 4-byte value" + MOVW x_data+4(FP), AX + MOVH y+8(FP), AX // ERROR "invalid MOVH of y\+8\(FP\); interface itable is 4-byte value" + MOVW y+8(FP), AX + MOVH y_itable+8(FP), AX // ERROR "invalid MOVH of y_itable\+8\(FP\); interface itable is 4-byte value" + MOVW y_itable+8(FP), AX + MOVQ y_type+8(FP), AX // ERROR "unknown variable y_type; offset 8 is y_itable\+8\(FP\)" + MOVH y_data+8(FP), AX // ERROR "invalid offset y_data\+8\(FP\); expected y_data\+12\(FP\)" + MOVW y_data+8(FP), AX // ERROR "invalid offset y_data\+8\(FP\); expected y_data\+12\(FP\)" + MOVQ y_data+8(FP), AX // ERROR "invalid offset y_data\+8\(FP\); expected y_data\+12\(FP\)" + MOVH y_data+12(FP), AX // ERROR "invalid MOVH of y_data\+12\(FP\); interface data is 4-byte value" + MOVW y_data+12(FP), AX + RET + +TEXT ·returnint(SB),0,$0-4 + MOVB AX, ret+0(FP) // ERROR "invalid MOVB of ret\+0\(FP\); int is 4-byte value" + MOVH AX, ret+0(FP) // ERROR "invalid MOVH of ret\+0\(FP\); int is 4-byte value" + MOVW AX, ret+0(FP) + MOVQ AX, ret+1(FP) // ERROR "invalid offset ret\+1\(FP\); expected ret\+0\(FP\)" + MOVQ AX, r+0(FP) // ERROR "unknown variable r; offset 0 is ret\+0\(FP\)" + RET + +TEXT ·returnbyte(SB),0,$0-5 + MOVW x+0(FP), AX + MOVB AX, ret+4(FP) + MOVH AX, ret+4(FP) // ERROR "invalid MOVH of ret\+4\(FP\); byte is 1-byte value" + MOVW AX, ret+4(FP) // ERROR "invalid MOVW of ret\+4\(FP\); byte is 1-byte value" + MOVB AX, ret+3(FP) // ERROR "invalid offset ret\+3\(FP\); expected ret\+4\(FP\)" + RET + +TEXT ·returnnamed(SB),0,$0-21 + MOVB x+0(FP), AX + MOVW AX, r1+4(FP) + MOVH AX, r2+8(FP) + MOVW AX, r3+12(FP) + MOVW AX, r3_base+12(FP) + MOVW AX, r3_len+16(FP) + MOVB AX, r4+20(FP) + MOVB AX, r1+4(FP) // ERROR "invalid MOVB of r1\+4\(FP\); int is 4-byte value" + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm4.s b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm4.s new file mode 100644 index 00000000..044b050b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/asm4.s @@ -0,0 +1,26 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64 +// +build vet_test + +// Test cases for symbolic NOSPLIT etc. on TEXT symbols. + +TEXT ·noprof(SB),NOPROF,$0-8 + RET + +TEXT ·dupok(SB),DUPOK,$0-8 + RET + +TEXT ·nosplit(SB),NOSPLIT,$0 + RET + +TEXT ·rodata(SB),RODATA,$0-8 + RET + +TEXT ·noptr(SB),NOPTR|NOSPLIT,$0 + RET + +TEXT ·wrapper(SB),WRAPPER,$0-8 + RET diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/assign.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/assign.go new file mode 100644 index 00000000..32ba8683 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/assign.go @@ -0,0 +1,18 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the useless-assignment checker. + +package testdata + +type ST struct { + x int +} + +func (s *ST) SetX(x int) { + // Accidental self-assignment; it should be "s.x = x" + x = x // ERROR "self-assignment of x to x" + // Another mistake + s.x = s.x // ERROR "self-assignment of s.x to s.x" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/atomic.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/atomic.go new file mode 100644 index 00000000..7a6dcb8c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/atomic.go @@ -0,0 +1,41 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the atomic checker. + +package testdata + +import ( + "sync/atomic" +) + +type Counter uint64 + +func AtomicTests() { + x := uint64(1) + x = atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value" + _, x = 10, atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value" + x, _ = atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value" + + y := &x + *y = atomic.AddUint64(y, 1) // ERROR "direct assignment to atomic value" + + var su struct{ Counter uint64 } + su.Counter = atomic.AddUint64(&su.Counter, 1) // ERROR "direct assignment to atomic value" + z1 := atomic.AddUint64(&su.Counter, 1) + _ = z1 // Avoid err "z declared and not used" + + var sp struct{ Counter *uint64 } + *sp.Counter = atomic.AddUint64(sp.Counter, 1) // ERROR "direct assignment to atomic value" + z2 := atomic.AddUint64(sp.Counter, 1) + _ = z2 // Avoid err "z declared and not used" + + au := []uint64{10, 20} + au[0] = atomic.AddUint64(&au[0], 1) // ERROR "direct assignment to atomic value" + au[1] = atomic.AddUint64(&au[0], 1) + + ap := []*uint64{&au[0], &au[1]} + *ap[0] = atomic.AddUint64(ap[0], 1) // ERROR "direct assignment to atomic value" + *ap[1] = atomic.AddUint64(ap[0], 1) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/buildtag.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/buildtag.go new file mode 100644 index 00000000..eb36fd32 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/buildtag.go @@ -0,0 +1,14 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the buildtag checker. + +// +builder // ERROR "possible malformed \+build comment" +// +build !ignore + +package testdata + +// +build toolate // ERROR "build comment must appear before package clause and be followed by a blank line" + +var _ = 3 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/buildtag_bad.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/buildtag_bad.go new file mode 100644 index 00000000..fbe10cf7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/buildtag_bad.go @@ -0,0 +1,15 @@ +// This file contains misplaced or malformed build constraints. +// The Go tool will skip it, because the constraints are invalid. +// It serves only to test the tag checker during make test. + +// Mention +build // ERROR "possible malformed \+build comment" + +// +build !!bang // ERROR "invalid double negative in build constraint" +// +build @#$ // ERROR "invalid non-alphanumeric build constraint" + +// +build toolate // ERROR "build comment must appear before package clause and be followed by a blank line" +package bad + +// This is package 'bad' rather than 'main' so the erroneous build +// tag doesn't end up looking like a package doc for the vet command +// when examined by godoc. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/composite.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/composite.go new file mode 100644 index 00000000..69e7d7cc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/composite.go @@ -0,0 +1,63 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the untagged struct literal checker. + +// This file contains the test for untagged struct literals. + +package testdata + +import ( + "flag" + "go/scanner" +) + +var Okay1 = []string{ + "Name", + "Usage", + "DefValue", +} + +var Okay2 = map[string]bool{ + "Name": true, + "Usage": true, + "DefValue": true, +} + +var Okay3 = struct { + X string + Y string + Z string +}{ + "Name", + "Usage", + "DefValue", +} + +type MyStruct struct { + X string + Y string + Z string +} + +var Okay4 = MyStruct{ + "Name", + "Usage", + "DefValue", +} + +// Testing is awkward because we need to reference things from a separate package +// to trigger the warnings. + +var BadStructLiteralUsedInTests = flag.Flag{ // ERROR "unkeyed fields" + "Name", + "Usage", + nil, // Value + "DefValue", +} + +// Used to test the check for slices and arrays: If that test is disabled and +// vet is run with --compositewhitelist=false, this line triggers an error. +// Clumsy but sufficient. +var scannerErrorListTest = scanner.ErrorList{nil, nil} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/copylock.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/copylock.go new file mode 100644 index 00000000..db42d638 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/copylock.go @@ -0,0 +1,89 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the copylock checker. + +package testdata + +import "sync" + +func OkFunc(*sync.Mutex) {} +func BadFunc(sync.Mutex) {} // ERROR "BadFunc passes Lock by value: sync.Mutex" +func OkRet() *sync.Mutex {} +func BadRet() sync.Mutex {} // ERROR "BadRet returns Lock by value: sync.Mutex" + +type EmbeddedRWMutex struct { + sync.RWMutex +} + +func (*EmbeddedRWMutex) OkMeth() {} +func (EmbeddedRWMutex) BadMeth() {} // ERROR "BadMeth passes Lock by value: testdata.EmbeddedRWMutex" +func OkFunc(e *EmbeddedRWMutex) {} +func BadFunc(EmbeddedRWMutex) {} // ERROR "BadFunc passes Lock by value: testdata.EmbeddedRWMutex" +func OkRet() *EmbeddedRWMutex {} +func BadRet() EmbeddedRWMutex {} // ERROR "BadRet returns Lock by value: testdata.EmbeddedRWMutex" + +type FieldMutex struct { + s sync.Mutex +} + +func (*FieldMutex) OkMeth() {} +func (FieldMutex) BadMeth() {} // ERROR "BadMeth passes Lock by value: testdata.FieldMutex contains sync.Mutex" +func OkFunc(*FieldMutex) {} +func BadFunc(FieldMutex, int) {} // ERROR "BadFunc passes Lock by value: testdata.FieldMutex contains sync.Mutex" + +type L0 struct { + L1 +} + +type L1 struct { + l L2 +} + +type L2 struct { + sync.Mutex +} + +func (*L0) Ok() {} +func (L0) Bad() {} // ERROR "Bad passes Lock by value: testdata.L0 contains testdata.L1 contains testdata.L2" + +type EmbeddedMutexPointer struct { + s *sync.Mutex // safe to copy this pointer +} + +func (*EmbeddedMutexPointer) Ok() {} +func (EmbeddedMutexPointer) AlsoOk() {} +func StillOk(EmbeddedMutexPointer) {} +func LookinGood() EmbeddedMutexPointer {} + +type EmbeddedLocker struct { + sync.Locker // safe to copy interface values +} + +func (*EmbeddedLocker) Ok() {} +func (EmbeddedLocker) AlsoOk() {} + +type CustomLock struct{} + +func (*CustomLock) Lock() {} +func (*CustomLock) Unlock() {} + +func Ok(*CustomLock) {} +func Bad(CustomLock) {} // ERROR "Bad passes Lock by value: testdata.CustomLock" + +// TODO: Unfortunate cases + +// Non-ideal error message: +// Since we're looking for Lock methods, sync.Once's underlying +// sync.Mutex gets called out, but without any reference to the sync.Once. +type LocalOnce sync.Once + +func (LocalOnce) Bad() {} // ERROR "Bad passes Lock by value: testdata.LocalOnce contains sync.Mutex" + +// False negative: +// LocalMutex doesn't have a Lock method. +// Nevertheless, it is probably a bad idea to pass it by value. +type LocalMutex sync.Mutex + +func (LocalMutex) Bad() {} // WANTED: An error here :( diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/deadcode.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/deadcode.go new file mode 100644 index 00000000..3028c98b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/deadcode.go @@ -0,0 +1,2120 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build ignore + +// This file contains tests for the dead code checker. + +package testdata + +type T int + +var x interface{} +var c chan int + +func external() int // ok + +func _() int { +} + +func _() int { + print(1) +} + +func _() int { + print(1) + return 2 + println() // ERROR "unreachable code" +} + +func _() int { +L: + print(1) + goto L + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + panic(2) + println() // ERROR "unreachable code" +} + +// but only builtin panic +func _() int { + var panic = func(int) {} + print(1) + panic(2) + println() // ok +} + +func _() int { + { + print(1) + return 2 + println() // ERROR "unreachable code" + } + println() // ok +} + +func _() int { + { + print(1) + return 2 + } + println() // ERROR "unreachable code" +} + +func _() int { +L: + { + print(1) + goto L + println() // ERROR "unreachable code" + } + println() // ok +} + +func _() int { +L: + { + print(1) + goto L + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + { + panic(2) + } +} + +func _() int { + print(1) + { + panic(2) + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + { + panic(2) + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + return 2 + { // ERROR "unreachable code" + } +} + +func _() int { +L: + print(1) + goto L + { // ERROR "unreachable code" + } +} + +func _() int { + print(1) + panic(2) + { // ERROR "unreachable code" + } +} + +func _() int { + { + print(1) + return 2 + { // ERROR "unreachable code" + } + } +} + +func _() int { +L: + { + print(1) + goto L + { // ERROR "unreachable code" + } + } +} + +func _() int { + print(1) + { + panic(2) + { // ERROR "unreachable code" + } + } +} + +func _() int { + { + print(1) + return 2 + } + { // ERROR "unreachable code" + } +} + +func _() int { +L: + { + print(1) + goto L + } + { // ERROR "unreachable code" + } +} + +func _() int { + print(1) + { + panic(2) + } + { // ERROR "unreachable code" + } +} + +func _() int { + print(1) + if x == nil { + panic(2) + } else { + panic(3) + } + println() // ERROR "unreachable code" +} + +func _() int { +L: + print(1) + if x == nil { + panic(2) + } else { + goto L + } + println() // ERROR "unreachable code" +} + +func _() int { +L: + print(1) + if x == nil { + panic(2) + } else if x == 1 { + return 0 + } else if x != 2 { + panic(3) + } else { + goto L + } + println() // ERROR "unreachable code" +} + +// if-else chain missing final else is not okay, even if the +// conditions cover every possible case. + +func _() int { + print(1) + if x == nil { + panic(2) + } else if x != nil { + panic(3) + } + println() // ok +} + +func _() int { + print(1) + if x == nil { + panic(2) + } + println() // ok +} + +func _() int { +L: + print(1) + if x == nil { + panic(2) + } else if x == 1 { + return 0 + } else if x != 1 { + panic(3) + } + println() // ok +} + +func _() int { + print(1) + for { + } + println() // ERROR "unreachable code" +} + +func _() int { + for { + for { + break + } + } + println() // ERROR "unreachable code" +} + +func _() int { + for { + for { + break + println() // ERROR "unreachable code" + } + } +} + +func _() int { + for { + for { + continue + println() // ERROR "unreachable code" + } + } +} + +func _() int { + for { + L: + for { + break L + } + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + for { + break + } + println() // ok +} + +func _() int { + for { + for { + } + break // ERROR "unreachable code" + } + println() // ok +} + +func _() int { +L: + for { + for { + break L + } + } + println() // ok +} + +func _() int { + print(1) + for x == nil { + } + println() // ok +} + +func _() int { + for x == nil { + for { + break + } + } + println() // ok +} + +func _() int { + for x == nil { + L: + for { + break L + } + } + println() // ok +} + +func _() int { + print(1) + for true { + } + println() // ok +} + +func _() int { + for true { + for { + break + } + } + println() // ok +} + +func _() int { + for true { + L: + for { + break L + } + } + println() // ok +} + +func _() int { + print(1) + select {} + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + select { + case <-c: + print(2) + for { + } + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + select { + case <-c: + print(2) + for { + } + } + println() // ERROR "unreachable code" +} + +func _() int { +L: + print(1) + select { + case <-c: + print(2) + panic("abc") + println() // ERROR "unreachable code" + case c <- 1: + print(2) + goto L + println() // ERROR "unreachable code" + } +} + +func _() int { +L: + print(1) + select { + case <-c: + print(2) + panic("abc") + case c <- 1: + print(2) + goto L + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + println() // ERROR "unreachable code" + default: + select {} + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + default: + select {} + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + select { + case <-c: + print(2) + } + println() // ok +} + +func _() int { +L: + print(1) + select { + case <-c: + print(2) + panic("abc") + goto L // ERROR "unreachable code" + case c <- 1: + print(2) + } + println() // ok +} + +func _() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + default: + print(2) + } + println() // ok +} + +func _() int { + print(1) + select { + default: + break + } + println() // ok +} + +func _() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + break // ERROR "unreachable code" + } + println() // ok +} + +func _() int { + print(1) +L: + select { + case <-c: + print(2) + for { + break L + } + } + println() // ok +} + +func _() int { + print(1) +L: + select { + case <-c: + print(2) + panic("abc") + case c <- 1: + print(2) + break L + } + println() // ok +} + +func _() int { + print(1) + select { + case <-c: + print(1) + panic("abc") + default: + select {} + break // ERROR "unreachable code" + } + println() // ok +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + println() // ERROR "unreachable code" + default: + return 4 + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + default: + return 4 + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + switch x { + default: + return 4 + println() // ERROR "unreachable code" + case 1: + print(2) + panic(3) + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + switch x { + default: + return 4 + case 1: + print(2) + panic(3) + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + fallthrough + default: + return 4 + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + fallthrough + default: + return 4 + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + switch { + } + println() // ok +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + case 2: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x { + case 2: + return 4 + case 1: + print(2) + panic(3) + } + println() // ok +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + fallthrough + case 2: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + } + println() // ok +} + +func _() int { + print(1) +L: + switch x { + case 1: + print(2) + panic(3) + break L // ERROR "unreachable code" + default: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x { + default: + return 4 + break // ERROR "unreachable code" + case 1: + print(2) + panic(3) + } + println() // ok +} + +func _() int { + print(1) +L: + switch x { + case 1: + print(2) + for { + break L + } + default: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + println() // ERROR "unreachable code" + default: + return 4 + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + default: + return 4 + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + switch x.(type) { + default: + return 4 + println() // ERROR "unreachable code" + case int: + print(2) + panic(3) + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + switch x.(type) { + default: + return 4 + case int: + print(2) + panic(3) + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + fallthrough + default: + return 4 + println() // ERROR "unreachable code" + } +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + fallthrough + default: + return 4 + } + println() // ERROR "unreachable code" +} + +func _() int { + print(1) + switch { + } + println() // ok +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + case float64: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x.(type) { + case float64: + return 4 + case int: + print(2) + panic(3) + } + println() // ok +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + fallthrough + case float64: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + } + println() // ok +} + +func _() int { + print(1) +L: + switch x.(type) { + case int: + print(2) + panic(3) + break L // ERROR "unreachable code" + default: + return 4 + } + println() // ok +} + +func _() int { + print(1) + switch x.(type) { + default: + return 4 + break // ERROR "unreachable code" + case int: + print(2) + panic(3) + } + println() // ok +} + +func _() int { + print(1) +L: + switch x.(type) { + case int: + print(2) + for { + break L + } + default: + return 4 + } + println() // ok +} + +// again, but without the leading print(1). +// testing that everything works when the terminating statement is first. + +func _() int { + println() // ok +} + +func _() int { + return 2 + println() // ERROR "unreachable code" +} + +func _() int { +L: + goto L + println() // ERROR "unreachable code" +} + +func _() int { + panic(2) + println() // ERROR "unreachable code" +} + +// but only builtin panic +func _() int { + var panic = func(int) {} + panic(2) + println() // ok +} + +func _() int { + { + return 2 + println() // ERROR "unreachable code" + } +} + +func _() int { + { + return 2 + } + println() // ERROR "unreachable code" +} + +func _() int { +L: + { + goto L + println() // ERROR "unreachable code" + } +} + +func _() int { +L: + { + goto L + } + println() // ERROR "unreachable code" +} + +func _() int { + { + panic(2) + println() // ERROR "unreachable code" + } +} + +func _() int { + { + panic(2) + } + println() // ERROR "unreachable code" +} + +func _() int { + return 2 + { // ERROR "unreachable code" + } + println() // ok +} + +func _() int { +L: + goto L + { // ERROR "unreachable code" + } + println() // ok +} + +func _() int { + panic(2) + { // ERROR "unreachable code" + } + println() // ok +} + +func _() int { + { + return 2 + { // ERROR "unreachable code" + } + } + println() // ok +} + +func _() int { +L: + { + goto L + { // ERROR "unreachable code" + } + } + println() // ok +} + +func _() int { + { + panic(2) + { // ERROR "unreachable code" + } + } + println() // ok +} + +func _() int { + { + return 2 + } + { // ERROR "unreachable code" + } + println() // ok +} + +func _() int { +L: + { + goto L + } + { // ERROR "unreachable code" + } + println() // ok +} + +func _() int { + { + panic(2) + } + { // ERROR "unreachable code" + } + println() // ok +} + +// again, with func literals + +var _ = func() int { +} + +var _ = func() int { + print(1) +} + +var _ = func() int { + print(1) + return 2 + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + print(1) + goto L + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + panic(2) + println() // ERROR "unreachable code" +} + +// but only builtin panic +var _ = func() int { + var panic = func(int) {} + print(1) + panic(2) + println() // ok +} + +var _ = func() int { + { + print(1) + return 2 + println() // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { + { + print(1) + return 2 + } + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + { + print(1) + goto L + println() // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { +L: + { + print(1) + goto L + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + { + panic(2) + } +} + +var _ = func() int { + print(1) + { + panic(2) + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + { + panic(2) + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + return 2 + { // ERROR "unreachable code" + } +} + +var _ = func() int { +L: + print(1) + goto L + { // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + panic(2) + { // ERROR "unreachable code" + } +} + +var _ = func() int { + { + print(1) + return 2 + { // ERROR "unreachable code" + } + } +} + +var _ = func() int { +L: + { + print(1) + goto L + { // ERROR "unreachable code" + } + } +} + +var _ = func() int { + print(1) + { + panic(2) + { // ERROR "unreachable code" + } + } +} + +var _ = func() int { + { + print(1) + return 2 + } + { // ERROR "unreachable code" + } +} + +var _ = func() int { +L: + { + print(1) + goto L + } + { // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + { + panic(2) + } + { // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + if x == nil { + panic(2) + } else { + panic(3) + } + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + print(1) + if x == nil { + panic(2) + } else { + goto L + } + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + print(1) + if x == nil { + panic(2) + } else if x == 1 { + return 0 + } else if x != 2 { + panic(3) + } else { + goto L + } + println() // ERROR "unreachable code" +} + +// if-else chain missing final else is not okay, even if the +// conditions cover every possible case. + +var _ = func() int { + print(1) + if x == nil { + panic(2) + } else if x != nil { + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) + if x == nil { + panic(2) + } + println() // ok +} + +var _ = func() int { +L: + print(1) + if x == nil { + panic(2) + } else if x == 1 { + return 0 + } else if x != 1 { + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) + for { + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + for { + for { + break + } + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + for { + for { + break + println() // ERROR "unreachable code" + } + } +} + +var _ = func() int { + for { + for { + continue + println() // ERROR "unreachable code" + } + } +} + +var _ = func() int { + for { + L: + for { + break L + } + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + for { + break + } + println() // ok +} + +var _ = func() int { + for { + for { + } + break // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { +L: + for { + for { + break L + } + } + println() // ok +} + +var _ = func() int { + print(1) + for x == nil { + } + println() // ok +} + +var _ = func() int { + for x == nil { + for { + break + } + } + println() // ok +} + +var _ = func() int { + for x == nil { + L: + for { + break L + } + } + println() // ok +} + +var _ = func() int { + print(1) + for true { + } + println() // ok +} + +var _ = func() int { + for true { + for { + break + } + } + println() // ok +} + +var _ = func() int { + for true { + L: + for { + break L + } + } + println() // ok +} + +var _ = func() int { + print(1) + select {} + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + for { + } + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + for { + } + } + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + print(1) + select { + case <-c: + print(2) + panic("abc") + println() // ERROR "unreachable code" + case c <- 1: + print(2) + goto L + println() // ERROR "unreachable code" + } +} + +var _ = func() int { +L: + print(1) + select { + case <-c: + print(2) + panic("abc") + case c <- 1: + print(2) + goto L + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + println() // ERROR "unreachable code" + default: + select {} + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + default: + select {} + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + } + println() // ok +} + +var _ = func() int { +L: + print(1) + select { + case <-c: + print(2) + panic("abc") + goto L // ERROR "unreachable code" + case c <- 1: + print(2) + } + println() // ok +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + default: + print(2) + } + println() // ok +} + +var _ = func() int { + print(1) + select { + default: + break + } + println() // ok +} + +var _ = func() int { + print(1) + select { + case <-c: + print(2) + panic("abc") + break // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { + print(1) +L: + select { + case <-c: + print(2) + for { + break L + } + } + println() // ok +} + +var _ = func() int { + print(1) +L: + select { + case <-c: + print(2) + panic("abc") + case c <- 1: + print(2) + break L + } + println() // ok +} + +var _ = func() int { + print(1) + select { + case <-c: + print(1) + panic("abc") + default: + select {} + break // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + println() // ERROR "unreachable code" + default: + return 4 + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + default: + return 4 + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + switch x { + default: + return 4 + println() // ERROR "unreachable code" + case 1: + print(2) + panic(3) + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + switch x { + default: + return 4 + case 1: + print(2) + panic(3) + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + fallthrough + default: + return 4 + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + fallthrough + default: + return 4 + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + switch { + } + println() // ok +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + case 2: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x { + case 2: + return 4 + case 1: + print(2) + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + fallthrough + case 2: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x { + case 1: + print(2) + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) +L: + switch x { + case 1: + print(2) + panic(3) + break L // ERROR "unreachable code" + default: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x { + default: + return 4 + break // ERROR "unreachable code" + case 1: + print(2) + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) +L: + switch x { + case 1: + print(2) + for { + break L + } + default: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + println() // ERROR "unreachable code" + default: + return 4 + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + default: + return 4 + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + switch x.(type) { + default: + return 4 + println() // ERROR "unreachable code" + case int: + print(2) + panic(3) + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + switch x.(type) { + default: + return 4 + case int: + print(2) + panic(3) + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + fallthrough + default: + return 4 + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + fallthrough + default: + return 4 + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + print(1) + switch { + } + println() // ok +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + case float64: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x.(type) { + case float64: + return 4 + case int: + print(2) + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + fallthrough + case float64: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x.(type) { + case int: + print(2) + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) +L: + switch x.(type) { + case int: + print(2) + panic(3) + break L // ERROR "unreachable code" + default: + return 4 + } + println() // ok +} + +var _ = func() int { + print(1) + switch x.(type) { + default: + return 4 + break // ERROR "unreachable code" + case int: + print(2) + panic(3) + } + println() // ok +} + +var _ = func() int { + print(1) +L: + switch x.(type) { + case int: + print(2) + for { + break L + } + default: + return 4 + } + println() // ok +} + +// again, but without the leading print(1). +// testing that everything works when the terminating statement is first. + +var _ = func() int { + println() // ok +} + +var _ = func() int { + return 2 + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + goto L + println() // ERROR "unreachable code" +} + +var _ = func() int { + panic(2) + println() // ERROR "unreachable code" +} + +// but only builtin panic +var _ = func() int { + var panic = func(int) {} + panic(2) + println() // ok +} + +var _ = func() int { + { + return 2 + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + { + return 2 + } + println() // ERROR "unreachable code" +} + +var _ = func() int { +L: + { + goto L + println() // ERROR "unreachable code" + } +} + +var _ = func() int { +L: + { + goto L + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + { + panic(2) + println() // ERROR "unreachable code" + } +} + +var _ = func() int { + { + panic(2) + } + println() // ERROR "unreachable code" +} + +var _ = func() int { + return 2 + { // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { +L: + goto L + { // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { + panic(2) + { // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { + { + return 2 + { // ERROR "unreachable code" + } + } + println() // ok +} + +var _ = func() int { +L: + { + goto L + { // ERROR "unreachable code" + } + } + println() // ok +} + +var _ = func() int { + { + panic(2) + { // ERROR "unreachable code" + } + } + println() // ok +} + +var _ = func() int { + { + return 2 + } + { // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { +L: + { + goto L + } + { // ERROR "unreachable code" + } + println() // ok +} + +var _ = func() int { + { + panic(2) + } + { // ERROR "unreachable code" + } + println() // ok +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/method.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/method.go new file mode 100644 index 00000000..52b500df --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/method.go @@ -0,0 +1,22 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the canonical method checker. + +// This file contains the code to check canonical methods. + +package testdata + +import ( + "fmt" +) + +type MethodTest int + +func (t *MethodTest) Scan(x fmt.ScanState, c byte) { // ERROR "should have signature Scan" +} + +type MethodTestInterface interface { + ReadByte() byte // ERROR "should have signature ReadByte" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/nilfunc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/nilfunc.go new file mode 100644 index 00000000..2ce7bc8c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/nilfunc.go @@ -0,0 +1,35 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package testdata + +func F() {} + +type T struct { + F func() +} + +func (T) M() {} + +var Fv = F + +func Comparison() { + var t T + var fn func() + if fn == nil || Fv == nil || t.F == nil { + // no error; these func vars or fields may be nil + } + if F == nil { // ERROR "comparison of function F == nil is always false" + panic("can't happen") + } + if t.M == nil { // ERROR "comparison of function M == nil is always false" + panic("can't happen") + } + if F != nil { // ERROR "comparison of function F != nil is always true" + if t.M != nil { // ERROR "comparison of function M != nil is always true" + return + } + } + panic("can't happen") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/print.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/print.go new file mode 100644 index 00000000..4f3d249d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/print.go @@ -0,0 +1,332 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the printf checker. + +package testdata + +import ( + "fmt" + "os" + "unsafe" // just for test case printing unsafe.Pointer +) + +func UnsafePointerPrintfTest() { + var up unsafe.Pointer + fmt.Printf("%p, %x %X", up, up, up) +} + +// Error methods that do not satisfy the Error interface and should be checked. +type errorTest1 int + +func (errorTest1) Error(...interface{}) string { + return "hi" +} + +type errorTest2 int // Analogous to testing's *T type. +func (errorTest2) Error(...interface{}) { +} + +type errorTest3 int + +func (errorTest3) Error() { // No return value. +} + +type errorTest4 int + +func (errorTest4) Error() int { // Different return type. + return 3 +} + +type errorTest5 int + +func (errorTest5) error() { // niladic; don't complain if no args (was bug) +} + +// This function never executes, but it serves as a simple test for the program. +// Test with make test. +func PrintfTests() { + var b bool + var i int + var r rune + var s string + var x float64 + var p *int + var imap map[int]int + var fslice []float64 + var c complex64 + // Some good format/argtypes + fmt.Printf("") + fmt.Printf("%b %b %b", 3, i, x) + fmt.Printf("%c %c %c %c", 3, i, 'x', r) + fmt.Printf("%d %d %d", 3, i, imap) + fmt.Printf("%e %e %e %e", 3e9, x, fslice, c) + fmt.Printf("%E %E %E %E", 3e9, x, fslice, c) + fmt.Printf("%f %f %f %f", 3e9, x, fslice, c) + fmt.Printf("%F %F %F %F", 3e9, x, fslice, c) + fmt.Printf("%g %g %g %g", 3e9, x, fslice, c) + fmt.Printf("%G %G %G %G", 3e9, x, fslice, c) + fmt.Printf("%b %b %b %b", 3e9, x, fslice, c) + fmt.Printf("%o %o", 3, i) + fmt.Printf("%p %p", p, nil) + fmt.Printf("%q %q %q %q", 3, i, 'x', r) + fmt.Printf("%s %s %s", "hi", s, []byte{65}) + fmt.Printf("%t %t", true, b) + fmt.Printf("%T %T", 3, i) + fmt.Printf("%U %U", 3, i) + fmt.Printf("%v %v", 3, i) + fmt.Printf("%x %x %x %x", 3, i, "hi", s) + fmt.Printf("%X %X %X %X", 3, i, "hi", s) + fmt.Printf("%.*s %d %g", 3, "hi", 23, 2.3) + fmt.Printf("%s", &stringerv) + fmt.Printf("%v", &stringerv) + fmt.Printf("%T", &stringerv) + fmt.Printf("%v", notstringerv) + fmt.Printf("%T", notstringerv) + fmt.Printf("%q", stringerarrayv) + fmt.Printf("%v", stringerarrayv) + fmt.Printf("%s", stringerarrayv) + fmt.Printf("%v", notstringerarrayv) + fmt.Printf("%T", notstringerarrayv) + fmt.Printf("%d", new(Formatter)) + fmt.Printf("%*%", 2) // Ridiculous but allowed. + fmt.Printf("%s", interface{}(nil)) // Nothing useful we can say. + + fmt.Printf("%g", 1+2i) + // Some bad format/argTypes + fmt.Printf("%b", "hi") // ERROR "arg .hi. for printf verb %b of wrong type" + fmt.Printf("%t", c) // ERROR "arg c for printf verb %t of wrong type" + fmt.Printf("%t", 1+2i) // ERROR "arg 1 \+ 2i for printf verb %t of wrong type" + fmt.Printf("%c", 2.3) // ERROR "arg 2.3 for printf verb %c of wrong type" + fmt.Printf("%d", 2.3) // ERROR "arg 2.3 for printf verb %d of wrong type" + fmt.Printf("%e", "hi") // ERROR "arg .hi. for printf verb %e of wrong type" + fmt.Printf("%E", true) // ERROR "arg true for printf verb %E of wrong type" + fmt.Printf("%f", "hi") // ERROR "arg .hi. for printf verb %f of wrong type" + fmt.Printf("%F", 'x') // ERROR "arg 'x' for printf verb %F of wrong type" + fmt.Printf("%g", "hi") // ERROR "arg .hi. for printf verb %g of wrong type" + fmt.Printf("%g", imap) // ERROR "arg imap for printf verb %g of wrong type" + fmt.Printf("%G", i) // ERROR "arg i for printf verb %G of wrong type" + fmt.Printf("%o", x) // ERROR "arg x for printf verb %o of wrong type" + fmt.Printf("%p", 23) // ERROR "arg 23 for printf verb %p of wrong type" + fmt.Printf("%q", x) // ERROR "arg x for printf verb %q of wrong type" + fmt.Printf("%s", b) // ERROR "arg b for printf verb %s of wrong type" + fmt.Printf("%s", byte(65)) // ERROR "arg byte\(65\) for printf verb %s of wrong type" + fmt.Printf("%t", 23) // ERROR "arg 23 for printf verb %t of wrong type" + fmt.Printf("%U", x) // ERROR "arg x for printf verb %U of wrong type" + fmt.Printf("%x", nil) // ERROR "arg nil for printf verb %x of wrong type" + fmt.Printf("%X", 2.3) // ERROR "arg 2.3 for printf verb %X of wrong type" + fmt.Printf("%s", stringerv) // ERROR "arg stringerv for printf verb %s of wrong type" + fmt.Printf("%t", stringerv) // ERROR "arg stringerv for printf verb %t of wrong type" + fmt.Printf("%q", notstringerv) // ERROR "arg notstringerv for printf verb %q of wrong type" + fmt.Printf("%t", notstringerv) // ERROR "arg notstringerv for printf verb %t of wrong type" + fmt.Printf("%t", stringerarrayv) // ERROR "arg stringerarrayv for printf verb %t of wrong type" + fmt.Printf("%t", notstringerarrayv) // ERROR "arg notstringerarrayv for printf verb %t of wrong type" + fmt.Printf("%q", notstringerarrayv) // ERROR "arg notstringerarrayv for printf verb %q of wrong type" + fmt.Printf("%d", Formatter(true)) // correct (the type is responsible for formatting) + fmt.Printf("%s", nonemptyinterface) // correct (the dynamic type of nonemptyinterface may be a stringer) + fmt.Printf("%.*s %d %g", 3, "hi", 23, 'x') // ERROR "arg 'x' for printf verb %g of wrong type" + fmt.Println() // not an error + fmt.Println("%s", "hi") // ERROR "possible formatting directive in Println call" + fmt.Printf("%s", "hi", 3) // ERROR "wrong number of args for format in Printf call" + fmt.Sprintf("%"+("s"), "hi", 3) // ERROR "wrong number of args for format in Sprintf call" + fmt.Printf("%s%%%d", "hi", 3) // correct + fmt.Printf("%08s", "woo") // correct + fmt.Printf("% 8s", "woo") // correct + fmt.Printf("%.*d", 3, 3) // correct + fmt.Printf("%.*d", 3, 3, 3, 3) // ERROR "wrong number of args for format in Printf call.*4 args" + fmt.Printf("%.*d", "hi", 3) // ERROR "arg .hi. for \* in printf format not of type int" + fmt.Printf("%.*d", i, 3) // correct + fmt.Printf("%.*d", s, 3) // ERROR "arg s for \* in printf format not of type int" + fmt.Printf("%*%", 0.22) // ERROR "arg 0.22 for \* in printf format not of type int" + fmt.Printf("%q %q", multi()...) // ok + fmt.Printf("%#q", `blah`) // ok + printf("now is the time", "buddy") // ERROR "no formatting directive" + Printf("now is the time", "buddy") // ERROR "no formatting directive" + Printf("hi") // ok + const format = "%s %s\n" + Printf(format, "hi", "there") + Printf(format, "hi") // ERROR "missing argument for Printf..%s..: format reads arg 2, have only 1" + Printf("%s %d %.3v %q", "str", 4) // ERROR "missing argument for Printf..%.3v..: format reads arg 3, have only 2" + f := new(stringer) + f.Warn(0, "%s", "hello", 3) // ERROR "possible formatting directive in Warn call" + f.Warnf(0, "%s", "hello", 3) // ERROR "wrong number of args for format in Warnf call" + f.Warnf(0, "%r", "hello") // ERROR "unrecognized printf verb" + f.Warnf(0, "%#s", "hello") // ERROR "unrecognized printf flag" + Printf("d%", 2) // ERROR "missing verb at end of format string in Printf call" + Printf("%d", percentDV) + Printf("%d", &percentDV) + Printf("%d", notPercentDV) // ERROR "arg notPercentDV for printf verb %d of wrong type" + Printf("%d", ¬PercentDV) // ERROR "arg ¬PercentDV for printf verb %d of wrong type" + Printf("%p", ¬PercentDV) // Works regardless: we print it as a pointer. + Printf("%s", percentSV) + Printf("%s", &percentSV) + // Good argument reorderings. + Printf("%[1]d", 3) + Printf("%[1]*d", 3, 1) + Printf("%[2]*[1]d", 1, 3) + Printf("%[2]*.[1]*[3]d", 2, 3, 4) + fmt.Fprintf(os.Stderr, "%[2]*.[1]*[3]d", 2, 3, 4) // Use Fprintf to make sure we count arguments correctly. + // Bad argument reorderings. + Printf("%[xd", 3) // ERROR "illegal syntax for printf argument index" + Printf("%[x]d", 3) // ERROR "illegal syntax for printf argument index" + Printf("%[3]*s", "hi", 2) // ERROR "missing argument for Printf.* reads arg 3, have only 2" + fmt.Sprintf("%[3]d", 2) // ERROR "missing argument for Sprintf.* reads arg 3, have only 1" + Printf("%[2]*.[1]*[3]d", 2, "hi", 4) // ERROR "arg .hi. for \* in printf format not of type int" + // Something that satisfies the error interface. + var e error + fmt.Println(e.Error()) // ok + // Something that looks like an error interface but isn't, such as the (*T).Error method + // in the testing package. + var et1 errorTest1 + fmt.Println(et1.Error()) // ERROR "no args in Error call" + fmt.Println(et1.Error("hi")) // ok + fmt.Println(et1.Error("%d", 3)) // ERROR "possible formatting directive in Error call" + var et2 errorTest2 + et2.Error() // ERROR "no args in Error call" + et2.Error("hi") // ok, not an error method. + et2.Error("%d", 3) // ERROR "possible formatting directive in Error call" + var et3 errorTest3 + et3.Error() // ok, not an error method. + var et4 errorTest4 + et4.Error() // ok, not an error method. + var et5 errorTest5 + et5.error() // ok, not an error method. + // Bug: used to recur forever. + Printf("%p %x", recursiveStructV, recursiveStructV.next) + Printf("%p %x", recursiveStruct1V, recursiveStruct1V.next) + Printf("%p %x", recursiveSliceV, recursiveSliceV) + Printf("%p %x", recursiveMapV, recursiveMapV) +} + +// Printf is used by the test so we must declare it. +func Printf(format string, args ...interface{}) { + panic("don't call - testing only") +} + +// printf is used by the test so we must declare it. +func printf(format string, args ...interface{}) { + panic("don't call - testing only") +} + +// multi is used by the test. +func multi() []interface{} { + panic("don't call - testing only") +} + +type stringer float64 + +var stringerv stringer + +func (*stringer) String() string { + return "string" +} + +func (*stringer) Warn(int, ...interface{}) string { + return "warn" +} + +func (*stringer) Warnf(int, string, ...interface{}) string { + return "warnf" +} + +type notstringer struct { + f float64 +} + +var notstringerv notstringer + +type stringerarray [4]float64 + +func (stringerarray) String() string { + return "string" +} + +var stringerarrayv stringerarray + +type notstringerarray [4]float64 + +var notstringerarrayv notstringerarray + +var nonemptyinterface = interface { + f() +}(nil) + +// A data type we can print with "%d". +type percentDStruct struct { + a int + b []byte + c *float64 +} + +var percentDV percentDStruct + +// A data type we cannot print correctly with "%d". +type notPercentDStruct struct { + a int + b []byte + c bool +} + +var notPercentDV notPercentDStruct + +// A data type we can print with "%s". +type percentSStruct struct { + a string + b []byte + c stringerarray +} + +var percentSV percentSStruct + +type recursiveStringer int + +func (s recursiveStringer) String() string { + fmt.Sprintf("%d", s) + fmt.Sprintf("%#v", s) + fmt.Sprintf("%v", s) // ERROR "arg s for printf causes recursive call to String method" + fmt.Sprintf("%v", &s) // ERROR "arg &s for printf causes recursive call to String method" + fmt.Sprintf("%T", s) // ok; does not recursively call String + return fmt.Sprintln(s) // ERROR "arg s for print causes recursive call to String method" +} + +type recursivePtrStringer int + +func (p *recursivePtrStringer) String() string { + fmt.Sprintf("%v", *p) + return fmt.Sprintln(p) // ERROR "arg p for print causes recursive call to String method" +} + +type Formatter bool + +func (*Formatter) Format(fmt.State, rune) { +} + +type RecursiveSlice []RecursiveSlice + +var recursiveSliceV = &RecursiveSlice{} + +type RecursiveMap map[int]RecursiveMap + +var recursiveMapV = make(RecursiveMap) + +type RecursiveStruct struct { + next *RecursiveStruct +} + +var recursiveStructV = &RecursiveStruct{} + +type RecursiveStruct1 struct { + next *Recursive2Struct +} + +type RecursiveStruct2 struct { + next *Recursive1Struct +} + +var recursiveStruct1V = &RecursiveStruct1{} + +// Fix for issue 7149: Missing return type on String method caused fault. +func (int) String() { + return "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/rangeloop.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/rangeloop.go new file mode 100644 index 00000000..331e5d08 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/rangeloop.go @@ -0,0 +1,59 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the rangeloop checker. + +package testdata + +func RangeLoopTests() { + var s []int + for i, v := range s { + go func() { + println(i) // ERROR "range variable i enclosed by function" + println(v) // ERROR "range variable v enclosed by function" + }() + } + for i, v := range s { + defer func() { + println(i) // ERROR "range variable i enclosed by function" + println(v) // ERROR "range variable v enclosed by function" + }() + } + for i := range s { + go func() { + println(i) // ERROR "range variable i enclosed by function" + }() + } + for _, v := range s { + go func() { + println(v) // ERROR "range variable v enclosed by function" + }() + } + for i, v := range s { + go func() { + println(i, v) + }() + println("unfortunately, we don't catch the error above because of this statement") + } + for i, v := range s { + go func(i, v int) { + println(i, v) + }(i, v) + } + for i, v := range s { + i, v := i, v + go func() { + println(i, v) + }() + } + // If the key of the range statement is not an identifier + // the code should not panic (it used to). + var x [2]int + var f int + for x[0], f = range s { + go func() { + _ = f // ERROR "range variable f enclosed by function" + }() + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/shadow.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/shadow.go new file mode 100644 index 00000000..34a68068 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/shadow.go @@ -0,0 +1,54 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the shadowed variable checker. +// Some of these errors are caught by the compiler (shadowed return parameters for example) +// but are nonetheless useful tests. + +package testdata + +import "os" + +func ShadowRead(f *os.File, buf []byte) (err error) { + var x int + if f != nil { + err := 3 // OK - different type. + _ = err + } + if f != nil { + _, err := f.Read(buf) // ERROR "declaration of err shadows declaration at testdata/shadow.go:13" + if err != nil { + return err + } + i := 3 // OK + _ = i + } + if f != nil { + var _, err = f.Read(buf) // ERROR "declaration of err shadows declaration at testdata/shadow.go:13" + if err != nil { + return err + } + } + for i := 0; i < 10; i++ { + i := i // OK: obviously intentional idiomatic redeclaration + go func() { + println(i) + }() + } + var shadowTemp interface{} + switch shadowTemp := shadowTemp.(type) { // OK: obviously intentional idiomatic redeclaration + case int: + println("OK") + _ = shadowTemp + } + if shadowTemp := shadowTemp; true { // OK: obviously intentional idiomatic redeclaration + var f *os.File // OK because f is not mentioned later in the function. + // The declaration of x is a shadow because x is mentioned below. + var x int // ERROR "declaration of x shadows declaration at testdata/shadow.go:14" + _, _, _ = x, f, shadowTemp + } + // Use a couple of variables to trigger shadowing errors. + _, _ = err, x + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/structtag.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/structtag.go new file mode 100644 index 00000000..502c58b0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/testdata/structtag.go @@ -0,0 +1,13 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for the structtag checker. + +// This file contains the test for canonical struct tags. + +package testdata + +type StructTagTest struct { + X int "hello" // ERROR "not compatible with reflect.StructTag.Get" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/types.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/types.go new file mode 100644 index 00000000..6afc6ab9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/types.go @@ -0,0 +1,322 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the pieces of the tool that use typechecking from the go/types package. + +package main + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +func (pkg *Package) check(fs *token.FileSet, astFiles []*ast.File) error { + pkg.defs = make(map[*ast.Ident]types.Object) + pkg.uses = make(map[*ast.Ident]types.Object) + pkg.spans = make(map[types.Object]Span) + pkg.types = make(map[ast.Expr]types.TypeAndValue) + // By providing a Config with our own error function, it will continue + // past the first error. There is no need for that function to do anything. + config := types.Config{ + Error: func(error) {}, + } + info := &types.Info{ + Types: pkg.types, + Defs: pkg.defs, + Uses: pkg.uses, + } + typesPkg, err := config.Check(pkg.path, fs, astFiles, info) + pkg.typesPkg = typesPkg + // update spans + for id, obj := range pkg.defs { + pkg.growSpan(id, obj) + } + for id, obj := range pkg.uses { + pkg.growSpan(id, obj) + } + return err +} + +// isStruct reports whether the composite literal c is a struct. +// If it is not (probably a struct), it returns a printable form of the type. +func (pkg *Package) isStruct(c *ast.CompositeLit) (bool, string) { + // Check that the CompositeLit's type is a slice or array (which needs no field keys), if possible. + typ := pkg.types[c].Type + // If it's a named type, pull out the underlying type. If it's not, the Underlying + // method returns the type itself. + actual := typ + if actual != nil { + actual = actual.Underlying() + } + if actual == nil { + // No type information available. Assume true, so we do the check. + return true, "" + } + switch actual.(type) { + case *types.Struct: + return true, typ.String() + default: + return false, "" + } +} + +var ( + stringerMethodType = types.New("func() string") + errorType = types.New("interface{ Error() string }").(*types.Interface) + stringerType = types.New("interface{ String() string }").(*types.Interface) + // One day this might work. See issue 6259. + // formatterType = types.New("interface{Format(f fmt.State, c rune)}") +) + +// matchArgType reports an error if printf verb t is not appropriate +// for operand arg. +// +// typ is used only for recursive calls; external callers must supply nil. +// +// (Recursion arises from the compound types {map,chan,slice} which +// may be printed with %d etc. if that is appropriate for their element +// types.) +func (f *File) matchArgType(t printfArgType, typ types.Type, arg ast.Expr) bool { + return f.matchArgTypeInternal(t, typ, arg, make(map[types.Type]bool)) +} + +// matchArgTypeInternal is the internal version of matchArgType. It carries a map +// remembering what types are in progress so we don't recur when faced with recursive +// types or mutually recursive types. +func (f *File) matchArgTypeInternal(t printfArgType, typ types.Type, arg ast.Expr, inProgress map[types.Type]bool) bool { + // %v, %T accept any argument type. + if t == anyType { + return true + } + if typ == nil { + // external call + typ = f.pkg.types[arg].Type + if typ == nil { + return true // probably a type check problem + } + } + // If the type implements fmt.Formatter, we have nothing to check. + // But (see issue 6259) that's not easy to verify, so instead we see + // if its method set contains a Format function. We could do better, + // even now, but we don't need to be 100% accurate. Wait for 6259 to + // be fixed instead. TODO. + if f.hasMethod(typ, "Format") { + return true + } + // If we can use a string, might arg (dynamically) implement the Stringer or Error interface? + if t&argString != 0 { + if types.AssertableTo(errorType, typ) || types.AssertableTo(stringerType, typ) { + return true + } + } + + typ = typ.Underlying() + if inProgress[typ] { + // We're already looking at this type. The call that started it will take care of it. + return true + } + inProgress[typ] = true + + switch typ := typ.(type) { + case *types.Signature: + return t&argPointer != 0 + + case *types.Map: + // Recur: map[int]int matches %d. + return t&argPointer != 0 || + (f.matchArgTypeInternal(t, typ.Key(), arg, inProgress) && f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress)) + + case *types.Chan: + return t&argPointer != 0 + + case *types.Array: + // Same as slice. + if types.Identical(typ.Elem().Underlying(), types.Typ[types.Byte]) && t&argString != 0 { + return true // %s matches []byte + } + // Recur: []int matches %d. + return t&argPointer != 0 || f.matchArgTypeInternal(t, typ.Elem().Underlying(), arg, inProgress) + + case *types.Slice: + // Same as array. + if types.Identical(typ.Elem().Underlying(), types.Typ[types.Byte]) && t&argString != 0 { + return true // %s matches []byte + } + // Recur: []int matches %d. But watch out for + // type T []T + // If the element is a pointer type (type T[]*T), it's handled fine by the Pointer case below. + return t&argPointer != 0 || f.matchArgTypeInternal(t, typ.Elem(), arg, inProgress) + + case *types.Pointer: + // Ugly, but dealing with an edge case: a known pointer to an invalid type, + // probably something from a failed import. + if typ.Elem().String() == "invalid type" { + if *verbose { + f.Warnf(arg.Pos(), "printf argument %v is pointer to invalid or unknown type", f.gofmt(arg)) + } + return true // special case + } + // If it's actually a pointer with %p, it prints as one. + if t == argPointer { + return true + } + // If it's pointer to struct, that's equivalent in our analysis to whether we can print the struct. + if str, ok := typ.Elem().Underlying().(*types.Struct); ok { + return f.matchStructArgType(t, str, arg, inProgress) + } + // The rest can print with %p as pointers, or as integers with %x etc. + return t&(argInt|argPointer) != 0 + + case *types.Struct: + return f.matchStructArgType(t, typ, arg, inProgress) + + case *types.Interface: + // If the static type of the argument is empty interface, there's little we can do. + // Example: + // func f(x interface{}) { fmt.Printf("%s", x) } + // Whether x is valid for %s depends on the type of the argument to f. One day + // we will be able to do better. For now, we assume that empty interface is OK + // but non-empty interfaces, with Stringer and Error handled above, are errors. + return typ.NumMethods() == 0 + + case *types.Basic: + switch typ.Kind() { + case types.UntypedBool, + types.Bool: + return t&argBool != 0 + + case types.UntypedInt, + types.Int, + types.Int8, + types.Int16, + types.Int32, + types.Int64, + types.Uint, + types.Uint8, + types.Uint16, + types.Uint32, + types.Uint64, + types.Uintptr: + return t&argInt != 0 + + case types.UntypedFloat, + types.Float32, + types.Float64: + return t&argFloat != 0 + + case types.UntypedComplex, + types.Complex64, + types.Complex128: + return t&argComplex != 0 + + case types.UntypedString, + types.String: + return t&argString != 0 + + case types.UnsafePointer: + return t&(argPointer|argInt) != 0 + + case types.UntypedRune: + return t&(argInt|argRune) != 0 + + case types.UntypedNil: + return t&argPointer != 0 // TODO? + + case types.Invalid: + if *verbose { + f.Warnf(arg.Pos(), "printf argument %v has invalid or unknown type", f.gofmt(arg)) + } + return true // Probably a type check problem. + } + panic("unreachable") + } + + return false +} + +// matchStructArgType reports whether all the elements of the struct match the expected +// type. For instance, with "%d" all the elements must be printable with the "%d" format. +func (f *File) matchStructArgType(t printfArgType, typ *types.Struct, arg ast.Expr, inProgress map[types.Type]bool) bool { + for i := 0; i < typ.NumFields(); i++ { + if !f.matchArgTypeInternal(t, typ.Field(i).Type(), arg, inProgress) { + return false + } + } + return true +} + +// numArgsInSignature tells how many formal arguments the function type +// being called has. +func (f *File) numArgsInSignature(call *ast.CallExpr) int { + // Check the type of the function or method declaration + typ := f.pkg.types[call.Fun].Type + if typ == nil { + return 0 + } + // The type must be a signature, but be sure for safety. + sig, ok := typ.(*types.Signature) + if !ok { + return 0 + } + return sig.Params().Len() +} + +// isErrorMethodCall reports whether the call is of a method with signature +// func Error() string +// where "string" is the universe's string type. We know the method is called "Error". +func (f *File) isErrorMethodCall(call *ast.CallExpr) bool { + typ := f.pkg.types[call].Type + if typ != nil { + // We know it's called "Error", so just check the function signature. + return types.Identical(f.pkg.types[call.Fun].Type, stringerMethodType) + } + // Without types, we can still check by hand. + // Is it a selector expression? Otherwise it's a function call, not a method call. + sel, ok := call.Fun.(*ast.SelectorExpr) + if !ok { + return false + } + // The package is type-checked, so if there are no arguments, we're done. + if len(call.Args) > 0 { + return false + } + // Check the type of the method declaration + typ = f.pkg.types[sel].Type + if typ == nil { + return false + } + // The type must be a signature, but be sure for safety. + sig, ok := typ.(*types.Signature) + if !ok { + return false + } + // There must be a receiver for it to be a method call. Otherwise it is + // a function, not something that satisfies the error interface. + if sig.Recv() == nil { + return false + } + // There must be no arguments. Already verified by type checking, but be thorough. + if sig.Params().Len() > 0 { + return false + } + // Finally the real questions. + // There must be one result. + if sig.Results().Len() != 1 { + return false + } + // It must have return type "string" from the universe. + return sig.Results().At(0).Type() == types.Typ[types.String] +} + +// hasMethod reports whether the type contains a method with the given name. +// It is part of the workaround for Formatters and should be deleted when +// that workaround is no longer necessary. +// TODO: This could be better once issue 6259 is fixed. +func (f *File) hasMethod(typ types.Type, name string) bool { + obj, _, _ := types.LookupFieldOrMethod(typ, f.pkg.typesPkg, name) + _, ok := obj.(*types.Func) + return ok +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/vet_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/vet_test.go new file mode 100644 index 00000000..65fefb95 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/vet_test.go @@ -0,0 +1,74 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main_test + +import ( + "bytes" + "os" + "os/exec" + "path/filepath" + "runtime" + "testing" +) + +const ( + dataDir = "testdata" + binary = "testvet" +) + +// Run this shell script, but do it in Go so it can be run by "go test". +// go build -o testvet +// $(GOROOT)/test/errchk ./testvet -shadow -printfuncs='Warn:1,Warnf:1' testdata/*.go testdata/*.s +// rm testvet +// +func TestVet(t *testing.T) { + // Plan 9 and Windows systems can't be guaranteed to have Perl and so can't run errchk. + switch runtime.GOOS { + case "plan9", "windows": + t.Skip("skipping test; no Perl on %q", runtime.GOOS) + } + + // go build + cmd := exec.Command("go", "build", "-o", binary) + run(cmd, t) + + // defer removal of vet + defer os.Remove(binary) + + // errchk ./testvet + gos, err := filepath.Glob(filepath.Join(dataDir, "*.go")) + if err != nil { + t.Fatal(err) + } + asms, err := filepath.Glob(filepath.Join(dataDir, "*.s")) + if err != nil { + t.Fatal(err) + } + files := append(gos, asms...) + errchk := filepath.Join(runtime.GOROOT(), "test", "errchk") + flags := []string{ + "./" + binary, + "-printfuncs=Warn:1,Warnf:1", + "-test", // TODO: Delete once -shadow is part of -all. + } + cmd = exec.Command(errchk, append(flags, files...)...) + if !run(cmd, t) { + t.Fatal("vet command failed") + } +} + +func run(c *exec.Cmd, t *testing.T) bool { + output, err := c.CombinedOutput() + os.Stderr.Write(output) + if err != nil { + t.Fatal(err) + } + // Errchk delights by not returning non-zero status if it finds errors, so we look at the output. + // It prints "BUG" if there is a failure. + if !c.ProcessState.Success() { + return false + } + return !bytes.Contains(output, []byte("BUG")) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/whitelist/whitelist.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/whitelist/whitelist.go new file mode 100644 index 00000000..7aa0d30d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cmd/vet/whitelist/whitelist.go @@ -0,0 +1,52 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package whitelist defines exceptions for the vet tool. +package whitelist + +// UnkeyedLiteral are types that are actually slices, but +// syntactically, we cannot tell whether the Typ in pkg.Typ{1, 2, 3} +// is a slice or a struct, so we whitelist all the standard package +// library's exported slice types. +var UnkeyedLiteral = map[string]bool{ + /* + find $GOROOT/src/pkg -type f | grep -v _test.go | xargs grep '^type.*\[\]' | \ + grep -v ' map\[' | sed 's,/[^/]*go.type,,' | sed 's,.*src/pkg/,,' | \ + sed 's, ,.,' | sed 's, .*,,' | grep -v '\.[a-z]' | \ + sort | awk '{ print "\"" $0 "\": true," }' + */ + "crypto/x509/pkix.RDNSequence": true, + "crypto/x509/pkix.RelativeDistinguishedNameSET": true, + "database/sql.RawBytes": true, + "debug/macho.LoadBytes": true, + "encoding/asn1.ObjectIdentifier": true, + "encoding/asn1.RawContent": true, + "encoding/json.RawMessage": true, + "encoding/xml.CharData": true, + "encoding/xml.Comment": true, + "encoding/xml.Directive": true, + "go/scanner.ErrorList": true, + "image/color.Palette": true, + "net.HardwareAddr": true, + "net.IP": true, + "net.IPMask": true, + "sort.Float64Slice": true, + "sort.IntSlice": true, + "sort.StringSlice": true, + "unicode.SpecialCase": true, + + // These image and image/color struct types are frozen. We will never add fields to them. + "image/color.Alpha16": true, + "image/color.Alpha": true, + "image/color.Gray16": true, + "image/color.Gray": true, + "image/color.NRGBA64": true, + "image/color.NRGBA": true, + "image/color.RGBA64": true, + "image/color.RGBA": true, + "image/color.YCbCr": true, + "image.Point": true, + "image.Rectangle": true, + "image.Uniform": true, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/codereview.cfg b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/codereview.cfg new file mode 100644 index 00000000..43dbf3ce --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/codereview.cfg @@ -0,0 +1,2 @@ +defaultcc: golang-codereviews@googlegroups.com +contributors: http://go.googlecode.com/hg/CONTRIBUTORS diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cover/profile.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cover/profile.go new file mode 100644 index 00000000..1cbd7398 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/cover/profile.go @@ -0,0 +1,190 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cover provides support for parsing coverage profiles +// generated by "go test -coverprofile=cover.out". +package cover + +import ( + "bufio" + "fmt" + "math" + "os" + "regexp" + "sort" + "strconv" + "strings" +) + +// Profile represents the profiling data for a specific file. +type Profile struct { + FileName string + Mode string + Blocks []ProfileBlock +} + +// ProfileBlock represents a single block of profiling data. +type ProfileBlock struct { + StartLine, StartCol int + EndLine, EndCol int + NumStmt, Count int +} + +type byFileName []*Profile + +func (p byFileName) Len() int { return len(p) } +func (p byFileName) Less(i, j int) bool { return p[i].FileName < p[j].FileName } +func (p byFileName) Swap(i, j int) { p[i], p[j] = p[j], p[i] } + +// ParseProfiles parses profile data in the specified file and returns a +// Profile for each source file described therein. +func ParseProfiles(fileName string) ([]*Profile, error) { + pf, err := os.Open(fileName) + if err != nil { + return nil, err + } + defer pf.Close() + + files := make(map[string]*Profile) + buf := bufio.NewReader(pf) + // First line is "mode: foo", where foo is "set", "count", or "atomic". + // Rest of file is in the format + // encoding/base64/base64.go:34.44,37.40 3 1 + // where the fields are: name.go:line.column,line.column numberOfStatements count + s := bufio.NewScanner(buf) + mode := "" + for s.Scan() { + line := s.Text() + if mode == "" { + const p = "mode: " + if !strings.HasPrefix(line, p) || line == p { + return nil, fmt.Errorf("bad mode line: %v", line) + } + mode = line[len(p):] + continue + } + m := lineRe.FindStringSubmatch(line) + if m == nil { + return nil, fmt.Errorf("line %q doesn't match expected format: %v", m, lineRe) + } + fn := m[1] + p := files[fn] + if p == nil { + p = &Profile{ + FileName: fn, + Mode: mode, + } + files[fn] = p + } + p.Blocks = append(p.Blocks, ProfileBlock{ + StartLine: toInt(m[2]), + StartCol: toInt(m[3]), + EndLine: toInt(m[4]), + EndCol: toInt(m[5]), + NumStmt: toInt(m[6]), + Count: toInt(m[7]), + }) + } + if err := s.Err(); err != nil { + return nil, err + } + for _, p := range files { + sort.Sort(blocksByStart(p.Blocks)) + } + // Generate a sorted slice. + profiles := make([]*Profile, 0, len(files)) + for _, profile := range files { + profiles = append(profiles, profile) + } + sort.Sort(byFileName(profiles)) + return profiles, nil +} + +type blocksByStart []ProfileBlock + +func (b blocksByStart) Len() int { return len(b) } +func (b blocksByStart) Swap(i, j int) { b[i], b[j] = b[j], b[i] } +func (b blocksByStart) Less(i, j int) bool { + bi, bj := b[i], b[j] + return bi.StartLine < bj.StartLine || bi.StartLine == bj.StartLine && bi.StartCol < bj.StartCol +} + +var lineRe = regexp.MustCompile(`^(.+):([0-9]+).([0-9]+),([0-9]+).([0-9]+) ([0-9]+) ([0-9]+)$`) + +func toInt(s string) int { + i, err := strconv.Atoi(s) + if err != nil { + panic(err) + } + return i +} + +// Boundary represents the position in a source file of the beginning or end of a +// block as reported by the coverage profile. In HTML mode, it will correspond to +// the opening or closing of a tag and will be used to colorize the source +type Boundary struct { + Offset int // Location as a byte offset in the source file. + Start bool // Is this the start of a block? + Count int // Event count from the cover profile. + Norm float64 // Count normalized to [0..1]. +} + +// Boundaries returns a Profile as a set of Boundary objects within the provided src. +func (p *Profile) Boundaries(src []byte) (boundaries []Boundary) { + // Find maximum count. + max := 0 + for _, b := range p.Blocks { + if b.Count > max { + max = b.Count + } + } + // Divisor for normalization. + divisor := math.Log(float64(max)) + + // boundary returns a Boundary, populating the Norm field with a normalized Count. + boundary := func(offset int, start bool, count int) Boundary { + b := Boundary{Offset: offset, Start: start, Count: count} + if !start || count == 0 { + return b + } + if max <= 1 { + b.Norm = 0.8 // Profile is in"set" mode; we want a heat map. Use cov8 in the CSS. + } else if count > 0 { + b.Norm = math.Log(float64(count)) / divisor + } + return b + } + + line, col := 1, 2 // TODO: Why is this 2? + for si, bi := 0, 0; si < len(src) && bi < len(p.Blocks); { + b := p.Blocks[bi] + if b.StartLine == line && b.StartCol == col { + boundaries = append(boundaries, boundary(si, true, b.Count)) + } + if b.EndLine == line && b.EndCol == col { + boundaries = append(boundaries, boundary(si, false, 0)) + bi++ + continue // Don't advance through src; maybe the next block starts here. + } + if src[si] == '\n' { + line++ + col = 0 + } + col++ + si++ + } + sort.Sort(boundariesByPos(boundaries)) + return +} + +type boundariesByPos []Boundary + +func (b boundariesByPos) Len() int { return len(b) } +func (b boundariesByPos) Swap(i, j int) { b[i], b[j] = b[j], b[i] } +func (b boundariesByPos) Less(i, j int) bool { + if b[i].Offset == b[j].Offset { + return !b[i].Start && b[j].Start + } + return b[i].Offset < b[j].Offset +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/README new file mode 100644 index 00000000..d599f3d0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/README @@ -0,0 +1,26 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +The files in this directory constitute the continuous builder: + +app/: an AppEngine server +builder/: gobuilder, a Go continuous build client + +If you wish to run a Go builder, please email golang-dev@googlegroups.com + +To run a builder: + +* Write the key ~gobuild/.gobuildkey + You need to get it from someone who knows the key. + You may also use a filename of the form .gobuildkey-$BUILDER if you + wish to run builders for multiple targets. + +* Append your username and password googlecode.com credentials from + https://code.google.com/hosting/settings + to the buildkey file in the format "Username\nPassword\n". + (This is for uploading tarballs to the project downloads section, + and is an optional step.) + +* Build and run gobuilder (see its documentation for command-line options). + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/app.yaml b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/app.yaml new file mode 100644 index 00000000..389aa901 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/app.yaml @@ -0,0 +1,20 @@ +# Update with +# google_appengine/appcfg.py [-V test-build] update . +# +# Using -V test-build will run as test-build.golang.org. + +application: golang-org +version: build +runtime: go +api_version: go1 + +handlers: +- url: /static + static_dir: static +- url: /(|gccgo/)log/.+ + script: _go_app +- url: /(|gccgo/)(|commit|packages|result|tag|todo) + script: _go_app +- url: /(|gccgo/)(init|buildtest|key|_ah/queue/go/delay) + script: _go_app + login: admin \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/build.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/build.go new file mode 100644 index 00000000..2fa6e7b4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/build.go @@ -0,0 +1,365 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +import ( + "bytes" + "compress/gzip" + "crypto/sha1" + "errors" + "fmt" + "io" + "io/ioutil" + "strings" + "time" + + "appengine" + "appengine/datastore" +) + +const maxDatastoreStringLen = 500 + +// A Package describes a package that is listed on the dashboard. +type Package struct { + Kind string // "subrepo", "external", or empty for the main Go tree + Name string + Path string // (empty for the main Go tree) + NextNum int // Num of the next head Commit +} + +func (p *Package) String() string { + return fmt.Sprintf("%s: %q", p.Path, p.Name) +} + +func (p *Package) Key(c appengine.Context) *datastore.Key { + key := p.Path + if key == "" { + key = "go" + } + return datastore.NewKey(c, "Package", key, 0, nil) +} + +// LastCommit returns the most recent Commit for this Package. +func (p *Package) LastCommit(c appengine.Context) (*Commit, error) { + var commits []*Commit + _, err := datastore.NewQuery("Commit"). + Ancestor(p.Key(c)). + Order("-Time"). + Limit(1). + GetAll(c, &commits) + if _, ok := err.(*datastore.ErrFieldMismatch); ok { + // Some fields have been removed, so it's okay to ignore this error. + err = nil + } + if err != nil { + return nil, err + } + if len(commits) != 1 { + return nil, datastore.ErrNoSuchEntity + } + return commits[0], nil +} + +// GetPackage fetches a Package by path from the datastore. +func GetPackage(c appengine.Context, path string) (*Package, error) { + p := &Package{Path: path} + err := datastore.Get(c, p.Key(c), p) + if err == datastore.ErrNoSuchEntity { + return nil, fmt.Errorf("package %q not found", path) + } + if _, ok := err.(*datastore.ErrFieldMismatch); ok { + // Some fields have been removed, so it's okay to ignore this error. + err = nil + } + return p, err +} + +// A Commit describes an individual commit in a package. +// +// Each Commit entity is a descendant of its associated Package entity. +// In other words, all Commits with the same PackagePath belong to the same +// datastore entity group. +type Commit struct { + PackagePath string // (empty for main repo commits) + Hash string + ParentHash string + Num int // Internal monotonic counter unique to this package. + + User string + Desc string `datastore:",noindex"` + Time time.Time + + // ResultData is the Data string of each build Result for this Commit. + // For non-Go commits, only the Results for the current Go tip, weekly, + // and release Tags are stored here. This is purely de-normalized data. + // The complete data set is stored in Result entities. + ResultData []string `datastore:",noindex"` + + FailNotificationSent bool +} + +func (com *Commit) Key(c appengine.Context) *datastore.Key { + if com.Hash == "" { + panic("tried Key on Commit with empty Hash") + } + p := Package{Path: com.PackagePath} + key := com.PackagePath + "|" + com.Hash + return datastore.NewKey(c, "Commit", key, 0, p.Key(c)) +} + +func (c *Commit) Valid() error { + if !validHash(c.Hash) { + return errors.New("invalid Hash") + } + if c.ParentHash != "" && !validHash(c.ParentHash) { // empty is OK + return errors.New("invalid ParentHash") + } + return nil +} + +// each result line is approx 105 bytes. This constant is a tradeoff between +// build history and the AppEngine datastore limit of 1mb. +const maxResults = 1000 + +// AddResult adds the denormalized Result data to the Commit's Result field. +// It must be called from inside a datastore transaction. +func (com *Commit) AddResult(c appengine.Context, r *Result) error { + if err := datastore.Get(c, com.Key(c), com); err != nil { + return fmt.Errorf("getting Commit: %v", err) + } + com.ResultData = trim(append(com.ResultData, r.Data()), maxResults) + if _, err := datastore.Put(c, com.Key(c), com); err != nil { + return fmt.Errorf("putting Commit: %v", err) + } + return nil +} + +func trim(s []string, n int) []string { + l := min(len(s), n) + return s[len(s)-l:] +} + +func min(a, b int) int { + if a < b { + return a + } + return b +} + +// Result returns the build Result for this Commit for the given builder/goHash. +func (c *Commit) Result(builder, goHash string) *Result { + for _, r := range c.ResultData { + p := strings.SplitN(r, "|", 4) + if len(p) != 4 || p[0] != builder || p[3] != goHash { + continue + } + return partsToHash(c, p) + } + return nil +} + +// Results returns the build Results for this Commit. +func (c *Commit) Results() (results []*Result) { + for _, r := range c.ResultData { + p := strings.SplitN(r, "|", 4) + if len(p) != 4 { + continue + } + results = append(results, partsToHash(c, p)) + } + return +} + +func (c *Commit) ResultGoHashes() []string { + var hashes []string + for _, r := range c.ResultData { + p := strings.SplitN(r, "|", 4) + if len(p) != 4 { + continue + } + // Append only new results (use linear scan to preserve order). + if !contains(hashes, p[3]) { + hashes = append(hashes, p[3]) + } + } + // Return results in reverse order (newest first). + reverse(hashes) + return hashes +} + +func contains(t []string, s string) bool { + for _, s2 := range t { + if s2 == s { + return true + } + } + return false +} + +func reverse(s []string) { + for i := 0; i < len(s)/2; i++ { + j := len(s) - i - 1 + s[i], s[j] = s[j], s[i] + } +} + +// partsToHash converts a Commit and ResultData substrings to a Result. +func partsToHash(c *Commit, p []string) *Result { + return &Result{ + Builder: p[0], + Hash: c.Hash, + PackagePath: c.PackagePath, + GoHash: p[3], + OK: p[1] == "true", + LogHash: p[2], + } +} + +// A Result describes a build result for a Commit on an OS/architecture. +// +// Each Result entity is a descendant of its associated Package entity. +type Result struct { + Builder string // "os-arch[-note]" + Hash string + PackagePath string // (empty for Go commits) + + // The Go Commit this was built against (empty for Go commits). + GoHash string + + OK bool + Log string `datastore:"-"` // for JSON unmarshaling only + LogHash string `datastore:",noindex"` // Key to the Log record. + + RunTime int64 // time to build+test in nanoseconds +} + +func (r *Result) Key(c appengine.Context) *datastore.Key { + p := Package{Path: r.PackagePath} + key := r.Builder + "|" + r.PackagePath + "|" + r.Hash + "|" + r.GoHash + return datastore.NewKey(c, "Result", key, 0, p.Key(c)) +} + +func (r *Result) Valid() error { + if !validHash(r.Hash) { + return errors.New("invalid Hash") + } + if r.PackagePath != "" && !validHash(r.GoHash) { + return errors.New("invalid GoHash") + } + return nil +} + +// Data returns the Result in string format +// to be stored in Commit's ResultData field. +func (r *Result) Data() string { + return fmt.Sprintf("%v|%v|%v|%v", r.Builder, r.OK, r.LogHash, r.GoHash) +} + +// A Log is a gzip-compressed log file stored under the SHA1 hash of the +// uncompressed log text. +type Log struct { + CompressedLog []byte +} + +func (l *Log) Text() ([]byte, error) { + d, err := gzip.NewReader(bytes.NewBuffer(l.CompressedLog)) + if err != nil { + return nil, fmt.Errorf("reading log data: %v", err) + } + b, err := ioutil.ReadAll(d) + if err != nil { + return nil, fmt.Errorf("reading log data: %v", err) + } + return b, nil +} + +func PutLog(c appengine.Context, text string) (hash string, err error) { + h := sha1.New() + io.WriteString(h, text) + b := new(bytes.Buffer) + z, _ := gzip.NewWriterLevel(b, gzip.BestCompression) + io.WriteString(z, text) + z.Close() + hash = fmt.Sprintf("%x", h.Sum(nil)) + key := datastore.NewKey(c, "Log", hash, 0, nil) + _, err = datastore.Put(c, key, &Log{b.Bytes()}) + return +} + +// A Tag is used to keep track of the most recent Go weekly and release tags. +// Typically there will be one Tag entity for each kind of hg tag. +type Tag struct { + Kind string // "weekly", "release", or "tip" + Name string // the tag itself (for example: "release.r60") + Hash string +} + +func (t *Tag) Key(c appengine.Context) *datastore.Key { + p := &Package{} + return datastore.NewKey(c, "Tag", t.Kind, 0, p.Key(c)) +} + +func (t *Tag) Valid() error { + if t.Kind != "weekly" && t.Kind != "release" && t.Kind != "tip" { + return errors.New("invalid Kind") + } + if !validHash(t.Hash) { + return errors.New("invalid Hash") + } + return nil +} + +// Commit returns the Commit that corresponds with this Tag. +func (t *Tag) Commit(c appengine.Context) (*Commit, error) { + com := &Commit{Hash: t.Hash} + err := datastore.Get(c, com.Key(c), com) + return com, err +} + +// GetTag fetches a Tag by name from the datastore. +func GetTag(c appengine.Context, tag string) (*Tag, error) { + t := &Tag{Kind: tag} + if err := datastore.Get(c, t.Key(c), t); err != nil { + if err == datastore.ErrNoSuchEntity { + return nil, errors.New("tag not found: " + tag) + } + return nil, err + } + if err := t.Valid(); err != nil { + return nil, err + } + return t, nil +} + +// Packages returns packages of the specified kind. +// Kind must be one of "external" or "subrepo". +func Packages(c appengine.Context, kind string) ([]*Package, error) { + switch kind { + case "external", "subrepo": + default: + return nil, errors.New(`kind must be one of "external" or "subrepo"`) + } + var pkgs []*Package + q := datastore.NewQuery("Package").Filter("Kind=", kind) + for t := q.Run(c); ; { + pkg := new(Package) + _, err := t.Next(pkg) + if _, ok := err.(*datastore.ErrFieldMismatch); ok { + // Some fields have been removed, so it's okay to ignore this error. + err = nil + } + if err == datastore.Done { + break + } else if err != nil { + return nil, err + } + if pkg.Path != "" { + pkgs = append(pkgs, pkg) + } + } + return pkgs, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/dash.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/dash.go new file mode 100644 index 00000000..e30729f8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/dash.go @@ -0,0 +1,113 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +import ( + "net/http" + "strings" + + "appengine" +) + +// Dashboard describes a unique build dashboard. +type Dashboard struct { + Name string // This dashboard's name and namespace + RelPath string // The relative url path + Packages []*Package // The project's packages to build +} + +// dashboardForRequest returns the appropriate dashboard for a given URL path. +func dashboardForRequest(r *http.Request) *Dashboard { + if strings.HasPrefix(r.URL.Path, gccgoDash.RelPath) { + return gccgoDash + } + return goDash +} + +// Context returns a namespaced context for this dashboard, or panics if it +// fails to create a new context. +func (d *Dashboard) Context(c appengine.Context) appengine.Context { + // No namespace needed for the original Go dashboard. + if d.Name == "Go" { + return c + } + n, err := appengine.Namespace(c, d.Name) + if err != nil { + panic(err) + } + return n +} + +// the currently known dashboards. +var dashboards = []*Dashboard{goDash, gccgoDash} + +// goDash is the dashboard for the main go repository. +var goDash = &Dashboard{ + Name: "Go", + RelPath: "/", + Packages: goPackages, +} + +// goPackages is a list of all of the packages built by the main go repository. +var goPackages = []*Package{ + { + Kind: "go", + Name: "Go", + }, + { + Kind: "subrepo", + Name: "go.blog", + Path: "code.google.com/p/go.blog", + }, + { + Kind: "subrepo", + Name: "go.codereview", + Path: "code.google.com/p/go.codereview", + }, + { + Kind: "subrepo", + Name: "go.crypto", + Path: "code.google.com/p/go.crypto", + }, + { + Kind: "subrepo", + Name: "go.exp", + Path: "code.google.com/p/go.exp", + }, + { + Kind: "subrepo", + Name: "go.image", + Path: "code.google.com/p/go.image", + }, + { + Kind: "subrepo", + Name: "go.net", + Path: "code.google.com/p/go.net", + }, + { + Kind: "subrepo", + Name: "go.talks", + Path: "code.google.com/p/go.talks", + }, + { + Kind: "subrepo", + Name: "go.tools", + Path: "code.google.com/p/go.tools", + }, +} + +// gccgoDash is the dashboard for gccgo. +var gccgoDash = &Dashboard{ + Name: "Gccgo", + RelPath: "/gccgo/", + Packages: []*Package{ + { + Kind: "gccgo", + Name: "Gccgo", + }, + }, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/handler.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/handler.go new file mode 100644 index 00000000..bdef89e0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/handler.go @@ -0,0 +1,477 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +import ( + "crypto/hmac" + "crypto/md5" + "encoding/json" + "errors" + "fmt" + "net/http" + "strings" + "unicode/utf8" + + "appengine" + "appengine/datastore" + + "cache" +) + +const commitsPerPage = 30 + +// commitHandler retrieves commit data or records a new commit. +// +// For GET requests it returns a Commit value for the specified +// packagePath and hash. +// +// For POST requests it reads a JSON-encoded Commit value from the request +// body and creates a new Commit entity. It also updates the "tip" Tag for +// each new commit at tip. +// +// This handler is used by a gobuilder process in -commit mode. +func commitHandler(r *http.Request) (interface{}, error) { + c := contextForRequest(r) + com := new(Commit) + + if r.Method == "GET" { + com.PackagePath = r.FormValue("packagePath") + com.Hash = r.FormValue("hash") + if err := datastore.Get(c, com.Key(c), com); err != nil { + return nil, fmt.Errorf("getting Commit: %v", err) + } + return com, nil + } + if r.Method != "POST" { + return nil, errBadMethod(r.Method) + } + if !isMasterKey(c, r.FormValue("key")) { + return nil, errors.New("can only POST commits with master key") + } + + // POST request + defer r.Body.Close() + if err := json.NewDecoder(r.Body).Decode(com); err != nil { + return nil, fmt.Errorf("decoding Body: %v", err) + } + com.Desc = limitStringLength(com.Desc, maxDatastoreStringLen) + if err := com.Valid(); err != nil { + return nil, fmt.Errorf("validating Commit: %v", err) + } + defer cache.Tick(c) + tx := func(c appengine.Context) error { + return addCommit(c, com) + } + return nil, datastore.RunInTransaction(c, tx, nil) +} + +// addCommit adds the Commit entity to the datastore and updates the tip Tag. +// It must be run inside a datastore transaction. +func addCommit(c appengine.Context, com *Commit) error { + var tc Commit // temp value so we don't clobber com + err := datastore.Get(c, com.Key(c), &tc) + if err != datastore.ErrNoSuchEntity { + // if this commit is already in the datastore, do nothing + if err == nil { + return nil + } + return fmt.Errorf("getting Commit: %v", err) + } + // get the next commit number + p, err := GetPackage(c, com.PackagePath) + if err != nil { + return fmt.Errorf("GetPackage: %v", err) + } + com.Num = p.NextNum + p.NextNum++ + if _, err := datastore.Put(c, p.Key(c), p); err != nil { + return fmt.Errorf("putting Package: %v", err) + } + // if this isn't the first Commit test the parent commit exists + if com.Num > 0 { + n, err := datastore.NewQuery("Commit"). + Filter("Hash =", com.ParentHash). + Ancestor(p.Key(c)). + Count(c) + if err != nil { + return fmt.Errorf("testing for parent Commit: %v", err) + } + if n == 0 { + return errors.New("parent commit not found") + } + } + // update the tip Tag if this is the Go repo and this isn't on a release branch + if p.Path == "" && !strings.HasPrefix(com.Desc, "[release-branch") { + t := &Tag{Kind: "tip", Hash: com.Hash} + if _, err = datastore.Put(c, t.Key(c), t); err != nil { + return fmt.Errorf("putting Tag: %v", err) + } + } + // put the Commit + if _, err = datastore.Put(c, com.Key(c), com); err != nil { + return fmt.Errorf("putting Commit: %v", err) + } + return nil +} + +// tagHandler records a new tag. It reads a JSON-encoded Tag value from the +// request body and updates the Tag entity for the Kind of tag provided. +// +// This handler is used by a gobuilder process in -commit mode. +func tagHandler(r *http.Request) (interface{}, error) { + if r.Method != "POST" { + return nil, errBadMethod(r.Method) + } + + t := new(Tag) + defer r.Body.Close() + if err := json.NewDecoder(r.Body).Decode(t); err != nil { + return nil, err + } + if err := t.Valid(); err != nil { + return nil, err + } + c := contextForRequest(r) + defer cache.Tick(c) + _, err := datastore.Put(c, t.Key(c), t) + return nil, err +} + +// Todo is a todoHandler response. +type Todo struct { + Kind string // "build-go-commit" or "build-package" + Data interface{} +} + +// todoHandler returns the next action to be performed by a builder. +// It expects "builder" and "kind" query parameters and returns a *Todo value. +// Multiple "kind" parameters may be specified. +func todoHandler(r *http.Request) (interface{}, error) { + c := contextForRequest(r) + now := cache.Now(c) + key := "build-todo-" + r.Form.Encode() + var todo *Todo + if cache.Get(r, now, key, &todo) { + return todo, nil + } + var err error + builder := r.FormValue("builder") + for _, kind := range r.Form["kind"] { + var com *Commit + switch kind { + case "build-go-commit": + com, err = buildTodo(c, builder, "", "") + case "build-package": + packagePath := r.FormValue("packagePath") + goHash := r.FormValue("goHash") + com, err = buildTodo(c, builder, packagePath, goHash) + } + if com != nil || err != nil { + if com != nil { + // ResultData can be large and not needed on builder. + com.ResultData = []string{} + } + todo = &Todo{Kind: kind, Data: com} + break + } + } + if err == nil { + cache.Set(r, now, key, todo) + } + return todo, err +} + +// buildTodo returns the next Commit to be built (or nil if none available). +// +// If packagePath and goHash are empty, it scans the first 20 Go Commits in +// Num-descending order and returns the first one it finds that doesn't have a +// Result for this builder. +// +// If provided with non-empty packagePath and goHash args, it scans the first +// 20 Commits in Num-descending order for the specified packagePath and +// returns the first that doesn't have a Result for this builder and goHash. +func buildTodo(c appengine.Context, builder, packagePath, goHash string) (*Commit, error) { + p, err := GetPackage(c, packagePath) + if err != nil { + return nil, err + } + + t := datastore.NewQuery("Commit"). + Ancestor(p.Key(c)). + Limit(commitsPerPage). + Order("-Num"). + Run(c) + for { + com := new(Commit) + if _, err := t.Next(com); err == datastore.Done { + break + } else if err != nil { + return nil, err + } + if com.Result(builder, goHash) == nil { + return com, nil + } + } + + // Nothing left to do if this is a package (not the Go tree). + if packagePath != "" { + return nil, nil + } + + // If there are no Go tree commits left to build, + // see if there are any subrepo commits that need to be built at tip. + // If so, ask the builder to build a go tree at the tip commit. + // TODO(adg): do the same for "weekly" and "release" tags. + + tag, err := GetTag(c, "tip") + if err != nil { + return nil, err + } + + // Check that this Go commit builds OK for this builder. + // If not, don't re-build as the subrepos will never get built anyway. + com, err := tag.Commit(c) + if err != nil { + return nil, err + } + if r := com.Result(builder, ""); r != nil && !r.OK { + return nil, nil + } + + pkgs, err := Packages(c, "subrepo") + if err != nil { + return nil, err + } + for _, pkg := range pkgs { + com, err := pkg.LastCommit(c) + if err != nil { + c.Warningf("%v: no Commit found: %v", pkg, err) + continue + } + if com.Result(builder, tag.Hash) == nil { + return tag.Commit(c) + } + } + + return nil, nil +} + +// packagesHandler returns a list of the non-Go Packages monitored +// by the dashboard. +func packagesHandler(r *http.Request) (interface{}, error) { + kind := r.FormValue("kind") + c := contextForRequest(r) + now := cache.Now(c) + key := "build-packages-" + kind + var p []*Package + if cache.Get(r, now, key, &p) { + return p, nil + } + p, err := Packages(c, kind) + if err != nil { + return nil, err + } + cache.Set(r, now, key, p) + return p, nil +} + +// resultHandler records a build result. +// It reads a JSON-encoded Result value from the request body, +// creates a new Result entity, and updates the relevant Commit entity. +// If the Log field is not empty, resultHandler creates a new Log entity +// and updates the LogHash field before putting the Commit entity. +func resultHandler(r *http.Request) (interface{}, error) { + if r.Method != "POST" { + return nil, errBadMethod(r.Method) + } + + c := contextForRequest(r) + res := new(Result) + defer r.Body.Close() + if err := json.NewDecoder(r.Body).Decode(res); err != nil { + return nil, fmt.Errorf("decoding Body: %v", err) + } + if err := res.Valid(); err != nil { + return nil, fmt.Errorf("validating Result: %v", err) + } + defer cache.Tick(c) + // store the Log text if supplied + if len(res.Log) > 0 { + hash, err := PutLog(c, res.Log) + if err != nil { + return nil, fmt.Errorf("putting Log: %v", err) + } + res.LogHash = hash + } + tx := func(c appengine.Context) error { + // check Package exists + if _, err := GetPackage(c, res.PackagePath); err != nil { + return fmt.Errorf("GetPackage: %v", err) + } + // put Result + if _, err := datastore.Put(c, res.Key(c), res); err != nil { + return fmt.Errorf("putting Result: %v", err) + } + // add Result to Commit + com := &Commit{PackagePath: res.PackagePath, Hash: res.Hash} + if err := com.AddResult(c, res); err != nil { + return fmt.Errorf("AddResult: %v", err) + } + // Send build failure notifications, if necessary. + // Note this must run after the call AddResult, which + // populates the Commit's ResultData field. + return notifyOnFailure(c, com, res.Builder) + } + return nil, datastore.RunInTransaction(c, tx, nil) +} + +// logHandler displays log text for a given hash. +// It handles paths like "/log/hash". +func logHandler(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-type", "text/plain; charset=utf-8") + c := contextForRequest(r) + hash := r.URL.Path[strings.LastIndex(r.URL.Path, "/")+1:] + key := datastore.NewKey(c, "Log", hash, 0, nil) + l := new(Log) + if err := datastore.Get(c, key, l); err != nil { + logErr(w, r, err) + return + } + b, err := l.Text() + if err != nil { + logErr(w, r, err) + return + } + w.Write(b) +} + +type dashHandler func(*http.Request) (interface{}, error) + +type dashResponse struct { + Response interface{} + Error string +} + +// errBadMethod is returned by a dashHandler when +// the request has an unsuitable method. +type errBadMethod string + +func (e errBadMethod) Error() string { + return "bad method: " + string(e) +} + +// AuthHandler wraps a http.HandlerFunc with a handler that validates the +// supplied key and builder query parameters. +func AuthHandler(h dashHandler) http.HandlerFunc { + return func(w http.ResponseWriter, r *http.Request) { + c := contextForRequest(r) + + // Put the URL Query values into r.Form to avoid parsing the + // request body when calling r.FormValue. + r.Form = r.URL.Query() + + var err error + var resp interface{} + + // Validate key query parameter for POST requests only. + key := r.FormValue("key") + builder := r.FormValue("builder") + if r.Method == "POST" && !validKey(c, key, builder) { + err = fmt.Errorf("invalid key %q for builder %q", key, builder) + } + + // Call the original HandlerFunc and return the response. + if err == nil { + resp, err = h(r) + } + + // Write JSON response. + dashResp := &dashResponse{Response: resp} + if err != nil { + c.Errorf("%v", err) + dashResp.Error = err.Error() + } + w.Header().Set("Content-Type", "application/json") + if err = json.NewEncoder(w).Encode(dashResp); err != nil { + c.Criticalf("encoding response: %v", err) + } + } +} + +func keyHandler(w http.ResponseWriter, r *http.Request) { + builder := r.FormValue("builder") + if builder == "" { + logErr(w, r, errors.New("must supply builder in query string")) + return + } + c := contextForRequest(r) + fmt.Fprint(w, builderKey(c, builder)) +} + +func init() { + for _, d := range dashboards { + // admin handlers + http.HandleFunc(d.RelPath+"init", initHandler) + http.HandleFunc(d.RelPath+"key", keyHandler) + + // authenticated handlers + http.HandleFunc(d.RelPath+"commit", AuthHandler(commitHandler)) + http.HandleFunc(d.RelPath+"packages", AuthHandler(packagesHandler)) + http.HandleFunc(d.RelPath+"result", AuthHandler(resultHandler)) + http.HandleFunc(d.RelPath+"tag", AuthHandler(tagHandler)) + http.HandleFunc(d.RelPath+"todo", AuthHandler(todoHandler)) + + // public handlers + http.HandleFunc(d.RelPath+"log/", logHandler) + } +} + +func validHash(hash string) bool { + // TODO(adg): correctly validate a hash + return hash != "" +} + +func validKey(c appengine.Context, key, builder string) bool { + return isMasterKey(c, key) || key == builderKey(c, builder) +} + +func isMasterKey(c appengine.Context, key string) bool { + return appengine.IsDevAppServer() || key == secretKey(c) +} + +func builderKey(c appengine.Context, builder string) string { + h := hmac.New(md5.New, []byte(secretKey(c))) + h.Write([]byte(builder)) + return fmt.Sprintf("%x", h.Sum(nil)) +} + +func logErr(w http.ResponseWriter, r *http.Request, err error) { + contextForRequest(r).Errorf("Error: %v", err) + w.WriteHeader(http.StatusInternalServerError) + fmt.Fprint(w, "Error: ", err) +} + +func contextForRequest(r *http.Request) appengine.Context { + return dashboardForRequest(r).Context(appengine.NewContext(r)) +} + +// limitStringLength essentially does return s[:max], +// but it ensures that we dot not split UTF-8 rune in half. +// Otherwise appengine python scripts will break badly. +func limitStringLength(s string, max int) string { + if len(s) <= max { + return s + } + for { + s = s[:max] + r, size := utf8.DecodeLastRuneInString(s) + if r != utf8.RuneError || size != 1 { + return s + } + max-- + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/init.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/init.go new file mode 100644 index 00000000..8f94714a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/init.go @@ -0,0 +1,40 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +import ( + "fmt" + "net/http" + + "appengine" + "appengine/datastore" + "cache" +) + +func initHandler(w http.ResponseWriter, r *http.Request) { + d := dashboardForRequest(r) + c := d.Context(appengine.NewContext(r)) + defer cache.Tick(c) + for _, p := range d.Packages { + err := datastore.Get(c, p.Key(c), new(Package)) + if _, ok := err.(*datastore.ErrFieldMismatch); ok { + // Some fields have been removed, so it's okay to ignore this error. + err = nil + } + if err == nil { + continue + } else if err != datastore.ErrNoSuchEntity { + logErr(w, r, err) + return + } + if _, err := datastore.Put(c, p.Key(c), p); err != nil { + logErr(w, r, err) + return + } + } + fmt.Fprint(w, "OK") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/key.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/key.go new file mode 100644 index 00000000..91882734 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/key.go @@ -0,0 +1,64 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +import ( + "sync" + + "appengine" + "appengine/datastore" +) + +var theKey struct { + sync.RWMutex + BuilderKey +} + +type BuilderKey struct { + Secret string +} + +func (k *BuilderKey) Key(c appengine.Context) *datastore.Key { + return datastore.NewKey(c, "BuilderKey", "root", 0, nil) +} + +func secretKey(c appengine.Context) string { + // check with rlock + theKey.RLock() + k := theKey.Secret + theKey.RUnlock() + if k != "" { + return k + } + + // prepare to fill; check with lock and keep lock + theKey.Lock() + defer theKey.Unlock() + if theKey.Secret != "" { + return theKey.Secret + } + + // fill + if err := datastore.Get(c, theKey.Key(c), &theKey.BuilderKey); err != nil { + if err == datastore.ErrNoSuchEntity { + // If the key is not stored in datastore, write it. + // This only happens at the beginning of a new deployment. + // The code is left here for SDK use and in case a fresh + // deployment is ever needed. "gophers rule" is not the + // real key. + if !appengine.IsDevAppServer() { + panic("lost key from datastore") + } + theKey.Secret = "gophers rule" + datastore.Put(c, theKey.Key(c), &theKey.BuilderKey) + return theKey.Secret + } + panic("cannot load builder key: " + err.Error()) + } + + return theKey.Secret +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/notify.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/notify.go new file mode 100644 index 00000000..44c23606 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/notify.go @@ -0,0 +1,238 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +import ( + "bytes" + "encoding/gob" + "errors" + "fmt" + "io/ioutil" + "net/http" + "regexp" + "text/template" + + "appengine" + "appengine/datastore" + "appengine/delay" + "appengine/mail" + "appengine/urlfetch" +) + +const ( + mailFrom = "builder@golang.org" // use this for sending any mail + failMailTo = "golang-dev@googlegroups.com" + domain = "build.golang.org" + gobotBase = "http://research.swtch.com/gobot_codereview" +) + +// ignoreFailure is a set of builders that we don't email about because +// they are not yet production-ready. +var ignoreFailure = map[string]bool{ + "dragonfly-386": true, + "dragonfly-amd64": true, + "netbsd-arm-rpi": true, + "solaris-amd64-smartos": true, + "solaris-amd64-solaris11": true, +} + +// notifyOnFailure checks whether the supplied Commit or the subsequent +// Commit (if present) breaks the build for this builder. +// If either of those commits break the build an email notification is sent +// from a delayed task. (We use a task because this way the mail won't be +// sent if the enclosing datastore transaction fails.) +// +// This must be run in a datastore transaction, and the provided *Commit must +// have been retrieved from the datastore within that transaction. +func notifyOnFailure(c appengine.Context, com *Commit, builder string) error { + if ignoreFailure[builder] { + return nil + } + + // TODO(adg): implement notifications for packages + if com.PackagePath != "" { + return nil + } + + p := &Package{Path: com.PackagePath} + var broken *Commit + cr := com.Result(builder, "") + if cr == nil { + return fmt.Errorf("no result for %s/%s", com.Hash, builder) + } + q := datastore.NewQuery("Commit").Ancestor(p.Key(c)) + if cr.OK { + // This commit is OK. Notify if next Commit is broken. + next := new(Commit) + q = q.Filter("ParentHash=", com.Hash) + if err := firstMatch(c, q, next); err != nil { + if err == datastore.ErrNoSuchEntity { + // OK at tip, no notification necessary. + return nil + } + return err + } + if nr := next.Result(builder, ""); nr != nil && !nr.OK { + c.Debugf("commit ok: %#v\nresult: %#v", com, cr) + c.Debugf("next commit broken: %#v\nnext result:%#v", next, nr) + broken = next + } + } else { + // This commit is broken. Notify if the previous Commit is OK. + prev := new(Commit) + q = q.Filter("Hash=", com.ParentHash) + if err := firstMatch(c, q, prev); err != nil { + if err == datastore.ErrNoSuchEntity { + // No previous result, let the backfill of + // this result trigger the notification. + return nil + } + return err + } + if pr := prev.Result(builder, ""); pr != nil && pr.OK { + c.Debugf("commit broken: %#v\nresult: %#v", com, cr) + c.Debugf("previous commit ok: %#v\nprevious result:%#v", prev, pr) + broken = com + } + } + var err error + if broken != nil && !broken.FailNotificationSent { + c.Infof("%s is broken commit; notifying", broken.Hash) + notifyLater.Call(c, broken, builder) // add task to queue + broken.FailNotificationSent = true + _, err = datastore.Put(c, broken.Key(c), broken) + } + return err +} + +// firstMatch executes the query q and loads the first entity into v. +func firstMatch(c appengine.Context, q *datastore.Query, v interface{}) error { + t := q.Limit(1).Run(c) + _, err := t.Next(v) + if err == datastore.Done { + err = datastore.ErrNoSuchEntity + } + return err +} + +var notifyLater = delay.Func("notify", notify) + +// notify tries to update the CL for the given Commit with a failure message. +// If it doesn't succeed, it sends a failure email to golang-dev. +func notify(c appengine.Context, com *Commit, builder string) { + if !updateCL(c, com, builder) { + // Send a mail notification if the CL can't be found. + sendFailMail(c, com, builder) + } +} + +// updateCL updates the CL for the given Commit with a failure message +// for the given builder. +func updateCL(c appengine.Context, com *Commit, builder string) bool { + cl, err := lookupCL(c, com) + if err != nil { + c.Errorf("could not find CL for %v: %v", com.Hash, err) + return false + } + res := com.Result(builder, "") + if res == nil { + c.Errorf("finding result for %q: %+v", builder, com) + return false + } + url := fmt.Sprintf("%v?cl=%v&brokebuild=%v&log=%v", gobotBase, cl, builder, res.LogHash) + r, err := urlfetch.Client(c).Post(url, "text/plain", nil) + if err != nil { + c.Errorf("could not update CL %v: %v", cl, err) + return false + } + r.Body.Close() + if r.StatusCode != http.StatusOK { + c.Errorf("could not update CL %v: %v", cl, r.Status) + return false + } + return true +} + +var clURL = regexp.MustCompile(`https://codereview.appspot.com/([0-9]+)`) + +// lookupCL consults code.google.com for the full change description for the +// provided Commit, and returns the relevant CL number. +func lookupCL(c appengine.Context, com *Commit) (string, error) { + url := "https://code.google.com/p/go/source/detail?r=" + com.Hash + r, err := urlfetch.Client(c).Get(url) + if err != nil { + return "", err + } + defer r.Body.Close() + if r.StatusCode != http.StatusOK { + return "", fmt.Errorf("retrieving %v: %v", url, r.Status) + } + b, err := ioutil.ReadAll(r.Body) + if err != nil { + return "", err + } + m := clURL.FindAllSubmatch(b, -1) + if m == nil { + return "", errors.New("no CL URL found on changeset page") + } + // Return the last visible codereview URL on the page, + // in case the change description refers to another CL. + return string(m[len(m)-1][1]), nil +} + +var sendFailMailTmpl = template.Must(template.New("notify.txt"). + Funcs(template.FuncMap(tmplFuncs)). + ParseFiles("build/notify.txt")) + +func init() { + gob.Register(&Commit{}) // for delay +} + +// sendFailMail sends a mail notification that the build failed on the +// provided commit and builder. +func sendFailMail(c appengine.Context, com *Commit, builder string) { + // TODO(adg): handle packages + + // get Result + r := com.Result(builder, "") + if r == nil { + c.Errorf("finding result for %q: %+v", builder, com) + return + } + + // get Log + k := datastore.NewKey(c, "Log", r.LogHash, 0, nil) + l := new(Log) + if err := datastore.Get(c, k, l); err != nil { + c.Errorf("finding Log record %v: %v", r.LogHash, err) + return + } + + // prepare mail message + var body bytes.Buffer + err := sendFailMailTmpl.Execute(&body, map[string]interface{}{ + "Builder": builder, "Commit": com, "Result": r, "Log": l, + "Hostname": domain, + }) + if err != nil { + c.Errorf("rendering mail template: %v", err) + return + } + subject := fmt.Sprintf("%s broken by %s", builder, shortDesc(com.Desc)) + msg := &mail.Message{ + Sender: mailFrom, + To: []string{failMailTo}, + ReplyTo: failMailTo, + Subject: subject, + Body: body.String(), + } + + // send mail + if err := mail.Send(c, msg); err != nil { + c.Errorf("sending mail: %v", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/notify.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/notify.txt new file mode 100644 index 00000000..6c900670 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/notify.txt @@ -0,0 +1,9 @@ +Change {{shortHash .Commit.Hash}} broke the {{.Builder}} build: +http://{{.Hostname}}/log/{{.Result.LogHash}} + +{{.Commit.Desc}} + +http://code.google.com/p/go/source/detail?r={{shortHash .Commit.Hash}} + +$ tail -200 < log +{{printf "%s" .Log.Text | tail 200}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/test.go new file mode 100644 index 00000000..3c9576e7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/test.go @@ -0,0 +1,277 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package build + +// TODO(adg): test authentication +// TODO(adg): refactor to use appengine/aetest instead + +import ( + "bytes" + "encoding/json" + "errors" + "fmt" + "io" + "net/http" + "net/http/httptest" + "net/url" + "strings" + "time" + + "appengine" + "appengine/datastore" +) + +func init() { + http.HandleFunc("/buildtest", testHandler) +} + +var testEntityKinds = []string{ + "Package", + "Commit", + "Result", + "Log", +} + +const testPkg = "code.google.com/p/go.test" + +var testPackage = &Package{Name: "Test", Kind: "subrepo", Path: testPkg} + +var testPackages = []*Package{ + {Name: "Go", Path: ""}, + testPackage, +} + +var tCommitTime = time.Now().Add(-time.Hour * 24 * 7) + +func tCommit(hash, parentHash, path string) *Commit { + tCommitTime.Add(time.Hour) // each commit should have a different time + return &Commit{ + PackagePath: path, + Hash: hash, + ParentHash: parentHash, + Time: tCommitTime, + User: "adg", + Desc: "change description " + hash, + } +} + +var testRequests = []struct { + path string + vals url.Values + req interface{} + res interface{} +}{ + // Packages + {"/packages?kind=subrepo", nil, nil, []*Package{testPackage}}, + + // Go repo + {"/commit", nil, tCommit("0001", "0000", ""), nil}, + {"/commit", nil, tCommit("0002", "0001", ""), nil}, + {"/commit", nil, tCommit("0003", "0002", ""), nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-amd64"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + {"/result", nil, &Result{Builder: "linux-386", Hash: "0001", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + {"/result", nil, &Result{Builder: "linux-386", Hash: "0002", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + + // Other builders, to test the UI. + {"/result", nil, &Result{Builder: "linux-amd64", Hash: "0001", OK: true}, nil}, + {"/result", nil, &Result{Builder: "linux-amd64-race", Hash: "0001", OK: true}, nil}, + {"/result", nil, &Result{Builder: "netbsd-386", Hash: "0001", OK: true}, nil}, + {"/result", nil, &Result{Builder: "plan9-386", Hash: "0001", OK: true}, nil}, + {"/result", nil, &Result{Builder: "windows-386", Hash: "0001", OK: true}, nil}, + {"/result", nil, &Result{Builder: "windows-amd64", Hash: "0001", OK: true}, nil}, + {"/result", nil, &Result{Builder: "windows-amd64-race", Hash: "0001", OK: true}, nil}, + + // multiple builders + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-amd64"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + {"/result", nil, &Result{Builder: "linux-amd64", Hash: "0003", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-amd64"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0002"}}}, + + // branches + {"/commit", nil, tCommit("0004", "0003", ""), nil}, + {"/commit", nil, tCommit("0005", "0002", ""), nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0005"}}}, + {"/result", nil, &Result{Builder: "linux-386", Hash: "0005", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0004"}}}, + {"/result", nil, &Result{Builder: "linux-386", Hash: "0004", OK: false}, nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0003"}}}, + + // logs + {"/result", nil, &Result{Builder: "linux-386", Hash: "0003", OK: false, Log: "test"}, nil}, + {"/log/a94a8fe5ccb19ba61c4c0873d391e987982fbbd3", nil, nil, "test"}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, nil}, + + // repeat failure (shouldn't re-send mail) + {"/result", nil, &Result{Builder: "linux-386", Hash: "0003", OK: false, Log: "test"}, nil}, + + // non-Go repos + {"/commit", nil, tCommit("1001", "1000", testPkg), nil}, + {"/commit", nil, tCommit("1002", "1001", testPkg), nil}, + {"/commit", nil, tCommit("1003", "1002", testPkg), nil}, + {"/todo", url.Values{"kind": {"build-package"}, "builder": {"linux-386"}, "packagePath": {testPkg}, "goHash": {"0001"}}, nil, &Todo{Kind: "build-package", Data: &Commit{Hash: "1003"}}}, + {"/result", nil, &Result{PackagePath: testPkg, Builder: "linux-386", Hash: "1003", GoHash: "0001", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-package"}, "builder": {"linux-386"}, "packagePath": {testPkg}, "goHash": {"0001"}}, nil, &Todo{Kind: "build-package", Data: &Commit{Hash: "1002"}}}, + {"/result", nil, &Result{PackagePath: testPkg, Builder: "linux-386", Hash: "1002", GoHash: "0001", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-package"}, "builder": {"linux-386"}, "packagePath": {testPkg}, "goHash": {"0001"}}, nil, &Todo{Kind: "build-package", Data: &Commit{Hash: "1001"}}}, + {"/result", nil, &Result{PackagePath: testPkg, Builder: "linux-386", Hash: "1001", GoHash: "0001", OK: true}, nil}, + {"/todo", url.Values{"kind": {"build-package"}, "builder": {"linux-386"}, "packagePath": {testPkg}, "goHash": {"0001"}}, nil, nil}, + {"/todo", url.Values{"kind": {"build-package"}, "builder": {"linux-386"}, "packagePath": {testPkg}, "goHash": {"0002"}}, nil, &Todo{Kind: "build-package", Data: &Commit{Hash: "1003"}}}, + + // re-build Go revision for stale subrepos + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, &Todo{Kind: "build-go-commit", Data: &Commit{Hash: "0005"}}}, + {"/result", nil, &Result{PackagePath: testPkg, Builder: "linux-386", Hash: "1001", GoHash: "0005", OK: false, Log: "boo"}, nil}, + {"/todo", url.Values{"kind": {"build-go-commit"}, "builder": {"linux-386"}}, nil, nil}, +} + +func testHandler(w http.ResponseWriter, r *http.Request) { + if !appengine.IsDevAppServer() { + fmt.Fprint(w, "These tests must be run under the dev_appserver.") + return + } + c := appengine.NewContext(r) + if err := nukeEntities(c, testEntityKinds); err != nil { + logErr(w, r, err) + return + } + if r.FormValue("nukeonly") != "" { + fmt.Fprint(w, "OK") + return + } + + for _, p := range testPackages { + if _, err := datastore.Put(c, p.Key(c), p); err != nil { + logErr(w, r, err) + return + } + } + + origReq := *r + defer func() { + // HACK: We need to clobber the original request (see below) + // so make sure we fix it before exiting the handler. + *r = origReq + }() + for i, t := range testRequests { + c.Infof("running test %d %s", i, t.path) + errorf := func(format string, args ...interface{}) { + fmt.Fprintf(w, "%d %s: ", i, t.path) + fmt.Fprintf(w, format, args...) + fmt.Fprintln(w) + } + var body io.ReadWriter + if t.req != nil { + body = new(bytes.Buffer) + json.NewEncoder(body).Encode(t.req) + } + url := "http://" + domain + t.path + if t.vals != nil { + url += "?" + t.vals.Encode() + } + req, err := http.NewRequest("POST", url, body) + if err != nil { + logErr(w, r, err) + return + } + if t.req != nil { + req.Method = "POST" + } + req.Header = origReq.Header + rec := httptest.NewRecorder() + + // Make the request + *r = *req // HACK: App Engine uses the request pointer + // as a map key to resolve Contexts. + http.DefaultServeMux.ServeHTTP(rec, r) + + if rec.Code != 0 && rec.Code != 200 { + errorf(rec.Body.String()) + return + } + resp := new(dashResponse) + + // If we're expecting a *Todo value, + // prime the Response field with a Todo and a Commit inside it. + if _, ok := t.res.(*Todo); ok { + resp.Response = &Todo{Data: &Commit{}} + } + + if strings.HasPrefix(t.path, "/log/") { + resp.Response = rec.Body.String() + } else { + err := json.NewDecoder(rec.Body).Decode(resp) + if err != nil { + errorf("decoding response: %v", err) + return + } + } + if e, ok := t.res.(string); ok { + g, ok := resp.Response.(string) + if !ok { + errorf("Response not string: %T", resp.Response) + return + } + if g != e { + errorf("response mismatch: got %q want %q", g, e) + return + } + } + if e, ok := t.res.(*Todo); ok { + g, ok := resp.Response.(*Todo) + if !ok { + errorf("Response not *Todo: %T", resp.Response) + return + } + if e.Data == nil && g.Data != nil { + errorf("Response.Data should be nil, got: %v", g.Data) + return + } + if g.Data == nil { + errorf("Response.Data is nil, want: %v", e.Data) + return + } + gd, ok := g.Data.(*Commit) + if !ok { + errorf("Response.Data not *Commit: %T", g.Data) + return + } + if eh := e.Data.(*Commit).Hash; eh != gd.Hash { + errorf("hashes don't match: got %q, want %q", gd.Hash, eh) + return + } + } + if t.res == nil && resp.Response != nil { + errorf("response mismatch: got %q expected ", + resp.Response) + return + } + } + fmt.Fprint(w, "PASS\nYou should see only one mail notification (for 0003/linux-386) in the dev_appserver logs.") +} + +func nukeEntities(c appengine.Context, kinds []string) error { + if !appengine.IsDevAppServer() { + return errors.New("can't nuke production data") + } + var keys []*datastore.Key + for _, kind := range kinds { + q := datastore.NewQuery(kind).KeysOnly() + for t := q.Run(c); ; { + k, err := t.Next(nil) + if err == datastore.Done { + break + } + if err != nil { + return err + } + keys = append(keys, k) + } + } + return datastore.DeleteMulti(c, keys) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/ui.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/ui.go new file mode 100644 index 00000000..0536dc0b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/ui.go @@ -0,0 +1,408 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// TODO(adg): packages at weekly/release +// TODO(adg): some means to register new packages + +// +build appengine + +package build + +import ( + "bytes" + "errors" + "html/template" + "net/http" + "regexp" + "sort" + "strconv" + "strings" + + "cache" + + "appengine" + "appengine/datastore" +) + +func init() { + for _, d := range dashboards { + http.HandleFunc(d.RelPath, uiHandler) + } +} + +// uiHandler draws the build status page. +func uiHandler(w http.ResponseWriter, r *http.Request) { + d := dashboardForRequest(r) + c := d.Context(appengine.NewContext(r)) + now := cache.Now(c) + const key = "build-ui" + + page, _ := strconv.Atoi(r.FormValue("page")) + if page < 0 { + page = 0 + } + repo := r.FormValue("repo") + useCache := page == 0 && repo == "" + + // Used cached version of front page, if available. + if useCache { + var b []byte + if cache.Get(r, now, key, &b) { + w.Write(b) + return + } + } + + pkg := &Package{} // empty package is the main repository + if repo != "" { + var err error + pkg, err = GetPackage(c, repo) + if err != nil { + logErr(w, r, err) + return + } + } + commits, err := dashCommits(c, pkg, page) + if err != nil { + logErr(w, r, err) + return + } + builders := commitBuilders(commits) + + var tipState *TagState + if pkg.Kind == "" && page == 0 { + // only show sub-repo state on first page of normal repo view + tipState, err = TagStateByName(c, "tip") + if err != nil { + logErr(w, r, err) + return + } + } + + p := &Pagination{} + if len(commits) == commitsPerPage { + p.Next = page + 1 + } + if page > 0 { + p.Prev = page - 1 + p.HasPrev = true + } + data := &uiTemplateData{d, pkg, commits, builders, tipState, p} + + var buf bytes.Buffer + if err := uiTemplate.Execute(&buf, data); err != nil { + logErr(w, r, err) + return + } + + // Cache the front page. + if useCache { + cache.Set(r, now, key, buf.Bytes()) + } + + buf.WriteTo(w) +} + +type Pagination struct { + Next, Prev int + HasPrev bool +} + +// dashCommits gets a slice of the latest Commits to the current dashboard. +// If page > 0 it paginates by commitsPerPage. +func dashCommits(c appengine.Context, pkg *Package, page int) ([]*Commit, error) { + q := datastore.NewQuery("Commit"). + Ancestor(pkg.Key(c)). + Order("-Num"). + Limit(commitsPerPage). + Offset(page * commitsPerPage) + var commits []*Commit + _, err := q.GetAll(c, &commits) + return commits, err +} + +// commitBuilders returns the names of the builders that provided +// Results for the provided commits. +func commitBuilders(commits []*Commit) []string { + builders := make(map[string]bool) + for _, commit := range commits { + for _, r := range commit.Results() { + builders[r.Builder] = true + } + } + k := keys(builders) + sort.Sort(builderOrder(k)) + return k +} + +func keys(m map[string]bool) (s []string) { + for k := range m { + s = append(s, k) + } + sort.Strings(s) + return +} + +// builderOrder implements sort.Interface, sorting builder names +// ("darwin-amd64", etc) first by builderPriority and then alphabetically. +type builderOrder []string + +func (s builderOrder) Len() int { return len(s) } +func (s builderOrder) Swap(i, j int) { s[i], s[j] = s[j], s[i] } +func (s builderOrder) Less(i, j int) bool { + pi, pj := builderPriority(s[i]), builderPriority(s[j]) + if pi == pj { + return s[i] < s[j] + } + return pi < pj +} + +func builderPriority(builder string) int { + // Group race builders together. + if isRace(builder) { + return 1 + } + // If the OS has a specified priority, use it. + if p, ok := osPriority[builderOS(builder)]; ok { + return p + } + // The rest. + return 10 +} + +func isRace(s string) bool { + return strings.Contains(s, "-race-") || strings.HasSuffix(s, "-race") +} + +func unsupportedOS(os string) bool { + if os == "race" { + return false + } + p, ok := osPriority[os] + return !ok || p > 0 +} + +// Priorities for specific operating systems. +var osPriority = map[string]int{ + "darwin": 0, + "freebsd": 0, + "linux": 0, + "windows": 0, + // race == 1 + "openbsd": 2, + "netbsd": 3, + "dragonfly": 4, +} + +// TagState represents the state of all Packages at a Tag. +type TagState struct { + Tag *Commit + Packages []*PackageState +} + +// PackageState represents the state of a Package at a Tag. +type PackageState struct { + Package *Package + Commit *Commit +} + +// TagStateByName fetches the results for all Go subrepos at the specified Tag. +func TagStateByName(c appengine.Context, name string) (*TagState, error) { + tag, err := GetTag(c, name) + if err != nil { + return nil, err + } + pkgs, err := Packages(c, "subrepo") + if err != nil { + return nil, err + } + var st TagState + for _, pkg := range pkgs { + com, err := pkg.LastCommit(c) + if err != nil { + c.Warningf("%v: no Commit found: %v", pkg, err) + continue + } + st.Packages = append(st.Packages, &PackageState{pkg, com}) + } + st.Tag, err = tag.Commit(c) + if err != nil { + return nil, err + } + return &st, nil +} + +type uiTemplateData struct { + Dashboard *Dashboard + Package *Package + Commits []*Commit + Builders []string + TipState *TagState + Pagination *Pagination +} + +var uiTemplate = template.Must( + template.New("ui.html").Funcs(tmplFuncs).ParseFiles("build/ui.html"), +) + +var tmplFuncs = template.FuncMap{ + "buildDashboards": buildDashboards, + "builderOS": builderOS, + "builderSpans": builderSpans, + "builderSubheading": builderSubheading, + "builderTitle": builderTitle, + "repoURL": repoURL, + "shortDesc": shortDesc, + "shortHash": shortHash, + "shortUser": shortUser, + "tail": tail, + "unsupportedOS": unsupportedOS, +} + +func splitDash(s string) (string, string) { + i := strings.Index(s, "-") + if i >= 0 { + return s[:i], s[i+1:] + } + return s, "" +} + +// builderOS returns the os tag for a builder string +func builderOS(s string) string { + os, _ := splitDash(s) + return os +} + +// builderOSOrRace returns the builder OS or, if it is a race builder, "race". +func builderOSOrRace(s string) string { + if isRace(s) { + return "race" + } + return builderOS(s) +} + +// builderArch returns the arch tag for a builder string +func builderArch(s string) string { + _, arch := splitDash(s) + arch, _ = splitDash(arch) // chop third part + return arch +} + +// builderSubheading returns a short arch tag for a builder string +// or, if it is a race builder, the builder OS. +func builderSubheading(s string) string { + if isRace(s) { + return builderOS(s) + } + arch := builderArch(s) + switch arch { + case "amd64": + return "x64" + } + return arch +} + +// builderArchChar returns the architecture letter for a builder string +func builderArchChar(s string) string { + arch := builderArch(s) + switch arch { + case "386": + return "8" + case "amd64": + return "6" + case "arm": + return "5" + } + return arch +} + +type builderSpan struct { + N int + OS string +} + +// builderSpans creates a list of tags showing +// the builder's operating system names, spanning +// the appropriate number of columns. +func builderSpans(s []string) []builderSpan { + var sp []builderSpan + for len(s) > 0 { + i := 1 + os := builderOSOrRace(s[0]) + for i < len(s) && builderOSOrRace(s[i]) == os { + i++ + } + sp = append(sp, builderSpan{i, os}) + s = s[i:] + } + return sp +} + +// builderTitle formats "linux-amd64-foo" as "linux amd64 foo". +func builderTitle(s string) string { + return strings.Replace(s, "-", " ", -1) +} + +// buildDashboards returns the known public dashboards. +func buildDashboards() []*Dashboard { + return dashboards +} + +// shortDesc returns the first line of a description. +func shortDesc(desc string) string { + if i := strings.Index(desc, "\n"); i != -1 { + desc = desc[:i] + } + return desc +} + +// shortHash returns a short version of a hash. +func shortHash(hash string) string { + if len(hash) > 12 { + hash = hash[:12] + } + return hash +} + +// shortUser returns a shortened version of a user string. +func shortUser(user string) string { + if i, j := strings.Index(user, "<"), strings.Index(user, ">"); 0 <= i && i < j { + user = user[i+1 : j] + } + if i := strings.Index(user, "@"); i >= 0 { + return user[:i] + } + return user +} + +// repoRe matches Google Code repositories and subrepositories (without paths). +var repoRe = regexp.MustCompile(`^code\.google\.com/p/([a-z0-9\-]+)(\.[a-z0-9\-]+)?$`) + +// repoURL returns the URL of a change at a Google Code repository or subrepo. +func repoURL(dashboard, hash, packagePath string) (string, error) { + if packagePath == "" { + if dashboard == "Gccgo" { + return "https://code.google.com/p/gofrontend/source/detail?r=" + hash, nil + } + return "https://code.google.com/p/go/source/detail?r=" + hash, nil + } + m := repoRe.FindStringSubmatch(packagePath) + if m == nil { + return "", errors.New("unrecognized package: " + packagePath) + } + url := "https://code.google.com/p/" + m[1] + "/source/detail?r=" + hash + if len(m) > 2 { + url += "&repo=" + m[2][1:] + } + return url, nil +} + +// tail returns the trailing n lines of s. +func tail(n int, s string) string { + lines := strings.Split(s, "\n") + if len(lines) < n { + return s + } + return strings.Join(lines[len(lines)-n:], "\n") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/ui.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/ui.html new file mode 100644 index 00000000..04184732 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/build/ui.html @@ -0,0 +1,260 @@ + + + + {{$.Dashboard.Name}} Build Dashboard + + + + + +

{{$.Dashboard.Name}} Build Status

+ + {{with $.Package.Name}}

{{.}}

{{end}} + + {{if $.Commits}} + + + + {{range $.Builders | builderSpans}} + + {{end}} + + + + + + + + {{if $.Package.Path}} + + {{else}} + + {{end}} + {{range $.Builders | builderSpans}} + + {{end}} + + + + + + {{if $.Package.Path}} + + + {{else}} + + {{end}} + {{range $.Builders}} + + {{end}} + + + + + {{range $c := $.Commits}} + {{range $i, $h := $c.ResultGoHashes}} + + {{if $i}} + + {{else}} + + {{end}} + {{if $h}} + + {{end}} + {{range $.Builders}} + + {{end}} + {{if $i}} + + + + {{else}} + + + + {{end}} + + {{end}} + {{end}} +
revision {{.OS}}
repo{{$.Dashboard.Name}} {{builderSubheading .}}
 {{shortHash $c.Hash}}{{shortHash $h}} + {{with $c.Result . $h}} + {{if .OK}} + ok + {{else}} + fail + {{end}} + {{else}} +   + {{end}} +    {{shortUser $c.User}}{{$c.Time.Format "Mon 02 Jan 15:04"}}{{shortDesc $c.Desc}}
+ + {{with $.Pagination}} +
+ newer + older + latest +
+ {{end}} + + {{else}} +

No commits to display. Hm.

+ {{end}} + + {{with $.TipState}} + {{$goHash := .Tag.Hash}} + {{if .Packages}} +

+ Sub-repositories at tip + ({{shortHash .Tag.Hash}}) +

+ + + + + {{range $.Builders | builderSpans}} + + {{end}} + + + + + + + + + + {{range $.Builders | builderSpans}} + + {{end}} + + + + + + + + {{range $.Builders}} + + {{end}} + + + + + {{range $pkg := .Packages}} + + + + {{range $.Builders}} + + {{end}} + {{with $pkg.Commit}} + + + + {{end}} + + {{end}} +
{{.OS}}
{{builderSubheading .}}
{{.Package.Name}} + {{$h := $pkg.Commit.Hash}} + {{shortHash $h}} + + {{with $pkg.Commit.Result . $goHash}} + {{if .OK}} + ok + {{else}} + fail + {{end}} + {{else}} +   + {{end}} + {{shortUser .User}}{{.Time.Format "Mon 02 Jan 15:04"}}{{shortDesc .Desc}}
+ {{end}} + {{end}} + + + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/cache/cache.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/cache/cache.go new file mode 100644 index 00000000..3c6a5c63 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/cache/cache.go @@ -0,0 +1,84 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package cache + +import ( + "fmt" + "net/http" + "time" + + "appengine" + "appengine/memcache" +) + +const ( + nocache = "nocache" + timeKey = "cachetime" + expiry = 600 // 10 minutes +) + +func newTime() uint64 { return uint64(time.Now().Unix()) << 32 } + +// Now returns the current logical datastore time to use for cache lookups. +func Now(c appengine.Context) uint64 { + t, err := memcache.Increment(c, timeKey, 0, newTime()) + if err != nil { + c.Errorf("cache.Now: %v", err) + return 0 + } + return t +} + +// Tick sets the current logical datastore time to a never-before-used time +// and returns that time. It should be called to invalidate the cache. +func Tick(c appengine.Context) uint64 { + t, err := memcache.Increment(c, timeKey, 1, newTime()) + if err != nil { + c.Errorf("cache.Tick: %v", err) + return 0 + } + return t +} + +// Get fetches data for name at time now from memcache and unmarshals it into +// value. It reports whether it found the cache record and logs any errors to +// the admin console. +func Get(r *http.Request, now uint64, name string, value interface{}) bool { + if now == 0 || r.FormValue(nocache) != "" { + return false + } + c := appengine.NewContext(r) + key := fmt.Sprintf("%s.%d", name, now) + _, err := memcache.JSON.Get(c, key, value) + if err == nil { + c.Debugf("cache hit %q", key) + return true + } + c.Debugf("cache miss %q", key) + if err != memcache.ErrCacheMiss { + c.Errorf("get cache %q: %v", key, err) + } + return false +} + +// Set puts value into memcache under name at time now. +// It logs any errors to the admin console. +func Set(r *http.Request, now uint64, name string, value interface{}) { + if now == 0 || r.FormValue(nocache) != "" { + return + } + c := appengine.NewContext(r) + key := fmt.Sprintf("%s.%d", name, now) + err := memcache.JSON.Set(c, &memcache.Item{ + Key: key, + Object: value, + Expiration: expiry, + }) + if err != nil { + c.Errorf("set cache %q: %v", key, err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/index.yaml b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/index.yaml new file mode 100644 index 00000000..8a21baca --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/index.yaml @@ -0,0 +1,13 @@ +indexes: + +- kind: Commit + ancestor: yes + properties: + - name: Num + direction: desc + +- kind: Commit + ancestor: yes + properties: + - name: Time + direction: desc diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/static/status_alert.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/static/status_alert.gif new file mode 100644 index 00000000..495d9d2e Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/static/status_alert.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/static/status_good.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/static/status_good.gif new file mode 100644 index 00000000..ef9c5a8f Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/app/static/status_good.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/Makefile b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/Makefile new file mode 100644 index 00000000..4e4d408b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/Makefile @@ -0,0 +1,9 @@ +# Copyright 2009 The Go Authors. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +builder: $(shell ls *.go) + go build -o $@ $^ + +clean: + rm -f builder diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/doc.go new file mode 100644 index 00000000..51928617 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/doc.go @@ -0,0 +1,58 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + +Go Builder is a continuous build client for the Go project. +It integrates with the Go Dashboard AppEngine application. + +Go Builder is intended to run continuously as a background process. + +It periodically pulls updates from the Go Mercurial repository. + +When a newer revision is found, Go Builder creates a clone of the repository, +runs all.bash, and reports build success or failure to the Go Dashboard. + +For a release revision (a change description that matches "release.YYYY-MM-DD"), +Go Builder will create a tar.gz archive of the GOROOT and deliver it to the +Go Google Code project's downloads section. + +Usage: + + gobuilder goos-goarch... + + Several goos-goarch combinations can be provided, and the builder will + build them in serial. + +Optional flags: + + -dashboard="godashboard.appspot.com": Go Dashboard Host + The location of the Go Dashboard application to which Go Builder will + report its results. + + -release: Build and deliver binary release archive + + -rev=N: Build revision N and exit + + -cmd="./all.bash": Build command (specify absolute or relative to go/src) + + -v: Verbose logging + + -external: External package builder mode (will not report Go build + state to dashboard or issue releases) + +The key file should be located at $HOME/.gobuildkey or, for a builder-specific +key, $HOME/.gobuildkey-$BUILDER (eg, $HOME/.gobuildkey-linux-amd64). + +The build key file is a text file of the format: + + godashboard-key + googlecode-username + googlecode-password + +If the Google Code credentials are not provided the archival step +will be skipped. + +*/ +package main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/env.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/env.go new file mode 100644 index 00000000..9a27aeaa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/env.go @@ -0,0 +1,278 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "fmt" + "io/ioutil" + "os" + "path/filepath" + "runtime" + "strings" + + "code.google.com/p/go.tools/go/vcs" +) + +// These variables are copied from the gobuilder's environment +// to the envv of its subprocesses. +var extraEnv = []string{ + "GOARM", + "GO386", + "CGO_ENABLED", + + // For Unix derivatives. + "CC", + "PATH", + "TMPDIR", + "USER", + + // For Plan 9. + "objtype", + "cputype", + "path", +} + +// builderEnv represents the environment that a Builder will run tests in. +type builderEnv interface { + // setup sets up the builder environment and returns the directory to run the buildCmd in. + setup(repo *Repo, workpath, hash string, envv []string) (string, error) +} + +// goEnv represents the builderEnv for the main Go repo. +type goEnv struct { + goos, goarch string +} + +func (b *Builder) envv() []string { + if runtime.GOOS == "windows" { + return b.envvWindows() + } + + var e []string + if *buildTool == "go" { + e = []string{ + "GOOS=" + b.goos, + "GOARCH=" + b.goarch, + "GOROOT_FINAL=/usr/local/go", + } + if b.goos != "nacl" { + // If we are building, for example, linux/386 on a linux/amd64 machine we want to + // make sure that the whole build is done as a if this were compiled on a real + // linux/386 machine. In other words, we want to not do a cross compilation build. + // To do this we set GOHOSTOS and GOHOSTARCH to override the detection in make.bash. + // + // The exception to this rule is when we are doing nacl builds. These are by definition + // always cross compilation, and we have support built into cmd/go to be able to handle + // this case. + e = append(e, "GOHOSTOS="+b.goos, "GOHOSTARCH="+b.goarch) + } + } + + for _, k := range extraEnv { + if s, ok := getenvOk(k); ok { + e = append(e, k+"="+s) + } + } + return e +} + +func (b *Builder) envvWindows() []string { + var start map[string]string + if *buildTool == "go" { + start = map[string]string{ + "GOOS": b.goos, + "GOHOSTOS": b.goos, + "GOARCH": b.goarch, + "GOHOSTARCH": b.goarch, + "GOROOT_FINAL": `c:\go`, + "GOBUILDEXIT": "1", // exit all.bat with completion status. + } + } + + for _, name := range extraEnv { + if s, ok := getenvOk(name); ok { + start[name] = s + } + } + skip := map[string]bool{ + "GOBIN": true, + "GOPATH": true, + "GOROOT": true, + "INCLUDE": true, + "LIB": true, + } + var e []string + for name, v := range start { + e = append(e, name+"="+v) + skip[name] = true + } + for _, kv := range os.Environ() { + s := strings.SplitN(kv, "=", 2) + name := strings.ToUpper(s[0]) + switch { + case name == "": + // variables, like "=C:=C:\", just copy them + e = append(e, kv) + case !skip[name]: + e = append(e, kv) + skip[name] = true + } + } + return e +} + +// setup for a goEnv clones the main go repo to workpath/go at the provided hash +// and returns the path workpath/go/src, the location of all go build scripts. +func (env *goEnv) setup(repo *Repo, workpath, hash string, envv []string) (string, error) { + goworkpath := filepath.Join(workpath, "go") + if err := repo.Export(goworkpath, hash); err != nil { + return "", fmt.Errorf("error exporting repository: %s", err) + } + if err := ioutil.WriteFile(filepath.Join(goworkpath, "VERSION"), []byte(hash), 0644); err != nil { + return "", fmt.Errorf("error writing VERSION file: %s", err) + } + return filepath.Join(goworkpath, "src"), nil +} + +// gccgoEnv represents the builderEnv for the gccgo compiler. +type gccgoEnv struct{} + +// setup for a gccgoEnv clones the gofrontend repo to workpath/go at the hash +// and clones the latest GCC branch to repo.Path/gcc. The gccgo sources are +// replaced with the updated sources in the gofrontend repo and gcc gets +// gets configured and built in workpath/gcc-objdir. The path to +// workpath/gcc-objdir is returned. +func (env *gccgoEnv) setup(repo *Repo, workpath, hash string, envv []string) (string, error) { + gccpath := filepath.Join(repo.Path, "gcc") + + // get a handle to Git vcs.Cmd for pulling down GCC from the mirror. + git := vcs.ByCmd("git") + + // only pull down gcc if we don't have a local copy. + if _, err := os.Stat(gccpath); err != nil { + if err := timeout(*cmdTimeout, func() error { + // pull down a working copy of GCC. + return git.Create(gccpath, *gccPath) + }); err != nil { + return "", err + } + } + + if err := git.Download(gccpath); err != nil { + return "", err + } + + // get the modified files for this commit. + statusCmd := []string{ + "hg", + "status", + "--no-status", + "--change", + hash, + } + + var buf bytes.Buffer + if _, err := runOutput(*cmdTimeout, envv, &buf, repo.Path, statusCmd...); err != nil { + return "", fmt.Errorf("Failed to find the modified files for %s: %s", hash, err) + } + modifiedFiles := strings.Split(buf.String(), "\n") + var isMirrored bool + for _, f := range modifiedFiles { + if strings.HasPrefix(f, "go/") || strings.HasPrefix(f, "libgo/") { + isMirrored = true + break + } + } + + // use git log to find the corresponding commit to sync to in the gcc mirror. + // If the files modified in the gofrontend are mirrored to gcc, we expect a + // commit with a similar description in the gcc mirror. If the files modified are + // not mirrored, e.g. in support/, we can sync to the most recent gcc commit that + // occurred before those files were modified to verify gccgo's status at that point. + logCmd := []string{ + "git", + "log", + "-1", + "--format=%H", + } + var errMsg string + if isMirrored { + commitDesc, err := repo.Master.VCS.LogAtRev(repo.Path, hash, "{desc|escape}") + if err != nil { + return "", err + } + + logCmd = append(logCmd, "--grep", "'"+string(commitDesc)+"'", "--regexp-ignore-case") + errMsg = fmt.Sprintf("Failed to find a commit with a similar description to '%s'", string(commitDesc)) + } else { + commitDate, err := repo.Master.VCS.LogAtRev(repo.Path, hash, "{date|rfc3339date}") + if err != nil { + return "", err + } + + logCmd = append(logCmd, "--before", string(commitDate)) + errMsg = fmt.Sprintf("Failed to find a commit before '%s'", string(commitDate)) + } + + buf.Reset() + if _, err := runOutput(*cmdTimeout, envv, &buf, gccpath, logCmd...); err != nil { + return "", fmt.Errorf("%s: %s", errMsg, err) + } + gccRev := buf.String() + if gccRev == "" { + return "", fmt.Errorf(errMsg) + } + + // checkout gccRev + // TODO(cmang): Fix this to work in parallel mode. + checkoutCmd := []string{ + "git", + "reset", + "--hard", + strings.TrimSpace(gccRev), + } + if _, err := runOutput(*cmdTimeout, envv, ioutil.Discard, gccpath, checkoutCmd...); err != nil { + return "", fmt.Errorf("Failed to checkout commit at revision %s: %s", gccRev, err) + } + + // make objdir to work in + gccobjdir := filepath.Join(workpath, "gcc-objdir") + if err := os.Mkdir(gccobjdir, mkdirPerm); err != nil { + return "", err + } + + // configure GCC with substituted gofrontend and libgo + gccConfigCmd := []string{ + filepath.Join(gccpath, "configure"), + "--enable-languages=c,c++,go", + "--disable-bootstrap", + "--disable-multilib", + } + if _, err := runOutput(*cmdTimeout, envv, ioutil.Discard, gccobjdir, gccConfigCmd...); err != nil { + return "", fmt.Errorf("Failed to configure GCC: %s", err) + } + + // build gcc + if _, err := runOutput(*buildTimeout, envv, ioutil.Discard, gccobjdir, "make"); err != nil { + return "", fmt.Errorf("Failed to build GCC: %s", err) + } + + return gccobjdir, nil +} + +func getenvOk(k string) (v string, ok bool) { + v = os.Getenv(k) + if v != "" { + return v, true + } + keq := k + "=" + for _, kv := range os.Environ() { + if kv == keq { + return "", true + } + } + return "", false +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/exec.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/exec.go new file mode 100644 index 00000000..590eb9b7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/exec.go @@ -0,0 +1,95 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "fmt" + "io" + "log" + "os" + "os/exec" + "time" +) + +// run is a simple wrapper for exec.Run/Close +func run(d time.Duration, envv []string, dir string, argv ...string) error { + if *verbose { + log.Println("run", argv) + } + cmd := exec.Command(argv[0], argv[1:]...) + cmd.Dir = dir + cmd.Env = envv + cmd.Stderr = os.Stderr + if err := cmd.Start(); err != nil { + return err + } + err := timeout(d, cmd.Wait) + if _, ok := err.(timeoutError); ok { + cmd.Process.Kill() + } + return err +} + +// runLog runs a process and returns the combined stdout/stderr. It returns +// process combined stdout and stderr output, exit status and error. The +// error returned is nil, if process is started successfully, even if exit +// status is not successful. +func runLog(timeout time.Duration, envv []string, dir string, argv ...string) (string, bool, error) { + var b bytes.Buffer + ok, err := runOutput(timeout, envv, &b, dir, argv...) + return b.String(), ok, err +} + +// runOutput runs a process and directs any output to the supplied writer. +// It returns exit status and error. The error returned is nil, if process +// is started successfully, even if exit status is not successful. +func runOutput(d time.Duration, envv []string, out io.Writer, dir string, argv ...string) (bool, error) { + if *verbose { + log.Println("runOutput", argv) + } + + cmd := exec.Command(argv[0], argv[1:]...) + cmd.Dir = dir + cmd.Env = envv + cmd.Stdout = out + cmd.Stderr = out + + startErr := cmd.Start() + if startErr != nil { + return false, startErr + } + + if err := timeout(d, cmd.Wait); err != nil { + if _, ok := err.(timeoutError); ok { + cmd.Process.Kill() + } + return false, err + } + return true, nil +} + +// timeout runs f and returns its error value, or if the function does not +// complete before the provided duration it returns a timeout error. +func timeout(d time.Duration, f func() error) error { + errc := make(chan error, 1) + go func() { + errc <- f() + }() + t := time.NewTimer(d) + defer t.Stop() + select { + case <-t.C: + return timeoutError(d) + case err := <-errc: + return err + } +} + +type timeoutError time.Duration + +func (e timeoutError) Error() string { + return fmt.Sprintf("timed out after %v", time.Duration(e)) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/http.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/http.go new file mode 100644 index 00000000..1a3d1561 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/http.go @@ -0,0 +1,170 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "encoding/json" + "errors" + "fmt" + "io" + "log" + "net/http" + "net/url" + "time" +) + +type obj map[string]interface{} + +// dash runs the given method and command on the dashboard. +// If args is non-nil it is encoded as the URL query string. +// If req is non-nil it is JSON-encoded and passed as the body of the HTTP POST. +// If resp is non-nil the server's response is decoded into the value pointed +// to by resp (resp must be a pointer). +func dash(meth, cmd string, args url.Values, req, resp interface{}) error { + var r *http.Response + var err error + if *verbose { + log.Println("dash <-", meth, cmd, args, req) + } + cmd = "http://" + *dashboard + "/" + cmd + if len(args) > 0 { + cmd += "?" + args.Encode() + } + switch meth { + case "GET": + if req != nil { + log.Panicf("%s to %s with req", meth, cmd) + } + r, err = http.Get(cmd) + case "POST": + var body io.Reader + if req != nil { + b, err := json.Marshal(req) + if err != nil { + return err + } + body = bytes.NewBuffer(b) + } + r, err = http.Post(cmd, "text/json", body) + default: + log.Panicf("%s: invalid method %q", cmd, meth) + panic("invalid method: " + meth) + } + if err != nil { + return err + } + defer r.Body.Close() + if r.StatusCode != http.StatusOK { + return fmt.Errorf("bad http response: %v", r.Status) + } + body := new(bytes.Buffer) + if _, err := body.ReadFrom(r.Body); err != nil { + return err + } + + // Read JSON-encoded Response into provided resp + // and return an error if present. + var result = struct { + Response interface{} + Error string + }{ + // Put the provided resp in here as it can be a pointer to + // some value we should unmarshal into. + Response: resp, + } + if err = json.Unmarshal(body.Bytes(), &result); err != nil { + log.Printf("json unmarshal %#q: %s\n", body.Bytes(), err) + return err + } + if *verbose { + log.Println("dash ->", result) + } + if result.Error != "" { + return errors.New(result.Error) + } + + return nil +} + +// todo returns the next hash to build. +func (b *Builder) todo(kind, pkg, goHash string) (rev string, err error) { + args := url.Values{ + "kind": {kind}, + "builder": {b.name}, + "packagePath": {pkg}, + "goHash": {goHash}, + } + var resp *struct { + Kind string + Data struct { + Hash string + } + } + if err = dash("GET", "todo", args, nil, &resp); err != nil { + return "", err + } + if resp == nil { + return "", nil + } + if kind != resp.Kind { + return "", fmt.Errorf("expecting Kind %q, got %q", kind, resp.Kind) + } + return resp.Data.Hash, nil +} + +// recordResult sends build results to the dashboard +func (b *Builder) recordResult(ok bool, pkg, hash, goHash, buildLog string, runTime time.Duration) error { + req := obj{ + "Builder": b.name, + "PackagePath": pkg, + "Hash": hash, + "GoHash": goHash, + "OK": ok, + "Log": buildLog, + "RunTime": runTime, + } + args := url.Values{"key": {b.key}, "builder": {b.name}} + return dash("POST", "result", args, req, nil) +} + +func postCommit(key, pkg string, l *HgLog) error { + t, err := time.Parse(time.RFC3339, l.Date) + if err != nil { + return fmt.Errorf("parsing %q: %v", l.Date, t) + } + return dash("POST", "commit", url.Values{"key": {key}}, obj{ + "PackagePath": pkg, + "Hash": l.Hash, + "ParentHash": l.Parent, + "Time": t.Format(time.RFC3339), + "User": l.Author, + "Desc": l.Desc, + }, nil) +} + +func dashboardCommit(pkg, hash string) bool { + err := dash("GET", "commit", url.Values{ + "packagePath": {pkg}, + "hash": {hash}, + }, nil, nil) + return err == nil +} + +func dashboardPackages(kind string) []string { + args := url.Values{"kind": []string{kind}} + var resp []struct { + Path string + } + if err := dash("GET", "packages", args, nil, &resp); err != nil { + log.Println("dashboardPackages:", err) + return nil + } + var pkgs []string + for _, r := range resp { + pkgs = append(pkgs, r.Path) + } + return pkgs +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/main.go new file mode 100644 index 00000000..7facbdcd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/main.go @@ -0,0 +1,633 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "flag" + "fmt" + "io" + "io/ioutil" + "log" + "os" + "path/filepath" + "regexp" + "runtime" + "strings" + "time" + + "code.google.com/p/go.tools/go/vcs" +) + +const ( + codeProject = "go" + codePyScript = "misc/dashboard/googlecode_upload.py" + gofrontendImportPath = "code.google.com/p/gofrontend" + mkdirPerm = 0750 + waitInterval = 30 * time.Second // time to wait before checking for new revs + pkgBuildInterval = 24 * time.Hour // rebuild packages every 24 hours +) + +type Builder struct { + goroot *Repo + name string + goos, goarch string + key string + env builderEnv +} + +var ( + buildroot = flag.String("buildroot", defaultBuildRoot(), "Directory under which to build") + dashboard = flag.String("dashboard", "build.golang.org", "Go Dashboard Host") + buildRelease = flag.Bool("release", false, "Build and upload binary release archives") + buildRevision = flag.String("rev", "", "Build specified revision and exit") + buildCmd = flag.String("cmd", filepath.Join(".", allCmd), "Build command (specify relative to go/src/)") + buildTool = flag.String("tool", "go", "Tool to build.") + gcPath = flag.String("gcpath", "code.google.com/p/go", "Path to download gc from") + gccPath = flag.String("gccpath", "https://github.com/mirrors/gcc.git", "Path to download gcc from") + failAll = flag.Bool("fail", false, "fail all builds") + parallel = flag.Bool("parallel", false, "Build multiple targets in parallel") + buildTimeout = flag.Duration("buildTimeout", 60*time.Minute, "Maximum time to wait for builds and tests") + cmdTimeout = flag.Duration("cmdTimeout", 10*time.Minute, "Maximum time to wait for an external command") + commitInterval = flag.Duration("commitInterval", 1*time.Minute, "Time to wait between polling for new commits (0 disables commit poller)") + verbose = flag.Bool("v", false, "verbose") +) + +var ( + binaryTagRe = regexp.MustCompile(`^(release\.r|weekly\.)[0-9\-.]+`) + releaseRe = regexp.MustCompile(`^release\.r[0-9\-.]+`) + allCmd = "all" + suffix + raceCmd = "race" + suffix + cleanCmd = "clean" + suffix + suffix = defaultSuffix() +) + +func main() { + flag.Usage = func() { + fmt.Fprintf(os.Stderr, "usage: %s goos-goarch...\n", os.Args[0]) + flag.PrintDefaults() + os.Exit(2) + } + flag.Parse() + if len(flag.Args()) == 0 { + flag.Usage() + } + + vcs.ShowCmd = *verbose + vcs.Verbose = *verbose + + rr, err := repoForTool() + if err != nil { + log.Fatal("Error finding repository:", err) + } + rootPath := filepath.Join(*buildroot, "goroot") + goroot := &Repo{ + Path: rootPath, + Master: rr, + } + + // set up work environment, use existing enviroment if possible + if goroot.Exists() || *failAll { + log.Print("Found old workspace, will use it") + } else { + if err := os.RemoveAll(*buildroot); err != nil { + log.Fatalf("Error removing build root (%s): %s", *buildroot, err) + } + if err := os.Mkdir(*buildroot, mkdirPerm); err != nil { + log.Fatalf("Error making build root (%s): %s", *buildroot, err) + } + var err error + goroot, err = RemoteRepo(goroot.Master.Root, rootPath) + if err != nil { + log.Fatalf("Error creating repository with url (%s): %s", goroot.Master.Root, err) + } + + goroot, err = goroot.Clone(goroot.Path, "tip") + if err != nil { + log.Fatal("Error cloning repository:", err) + } + } + + // set up builders + builders := make([]*Builder, len(flag.Args())) + for i, name := range flag.Args() { + b, err := NewBuilder(goroot, name) + if err != nil { + log.Fatal(err) + } + builders[i] = b + } + + if *failAll { + failMode(builders) + return + } + + // if specified, build revision and return + if *buildRevision != "" { + hash, err := goroot.FullHash(*buildRevision) + if err != nil { + log.Fatal("Error finding revision: ", err) + } + for _, b := range builders { + if err := b.buildHash(hash); err != nil { + log.Println(err) + } + } + return + } + + // Start commit watcher + go commitWatcher(goroot) + + // go continuous build mode + // check for new commits and build them + for { + built := false + t := time.Now() + if *parallel { + done := make(chan bool) + for _, b := range builders { + go func(b *Builder) { + done <- b.build() + }(b) + } + for _ = range builders { + built = <-done || built + } + } else { + for _, b := range builders { + built = b.build() || built + } + } + // sleep if there was nothing to build + if !built { + time.Sleep(waitInterval) + } + // sleep if we're looping too fast. + dt := time.Now().Sub(t) + if dt < waitInterval { + time.Sleep(waitInterval - dt) + } + } +} + +// go continuous fail mode +// check for new commits and FAIL them +func failMode(builders []*Builder) { + for { + built := false + for _, b := range builders { + built = b.failBuild() || built + } + // stop if there was nothing to fail + if !built { + break + } + } +} + +func NewBuilder(goroot *Repo, name string) (*Builder, error) { + b := &Builder{ + goroot: goroot, + name: name, + } + + // get builderEnv for this tool + var err error + if b.env, err = b.builderEnv(name); err != nil { + return nil, err + } + + // read keys from keyfile + fn := "" + switch runtime.GOOS { + case "plan9": + fn = os.Getenv("home") + case "windows": + fn = os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH") + default: + fn = os.Getenv("HOME") + } + fn = filepath.Join(fn, ".gobuildkey") + if s := fn + "-" + b.name; isFile(s) { // builder-specific file + fn = s + } + c, err := ioutil.ReadFile(fn) + if err != nil { + return nil, fmt.Errorf("readKeys %s (%s): %s", b.name, fn, err) + } + b.key = string(bytes.TrimSpace(bytes.SplitN(c, []byte("\n"), 2)[0])) + return b, nil +} + +// builderEnv returns the builderEnv for this buildTool. +func (b *Builder) builderEnv(name string) (builderEnv, error) { + // get goos/goarch from builder string + s := strings.SplitN(b.name, "-", 3) + if len(s) < 2 { + return nil, fmt.Errorf("unsupported builder form: %s", name) + } + b.goos = s[0] + b.goarch = s[1] + + switch *buildTool { + case "go": + return &goEnv{ + goos: s[0], + goarch: s[1], + }, nil + case "gccgo": + return &gccgoEnv{}, nil + default: + return nil, fmt.Errorf("unsupported build tool: %s", *buildTool) + } +} + +// buildCmd returns the build command to invoke. +// Builders which contain the string '-race' in their +// name will override *buildCmd and return raceCmd. +func (b *Builder) buildCmd() string { + if strings.Contains(b.name, "-race") { + return raceCmd + } + return *buildCmd +} + +// build checks for a new commit for this builder +// and builds it if one is found. +// It returns true if a build was attempted. +func (b *Builder) build() bool { + hash, err := b.todo("build-go-commit", "", "") + if err != nil { + log.Println(err) + return false + } + if hash == "" { + return false + } + + if err := b.buildHash(hash); err != nil { + log.Println(err) + } + return true +} + +func (b *Builder) buildHash(hash string) error { + log.Println(b.name, "building", hash) + + // create place in which to do work + workpath := filepath.Join(*buildroot, b.name+"-"+hash[:12]) + if err := os.Mkdir(workpath, mkdirPerm); err != nil { + return err + } + defer os.RemoveAll(workpath) + + // pull before cloning to ensure we have the revision + if err := b.goroot.Pull(); err != nil { + return err + } + + // set up builder's environment. + srcDir, err := b.env.setup(b.goroot, workpath, hash, b.envv()) + if err != nil { + return err + } + + // build + var buildlog bytes.Buffer + logfile := filepath.Join(workpath, "build.log") + f, err := os.Create(logfile) + if err != nil { + return err + } + defer f.Close() + w := io.MultiWriter(f, &buildlog) + + cmd := b.buildCmd() + + // go's build command is a script relative to the srcDir, whereas + // gccgo's build command is usually "make check-go" in the srcDir. + if *buildTool == "go" { + if !filepath.IsAbs(cmd) { + cmd = filepath.Join(srcDir, cmd) + } + } + + // make sure commands with extra arguments are handled properly + splitCmd := strings.Split(cmd, " ") + startTime := time.Now() + ok, err := runOutput(*buildTimeout, b.envv(), w, srcDir, splitCmd...) + runTime := time.Now().Sub(startTime) + errf := func() string { + if err != nil { + return fmt.Sprintf("error: %v", err) + } + if !ok { + return "failed" + } + return "success" + } + fmt.Fprintf(w, "Build complete, duration %v. Result: %v\n", runTime, errf()) + + if err != nil || !ok { + // record failure + return b.recordResult(false, "", hash, "", buildlog.String(), runTime) + } + + // record success + if err = b.recordResult(true, "", hash, "", "", runTime); err != nil { + return fmt.Errorf("recordResult: %s", err) + } + + // build sub-repositories + goRoot := filepath.Join(workpath, *buildTool) + goPath := workpath + b.buildSubrepos(goRoot, goPath, hash) + + return nil +} + +// failBuild checks for a new commit for this builder +// and fails it if one is found. +// It returns true if a build was "attempted". +func (b *Builder) failBuild() bool { + hash, err := b.todo("build-go-commit", "", "") + if err != nil { + log.Println(err) + return false + } + if hash == "" { + return false + } + + log.Printf("fail %s %s\n", b.name, hash) + + if err := b.recordResult(false, "", hash, "", "auto-fail mode run by "+os.Getenv("USER"), 0); err != nil { + log.Print(err) + } + return true +} + +func (b *Builder) buildSubrepos(goRoot, goPath, goHash string) { + for _, pkg := range dashboardPackages("subrepo") { + // get the latest todo for this package + hash, err := b.todo("build-package", pkg, goHash) + if err != nil { + log.Printf("buildSubrepos %s: %v", pkg, err) + continue + } + if hash == "" { + continue + } + + // build the package + if *verbose { + log.Printf("buildSubrepos %s: building %q", pkg, hash) + } + buildLog, err := b.buildSubrepo(goRoot, goPath, pkg, hash) + if err != nil { + if buildLog == "" { + buildLog = err.Error() + } + log.Printf("buildSubrepos %s: %v", pkg, err) + } + + // record the result + err = b.recordResult(err == nil, pkg, hash, goHash, buildLog, 0) + if err != nil { + log.Printf("buildSubrepos %s: %v", pkg, err) + } + } +} + +// buildSubrepo fetches the given package, updates it to the specified hash, +// and runs 'go test -short pkg/...'. It returns the build log and any error. +func (b *Builder) buildSubrepo(goRoot, goPath, pkg, hash string) (string, error) { + goTool := filepath.Join(goRoot, "bin", "go") + env := append(b.envv(), "GOROOT="+goRoot, "GOPATH="+goPath) + + // add $GOROOT/bin and $GOPATH/bin to PATH + for i, e := range env { + const p = "PATH=" + if !strings.HasPrefix(e, p) { + continue + } + sep := string(os.PathListSeparator) + env[i] = p + filepath.Join(goRoot, "bin") + sep + filepath.Join(goPath, "bin") + sep + e[len(p):] + } + + // fetch package and dependencies + log, ok, err := runLog(*cmdTimeout, env, goPath, goTool, "get", "-d", pkg+"/...") + if err == nil && !ok { + err = fmt.Errorf("go exited with status 1") + } + if err != nil { + return log, err + } + + // hg update to the specified hash + pkgmaster, err := vcs.RepoRootForImportPath(pkg, *verbose) + if err != nil { + return "", fmt.Errorf("Error finding subrepo (%s): %s", pkg, err) + } + repo := &Repo{ + Path: filepath.Join(goPath, "src", pkg), + Master: pkgmaster, + } + if err := repo.UpdateTo(hash); err != nil { + return "", err + } + + // test the package + log, ok, err = runLog(*buildTimeout, env, goPath, goTool, "test", "-short", pkg+"/...") + if err == nil && !ok { + err = fmt.Errorf("go exited with status 1") + } + return log, err +} + +// repoForTool returns the correct RepoRoot for the buildTool, or an error if +// the tool is unknown. +func repoForTool() (*vcs.RepoRoot, error) { + switch *buildTool { + case "go": + return vcs.RepoRootForImportPath(*gcPath, *verbose) + case "gccgo": + return vcs.RepoRootForImportPath(gofrontendImportPath, *verbose) + default: + return nil, fmt.Errorf("unknown build tool: %s", *buildTool) + } +} + +func isDirectory(name string) bool { + s, err := os.Stat(name) + return err == nil && s.IsDir() +} + +func isFile(name string) bool { + s, err := os.Stat(name) + return err == nil && !s.IsDir() +} + +// commitWatcher polls hg for new commits and tells the dashboard about them. +func commitWatcher(goroot *Repo) { + if *commitInterval == 0 { + log.Printf("commitInterval is %s, disabling commitWatcher", *commitInterval) + return + } + // Create builder just to get master key. + b, err := NewBuilder(goroot, "mercurial-commit") + if err != nil { + log.Fatal(err) + } + key := b.key + + for { + if *verbose { + log.Printf("poll...") + } + // Main Go repository. + commitPoll(goroot, "", key) + // Go sub-repositories. + for _, pkg := range dashboardPackages("subrepo") { + pkgmaster, err := vcs.RepoRootForImportPath(pkg, *verbose) + if err != nil { + log.Printf("Error finding subrepo (%s): %s", pkg, err) + continue + } + pkgroot := &Repo{ + Path: filepath.Join(*buildroot, pkg), + Master: pkgmaster, + } + commitPoll(pkgroot, pkg, key) + } + if *verbose { + log.Printf("sleep...") + } + time.Sleep(*commitInterval) + } +} + +// logByHash is a cache of all Mercurial revisions we know about, +// indexed by full hash. +var logByHash = map[string]*HgLog{} + +// commitPoll pulls any new revisions from the hg server +// and tells the server about them. +func commitPoll(repo *Repo, pkg, key string) { + pkgPath := filepath.Join(*buildroot, repo.Master.Root) + if !repo.Exists() { + var err error + repo, err = RemoteRepo(pkg, pkgPath) + if err != nil { + log.Printf("Error cloning package (%s): %s", pkg, err) + } + + repo, err = repo.Clone(repo.Path, "tip") + if err != nil { + log.Printf("%s: hg clone failed: %v", pkg, err) + if err := os.RemoveAll(repo.Path); err != nil { + log.Printf("%s: %v", pkg, err) + } + } + return + } + + logs, err := repo.Log() // repo.Log calls repo.Pull internally + if err != nil { + log.Printf("hg log: %v", err) + return + } + + // Pass 1. Fill in parents and add new log entries to logByHash. + // Empty parent means take parent from next log entry. + // Non-empty parent has form 1234:hashhashhash; we want full hash. + for i := range logs { + l := &logs[i] + if l.Parent == "" && i+1 < len(logs) { + l.Parent = logs[i+1].Hash + } else if l.Parent != "" { + l.Parent, _ = repo.FullHash(l.Parent) + } + if *verbose { + log.Printf("hg log %s: %s < %s\n", pkg, l.Hash, l.Parent) + } + if logByHash[l.Hash] == nil { + // Make copy to avoid pinning entire slice when only one entry is new. + t := *l + logByHash[t.Hash] = &t + } + } + + for _, l := range logs { + addCommit(pkg, l.Hash, key) + } +} + +// addCommit adds the commit with the named hash to the dashboard. +// key is the secret key for authentication to the dashboard. +// It avoids duplicate effort. +func addCommit(pkg, hash, key string) bool { + l := logByHash[hash] + if l == nil { + return false + } + if l.added { + return true + } + + // Check for already added, perhaps in an earlier run. + if dashboardCommit(pkg, hash) { + log.Printf("%s already on dashboard\n", hash) + // Record that this hash is on the dashboard, + // as must be all its parents. + for l != nil { + l.added = true + l = logByHash[l.Parent] + } + return true + } + + // Create parent first, to maintain some semblance of order. + if l.Parent != "" { + if !addCommit(pkg, l.Parent, key) { + return false + } + } + + // Create commit. + if err := postCommit(key, pkg, l); err != nil { + log.Printf("failed to add %s to dashboard: %v", hash, err) + return false + } + return true +} + +// defaultSuffix returns file extension used for command files in +// current os environment. +func defaultSuffix() string { + switch runtime.GOOS { + case "windows": + return ".bat" + case "plan9": + return ".rc" + default: + return ".bash" + } +} + +// defaultBuildRoot returns default buildroot directory. +func defaultBuildRoot() string { + var d string + if runtime.GOOS == "windows" { + // will use c:\, otherwise absolute paths become too long + // during builder run, see http://golang.org/issue/3358. + d = `c:\` + } else { + d = os.TempDir() + } + return filepath.Join(d, "gobuilder") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/vcs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/vcs.go new file mode 100644 index 00000000..66dc251c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/dashboard/builder/vcs.go @@ -0,0 +1,192 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/xml" + "fmt" + "os" + "path/filepath" + "strings" + "sync" + + "code.google.com/p/go.tools/go/vcs" +) + +// Repo represents a mercurial repository. +type Repo struct { + Path string + Master *vcs.RepoRoot + sync.Mutex +} + +// RemoteRepo constructs a *Repo representing a remote repository. +func RemoteRepo(url, path string) (*Repo, error) { + rr, err := vcs.RepoRootForImportPath(url, *verbose) + if err != nil { + return nil, err + } + return &Repo{ + Path: path, + Master: rr, + }, nil +} + +// Clone clones the current Repo to a new destination +// returning a new *Repo if successful. +func (r *Repo) Clone(path, rev string) (*Repo, error) { + r.Lock() + defer r.Unlock() + + err := timeout(*cmdTimeout, func() error { + downloadPath := r.Path + if !r.Exists() { + downloadPath = r.Master.Repo + } + + err := r.Master.VCS.CreateAtRev(path, downloadPath, rev) + if err != nil { + return err + } + return r.Master.VCS.TagSync(path, "") + }) + if err != nil { + return nil, err + } + return &Repo{ + Path: path, + Master: r.Master, + }, nil +} + +// Export exports the current Repo at revision rev to a new destination. +func (r *Repo) Export(path, rev string) error { + r.Lock() + defer r.Unlock() + + downloadPath := r.Path + if !r.Exists() { + _, err := r.Clone(path, rev) + return err + } + + args := []string{r.Master.VCS.Cmd, "archive", "-t", "files", "-r", rev, path} + if err := run(*cmdTimeout, nil, downloadPath, args...); err != nil { + return fmt.Errorf("executing %s: %v", strings.Join(args, " "), err) + } + return nil +} + +// UpdateTo updates the working copy of this Repo to the +// supplied revision. +func (r *Repo) UpdateTo(hash string) error { + r.Lock() + defer r.Unlock() + + return timeout(*cmdTimeout, func() error { + return r.Master.VCS.TagSync(r.Path, hash) + }) +} + +// Exists reports whether this Repo represents a valid Mecurial repository. +func (r *Repo) Exists() bool { + fi, err := os.Stat(filepath.Join(r.Path, "."+r.Master.VCS.Cmd)) + if err != nil { + return false + } + return fi.IsDir() +} + +// Pull pulls changes from the default path, that is, the path +// this Repo was cloned from. +func (r *Repo) Pull() error { + r.Lock() + defer r.Unlock() + + return timeout(*cmdTimeout, func() error { + return r.Master.VCS.Download(r.Path) + }) +} + +// Log returns the changelog for this repository. +func (r *Repo) Log() ([]HgLog, error) { + if err := r.Pull(); err != nil { + return nil, err + } + r.Lock() + defer r.Unlock() + + var logStruct struct { + Log []HgLog + } + err := timeout(*cmdTimeout, func() error { + data, err := r.Master.VCS.Log(r.Path, xmlLogTemplate) + if err != nil { + return err + } + + err = xml.Unmarshal([]byte(""+string(data)+""), &logStruct) + if err != nil { + return fmt.Errorf("unmarshal %s log: %v", r.Master.VCS, err) + } + return nil + }) + if err != nil { + return nil, err + } + return logStruct.Log, nil +} + +// FullHash returns the full hash for the given Mercurial revision. +func (r *Repo) FullHash(rev string) (string, error) { + r.Lock() + defer r.Unlock() + + var hash string + err := timeout(*cmdTimeout, func() error { + data, err := r.Master.VCS.LogAtRev(r.Path, rev, "{node}") + if err != nil { + return err + } + + s := strings.TrimSpace(string(data)) + if s == "" { + return fmt.Errorf("cannot find revision") + } + if len(s) != 40 { + return fmt.Errorf("%s returned invalid hash: %s", r.Master.VCS, s) + } + hash = s + return nil + }) + if err != nil { + return "", err + } + return hash, nil +} + +// HgLog represents a single Mercurial revision. +type HgLog struct { + Hash string + Author string + Date string + Desc string + Parent string + + // Internal metadata + added bool +} + +// xmlLogTemplate is a template to pass to Mercurial to make +// hg log print the log in valid XML for parsing with xml.Unmarshal. +const xmlLogTemplate = ` + + {node|escape} + {parent|escape} + {author|escape} + {date|rfc3339date} + {desc|escape} + +` diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/callgraph/callgraph.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/callgraph/callgraph.go new file mode 100644 index 00000000..7d78a05e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/callgraph/callgraph.go @@ -0,0 +1,108 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + +Package callgraph defines the call graph and various algorithms +and utilities to operate on it. + +A call graph is a labelled directed graph whose nodes represent +functions and whose edge labels represent syntactic function call +sites. The presence of a labelled edge (caller, site, callee) +indicates that caller may call callee at the specified call site. + +A call graph is a multigraph: it may contain multiple edges (caller, +*, callee) connecting the same pair of nodes, so long as the edges +differ by label; this occurs when one function calls another function +from multiple call sites. Also, it may contain multiple edges +(caller, site, *) that differ only by callee; this indicates a +polymorphic call. + +A SOUND call graph is one that overapproximates the dynamic calling +behaviors of the program in all possible executions. One call graph +is more PRECISE than another if it is a smaller overapproximation of +the dynamic behavior. + +All call graphs have a synthetic root node which is responsible for +calling main() and init(). + +Calls to built-in functions (e.g. panic, println) are not represented +in the call graph; they are treated like built-in operators of the +language. + +*/ +package callgraph + +// TODO(adonovan): add a function to eliminate wrappers from the +// callgraph, preserving topology. +// More generally, we could eliminate "uninteresting" nodes such as +// nodes from packages we don't care about. + +import ( + "fmt" + + "code.google.com/p/go.tools/go/ssa" +) + +// A Graph represents a call graph. +// +// A graph may contain nodes that are not reachable from the root. +// If the call graph is sound, such nodes indicate unreachable +// functions. +// +type Graph struct { + Root *Node // the distinguished root node + Nodes map[*ssa.Function]*Node // all nodes by function +} + +// New returns a new Graph with the specified root node. +func New(root *ssa.Function) *Graph { + g := &Graph{Nodes: make(map[*ssa.Function]*Node)} + g.Root = g.CreateNode(root) + return g +} + +// CreateNode returns the Node for fn, creating it if not present. +func (g *Graph) CreateNode(fn *ssa.Function) *Node { + n, ok := g.Nodes[fn] + if !ok { + n = &Node{Func: fn, ID: len(g.Nodes)} + g.Nodes[fn] = n + } + return n +} + +// A Node represents a node in a call graph. +type Node struct { + Func *ssa.Function // the function this node represents + ID int // 0-based sequence number + In []*Edge // unordered set of incoming call edges (n.In[*].Callee == n) + Out []*Edge // unordered set of outgoing call edges (n.Out[*].Caller == n) +} + +func (n *Node) String() string { + return fmt.Sprintf("n%d:%s", n.ID, n.Func) +} + +// A Edge represents an edge in the call graph. +// +// Site is nil for edges originating in synthetic or intrinsic +// functions, e.g. reflect.Call or the root of the call graph. +type Edge struct { + Caller *Node + Site ssa.CallInstruction + Callee *Node +} + +func (e Edge) String() string { + return fmt.Sprintf("%s --> %s", e.Caller, e.Callee) +} + +// AddEdge adds the edge (caller, site, callee) to the call graph. +// Elimination of duplicate edges is the caller's responsibility. +func AddEdge(caller *Node, site ssa.CallInstruction, callee *Node) { + e := &Edge{caller, site, callee} + callee.In = append(callee.In, e) + caller.Out = append(caller.Out, e) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/callgraph/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/callgraph/util.go new file mode 100644 index 00000000..1003fcda --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/callgraph/util.go @@ -0,0 +1,160 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package callgraph + +import "code.google.com/p/go.tools/go/ssa" + +// This file provides various utilities over call graphs, such as +// visitation and path search. + +// CalleesOf returns a new set containing all direct callees of the +// caller node. +// +func CalleesOf(caller *Node) map[*Node]bool { + callees := make(map[*Node]bool) + for _, e := range caller.Out { + callees[e.Callee] = true + } + return callees +} + +// GraphVisitEdges visits all the edges in graph g in depth-first order. +// The edge function is called for each edge in postorder. If it +// returns non-nil, visitation stops and GraphVisitEdges returns that +// value. +// +func GraphVisitEdges(g *Graph, edge func(*Edge) error) error { + seen := make(map[*Node]bool) + var visit func(n *Node) error + visit = func(n *Node) error { + if !seen[n] { + seen[n] = true + for _, e := range n.Out { + if err := visit(e.Callee); err != nil { + return err + } + if err := edge(e); err != nil { + return err + } + } + } + return nil + } + for _, n := range g.Nodes { + if err := visit(n); err != nil { + return err + } + } + return nil +} + +// PathSearch finds an arbitrary path starting at node start and +// ending at some node for which isEnd() returns true. On success, +// PathSearch returns the path as an ordered list of edges; on +// failure, it returns nil. +// +func PathSearch(start *Node, isEnd func(*Node) bool) []*Edge { + stack := make([]*Edge, 0, 32) + seen := make(map[*Node]bool) + var search func(n *Node) []*Edge + search = func(n *Node) []*Edge { + if !seen[n] { + seen[n] = true + if isEnd(n) { + return stack + } + for _, e := range n.Out { + stack = append(stack, e) // push + if found := search(e.Callee); found != nil { + return found + } + stack = stack[:len(stack)-1] // pop + } + } + return nil + } + return search(start) +} + +// DeleteSyntheticNodes removes from call graph g all nodes for +// synthetic functions (except g.Root and package initializers), +// preserving the topology. +func (g *Graph) DeleteSyntheticNodes() { + // TODO(adonovan): opt: this step results in duplicate + // edges---approx 10% of the total. I suspect this is due to + // some interface method calls dispatching to both (C).f and + // (*C).f where the latter is a wrapper. + for fn, cgn := range g.Nodes { + if cgn == g.Root || fn.Synthetic == "" || isInit(cgn.Func) { + continue // keep + } + for _, eIn := range cgn.In { + for _, eOut := range cgn.Out { + AddEdge(eIn.Caller, eIn.Site, eOut.Callee) + } + } + g.DeleteNode(cgn) + } +} + +func isInit(fn *ssa.Function) bool { + return fn.Pkg != nil && fn.Pkg.Func("init") == fn +} + +// DeleteNode removes node n and its edges from the graph g. +// (NB: not efficient for batch deletion.) +func (g *Graph) DeleteNode(n *Node) { + n.deleteIns() + n.deleteOuts() + delete(g.Nodes, n.Func) +} + +// deleteIns deletes all incoming edges to n. +func (n *Node) deleteIns() { + for _, e := range n.In { + removeOutEdge(e) + } + n.In = nil +} + +// deleteOuts deletes all outgoing edges from n. +func (n *Node) deleteOuts() { + for _, e := range n.Out { + removeInEdge(e) + } + n.Out = nil +} + +// removeOutEdge removes edge.Caller's outgoing edge 'edge'. +func removeOutEdge(edge *Edge) { + caller := edge.Caller + n := len(caller.Out) + for i, e := range caller.Out { + if e == edge { + // Replace it with the final element and shrink the slice. + caller.Out[i] = caller.Out[n-1] + caller.Out[n-1] = nil // aid GC + caller.Out = caller.Out[:n-1] + return + } + } + panic("edge not found: " + edge.String()) +} + +// removeInEdge removes edge.Callee's incoming edge 'edge'. +func removeInEdge(edge *Edge) { + caller := edge.Callee + n := len(caller.In) + for i, e := range caller.In { + if e == edge { + // Replace it with the final element and shrink the slice. + caller.In[i] = caller.In[n-1] + caller.In[n-1] = nil // aid GC + caller.In = caller.In[:n-1] + return + } + } + panic("edge not found: " + edge.String()) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/exact/exact.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/exact/exact.go new file mode 100644 index 00000000..cfc27e09 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/exact/exact.go @@ -0,0 +1,902 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package exact implements Values representing untyped +// Go constants and the corresponding operations. Values +// and operations have unlimited precision. +// +// A special Unknown value may be used when a value +// is unknown due to an error. Operations on unknown +// values produce unknown values unless specified +// otherwise. +// +package exact + +import ( + "fmt" + "go/token" + "math/big" + "strconv" +) + +// Kind specifies the kind of value represented by a Value. +type Kind int + +// Implementation note: Kinds must be enumerated in +// order of increasing "complexity" (used by match). + +const ( + // unknown values + Unknown Kind = iota + + // non-numeric values + Bool + String + + // numeric values + Int + Float + Complex +) + +// A Value represents a mathematically exact value of a given Kind. +type Value interface { + // Kind returns the value kind; it is always the smallest + // kind in which the value can be represented exactly. + Kind() Kind + + // String returns a human-readable form of the value. + String() string + + // Prevent external implementations. + implementsValue() +} + +// ---------------------------------------------------------------------------- +// Implementations + +type ( + unknownVal struct{} + boolVal bool + stringVal string + int64Val int64 + intVal struct{ val *big.Int } + floatVal struct{ val *big.Rat } + complexVal struct{ re, im *big.Rat } +) + +func (unknownVal) Kind() Kind { return Unknown } +func (boolVal) Kind() Kind { return Bool } +func (stringVal) Kind() Kind { return String } +func (int64Val) Kind() Kind { return Int } +func (intVal) Kind() Kind { return Int } +func (floatVal) Kind() Kind { return Float } +func (complexVal) Kind() Kind { return Complex } + +func (unknownVal) String() string { return "unknown" } +func (x boolVal) String() string { return fmt.Sprintf("%v", bool(x)) } +func (x stringVal) String() string { return strconv.Quote(string(x)) } +func (x int64Val) String() string { return strconv.FormatInt(int64(x), 10) } +func (x intVal) String() string { return x.val.String() } +func (x floatVal) String() string { return x.val.String() } +func (x complexVal) String() string { return fmt.Sprintf("(%s + %si)", x.re, x.im) } + +func (unknownVal) implementsValue() {} +func (boolVal) implementsValue() {} +func (stringVal) implementsValue() {} +func (int64Val) implementsValue() {} +func (intVal) implementsValue() {} +func (floatVal) implementsValue() {} +func (complexVal) implementsValue() {} + +// int64 bounds +var ( + minInt64 = big.NewInt(-1 << 63) + maxInt64 = big.NewInt(1<<63 - 1) +) + +func normInt(x *big.Int) Value { + if minInt64.Cmp(x) <= 0 && x.Cmp(maxInt64) <= 0 { + return int64Val(x.Int64()) + } + return intVal{x} +} + +func normFloat(x *big.Rat) Value { + if x.IsInt() { + return normInt(x.Num()) + } + return floatVal{x} +} + +func normComplex(re, im *big.Rat) Value { + if im.Sign() == 0 { + return normFloat(re) + } + return complexVal{re, im} +} + +// ---------------------------------------------------------------------------- +// Factories + +// MakeUnknown returns the Unknown value. +func MakeUnknown() Value { return unknownVal{} } + +// MakeBool returns the Bool value for x. +func MakeBool(b bool) Value { return boolVal(b) } + +// MakeString returns the String value for x. +func MakeString(s string) Value { return stringVal(s) } + +// MakeInt64 returns the Int value for x. +func MakeInt64(x int64) Value { return int64Val(x) } + +// MakeUint64 returns the Int value for x. +func MakeUint64(x uint64) Value { return normInt(new(big.Int).SetUint64(x)) } + +// MakeFloat64 returns the numeric value for x. +// If x is not finite, the result is unknown. +func MakeFloat64(x float64) Value { + if f := new(big.Rat).SetFloat64(x); f != nil { + return normFloat(f) + } + return unknownVal{} +} + +// MakeFromLiteral returns the corresponding integer, floating-point, +// imaginary, character, or string value for a Go literal string. The +// result is nil if the literal string is invalid. +func MakeFromLiteral(lit string, tok token.Token) Value { + switch tok { + case token.INT: + if x, err := strconv.ParseInt(lit, 0, 64); err == nil { + return int64Val(x) + } + if x, ok := new(big.Int).SetString(lit, 0); ok { + return intVal{x} + } + + case token.FLOAT: + if x, ok := new(big.Rat).SetString(lit); ok { + return normFloat(x) + } + + case token.IMAG: + if n := len(lit); n > 0 && lit[n-1] == 'i' { + if im, ok := new(big.Rat).SetString(lit[0 : n-1]); ok { + return normComplex(big.NewRat(0, 1), im) + } + } + + case token.CHAR: + if n := len(lit); n >= 2 { + if code, _, _, err := strconv.UnquoteChar(lit[1:n-1], '\''); err == nil { + return int64Val(code) + } + } + + case token.STRING: + if s, err := strconv.Unquote(lit); err == nil { + return stringVal(s) + } + } + + return nil +} + +// ---------------------------------------------------------------------------- +// Accessors +// +// For unknown arguments the result is the zero value for the respective +// accessor type, except for Sign, where the result is 1. + +// BoolVal returns the Go boolean value of x, which must be a Bool or an Unknown. +// If x is Unknown, the result is false. +func BoolVal(x Value) bool { + switch x := x.(type) { + case boolVal: + return bool(x) + case unknownVal: + return false + } + panic(fmt.Sprintf("%v not a Bool", x)) +} + +// StringVal returns the Go string value of x, which must be a String or an Unknown. +// If x is Unknown, the result is "". +func StringVal(x Value) string { + switch x := x.(type) { + case stringVal: + return string(x) + case unknownVal: + return "" + } + panic(fmt.Sprintf("%v not a String", x)) +} + +// Int64Val returns the Go int64 value of x and whether the result is exact; +// x must be an Int or an Unknown. If the result is not exact, its value is undefined. +// If x is Unknown, the result is (0, false). +func Int64Val(x Value) (int64, bool) { + switch x := x.(type) { + case int64Val: + return int64(x), true + case intVal: + return x.val.Int64(), x.val.BitLen() <= 63 + case unknownVal: + return 0, false + } + panic(fmt.Sprintf("%v not an Int", x)) +} + +// Uint64Val returns the Go uint64 value of x and whether the result is exact; +// x must be an Int or an Unknown. If the result is not exact, its value is undefined. +// If x is Unknown, the result is (0, false). +func Uint64Val(x Value) (uint64, bool) { + switch x := x.(type) { + case int64Val: + return uint64(x), x >= 0 + case intVal: + return x.val.Uint64(), x.val.Sign() >= 0 && x.val.BitLen() <= 64 + case unknownVal: + return 0, false + } + panic(fmt.Sprintf("%v not an Int", x)) +} + +// Float64Val returns the nearest Go float64 value of x and whether the result is exact; +// x must be numeric but not Complex, or Unknown. For values too small (too close to 0) +// to represent as float64, Float64Val silently underflows to 0. The result sign always +// matches the sign of x, even for 0. +// If x is Unknown, the result is (0, false). +func Float64Val(x Value) (float64, bool) { + switch x := x.(type) { + case int64Val: + f := float64(int64(x)) + return f, int64Val(f) == x + case intVal: + return new(big.Rat).SetFrac(x.val, int1).Float64() + case floatVal: + return x.val.Float64() + case unknownVal: + return 0, false + } + panic(fmt.Sprintf("%v not a Float", x)) +} + +// BitLen returns the number of bits required to represent +// the absolute value x in binary representation; x must be an Int or an Unknown. +// If x is Unknown, the result is 0. +func BitLen(x Value) int { + switch x := x.(type) { + case int64Val: + return new(big.Int).SetInt64(int64(x)).BitLen() + case intVal: + return x.val.BitLen() + case unknownVal: + return 0 + } + panic(fmt.Sprintf("%v not an Int", x)) +} + +// Sign returns -1, 0, or 1 depending on whether x < 0, x == 0, or x > 0; +// x must be numeric or Unknown. For complex values x, the sign is 0 if x == 0, +// otherwise it is != 0. If x is Unknown, the result is 1. +func Sign(x Value) int { + switch x := x.(type) { + case int64Val: + switch { + case x < 0: + return -1 + case x > 0: + return 1 + } + return 0 + case intVal: + return x.val.Sign() + case floatVal: + return x.val.Sign() + case complexVal: + return x.re.Sign() | x.im.Sign() + case unknownVal: + return 1 // avoid spurious division by zero errors + } + panic(fmt.Sprintf("%v not numeric", x)) +} + +// ---------------------------------------------------------------------------- +// Support for serializing/deserializing integers + +const ( + // Compute the size of a Word in bytes. + _m = ^big.Word(0) + _log = _m>>8&1 + _m>>16&1 + _m>>32&1 + wordSize = 1 << _log +) + +// Bytes returns the bytes for the absolute value of x in little- +// endian binary representation; x must be an Int. +func Bytes(x Value) []byte { + var val *big.Int + switch x := x.(type) { + case int64Val: + val = new(big.Int).SetInt64(int64(x)) + case intVal: + val = x.val + default: + panic(fmt.Sprintf("%v not an Int", x)) + } + + words := val.Bits() + bytes := make([]byte, len(words)*wordSize) + + i := 0 + for _, w := range words { + for j := 0; j < wordSize; j++ { + bytes[i] = byte(w) + w >>= 8 + i++ + } + } + // remove leading 0's + for i > 0 && bytes[i-1] == 0 { + i-- + } + + return bytes[:i] +} + +// MakeFromBytes returns the Int value given the bytes of its little-endian +// binary representation. An empty byte slice argument represents 0. +func MakeFromBytes(bytes []byte) Value { + words := make([]big.Word, (len(bytes)+(wordSize-1))/wordSize) + + i := 0 + var w big.Word + var s uint + for _, b := range bytes { + w |= big.Word(b) << s + if s += 8; s == wordSize*8 { + words[i] = w + i++ + w = 0 + s = 0 + } + } + // store last word + if i < len(words) { + words[i] = w + i++ + } + // remove leading 0's + for i > 0 && words[i-1] == 0 { + i-- + } + + return normInt(new(big.Int).SetBits(words[:i])) +} + +// ---------------------------------------------------------------------------- +// Support for disassembling fractions + +// Num returns the numerator of x; x must be Int, Float, or Unknown. +// If x is Unknown, the result is Unknown, otherwise it is an Int +// with the same sign as x. +func Num(x Value) Value { + switch x := x.(type) { + case unknownVal, int64Val, intVal: + return x + case floatVal: + return normInt(x.val.Num()) + } + panic(fmt.Sprintf("%v not Int or Float", x)) +} + +// Denom returns the denominator of x; x must be Int, Float, or Unknown. +// If x is Unknown, the result is Unknown, otherwise it is an Int >= 1. +func Denom(x Value) Value { + switch x := x.(type) { + case unknownVal: + return x + case int64Val, intVal: + return int64Val(1) + case floatVal: + return normInt(x.val.Denom()) + } + panic(fmt.Sprintf("%v not Int or Float", x)) +} + +// ---------------------------------------------------------------------------- +// Support for assembling/disassembling complex numbers + +// MakeImag returns the numeric value x*i (possibly 0); +// x must be Int, Float, or Unknown. +// If x is Unknown, the result is Unknown. +func MakeImag(x Value) Value { + var im *big.Rat + switch x := x.(type) { + case unknownVal: + return x + case int64Val: + im = big.NewRat(int64(x), 1) + case intVal: + im = new(big.Rat).SetFrac(x.val, int1) + case floatVal: + im = x.val + default: + panic(fmt.Sprintf("%v not Int or Float", x)) + } + return normComplex(rat0, im) +} + +// Real returns the real part of x, which must be a numeric or unknown value. +// If x is Unknown, the result is Unknown. +func Real(x Value) Value { + switch x := x.(type) { + case unknownVal, int64Val, intVal, floatVal: + return x + case complexVal: + return normFloat(x.re) + } + panic(fmt.Sprintf("%v not numeric", x)) +} + +// Imag returns the imaginary part of x, which must be a numeric or unknown value. +// If x is Unknown, the result is Unknown. +func Imag(x Value) Value { + switch x := x.(type) { + case unknownVal: + return x + case int64Val, intVal, floatVal: + return int64Val(0) + case complexVal: + return normFloat(x.im) + } + panic(fmt.Sprintf("%v not numeric", x)) +} + +// ---------------------------------------------------------------------------- +// Operations + +// is32bit reports whether x can be represented using 32 bits. +func is32bit(x int64) bool { + const s = 32 + return -1<<(s-1) <= x && x <= 1<<(s-1)-1 +} + +// is63bit reports whether x can be represented using 63 bits. +func is63bit(x int64) bool { + const s = 63 + return -1<<(s-1) <= x && x <= 1<<(s-1)-1 +} + +// UnaryOp returns the result of the unary expression op y. +// The operation must be defined for the operand. +// If size >= 0 it specifies the ^ (xor) result size in bytes. +// If y is Unknown, the result is Unknown. +// +func UnaryOp(op token.Token, y Value, size int) Value { + switch op { + case token.ADD: + switch y.(type) { + case unknownVal, int64Val, intVal, floatVal, complexVal: + return y + } + + case token.SUB: + switch y := y.(type) { + case unknownVal: + return y + case int64Val: + if z := -y; z != y { + return z // no overflow + } + return normInt(new(big.Int).Neg(big.NewInt(int64(y)))) + case intVal: + return normInt(new(big.Int).Neg(y.val)) + case floatVal: + return normFloat(new(big.Rat).Neg(y.val)) + case complexVal: + return normComplex(new(big.Rat).Neg(y.re), new(big.Rat).Neg(y.im)) + } + + case token.XOR: + var z big.Int + switch y := y.(type) { + case unknownVal: + return y + case int64Val: + z.Not(big.NewInt(int64(y))) + case intVal: + z.Not(y.val) + default: + goto Error + } + // For unsigned types, the result will be negative and + // thus "too large": We must limit the result size to + // the type's size. + if size >= 0 { + s := uint(size) * 8 + z.AndNot(&z, new(big.Int).Lsh(big.NewInt(-1), s)) // z &^= (-1)< ord(y) { + y, x = match(y, x) + return x, y + } + // ord(x) <= ord(y) + + switch x := x.(type) { + case unknownVal: + return x, x + + case boolVal, stringVal, complexVal: + return x, y + + case int64Val: + switch y := y.(type) { + case int64Val: + return x, y + case intVal: + return intVal{big.NewInt(int64(x))}, y + case floatVal: + return floatVal{big.NewRat(int64(x), 1)}, y + case complexVal: + return complexVal{big.NewRat(int64(x), 1), rat0}, y + } + + case intVal: + switch y := y.(type) { + case intVal: + return x, y + case floatVal: + return floatVal{new(big.Rat).SetFrac(x.val, int1)}, y + case complexVal: + return complexVal{new(big.Rat).SetFrac(x.val, int1), rat0}, y + } + + case floatVal: + switch y := y.(type) { + case floatVal: + return x, y + case complexVal: + return complexVal{x.val, rat0}, y + } + } + + panic("unreachable") +} + +// BinaryOp returns the result of the binary expression x op y. +// The operation must be defined for the operands. If one of the +// operands is Unknown, the result is Unknown. +// To force integer division of Int operands, use op == token.QUO_ASSIGN +// instead of token.QUO; the result is guaranteed to be Int in this case. +// Division by zero leads to a run-time panic. +// +func BinaryOp(x Value, op token.Token, y Value) Value { + x, y = match(x, y) + + switch x := x.(type) { + case unknownVal: + return x + + case boolVal: + y := y.(boolVal) + switch op { + case token.LAND: + return x && y + case token.LOR: + return x || y + } + + case int64Val: + a := int64(x) + b := int64(y.(int64Val)) + var c int64 + switch op { + case token.ADD: + if !is63bit(a) || !is63bit(b) { + return normInt(new(big.Int).Add(big.NewInt(a), big.NewInt(b))) + } + c = a + b + case token.SUB: + if !is63bit(a) || !is63bit(b) { + return normInt(new(big.Int).Sub(big.NewInt(a), big.NewInt(b))) + } + c = a - b + case token.MUL: + if !is32bit(a) || !is32bit(b) { + return normInt(new(big.Int).Mul(big.NewInt(a), big.NewInt(b))) + } + c = a * b + case token.QUO: + return normFloat(new(big.Rat).SetFrac(big.NewInt(a), big.NewInt(b))) + case token.QUO_ASSIGN: // force integer division + c = a / b + case token.REM: + c = a % b + case token.AND: + c = a & b + case token.OR: + c = a | b + case token.XOR: + c = a ^ b + case token.AND_NOT: + c = a &^ b + default: + goto Error + } + return int64Val(c) + + case intVal: + a := x.val + b := y.(intVal).val + var c big.Int + switch op { + case token.ADD: + c.Add(a, b) + case token.SUB: + c.Sub(a, b) + case token.MUL: + c.Mul(a, b) + case token.QUO: + return normFloat(new(big.Rat).SetFrac(a, b)) + case token.QUO_ASSIGN: // force integer division + c.Quo(a, b) + case token.REM: + c.Rem(a, b) + case token.AND: + c.And(a, b) + case token.OR: + c.Or(a, b) + case token.XOR: + c.Xor(a, b) + case token.AND_NOT: + c.AndNot(a, b) + default: + goto Error + } + return normInt(&c) + + case floatVal: + a := x.val + b := y.(floatVal).val + var c big.Rat + switch op { + case token.ADD: + c.Add(a, b) + case token.SUB: + c.Sub(a, b) + case token.MUL: + c.Mul(a, b) + case token.QUO: + c.Quo(a, b) + default: + goto Error + } + return normFloat(&c) + + case complexVal: + y := y.(complexVal) + a, b := x.re, x.im + c, d := y.re, y.im + var re, im big.Rat + switch op { + case token.ADD: + // (a+c) + i(b+d) + re.Add(a, c) + im.Add(b, d) + case token.SUB: + // (a-c) + i(b-d) + re.Sub(a, c) + im.Sub(b, d) + case token.MUL: + // (ac-bd) + i(bc+ad) + var ac, bd, bc, ad big.Rat + ac.Mul(a, c) + bd.Mul(b, d) + bc.Mul(b, c) + ad.Mul(a, d) + re.Sub(&ac, &bd) + im.Add(&bc, &ad) + case token.QUO: + // (ac+bd)/s + i(bc-ad)/s, with s = cc + dd + var ac, bd, bc, ad, s, cc, dd big.Rat + ac.Mul(a, c) + bd.Mul(b, d) + bc.Mul(b, c) + ad.Mul(a, d) + cc.Mul(c, c) + dd.Mul(d, d) + s.Add(&cc, &dd) + re.Add(&ac, &bd) + re.Quo(&re, &s) + im.Sub(&bc, &ad) + im.Quo(&im, &s) + default: + goto Error + } + return normComplex(&re, &im) + + case stringVal: + if op == token.ADD { + return x + y.(stringVal) + } + } + +Error: + panic(fmt.Sprintf("invalid binary operation %v %s %v", x, op, y)) +} + +// Shift returns the result of the shift expression x op s +// with op == token.SHL or token.SHR (<< or >>). x must be +// an Int or an Unknown. If x is Unknown, the result is x. +// +func Shift(x Value, op token.Token, s uint) Value { + switch x := x.(type) { + case unknownVal: + return x + + case int64Val: + if s == 0 { + return x + } + switch op { + case token.SHL: + z := big.NewInt(int64(x)) + return normInt(z.Lsh(z, s)) + case token.SHR: + return x >> s + } + + case intVal: + if s == 0 { + return x + } + var z big.Int + switch op { + case token.SHL: + return normInt(z.Lsh(x.val, s)) + case token.SHR: + return normInt(z.Rsh(x.val, s)) + } + } + + panic(fmt.Sprintf("invalid shift %v %s %d", x, op, s)) +} + +func cmpZero(x int, op token.Token) bool { + switch op { + case token.EQL: + return x == 0 + case token.NEQ: + return x != 0 + case token.LSS: + return x < 0 + case token.LEQ: + return x <= 0 + case token.GTR: + return x > 0 + case token.GEQ: + return x >= 0 + } + panic("unreachable") +} + +// Compare returns the result of the comparison x op y. +// The comparison must be defined for the operands. +// If one of the operands is Unknown, the result is +// false. +// +func Compare(x Value, op token.Token, y Value) bool { + x, y = match(x, y) + + switch x := x.(type) { + case unknownVal: + return false + + case boolVal: + y := y.(boolVal) + switch op { + case token.EQL: + return x == y + case token.NEQ: + return x != y + } + + case int64Val: + y := y.(int64Val) + switch op { + case token.EQL: + return x == y + case token.NEQ: + return x != y + case token.LSS: + return x < y + case token.LEQ: + return x <= y + case token.GTR: + return x > y + case token.GEQ: + return x >= y + } + + case intVal: + return cmpZero(x.val.Cmp(y.(intVal).val), op) + + case floatVal: + return cmpZero(x.val.Cmp(y.(floatVal).val), op) + + case complexVal: + y := y.(complexVal) + re := x.re.Cmp(y.re) + im := x.im.Cmp(y.im) + switch op { + case token.EQL: + return re == 0 && im == 0 + case token.NEQ: + return re != 0 || im != 0 + } + + case stringVal: + y := y.(stringVal) + switch op { + case token.EQL: + return x == y + case token.NEQ: + return x != y + case token.LSS: + return x < y + case token.LEQ: + return x <= y + case token.GTR: + return x > y + case token.GEQ: + return x >= y + } + } + + panic(fmt.Sprintf("invalid comparison %v %s %v", x, op, y)) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/exact/exact_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/exact/exact_test.go new file mode 100644 index 00000000..c5179708 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/exact/exact_test.go @@ -0,0 +1,348 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package exact + +import ( + "go/token" + "strings" + "testing" +) + +// TODO(gri) expand this test framework + +var opTests = []string{ + // unary operations + `+ 0 = 0`, + `+ ? = ?`, + `- 1 = -1`, + `- ? = ?`, + `^ 0 = -1`, + `^ ? = ?`, + + `! true = false`, + `! false = true`, + `! ? = ?`, + + // etc. + + // binary operations + `"" + "" = ""`, + `"foo" + "" = "foo"`, + `"" + "bar" = "bar"`, + `"foo" + "bar" = "foobar"`, + + `0 + 0 = 0`, + `0 + 0.1 = 0.1`, + `0 + 0.1i = 0.1i`, + `0.1 + 0.9 = 1`, + `1e100 + 1e100 = 2e100`, + `? + 0 = ?`, + `0 + ? = ?`, + + `0 - 0 = 0`, + `0 - 0.1 = -0.1`, + `0 - 0.1i = -0.1i`, + `1e100 - 1e100 = 0`, + `? - 0 = ?`, + `0 - ? = ?`, + + `0 * 0 = 0`, + `1 * 0.1 = 0.1`, + `1 * 0.1i = 0.1i`, + `1i * 1i = -1`, + `? * 0 = ?`, + `0 * ? = ?`, + + `0 / 0 = "division_by_zero"`, + `10 / 2 = 5`, + `5 / 3 = 5/3`, + `5i / 3i = 5/3`, + `? / 0 = ?`, + `0 / ? = ?`, + + `0 % 0 = "runtime_error:_integer_divide_by_zero"`, // TODO(gri) should be the same as for / + `10 % 3 = 1`, + `? % 0 = ?`, + `0 % ? = ?`, + + `0 & 0 = 0`, + `12345 & 0 = 0`, + `0xff & 0xf = 0xf`, + `? & 0 = ?`, + `0 & ? = ?`, + + `0 | 0 = 0`, + `12345 | 0 = 12345`, + `0xb | 0xa0 = 0xab`, + `? | 0 = ?`, + `0 | ? = ?`, + + `0 ^ 0 = 0`, + `1 ^ -1 = -2`, + `? ^ 0 = ?`, + `0 ^ ? = ?`, + + `0 &^ 0 = 0`, + `0xf &^ 1 = 0xe`, + `1 &^ 0xf = 0`, + // etc. + + // shifts + `0 << 0 = 0`, + `1 << 10 = 1024`, + `0 >> 0 = 0`, + `1024 >> 10 == 1`, + `? << 0 == ?`, + `? >> 10 == ?`, + // etc. + + // comparisons + `false == false = true`, + `false == true = false`, + `true == false = false`, + `true == true = true`, + + `false != false = false`, + `false != true = true`, + `true != false = true`, + `true != true = false`, + + `"foo" == "bar" = false`, + `"foo" != "bar" = true`, + `"foo" < "bar" = false`, + `"foo" <= "bar" = false`, + `"foo" > "bar" = true`, + `"foo" >= "bar" = true`, + + `0 == 0 = true`, + `0 != 0 = false`, + `0 < 10 = true`, + `10 <= 10 = true`, + `0 > 10 = false`, + `10 >= 10 = true`, + + `1/123456789 == 1/123456789 == true`, + `1/123456789 != 1/123456789 == false`, + `1/123456789 < 1/123456788 == true`, + `1/123456788 <= 1/123456789 == false`, + `0.11 > 0.11 = false`, + `0.11 >= 0.11 = true`, + + `? == 0 = false`, + `? != 0 = false`, + `? < 10 = false`, + `? <= 10 = false`, + `? > 10 = false`, + `? >= 10 = false`, + + `0 == ? = false`, + `0 != ? = false`, + `0 < ? = false`, + `10 <= ? = false`, + `0 > ? = false`, + `10 >= ? = false`, + + // etc. +} + +func TestOps(t *testing.T) { + for _, test := range opTests { + a := strings.Split(test, " ") + i := 0 // operator index + + var x, x0 Value + switch len(a) { + case 4: + // unary operation + case 5: + // binary operation + x, x0 = val(a[0]), val(a[0]) + i = 1 + default: + t.Errorf("invalid test case: %s", test) + continue + } + + op, ok := optab[a[i]] + if !ok { + panic("missing optab entry for " + a[i]) + } + + y, y0 := val(a[i+1]), val(a[i+1]) + + got := doOp(x, op, y) + want := val(a[i+3]) + if !eql(got, want) { + t.Errorf("%s: got %s; want %s", test, got, want) + } + if x0 != nil && !eql(x, x0) { + t.Errorf("%s: x changed to %s", test, x) + } + if !eql(y, y0) { + t.Errorf("%s: y changed to %s", test, y) + } + } +} + +func eql(x, y Value) bool { + _, ux := x.(unknownVal) + _, uy := y.(unknownVal) + if ux || uy { + return ux == uy + } + return Compare(x, token.EQL, y) +} + +// ---------------------------------------------------------------------------- +// Support functions + +func val(lit string) Value { + if len(lit) == 0 { + return MakeUnknown() + } + + switch lit { + case "?": + return MakeUnknown() + case "true": + return MakeBool(true) + case "false": + return MakeBool(false) + } + + tok := token.INT + switch first, last := lit[0], lit[len(lit)-1]; { + case first == '"' || first == '`': + tok = token.STRING + lit = strings.Replace(lit, "_", " ", -1) + case first == '\'': + tok = token.CHAR + case last == 'i': + tok = token.IMAG + default: + if !strings.HasPrefix(lit, "0x") && strings.ContainsAny(lit, "./Ee") { + tok = token.FLOAT + } + } + + return MakeFromLiteral(lit, tok) +} + +var optab = map[string]token.Token{ + "!": token.NOT, + + "+": token.ADD, + "-": token.SUB, + "*": token.MUL, + "/": token.QUO, + "%": token.REM, + + "<<": token.SHL, + ">>": token.SHR, + + "&": token.AND, + "|": token.OR, + "^": token.XOR, + "&^": token.AND_NOT, + + "==": token.EQL, + "!=": token.NEQ, + "<": token.LSS, + "<=": token.LEQ, + ">": token.GTR, + ">=": token.GEQ, +} + +func panicHandler(v *Value) { + switch p := recover().(type) { + case nil: + // nothing to do + case string: + *v = MakeString(p) + case error: + *v = MakeString(p.Error()) + default: + panic(p) + } +} + +func doOp(x Value, op token.Token, y Value) (z Value) { + defer panicHandler(&z) + + if x == nil { + return UnaryOp(op, y, -1) + } + + switch op { + case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ: + return MakeBool(Compare(x, op, y)) + case token.SHL, token.SHR: + s, _ := Int64Val(y) + return Shift(x, op, uint(s)) + default: + return BinaryOp(x, op, y) + } +} + +// ---------------------------------------------------------------------------- +// Other tests + +var fracTests = []string{ + "0 0 1", + "1 1 1", + "-1 -1 1", + "1.2 6 5", + "-0.991 -991 1000", + "1e100 1e100 1", +} + +func TestFractions(t *testing.T) { + for _, test := range fracTests { + a := strings.Split(test, " ") + if len(a) != 3 { + t.Errorf("invalid test case: %s", test) + continue + } + + x := val(a[0]) + n := val(a[1]) + d := val(a[2]) + + if got := Num(x); !eql(got, n) { + t.Errorf("%s: got num = %s; want %s", test, got, n) + } + + if got := Denom(x); !eql(got, d) { + t.Errorf("%s: got denom = %s; want %s", test, got, d) + } + } +} + +var bytesTests = []string{ + "0", + "1", + "123456789", + "123456789012345678901234567890123456789012345678901234567890", +} + +func TestBytes(t *testing.T) { + for _, test := range bytesTests { + x := val(test) + bytes := Bytes(x) + + // special case 0 + if Sign(x) == 0 && len(bytes) != 0 { + t.Errorf("%s: got %v; want empty byte slice", test, bytes) + } + + if n := len(bytes); n > 0 && bytes[n-1] == 0 { + t.Errorf("%s: got %v; want no leading 0 byte", test, bytes) + } + + if got := MakeFromBytes(bytes); !eql(got, x) { + t.Errorf("%s: got %s; want %s (bytes = %v)", test, got, x, bytes) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/gccgoinstallation.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/gccgoinstallation.go new file mode 100644 index 00000000..6e3f7ffb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/gccgoinstallation.go @@ -0,0 +1,95 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package gccgoimporter + +import ( + "bufio" + "os" + "os/exec" + "path/filepath" + "strings" + + "code.google.com/p/go.tools/go/types" +) + +// Information about a specific installation of gccgo. +type GccgoInstallation struct { + // Version of gcc (e.g. 4.8.0). + GccVersion string + + // Target triple (e.g. x86_64-unknown-linux-gnu). + TargetTriple string + + // Built-in library paths used by this installation. + LibPaths []string +} + +// Ask the driver at the given path for information for this GccgoInstallation. +func (inst *GccgoInstallation) InitFromDriver(gccgoPath string) (err error) { + cmd := exec.Command(gccgoPath, "-###", "-S", "-x", "go", "-") + stderr, err := cmd.StderrPipe() + if err != nil { + return + } + + err = cmd.Start() + if err != nil { + return + } + + scanner := bufio.NewScanner(stderr) + for scanner.Scan() { + line := scanner.Text() + switch { + case strings.HasPrefix(line, "Target: "): + inst.TargetTriple = line[8:] + + case line[0] == ' ': + args := strings.Fields(line) + for _, arg := range args[1:] { + if strings.HasPrefix(arg, "-L") { + inst.LibPaths = append(inst.LibPaths, arg[2:]) + } + } + } + } + + stdout, err := exec.Command(gccgoPath, "-dumpversion").Output() + if err != nil { + return + } + inst.GccVersion = strings.TrimSpace(string(stdout)) + + return +} + +// Return the list of export search paths for this GccgoInstallation. +func (inst *GccgoInstallation) SearchPaths() (paths []string) { + for _, lpath := range inst.LibPaths { + spath := filepath.Join(lpath, "go", inst.GccVersion) + fi, err := os.Stat(spath) + if err != nil || !fi.IsDir() { + continue + } + paths = append(paths, spath) + + spath = filepath.Join(spath, inst.TargetTriple) + fi, err = os.Stat(spath) + if err != nil || !fi.IsDir() { + continue + } + paths = append(paths, spath) + } + + paths = append(paths, inst.LibPaths...) + + return +} + +// Return an importer that searches incpaths followed by the gcc installation's +// built-in search paths and the current directory. +func (inst *GccgoInstallation) GetImporter(incpaths []string) types.Importer { + return GetImporter(append(append(incpaths, inst.SearchPaths()...), ".")) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/gccgoinstallation_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/gccgoinstallation_test.go new file mode 100644 index 00000000..a9e39dc3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/gccgoinstallation_test.go @@ -0,0 +1,194 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package gccgoimporter + +import ( + "runtime" + "testing" + + "code.google.com/p/go.tools/go/types" +) + +var importablePackages = [...]string{ + "archive/tar", + "archive/zip", + "bufio", + "bytes", + "compress/bzip2", + "compress/flate", + "compress/gzip", + "compress/lzw", + "compress/zlib", + "container/heap", + "container/list", + "container/ring", + "crypto/aes", + "crypto/cipher", + "crypto/des", + "crypto/dsa", + "crypto/ecdsa", + "crypto/elliptic", + "crypto", + "crypto/hmac", + "crypto/md5", + "crypto/rand", + "crypto/rc4", + "crypto/rsa", + "crypto/sha1", + "crypto/sha256", + "crypto/sha512", + "crypto/subtle", + "crypto/tls", + "crypto/x509", + "crypto/x509/pkix", + "database/sql/driver", + "database/sql", + "debug/dwarf", + "debug/elf", + "debug/gosym", + "debug/macho", + "debug/pe", + "encoding/ascii85", + "encoding/asn1", + "encoding/base32", + "encoding/base64", + "encoding/binary", + "encoding/csv", + "encoding/gob", + "encoding", + "encoding/hex", + "encoding/json", + "encoding/pem", + "encoding/xml", + "errors", + "exp/proxy", + "exp/terminal", + "expvar", + "flag", + "fmt", + "go/ast", + "go/build", + "go/doc", + "go/format", + "go/parser", + "go/printer", + "go/scanner", + "go/token", + "hash/adler32", + "hash/crc32", + "hash/crc64", + "hash/fnv", + "hash", + "html", + "html/template", + "image/color", + "image/color/palette", + "image/draw", + "image/gif", + "image", + "image/jpeg", + "image/png", + "index/suffixarray", + "io", + "io/ioutil", + "log", + "log/syslog", + "math/big", + "math/cmplx", + "math", + "math/rand", + "mime", + "mime/multipart", + "net", + "net/http/cgi", + "net/http/cookiejar", + "net/http/fcgi", + "net/http", + "net/http/httptest", + "net/http/httputil", + "net/http/pprof", + "net/mail", + "net/rpc", + "net/rpc/jsonrpc", + "net/smtp", + "net/textproto", + "net/url", + "old/regexp", + "old/template", + "os/exec", + "os", + "os/signal", + "os/user", + "path/filepath", + "path", + "reflect", + "regexp", + "regexp/syntax", + "runtime/debug", + "runtime", + "runtime/pprof", + "sort", + "strconv", + "strings", + "sync/atomic", + "sync", + "syscall", + "testing", + "testing/iotest", + "testing/quick", + "text/scanner", + "text/tabwriter", + "text/template", + "text/template/parse", + "time", + "unicode", + "unicode/utf16", + "unicode/utf8", +} + +func TestInstallationImporter(t *testing.T) { + // This test relies on gccgo being around, which it most likely will be if we + // were compiled with gccgo. + if runtime.Compiler != "gccgo" { + t.Skip("This test needs gccgo") + return + } + + var inst GccgoInstallation + err := inst.InitFromDriver("gccgo") + if err != nil { + t.Fatal(err) + } + imp := inst.GetImporter(nil) + + // Ensure we don't regress the number of packages we can parse. First import + // all packages into the same map and then each individually. + pkgMap := make(map[string]*types.Package) + for _, pkg := range importablePackages { + _, err = imp(pkgMap, pkg) + if err != nil { + t.Error(err) + } + } + + for _, pkg := range importablePackages { + _, err = imp(make(map[string]*types.Package), pkg) + if err != nil { + t.Error(err) + } + } + + // Test for certain specific entities in the imported data. + for _, test := range [...]importerTest{ + {pkgpath: "io", name: "Reader", want: "type Reader interface{Read(p []uint8) (n int, err error)}"}, + {pkgpath: "io", name: "ReadWriter", want: "type ReadWriter interface{Reader; Writer}"}, + {pkgpath: "math", name: "Pi", want: "const Pi untyped float"}, + {pkgpath: "math", name: "Sin", want: "func Sin(x float64) float64"}, + {pkgpath: "sort", name: "Ints", want: "func Ints(a []int)"}, + {pkgpath: "unsafe", name: "Pointer", want: "type Pointer unsafe.Pointer"}, + } { + runImporterTest(t, imp, &test) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/importer.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/importer.go new file mode 100644 index 00000000..17504e2e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/importer.go @@ -0,0 +1,107 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package gccgoimporter implements Import for gccgo-generated object files. +package gccgoimporter + +import ( + "debug/elf" + "fmt" + "io" + "os" + "path/filepath" + "strings" + + "code.google.com/p/go.tools/go/types" +) + +// Locate the file from which to read export data. +// This is intended to replicate the logic in gofrontend. +func findExportFile(searchpaths []string, pkgpath string) (string, error) { + for _, spath := range searchpaths { + pkgfullpath := filepath.Join(spath, pkgpath) + pkgdir, name := filepath.Split(pkgfullpath) + + for _, filepath := range [...]string{ + pkgfullpath, + pkgfullpath + ".gox", + pkgdir + "lib" + name + ".so", + pkgdir + "lib" + name + ".a", + pkgfullpath + ".o", + } { + fi, err := os.Stat(filepath) + if err == nil && !fi.IsDir() { + return filepath, nil + } + } + } + + return "", fmt.Errorf("%s: could not find export data (tried %s)", pkgpath, strings.Join(searchpaths, ":")) +} + +// Opens the export data file at the given path. If this is an ELF file, +// searches for and opens the .go_export section. +// This is intended to replicate the logic in gofrontend, although it doesn't handle archive files yet. +func openExportFile(fpath string) (reader io.ReadSeeker, closer io.Closer, err error) { + f, err := os.Open(fpath) + if err != nil { + return + } + defer func() { + if err != nil { + f.Close() + } + }() + closer = f + + var magic [4]byte + _, err = f.ReadAt(magic[:], 0) + if err != nil { + return + } + + if string(magic[:]) == "v1;\n" { + // Raw export data. + reader = f + return + } + + ef, err := elf.NewFile(f) + if err != nil { + return + } + + sec := ef.Section(".go_export") + if sec == nil { + err = fmt.Errorf("%s: .go_export section not found", fpath) + return + } + + reader = sec.Open() + return +} + +func GetImporter(searchpaths []string) types.Importer { + return func(imports map[string]*types.Package, pkgpath string) (pkg *types.Package, err error) { + if pkgpath == "unsafe" { + return types.Unsafe, nil + } + + fpath, err := findExportFile(searchpaths, pkgpath) + if err != nil { + return + } + + reader, closer, err := openExportFile(fpath) + if err != nil { + return + } + defer closer.Close() + + var p parser + p.init(fpath, reader, imports) + pkg = p.parsePackage() + return + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/importer_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/importer_test.go new file mode 100644 index 00000000..20d85ec6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/importer_test.go @@ -0,0 +1,99 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package gccgoimporter + +import ( + "io/ioutil" + "os" + "os/exec" + "path/filepath" + "runtime" + "testing" + + "code.google.com/p/go.tools/go/types" +) + +type importerTest struct { + pkgpath, name, want, wantval string +} + +func runImporterTest(t *testing.T, imp types.Importer, test *importerTest) { + pkg, err := imp(make(map[string]*types.Package), test.pkgpath) + if err != nil { + t.Error(err) + return + } + + obj := pkg.Scope().Lookup(test.name) + if obj == nil { + t.Errorf("%s: object not found", test.name) + return + } + + got := types.ObjectString(pkg, obj) + if got != test.want { + t.Errorf("%s: got %q; want %q", test.name, got, test.want) + } + + if test.wantval != "" { + gotval := obj.(*types.Const).Val().String() + if gotval != test.wantval { + t.Errorf("%s: got val %q; want val %q", test.name, gotval, test.wantval) + } + } +} + +var importerTests = [...]importerTest{ + {pkgpath: "pointer", name: "Int8Ptr", want: "type Int8Ptr *int8"}, + {pkgpath: "complexnums", name: "NN", want: "const NN untyped complex", wantval: "(-1/1 + -1/1i)"}, + {pkgpath: "complexnums", name: "NP", want: "const NP untyped complex", wantval: "(-1/1 + 1/1i)"}, + {pkgpath: "complexnums", name: "PN", want: "const PN untyped complex", wantval: "(1/1 + -1/1i)"}, + {pkgpath: "complexnums", name: "PP", want: "const PP untyped complex", wantval: "(1/1 + 1/1i)"}, +} + +func TestGoxImporter(t *testing.T) { + imp := GetImporter([]string{"testdata"}) + + for _, test := range importerTests { + runImporterTest(t, imp, &test) + } +} + +func TestObjImporter(t *testing.T) { + // This test relies on gccgo being around, which it most likely will be if we + // were compiled with gccgo. + if runtime.Compiler != "gccgo" { + t.Skip("This test needs gccgo") + return + } + + tmpdir, err := ioutil.TempDir("", "") + if err != nil { + t.Fatal(err) + } + imp := GetImporter([]string{tmpdir}) + + for _, test := range importerTests { + gofile := filepath.Join("testdata", test.pkgpath+".go") + ofile := filepath.Join(tmpdir, test.pkgpath+".o") + + cmd := exec.Command("gccgo", "-c", "-o", ofile, gofile) + out, err := cmd.CombinedOutput() + if err != nil { + t.Logf("%s", out) + t.Fatalf("gccgo %s failed: %s", gofile, err) + } + + runImporterTest(t, imp, &test) + + if err := os.Remove(ofile); err != nil { + t.Fatal(err) + } + } + + if err = os.Remove(tmpdir); err != nil { + t.Fatal(err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/parser.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/parser.go new file mode 100644 index 00000000..b09b1376 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/parser.go @@ -0,0 +1,805 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package gccgoimporter + +import ( + "bytes" + "errors" + "fmt" + "go/token" + "io" + "strconv" + "strings" + "text/scanner" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +type parser struct { + scanner scanner.Scanner + tok rune // current token + lit string // literal string; only valid for Ident, Int, String tokens + pkgpath string // package path of imported package + pkgname string // name of imported package + pkg *types.Package // reference to imported package + imports map[string]*types.Package // package path -> package object + typeMap map[int]types.Type // type number -> type +} + +func (p *parser) init(filename string, src io.Reader, imports map[string]*types.Package) { + p.scanner.Init(src) + p.scanner.Error = func(_ *scanner.Scanner, msg string) { p.error(msg) } + p.scanner.Mode = scanner.ScanIdents | scanner.ScanInts | scanner.ScanFloats | scanner.ScanStrings | scanner.ScanComments | scanner.SkipComments + p.scanner.Whitespace = 1<<'\t' | 1<<'\n' | 1<<' ' + p.scanner.Filename = filename // for good error messages + p.next() + p.imports = imports + p.typeMap = make(map[int]types.Type) +} + +type importError struct { + pos scanner.Position + err error +} + +func (e importError) Error() string { + return fmt.Sprintf("import error %s (byte offset = %d): %s", e.pos, e.pos.Offset, e.err) +} + +func (p *parser) error(err interface{}) { + if s, ok := err.(string); ok { + err = errors.New(s) + } + // panic with a runtime.Error if err is not an error + panic(importError{p.scanner.Pos(), err.(error)}) +} + +func (p *parser) errorf(format string, args ...interface{}) { + p.error(fmt.Errorf(format, args...)) +} + +func (p *parser) expect(tok rune) string { + lit := p.lit + if p.tok != tok { + p.errorf("expected %s, got %s (%s)", scanner.TokenString(tok), scanner.TokenString(p.tok), lit) + } + p.next() + return lit +} + +func (p *parser) expectKeyword(keyword string) { + lit := p.expect(scanner.Ident) + if lit != keyword { + p.errorf("expected keyword %s, got %q", keyword, lit) + } +} + +func (p *parser) parseString() string { + str, err := strconv.Unquote(p.expect(scanner.String)) + if err != nil { + p.error(err) + } + return str +} + +// unquotedString = { unquotedStringChar } . +// unquotedStringChar = . +func (p *parser) parseUnquotedString() string { + if p.tok == scanner.EOF { + p.error("unexpected EOF") + } + var buf bytes.Buffer + buf.WriteString(p.scanner.TokenText()) + // This loop needs to examine each character before deciding whether to consume it. If we see a semicolon, + // we need to let it be consumed by p.next(). + for ch := p.scanner.Peek(); ch != ';' && ch != scanner.EOF && p.scanner.Whitespace&(1< 0 { + p.expect(',') + } + par, variadic := p.parseParam(pkg) + list = append(list, par) + if variadic { + if isVariadic { + p.error("... not on final argument") + } + isVariadic = true + } + } + p.expect(')') + + return types.NewTuple(list...), isVariadic +} + +// ResultList = Type | ParamList . +func (p *parser) parseResultList(pkg *types.Package) *types.Tuple { + switch p.tok { + case '<': + return types.NewTuple(types.NewParam(token.NoPos, pkg, "", p.parseType(pkg))) + + case '(': + params, _ := p.parseParamList(pkg) + return params + + default: + return nil + } +} + +// FunctionType = ParamList ResultList . +func (p *parser) parseFunctionType(pkg *types.Package) *types.Signature { + params, isVariadic := p.parseParamList(pkg) + results := p.parseResultList(pkg) + return types.NewSignature(pkg.Scope(), nil, params, results, isVariadic) +} + +// Func = Name FunctionType . +func (p *parser) parseFunc(pkg *types.Package) *types.Func { + name := p.parseName() + if strings.ContainsRune(name, '$') { + // This is a Type$equal or Type$hash function, which we don't want to parse, + // except for the types. + p.discardDirectiveWhileParsingTypes(pkg) + return nil + } + return types.NewFunc(token.NoPos, pkg, name, p.parseFunctionType(pkg)) +} + +// InterfaceType = "interface" "{" { ("?" Type | Func) ";" } "}" . +func (p *parser) parseInterfaceType(pkg *types.Package) types.Type { + p.expectKeyword("interface") + + var methods []*types.Func + var typs []*types.Named + + p.expect('{') + for p.tok != '}' && p.tok != scanner.EOF { + if p.tok == '?' { + p.next() + typs = append(typs, p.parseType(pkg).(*types.Named)) + } else { + method := p.parseFunc(pkg) + methods = append(methods, method) + } + p.expect(';') + } + p.expect('}') + + return types.NewInterface(methods, typs) +} + +// PointerType = "*" ("any" | Type) . +func (p *parser) parsePointerType(pkg *types.Package) types.Type { + p.expect('*') + if p.tok == scanner.Ident { + p.expectKeyword("any") + return types.Typ[types.UnsafePointer] + } + return types.NewPointer(p.parseType(pkg)) +} + +// TypeDefinition = NamedType | MapType | ChanType | StructType | InterfaceType | PointerType | ArrayOrSliceType | FunctionType . +func (p *parser) parseTypeDefinition(pkg *types.Package, n int) types.Type { + var t types.Type + switch p.tok { + case scanner.String: + t = p.parseNamedType(n) + + case scanner.Ident: + switch p.lit { + case "map": + t = p.parseMapType(pkg) + + case "chan": + t = p.parseChanType(pkg) + + case "struct": + t = p.parseStructType(pkg) + + case "interface": + t = p.parseInterfaceType(pkg) + } + + case '*': + t = p.parsePointerType(pkg) + + case '[': + t = p.parseArrayOrSliceType(pkg) + + case '(': + t = p.parseFunctionType(pkg) + } + + p.typeMap[n] = t + return t +} + +const ( + // From gofrontend/go/export.h + // Note that these values are negative in the gofrontend and have been made positive + // in the gccgoimporter. + gccgoBuiltinINT8 = 1 + gccgoBuiltinINT16 = 2 + gccgoBuiltinINT32 = 3 + gccgoBuiltinINT64 = 4 + gccgoBuiltinUINT8 = 5 + gccgoBuiltinUINT16 = 6 + gccgoBuiltinUINT32 = 7 + gccgoBuiltinUINT64 = 8 + gccgoBuiltinFLOAT32 = 9 + gccgoBuiltinFLOAT64 = 10 + gccgoBuiltinINT = 11 + gccgoBuiltinUINT = 12 + gccgoBuiltinUINTPTR = 13 + gccgoBuiltinBOOL = 15 + gccgoBuiltinSTRING = 16 + gccgoBuiltinCOMPLEX64 = 17 + gccgoBuiltinCOMPLEX128 = 18 + gccgoBuiltinERROR = 19 + gccgoBuiltinBYTE = 20 + gccgoBuiltinRUNE = 21 +) + +func lookupBuiltinType(typ int) types.Type { + return [...]types.Type{ + gccgoBuiltinINT8: types.Typ[types.Int8], + gccgoBuiltinINT16: types.Typ[types.Int16], + gccgoBuiltinINT32: types.Typ[types.Int32], + gccgoBuiltinINT64: types.Typ[types.Int64], + gccgoBuiltinUINT8: types.Typ[types.Uint8], + gccgoBuiltinUINT16: types.Typ[types.Uint16], + gccgoBuiltinUINT32: types.Typ[types.Uint32], + gccgoBuiltinUINT64: types.Typ[types.Uint64], + gccgoBuiltinFLOAT32: types.Typ[types.Float32], + gccgoBuiltinFLOAT64: types.Typ[types.Float64], + gccgoBuiltinINT: types.Typ[types.Int], + gccgoBuiltinUINT: types.Typ[types.Uint], + gccgoBuiltinUINTPTR: types.Typ[types.Uintptr], + gccgoBuiltinBOOL: types.Typ[types.Bool], + gccgoBuiltinSTRING: types.Typ[types.String], + gccgoBuiltinCOMPLEX64: types.Typ[types.Complex64], + gccgoBuiltinCOMPLEX128: types.Typ[types.Complex128], + gccgoBuiltinERROR: types.Universe.Lookup("error").Type(), + gccgoBuiltinBYTE: types.Typ[types.Byte], + gccgoBuiltinRUNE: types.Typ[types.Rune], + }[typ] +} + +// Type = "<" "type" ( "-" int | int [ TypeDefinition ] ) ">" . +func (p *parser) parseType(pkg *types.Package) (t types.Type) { + p.expect('<') + p.expectKeyword("type") + + switch p.tok { + case scanner.Int: + n, err := strconv.ParseInt(p.lit, 10, 0) + if err != nil { + p.error(err) + } + p.next() + + if p.tok == '>' { + t = p.typeMap[int(n)] + } else { + t = p.parseTypeDefinition(pkg, int(n)) + } + + case '-': + p.next() + lit := p.expect(scanner.Int) + n, err := strconv.ParseInt(lit, 10, 0) + if err != nil { + p.error(err) + } + t = lookupBuiltinType(int(n)) + + default: + p.errorf("expected type number, got %s (%q)", scanner.TokenString(p.tok), p.lit) + return nil + } + + p.expect('>') + return +} + +// Throw away tokens until we see a ';'. If we see a '<', attempt to parse as a type. +func (p *parser) discardDirectiveWhileParsingTypes(pkg *types.Package) { + for { + switch p.tok { + case ';': + return + case '<': + p.parseType(p.pkg) + case scanner.EOF: + p.error("unexpected EOF") + default: + p.next() + } + } +} + +// Create the package if we have parsed both the package path and package name. +func (p *parser) maybeCreatePackage() { + if p.pkgname != "" && p.pkgpath != "" { + p.pkg = p.getPkg(p.pkgpath, p.pkgname) + } +} + +// Directive = ("v1" | "priority" | "init" | "checksum") { } ";" | +// "package" unquotedString ";" | +// "pkgpath" unquotedString ";" | +// "import" unquotedString unquotedString string ";" | +// "func" Func ";" | +// "type" Type ";" | +// "var" Var ";" | +// "const" Const ";" . +func (p *parser) parseDirective() { + if p.tok != scanner.Ident { + p.expect(scanner.Ident) + } + + switch p.lit { + case "v1", "priority", "init": + // We can't parse these yet. + p.discardDirectiveWhileParsingTypes(p.pkg) + p.next() + + case "package": + p.next() + p.pkgname = p.parseUnquotedString() + p.maybeCreatePackage() + p.expect(';') + + case "pkgpath": + p.next() + p.pkgpath = p.parseUnquotedString() + p.maybeCreatePackage() + p.expect(';') + + case "import": + p.next() + pkgname := p.parseUnquotedString() + pkgpath := p.parseUnquotedString() + p.getPkg(pkgpath, pkgname) + p.parseString() + p.expect(';') + + case "func": + p.next() + fun := p.parseFunc(p.pkg) + if fun != nil { + p.pkg.Scope().Insert(fun) + } + p.expect(';') + + case "type": + p.next() + p.parseType(p.pkg) + p.expect(';') + + case "var": + p.next() + v := p.parseVar(p.pkg) + p.pkg.Scope().Insert(v) + p.expect(';') + + case "const": + p.next() + c := p.parseConst(p.pkg) + p.pkg.Scope().Insert(c) + p.expect(';') + + case "checksum": + // Don't let the scanner try to parse the checksum as a number. + p.scanner.Mode &^= scanner.ScanInts | scanner.ScanFloats + p.next() + p.parseUnquotedString() + p.expect(';') + p.scanner.Mode |= scanner.ScanInts | scanner.ScanFloats + + default: + p.errorf("unexpected identifier: %q", p.lit) + } +} + +// Package = { Directive } . +func (p *parser) parsePackage() *types.Package { + for p.tok != scanner.EOF { + p.parseDirective() + } + p.pkg.MarkComplete() + return p.pkg +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/parser_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/parser_test.go new file mode 100644 index 00000000..f084a630 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/parser_test.go @@ -0,0 +1,73 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package gccgoimporter + +import ( + "bytes" + "strings" + "testing" + "text/scanner" + + "code.google.com/p/go.tools/go/types" +) + +var typeParserTests = []struct { + id, typ, want, underlying, methods string +}{ + {id: "foo", typ: "", want: "int8"}, + {id: "foo", typ: ">", want: "*error"}, + {id: "foo", typ: "", want: "unsafe.Pointer"}, + {id: "foo", typ: ">>", want: "foo.Bar", underlying: "*foo.Bar"}, + {id: "foo", typ: " func (? ) M (); >", want: "bar.Foo", underlying: "int8", methods: "func (bar.Foo).M()"}, + {id: "foo", typ: ">", want: "bar.foo", underlying: "int8"}, + {id: "foo", typ: ">", want: "[]int8"}, + {id: "foo", typ: ">", want: "[42]int8"}, + {id: "foo", typ: "] >", want: "map[int8]int16"}, + {id: "foo", typ: ">", want: "chan int8"}, + {id: "foo", typ: ">", want: "<-chan int8"}, + {id: "foo", typ: ">", want: "chan<- int8"}, + {id: "foo", typ: "; I16 \"i16\"; }>", want: "struct{I8 int8; I16 int16 \"i16\"}"}, + {id: "foo", typ: ", b ) ; Bar (? , ? ...) (? , ? ); Baz (); }>", want: "interface{Bar(int16, ...int8) (int16, int8); Baz(); Foo(a int8, b int16) int8}"}, + {id: "foo", typ: ") >", want: "func(int8) int16"}, +} + +func TestTypeParser(t *testing.T) { + for _, test := range typeParserTests { + var p parser + p.init("test.gox", strings.NewReader(test.typ), make(map[string]*types.Package)) + p.pkgname = test.id + p.pkgpath = test.id + p.maybeCreatePackage() + typ := p.parseType(p.pkg) + + if p.tok != scanner.EOF { + t.Errorf("expected full parse, stopped at %q", p.lit) + } + + got := typ.String() + if got != test.want { + t.Errorf("got type %q, expected %q", got, test.want) + } + + if test.underlying != "" { + underlying := typ.Underlying().String() + if underlying != test.underlying { + t.Errorf("got underlying type %q, expected %q", underlying, test.underlying) + } + } + + if test.methods != "" { + nt := typ.(*types.Named) + var buf bytes.Buffer + for i := 0; i != nt.NumMethods(); i++ { + buf.WriteString(nt.Method(i).String()) + } + methods := buf.String() + if methods != test.methods { + t.Errorf("got methods %q, expected %q", methods, test.methods) + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/complexnums.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/complexnums.go new file mode 100644 index 00000000..a51b6b01 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/complexnums.go @@ -0,0 +1,6 @@ +package complexnums + +const NN = -1 - 1i +const NP = -1 + 1i +const PN = 1 - 1i +const PP = 1 + 1i diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/complexnums.gox b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/complexnums.gox new file mode 100644 index 00000000..b66524f8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/complexnums.gox @@ -0,0 +1,8 @@ +v1; +package complexnums; +pkgpath complexnums; +priority 1; +const NN = -0.1E1-0.1E1i ; +const NP = -0.1E1+0.1E1i ; +const PN = 0.1E1-0.1E1i ; +const PP = 0.1E1+0.1E1i ; diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/pointer.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/pointer.go new file mode 100644 index 00000000..4ebc6713 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/pointer.go @@ -0,0 +1,3 @@ +package pointer + +type Int8Ptr *int8 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/pointer.gox b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/pointer.gox new file mode 100644 index 00000000..d96ebbdd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gccgoimporter/testdata/pointer.gox @@ -0,0 +1,4 @@ +v1; +package pointer; +pkgpath pointer; +type >>; diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/exportdata.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/exportdata.go new file mode 100644 index 00000000..657742bb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/exportdata.go @@ -0,0 +1,108 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements FindExportData. + +package gcimporter + +import ( + "bufio" + "errors" + "fmt" + "io" + "strconv" + "strings" +) + +func readGopackHeader(r *bufio.Reader) (name string, size int, err error) { + // See $GOROOT/include/ar.h. + hdr := make([]byte, 16+12+6+6+8+10+2) + _, err = io.ReadFull(r, hdr) + if err != nil { + return + } + // leave for debugging + if false { + fmt.Printf("header: %s", hdr) + } + s := strings.TrimSpace(string(hdr[16+12+6+6+8:][:10])) + size, err = strconv.Atoi(s) + if err != nil || hdr[len(hdr)-2] != '`' || hdr[len(hdr)-1] != '\n' { + err = errors.New("invalid archive header") + return + } + name = strings.TrimSpace(string(hdr[:16])) + return +} + +// FindExportData positions the reader r at the beginning of the +// export data section of an underlying GC-created object/archive +// file by reading from it. The reader must be positioned at the +// start of the file before calling this function. +// +func FindExportData(r *bufio.Reader) (err error) { + // Read first line to make sure this is an object file. + line, err := r.ReadSlice('\n') + if err != nil { + return + } + if string(line) == "!\n" { + // Archive file. Scan to __.PKGDEF. + var name string + var size int + if name, size, err = readGopackHeader(r); err != nil { + return + } + + // Optional leading __.GOSYMDEF or __.SYMDEF. + // Read and discard. + if name == "__.SYMDEF" || name == "__.GOSYMDEF" { + const block = 4096 + tmp := make([]byte, block) + for size > 0 { + n := size + if n > block { + n = block + } + if _, err = io.ReadFull(r, tmp[:n]); err != nil { + return + } + size -= n + } + + if name, size, err = readGopackHeader(r); err != nil { + return + } + } + + // First real entry should be __.PKGDEF. + if name != "__.PKGDEF" { + err = errors.New("go archive is missing __.PKGDEF") + return + } + + // Read first line of __.PKGDEF data, so that line + // is once again the first line of the input. + if line, err = r.ReadSlice('\n'); err != nil { + return + } + } + + // Now at __.PKGDEF in archive or still at beginning of file. + // Either way, line should begin with "go object ". + if !strings.HasPrefix(string(line), "go object ") { + err = errors.New("not a go object file") + return + } + + // Skip over object header to export data. + // Begins after first line with $$. + for line[0] != '$' { + if line, err = r.ReadSlice('\n'); err != nil { + return + } + } + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/gcimporter.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/gcimporter.go new file mode 100644 index 00000000..743baa9c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/gcimporter.go @@ -0,0 +1,959 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package gcimporter implements Import for gc-generated object files. +// Importing this package installs Import as go/types.DefaultImport. +package gcimporter + +import ( + "bufio" + "errors" + "fmt" + "go/build" + "go/token" + "io" + "os" + "path/filepath" + "strconv" + "strings" + "text/scanner" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// debugging/development support +const debug = false + +func init() { + types.DefaultImport = Import +} + +var pkgExts = [...]string{".a", ".5", ".6", ".8"} + +// FindPkg returns the filename and unique package id for an import +// path based on package information provided by build.Import (using +// the build.Default build.Context). +// If no file was found, an empty filename is returned. +// +func FindPkg(path, srcDir string) (filename, id string) { + if len(path) == 0 { + return + } + + id = path + var noext string + switch { + default: + // "x" -> "$GOPATH/pkg/$GOOS_$GOARCH/x.ext", "x" + // Don't require the source files to be present. + bp, _ := build.Import(path, srcDir, build.FindOnly|build.AllowBinary) + if bp.PkgObj == "" { + return + } + noext = strings.TrimSuffix(bp.PkgObj, ".a") + + case build.IsLocalImport(path): + // "./x" -> "/this/directory/x.ext", "/this/directory/x" + noext = filepath.Join(srcDir, path) + id = noext + + case filepath.IsAbs(path): + // for completeness only - go/build.Import + // does not support absolute imports + // "/x" -> "/x.ext", "/x" + noext = path + } + + // try extensions + for _, ext := range pkgExts { + filename = noext + ext + if f, err := os.Stat(filename); err == nil && !f.IsDir() { + return + } + } + + filename = "" // not found + return +} + +// ImportData imports a package by reading the gc-generated export data, +// adds the corresponding package object to the imports map indexed by id, +// and returns the object. +// +// The imports map must contains all packages already imported. The data +// reader position must be the beginning of the export data section. The +// filename is only used in error messages. +// +// If imports[id] contains the completely imported package, that package +// can be used directly, and there is no need to call this function (but +// there is also no harm but for extra time used). +// +func ImportData(imports map[string]*types.Package, filename, id string, data io.Reader) (pkg *types.Package, err error) { + // support for parser error handling + defer func() { + switch r := recover().(type) { + case nil: + // nothing to do + case importError: + err = r + default: + panic(r) // internal error + } + }() + + var p parser + p.init(filename, id, data, imports) + pkg = p.parseExport() + + return +} + +// Import imports a gc-generated package given its import path, adds the +// corresponding package object to the imports map, and returns the object. +// Local import paths are interpreted relative to the current working directory. +// The imports map must contains all packages already imported. +// +func Import(imports map[string]*types.Package, path string) (pkg *types.Package, err error) { + if path == "unsafe" { + return types.Unsafe, nil + } + + srcDir := "." + if build.IsLocalImport(path) { + srcDir, err = os.Getwd() + if err != nil { + return + } + } + + filename, id := FindPkg(path, srcDir) + if filename == "" { + err = fmt.Errorf("can't find import: %s", id) + return + } + + // no need to re-import if the package was imported completely before + if pkg = imports[id]; pkg != nil && pkg.Complete() { + return + } + + // open file + f, err := os.Open(filename) + if err != nil { + return + } + defer func() { + f.Close() + if err != nil { + // add file name to error + err = fmt.Errorf("reading export data: %s: %v", filename, err) + } + }() + + buf := bufio.NewReader(f) + if err = FindExportData(buf); err != nil { + return + } + + pkg, err = ImportData(imports, filename, id, buf) + + return +} + +// ---------------------------------------------------------------------------- +// Parser + +// TODO(gri) Imported objects don't have position information. +// Ideally use the debug table line info; alternatively +// create some fake position (or the position of the +// import). That way error messages referring to imported +// objects can print meaningful information. + +// parser parses the exports inside a gc compiler-produced +// object/archive file and populates its scope with the results. +type parser struct { + scanner scanner.Scanner + tok rune // current token + lit string // literal string; only valid for Ident, Int, String tokens + id string // package id of imported package + imports map[string]*types.Package // package id -> package object +} + +func (p *parser) init(filename, id string, src io.Reader, imports map[string]*types.Package) { + p.scanner.Init(src) + p.scanner.Error = func(_ *scanner.Scanner, msg string) { p.error(msg) } + p.scanner.Mode = scanner.ScanIdents | scanner.ScanInts | scanner.ScanChars | scanner.ScanStrings | scanner.ScanComments | scanner.SkipComments + p.scanner.Whitespace = 1<<'\t' | 1<<' ' + p.scanner.Filename = filename // for good error messages + p.next() + p.id = id + p.imports = imports + if debug { + // check consistency of imports map + for _, pkg := range imports { + if pkg.Name() == "" { + fmt.Printf("no package name for %s\n", pkg.Path()) + } + } + } +} + +func (p *parser) next() { + p.tok = p.scanner.Scan() + switch p.tok { + case scanner.Ident, scanner.Int, scanner.Char, scanner.String, '·': + p.lit = p.scanner.TokenText() + default: + p.lit = "" + } + if debug { + fmt.Printf("%s: %q -> %q\n", scanner.TokenString(p.tok), p.scanner.TokenText(), p.lit) + } +} + +func declTypeName(pkg *types.Package, name string) *types.TypeName { + scope := pkg.Scope() + if obj := scope.Lookup(name); obj != nil { + return obj.(*types.TypeName) + } + obj := types.NewTypeName(token.NoPos, pkg, name, nil) + // a named type may be referred to before the underlying type + // is known - set it up + types.NewNamed(obj, nil, nil) + scope.Insert(obj) + return obj +} + +// ---------------------------------------------------------------------------- +// Error handling + +// Internal errors are boxed as importErrors. +type importError struct { + pos scanner.Position + err error +} + +func (e importError) Error() string { + return fmt.Sprintf("import error %s (byte offset = %d): %s", e.pos, e.pos.Offset, e.err) +} + +func (p *parser) error(err interface{}) { + if s, ok := err.(string); ok { + err = errors.New(s) + } + // panic with a runtime.Error if err is not an error + panic(importError{p.scanner.Pos(), err.(error)}) +} + +func (p *parser) errorf(format string, args ...interface{}) { + p.error(fmt.Sprintf(format, args...)) +} + +func (p *parser) expect(tok rune) string { + lit := p.lit + if p.tok != tok { + p.errorf("expected %s, got %s (%s)", scanner.TokenString(tok), scanner.TokenString(p.tok), lit) + } + p.next() + return lit +} + +func (p *parser) expectSpecial(tok string) { + sep := 'x' // not white space + i := 0 + for i < len(tok) && p.tok == rune(tok[i]) && sep > ' ' { + sep = p.scanner.Peek() // if sep <= ' ', there is white space before the next token + p.next() + i++ + } + if i < len(tok) { + p.errorf("expected %q, got %q", tok, tok[0:i]) + } +} + +func (p *parser) expectKeyword(keyword string) { + lit := p.expect(scanner.Ident) + if lit != keyword { + p.errorf("expected keyword %s, got %q", keyword, lit) + } +} + +// ---------------------------------------------------------------------------- +// Qualified and unqualified names + +// PackageId = string_lit . +// +func (p *parser) parsePackageId() string { + id, err := strconv.Unquote(p.expect(scanner.String)) + if err != nil { + p.error(err) + } + // id == "" stands for the imported package id + // (only known at time of package installation) + if id == "" { + id = p.id + } + return id +} + +// PackageName = ident . +// +func (p *parser) parsePackageName() string { + return p.expect(scanner.Ident) +} + +// dotIdentifier = ( ident | '·' ) { ident | int | '·' } . +func (p *parser) parseDotIdent() string { + ident := "" + if p.tok != scanner.Int { + sep := 'x' // not white space + for (p.tok == scanner.Ident || p.tok == scanner.Int || p.tok == '·') && sep > ' ' { + ident += p.lit + sep = p.scanner.Peek() // if sep <= ' ', there is white space before the next token + p.next() + } + } + if ident == "" { + p.expect(scanner.Ident) // use expect() for error handling + } + return ident +} + +// QualifiedName = "@" PackageId "." ( "?" | dotIdentifier ) . +// +func (p *parser) parseQualifiedName() (id, name string) { + p.expect('@') + id = p.parsePackageId() + p.expect('.') + // Per rev f280b8a485fd (10/2/2013), qualified names may be used for anonymous fields. + if p.tok == '?' { + p.next() + } else { + name = p.parseDotIdent() + } + return +} + +// getPkg returns the package for a given id. If the package is +// not found but we have a package name, create the package and +// add it to the p.imports map. +// +func (p *parser) getPkg(id, name string) *types.Package { + // package unsafe is not in the imports map - handle explicitly + if id == "unsafe" { + return types.Unsafe + } + pkg := p.imports[id] + if pkg == nil && name != "" { + pkg = types.NewPackage(id, name) + p.imports[id] = pkg + } + return pkg +} + +// parseExportedName is like parseQualifiedName, but +// the package id is resolved to an imported *types.Package. +// +func (p *parser) parseExportedName() (pkg *types.Package, name string) { + id, name := p.parseQualifiedName() + pkg = p.getPkg(id, "") + if pkg == nil { + p.errorf("%s package not found", id) + } + return +} + +// ---------------------------------------------------------------------------- +// Types + +// BasicType = identifier . +// +func (p *parser) parseBasicType() types.Type { + id := p.expect(scanner.Ident) + obj := types.Universe.Lookup(id) + if obj, ok := obj.(*types.TypeName); ok { + return obj.Type() + } + p.errorf("not a basic type: %s", id) + return nil +} + +// ArrayType = "[" int_lit "]" Type . +// +func (p *parser) parseArrayType() types.Type { + // "[" already consumed and lookahead known not to be "]" + lit := p.expect(scanner.Int) + p.expect(']') + elem := p.parseType() + n, err := strconv.ParseInt(lit, 10, 64) + if err != nil { + p.error(err) + } + return types.NewArray(elem, n) +} + +// MapType = "map" "[" Type "]" Type . +// +func (p *parser) parseMapType() types.Type { + p.expectKeyword("map") + p.expect('[') + key := p.parseType() + p.expect(']') + elem := p.parseType() + return types.NewMap(key, elem) +} + +// Name = identifier | "?" | QualifiedName . +// +// If materializePkg is set, the returned package is guaranteed to be set. +// For fully qualified names, the returned package may be a fake package +// (without name, scope, and not in the p.imports map), created for the +// sole purpose of providing a package path. Fake packages are created +// when the package id is not found in the p.imports map; in that case +// we cannot create a real package because we don't have a package name. +// For non-qualified names, the returned package is the imported package. +// +func (p *parser) parseName(materializePkg bool) (pkg *types.Package, name string) { + switch p.tok { + case scanner.Ident: + pkg = p.imports[p.id] + name = p.lit + p.next() + case '?': + // anonymous + pkg = p.imports[p.id] + p.next() + case '@': + // exported name prefixed with package path + var id string + id, name = p.parseQualifiedName() + if materializePkg { + // we don't have a package name - if the package + // doesn't exist yet, create a fake package instead + pkg = p.getPkg(id, "") + if pkg == nil { + pkg = types.NewPackage(id, "") + } + } + default: + p.error("name expected") + } + return +} + +func deref(typ types.Type) types.Type { + if p, _ := typ.(*types.Pointer); p != nil { + return p.Elem() + } + return typ +} + +// Field = Name Type [ string_lit ] . +// +func (p *parser) parseField() (*types.Var, string) { + pkg, name := p.parseName(true) + typ := p.parseType() + anonymous := false + if name == "" { + // anonymous field - typ must be T or *T and T must be a type name + switch typ := deref(typ).(type) { + case *types.Basic: // basic types are named types + pkg = nil + name = typ.Name() + case *types.Named: + name = typ.Obj().Name() + default: + p.errorf("anonymous field expected") + } + anonymous = true + } + tag := "" + if p.tok == scanner.String { + s := p.expect(scanner.String) + var err error + tag, err = strconv.Unquote(s) + if err != nil { + p.errorf("invalid struct tag %s: %s", s, err) + } + } + return types.NewField(token.NoPos, pkg, name, typ, anonymous), tag +} + +// StructType = "struct" "{" [ FieldList ] "}" . +// FieldList = Field { ";" Field } . +// +func (p *parser) parseStructType() types.Type { + var fields []*types.Var + var tags []string + + p.expectKeyword("struct") + p.expect('{') + for i := 0; p.tok != '}' && p.tok != scanner.EOF; i++ { + if i > 0 { + p.expect(';') + } + fld, tag := p.parseField() + if tag != "" && tags == nil { + tags = make([]string, i) + } + if tags != nil { + tags = append(tags, tag) + } + fields = append(fields, fld) + } + p.expect('}') + + return types.NewStruct(fields, tags) +} + +// Parameter = ( identifier | "?" ) [ "..." ] Type [ string_lit ] . +// +func (p *parser) parseParameter() (par *types.Var, isVariadic bool) { + _, name := p.parseName(false) + // remove gc-specific parameter numbering + if i := strings.Index(name, "·"); i >= 0 { + name = name[:i] + } + if p.tok == '.' { + p.expectSpecial("...") + isVariadic = true + } + typ := p.parseType() + if isVariadic { + typ = types.NewSlice(typ) + } + // ignore argument tag (e.g. "noescape") + if p.tok == scanner.String { + p.next() + } + // TODO(gri) should we provide a package? + par = types.NewVar(token.NoPos, nil, name, typ) + return +} + +// Parameters = "(" [ ParameterList ] ")" . +// ParameterList = { Parameter "," } Parameter . +// +func (p *parser) parseParameters() (list []*types.Var, isVariadic bool) { + p.expect('(') + for p.tok != ')' && p.tok != scanner.EOF { + if len(list) > 0 { + p.expect(',') + } + par, variadic := p.parseParameter() + list = append(list, par) + if variadic { + if isVariadic { + p.error("... not on final argument") + } + isVariadic = true + } + } + p.expect(')') + + return +} + +// Signature = Parameters [ Result ] . +// Result = Type | Parameters . +// +func (p *parser) parseSignature(recv *types.Var) *types.Signature { + params, isVariadic := p.parseParameters() + + // optional result type + var results []*types.Var + if p.tok == '(' { + var variadic bool + results, variadic = p.parseParameters() + if variadic { + p.error("... not permitted on result type") + } + } + + return types.NewSignature(nil, recv, types.NewTuple(params...), types.NewTuple(results...), isVariadic) +} + +// InterfaceType = "interface" "{" [ MethodList ] "}" . +// MethodList = Method { ";" Method } . +// Method = Name Signature . +// +// The methods of embedded interfaces are always "inlined" +// by the compiler and thus embedded interfaces are never +// visible in the export data. +// +func (p *parser) parseInterfaceType() types.Type { + var methods []*types.Func + + p.expectKeyword("interface") + p.expect('{') + for i := 0; p.tok != '}' && p.tok != scanner.EOF; i++ { + if i > 0 { + p.expect(';') + } + pkg, name := p.parseName(true) + sig := p.parseSignature(nil) + methods = append(methods, types.NewFunc(token.NoPos, pkg, name, sig)) + } + p.expect('}') + + return types.NewInterface(methods, nil) +} + +// ChanType = ( "chan" [ "<-" ] | "<-" "chan" ) Type . +// +func (p *parser) parseChanType() types.Type { + dir := types.SendRecv + if p.tok == scanner.Ident { + p.expectKeyword("chan") + if p.tok == '<' { + p.expectSpecial("<-") + dir = types.SendOnly + } + } else { + p.expectSpecial("<-") + p.expectKeyword("chan") + dir = types.RecvOnly + } + elem := p.parseType() + return types.NewChan(dir, elem) +} + +// Type = +// BasicType | TypeName | ArrayType | SliceType | StructType | +// PointerType | FuncType | InterfaceType | MapType | ChanType | +// "(" Type ")" . +// +// BasicType = ident . +// TypeName = ExportedName . +// SliceType = "[" "]" Type . +// PointerType = "*" Type . +// FuncType = "func" Signature . +// +func (p *parser) parseType() types.Type { + switch p.tok { + case scanner.Ident: + switch p.lit { + default: + return p.parseBasicType() + case "struct": + return p.parseStructType() + case "func": + // FuncType + p.next() + return p.parseSignature(nil) + case "interface": + return p.parseInterfaceType() + case "map": + return p.parseMapType() + case "chan": + return p.parseChanType() + } + case '@': + // TypeName + pkg, name := p.parseExportedName() + return declTypeName(pkg, name).Type() + case '[': + p.next() // look ahead + if p.tok == ']' { + // SliceType + p.next() + return types.NewSlice(p.parseType()) + } + return p.parseArrayType() + case '*': + // PointerType + p.next() + return types.NewPointer(p.parseType()) + case '<': + return p.parseChanType() + case '(': + // "(" Type ")" + p.next() + typ := p.parseType() + p.expect(')') + return typ + } + p.errorf("expected type, got %s (%q)", scanner.TokenString(p.tok), p.lit) + return nil +} + +// ---------------------------------------------------------------------------- +// Declarations + +// ImportDecl = "import" PackageName PackageId . +// +func (p *parser) parseImportDecl() { + p.expectKeyword("import") + name := p.parsePackageName() + p.getPkg(p.parsePackageId(), name) +} + +// int_lit = [ "+" | "-" ] { "0" ... "9" } . +// +func (p *parser) parseInt() string { + s := "" + switch p.tok { + case '-': + s = "-" + p.next() + case '+': + p.next() + } + return s + p.expect(scanner.Int) +} + +// number = int_lit [ "p" int_lit ] . +// +func (p *parser) parseNumber() (typ *types.Basic, val exact.Value) { + // mantissa + mant := exact.MakeFromLiteral(p.parseInt(), token.INT) + if mant == nil { + panic("invalid mantissa") + } + + if p.lit == "p" { + // exponent (base 2) + p.next() + exp, err := strconv.ParseInt(p.parseInt(), 10, 0) + if err != nil { + p.error(err) + } + if exp < 0 { + denom := exact.MakeInt64(1) + denom = exact.Shift(denom, token.SHL, uint(-exp)) + typ = types.Typ[types.UntypedFloat] + val = exact.BinaryOp(mant, token.QUO, denom) + return + } + if exp > 0 { + mant = exact.Shift(mant, token.SHL, uint(exp)) + } + typ = types.Typ[types.UntypedFloat] + val = mant + return + } + + typ = types.Typ[types.UntypedInt] + val = mant + return +} + +// ConstDecl = "const" ExportedName [ Type ] "=" Literal . +// Literal = bool_lit | int_lit | float_lit | complex_lit | rune_lit | string_lit . +// bool_lit = "true" | "false" . +// complex_lit = "(" float_lit "+" float_lit "i" ")" . +// rune_lit = "(" int_lit "+" int_lit ")" . +// string_lit = `"` { unicode_char } `"` . +// +func (p *parser) parseConstDecl() { + p.expectKeyword("const") + pkg, name := p.parseExportedName() + + var typ0 types.Type + if p.tok != '=' { + typ0 = p.parseType() + } + + p.expect('=') + var typ types.Type + var val exact.Value + switch p.tok { + case scanner.Ident: + // bool_lit + if p.lit != "true" && p.lit != "false" { + p.error("expected true or false") + } + typ = types.Typ[types.UntypedBool] + val = exact.MakeBool(p.lit == "true") + p.next() + + case '-', scanner.Int: + // int_lit + typ, val = p.parseNumber() + + case '(': + // complex_lit or rune_lit + p.next() + if p.tok == scanner.Char { + p.next() + p.expect('+') + typ = types.Typ[types.UntypedRune] + _, val = p.parseNumber() + p.expect(')') + break + } + _, re := p.parseNumber() + p.expect('+') + _, im := p.parseNumber() + p.expectKeyword("i") + p.expect(')') + typ = types.Typ[types.UntypedComplex] + val = exact.BinaryOp(re, token.ADD, exact.MakeImag(im)) + + case scanner.Char: + // rune_lit + typ = types.Typ[types.UntypedRune] + val = exact.MakeFromLiteral(p.lit, token.CHAR) + p.next() + + case scanner.String: + // string_lit + typ = types.Typ[types.UntypedString] + val = exact.MakeFromLiteral(p.lit, token.STRING) + p.next() + + default: + p.errorf("expected literal got %s", scanner.TokenString(p.tok)) + } + + if typ0 == nil { + typ0 = typ + } + + pkg.Scope().Insert(types.NewConst(token.NoPos, pkg, name, typ0, val)) +} + +// TypeDecl = "type" ExportedName Type . +// +func (p *parser) parseTypeDecl() { + p.expectKeyword("type") + pkg, name := p.parseExportedName() + obj := declTypeName(pkg, name) + + // The type object may have been imported before and thus already + // have a type associated with it. We still need to parse the type + // structure, but throw it away if the object already has a type. + // This ensures that all imports refer to the same type object for + // a given type declaration. + typ := p.parseType() + + if name := obj.Type().(*types.Named); name.Underlying() == nil { + name.SetUnderlying(typ) + } +} + +// VarDecl = "var" ExportedName Type . +// +func (p *parser) parseVarDecl() { + p.expectKeyword("var") + pkg, name := p.parseExportedName() + typ := p.parseType() + pkg.Scope().Insert(types.NewVar(token.NoPos, pkg, name, typ)) +} + +// Func = Signature [ Body ] . +// Body = "{" ... "}" . +// +func (p *parser) parseFunc(recv *types.Var) *types.Signature { + sig := p.parseSignature(recv) + if p.tok == '{' { + p.next() + for i := 1; i > 0; p.next() { + switch p.tok { + case '{': + i++ + case '}': + i-- + } + } + } + return sig +} + +// MethodDecl = "func" Receiver Name Func . +// Receiver = "(" ( identifier | "?" ) [ "*" ] ExportedName ")" . +// +func (p *parser) parseMethodDecl() { + // "func" already consumed + p.expect('(') + recv, _ := p.parseParameter() // receiver + p.expect(')') + + // determine receiver base type object + base := deref(recv.Type()).(*types.Named) + + // parse method name, signature, and possibly inlined body + _, name := p.parseName(true) + sig := p.parseFunc(recv) + + // methods always belong to the same package as the base type object + pkg := base.Obj().Pkg() + + // add method to type unless type was imported before + // and method exists already + // TODO(gri) This leads to a quadratic algorithm - ok for now because method counts are small. + base.AddMethod(types.NewFunc(token.NoPos, pkg, name, sig)) +} + +// FuncDecl = "func" ExportedName Func . +// +func (p *parser) parseFuncDecl() { + // "func" already consumed + pkg, name := p.parseExportedName() + typ := p.parseFunc(nil) + pkg.Scope().Insert(types.NewFunc(token.NoPos, pkg, name, typ)) +} + +// Decl = [ ImportDecl | ConstDecl | TypeDecl | VarDecl | FuncDecl | MethodDecl ] "\n" . +// +func (p *parser) parseDecl() { + if p.tok == scanner.Ident { + switch p.lit { + case "import": + p.parseImportDecl() + case "const": + p.parseConstDecl() + case "type": + p.parseTypeDecl() + case "var": + p.parseVarDecl() + case "func": + p.next() // look ahead + if p.tok == '(' { + p.parseMethodDecl() + } else { + p.parseFuncDecl() + } + } + } + p.expect('\n') +} + +// ---------------------------------------------------------------------------- +// Export + +// Export = "PackageClause { Decl } "$$" . +// PackageClause = "package" PackageName [ "safe" ] "\n" . +// +func (p *parser) parseExport() *types.Package { + p.expectKeyword("package") + name := p.parsePackageName() + if p.tok == scanner.Ident && p.lit == "safe" { + // package was compiled with -u option - ignore + p.next() + } + p.expect('\n') + + pkg := p.getPkg(p.id, name) + + for p.tok != '$' && p.tok != scanner.EOF { + p.parseDecl() + } + + if ch := p.scanner.Peek(); p.tok != '$' || ch != '$' { + // don't call next()/expect() since reading past the + // export data may cause scanner errors (e.g. NUL chars) + p.errorf("expected '$$', got %s %c", scanner.TokenString(p.tok), ch) + } + + if n := p.scanner.ErrorCount; n != 0 { + p.errorf("expected no scanner errors, got %d", n) + } + + // package was imported completely and without errors + pkg.MarkComplete() + + return pkg +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/gcimporter_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/gcimporter_test.go new file mode 100644 index 00000000..877489be --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/gcimporter_test.go @@ -0,0 +1,216 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package gcimporter + +import ( + "go/build" + "io/ioutil" + "os" + "os/exec" + "path/filepath" + "runtime" + "strings" + "testing" + "time" + + "code.google.com/p/go.tools/go/types" +) + +var gcPath string // Go compiler path + +func init() { + // determine compiler + var gc string + switch runtime.GOARCH { + case "386": + gc = "8g" + case "amd64": + gc = "6g" + case "arm": + gc = "5g" + default: + gcPath = "unknown-GOARCH-compiler" + return + } + gcPath = filepath.Join(build.ToolDir, gc) +} + +func compile(t *testing.T, dirname, filename string) string { + cmd := exec.Command(gcPath, filename) + cmd.Dir = dirname + out, err := cmd.CombinedOutput() + if err != nil { + t.Logf("%s", out) + t.Fatalf("%s %s failed: %s", gcPath, filename, err) + } + archCh, _ := build.ArchChar(runtime.GOARCH) + // filename should end with ".go" + return filepath.Join(dirname, filename[:len(filename)-2]+archCh) +} + +// Use the same global imports map for all tests. The effect is +// as if all tested packages were imported into a single package. +var imports = make(map[string]*types.Package) + +func testPath(t *testing.T, path string) bool { + t0 := time.Now() + _, err := Import(imports, path) + if err != nil { + t.Errorf("testPath(%s): %s", path, err) + return false + } + t.Logf("testPath(%s): %v", path, time.Since(t0)) + return true +} + +const maxTime = 30 * time.Second + +func testDir(t *testing.T, dir string, endTime time.Time) (nimports int) { + dirname := filepath.Join(runtime.GOROOT(), "pkg", runtime.GOOS+"_"+runtime.GOARCH, dir) + list, err := ioutil.ReadDir(dirname) + if err != nil { + t.Fatalf("testDir(%s): %s", dirname, err) + } + for _, f := range list { + if time.Now().After(endTime) { + t.Log("testing time used up") + return + } + switch { + case !f.IsDir(): + // try extensions + for _, ext := range pkgExts { + if strings.HasSuffix(f.Name(), ext) { + name := f.Name()[0 : len(f.Name())-len(ext)] // remove extension + if testPath(t, filepath.Join(dir, name)) { + nimports++ + } + } + } + case f.IsDir(): + nimports += testDir(t, filepath.Join(dir, f.Name()), endTime) + } + } + return +} + +func TestImport(t *testing.T) { + // This package does not handle gccgo export data. + if runtime.Compiler == "gccgo" { + return + } + + // On cross-compile builds, the path will not exist. + // Need to use GOHOSTOS, which is not available. + if _, err := os.Stat(gcPath); err != nil { + t.Skipf("skipping test: %v", err) + } + + if outFn := compile(t, "testdata", "exports.go"); outFn != "" { + defer os.Remove(outFn) + } + + nimports := 0 + if testPath(t, "./testdata/exports") { + nimports++ + } + nimports += testDir(t, "", time.Now().Add(maxTime)) // installed packages + t.Logf("tested %d imports", nimports) +} + +var importedObjectTests = []struct { + name string + want string +}{ + {"unsafe.Pointer", "type Pointer unsafe.Pointer"}, + {"math.Pi", "const Pi untyped float"}, + {"io.Reader", "type Reader interface{Read(p []byte) (n int, err error)}"}, + {"io.ReadWriter", "type ReadWriter interface{Read(p []byte) (n int, err error); Write(p []byte) (n int, err error)}"}, + {"math.Sin", "func Sin(x float64) float64"}, + // TODO(gri) add more tests +} + +func TestImportedTypes(t *testing.T) { + // This package does not handle gccgo export data. + if runtime.Compiler == "gccgo" { + return + } + for _, test := range importedObjectTests { + s := strings.Split(test.name, ".") + if len(s) != 2 { + t.Fatal("inconsistent test data") + } + importPath := s[0] + objName := s[1] + + pkg, err := Import(imports, importPath) + if err != nil { + t.Error(err) + continue + } + + obj := pkg.Scope().Lookup(objName) + if obj == nil { + t.Errorf("%s: object not found", test.name) + continue + } + + got := types.ObjectString(pkg, obj) + if got != test.want { + t.Errorf("%s: got %q; want %q", test.name, got, test.want) + } + } +} + +func TestIssue5815(t *testing.T) { + // This package does not handle gccgo export data. + if runtime.Compiler == "gccgo" { + return + } + + pkg, err := Import(make(map[string]*types.Package), "strings") + if err != nil { + t.Fatal(err) + } + + scope := pkg.Scope() + for _, name := range scope.Names() { + obj := scope.Lookup(name) + if obj.Pkg() == nil { + t.Errorf("no pkg for %s", obj) + } + if tname, _ := obj.(*types.TypeName); tname != nil { + named := tname.Type().(*types.Named) + for i := 0; i < named.NumMethods(); i++ { + m := named.Method(i) + if m.Pkg() == nil { + t.Errorf("no pkg for %s", m) + } + } + } + } +} + +// Smoke test to ensure that imported methods get the correct package. +func TestCorrectMethodPackage(t *testing.T) { + // This package does not handle gccgo export data. + if runtime.Compiler == "gccgo" { + return + } + + imports := make(map[string]*types.Package) + _, err := Import(imports, "net/http") + if err != nil { + t.Fatal(err) + } + + mutex := imports["sync"].Scope().Lookup("Mutex").(*types.TypeName).Type() + mset := types.NewMethodSet(types.NewPointer(mutex)) // methods of *sync.Mutex + sel := mset.Lookup(nil, "Lock") + lock := sel.Obj().(*types.Func) + if got, want := lock.Pkg().Path(), "sync"; got != want { + t.Errorf("got package path %q; want %q", got, want) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/testdata/exports.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/testdata/exports.go new file mode 100644 index 00000000..8ee28b09 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/gcimporter/testdata/exports.go @@ -0,0 +1,89 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file is used to generate an object file which +// serves as test file for gcimporter_test.go. + +package exports + +import ( + "go/ast" +) + +// Issue 3682: Correctly read dotted identifiers from export data. +const init1 = 0 + +func init() {} + +const ( + C0 int = 0 + C1 = 3.14159265 + C2 = 2.718281828i + C3 = -123.456e-789 + C4 = +123.456E+789 + C5 = 1234i + C6 = "foo\n" + C7 = `bar\n` +) + +type ( + T1 int + T2 [10]int + T3 []int + T4 *int + T5 chan int + T6a chan<- int + T6b chan (<-chan int) + T6c chan<- (chan int) + T7 <-chan *ast.File + T8 struct{} + T9 struct { + a int + b, c float32 + d []string `go:"tag"` + } + T10 struct { + T8 + T9 + _ *T10 + } + T11 map[int]string + T12 interface{} + T13 interface { + m1() + m2(int) float32 + } + T14 interface { + T12 + T13 + m3(x ...struct{}) []T9 + } + T15 func() + T16 func(int) + T17 func(x int) + T18 func() float32 + T19 func() (x float32) + T20 func(...interface{}) + T21 struct{ next *T21 } + T22 struct{ link *T23 } + T23 struct{ link *T22 } + T24 *T24 + T25 *T26 + T26 *T27 + T27 *T25 + T28 func(T28) T28 +) + +var ( + V0 int + V1 = -991.0 +) + +func F1() {} +func F2(x int) {} +func F3() int { return 0 } +func F4() float32 { return 0 } +func F5(a, b, c int, u, v, w struct{ x, y T1 }, more ...interface{}) (p, q, r chan<- T10) + +func (p *T1) M1() diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/export.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/export.go new file mode 100644 index 00000000..7156bb7c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/export.go @@ -0,0 +1,457 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package importer + +import ( + "bytes" + "encoding/binary" + "fmt" + "go/ast" + "strings" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// debugging support +const ( + debug = false // emit debugging data + trace = false // print emitted data +) + +// format returns a byte indicating the low-level encoding/decoding format +// (debug vs product). +func format() byte { + if debug { + return 'd' + } + return 'p' +} + +// ExportData serializes the interface (exported package objects) +// of package pkg and returns the corresponding data. The export +// format is described elsewhere (TODO). +func ExportData(pkg *types.Package) []byte { + p := exporter{ + data: append([]byte(magic), format()), + pkgIndex: make(map[*types.Package]int), + typIndex: make(map[types.Type]int), + } + + // populate typIndex with predeclared types + for _, t := range predeclared { + p.typIndex[t] = len(p.typIndex) + } + + if trace { + p.tracef("export %s\n", pkg.Name()) + defer p.tracef("\n") + } + + p.string(version) + + p.pkg(pkg) + + // collect exported objects from package scope + var list []types.Object + scope := pkg.Scope() + for _, name := range scope.Names() { + if exported(name) { + list = append(list, scope.Lookup(name)) + } + } + + // write objects + p.int(len(list)) + for _, obj := range list { + p.obj(obj) + } + + return p.data +} + +type exporter struct { + data []byte + pkgIndex map[*types.Package]int + typIndex map[types.Type]int + + // tracing support + indent string +} + +func (p *exporter) pkg(pkg *types.Package) { + if trace { + p.tracef("package { ") + defer p.tracef("} ") + } + + if pkg == nil { + panic("unexpected nil pkg") + } + + // if the package was seen before, write its index (>= 0) + if i, ok := p.pkgIndex[pkg]; ok { + p.int(i) + return + } + p.pkgIndex[pkg] = len(p.pkgIndex) + + // otherwise, write the package tag (< 0) and package data + p.int(packageTag) + p.string(pkg.Name()) + p.string(pkg.Path()) +} + +func (p *exporter) obj(obj types.Object) { + if trace { + p.tracef("object %s {\n", obj.Name()) + defer p.tracef("}\n") + } + + switch obj := obj.(type) { + case *types.Const: + p.int(constTag) + p.string(obj.Name()) + p.typ(obj.Type()) + p.value(obj.Val()) + case *types.TypeName: + p.int(typeTag) + // name is written by corresponding named type + p.typ(obj.Type().(*types.Named)) + case *types.Var: + p.int(varTag) + p.string(obj.Name()) + p.typ(obj.Type()) + case *types.Func: + p.int(funcTag) + p.string(obj.Name()) + p.typ(obj.Type()) + default: + panic(fmt.Sprintf("unexpected object type %T", obj)) + } +} + +func (p *exporter) value(x exact.Value) { + if trace { + p.tracef("value { ") + defer p.tracef("} ") + } + + switch kind := x.Kind(); kind { + case exact.Bool: + tag := falseTag + if exact.BoolVal(x) { + tag = trueTag + } + p.int(tag) + case exact.Int: + if i, ok := exact.Int64Val(x); ok { + p.int(int64Tag) + p.int64(i) + return + } + p.int(floatTag) + p.float(x) + case exact.Float: + p.int(fractionTag) + p.fraction(x) + case exact.Complex: + p.int(complexTag) + p.fraction(exact.Real(x)) + p.fraction(exact.Imag(x)) + case exact.String: + p.int(stringTag) + p.string(exact.StringVal(x)) + default: + panic(fmt.Sprintf("unexpected value kind %d", kind)) + } +} + +func (p *exporter) float(x exact.Value) { + sign := exact.Sign(x) + p.int(sign) + if sign == 0 { + return + } + + p.ufloat(x) +} + +func (p *exporter) fraction(x exact.Value) { + sign := exact.Sign(x) + p.int(sign) + if sign == 0 { + return + } + + p.ufloat(exact.Num(x)) + p.ufloat(exact.Denom(x)) +} + +// ufloat writes abs(x) in form of a binary exponent +// followed by its mantissa bytes; x must be != 0. +func (p *exporter) ufloat(x exact.Value) { + mant := exact.Bytes(x) + exp8 := -1 + for i, b := range mant { + if b != 0 { + exp8 = i + break + } + } + if exp8 < 0 { + panic(fmt.Sprintf("%s has no mantissa", x)) + } + p.int(exp8 * 8) + p.bytes(mant[exp8:]) +} + +func (p *exporter) typ(typ types.Type) { + if trace { + p.tracef("type {\n") + defer p.tracef("}\n") + } + + // if the type was seen before, write its index (>= 0) + if i, ok := p.typIndex[typ]; ok { + p.int(i) + return + } + p.typIndex[typ] = len(p.typIndex) + + // otherwise, write the type tag (< 0) and type data + switch t := typ.(type) { + case *types.Array: + p.int(arrayTag) + p.int64(t.Len()) + p.typ(t.Elem()) + + case *types.Slice: + p.int(sliceTag) + p.typ(t.Elem()) + + case *types.Struct: + p.int(structTag) + n := t.NumFields() + p.int(n) + for i := 0; i < n; i++ { + p.field(t.Field(i)) + p.string(t.Tag(i)) + } + + case *types.Pointer: + p.int(pointerTag) + p.typ(t.Elem()) + + case *types.Signature: + p.int(signatureTag) + p.signature(t) + + case *types.Interface: + p.int(interfaceTag) + + // write embedded interfaces + m := t.NumEmbeddeds() + p.int(m) + for i := 0; i < m; i++ { + p.typ(t.Embedded(i)) + } + + // write methods + n := t.NumExplicitMethods() + p.int(n) + for i := 0; i < n; i++ { + m := t.ExplicitMethod(i) + p.qualifiedName(m.Pkg(), m.Name()) + p.typ(m.Type()) + } + + case *types.Map: + p.int(mapTag) + p.typ(t.Key()) + p.typ(t.Elem()) + + case *types.Chan: + p.int(chanTag) + p.int(int(t.Dir())) + p.typ(t.Elem()) + + case *types.Named: + p.int(namedTag) + + // write type object + obj := t.Obj() + p.string(obj.Name()) + p.pkg(obj.Pkg()) + + // write underlying type + p.typ(t.Underlying()) + + // write associated methods + n := t.NumMethods() + p.int(n) + for i := 0; i < n; i++ { + m := t.Method(i) + p.string(m.Name()) + p.typ(m.Type()) + } + + default: + panic("unreachable") + } +} + +func (p *exporter) field(f *types.Var) { + // anonymous fields have "" name + name := "" + if !f.Anonymous() { + name = f.Name() + } + + // qualifiedName will always emit the field package for + // anonymous fields because "" is not an exported name. + p.qualifiedName(f.Pkg(), name) + p.typ(f.Type()) +} + +func (p *exporter) qualifiedName(pkg *types.Package, name string) { + p.string(name) + // exported names don't need package + if !exported(name) { + if pkg == nil { + panic(fmt.Sprintf("nil package for unexported qualified name %s", name)) + } + p.pkg(pkg) + } +} + +func (p *exporter) signature(sig *types.Signature) { + // TODO(gri) We only need to record the receiver type + // for interface methods if we flatten them + // out. If we track embedded types instead, + // the information is already present. + // We do need the receiver information (T vs *T) + // for methods associated with named types. + if recv := sig.Recv(); recv != nil { + // 1-element tuple + p.int(1) + p.param(recv) + } else { + // 0-element tuple + p.int(0) + } + p.tuple(sig.Params()) + p.tuple(sig.Results()) + if sig.Variadic() { + p.int(1) + } else { + p.int(0) + } +} + +func (p *exporter) param(v *types.Var) { + p.string(v.Name()) + p.typ(v.Type()) +} + +func (p *exporter) tuple(t *types.Tuple) { + n := t.Len() + p.int(n) + for i := 0; i < n; i++ { + p.param(t.At(i)) + } +} + +// ---------------------------------------------------------------------------- +// encoders + +func (p *exporter) string(s string) { + p.bytes([]byte(s)) // (could be inlined if extra allocation matters) +} + +func (p *exporter) int(x int) { + p.int64(int64(x)) +} + +func (p *exporter) int64(x int64) { + if debug { + p.marker('i') + } + + if trace { + p.tracef("%d ", x) + } + + p.rawInt64(x) +} + +func (p *exporter) bytes(b []byte) { + if debug { + p.marker('b') + } + + if trace { + p.tracef("%q ", b) + } + + p.rawInt64(int64(len(b))) + if len(b) > 0 { + p.data = append(p.data, b...) + } +} + +// marker emits a marker byte and position information which makes +// it easy for a reader to detect if it is "out of sync". Used for +// debug format only. +func (p *exporter) marker(m byte) { + if debug { + p.data = append(p.data, m) + p.rawInt64(int64(len(p.data))) + } +} + +// rawInt64 should only be used by low-level encoders +func (p *exporter) rawInt64(x int64) { + var tmp [binary.MaxVarintLen64]byte + n := binary.PutVarint(tmp[:], x) + p.data = append(p.data, tmp[:n]...) +} + +// utility functions + +func (p *exporter) tracef(format string, args ...interface{}) { + // rewrite format string to take care of indentation + const indent = ". " + if strings.IndexAny(format, "{}\n") >= 0 { + var buf bytes.Buffer + for i := 0; i < len(format); i++ { + // no need to deal with runes + ch := format[i] + switch ch { + case '{': + p.indent += indent + case '}': + p.indent = p.indent[:len(p.indent)-len(indent)] + if i+1 < len(format) && format[i+1] == '\n' { + buf.WriteByte('\n') + buf.WriteString(p.indent) + buf.WriteString("} ") + i++ + continue + } + } + buf.WriteByte(ch) + if ch == '\n' { + buf.WriteString(p.indent) + } + } + format = buf.String() + } + fmt.Printf(format, args...) +} + +func exported(name string) bool { + return ast.IsExported(name) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/import.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/import.go new file mode 100644 index 00000000..54207ab9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/import.go @@ -0,0 +1,450 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This implementation is loosely based on the algorithm described +// in: "On the linearization of graphs and writing symbol files", +// by R. Griesemer, Technical Report 156, ETH Zürich, 1991. + +// package importer implements an exporter and importer for Go export data. +package importer + +import ( + "encoding/binary" + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// ImportData imports a package from the serialized package data. +// If data is obviously malformed, an error is returned but in +// general it is not recommended to call ImportData on untrusted +// data. +func ImportData(imports map[string]*types.Package, data []byte) (*types.Package, error) { + // check magic string + var s string + if len(data) >= len(magic) { + s = string(data[:len(magic)]) + data = data[len(magic):] + } + if s != magic { + return nil, fmt.Errorf("incorrect magic string: got %q; want %q", s, magic) + } + + // check low-level encoding format + var m byte = 'm' // missing format + if len(data) > 0 { + m = data[0] + data = data[1:] + } + if m != format() { + return nil, fmt.Errorf("incorrect low-level encoding format: got %c; want %c", m, format()) + } + + p := importer{ + data: data, + imports: imports, + consumed: len(magic) + 1, // for debugging only + } + + // populate typList with predeclared types + for _, t := range predeclared { + p.typList = append(p.typList, t) + } + + if v := p.string(); v != version { + return nil, fmt.Errorf("unknown version: got %s; want %s", v, version) + } + + pkg := p.pkg() + if debug && p.pkgList[0] != pkg { + panic("imported packaged not found in pkgList[0]") + } + + // read objects + n := p.int() + for i := 0; i < n; i++ { + p.obj(pkg) + } + + if len(p.data) > 0 { + return nil, fmt.Errorf("not all input data consumed") + } + + // package was imported completely and without errors + pkg.MarkComplete() + + return pkg, nil +} + +type importer struct { + data []byte + imports map[string]*types.Package + pkgList []*types.Package + typList []types.Type + + // debugging support + consumed int +} + +func (p *importer) pkg() *types.Package { + // if the package was seen before, i is its index (>= 0) + i := p.int() + if i >= 0 { + return p.pkgList[i] + } + + // otherwise, i is the package tag (< 0) + if i != packageTag { + panic(fmt.Sprintf("unexpected package tag %d", i)) + } + + // read package data + name := p.string() + path := p.string() + + // if the package was imported before, use that one; otherwise create a new one + pkg := p.imports[path] + if pkg == nil { + pkg = types.NewPackage(path, name) + p.imports[path] = pkg + } + p.pkgList = append(p.pkgList, pkg) + + return pkg +} + +func (p *importer) obj(pkg *types.Package) { + var obj types.Object + switch tag := p.int(); tag { + case constTag: + obj = types.NewConst(token.NoPos, pkg, p.string(), p.typ(), p.value()) + case typeTag: + // type object is added to scope via respective named type + _ = p.typ().(*types.Named) + return + case varTag: + obj = types.NewVar(token.NoPos, pkg, p.string(), p.typ()) + case funcTag: + obj = types.NewFunc(token.NoPos, pkg, p.string(), p.typ().(*types.Signature)) + default: + panic(fmt.Sprintf("unexpected object tag %d", tag)) + } + + if alt := pkg.Scope().Insert(obj); alt != nil { + panic(fmt.Sprintf("%s already declared", alt.Name())) + } +} + +func (p *importer) value() exact.Value { + switch kind := exact.Kind(p.int()); kind { + case falseTag: + return exact.MakeBool(false) + case trueTag: + return exact.MakeBool(true) + case int64Tag: + return exact.MakeInt64(p.int64()) + case floatTag: + return p.float() + case fractionTag: + return p.fraction() + case complexTag: + re := p.fraction() + im := p.fraction() + return exact.BinaryOp(re, token.ADD, exact.MakeImag(im)) + case stringTag: + return exact.MakeString(p.string()) + default: + panic(fmt.Sprintf("unexpected value kind %d", kind)) + } +} + +func (p *importer) float() exact.Value { + sign := p.int() + if sign == 0 { + return exact.MakeInt64(0) + } + + x := p.ufloat() + if sign < 0 { + x = exact.UnaryOp(token.SUB, x, 0) + } + return x +} + +func (p *importer) fraction() exact.Value { + sign := p.int() + if sign == 0 { + return exact.MakeInt64(0) + } + + x := exact.BinaryOp(p.ufloat(), token.QUO, p.ufloat()) + if sign < 0 { + x = exact.UnaryOp(token.SUB, x, 0) + } + return x +} + +func (p *importer) ufloat() exact.Value { + exp := p.int() + x := exact.MakeFromBytes(p.bytes()) + switch { + case exp < 0: + d := exact.Shift(exact.MakeInt64(1), token.SHL, uint(-exp)) + x = exact.BinaryOp(x, token.QUO, d) + case exp > 0: + x = exact.Shift(x, token.SHL, uint(exp)) + } + return x +} + +func (p *importer) record(t types.Type) { + p.typList = append(p.typList, t) +} + +func (p *importer) typ() types.Type { + // if the type was seen before, i is its index (>= 0) + i := p.int() + if i >= 0 { + return p.typList[i] + } + + // otherwise, i is the type tag (< 0) + switch i { + case arrayTag: + t := new(types.Array) + p.record(t) + + n := p.int64() + *t = *types.NewArray(p.typ(), n) + return t + + case sliceTag: + t := new(types.Slice) + p.record(t) + + *t = *types.NewSlice(p.typ()) + return t + + case structTag: + t := new(types.Struct) + p.record(t) + + n := p.int() + fields := make([]*types.Var, n) + tags := make([]string, n) + for i := range fields { + fields[i] = p.field() + tags[i] = p.string() + } + *t = *types.NewStruct(fields, tags) + return t + + case pointerTag: + t := new(types.Pointer) + p.record(t) + + *t = *types.NewPointer(p.typ()) + return t + + case signatureTag: + t := new(types.Signature) + p.record(t) + + *t = *p.signature() + return t + + case interfaceTag: + t := new(types.Interface) + p.record(t) + + // read embedded interfaces + embeddeds := make([]*types.Named, p.int()) + for i := range embeddeds { + embeddeds[i] = p.typ().(*types.Named) + } + + // read methods + methods := make([]*types.Func, p.int()) + for i := range methods { + pkg, name := p.qualifiedName() + methods[i] = types.NewFunc(token.NoPos, pkg, name, p.typ().(*types.Signature)) + } + + *t = *types.NewInterface(methods, embeddeds) + return t + + case mapTag: + t := new(types.Map) + p.record(t) + + *t = *types.NewMap(p.typ(), p.typ()) + return t + + case chanTag: + t := new(types.Chan) + p.record(t) + + *t = *types.NewChan(types.ChanDir(p.int()), p.typ()) + return t + + case namedTag: + // read type object + name := p.string() + pkg := p.pkg() + scope := pkg.Scope() + obj := scope.Lookup(name) + + // if the object doesn't exist yet, create and insert it + if obj == nil { + obj = types.NewTypeName(token.NoPos, pkg, name, nil) + scope.Insert(obj) + } + + // associate new named type with obj if it doesn't exist yet + t0 := types.NewNamed(obj.(*types.TypeName), nil, nil) + + // but record the existing type, if any + t := obj.Type().(*types.Named) + p.record(t) + + // read underlying type + t0.SetUnderlying(p.typ()) + + // read associated methods + for i, n := 0, p.int(); i < n; i++ { + t0.AddMethod(types.NewFunc(token.NoPos, pkg, p.string(), p.typ().(*types.Signature))) + } + + return t + + default: + panic(fmt.Sprintf("unexpected type tag %d", i)) + } +} + +func deref(typ types.Type) types.Type { + if p, _ := typ.(*types.Pointer); p != nil { + return p.Elem() + } + return typ +} + +func (p *importer) field() *types.Var { + pkg, name := p.qualifiedName() + typ := p.typ() + + anonymous := false + if name == "" { + // anonymous field - typ must be T or *T and T must be a type name + switch typ := deref(typ).(type) { + case *types.Basic: // basic types are named types + pkg = nil + name = typ.Name() + case *types.Named: + obj := typ.Obj() + name = obj.Name() + // correct the field package for anonymous fields + if exported(name) { + pkg = p.pkgList[0] + } + default: + panic("anonymous field expected") + } + anonymous = true + } + + return types.NewField(token.NoPos, pkg, name, typ, anonymous) +} + +func (p *importer) qualifiedName() (*types.Package, string) { + name := p.string() + pkg := p.pkgList[0] // exported names assume current package + if !exported(name) { + pkg = p.pkg() + } + return pkg, name +} + +func (p *importer) signature() *types.Signature { + var recv *types.Var + if p.int() != 0 { + recv = p.param() + } + return types.NewSignature(nil, recv, p.tuple(), p.tuple(), p.int() != 0) +} + +func (p *importer) param() *types.Var { + return types.NewVar(token.NoPos, nil, p.string(), p.typ()) +} + +func (p *importer) tuple() *types.Tuple { + vars := make([]*types.Var, p.int()) + for i := range vars { + vars[i] = p.param() + } + return types.NewTuple(vars...) +} + +// ---------------------------------------------------------------------------- +// decoders + +func (p *importer) string() string { + return string(p.bytes()) +} + +func (p *importer) int() int { + return int(p.int64()) +} + +func (p *importer) int64() int64 { + if debug { + p.marker('i') + } + + return p.rawInt64() +} + +// Note: bytes() returns the respective byte slice w/o copy. +func (p *importer) bytes() []byte { + if debug { + p.marker('b') + } + + var b []byte + if n := int(p.rawInt64()); n > 0 { + b = p.data[:n] + p.data = p.data[n:] + if debug { + p.consumed += n + } + } + return b +} + +func (p *importer) marker(want byte) { + if debug { + if got := p.data[0]; got != want { + panic(fmt.Sprintf("incorrect marker: got %c; want %c (pos = %d)", got, want, p.consumed)) + } + p.data = p.data[1:] + p.consumed++ + + pos := p.consumed + if n := int(p.rawInt64()); n != pos { + panic(fmt.Sprintf("incorrect position: got %d; want %d", n, pos)) + } + } +} + +// rawInt64 should only be used by low-level decoders +func (p *importer) rawInt64() int64 { + i, n := binary.Varint(p.data) + p.data = p.data[n:] + if debug { + p.consumed += n + } + return i +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/import_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/import_test.go new file mode 100644 index 00000000..cd2af5d2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/import_test.go @@ -0,0 +1,348 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package importer + +import ( + "bufio" + "bytes" + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/token" + "os" + "path/filepath" + "runtime" + "sort" + "testing" + "time" + + "code.google.com/p/go.tools/go/gcimporter" + "code.google.com/p/go.tools/go/types" +) + +var tests = []string{ + `package p`, + + // consts + `package p; const X = true`, + `package p; const X, y, Z = true, false, 0 != 0`, + `package p; const ( A float32 = 1<= 750*time.Millisecond { + return + } + + pkg, err := pkgForPath(lib) + switch err := err.(type) { + case nil: + // ok + case *build.NoGoError: + // no Go files - ignore + continue + default: + t.Errorf("typecheck failed: %s", err) + continue + } + + size, gcsize := testExportImport(t, pkg, lib) + if testing.Verbose() { + fmt.Printf("%s\t%d\t%d\t%d%%\n", lib, size, gcsize, int(float64(size)*100/float64(gcsize))) + } + totSize += size + totGcSize += gcsize + } + + if testing.Verbose() { + fmt.Printf("\n%d\t%d\t%d%%\n", totSize, totGcSize, int(float64(totSize)*100/float64(totGcSize))) + } + + types.GcCompatibilityMode = false +} + +func testExportImport(t *testing.T, pkg0 *types.Package, path string) (size, gcsize int) { + data := ExportData(pkg0) + size = len(data) + + imports := make(map[string]*types.Package) + pkg1, err := ImportData(imports, data) + if err != nil { + t.Errorf("package %s: import failed: %s", pkg0.Name(), err) + return + } + + s0 := pkgString(pkg0) + s1 := pkgString(pkg1) + if s1 != s0 { + t.Errorf("package %s: \nimport got:\n%s\nwant:\n%s\n", pkg0.Name(), s1, s0) + } + + // If we have a standard library, compare also against the gcimported package. + if path == "" { + return // not std library + } + + gcdata, err := gcExportData(path) + gcsize = len(gcdata) + + imports = make(map[string]*types.Package) + pkg2, err := gcImportData(imports, gcdata, path) + if err != nil { + t.Errorf("package %s: gcimport failed: %s", pkg0.Name(), err) + return + } + + s2 := pkgString(pkg2) + if s2 != s0 { + t.Errorf("package %s: \ngcimport got:\n%s\nwant:\n%s\n", pkg0.Name(), s2, s0) + } + + return +} + +func pkgForSource(src string) (*types.Package, error) { + // parse file + fset := token.NewFileSet() + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + return nil, err + } + + // typecheck file + return types.Check("import-test", fset, []*ast.File{f}) +} + +func pkgForPath(path string) (*types.Package, error) { + // collect filenames + ctxt := build.Default + pkginfo, err := ctxt.Import(path, "", 0) + if err != nil { + return nil, err + } + filenames := append(pkginfo.GoFiles, pkginfo.CgoFiles...) + + // parse files + fset := token.NewFileSet() + files := make([]*ast.File, len(filenames)) + for i, filename := range filenames { + var err error + files[i], err = parser.ParseFile(fset, filepath.Join(pkginfo.Dir, filename), nil, 0) + if err != nil { + return nil, err + } + } + + // typecheck files + // (we only care about exports and thus can ignore function bodies) + conf := types.Config{IgnoreFuncBodies: true, FakeImportC: true} + return conf.Check(path, fset, files, nil) +} + +// pkgString returns a string representation of a package's exported interface. +func pkgString(pkg *types.Package) string { + var buf bytes.Buffer + + fmt.Fprintf(&buf, "package %s\n", pkg.Name()) + + scope := pkg.Scope() + for _, name := range scope.Names() { + if exported(name) { + obj := scope.Lookup(name) + buf.WriteString(obj.String()) + + switch obj := obj.(type) { + case *types.Const: + // For now only print constant values if they are not float + // or complex. This permits comparing go/types results with + // gc-generated gcimported package interfaces. + info := obj.Type().Underlying().(*types.Basic).Info() + if info&types.IsFloat == 0 && info&types.IsComplex == 0 { + fmt.Fprintf(&buf, " = %s", obj.Val()) + } + + case *types.TypeName: + // Print associated methods. + // Basic types (e.g., unsafe.Pointer) have *types.Basic + // type rather than *types.Named; so we need to check. + if typ, _ := obj.Type().(*types.Named); typ != nil { + if n := typ.NumMethods(); n > 0 { + // Sort methods by name so that we get the + // same order independent of whether the + // methods got imported or coming directly + // for the source. + // TODO(gri) This should probably be done + // in go/types. + list := make([]*types.Func, n) + for i := 0; i < n; i++ { + list[i] = typ.Method(i) + } + sort.Sort(byName(list)) + + buf.WriteString("\nmethods (\n") + for _, m := range list { + fmt.Fprintf(&buf, "\t%s\n", m) + } + buf.WriteString(")") + } + } + } + buf.WriteByte('\n') + } + } + + return buf.String() +} + +var stdLibRoot = filepath.Join(runtime.GOROOT(), "src", "pkg") + string(filepath.Separator) + +// The following std libraries are excluded from the stdLibs list. +var excluded = map[string]bool{ + "builtin": true, // contains type declarations with cycles + "unsafe": true, // contains fake declarations +} + +// stdLibs returns the list if standard library package paths. +func stdLibs() (list []string, err error) { + err = filepath.Walk(stdLibRoot, func(path string, info os.FileInfo, err error) error { + if err == nil && info.IsDir() { + if info.Name() == "testdata" { + return filepath.SkipDir + } + pkgPath := path[len(stdLibRoot):] // remove stdLibRoot + if len(pkgPath) > 0 && !excluded[pkgPath] { + list = append(list, pkgPath) + } + } + return nil + }) + return +} + +type byName []*types.Func + +func (a byName) Len() int { return len(a) } +func (a byName) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a byName) Less(i, j int) bool { return a[i].Name() < a[j].Name() } + +// gcExportData returns the gc-generated export data for the given path. +// It is based on a trimmed-down version of gcimporter.Import which does +// not do the actual import, does not handle package unsafe, and assumes +// that path is a correct standard library package path (no canonicalization, +// or handling of local import paths). +func gcExportData(path string) ([]byte, error) { + filename, id := gcimporter.FindPkg(path, "") + if filename == "" { + return nil, fmt.Errorf("can't find import: %s", path) + } + if id != path { + panic("path should be canonicalized") + } + + f, err := os.Open(filename) + if err != nil { + return nil, err + } + defer f.Close() + + buf := bufio.NewReader(f) + if err = gcimporter.FindExportData(buf); err != nil { + return nil, err + } + + var data []byte + for { + line, err := buf.ReadBytes('\n') + if err != nil { + return nil, err + } + data = append(data, line...) + // export data ends in "$$\n" + if len(line) == 3 && line[0] == '$' && line[1] == '$' { + return data, nil + } + } +} + +func gcImportData(imports map[string]*types.Package, data []byte, path string) (*types.Package, error) { + filename := fmt.Sprintf("", path) // so we have a decent error message if necessary + return gcimporter.ImportData(imports, filename, path, bufio.NewReader(bytes.NewBuffer(data))) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/predefined.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/predefined.go new file mode 100644 index 00000000..3965b0a7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/importer/predefined.go @@ -0,0 +1,83 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package importer + +import "code.google.com/p/go.tools/go/types" + +const ( + magic = "\n$$ exports $$\n" + version = "v0" +) + +// Tags. Must be < 0. +const ( + // Packages + packageTag = -(iota + 1) + + // Objects + constTag + typeTag + varTag + funcTag + + // Types + arrayTag + sliceTag + structTag + pointerTag + signatureTag + interfaceTag + mapTag + chanTag + namedTag + + // Values + falseTag + trueTag + int64Tag + floatTag + fractionTag + complexTag + stringTag +) + +var predeclared = []types.Type{ + // basic types + types.Typ[types.Bool], + types.Typ[types.Int], + types.Typ[types.Int8], + types.Typ[types.Int16], + types.Typ[types.Int32], + types.Typ[types.Int64], + types.Typ[types.Uint], + types.Typ[types.Uint8], + types.Typ[types.Uint16], + types.Typ[types.Uint32], + types.Typ[types.Uint64], + types.Typ[types.Uintptr], + types.Typ[types.Float32], + types.Typ[types.Float64], + types.Typ[types.Complex64], + types.Typ[types.Complex128], + types.Typ[types.String], + + // untyped types + types.Typ[types.UntypedBool], + types.Typ[types.UntypedInt], + types.Typ[types.UntypedRune], + types.Typ[types.UntypedFloat], + types.Typ[types.UntypedComplex], + types.Typ[types.UntypedString], + types.Typ[types.UntypedNil], + + // package unsafe + types.Typ[types.UnsafePointer], + + // aliases + types.UniverseByte, + types.UniverseRune, + + types.Universe.Lookup("error").Type(), +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/importer_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/importer_test.go new file mode 100644 index 00000000..f984f93b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/importer_test.go @@ -0,0 +1,196 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package loader_test + +import ( + "bytes" + "fmt" + "go/build" + "io" + "os" + "sort" + "testing" + "time" + + "code.google.com/p/go.tools/go/loader" +) + +func loadFromArgs(args []string) (prog *loader.Program, rest []string, err error) { + conf := &loader.Config{} + rest, err = conf.FromArgs(args, true) + if err == nil { + prog, err = conf.Load() + } + return +} + +func TestLoadFromArgs(t *testing.T) { + // Failed load: bad first import path causes parsePackageFiles to fail. + args := []string{"nosuchpkg", "errors"} + if _, _, err := loadFromArgs(args); err == nil { + t.Errorf("loadFromArgs(%q) succeeded, want failure", args) + } else { + // cannot find package: ok. + } + + // Failed load: bad second import path proceeds to doImport0, which fails. + args = []string{"errors", "nosuchpkg"} + if _, _, err := loadFromArgs(args); err == nil { + t.Errorf("loadFromArgs(%q) succeeded, want failure", args) + } else { + // cannot find package: ok + } + + // Successful load. + args = []string{"fmt", "errors", "--", "surplus"} + prog, rest, err := loadFromArgs(args) + if err != nil { + t.Fatalf("loadFromArgs(%q) failed: %s", args, err) + } + if got, want := fmt.Sprint(rest), "[surplus]"; got != want { + t.Errorf("loadFromArgs(%q) rest: got %s, want %s", args, got, want) + } + // Check list of Created packages. + var pkgnames []string + for _, info := range prog.Created { + pkgnames = append(pkgnames, info.Pkg.Path()) + } + // All import paths may contribute tests. + if got, want := fmt.Sprint(pkgnames), "[fmt_test errors_test]"; got != want { + t.Errorf("Created: got %s, want %s", got, want) + } + + // Check set of Imported packages. + pkgnames = nil + for path := range prog.Imported { + pkgnames = append(pkgnames, path) + } + sort.Strings(pkgnames) + // All import paths may contribute tests. + if got, want := fmt.Sprint(pkgnames), "[errors fmt]"; got != want { + t.Errorf("Loaded: got %s, want %s", got, want) + } + + // Check set of transitive packages. + // There are >30 and the set may grow over time, so only check a few. + all := map[string]struct{}{} + for _, info := range prog.AllPackages { + all[info.Pkg.Path()] = struct{}{} + } + want := []string{"strings", "time", "runtime", "testing", "unicode"} + for _, w := range want { + if _, ok := all[w]; !ok { + t.Errorf("AllPackages: want element %s, got set %v", w, all) + } + } +} + +func TestLoadFromArgsSource(t *testing.T) { + // mixture of *.go/non-go. + args := []string{"testdata/a.go", "fmt"} + prog, _, err := loadFromArgs(args) + if err == nil { + t.Errorf("loadFromArgs(%q) succeeded, want failure", args) + } else { + // "named files must be .go files: fmt": ok + } + + // successful load + args = []string{"testdata/a.go", "testdata/b.go"} + prog, _, err = loadFromArgs(args) + if err != nil { + t.Errorf("loadFromArgs(%q) failed: %s", args, err) + return + } + if len(prog.Created) != 1 || prog.Created[0].Pkg.Path() != "P" { + t.Errorf("loadFromArgs(%q): got %v, want [P]", prog.Created) + } +} + +type nopCloser struct{ *bytes.Buffer } + +func (nopCloser) Close() error { return nil } + +type fakeFileInfo struct{} + +func (fakeFileInfo) Name() string { return "x.go" } +func (fakeFileInfo) Sys() interface{} { return nil } +func (fakeFileInfo) ModTime() time.Time { return time.Time{} } +func (fakeFileInfo) IsDir() bool { return false } +func (fakeFileInfo) Size() int64 { return 0 } +func (fakeFileInfo) Mode() os.FileMode { return 0644 } + +var justXgo = [1]os.FileInfo{fakeFileInfo{}} // ["x.go"] + +func TestTransitivelyErrorFreeFlag(t *testing.T) { + conf := loader.Config{ + AllowTypeErrors: true, + SourceImports: true, + } + + // Create an minimal custom build.Context + // that fakes the following packages: + // + // a --> b --> c! c has a TypeError + // \ d and e are transitively error free. + // e --> d + // + // Each package [a-e] consists of one file, x.go. + pkgs := map[string]string{ + "a": `package a; import (_ "b"; _ "e")`, + "b": `package b; import _ "c"`, + "c": `package c; func f() { _ = int(false) }`, // type error within function body + "d": `package d;`, + "e": `package e; import _ "d"`, + } + ctxt := build.Default // copy + ctxt.GOROOT = "/go" + ctxt.GOPATH = "" + ctxt.IsDir = func(path string) bool { return true } + ctxt.ReadDir = func(dir string) ([]os.FileInfo, error) { return justXgo[:], nil } + ctxt.OpenFile = func(path string) (io.ReadCloser, error) { + path = path[len("/go/src/pkg/"):] + return nopCloser{bytes.NewBufferString(pkgs[path[0:1]])}, nil + } + conf.Build = &ctxt + + conf.Import("a") + + prog, err := conf.Load() + if err != nil { + t.Errorf("Load failed: %s", err) + } + if prog == nil { + t.Fatalf("Load returned nil *Program") + } + + for pkg, info := range prog.AllPackages { + var wantErr, wantTEF bool + switch pkg.Path() { + case "a", "b": + case "c": + wantErr = true + case "d", "e": + wantTEF = true + default: + t.Errorf("unexpected package: %q", pkg.Path()) + continue + } + + if (info.TypeError != nil) != wantErr { + if wantErr { + t.Errorf("Package %q.TypeError = nil, want error", pkg.Path()) + } else { + t.Errorf("Package %q has unexpected TypeError: %s", + pkg.Path(), info.TypeError) + } + } + + if info.TransitivelyErrorFree != wantTEF { + t.Errorf("Package %q.TransitivelyErrorFree=%t, want %t", + info.TransitivelyErrorFree, wantTEF) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/loader.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/loader.go new file mode 100644 index 00000000..04b54cb3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/loader.go @@ -0,0 +1,779 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package loader loads, parses and type-checks packages of Go code +// plus their transitive closure, and retains both the ASTs and the +// derived facts. +// +// THIS INTERFACE IS EXPERIMENTAL AND IS LIKELY TO CHANGE. +// +// The package defines two primary types: Config, which specifies a +// set of initial packages to load and various other options; and +// Program, which is the result of successfully loading the packages +// specified by a configuration. +// +// The configuration can be set directly, but *Config provides various +// convenience methods to simplify the common cases, each of which can +// be called any number of times. Finally, these are followed by a +// call to Load() to actually load and type-check the program. +// +// var conf loader.Config +// +// // Use the command-line arguments to specify +// // a set of initial packages to load from source. +// // See FromArgsUsage for help. +// rest, err := conf.FromArgs(os.Args[1:], wantTests) +// +// // Parse the specified files and create an ad-hoc package with path "foo". +// // All files must have the same 'package' declaration. +// err := conf.CreateFromFilenames("foo", "foo.go", "bar.go") +// +// // Create an ad-hoc package with path "foo" from +// // the specified already-parsed files. +// // All ASTs must have the same 'package' declaration. +// err := conf.CreateFromFiles("foo", parsedFiles) +// +// // Add "runtime" to the set of packages to be loaded. +// conf.Import("runtime") +// +// // Adds "fmt" and "fmt_test" to the set of packages +// // to be loaded. "fmt" will include *_test.go files. +// err := conf.ImportWithTests("fmt") +// +// // Finally, load all the packages specified by the configuration. +// prog, err := conf.Load() +// +// +// CONCEPTS AND TERMINOLOGY +// +// An AD-HOC package is one specified as a set of source files on the +// command line. In the simplest case, it may consist of a single file +// such as src/pkg/net/http/triv.go. +// +// EXTERNAL TEST packages are those comprised of a set of *_test.go +// files all with the same 'package foo_test' declaration, all in the +// same directory. (go/build.Package calls these files XTestFiles.) +// +// An IMPORTABLE package is one that can be referred to by some import +// spec. The Path() of each importable package is unique within a +// Program. +// +// Ad-hoc packages and external test packages are NON-IMPORTABLE. The +// Path() of an ad-hoc package is inferred from the package +// declarations of its files and is therefore not a unique package key. +// For example, Config.CreatePkgs may specify two initial ad-hoc +// packages both called "main". +// +// An AUGMENTED package is an importable package P plus all the +// *_test.go files with same 'package foo' declaration as P. +// (go/build.Package calls these files TestFiles.) +// +// The INITIAL packages are those specified in the configuration. A +// DEPENDENCY is a package loaded to satisfy an import in an initial +// package or another dependency. +// +package loader + +// 'go test', in-package test files, and import cycles +// --------------------------------------------------- +// +// An external test package may depend upon members of the augmented +// package that are not in the unaugmented package, such as functions +// that expose internals. (See bufio/export_test.go for an example.) +// So, the loader must ensure that for each external test package +// it loads, it also augments the corresponding non-test package. +// +// The import graph over n unaugmented packages must be acyclic; the +// import graph over n-1 unaugmented packages plus one augmented +// package must also be acyclic. ('go test' relies on this.) But the +// import graph over n augmented packages may contain cycles. +// +// First, all the (unaugmented) non-test packages and their +// dependencies are imported in the usual way; the loader reports an +// error if it detects an import cycle. +// +// Then, each package P for which testing is desired is augmented by +// the list P' of its in-package test files, by calling +// (*types.Checker).Files. This arrangement ensures that P' may +// reference definitions within P, but P may not reference definitions +// within P'. Furthermore, P' may import any other package, including +// ones that depend upon P, without an import cycle error. +// +// Consider two packages A and B, both of which have lists of +// in-package test files we'll call A' and B', and which have the +// following import graph edges: +// B imports A +// B' imports A +// A' imports B +// This last edge would be expected to create an error were it not +// for the special type-checking discipline above. +// Cycles of size greater than two are possible. For example: +// compress/bzip2/bzip2_test.go (package bzip2) imports "io/ioutil" +// io/ioutil/tempfile_test.go (package ioutil) imports "regexp" +// regexp/exec_test.go (package regexp) imports "compress/bzip2" + +// TODO(adonovan): +// - (*Config).ParseFile is very handy, but feels like feature creep. +// (*Config).CreateFromFiles has a nasty precondition. +// - s/path/importPath/g to avoid ambiguity with other meanings of +// "path": a file name, a colon-separated directory list. +// - cache the calls to build.Import so we don't do it three times per +// test package. +// - Thorough overhaul of package documentation. + +import ( + "errors" + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/token" + "os" + "strings" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/go/gcimporter" + "code.google.com/p/go.tools/go/types" +) + +// Config specifies the configuration for a program to load. +// The zero value for Config is a ready-to-use default configuration. +type Config struct { + // Fset is the file set for the parser to use when loading the + // program. If nil, it will be lazily initialized by any + // method of Config. + Fset *token.FileSet + + // ParserMode specifies the mode to be used by the parser when + // loading source packages. + ParserMode parser.Mode + + // TypeChecker contains options relating to the type checker. + // + // The supplied IgnoreFuncBodies is not used; the effective + // value comes from the TypeCheckFuncBodies func below. + // + // TypeChecker.Packages is lazily initialized during Load. + TypeChecker types.Config + + // TypeCheckFuncBodies is a predicate over package import + // paths. A package for which the predicate is false will + // have its package-level declarations type checked, but not + // its function bodies; this can be used to quickly load + // dependencies from source. If nil, all func bodies are type + // checked. + TypeCheckFuncBodies func(string) bool + + // SourceImports determines whether to satisfy dependencies by + // loading Go source code. + // + // If true, the entire program---the initial packages and + // their transitive closure of dependencies---will be loaded, + // parsed and type-checked. This is required for + // whole-program analyses such as pointer analysis. + // + // If false, the TypeChecker.Import mechanism will be used + // instead. Since that typically supplies only the types of + // package-level declarations and values of constants, but no + // code, it will not yield a whole program. It is intended + // for analyses that perform intraprocedural analysis of a + // single package, e.g. traditional compilation. + // + // The initial packages (CreatePkgs and ImportPkgs) are always + // loaded from Go source, regardless of this flag's setting. + SourceImports bool + + // If Build is non-nil, it is used to locate source packages. + // Otherwise &build.Default is used. + Build *build.Context + + // If DisplayPath is non-nil, it is used to transform each + // file name obtained from Build.Import(). This can be used + // to prevent a virtualized build.Config's file names from + // leaking into the user interface. + DisplayPath func(path string) string + + // If AllowTypeErrors is true, Load will return a Program even + // if some of the its packages contained type errors; such + // errors are accessible via PackageInfo.TypeError. + // If false, Load will fail if any package had a type error. + AllowTypeErrors bool + + // CreatePkgs specifies a list of non-importable initial + // packages to create. Each element specifies a list of + // parsed files to be type-checked into a new package, and a + // path for that package. If the path is "", the package's + // name will be used instead. The path needn't be globally + // unique. + // + // The resulting packages will appear in the corresponding + // elements of the Program.Created slice. + CreatePkgs []CreatePkg + + // ImportPkgs specifies a set of initial packages to load from + // source. The map keys are package import paths, used to + // locate the package relative to $GOROOT. The corresponding + // values indicate whether to augment the package by *_test.go + // files in a second pass. + ImportPkgs map[string]bool +} + +type CreatePkg struct { + Path string + Files []*ast.File +} + +// A Program is a Go program loaded from source or binary +// as specified by a Config. +type Program struct { + Fset *token.FileSet // the file set for this program + + // Created[i] contains the initial package whose ASTs were + // supplied by Config.CreatePkgs[i]. + Created []*PackageInfo + + // Imported contains the initially imported packages, + // as specified by Config.ImportPkgs. + Imported map[string]*PackageInfo + + // ImportMap is the canonical mapping of import paths to + // packages used by the type-checker (Config.TypeChecker.Packages). + // It contains all Imported initial packages, but not Created + // ones, and all imported dependencies. + ImportMap map[string]*types.Package + + // AllPackages contains the PackageInfo of every package + // encountered by Load: all initial packages and all + // dependencies, including incomplete ones. + AllPackages map[*types.Package]*PackageInfo +} + +func (conf *Config) fset() *token.FileSet { + if conf.Fset == nil { + conf.Fset = token.NewFileSet() + } + return conf.Fset +} + +// ParseFile is a convenience function that invokes the parser using +// the Config's FileSet, which is initialized if nil. +// +func (conf *Config) ParseFile(filename string, src interface{}) (*ast.File, error) { + return parser.ParseFile(conf.fset(), filename, src, conf.ParserMode) +} + +// FromArgsUsage is a partial usage message that applications calling +// FromArgs may wish to include in their -help output. +const FromArgsUsage = ` + is a list of arguments denoting a set of initial packages. +It may take one of two forms: + +1. A list of *.go source files. + + All of the specified files are loaded, parsed and type-checked + as a single package. All the files must belong to the same directory. + +2. A list of import paths, each denoting a package. + + The package's directory is found relative to the $GOROOT and + $GOPATH using similar logic to 'go build', and the *.go files in + that directory are loaded, parsed and type-checked as a single + package. + + In addition, all *_test.go files in the directory are then loaded + and parsed. Those files whose package declaration equals that of + the non-*_test.go files are included in the primary package. Test + files whose package declaration ends with "_test" are type-checked + as another package, the 'external' test package, so that a single + import path may denote two packages. (Whether this behaviour is + enabled is tool-specific, and may depend on additional flags.) + + Due to current limitations in the type-checker, only the first + import path of the command line will contribute any tests. + +A '--' argument terminates the list of packages. +` + +// FromArgs interprets args as a set of initial packages to load from +// source and updates the configuration. It returns the list of +// unconsumed arguments. +// +// It is intended for use in command-line interfaces that require a +// set of initial packages to be specified; see FromArgsUsage message +// for details. +// +func (conf *Config) FromArgs(args []string, xtest bool) (rest []string, err error) { + for i, arg := range args { + if arg == "--" { + rest = args[i+1:] + args = args[:i] + break // consume "--" and return the remaining args + } + } + + if len(args) > 0 && strings.HasSuffix(args[0], ".go") { + // Assume args is a list of a *.go files + // denoting a single ad-hoc package. + for _, arg := range args { + if !strings.HasSuffix(arg, ".go") { + return nil, fmt.Errorf("named files must be .go files: %s", arg) + } + } + err = conf.CreateFromFilenames("", args...) + } else { + // Assume args are directories each denoting a + // package and (perhaps) an external test, iff xtest. + for _, arg := range args { + if xtest { + err = conf.ImportWithTests(arg) + if err != nil { + break + } + } else { + conf.Import(arg) + } + } + } + + return +} + +// CreateFromFilenames is a convenience function that parses the +// specified *.go files and adds a package entry for them to +// conf.CreatePkgs. +// +func (conf *Config) CreateFromFilenames(path string, filenames ...string) error { + files, err := parseFiles(conf.fset(), conf.build(), nil, ".", filenames, conf.ParserMode) + if err != nil { + return err + } + + conf.CreateFromFiles(path, files...) + return nil +} + +// CreateFromFiles is a convenience function that adds a CreatePkgs +// entry to create package of the specified path and parsed files. +// +// Precondition: conf.Fset is non-nil and was the fileset used to parse +// the files. (e.g. the files came from conf.ParseFile().) +// +func (conf *Config) CreateFromFiles(path string, files ...*ast.File) { + if conf.Fset == nil { + panic("nil Fset") + } + conf.CreatePkgs = append(conf.CreatePkgs, CreatePkg{path, files}) +} + +// ImportWithTests is a convenience function that adds path to +// ImportPkgs, the set of initial source packages located relative to +// $GOPATH. The package will be augmented by any *_test.go files in +// its directory that contain a "package x" (not "package x_test") +// declaration. +// +// In addition, if any *_test.go files contain a "package x_test" +// declaration, an additional package comprising just those files will +// be added to CreatePkgs. +// +func (conf *Config) ImportWithTests(path string) error { + if path == "unsafe" { + return nil // ignore; not a real package + } + conf.Import(path) + + // Load the external test package. + xtestFiles, err := conf.parsePackageFiles(path, 'x') + if err != nil { + return err + } + if len(xtestFiles) > 0 { + conf.CreateFromFiles(path+"_test", xtestFiles...) + } + + // Mark the non-xtest package for augmentation with + // in-package *_test.go files when we import it below. + conf.ImportPkgs[path] = true + return nil +} + +// Import is a convenience function that adds path to ImportPkgs, the +// set of initial packages that will be imported from source. +// +func (conf *Config) Import(path string) { + if path == "unsafe" { + return // ignore; not a real package + } + if conf.ImportPkgs == nil { + conf.ImportPkgs = make(map[string]bool) + } + // Subtle: adds value 'false' unless value is already true. + conf.ImportPkgs[path] = conf.ImportPkgs[path] // unaugmented source package +} + +// PathEnclosingInterval returns the PackageInfo and ast.Node that +// contain source interval [start, end), and all the node's ancestors +// up to the AST root. It searches all ast.Files of all packages in prog. +// exact is defined as for astutil.PathEnclosingInterval. +// +// The zero value is returned if not found. +// +func (prog *Program) PathEnclosingInterval(start, end token.Pos) (pkg *PackageInfo, path []ast.Node, exact bool) { + for _, info := range prog.AllPackages { + for _, f := range info.Files { + if !tokenFileContainsPos(prog.Fset.File(f.Pos()), start) { + continue + } + if path, exact := astutil.PathEnclosingInterval(f, start, end); path != nil { + return info, path, exact + } + } + } + return nil, nil, false +} + +// InitialPackages returns a new slice containing the set of initial +// packages (Created + Imported) in unspecified order. +// +func (prog *Program) InitialPackages() []*PackageInfo { + infos := make([]*PackageInfo, 0, len(prog.Created)+len(prog.Imported)) + infos = append(infos, prog.Created...) + for _, info := range prog.Imported { + infos = append(infos, info) + } + return infos +} + +// ---------- Implementation ---------- + +// importer holds the working state of the algorithm. +type importer struct { + conf *Config // the client configuration + prog *Program // resulting program + imported map[string]*importInfo // all imported packages (incl. failures) by import path +} + +// importInfo tracks the success or failure of a single import. +type importInfo struct { + info *PackageInfo // results of typechecking (including type errors) + err error // reason for failure to make a package +} + +// Load creates the initial packages specified by conf.{Create,Import}Pkgs, +// loading their dependencies packages as needed. +// +// On success, Load returns a Program containing a PackageInfo for +// each package. On failure, it returns an error. +// +// If conf.AllowTypeErrors is set, a type error does not cause Load to +// fail, but is recorded in the PackageInfo.TypeError field. +// +// It is an error if no packages were loaded. +// +func (conf *Config) Load() (*Program, error) { + // Initialize by setting the conf's copy, so all copies of + // TypeChecker agree on the identity of the map. + if conf.TypeChecker.Packages == nil { + conf.TypeChecker.Packages = make(map[string]*types.Package) + } + + prog := &Program{ + Fset: conf.fset(), + Imported: make(map[string]*PackageInfo), + ImportMap: conf.TypeChecker.Packages, + AllPackages: make(map[*types.Package]*PackageInfo), + } + + imp := importer{ + conf: conf, + prog: prog, + imported: make(map[string]*importInfo), + } + + for path := range conf.ImportPkgs { + info, err := imp.importPackage(path) + if err != nil { + // TODO(adonovan): don't abort Load just + // because of a parse error in one package. + return nil, err // e.g. parse error (but not type error) + } + prog.Imported[path] = info + } + + // Now augment those packages that need it. + for path, augment := range conf.ImportPkgs { + if augment { + ii := imp.imported[path] + + // Find and create the actual package. + files, err := imp.conf.parsePackageFiles(path, 't') + // Prefer the earlier error, if any. + if err != nil && ii.err == nil { + ii.err = err // e.g. parse error. + } + typeCheckFiles(ii.info, files...) + } + } + + for _, create := range conf.CreatePkgs { + path := create.Path + if create.Path == "" && len(create.Files) > 0 { + path = create.Files[0].Name.Name + } + info := imp.newPackageInfo(path) + typeCheckFiles(info, create.Files...) + prog.Created = append(prog.Created, info) + } + + if len(prog.Imported)+len(prog.Created) == 0 { + return nil, errors.New("no initial packages were specified") + } + + // Create infos for indirectly imported packages. + // e.g. incomplete packages without syntax, loaded from export data. + for _, obj := range prog.ImportMap { + info := prog.AllPackages[obj] + if info == nil { + prog.AllPackages[obj] = &PackageInfo{Pkg: obj, Importable: true} + } else { + info.checker = nil // finished + } + } + + if !conf.AllowTypeErrors { + // Report errors in indirectly imported packages. + var errpkgs []string + for _, info := range prog.AllPackages { + if info.TypeError != nil { + errpkgs = append(errpkgs, info.Pkg.Path()) + } + } + if errpkgs != nil { + return nil, fmt.Errorf("couldn't load packages due to type errors: %s", + strings.Join(errpkgs, ", ")) + } + } + + markErrorFreePackages(prog.AllPackages) + + return prog, nil +} + +// markErrorFreePackages sets the TransitivelyErrorFree flag on all +// applicable packages. +func markErrorFreePackages(allPackages map[*types.Package]*PackageInfo) { + // Build the transpose of the import graph. + importedBy := make(map[*types.Package]map[*types.Package]bool) + for P := range allPackages { + for _, Q := range P.Imports() { + clients, ok := importedBy[Q] + if !ok { + clients = make(map[*types.Package]bool) + importedBy[Q] = clients + } + clients[P] = true + } + } + + // Find all packages reachable from some error package. + reachable := make(map[*types.Package]bool) + var visit func(*types.Package) + visit = func(p *types.Package) { + if !reachable[p] { + reachable[p] = true + for q := range importedBy[p] { + visit(q) + } + } + } + for _, info := range allPackages { + if info.TypeError != nil { + visit(info.Pkg) + } + } + + // Mark the others as "transitively error-free". + for _, info := range allPackages { + if !reachable[info.Pkg] { + info.TransitivelyErrorFree = true + } + } +} + +// build returns the effective build context. +func (conf *Config) build() *build.Context { + if conf.Build != nil { + return conf.Build + } + return &build.Default +} + +// parsePackageFiles enumerates the files belonging to package path, +// then loads, parses and returns them. +// +// 'which' indicates which files to include: +// 'g': include non-test *.go source files (GoFiles) +// 't': include in-package *_test.go source files (TestGoFiles) +// 'x': include external *_test.go source files. (XTestGoFiles) +// +func (conf *Config) parsePackageFiles(path string, which rune) ([]*ast.File, error) { + // Set the "!cgo" go/build tag, preferring (dummy) Go to + // native C implementations of net.cgoLookupHost et al. + ctxt := *conf.build() // copy + ctxt.CgoEnabled = false + + // Import(srcDir="") disables local imports, e.g. import "./foo". + bp, err := ctxt.Import(path, "", 0) + if _, ok := err.(*build.NoGoError); ok { + return nil, nil // empty directory + } + if err != nil { + return nil, err // import failed + } + + var filenames []string + switch which { + case 'g': + filenames = bp.GoFiles + case 't': + filenames = bp.TestGoFiles + case 'x': + filenames = bp.XTestGoFiles + default: + panic(which) + } + return parseFiles(conf.fset(), &ctxt, conf.DisplayPath, bp.Dir, filenames, conf.ParserMode) +} + +// doImport imports the package denoted by path. +// It implements the types.Importer signature. +// +// imports is the type-checker's package canonicalization map. +// +// It returns an error if a package could not be created +// (e.g. go/build or parse error), but type errors are reported via +// the types.Config.Error callback (the first of which is also saved +// in the package's PackageInfo). +// +// Idempotent. +// +func (imp *importer) doImport(imports map[string]*types.Package, path string) (*types.Package, error) { + // Package unsafe is handled specially, and has no PackageInfo. + if path == "unsafe" { + return types.Unsafe, nil + } + + info, err := imp.importPackage(path) + if err != nil { + return nil, err + } + + // Update the type checker's package map on success. + imports[path] = info.Pkg + + return info.Pkg, nil +} + +// importPackage imports the package with the given import path, plus +// its dependencies. +// +// Precondition: path != "unsafe". +// +func (imp *importer) importPackage(path string) (*PackageInfo, error) { + ii, ok := imp.imported[path] + if !ok { + // In preorder, initialize the map entry to a cycle + // error in case importPackage(path) is called again + // before the import is completed. + ii = &importInfo{err: fmt.Errorf("import cycle in package %s", path)} + imp.imported[path] = ii + + // Find and create the actual package. + if _, ok := imp.conf.ImportPkgs[path]; ok || imp.conf.SourceImports { + ii.info, ii.err = imp.importFromSource(path) + } else { + ii.info, ii.err = imp.importFromBinary(path) + } + if ii.info != nil { + ii.info.Importable = true + } + } + + return ii.info, ii.err +} + +// importFromBinary implements package loading from the client-supplied +// external source, e.g. object files from the gc compiler. +// +func (imp *importer) importFromBinary(path string) (*PackageInfo, error) { + // Determine the caller's effective Import function. + importfn := imp.conf.TypeChecker.Import + if importfn == nil { + importfn = gcimporter.Import + } + pkg, err := importfn(imp.conf.TypeChecker.Packages, path) + if err != nil { + return nil, err + } + info := &PackageInfo{Pkg: pkg} + imp.prog.AllPackages[pkg] = info + return info, nil +} + +// importFromSource implements package loading by parsing Go source files +// located by go/build. +// +func (imp *importer) importFromSource(path string) (*PackageInfo, error) { + files, err := imp.conf.parsePackageFiles(path, 'g') + if err != nil { + return nil, err + } + // Type-check the package. + info := imp.newPackageInfo(path) + typeCheckFiles(info, files...) + return info, nil +} + +// typeCheckFiles adds the specified files to info and type-checks them. +// The order of files determines the package initialization order. +// It may be called multiple times. +// +// Any error is stored in the info.TypeError field. +func typeCheckFiles(info *PackageInfo, files ...*ast.File) { + info.Files = append(info.Files, files...) + if err := info.checker.Files(files); err != nil { + // Prefer the earlier error, if any. + if info.TypeError == nil { + info.TypeError = err + } + } +} + +func (imp *importer) newPackageInfo(path string) *PackageInfo { + // Use a copy of the types.Config so we can vary IgnoreFuncBodies. + tc := imp.conf.TypeChecker + tc.IgnoreFuncBodies = false + if f := imp.conf.TypeCheckFuncBodies; f != nil { + tc.IgnoreFuncBodies = !f(path) + } + if tc.Error == nil { + tc.Error = func(e error) { fmt.Fprintln(os.Stderr, e) } + } + tc.Import = imp.doImport // doImport wraps the user's importfn, effectively + + pkg := types.NewPackage(path, "") + info := &PackageInfo{ + Pkg: pkg, + Info: types.Info{ + Types: make(map[ast.Expr]types.TypeAndValue), + Defs: make(map[*ast.Ident]types.Object), + Uses: make(map[*ast.Ident]types.Object), + Implicits: make(map[ast.Node]types.Object), + Scopes: make(map[ast.Node]*types.Scope), + Selections: make(map[*ast.SelectorExpr]*types.Selection), + }, + } + info.checker = types.NewChecker(&tc, imp.conf.fset(), pkg, &info.Info) + imp.prog.AllPackages[pkg] = info + return info +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/pkginfo.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/pkginfo.go new file mode 100644 index 00000000..fbd8ada6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/pkginfo.go @@ -0,0 +1,122 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package loader + +import ( + "fmt" + "go/ast" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// PackageInfo holds the ASTs and facts derived by the type-checker +// for a single package. +// +// Not mutated once exposed via the API. +// +type PackageInfo struct { + Pkg *types.Package + Importable bool // true if 'import "Pkg.Path()"' would resolve to this + TransitivelyErrorFree bool // true if Pkg and all its dependencies are free of errors + Files []*ast.File // abstract syntax for the package's files + TypeError error // non-nil if the package had type errors + types.Info // type-checker deductions. + + checker interface { + Files(files []*ast.File) error + } // transient type-checker state +} + +func (info *PackageInfo) String() string { + return fmt.Sprintf("PackageInfo(%s)", info.Pkg.Path()) +} + +// TypeOf returns the type of expression e. +// Precondition: e belongs to the package's ASTs. +// +func (info *PackageInfo) TypeOf(e ast.Expr) types.Type { + if t, ok := info.Types[e]; ok { + return t.Type + } + // Defining ast.Idents (id := expr) get only Ident callbacks + // but not Expr callbacks. + if id, ok := e.(*ast.Ident); ok { + return info.ObjectOf(id).Type() + } + panic("no type for expression") +} + +// ValueOf returns the value of expression e if it is a constant, nil +// otherwise. +// Precondition: e belongs to the package's ASTs. +// +func (info *PackageInfo) ValueOf(e ast.Expr) exact.Value { + return info.Types[e].Value +} + +// ObjectOf returns the typechecker object denoted by the specified id. +// +// If id is an anonymous struct field, the field (*types.Var) is +// returned, not the type (*types.TypeName). +// +// Precondition: id belongs to the package's ASTs. +// +func (info *PackageInfo) ObjectOf(id *ast.Ident) types.Object { + obj, ok := info.Defs[id] + if ok { + return obj + } + return info.Uses[id] +} + +// IsType returns true iff expression e denotes a type. +// Precondition: e belongs to the package's ASTs. +// +// TODO(gri): move this into go/types. +// +func (info *PackageInfo) IsType(e ast.Expr) bool { + switch e := e.(type) { + case *ast.SelectorExpr: // pkg.Type + if sel := info.Selections[e]; sel.Kind() == types.PackageObj { + _, isType := sel.Obj().(*types.TypeName) + return isType + } + case *ast.StarExpr: // *T + return info.IsType(e.X) + case *ast.Ident: + _, isType := info.ObjectOf(e).(*types.TypeName) + return isType + case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType: + return true + case *ast.ParenExpr: + return info.IsType(e.X) + } + return false +} + +// TypeCaseVar returns the implicit variable created by a single-type +// case clause in a type switch, or nil if not found. +// +func (info *PackageInfo) TypeCaseVar(cc *ast.CaseClause) *types.Var { + if v := info.Implicits[cc]; v != nil { + return v.(*types.Var) + } + return nil +} + +// ImportSpecPkg returns the PkgName for a given ImportSpec, possibly +// an implicit one for a dot-import or an import-without-rename. +// It returns nil if not found. +// +func (info *PackageInfo) ImportSpecPkg(spec *ast.ImportSpec) *types.PkgName { + if spec.Name != nil { + return info.ObjectOf(spec.Name).(*types.PkgName) + } + if p := info.Implicits[spec]; p != nil { + return p.(*types.PkgName) + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/source_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/source_test.go new file mode 100644 index 00000000..1b38fce4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/source_test.go @@ -0,0 +1,126 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package loader_test + +// This file defines tests of source utilities. + +import ( + "go/ast" + "go/parser" + "go/token" + "strings" + "testing" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" +) + +// findInterval parses input and returns the [start, end) positions of +// the first occurrence of substr in input. f==nil indicates failure; +// an error has already been reported in that case. +// +func findInterval(t *testing.T, fset *token.FileSet, input, substr string) (f *ast.File, start, end token.Pos) { + f, err := parser.ParseFile(fset, "", input, 0) + if err != nil { + t.Errorf("parse error: %s", err) + return + } + + i := strings.Index(input, substr) + if i < 0 { + t.Errorf("%q is not a substring of input", substr) + f = nil + return + } + + filePos := fset.File(f.Package) + return f, filePos.Pos(i), filePos.Pos(i + len(substr)) +} + +func TestEnclosingFunction(t *testing.T) { + tests := []struct { + input string // the input file + substr string // first occurrence of this string denotes interval + fn string // name of expected containing function + }{ + // We use distinctive numbers as syntactic landmarks. + + // Ordinary function: + {`package main + func f() { println(1003) }`, + "100", "main.f"}, + // Methods: + {`package main + type T int + func (t T) f() { println(200) }`, + "200", "(main.T).f"}, + // Function literal: + {`package main + func f() { println(func() { print(300) }) }`, + "300", "f$1"}, + // Doubly nested + {`package main + func f() { println(func() { print(func() { print(350) })})}`, + "350", "f$1$1"}, + // Implicit init for package-level var initializer. + {"package main; var a = 400", "400", "main.init"}, + // No code for constants: + {"package main; const a = 500", "500", "(none)"}, + // Explicit init() + {"package main; func init() { println(600) }", "600", "main.init$1"}, + // Multiple explicit init functions: + {`package main + func init() { println("foo") } + func init() { println(800) }`, + "800", "main.init$2"}, + // init() containing FuncLit. + {`package main + func init() { println(func(){print(900)}) }`, + "900", "init$1$1"}, + } + for _, test := range tests { + conf := loader.Config{Fset: token.NewFileSet()} + f, start, end := findInterval(t, conf.Fset, test.input, test.substr) + if f == nil { + continue + } + path, exact := astutil.PathEnclosingInterval(f, start, end) + if !exact { + t.Errorf("EnclosingFunction(%q) not exact", test.substr) + continue + } + + conf.CreateFromFiles("main", f) + + iprog, err := conf.Load() + if err != nil { + t.Error(err) + continue + } + prog := ssa.Create(iprog, 0) + pkg := prog.Package(iprog.Created[0].Pkg) + pkg.Build() + + name := "(none)" + fn := ssa.EnclosingFunction(pkg, path) + if fn != nil { + name = fn.String() + } + + if name != test.fn { + t.Errorf("EnclosingFunction(%q in %q) got %s, want %s", + test.substr, test.input, name, test.fn) + continue + } + + // While we're here: test HasEnclosingFunction. + if has := ssa.HasEnclosingFunction(pkg, path); has != (fn != nil) { + t.Errorf("HasEnclosingFunction(%q in %q) got %v, want %v", + test.substr, test.input, has, fn != nil) + continue + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/stdlib_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/stdlib_test.go new file mode 100644 index 00000000..e8d93637 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/stdlib_test.go @@ -0,0 +1,135 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package loader_test + +// This file enumerates all packages beneath $GOROOT, loads them, plus +// their external tests if any, runs the type checker on them, and +// prints some summary information. +// +// Run test with GOMAXPROCS=8. + +import ( + "fmt" + "go/ast" + "go/token" + "os" + "path/filepath" + "runtime" + "strings" + "testing" + "time" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/types" +) + +func allPackages() []string { + var pkgs []string + root := filepath.Join(runtime.GOROOT(), "src/pkg") + string(os.PathSeparator) + filepath.Walk(root, func(path string, info os.FileInfo, err error) error { + // Prune the search if we encounter any of these names: + switch filepath.Base(path) { + case "testdata", ".hg": + return filepath.SkipDir + } + if info.IsDir() { + pkg := filepath.ToSlash(strings.TrimPrefix(path, root)) + switch pkg { + case "builtin", "pkg": + return filepath.SkipDir // skip these subtrees + case "": + return nil // ignore root of tree + } + pkgs = append(pkgs, pkg) + } + + return nil + }) + return pkgs +} + +func TestStdlib(t *testing.T) { + runtime.GC() + t0 := time.Now() + var memstats runtime.MemStats + runtime.ReadMemStats(&memstats) + alloc := memstats.Alloc + + // Load, parse and type-check the program. + var conf loader.Config + for _, path := range allPackages() { + if err := conf.ImportWithTests(path); err != nil { + t.Error(err) + } + } + + prog, err := conf.Load() + if err != nil { + t.Fatalf("Load failed: %v", err) + } + + t1 := time.Now() + runtime.GC() + runtime.ReadMemStats(&memstats) + + numPkgs := len(prog.AllPackages) + if want := 205; numPkgs < want { + t.Errorf("Loaded only %d packages, want at least %d", numPkgs, want) + } + + // Dump package members. + if false { + for pkg := range prog.AllPackages { + fmt.Printf("Package %s:\n", pkg.Path()) + scope := pkg.Scope() + for _, name := range scope.Names() { + if ast.IsExported(name) { + fmt.Printf("\t%s\n", types.ObjectString(pkg, scope.Lookup(name))) + } + } + fmt.Println() + } + } + + // Check that Test functions for io/ioutil, regexp and + // compress/bzip2 are all simultaneously present. + // (The apparent cycle formed when augmenting all three of + // these packages by their tests was the original motivation + // for reporting b/7114.) + // + // compress/bzip2.TestBitReader in bzip2_test.go imports io/ioutil + // io/ioutil.TestTempFile in tempfile_test.go imports regexp + // regexp.TestRE2Search in exec_test.go imports compress/bzip2 + for _, test := range []struct{ pkg, fn string }{ + {"io/ioutil", "TestTempFile"}, + {"regexp", "TestRE2Search"}, + {"compress/bzip2", "TestBitReader"}, + } { + info := prog.Imported[test.pkg] + if info == nil { + t.Errorf("failed to load package %q", test.pkg) + continue + } + obj, _ := info.Pkg.Scope().Lookup(test.fn).(*types.Func) + if obj == nil { + t.Errorf("package %q has no func %q", test.pkg, test.fn) + continue + } + } + + // Dump some statistics. + + // determine line count + var lineCount int + prog.Fset.Iterate(func(f *token.File) bool { + lineCount += f.LineCount() + return true + }) + + t.Log("GOMAXPROCS: ", runtime.GOMAXPROCS(0)) + t.Log("#Source lines: ", lineCount) + t.Log("Load/parse/typecheck: ", t1.Sub(t0)) + t.Log("#MB: ", int64(memstats.Alloc-alloc)/1000000) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/testdata/a.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/testdata/a.go new file mode 100644 index 00000000..bae39550 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/testdata/a.go @@ -0,0 +1 @@ +package P diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/testdata/b.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/testdata/b.go new file mode 100644 index 00000000..bae39550 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/testdata/b.go @@ -0,0 +1 @@ +package P diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/util.go new file mode 100644 index 00000000..a7057171 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/loader/util.go @@ -0,0 +1,79 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package loader + +import ( + "go/ast" + "go/build" + "go/parser" + "go/token" + "io" + "os" + "path/filepath" + "sync" +) + +// parseFiles parses the Go source files files within directory dir +// and returns their ASTs, or the first parse error if any. +// +// I/O is done via ctxt, which may specify a virtual file system. +// displayPath is used to transform the filenames attached to the ASTs. +// +func parseFiles(fset *token.FileSet, ctxt *build.Context, displayPath func(string) string, dir string, files []string, mode parser.Mode) ([]*ast.File, error) { + if displayPath == nil { + displayPath = func(path string) string { return path } + } + isAbs := filepath.IsAbs + if ctxt.IsAbsPath != nil { + isAbs = ctxt.IsAbsPath + } + joinPath := filepath.Join + if ctxt.JoinPath != nil { + joinPath = ctxt.JoinPath + } + var wg sync.WaitGroup + n := len(files) + parsed := make([]*ast.File, n) + errors := make([]error, n) + for i, file := range files { + if !isAbs(file) { + file = joinPath(dir, file) + } + wg.Add(1) + go func(i int, file string) { + defer wg.Done() + var rd io.ReadCloser + var err error + if ctxt.OpenFile != nil { + rd, err = ctxt.OpenFile(file) + } else { + rd, err = os.Open(file) + } + defer rd.Close() + if err != nil { + errors[i] = err + return + } + parsed[i], errors[i] = parser.ParseFile(fset, displayPath(file), rd, mode) + }(i, file) + } + wg.Wait() + + for _, err := range errors { + if err != nil { + return nil, err + } + } + return parsed, nil +} + +// ---------- Internal helpers ---------- + +// TODO(adonovan): make this a method: func (*token.File) Contains(token.Pos) +func tokenFileContainsPos(f *token.File, pos token.Pos) bool { + p := int(pos) + base := f.Base() + return base <= p && p < base+f.Size() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/TODO b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/TODO new file mode 100644 index 00000000..eb0ddd73 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/TODO @@ -0,0 +1,38 @@ +-*- text -*- + +Pointer analysis to-do list +=========================== + +CONSTRAINT GENERATION: +- support reflection +- implement native intrinsics. These vary by platform. +- unsafe.Pointer conversions. Three options: + 1) unsoundly (but type-safely) treat p=unsafe.Pointer(x) conversions as + allocations, losing aliases. This is what's currently implemented. + 2) unsoundly (but type-safely) treat p=unsafe.Pointer(x) and T(p) + conversions as interface boxing and unboxing operations. + This may preserve some aliasing relations at little cost. + 3) soundly track physical field offsets. (Summarise dannyb's email here.) + A downside is that we can't keep the identity field of struct + allocations that identifies the object. + +OPTIMISATIONS +- pre-solver: PE and LE via HVN/HRU. +- solver: HCD, LCD. +- use sparse bitvectors for ptsets +- use sparse bitvectors for graph edges +- experiment with different worklist algorithms: + priority queue (solver visit-time order) + red-black tree (node id order) + double-ended queue (insertion order) + fast doubly-linked list (See Zhanh et al PLDI'13) + (insertion order with fast membership test) + dannyb recommends sparse bitmap. + +API: +- Some optimisations (e.g. LE, PE) may change the API. + Think about them sooner rather than later. + +MISC: +- Test on all platforms. + Currently we assume these go/build tags: linux, amd64, !cgo. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/analysis.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/analysis.go new file mode 100644 index 00000000..699462ba --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/analysis.go @@ -0,0 +1,342 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +// This file defines the main datatypes and Analyze function of the pointer analysis. + +import ( + "fmt" + "go/token" + "io" + "os" + "reflect" + "runtime/debug" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +// object.flags bitmask values. +const ( + otTagged = 1 << iota // type-tagged object + otIndirect // type-tagged object with indirect payload + otFunction // function object +) + +// An object represents a contiguous block of memory to which some +// (generalized) pointer may point. +// +// (Note: most variables called 'obj' are not *objects but nodeids +// such that a.nodes[obj].obj != nil.) +// +type object struct { + // flags is a bitset of the node type (ot*) flags defined above. + flags uint32 + + // Number of following nodes belonging to the same "object" + // allocation. Zero for all other nodes. + size uint32 + + // data describes this object; it has one of these types: + // + // ssa.Value for an object allocated by an SSA operation. + // types.Type for an rtype instance object or *rtype-tagged object. + // string for an instrinsic object, e.g. the array behind os.Args. + // nil for an object allocated by an instrinsic. + // (cgn provides the identity of the intrinsic.) + data interface{} + + // The call-graph node (=context) in which this object was allocated. + // May be nil for global objects: Global, Const, some Functions. + cgn *cgnode +} + +// nodeid denotes a node. +// It is an index within analysis.nodes. +// We use small integers, not *node pointers, for many reasons: +// - they are smaller on 64-bit systems. +// - sets of them can be represented compactly in bitvectors or BDDs. +// - order matters; a field offset can be computed by simple addition. +type nodeid uint32 + +// A node is an equivalence class of memory locations. +// Nodes may be pointers, pointed-to locations, neither, or both. +// +// Nodes that are pointed-to locations ("labels") have an enclosing +// object (see analysis.enclosingObject). +// +type node struct { + // If non-nil, this node is the start of an object + // (addressable memory location). + // The following obj.size words implicitly belong to the object; + // they locate their object by scanning back. + obj *object + + // The type of the field denoted by this node. Non-aggregate, + // unless this is an tagged.T node (i.e. the thing + // pointed to by an interface) in which case typ is that type. + typ types.Type + + // subelement indicates which directly embedded subelement of + // an object of aggregate type (struct, tuple, array) this is. + subelement *fieldInfo // e.g. ".a.b[*].c" + + // Points-to sets. + pts nodeset // points-to set of this node + prevPts nodeset // pts(n) in previous iteration (for difference propagation) + + // Graph edges + copyTo nodeset // simple copy constraint edges + + // Complex constraints attached to this node (x). + // - *loadConstraint y=*x + // - *offsetAddrConstraint y=&x.f or y=&x[0] + // - *storeConstraint *x=z + // - *typeFilterConstraint y=x.(I) + // - *untagConstraint y=x.(C) + // - *invokeConstraint y=x.f(params...) + complex constraintset +} + +// An analysis instance holds the state of a single pointer analysis problem. +type analysis struct { + config *Config // the client's control/observer interface + prog *ssa.Program // the program being analyzed + log io.Writer // log stream; nil to disable + panicNode nodeid // sink for panic, source for recover + nodes []*node // indexed by nodeid + flattenMemo map[types.Type][]*fieldInfo // memoization of flatten() + trackTypes map[types.Type]bool // memoization of shouldTrack() + constraints []constraint // set of constraints + cgnodes []*cgnode // all cgnodes + genq []*cgnode // queue of functions to generate constraints for + intrinsics map[*ssa.Function]intrinsic // non-nil values are summaries for intrinsic fns + globalval map[ssa.Value]nodeid // node for each global ssa.Value + globalobj map[ssa.Value]nodeid // maps v to sole member of pts(v), if singleton + localval map[ssa.Value]nodeid // node for each local ssa.Value + localobj map[ssa.Value]nodeid // maps v to sole member of pts(v), if singleton + work worklist // solver's worklist + result *Result // results of the analysis + track track // pointerlike types whose aliasing we track + + // Reflection & intrinsics: + hasher typeutil.Hasher // cache of type hashes + reflectValueObj types.Object // type symbol for reflect.Value (if present) + reflectValueCall *ssa.Function // (reflect.Value).Call + reflectRtypeObj types.Object // *types.TypeName for reflect.rtype (if present) + reflectRtypePtr *types.Pointer // *reflect.rtype + reflectType *types.Named // reflect.Type + rtypes typeutil.Map // nodeid of canonical *rtype-tagged object for type T + reflectZeros typeutil.Map // nodeid of canonical T-tagged object for zero value + runtimeSetFinalizer *ssa.Function // runtime.SetFinalizer +} + +// enclosingObj returns the object (addressible memory object) that encloses node id. +// Panic ensues if that node does not belong to any object. +func (a *analysis) enclosingObj(id nodeid) *object { + // Find previous node with obj != nil. + for i := id; i >= 0; i-- { + n := a.nodes[i] + if obj := n.obj; obj != nil { + if i+nodeid(obj.size) <= id { + break // out of bounds + } + return obj + } + } + panic("node has no enclosing object") +} + +// labelFor returns the Label for node id. +// Panic ensues if that node is not addressable. +func (a *analysis) labelFor(id nodeid) *Label { + return &Label{ + obj: a.enclosingObj(id), + subelement: a.nodes[id].subelement, + } +} + +func (a *analysis) warnf(pos token.Pos, format string, args ...interface{}) { + msg := fmt.Sprintf(format, args...) + if a.log != nil { + fmt.Fprintf(a.log, "%s: warning: %s\n", a.prog.Fset.Position(pos), msg) + } + a.result.Warnings = append(a.result.Warnings, Warning{pos, msg}) +} + +// computeTrackBits sets a.track to the necessary 'track' bits for the pointer queries. +func (a *analysis) computeTrackBits() { + var queryTypes []types.Type + for v := range a.config.Queries { + queryTypes = append(queryTypes, v.Type()) + } + for v := range a.config.IndirectQueries { + queryTypes = append(queryTypes, mustDeref(v.Type())) + } + for _, t := range queryTypes { + switch t.Underlying().(type) { + case *types.Chan: + a.track |= trackChan + case *types.Map: + a.track |= trackMap + case *types.Pointer: + a.track |= trackPtr + case *types.Slice: + a.track |= trackSlice + case *types.Interface: + a.track = trackAll + return + } + if rVObj := a.reflectValueObj; rVObj != nil && types.Identical(t, rVObj.Type()) { + a.track = trackAll + return + } + } +} + +// Analyze runs the pointer analysis with the scope and options +// specified by config, and returns the (synthetic) root of the callgraph. +// +// Pointer analysis of a transitively closed well-typed program should +// always succeed. An error can occur only due to an internal bug. +// +func Analyze(config *Config) (result *Result, err error) { + defer func() { + if p := recover(); p != nil { + err = fmt.Errorf("internal error in pointer analysis: %v (please report this bug)", p) + fmt.Fprintln(os.Stderr, "Internal panic in pointer analysis:") + debug.PrintStack() + } + }() + + a := &analysis{ + config: config, + log: config.Log, + prog: config.prog(), + globalval: make(map[ssa.Value]nodeid), + globalobj: make(map[ssa.Value]nodeid), + flattenMemo: make(map[types.Type][]*fieldInfo), + trackTypes: make(map[types.Type]bool), + hasher: typeutil.MakeHasher(), + intrinsics: make(map[*ssa.Function]intrinsic), + work: makeMapWorklist(), + result: &Result{ + Queries: make(map[ssa.Value]Pointer), + IndirectQueries: make(map[ssa.Value]Pointer), + }, + } + + if false { + a.log = os.Stderr // for debugging crashes; extremely verbose + } + + if a.log != nil { + fmt.Fprintln(a.log, "======== NEW ANALYSIS ========") + } + + // Pointer analysis requires a complete program for soundness. + // Check to prevent accidental misconfiguration. + for _, pkg := range a.prog.AllPackages() { + // (This only checks that the package scope is complete, + // not that func bodies exist, but it's a good signal.) + if !pkg.Object.Complete() { + return nil, fmt.Errorf(`pointer analysis requires a complete program yet package %q was incomplete (set loader.Config.SourceImports during loading)`, pkg.Object.Path()) + } + } + + if reflect := a.prog.ImportedPackage("reflect"); reflect != nil { + rV := reflect.Object.Scope().Lookup("Value") + a.reflectValueObj = rV + a.reflectValueCall = a.prog.LookupMethod(rV.Type(), nil, "Call") + a.reflectType = reflect.Object.Scope().Lookup("Type").Type().(*types.Named) + a.reflectRtypeObj = reflect.Object.Scope().Lookup("rtype") + a.reflectRtypePtr = types.NewPointer(a.reflectRtypeObj.Type()) + + // Override flattening of reflect.Value, treating it like a basic type. + tReflectValue := a.reflectValueObj.Type() + a.flattenMemo[tReflectValue] = []*fieldInfo{{typ: tReflectValue}} + + // Override shouldTrack of reflect.Value and *reflect.rtype. + // Always track pointers of these types. + a.trackTypes[tReflectValue] = true + a.trackTypes[a.reflectRtypePtr] = true + + a.rtypes.SetHasher(a.hasher) + a.reflectZeros.SetHasher(a.hasher) + } + if runtime := a.prog.ImportedPackage("runtime"); runtime != nil { + a.runtimeSetFinalizer = runtime.Func("SetFinalizer") + } + a.computeTrackBits() + + a.generate() + + if a.log != nil { + // Show size of constraint system. + counts := make(map[reflect.Type]int) + for _, c := range a.constraints { + counts[reflect.TypeOf(c)]++ + } + fmt.Fprintf(a.log, "# constraints:\t%d\n", len(a.constraints)) + for t, n := range counts { + fmt.Fprintf(a.log, "\t%s:\t%d\n", t, n) + } + fmt.Fprintf(a.log, "# nodes:\t%d\n", len(a.nodes)) + } + + a.optimize() + + a.solve() + + // Create callgraph.Nodes in deterministic order. + if cg := a.result.CallGraph; cg != nil { + for _, caller := range a.cgnodes { + cg.CreateNode(caller.fn) + } + } + + // Add dynamic edges to call graph. + for _, caller := range a.cgnodes { + for _, site := range caller.sites { + for callee := range a.nodes[site.targets].pts { + a.callEdge(caller, site, callee) + } + } + } + + return a.result, nil +} + +// callEdge is called for each edge in the callgraph. +// calleeid is the callee's object node (has otFunction flag). +// +func (a *analysis) callEdge(caller *cgnode, site *callsite, calleeid nodeid) { + obj := a.nodes[calleeid].obj + if obj.flags&otFunction == 0 { + panic(fmt.Sprintf("callEdge %s -> n%d: not a function object", site, calleeid)) + } + callee := obj.cgn + + if cg := a.result.CallGraph; cg != nil { + // TODO(adonovan): opt: I would expect duplicate edges + // (to wrappers) to arise due to the elimination of + // context information, but I haven't observed any. + // Understand this better. + callgraph.AddEdge(cg.CreateNode(caller.fn), site.instr, cg.CreateNode(callee.fn)) + } + + if a.log != nil { + fmt.Fprintf(a.log, "\tcall edge %s -> %s\n", site, callee) + } + + // Warn about calls to non-intrinsic external functions. + // TODO(adonovan): de-dup these messages. + if fn := callee.fn; fn.Blocks == nil && a.findIntrinsic(fn) == nil { + a.warnf(site.pos(), "unsound call to unknown intrinsic: %s", fn) + a.warnf(fn.Pos(), " (declared here)") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/api.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/api.go new file mode 100644 index 00000000..6da20146 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/api.go @@ -0,0 +1,223 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +import ( + "bytes" + "fmt" + "go/token" + "io" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types/typeutil" +) + +// A Config formulates a pointer analysis problem for Analyze(). +type Config struct { + // Mains contains the set of 'main' packages to analyze + // Clients must provide the analysis with at least one + // package defining a main() function. + Mains []*ssa.Package + + // Reflection determines whether to handle reflection + // operators soundly, which is currently rather slow since it + // causes constraint to be generated during solving + // proportional to the number of constraint variables, which + // has not yet been reduced by presolver optimisation. + Reflection bool + + // BuildCallGraph determines whether to construct a callgraph. + // If enabled, the graph will be available in Result.CallGraph. + BuildCallGraph bool + + // The client populates Queries[v] or IndirectQueries[v] + // for each ssa.Value v of interest, to request that the + // points-to sets pts(v) or pts(*v) be computed. If the + // client needs both points-to sets, v may appear in both + // maps. + // + // (IndirectQueries is typically used for Values corresponding + // to source-level lvalues, e.g. an *ssa.Global.) + // + // The analysis populates the corresponding + // Result.{Indirect,}Queries map when it creates the pointer + // variable for v or *v. Upon completion the client can + // inspect that map for the results. + // + // TODO(adonovan): this API doesn't scale well for batch tools + // that want to dump the entire solution. Perhaps optionally + // populate a map[*ssa.DebugRef]Pointer in the Result, one + // entry per source expression. + // + Queries map[ssa.Value]struct{} + IndirectQueries map[ssa.Value]struct{} + + // If Log is non-nil, log messages are written to it. + // Logging is extremely verbose. + Log io.Writer +} + +type track uint32 + +const ( + trackChan track = 1 << iota // track 'chan' references + trackMap // track 'map' references + trackPtr // track regular pointers + trackSlice // track slice references + + trackAll = ^track(0) +) + +// AddQuery adds v to Config.Queries. +// Precondition: CanPoint(v.Type()). +// TODO(adonovan): consider returning a new Pointer for this query, +// which will be initialized during analysis. That avoids the needs +// for the corresponding ssa.Value-keyed maps in Config and Result. +func (c *Config) AddQuery(v ssa.Value) { + if !CanPoint(v.Type()) { + panic(fmt.Sprintf("%s is not a pointer-like value: %s", v, v.Type())) + } + if c.Queries == nil { + c.Queries = make(map[ssa.Value]struct{}) + } + c.Queries[v] = struct{}{} +} + +// AddQuery adds v to Config.IndirectQueries. +// Precondition: CanPoint(v.Type().Underlying().(*types.Pointer).Elem()). +func (c *Config) AddIndirectQuery(v ssa.Value) { + if c.IndirectQueries == nil { + c.IndirectQueries = make(map[ssa.Value]struct{}) + } + if !CanPoint(mustDeref(v.Type())) { + panic(fmt.Sprintf("%s is not the address of a pointer-like value: %s", v, v.Type())) + } + c.IndirectQueries[v] = struct{}{} +} + +func (c *Config) prog() *ssa.Program { + for _, main := range c.Mains { + return main.Prog + } + panic("empty scope") +} + +type Warning struct { + Pos token.Pos + Message string +} + +// A Result contains the results of a pointer analysis. +// +// See Config for how to request the various Result components. +// +type Result struct { + CallGraph *callgraph.Graph // discovered call graph + Queries map[ssa.Value]Pointer // pts(v) for each v in Config.Queries. + IndirectQueries map[ssa.Value]Pointer // pts(*v) for each v in Config.IndirectQueries. + Warnings []Warning // warnings of unsoundness +} + +// A Pointer is an equivalence class of pointer-like values. +// +// A pointer doesn't have a unique type because pointers of distinct +// types may alias the same object. +// +type Pointer struct { + a *analysis + n nodeid // non-zero +} + +// A PointsToSet is a set of labels (locations or allocations). +type PointsToSet struct { + a *analysis // may be nil if pts is nil + pts nodeset +} + +func (s PointsToSet) String() string { + var buf bytes.Buffer + fmt.Fprintf(&buf, "[") + sep := "" + for l := range s.pts { + fmt.Fprintf(&buf, "%s%s", sep, s.a.labelFor(l)) + sep = ", " + } + fmt.Fprintf(&buf, "]") + return buf.String() +} + +// PointsTo returns the set of labels that this points-to set +// contains. +func (s PointsToSet) Labels() []*Label { + var labels []*Label + for l := range s.pts { + labels = append(labels, s.a.labelFor(l)) + } + return labels +} + +// If this PointsToSet came from a Pointer of interface kind +// or a reflect.Value, DynamicTypes returns the set of dynamic +// types that it may contain. (For an interface, they will +// always be concrete types.) +// +// The result is a mapping whose keys are the dynamic types to which +// it may point. For each pointer-like key type, the corresponding +// map value is the PointsToSet for pointers of that type. +// +// The result is empty unless CanHaveDynamicTypes(T). +// +func (s PointsToSet) DynamicTypes() *typeutil.Map { + var tmap typeutil.Map + tmap.SetHasher(s.a.hasher) + for ifaceObjId := range s.pts { + if !s.a.isTaggedObject(ifaceObjId) { + continue // !CanHaveDynamicTypes(tDyn) + } + tDyn, v, indirect := s.a.taggedValue(ifaceObjId) + if indirect { + panic("indirect tagged object") // implement later + } + pts, ok := tmap.At(tDyn).(PointsToSet) + if !ok { + pts = PointsToSet{s.a, make(nodeset)} + tmap.Set(tDyn, pts) + } + pts.pts.addAll(s.a.nodes[v].pts) + } + return &tmap +} + +// Intersects reports whether this points-to set and the +// argument points-to set contain common members. +func (x PointsToSet) Intersects(y PointsToSet) bool { + for l := range x.pts { + if _, ok := y.pts[l]; ok { + return true + } + } + return false +} + +func (p Pointer) String() string { + return fmt.Sprintf("n%d", p.n) +} + +// PointsTo returns the points-to set of this pointer. +func (p Pointer) PointsTo() PointsToSet { + return PointsToSet{p.a, p.a.nodes[p.n].pts} +} + +// MayAlias reports whether the receiver pointer may alias +// the argument pointer. +func (p Pointer) MayAlias(q Pointer) bool { + return p.PointsTo().Intersects(q.PointsTo()) +} + +// DynamicTypes returns p.PointsTo().DynamicTypes(). +func (p Pointer) DynamicTypes() *typeutil.Map { + return p.PointsTo().DynamicTypes() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/callgraph.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/callgraph.go new file mode 100644 index 00000000..6ef415d2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/callgraph.go @@ -0,0 +1,50 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +// This file defines the internal (context-sensitive) call graph. + +import ( + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/ssa" +) + +type cgnode struct { + fn *ssa.Function + obj nodeid // start of this contour's object block + sites []*callsite // ordered list of callsites within this function + callersite *callsite // where called from, if known; nil for shared contours +} + +func (n *cgnode) String() string { + return fmt.Sprintf("cg%d:%s", n.obj, n.fn) +} + +// A callsite represents a single call site within a cgnode; +// it is implicitly context-sensitive. +// callsites never represent calls to built-ins; +// they are handled as intrinsics. +// +type callsite struct { + targets nodeid // pts(·) contains objects for dynamically called functions + instr ssa.CallInstruction // the call instruction; nil for synthetic/intrinsic +} + +func (c *callsite) String() string { + if c.instr != nil { + return c.instr.Common().Description() + } + return "synthetic function call" +} + +// pos returns the source position of this callsite, or token.NoPos if implicit. +func (c *callsite) pos() token.Pos { + if c.instr != nil { + return c.instr.Pos() + } + return token.NoPos +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/constraint.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/constraint.go new file mode 100644 index 00000000..f7603cbc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/constraint.go @@ -0,0 +1,167 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +import ( + "code.google.com/p/go.tools/go/types" +) + +type constraint interface { + // For a complex constraint, returns the nodeid of the pointer + // to which it is attached. + ptr() nodeid + + // indirect returns (by appending to the argument) the constraint's + // "indirect" nodes as defined in (Hardekopf 2007b): + // nodes whose points-to relations are not completely + // represented in the initial constraint graph. + // + // TODO(adonovan): I think we need >1 results in some obscure + // cases. If not, just return a nodeid, like ptr(). + // + indirect(nodes []nodeid) []nodeid + + // renumber replaces each nodeid n in the constraint by mapping[n]. + renumber(mapping []nodeid) + + // solve is called for complex constraints when the pts for + // the node to which they are attached has changed. + solve(a *analysis, n *node, delta nodeset) + + String() string +} + +// dst = &src +// pts(dst) ⊇ {src} +// A base constraint used to initialize the solver's pt sets +type addrConstraint struct { + dst nodeid // (ptr) + src nodeid +} + +func (c *addrConstraint) ptr() nodeid { panic("addrConstraint: not a complex constraint") } +func (c *addrConstraint) indirect(nodes []nodeid) []nodeid { + panic("addrConstraint: not a complex constraint") +} +func (c *addrConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// dst = src +// A simple constraint represented directly as a copyTo graph edge. +type copyConstraint struct { + dst nodeid + src nodeid // (ptr) +} + +func (c *copyConstraint) ptr() nodeid { panic("copyConstraint: not a complex constraint") } +func (c *copyConstraint) indirect(nodes []nodeid) []nodeid { + panic("copyConstraint: not a complex constraint") +} +func (c *copyConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// dst = src[offset] +// A complex constraint attached to src (the pointer) +type loadConstraint struct { + offset uint32 + dst nodeid // (indirect) + src nodeid // (ptr) +} + +func (c *loadConstraint) ptr() nodeid { return c.src } +func (c *loadConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.dst) } +func (c *loadConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// dst[offset] = src +// A complex constraint attached to dst (the pointer) +type storeConstraint struct { + offset uint32 + dst nodeid // (ptr) + src nodeid +} + +func (c *storeConstraint) ptr() nodeid { return c.dst } +func (c *storeConstraint) indirect(nodes []nodeid) []nodeid { return nodes } +func (c *storeConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// dst = &src.f or dst = &src[0] +// A complex constraint attached to dst (the pointer) +type offsetAddrConstraint struct { + offset uint32 + dst nodeid // (indirect) + src nodeid // (ptr) +} + +func (c *offsetAddrConstraint) ptr() nodeid { return c.src } +func (c *offsetAddrConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.dst) } +func (c *offsetAddrConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// dst = src.(typ) where typ is an interface +// A complex constraint attached to src (the interface). +// No representation change: pts(dst) and pts(src) contains tagged objects. +type typeFilterConstraint struct { + typ types.Type // an interface type + dst nodeid // (indirect) + src nodeid // (ptr) +} + +func (c *typeFilterConstraint) ptr() nodeid { return c.src } +func (c *typeFilterConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.dst) } +func (c *typeFilterConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// dst = src.(typ) where typ is a concrete type +// A complex constraint attached to src (the interface). +// +// If exact, only tagged objects identical to typ are untagged. +// If !exact, tagged objects assignable to typ are untagged too. +// The latter is needed for various reflect operators, e.g. Send. +// +// This entails a representation change: +// pts(src) contains tagged objects, +// pts(dst) contains their payloads. +type untagConstraint struct { + typ types.Type // a concrete type + dst nodeid // (indirect) + src nodeid // (ptr) + exact bool +} + +func (c *untagConstraint) ptr() nodeid { return c.src } +func (c *untagConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.dst) } +func (c *untagConstraint) renumber(mapping []nodeid) { + c.dst = mapping[c.dst] + c.src = mapping[c.src] +} + +// src.method(params...) +// A complex constraint attached to iface. +type invokeConstraint struct { + method *types.Func // the abstract method + iface nodeid // (ptr) the interface + params nodeid // (indirect) the first param in the params/results block +} + +func (c *invokeConstraint) ptr() nodeid { return c.iface } +func (c *invokeConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.params) } +func (c *invokeConstraint) renumber(mapping []nodeid) { + c.iface = mapping[c.iface] + c.params = mapping[c.params] +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/doc.go new file mode 100644 index 00000000..8cb83972 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/doc.go @@ -0,0 +1,496 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + +Package pointer implements Andersen's analysis, an inclusion-based +pointer analysis algorithm first described in (Andersen, 1994). + +The implementation is similar to that described in (Pearce et al, +PASTE'04). Unlike many algorithms which interleave constraint +generation and solving, constructing the callgraph as they go, this +implementation for the most part observes a phase ordering (generation +before solving), with only simple (copy) constraints being generated +during solving. (The exception is reflection, which creates various +constraints during solving as new types flow to reflect.Value +operations.) This improves the traction of presolver optimisations, +but imposes certain restrictions, e.g. potential context sensitivity +is limited since all variants must be created a priori. + +We intend to add various presolving optimisations such as Pointer and +Location Equivalence from (Hardekopf & Lin, SAS '07) and solver +optimisatisions such as Hybrid- and Lazy- Cycle Detection from +(Hardekopf & Lin, PLDI'07), + + +CLASSIFICATION + +Our algorithm is INCLUSION-BASED: the points-to sets for x and y will +be related by pts(y) ⊇ pts(x) if the program contains the statement +y = x. + +It is FLOW-INSENSITIVE: it ignores all control flow constructs and the +order of statements in a program. It is therefore a "MAY ALIAS" +analysis: its facts are of the form "P may/may not point to L", +not "P must point to L". + +It is FIELD-SENSITIVE: it builds separate points-to sets for distinct +fields, such as x and y in struct { x, y *int }. + +It is mostly CONTEXT-INSENSITIVE: most functions are analyzed once, +so values can flow in at one call to the function and return out at +another. Only some smaller functions are analyzed with consideration +to their calling context. + +It has a CONTEXT-SENSITIVE HEAP: objects are named by both allocation +site and context, so the objects returned by two distinct calls to f: + func f() *T { return new(T) } +are distinguished up to the limits of the calling context. + +It is a WHOLE PROGRAM analysis: it requires SSA-form IR for the +complete Go program and summaries for native code. + +See the (Hind, PASTE'01) survey paper for an explanation of these terms. + + +TERMINOLOGY + +We occasionally use C's x->f notation to distinguish the case where x +is a struct pointer from x.f where is a struct value. + + +NODES + +Nodes are the key datastructure of the analysis, and have a dual role: +they represent both constraint variables (equivalence classes of +pointers) and members of points-to sets (things that can be pointed +at, i.e. "labels"). + +Nodes are naturally numbered. The numbering enables compact +representations of sets of nodes such as bitvectors or BDDs; and the +ordering enables a very cheap way to group related nodes together. +(For example, passing n parameters consists of generating n parallel +constraints from caller+i to callee+i for 0<=i pts(y) is added. + + ChangeInterface is a simple copy because the representation of + tagged objects is independent of the interface type (in contrast + to the "method tables" approach used by the gc runtime). + + y := Invoke x.m(...) is implemented by allocating a contiguous P/R + block for the callsite and adding a dynamic rule triggered by each + tagged object E added to pts(x). The rule adds param/results copy + edges to/from each discovered concrete method. + + (Q. Why do we model an interface as a pointer to a pair of type and + value, rather than as a pair of a pointer to type and a pointer to + value? + A. Control-flow joins would merge interfaces ({T1}, {V1}) and ({T2}, + {V2}) to make ({T1,T2}, {V1,V2}), leading to the infeasible and + type-unsafe combination (T1,V2). Treating the value and its concrete + type as inseparable makes the analysis type-safe.) + +reflect.Value + A reflect.Value is modelled very similar to an interface{}, i.e. as + a pointer exclusively to tagged objects, but with two + generalizations. + + 1) a reflect.Value that represents an lvalue points to an indirect + (obj.flags ⊇ {otIndirect}) tagged object, which has a similar + layout to an tagged object except that the value is a pointer to + the dynamic type. Indirect tagged objects preserve the correct + aliasing so that mutations made by (reflect.Value).Set can be + observed. + + Indirect objects only arise when an lvalue is derived from an + rvalue by indirection, e.g. the following code: + + type S struct { X T } + var s S + var i interface{} = &s // i points to a *S-tagged object (from MakeInterface) + v1 := reflect.ValueOf(i) // v1 points to same *S-tagged object as i + v2 := v1.Elem() // v2 points to an indirect S-tagged object, pointing to s + v3 := v2.FieldByName("X") // v3 points to an indirect int-tagged object, pointing to s.X + v3.Set(y) // pts(s.X) ⊇ pts(y) + + Whether indirect or not, the concrete type of the tagged object + corresponds to the user-visible dynamic type, and the existence + of a pointer is an implementation detail. + + 2) The dynamic type tag of a tagged object pointed to by a + reflect.Value may be an interface type; it need not be concrete. + + This arises in code such as this: + tEface := reflect.TypeOf(new(interface{}).Elem() // interface{} + eface := reflect.Zero(tEface) + pts(eface) is a singleton containing an interface{}-tagged + object. That tagged object's payload is an interface{} value, + i.e. the pts of the payload contains only concrete-tagged + objects, although in this example it's the zero interface{} value, + so its pts is empty. + +reflect.Type + Just as in the real "reflect" library, we represent a reflect.Type + as an interface whose sole implementation is the concrete type, + *reflect.rtype. (This choice is forced on us by go/types: clients + cannot fabricate types with arbitrary method sets.) + + rtype instances are canonical: there is at most one per dynamic + type. (rtypes are in fact large structs but since identity is all + that matters, we represent them by a single node.) + + The payload of each *rtype-tagged object is an *rtype pointer that + points to exactly one such canonical rtype object. We exploit this + by setting the node.typ of the payload to the dynamic type, not + '*rtype'. This saves us an indirection in each resolution rule. As + an optimisation, *rtype-tagged objects are canonicalized too. + + +Aggregate types: + +Aggregate types are treated as if all directly contained +aggregates are recursively flattened out. + +Structs + *ssa.Field y = x.f creates a simple edge to y from x's node at f's offset. + + *ssa.FieldAddr y = &x->f requires a dynamic closure rule to create + simple edges for each struct discovered in pts(x). + + The nodes of a struct consist of a special 'identity' node (whose + type is that of the struct itself), followed by the nodes for all + the struct's fields, recursively flattened out. A pointer to the + struct is a pointer to its identity node. That node allows us to + distinguish a pointer to a struct from a pointer to its first field. + + Field offsets are currently the logical field offsets (plus one for + the identity node), so the sizes of the fields can be ignored by the + analysis. + + Sound treatment of unsafe.Pointer conversions (not yet implemented) + would require us to model memory layout using physical field offsets + to ascertain which object field(s) might be aliased by a given + FieldAddr of a different base pointer type. It would also require + us to dispense with the identity node. + + *ssa.Field y = x.f creates a simple edge to y from x's node at f's offset. + + *ssa.FieldAddr y = &x->f requires a dynamic closure rule to create + simple edges for each struct discovered in pts(x). + +Arrays + We model an array by an identity node (whose type is that of the + array itself) followed by a node representing all the elements of + the array; the analysis does not distinguish elements with different + indices. Effectively, an array is treated like struct{elem T}, a + load y=x[i] like y=x.elem, and a store x[i]=y like x.elem=y; the + index i is ignored. + + A pointer to an array is pointer to its identity node. (A slice is + also a pointer to an array's identity node.) The identity node + allows us to distinguish a pointer to an array from a pointer to one + of its elements, but it is rather costly because it introduces more + offset constraints into the system. Furthermore, sound treatment of + unsafe.Pointer would require us to dispense with this node. + + Arrays may be allocated by Alloc, by make([]T), by calls to append, + and via reflection. + +Tuples (T, ...) + Tuples are treated like structs with naturally numbered fields. + *ssa.Extract is analogous to *ssa.Field. + + However, tuples have no identity field since by construction, they + cannot be address-taken. + + +FUNCTION CALLS + + There are three kinds of function call: + (1) static "call"-mode calls of functions. + (2) dynamic "call"-mode calls of functions. + (3) dynamic "invoke"-mode calls of interface methods. + Cases 1 and 2 apply equally to methods and standalone functions. + + Static calls. + A static call consists three steps: + - finding the function object of the callee; + - creating copy edges from the actual parameter value nodes to the + params block in the function object (this includes the receiver + if the callee is a method); + - creating copy edges from the results block in the function + object to the value nodes for the result of the call. + + Context sensitivity + + Static calls (alone) may be treated context sensitively, + i.e. each callsite may cause a distinct re-analysis of the + callee, improving precision. Our current context-sensitivity + policy treats all intrinsics and getter/setter methods in this + manner since such functions are small and seem like an obvious + source of spurious confluences, though this has not yet been + evaluated. + + Dynamic function calls + + Dynamic calls work in a similar manner except that the creation of + copy edges occurs dynamically, in a similar fashion to a pair of + struct copies: + + *fn->params = callargs + callresult = *fn->results + + (Recall that the function object's params and results blocks are + contiguous.) + + Interface method invocation + + For invoke-mode calls, we create a params/results block for the + callsite and attach a dynamic closure rule to the interface. For + each new tagged object that flows to the interface, we look up + the concrete method, find its function object, and connect its P/R + block to the callsite's P/R block. + + Recording call targets + + The analysis notifies its clients of each callsite it encounters, + passing a CallSite interface. Among other things, the CallSite + contains a synthetic constraint variable ("targets") whose + points-to solution includes the set of all function objects to + which the call may dispatch. + + It is via this mechanism that the callgraph is made available. + Clients may also elect to be notified of callgraph edges directly; + internally this just iterates all "targets" variables' pts(·)s. + + +SOLVER + +The solver is currently a very naive Andersen-style implementation, +although it does use difference propagation (Pearce et al, SQC'04). +There is much to do. + + +FURTHER READING. + +Andersen, L. O. 1994. Program analysis and specialization for the C +programming language. Ph.D. dissertation. DIKU, University of +Copenhagen. + +David J. Pearce, Paul H. J. Kelly, and Chris Hankin. 2004. Efficient +field-sensitive pointer analysis for C. In Proceedings of the 5th ACM +SIGPLAN-SIGSOFT workshop on Program analysis for software tools and +engineering (PASTE '04). ACM, New York, NY, USA, 37-42. +http://doi.acm.org/10.1145/996821.996835 + +David J. Pearce, Paul H. J. Kelly, and Chris Hankin. 2004. Online +Cycle Detection and Difference Propagation: Applications to Pointer +Analysis. Software Quality Control 12, 4 (December 2004), 311-337. +http://dx.doi.org/10.1023/B:SQJO.0000039791.93071.a2 + +David Grove and Craig Chambers. 2001. A framework for call graph +construction algorithms. ACM Trans. Program. Lang. Syst. 23, 6 +(November 2001), 685-746. +http://doi.acm.org/10.1145/506315.506316 + +Ben Hardekopf and Calvin Lin. 2007. The ant and the grasshopper: fast +and accurate pointer analysis for millions of lines of code. In +Proceedings of the 2007 ACM SIGPLAN conference on Programming language +design and implementation (PLDI '07). ACM, New York, NY, USA, 290-299. +http://doi.acm.org/10.1145/1250734.1250767 + +Ben Hardekopf and Calvin Lin. 2007. Exploiting pointer and location +equivalence to optimize pointer analysis. In Proceedings of the 14th +international conference on Static Analysis (SAS'07), Hanne Riis +Nielson and Gilberto Filé (Eds.). Springer-Verlag, Berlin, Heidelberg, +265-280. + +*/ +package pointer diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/example_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/example_test.go new file mode 100644 index 00000000..3606ed69 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/example_test.go @@ -0,0 +1,125 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer_test + +import ( + "fmt" + "sort" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/pointer" + "code.google.com/p/go.tools/go/ssa" +) + +// This program demonstrates how to use the pointer analysis to +// obtain a conservative call-graph of a Go program. +// It also shows how to compute the points-to set of a variable, +// in this case, (C).f's ch parameter. +// +func Example() { + const myprog = ` +package main + +import "fmt" + +type I interface { + f(map[string]int) +} + +type C struct{} + +func (C) f(m map[string]int) { + fmt.Println("C.f()") +} + +func main() { + var i I = C{} + x := map[string]int{"one":1} + i.f(x) // dynamic method call +} +` + // Construct a loader. + conf := loader.Config{SourceImports: true} + + // Parse the input file. + file, err := conf.ParseFile("myprog.go", myprog) + if err != nil { + fmt.Print(err) // parse error + return + } + + // Create single-file main package and import its dependencies. + conf.CreateFromFiles("main", file) + + iprog, err := conf.Load() + if err != nil { + fmt.Print(err) // type error in some package + return + } + + // Create SSA-form program representation. + prog := ssa.Create(iprog, 0) + mainPkg := prog.Package(iprog.Created[0].Pkg) + + // Build SSA code for bodies of all functions in the whole program. + prog.BuildAll() + + // Configure the pointer analysis to build a call-graph. + config := &pointer.Config{ + Mains: []*ssa.Package{mainPkg}, + BuildCallGraph: true, + } + + // Query points-to set of (C).f's parameter m, a map. + C := mainPkg.Type("C").Type() + Cfm := prog.LookupMethod(C, mainPkg.Object, "f").Params[1] + config.AddQuery(Cfm) + + // Run the pointer analysis. + result, err := pointer.Analyze(config) + if err != nil { + panic(err) // internal error in pointer analysis + } + + // Find edges originating from the main package. + // By converting to strings, we de-duplicate nodes + // representing the same function due to context sensitivity. + var edges []string + callgraph.GraphVisitEdges(result.CallGraph, func(edge *callgraph.Edge) error { + caller := edge.Caller.Func + if caller.Pkg == mainPkg { + edges = append(edges, fmt.Sprint(caller, " --> ", edge.Callee.Func)) + } + return nil + }) + + // Print the edges in sorted order. + sort.Strings(edges) + for _, edge := range edges { + fmt.Println(edge) + } + fmt.Println() + + // Print the labels of (C).f(m)'s points-to set. + fmt.Println("m may point to:") + var labels []string + for _, l := range result.Queries[Cfm].PointsTo().Labels() { + label := fmt.Sprintf(" %s: %s", prog.Fset.Position(l.Pos()), l) + labels = append(labels, label) + } + sort.Strings(labels) + for _, label := range labels { + fmt.Println(label) + } + + // Output: + // (main.C).f --> fmt.Println + // main.init --> fmt.init + // main.main --> (main.C).f + // + // m may point to: + // myprog.go:18:21: makemap +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/gen.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/gen.go new file mode 100644 index 00000000..c451c8d9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/gen.go @@ -0,0 +1,1269 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +// This file defines the constraint generation phase. + +// TODO(adonovan): move the constraint definitions and the store() etc +// functions which add them (and are also used by the solver) into a +// new file, constraints.go. + +import ( + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +var ( + tEface = types.NewInterface(nil, nil) + tInvalid = types.Typ[types.Invalid] + tUnsafePtr = types.Typ[types.UnsafePointer] +) + +// ---------- Node creation ---------- + +// nextNode returns the index of the next unused node. +func (a *analysis) nextNode() nodeid { + return nodeid(len(a.nodes)) +} + +// addNodes creates nodes for all scalar elements in type typ, and +// returns the id of the first one, or zero if the type was +// analytically uninteresting. +// +// comment explains the origin of the nodes, as a debugging aid. +// +func (a *analysis) addNodes(typ types.Type, comment string) nodeid { + id := a.nextNode() + for _, fi := range a.flatten(typ) { + a.addOneNode(fi.typ, comment, fi) + } + if id == a.nextNode() { + return 0 // type contained no pointers + } + return id +} + +// addOneNode creates a single node with type typ, and returns its id. +// +// typ should generally be scalar (except for tagged.T nodes +// and struct/array identity nodes). Use addNodes for non-scalar types. +// +// comment explains the origin of the nodes, as a debugging aid. +// subelement indicates the subelement, e.g. ".a.b[*].c". +// +func (a *analysis) addOneNode(typ types.Type, comment string, subelement *fieldInfo) nodeid { + id := a.nextNode() + a.nodes = append(a.nodes, &node{typ: typ, subelement: subelement}) + if a.log != nil { + fmt.Fprintf(a.log, "\tcreate n%d %s for %s%s\n", + id, typ, comment, subelement.path()) + } + return id +} + +// setValueNode associates node id with the value v. +// cgn identifies the context iff v is a local variable. +// +func (a *analysis) setValueNode(v ssa.Value, id nodeid, cgn *cgnode) { + if cgn != nil { + a.localval[v] = id + } else { + a.globalval[v] = id + } + if a.log != nil { + fmt.Fprintf(a.log, "\tval[%s] = n%d (%T)\n", v.Name(), id, v) + } + + // Due to context-sensitivity, we may encounter the same Value + // in many contexts. We merge them to a canonical node, since + // that's what all clients want. + + // Record the (v, id) relation if the client has queried pts(v). + if _, ok := a.config.Queries[v]; ok { + t := v.Type() + ptr, ok := a.result.Queries[v] + if !ok { + // First time? Create the canonical query node. + ptr = Pointer{a, a.addNodes(t, "query")} + a.result.Queries[v] = ptr + } + a.result.Queries[v] = ptr + a.copy(ptr.n, id, a.sizeof(t)) + } + + // Record the (*v, id) relation if the client has queried pts(*v). + if _, ok := a.config.IndirectQueries[v]; ok { + t := v.Type() + ptr, ok := a.result.IndirectQueries[v] + if !ok { + // First time? Create the canonical indirect query node. + ptr = Pointer{a, a.addNodes(v.Type(), "query.indirect")} + a.result.IndirectQueries[v] = ptr + } + a.genLoad(cgn, ptr.n, v, 0, a.sizeof(t)) + } +} + +// endObject marks the end of a sequence of calls to addNodes denoting +// a single object allocation. +// +// obj is the start node of the object, from a prior call to nextNode. +// Its size, flags and optional data will be updated. +// +func (a *analysis) endObject(obj nodeid, cgn *cgnode, data interface{}) *object { + // Ensure object is non-empty by padding; + // the pad will be the object node. + size := uint32(a.nextNode() - obj) + if size == 0 { + a.addOneNode(tInvalid, "padding", nil) + } + objNode := a.nodes[obj] + o := &object{ + size: size, // excludes padding + cgn: cgn, + data: data, + } + objNode.obj = o + + return o +} + +// makeFunctionObject creates and returns a new function object +// (contour) for fn, and returns the id of its first node. It also +// enqueues fn for subsequent constraint generation. +// +// For a context-sensitive contour, callersite identifies the sole +// callsite; for shared contours, caller is nil. +// +func (a *analysis) makeFunctionObject(fn *ssa.Function, callersite *callsite) nodeid { + if a.log != nil { + fmt.Fprintf(a.log, "\t---- makeFunctionObject %s\n", fn) + } + + // obj is the function object (identity, params, results). + obj := a.nextNode() + cgn := a.makeCGNode(fn, obj, callersite) + sig := fn.Signature + a.addOneNode(sig, "func.cgnode", nil) // (scalar with Signature type) + if recv := sig.Recv(); recv != nil { + a.addNodes(recv.Type(), "func.recv") + } + a.addNodes(sig.Params(), "func.params") + a.addNodes(sig.Results(), "func.results") + a.endObject(obj, cgn, fn).flags |= otFunction + + if a.log != nil { + fmt.Fprintf(a.log, "\t----\n") + } + + // Queue it up for constraint processing. + a.genq = append(a.genq, cgn) + + return obj +} + +// makeTagged creates a tagged object of type typ. +func (a *analysis) makeTagged(typ types.Type, cgn *cgnode, data interface{}) nodeid { + obj := a.addOneNode(typ, "tagged.T", nil) // NB: type may be non-scalar! + a.addNodes(typ, "tagged.v") + a.endObject(obj, cgn, data).flags |= otTagged + return obj +} + +// makeRtype returns the canonical tagged object of type *rtype whose +// payload points to the sole rtype object for T. +func (a *analysis) makeRtype(T types.Type) nodeid { + if v := a.rtypes.At(T); v != nil { + return v.(nodeid) + } + + // Create the object for the reflect.rtype itself, which is + // ordinarily a large struct but here a single node will do. + obj := a.nextNode() + a.addOneNode(T, "reflect.rtype", nil) + a.endObject(obj, nil, T) + + id := a.makeTagged(a.reflectRtypePtr, nil, T) + a.nodes[id+1].typ = T // trick (each *rtype tagged object is a singleton) + a.addressOf(a.reflectRtypePtr, id+1, obj) + + a.rtypes.Set(T, id) + return id +} + +// rtypeValue returns the type of the *reflect.rtype-tagged object obj. +func (a *analysis) rtypeTaggedValue(obj nodeid) types.Type { + tDyn, t, _ := a.taggedValue(obj) + if tDyn != a.reflectRtypePtr { + panic(fmt.Sprintf("not a *reflect.rtype-tagged object: obj=n%d tag=%v payload=n%d", obj, tDyn, t)) + } + return a.nodes[t].typ +} + +// valueNode returns the id of the value node for v, creating it (and +// the association) as needed. It may return zero for uninteresting +// values containing no pointers. +// +func (a *analysis) valueNode(v ssa.Value) nodeid { + // Value nodes for locals are created en masse by genFunc. + if id, ok := a.localval[v]; ok { + return id + } + + // Value nodes for globals are created on demand. + id, ok := a.globalval[v] + if !ok { + var comment string + if a.log != nil { + comment = v.String() + } + id = a.addOneNode(v.Type(), comment, nil) + if obj := a.objectNode(nil, v); obj != 0 { + a.addressOf(v.Type(), id, obj) + } + a.setValueNode(v, id, nil) + } + return id +} + +// valueOffsetNode ascertains the node for tuple/struct value v, +// then returns the node for its subfield #index. +// +func (a *analysis) valueOffsetNode(v ssa.Value, index int) nodeid { + id := a.valueNode(v) + if id == 0 { + panic(fmt.Sprintf("cannot offset within n0: %s = %s", v.Name(), v)) + } + return id + nodeid(a.offsetOf(v.Type(), index)) +} + +// isTaggedObject reports whether object obj is a tagged object. +func (a *analysis) isTaggedObject(obj nodeid) bool { + return a.nodes[obj].obj.flags&otTagged != 0 +} + +// taggedValue returns the dynamic type tag, the (first node of the) +// payload, and the indirect flag of the tagged object starting at id. +// Panic ensues if !isTaggedObject(id). +// +func (a *analysis) taggedValue(obj nodeid) (tDyn types.Type, v nodeid, indirect bool) { + n := a.nodes[obj] + flags := n.obj.flags + if flags&otTagged == 0 { + panic(fmt.Sprintf("not a tagged object: n%d", obj)) + } + return n.typ, obj + 1, flags&otIndirect != 0 +} + +// funcParams returns the first node of the params block of the +// function whose object node (obj.flags&otFunction) is id. +// +func (a *analysis) funcParams(id nodeid) nodeid { + n := a.nodes[id] + if n.obj == nil || n.obj.flags&otFunction == 0 { + panic(fmt.Sprintf("funcParams(n%d): not a function object block", id)) + } + return id + 1 +} + +// funcResults returns the first node of the results block of the +// function whose object node (obj.flags&otFunction) is id. +// +func (a *analysis) funcResults(id nodeid) nodeid { + n := a.nodes[id] + if n.obj == nil || n.obj.flags&otFunction == 0 { + panic(fmt.Sprintf("funcResults(n%d): not a function object block", id)) + } + sig := n.typ.(*types.Signature) + id += 1 + nodeid(a.sizeof(sig.Params())) + if sig.Recv() != nil { + id += nodeid(a.sizeof(sig.Recv().Type())) + } + return id +} + +// ---------- Constraint creation ---------- + +// copy creates a constraint of the form dst = src. +// sizeof is the width (in logical fields) of the copied type. +// +func (a *analysis) copy(dst, src nodeid, sizeof uint32) { + if src == dst || sizeof == 0 { + return // trivial + } + if src == 0 || dst == 0 { + panic(fmt.Sprintf("ill-typed copy dst=n%d src=n%d", dst, src)) + } + for i := uint32(0); i < sizeof; i++ { + a.addConstraint(©Constraint{dst, src}) + src++ + dst++ + } +} + +// addressOf creates a constraint of the form id = &obj. +// T is the type of the address. +func (a *analysis) addressOf(T types.Type, id, obj nodeid) { + if id == 0 { + panic("addressOf: zero id") + } + if obj == 0 { + panic("addressOf: zero obj") + } + if a.shouldTrack(T) { + a.addConstraint(&addrConstraint{id, obj}) + } +} + +// load creates a load constraint of the form dst = src[offset]. +// offset is the pointer offset in logical fields. +// sizeof is the width (in logical fields) of the loaded type. +// +func (a *analysis) load(dst, src nodeid, offset, sizeof uint32) { + if dst == 0 { + return // load of non-pointerlike value + } + if src == 0 && dst == 0 { + return // non-pointerlike operation + } + if src == 0 || dst == 0 { + panic(fmt.Sprintf("ill-typed load dst=n%d src=n%d", dst, src)) + } + for i := uint32(0); i < sizeof; i++ { + a.addConstraint(&loadConstraint{offset, dst, src}) + offset++ + dst++ + } +} + +// store creates a store constraint of the form dst[offset] = src. +// offset is the pointer offset in logical fields. +// sizeof is the width (in logical fields) of the stored type. +// +func (a *analysis) store(dst, src nodeid, offset uint32, sizeof uint32) { + if src == 0 { + return // store of non-pointerlike value + } + if src == 0 && dst == 0 { + return // non-pointerlike operation + } + if src == 0 || dst == 0 { + panic(fmt.Sprintf("ill-typed store dst=n%d src=n%d", dst, src)) + } + for i := uint32(0); i < sizeof; i++ { + a.addConstraint(&storeConstraint{offset, dst, src}) + offset++ + src++ + } +} + +// offsetAddr creates an offsetAddr constraint of the form dst = &src.#offset. +// offset is the field offset in logical fields. +// T is the type of the address. +// +func (a *analysis) offsetAddr(T types.Type, dst, src nodeid, offset uint32) { + if !a.shouldTrack(T) { + return + } + if offset == 0 { + // Simplify dst = &src->f0 + // to dst = src + // (NB: this optimisation is defeated by the identity + // field prepended to struct and array objects.) + a.copy(dst, src, 1) + } else { + a.addConstraint(&offsetAddrConstraint{offset, dst, src}) + } +} + +// typeAssert creates a typeFilter or untag constraint of the form dst = src.(T): +// typeFilter for an interface, untag for a concrete type. +// The exact flag is specified as for untagConstraint. +// +func (a *analysis) typeAssert(T types.Type, dst, src nodeid, exact bool) { + if isInterface(T) { + a.addConstraint(&typeFilterConstraint{T, dst, src}) + } else { + a.addConstraint(&untagConstraint{T, dst, src, exact}) + } +} + +// addConstraint adds c to the constraint set. +func (a *analysis) addConstraint(c constraint) { + a.constraints = append(a.constraints, c) + if a.log != nil { + fmt.Fprintf(a.log, "\t%s\n", c) + } +} + +// copyElems generates load/store constraints for *dst = *src, +// where src and dst are slices or *arrays. +// +func (a *analysis) copyElems(cgn *cgnode, typ types.Type, dst, src ssa.Value) { + tmp := a.addNodes(typ, "copy") + sz := a.sizeof(typ) + a.genLoad(cgn, tmp, src, 1, sz) + a.genStore(cgn, dst, tmp, 1, sz) +} + +// ---------- Constraint generation ---------- + +// genConv generates constraints for the conversion operation conv. +func (a *analysis) genConv(conv *ssa.Convert, cgn *cgnode) { + res := a.valueNode(conv) + if res == 0 { + return // result is non-pointerlike + } + + tSrc := conv.X.Type() + tDst := conv.Type() + + switch utSrc := tSrc.Underlying().(type) { + case *types.Slice: + // []byte/[]rune -> string? + return + + case *types.Pointer: + // *T -> unsafe.Pointer? + if tDst == tUnsafePtr { + // ignore for now + // a.copy(res, a.valueNode(conv.X), 1) + return + } + + case *types.Basic: + switch utDst := tDst.Underlying().(type) { + case *types.Pointer: + // unsafe.Pointer -> *T? (currently unsound) + if utSrc == tUnsafePtr { + // For now, suppress unsafe.Pointer conversion + // warnings on "syscall" package. + // TODO(adonovan): audit for soundness. + if conv.Parent().Pkg.Object.Path() != "syscall" { + a.warnf(conv.Pos(), + "unsound: %s contains an unsafe.Pointer conversion (to %s)", + conv.Parent(), tDst) + } + + // For now, we treat unsafe.Pointer->*T + // conversion like new(T) and create an + // unaliased object. In future we may handle + // unsafe conversions soundly; see TODO file. + obj := a.addNodes(mustDeref(tDst), "unsafe.Pointer conversion") + a.endObject(obj, cgn, conv) + a.addressOf(tDst, res, obj) + return + } + + case *types.Slice: + // string -> []byte/[]rune (or named aliases)? + if utSrc.Info()&types.IsString != 0 { + obj := a.addNodes(sliceToArray(tDst), "convert") + a.endObject(obj, cgn, conv) + a.addressOf(tDst, res, obj) + return + } + + case *types.Basic: + // TODO(adonovan): + // unsafe.Pointer -> uintptr? + // uintptr -> unsafe.Pointer + // + // The language doesn't adequately specify the + // behaviour of these operations, but almost + // all uses of these conversions (even in the + // spec) seem to imply a non-moving garbage + // collection strategy, or implicit "pinning" + // semantics for unsafe.Pointer conversions. + + // TODO(adonovan): we need more work before we can handle + // cryptopointers well. + if utSrc == tUnsafePtr || utDst == tUnsafePtr { + // Ignore for now. See TODO file for ideas. + return + } + + return // ignore all other basic type conversions + } + } + + panic(fmt.Sprintf("illegal *ssa.Convert %s -> %s: %s", tSrc, tDst, conv.Parent())) +} + +// genAppend generates constraints for a call to append. +func (a *analysis) genAppend(instr *ssa.Call, cgn *cgnode) { + // Consider z = append(x, y). y is optional. + // This may allocate a new [1]T array; call its object w. + // We get the following constraints: + // z = x + // z = &w + // *z = *y + + x := instr.Call.Args[0] + + z := instr + a.copy(a.valueNode(z), a.valueNode(x), 1) // z = x + + if len(instr.Call.Args) == 1 { + return // no allocation for z = append(x) or _ = append(x). + } + + // TODO(adonovan): test append([]byte, ...string) []byte. + + y := instr.Call.Args[1] + tArray := sliceToArray(instr.Call.Args[0].Type()) + + var w nodeid + w = a.nextNode() + a.addNodes(tArray, "append") + a.endObject(w, cgn, instr) + + a.copyElems(cgn, tArray.Elem(), z, y) // *z = *y + a.addressOf(instr.Type(), a.valueNode(z), w) // z = &w +} + +// genBuiltinCall generates contraints for a call to a built-in. +func (a *analysis) genBuiltinCall(instr ssa.CallInstruction, cgn *cgnode) { + call := instr.Common() + switch call.Value.(*ssa.Builtin).Object().Name() { + case "append": + // Safe cast: append cannot appear in a go or defer statement. + a.genAppend(instr.(*ssa.Call), cgn) + + case "copy": + tElem := call.Args[0].Type().Underlying().(*types.Slice).Elem() + a.copyElems(cgn, tElem, call.Args[0], call.Args[1]) + + case "panic": + a.copy(a.panicNode, a.valueNode(call.Args[0]), 1) + + case "recover": + if v := instr.Value(); v != nil { + a.copy(a.valueNode(v), a.panicNode, 1) + } + + default: + // No-ops: close len cap real imag complex print println delete. + } +} + +// shouldUseContext defines the context-sensitivity policy. It +// returns true if we should analyse all static calls to fn anew. +// +// Obviously this interface rather limits how much freedom we have to +// choose a policy. The current policy, rather arbitrarily, is true +// for intrinsics and accessor methods (actually: short, single-block, +// call-free functions). This is just a starting point. +// +func (a *analysis) shouldUseContext(fn *ssa.Function) bool { + if a.findIntrinsic(fn) != nil { + return true // treat intrinsics context-sensitively + } + if len(fn.Blocks) != 1 { + return false // too expensive + } + blk := fn.Blocks[0] + if len(blk.Instrs) > 10 { + return false // too expensive + } + if fn.Synthetic != "" && (fn.Pkg == nil || fn != fn.Pkg.Func("init")) { + return true // treat synthetic wrappers context-sensitively + } + for _, instr := range blk.Instrs { + switch instr := instr.(type) { + case ssa.CallInstruction: + // Disallow function calls (except to built-ins) + // because of the danger of unbounded recursion. + if _, ok := instr.Common().Value.(*ssa.Builtin); !ok { + return false + } + } + } + return true +} + +// genStaticCall generates constraints for a statically dispatched function call. +func (a *analysis) genStaticCall(caller *cgnode, site *callsite, call *ssa.CallCommon, result nodeid) { + fn := call.StaticCallee() + + // Special cases for inlined intrinsics. + switch fn { + case a.runtimeSetFinalizer: + // Inline SetFinalizer so the call appears direct. + site.targets = a.addOneNode(tInvalid, "SetFinalizer.targets", nil) + a.addConstraint(&runtimeSetFinalizerConstraint{ + targets: site.targets, + x: a.valueNode(call.Args[0]), + f: a.valueNode(call.Args[1]), + }) + return + + case a.reflectValueCall: + // Inline (reflect.Value).Call so the call appears direct. + dotdotdot := false + ret := reflectCallImpl(a, caller, site, a.valueNode(call.Args[0]), a.valueNode(call.Args[1]), dotdotdot) + if result != 0 { + a.addressOf(fn.Signature.Results().At(0).Type(), result, ret) + } + return + } + + // Ascertain the context (contour/cgnode) for a particular call. + var obj nodeid + if a.shouldUseContext(fn) { + obj = a.makeFunctionObject(fn, site) // new contour + } else { + obj = a.objectNode(nil, fn) // shared contour + } + a.callEdge(caller, site, obj) + + sig := call.Signature() + + // Copy receiver, if any. + params := a.funcParams(obj) + args := call.Args + if sig.Recv() != nil { + sz := a.sizeof(sig.Recv().Type()) + a.copy(params, a.valueNode(args[0]), sz) + params += nodeid(sz) + args = args[1:] + } + + // Copy actual parameters into formal params block. + // Must loop, since the actuals aren't contiguous. + for i, arg := range args { + sz := a.sizeof(sig.Params().At(i).Type()) + a.copy(params, a.valueNode(arg), sz) + params += nodeid(sz) + } + + // Copy formal results block to actual result. + if result != 0 { + a.copy(result, a.funcResults(obj), a.sizeof(sig.Results())) + } +} + +// genDynamicCall generates constraints for a dynamic function call. +func (a *analysis) genDynamicCall(caller *cgnode, site *callsite, call *ssa.CallCommon, result nodeid) { + // pts(targets) will be the set of possible call targets. + site.targets = a.valueNode(call.Value) + + // We add dynamic closure rules that store the arguments into, + // and load the results from, the P/R block of each function + // discovered in pts(targets). + + sig := call.Signature() + var offset uint32 = 1 // P/R block starts at offset 1 + for i, arg := range call.Args { + sz := a.sizeof(sig.Params().At(i).Type()) + a.genStore(caller, call.Value, a.valueNode(arg), offset, sz) + offset += sz + } + if result != 0 { + a.genLoad(caller, result, call.Value, offset, a.sizeof(sig.Results())) + } +} + +// genInvoke generates constraints for a dynamic method invocation. +func (a *analysis) genInvoke(caller *cgnode, site *callsite, call *ssa.CallCommon, result nodeid) { + if call.Value.Type() == a.reflectType { + a.genInvokeReflectType(caller, site, call, result) + return + } + + sig := call.Signature() + + // Allocate a contiguous targets/params/results block for this call. + block := a.nextNode() + // pts(targets) will be the set of possible call targets + site.targets = a.addOneNode(sig, "invoke.targets", nil) + p := a.addNodes(sig.Params(), "invoke.params") + r := a.addNodes(sig.Results(), "invoke.results") + + // Copy the actual parameters into the call's params block. + for i, n := 0, sig.Params().Len(); i < n; i++ { + sz := a.sizeof(sig.Params().At(i).Type()) + a.copy(p, a.valueNode(call.Args[i]), sz) + p += nodeid(sz) + } + // Copy the call's results block to the actual results. + if result != 0 { + a.copy(result, r, a.sizeof(sig.Results())) + } + + // We add a dynamic invoke constraint that will add + // edges from the caller's P/R block to the callee's + // P/R block for each discovered call target. + a.addConstraint(&invokeConstraint{call.Method, a.valueNode(call.Value), block}) +} + +// genInvokeReflectType is a specialization of genInvoke where the +// receiver type is a reflect.Type, under the assumption that there +// can be at most one implementation of this interface, *reflect.rtype. +// +// (Though this may appear to be an instance of a pattern---method +// calls on interfaces known to have exactly one implementation---in +// practice it occurs rarely, so we special case for reflect.Type.) +// +// In effect we treat this: +// var rt reflect.Type = ... +// rt.F() +// as this: +// rt.(*reflect.rtype).F() +// +func (a *analysis) genInvokeReflectType(caller *cgnode, site *callsite, call *ssa.CallCommon, result nodeid) { + // Unpack receiver into rtype + rtype := a.addOneNode(a.reflectRtypePtr, "rtype.recv", nil) + recv := a.valueNode(call.Value) + a.typeAssert(a.reflectRtypePtr, rtype, recv, true) + + // Look up the concrete method. + fn := a.prog.LookupMethod(a.reflectRtypePtr, call.Method.Pkg(), call.Method.Name()) + + obj := a.makeFunctionObject(fn, site) // new contour for this call + a.callEdge(caller, site, obj) + + // From now on, it's essentially a static call, but little is + // gained by factoring together the code for both cases. + + sig := fn.Signature // concrete method + targets := a.addOneNode(sig, "call.targets", nil) + a.addressOf(sig, targets, obj) // (a singleton) + + // Copy receiver. + params := a.funcParams(obj) + a.copy(params, rtype, 1) + params++ + + // Copy actual parameters into formal params block. + // Must loop, since the actuals aren't contiguous. + for i, arg := range call.Args { + sz := a.sizeof(sig.Params().At(i).Type()) + a.copy(params, a.valueNode(arg), sz) + params += nodeid(sz) + } + + // Copy formal results block to actual result. + if result != 0 { + a.copy(result, a.funcResults(obj), a.sizeof(sig.Results())) + } +} + +// genCall generates contraints for call instruction instr. +func (a *analysis) genCall(caller *cgnode, instr ssa.CallInstruction) { + call := instr.Common() + + // Intrinsic implementations of built-in functions. + if _, ok := call.Value.(*ssa.Builtin); ok { + a.genBuiltinCall(instr, caller) + return + } + + var result nodeid + if v := instr.Value(); v != nil { + result = a.valueNode(v) + } + + site := &callsite{instr: instr} + if call.StaticCallee() != nil { + a.genStaticCall(caller, site, call, result) + } else if call.IsInvoke() { + a.genInvoke(caller, site, call, result) + } else { + a.genDynamicCall(caller, site, call, result) + } + + caller.sites = append(caller.sites, site) + + if a.log != nil { + fmt.Fprintf(a.log, "\t%s to targets %s from %s\n", site, site.targets, caller) + } +} + +// objectNode returns the object to which v points, if known. +// In other words, if the points-to set of v is a singleton, it +// returns the sole label, zero otherwise. +// +// We exploit this information to make the generated constraints less +// dynamic. For example, a complex load constraint can be replaced by +// a simple copy constraint when the sole destination is known a priori. +// +// Some SSA instructions always have singletons points-to sets: +// Alloc, Function, Global, MakeChan, MakeClosure, MakeInterface, MakeMap, MakeSlice. +// Others may be singletons depending on their operands: +// Capture, Const, Convert, FieldAddr, IndexAddr, Slice. +// +// Idempotent. Objects are created as needed, possibly via recursion +// down the SSA value graph, e.g IndexAddr(FieldAddr(Alloc))). +// +func (a *analysis) objectNode(cgn *cgnode, v ssa.Value) nodeid { + if cgn == nil { + // Global object. + obj, ok := a.globalobj[v] + if !ok { + switch v := v.(type) { + case *ssa.Global: + obj = a.nextNode() + a.addNodes(mustDeref(v.Type()), "global") + a.endObject(obj, nil, v) + + case *ssa.Function: + obj = a.makeFunctionObject(v, nil) + + case *ssa.Const: + // The only pointer-like Consts are nil. + + case *ssa.Capture: + // For now, Captures have the same cardinality as globals. + // TODO(adonovan): treat captures context-sensitively. + } + + if a.log != nil { + fmt.Fprintf(a.log, "\tglobalobj[%s] = n%d\n", v, obj) + } + a.globalobj[v] = obj + } + return obj + } + + // Local object. + obj, ok := a.localobj[v] + if !ok { + switch v := v.(type) { + case *ssa.Alloc: + obj = a.nextNode() + a.addNodes(mustDeref(v.Type()), "alloc") + a.endObject(obj, cgn, v) + + case *ssa.MakeSlice: + obj = a.nextNode() + a.addNodes(sliceToArray(v.Type()), "makeslice") + a.endObject(obj, cgn, v) + + case *ssa.MakeChan: + obj = a.nextNode() + a.addNodes(v.Type().Underlying().(*types.Chan).Elem(), "makechan") + a.endObject(obj, cgn, v) + + case *ssa.MakeMap: + obj = a.nextNode() + tmap := v.Type().Underlying().(*types.Map) + a.addNodes(tmap.Key(), "makemap.key") + a.addNodes(tmap.Elem(), "makemap.value") + a.endObject(obj, cgn, v) + + case *ssa.MakeInterface: + tConc := v.X.Type() + obj = a.makeTagged(tConc, cgn, v) + + // Copy the value into it, if nontrivial. + if x := a.valueNode(v.X); x != 0 { + a.copy(obj+1, x, a.sizeof(tConc)) + } + + case *ssa.FieldAddr: + if xobj := a.objectNode(cgn, v.X); xobj != 0 { + obj = xobj + nodeid(a.offsetOf(mustDeref(v.X.Type()), v.Field)) + } + + case *ssa.IndexAddr: + if xobj := a.objectNode(cgn, v.X); xobj != 0 { + obj = xobj + 1 + } + + case *ssa.Slice: + obj = a.objectNode(cgn, v.X) + + case *ssa.Convert: + // TODO(adonovan): opt: handle these cases too: + // - unsafe.Pointer->*T conversion acts like Alloc + // - string->[]byte/[]rune conversion acts like MakeSlice + } + + if a.log != nil { + fmt.Fprintf(a.log, "\tlocalobj[%s] = n%d\n", v.Name(), obj) + } + a.localobj[v] = obj + } + return obj +} + +// genLoad generates constraints for result = *(ptr + val). +func (a *analysis) genLoad(cgn *cgnode, result nodeid, ptr ssa.Value, offset, sizeof uint32) { + if obj := a.objectNode(cgn, ptr); obj != 0 { + // Pre-apply loadConstraint.solve(). + a.copy(result, obj+nodeid(offset), sizeof) + } else { + a.load(result, a.valueNode(ptr), offset, sizeof) + } +} + +// genOffsetAddr generates constraints for a 'v=ptr.field' (FieldAddr) +// or 'v=ptr[*]' (IndexAddr) instruction v. +func (a *analysis) genOffsetAddr(cgn *cgnode, v ssa.Value, ptr nodeid, offset uint32) { + dst := a.valueNode(v) + if obj := a.objectNode(cgn, v); obj != 0 { + // Pre-apply offsetAddrConstraint.solve(). + a.addressOf(v.Type(), dst, obj) + } else { + a.offsetAddr(v.Type(), dst, ptr, offset) + } +} + +// genStore generates constraints for *(ptr + offset) = val. +func (a *analysis) genStore(cgn *cgnode, ptr ssa.Value, val nodeid, offset, sizeof uint32) { + if obj := a.objectNode(cgn, ptr); obj != 0 { + // Pre-apply storeConstraint.solve(). + a.copy(obj+nodeid(offset), val, sizeof) + } else { + a.store(a.valueNode(ptr), val, offset, sizeof) + } +} + +// genInstr generates contraints for instruction instr in context cgn. +func (a *analysis) genInstr(cgn *cgnode, instr ssa.Instruction) { + if a.log != nil { + var prefix string + if val, ok := instr.(ssa.Value); ok { + prefix = val.Name() + " = " + } + fmt.Fprintf(a.log, "; %s%s\n", prefix, instr) + } + + switch instr := instr.(type) { + case *ssa.DebugRef: + // no-op. + + case *ssa.UnOp: + switch instr.Op { + case token.ARROW: // <-x + // We can ignore instr.CommaOk because the node we're + // altering is always at zero offset relative to instr + a.genLoad(cgn, a.valueNode(instr), instr.X, 0, a.sizeof(instr.Type())) + + case token.MUL: // *x + a.genLoad(cgn, a.valueNode(instr), instr.X, 0, a.sizeof(instr.Type())) + + default: + // NOT, SUB, XOR: no-op. + } + + case *ssa.BinOp: + // All no-ops. + + case ssa.CallInstruction: // *ssa.Call, *ssa.Go, *ssa.Defer + a.genCall(cgn, instr) + + case *ssa.ChangeType: + a.copy(a.valueNode(instr), a.valueNode(instr.X), 1) + + case *ssa.Convert: + a.genConv(instr, cgn) + + case *ssa.Extract: + a.copy(a.valueNode(instr), + a.valueOffsetNode(instr.Tuple, instr.Index), + a.sizeof(instr.Type())) + + case *ssa.FieldAddr: + a.genOffsetAddr(cgn, instr, a.valueNode(instr.X), + a.offsetOf(mustDeref(instr.X.Type()), instr.Field)) + + case *ssa.IndexAddr: + a.genOffsetAddr(cgn, instr, a.valueNode(instr.X), 1) + + case *ssa.Field: + a.copy(a.valueNode(instr), + a.valueOffsetNode(instr.X, instr.Field), + a.sizeof(instr.Type())) + + case *ssa.Index: + a.copy(a.valueNode(instr), 1+a.valueNode(instr.X), a.sizeof(instr.Type())) + + case *ssa.Select: + recv := a.valueOffsetNode(instr, 2) // instr : (index, recvOk, recv0, ... recv_n-1) + for _, st := range instr.States { + elemSize := a.sizeof(st.Chan.Type().Underlying().(*types.Chan).Elem()) + switch st.Dir { + case types.RecvOnly: + a.genLoad(cgn, recv, st.Chan, 0, elemSize) + recv += nodeid(elemSize) + + case types.SendOnly: + a.genStore(cgn, st.Chan, a.valueNode(st.Send), 0, elemSize) + } + } + + case *ssa.Return: + results := a.funcResults(cgn.obj) + for _, r := range instr.Results { + sz := a.sizeof(r.Type()) + a.copy(results, a.valueNode(r), sz) + results += nodeid(sz) + } + + case *ssa.Send: + a.genStore(cgn, instr.Chan, a.valueNode(instr.X), 0, a.sizeof(instr.X.Type())) + + case *ssa.Store: + a.genStore(cgn, instr.Addr, a.valueNode(instr.Val), 0, a.sizeof(instr.Val.Type())) + + case *ssa.Alloc, *ssa.MakeSlice, *ssa.MakeChan, *ssa.MakeMap, *ssa.MakeInterface: + v := instr.(ssa.Value) + a.addressOf(v.Type(), a.valueNode(v), a.objectNode(cgn, v)) + + case *ssa.ChangeInterface: + a.copy(a.valueNode(instr), a.valueNode(instr.X), 1) + + case *ssa.TypeAssert: + a.typeAssert(instr.AssertedType, a.valueNode(instr), a.valueNode(instr.X), true) + + case *ssa.Slice: + a.copy(a.valueNode(instr), a.valueNode(instr.X), 1) + + case *ssa.If, *ssa.Jump: + // no-op. + + case *ssa.Phi: + sz := a.sizeof(instr.Type()) + for _, e := range instr.Edges { + a.copy(a.valueNode(instr), a.valueNode(e), sz) + } + + case *ssa.MakeClosure: + fn := instr.Fn.(*ssa.Function) + a.copy(a.valueNode(instr), a.valueNode(fn), 1) + // Free variables are treated like global variables. + for i, b := range instr.Bindings { + a.copy(a.valueNode(fn.FreeVars[i]), a.valueNode(b), a.sizeof(b.Type())) + } + + case *ssa.RunDefers: + // The analysis is flow insensitive, so we just "call" + // defers as we encounter them. + + case *ssa.Range: + // Do nothing. Next{Iter: *ssa.Range} handles this case. + + case *ssa.Next: + if !instr.IsString { // map + // Assumes that Next is always directly applied to a Range result. + theMap := instr.Iter.(*ssa.Range).X + tMap := theMap.Type().Underlying().(*types.Map) + ksize := a.sizeof(tMap.Key()) + vsize := a.sizeof(tMap.Elem()) + + // Load from the map's (k,v) into the tuple's (ok, k, v). + a.genLoad(cgn, a.valueNode(instr)+1, theMap, 0, ksize+vsize) + } + + case *ssa.Lookup: + if tMap, ok := instr.X.Type().Underlying().(*types.Map); ok { + // CommaOk can be ignored: field 0 is a no-op. + ksize := a.sizeof(tMap.Key()) + vsize := a.sizeof(tMap.Elem()) + a.genLoad(cgn, a.valueNode(instr), instr.X, ksize, vsize) + } + + case *ssa.MapUpdate: + tmap := instr.Map.Type().Underlying().(*types.Map) + ksize := a.sizeof(tmap.Key()) + vsize := a.sizeof(tmap.Elem()) + a.genStore(cgn, instr.Map, a.valueNode(instr.Key), 0, ksize) + a.genStore(cgn, instr.Map, a.valueNode(instr.Value), ksize, vsize) + + case *ssa.Panic: + a.copy(a.panicNode, a.valueNode(instr.X), 1) + + default: + panic(fmt.Sprintf("unimplemented: %T", instr)) + } +} + +func (a *analysis) makeCGNode(fn *ssa.Function, obj nodeid, callersite *callsite) *cgnode { + cgn := &cgnode{fn: fn, obj: obj, callersite: callersite} + a.cgnodes = append(a.cgnodes, cgn) + return cgn +} + +// genRootCalls generates the synthetic root of the callgraph and the +// initial calls from it to the analysis scope, such as main, a test +// or a library. +// +func (a *analysis) genRootCalls() *cgnode { + r := ssa.NewFunction("", new(types.Signature), "root of callgraph") + r.Prog = a.prog // hack. + r.Enclosing = r // hack, so Function.String() doesn't crash + r.String() // (asserts that it doesn't crash) + root := a.makeCGNode(r, 0, nil) + + // TODO(adonovan): make an ssa utility to construct an actual + // root function so we don't need to special-case site-less + // call edges. + + // For each main package, call main.init(), main.main(). + for _, mainPkg := range a.config.Mains { + main := mainPkg.Func("main") + if main == nil { + panic(fmt.Sprintf("%s has no main function", mainPkg)) + } + + targets := a.addOneNode(main.Signature, "root.targets", nil) + site := &callsite{targets: targets} + root.sites = append(root.sites, site) + for _, fn := range [2]*ssa.Function{mainPkg.Func("init"), main} { + if a.log != nil { + fmt.Fprintf(a.log, "\troot call to %s:\n", fn) + } + a.copy(targets, a.valueNode(fn), 1) + } + } + + return root +} + +// genFunc generates constraints for function fn. +func (a *analysis) genFunc(cgn *cgnode) { + fn := cgn.fn + + impl := a.findIntrinsic(fn) + + if a.log != nil { + fmt.Fprintln(a.log) + fmt.Fprintln(a.log) + + // Hack: don't display body if intrinsic. + if impl != nil { + fn2 := *cgn.fn // copy + fn2.Locals = nil + fn2.Blocks = nil + fn2.WriteTo(a.log) + } else { + cgn.fn.WriteTo(a.log) + } + } + + if impl != nil { + impl(a, cgn) + return + } + + if fn.Blocks == nil { + // External function with no intrinsic treatment. + // We'll warn about calls to such functions at the end. + return + } + + if a.log != nil { + fmt.Fprintln(a.log, "; Creating nodes for local values") + } + + a.localval = make(map[ssa.Value]nodeid) + a.localobj = make(map[ssa.Value]nodeid) + + // The value nodes for the params are in the func object block. + params := a.funcParams(cgn.obj) + for _, p := range fn.Params { + a.setValueNode(p, params, cgn) + params += nodeid(a.sizeof(p.Type())) + } + + // Free variables are treated like global variables: + // the outer function sets them with MakeClosure; + // the inner function accesses them with Capture. + + // Create value nodes for all value instructions + // since SSA may contain forward references. + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + switch instr := instr.(type) { + case *ssa.Range: + // do nothing: it has a funky type, + // and *ssa.Next does all the work. + + case ssa.Value: + var comment string + if a.log != nil { + comment = instr.Name() + } + id := a.addNodes(instr.Type(), comment) + a.setValueNode(instr, id, cgn) + } + } + } + + // Generate constraints for instructions. + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + a.genInstr(cgn, instr) + } + } + + a.localval = nil + a.localobj = nil +} + +// genMethodsOf generates nodes and constraints for all methods of type T. +func (a *analysis) genMethodsOf(T types.Type) { + mset := a.prog.MethodSets.MethodSet(T) + for i, n := 0, mset.Len(); i < n; i++ { + a.valueNode(a.prog.Method(mset.At(i))) + } +} + +// generate generates offline constraints for the entire program. +func (a *analysis) generate() { + // Create a dummy node since we use the nodeid 0 for + // non-pointerlike variables. + a.addNodes(tInvalid, "(zero)") + + // Create the global node for panic values. + a.panicNode = a.addNodes(tEface, "panic") + + // Create nodes and constraints for all methods of reflect.rtype. + // (Shared contours are used by dynamic calls to reflect.Type + // methods---typically just String().) + if rtype := a.reflectRtypePtr; rtype != nil { + a.genMethodsOf(rtype) + } + + root := a.genRootCalls() + + if a.config.BuildCallGraph { + a.result.CallGraph = callgraph.New(root.fn) + } + + // Create nodes and constraints for all methods of all types + // that are dynamically accessible via reflection or interfaces. + for _, T := range a.prog.TypesWithMethodSets() { + a.genMethodsOf(T) + } + + // Generate constraints for entire program. + for len(a.genq) > 0 { + cgn := a.genq[0] + a.genq = a.genq[1:] + a.genFunc(cgn) + } + + // The runtime magically allocates os.Args; so should we. + if os := a.prog.ImportedPackage("os"); os != nil { + // In effect: os.Args = new([1]string)[:] + T := types.NewSlice(types.Typ[types.String]) + obj := a.addNodes(sliceToArray(T), "") + a.endObject(obj, nil, "") + a.addressOf(T, a.objectNode(nil, os.Var("Args")), obj) + } + + // Discard generation state, to avoid confusion after node renumbering. + a.panicNode = 0 + a.globalval = nil + a.localval = nil + a.localobj = nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/intrinsics.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/intrinsics.go new file mode 100644 index 00000000..a2257fec --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/intrinsics.go @@ -0,0 +1,320 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +// This package defines the treatment of intrinsics, i.e. library +// functions requiring special analytical treatment. +// +// Most of these are C or assembly functions, but even some Go +// functions require may special treatment if the analysis completely +// replaces the implementation of an API such as reflection. + +// TODO(adonovan): support a means of writing analytic summaries in +// the target code, so that users can summarise the effects of their +// own C functions using a snippet of Go. + +import ( + "fmt" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +// Instances of 'intrinsic' generate analysis constraints for calls to +// intrinsic functions. +// Implementations may exploit information from the calling site +// via cgn.callersite; for shared contours this is nil. +type intrinsic func(a *analysis, cgn *cgnode) + +// Initialized in explicit init() to defeat (spurious) initialization +// cycle error. +var intrinsicsByName = make(map[string]intrinsic) + +func init() { + // Key strings are from Function.String(). + // That little dot ۰ is an Arabic zero numeral (U+06F0), + // categories [Nd]. + for name, fn := range map[string]intrinsic{ + // Other packages. + "bytes.Equal": ext۰NoEffect, + "bytes.IndexByte": ext۰NoEffect, + "crypto/aes.decryptBlockAsm": ext۰NoEffect, + "crypto/aes.encryptBlockAsm": ext۰NoEffect, + "crypto/aes.expandKeyAsm": ext۰NoEffect, + "crypto/aes.hasAsm": ext۰NoEffect, + "crypto/md5.block": ext۰NoEffect, + "crypto/rc4.xorKeyStream": ext۰NoEffect, + "crypto/sha1.block": ext۰NoEffect, + "crypto/sha256.block": ext۰NoEffect, + "hash/crc32.castagnoliSSE42": ext۰NoEffect, + "hash/crc32.haveSSE42": ext۰NoEffect, + "math.Abs": ext۰NoEffect, + "math.Acos": ext۰NoEffect, + "math.Asin": ext۰NoEffect, + "math.Atan": ext۰NoEffect, + "math.Atan2": ext۰NoEffect, + "math.Ceil": ext۰NoEffect, + "math.Cos": ext۰NoEffect, + "math.Dim": ext۰NoEffect, + "math.Exp": ext۰NoEffect, + "math.Exp2": ext۰NoEffect, + "math.Expm1": ext۰NoEffect, + "math.Float32bits": ext۰NoEffect, + "math.Float32frombits": ext۰NoEffect, + "math.Float64bits": ext۰NoEffect, + "math.Float64frombits": ext۰NoEffect, + "math.Floor": ext۰NoEffect, + "math.Frexp": ext۰NoEffect, + "math.Hypot": ext۰NoEffect, + "math.Ldexp": ext۰NoEffect, + "math.Log": ext۰NoEffect, + "math.Log10": ext۰NoEffect, + "math.Log1p": ext۰NoEffect, + "math.Log2": ext۰NoEffect, + "math.Max": ext۰NoEffect, + "math.Min": ext۰NoEffect, + "math.Mod": ext۰NoEffect, + "math.Modf": ext۰NoEffect, + "math.Remainder": ext۰NoEffect, + "math.Sin": ext۰NoEffect, + "math.Sincos": ext۰NoEffect, + "math.Sqrt": ext۰NoEffect, + "math.Tan": ext۰NoEffect, + "math.Trunc": ext۰NoEffect, + "math/big.addMulVVW": ext۰NoEffect, + "math/big.addVV": ext۰NoEffect, + "math/big.addVW": ext۰NoEffect, + "math/big.bitLen": ext۰NoEffect, + "math/big.divWVW": ext۰NoEffect, + "math/big.divWW": ext۰NoEffect, + "math/big.mulAddVWW": ext۰NoEffect, + "math/big.mulWW": ext۰NoEffect, + "math/big.shlVU": ext۰NoEffect, + "math/big.shrVU": ext۰NoEffect, + "math/big.subVV": ext۰NoEffect, + "math/big.subVW": ext۰NoEffect, + "net.runtime_Semacquire": ext۰NoEffect, + "net.runtime_Semrelease": ext۰NoEffect, + "net.runtime_pollClose": ext۰NoEffect, + "net.runtime_pollOpen": ext۰NoEffect, + "net.runtime_pollReset": ext۰NoEffect, + "net.runtime_pollServerInit": ext۰NoEffect, + "net.runtime_pollSetDeadline": ext۰NoEffect, + "net.runtime_pollUnblock": ext۰NoEffect, + "net.runtime_pollWait": ext۰NoEffect, + "net.runtime_pollWaitCanceled": ext۰NoEffect, + "os.epipecheck": ext۰NoEffect, + "runtime.BlockProfile": ext۰NoEffect, + "runtime.Breakpoint": ext۰NoEffect, + "runtime.CPUProfile": ext۰NoEffect, // good enough + "runtime.Caller": ext۰NoEffect, + "runtime.Callers": ext۰NoEffect, // good enough + "runtime.FuncForPC": ext۰NoEffect, + "runtime.GC": ext۰NoEffect, + "runtime.GOMAXPROCS": ext۰NoEffect, + "runtime.Goexit": ext۰NoEffect, + "runtime.GoroutineProfile": ext۰NoEffect, + "runtime.Gosched": ext۰NoEffect, + "runtime.MemProfile": ext۰NoEffect, + "runtime.NumCPU": ext۰NoEffect, + "runtime.NumGoroutine": ext۰NoEffect, + "runtime.ReadMemStats": ext۰NoEffect, + "runtime.SetBlockProfileRate": ext۰NoEffect, + "runtime.SetCPUProfileRate": ext۰NoEffect, + "runtime.SetFinalizer": ext۰runtime۰SetFinalizer, + "runtime.Stack": ext۰NoEffect, + "runtime.ThreadCreateProfile": ext۰NoEffect, + "runtime.cstringToGo": ext۰NoEffect, + "runtime.funcentry_go": ext۰NoEffect, + "runtime.funcline_go": ext۰NoEffect, + "runtime.funcname_go": ext۰NoEffect, + "runtime.getgoroot": ext۰NoEffect, + "runtime/pprof.runtime_cyclesPerSecond": ext۰NoEffect, + "strings.IndexByte": ext۰NoEffect, + "sync.runtime_Semacquire": ext۰NoEffect, + "sync.runtime_Semrelease": ext۰NoEffect, + "sync.runtime_Syncsemacquire": ext۰NoEffect, + "sync.runtime_Syncsemcheck": ext۰NoEffect, + "sync.runtime_Syncsemrelease": ext۰NoEffect, + "sync.runtime_procPin": ext۰NoEffect, + "sync.runtime_procUnpin": ext۰NoEffect, + "sync.runtime_registerPool": ext۰NoEffect, + "sync/atomic.AddInt32": ext۰NoEffect, + "sync/atomic.AddInt64": ext۰NoEffect, + "sync/atomic.AddUint32": ext۰NoEffect, + "sync/atomic.AddUint64": ext۰NoEffect, + "sync/atomic.AddUintptr": ext۰NoEffect, + "sync/atomic.CompareAndSwapInt32": ext۰NoEffect, + "sync/atomic.CompareAndSwapUint32": ext۰NoEffect, + "sync/atomic.CompareAndSwapUint64": ext۰NoEffect, + "sync/atomic.CompareAndSwapUintptr": ext۰NoEffect, + "sync/atomic.LoadInt32": ext۰NoEffect, + "sync/atomic.LoadInt64": ext۰NoEffect, + "sync/atomic.LoadPointer": ext۰NoEffect, // ignore unsafe.Pointer for now + "sync/atomic.LoadUint32": ext۰NoEffect, + "sync/atomic.LoadUint64": ext۰NoEffect, + "sync/atomic.LoadUintptr": ext۰NoEffect, + "sync/atomic.StoreInt32": ext۰NoEffect, + "sync/atomic.StorePointer": ext۰NoEffect, // ignore unsafe.Pointer for now + "sync/atomic.StoreUint32": ext۰NoEffect, + "sync/atomic.StoreUintptr": ext۰NoEffect, + "syscall.Close": ext۰NoEffect, + "syscall.Exit": ext۰NoEffect, + "syscall.Getpid": ext۰NoEffect, + "syscall.Getwd": ext۰NoEffect, + "syscall.Kill": ext۰NoEffect, + "syscall.RawSyscall": ext۰NoEffect, + "syscall.RawSyscall6": ext۰NoEffect, + "syscall.Syscall": ext۰NoEffect, + "syscall.Syscall6": ext۰NoEffect, + "syscall.runtime_AfterFork": ext۰NoEffect, + "syscall.runtime_BeforeFork": ext۰NoEffect, + "syscall.setenv_c": ext۰NoEffect, + "time.Sleep": ext۰NoEffect, + "time.now": ext۰NoEffect, + "time.startTimer": ext۰NoEffect, + "time.stopTimer": ext۰NoEffect, + } { + intrinsicsByName[name] = fn + } +} + +// findIntrinsic returns the constraint generation function for an +// intrinsic function fn, or nil if the function should be handled normally. +// +func (a *analysis) findIntrinsic(fn *ssa.Function) intrinsic { + // Consult the *Function-keyed cache. + // A cached nil indicates a normal non-intrinsic function. + impl, ok := a.intrinsics[fn] + if !ok { + impl = intrinsicsByName[fn.String()] // may be nil + + if a.isReflect(fn) { + if !a.config.Reflection { + impl = ext۰NoEffect // reflection disabled + } else if impl == nil { + // Ensure all "reflect" code is treated intrinsically. + impl = ext۰NotYetImplemented + } + } + + a.intrinsics[fn] = impl + } + return impl +} + +// isReflect reports whether fn belongs to the "reflect" package. +func (a *analysis) isReflect(fn *ssa.Function) bool { + if a.reflectValueObj == nil { + return false // "reflect" package not loaded + } + reflectPackage := a.reflectValueObj.Pkg() + if fn.Pkg != nil && fn.Pkg.Object == reflectPackage { + return true + } + // Synthetic wrappers have a nil Pkg, so they slip through the + // previous check. Check the receiver package. + // TODO(adonovan): should synthetic wrappers have a non-nil Pkg? + if recv := fn.Signature.Recv(); recv != nil { + if named, ok := deref(recv.Type()).(*types.Named); ok { + if named.Obj().Pkg() == reflectPackage { + return true // e.g. wrapper of (reflect.Value).f + } + } + } + return false +} + +// A trivial intrinsic suitable for any function that does not: +// 1) induce aliases between its arguments or any global variables; +// 2) call any functions; or +// 3) create any labels. +// +// Many intrinsics (such as CompareAndSwapInt32) have a fourth kind of +// effect: loading or storing through a pointer. Though these could +// be significant, we deliberately ignore them because they are +// generally not worth the effort. +// +// We sometimes violate condition #3 if the function creates only +// non-function labels, as the control-flow graph is still sound. +// +func ext۰NoEffect(a *analysis, cgn *cgnode) {} + +func ext۰NotYetImplemented(a *analysis, cgn *cgnode) { + // TODO(adonovan): enable this warning when we've implemented + // enough that it's not unbearably annoying. + if true { + fn := cgn.fn + a.warnf(fn.Pos(), "unsound: intrinsic treatment of %s not yet implemented", fn) + } +} + +// ---------- func runtime.SetFinalizer(x, f interface{}) ---------- + +// runtime.SetFinalizer(x, f) +type runtimeSetFinalizerConstraint struct { + targets nodeid + f nodeid // (ptr) + x nodeid +} + +func (c *runtimeSetFinalizerConstraint) ptr() nodeid { return c.f } +func (c *runtimeSetFinalizerConstraint) indirect(nodes []nodeid) []nodeid { return nodes } +func (c *runtimeSetFinalizerConstraint) renumber(mapping []nodeid) { + c.targets = mapping[c.targets] + c.f = mapping[c.f] + c.x = mapping[c.x] +} + +func (c *runtimeSetFinalizerConstraint) String() string { + return fmt.Sprintf("runtime.SetFinalizer(n%d, n%d)", c.x, c.f) +} + +func (c *runtimeSetFinalizerConstraint) solve(a *analysis, _ *node, delta nodeset) { + for fObj := range delta { + tDyn, f, indirect := a.taggedValue(fObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + tSig, ok := tDyn.Underlying().(*types.Signature) + if !ok { + continue // not a function + } + if tSig.Recv() != nil { + panic(tSig) + } + if tSig.Params().Len() != 1 { + continue // not a unary function + } + + // Extract x to tmp. + tx := tSig.Params().At(0).Type() + tmp := a.addNodes(tx, "SetFinalizer.tmp") + a.typeAssert(tx, tmp, c.x, false) + + // Call f(tmp). + a.store(f, tmp, 1, a.sizeof(tx)) + + // Add dynamic call target. + if a.onlineCopy(c.targets, f) { + a.addWork(c.targets) + } + } +} + +func ext۰runtime۰SetFinalizer(a *analysis, cgn *cgnode) { + // This is the shared contour, used for dynamic calls. + targets := a.addOneNode(tInvalid, "SetFinalizer.targets", nil) + cgn.sites = append(cgn.sites, &callsite{targets: targets}) + params := a.funcParams(cgn.obj) + a.addConstraint(&runtimeSetFinalizerConstraint{ + targets: targets, + x: params, + f: params + 1, + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/labels.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/labels.go new file mode 100644 index 00000000..3fd8681b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/labels.go @@ -0,0 +1,152 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +import ( + "fmt" + "go/token" + "strings" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +// A Label is an entity that may be pointed to by a pointer, map, +// channel, 'func', slice or interface. +// +// Labels include: +// - functions +// - globals +// - tagged objects, representing interfaces and reflect.Values +// - arrays created by conversions (e.g. []byte("foo"), []byte(s)) +// - stack- and heap-allocated variables (including composite literals) +// - channels, maps and arrays created by make() +// - instrinsic or reflective operations that allocate (e.g. append, reflect.New) +// - instrinsic objects, e.g. the initial array behind os.Args. +// - and their subelements, e.g. "alloc.y[*].z" +// +// Labels are so varied that they defy good generalizations; +// some have no value, no callgraph node, or no position. +// Many objects have types that are inexpressible in Go: +// maps, channels, functions, tagged objects. +// +// At most one of Value() or ReflectType() may return non-nil. +// +type Label struct { + obj *object // the addressable memory location containing this label + subelement *fieldInfo // subelement path within obj, e.g. ".a.b[*].c" +} + +// Value returns the ssa.Value that allocated this label's object, if any. +func (l Label) Value() ssa.Value { + val, _ := l.obj.data.(ssa.Value) + return val +} + +// ReflectType returns the type represented by this label if it is an +// reflect.rtype instance object or *reflect.rtype-tagged object. +// +func (l Label) ReflectType() types.Type { + rtype, _ := l.obj.data.(types.Type) + return rtype +} + +// Path returns the path to the subelement of the object containing +// this label. For example, ".x[*].y". +// +func (l Label) Path() string { + return l.subelement.path() +} + +// Pos returns the position of this label, if known, zero otherwise. +func (l Label) Pos() token.Pos { + switch data := l.obj.data.(type) { + case ssa.Value: + return data.Pos() + case types.Type: + if nt, ok := deref(data).(*types.Named); ok { + return nt.Obj().Pos() + } + } + if cgn := l.obj.cgn; cgn != nil { + return cgn.fn.Pos() + } + return token.NoPos +} + +// String returns the printed form of this label. +// +// Examples: Object type: +// x (a variable) +// (sync.Mutex).Lock (a function) +// convert (array created by conversion) +// makemap (map allocated via make) +// makechan (channel allocated via make) +// makeinterface (tagged object allocated by makeinterface) +// (allocation in instrinsic) +// sync.Mutex (a reflect.rtype instance) +// (an instrinsic object) +// +// Labels within compound objects have subelement paths: +// x.y[*].z (a struct variable, x) +// append.y[*].z (array allocated by append) +// makeslice.y[*].z (array allocated via make) +// +// TODO(adonovan): expose func LabelString(*types.Package, Label). +// +func (l Label) String() string { + var s string + switch v := l.obj.data.(type) { + case types.Type: + return v.String() + + case string: + s = v // an intrinsic object (e.g. os.Args[*]) + + case nil: + if l.obj.cgn != nil { + // allocation by intrinsic or reflective operation + s = fmt.Sprintf("", l.obj.cgn.fn) + } else { + s = "" // should be unreachable + } + + case *ssa.Function: + s = v.String() + + case *ssa.Global: + s = v.String() + + case *ssa.Const: + s = v.Name() + + case *ssa.Alloc: + s = v.Comment + if s == "" { + s = "alloc" + } + + case *ssa.Call: + // Currently only calls to append can allocate objects. + if v.Call.Value.(*ssa.Builtin).Object().Name() != "append" { + panic("unhandled *ssa.Call label: " + v.Name()) + } + s = "append" + + case *ssa.MakeMap, *ssa.MakeChan, *ssa.MakeSlice, *ssa.Convert: + s = strings.ToLower(strings.TrimPrefix(fmt.Sprintf("%T", v), "*ssa.")) + + case *ssa.MakeInterface: + // MakeInterface is usually implicit in Go source (so + // Pos()==0), and tagged objects may be allocated + // synthetically (so no *MakeInterface data). + s = "makeinterface:" + v.X.Type().String() + + default: + panic(fmt.Sprintf("unhandled object data type: %T", v)) + } + + return s + l.subelement.path() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/opt.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/opt.go new file mode 100644 index 00000000..e27508af --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/opt.go @@ -0,0 +1,124 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +// This file defines the constraint optimiser ("pre-solver"). + +import ( + "fmt" +) + +func (a *analysis) optimize() { + a.renumber() + + // TODO(adonovan): opt: + // PE, LE, HVN, HRU, sparse bitsets, etc. +} + +// renumber permutes a.nodes so that all nodes within an addressable +// object appear before all non-addressable nodes, maintaining the +// order of nodes within the same object (as required by offsetAddr). +// +// renumber must update every nodeid in the analysis (constraints, +// Pointers, callgraph, etc) to reflect the new ordering. +// +// This is an optimisation to increase the locality and efficiency of +// sparse representations of points-to sets. (Typically only about +// 20% of nodes are within an object.) +// +// NB: nodes added during solving (e.g. for reflection, SetFinalizer) +// will be appended to the end. +// +func (a *analysis) renumber() { + N := nodeid(len(a.nodes)) + newNodes := make([]*node, N, N) + renumbering := make([]nodeid, N, N) // maps old to new + + var i, j nodeid + + // The zero node is special. + newNodes[j] = a.nodes[i] + renumbering[i] = j + i++ + j++ + + // Pass 1: object nodes. + for i < N { + obj := a.nodes[i].obj + if obj == nil { + i++ + continue + } + + end := i + nodeid(obj.size) + for i < end { + newNodes[j] = a.nodes[i] + renumbering[i] = j + i++ + j++ + } + } + nobj := j + + // Pass 2: non-object nodes. + for i = 1; i < N; { + obj := a.nodes[i].obj + if obj != nil { + i += nodeid(obj.size) + continue + } + + newNodes[j] = a.nodes[i] + renumbering[i] = j + i++ + j++ + } + + if j != N { + panic(fmt.Sprintf("internal error: j=%d, N=%d", j, N)) + } + + // Log the remapping table. + if a.log != nil { + fmt.Fprintf(a.log, "Renumbering nodes to improve density:\n") + fmt.Fprintf(a.log, "(%d object nodes of %d total)\n", nobj, N) + for old, new := range renumbering { + fmt.Fprintf(a.log, "\tn%d -> n%d\n", old, new) + } + } + + // Now renumber all existing nodeids to use the new node permutation. + // It is critical that all reachable nodeids are accounted for! + + // Renumber nodeids in queried Pointers. + for v, ptr := range a.result.Queries { + ptr.n = renumbering[ptr.n] + a.result.Queries[v] = ptr + } + for v, ptr := range a.result.IndirectQueries { + ptr.n = renumbering[ptr.n] + a.result.IndirectQueries[v] = ptr + } + + // Renumber nodeids in global objects. + for v, id := range a.globalobj { + a.globalobj[v] = renumbering[id] + } + + // Renumber nodeids in constraints. + for _, c := range a.constraints { + c.renumber(renumbering) + } + + // Renumber nodeids in the call graph. + for _, cgn := range a.cgnodes { + cgn.obj = renumbering[cgn.obj] + for _, site := range cgn.sites { + site.targets = renumbering[site.targets] + } + } + + a.nodes = newNodes +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/pointer_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/pointer_test.go new file mode 100644 index 00000000..4f276e70 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/pointer_test.go @@ -0,0 +1,573 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer_test + +// This test uses 'expectation' comments embedded within testdata/*.go +// files to specify the expected pointer analysis behaviour. +// See below for grammar. + +import ( + "bytes" + "errors" + "fmt" + "go/parser" + "go/token" + "io/ioutil" + "os" + "regexp" + "strconv" + "strings" + "testing" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/pointer" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/ssautil" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +var inputs = []string{ + "testdata/a_test.go", + "testdata/another.go", + "testdata/arrayreflect.go", + "testdata/arrays.go", + "testdata/channels.go", + "testdata/chanreflect.go", + "testdata/context.go", + "testdata/conv.go", + "testdata/finalizer.go", + "testdata/flow.go", + "testdata/fmtexcerpt.go", + "testdata/func.go", + "testdata/funcreflect.go", + "testdata/hello.go", + "testdata/interfaces.go", + "testdata/mapreflect.go", + "testdata/maps.go", + "testdata/panic.go", + "testdata/recur.go", + "testdata/reflect.go", + "testdata/rtti.go", + "testdata/structreflect.go", + "testdata/structs.go", +} + +// Expectation grammar: +// +// @calls f -> g +// +// A 'calls' expectation asserts that edge (f, g) appears in the +// callgraph. f and g are notated as per Function.String(), which +// may contain spaces (e.g. promoted method in anon struct). +// +// @pointsto a | b | c +// +// A 'pointsto' expectation asserts that the points-to set of its +// operand contains exactly the set of labels {a,b,c} notated as per +// labelString. +// +// A 'pointsto' expectation must appear on the same line as a +// print(x) statement; the expectation's operand is x. +// +// If one of the strings is "...", the expectation asserts that the +// points-to set at least the other labels. +// +// We use '|' because label names may contain spaces, e.g. methods +// of anonymous structs. +// +// From a theoretical perspective, concrete types in interfaces are +// labels too, but they are represented differently and so have a +// different expectation, @types, below. +// +// @types t | u | v +// +// A 'types' expectation asserts that the set of possible dynamic +// types of its interface operand is exactly {t,u,v}, notated per +// go/types.Type.String(). In other words, it asserts that the type +// component of the interface may point to that set of concrete type +// literals. It also works for reflect.Value, though the types +// needn't be concrete in that case. +// +// A 'types' expectation must appear on the same line as a +// print(x) statement; the expectation's operand is x. +// +// If one of the strings is "...", the expectation asserts that the +// interface's type may point to at least the other types. +// +// We use '|' because type names may contain spaces. +// +// @warning "regexp" +// +// A 'warning' expectation asserts that the analysis issues a +// warning that matches the regular expression within the string +// literal. +// +// @line id +// +// A line directive associates the name "id" with the current +// file:line. The string form of labels will use this id instead of +// a file:line, making @pointsto expectations more robust against +// perturbations in the source file. +// (NB, anon functions still include line numbers.) +// +type expectation struct { + kind string // "pointsto" | "types" | "calls" | "warning" + filename string + linenum int // source line number, 1-based + args []string + types []types.Type // for types +} + +func (e *expectation) String() string { + return fmt.Sprintf("@%s[%s]", e.kind, strings.Join(e.args, " | ")) +} + +func (e *expectation) errorf(format string, args ...interface{}) { + fmt.Printf("%s:%d: ", e.filename, e.linenum) + fmt.Printf(format, args...) + fmt.Println() +} + +func (e *expectation) needsProbe() bool { + return e.kind == "pointsto" || e.kind == "types" +} + +// Find probe (call to print(x)) of same source file/line as expectation. +func findProbe(prog *ssa.Program, probes map[*ssa.CallCommon]bool, queries map[ssa.Value]pointer.Pointer, e *expectation) (site *ssa.CallCommon, pts pointer.PointsToSet) { + for call := range probes { + pos := prog.Fset.Position(call.Pos()) + if pos.Line == e.linenum && pos.Filename == e.filename { + // TODO(adonovan): send this to test log (display only on failure). + // fmt.Printf("%s:%d: info: found probe for %s: %s\n", + // e.filename, e.linenum, e, p.arg0) // debugging + return call, queries[call.Args[0]].PointsTo() + } + } + return // e.g. analysis didn't reach this call +} + +func doOneInput(input, filename string) bool { + conf := loader.Config{SourceImports: true} + + // Parsing. + f, err := conf.ParseFile(filename, input) + if err != nil { + fmt.Println(err) + return false + } + + // Create single-file main package and import its dependencies. + conf.CreateFromFiles("main", f) + iprog, err := conf.Load() + if err != nil { + fmt.Println(err) + return false + } + mainPkgInfo := iprog.Created[0].Pkg + + // SSA creation + building. + prog := ssa.Create(iprog, ssa.SanityCheckFunctions) + prog.BuildAll() + + mainpkg := prog.Package(mainPkgInfo) + ptrmain := mainpkg // main package for the pointer analysis + if mainpkg.Func("main") == nil { + // No main function; assume it's a test. + ptrmain = prog.CreateTestMainPackage(mainpkg) + } + + // Find all calls to the built-in print(x). Analytically, + // print is a no-op, but it's a convenient hook for testing + // the PTS of an expression, so our tests use it. + probes := make(map[*ssa.CallCommon]bool) + for fn := range ssautil.AllFunctions(prog) { + if fn.Pkg == mainpkg { + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + if instr, ok := instr.(ssa.CallInstruction); ok { + if b, ok := instr.Common().Value.(*ssa.Builtin); ok && b.Name() == "print" { + probes[instr.Common()] = true + } + } + } + } + } + } + + ok := true + + lineMapping := make(map[string]string) // maps "file:line" to @line tag + + // Parse expectations in this input. + var exps []*expectation + re := regexp.MustCompile("// *@([a-z]*) *(.*)$") + lines := strings.Split(input, "\n") + for linenum, line := range lines { + linenum++ // make it 1-based + if matches := re.FindAllStringSubmatch(line, -1); matches != nil { + match := matches[0] + kind, rest := match[1], match[2] + e := &expectation{kind: kind, filename: filename, linenum: linenum} + + if kind == "line" { + if rest == "" { + ok = false + e.errorf("@%s expectation requires identifier", kind) + } else { + lineMapping[fmt.Sprintf("%s:%d", filename, linenum)] = rest + } + continue + } + + if e.needsProbe() && !strings.Contains(line, "print(") { + ok = false + e.errorf("@%s expectation must follow call to print(x)", kind) + continue + } + + switch kind { + case "pointsto": + e.args = split(rest, "|") + + case "types": + for _, typstr := range split(rest, "|") { + var t types.Type = types.Typ[types.Invalid] // means "..." + if typstr != "..." { + texpr, err := parser.ParseExpr(typstr) + if err != nil { + ok = false + // Don't print err since its location is bad. + e.errorf("'%s' is not a valid type", typstr) + continue + } + mainFileScope := mainpkg.Object.Scope().Child(0) + t, _, err = types.EvalNode(prog.Fset, texpr, mainpkg.Object, mainFileScope) + if err != nil { + ok = false + // Don't print err since its location is bad. + e.errorf("'%s' is not a valid type: %s", typstr, err) + continue + } + } + e.types = append(e.types, t) + } + + case "calls": + e.args = split(rest, "->") + // TODO(adonovan): eagerly reject the + // expectation if fn doesn't denote + // existing function, rather than fail + // the expectation after analysis. + if len(e.args) != 2 { + ok = false + e.errorf("@calls expectation wants 'caller -> callee' arguments") + continue + } + + case "warning": + lit, err := strconv.Unquote(strings.TrimSpace(rest)) + if err != nil { + ok = false + e.errorf("couldn't parse @warning operand: %s", err.Error()) + continue + } + e.args = append(e.args, lit) + + default: + ok = false + e.errorf("unknown expectation kind: %s", e) + continue + } + exps = append(exps, e) + } + } + + var log bytes.Buffer + + // Run the analysis. + config := &pointer.Config{ + Reflection: true, + BuildCallGraph: true, + Mains: []*ssa.Package{ptrmain}, + Log: &log, + } + for probe := range probes { + config.AddQuery(probe.Args[0]) + } + + // Print the log is there was an error or a panic. + complete := false + defer func() { + if !complete || !ok { + log.WriteTo(os.Stderr) + } + }() + + result, err := pointer.Analyze(config) + if err != nil { + panic(err) // internal error in pointer analysis + } + + // Check the expectations. + for _, e := range exps { + var call *ssa.CallCommon + var pts pointer.PointsToSet + var tProbe types.Type + if e.needsProbe() { + if call, pts = findProbe(prog, probes, result.Queries, e); call == nil { + ok = false + e.errorf("unreachable print() statement has expectation %s", e) + continue + } + tProbe = call.Args[0].Type() + if !pointer.CanPoint(tProbe) { + ok = false + e.errorf("expectation on non-pointerlike operand: %s", tProbe) + continue + } + } + + switch e.kind { + case "pointsto": + if !checkPointsToExpectation(e, pts, lineMapping, prog) { + ok = false + } + + case "types": + if !checkTypesExpectation(e, pts, tProbe) { + ok = false + } + + case "calls": + if !checkCallsExpectation(prog, e, result.CallGraph) { + ok = false + } + + case "warning": + if !checkWarningExpectation(prog, e, result.Warnings) { + ok = false + } + } + } + + complete = true + + // ok = false // debugging: uncomment to always see log + + return ok +} + +func labelString(l *pointer.Label, lineMapping map[string]string, prog *ssa.Program) string { + // Functions and Globals need no pos suffix, + // nor do allocations in intrinsic operations + // (for which we'll print the function name). + switch l.Value().(type) { + case nil, *ssa.Function, *ssa.Global: + return l.String() + } + + str := l.String() + if pos := l.Pos(); pos != token.NoPos { + // Append the position, using a @line tag instead of a line number, if defined. + posn := prog.Fset.Position(pos) + s := fmt.Sprintf("%s:%d", posn.Filename, posn.Line) + if tag, ok := lineMapping[s]; ok { + return fmt.Sprintf("%s@%s:%d", str, tag, posn.Column) + } + str = fmt.Sprintf("%s@%s", str, posn) + } + return str +} + +func checkPointsToExpectation(e *expectation, pts pointer.PointsToSet, lineMapping map[string]string, prog *ssa.Program) bool { + expected := make(map[string]int) + surplus := make(map[string]int) + exact := true + for _, g := range e.args { + if g == "..." { + exact = false + continue + } + expected[g]++ + } + // Find the set of labels that the probe's + // argument (x in print(x)) may point to. + for _, label := range pts.Labels() { + name := labelString(label, lineMapping, prog) + if expected[name] > 0 { + expected[name]-- + } else if exact { + surplus[name]++ + } + } + // Report multiset difference: + ok := true + for _, count := range expected { + if count > 0 { + ok = false + e.errorf("value does not alias these expected labels: %s", join(expected)) + break + } + } + for _, count := range surplus { + if count > 0 { + ok = false + e.errorf("value may additionally alias these labels: %s", join(surplus)) + break + } + } + return ok +} + +func checkTypesExpectation(e *expectation, pts pointer.PointsToSet, typ types.Type) bool { + var expected typeutil.Map + var surplus typeutil.Map + exact := true + for _, g := range e.types { + if g == types.Typ[types.Invalid] { + exact = false + continue + } + expected.Set(g, struct{}{}) + } + + if !pointer.CanHaveDynamicTypes(typ) { + e.errorf("@types expectation requires an interface- or reflect.Value-typed operand, got %s", typ) + return false + } + + // Find the set of types that the probe's + // argument (x in print(x)) may contain. + for _, T := range pts.DynamicTypes().Keys() { + if expected.At(T) != nil { + expected.Delete(T) + } else if exact { + surplus.Set(T, struct{}{}) + } + } + // Report set difference: + ok := true + if expected.Len() > 0 { + ok = false + e.errorf("interface cannot contain these types: %s", expected.KeysString()) + } + if surplus.Len() > 0 { + ok = false + e.errorf("interface may additionally contain these types: %s", surplus.KeysString()) + } + return ok +} + +var errOK = errors.New("OK") + +func checkCallsExpectation(prog *ssa.Program, e *expectation, cg *callgraph.Graph) bool { + found := make(map[string]int) + err := callgraph.GraphVisitEdges(cg, func(edge *callgraph.Edge) error { + // Name-based matching is inefficient but it allows us to + // match functions whose names that would not appear in an + // index ("") or which are not unique ("func@1.2"). + if edge.Caller.Func.String() == e.args[0] { + calleeStr := edge.Callee.Func.String() + if calleeStr == e.args[1] { + return errOK // expectation satisified; stop the search + } + found[calleeStr]++ + } + return nil + }) + if err == errOK { + return true + } + if len(found) == 0 { + e.errorf("didn't find any calls from %s", e.args[0]) + } + e.errorf("found no call from %s to %s, but only to %s", + e.args[0], e.args[1], join(found)) + return false +} + +func checkWarningExpectation(prog *ssa.Program, e *expectation, warnings []pointer.Warning) bool { + // TODO(adonovan): check the position part of the warning too? + re, err := regexp.Compile(e.args[0]) + if err != nil { + e.errorf("invalid regular expression in @warning expectation: %s", err.Error()) + return false + } + + if len(warnings) == 0 { + e.errorf("@warning %s expectation, but no warnings", strconv.Quote(e.args[0])) + return false + } + + for _, w := range warnings { + if re.MatchString(w.Message) { + return true + } + } + + e.errorf("@warning %s expectation not satised; found these warnings though:", strconv.Quote(e.args[0])) + for _, w := range warnings { + fmt.Printf("%s: warning: %s\n", prog.Fset.Position(w.Pos), w.Message) + } + return false +} + +func TestInput(t *testing.T) { + ok := true + + wd, err := os.Getwd() + if err != nil { + t.Errorf("os.Getwd: %s", err) + return + } + + // 'go test' does a chdir so that relative paths in + // diagnostics no longer make sense relative to the invoking + // shell's cwd. We print a special marker so that Emacs can + // make sense of them. + fmt.Fprintf(os.Stderr, "Entering directory `%s'\n", wd) + + for _, filename := range inputs { + content, err := ioutil.ReadFile(filename) + if err != nil { + t.Errorf("couldn't read file '%s': %s", filename, err) + continue + } + + if !doOneInput(string(content), filename) { + ok = false + } + } + if !ok { + t.Fail() + } +} + +// join joins the elements of multiset with " | "s. +func join(set map[string]int) string { + var buf bytes.Buffer + sep := "" + for name, count := range set { + for i := 0; i < count; i++ { + buf.WriteString(sep) + sep = " | " + buf.WriteString(name) + } + } + return buf.String() +} + +// split returns the list of sep-delimited non-empty strings in s. +func split(s, sep string) (r []string) { + for _, elem := range strings.Split(s, sep) { + elem = strings.TrimSpace(elem) + if elem != "" { + r = append(r, elem) + } + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/print.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/print.go new file mode 100644 index 00000000..a0b11e8a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/print.go @@ -0,0 +1,43 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +import "fmt" + +func (c *addrConstraint) String() string { + return fmt.Sprintf("addr n%d <- {&n%d}", c.dst, c.src) +} + +func (c *copyConstraint) String() string { + return fmt.Sprintf("copy n%d <- n%d", c.dst, c.src) +} + +func (c *loadConstraint) String() string { + return fmt.Sprintf("load n%d <- n%d[%d]", c.dst, c.src, c.offset) +} + +func (c *storeConstraint) String() string { + return fmt.Sprintf("store n%d[%d] <- n%d", c.dst, c.offset, c.src) +} + +func (c *offsetAddrConstraint) String() string { + return fmt.Sprintf("offsetAddr n%d <- n%d.#%d", c.dst, c.src, c.offset) +} + +func (c *typeFilterConstraint) String() string { + return fmt.Sprintf("typeFilter n%d <- n%d.(%s)", c.dst, c.src, c.typ) +} + +func (c *untagConstraint) String() string { + return fmt.Sprintf("untag n%d <- n%d.(%s)", c.dst, c.src, c.typ) +} + +func (c *invokeConstraint) String() string { + return fmt.Sprintf("invoke n%d.%s(n%d ...)", c.iface, c.method.Name(), c.params+1) +} + +func (n nodeid) String() string { + return fmt.Sprintf("n%d", n) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/reflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/reflect.go new file mode 100644 index 00000000..ed451774 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/reflect.go @@ -0,0 +1,1846 @@ +package pointer + +// This file implements the generation and resolution rules for +// constraints arising from the use of reflection in the target +// program. See doc.go for explanation of the representation. +// +// For consistency, the names of all parameters match those of the +// actual functions in the "reflect" package. +// +// To avoid proliferation of equivalent labels, instrinsics should +// memoize as much as possible, like TypeOf and Zero do for their +// tagged objects. +// +// TODO(adonovan): all {} functions are TODO. +// +// TODO(adonovan): this file is rather subtle. Explain how we derive +// the implementation of each reflect operator from its spec, +// including the subtleties of reflect.flag{Addr,RO,Indir}. +// [Hint: our implementation is as if reflect.flagIndir was always +// true, i.e. reflect.Values are pointers to tagged objects, there is +// no inline allocation optimization; and indirect tagged objects (not +// yet implemented) correspond to reflect.Values with +// reflect.flagAddr.] +// A picture would help too. + +import ( + "fmt" + "reflect" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +func init() { + for name, fn := range map[string]intrinsic{ + // reflect.Value methods. + "(reflect.Value).Addr": ext۰reflect۰Value۰Addr, + "(reflect.Value).Bool": ext۰NoEffect, + "(reflect.Value).Bytes": ext۰reflect۰Value۰Bytes, + "(reflect.Value).Call": ext۰reflect۰Value۰Call, + "(reflect.Value).CallSlice": ext۰reflect۰Value۰CallSlice, + "(reflect.Value).CanAddr": ext۰NoEffect, + "(reflect.Value).CanInterface": ext۰NoEffect, + "(reflect.Value).CanSet": ext۰NoEffect, + "(reflect.Value).Cap": ext۰NoEffect, + "(reflect.Value).Close": ext۰NoEffect, + "(reflect.Value).Complex": ext۰NoEffect, + "(reflect.Value).Convert": ext۰reflect۰Value۰Convert, + "(reflect.Value).Elem": ext۰reflect۰Value۰Elem, + "(reflect.Value).Field": ext۰reflect۰Value۰Field, + "(reflect.Value).FieldByIndex": ext۰reflect۰Value۰FieldByIndex, + "(reflect.Value).FieldByName": ext۰reflect۰Value۰FieldByName, + "(reflect.Value).FieldByNameFunc": ext۰reflect۰Value۰FieldByNameFunc, + "(reflect.Value).Float": ext۰NoEffect, + "(reflect.Value).Index": ext۰reflect۰Value۰Index, + "(reflect.Value).Int": ext۰NoEffect, + "(reflect.Value).Interface": ext۰reflect۰Value۰Interface, + "(reflect.Value).InterfaceData": ext۰NoEffect, + "(reflect.Value).IsNil": ext۰NoEffect, + "(reflect.Value).IsValid": ext۰NoEffect, + "(reflect.Value).Kind": ext۰NoEffect, + "(reflect.Value).Len": ext۰NoEffect, + "(reflect.Value).MapIndex": ext۰reflect۰Value۰MapIndex, + "(reflect.Value).MapKeys": ext۰reflect۰Value۰MapKeys, + "(reflect.Value).Method": ext۰reflect۰Value۰Method, + "(reflect.Value).MethodByName": ext۰reflect۰Value۰MethodByName, + "(reflect.Value).NumField": ext۰NoEffect, + "(reflect.Value).NumMethod": ext۰NoEffect, + "(reflect.Value).OverflowComplex": ext۰NoEffect, + "(reflect.Value).OverflowFloat": ext۰NoEffect, + "(reflect.Value).OverflowInt": ext۰NoEffect, + "(reflect.Value).OverflowUint": ext۰NoEffect, + "(reflect.Value).Pointer": ext۰NoEffect, + "(reflect.Value).Recv": ext۰reflect۰Value۰Recv, + "(reflect.Value).Send": ext۰reflect۰Value۰Send, + "(reflect.Value).Set": ext۰reflect۰Value۰Set, + "(reflect.Value).SetBool": ext۰NoEffect, + "(reflect.Value).SetBytes": ext۰reflect۰Value۰SetBytes, + "(reflect.Value).SetComplex": ext۰NoEffect, + "(reflect.Value).SetFloat": ext۰NoEffect, + "(reflect.Value).SetInt": ext۰NoEffect, + "(reflect.Value).SetLen": ext۰NoEffect, + "(reflect.Value).SetMapIndex": ext۰reflect۰Value۰SetMapIndex, + "(reflect.Value).SetPointer": ext۰reflect۰Value۰SetPointer, + "(reflect.Value).SetString": ext۰NoEffect, + "(reflect.Value).SetUint": ext۰NoEffect, + "(reflect.Value).Slice": ext۰reflect۰Value۰Slice, + "(reflect.Value).String": ext۰NoEffect, + "(reflect.Value).TryRecv": ext۰reflect۰Value۰Recv, + "(reflect.Value).TrySend": ext۰reflect۰Value۰Send, + "(reflect.Value).Type": ext۰NoEffect, + "(reflect.Value).Uint": ext۰NoEffect, + "(reflect.Value).UnsafeAddr": ext۰NoEffect, + + // Standalone reflect.* functions. + "reflect.Append": ext۰reflect۰Append, + "reflect.AppendSlice": ext۰reflect۰AppendSlice, + "reflect.Copy": ext۰reflect۰Copy, + "reflect.ChanOf": ext۰reflect۰ChanOf, + "reflect.DeepEqual": ext۰NoEffect, + "reflect.Indirect": ext۰reflect۰Indirect, + "reflect.MakeChan": ext۰reflect۰MakeChan, + "reflect.MakeFunc": ext۰reflect۰MakeFunc, + "reflect.MakeMap": ext۰reflect۰MakeMap, + "reflect.MakeSlice": ext۰reflect۰MakeSlice, + "reflect.MapOf": ext۰reflect۰MapOf, + "reflect.New": ext۰reflect۰New, + "reflect.NewAt": ext۰reflect۰NewAt, + "reflect.PtrTo": ext۰reflect۰PtrTo, + "reflect.Select": ext۰reflect۰Select, + "reflect.SliceOf": ext۰reflect۰SliceOf, + "reflect.TypeOf": ext۰reflect۰TypeOf, + "reflect.ValueOf": ext۰reflect۰ValueOf, + "reflect.Zero": ext۰reflect۰Zero, + "reflect.init": ext۰NoEffect, + + // *reflect.rtype methods + "(*reflect.rtype).Align": ext۰NoEffect, + "(*reflect.rtype).AssignableTo": ext۰NoEffect, + "(*reflect.rtype).Bits": ext۰NoEffect, + "(*reflect.rtype).ChanDir": ext۰NoEffect, + "(*reflect.rtype).ConvertibleTo": ext۰NoEffect, + "(*reflect.rtype).Elem": ext۰reflect۰rtype۰Elem, + "(*reflect.rtype).Field": ext۰reflect۰rtype۰Field, + "(*reflect.rtype).FieldAlign": ext۰NoEffect, + "(*reflect.rtype).FieldByIndex": ext۰reflect۰rtype۰FieldByIndex, + "(*reflect.rtype).FieldByName": ext۰reflect۰rtype۰FieldByName, + "(*reflect.rtype).FieldByNameFunc": ext۰reflect۰rtype۰FieldByNameFunc, + "(*reflect.rtype).Implements": ext۰NoEffect, + "(*reflect.rtype).In": ext۰reflect۰rtype۰In, + "(*reflect.rtype).IsVariadic": ext۰NoEffect, + "(*reflect.rtype).Key": ext۰reflect۰rtype۰Key, + "(*reflect.rtype).Kind": ext۰NoEffect, + "(*reflect.rtype).Len": ext۰NoEffect, + "(*reflect.rtype).Method": ext۰reflect۰rtype۰Method, + "(*reflect.rtype).MethodByName": ext۰reflect۰rtype۰MethodByName, + "(*reflect.rtype).Name": ext۰NoEffect, + "(*reflect.rtype).NumField": ext۰NoEffect, + "(*reflect.rtype).NumIn": ext۰NoEffect, + "(*reflect.rtype).NumMethod": ext۰NoEffect, + "(*reflect.rtype).NumOut": ext۰NoEffect, + "(*reflect.rtype).Out": ext۰reflect۰rtype۰Out, + "(*reflect.rtype).PkgPath": ext۰NoEffect, + "(*reflect.rtype).Size": ext۰NoEffect, + "(*reflect.rtype).String": ext۰NoEffect, + } { + intrinsicsByName[name] = fn + } +} + +// -------------------- (reflect.Value) -------------------- + +func ext۰reflect۰Value۰Addr(a *analysis, cgn *cgnode) {} + +// ---------- func (Value).Bytes() Value ---------- + +// result = v.Bytes() +type rVBytesConstraint struct { + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVBytesConstraint) ptr() nodeid { return c.v } +func (c *rVBytesConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVBytesConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVBytesConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Bytes()", c.result, c.v) +} + +func (c *rVBytesConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, slice, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + tSlice, ok := tDyn.Underlying().(*types.Slice) + if ok && types.Identical(tSlice.Elem(), types.Typ[types.Uint8]) { + if a.onlineCopy(c.result, slice) { + changed = true + } + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰Bytes(a *analysis, cgn *cgnode) { + a.addConstraint(&rVBytesConstraint{ + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (Value).Call(in []Value) []Value ---------- + +// result = v.Call(in) +type rVCallConstraint struct { + cgn *cgnode + targets nodeid + v nodeid // (ptr) + arg nodeid // = in[*] + result nodeid // (indirect) + dotdotdot bool // interpret last arg as a "..." slice +} + +func (c *rVCallConstraint) ptr() nodeid { return c.v } +func (c *rVCallConstraint) indirect(nodes []nodeid) []nodeid { + nodes = append(nodes, c.result) + // TODO(adonovan): we may be able to handle 'targets' out-of-band + // so that all implementations indirect() return a single value. + // We can then dispense with the slice. + nodes = append(nodes, c.targets) + return nodes +} +func (c *rVCallConstraint) renumber(mapping []nodeid) { + c.targets = mapping[c.targets] + c.v = mapping[c.v] + c.arg = mapping[c.arg] + c.result = mapping[c.result] +} + +func (c *rVCallConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Call(n%d)", c.result, c.v, c.arg) +} + +func (c *rVCallConstraint) solve(a *analysis, _ *node, delta nodeset) { + if c.targets == 0 { + panic("no targets") + } + + changed := false + for vObj := range delta { + tDyn, fn, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + tSig, ok := tDyn.Underlying().(*types.Signature) + if !ok { + continue // not a function + } + if tSig.Recv() != nil { + panic(tSig) // TODO(adonovan): rethink when we implement Method() + } + + // Add dynamic call target. + if a.onlineCopy(c.targets, fn) { + a.addWork(c.targets) + // TODO(adonovan): is 'else continue' a sound optimisation here? + } + + // Allocate a P/R block. + tParams := tSig.Params() + tResults := tSig.Results() + params := a.addNodes(tParams, "rVCall.params") + results := a.addNodes(tResults, "rVCall.results") + + // Make a dynamic call to 'fn'. + a.store(fn, params, 1, a.sizeof(tParams)) + a.load(results, fn, 1+a.sizeof(tParams), a.sizeof(tResults)) + + // Populate P by type-asserting each actual arg (all merged in c.arg). + for i, n := 0, tParams.Len(); i < n; i++ { + T := tParams.At(i).Type() + a.typeAssert(T, params, c.arg, false) + params += nodeid(a.sizeof(T)) + } + + // Use R by tagging and copying each actual result to c.result. + for i, n := 0, tResults.Len(); i < n; i++ { + T := tResults.At(i).Type() + // Convert from an arbitrary type to a reflect.Value + // (like MakeInterface followed by reflect.ValueOf). + if isInterface(T) { + // (don't tag) + if a.onlineCopy(c.result, results) { + changed = true + } + } else { + obj := a.makeTagged(T, c.cgn, nil) + a.onlineCopyN(obj+1, results, a.sizeof(T)) + if a.addLabel(c.result, obj) { // (true) + changed = true + } + } + results += nodeid(a.sizeof(T)) + } + } + if changed { + a.addWork(c.result) + } +} + +// Common code for direct (inlined) and indirect calls to (reflect.Value).Call. +func reflectCallImpl(a *analysis, cgn *cgnode, site *callsite, recv, arg nodeid, dotdotdot bool) nodeid { + // Allocate []reflect.Value array for the result. + ret := a.nextNode() + a.addNodes(types.NewArray(a.reflectValueObj.Type(), 1), "rVCall.ret") + a.endObject(ret, cgn, nil) + + // pts(targets) will be the set of possible call targets. + site.targets = a.addOneNode(tInvalid, "rvCall.targets", nil) + + // All arguments are merged since they arrive in a slice. + argelts := a.addOneNode(a.reflectValueObj.Type(), "rVCall.args", nil) + a.load(argelts, arg, 1, 1) // slice elements + + a.addConstraint(&rVCallConstraint{ + cgn: cgn, + targets: site.targets, + v: recv, + arg: argelts, + result: ret + 1, // results go into elements of ret + dotdotdot: dotdotdot, + }) + return ret +} + +func reflectCall(a *analysis, cgn *cgnode, dotdotdot bool) { + // This is the shared contour implementation of (reflect.Value).Call + // and CallSlice, as used by indirect calls (rare). + // Direct calls are inlined in gen.go, eliding the + // intermediate cgnode for Call. + site := new(callsite) + cgn.sites = append(cgn.sites, site) + recv := a.funcParams(cgn.obj) + arg := recv + 1 + ret := reflectCallImpl(a, cgn, site, recv, arg, dotdotdot) + a.addressOf(cgn.fn.Signature.Results().At(0).Type(), a.funcResults(cgn.obj), ret) +} + +func ext۰reflect۰Value۰Call(a *analysis, cgn *cgnode) { + reflectCall(a, cgn, false) +} + +func ext۰reflect۰Value۰CallSlice(a *analysis, cgn *cgnode) { + // TODO(adonovan): implement. Also, inline direct calls in gen.go too. + if false { + reflectCall(a, cgn, true) + } +} + +func ext۰reflect۰Value۰Convert(a *analysis, cgn *cgnode) {} + +// ---------- func (Value).Elem() Value ---------- + +// result = v.Elem() +type rVElemConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVElemConstraint) ptr() nodeid { return c.v } +func (c *rVElemConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVElemConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVElemConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Elem()", c.result, c.v) +} + +func (c *rVElemConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, payload, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + switch t := tDyn.Underlying().(type) { + case *types.Interface: + if a.onlineCopy(c.result, payload) { + changed = true + } + + case *types.Pointer: + obj := a.makeTagged(t.Elem(), c.cgn, nil) + a.load(obj+1, payload, 0, a.sizeof(t.Elem())) + if a.addLabel(c.result, obj) { + changed = true + } + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰Elem(a *analysis, cgn *cgnode) { + a.addConstraint(&rVElemConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰Value۰Field(a *analysis, cgn *cgnode) {} +func ext۰reflect۰Value۰FieldByIndex(a *analysis, cgn *cgnode) {} +func ext۰reflect۰Value۰FieldByName(a *analysis, cgn *cgnode) {} +func ext۰reflect۰Value۰FieldByNameFunc(a *analysis, cgn *cgnode) {} + +// ---------- func (Value).Index() Value ---------- + +// result = v.Index() +type rVIndexConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVIndexConstraint) ptr() nodeid { return c.v } +func (c *rVIndexConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVIndexConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVIndexConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Index()", c.result, c.v) +} + +func (c *rVIndexConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, payload, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + var res nodeid + switch t := tDyn.Underlying().(type) { + case *types.Array: + res = a.makeTagged(t.Elem(), c.cgn, nil) + a.onlineCopyN(res+1, payload+1, a.sizeof(t.Elem())) + + case *types.Slice: + res = a.makeTagged(t.Elem(), c.cgn, nil) + a.load(res+1, payload, 1, a.sizeof(t.Elem())) + + case *types.Basic: + if t.Kind() == types.String { + res = a.makeTagged(types.Typ[types.Rune], c.cgn, nil) + } + } + if res != 0 && a.addLabel(c.result, res) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰Index(a *analysis, cgn *cgnode) { + a.addConstraint(&rVIndexConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (Value).Interface() Value ---------- + +// result = v.Interface() +type rVInterfaceConstraint struct { + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVInterfaceConstraint) ptr() nodeid { return c.v } +func (c *rVInterfaceConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVInterfaceConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVInterfaceConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Interface()", c.result, c.v) +} + +func (c *rVInterfaceConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, payload, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + if isInterface(tDyn) { + if a.onlineCopy(c.result, payload) { + a.addWork(c.result) + } + } else { + if a.addLabel(c.result, vObj) { + changed = true + } + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰Interface(a *analysis, cgn *cgnode) { + a.addConstraint(&rVInterfaceConstraint{ + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (Value).MapIndex(Value) Value ---------- + +// result = v.MapIndex(_) +type rVMapIndexConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVMapIndexConstraint) ptr() nodeid { return c.v } +func (c *rVMapIndexConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVMapIndexConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVMapIndexConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.MapIndex(_)", c.result, c.v) +} + +func (c *rVMapIndexConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, m, indirect := a.taggedValue(vObj) + tMap, _ := tDyn.Underlying().(*types.Map) + if tMap == nil { + continue // not a map + } + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + obj := a.makeTagged(tMap.Elem(), c.cgn, nil) + a.load(obj+1, m, a.sizeof(tMap.Key()), a.sizeof(tMap.Elem())) + if a.addLabel(c.result, obj) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰MapIndex(a *analysis, cgn *cgnode) { + a.addConstraint(&rVMapIndexConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (Value).MapKeys() []Value ---------- + +// result = v.MapKeys() +type rVMapKeysConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVMapKeysConstraint) ptr() nodeid { return c.v } +func (c *rVMapKeysConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVMapKeysConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVMapKeysConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.MapKeys()", c.result, c.v) +} + +func (c *rVMapKeysConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, m, indirect := a.taggedValue(vObj) + tMap, _ := tDyn.Underlying().(*types.Map) + if tMap == nil { + continue // not a map + } + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + kObj := a.makeTagged(tMap.Key(), c.cgn, nil) + a.load(kObj+1, m, 0, a.sizeof(tMap.Key())) + if a.addLabel(c.result, kObj) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰MapKeys(a *analysis, cgn *cgnode) { + // Allocate an array for the result. + obj := a.nextNode() + T := types.NewSlice(a.reflectValueObj.Type()) + a.addNodes(sliceToArray(T), "reflect.MapKeys result") + a.endObject(obj, cgn, nil) + a.addressOf(T, a.funcResults(cgn.obj), obj) + + a.addConstraint(&rVMapKeysConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: obj + 1, // result is stored in array elems + }) +} + +func ext۰reflect۰Value۰Method(a *analysis, cgn *cgnode) {} +func ext۰reflect۰Value۰MethodByName(a *analysis, cgn *cgnode) {} + +// ---------- func (Value).Recv(Value) ---------- + +// result, _ = v.Recv() +type rVRecvConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVRecvConstraint) ptr() nodeid { return c.v } +func (c *rVRecvConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVRecvConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVRecvConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Recv()", c.result, c.v) +} + +func (c *rVRecvConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, ch, indirect := a.taggedValue(vObj) + tChan, _ := tDyn.Underlying().(*types.Chan) + if tChan == nil { + continue // not a channel + } + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + tElem := tChan.Elem() + elemObj := a.makeTagged(tElem, c.cgn, nil) + a.load(elemObj+1, ch, 0, a.sizeof(tElem)) + if a.addLabel(c.result, elemObj) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰Recv(a *analysis, cgn *cgnode) { + a.addConstraint(&rVRecvConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (Value).Send(Value) ---------- + +// v.Send(x) +type rVSendConstraint struct { + cgn *cgnode + v nodeid // (ptr) + x nodeid +} + +func (c *rVSendConstraint) ptr() nodeid { return c.v } +func (c *rVSendConstraint) indirect(nodes []nodeid) []nodeid { return nodes } +func (c *rVSendConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.x = mapping[c.x] +} + +func (c *rVSendConstraint) String() string { + return fmt.Sprintf("reflect n%d.Send(n%d)", c.v, c.x) +} + +func (c *rVSendConstraint) solve(a *analysis, _ *node, delta nodeset) { + for vObj := range delta { + tDyn, ch, indirect := a.taggedValue(vObj) + tChan, _ := tDyn.Underlying().(*types.Chan) + if tChan == nil { + continue // not a channel + } + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + // Extract x's payload to xtmp, then store to channel. + tElem := tChan.Elem() + xtmp := a.addNodes(tElem, "Send.xtmp") + a.typeAssert(tElem, xtmp, c.x, false) + a.store(ch, xtmp, 0, a.sizeof(tElem)) + } +} + +func ext۰reflect۰Value۰Send(a *analysis, cgn *cgnode) { + params := a.funcParams(cgn.obj) + a.addConstraint(&rVSendConstraint{ + cgn: cgn, + v: params, + x: params + 1, + }) +} + +func ext۰reflect۰Value۰Set(a *analysis, cgn *cgnode) {} + +// ---------- func (Value).SetBytes(x []byte) ---------- + +// v.SetBytes(x) +type rVSetBytesConstraint struct { + cgn *cgnode + v nodeid // (ptr) + x nodeid +} + +func (c *rVSetBytesConstraint) ptr() nodeid { return c.v } +func (c *rVSetBytesConstraint) indirect(nodes []nodeid) []nodeid { return nodes } +func (c *rVSetBytesConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.x = mapping[c.x] +} + +func (c *rVSetBytesConstraint) String() string { + return fmt.Sprintf("reflect n%d.SetBytes(n%d)", c.v, c.x) +} + +func (c *rVSetBytesConstraint) solve(a *analysis, _ *node, delta nodeset) { + for vObj := range delta { + tDyn, slice, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + tSlice, ok := tDyn.Underlying().(*types.Slice) + if ok && types.Identical(tSlice.Elem(), types.Typ[types.Uint8]) { + if a.onlineCopy(slice, c.x) { + a.addWork(slice) + } + } + } +} + +func ext۰reflect۰Value۰SetBytes(a *analysis, cgn *cgnode) { + params := a.funcParams(cgn.obj) + a.addConstraint(&rVSetBytesConstraint{ + cgn: cgn, + v: params, + x: params + 1, + }) +} + +// ---------- func (Value).SetMapIndex(k Value, v Value) ---------- + +// v.SetMapIndex(key, val) +type rVSetMapIndexConstraint struct { + cgn *cgnode + v nodeid // (ptr) + key nodeid + val nodeid +} + +func (c *rVSetMapIndexConstraint) ptr() nodeid { return c.v } +func (c *rVSetMapIndexConstraint) indirect(nodes []nodeid) []nodeid { return nodes } +func (c *rVSetMapIndexConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.key = mapping[c.key] + c.val = mapping[c.val] +} + +func (c *rVSetMapIndexConstraint) String() string { + return fmt.Sprintf("reflect n%d.SetMapIndex(n%d, n%d)", c.v, c.key, c.val) +} + +func (c *rVSetMapIndexConstraint) solve(a *analysis, _ *node, delta nodeset) { + for vObj := range delta { + tDyn, m, indirect := a.taggedValue(vObj) + tMap, _ := tDyn.Underlying().(*types.Map) + if tMap == nil { + continue // not a map + } + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + keysize := a.sizeof(tMap.Key()) + + // Extract key's payload to keytmp, then store to map key. + keytmp := a.addNodes(tMap.Key(), "SetMapIndex.keytmp") + a.typeAssert(tMap.Key(), keytmp, c.key, false) + a.store(m, keytmp, 0, keysize) + + // Extract val's payload to vtmp, then store to map value. + valtmp := a.addNodes(tMap.Elem(), "SetMapIndex.valtmp") + a.typeAssert(tMap.Elem(), valtmp, c.val, false) + a.store(m, valtmp, keysize, a.sizeof(tMap.Elem())) + } +} + +func ext۰reflect۰Value۰SetMapIndex(a *analysis, cgn *cgnode) { + params := a.funcParams(cgn.obj) + a.addConstraint(&rVSetMapIndexConstraint{ + cgn: cgn, + v: params, + key: params + 1, + val: params + 2, + }) +} + +func ext۰reflect۰Value۰SetPointer(a *analysis, cgn *cgnode) {} + +// ---------- func (Value).Slice(v Value, i, j int) ---------- + +// result = v.Slice(_, _) +type rVSliceConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rVSliceConstraint) ptr() nodeid { return c.v } +func (c *rVSliceConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rVSliceConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *rVSliceConstraint) String() string { + return fmt.Sprintf("n%d = reflect n%d.Slice(_, _)", c.result, c.v) +} + +func (c *rVSliceConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, payload, indirect := a.taggedValue(vObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + var res nodeid + switch t := tDyn.Underlying().(type) { + case *types.Pointer: + if tArr, ok := t.Elem().Underlying().(*types.Array); ok { + // pointer to array + res = a.makeTagged(types.NewSlice(tArr.Elem()), c.cgn, nil) + if a.onlineCopy(res+1, payload) { + a.addWork(res + 1) + } + } + + case *types.Array: + // TODO(adonovan): implement addressable + // arrays when we do indirect tagged objects. + + case *types.Slice: + res = vObj + + case *types.Basic: + if t == types.Typ[types.String] { + res = vObj + } + } + + if res != 0 && a.addLabel(c.result, res) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Value۰Slice(a *analysis, cgn *cgnode) { + a.addConstraint(&rVSliceConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// -------------------- Standalone reflect functions -------------------- + +func ext۰reflect۰Append(a *analysis, cgn *cgnode) {} +func ext۰reflect۰AppendSlice(a *analysis, cgn *cgnode) {} +func ext۰reflect۰Copy(a *analysis, cgn *cgnode) {} + +// ---------- func ChanOf(ChanDir, Type) Type ---------- + +// result = ChanOf(dir, t) +type reflectChanOfConstraint struct { + cgn *cgnode + t nodeid // (ptr) + result nodeid // (indirect) + dirs []types.ChanDir +} + +func (c *reflectChanOfConstraint) ptr() nodeid { return c.t } +func (c *reflectChanOfConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectChanOfConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *reflectChanOfConstraint) String() string { + return fmt.Sprintf("n%d = reflect.ChanOf(n%d)", c.result, c.t) +} + +func (c *reflectChanOfConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for tObj := range delta { + T := a.rtypeTaggedValue(tObj) + + for _, dir := range c.dirs { + if a.addLabel(c.result, a.makeRtype(types.NewChan(dir, T))) { + changed = true + } + } + } + if changed { + a.addWork(c.result) + } +} + +// dirMap maps reflect.ChanDir to the set of channel types generated by ChanOf. +var dirMap = [...][]types.ChanDir{ + 0: {types.SendOnly, types.RecvOnly, types.SendRecv}, // unknown + reflect.RecvDir: {types.RecvOnly}, + reflect.SendDir: {types.SendOnly}, + reflect.BothDir: {types.SendRecv}, +} + +func ext۰reflect۰ChanOf(a *analysis, cgn *cgnode) { + // If we have access to the callsite, + // and the channel argument is a constant (as is usual), + // only generate the requested direction. + var dir reflect.ChanDir // unknown + if site := cgn.callersite; site != nil { + if c, ok := site.instr.Common().Args[0].(*ssa.Const); ok { + v, _ := exact.Int64Val(c.Value) + if 0 <= v && v <= int64(reflect.BothDir) { + dir = reflect.ChanDir(v) + } + } + } + + params := a.funcParams(cgn.obj) + a.addConstraint(&reflectChanOfConstraint{ + cgn: cgn, + t: params + 1, + result: a.funcResults(cgn.obj), + dirs: dirMap[dir], + }) +} + +// ---------- func Indirect(v Value) Value ---------- + +// result = Indirect(v) +type reflectIndirectConstraint struct { + cgn *cgnode + v nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectIndirectConstraint) ptr() nodeid { return c.v } +func (c *reflectIndirectConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectIndirectConstraint) renumber(mapping []nodeid) { + c.v = mapping[c.v] + c.result = mapping[c.result] +} + +func (c *reflectIndirectConstraint) String() string { + return fmt.Sprintf("n%d = reflect.Indirect(n%d)", c.result, c.v) +} + +func (c *reflectIndirectConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for vObj := range delta { + tDyn, _, _ := a.taggedValue(vObj) + var res nodeid + if tPtr, ok := tDyn.Underlying().(*types.Pointer); ok { + // load the payload of the pointer's tagged object + // into a new tagged object + res = a.makeTagged(tPtr.Elem(), c.cgn, nil) + a.load(res+1, vObj+1, 0, a.sizeof(tPtr.Elem())) + } else { + res = vObj + } + + if a.addLabel(c.result, res) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Indirect(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectIndirectConstraint{ + cgn: cgn, + v: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func MakeChan(Type) Value ---------- + +// result = MakeChan(typ) +type reflectMakeChanConstraint struct { + cgn *cgnode + typ nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectMakeChanConstraint) ptr() nodeid { return c.typ } +func (c *reflectMakeChanConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectMakeChanConstraint) renumber(mapping []nodeid) { + c.typ = mapping[c.typ] + c.result = mapping[c.result] +} + +func (c *reflectMakeChanConstraint) String() string { + return fmt.Sprintf("n%d = reflect.MakeChan(n%d)", c.result, c.typ) +} + +func (c *reflectMakeChanConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for typObj := range delta { + T := a.rtypeTaggedValue(typObj) + tChan, ok := T.Underlying().(*types.Chan) + if !ok || tChan.Dir() != types.SendRecv { + continue // not a bidirectional channel type + } + + obj := a.nextNode() + a.addNodes(tChan.Elem(), "reflect.MakeChan.value") + a.endObject(obj, c.cgn, nil) + + // put its address in a new T-tagged object + id := a.makeTagged(T, c.cgn, nil) + a.addLabel(id+1, obj) + + // flow the T-tagged object to the result + if a.addLabel(c.result, id) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰MakeChan(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectMakeChanConstraint{ + cgn: cgn, + typ: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰MakeFunc(a *analysis, cgn *cgnode) {} + +// ---------- func MakeMap(Type) Value ---------- + +// result = MakeMap(typ) +type reflectMakeMapConstraint struct { + cgn *cgnode + typ nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectMakeMapConstraint) ptr() nodeid { return c.typ } +func (c *reflectMakeMapConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectMakeMapConstraint) renumber(mapping []nodeid) { + c.typ = mapping[c.typ] + c.result = mapping[c.result] +} + +func (c *reflectMakeMapConstraint) String() string { + return fmt.Sprintf("n%d = reflect.MakeMap(n%d)", c.result, c.typ) +} + +func (c *reflectMakeMapConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for typObj := range delta { + T := a.rtypeTaggedValue(typObj) + tMap, ok := T.Underlying().(*types.Map) + if !ok { + continue // not a map type + } + + mapObj := a.nextNode() + a.addNodes(tMap.Key(), "reflect.MakeMap.key") + a.addNodes(tMap.Elem(), "reflect.MakeMap.value") + a.endObject(mapObj, c.cgn, nil) + + // put its address in a new T-tagged object + id := a.makeTagged(T, c.cgn, nil) + a.addLabel(id+1, mapObj) + + // flow the T-tagged object to the result + if a.addLabel(c.result, id) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰MakeMap(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectMakeMapConstraint{ + cgn: cgn, + typ: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func MakeSlice(Type) Value ---------- + +// result = MakeSlice(typ) +type reflectMakeSliceConstraint struct { + cgn *cgnode + typ nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectMakeSliceConstraint) ptr() nodeid { return c.typ } +func (c *reflectMakeSliceConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectMakeSliceConstraint) renumber(mapping []nodeid) { + c.typ = mapping[c.typ] + c.result = mapping[c.result] +} + +func (c *reflectMakeSliceConstraint) String() string { + return fmt.Sprintf("n%d = reflect.MakeSlice(n%d)", c.result, c.typ) +} + +func (c *reflectMakeSliceConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for typObj := range delta { + T := a.rtypeTaggedValue(typObj) + if _, ok := T.Underlying().(*types.Slice); !ok { + continue // not a slice type + } + + obj := a.nextNode() + a.addNodes(sliceToArray(T), "reflect.MakeSlice") + a.endObject(obj, c.cgn, nil) + + // put its address in a new T-tagged object + id := a.makeTagged(T, c.cgn, nil) + a.addLabel(id+1, obj) + + // flow the T-tagged object to the result + if a.addLabel(c.result, id) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰MakeSlice(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectMakeSliceConstraint{ + cgn: cgn, + typ: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰MapOf(a *analysis, cgn *cgnode) {} + +// ---------- func New(Type) Value ---------- + +// result = New(typ) +type reflectNewConstraint struct { + cgn *cgnode + typ nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectNewConstraint) ptr() nodeid { return c.typ } +func (c *reflectNewConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectNewConstraint) renumber(mapping []nodeid) { + c.typ = mapping[c.typ] + c.result = mapping[c.result] +} + +func (c *reflectNewConstraint) String() string { + return fmt.Sprintf("n%d = reflect.New(n%d)", c.result, c.typ) +} + +func (c *reflectNewConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for typObj := range delta { + T := a.rtypeTaggedValue(typObj) + + // allocate new T object + newObj := a.nextNode() + a.addNodes(T, "reflect.New") + a.endObject(newObj, c.cgn, nil) + + // put its address in a new *T-tagged object + id := a.makeTagged(types.NewPointer(T), c.cgn, nil) + a.addLabel(id+1, newObj) + + // flow the pointer to the result + if a.addLabel(c.result, id) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰New(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectNewConstraint{ + cgn: cgn, + typ: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰NewAt(a *analysis, cgn *cgnode) { + ext۰reflect۰New(a, cgn) + + // TODO(adonovan): also report dynamic calls to unsound intrinsics. + if site := cgn.callersite; site != nil { + a.warnf(site.pos(), "unsound: %s contains a reflect.NewAt() call", site.instr.Parent()) + } +} + +// ---------- func PtrTo(Type) Type ---------- + +// result = PtrTo(t) +type reflectPtrToConstraint struct { + cgn *cgnode + t nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectPtrToConstraint) ptr() nodeid { return c.t } +func (c *reflectPtrToConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectPtrToConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *reflectPtrToConstraint) String() string { + return fmt.Sprintf("n%d = reflect.PtrTo(n%d)", c.result, c.t) +} + +func (c *reflectPtrToConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for tObj := range delta { + T := a.rtypeTaggedValue(tObj) + + if a.addLabel(c.result, a.makeRtype(types.NewPointer(T))) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰PtrTo(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectPtrToConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰Select(a *analysis, cgn *cgnode) {} + +// ---------- func SliceOf(Type) Type ---------- + +// result = SliceOf(t) +type reflectSliceOfConstraint struct { + cgn *cgnode + t nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectSliceOfConstraint) ptr() nodeid { return c.t } +func (c *reflectSliceOfConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectSliceOfConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *reflectSliceOfConstraint) String() string { + return fmt.Sprintf("n%d = reflect.SliceOf(n%d)", c.result, c.t) +} + +func (c *reflectSliceOfConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for tObj := range delta { + T := a.rtypeTaggedValue(tObj) + + if a.addLabel(c.result, a.makeRtype(types.NewSlice(T))) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰SliceOf(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectSliceOfConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func TypeOf(v Value) Type ---------- + +// result = TypeOf(i) +type reflectTypeOfConstraint struct { + cgn *cgnode + i nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectTypeOfConstraint) ptr() nodeid { return c.i } +func (c *reflectTypeOfConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectTypeOfConstraint) renumber(mapping []nodeid) { + c.i = mapping[c.i] + c.result = mapping[c.result] +} + +func (c *reflectTypeOfConstraint) String() string { + return fmt.Sprintf("n%d = reflect.TypeOf(n%d)", c.result, c.i) +} + +func (c *reflectTypeOfConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for iObj := range delta { + tDyn, _, _ := a.taggedValue(iObj) + if a.addLabel(c.result, a.makeRtype(tDyn)) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰TypeOf(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectTypeOfConstraint{ + cgn: cgn, + i: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func ValueOf(interface{}) Value ---------- + +func ext۰reflect۰ValueOf(a *analysis, cgn *cgnode) { + // TODO(adonovan): when we start creating indirect tagged + // objects, we'll need to handle them specially here since + // they must never appear in the PTS of an interface{}. + a.copy(a.funcResults(cgn.obj), a.funcParams(cgn.obj), 1) +} + +// ---------- func Zero(Type) Value ---------- + +// result = Zero(typ) +type reflectZeroConstraint struct { + cgn *cgnode + typ nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *reflectZeroConstraint) ptr() nodeid { return c.typ } +func (c *reflectZeroConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *reflectZeroConstraint) renumber(mapping []nodeid) { + c.typ = mapping[c.typ] + c.result = mapping[c.result] +} + +func (c *reflectZeroConstraint) String() string { + return fmt.Sprintf("n%d = reflect.Zero(n%d)", c.result, c.typ) +} + +func (c *reflectZeroConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for typObj := range delta { + T := a.rtypeTaggedValue(typObj) + + // TODO(adonovan): if T is an interface type, we need + // to create an indirect tagged object containing + // new(T). To avoid updates of such shared values, + // we'll need another flag on indirect tagged objects + // that marks whether they are addressable or + // readonly, just like the reflect package does. + + // memoize using a.reflectZeros[T] + var id nodeid + if z := a.reflectZeros.At(T); false && z != nil { + id = z.(nodeid) + } else { + id = a.makeTagged(T, c.cgn, nil) + a.reflectZeros.Set(T, id) + } + if a.addLabel(c.result, id) { + changed = true + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰Zero(a *analysis, cgn *cgnode) { + a.addConstraint(&reflectZeroConstraint{ + cgn: cgn, + typ: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// -------------------- (*reflect.rtype) methods -------------------- + +// ---------- func (*rtype) Elem() Type ---------- + +// result = Elem(t) +type rtypeElemConstraint struct { + cgn *cgnode + t nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rtypeElemConstraint) ptr() nodeid { return c.t } +func (c *rtypeElemConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rtypeElemConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *rtypeElemConstraint) String() string { + return fmt.Sprintf("n%d = (*reflect.rtype).Elem(n%d)", c.result, c.t) +} + +func (c *rtypeElemConstraint) solve(a *analysis, _ *node, delta nodeset) { + // Implemented by *types.{Map,Chan,Array,Slice,Pointer}. + type hasElem interface { + Elem() types.Type + } + changed := false + for tObj := range delta { + T := a.nodes[tObj].obj.data.(types.Type) + if tHasElem, ok := T.Underlying().(hasElem); ok { + if a.addLabel(c.result, a.makeRtype(tHasElem.Elem())) { + changed = true + } + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰rtype۰Elem(a *analysis, cgn *cgnode) { + a.addConstraint(&rtypeElemConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (*rtype) Field(int) StructField ---------- +// ---------- func (*rtype) FieldByName(string) (StructField, bool) ---------- + +// result = FieldByName(t, name) +// result = Field(t, _) +type rtypeFieldByNameConstraint struct { + cgn *cgnode + name string // name of field; "" for unknown + t nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rtypeFieldByNameConstraint) ptr() nodeid { return c.t } +func (c *rtypeFieldByNameConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rtypeFieldByNameConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *rtypeFieldByNameConstraint) String() string { + return fmt.Sprintf("n%d = (*reflect.rtype).FieldByName(n%d, %q)", c.result, c.t, c.name) +} + +func (c *rtypeFieldByNameConstraint) solve(a *analysis, _ *node, delta nodeset) { + // type StructField struct { + // 0 __identity__ + // 1 Name string + // 2 PkgPath string + // 3 Type Type + // 4 Tag StructTag + // 5 Offset uintptr + // 6 Index []int + // 7 Anonymous bool + // } + + for tObj := range delta { + T := a.nodes[tObj].obj.data.(types.Type) + tStruct, ok := T.Underlying().(*types.Struct) + if !ok { + continue // not a struct type + } + + n := tStruct.NumFields() + for i := 0; i < n; i++ { + f := tStruct.Field(i) + if c.name == "" || c.name == f.Name() { + + // a.offsetOf(Type) is 3. + if id := c.result + 3; a.addLabel(id, a.makeRtype(f.Type())) { + a.addWork(id) + } + // TODO(adonovan): StructField.Index should be non-nil. + } + } + } +} + +func ext۰reflect۰rtype۰FieldByName(a *analysis, cgn *cgnode) { + // If we have access to the callsite, + // and the argument is a string constant, + // return only that field. + var name string + if site := cgn.callersite; site != nil { + if c, ok := site.instr.Common().Args[0].(*ssa.Const); ok { + name = exact.StringVal(c.Value) + } + } + + a.addConstraint(&rtypeFieldByNameConstraint{ + cgn: cgn, + name: name, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰rtype۰Field(a *analysis, cgn *cgnode) { + // No-one ever calls Field with a constant argument, + // so we don't specialize that case. + a.addConstraint(&rtypeFieldByNameConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰rtype۰FieldByIndex(a *analysis, cgn *cgnode) {} +func ext۰reflect۰rtype۰FieldByNameFunc(a *analysis, cgn *cgnode) {} + +// ---------- func (*rtype) In/Out(i int) Type ---------- + +// result = In/Out(t, i) +type rtypeInOutConstraint struct { + cgn *cgnode + t nodeid // (ptr) + result nodeid // (indirect) + out bool + i int // -ve if not a constant +} + +func (c *rtypeInOutConstraint) ptr() nodeid { return c.t } +func (c *rtypeInOutConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rtypeInOutConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *rtypeInOutConstraint) String() string { + return fmt.Sprintf("n%d = (*reflect.rtype).InOut(n%d, %d)", c.result, c.t, c.i) +} + +func (c *rtypeInOutConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for tObj := range delta { + T := a.nodes[tObj].obj.data.(types.Type) + sig, ok := T.Underlying().(*types.Signature) + if !ok { + continue // not a func type + } + + tuple := sig.Params() + if c.out { + tuple = sig.Results() + } + for i, n := 0, tuple.Len(); i < n; i++ { + if c.i < 0 || c.i == i { + if a.addLabel(c.result, a.makeRtype(tuple.At(i).Type())) { + changed = true + } + } + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰rtype۰InOut(a *analysis, cgn *cgnode, out bool) { + // If we have access to the callsite, + // and the argument is an int constant, + // return only that parameter. + index := -1 + if site := cgn.callersite; site != nil { + if c, ok := site.instr.Common().Args[0].(*ssa.Const); ok { + v, _ := exact.Int64Val(c.Value) + index = int(v) + } + } + a.addConstraint(&rtypeInOutConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + out: out, + i: index, + }) +} + +func ext۰reflect۰rtype۰In(a *analysis, cgn *cgnode) { + ext۰reflect۰rtype۰InOut(a, cgn, false) +} + +func ext۰reflect۰rtype۰Out(a *analysis, cgn *cgnode) { + ext۰reflect۰rtype۰InOut(a, cgn, true) +} + +// ---------- func (*rtype) Key() Type ---------- + +// result = Key(t) +type rtypeKeyConstraint struct { + cgn *cgnode + t nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rtypeKeyConstraint) ptr() nodeid { return c.t } +func (c *rtypeKeyConstraint) indirect(nodes []nodeid) []nodeid { return append(nodes, c.result) } +func (c *rtypeKeyConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *rtypeKeyConstraint) String() string { + return fmt.Sprintf("n%d = (*reflect.rtype).Key(n%d)", c.result, c.t) +} + +func (c *rtypeKeyConstraint) solve(a *analysis, _ *node, delta nodeset) { + changed := false + for tObj := range delta { + T := a.nodes[tObj].obj.data.(types.Type) + if tMap, ok := T.Underlying().(*types.Map); ok { + if a.addLabel(c.result, a.makeRtype(tMap.Key())) { + changed = true + } + } + } + if changed { + a.addWork(c.result) + } +} + +func ext۰reflect۰rtype۰Key(a *analysis, cgn *cgnode) { + a.addConstraint(&rtypeKeyConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +// ---------- func (*rtype) Method(int) (Method, bool) ---------- +// ---------- func (*rtype) MethodByName(string) (Method, bool) ---------- + +// result = MethodByName(t, name) +// result = Method(t, _) +type rtypeMethodByNameConstraint struct { + cgn *cgnode + name string // name of method; "" for unknown + t nodeid // (ptr) + result nodeid // (indirect) +} + +func (c *rtypeMethodByNameConstraint) ptr() nodeid { return c.t } +func (c *rtypeMethodByNameConstraint) indirect(nodes []nodeid) []nodeid { + return append(nodes, c.result) +} +func (c *rtypeMethodByNameConstraint) renumber(mapping []nodeid) { + c.t = mapping[c.t] + c.result = mapping[c.result] +} + +func (c *rtypeMethodByNameConstraint) String() string { + return fmt.Sprintf("n%d = (*reflect.rtype).MethodByName(n%d, %q)", c.result, c.t, c.name) +} + +// changeRecv returns sig with Recv prepended to Params(). +func changeRecv(sig *types.Signature) *types.Signature { + params := sig.Params() + n := params.Len() + p2 := make([]*types.Var, n+1) + p2[0] = sig.Recv() + for i := 0; i < n; i++ { + p2[i+1] = params.At(i) + } + return types.NewSignature(nil, nil, types.NewTuple(p2...), sig.Results(), sig.Variadic()) +} + +func (c *rtypeMethodByNameConstraint) solve(a *analysis, _ *node, delta nodeset) { + for tObj := range delta { + T := a.nodes[tObj].obj.data.(types.Type) + + _, isInterface := T.Underlying().(*types.Interface) + + // We don't use Lookup(c.name) when c.name != "" to avoid + // ambiguity: >1 unexported methods could match. + mset := a.prog.MethodSets.MethodSet(T) + for i, n := 0, mset.Len(); i < n; i++ { + sel := mset.At(i) + if c.name == "" || c.name == sel.Obj().Name() { + // type Method struct { + // 0 __identity__ + // 1 Name string + // 2 PkgPath string + // 3 Type Type + // 4 Func Value + // 5 Index int + // } + fn := a.prog.Method(sel) + + sig := fn.Signature + if isInterface { + // discard receiver + sig = types.NewSignature(nil, nil, sig.Params(), sig.Results(), sig.Variadic()) + } else { + // move receiver to params[0] + sig = changeRecv(sig) + + } + // a.offsetOf(Type) is 3. + if id := c.result + 3; a.addLabel(id, a.makeRtype(sig)) { + a.addWork(id) + } + // a.offsetOf(Func) is 4. + if id := c.result + 4; a.addLabel(id, a.objectNode(nil, fn)) { + a.addWork(id) + } + } + } + } +} + +func ext۰reflect۰rtype۰MethodByName(a *analysis, cgn *cgnode) { + // If we have access to the callsite, + // and the argument is a string constant, + // return only that method. + var name string + if site := cgn.callersite; site != nil { + if c, ok := site.instr.Common().Args[0].(*ssa.Const); ok { + name = exact.StringVal(c.Value) + } + } + + a.addConstraint(&rtypeMethodByNameConstraint{ + cgn: cgn, + name: name, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} + +func ext۰reflect۰rtype۰Method(a *analysis, cgn *cgnode) { + // No-one ever calls Method with a constant argument, + // so we don't specialize that case. + a.addConstraint(&rtypeMethodByNameConstraint{ + cgn: cgn, + t: a.funcParams(cgn.obj), + result: a.funcResults(cgn.obj), + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/solve.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/solve.go new file mode 100644 index 00000000..6a6a5ee9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/solve.go @@ -0,0 +1,338 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +// This file defines a naive Andersen-style solver for the inclusion +// constraint system. + +import ( + "fmt" + + "code.google.com/p/go.tools/go/types" +) + +func (a *analysis) solve() { + // Solver main loop. + for round := 1; ; round++ { + if a.log != nil { + fmt.Fprintf(a.log, "Solving, round %d\n", round) + } + + // Add new constraints to the graph: + // static constraints from SSA on round 1, + // dynamic constraints from reflection thereafter. + a.processNewConstraints() + + id := a.work.take() + if id == empty { + break + } + if a.log != nil { + fmt.Fprintf(a.log, "\tnode n%d\n", id) + } + + n := a.nodes[id] + + // Difference propagation. + delta := n.pts.diff(n.prevPts) + if delta == nil { + continue + } + n.prevPts = n.pts.clone() + + // Apply all resolution rules attached to n. + a.solveConstraints(n, delta) + + if a.log != nil { + fmt.Fprintf(a.log, "\t\tpts(n%d) = %s\n", id, n.pts) + } + } + + if len(a.nodes[0].pts) > 0 { + panic(fmt.Sprintf("pts(0) is nonempty: %s", a.nodes[0].pts)) + } + + if a.log != nil { + fmt.Fprintf(a.log, "Solver done\n") + + // Dump solution. + for i, n := range a.nodes { + if n.pts != nil { + fmt.Fprintf(a.log, "pts(n%d) = %s : %s\n", i, n.pts, n.typ) + } + } + } +} + +// processNewConstraints takes the new constraints from a.constraints +// and adds them to the graph, ensuring +// that new constraints are applied to pre-existing labels and +// that pre-existing constraints are applied to new labels. +// +func (a *analysis) processNewConstraints() { + // Take the slice of new constraints. + // (May grow during call to solveConstraints.) + constraints := a.constraints + a.constraints = nil + + // Initialize points-to sets from addr-of (base) constraints. + for _, c := range constraints { + if c, ok := c.(*addrConstraint); ok { + dst := a.nodes[c.dst] + dst.pts.add(c.src) + + // Populate the worklist with nodes that point to + // something initially (due to addrConstraints) and + // have other constraints attached. + // (A no-op in round 1.) + if dst.copyTo != nil || dst.complex != nil { + a.addWork(c.dst) + } + } + } + + // Attach simple (copy) and complex constraints to nodes. + var stale nodeset + for _, c := range constraints { + var id nodeid + switch c := c.(type) { + case *addrConstraint: + // base constraints handled in previous loop + continue + case *copyConstraint: + // simple (copy) constraint + id = c.src + a.nodes[id].copyTo.add(c.dst) + default: + // complex constraint + id = c.ptr() + a.nodes[id].complex.add(c) + } + + if n := a.nodes[id]; len(n.pts) > 0 { + if len(n.prevPts) > 0 { + stale.add(id) + } + a.addWork(id) + } + } + // Apply new constraints to pre-existing PTS labels. + for id := range stale { + n := a.nodes[id] + a.solveConstraints(n, n.prevPts) + } +} + +// solveConstraints applies each resolution rule attached to node n to +// the set of labels delta. It may generate new constraints in +// a.constraints. +// +func (a *analysis) solveConstraints(n *node, delta nodeset) { + if delta == nil { + return + } + + // Process complex constraints dependent on n. + for c := range n.complex { + if a.log != nil { + fmt.Fprintf(a.log, "\t\tconstraint %s\n", c) + } + // TODO(adonovan): parameter n is never needed, since + // it's equal to c.ptr(). Remove. + c.solve(a, n, delta) + } + + // Process copy constraints. + var copySeen nodeset + for mid := range n.copyTo { + if copySeen.add(mid) { + if a.nodes[mid].pts.addAll(delta) { + a.addWork(mid) + } + } + } +} + +// addLabel adds label to the points-to set of ptr and reports whether the set grew. +func (a *analysis) addLabel(ptr, label nodeid) bool { + return a.nodes[ptr].pts.add(label) +} + +func (a *analysis) addWork(id nodeid) { + a.work.add(id) + if a.log != nil { + fmt.Fprintf(a.log, "\t\twork: n%d\n", id) + } +} + +// onlineCopy adds a copy edge. It is called online, i.e. during +// solving, so it adds edges and pts members directly rather than by +// instantiating a 'constraint'. +// +// The size of the copy is implicitly 1. +// It returns true if pts(dst) changed. +// +func (a *analysis) onlineCopy(dst, src nodeid) bool { + if dst != src { + if nsrc := a.nodes[src]; nsrc.copyTo.add(dst) { + if a.log != nil { + fmt.Fprintf(a.log, "\t\t\tdynamic copy n%d <- n%d\n", dst, src) + } + // TODO(adonovan): most calls to onlineCopy + // are followed by addWork, possibly batched + // via a 'changed' flag; see if there's a + // noticeable penalty to calling addWork here. + return a.nodes[dst].pts.addAll(nsrc.pts) + } + } + return false +} + +// Returns sizeof. +// Implicitly adds nodes to worklist. +// +// TODO(adonovan): now that we support a.copy() during solving, we +// could eliminate onlineCopyN, but it's much slower. Investigate. +// +func (a *analysis) onlineCopyN(dst, src nodeid, sizeof uint32) uint32 { + for i := uint32(0); i < sizeof; i++ { + if a.onlineCopy(dst, src) { + a.addWork(dst) + } + src++ + dst++ + } + return sizeof +} + +func (c *loadConstraint) solve(a *analysis, n *node, delta nodeset) { + var changed bool + for k := range delta { + koff := k + nodeid(c.offset) + if a.onlineCopy(c.dst, koff) { + changed = true + } + } + if changed { + a.addWork(c.dst) + } +} + +func (c *storeConstraint) solve(a *analysis, n *node, delta nodeset) { + for k := range delta { + koff := k + nodeid(c.offset) + if a.onlineCopy(koff, c.src) { + a.addWork(koff) + } + } +} + +func (c *offsetAddrConstraint) solve(a *analysis, n *node, delta nodeset) { + dst := a.nodes[c.dst] + for k := range delta { + if dst.pts.add(k + nodeid(c.offset)) { + a.addWork(c.dst) + } + } +} + +func (c *typeFilterConstraint) solve(a *analysis, n *node, delta nodeset) { + for ifaceObj := range delta { + tDyn, _, indirect := a.taggedValue(ifaceObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + if types.AssignableTo(tDyn, c.typ) { + if a.addLabel(c.dst, ifaceObj) { + a.addWork(c.dst) + } + } + } +} + +func (c *untagConstraint) solve(a *analysis, n *node, delta nodeset) { + predicate := types.AssignableTo + if c.exact { + predicate = types.Identical + } + for ifaceObj := range delta { + tDyn, v, indirect := a.taggedValue(ifaceObj) + if indirect { + // TODO(adonovan): we'll need to implement this + // when we start creating indirect tagged objects. + panic("indirect tagged object") + } + + if predicate(tDyn, c.typ) { + // Copy payload sans tag to dst. + // + // TODO(adonovan): opt: if tConc is + // nonpointerlike we can skip this entire + // constraint, perhaps. We only care about + // pointers among the fields. + a.onlineCopyN(c.dst, v, a.sizeof(tDyn)) + } + } +} + +func (c *invokeConstraint) solve(a *analysis, n *node, delta nodeset) { + for ifaceObj := range delta { + tDyn, v, indirect := a.taggedValue(ifaceObj) + if indirect { + // TODO(adonovan): we may need to implement this if + // we ever apply invokeConstraints to reflect.Value PTSs, + // e.g. for (reflect.Value).Call. + panic("indirect tagged object") + } + + // Look up the concrete method. + fn := a.prog.LookupMethod(tDyn, c.method.Pkg(), c.method.Name()) + if fn == nil { + panic(fmt.Sprintf("n%d: no ssa.Function for %s", c.iface, c.method)) + } + sig := fn.Signature + + fnObj := a.globalobj[fn] // dynamic calls use shared contour + if fnObj == 0 { + // a.objectNode(fn) was not called during gen phase. + panic(fmt.Sprintf("a.globalobj[%s]==nil", fn)) + } + + // Make callsite's fn variable point to identity of + // concrete method. (There's no need to add it to + // worklist since it never has attached constraints.) + a.addLabel(c.params, fnObj) + + // Extract value and connect to method's receiver. + // Copy payload to method's receiver param (arg0). + arg0 := a.funcParams(fnObj) + recvSize := a.sizeof(sig.Recv().Type()) + a.onlineCopyN(arg0, v, recvSize) + + src := c.params + 1 // skip past identity + dst := arg0 + nodeid(recvSize) + + // Copy caller's argument block to method formal parameters. + paramsSize := a.sizeof(sig.Params()) + a.onlineCopyN(dst, src, paramsSize) + src += nodeid(paramsSize) + dst += nodeid(paramsSize) + + // Copy method results to caller's result block. + resultsSize := a.sizeof(sig.Results()) + a.onlineCopyN(src, dst, resultsSize) + } +} + +func (c *addrConstraint) solve(a *analysis, n *node, delta nodeset) { + panic("addr is not a complex constraint") +} + +func (c *copyConstraint) solve(a *analysis, n *node, delta nodeset) { + panic("copy is not a complex constraint") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/a_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/a_test.go new file mode 100644 index 00000000..3baa9ac7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/a_test.go @@ -0,0 +1,42 @@ +// +build ignore + +package a + +// This test exercises the synthesis of testmain packages for tests. +// The test framework doesn't directly let us perform negative +// assertions (i.e. that TestingQuux isn't called, or that its +// parameter's PTS is empty) so this test is rather roundabout. + +import "testing" + +func log(f func(*testing.T)) { + // The PTS of f is the set of called tests. TestingQuux is not present. + print(f) // @pointsto main.Test | main.TestFoo +} + +func Test(t *testing.T) { + // Don't assert @pointsto(t) since its label contains a fragile line number. + log(Test) +} + +func TestFoo(t *testing.T) { + // Don't assert @pointsto(t) since its label contains a fragile line number. + log(TestFoo) +} + +func TestingQuux(t *testing.T) { + // We can't assert @pointsto(t) since this is dead code. + log(TestingQuux) +} + +func BenchmarkFoo(b *testing.B) { +} + +func ExampleBar() { +} + +// Excludes TestingQuux. +// @calls testing.tRunner -> main.Test +// @calls testing.tRunner -> main.TestFoo +// @calls testing.runExample -> main.ExampleBar +// @calls (*testing.B).runN -> main.BenchmarkFoo diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/another.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/another.go new file mode 100644 index 00000000..443c94d0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/another.go @@ -0,0 +1,34 @@ +// +build ignore + +package main + +var unknown bool + +type S string + +func incr(x int) int { return x + 1 } + +func main() { + var i interface{} + i = 1 + if unknown { + i = S("foo") + } + if unknown { + i = (func(int, int))(nil) // NB type compares equal to that below. + } + // Look, the test harness can handle equal-but-not-String-equal + // types because we parse types and using a typemap. + if unknown { + i = (func(x int, y int))(nil) + } + if unknown { + i = incr + } + print(i) // @types int | S | func(int, int) | func(int) int + + // NB, an interface may never directly alias any global + // labels, even though it may contain pointers that do. + print(i) // @pointsto makeinterface:func(x int) int | makeinterface:func(x int, y int) | makeinterface:func(int, int) | makeinterface:int | makeinterface:main.S + print(i.(func(int) int)) // @pointsto main.incr +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/arrayreflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/arrayreflect.go new file mode 100644 index 00000000..4b53078e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/arrayreflect.go @@ -0,0 +1,191 @@ +// +build ignore + +package main + +// Test of arrays & slices with reflection. + +import "reflect" + +var a, b int + +type S string + +func reflectValueSlice() { + // reflect.Value contains a slice. + slice := make([]*int, 10) // @line slice + slice[0] = &a + rvsl := reflect.ValueOf(slice).Slice(0, 0) + print(rvsl.Interface()) // @types []*int + print(rvsl.Interface().([]*int)) // @pointsto makeslice@slice:15 + print(rvsl.Interface().([]*int)[42]) // @pointsto main.a + + // reflect.Value contains an arrayay (non-addressable). + array := [10]*int{&a} // @line array + rvarray := reflect.ValueOf(array).Slice(0, 0) + print(rvarray.Interface()) // @types + print(rvarray.Interface().([]*int)) // @pointsto + print(rvarray.Interface().([]*int)[42]) // @pointsto + + // reflect.Value contains a pointer-to-array + rvparray := reflect.ValueOf(&array).Slice(0, 0) + print(rvparray.Interface()) // @types []*int + print(rvparray.Interface().([]*int)) // @pointsto array@array:2 + print(rvparray.Interface().([]*int)[42]) // @pointsto main.a + + // reflect.Value contains a string. + rvstring := reflect.ValueOf("hi").Slice(0, 0) + print(rvstring.Interface()) // @types string + + // reflect.Value contains a (named) string type. + rvS := reflect.ValueOf(S("hi")).Slice(0, 0) + print(rvS.Interface()) // @types S + + // reflect.Value contains a non-array pointer. + rvptr := reflect.ValueOf(new(int)).Slice(0, 0) + print(rvptr.Interface()) // @types + + // reflect.Value contains a non-string basic type. + rvint := reflect.ValueOf(3).Slice(0, 0) + print(rvint.Interface()) // @types +} + +func reflectValueBytes() { + sl1 := make([]byte, 0) // @line ar5sl1 + sl2 := make([]byte, 0) // @line ar5sl2 + + rvsl1 := reflect.ValueOf(sl1) + print(rvsl1.Interface()) // @types []byte + print(rvsl1.Interface().([]byte)) // @pointsto makeslice@ar5sl1:13 + print(rvsl1.Bytes()) // @pointsto makeslice@ar5sl1:13 + + rvsl2 := reflect.ValueOf(123) + rvsl2.SetBytes(sl2) + print(rvsl2.Interface()) // @types int + print(rvsl2.Interface().([]byte)) // @pointsto + print(rvsl2.Bytes()) // @pointsto + + rvsl3 := reflect.ValueOf([]byte(nil)) + rvsl3.SetBytes(sl2) + print(rvsl3.Interface()) // @types []byte + print(rvsl3.Interface().([]byte)) // @pointsto makeslice@ar5sl2:13 + print(rvsl3.Bytes()) // @pointsto makeslice@ar5sl2:13 +} + +func reflectValueIndex() { + slice := []*int{&a} // @line ar6slice + rv1 := reflect.ValueOf(slice) + print(rv1.Index(42).Interface()) // @types *int + print(rv1.Index(42).Interface().(*int)) // @pointsto main.a + + array := [10]*int{&a} + rv2 := reflect.ValueOf(array) + print(rv2.Index(42).Interface()) // @types *int + print(rv2.Index(42).Interface().(*int)) // @pointsto main.a + + rv3 := reflect.ValueOf("string") + print(rv3.Index(42).Interface()) // @types rune + + rv4 := reflect.ValueOf(&array) + print(rv4.Index(42).Interface()) // @types + + rv5 := reflect.ValueOf(3) + print(rv5.Index(42).Interface()) // @types +} + +func reflectValueElem() { + // Interface. + var iface interface{} = &a + rv1 := reflect.ValueOf(&iface).Elem() + print(rv1.Interface()) // @types *int + print(rv1.Interface().(*int)) // @pointsto main.a + print(rv1.Elem().Interface()) // @types *int + print(rv1.Elem().Interface().(*int)) // @pointsto main.a + + print(reflect.ValueOf(new(interface{})).Elem().Elem()) // @types + + // Pointer. + ptr := &a + rv2 := reflect.ValueOf(&ptr) + print(rv2.Elem().Interface()) // @types *int + print(rv2.Elem().Interface().(*int)) // @pointsto main.a + + // No other type works with (rV).Elem, not even those that + // work with (rT).Elem: slice, array, map, chan. + + rv3 := reflect.ValueOf([]*int{&a}) + print(rv3.Elem().Interface()) // @types + + rv4 := reflect.ValueOf([10]*int{&a}) + print(rv4.Elem().Interface()) // @types + + rv5 := reflect.ValueOf(map[*int]*int{&a: &b}) + print(rv5.Elem().Interface()) // @types + + ch := make(chan *int) + ch <- &a + rv6 := reflect.ValueOf(ch) + print(rv6.Elem().Interface()) // @types + + rv7 := reflect.ValueOf(3) + print(rv7.Elem().Interface()) // @types +} + +func reflectTypeElem() { + rt1 := reflect.TypeOf(make([]*int, 0)) + print(reflect.Zero(rt1.Elem())) // @types *int + + rt2 := reflect.TypeOf([10]*int{}) + print(reflect.Zero(rt2.Elem())) // @types *int + + rt3 := reflect.TypeOf(map[*int]*int{}) + print(reflect.Zero(rt3.Elem())) // @types *int + + rt4 := reflect.TypeOf(make(chan *int)) + print(reflect.Zero(rt4.Elem())) // @types *int + + ptr := &a + rt5 := reflect.TypeOf(&ptr) + print(reflect.Zero(rt5.Elem())) // @types *int + + rt6 := reflect.TypeOf(3) + print(reflect.Zero(rt6.Elem())) // @types +} + +func reflectPtrTo() { + tInt := reflect.TypeOf(3) + tPtrInt := reflect.PtrTo(tInt) + print(reflect.Zero(tPtrInt)) // @types *int + tPtrPtrInt := reflect.PtrTo(tPtrInt) + print(reflect.Zero(tPtrPtrInt)) // @types **int +} + +func reflectSliceOf() { + tInt := reflect.TypeOf(3) + tSliceInt := reflect.SliceOf(tInt) + print(reflect.Zero(tSliceInt)) // @types []int +} + +type T struct{ x int } + +func reflectMakeSlice() { + rt := []reflect.Type{ + reflect.TypeOf(3), + reflect.TypeOf([]int{}), + reflect.TypeOf([]T{}), + }[0] + sl := reflect.MakeSlice(rt, 0, 0) + print(sl) // @types []int | []T + print(sl) // @pointsto | + print(&sl.Interface().([]T)[0].x) // @pointsto [*].x +} + +func main() { + reflectValueSlice() + reflectValueBytes() + reflectValueIndex() + reflectValueElem() + reflectTypeElem() + reflectPtrTo() + reflectSliceOf() + reflectMakeSlice() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/arrays.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/arrays.go new file mode 100644 index 00000000..e57a15b4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/arrays.go @@ -0,0 +1,97 @@ +// +build ignore + +package main + +var unknown bool // defeat dead-code elimination + +var a, b int + +func array1() { + sliceA := make([]*int, 10) // @line a1make + sliceA[0] = &a + + var sliceB []*int + sliceB = append(sliceB, &b) // @line a1append + + print(sliceA) // @pointsto makeslice@a1make:16 + print(sliceA[0]) // @pointsto main.a + + print(sliceB) // @pointsto append@a1append:17 + print(sliceB[100]) // @pointsto main.b +} + +func array2() { + sliceA := make([]*int, 10) // @line a2make + sliceA[0] = &a + + sliceB := sliceA[:] + + print(sliceA) // @pointsto makeslice@a2make:16 + print(sliceA[0]) // @pointsto main.a + + print(sliceB) // @pointsto makeslice@a2make:16 + print(sliceB[0]) // @pointsto main.a +} + +func array3() { + a := []interface{}{"", 1} + b := []interface{}{true, func() {}} + print(a[0]) // @types string | int + print(b[0]) // @types bool | func() +} + +// Test of append, copy, slice. +func array4() { + var s2 struct { // @line a4L0 + a [3]int + b struct{ c, d int } + } + var sl1 = make([]*int, 10) // @line a4make + var someint int // @line a4L1 + sl1[1] = &someint + sl2 := append(sl1, &s2.a[1]) // @line a4append1 + print(sl1) // @pointsto makeslice@a4make:16 + print(sl2) // @pointsto append@a4append1:15 | makeslice@a4make:16 + print(sl1[0]) // @pointsto someint@a4L1:6 | s2.a[*]@a4L0:6 + print(sl2[0]) // @pointsto someint@a4L1:6 | s2.a[*]@a4L0:6 + + // In z=append(x,y) we should observe flow from y[*] to x[*]. + var sl3 = make([]*int, 10) // @line a4L2 + _ = append(sl3, &s2.a[1]) + print(sl3) // @pointsto makeslice@a4L2:16 + print(sl3[0]) // @pointsto s2.a[*]@a4L0:6 + + var sl4 = []*int{&a} // @line a4L3 + sl4a := append(sl4) // @line a4L4 + print(sl4a) // @pointsto slicelit@a4L3:18 | append@a4L4:16 + print(&sl4a[0]) // @pointsto slicelit[*]@a4L3:18 | append[*]@a4L4:16 + print(sl4a[0]) // @pointsto main.a + + var sl5 = []*int{&b} // @line a4L5 + copy(sl5, sl4) + print(sl5) // @pointsto slicelit@a4L5:18 + print(&sl5[0]) // @pointsto slicelit[*]@a4L5:18 + print(sl5[0]) // @pointsto main.b | main.a + + var sl6 = sl5[:0] + print(sl6) // @pointsto slicelit@a4L5:18 + print(&sl6[0]) // @pointsto slicelit[*]@a4L5:18 + print(sl6[0]) // @pointsto main.b | main.a +} + +func array5() { + var arr [2]*int + arr[0] = &a + arr[1] = &b + + var n int + print(arr[n]) // @pointsto main.a | main.b +} + +func main() { + array1() + array2() + array3() + array4() + array5() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/channels.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/channels.go new file mode 100644 index 00000000..454ff0f5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/channels.go @@ -0,0 +1,118 @@ +// +build ignore + +package main + +func incr(x int) int { return x + 1 } + +func decr(x int) int { return x - 1 } + +var unknown bool // defeat dead-code elimination + +func chan1() { + chA := make(chan func(int) int, 0) // @line c1makeA + chB := make(chan func(int) int, 0) // @line c1makeB + chA <- incr + chB <- decr + chB <- func(int) int { return 1 } + + print(chA) // @pointsto makechan@c1makeA:13 + print(<-chA) // @pointsto main.incr + + print(chB) // @pointsto makechan@c1makeB:13 + print(<-chB) // @pointsto main.decr | chan1$1 +} + +func chan2() { + chA := make(chan func(int) int, 0) // @line c2makeA + chB := make(chan func(int) int, 0) // @line c2makeB + chA <- incr + chB <- decr + chB <- func(int) int { return 1 } + + // Channels flow together. + // Labelsets remain distinct but elements are merged. + chAB := chA + if unknown { + chAB = chB + } + + print(chA) // @pointsto makechan@c2makeA:13 + print(<-chA) // @pointsto main.incr + + print(chB) // @pointsto makechan@c2makeB:13 + print(<-chB) // @pointsto main.decr | chan2$1 + + print(chAB) // @pointsto makechan@c2makeA:13 | makechan@c2makeB:13 + print(<-chAB) // @pointsto main.incr | main.decr | chan2$1 + + (<-chA)(3) +} + +// @calls main.chan2 -> main.incr + +func chan3() { + chA := make(chan func(int) int, 0) // @line c3makeA + chB := make(chan func(int) int, 0) // @line c3makeB + chA <- incr + chB <- decr + chB <- func(int) int { return 1 } + print(chA) // @pointsto makechan@c3makeA:13 + print(<-chA) // @pointsto main.incr + print(chB) // @pointsto makechan@c3makeB:13 + print(<-chB) // @pointsto main.decr | chan3$1 + + (<-chA)(3) +} + +// @calls main.chan3 -> main.incr + +func chan4() { + chA := make(chan func(int) int, 0) // @line c4makeA + chB := make(chan func(int) int, 0) // @line c4makeB + + select { + case chA <- incr: + case chB <- decr: + case a := <-chA: + print(a) // @pointsto main.incr + case b := <-chB: + print(b) // @pointsto main.decr + default: + print(chA) // @pointsto makechan@c4makeA:13 + print(chB) // @pointsto makechan@c4makeB:13 + } + + for k := range chA { + print(k) // @pointsto main.incr + } + // Exercise constraint generation (regtest for a crash). + for _ = range chA { + } +} + +// Multi-word channel value in select with multiple receive cases. +// (Regtest for a crash.) +func chan5() { + type T struct { + x *int + y interface{} + } + ch := make(chan T) + ch <- T{new(int), incr} // @line ch5new + select { + case a := <-ch: + print(a.x) // @pointsto new@ch5new:13 + print(a.y) // @types func(x int) int + case b := <-ch: + print(b.x) // @pointsto new@ch5new:13 + print(b.y) // @types func(x int) int + } +} + +func main() { + chan1() + chan2() + chan3() + chan4() + chan5() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/chanreflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/chanreflect.go new file mode 100644 index 00000000..7d22efeb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/chanreflect.go @@ -0,0 +1,85 @@ +// +build ignore + +package main + +import "reflect" + +// Test of channels with reflection. + +var a, b int + +func chanreflect1() { + ch := make(chan *int, 0) // @line cr1make + crv := reflect.ValueOf(ch) + crv.Send(reflect.ValueOf(&a)) + print(crv.Interface()) // @types chan *int + print(crv.Interface().(chan *int)) // @pointsto makechan@cr1make:12 + print(<-ch) // @pointsto main.a +} + +func chanreflect1i() { + // Exercises reflect.Value conversions to/from interfaces: + // a different code path than for concrete types. + ch := make(chan interface{}, 0) + reflect.ValueOf(ch).Send(reflect.ValueOf(&a)) + v := <-ch + print(v) // @types *int + print(v.(*int)) // @pointsto main.a +} + +func chanreflect2() { + ch := make(chan *int, 0) + ch <- &b + crv := reflect.ValueOf(ch) + r, _ := crv.Recv() + print(r.Interface()) // @types *int + print(r.Interface().(*int)) // @pointsto main.b +} + +func chanOfRecv() { + // MakeChan(<-chan) is a no-op. + t := reflect.ChanOf(reflect.RecvDir, reflect.TypeOf(&a)) + print(reflect.Zero(t).Interface()) // @types <-chan *int + print(reflect.MakeChan(t, 0).Interface().(<-chan *int)) // @pointsto + print(reflect.MakeChan(t, 0).Interface().(chan *int)) // @pointsto +} + +func chanOfSend() { + // MakeChan(chan<-) is a no-op. + t := reflect.ChanOf(reflect.SendDir, reflect.TypeOf(&a)) + print(reflect.Zero(t).Interface()) // @types chan<- *int + print(reflect.MakeChan(t, 0).Interface().(chan<- *int)) // @pointsto + print(reflect.MakeChan(t, 0).Interface().(chan *int)) // @pointsto +} + +func chanOfBoth() { + t := reflect.ChanOf(reflect.BothDir, reflect.TypeOf(&a)) + print(reflect.Zero(t).Interface()) // @types chan *int + ch := reflect.MakeChan(t, 0) + print(ch.Interface().(chan *int)) // @pointsto + ch.Send(reflect.ValueOf(&b)) + ch.Interface().(chan *int) <- &a + r, _ := ch.Recv() + print(r.Interface().(*int)) // @pointsto main.a | main.b + print(<-ch.Interface().(chan *int)) // @pointsto main.a | main.b +} + +var unknownDir reflect.ChanDir // not a constant + +func chanOfUnknown() { + // Unknown channel direction: assume all three. + // MakeChan only works on the bi-di channel type. + t := reflect.ChanOf(unknownDir, reflect.TypeOf(&a)) + print(reflect.Zero(t).Interface()) // @types <-chan *int | chan<- *int | chan *int + print(reflect.MakeChan(t, 0).Interface()) // @types chan *int +} + +func main() { + chanreflect1() + chanreflect1i() + chanreflect2() + chanOfRecv() + chanOfSend() + chanOfBoth() + chanOfUnknown() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/chanreflect1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/chanreflect1.go new file mode 100644 index 00000000..c5e25874 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/chanreflect1.go @@ -0,0 +1,35 @@ +// +build ignore + +package main + +import "reflect" + +// +// This test is very sensitive to line-number perturbations! + +// Test of channels with reflection. + +var a, b int + +func chanreflect1() { + ch := make(chan *int, 0) + crv := reflect.ValueOf(ch) + crv.Send(reflect.ValueOf(&a)) + print(crv.Interface()) // @types chan *int + print(crv.Interface().(chan *int)) // @pointsto makechan@testdata/chanreflect.go:15:12 + print(<-ch) // @pointsto main.a +} + +func chanreflect2() { + ch := make(chan *int, 0) + ch <- &b + crv := reflect.ValueOf(ch) + r, _ := crv.Recv() + print(r.Interface()) // @types *int + print(r.Interface().(*int)) // @pointsto main.b +} + +func main() { + chanreflect1() + chanreflect2() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/context.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/context.go new file mode 100644 index 00000000..ed616e7e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/context.go @@ -0,0 +1,48 @@ +// +build ignore + +package main + +// Test of context-sensitive treatment of certain function calls, +// e.g. static calls to simple accessor methods. + +var a, b int + +type T struct{ x *int } + +func (t *T) SetX(x *int) { t.x = x } +func (t *T) GetX() *int { return t.x } + +func context1() { + var t1, t2 T + t1.SetX(&a) + t2.SetX(&b) + print(t1.GetX()) // @pointsto main.a + print(t2.GetX()) // @pointsto main.b +} + +func context2() { + id := func(x *int) *int { + print(x) // @pointsto main.a | main.b + return x + } + print(id(&a)) // @pointsto main.a + print(id(&b)) // @pointsto main.b + + // Same again, but anon func has free vars. + var c int // @line context2c + id2 := func(x *int) (*int, *int) { + print(x) // @pointsto main.a | main.b + return x, &c + } + p, q := id2(&a) + print(p) // @pointsto main.a + print(q) // @pointsto c@context2c:6 + r, s := id2(&b) + print(r) // @pointsto main.b + print(s) // @pointsto c@context2c:6 +} + +func main() { + context1() + context2() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/conv.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/conv.go new file mode 100644 index 00000000..5439a39e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/conv.go @@ -0,0 +1,57 @@ +// +build ignore + +package main + +import "unsafe" + +var a int + +func conv1() { + // Conversions of channel direction. + ch := make(chan int) // @line c1make + print((<-chan int)(ch)) // @pointsto makechan@c1make:12 + print((chan<- int)(ch)) // @pointsto makechan@c1make:12 +} + +func conv2() { + // string -> []byte/[]rune conversion + s := "foo" + ba := []byte(s) // @line c2ba + ra := []rune(s) // @line c2ra + print(ba) // @pointsto convert@c2ba:14 + print(ra) // @pointsto convert@c2ra:14 +} + +func conv3() { + // Conversion of same underlying types. + type PI *int + pi := PI(&a) + print(pi) // @pointsto main.a + + pint := (*int)(pi) + print(pint) // @pointsto main.a + + // Conversions between pointers to identical base types. + var y *PI = &pi + var x **int = (**int)(y) + print(*x) // @pointsto main.a + print(*y) // @pointsto main.a + y = (*PI)(x) + print(*y) // @pointsto main.a +} + +// @warning "main.conv4 contains an unsafe.Pointer conversion" +func conv4() { + // Handling of unsafe.Pointer conversion is unsound: + // we lose the alias to main.a and get something like new(int) instead. + // We require users to provide aliasing summaries. + p := (*int)(unsafe.Pointer(&a)) // @line c2p + print(p) // @pointsto convert@c2p:13 +} + +func main() { + conv1() + conv2() + conv3() + conv4() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/finalizer.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/finalizer.go new file mode 100644 index 00000000..28afacfb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/finalizer.go @@ -0,0 +1,81 @@ +package main + +import "runtime" + +func final1a(x *int) int { + print(x) // @pointsto new@newint:10 + return *x +} + +func final1b(x *bool) { + print(x) // @pointsto +} + +func runtimeSetFinalizer1() { + x := new(int) // @line newint + runtime.SetFinalizer(x, final1a) // ok: final1a's result is ignored + runtime.SetFinalizer(x, final1b) // param type mismatch: no effect +} + +// @calls main.runtimeSetFinalizer1 -> main.final1a +// @calls main.runtimeSetFinalizer1 -> main.final1b + +func final2a(x *bool) { + print(x) // @pointsto new@newbool1:10 | new@newbool2:10 +} + +func final2b(x *bool) { + print(x) // @pointsto new@newbool1:10 | new@newbool2:10 +} + +func runtimeSetFinalizer2() { + x := new(bool) // @line newbool1 + f := final2a + if unknown { + x = new(bool) // @line newbool2 + f = final2b + } + runtime.SetFinalizer(x, f) +} + +// @calls main.runtimeSetFinalizer2 -> main.final2a +// @calls main.runtimeSetFinalizer2 -> main.final2b + +type T int + +func (t *T) finalize() { + print(t) // @pointsto new@final3:10 +} + +func runtimeSetFinalizer3() { + x := new(T) // @line final3 + runtime.SetFinalizer(x, (*T).finalize) +} + +// @calls main.runtimeSetFinalizer3 -> (*main.T).finalize + +// I hope I never live to see this code in the wild. +var setFinalizer = runtime.SetFinalizer + +func final4(x *int) { + print(x) // @pointsto new@finalIndirect:10 +} + +func runtimeSetFinalizerIndirect() { + // In an indirect call, the shared contour for SetFinalizer is + // used, i.e. the call is not inlined and appears in the call graph. + x := new(int) // @line finalIndirect + setFinalizer(x, final4) +} + +// @calls main.runtimeSetFinalizerIndirect -> runtime.SetFinalizer +// @calls runtime.SetFinalizer -> main.final4 + +func main() { + runtimeSetFinalizer1() + runtimeSetFinalizer2() + runtimeSetFinalizer3() + runtimeSetFinalizerIndirect() +} + +var unknown bool // defeat dead-code elimination diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/flow.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/flow.go new file mode 100644 index 00000000..6fb599e8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/flow.go @@ -0,0 +1,63 @@ +// +build ignore + +package main + +// Demonstration of directionality of flow edges. + +func f1() {} +func f2() {} + +var somepred bool + +// Tracking functions. +func flow1() { + s := f1 + p := f2 + q := p + r := q + if somepred { + r = s + } + print(s) // @pointsto main.f1 + print(p) // @pointsto main.f2 + print(q) // @pointsto main.f2 + print(r) // @pointsto main.f1 | main.f2 +} + +// Tracking concrete types in interfaces. +func flow2() { + var s interface{} = 1 + var p interface{} = "foo" + q := p + r := q + if somepred { + r = s + } + print(s) // @types int + print(p) // @types string + print(q) // @types string + print(r) // @types int | string +} + +var g1, g2 int + +// Tracking addresses of globals. +func flow3() { + s := &g1 + p := &g2 + q := p + r := q + if somepred { + r = s + } + print(s) // @pointsto main.g1 + print(p) // @pointsto main.g2 + print(q) // @pointsto main.g2 + print(r) // @pointsto main.g2 | main.g1 +} + +func main() { + flow1() + flow2() + flow3() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/fmtexcerpt.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/fmtexcerpt.go new file mode 100644 index 00000000..ee2a0e76 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/fmtexcerpt.go @@ -0,0 +1,42 @@ +// +build ignore + +// This is a slice of the fmt package. + +package main + +type pp struct { + field interface{} +} + +func newPrinter() *pp { + return new(pp) +} + +func Fprintln(a ...interface{}) { + p := newPrinter() + p.doPrint(a, true, true) +} + +func Println(a ...interface{}) { + Fprintln(a...) +} + +func (p *pp) doPrint(a []interface{}, addspace, addnewline bool) { + print(a[0]) // @types S | string + stringer := a[0].(interface { + String() string + }) + + stringer.String() + print(stringer) // @types S +} + +type S int + +func (S) String() string { return "" } + +func main() { + Println("Hello, World!", S(0)) +} + +// @calls (*main.pp).doPrint -> (main.S).String diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/func.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/func.go new file mode 100644 index 00000000..a2cbd71c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/func.go @@ -0,0 +1,166 @@ +// +build ignore + +package main + +var a, b, c int + +var unknown bool // defeat dead-code elimination + +func func1() { + var h int // @line f1h + f := func(x *int) *int { + if unknown { + return &b + } + return x + } + + // FV(g) = {f, h} + g := func(x *int) *int { + if unknown { + return &h + } + return f(x) + } + + print(g(&a)) // @pointsto main.a | main.b | h@f1h:6 + print(f(&a)) // @pointsto main.a | main.b + print(&a) // @pointsto main.a +} + +// @calls main.func1 -> func1$2 +// @calls main.func1 -> func1$1 +// @calls func1$2 -> func1$1 + +func func2() { + var x, y *int + defer func() { + x = &a + }() + go func() { + y = &b + }() + print(x) // @pointsto main.a + print(y) // @pointsto main.b +} + +func func3() { + x, y := func() (x, y *int) { + x = &a + y = &b + if unknown { + return nil, &c + } + return + }() + print(x) // @pointsto main.a + print(y) // @pointsto main.b | main.c +} + +func swap(x, y *int) (*int, *int) { // @line swap + print(&x) // @pointsto x@swap:11 + print(x) // @pointsto makeslice[*]@func4make:11 + print(&y) // @pointsto y@swap:14 + print(y) // @pointsto j@f4j:5 + return y, x +} + +func func4() { + a := make([]int, 10) // @line func4make + i, j := 123, 456 // @line f4j + _ = i + p, q := swap(&a[3], &j) + print(p) // @pointsto j@f4j:5 + print(q) // @pointsto makeslice[*]@func4make:11 + + f := &b + print(f) // @pointsto main.b +} + +type T int + +func (t *T) f(x *int) *int { + print(t) // @pointsto main.a + print(x) // @pointsto main.c + return &b +} + +func (t *T) g(x *int) *int { + print(t) // @pointsto main.a + print(x) // @pointsto main.b + return &c +} + +func (t *T) h(x *int) *int { + print(t) // @pointsto main.a + print(x) // @pointsto main.b + return &c +} + +var h func(*T, *int) *int + +func func5() { + // Static call of method. + t := (*T)(&a) + print(t.f(&c)) // @pointsto main.b + + // Static call of method as function + print((*T).g(t, &b)) // @pointsto main.c + + // Dynamic call (not invoke) of method. + h = (*T).h + print(h(t, &b)) // @pointsto main.c +} + +// @calls main.func5 -> (*main.T).f +// @calls main.func5 -> (*main.T).g +// @calls main.func5 -> (*main.T).h + +func func6() { + A := &a + f := func() *int { + return A // (free variable) + } + print(f()) // @pointsto main.a +} + +// @calls main.func6 -> func6$1 + +type I interface { + f() +} + +type D struct{} + +func (D) f() {} + +func func7() { + var i I = D{} + imethodClosure := i.f + imethodClosure() + // @calls main.func7 -> bound$(main.I).f + // @calls bound$(main.I).f -> (main.D).f + + var d D + cmethodClosure := d.f + cmethodClosure() + // @calls main.func7 -> bound$(main.D).f + // @calls bound$(main.D).f ->(main.D).f + + methodExpr := D.f + methodExpr(d) + // @calls main.func7 -> (main.D).f +} + +func main() { + func1() + func2() + func3() + func4() + func5() + func6() + func7() +} + +// @calls -> main.main +// @calls -> main.init diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/funcreflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/funcreflect.go new file mode 100644 index 00000000..448740ff --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/funcreflect.go @@ -0,0 +1,130 @@ +// +build ignore + +package main + +import "reflect" + +var zero, a, b int +var false2 bool + +func f(p *int, q hasF) *int { + print(p) // @pointsto main.a + print(q) // @types *T + print(q.(*T)) // @pointsto new@newT1:22 + return &b +} + +func g(p *bool) (*int, *bool, hasF) { + return &b, p, new(T) // @line newT2 +} + +func reflectValueCall() { + rvf := reflect.ValueOf(f) + res := rvf.Call([]reflect.Value{ + // argument order is not significant: + reflect.ValueOf(new(T)), // @line newT1 + reflect.ValueOf(&a), + }) + print(res[0].Interface()) // @types *int + print(res[0].Interface().(*int)) // @pointsto main.b +} + +// @calls main.reflectValueCall -> main.f + +func reflectValueCallIndirect() { + rvf := reflect.ValueOf(g) + call := rvf.Call // kids, don't try this at home + + // Indirect call uses shared contour. + // + // Also notice that argument position doesn't matter, and args + // of inappropriate type (e.g. 'a') are ignored. + res := call([]reflect.Value{ + reflect.ValueOf(&a), + reflect.ValueOf(&false2), + }) + res0 := res[0].Interface() + print(res0) // @types *int | *bool | *T + print(res0.(*int)) // @pointsto main.b + print(res0.(*bool)) // @pointsto main.false2 + print(res0.(hasF)) // @types *T + print(res0.(*T)) // @pointsto new@newT2:19 +} + +// @calls main.reflectValueCallIndirect -> bound$(reflect.Value).Call +// @calls bound$(reflect.Value).Call -> main.g + +func reflectTypeInOut() { + var f func(float64, bool) (string, int) + print(reflect.Zero(reflect.TypeOf(f).In(0)).Interface()) // @types float64 + print(reflect.Zero(reflect.TypeOf(f).In(1)).Interface()) // @types bool + print(reflect.Zero(reflect.TypeOf(f).In(-1)).Interface()) // @types float64 | bool + print(reflect.Zero(reflect.TypeOf(f).In(zero)).Interface()) // @types float64 | bool + + print(reflect.Zero(reflect.TypeOf(f).Out(0)).Interface()) // @types string + print(reflect.Zero(reflect.TypeOf(f).Out(1)).Interface()) // @types int + print(reflect.Zero(reflect.TypeOf(f).Out(2)).Interface()) // @types + + print(reflect.Zero(reflect.TypeOf(3).Out(0)).Interface()) // @types +} + +type hasF interface { + F() +} + +type T struct{} + +func (T) F() {} +func (T) g(int) {} + +type U struct{} + +func (U) F(int) {} +func (U) g(string) {} + +type I interface { + f() +} + +var nonconst string + +func reflectTypeMethodByName() { + TU := reflect.TypeOf([]interface{}{T{}, U{}}[0]) + print(reflect.Zero(TU)) // @types T | U + + F, _ := TU.MethodByName("F") + print(reflect.Zero(F.Type)) // @types func(T) | func(U, int) + print(F.Func) // @pointsto (main.T).F | (main.U).F + + g, _ := TU.MethodByName("g") + print(reflect.Zero(g.Type)) // @types func(T, int) | func(U, string) + print(g.Func) // @pointsto (main.T).g | (main.U).g + + // Non-literal method names are treated less precisely. + U := reflect.TypeOf(U{}) + X, _ := U.MethodByName(nonconst) + print(reflect.Zero(X.Type)) // @types func(U, int) | func(U, string) + print(X.Func) // @pointsto (main.U).F | (main.U).g + + // Interface methods. + rThasF := reflect.TypeOf(new(hasF)).Elem() + print(reflect.Zero(rThasF)) // @types hasF + F2, _ := rThasF.MethodByName("F") + print(reflect.Zero(F2.Type)) // @types func() + print(F2.Func) // @pointsto (main.hasF).F + +} + +func reflectTypeMethod() { + m := reflect.TypeOf(T{}).Method(0) + print(reflect.Zero(m.Type)) // @types func(T) | func(T, int) + print(m.Func) // @pointsto (main.T).F | (main.T).g +} + +func main() { + reflectValueCall() + reflectValueCallIndirect() + reflectTypeInOut() + reflectTypeMethodByName() + reflectTypeMethod() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/hello.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/hello.go new file mode 100644 index 00000000..065ff860 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/hello.go @@ -0,0 +1,27 @@ +// +build ignore + +package main + +import ( + "fmt" + "os" +) + +type S int + +var theS S + +func (s *S) String() string { + print(s) // @pointsto main.theS + return "" +} + +func main() { + // os.Args is considered instrincally allocated, + // but may also be set explicitly (e.g. on Windows), hence '...'. + print(os.Args) // @pointsto | ... + fmt.Println("Hello, World!", &theS) +} + +// @calls main.main -> fmt.Println +// @calls (*fmt.pp).handleMethods -> (*main.S).String diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/interfaces.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/interfaces.go new file mode 100644 index 00000000..60c238aa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/interfaces.go @@ -0,0 +1,152 @@ +// +build ignore + +package main + +type I interface { + f() +} + +type C int + +func (*C) f() {} + +type D struct{ ptr *int } + +func (D) f() {} + +type E struct{} + +func (*E) f() {} + +var a, b int + +var unknown bool // defeat dead-code elimination + +func interface1() { + var i interface{} = &a + var j interface{} = D{&b} + k := j + if unknown { + k = i + } + + print(i) // @types *int + print(j) // @types D + print(k) // @types *int | D + + print(i.(*int)) // @pointsto main.a + print(j.(*int)) // @pointsto + print(k.(*int)) // @pointsto main.a + + print(i.(D).ptr) // @pointsto + print(j.(D).ptr) // @pointsto main.b + print(k.(D).ptr) // @pointsto main.b +} + +func interface2() { + var i I = (*C)(&a) + var j I = D{&a} + k := j + if unknown { + k = i + } + + print(i) // @types *C + print(j) // @types D + print(k) // @types *C | D + print(k) // @pointsto makeinterface:main.D | makeinterface:*main.C + + k.f() + // @calls main.interface2 -> (*main.C).f + // @calls main.interface2 -> (main.D).f + + print(i.(*C)) // @pointsto main.a + print(j.(D).ptr) // @pointsto main.a + print(k.(*C)) // @pointsto main.a + + switch x := k.(type) { + case *C: + print(x) // @pointsto main.a + case D: + print(x.ptr) // @pointsto main.a + case *E: + print(x) // @pointsto + } +} + +func interface3() { + // There should be no backflow of concrete types from the type-switch to x. + var x interface{} = 0 + print(x) // @types int + switch x.(type) { + case int: + case string: + } +} + +func interface4() { + var i interface{} = D{&a} + if unknown { + i = 123 + } + + print(i) // @types int | D + + j := i.(I) // interface narrowing type-assertion + print(j) // @types D + print(j.(D).ptr) // @pointsto main.a + + var l interface{} = j // interface widening assignment. + print(l) // @types D + print(l.(D).ptr) // @pointsto main.a + + m := j.(interface{}) // interface widening type-assertion. + print(m) // @types D + print(m.(D).ptr) // @pointsto main.a +} + +// Interface method calls and value flow: + +type J interface { + f(*int) *int +} + +type P struct { + x int +} + +func (p *P) f(pi *int) *int { + print(p) // @pointsto p@i5p:6 + print(pi) // @pointsto i@i5i:6 + return &p.x +} + +func interface5() { + var p P // @line i5p + var j J = &p + var i int // @line i5i + print(j.f(&i)) // @pointsto p.x@i5p:6 + print(&i) // @pointsto i@i5i:6 + + print(j) // @pointsto makeinterface:*main.P +} + +// @calls main.interface5 -> (*main.P).f + +func interface6() { + f := I.f + print(f) // @pointsto (main.I).f + f(new(struct{ D })) +} + +// @calls main.interface6 -> (main.I).f +// @calls (main.I).f -> (*struct{main.D}).f + +func main() { + interface1() + interface2() + interface3() + interface4() + interface5() + interface6() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/mapreflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/mapreflect.go new file mode 100644 index 00000000..bc5e7e6b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/mapreflect.go @@ -0,0 +1,117 @@ +// +build ignore + +package main + +// Test of maps with reflection. + +import "reflect" + +var a int +var b bool + +func reflectMapKeysIndex() { + m := make(map[*int]*bool) // @line mr1make + m[&a] = &b + + mrv := reflect.ValueOf(m) + print(mrv.Interface()) // @types map[*int]*bool + print(mrv.Interface().(map[*int]*bool)) // @pointsto makemap@mr1make:11 + print(mrv) // @pointsto makeinterface:map[*int]*bool + print(mrv) // @types map[*int]*bool + + keys := mrv.MapKeys() + print(keys) // @pointsto + for _, k := range keys { + print(k) // @pointsto + print(k) // @types *int + print(k.Interface()) // @types *int + print(k.Interface().(*int)) // @pointsto main.a + + v := mrv.MapIndex(k) + print(v.Interface()) // @types *bool + print(v.Interface().(*bool)) // @pointsto main.b + } +} + +func reflectSetMapIndex() { + m := make(map[*int]*bool) + mrv := reflect.ValueOf(m) + mrv.SetMapIndex(reflect.ValueOf(&a), reflect.ValueOf(&b)) + + print(m[nil]) // @pointsto main.b + + for _, k := range mrv.MapKeys() { + print(k.Interface()) // @types *int + print(k.Interface().(*int)) // @pointsto main.a + } + + tmap := reflect.TypeOf(m) + // types.EvalNode won't let us refer to non-exported types: + // print(tmap) // #@types *reflect.rtype + print(tmap) // @pointsto map[*int]*bool + + zmap := reflect.Zero(tmap) + print(zmap) // @pointsto + print(zmap.Interface()) // @pointsto + + print(tmap.Key()) // @pointsto *int + print(tmap.Elem()) // @pointsto *bool + print(reflect.Zero(tmap.Key())) // @pointsto + print(reflect.Zero(tmap.Key()).Interface()) // @pointsto + print(reflect.Zero(tmap.Key()).Interface()) // @types *int + print(reflect.Zero(tmap.Elem())) // @pointsto + print(reflect.Zero(tmap.Elem()).Interface()) // @pointsto + print(reflect.Zero(tmap.Elem()).Interface()) // @types *bool +} + +func reflectSetMapIndexInterface() { + // Exercises reflect.Value conversions to/from interfaces: + // a different code path than for concrete types. + m := make(map[interface{}]interface{}) + reflect.ValueOf(m).SetMapIndex(reflect.ValueOf(&a), reflect.ValueOf(&b)) + for k, v := range m { + print(k) // @types *int + print(k.(*int)) // @pointsto main.a + print(v) // @types *bool + print(v.(*bool)) // @pointsto main.b + } +} + +func reflectSetMapIndexAssignable() { + // SetMapIndex performs implicit assignability conversions. + type I *int + type J *int + + str := reflect.ValueOf("") + + // *int is assignable to I. + m1 := make(map[string]I) + reflect.ValueOf(m1).SetMapIndex(str, reflect.ValueOf(new(int))) // @line int + print(m1[""]) // @pointsto new@int:58 + + // I is assignable to I. + m2 := make(map[string]I) + reflect.ValueOf(m2).SetMapIndex(str, reflect.ValueOf(I(new(int)))) // @line I + print(m2[""]) // @pointsto new@I:60 + + // J is not assignable to I. + m3 := make(map[string]I) + reflect.ValueOf(m3).SetMapIndex(str, reflect.ValueOf(J(new(int)))) + print(m3[""]) // @pointsto +} + +func reflectMakeMap() { + t := reflect.TypeOf(map[*int]*bool(nil)) + v := reflect.MakeMap(t) + print(v) // @types map[*int]*bool + print(v) // @pointsto +} + +func main() { + reflectMapKeysIndex() + reflectSetMapIndex() + reflectSetMapIndexInterface() + reflectSetMapIndexAssignable() + reflectMakeMap() + // TODO(adonovan): reflect.MapOf(Type) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/maps.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/maps.go new file mode 100644 index 00000000..6f3751d7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/maps.go @@ -0,0 +1,51 @@ +// +build ignore + +package main + +// Test of maps. + +var a, b, c int + +func maps1() { + m1 := map[*int]*int{&a: &b} // @line m1m1 + m2 := make(map[*int]*int) // @line m1m2 + m2[&b] = &a + + print(m1[nil]) // @pointsto main.b | main.c + print(m2[nil]) // @pointsto main.a + + print(m1) // @pointsto makemap@m1m1:21 + print(m2) // @pointsto makemap@m1m2:12 + + m1[&b] = &c + + for k, v := range m1 { + print(k) // @pointsto main.a | main.b + print(v) // @pointsto main.b | main.c + } + + for k, v := range m2 { + print(k) // @pointsto main.b + print(v) // @pointsto main.a + } + + // Lookup doesn't create any aliases. + print(m2[&c]) // @pointsto main.a + if _, ok := m2[&a]; ok { + print(m2[&c]) // @pointsto main.a + } +} + +func maps2() { + m1 := map[*int]*int{&a: &b} + m2 := map[*int]*int{&b: &c} + _ = []map[*int]*int{m1, m2} // (no spurious merging of m1, m2) + + print(m1[nil]) // @pointsto main.b + print(m2[nil]) // @pointsto main.c +} + +func main() { + maps1() + maps2() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/panic.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/panic.go new file mode 100644 index 00000000..ee8a7668 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/panic.go @@ -0,0 +1,36 @@ +// +build ignore + +package main + +// Test of value flow from panic() to recover(). +// We model them as stores/loads of a global location. +// We ignore concrete panic types originating from the runtime. + +var someval int + +type myPanic struct{} + +func f(int) {} + +func g() string { return "" } + +func deadcode() { + panic(123) // not reached +} + +func main() { + switch someval { + case 0: + panic("oops") + case 1: + panic(myPanic{}) + case 2: + panic(f) + case 3: + panic(g) + } + ex := recover() + print(ex) // @types myPanic | string | func(int) | func() string + print(ex.(func(int))) // @pointsto main.f + print(ex.(func() string)) // @pointsto main.g +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/recur.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/recur.go new file mode 100644 index 00000000..4c7229de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/recur.go @@ -0,0 +1,11 @@ +// +build ignore + +package main + +// Analysis abstraction of recursive calls is finite. + +func main() { + main() +} + +// @calls main.main -> main.main diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/reflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/reflect.go new file mode 100644 index 00000000..ec254db0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/reflect.go @@ -0,0 +1,87 @@ +// +build ignore + +package main + +import "reflect" +import "unsafe" + +var a, b int +var unknown bool + +func reflectIndirect() { + ptr := &a + // Pointer: + print(reflect.Indirect(reflect.ValueOf(&ptr)).Interface().(*int)) // @pointsto main.a + // Non-pointer: + print(reflect.Indirect(reflect.ValueOf([]*int{ptr})).Interface().([]*int)[0]) // @pointsto main.a +} + +func reflectNewAt() { + var x [8]byte + print(reflect.NewAt(reflect.TypeOf(3), unsafe.Pointer(&x)).Interface()) // @types *int +} + +// @warning "unsound: main.reflectNewAt contains a reflect.NewAt.. call" + +func reflectTypeOf() { + t := reflect.TypeOf(3) + if unknown { + t = reflect.TypeOf("foo") + } + // TODO(adonovan): make types.Eval let us refer to unexported types. + print(t) // #@types *reflect.rtype + print(reflect.Zero(t).Interface()) // @types int | string + newint := reflect.New(t).Interface() // @line rtonew + print(newint) // @types *int | *string + print(newint.(*int)) // @pointsto + print(newint.(*string)) // @pointsto +} + +func reflectTypeElem() { + print(reflect.Zero(reflect.TypeOf(&a).Elem()).Interface()) // @types int + print(reflect.Zero(reflect.TypeOf([]string{}).Elem()).Interface()) // @types string + print(reflect.Zero(reflect.TypeOf(make(chan bool)).Elem()).Interface()) // @types bool + print(reflect.Zero(reflect.TypeOf(make(map[string]float64)).Elem()).Interface()) // @types float64 + print(reflect.Zero(reflect.TypeOf([3]complex64{}).Elem()).Interface()) // @types complex64 + print(reflect.Zero(reflect.TypeOf(3).Elem()).Interface()) // @types + print(reflect.Zero(reflect.TypeOf(new(interface{})).Elem())) // @types interface{} + print(reflect.Zero(reflect.TypeOf(new(interface{})).Elem()).Interface()) // @types +} + +// reflect.Values within reflect.Values. +func metareflection() { + // "box" a *int twice, unbox it twice. + v0 := reflect.ValueOf(&a) + print(v0) // @types *int + v1 := reflect.ValueOf(v0) // box + print(v1) // @types reflect.Value + v2 := reflect.ValueOf(v1) // box + print(v2) // @types reflect.Value + v1a := v2.Interface().(reflect.Value) // unbox + print(v1a) // @types reflect.Value + v0a := v1a.Interface().(reflect.Value) // unbox + print(v0a) // @types *int + print(v0a.Interface().(*int)) // @pointsto main.a + + // "box" an interface{} lvalue twice, unbox it twice. + var iface interface{} = 3 + x0 := reflect.ValueOf(&iface).Elem() + print(x0) // @types interface{} + x1 := reflect.ValueOf(x0) // box + print(x1) // @types reflect.Value + x2 := reflect.ValueOf(x1) // box + print(x2) // @types reflect.Value + x1a := x2.Interface().(reflect.Value) // unbox + print(x1a) // @types reflect.Value + x0a := x1a.Interface().(reflect.Value) // unbox + print(x0a) // @types interface{} + print(x0a.Interface()) // @types int +} + +func main() { + reflectIndirect() + reflectNewAt() + reflectTypeOf() + reflectTypeElem() + metareflection() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/rtti.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/rtti.go new file mode 100644 index 00000000..826936de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/rtti.go @@ -0,0 +1,29 @@ +package main + +// Regression test for oracle crash +// https://code.google.com/p/go/issues/detail?id=6605 +// +// Using reflection, methods may be called on types that are not the +// operand of any ssa.MakeInterface instruction. In this example, +// (Y).F is called by deriving the type Y from *Y. Prior to the fix, +// no RTTI (or method set) for type Y was included in the program, so +// the F() call would crash. + +import "reflect" + +var a int + +type X struct{} + +func (X) F() *int { + return &a +} + +type I interface { + F() *int +} + +func main() { + type Y struct{ X } + print(reflect.Indirect(reflect.ValueOf(new(Y))).Interface().(I).F()) // @pointsto main.a +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/structreflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/structreflect.go new file mode 100644 index 00000000..9fb49f55 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/structreflect.go @@ -0,0 +1,45 @@ +// +build ignore + +package main + +import "reflect" + +type A struct { + f *int + g interface{} + h bool +} + +var dyn string + +func reflectTypeFieldByName() { + f, _ := reflect.TypeOf(A{}).FieldByName("f") + print(f.Type) // @pointsto *int + + g, _ := reflect.TypeOf(A{}).FieldByName("g") + print(g.Type) // @pointsto interface{} + print(reflect.Zero(g.Type)) // @pointsto + print(reflect.Zero(g.Type)) // @types interface{} + + print(reflect.Zero(g.Type).Interface()) // @pointsto + print(reflect.Zero(g.Type).Interface()) // @types + + h, _ := reflect.TypeOf(A{}).FieldByName("h") + print(h.Type) // @pointsto bool + + missing, _ := reflect.TypeOf(A{}).FieldByName("missing") + print(missing.Type) // @pointsto + + dyn, _ := reflect.TypeOf(A{}).FieldByName(dyn) + print(dyn.Type) // @pointsto *int | bool | interface{} +} + +func reflectTypeField() { + fld := reflect.TypeOf(A{}).Field(0) + print(fld.Type) // @pointsto *int | bool | interface{} +} + +func main() { + reflectTypeFieldByName() + reflectTypeField() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/structs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/structs.go new file mode 100644 index 00000000..9036d608 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/testdata/structs.go @@ -0,0 +1,100 @@ +// +build ignore + +package main + +var unknown bool // defeat dead-code elimination + +var p, q int + +type A struct { + f *int + g interface{} +} + +func (a A) m1() { + print(a.f) // @pointsto main.p +} + +func (a *A) m2() { + print(a) // @pointsto complit.A@struct1s:9 + print(a.f) // @pointsto main.p +} + +type B struct { + h *int + A +} + +func structs1() { + b := &B{ // @line struct1s + h: &q, + } + b.f = &p + b.g = b + + print(b.h) // @pointsto main.q + print(b.f) // @pointsto main.p + print(b.g) // @types *B + + ptr := &b.f + print(*ptr) // @pointsto main.p + + b.m1() + b.m2() +} + +// @calls main.structs1 -> (main.A).m1 +// @calls main.structs1 -> (*main.A).m2 +// @calls (*main.B).m1 -> (main.A).m1 +// @calls (*main.B).m2 -> (*main.A).m2 + +type T struct { + x int + y int +} + +type S struct { + a [3]T + b *[3]T + c [3]*T +} + +func structs2() { + var s S // @line s2s + print(&s) // @pointsto s@s2s:6 + print(&s.a) // @pointsto s.a@s2s:6 + print(&s.a[0]) // @pointsto s.a[*]@s2s:6 + print(&s.a[0].x) // @pointsto s.a[*].x@s2s:6 + print(&s.a[0].y) // @pointsto s.a[*].y@s2s:6 + print(&s.b) // @pointsto s.b@s2s:6 + print(&s.b[0]) // @pointsto + print(&s.b[0].x) // @pointsto + print(&s.b[0].y) // @pointsto + print(&s.c) // @pointsto s.c@s2s:6 + print(&s.c[0]) // @pointsto s.c[*]@s2s:6 + print(&s.c[0].x) // @pointsto + print(&s.c[0].y) // @pointsto + + var s2 S // @line s2s2 + s2.b = new([3]T) // @line s2s2b + print(s2.b) // @pointsto new@s2s2b:12 + print(&s2.b) // @pointsto s2.b@s2s2:6 + print(&s2.b[0]) // @pointsto new[*]@s2s2b:12 + print(&s2.b[0].x) // @pointsto new[*].x@s2s2b:12 + print(&s2.b[0].y) // @pointsto new[*].y@s2s2b:12 + print(&s2.c[0].x) // @pointsto + print(&s2.c[0].y) // @pointsto + + var s3 S // @line s2s3 + s3.c[2] = new(T) // @line s2s3c + print(&s3.c) // @pointsto s3.c@s2s3:6 + print(s3.c[1]) // @pointsto new@s2s3c:15 + print(&s3.c[1]) // @pointsto s3.c[*]@s2s3:6 + print(&s3.c[1].x) // @pointsto new.x@s2s3c:15 + print(&s3.c[1].y) // @pointsto new.y@s2s3c:15 +} + +func main() { + structs1() + structs2() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/util.go new file mode 100644 index 00000000..06d271d7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/pointer/util.go @@ -0,0 +1,352 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pointer + +import ( + "bytes" + "fmt" + + "code.google.com/p/go.tools/go/types" +) + +// CanPoint reports whether the type T is pointerlike, +// for the purposes of this analysis. +func CanPoint(T types.Type) bool { + switch T := T.(type) { + case *types.Named: + if obj := T.Obj(); obj.Name() == "Value" && obj.Pkg().Path() == "reflect" { + return true // treat reflect.Value like interface{} + } + return CanPoint(T.Underlying()) + + case *types.Pointer, *types.Interface, *types.Map, *types.Chan, *types.Signature, *types.Slice: + return true + } + + return false // array struct tuple builtin basic +} + +// CanHaveDynamicTypes reports whether the type T can "hold" dynamic types, +// i.e. is an interface (incl. reflect.Type) or a reflect.Value. +// +func CanHaveDynamicTypes(T types.Type) bool { + switch T := T.(type) { + case *types.Named: + if obj := T.Obj(); obj.Name() == "Value" && obj.Pkg().Path() == "reflect" { + return true // reflect.Value + } + return CanHaveDynamicTypes(T.Underlying()) + case *types.Interface: + return true + } + return false +} + +// isInterface reports whether T is an interface type. +func isInterface(T types.Type) bool { + _, ok := T.Underlying().(*types.Interface) + return ok +} + +// mustDeref returns the element type of its argument, which must be a +// pointer; panic ensues otherwise. +func mustDeref(typ types.Type) types.Type { + return typ.Underlying().(*types.Pointer).Elem() +} + +// deref returns a pointer's element type; otherwise it returns typ. +func deref(typ types.Type) types.Type { + if p, ok := typ.Underlying().(*types.Pointer); ok { + return p.Elem() + } + return typ +} + +// A fieldInfo describes one subelement (node) of the flattening-out +// of a type T: the subelement's type and its path from the root of T. +// +// For example, for this type: +// type line struct{ points []struct{x, y int} } +// flatten() of the inner struct yields the following []fieldInfo: +// struct{ x, y int } "" +// int ".x" +// int ".y" +// and flatten(line) yields: +// struct{ points []struct{x, y int} } "" +// struct{ x, y int } ".points[*]" +// int ".points[*].x +// int ".points[*].y" +// +type fieldInfo struct { + typ types.Type + + // op and tail describe the path to the element (e.g. ".a#2.b[*].c"). + op interface{} // *Array: true; *Tuple: int; *Struct: *types.Var; *Named: nil + tail *fieldInfo +} + +// path returns a user-friendly string describing the subelement path. +// +func (fi *fieldInfo) path() string { + var buf bytes.Buffer + for p := fi; p != nil; p = p.tail { + switch op := p.op.(type) { + case bool: + fmt.Fprintf(&buf, "[*]") + case int: + fmt.Fprintf(&buf, "#%d", op) + case *types.Var: + fmt.Fprintf(&buf, ".%s", op.Name()) + } + } + return buf.String() +} + +// flatten returns a list of directly contained fields in the preorder +// traversal of the type tree of t. The resulting elements are all +// scalars (basic types or pointerlike types), except for struct/array +// "identity" nodes, whose type is that of the aggregate. +// +// reflect.Value is considered pointerlike, similar to interface{}. +// +// Callers must not mutate the result. +// +func (a *analysis) flatten(t types.Type) []*fieldInfo { + fl, ok := a.flattenMemo[t] + if !ok { + switch t := t.(type) { + case *types.Named: + u := t.Underlying() + if isInterface(u) { + // Debuggability hack: don't remove + // the named type from interfaces as + // they're very verbose. + fl = append(fl, &fieldInfo{typ: t}) + } else { + fl = a.flatten(u) + } + + case *types.Basic, + *types.Signature, + *types.Chan, + *types.Map, + *types.Interface, + *types.Slice, + *types.Pointer: + fl = append(fl, &fieldInfo{typ: t}) + + case *types.Array: + fl = append(fl, &fieldInfo{typ: t}) // identity node + for _, fi := range a.flatten(t.Elem()) { + fl = append(fl, &fieldInfo{typ: fi.typ, op: true, tail: fi}) + } + + case *types.Struct: + fl = append(fl, &fieldInfo{typ: t}) // identity node + for i, n := 0, t.NumFields(); i < n; i++ { + f := t.Field(i) + for _, fi := range a.flatten(f.Type()) { + fl = append(fl, &fieldInfo{typ: fi.typ, op: f, tail: fi}) + } + } + + case *types.Tuple: + // No identity node: tuples are never address-taken. + for i, n := 0, t.Len(); i < n; i++ { + f := t.At(i) + for _, fi := range a.flatten(f.Type()) { + fl = append(fl, &fieldInfo{typ: fi.typ, op: i, tail: fi}) + } + } + + default: + panic(t) + } + + a.flattenMemo[t] = fl + } + + return fl +} + +// sizeof returns the number of pointerlike abstractions (nodes) in the type t. +func (a *analysis) sizeof(t types.Type) uint32 { + return uint32(len(a.flatten(t))) +} + +// shouldTrack reports whether object type T contains (recursively) +// any fields whose addresses should be tracked. +func (a *analysis) shouldTrack(T types.Type) bool { + if a.track == trackAll { + return true // fast path + } + track, ok := a.trackTypes[T] + if !ok { + a.trackTypes[T] = true // break cycles conservatively + // NB: reflect.Value, reflect.Type are pre-populated to true. + for _, fi := range a.flatten(T) { + switch ft := fi.typ.Underlying().(type) { + case *types.Interface, *types.Signature: + track = true // needed for callgraph + case *types.Basic: + // no-op + case *types.Chan: + track = a.track&trackChan != 0 || a.shouldTrack(ft.Elem()) + case *types.Map: + track = a.track&trackMap != 0 || a.shouldTrack(ft.Key()) || a.shouldTrack(ft.Elem()) + case *types.Slice: + track = a.track&trackSlice != 0 || a.shouldTrack(ft.Elem()) + case *types.Pointer: + track = a.track&trackPtr != 0 || a.shouldTrack(ft.Elem()) + case *types.Array, *types.Struct: + // No need to look at field types since they will follow (flattened). + default: + // Includes *types.Tuple, which are never address-taken. + panic(ft) + } + if track { + break + } + } + a.trackTypes[T] = track + if !track && a.log != nil { + fmt.Fprintf(a.log, "Type not tracked: %s\n", T) + } + } + return track +} + +// offsetOf returns the (abstract) offset of field index within struct +// or tuple typ. +func (a *analysis) offsetOf(typ types.Type, index int) uint32 { + var offset uint32 + switch t := typ.Underlying().(type) { + case *types.Tuple: + for i := 0; i < index; i++ { + offset += a.sizeof(t.At(i).Type()) + } + case *types.Struct: + offset++ // the node for the struct itself + for i := 0; i < index; i++ { + offset += a.sizeof(t.Field(i).Type()) + } + default: + panic(fmt.Sprintf("offsetOf(%s : %T)", typ, typ)) + } + return offset +} + +// sliceToArray returns the type representing the arrays to which +// slice type slice points. +func sliceToArray(slice types.Type) *types.Array { + return types.NewArray(slice.Underlying().(*types.Slice).Elem(), 1) +} + +// Node set ------------------------------------------------------------------- + +// NB, mutator methods are attached to *nodeset. +// nodeset may be a reference, but its address matters! +type nodeset map[nodeid]struct{} + +// ---- Accessors ---- + +func (ns nodeset) String() string { + var buf bytes.Buffer + buf.WriteRune('{') + var sep string + for n := range ns { + fmt.Fprintf(&buf, "%sn%d", sep, n) + sep = ", " + } + buf.WriteRune('}') + return buf.String() +} + +// diff returns the set-difference x - y. nil => empty. +// +// TODO(adonovan): opt: extremely inefficient. BDDs do this in +// constant time. Sparse bitvectors are linear but very fast. +func (x nodeset) diff(y nodeset) nodeset { + var z nodeset + for k := range x { + if _, ok := y[k]; !ok { + z.add(k) + } + } + return z +} + +// clone() returns an unaliased copy of x. +func (x nodeset) clone() nodeset { + return x.diff(nil) +} + +// ---- Mutators ---- + +func (ns *nodeset) add(n nodeid) bool { + sz := len(*ns) + if *ns == nil { + *ns = make(nodeset) + } + (*ns)[n] = struct{}{} + return len(*ns) > sz +} + +func (x *nodeset) addAll(y nodeset) bool { + if y == nil { + return false + } + sz := len(*x) + if *x == nil { + *x = make(nodeset) + } + for n := range y { + (*x)[n] = struct{}{} + } + return len(*x) > sz +} + +// Constraint set ------------------------------------------------------------- + +type constraintset map[constraint]struct{} + +func (cs *constraintset) add(c constraint) bool { + sz := len(*cs) + if *cs == nil { + *cs = make(constraintset) + } + (*cs)[c] = struct{}{} + return len(*cs) > sz +} + +// Worklist ------------------------------------------------------------------- + +const empty nodeid = 1<<32 - 1 + +type worklist interface { + add(nodeid) // Adds a node to the set + take() nodeid // Takes a node from the set and returns it, or empty +} + +// Simple nondeterministic worklist based on a built-in map. +type mapWorklist struct { + set nodeset +} + +func (w *mapWorklist) add(n nodeid) { + w.set[n] = struct{}{} +} + +func (w *mapWorklist) take() nodeid { + for k := range w.set { + delete(w.set, k) + return k + } + return empty +} + +func makeMapWorklist() worklist { + return &mapWorklist{make(nodeset)} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/blockopt.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/blockopt.go new file mode 100644 index 00000000..e79260a2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/blockopt.go @@ -0,0 +1,187 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// Simple block optimizations to simplify the control flow graph. + +// TODO(adonovan): opt: instead of creating several "unreachable" blocks +// per function in the Builder, reuse a single one (e.g. at Blocks[1]) +// to reduce garbage. + +import ( + "fmt" + "os" +) + +// If true, perform sanity checking and show progress at each +// successive iteration of optimizeBlocks. Very verbose. +const debugBlockOpt = false + +// markReachable sets Index=-1 for all blocks reachable from b. +func markReachable(b *BasicBlock) { + b.Index = -1 + for _, succ := range b.Succs { + if succ.Index == 0 { + markReachable(succ) + } + } +} + +// deleteUnreachableBlocks marks all reachable blocks of f and +// eliminates (nils) all others, including possibly cyclic subgraphs. +// +func deleteUnreachableBlocks(f *Function) { + const white, black = 0, -1 + // We borrow b.Index temporarily as the mark bit. + for _, b := range f.Blocks { + b.Index = white + } + markReachable(f.Blocks[0]) + if f.Recover != nil { + markReachable(f.Recover) + } + for i, b := range f.Blocks { + if b.Index == white { + for _, c := range b.Succs { + if c.Index == black { + c.removePred(b) // delete white->black edge + } + } + if debugBlockOpt { + fmt.Fprintln(os.Stderr, "unreachable", b) + } + f.Blocks[i] = nil // delete b + } + } + f.removeNilBlocks() +} + +// jumpThreading attempts to apply simple jump-threading to block b, +// in which a->b->c become a->c if b is just a Jump. +// The result is true if the optimization was applied. +// +func jumpThreading(f *Function, b *BasicBlock) bool { + if b.Index == 0 { + return false // don't apply to entry block + } + if b.Instrs == nil { + return false + } + if _, ok := b.Instrs[0].(*Jump); !ok { + return false // not just a jump + } + c := b.Succs[0] + if c == b { + return false // don't apply to degenerate jump-to-self. + } + if c.hasPhi() { + return false // not sound without more effort + } + for j, a := range b.Preds { + a.replaceSucc(b, c) + + // If a now has two edges to c, replace its degenerate If by Jump. + if len(a.Succs) == 2 && a.Succs[0] == c && a.Succs[1] == c { + jump := new(Jump) + jump.setBlock(a) + a.Instrs[len(a.Instrs)-1] = jump + a.Succs = a.Succs[:1] + c.removePred(b) + } else { + if j == 0 { + c.replacePred(b, a) + } else { + c.Preds = append(c.Preds, a) + } + } + + if debugBlockOpt { + fmt.Fprintln(os.Stderr, "jumpThreading", a, b, c) + } + } + f.Blocks[b.Index] = nil // delete b + return true +} + +// fuseBlocks attempts to apply the block fusion optimization to block +// a, in which a->b becomes ab if len(a.Succs)==len(b.Preds)==1. +// The result is true if the optimization was applied. +// +func fuseBlocks(f *Function, a *BasicBlock) bool { + if len(a.Succs) != 1 { + return false + } + b := a.Succs[0] + if len(b.Preds) != 1 { + return false + } + + // Degenerate &&/|| ops may result in a straight-line CFG + // containing φ-nodes. (Ideally we'd replace such them with + // their sole operand but that requires Referrers, built later.) + if b.hasPhi() { + return false // not sound without further effort + } + + // Eliminate jump at end of A, then copy all of B across. + a.Instrs = append(a.Instrs[:len(a.Instrs)-1], b.Instrs...) + for _, instr := range b.Instrs { + instr.setBlock(a) + } + + // A inherits B's successors + a.Succs = append(a.succs2[:0], b.Succs...) + + // Fix up Preds links of all successors of B. + for _, c := range b.Succs { + c.replacePred(b, a) + } + + if debugBlockOpt { + fmt.Fprintln(os.Stderr, "fuseBlocks", a, b) + } + + f.Blocks[b.Index] = nil // delete b + return true +} + +// optimizeBlocks() performs some simple block optimizations on a +// completed function: dead block elimination, block fusion, jump +// threading. +// +func optimizeBlocks(f *Function) { + deleteUnreachableBlocks(f) + + // Loop until no further progress. + changed := true + for changed { + changed = false + + if debugBlockOpt { + f.WriteTo(os.Stderr) + mustSanityCheck(f, nil) + } + + for _, b := range f.Blocks { + // f.Blocks will temporarily contain nils to indicate + // deleted blocks; we remove them at the end. + if b == nil { + continue + } + + // Fuse blocks. b->c becomes bc. + if fuseBlocks(f, b) { + changed = true + } + + // a->b->c becomes a->c if b contains only a Jump. + if jumpThreading(f, b) { + changed = true + continue // (b was disconnected) + } + } + } + f.removeNilBlocks() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/builder.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/builder.go new file mode 100644 index 00000000..c3b7db98 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/builder.go @@ -0,0 +1,2401 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file implements the BUILD phase of SSA construction. +// +// SSA construction has two phases, CREATE and BUILD. In the CREATE phase +// (create.go), all packages are constructed and type-checked and +// definitions of all package members are created, method-sets are +// computed, and wrapper methods are synthesized. +// ssa.Packages are created in arbitrary order. +// +// In the BUILD phase (builder.go), the builder traverses the AST of +// each Go source function and generates SSA instructions for the +// function body. Initializer expressions for package-level variables +// are emitted to the package's init() function in the order specified +// by go/types.Info.InitOrder, then code for each function in the +// package is generated in lexical order. +// The BUILD phases for distinct packages are independent and are +// executed in parallel. +// +// TODO(adonovan): indeed, building functions is now embarrassingly parallel. +// Audit for concurrency then benchmark using more goroutines. +// +// The builder's and Program's indices (maps) are populated and +// mutated during the CREATE phase, but during the BUILD phase they +// remain constant. The sole exception is Prog.methodSets and its +// related maps, which are protected by a dedicated mutex. + +import ( + "fmt" + "go/ast" + "go/token" + "os" + "sync" + "sync/atomic" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +type opaqueType struct { + types.Type + name string +} + +func (t *opaqueType) String() string { return t.name } + +var ( + varOk = newVar("ok", tBool) + varIndex = newVar("index", tInt) + + // Type constants. + tBool = types.Typ[types.Bool] + tByte = types.Typ[types.Byte] + tInt = types.Typ[types.Int] + tInvalid = types.Typ[types.Invalid] + tUntypedNil = types.Typ[types.UntypedNil] + tRangeIter = &opaqueType{nil, "iter"} // the type of all "range" iterators + tEface = new(types.Interface) + + // SSA Value constants. + vZero = intConst(0) + vOne = intConst(1) + vTrue = NewConst(exact.MakeBool(true), tBool) +) + +// builder holds state associated with the package currently being built. +// Its methods contain all the logic for AST-to-SSA conversion. +type builder struct{} + +// cond emits to fn code to evaluate boolean condition e and jump +// to t or f depending on its value, performing various simplifications. +// +// Postcondition: fn.currentBlock is nil. +// +func (b *builder) cond(fn *Function, e ast.Expr, t, f *BasicBlock) { + switch e := e.(type) { + case *ast.ParenExpr: + b.cond(fn, e.X, t, f) + return + + case *ast.BinaryExpr: + switch e.Op { + case token.LAND: + ltrue := fn.newBasicBlock("cond.true") + b.cond(fn, e.X, ltrue, f) + fn.currentBlock = ltrue + b.cond(fn, e.Y, t, f) + return + + case token.LOR: + lfalse := fn.newBasicBlock("cond.false") + b.cond(fn, e.X, t, lfalse) + fn.currentBlock = lfalse + b.cond(fn, e.Y, t, f) + return + } + + case *ast.UnaryExpr: + if e.Op == token.NOT { + b.cond(fn, e.X, f, t) + return + } + } + + switch cond := b.expr(fn, e).(type) { + case *Const: + // Dispatch constant conditions statically. + if exact.BoolVal(cond.Value) { + emitJump(fn, t) + } else { + emitJump(fn, f) + } + default: + emitIf(fn, cond, t, f) + } +} + +// logicalBinop emits code to fn to evaluate e, a &&- or +// ||-expression whose reified boolean value is wanted. +// The value is returned. +// +func (b *builder) logicalBinop(fn *Function, e *ast.BinaryExpr) Value { + rhs := fn.newBasicBlock("binop.rhs") + done := fn.newBasicBlock("binop.done") + + // T(e) = T(e.X) = T(e.Y) after untyped constants have been + // eliminated. + // TODO(adonovan): not true; MyBool==MyBool yields UntypedBool. + t := fn.Pkg.typeOf(e) + + var short Value // value of the short-circuit path + switch e.Op { + case token.LAND: + b.cond(fn, e.X, rhs, done) + short = NewConst(exact.MakeBool(false), t) + + case token.LOR: + b.cond(fn, e.X, done, rhs) + short = NewConst(exact.MakeBool(true), t) + } + + // Is rhs unreachable? + if rhs.Preds == nil { + // Simplify false&&y to false, true||y to true. + fn.currentBlock = done + return short + } + + // Is done unreachable? + if done.Preds == nil { + // Simplify true&&y (or false||y) to y. + fn.currentBlock = rhs + return b.expr(fn, e.Y) + } + + // All edges from e.X to done carry the short-circuit value. + var edges []Value + for _ = range done.Preds { + edges = append(edges, short) + } + + // The edge from e.Y to done carries the value of e.Y. + fn.currentBlock = rhs + edges = append(edges, b.expr(fn, e.Y)) + emitJump(fn, done) + fn.currentBlock = done + + phi := &Phi{Edges: edges, Comment: e.Op.String()} + phi.pos = e.OpPos + phi.typ = t + return done.emit(phi) +} + +// exprN lowers a multi-result expression e to SSA form, emitting code +// to fn and returning a single Value whose type is a *types.Tuple. +// The caller must access the components via Extract. +// +// Multi-result expressions include CallExprs in a multi-value +// assignment or return statement, and "value,ok" uses of +// TypeAssertExpr, IndexExpr (when X is a map), and UnaryExpr (when Op +// is token.ARROW). +// +func (b *builder) exprN(fn *Function, e ast.Expr) Value { + typ := fn.Pkg.typeOf(e).(*types.Tuple) + switch e := e.(type) { + case *ast.ParenExpr: + return b.exprN(fn, e.X) + + case *ast.CallExpr: + // Currently, no built-in function nor type conversion + // has multiple results, so we can avoid some of the + // cases for single-valued CallExpr. + var c Call + b.setCall(fn, e, &c.Call) + c.typ = typ + return fn.emit(&c) + + case *ast.IndexExpr: + mapt := fn.Pkg.typeOf(e.X).Underlying().(*types.Map) + lookup := &Lookup{ + X: b.expr(fn, e.X), + Index: emitConv(fn, b.expr(fn, e.Index), mapt.Key()), + CommaOk: true, + } + lookup.setType(typ) + lookup.setPos(e.Lbrack) + return fn.emit(lookup) + + case *ast.TypeAssertExpr: + return emitTypeTest(fn, b.expr(fn, e.X), typ.At(0).Type(), e.Lparen) + + case *ast.UnaryExpr: // must be receive <- + unop := &UnOp{ + Op: token.ARROW, + X: b.expr(fn, e.X), + CommaOk: true, + } + unop.setType(typ) + unop.setPos(e.OpPos) + return fn.emit(unop) + } + panic(fmt.Sprintf("exprN(%T) in %s", e, fn)) +} + +// builtin emits to fn SSA instructions to implement a call to the +// built-in function obj with the specified arguments +// and return type. It returns the value defined by the result. +// +// The result is nil if no special handling was required; in this case +// the caller should treat this like an ordinary library function +// call. +// +func (b *builder) builtin(fn *Function, obj *types.Builtin, args []ast.Expr, typ types.Type, pos token.Pos) Value { + switch obj.Name() { + case "make": + switch typ.Underlying().(type) { + case *types.Slice: + n := b.expr(fn, args[1]) + m := n + if len(args) == 3 { + m = b.expr(fn, args[2]) + } + v := &MakeSlice{ + Len: n, + Cap: m, + } + v.setPos(pos) + v.setType(typ) + return fn.emit(v) + + case *types.Map: + var res Value + if len(args) == 2 { + res = b.expr(fn, args[1]) + } + v := &MakeMap{Reserve: res} + v.setPos(pos) + v.setType(typ) + return fn.emit(v) + + case *types.Chan: + var sz Value = vZero + if len(args) == 2 { + sz = b.expr(fn, args[1]) + } + v := &MakeChan{Size: sz} + v.setPos(pos) + v.setType(typ) + return fn.emit(v) + } + + case "new": + alloc := emitNew(fn, deref(typ), pos) + alloc.Comment = "new" + return alloc + + case "len", "cap": + // Special case: len or cap of an array or *array is + // based on the type, not the value which may be nil. + // We must still evaluate the value, though. (If it + // was side-effect free, the whole call would have + // been constant-folded.) + t := deref(fn.Pkg.typeOf(args[0])).Underlying() + if at, ok := t.(*types.Array); ok { + b.expr(fn, args[0]) // for effects only + return intConst(at.Len()) + } + // Otherwise treat as normal. + + case "panic": + fn.emit(&Panic{ + X: emitConv(fn, b.expr(fn, args[0]), tEface), + pos: pos, + }) + fn.currentBlock = fn.newBasicBlock("unreachable") + return vTrue // any non-nil Value will do + } + return nil // treat all others as a regular function call +} + +// addr lowers a single-result addressable expression e to SSA form, +// emitting code to fn and returning the location (an lvalue) defined +// by the expression. +// +// If escaping is true, addr marks the base variable of the +// addressable expression e as being a potentially escaping pointer +// value. For example, in this code: +// +// a := A{ +// b: [1]B{B{c: 1}} +// } +// return &a.b[0].c +// +// the application of & causes a.b[0].c to have its address taken, +// which means that ultimately the local variable a must be +// heap-allocated. This is a simple but very conservative escape +// analysis. +// +// Operations forming potentially escaping pointers include: +// - &x, including when implicit in method call or composite literals. +// - a[:] iff a is an array (not *array) +// - references to variables in lexically enclosing functions. +// +func (b *builder) addr(fn *Function, e ast.Expr, escaping bool) lvalue { + switch e := e.(type) { + case *ast.Ident: + if isBlankIdent(e) { + return blank{} + } + obj := fn.Pkg.objectOf(e) + v := fn.Prog.packageLevelValue(obj) // var (address) + if v == nil { + v = fn.lookup(obj, escaping) + } + return &address{addr: v, expr: e} + + case *ast.CompositeLit: + t := deref(fn.Pkg.typeOf(e)) + var v *Alloc + if escaping { + v = emitNew(fn, t, e.Lbrace) + } else { + v = fn.addLocal(t, e.Lbrace) + } + v.Comment = "complit" + b.compLit(fn, v, e) // initialize in place + return &address{addr: v, expr: e} + + case *ast.ParenExpr: + return b.addr(fn, e.X, escaping) + + case *ast.SelectorExpr: + switch sel := fn.Pkg.info.Selections[e]; sel.Kind() { + case types.PackageObj: + obj := sel.Obj() + if v := fn.Prog.packageLevelValue(obj); v != nil { + return &address{addr: v, expr: e} + } + panic("undefined package-qualified name: " + obj.Name()) + + case types.FieldVal: + wantAddr := true + v := b.receiver(fn, e.X, wantAddr, escaping, sel) + last := len(sel.Index()) - 1 + return &address{ + addr: emitFieldSelection(fn, v, sel.Index()[last], true, e.Sel.Pos()), + expr: e.Sel, + } + } + + case *ast.IndexExpr: + var x Value + var et types.Type + switch t := fn.Pkg.typeOf(e.X).Underlying().(type) { + case *types.Array: + x = b.addr(fn, e.X, escaping).address(fn) + et = types.NewPointer(t.Elem()) + case *types.Pointer: // *array + x = b.expr(fn, e.X) + et = types.NewPointer(t.Elem().Underlying().(*types.Array).Elem()) + case *types.Slice: + x = b.expr(fn, e.X) + et = types.NewPointer(t.Elem()) + case *types.Map: + return &element{ + m: b.expr(fn, e.X), + k: emitConv(fn, b.expr(fn, e.Index), t.Key()), + t: t.Elem(), + pos: e.Lbrack, + } + default: + panic("unexpected container type in IndexExpr: " + t.String()) + } + v := &IndexAddr{ + X: x, + Index: emitConv(fn, b.expr(fn, e.Index), tInt), + } + v.setPos(e.Lbrack) + v.setType(et) + return &address{addr: fn.emit(v), expr: e} + + case *ast.StarExpr: + return &address{addr: b.expr(fn, e.X), starPos: e.Star, expr: e} + } + + panic(fmt.Sprintf("unexpected address expression: %T", e)) +} + +// exprInPlace emits to fn code to initialize the lvalue loc with the +// value of expression e. +// +// This is equivalent to loc.store(fn, b.expr(fn, e)) but may +// generate better code in some cases, e.g. for composite literals +// in an addressable location. +// +func (b *builder) exprInPlace(fn *Function, loc lvalue, e ast.Expr) { + if e, ok := unparen(e).(*ast.CompositeLit); ok { + // A CompositeLit never evaluates to a pointer, + // so if the type of the location is a pointer, + // an &-operation is implied. + if _, ok := loc.(blank); !ok { // avoid calling blank.typ() + if isPointer(loc.typ()) { + ptr := b.addr(fn, e, true).address(fn) + loc.store(fn, ptr) // copy address + return + } + } + + if _, ok := loc.(*address); ok { + if _, ok := loc.typ().Underlying().(*types.Interface); ok { + // e.g. var x interface{} = T{...} + // Can't in-place initialize an interface value. + // Fall back to copying. + } else { + addr := loc.address(fn) + b.compLit(fn, addr, e) // in place + emitDebugRef(fn, e, addr, true) + return + } + } + } + loc.store(fn, b.expr(fn, e)) // copy value +} + +// expr lowers a single-result expression e to SSA form, emitting code +// to fn and returning the Value defined by the expression. +// +func (b *builder) expr(fn *Function, e ast.Expr) Value { + // Is expression a constant? + if v := fn.Pkg.info.ValueOf(e); v != nil { + return NewConst(v, fn.Pkg.typeOf(e)) + } + e = unparen(e) + v := b.expr0(fn, e) + if fn.debugInfo() { + emitDebugRef(fn, e, v, false) + } + return v +} + +func (b *builder) expr0(fn *Function, e ast.Expr) Value { + switch e := e.(type) { + case *ast.BasicLit: + panic("non-constant BasicLit") // unreachable + + case *ast.FuncLit: + fn2 := &Function{ + name: fmt.Sprintf("%s$%d", fn.Name(), 1+len(fn.AnonFuncs)), + Signature: fn.Pkg.typeOf(e.Type).Underlying().(*types.Signature), + pos: e.Type.Func, + Enclosing: fn, + Pkg: fn.Pkg, + Prog: fn.Prog, + syntax: e, + } + fn.AnonFuncs = append(fn.AnonFuncs, fn2) + b.buildFunction(fn2) + if fn2.FreeVars == nil { + return fn2 + } + v := &MakeClosure{Fn: fn2} + v.setType(fn.Pkg.typeOf(e)) + for _, fv := range fn2.FreeVars { + v.Bindings = append(v.Bindings, fv.outer) + fv.outer = nil + } + return fn.emit(v) + + case *ast.TypeAssertExpr: // single-result form only + return emitTypeAssert(fn, b.expr(fn, e.X), fn.Pkg.typeOf(e), e.Lparen) + + case *ast.CallExpr: + typ := fn.Pkg.typeOf(e) + if fn.Pkg.info.IsType(e.Fun) { + // Explicit type conversion, e.g. string(x) or big.Int(x) + x := b.expr(fn, e.Args[0]) + y := emitConv(fn, x, typ) + if y != x { + switch y := y.(type) { + case *Convert: + y.pos = e.Lparen + case *ChangeType: + y.pos = e.Lparen + case *MakeInterface: + y.pos = e.Lparen + } + } + return y + } + // Call to "intrinsic" built-ins, e.g. new, make, panic. + if id, ok := unparen(e.Fun).(*ast.Ident); ok { + if obj, ok := fn.Pkg.objectOf(id).(*types.Builtin); ok { + if v := b.builtin(fn, obj, e.Args, typ, e.Lparen); v != nil { + return v + } + } + } + // Regular function call. + var v Call + b.setCall(fn, e, &v.Call) + v.setType(typ) + return fn.emit(&v) + + case *ast.UnaryExpr: + switch e.Op { + case token.AND: // &X --- potentially escaping. + addr := b.addr(fn, e.X, true) + if _, ok := unparen(e.X).(*ast.StarExpr); ok { + // &*p must panic if p is nil (http://golang.org/s/go12nil). + // For simplicity, we'll just (suboptimally) rely + // on the side effects of a load. + addr.load(fn) + } + return addr.address(fn) + case token.ADD: + return b.expr(fn, e.X) + case token.NOT, token.ARROW, token.SUB, token.XOR: // ! <- - ^ + v := &UnOp{ + Op: e.Op, + X: b.expr(fn, e.X), + } + v.setPos(e.OpPos) + v.setType(fn.Pkg.typeOf(e)) + return fn.emit(v) + default: + panic(e.Op) + } + + case *ast.BinaryExpr: + switch e.Op { + case token.LAND, token.LOR: + return b.logicalBinop(fn, e) + case token.SHL, token.SHR: + fallthrough + case token.ADD, token.SUB, token.MUL, token.QUO, token.REM, token.AND, token.OR, token.XOR, token.AND_NOT: + return emitArith(fn, e.Op, b.expr(fn, e.X), b.expr(fn, e.Y), fn.Pkg.typeOf(e), e.OpPos) + + case token.EQL, token.NEQ, token.GTR, token.LSS, token.LEQ, token.GEQ: + cmp := emitCompare(fn, e.Op, b.expr(fn, e.X), b.expr(fn, e.Y), e.OpPos) + // The type of x==y may be UntypedBool. + return emitConv(fn, cmp, DefaultType(fn.Pkg.typeOf(e))) + default: + panic("illegal op in BinaryExpr: " + e.Op.String()) + } + + case *ast.SliceExpr: + var low, high, max Value + var x Value + switch fn.Pkg.typeOf(e.X).Underlying().(type) { + case *types.Array: + // Potentially escaping. + x = b.addr(fn, e.X, true).address(fn) + case *types.Basic, *types.Slice, *types.Pointer: // *array + x = b.expr(fn, e.X) + default: + unreachable() + } + if e.High != nil { + high = b.expr(fn, e.High) + } + if e.Low != nil { + low = b.expr(fn, e.Low) + } + if e.Slice3 { + max = b.expr(fn, e.Max) + } + v := &Slice{ + X: x, + Low: low, + High: high, + Max: max, + } + v.setPos(e.Lbrack) + v.setType(fn.Pkg.typeOf(e)) + return fn.emit(v) + + case *ast.Ident: + obj := fn.Pkg.objectOf(e) + // Universal built-in or nil? + switch obj := obj.(type) { + case *types.Builtin: + return &Builtin{object: obj, sig: fn.Pkg.typeOf(e).(*types.Signature)} + case *types.Nil: + return nilConst(fn.Pkg.typeOf(e)) + } + // Package-level func or var? + if v := fn.Prog.packageLevelValue(obj); v != nil { + if _, ok := obj.(*types.Var); ok { + return emitLoad(fn, v) // var (address) + } + return v // (func) + } + // Local var. + return emitLoad(fn, fn.lookup(obj, false)) // var (address) + + case *ast.SelectorExpr: + switch sel := fn.Pkg.info.Selections[e]; sel.Kind() { + case types.PackageObj: + return b.expr(fn, e.Sel) + + case types.MethodExpr: + // (*T).f or T.f, the method f from the method-set of type T. + // For declared methods, a simple conversion will suffice. + return emitConv(fn, fn.Prog.Method(sel), fn.Pkg.typeOf(e)) + + case types.MethodVal: + // e.f where e is an expression and f is a method. + // The result is a bound method closure. + obj := sel.Obj().(*types.Func) + rt := recvType(obj) + wantAddr := isPointer(rt) + escaping := true + v := b.receiver(fn, e.X, wantAddr, escaping, sel) + if _, ok := rt.Underlying().(*types.Interface); ok { + // If v has interface type I, + // we must emit a check that v is non-nil. + // We use: typeassert v.(I). + emitTypeAssert(fn, v, rt, token.NoPos) + } + c := &MakeClosure{ + Fn: boundMethodWrapper(fn.Prog, obj), + Bindings: []Value{v}, + } + c.setPos(e.Sel.Pos()) + c.setType(fn.Pkg.typeOf(e)) + return fn.emit(c) + + case types.FieldVal: + indices := sel.Index() + last := len(indices) - 1 + v := b.expr(fn, e.X) + v = emitImplicitSelections(fn, v, indices[:last]) + v = emitFieldSelection(fn, v, indices[last], false, e.Sel.Pos()) + emitDebugRef(fn, e.Sel, v, false) + return v + } + + panic("unexpected expression-relative selector") + + case *ast.IndexExpr: + switch t := fn.Pkg.typeOf(e.X).Underlying().(type) { + case *types.Array: + // Non-addressable array (in a register). + v := &Index{ + X: b.expr(fn, e.X), + Index: emitConv(fn, b.expr(fn, e.Index), tInt), + } + v.setPos(e.Lbrack) + v.setType(t.Elem()) + return fn.emit(v) + + case *types.Map: + // Maps are not addressable. + mapt := fn.Pkg.typeOf(e.X).Underlying().(*types.Map) + v := &Lookup{ + X: b.expr(fn, e.X), + Index: emitConv(fn, b.expr(fn, e.Index), mapt.Key()), + } + v.setPos(e.Lbrack) + v.setType(mapt.Elem()) + return fn.emit(v) + + case *types.Basic: // => string + // Strings are not addressable. + v := &Lookup{ + X: b.expr(fn, e.X), + Index: b.expr(fn, e.Index), + } + v.setPos(e.Lbrack) + v.setType(tByte) + return fn.emit(v) + + case *types.Slice, *types.Pointer: // *array + // Addressable slice/array; use IndexAddr and Load. + return b.addr(fn, e, false).load(fn) + + default: + panic("unexpected container type in IndexExpr: " + t.String()) + } + + case *ast.CompositeLit, *ast.StarExpr: + // Addressable types (lvalues) + return b.addr(fn, e, false).load(fn) + } + + panic(fmt.Sprintf("unexpected expr: %T", e)) +} + +// stmtList emits to fn code for all statements in list. +func (b *builder) stmtList(fn *Function, list []ast.Stmt) { + for _, s := range list { + b.stmt(fn, s) + } +} + +// receiver emits to fn code for expression e in the "receiver" +// position of selection e.f (where f may be a field or a method) and +// returns the effective receiver after applying the implicit field +// selections of sel. +// +// wantAddr requests that the result is an an address. If +// !sel.Indirect(), this may require that e be build in addr() mode; it +// must thus be addressable. +// +// escaping is defined as per builder.addr(). +// +func (b *builder) receiver(fn *Function, e ast.Expr, wantAddr, escaping bool, sel *types.Selection) Value { + var v Value + if wantAddr && !sel.Indirect() && !isPointer(fn.Pkg.typeOf(e)) { + v = b.addr(fn, e, escaping).address(fn) + } else { + v = b.expr(fn, e) + } + + last := len(sel.Index()) - 1 + v = emitImplicitSelections(fn, v, sel.Index()[:last]) + if !wantAddr && isPointer(v.Type()) { + v = emitLoad(fn, v) + } + return v +} + +// setCallFunc populates the function parts of a CallCommon structure +// (Func, Method, Recv, Args[0]) based on the kind of invocation +// occurring in e. +// +func (b *builder) setCallFunc(fn *Function, e *ast.CallExpr, c *CallCommon) { + c.pos = e.Lparen + + // Is this a method call? + if selector, ok := unparen(e.Fun).(*ast.SelectorExpr); ok { + switch sel := fn.Pkg.info.Selections[selector]; sel.Kind() { + case types.PackageObj: + // e.g. fmt.Println + + case types.MethodExpr: + // T.f() or (*T).f(): a statically dispatched + // call to the method f in the method-set of T + // or *T. T may be an interface. + + // e.Fun would evaluate to a concrete method, + // interface wrapper function, or promotion + // wrapper. + // + // For now, we evaluate it in the usual way. + + // TODO(adonovan): opt: inline expr() here, to + // make the call static and to avoid + // generation of wrappers. It's somewhat + // tricky as it may consume the first actual + // parameter if the call is "invoke" mode. + // + // Examples: + // type T struct{}; func (T) f() {} // "call" mode + // type T interface { f() } // "invoke" mode + // + // type S struct{ T } + // + // var s S + // S.f(s) + // (*S).f(&s) + // + // Suggested approach: + // - consume the first actual parameter expression + // and build it with b.expr(). + // - apply implicit field selections. + // - use MethodVal logic to populate fields of c. + + case types.FieldVal: + // A field access, not a method call. + + case types.MethodVal: + obj := sel.Obj().(*types.Func) + wantAddr := isPointer(recvType(obj)) + escaping := true + v := b.receiver(fn, selector.X, wantAddr, escaping, sel) + if _, ok := deref(v.Type()).Underlying().(*types.Interface); ok { + // Invoke-mode call. + c.Value = v + c.Method = obj + } else { + // "Call"-mode call. + c.Value = fn.Prog.declaredFunc(obj) + c.Args = append(c.Args, v) + } + return + + default: + panic(fmt.Sprintf("illegal (%s).%s() call; X:%T", + fn.Pkg.typeOf(selector.X), selector.Sel.Name, selector.X)) + } + } + + // Evaluate the function operand in the usual way. + c.Value = b.expr(fn, e.Fun) +} + +// emitCallArgs emits to f code for the actual parameters of call e to +// a (possibly built-in) function of effective type sig. +// The argument values are appended to args, which is then returned. +// +func (b *builder) emitCallArgs(fn *Function, sig *types.Signature, e *ast.CallExpr, args []Value) []Value { + // f(x, y, z...): pass slice z straight through. + if e.Ellipsis != 0 { + for i, arg := range e.Args { + v := emitConv(fn, b.expr(fn, arg), sig.Params().At(i).Type()) + args = append(args, v) + } + return args + } + + offset := len(args) // 1 if call has receiver, 0 otherwise + + // Evaluate actual parameter expressions. + // + // If this is a chained call of the form f(g()) where g has + // multiple return values (MRV), they are flattened out into + // args; a suffix of them may end up in a varargs slice. + for _, arg := range e.Args { + v := b.expr(fn, arg) + if ttuple, ok := v.Type().(*types.Tuple); ok { // MRV chain + for i, n := 0, ttuple.Len(); i < n; i++ { + args = append(args, emitExtract(fn, v, i)) + } + } else { + args = append(args, v) + } + } + + // Actual->formal assignability conversions for normal parameters. + np := sig.Params().Len() // number of normal parameters + if sig.Variadic() { + np-- + } + for i := 0; i < np; i++ { + args[offset+i] = emitConv(fn, args[offset+i], sig.Params().At(i).Type()) + } + + // Actual->formal assignability conversions for variadic parameter, + // and construction of slice. + if sig.Variadic() { + varargs := args[offset+np:] + st := sig.Params().At(np).Type().(*types.Slice) + vt := st.Elem() + if len(varargs) == 0 { + args = append(args, nilConst(st)) + } else { + // Replace a suffix of args with a slice containing it. + at := types.NewArray(vt, int64(len(varargs))) + // Don't set pos for implicit Allocs. + a := emitNew(fn, at, token.NoPos) + a.Comment = "varargs" + for i, arg := range varargs { + iaddr := &IndexAddr{ + X: a, + Index: intConst(int64(i)), + } + iaddr.setType(types.NewPointer(vt)) + fn.emit(iaddr) + emitStore(fn, iaddr, arg) + } + s := &Slice{X: a} + s.setType(st) + args[offset+np] = fn.emit(s) + args = args[:offset+np+1] + } + } + return args +} + +// setCall emits to fn code to evaluate all the parameters of a function +// call e, and populates *c with those values. +// +func (b *builder) setCall(fn *Function, e *ast.CallExpr, c *CallCommon) { + // First deal with the f(...) part and optional receiver. + b.setCallFunc(fn, e, c) + + // Then append the other actual parameters. + sig, _ := fn.Pkg.typeOf(e.Fun).Underlying().(*types.Signature) + if sig == nil { + panic(fmt.Sprintf("no signature for call of %s", e.Fun)) + } + c.Args = b.emitCallArgs(fn, sig, e, c.Args) +} + +// assignOp emits to fn code to perform loc += incr or loc -= incr. +func (b *builder) assignOp(fn *Function, loc lvalue, incr Value, op token.Token) { + oldv := loc.load(fn) + loc.store(fn, emitArith(fn, op, oldv, emitConv(fn, incr, oldv.Type()), loc.typ(), token.NoPos)) +} + +// localValueSpec emits to fn code to define all of the vars in the +// function-local ValueSpec, spec. +// +func (b *builder) localValueSpec(fn *Function, spec *ast.ValueSpec) { + switch { + case len(spec.Values) == len(spec.Names): + // e.g. var x, y = 0, 1 + // 1:1 assignment + for i, id := range spec.Names { + if !isBlankIdent(id) { + fn.addLocalForIdent(id) + } + lval := b.addr(fn, id, false) // non-escaping + b.exprInPlace(fn, lval, spec.Values[i]) + } + + case len(spec.Values) == 0: + // e.g. var x, y int + // Locals are implicitly zero-initialized. + for _, id := range spec.Names { + if !isBlankIdent(id) { + lhs := fn.addLocalForIdent(id) + if fn.debugInfo() { + emitDebugRef(fn, id, lhs, true) + } + } + } + + default: + // e.g. var x, y = pos() + tuple := b.exprN(fn, spec.Values[0]) + for i, id := range spec.Names { + if !isBlankIdent(id) { + fn.addLocalForIdent(id) + lhs := b.addr(fn, id, false) // non-escaping + lhs.store(fn, emitExtract(fn, tuple, i)) + } + } + } +} + +// assignStmt emits code to fn for a parallel assignment of rhss to lhss. +// isDef is true if this is a short variable declaration (:=). +// +// Note the similarity with localValueSpec. +// +func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) { + // Side effects of all LHSs and RHSs must occur in left-to-right order. + var lvals []lvalue + for _, lhs := range lhss { + var lval lvalue = blank{} + if !isBlankIdent(lhs) { + if isDef { + // Local may be "redeclared" in the same + // scope, so don't blindly create anew. + obj := fn.Pkg.objectOf(lhs.(*ast.Ident)) + if _, ok := fn.objects[obj]; !ok { + fn.addNamedLocal(obj) + } + } + lval = b.addr(fn, lhs, false) // non-escaping + } + lvals = append(lvals, lval) + } + if len(lhss) == len(rhss) { + // e.g. x, y = f(), g() + if len(lhss) == 1 { + // x = type{...} + // Optimization: in-place construction + // of composite literals. + b.exprInPlace(fn, lvals[0], rhss[0]) + } else { + // Parallel assignment. All reads must occur + // before all updates, precluding exprInPlace. + // TODO(adonovan): opt: is it sound to + // perform exprInPlace if !isDef? + var rvals []Value + for _, rval := range rhss { + rvals = append(rvals, b.expr(fn, rval)) + } + for i, lval := range lvals { + lval.store(fn, rvals[i]) + } + } + } else { + // e.g. x, y = pos() + tuple := b.exprN(fn, rhss[0]) + for i, lval := range lvals { + lval.store(fn, emitExtract(fn, tuple, i)) + } + } +} + +// arrayLen returns the length of the array whose composite literal elements are elts. +func (b *builder) arrayLen(fn *Function, elts []ast.Expr) int64 { + var max int64 = -1 + var i int64 = -1 + for _, e := range elts { + if kv, ok := e.(*ast.KeyValueExpr); ok { + i = b.expr(fn, kv.Key).(*Const).Int64() + } else { + i++ + } + if i > max { + max = i + } + } + return max + 1 +} + +// compLit emits to fn code to initialize a composite literal e at +// address addr with type typ, typically allocated by Alloc. +// Nested composite literals are recursively initialized in place +// where possible. +// +// A CompositeLit may have pointer type only in the recursive (nested) +// case when the type name is implicit. e.g. in []*T{{}}, the inner +// literal has type *T behaves like &T{}. +// In that case, addr must hold a T, not a *T. +// +func (b *builder) compLit(fn *Function, addr Value, e *ast.CompositeLit) { + typ := deref(fn.Pkg.typeOf(e)) + switch t := typ.Underlying().(type) { + case *types.Struct: + for i, e := range e.Elts { + fieldIndex := i + if kv, ok := e.(*ast.KeyValueExpr); ok { + fname := kv.Key.(*ast.Ident).Name + for i, n := 0, t.NumFields(); i < n; i++ { + sf := t.Field(i) + if sf.Name() == fname { + fieldIndex = i + e = kv.Value + break + } + } + } + sf := t.Field(fieldIndex) + faddr := &FieldAddr{ + X: addr, + Field: fieldIndex, + } + faddr.setType(types.NewPointer(sf.Type())) + fn.emit(faddr) + b.exprInPlace(fn, &address{addr: faddr, expr: e}, e) + } + + case *types.Array, *types.Slice: + var at *types.Array + var array Value + switch t := t.(type) { + case *types.Slice: + at = types.NewArray(t.Elem(), b.arrayLen(fn, e.Elts)) + alloc := emitNew(fn, at, e.Lbrace) + alloc.Comment = "slicelit" + array = alloc + case *types.Array: + at = t + array = addr + } + + var idx *Const + for _, e := range e.Elts { + if kv, ok := e.(*ast.KeyValueExpr); ok { + idx = b.expr(fn, kv.Key).(*Const) + e = kv.Value + } else { + var idxval int64 + if idx != nil { + idxval = idx.Int64() + 1 + } + idx = intConst(idxval) + } + iaddr := &IndexAddr{ + X: array, + Index: idx, + } + iaddr.setType(types.NewPointer(at.Elem())) + fn.emit(iaddr) + b.exprInPlace(fn, &address{addr: iaddr, expr: e}, e) + } + if t != at { // slice + s := &Slice{X: array} + s.setPos(e.Lbrace) + s.setType(typ) + emitStore(fn, addr, fn.emit(s)) + } + + case *types.Map: + m := &MakeMap{Reserve: intConst(int64(len(e.Elts)))} + m.setPos(e.Lbrace) + m.setType(typ) + emitStore(fn, addr, fn.emit(m)) + for _, e := range e.Elts { + e := e.(*ast.KeyValueExpr) + loc := &element{ + m: m, + k: emitConv(fn, b.expr(fn, e.Key), t.Key()), + t: t.Elem(), + pos: e.Colon, + } + b.exprInPlace(fn, loc, e.Value) + } + + default: + panic("unexpected CompositeLit type: " + t.String()) + } +} + +// switchStmt emits to fn code for the switch statement s, optionally +// labelled by label. +// +func (b *builder) switchStmt(fn *Function, s *ast.SwitchStmt, label *lblock) { + // We treat SwitchStmt like a sequential if-else chain. + // Multiway dispatch can be recovered later by ssautil.Switches() + // to those cases that are free of side effects. + if s.Init != nil { + b.stmt(fn, s.Init) + } + var tag Value = vTrue + if s.Tag != nil { + tag = b.expr(fn, s.Tag) + } + done := fn.newBasicBlock("switch.done") + if label != nil { + label._break = done + } + // We pull the default case (if present) down to the end. + // But each fallthrough label must point to the next + // body block in source order, so we preallocate a + // body block (fallthru) for the next case. + // Unfortunately this makes for a confusing block order. + var dfltBody *[]ast.Stmt + var dfltFallthrough *BasicBlock + var fallthru, dfltBlock *BasicBlock + ncases := len(s.Body.List) + for i, clause := range s.Body.List { + body := fallthru + if body == nil { + body = fn.newBasicBlock("switch.body") // first case only + } + + // Preallocate body block for the next case. + fallthru = done + if i+1 < ncases { + fallthru = fn.newBasicBlock("switch.body") + } + + cc := clause.(*ast.CaseClause) + if cc.List == nil { + // Default case. + dfltBody = &cc.Body + dfltFallthrough = fallthru + dfltBlock = body + continue + } + + var nextCond *BasicBlock + for _, cond := range cc.List { + nextCond = fn.newBasicBlock("switch.next") + // TODO(adonovan): opt: when tag==vTrue, we'd + // get better code if we use b.cond(cond) + // instead of BinOp(EQL, tag, b.expr(cond)) + // followed by If. Don't forget conversions + // though. + cond := emitCompare(fn, token.EQL, tag, b.expr(fn, cond), token.NoPos) + emitIf(fn, cond, body, nextCond) + fn.currentBlock = nextCond + } + fn.currentBlock = body + fn.targets = &targets{ + tail: fn.targets, + _break: done, + _fallthrough: fallthru, + } + b.stmtList(fn, cc.Body) + fn.targets = fn.targets.tail + emitJump(fn, done) + fn.currentBlock = nextCond + } + if dfltBlock != nil { + emitJump(fn, dfltBlock) + fn.currentBlock = dfltBlock + fn.targets = &targets{ + tail: fn.targets, + _break: done, + _fallthrough: dfltFallthrough, + } + b.stmtList(fn, *dfltBody) + fn.targets = fn.targets.tail + } + emitJump(fn, done) + fn.currentBlock = done +} + +// typeSwitchStmt emits to fn code for the type switch statement s, optionally +// labelled by label. +// +func (b *builder) typeSwitchStmt(fn *Function, s *ast.TypeSwitchStmt, label *lblock) { + // We treat TypeSwitchStmt like a sequential if-else chain. + // Multiway dispatch can be recovered later by ssautil.Switches(). + + // Typeswitch lowering: + // + // var x X + // switch y := x.(type) { + // case T1, T2: S1 // >1 (y := x) + // case nil: SN // nil (y := x) + // default: SD // 0 types (y := x) + // case T3: S3 // 1 type (y := x.(T3)) + // } + // + // ...s.Init... + // x := eval x + // .caseT1: + // t1, ok1 := typeswitch,ok x + // if ok1 then goto S1 else goto .caseT2 + // .caseT2: + // t2, ok2 := typeswitch,ok x + // if ok2 then goto S1 else goto .caseNil + // .S1: + // y := x + // ...S1... + // goto done + // .caseNil: + // if t2, ok2 := typeswitch,ok x + // if x == nil then goto SN else goto .caseT3 + // .SN: + // y := x + // ...SN... + // goto done + // .caseT3: + // t3, ok3 := typeswitch,ok x + // if ok3 then goto S3 else goto default + // .S3: + // y := t3 + // ...S3... + // goto done + // .default: + // y := x + // ...SD... + // goto done + // .done: + + if s.Init != nil { + b.stmt(fn, s.Init) + } + + var x Value + switch ass := s.Assign.(type) { + case *ast.ExprStmt: // x.(type) + x = b.expr(fn, unparen(ass.X).(*ast.TypeAssertExpr).X) + case *ast.AssignStmt: // y := x.(type) + x = b.expr(fn, unparen(ass.Rhs[0]).(*ast.TypeAssertExpr).X) + } + + done := fn.newBasicBlock("typeswitch.done") + if label != nil { + label._break = done + } + var default_ *ast.CaseClause + for _, clause := range s.Body.List { + cc := clause.(*ast.CaseClause) + if cc.List == nil { + default_ = cc + continue + } + body := fn.newBasicBlock("typeswitch.body") + var next *BasicBlock + var casetype types.Type + var ti Value // ti, ok := typeassert,ok x + for _, cond := range cc.List { + next = fn.newBasicBlock("typeswitch.next") + casetype = fn.Pkg.typeOf(cond) + var condv Value + if casetype == tUntypedNil { + condv = emitCompare(fn, token.EQL, x, nilConst(x.Type()), token.NoPos) + ti = x + } else { + yok := emitTypeTest(fn, x, casetype, cc.Case) + ti = emitExtract(fn, yok, 0) + condv = emitExtract(fn, yok, 1) + } + emitIf(fn, condv, body, next) + fn.currentBlock = next + } + if len(cc.List) != 1 { + ti = x + } + fn.currentBlock = body + b.typeCaseBody(fn, cc, ti, done) + fn.currentBlock = next + } + if default_ != nil { + b.typeCaseBody(fn, default_, x, done) + } else { + emitJump(fn, done) + } + fn.currentBlock = done +} + +func (b *builder) typeCaseBody(fn *Function, cc *ast.CaseClause, x Value, done *BasicBlock) { + if obj := fn.Pkg.info.TypeCaseVar(cc); obj != nil { + // In a switch y := x.(type), each case clause + // implicitly declares a distinct object y. + // In a single-type case, y has that type. + // In multi-type cases, 'case nil' and default, + // y has the same type as the interface operand. + emitStore(fn, fn.addNamedLocal(obj), x) + } + fn.targets = &targets{ + tail: fn.targets, + _break: done, + } + b.stmtList(fn, cc.Body) + fn.targets = fn.targets.tail + emitJump(fn, done) +} + +// selectStmt emits to fn code for the select statement s, optionally +// labelled by label. +// +func (b *builder) selectStmt(fn *Function, s *ast.SelectStmt, label *lblock) { + // A blocking select of a single case degenerates to a + // simple send or receive. + // TODO(adonovan): opt: is this optimization worth its weight? + if len(s.Body.List) == 1 { + clause := s.Body.List[0].(*ast.CommClause) + if clause.Comm != nil { + b.stmt(fn, clause.Comm) + done := fn.newBasicBlock("select.done") + if label != nil { + label._break = done + } + fn.targets = &targets{ + tail: fn.targets, + _break: done, + } + b.stmtList(fn, clause.Body) + fn.targets = fn.targets.tail + emitJump(fn, done) + fn.currentBlock = done + return + } + } + + // First evaluate all channels in all cases, and find + // the directions of each state. + var states []*SelectState + blocking := true + debugInfo := fn.debugInfo() + for _, clause := range s.Body.List { + var st *SelectState + switch comm := clause.(*ast.CommClause).Comm.(type) { + case nil: // default case + blocking = false + continue + + case *ast.SendStmt: // ch<- i + ch := b.expr(fn, comm.Chan) + st = &SelectState{ + Dir: types.SendOnly, + Chan: ch, + Send: emitConv(fn, b.expr(fn, comm.Value), + ch.Type().Underlying().(*types.Chan).Elem()), + Pos: comm.Arrow, + } + if debugInfo { + st.DebugNode = comm + } + + case *ast.AssignStmt: // x := <-ch + recv := unparen(comm.Rhs[0]).(*ast.UnaryExpr) + st = &SelectState{ + Dir: types.RecvOnly, + Chan: b.expr(fn, recv.X), + Pos: recv.OpPos, + } + if debugInfo { + st.DebugNode = recv + } + + case *ast.ExprStmt: // <-ch + recv := unparen(comm.X).(*ast.UnaryExpr) + st = &SelectState{ + Dir: types.RecvOnly, + Chan: b.expr(fn, recv.X), + Pos: recv.OpPos, + } + if debugInfo { + st.DebugNode = recv + } + } + states = append(states, st) + } + + // We dispatch on the (fair) result of Select using a + // sequential if-else chain, in effect: + // + // idx, recvOk, r0...r_n-1 := select(...) + // if idx == 0 { // receive on channel 0 (first receive => r0) + // x, ok := r0, recvOk + // ...state0... + // } else if v == 1 { // send on channel 1 + // ...state1... + // } else { + // ...default... + // } + sel := &Select{ + States: states, + Blocking: blocking, + } + sel.setPos(s.Select) + var vars []*types.Var + vars = append(vars, varIndex, varOk) + for _, st := range states { + if st.Dir == types.RecvOnly { + tElem := st.Chan.Type().Underlying().(*types.Chan).Elem() + vars = append(vars, newVar("", tElem)) + } + } + sel.setType(types.NewTuple(vars...)) + + fn.emit(sel) + idx := emitExtract(fn, sel, 0) + + done := fn.newBasicBlock("select.done") + if label != nil { + label._break = done + } + + var defaultBody *[]ast.Stmt + state := 0 + r := 2 // index in 'sel' tuple of value; increments if st.Dir==RECV + for _, cc := range s.Body.List { + clause := cc.(*ast.CommClause) + if clause.Comm == nil { + defaultBody = &clause.Body + continue + } + body := fn.newBasicBlock("select.body") + next := fn.newBasicBlock("select.next") + emitIf(fn, emitCompare(fn, token.EQL, idx, intConst(int64(state)), token.NoPos), body, next) + fn.currentBlock = body + fn.targets = &targets{ + tail: fn.targets, + _break: done, + } + switch comm := clause.Comm.(type) { + case *ast.ExprStmt: // <-ch + if debugInfo { + v := emitExtract(fn, sel, r) + emitDebugRef(fn, states[state].DebugNode.(ast.Expr), v, false) + } + r++ + + case *ast.AssignStmt: // x := <-states[state].Chan + if comm.Tok == token.DEFINE { + fn.addLocalForIdent(comm.Lhs[0].(*ast.Ident)) + } + x := b.addr(fn, comm.Lhs[0], false) // non-escaping + v := emitExtract(fn, sel, r) + if debugInfo { + emitDebugRef(fn, states[state].DebugNode.(ast.Expr), v, false) + } + x.store(fn, v) + + if len(comm.Lhs) == 2 { // x, ok := ... + if comm.Tok == token.DEFINE { + fn.addLocalForIdent(comm.Lhs[1].(*ast.Ident)) + } + ok := b.addr(fn, comm.Lhs[1], false) // non-escaping + ok.store(fn, emitExtract(fn, sel, 1)) + } + r++ + } + b.stmtList(fn, clause.Body) + fn.targets = fn.targets.tail + emitJump(fn, done) + fn.currentBlock = next + state++ + } + if defaultBody != nil { + fn.targets = &targets{ + tail: fn.targets, + _break: done, + } + b.stmtList(fn, *defaultBody) + fn.targets = fn.targets.tail + } else { + // A blocking select must match some case. + // (This should really be a runtime.errorString, not a string.) + fn.emit(&Panic{ + X: emitConv(fn, NewConst(exact.MakeString("blocking select matched no case"), types.Typ[types.String]), tEface), + }) + fn.currentBlock = fn.newBasicBlock("unreachable") + } + emitJump(fn, done) + fn.currentBlock = done +} + +// forStmt emits to fn code for the for statement s, optionally +// labelled by label. +// +func (b *builder) forStmt(fn *Function, s *ast.ForStmt, label *lblock) { + // ...init... + // jump loop + // loop: + // if cond goto body else done + // body: + // ...body... + // jump post + // post: (target of continue) + // ...post... + // jump loop + // done: (target of break) + if s.Init != nil { + b.stmt(fn, s.Init) + } + body := fn.newBasicBlock("for.body") + done := fn.newBasicBlock("for.done") // target of 'break' + loop := body // target of back-edge + if s.Cond != nil { + loop = fn.newBasicBlock("for.loop") + } + cont := loop // target of 'continue' + if s.Post != nil { + cont = fn.newBasicBlock("for.post") + } + if label != nil { + label._break = done + label._continue = cont + } + emitJump(fn, loop) + fn.currentBlock = loop + if loop != body { + b.cond(fn, s.Cond, body, done) + fn.currentBlock = body + } + fn.targets = &targets{ + tail: fn.targets, + _break: done, + _continue: cont, + } + b.stmt(fn, s.Body) + fn.targets = fn.targets.tail + emitJump(fn, cont) + + if s.Post != nil { + fn.currentBlock = cont + b.stmt(fn, s.Post) + emitJump(fn, loop) // back-edge + } + fn.currentBlock = done +} + +// rangeIndexed emits to fn the header for an integer indexed loop +// over array, *array or slice value x. +// The v result is defined only if tv is non-nil. +// +func (b *builder) rangeIndexed(fn *Function, x Value, tv types.Type) (k, v Value, loop, done *BasicBlock) { + // + // length = len(x) + // index = -1 + // loop: (target of continue) + // index++ + // if index < length goto body else done + // body: + // k = index + // v = x[index] + // ...body... + // jump loop + // done: (target of break) + + // Determine number of iterations. + var length Value + if arr, ok := deref(x.Type()).Underlying().(*types.Array); ok { + // For array or *array, the number of iterations is + // known statically thanks to the type. We avoid a + // data dependence upon x, permitting later dead-code + // elimination if x is pure, static unrolling, etc. + // Ranging over a nil *array may have >0 iterations. + length = intConst(arr.Len()) + } else { + // length = len(x). + var c Call + c.Call.Value = makeLen(x.Type()) + c.Call.Args = []Value{x} + c.setType(tInt) + length = fn.emit(&c) + } + + index := fn.addLocal(tInt, token.NoPos) + emitStore(fn, index, intConst(-1)) + + loop = fn.newBasicBlock("rangeindex.loop") + emitJump(fn, loop) + fn.currentBlock = loop + + incr := &BinOp{ + Op: token.ADD, + X: emitLoad(fn, index), + Y: vOne, + } + incr.setType(tInt) + emitStore(fn, index, fn.emit(incr)) + + body := fn.newBasicBlock("rangeindex.body") + done = fn.newBasicBlock("rangeindex.done") + emitIf(fn, emitCompare(fn, token.LSS, incr, length, token.NoPos), body, done) + fn.currentBlock = body + + k = emitLoad(fn, index) + if tv != nil { + switch t := x.Type().Underlying().(type) { + case *types.Array: + instr := &Index{ + X: x, + Index: k, + } + instr.setType(t.Elem()) + v = fn.emit(instr) + + case *types.Pointer: // *array + instr := &IndexAddr{ + X: x, + Index: k, + } + instr.setType(types.NewPointer(t.Elem().(*types.Array).Elem())) + v = emitLoad(fn, fn.emit(instr)) + + case *types.Slice: + instr := &IndexAddr{ + X: x, + Index: k, + } + instr.setType(types.NewPointer(t.Elem())) + v = emitLoad(fn, fn.emit(instr)) + + default: + panic("rangeIndexed x:" + t.String()) + } + } + return +} + +// rangeIter emits to fn the header for a loop using +// Range/Next/Extract to iterate over map or string value x. +// tk and tv are the types of the key/value results k and v, or nil +// if the respective component is not wanted. +// +func (b *builder) rangeIter(fn *Function, x Value, tk, tv types.Type, pos token.Pos) (k, v Value, loop, done *BasicBlock) { + // + // it = range x + // loop: (target of continue) + // okv = next it (ok, key, value) + // ok = extract okv #0 + // if ok goto body else done + // body: + // k = extract okv #1 + // v = extract okv #2 + // ...body... + // jump loop + // done: (target of break) + // + + if tk == nil { + tk = tInvalid + } + if tv == nil { + tv = tInvalid + } + + rng := &Range{X: x} + rng.setPos(pos) + rng.setType(tRangeIter) + it := fn.emit(rng) + + loop = fn.newBasicBlock("rangeiter.loop") + emitJump(fn, loop) + fn.currentBlock = loop + + _, isString := x.Type().Underlying().(*types.Basic) + + okv := &Next{ + Iter: it, + IsString: isString, + } + okv.setType(types.NewTuple( + varOk, + newVar("k", tk), + newVar("v", tv), + )) + fn.emit(okv) + + body := fn.newBasicBlock("rangeiter.body") + done = fn.newBasicBlock("rangeiter.done") + emitIf(fn, emitExtract(fn, okv, 0), body, done) + fn.currentBlock = body + + if tk != tInvalid { + k = emitExtract(fn, okv, 1) + } + if tv != tInvalid { + v = emitExtract(fn, okv, 2) + } + return +} + +// rangeChan emits to fn the header for a loop that receives from +// channel x until it fails. +// tk is the channel's element type, or nil if the k result is +// not wanted +// pos is the position of the '=' or ':=' token. +// +func (b *builder) rangeChan(fn *Function, x Value, tk types.Type, pos token.Pos) (k Value, loop, done *BasicBlock) { + // + // loop: (target of continue) + // ko = <-x (key, ok) + // ok = extract ko #1 + // if ok goto body else done + // body: + // k = extract ko #0 + // ... + // goto loop + // done: (target of break) + + loop = fn.newBasicBlock("rangechan.loop") + emitJump(fn, loop) + fn.currentBlock = loop + recv := &UnOp{ + Op: token.ARROW, + X: x, + CommaOk: true, + } + recv.setPos(pos) + recv.setType(types.NewTuple( + newVar("k", x.Type().Underlying().(*types.Chan).Elem()), + varOk, + )) + ko := fn.emit(recv) + body := fn.newBasicBlock("rangechan.body") + done = fn.newBasicBlock("rangechan.done") + emitIf(fn, emitExtract(fn, ko, 1), body, done) + fn.currentBlock = body + if tk != nil { + k = emitExtract(fn, ko, 0) + } + return +} + +// rangeStmt emits to fn code for the range statement s, optionally +// labelled by label. +// +func (b *builder) rangeStmt(fn *Function, s *ast.RangeStmt, label *lblock) { + var tk, tv types.Type + if !isBlankIdent(s.Key) { + tk = fn.Pkg.typeOf(s.Key) + } + if s.Value != nil && !isBlankIdent(s.Value) { + tv = fn.Pkg.typeOf(s.Value) + } + + // If iteration variables are defined (:=), this + // occurs once outside the loop. + // + // Unlike a short variable declaration, a RangeStmt + // using := never redeclares an existing variable; it + // always creates a new one. + if s.Tok == token.DEFINE { + if tk != nil { + fn.addLocalForIdent(s.Key.(*ast.Ident)) + } + if tv != nil { + fn.addLocalForIdent(s.Value.(*ast.Ident)) + } + } + + x := b.expr(fn, s.X) + + var k, v Value + var loop, done *BasicBlock + switch rt := x.Type().Underlying().(type) { + case *types.Slice, *types.Array, *types.Pointer: // *array + k, v, loop, done = b.rangeIndexed(fn, x, tv) + + case *types.Chan: + k, loop, done = b.rangeChan(fn, x, tk, s.TokPos) + + case *types.Map, *types.Basic: // string + k, v, loop, done = b.rangeIter(fn, x, tk, tv, s.For) + + default: + panic("Cannot range over: " + rt.String()) + } + + // Evaluate both LHS expressions before we update either. + var kl, vl lvalue + if tk != nil { + kl = b.addr(fn, s.Key, false) // non-escaping + } + if tv != nil { + vl = b.addr(fn, s.Value, false) // non-escaping + } + if tk != nil { + kl.store(fn, k) + } + if tv != nil { + vl.store(fn, v) + } + + if label != nil { + label._break = done + label._continue = loop + } + + fn.targets = &targets{ + tail: fn.targets, + _break: done, + _continue: loop, + } + b.stmt(fn, s.Body) + fn.targets = fn.targets.tail + emitJump(fn, loop) // back-edge + fn.currentBlock = done +} + +// stmt lowers statement s to SSA form, emitting code to fn. +func (b *builder) stmt(fn *Function, _s ast.Stmt) { + // The label of the current statement. If non-nil, its _goto + // target is always set; its _break and _continue are set only + // within the body of switch/typeswitch/select/for/range. + // It is effectively an additional default-nil parameter of stmt(). + var label *lblock +start: + switch s := _s.(type) { + case *ast.EmptyStmt: + // ignore. (Usually removed by gofmt.) + + case *ast.DeclStmt: // Con, Var or Typ + d := s.Decl.(*ast.GenDecl) + if d.Tok == token.VAR { + for _, spec := range d.Specs { + if vs, ok := spec.(*ast.ValueSpec); ok { + b.localValueSpec(fn, vs) + } + } + } + + case *ast.LabeledStmt: + label = fn.labelledBlock(s.Label) + emitJump(fn, label._goto) + fn.currentBlock = label._goto + _s = s.Stmt + goto start // effectively: tailcall stmt(fn, s.Stmt, label) + + case *ast.ExprStmt: + b.expr(fn, s.X) + + case *ast.SendStmt: + fn.emit(&Send{ + Chan: b.expr(fn, s.Chan), + X: emitConv(fn, b.expr(fn, s.Value), + fn.Pkg.typeOf(s.Chan).Underlying().(*types.Chan).Elem()), + pos: s.Arrow, + }) + + case *ast.IncDecStmt: + op := token.ADD + if s.Tok == token.DEC { + op = token.SUB + } + loc := b.addr(fn, s.X, false) + b.assignOp(fn, loc, NewConst(exact.MakeInt64(1), loc.typ()), op) + + case *ast.AssignStmt: + switch s.Tok { + case token.ASSIGN, token.DEFINE: + b.assignStmt(fn, s.Lhs, s.Rhs, s.Tok == token.DEFINE) + + default: // +=, etc. + op := s.Tok + token.ADD - token.ADD_ASSIGN + b.assignOp(fn, b.addr(fn, s.Lhs[0], false), b.expr(fn, s.Rhs[0]), op) + } + + case *ast.GoStmt: + // The "intrinsics" new/make/len/cap are forbidden here. + // panic is treated like an ordinary function call. + v := Go{pos: s.Go} + b.setCall(fn, s.Call, &v.Call) + fn.emit(&v) + + case *ast.DeferStmt: + // The "intrinsics" new/make/len/cap are forbidden here. + // panic is treated like an ordinary function call. + v := Defer{pos: s.Defer} + b.setCall(fn, s.Call, &v.Call) + fn.emit(&v) + + // A deferred call can cause recovery from panic. + // If the panicking function has named results, + // control resumes at the Recover block to load those + // locals (which may be mutated by the deferred call) + // and return them. + if fn.namedResults != nil { + // Optimization: if we can prove the deferred call + // won't cause recovery from panic, we can avoid a + // Recover block. + // We scan the callee for calls to recover() iff: + // - it's a static call + // - to a function in the same package + // (other packages' SSA building happens concurrently) + // - whose SSA building has started (Blocks != nil) + // - and finished (i.e. not this function) + // NB, this is always true for: defer func() { ... } () + // + // TODO(adonovan): optimize interpackage cases, e.g. + // (sync.Mutex).Unlock(), (io.Closer).Close + if callee, ok := v.Call.Value.(*Function); ok && callee.Pkg == fn.Pkg && callee != fn && callee.Blocks != nil && !callsRecover(callee) { + // Deferred call cannot cause recovery from panic. + } else { + createRecoverBlock(fn) + } + } + + case *ast.ReturnStmt: + var results []Value + if len(s.Results) == 1 && fn.Signature.Results().Len() > 1 { + // Return of one expression in a multi-valued function. + tuple := b.exprN(fn, s.Results[0]) + ttuple := tuple.Type().(*types.Tuple) + for i, n := 0, ttuple.Len(); i < n; i++ { + results = append(results, + emitConv(fn, emitExtract(fn, tuple, i), + fn.Signature.Results().At(i).Type())) + } + } else { + // 1:1 return, or no-arg return in non-void function. + for i, r := range s.Results { + v := emitConv(fn, b.expr(fn, r), fn.Signature.Results().At(i).Type()) + results = append(results, v) + } + } + if fn.namedResults != nil { + // Function has named result parameters (NRPs). + // Perform parallel assignment of return operands to NRPs. + for i, r := range results { + emitStore(fn, fn.namedResults[i], r) + } + } + // Run function calls deferred in this + // function when explicitly returning from it. + fn.emit(new(RunDefers)) + if fn.namedResults != nil { + // Reload NRPs to form the result tuple. + results = results[:0] + for _, r := range fn.namedResults { + results = append(results, emitLoad(fn, r)) + } + } + fn.emit(&Return{Results: results, pos: s.Return}) + fn.currentBlock = fn.newBasicBlock("unreachable") + + case *ast.BranchStmt: + var block *BasicBlock + switch s.Tok { + case token.BREAK: + if s.Label != nil { + block = fn.labelledBlock(s.Label)._break + } else { + for t := fn.targets; t != nil && block == nil; t = t.tail { + block = t._break + } + } + + case token.CONTINUE: + if s.Label != nil { + block = fn.labelledBlock(s.Label)._continue + } else { + for t := fn.targets; t != nil && block == nil; t = t.tail { + block = t._continue + } + } + + case token.FALLTHROUGH: + for t := fn.targets; t != nil && block == nil; t = t.tail { + block = t._fallthrough + } + + case token.GOTO: + block = fn.labelledBlock(s.Label)._goto + } + emitJump(fn, block) + fn.currentBlock = fn.newBasicBlock("unreachable") + + case *ast.BlockStmt: + b.stmtList(fn, s.List) + + case *ast.IfStmt: + if s.Init != nil { + b.stmt(fn, s.Init) + } + then := fn.newBasicBlock("if.then") + done := fn.newBasicBlock("if.done") + els := done + if s.Else != nil { + els = fn.newBasicBlock("if.else") + } + b.cond(fn, s.Cond, then, els) + fn.currentBlock = then + b.stmt(fn, s.Body) + emitJump(fn, done) + + if s.Else != nil { + fn.currentBlock = els + b.stmt(fn, s.Else) + emitJump(fn, done) + } + + fn.currentBlock = done + + case *ast.SwitchStmt: + b.switchStmt(fn, s, label) + + case *ast.TypeSwitchStmt: + b.typeSwitchStmt(fn, s, label) + + case *ast.SelectStmt: + b.selectStmt(fn, s, label) + + case *ast.ForStmt: + b.forStmt(fn, s, label) + + case *ast.RangeStmt: + b.rangeStmt(fn, s, label) + + default: + panic(fmt.Sprintf("unexpected statement kind: %T", s)) + } +} + +// buildFunction builds SSA code for the body of function fn. Idempotent. +func (b *builder) buildFunction(fn *Function) { + if fn.Blocks != nil { + return // building already started + } + + var recvField *ast.FieldList + var body *ast.BlockStmt + var functype *ast.FuncType + switch n := fn.syntax.(type) { + case nil: + return // not a Go source function. (Synthetic, or from object file.) + case *ast.FuncDecl: + functype = n.Type + recvField = n.Recv + body = n.Body + case *ast.FuncLit: + functype = n.Type + body = n.Body + default: + panic(n) + } + + if body == nil { + // External function. + if fn.Params == nil { + // This condition ensures we add a non-empty + // params list once only, but we may attempt + // the degenerate empty case repeatedly. + // TODO(adonovan): opt: don't do that. + + // We set Function.Params even though there is no body + // code to reference them. This simplifies clients. + if recv := fn.Signature.Recv(); recv != nil { + fn.addParamObj(recv) + } + params := fn.Signature.Params() + for i, n := 0, params.Len(); i < n; i++ { + fn.addParamObj(params.At(i)) + } + } + return + } + if fn.Prog.mode&LogSource != 0 { + defer logStack("build function %s @ %s", fn, fn.Prog.Fset.Position(fn.pos))() + } + fn.startBody() + fn.createSyntacticParams(recvField, functype) + b.stmt(fn, body) + if cb := fn.currentBlock; cb != nil && (cb == fn.Blocks[0] || cb == fn.Recover || cb.Preds != nil) { + // Control fell off the end of the function's body block. + // + // Block optimizations eliminate the current block, if + // unreachable. It is an ssa.builder invariant that + // if this no-arg return is ill-typed for + // fn.Signature.Results, this block must be + // unreachable. The sanity checker checks this. + fn.emit(new(RunDefers)) + fn.emit(new(Return)) + } + fn.finishBody() +} + +// buildFuncDecl builds SSA code for the function or method declared +// by decl in package pkg. +// +func (b *builder) buildFuncDecl(pkg *Package, decl *ast.FuncDecl) { + id := decl.Name + if isBlankIdent(id) { + return // discard + } + var fn *Function + if decl.Recv == nil && id.Name == "init" { + pkg.ninit++ + fn = &Function{ + name: fmt.Sprintf("init$%d", pkg.ninit), + Signature: new(types.Signature), + pos: decl.Name.NamePos, + Pkg: pkg, + Prog: pkg.Prog, + syntax: decl, + } + + var v Call + v.Call.Value = fn + v.setType(types.NewTuple()) + pkg.init.emit(&v) + } else { + fn = pkg.values[pkg.objectOf(id)].(*Function) + } + b.buildFunction(fn) +} + +// BuildAll calls Package.Build() for each package in prog. +// Building occurs in parallel unless the BuildSerially mode flag was set. +// +// BuildAll is idempotent and thread-safe. +// +func (prog *Program) BuildAll() { + var wg sync.WaitGroup + for _, p := range prog.packages { + if prog.mode&BuildSerially != 0 { + p.Build() + } else { + wg.Add(1) + go func(p *Package) { + p.Build() + wg.Done() + }(p) + } + } + wg.Wait() +} + +// Build builds SSA code for all functions and vars in package p. +// +// Precondition: CreatePackage must have been called for all of p's +// direct imports (and hence its direct imports must have been +// error-free). +// +// Build is idempotent and thread-safe. +// +func (p *Package) Build() { + if !atomic.CompareAndSwapInt32(&p.started, 0, 1) { + return // already started + } + if p.info == nil { + return // synthetic package, e.g. "testmain" + } + // Ensure we have runtime type info for all exported members. + // TODO(adonovan): ideally belongs in memberFromObject, but + // that would require package creation in topological order. + for name, mem := range p.Members { + if ast.IsExported(name) { + p.needMethodsOf(mem.Type()) + } + } + if p.Prog.mode&LogSource != 0 { + defer logStack("build %s", p)() + } + init := p.init + init.startBody() + + // Make init() skip if package is already initialized. + initguard := p.Var("init$guard") + doinit := init.newBasicBlock("init.start") + done := init.newBasicBlock("init.done") + emitIf(init, emitLoad(init, initguard), done, doinit) + init.currentBlock = doinit + emitStore(init, initguard, vTrue) + + // Call the init() function of each package we import. + for _, pkg := range p.info.Pkg.Imports() { + prereq := p.Prog.packages[pkg] + if prereq == nil { + panic(fmt.Sprintf("Package(%q).Build(): unsatisfied import: Program.CreatePackage(%q) was not called", p.Object.Path(), pkg.Path())) + } + var v Call + v.Call.Value = prereq.init + v.Call.pos = init.pos + v.setType(types.NewTuple()) + init.emit(&v) + } + + var b builder + + // Initialize package-level vars in correct order. + for _, varinit := range p.info.InitOrder { + if init.Prog.mode&LogSource != 0 { + fmt.Fprintf(os.Stderr, "build global initializer %v @ %s\n", + varinit.Lhs, p.Prog.Fset.Position(varinit.Rhs.Pos())) + } + if len(varinit.Lhs) == 1 { + // 1:1 initialization: var x, y = a(), b() + var lval lvalue + if v := varinit.Lhs[0]; v.Name() != "_" { + lval = &address{addr: p.values[v].(*Global)} + } else { + lval = blank{} + } + b.exprInPlace(init, lval, varinit.Rhs) + } else { + // n:1 initialization: var x, y := f() + tuple := b.exprN(init, varinit.Rhs) + for i, v := range varinit.Lhs { + if v.Name() == "_" { + continue + } + emitStore(init, p.values[v].(*Global), emitExtract(init, tuple, i)) + } + } + } + + // Build all package-level functions, init functions + // and methods, including unreachable/blank ones. + // We build them in source order, but it's not significant. + for _, file := range p.info.Files { + for _, decl := range file.Decls { + if decl, ok := decl.(*ast.FuncDecl); ok { + b.buildFuncDecl(p, decl) + } + } + } + + // Finish up init(). + emitJump(init, done) + init.currentBlock = done + init.emit(new(Return)) + init.finishBody() + + p.info = nil // We no longer need ASTs or go/types deductions. +} + +// Only valid during p's create and build phases. +func (p *Package) objectOf(id *ast.Ident) types.Object { + if o := p.info.ObjectOf(id); o != nil { + return o + } + panic(fmt.Sprintf("no types.Object for ast.Ident %s @ %s", + id.Name, p.Prog.Fset.Position(id.Pos()))) +} + +// Only valid during p's create and build phases. +func (p *Package) typeOf(e ast.Expr) types.Type { + return p.info.TypeOf(e) +} + +// needMethodsOf ensures that runtime type information (including the +// complete method set) is available for the specified type T and all +// its subcomponents. +// +// needMethodsOf must be called for at least every type that is an +// operand of some MakeInterface instruction, and for the type of +// every exported package member. +// +// Precondition: T is not a method signature (*Signature with Recv()!=nil). +// +// TODO(adonovan): fix: make this thread-safe. I don't think it is +// right now since it's called concurrently from emitConv. +// +// TODO(adonovan): make this faster. It accounts for 20% of SSA build +// time, even with concurrency and no locking. +// +func (p *Package) needMethodsOf(T types.Type) { + p.needMethods(T, false) +} + +// Precondition: T is not a method signature (*Signature with Recv()!=nil). +// Recursive case: skip => don't call makeMethods(T). +func (p *Package) needMethods(T types.Type, skip bool) { + // Each package maintains its own set of types it has visited. + if p.needRTTI.Set(T, true) != nil { + return // already seen + } + + // Prune the recursion if we find a named or *named type + // belonging to another package. + var n *types.Named + switch T := T.(type) { + case *types.Named: + n = T + case *types.Pointer: + n, _ = T.Elem().(*types.Named) + } + if n != nil { + owner := n.Obj().Pkg() + if owner == nil { + return // built-in error type + } + if owner != p.Object { + return // belongs to another package + } + } + + // All the actual method sets live in the Program so that + // multiple packages can share a single copy in memory of the + // symbols that would be compiled into multiple packages (as + // weak symbols). + if !skip && p.Prog.makeMethods(T) { + p.methodSets = append(p.methodSets, T) + } + + // Recursion over signatures of each method. + tmset := p.Prog.MethodSets.MethodSet(T) + for i := 0; i < tmset.Len(); i++ { + sig := tmset.At(i).Type().(*types.Signature) + p.needMethodsOf(sig.Params()) + p.needMethodsOf(sig.Results()) + } + + switch t := T.(type) { + case *types.Basic: + // nop + + case *types.Interface: + // nop---handled by recursion over method set. + + case *types.Pointer: + p.needMethodsOf(t.Elem()) + + case *types.Slice: + p.needMethodsOf(t.Elem()) + + case *types.Chan: + p.needMethodsOf(t.Elem()) + + case *types.Map: + p.needMethodsOf(t.Key()) + p.needMethodsOf(t.Elem()) + + case *types.Signature: + if t.Recv() != nil { + panic(fmt.Sprintf("Signature %s has Recv %s", t, t.Recv())) + } + p.needMethodsOf(t.Params()) + p.needMethodsOf(t.Results()) + + case *types.Named: + // A pointer-to-named type can be derived from a named + // type via reflection. It may have methods too. + p.needMethodsOf(types.NewPointer(T)) + + // Consider 'type T struct{S}' where S has methods. + // Reflection provides no way to get from T to struct{S}, + // only to S, so the method set of struct{S} is unwanted, + // so set 'skip' flag during recursion. + p.needMethods(t.Underlying(), true) + + case *types.Array: + p.needMethodsOf(t.Elem()) + + case *types.Struct: + for i, n := 0, t.NumFields(); i < n; i++ { + p.needMethodsOf(t.Field(i).Type()) + } + + case *types.Tuple: + for i, n := 0, t.Len(); i < n; i++ { + p.needMethodsOf(t.At(i).Type()) + } + + default: + panic(T) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/builder_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/builder_test.go new file mode 100644 index 00000000..d69ca85c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/builder_test.go @@ -0,0 +1,240 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa_test + +import ( + "reflect" + "sort" + "strings" + "testing" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +func isEmpty(f *ssa.Function) bool { return f.Blocks == nil } + +// Tests that programs partially loaded from gc object files contain +// functions with no code for the external portions, but are otherwise ok. +func TestExternalPackages(t *testing.T) { + test := ` +package main + +import ( + "bytes" + "io" + "testing" +) + +func main() { + var t testing.T + t.Parallel() // static call to external declared method + t.Fail() // static call to promoted external declared method + testing.Short() // static call to external package-level function + + var w io.Writer = new(bytes.Buffer) + w.Write(nil) // interface invoke of external declared method +} +` + + // Create a single-file main package. + var conf loader.Config + f, err := conf.ParseFile("", test) + if err != nil { + t.Error(err) + return + } + conf.CreateFromFiles("main", f) + + iprog, err := conf.Load() + if err != nil { + t.Error(err) + return + } + + prog := ssa.Create(iprog, ssa.SanityCheckFunctions) + mainPkg := prog.Package(iprog.Created[0].Pkg) + mainPkg.Build() + + // The main package, its direct and indirect dependencies are loaded. + deps := []string{ + // directly imported dependencies: + "bytes", "io", "testing", + // indirect dependencies (partial list): + "errors", "fmt", "os", "runtime", + } + + all := prog.AllPackages() + if len(all) <= len(deps) { + t.Errorf("unexpected set of loaded packages: %q", all) + } + for _, path := range deps { + pkg := prog.ImportedPackage(path) + if pkg == nil { + t.Errorf("package not loaded: %q", path) + continue + } + + // External packages should have no function bodies (except for wrappers). + isExt := pkg != mainPkg + + // init() + if isExt && !isEmpty(pkg.Func("init")) { + t.Errorf("external package %s has non-empty init", pkg) + } else if !isExt && isEmpty(pkg.Func("init")) { + t.Errorf("main package %s has empty init", pkg) + } + + for _, mem := range pkg.Members { + switch mem := mem.(type) { + case *ssa.Function: + // Functions at package level. + if isExt && !isEmpty(mem) { + t.Errorf("external function %s is non-empty", mem) + } else if !isExt && isEmpty(mem) { + t.Errorf("function %s is empty", mem) + } + + case *ssa.Type: + // Methods of named types T. + // (In this test, all exported methods belong to *T not T.) + if !isExt { + t.Fatalf("unexpected name type in main package: %s", mem) + } + mset := prog.MethodSets.MethodSet(types.NewPointer(mem.Type())) + for i, n := 0, mset.Len(); i < n; i++ { + m := prog.Method(mset.At(i)) + // For external types, only synthetic wrappers have code. + expExt := !strings.Contains(m.Synthetic, "wrapper") + if expExt && !isEmpty(m) { + t.Errorf("external method %s is non-empty: %s", + m, m.Synthetic) + } else if !expExt && isEmpty(m) { + t.Errorf("method function %s is empty: %s", + m, m.Synthetic) + } + } + } + } + } + + expectedCallee := []string{ + "(*testing.T).Parallel", + "(*testing.common).Fail", + "testing.Short", + "N/A", + } + callNum := 0 + for _, b := range mainPkg.Func("main").Blocks { + for _, instr := range b.Instrs { + switch instr := instr.(type) { + case ssa.CallInstruction: + call := instr.Common() + if want := expectedCallee[callNum]; want != "N/A" { + got := call.StaticCallee().String() + if want != got { + t.Errorf("call #%d from main.main: got callee %s, want %s", + callNum, got, want) + } + } + callNum++ + } + } + } + if callNum != 4 { + t.Errorf("in main.main: got %d calls, want %d", callNum, 4) + } +} + +// TestTypesWithMethodSets tests that Package.TypesWithMethodSets includes all necessary types. +func TestTypesWithMethodSets(t *testing.T) { + tests := []struct { + input string + want []string + }{ + // An exported package-level type is needed. + {`package A; type T struct{}; func (T) f() {}`, + []string{"*p.T", "p.T"}, + }, + // An unexported package-level type is not needed. + {`package B; type t struct{}; func (t) f() {}`, + nil, + }, + // Subcomponents of type of exported package-level var are needed. + {`package C; import "bytes"; var V struct {*bytes.Buffer}`, + []string{"*struct{*bytes.Buffer}", "struct{*bytes.Buffer}"}, + }, + // Subcomponents of type of unexported package-level var are not needed. + {`package D; import "bytes"; var v struct {*bytes.Buffer}`, + nil, + }, + // Subcomponents of type of exported package-level function are needed. + {`package E; import "bytes"; func F(struct {*bytes.Buffer}) {}`, + []string{"struct{*bytes.Buffer}"}, + }, + // Subcomponents of type of unexported package-level function are not needed. + {`package F; import "bytes"; func f(struct {*bytes.Buffer}) {}`, + nil, + }, + // Subcomponents of type of exported method of uninstantiated unexported type are not needed. + {`package G; import "bytes"; type x struct{}; func (x) G(struct {*bytes.Buffer}) {}; var v x`, + nil, + }, + // ...unless used by MakeInterface. + {`package G2; import "bytes"; type x struct{}; func (x) G(struct {*bytes.Buffer}) {}; var v interface{} = x{}`, + []string{"*p.x", "p.x", "struct{*bytes.Buffer}"}, + }, + // Subcomponents of type of unexported method are not needed. + {`package I; import "bytes"; type X struct{}; func (X) G(struct {*bytes.Buffer}) {}`, + []string{"*p.X", "p.X", "struct{*bytes.Buffer}"}, + }, + // Local types aren't needed. + {`package J; import "bytes"; func f() { type T struct {*bytes.Buffer}; var t T; _ = t }`, + nil, + }, + // ...unless used by MakeInterface. + {`package K; import "bytes"; func f() { type T struct {*bytes.Buffer}; _ = interface{}(T{}) }`, + []string{"*p.T", "p.T"}, + }, + // Types used as operand of MakeInterface are needed. + {`package L; import "bytes"; func f() { _ = interface{}(struct{*bytes.Buffer}{}) }`, + []string{"struct{*bytes.Buffer}"}, + }, + // MakeInterface is optimized away when storing to a blank. + {`package M; import "bytes"; var _ interface{} = struct{*bytes.Buffer}{}`, + nil, + }, + } + for _, test := range tests { + // Create a single-file main package. + var conf loader.Config + f, err := conf.ParseFile("", test.input) + if err != nil { + t.Errorf("test %q: %s", test.input[:15], err) + continue + } + conf.CreateFromFiles("p", f) + + iprog, err := conf.Load() + if err != nil { + t.Errorf("test 'package %s': Load: %s", f.Name.Name, err) + continue + } + prog := ssa.Create(iprog, ssa.SanityCheckFunctions) + mainPkg := prog.Package(iprog.Created[0].Pkg) + prog.BuildAll() + + var typstrs []string + for _, T := range mainPkg.TypesWithMethodSets() { + typstrs = append(typstrs, T.String()) + } + sort.Strings(typstrs) + + if !reflect.DeepEqual(typstrs, test.want) { + t.Errorf("test 'package %s': got %q, want %q", f.Name.Name, typstrs, test.want) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/const.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/const.go new file mode 100644 index 00000000..36ae99ea --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/const.go @@ -0,0 +1,161 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file defines the Const SSA value type. + +import ( + "fmt" + "go/token" + "strconv" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// NewConst returns a new constant of the specified value and type. +// val must be valid according to the specification of Const.Value. +// +func NewConst(val exact.Value, typ types.Type) *Const { + return &Const{typ, val} +} + +// intConst returns an 'int' constant that evaluates to i. +// (i is an int64 in case the host is narrower than the target.) +func intConst(i int64) *Const { + return NewConst(exact.MakeInt64(i), types.Typ[types.Int]) +} + +// nilConst returns a nil constant of the specified type, which may +// be any reference type, including interfaces. +// +func nilConst(typ types.Type) *Const { + return NewConst(nil, typ) +} + +// zeroConst returns a new "zero" constant of the specified type, +// which must not be an array or struct type: the zero values of +// aggregates are well-defined but cannot be represented by Const. +// +func zeroConst(t types.Type) *Const { + switch t := t.(type) { + case *types.Basic: + switch { + case t.Info()&types.IsBoolean != 0: + return NewConst(exact.MakeBool(false), t) + case t.Info()&types.IsNumeric != 0: + return NewConst(exact.MakeInt64(0), t) + case t.Info()&types.IsString != 0: + return NewConst(exact.MakeString(""), t) + case t.Kind() == types.UnsafePointer: + fallthrough + case t.Kind() == types.UntypedNil: + return nilConst(t) + default: + panic(fmt.Sprint("zeroConst for unexpected type:", t)) + } + case *types.Pointer, *types.Slice, *types.Interface, *types.Chan, *types.Map, *types.Signature: + return nilConst(t) + case *types.Named: + return NewConst(zeroConst(t.Underlying()).Value, t) + case *types.Array, *types.Struct, *types.Tuple: + panic(fmt.Sprint("zeroConst applied to aggregate:", t)) + } + panic(fmt.Sprint("zeroConst: unexpected ", t)) +} + +func (c *Const) RelString(from *types.Package) string { + var s string + if c.Value == nil { + s = "nil" + } else if c.Value.Kind() == exact.String { + s = exact.StringVal(c.Value) + const max = 20 + // TODO(adonovan): don't cut a rune in half. + if len(s) > max { + s = s[:max-3] + "..." // abbreviate + } + s = strconv.Quote(s) + } else { + s = c.Value.String() + } + return s + ":" + relType(c.Type(), from) +} + +func (c *Const) Name() string { + return c.RelString(nil) +} + +func (c *Const) String() string { + return c.Name() +} + +func (c *Const) Type() types.Type { + return c.typ +} + +func (c *Const) Referrers() *[]Instruction { + return nil +} + +func (c *Const) Pos() token.Pos { + return token.NoPos +} + +// IsNil returns true if this constant represents a typed or untyped nil value. +func (c *Const) IsNil() bool { + return c.Value == nil +} + +// Int64 returns the numeric value of this constant truncated to fit +// a signed 64-bit integer. +// +func (c *Const) Int64() int64 { + switch x := c.Value; x.Kind() { + case exact.Int: + if i, ok := exact.Int64Val(x); ok { + return i + } + return 0 + case exact.Float: + f, _ := exact.Float64Val(x) + return int64(f) + } + panic(fmt.Sprintf("unexpected constant value: %T", c.Value)) +} + +// Uint64 returns the numeric value of this constant truncated to fit +// an unsigned 64-bit integer. +// +func (c *Const) Uint64() uint64 { + switch x := c.Value; x.Kind() { + case exact.Int: + if u, ok := exact.Uint64Val(x); ok { + return u + } + return 0 + case exact.Float: + f, _ := exact.Float64Val(x) + return uint64(f) + } + panic(fmt.Sprintf("unexpected constant value: %T", c.Value)) +} + +// Float64 returns the numeric value of this constant truncated to fit +// a float64. +// +func (c *Const) Float64() float64 { + f, _ := exact.Float64Val(c.Value) + return f +} + +// Complex128 returns the complex value of this constant truncated to +// fit a complex128. +// +func (c *Const) Complex128() complex128 { + re, _ := exact.Float64Val(exact.Real(c.Value)) + im, _ := exact.Float64Val(exact.Imag(c.Value)) + return complex(re, im) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/create.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/create.go new file mode 100644 index 00000000..3317013a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/create.go @@ -0,0 +1,273 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file implements the CREATE phase of SSA construction. +// See builder.go for explanation. + +import ( + "go/ast" + "go/token" + "os" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/types" +) + +// BuilderMode is a bitmask of options for diagnostics and checking. +type BuilderMode uint + +const ( + LogPackages BuilderMode = 1 << iota // Dump package inventory to stderr + LogFunctions // Dump function SSA code to stderr + LogSource // Show source locations as SSA builder progresses + SanityCheckFunctions // Perform sanity checking of function bodies + NaiveForm // Build naïve SSA form: don't replace local loads/stores with registers + BuildSerially // Build packages serially, not in parallel. + GlobalDebug // Enable debug info for all packages +) + +// Create returns a new SSA Program. An SSA Package is created for +// each transitively error-free package of iprog. +// +// Code for bodies of functions is not built until Build() is called +// on the result. +// +// mode controls diagnostics and checking during SSA construction. +// +func Create(iprog *loader.Program, mode BuilderMode) *Program { + prog := &Program{ + Fset: iprog.Fset, + imported: make(map[string]*Package), + packages: make(map[*types.Package]*Package), + boundMethodWrappers: make(map[*types.Func]*Function), + ifaceMethodWrappers: make(map[*types.Func]*Function), + mode: mode, + } + + for _, info := range iprog.AllPackages { + // TODO(adonovan): relax this constraint if the + // program contains only "soft" errors. + if info.TransitivelyErrorFree { + prog.CreatePackage(info) + } + } + + return prog +} + +// memberFromObject populates package pkg with a member for the +// typechecker object obj. +// +// For objects from Go source code, syntax is the associated syntax +// tree (for funcs and vars only); it will be used during the build +// phase. +// +func memberFromObject(pkg *Package, obj types.Object, syntax ast.Node) { + name := obj.Name() + switch obj := obj.(type) { + case *types.TypeName: + pkg.Members[name] = &Type{ + object: obj, + pkg: pkg, + } + + case *types.Const: + c := &NamedConst{ + object: obj, + Value: NewConst(obj.Val(), obj.Type()), + pkg: pkg, + } + pkg.values[obj] = c.Value + pkg.Members[name] = c + + case *types.Var: + g := &Global{ + Pkg: pkg, + name: name, + object: obj, + typ: types.NewPointer(obj.Type()), // address + pos: obj.Pos(), + } + pkg.values[obj] = g + pkg.Members[name] = g + + case *types.Func: + fn := &Function{ + name: name, + object: obj, + Signature: obj.Type().(*types.Signature), + syntax: syntax, + pos: obj.Pos(), + Pkg: pkg, + Prog: pkg.Prog, + } + if syntax == nil { + fn.Synthetic = "loaded from gc object file" + } + + pkg.values[obj] = fn + if fn.Signature.Recv() == nil { + pkg.Members[name] = fn // package-level function + } + + default: // (incl. *types.Package) + panic("unexpected Object type: " + obj.String()) + } +} + +// membersFromDecl populates package pkg with members for each +// typechecker object (var, func, const or type) associated with the +// specified decl. +// +func membersFromDecl(pkg *Package, decl ast.Decl) { + switch decl := decl.(type) { + case *ast.GenDecl: // import, const, type or var + switch decl.Tok { + case token.CONST: + for _, spec := range decl.Specs { + for _, id := range spec.(*ast.ValueSpec).Names { + if !isBlankIdent(id) { + memberFromObject(pkg, pkg.objectOf(id), nil) + } + } + } + + case token.VAR: + for _, spec := range decl.Specs { + for _, id := range spec.(*ast.ValueSpec).Names { + if !isBlankIdent(id) { + memberFromObject(pkg, pkg.objectOf(id), spec) + } + } + } + + case token.TYPE: + for _, spec := range decl.Specs { + id := spec.(*ast.TypeSpec).Name + if !isBlankIdent(id) { + memberFromObject(pkg, pkg.objectOf(id), nil) + } + } + } + + case *ast.FuncDecl: + id := decl.Name + if decl.Recv == nil && id.Name == "init" { + return // no object + } + if !isBlankIdent(id) { + memberFromObject(pkg, pkg.objectOf(id), decl) + } + } +} + +// CreatePackage constructs and returns an SSA Package from an +// error-free package described by info, and populates its Members +// mapping. +// +// Repeated calls with the same info return the same Package. +// +// The real work of building SSA form for each function is not done +// until a subsequent call to Package.Build(). +// +func (prog *Program) CreatePackage(info *loader.PackageInfo) *Package { + if p := prog.packages[info.Pkg]; p != nil { + return p // already loaded + } + + p := &Package{ + Prog: prog, + Members: make(map[string]Member), + values: make(map[types.Object]Value), + Object: info.Pkg, + info: info, // transient (CREATE and BUILD phases) + } + + // Add init() function. + p.init = &Function{ + name: "init", + Signature: new(types.Signature), + Synthetic: "package initializer", + Pkg: p, + Prog: prog, + } + p.Members[p.init.name] = p.init + + // CREATE phase. + // Allocate all package members: vars, funcs, consts and types. + if len(info.Files) > 0 { + // Go source package. + for _, file := range info.Files { + for _, decl := range file.Decls { + membersFromDecl(p, decl) + } + } + } else { + // GC-compiled binary package. + // No code. + // No position information. + scope := p.Object.Scope() + for _, name := range scope.Names() { + obj := scope.Lookup(name) + memberFromObject(p, obj, nil) + if obj, ok := obj.(*types.TypeName); ok { + named := obj.Type().(*types.Named) + for i, n := 0, named.NumMethods(); i < n; i++ { + memberFromObject(p, named.Method(i), nil) + } + } + } + } + + // Add initializer guard variable. + initguard := &Global{ + Pkg: p, + name: "init$guard", + typ: types.NewPointer(tBool), + } + p.Members[initguard.Name()] = initguard + + if prog.mode&GlobalDebug != 0 { + p.SetDebugMode(true) + } + + if prog.mode&LogPackages != 0 { + p.WriteTo(os.Stderr) + } + + if info.Importable { + prog.imported[info.Pkg.Path()] = p + } + prog.packages[p.Object] = p + + if prog.mode&SanityCheckFunctions != 0 { + sanityCheckPackage(p) + } + + return p +} + +// AllPackages returns a new slice containing all packages in the +// program prog in unspecified order. +// +func (prog *Program) AllPackages() []*Package { + pkgs := make([]*Package, 0, len(prog.packages)) + for _, pkg := range prog.packages { + pkgs = append(pkgs, pkg) + } + return pkgs +} + +// ImportedPackage returns the importable SSA Package whose import +// path is path, or nil if no such SSA package has been created. +// +// Not all packages are importable. For example, no import +// declaration can resolve to the x_test package created by 'go test' +// or the ad-hoc main package created 'go build foo.go'. +// +func (prog *Program) ImportedPackage(path string) *Package { + return prog.imported[path] +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/doc.go new file mode 100644 index 00000000..c919823a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/doc.go @@ -0,0 +1,122 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ssa defines a representation of the elements of Go programs +// (packages, types, functions, variables and constants) using a +// static single-assignment (SSA) form intermediate representation +// (IR) for the bodies of functions. +// +// THIS INTERFACE IS EXPERIMENTAL AND IS LIKELY TO CHANGE. +// +// For an introduction to SSA form, see +// http://en.wikipedia.org/wiki/Static_single_assignment_form. +// This page provides a broader reading list: +// http://www.dcs.gla.ac.uk/~jsinger/ssa.html. +// +// The level of abstraction of the SSA form is intentionally close to +// the source language to facilitate construction of source analysis +// tools. It is not intended for machine code generation. +// +// All looping, branching and switching constructs are replaced with +// unstructured control flow. Higher-level control flow constructs +// such as multi-way branch can be reconstructed as needed; see +// ssautil.Switches() for an example. +// +// To construct an SSA-form program, call ssa.Create on a +// loader.Program, a set of type-checked packages created from +// parsed Go source files. The resulting ssa.Program contains all the +// packages and their members, but SSA code is not created for +// function bodies until a subsequent call to (*Package).Build. +// +// The builder initially builds a naive SSA form in which all local +// variables are addresses of stack locations with explicit loads and +// stores. Registerisation of eligible locals and φ-node insertion +// using dominance and dataflow are then performed as a second pass +// called "lifting" to improve the accuracy and performance of +// subsequent analyses; this pass can be skipped by setting the +// NaiveForm builder flag. +// +// The primary interfaces of this package are: +// +// - Member: a named member of a Go package. +// - Value: an expression that yields a value. +// - Instruction: a statement that consumes values and performs computation. +// +// A computation that yields a result implements both the Value and +// Instruction interfaces. The following table shows for each +// concrete type which of these interfaces it implements. +// +// Value? Instruction? Member? +// *Alloc ✔ ✔ +// *BinOp ✔ ✔ +// *Builtin ✔ +// *Call ✔ ✔ +// *Capture ✔ +// *ChangeInterface ✔ ✔ +// *ChangeType ✔ ✔ +// *Const ✔ +// *Convert ✔ ✔ +// *DebugRef ✔ +// *Defer ✔ +// *Extract ✔ ✔ +// *Field ✔ ✔ +// *FieldAddr ✔ ✔ +// *Function ✔ ✔ (func) +// *Global ✔ ✔ (var) +// *Go ✔ +// *If ✔ +// *Index ✔ ✔ +// *IndexAddr ✔ ✔ +// *Jump ✔ +// *Lookup ✔ ✔ +// *MakeChan ✔ ✔ +// *MakeClosure ✔ ✔ +// *MakeInterface ✔ ✔ +// *MakeMap ✔ ✔ +// *MakeSlice ✔ ✔ +// *MapUpdate ✔ +// *NamedConst ✔ (const) +// *Next ✔ ✔ +// *Panic ✔ +// *Parameter ✔ +// *Phi ✔ ✔ +// *Range ✔ ✔ +// *Return ✔ +// *RunDefers ✔ +// *Select ✔ ✔ +// *Send ✔ +// *Slice ✔ ✔ +// *Store ✔ +// *Type ✔ (type) +// *TypeAssert ✔ ✔ +// *UnOp ✔ ✔ +// +// Other key types in this package include: Program, Package, Function +// and BasicBlock. +// +// The program representation constructed by this package is fully +// resolved internally, i.e. it does not rely on the names of Values, +// Packages, Functions, Types or BasicBlocks for the correct +// interpretation of the program. Only the identities of objects and +// the topology of the SSA and type graphs are semantically +// significant. (There is one exception: Ids, used to identify field +// and method names, contain strings.) Avoidance of name-based +// operations simplifies the implementation of subsequent passes and +// can make them very efficient. Many objects are nonetheless named +// to aid in debugging, but it is not essential that the names be +// either accurate or unambiguous. The public API exposes a number of +// name-based maps for client convenience. +// +// The ssa/ssautil package provides various utilities that depend only +// on the public API of this package. +// +// TODO(adonovan): Consider the exceptional control-flow implications +// of defer and recover(). +// +// TODO(adonovan): write a how-to document for all the various cases +// of trying to determine corresponding elements across the four +// domains of source locations, ast.Nodes, types.Objects, +// ssa.Values/Instructions. +// +package ssa diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/dom.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/dom.go new file mode 100644 index 00000000..12ef4308 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/dom.go @@ -0,0 +1,341 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file defines algorithms related to dominance. + +// Dominator tree construction ---------------------------------------- +// +// We use the algorithm described in Lengauer & Tarjan. 1979. A fast +// algorithm for finding dominators in a flowgraph. +// http://doi.acm.org/10.1145/357062.357071 +// +// We also apply the optimizations to SLT described in Georgiadis et +// al, Finding Dominators in Practice, JGAA 2006, +// http://jgaa.info/accepted/2006/GeorgiadisTarjanWerneck2006.10.1.pdf +// to avoid the need for buckets of size > 1. + +import ( + "bytes" + "fmt" + "math/big" + "os" + "sort" +) + +// Idom returns the block that immediately dominates b: +// its parent in the dominator tree, if any. +// Neither the entry node (b.Index==0) nor recover node +// (b==b.Parent().Recover()) have a parent. +// +func (b *BasicBlock) Idom() *BasicBlock { return b.dom.idom } + +// Dominees returns the list of blocks that b immediately dominates: +// its children in the dominator tree. +// +func (b *BasicBlock) Dominees() []*BasicBlock { return b.dom.children } + +// Dominates reports whether b dominates c. +func (b *BasicBlock) Dominates(c *BasicBlock) bool { + return b.dom.pre <= c.dom.pre && c.dom.post <= b.dom.post +} + +type byDomPreorder []*BasicBlock + +func (a byDomPreorder) Len() int { return len(a) } +func (a byDomPreorder) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a byDomPreorder) Less(i, j int) bool { return a[i].dom.pre < a[j].dom.pre } + +// DomPreorder returns a new slice containing the blocks of f in +// dominator tree preorder. +// +func (f *Function) DomPreorder() []*BasicBlock { + n := len(f.Blocks) + order := make(byDomPreorder, n, n) + copy(order, f.Blocks) + sort.Sort(order) + return order +} + +// domInfo contains a BasicBlock's dominance information. +type domInfo struct { + idom *BasicBlock // immediate dominator (parent in domtree) + children []*BasicBlock // nodes immediately dominated by this one + pre, post int32 // pre- and post-order numbering within domtree +} + +// ltState holds the working state for Lengauer-Tarjan algorithm +// (during which domInfo.pre is repurposed for CFG DFS preorder number). +type ltState struct { + // Each slice is indexed by b.Index. + sdom []*BasicBlock // b's semidominator + parent []*BasicBlock // b's parent in DFS traversal of CFG + ancestor []*BasicBlock // b's ancestor with least sdom +} + +// dfs implements the depth-first search part of the LT algorithm. +func (lt *ltState) dfs(v *BasicBlock, i int32, preorder []*BasicBlock) int32 { + preorder[i] = v + v.dom.pre = i // For now: DFS preorder of spanning tree of CFG + i++ + lt.sdom[v.Index] = v + lt.link(nil, v) + for _, w := range v.Succs { + if lt.sdom[w.Index] == nil { + lt.parent[w.Index] = v + i = lt.dfs(w, i, preorder) + } + } + return i +} + +// eval implements the EVAL part of the LT algorithm. +func (lt *ltState) eval(v *BasicBlock) *BasicBlock { + // TODO(adonovan): opt: do path compression per simple LT. + u := v + for ; lt.ancestor[v.Index] != nil; v = lt.ancestor[v.Index] { + if lt.sdom[v.Index].dom.pre < lt.sdom[u.Index].dom.pre { + u = v + } + } + return u +} + +// link implements the LINK part of the LT algorithm. +func (lt *ltState) link(v, w *BasicBlock) { + lt.ancestor[w.Index] = v +} + +// buildDomTree computes the dominator tree of f using the LT algorithm. +// Precondition: all blocks are reachable (e.g. optimizeBlocks has been run). +// +func buildDomTree(f *Function) { + // The step numbers refer to the original LT paper; the + // reordering is due to Georgiadis. + + // Clear any previous domInfo. + for _, b := range f.Blocks { + b.dom = domInfo{} + } + + n := len(f.Blocks) + // Allocate space for 5 contiguous [n]*BasicBlock arrays: + // sdom, parent, ancestor, preorder, buckets. + space := make([]*BasicBlock, 5*n, 5*n) + lt := ltState{ + sdom: space[0:n], + parent: space[n : 2*n], + ancestor: space[2*n : 3*n], + } + + // Step 1. Number vertices by depth-first preorder. + preorder := space[3*n : 4*n] + root := f.Blocks[0] + prenum := lt.dfs(root, 0, preorder) + recover := f.Recover + if recover != nil { + lt.dfs(recover, prenum, preorder) + } + + buckets := space[4*n : 5*n] + copy(buckets, preorder) + + // In reverse preorder... + for i := int32(n) - 1; i > 0; i-- { + w := preorder[i] + + // Step 3. Implicitly define the immediate dominator of each node. + for v := buckets[i]; v != w; v = buckets[v.dom.pre] { + u := lt.eval(v) + if lt.sdom[u.Index].dom.pre < i { + v.dom.idom = u + } else { + v.dom.idom = w + } + } + + // Step 2. Compute the semidominators of all nodes. + lt.sdom[w.Index] = lt.parent[w.Index] + for _, v := range w.Preds { + u := lt.eval(v) + if lt.sdom[u.Index].dom.pre < lt.sdom[w.Index].dom.pre { + lt.sdom[w.Index] = lt.sdom[u.Index] + } + } + + lt.link(lt.parent[w.Index], w) + + if lt.parent[w.Index] == lt.sdom[w.Index] { + w.dom.idom = lt.parent[w.Index] + } else { + buckets[i] = buckets[lt.sdom[w.Index].dom.pre] + buckets[lt.sdom[w.Index].dom.pre] = w + } + } + + // The final 'Step 3' is now outside the loop. + for v := buckets[0]; v != root; v = buckets[v.dom.pre] { + v.dom.idom = root + } + + // Step 4. Explicitly define the immediate dominator of each + // node, in preorder. + for _, w := range preorder[1:] { + if w == root || w == recover { + w.dom.idom = nil + } else { + if w.dom.idom != lt.sdom[w.Index] { + w.dom.idom = w.dom.idom.dom.idom + } + // Calculate Children relation as inverse of Idom. + w.dom.idom.dom.children = append(w.dom.idom.dom.children, w) + } + } + + pre, post := numberDomTree(root, 0, 0) + if recover != nil { + numberDomTree(recover, pre, post) + } + + // printDomTreeDot(os.Stderr, f) // debugging + // printDomTreeText(os.Stderr, root, 0) // debugging + + if f.Prog.mode&SanityCheckFunctions != 0 { + sanityCheckDomTree(f) + } +} + +// numberDomTree sets the pre- and post-order numbers of a depth-first +// traversal of the dominator tree rooted at v. These are used to +// answer dominance queries in constant time. +// +func numberDomTree(v *BasicBlock, pre, post int32) (int32, int32) { + v.dom.pre = pre + pre++ + for _, child := range v.dom.children { + pre, post = numberDomTree(child, pre, post) + } + v.dom.post = post + post++ + return pre, post +} + +// Testing utilities ---------------------------------------- + +// sanityCheckDomTree checks the correctness of the dominator tree +// computed by the LT algorithm by comparing against the dominance +// relation computed by a naive Kildall-style forward dataflow +// analysis (Algorithm 10.16 from the "Dragon" book). +// +func sanityCheckDomTree(f *Function) { + n := len(f.Blocks) + + // D[i] is the set of blocks that dominate f.Blocks[i], + // represented as a bit-set of block indices. + D := make([]big.Int, n) + + one := big.NewInt(1) + + // all is the set of all blocks; constant. + var all big.Int + all.Set(one).Lsh(&all, uint(n)).Sub(&all, one) + + // Initialization. + for i, b := range f.Blocks { + if i == 0 || b == f.Recover { + // A root is dominated only by itself. + D[i].SetBit(&D[0], 0, 1) + } else { + // All other blocks are (initially) dominated + // by every block. + D[i].Set(&all) + } + } + + // Iteration until fixed point. + for changed := true; changed; { + changed = false + for i, b := range f.Blocks { + if i == 0 || b == f.Recover { + continue + } + // Compute intersection across predecessors. + var x big.Int + x.Set(&all) + for _, pred := range b.Preds { + x.And(&x, &D[pred.Index]) + } + x.SetBit(&x, i, 1) // a block always dominates itself. + if D[i].Cmp(&x) != 0 { + D[i].Set(&x) + changed = true + } + } + } + + // Check the entire relation. O(n^2). + // The Recover block (if any) must be treated specially so we skip it. + ok := true + for i := 0; i < n; i++ { + for j := 0; j < n; j++ { + b, c := f.Blocks[i], f.Blocks[j] + if c == f.Recover { + continue + } + actual := b.Dominates(c) + expected := D[j].Bit(i) == 1 + if actual != expected { + fmt.Fprintf(os.Stderr, "dominates(%s, %s)==%t, want %t\n", b, c, actual, expected) + ok = false + } + } + } + + preorder := f.DomPreorder() + for _, b := range f.Blocks { + if got := preorder[b.dom.pre]; got != b { + fmt.Fprintf(os.Stderr, "preorder[%d]==%s, want %s\n", b.dom.pre, got, b) + ok = false + } + } + + if !ok { + panic("sanityCheckDomTree failed for " + f.String()) + } + +} + +// Printing functions ---------------------------------------- + +// printDomTree prints the dominator tree as text, using indentation. +func printDomTreeText(buf *bytes.Buffer, v *BasicBlock, indent int) { + fmt.Fprintf(buf, "%*s%s\n", 4*indent, "", v) + for _, child := range v.dom.children { + printDomTreeText(buf, child, indent+1) + } +} + +// printDomTreeDot prints the dominator tree of f in AT&T GraphViz +// (.dot) format. +func printDomTreeDot(buf *bytes.Buffer, f *Function) { + fmt.Fprintln(buf, "//", f) + fmt.Fprintln(buf, "digraph domtree {") + for i, b := range f.Blocks { + v := b.dom + fmt.Fprintf(buf, "\tn%d [label=\"%s (%d, %d)\",shape=\"rectangle\"];\n", v.pre, b, v.pre, v.post) + // TODO(adonovan): improve appearance of edges + // belonging to both dominator tree and CFG. + + // Dominator tree edge. + if i != 0 { + fmt.Fprintf(buf, "\tn%d -> n%d [style=\"solid\",weight=100];\n", v.idom.dom.pre, v.pre) + } + // CFG edges. + for _, pred := range b.Preds { + fmt.Fprintf(buf, "\tn%d -> n%d [style=\"dotted\",weight=0];\n", pred.dom.pre, v.pre) + } + } + fmt.Fprintln(buf, "}") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/emit.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/emit.go new file mode 100644 index 00000000..29fcde84 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/emit.go @@ -0,0 +1,457 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// Helpers for emitting SSA instructions. + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +// emitNew emits to f a new (heap Alloc) instruction allocating an +// object of type typ. pos is the optional source location. +// +func emitNew(f *Function, typ types.Type, pos token.Pos) *Alloc { + v := &Alloc{Heap: true} + v.setType(types.NewPointer(typ)) + v.setPos(pos) + f.emit(v) + return v +} + +// emitLoad emits to f an instruction to load the address addr into a +// new temporary, and returns the value so defined. +// +func emitLoad(f *Function, addr Value) *UnOp { + v := &UnOp{Op: token.MUL, X: addr} + v.setType(deref(addr.Type())) + f.emit(v) + return v +} + +// emitDebugRef emits to f a DebugRef pseudo-instruction associating +// expression e with value v. +// +func emitDebugRef(f *Function, e ast.Expr, v Value, isAddr bool) { + if !f.debugInfo() { + return // debugging not enabled + } + if v == nil || e == nil { + panic("nil") + } + var obj types.Object + e = unparen(e) + if id, ok := e.(*ast.Ident); ok { + if isBlankIdent(id) { + return + } + obj = f.Pkg.objectOf(id) + switch obj.(type) { + case *types.Nil, *types.Const, *types.Builtin: + return + } + } + f.emit(&DebugRef{ + X: v, + Expr: e, + IsAddr: isAddr, + object: obj, + }) +} + +// emitArith emits to f code to compute the binary operation op(x, y) +// where op is an eager shift, logical or arithmetic operation. +// (Use emitCompare() for comparisons and Builder.logicalBinop() for +// non-eager operations.) +// +func emitArith(f *Function, op token.Token, x, y Value, t types.Type, pos token.Pos) Value { + switch op { + case token.SHL, token.SHR: + x = emitConv(f, x, t) + // y may be signed or an 'untyped' constant. + // TODO(adonovan): whence signed values? + if b, ok := y.Type().Underlying().(*types.Basic); ok && b.Info()&types.IsUnsigned == 0 { + y = emitConv(f, y, types.Typ[types.Uint64]) + } + + case token.ADD, token.SUB, token.MUL, token.QUO, token.REM, token.AND, token.OR, token.XOR, token.AND_NOT: + x = emitConv(f, x, t) + y = emitConv(f, y, t) + + default: + panic("illegal op in emitArith: " + op.String()) + + } + v := &BinOp{ + Op: op, + X: x, + Y: y, + } + v.setPos(pos) + v.setType(t) + return f.emit(v) +} + +// emitCompare emits to f code compute the boolean result of +// comparison comparison 'x op y'. +// +func emitCompare(f *Function, op token.Token, x, y Value, pos token.Pos) Value { + xt := x.Type().Underlying() + yt := y.Type().Underlying() + + // Special case to optimise a tagless SwitchStmt so that + // these are equivalent + // switch { case e: ...} + // switch true { case e: ... } + // if e==true { ... } + // even in the case when e's type is an interface. + // TODO(adonovan): opt: generalise to x==true, false!=y, etc. + if x == vTrue && op == token.EQL { + if yt, ok := yt.(*types.Basic); ok && yt.Info()&types.IsBoolean != 0 { + return y + } + } + + if types.Identical(xt, yt) { + // no conversion necessary + } else if _, ok := xt.(*types.Interface); ok { + y = emitConv(f, y, x.Type()) + } else if _, ok := yt.(*types.Interface); ok { + x = emitConv(f, x, y.Type()) + } else if _, ok := x.(*Const); ok { + x = emitConv(f, x, y.Type()) + } else if _, ok := y.(*Const); ok { + y = emitConv(f, y, x.Type()) + } else { + // other cases, e.g. channels. No-op. + } + + v := &BinOp{ + Op: op, + X: x, + Y: y, + } + v.setPos(pos) + v.setType(tBool) + return f.emit(v) +} + +// isValuePreserving returns true if a conversion from ut_src to +// ut_dst is value-preserving, i.e. just a change of type. +// Precondition: neither argument is a named type. +// +func isValuePreserving(ut_src, ut_dst types.Type) bool { + // Identical underlying types? + if types.Identical(ut_dst, ut_src) { + return true + } + + switch ut_dst.(type) { + case *types.Chan: + // Conversion between channel types? + _, ok := ut_src.(*types.Chan) + return ok + + case *types.Pointer: + // Conversion between pointers with identical base types? + _, ok := ut_src.(*types.Pointer) + return ok + + case *types.Signature: + // Conversion from (T) func f() method to f(T) function? + _, ok := ut_src.(*types.Signature) + return ok + } + return false +} + +// emitConv emits to f code to convert Value val to exactly type typ, +// and returns the converted value. Implicit conversions are required +// by language assignability rules in assignments, parameter passing, +// etc. Conversions cannot fail dynamically. +// +func emitConv(f *Function, val Value, typ types.Type) Value { + t_src := val.Type() + + // Identical types? Conversion is a no-op. + if types.Identical(t_src, typ) { + return val + } + + ut_dst := typ.Underlying() + ut_src := t_src.Underlying() + + // Just a change of type, but not value or representation? + if isValuePreserving(ut_src, ut_dst) { + c := &ChangeType{X: val} + c.setType(typ) + return f.emit(c) + } + + // Conversion to, or construction of a value of, an interface type? + if _, ok := ut_dst.(*types.Interface); ok { + // Assignment from one interface type to another? + if _, ok := ut_src.(*types.Interface); ok { + c := &ChangeInterface{X: val} + c.setType(typ) + return f.emit(c) + } + + // Untyped nil constant? Return interface-typed nil constant. + if ut_src == tUntypedNil { + return nilConst(typ) + } + + // Convert (non-nil) "untyped" literals to their default type. + if t, ok := ut_src.(*types.Basic); ok && t.Info()&types.IsUntyped != 0 { + val = emitConv(f, val, DefaultType(ut_src)) + } + + f.Pkg.needMethodsOf(val.Type()) + mi := &MakeInterface{X: val} + mi.setType(typ) + return f.emit(mi) + } + + // Conversion of a compile-time constant value? + if c, ok := val.(*Const); ok { + if _, ok := ut_dst.(*types.Basic); ok || c.IsNil() { + // Conversion of a compile-time constant to + // another constant type results in a new + // constant of the destination type and + // (initially) the same abstract value. + // We don't truncate the value yet. + return NewConst(c.Value, typ) + } + + // We're converting from constant to non-constant type, + // e.g. string -> []byte/[]rune. + } + + // A representation-changing conversion. + c := &Convert{X: val} + c.setType(typ) + return f.emit(c) +} + +// emitStore emits to f an instruction to store value val at location +// addr, applying implicit conversions as required by assignabilty rules. +// +func emitStore(f *Function, addr, val Value) *Store { + s := &Store{ + Addr: addr, + Val: emitConv(f, val, deref(addr.Type())), + } + f.emit(s) + return s +} + +// emitJump emits to f a jump to target, and updates the control-flow graph. +// Postcondition: f.currentBlock is nil. +// +func emitJump(f *Function, target *BasicBlock) { + b := f.currentBlock + b.emit(new(Jump)) + addEdge(b, target) + f.currentBlock = nil +} + +// emitIf emits to f a conditional jump to tblock or fblock based on +// cond, and updates the control-flow graph. +// Postcondition: f.currentBlock is nil. +// +func emitIf(f *Function, cond Value, tblock, fblock *BasicBlock) { + b := f.currentBlock + b.emit(&If{Cond: cond}) + addEdge(b, tblock) + addEdge(b, fblock) + f.currentBlock = nil +} + +// emitExtract emits to f an instruction to extract the index'th +// component of tuple. It returns the extracted value. +// +func emitExtract(f *Function, tuple Value, index int) Value { + e := &Extract{Tuple: tuple, Index: index} + e.setType(tuple.Type().(*types.Tuple).At(index).Type()) + return f.emit(e) +} + +// emitTypeAssert emits to f a type assertion value := x.(t) and +// returns the value. x.Type() must be an interface. +// +func emitTypeAssert(f *Function, x Value, t types.Type, pos token.Pos) Value { + a := &TypeAssert{X: x, AssertedType: t} + a.setPos(pos) + a.setType(t) + return f.emit(a) +} + +// emitTypeTest emits to f a type test value,ok := x.(t) and returns +// a (value, ok) tuple. x.Type() must be an interface. +// +func emitTypeTest(f *Function, x Value, t types.Type, pos token.Pos) Value { + a := &TypeAssert{ + X: x, + AssertedType: t, + CommaOk: true, + } + a.setPos(pos) + a.setType(types.NewTuple( + newVar("value", t), + varOk, + )) + return f.emit(a) +} + +// emitTailCall emits to f a function call in tail position. The +// caller is responsible for all fields of 'call' except its type. +// Intended for wrapper methods. +// Precondition: f does/will not use deferred procedure calls. +// Postcondition: f.currentBlock is nil. +// +func emitTailCall(f *Function, call *Call) { + tresults := f.Signature.Results() + nr := tresults.Len() + if nr == 1 { + call.typ = tresults.At(0).Type() + } else { + call.typ = tresults + } + tuple := f.emit(call) + var ret Return + switch nr { + case 0: + // no-op + case 1: + ret.Results = []Value{tuple} + default: + for i := 0; i < nr; i++ { + v := emitExtract(f, tuple, i) + // TODO(adonovan): in principle, this is required: + // v = emitConv(f, o.Type, f.Signature.Results[i].Type) + // but in practice emitTailCall is only used when + // the types exactly match. + ret.Results = append(ret.Results, v) + } + } + f.emit(&ret) + f.currentBlock = nil +} + +// emitImplicitSelections emits to f code to apply the sequence of +// implicit field selections specified by indices to base value v, and +// returns the selected value. +// +// If v is the address of a struct, the result will be the address of +// a field; if it is the value of a struct, the result will be the +// value of a field. +// +func emitImplicitSelections(f *Function, v Value, indices []int) Value { + for _, index := range indices { + fld := deref(v.Type()).Underlying().(*types.Struct).Field(index) + + if isPointer(v.Type()) { + instr := &FieldAddr{ + X: v, + Field: index, + } + instr.setType(types.NewPointer(fld.Type())) + v = f.emit(instr) + // Load the field's value iff indirectly embedded. + if isPointer(fld.Type()) { + v = emitLoad(f, v) + } + } else { + instr := &Field{ + X: v, + Field: index, + } + instr.setType(fld.Type()) + v = f.emit(instr) + } + } + return v +} + +// emitFieldSelection emits to f code to select the index'th field of v. +// +// If wantAddr, the input must be a pointer-to-struct and the result +// will be the field's address; otherwise the result will be the +// field's value. +// +func emitFieldSelection(f *Function, v Value, index int, wantAddr bool, pos token.Pos) Value { + fld := deref(v.Type()).Underlying().(*types.Struct).Field(index) + if isPointer(v.Type()) { + instr := &FieldAddr{ + X: v, + Field: index, + } + instr.setPos(pos) + instr.setType(types.NewPointer(fld.Type())) + v = f.emit(instr) + // Load the field's value iff we don't want its address. + if !wantAddr { + v = emitLoad(f, v) + } + } else { + instr := &Field{ + X: v, + Field: index, + } + instr.setPos(pos) + instr.setType(fld.Type()) + v = f.emit(instr) + } + return v +} + +// createRecoverBlock emits to f a block of code to return after a +// recovered panic, and sets f.Recover to it. +// +// If f's result parameters are named, the code loads and returns +// their current values, otherwise it returns the zero values of their +// type. +// +// Idempotent. +// +func createRecoverBlock(f *Function) { + if f.Recover != nil { + return // already created + } + saved := f.currentBlock + + f.Recover = f.newBasicBlock("recover") + f.currentBlock = f.Recover + + var results []Value + if f.namedResults != nil { + // Reload NRPs to form value tuple. + for _, r := range f.namedResults { + results = append(results, emitLoad(f, r)) + } + } else { + R := f.Signature.Results() + for i, n := 0, R.Len(); i < n; i++ { + T := R.At(i).Type() + var v Value + + // Return zero value of each result type. + switch T.Underlying().(type) { + case *types.Struct, *types.Array: + v = emitLoad(f, f.addLocal(T, token.NoPos)) + default: + v = zeroConst(T) + } + results = append(results, v) + } + } + f.emit(&Return{Results: results}) + + f.currentBlock = saved +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/example_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/example_test.go new file mode 100644 index 00000000..c2d3a8ff --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/example_test.go @@ -0,0 +1,110 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa_test + +import ( + "fmt" + "os" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" +) + +// This program demonstrates how to run the SSA builder on a "Hello, +// World!" program and shows the printed representation of packages, +// functions and instructions. +// +// Within the function listing, the name of each BasicBlock such as +// ".0.entry" is printed left-aligned, followed by the block's +// Instructions. +// +// For each instruction that defines an SSA virtual register +// (i.e. implements Value), the type of that value is shown in the +// right column. +// +// Build and run the ssadump.go program if you want a standalone tool +// with similar functionality. It is located at +// code.google.com/p/go.tools/cmd/ssadump. +// +func Example() { + const hello = ` +package main + +import "fmt" + +const message = "Hello, World!" + +func main() { + fmt.Println(message) +} +` + var conf loader.Config + + // Parse the input file. + file, err := conf.ParseFile("hello.go", hello) + if err != nil { + fmt.Print(err) // parse error + return + } + + // Create single-file main package. + conf.CreateFromFiles("main", file) + + // Load the main package and its dependencies. + iprog, err := conf.Load() + if err != nil { + fmt.Print(err) // type error in some package + return + } + + // Create SSA-form program representation. + prog := ssa.Create(iprog, ssa.SanityCheckFunctions) + mainPkg := prog.Package(iprog.Created[0].Pkg) + + // Print out the package. + mainPkg.WriteTo(os.Stdout) + + // Build SSA code for bodies of functions in mainPkg. + mainPkg.Build() + + // Print out the package-level functions. + mainPkg.Func("init").WriteTo(os.Stdout) + mainPkg.Func("main").WriteTo(os.Stdout) + + // Output: + // + // package main: + // func init func() + // var init$guard bool + // func main func() + // const message message = "Hello, World!":untyped string + // + // # Name: main.init + // # Package: main + // # Synthetic: package initializer + // func init(): + // .0.entry: P:0 S:2 + // t0 = *init$guard bool + // if t0 goto 2.init.done else 1.init.start + // .1.init.start: P:1 S:1 + // *init$guard = true:bool + // t1 = fmt.init() () + // jump 2.init.done + // .2.init.done: P:2 S:0 + // return + // + // # Name: main.main + // # Package: main + // # Location: hello.go:8:6 + // func main(): + // .0.entry: P:0 S:0 + // t0 = new [1]interface{} (varargs) *[1]interface{} + // t1 = &t0[0:int] *interface{} + // t2 = make interface{} <- string ("Hello, World!":string) interface{} + // *t1 = t2 + // t3 = slice t0[:] []interface{} + // t4 = fmt.Println(t3...) (n int, err error) + // return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/func.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/func.go new file mode 100644 index 00000000..d1abff97 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/func.go @@ -0,0 +1,669 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file implements the Function and BasicBlock types. + +import ( + "bytes" + "fmt" + "go/ast" + "go/token" + "io" + "os" + "strings" + + "code.google.com/p/go.tools/go/types" +) + +// addEdge adds a control-flow graph edge from from to to. +func addEdge(from, to *BasicBlock) { + from.Succs = append(from.Succs, to) + to.Preds = append(to.Preds, from) +} + +// Parent returns the function that contains block b. +func (b *BasicBlock) Parent() *Function { return b.parent } + +// String returns a human-readable label of this block. +// It is not guaranteed unique within the function. +// +func (b *BasicBlock) String() string { + return fmt.Sprintf("%d.%s", b.Index, b.Comment) +} + +// emit appends an instruction to the current basic block. +// If the instruction defines a Value, it is returned. +// +func (b *BasicBlock) emit(i Instruction) Value { + i.setBlock(b) + b.Instrs = append(b.Instrs, i) + v, _ := i.(Value) + return v +} + +// predIndex returns the i such that b.Preds[i] == c or panics if +// there is none. +func (b *BasicBlock) predIndex(c *BasicBlock) int { + for i, pred := range b.Preds { + if pred == c { + return i + } + } + panic(fmt.Sprintf("no edge %s -> %s", c, b)) +} + +// hasPhi returns true if b.Instrs contains φ-nodes. +func (b *BasicBlock) hasPhi() bool { + _, ok := b.Instrs[0].(*Phi) + return ok +} + +// phis returns the prefix of b.Instrs containing all the block's φ-nodes. +func (b *BasicBlock) phis() []Instruction { + for i, instr := range b.Instrs { + if _, ok := instr.(*Phi); !ok { + return b.Instrs[:i] + } + } + return nil // unreachable in well-formed blocks +} + +// replacePred replaces all occurrences of p in b's predecessor list with q. +// Ordinarily there should be at most one. +// +func (b *BasicBlock) replacePred(p, q *BasicBlock) { + for i, pred := range b.Preds { + if pred == p { + b.Preds[i] = q + } + } +} + +// replaceSucc replaces all occurrences of p in b's successor list with q. +// Ordinarily there should be at most one. +// +func (b *BasicBlock) replaceSucc(p, q *BasicBlock) { + for i, succ := range b.Succs { + if succ == p { + b.Succs[i] = q + } + } +} + +// removePred removes all occurrences of p in b's +// predecessor list and φ-nodes. +// Ordinarily there should be at most one. +// +func (b *BasicBlock) removePred(p *BasicBlock) { + phis := b.phis() + + // We must preserve edge order for φ-nodes. + j := 0 + for i, pred := range b.Preds { + if pred != p { + b.Preds[j] = b.Preds[i] + // Strike out φ-edge too. + for _, instr := range phis { + phi := instr.(*Phi) + phi.Edges[j] = phi.Edges[i] + } + j++ + } + } + // Nil out b.Preds[j:] and φ-edges[j:] to aid GC. + for i := j; i < len(b.Preds); i++ { + b.Preds[i] = nil + for _, instr := range phis { + instr.(*Phi).Edges[i] = nil + } + } + b.Preds = b.Preds[:j] + for _, instr := range phis { + phi := instr.(*Phi) + phi.Edges = phi.Edges[:j] + } +} + +// Destinations associated with unlabelled for/switch/select stmts. +// We push/pop one of these as we enter/leave each construct and for +// each BranchStmt we scan for the innermost target of the right type. +// +type targets struct { + tail *targets // rest of stack + _break *BasicBlock + _continue *BasicBlock + _fallthrough *BasicBlock +} + +// Destinations associated with a labelled block. +// We populate these as labels are encountered in forward gotos or +// labelled statements. +// +type lblock struct { + _goto *BasicBlock + _break *BasicBlock + _continue *BasicBlock +} + +// labelledBlock returns the branch target associated with the +// specified label, creating it if needed. +// +func (f *Function) labelledBlock(label *ast.Ident) *lblock { + lb := f.lblocks[label.Obj] + if lb == nil { + lb = &lblock{_goto: f.newBasicBlock(label.Name)} + if f.lblocks == nil { + f.lblocks = make(map[*ast.Object]*lblock) + } + f.lblocks[label.Obj] = lb + } + return lb +} + +// addParam adds a (non-escaping) parameter to f.Params of the +// specified name, type and source position. +// +func (f *Function) addParam(name string, typ types.Type, pos token.Pos) *Parameter { + v := &Parameter{ + name: name, + typ: typ, + pos: pos, + parent: f, + } + f.Params = append(f.Params, v) + return v +} + +func (f *Function) addParamObj(obj types.Object) *Parameter { + name := obj.Name() + if name == "" { + name = fmt.Sprintf("arg%d", len(f.Params)) + } + param := f.addParam(name, obj.Type(), obj.Pos()) + param.object = obj + return param +} + +// addSpilledParam declares a parameter that is pre-spilled to the +// stack; the function body will load/store the spilled location. +// Subsequent lifting will eliminate spills where possible. +// +func (f *Function) addSpilledParam(obj types.Object) { + param := f.addParamObj(obj) + spill := &Alloc{Comment: obj.Name()} + spill.setType(types.NewPointer(obj.Type())) + spill.setPos(obj.Pos()) + f.objects[obj] = spill + f.Locals = append(f.Locals, spill) + f.emit(spill) + f.emit(&Store{Addr: spill, Val: param}) +} + +// startBody initializes the function prior to generating SSA code for its body. +// Precondition: f.Type() already set. +// +func (f *Function) startBody() { + f.currentBlock = f.newBasicBlock("entry") + f.objects = make(map[types.Object]Value) // needed for some synthetics, e.g. init +} + +// createSyntacticParams populates f.Params and generates code (spills +// and named result locals) for all the parameters declared in the +// syntax. In addition it populates the f.objects mapping. +// +// Preconditions: +// f.startBody() was called. +// Postcondition: +// len(f.Params) == len(f.Signature.Params) + (f.Signature.Recv() ? 1 : 0) +// +func (f *Function) createSyntacticParams(recv *ast.FieldList, functype *ast.FuncType) { + // Receiver (at most one inner iteration). + if recv != nil { + for _, field := range recv.List { + for _, n := range field.Names { + f.addSpilledParam(f.Pkg.objectOf(n)) + } + // Anonymous receiver? No need to spill. + if field.Names == nil { + f.addParamObj(f.Signature.Recv()) + } + } + } + + // Parameters. + if functype.Params != nil { + n := len(f.Params) // 1 if has recv, 0 otherwise + for _, field := range functype.Params.List { + for _, n := range field.Names { + f.addSpilledParam(f.Pkg.objectOf(n)) + } + // Anonymous parameter? No need to spill. + if field.Names == nil { + f.addParamObj(f.Signature.Params().At(len(f.Params) - n)) + } + } + } + + // Named results. + if functype.Results != nil { + for _, field := range functype.Results.List { + // Implicit "var" decl of locals for named results. + for _, n := range field.Names { + f.namedResults = append(f.namedResults, f.addLocalForIdent(n)) + } + } + } +} + +// numberRegisters assigns numbers to all SSA registers +// (value-defining Instructions) in f, to aid debugging. +// (Non-Instruction Values are named at construction.) +// +func numberRegisters(f *Function) { + v := 0 + for _, b := range f.Blocks { + for _, instr := range b.Instrs { + switch instr.(type) { + case Value: + instr.(interface { + setNum(int) + }).setNum(v) + v++ + } + } + } +} + +// buildReferrers populates the def/use information in all non-nil +// Value.Referrers slice. +// Precondition: all such slices are initially empty. +func buildReferrers(f *Function) { + var rands []*Value + for _, b := range f.Blocks { + for _, instr := range b.Instrs { + rands = instr.Operands(rands[:0]) // recycle storage + for _, rand := range rands { + if r := *rand; r != nil { + if ref := r.Referrers(); ref != nil { + *ref = append(*ref, instr) + } + } + } + } + } +} + +// finishBody() finalizes the function after SSA code generation of its body. +func (f *Function) finishBody() { + f.objects = nil + f.currentBlock = nil + f.lblocks = nil + + // Don't pin the AST in memory (except in debug mode). + if n := f.syntax; n != nil && !f.debugInfo() { + f.syntax = extentNode{n.Pos(), n.End()} + } + + // Remove any f.Locals that are now heap-allocated. + j := 0 + for _, l := range f.Locals { + if !l.Heap { + f.Locals[j] = l + j++ + } + } + // Nil out f.Locals[j:] to aid GC. + for i := j; i < len(f.Locals); i++ { + f.Locals[i] = nil + } + f.Locals = f.Locals[:j] + + optimizeBlocks(f) + + buildReferrers(f) + + buildDomTree(f) + + if f.Prog.mode&NaiveForm == 0 { + // For debugging pre-state of lifting pass: + // numberRegisters(f) + // f.WriteTo(os.Stderr) + lift(f) + } + + f.namedResults = nil // (used by lifting) + + numberRegisters(f) + + if f.Prog.mode&LogFunctions != 0 { + f.WriteTo(os.Stderr) + } + + if f.Prog.mode&SanityCheckFunctions != 0 { + mustSanityCheck(f, nil) + } +} + +// removeNilBlocks eliminates nils from f.Blocks and updates each +// BasicBlock.Index. Use this after any pass that may delete blocks. +// +func (f *Function) removeNilBlocks() { + j := 0 + for _, b := range f.Blocks { + if b != nil { + b.Index = j + f.Blocks[j] = b + j++ + } + } + // Nil out f.Blocks[j:] to aid GC. + for i := j; i < len(f.Blocks); i++ { + f.Blocks[i] = nil + } + f.Blocks = f.Blocks[:j] +} + +// SetDebugMode sets the debug mode for package pkg. If true, all its +// functions will include full debug info. This greatly increases the +// size of the instruction stream, and causes Functions to depend upon +// the ASTs, potentially keeping them live in memory for longer. +// +func (pkg *Package) SetDebugMode(debug bool) { + // TODO(adonovan): do we want ast.File granularity? + pkg.debug = debug +} + +// debugInfo reports whether debug info is wanted for this function. +func (f *Function) debugInfo() bool { + return f.Pkg != nil && f.Pkg.debug +} + +// addNamedLocal creates a local variable, adds it to function f and +// returns it. Its name and type are taken from obj. Subsequent +// calls to f.lookup(obj) will return the same local. +// +func (f *Function) addNamedLocal(obj types.Object) *Alloc { + l := f.addLocal(obj.Type(), obj.Pos()) + l.Comment = obj.Name() + f.objects[obj] = l + return l +} + +func (f *Function) addLocalForIdent(id *ast.Ident) *Alloc { + return f.addNamedLocal(f.Pkg.objectOf(id)) +} + +// addLocal creates an anonymous local variable of type typ, adds it +// to function f and returns it. pos is the optional source location. +// +func (f *Function) addLocal(typ types.Type, pos token.Pos) *Alloc { + v := &Alloc{} + v.setType(types.NewPointer(typ)) + v.setPos(pos) + f.Locals = append(f.Locals, v) + f.emit(v) + return v +} + +// lookup returns the address of the named variable identified by obj +// that is local to function f or one of its enclosing functions. +// If escaping, the reference comes from a potentially escaping pointer +// expression and the referent must be heap-allocated. +// +func (f *Function) lookup(obj types.Object, escaping bool) Value { + if v, ok := f.objects[obj]; ok { + if alloc, ok := v.(*Alloc); ok && escaping { + alloc.Heap = true + } + return v // function-local var (address) + } + + // Definition must be in an enclosing function; + // plumb it through intervening closures. + if f.Enclosing == nil { + panic("no Value for type.Object " + obj.Name()) + } + outer := f.Enclosing.lookup(obj, true) // escaping + v := &Capture{ + name: obj.Name(), + typ: outer.Type(), + pos: outer.Pos(), + outer: outer, + parent: f, + } + f.objects[obj] = v + f.FreeVars = append(f.FreeVars, v) + return v +} + +// emit emits the specified instruction to function f, updating the +// control-flow graph if required. +// +func (f *Function) emit(instr Instruction) Value { + return f.currentBlock.emit(instr) +} + +// RelString returns the full name of this function, qualified by +// package name, receiver type, etc. +// +// The specific formatting rules are not guaranteed and may change. +// +// Examples: +// "math.IsNaN" // a package-level function +// "IsNaN" // intra-package reference to same +// "(*sync.WaitGroup).Add" // a declared method +// "(*Return).Block" // a promotion wrapper method (intra-package ref) +// "(Instruction).Block" // an interface method wrapper (intra-package ref) +// "main$1" // an anonymous function +// "init$1" // a declared init function +// "init" // the synthesized package initializer +// "bound$(*T).f" // a bound method wrapper +// +// If from==f.Pkg, suppress package qualification. +func (f *Function) RelString(from *types.Package) string { + // TODO(adonovan): expose less fragile case discrimination + // using f.method. + + // Anonymous? + if f.Enclosing != nil { + return f.name + } + + // Declared method, or promotion/indirection wrapper? + if recv := f.Signature.Recv(); recv != nil { + return fmt.Sprintf("(%s).%s", relType(recv.Type(), from), f.name) + } + + // Other synthetic wrapper? + if f.Synthetic != "" { + // Bound method wrapper? + if strings.HasPrefix(f.name, "bound$") { + return f.name + } + + // Interface method wrapper? + if strings.HasPrefix(f.Synthetic, "interface ") { + return fmt.Sprintf("(%s).%s", relType(f.Params[0].Type(), from), f.name) + } + + // "package initializer" or "loaded from GC object file": fall through. + } + + // Package-level function. + // Prefix with package name for cross-package references only. + if p := f.pkgobj(); p != from { + return fmt.Sprintf("%s.%s", p.Path(), f.name) + } + return f.name +} + +// writeSignature writes to buf the signature sig in declaration syntax. +func writeSignature(buf *bytes.Buffer, pkg *types.Package, name string, sig *types.Signature, params []*Parameter) { + buf.WriteString("func ") + if recv := sig.Recv(); recv != nil { + buf.WriteString("(") + if n := params[0].Name(); n != "" { + buf.WriteString(n) + buf.WriteString(" ") + } + buf.WriteString(relType(params[0].Type(), pkg)) + buf.WriteString(") ") + } + buf.WriteString(name) + types.WriteSignature(buf, pkg, sig) +} + +func (f *Function) pkgobj() *types.Package { + if f.Pkg != nil { + return f.Pkg.Object + } + return nil +} + +var _ io.WriterTo = (*Function)(nil) // *Function implements io.Writer + +func (f *Function) WriteTo(w io.Writer) (int64, error) { + var buf bytes.Buffer + WriteFunction(&buf, f) + n, err := w.Write(buf.Bytes()) + return int64(n), err +} + +// WriteFunction writes to buf a human-readable "disassembly" of f. +func WriteFunction(buf *bytes.Buffer, f *Function) { + fmt.Fprintf(buf, "# Name: %s\n", f.String()) + if f.Pkg != nil { + fmt.Fprintf(buf, "# Package: %s\n", f.Pkg.Object.Path()) + } + if syn := f.Synthetic; syn != "" { + fmt.Fprintln(buf, "# Synthetic:", syn) + } + if pos := f.Pos(); pos.IsValid() { + fmt.Fprintf(buf, "# Location: %s\n", f.Prog.Fset.Position(pos)) + } + + if f.Enclosing != nil { + fmt.Fprintf(buf, "# Parent: %s\n", f.Enclosing.Name()) + } + + if f.Recover != nil { + fmt.Fprintf(buf, "# Recover: %s\n", f.Recover) + } + + pkgobj := f.pkgobj() + + if f.FreeVars != nil { + buf.WriteString("# Free variables:\n") + for i, fv := range f.FreeVars { + fmt.Fprintf(buf, "# % 3d:\t%s %s\n", i, fv.Name(), relType(fv.Type(), pkgobj)) + } + } + + if len(f.Locals) > 0 { + buf.WriteString("# Locals:\n") + for i, l := range f.Locals { + fmt.Fprintf(buf, "# % 3d:\t%s %s\n", i, l.Name(), relType(deref(l.Type()), pkgobj)) + } + } + writeSignature(buf, pkgobj, f.Name(), f.Signature, f.Params) + buf.WriteString(":\n") + + if f.Blocks == nil { + buf.WriteString("\t(external)\n") + } + + // NB. column calculations are confused by non-ASCII characters. + const punchcard = 80 // for old time's sake. + for _, b := range f.Blocks { + if b == nil { + // Corrupt CFG. + fmt.Fprintf(buf, ".nil:\n") + continue + } + n, _ := fmt.Fprintf(buf, ".%s:", b) + fmt.Fprintf(buf, "%*sP:%d S:%d\n", punchcard-1-n-len("P:n S:n"), "", len(b.Preds), len(b.Succs)) + + if false { // CFG debugging + fmt.Fprintf(buf, "\t# CFG: %s --> %s --> %s\n", b.Preds, b, b.Succs) + } + for _, instr := range b.Instrs { + buf.WriteString("\t") + switch v := instr.(type) { + case Value: + l := punchcard + // Left-align the instruction. + if name := v.Name(); name != "" { + n, _ := fmt.Fprintf(buf, "%s = ", name) + l -= n + } + // TODO(adonovan): append instructions directly to w. + n, _ := buf.WriteString(instr.String()) + l -= n + // Right-align the type. + if t := v.Type(); t != nil { + fmt.Fprintf(buf, " %*s", l-10, relType(t, pkgobj)) + } + case nil: + // Be robust against bad transforms. + buf.WriteString("") + default: + buf.WriteString(instr.String()) + } + buf.WriteString("\n") + } + } + fmt.Fprintf(buf, "\n") +} + +// newBasicBlock adds to f a new basic block and returns it. It does +// not automatically become the current block for subsequent calls to emit. +// comment is an optional string for more readable debugging output. +// +func (f *Function) newBasicBlock(comment string) *BasicBlock { + b := &BasicBlock{ + Index: len(f.Blocks), + Comment: comment, + parent: f, + } + b.Succs = b.succs2[:0] + f.Blocks = append(f.Blocks, b) + return b +} + +// NewFunction returns a new synthetic Function instance with its name +// and signature fields set as specified. +// +// The caller is responsible for initializing the remaining fields of +// the function object, e.g. Pkg, Prog, Params, Blocks. +// +// It is practically impossible for clients to construct well-formed +// SSA functions/packages/programs directly, so we assume this is the +// job of the Builder alone. NewFunction exists to provide clients a +// little flexibility. For example, analysis tools may wish to +// construct fake Functions for the root of the callgraph, a fake +// "reflect" package, etc. +// +// TODO(adonovan): think harder about the API here. +// +func NewFunction(name string, sig *types.Signature, provenance string) *Function { + return &Function{name: name, Signature: sig, Synthetic: provenance} +} + +type extentNode [2]token.Pos + +func (n extentNode) Pos() token.Pos { return n[0] } +func (n extentNode) End() token.Pos { return n[1] } + +// Syntax returns an ast.Node whose Pos/End methods provide the +// lexical extent of the function if it was defined by Go source code +// (f.Synthetic==""), or nil otherwise. +// +// If f was built with debug information (see Package.SetDebugRef), +// the result is the *ast.FuncDecl or *ast.FuncLit that declared the +// function. Otherwise, it is an opaque Node providing only position +// information; this avoids pinning the AST in memory. +// +func (f *Function) Syntax() ast.Node { return f.syntax } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external.go new file mode 100644 index 00000000..0ce20478 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external.go @@ -0,0 +1,463 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +// Emulated functions that we cannot interpret because they are +// external or because they use "unsafe" or "reflect" operations. + +import ( + "math" + "os" + "runtime" + "syscall" + "time" + "unsafe" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +type externalFn func(fr *frame, args []value) value + +// TODO(adonovan): fix: reflect.Value abstracts an lvalue or an +// rvalue; Set() causes mutations that can be observed via aliases. +// We have not captured that correctly here. + +// Key strings are from Function.String(). +var externals map[string]externalFn + +func init() { + // That little dot ۰ is an Arabic zero numeral (U+06F0), categories [Nd]. + externals = map[string]externalFn{ + "(*sync.Pool).Get": ext۰sync۰Pool۰Get, + "(*sync.Pool).Put": ext۰sync۰Pool۰Put, + "(reflect.Value).Bool": ext۰reflect۰Value۰Bool, + "(reflect.Value).CanAddr": ext۰reflect۰Value۰CanAddr, + "(reflect.Value).CanInterface": ext۰reflect۰Value۰CanInterface, + "(reflect.Value).Elem": ext۰reflect۰Value۰Elem, + "(reflect.Value).Field": ext۰reflect۰Value۰Field, + "(reflect.Value).Float": ext۰reflect۰Value۰Float, + "(reflect.Value).Index": ext۰reflect۰Value۰Index, + "(reflect.Value).Int": ext۰reflect۰Value۰Int, + "(reflect.Value).Interface": ext۰reflect۰Value۰Interface, + "(reflect.Value).IsNil": ext۰reflect۰Value۰IsNil, + "(reflect.Value).IsValid": ext۰reflect۰Value۰IsValid, + "(reflect.Value).Kind": ext۰reflect۰Value۰Kind, + "(reflect.Value).Len": ext۰reflect۰Value۰Len, + "(reflect.Value).MapIndex": ext۰reflect۰Value۰MapIndex, + "(reflect.Value).MapKeys": ext۰reflect۰Value۰MapKeys, + "(reflect.Value).NumField": ext۰reflect۰Value۰NumField, + "(reflect.Value).NumMethod": ext۰reflect۰Value۰NumMethod, + "(reflect.Value).Pointer": ext۰reflect۰Value۰Pointer, + "(reflect.Value).Set": ext۰reflect۰Value۰Set, + "(reflect.Value).String": ext۰reflect۰Value۰String, + "(reflect.Value).Type": ext۰reflect۰Value۰Type, + "(reflect.Value).Uint": ext۰reflect۰Value۰Uint, + "(reflect.error).Error": ext۰reflect۰error۰Error, + "(reflect.rtype).Bits": ext۰reflect۰rtype۰Bits, + "(reflect.rtype).Elem": ext۰reflect۰rtype۰Elem, + "(reflect.rtype).Field": ext۰reflect۰rtype۰Field, + "(reflect.rtype).Kind": ext۰reflect۰rtype۰Kind, + "(reflect.rtype).NumField": ext۰reflect۰rtype۰NumField, + "(reflect.rtype).NumMethod": ext۰reflect۰rtype۰NumMethod, + "(reflect.rtype).NumOut": ext۰reflect۰rtype۰NumOut, + "(reflect.rtype).Out": ext۰reflect۰rtype۰Out, + "(reflect.rtype).Size": ext۰reflect۰rtype۰Size, + "(reflect.rtype).String": ext۰reflect۰rtype۰String, + "bytes.Equal": ext۰bytes۰Equal, + "bytes.IndexByte": ext۰bytes۰IndexByte, + "hash/crc32.haveSSE42": ext۰crc32۰haveSSE42, + "math.Abs": ext۰math۰Abs, + "math.Exp": ext۰math۰Exp, + "math.Float32bits": ext۰math۰Float32bits, + "math.Float32frombits": ext۰math۰Float32frombits, + "math.Float64bits": ext۰math۰Float64bits, + "math.Float64frombits": ext۰math۰Float64frombits, + "math.Ldexp": ext۰math۰Ldexp, + "math.Log": ext۰math۰Log, + "math.Min": ext۰math۰Min, + "reflect.New": ext۰reflect۰New, + "reflect.TypeOf": ext۰reflect۰TypeOf, + "reflect.ValueOf": ext۰reflect۰ValueOf, + "reflect.init": ext۰reflect۰Init, + "reflect.valueInterface": ext۰reflect۰valueInterface, + "runtime.Breakpoint": ext۰runtime۰Breakpoint, + "runtime.Caller": ext۰runtime۰Caller, + "runtime.Callers": ext۰runtime۰Callers, + "runtime.FuncForPC": ext۰runtime۰FuncForPC, + "runtime.GC": ext۰runtime۰GC, + "runtime.GOMAXPROCS": ext۰runtime۰GOMAXPROCS, + "runtime.Goexit": ext۰runtime۰Goexit, + "runtime.Gosched": ext۰runtime۰Gosched, + "runtime.NumCPU": ext۰runtime۰NumCPU, + "runtime.ReadMemStats": ext۰runtime۰ReadMemStats, + "runtime.SetFinalizer": ext۰runtime۰SetFinalizer, + "runtime.funcentry_go": ext۰runtime۰funcentry_go, + "runtime.funcline_go": ext۰runtime۰funcline_go, + "runtime.funcname_go": ext۰runtime۰funcname_go, + "runtime.getgoroot": ext۰runtime۰getgoroot, + "strings.IndexByte": ext۰strings۰IndexByte, + "sync.runtime_Semacquire": ext۰sync۰runtime_Semacquire, + "sync.runtime_Semrelease": ext۰sync۰runtime_Semrelease, + "sync.runtime_Syncsemcheck": ext۰sync۰runtime_Syncsemcheck, + "sync.runtime_registerPoolCleanup": ext۰sync۰runtime_registerPoolCleanup, + "sync/atomic.AddInt32": ext۰atomic۰AddInt32, + "sync/atomic.AddUint32": ext۰atomic۰AddUint32, + "sync/atomic.AddUint64": ext۰atomic۰AddUint64, + "sync/atomic.CompareAndSwapInt32": ext۰atomic۰CompareAndSwapInt32, + "sync/atomic.LoadInt32": ext۰atomic۰LoadInt32, + "sync/atomic.LoadUint32": ext۰atomic۰LoadUint32, + "sync/atomic.StoreInt32": ext۰atomic۰StoreInt32, + "sync/atomic.StoreUint32": ext۰atomic۰StoreUint32, + "syscall.Close": ext۰syscall۰Close, + "syscall.Exit": ext۰syscall۰Exit, + "syscall.Fstat": ext۰syscall۰Fstat, + "syscall.Getpid": ext۰syscall۰Getpid, + "syscall.Getwd": ext۰syscall۰Getwd, + "syscall.Kill": ext۰syscall۰Kill, + "syscall.Lstat": ext۰syscall۰Lstat, + "syscall.Open": ext۰syscall۰Open, + "syscall.ParseDirent": ext۰syscall۰ParseDirent, + "syscall.RawSyscall": ext۰syscall۰RawSyscall, + "syscall.Read": ext۰syscall۰Read, + "syscall.ReadDirent": ext۰syscall۰ReadDirent, + "syscall.Stat": ext۰syscall۰Stat, + "syscall.Write": ext۰syscall۰Write, + "time.Sleep": ext۰time۰Sleep, + "time.now": ext۰time۰now, + } +} + +// wrapError returns an interpreted 'error' interface value for err. +func wrapError(err error) value { + if err == nil { + return iface{} + } + return iface{t: errorType, v: err.Error()} +} + +func ext۰sync۰Pool۰Get(fr *frame, args []value) value { + Pool := fr.i.prog.ImportedPackage("sync").Type("Pool").Object() + _, newIndex, _ := types.LookupFieldOrMethod(Pool.Type(), Pool.Pkg(), "New") + + if New := (*args[0].(*value)).(structure)[newIndex[0]]; New != nil { + return call(fr.i, fr, 0, New, nil) + } + return nil +} + +func ext۰sync۰Pool۰Put(fr *frame, args []value) value { + return nil +} + +func ext۰bytes۰Equal(fr *frame, args []value) value { + // func Equal(a, b []byte) bool + a := args[0].([]value) + b := args[1].([]value) + if len(a) != len(b) { + return false + } + for i := range a { + if a[i] != b[i] { + return false + } + } + return true +} + +func ext۰bytes۰IndexByte(fr *frame, args []value) value { + // func IndexByte(s []byte, c byte) int + s := args[0].([]value) + c := args[1].(byte) + for i, b := range s { + if b.(byte) == c { + return i + } + } + return -1 +} + +func ext۰crc32۰haveSSE42(fr *frame, args []value) value { + return false +} + +func ext۰math۰Float64frombits(fr *frame, args []value) value { + return math.Float64frombits(args[0].(uint64)) +} + +func ext۰math۰Float64bits(fr *frame, args []value) value { + return math.Float64bits(args[0].(float64)) +} + +func ext۰math۰Float32frombits(fr *frame, args []value) value { + return math.Float32frombits(args[0].(uint32)) +} + +func ext۰math۰Abs(fr *frame, args []value) value { + return math.Abs(args[0].(float64)) +} + +func ext۰math۰Exp(fr *frame, args []value) value { + return math.Exp(args[0].(float64)) +} + +func ext۰math۰Float32bits(fr *frame, args []value) value { + return math.Float32bits(args[0].(float32)) +} + +func ext۰math۰Min(fr *frame, args []value) value { + return math.Min(args[0].(float64), args[1].(float64)) +} + +func ext۰math۰Ldexp(fr *frame, args []value) value { + return math.Ldexp(args[0].(float64), args[1].(int)) +} + +func ext۰math۰Log(fr *frame, args []value) value { + return math.Log(args[0].(float64)) +} + +func ext۰runtime۰Breakpoint(fr *frame, args []value) value { + runtime.Breakpoint() + return nil +} + +func ext۰runtime۰Caller(fr *frame, args []value) value { + // func Caller(skip int) (pc uintptr, file string, line int, ok bool) + skip := 1 + args[0].(int) + for i := 0; i < skip; i++ { + if fr != nil { + fr = fr.caller + } + } + var pc uintptr + var file string + var line int + var ok bool + if fr != nil { + fn := fr.fn + // TODO(adonovan): use pc/posn of current instruction, not start of fn. + pc = uintptr(unsafe.Pointer(fn)) + posn := fn.Prog.Fset.Position(fn.Pos()) + file = posn.Filename + line = posn.Line + ok = true + } + return tuple{pc, file, line, ok} +} + +func ext۰runtime۰Callers(fr *frame, args []value) value { + // Callers(skip int, pc []uintptr) int + skip := args[0].(int) + pc := args[1].([]value) + for i := 0; i < skip; i++ { + if fr != nil { + fr = fr.caller + } + } + i := 0 + for fr != nil { + pc[i] = uintptr(unsafe.Pointer(fr.fn)) + i++ + fr = fr.caller + } + return i +} + +func ext۰runtime۰FuncForPC(fr *frame, args []value) value { + // FuncForPC(pc uintptr) *Func + pc := args[0].(uintptr) + var fn *ssa.Function + if pc != 0 { + fn = (*ssa.Function)(unsafe.Pointer(pc)) // indeed unsafe! + } + var Func value + Func = structure{fn} // a runtime.Func + return &Func +} + +func ext۰runtime۰getgoroot(fr *frame, args []value) value { + return os.Getenv("GOROOT") +} + +func ext۰strings۰IndexByte(fr *frame, args []value) value { + // func IndexByte(s string, c byte) int + s := args[0].(string) + c := args[1].(byte) + for i := 0; i < len(s); i++ { + if s[i] == c { + return i + } + } + return -1 +} + +func ext۰sync۰runtime_Syncsemcheck(fr *frame, args []value) value { + // TODO(adonovan): fix: implement. + return nil +} + +func ext۰sync۰runtime_registerPoolCleanup(fr *frame, args []value) value { + return nil +} + +func ext۰sync۰runtime_Semacquire(fr *frame, args []value) value { + // TODO(adonovan): fix: implement. + return nil +} + +func ext۰sync۰runtime_Semrelease(fr *frame, args []value) value { + // TODO(adonovan): fix: implement. + return nil +} + +func ext۰runtime۰GOMAXPROCS(fr *frame, args []value) value { + return runtime.GOMAXPROCS(args[0].(int)) +} + +func ext۰runtime۰Goexit(fr *frame, args []value) value { + // TODO(adonovan): don't kill the interpreter's main goroutine. + runtime.Goexit() + return nil +} + +func ext۰runtime۰GC(fr *frame, args []value) value { + runtime.GC() + return nil +} + +func ext۰runtime۰Gosched(fr *frame, args []value) value { + runtime.Gosched() + return nil +} + +func ext۰runtime۰NumCPU(fr *frame, args []value) value { + return runtime.NumCPU() +} + +func ext۰runtime۰ReadMemStats(fr *frame, args []value) value { + // TODO(adonovan): populate args[0].(Struct) + return nil +} + +func ext۰atomic۰LoadUint32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + return (*args[0].(*value)).(uint32) +} + +func ext۰atomic۰StoreUint32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + *args[0].(*value) = args[1].(uint32) + return nil +} + +func ext۰atomic۰LoadInt32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + return (*args[0].(*value)).(int32) +} + +func ext۰atomic۰StoreInt32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + *args[0].(*value) = args[1].(int32) + return nil +} + +func ext۰atomic۰CompareAndSwapInt32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + p := args[0].(*value) + if (*p).(int32) == args[1].(int32) { + *p = args[2].(int32) + return true + } + return false +} + +func ext۰atomic۰AddInt32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + p := args[0].(*value) + newv := (*p).(int32) + args[1].(int32) + *p = newv + return newv +} + +func ext۰atomic۰AddUint32(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + p := args[0].(*value) + newv := (*p).(uint32) + args[1].(uint32) + *p = newv + return newv +} + +func ext۰atomic۰AddUint64(fr *frame, args []value) value { + // TODO(adonovan): fix: not atomic! + p := args[0].(*value) + newv := (*p).(uint64) + args[1].(uint64) + *p = newv + return newv +} + +func ext۰runtime۰SetFinalizer(fr *frame, args []value) value { + return nil // ignore +} + +func ext۰runtime۰funcline_go(fr *frame, args []value) value { + // func funcline_go(*Func, uintptr) (string, int) + f, _ := (*args[0].(*value)).(structure)[0].(*ssa.Function) + pc := args[1].(uintptr) + _ = pc + if f != nil { + // TODO(adonovan): use position of current instruction, not fn. + posn := f.Prog.Fset.Position(f.Pos()) + return tuple{posn.Filename, posn.Line} + } + return tuple{"", 0} +} + +func ext۰runtime۰funcname_go(fr *frame, args []value) value { + // func funcname_go(*Func) string + f, _ := (*args[0].(*value)).(structure)[0].(*ssa.Function) + if f != nil { + return f.String() + } + return "" +} + +func ext۰runtime۰funcentry_go(fr *frame, args []value) value { + // func funcentry_go(*Func) uintptr + f, _ := (*args[0].(*value)).(structure)[0].(*ssa.Function) + return uintptr(unsafe.Pointer(f)) +} + +func ext۰time۰now(fr *frame, args []value) value { + nano := time.Now().UnixNano() + return tuple{int64(nano / 1e9), int32(nano % 1e9)} +} + +func ext۰time۰Sleep(fr *frame, args []value) value { + time.Sleep(time.Duration(args[0].(int64))) + return nil +} + +func ext۰syscall۰Exit(fr *frame, args []value) value { + panic(exitPanic(args[0].(int))) +} + +func ext۰syscall۰Getwd(fr *frame, args []value) value { + s, err := syscall.Getwd() + return tuple{s, wrapError(err)} +} + +func ext۰syscall۰Getpid(fr *frame, args []value) value { + return syscall.Getpid() +} + +func valueToBytes(v value) []byte { + in := v.([]value) + b := make([]byte, len(in)) + for i := range in { + b[i] = in[i].(byte) + } + return b +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_darwin.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_darwin.go new file mode 100644 index 00000000..4974ad60 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_darwin.go @@ -0,0 +1,18 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build darwin + +package interp + +import "syscall" + +func init() { + externals["syscall.Sysctl"] = ext۰syscall۰Sysctl +} + +func ext۰syscall۰Sysctl(fr *frame, args []value) value { + r, err := syscall.Sysctl(args[0].(string)) + return tuple{r, wrapError(err)} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_freebsd.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_freebsd.go new file mode 100644 index 00000000..52033038 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_freebsd.go @@ -0,0 +1,24 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build freebsd + +package interp + +import "syscall" + +func init() { + externals["syscall.Sysctl"] = ext۰syscall۰Sysctl + externals["syscall.SysctlUint32"] = ext۰syscall۰SysctlUint32 +} + +func ext۰syscall۰Sysctl(fr *frame, args []value) value { + r, err := syscall.Sysctl(args[0].(string)) + return tuple{r, wrapError(err)} +} + +func ext۰syscall۰SysctlUint32(fr *frame, args []value) value { + r, err := syscall.SysctlUint32(args[0].(string)) + return tuple{r, wrapError(err)} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_plan9.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_plan9.go new file mode 100644 index 00000000..05d02d56 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_plan9.go @@ -0,0 +1,47 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +import "syscall" + +func ext۰syscall۰Close(fr *frame, args []value) value { + panic("syscall.Close not yet implemented") +} +func ext۰syscall۰Fstat(fr *frame, args []value) value { + panic("syscall.Fstat not yet implemented") +} +func ext۰syscall۰Kill(fr *frame, args []value) value { + panic("syscall.Kill not yet implemented") +} +func ext۰syscall۰Lstat(fr *frame, args []value) value { + panic("syscall.Lstat not yet implemented") +} +func ext۰syscall۰Open(fr *frame, args []value) value { + panic("syscall.Open not yet implemented") +} +func ext۰syscall۰ParseDirent(fr *frame, args []value) value { + panic("syscall.ParseDirent not yet implemented") +} +func ext۰syscall۰Read(fr *frame, args []value) value { + panic("syscall.Read not yet implemented") +} +func ext۰syscall۰ReadDirent(fr *frame, args []value) value { + panic("syscall.ReadDirent not yet implemented") +} +func ext۰syscall۰Stat(fr *frame, args []value) value { + panic("syscall.Stat not yet implemented") +} +func ext۰syscall۰Write(fr *frame, args []value) value { + // func Write(fd int, p []byte) (n int, err error) + n, err := write(args[0].(int), valueToBytes(args[1])) + return tuple{n, wrapError(err)} +} +func ext۰syscall۰RawSyscall(fr *frame, args []value) value { + return tuple{^uintptr(0), uintptr(0), uintptr(0)} +} + +func syswrite(fd int, b []byte) (int, error) { + return syscall.Write(fd, b) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_unix.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_unix.go new file mode 100644 index 00000000..c482eabb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_unix.go @@ -0,0 +1,132 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !windows,!plan9 + +package interp + +import "syscall" + +func fillStat(st *syscall.Stat_t, stat structure) { + stat[0] = st.Dev + stat[1] = st.Ino + stat[2] = st.Nlink + stat[3] = st.Mode + stat[4] = st.Uid + stat[5] = st.Gid + + stat[7] = st.Rdev + stat[8] = st.Size + stat[9] = st.Blksize + stat[10] = st.Blocks + // TODO(adonovan): fix: copy Timespecs. + // stat[11] = st.Atim + // stat[12] = st.Mtim + // stat[13] = st.Ctim +} + +func ext۰syscall۰Close(fr *frame, args []value) value { + // func Close(fd int) (err error) + return wrapError(syscall.Close(args[0].(int))) +} + +func ext۰syscall۰Fstat(fr *frame, args []value) value { + // func Fstat(fd int, stat *Stat_t) (err error) + fd := args[0].(int) + stat := (*args[1].(*value)).(structure) + + var st syscall.Stat_t + err := syscall.Fstat(fd, &st) + fillStat(&st, stat) + return wrapError(err) +} + +func ext۰syscall۰ReadDirent(fr *frame, args []value) value { + // func ReadDirent(fd int, buf []byte) (n int, err error) + fd := args[0].(int) + p := args[1].([]value) + b := make([]byte, len(p)) + n, err := syscall.ReadDirent(fd, b) + for i := 0; i < n; i++ { + p[i] = b[i] + } + return tuple{n, wrapError(err)} +} + +func ext۰syscall۰Kill(fr *frame, args []value) value { + // func Kill(pid int, sig Signal) (err error) + return wrapError(syscall.Kill(args[0].(int), syscall.Signal(args[1].(int)))) +} + +func ext۰syscall۰Lstat(fr *frame, args []value) value { + // func Lstat(name string, stat *Stat_t) (err error) + name := args[0].(string) + stat := (*args[1].(*value)).(structure) + + var st syscall.Stat_t + err := syscall.Lstat(name, &st) + fillStat(&st, stat) + return wrapError(err) +} + +func ext۰syscall۰Open(fr *frame, args []value) value { + // func Open(path string, mode int, perm uint32) (fd int, err error) { + path := args[0].(string) + mode := args[1].(int) + perm := args[2].(uint32) + fd, err := syscall.Open(path, mode, perm) + return tuple{fd, wrapError(err)} +} + +func ext۰syscall۰ParseDirent(fr *frame, args []value) value { + // func ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string) + max := args[1].(int) + var names []string + for _, iname := range args[2].([]value) { + names = append(names, iname.(string)) + } + consumed, count, newnames := syscall.ParseDirent(valueToBytes(args[0]), max, names) + var inewnames []value + for _, newname := range newnames { + inewnames = append(inewnames, newname) + } + return tuple{consumed, count, inewnames} +} + +func ext۰syscall۰Read(fr *frame, args []value) value { + // func Read(fd int, p []byte) (n int, err error) + fd := args[0].(int) + p := args[1].([]value) + b := make([]byte, len(p)) + n, err := syscall.Read(fd, b) + for i := 0; i < n; i++ { + p[i] = b[i] + } + return tuple{n, wrapError(err)} +} + +func ext۰syscall۰Stat(fr *frame, args []value) value { + // func Stat(name string, stat *Stat_t) (err error) + name := args[0].(string) + stat := (*args[1].(*value)).(structure) + + var st syscall.Stat_t + err := syscall.Stat(name, &st) + fillStat(&st, stat) + return wrapError(err) +} + +func ext۰syscall۰Write(fr *frame, args []value) value { + // func Write(fd int, p []byte) (n int, err error) + n, err := write(args[0].(int), valueToBytes(args[1])) + return tuple{n, wrapError(err)} +} + +func ext۰syscall۰RawSyscall(fr *frame, args []value) value { + return tuple{uintptr(0), uintptr(0), uintptr(syscall.ENOSYS)} +} + +func syswrite(fd int, b []byte) (int, error) { + return syscall.Write(fd, b) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_windows.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_windows.go new file mode 100644 index 00000000..ef28a371 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/external_windows.go @@ -0,0 +1,44 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +import "syscall" + +func ext۰syscall۰Close(fr *frame, args []value) value { + panic("syscall.Close not yet implemented") +} +func ext۰syscall۰Fstat(fr *frame, args []value) value { + panic("syscall.Fstat not yet implemented") +} +func ext۰syscall۰Kill(fr *frame, args []value) value { + panic("syscall.Kill not yet implemented") +} +func ext۰syscall۰Lstat(fr *frame, args []value) value { + panic("syscall.Lstat not yet implemented") +} +func ext۰syscall۰Open(fr *frame, args []value) value { + panic("syscall.Open not yet implemented") +} +func ext۰syscall۰ParseDirent(fr *frame, args []value) value { + panic("syscall.ParseDirent not yet implemented") +} +func ext۰syscall۰Read(fr *frame, args []value) value { + panic("syscall.Read not yet implemented") +} +func ext۰syscall۰ReadDirent(fr *frame, args []value) value { + panic("syscall.ReadDirent not yet implemented") +} +func ext۰syscall۰Stat(fr *frame, args []value) value { + panic("syscall.Stat not yet implemented") +} +func ext۰syscall۰Write(fr *frame, args []value) value { + panic("syscall.Write not yet implemented") +} +func ext۰syscall۰RawSyscall(fr *frame, args []value) value { + return tuple{uintptr(0), uintptr(0), uintptr(syscall.ENOSYS)} +} +func syswrite(fd int, b []byte) (int, error) { + panic("syswrite not yet implemented") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/interp.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/interp.go new file mode 100644 index 00000000..53acb0db --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/interp.go @@ -0,0 +1,731 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ssa/interp defines an interpreter for the SSA +// representation of Go programs. +// +// This interpreter is provided as an adjunct for testing the SSA +// construction algorithm. Its purpose is to provide a minimal +// metacircular implementation of the dynamic semantics of each SSA +// instruction. It is not, and will never be, a production-quality Go +// interpreter. +// +// The following is a partial list of Go features that are currently +// unsupported or incomplete in the interpreter. +// +// * Unsafe operations, including all uses of unsafe.Pointer, are +// impossible to support given the "boxed" value representation we +// have chosen. +// +// * The reflect package is only partially implemented. +// +// * "sync/atomic" operations are not currently atomic due to the +// "boxed" value representation: it is not possible to read, modify +// and write an interface value atomically. As a consequence, Mutexes +// are currently broken. TODO(adonovan): provide a metacircular +// implementation of Mutex avoiding the broken atomic primitives. +// +// * recover is only partially implemented. Also, the interpreter +// makes no attempt to distinguish target panics from interpreter +// crashes. +// +// * map iteration is asymptotically inefficient. +// +// * the sizes of the int, uint and uintptr types in the target +// program are assumed to be the same as those of the interpreter +// itself. +// +// * all values occupy space, even those of types defined by the spec +// to have zero size, e.g. struct{}. This can cause asymptotic +// performance degradation. +// +// * os.Exit is implemented using panic, causing deferred functions to +// run. +package interp + +import ( + "fmt" + "go/token" + "os" + "reflect" + "runtime" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +type continuation int + +const ( + kNext continuation = iota + kReturn + kJump +) + +// Mode is a bitmask of options affecting the interpreter. +type Mode uint + +const ( + DisableRecover Mode = 1 << iota // Disable recover() in target programs; show interpreter crash instead. + EnableTracing // Print a trace of all instructions as they are interpreted. +) + +type methodSet map[string]*ssa.Function + +// State shared between all interpreted goroutines. +type interpreter struct { + prog *ssa.Program // the SSA program + globals map[ssa.Value]*value // addresses of global variables (immutable) + mode Mode // interpreter options + reflectPackage *ssa.Package // the fake reflect package + errorMethods methodSet // the method set of reflect.error, which implements the error interface. + rtypeMethods methodSet // the method set of rtype, which implements the reflect.Type interface. + runtimeErrorString types.Type // the runtime.errorString type + sizes types.Sizes // the effective type-sizing function +} + +type deferred struct { + fn value + args []value + instr *ssa.Defer + tail *deferred +} + +type frame struct { + i *interpreter + caller *frame + fn *ssa.Function + block, prevBlock *ssa.BasicBlock + env map[ssa.Value]value // dynamic values of SSA variables + locals []value + defers *deferred + result value + panicking bool + panic interface{} +} + +func (fr *frame) get(key ssa.Value) value { + switch key := key.(type) { + case nil: + // Hack; simplifies handling of optional attributes + // such as ssa.Slice.{Low,High}. + return nil + case *ssa.Function, *ssa.Builtin: + return key + case *ssa.Const: + return constValue(key) + case *ssa.Global: + if r, ok := fr.i.globals[key]; ok { + return r + } + } + if r, ok := fr.env[key]; ok { + return r + } + panic(fmt.Sprintf("get: no value for %T: %v", key, key.Name())) +} + +// runDefer runs a deferred call d. +// It always returns normally, but may set or clear fr.panic. +// +func (fr *frame) runDefer(d *deferred) { + if fr.i.mode&EnableTracing != 0 { + fmt.Fprintf(os.Stderr, "%s: invoking deferred function call\n", + fr.i.prog.Fset.Position(d.instr.Pos())) + } + var ok bool + defer func() { + if !ok { + // Deferred call created a new state of panic. + fr.panicking = true + fr.panic = recover() + } + }() + call(fr.i, fr, d.instr.Pos(), d.fn, d.args) + ok = true +} + +// runDefers executes fr's deferred function calls in LIFO order. +// +// On entry, fr.panicking indicates a state of panic; if +// true, fr.panic contains the panic value. +// +// On completion, if a deferred call started a panic, or if no +// deferred call recovered from a previous state of panic, then +// runDefers itself panics after the last deferred call has run. +// +// If there was no initial state of panic, or it was recovered from, +// runDefers returns normally. +// +func (fr *frame) runDefers() { + for d := fr.defers; d != nil; d = d.tail { + fr.runDefer(d) + } + fr.defers = nil + if fr.panicking { + panic(fr.panic) // new panic, or still panicking + } +} + +// lookupMethod returns the method set for type typ, which may be one +// of the interpreter's fake types. +func lookupMethod(i *interpreter, typ types.Type, meth *types.Func) *ssa.Function { + switch typ { + case rtypeType: + return i.rtypeMethods[meth.Id()] + case errorType: + return i.errorMethods[meth.Id()] + } + return i.prog.LookupMethod(typ, meth.Pkg(), meth.Name()) +} + +// visitInstr interprets a single ssa.Instruction within the activation +// record frame. It returns a continuation value indicating where to +// read the next instruction from. +func visitInstr(fr *frame, instr ssa.Instruction) continuation { + switch instr := instr.(type) { + case *ssa.DebugRef: + // no-op + + case *ssa.UnOp: + fr.env[instr] = unop(instr, fr.get(instr.X)) + + case *ssa.BinOp: + fr.env[instr] = binop(instr.Op, instr.X.Type(), fr.get(instr.X), fr.get(instr.Y)) + + case *ssa.Call: + fn, args := prepareCall(fr, &instr.Call) + fr.env[instr] = call(fr.i, fr, instr.Pos(), fn, args) + + case *ssa.ChangeInterface: + fr.env[instr] = fr.get(instr.X) + + case *ssa.ChangeType: + fr.env[instr] = fr.get(instr.X) // (can't fail) + + case *ssa.Convert: + fr.env[instr] = conv(instr.Type(), instr.X.Type(), fr.get(instr.X)) + + case *ssa.MakeInterface: + fr.env[instr] = iface{t: instr.X.Type(), v: fr.get(instr.X)} + + case *ssa.Extract: + fr.env[instr] = fr.get(instr.Tuple).(tuple)[instr.Index] + + case *ssa.Slice: + fr.env[instr] = slice(fr.get(instr.X), fr.get(instr.Low), fr.get(instr.High), fr.get(instr.Max)) + + case *ssa.Return: + switch len(instr.Results) { + case 0: + case 1: + fr.result = fr.get(instr.Results[0]) + default: + var res []value + for _, r := range instr.Results { + res = append(res, fr.get(r)) + } + fr.result = tuple(res) + } + fr.block = nil + return kReturn + + case *ssa.RunDefers: + fr.runDefers() + + case *ssa.Panic: + panic(targetPanic{fr.get(instr.X)}) + + case *ssa.Send: + fr.get(instr.Chan).(chan value) <- copyVal(fr.get(instr.X)) + + case *ssa.Store: + *fr.get(instr.Addr).(*value) = copyVal(fr.get(instr.Val)) + + case *ssa.If: + succ := 1 + if fr.get(instr.Cond).(bool) { + succ = 0 + } + fr.prevBlock, fr.block = fr.block, fr.block.Succs[succ] + return kJump + + case *ssa.Jump: + fr.prevBlock, fr.block = fr.block, fr.block.Succs[0] + return kJump + + case *ssa.Defer: + fn, args := prepareCall(fr, &instr.Call) + fr.defers = &deferred{ + fn: fn, + args: args, + instr: instr, + tail: fr.defers, + } + + case *ssa.Go: + fn, args := prepareCall(fr, &instr.Call) + go call(fr.i, nil, instr.Pos(), fn, args) + + case *ssa.MakeChan: + fr.env[instr] = make(chan value, asInt(fr.get(instr.Size))) + + case *ssa.Alloc: + var addr *value + if instr.Heap { + // new + addr = new(value) + fr.env[instr] = addr + } else { + // local + addr = fr.env[instr].(*value) + } + *addr = zero(deref(instr.Type())) + + case *ssa.MakeSlice: + slice := make([]value, asInt(fr.get(instr.Cap))) + tElt := instr.Type().Underlying().(*types.Slice).Elem() + for i := range slice { + slice[i] = zero(tElt) + } + fr.env[instr] = slice[:asInt(fr.get(instr.Len))] + + case *ssa.MakeMap: + reserve := 0 + if instr.Reserve != nil { + reserve = asInt(fr.get(instr.Reserve)) + } + fr.env[instr] = makeMap(instr.Type().Underlying().(*types.Map).Key(), reserve) + + case *ssa.Range: + fr.env[instr] = rangeIter(fr.get(instr.X), instr.X.Type()) + + case *ssa.Next: + fr.env[instr] = fr.get(instr.Iter).(iter).next() + + case *ssa.FieldAddr: + x := fr.get(instr.X) + fr.env[instr] = &(*x.(*value)).(structure)[instr.Field] + + case *ssa.Field: + fr.env[instr] = copyVal(fr.get(instr.X).(structure)[instr.Field]) + + case *ssa.IndexAddr: + x := fr.get(instr.X) + idx := fr.get(instr.Index) + switch x := x.(type) { + case []value: + fr.env[instr] = &x[asInt(idx)] + case *value: // *array + fr.env[instr] = &(*x).(array)[asInt(idx)] + default: + panic(fmt.Sprintf("unexpected x type in IndexAddr: %T", x)) + } + + case *ssa.Index: + fr.env[instr] = copyVal(fr.get(instr.X).(array)[asInt(fr.get(instr.Index))]) + + case *ssa.Lookup: + fr.env[instr] = lookup(instr, fr.get(instr.X), fr.get(instr.Index)) + + case *ssa.MapUpdate: + m := fr.get(instr.Map) + key := fr.get(instr.Key) + v := fr.get(instr.Value) + switch m := m.(type) { + case map[value]value: + m[key] = v + case *hashmap: + m.insert(key.(hashable), v) + default: + panic(fmt.Sprintf("illegal map type: %T", m)) + } + + case *ssa.TypeAssert: + fr.env[instr] = typeAssert(fr.i, instr, fr.get(instr.X).(iface)) + + case *ssa.MakeClosure: + var bindings []value + for _, binding := range instr.Bindings { + bindings = append(bindings, fr.get(binding)) + } + fr.env[instr] = &closure{instr.Fn.(*ssa.Function), bindings} + + case *ssa.Phi: + for i, pred := range instr.Block().Preds { + if fr.prevBlock == pred { + fr.env[instr] = fr.get(instr.Edges[i]) + break + } + } + + case *ssa.Select: + var cases []reflect.SelectCase + if !instr.Blocking { + cases = append(cases, reflect.SelectCase{ + Dir: reflect.SelectDefault, + }) + } + for _, state := range instr.States { + var dir reflect.SelectDir + if state.Dir == types.RecvOnly { + dir = reflect.SelectRecv + } else { + dir = reflect.SelectSend + } + var send reflect.Value + if state.Send != nil { + send = reflect.ValueOf(fr.get(state.Send)) + } + cases = append(cases, reflect.SelectCase{ + Dir: dir, + Chan: reflect.ValueOf(fr.get(state.Chan)), + Send: send, + }) + } + chosen, recv, recvOk := reflect.Select(cases) + if !instr.Blocking { + chosen-- // default case should have index -1. + } + r := tuple{chosen, recvOk} + for i, st := range instr.States { + if st.Dir == types.RecvOnly { + var v value + if i == chosen && recvOk { + // No need to copy since send makes an unaliased copy. + v = recv.Interface().(value) + } else { + v = zero(st.Chan.Type().Underlying().(*types.Chan).Elem()) + } + r = append(r, v) + } + } + fr.env[instr] = r + + default: + panic(fmt.Sprintf("unexpected instruction: %T", instr)) + } + + // if val, ok := instr.(ssa.Value); ok { + // fmt.Println(toString(fr.env[val])) // debugging + // } + + return kNext +} + +// prepareCall determines the function value and argument values for a +// function call in a Call, Go or Defer instruction, performing +// interface method lookup if needed. +// +func prepareCall(fr *frame, call *ssa.CallCommon) (fn value, args []value) { + v := fr.get(call.Value) + if call.Method == nil { + // Function call. + fn = v + } else { + // Interface method invocation. + recv := v.(iface) + if recv.t == nil { + panic("method invoked on nil interface") + } + if f := lookupMethod(fr.i, recv.t, call.Method); f == nil { + // Unreachable in well-typed programs. + panic(fmt.Sprintf("method set for dynamic type %v does not contain %s", recv.t, call.Method)) + } else { + fn = f + } + args = append(args, copyVal(recv.v)) + } + for _, arg := range call.Args { + args = append(args, fr.get(arg)) + } + return +} + +// call interprets a call to a function (function, builtin or closure) +// fn with arguments args, returning its result. +// callpos is the position of the callsite. +// +func call(i *interpreter, caller *frame, callpos token.Pos, fn value, args []value) value { + switch fn := fn.(type) { + case *ssa.Function: + if fn == nil { + panic("call of nil function") // nil of func type + } + return callSSA(i, caller, callpos, fn, args, nil) + case *closure: + return callSSA(i, caller, callpos, fn.Fn, args, fn.Env) + case *ssa.Builtin: + return callBuiltin(caller, callpos, fn, args) + } + panic(fmt.Sprintf("cannot call %T", fn)) +} + +func loc(fset *token.FileSet, pos token.Pos) string { + if pos == token.NoPos { + return "" + } + return " at " + fset.Position(pos).String() +} + +// callSSA interprets a call to function fn with arguments args, +// and lexical environment env, returning its result. +// callpos is the position of the callsite. +// +func callSSA(i *interpreter, caller *frame, callpos token.Pos, fn *ssa.Function, args []value, env []value) value { + if i.mode&EnableTracing != 0 { + fset := fn.Prog.Fset + // TODO(adonovan): fix: loc() lies for external functions. + fmt.Fprintf(os.Stderr, "Entering %s%s.\n", fn, loc(fset, fn.Pos())) + suffix := "" + if caller != nil { + suffix = ", resuming " + caller.fn.String() + loc(fset, callpos) + } + defer fmt.Fprintf(os.Stderr, "Leaving %s%s.\n", fn, suffix) + } + fr := &frame{ + i: i, + caller: caller, // for panic/recover + fn: fn, + } + if fn.Enclosing == nil { + name := fn.String() + if ext := externals[name]; ext != nil { + if i.mode&EnableTracing != 0 { + fmt.Fprintln(os.Stderr, "\t(external)") + } + return ext(fr, args) + } + if fn.Blocks == nil { + panic("no code for function: " + name) + } + } + fr.env = make(map[ssa.Value]value) + fr.block = fn.Blocks[0] + fr.locals = make([]value, len(fn.Locals)) + for i, l := range fn.Locals { + fr.locals[i] = zero(deref(l.Type())) + fr.env[l] = &fr.locals[i] + } + for i, p := range fn.Params { + fr.env[p] = args[i] + } + for i, fv := range fn.FreeVars { + fr.env[fv] = env[i] + } + for fr.block != nil { + runFrame(fr) + } + // Destroy the locals to avoid accidental use after return. + for i := range fn.Locals { + fr.locals[i] = bad{} + } + return fr.result +} + +// runFrame executes SSA instructions starting at fr.block and +// continuing until a return, a panic, or a recovered panic. +// +// After a panic, runFrame panics. +// +// After a normal return, fr.result contains the result of the call +// and fr.block is nil. +// +// A recovered panic in a function without named return parameters +// (NRPs) becomes a normal return of the zero value of the function's +// result type. +// +// After a recovered panic in a function with NRPs, fr.result is +// undefined and fr.block contains the block at which to resume +// control. +// +func runFrame(fr *frame) { + defer func() { + if fr.block == nil { + return // normal return + } + if fr.i.mode&DisableRecover != 0 { + return // let interpreter crash + } + fr.panicking = true + fr.panic = recover() + if fr.i.mode&EnableTracing != 0 { + fmt.Fprintf(os.Stderr, "Panicking: %T %v.\n", fr.panic, fr.panic) + } + fr.runDefers() + fr.block = fr.fn.Recover + if fr.block == nil { + fr.result = zero(fr.fn.Signature.Results()) + } + }() + + for { + if fr.i.mode&EnableTracing != 0 { + fmt.Fprintf(os.Stderr, ".%s:\n", fr.block) + } + block: + for _, instr := range fr.block.Instrs { + if fr.i.mode&EnableTracing != 0 { + if v, ok := instr.(ssa.Value); ok { + fmt.Fprintln(os.Stderr, "\t", v.Name(), "=", instr) + } else { + fmt.Fprintln(os.Stderr, "\t", instr) + } + } + switch visitInstr(fr, instr) { + case kReturn: + return + case kNext: + // no-op + case kJump: + break block + } + } + } +} + +// doRecover implements the recover() built-in. +func doRecover(caller *frame) value { + // recover() must be exactly one level beneath the deferred + // function (two levels beneath the panicking function) to + // have any effect. Thus we ignore both "defer recover()" and + // "defer f() -> g() -> recover()". + if caller.i.mode&DisableRecover == 0 && + caller != nil && !caller.panicking && + caller.caller != nil && caller.caller.panicking { + caller.caller.panicking = false + p := caller.caller.panic + caller.caller.panic = nil + switch p := p.(type) { + case targetPanic: + // The target program explicitly called panic(). + return p.v + case runtime.Error: + // The interpreter encountered a runtime error. + return iface{caller.i.runtimeErrorString, p.Error()} + case string: + // The interpreter explicitly called panic(). + return iface{caller.i.runtimeErrorString, p} + default: + panic(fmt.Sprintf("unexpected panic type %T in target call to recover()", p)) + } + } + return iface{} +} + +// setGlobal sets the value of a system-initialized global variable. +func setGlobal(i *interpreter, pkg *ssa.Package, name string, v value) { + if g, ok := i.globals[pkg.Var(name)]; ok { + *g = v + return + } + panic("no global variable: " + pkg.Object.Path() + "." + name) +} + +// Interpret interprets the Go program whose main package is mainpkg. +// mode specifies various interpreter options. filename and args are +// the initial values of os.Args for the target program. sizes is the +// effective type-sizing function for this program. +// +// Interpret returns the exit code of the program: 2 for panic (like +// gc does), or the argument to os.Exit for normal termination. +// +// The SSA program must include the "runtime" package. +// +func Interpret(mainpkg *ssa.Package, mode Mode, sizes types.Sizes, filename string, args []string) (exitCode int) { + i := &interpreter{ + prog: mainpkg.Prog, + globals: make(map[ssa.Value]*value), + mode: mode, + sizes: sizes, + } + runtimePkg := i.prog.ImportedPackage("runtime") + if runtimePkg == nil { + panic("ssa.Program doesn't include runtime package") + } + i.runtimeErrorString = runtimePkg.Type("errorString").Object().Type() + + initReflect(i) + + for _, pkg := range i.prog.AllPackages() { + // Initialize global storage. + for _, m := range pkg.Members { + switch v := m.(type) { + case *ssa.Global: + cell := zero(deref(v.Type())) + i.globals[v] = &cell + } + } + + // Ad-hoc initialization for magic system variables. + switch pkg.Object.Path() { + case "syscall": + var envs []value + for _, s := range os.Environ() { + envs = append(envs, s) + } + envs = append(envs, "GOSSAINTERP=1") + envs = append(envs, "GOARCH="+runtime.GOARCH) + setGlobal(i, pkg, "envs", envs) + + case "runtime": + sz := sizes.Sizeof(pkg.Object.Scope().Lookup("MemStats").Type()) + setGlobal(i, pkg, "sizeof_C_MStats", uintptr(sz)) + + case "os": + Args := []value{filename} + for _, s := range args { + Args = append(Args, s) + } + setGlobal(i, pkg, "Args", Args) + } + } + + // Top-level error handler. + exitCode = 2 + defer func() { + if exitCode != 2 || i.mode&DisableRecover != 0 { + return + } + switch p := recover().(type) { + case exitPanic: + exitCode = int(p) + return + case targetPanic: + fmt.Fprintln(os.Stderr, "panic:", toString(p.v)) + case runtime.Error: + fmt.Fprintln(os.Stderr, "panic:", p.Error()) + case string: + fmt.Fprintln(os.Stderr, "panic:", p) + default: + fmt.Fprintf(os.Stderr, "panic: unexpected type: %T\n", p) + } + + // TODO(adonovan): dump panicking interpreter goroutine? + // buf := make([]byte, 0x10000) + // runtime.Stack(buf, false) + // fmt.Fprintln(os.Stderr, string(buf)) + // (Or dump panicking target goroutine?) + }() + + // Run! + call(i, nil, token.NoPos, mainpkg.Func("init"), nil) + if mainFn := mainpkg.Func("main"); mainFn != nil { + call(i, nil, token.NoPos, mainFn, nil) + exitCode = 0 + } else { + fmt.Fprintln(os.Stderr, "No main function.") + exitCode = 1 + } + return +} + +// deref returns a pointer's element type; otherwise it returns typ. +// TODO(adonovan): Import from ssa? +func deref(typ types.Type) types.Type { + if p, ok := typ.Underlying().(*types.Pointer); ok { + return p.Elem() + } + return typ +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/interp_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/interp_test.go new file mode 100644 index 00000000..23d64245 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/interp_test.go @@ -0,0 +1,358 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !windows,!plan9 + +package interp_test + +import ( + "bytes" + "fmt" + "go/build" + "os" + "path/filepath" + "strings" + "testing" + "time" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/interp" + "code.google.com/p/go.tools/go/types" +) + +// Each line contains a space-separated list of $GOROOT/test/ +// filenames comprising the main package of a program. +// They are ordered quickest-first, roughly. +// +// TODO(adonovan): integrate into the $GOROOT/test driver scripts, +// golden file checking, etc. +var gorootTestTests = []string{ + "235.go", + "alias1.go", + "chancap.go", + "func5.go", + "func6.go", + "func7.go", + "func8.go", + "helloworld.go", + "varinit.go", + "escape3.go", + "initcomma.go", + "cmp.go", + "compos.go", + "turing.go", + "indirect.go", + "complit.go", + "for.go", + "struct0.go", + "intcvt.go", + "printbig.go", + "deferprint.go", + "escape.go", + "range.go", + "const4.go", + "float_lit.go", + "bigalg.go", + "decl.go", + "if.go", + "named.go", + "bigmap.go", + "func.go", + "reorder2.go", + "closure.go", + "gc.go", + "simassign.go", + "iota.go", + "nilptr2.go", + "goprint.go", // doesn't actually assert anything (cmpout) + "utf.go", + "method.go", + "char_lit.go", + "env.go", + "int_lit.go", + "string_lit.go", + "defer.go", + "typeswitch.go", + "stringrange.go", + "reorder.go", + "method3.go", + "literal.go", + "nul1.go", // doesn't actually assert anything (errorcheckoutput) + "zerodivide.go", + "convert.go", + "convT2X.go", + "switch.go", + "initialize.go", + "ddd.go", + "blank.go", // partly disabled + "map.go", + "closedchan.go", + "divide.go", + "rename.go", + "const3.go", + "nil.go", + "recover.go", // reflection parts disabled + "recover1.go", + "recover2.go", + "recover3.go", + "typeswitch1.go", + "floatcmp.go", + "crlf.go", // doesn't actually assert anything (runoutput) + // Slow tests follow. + "bom.go", // ~1.7s + "gc1.go", // ~1.7s + "cmplxdivide.go cmplxdivide1.go", // ~2.4s + + // Working, but not worth enabling: + // "append.go", // works, but slow (15s). + // "gc2.go", // works, but slow, and cheats on the memory check. + // "sigchld.go", // works, but only on POSIX. + // "peano.go", // works only up to n=9, and slow even then. + // "stack.go", // works, but too slow (~30s) by default. + // "solitaire.go", // works, but too slow (~30s). + // "const.go", // works but for but one bug: constant folder doesn't consider representations. + // "init1.go", // too slow (80s) and not that interesting. Cheats on ReadMemStats check too. + // "rotate.go rotate0.go", // emits source for a test + // "rotate.go rotate1.go", // emits source for a test + // "rotate.go rotate2.go", // emits source for a test + // "rotate.go rotate3.go", // emits source for a test + // "64bit.go", // emits source for a test + // "run.go", // test driver, not a test. + + // Broken. TODO(adonovan): fix. + // copy.go // very slow; but with N=4 quickly crashes, slice index out of range. + // nilptr.go // interp: V > uintptr not implemented. Slow test, lots of mem + // args.go // works, but requires specific os.Args from the driver. + // index.go // a template, not a real test. + // mallocfin.go // SetFinalizer not implemented. + + // TODO(adonovan): add tests from $GOROOT/test/* subtrees: + // bench chan bugs fixedbugs interface ken. +} + +// These are files in go.tools/go/ssa/interp/testdata/. +var testdataTests = []string{ + "boundmeth.go", + "coverage.go", + "fieldprom.go", + "ifaceconv.go", + "ifaceprom.go", + "initorder.go", + "methprom.go", + "mrvchain.go", + "recover.go", + "callstack.go", +} + +// These are files and packages in $GOROOT/src/pkg/. +var gorootSrcPkgTests = []string{ + "encoding/ascii85", + "encoding/csv", + "encoding/hex", + "encoding/pem", + "hash/crc32", + // "testing", // TODO(adonovan): implement runtime.Goexit correctly + "text/scanner", + "unicode", + + // Too slow: + // "container/ring", + // "hash/adler32", + + // TODO(adonovan): packages with Examples require os.Pipe (unimplemented): + // "unicode/utf8", + // "log", + // "path", + // "flag", +} + +type successPredicate func(exitcode int, output string) error + +func run(t *testing.T, dir, input string, success successPredicate) bool { + fmt.Printf("Input: %s\n", input) + + start := time.Now() + + var inputs []string + for _, i := range strings.Split(input, " ") { + if strings.HasSuffix(i, ".go") { + i = dir + i + } + inputs = append(inputs, i) + } + + conf := loader.Config{SourceImports: true} + if _, err := conf.FromArgs(inputs, true); err != nil { + t.Errorf("FromArgs(%s) failed: %s", inputs, err) + return false + } + + conf.Import("runtime") + + // Print a helpful hint if we don't make it to the end. + var hint string + defer func() { + if hint != "" { + fmt.Println("FAIL") + fmt.Println(hint) + } else { + fmt.Println("PASS") + } + + interp.CapturedOutput = nil + }() + + hint = fmt.Sprintf("To dump SSA representation, run:\n%% go build code.google.com/p/go.tools/cmd/ssadump && ./ssadump -build=CFP %s\n", input) + + iprog, err := conf.Load() + if err != nil { + t.Errorf("conf.Load(%s) failed: %s", inputs, err) + return false + } + + prog := ssa.Create(iprog, ssa.SanityCheckFunctions) + prog.BuildAll() + + var mainPkg *ssa.Package + var initialPkgs []*ssa.Package + for _, info := range iprog.InitialPackages() { + p := prog.Package(info.Pkg) + initialPkgs = append(initialPkgs, p) + if mainPkg == nil && p.Func("main") != nil { + mainPkg = p + } + } + if mainPkg == nil { + testmainPkg := prog.CreateTestMainPackage(initialPkgs...) + if testmainPkg == nil { + t.Errorf("CreateTestMainPackage(%s) returned nil", mainPkg) + return false + } + if testmainPkg.Func("main") == nil { + t.Errorf("synthetic testmain package has no main") + return false + } + mainPkg = testmainPkg + } + + var out bytes.Buffer + interp.CapturedOutput = &out + + hint = fmt.Sprintf("To trace execution, run:\n%% go build code.google.com/p/go.tools/cmd/ssadump && ./ssadump -build=C -run --interp=T %s\n", input) + exitCode := interp.Interpret(mainPkg, 0, &types.StdSizes{8, 8}, inputs[0], []string{}) + + // The definition of success varies with each file. + if err := success(exitCode, out.String()); err != nil { + t.Errorf("interp.Interpret(%s) failed: %s", inputs, err) + return false + } + + hint = "" // call off the hounds + + if false { + fmt.Println(input, time.Since(start)) // test profiling + } + + return true +} + +const slash = string(os.PathSeparator) + +func printFailures(failures []string) { + if failures != nil { + fmt.Println("The following tests failed:") + for _, f := range failures { + fmt.Printf("\t%s\n", f) + } + } +} + +// The "normal" success predicate. +func exitsZero(exitcode int, _ string) error { + if exitcode != 0 { + return fmt.Errorf("exit code was %d", exitcode) + } + return nil +} + +// TestTestdataFiles runs the interpreter on testdata/*.go. +func TestTestdataFiles(t *testing.T) { + var failures []string + for _, input := range testdataTests { + if !run(t, "testdata"+slash, input, exitsZero) { + failures = append(failures, input) + } + } + printFailures(failures) +} + +// TestGorootTest runs the interpreter on $GOROOT/test/*.go. +func TestGorootTest(t *testing.T) { + if testing.Short() { + return // too slow (~30s) + } + + var failures []string + + // $GOROOT/tests are also considered a failure if they print "BUG". + success := func(exitcode int, output string) error { + if exitcode != 0 { + return fmt.Errorf("exit code was %d", exitcode) + } + if strings.Contains(output, "BUG") { + return fmt.Errorf("exited zero but output contained 'BUG'") + } + return nil + } + for _, input := range gorootTestTests { + if !run(t, filepath.Join(build.Default.GOROOT, "test")+slash, input, success) { + failures = append(failures, input) + } + } + for _, input := range gorootSrcPkgTests { + if !run(t, filepath.Join(build.Default.GOROOT, "src/pkg")+slash, input, success) { + failures = append(failures, input) + } + } + printFailures(failures) +} + +// TestTestmainPackage runs the interpreter on a synthetic "testmain" package. +func TestTestmainPackage(t *testing.T) { + success := func(exitcode int, output string) error { + if exitcode == 0 { + return fmt.Errorf("unexpected success") + } + if !strings.Contains(output, "FAIL: TestFoo") { + return fmt.Errorf("missing failure log for TestFoo") + } + if !strings.Contains(output, "FAIL: TestBar") { + return fmt.Errorf("missing failure log for TestBar") + } + // TODO(adonovan): test benchmarks too + return nil + } + run(t, "testdata"+slash, "a_test.go", success) +} + +// CreateTestMainPackage should return nil if there were no tests. +func TestNullTestmainPackage(t *testing.T) { + var conf loader.Config + if err := conf.CreateFromFilenames("", "testdata/b_test.go"); err != nil { + t.Fatalf("ParseFile failed: %s", err) + } + iprog, err := conf.Load() + if err != nil { + t.Fatalf("CreatePackages failed: %s", err) + } + prog := ssa.Create(iprog, ssa.SanityCheckFunctions) + mainPkg := prog.Package(iprog.Created[0].Pkg) + if mainPkg.Func("main") != nil { + t.Fatalf("unexpected main function") + } + if prog.CreateTestMainPackage(mainPkg) != nil { + t.Fatalf("CreateTestMainPackage returned non-nil") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/map.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/map.go new file mode 100644 index 00000000..5e93e7f7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/map.go @@ -0,0 +1,113 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +// Custom hashtable atop map. +// For use when the key's equivalence relation is not consistent with ==. + +// The Go specification doesn't address the atomicity of map operations. +// The FAQ states that an implementation is permitted to crash on +// concurrent map access. + +import ( + "code.google.com/p/go.tools/go/types" +) + +type hashable interface { + hash(t types.Type) int + eq(t types.Type, x interface{}) bool +} + +type entry struct { + key hashable + value value + next *entry +} + +// A hashtable atop the built-in map. Since each bucket contains +// exactly one hash value, there's no need to perform hash-equality +// tests when walking the linked list. Rehashing is done by the +// underlying map. +type hashmap struct { + keyType types.Type + table map[int]*entry + length int // number of entries in map +} + +// makeMap returns an empty initialized map of key type kt, +// preallocating space for reserve elements. +func makeMap(kt types.Type, reserve int) value { + if usesBuiltinMap(kt) { + return make(map[value]value, reserve) + } + return &hashmap{keyType: kt, table: make(map[int]*entry, reserve)} +} + +// delete removes the association for key k, if any. +func (m *hashmap) delete(k hashable) { + if m != nil { + hash := k.hash(m.keyType) + head := m.table[hash] + if head != nil { + if k.eq(m.keyType, head.key) { + m.table[hash] = head.next + m.length-- + return + } + prev := head + for e := head.next; e != nil; e = e.next { + if k.eq(m.keyType, e.key) { + prev.next = e.next + m.length-- + return + } + prev = e + } + } + } +} + +// lookup returns the value associated with key k, if present, or +// value(nil) otherwise. +func (m *hashmap) lookup(k hashable) value { + if m != nil { + hash := k.hash(m.keyType) + for e := m.table[hash]; e != nil; e = e.next { + if k.eq(m.keyType, e.key) { + return e.value + } + } + } + return nil +} + +// insert updates the map to associate key k with value v. If there +// was already an association for an eq() (though not necessarily ==) +// k, the previous key remains in the map and its associated value is +// updated. +func (m *hashmap) insert(k hashable, v value) { + hash := k.hash(m.keyType) + head := m.table[hash] + for e := head; e != nil; e = e.next { + if k.eq(m.keyType, e.key) { + e.value = v + return + } + } + m.table[hash] = &entry{ + key: k, + value: v, + next: head, + } + m.length++ +} + +// len returns the number of key/value associations in the map. +func (m *hashmap) len() int { + if m != nil { + return m.length + } + return 0 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/ops.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/ops.go new file mode 100644 index 00000000..5452285a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/ops.go @@ -0,0 +1,1384 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +import ( + "bytes" + "fmt" + "go/token" + "strings" + "sync" + "unsafe" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +// If the target program panics, the interpreter panics with this type. +type targetPanic struct { + v value +} + +func (p targetPanic) String() string { + return toString(p.v) +} + +// If the target program calls exit, the interpreter panics with this type. +type exitPanic int + +// constValue returns the value of the constant with the +// dynamic type tag appropriate for c.Type(). +func constValue(c *ssa.Const) value { + if c.IsNil() { + return zero(c.Type()) // typed nil + } + + if t, ok := c.Type().Underlying().(*types.Basic); ok { + // TODO(adonovan): eliminate untyped constants from SSA form. + switch t.Kind() { + case types.Bool, types.UntypedBool: + return exact.BoolVal(c.Value) + case types.Int, types.UntypedInt: + // Assume sizeof(int) is same on host and target. + return int(c.Int64()) + case types.Int8: + return int8(c.Int64()) + case types.Int16: + return int16(c.Int64()) + case types.Int32, types.UntypedRune: + return int32(c.Int64()) + case types.Int64: + return c.Int64() + case types.Uint: + // Assume sizeof(uint) is same on host and target. + return uint(c.Uint64()) + case types.Uint8: + return uint8(c.Uint64()) + case types.Uint16: + return uint16(c.Uint64()) + case types.Uint32: + return uint32(c.Uint64()) + case types.Uint64: + return c.Uint64() + case types.Uintptr: + // Assume sizeof(uintptr) is same on host and target. + return uintptr(c.Uint64()) + case types.Float32: + return float32(c.Float64()) + case types.Float64, types.UntypedFloat: + return c.Float64() + case types.Complex64: + return complex64(c.Complex128()) + case types.Complex128, types.UntypedComplex: + return c.Complex128() + case types.String, types.UntypedString: + if c.Value.Kind() == exact.String { + return exact.StringVal(c.Value) + } + return string(rune(c.Int64())) + } + } + + panic(fmt.Sprintf("constValue: %s", c)) +} + +// asInt converts x, which must be an integer, to an int suitable for +// use as a slice or array index or operand to make(). +func asInt(x value) int { + switch x := x.(type) { + case int: + return x + case int8: + return int(x) + case int16: + return int(x) + case int32: + return int(x) + case int64: + return int(x) + case uint: + return int(x) + case uint8: + return int(x) + case uint16: + return int(x) + case uint32: + return int(x) + case uint64: + return int(x) + case uintptr: + return int(x) + } + panic(fmt.Sprintf("cannot convert %T to int", x)) +} + +// asUint64 converts x, which must be an unsigned integer, to a uint64 +// suitable for use as a bitwise shift count. +func asUint64(x value) uint64 { + switch x := x.(type) { + case uint: + return uint64(x) + case uint8: + return uint64(x) + case uint16: + return uint64(x) + case uint32: + return uint64(x) + case uint64: + return x + case uintptr: + return uint64(x) + } + panic(fmt.Sprintf("cannot convert %T to uint64", x)) +} + +// zero returns a new "zero" value of the specified type. +func zero(t types.Type) value { + switch t := t.(type) { + case *types.Basic: + if t.Kind() == types.UntypedNil { + panic("untyped nil has no zero value") + } + if t.Info()&types.IsUntyped != 0 { + // TODO(adonovan): make it an invariant that + // this is unreachable. Currently some + // constants have 'untyped' types when they + // should be defaulted by the typechecker. + t = ssa.DefaultType(t).(*types.Basic) + } + switch t.Kind() { + case types.Bool: + return false + case types.Int: + return int(0) + case types.Int8: + return int8(0) + case types.Int16: + return int16(0) + case types.Int32: + return int32(0) + case types.Int64: + return int64(0) + case types.Uint: + return uint(0) + case types.Uint8: + return uint8(0) + case types.Uint16: + return uint16(0) + case types.Uint32: + return uint32(0) + case types.Uint64: + return uint64(0) + case types.Uintptr: + return uintptr(0) + case types.Float32: + return float32(0) + case types.Float64: + return float64(0) + case types.Complex64: + return complex64(0) + case types.Complex128: + return complex128(0) + case types.String: + return "" + case types.UnsafePointer: + return unsafe.Pointer(nil) + default: + panic(fmt.Sprint("zero for unexpected type:", t)) + } + case *types.Pointer: + return (*value)(nil) + case *types.Array: + a := make(array, t.Len()) + for i := range a { + a[i] = zero(t.Elem()) + } + return a + case *types.Named: + return zero(t.Underlying()) + case *types.Interface: + return iface{} // nil type, methodset and value + case *types.Slice: + return []value(nil) + case *types.Struct: + s := make(structure, t.NumFields()) + for i := range s { + s[i] = zero(t.Field(i).Type()) + } + return s + case *types.Tuple: + if t.Len() == 1 { + return zero(t.At(0).Type()) + } + s := make(tuple, t.Len()) + for i := range s { + s[i] = zero(t.At(i).Type()) + } + return s + case *types.Chan: + return chan value(nil) + case *types.Map: + if usesBuiltinMap(t.Key()) { + return map[value]value(nil) + } + return (*hashmap)(nil) + case *types.Signature: + return (*ssa.Function)(nil) + } + panic(fmt.Sprint("zero: unexpected ", t)) +} + +// slice returns x[lo:hi:max]. Any of lo, hi and max may be nil. +func slice(x, lo, hi, max value) value { + var Len, Cap int + switch x := x.(type) { + case string: + Len = len(x) + case []value: + Len = len(x) + Cap = cap(x) + case *value: // *array + a := (*x).(array) + Len = len(a) + Cap = cap(a) + } + + l := 0 + if lo != nil { + l = asInt(lo) + } + + h := Len + if hi != nil { + h = asInt(hi) + } + + m := Cap + if max != nil { + m = asInt(max) + } + + switch x := x.(type) { + case string: + return x[l:h] + case []value: + return x[l:h:m] + case *value: // *array + a := (*x).(array) + return []value(a)[l:h:m] + } + panic(fmt.Sprintf("slice: unexpected X type: %T", x)) +} + +// lookup returns x[idx] where x is a map or string. +func lookup(instr *ssa.Lookup, x, idx value) value { + switch x := x.(type) { // map or string + case map[value]value, *hashmap: + var v value + var ok bool + switch x := x.(type) { + case map[value]value: + v, ok = x[idx] + case *hashmap: + v = x.lookup(idx.(hashable)) + ok = v != nil + } + if ok { + v = copyVal(v) + } else { + v = zero(instr.X.Type().Underlying().(*types.Map).Elem()) + } + if instr.CommaOk { + v = tuple{v, ok} + } + return v + case string: + return x[asInt(idx)] + } + panic(fmt.Sprintf("unexpected x type in Lookup: %T", x)) +} + +// binop implements all arithmetic and logical binary operators for +// numeric datatypes and strings. Both operands must have identical +// dynamic type. +// +func binop(op token.Token, t types.Type, x, y value) value { + switch op { + case token.ADD: + switch x.(type) { + case int: + return x.(int) + y.(int) + case int8: + return x.(int8) + y.(int8) + case int16: + return x.(int16) + y.(int16) + case int32: + return x.(int32) + y.(int32) + case int64: + return x.(int64) + y.(int64) + case uint: + return x.(uint) + y.(uint) + case uint8: + return x.(uint8) + y.(uint8) + case uint16: + return x.(uint16) + y.(uint16) + case uint32: + return x.(uint32) + y.(uint32) + case uint64: + return x.(uint64) + y.(uint64) + case uintptr: + return x.(uintptr) + y.(uintptr) + case float32: + return x.(float32) + y.(float32) + case float64: + return x.(float64) + y.(float64) + case complex64: + return x.(complex64) + y.(complex64) + case complex128: + return x.(complex128) + y.(complex128) + case string: + return x.(string) + y.(string) + } + + case token.SUB: + switch x.(type) { + case int: + return x.(int) - y.(int) + case int8: + return x.(int8) - y.(int8) + case int16: + return x.(int16) - y.(int16) + case int32: + return x.(int32) - y.(int32) + case int64: + return x.(int64) - y.(int64) + case uint: + return x.(uint) - y.(uint) + case uint8: + return x.(uint8) - y.(uint8) + case uint16: + return x.(uint16) - y.(uint16) + case uint32: + return x.(uint32) - y.(uint32) + case uint64: + return x.(uint64) - y.(uint64) + case uintptr: + return x.(uintptr) - y.(uintptr) + case float32: + return x.(float32) - y.(float32) + case float64: + return x.(float64) - y.(float64) + case complex64: + return x.(complex64) - y.(complex64) + case complex128: + return x.(complex128) - y.(complex128) + } + + case token.MUL: + switch x.(type) { + case int: + return x.(int) * y.(int) + case int8: + return x.(int8) * y.(int8) + case int16: + return x.(int16) * y.(int16) + case int32: + return x.(int32) * y.(int32) + case int64: + return x.(int64) * y.(int64) + case uint: + return x.(uint) * y.(uint) + case uint8: + return x.(uint8) * y.(uint8) + case uint16: + return x.(uint16) * y.(uint16) + case uint32: + return x.(uint32) * y.(uint32) + case uint64: + return x.(uint64) * y.(uint64) + case uintptr: + return x.(uintptr) * y.(uintptr) + case float32: + return x.(float32) * y.(float32) + case float64: + return x.(float64) * y.(float64) + case complex64: + return x.(complex64) * y.(complex64) + case complex128: + return x.(complex128) * y.(complex128) + } + + case token.QUO: + switch x.(type) { + case int: + return x.(int) / y.(int) + case int8: + return x.(int8) / y.(int8) + case int16: + return x.(int16) / y.(int16) + case int32: + return x.(int32) / y.(int32) + case int64: + return x.(int64) / y.(int64) + case uint: + return x.(uint) / y.(uint) + case uint8: + return x.(uint8) / y.(uint8) + case uint16: + return x.(uint16) / y.(uint16) + case uint32: + return x.(uint32) / y.(uint32) + case uint64: + return x.(uint64) / y.(uint64) + case uintptr: + return x.(uintptr) / y.(uintptr) + case float32: + return x.(float32) / y.(float32) + case float64: + return x.(float64) / y.(float64) + case complex64: + return x.(complex64) / y.(complex64) + case complex128: + return x.(complex128) / y.(complex128) + } + + case token.REM: + switch x.(type) { + case int: + return x.(int) % y.(int) + case int8: + return x.(int8) % y.(int8) + case int16: + return x.(int16) % y.(int16) + case int32: + return x.(int32) % y.(int32) + case int64: + return x.(int64) % y.(int64) + case uint: + return x.(uint) % y.(uint) + case uint8: + return x.(uint8) % y.(uint8) + case uint16: + return x.(uint16) % y.(uint16) + case uint32: + return x.(uint32) % y.(uint32) + case uint64: + return x.(uint64) % y.(uint64) + case uintptr: + return x.(uintptr) % y.(uintptr) + } + + case token.AND: + switch x.(type) { + case int: + return x.(int) & y.(int) + case int8: + return x.(int8) & y.(int8) + case int16: + return x.(int16) & y.(int16) + case int32: + return x.(int32) & y.(int32) + case int64: + return x.(int64) & y.(int64) + case uint: + return x.(uint) & y.(uint) + case uint8: + return x.(uint8) & y.(uint8) + case uint16: + return x.(uint16) & y.(uint16) + case uint32: + return x.(uint32) & y.(uint32) + case uint64: + return x.(uint64) & y.(uint64) + case uintptr: + return x.(uintptr) & y.(uintptr) + } + + case token.OR: + switch x.(type) { + case int: + return x.(int) | y.(int) + case int8: + return x.(int8) | y.(int8) + case int16: + return x.(int16) | y.(int16) + case int32: + return x.(int32) | y.(int32) + case int64: + return x.(int64) | y.(int64) + case uint: + return x.(uint) | y.(uint) + case uint8: + return x.(uint8) | y.(uint8) + case uint16: + return x.(uint16) | y.(uint16) + case uint32: + return x.(uint32) | y.(uint32) + case uint64: + return x.(uint64) | y.(uint64) + case uintptr: + return x.(uintptr) | y.(uintptr) + } + + case token.XOR: + switch x.(type) { + case int: + return x.(int) ^ y.(int) + case int8: + return x.(int8) ^ y.(int8) + case int16: + return x.(int16) ^ y.(int16) + case int32: + return x.(int32) ^ y.(int32) + case int64: + return x.(int64) ^ y.(int64) + case uint: + return x.(uint) ^ y.(uint) + case uint8: + return x.(uint8) ^ y.(uint8) + case uint16: + return x.(uint16) ^ y.(uint16) + case uint32: + return x.(uint32) ^ y.(uint32) + case uint64: + return x.(uint64) ^ y.(uint64) + case uintptr: + return x.(uintptr) ^ y.(uintptr) + } + + case token.AND_NOT: + switch x.(type) { + case int: + return x.(int) &^ y.(int) + case int8: + return x.(int8) &^ y.(int8) + case int16: + return x.(int16) &^ y.(int16) + case int32: + return x.(int32) &^ y.(int32) + case int64: + return x.(int64) &^ y.(int64) + case uint: + return x.(uint) &^ y.(uint) + case uint8: + return x.(uint8) &^ y.(uint8) + case uint16: + return x.(uint16) &^ y.(uint16) + case uint32: + return x.(uint32) &^ y.(uint32) + case uint64: + return x.(uint64) &^ y.(uint64) + case uintptr: + return x.(uintptr) &^ y.(uintptr) + } + + case token.SHL: + y := asUint64(y) + switch x.(type) { + case int: + return x.(int) << y + case int8: + return x.(int8) << y + case int16: + return x.(int16) << y + case int32: + return x.(int32) << y + case int64: + return x.(int64) << y + case uint: + return x.(uint) << y + case uint8: + return x.(uint8) << y + case uint16: + return x.(uint16) << y + case uint32: + return x.(uint32) << y + case uint64: + return x.(uint64) << y + case uintptr: + return x.(uintptr) << y + } + + case token.SHR: + y := asUint64(y) + switch x.(type) { + case int: + return x.(int) >> y + case int8: + return x.(int8) >> y + case int16: + return x.(int16) >> y + case int32: + return x.(int32) >> y + case int64: + return x.(int64) >> y + case uint: + return x.(uint) >> y + case uint8: + return x.(uint8) >> y + case uint16: + return x.(uint16) >> y + case uint32: + return x.(uint32) >> y + case uint64: + return x.(uint64) >> y + case uintptr: + return x.(uintptr) >> y + } + + case token.LSS: + switch x.(type) { + case int: + return x.(int) < y.(int) + case int8: + return x.(int8) < y.(int8) + case int16: + return x.(int16) < y.(int16) + case int32: + return x.(int32) < y.(int32) + case int64: + return x.(int64) < y.(int64) + case uint: + return x.(uint) < y.(uint) + case uint8: + return x.(uint8) < y.(uint8) + case uint16: + return x.(uint16) < y.(uint16) + case uint32: + return x.(uint32) < y.(uint32) + case uint64: + return x.(uint64) < y.(uint64) + case uintptr: + return x.(uintptr) < y.(uintptr) + case float32: + return x.(float32) < y.(float32) + case float64: + return x.(float64) < y.(float64) + case string: + return x.(string) < y.(string) + } + + case token.LEQ: + switch x.(type) { + case int: + return x.(int) <= y.(int) + case int8: + return x.(int8) <= y.(int8) + case int16: + return x.(int16) <= y.(int16) + case int32: + return x.(int32) <= y.(int32) + case int64: + return x.(int64) <= y.(int64) + case uint: + return x.(uint) <= y.(uint) + case uint8: + return x.(uint8) <= y.(uint8) + case uint16: + return x.(uint16) <= y.(uint16) + case uint32: + return x.(uint32) <= y.(uint32) + case uint64: + return x.(uint64) <= y.(uint64) + case uintptr: + return x.(uintptr) <= y.(uintptr) + case float32: + return x.(float32) <= y.(float32) + case float64: + return x.(float64) <= y.(float64) + case string: + return x.(string) <= y.(string) + } + + case token.EQL: + return eqnil(t, x, y) + + case token.NEQ: + return !eqnil(t, x, y) + + case token.GTR: + switch x.(type) { + case int: + return x.(int) > y.(int) + case int8: + return x.(int8) > y.(int8) + case int16: + return x.(int16) > y.(int16) + case int32: + return x.(int32) > y.(int32) + case int64: + return x.(int64) > y.(int64) + case uint: + return x.(uint) > y.(uint) + case uint8: + return x.(uint8) > y.(uint8) + case uint16: + return x.(uint16) > y.(uint16) + case uint32: + return x.(uint32) > y.(uint32) + case uint64: + return x.(uint64) > y.(uint64) + case uintptr: + return x.(uintptr) > y.(uintptr) + case float32: + return x.(float32) > y.(float32) + case float64: + return x.(float64) > y.(float64) + case string: + return x.(string) > y.(string) + } + + case token.GEQ: + switch x.(type) { + case int: + return x.(int) >= y.(int) + case int8: + return x.(int8) >= y.(int8) + case int16: + return x.(int16) >= y.(int16) + case int32: + return x.(int32) >= y.(int32) + case int64: + return x.(int64) >= y.(int64) + case uint: + return x.(uint) >= y.(uint) + case uint8: + return x.(uint8) >= y.(uint8) + case uint16: + return x.(uint16) >= y.(uint16) + case uint32: + return x.(uint32) >= y.(uint32) + case uint64: + return x.(uint64) >= y.(uint64) + case uintptr: + return x.(uintptr) >= y.(uintptr) + case float32: + return x.(float32) >= y.(float32) + case float64: + return x.(float64) >= y.(float64) + case string: + return x.(string) >= y.(string) + } + } + panic(fmt.Sprintf("invalid binary op: %T %s %T", x, op, y)) +} + +// eqnil returns the comparison x == y using the equivalence relation +// appropriate for type t. +// If t is a reference type, at most one of x or y may be a nil value +// of that type. +// +func eqnil(t types.Type, x, y value) bool { + switch t.Underlying().(type) { + case *types.Map, *types.Signature, *types.Slice: + // Since these types don't support comparison, + // one of the operands must be a literal nil. + switch x := x.(type) { + case *hashmap: + return (x != nil) == (y.(*hashmap) != nil) + case map[value]value: + return (x != nil) == (y.(map[value]value) != nil) + case *ssa.Function: + switch y := y.(type) { + case *ssa.Function: + return (x != nil) == (y != nil) + case *closure: + return true + } + case *closure: + return (x != nil) == (y.(*ssa.Function) != nil) + case []value: + return (x != nil) == (y.([]value) != nil) + } + panic(fmt.Sprintf("eqnil(%s): illegal dynamic type: %T", t, x)) + } + + return equals(t, x, y) +} + +func unop(instr *ssa.UnOp, x value) value { + switch instr.Op { + case token.ARROW: // receive + v, ok := <-x.(chan value) + if !ok { + v = zero(instr.X.Type().Underlying().(*types.Chan).Elem()) + } + if instr.CommaOk { + v = tuple{v, ok} + } + return v + case token.SUB: + switch x := x.(type) { + case int: + return -x + case int8: + return -x + case int16: + return -x + case int32: + return -x + case int64: + return -x + case uint: + return -x + case uint8: + return -x + case uint16: + return -x + case uint32: + return -x + case uint64: + return -x + case uintptr: + return -x + case float32: + return -x + case float64: + return -x + case complex64: + return -x + case complex128: + return -x + } + case token.MUL: + return copyVal(*x.(*value)) // load + case token.NOT: + return !x.(bool) + case token.XOR: + switch x := x.(type) { + case int: + return ^x + case int8: + return ^x + case int16: + return ^x + case int32: + return ^x + case int64: + return ^x + case uint: + return ^x + case uint8: + return ^x + case uint16: + return ^x + case uint32: + return ^x + case uint64: + return ^x + case uintptr: + return ^x + } + } + panic(fmt.Sprintf("invalid unary op %s %T", instr.Op, x)) +} + +// typeAssert checks whether dynamic type of itf is instr.AssertedType. +// It returns the extracted value on success, and panics on failure, +// unless instr.CommaOk, in which case it always returns a "value,ok" tuple. +// +func typeAssert(i *interpreter, instr *ssa.TypeAssert, itf iface) value { + var v value + err := "" + if itf.t == nil { + err = fmt.Sprintf("interface conversion: interface is nil, not %s", instr.AssertedType) + + } else if idst, ok := instr.AssertedType.Underlying().(*types.Interface); ok { + v = itf + err = checkInterface(i, idst, itf) + + } else if types.Identical(itf.t, instr.AssertedType) { + v = copyVal(itf.v) // extract value + + } else { + err = fmt.Sprintf("interface conversion: interface is %s, not %s", itf.t, instr.AssertedType) + } + + if err != "" { + if !instr.CommaOk { + panic(err) + } + return tuple{zero(instr.AssertedType), false} + } + if instr.CommaOk { + return tuple{v, true} + } + return v +} + +// If CapturedOutput is non-nil, all writes by the interpreted program +// to file descriptors 1 and 2 will also be written to CapturedOutput. +// +// (The $GOROOT/test system requires that the test be considered a +// failure if "BUG" appears in the combined stdout/stderr output, even +// if it exits zero. This is a global variable shared by all +// interpreters in the same process.) +// +var CapturedOutput *bytes.Buffer +var capturedOutputMu sync.Mutex + +// write writes bytes b to the target program's file descriptor fd. +// The print/println built-ins and the write() system call funnel +// through here so they can be captured by the test driver. +func write(fd int, b []byte) (int, error) { + // TODO(adonovan): fix: on Windows, std{out,err} are not 1, 2. + if CapturedOutput != nil && (fd == 1 || fd == 2) { + capturedOutputMu.Lock() + CapturedOutput.Write(b) // ignore errors + capturedOutputMu.Unlock() + } + return syswrite(fd, b) +} + +// callBuiltin interprets a call to builtin fn with arguments args, +// returning its result. +func callBuiltin(caller *frame, callpos token.Pos, fn *ssa.Builtin, args []value) value { + switch fn.Name() { + case "append": + if len(args) == 1 { + return args[0] + } + if s, ok := args[1].(string); ok { + // append([]byte, ...string) []byte + arg0 := args[0].([]value) + for i := 0; i < len(s); i++ { + arg0 = append(arg0, s[i]) + } + return arg0 + } + // append([]T, ...[]T) []T + return append(args[0].([]value), args[1].([]value)...) + + case "copy": // copy([]T, []T) int + if _, ok := args[1].(string); ok { + panic("copy([]byte, string) not yet implemented") + } + return copy(args[0].([]value), args[1].([]value)) + + case "close": // close(chan T) + close(args[0].(chan value)) + return nil + + case "delete": // delete(map[K]value, K) + switch m := args[0].(type) { + case map[value]value: + delete(m, args[1]) + case *hashmap: + m.delete(args[1].(hashable)) + default: + panic(fmt.Sprintf("illegal map type: %T", m)) + } + return nil + + case "print", "println": // print(any, ...) + ln := fn.Name() == "println" + var buf bytes.Buffer + for i, arg := range args { + if i > 0 && ln { + buf.WriteRune(' ') + } + buf.WriteString(toString(arg)) + } + if ln { + buf.WriteRune('\n') + } + write(1, buf.Bytes()) + return nil + + case "len": + switch x := args[0].(type) { + case string: + return len(x) + case array: + return len(x) + case *value: + return len((*x).(array)) + case []value: + return len(x) + case map[value]value: + return len(x) + case *hashmap: + return x.len() + case chan value: + return len(x) + default: + panic(fmt.Sprintf("len: illegal operand: %T", x)) + } + + case "cap": + switch x := args[0].(type) { + case array: + return cap(x) + case *value: + return cap((*x).(array)) + case []value: + return cap(x) + case chan value: + return cap(x) + default: + panic(fmt.Sprintf("cap: illegal operand: %T", x)) + } + + case "real": + switch c := args[0].(type) { + case complex64: + return real(c) + case complex128: + return real(c) + default: + panic(fmt.Sprintf("real: illegal operand: %T", c)) + } + + case "imag": + switch c := args[0].(type) { + case complex64: + return imag(c) + case complex128: + return imag(c) + default: + panic(fmt.Sprintf("imag: illegal operand: %T", c)) + } + + case "complex": + switch f := args[0].(type) { + case float32: + return complex(f, args[1].(float32)) + case float64: + return complex(f, args[1].(float64)) + default: + panic(fmt.Sprintf("complex: illegal operand: %T", f)) + } + + case "panic": + // ssa.Panic handles most cases; this is only for "go + // panic" or "defer panic". + panic(targetPanic{args[0]}) + + case "recover": + return doRecover(caller) + } + + panic("unknown built-in: " + fn.Name()) +} + +func rangeIter(x value, t types.Type) iter { + switch x := x.(type) { + case map[value]value: + // TODO(adonovan): fix: leaks goroutines and channels + // on each incomplete map iteration. We need to open + // up an iteration interface using the + // reflect.(Value).MapKeys machinery. + it := make(mapIter) + go func() { + for k, v := range x { + it <- [2]value{k, v} + } + close(it) + }() + return it + case *hashmap: + // TODO(adonovan): fix: leaks goroutines and channels + // on each incomplete map iteration. We need to open + // up an iteration interface using the + // reflect.(Value).MapKeys machinery. + it := make(mapIter) + go func() { + for _, e := range x.table { + for e != nil { + it <- [2]value{e.key, e.value} + e = e.next + } + } + close(it) + }() + return it + case string: + return &stringIter{Reader: strings.NewReader(x)} + } + panic(fmt.Sprintf("cannot range over %T", x)) +} + +// widen widens a basic typed value x to the widest type of its +// category, one of: +// bool, int64, uint64, float64, complex128, string. +// This is inefficient but reduces the size of the cross-product of +// cases we have to consider. +// +func widen(x value) value { + switch y := x.(type) { + case bool, int64, uint64, float64, complex128, string, unsafe.Pointer: + return x + case int: + return int64(y) + case int8: + return int64(y) + case int16: + return int64(y) + case int32: + return int64(y) + case uint: + return uint64(y) + case uint8: + return uint64(y) + case uint16: + return uint64(y) + case uint32: + return uint64(y) + case uintptr: + return uint64(y) + case float32: + return float64(y) + case complex64: + return complex128(y) + } + panic(fmt.Sprintf("cannot widen %T", x)) +} + +// conv converts the value x of type t_src to type t_dst and returns +// the result. +// Possible cases are described with the ssa.Convert operator. +// +func conv(t_dst, t_src types.Type, x value) value { + ut_src := t_src.Underlying() + ut_dst := t_dst.Underlying() + + // Destination type is not an "untyped" type. + if b, ok := ut_dst.(*types.Basic); ok && b.Info()&types.IsUntyped != 0 { + panic("oops: conversion to 'untyped' type: " + b.String()) + } + + // Nor is it an interface type. + if _, ok := ut_dst.(*types.Interface); ok { + if _, ok := ut_src.(*types.Interface); ok { + panic("oops: Convert should be ChangeInterface") + } else { + panic("oops: Convert should be MakeInterface") + } + } + + // Remaining conversions: + // + untyped string/number/bool constant to a specific + // representation. + // + conversions between non-complex numeric types. + // + conversions between complex numeric types. + // + integer/[]byte/[]rune -> string. + // + string -> []byte/[]rune. + // + // All are treated the same: first we extract the value to the + // widest representation (int64, uint64, float64, complex128, + // or string), then we convert it to the desired type. + + switch ut_src := ut_src.(type) { + case *types.Pointer: + switch ut_dst := ut_dst.(type) { + case *types.Basic: + // *value to unsafe.Pointer? + if ut_dst.Kind() == types.UnsafePointer { + return unsafe.Pointer(x.(*value)) + } + } + + case *types.Slice: + // []byte or []rune -> string + // TODO(adonovan): fix: type B byte; conv([]B -> string). + switch ut_src.Elem().(*types.Basic).Kind() { + case types.Byte: + x := x.([]value) + b := make([]byte, 0, len(x)) + for i := range x { + b = append(b, x[i].(byte)) + } + return string(b) + + case types.Rune: + x := x.([]value) + r := make([]rune, 0, len(x)) + for i := range x { + r = append(r, x[i].(rune)) + } + return string(r) + } + + case *types.Basic: + x = widen(x) + + // integer -> string? + // TODO(adonovan): fix: test integer -> named alias of string. + if ut_src.Info()&types.IsInteger != 0 { + if ut_dst, ok := ut_dst.(*types.Basic); ok && ut_dst.Kind() == types.String { + return string(asInt(x)) + } + } + + // string -> []rune, []byte or string? + if s, ok := x.(string); ok { + switch ut_dst := ut_dst.(type) { + case *types.Slice: + var res []value + // TODO(adonovan): fix: test named alias of rune, byte. + switch ut_dst.Elem().(*types.Basic).Kind() { + case types.Rune: + for _, r := range []rune(s) { + res = append(res, r) + } + return res + case types.Byte: + for _, b := range []byte(s) { + res = append(res, b) + } + return res + } + case *types.Basic: + if ut_dst.Kind() == types.String { + return x.(string) + } + } + break // fail: no other conversions for string + } + + // unsafe.Pointer -> *value + if ut_src.Kind() == types.UnsafePointer { + // TODO(adonovan): this is wrong and cannot + // really be fixed with the current design. + // + // return (*value)(x.(unsafe.Pointer)) + // creates a new pointer of a different + // type but the underlying interface value + // knows its "true" type and so cannot be + // meaningfully used through the new pointer. + // + // To make this work, the interpreter needs to + // simulate the memory layout of a real + // compiled implementation. + // + // To at least preserve type-safety, we'll + // just return the zero value of the + // destination type. + return zero(t_dst) + } + + // Conversions between complex numeric types? + if ut_src.Info()&types.IsComplex != 0 { + switch ut_dst.(*types.Basic).Kind() { + case types.Complex64: + return complex64(x.(complex128)) + case types.Complex128: + return x.(complex128) + } + break // fail: no other conversions for complex + } + + // Conversions between non-complex numeric types? + if ut_src.Info()&types.IsNumeric != 0 { + kind := ut_dst.(*types.Basic).Kind() + switch x := x.(type) { + case int64: // signed integer -> numeric? + switch kind { + case types.Int: + return int(x) + case types.Int8: + return int8(x) + case types.Int16: + return int16(x) + case types.Int32: + return int32(x) + case types.Int64: + return int64(x) + case types.Uint: + return uint(x) + case types.Uint8: + return uint8(x) + case types.Uint16: + return uint16(x) + case types.Uint32: + return uint32(x) + case types.Uint64: + return uint64(x) + case types.Uintptr: + return uintptr(x) + case types.Float32: + return float32(x) + case types.Float64: + return float64(x) + } + + case uint64: // unsigned integer -> numeric? + switch kind { + case types.Int: + return int(x) + case types.Int8: + return int8(x) + case types.Int16: + return int16(x) + case types.Int32: + return int32(x) + case types.Int64: + return int64(x) + case types.Uint: + return uint(x) + case types.Uint8: + return uint8(x) + case types.Uint16: + return uint16(x) + case types.Uint32: + return uint32(x) + case types.Uint64: + return uint64(x) + case types.Uintptr: + return uintptr(x) + case types.Float32: + return float32(x) + case types.Float64: + return float64(x) + } + + case float64: // floating point -> numeric? + switch kind { + case types.Int: + return int(x) + case types.Int8: + return int8(x) + case types.Int16: + return int16(x) + case types.Int32: + return int32(x) + case types.Int64: + return int64(x) + case types.Uint: + return uint(x) + case types.Uint8: + return uint8(x) + case types.Uint16: + return uint16(x) + case types.Uint32: + return uint32(x) + case types.Uint64: + return uint64(x) + case types.Uintptr: + return uintptr(x) + case types.Float32: + return float32(x) + case types.Float64: + return float64(x) + } + } + } + } + + panic(fmt.Sprintf("unsupported conversion: %s -> %s, dynamic type %T", t_src, t_dst, x)) +} + +// checkInterface checks that the method set of x implements the +// interface itype. +// On success it returns "", on failure, an error message. +// +func checkInterface(i *interpreter, itype *types.Interface, x iface) string { + if meth, _ := types.MissingMethod(x.t, itype, true); meth != nil { + return fmt.Sprintf("interface conversion: %v is not %v: missing method %s", + x.t, itype, meth.Name()) + } + return "" // ok +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/reflect.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/reflect.go new file mode 100644 index 00000000..76926578 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/reflect.go @@ -0,0 +1,528 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +// Emulated "reflect" package. +// +// We completely replace the built-in "reflect" package. +// The only thing clients can depend upon are that reflect.Type is an +// interface and reflect.Value is an (opaque) struct. + +import ( + "fmt" + "go/token" + "reflect" + "unsafe" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +type opaqueType struct { + types.Type + name string +} + +func (t *opaqueType) String() string { return t.name } + +// A bogus "reflect" type-checker package. Shared across interpreters. +var reflectTypesPackage = types.NewPackage("reflect", "reflect") + +// rtype is the concrete type the interpreter uses to implement the +// reflect.Type interface. Since its type is opaque to the target +// language, we use a types.Basic. +// +// type rtype +var rtypeType = makeNamedType("rtype", &opaqueType{nil, "rtype"}) + +// error is an (interpreted) named type whose underlying type is string. +// The interpreter uses it for all implementations of the built-in error +// interface that it creates. +// We put it in the "reflect" package for expedience. +// +// type error string +var errorType = makeNamedType("error", &opaqueType{nil, "error"}) + +func makeNamedType(name string, underlying types.Type) *types.Named { + obj := types.NewTypeName(token.NoPos, reflectTypesPackage, name, nil) + return types.NewNamed(obj, underlying, nil) +} + +func makeReflectValue(t types.Type, v value) value { + return structure{rtype{t}, v} +} + +// Given a reflect.Value, returns its rtype. +func rV2T(v value) rtype { + return v.(structure)[0].(rtype) +} + +// Given a reflect.Value, returns the underlying interpreter value. +func rV2V(v value) value { + return v.(structure)[1] +} + +// makeReflectType boxes up an rtype in a reflect.Type interface. +func makeReflectType(rt rtype) value { + return iface{rtypeType, rt} +} + +func ext۰reflect۰Init(fr *frame, args []value) value { + // Signature: func() + return nil +} + +func ext۰reflect۰rtype۰Bits(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) int + rt := args[0].(rtype).t + basic, ok := rt.Underlying().(*types.Basic) + if !ok { + panic(fmt.Sprintf("reflect.Type.Bits(%T): non-basic type", rt)) + } + return int(fr.i.sizes.Sizeof(basic)) * 8 +} + +func ext۰reflect۰rtype۰Elem(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) reflect.Type + return makeReflectType(rtype{args[0].(rtype).t.Underlying().(interface { + Elem() types.Type + }).Elem()}) +} + +func ext۰reflect۰rtype۰Field(fr *frame, args []value) value { + // Signature: func (t reflect.rtype, i int) reflect.StructField + st := args[0].(rtype).t.Underlying().(*types.Struct) + i := args[1].(int) + f := st.Field(i) + return structure{ + f.Name(), + f.Pkg().Path(), + makeReflectType(rtype{f.Type()}), + st.Tag(i), + 0, // TODO(adonovan): offset + []value{}, // TODO(adonovan): indices + f.Anonymous(), + } +} + +func ext۰reflect۰rtype۰Kind(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) uint + return uint(reflectKind(args[0].(rtype).t)) +} + +func ext۰reflect۰rtype۰NumField(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) int + return args[0].(rtype).t.Underlying().(*types.Struct).NumFields() +} + +func ext۰reflect۰rtype۰NumMethod(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) int + return fr.i.prog.MethodSets.MethodSet(args[0].(rtype).t).Len() +} + +func ext۰reflect۰rtype۰NumOut(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) int + return args[0].(rtype).t.(*types.Signature).Results().Len() +} + +func ext۰reflect۰rtype۰Out(fr *frame, args []value) value { + // Signature: func (t reflect.rtype, i int) int + i := args[1].(int) + return makeReflectType(rtype{args[0].(rtype).t.(*types.Signature).Results().At(i).Type()}) +} + +func ext۰reflect۰rtype۰Size(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) uintptr + return uintptr(fr.i.sizes.Sizeof(args[0].(rtype).t)) +} + +func ext۰reflect۰rtype۰String(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) string + return args[0].(rtype).t.String() +} + +func ext۰reflect۰New(fr *frame, args []value) value { + // Signature: func (t reflect.Type) reflect.Value + t := args[0].(iface).v.(rtype).t + alloc := zero(t) + return makeReflectValue(types.NewPointer(t), &alloc) +} + +func ext۰reflect۰TypeOf(fr *frame, args []value) value { + // Signature: func (t reflect.rtype) string + return makeReflectType(rtype{args[0].(iface).t}) +} + +func ext۰reflect۰ValueOf(fr *frame, args []value) value { + // Signature: func (interface{}) reflect.Value + itf := args[0].(iface) + return makeReflectValue(itf.t, itf.v) +} + +func reflectKind(t types.Type) reflect.Kind { + switch t := t.(type) { + case *types.Named: + return reflectKind(t.Underlying()) + case *types.Basic: + switch t.Kind() { + case types.Bool: + return reflect.Bool + case types.Int: + return reflect.Int + case types.Int8: + return reflect.Int8 + case types.Int16: + return reflect.Int16 + case types.Int32: + return reflect.Int32 + case types.Int64: + return reflect.Int64 + case types.Uint: + return reflect.Uint + case types.Uint8: + return reflect.Uint8 + case types.Uint16: + return reflect.Uint16 + case types.Uint32: + return reflect.Uint32 + case types.Uint64: + return reflect.Uint64 + case types.Uintptr: + return reflect.Uintptr + case types.Float32: + return reflect.Float32 + case types.Float64: + return reflect.Float64 + case types.Complex64: + return reflect.Complex64 + case types.Complex128: + return reflect.Complex128 + case types.String: + return reflect.String + case types.UnsafePointer: + return reflect.UnsafePointer + } + case *types.Array: + return reflect.Array + case *types.Chan: + return reflect.Chan + case *types.Signature: + return reflect.Func + case *types.Interface: + return reflect.Interface + case *types.Map: + return reflect.Map + case *types.Pointer: + return reflect.Ptr + case *types.Slice: + return reflect.Slice + case *types.Struct: + return reflect.Struct + } + panic(fmt.Sprint("unexpected type: ", t)) +} + +func ext۰reflect۰Value۰Kind(fr *frame, args []value) value { + // Signature: func (reflect.Value) uint + return uint(reflectKind(rV2T(args[0]).t)) +} + +func ext۰reflect۰Value۰String(fr *frame, args []value) value { + // Signature: func (reflect.Value) string + return toString(rV2V(args[0])) +} + +func ext۰reflect۰Value۰Type(fr *frame, args []value) value { + // Signature: func (reflect.Value) reflect.Type + return makeReflectType(rV2T(args[0])) +} + +func ext۰reflect۰Value۰Uint(fr *frame, args []value) value { + // Signature: func (reflect.Value) uint64 + switch v := rV2V(args[0]).(type) { + case uint: + return uint64(v) + case uint8: + return uint64(v) + case uint16: + return uint64(v) + case uint32: + return uint64(v) + case uint64: + return uint64(v) + case uintptr: + return uint64(v) + } + panic("reflect.Value.Uint") +} + +func ext۰reflect۰Value۰Len(fr *frame, args []value) value { + // Signature: func (reflect.Value) int + switch v := rV2V(args[0]).(type) { + case string: + return len(v) + case array: + return len(v) + case chan value: + return cap(v) + case []value: + return len(v) + case *hashmap: + return v.len() + case map[value]value: + return len(v) + default: + panic(fmt.Sprintf("reflect.(Value).Len(%v)", v)) + } + return nil // unreachable +} + +func ext۰reflect۰Value۰MapIndex(fr *frame, args []value) value { + // Signature: func (reflect.Value) Value + tValue := rV2T(args[0]).t.Underlying().(*types.Map).Key() + k := rV2V(args[1]) + switch m := rV2V(args[0]).(type) { + case map[value]value: + if v, ok := m[k]; ok { + return makeReflectValue(tValue, v) + } + + case *hashmap: + if v := m.lookup(k.(hashable)); v != nil { + return makeReflectValue(tValue, v) + } + + default: + panic(fmt.Sprintf("(reflect.Value).MapIndex(%T, %T)", m, k)) + } + return makeReflectValue(nil, nil) +} + +func ext۰reflect۰Value۰MapKeys(fr *frame, args []value) value { + // Signature: func (reflect.Value) []Value + var keys []value + tKey := rV2T(args[0]).t.Underlying().(*types.Map).Key() + switch v := rV2V(args[0]).(type) { + case map[value]value: + for k := range v { + keys = append(keys, makeReflectValue(tKey, k)) + } + + case *hashmap: + for _, e := range v.table { + for ; e != nil; e = e.next { + keys = append(keys, makeReflectValue(tKey, e.key)) + } + } + + default: + panic(fmt.Sprintf("(reflect.Value).MapKeys(%T)", v)) + } + return keys +} + +func ext۰reflect۰Value۰NumField(fr *frame, args []value) value { + // Signature: func (reflect.Value) int + return len(rV2V(args[0]).(structure)) +} + +func ext۰reflect۰Value۰NumMethod(fr *frame, args []value) value { + // Signature: func (reflect.Value) int + return fr.i.prog.MethodSets.MethodSet(rV2T(args[0]).t).Len() +} + +func ext۰reflect۰Value۰Pointer(fr *frame, args []value) value { + // Signature: func (v reflect.Value) uintptr + switch v := rV2V(args[0]).(type) { + case *value: + return uintptr(unsafe.Pointer(v)) + case chan value: + return reflect.ValueOf(v).Pointer() + case []value: + return reflect.ValueOf(v).Pointer() + case *hashmap: + return reflect.ValueOf(v.table).Pointer() + case map[value]value: + return reflect.ValueOf(v).Pointer() + case *ssa.Function: + return uintptr(unsafe.Pointer(v)) + case *closure: + return uintptr(unsafe.Pointer(v)) + default: + panic(fmt.Sprintf("reflect.(Value).Pointer(%T)", v)) + } + return nil // unreachable +} + +func ext۰reflect۰Value۰Index(fr *frame, args []value) value { + // Signature: func (v reflect.Value, i int) Value + i := args[1].(int) + t := rV2T(args[0]).t.Underlying() + switch v := rV2V(args[0]).(type) { + case array: + return makeReflectValue(t.(*types.Array).Elem(), v[i]) + case []value: + return makeReflectValue(t.(*types.Slice).Elem(), v[i]) + default: + panic(fmt.Sprintf("reflect.(Value).Index(%T)", v)) + } + return nil // unreachable +} + +func ext۰reflect۰Value۰Bool(fr *frame, args []value) value { + // Signature: func (reflect.Value) bool + return rV2V(args[0]).(bool) +} + +func ext۰reflect۰Value۰CanAddr(fr *frame, args []value) value { + // Signature: func (v reflect.Value) bool + // Always false for our representation. + return false +} + +func ext۰reflect۰Value۰CanInterface(fr *frame, args []value) value { + // Signature: func (v reflect.Value) bool + // Always true for our representation. + return true +} + +func ext۰reflect۰Value۰Elem(fr *frame, args []value) value { + // Signature: func (v reflect.Value) reflect.Value + switch x := rV2V(args[0]).(type) { + case iface: + return makeReflectValue(x.t, x.v) + case *value: + return makeReflectValue(rV2T(args[0]).t.Underlying().(*types.Pointer).Elem(), *x) + default: + panic(fmt.Sprintf("reflect.(Value).Elem(%T)", x)) + } + return nil // unreachable +} + +func ext۰reflect۰Value۰Field(fr *frame, args []value) value { + // Signature: func (v reflect.Value, i int) reflect.Value + v := args[0] + i := args[1].(int) + return makeReflectValue(rV2T(v).t.Underlying().(*types.Struct).Field(i).Type(), rV2V(v).(structure)[i]) +} + +func ext۰reflect۰Value۰Float(fr *frame, args []value) value { + // Signature: func (reflect.Value) float64 + switch v := rV2V(args[0]).(type) { + case float32: + return float64(v) + case float64: + return float64(v) + } + panic("reflect.Value.Float") +} + +func ext۰reflect۰Value۰Interface(fr *frame, args []value) value { + // Signature: func (v reflect.Value) interface{} + return ext۰reflect۰valueInterface(fr, args) +} + +func ext۰reflect۰Value۰Int(fr *frame, args []value) value { + // Signature: func (reflect.Value) int64 + switch x := rV2V(args[0]).(type) { + case int: + return int64(x) + case int8: + return int64(x) + case int16: + return int64(x) + case int32: + return int64(x) + case int64: + return x + default: + panic(fmt.Sprintf("reflect.(Value).Int(%T)", x)) + } + return nil // unreachable +} + +func ext۰reflect۰Value۰IsNil(fr *frame, args []value) value { + // Signature: func (reflect.Value) bool + switch x := rV2V(args[0]).(type) { + case *value: + return x == nil + case chan value: + return x == nil + case map[value]value: + return x == nil + case *hashmap: + return x == nil + case iface: + return x.t == nil + case []value: + return x == nil + case *ssa.Function: + return x == nil + case *ssa.Builtin: + return x == nil + case *closure: + return x == nil + default: + panic(fmt.Sprintf("reflect.(Value).IsNil(%T)", x)) + } + return nil // unreachable +} + +func ext۰reflect۰Value۰IsValid(fr *frame, args []value) value { + // Signature: func (reflect.Value) bool + return rV2V(args[0]) != nil +} + +func ext۰reflect۰Value۰Set(fr *frame, args []value) value { + // TODO(adonovan): implement. + return nil +} + +func ext۰reflect۰valueInterface(fr *frame, args []value) value { + // Signature: func (v reflect.Value, safe bool) interface{} + v := args[0].(structure) + return iface{rV2T(v).t, rV2V(v)} +} + +func ext۰reflect۰error۰Error(fr *frame, args []value) value { + return args[0] +} + +// newMethod creates a new method of the specified name, package and receiver type. +func newMethod(pkg *ssa.Package, recvType types.Type, name string) *ssa.Function { + // TODO(adonovan): fix: hack: currently the only part of Signature + // that is needed is the "pointerness" of Recv.Type, and for + // now, we'll set it to always be false since we're only + // concerned with rtype. Encapsulate this better. + sig := types.NewSignature(nil, types.NewVar(token.NoPos, nil, "recv", recvType), nil, nil, false) + fn := ssa.NewFunction(name, sig, "fake reflect method") + fn.Pkg = pkg + fn.Prog = pkg.Prog + return fn +} + +func initReflect(i *interpreter) { + i.reflectPackage = &ssa.Package{ + Prog: i.prog, + Object: reflectTypesPackage, + Members: make(map[string]ssa.Member), + } + + i.rtypeMethods = methodSet{ + "Bits": newMethod(i.reflectPackage, rtypeType, "Bits"), + "Elem": newMethod(i.reflectPackage, rtypeType, "Elem"), + "Field": newMethod(i.reflectPackage, rtypeType, "Field"), + "Kind": newMethod(i.reflectPackage, rtypeType, "Kind"), + "NumField": newMethod(i.reflectPackage, rtypeType, "NumField"), + "NumMethod": newMethod(i.reflectPackage, rtypeType, "NumMethod"), + "NumOut": newMethod(i.reflectPackage, rtypeType, "NumOut"), + "Out": newMethod(i.reflectPackage, rtypeType, "Out"), + "Size": newMethod(i.reflectPackage, rtypeType, "Size"), + "String": newMethod(i.reflectPackage, rtypeType, "String"), + } + i.errorMethods = methodSet{ + "Error": newMethod(i.reflectPackage, errorType, "Error"), + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/a_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/a_test.go new file mode 100644 index 00000000..844ec5cd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/a_test.go @@ -0,0 +1,17 @@ +package a + +import "testing" + +func TestFoo(t *testing.T) { + t.Error("foo") +} + +func TestBar(t *testing.T) { + t.Error("bar") +} + +func BenchmarkWiz(b *testing.B) { + b.Error("wiz") +} + +// Don't test Examples since that testing package needs pipe(2) for that. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/b_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/b_test.go new file mode 100644 index 00000000..4a30e96a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/b_test.go @@ -0,0 +1,11 @@ +package b + +import "testing" + +func NotATest(t *testing.T) { + t.Error("foo") +} + +func NotABenchmark(b *testing.B) { + b.Error("wiz") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/boundmeth.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/boundmeth.go new file mode 100644 index 00000000..255cc607 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/boundmeth.go @@ -0,0 +1,144 @@ +// Tests of bound method closures. + +package main + +import "fmt" + +func assert(b bool) { + if !b { + panic("oops") + } +} + +type I int + +func (i I) add(x int) int { + return int(i) + x +} + +func valueReceiver() { + var three I = 3 + assert(three.add(5) == 8) + var add3 func(int) int = three.add + assert(add3(5) == 8) +} + +type S struct{ x int } + +func (s *S) incr() { + s.x++ +} + +func (s *S) get() int { + return s.x +} + +func pointerReceiver() { + ps := new(S) + incr := ps.incr + get := ps.get + assert(get() == 0) + incr() + incr() + incr() + assert(get() == 3) +} + +func addressibleValuePointerReceiver() { + var s S + incr := s.incr + get := s.get + assert(get() == 0) + incr() + incr() + incr() + assert(get() == 3) +} + +type S2 struct { + S +} + +func promotedReceiver() { + var s2 S2 + incr := s2.incr + get := s2.get + assert(get() == 0) + incr() + incr() + incr() + assert(get() == 3) +} + +func anonStruct() { + var s struct{ S } + incr := s.incr + get := s.get + assert(get() == 0) + incr() + incr() + incr() + assert(get() == 3) +} + +func typeCheck() { + var i interface{} + i = (*S).incr + _ = i.(func(*S)) // type assertion: receiver type prepended to params + + var s S + i = s.incr + _ = i.(func()) // type assertion: receiver type disappears +} + +type errString string + +func (err errString) Error() string { + return string(err) +} + +// Regression test for a builder crash. +func regress1(x error) func() string { + return x.Error +} + +// Regression test for b/7269: +// taking the value of an interface method performs a nil check. +func nilInterfaceMethodValue() { + err := fmt.Errorf("ok") + f := err.Error + if got := f(); got != "ok" { + panic(got) + } + + err = nil + if got := f(); got != "ok" { + panic(got) + } + + defer func() { + r := fmt.Sprint(recover()) + // runtime panic string varies across toolchains + if r != "runtime error: interface conversion: interface is nil, not error" && + r != "runtime error: invalid memory address or nil pointer dereference" { + panic("want runtime panic from nil interface method value, got " + r) + } + }() + f = err.Error // runtime panic: err is nil + panic("unreachable") +} + +func main() { + valueReceiver() + pointerReceiver() + addressibleValuePointerReceiver() + promotedReceiver() + anonStruct() + typeCheck() + + if e := regress1(errString("hi"))(); e != "hi" { + panic(e) + } + + nilInterfaceMethodValue() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/callstack.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/callstack.go new file mode 100644 index 00000000..56f3b281 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/callstack.go @@ -0,0 +1,52 @@ +package main + +import ( + "fmt" + "path" + "runtime" + "strings" +) + +var stack string + +func f() { + pc := make([]uintptr, 6) + pc = pc[:runtime.Callers(1, pc)] + for _, f := range pc { + Func := runtime.FuncForPC(f) + name := Func.Name() + if strings.Contains(name, "$") || strings.Contains(name, ".func") { + name = "func" // anon funcs vary across toolchains + } + file, line := Func.FileLine(0) + stack += fmt.Sprintf("%s at %s:%d\n", name, path.Base(file), line) + } +} + +func g() { f() } +func h() { g() } +func i() { func() { h() }() } + +// Hack: the 'func' and the call to Caller are on the same line, +// to paper over differences between toolchains. +// (The interpreter's location info isn't yet complete.) +func runtimeCaller0() (uintptr, string, int, bool) { return runtime.Caller(0) } + +func main() { + i() + if stack != `main.f at callstack.go:12 +main.g at callstack.go:26 +main.h at callstack.go:27 +func at callstack.go:28 +main.i at callstack.go:28 +main.main at callstack.go:35 +` { + panic("unexpected stack: " + stack) + } + + pc, file, line, _ := runtimeCaller0() + got := fmt.Sprintf("%s @ %s:%d", runtime.FuncForPC(pc).Name(), path.Base(file), line) + if got != "main.runtimeCaller0 @ callstack.go:33" { + panic("runtime.Caller: " + got) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/coverage.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/coverage.go new file mode 100644 index 00000000..503e4e2f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/coverage.go @@ -0,0 +1,644 @@ +// This interpreter test is designed to run very quickly yet provide +// some coverage of a broad selection of constructs. +// TODO(adonovan): more. +// +// Validate this file with 'go run' after editing. +// TODO(adonovan): break this into small files organized by theme. +// TODO(adonovan): move static tests (sanity checks) of ssa +// construction into ssa/testdata. + +package main + +import ( + "fmt" + "reflect" +) + +const zero int = 1 + +var v = []int{1 + zero: 42} + +// Nonliteral keys in composite literal. +func init() { + if x := fmt.Sprint(v); x != "[0 0 42]" { + panic(x) + } +} + +func init() { + // Call of variadic function with (implicit) empty slice. + if x := fmt.Sprint(); x != "" { + panic(x) + } +} + +type empty interface{} + +type I interface { + f() int +} + +type T struct{ z int } + +func (t T) f() int { return t.z } + +func use(interface{}) {} + +var counter = 2 + +// Test initialization, including init blocks containing 'return'. +// Assertion is in main. +func init() { + counter *= 3 + return + counter *= 3 +} + +func init() { + counter *= 5 + return + counter *= 5 +} + +// Recursion. +func fib(x int) int { + if x < 2 { + return x + } + return fib(x-1) + fib(x-2) +} + +func fibgen(ch chan int) { + for x := 0; x < 10; x++ { + ch <- fib(x) + } + close(ch) +} + +// Goroutines and channels. +func init() { + ch := make(chan int) + go fibgen(ch) + var fibs []int + for v := range ch { + fibs = append(fibs, v) + if len(fibs) == 10 { + break + } + } + if x := fmt.Sprint(fibs); x != "[0 1 1 2 3 5 8 13 21 34]" { + panic(x) + } +} + +// Test of aliasing. +func init() { + type S struct { + a, b string + } + + s1 := []string{"foo", "bar"} + s2 := s1 // creates an alias + s2[0] = "wiz" + if x := fmt.Sprint(s1, s2); x != "[wiz bar] [wiz bar]" { + panic(x) + } + + pa1 := &[2]string{"foo", "bar"} + pa2 := pa1 // creates an alias + (*pa2)[0] = "wiz" // * required to workaround typechecker bug + if x := fmt.Sprint(*pa1, *pa2); x != "[wiz bar] [wiz bar]" { + panic(x) + } + + a1 := [2]string{"foo", "bar"} + a2 := a1 // creates a copy + a2[0] = "wiz" + if x := fmt.Sprint(a1, a2); x != "[foo bar] [wiz bar]" { + panic(x) + } + + t1 := S{"foo", "bar"} + t2 := t1 // copy + t2.a = "wiz" + if x := fmt.Sprint(t1, t2); x != "{foo bar} {wiz bar}" { + panic(x) + } +} + +// Range over string. +func init() { + if x := len("Hello, 世界"); x != 13 { // bytes + panic(x) + } + var indices []int + var runes []rune + for i, r := range "Hello, 世界" { + runes = append(runes, r) + indices = append(indices, i) + } + if x := fmt.Sprint(runes); x != "[72 101 108 108 111 44 32 19990 30028]" { + panic(x) + } + if x := fmt.Sprint(indices); x != "[0 1 2 3 4 5 6 7 10]" { + panic(x) + } + s := "" + for _, r := range runes { + s = fmt.Sprintf("%s%c", s, r) + } + if s != "Hello, 世界" { + panic(s) + } +} + +func main() { + print() // legal + + if counter != 2*3*5 { + panic(counter) + } + + // Test builtins (e.g. complex) preserve named argument types. + type N complex128 + var n N + n = complex(1.0, 2.0) + if n != complex(1.0, 2.0) { + panic(n) + } + if x := reflect.TypeOf(n).String(); x != "main.N" { + panic(x) + } + if real(n) != 1.0 || imag(n) != 2.0 { + panic(n) + } + + // Channel + select. + ch := make(chan int, 1) + select { + case ch <- 1: + // ok + default: + panic("couldn't send") + } + if <-ch != 1 { + panic("couldn't receive") + } + // A "receive" select-case that doesn't declare its vars. (regression test) + anint := 0 + ok := false + select { + case anint, ok = <-ch: + case anint = <-ch: + default: + } + _ = anint + _ = ok + + // Anon structs with methods. + anon := struct{ T }{T: T{z: 1}} + if x := anon.f(); x != 1 { + panic(x) + } + var i I = anon + if x := i.f(); x != 1 { + panic(x) + } + // NB. precise output of reflect.Type.String is undefined. + if x := reflect.TypeOf(i).String(); x != "struct { main.T }" && x != "struct{main.T}" { + panic(x) + } + + // fmt. + const message = "Hello, World!" + if fmt.Sprintf("%s, %s!", "Hello", "World") != message { + panic("oops") + } + + // Type assertion. + type S struct { + f int + } + var e empty = S{f: 42} + switch v := e.(type) { + case S: + if v.f != 42 { + panic(v.f) + } + default: + panic(reflect.TypeOf(v)) + } + if i, ok := e.(I); ok { + panic(i) + } + + // Switch. + var x int + switch x { + case 1: + panic(x) + fallthrough + case 2, 3: + panic(x) + default: + // ok + } + // empty switch + switch { + } + // empty switch + switch { + default: + } + // empty switch + switch { + default: + fallthrough + case false: + } + + // string -> []rune conversion. + use([]rune("foo")) + + // Calls of form x.f(). + type S2 struct { + f func() int + } + S2{f: func() int { return 1 }}.f() // field is a func value + T{}.f() // method call + i.f() // interface method invocation + (interface { + f() int + }(T{})).f() // anon interface method invocation + + // Map lookup. + if v, ok := map[string]string{}["foo5"]; v != "" || ok { + panic("oops") + } + + // Regression test: implicit address-taken struct literal + // inside literal map element. + _ = map[int]*struct{}{0: {}} +} + +// A blocking select (sans "default:") cannot fall through. +// Regression test for issue 7022. +func bug7022() int { + var c1, c2 chan int + select { + case <-c1: + return 123 + case <-c2: + return 456 + } +} + +// Parens should not prevent intrinsic treatment of built-ins. +// (Regression test for a crash.) +func init() { + _ = (new)(int) + _ = (make)([]int, 0) +} + +type mybool bool + +func (mybool) f() {} + +func init() { + type mybool bool + var b mybool + var i interface{} = b || b // result preserves types of operands + _ = i.(mybool) + + i = false && b // result preserves type of "typed" operand + _ = i.(mybool) + + i = b || true // result preserves type of "typed" operand + _ = i.(mybool) +} + +func init() { + var x, y int + var b mybool = x == y // x==y is an untyped bool + b.f() +} + +// Simple closures. +func init() { + b := 3 + f := func(a int) int { + return a + b + } + b++ + if x := f(1); x != 5 { // 1+4 == 5 + panic(x) + } + b++ + if x := f(2); x != 7 { // 2+5 == 7 + panic(x) + } + if b := f(1) < 16 || f(2) < 17; !b { + panic("oops") + } +} + +var order []int + +func create(x int) int { + order = append(order, x) + return x +} + +var c = create(b + 1) +var a, b = create(1), create(2) + +// Initialization order of package-level value specs. +func init() { + if x := fmt.Sprint(order); x != "[2 3 1]" { + panic(x) + } + if c != 3 { + panic(c) + } +} + +// Shifts. +func init() { + var i int64 = 1 + var u uint64 = 1 << 32 + if x := i << uint32(u); x != 1 { + panic(x) + } + if x := i << uint64(u); x != 0 { + panic(x) + } +} + +// Implicit conversion of delete() key operand. +func init() { + type I interface{} + m := make(map[I]bool) + m[1] = true + m[I(2)] = true + if len(m) != 2 { + panic(m) + } + delete(m, I(1)) + delete(m, 2) + if len(m) != 0 { + panic(m) + } +} + +// An I->I conversion always succeeds. +func init() { + var x I + if I(x) != I(nil) { + panic("I->I conversion failed") + } +} + +// An I->I type-assert fails iff the value is nil. +func init() { + // TODO(adonovan): temporarily disabled; see comment at bottom of file. + // defer func() { + // r := fmt.Sprint(recover()) + // if r != "interface conversion: interface is nil, not main.I" { + // panic("I->I type assertion succeeed for nil value") + // } + // }() + // var x I + // _ = x.(I) +} + +////////////////////////////////////////////////////////////////////// +// Variadic bridge methods and interface thunks. + +type VT int + +var vcount = 0 + +func (VT) f(x int, y ...string) { + vcount++ + if x != 1 { + panic(x) + } + if len(y) != 2 || y[0] != "foo" || y[1] != "bar" { + panic(y) + } +} + +type VS struct { + VT +} + +type VI interface { + f(x int, y ...string) +} + +func init() { + foobar := []string{"foo", "bar"} + var s VS + s.f(1, "foo", "bar") + s.f(1, foobar...) + if vcount != 2 { + panic("s.f not called twice") + } + + fn := VI.f + fn(s, 1, "foo", "bar") + fn(s, 1, foobar...) + if vcount != 4 { + panic("I.f not called twice") + } +} + +// Multiple labels on same statement. +func multipleLabels() { + var trace []int + i := 0 +one: +two: + for ; i < 3; i++ { + trace = append(trace, i) + switch i { + case 0: + continue two + case 1: + i++ + goto one + case 2: + break two + } + } + if x := fmt.Sprint(trace); x != "[0 1 2]" { + panic(x) + } +} + +func init() { + multipleLabels() +} + +//////////////////////////////////////////////////////////////////////// +// Defer + +func deferMutatesResults(noArgReturn bool) (a, b int) { + defer func() { + if a != 1 || b != 2 { + panic(fmt.Sprint(a, b)) + } + a, b = 3, 4 + }() + if noArgReturn { + a, b = 1, 2 + return + } + return 1, 2 +} + +func init() { + a, b := deferMutatesResults(true) + if a != 3 || b != 4 { + panic(fmt.Sprint(a, b)) + } + a, b = deferMutatesResults(false) + if a != 3 || b != 4 { + panic(fmt.Sprint(a, b)) + } +} + +// We concatenate init blocks to make a single function, but we must +// run defers at the end of each block, not the combined function. +var deferCount = 0 + +func init() { + deferCount = 1 + defer func() { + deferCount++ + }() + // defer runs HERE +} + +func init() { + // Strictly speaking the spec says deferCount may be 0 or 2 + // since the relative order of init blocks is unspecified. + if deferCount != 2 { + panic(deferCount) // defer call has not run! + } +} + +func init() { + // Struct equivalence ignores blank fields. + type s struct{ x, _, z int } + s1 := s{x: 1, z: 3} + s2 := s{x: 1, z: 3} + if s1 != s2 { + panic("not equal") + } +} + +func init() { + // A slice var can be compared to const []T nil. + var i interface{} = []string{"foo"} + var j interface{} = []string(nil) + if i.([]string) == nil { + panic("expected i non-nil") + } + if j.([]string) != nil { + panic("expected j nil") + } + // But two slices cannot be compared, even if one is nil. + defer func() { + r := fmt.Sprint(recover()) + if r != "runtime error: comparing uncomparable type []string" { + panic("want panic from slice comparison, got " + r) + } + }() + _ = i == j // interface comparison recurses on types +} + +// Composite literals + +func init() { + type M map[int]int + m1 := []*M{{1: 1}, &M{2: 2}} + want := "map[1:1] map[2:2]" + if got := fmt.Sprint(*m1[0], *m1[1]); got != want { + panic(got) + } + m2 := []M{{1: 1}, M{2: 2}} + if got := fmt.Sprint(m2[0], m2[1]); got != want { + panic(got) + } +} + +func init() { + // Regression test for SSA renaming bug. + var ints []int + for _ = range "foo" { + var x int + x++ + ints = append(ints, x) + } + if fmt.Sprint(ints) != "[1 1 1]" { + panic(ints) + } +} + +func init() { + // Regression test for issue 6806. + ch := make(chan int) + select { + case n, _ := <-ch: + _ = n + default: + // The default case disables the simplification of + // select to a simple receive statement. + } + + // value,ok-form receive where TypeOf(ok) is a named boolean. + type mybool bool + var x int + var y mybool + select { + case x, y = <-ch: + default: + // The default case disables the simplification of + // select to a simple receive statement. + } + _ = x + _ = y +} + +// Regression test for issue 6949: +// []byte("foo") is not a constant since it allocates memory. +func init() { + var r string + for i, b := range "ABC" { + x := []byte("abc") + x[i] = byte(b) + r += string(x) + } + if r != "AbcaBcabC" { + panic(r) + } +} + +// Test of 3-operand x[lo:hi:max] slice. +func init() { + s := []int{0, 1, 2, 3} + lenCapLoHi := func(x []int) [4]int { return [4]int{len(x), cap(x), x[0], x[len(x)-1]} } + if got := lenCapLoHi(s[1:3]); got != [4]int{2, 3, 1, 2} { + panic(got) + } + if got := lenCapLoHi(s[1:3:3]); got != [4]int{2, 2, 1, 2} { + panic(got) + } +} + +// Regression test for issue 7840 (covered by SSA sanity checker). +func bug7840() bool { + // This creates a single-predecessor block with a φ-node. + return false && a == 0 && a == 0 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/fieldprom.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/fieldprom.go new file mode 100644 index 00000000..fc276ddb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/fieldprom.go @@ -0,0 +1,114 @@ +package main + +// Tests of field promotion logic. + +type A struct { + x int + y *int +} + +type B struct { + p int + q *int +} + +type C struct { + A + *B +} + +type D struct { + a int + C +} + +func assert(cond bool) { + if !cond { + panic("failed") + } +} + +func f1(c C) { + assert(c.x == c.A.x) + assert(c.y == c.A.y) + assert(&c.x == &c.A.x) + assert(&c.y == &c.A.y) + + assert(c.p == c.B.p) + assert(c.q == c.B.q) + assert(&c.p == &c.B.p) + assert(&c.q == &c.B.q) + + c.x = 1 + *c.y = 1 + c.p = 1 + *c.q = 1 +} + +func f2(c *C) { + assert(c.x == c.A.x) + assert(c.y == c.A.y) + assert(&c.x == &c.A.x) + assert(&c.y == &c.A.y) + + assert(c.p == c.B.p) + assert(c.q == c.B.q) + assert(&c.p == &c.B.p) + assert(&c.q == &c.B.q) + + c.x = 1 + *c.y = 1 + c.p = 1 + *c.q = 1 +} + +func f3(d D) { + assert(d.x == d.C.A.x) + assert(d.y == d.C.A.y) + assert(&d.x == &d.C.A.x) + assert(&d.y == &d.C.A.y) + + assert(d.p == d.C.B.p) + assert(d.q == d.C.B.q) + assert(&d.p == &d.C.B.p) + assert(&d.q == &d.C.B.q) + + d.x = 1 + *d.y = 1 + d.p = 1 + *d.q = 1 +} + +func f4(d *D) { + assert(d.x == d.C.A.x) + assert(d.y == d.C.A.y) + assert(&d.x == &d.C.A.x) + assert(&d.y == &d.C.A.y) + + assert(d.p == d.C.B.p) + assert(d.q == d.C.B.q) + assert(&d.p == &d.C.B.p) + assert(&d.q == &d.C.B.q) + + d.x = 1 + *d.y = 1 + d.p = 1 + *d.q = 1 +} + +func main() { + y := 123 + c := C{ + A{x: 42, y: &y}, + &B{p: 42, q: &y}, + } + + assert(&c.x == &c.A.x) + + f1(c) + f2(&c) + + d := D{C: c} + f3(d) + f4(&d) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/ifaceconv.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/ifaceconv.go new file mode 100644 index 00000000..96fc1058 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/ifaceconv.go @@ -0,0 +1,83 @@ +package main + +// Tests of interface conversions and type assertions. + +type I0 interface { +} +type I1 interface { + f() +} +type I2 interface { + f() + g() +} + +type C0 struct{} +type C1 struct{} + +func (C1) f() {} + +type C2 struct{} + +func (C2) f() {} +func (C2) g() {} + +func main() { + var i0 I0 + var i1 I1 + var i2 I2 + + // Nil always causes a type assertion to fail, even to the + // same type. + if _, ok := i0.(I0); ok { + panic("nil i0.(I0) succeeded") + } + if _, ok := i1.(I1); ok { + panic("nil i1.(I1) succeeded") + } + if _, ok := i2.(I2); ok { + panic("nil i2.(I2) succeeded") + } + + // Conversions can't fail, even with nil. + _ = I0(i0) + + _ = I0(i1) + _ = I1(i1) + + _ = I0(i2) + _ = I1(i2) + _ = I2(i2) + + // Non-nil type assertions pass or fail based on the concrete type. + i1 = C1{} + if _, ok := i1.(I0); !ok { + panic("C1 i1.(I0) failed") + } + if _, ok := i1.(I1); !ok { + panic("C1 i1.(I1) failed") + } + if _, ok := i1.(I2); ok { + panic("C1 i1.(I2) succeeded") + } + + i1 = C2{} + if _, ok := i1.(I0); !ok { + panic("C2 i1.(I0) failed") + } + if _, ok := i1.(I1); !ok { + panic("C2 i1.(I1) failed") + } + if _, ok := i1.(I2); !ok { + panic("C2 i1.(I2) failed") + } + + // Conversions can't fail. + i1 = C1{} + if I0(i1) == nil { + panic("C1 I0(i1) was nil") + } + if I1(i1) == nil { + panic("C1 I1(i1) was nil") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/ifaceprom.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/ifaceprom.go new file mode 100644 index 00000000..414dc736 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/ifaceprom.go @@ -0,0 +1,58 @@ +package main + +// Test of promotion of methods of an interface embedded within a +// struct. In particular, this test exercises that the correct +// method is called. + +type I interface { + one() int + two() string +} + +type S struct { + I +} + +type impl struct{} + +func (impl) one() int { + return 1 +} + +func (impl) two() string { + return "two" +} + +func main() { + var s S + s.I = impl{} + if one := s.I.one(); one != 1 { + panic(one) + } + if one := s.one(); one != 1 { + panic(one) + } + closOne := s.I.one + if one := closOne(); one != 1 { + panic(one) + } + closOne = s.one + if one := closOne(); one != 1 { + panic(one) + } + + if two := s.I.two(); two != "two" { + panic(two) + } + if two := s.two(); two != "two" { + panic(two) + } + closTwo := s.I.two + if two := closTwo(); two != "two" { + panic(two) + } + closTwo = s.two + if two := closTwo(); two != "two" { + panic(two) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/initorder.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/initorder.go new file mode 100644 index 00000000..6b14236c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/initorder.go @@ -0,0 +1,40 @@ +package main + +// Test of initialization order of package-level vars. + +var counter int + +func next() int { + c := counter + counter++ + return c +} + +func next2() (x int, y int) { + x = next() + y = next() + return +} + +func makeOrder() int { + _, _, _, _ = f, b, d, e + return 0 +} + +func main() { + // Initialization constraints: + // - {f,b,c/d,e} < order (ref graph traversal) + // - order < {a} (lexical order) + // - b < c/d < e < f (lexical order) + // Solution: b c/d e f a + abcdef := [6]int{a, b, c, d, e, f} + if abcdef != [6]int{5, 0, 1, 2, 3, 4} { + panic(abcdef) + } +} + +var order = makeOrder() + +var a, b = next(), next() +var c, d = next2() +var e, f = next(), next() diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/methprom.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/methprom.go new file mode 100644 index 00000000..e8e384c3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/methprom.go @@ -0,0 +1,93 @@ +package main + +// Tests of method promotion logic. + +type A struct{ magic int } + +func (a A) x() { + if a.magic != 1 { + panic(a.magic) + } +} +func (a *A) y() *A { + return a +} + +type B struct{ magic int } + +func (b B) p() { + if b.magic != 2 { + panic(b.magic) + } +} +func (b *B) q() { + if b != theC.B { + panic("oops") + } +} + +type I interface { + f() +} + +type impl struct{ magic int } + +func (i impl) f() { + if i.magic != 3 { + panic("oops") + } +} + +type C struct { + A + *B + I +} + +func assert(cond bool) { + if !cond { + panic("failed") + } +} + +var theC = C{ + A: A{1}, + B: &B{2}, + I: impl{3}, +} + +func addr() *C { + return &theC +} + +func value() C { + return theC +} + +func main() { + // address + addr().x() + if addr().y() != &theC.A { + panic("oops") + } + addr().p() + addr().q() + addr().f() + + // addressable value + var c C = value() + c.x() + if c.y() != &c.A { + panic("oops") + } + c.p() + c.q() + c.f() + + // non-addressable value + value().x() + // value().y() // not in method set + value().p() + value().q() + value().f() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/mrvchain.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/mrvchain.go new file mode 100644 index 00000000..70dfd027 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/mrvchain.go @@ -0,0 +1,75 @@ +// Tests of call chaining f(g()) when g has multiple return values (MRVs). +// See https://code.google.com/p/go/issues/detail?id=4573. + +package main + +func assert(actual, expected int) { + if actual != expected { + panic(actual) + } +} + +func g() (int, int) { + return 5, 7 +} + +func g2() (float64, float64) { + return 5, 7 +} + +func f1v(x int, v ...int) { + assert(x, 5) + assert(v[0], 7) +} + +func f2(x, y int) { + assert(x, 5) + assert(y, 7) +} + +func f2v(x, y int, v ...int) { + assert(x, 5) + assert(y, 7) + assert(len(v), 0) +} + +func complexArgs() (float64, float64) { + return 5, 7 +} + +func appendArgs() ([]string, string) { + return []string{"foo"}, "bar" +} + +func h() (i interface{}, ok bool) { + m := map[int]string{1: "hi"} + i, ok = m[1] // string->interface{} conversion within multi-valued expression + return +} + +func h2() (i interface{}, ok bool) { + ch := make(chan string, 1) + ch <- "hi" + i, ok = <-ch // string->interface{} conversion within multi-valued expression + return +} + +func main() { + f1v(g()) + f2(g()) + f2v(g()) + if c := complex(complexArgs()); c != 5+7i { + panic(c) + } + if s := append(appendArgs()); len(s) != 2 || s[0] != "foo" || s[1] != "bar" { + panic(s) + } + i, ok := h() + if !ok || i.(string) != "hi" { + panic(i) + } + i, ok = h2() + if !ok || i.(string) != "hi" { + panic(i) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/recover.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/recover.go new file mode 100644 index 00000000..b5600522 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/testdata/recover.go @@ -0,0 +1,34 @@ +package main + +// Tests of panic/recover. + +import "fmt" + +func fortyTwo() (r int) { + r = 42 + // The next two statements simulate a 'return' statement. + defer func() { recover() }() + panic(nil) +} + +func zero() int { + defer func() { recover() }() + panic(1) +} + +func zeroEmpty() (int, string) { + defer func() { recover() }() + panic(1) +} + +func main() { + if r := fortyTwo(); r != 42 { + panic(r) + } + if r := zero(); r != 0 { + panic(r) + } + if r, s := zeroEmpty(); r != 0 || s != "" { + panic(fmt.Sprint(r, s)) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/value.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/value.go new file mode 100644 index 00000000..f3257b96 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/interp/value.go @@ -0,0 +1,487 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package interp + +// Values +// +// All interpreter values are "boxed" in the empty interface, value. +// The range of possible dynamic types within value are: +// +// - bool +// - numbers (all built-in int/float/complex types are distinguished) +// - string +// - map[value]value --- maps for which usesBuiltinMap(keyType) +// *hashmap --- maps for which !usesBuiltinMap(keyType) +// - chan value +// - []value --- slices +// - iface --- interfaces. +// - structure --- structs. Fields are ordered and accessed by numeric indices. +// - array --- arrays. +// - *value --- pointers. Careful: *value is a distinct type from *array etc. +// - *ssa.Function \ +// *ssa.Builtin } --- functions. A nil 'func' is always of type *ssa.Function. +// *closure / +// - tuple --- as returned by Return, Next, "value,ok" modes, etc. +// - iter --- iterators from 'range' over map or string. +// - bad --- a poison pill for locals that have gone out of scope. +// - rtype -- the interpreter's concrete implementation of reflect.Type +// +// Note that nil is not on this list. +// +// Pay close attention to whether or not the dynamic type is a pointer. +// The compiler cannot help you since value is an empty interface. + +import ( + "bytes" + "fmt" + "io" + "reflect" + "strings" + "sync" + "unsafe" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +type value interface{} + +type tuple []value + +type array []value + +type iface struct { + t types.Type // never an "untyped" type + v value +} + +type structure []value + +// For map, array, *array, slice, string or channel. +type iter interface { + // next returns a Tuple (key, value, ok). + // key and value are unaliased, e.g. copies of the sequence element. + next() tuple +} + +type closure struct { + Fn *ssa.Function + Env []value +} + +type bad struct{} + +type rtype struct { + t types.Type +} + +// Hash functions and equivalence relation: + +// hashString computes the FNV hash of s. +func hashString(s string) int { + var h uint32 + for i := 0; i < len(s); i++ { + h ^= uint32(s[i]) + h *= 16777619 + } + return int(h) +} + +var ( + mu sync.Mutex + hasher = typeutil.MakeHasher() +) + +// hashType returns a hash for t such that +// types.Identical(x, y) => hashType(x) == hashType(y). +func hashType(t types.Type) int { + mu.Lock() + h := int(hasher.Hash(t)) + mu.Unlock() + return h +} + +// usesBuiltinMap returns true if the built-in hash function and +// equivalence relation for type t are consistent with those of the +// interpreter's representation of type t. Such types are: all basic +// types (bool, numbers, string), pointers and channels. +// +// usesBuiltinMap returns false for types that require a custom map +// implementation: interfaces, arrays and structs. +// +// Panic ensues if t is an invalid map key type: function, map or slice. +func usesBuiltinMap(t types.Type) bool { + switch t := t.(type) { + case *types.Basic, *types.Chan, *types.Pointer: + return true + case *types.Named: + return usesBuiltinMap(t.Underlying()) + case *types.Interface, *types.Array, *types.Struct: + return false + } + panic(fmt.Sprintf("invalid map key type: %T", t)) +} + +func (x array) eq(t types.Type, _y interface{}) bool { + y := _y.(array) + tElt := t.Underlying().(*types.Array).Elem() + for i, xi := range x { + if !equals(tElt, xi, y[i]) { + return false + } + } + return true +} + +func (x array) hash(t types.Type) int { + h := 0 + tElt := t.Underlying().(*types.Array).Elem() + for _, xi := range x { + h += hash(tElt, xi) + } + return h +} + +func (x structure) eq(t types.Type, _y interface{}) bool { + y := _y.(structure) + tStruct := t.Underlying().(*types.Struct) + for i, n := 0, tStruct.NumFields(); i < n; i++ { + if f := tStruct.Field(i); !f.Anonymous() { + if !equals(f.Type(), x[i], y[i]) { + return false + } + } + } + return true +} + +func (x structure) hash(t types.Type) int { + tStruct := t.Underlying().(*types.Struct) + h := 0 + for i, n := 0, tStruct.NumFields(); i < n; i++ { + if f := tStruct.Field(i); !f.Anonymous() { + h += hash(f.Type(), x[i]) + } + } + return h +} + +// nil-tolerant variant of types.Identical. +func sameType(x, y types.Type) bool { + if x == nil { + return y == nil + } + return y != nil && types.Identical(x, y) +} + +func (x iface) eq(t types.Type, _y interface{}) bool { + y := _y.(iface) + return sameType(x.t, y.t) && (x.t == nil || equals(x.t, x.v, y.v)) +} + +func (x iface) hash(_ types.Type) int { + return hashType(x.t)*8581 + hash(x.t, x.v) +} + +func (x rtype) hash(_ types.Type) int { + return hashType(x.t) +} + +func (x rtype) eq(_ types.Type, y interface{}) bool { + return types.Identical(x.t, y.(rtype).t) +} + +// equals returns true iff x and y are equal according to Go's +// linguistic equivalence relation for type t. +// In a well-typed program, the dynamic types of x and y are +// guaranteed equal. +func equals(t types.Type, x, y value) bool { + switch x := x.(type) { + case bool: + return x == y.(bool) + case int: + return x == y.(int) + case int8: + return x == y.(int8) + case int16: + return x == y.(int16) + case int32: + return x == y.(int32) + case int64: + return x == y.(int64) + case uint: + return x == y.(uint) + case uint8: + return x == y.(uint8) + case uint16: + return x == y.(uint16) + case uint32: + return x == y.(uint32) + case uint64: + return x == y.(uint64) + case uintptr: + return x == y.(uintptr) + case float32: + return x == y.(float32) + case float64: + return x == y.(float64) + case complex64: + return x == y.(complex64) + case complex128: + return x == y.(complex128) + case string: + return x == y.(string) + case *value: + return x == y.(*value) + case chan value: + return x == y.(chan value) + case structure: + return x.eq(t, y) + case array: + return x.eq(t, y) + case iface: + return x.eq(t, y) + case rtype: + return x.eq(t, y) + } + + // Since map, func and slice don't support comparison, this + // case is only reachable if one of x or y is literally nil + // (handled in eqnil) or via interface{} values. + panic(fmt.Sprintf("comparing uncomparable type %s", t)) +} + +// Returns an integer hash of x such that equals(x, y) => hash(x) == hash(y). +func hash(t types.Type, x value) int { + switch x := x.(type) { + case bool: + if x { + return 1 + } + return 0 + case int: + return x + case int8: + return int(x) + case int16: + return int(x) + case int32: + return int(x) + case int64: + return int(x) + case uint: + return int(x) + case uint8: + return int(x) + case uint16: + return int(x) + case uint32: + return int(x) + case uint64: + return int(x) + case uintptr: + return int(x) + case float32: + return int(x) + case float64: + return int(x) + case complex64: + return int(real(x)) + case complex128: + return int(real(x)) + case string: + return hashString(x) + case *value: + return int(uintptr(unsafe.Pointer(x))) + case chan value: + return int(uintptr(reflect.ValueOf(x).Pointer())) + case structure: + return x.hash(t) + case array: + return x.hash(t) + case iface: + return x.hash(t) + case rtype: + return x.hash(t) + } + panic(fmt.Sprintf("%T is unhashable", x)) +} + +// copyVal returns a copy of value v. +// TODO(adonovan): add tests of aliasing and mutation. +func copyVal(v value) value { + if v == nil { + panic("copyVal(nil)") + } + switch v := v.(type) { + case bool, int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, uintptr, float32, float64, complex64, complex128, string, unsafe.Pointer: + return v + case map[value]value: + return v + case *hashmap: + return v + case chan value: + return v + case *value: + return v + case *ssa.Function, *ssa.Builtin, *closure: + return v + case iface: + return v + case []value: + return v + case structure: + a := make(structure, len(v)) + copy(a, v) + return a + case array: + a := make(array, len(v)) + copy(a, v) + return a + case tuple: + break + case rtype: + return v + } + panic(fmt.Sprintf("cannot copy %T", v)) +} + +// Prints in the style of built-in println. +// (More or less; in gc println is actually a compiler intrinsic and +// can distinguish println(1) from println(interface{}(1)).) +func writeValue(buf *bytes.Buffer, v value) { + switch v := v.(type) { + case nil, bool, int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, uintptr, float32, float64, complex64, complex128, string: + fmt.Fprintf(buf, "%v", v) + + case map[value]value: + buf.WriteString("map[") + sep := "" + for k, e := range v { + buf.WriteString(sep) + sep = " " + writeValue(buf, k) + buf.WriteString(":") + writeValue(buf, e) + } + buf.WriteString("]") + + case *hashmap: + buf.WriteString("map[") + sep := " " + for _, e := range v.table { + for e != nil { + buf.WriteString(sep) + sep = " " + writeValue(buf, e.key) + buf.WriteString(":") + writeValue(buf, e.value) + e = e.next + } + } + buf.WriteString("]") + + case chan value: + fmt.Fprintf(buf, "%v", v) // (an address) + + case *value: + if v == nil { + buf.WriteString("") + } else { + fmt.Fprintf(buf, "%p", v) + } + + case iface: + fmt.Fprintf(buf, "(%s, ", v.t) + writeValue(buf, v.v) + buf.WriteString(")") + + case structure: + buf.WriteString("{") + for i, e := range v { + if i > 0 { + buf.WriteString(" ") + } + writeValue(buf, e) + } + buf.WriteString("}") + + case array: + buf.WriteString("[") + for i, e := range v { + if i > 0 { + buf.WriteString(" ") + } + writeValue(buf, e) + } + buf.WriteString("]") + + case []value: + buf.WriteString("[") + for i, e := range v { + if i > 0 { + buf.WriteString(" ") + } + writeValue(buf, e) + } + buf.WriteString("]") + + case *ssa.Function, *ssa.Builtin, *closure: + fmt.Fprintf(buf, "%p", v) // (an address) + + case rtype: + buf.WriteString(v.t.String()) + + case tuple: + // Unreachable in well-formed Go programs + buf.WriteString("(") + for i, e := range v { + if i > 0 { + buf.WriteString(", ") + } + writeValue(buf, e) + } + buf.WriteString(")") + + default: + fmt.Fprintf(buf, "<%T>", v) + } +} + +// Implements printing of Go values in the style of built-in println. +func toString(v value) string { + var b bytes.Buffer + writeValue(&b, v) + return b.String() +} + +// ------------------------------------------------------------------------ +// Iterators + +type stringIter struct { + *strings.Reader + i int +} + +func (it *stringIter) next() tuple { + okv := make(tuple, 3) + ch, n, err := it.ReadRune() + ok := err != io.EOF + okv[0] = ok + if ok { + okv[1] = it.i + okv[2] = ch + } + it.i += n + return okv +} + +type mapIter chan [2]value + +func (it mapIter) next() tuple { + kv, ok := <-it + return tuple{ok, kv[0], kv[1]} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/lift.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/lift.go new file mode 100644 index 00000000..f285f2d5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/lift.go @@ -0,0 +1,574 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file defines the lifting pass which tries to "lift" Alloc +// cells (new/local variables) into SSA registers, replacing loads +// with the dominating stored value, eliminating loads and stores, and +// inserting φ-nodes as needed. + +// Cited papers and resources: +// +// Ron Cytron et al. 1991. Efficiently computing SSA form... +// http://doi.acm.org/10.1145/115372.115320 +// +// Cooper, Harvey, Kennedy. 2001. A Simple, Fast Dominance Algorithm. +// Software Practice and Experience 2001, 4:1-10. +// http://www.hipersoft.rice.edu/grads/publications/dom14.pdf +// +// Daniel Berlin, llvmdev mailing list, 2012. +// http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-January/046638.html +// (Be sure to expand the whole thread.) + +// TODO(adonovan): opt: there are many optimizations worth evaluating, and +// the conventional wisdom for SSA construction is that a simple +// algorithm well engineered often beats those of better asymptotic +// complexity on all but the most egregious inputs. +// +// Danny Berlin suggests that the Cooper et al. algorithm for +// computing the dominance frontier is superior to Cytron et al. +// Furthermore he recommends that rather than computing the DF for the +// whole function then renaming all alloc cells, it may be cheaper to +// compute the DF for each alloc cell separately and throw it away. +// +// Consider exploiting liveness information to avoid creating dead +// φ-nodes which we then immediately remove. +// +// Integrate lifting with scalar replacement of aggregates (SRA) since +// the two are synergistic. +// +// Also see many other "TODO: opt" suggestions in the code. + +import ( + "fmt" + "go/token" + "math/big" + "os" + + "code.google.com/p/go.tools/go/types" +) + +// If true, perform sanity checking and show diagnostic information at +// each step of lifting. Very verbose. +const debugLifting = false + +// domFrontier maps each block to the set of blocks in its dominance +// frontier. The outer slice is conceptually a map keyed by +// Block.Index. The inner slice is conceptually a set, possibly +// containing duplicates. +// +// TODO(adonovan): opt: measure impact of dups; consider a packed bit +// representation, e.g. big.Int, and bitwise parallel operations for +// the union step in the Children loop. +// +// domFrontier's methods mutate the slice's elements but not its +// length, so their receivers needn't be pointers. +// +type domFrontier [][]*BasicBlock + +func (df domFrontier) add(u, v *BasicBlock) { + p := &df[u.Index] + *p = append(*p, v) +} + +// build builds the dominance frontier df for the dominator (sub)tree +// rooted at u, using the Cytron et al. algorithm. +// +// TODO(adonovan): opt: consider Berlin approach, computing pruned SSA +// by pruning the entire IDF computation, rather than merely pruning +// the DF -> IDF step. +func (df domFrontier) build(u *BasicBlock) { + // Encounter each node u in postorder of dom tree. + for _, child := range u.dom.children { + df.build(child) + } + for _, vb := range u.Succs { + if v := vb.dom; v.idom != u { + df.add(u, vb) + } + } + for _, w := range u.dom.children { + for _, vb := range df[w.Index] { + // TODO(adonovan): opt: use word-parallel bitwise union. + if v := vb.dom; v.idom != u { + df.add(u, vb) + } + } + } +} + +func buildDomFrontier(fn *Function) domFrontier { + df := make(domFrontier, len(fn.Blocks)) + df.build(fn.Blocks[0]) + if fn.Recover != nil { + df.build(fn.Recover) + } + return df +} + +// lift attempts to replace local and new Allocs accessed only with +// load/store by SSA registers, inserting φ-nodes where necessary. +// The result is a program in classical pruned SSA form. +// +// Preconditions: +// - fn has no dead blocks (blockopt has run). +// - Def/use info (Operands and Referrers) is up-to-date. +// - The dominator tree is up-to-date. +// +func lift(fn *Function) { + // TODO(adonovan): opt: lots of little optimizations may be + // worthwhile here, especially if they cause us to avoid + // buildDomFrontier. For example: + // + // - Alloc never loaded? Eliminate. + // - Alloc never stored? Replace all loads with a zero constant. + // - Alloc stored once? Replace loads with dominating store; + // don't forget that an Alloc is itself an effective store + // of zero. + // - Alloc used only within a single block? + // Use degenerate algorithm avoiding φ-nodes. + // - Consider synergy with scalar replacement of aggregates (SRA). + // e.g. *(&x.f) where x is an Alloc. + // Perhaps we'd get better results if we generated this as x.f + // i.e. Field(x, .f) instead of Load(FieldIndex(x, .f)). + // Unclear. + // + // But we will start with the simplest correct code. + df := buildDomFrontier(fn) + + if debugLifting { + title := false + for i, blocks := range df { + if blocks != nil { + if !title { + fmt.Fprintf(os.Stderr, "Dominance frontier of %s:\n", fn) + title = true + } + fmt.Fprintf(os.Stderr, "\t%s: %s\n", fn.Blocks[i], blocks) + } + } + } + + newPhis := make(newPhiMap) + + // During this pass we will replace some BasicBlock.Instrs + // (allocs, loads and stores) with nil, keeping a count in + // BasicBlock.gaps. At the end we will reset Instrs to the + // concatenation of all non-dead newPhis and non-nil Instrs + // for the block, reusing the original array if space permits. + + // While we're here, we also eliminate 'rundefers' + // instructions in functions that contain no 'defer' + // instructions. + usesDefer := false + + // Determine which allocs we can lift and number them densely. + // The renaming phase uses this numbering for compact maps. + numAllocs := 0 + for _, b := range fn.Blocks { + b.gaps = 0 + b.rundefers = 0 + for _, instr := range b.Instrs { + switch instr := instr.(type) { + case *Alloc: + index := -1 + if liftAlloc(df, instr, newPhis) { + index = numAllocs + numAllocs++ + } + instr.index = index + case *Defer: + usesDefer = true + case *RunDefers: + b.rundefers++ + } + } + } + + // renaming maps an alloc (keyed by index) to its replacement + // value. Initially the renaming contains nil, signifying the + // zero constant of the appropriate type; we construct the + // Const lazily at most once on each path through the domtree. + // TODO(adonovan): opt: cache per-function not per subtree. + renaming := make([]Value, numAllocs) + + // Renaming. + rename(fn.Blocks[0], renaming, newPhis) + + // Eliminate dead new phis, then prepend the live ones to each block. + for _, b := range fn.Blocks { + + // Compress the newPhis slice to eliminate unused phis. + // TODO(adonovan): opt: compute liveness to avoid + // placing phis in blocks for which the alloc cell is + // not live. + nps := newPhis[b] + j := 0 + for _, np := range nps { + if !phiIsLive(np.phi) { + continue // discard it + } + nps[j] = np + j++ + } + nps = nps[:j] + + rundefersToKill := b.rundefers + if usesDefer { + rundefersToKill = 0 + } + + if j+b.gaps+rundefersToKill == 0 { + continue // fast path: no new phis or gaps + } + + // Compact nps + non-nil Instrs into a new slice. + // TODO(adonovan): opt: compact in situ if there is + // sufficient space or slack in the slice. + dst := make([]Instruction, len(b.Instrs)+j-b.gaps-rundefersToKill) + for i, np := range nps { + dst[i] = np.phi + } + for _, instr := range b.Instrs { + if instr == nil { + continue + } + if !usesDefer { + if _, ok := instr.(*RunDefers); ok { + continue + } + } + dst[j] = instr + j++ + } + for i, np := range nps { + dst[i] = np.phi + } + b.Instrs = dst + } + + // Remove any fn.Locals that were lifted. + j := 0 + for _, l := range fn.Locals { + if l.index < 0 { + fn.Locals[j] = l + j++ + } + } + // Nil out fn.Locals[j:] to aid GC. + for i := j; i < len(fn.Locals); i++ { + fn.Locals[i] = nil + } + fn.Locals = fn.Locals[:j] +} + +func phiIsLive(phi *Phi) bool { + for _, instr := range *phi.Referrers() { + if instr == phi { + continue // self-refs don't count + } + if _, ok := instr.(*DebugRef); ok { + continue // debug refs don't count + } + return true + } + return false +} + +type blockSet struct{ big.Int } // (inherit methods from Int) + +// add adds b to the set and returns true if the set changed. +func (s *blockSet) add(b *BasicBlock) bool { + i := b.Index + if s.Bit(i) != 0 { + return false + } + s.SetBit(&s.Int, i, 1) + return true +} + +// take removes an arbitrary element from a set s and +// returns its index, or returns -1 if empty. +func (s *blockSet) take() int { + l := s.BitLen() + for i := 0; i < l; i++ { + if s.Bit(i) == 1 { + s.SetBit(&s.Int, i, 0) + return i + } + } + return -1 +} + +// newPhi is a pair of a newly introduced φ-node and the lifted Alloc +// it replaces. +type newPhi struct { + phi *Phi + alloc *Alloc +} + +// newPhiMap records for each basic block, the set of newPhis that +// must be prepended to the block. +type newPhiMap map[*BasicBlock][]newPhi + +// liftAlloc determines whether alloc can be lifted into registers, +// and if so, it populates newPhis with all the φ-nodes it may require +// and returns true. +// +func liftAlloc(df domFrontier, alloc *Alloc, newPhis newPhiMap) bool { + // Don't lift aggregates into registers, because we don't have + // a way to express their zero-constants. + switch deref(alloc.Type()).Underlying().(type) { + case *types.Array, *types.Struct: + return false + } + + // Don't lift named return values in functions that defer + // calls that may recover from panic. + if fn := alloc.Parent(); fn.Recover != nil { + for _, nr := range fn.namedResults { + if nr == alloc { + return false + } + } + } + + // Compute defblocks, the set of blocks containing a + // definition of the alloc cell. + var defblocks blockSet + for _, instr := range *alloc.Referrers() { + // Bail out if we discover the alloc is not liftable; + // the only operations permitted to use the alloc are + // loads/stores into the cell, and DebugRef. + switch instr := instr.(type) { + case *Store: + if instr.Val == alloc { + return false // address used as value + } + if instr.Addr != alloc { + panic("Alloc.Referrers is inconsistent") + } + defblocks.add(instr.Block()) + case *UnOp: + if instr.Op != token.MUL { + return false // not a load + } + if instr.X != alloc { + panic("Alloc.Referrers is inconsistent") + } + case *DebugRef: + // ok + default: + return false // some other instruction + } + } + // The Alloc itself counts as a (zero) definition of the cell. + defblocks.add(alloc.Block()) + + if debugLifting { + fmt.Fprintln(os.Stderr, "\tlifting ", alloc, alloc.Name()) + } + + fn := alloc.Parent() + + // Φ-insertion. + // + // What follows is the body of the main loop of the insert-φ + // function described by Cytron et al, but instead of using + // counter tricks, we just reset the 'hasAlready' and 'work' + // sets each iteration. These are bitmaps so it's pretty cheap. + // + // TODO(adonovan): opt: recycle slice storage for W, + // hasAlready, defBlocks across liftAlloc calls. + var hasAlready blockSet + + // Initialize W and work to defblocks. + var work blockSet = defblocks // blocks seen + var W blockSet // blocks to do + W.Set(&defblocks.Int) + + // Traverse iterated dominance frontier, inserting φ-nodes. + for i := W.take(); i != -1; i = W.take() { + u := fn.Blocks[i] + for _, v := range df[u.Index] { + if hasAlready.add(v) { + // Create φ-node. + // It will be prepended to v.Instrs later, if needed. + phi := &Phi{ + Edges: make([]Value, len(v.Preds)), + Comment: alloc.Comment, + } + phi.pos = alloc.Pos() + phi.setType(deref(alloc.Type())) + phi.block = v + if debugLifting { + fmt.Fprintf(os.Stderr, "\tplace %s = %s at block %s\n", phi.Name(), phi, v) + } + newPhis[v] = append(newPhis[v], newPhi{phi, alloc}) + + if work.add(v) { + W.add(v) + } + } + } + } + + return true +} + +// replaceAll replaces all intraprocedural uses of x with y, +// updating x.Referrers and y.Referrers. +// Precondition: x.Referrers() != nil, i.e. x must be local to some function. +// +func replaceAll(x, y Value) { + var rands []*Value + pxrefs := x.Referrers() + pyrefs := y.Referrers() + for _, instr := range *pxrefs { + rands = instr.Operands(rands[:0]) // recycle storage + for _, rand := range rands { + if *rand != nil { + if *rand == x { + *rand = y + } + } + } + if pyrefs != nil { + *pyrefs = append(*pyrefs, instr) // dups ok + } + } + *pxrefs = nil // x is now unreferenced +} + +// renamed returns the value to which alloc is being renamed, +// constructing it lazily if it's the implicit zero initialization. +// +func renamed(renaming []Value, alloc *Alloc) Value { + v := renaming[alloc.index] + if v == nil { + v = zeroConst(deref(alloc.Type())) + renaming[alloc.index] = v + } + return v +} + +// rename implements the (Cytron et al) SSA renaming algorithm, a +// preorder traversal of the dominator tree replacing all loads of +// Alloc cells with the value stored to that cell by the dominating +// store instruction. For lifting, we need only consider loads, +// stores and φ-nodes. +// +// renaming is a map from *Alloc (keyed by index number) to its +// dominating stored value; newPhis[x] is the set of new φ-nodes to be +// prepended to block x. +// +func rename(u *BasicBlock, renaming []Value, newPhis newPhiMap) { + // Each φ-node becomes the new name for its associated Alloc. + for _, np := range newPhis[u] { + phi := np.phi + alloc := np.alloc + renaming[alloc.index] = phi + } + + // Rename loads and stores of allocs. + for i, instr := range u.Instrs { + switch instr := instr.(type) { + case *Alloc: + if instr.index >= 0 { // store of zero to Alloc cell + // Replace dominated loads by the zero value. + renaming[instr.index] = nil + if debugLifting { + fmt.Fprintf(os.Stderr, "\tkill alloc %s\n", instr) + } + // Delete the Alloc. + u.Instrs[i] = nil + u.gaps++ + } + + case *Store: + if alloc, ok := instr.Addr.(*Alloc); ok && alloc.index >= 0 { // store to Alloc cell + // Replace dominated loads by the stored value. + renaming[alloc.index] = instr.Val + if debugLifting { + fmt.Fprintf(os.Stderr, "\tkill store %s; new value: %s\n", + instr, instr.Val.Name()) + } + // Delete the Store. + u.Instrs[i] = nil + u.gaps++ + } + + case *UnOp: + if instr.Op == token.MUL { + if alloc, ok := instr.X.(*Alloc); ok && alloc.index >= 0 { // load of Alloc cell + newval := renamed(renaming, alloc) + if debugLifting { + fmt.Fprintf(os.Stderr, "\tupdate load %s = %s with %s\n", + instr.Name(), instr, newval.Name()) + } + // Replace all references to + // the loaded value by the + // dominating stored value. + replaceAll(instr, newval) + // Delete the Load. + u.Instrs[i] = nil + u.gaps++ + } + } + + case *DebugRef: + if alloc, ok := instr.X.(*Alloc); ok && alloc.index >= 0 { // ref of Alloc cell + if instr.IsAddr { + instr.X = renamed(renaming, alloc) + instr.IsAddr = false + + // Add DebugRef to instr.X's referrers. + if refs := instr.X.Referrers(); refs != nil { + *refs = append(*refs, instr) + } + } else { + // A source expression denotes the address + // of an Alloc that was optimized away. + instr.X = nil + + // Delete the DebugRef. + u.Instrs[i] = nil + u.gaps++ + } + } + } + } + + // For each φ-node in a CFG successor, rename the edge. + for _, v := range u.Succs { + phis := newPhis[v] + if len(phis) == 0 { + continue + } + i := v.predIndex(u) + for _, np := range phis { + phi := np.phi + alloc := np.alloc + newval := renamed(renaming, alloc) + if debugLifting { + fmt.Fprintf(os.Stderr, "\tsetphi %s edge %s -> %s (#%d) (alloc=%s) := %s\n", + phi.Name(), u, v, i, alloc.Name(), newval.Name()) + } + phi.Edges[i] = newval + if prefs := newval.Referrers(); prefs != nil { + *prefs = append(*prefs, phi) + } + } + } + + // Continue depth-first recursion over domtree, pushing a + // fresh copy of the renaming map for each subtree. + for _, v := range u.dom.children { + // TODO(adonovan): opt: avoid copy on final iteration; use destructive update. + r := make([]Value, len(renaming)) + copy(r, renaming) + rename(v, r, newPhis) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/lvalue.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/lvalue.go new file mode 100644 index 00000000..2e8eb9d0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/lvalue.go @@ -0,0 +1,122 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// lvalues are the union of addressable expressions and map-index +// expressions. + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +// An lvalue represents an assignable location that may appear on the +// left-hand side of an assignment. This is a generalization of a +// pointer to permit updates to elements of maps. +// +type lvalue interface { + store(fn *Function, v Value) // stores v into the location + load(fn *Function) Value // loads the contents of the location + address(fn *Function) Value // address of the location + typ() types.Type // returns the type of the location +} + +// An address is an lvalue represented by a true pointer. +type address struct { + addr Value + starPos token.Pos // source position, if from explicit *addr + expr ast.Expr // source syntax [debug mode] +} + +func (a *address) load(fn *Function) Value { + load := emitLoad(fn, a.addr) + load.pos = a.starPos + return load +} + +func (a *address) store(fn *Function, v Value) { + store := emitStore(fn, a.addr, v) + store.pos = a.starPos + if a.expr != nil { + // store.Val is v, converted for assignability. + emitDebugRef(fn, a.expr, store.Val, false) + } +} + +func (a *address) address(fn *Function) Value { + if a.expr != nil { + emitDebugRef(fn, a.expr, a.addr, true) + } + return a.addr +} + +func (a *address) typ() types.Type { + return deref(a.addr.Type()) +} + +// An element is an lvalue represented by m[k], the location of an +// element of a map or string. These locations are not addressable +// since pointers cannot be formed from them, but they do support +// load(), and in the case of maps, store(). +// +type element struct { + m, k Value // map or string + t types.Type // map element type or string byte type + pos token.Pos // source position of colon ({k:v}) or lbrack (m[k]=v) +} + +func (e *element) load(fn *Function) Value { + l := &Lookup{ + X: e.m, + Index: e.k, + } + l.setPos(e.pos) + l.setType(e.t) + return fn.emit(l) +} + +func (e *element) store(fn *Function, v Value) { + up := &MapUpdate{ + Map: e.m, + Key: e.k, + Value: emitConv(fn, v, e.t), + } + up.pos = e.pos + fn.emit(up) +} + +func (e *element) address(fn *Function) Value { + panic("map/string elements are not addressable") +} + +func (e *element) typ() types.Type { + return e.t +} + +// A blank is a dummy variable whose name is "_". +// It is not reified: loads are illegal and stores are ignored. +// +type blank struct{} + +func (bl blank) load(fn *Function) Value { + panic("blank.load is illegal") +} + +func (bl blank) store(fn *Function, v Value) { + // no-op +} + +func (bl blank) address(fn *Function) Value { + panic("blank var is not addressable") +} + +func (bl blank) typ() types.Type { + // This should be the type of the blank Ident; the typechecker + // doesn't provide this yet, but fortunately, we don't need it + // yet either. + panic("blank.typ is unimplemented") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/print.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/print.go new file mode 100644 index 00000000..2c9a3b3a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/print.go @@ -0,0 +1,429 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file implements the String() methods for all Value and +// Instruction types. + +// TODO(adonovan): define WriteValue(*bytes.Buffer) and avoid creation +// of garbage. + +import ( + "bytes" + "fmt" + "io" + "reflect" + "sort" + + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +// relName returns the name of v relative to i. +// In most cases, this is identical to v.Name(), but references to +// Functions (including methods) and Globals use RelString and +// all types are displayed with relType, so that only cross-package +// references are package-qualified. +// +func relName(v Value, i Instruction) string { + var from *types.Package + if i != nil { + from = i.Parent().pkgobj() + } + switch v := v.(type) { + case Member: // *Function or *Global + return v.RelString(from) + case *Const: + return v.RelString(from) + } + return v.Name() +} + +func relType(t types.Type, from *types.Package) string { + return types.TypeString(from, t) +} + +func relString(m Member, from *types.Package) string { + // NB: not all globals have an Object (e.g. init$guard), + // so use Package().Object not Object.Package(). + if obj := m.Package().Object; obj != nil && obj != from { + return fmt.Sprintf("%s.%s", obj.Path(), m.Name()) + } + return m.Name() +} + +// Value.String() +// +// This method is provided only for debugging. +// It never appears in disassembly, which uses Value.Name(). + +func (v *Parameter) String() string { + return fmt.Sprintf("parameter %s : %s", v.Name(), v.Type()) +} + +func (v *Capture) String() string { + return fmt.Sprintf("capture %s : %s", v.Name(), v.Type()) +} + +func (v *Builtin) String() string { + return fmt.Sprintf("builtin %s", v.Name()) +} + +// Instruction.String() + +func (v *Alloc) String() string { + op := "local" + if v.Heap { + op = "new" + } + return fmt.Sprintf("%s %s (%s)", op, relType(deref(v.Type()), v.Parent().pkgobj()), v.Comment) +} + +func (v *Phi) String() string { + var b bytes.Buffer + b.WriteString("phi [") + for i, edge := range v.Edges { + if i > 0 { + b.WriteString(", ") + } + // Be robust against malformed CFG. + blockname := "?" + if v.block != nil && i < len(v.block.Preds) { + blockname = v.block.Preds[i].String() + } + b.WriteString(blockname) + b.WriteString(": ") + edgeVal := "" // be robust + if edge != nil { + edgeVal = relName(edge, v) + } + b.WriteString(edgeVal) + } + b.WriteString("]") + if v.Comment != "" { + b.WriteString(" #") + b.WriteString(v.Comment) + } + return b.String() +} + +func printCall(v *CallCommon, prefix string, instr Instruction) string { + var b bytes.Buffer + b.WriteString(prefix) + if !v.IsInvoke() { + b.WriteString(relName(v.Value, instr)) + } else { + fmt.Fprintf(&b, "invoke %s.%s", relName(v.Value, instr), v.Method.Name()) + } + b.WriteString("(") + for i, arg := range v.Args { + if i > 0 { + b.WriteString(", ") + } + b.WriteString(relName(arg, instr)) + } + if v.Signature().Variadic() { + b.WriteString("...") + } + b.WriteString(")") + return b.String() +} + +func (c *CallCommon) String() string { + return printCall(c, "", nil) +} + +func (v *Call) String() string { + return printCall(&v.Call, "", v) +} + +func (v *ChangeType) String() string { + return fmt.Sprintf("changetype %s <- %s (%s)", relType(v.Type(), v.Parent().pkgobj()), v.X.Type(), relName(v.X, v)) +} + +func (v *BinOp) String() string { + return fmt.Sprintf("%s %s %s", relName(v.X, v), v.Op.String(), relName(v.Y, v)) +} + +func (v *UnOp) String() string { + return fmt.Sprintf("%s%s%s", v.Op, relName(v.X, v), commaOk(v.CommaOk)) +} + +func (v *Convert) String() string { + return fmt.Sprintf("convert %s <- %s (%s)", relType(v.Type(), v.Parent().pkgobj()), v.X.Type(), relName(v.X, v)) +} + +func (v *ChangeInterface) String() string { + return fmt.Sprintf("change interface %s <- %s (%s)", v.Type(), v.X.Type(), relName(v.X, v)) +} + +func (v *MakeInterface) String() string { + return fmt.Sprintf("make %s <- %s (%s)", relType(v.Type(), v.Parent().pkgobj()), relType(v.X.Type(), v.Parent().pkgobj()), relName(v.X, v)) +} + +func (v *MakeClosure) String() string { + var b bytes.Buffer + fmt.Fprintf(&b, "make closure %s", relName(v.Fn, v)) + if v.Bindings != nil { + b.WriteString(" [") + for i, c := range v.Bindings { + if i > 0 { + b.WriteString(", ") + } + b.WriteString(relName(c, v)) + } + b.WriteString("]") + } + return b.String() +} + +func (v *MakeSlice) String() string { + var b bytes.Buffer + b.WriteString("make ") + b.WriteString(v.Type().String()) + b.WriteString(" ") + b.WriteString(relName(v.Len, v)) + b.WriteString(" ") + b.WriteString(relName(v.Cap, v)) + return b.String() +} + +func (v *Slice) String() string { + var b bytes.Buffer + b.WriteString("slice ") + b.WriteString(relName(v.X, v)) + b.WriteString("[") + if v.Low != nil { + b.WriteString(relName(v.Low, v)) + } + b.WriteString(":") + if v.High != nil { + b.WriteString(relName(v.High, v)) + } + if v.Max != nil { + b.WriteString(":") + b.WriteString(relName(v.Max, v)) + } + b.WriteString("]") + return b.String() +} + +func (v *MakeMap) String() string { + res := "" + if v.Reserve != nil { + res = relName(v.Reserve, v) + } + return fmt.Sprintf("make %s %s", v.Type(), res) +} + +func (v *MakeChan) String() string { + return fmt.Sprintf("make %s %s", v.Type(), relName(v.Size, v)) +} + +func (v *FieldAddr) String() string { + st := deref(v.X.Type()).Underlying().(*types.Struct) + // Be robust against a bad index. + name := "?" + if 0 <= v.Field && v.Field < st.NumFields() { + name = st.Field(v.Field).Name() + } + return fmt.Sprintf("&%s.%s [#%d]", relName(v.X, v), name, v.Field) +} + +func (v *Field) String() string { + st := v.X.Type().Underlying().(*types.Struct) + // Be robust against a bad index. + name := "?" + if 0 <= v.Field && v.Field < st.NumFields() { + name = st.Field(v.Field).Name() + } + return fmt.Sprintf("%s.%s [#%d]", relName(v.X, v), name, v.Field) +} + +func (v *IndexAddr) String() string { + return fmt.Sprintf("&%s[%s]", relName(v.X, v), relName(v.Index, v)) +} + +func (v *Index) String() string { + return fmt.Sprintf("%s[%s]", relName(v.X, v), relName(v.Index, v)) +} + +func (v *Lookup) String() string { + return fmt.Sprintf("%s[%s]%s", relName(v.X, v), relName(v.Index, v), commaOk(v.CommaOk)) +} + +func (v *Range) String() string { + return "range " + relName(v.X, v) +} + +func (v *Next) String() string { + return "next " + relName(v.Iter, v) +} + +func (v *TypeAssert) String() string { + return fmt.Sprintf("typeassert%s %s.(%s)", commaOk(v.CommaOk), relName(v.X, v), relType(v.AssertedType, v.Parent().pkgobj())) +} + +func (v *Extract) String() string { + return fmt.Sprintf("extract %s #%d", relName(v.Tuple, v), v.Index) +} + +func (s *Jump) String() string { + // Be robust against malformed CFG. + blockname := "?" + if s.block != nil && len(s.block.Succs) == 1 { + blockname = s.block.Succs[0].String() + } + return fmt.Sprintf("jump %s", blockname) +} + +func (s *If) String() string { + // Be robust against malformed CFG. + tblockname, fblockname := "?", "?" + if s.block != nil && len(s.block.Succs) == 2 { + tblockname = s.block.Succs[0].String() + fblockname = s.block.Succs[1].String() + } + return fmt.Sprintf("if %s goto %s else %s", relName(s.Cond, s), tblockname, fblockname) +} + +func (s *Go) String() string { + return printCall(&s.Call, "go ", s) +} + +func (s *Panic) String() string { + return "panic " + relName(s.X, s) +} + +func (s *Return) String() string { + var b bytes.Buffer + b.WriteString("return") + for i, r := range s.Results { + if i == 0 { + b.WriteString(" ") + } else { + b.WriteString(", ") + } + b.WriteString(relName(r, s)) + } + return b.String() +} + +func (*RunDefers) String() string { + return "rundefers" +} + +func (s *Send) String() string { + return fmt.Sprintf("send %s <- %s", relName(s.Chan, s), relName(s.X, s)) +} + +func (s *Defer) String() string { + return printCall(&s.Call, "defer ", s) +} + +func (s *Select) String() string { + var b bytes.Buffer + for i, st := range s.States { + if i > 0 { + b.WriteString(", ") + } + if st.Dir == types.RecvOnly { + b.WriteString("<-") + b.WriteString(relName(st.Chan, s)) + } else { + b.WriteString(relName(st.Chan, s)) + b.WriteString("<-") + b.WriteString(relName(st.Send, s)) + } + } + non := "" + if !s.Blocking { + non = "non" + } + return fmt.Sprintf("select %sblocking [%s]", non, b.String()) +} + +func (s *Store) String() string { + return fmt.Sprintf("*%s = %s", relName(s.Addr, s), relName(s.Val, s)) +} + +func (s *MapUpdate) String() string { + return fmt.Sprintf("%s[%s] = %s", relName(s.Map, s), relName(s.Key, s), relName(s.Value, s)) +} + +func (s *DebugRef) String() string { + p := s.Parent().Prog.Fset.Position(s.Pos()) + var descr interface{} + if s.object != nil { + descr = s.object // e.g. "var x int" + } else { + descr = reflect.TypeOf(s.Expr) // e.g. "*ast.CallExpr" + } + var addr string + if s.IsAddr { + addr = "address of " + } + return fmt.Sprintf("; %s%s @ %d:%d is %s", addr, descr, p.Line, p.Column, s.X.Name()) +} + +func (p *Package) String() string { + return "package " + p.Object.Path() +} + +var _ io.WriterTo = (*Package)(nil) // *Package implements io.Writer + +func (p *Package) WriteTo(w io.Writer) (int64, error) { + var buf bytes.Buffer + WritePackage(&buf, p) + n, err := w.Write(buf.Bytes()) + return int64(n), err +} + +// WritePackage writes to buf a human-readable summary of p. +func WritePackage(buf *bytes.Buffer, p *Package) { + fmt.Fprintf(buf, "%s:\n", p) + + var names []string + maxname := 0 + for name := range p.Members { + if l := len(name); l > maxname { + maxname = l + } + names = append(names, name) + } + + sort.Strings(names) + for _, name := range names { + switch mem := p.Members[name].(type) { + case *NamedConst: + fmt.Fprintf(buf, " const %-*s %s = %s\n", + maxname, name, mem.Name(), mem.Value.RelString(p.Object)) + + case *Function: + fmt.Fprintf(buf, " func %-*s %s\n", + maxname, name, types.TypeString(p.Object, mem.Type())) + + case *Type: + fmt.Fprintf(buf, " type %-*s %s\n", + maxname, name, types.TypeString(p.Object, mem.Type().Underlying())) + for _, meth := range typeutil.IntuitiveMethodSet(mem.Type(), &p.Prog.MethodSets) { + fmt.Fprintf(buf, " %s\n", types.SelectionString(p.Object, meth)) + } + + case *Global: + fmt.Fprintf(buf, " var %-*s %s\n", + maxname, name, types.TypeString(p.Object, mem.Type().(*types.Pointer).Elem())) + } + } + + fmt.Fprintf(buf, "\n") +} + +func commaOk(x bool) string { + if x { + return ",ok" + } + return "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/promote.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/promote.go new file mode 100644 index 00000000..ea5b6afb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/promote.go @@ -0,0 +1,430 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file defines utilities for population of method sets and +// synthesis of wrapper methods. +// +// Wrappers include: +// - indirection/promotion wrappers for methods of embedded fields. +// - interface method wrappers for expressions I.f. +// - bound method wrappers, for uncalled obj.Method closures. + +// TODO(adonovan): split and rename to {methodset,wrappers}.go. + +import ( + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +// Method returns the Function implementing method meth, building +// wrapper methods on demand. +// +// Thread-safe. +// +// EXCLUSIVE_LOCKS_ACQUIRED(prog.methodsMu) +// +func (prog *Program) Method(meth *types.Selection) *Function { + if meth == nil { + panic("Method(nil)") + } + T := meth.Recv() + if prog.mode&LogSource != 0 { + defer logStack("Method %s %v", T, meth)() + } + + prog.methodsMu.Lock() + defer prog.methodsMu.Unlock() + + return prog.addMethod(prog.createMethodSet(T), meth) +} + +// LookupMethod returns the implementation of the method of type T +// identified by (pkg, name). It panics if there is no such method. +// +func (prog *Program) LookupMethod(T types.Type, pkg *types.Package, name string) *Function { + sel := prog.MethodSets.MethodSet(T).Lookup(pkg, name) + if sel == nil { + panic(fmt.Sprintf("%s has no method %s", T, types.Id(pkg, name))) + } + return prog.Method(sel) +} + +// makeMethods ensures that all wrappers in the complete method set of +// T are generated. It is equivalent to calling prog.Method() on all +// members of T.methodSet(), but acquires fewer locks. +// +// It reports whether the type's method set is non-empty. +// +// Thread-safe. +// +// EXCLUSIVE_LOCKS_ACQUIRED(prog.methodsMu) +// +func (prog *Program) makeMethods(T types.Type) bool { + tmset := prog.MethodSets.MethodSet(T) + n := tmset.Len() + if n == 0 { + return false // empty (common case) + } + + if prog.mode&LogSource != 0 { + defer logStack("makeMethods %s", T)() + } + + prog.methodsMu.Lock() + defer prog.methodsMu.Unlock() + + mset := prog.createMethodSet(T) + if !mset.complete { + mset.complete = true + for i := 0; i < n; i++ { + prog.addMethod(mset, tmset.At(i)) + } + } + + return true +} + +type methodSet struct { + mapping map[string]*Function // populated lazily + complete bool // mapping contains all methods +} + +// EXCLUSIVE_LOCKS_REQUIRED(prog.methodsMu) +func (prog *Program) createMethodSet(T types.Type) *methodSet { + mset, ok := prog.methodSets.At(T).(*methodSet) + if !ok { + mset = &methodSet{mapping: make(map[string]*Function)} + prog.methodSets.Set(T, mset) + } + return mset +} + +// EXCLUSIVE_LOCKS_REQUIRED(prog.methodsMu) +func (prog *Program) addMethod(mset *methodSet, meth *types.Selection) *Function { + id := meth.Obj().Id() + fn := mset.mapping[id] + if fn == nil { + fn = findMethod(prog, meth) + mset.mapping[id] = fn + } + return fn +} + +// TypesWithMethodSets returns a new unordered slice containing all +// types in the program for which a complete (non-empty) method set is +// required at run-time. +// +// It is the union of pkg.TypesWithMethodSets() for all pkg in +// prog.AllPackages(). +// +// Thread-safe. +// +// EXCLUSIVE_LOCKS_ACQUIRED(prog.methodsMu) +// +func (prog *Program) TypesWithMethodSets() []types.Type { + prog.methodsMu.Lock() + defer prog.methodsMu.Unlock() + + var res []types.Type + prog.methodSets.Iterate(func(T types.Type, v interface{}) { + if v.(*methodSet).complete { + res = append(res, T) + } + }) + return res +} + +// TypesWithMethodSets returns an unordered slice containing the +// set of all types referenced within package pkg and not belonging to +// some other package, for which a complete (non-empty) method set is +// required at run-time. +// +// A type belongs to a package if it is a named type or a pointer to a +// named type, and the name was defined in that package. All other +// types belong to no package. +// +// A type may appear in the TypesWithMethodSets() set of multiple +// distinct packages if that type belongs to no package. Typical +// compilers emit method sets for such types multiple times (using +// weak symbols) into each package that references them, with the +// linker performing duplicate elimination. +// +// This set includes the types of all operands of some MakeInterface +// instruction, the types of all exported members of some package, and +// all types that are subcomponents, since even types that aren't used +// directly may be derived via reflection. +// +// Callers must not mutate the result. +// +func (pkg *Package) TypesWithMethodSets() []types.Type { + return pkg.methodSets +} + +// ------------------------------------------------------------------------ + +// declaredFunc returns the concrete function/method denoted by obj. +// Panic ensues if there is none. +// +func (prog *Program) declaredFunc(obj *types.Func) *Function { + if v := prog.packageLevelValue(obj); v != nil { + return v.(*Function) + } + panic("no concrete method: " + obj.String()) +} + +// recvType returns the receiver type of method obj. +func recvType(obj *types.Func) types.Type { + return obj.Type().(*types.Signature).Recv().Type() +} + +// findMethod returns the concrete Function for the method meth, +// synthesizing wrappers as needed. +// +// EXCLUSIVE_LOCKS_REQUIRED(prog.methodsMu) +// +func findMethod(prog *Program, meth *types.Selection) *Function { + needsPromotion := len(meth.Index()) > 1 + obj := meth.Obj().(*types.Func) + needsIndirection := !isPointer(recvType(obj)) && isPointer(meth.Recv()) + + if needsPromotion || needsIndirection { + return makeWrapper(prog, meth.Recv(), meth) + } + + if _, ok := meth.Recv().Underlying().(*types.Interface); ok { + return interfaceMethodWrapper(prog, meth.Recv(), obj) + } + + return prog.declaredFunc(obj) +} + +// makeWrapper returns a synthetic wrapper Function that optionally +// performs receiver indirection, implicit field selections and then a +// tailcall of a "promoted" method. For example, given these decls: +// +// type A struct {B} +// type B struct {*C} +// type C ... +// func (*C) f() +// +// then makeWrapper(typ=A, obj={Func:(*C).f, Indices=[B,C,f]}) +// synthesize this wrapper method: +// +// func (a A) f() { return a.B.C->f() } +// +// prog is the program to which the synthesized method will belong. +// typ is the receiver type of the wrapper method. obj is the +// type-checker's object for the promoted method; its Func may be a +// concrete or an interface method. +// +// EXCLUSIVE_LOCKS_REQUIRED(prog.methodsMu) +// +func makeWrapper(prog *Program, typ types.Type, meth *types.Selection) *Function { + obj := meth.Obj().(*types.Func) + oldsig := obj.Type().(*types.Signature) + recv := newVar("recv", typ) + + description := fmt.Sprintf("wrapper for %s", obj) + if prog.mode&LogSource != 0 { + defer logStack("make %s to (%s)", description, typ)() + } + fn := &Function{ + name: obj.Name(), + method: meth, + Signature: changeRecv(oldsig, recv), + Synthetic: description, + Prog: prog, + pos: obj.Pos(), + } + fn.startBody() + fn.addSpilledParam(recv) + createParams(fn) + + var v Value = fn.Locals[0] // spilled receiver + if isPointer(typ) { + // TODO(adonovan): consider emitting a nil-pointer check here + // with a nice error message, like gc does. + v = emitLoad(fn, v) + } + + // Invariant: v is a pointer, either + // value of *A receiver param, or + // address of A spilled receiver. + + // We use pointer arithmetic (FieldAddr possibly followed by + // Load) in preference to value extraction (Field possibly + // preceded by Load). + + indices := meth.Index() + v = emitImplicitSelections(fn, v, indices[:len(indices)-1]) + + // Invariant: v is a pointer, either + // value of implicit *C field, or + // address of implicit C field. + + var c Call + if _, ok := oldsig.Recv().Type().Underlying().(*types.Interface); !ok { // concrete method + if !isPointer(oldsig.Recv().Type()) { + v = emitLoad(fn, v) + } + c.Call.Value = prog.declaredFunc(obj) + c.Call.Args = append(c.Call.Args, v) + } else { + c.Call.Method = obj + c.Call.Value = emitLoad(fn, v) + } + for _, arg := range fn.Params[1:] { + c.Call.Args = append(c.Call.Args, arg) + } + emitTailCall(fn, &c) + fn.finishBody() + return fn +} + +// createParams creates parameters for wrapper method fn based on its +// Signature.Params, which do not include the receiver. +// +func createParams(fn *Function) { + var last *Parameter + tparams := fn.Signature.Params() + for i, n := 0, tparams.Len(); i < n; i++ { + last = fn.addParamObj(tparams.At(i)) + } + if fn.Signature.Variadic() { + last.typ = types.NewSlice(last.typ) + } +} + +// Wrappers for standalone interface methods ---------------------------------- + +// interfaceMethodWrapper returns a synthetic wrapper function +// permitting an abstract method obj to be called like a standalone +// function, e.g.: +// +// type I interface { f(x int) R } +// m := I.f // wrapper +// var i I +// m(i, 0) +// +// The wrapper is defined as if by: +// +// func (i I) f(x int, ...) R { +// return i.f(x, ...) +// } +// +// typ is the type of the receiver (I here). It isn't necessarily +// equal to the recvType(obj) because one interface may embed another. +// TODO(adonovan): more tests. +// +// TODO(adonovan): opt: currently the stub is created even when used +// in call position: I.f(i, 0). Clearly this is suboptimal. +// +// EXCLUSIVE_LOCKS_REQUIRED(prog.methodsMu) +// +func interfaceMethodWrapper(prog *Program, typ types.Type, obj *types.Func) *Function { + // If one interface embeds another they'll share the same + // wrappers for common methods. This is safe, but it might + // confuse some tools because of the implicit interface + // conversion applied to the first argument. If this becomes + // a problem, we should include 'typ' in the memoization key. + fn, ok := prog.ifaceMethodWrappers[obj] + if !ok { + description := "interface method wrapper" + if prog.mode&LogSource != 0 { + defer logStack("(%s).%s, %s", typ, obj.Name(), description)() + } + fn = &Function{ + name: obj.Name(), + object: obj, + Signature: obj.Type().(*types.Signature), + Synthetic: description, + pos: obj.Pos(), + Prog: prog, + } + fn.startBody() + fn.addParam("recv", typ, token.NoPos) + createParams(fn) + var c Call + + c.Call.Method = obj + c.Call.Value = fn.Params[0] + for _, arg := range fn.Params[1:] { + c.Call.Args = append(c.Call.Args, arg) + } + emitTailCall(fn, &c) + fn.finishBody() + + prog.ifaceMethodWrappers[obj] = fn + } + return fn +} + +// Wrappers for bound methods ------------------------------------------------- + +// boundMethodWrapper returns a synthetic wrapper function that +// delegates to a concrete or interface method. +// The wrapper has one free variable, the method's receiver. +// Use MakeClosure with such a wrapper to construct a bound-method +// closure. e.g.: +// +// type T int or: type T interface { meth() } +// func (t T) meth() +// var t T +// f := t.meth +// f() // calls t.meth() +// +// f is a closure of a synthetic wrapper defined as if by: +// +// f := func() { return t.meth() } +// +// EXCLUSIVE_LOCKS_ACQUIRED(meth.Prog.methodsMu) +// +func boundMethodWrapper(prog *Program, obj *types.Func) *Function { + prog.methodsMu.Lock() + defer prog.methodsMu.Unlock() + fn, ok := prog.boundMethodWrappers[obj] + if !ok { + description := fmt.Sprintf("bound method wrapper for %s", obj) + if prog.mode&LogSource != 0 { + defer logStack("%s", description)() + } + fn = &Function{ + name: "bound$" + obj.FullName(), + Signature: changeRecv(obj.Type().(*types.Signature), nil), // drop receiver + Synthetic: description, + Prog: prog, + pos: obj.Pos(), + } + + cap := &Capture{name: "recv", typ: recvType(obj), parent: fn} + fn.FreeVars = []*Capture{cap} + fn.startBody() + createParams(fn) + var c Call + + if _, ok := recvType(obj).Underlying().(*types.Interface); !ok { // concrete + c.Call.Value = prog.declaredFunc(obj) + c.Call.Args = []Value{cap} + } else { + c.Call.Value = cap + c.Call.Method = obj + } + for _, arg := range fn.Params { + c.Call.Args = append(c.Call.Args, arg) + } + emitTailCall(fn, &c) + fn.finishBody() + + prog.boundMethodWrappers[obj] = fn + } + return fn +} + +func changeRecv(s *types.Signature, recv *types.Var) *types.Signature { + return types.NewSignature(nil, recv, s.Params(), s.Results(), s.Variadic()) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/sanity.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/sanity.go new file mode 100644 index 00000000..4b0fb7e3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/sanity.go @@ -0,0 +1,483 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// An optional pass for sanity-checking invariants of the SSA representation. +// Currently it checks CFG invariants but little at the instruction level. + +import ( + "fmt" + "io" + "os" + "strings" + + "code.google.com/p/go.tools/go/types" +) + +type sanity struct { + reporter io.Writer + fn *Function + block *BasicBlock + insane bool +} + +// sanityCheck performs integrity checking of the SSA representation +// of the function fn and returns true if it was valid. Diagnostics +// are written to reporter if non-nil, os.Stderr otherwise. Some +// diagnostics are only warnings and do not imply a negative result. +// +// Sanity-checking is intended to facilitate the debugging of code +// transformation passes. +// +func sanityCheck(fn *Function, reporter io.Writer) bool { + if reporter == nil { + reporter = os.Stderr + } + return (&sanity{reporter: reporter}).checkFunction(fn) +} + +// mustSanityCheck is like sanityCheck but panics instead of returning +// a negative result. +// +func mustSanityCheck(fn *Function, reporter io.Writer) { + if !sanityCheck(fn, reporter) { + fn.WriteTo(os.Stderr) + panic("SanityCheck failed") + } +} + +func (s *sanity) diagnostic(prefix, format string, args ...interface{}) { + fmt.Fprintf(s.reporter, "%s: function %s", prefix, s.fn) + if s.block != nil { + fmt.Fprintf(s.reporter, ", block %s", s.block) + } + io.WriteString(s.reporter, ": ") + fmt.Fprintf(s.reporter, format, args...) + io.WriteString(s.reporter, "\n") +} + +func (s *sanity) errorf(format string, args ...interface{}) { + s.insane = true + s.diagnostic("Error", format, args...) +} + +func (s *sanity) warnf(format string, args ...interface{}) { + s.diagnostic("Warning", format, args...) +} + +// findDuplicate returns an arbitrary basic block that appeared more +// than once in blocks, or nil if all were unique. +func findDuplicate(blocks []*BasicBlock) *BasicBlock { + if len(blocks) < 2 { + return nil + } + if blocks[0] == blocks[1] { + return blocks[0] + } + // Slow path: + m := make(map[*BasicBlock]bool) + for _, b := range blocks { + if m[b] { + return b + } + m[b] = true + } + return nil +} + +func (s *sanity) checkInstr(idx int, instr Instruction) { + switch instr := instr.(type) { + case *If, *Jump, *Return, *Panic: + s.errorf("control flow instruction not at end of block") + case *Phi: + if idx == 0 { + // It suffices to apply this check to just the first phi node. + if dup := findDuplicate(s.block.Preds); dup != nil { + s.errorf("phi node in block with duplicate predecessor %s", dup) + } + } else { + prev := s.block.Instrs[idx-1] + if _, ok := prev.(*Phi); !ok { + s.errorf("Phi instruction follows a non-Phi: %T", prev) + } + } + if ne, np := len(instr.Edges), len(s.block.Preds); ne != np { + s.errorf("phi node has %d edges but %d predecessors", ne, np) + + } else { + for i, e := range instr.Edges { + if e == nil { + s.errorf("phi node '%s' has no value for edge #%d from %s", instr.Comment, i, s.block.Preds[i]) + } + } + } + + case *Alloc: + if !instr.Heap { + found := false + for _, l := range s.fn.Locals { + if l == instr { + found = true + break + } + } + if !found { + s.errorf("local alloc %s = %s does not appear in Function.Locals", instr.Name(), instr) + } + } + + case *BinOp: + case *Call: + case *ChangeInterface: + case *ChangeType: + case *Convert: + if _, ok := instr.X.Type().Underlying().(*types.Basic); !ok { + if _, ok := instr.Type().Underlying().(*types.Basic); !ok { + s.errorf("convert %s -> %s: at least one type must be basic", instr.X.Type(), instr.Type()) + } + } + + case *Defer: + case *Extract: + case *Field: + case *FieldAddr: + case *Go: + case *Index: + case *IndexAddr: + case *Lookup: + case *MakeChan: + case *MakeClosure: + numFree := len(instr.Fn.(*Function).FreeVars) + numBind := len(instr.Bindings) + if numFree != numBind { + s.errorf("MakeClosure has %d Bindings for function %s with %d free vars", + numBind, instr.Fn, numFree) + + } + if recv := instr.Type().(*types.Signature).Recv(); recv != nil { + s.errorf("MakeClosure's type includes receiver %s", recv.Type()) + } + + case *MakeInterface: + case *MakeMap: + case *MakeSlice: + case *MapUpdate: + case *Next: + case *Range: + case *RunDefers: + case *Select: + case *Send: + case *Slice: + case *Store: + case *TypeAssert: + case *UnOp: + case *DebugRef: + // TODO(adonovan): implement checks. + default: + panic(fmt.Sprintf("Unknown instruction type: %T", instr)) + } + + if call, ok := instr.(CallInstruction); ok { + if call.Common().Signature() == nil { + s.errorf("nil signature: %s", call) + } + } + + // Check that value-defining instructions have valid types. + if v, ok := instr.(Value); ok { + t := v.Type() + if t == nil { + s.errorf("no type: %s = %s", v.Name(), v) + } else if t == tRangeIter { + // not a proper type; ignore. + } else if b, ok := t.Underlying().(*types.Basic); ok && b.Info()&types.IsUntyped != 0 { + s.errorf("instruction has 'untyped' result: %s = %s : %s", v.Name(), v, t) + } + } + + // TODO(adonovan): sanity-check Consts used as instruction Operands(), + // e.g. reject Consts with "untyped" types. + // + // All other non-Instruction Values can be found via their + // enclosing Function or Package. +} + +func (s *sanity) checkFinalInstr(idx int, instr Instruction) { + switch instr := instr.(type) { + case *If: + if nsuccs := len(s.block.Succs); nsuccs != 2 { + s.errorf("If-terminated block has %d successors; expected 2", nsuccs) + return + } + if s.block.Succs[0] == s.block.Succs[1] { + s.errorf("If-instruction has same True, False target blocks: %s", s.block.Succs[0]) + return + } + + case *Jump: + if nsuccs := len(s.block.Succs); nsuccs != 1 { + s.errorf("Jump-terminated block has %d successors; expected 1", nsuccs) + return + } + + case *Return: + if nsuccs := len(s.block.Succs); nsuccs != 0 { + s.errorf("Return-terminated block has %d successors; expected none", nsuccs) + return + } + if na, nf := len(instr.Results), s.fn.Signature.Results().Len(); nf != na { + s.errorf("%d-ary return in %d-ary function", na, nf) + } + + case *Panic: + if nsuccs := len(s.block.Succs); nsuccs != 0 { + s.errorf("Panic-terminated block has %d successors; expected none", nsuccs) + return + } + + default: + s.errorf("non-control flow instruction at end of block") + } +} + +func (s *sanity) checkBlock(b *BasicBlock, index int) { + s.block = b + + if b.Index != index { + s.errorf("block has incorrect Index %d", b.Index) + } + if b.parent != s.fn { + s.errorf("block has incorrect parent %s", b.parent) + } + + // Check all blocks are reachable. + // (The entry block is always implicitly reachable, + // as is the Recover block, if any.) + if (index > 0 && b != b.parent.Recover) && len(b.Preds) == 0 { + s.warnf("unreachable block") + if b.Instrs == nil { + // Since this block is about to be pruned, + // tolerating transient problems in it + // simplifies other optimizations. + return + } + } + + // Check predecessor and successor relations are dual, + // and that all blocks in CFG belong to same function. + for _, a := range b.Preds { + found := false + for _, bb := range a.Succs { + if bb == b { + found = true + break + } + } + if !found { + s.errorf("expected successor edge in predecessor %s; found only: %s", a, a.Succs) + } + if a.parent != s.fn { + s.errorf("predecessor %s belongs to different function %s", a, a.parent) + } + } + for _, c := range b.Succs { + found := false + for _, bb := range c.Preds { + if bb == b { + found = true + break + } + } + if !found { + s.errorf("expected predecessor edge in successor %s; found only: %s", c, c.Preds) + } + if c.parent != s.fn { + s.errorf("successor %s belongs to different function %s", c, c.parent) + } + } + + // Check each instruction is sane. + n := len(b.Instrs) + if n == 0 { + s.errorf("basic block contains no instructions") + } + var rands [10]*Value // reuse storage + for j, instr := range b.Instrs { + if instr == nil { + s.errorf("nil instruction at index %d", j) + continue + } + if b2 := instr.Block(); b2 == nil { + s.errorf("nil Block() for instruction at index %d", j) + continue + } else if b2 != b { + s.errorf("wrong Block() (%s) for instruction at index %d ", b2, j) + continue + } + if j < n-1 { + s.checkInstr(j, instr) + } else { + s.checkFinalInstr(j, instr) + } + + // Check Instruction.Operands. + operands: + for i, op := range instr.Operands(rands[:0]) { + if op == nil { + s.errorf("nil operand pointer %d of %s", i, instr) + continue + } + val := *op + if val == nil { + continue // a nil operand is ok + } + + // Check that "untyped" types only appear on constant operands. + if _, ok := (*op).(*Const); !ok { + if basic, ok := (*op).Type().(*types.Basic); ok { + if basic.Info()&types.IsUntyped != 0 { + s.errorf("operand #%d of %s is untyped: %s", i, instr, basic) + } + } + } + + // Check that Operands that are also Instructions belong to same function. + // TODO(adonovan): also check their block dominates block b. + if val, ok := val.(Instruction); ok { + if val.Parent() != s.fn { + s.errorf("operand %d of %s is an instruction (%s) from function %s", i, instr, val, val.Parent()) + } + } + + // Check that each function-local operand of + // instr refers back to instr. (NB: quadratic) + switch val := val.(type) { + case *Const, *Global, *Builtin: + continue // not local + case *Function: + if val.Enclosing == nil { + continue // only anon functions are local + } + } + + if refs := val.Referrers(); refs != nil { + for _, ref := range *refs { + if ref == instr { + continue operands + } + } + s.errorf("operand %d of %s (%s) does not refer to us", i, instr, val) + } else { + s.errorf("operand %d of %s (%s) has no referrers", i, instr, val) + } + } + } +} + +func (s *sanity) checkFunction(fn *Function) bool { + // TODO(adonovan): check Function invariants: + // - check params match signature + // - check transient fields are nil + // - warn if any fn.Locals do not appear among block instructions. + s.fn = fn + if fn.Prog == nil { + s.errorf("nil Prog") + } + + fn.String() // must not crash + fn.RelString(fn.pkgobj()) // must not crash + + // All functions have a package, except wrappers (which are + // shared across packages, or duplicated as weak symbols in a + // separate-compilation model), and error.Error. + if fn.Pkg == nil { + if strings.Contains(fn.Synthetic, "wrapper") || + strings.HasSuffix(fn.name, "Error") { + // ok + } else { + s.errorf("nil Pkg") + } + } + if src, syn := fn.Synthetic == "", fn.Syntax() != nil; src != syn { + s.errorf("got fromSource=%t, hasSyntax=%t; want same values", src, syn) + } + for i, l := range fn.Locals { + if l.Parent() != fn { + s.errorf("Local %s at index %d has wrong parent", l.Name(), i) + } + if l.Heap { + s.errorf("Local %s at index %d has Heap flag set", l.Name(), i) + } + } + for i, p := range fn.Params { + if p.Parent() != fn { + s.errorf("Param %s at index %d has wrong parent", p.Name(), i) + } + } + for i, fv := range fn.FreeVars { + if fv.Parent() != fn { + s.errorf("FreeVar %s at index %d has wrong parent", fv.Name(), i) + } + } + + if fn.Blocks != nil && len(fn.Blocks) == 0 { + // Function _had_ blocks (so it's not external) but + // they were "optimized" away, even the entry block. + s.errorf("Blocks slice is non-nil but empty") + } + for i, b := range fn.Blocks { + if b == nil { + s.warnf("nil *BasicBlock at f.Blocks[%d]", i) + continue + } + s.checkBlock(b, i) + } + if fn.Recover != nil && fn.Blocks[fn.Recover.Index] != fn.Recover { + s.errorf("Recover block is not in Blocks slice") + } + + s.block = nil + for i, anon := range fn.AnonFuncs { + if anon.Enclosing != fn { + s.errorf("AnonFuncs[%d]=%s but %s.Enclosing=%s", i, anon, anon, anon.Enclosing) + } + } + s.fn = nil + return !s.insane +} + +// sanityCheckPackage checks invariants of packages upon creation. +// It does not require that the package is built. +// Unlike sanityCheck (for functions), it just panics at the first error. +func sanityCheckPackage(pkg *Package) { + if pkg.Object == nil { + panic(fmt.Sprintf("Package %s has no Object", pkg)) + } + pkg.String() // must not crash + + for name, mem := range pkg.Members { + if name != mem.Name() { + panic(fmt.Sprintf("%s: %T.Name() = %s, want %s", + pkg.Object.Path(), mem, mem.Name(), name)) + } + obj := mem.Object() + if obj == nil { + // This check is sound because fields + // {Global,Function}.object have type + // types.Object. (If they were declared as + // *types.{Var,Func}, we'd have a non-empty + // interface containing a nil pointer.) + + continue // not all members have typechecker objects + } + if obj.Name() != name { + panic(fmt.Sprintf("%s: %T.Object().Name() = %s, want %s", + pkg.Object.Path(), mem, obj.Name(), name)) + } + if obj.Pos() != mem.Pos() { + panic(fmt.Sprintf("%s Pos=%d obj.Pos=%d", mem, mem.Pos(), obj.Pos())) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/source.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/source.go new file mode 100644 index 00000000..e4a69a29 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/source.go @@ -0,0 +1,297 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file defines utilities for working with source positions +// or source-level named entities ("objects"). + +// TODO(adonovan): test that {Value,Instruction}.Pos() positions match +// the originating syntax, as specified. + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" +) + +// EnclosingFunction returns the function that contains the syntax +// node denoted by path. +// +// Syntax associated with package-level variable specifications is +// enclosed by the package's init() function. +// +// Returns nil if not found; reasons might include: +// - the node is not enclosed by any function. +// - the node is within an anonymous function (FuncLit) and +// its SSA function has not been created yet +// (pkg.Build() has not yet been called). +// +func EnclosingFunction(pkg *Package, path []ast.Node) *Function { + // Start with package-level function... + fn := findEnclosingPackageLevelFunction(pkg, path) + if fn == nil { + return nil // not in any function + } + + // ...then walk down the nested anonymous functions. + n := len(path) +outer: + for i := range path { + if lit, ok := path[n-1-i].(*ast.FuncLit); ok { + for _, anon := range fn.AnonFuncs { + if anon.Pos() == lit.Type.Func { + fn = anon + continue outer + } + } + // SSA function not found: + // - package not yet built, or maybe + // - builder skipped FuncLit in dead block + // (in principle; but currently the Builder + // generates even dead FuncLits). + return nil + } + } + return fn +} + +// HasEnclosingFunction returns true if the AST node denoted by path +// is contained within the declaration of some function or +// package-level variable. +// +// Unlike EnclosingFunction, the behaviour of this function does not +// depend on whether SSA code for pkg has been built, so it can be +// used to quickly reject check inputs that will cause +// EnclosingFunction to fail, prior to SSA building. +// +func HasEnclosingFunction(pkg *Package, path []ast.Node) bool { + return findEnclosingPackageLevelFunction(pkg, path) != nil +} + +// findEnclosingPackageLevelFunction returns the Function +// corresponding to the package-level function enclosing path. +// +func findEnclosingPackageLevelFunction(pkg *Package, path []ast.Node) *Function { + if n := len(path); n >= 2 { // [... {Gen,Func}Decl File] + switch decl := path[n-2].(type) { + case *ast.GenDecl: + if decl.Tok == token.VAR && n >= 3 { + // Package-level 'var' initializer. + return pkg.init + } + + case *ast.FuncDecl: + if decl.Recv == nil && decl.Name.Name == "init" { + // Explicit init() function. + for _, b := range pkg.init.Blocks { + for _, instr := range b.Instrs { + if instr, ok := instr.(*Call); ok { + if callee, ok := instr.Call.Value.(*Function); ok && callee.Pkg == pkg && callee.Pos() == decl.Name.NamePos { + return callee + } + } + } + } + // Hack: return non-nil when SSA is not yet + // built so that HasEnclosingFunction works. + return pkg.init + } + // Declared function/method. + return findNamedFunc(pkg, decl.Name.NamePos) + } + } + return nil // not in any function +} + +// findNamedFunc returns the named function whose FuncDecl.Ident is at +// position pos. +// +func findNamedFunc(pkg *Package, pos token.Pos) *Function { + // Look at all package members and method sets of named types. + // Not very efficient. + for _, mem := range pkg.Members { + switch mem := mem.(type) { + case *Function: + if mem.Pos() == pos { + return mem + } + case *Type: + mset := pkg.Prog.MethodSets.MethodSet(types.NewPointer(mem.Type())) + for i, n := 0, mset.Len(); i < n; i++ { + // Don't call Program.Method: avoid creating wrappers. + obj := mset.At(i).Obj().(*types.Func) + if obj.Pos() == pos { + return pkg.values[obj].(*Function) + } + } + } + } + return nil +} + +// ValueForExpr returns the SSA Value that corresponds to non-constant +// expression e. +// +// It returns nil if no value was found, e.g. +// - the expression is not lexically contained within f; +// - f was not built with debug information; or +// - e is a constant expression. (For efficiency, no debug +// information is stored for constants. Use +// loader.PackageInfo.ValueOf(e) instead.) +// - e is a reference to nil or a built-in function. +// - the value was optimised away. +// +// If e is an addressable expression used an an lvalue context, +// value is the address denoted by e, and isAddr is true. +// +// The types of e (or &e, if isAddr) and the result are equal +// (modulo "untyped" bools resulting from comparisons). +// +// (Tip: to find the ssa.Value given a source position, use +// importer.PathEnclosingInterval to locate the ast.Node, then +// EnclosingFunction to locate the Function, then ValueForExpr to find +// the ssa.Value.) +// +func (f *Function) ValueForExpr(e ast.Expr) (value Value, isAddr bool) { + if f.debugInfo() { // (opt) + e = unparen(e) + for _, b := range f.Blocks { + for _, instr := range b.Instrs { + if ref, ok := instr.(*DebugRef); ok { + if ref.Expr == e { + return ref.X, ref.IsAddr + } + } + } + } + } + return +} + +// --- Lookup functions for source-level named entities (types.Objects) --- + +// Package returns the SSA Package corresponding to the specified +// type-checker package object. +// It returns nil if no such SSA package has been created. +// +func (prog *Program) Package(obj *types.Package) *Package { + return prog.packages[obj] +} + +// packageLevelValue returns the package-level value corresponding to +// the specified named object, which may be a package-level const +// (*Const), var (*Global) or func (*Function) of some package in +// prog. It returns nil if the object is not found. +// +func (prog *Program) packageLevelValue(obj types.Object) Value { + if pkg, ok := prog.packages[obj.Pkg()]; ok { + return pkg.values[obj] + } + return nil +} + +// FuncValue returns the Function denoted by the source-level named +// function obj. +// +func (prog *Program) FuncValue(obj *types.Func) *Function { + // Package-level function or declared method? + if v := prog.packageLevelValue(obj); v != nil { + return v.(*Function) + } + // Interface method wrapper? + return prog.LookupMethod(recvType(obj), obj.Pkg(), obj.Name()) +} + +// ConstValue returns the SSA Value denoted by the source-level named +// constant obj. The result may be a *Const, or nil if not found. +// +func (prog *Program) ConstValue(obj *types.Const) *Const { + // TODO(adonovan): opt: share (don't reallocate) + // Consts for const objects and constant ast.Exprs. + + // Universal constant? {true,false,nil} + if obj.Parent() == types.Universe { + return NewConst(obj.Val(), obj.Type()) + } + // Package-level named constant? + if v := prog.packageLevelValue(obj); v != nil { + return v.(*Const) + } + return NewConst(obj.Val(), obj.Type()) +} + +// VarValue returns the SSA Value that corresponds to a specific +// identifier denoting the source-level named variable obj. +// +// VarValue returns nil if a local variable was not found, perhaps +// because its package was not built, the debug information was not +// requested during SSA construction, or the value was optimized away. +// +// ref is the path to an ast.Ident (e.g. from PathEnclosingInterval), +// and that ident must resolve to obj. +// +// pkg is the package enclosing the reference. (A reference to a var +// always occurs within a function, so we need to know where to find it.) +// +// The Value of a defining (as opposed to referring) identifier is the +// value assigned to it in its definition. Similarly, the Value of an +// identifier that is the LHS of an assignment is the value assigned +// to it in that statement. In all these examples, VarValue(x) returns +// the value of x and isAddr==false. +// +// var x X +// var x = X{} +// x := X{} +// x = X{} +// +// When an identifier appears in an lvalue context other than as the +// LHS of an assignment, the resulting Value is the var's address, not +// its value. This situation is reported by isAddr, the second +// component of the result. In these examples, VarValue(x) returns +// the address of x and isAddr==true. +// +// x.y = 0 +// x[0] = 0 +// _ = x[:] (where x is an array) +// _ = &x +// x.method() (iff method is on &x) +// +func (prog *Program) VarValue(obj *types.Var, pkg *Package, ref []ast.Node) (value Value, isAddr bool) { + // All references to a var are local to some function, possibly init. + fn := EnclosingFunction(pkg, ref) + if fn == nil { + return // e.g. def of struct field; SSA not built? + } + + id := ref[0].(*ast.Ident) + + // Defining ident of a parameter? + if id.Pos() == obj.Pos() { + for _, param := range fn.Params { + if param.Object() == obj { + return param, false + } + } + } + + // Other ident? + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + if dr, ok := instr.(*DebugRef); ok { + if dr.Pos() == id.Pos() { + return dr.X, dr.IsAddr + } + } + } + } + + // Defining ident of package-level var? + if v := prog.packageLevelValue(obj); v != nil { + return v.(*Global), true + } + + return // e.g. debug info not requested, or var optimized away +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/source_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/source_test.go new file mode 100644 index 00000000..0ad98202 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/source_test.go @@ -0,0 +1,274 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa_test + +// This file defines tests of source-level debugging utilities. + +import ( + "fmt" + "go/ast" + "go/parser" + "go/token" + "os" + "regexp" + "strings" + "testing" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +func TestObjValueLookup(t *testing.T) { + conf := loader.Config{ParserMode: parser.ParseComments} + f, err := conf.ParseFile("testdata/objlookup.go", nil) + if err != nil { + t.Error(err) + return + } + conf.CreateFromFiles("main", f) + + // Maps each var Ident (represented "name:linenum") to the + // kind of ssa.Value we expect (represented "Constant", "&Alloc"). + expectations := make(map[string]string) + + // Find all annotations of form x::BinOp, &y::Alloc, etc. + re := regexp.MustCompile(`(\b|&)?(\w*)::(\w*)\b`) + for _, c := range f.Comments { + text := c.Text() + pos := conf.Fset.Position(c.Pos()) + for _, m := range re.FindAllStringSubmatch(text, -1) { + key := fmt.Sprintf("%s:%d", m[2], pos.Line) + value := m[1] + m[3] + expectations[key] = value + } + } + + iprog, err := conf.Load() + if err != nil { + t.Error(err) + return + } + + prog := ssa.Create(iprog, 0 /*|ssa.LogFunctions*/) + mainInfo := iprog.Created[0] + mainPkg := prog.Package(mainInfo.Pkg) + mainPkg.SetDebugMode(true) + mainPkg.Build() + + var varIds []*ast.Ident + var varObjs []*types.Var + for id, obj := range mainInfo.Defs { + // Check invariants for func and const objects. + switch obj := obj.(type) { + case *types.Func: + checkFuncValue(t, prog, obj) + + case *types.Const: + checkConstValue(t, prog, obj) + + case *types.Var: + if id.Name == "_" { + continue + } + varIds = append(varIds, id) + varObjs = append(varObjs, obj) + } + } + for id, obj := range mainInfo.Uses { + if obj, ok := obj.(*types.Var); ok { + varIds = append(varIds, id) + varObjs = append(varObjs, obj) + } + } + + // Check invariants for var objects. + // The result varies based on the specific Ident. + for i, id := range varIds { + obj := varObjs[i] + ref, _ := astutil.PathEnclosingInterval(f, id.Pos(), id.Pos()) + pos := prog.Fset.Position(id.Pos()) + exp := expectations[fmt.Sprintf("%s:%d", id.Name, pos.Line)] + if exp == "" { + t.Errorf("%s: no expectation for var ident %s ", pos, id.Name) + continue + } + wantAddr := false + if exp[0] == '&' { + wantAddr = true + exp = exp[1:] + } + checkVarValue(t, prog, mainPkg, ref, obj, exp, wantAddr) + } +} + +func checkFuncValue(t *testing.T, prog *ssa.Program, obj *types.Func) { + fn := prog.FuncValue(obj) + // fmt.Printf("FuncValue(%s) = %s\n", obj, fn) // debugging + if fn == nil { + t.Errorf("FuncValue(%s) == nil", obj) + return + } + if fnobj := fn.Object(); fnobj != obj { + t.Errorf("FuncValue(%s).Object() == %s; value was %s", + obj, fnobj, fn.Name()) + return + } + if !types.Identical(fn.Type(), obj.Type()) { + t.Errorf("FuncValue(%s).Type() == %s", obj, fn.Type()) + return + } +} + +func checkConstValue(t *testing.T, prog *ssa.Program, obj *types.Const) { + c := prog.ConstValue(obj) + // fmt.Printf("ConstValue(%s) = %s\n", obj, c) // debugging + if c == nil { + t.Errorf("ConstValue(%s) == nil", obj) + return + } + if !types.Identical(c.Type(), obj.Type()) { + t.Errorf("ConstValue(%s).Type() == %s", obj, c.Type()) + return + } + if obj.Name() != "nil" { + if !exact.Compare(c.Value, token.EQL, obj.Val()) { + t.Errorf("ConstValue(%s).Value (%s) != %s", + obj, c.Value, obj.Val()) + return + } + } +} + +func checkVarValue(t *testing.T, prog *ssa.Program, pkg *ssa.Package, ref []ast.Node, obj *types.Var, expKind string, wantAddr bool) { + // The prefix of all assertions messages. + prefix := fmt.Sprintf("VarValue(%s @ L%d)", + obj, prog.Fset.Position(ref[0].Pos()).Line) + + v, gotAddr := prog.VarValue(obj, pkg, ref) + + // Kind is the concrete type of the ssa Value. + gotKind := "nil" + if v != nil { + gotKind = fmt.Sprintf("%T", v)[len("*ssa."):] + } + + // fmt.Printf("%s = %v (kind %q; expect %q) wantAddr=%t gotAddr=%t\n", prefix, v, gotKind, expKind, wantAddr, gotAddr) // debugging + + // Check the kinds match. + // "nil" indicates expected failure (e.g. optimized away). + if expKind != gotKind { + t.Errorf("%s concrete type == %s, want %s", prefix, gotKind, expKind) + } + + // Check the types match. + // If wantAddr, the expected type is the object's address. + if v != nil { + expType := obj.Type() + if wantAddr { + expType = types.NewPointer(expType) + if !gotAddr { + t.Errorf("%s: got value, want address", prefix) + } + } else if gotAddr { + t.Errorf("%s: got address, want value", prefix) + } + if !types.Identical(v.Type(), expType) { + t.Errorf("%s.Type() == %s, want %s", prefix, v.Type(), expType) + } + } +} + +// Ensure that, in debug mode, we can determine the ssa.Value +// corresponding to every ast.Expr. +func TestValueForExpr(t *testing.T) { + conf := loader.Config{ParserMode: parser.ParseComments} + f, err := conf.ParseFile("testdata/valueforexpr.go", nil) + if err != nil { + t.Error(err) + return + } + conf.CreateFromFiles("main", f) + + iprog, err := conf.Load() + if err != nil { + t.Error(err) + return + } + + mainInfo := iprog.Created[0] + + prog := ssa.Create(iprog, 0) + mainPkg := prog.Package(mainInfo.Pkg) + mainPkg.SetDebugMode(true) + mainPkg.Build() + + if false { + // debugging + for _, mem := range mainPkg.Members { + if fn, ok := mem.(*ssa.Function); ok { + fn.WriteTo(os.Stderr) + } + } + } + + // Find the actual AST node for each canonical position. + parenExprByPos := make(map[token.Pos]*ast.ParenExpr) + ast.Inspect(f, func(n ast.Node) bool { + if n != nil { + if e, ok := n.(*ast.ParenExpr); ok { + parenExprByPos[e.Pos()] = e + } + } + return true + }) + + // Find all annotations of form /*@kind*/. + for _, c := range f.Comments { + text := strings.TrimSpace(c.Text()) + if text == "" || text[0] != '@' { + continue + } + text = text[1:] + pos := c.End() + 1 + position := prog.Fset.Position(pos) + var e ast.Expr + if target := parenExprByPos[pos]; target == nil { + t.Errorf("%s: annotation doesn't precede ParenExpr: %q", position, text) + continue + } else { + e = target.X + } + + path, _ := astutil.PathEnclosingInterval(f, pos, pos) + if path == nil { + t.Errorf("%s: can't find AST path from root to comment: %s", position, text) + continue + } + + fn := ssa.EnclosingFunction(mainPkg, path) + if fn == nil { + t.Errorf("%s: can't find enclosing function", position) + continue + } + + v, gotAddr := fn.ValueForExpr(e) // (may be nil) + got := strings.TrimPrefix(fmt.Sprintf("%T", v), "*ssa.") + if want := text; got != want { + t.Errorf("%s: got value %q, want %q", position, got, want) + } + if v != nil { + T := v.Type() + if gotAddr { + T = T.Underlying().(*types.Pointer).Elem() // deref + } + if !types.Identical(T, mainInfo.TypeOf(e)) { + t.Errorf("%s: got type %s, want %s", position, mainInfo.TypeOf(e), T) + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssa.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssa.go new file mode 100644 index 00000000..0b9deec8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssa.go @@ -0,0 +1,1641 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This package defines a high-level intermediate representation for +// Go programs using static single-assignment (SSA) form. + +import ( + "fmt" + "go/ast" + "go/token" + "sync" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +// A Program is a partial or complete Go program converted to SSA form. +// +type Program struct { + Fset *token.FileSet // position information for the files of this Program + imported map[string]*Package // all importable Packages, keyed by import path + packages map[*types.Package]*Package // all loaded Packages, keyed by object + mode BuilderMode // set of mode bits for SSA construction + MethodSets types.MethodSetCache // cache of type-checker's method-sets + + methodsMu sync.Mutex // guards the following maps: + methodSets typeutil.Map // maps type to its concrete methodSet + boundMethodWrappers map[*types.Func]*Function // wrappers for curried x.Method closures + ifaceMethodWrappers map[*types.Func]*Function // wrappers for curried I.Method functions +} + +// A Package is a single analyzed Go package containing Members for +// all package-level functions, variables, constants and types it +// declares. These may be accessed directly via Members, or via the +// type-specific accessor methods Func, Type, Var and Const. +// +type Package struct { + Prog *Program // the owning program + Object *types.Package // the type checker's package object for this package + Members map[string]Member // all package members keyed by name + methodSets []types.Type // types whose method sets are included in this package + values map[types.Object]Value // package members (incl. types and methods), keyed by object + init *Function // Func("init"); the package's init function + debug bool // include full debug info in this package. + + // The following fields are set transiently, then cleared + // after building. + started int32 // atomically tested and set at start of build phase + ninit int32 // number of init functions + info *loader.PackageInfo // package ASTs and type information + needRTTI typeutil.Map // types for which runtime type info is needed +} + +// A Member is a member of a Go package, implemented by *NamedConst, +// *Global, *Function, or *Type; they are created by package-level +// const, var, func and type declarations respectively. +// +type Member interface { + Name() string // declared name of the package member + String() string // package-qualified name of the package member + RelString(*types.Package) string // like String, but relative refs are unqualified + Object() types.Object // typechecker's object for this member, if any + Pos() token.Pos // position of member's declaration, if known + Type() types.Type // type of the package member + Token() token.Token // token.{VAR,FUNC,CONST,TYPE} + Package() *Package // returns the containing package. (TODO: rename Pkg) +} + +// A Type is a Member of a Package representing a package-level named type. +// +// Type() returns a *types.Named. +// +type Type struct { + object *types.TypeName + pkg *Package +} + +// A NamedConst is a Member of Package representing a package-level +// named constant value. +// +// Pos() returns the position of the declaring ast.ValueSpec.Names[*] +// identifier. +// +// NB: a NamedConst is not a Value; it contains a constant Value, which +// it augments with the name and position of its 'const' declaration. +// +type NamedConst struct { + object *types.Const + Value *Const + pos token.Pos + pkg *Package +} + +// A Value is an SSA value that can be referenced by an instruction. +type Value interface { + // Name returns the name of this value, and determines how + // this Value appears when used as an operand of an + // Instruction. + // + // This is the same as the source name for Parameters, + // Builtins, Functions, Captures, Globals. + // For constants, it is a representation of the constant's value + // and type. For all other Values this is the name of the + // virtual register defined by the instruction. + // + // The name of an SSA Value is not semantically significant, + // and may not even be unique within a function. + Name() string + + // If this value is an Instruction, String returns its + // disassembled form; otherwise it returns unspecified + // human-readable information about the Value, such as its + // kind, name and type. + String() string + + // Type returns the type of this value. Many instructions + // (e.g. IndexAddr) change their behaviour depending on the + // types of their operands. + Type() types.Type + + // Referrers returns the list of instructions that have this + // value as one of their operands; it may contain duplicates + // if an instruction has a repeated operand. + // + // Referrers actually returns a pointer through which the + // caller may perform mutations to the object's state. + // + // Referrers is currently only defined for the function-local + // values Capture, Parameter, Functions (iff anonymous) and + // all value-defining instructions. + // It returns nil for named Functions, Builtin, Const and Global. + // + // Instruction.Operands contains the inverse of this relation. + Referrers() *[]Instruction + + // Pos returns the location of the AST token most closely + // associated with the operation that gave rise to this value, + // or token.NoPos if it was not explicit in the source. + // + // For each ast.Node type, a particular token is designated as + // the closest location for the expression, e.g. the Lparen + // for an *ast.CallExpr. This permits a compact but + // approximate mapping from Values to source positions for use + // in diagnostic messages, for example. + // + // (Do not use this position to determine which Value + // corresponds to an ast.Expr; use Function.ValueForExpr + // instead. NB: it requires that the function was built with + // debug information.) + // + Pos() token.Pos +} + +// An Instruction is an SSA instruction that computes a new Value or +// has some effect. +// +// An Instruction that defines a value (e.g. BinOp) also implements +// the Value interface; an Instruction that only has an effect (e.g. Store) +// does not. +// +type Instruction interface { + // String returns the disassembled form of this value. e.g. + // + // Examples of Instructions that define a Value: + // e.g. "x + y" (BinOp) + // "len([])" (Call) + // Note that the name of the Value is not printed. + // + // Examples of Instructions that do define (are) Values: + // e.g. "return x" (Return) + // "*y = x" (Store) + // + // (This separation is useful for some analyses which + // distinguish the operation from the value it + // defines. e.g. 'y = local int' is both an allocation of + // memory 'local int' and a definition of a pointer y.) + String() string + + // Parent returns the function to which this instruction + // belongs. + Parent() *Function + + // Block returns the basic block to which this instruction + // belongs. + Block() *BasicBlock + + // setBlock sets the basic block to which this instruction belongs. + setBlock(*BasicBlock) + + // Operands returns the operands of this instruction: the + // set of Values it references. + // + // Specifically, it appends their addresses to rands, a + // user-provided slice, and returns the resulting slice, + // permitting avoidance of memory allocation. + // + // The operands are appended in undefined order; the addresses + // are always non-nil but may point to a nil Value. Clients + // may store through the pointers, e.g. to effect a value + // renaming. + // + // Value.Referrers is a subset of the inverse of this + // relation. (Referrers are not tracked for all types of + // Values.) + Operands(rands []*Value) []*Value + + // Pos returns the location of the AST token most closely + // associated with the operation that gave rise to this + // instruction, or token.NoPos if it was not explicit in the + // source. + // + // For each ast.Node type, a particular token is designated as + // the closest location for the expression, e.g. the Go token + // for an *ast.GoStmt. This permits a compact but approximate + // mapping from Instructions to source positions for use in + // diagnostic messages, for example. + // + // (Do not use this position to determine which Instruction + // corresponds to an ast.Expr; see the notes for Value.Pos. + // This position may be used to determine which non-Value + // Instruction corresponds to some ast.Stmts, but not all: If + // and Jump instructions have no Pos(), for example.) + // + Pos() token.Pos +} + +// Function represents the parameters, results and code of a function +// or method. +// +// If Blocks is nil, this indicates an external function for which no +// Go source code is available. In this case, FreeVars and Locals +// will be nil too. Clients performing whole-program analysis must +// handle external functions specially. +// +// Functions are immutable values; they do not have addresses. +// +// Blocks contains the function's control-flow graph (CFG). +// Blocks[0] is the function entry point; block order is not otherwise +// semantically significant, though it may affect the readability of +// the disassembly. +// To iterate over the blocks in dominance order, use DomPreorder(). +// +// Recover is an optional second entry point to which control resumes +// after a recovered panic. The Recover block may contain only a load +// of the function's named return parameters followed by a return of +// the loaded values. +// +// A nested function that refers to one or more lexically enclosing +// local variables ("free variables") has Capture parameters. Such +// functions cannot be called directly but require a value created by +// MakeClosure which, via its Bindings, supplies values for these +// parameters. +// +// If the function is a method (Signature.Recv() != nil) then the first +// element of Params is the receiver parameter. +// +// Pos() returns the declaring ast.FuncLit.Type.Func or the position +// of the ast.FuncDecl.Name, if the function was explicit in the +// source. Synthetic wrappers, for which Synthetic != "", may share +// the same position as the function they wrap. +// +// Type() returns the function's Signature. +// +type Function struct { + name string + object types.Object // a declared *types.Func; nil for init, wrappers, etc. + method *types.Selection // info about provenance of synthetic methods [currently unused] + Signature *types.Signature + pos token.Pos + + Synthetic string // provenance of synthetic function; "" for true source functions + syntax ast.Node // *ast.Func{Decl,Lit}; replaced with simple ast.Node after build, unless debug mode + Enclosing *Function // enclosing function if anon; nil if global + Pkg *Package // enclosing package; nil for shared funcs (wrappers and error.Error) + Prog *Program // enclosing program + Params []*Parameter // function parameters; for methods, includes receiver + FreeVars []*Capture // free variables whose values must be supplied by closure + Locals []*Alloc + Blocks []*BasicBlock // basic blocks of the function; nil => external + Recover *BasicBlock // optional; control transfers here after recovered panic + AnonFuncs []*Function // anonymous functions directly beneath this one + referrers []Instruction // referring instructions (iff Enclosing != nil) + + // The following fields are set transiently during building, + // then cleared. + currentBlock *BasicBlock // where to emit code + objects map[types.Object]Value // addresses of local variables + namedResults []*Alloc // tuple of named results + targets *targets // linked stack of branch targets + lblocks map[*ast.Object]*lblock // labelled blocks +} + +// An SSA basic block. +// +// The final element of Instrs is always an explicit transfer of +// control (If, Jump, Return or Panic). +// +// A block may contain no Instructions only if it is unreachable, +// i.e. Preds is nil. Empty blocks are typically pruned. +// +// BasicBlocks and their Preds/Succs relation form a (possibly cyclic) +// graph independent of the SSA Value graph: the control-flow graph or +// CFG. It is illegal for multiple edges to exist between the same +// pair of blocks. +// +// Each BasicBlock is also a node in the dominator tree of the CFG. +// The tree may be navigated using Idom()/Dominees() and queried using +// Dominates(). +// +// The order of Preds and Succs is significant (to Phi and If +// instructions, respectively). +// +type BasicBlock struct { + Index int // index of this block within Parent().Blocks + Comment string // optional label; no semantic significance + parent *Function // parent function + Instrs []Instruction // instructions in order + Preds, Succs []*BasicBlock // predecessors and successors + succs2 [2]*BasicBlock // initial space for Succs. + dom domInfo // dominator tree info + gaps int // number of nil Instrs (transient). + rundefers int // number of rundefers (transient) +} + +// Pure values ---------------------------------------- + +// A Capture represents a free variable of the function to which it +// belongs. +// +// Captures are used to implement anonymous functions, whose free +// variables are lexically captured in a closure formed by +// MakeClosure. The referent of such a capture is an Alloc or another +// Capture and is considered a potentially escaping heap address, with +// pointer type. +// +// Captures are also used to implement bound method closures. Such a +// capture represents the receiver value and may be of any type that +// has concrete methods. +// +// Pos() returns the position of the value that was captured, which +// belongs to an enclosing function. +// +type Capture struct { + name string + typ types.Type + pos token.Pos + parent *Function + referrers []Instruction + + // Transiently needed during building. + outer Value // the Value captured from the enclosing context. +} + +// A Parameter represents an input parameter of a function. +// +type Parameter struct { + name string + object types.Object // a *types.Var; nil for non-source locals + typ types.Type + pos token.Pos + parent *Function + referrers []Instruction +} + +// A Const represents the value of a constant expression. +// +// The underlying type of a constant may be any boolean, numeric, or +// string type. In addition, a Const may represent the nil value of +// any reference type: interface, map, channel, pointer, slice, or +// function---but not "untyped nil". +// +// All source-level constant expressions are represented by a Const +// of equal type and value. +// +// Value holds the exact value of the constant, independent of its +// Type(), using the same representation as package go/exact uses for +// constants, or nil for a typed nil value. +// +// Pos() returns token.NoPos. +// +// Example printed form: +// 42:int +// "hello":untyped string +// 3+4i:MyComplex +// +type Const struct { + typ types.Type + Value exact.Value +} + +// A Global is a named Value holding the address of a package-level +// variable. +// +// Pos() returns the position of the ast.ValueSpec.Names[*] +// identifier. +// +type Global struct { + name string + object types.Object // a *types.Var; may be nil for synthetics e.g. init$guard + typ types.Type + pos token.Pos + + Pkg *Package +} + +// A Builtin represents a specific use of a built-in function, e.g. len. +// +// Builtins are immutable values. Builtins do not have addresses. +// Builtins can only appear in CallCommon.Func. +// +// Object() returns a *types.Builtin. +// +// Type() returns a *types.Signature representing the effective +// signature of the built-in for this call. +// +type Builtin struct { + object *types.Builtin // canonical types.Universe object for this built-in + sig *types.Signature +} + +// Value-defining instructions ---------------------------------------- + +// The Alloc instruction reserves space for a value of the given type, +// zero-initializes it, and yields its address. +// +// Alloc values are always addresses, and have pointer types, so the +// type of the allocated space is actually indirect(Type()). +// +// If Heap is false, Alloc allocates space in the function's +// activation record (frame); we refer to an Alloc(Heap=false) as a +// "local" alloc. Each local Alloc returns the same address each time +// it is executed within the same activation; the space is +// re-initialized to zero. +// +// If Heap is true, Alloc allocates space in the heap, and returns; we +// refer to an Alloc(Heap=true) as a "new" alloc. Each new Alloc +// returns a different address each time it is executed. +// +// When Alloc is applied to a channel, map or slice type, it returns +// the address of an uninitialized (nil) reference of that kind; store +// the result of MakeSlice, MakeMap or MakeChan in that location to +// instantiate these types. +// +// Pos() returns the ast.CompositeLit.Lbrace for a composite literal, +// or the ast.CallExpr.Lparen for a call to new() or for a call that +// allocates a varargs slice. +// +// Example printed form: +// t0 = local int +// t1 = new int +// +type Alloc struct { + register + Comment string + Heap bool + index int // dense numbering; for lifting +} + +// The Phi instruction represents an SSA φ-node, which combines values +// that differ across incoming control-flow edges and yields a new +// value. Within a block, all φ-nodes must appear before all non-φ +// nodes. +// +// Pos() returns the position of the && or || for short-circuit +// control-flow joins, or that of the *Alloc for φ-nodes inserted +// during SSA renaming. +// +// Example printed form: +// t2 = phi [0.start: t0, 1.if.then: t1, ...] +// +type Phi struct { + register + Comment string // a hint as to its purpose + Edges []Value // Edges[i] is value for Block().Preds[i] +} + +// The Call instruction represents a function or method call. +// +// The Call instruction yields the function result, if there is +// exactly one, or a tuple (empty or len>1) whose components are +// accessed via Extract. +// +// See CallCommon for generic function call documentation. +// +// Pos() returns the ast.CallExpr.Lparen, if explicit in the source. +// +// Example printed form: +// t2 = println(t0, t1) +// t4 = t3() +// t7 = invoke t5.Println(...t6) +// +type Call struct { + register + Call CallCommon +} + +// The BinOp instruction yields the result of binary operation X Op Y. +// +// Pos() returns the ast.BinaryExpr.OpPos, if explicit in the source. +// +// Example printed form: +// t1 = t0 + 1:int +// +type BinOp struct { + register + // One of: + // ADD SUB MUL QUO REM + - * / % + // AND OR XOR SHL SHR AND_NOT & | ^ << >> &~ + // EQL LSS GTR NEQ LEQ GEQ == != < <= < >= + Op token.Token + X, Y Value +} + +// The UnOp instruction yields the result of Op X. +// ARROW is channel receive. +// MUL is pointer indirection (load). +// XOR is bitwise complement. +// SUB is negation. +// NOT is logical negation. +// +// If CommaOk and Op=ARROW, the result is a 2-tuple of the value above +// and a boolean indicating the success of the receive. The +// components of the tuple are accessed using Extract. +// +// Pos() returns the ast.UnaryExpr.OpPos or ast.RangeStmt.TokPos (for +// ranging over a channel), if explicit in the source. +// +// Example printed form: +// t0 = *x +// t2 = <-t1,ok +// +type UnOp struct { + register + Op token.Token // One of: NOT SUB ARROW MUL XOR ! - <- * ^ + X Value + CommaOk bool +} + +// The ChangeType instruction applies to X a value-preserving type +// change to Type(). +// +// Type changes are permitted: +// - between a named type and its underlying type. +// - between two named types of the same underlying type. +// - between (possibly named) pointers to identical base types. +// - between f(T) functions and (T) func f() methods. +// - from a bidirectional channel to a read- or write-channel, +// optionally adding/removing a name. +// +// This operation cannot fail dynamically. +// +// Pos() returns the ast.CallExpr.Lparen, if the instruction arose +// from an explicit conversion in the source. +// +// Example printed form: +// t1 = changetype *int <- IntPtr (t0) +// +type ChangeType struct { + register + X Value +} + +// The Convert instruction yields the conversion of value X to type +// Type(). One or both of those types is basic (but possibly named). +// +// A conversion may change the value and representation of its operand. +// Conversions are permitted: +// - between real numeric types. +// - between complex numeric types. +// - between string and []byte or []rune. +// - between pointers and unsafe.Pointer. +// - between unsafe.Pointer and uintptr. +// - from (Unicode) integer to (UTF-8) string. +// A conversion may imply a type name change also. +// +// This operation cannot fail dynamically. +// +// Conversions of untyped string/number/bool constants to a specific +// representation are eliminated during SSA construction. +// +// Pos() returns the ast.CallExpr.Lparen, if the instruction arose +// from an explicit conversion in the source. +// +// Example printed form: +// t1 = convert []byte <- string (t0) +// +type Convert struct { + register + X Value +} + +// ChangeInterface constructs a value of one interface type from a +// value of another interface type known to be assignable to it. +// This operation cannot fail. +// +// Pos() returns the ast.CallExpr.Lparen if the instruction arose from +// an explicit T(e) conversion; the ast.TypeAssertExpr.Lparen if the +// instruction arose from an explicit e.(T) operation; or token.NoPos +// otherwise. +// +// Example printed form: +// t1 = change interface interface{} <- I (t0) +// +type ChangeInterface struct { + register + X Value +} + +// MakeInterface constructs an instance of an interface type from a +// value of a concrete type. +// +// Use Program.MethodSets.MethodSet(X.Type()) to find the method-set +// of X, and Program.Method(m) to find the implementation of a method. +// +// To construct the zero value of an interface type T, use: +// NewConst(exact.MakeNil(), T, pos) +// +// Pos() returns the ast.CallExpr.Lparen, if the instruction arose +// from an explicit conversion in the source. +// +// Example printed form: +// t1 = make interface{} <- int (42:int) +// t2 = make Stringer <- t0 +// +type MakeInterface struct { + register + X Value +} + +// The MakeClosure instruction yields a closure value whose code is +// Fn and whose free variables' values are supplied by Bindings. +// +// Type() returns a (possibly named) *types.Signature. +// +// Pos() returns the ast.FuncLit.Type.Func for a function literal +// closure or the ast.SelectorExpr.Sel for a bound method closure. +// +// Example printed form: +// t0 = make closure anon@1.2 [x y z] +// t1 = make closure bound$(main.I).add [i] +// +type MakeClosure struct { + register + Fn Value // always a *Function + Bindings []Value // values for each free variable in Fn.FreeVars +} + +// The MakeMap instruction creates a new hash-table-based map object +// and yields a value of kind map. +// +// Type() returns a (possibly named) *types.Map. +// +// Pos() returns the ast.CallExpr.Lparen, if created by make(map), or +// the ast.CompositeLit.Lbrack if created by a literal. +// +// Example printed form: +// t1 = make map[string]int t0 +// t1 = make StringIntMap t0 +// +type MakeMap struct { + register + Reserve Value // initial space reservation; nil => default +} + +// The MakeChan instruction creates a new channel object and yields a +// value of kind chan. +// +// Type() returns a (possibly named) *types.Chan. +// +// Pos() returns the ast.CallExpr.Lparen for the make(chan) that +// created it. +// +// Example printed form: +// t0 = make chan int 0 +// t0 = make IntChan 0 +// +type MakeChan struct { + register + Size Value // int; size of buffer; zero => synchronous. +} + +// The MakeSlice instruction yields a slice of length Len backed by a +// newly allocated array of length Cap. +// +// Both Len and Cap must be non-nil Values of integer type. +// +// (Alloc(types.Array) followed by Slice will not suffice because +// Alloc can only create arrays of constant length.) +// +// Type() returns a (possibly named) *types.Slice. +// +// Pos() returns the ast.CallExpr.Lparen for the make([]T) that +// created it. +// +// Example printed form: +// t1 = make []string 1:int t0 +// t1 = make StringSlice 1:int t0 +// +type MakeSlice struct { + register + Len Value + Cap Value +} + +// The Slice instruction yields a slice of an existing string, slice +// or *array X between optional integer bounds Low and High. +// +// Dynamically, this instruction panics if X evaluates to a nil *array +// pointer. +// +// Type() returns string if the type of X was string, otherwise a +// *types.Slice with the same element type as X. +// +// Pos() returns the ast.SliceExpr.Lbrack if created by a x[:] slice +// operation, the ast.CompositeLit.Lbrace if created by a literal, or +// NoPos if not explicit in the source (e.g. a variadic argument slice). +// +// Example printed form: +// t1 = slice t0[1:] +// +type Slice struct { + register + X Value // slice, string, or *array + Low, High, Max Value // each may be nil +} + +// The FieldAddr instruction yields the address of Field of *struct X. +// +// The field is identified by its index within the field list of the +// struct type of X. +// +// Dynamically, this instruction panics if X evaluates to a nil +// pointer. +// +// Type() returns a (possibly named) *types.Pointer. +// +// Pos() returns the position of the ast.SelectorExpr.Sel for the +// field, if explicit in the source. +// +// Example printed form: +// t1 = &t0.name [#1] +// +type FieldAddr struct { + register + X Value // *struct + Field int // index into X.Type().Deref().(*types.Struct).Fields +} + +// The Field instruction yields the Field of struct X. +// +// The field is identified by its index within the field list of the +// struct type of X; by using numeric indices we avoid ambiguity of +// package-local identifiers and permit compact representations. +// +// Pos() returns the position of the ast.SelectorExpr.Sel for the +// field, if explicit in the source. +// +// Example printed form: +// t1 = t0.name [#1] +// +type Field struct { + register + X Value // struct + Field int // index into X.Type().(*types.Struct).Fields +} + +// The IndexAddr instruction yields the address of the element at +// index Index of collection X. Index is an integer expression. +// +// The elements of maps and strings are not addressable; use Lookup or +// MapUpdate instead. +// +// Dynamically, this instruction panics if X evaluates to a nil *array +// pointer. +// +// Type() returns a (possibly named) *types.Pointer. +// +// Pos() returns the ast.IndexExpr.Lbrack for the index operation, if +// explicit in the source. +// +// Example printed form: +// t2 = &t0[t1] +// +type IndexAddr struct { + register + X Value // slice or *array, + Index Value // numeric index +} + +// The Index instruction yields element Index of array X. +// +// Pos() returns the ast.IndexExpr.Lbrack for the index operation, if +// explicit in the source. +// +// Example printed form: +// t2 = t0[t1] +// +type Index struct { + register + X Value // array + Index Value // integer index +} + +// The Lookup instruction yields element Index of collection X, a map +// or string. Index is an integer expression if X is a string or the +// appropriate key type if X is a map. +// +// If CommaOk, the result is a 2-tuple of the value above and a +// boolean indicating the result of a map membership test for the key. +// The components of the tuple are accessed using Extract. +// +// Pos() returns the ast.IndexExpr.Lbrack, if explicit in the source. +// +// Example printed form: +// t2 = t0[t1] +// t5 = t3[t4],ok +// +type Lookup struct { + register + X Value // string or map + Index Value // numeric or key-typed index + CommaOk bool // return a value,ok pair +} + +// SelectState is a helper for Select. +// It represents one goal state and its corresponding communication. +// +type SelectState struct { + Dir types.ChanDir // direction of case (SendOnly or RecvOnly) + Chan Value // channel to use (for send or receive) + Send Value // value to send (for send) + Pos token.Pos // position of token.ARROW + DebugNode ast.Node // ast.SendStmt or ast.UnaryExpr(<-) [debug mode] +} + +// The Select instruction tests whether (or blocks until) one +// of the specified sent or received states is entered. +// +// Let n be the number of States for which Dir==RECV and T_i (0<=i string iterator; false => map iterator. +} + +// The TypeAssert instruction tests whether interface value X has type +// AssertedType. +// +// If !CommaOk, on success it returns v, the result of the conversion +// (defined below); on failure it panics. +// +// If CommaOk: on success it returns a pair (v, true) where v is the +// result of the conversion; on failure it returns (z, false) where z +// is AssertedType's zero value. The components of the pair must be +// accessed using the Extract instruction. +// +// If AssertedType is a concrete type, TypeAssert checks whether the +// dynamic type in interface X is equal to it, and if so, the result +// of the conversion is a copy of the value in the interface. +// +// If AssertedType is an interface, TypeAssert checks whether the +// dynamic type of the interface is assignable to it, and if so, the +// result of the conversion is a copy of the interface value X. +// If AssertedType is a superinterface of X.Type(), the operation will +// fail iff the operand is nil. (Contrast with ChangeInterface, which +// performs no nil-check.) +// +// Type() reflects the actual type of the result, possibly a +// 2-types.Tuple; AssertedType is the asserted type. +// +// Pos() returns the ast.CallExpr.Lparen if the instruction arose from +// an explicit T(e) conversion; the ast.TypeAssertExpr.Lparen if the +// instruction arose from an explicit e.(T) operation; or the +// ast.CaseClause.Case if the instruction arose from a case of a +// type-switch statement. +// +// Example printed form: +// t1 = typeassert t0.(int) +// t3 = typeassert,ok t2.(T) +// +type TypeAssert struct { + register + X Value + AssertedType types.Type + CommaOk bool +} + +// The Extract instruction yields component Index of Tuple. +// +// This is used to access the results of instructions with multiple +// return values, such as Call, TypeAssert, Next, UnOp(ARROW) and +// IndexExpr(Map). +// +// Example printed form: +// t1 = extract t0 #1 +// +type Extract struct { + register + Tuple Value + Index int +} + +// Instructions executed for effect. They do not yield a value. -------------------- + +// The Jump instruction transfers control to the sole successor of its +// owning block. +// +// A Jump must be the last instruction of its containing BasicBlock. +// +// Pos() returns NoPos. +// +// Example printed form: +// jump done +// +type Jump struct { + anInstruction +} + +// The If instruction transfers control to one of the two successors +// of its owning block, depending on the boolean Cond: the first if +// true, the second if false. +// +// An If instruction must be the last instruction of its containing +// BasicBlock. +// +// Pos() returns NoPos. +// +// Example printed form: +// if t0 goto done else body +// +type If struct { + anInstruction + Cond Value +} + +// The Return instruction returns values and control back to the calling +// function. +// +// len(Results) is always equal to the number of results in the +// function's signature. +// +// If len(Results) > 1, Return returns a tuple value with the specified +// components which the caller must access using Extract instructions. +// +// There is no instruction to return a ready-made tuple like those +// returned by a "value,ok"-mode TypeAssert, Lookup or UnOp(ARROW) or +// a tail-call to a function with multiple result parameters. +// +// Return must be the last instruction of its containing BasicBlock. +// Such a block has no successors. +// +// Pos() returns the ast.ReturnStmt.Return, if explicit in the source. +// +// Example printed form: +// return +// return nil:I, 2:int +// +type Return struct { + anInstruction + Results []Value + pos token.Pos +} + +// The RunDefers instruction pops and invokes the entire stack of +// procedure calls pushed by Defer instructions in this function. +// +// It is legal to encounter multiple 'rundefers' instructions in a +// single control-flow path through a function; this is useful in +// the combined init() function, for example. +// +// Pos() returns NoPos. +// +// Example printed form: +// rundefers +// +type RunDefers struct { + anInstruction +} + +// The Panic instruction initiates a panic with value X. +// +// A Panic instruction must be the last instruction of its containing +// BasicBlock, which must have no successors. +// +// NB: 'go panic(x)' and 'defer panic(x)' do not use this instruction; +// they are treated as calls to a built-in function. +// +// Pos() returns the ast.CallExpr.Lparen if this panic was explicit +// in the source. +// +// Example printed form: +// panic t0 +// +type Panic struct { + anInstruction + X Value // an interface{} + pos token.Pos +} + +// The Go instruction creates a new goroutine and calls the specified +// function within it. +// +// See CallCommon for generic function call documentation. +// +// Pos() returns the ast.GoStmt.Go. +// +// Example printed form: +// go println(t0, t1) +// go t3() +// go invoke t5.Println(...t6) +// +type Go struct { + anInstruction + Call CallCommon + pos token.Pos +} + +// The Defer instruction pushes the specified call onto a stack of +// functions to be called by a RunDefers instruction or by a panic. +// +// See CallCommon for generic function call documentation. +// +// Pos() returns the ast.DeferStmt.Defer. +// +// Example printed form: +// defer println(t0, t1) +// defer t3() +// defer invoke t5.Println(...t6) +// +type Defer struct { + anInstruction + Call CallCommon + pos token.Pos +} + +// The Send instruction sends X on channel Chan. +// +// Pos() returns the ast.SendStmt.Arrow, if explicit in the source. +// +// Example printed form: +// send t0 <- t1 +// +type Send struct { + anInstruction + Chan, X Value + pos token.Pos +} + +// The Store instruction stores Val at address Addr. +// Stores can be of arbitrary types. +// +// Pos() returns the ast.StarExpr.Star, if explicit in the source. +// +// Example printed form: +// *x = y +// +type Store struct { + anInstruction + Addr Value + Val Value + pos token.Pos +} + +// The MapUpdate instruction updates the association of Map[Key] to +// Value. +// +// Pos() returns the ast.KeyValueExpr.Colon or ast.IndexExpr.Lbrack, +// if explicit in the source. +// +// Example printed form: +// t0[t1] = t2 +// +type MapUpdate struct { + anInstruction + Map Value + Key Value + Value Value + pos token.Pos +} + +// A DebugRef instruction maps a source-level expression Expr to the +// SSA value X that represents the value (!IsAddr) or address (IsAddr) +// of that expression. +// +// DebugRef is a pseudo-instruction: it has no dynamic effect. +// +// Pos() returns Expr.Pos(), the start position of the source-level +// expression. This is not the same as the "designated" token as +// documented at Value.Pos(). e.g. CallExpr.Pos() does not return the +// position of the ("designated") Lparen token. +// +// If Expr is an *ast.Ident denoting a var or func, Object() returns +// the object; though this information can be obtained from the type +// checker, including it here greatly facilitates debugging. +// For non-Ident expressions, Object() returns nil. +// +// DebugRefs are generated only for functions built with debugging +// enabled; see Package.SetDebugMode() and the GlobalDebug builder +// mode flag. +// +// DebugRefs are not emitted for ast.Idents referring to constants or +// predeclared identifiers, since they are trivial and numerous. +// Nor are they emitted for ast.ParenExprs. +// +// (By representing these as instructions, rather than out-of-band, +// consistency is maintained during transformation passes by the +// ordinary SSA renaming machinery.) +// +// Example printed form: +// ; *ast.CallExpr @ 102:9 is t5 +// ; var x float64 @ 109:72 is x +// ; address of *ast.CompositeLit @ 216:10 is t0 +// +type DebugRef struct { + anInstruction + Expr ast.Expr // the referring expression (never *ast.ParenExpr) + object types.Object // the identity of the source var/func + IsAddr bool // Expr is addressable and X is the address it denotes + X Value // the value or address of Expr +} + +// Embeddable mix-ins and helpers for common parts of other structs. ----------- + +// register is a mix-in embedded by all SSA values that are also +// instructions, i.e. virtual registers, and provides a uniform +// implementation of most of the Value interface: Value.Name() is a +// numbered register (e.g. "t0"); the other methods are field accessors. +// +// Temporary names are automatically assigned to each register on +// completion of building a function in SSA form. +// +// Clients must not assume that the 'id' value (and the Name() derived +// from it) is unique within a function. As always in this API, +// semantics are determined only by identity; names exist only to +// facilitate debugging. +// +type register struct { + anInstruction + num int // "name" of virtual register, e.g. "t0". Not guaranteed unique. + typ types.Type // type of virtual register + pos token.Pos // position of source expression, or NoPos + referrers []Instruction +} + +// anInstruction is a mix-in embedded by all Instructions. +// It provides the implementations of the Block and setBlock methods. +type anInstruction struct { + block *BasicBlock // the basic block of this instruction +} + +// CallCommon is contained by Go, Defer and Call to hold the +// common parts of a function or method call. +// +// Each CallCommon exists in one of two modes, function call and +// interface method invocation, or "call" and "invoke" for short. +// +// 1. "call" mode: when Method is nil (!IsInvoke), a CallCommon +// represents an ordinary function call of the value in Value, +// which may be a *Builtin, a *Function or any other value of kind +// 'func'. +// +// Value may be one of: +// (a) a *Function, indicating a statically dispatched call +// to a package-level function, an anonymous function, or +// a method of a named type. +// (b) a *MakeClosure, indicating an immediately applied +// function literal with free variables. +// (c) a *Builtin, indicating a statically dispatched call +// to a built-in function. +// (d) any other value, indicating a dynamically dispatched +// function call. +// StaticCallee returns the identity of the callee in cases +// (a) and (b), nil otherwise. +// +// Args contains the arguments to the call. If Value is a method, +// Args[0] contains the receiver parameter. +// +// Example printed form: +// t2 = println(t0, t1) +// go t3() +// defer t5(...t6) +// +// 2. "invoke" mode: when Method is non-nil (IsInvoke), a CallCommon +// represents a dynamically dispatched call to an interface method. +// In this mode, Value is the interface value and Method is the +// interface's abstract method. Note: an abstract method may be +// shared by multiple interfaces due to embedding; Value.Type() +// provides the specific interface used for this call. +// +// Value is implicitly supplied to the concrete method implementation +// as the receiver parameter; in other words, Args[0] holds not the +// receiver but the first true argument. +// +// Example printed form: +// t1 = invoke t0.String() +// go invoke t3.Run(t2) +// defer invoke t4.Handle(...t5) +// +// For all calls to variadic functions (Signature().Variadic()), +// the last element of Args is a slice. +// +type CallCommon struct { + Value Value // receiver (invoke mode) or func value (call mode) + Method *types.Func // abstract method (invoke mode) + Args []Value // actual parameters (in static method call, includes receiver) + pos token.Pos // position of CallExpr.Lparen, iff explicit in source +} + +// IsInvoke returns true if this call has "invoke" (not "call") mode. +func (c *CallCommon) IsInvoke() bool { + return c.Method != nil +} + +func (c *CallCommon) Pos() token.Pos { return c.pos } + +// Signature returns the signature of the called function. +// +// For an "invoke"-mode call, the signature of the interface method is +// returned. +// +// In either "call" or "invoke" mode, if the callee is a method, its +// receiver is represented by sig.Recv, not sig.Params().At(0). +// +func (c *CallCommon) Signature() *types.Signature { + if c.Method != nil { + return c.Method.Type().(*types.Signature) + } + return c.Value.Type().Underlying().(*types.Signature) +} + +// StaticCallee returns the callee if this is a trivially static +// "call"-mode call to a function. +func (c *CallCommon) StaticCallee() *Function { + switch fn := c.Value.(type) { + case *Function: + return fn + case *MakeClosure: + return fn.Fn.(*Function) + } + return nil +} + +// Description returns a description of the mode of this call suitable +// for a user interface, e.g. "static method call". +func (c *CallCommon) Description() string { + switch fn := c.Value.(type) { + case *Builtin: + return "built-in function call" + case *MakeClosure: + return "static function closure call" + case *Function: + if fn.Signature.Recv() != nil { + return "static method call" + } + return "static function call" + } + if c.IsInvoke() { + return "dynamic method call" // ("invoke" mode) + } + return "dynamic function call" +} + +// The CallInstruction interface, implemented by *Go, *Defer and *Call, +// exposes the common parts of function calling instructions, +// yet provides a way back to the Value defined by *Call alone. +// +type CallInstruction interface { + Instruction + Common() *CallCommon // returns the common parts of the call + Value() *Call // returns the result value of the call (*Call) or nil (*Go, *Defer) +} + +func (s *Call) Common() *CallCommon { return &s.Call } +func (s *Defer) Common() *CallCommon { return &s.Call } +func (s *Go) Common() *CallCommon { return &s.Call } + +func (s *Call) Value() *Call { return s } +func (s *Defer) Value() *Call { return nil } +func (s *Go) Value() *Call { return nil } + +func (v *Builtin) Type() types.Type { return v.sig } +func (v *Builtin) Name() string { return v.object.Name() } +func (*Builtin) Referrers() *[]Instruction { return nil } +func (v *Builtin) Pos() token.Pos { return token.NoPos } +func (v *Builtin) Object() types.Object { return v.object } + +func (v *Capture) Type() types.Type { return v.typ } +func (v *Capture) Name() string { return v.name } +func (v *Capture) Referrers() *[]Instruction { return &v.referrers } +func (v *Capture) Pos() token.Pos { return v.pos } +func (v *Capture) Parent() *Function { return v.parent } + +func (v *Global) Type() types.Type { return v.typ } +func (v *Global) Name() string { return v.name } +func (v *Global) Pos() token.Pos { return v.pos } +func (v *Global) Referrers() *[]Instruction { return nil } +func (v *Global) Token() token.Token { return token.VAR } +func (v *Global) Object() types.Object { return v.object } +func (v *Global) String() string { return v.RelString(nil) } +func (v *Global) Package() *Package { return v.Pkg } +func (v *Global) RelString(from *types.Package) string { return relString(v, from) } + +func (v *Function) Name() string { return v.name } +func (v *Function) Type() types.Type { return v.Signature } +func (v *Function) Pos() token.Pos { return v.pos } +func (v *Function) Token() token.Token { return token.FUNC } +func (v *Function) Object() types.Object { return v.object } +func (v *Function) String() string { return v.RelString(nil) } +func (v *Function) Package() *Package { return v.Pkg } +func (v *Function) Referrers() *[]Instruction { + if v.Enclosing != nil { + return &v.referrers + } + return nil +} + +func (v *Parameter) Type() types.Type { return v.typ } +func (v *Parameter) Name() string { return v.name } +func (v *Parameter) Object() types.Object { return v.object } +func (v *Parameter) Referrers() *[]Instruction { return &v.referrers } +func (v *Parameter) Pos() token.Pos { return v.pos } +func (v *Parameter) Parent() *Function { return v.parent } + +func (v *Alloc) Type() types.Type { return v.typ } +func (v *Alloc) Referrers() *[]Instruction { return &v.referrers } +func (v *Alloc) Pos() token.Pos { return v.pos } + +func (v *register) Type() types.Type { return v.typ } +func (v *register) setType(typ types.Type) { v.typ = typ } +func (v *register) Name() string { return fmt.Sprintf("t%d", v.num) } +func (v *register) setNum(num int) { v.num = num } +func (v *register) Referrers() *[]Instruction { return &v.referrers } +func (v *register) Pos() token.Pos { return v.pos } +func (v *register) setPos(pos token.Pos) { v.pos = pos } + +func (v *anInstruction) Parent() *Function { return v.block.parent } +func (v *anInstruction) Block() *BasicBlock { return v.block } +func (v *anInstruction) setBlock(block *BasicBlock) { v.block = block } + +func (t *Type) Name() string { return t.object.Name() } +func (t *Type) Pos() token.Pos { return t.object.Pos() } +func (t *Type) Type() types.Type { return t.object.Type() } +func (t *Type) Token() token.Token { return token.TYPE } +func (t *Type) Object() types.Object { return t.object } +func (t *Type) String() string { return t.RelString(nil) } +func (t *Type) Package() *Package { return t.pkg } +func (t *Type) RelString(from *types.Package) string { return relString(t, from) } + +func (c *NamedConst) Name() string { return c.object.Name() } +func (c *NamedConst) Pos() token.Pos { return c.object.Pos() } +func (c *NamedConst) String() string { return c.RelString(nil) } +func (c *NamedConst) Type() types.Type { return c.object.Type() } +func (c *NamedConst) Token() token.Token { return token.CONST } +func (c *NamedConst) Object() types.Object { return c.object } +func (c *NamedConst) Package() *Package { return c.pkg } +func (c *NamedConst) RelString(from *types.Package) string { return relString(c, from) } + +// Func returns the package-level function of the specified name, +// or nil if not found. +// +func (p *Package) Func(name string) (f *Function) { + f, _ = p.Members[name].(*Function) + return +} + +// Var returns the package-level variable of the specified name, +// or nil if not found. +// +func (p *Package) Var(name string) (g *Global) { + g, _ = p.Members[name].(*Global) + return +} + +// Const returns the package-level constant of the specified name, +// or nil if not found. +// +func (p *Package) Const(name string) (c *NamedConst) { + c, _ = p.Members[name].(*NamedConst) + return +} + +// Type returns the package-level type of the specified name, +// or nil if not found. +// +func (p *Package) Type(name string) (t *Type) { + t, _ = p.Members[name].(*Type) + return +} + +func (v *Call) Pos() token.Pos { return v.Call.pos } +func (s *Defer) Pos() token.Pos { return s.pos } +func (s *Go) Pos() token.Pos { return s.pos } +func (s *MapUpdate) Pos() token.Pos { return s.pos } +func (s *Panic) Pos() token.Pos { return s.pos } +func (s *Return) Pos() token.Pos { return s.pos } +func (s *Send) Pos() token.Pos { return s.pos } +func (s *Store) Pos() token.Pos { return s.pos } +func (s *If) Pos() token.Pos { return token.NoPos } +func (s *Jump) Pos() token.Pos { return token.NoPos } +func (s *RunDefers) Pos() token.Pos { return token.NoPos } +func (s *DebugRef) Pos() token.Pos { return s.Expr.Pos() } + +// Operands. + +func (v *Alloc) Operands(rands []*Value) []*Value { + return rands +} + +func (v *BinOp) Operands(rands []*Value) []*Value { + return append(rands, &v.X, &v.Y) +} + +func (c *CallCommon) Operands(rands []*Value) []*Value { + rands = append(rands, &c.Value) + for i := range c.Args { + rands = append(rands, &c.Args[i]) + } + return rands +} + +func (s *Go) Operands(rands []*Value) []*Value { + return s.Call.Operands(rands) +} + +func (s *Call) Operands(rands []*Value) []*Value { + return s.Call.Operands(rands) +} + +func (s *Defer) Operands(rands []*Value) []*Value { + return s.Call.Operands(rands) +} + +func (v *ChangeInterface) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (v *ChangeType) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (v *Convert) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (s *DebugRef) Operands(rands []*Value) []*Value { + return append(rands, &s.X) +} + +func (v *Extract) Operands(rands []*Value) []*Value { + return append(rands, &v.Tuple) +} + +func (v *Field) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (v *FieldAddr) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (s *If) Operands(rands []*Value) []*Value { + return append(rands, &s.Cond) +} + +func (v *Index) Operands(rands []*Value) []*Value { + return append(rands, &v.X, &v.Index) +} + +func (v *IndexAddr) Operands(rands []*Value) []*Value { + return append(rands, &v.X, &v.Index) +} + +func (*Jump) Operands(rands []*Value) []*Value { + return rands +} + +func (v *Lookup) Operands(rands []*Value) []*Value { + return append(rands, &v.X, &v.Index) +} + +func (v *MakeChan) Operands(rands []*Value) []*Value { + return append(rands, &v.Size) +} + +func (v *MakeClosure) Operands(rands []*Value) []*Value { + rands = append(rands, &v.Fn) + for i := range v.Bindings { + rands = append(rands, &v.Bindings[i]) + } + return rands +} + +func (v *MakeInterface) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (v *MakeMap) Operands(rands []*Value) []*Value { + return append(rands, &v.Reserve) +} + +func (v *MakeSlice) Operands(rands []*Value) []*Value { + return append(rands, &v.Len, &v.Cap) +} + +func (v *MapUpdate) Operands(rands []*Value) []*Value { + return append(rands, &v.Map, &v.Key, &v.Value) +} + +func (v *Next) Operands(rands []*Value) []*Value { + return append(rands, &v.Iter) +} + +func (s *Panic) Operands(rands []*Value) []*Value { + return append(rands, &s.X) +} + +func (v *Phi) Operands(rands []*Value) []*Value { + for i := range v.Edges { + rands = append(rands, &v.Edges[i]) + } + return rands +} + +func (v *Range) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (s *Return) Operands(rands []*Value) []*Value { + for i := range s.Results { + rands = append(rands, &s.Results[i]) + } + return rands +} + +func (*RunDefers) Operands(rands []*Value) []*Value { + return rands +} + +func (v *Select) Operands(rands []*Value) []*Value { + for i := range v.States { + rands = append(rands, &v.States[i].Chan, &v.States[i].Send) + } + return rands +} + +func (s *Send) Operands(rands []*Value) []*Value { + return append(rands, &s.Chan, &s.X) +} + +func (v *Slice) Operands(rands []*Value) []*Value { + return append(rands, &v.X, &v.Low, &v.High) +} + +func (s *Store) Operands(rands []*Value) []*Value { + return append(rands, &s.Addr, &s.Val) +} + +func (v *TypeAssert) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} + +func (v *UnOp) Operands(rands []*Value) []*Value { + return append(rands, &v.X) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/switch.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/switch.go new file mode 100644 index 00000000..ae030c49 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/switch.go @@ -0,0 +1,234 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssautil + +// This file implements discovery of switch and type-switch constructs +// from low-level control flow. +// +// Many techniques exist for compiling a high-level switch with +// constant cases to efficient machine code. The optimal choice will +// depend on the data type, the specific case values, the code in the +// body of each case, and the hardware. +// Some examples: +// - a lookup table (for a switch that maps constants to constants) +// - a computed goto +// - a binary tree +// - a perfect hash +// - a two-level switch (to partition constant strings by their first byte). + +import ( + "bytes" + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +// A ConstCase represents a single constant comparison. +// It is part of a Switch. +type ConstCase struct { + Block *ssa.BasicBlock // block performing the comparison + Body *ssa.BasicBlock // body of the case + Value *ssa.Const // case comparand +} + +// A TypeCase represents a single type assertion. +// It is part of a Switch. +type TypeCase struct { + Block *ssa.BasicBlock // block performing the type assert + Body *ssa.BasicBlock // body of the case + Type types.Type // case type + Binding ssa.Value // value bound by this case +} + +// A Switch is a logical high-level control flow operation +// (a multiway branch) discovered by analysis of a CFG containing +// only if/else chains. It is not part of the ssa.Instruction set. +// +// One of ConstCases and TypeCases has length >= 2; +// the other is nil. +// +// In a value switch, the list of cases may contain duplicate constants. +// A type switch may contain duplicate types, or types assignable +// to an interface type also in the list. +// TODO(adonovan): eliminate such duplicates. +// +type Switch struct { + Start *ssa.BasicBlock // block containing start of if/else chain + X ssa.Value // the switch operand + ConstCases []ConstCase // ordered list of constant comparisons + TypeCases []TypeCase // ordered list of type assertions + Default *ssa.BasicBlock // successor if all comparisons fail +} + +func (sw *Switch) String() string { + // We represent each block by the String() of its + // first Instruction, e.g. "print(42:int)". + var buf bytes.Buffer + if sw.ConstCases != nil { + fmt.Fprintf(&buf, "switch %s {\n", sw.X.Name()) + for _, c := range sw.ConstCases { + fmt.Fprintf(&buf, "case %s: %s\n", c.Value, c.Body.Instrs[0]) + } + } else { + fmt.Fprintf(&buf, "switch %s.(type) {\n", sw.X.Name()) + for _, c := range sw.TypeCases { + fmt.Fprintf(&buf, "case %s %s: %s\n", + c.Binding.Name(), c.Type, c.Body.Instrs[0]) + } + } + if sw.Default != nil { + fmt.Fprintf(&buf, "default: %s\n", sw.Default.Instrs[0]) + } + fmt.Fprintf(&buf, "}") + return buf.String() +} + +// Switches examines the control-flow graph of fn and returns the +// set of inferred value and type switches. A value switch tests an +// ssa.Value for equality against two or more compile-time constant +// values. Switches involving link-time constants (addresses) are +// ignored. A type switch type-asserts an ssa.Value against two or +// more types. +// +// The switches are returned in dominance order. +// +// The resulting switches do not necessarily correspond to uses of the +// 'switch' keyword in the source: for example, a single source-level +// switch statement with non-constant cases may result in zero, one or +// many Switches, one per plural sequence of constant cases. +// Switches may even be inferred from if/else- or goto-based control flow. +// (In general, the control flow constructs of the source program +// cannot be faithfully reproduced from the SSA representation.) +// +func Switches(fn *ssa.Function) []Switch { + // Traverse the CFG in dominance order, so we don't + // enter an if/else-chain in the middle. + var switches []Switch + seen := make(map[*ssa.BasicBlock]bool) // TODO(adonovan): opt: use ssa.blockSet + for _, b := range fn.DomPreorder() { + if x, k := isComparisonBlock(b); x != nil { + // Block b starts a switch. + sw := Switch{Start: b, X: x} + valueSwitch(&sw, k, seen) + if len(sw.ConstCases) > 1 { + switches = append(switches, sw) + } + } + + if y, x, T := isTypeAssertBlock(b); y != nil { + // Block b starts a type switch. + sw := Switch{Start: b, X: x} + typeSwitch(&sw, y, T, seen) + if len(sw.TypeCases) > 1 { + switches = append(switches, sw) + } + } + } + return switches +} + +func valueSwitch(sw *Switch, k *ssa.Const, seen map[*ssa.BasicBlock]bool) { + b := sw.Start + x := sw.X + for x == sw.X { + if seen[b] { + break + } + seen[b] = true + + sw.ConstCases = append(sw.ConstCases, ConstCase{ + Block: b, + Body: b.Succs[0], + Value: k, + }) + b = b.Succs[1] + if len(b.Instrs) > 2 { + // Block b contains not just 'if x == k', + // so it may have side effects that + // make it unsafe to elide. + break + } + if len(b.Preds) != 1 { + // Block b has multiple predecessors, + // so it cannot be treated as a case. + break + } + x, k = isComparisonBlock(b) + } + sw.Default = b +} + +func typeSwitch(sw *Switch, y ssa.Value, T types.Type, seen map[*ssa.BasicBlock]bool) { + b := sw.Start + x := sw.X + for x == sw.X { + if seen[b] { + break + } + seen[b] = true + + sw.TypeCases = append(sw.TypeCases, TypeCase{ + Block: b, + Body: b.Succs[0], + Type: T, + Binding: y, + }) + b = b.Succs[1] + if len(b.Instrs) > 4 { + // Block b contains not just + // {TypeAssert; Extract #0; Extract #1; If} + // so it may have side effects that + // make it unsafe to elide. + break + } + if len(b.Preds) != 1 { + // Block b has multiple predecessors, + // so it cannot be treated as a case. + break + } + y, x, T = isTypeAssertBlock(b) + } + sw.Default = b +} + +// isComparisonBlock returns the operands (v, k) if a block ends with +// a comparison v==k, where k is a compile-time constant. +// +func isComparisonBlock(b *ssa.BasicBlock) (v ssa.Value, k *ssa.Const) { + if n := len(b.Instrs); n >= 2 { + if i, ok := b.Instrs[n-1].(*ssa.If); ok { + if binop, ok := i.Cond.(*ssa.BinOp); ok && binop.Block() == b && binop.Op == token.EQL { + if k, ok := binop.Y.(*ssa.Const); ok { + return binop.X, k + } + if k, ok := binop.X.(*ssa.Const); ok { + return binop.Y, k + } + } + } + } + return +} + +// isTypeAssertBlock returns the operands (y, x, T) if a block ends with +// a type assertion "if y, ok := x.(T); ok {". +// +func isTypeAssertBlock(b *ssa.BasicBlock) (y, x ssa.Value, T types.Type) { + if n := len(b.Instrs); n >= 4 { + if i, ok := b.Instrs[n-1].(*ssa.If); ok { + if ext1, ok := i.Cond.(*ssa.Extract); ok && ext1.Block() == b && ext1.Index == 1 { + if ta, ok := ext1.Tuple.(*ssa.TypeAssert); ok && ta.Block() == b { + // hack: relies upon instruction ordering. + if ext0, ok := b.Instrs[n-3].(*ssa.Extract); ok { + return ext0, ta.X, ta.AssertedType + } + } + } + } + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/switch_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/switch_test.go new file mode 100644 index 00000000..86d5bfb2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/switch_test.go @@ -0,0 +1,70 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssautil_test + +import ( + "go/parser" + "strings" + "testing" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/ssautil" +) + +func TestSwitches(t *testing.T) { + conf := loader.Config{ParserMode: parser.ParseComments} + f, err := conf.ParseFile("testdata/switches.go", nil) + if err != nil { + t.Error(err) + return + } + + conf.CreateFromFiles("main", f) + iprog, err := conf.Load() + if err != nil { + t.Error(err) + return + } + + prog := ssa.Create(iprog, 0) + mainPkg := prog.Package(iprog.Created[0].Pkg) + mainPkg.Build() + + for _, mem := range mainPkg.Members { + if fn, ok := mem.(*ssa.Function); ok { + if fn.Synthetic != "" { + continue // e.g. init() + } + // Each (multi-line) "switch" comment within + // this function must match the printed form + // of a ConstSwitch. + var wantSwitches []string + for _, c := range f.Comments { + if fn.Syntax().Pos() <= c.Pos() && c.Pos() < fn.Syntax().End() { + text := strings.TrimSpace(c.Text()) + if strings.HasPrefix(text, "switch ") { + wantSwitches = append(wantSwitches, text) + } + } + } + + switches := ssautil.Switches(fn) + if len(switches) != len(wantSwitches) { + t.Errorf("in %s, found %d switches, want %d", fn, len(switches), len(wantSwitches)) + } + for i, sw := range switches { + got := sw.String() + if i >= len(wantSwitches) { + continue + } + want := wantSwitches[i] + if got != want { + t.Errorf("in %s, found switch %d: got <<%s>>, want <<%s>>", fn, i, got, want) + } + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/testdata/switches.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/testdata/switches.go new file mode 100644 index 00000000..8ab4c118 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/testdata/switches.go @@ -0,0 +1,357 @@ +// +build ignore + +package main + +// This file is the input to TestSwitches in switch_test.go. +// Each multiway conditional with constant or type cases (Switch) +// discovered by Switches is printed, and compared with the +// comments. +// +// The body of each case is printed as the value of its first +// instruction. + +// -------- Value switches -------- + +func SimpleSwitch(x, y int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: print(23:int) + // case 3:int: print(23:int) + // case 4:int: print(3:int) + // default: x == y + // } + switch x { + case 1: + print(1) + case 2, 3: + print(23) + fallthrough + case 4: + print(3) + default: + print(4) + case y: + print(5) + } + print(6) +} + +func four() int { return 4 } + +// A non-constant case makes a switch "impure", but its pure +// cases form two separate switches. +func SwitchWithNonConstantCase(x int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: print(23:int) + // case 3:int: print(23:int) + // default: four() + // } + + // switch x { + // case 5:int: print(5:int) + // case 6:int: print(6:int) + // default: print("done":string) + // } + switch x { + case 1: + print(1) + case 2, 3: + print(23) + case four(): + print(3) + case 5: + print(5) + case 6: + print(6) + } + print("done") +} + +// Switches may be found even where the source +// program doesn't have a switch statement. + +func ImplicitSwitches(x, y int) { + // switch x { + // case 1:int: print(12:int) + // case 2:int: print(12:int) + // default: x < 5:int + // } + if x == 1 || 2 == x || x < 5 { + print(12) + } + + // switch x { + // case 3:int: print(34:int) + // case 4:int: print(34:int) + // default: x == y + // } + if x == 3 || 4 == x || x == y { + print(34) + } + + // Not a switch: no consistent variable. + if x == 5 || y == 6 { + print(56) + } + + // Not a switch: only one constant comparison. + if x == 7 || x == y { + print(78) + } +} + +func IfElseBasedSwitch(x int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: print(2:int) + // default: print("else":string) + // } + if x == 1 { + print(1) + } else if x == 2 { + print(2) + } else { + print("else") + } +} + +func GotoBasedSwitch(x int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: print(2:int) + // default: print("else":string) + // } + if x == 1 { + goto L1 + } + if x == 2 { + goto L2 + } + print("else") +L1: + print(1) + goto end +L2: + print(2) +end: +} + +func SwitchInAForLoop(x int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: print(2:int) + // default: print("head":string) + // } +loop: + for { + print("head") + switch x { + case 1: + print(1) + break loop + case 2: + print(2) + break loop + } + } +} + +// This case is a switch in a for-loop, both constructed using goto. +// As before, the default case points back to the block containing the +// switch, but that's ok. +func SwitchInAForLoopUsingGoto(x int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: print(2:int) + // default: print("head":string) + // } +loop: + print("head") + if x == 1 { + goto L1 + } + if x == 2 { + goto L2 + } + goto loop +L1: + print(1) + goto end +L2: + print(2) +end: +} + +func UnstructuredSwitchInAForLoop(x int) { + // switch x { + // case 1:int: print(1:int) + // case 2:int: x == 1:int + // default: print("end":string) + // } + for { + if x == 1 { + print(1) + return + } + if x == 2 { + continue + } + break + } + print("end") +} + +func CaseWithMultiplePreds(x int) { + for { + if x == 1 { + print(1) + return + } + loop: + // This block has multiple predecessors, + // so can't be treated as a switch case. + if x == 2 { + goto loop + } + break + } + print("end") +} + +func DuplicateConstantsAreNotEliminated(x int) { + // switch x { + // case 1:int: print(1:int) + // case 1:int: print("1a":string) + // case 2:int: print(2:int) + // default: return + // } + if x == 1 { + print(1) + } else if x == 1 { // duplicate => unreachable + print("1a") + } else if x == 2 { + print(2) + } +} + +// Interface values (created by comparisons) are not constants, +// so ConstSwitch.X is never of interface type. +func MakeInterfaceIsNotAConstant(x interface{}) { + if x == "foo" { + print("foo") + } else if x == 1 { + print(1) + } +} + +func ZeroInitializedVarsAreConstants(x int) { + // switch x { + // case 0:int: print(1:int) + // case 2:int: print(2:int) + // default: print("end":string) + // } + var zero int // SSA construction replaces zero with 0 + if x == zero { + print(1) + } else if x == 2 { + print(2) + } + print("end") +} + +// -------- Select -------- + +// NB, potentially fragile reliance on register number. +func SelectDesugarsToSwitch(ch chan int) { + // switch t1 { + // case 0:int: extract t0 #2 + // case 1:int: println(0:int) + // case 2:int: println(1:int) + // default: println("default":string) + // } + select { + case x := <-ch: + println(x) + case <-ch: + println(0) + case ch <- 1: + println(1) + default: + println("default") + } +} + +// NB, potentially fragile reliance on register number. +func NonblockingSelectDefaultCasePanics(ch chan int) { + // switch t1 { + // case 0:int: extract t0 #2 + // case 1:int: println(0:int) + // case 2:int: println(1:int) + // default: make interface{} <- string ("blocking select m...":string) + // } + select { + case x := <-ch: + println(x) + case <-ch: + println(0) + case ch <- 1: + println(1) + } +} + +// -------- Type switches -------- + +// NB, reliance on fragile register numbering. +func SimpleTypeSwitch(x interface{}) { + // switch x.(type) { + // case t3 int: println(x) + // case t7 bool: println(x) + // case t10 string: println(t10) + // default: println(x) + // } + switch y := x.(type) { + case nil: + println(y) + case int, bool: + println(y) + case string: + println(y) + default: + println(y) + } +} + +// NB, potentially fragile reliance on register number. +func DuplicateTypesAreNotEliminated(x interface{}) { + // switch x.(type) { + // case t1 string: println(1:int) + // case t5 interface{}: println(t5) + // case t9 int: println(3:int) + // default: return + // } + switch y := x.(type) { + case string: + println(1) + case interface{}: + println(y) + case int: + println(3) // unreachable! + } +} + +// NB, potentially fragile reliance on register number. +func AdHocTypeSwitch(x interface{}) { + // switch x.(type) { + // case t1 int: println(t1) + // case t5 string: println(t5) + // default: print("default":string) + // } + if i, ok := x.(int); ok { + println(i) + } else if s, ok := x.(string); ok { + println(s) + } else { + print("default") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/visit.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/visit.go new file mode 100644 index 00000000..6b8c5d21 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/ssautil/visit.go @@ -0,0 +1,66 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssautil + +import "code.google.com/p/go.tools/go/ssa" + +// This file defines utilities for visiting the SSA representation of +// a Program. +// +// TODO(adonovan): test coverage. + +// AllFunctions finds and returns the set of functions potentially +// needed by program prog, as determined by a simple linker-style +// reachability algorithm starting from the members and method-sets of +// each package. The result may include anonymous functions and +// synthetic wrappers. +// +// Precondition: all packages are built. +// +func AllFunctions(prog *ssa.Program) map[*ssa.Function]bool { + visit := visitor{ + prog: prog, + seen: make(map[*ssa.Function]bool), + } + visit.program() + return visit.seen +} + +type visitor struct { + prog *ssa.Program + seen map[*ssa.Function]bool +} + +func (visit *visitor) program() { + for _, pkg := range visit.prog.AllPackages() { + for _, mem := range pkg.Members { + if fn, ok := mem.(*ssa.Function); ok { + visit.function(fn) + } + } + } + for _, T := range visit.prog.TypesWithMethodSets() { + mset := visit.prog.MethodSets.MethodSet(T) + for i, n := 0, mset.Len(); i < n; i++ { + visit.function(visit.prog.Method(mset.At(i))) + } + } +} + +func (visit *visitor) function(fn *ssa.Function) { + if !visit.seen[fn] { + visit.seen[fn] = true + var buf [10]*ssa.Value // avoid alloc in common case + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + for _, op := range instr.Operands(buf[:0]) { + if fn, ok := (*op).(*ssa.Function); ok { + visit.function(fn) + } + } + } + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/stdlib_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/stdlib_test.go new file mode 100644 index 00000000..d08f3449 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/stdlib_test.go @@ -0,0 +1,126 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa_test + +// This file runs the SSA builder in sanity-checking mode on all +// packages beneath $GOROOT and prints some summary information. +// +// Run test with GOMAXPROCS=8. + +import ( + "go/token" + "os" + "path/filepath" + "runtime" + "strings" + "testing" + "time" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/ssautil" +) + +func allPackages() []string { + var pkgs []string + root := filepath.Join(runtime.GOROOT(), "src/pkg") + string(os.PathSeparator) + filepath.Walk(root, func(path string, info os.FileInfo, err error) error { + // Prune the search if we encounter any of these names: + switch filepath.Base(path) { + case "testdata", ".hg": + return filepath.SkipDir + } + if info.IsDir() { + pkg := filepath.ToSlash(strings.TrimPrefix(path, root)) + switch pkg { + case "builtin", "pkg": + return filepath.SkipDir // skip these subtrees + case "": + return nil // ignore root of tree + } + pkgs = append(pkgs, pkg) + } + + return nil + }) + return pkgs +} + +func TestStdlib(t *testing.T) { + // Load, parse and type-check the program. + t0 := time.Now() + + var conf loader.Config + conf.SourceImports = true + if _, err := conf.FromArgs(allPackages(), true); err != nil { + t.Errorf("FromArgs failed: %v", err) + return + } + + iprog, err := conf.Load() + if err != nil { + t.Fatalf("Load failed: %v", err) + } + + t1 := time.Now() + + runtime.GC() + var memstats runtime.MemStats + runtime.ReadMemStats(&memstats) + alloc := memstats.Alloc + + // Create SSA packages. + var mode ssa.BuilderMode + // Comment out these lines during benchmarking. Approx SSA build costs are noted. + mode |= ssa.SanityCheckFunctions // + 2% space, + 4% time + mode |= ssa.GlobalDebug // +30% space, +18% time + prog := ssa.Create(iprog, mode) + + t2 := time.Now() + + // Build SSA. + prog.BuildAll() + + t3 := time.Now() + + runtime.GC() + runtime.ReadMemStats(&memstats) + + numPkgs := len(prog.AllPackages()) + if want := 140; numPkgs < want { + t.Errorf("Loaded only %d packages, want at least %d", numPkgs, want) + } + + // Dump some statistics. + allFuncs := ssautil.AllFunctions(prog) + var numInstrs int + for fn := range allFuncs { + for _, b := range fn.Blocks { + numInstrs += len(b.Instrs) + } + } + + // determine line count + var lineCount int + prog.Fset.Iterate(func(f *token.File) bool { + lineCount += f.LineCount() + return true + }) + + // NB: when benchmarking, don't forget to clear the debug + + // sanity builder flags for better performance. + + t.Log("GOMAXPROCS: ", runtime.GOMAXPROCS(0)) + t.Log("#Source lines: ", lineCount) + t.Log("Load/parse/typecheck: ", t1.Sub(t0)) + t.Log("SSA create: ", t2.Sub(t1)) + t.Log("SSA build: ", t3.Sub(t2)) + + // SSA stats: + t.Log("#Packages: ", numPkgs) + t.Log("#Functions: ", len(allFuncs)) + t.Log("#Instructions: ", numInstrs) + t.Log("#MB: ", int64(memstats.Alloc-alloc)/1000000) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testdata/objlookup.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testdata/objlookup.go new file mode 100644 index 00000000..d2862d33 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testdata/objlookup.go @@ -0,0 +1,160 @@ +//+build ignore + +package main + +// This file is the input to TestObjValueLookup in source_test.go, +// which ensures that each occurrence of an ident defining or +// referring to a func, var or const object can be mapped to its +// corresponding SSA Value. +// +// For every reference to a var object, we use annotations in comments +// to denote both the expected SSA Value kind, and whether to expect +// its value (x) or its address (&x). +// +// For const and func objects, the results don't vary by reference and +// are always values not addresses, so no annotations are needed. The +// declaration is enough. + +import "fmt" +import "os" + +type J int + +func (*J) method() {} + +const globalConst = 0 + +var globalVar int // &globalVar::Global + +func globalFunc() {} + +type I interface { + interfaceMethod() +} + +type S struct { + x int // x::nil +} + +func main() { + print(globalVar) // globalVar::UnOp + globalVar = 1 // globalVar::Const + + var v0 int = 1 // v0::Const (simple local value spec) + if v0 > 0 { // v0::Const + v0 = 2 // v0::Const + } + print(v0) // v0::Phi + + // v1 is captured and thus implicitly address-taken. + var v1 int = 1 // v1::Const + v1 = 2 // v1::Const + fmt.Println(v1) // v1::UnOp (load) + f := func(param int) { // f::MakeClosure param::Parameter + if y := 1; y > 0 { // y::Const + print(v1, param) // v1::UnOp (load) param::Parameter + } + param = 2 // param::Const + println(param) // param::Const + } + + f(0) // f::MakeClosure + + var v2 int // v2::Const (implicitly zero-initialized local value spec) + print(v2) // v2::Const + + m := make(map[string]int) // m::MakeMap + + // Local value spec with multi-valued RHS: + var v3, v4 = m[""] // v3::Extract v4::Extract m::MakeMap + print(v3) // v3::Extract + print(v4) // v4::Extract + + v3++ // v3::BinOp (assign with op) + v3 += 2 // v3::BinOp (assign with op) + + v5, v6 := false, "" // v5::Const v6::Const (defining assignment) + print(v5) // v5::Const + print(v6) // v6::Const + + var v7 S // &v7::Alloc + v7.x = 1 // &v7::Alloc x::Const + print(v7.x) // v7::UnOp x::Field + + var v8 [1]int // &v8::Alloc + v8[0] = 0 // &v8::Alloc + print(v8[:]) // &v8::Alloc + _ = v8[0] // v8::UnOp (load from Alloc) + _ = v8[:][0] // &v8::Alloc + v8ptr := &v8 // v8ptr::Alloc &v8::Alloc + _ = v8ptr[0] // v8ptr::Alloc + _ = *v8ptr // v8ptr::Alloc + + v8a := make([]int, 1) // v8a::MakeSlice + v8a[0] = 0 // v8a::MakeSlice + print(v8a[:]) // v8a::MakeSlice + + v9 := S{} // &v9::Alloc + + v10 := &v9 // v10::Alloc &v9::Alloc + _ = v10 // v10::Alloc + + var v11 *J = nil // v11::Const + v11.method() // v11::Const + + var v12 J // &v12::Alloc + v12.method() // &v12::Alloc (implicitly address-taken) + + // NB, in the following, 'method' resolves to the *types.Func + // of (*J).method, so it doesn't help us locate the specific + // ssa.Values here: a bound-method closure and a promotion + // wrapper. + _ = v11.method // v11::Const + _ = (*struct{ J }).method // J::nil + + // These vars are optimised away. + if false { + v13 := 0 // v13::nil + println(v13) // v13::nil + } + + switch x := 1; x { // x::Const + case v0: // v0::Phi + } + + for k, v := range m { // k::Extract v::Extract m::MakeMap + _ = k // k::Extract + v++ // v::BinOp + } + + if y := 0; y > 1 { // y::Const y::Const + } + + var i interface{} // i::Const (nil interface) + i = 1 // i::MakeInterface + switch i := i.(type) { // i::MakeInterface i::MakeInterface + case int: + println(i) // i::Extract + } + + ch := make(chan int) // ch::MakeChan + select { + case x := <-ch: // x::UnOp (receive) ch::MakeChan + _ = x // x::UnOp + } + + // .Op is an inter-package FieldVal-selection. + var err os.PathError // &err::Alloc + _ = err.Op // err::UnOp Op::Field + _ = &err.Op // &err::Alloc &Op::FieldAddr + + // Exercise corner-cases of lvalues vs rvalues. + // (Guessing IsAddr from the 'pointerness' won't cut it here.) + type N *N + var n N // n::Const + n1 := n // n1::Const n::Const + n2 := &n1 // n2::Alloc &n1::Alloc + n3 := *n2 // n3::UnOp n2::Alloc + n4 := **n3 // n4::UnOp n3::UnOp + _ = n4 // n4::UnOp +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testdata/valueforexpr.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testdata/valueforexpr.go new file mode 100644 index 00000000..70906cac --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testdata/valueforexpr.go @@ -0,0 +1,148 @@ +//+build ignore + +package main + +// This file is the input to TestValueForExpr in source_test.go, which +// ensures that each expression e immediately following a /*@kind*/(x) +// annotation, when passed to Function.ValueForExpr(e), returns a +// non-nil Value of the same type as e and of kind 'kind'. + +func f(spilled, unspilled int) { + _ = /*@UnOp*/ (spilled) + _ = /*@Parameter*/ (unspilled) + _ = /*@*/ (1 + 2) // (constant) + i := 0 + /*@Call*/ (print( /*@BinOp*/ (i + 1))) + ch := /*@MakeChan*/ (make(chan int)) + /*@UnOp*/ (<-ch) + x := /*@UnOp*/ (<-ch) + _ = x + select { + case /*@Extract*/ (<-ch): + case x := /*@Extract*/ (<-ch): + _ = x + } + defer /*@Function*/ (func() { + })() + go /*@Function*/ (func() { + })() + y := 0 + if true && /*@BinOp*/ (bool(y > 0)) { + y = 1 + } + _ = /*@Phi*/ (y) + map1 := /*@MakeMap*/ (make(map[string]string)) + _ = map1 + _ = /*@MakeSlice*/ (make([]int, 0)) + _ = /*@MakeClosure*/ (func() { print(spilled) }) + + sl := []int{} + _ = /*@Slice*/ (sl[:0]) + + _ = /*@*/ (new(int)) // optimized away + tmp := /*@Alloc*/ (new(int)) + _ = tmp + var iface interface{} + _ = /*@TypeAssert*/ (iface.(int)) + _ = /*@UnOp*/ (sl[0]) + _ = /*@IndexAddr*/ (&sl[0]) + _ = /*@Index*/ ([2]int{}[0]) + var p *int + _ = /*@UnOp*/ (*p) + + _ = /*@UnOp*/ (global) + /*@UnOp*/ (global)[""] = "" + /*@Global*/ (global) = map[string]string{} + + var local t + /*UnOp*/ (local.x) = 1 + + // Exercise corner-cases of lvalues vs rvalues. + type N *N + var n N + /*@UnOp*/ (n) = /*@UnOp*/ (n) + /*@ChangeType*/ (n) = /*@Alloc*/ (&n) + /*@UnOp*/ (n) = /*@UnOp*/ (*n) + /*@UnOp*/ (n) = /*@UnOp*/ (**n) +} + +func complit() { + // Composite literals. + // We get different results for + // - composite literal as value (e.g. operand to print) + // - composite literal initializer for addressable value + // - composite literal value assigned to blank var + + // 1. Slices + print( /*@Slice*/ ([]int{})) + print( /*@Alloc*/ (&[]int{})) + print(& /*@Alloc*/ ([]int{})) + + sl1 := /*@Slice*/ ([]int{}) + sl2 := /*@Alloc*/ (&[]int{}) + sl3 := & /*@Alloc*/ ([]int{}) + _, _, _ = sl1, sl2, sl3 + + _ = /*@Slice*/ ([]int{}) + _ = /*@*/ (& /*@Slice*/ ([]int{})) // & optimized away + _ = & /*@Slice*/ ([]int{}) + + // 2. Arrays + print( /*@UnOp*/ ([1]int{})) + print( /*@Alloc*/ (&[1]int{})) + print(& /*@Alloc*/ ([1]int{})) + + arr1 := /*@Alloc*/ ([1]int{}) + arr2 := /*@Alloc*/ (&[1]int{}) + arr3 := & /*@Alloc*/ ([1]int{}) + _, _, _ = arr1, arr2, arr3 + + _ = /*@UnOp*/ ([1]int{}) + _ = /*@Alloc*/ (& /*@Alloc*/ ([1]int{})) // & optimized away + _ = & /*@Alloc*/ ([1]int{}) + + // 3. Maps + type M map[int]int + print( /*@MakeMap*/ (M{})) + print( /*@Alloc*/ (&M{})) + print(& /*@Alloc*/ (M{})) + + m1 := /*@MakeMap*/ (M{}) + m2 := /*@Alloc*/ (&M{}) + m3 := & /*@Alloc*/ (M{}) + _, _, _ = m1, m2, m3 + + _ = /*@MakeMap*/ (M{}) + _ = /*@*/ (& /*@MakeMap*/ (M{})) // & optimized away + _ = & /*@MakeMap*/ (M{}) + + // 4. Structs + print( /*@UnOp*/ (struct{}{})) + print( /*@Alloc*/ (&struct{}{})) + print(& /*@Alloc*/ (struct{}{})) + + s1 := /*@Alloc*/ (struct{}{}) + s2 := /*@Alloc*/ (&struct{}{}) + s3 := & /*@Alloc*/ (struct{}{}) + _, _, _ = s1, s2, s3 + + _ = /*@UnOp*/ (struct{}{}) + _ = /*@Alloc*/ (& /*@Alloc*/ (struct{}{})) + _ = & /*@Alloc*/ (struct{}{}) +} + +type t struct{ x int } + +// Ensure we can locate methods of named types. +func (t) f(param int) { + _ = /*@Parameter*/ (param) +} + +// Ensure we can locate init functions. +func init() { + m := /*@MakeMap*/ (make(map[string]string)) + _ = m +} + +// Ensure we can locate variables in initializer expressions. +var global = /*@MakeMap*/ (make(map[string]string)) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testmain.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testmain.go new file mode 100644 index 00000000..51c8d4ed --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/testmain.go @@ -0,0 +1,221 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// CreateTestMainPackage synthesizes a main package that runs all the +// tests of the supplied packages. +// It is closely coupled to src/cmd/go/test.go and src/pkg/testing. + +import ( + "go/ast" + "go/token" + "os" + "strings" + + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/types" +) + +// CreateTestMainPackage creates and returns a synthetic "main" +// package that runs all the tests of the supplied packages, similar +// to the one that would be created by the 'go test' tool. +// +// It returns nil if the program contains no tests. +// +func (prog *Program) CreateTestMainPackage(pkgs ...*Package) *Package { + if len(pkgs) == 0 { + return nil + } + testmain := &Package{ + Prog: prog, + Members: make(map[string]Member), + values: make(map[types.Object]Value), + Object: types.NewPackage("testmain", "testmain"), + } + + // Build package's init function. + init := &Function{ + name: "init", + Signature: new(types.Signature), + Synthetic: "package initializer", + Pkg: testmain, + Prog: prog, + } + init.startBody() + // TODO(adonovan): use lexical order. + var expfuncs []*Function // all exported functions of *_test.go in pkgs, unordered + for _, pkg := range pkgs { + if pkg.Prog != prog { + panic("wrong Program") + } + // Initialize package to test. + var v Call + v.Call.Value = pkg.init + v.setType(types.NewTuple()) + init.emit(&v) + + // Enumerate its possible tests/benchmarks. + for _, mem := range pkg.Members { + if f, ok := mem.(*Function); ok && + ast.IsExported(f.Name()) && + strings.HasSuffix(prog.Fset.Position(f.Pos()).Filename, "_test.go") { + expfuncs = append(expfuncs, f) + } + } + } + init.emit(new(Return)) + init.finishBody() + testmain.init = init + testmain.Object.MarkComplete() + testmain.Members[init.name] = init + + testingPkg := prog.ImportedPackage("testing") + if testingPkg == nil { + // If the program doesn't import "testing", it can't + // contain any tests. + // TODO(adonovan): but it might contain Examples. + // Support them (by just calling them directly). + return nil + } + testingMain := testingPkg.Func("Main") + testingMainParams := testingMain.Signature.Params() + + // The generated code is as if compiled from this: + // + // func main() { + // match := func(_, _ string) (bool, error) { return true, nil } + // tests := []testing.InternalTest{{"TestFoo", TestFoo}, ...} + // benchmarks := []testing.InternalBenchmark{...} + // examples := []testing.InternalExample{...} + // testing.Main(match, tests, benchmarks, examples) + // } + + main := &Function{ + name: "main", + Signature: new(types.Signature), + Synthetic: "test main function", + Prog: prog, + Pkg: testmain, + } + + matcher := &Function{ + name: "matcher", + Signature: testingMainParams.At(0).Type().(*types.Signature), + Synthetic: "test matcher predicate", + Enclosing: main, + Pkg: testmain, + Prog: prog, + } + main.AnonFuncs = append(main.AnonFuncs, matcher) + matcher.startBody() + matcher.emit(&Return{Results: []Value{vTrue, nilConst(types.Universe.Lookup("error").Type())}}) + matcher.finishBody() + + main.startBody() + var c Call + c.Call.Value = testingMain + + tests := testMainSlice(main, expfuncs, "Test", testingMainParams.At(1).Type()) + benchmarks := testMainSlice(main, expfuncs, "Benchmark", testingMainParams.At(2).Type()) + examples := testMainSlice(main, expfuncs, "Example", testingMainParams.At(3).Type()) + _, noTests := tests.(*Const) // i.e. nil slice + _, noBenchmarks := benchmarks.(*Const) + _, noExamples := examples.(*Const) + if noTests && noBenchmarks && noExamples { + return nil + } + + c.Call.Args = []Value{matcher, tests, benchmarks, examples} + // Emit: testing.Main(nil, tests, benchmarks, examples) + emitTailCall(main, &c) + main.finishBody() + + testmain.Members["main"] = main + + if prog.mode&LogPackages != 0 { + testmain.WriteTo(os.Stderr) + } + + if prog.mode&SanityCheckFunctions != 0 { + sanityCheckPackage(testmain) + } + + prog.packages[testmain.Object] = testmain + + return testmain +} + +// testMainSlice emits to fn code to construct a slice of type slice +// (one of []testing.Internal{Test,Benchmark,Example}) for all +// functions in expfuncs whose name starts with prefix (one of +// "Test", "Benchmark" or "Example") and whose type is appropriate. +// It returns the slice value. +// +func testMainSlice(fn *Function, expfuncs []*Function, prefix string, slice types.Type) Value { + tElem := slice.(*types.Slice).Elem() + tFunc := tElem.Underlying().(*types.Struct).Field(1).Type() + + var testfuncs []*Function + for _, f := range expfuncs { + if isTest(f.Name(), prefix) && types.Identical(f.Signature, tFunc) { + testfuncs = append(testfuncs, f) + } + } + if testfuncs == nil { + return nilConst(slice) + } + + tString := types.Typ[types.String] + tPtrString := types.NewPointer(tString) + tPtrElem := types.NewPointer(tElem) + tPtrFunc := types.NewPointer(tFunc) + + // Emit: array = new [n]testing.InternalTest + tArray := types.NewArray(tElem, int64(len(testfuncs))) + array := emitNew(fn, tArray, token.NoPos) + array.Comment = "test main" + for i, testfunc := range testfuncs { + // Emit: pitem = &array[i] + ia := &IndexAddr{X: array, Index: intConst(int64(i))} + ia.setType(tPtrElem) + pitem := fn.emit(ia) + + // Emit: pname = &pitem.Name + fa := &FieldAddr{X: pitem, Field: 0} // .Name + fa.setType(tPtrString) + pname := fn.emit(fa) + + // Emit: *pname = "testfunc" + emitStore(fn, pname, NewConst(exact.MakeString(testfunc.Name()), tString)) + + // Emit: pfunc = &pitem.F + fa = &FieldAddr{X: pitem, Field: 1} // .F + fa.setType(tPtrFunc) + pfunc := fn.emit(fa) + + // Emit: *pfunc = testfunc + emitStore(fn, pfunc, testfunc) + } + + // Emit: slice array[:] + sl := &Slice{X: array} + sl.setType(slice) + return fn.emit(sl) +} + +// Plundered from $GOROOT/src/cmd/go/test.go + +// isTest tells whether name looks like a test (or benchmark, according to prefix). +// It is a Test (say) if there is a character after Test that is not a lower-case letter. +// We don't want TesticularCancer. +func isTest(name, prefix string) bool { + if !strings.HasPrefix(name, prefix) { + return false + } + if len(name) == len(prefix) { // "Test" is ok + return true + } + return ast.IsExported(name[len(prefix):]) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/util.go new file mode 100644 index 00000000..3c661c36 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/ssa/util.go @@ -0,0 +1,139 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +// This file defines a number of miscellaneous utility functions. + +import ( + "fmt" + "go/ast" + "go/token" + "io" + "os" + + "code.google.com/p/go.tools/go/types" +) + +func unreachable() { + panic("unreachable") +} + +//// AST utilities + +// unparen returns e with any enclosing parentheses stripped. +func unparen(e ast.Expr) ast.Expr { + for { + p, ok := e.(*ast.ParenExpr) + if !ok { + break + } + e = p.X + } + return e +} + +// isBlankIdent returns true iff e is an Ident with name "_". +// They have no associated types.Object, and thus no type. +// +func isBlankIdent(e ast.Expr) bool { + id, ok := e.(*ast.Ident) + return ok && id.Name == "_" +} + +//// Type utilities. Some of these belong in go/types. + +// isPointer returns true for types whose underlying type is a pointer. +func isPointer(typ types.Type) bool { + _, ok := typ.Underlying().(*types.Pointer) + return ok +} + +// deref returns a pointer's element type; otherwise it returns typ. +func deref(typ types.Type) types.Type { + if p, ok := typ.Underlying().(*types.Pointer); ok { + return p.Elem() + } + return typ +} + +// DefaultType returns the default "typed" type for an "untyped" type; +// it returns the incoming type for all other types. The default type +// for untyped nil is untyped nil. +// +// Exported to ssa/interp. +// +// TODO(gri): this is a copy of go/types.defaultType; export that function. +// +func DefaultType(typ types.Type) types.Type { + if t, ok := typ.(*types.Basic); ok { + k := t.Kind() + switch k { + case types.UntypedBool: + k = types.Bool + case types.UntypedInt: + k = types.Int + case types.UntypedRune: + k = types.Rune + case types.UntypedFloat: + k = types.Float64 + case types.UntypedComplex: + k = types.Complex128 + case types.UntypedString: + k = types.String + } + typ = types.Typ[k] + } + return typ +} + +// logStack prints the formatted "start" message to stderr and +// returns a closure that prints the corresponding "end" message. +// Call using 'defer logStack(...)()' to show builder stack on panic. +// Don't forget trailing parens! +// +func logStack(format string, args ...interface{}) func() { + msg := fmt.Sprintf(format, args...) + io.WriteString(os.Stderr, msg) + io.WriteString(os.Stderr, "\n") + return func() { + io.WriteString(os.Stderr, msg) + io.WriteString(os.Stderr, " end\n") + } +} + +// callsRecover reports whether f contains a direct call to recover(). +func callsRecover(f *Function) bool { + for _, b := range f.Blocks { + for _, instr := range b.Instrs { + if call, ok := instr.(*Call); ok { + if blt, ok := call.Call.Value.(*Builtin); ok { + if blt.Name() == "recover" { + return true + } + } + } + } + } + return false +} + +// newVar creates a 'var' for use in a types.Tuple. +func newVar(name string, typ types.Type) *types.Var { + return types.NewParam(token.NoPos, nil, name, typ) +} + +var ( + lenObject = types.Universe.Lookup("len").(*types.Builtin) + lenResults = types.NewTuple(newVar("", tInt)) +) + +// makeLen returns the len builtin specialized to type func(T)int. +func makeLen(T types.Type) *Builtin { + lenParams := types.NewTuple(newVar("", T)) + return &Builtin{ + object: lenObject, + sig: types.NewSignature(nil, nil, lenParams, lenResults, false), + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/api.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/api.go new file mode 100644 index 00000000..d7081f08 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/api.go @@ -0,0 +1,265 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package types declares the data types and implements +// the algorithms for type-checking of Go packages. +// Use Check and Config.Check to invoke the type-checker. +// +// Type-checking consists of several interdependent phases: +// +// Name resolution maps each identifier (ast.Ident) in the program to the +// language object (Object) it denotes. +// Use Info.{Defs,Uses,Implicits} for the results of name resolution. +// +// Constant folding computes the exact constant value (exact.Value) for +// every expression (ast.Expr) that is a compile-time constant. +// Use Info.Types[expr].Value for the results of constant folding. +// +// Type inference computes the type (Type) of every expression (ast.Expr) +// and checks for compliance with the language specification. +// Use Info.Types[expr].Type for the results of type inference. +// +package types + +import ( + "bytes" + "fmt" + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// Check type-checks a package and returns the resulting complete package +// object, or a nil package and the first error. The package is specified +// by a list of *ast.Files and corresponding file set, and the import path +// the package is identified with. The clean path must not be empty or dot ("."). +// +// For more control over type-checking and results, use Config.Check. +func Check(path string, fset *token.FileSet, files []*ast.File) (*Package, error) { + var conf Config + pkg, err := conf.Check(path, fset, files, nil) + if err != nil { + return nil, err + } + return pkg, nil +} + +// An Error describes a type-checking error; it implements the error interface. +// A "soft" error is an error that still permits a valid interpretation of a +// package (such as "unused variable"); "hard" errors may lead to unpredictable +// behavior if ignored. +type Error struct { + Fset *token.FileSet // file set for interpretation of Pos + Pos token.Pos // error position + Msg string // error message + Soft bool // if set, error is "soft" +} + +// Error returns an error string formatted as follows: +// filename:line:column: message +func (err Error) Error() string { + return fmt.Sprintf("%s: %s", err.Fset.Position(err.Pos), err.Msg) +} + +// An importer resolves import paths to Packages. +// The imports map records packages already known, +// indexed by package path. The type-checker +// will invoke Import with Config.Packages. +// An importer must determine the canonical package path and +// check imports to see if it is already present in the map. +// If so, the Importer can return the map entry. Otherwise, +// the importer must load the package data for the given path +// into a new *Package, record it in imports map, and return +// the package. +// TODO(gri) Need to be clearer about requirements of completeness. +type Importer func(map[string]*Package, string) (*Package, error) + +// A Config specifies the configuration for type checking. +// The zero value for Config is a ready-to-use default configuration. +type Config struct { + // If IgnoreFuncBodies is set, function bodies are not + // type-checked. + IgnoreFuncBodies bool + + // If FakeImportC is set, `import "C"` (for packages requiring Cgo) + // declares an empty "C" package and errors are omitted for qualified + // identifiers referring to package C (which won't find an object). + // This feature is intended for the standard library cmd/api tool. + // + // Caution: Effects may be unpredictable due to follow-up errors. + // Do not use casually! + FakeImportC bool + + // Packages is used to look up (and thus canonicalize) packages by + // package path. If Packages is nil, it is set to a new empty map. + // During type-checking, imported packages are added to the map. + Packages map[string]*Package + + // If Error != nil, it is called with each error found + // during type checking; err has dynamic type Error. + // Secondary errors (for instance, to enumerate all types + // involved in an invalid recursive type declaration) have + // error strings that start with a '\t' character. + Error func(err error) + + // If Import != nil, it is called for each imported package. + // Otherwise, DefaultImport is called. + Import Importer + + // If Sizes != nil, it provides the sizing functions for package unsafe. + // Otherwise &StdSize{WordSize: 8, MaxAlign: 8} is used instead. + Sizes Sizes +} + +// DefaultImport is the default importer invoked if Config.Import == nil. +// The declaration: +// +// import _ "code.google.com/p/go.tools/go/gcimporter" +// +// in a client of go/types will initialize DefaultImport to gcimporter.Import. +var DefaultImport Importer + +type TypeAndValue struct { + Type Type + Value exact.Value +} + +// Info holds result type information for a type-checked package. +// Only the information for which a map is provided is collected. +// If the package has type errors, the collected information may +// be incomplete. +type Info struct { + // Types maps expressions to their types, and for constant + // expressions, their values. + // Identifiers are collected in Defs and Uses, not Types. + // + // For an expression denoting a predeclared built-in function + // the recorded signature is call-site specific. If the call + // result is not a constant, the recorded type is an argument- + // specific signature. Otherwise, the recorded type is invalid. + Types map[ast.Expr]TypeAndValue + + // Defs maps identifiers to the objects they define (including + // package names, dots "." of dot-imports, and blank "_" identifiers). + // For identifiers that do not denote objects (e.g., the package name + // in package clauses, or symbolic variables t in t := x.(type) of + // type switch headers), the corresponding objects are nil. + // + // For an anonymous field, Defs returns the field *Var it defines. + // + // Invariant: Defs[id] == nil || Defs[id].Pos() == id.Pos() + Defs map[*ast.Ident]Object + + // Uses maps identifiers to the objects they denote. + // + // For an anonymous field, Uses returns the *TypeName it denotes. + // + // Invariant: Uses[id].Pos() != id.Pos() + Uses map[*ast.Ident]Object + + // Implicits maps nodes to their implicitly declared objects, if any. + // The following node and object types may appear: + // + // node declared object + // + // *ast.ImportSpec *PkgName for dot-imports and imports without renames + // *ast.CaseClause type-specific *Var for each type switch case clause (incl. default) + // *ast.Field anonymous struct field or parameter *Var + // + Implicits map[ast.Node]Object + + // Selections maps selector expressions to their corresponding selections. + Selections map[*ast.SelectorExpr]*Selection + + // Scopes maps ast.Nodes to the scopes they define. Package scopes are not + // associated with a specific node but with all files belonging to a package. + // Thus, the package scope can be found in the type-checked Package object. + // Scopes nest, with the Universe scope being the outermost scope, enclosing + // the package scope, which contains (one or more) files scopes, which enclose + // function scopes which in turn enclose statement and function literal scopes. + // Note that even though package-level functions are declared in the package + // scope, the function scopes are embedded in the file scope of the file + // containing the function declaration. + // + // The following node types may appear in Scopes: + // + // *ast.File + // *ast.FuncType + // *ast.BlockStmt + // *ast.IfStmt + // *ast.SwitchStmt + // *ast.TypeSwitchStmt + // *ast.CaseClause + // *ast.CommClause + // *ast.ForStmt + // *ast.RangeStmt + // + Scopes map[ast.Node]*Scope + + // InitOrder is the list of package-level initializers in the order in which + // they must be executed. Initializers referring to variables related by an + // initialization dependency appear in topological order, the others appear + // in source order. Variables without an initialization expression do not + // appear in this list. + InitOrder []*Initializer +} + +// An Initializer describes a package-level variable, or a list of variables in case +// of a multi-valued initialization expression, and the corresponding initialization +// expression. +type Initializer struct { + Lhs []*Var // var Lhs = Rhs + Rhs ast.Expr +} + +func (init *Initializer) String() string { + var buf bytes.Buffer + for i, lhs := range init.Lhs { + if i > 0 { + buf.WriteString(", ") + } + buf.WriteString(lhs.Name()) + } + buf.WriteString(" = ") + WriteExpr(&buf, init.Rhs) + return buf.String() +} + +// Check type-checks a package and returns the resulting package object, +// the first error if any, and if info != nil, additional type information. +// The package is marked as complete if no errors occurred, otherwise it is +// incomplete. +// +// The package is specified by a list of *ast.Files and corresponding +// file set, and the package path the package is identified with. +// The clean path must not be empty or dot ("."). +func (conf *Config) Check(path string, fset *token.FileSet, files []*ast.File, info *Info) (*Package, error) { + pkg := NewPackage(path, "") + return pkg, NewChecker(conf, fset, pkg, info).Files(files) +} + +// AssertableTo reports whether a value of type V can be asserted to have type T. +func AssertableTo(V *Interface, T Type) bool { + f, _ := MissingMethod(T, V, false) + return f == nil +} + +// AssignableTo reports whether a value of type V is assignable to a variable of type T. +func AssignableTo(V, T Type) bool { + x := operand{mode: value, typ: V} + return x.assignableTo(nil, T) // config not needed for non-constant x +} + +// ConvertibleTo reports whether a value of type V is convertible to a value of type T. +func ConvertibleTo(V, T Type) bool { + x := operand{mode: value, typ: V} + return x.convertibleTo(nil, T) // config not needed for non-constant x +} + +// Implements reports whether type V implements interface T. +func Implements(V Type, T *Interface) bool { + f, _ := MissingMethod(V, T, true) + return f == nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/api_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/api_test.go new file mode 100644 index 00000000..edd70f66 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/api_test.go @@ -0,0 +1,471 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "fmt" + "go/ast" + "go/parser" + "go/token" + "strings" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +func pkgFor(path, source string, info *Info) (*Package, error) { + fset := token.NewFileSet() + f, err := parser.ParseFile(fset, path, source, 0) + if err != nil { + return nil, err + } + + var conf Config + return conf.Check(f.Name.Name, fset, []*ast.File{f}, info) +} + +func mustTypecheck(t *testing.T, path, source string, info *Info) string { + pkg, err := pkgFor(path, source, info) + if err != nil { + name := path + if pkg != nil { + name = "package " + pkg.Name() + } + t.Fatalf("%s: didn't type-check (%s)", name, err) + } + return pkg.Name() +} + +func TestValuesInfo(t *testing.T) { + var tests = []struct { + src string + expr string // constant expression + typ string // constant type + val string // constant value + }{ + {`package a0; const _ = false`, `false`, `untyped bool`, `false`}, + {`package a1; const _ = 0`, `0`, `untyped int`, `0`}, + {`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`}, + {`package a3; const _ = 0.`, `0.`, `untyped float`, `0`}, + {`package a4; const _ = 0i`, `0i`, `untyped complex`, `0`}, + {`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`}, + + {`package b0; var _ = false`, `false`, `bool`, `false`}, + {`package b1; var _ = 0`, `0`, `int`, `0`}, + {`package b2; var _ = 'A'`, `'A'`, `rune`, `65`}, + {`package b3; var _ = 0.`, `0.`, `float64`, `0`}, + {`package b4; var _ = 0i`, `0i`, `complex128`, `0`}, + {`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`}, + + {`package c0a; var _ = bool(false)`, `false`, `bool`, `false`}, + {`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`}, + {`package c0c; type T bool; var _ = T(false)`, `T(false)`, `c0c.T`, `false`}, + + {`package c1a; var _ = int(0)`, `0`, `int`, `0`}, + {`package c1b; var _ = int(0)`, `int(0)`, `int`, `0`}, + {`package c1c; type T int; var _ = T(0)`, `T(0)`, `c1c.T`, `0`}, + + {`package c2a; var _ = rune('A')`, `'A'`, `rune`, `65`}, + {`package c2b; var _ = rune('A')`, `rune('A')`, `rune`, `65`}, + {`package c2c; type T rune; var _ = T('A')`, `T('A')`, `c2c.T`, `65`}, + + {`package c3a; var _ = float32(0.)`, `0.`, `float32`, `0`}, + {`package c3b; var _ = float32(0.)`, `float32(0.)`, `float32`, `0`}, + {`package c3c; type T float32; var _ = T(0.)`, `T(0.)`, `c3c.T`, `0`}, + + {`package c4a; var _ = complex64(0i)`, `0i`, `complex64`, `0`}, + {`package c4b; var _ = complex64(0i)`, `complex64(0i)`, `complex64`, `0`}, + {`package c4c; type T complex64; var _ = T(0i)`, `T(0i)`, `c4c.T`, `0`}, + + {`package c5a; var _ = string("foo")`, `"foo"`, `string`, `"foo"`}, + {`package c5b; var _ = string("foo")`, `string("foo")`, `string`, `"foo"`}, + {`package c5c; type T string; var _ = T("foo")`, `T("foo")`, `c5c.T`, `"foo"`}, + + {`package d0; var _ = []byte("foo")`, `"foo"`, `string`, `"foo"`}, + {`package d1; var _ = []byte(string("foo"))`, `"foo"`, `string`, `"foo"`}, + {`package d2; var _ = []byte(string("foo"))`, `string("foo")`, `string`, `"foo"`}, + {`package d3; type T []byte; var _ = T("foo")`, `"foo"`, `string`, `"foo"`}, + + {`package e0; const _ = float32( 1e-200)`, `float32(1e-200)`, `float32`, `0`}, + {`package e1; const _ = float32(-1e-200)`, `float32(-1e-200)`, `float32`, `0`}, + {`package e2; const _ = float64( 1e-2000)`, `float64(1e-2000)`, `float64`, `0`}, + {`package e3; const _ = float64(-1e-2000)`, `float64(-1e-2000)`, `float64`, `0`}, + {`package e4; const _ = complex64( 1e-200)`, `complex64(1e-200)`, `complex64`, `0`}, + {`package e5; const _ = complex64(-1e-200)`, `complex64(-1e-200)`, `complex64`, `0`}, + {`package e6; const _ = complex128( 1e-2000)`, `complex128(1e-2000)`, `complex128`, `0`}, + {`package e7; const _ = complex128(-1e-2000)`, `complex128(-1e-2000)`, `complex128`, `0`}, + + {`package f0 ; var _ float32 = 1e-200`, `1e-200`, `float32`, `0`}, + {`package f1 ; var _ float32 = -1e-200`, `-1e-200`, `float32`, `0`}, + {`package f2a; var _ float64 = 1e-2000`, `1e-2000`, `float64`, `0`}, + {`package f3a; var _ float64 = -1e-2000`, `-1e-2000`, `float64`, `0`}, + {`package f2b; var _ = 1e-2000`, `1e-2000`, `float64`, `0`}, + {`package f3b; var _ = -1e-2000`, `-1e-2000`, `float64`, `0`}, + {`package f4 ; var _ complex64 = 1e-200 `, `1e-200`, `complex64`, `0`}, + {`package f5 ; var _ complex64 = -1e-200 `, `-1e-200`, `complex64`, `0`}, + {`package f6a; var _ complex128 = 1e-2000i`, `1e-2000i`, `complex128`, `0`}, + {`package f7a; var _ complex128 = -1e-2000i`, `-1e-2000i`, `complex128`, `0`}, + {`package f6b; var _ = 1e-2000i`, `1e-2000i`, `complex128`, `0`}, + {`package f7b; var _ = -1e-2000i`, `-1e-2000i`, `complex128`, `0`}, + } + + for _, test := range tests { + info := Info{ + Types: make(map[ast.Expr]TypeAndValue), + } + name := mustTypecheck(t, "ValuesInfo", test.src, &info) + + // look for constant expression + var expr ast.Expr + for e := range info.Types { + if ExprString(e) == test.expr { + expr = e + break + } + } + if expr == nil { + t.Errorf("package %s: no expression found for %s", name, test.expr) + continue + } + tv := info.Types[expr] + + // check that type is correct + if got := tv.Type.String(); got != test.typ { + t.Errorf("package %s: got type %s; want %s", name, got, test.typ) + continue + } + + // check that value is correct + if got := tv.Value.String(); got != test.val { + t.Errorf("package %s: got value %s; want %s", name, got, test.val) + } + } +} + +func TestTypesInfo(t *testing.T) { + var tests = []struct { + src string + expr string // expression + typ string // value type + }{ + // single-valued expressions of untyped constants + {`package b0; var x interface{} = false`, `false`, `bool`}, + {`package b1; var x interface{} = 0`, `0`, `int`}, + {`package b2; var x interface{} = 0.`, `0.`, `float64`}, + {`package b3; var x interface{} = 0i`, `0i`, `complex128`}, + {`package b4; var x interface{} = "foo"`, `"foo"`, `string`}, + + // comma-ok expressions + {`package p0; var x interface{}; var _, _ = x.(int)`, + `x.(int)`, + `(int, bool)`, + }, + {`package p1; var x interface{}; func _() { _, _ = x.(int) }`, + `x.(int)`, + `(int, bool)`, + }, + {`package p2; type mybool bool; var m map[string]complex128; var b mybool; func _() { _, b = m["foo"] }`, + `m["foo"]`, + `(complex128, p2.mybool)`, + }, + {`package p3; var c chan string; var _, _ = <-c`, + `<-c`, + `(string, bool)`, + }, + + // issue 6796 + {`package issue6796_a; var x interface{}; var _, _ = (x.(int))`, + `x.(int)`, + `(int, bool)`, + }, + {`package issue6796_b; var c chan string; var _, _ = (<-c)`, + `(<-c)`, + `(string, bool)`, + }, + {`package issue6796_c; var c chan string; var _, _ = (<-c)`, + `<-c`, + `(string, bool)`, + }, + {`package issue6796_d; var c chan string; var _, _ = ((<-c))`, + `(<-c)`, + `(string, bool)`, + }, + {`package issue6796_e; func f(c chan string) { _, _ = ((<-c)) }`, + `(<-c)`, + `(string, bool)`, + }, + + // issue 7060 + {`package issue7060_a; var ( m map[int]string; x, ok = m[0] )`, + `m[0]`, + `(string, bool)`, + }, + {`package issue7060_b; var ( m map[int]string; x, ok interface{} = m[0] )`, + `m[0]`, + `(string, bool)`, + }, + {`package issue7060_c; func f(x interface{}, ok bool, m map[int]string) { x, ok = m[0] }`, + `m[0]`, + `(string, bool)`, + }, + {`package issue7060_d; var ( ch chan string; x, ok = <-ch )`, + `<-ch`, + `(string, bool)`, + }, + {`package issue7060_e; var ( ch chan string; x, ok interface{} = <-ch )`, + `<-ch`, + `(string, bool)`, + }, + {`package issue7060_f; func f(x interface{}, ok bool, ch chan string) { x, ok = <-ch }`, + `<-ch`, + `(string, bool)`, + }, + } + + for _, test := range tests { + info := Info{Types: make(map[ast.Expr]TypeAndValue)} + name := mustTypecheck(t, "TypesInfo", test.src, &info) + + // look for expression type + var typ Type + for e, tv := range info.Types { + if ExprString(e) == test.expr { + typ = tv.Type + break + } + } + if typ == nil { + t.Errorf("package %s: no type found for %s", name, test.expr) + continue + } + + // check that type is correct + if got := typ.String(); got != test.typ { + t.Errorf("package %s: got %s; want %s", name, got, test.typ) + } + } +} + +func TestScopesInfo(t *testing.T) { + var tests = []struct { + src string + scopes []string // list of scope descriptors of the form kind:varlist + }{ + {`package p0`, []string{ + "file:", + }}, + {`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{ + "file:fmt m", + }}, + {`package p2; func _() {}`, []string{ + "file:", "func:", + }}, + {`package p3; func _(x, y int) {}`, []string{ + "file:", "func:x y", + }}, + {`package p4; func _(x, y int) { x, z := 1, 2; _ = z }`, []string{ + "file:", "func:x y z", // redeclaration of x + }}, + {`package p5; func _(x, y int) (u, _ int) { return }`, []string{ + "file:", "func:u x y", + }}, + {`package p6; func _() { { var x int; _ = x } }`, []string{ + "file:", "func:", "block:x", + }}, + {`package p7; func _() { if true {} }`, []string{ + "file:", "func:", "if:", "block:", + }}, + {`package p8; func _() { if x := 0; x < 0 { y := x; _ = y } }`, []string{ + "file:", "func:", "if:x", "block:y", + }}, + {`package p9; func _() { switch x := 0; x {} }`, []string{ + "file:", "func:", "switch:x", + }}, + {`package p10; func _() { switch x := 0; x { case 1: y := x; _ = y; default: }}`, []string{ + "file:", "func:", "switch:x", "case:y", "case:", + }}, + {`package p11; func _(t interface{}) { switch t.(type) {} }`, []string{ + "file:", "func:t", "type switch:", + }}, + {`package p12; func _(t interface{}) { switch t := t; t.(type) {} }`, []string{ + "file:", "func:t", "type switch:t", + }}, + {`package p13; func _(t interface{}) { switch x := t.(type) { case int: _ = x } }`, []string{ + "file:", "func:t", "type switch:", "case:x", // x implicitly declared + }}, + {`package p14; func _() { select{} }`, []string{ + "file:", "func:", + }}, + {`package p15; func _(c chan int) { select{ case <-c: } }`, []string{ + "file:", "func:c", "comm:", + }}, + {`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{ + "file:", "func:c", "comm:i x", + }}, + {`package p17; func _() { for{} }`, []string{ + "file:", "func:", "for:", "block:", + }}, + {`package p18; func _(n int) { for i := 0; i < n; i++ { _ = i } }`, []string{ + "file:", "func:n", "for:i", "block:", + }}, + {`package p19; func _(a []int) { for i := range a { _ = i} }`, []string{ + "file:", "func:a", "range:i", "block:", + }}, + {`package p20; var s int; func _(a []int) { for i, x := range a { s += x; _ = i } }`, []string{ + "file:", "func:a", "range:i x", "block:", + }}, + } + + for _, test := range tests { + info := Info{Scopes: make(map[ast.Node]*Scope)} + name := mustTypecheck(t, "ScopesInfo", test.src, &info) + + // number of scopes must match + if len(info.Scopes) != len(test.scopes) { + t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes)) + } + + // scope descriptions must match + for node, scope := range info.Scopes { + kind := "" + switch node.(type) { + case *ast.File: + kind = "file" + case *ast.FuncType: + kind = "func" + case *ast.BlockStmt: + kind = "block" + case *ast.IfStmt: + kind = "if" + case *ast.SwitchStmt: + kind = "switch" + case *ast.TypeSwitchStmt: + kind = "type switch" + case *ast.CaseClause: + kind = "case" + case *ast.CommClause: + kind = "comm" + case *ast.ForStmt: + kind = "for" + case *ast.RangeStmt: + kind = "range" + } + + // look for matching scope description + desc := kind + ":" + strings.Join(scope.Names(), " ") + found := false + for _, d := range test.scopes { + if desc == d { + found = true + break + } + } + if !found { + t.Errorf("package %s: no matching scope found for %s", name, desc) + } + } + } +} + +func TestInitOrderInfo(t *testing.T) { + var tests = []struct { + src string + inits []string + }{ + {`package p0; var (x = 1; y = x)`, []string{ + "x = 1", "y = x", + }}, + {`package p1; var (a = 1; b = 2; c = 3)`, []string{ + "a = 1", "b = 2", "c = 3", + }}, + {`package p2; var (a, b, c = 1, 2, 3)`, []string{ + "a = 1", "b = 2", "c = 3", + }}, + {`package p3; var _ = f(); func f() int { return 1 }`, []string{ + "_ = f()", // blank var + }}, + {`package p4; var (a = 0; x = y; y = z; z = 0)`, []string{ + "a = 0", "z = 0", "y = z", "x = y", + }}, + {`package p5; var (a, _ = m[0]; m map[int]string)`, []string{ + "a, _ = m[0]", // blank var + }}, + {`package p6; var a, b = f(); func f() (_, _ int) { return z, z }; var z = 0`, []string{ + "z = 0", "a, b = f()", + }}, + {`package p7; var (a = func() int { return b }(); b = 1)`, []string{ + "b = 1", "a = (func() int literal)()", + }}, + {`package p8; var (a, b = func() (_, _ int) { return c, c }(); c = 1)`, []string{ + "c = 1", "a, b = (func() (_, _ int) literal)()", + }}, + {`package p9; type T struct{}; func (T) m() int { _ = y; return 0 }; var x, y = T.m, 1`, []string{ + "y = 1", "x = T.m", + }}, + {`package p10; var (d = c + b; a = 0; b = 0; c = 0)`, []string{ + "b = 0", "c = 0", "d = c + b", "a = 0", + }}, + // test case for issue 7131 + {`package main + + var counter int + func next() int { counter++; return counter } + + var _ = makeOrder() + func makeOrder() []int { return []int{f, b, d, e, c, a} } + + var a = next() + var b, c = next(), next() + var d, e, f = next(), next(), next() + `, []string{ + "a = next()", "b = next()", "c = next()", "d = next()", "e = next()", "f = next()", "_ = makeOrder()", + }}, + } + + for _, test := range tests { + info := Info{} + name := mustTypecheck(t, "InitOrderInfo", test.src, &info) + + // number of initializers must match + if len(info.InitOrder) != len(test.inits) { + t.Errorf("package %s: got %d initializers; want %d", name, len(info.InitOrder), len(test.inits)) + continue + } + + // initializers must match + for i, want := range test.inits { + got := info.InitOrder[i].String() + if got != want { + t.Errorf("package %s, init %d: got %s; want %s", name, i, got, want) + continue + } + } + } +} + +func TestFiles(t *testing.T) { + var sources = []string{ + "package p; type T struct{}; func (T) m1() {}", + "package p; func (T) m2() {}; var _ interface{ m1(); m2() } = T{}", + "package p; func (T) m3() {}; var _ interface{ m1(); m2(); m3() } = T{}", + } + + var conf Config + fset := token.NewFileSet() + pkg := NewPackage("p", "p") + check := NewChecker(&conf, fset, pkg, nil) + + for i, src := range sources { + filename := fmt.Sprintf("sources%d", i) + f, err := parser.ParseFile(fset, filename, src, 0) + if err != nil { + t.Fatal(err) + } + if err := check.Files([]*ast.File{f}); err != nil { + t.Error(err) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/assignments.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/assignments.go new file mode 100644 index 00000000..d79e418b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/assignments.go @@ -0,0 +1,320 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements initialization and assignment checks. + +package types + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// assignment reports whether x can be assigned to a variable of type T, +// if necessary by attempting to convert untyped values to the appropriate +// type. If x.mode == invalid upon return, then assignment has already +// issued an error message and the caller doesn't have to report another. +// Use T == nil to indicate assignment to an untyped blank identifier. +// +// TODO(gri) Should find a better way to handle in-band errors. +// +func (check *checker) assignment(x *operand, T Type) bool { + switch x.mode { + case invalid: + return true // error reported before + case constant, variable, mapindex, value, commaok: + // ok + default: + unreachable() + } + + // x must be a single value + // (tuple types are never named - no need for underlying type) + if t, _ := x.typ.(*Tuple); t != nil { + assert(t.Len() > 1) + check.errorf(x.pos(), "%d-valued expression %s used as single value", t.Len(), x) + x.mode = invalid + return false + } + + if isUntyped(x.typ) { + target := T + // spec: "If an untyped constant is assigned to a variable of interface + // type or the blank identifier, the constant is first converted to type + // bool, rune, int, float64, complex128 or string respectively, depending + // on whether the value is a boolean, rune, integer, floating-point, complex, + // or string constant." + if T == nil || isInterface(T) { + if T == nil && x.typ == Typ[UntypedNil] { + check.errorf(x.pos(), "use of untyped nil") + x.mode = invalid + return false + } + target = defaultType(x.typ) + } + check.convertUntyped(x, target) + if x.mode == invalid { + return false + } + } + + // spec: "If a left-hand side is the blank identifier, any typed or + // non-constant value except for the predeclared identifier nil may + // be assigned to it." + return T == nil || x.assignableTo(check.conf, T) +} + +func (check *checker) initConst(lhs *Const, x *operand) { + if x.mode == invalid || x.typ == Typ[Invalid] || lhs.typ == Typ[Invalid] { + if lhs.typ == nil { + lhs.typ = Typ[Invalid] + } + return + } + + // rhs must be a constant + if x.mode != constant { + check.errorf(x.pos(), "%s is not constant", x) + if lhs.typ == nil { + lhs.typ = Typ[Invalid] + } + return + } + assert(isConstType(x.typ)) + + // If the lhs doesn't have a type yet, use the type of x. + if lhs.typ == nil { + lhs.typ = x.typ + } + + if !check.assignment(x, lhs.typ) { + if x.mode != invalid { + check.errorf(x.pos(), "cannot define constant %s (type %s) as %s", lhs.Name(), lhs.typ, x) + } + lhs.val = exact.MakeUnknown() + return + } + + lhs.val = x.val +} + +// If result is set, lhs is a function result parameter and x is a return result. +func (check *checker) initVar(lhs *Var, x *operand, result bool) Type { + if x.mode == invalid || x.typ == Typ[Invalid] || lhs.typ == Typ[Invalid] { + if lhs.typ == nil { + lhs.typ = Typ[Invalid] + } + return nil + } + + // If the lhs doesn't have a type yet, use the type of x. + if lhs.typ == nil { + typ := x.typ + if isUntyped(typ) { + // convert untyped types to default types + if typ == Typ[UntypedNil] { + check.errorf(x.pos(), "use of untyped nil") + lhs.typ = Typ[Invalid] + return nil + } + typ = defaultType(typ) + } + lhs.typ = typ + } + + if !check.assignment(x, lhs.typ) { + if x.mode != invalid { + if result { + // don't refer to lhs.name because it may be an anonymous result parameter + check.errorf(x.pos(), "cannot return %s as value of type %s", x, lhs.typ) + } else { + check.errorf(x.pos(), "cannot initialize %s with %s", lhs, x) + } + } + return nil + } + + return x.typ +} + +func (check *checker) assignVar(lhs ast.Expr, x *operand) Type { + if x.mode == invalid || x.typ == Typ[Invalid] { + return nil + } + + // Determine if the lhs is a (possibly parenthesized) identifier. + ident, _ := unparen(lhs).(*ast.Ident) + + // Don't evaluate lhs if it is the blank identifier. + if ident != nil && ident.Name == "_" { + check.recordDef(ident, nil) + if !check.assignment(x, nil) { + assert(x.mode == invalid) + x.typ = nil + } + return x.typ + } + + // If the lhs is an identifier denoting a variable v, this assignment + // is not a 'use' of v. Remember current value of v.used and restore + // after evaluating the lhs via check.expr. + var v *Var + var v_used bool + if ident != nil { + if obj := check.scope.LookupParent(ident.Name); obj != nil { + v, _ = obj.(*Var) + if v != nil { + v_used = v.used + } + } + } + + var z operand + check.expr(&z, lhs) + if v != nil { + v.used = v_used // restore v.used + } + + if z.mode == invalid || z.typ == Typ[Invalid] { + return nil + } + + // spec: "Each left-hand side operand must be addressable, a map index + // expression, or the blank identifier. Operands may be parenthesized." + switch z.mode { + case invalid: + return nil + case variable, mapindex: + // ok + default: + check.errorf(z.pos(), "cannot assign to %s", &z) + return nil + } + + if !check.assignment(x, z.typ) { + if x.mode != invalid { + check.errorf(x.pos(), "cannot assign %s to %s", x, &z) + } + return nil + } + + return x.typ +} + +// If returnPos is valid, initVars is called to type-check the assignment of +// return expressions, and returnPos is the position of the return statement. +func (check *checker) initVars(lhs []*Var, rhs []ast.Expr, returnPos token.Pos) { + l := len(lhs) + get, r, commaOk := unpack(func(x *operand, i int) { check.expr(x, rhs[i]) }, len(rhs), l == 2 && !returnPos.IsValid()) + if l != r { + // invalidate lhs and use rhs + for _, obj := range lhs { + if obj.typ == nil { + obj.typ = Typ[Invalid] + } + } + check.use(rhs...) + if returnPos.IsValid() { + check.errorf(returnPos, "wrong number of return values (want %d, got %d)", l, r) + return + } + check.errorf(rhs[0].Pos(), "assignment count mismatch (%d vs %d)", l, r) + return + } + + var x operand + if commaOk { + var a [2]Type + for i := range a { + get(&x, i) + a[i] = check.initVar(lhs[i], &x, returnPos.IsValid()) + } + check.recordCommaOkTypes(rhs[0], a) + return + } + + for i, lhs := range lhs { + get(&x, i) + check.initVar(lhs, &x, returnPos.IsValid()) + } +} + +func (check *checker) assignVars(lhs, rhs []ast.Expr) { + l := len(lhs) + get, r, commaOk := unpack(func(x *operand, i int) { check.expr(x, rhs[i]) }, len(rhs), l == 2) + if l != r { + check.errorf(rhs[0].Pos(), "assignment count mismatch (%d vs %d)", l, r) + check.use(rhs...) + return + } + + var x operand + if commaOk { + var a [2]Type + for i := range a { + get(&x, i) + a[i] = check.assignVar(lhs[i], &x) + } + check.recordCommaOkTypes(rhs[0], a) + return + } + + for i, lhs := range lhs { + get(&x, i) + check.assignVar(lhs, &x) + } +} + +func (check *checker) shortVarDecl(pos token.Pos, lhs, rhs []ast.Expr) { + scope := check.scope + + // collect lhs variables + var newVars []*Var + var lhsVars = make([]*Var, len(lhs)) + for i, lhs := range lhs { + var obj *Var + if ident, _ := lhs.(*ast.Ident); ident != nil { + // Use the correct obj if the ident is redeclared. The + // variable's scope starts after the declaration; so we + // must use Scope.Lookup here and call Scope.Insert + // (via check.declare) later. + name := ident.Name + if alt := scope.Lookup(name); alt != nil { + // redeclared object must be a variable + if alt, _ := alt.(*Var); alt != nil { + obj = alt + } else { + check.errorf(lhs.Pos(), "cannot assign to %s", lhs) + } + check.recordUse(ident, alt) + } else { + // declare new variable, possibly a blank (_) variable + obj = NewVar(ident.Pos(), check.pkg, name, nil) + if name != "_" { + newVars = append(newVars, obj) + } + check.recordDef(ident, obj) + } + } else { + check.errorf(lhs.Pos(), "cannot declare %s", lhs) + } + if obj == nil { + obj = NewVar(lhs.Pos(), check.pkg, "_", nil) // dummy variable + } + lhsVars[i] = obj + } + + check.initVars(lhsVars, rhs, token.NoPos) + + // declare new variables + if len(newVars) > 0 { + for _, obj := range newVars { + check.declare(scope, nil, obj) // recordObject already called + } + } else { + check.softErrorf(pos, "no new variables on left side of :=") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/builtins.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/builtins.go new file mode 100644 index 00000000..7fe8353c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/builtins.go @@ -0,0 +1,618 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements typechecking of builtin function calls. + +package types + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// builtin type-checks a call to the built-in specified by id and +// returns true if the call is valid, with *x holding the result; +// but x.expr is not set. If the call is invalid, the result is +// false, and *x is undefined. +// +func (check *checker) builtin(x *operand, call *ast.CallExpr, id builtinId) (_ bool) { + // append is the only built-in that permits the use of ... for the last argument + bin := predeclaredFuncs[id] + if call.Ellipsis.IsValid() && id != _Append { + check.invalidOp(call.Ellipsis, "invalid use of ... with built-in %s", bin.name) + check.use(call.Args...) + return + } + + // For len(x) and cap(x) we need to know if x contains any function calls or + // receive operations. Save/restore current setting and set hasCallOrRecv to + // false for the evaluation of x so that we can check it afterwards. + // Note: We must do this _before_ calling unpack because unpack evaluates the + // first argument before we even call arg(x, 0)! + if id == _Len || id == _Cap { + defer func(b bool) { + check.hasCallOrRecv = b + }(check.hasCallOrRecv) + check.hasCallOrRecv = false + } + + // determine actual arguments + var arg getter + nargs := len(call.Args) + switch id { + default: + // make argument getter + arg, nargs, _ = unpack(func(x *operand, i int) { check.expr(x, call.Args[i]) }, nargs, false) + // evaluate first argument, if present + if nargs > 0 { + arg(x, 0) + if x.mode == invalid { + return + } + } + case _Make, _New, _Offsetof, _Trace: + // arguments require special handling + } + + // check argument count + { + msg := "" + if nargs < bin.nargs { + msg = "not enough" + } else if !bin.variadic && nargs > bin.nargs { + msg = "too many" + } + if msg != "" { + check.invalidOp(call.Rparen, "%s arguments for %s (expected %d, found %d)", msg, call, bin.nargs, nargs) + return + } + } + + switch id { + case _Append: + // append(s S, x ...T) S, where T is the element type of S + // spec: "The variadic function append appends zero or more values x to s of type + // S, which must be a slice type, and returns the resulting slice, also of type S. + // The values x are passed to a parameter of type ...T where T is the element type + // of S and the respective parameter passing rules apply." + S := x.typ + var T Type + if s, _ := S.Underlying().(*Slice); s != nil { + T = s.elem + } else { + check.invalidArg(x.pos(), "%s is not a slice", x) + return + } + + // remember arguments that have been evaluated already + alist := []operand{*x} + + // spec: "As a special case, append also accepts a first argument assignable + // to type []byte with a second argument of string type followed by ... . + // This form appends the bytes of the string. + if nargs == 2 && call.Ellipsis.IsValid() && x.assignableTo(check.conf, NewSlice(UniverseByte)) { + arg(x, 1) + if x.mode == invalid { + return + } + if isString(x.typ) { + if check.Types != nil { + sig := makeSig(S, S, NewSlice(UniverseByte)) + sig.variadic = true + check.recordBuiltinType(call.Fun, sig) + } + x.mode = value + x.typ = S + break + } + alist = append(alist, *x) + // fallthrough + } + + // check general case by creating custom signature + sig := makeSig(S, S, NewSlice(T)) // []T required for variadic signature + sig.variadic = true + check.arguments(x, call, sig, func(x *operand, i int) { + // only evaluate arguments that have not been evaluated before + if i < len(alist) { + *x = alist[i] + return + } + arg(x, i) + }, nargs) + // ok to continue even if check.arguments reported errors + + x.mode = value + x.typ = S + if check.Types != nil { + check.recordBuiltinType(call.Fun, sig) + } + + case _Cap, _Len: + // cap(x) + // len(x) + mode := invalid + var typ Type + var val exact.Value + switch typ = implicitArrayDeref(x.typ.Underlying()); t := typ.(type) { + case *Basic: + if isString(t) && id == _Len { + if x.mode == constant { + mode = constant + val = exact.MakeInt64(int64(len(exact.StringVal(x.val)))) + } else { + mode = value + } + } + + case *Array: + mode = value + // spec: "The expressions len(s) and cap(s) are constants + // if the type of s is an array or pointer to an array and + // the expression s does not contain channel receives or + // function calls; in this case s is not evaluated." + if !check.hasCallOrRecv { + mode = constant + val = exact.MakeInt64(t.len) + } + + case *Slice, *Chan: + mode = value + + case *Map: + if id == _Len { + mode = value + } + } + + if mode == invalid { + check.invalidArg(x.pos(), "%s for %s", x, bin.name) + return + } + + x.mode = mode + x.typ = Typ[Int] + x.val = val + if check.Types != nil && mode != constant { + check.recordBuiltinType(call.Fun, makeSig(x.typ, typ)) + } + + case _Close: + // close(c) + c, _ := x.typ.Underlying().(*Chan) + if c == nil { + check.invalidArg(x.pos(), "%s is not a channel", x) + return + } + if c.dir == RecvOnly { + check.invalidArg(x.pos(), "%s must not be a receive-only channel", x) + return + } + + x.mode = novalue + if check.Types != nil { + check.recordBuiltinType(call.Fun, makeSig(nil, c)) + } + + case _Complex: + // complex(x, y realT) complexT + if !check.complexArg(x) { + return + } + + var y operand + arg(&y, 1) + if y.mode == invalid { + return + } + if !check.complexArg(&y) { + return + } + + check.convertUntyped(x, y.typ) + if x.mode == invalid { + return + } + check.convertUntyped(&y, x.typ) + if y.mode == invalid { + return + } + + if !Identical(x.typ, y.typ) { + check.invalidArg(x.pos(), "mismatched types %s and %s", x.typ, y.typ) + return + } + + if x.mode == constant && y.mode == constant { + x.val = exact.BinaryOp(x.val, token.ADD, exact.MakeImag(y.val)) + } else { + x.mode = value + } + + realT := x.typ + complexT := Typ[Invalid] + switch realT.Underlying().(*Basic).kind { + case Float32: + complexT = Typ[Complex64] + case Float64: + complexT = Typ[Complex128] + case UntypedInt, UntypedRune, UntypedFloat: + if x.mode == constant { + realT = defaultType(realT).(*Basic) + complexT = Typ[UntypedComplex] + } else { + // untyped but not constant; probably because one + // operand is a non-constant shift of untyped lhs + realT = Typ[Float64] + complexT = Typ[Complex128] + } + default: + check.invalidArg(x.pos(), "float32 or float64 arguments expected") + return + } + + x.typ = complexT + if check.Types != nil && x.mode != constant { + check.recordBuiltinType(call.Fun, makeSig(complexT, realT, realT)) + } + + if x.mode != constant { + // The arguments have now their final types, which at run- + // time will be materialized. Update the expression trees. + // If the current types are untyped, the materialized type + // is the respective default type. + // (If the result is constant, the arguments are never + // materialized and there is nothing to do.) + check.updateExprType(x.expr, realT, true) + check.updateExprType(y.expr, realT, true) + } + + case _Copy: + // copy(x, y []T) int + var dst Type + if t, _ := x.typ.Underlying().(*Slice); t != nil { + dst = t.elem + } + + var y operand + arg(&y, 1) + if y.mode == invalid { + return + } + var src Type + switch t := y.typ.Underlying().(type) { + case *Basic: + if isString(y.typ) { + src = UniverseByte + } + case *Slice: + src = t.elem + } + + if dst == nil || src == nil { + check.invalidArg(x.pos(), "copy expects slice arguments; found %s and %s", x, &y) + return + } + + if !Identical(dst, src) { + check.invalidArg(x.pos(), "arguments to copy %s and %s have different element types %s and %s", x, &y, dst, src) + return + } + + x.mode = value + x.typ = Typ[Int] + if check.Types != nil { + S := NewSlice(dst) + check.recordBuiltinType(call.Fun, makeSig(x.typ, S, S)) + } + + case _Delete: + // delete(m, k) + m, _ := x.typ.Underlying().(*Map) + if m == nil { + check.invalidArg(x.pos(), "%s is not a map", x) + return + } + arg(x, 1) // k + if x.mode == invalid { + return + } + + if !x.assignableTo(check.conf, m.key) { + check.invalidArg(x.pos(), "%s is not assignable to %s", x, m.key) + return + } + + x.mode = novalue + if check.Types != nil { + check.recordBuiltinType(call.Fun, makeSig(nil, m, m.key)) + } + + case _Imag, _Real: + // imag(complexT) realT + // real(complexT) realT + if !isComplex(x.typ) { + check.invalidArg(x.pos(), "%s must be a complex number", x) + return + } + if x.mode == constant { + if id == _Real { + x.val = exact.Real(x.val) + } else { + x.val = exact.Imag(x.val) + } + } else { + x.mode = value + } + var k BasicKind + switch x.typ.Underlying().(*Basic).kind { + case Complex64: + k = Float32 + case Complex128: + k = Float64 + case UntypedComplex: + k = UntypedFloat + default: + unreachable() + } + + if check.Types != nil && x.mode != constant { + check.recordBuiltinType(call.Fun, makeSig(Typ[k], x.typ)) + } + x.typ = Typ[k] + + case _Make: + // make(T, n) + // make(T, n, m) + // (no argument evaluated yet) + arg0 := call.Args[0] + T := check.typ(arg0) + if T == Typ[Invalid] { + return + } + var min int // minimum number of arguments + switch T.Underlying().(type) { + case *Slice: + min = 2 + case *Map, *Chan: + min = 1 + default: + check.invalidArg(arg0.Pos(), "cannot make %s; type must be slice, map, or channel", arg0) + return + } + if nargs < min || min+1 < nargs { + check.errorf(call.Pos(), "%s expects %d or %d arguments; found %d", call, min, min+1, nargs) + return + } + var sizes []int64 // constant integer arguments, if any + for _, arg := range call.Args[1:] { + if s, ok := check.index(arg, -1); ok && s >= 0 { + sizes = append(sizes, s) + } + } + if len(sizes) == 2 && sizes[0] > sizes[1] { + check.invalidArg(call.Args[1].Pos(), "length and capacity swapped") + // safe to continue + } + x.mode = value + x.typ = T + if check.Types != nil { + params := [...]Type{T, Typ[Int], Typ[Int]} + check.recordBuiltinType(call.Fun, makeSig(x.typ, params[:1+len(sizes)]...)) + } + + case _New: + // new(T) + // (no argument evaluated yet) + T := check.typ(call.Args[0]) + if T == Typ[Invalid] { + return + } + + x.mode = value + x.typ = &Pointer{base: T} + if check.Types != nil { + check.recordBuiltinType(call.Fun, makeSig(x.typ, T)) + } + + case _Panic: + // panic(x) + T := new(Interface) + if !check.assignment(x, T) { + assert(x.mode == invalid) + return + } + + x.mode = novalue + if check.Types != nil { + check.recordBuiltinType(call.Fun, makeSig(nil, T)) + } + + case _Print, _Println: + // print(x, y, ...) + // println(x, y, ...) + var params []Type + if nargs > 0 { + params = make([]Type, nargs) + for i := 0; i < nargs; i++ { + if i > 0 { + arg(x, i) // first argument already evaluated + } + if !check.assignment(x, nil) { + assert(x.mode == invalid) + return + } + params[i] = x.typ + } + } + + x.mode = novalue + if check.Types != nil { + check.recordBuiltinType(call.Fun, makeSig(nil, params...)) + } + + case _Recover: + // recover() interface{} + x.mode = value + x.typ = new(Interface) + if check.Types != nil { + check.recordBuiltinType(call.Fun, makeSig(x.typ)) + } + + case _Alignof: + // unsafe.Alignof(x T) uintptr + if !check.assignment(x, nil) { + assert(x.mode == invalid) + return + } + + x.mode = constant + x.val = exact.MakeInt64(check.conf.alignof(x.typ)) + x.typ = Typ[Uintptr] + // result is constant - no need to record signature + + case _Offsetof: + // unsafe.Offsetof(x T) uintptr, where x must be a selector + // (no argument evaluated yet) + arg0 := call.Args[0] + selx, _ := unparen(arg0).(*ast.SelectorExpr) + if selx == nil { + check.invalidArg(arg0.Pos(), "%s is not a selector expression", arg0) + check.use(arg0) + return + } + check.expr(x, selx.X) + if x.mode == invalid { + return + } + base := derefStructPtr(x.typ) + sel := selx.Sel.Name + obj, index, indirect := LookupFieldOrMethod(base, check.pkg, sel) + switch obj.(type) { + case nil: + check.invalidArg(x.pos(), "%s has no single field %s", base, sel) + return + case *Func: + check.invalidArg(arg0.Pos(), "%s is a method value", arg0) + return + } + if indirect { + check.invalidArg(x.pos(), "field %s is embedded via a pointer in %s", sel, base) + return + } + + // TODO(gri) Should we pass x.typ instead of base (and indirect report if derefStructPtr indirected)? + check.recordSelection(selx, FieldVal, base, obj, index, false) + + offs := check.conf.offsetof(base, index) + x.mode = constant + x.val = exact.MakeInt64(offs) + x.typ = Typ[Uintptr] + // result is constant - no need to record signature + + case _Sizeof: + // unsafe.Sizeof(x T) uintptr + if !check.assignment(x, nil) { + assert(x.mode == invalid) + return + } + + x.mode = constant + x.val = exact.MakeInt64(check.conf.sizeof(x.typ)) + x.typ = Typ[Uintptr] + // result is constant - no need to record signature + + case _Assert: + // assert(pred) causes a typechecker error if pred is false. + // The result of assert is the value of pred if there is no error. + // Note: assert is only available in self-test mode. + if x.mode != constant || !isBoolean(x.typ) { + check.invalidArg(x.pos(), "%s is not a boolean constant", x) + return + } + if x.val.Kind() != exact.Bool { + check.errorf(x.pos(), "internal error: value of %s should be a boolean constant", x) + return + } + if !exact.BoolVal(x.val) { + check.errorf(call.Pos(), "%s failed", call) + // compile-time assertion failure - safe to continue + } + // result is constant - no need to record signature + + case _Trace: + // trace(x, y, z, ...) dumps the positions, expressions, and + // values of its arguments. The result of trace is the value + // of the first argument. + // Note: trace is only available in self-test mode. + // (no argument evaluated yet) + if nargs == 0 { + check.dump("%s: trace() without arguments", call.Pos()) + x.mode = novalue + break + } + var t operand + x1 := x + for _, arg := range call.Args { + check.rawExpr(x1, arg, nil) // permit trace for types, e.g.: new(trace(T)) + check.dump("%s: %s", x1.pos(), x1) + x1 = &t // use incoming x only for first argument + } + // trace is only available in test mode - no need to record signature + + default: + unreachable() + } + + return true +} + +// makeSig makes a signature for the given argument and result types. +// Default types are used for untyped arguments, and res may be nil. +func makeSig(res Type, args ...Type) *Signature { + list := make([]*Var, len(args)) + for i, param := range args { + list[i] = NewVar(token.NoPos, nil, "", defaultType(param)) + } + params := NewTuple(list...) + var result *Tuple + if res != nil { + assert(!isUntyped(res)) + result = NewTuple(NewVar(token.NoPos, nil, "", res)) + } + return &Signature{params: params, results: result} +} + +// implicitArrayDeref returns A if typ is of the form *A and A is an array; +// otherwise it returns typ. +// +func implicitArrayDeref(typ Type) Type { + if p, ok := typ.(*Pointer); ok { + if a, ok := p.base.Underlying().(*Array); ok { + return a + } + } + return typ +} + +// unparen removes any parentheses surrounding an expression and returns +// the naked expression. +// +func unparen(x ast.Expr) ast.Expr { + if p, ok := x.(*ast.ParenExpr); ok { + return unparen(p.X) + } + return x +} + +func (check *checker) complexArg(x *operand) bool { + t, _ := x.typ.Underlying().(*Basic) + if t != nil && (t.info&IsFloat != 0 || t.kind == UntypedInt || t.kind == UntypedRune) { + return true + } + check.invalidArg(x.pos(), "%s must be a float32, float64, or an untyped non-complex numeric constant", x) + return false +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/builtins_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/builtins_test.go new file mode 100644 index 00000000..ca3bac88 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/builtins_test.go @@ -0,0 +1,203 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "fmt" + "go/ast" + "go/parser" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +var builtinCalls = []struct { + name, src, sig string +}{ + {"append", `var s []int; _ = append(s)`, `func([]int, ...int) []int`}, + {"append", `var s []int; _ = append(s, 0)`, `func([]int, ...int) []int`}, + {"append", `var s []int; _ = (append)(s, 0)`, `func([]int, ...int) []int`}, + {"append", `var s []byte; _ = ((append))(s, 0)`, `func([]byte, ...byte) []byte`}, + // Note that ...uint8 (instead of ..byte) appears below because that is the type + // that corresponds to Typ[byte] (an alias) - in the other cases, the type name + // is chosen by the source. Either way, byte and uint8 denote identical types. + {"append", `var s []byte; _ = append(s, "foo"...)`, `func([]byte, ...byte) []byte`}, + {"append", `type T []byte; var s T; _ = append(s, "foo"...)`, `func(p.T, ...byte) p.T`}, + + {"cap", `var s [10]int; _ = cap(s)`, `invalid type`}, // constant + {"cap", `var s [10]int; _ = cap(&s)`, `invalid type`}, // constant + {"cap", `var s []int64; _ = cap(s)`, `func([]int64) int`}, + {"cap", `var c chan<-bool; _ = cap(c)`, `func(chan<- bool) int`}, + + {"len", `_ = len("foo")`, `invalid type`}, // constant + {"len", `var s string; _ = len(s)`, `func(string) int`}, + {"len", `var s [10]int; _ = len(s)`, `invalid type`}, // constant + {"len", `var s [10]int; _ = len(&s)`, `invalid type`}, // constant + {"len", `var s []int64; _ = len(s)`, `func([]int64) int`}, + {"len", `var c chan<-bool; _ = len(c)`, `func(chan<- bool) int`}, + {"len", `var m map[string]float32; _ = len(m)`, `func(map[string]float32) int`}, + + {"close", `var c chan int; close(c)`, `func(chan int)`}, + {"close", `var c chan<- chan string; close(c)`, `func(chan<- chan string)`}, + + {"complex", `_ = complex(1, 0)`, `invalid type`}, // constant + {"complex", `var re float32; _ = complex(re, 1.0)`, `func(float32, float32) complex64`}, + {"complex", `var im float64; _ = complex(1, im)`, `func(float64, float64) complex128`}, + {"complex", `type F32 float32; var re, im F32; _ = complex(re, im)`, `func(p.F32, p.F32) complex64`}, + {"complex", `type F64 float64; var re, im F64; _ = complex(re, im)`, `func(p.F64, p.F64) complex128`}, + + {"copy", `var src, dst []byte; copy(dst, src)`, `func([]byte, []byte) int`}, + {"copy", `type T [][]int; var src, dst T; _ = copy(dst, src)`, `func([][]int, [][]int) int`}, + + {"delete", `var m map[string]bool; delete(m, "foo")`, `func(map[string]bool, string)`}, + {"delete", `type (K string; V int); var m map[K]V; delete(m, "foo")`, `func(map[p.K]p.V, p.K)`}, + + {"imag", `_ = imag(1i)`, `invalid type`}, // constant + {"imag", `var c complex64; _ = imag(c)`, `func(complex64) float32`}, + {"imag", `var c complex128; _ = imag(c)`, `func(complex128) float64`}, + {"imag", `type C64 complex64; var c C64; _ = imag(c)`, `func(p.C64) float32`}, + {"imag", `type C128 complex128; var c C128; _ = imag(c)`, `func(p.C128) float64`}, + + {"real", `_ = real(1i)`, `invalid type`}, // constant + {"real", `var c complex64; _ = real(c)`, `func(complex64) float32`}, + {"real", `var c complex128; _ = real(c)`, `func(complex128) float64`}, + {"real", `type C64 complex64; var c C64; _ = real(c)`, `func(p.C64) float32`}, + {"real", `type C128 complex128; var c C128; _ = real(c)`, `func(p.C128) float64`}, + + {"make", `_ = make([]int, 10)`, `func([]int, int) []int`}, + {"make", `type T []byte; _ = make(T, 10, 20)`, `func(p.T, int, int) p.T`}, + + {"new", `_ = new(int)`, `func(int) *int`}, + {"new", `type T struct{}; _ = new(T)`, `func(p.T) *p.T`}, + + {"panic", `panic(0)`, `func(interface{})`}, + {"panic", `panic("foo")`, `func(interface{})`}, + + {"print", `print()`, `func()`}, + {"print", `print(0)`, `func(int)`}, + {"print", `print(1, 2.0, "foo", true)`, `func(int, float64, string, bool)`}, + + {"println", `println()`, `func()`}, + {"println", `println(0)`, `func(int)`}, + {"println", `println(1, 2.0, "foo", true)`, `func(int, float64, string, bool)`}, + + {"recover", `recover()`, `func() interface{}`}, + {"recover", `_ = recover()`, `func() interface{}`}, + + {"Alignof", `_ = unsafe.Alignof(0)`, `invalid type`}, // constant + {"Alignof", `var x struct{}; _ = unsafe.Alignof(x)`, `invalid type`}, // constant + + {"Offsetof", `var x struct{f bool}; _ = unsafe.Offsetof(x.f)`, `invalid type`}, // constant + {"Offsetof", `var x struct{_ int; f bool}; _ = unsafe.Offsetof((&x).f)`, `invalid type`}, // constant + + {"Sizeof", `_ = unsafe.Sizeof(0)`, `invalid type`}, // constant + {"Sizeof", `var x struct{}; _ = unsafe.Sizeof(x)`, `invalid type`}, // constant + + {"assert", `assert(true)`, `invalid type`}, // constant + {"assert", `type B bool; const pred B = 1 < 2; assert(pred)`, `invalid type`}, // constant + + // no tests for trace since it produces output as a side-effect +} + +func TestBuiltinSignatures(t *testing.T) { + DefPredeclaredTestFuncs() + + seen := map[string]bool{"trace": true} // no test for trace built-in; add it manually + for _, call := range builtinCalls { + testBuiltinSignature(t, call.name, call.src, call.sig) + seen[call.name] = true + } + + // make sure we didn't miss one + for _, name := range Universe.Names() { + if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] { + t.Errorf("missing test for %s", name) + } + } + for _, name := range Unsafe.Scope().Names() { + if _, ok := Unsafe.Scope().Lookup(name).(*Builtin); ok && !seen[name] { + t.Errorf("missing test for unsafe.%s", name) + } + } +} + +func testBuiltinSignature(t *testing.T, name, src0, want string) { + src := fmt.Sprintf(`package p; import "unsafe"; type _ unsafe.Pointer /* use unsafe */; func _() { %s }`, src0) + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + t.Errorf("%s: %s", src0, err) + return + } + + var conf Config + uses := make(map[*ast.Ident]Object) + types := make(map[ast.Expr]TypeAndValue) + _, err = conf.Check(f.Name.Name, fset, []*ast.File{f}, &Info{Uses: uses, Types: types}) + if err != nil { + t.Errorf("%s: %s", src0, err) + return + } + + // find called function + n := 0 + var fun ast.Expr + for x := range types { + if call, _ := x.(*ast.CallExpr); call != nil { + fun = call.Fun + n++ + } + } + if n != 1 { + t.Errorf("%s: got %d CallExprs; want 1", src0, n) + return + } + + // check recorded types for fun and descendents (may be parenthesized) + for { + // the recorded type for the built-in must match the wanted signature + typ := types[fun].Type + if typ == nil { + t.Errorf("%s: no type recorded for %s", src0, ExprString(fun)) + return + } + if got := typ.String(); got != want { + t.Errorf("%s: got type %s; want %s", src0, got, want) + return + } + + // called function must be a (possibly parenthesized, qualified) + // identifier denoting the expected built-in + switch p := fun.(type) { + case *ast.Ident: + obj := uses[p] + if obj == nil { + t.Errorf("%s: no object found for %s", src0, p) + return + } + bin, _ := obj.(*Builtin) + if bin == nil { + t.Errorf("%s: %s does not denote a built-in", src0, p) + return + } + if bin.Name() != name { + t.Errorf("%s: got built-in %s; want %s", src0, bin.Name(), name) + return + } + return // we're done + + case *ast.ParenExpr: + fun = p.X // unpack + + case *ast.SelectorExpr: + // built-in from package unsafe - ignore details + return // we're done + + default: + t.Errorf("%s: invalid function call", src0) + return + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/call.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/call.go new file mode 100644 index 00000000..74f88872 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/call.go @@ -0,0 +1,423 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements typechecking of call and selector expressions. + +package types + +import ( + "go/ast" + "go/token" +) + +func (check *checker) call(x *operand, e *ast.CallExpr) exprKind { + check.exprOrType(x, e.Fun) + + switch x.mode { + case invalid: + check.use(e.Args...) + x.mode = invalid + x.expr = e + return statement + + case typexpr: + // conversion + T := x.typ + x.mode = invalid + switch n := len(e.Args); n { + case 0: + check.errorf(e.Rparen, "missing argument in conversion to %s", T) + case 1: + check.expr(x, e.Args[0]) + if x.mode != invalid { + check.conversion(x, T) + } + default: + check.errorf(e.Args[n-1].Pos(), "too many arguments in conversion to %s", T) + } + x.expr = e + return conversion + + case builtin: + id := x.id + if !check.builtin(x, e, id) { + x.mode = invalid + } + x.expr = e + // a non-constant result implies a function call + if x.mode != invalid && x.mode != constant { + check.hasCallOrRecv = true + } + return predeclaredFuncs[id].kind + + default: + // function/method call + sig, _ := x.typ.Underlying().(*Signature) + if sig == nil { + check.invalidOp(x.pos(), "cannot call non-function %s", x) + x.mode = invalid + x.expr = e + return statement + } + + arg, n, _ := unpack(func(x *operand, i int) { check.expr(x, e.Args[i]) }, len(e.Args), false) + check.arguments(x, e, sig, arg, n) + + // determine result + switch sig.results.Len() { + case 0: + x.mode = novalue + case 1: + x.mode = value + x.typ = sig.results.vars[0].typ // unpack tuple + default: + x.mode = value + x.typ = sig.results + } + x.expr = e + check.hasCallOrRecv = true + + return statement + } +} + +// use type-checks each argument. +// Useful to make sure expressions are evaluated +// (and variables are "used") in the presence of other errors. +func (check *checker) use(arg ...ast.Expr) { + var x operand + for _, e := range arg { + check.rawExpr(&x, e, nil) + } +} + +// A getter sets x as the i'th operand, where 0 <= i < n and n is the total +// number of operands (context-specific, and maintained elsewhere). A getter +// type-checks the i'th operand; the details of the actual check are getter- +// specific. +type getter func(x *operand, i int) + +// unpack takes a getter get and a number of operands n. If n == 1 and the +// first operand is a function call, or a comma,ok expression and allowCommaOk +// is set, the result is a new getter and operand count providing access to the +// function results, or comma,ok values, respectively. The third result value +// reports if it is indeed the comma,ok case. In all other cases, the incoming +// getter and operand count are returned unchanged, and the third result value +// is false. +// +// In other words, if there's exactly one operand that - after type-checking by +// calling get - stands for multiple operands, the resulting getter provides access +// to those operands instead. +// +// Note that unpack may call get(..., 0); but if the result getter is called +// at most once for a given operand index i (including i == 0), that operand +// is guaranteed to cause only one call of the incoming getter with that i. +// +func unpack(get getter, n int, allowCommaOk bool) (getter, int, bool) { + if n == 1 { + // possibly result of an n-valued function call or comma,ok value + var x0 operand + get(&x0, 0) + if x0.mode == invalid { + return func(x *operand, i int) { + if i != 0 { + unreachable() + } + x.mode = invalid + }, 1, false + } + + if t, ok := x0.typ.(*Tuple); ok { + // result of an n-valued function call + return func(x *operand, i int) { + x.mode = value + x.expr = x0.expr + x.typ = t.At(i).typ + }, t.Len(), false + } + + if x0.mode == mapindex || x0.mode == commaok { + // comma-ok value + if allowCommaOk { + a := [2]Type{x0.typ, Typ[UntypedBool]} + return func(x *operand, i int) { + x.mode = value + x.expr = x0.expr + x.typ = a[i] + }, 2, true + } + x0.mode = value + } + + // single value + return func(x *operand, i int) { + if i != 0 { + unreachable() + } + *x = x0 + }, 1, false + } + + // zero or multiple values + return get, n, false +} + +// arguments checks argument passing for the call with the given signature. +// The arg function provides the operand for the i'th argument. +func (check *checker) arguments(x *operand, call *ast.CallExpr, sig *Signature, arg getter, n int) { + passSlice := false + if call.Ellipsis.IsValid() { + // last argument is of the form x... + if sig.variadic { + passSlice = true + } else { + check.errorf(call.Ellipsis, "cannot use ... in call to non-variadic %s", call.Fun) + // ok to continue + } + } + + // evaluate arguments + for i := 0; i < n; i++ { + arg(x, i) + if x.mode != invalid { + check.argument(sig, i, x, passSlice && i == n-1) + } + } + + // check argument count + if sig.variadic { + // a variadic function accepts an "empty" + // last argument: count one extra + n++ + } + if n < sig.params.Len() { + check.errorf(call.Rparen, "too few arguments in call to %s", call.Fun) + // ok to continue + } +} + +// argument checks passing of argument x to the i'th parameter of the given signature. +// If passSlice is set, the argument is followed by ... in the call. +func (check *checker) argument(sig *Signature, i int, x *operand, passSlice bool) { + n := sig.params.Len() + + // determine parameter type + var typ Type + switch { + case i < n: + typ = sig.params.vars[i].typ + case sig.variadic: + typ = sig.params.vars[n-1].typ + if debug { + if _, ok := typ.(*Slice); !ok { + check.dump("%s: expected unnamed slice type, got %s", sig.params.vars[n-1].Pos(), typ) + } + } + default: + check.errorf(x.pos(), "too many arguments") + return + } + + if passSlice { + // argument is of the form x... + if i != n-1 { + check.errorf(x.pos(), "can only use ... with matching parameter") + return + } + if _, ok := x.typ.Underlying().(*Slice); !ok { + check.errorf(x.pos(), "cannot use %s as parameter of type %s", x, typ) + return + } + } else if sig.variadic && i >= n-1 { + // use the variadic parameter slice's element type + typ = typ.(*Slice).elem + } + + if !check.assignment(x, typ) && x.mode != invalid { + check.errorf(x.pos(), "cannot pass argument %s to parameter of type %s", x, typ) + } +} + +func (check *checker) selector(x *operand, e *ast.SelectorExpr) { + // these must be declared before the "goto Error" statements + var ( + obj Object + index []int + indirect bool + ) + + sel := e.Sel.Name + // If the identifier refers to a package, handle everything here + // so we don't need a "package" mode for operands: package names + // can only appear in qualified identifiers which are mapped to + // selector expressions. + if ident, ok := e.X.(*ast.Ident); ok { + if pkg, _ := check.scope.LookupParent(ident.Name).(*PkgName); pkg != nil { + check.recordUse(ident, pkg) + pkg.used = true + exp := pkg.pkg.scope.Lookup(sel) + if exp == nil { + if !pkg.pkg.fake { + check.errorf(e.Pos(), "%s not declared by package %s", sel, ident) + } + goto Error + } + if !exp.Exported() { + check.errorf(e.Pos(), "%s not exported by package %s", sel, ident) + // ok to continue + } + check.recordSelection(e, PackageObj, nil, exp, nil, false) + // Simplified version of the code for *ast.Idents: + // - imported objects are always fully initialized + switch exp := exp.(type) { + case *Const: + assert(exp.Val() != nil) + x.mode = constant + x.typ = exp.typ + x.val = exp.val + case *TypeName: + x.mode = typexpr + x.typ = exp.typ + case *Var: + x.mode = variable + x.typ = exp.typ + case *Func: + x.mode = value + x.typ = exp.typ + case *Builtin: + x.mode = builtin + x.typ = exp.typ + x.id = exp.id + default: + unreachable() + } + x.expr = e + return + } + } + + check.exprOrType(x, e.X) + if x.mode == invalid { + goto Error + } + + obj, index, indirect = LookupFieldOrMethod(x.typ, check.pkg, sel) + if obj == nil { + if index != nil { + // TODO(gri) should provide actual type where the conflict happens + check.invalidOp(e.Pos(), "ambiguous selector %s", sel) + } else { + check.invalidOp(e.Pos(), "%s has no field or method %s", x, sel) + } + goto Error + } + + if x.mode == typexpr { + // method expression + m, _ := obj.(*Func) + if m == nil { + check.invalidOp(e.Pos(), "%s has no method %s", x, sel) + goto Error + } + + // verify that m is in the method set of x.typ + if !indirect && ptrRecv(m) { + check.invalidOp(e.Pos(), "%s is not in method set of %s", sel, x.typ) + goto Error + } + + check.recordSelection(e, MethodExpr, x.typ, m, index, indirect) + + // the receiver type becomes the type of the first function + // argument of the method expression's function type + var params []*Var + sig := m.typ.(*Signature) + if sig.params != nil { + params = sig.params.vars + } + x.mode = value + x.typ = &Signature{ + params: NewTuple(append([]*Var{NewVar(token.NoPos, check.pkg, "", x.typ)}, params...)...), + results: sig.results, + variadic: sig.variadic, + } + + check.addDeclDep(m) + + } else { + // regular selector + switch obj := obj.(type) { + case *Var: + check.recordSelection(e, FieldVal, x.typ, obj, index, indirect) + if x.mode == variable || indirect { + x.mode = variable + } else { + x.mode = value + } + x.typ = obj.typ + + case *Func: + // TODO(gri) This code appears elsewhere, too. Factor! + // verify that obj is in the method set of x.typ (or &(x.typ) if x is addressable) + // + // spec: "A method call x.m() is valid if the method set of (the type of) x + // contains m and the argument list can be assigned to the parameter + // list of m. If x is addressable and &x's method set contains m, x.m() + // is shorthand for (&x).m()". + if !indirect && x.mode != variable && ptrRecv(obj) { + check.invalidOp(e.Pos(), "%s is not in method set of %s", sel, x) + goto Error + } + + check.recordSelection(e, MethodVal, x.typ, obj, index, indirect) + + if debug { + // Verify that LookupFieldOrMethod and MethodSet.Lookup agree. + typ := x.typ + if x.mode == variable { + // If typ is not an (unnamed) pointer or an interface, + // use *typ instead, because the method set of *typ + // includes the methods of typ. + // Variables are addressable, so we can always take their + // address. + if _, ok := typ.(*Pointer); !ok && !isInterface(typ) { + typ = &Pointer{base: typ} + } + } + // If we created a synthetic pointer type above, we will throw + // away the method set computed here after use. + // TODO(gri) Method set computation should probably always compute + // both, the value and the pointer receiver method set and represent + // them in a single structure. + // TODO(gri) Consider also using a method set cache for the lifetime + // of checker once we rely on MethodSet lookup instead of individual + // lookup. + mset := NewMethodSet(typ) + if m := mset.Lookup(check.pkg, sel); m == nil || m.obj != obj { + check.dump("%s: (%s).%v -> %s", e.Pos(), typ, obj.name, m) + check.dump("%s\n", mset) + panic("method sets and lookup don't agree") + } + } + + x.mode = value + + // remove receiver + sig := *obj.typ.(*Signature) + sig.recv = nil + x.typ = &sig + + default: + unreachable() + } + } + + // everything went well + x.expr = e + return + +Error: + x.mode = invalid + x.expr = e +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/check.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/check.go new file mode 100644 index 00000000..378e44c3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/check.go @@ -0,0 +1,335 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements the Check function, which drives type-checking. + +package types + +import ( + "fmt" + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// debugging/development support +const ( + debug = false // leave on during development + trace = false // turn on for detailed type resolution traces +) + +// exprInfo stores type and constant value for an untyped expression. +type exprInfo struct { + isLhs bool // expression is lhs operand of a shift with delayed type-check + typ *Basic + val exact.Value // constant value; or nil (if not a constant) +} + +// funcInfo stores the information required for type-checking a function. +type funcInfo struct { + name string // for debugging/tracing only + decl *declInfo // for cycle detection + sig *Signature + body *ast.BlockStmt +} + +// A context represents the context within which an object is type-checked. +type context struct { + decl *declInfo // package-level declaration whose init expression/function body is checked + scope *Scope // top-most scope for lookups + iota exact.Value // value of iota in a constant declaration; nil otherwise + sig *Signature // function signature if inside a function; nil otherwise + hasLabel bool // set if a function makes use of labels (only ~1% of functions); unused outside functions + hasCallOrRecv bool // set if an expression contains a function call or channel receive operation +} + +// A checker maintains the state of the type checker. +// It must be created with NewChecker. +type checker struct { + // package information + // (initialized by NewChecker, valid for the life-time of checker) + conf *Config + fset *token.FileSet + pkg *Package + *Info + objMap map[Object]*declInfo // maps package-level object to declaration info + + // information collected during type-checking of a set of package files + // (initialized by Files, valid only for the duration of check.Files; + // maps and lists are allocated on demand) + files []*ast.File // package files + fileScopes []*Scope // file scope for each file + dotImports []map[*Package]token.Pos // positions of dot-imports for each file + + firstErr error // first error encountered + methods map[string][]*Func // maps type names to associated methods + untyped map[ast.Expr]exprInfo // map of expressions without final type + funcs []funcInfo // list of functions to type-check + delayed []func() // delayed checks requiring fully setup types + + // context within which the current object is type-checked + // (valid only for the duration of type-checking a specific object) + context + + // debugging + indent int // indentation for tracing +} + +// addDeclDep adds the dependency edge (check.decl -> to) +// if check.decl exists and to has an initializer. +func (check *checker) addDeclDep(to Object) { + from := check.decl + if from == nil { + return // not in a package-level init expression + } + if decl := check.objMap[to]; decl == nil || !decl.hasInitializer() { + return // to is not a package-level object or has no initializer + } + from.addDep(to) +} + +func (check *checker) assocMethod(tname string, meth *Func) { + m := check.methods + if m == nil { + m = make(map[string][]*Func) + check.methods = m + } + m[tname] = append(m[tname], meth) +} + +func (check *checker) rememberUntyped(e ast.Expr, lhs bool, typ *Basic, val exact.Value) { + m := check.untyped + if m == nil { + m = make(map[ast.Expr]exprInfo) + check.untyped = m + } + m[e] = exprInfo{lhs, typ, val} +} + +func (check *checker) later(name string, decl *declInfo, sig *Signature, body *ast.BlockStmt) { + check.funcs = append(check.funcs, funcInfo{name, decl, sig, body}) +} + +func (check *checker) delay(f func()) { + check.delayed = append(check.delayed, f) +} + +// NewChecker returns a new Checker instance for a given package. +// Package files may be incrementally added via checker.Files. +func NewChecker(conf *Config, fset *token.FileSet, pkg *Package, info *Info) *checker { + // make sure we have a configuration + if conf == nil { + conf = new(Config) + } + + // make sure we have a package canonicalization map + if conf.Packages == nil { + conf.Packages = make(map[string]*Package) + } + + // make sure we have an info struct + if info == nil { + info = new(Info) + } + + return &checker{ + conf: conf, + fset: fset, + pkg: pkg, + Info: info, + objMap: make(map[Object]*declInfo), + } +} + +// initFiles initializes the files-specific portion of checker. +// The provided files must all belong to the same package. +func (check *checker) initFiles(files []*ast.File) { + // start with a clean slate (check.Files may be called multiple times) + check.files = nil + check.fileScopes = nil + check.dotImports = nil + + check.firstErr = nil + check.methods = nil + check.untyped = nil + check.funcs = nil + check.delayed = nil + + // determine package name, files, and set up file scopes, dotImports maps + pkg := check.pkg + for i, file := range files { + switch name := file.Name.Name; pkg.name { + case "": + pkg.name = name + fallthrough + + case name: + check.files = append(check.files, file) + var comment string + if pos := file.Pos(); pos.IsValid() { + comment = "file " + check.fset.File(pos).Name() + } else { + comment = fmt.Sprintf("file[%d]", i) + } + fileScope := NewScope(pkg.scope, comment) + check.recordScope(file, fileScope) + check.fileScopes = append(check.fileScopes, fileScope) + check.dotImports = append(check.dotImports, nil) // element (map) is lazily allocated + + default: + check.errorf(file.Package, "package %s; expected %s", name, pkg.name) + // ignore this file + } + } +} + +// A bailout panic is raised to indicate early termination. +type bailout struct{} + +func (check *checker) handleBailout(err *error) { + switch p := recover().(type) { + case nil, bailout: + // normal return or early exit + *err = check.firstErr + default: + // re-panic + panic(p) + } +} + +// Files checks the provided files as part of the checker's package. +func (check *checker) Files(files []*ast.File) (err error) { + defer check.handleBailout(&err) + + check.initFiles(files) + + check.collectObjects() + + objList := check.resolveOrder() + + check.packageObjects(objList) + + check.functionBodies() + + check.initDependencies(objList) + + check.unusedImports() + + // perform delayed checks + for _, f := range check.delayed { + f() + } + + check.recordUntyped() + + check.pkg.complete = true + return +} + +func (check *checker) recordUntyped() { + if !debug && check.Types == nil { + return // nothing to do + } + + for x, info := range check.untyped { + if debug && isTyped(info.typ) { + check.dump("%s: %s (type %s) is typed", x.Pos(), x, info.typ) + unreachable() + } + check.recordTypeAndValue(x, info.typ, info.val) + } +} + +func (check *checker) recordTypeAndValue(x ast.Expr, typ Type, val exact.Value) { + assert(x != nil && typ != nil) + if val != nil { + assert(isConstType(typ)) + } + if m := check.Types; m != nil { + m[x] = TypeAndValue{typ, val} + } +} + +func (check *checker) recordBuiltinType(f ast.Expr, sig *Signature) { + // f must be a (possibly parenthesized) identifier denoting a built-in + // (built-ins in package unsafe always produce a constant result and + // we don't record their signatures, so we don't see qualified idents + // here): record the signature for f and possible children. + for { + check.recordTypeAndValue(f, sig, nil) + switch p := f.(type) { + case *ast.Ident: + return // we're done + case *ast.ParenExpr: + f = p.X + default: + unreachable() + } + } +} + +func (check *checker) recordCommaOkTypes(x ast.Expr, a [2]Type) { + assert(x != nil) + if a[0] == nil || a[1] == nil { + return + } + assert(isTyped(a[0]) && isTyped(a[1]) && isBoolean(a[1])) + if m := check.Types; m != nil { + for { + tv := m[x] + assert(tv.Type != nil) // should have been recorded already + pos := x.Pos() + tv.Type = NewTuple( + NewVar(pos, check.pkg, "", a[0]), + NewVar(pos, check.pkg, "", a[1]), + ) + m[x] = tv + // if x is a parenthesized expression (p.X), update p.X + p, _ := x.(*ast.ParenExpr) + if p == nil { + break + } + x = p.X + } + } +} + +func (check *checker) recordDef(id *ast.Ident, obj Object) { + assert(id != nil) + if m := check.Defs; m != nil { + m[id] = obj + } +} + +func (check *checker) recordUse(id *ast.Ident, obj Object) { + assert(id != nil) + assert(obj != nil) + if m := check.Uses; m != nil { + m[id] = obj + } +} + +func (check *checker) recordImplicit(node ast.Node, obj Object) { + assert(node != nil && obj != nil) + if m := check.Implicits; m != nil { + m[node] = obj + } +} + +func (check *checker) recordSelection(x *ast.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) { + assert(obj != nil && (recv == nil || len(index) > 0)) + check.recordUse(x.Sel, obj) + // TODO(gri) Should we also call recordTypeAndValue? + if m := check.Selections; m != nil { + m[x] = &Selection{kind, recv, obj, index, indirect} + } +} + +func (check *checker) recordScope(node ast.Node, scope *Scope) { + assert(node != nil && scope != nil) + if m := check.Scopes; m != nil { + m[node] = scope + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/check_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/check_test.go new file mode 100644 index 00000000..da21986f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/check_test.go @@ -0,0 +1,288 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements a typechecker test harness. The packages specified +// in tests are typechecked. Error messages reported by the typechecker are +// compared against the error messages expected in the test files. +// +// Expected errors are indicated in the test files by putting a comment +// of the form /* ERROR "rx" */ immediately following an offending token. +// The harness will verify that an error matching the regular expression +// rx is reported at that source position. Consecutive comments may be +// used to indicate multiple errors for the same token position. +// +// For instance, the following test file indicates that a "not declared" +// error should be reported for the undeclared variable x: +// +// package p +// func f() { +// _ = x /* ERROR "not declared" */ + 1 +// } + +package types_test + +import ( + "flag" + "go/ast" + "go/parser" + "go/scanner" + "go/token" + "io/ioutil" + "regexp" + "strings" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +var ( + listErrors = flag.Bool("list", false, "list errors") + testFiles = flag.String("files", "", "space-separated list of test files") +) + +// The test filenames do not end in .go so that they are invisible +// to gofmt since they contain comments that must not change their +// positions relative to surrounding tokens. + +// Each tests entry is list of files belonging to the same package. +var tests = [][]string{ + {"testdata/errors.src"}, + {"testdata/importdecl0a.src", "testdata/importdecl0b.src"}, + {"testdata/cycles.src"}, + {"testdata/cycles1.src"}, + {"testdata/cycles2.src"}, + {"testdata/cycles3.src"}, + {"testdata/cycles4.src"}, + {"testdata/init0.src"}, + {"testdata/init1.src"}, + {"testdata/decls0.src"}, + {"testdata/decls1.src"}, + {"testdata/decls2a.src", "testdata/decls2b.src"}, + {"testdata/decls3.src"}, + {"testdata/const0.src"}, + {"testdata/const1.src"}, + {"testdata/constdecl.src"}, + {"testdata/vardecl.src"}, + {"testdata/expr0.src"}, + {"testdata/expr1.src"}, + {"testdata/expr2.src"}, + {"testdata/expr3.src"}, + {"testdata/methodsets.src"}, + {"testdata/shifts.src"}, + {"testdata/builtins.src"}, + {"testdata/conversions.src"}, + {"testdata/stmt0.src"}, + {"testdata/stmt1.src"}, + {"testdata/gotos.src"}, + {"testdata/labels.src"}, + {"testdata/issues.src"}, +} + +var fset = token.NewFileSet() + +// Positioned errors are of the form filename:line:column: message . +var posMsgRx = regexp.MustCompile(`^(.*:[0-9]+:[0-9]+): *(.*)`) + +// splitError splits an error's error message into a position string +// and the actual error message. If there's no position information, +// pos is the empty string, and msg is the entire error message. +// +func splitError(err error) (pos, msg string) { + msg = err.Error() + if m := posMsgRx.FindStringSubmatch(msg); len(m) == 3 { + pos = m[1] + msg = m[2] + } + return +} + +func parseFiles(t *testing.T, filenames []string) ([]*ast.File, []error) { + var files []*ast.File + var errlist []error + for _, filename := range filenames { + file, err := parser.ParseFile(fset, filename, nil, parser.AllErrors) + if file == nil { + t.Fatalf("%s: %s", filename, err) + } + files = append(files, file) + if err != nil { + if list, _ := err.(scanner.ErrorList); len(list) > 0 { + for _, err := range list { + errlist = append(errlist, err) + } + } else { + errlist = append(errlist, err) + } + } + } + return files, errlist +} + +// ERROR comments must start with text `ERROR "rx"` or `ERROR rx` where +// rx is a regular expression that matches the expected error message. +// Space around "rx" or rx is ignored. Use the form `ERROR HERE "rx"` +// for error messages that are located immediately after rather than +// at a token's position. +// +var errRx = regexp.MustCompile(`^ *ERROR *(HERE)? *"?([^"]*)"?`) + +// errMap collects the regular expressions of ERROR comments found +// in files and returns them as a map of error positions to error messages. +// +func errMap(t *testing.T, testname string, files []*ast.File) map[string][]string { + // map of position strings to lists of error message patterns + errmap := make(map[string][]string) + + for _, file := range files { + filename := fset.Position(file.Package).Filename + src, err := ioutil.ReadFile(filename) + if err != nil { + t.Fatalf("%s: could not read %s", testname, filename) + } + + var s scanner.Scanner + s.Init(fset.AddFile(filename, -1, len(src)), src, nil, scanner.ScanComments) + var prev token.Pos // position of last non-comment, non-semicolon token + var here token.Pos // position immediately after the token at position prev + + scanFile: + for { + pos, tok, lit := s.Scan() + switch tok { + case token.EOF: + break scanFile + case token.COMMENT: + if lit[1] == '*' { + lit = lit[:len(lit)-2] // strip trailing */ + } + if s := errRx.FindStringSubmatch(lit[2:]); len(s) == 3 { + pos := prev + if s[1] == "HERE" { + pos = here + } + p := fset.Position(pos).String() + errmap[p] = append(errmap[p], strings.TrimSpace(s[2])) + } + case token.SEMICOLON: + // ignore automatically inserted semicolon + if lit == "\n" { + continue scanFile + } + fallthrough + default: + prev = pos + var l int // token length + if tok.IsLiteral() { + l = len(lit) + } else { + l = len(tok.String()) + } + here = prev + token.Pos(l) + } + } + } + + return errmap +} + +func eliminate(t *testing.T, errmap map[string][]string, errlist []error) { + for _, err := range errlist { + pos, gotMsg := splitError(err) + list := errmap[pos] + index := -1 // list index of matching message, if any + // we expect one of the messages in list to match the error at pos + for i, wantRx := range list { + rx, err := regexp.Compile(wantRx) + if err != nil { + t.Errorf("%s: %v", pos, err) + continue + } + if rx.MatchString(gotMsg) { + index = i + break + } + } + if index >= 0 { + // eliminate from list + if n := len(list) - 1; n > 0 { + // not the last entry - swap in last element and shorten list by 1 + list[index] = list[n] + errmap[pos] = list[:n] + } else { + // last entry - remove list from map + delete(errmap, pos) + } + } else { + t.Errorf("%s: no error expected: %q", pos, gotMsg) + } + } +} + +func checkFiles(t *testing.T, testfiles []string) { + // parse files and collect parser errors + files, errlist := parseFiles(t, testfiles) + + pkgName := "" + if len(files) > 0 { + pkgName = files[0].Name.Name + } + + if *listErrors && len(errlist) > 0 { + t.Errorf("--- %s:", pkgName) + for _, err := range errlist { + t.Error(err) + } + } + + // typecheck and collect typechecker errors + var conf Config + conf.Error = func(err error) { + if *listErrors { + t.Error(err) + return + } + // Ignore secondary error messages starting with "\t"; + // they are clarifying messages for a primary error. + if !strings.Contains(err.Error(), ": \t") { + errlist = append(errlist, err) + } + } + conf.Check(pkgName, fset, files, nil) + + if *listErrors { + return + } + + // match and eliminate errors; + // we are expecting the following errors + errmap := errMap(t, pkgName, files) + eliminate(t, errmap, errlist) + + // there should be no expected errors left + if len(errmap) > 0 { + t.Errorf("--- %s: %d source positions with expected (but not reported) errors:", pkgName, len(errmap)) + for pos, list := range errmap { + for _, rx := range list { + t.Errorf("%s: %q", pos, rx) + } + } + } +} + +func TestCheck(t *testing.T) { + // Declare builtins for testing. + DefPredeclaredTestFuncs() + + // If explicit test files are specified, only check those. + if files := *testFiles; files != "" { + checkFiles(t, strings.Split(files, " ")) + return + } + + // Otherwise, run all the tests. + for _, files := range tests { + checkFiles(t, files) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/conversions.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/conversions.go new file mode 100644 index 00000000..15fb0543 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/conversions.go @@ -0,0 +1,146 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements typechecking of conversions. + +package types + +import "code.google.com/p/go.tools/go/exact" + +// Conversion type-checks the conversion T(x). +// The result is in x. +func (check *checker) conversion(x *operand, T Type) { + constArg := x.mode == constant + + var ok bool + switch { + case constArg && isConstType(T): + // constant conversion + switch t := T.Underlying().(*Basic); { + case representableConst(x.val, check.conf, t.kind, &x.val): + ok = true + case x.isInteger() && isString(t): + codepoint := int64(-1) + if i, ok := exact.Int64Val(x.val); ok { + codepoint = i + } + // If codepoint < 0 the absolute value is too large (or unknown) for + // conversion. This is the same as converting any other out-of-range + // value - let string(codepoint) do the work. + x.val = exact.MakeString(string(codepoint)) + ok = true + } + case x.convertibleTo(check.conf, T): + // non-constant conversion + x.mode = value + ok = true + } + + if !ok { + check.errorf(x.pos(), "cannot convert %s to %s", x, T) + x.mode = invalid + return + } + + // The conversion argument types are final. For untyped values the + // conversion provides the type, per the spec: "A constant may be + // given a type explicitly by a constant declaration or conversion,...". + final := x.typ + if isUntyped(x.typ) { + final = T + // - For conversions to interfaces, use the argument's default type. + // - For conversions of untyped constants to non-constant types, also + // use the default type (e.g., []byte("foo") should report string + // not []byte as type for the constant "foo"). + // - Keep untyped nil for untyped nil arguments. + if isInterface(T) || constArg && !isConstType(T) { + final = defaultType(x.typ) + } + check.updateExprType(x.expr, final, true) + } + + x.typ = T +} + +func (x *operand) convertibleTo(conf *Config, T Type) bool { + // "x is assignable to T" + if x.assignableTo(conf, T) { + return true + } + + // "x's type and T have identical underlying types" + V := x.typ + Vu := V.Underlying() + Tu := T.Underlying() + if Identical(Vu, Tu) { + return true + } + + // "x's type and T are unnamed pointer types and their pointer base types have identical underlying types" + if V, ok := V.(*Pointer); ok { + if T, ok := T.(*Pointer); ok { + if Identical(V.base.Underlying(), T.base.Underlying()) { + return true + } + } + } + + // "x's type and T are both integer or floating point types" + if (isInteger(V) || isFloat(V)) && (isInteger(T) || isFloat(T)) { + return true + } + + // "x's type and T are both complex types" + if isComplex(V) && isComplex(T) { + return true + } + + // "x is an integer or a slice of bytes or runes and T is a string type" + if (isInteger(V) || isBytesOrRunes(Vu)) && isString(T) { + return true + } + + // "x is a string and T is a slice of bytes or runes" + if isString(V) && isBytesOrRunes(Tu) { + return true + } + + // package unsafe: + // "any pointer or value of underlying type uintptr can be converted into a unsafe.Pointer" + if (isPointer(Vu) || isUintptr(Vu)) && isUnsafePointer(T) { + return true + } + // "and vice versa" + if isUnsafePointer(V) && (isPointer(Tu) || isUintptr(Tu)) { + return true + } + + return false +} + +func isUintptr(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.kind == Uintptr +} + +func isUnsafePointer(typ Type) bool { + // TODO(gri): Is this (typ.Underlying() instead of just typ) correct? + // The spec does not say so, but gc claims it is. See also + // issue 6326. + t, ok := typ.Underlying().(*Basic) + return ok && t.kind == UnsafePointer +} + +func isPointer(typ Type) bool { + _, ok := typ.Underlying().(*Pointer) + return ok +} + +func isBytesOrRunes(typ Type) bool { + if s, ok := typ.(*Slice); ok { + t, ok := s.elem.Underlying().(*Basic) + return ok && (t.kind == Byte || t.kind == Rune) + } + return false +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/decl.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/decl.go new file mode 100644 index 00000000..8ef003d4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/decl.go @@ -0,0 +1,411 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types + +import ( + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +func (check *checker) reportAltDecl(obj Object) { + if pos := obj.Pos(); pos.IsValid() { + // We use "other" rather than "previous" here because + // the first declaration seen may not be textually + // earlier in the source. + check.errorf(pos, "\tother declaration of %s", obj.Name()) // secondary error, \t indented + } +} + +func (check *checker) declare(scope *Scope, id *ast.Ident, obj Object) { + // spec: "The blank identifier, represented by the underscore + // character _, may be used in a declaration like any other + // identifier but the declaration does not introduce a new + // binding." + if obj.Name() != "_" { + if alt := scope.Insert(obj); alt != nil { + check.errorf(obj.Pos(), "%s redeclared in this block", obj.Name()) + check.reportAltDecl(alt) + return + } + } + if id != nil { + check.recordDef(id, obj) + } +} + +// objDecl type-checks the declaration of obj in its respective (file) context. +// See check.typ for the details on def and path. +func (check *checker) objDecl(obj Object, def *Named, path []*TypeName) { + if obj.Type() != nil { + return // already checked - nothing to do + } + + if trace { + check.trace(obj.Pos(), "-- resolving %s", obj.Name()) + } + + d := check.objMap[obj] + if d == nil { + check.dump("%s: %s should have been declared", obj.Pos(), obj.Name()) + unreachable() + } + + // save/restore current context and setup object context + defer func(ctxt context) { + check.context = ctxt + }(check.context) + check.context = context{ + scope: d.file, + } + + // Const and var declarations must not have initialization + // cycles. We track them by remembering the current declaration + // in check.decl. Initialization expressions depending on other + // consts, vars, or functions, add dependencies to the current + // check.decl. + switch obj := obj.(type) { + case *Const: + check.decl = d // new package-level const decl + check.constDecl(obj, d.typ, d.init) + case *Var: + check.decl = d // new package-level var decl + check.varDecl(obj, d.lhs, d.typ, d.init) + case *TypeName: + // invalid recursive types are detected via path + check.typeDecl(obj, d.typ, def, path) + case *Func: + // functions may be recursive - no need to track dependencies + check.funcDecl(obj, d) + default: + unreachable() + } +} + +func (check *checker) constDecl(obj *Const, typ, init ast.Expr) { + assert(obj.typ == nil) + + if obj.visited { + obj.typ = Typ[Invalid] + return + } + obj.visited = true + + // use the correct value of iota + assert(check.iota == nil) + check.iota = obj.val + defer func() { check.iota = nil }() + + // determine type, if any + if typ != nil { + t := check.typ(typ) + if !isConstType(t) { + check.errorf(typ.Pos(), "invalid constant type %s", t) + obj.typ = Typ[Invalid] + return + } + obj.typ = t + } + + // check initialization + var x operand + if init != nil { + check.expr(&x, init) + } + check.initConst(obj, &x) +} + +func (check *checker) varDecl(obj *Var, lhs []*Var, typ, init ast.Expr) { + assert(obj.typ == nil) + + if obj.visited { + obj.typ = Typ[Invalid] + return + } + obj.visited = true + + // var declarations cannot use iota + assert(check.iota == nil) + + // determine type, if any + if typ != nil { + obj.typ = check.typ(typ) + } + + // check initialization + if init == nil { + if typ == nil { + // error reported before by arityMatch + obj.typ = Typ[Invalid] + } + return + } + + if lhs == nil || len(lhs) == 1 { + assert(lhs == nil || lhs[0] == obj) + var x operand + check.expr(&x, init) + check.initVar(obj, &x, false) + return + } + + if debug { + // obj must be one of lhs + found := false + for _, lhs := range lhs { + if obj == lhs { + found = true + break + } + } + if !found { + panic("inconsistent lhs") + } + } + check.initVars(lhs, []ast.Expr{init}, token.NoPos) +} + +// underlying returns the underlying type of typ; possibly by following +// forward chains of named types. Such chains only exist while named types +// are incomplete. +func underlying(typ Type) Type { + for { + n, _ := typ.(*Named) + if n == nil { + break + } + typ = n.underlying + } + return typ +} + +func (n *Named) setUnderlying(typ Type) { + if n != nil { + n.underlying = typ + } +} + +func (check *checker) typeDecl(obj *TypeName, typ ast.Expr, def *Named, path []*TypeName) { + assert(obj.typ == nil) + + // type declarations cannot use iota + assert(check.iota == nil) + + named := &Named{obj: obj} + def.setUnderlying(named) + obj.typ = named // make sure recursive type declarations terminate + + // determine underlying type of named + check.typExpr(typ, named, append(path, obj)) + + // The underlying type of named may be itself a named type that is + // incomplete: + // + // type ( + // A B + // B *C + // C A + // ) + // + // The type of C is the (named) type of A which is incomplete, + // and which has as its underlying type the named type B. + // Determine the (final, unnamed) underlying type by resolving + // any forward chain (they always end in an unnamed type). + named.underlying = underlying(named.underlying) + + // check and add associated methods + // TODO(gri) It's easy to create pathological cases where the + // current approach is incorrect: In general we need to know + // and add all methods _before_ type-checking the type. + // See http://play.golang.org/p/WMpE0q2wK8 + check.addMethodDecls(obj) +} + +func (check *checker) addMethodDecls(obj *TypeName) { + // get associated methods + methods := check.methods[obj.name] + if len(methods) == 0 { + return // no methods + } + delete(check.methods, obj.name) + + // use an objset to check for name conflicts + var mset objset + + // spec: "If the base type is a struct type, the non-blank method + // and field names must be distinct." + base := obj.typ.(*Named) + if t, _ := base.underlying.(*Struct); t != nil { + for _, fld := range t.fields { + if fld.name != "_" { + assert(mset.insert(fld) == nil) + } + } + } + + // Checker.Files may be called multiple times; additional package files + // may add methods to already type-checked types. Add pre-existing methods + // so that we can detect redeclarations. + for _, m := range base.methods { + assert(m.name != "_") + assert(mset.insert(m) == nil) + } + + // type-check methods + for _, m := range methods { + // spec: "For a base type, the non-blank names of methods bound + // to it must be unique." + if m.name != "_" { + if alt := mset.insert(m); alt != nil { + switch alt.(type) { + case *Var: + check.errorf(m.pos, "field and method with the same name %s", m.name) + case *Func: + check.errorf(m.pos, "method %s already declared for %s", m.name, base) + default: + unreachable() + } + check.reportAltDecl(alt) + continue + } + } + check.objDecl(m, nil, nil) + // methods with blank _ names cannot be found - don't keep them + if m.name != "_" { + base.methods = append(base.methods, m) + } + } +} + +func (check *checker) funcDecl(obj *Func, decl *declInfo) { + assert(obj.typ == nil) + + // func declarations cannot use iota + assert(check.iota == nil) + + sig := new(Signature) + obj.typ = sig // guard against cycles + fdecl := decl.fdecl + check.funcType(sig, fdecl.Recv, fdecl.Type) + if sig.recv == nil && obj.name == "init" && (sig.params.Len() > 0 || sig.results.Len() > 0) { + check.errorf(fdecl.Pos(), "func init must have no arguments and no return values") + // ok to continue + } + + // function body must be type-checked after global declarations + // (functions implemented elsewhere have no body) + if !check.conf.IgnoreFuncBodies && fdecl.Body != nil { + check.later(obj.name, decl, sig, fdecl.Body) + } +} + +func (check *checker) declStmt(decl ast.Decl) { + pkg := check.pkg + + switch d := decl.(type) { + case *ast.BadDecl: + // ignore + + case *ast.GenDecl: + var last *ast.ValueSpec // last ValueSpec with type or init exprs seen + for iota, spec := range d.Specs { + switch s := spec.(type) { + case *ast.ValueSpec: + switch d.Tok { + case token.CONST: + // determine which init exprs to use + switch { + case s.Type != nil || len(s.Values) > 0: + last = s + case last == nil: + last = new(ast.ValueSpec) // make sure last exists + } + + // declare all constants + lhs := make([]*Const, len(s.Names)) + for i, name := range s.Names { + obj := NewConst(name.Pos(), pkg, name.Name, nil, exact.MakeInt64(int64(iota))) + lhs[i] = obj + + var init ast.Expr + if i < len(last.Values) { + init = last.Values[i] + } + + check.constDecl(obj, last.Type, init) + } + + check.arityMatch(s, last) + + for i, name := range s.Names { + check.declare(check.scope, name, lhs[i]) + } + + case token.VAR: + lhs0 := make([]*Var, len(s.Names)) + for i, name := range s.Names { + lhs0[i] = NewVar(name.Pos(), pkg, name.Name, nil) + } + + // initialize all variables + for i, obj := range lhs0 { + var lhs []*Var + var init ast.Expr + switch len(s.Values) { + case len(s.Names): + // lhs and rhs match + init = s.Values[i] + case 1: + // rhs is expected to be a multi-valued expression + lhs = lhs0 + init = s.Values[0] + default: + if i < len(s.Values) { + init = s.Values[i] + } + } + check.varDecl(obj, lhs, s.Type, init) + if len(s.Values) == 1 { + // If we have a single lhs variable we are done either way. + // If we have a single rhs expression, it must be a multi- + // valued expression, in which case handling the first lhs + // variable will cause all lhs variables to have a type + // assigned, and we are done as well. + if debug { + for _, obj := range lhs0 { + assert(obj.typ != nil) + } + } + break + } + } + + check.arityMatch(s, nil) + + // declare all variables + // (only at this point are the variable scopes (parents) set) + for i, name := range s.Names { + check.declare(check.scope, name, lhs0[i]) + } + + default: + check.invalidAST(s.Pos(), "invalid token %s", d.Tok) + } + + case *ast.TypeSpec: + obj := NewTypeName(s.Name.Pos(), pkg, s.Name.Name, nil) + check.declare(check.scope, s.Name, obj) + check.typeDecl(obj, s.Type, nil, nil) + + default: + check.invalidAST(s.Pos(), "const, type, or var declaration expected") + } + } + + default: + check.invalidAST(d.Pos(), "unknown ast.Decl node %T", d) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/errors.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/errors.go new file mode 100644 index 00000000..8795e590 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/errors.go @@ -0,0 +1,96 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements various error reporters. + +package types + +import ( + "fmt" + "go/ast" + "go/token" + "strings" +) + +func assert(p bool) { + if !p { + panic("assertion failed") + } +} + +func unreachable() { + panic("unreachable") +} + +func (check *checker) sprintf(format string, args ...interface{}) string { + for i, arg := range args { + switch a := arg.(type) { + case nil: + arg = "" + case operand: + panic("internal error: should always pass *operand") + case *operand: + arg = operandString(check.pkg, a) + case token.Pos: + arg = check.fset.Position(a).String() + case ast.Expr: + arg = ExprString(a) + case Object: + arg = ObjectString(check.pkg, a) + case Type: + arg = TypeString(check.pkg, a) + } + args[i] = arg + } + return fmt.Sprintf(format, args...) +} + +func (check *checker) trace(pos token.Pos, format string, args ...interface{}) { + fmt.Printf("%s:\t%s%s\n", + check.fset.Position(pos), + strings.Repeat(". ", check.indent), + check.sprintf(format, args...), + ) +} + +// dump is only needed for debugging +func (check *checker) dump(format string, args ...interface{}) { + fmt.Println(check.sprintf(format, args...)) +} + +func (check *checker) err(pos token.Pos, msg string, soft bool) { + err := Error{check.fset, pos, msg, soft} + if check.firstErr == nil { + check.firstErr = err + } + f := check.conf.Error + if f == nil { + panic(bailout{}) // report only first error + } + f(err) +} + +func (check *checker) error(pos token.Pos, msg string) { + check.err(pos, msg, false) +} + +func (check *checker) errorf(pos token.Pos, format string, args ...interface{}) { + check.err(pos, check.sprintf(format, args...), false) +} + +func (check *checker) softErrorf(pos token.Pos, format string, args ...interface{}) { + check.err(pos, check.sprintf(format, args...), true) +} + +func (check *checker) invalidAST(pos token.Pos, format string, args ...interface{}) { + check.errorf(pos, "invalid AST: "+format, args...) +} + +func (check *checker) invalidArg(pos token.Pos, format string, args ...interface{}) { + check.errorf(pos, "invalid argument: "+format, args...) +} + +func (check *checker) invalidOp(pos token.Pos, format string, args ...interface{}) { + check.errorf(pos, "invalid operation: "+format, args...) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/eval.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/eval.go new file mode 100644 index 00000000..549aadbf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/eval.go @@ -0,0 +1,109 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements New, Eval and EvalNode. + +package types + +import ( + "fmt" + "go/ast" + "go/parser" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// New is a convenience function to create a new type from a given +// expression or type literal string evaluated in Universe scope. +// New(str) is shorthand for Eval(str, nil, nil), but only returns +// the type result, and panics in case of an error. +// Position info for objects in the result type is undefined. +// +func New(str string) Type { + typ, _, err := Eval(str, nil, nil) + if err != nil { + panic(err) + } + return typ +} + +// Eval returns the type and, if constant, the value for the +// expression or type literal string str evaluated in scope. +// If the expression contains function literals, the function +// bodies are ignored (though they must be syntactically correct). +// +// If pkg == nil, the Universe scope is used and the provided +// scope is ignored. Otherwise, the scope must belong to the +// package (either the package scope, or nested within the +// package scope). +// +// An error is returned if the scope is incorrect, the string +// has syntax errors, or if it cannot be evaluated in the scope. +// Position info for objects in the result type is undefined. +// +// Note: Eval should not be used instead of running Check to compute +// types and values, but in addition to Check. Eval will re-evaluate +// its argument each time, and it also does not know about the context +// in which an expression is used (e.g., an assignment). Thus, top- +// level untyped constants will return an untyped type rather then the +// respective context-specific type. +// +func Eval(str string, pkg *Package, scope *Scope) (typ Type, val exact.Value, err error) { + node, err := parser.ParseExpr(str) + if err != nil { + return nil, nil, err + } + + // Create a file set that looks structurally identical to the + // one created by parser.ParseExpr for correct error positions. + fset := token.NewFileSet() + fset.AddFile("", len(str), fset.Base()).SetLinesForContent([]byte(str)) + + return EvalNode(fset, node, pkg, scope) +} + +// EvalNode is like Eval but instead of string it accepts +// an expression node and respective file set. +// +// An error is returned if the scope is incorrect +// if the node cannot be evaluated in the scope. +// +func EvalNode(fset *token.FileSet, node ast.Expr, pkg *Package, scope *Scope) (typ Type, val exact.Value, err error) { + // verify package/scope relationship + if pkg == nil { + scope = Universe + } else { + s := scope + for s != nil && s != pkg.scope { + s = s.parent + } + // s == nil || s == pkg.scope + if s == nil { + return nil, nil, fmt.Errorf("scope does not belong to package %s", pkg.name) + } + } + + // initialize checker + check := NewChecker(nil, fset, pkg, nil) + check.scope = scope + defer check.handleBailout(&err) + + // evaluate node + var x operand + check.exprOrType(&x, node) + switch x.mode { + case invalid, novalue: + fallthrough + default: + unreachable() // or bailed out with error + case constant: + val = x.val + fallthrough + case typexpr, variable, mapindex, value, commaok: + typ = x.typ + } + + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/eval_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/eval_test.go new file mode 100644 index 00000000..d9b68524 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/eval_test.go @@ -0,0 +1,148 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains tests for Eval. + +package types_test + +import ( + "go/ast" + "go/parser" + "go/token" + "strings" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +func testEval(t *testing.T, pkg *Package, scope *Scope, str string, typ Type, typStr, valStr string) { + gotTyp, gotVal, err := Eval(str, pkg, scope) + if err != nil { + t.Errorf("Eval(%q) failed: %s", str, err) + return + } + if gotTyp == nil { + t.Errorf("Eval(%q) got nil type but no error", str) + return + } + + // compare types + if typ != nil { + // we have a type, check identity + if !Identical(gotTyp, typ) { + t.Errorf("Eval(%q) got type %s, want %s", str, gotTyp, typ) + return + } + } else { + // we have a string, compare type string + gotStr := gotTyp.String() + if gotStr != typStr { + t.Errorf("Eval(%q) got type %s, want %s", str, gotStr, typStr) + return + } + } + + // compare values + gotStr := "" + if gotVal != nil { + gotStr = gotVal.String() + } + if gotStr != valStr { + t.Errorf("Eval(%q) got value %s, want %s", str, gotStr, valStr) + } +} + +func TestEvalBasic(t *testing.T) { + for _, typ := range Typ[Bool : String+1] { + testEval(t, nil, nil, typ.Name(), typ, "", "") + } +} + +func TestEvalComposite(t *testing.T) { + for _, test := range independentTestTypes { + testEval(t, nil, nil, test.src, nil, test.str, "") + } +} + +func TestEvalArith(t *testing.T) { + var tests = []string{ + `true`, + `false == false`, + `12345678 + 87654321 == 99999999`, + `10 * 20 == 200`, + `(1<<1000)*2 >> 100 == 2<<900`, + `"foo" + "bar" == "foobar"`, + `"abc" <= "bcd"`, + `len([10]struct{}{}) == 2*5`, + } + for _, test := range tests { + testEval(t, nil, nil, test, Typ[UntypedBool], "", "true") + } +} + +func TestEvalContext(t *testing.T) { + src := ` +package p +import "fmt" +import m "math" +const c = 3.0 +type T []int +func f(a int, s string) float64 { + fmt.Println("calling f") + _ = m.Pi // use package math + const d int = c + 1 + var x int + x = a + len(s) + return float64(x) +} +` + fset := token.NewFileSet() + file, err := parser.ParseFile(fset, "p", src, 0) + if err != nil { + t.Fatal(err) + } + + pkg, err := Check("p", fset, []*ast.File{file}) + if err != nil { + t.Fatal(err) + } + + pkgScope := pkg.Scope() + if n := pkgScope.NumChildren(); n != 1 { + t.Fatalf("got %d file scopes, want 1", n) + } + + fileScope := pkgScope.Child(0) + if n := fileScope.NumChildren(); n != 1 { + t.Fatalf("got %d functions scopes, want 1", n) + } + + funcScope := fileScope.Child(0) + + var tests = []string{ + `true => true, untyped bool`, + `fmt.Println => , func(a ...interface{}) (n int, err error)`, + `c => 3, untyped float`, + `T => , p.T`, + `a => , int`, + `s => , string`, + `d => 4, int`, + `x => , int`, + `d/c => 1, int`, + `c/2 => 3/2, untyped float`, + `m.Pi < m.E => false, untyped bool`, + } + for _, test := range tests { + str, typ := split(test, ", ") + str, val := split(str, "=>") + testEval(t, pkg, funcScope, str, nil, typ, val) + } +} + +// split splits string s at the first occurrence of s. +func split(s, sep string) (string, string) { + i := strings.Index(s, sep) + return strings.TrimSpace(s[:i]), strings.TrimSpace(s[i+len(sep):]) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/expr.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/expr.go new file mode 100644 index 00000000..c143c138 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/expr.go @@ -0,0 +1,1466 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements typechecking of expressions. + +package types + +import ( + "fmt" + "go/ast" + "go/token" + "math" + + "code.google.com/p/go.tools/go/exact" +) + +/* +Basic algorithm: + +Expressions are checked recursively, top down. Expression checker functions +are generally of the form: + + func f(x *operand, e *ast.Expr, ...) + +where e is the expression to be checked, and x is the result of the check. +The check performed by f may fail in which case x.mode == invalid, and +related error messages will have been issued by f. + +If a hint argument is present, it is the composite literal element type +of an outer composite literal; it is used to type-check composite literal +elements that have no explicit type specification in the source +(e.g.: []T{{...}, {...}}, the hint is the type T in this case). + +All expressions are checked via rawExpr, which dispatches according +to expression kind. Upon returning, rawExpr is recording the types and +constant values for all expressions that have an untyped type (those types +may change on the way up in the expression tree). Usually these are constants, +but the results of comparisons or non-constant shifts of untyped constants +may also be untyped, but not constant. + +Untyped expressions may eventually become fully typed (i.e., not untyped), +typically when the value is assigned to a variable, or is used otherwise. +The updateExprType method is used to record this final type and update +the recorded types: the type-checked expression tree is again traversed down, +and the new type is propagated as needed. Untyped constant expression values +that become fully typed must now be representable by the full type (constant +sub-expression trees are left alone except for their roots). This mechanism +ensures that a client sees the actual (run-time) type an untyped value would +have. It also permits type-checking of lhs shift operands "as if the shift +were not present": when updateExprType visits an untyped lhs shift operand +and assigns it it's final type, that type must be an integer type, and a +constant lhs must be representable as an integer. + +When an expression gets its final type, either on the way out from rawExpr, +on the way down in updateExprType, or at the end of the type checker run, +the type (and constant value, if any) is recorded via Info.Types, if present. +*/ + +type opPredicates map[token.Token]func(Type) bool + +var unaryOpPredicates = opPredicates{ + token.ADD: isNumeric, + token.SUB: isNumeric, + token.XOR: isInteger, + token.NOT: isBoolean, +} + +func (check *checker) op(m opPredicates, x *operand, op token.Token) bool { + if pred := m[op]; pred != nil { + if !pred(x.typ) { + check.invalidOp(x.pos(), "operator %s not defined for %s", op, x) + return false + } + } else { + check.invalidAST(x.pos(), "unknown operator %s", op) + return false + } + return true +} + +func (check *checker) unary(x *operand, op token.Token) { + switch op { + case token.AND: + // spec: "As an exception to the addressability + // requirement x may also be a composite literal." + if _, ok := unparen(x.expr).(*ast.CompositeLit); !ok && x.mode != variable { + check.invalidOp(x.pos(), "cannot take address of %s", x) + x.mode = invalid + return + } + x.mode = value + x.typ = &Pointer{base: x.typ} + return + + case token.ARROW: + typ, ok := x.typ.Underlying().(*Chan) + if !ok { + check.invalidOp(x.pos(), "cannot receive from non-channel %s", x) + x.mode = invalid + return + } + if typ.dir == SendOnly { + check.invalidOp(x.pos(), "cannot receive from send-only channel %s", x) + x.mode = invalid + return + } + x.mode = commaok + x.typ = typ.elem + check.hasCallOrRecv = true + return + } + + if !check.op(unaryOpPredicates, x, op) { + x.mode = invalid + return + } + + if x.mode == constant { + typ := x.typ.Underlying().(*Basic) + size := -1 + if isUnsigned(typ) { + size = int(check.conf.sizeof(typ)) + } + x.val = exact.UnaryOp(op, x.val, size) + // Typed constants must be representable in + // their type after each constant operation. + if isTyped(typ) { + check.representable(x, typ) + } + return + } + + x.mode = value + // x.typ remains unchanged +} + +func isShift(op token.Token) bool { + return op == token.SHL || op == token.SHR +} + +func isComparison(op token.Token) bool { + // Note: tokens are not ordered well to make this much easier + switch op { + case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ: + return true + } + return false +} + +func fitsFloat32(x exact.Value) bool { + f, _ := exact.Float64Val(x) + // spec: "In all non-constant conversions involving floating-point + // or complex values, if the result type cannot represent the value + // the conversion succeeds but the result value is implementation- + // dependent." + // + // We assume that float32(f) returns an Inf if f is too large for + // a float32, or if f is an Inf; and that it returns 0 for values + // with too small a magnitude. + return !math.IsInf(float64(float32(f)), 0) +} + +func roundFloat32(x exact.Value) exact.Value { + f, _ := exact.Float64Val(x) + f = float64(float32(f)) + if !math.IsInf(f, 0) { + return exact.MakeFloat64(f) + } + return nil +} + +func fitsFloat64(x exact.Value) bool { + f, _ := exact.Float64Val(x) + return !math.IsInf(f, 0) +} + +func roundFloat64(x exact.Value) exact.Value { + f, _ := exact.Float64Val(x) + if !math.IsInf(f, 0) { + return exact.MakeFloat64(f) + } + return nil +} + +// representableConst reports whether x can be represented as +// value of the given basic type kind and for the configuration +// provided (only needed for int/uint sizes). +// +// If rounded != nil, *rounded is set to the rounded value of x for +// representable floating-point values; it is left alone otherwise. +// It is ok to provide the addressof the first argument for rounded. +func representableConst(x exact.Value, conf *Config, as BasicKind, rounded *exact.Value) bool { + switch x.Kind() { + case exact.Unknown: + return true + + case exact.Bool: + return as == Bool || as == UntypedBool + + case exact.Int: + if x, ok := exact.Int64Val(x); ok { + switch as { + case Int: + var s = uint(conf.sizeof(Typ[as])) * 8 + return int64(-1)<<(s-1) <= x && x <= int64(1)<<(s-1)-1 + case Int8: + const s = 8 + return -1<<(s-1) <= x && x <= 1<<(s-1)-1 + case Int16: + const s = 16 + return -1<<(s-1) <= x && x <= 1<<(s-1)-1 + case Int32: + const s = 32 + return -1<<(s-1) <= x && x <= 1<<(s-1)-1 + case Int64: + return true + case Uint, Uintptr: + if s := uint(conf.sizeof(Typ[as])) * 8; s < 64 { + return 0 <= x && x <= int64(1)<= 0 && n <= int(s) + case Uint64: + return exact.Sign(x) >= 0 && n <= 64 + case Float32, Complex64: + if rounded == nil { + return fitsFloat32(x) + } + r := roundFloat32(x) + if r != nil { + *rounded = r + return true + } + case Float64, Complex128: + if rounded == nil { + return fitsFloat64(x) + } + r := roundFloat64(x) + if r != nil { + *rounded = r + return true + } + case UntypedInt, UntypedFloat, UntypedComplex: + return true + } + + case exact.Float: + switch as { + case Float32, Complex64: + if rounded == nil { + return fitsFloat32(x) + } + r := roundFloat32(x) + if r != nil { + *rounded = r + return true + } + case Float64, Complex128: + if rounded == nil { + return fitsFloat64(x) + } + r := roundFloat64(x) + if r != nil { + *rounded = r + return true + } + case UntypedFloat, UntypedComplex: + return true + } + + case exact.Complex: + switch as { + case Complex64: + if rounded == nil { + return fitsFloat32(exact.Real(x)) && fitsFloat32(exact.Imag(x)) + } + re := roundFloat32(exact.Real(x)) + im := roundFloat32(exact.Imag(x)) + if re != nil && im != nil { + *rounded = exact.BinaryOp(re, token.ADD, exact.MakeImag(im)) + return true + } + case Complex128: + if rounded == nil { + return fitsFloat64(exact.Real(x)) && fitsFloat64(exact.Imag(x)) + } + re := roundFloat64(exact.Real(x)) + im := roundFloat64(exact.Imag(x)) + if re != nil && im != nil { + *rounded = exact.BinaryOp(re, token.ADD, exact.MakeImag(im)) + return true + } + case UntypedComplex: + return true + } + + case exact.String: + return as == String || as == UntypedString + + default: + unreachable() + } + + return false +} + +// representable checks that a constant operand is representable in the given basic type. +func (check *checker) representable(x *operand, typ *Basic) { + assert(x.mode == constant) + if !representableConst(x.val, check.conf, typ.kind, &x.val) { + var msg string + if isNumeric(x.typ) && isNumeric(typ) { + // numeric conversion : error msg + // + // integer -> integer : overflows + // integer -> float : overflows (actually not possible) + // float -> integer : truncated + // float -> float : overflows + // + if !isInteger(x.typ) && isInteger(typ) { + msg = "%s truncated to %s" + } else { + msg = "%s overflows %s" + } + } else { + msg = "cannot convert %s to %s" + } + check.errorf(x.pos(), msg, x, typ) + x.mode = invalid + } +} + +// updateExprType updates the type of x to typ and invokes itself +// recursively for the operands of x, depending on expression kind. +// If typ is still an untyped and not the final type, updateExprType +// only updates the recorded untyped type for x and possibly its +// operands. Otherwise (i.e., typ is not an untyped type anymore, +// or it is the final type for x), the type and value are recorded. +// Also, if x is a constant, it must be representable as a value of typ, +// and if x is the (formerly untyped) lhs operand of a non-constant +// shift, it must be an integer value. +// +func (check *checker) updateExprType(x ast.Expr, typ Type, final bool) { + old, found := check.untyped[x] + if !found { + return // nothing to do + } + + // update operands of x if necessary + switch x := x.(type) { + case *ast.BadExpr, + *ast.FuncLit, + *ast.CompositeLit, + *ast.IndexExpr, + *ast.SliceExpr, + *ast.TypeAssertExpr, + *ast.StarExpr, + *ast.KeyValueExpr, + *ast.ArrayType, + *ast.StructType, + *ast.FuncType, + *ast.InterfaceType, + *ast.MapType, + *ast.ChanType: + // These expression are never untyped - nothing to do. + // The respective sub-expressions got their final types + // upon assignment or use. + if debug { + check.dump("%s: found old type(%s): %s (new: %s)", x.Pos(), x, old.typ, typ) + unreachable() + } + return + + case *ast.CallExpr: + // Resulting in an untyped constant (e.g., built-in complex). + // The respective calls take care of calling updateExprType + // for the arguments if necessary. + + case *ast.Ident, *ast.BasicLit, *ast.SelectorExpr: + // An identifier denoting a constant, a constant literal, + // or a qualified identifier (imported untyped constant). + // No operands to take care of. + + case *ast.ParenExpr: + check.updateExprType(x.X, typ, final) + + case *ast.UnaryExpr: + // If x is a constant, the operands were constants. + // They don't need to be updated since they never + // get "materialized" into a typed value; and they + // will be processed at the end of the type check. + if old.val != nil { + break + } + check.updateExprType(x.X, typ, final) + + case *ast.BinaryExpr: + if old.val != nil { + break // see comment for unary expressions + } + if isComparison(x.Op) { + // The result type is independent of operand types + // and the operand types must have final types. + } else if isShift(x.Op) { + // The result type depends only on lhs operand. + // The rhs type was updated when checking the shift. + check.updateExprType(x.X, typ, final) + } else { + // The operand types match the result type. + check.updateExprType(x.X, typ, final) + check.updateExprType(x.Y, typ, final) + } + + default: + unreachable() + } + + // If the new type is not final and still untyped, just + // update the recorded type. + if !final && isUntyped(typ) { + old.typ = typ.Underlying().(*Basic) + check.untyped[x] = old + return + } + + // Otherwise we have the final (typed or untyped type). + // Remove it from the map of yet untyped expressions. + delete(check.untyped, x) + + // If x is the lhs of a shift, its final type must be integer. + // We already know from the shift check that it is representable + // as an integer if it is a constant. + if old.isLhs && !isInteger(typ) { + check.invalidOp(x.Pos(), "shifted operand %s (type %s) must be integer", x, typ) + return + } + + // Everything's fine, record final type and value for x. + check.recordTypeAndValue(x, typ, old.val) +} + +// updateExprVal updates the value of x to val. +func (check *checker) updateExprVal(x ast.Expr, val exact.Value) { + if info, ok := check.untyped[x]; ok { + info.val = val + check.untyped[x] = info + } +} + +// convertUntyped attempts to set the type of an untyped value to the target type. +func (check *checker) convertUntyped(x *operand, target Type) { + if x.mode == invalid || isTyped(x.typ) || target == Typ[Invalid] { + return + } + + // TODO(gri) Sloppy code - clean up. This function is central + // to assignment and expression checking. + + if isUntyped(target) { + // both x and target are untyped + xkind := x.typ.(*Basic).kind + tkind := target.(*Basic).kind + if isNumeric(x.typ) && isNumeric(target) { + if xkind < tkind { + x.typ = target + check.updateExprType(x.expr, target, false) + } + } else if xkind != tkind { + goto Error + } + return + } + + // typed target + switch t := target.Underlying().(type) { + case *Basic: + if x.mode == constant { + check.representable(x, t) + if x.mode == invalid { + return + } + // expression value may have been rounded - update if needed + // TODO(gri) A floating-point value may silently underflow to + // zero. If it was negative, the sign is lost. See issue 6898. + check.updateExprVal(x.expr, x.val) + } else { + // Non-constant untyped values may appear as the + // result of comparisons (untyped bool), intermediate + // (delayed-checked) rhs operands of shifts, and as + // the value nil. + switch x.typ.(*Basic).kind { + case UntypedBool: + if !isBoolean(target) { + goto Error + } + case UntypedInt, UntypedRune, UntypedFloat, UntypedComplex: + if !isNumeric(target) { + goto Error + } + case UntypedString: + // Non-constant untyped string values are not + // permitted by the spec and should not occur. + unreachable() + case UntypedNil: + // Unsafe.Pointer is a basic type that includes nil. + if !hasNil(target) { + goto Error + } + default: + goto Error + } + } + case *Interface: + if !x.isNil() && !t.Empty() /* empty interfaces are ok */ { + goto Error + } + // Update operand types to the default type rather then + // the target (interface) type: values must have concrete + // dynamic types. If the value is nil, keep it untyped + // (this is important for tools such as go vet which need + // the dynamic type for argument checking of say, print + // functions) + if x.isNil() { + target = Typ[UntypedNil] + } else { + // cannot assign untyped values to non-empty interfaces + if !t.Empty() { + goto Error + } + target = defaultType(x.typ) + } + case *Pointer, *Signature, *Slice, *Map, *Chan: + if !x.isNil() { + goto Error + } + // keep nil untyped - see comment for interfaces, above + target = Typ[UntypedNil] + default: + goto Error + } + + x.typ = target + check.updateExprType(x.expr, target, true) // UntypedNils are final + return + +Error: + check.errorf(x.pos(), "cannot convert %s to %s", x, target) + x.mode = invalid +} + +func (check *checker) comparison(x, y *operand, op token.Token) { + // spec: "In any comparison, the first operand must be assignable + // to the type of the second operand, or vice versa." + err := "" + if x.assignableTo(check.conf, y.typ) || y.assignableTo(check.conf, x.typ) { + defined := false + switch op { + case token.EQL, token.NEQ: + // spec: "The equality operators == and != apply to operands that are comparable." + defined = Comparable(x.typ) || x.isNil() && hasNil(y.typ) || y.isNil() && hasNil(x.typ) + case token.LSS, token.LEQ, token.GTR, token.GEQ: + // spec: The ordering operators <, <=, >, and >= apply to operands that are ordered." + defined = isOrdered(x.typ) + default: + unreachable() + } + if !defined { + typ := x.typ + if x.isNil() { + typ = y.typ + } + err = check.sprintf("operator %s not defined for %s", op, typ) + } + } else { + err = check.sprintf("mismatched types %s and %s", x.typ, y.typ) + } + + if err != "" { + check.errorf(x.pos(), "cannot compare %s %s %s (%s)", x.expr, op, y.expr, err) + x.mode = invalid + return + } + + if x.mode == constant && y.mode == constant { + x.val = exact.MakeBool(exact.Compare(x.val, op, y.val)) + // The operands are never materialized; no need to update + // their types. + } else { + x.mode = value + // The operands have now their final types, which at run- + // time will be materialized. Update the expression trees. + // If the current types are untyped, the materialized type + // is the respective default type. + check.updateExprType(x.expr, defaultType(x.typ), true) + check.updateExprType(y.expr, defaultType(y.typ), true) + } + + // spec: "Comparison operators compare two operands and yield + // an untyped boolean value." + x.typ = Typ[UntypedBool] +} + +func (check *checker) shift(x, y *operand, op token.Token) { + untypedx := isUntyped(x.typ) + + // The lhs must be of integer type or be representable + // as an integer; otherwise the shift has no chance. + if !isInteger(x.typ) && (!untypedx || !representableConst(x.val, nil, UntypedInt, nil)) { + check.invalidOp(x.pos(), "shifted operand %s must be integer", x) + x.mode = invalid + return + } + + // spec: "The right operand in a shift expression must have unsigned + // integer type or be an untyped constant that can be converted to + // unsigned integer type." + switch { + case isInteger(y.typ) && isUnsigned(y.typ): + // nothing to do + case isUntyped(y.typ): + check.convertUntyped(y, Typ[UntypedInt]) + if y.mode == invalid { + x.mode = invalid + return + } + default: + check.invalidOp(y.pos(), "shift count %s must be unsigned integer", y) + x.mode = invalid + return + } + + if x.mode == constant { + if y.mode == constant { + // rhs must be within reasonable bounds + const stupidShift = 1023 - 1 + 52 // so we can express smallestFloat64 + s, ok := exact.Uint64Val(y.val) + if !ok || s > stupidShift { + check.invalidOp(y.pos(), "stupid shift count %s", y) + x.mode = invalid + return + } + // The lhs is representable as an integer but may not be an integer + // (e.g., 2.0, an untyped float) - this can only happen for untyped + // non-integer numeric constants. Correct the type so that the shift + // result is of integer type. + if !isInteger(x.typ) { + x.typ = Typ[UntypedInt] + } + x.val = exact.Shift(x.val, op, uint(s)) + return + } + + // non-constant shift with constant lhs + if untypedx { + // spec: "If the left operand of a non-constant shift + // expression is an untyped constant, the type of the + // constant is what it would be if the shift expression + // were replaced by its left operand alone.". + // + // Delay operand checking until we know the final type: + // The lhs expression must be in the untyped map, mark + // the entry as lhs shift operand. + info, found := check.untyped[x.expr] + assert(found) + info.isLhs = true + check.untyped[x.expr] = info + // keep x's type + x.mode = value + return + } + } + + // constant rhs must be >= 0 + if y.mode == constant && exact.Sign(y.val) < 0 { + check.invalidOp(y.pos(), "shift count %s must not be negative", y) + } + + // non-constant shift - lhs must be an integer + if !isInteger(x.typ) { + check.invalidOp(x.pos(), "shifted operand %s must be integer", x) + x.mode = invalid + return + } + + x.mode = value +} + +var binaryOpPredicates = opPredicates{ + token.ADD: func(typ Type) bool { return isNumeric(typ) || isString(typ) }, + token.SUB: isNumeric, + token.MUL: isNumeric, + token.QUO: isNumeric, + token.REM: isInteger, + + token.AND: isInteger, + token.OR: isInteger, + token.XOR: isInteger, + token.AND_NOT: isInteger, + + token.LAND: isBoolean, + token.LOR: isBoolean, +} + +func (check *checker) binary(x *operand, lhs, rhs ast.Expr, op token.Token) { + var y operand + + check.expr(x, lhs) + check.expr(&y, rhs) + + if x.mode == invalid { + return + } + if y.mode == invalid { + x.mode = invalid + x.expr = y.expr + return + } + + if isShift(op) { + check.shift(x, &y, op) + return + } + + check.convertUntyped(x, y.typ) + if x.mode == invalid { + return + } + check.convertUntyped(&y, x.typ) + if y.mode == invalid { + x.mode = invalid + return + } + + if isComparison(op) { + check.comparison(x, &y, op) + return + } + + if !Identical(x.typ, y.typ) { + // only report an error if we have valid types + // (otherwise we had an error reported elsewhere already) + if x.typ != Typ[Invalid] && y.typ != Typ[Invalid] { + check.invalidOp(x.pos(), "mismatched types %s and %s", x.typ, y.typ) + } + x.mode = invalid + return + } + + if !check.op(binaryOpPredicates, x, op) { + x.mode = invalid + return + } + + if (op == token.QUO || op == token.REM) && (x.mode == constant || isInteger(x.typ)) && y.mode == constant && exact.Sign(y.val) == 0 { + check.invalidOp(y.pos(), "division by zero") + x.mode = invalid + return + } + + if x.mode == constant && y.mode == constant { + typ := x.typ.Underlying().(*Basic) + // force integer division of integer operands + if op == token.QUO && isInteger(typ) { + op = token.QUO_ASSIGN + } + x.val = exact.BinaryOp(x.val, op, y.val) + // Typed constants must be representable in + // their type after each constant operation. + if isTyped(typ) { + check.representable(x, typ) + } + return + } + + x.mode = value + // x.typ is unchanged +} + +// index checks an index expression for validity. +// If max >= 0, it is the upper bound for index. +// If index is valid and the result i >= 0, then i is the constant value of index. +func (check *checker) index(index ast.Expr, max int64) (i int64, valid bool) { + var x operand + check.expr(&x, index) + if x.mode == invalid { + return + } + + // an untyped constant must be representable as Int + check.convertUntyped(&x, Typ[Int]) + if x.mode == invalid { + return + } + + // the index must be of integer type + if !isInteger(x.typ) { + check.invalidArg(x.pos(), "index %s must be integer", &x) + return + } + + // a constant index i must be in bounds + if x.mode == constant { + if exact.Sign(x.val) < 0 { + check.invalidArg(x.pos(), "index %s must not be negative", &x) + return + } + i, valid = exact.Int64Val(x.val) + if !valid || max >= 0 && i >= max { + check.errorf(x.pos(), "index %s is out of bounds", &x) + return i, false + } + // 0 <= i [ && i < max ] + return i, true + } + + return -1, true +} + +// indexElts checks the elements (elts) of an array or slice composite literal +// against the literal's element type (typ), and the element indices against +// the literal length if known (length >= 0). It returns the length of the +// literal (maximum index value + 1). +// +func (check *checker) indexedElts(elts []ast.Expr, typ Type, length int64) int64 { + visited := make(map[int64]bool, len(elts)) + var index, max int64 + for _, e := range elts { + // determine and check index + validIndex := false + eval := e + if kv, _ := e.(*ast.KeyValueExpr); kv != nil { + if i, ok := check.index(kv.Key, length); ok { + if i >= 0 { + index = i + validIndex = true + } else { + check.errorf(e.Pos(), "index %s must be integer constant", kv.Key) + } + } + eval = kv.Value + } else if length >= 0 && index >= length { + check.errorf(e.Pos(), "index %d is out of bounds (>= %d)", index, length) + } else { + validIndex = true + } + + // if we have a valid index, check for duplicate entries + if validIndex { + if visited[index] { + check.errorf(e.Pos(), "duplicate index %d in array or slice literal", index) + } + visited[index] = true + } + index++ + if index > max { + max = index + } + + // check element against composite literal element type + var x operand + check.exprWithHint(&x, eval, typ) + if !check.assignment(&x, typ) && x.mode != invalid { + check.errorf(x.pos(), "cannot use %s as %s value in array or slice literal", &x, typ) + } + } + return max +} + +// exprKind describes the kind of an expression; the kind +// determines if an expression is valid in 'statement context'. +type exprKind int + +const ( + conversion exprKind = iota + expression + statement +) + +// rawExpr typechecks expression e and initializes x with the expression +// value or type. If an error occurred, x.mode is set to invalid. +// If hint != nil, it is the type of a composite literal element. +// +func (check *checker) rawExpr(x *operand, e ast.Expr, hint Type) exprKind { + if trace { + check.trace(e.Pos(), "%s", e) + check.indent++ + defer func() { + check.indent-- + check.trace(e.Pos(), "=> %s", x) + }() + } + + kind := check.exprInternal(x, e, hint) + + // convert x into a user-friendly set of values + var typ Type + var val exact.Value + switch x.mode { + case invalid: + typ = Typ[Invalid] + case novalue: + typ = (*Tuple)(nil) + case constant: + typ = x.typ + val = x.val + default: + typ = x.typ + } + assert(x.expr != nil && typ != nil) + + if isUntyped(typ) { + // delay type and value recording until we know the type + // or until the end of type checking + check.rememberUntyped(x.expr, false, typ.(*Basic), val) + } else { + check.recordTypeAndValue(e, typ, val) + } + + return kind +} + +// exprInternal contains the core of type checking of expressions. +// Must only be called by rawExpr. +// +func (check *checker) exprInternal(x *operand, e ast.Expr, hint Type) exprKind { + // make sure x has a valid state in case of bailout + // (was issue 5770) + x.mode = invalid + x.typ = Typ[Invalid] + + switch e := e.(type) { + case *ast.BadExpr: + goto Error // error was reported before + + case *ast.Ident: + check.ident(x, e, nil, nil) + + case *ast.Ellipsis: + // ellipses are handled explicitly where they are legal + // (array composite literals and parameter lists) + check.error(e.Pos(), "invalid use of '...'") + goto Error + + case *ast.BasicLit: + x.setConst(e.Kind, e.Value) + if x.mode == invalid { + check.invalidAST(e.Pos(), "invalid literal %v", e.Value) + goto Error + } + + case *ast.FuncLit: + if sig, ok := check.typ(e.Type).(*Signature); ok { + // Anonymous functions are considered part of the + // init expression/func declaration which contains + // them: use existing package-level declaration info. + check.funcBody(check.decl, "", sig, e.Body) + x.mode = value + x.typ = sig + } else { + check.invalidAST(e.Pos(), "invalid function literal %s", e) + goto Error + } + + case *ast.CompositeLit: + typ := hint + openArray := false + if e.Type != nil { + // [...]T array types may only appear with composite literals. + // Check for them here so we don't have to handle ... in general. + typ = nil + if atyp, _ := e.Type.(*ast.ArrayType); atyp != nil && atyp.Len != nil { + if ellip, _ := atyp.Len.(*ast.Ellipsis); ellip != nil && ellip.Elt == nil { + // We have an "open" [...]T array type. + // Create a new ArrayType with unknown length (-1) + // and finish setting it up after analyzing the literal. + typ = &Array{len: -1, elem: check.typ(atyp.Elt)} + openArray = true + } + } + if typ == nil { + typ = check.typ(e.Type) + } + } + if typ == nil { + check.error(e.Pos(), "missing type in composite literal") + goto Error + } + + switch typ, _ := deref(typ); utyp := typ.Underlying().(type) { + case *Struct: + if len(e.Elts) == 0 { + break + } + fields := utyp.fields + if _, ok := e.Elts[0].(*ast.KeyValueExpr); ok { + // all elements must have keys + visited := make([]bool, len(fields)) + for _, e := range e.Elts { + kv, _ := e.(*ast.KeyValueExpr) + if kv == nil { + check.error(e.Pos(), "mixture of field:value and value elements in struct literal") + continue + } + key, _ := kv.Key.(*ast.Ident) + if key == nil { + check.errorf(kv.Pos(), "invalid field name %s in struct literal", kv.Key) + continue + } + i := fieldIndex(utyp.fields, check.pkg, key.Name) + if i < 0 { + check.errorf(kv.Pos(), "unknown field %s in struct literal", key.Name) + continue + } + fld := fields[i] + check.recordUse(key, fld) + // 0 <= i < len(fields) + if visited[i] { + check.errorf(kv.Pos(), "duplicate field name %s in struct literal", key.Name) + continue + } + visited[i] = true + check.expr(x, kv.Value) + etyp := fld.typ + if !check.assignment(x, etyp) { + if x.mode != invalid { + check.errorf(x.pos(), "cannot use %s as %s value in struct literal", x, etyp) + } + continue + } + } + } else { + // no element must have a key + for i, e := range e.Elts { + if kv, _ := e.(*ast.KeyValueExpr); kv != nil { + check.error(kv.Pos(), "mixture of field:value and value elements in struct literal") + continue + } + check.expr(x, e) + if i >= len(fields) { + check.error(x.pos(), "too many values in struct literal") + break // cannot continue + } + // i < len(fields) + etyp := fields[i].typ + if !check.assignment(x, etyp) { + if x.mode != invalid { + check.errorf(x.pos(), "cannot use %s as %s value in struct literal", x, etyp) + } + continue + } + } + if len(e.Elts) < len(fields) { + check.error(e.Rbrace, "too few values in struct literal") + // ok to continue + } + } + + case *Array: + n := check.indexedElts(e.Elts, utyp.elem, utyp.len) + // if we have an "open" [...]T array, set the length now that we know it + if openArray { + utyp.len = n + } + + case *Slice: + check.indexedElts(e.Elts, utyp.elem, -1) + + case *Map: + visited := make(map[interface{}]bool, len(e.Elts)) + for _, e := range e.Elts { + kv, _ := e.(*ast.KeyValueExpr) + if kv == nil { + check.error(e.Pos(), "missing key in map literal") + continue + } + check.expr(x, kv.Key) + if !check.assignment(x, utyp.key) { + if x.mode != invalid { + check.errorf(x.pos(), "cannot use %s as %s key in map literal", x, utyp.key) + } + continue + } + if x.mode == constant { + if visited[x.val] { + check.errorf(x.pos(), "duplicate key %s in map literal", x.val) + continue + } + visited[x.val] = true + } + check.exprWithHint(x, kv.Value, utyp.elem) + if !check.assignment(x, utyp.elem) { + if x.mode != invalid { + check.errorf(x.pos(), "cannot use %s as %s value in map literal", x, utyp.elem) + } + continue + } + } + + default: + check.errorf(e.Pos(), "invalid composite literal type %s", typ) + goto Error + } + + x.mode = value + x.typ = typ + + case *ast.ParenExpr: + kind := check.rawExpr(x, e.X, nil) + x.expr = e + return kind + + case *ast.SelectorExpr: + check.selector(x, e) + + case *ast.IndexExpr: + check.expr(x, e.X) + if x.mode == invalid { + goto Error + } + + valid := false + length := int64(-1) // valid if >= 0 + switch typ := x.typ.Underlying().(type) { + case *Basic: + if isString(typ) { + valid = true + if x.mode == constant { + length = int64(len(exact.StringVal(x.val))) + } + // an indexed string always yields a byte value + // (not a constant) even if the string and the + // index are constant + x.mode = value + x.typ = UniverseByte // use 'byte' name + } + + case *Array: + valid = true + length = typ.len + if x.mode != variable { + x.mode = value + } + x.typ = typ.elem + + case *Pointer: + if typ, _ := typ.base.Underlying().(*Array); typ != nil { + valid = true + length = typ.len + x.mode = variable + x.typ = typ.elem + } + + case *Slice: + valid = true + x.mode = variable + x.typ = typ.elem + + case *Map: + var key operand + check.expr(&key, e.Index) + if !check.assignment(&key, typ.key) { + if key.mode != invalid { + check.invalidOp(key.pos(), "cannot use %s as map index of type %s", &key, typ.key) + } + goto Error + } + x.mode = mapindex + x.typ = typ.elem + x.expr = e + return expression + } + + if !valid { + check.invalidOp(x.pos(), "cannot index %s", x) + goto Error + } + + if e.Index == nil { + check.invalidAST(e.Pos(), "missing index for %s", x) + goto Error + } + + check.index(e.Index, length) + // ok to continue + + case *ast.SliceExpr: + check.expr(x, e.X) + if x.mode == invalid { + goto Error + } + + valid := false + length := int64(-1) // valid if >= 0 + switch typ := x.typ.Underlying().(type) { + case *Basic: + if isString(typ) { + if slice3(e) { + check.invalidOp(x.pos(), "3-index slice of string") + goto Error + } + valid = true + if x.mode == constant { + length = int64(len(exact.StringVal(x.val))) + } + // spec: "For untyped string operands the result + // is a non-constant value of type string." + if typ.kind == UntypedString { + x.typ = Typ[String] + } + } + + case *Array: + valid = true + length = typ.len + if x.mode != variable { + check.invalidOp(x.pos(), "cannot slice %s (value not addressable)", x) + goto Error + } + x.typ = &Slice{elem: typ.elem} + + case *Pointer: + if typ, _ := typ.base.Underlying().(*Array); typ != nil { + valid = true + length = typ.len + x.typ = &Slice{elem: typ.elem} + } + + case *Slice: + valid = true + // x.typ doesn't change + } + + if !valid { + check.invalidOp(x.pos(), "cannot slice %s", x) + goto Error + } + + x.mode = value + + // spec: "Only the first index may be omitted; it defaults to 0." + if slice3(e) && (e.High == nil || sliceMax(e) == nil) { + check.error(e.Rbrack, "2nd and 3rd index required in 3-index slice") + goto Error + } + + // check indices + var ind [3]int64 + for i, expr := range []ast.Expr{e.Low, e.High, sliceMax(e)} { + x := int64(-1) + switch { + case expr != nil: + // The "capacity" is only known statically for strings, arrays, + // and pointers to arrays, and it is the same as the length for + // those types. + max := int64(-1) + if length >= 0 { + max = length + 1 + } + if t, ok := check.index(expr, max); ok && t >= 0 { + x = t + } + case i == 0: + // default is 0 for the first index + x = 0 + case length >= 0: + // default is length (== capacity) otherwise + x = length + } + ind[i] = x + } + + // constant indices must be in range + // (check.index already checks that existing indices >= 0) + L: + for i, x := range ind[:len(ind)-1] { + if x > 0 { + for _, y := range ind[i+1:] { + if y >= 0 && x > y { + check.errorf(e.Rbrack, "invalid slice indices: %d > %d", x, y) + break L // only report one error, ok to continue + } + } + } + } + + case *ast.TypeAssertExpr: + check.expr(x, e.X) + if x.mode == invalid { + goto Error + } + xtyp, _ := x.typ.Underlying().(*Interface) + if xtyp == nil { + check.invalidOp(x.pos(), "%s is not an interface", x) + goto Error + } + // x.(type) expressions are handled explicitly in type switches + if e.Type == nil { + check.invalidAST(e.Pos(), "use of .(type) outside type switch") + goto Error + } + T := check.typ(e.Type) + if T == Typ[Invalid] { + goto Error + } + check.typeAssertion(x.pos(), x, xtyp, T) + x.mode = commaok + x.typ = T + + case *ast.CallExpr: + return check.call(x, e) + + case *ast.StarExpr: + check.exprOrType(x, e.X) + switch x.mode { + case invalid: + goto Error + case typexpr: + x.typ = &Pointer{base: x.typ} + default: + if typ, ok := x.typ.Underlying().(*Pointer); ok { + x.mode = variable + x.typ = typ.base + } else { + check.invalidOp(x.pos(), "cannot indirect %s", x) + goto Error + } + } + + case *ast.UnaryExpr: + check.expr(x, e.X) + if x.mode == invalid { + goto Error + } + check.unary(x, e.Op) + if x.mode == invalid { + goto Error + } + if e.Op == token.ARROW { + x.expr = e + return statement // receive operations may appear in statement context + } + + case *ast.BinaryExpr: + check.binary(x, e.X, e.Y, e.Op) + if x.mode == invalid { + goto Error + } + + case *ast.KeyValueExpr: + // key:value expressions are handled in composite literals + check.invalidAST(e.Pos(), "no key:value expected") + goto Error + + case *ast.ArrayType, *ast.StructType, *ast.FuncType, + *ast.InterfaceType, *ast.MapType, *ast.ChanType: + x.mode = typexpr + x.typ = check.typ(e) + // Note: rawExpr (caller of exprInternal) will call check.recordTypeAndValue + // even though check.typ has already called it. This is fine as both + // times the same expression and type are recorded. It is also not a + // performance issue because we only reach here for composite literal + // types, which are comparatively rare. + + default: + panic(fmt.Sprintf("%s: unknown expression type %T", check.fset.Position(e.Pos()), e)) + } + + // everything went well + x.expr = e + return expression + +Error: + x.mode = invalid + x.expr = e + return statement // avoid follow-up errors +} + +// typeAssertion checks that x.(T) is legal; xtyp must be the type of x. +func (check *checker) typeAssertion(pos token.Pos, x *operand, xtyp *Interface, T Type) { + method, wrongType := MissingMethod(T, xtyp, false) + if method == nil { + return + } + var msg string + if wrongType { + msg = "wrong type for method" + } else { + msg = "missing method" + } + check.errorf(pos, "%s cannot have dynamic type %s (%s %s)", x, T, msg, method.name) +} + +// expr typechecks expression e and initializes x with the expression value. +// If an error occurred, x.mode is set to invalid. +// +func (check *checker) expr(x *operand, e ast.Expr) { + check.rawExpr(x, e, nil) + var msg string + switch x.mode { + default: + return + case novalue: + msg = "used as value" + case builtin: + msg = "must be called" + case typexpr: + msg = "is not an expression" + } + check.errorf(x.pos(), "%s %s", x, msg) + x.mode = invalid +} + +// exprWithHint typechecks expression e and initializes x with the expression value. +// If an error occurred, x.mode is set to invalid. +// If hint != nil, it is the type of a composite literal element. +// +func (check *checker) exprWithHint(x *operand, e ast.Expr, hint Type) { + assert(hint != nil) + check.rawExpr(x, e, hint) + var msg string + switch x.mode { + default: + return + case novalue: + msg = "used as value" + case builtin: + msg = "must be called" + case typexpr: + msg = "is not an expression" + } + check.errorf(x.pos(), "%s %s", x, msg) + x.mode = invalid +} + +// exprOrType typechecks expression or type e and initializes x with the expression value or type. +// If an error occurred, x.mode is set to invalid. +// +func (check *checker) exprOrType(x *operand, e ast.Expr) { + check.rawExpr(x, e, nil) + if x.mode == novalue { + check.errorf(x.pos(), "%s used as value or type", x) + x.mode = invalid + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/exprstring.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/exprstring.go new file mode 100644 index 00000000..370bdf35 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/exprstring.go @@ -0,0 +1,220 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements printing of expressions. + +package types + +import ( + "bytes" + "go/ast" +) + +// ExprString returns the (possibly simplified) string representation for x. +func ExprString(x ast.Expr) string { + var buf bytes.Buffer + WriteExpr(&buf, x) + return buf.String() +} + +// WriteExpr writes the (possibly simplified) string representation for x to buf. +func WriteExpr(buf *bytes.Buffer, x ast.Expr) { + // The AST preserves source-level parentheses so there is + // no need to introduce them here to correct for different + // operator precedences. (This assumes that the AST was + // generated by a Go parser.) + + switch x := x.(type) { + default: + buf.WriteString("(bad expr)") // nil, ast.BadExpr, ast.KeyValueExpr + + case *ast.Ident: + buf.WriteString(x.Name) + + case *ast.Ellipsis: + buf.WriteString("...") + if x.Elt != nil { + WriteExpr(buf, x.Elt) + } + + case *ast.BasicLit: + buf.WriteString(x.Value) + + case *ast.FuncLit: + buf.WriteByte('(') + WriteExpr(buf, x.Type) + buf.WriteString(" literal)") // simplified + + case *ast.CompositeLit: + buf.WriteByte('(') + WriteExpr(buf, x.Type) + buf.WriteString(" literal)") // simplified + + case *ast.ParenExpr: + buf.WriteByte('(') + WriteExpr(buf, x.X) + buf.WriteByte(')') + + case *ast.SelectorExpr: + WriteExpr(buf, x.X) + buf.WriteByte('.') + buf.WriteString(x.Sel.Name) + + case *ast.IndexExpr: + WriteExpr(buf, x.X) + buf.WriteByte('[') + WriteExpr(buf, x.Index) + buf.WriteByte(']') + + case *ast.SliceExpr: + WriteExpr(buf, x.X) + buf.WriteByte('[') + if x.Low != nil { + WriteExpr(buf, x.Low) + } + buf.WriteByte(':') + if x.High != nil { + WriteExpr(buf, x.High) + } + if x.Slice3 { + buf.WriteByte(':') + if x.Max != nil { + WriteExpr(buf, x.Max) + } + } + buf.WriteByte(']') + + case *ast.TypeAssertExpr: + WriteExpr(buf, x.X) + buf.WriteString(".(") + WriteExpr(buf, x.Type) + buf.WriteByte(')') + + case *ast.CallExpr: + WriteExpr(buf, x.Fun) + buf.WriteByte('(') + for i, arg := range x.Args { + if i > 0 { + buf.WriteString(", ") + } + WriteExpr(buf, arg) + } + if x.Ellipsis.IsValid() { + buf.WriteString("...") + } + buf.WriteByte(')') + + case *ast.StarExpr: + buf.WriteByte('*') + WriteExpr(buf, x.X) + + case *ast.UnaryExpr: + buf.WriteString(x.Op.String()) + WriteExpr(buf, x.X) + + case *ast.BinaryExpr: + WriteExpr(buf, x.X) + buf.WriteByte(' ') + buf.WriteString(x.Op.String()) + buf.WriteByte(' ') + WriteExpr(buf, x.Y) + + case *ast.ArrayType: + buf.WriteByte('[') + if x.Len != nil { + WriteExpr(buf, x.Len) + } + buf.WriteByte(']') + WriteExpr(buf, x.Elt) + + case *ast.StructType: + buf.WriteString("struct{") + writeFieldList(buf, x.Fields, "; ", false) + buf.WriteByte('}') + + case *ast.FuncType: + buf.WriteString("func") + writeSigExpr(buf, x) + + case *ast.InterfaceType: + buf.WriteString("interface{") + writeFieldList(buf, x.Methods, "; ", true) + buf.WriteByte('}') + + case *ast.MapType: + buf.WriteString("map[") + WriteExpr(buf, x.Key) + buf.WriteByte(']') + WriteExpr(buf, x.Value) + + case *ast.ChanType: + var s string + switch x.Dir { + case ast.SEND: + s = "chan<- " + case ast.RECV: + s = "<-chan " + default: + s = "chan " + } + buf.WriteString(s) + WriteExpr(buf, x.Value) + } +} + +func writeSigExpr(buf *bytes.Buffer, sig *ast.FuncType) { + buf.WriteByte('(') + writeFieldList(buf, sig.Params, ", ", false) + buf.WriteByte(')') + + res := sig.Results + n := res.NumFields() + if n == 0 { + // no result + return + } + + buf.WriteByte(' ') + if n == 1 && len(res.List[0].Names) == 0 { + // single unnamed result + WriteExpr(buf, res.List[0].Type) + return + } + + // multiple or named result(s) + buf.WriteByte('(') + writeFieldList(buf, res, ", ", false) + buf.WriteByte(')') +} + +func writeFieldList(buf *bytes.Buffer, fields *ast.FieldList, sep string, iface bool) { + for i, f := range fields.List { + if i > 0 { + buf.WriteString(sep) + } + + // field list names + for i, name := range f.Names { + if i > 0 { + buf.WriteString(", ") + } + buf.WriteString(name.Name) + } + + // types of interface methods consist of signatures only + if sig, _ := f.Type.(*ast.FuncType); sig != nil && iface { + writeSigExpr(buf, sig) + continue + } + + // named fields are separated with a blank from the field type + if len(f.Names) > 0 { + buf.WriteByte(' ') + } + + WriteExpr(buf, f.Type) + + // ignore tag + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/exprstring_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/exprstring_test.go new file mode 100644 index 00000000..86067154 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/exprstring_test.go @@ -0,0 +1,94 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "go/parser" + "testing" + + . "code.google.com/p/go.tools/go/types" +) + +var testExprs = []testEntry{ + // basic type literals + dup("x"), + dup("true"), + dup("42"), + dup("3.1415"), + dup("2.71828i"), + dup(`'a'`), + dup(`"foo"`), + dup("`bar`"), + + // func and composite literals + {"func(){}", "(func() literal)"}, + {"func(x int) complex128 {}", "(func(x int) complex128 literal)"}, + {"[]int{1, 2, 3}", "([]int literal)"}, + + // non-type expressions + dup("(x)"), + dup("x.f"), + dup("a[i]"), + + dup("s[:]"), + dup("s[i:]"), + dup("s[:j]"), + dup("s[i:j]"), + dup("s[:j:k]"), + dup("s[i:j:k]"), + + dup("x.(T)"), + + dup("x.([10]int)"), + dup("x.([...]int)"), + + dup("x.(struct{})"), + dup("x.(struct{x int; y, z float32; E})"), + + dup("x.(func())"), + dup("x.(func(x int))"), + dup("x.(func() int)"), + dup("x.(func(x, y int, z float32) (r int))"), + dup("x.(func(a, b, c int))"), + dup("x.(func(x ...T))"), + + dup("x.(interface{})"), + dup("x.(interface{m(); n(x int); E})"), + dup("x.(interface{m(); n(x int) T; E; F})"), + + dup("x.(map[K]V)"), + + dup("x.(chan E)"), + dup("x.(<-chan E)"), + dup("x.(chan<- chan int)"), + dup("x.(chan<- <-chan int)"), + dup("x.(<-chan chan int)"), + dup("x.(chan (<-chan int))"), + + dup("f()"), + dup("f(x)"), + dup("int(x)"), + dup("f(x, x + y)"), + dup("f(s...)"), + dup("f(a, s...)"), + + dup("*x"), + dup("&x"), + dup("x + y"), + dup("x + y << (2 * s)"), +} + +func TestExprString(t *testing.T) { + for _, test := range testExprs { + x, err := parser.ParseExpr(test.src) + if err != nil { + t.Errorf("%s: %s", test.src, err) + continue + } + if got := ExprString(x); got != test.str { + t.Errorf("%s: got %s, want %s", test.src, got, test.str) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/go11.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/go11.go new file mode 100644 index 00000000..cf41cabe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/go11.go @@ -0,0 +1,17 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !go1.2 + +package types + +import "go/ast" + +func slice3(x *ast.SliceExpr) bool { + return false +} + +func sliceMax(x *ast.SliceExpr) ast.Expr { + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/go12.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/go12.go new file mode 100644 index 00000000..20174421 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/go12.go @@ -0,0 +1,17 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.2 + +package types + +import "go/ast" + +func slice3(x *ast.SliceExpr) bool { + return x.Slice3 +} + +func sliceMax(x *ast.SliceExpr) ast.Expr { + return x.Max +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/hilbert_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/hilbert_test.go new file mode 100644 index 00000000..298d1ca7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/hilbert_test.go @@ -0,0 +1,232 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "bytes" + "flag" + "fmt" + "go/ast" + "go/parser" + "go/token" + "io/ioutil" + "testing" + + . "code.google.com/p/go.tools/go/types" +) + +var ( + H = flag.Int("H", 5, "Hilbert matrix size") + out = flag.String("out", "", "write generated program to out") +) + +func TestHilbert(t *testing.T) { + // generate source + src := program(*H, *out) + if *out != "" { + ioutil.WriteFile(*out, src, 0666) + return + } + + // parse source + fset := token.NewFileSet() + f, err := parser.ParseFile(fset, "hilbert.go", src, 0) + if err != nil { + t.Fatal(err) + } + + // type-check file + DefPredeclaredTestFuncs() // define assert built-in + _, err = Check(f.Name.Name, fset, []*ast.File{f}) + if err != nil { + t.Fatal(err) + } +} + +func program(n int, out string) []byte { + var g gen + + g.p(`// WARNING: GENERATED FILE - DO NOT MODIFY MANUALLY! +// (To generate, in go/types directory: go test -run=Hilbert -H=%d -out=%q) + +// This program tests arbitrary precision constant arithmetic +// by generating the constant elements of a Hilbert matrix H, +// its inverse I, and the product P = H*I. The product should +// be the identity matrix. +package main + +func main() { + if !ok { + printProduct() + return + } + println("PASS") +} + +`, n, out) + g.hilbert(n) + g.inverse(n) + g.product(n) + g.verify(n) + g.printProduct(n) + g.binomials(2*n - 1) + g.factorials(2*n - 1) + + return g.Bytes() +} + +type gen struct { + bytes.Buffer +} + +func (g *gen) p(format string, args ...interface{}) { + fmt.Fprintf(&g.Buffer, format, args...) +} + +func (g *gen) hilbert(n int) { + g.p(`// Hilbert matrix, n = %d +const ( +`, n) + for i := 0; i < n; i++ { + g.p("\t") + for j := 0; j < n; j++ { + if j > 0 { + g.p(", ") + } + g.p("h%d_%d", i, j) + } + if i == 0 { + g.p(" = ") + for j := 0; j < n; j++ { + if j > 0 { + g.p(", ") + } + g.p("1.0/(iota + %d)", j+1) + } + } + g.p("\n") + } + g.p(")\n\n") +} + +func (g *gen) inverse(n int) { + g.p(`// Inverse Hilbert matrix +const ( +`) + for i := 0; i < n; i++ { + for j := 0; j < n; j++ { + s := "+" + if (i+j)&1 != 0 { + s = "-" + } + g.p("\ti%d_%d = %s%d * b%d_%d * b%d_%d * b%d_%d * b%d_%d\n", + i, j, s, i+j+1, n+i, n-j-1, n+j, n-i-1, i+j, i, i+j, i) + } + g.p("\n") + } + g.p(")\n\n") +} + +func (g *gen) product(n int) { + g.p(`// Product matrix +const ( +`) + for i := 0; i < n; i++ { + for j := 0; j < n; j++ { + g.p("\tp%d_%d = ", i, j) + for k := 0; k < n; k++ { + if k > 0 { + g.p(" + ") + } + g.p("h%d_%d*i%d_%d", i, k, k, j) + } + g.p("\n") + } + g.p("\n") + } + g.p(")\n\n") +} + +func (g *gen) verify(n int) { + g.p(`// Verify that product is the identity matrix +const ok = +`) + for i := 0; i < n; i++ { + for j := 0; j < n; j++ { + if j == 0 { + g.p("\t") + } else { + g.p(" && ") + } + v := 0 + if i == j { + v = 1 + } + g.p("p%d_%d == %d", i, j, v) + } + g.p(" &&\n") + } + g.p("\ttrue\n\n") + + // verify ok at type-check time + if *out == "" { + g.p("const _ = assert(ok)\n\n") + } +} + +func (g *gen) printProduct(n int) { + g.p("func printProduct() {\n") + for i := 0; i < n; i++ { + g.p("\tprintln(") + for j := 0; j < n; j++ { + if j > 0 { + g.p(", ") + } + g.p("p%d_%d", i, j) + } + g.p(")\n") + } + g.p("}\n\n") +} + +func (g *gen) mulRange(a, b int) { + if a > b { + g.p("1") + return + } + for i := a; i <= b; i++ { + if i > a { + g.p("*") + } + g.p("%d", i) + } +} + +func (g *gen) binomials(n int) { + g.p(`// Binomials +const ( +`) + for j := 0; j <= n; j++ { + if j > 0 { + g.p("\n") + } + for k := 0; k <= j; k++ { + g.p("\tb%d_%d = f%d / (f%d*f%d)\n", j, k, j, k, j-k) + } + } + g.p(")\n\n") +} + +func (g *gen) factorials(n int) { + g.p(`// Factorials +const ( + f0 = 1 + f1 = 1 +`) + for i := 2; i <= n; i++ { + g.p("\tf%d = f%d * %d\n", i, i-1, i) + } + g.p(")\n\n") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/issues_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/issues_test.go new file mode 100644 index 00000000..95c6f675 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/issues_test.go @@ -0,0 +1,205 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements tests for various issues. + +package types_test + +import ( + "fmt" + "go/ast" + "go/parser" + "sort" + "strings" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +func TestIssue5770(t *testing.T) { + src := `package p; type S struct{T}` + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + t.Fatal(err) + } + + _, err = Check(f.Name.Name, fset, []*ast.File{f}) // do not crash + want := "undeclared name: T" + if err == nil || !strings.Contains(err.Error(), want) { + t.Errorf("got: %v; want: %s", err, want) + } +} + +func TestIssue5849(t *testing.T) { + src := ` +package p +var ( + s uint + _ = uint8(8) + _ = uint16(16) << s + _ = uint32(32 << s) + _ = uint64(64 << s + s) + _ = (interface{})("foo") + _ = (interface{})(nil) +)` + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + t.Fatal(err) + } + + var conf Config + types := make(map[ast.Expr]TypeAndValue) + _, err = conf.Check(f.Name.Name, fset, []*ast.File{f}, &Info{Types: types}) + if err != nil { + t.Fatal(err) + } + + for x, tv := range types { + var want Type + switch x := x.(type) { + case *ast.BasicLit: + switch x.Value { + case `8`: + want = Typ[Uint8] + case `16`: + want = Typ[Uint16] + case `32`: + want = Typ[Uint32] + case `64`: + want = Typ[Uint] // because of "+ s", s is of type uint + case `"foo"`: + want = Typ[String] + } + case *ast.Ident: + if x.Name == "nil" { + want = Typ[UntypedNil] + } + } + if want != nil && !Identical(tv.Type, want) { + t.Errorf("got %s; want %s", tv.Type, want) + } + } +} + +func TestIssue6413(t *testing.T) { + src := ` +package p +func f() int { + defer f() + go f() + return 0 +} +` + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + t.Fatal(err) + } + + var conf Config + types := make(map[ast.Expr]TypeAndValue) + _, err = conf.Check(f.Name.Name, fset, []*ast.File{f}, &Info{Types: types}) + if err != nil { + t.Fatal(err) + } + + want := Typ[Int] + n := 0 + for x, tv := range types { + if _, ok := x.(*ast.CallExpr); ok { + if tv.Type != want { + t.Errorf("%s: got %s; want %s", fset.Position(x.Pos()), tv.Type, want) + } + n++ + } + } + + if n != 2 { + t.Errorf("got %d CallExprs; want 2", n) + } +} + +func TestIssue7245(t *testing.T) { + src := ` +package p +func (T) m() (res bool) { return } +type T struct{} // receiver type after method declaration +` + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + t.Fatal(err) + } + + var conf Config + defs := make(map[*ast.Ident]Object) + _, err = conf.Check(f.Name.Name, fset, []*ast.File{f}, &Info{Defs: defs}) + if err != nil { + t.Fatal(err) + } + + m := f.Decls[0].(*ast.FuncDecl) + res1 := defs[m.Name].(*Func).Type().(*Signature).Results().At(0) + res2 := defs[m.Type.Results.List[0].Names[0]].(*Var) + + if res1 != res2 { + t.Errorf("got %s (%p) != %s (%p)", res1, res2, res1, res2) + } +} + +// This tests that uses of existing vars on the LHS of an assignment +// are Uses, not Defs; and also that the (illegal) use of a non-var on +// the LHS of an assignment is a Use nonetheless. +func TestIssue7827(t *testing.T) { + const src = ` +package p +func _() { + const w = 1 // defs w + x, y := 2, 3 // defs x, y + w, x, z := 4, 5, 6 // uses w, x, defs z; error: cannot assign to w + _, _, _ = x, y, z // uses x, y, z +} +` + const want = `L3 defs func p._() +L4 defs const w untyped int +L5 defs var x int +L5 defs var y int +L6 defs var z int +L6 uses const w untyped int +L6 uses var x int +L7 uses var x int +L7 uses var y int +L7 uses var z int` + + f, err := parser.ParseFile(fset, "", src, 0) + if err != nil { + t.Fatal(err) + } + + // don't abort at the first error + conf := Config{Error: func(err error) { t.Log(err) }} + defs := make(map[*ast.Ident]Object) + uses := make(map[*ast.Ident]Object) + _, err = conf.Check(f.Name.Name, fset, []*ast.File{f}, &Info{Defs: defs, Uses: uses}) + if s := fmt.Sprint(err); !strings.HasSuffix(s, "cannot assign to w") { + t.Errorf("Check: unexpected error: %s", s) + } + + var facts []string + for id, obj := range defs { + if obj != nil { + fact := fmt.Sprintf("L%d defs %s", fset.Position(id.Pos()).Line, obj) + facts = append(facts, fact) + } + } + for id, obj := range uses { + fact := fmt.Sprintf("L%d uses %s", fset.Position(id.Pos()).Line, obj) + facts = append(facts, fact) + } + sort.Strings(facts) + + got := strings.Join(facts, "\n") + if got != want { + t.Errorf("Unexpected defs/uses\ngot:\n%s\nwant:\n%s", got, want) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/labels.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/labels.go new file mode 100644 index 00000000..ee89993a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/labels.go @@ -0,0 +1,268 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types + +import ( + "go/ast" + "go/token" +) + +// labels checks correct label use in body. +func (check *checker) labels(body *ast.BlockStmt) { + // set of all labels in this body + all := NewScope(nil, "label") + + fwdJumps := check.blockBranches(all, nil, nil, body.List) + + // If there are any forward jumps left, no label was found for + // the corresponding goto statements. Either those labels were + // never defined, or they are inside blocks and not reachable + // for the respective gotos. + for _, jmp := range fwdJumps { + var msg string + name := jmp.Label.Name + if alt := all.Lookup(name); alt != nil { + msg = "goto %s jumps into block" + alt.(*Label).used = true // avoid another error + } else { + msg = "label %s not declared" + } + check.errorf(jmp.Label.Pos(), msg, name) + } + + // spec: "It is illegal to define a label that is never used." + for _, obj := range all.elems { + if lbl := obj.(*Label); !lbl.used { + check.softErrorf(lbl.pos, "label %s declared but not used", lbl.name) + } + } +} + +// A block tracks label declarations in a block and its enclosing blocks. +type block struct { + parent *block // enclosing block + lstmt *ast.LabeledStmt // labeled statement to which this block belongs, or nil + labels map[string]*ast.LabeledStmt // allocated lazily +} + +// insert records a new label declaration for the current block. +// The label must not have been declared before in any block. +func (b *block) insert(s *ast.LabeledStmt) { + name := s.Label.Name + if debug { + assert(b.gotoTarget(name) == nil) + } + labels := b.labels + if labels == nil { + labels = make(map[string]*ast.LabeledStmt) + b.labels = labels + } + labels[name] = s +} + +// gotoTarget returns the labeled statement in the current +// or an enclosing block with the given label name, or nil. +func (b *block) gotoTarget(name string) *ast.LabeledStmt { + for s := b; s != nil; s = s.parent { + if t := s.labels[name]; t != nil { + return t + } + } + return nil +} + +// enclosingTarget returns the innermost enclosing labeled +// statement with the given label name, or nil. +func (b *block) enclosingTarget(name string) *ast.LabeledStmt { + for s := b; s != nil; s = s.parent { + if t := s.lstmt; t != nil && t.Label.Name == name { + return t + } + } + return nil +} + +// blockBranches processes a block's statement list and returns the set of outgoing forward jumps. +// all is the scope of all declared labels, parent the set of labels declared in the immediately +// enclosing block, and lstmt is the labeled statement this block is associated with (or nil). +func (check *checker) blockBranches(all *Scope, parent *block, lstmt *ast.LabeledStmt, list []ast.Stmt) []*ast.BranchStmt { + b := &block{parent: parent, lstmt: lstmt} + + var ( + varDeclPos token.Pos + fwdJumps, badJumps []*ast.BranchStmt + ) + + // All forward jumps jumping over a variable declaration are possibly + // invalid (they may still jump out of the block and be ok). + // recordVarDecl records them for the given position. + recordVarDecl := func(pos token.Pos) { + varDeclPos = pos + badJumps = append(badJumps[:0], fwdJumps...) // copy fwdJumps to badJumps + } + + jumpsOverVarDecl := func(jmp *ast.BranchStmt) bool { + if varDeclPos.IsValid() { + for _, bad := range badJumps { + if jmp == bad { + return true + } + } + } + return false + } + + blockBranches := func(lstmt *ast.LabeledStmt, list []ast.Stmt) { + // Unresolved forward jumps inside the nested block + // become forward jumps in the current block. + fwdJumps = append(fwdJumps, check.blockBranches(all, b, lstmt, list)...) + } + + var stmtBranches func(ast.Stmt) + stmtBranches = func(s ast.Stmt) { + switch s := s.(type) { + case *ast.DeclStmt: + if d, _ := s.Decl.(*ast.GenDecl); d != nil && d.Tok == token.VAR { + recordVarDecl(d.Pos()) + } + + case *ast.LabeledStmt: + // declare non-blank label + if name := s.Label.Name; name != "_" { + lbl := NewLabel(s.Label.Pos(), name) + if alt := all.Insert(lbl); alt != nil { + check.softErrorf(lbl.pos, "label %s already declared", name) + check.reportAltDecl(alt) + // ok to continue + } else { + b.insert(s) + check.recordDef(s.Label, lbl) + } + // resolve matching forward jumps and remove them from fwdJumps + i := 0 + for _, jmp := range fwdJumps { + if jmp.Label.Name == name { + // match + lbl.used = true + check.recordUse(jmp.Label, lbl) + if jumpsOverVarDecl(jmp) { + check.softErrorf( + jmp.Label.Pos(), + "goto %s jumps over variable declaration at line %d", + name, + check.fset.Position(varDeclPos).Line, + ) + // ok to continue + } + } else { + // no match - record new forward jump + fwdJumps[i] = jmp + i++ + } + } + fwdJumps = fwdJumps[:i] + lstmt = s + } + stmtBranches(s.Stmt) + + case *ast.BranchStmt: + if s.Label == nil { + return // checked in 1st pass (check.stmt) + } + + // determine and validate target + name := s.Label.Name + switch s.Tok { + case token.BREAK: + // spec: "If there is a label, it must be that of an enclosing + // "for", "switch", or "select" statement, and that is the one + // whose execution terminates." + valid := false + if t := b.enclosingTarget(name); t != nil { + switch t.Stmt.(type) { + case *ast.SwitchStmt, *ast.TypeSwitchStmt, *ast.SelectStmt, *ast.ForStmt, *ast.RangeStmt: + valid = true + } + } + if !valid { + check.errorf(s.Label.Pos(), "invalid break label %s", name) + return + } + + case token.CONTINUE: + // spec: "If there is a label, it must be that of an enclosing + // "for" statement, and that is the one whose execution advances." + valid := false + if t := b.enclosingTarget(name); t != nil { + switch t.Stmt.(type) { + case *ast.ForStmt, *ast.RangeStmt: + valid = true + } + } + if !valid { + check.errorf(s.Label.Pos(), "invalid continue label %s", name) + return + } + + case token.GOTO: + if b.gotoTarget(name) == nil { + // label may be declared later - add branch to forward jumps + fwdJumps = append(fwdJumps, s) + return + } + + default: + check.invalidAST(s.Pos(), "branch statement: %s %s", s.Tok, name) + return + } + + // record label use + obj := all.Lookup(name) + obj.(*Label).used = true + check.recordUse(s.Label, obj) + + case *ast.AssignStmt: + if s.Tok == token.DEFINE { + recordVarDecl(s.Pos()) + } + + case *ast.BlockStmt: + blockBranches(lstmt, s.List) + + case *ast.IfStmt: + stmtBranches(s.Body) + if s.Else != nil { + stmtBranches(s.Else) + } + + case *ast.CaseClause: + blockBranches(nil, s.Body) + + case *ast.SwitchStmt: + stmtBranches(s.Body) + + case *ast.TypeSwitchStmt: + stmtBranches(s.Body) + + case *ast.CommClause: + blockBranches(nil, s.Body) + + case *ast.SelectStmt: + stmtBranches(s.Body) + + case *ast.ForStmt: + stmtBranches(s.Body) + + case *ast.RangeStmt: + stmtBranches(s.Body) + } + } + + for _, s := range list { + stmtBranches(s) + } + + return fwdJumps +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/lookup.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/lookup.go new file mode 100644 index 00000000..323b6c03 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/lookup.go @@ -0,0 +1,346 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements various field and method lookup functions. + +package types + +// TODO(gri) The named type consolidation and seen maps below must be +// indexed by unique keys for a given type. Verify that named +// types always have only one representation (even when imported +// indirectly via different packages.) + +// LookupFieldOrMethod looks up a field or method with given package and name +// in T and returns the corresponding *Var or *Func, an index sequence, and a +// bool indicating if there were any pointer indirections on the path to the +// field or method. +// +// The last index entry is the field or method index in the (possibly embedded) +// type where the entry was found, either: +// +// 1) the list of declared methods of a named type; or +// 2) the list of all methods (method set) of an interface type; or +// 3) the list of fields of a struct type. +// +// The earlier index entries are the indices of the embedded fields traversed +// to get to the found entry, starting at depth 0. +// +// If no entry is found, a nil object is returned. In this case, the returned +// index sequence points to an ambiguous entry if it exists, or it is nil. +// +func LookupFieldOrMethod(T Type, pkg *Package, name string) (obj Object, index []int, indirect bool) { + obj, index, indirect = lookupFieldOrMethod(T, pkg, name) + if obj != nil { + return + } + + // TODO(gri) The code below is not needed if we are looking for methods only, + // and it can be done always if we look for fields only. Consider + // providing LookupField and LookupMethod as well. + + // If we didn't find anything, we still might have a field p.x as in: + // + // type S struct{ x int } + // func (*S) m() {} + // type P *S + // var p P + // + // which requires that we start the search with the underlying type + // of P (i.e., *S). We cannot do this always because we might find + // methods that don't exist for P but for S (e.g., m). Thus, if the + // result is a method we need to discard it. + // + // TODO(gri) WTF? There isn't a more direct way? Perhaps we should + // outlaw named types to pointer types - they are almost + // never what one wants, anyway. + if t, _ := T.(*Named); t != nil { + u := t.underlying + if _, ok := u.(*Pointer); ok { + // typ is a named type with an underlying type of the form *T, + // start the search with the underlying type *T + if obj2, index2, indirect2 := lookupFieldOrMethod(u, pkg, name); obj2 != nil { + // only if the result is a field can we keep it + if _, ok := obj2.(*Var); ok { + return obj2, index2, indirect2 + } + } + } + } + + return +} + +func lookupFieldOrMethod(T Type, pkg *Package, name string) (obj Object, index []int, indirect bool) { + // WARNING: The code in this function is extremely subtle - do not modify casually! + // This function and NewMethodSet should be kept in sync. + + if name == "_" { + return // blank fields/methods are never found + } + + typ, isPtr := deref(T) + named, _ := typ.(*Named) + + // *typ where typ is an interface has no methods. + if isPtr { + utyp := typ + if named != nil { + utyp = named.underlying + } + if _, ok := utyp.(*Interface); ok { + return + } + } + + // Start with typ as single entry at shallowest depth. + // If typ is not a named type, insert a nil type instead. + current := []embeddedType{{named, nil, isPtr, false}} + + // named types that we have seen already, allocated lazily + var seen map[*Named]bool + + // search current depth + for len(current) > 0 { + var next []embeddedType // embedded types found at current depth + + // look for (pkg, name) in all types at current depth + for _, e := range current { + // The very first time only, e.typ may be nil. + // In this case, we don't have a named type and + // we simply continue with the underlying type. + if e.typ != nil { + if seen[e.typ] { + // We have seen this type before, at a more shallow depth + // (note that multiples of this type at the current depth + // were consolidated before). The type at that depth shadows + // this same type at the current depth, so we can ignore + // this one. + continue + } + if seen == nil { + seen = make(map[*Named]bool) + } + seen[e.typ] = true + + // look for a matching attached method + if i, m := lookupMethod(e.typ.methods, pkg, name); m != nil { + // potential match + assert(m.typ != nil) + index = concat(e.index, i) + if obj != nil || e.multiples { + obj = nil // collision + return + } + obj = m + indirect = e.indirect + continue // we can't have a matching field or interface method + } + + // continue with underlying type + typ = e.typ.underlying + } + + switch t := typ.(type) { + case *Struct: + // look for a matching field and collect embedded types + for i, f := range t.fields { + if f.sameId(pkg, name) { + assert(f.typ != nil) + index = concat(e.index, i) + if obj != nil || e.multiples { + obj = nil // collision + return + } + obj = f + indirect = e.indirect + continue // we can't have a matching interface method + } + // Collect embedded struct fields for searching the next + // lower depth, but only if we have not seen a match yet + // (if we have a match it is either the desired field or + // we have a name collision on the same depth; in either + // case we don't need to look further). + // Embedded fields are always of the form T or *T where + // T is a named type. If e.typ appeared multiple times at + // this depth, f.typ appears multiple times at the next + // depth. + if obj == nil && f.anonymous { + // Ignore embedded basic types - only user-defined + // named types can have methods or struct fields. + typ, isPtr := deref(f.typ) + if t, _ := typ.(*Named); t != nil { + next = append(next, embeddedType{t, concat(e.index, i), e.indirect || isPtr, e.multiples}) + } + } + } + + case *Interface: + // look for a matching method + // TODO(gri) t.allMethods is sorted - use binary search + if i, m := lookupMethod(t.allMethods, pkg, name); m != nil { + assert(m.typ != nil) + index = concat(e.index, i) + if obj != nil || e.multiples { + obj = nil // collision + return + } + obj = m + indirect = e.indirect + } + } + } + + if obj != nil { + return // found a match + } + + current = consolidateMultiples(next) + } + + index = nil + indirect = false + return // not found +} + +// embeddedType represents an embedded named type +type embeddedType struct { + typ *Named // nil means use the outer typ variable instead + index []int // embedded field indices, starting with index at depth 0 + indirect bool // if set, there was a pointer indirection on the path to this field + multiples bool // if set, typ appears multiple times at this depth +} + +// consolidateMultiples collects multiple list entries with the same type +// into a single entry marked as containing multiples. The result is the +// consolidated list. +func consolidateMultiples(list []embeddedType) []embeddedType { + if len(list) <= 1 { + return list // at most one entry - nothing to do + } + + n := 0 // number of entries w/ unique type + prev := make(map[*Named]int) // index at which type was previously seen + for _, e := range list { + if i, found := prev[e.typ]; found { + list[i].multiples = true + // ignore this entry + } else { + prev[e.typ] = n + list[n] = e + n++ + } + } + return list[:n] +} + +// MissingMethod returns (nil, false) if V implements T, otherwise it +// returns a missing method required by T and whether it is missing or +// just has the wrong type. +// +// For non-interface types V, or if static is set, V implements T if all +// methods of T are present in V. Otherwise (V is an interface and static +// is not set), MissingMethod only checks that methods of T which are also +// present in V have matching types (e.g., for a type assertion x.(T) where +// x is of interface type V). +// +func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) { + // fast path for common case + if T.Empty() { + return + } + + // TODO(gri) Consider using method sets here. Might be more efficient. + + if ityp, _ := V.Underlying().(*Interface); ityp != nil { + // TODO(gri) allMethods is sorted - can do this more efficiently + for _, m := range T.allMethods { + _, obj := lookupMethod(ityp.allMethods, m.pkg, m.name) + switch { + case obj == nil: + if static { + return m, false + } + case !Identical(obj.Type(), m.typ): + return m, true + } + } + return + } + + // A concrete type implements T if it implements all methods of T. + for _, m := range T.allMethods { + obj, _, indirect := lookupFieldOrMethod(V, m.pkg, m.name) + if obj == nil { + return m, false + } + + f, _ := obj.(*Func) + if f == nil { + return m, false + } + + // verify that f is in the method set of typ + if !indirect && ptrRecv(f) { + return m, false + } + + if !Identical(obj.Type(), m.typ) { + return m, true + } + } + + return +} + +// deref dereferences typ if it is a *Pointer and returns its base and true. +// Otherwise it returns (typ, false). +func deref(typ Type) (Type, bool) { + if p, _ := typ.(*Pointer); p != nil { + return p.base, true + } + return typ, false +} + +// derefStructPtr dereferences typ if it is a (named or unnamed) pointer to a +// (named or unnamed) struct and returns its base. Otherwise it returns typ. +func derefStructPtr(typ Type) Type { + if p, _ := typ.Underlying().(*Pointer); p != nil { + if _, ok := p.base.Underlying().(*Struct); ok { + return p.base + } + } + return typ +} + +// concat returns the result of concatenating list and i. +// The result does not share its underlying array with list. +func concat(list []int, i int) []int { + var t []int + t = append(t, list...) + return append(t, i) +} + +// fieldIndex returns the index for the field with matching package and name, or a value < 0. +func fieldIndex(fields []*Var, pkg *Package, name string) int { + if name != "_" { + for i, f := range fields { + if f.sameId(pkg, name) { + return i + } + } + } + return -1 +} + +// lookupMethod returns the index of and method with matching package and name, or (-1, nil). +func lookupMethod(methods []*Func, pkg *Package, name string) (int, *Func) { + if name != "_" { + for i, m := range methods { + if m.sameId(pkg, name) { + return i, m + } + } + } + return -1, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/methodset.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/methodset.go new file mode 100644 index 00000000..77297ea0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/methodset.go @@ -0,0 +1,267 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements method sets. + +package types + +import ( + "bytes" + "fmt" + "sort" +) + +// A MethodSet is an ordered set of concrete or abstract (interface) methods; +// a method is a MethodVal selection, and they are ordered by ascending m.Obj().Id(). +// The zero value for a MethodSet is a ready-to-use empty method set. +type MethodSet struct { + list []*Selection +} + +func (s *MethodSet) String() string { + if s.Len() == 0 { + return "MethodSet {}" + } + + var buf bytes.Buffer + fmt.Fprintln(&buf, "MethodSet {") + for _, f := range s.list { + fmt.Fprintf(&buf, "\t%s\n", f) + } + fmt.Fprintln(&buf, "}") + return buf.String() +} + +// Len returns the number of methods in s. +func (s *MethodSet) Len() int { return len(s.list) } + +// At returns the i'th method in s for 0 <= i < s.Len(). +func (s *MethodSet) At(i int) *Selection { return s.list[i] } + +// Lookup returns the method with matching package and name, or nil if not found. +func (s *MethodSet) Lookup(pkg *Package, name string) *Selection { + if s.Len() == 0 { + return nil + } + + key := Id(pkg, name) + i := sort.Search(len(s.list), func(i int) bool { + m := s.list[i] + return m.obj.Id() >= key + }) + if i < len(s.list) { + m := s.list[i] + if m.obj.Id() == key { + return m + } + } + return nil +} + +// Shared empty method set. +var emptyMethodSet MethodSet + +// NewMethodSet returns the method set for the given type T. It +// always returns a non-nil method set, even if it is empty. +// +// A MethodSetCache handles repeat queries more efficiently. +// +func NewMethodSet(T Type) *MethodSet { + // WARNING: The code in this function is extremely subtle - do not modify casually! + // This function and lookupFieldOrMethod should be kept in sync. + + // method set up to the current depth, allocated lazily + var base methodSet + + typ, isPtr := deref(T) + named, _ := typ.(*Named) + + // *typ where typ is an interface has no methods. + if isPtr { + utyp := typ + if named != nil { + utyp = named.underlying + } + if _, ok := utyp.(*Interface); ok { + return &emptyMethodSet + } + } + + // Start with typ as single entry at shallowest depth. + // If typ is not a named type, insert a nil type instead. + current := []embeddedType{{named, nil, isPtr, false}} + + // named types that we have seen already, allocated lazily + var seen map[*Named]bool + + // collect methods at current depth + for len(current) > 0 { + var next []embeddedType // embedded types found at current depth + + // field and method sets at current depth, allocated lazily + var fset fieldSet + var mset methodSet + + for _, e := range current { + // The very first time only, e.typ may be nil. + // In this case, we don't have a named type and + // we simply continue with the underlying type. + if e.typ != nil { + if seen[e.typ] { + // We have seen this type before, at a more shallow depth + // (note that multiples of this type at the current depth + // were consolidated before). The type at that depth shadows + // this same type at the current depth, so we can ignore + // this one. + continue + } + if seen == nil { + seen = make(map[*Named]bool) + } + seen[e.typ] = true + + mset = mset.add(e.typ.methods, e.index, e.indirect, e.multiples) + + // continue with underlying type + typ = e.typ.underlying + } + + switch t := typ.(type) { + case *Struct: + for i, f := range t.fields { + fset = fset.add(f, e.multiples) + + // Embedded fields are always of the form T or *T where + // T is a named type. If typ appeared multiple times at + // this depth, f.Type appears multiple times at the next + // depth. + if f.anonymous { + // Ignore embedded basic types - only user-defined + // named types can have methods or struct fields. + typ, isPtr := deref(f.typ) + if t, _ := typ.(*Named); t != nil { + next = append(next, embeddedType{t, concat(e.index, i), e.indirect || isPtr, e.multiples}) + } + } + } + + case *Interface: + mset = mset.add(t.allMethods, e.index, true, e.multiples) + } + } + + // Add methods and collisions at this depth to base if no entries with matching + // names exist already. + for k, m := range mset { + if _, found := base[k]; !found { + // Fields collide with methods of the same name at this depth. + if _, found := fset[k]; found { + m = nil // collision + } + if base == nil { + base = make(methodSet) + } + base[k] = m + } + } + + // Multiple fields with matching names collide at this depth and shadow all + // entries further down; add them as collisions to base if no entries with + // matching names exist already. + for k, f := range fset { + if f == nil { + if _, found := base[k]; !found { + if base == nil { + base = make(methodSet) + } + base[k] = nil // collision + } + } + } + + current = consolidateMultiples(next) + } + + if len(base) == 0 { + return &emptyMethodSet + } + + // collect methods + var list []*Selection + for _, m := range base { + if m != nil { + m.recv = T + list = append(list, m) + } + } + sort.Sort(byUniqueName(list)) + return &MethodSet{list} +} + +// A fieldSet is a set of fields and name collisions. +// A collision indicates that multiple fields with the +// same unique id appeared. +type fieldSet map[string]*Var // a nil entry indicates a name collision + +// Add adds field f to the field set s. +// If multiples is set, f appears multiple times +// and is treated as a collision. +func (s fieldSet) add(f *Var, multiples bool) fieldSet { + if s == nil { + s = make(fieldSet) + } + key := f.Id() + // if f is not in the set, add it + if !multiples { + if _, found := s[key]; !found { + s[key] = f + return s + } + } + s[key] = nil // collision + return s +} + +// A methodSet is a set of methods and name collisions. +// A collision indicates that multiple methods with the +// same unique id appeared. +type methodSet map[string]*Selection // a nil entry indicates a name collision + +// Add adds all functions in list to the method set s. +// If multiples is set, every function in list appears multiple times +// and is treated as a collision. +func (s methodSet) add(list []*Func, index []int, indirect bool, multiples bool) methodSet { + if len(list) == 0 { + return s + } + if s == nil { + s = make(methodSet) + } + for i, f := range list { + key := f.Id() + // if f is not in the set, add it + if !multiples { + if _, found := s[key]; !found && (indirect || !ptrRecv(f)) { + s[key] = &Selection{MethodVal, nil, f, concat(index, i), indirect} + continue + } + } + s[key] = nil // collision + } + return s +} + +// ptrRecv reports whether the receiver is of the form *T. +// The receiver must exist. +func ptrRecv(f *Func) bool { + _, isPtr := deref(f.typ.(*Signature).recv.typ) + return isPtr +} + +// byUniqueName function lists can be sorted by their unique names. +type byUniqueName []*Selection + +func (a byUniqueName) Len() int { return len(a) } +func (a byUniqueName) Less(i, j int) bool { return a[i].obj.Id() < a[j].obj.Id() } +func (a byUniqueName) Swap(i, j int) { a[i], a[j] = a[j], a[i] } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/methodsetcache.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/methodsetcache.go new file mode 100644 index 00000000..5a482e95 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/methodsetcache.go @@ -0,0 +1,69 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements a cache of method sets. + +package types + +import "sync" + +// A MethodSetCache records the method set of each type T for which +// MethodSet(T) is called so that repeat queries are fast. +// The zero value is a ready-to-use cache instance. +type MethodSetCache struct { + mu sync.Mutex + named map[*Named]struct{ value, pointer *MethodSet } // method sets for named N and *N + others map[Type]*MethodSet // all other types +} + +// MethodSet returns the method set of type T. It is thread-safe. +// +// If cache is nil, this function is equivalent to NewMethodSet(T). +// Utility functions can thus expose an optional *MethodSetCache +// parameter to clients that care about performance. +// +func (cache *MethodSetCache) MethodSet(T Type) *MethodSet { + if cache == nil { + return NewMethodSet(T) + } + cache.mu.Lock() + defer cache.mu.Unlock() + + switch T := T.(type) { + case *Named: + return cache.lookupNamed(T).value + + case *Pointer: + if N, ok := T.Elem().(*Named); ok { + return cache.lookupNamed(N).pointer + } + } + + // all other types + // (The map uses pointer equivalence, not type identity.) + mset := cache.others[T] + if mset == nil { + mset = NewMethodSet(T) + if cache.others == nil { + cache.others = make(map[Type]*MethodSet) + } + cache.others[T] = mset + } + return mset +} + +func (cache *MethodSetCache) lookupNamed(named *Named) struct{ value, pointer *MethodSet } { + if cache.named == nil { + cache.named = make(map[*Named]struct{ value, pointer *MethodSet }) + } + // Avoid recomputing mset(*T) for each distinct Pointer + // instance whose underlying type is a named type. + msets, ok := cache.named[named] + if !ok { + msets.value = NewMethodSet(named) + msets.pointer = NewMethodSet(NewPointer(named)) + cache.named[named] = msets + } + return msets +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/object.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/object.go new file mode 100644 index 00000000..4c2a8ca0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/object.go @@ -0,0 +1,329 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types + +import ( + "bytes" + "fmt" + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// TODO(gri) Document factory, accessor methods, and fields. General clean-up. + +// An Object describes a named language entity such as a package, +// constant, type, variable, function (incl. methods), or label. +// All objects implement the Object interface. +// +type Object interface { + Parent() *Scope // scope in which this object is declared + Pos() token.Pos // position of object identifier in declaration + Pkg() *Package // nil for objects in the Universe scope and labels + Name() string // package local object name + Type() Type // object type + Exported() bool // reports whether the name starts with a capital letter + Id() string // object id (see Id below) + + // String returns a human-readable string of the object. + String() string + + // isUsed reports whether the object was marked as 'used'. + isUsed() bool + + // setParent sets the parent scope of the object. + setParent(*Scope) + + // sameId reports whether obj.Id() and Id(pkg, name) are the same. + sameId(pkg *Package, name string) bool +} + +// Id returns name if it is exported, otherwise it +// returns the name qualified with the package path. +func Id(pkg *Package, name string) string { + if ast.IsExported(name) { + return name + } + // unexported names need the package path for differentiation + // (if there's no package, make sure we don't start with '.' + // as that may change the order of methods between a setup + // inside a package and outside a package - which breaks some + // tests) + path := "_" + // TODO(gri): shouldn't !ast.IsExported(name) => pkg != nil be an precondition? + // if pkg == nil { + // panic("nil package in lookup of unexported name") + // } + if pkg != nil { + path = pkg.path + if path == "" { + path = "_" + } + } + return path + "." + name +} + +// An object implements the common parts of an Object. +type object struct { + parent *Scope + pos token.Pos + pkg *Package + name string + typ Type + used bool +} + +func (obj *object) Parent() *Scope { return obj.parent } +func (obj *object) Pos() token.Pos { return obj.pos } +func (obj *object) Pkg() *Package { return obj.pkg } +func (obj *object) Name() string { return obj.name } +func (obj *object) Type() Type { return obj.typ } +func (obj *object) Exported() bool { return ast.IsExported(obj.name) } +func (obj *object) Id() string { return Id(obj.pkg, obj.name) } +func (obj *object) String() string { panic("abstract") } + +func (obj *object) isUsed() bool { return obj.used } + +func (obj *object) setParent(parent *Scope) { obj.parent = parent } + +func (obj *object) sameId(pkg *Package, name string) bool { + // spec: + // "Two identifiers are different if they are spelled differently, + // or if they appear in different packages and are not exported. + // Otherwise, they are the same." + if name != obj.name { + return false + } + // obj.Name == name + if obj.Exported() { + return true + } + // not exported, so packages must be the same (pkg == nil for + // fields in Universe scope; this can only happen for types + // introduced via Eval) + if pkg == nil || obj.pkg == nil { + return pkg == obj.pkg + } + // pkg != nil && obj.pkg != nil + return pkg.path == obj.pkg.path +} + +// A PkgName represents an imported Go package. +type PkgName struct { + object +} + +func NewPkgName(pos token.Pos, pkg *Package, name string) *PkgName { + return &PkgName{object{nil, pos, pkg, name, Typ[Invalid], false}} +} + +// A Const represents a declared constant. +type Const struct { + object + val exact.Value + + visited bool // for initialization cycle detection +} + +func NewConst(pos token.Pos, pkg *Package, name string, typ Type, val exact.Value) *Const { + return &Const{object: object{nil, pos, pkg, name, typ, false}, val: val} +} + +func (obj *Const) Val() exact.Value { return obj.val } + +// A TypeName represents a declared type. +type TypeName struct { + object +} + +func NewTypeName(pos token.Pos, pkg *Package, name string, typ Type) *TypeName { + return &TypeName{object{nil, pos, pkg, name, typ, false}} +} + +// A Variable represents a declared variable (including function parameters and results, and struct fields). +type Var struct { + object + + anonymous bool // if set, the variable is an anonymous struct field, and name is the type name + visited bool // for initialization cycle detection + isField bool // var is struct field +} + +func NewVar(pos token.Pos, pkg *Package, name string, typ Type) *Var { + return &Var{object: object{nil, pos, pkg, name, typ, false}} +} + +func NewParam(pos token.Pos, pkg *Package, name string, typ Type) *Var { + return &Var{object: object{nil, pos, pkg, name, typ, true}} // parameters are always 'used' +} + +func NewField(pos token.Pos, pkg *Package, name string, typ Type, anonymous bool) *Var { + return &Var{object: object{nil, pos, pkg, name, typ, false}, anonymous: anonymous, isField: true} +} + +func (obj *Var) Anonymous() bool { return obj.anonymous } + +func (obj *Var) IsField() bool { return obj.isField } + +// A Func represents a declared function, concrete method, or abstract +// (interface) method. Its Type() is always a *Signature. +// An abstract method may belong to many interfaces due to embedding. +type Func struct { + object +} + +func NewFunc(pos token.Pos, pkg *Package, name string, sig *Signature) *Func { + // don't store a nil signature + var typ Type + if sig != nil { + typ = sig + } + return &Func{object{nil, pos, pkg, name, typ, false}} +} + +// FullName returns the package- or receiver-type-qualified name of +// function or method obj. +func (obj *Func) FullName() string { + var buf bytes.Buffer + writeFuncName(&buf, nil, obj) + return buf.String() +} + +func (obj *Func) Scope() *Scope { + return obj.typ.(*Signature).scope +} + +// A Label represents a declared label. +type Label struct { + object +} + +func NewLabel(pos token.Pos, name string) *Label { + return &Label{object{pos: pos, name: name, typ: Typ[Invalid]}} +} + +// A Builtin represents a built-in function. +// Builtins don't have a valid type. +type Builtin struct { + object + + id builtinId +} + +func newBuiltin(id builtinId) *Builtin { + return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid]}, id} +} + +// Nil represents the predeclared value nil. +type Nil struct { + object +} + +func writeObject(buf *bytes.Buffer, this *Package, obj Object) { + typ := obj.Type() + switch obj := obj.(type) { + case *PkgName: + fmt.Fprintf(buf, "package %s", obj.Name()) + if path := obj.Pkg().path; path != "" && path != obj.Name() { + fmt.Fprintf(buf, " (%q)", path) + } + return + + case *Const: + buf.WriteString("const") + + case *TypeName: + buf.WriteString("type") + typ = typ.Underlying() + + case *Var: + if obj.isField { + buf.WriteString("field") + } else { + buf.WriteString("var") + } + + case *Func: + buf.WriteString("func ") + writeFuncName(buf, this, obj) + if typ != nil { + WriteSignature(buf, this, typ.(*Signature)) + } + return + + case *Label: + buf.WriteString("label") + typ = nil + + case *Builtin: + buf.WriteString("builtin") + typ = nil + + case *Nil: + buf.WriteString("nil") + return + + default: + panic(fmt.Sprintf("writeObject(%T)", obj)) + } + + buf.WriteByte(' ') + + // For package-level objects, package-qualify the name, + // except for intra-package references (this != nil). + if pkg := obj.Pkg(); pkg != nil && this != pkg && pkg.scope.Lookup(obj.Name()) == obj { + buf.WriteString(pkg.path) + buf.WriteByte('.') + } + buf.WriteString(obj.Name()) + if typ != nil { + buf.WriteByte(' ') + WriteType(buf, this, typ) + } +} + +// ObjectString returns the string form of obj. +// Object and type names are printed package-qualified +// only if they do not belong to this package. +// +func ObjectString(this *Package, obj Object) string { + var buf bytes.Buffer + writeObject(&buf, this, obj) + return buf.String() +} + +func (obj *PkgName) String() string { return ObjectString(nil, obj) } +func (obj *Const) String() string { return ObjectString(nil, obj) } +func (obj *TypeName) String() string { return ObjectString(nil, obj) } +func (obj *Var) String() string { return ObjectString(nil, obj) } +func (obj *Func) String() string { return ObjectString(nil, obj) } +func (obj *Label) String() string { return ObjectString(nil, obj) } +func (obj *Builtin) String() string { return ObjectString(nil, obj) } +func (obj *Nil) String() string { return ObjectString(nil, obj) } + +func writeFuncName(buf *bytes.Buffer, this *Package, f *Func) { + if f.typ != nil { + sig := f.typ.(*Signature) + if recv := sig.Recv(); recv != nil { + buf.WriteByte('(') + if _, ok := recv.Type().(*Interface); ok { + // gcimporter creates abstract methods of + // named interfaces using the interface type + // (not the named type) as the receiver. + // Don't print it in full. + buf.WriteString("interface") + } else { + WriteType(buf, this, recv.Type()) + } + buf.WriteByte(')') + buf.WriteByte('.') + } else if f.pkg != nil && f.pkg != this { + buf.WriteString(f.pkg.path) + buf.WriteByte('.') + } + } + buf.WriteString(f.name) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/objset.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/objset.go new file mode 100644 index 00000000..55eb74ad --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/objset.go @@ -0,0 +1,31 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements objsets. +// +// An objset is similar to a Scope but objset elements +// are identified by their unique id, instead of their +// object name. + +package types + +// An objset is a set of objects identified by their unique id. +// The zero value for objset is a ready-to-use empty objset. +type objset map[string]Object // initialized lazily + +// insert attempts to insert an object obj into objset s. +// If s already contains an alternative object alt with +// the same name, insert leaves s unchanged and returns alt. +// Otherwise it inserts obj and returns nil. +func (s *objset) insert(obj Object) Object { + id := obj.Id() + if alt := (*s)[id]; alt != nil { + return alt + } + if *s == nil { + *s = make(map[string]Object) + } + (*s)[id] = obj + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/operand.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/operand.go new file mode 100644 index 00000000..27aaa5f1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/operand.go @@ -0,0 +1,287 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file defines operands and associated operations. + +package types + +import ( + "bytes" + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +// An operandMode specifies the (addressing) mode of an operand. +type operandMode int + +const ( + invalid operandMode = iota // operand is invalid + novalue // operand represents no value (result of a function call w/o result) + builtin // operand is a built-in function + typexpr // operand is a type + constant // operand is a constant; the operand's typ is a Basic type + variable // operand is an addressable variable + mapindex // operand is a map index expression (acts like a variable on lhs, commaok on rhs of an assignment) + value // operand is a computed value + commaok // like value, but operand may be used in a comma,ok expression +) + +var operandModeString = [...]string{ + invalid: "invalid operand", + novalue: "no value", + builtin: "built-in", + typexpr: "type", + constant: "constant", + variable: "variable", + mapindex: "map index expression", + value: "value", + commaok: "comma, ok expression", +} + +// An operand represents an intermediate value during type checking. +// Operands have an (addressing) mode, the expression evaluating to +// the operand, the operand's type, a value for constants, and an id +// for built-in functions. +// The zero value of operand is a ready to use invalid operand. +// +type operand struct { + mode operandMode + expr ast.Expr + typ Type + val exact.Value + id builtinId +} + +// pos returns the position of the expression corresponding to x. +// If x is invalid the position is token.NoPos. +// +func (x *operand) pos() token.Pos { + // x.expr may not be set if x is invalid + if x.expr == nil { + return token.NoPos + } + return x.expr.Pos() +} + +// Operand string formats +// (not all "untyped" cases can appear due to the type system, +// but they fall out naturally here) +// +// mode format +// +// invalid ( ) +// novalue ( ) +// builtin ( ) +// typexpr ( ) +// +// constant ( ) +// constant ( of type ) +// constant ( ) +// constant ( of type ) +// +// variable ( ) +// variable ( of type ) +// +// mapindex ( ) +// mapindex ( of type ) +// +// value ( ) +// value ( of type ) +// +// commaok ( ) +// commaok ( of type ) +// +func operandString(this *Package, x *operand) string { + var buf bytes.Buffer + + var expr string + if x.expr != nil { + expr = ExprString(x.expr) + } else { + switch x.mode { + case builtin: + expr = predeclaredFuncs[x.id].name + case typexpr: + expr = TypeString(this, x.typ) + case constant: + expr = x.val.String() + } + } + + // ( + if expr != "" { + buf.WriteString(expr) + buf.WriteString(" (") + } + + // + hasType := false + switch x.mode { + case invalid, novalue, builtin, typexpr: + // no type + default: + // has type + if isUntyped(x.typ) { + buf.WriteString(x.typ.(*Basic).name) + buf.WriteByte(' ') + break + } + hasType = true + } + + // + buf.WriteString(operandModeString[x.mode]) + + // + if x.mode == constant { + if s := x.val.String(); s != expr { + buf.WriteByte(' ') + buf.WriteString(s) + } + } + + // + if hasType { + if x.typ != Typ[Invalid] { + buf.WriteString(" of type ") + WriteType(&buf, this, x.typ) + } else { + buf.WriteString(" with invalid type") + } + } + + // ) + if expr != "" { + buf.WriteByte(')') + } + + return buf.String() +} + +func (x *operand) String() string { + return operandString(nil, x) +} + +// setConst sets x to the untyped constant for literal lit. +func (x *operand) setConst(tok token.Token, lit string) { + val := exact.MakeFromLiteral(lit, tok) + if val == nil { + // TODO(gri) Should we make it an unknown constant instead? + x.mode = invalid + return + } + + var kind BasicKind + switch tok { + case token.INT: + kind = UntypedInt + case token.FLOAT: + kind = UntypedFloat + case token.IMAG: + kind = UntypedComplex + case token.CHAR: + kind = UntypedRune + case token.STRING: + kind = UntypedString + } + + x.mode = constant + x.typ = Typ[kind] + x.val = val +} + +// isNil reports whether x is the nil value. +func (x *operand) isNil() bool { + return x.mode == value && x.typ == Typ[UntypedNil] +} + +// TODO(gri) The functions operand.assignableTo, checker.convertUntyped, +// checker.representable, and checker.assignment are +// overlapping in functionality. Need to simplify and clean up. + +// assignableTo reports whether x is assignable to a variable of type T. +func (x *operand) assignableTo(conf *Config, T Type) bool { + if x.mode == invalid || T == Typ[Invalid] { + return true // avoid spurious errors + } + + V := x.typ + + // x's type is identical to T + if Identical(V, T) { + return true + } + + Vu := V.Underlying() + Tu := T.Underlying() + + // T is an interface type and x implements T + // (Do this check first as it might succeed early.) + if Ti, ok := Tu.(*Interface); ok { + if Implements(x.typ, Ti) { + return true + } + } + + // x's type V and T have identical underlying types + // and at least one of V or T is not a named type + if Identical(Vu, Tu) && (!isNamed(V) || !isNamed(T)) { + return true + } + + // x is a bidirectional channel value, T is a channel + // type, x's type V and T have identical element types, + // and at least one of V or T is not a named type + if Vc, ok := Vu.(*Chan); ok && Vc.dir == SendRecv { + if Tc, ok := Tu.(*Chan); ok && Identical(Vc.elem, Tc.elem) { + return !isNamed(V) || !isNamed(T) + } + } + + // x is the predeclared identifier nil and T is a pointer, + // function, slice, map, channel, or interface type + if x.isNil() { + switch t := Tu.(type) { + case *Basic: + if t.kind == UnsafePointer { + return true + } + case *Pointer, *Signature, *Slice, *Map, *Chan, *Interface: + return true + } + return false + } + + // x is an untyped constant representable by a value of type T + // TODO(gri) This is borrowing from checker.convertUntyped and + // checker.representable. Need to clean up. + if isUntyped(Vu) { + switch t := Tu.(type) { + case *Basic: + if x.mode == constant { + return representableConst(x.val, conf, t.kind, nil) + } + // The result of a comparison is an untyped boolean, + // but may not be a constant. + if Vb, _ := Vu.(*Basic); Vb != nil { + return Vb.kind == UntypedBool && isBoolean(Tu) + } + case *Interface: + return x.isNil() || t.Empty() + case *Pointer, *Signature, *Slice, *Map, *Chan: + return x.isNil() + } + } + + return false +} + +// isInteger reports whether x is a (typed or untyped) integer value. +func (x *operand) isInteger() bool { + return x.mode == invalid || + isInteger(x.typ) || + x.mode == constant && representableConst(x.val, nil, UntypedInt, nil) // no *Config required for UntypedInt +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/ordering.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/ordering.go new file mode 100644 index 00000000..cc38cfed --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/ordering.go @@ -0,0 +1,108 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements resolveOrder. + +package types + +import ( + "go/ast" + "sort" +) + +// resolveOrder computes the order in which package-level objects +// must be type-checked. +// +// Interface types appear first in the list, sorted topologically +// by dependencies on embedded interfaces that are also declared +// in this package, followed by all other objects sorted in source +// order. +// +// TODO(gri) Consider sorting all types by dependencies here, and +// in the process check _and_ report type cycles. This may simplify +// the full type-checking phase. +// +func (check *checker) resolveOrder() []Object { + var ifaces, others []Object + + // collect interface types with their dependencies, and all other objects + for obj := range check.objMap { + if ityp := check.interfaceFor(obj); ityp != nil { + ifaces = append(ifaces, obj) + // determine dependencies on embedded interfaces + for _, f := range ityp.Methods.List { + if len(f.Names) == 0 { + // Embedded interface: The type must be a (possibly + // qualified) identifer denoting another interface. + // Imported interfaces are already fully resolved, + // so we can ignore qualified identifiers. + if ident, _ := f.Type.(*ast.Ident); ident != nil { + embedded := check.pkg.scope.Lookup(ident.Name) + if check.interfaceFor(embedded) != nil { + check.objMap[obj].addDep(embedded) + } + } + } + } + } else { + others = append(others, obj) + } + } + + // final object order + var order []Object + + // sort interface types topologically by dependencies, + // and in source order if there are no dependencies + sort.Sort(inSourceOrder(ifaces)) + if debug { + for _, obj := range ifaces { + assert(check.objMap[obj].mark == 0) + } + } + for _, obj := range ifaces { + check.appendInPostOrder(&order, obj) + } + + // sort everything else in source order + sort.Sort(inSourceOrder(others)) + + return append(order, others...) +} + +// interfaceFor returns the AST interface denoted by obj, or nil. +func (check *checker) interfaceFor(obj Object) *ast.InterfaceType { + tname, _ := obj.(*TypeName) + if tname == nil { + return nil // not a type + } + d := check.objMap[obj] + if d == nil { + check.dump("%s: %s should have been declared", obj.Pos(), obj.Name()) + unreachable() + } + if d.typ == nil { + return nil // invalid AST - ignore (will be handled later) + } + ityp, _ := d.typ.(*ast.InterfaceType) + return ityp +} + +func (check *checker) appendInPostOrder(order *[]Object, obj Object) { + d := check.objMap[obj] + if d.mark != 0 { + // We've already seen this object; either because it's + // already added to order, or because we have a cycle. + // In both cases we stop. Cycle errors are reported + // when type-checking types. + return + } + d.mark = 1 + + for _, obj := range orderedSetObjects(d.deps) { + check.appendInPostOrder(order, obj) + } + + *order = append(*order, obj) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/package.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/package.go new file mode 100644 index 00000000..c29dc252 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/package.go @@ -0,0 +1,54 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types + +import "fmt" + +// A Package describes a Go package. +type Package struct { + path string + name string + scope *Scope + complete bool + imports []*Package + fake bool // scope lookup errors are silently dropped if package is fake (internal use only) +} + +// NewPackage returns a new Package for the given package path and name. +// The package is not complete and contains no explicit imports. +func NewPackage(path, name string) *Package { + scope := NewScope(Universe, fmt.Sprintf("package %q", path)) + return &Package{path: path, name: name, scope: scope} +} + +// Path returns the package path. +func (pkg *Package) Path() string { return pkg.path } + +// Name returns the package name. +func (pkg *Package) Name() string { return pkg.name } + +// Scope returns the (complete or incomplete) package scope +// holding the objects declared at package level (TypeNames, +// Consts, Vars, and Funcs). +func (pkg *Package) Scope() *Scope { return pkg.scope } + +// A package is complete if its scope contains (at least) all +// exported objects; otherwise it is incomplete. +func (pkg *Package) Complete() bool { return pkg.complete } + +// MarkComplete marks a package as complete. +func (pkg *Package) MarkComplete() { pkg.complete = true } + +// Imports returns the list of packages explicitly imported by +// pkg; the list is in source order. Package unsafe is excluded. +func (pkg *Package) Imports() []*Package { return pkg.imports } + +// SetImports sets the list of explicitly imported packages to list. +// It is the caller's responsibility to make sure list elements are unique. +func (pkg *Package) SetImports(list []*Package) { pkg.imports = list } + +func (pkg *Package) String() string { + return fmt.Sprintf("package %s (%q)", pkg.name, pkg.path) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/predicates.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/predicates.go new file mode 100644 index 00000000..2e36a729 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/predicates.go @@ -0,0 +1,308 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements commonly used type predicates. + +package types + +import "sort" + +func isNamed(typ Type) bool { + if _, ok := typ.(*Basic); ok { + return ok + } + _, ok := typ.(*Named) + return ok +} + +func isBoolean(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsBoolean != 0 +} + +func isInteger(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsInteger != 0 +} + +func isUnsigned(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsUnsigned != 0 +} + +func isFloat(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsFloat != 0 +} + +func isComplex(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsComplex != 0 +} + +func isNumeric(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsNumeric != 0 +} + +func isString(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsString != 0 +} + +func isTyped(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return !ok || t.info&IsUntyped == 0 +} + +func isUntyped(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsUntyped != 0 +} + +func isOrdered(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsOrdered != 0 +} + +func isConstType(typ Type) bool { + t, ok := typ.Underlying().(*Basic) + return ok && t.info&IsConstType != 0 +} + +func isInterface(typ Type) bool { + _, ok := typ.Underlying().(*Interface) + return ok +} + +// Comparable reports whether values of type T are comparable. +func Comparable(T Type) bool { + switch t := T.Underlying().(type) { + case *Basic: + // assume invalid types to be comparable + // to avoid follow-up errors + return t.kind != UntypedNil + case *Pointer, *Interface, *Chan: + return true + case *Struct: + for _, f := range t.fields { + if !Comparable(f.typ) { + return false + } + } + return true + case *Array: + return Comparable(t.elem) + } + return false +} + +// hasNil reports whether a type includes the nil value. +func hasNil(typ Type) bool { + switch t := typ.Underlying().(type) { + case *Basic: + return t.kind == UnsafePointer + case *Slice, *Pointer, *Signature, *Interface, *Map, *Chan: + return true + } + return false +} + +// Identical reports whether x and y are identical. +func Identical(x, y Type) bool { + return identical(x, y, nil) +} + +// An ifacePair is a node in a stack of interface type pairs compared for identity. +type ifacePair struct { + x, y *Interface + prev *ifacePair +} + +func (p *ifacePair) identical(q *ifacePair) bool { + return p.x == q.x && p.y == q.y || p.x == q.y && p.y == q.x +} + +func identical(x, y Type, p *ifacePair) bool { + if x == y { + return true + } + + switch x := x.(type) { + case *Basic: + // Basic types are singletons except for the rune and byte + // aliases, thus we cannot solely rely on the x == y check + // above. + if y, ok := y.(*Basic); ok { + return x.kind == y.kind + } + + case *Array: + // Two array types are identical if they have identical element types + // and the same array length. + if y, ok := y.(*Array); ok { + return x.len == y.len && identical(x.elem, y.elem, p) + } + + case *Slice: + // Two slice types are identical if they have identical element types. + if y, ok := y.(*Slice); ok { + return identical(x.elem, y.elem, p) + } + + case *Struct: + // Two struct types are identical if they have the same sequence of fields, + // and if corresponding fields have the same names, and identical types, + // and identical tags. Two anonymous fields are considered to have the same + // name. Lower-case field names from different packages are always different. + if y, ok := y.(*Struct); ok { + if x.NumFields() == y.NumFields() { + for i, f := range x.fields { + g := y.fields[i] + if f.anonymous != g.anonymous || + x.Tag(i) != y.Tag(i) || + !f.sameId(g.pkg, g.name) || + !identical(f.typ, g.typ, p) { + return false + } + } + return true + } + } + + case *Pointer: + // Two pointer types are identical if they have identical base types. + if y, ok := y.(*Pointer); ok { + return identical(x.base, y.base, p) + } + + case *Tuple: + // Two tuples types are identical if they have the same number of elements + // and corresponding elements have identical types. + if y, ok := y.(*Tuple); ok { + if x.Len() == y.Len() { + if x != nil { + for i, v := range x.vars { + w := y.vars[i] + if !identical(v.typ, w.typ, p) { + return false + } + } + } + return true + } + } + + case *Signature: + // Two function types are identical if they have the same number of parameters + // and result values, corresponding parameter and result types are identical, + // and either both functions are variadic or neither is. Parameter and result + // names are not required to match. + if y, ok := y.(*Signature); ok { + return x.variadic == y.variadic && + identical(x.params, y.params, p) && + identical(x.results, y.results, p) + } + + case *Interface: + // Two interface types are identical if they have the same set of methods with + // the same names and identical function types. Lower-case method names from + // different packages are always different. The order of the methods is irrelevant. + if y, ok := y.(*Interface); ok { + a := x.allMethods + b := y.allMethods + if len(a) == len(b) { + // Interface types are the only types where cycles can occur + // that are not "terminated" via named types; and such cycles + // can only be created via method parameter types that are + // anonymous interfaces (directly or indirectly) embedding + // the current interface. Example: + // + // type T interface { + // m() interface{T} + // } + // + // If two such (differently named) interfaces are compared, + // endless recursion occurs if the cycle is not detected. + // + // If x and y were compared before, they must be equal + // (if they were not, the recursion would have stopped); + // search the ifacePair stack for the same pair. + // + // This is a quadratic algorithm, but in practice these stacks + // are extremely short (bounded by the nesting depth of interface + // type declarations that recur via parameter types, an extremely + // rare occurrence). An alternative implementation might use a + // "visited" map, but that is probably less efficient overall. + q := &ifacePair{x, y, p} + for p != nil { + if p.identical(q) { + return true // same pair was compared before + } + p = p.prev + } + if debug { + assert(sort.IsSorted(byUniqueMethodName(a))) + assert(sort.IsSorted(byUniqueMethodName(b))) + } + for i, f := range a { + g := b[i] + if f.Id() != g.Id() || !identical(f.typ, g.typ, q) { + return false + } + } + return true + } + } + + case *Map: + // Two map types are identical if they have identical key and value types. + if y, ok := y.(*Map); ok { + return identical(x.key, y.key, p) && identical(x.elem, y.elem, p) + } + + case *Chan: + // Two channel types are identical if they have identical value types + // and the same direction. + if y, ok := y.(*Chan); ok { + return x.dir == y.dir && identical(x.elem, y.elem, p) + } + + case *Named: + // Two named types are identical if their type names originate + // in the same type declaration. + if y, ok := y.(*Named); ok { + return x.obj == y.obj + } + + default: + unreachable() + } + + return false +} + +// defaultType returns the default "typed" type for an "untyped" type; +// it returns the incoming type for all other types. The default type +// for untyped nil is untyped nil. +// +func defaultType(typ Type) Type { + if t, ok := typ.(*Basic); ok { + switch t.kind { + case UntypedBool: + return Typ[Bool] + case UntypedInt: + return Typ[Int] + case UntypedRune: + return UniverseRune // use 'rune' name + case UntypedFloat: + return Typ[Float64] + case UntypedComplex: + return Typ[Complex128] + case UntypedString: + return Typ[String] + } + } + return typ +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/resolver.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/resolver.go new file mode 100644 index 00000000..90217f1c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/resolver.go @@ -0,0 +1,537 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types + +import ( + "errors" + "fmt" + "go/ast" + "go/token" + "sort" + "strconv" + "strings" + "unicode" + + "code.google.com/p/go.tools/go/exact" +) + +// A declInfo describes a package-level const, type, var, or func declaration. +type declInfo struct { + file *Scope // scope of file containing this declaration + lhs []*Var // lhs of n:1 variable declarations, or nil + typ ast.Expr // type, or nil + init ast.Expr // init expression, or nil + fdecl *ast.FuncDecl // func declaration, or nil + + deps map[Object]bool // type and init dependencies; lazily allocated + mark int // for dependency analysis +} + +// hasInitializer reports whether the declared object has an initialization +// expression or function body. +func (d *declInfo) hasInitializer() bool { + return d.init != nil || d.fdecl != nil && d.fdecl.Body != nil +} + +// addDep adds obj as a dependency to d. +func (d *declInfo) addDep(obj Object) { + m := d.deps + if m == nil { + m = make(map[Object]bool) + d.deps = m + } + m[obj] = true +} + +// arityMatch checks that the lhs and rhs of a const or var decl +// have the appropriate number of names and init exprs. For const +// decls, init is the value spec providing the init exprs; for +// var decls, init is nil (the init exprs are in s in this case). +func (check *checker) arityMatch(s, init *ast.ValueSpec) { + l := len(s.Names) + r := len(s.Values) + if init != nil { + r = len(init.Values) + } + + switch { + case init == nil && r == 0: + // var decl w/o init expr + if s.Type == nil { + check.errorf(s.Pos(), "missing type or init expr") + } + case l < r: + if l < len(s.Values) { + // init exprs from s + n := s.Values[l] + check.errorf(n.Pos(), "extra init expr %s", n) + // TODO(gri) avoid declared but not used error here + } else { + // init exprs "inherited" + check.errorf(s.Pos(), "extra init expr at %s", init.Pos()) + // TODO(gri) avoid declared but not used error here + } + case l > r && (init != nil || r != 1): + n := s.Names[r] + check.errorf(n.Pos(), "missing init expr for %s", n) + } +} + +func validatedImportPath(path string) (string, error) { + s, err := strconv.Unquote(path) + if err != nil { + return "", err + } + if s == "" { + return "", fmt.Errorf("empty string") + } + const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD" + for _, r := range s { + if !unicode.IsGraphic(r) || unicode.IsSpace(r) || strings.ContainsRune(illegalChars, r) { + return s, fmt.Errorf("invalid character %#U", r) + } + } + return s, nil +} + +// declarePkgObj declares obj in the package scope, records its ident -> obj mapping, +// and updates check.objMap. The object must not be a function or method. +func (check *checker) declarePkgObj(ident *ast.Ident, obj Object, d *declInfo) { + assert(ident.Name == obj.Name()) + + // spec: "A package-scope or file-scope identifier with name init + // may only be declared to be a function with this (func()) signature." + if ident.Name == "init" { + check.errorf(ident.Pos(), "cannot declare init - must be func") + return + } + + check.declare(check.pkg.scope, ident, obj) + check.objMap[obj] = d +} + +// collectObjects collects all file and package objects and inserts them +// into their respective scopes. It also performs imports and associates +// methods with receiver base type names. +func (check *checker) collectObjects() { + pkg := check.pkg + + importer := check.conf.Import + if importer == nil { + if DefaultImport == nil { + panic(`no Config.Import or DefaultImport (missing import _ "code.google.com/p/go.tools/go/gcimporter"?)`) + } + importer = DefaultImport + } + + // pkgImports is the set of packages already imported by any package file seen + // so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate + // it (pkg.imports may not be empty if we are checking test files incrementally). + var pkgImports = make(map[*Package]bool) + for _, imp := range pkg.imports { + pkgImports[imp] = true + } + + for fileNo, file := range check.files { + // The package identifier denotes the current package, + // but there is no corresponding package object. + check.recordDef(file.Name, nil) + fileScope := check.fileScopes[fileNo] + + for _, decl := range file.Decls { + switch d := decl.(type) { + case *ast.BadDecl: + // ignore + + case *ast.GenDecl: + var last *ast.ValueSpec // last ValueSpec with type or init exprs seen + for iota, spec := range d.Specs { + switch s := spec.(type) { + case *ast.ImportSpec: + // import package + var imp *Package + path, err := validatedImportPath(s.Path.Value) + if err != nil { + check.errorf(s.Path.Pos(), "invalid import path (%s)", err) + continue + } + if path == "C" && check.conf.FakeImportC { + // TODO(gri) shouldn't create a new one each time + imp = NewPackage("C", "C") + imp.fake = true + } else { + var err error + imp, err = importer(check.conf.Packages, path) + if imp == nil && err == nil { + err = errors.New("Config.Import returned nil but no error") + } + if err != nil { + check.errorf(s.Path.Pos(), "could not import %s (%s)", path, err) + continue + } + } + + // add package to list of explicit imports + // (this functionality is provided as a convenience + // for clients; it is not needed for type-checking) + if !pkgImports[imp] { + pkgImports[imp] = true + if imp != Unsafe { + pkg.imports = append(pkg.imports, imp) + } + } + + // local name overrides imported package name + name := imp.name + if s.Name != nil { + name = s.Name.Name + if name == "init" { + check.errorf(s.Name.Pos(), "cannot declare init - must be func") + continue + } + } + + obj := NewPkgName(s.Pos(), imp, name) + if s.Name != nil { + // in a dot-import, the dot represents the package + check.recordDef(s.Name, obj) + } else { + check.recordImplicit(s, obj) + } + + // add import to file scope + if name == "." { + // merge imported scope with file scope + for _, obj := range imp.scope.elems { + // A package scope may contain non-exported objects, + // do not import them! + if obj.Exported() { + check.declare(fileScope, nil, obj) + check.recordImplicit(s, obj) + } + } + // add position to set of dot-import positions for this file + // (this is only needed for "imported but not used" errors) + posSet := check.dotImports[fileNo] + if posSet == nil { + posSet = make(map[*Package]token.Pos) + check.dotImports[fileNo] = posSet + } + posSet[imp] = s.Pos() + } else { + // declare imported package object in file scope + check.declare(fileScope, nil, obj) + } + + case *ast.ValueSpec: + switch d.Tok { + case token.CONST: + // determine which initialization expressions to use + switch { + case s.Type != nil || len(s.Values) > 0: + last = s + case last == nil: + last = new(ast.ValueSpec) // make sure last exists + } + + // declare all constants + for i, name := range s.Names { + obj := NewConst(name.Pos(), pkg, name.Name, nil, exact.MakeInt64(int64(iota))) + + var init ast.Expr + if i < len(last.Values) { + init = last.Values[i] + } + + d := &declInfo{file: fileScope, typ: last.Type, init: init} + check.declarePkgObj(name, obj, d) + } + + check.arityMatch(s, last) + + case token.VAR: + lhs := make([]*Var, len(s.Names)) + // If there's exactly one rhs initializer, use + // the same declInfo d1 for all lhs variables + // so that each lhs variable depends on the same + // rhs initializer (n:1 var declaration). + var d1 *declInfo + if len(s.Values) == 1 { + // The lhs elements are only set up after the foor loop below, + // but that's ok because declareVar only collects the declInfo + // for a later phase. + d1 = &declInfo{file: fileScope, lhs: lhs, typ: s.Type, init: s.Values[0]} + } + + // declare all variables + for i, name := range s.Names { + obj := NewVar(name.Pos(), pkg, name.Name, nil) + lhs[i] = obj + + d := d1 + if d == nil { + // individual assignments + var init ast.Expr + if i < len(s.Values) { + init = s.Values[i] + } + d = &declInfo{file: fileScope, typ: s.Type, init: init} + } + + check.declarePkgObj(name, obj, d) + } + + check.arityMatch(s, nil) + + default: + check.invalidAST(s.Pos(), "invalid token %s", d.Tok) + } + + case *ast.TypeSpec: + obj := NewTypeName(s.Name.Pos(), pkg, s.Name.Name, nil) + check.declarePkgObj(s.Name, obj, &declInfo{file: fileScope, typ: s.Type}) + + default: + check.invalidAST(s.Pos(), "unknown ast.Spec node %T", s) + } + } + + case *ast.FuncDecl: + name := d.Name.Name + obj := NewFunc(d.Name.Pos(), pkg, name, nil) + if d.Recv == nil { + // regular function + if name == "init" { + // don't declare init functions in the package scope - they are invisible + obj.parent = pkg.scope + check.recordDef(d.Name, obj) + // init functions must have a body + if d.Body == nil { + check.softErrorf(obj.pos, "missing function body") + } + } else { + check.declare(pkg.scope, d.Name, obj) + } + } else { + // method + check.recordDef(d.Name, obj) + // Associate method with receiver base type name, if possible. + // Ignore methods that have an invalid receiver, or a blank _ + // receiver name. They will be type-checked later, with regular + // functions. + if list := d.Recv.List; len(list) > 0 { + typ := list[0].Type + if ptr, _ := typ.(*ast.StarExpr); ptr != nil { + typ = ptr.X + } + if base, _ := typ.(*ast.Ident); base != nil && base.Name != "_" { + check.assocMethod(base.Name, obj) + } + } + } + info := &declInfo{file: fileScope, fdecl: d} + check.objMap[obj] = info + + default: + check.invalidAST(d.Pos(), "unknown ast.Decl node %T", d) + } + } + } + + // verify that objects in package and file scopes have different names + for _, scope := range check.fileScopes { + for _, obj := range scope.elems { + if alt := pkg.scope.Lookup(obj.Name()); alt != nil { + check.errorf(alt.Pos(), "%s already declared in this file through import of package %s", obj.Name(), obj.Pkg().Name()) + } + } + } +} + +// packageObjects typechecks all package objects in check.objMap, but not function bodies. +func (check *checker) packageObjects(objList []Object) { + // add new methods to already type-checked types (from a prior Checker.Files call) + for _, obj := range objList { + if obj, _ := obj.(*TypeName); obj != nil && obj.typ != nil { + check.addMethodDecls(obj) + } + } + + // pre-allocate space for type declaration paths so that the underlying array is reused + typePath := make([]*TypeName, 0, 8) + + for _, obj := range objList { + check.objDecl(obj, nil, typePath) + } + + // At this point we may have a non-empty check.methods map; this means that not all + // entries were deleted at the end of typeDecl because the respective receiver base + // types were not found. In that case, an error was reported when declaring those + // methods. We can now safely discard this map. + check.methods = nil +} + +// functionBodies typechecks all function bodies. +func (check *checker) functionBodies() { + for _, f := range check.funcs { + check.funcBody(f.decl, f.name, f.sig, f.body) + } +} + +// initDependencies computes initialization dependencies. +func (check *checker) initDependencies(objList []Object) { + // pre-allocate space for initialization paths so that the underlying array is reused + initPath := make([]Object, 0, 8) + + for _, obj := range objList { + switch obj.(type) { + case *Const, *Var: + if check.objMap[obj].hasInitializer() { + check.dependencies(obj, initPath) + } + } + } +} + +// unusedImports checks for unused imports. +func (check *checker) unusedImports() { + // if function bodies are not checked, packages' uses are likely missing - don't check + if check.conf.IgnoreFuncBodies { + return + } + + // spec: "It is illegal (...) to directly import a package without referring to + // any of its exported identifiers. To import a package solely for its side-effects + // (initialization), use the blank identifier as explicit package name." + for i, scope := range check.fileScopes { + var usedDotImports map[*Package]bool // lazily allocated + for _, obj := range scope.elems { + switch obj := obj.(type) { + case *PkgName: + // Unused "blank imports" are automatically ignored + // since _ identifiers are not entered into scopes. + if !obj.used { + check.softErrorf(obj.pos, "%q imported but not used", obj.pkg.path) + } + default: + // All other objects in the file scope must be dot- + // imported. If an object was used, mark its package + // as used. + if obj.isUsed() { + if usedDotImports == nil { + usedDotImports = make(map[*Package]bool) + } + usedDotImports[obj.Pkg()] = true + } + } + } + // Iterate through all dot-imports for this file and + // check if the corresponding package was used. + for pkg, pos := range check.dotImports[i] { + if !usedDotImports[pkg] { + check.softErrorf(pos, "%q imported but not used", pkg.path) + } + } + } +} + +func orderedSetObjects(set map[Object]bool) []Object { + list := make([]Object, len(set)) + i := 0 + for obj := range set { + // we don't care about the map element value + list[i] = obj + i++ + } + sort.Sort(inSourceOrder(list)) + return list +} + +// inSourceOrder implements the sort.Sort interface. +type inSourceOrder []Object + +func (a inSourceOrder) Len() int { return len(a) } +func (a inSourceOrder) Less(i, j int) bool { return a[i].Pos() < a[j].Pos() } +func (a inSourceOrder) Swap(i, j int) { a[i], a[j] = a[j], a[i] } + +// dependencies recursively traverses the initialization dependency graph in a depth-first +// manner and appends the encountered variables in postorder to the Info.InitOrder list. +// As a result, that list ends up being sorted topologically in the order of dependencies. +// +// Path contains all nodes on the path to the current node obj (excluding obj). +// +// To detect cyles, the nodes are marked as follows: Initially, all nodes are unmarked +// (declInfo.mark == 0). On the way down, a node is appended to the path, and the node +// is marked with a value > 0 ("in progress"). On the way up, a node is marked with a +// value < 0 ("finished"). A cycle is detected if a node is reached that is marked as +// "in progress". +// +// A cycle must contain at least one variable to be invalid (cycles containing only +// functions are permitted). To detect such a cycle, and in order to print it, the +// mark value indicating "in progress" is the path length up to (and including) the +// current node; i.e. the length of the path after appending the node. Naturally, +// that value is > 0 as required for "in progress" marks. In other words, each node's +// "in progress" mark value corresponds to the node's path index plus 1. Accordingly, +// when the first node of a cycle is reached, that node's mark value indicates the +// start of the cycle in the path. The tail of the path (path[mark-1:]) contains all +// nodes of the cycle. +// +func (check *checker) dependencies(obj Object, path []Object) { + init := check.objMap[obj] + if init.mark < 0 { + return // finished + } + + if init.mark > 0 { + // cycle detected - find index of first constant or variable in cycle, if any + first := -1 + cycle := path[init.mark-1:] + L: + for i, obj := range cycle { + switch obj.(type) { + case *Const, *Var: + first = i + break L + } + } + // only report an error if there's at least one constant or variable + if first >= 0 { + obj := cycle[first] + check.errorf(obj.Pos(), "initialization cycle for %s", obj.Name()) + // print cycle + i := first + for _ = range cycle { + check.errorf(obj.Pos(), "\t%s refers to", obj.Name()) // secondary error, \t indented + i++ + if i >= len(cycle) { + i = 0 + } + obj = cycle[i] + } + check.errorf(obj.Pos(), "\t%s", obj.Name()) + + } + init.mark = -1 // avoid further errors + return + } + + // init.mark == 0 + + path = append(path, obj) // len(path) > 0 + init.mark = len(path) // init.mark > 0 + for _, obj := range orderedSetObjects(init.deps) { + check.dependencies(obj, path) + } + init.mark = -1 // init.mark < 0 + + // record the init order for variables only + if this, _ := obj.(*Var); this != nil { + initLhs := init.lhs // possibly nil (see declInfo.lhs field comment) + if initLhs == nil { + initLhs = []*Var{this} + } + check.Info.InitOrder = append(check.Info.InitOrder, &Initializer{initLhs, init.init}) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/resolver_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/resolver_test.go new file mode 100644 index 00000000..9fc98931 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/resolver_test.go @@ -0,0 +1,187 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "fmt" + "go/ast" + "go/parser" + "go/token" + "sort" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +var sources = []string{ + ` + package p + import "fmt" + import "math" + const pi = math.Pi + func sin(x float64) float64 { + return math.Sin(x) + } + var Println = fmt.Println + `, + ` + package p + import "fmt" + type errorStringer struct { fmt.Stringer; error } + func f() string { + _ = "foo" + return fmt.Sprintf("%d", g()) + } + func g() (x int) { return } + `, + ` + package p + import . "go/parser" + import "sync" + func h() Mode { return ImportsOnly } + var _, x int = 1, 2 + func init() {} + type T struct{ *sync.Mutex; a, b, c int} + type I interface{ m() } + var _ = T{a: 1, b: 2, c: 3} + func (_ T) m() {} + func (T) _() {} + var i I + var _ = i.m + func _(s []int) { for i, x := range s { _, _ = i, x } } + func _(x interface{}) { + switch x := x.(type) { + case int: + _ = x + } + switch {} // implicit 'true' tag + } + `, + ` + package p + type S struct{} + func (T) _() {} + func (T) _() {} + `, + ` + package p + func _() { + L0: + L1: + goto L0 + for { + goto L1 + } + if true { + goto L2 + } + L2: + } + `, +} + +var pkgnames = []string{ + "fmt", + "math", +} + +func TestResolveIdents(t *testing.T) { + // parse package files + fset := token.NewFileSet() + var files []*ast.File + for i, src := range sources { + f, err := parser.ParseFile(fset, fmt.Sprintf("sources[%d]", i), src, parser.DeclarationErrors) + if err != nil { + t.Fatal(err) + } + files = append(files, f) + } + + // resolve and type-check package AST + var conf Config + uses := make(map[*ast.Ident]Object) + defs := make(map[*ast.Ident]Object) + _, err := conf.Check("testResolveIdents", fset, files, &Info{Defs: defs, Uses: uses}) + if err != nil { + t.Fatal(err) + } + + // check that all packages were imported + for _, name := range pkgnames { + if conf.Packages[name] == nil { + t.Errorf("package %s not imported", name) + } + } + + // check that qualified identifiers are resolved + for _, f := range files { + ast.Inspect(f, func(n ast.Node) bool { + if s, ok := n.(*ast.SelectorExpr); ok { + if x, ok := s.X.(*ast.Ident); ok { + obj := uses[x] + if obj == nil { + t.Errorf("%s: unresolved qualified identifier %s", fset.Position(x.Pos()), x.Name) + return false + } + if _, ok := obj.(*PkgName); ok && uses[s.Sel] == nil { + t.Errorf("%s: unresolved selector %s", fset.Position(s.Sel.Pos()), s.Sel.Name) + return false + } + return false + } + return false + } + return true + }) + } + + for id, obj := range uses { + if obj == nil { + t.Errorf("%s: Uses[%s] == nil", fset.Position(id.Pos()), id.Name) + } + } + + // check that each identifier in the source is found in uses or defs or both + var both []string + for _, f := range files { + ast.Inspect(f, func(n ast.Node) bool { + if x, ok := n.(*ast.Ident); ok { + var objects int + if _, found := uses[x]; found { + objects |= 1 + delete(uses, x) + } + if _, found := defs[x]; found { + objects |= 2 + delete(defs, x) + } + if objects == 0 { + t.Errorf("%s: unresolved identifier %s", fset.Position(x.Pos()), x.Name) + } else if objects == 3 { + both = append(both, x.Name) + } + return false + } + return true + }) + } + + // check the expected set of idents that are simultaneously uses and defs + sort.Strings(both) + if got, want := fmt.Sprint(both), "[Mutex Stringer error]"; got != want { + t.Errorf("simultaneous uses/defs = %s, want %s", got, want) + } + + // any left-over identifiers didn't exist in the source + for x := range uses { + t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name) + } + for x := range defs { + t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name) + } + + // TODO(gri) add tests to check ImplicitObj callbacks +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/return.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/return.go new file mode 100644 index 00000000..f16a318b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/return.go @@ -0,0 +1,185 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements isTerminating. + +package types + +import ( + "go/ast" + "go/token" +) + +// isTerminating reports if s is a terminating statement. +// If s is labeled, label is the label name; otherwise s +// is "". +func (check *checker) isTerminating(s ast.Stmt, label string) bool { + switch s := s.(type) { + default: + unreachable() + + case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.SendStmt, + *ast.IncDecStmt, *ast.AssignStmt, *ast.GoStmt, *ast.DeferStmt, + *ast.RangeStmt: + // no chance + + case *ast.LabeledStmt: + return check.isTerminating(s.Stmt, s.Label.Name) + + case *ast.ExprStmt: + // the predeclared (possibly parenthesized) panic() function is terminating + if call, _ := unparen(s.X).(*ast.CallExpr); call != nil { + if id, _ := call.Fun.(*ast.Ident); id != nil { + if obj := check.scope.LookupParent(id.Name); obj != nil { + if b, _ := obj.(*Builtin); b != nil && b.id == _Panic { + return true + } + } + } + } + + case *ast.ReturnStmt: + return true + + case *ast.BranchStmt: + if s.Tok == token.GOTO || s.Tok == token.FALLTHROUGH { + return true + } + + case *ast.BlockStmt: + return check.isTerminatingList(s.List, "") + + case *ast.IfStmt: + if s.Else != nil && + check.isTerminating(s.Body, "") && + check.isTerminating(s.Else, "") { + return true + } + + case *ast.SwitchStmt: + return check.isTerminatingSwitch(s.Body, label) + + case *ast.TypeSwitchStmt: + return check.isTerminatingSwitch(s.Body, label) + + case *ast.SelectStmt: + for _, s := range s.Body.List { + cc := s.(*ast.CommClause) + if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true) { + return false + } + + } + return true + + case *ast.ForStmt: + if s.Cond == nil && !hasBreak(s.Body, label, true) { + return true + } + } + + return false +} + +func (check *checker) isTerminatingList(list []ast.Stmt, label string) bool { + n := len(list) + return n > 0 && check.isTerminating(list[n-1], label) +} + +func (check *checker) isTerminatingSwitch(body *ast.BlockStmt, label string) bool { + hasDefault := false + for _, s := range body.List { + cc := s.(*ast.CaseClause) + if cc.List == nil { + hasDefault = true + } + if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true) { + return false + } + } + return hasDefault +} + +// TODO(gri) For nested breakable statements, the current implementation of hasBreak +// will traverse the same subtree repeatedly, once for each label. Replace +// with a single-pass label/break matching phase. + +// hasBreak reports if s is or contains a break statement +// referring to the label-ed statement or implicit-ly the +// closest outer breakable statement. +func hasBreak(s ast.Stmt, label string, implicit bool) bool { + switch s := s.(type) { + default: + unreachable() + + case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.ExprStmt, + *ast.SendStmt, *ast.IncDecStmt, *ast.AssignStmt, *ast.GoStmt, + *ast.DeferStmt, *ast.ReturnStmt: + // no chance + + case *ast.LabeledStmt: + return hasBreak(s.Stmt, label, implicit) + + case *ast.BranchStmt: + if s.Tok == token.BREAK { + if s.Label == nil { + return implicit + } + if s.Label.Name == label { + return true + } + } + + case *ast.BlockStmt: + return hasBreakList(s.List, label, implicit) + + case *ast.IfStmt: + if hasBreak(s.Body, label, implicit) || + s.Else != nil && hasBreak(s.Else, label, implicit) { + return true + } + + case *ast.CaseClause: + return hasBreakList(s.Body, label, implicit) + + case *ast.SwitchStmt: + if label != "" && hasBreak(s.Body, label, false) { + return true + } + + case *ast.TypeSwitchStmt: + if label != "" && hasBreak(s.Body, label, false) { + return true + } + + case *ast.CommClause: + return hasBreakList(s.Body, label, implicit) + + case *ast.SelectStmt: + if label != "" && hasBreak(s.Body, label, false) { + return true + } + + case *ast.ForStmt: + if label != "" && hasBreak(s.Body, label, false) { + return true + } + + case *ast.RangeStmt: + if label != "" && hasBreak(s.Body, label, false) { + return true + } + } + + return false +} + +func hasBreakList(list []ast.Stmt, label string, implicit bool) bool { + for _, s := range list { + if hasBreak(s, label, implicit) { + return true + } + } + return false +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/scope.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/scope.go new file mode 100644 index 00000000..f33cc68c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/scope.go @@ -0,0 +1,140 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements Scopes. + +package types + +import ( + "bytes" + "fmt" + "io" + "sort" + "strings" +) + +// TODO(gri) Provide scopes with a name or other mechanism so that +// objects can use that information for better printing. + +// A Scope maintains a set of objects and links to its containing +// (parent) and contained (children) scopes. Objects may be inserted +// and looked up by name. The zero value for Scope is a ready-to-use +// empty scope. +type Scope struct { + parent *Scope + children []*Scope + comment string // for debugging only + elems map[string]Object // lazily allocated +} + +// NewScope returns a new, empty scope contained in the given parent +// scope, if any. The comment is for debugging only. +func NewScope(parent *Scope, comment string) *Scope { + s := &Scope{parent: parent, comment: comment} + // don't add children to Universe scope! + if parent != nil && parent != Universe { + parent.children = append(parent.children, s) + } + return s +} + +// Parent returns the scope's containing (parent) scope. +func (s *Scope) Parent() *Scope { return s.parent } + +// Len() returns the number of scope elements. +func (s *Scope) Len() int { return len(s.elems) } + +// Names returns the scope's element names in sorted order. +func (s *Scope) Names() []string { + names := make([]string, len(s.elems)) + i := 0 + for name := range s.elems { + names[i] = name + i++ + } + sort.Strings(names) + return names +} + +// NumChildren() returns the number of scopes nested in s. +func (s *Scope) NumChildren() int { return len(s.children) } + +// Child returns the i'th child scope for 0 <= i < NumChildren(). +func (s *Scope) Child(i int) *Scope { return s.children[i] } + +// Lookup returns the object in scope s with the given name if such an +// object exists; otherwise the result is nil. +func (s *Scope) Lookup(name string) Object { + return s.elems[name] +} + +// LookupParent follows the parent chain of scopes starting with s until +// it finds a scope where Lookup(name) returns a non-nil object, and then +// returns that object. If no such scope exists, the result is nil. +func (s *Scope) LookupParent(name string) Object { + for ; s != nil; s = s.parent { + if obj := s.elems[name]; obj != nil { + return obj + } + } + return nil +} + +// Insert attempts to insert an object obj into scope s. +// If s already contains an alternative object alt with +// the same name, Insert leaves s unchanged and returns alt. +// Otherwise it inserts obj, sets the object's parent scope +// if not already set, and returns nil. +func (s *Scope) Insert(obj Object) Object { + name := obj.Name() + if alt := s.elems[name]; alt != nil { + return alt + } + if s.elems == nil { + s.elems = make(map[string]Object) + } + s.elems[name] = obj + if obj.Parent() == nil { + obj.setParent(s) + } + return nil +} + +// WriteTo writes a string representation of the scope to w, +// with the scope elements sorted by name. +// The level of indentation is controlled by n >= 0, with +// n == 0 for no indentation. +// If recurse is set, it also writes nested (children) scopes. +func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) { + const ind = ". " + indn := strings.Repeat(ind, n) + + fmt.Fprintf(w, "%s%s scope %p {", indn, s.comment, s) + if len(s.elems) == 0 { + fmt.Fprintf(w, "}\n") + return + } + + fmt.Fprintln(w) + indn1 := indn + ind + for _, name := range s.Names() { + fmt.Fprintf(w, "%s%s\n", indn1, s.elems[name]) + } + + if recurse { + for _, s := range s.children { + fmt.Fprintln(w) + s.WriteTo(w, n+1, recurse) + } + } + + fmt.Fprintf(w, "%s}", indn) +} + +// String returns a string representation of the scope, for debugging. +func (s *Scope) String() string { + var buf bytes.Buffer + s.WriteTo(&buf, 0, false) + return buf.String() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/selection.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/selection.go new file mode 100644 index 00000000..d1dd1c81 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/selection.go @@ -0,0 +1,147 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements Selections. + +package types + +import ( + "bytes" + "fmt" +) + +// SelectionKind describes the kind of a selector expression x.f. +type SelectionKind int + +const ( + FieldVal SelectionKind = iota // x.f is a struct field selector + MethodVal // x.f is a method selector + MethodExpr // x.f is a method expression + PackageObj // x.f is a qualified identifier +) + +// A Selection describes a selector expression x.f. +// For the declarations: +// +// type T struct{ x int; E } +// type E struct{} +// func (e E) m() {} +// var p *T +// +// the following relations exist: +// +// Selector Kind Recv Obj Type Index Indirect +// +// p.x FieldVal T x int {0} true +// p.m MethodVal *T m func (e *T) m() {1, 0} true +// T.m MethodExpr T m func m(_ T) {1, 0} false +// math.Pi PackageObj nil Pi untyped numeric nil false +// +type Selection struct { + kind SelectionKind + recv Type // type of x, nil if kind == PackageObj + obj Object // object denoted by x.f + index []int // path from x to x.f, nil if kind == PackageObj + indirect bool // set if there was any pointer indirection on the path, false if kind == PackageObj +} + +// Kind returns the selection kind. +func (s *Selection) Kind() SelectionKind { return s.kind } + +// Recv returns the type of x in x.f. +// The result is nil if x.f is a qualified identifier (PackageObj). +func (s *Selection) Recv() Type { return s.recv } + +// Obj returns the object denoted by x.f. +// The following object types may appear: +// +// Kind Object +// +// FieldVal *Var field +// MethodVal *Func method +// MethodExpr *Func method +// PackageObj *Const, *Type, *Var, *Func imported const, type, var, or func +// +func (s *Selection) Obj() Object { return s.obj } + +// Type returns the type of x.f, which may be different from the type of f. +// See Selection for more information. +func (s *Selection) Type() Type { + switch s.kind { + case MethodVal: + // The type of x.f is a method with its receiver type set + // to the type of x. + sig := *s.obj.(*Func).typ.(*Signature) + recv := *sig.recv + recv.typ = s.recv + sig.recv = &recv + return &sig + + case MethodExpr: + // The type of x.f is a function (without receiver) + // and an additional first argument with the same type as x. + // TODO(gri) Similar code is already in call.go - factor! + sig := *s.obj.(*Func).typ.(*Signature) + arg0 := *sig.recv + sig.recv = nil + arg0.typ = s.recv + var params []*Var + if sig.params != nil { + params = sig.params.vars + } + sig.params = NewTuple(append([]*Var{&arg0}, params...)...) + return &sig + } + + // In all other cases, the type of x.f is the type of x. + return s.obj.Type() +} + +// Index describes the path from x to f in x.f. +// The result is nil if x.f is a qualified identifier (PackageObj). +// +// The last index entry is the field or method index of the type declaring f; +// either: +// +// 1) the list of declared methods of a named type; or +// 2) the list of methods of an interface type; or +// 3) the list of fields of a struct type. +// +// The earlier index entries are the indices of the embedded fields implicitly +// traversed to get from (the type of) x to f, starting at embedding depth 0. +func (s *Selection) Index() []int { return s.index } + +// Indirect reports whether any pointer indirection was required to get from +// x to f in x.f. +// The result is false if x.f is a qualified identifier (PackageObj). +func (s *Selection) Indirect() bool { return s.indirect } + +func (s *Selection) String() string { return SelectionString(nil, s) } + +// SelectionString returns the string form of s. +// Type names are printed package-qualified +// only if they do not belong to this package. +// +func SelectionString(this *Package, s *Selection) string { + var k string + switch s.kind { + case FieldVal: + k = "field " + case MethodVal: + k = "method " + case MethodExpr: + k = "method expr " + case PackageObj: + return fmt.Sprintf("qualified ident %s", s.obj) + default: + unreachable() + } + var buf bytes.Buffer + buf.WriteString(k) + buf.WriteByte('(') + WriteType(&buf, this, s.Recv()) + fmt.Fprintf(&buf, ") %s", s.obj.Name()) + WriteSignature(&buf, this, s.Type().(*Signature)) + return buf.String() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/self_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/self_test.go new file mode 100644 index 00000000..e7342de7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/self_test.go @@ -0,0 +1,101 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "flag" + "fmt" + "go/ast" + "go/parser" + "go/token" + "path/filepath" + "testing" + "time" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +var benchmark = flag.Bool("b", false, "run benchmarks") + +func TestSelf(t *testing.T) { + fset := token.NewFileSet() + files, err := pkgFiles(fset, ".") + if err != nil { + t.Fatal(err) + } + + _, err = Check("go/types", fset, files) + if err != nil { + // Importing go.tools/go/exact doensn't work in the + // build dashboard environment. Don't report an error + // for now so that the build remains green. + // TODO(gri) fix this + t.Log(err) // replace w/ t.Fatal eventually + return + } +} + +func TestBenchmark(t *testing.T) { + if !*benchmark { + return + } + + // We're not using testing's benchmarking mechanism directly + // because we want custom output. + + for _, p := range []string{"types", "exact", "gcimporter"} { + path := filepath.Join("..", p) + runbench(t, path, false) + runbench(t, path, true) + fmt.Println() + } +} + +func runbench(t *testing.T, path string, ignoreFuncBodies bool) { + fset := token.NewFileSet() + files, err := pkgFiles(fset, path) + if err != nil { + t.Fatal(err) + } + + b := testing.Benchmark(func(b *testing.B) { + for i := 0; i < b.N; i++ { + conf := Config{IgnoreFuncBodies: ignoreFuncBodies} + conf.Check(path, fset, files, nil) + } + }) + + // determine line count + lines := 0 + fset.Iterate(func(f *token.File) bool { + lines += f.LineCount() + return true + }) + + d := time.Duration(b.NsPerOp()) + fmt.Printf( + "%s: %s for %d lines (%d lines/s), ignoreFuncBodies = %v\n", + filepath.Base(path), d, lines, int64(float64(lines)/d.Seconds()), ignoreFuncBodies, + ) +} + +func pkgFiles(fset *token.FileSet, path string) ([]*ast.File, error) { + filenames, err := pkgFilenames(path) // from stdlib_test.go + if err != nil { + return nil, err + } + + var files []*ast.File + for _, filename := range filenames { + file, err := parser.ParseFile(fset, filename, nil, 0) + if err != nil { + return nil, err + } + files = append(files, file) + } + + return files, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/sizes.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/sizes.go new file mode 100644 index 00000000..fe24345d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/sizes.go @@ -0,0 +1,201 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements Sizes. + +package types + +// Sizes defines the sizing functions for package unsafe. +type Sizes interface { + // Alignof returns the alignment of a variable of type T. + // Alignof must implement the alignment guarantees required by the spec. + Alignof(T Type) int64 + + // Offsetsof returns the offsets of the given struct fields, in bytes. + // Offsetsof must implement the offset guarantees required by the spec. + Offsetsof(fields []*Var) []int64 + + // Sizeof returns the size of a variable of type T. + // Sizeof must implement the size guarantees required by the spec. + Sizeof(T Type) int64 +} + +// StdSizes is a convenience type for creating commonly used Sizes. +// It makes the following simplifying assumptions: +// +// - The size of explicitly sized basic types (int16, etc.) is the +// specified size. +// - The size of strings and interfaces is 2*WordSize. +// - The size of slices is 3*WordSize. +// - All other types have size WordSize. +// - Arrays and structs are aligned per spec definition; all other +// types are naturally aligned with a maximum alignment MaxAlign. +// +// *StdSizes implements Sizes. +// +type StdSizes struct { + WordSize int64 // word size in bytes - must be >= 4 (32bits) + MaxAlign int64 // maximum alignment in bytes - must be >= 1 +} + +func (s *StdSizes) Alignof(T Type) int64 { + // For arrays and structs, alignment is defined in terms + // of alignment of the elements and fields, respectively. + switch t := T.Underlying().(type) { + case *Array: + // spec: "For a variable x of array type: unsafe.Alignof(x) + // is the same as unsafe.Alignof(x[0]), but at least 1." + return s.Alignof(t.elem) + case *Struct: + // spec: "For a variable x of struct type: unsafe.Alignof(x) + // is the largest of the values unsafe.Alignof(x.f) for each + // field f of x, but at least 1." + max := int64(1) + for _, f := range t.fields { + if a := s.Alignof(f.typ); a > max { + max = a + } + } + return max + } + a := s.Sizeof(T) // may be 0 + // spec: "For a variable x of any type: unsafe.Alignof(x) is at least 1." + if a < 1 { + return 1 + } + if a > s.MaxAlign { + return s.MaxAlign + } + return a +} + +func (s *StdSizes) Offsetsof(fields []*Var) []int64 { + offsets := make([]int64, len(fields)) + var o int64 + for i, f := range fields { + a := s.Alignof(f.typ) + o = align(o, a) + offsets[i] = o + o += s.Sizeof(f.typ) + } + return offsets +} + +var basicSizes = [...]byte{ + Bool: 1, + Int8: 1, + Int16: 2, + Int32: 4, + Int64: 8, + Uint8: 1, + Uint16: 2, + Uint32: 4, + Uint64: 8, + Float32: 4, + Float64: 8, + Complex64: 8, + Complex128: 16, +} + +func (s *StdSizes) Sizeof(T Type) int64 { + switch t := T.Underlying().(type) { + case *Basic: + assert(isTyped(T)) + k := t.kind + if int(k) < len(basicSizes) { + if s := basicSizes[k]; s > 0 { + return int64(s) + } + } + if k == String { + return s.WordSize * 2 + } + case *Array: + a := s.Alignof(t.elem) + z := s.Sizeof(t.elem) + return align(z, a) * t.len // may be 0 + case *Slice: + return s.WordSize * 3 + case *Struct: + n := t.NumFields() + if n == 0 { + return 0 + } + offsets := t.offsets + if t.offsets == nil { + // compute offsets on demand + offsets = s.Offsetsof(t.fields) + t.offsets = offsets + } + return offsets[n-1] + s.Sizeof(t.fields[n-1].typ) + case *Interface: + return s.WordSize * 2 + } + return s.WordSize // catch-all +} + +// stdSizes is used if Config.Sizes == nil. +var stdSizes = StdSizes{8, 8} + +func (conf *Config) alignof(T Type) int64 { + if s := conf.Sizes; s != nil { + if a := s.Alignof(T); a >= 1 { + return a + } + panic("Config.Sizes.Alignof returned an alignment < 1") + } + return stdSizes.Alignof(T) +} + +func (conf *Config) offsetsof(T *Struct) []int64 { + offsets := T.offsets + if offsets == nil && T.NumFields() > 0 { + // compute offsets on demand + if s := conf.Sizes; s != nil { + offsets = s.Offsetsof(T.fields) + // sanity checks + if len(offsets) != T.NumFields() { + panic("Config.Sizes.Offsetsof returned the wrong number of offsets") + } + for _, o := range offsets { + if o < 0 { + panic("Config.Sizes.Offsetsof returned an offset < 0") + } + } + } else { + offsets = stdSizes.Offsetsof(T.fields) + } + T.offsets = offsets + } + return offsets +} + +// offsetof returns the offset of the field specified via +// the index sequence relative to typ. All embedded fields +// must be structs (rather than pointer to structs). +func (conf *Config) offsetof(typ Type, index []int) int64 { + var o int64 + for _, i := range index { + s := typ.Underlying().(*Struct) + o += conf.offsetsof(s)[i] + typ = s.fields[i].typ + } + return o +} + +func (conf *Config) sizeof(T Type) int64 { + if s := conf.Sizes; s != nil { + if z := s.Sizeof(T); z >= 0 { + return z + } + panic("Config.Sizes.Sizeof returned a size < 0") + } + return stdSizes.Sizeof(T) +} + +// align returns the smallest y >= x such that y % a == 0. +func align(x, a int64) int64 { + y := x + a - 1 + return y - y%a +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/stdlib_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/stdlib_test.go new file mode 100644 index 00000000..86da7797 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/stdlib_test.go @@ -0,0 +1,236 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file tests types.Check by using it to +// typecheck the standard library and tests. + +package types_test + +import ( + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/scanner" + "go/token" + "io/ioutil" + "os" + "path/filepath" + "runtime" + "strings" + "testing" + "time" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +var ( + pkgCount int // number of packages processed + start = time.Now() +) + +func TestStdlib(t *testing.T) { + walkDirs(t, filepath.Join(runtime.GOROOT(), "src/pkg")) + if testing.Verbose() { + fmt.Println(pkgCount, "packages typechecked in", time.Since(start)) + } +} + +// firstComment returns the contents of the first comment in +// the given file, assuming there's one within the first KB. +func firstComment(filename string) string { + f, err := os.Open(filename) + if err != nil { + return "" + } + defer f.Close() + + var src [1 << 10]byte // read at most 1KB + n, _ := f.Read(src[:]) + + var s scanner.Scanner + s.Init(fset.AddFile("", fset.Base(), n), src[:n], nil, scanner.ScanComments) + for { + _, tok, lit := s.Scan() + switch tok { + case token.COMMENT: + // remove trailing */ of multi-line comment + if lit[1] == '*' { + lit = lit[:len(lit)-2] + } + return strings.TrimSpace(lit[2:]) + case token.EOF: + return "" + } + } +} + +func testTestDir(t *testing.T, path string, ignore ...string) { + files, err := ioutil.ReadDir(path) + if err != nil { + t.Fatal(err) + } + + excluded := make(map[string]bool) + for _, filename := range ignore { + excluded[filename] = true + } + + fset := token.NewFileSet() + for _, f := range files { + // filter directory contents + if f.IsDir() || !strings.HasSuffix(f.Name(), ".go") || excluded[f.Name()] { + continue + } + + // get per-file instructions + expectErrors := false + filename := filepath.Join(path, f.Name()) + if cmd := firstComment(filename); cmd != "" { + switch cmd { + case "skip", "compiledir": + continue // ignore this file + case "errorcheck": + expectErrors = true + } + } + + // parse and type-check file + file, err := parser.ParseFile(fset, filename, nil, 0) + if err == nil { + _, err = Check(filename, fset, []*ast.File{file}) + } + + if expectErrors { + if err == nil { + t.Errorf("expected errors but found none in %s", filename) + } + } else { + if err != nil { + t.Error(err) + } + } + } +} + +func TestStdTest(t *testing.T) { + testTestDir(t, filepath.Join(runtime.GOROOT(), "test"), + "cmplxdivide.go", // also needs file cmplxdivide1.go - ignore + "sigchld.go", // don't work on Windows; testTestDir should consult build tags + ) +} + +func TestStdFixed(t *testing.T) { + testTestDir(t, filepath.Join(runtime.GOROOT(), "test", "fixedbugs"), + "bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore + "bug459.go", // possibly incorrect test - see issue 6703 (pending spec clarification) + "issue3924.go", // possibly incorrect test - see issue 6671 (pending spec clarification) + "issue6889.go", // gc-specific test + ) +} + +func TestStdKen(t *testing.T) { + testTestDir(t, filepath.Join(runtime.GOROOT(), "test", "ken")) +} + +// Package paths of excluded packages. +var excluded = map[string]bool{ + "builtin": true, +} + +// typecheck typechecks the given package files. +func typecheck(t *testing.T, path string, filenames []string) { + fset := token.NewFileSet() + + // parse package files + var files []*ast.File + for _, filename := range filenames { + file, err := parser.ParseFile(fset, filename, nil, parser.AllErrors) + if err != nil { + // the parser error may be a list of individual errors; report them all + if list, ok := err.(scanner.ErrorList); ok { + for _, err := range list { + t.Error(err) + } + return + } + t.Error(err) + return + } + + if testing.Verbose() { + if len(files) == 0 { + fmt.Println("package", file.Name.Name) + } + fmt.Println("\t", filename) + } + + files = append(files, file) + } + + // typecheck package files + var conf Config + conf.Error = func(err error) { t.Error(err) } + conf.Check(path, fset, files, nil) + pkgCount++ +} + +// pkgFilenames returns the list of package filenames for the given directory. +func pkgFilenames(dir string) ([]string, error) { + ctxt := build.Default + ctxt.CgoEnabled = false + pkg, err := ctxt.ImportDir(dir, 0) + if err != nil { + if _, nogo := err.(*build.NoGoError); nogo { + return nil, nil // no *.go files, not an error + } + return nil, err + } + if excluded[pkg.ImportPath] { + return nil, nil + } + var filenames []string + for _, name := range pkg.GoFiles { + filenames = append(filenames, filepath.Join(pkg.Dir, name)) + } + for _, name := range pkg.TestGoFiles { + filenames = append(filenames, filepath.Join(pkg.Dir, name)) + } + return filenames, nil +} + +// Note: Could use filepath.Walk instead of walkDirs but that wouldn't +// necessarily be shorter or clearer after adding the code to +// terminate early for -short tests. + +func walkDirs(t *testing.T, dir string) { + // limit run time for short tests + if testing.Short() && time.Since(start) >= 750*time.Millisecond { + return + } + + fis, err := ioutil.ReadDir(dir) + if err != nil { + t.Error(err) + return + } + + // typecheck package in directory + files, err := pkgFilenames(dir) + if err != nil { + t.Error(err) + return + } + if files != nil { + typecheck(t, dir, files) + } + + // traverse subdirectories, but don't walk into testdata + for _, fi := range fis { + if fi.IsDir() && fi.Name() != "testdata" { + walkDirs(t, filepath.Join(dir, fi.Name())) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/stmt.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/stmt.go new file mode 100644 index 00000000..92fd730e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/stmt.go @@ -0,0 +1,727 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements typechecking of statements. + +package types + +import ( + "fmt" + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/exact" +) + +func (check *checker) funcBody(decl *declInfo, name string, sig *Signature, body *ast.BlockStmt) { + if trace { + if name == "" { + name = "" + } + fmt.Printf("--- %s: %s {\n", name, sig) + defer fmt.Println("--- ") + } + + // save/restore current context and setup function context + // (and use 0 indentation at function start) + defer func(ctxt context, indent int) { + check.context = ctxt + check.indent = indent + }(check.context, check.indent) + check.context = context{ + decl: decl, + scope: sig.scope, + sig: sig, + } + check.indent = 0 + + check.stmtList(0, body.List) + + if check.hasLabel { + check.labels(body) + } + + if sig.results.Len() > 0 && !check.isTerminating(body, "") { + check.error(body.Rbrace, "missing return") + } + + // spec: "Implementation restriction: A compiler may make it illegal to + // declare a variable inside a function body if the variable is never used." + // (One could check each scope after use, but that distributes this check + // over several places because CloseScope is not always called explicitly.) + check.usage(sig.scope) +} + +func (check *checker) usage(scope *Scope) { + for _, obj := range scope.elems { + if v, _ := obj.(*Var); v != nil && !v.used { + check.softErrorf(v.pos, "%s declared but not used", v.name) + } + } + for _, scope := range scope.children { + check.usage(scope) + } +} + +// stmtContext is a bitset describing the environment +// (outer statements) containing a statement. +type stmtContext uint + +const ( + fallthroughOk stmtContext = 1 << iota + inBreakable + inContinuable +) + +func (check *checker) initStmt(s ast.Stmt) { + if s != nil { + check.stmt(0, s) + } +} + +func (check *checker) stmtList(ctxt stmtContext, list []ast.Stmt) { + ok := ctxt&fallthroughOk != 0 + inner := ctxt &^ fallthroughOk + for i, s := range list { + inner := inner + if ok && i+1 == len(list) { + inner |= fallthroughOk + } + check.stmt(inner, s) + } +} + +func (check *checker) multipleDefaults(list []ast.Stmt) { + var first ast.Stmt + for _, s := range list { + var d ast.Stmt + switch c := s.(type) { + case *ast.CaseClause: + if len(c.List) == 0 { + d = s + } + case *ast.CommClause: + if c.Comm == nil { + d = s + } + default: + check.invalidAST(s.Pos(), "case/communication clause expected") + } + if d != nil { + if first != nil { + check.errorf(d.Pos(), "multiple defaults (first at %s)", first.Pos()) + } else { + first = d + } + } + } +} + +func (check *checker) openScope(s ast.Stmt, comment string) { + scope := NewScope(check.scope, comment) + check.recordScope(s, scope) + check.scope = scope +} + +func (check *checker) closeScope() { + check.scope = check.scope.Parent() +} + +func assignOp(op token.Token) token.Token { + // token_test.go verifies the token ordering this function relies on + if token.ADD_ASSIGN <= op && op <= token.AND_NOT_ASSIGN { + return op + (token.ADD - token.ADD_ASSIGN) + } + return token.ILLEGAL +} + +func (check *checker) suspendedCall(keyword string, call *ast.CallExpr) { + var x operand + var msg string + switch check.rawExpr(&x, call, nil) { + case conversion: + msg = "requires function call, not conversion" + case expression: + msg = "discards result of" + case statement: + return + default: + unreachable() + } + check.errorf(x.pos(), "%s %s %s", keyword, msg, &x) +} + +func (check *checker) caseValues(x operand /* copy argument (not *operand!) */, values []ast.Expr) { + // No duplicate checking for now. See issue 4524. + for _, e := range values { + var y operand + check.expr(&y, e) + if y.mode == invalid { + return + } + // TODO(gri) The convertUntyped call pair below appears in other places. Factor! + // Order matters: By comparing y against x, error positions are at the case values. + check.convertUntyped(&y, x.typ) + if y.mode == invalid { + return + } + check.convertUntyped(&x, y.typ) + if x.mode == invalid { + return + } + check.comparison(&y, &x, token.EQL) + } +} + +func (check *checker) caseTypes(x *operand, xtyp *Interface, types []ast.Expr, seen map[Type]token.Pos) (T Type) { +L: + for _, e := range types { + T = check.typOrNil(e) + if T == Typ[Invalid] { + continue + } + // complain about duplicate types + // TODO(gri) use a type hash to avoid quadratic algorithm + for t, pos := range seen { + if T == nil && t == nil || T != nil && t != nil && Identical(T, t) { + // talk about "case" rather than "type" because of nil case + check.error(e.Pos(), "duplicate case in type switch") + check.errorf(pos, "\tprevious case %s", T) // secondary error, \t indented + continue L + } + } + seen[T] = e.Pos() + if T != nil { + check.typeAssertion(e.Pos(), x, xtyp, T) + } + } + return +} + +// stmt typechecks statement s. +func (check *checker) stmt(ctxt stmtContext, s ast.Stmt) { + // statements cannot use iota in general + // (constant declarations set it explicitly) + assert(check.iota == nil) + + // statements must end with the same top scope as they started with + if debug { + defer func(scope *Scope) { + // don't check if code is panicking + if p := recover(); p != nil { + panic(p) + } + assert(scope == check.scope) + }(check.scope) + } + + inner := ctxt &^ fallthroughOk + switch s := s.(type) { + case *ast.BadStmt, *ast.EmptyStmt: + // ignore + + case *ast.DeclStmt: + check.declStmt(s.Decl) + + case *ast.LabeledStmt: + check.hasLabel = true + check.stmt(ctxt, s.Stmt) + + case *ast.ExprStmt: + // spec: "With the exception of specific built-in functions, + // function and method calls and receive operations can appear + // in statement context. Such statements may be parenthesized." + var x operand + kind := check.rawExpr(&x, s.X, nil) + var msg string + switch x.mode { + default: + if kind == statement { + return + } + msg = "is not used" + case builtin: + msg = "must be called" + case typexpr: + msg = "is not an expression" + } + check.errorf(x.pos(), "%s %s", &x, msg) + + case *ast.SendStmt: + var ch, x operand + check.expr(&ch, s.Chan) + check.expr(&x, s.Value) + if ch.mode == invalid || x.mode == invalid { + return + } + if tch, ok := ch.typ.Underlying().(*Chan); !ok || tch.dir == RecvOnly || !check.assignment(&x, tch.elem) { + if x.mode != invalid { + check.invalidOp(ch.pos(), "cannot send %s to channel %s", &x, &ch) + } + } + + case *ast.IncDecStmt: + var op token.Token + switch s.Tok { + case token.INC: + op = token.ADD + case token.DEC: + op = token.SUB + default: + check.invalidAST(s.TokPos, "unknown inc/dec operation %s", s.Tok) + return + } + var x operand + Y := &ast.BasicLit{ValuePos: s.X.Pos(), Kind: token.INT, Value: "1"} // use x's position + check.binary(&x, s.X, Y, op) + if x.mode == invalid { + return + } + check.assignVar(s.X, &x) + + case *ast.AssignStmt: + switch s.Tok { + case token.ASSIGN, token.DEFINE: + if len(s.Lhs) == 0 { + check.invalidAST(s.Pos(), "missing lhs in assignment") + return + } + if s.Tok == token.DEFINE { + check.shortVarDecl(s.TokPos, s.Lhs, s.Rhs) + } else { + // regular assignment + check.assignVars(s.Lhs, s.Rhs) + } + + default: + // assignment operations + if len(s.Lhs) != 1 || len(s.Rhs) != 1 { + check.errorf(s.TokPos, "assignment operation %s requires single-valued expressions", s.Tok) + return + } + op := assignOp(s.Tok) + if op == token.ILLEGAL { + check.invalidAST(s.TokPos, "unknown assignment operation %s", s.Tok) + return + } + var x operand + check.binary(&x, s.Lhs[0], s.Rhs[0], op) + if x.mode == invalid { + return + } + check.assignVar(s.Lhs[0], &x) + } + + case *ast.GoStmt: + check.suspendedCall("go", s.Call) + + case *ast.DeferStmt: + check.suspendedCall("defer", s.Call) + + case *ast.ReturnStmt: + res := check.sig.results + if res.Len() > 0 { + // function returns results + // (if one, say the first, result parameter is named, all of them are named) + if len(s.Results) == 0 && res.vars[0].name != "" { + // spec: "Implementation restriction: A compiler may disallow an empty expression + // list in a "return" statement if a different entity (constant, type, or variable) + // with the same name as a result parameter is in scope at the place of the return." + for _, obj := range res.vars { + if alt := check.scope.LookupParent(obj.name); alt != nil && alt != obj { + check.errorf(s.Pos(), "result parameter %s not in scope at return", obj.name) + check.errorf(alt.Pos(), "\tinner declaration of %s", obj) + // ok to continue + } + } + } else { + // return has results or result parameters are unnamed + check.initVars(res.vars, s.Results, s.Return) + } + } else if len(s.Results) > 0 { + check.error(s.Results[0].Pos(), "no result values expected") + check.use(s.Results...) + } + + case *ast.BranchStmt: + if s.Label != nil { + check.hasLabel = true + return // checked in 2nd pass (check.labels) + } + switch s.Tok { + case token.BREAK: + if ctxt&inBreakable == 0 { + check.error(s.Pos(), "break not in for, switch, or select statement") + } + case token.CONTINUE: + if ctxt&inContinuable == 0 { + check.error(s.Pos(), "continue not in for statement") + } + case token.FALLTHROUGH: + if ctxt&fallthroughOk == 0 { + check.error(s.Pos(), "fallthrough statement out of place") + } + default: + check.invalidAST(s.Pos(), "branch statement: %s", s.Tok) + } + + case *ast.BlockStmt: + check.openScope(s, "block") + defer check.closeScope() + + check.stmtList(inner, s.List) + + case *ast.IfStmt: + check.openScope(s, "if") + defer check.closeScope() + + check.initStmt(s.Init) + var x operand + check.expr(&x, s.Cond) + if x.mode != invalid && !isBoolean(x.typ) { + check.error(s.Cond.Pos(), "non-boolean condition in if statement") + } + check.stmt(inner, s.Body) + if s.Else != nil { + check.stmt(inner, s.Else) + } + + case *ast.SwitchStmt: + inner |= inBreakable + check.openScope(s, "switch") + defer check.closeScope() + + check.initStmt(s.Init) + var x operand + if s.Tag != nil { + check.expr(&x, s.Tag) + } else { + // spec: "A missing switch expression is + // equivalent to the boolean value true." + x.mode = constant + x.typ = Typ[Bool] + x.val = exact.MakeBool(true) + x.expr = &ast.Ident{NamePos: s.Body.Lbrace, Name: "true"} + } + + check.multipleDefaults(s.Body.List) + + for i, c := range s.Body.List { + clause, _ := c.(*ast.CaseClause) + if clause == nil { + check.invalidAST(c.Pos(), "incorrect expression switch case") + continue + } + if x.mode != invalid { + check.caseValues(x, clause.List) + } + check.openScope(clause, "case") + inner := inner + if i+1 < len(s.Body.List) { + inner |= fallthroughOk + } + check.stmtList(inner, clause.Body) + check.closeScope() + } + + case *ast.TypeSwitchStmt: + inner |= inBreakable + check.openScope(s, "type switch") + defer check.closeScope() + + check.initStmt(s.Init) + + // A type switch guard must be of the form: + // + // TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" . + // + // The parser is checking syntactic correctness; + // remaining syntactic errors are considered AST errors here. + // TODO(gri) better factoring of error handling (invalid ASTs) + // + var lhs *ast.Ident // lhs identifier or nil + var rhs ast.Expr + switch guard := s.Assign.(type) { + case *ast.ExprStmt: + rhs = guard.X + case *ast.AssignStmt: + if len(guard.Lhs) != 1 || guard.Tok != token.DEFINE || len(guard.Rhs) != 1 { + check.invalidAST(s.Pos(), "incorrect form of type switch guard") + return + } + + lhs, _ = guard.Lhs[0].(*ast.Ident) + if lhs == nil { + check.invalidAST(s.Pos(), "incorrect form of type switch guard") + return + } + check.recordDef(lhs, nil) // lhs variable is implicitly declared in each cause clause + + rhs = guard.Rhs[0] + + default: + check.invalidAST(s.Pos(), "incorrect form of type switch guard") + return + } + + // rhs must be of the form: expr.(type) and expr must be an interface + expr, _ := rhs.(*ast.TypeAssertExpr) + if expr == nil || expr.Type != nil { + check.invalidAST(s.Pos(), "incorrect form of type switch guard") + return + } + var x operand + check.expr(&x, expr.X) + if x.mode == invalid { + return + } + xtyp, _ := x.typ.Underlying().(*Interface) + if xtyp == nil { + check.errorf(x.pos(), "%s is not an interface", &x) + return + } + + check.multipleDefaults(s.Body.List) + + var lhsVars []*Var // list of implicitly declared lhs variables + seen := make(map[Type]token.Pos) // map of seen types to positions + for _, s := range s.Body.List { + clause, _ := s.(*ast.CaseClause) + if clause == nil { + check.invalidAST(s.Pos(), "incorrect type switch case") + continue + } + // Check each type in this type switch case. + T := check.caseTypes(&x, xtyp, clause.List, seen) + check.openScope(clause, "case") + // If lhs exists, declare a corresponding variable in the case-local scope. + if lhs != nil { + // spec: "The TypeSwitchGuard may include a short variable declaration. + // When that form is used, the variable is declared at the beginning of + // the implicit block in each clause. In clauses with a case listing + // exactly one type, the variable has that type; otherwise, the variable + // has the type of the expression in the TypeSwitchGuard." + if len(clause.List) != 1 || T == nil { + T = x.typ + } + obj := NewVar(lhs.Pos(), check.pkg, lhs.Name, T) + check.declare(check.scope, nil, obj) + check.recordImplicit(clause, obj) + // For the "declared but not used" error, all lhs variables act as + // one; i.e., if any one of them is 'used', all of them are 'used'. + // Collect them for later analysis. + lhsVars = append(lhsVars, obj) + } + check.stmtList(inner, clause.Body) + check.closeScope() + } + + // If lhs exists, we must have at least one lhs variable that was used. + if lhs != nil { + var used bool + for _, v := range lhsVars { + if v.used { + used = true + } + v.used = true // avoid usage error when checking entire function + } + if !used { + check.softErrorf(lhs.Pos(), "%s declared but not used", lhs.Name) + } + } + + case *ast.SelectStmt: + inner |= inBreakable + + check.multipleDefaults(s.Body.List) + + for _, s := range s.Body.List { + clause, _ := s.(*ast.CommClause) + if clause == nil { + continue // error reported before + } + + // clause.Comm must be a SendStmt, RecvStmt, or default case + valid := false + var rhs ast.Expr // rhs of RecvStmt, or nil + switch s := clause.Comm.(type) { + case nil, *ast.SendStmt: + valid = true + case *ast.AssignStmt: + if len(s.Rhs) == 1 { + rhs = s.Rhs[0] + } + case *ast.ExprStmt: + rhs = s.X + } + + // if present, rhs must be a receive operation + if rhs != nil { + if x, _ := unparen(rhs).(*ast.UnaryExpr); x != nil && x.Op == token.ARROW { + valid = true + } + } + + if !valid { + check.error(clause.Comm.Pos(), "select case must be send or receive (possibly with assignment)") + continue + } + + check.openScope(s, "case") + defer check.closeScope() + if clause.Comm != nil { + check.stmt(inner, clause.Comm) + } + check.stmtList(inner, clause.Body) + } + + case *ast.ForStmt: + inner |= inBreakable | inContinuable + check.openScope(s, "for") + defer check.closeScope() + + check.initStmt(s.Init) + if s.Cond != nil { + var x operand + check.expr(&x, s.Cond) + if x.mode != invalid && !isBoolean(x.typ) { + check.error(s.Cond.Pos(), "non-boolean condition in for statement") + } + } + check.initStmt(s.Post) + check.stmt(inner, s.Body) + + case *ast.RangeStmt: + inner |= inBreakable | inContinuable + check.openScope(s, "for") + defer check.closeScope() + + // check expression to iterate over + decl := s.Tok == token.DEFINE + var x operand + check.expr(&x, s.X) + if x.mode == invalid { + // if we don't have a declaration, we can still check the loop's body + // (otherwise we can't because we are missing the declared variables) + if !decl { + check.stmt(inner, s.Body) + } + return + } + + // determine key/value types + var key, val Type + switch typ := x.typ.Underlying().(type) { + case *Basic: + if isString(typ) { + key = Typ[Int] + val = UniverseRune // use 'rune' name + } + case *Array: + key = Typ[Int] + val = typ.elem + case *Slice: + key = Typ[Int] + val = typ.elem + case *Pointer: + if typ, _ := typ.base.Underlying().(*Array); typ != nil { + key = Typ[Int] + val = typ.elem + } + case *Map: + key = typ.key + val = typ.elem + case *Chan: + key = typ.elem + val = Typ[Invalid] + if typ.dir == SendOnly { + check.errorf(x.pos(), "cannot range over send-only channel %s", &x) + // ok to continue + } + if s.Value != nil { + check.errorf(s.Value.Pos(), "iteration over %s permits only one iteration variable", &x) + // ok to continue + } + } + + if key == nil { + check.errorf(x.pos(), "cannot range over %s", &x) + // if we don't have a declaration, we can still check the loop's body + if !decl { + check.stmt(inner, s.Body) + } + return + } + + // check assignment to/declaration of iteration variables + // (irregular assignment, cannot easily map to existing assignment checks) + if s.Key == nil { + check.invalidAST(s.Pos(), "range clause requires index iteration variable") + // ok to continue + } + + // lhs expressions and initialization value (rhs) types + lhs := [2]ast.Expr{s.Key, s.Value} + rhs := [2]Type{key, val} + + if decl { + // short variable declaration; variable scope starts after the range clause + // (the for loop opens a new scope, so variables on the lhs never redeclare + // previously declared variables) + var vars []*Var + for i, lhs := range lhs { + if lhs == nil { + continue + } + + // determine lhs variable + var obj *Var + if ident, _ := lhs.(*ast.Ident); ident != nil { + // declare new variable + name := ident.Name + obj = NewVar(ident.Pos(), check.pkg, name, nil) + check.recordDef(ident, obj) + // _ variables don't count as new variables + if name != "_" { + vars = append(vars, obj) + } + } else { + check.errorf(lhs.Pos(), "cannot declare %s", lhs) + obj = NewVar(lhs.Pos(), check.pkg, "_", nil) // dummy variable + } + + // initialize lhs variable + x.mode = value + x.expr = lhs // we don't have a better rhs expression to use here + x.typ = rhs[i] + check.initVar(obj, &x, false) + } + + // declare variables + if len(vars) > 0 { + for _, obj := range vars { + check.declare(check.scope, nil, obj) // recordObject already called + } + } else { + check.error(s.TokPos, "no new variables on left side of :=") + } + } else { + // ordinary assignment + for i, lhs := range lhs { + if lhs == nil { + continue + } + x.mode = value + x.expr = lhs // we don't have a better rhs expression to use here + x.typ = rhs[i] + check.assignVar(lhs, &x) + } + } + + check.stmt(inner, s.Body) + + default: + check.error(s.Pos(), "invalid statement") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/builtins.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/builtins.src new file mode 100644 index 00000000..9d39d409 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/builtins.src @@ -0,0 +1,853 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// builtin calls + +package builtins + +import "unsafe" + +func f0() {} + +func append1() { + var b byte + var x int + var s []byte + _ = append() // ERROR not enough arguments + _ = append("foo" /* ERROR not a slice */ ) + _ = append(nil /* ERROR not a slice */ , s) + _ = append(x /* ERROR not a slice */ , s) + _ = append(s) + append /* ERROR not used */ (s) + + _ = append(s, b) + _ = append(s, x /* ERROR cannot pass argument x */ ) + _ = append(s, s /* ERROR cannot pass argument s */ ) + _ = append(s /* ERROR can only use ... with matching parameter */ ...) + _ = append(s, b, s /* ERROR can only use ... with matching parameter */ ...) + _ = append(s, 1, 2, 3) + _ = append(s, 1, 2, 3, x /* ERROR cannot pass argument x */ , 5, 6, 6) + _ = append(s, 1, 2, s /* ERROR can only use ... with matching parameter */ ...) + _ = append([]interface{}(nil), 1, 2, "foo", x, 3.1425, false) + + type S []byte + type T string + var t T + _ = append(s, "foo" /* ERROR cannot convert */ ) + _ = append(s, "foo"...) + _ = append(S(s), "foo" /* ERROR cannot convert */ ) + _ = append(S(s), "foo"...) + _ = append(s, t /* ERROR cannot pass argument t */ ) + _ = append(s, t...) + _ = append(s, T("foo")...) + _ = append(S(s), t /* ERROR cannot pass argument t */ ) + _ = append(S(s), t...) + _ = append(S(s), T("foo")...) + _ = append([]string{}, t /* ERROR cannot pass argument t */ , "foo") + _ = append([]T{}, t, "foo") +} + +// from the spec +func append2() { + s0 := []int{0, 0} + s1 := append(s0, 2) // append a single element s1 == []int{0, 0, 2} + s2 := append(s1, 3, 5, 7) // append multiple elements s2 == []int{0, 0, 2, 3, 5, 7} + s3 := append(s2, s0...) // append a slice s3 == []int{0, 0, 2, 3, 5, 7, 0, 0} + s4 := append(s3[3:6], s3[2:]...) // append overlapping slice s4 == []int{3, 5, 7, 2, 3, 5, 7, 0, 0} + + var t []interface{} + t = append(t, 42, 3.1415, "foo") // t == []interface{}{42, 3.1415, "foo"} + + var b []byte + b = append(b, "bar"...) // append string contents b == []byte{'b', 'a', 'r' } + + _ = s4 +} + +func append3() { + f1 := func() (s []int) { return } + f2 := func() (s []int, x int) { return } + f3 := func() (s []int, x, y int) { return } + f5 := func() (s []interface{}, x int, y float32, z string, b bool) { return } + ff := func() (int, float32) { return 0, 0 } + _ = append(f0 /* ERROR used as value */ ()) + _ = append(f1()) + _ = append(f2()) + _ = append(f3()) + _ = append(f5()) + _ = append(ff /* ERROR not a slice */ ()) // TODO(gri) better error message +} + +func cap1() { + var a [10]bool + var p *[20]int + var c chan string + _ = cap() // ERROR not enough arguments + _ = cap(1, 2) // ERROR too many arguments + _ = cap(42 /* ERROR invalid */) + const _3 = cap(a) + assert(_3 == 10) + const _4 = cap(p) + assert(_4 == 20) + _ = cap(c) + cap /* ERROR not used */ (c) + + // issue 4744 + type T struct{ a [10]int } + const _ = cap(((*T)(nil)).a) + + var s [][]byte + _ = cap(s) + _ = cap(s... /* ERROR invalid use of \.\.\. */ ) +} + +func cap2() { + f1a := func() (a [10]int) { return } + f1s := func() (s []int) { return } + f2 := func() (s []int, x int) { return } + _ = cap(f0 /* ERROR used as value */ ()) + _ = cap(f1a()) + _ = cap(f1s()) + _ = cap(f2()) // ERROR too many arguments +} + +// test cases for issue 7387 +func cap3() { + var f = func() int { return 0 } + var x = f() + const ( + _ = cap([4]int{}) + _ = cap([4]int{x}) + _ = cap /* ERROR not constant */ ([4]int{f()}) + _ = cap /* ERROR not constant */ ([4]int{cap([]int{})}) + _ = cap([4]int{cap([4]int{})}) + ) + var y float64 + var z complex128 + const ( + _ = cap([4]float64{}) + _ = cap([4]float64{y}) + _ = cap([4]float64{real(2i)}) + _ = cap /* ERROR not constant */ ([4]float64{real(z)}) + ) + var ch chan [10]int + const ( + _ = cap /* ERROR not constant */ (<-ch) + _ = cap /* ERROR not constant */ ([4]int{(<-ch)[0]}) + ) +} + +func close1() { + var c chan int + var r <-chan int + close() // ERROR not enough arguments + close(1, 2) // ERROR too many arguments + close(42 /* ERROR not a channel */) + close(r /* ERROR receive-only channel */) + close(c) + _ = close /* ERROR used as value */ (c) + + var s []chan int + close(s... /* ERROR invalid use of \.\.\. */ ) +} + +func close2() { + f1 := func() (ch chan int) { return } + f2 := func() (ch chan int, x int) { return } + close(f0 /* ERROR used as value */ ()) + close(f1()) + close(f2()) // ERROR too many arguments +} + +func complex1() { + var i32 int32 + var f32 float32 + var f64 float64 + var c64 complex64 + var c128 complex128 + _ = complex() // ERROR not enough arguments + _ = complex(1) // ERROR not enough arguments + _ = complex(true /* ERROR invalid argument */ , 0) + _ = complex(i32 /* ERROR invalid argument */ , 0) + _ = complex("foo" /* ERROR invalid argument */ , 0) + _ = complex(c64 /* ERROR invalid argument */ , 0) + _ = complex(0, true /* ERROR invalid argument */ ) + _ = complex(0, i32 /* ERROR invalid argument */ ) + _ = complex(0, "foo" /* ERROR invalid argument */ ) + _ = complex(0, c64 /* ERROR invalid argument */ ) + _ = complex(f32, f32) + _ = complex(f32, 1) + _ = complex(f32, 1.0) + _ = complex(f32, 'a') + _ = complex(f64, f64) + _ = complex(f64, 1) + _ = complex(f64, 1.0) + _ = complex(f64, 'a') + _ = complex(f32 /* ERROR mismatched types */ , f64) + _ = complex(f64 /* ERROR mismatched types */ , f32) + _ = complex(1, 1) + _ = complex(1, 1.1) + _ = complex(1, 'a') + complex /* ERROR not used */ (1, 2) + + var _ complex64 = complex(f32, f32) + var _ complex64 = complex /* ERROR cannot initialize */ (f64, f64) + + var _ complex128 = complex /* ERROR cannot initialize */ (f32, f32) + var _ complex128 = complex(f64, f64) + + // untyped constants + const _ int = complex(1, 0) + const _ float32 = complex(1, 0) + const _ complex64 = complex(1, 0) + const _ complex128 = complex(1, 0) + + const _ int = complex /* ERROR int */ (1.1, 0) + const _ float32 = complex /* ERROR float32 */ (1, 2) + + // untyped values + var s uint + _ = complex(1 /* ERROR integer */ <>8&1 + mi>>16&1 + mi>>32&1) + logSizeofUint = uint(mu>>8&1 + mu>>16&1 + mu>>32&1) + logSizeofUintptr = uint(mp>>8&1 + mp>>16&1 + mp>>32&1) +) + +const ( + minInt8 = -1<<(8< 0) + _ = assert(smallestFloat64 > 0) +) + +const ( + maxFloat32 = 1<<127 * (1<<24 - 1) / (1.0<<23) + maxFloat64 = 1<<1023 * (1<<53 - 1) / (1.0<<52) +) + +const ( + _ int8 = minInt8 /* ERROR "overflows" */ - 1 + _ int8 = minInt8 + _ int8 = maxInt8 + _ int8 = maxInt8 /* ERROR "overflows" */ + 1 + _ int8 = smallestFloat64 /* ERROR "truncated" */ + + _ = int8(minInt8 /* ERROR "cannot convert" */ - 1) + _ = int8(minInt8) + _ = int8(maxInt8) + _ = int8(maxInt8 /* ERROR "cannot convert" */ + 1) + _ = int8(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ int16 = minInt16 /* ERROR "overflows" */ - 1 + _ int16 = minInt16 + _ int16 = maxInt16 + _ int16 = maxInt16 /* ERROR "overflows" */ + 1 + _ int16 = smallestFloat64 /* ERROR "truncated" */ + + _ = int16(minInt16 /* ERROR "cannot convert" */ - 1) + _ = int16(minInt16) + _ = int16(maxInt16) + _ = int16(maxInt16 /* ERROR "cannot convert" */ + 1) + _ = int16(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ int32 = minInt32 /* ERROR "overflows" */ - 1 + _ int32 = minInt32 + _ int32 = maxInt32 + _ int32 = maxInt32 /* ERROR "overflows" */ + 1 + _ int32 = smallestFloat64 /* ERROR "truncated" */ + + _ = int32(minInt32 /* ERROR "cannot convert" */ - 1) + _ = int32(minInt32) + _ = int32(maxInt32) + _ = int32(maxInt32 /* ERROR "cannot convert" */ + 1) + _ = int32(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ int64 = minInt64 /* ERROR "overflows" */ - 1 + _ int64 = minInt64 + _ int64 = maxInt64 + _ int64 = maxInt64 /* ERROR "overflows" */ + 1 + _ int64 = smallestFloat64 /* ERROR "truncated" */ + + _ = int64(minInt64 /* ERROR "cannot convert" */ - 1) + _ = int64(minInt64) + _ = int64(maxInt64) + _ = int64(maxInt64 /* ERROR "cannot convert" */ + 1) + _ = int64(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ int = minInt /* ERROR "overflows" */ - 1 + _ int = minInt + _ int = maxInt + _ int = maxInt /* ERROR "overflows" */ + 1 + _ int = smallestFloat64 /* ERROR "truncated" */ + + _ = int(minInt /* ERROR "cannot convert" */ - 1) + _ = int(minInt) + _ = int(maxInt) + _ = int(maxInt /* ERROR "cannot convert" */ + 1) + _ = int(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ uint8 = 0 /* ERROR "overflows" */ - 1 + _ uint8 = 0 + _ uint8 = maxUint8 + _ uint8 = maxUint8 /* ERROR "overflows" */ + 1 + _ uint8 = smallestFloat64 /* ERROR "truncated" */ + + _ = uint8(0 /* ERROR "cannot convert" */ - 1) + _ = uint8(0) + _ = uint8(maxUint8) + _ = uint8(maxUint8 /* ERROR "cannot convert" */ + 1) + _ = uint8(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ uint16 = 0 /* ERROR "overflows" */ - 1 + _ uint16 = 0 + _ uint16 = maxUint16 + _ uint16 = maxUint16 /* ERROR "overflows" */ + 1 + _ uint16 = smallestFloat64 /* ERROR "truncated" */ + + _ = uint16(0 /* ERROR "cannot convert" */ - 1) + _ = uint16(0) + _ = uint16(maxUint16) + _ = uint16(maxUint16 /* ERROR "cannot convert" */ + 1) + _ = uint16(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ uint32 = 0 /* ERROR "overflows" */ - 1 + _ uint32 = 0 + _ uint32 = maxUint32 + _ uint32 = maxUint32 /* ERROR "overflows" */ + 1 + _ uint32 = smallestFloat64 /* ERROR "truncated" */ + + _ = uint32(0 /* ERROR "cannot convert" */ - 1) + _ = uint32(0) + _ = uint32(maxUint32) + _ = uint32(maxUint32 /* ERROR "cannot convert" */ + 1) + _ = uint32(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ uint64 = 0 /* ERROR "overflows" */ - 1 + _ uint64 = 0 + _ uint64 = maxUint64 + _ uint64 = maxUint64 /* ERROR "overflows" */ + 1 + _ uint64 = smallestFloat64 /* ERROR "truncated" */ + + _ = uint64(0 /* ERROR "cannot convert" */ - 1) + _ = uint64(0) + _ = uint64(maxUint64) + _ = uint64(maxUint64 /* ERROR "cannot convert" */ + 1) + _ = uint64(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ uint = 0 /* ERROR "overflows" */ - 1 + _ uint = 0 + _ uint = maxUint + _ uint = maxUint /* ERROR "overflows" */ + 1 + _ uint = smallestFloat64 /* ERROR "truncated" */ + + _ = uint(0 /* ERROR "cannot convert" */ - 1) + _ = uint(0) + _ = uint(maxUint) + _ = uint(maxUint /* ERROR "cannot convert" */ + 1) + _ = uint(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ uintptr = 0 /* ERROR "overflows" */ - 1 + _ uintptr = 0 + _ uintptr = maxUintptr + _ uintptr = maxUintptr /* ERROR "overflows" */ + 1 + _ uintptr = smallestFloat64 /* ERROR "truncated" */ + + _ = uintptr(0 /* ERROR "cannot convert" */ - 1) + _ = uintptr(0) + _ = uintptr(maxUintptr) + _ = uintptr(maxUintptr /* ERROR "cannot convert" */ + 1) + _ = uintptr(smallestFloat64 /* ERROR "cannot convert" */) +) + +const ( + _ float32 = minInt64 + _ float64 = minInt64 + _ complex64 = minInt64 + _ complex128 = minInt64 + + _ = float32(minInt64) + _ = float64(minInt64) + _ = complex64(minInt64) + _ = complex128(minInt64) +) + +const ( + _ float32 = maxUint64 + _ float64 = maxUint64 + _ complex64 = maxUint64 + _ complex128 = maxUint64 + + _ = float32(maxUint64) + _ = float64(maxUint64) + _ = complex64(maxUint64) + _ = complex128(maxUint64) +) + +// TODO(gri) find smaller deltas below + +const delta32 = maxFloat32/(1 << 23) + +const ( + _ float32 = - /* ERROR "overflow" */ (maxFloat32 + delta32) + _ float32 = -maxFloat32 + _ float32 = maxFloat32 + _ float32 = maxFloat32 /* ERROR "overflow" */ + delta32 + + _ = float32(- /* ERROR "cannot convert" */ (maxFloat32 + delta32)) + _ = float32(-maxFloat32) + _ = float32(maxFloat32) + _ = float32(maxFloat32 /* ERROR "cannot convert" */ + delta32) + + _ = assert(float32(smallestFloat32) == smallestFloat32) + _ = assert(float32(smallestFloat32/2) == 0) + _ = assert(float32(smallestFloat64) == 0) + _ = assert(float32(smallestFloat64/2) == 0) +) + +const delta64 = maxFloat64/(1 << 52) + +const ( + _ float64 = - /* ERROR "overflow" */ (maxFloat64 + delta64) + _ float64 = -maxFloat64 + _ float64 = maxFloat64 + _ float64 = maxFloat64 /* ERROR "overflow" */ + delta64 + + _ = float64(- /* ERROR "cannot convert" */ (maxFloat64 + delta64)) + _ = float64(-maxFloat64) + _ = float64(maxFloat64) + _ = float64(maxFloat64 /* ERROR "cannot convert" */ + delta64) + + _ = assert(float64(smallestFloat32) == smallestFloat32) + _ = assert(float64(smallestFloat32/2) == smallestFloat32/2) + _ = assert(float64(smallestFloat64) == smallestFloat64) + _ = assert(float64(smallestFloat64/2) == 0) +) + +const ( + _ complex64 = - /* ERROR "overflow" */ (maxFloat32 + delta32) + _ complex64 = -maxFloat32 + _ complex64 = maxFloat32 + _ complex64 = maxFloat32 /* ERROR "overflow" */ + delta32 + + _ = complex64(- /* ERROR "cannot convert" */ (maxFloat32 + delta32)) + _ = complex64(-maxFloat32) + _ = complex64(maxFloat32) + _ = complex64(maxFloat32 /* ERROR "cannot convert" */ + delta32) +) + +const ( + _ complex128 = - /* ERROR "overflow" */ (maxFloat64 + delta64) + _ complex128 = -maxFloat64 + _ complex128 = maxFloat64 + _ complex128 = maxFloat64 /* ERROR "overflow" */ + delta64 + + _ = complex128(- /* ERROR "cannot convert" */ (maxFloat64 + delta64)) + _ = complex128(-maxFloat64) + _ = complex128(maxFloat64) + _ = complex128(maxFloat64 /* ERROR "cannot convert" */ + delta64) +) + +// Initialization of typed constant and conversion are the same: +const ( + f32 = 1 + smallestFloat32 + x32 float32 = f32 + y32 = float32(f32) + _ = assert(x32 - y32 == 0) +) + +const ( + f64 = 1 + smallestFloat64 + x64 float64 = f64 + y64 = float64(f64) + _ = assert(x64 - y64 == 0) +) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/constdecl.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/constdecl.src new file mode 100644 index 00000000..0f71353b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/constdecl.src @@ -0,0 +1,85 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package constdecl + +import "math" + +var v int + +// Const decls must be initialized by constants. +const _ = v /* ERROR "not constant" */ +const _ = math /* ERROR "not constant" */ .Sin(0) +const _ = int /* ERROR "not an expression" */ + +func _() { + const _ = v /* ERROR "not constant" */ + const _ = math /* ERROR "not constant" */ .Sin(0) + const _ = int /* ERROR "not an expression" */ +} + +// Identifier and expression arity must match. +const _ /* ERROR "missing init expr for _" */ +const _ = 1, 2 /* ERROR "extra init expr 2" */ + +const _ /* ERROR "missing init expr for _" */ int +const _ int = 1, 2 /* ERROR "extra init expr 2" */ + +const ( + _ /* ERROR "missing init expr for _" */ + _ = 1, 2 /* ERROR "extra init expr 2" */ + + _ /* ERROR "missing init expr for _" */ int + _ int = 1, 2 /* ERROR "extra init expr 2" */ +) + +const ( + _ = 1 + _ + _, _ /* ERROR "missing init expr for _" */ + _ +) + +const ( + _, _ = 1, 2 + _, _ + _ /* ERROR "extra init expr at" */ + _, _ + _, _, _ /* ERROR "missing init expr for _" */ + _, _ +) + +func _() { + const _ /* ERROR "missing init expr for _" */ + const _ = 1, 2 /* ERROR "extra init expr 2" */ + + const _ /* ERROR "missing init expr for _" */ int + const _ int = 1, 2 /* ERROR "extra init expr 2" */ + + const ( + _ /* ERROR "missing init expr for _" */ + _ = 1, 2 /* ERROR "extra init expr 2" */ + + _ /* ERROR "missing init expr for _" */ int + _ int = 1, 2 /* ERROR "extra init expr 2" */ + ) + + const ( + _ = 1 + _ + _, _ /* ERROR "missing init expr for _" */ + _ + ) + + const ( + _, _ = 1, 2 + _, _ + _ /* ERROR "extra init expr at" */ + _, _ + _, _, _ /* ERROR "missing init expr for _" */ + _, _ + ) +} + +// TODO(gri) move extra tests from testdata/const0.src into here \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/conversions.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/conversions.src new file mode 100644 index 00000000..42514246 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/conversions.src @@ -0,0 +1,88 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// conversions + +package conversions + +import "unsafe" + +// argument count +var ( + _ = int() /* ERROR "missing argument" */ + _ = int(1, 2 /* ERROR "too many arguments" */ ) +) + +// numeric constant conversions are in const1.src. + +func string_conversions() { + const A = string(65) + assert(A == "A") + const E = string(-1) + assert(E == "\uFFFD") + assert(E == string(1234567890)) + + type myint int + assert(A == string(myint(65))) + + type mystring string + const _ mystring = mystring("foo") + + const _ = string(true /* ERROR "cannot convert" */ ) + const _ = string(1.2 /* ERROR "cannot convert" */ ) + const _ = string(nil /* ERROR "cannot convert" */ ) +} + +func interface_conversions() { + type E interface{} + + type I1 interface{ + m1() + } + + type I2 interface{ + m1() + m2(x int) + } + + type I3 interface{ + m1() + m2() int + } + + var e E + var i1 I1 + var i2 I2 + var i3 I3 + + _ = E(0) + _ = E(nil) + _ = E(e) + _ = E(i1) + _ = E(i2) + + _ = I1(0 /* ERROR "cannot convert" */ ) + _ = I1(nil) + _ = I1(i1) + _ = I1(e /* ERROR "cannot convert" */ ) + _ = I1(i2) + + _ = I2(nil) + _ = I2(i1 /* ERROR "cannot convert" */ ) + _ = I2(i2) + _ = I2(i3 /* ERROR "cannot convert" */ ) + + _ = I3(nil) + _ = I3(i1 /* ERROR "cannot convert" */ ) + _ = I3(i2 /* ERROR "cannot convert" */ ) + _ = I3(i3) + + // TODO(gri) add more tests, improve error message +} + +func issue6326() { + type T unsafe.Pointer + var x T + _ = uintptr(x) // see issue 6326 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles.src new file mode 100644 index 00000000..621d83c9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles.src @@ -0,0 +1,143 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cycles + +type ( + T0 int + T1 /* ERROR cycle */ T1 + T2 *T2 + + T3 /* ERROR cycle */ T4 + T4 T5 + T5 T3 + + T6 T7 + T7 *T8 + T8 T6 + + // arrays + A0 /* ERROR cycle */ [10]A0 + A1 [10]*A1 + + A2 /* ERROR cycle */ [10]A3 + A3 [10]A4 + A4 A2 + + A5 [10]A6 + A6 *A5 + + // slices + L0 []L0 + + // structs + S0 /* ERROR cycle */ struct{ _ S0 } + S1 /* ERROR cycle */ struct{ S1 } + S2 struct{ _ *S2 } + S3 struct{ *S3 } + + S4 /* ERROR cycle */ struct{ S5 } + S5 struct{ S6 } + S6 S4 + + // pointers + P0 *P0 + + // functions + F0 func(F0) + F1 func() F1 + F2 func(F2) F2 + + // interfaces + I0 /* ERROR cycle */ interface{ I0 } + + I1 interface{ I2 } + I2 interface{ I3 } + I3 /* ERROR cycle */ interface{ I1 } + + I4 interface{ f(I4) } + + // testcase for issue 5090 + I5 interface{ f(I6) } + I6 interface{ I5 } + + // maps + M0 map[M0 /* ERROR invalid map key */ ]M0 + + // channels + C0 chan C0 +) + +func _() { + type ( + t1 /* ERROR cycle */ t1 + t2 *t2 + + t3 t4 /* ERROR undeclared */ + t4 t5 /* ERROR undeclared */ + t5 t3 + + // arrays + a0 /* ERROR cycle */ [10]a0 + a1 [10]*a1 + + // slices + l0 []l0 + + // structs + s0 /* ERROR cycle */ struct{ _ s0 } + s1 /* ERROR cycle */ struct{ s1 } + s2 struct{ _ *s2 } + s3 struct{ *s3 } + + // pointers + p0 *p0 + + // functions + f0 func(f0) + f1 func() f1 + f2 func(f2) f2 + + // interfaces + i0 /* ERROR cycle */ interface{ i0 } + + // maps + m0 map[m0 /* ERROR invalid map key */ ]m0 + + // channels + c0 chan c0 + ) +} + +// test cases for issue 6667 + +type A [10]map[A /* ERROR invalid map key */ ]bool + +type S struct { + m map[S /* ERROR invalid map key */ ]bool +} + +// test cases for issue 7236 +// (cycle detection must not be dependent on starting point of resolution) + +type ( + P1 *T9 + T9 /* ERROR cycle */ T9 + + T10 /* ERROR cycle */ T10 + P2 *T10 +) + +func (T11) m() {} + +type T11 /* ERROR cycle */ struct{ T11 } + +type T12 /* ERROR cycle */ struct{ T12 } + +func (*T12) m() {} + +type ( + P3 *T13 + T13 /* ERROR cycle */ T13 +) \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles1.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles1.src new file mode 100644 index 00000000..ae2b38eb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles1.src @@ -0,0 +1,77 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +type ( + A interface { + a() interface { + ABC1 + } + } + B interface { + b() interface { + ABC2 + } + } + C interface { + c() interface { + ABC3 + } + } + + AB interface { + A + B + } + BC interface { + B + C + } + + ABC1 interface { + A + B + C + } + ABC2 interface { + AB + C + } + ABC3 interface { + A + BC + } +) + +var ( + x1 ABC1 + x2 ABC2 + x3 ABC3 +) + +func _() { + // all types have the same method set + x1 = x2 + x2 = x1 + + x1 = x3 + x3 = x1 + + x2 = x3 + x3 = x2 + + // all methods return the same type again + x1 = x1.a() + x1 = x1.b() + x1 = x1.c() + + x2 = x2.a() + x2 = x2.b() + x2 = x2.c() + + x3 = x3.a() + x3 = x3.b() + x3 = x3.c() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles2.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles2.src new file mode 100644 index 00000000..345ab56e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles2.src @@ -0,0 +1,118 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import "unsafe" + +// Test case for issue 5090 + +type t interface { + f(u) +} + +type u interface { + t +} + +func _() { + var t t + var u u + + t.f(t) + t.f(u) + + u.f(t) + u.f(u) +} + + +// Test case for issue 6589. + +type A interface { + a() interface { + AB + } +} + +type B interface { + a() interface { + AB + } +} + +type AB interface { + a() interface { + A + B /* ERROR a redeclared */ + } + b() interface { + A + B /* ERROR a redeclared */ + } +} + +var x AB +var y interface { + A + B /* ERROR a redeclared */ +} +var _ = x /* ERROR cannot compare */ == y + + +// Test case for issue 6638. + +type T interface { + m() [T /* ERROR no value */ (nil).m()[0]]int +} + +// Variations of this test case. + +type T1 interface { + m() [x1 /* ERROR no value */ .m()[0]]int +} + +var x1 T1 + +type T2 interface { + m() [len(x2 /* ERROR no value */ .m())]int +} + +var x2 T2 + +type T3 interface { + m() [unsafe.Sizeof(x3.m)]int +} + +var x3 T3 + +// The test case below should also report an error for +// the cast inside the T4 interface (like it does for the +// variable initialization). The reason why it does not is +// that inside T4, the method x4.m depends on T4 which is not +// fully set up yet. The x4.m method happens to have an empty +// signature which is why the cast is permitted. +// TODO(gri) Consider marking methods as incomplete and provide +// a better error message in that case. + +type T4 interface { + m() [unsafe.Sizeof(cast4(x4.m))]int +} + +var x4 T4 +var _ = cast4(x4 /* ERROR cannot convert */.m) + +type cast4 func() + +// This test is symmetric to the T4 case: Here the cast is +// "correct", but it doesn't work inside the T5 interface. + +type T5 interface { + m() [unsafe.Sizeof(cast5(x5 /* ERROR cannot convert */ .m))]int +} + +var x5 T5 +var _ = cast5(x5.m) + +type cast5 func() [0]int diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles3.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles3.src new file mode 100644 index 00000000..3da4fb57 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles3.src @@ -0,0 +1,60 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import "unsafe" + +var ( + _ A = A(nil).a().b().c().d().e().f() + _ A = A(nil).b().c().d().e().f() + _ A = A(nil).c().d().e().f() + _ A = A(nil).d().e().f() + _ A = A(nil).e().f() + _ A = A(nil).f() + _ A = A(nil) +) + +type ( + A interface { + a() B + B + } + + B interface { + b() C + C + } + + C interface { + c() D + D + } + + D interface { + d() E + E + } + + E interface { + e() F + F + } + + F interface { + f() A + } +) + +type ( + U interface { + V + } + + V interface { + v() [unsafe.Sizeof(u)]int + } +) + +var u U diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles4.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles4.src new file mode 100644 index 00000000..445babca --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/cycles4.src @@ -0,0 +1,110 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +// Check that all methods of T are collected before +// determining the result type of m (which embeds +// all methods of T). + +type T interface { + m() interface {T} + E +} + +var _ = T.m(nil).m().e() + +type E interface { + e() int +} + +// Check that unresolved forward chains are followed +// (see also comment in resolver.go, checker.typeDecl). + +var _ = C.m(nil).m().e() + +type A B + +type B interface { + m() interface{C} + E +} + +type C A + +// Check that interface type comparison for identity +// does not recur endlessly. + +type T1 interface { + m() interface{T1} +} + +type T2 interface { + m() interface{T2} +} + +func _(x T1, y T2) { + // Checking for assignability of interfaces must check + // if all methods of x are present in y, and that they + // have identical signatures. The signatures recur via + // the result type, which is an interface that embeds + // a single method m that refers to the very interface + // that contains it. This requires cycle detection in + // identity checks for interface types. + x = y +} + +type T3 interface { + m() interface{T4} +} + +type T4 interface { + m() interface{T3} +} + +func _(x T1, y T3) { + x = y +} + +// Check that interfaces are type-checked in order of +// (embedded interface) dependencies (was issue 7158). + +var x1 T5 = T7(nil) + +type T5 interface { + T6 +} + +type T6 interface { + m() T7 +} +type T7 interface { + T5 +} + +// Actual test case from issue 7158. + +func wrapNode() Node { + return wrapElement() +} + +func wrapElement() Element { + return nil +} + +type EventTarget interface { + AddEventListener(Event) +} + +type Node interface { + EventTarget +} + +type Element interface { + Node +} + +type Event interface { + Target() Element +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls0.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls0.src new file mode 100644 index 00000000..9da75b90 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls0.src @@ -0,0 +1,222 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// type declarations + +package decls0 + +import "unsafe" + +const pi = 3.1415 + +type ( + N undeclared /* ERROR "undeclared" */ + B bool + I int32 + A [10]P + T struct { + x, y P + } + P *T + R (*R) + F func(A) I + Y interface { + f(A) I + } + S [](((P))) + M map[I]F + C chan<- I + + // blank types must be typechecked + _ pi /* ERROR "not a type" */ + _ struct{} + _ struct{ pi /* ERROR "not a type" */ } +) + + +// declarations of init +const _, init /* ERROR "cannot declare init" */ , _ = 0, 1, 2 +type init /* ERROR "cannot declare init" */ struct{} +var _, init /* ERROR "cannot declare init" */ int + +func init() {} +func init /* ERROR "missing function body" */ () + +func _() { const init = 0 } +func _() { type init int } +func _() { var init int; _ = init } + +// invalid array types +type ( + iA0 [... /* ERROR "invalid use of '...'" */ ]byte + iA1 [1 /* ERROR "invalid array length" */ <<100]int + iA2 [- /* ERROR "invalid array length" */ 1]complex128 + iA3 ["foo" /* ERROR "must be integer" */ ]string +) + + +type ( + p1 pi /* ERROR "no field or method foo" */ .foo + p2 unsafe.Pointer +) + + +type ( + Pi pi /* ERROR "not a type" */ + + a /* ERROR "illegal cycle" */ a + a /* ERROR "redeclared" */ int + + // where the cycle error appears depends on the + // order in which declarations are processed + // (which depends on the order in which a map + // is iterated through) + b /* ERROR "illegal cycle" */ c + c d + d e + e b + + t *t + + U V + V *W + W U + + P1 *S2 + P2 P1 + + S0 struct { + } + S1 struct { + a, b, c int + u, v, a /* ERROR "redeclared" */ float32 + } + S2 struct { + S0 // anonymous field + S0 /* ERROR "redeclared" */ int + } + S3 struct { + x S2 + } + S4/* ERROR "illegal cycle" */ struct { + S4 + } + S5 /* ERROR "illegal cycle" */ struct { + S6 + } + S6 struct { + field S7 + } + S7 struct { + S5 + } + + L1 []L1 + L2 []int + + A1 [10.0]int + A2 /* ERROR "illegal cycle" */ [10]A2 + A3 /* ERROR "illegal cycle" */ [10]struct { + x A4 + } + A4 [10]A3 + + F1 func() + F2 func(x, y, z float32) + F3 func(x, y, x /* ERROR "redeclared" */ float32) + F4 func() (x, y, x /* ERROR "redeclared" */ float32) + F5 func(x int) (x /* ERROR "redeclared" */ float32) + F6 func(x ...int) + + I1 interface{} + I2 interface { + m1() + } + I3 interface { + m1() + m1 /* ERROR "redeclared" */ () + } + I4 interface { + m1(x, y, x /* ERROR "redeclared" */ float32) + m2() (x, y, x /* ERROR "redeclared" */ float32) + m3(x int) (x /* ERROR "redeclared" */ float32) + } + I5 interface { + m1(I5) + } + I6 interface { + S0 /* ERROR "not an interface" */ + } + I7 interface { + I1 + I1 + } + I8 /* ERROR "illegal cycle" */ interface { + I8 + } + I9 interface { + I10 + } + I10 interface { + I11 + } + I11 /* ERROR "illegal cycle" */ interface { + I9 + } + + C1 chan int + C2 <-chan int + C3 chan<- C3 + C4 chan C5 + C5 chan C6 + C6 chan C4 + + M1 map[Last]string + M2 map[string]M2 + + Last int +) + +// cycles in function/method declarations +// (test cases for issue 5217 and variants) +func f1(x f1 /* ERROR "not a type" */ ) {} +func f2(x *f2 /* ERROR "not a type" */ ) {} +func f3() (x f3 /* ERROR "not a type" */ ) { return } +func f4() (x *f4 /* ERROR "not a type" */ ) { return } + +func (S0) m1(x S0 /* ERROR "field or method" */ .m1) {} +func (S0) m2(x *S0 /* ERROR "field or method" */ .m2) {} +func (S0) m3() (x S0 /* ERROR "field or method" */ .m3) { return } +func (S0) m4() (x *S0 /* ERROR "field or method" */ .m4) { return } + +// interfaces may have at most one blank method +type BlankI interface { + _() + _ /* ERROR redeclared */ () +} + +// non-interface types may have multiple blank methods +type BlankT struct{} + +func (BlankT) _() {} +func (BlankT) _(int) {} +func (BlankT) _() int { return 0 } +func (BlankT) _(int) int { return 0} + +// no type can ever satisfy an interface with a _ method +func _() { + var i BlankI + var x BlankT + i = x /* ERROR "cannot assign" */ + _ = i +} + +// assignability of interfaces with blank methods +func _() { + var x1, x1b interface { _() } + var x2 interface { _() } + x1 = x2 + _ = x1 + x1 = x1b +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls1.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls1.src new file mode 100644 index 00000000..7855e461 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls1.src @@ -0,0 +1,144 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// variable declarations + +package decls1 + +import ( + "math" +) + +// Global variables without initialization +var ( + a, b bool + c byte + d uint8 + r rune + i int + j, k, l int + x, y float32 + xx, yy float64 + u, v complex64 + uu, vv complex128 + s, t string + array []byte + iface interface{} + + blank _ /* ERROR "cannot use _" */ +) + +// Global variables with initialization +var ( + s1 = i + j + s2 = i /* ERROR "mismatched types" */ + x + s3 = c + d + s4 = s + t + s5 = s /* ERROR "invalid operation" */ / t + s6 = array[t1] + s7 = array[x /* ERROR "integer" */] + s8 = &a + s10 = &42 /* ERROR "cannot take address" */ + s11 = &v + s12 = -(u + *t11) / *&v + s13 = a /* ERROR "shifted operand" */ << d + s14 = i << j /* ERROR "must be unsigned" */ + s18 = math.Pi * 10.0 + s19 = s1 /* ERROR "cannot call" */ () + s20 = f0 /* ERROR "no value" */ () + s21 = f6(1, s1, i) + s22 = f6(1, s1, uu /* ERROR "cannot pass argument" */ ) + + t1 int = i + j + t2 int = i /* ERROR "mismatched types" */ + x + t3 int = c /* ERROR "cannot initialize" */ + d + t4 string = s + t + t5 string = s /* ERROR "invalid operation" */ / t + t6 byte = array[t1] + t7 byte = array[x /* ERROR "must be integer" */] + t8 *int = & /* ERROR "cannot initialize" */ a + t10 *int = &42 /* ERROR "cannot take address" */ + t11 *complex64 = &v + t12 complex64 = -(u + *t11) / *&v + t13 int = a /* ERROR "shifted operand" */ << d + t14 int = i << j /* ERROR "must be unsigned" */ + t15 math /* ERROR "not in selector" */ + t16 math /* ERROR "not declared" */ .xxx + t17 math /* ERROR "not a type" */ .Pi + t18 float64 = math.Pi * 10.0 + t19 int = t1 /* ERROR "cannot call" */ () + t20 int = f0 /* ERROR "no value" */ () + t21 int = a /* ERROR "cannot initialize" */ +) + +// Various more complex expressions +var ( + u1 = x /* ERROR "not an interface" */ .(int) + u2 = iface.([]int) + u3 = iface.(a /* ERROR "not a type" */ ) + u4, ok = iface.(int) + u5, ok2, ok3 = iface /* ERROR "assignment count mismatch" */ .(int) +) + +// Constant expression initializations +var ( + v1 = 1 /* ERROR "cannot convert" */ + "foo" + v2 = c + 255 + v3 = c + 256 /* ERROR "overflows" */ + v4 = r + 2147483647 + v5 = r + 2147483648 /* ERROR "overflows" */ + v6 = 42 + v7 = v6 + 9223372036854775807 + v8 = v6 + 9223372036854775808 /* ERROR "overflows" */ + v9 = i + 1 << 10 + v10 byte = 1024 /* ERROR "overflows" */ + v11 = xx/yy*yy - xx + v12 = true && false + v13 = nil /* ERROR "use of untyped nil" */ +) + +// Multiple assignment expressions +var ( + m1a, m1b = 1, 2 + m2a, m2b, m2c /* ERROR "missing init expr for m2c" */ = 1, 2 + m3a, m3b = 1, 2, 3 /* ERROR "extra init expr 3" */ +) + +func _() { + var ( + m1a, m1b = 1, 2 + m2a, m2b, m2c /* ERROR "missing init expr for m2c" */ = 1, 2 + m3a, m3b = 1, 2, 3 /* ERROR "extra init expr 3" */ + ) + + _, _ = m1a, m1b + _, _, _ = m2a, m2b, m2c + _, _ = m3a, m3b +} + +// Declaration of parameters and results +func f0() {} +func f1(a /* ERROR "not a type" */) {} +func f2(a, b, c d /* ERROR "not a type" */) {} + +func f3() int { return 0 } +func f4() a /* ERROR "not a type" */ { return 0 } +func f5() (a, b, c d /* ERROR "not a type" */) { return } + +func f6(a, b, c int) complex128 { return 0 } + +// Declaration of receivers +type T struct{} + +func (T) m0() {} +func (*T) m1() {} +func (x T) m2() {} +func (x *T) m3() {} + +// Initialization functions +func init() {} +func /* ERROR "no arguments and no return values" */ init(int) {} +func /* ERROR "no arguments and no return values" */ init() int { return 0 } +func /* ERROR "no arguments and no return values" */ init(int) int { return 0 } +func (T) init(int) int { return 0 } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls2a.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls2a.src new file mode 100644 index 00000000..6fe0f27d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls2a.src @@ -0,0 +1,99 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// method declarations + +package decls2 + +import "time" +import "unsafe" + +// T1 declared before its methods. +type T1 struct{ + f int +} + +func (T1) m() {} +func (T1) m /* ERROR "already declared" */ () {} +func (x *T1) f /* ERROR "field and method" */ () {} + +// Conflict between embedded field and method name, +// with the embedded field being a basic type. +type T1b struct { + int +} + +func (T1b) int /* ERROR "field and method" */ () {} + +type T1c struct { + time.Time +} + +func (T1c) Time /* ERROR "field and method" */ () int { return 0 } + +// Disabled for now: LookupFieldOrMethod will find Pointer even though +// it's double-declared (it would cost extra in the common case to verify +// this). But the MethodSet computation will not find it due to the name +// collision caused by the double-declaration, leading to an internal +// inconsistency while we are verifying one computation against the other. +// var _ = T1c{}.Pointer + +// T2's method declared before the type. +func (*T2) f /* ERROR "field and method" */ () {} + +type T2 struct { + f int +} + +// Methods declared without a declared type. +func (undeclared /* ERROR "undeclared" */) m() {} +func (x *undeclared /* ERROR "undeclared" */) m() {} + +func (pi /* ERROR "not a type" */) m1() {} +func (x pi /* ERROR "not a type" */) m2() {} +func (x *pi /* ERROR "not a type" */ ) m3() {} + +// Blank types. +type _ struct { m int } +type _ struct { m int } + +func (_ /* ERROR "cannot use _" */) m() {} +func m(_ /* ERROR "cannot use _" */) {} + +// Methods with receiver base type declared in another file. +func (T3) m1() {} +func (*T3) m2() {} +func (x T3) m3() {} +func (x *T3) f /* ERROR "field and method" */ () {} + +// Methods of non-struct type. +type T4 func() + +func (self T4) m() func() { return self } + +// Methods associated with an interface. +type T5 interface { + m() int +} + +func (T5 /* ERROR "invalid receiver" */ ) m1() {} +func (T5 /* ERROR "invalid receiver" */ ) m2() {} + +// Methods associated with non-local or unnamed types. +func (int /* ERROR "invalid receiver" */ ) m() {} +func ([ /* ERROR "identifier" */ ]int) m() {} +func (time /* ERROR "identifier" */ .Time) m() {} +func (*time /* ERROR "identifier" */ .Time) m() {} +func (x interface /* ERROR "identifier" */ {}) m() {} + +// Unsafe.Pointer is treated like a pointer when used as receiver type. +type UP unsafe.Pointer +func (UP /* ERROR "invalid" */ ) m1() {} +func (* /* ERROR "invalid" */ UP) m2() {} + +// Double declarations across package files +const c_double = 0 +type t_double int +var v_double int +func f_double() {} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls2b.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls2b.src new file mode 100644 index 00000000..e7d9c76d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls2b.src @@ -0,0 +1,53 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// method declarations + +package decls2 + +import "io" + +const pi = 3.1415 + +func (T1) m /* ERROR "already declared" */ () {} +func (T2) m(io.Writer) {} + +type T3 struct { + f *T3 +} + +type T6 struct { + x int +} + +func (t *T6) m1() int { + return t.x +} + +func f() { + var t *T6 + t.m1() +} + +// Double declarations across package files +const c_double /* ERROR "redeclared" */ = 0 +type t_double /* ERROR "redeclared" */ int +var v_double /* ERROR "redeclared" */ int +func f_double /* ERROR "redeclared" */ () {} + +// Blank methods need to be type-checked. +// Verify by checking that errors are reported. +func (T /* ERROR "undeclared" */ ) _() {} +func (T1) _(undeclared /* ERROR "undeclared" */ ) {} +func (T1) _() int { return "foo" /* ERROR "cannot convert" */ } + +// Methods with undeclared receiver type can still be checked. +// Verify by checking that errors are reported. +func (Foo /* ERROR "undeclared" */ ) m() {} +func (Foo /* ERROR "undeclared" */ ) m(undeclared /* ERROR "undeclared" */ ) {} +func (Foo /* ERROR "undeclared" */ ) m() int { return "foo" /* ERROR "cannot convert" */ } + +func (Foo /* ERROR "undeclared" */ ) _() {} +func (Foo /* ERROR "undeclared" */ ) _(undeclared /* ERROR "undeclared" */ ) {} +func (Foo /* ERROR "undeclared" */ ) _() int { return "foo" /* ERROR "cannot convert" */ } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls3.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls3.src new file mode 100644 index 00000000..80d2bc8f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/decls3.src @@ -0,0 +1,309 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// embedded types + +package decls3 + +import "unsafe" +import "fmt" + +// fields with the same name at the same level cancel each other out + +func _() { + type ( + T1 struct { X int } + T2 struct { X int } + T3 struct { T1; T2 } // X is embedded twice at the same level via T1->X, T2->X + ) + + var t T3 + _ = t /* ERROR "ambiguous selector" */ .X +} + +func _() { + type ( + T1 struct { X int } + T2 struct { T1 } + T3 struct { T1 } + T4 struct { T2; T3 } // X is embedded twice at the same level via T2->T1->X, T3->T1->X + ) + + var t T4 + _ = t /* ERROR "ambiguous selector" */ .X +} + +func issue4355() { + type ( + T1 struct {X int} + T2 struct {T1} + T3 struct {T2} + T4 struct {T2} + T5 struct {T3; T4} // X is embedded twice at the same level via T3->T2->T1->X, T4->T2->T1->X + ) + + var t T5 + _ = t /* ERROR "ambiguous selector" */ .X +} + +func _() { + type State int + type A struct{ State } + type B struct{ fmt.State } + type T struct{ A; B } + + var t T + _ = t /* ERROR "ambiguous selector" */ .State +} + +// Embedded fields can be predeclared types. + +func _() { + type T0 struct{ + int + float32 + f int + } + var x T0 + _ = x.int + _ = x.float32 + _ = x.f + + type T1 struct{ + T0 + } + var y T1 + _ = y.int + _ = y.float32 + _ = y.f +} + +// Restrictions on embedded field types. + +func _() { + type I1 interface{} + type I2 interface{} + type P1 *int + type P2 *int + type UP unsafe.Pointer + + type T1 struct { + I1 + * /* ERROR "cannot be a pointer to an interface" */ I2 + * /* ERROR "cannot be a pointer to an interface" */ error + P1 /* ERROR "cannot be a pointer" */ + * /* ERROR "cannot be a pointer" */ P2 + } + + // unsafe.Pointers are treated like regular pointers when embedded + type T2 struct { + unsafe /* ERROR "cannot be unsafe.Pointer" */ .Pointer + */* ERROR "cannot be unsafe.Pointer" */ unsafe.Pointer + UP /* ERROR "cannot be unsafe.Pointer" */ + * /* ERROR "cannot be unsafe.Pointer" */ UP + } +} + +// Named types that are pointers. + +type S struct{ x int } +func (*S) m() {} +type P *S + +func _() { + var s *S + _ = s.x + _ = s.m + + var p P + _ = p.x + _ = p /* ERROR "no field or method" */ .m + _ = P /* ERROR "no field or method" */ .m +} + +// Borrowed from the FieldByName test cases in reflect/all_test.go. + +type D1 struct { + d int +} +type D2 struct { + d int +} + +type S0 struct { + A, B, C int + D1 + D2 +} + +type S1 struct { + B int + S0 +} + +type S2 struct { + A int + *S1 +} + +type S1x struct { + S1 +} + +type S1y struct { + S1 +} + +type S3 struct { + S1x + S2 + D, E int + *S1y +} + +type S4 struct { + *S4 + A int +} + +// The X in S6 and S7 annihilate, but they also block the X in S8.S9. +type S5 struct { + S6 + S7 + S8 +} + +type S6 struct { + X int +} + +type S7 S6 + +type S8 struct { + S9 +} + +type S9 struct { + X int + Y int +} + +// The X in S11.S6 and S12.S6 annihilate, but they also block the X in S13.S8.S9. +type S10 struct { + S11 + S12 + S13 +} + +type S11 struct { + S6 +} + +type S12 struct { + S6 +} + +type S13 struct { + S8 +} + +func _() { + _ = struct /* ERROR "no field or method" */ {}{}.Foo + _ = S0{}.A + _ = S0 /* ERROR "no field or method" */ {}.D + _ = S1{}.A + _ = S1{}.B + _ = S1{}.S0 + _ = S1{}.C + _ = S2{}.A + _ = S2{}.S1 + _ = S2{}.B + _ = S2{}.C + _ = S2 /* ERROR "no field or method" */ {}.D + _ = S3 /* ERROR "ambiguous selector" */ {}.S1 + _ = S3{}.A + _ = S3 /* ERROR "ambiguous selector" */ {}.B + _ = S3{}.D + _ = S3{}.E + _ = S4{}.A + _ = S4 /* ERROR "no field or method" */ {}.B + _ = S5 /* ERROR "ambiguous selector" */ {}.X + _ = S5{}.Y + _ = S10 /* ERROR "ambiguous selector" */ {}.X + _ = S10{}.Y +} + +// Borrowed from the FieldByName benchmark in reflect/all_test.go. + +type R0 struct { + *R1 + *R2 + *R3 + *R4 +} + +type R1 struct { + *R5 + *R6 + *R7 + *R8 +} + +type R2 R1 +type R3 R1 +type R4 R1 + +type R5 struct { + *R9 + *R10 + *R11 + *R12 +} + +type R6 R5 +type R7 R5 +type R8 R5 + +type R9 struct { + *R13 + *R14 + *R15 + *R16 +} + +type R10 R9 +type R11 R9 +type R12 R9 + +type R13 struct { + *R17 + *R18 + *R19 + *R20 +} + +type R14 R13 +type R15 R13 +type R16 R13 + +type R17 struct { + *R21 + *R22 + *R23 + *R24 +} + +type R18 R17 +type R19 R17 +type R20 R17 + +type R21 struct { + X int +} + +type R22 R21 +type R23 R21 +type R24 R21 + +var _ = R0 /* ERROR "ambiguous selector" */ {}.X \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/errors.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/errors.src new file mode 100644 index 00000000..45bd45a1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/errors.src @@ -0,0 +1,55 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package errors + +// Testing precise operand formatting in error messages +// (matching messages are regular expressions, hence the \'s). +func f(x int, m map[string]int) { + // no values + _ = f /* ERROR "f\(0, m\) \(no value\) used as value" */ (0, m) + + // built-ins + _ = println /* ERROR "println \(built-in\) must be called" */ + + // types + _ = complex128 /* ERROR "complex128 \(type\) is not an expression" */ + + // constants + const c1 = 991 + const c2 float32 = 0.5 + 0 /* ERROR "0 \(untyped int constant\) is not used" */ + c1 /* ERROR "c1 \(untyped int constant 991\) is not used" */ + c2 /* ERROR "c2 \(constant 1/2 of type float32\) is not used" */ + c1 /* ERROR "c1 \+ c2 \(constant 1983/2 of type float32\) is not used" */ + c2 + + // variables + x /* ERROR "x \(variable of type int\) is not used" */ + + // values + x /* ERROR "x != x \(untyped bool value\) is not used" */ != x + x /* ERROR "x \+ x \(value of type int\) is not used" */ + x + + // value, ok's + const s = "foo" + m /* ERROR "m\[s\] \(map index expression of type int\) is not used" */ [s] +} + +// Valid ERROR comments can have a variety of forms. +func _() { + 0 /* ERROR "0 .* is not used" */ + 0 /* ERROR 0 .* is not used */ + 0 // ERROR "0 .* is not used" + 0 // ERROR 0 .* is not used +} + +// Don't report spurious errors as a consequence of earlier errors. +// Add more tests as needed. +func _() { + if err := foo /* ERROR undeclared */ (); err != nil /* no error here */ {} +} + +// Use unqualified names for package-local objects. +type T struct{} +var _ int = T /* ERROR value of type T */ {} // use T in error message rather then errors.T diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr0.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr0.src new file mode 100644 index 00000000..672665de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr0.src @@ -0,0 +1,162 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// unary expressions + +package expr0 + +var ( + // bool + b0 = true + b1 bool = b0 + b2 = !true + b3 = !b1 + b4 bool = !true + b5 bool = !b4 + b6 = +b0 /* ERROR "not defined" */ + b7 = -b0 /* ERROR "not defined" */ + b8 = ^b0 /* ERROR "not defined" */ + b9 = *b0 /* ERROR "cannot indirect" */ + b10 = &true /* ERROR "cannot take address" */ + b11 = &b0 + b12 = <-b0 /* ERROR "cannot receive" */ + b13 = & & /* ERROR "cannot take address" */ b0 + + // int + i0 = 1 + i1 int = i0 + i2 = +1 + i3 = +i0 + i4 int = +1 + i5 int = +i4 + i6 = -1 + i7 = -i0 + i8 int = -1 + i9 int = -i4 + i10 = !i0 /* ERROR "not defined" */ + i11 = ^1 + i12 = ^i0 + i13 int = ^1 + i14 int = ^i4 + i15 = *i0 /* ERROR "cannot indirect" */ + i16 = &i0 + i17 = *i16 + i18 = <-i16 /* ERROR "cannot receive" */ + + // uint + u0 = uint(1) + u1 uint = u0 + u2 = +1 + u3 = +u0 + u4 uint = +1 + u5 uint = +u4 + u6 = -1 + u7 = -u0 + u8 uint = - /* ERROR "overflows" */ 1 + u9 uint = -u4 + u10 = !u0 /* ERROR "not defined" */ + u11 = ^1 + u12 = ^i0 + u13 uint = ^ /* ERROR "overflows" */ 1 + u14 uint = ^u4 + u15 = *u0 /* ERROR "cannot indirect" */ + u16 = &u0 + u17 = *u16 + u18 = <-u16 /* ERROR "cannot receive" */ + u19 = ^uint(0) + + // float64 + f0 = float64(1) + f1 float64 = f0 + f2 = +1 + f3 = +f0 + f4 float64 = +1 + f5 float64 = +f4 + f6 = -1 + f7 = -f0 + f8 float64 = -1 + f9 float64 = -f4 + f10 = !f0 /* ERROR "not defined" */ + f11 = ^1 + f12 = ^i0 + f13 float64 = ^1 + f14 float64 = ^f4 /* ERROR "not defined" */ + f15 = *f0 /* ERROR "cannot indirect" */ + f16 = &f0 + f17 = *u16 + f18 = <-u16 /* ERROR "cannot receive" */ + + // complex128 + c0 = complex128(1) + c1 complex128 = c0 + c2 = +1 + c3 = +c0 + c4 complex128 = +1 + c5 complex128 = +c4 + c6 = -1 + c7 = -c0 + c8 complex128 = -1 + c9 complex128 = -c4 + c10 = !c0 /* ERROR "not defined" */ + c11 = ^1 + c12 = ^i0 + c13 complex128 = ^1 + c14 complex128 = ^c4 /* ERROR "not defined" */ + c15 = *c0 /* ERROR "cannot indirect" */ + c16 = &c0 + c17 = *u16 + c18 = <-u16 /* ERROR "cannot receive" */ + + // string + s0 = "foo" + s1 = +"foo" /* ERROR "not defined" */ + s2 = -s0 /* ERROR "not defined" */ + s3 = !s0 /* ERROR "not defined" */ + s4 = ^s0 /* ERROR "not defined" */ + s5 = *s4 /* ERROR "cannot indirect" */ + s6 = &s4 + s7 = *s6 + s8 = <-s7 /* ERROR "cannot receive" */ + + // channel + ch chan int + rc <-chan float64 + sc chan <- string + ch0 = +ch /* ERROR "not defined" */ + ch1 = -ch /* ERROR "not defined" */ + ch2 = !ch /* ERROR "not defined" */ + ch3 = ^ch /* ERROR "not defined" */ + ch4 = *ch /* ERROR "cannot indirect" */ + ch5 = &ch + ch6 = *ch5 + ch7 = <-ch + ch8 = <-rc + ch9 = <-sc /* ERROR "cannot receive" */ +) + +// address of composite literals +type T struct{x, y int} + +func f() T { return T{} } + +var ( + _ = &T{1, 2} + _ = &[...]int{} + _ = &[]int{} + _ = &[]int{} + _ = &map[string]T{} + _ = &(T{1, 2}) + _ = &((((T{1, 2})))) + _ = &f /* ERROR "cannot take address" */ () +) + +// recursive pointer types +type P *P + +var ( + p1 P = new(P) + p2 P = *p1 + p3 P = &p2 +) + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr1.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr1.src new file mode 100644 index 00000000..8ef0aed6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr1.src @@ -0,0 +1,7 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// binary expressions + +package expr1 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr2.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr2.src new file mode 100644 index 00000000..31dc5f02 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr2.src @@ -0,0 +1,247 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// comparisons + +package expr2 + +func _bool() { + const t = true == true + const f = true == false + _ = t /* ERROR "cannot compare" */ < f + _ = 0 /* ERROR "cannot convert" */ == t + var b bool + var x, y float32 + b = x < y + _ = b + _ = struct{b bool}{x < y} +} + +// corner cases +var ( + v0 = nil /* ERROR "cannot compare" */ == nil +) + +func arrays() { + // basics + var a, b [10]int + _ = a == b + _ = a != b + _ = a /* ERROR < not defined */ < b + _ = a == nil /* ERROR cannot convert */ + + type C [10]int + var c C + _ = a == c + + type D [10]int + var d D + _ = c /* ERROR mismatched types */ == d + + var e [10]func() int + _ = e /* ERROR == not defined */ == e +} + +func structs() { + // basics + var s, t struct { + x int + a [10]float32 + _ bool + } + _ = s == t + _ = s != t + _ = s /* ERROR < not defined */ < t + _ = s == nil /* ERROR cannot convert */ + + type S struct { + x int + a [10]float32 + _ bool + } + type T struct { + x int + a [10]float32 + _ bool + } + var ss S + var tt T + _ = s == ss + _ = ss /* ERROR mismatched types */ == tt + + var u struct { + x int + a [10]map[string]int + } + _ = u /* ERROR cannot compare */ == u +} + +func pointers() { + // nil + _ = nil /* ERROR == not defined */ == nil + _ = nil /* ERROR != not defined */ != nil + _ = nil /* ERROR < not defined */ < nil + _ = nil /* ERROR <= not defined */ <= nil + _ = nil /* ERROR > not defined */ > nil + _ = nil /* ERROR >= not defined */ >= nil + + // basics + var p, q *int + _ = p == q + _ = p != q + + _ = p == nil + _ = p != nil + _ = nil == q + _ = nil != q + + _ = p /* ERROR < not defined */ < q + _ = p /* ERROR <= not defined */ <= q + _ = p /* ERROR > not defined */ > q + _ = p /* ERROR >= not defined */ >= q + + // various element types + type ( + S1 struct{} + S2 struct{} + P1 *S1 + P2 *S2 + ) + var ( + ps1 *S1 + ps2 *S2 + p1 P1 + p2 P2 + ) + _ = ps1 == ps1 + _ = ps1 /* ERROR mismatched types */ == ps2 + _ = ps2 /* ERROR mismatched types */ == ps1 + + _ = p1 == p1 + _ = p1 /* ERROR mismatched types */ == p2 + + _ = p1 == ps1 +} + +func channels() { + // basics + var c, d chan int + _ = c == d + _ = c != d + _ = c == nil + _ = c /* ERROR < not defined */ < d + + // various element types (named types) + type ( + C1 chan int + C1r <-chan int + C1s chan<- int + C2 chan float32 + ) + var ( + c1 C1 + c1r C1r + c1s C1s + c1a chan int + c2 C2 + ) + _ = c1 == c1 + _ = c1 /* ERROR mismatched types */ == c1r + _ = c1 /* ERROR mismatched types */ == c1s + _ = c1r /* ERROR mismatched types */ == c1s + _ = c1 == c1a + _ = c1a == c1 + _ = c1 /* ERROR mismatched types */ == c2 + _ = c1a /* ERROR mismatched types */ == c2 + + // various element types (unnamed types) + var ( + d1 chan int + d1r <-chan int + d1s chan<- int + d1a chan<- int + d2 chan float32 + ) + _ = d1 == d1 + _ = d1 == d1r + _ = d1 == d1s + _ = d1r /* ERROR mismatched types */ == d1s + _ = d1 == d1a + _ = d1a == d1 + _ = d1 /* ERROR mismatched types */ == d2 + _ = d1a /* ERROR mismatched types */ == d2 +} + +// for interfaces test +type S1 struct{} +type S11 struct{} +type S2 struct{} +func (*S1) m() int +func (*S11) m() int +func (*S11) n() +func (*S2) m() float32 + +func interfaces() { + // basics + var i, j interface{ m() int } + _ = i == j + _ = i != j + _ = i == nil + _ = i /* ERROR < not defined */ < j + + // various interfaces + var ii interface { m() int; n() } + var k interface { m() float32 } + _ = i == ii + _ = i /* ERROR mismatched types */ == k + + // interfaces vs values + var s1 S1 + var s11 S11 + var s2 S2 + + _ = i == 0 /* ERROR cannot convert */ + _ = i /* ERROR mismatched types */ == s1 + _ = i == &s1 + _ = i == &s11 + + _ = i /* ERROR mismatched types */ == s2 + _ = i /* ERROR mismatched types */ == &s2 +} + +func slices() { + // basics + var s []int + _ = s == nil + _ = s != nil + _ = s /* ERROR < not defined */ < nil + + // slices are not otherwise comparable + _ = s /* ERROR == not defined */ == s + _ = s /* ERROR < not defined */ < s +} + +func maps() { + // basics + var m map[string]int + _ = m == nil + _ = m != nil + _ = m /* ERROR < not defined */ < nil + + // maps are not otherwise comparable + _ = m /* ERROR == not defined */ == m + _ = m /* ERROR < not defined */ < m +} + +func funcs() { + // basics + var f func(int) float32 + _ = f == nil + _ = f != nil + _ = f /* ERROR < not defined */ < nil + + // funcs are not otherwise comparable + _ = f /* ERROR == not defined */ == f + _ = f /* ERROR < not defined */ < f +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr3.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr3.src new file mode 100644 index 00000000..604a2575 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/expr3.src @@ -0,0 +1,445 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package expr3 + +func indexes() { + _ = 1 /* ERROR "cannot index" */ [0] + _ = indexes /* ERROR "cannot index" */ [0] + _ = ( /* ERROR "cannot slice" */ 12 + 3)[1:2] + + var a [10]int + _ = a[true /* ERROR "cannot convert" */ ] + _ = a["foo" /* ERROR "cannot convert" */ ] + _ = a[1.1 /* ERROR "truncated" */ ] + _ = a[1.0] + _ = a[- /* ERROR "negative" */ 1] + _ = a[- /* ERROR "negative" */ 1 :] + _ = a[: - /* ERROR "negative" */ 1] + _ = a[: /* ERROR "2nd index required" */ : /* ERROR "3rd index required" */ ] + _ = a[0: /* ERROR "2nd index required" */ : /* ERROR "3rd index required" */ ] + _ = a[0: /* ERROR "2nd index required" */ :10] + _ = a[:10:10] + + var a0 int + a0 = a[0] + _ = a0 + var a1 int32 + a1 = a /* ERROR "cannot assign" */ [1] + _ = a1 + + _ = a[9] + _ = a[10 /* ERROR "index .* out of bounds" */ ] + _ = a[1 /* ERROR "overflows" */ <<100] + _ = a[10:] + _ = a[:10] + _ = a[10:10] + _ = a[11 /* ERROR "index .* out of bounds" */ :] + _ = a[: 11 /* ERROR "index .* out of bounds" */ ] + _ = a[: 1 /* ERROR "overflows" */ <<100] + _ = a[:10:10] + _ = a[:11 /* ERROR "index .* out of bounds" */ :10] + _ = a[:10:11 /* ERROR "index .* out of bounds" */ ] + _ = a[10:0:10] /* ERROR "invalid slice indices" */ + _ = a[0:10:0] /* ERROR "invalid slice indices" */ + _ = a[10:0:0] /* ERROR "invalid slice indices" */ + _ = &a /* ERROR "cannot take address" */ [:10] + + pa := &a + _ = pa[9] + _ = pa[10 /* ERROR "index .* out of bounds" */ ] + _ = pa[1 /* ERROR "overflows" */ <<100] + _ = pa[10:] + _ = pa[:10] + _ = pa[10:10] + _ = pa[11 /* ERROR "index .* out of bounds" */ :] + _ = pa[: 11 /* ERROR "index .* out of bounds" */ ] + _ = pa[: 1 /* ERROR "overflows" */ <<100] + _ = pa[:10:10] + _ = pa[:11 /* ERROR "index .* out of bounds" */ :10] + _ = pa[:10:11 /* ERROR "index .* out of bounds" */ ] + _ = pa[10:0:10] /* ERROR "invalid slice indices" */ + _ = pa[0:10:0] /* ERROR "invalid slice indices" */ + _ = pa[10:0:0] /* ERROR "invalid slice indices" */ + _ = &pa /* ERROR "cannot take address" */ [:10] + + var b [0]int + _ = b[0 /* ERROR "index .* out of bounds" */ ] + _ = b[:] + _ = b[0:] + _ = b[:0] + _ = b[0:0] + _ = b[0:0:0] + _ = b[1 /* ERROR "index .* out of bounds" */ :0:0] + + var s []int + _ = s[- /* ERROR "negative" */ 1] + _ = s[- /* ERROR "negative" */ 1 :] + _ = s[: - /* ERROR "negative" */ 1] + _ = s[0] + _ = s[1:2] + _ = s[2:1] /* ERROR "invalid slice indices" */ + _ = s[2:] + _ = s[: 1 /* ERROR "overflows" */ <<100] + _ = s[1 /* ERROR "overflows" */ <<100 :] + _ = s[1 /* ERROR "overflows" */ <<100 : 1 /* ERROR "overflows" */ <<100] + _ = s[: /* ERROR "2nd index required" */ : /* ERROR "3rd index required" */ ] + _ = s[:10:10] + _ = s[10:0:10] /* ERROR "invalid slice indices" */ + _ = s[0:10:0] /* ERROR "invalid slice indices" */ + _ = s[10:0:0] /* ERROR "invalid slice indices" */ + _ = &s /* ERROR "cannot take address" */ [:10] + + var t string + _ = t[- /* ERROR "negative" */ 1] + _ = t[- /* ERROR "negative" */ 1 :] + _ = t[: - /* ERROR "negative" */ 1] + _ = t /* ERROR "3-index slice of string" */ [1:2:3] + _ = "foo" /* ERROR "3-index slice of string" */ [1:2:3] + var t0 byte + t0 = t[0] + _ = t0 + var t1 rune + t1 = t /* ERROR "cannot assign" */ [2] + _ = t1 + _ = ("foo" + "bar")[5] + _ = ("foo" + "bar")[6 /* ERROR "index .* out of bounds" */ ] + + const c = "foo" + _ = c[- /* ERROR "negative" */ 1] + _ = c[- /* ERROR "negative" */ 1 :] + _ = c[: - /* ERROR "negative" */ 1] + var c0 byte + c0 = c[0] + _ = c0 + var c2 float32 + c2 = c /* ERROR "cannot assign" */ [2] + _ = c[3 /* ERROR "index .* out of bounds" */ ] + _ = ""[0 /* ERROR "index .* out of bounds" */ ] + _ = c2 + + _ = s[1<<30] // no compile-time error here + + // issue 4913 + type mystring string + var ss string + var ms mystring + var i, j int + ss = "foo"[1:2] + ss = "foo"[i:j] + ms = "foo" /* ERROR "cannot assign" */ [1:2] + ms = "foo" /* ERROR "cannot assign" */ [i:j] + _, _ = ss, ms +} + +type T struct { + x int + y func() +} + +func (*T) m() {} + +func method_expressions() { + _ = T /* ERROR "no field or method" */ .a + _ = T /* ERROR "has no method" */ .x + _ = T /* ERROR "not in method set" */ .m + _ = (*T).m + + var f func(*T) = T /* ERROR "not in method set" */ .m + var g func(*T) = (*T).m + _, _ = f, g + + _ = T /* ERROR "has no method" */ .y + _ = ( /* ERROR "has no method" */ *T).y +} + +func struct_literals() { + type T0 struct { + a, b, c int + } + + type T1 struct { + T0 + a, b int + u float64 + s string + } + + // keyed elements + _ = T1{} + _ = T1{a: 0, 1 /* ERROR "mixture of .* elements" */ } + _ = T1{aa /* ERROR "unknown field" */ : 0} + _ = T1{1 /* ERROR "invalid field name" */ : 0} + _ = T1{a: 0, s: "foo", u: 0, a /* ERROR "duplicate field" */: 10} + _ = T1{a: "foo" /* ERROR "cannot convert" */ } + _ = T1{c /* ERROR "unknown field" */ : 0} + _ = T1{T0: { /* ERROR "missing type" */ }} + _ = T1{T0: T0{}} + _ = T1{T0 /* ERROR "invalid field name" */ .a: 0} + + // unkeyed elements + _ = T0{1, 2, 3} + _ = T0{1, b /* ERROR "mixture" */ : 2, 3} + _ = T0{1, 2} /* ERROR "too few values" */ + _ = T0{1, 2, 3, 4 /* ERROR "too many values" */ } + _ = T0{1, "foo" /* ERROR "cannot convert" */, 3.4 /* ERROR "truncated" */} + + // invalid type + type P *struct{ + x int + } + _ = P /* ERROR "invalid composite literal type" */ {} +} + +func array_literals() { + type A0 [0]int + _ = A0{} + _ = A0{0 /* ERROR "index .* out of bounds" */} + _ = A0{0 /* ERROR "index .* out of bounds" */ : 0} + + type A1 [10]int + _ = A1{} + _ = A1{0, 1, 2} + _ = A1{0, 1, 2, 3, 4, 5, 6, 7, 8, 9} + _ = A1{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 /* ERROR "index .* out of bounds" */ } + _ = A1{- /* ERROR "negative" */ 1: 0} + _ = A1{8: 8, 9} + _ = A1{8: 8, 9, 10 /* ERROR "index .* out of bounds" */ } + _ = A1{0, 1, 2, 0 /* ERROR "duplicate index" */ : 0, 3: 3, 4} + _ = A1{5: 5, 6, 7, 3: 3, 4} + _ = A1{5: 5, 6, 7, 3: 3, 4, 5 /* ERROR "duplicate index" */ } + _ = A1{10 /* ERROR "index .* out of bounds" */ : 10, 10 /* ERROR "index .* out of bounds" */ : 10} + _ = A1{5: 5, 6, 7, 3: 3, 1 /* ERROR "overflows" */ <<100: 4, 5 /* ERROR "duplicate index" */ } + _ = A1{5: 5, 6, 7, 4: 4, 1 /* ERROR "overflows" */ <<100: 4} + _ = A1{2.0} + _ = A1{2.1 /* ERROR "truncated" */ } + _ = A1{"foo" /* ERROR "cannot convert" */ } + + // indices must be integer constants + i := 1 + const f = 2.1 + const s = "foo" + _ = A1{i /* ERROR "index i must be integer constant" */ : 0} + _ = A1{f /* ERROR "truncated" */ : 0} + _ = A1{s /* ERROR "cannot convert" */ : 0} + + a0 := [...]int{} + assert(len(a0) == 0) + + a1 := [...]int{0, 1, 2} + assert(len(a1) == 3) + var a13 [3]int + var a14 [4]int + a13 = a1 + a14 = a1 /* ERROR "cannot assign" */ + _, _ = a13, a14 + + a2 := [...]int{- /* ERROR "negative" */ 1: 0} + _ = a2 + + a3 := [...]int{0, 1, 2, 0 /* ERROR "duplicate index" */ : 0, 3: 3, 4} + assert(len(a3) == 5) // somewhat arbitrary + + a4 := [...]complex128{0, 1, 2, 1<<10-2: -1i, 1i, 400: 10, 12, 14} + assert(len(a4) == 1024) + + // from the spec + type Point struct { x, y float32 } + _ = [...]Point{Point{1.5, -3.5}, Point{0, 0}} + _ = [...]Point{{1.5, -3.5}, {0, 0}} + _ = [][]int{[]int{1, 2, 3}, []int{4, 5}} + _ = [][]int{{1, 2, 3}, {4, 5}} + _ = [...]*Point{&Point{1.5, -3.5}, &Point{0, 0}} + _ = [...]*Point{{1.5, -3.5}, {0, 0}} +} + +func slice_literals() { + type S0 []int + _ = S0{} + _ = S0{0, 1, 2} + _ = S0{0, 1, 2, 3, 4, 5, 6, 7, 8, 9} + _ = S0{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} + _ = S0{- /* ERROR "negative" */ 1: 0} + _ = S0{8: 8, 9} + _ = S0{8: 8, 9, 10} + _ = S0{0, 1, 2, 0 /* ERROR "duplicate index" */ : 0, 3: 3, 4} + _ = S0{5: 5, 6, 7, 3: 3, 4} + _ = S0{5: 5, 6, 7, 3: 3, 4, 5 /* ERROR "duplicate index" */ } + _ = S0{10: 10, 10 /* ERROR "duplicate index" */ : 10} + _ = S0{5: 5, 6, 7, 3: 3, 1 /* ERROR "overflows" */ <<100: 4, 5 /* ERROR "duplicate index" */ } + _ = S0{5: 5, 6, 7, 4: 4, 1 /* ERROR "overflows" */ <<100: 4} + _ = S0{2.0} + _ = S0{2.1 /* ERROR "truncated" */ } + _ = S0{"foo" /* ERROR "cannot convert" */ } + + // indices must be resolved correctly + const index1 = 1 + _ = S0{index1: 1} + _ = S0{index2: 2} + _ = S0{index3 /* ERROR "undeclared name" */ : 3} + + // indices must be integer constants + i := 1 + const f = 2.1 + const s = "foo" + _ = S0{i /* ERROR "index i must be integer constant" */ : 0} + _ = S0{f /* ERROR "truncated" */ : 0} + _ = S0{s /* ERROR "cannot convert" */ : 0} + +} + +const index2 int = 2 + +func map_literals() { + type M0 map[string]int + type M1 map[bool]int + type M2 map[*int]int + + _ = M0{} + _ = M0{1 /* ERROR "missing key" */ } + _ = M0{1 /* ERROR "cannot convert" */ : 2} + _ = M0{"foo": "bar" /* ERROR "cannot convert" */ } + _ = M0{"foo": 1, "bar": 2, "foo" /* ERROR "duplicate key" */ : 3 } + + // map keys must be resolved correctly + key1 := "foo" + _ = M0{key1: 1} + _ = M0{key2: 2} + _ = M0{key3 /* ERROR "undeclared name" */ : 2} + + var value int + _ = M1{true: 1, false: 0} + _ = M2{nil: 0, &value: 1} +} + +var key2 string = "bar" + +type I interface { + m() +} + +type I2 interface { + m(int) +} + +type T1 struct{} +type T2 struct{} + +func (T2) m(int) {} + +func type_asserts() { + var x int + _ = x /* ERROR "not an interface" */ .(int) + + var e interface{} + var ok bool + x, ok = e.(int) + _ = ok + + var t I + _ = t /* ERROR "use of .* outside type switch" */ .(type) + _ = t /* ERROR "missing method m" */ .(T) + _ = t.(*T) + _ = t /* ERROR "missing method m" */ .(T1) + _ = t /* ERROR "wrong type for method m" */ .(T2) + _ = t /* ERROR "wrong type for method m" */ .(I2) + + // e doesn't statically have an m, but may have one dynamically. + _ = e.(I2) +} + +func f0() {} +func f1(x int) {} +func f2(u float32, s string) {} +func fs(s []byte) {} +func fv(x ...int) {} +func fi(x ... interface{}) {} +func (T) fm(x ...int) + +func g0() {} +func g1() int { return 0} +func g2() (u float32, s string) { return } +func gs() []byte { return nil } + +func _calls() { + var x int + var y float32 + var s []int + + f0() + _ = f0 /* ERROR "used as value" */ () + f0(g0 /* ERROR "too many arguments" */ ) + + f1(0) + f1(x) + f1(10.0) + f1() /* ERROR "too few arguments" */ + f1(x, y /* ERROR "too many arguments" */ ) + f1(s /* ERROR "cannot pass" */ ) + f1(x ... /* ERROR "cannot use ..." */ ) + f1(g0 /* ERROR "used as value" */ ()) + f1(g1()) + // f1(g2()) // TODO(gri) missing position in error message + + f2() /* ERROR "too few arguments" */ + f2(3.14) /* ERROR "too few arguments" */ + f2(3.14, "foo") + f2(x /* ERROR "cannot pass" */ , "foo") + f2(g0 /* ERROR "used as value" */ ()) /* ERROR "too few arguments" */ + f2(g1 /* ERROR "cannot pass" */ ()) /* ERROR "too few arguments" */ + f2(g2()) + + fs() /* ERROR "too few arguments" */ + fs(g0 /* ERROR "used as value" */ ()) + fs(g1 /* ERROR "cannot pass" */ ()) + fs(g2 /* ERROR "cannot pass" */ /* ERROR "too many arguments" */ ()) + fs(gs()) + + fv() + fv(1, 2.0, x) + fv(s /* ERROR "cannot pass" */ ) + fv(s...) + fv(x /* ERROR "cannot use" */ ...) + fv(1, s /* ERROR "can only use ... with matching parameter" */ ...) + fv(gs /* ERROR "cannot pass" */ ()) + fv(gs /* ERROR "cannot pass" */ ()...) + + var t T + t.fm() + t.fm(1, 2.0, x) + t.fm(s /* ERROR "cannot pass" */ ) + t.fm(g1()) + t.fm(1, s /* ERROR "can only use ... with matching parameter" */ ...) + t.fm(gs /* ERROR "cannot pass" */ ()) + t.fm(gs /* ERROR "cannot pass" */ ()...) + + T.fm(t, ) + T.fm(t, 1, 2.0, x) + T.fm(t, s /* ERROR "cannot pass" */ ) + T.fm(t, g1()) + T.fm(t, 1, s /* ERROR "can only use ... with matching parameter" */ ...) + T.fm(t, gs /* ERROR "cannot pass" */ ()) + T.fm(t, gs /* ERROR "cannot pass" */ ()...) + + var i interface{ fm(x ...int) } = t + i.fm() + i.fm(1, 2.0, x) + i.fm(s /* ERROR "cannot pass" */ ) + i.fm(g1()) + i.fm(1, s /* ERROR "can only use ... with matching parameter" */ ...) + i.fm(gs /* ERROR "cannot pass" */ ()) + i.fm(gs /* ERROR "cannot pass" */ ()...) + + fi() + fi(1, 2.0, x, 3.14, "foo") + fi(g2()) + fi(0, g2) + fi(0, g2 /* ERROR "2-valued expression" */ ()) +} + +func issue6344() { + type T []interface{} + var x T + fi(x...) // ... applies also to named slices +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/gotos.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/gotos.src new file mode 100644 index 00000000..0c7ee440 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/gotos.src @@ -0,0 +1,560 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file is a modified copy of $GOROOT/test/goto.go. + +package gotos + +var ( + i, n int + x []int + c chan int + m map[int]int + s string +) + +// goto after declaration okay +func _() { + x := 1 + goto L +L: + _ = x +} + +// goto before declaration okay +func _() { + goto L +L: + x := 1 + _ = x +} + +// goto across declaration not okay +func _() { + goto L /* ERROR "goto L jumps over variable declaration at line 36" */ + x := 1 + _ = x +L: +} + +// goto across declaration in inner scope okay +func _() { + goto L + { + x := 1 + _ = x + } +L: +} + +// goto across declaration after inner scope not okay +func _() { + goto L /* ERROR "goto L jumps over variable declaration at line 58" */ + { + x := 1 + _ = x + } + x := 1 + _ = x +L: +} + +// goto across declaration in reverse okay +func _() { +L: + x := 1 + _ = x + goto L +} + +func _() { +L: L1: + x := 1 + _ = x + goto L + goto L1 +} + +// error shows first offending variable +func _() { + goto L /* ERROR "goto L jumps over variable declaration at line 84" */ + x := 1 + _ = x + y := 1 + _ = y +L: +} + +// goto not okay even if code path is dead +func _() { + goto L /* ERROR "goto L jumps over variable declaration" */ + x := 1 + _ = x + y := 1 + _ = y + return +L: +} + +// goto into outer block okay +func _() { + { + goto L + } +L: +} + +func _() { + { + goto L + goto L1 + } +L: L1: +} + +// goto backward into outer block okay +func _() { +L: + { + goto L + } +} + +func _() { +L: L1: + { + goto L + goto L1 + } +} + +// goto into inner block not okay +func _() { + goto L /* ERROR "goto L jumps into block" */ + { + L: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + goto L1 /* ERROR "goto L1 jumps into block" */ + { + L: L1: + } +} + +// goto backward into inner block still not okay +func _() { + { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + { + L: L1: + } + goto L /* ERROR "goto L jumps into block" */ + goto L1 /* ERROR "goto L1 jumps into block" */ +} + +// error shows first (outermost) offending block +func _() { + goto L /* ERROR "goto L jumps into block" */ + { + { + { + L: + } + } + } +} + +// error prefers block diagnostic over declaration diagnostic +func _() { + goto L /* ERROR "goto L jumps into block" */ + x := 1 + _ = x + { + L: + } +} + +// many kinds of blocks, all invalid to jump into or among, +// but valid to jump out of + +// if + +func _() { +L: + if true { + goto L + } +} + +func _() { +L: + if true { + goto L + } else { + } +} + +func _() { +L: + if false { + } else { + goto L + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + if true { + L: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + if true { + L: + } else { + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + if true { + } else { + L: + } +} + +func _() { + if false { + L: + } else { + goto L /* ERROR "goto L jumps into block" */ + } +} + +func _() { + if true { + goto L /* ERROR "goto L jumps into block" */ + } else { + L: + } +} + +func _() { + if true { + goto L /* ERROR "goto L jumps into block" */ + } else if false { + L: + } +} + +func _() { + if true { + goto L /* ERROR "goto L jumps into block" */ + } else if false { + L: + } else { + } +} + +func _() { + if true { + goto L /* ERROR "goto L jumps into block" */ + } else if false { + } else { + L: + } +} + +func _() { + if true { + goto L /* ERROR "goto L jumps into block" */ + } else { + L: + } +} + +func _() { + if true { + L: + } else { + goto L /* ERROR "goto L jumps into block" */ + } +} + +// for + +func _() { + for { + goto L + } +L: +} + +func _() { + for { + goto L + L: + } +} + +func _() { + for { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + for { + goto L + L1: + } +L: + goto L1 /* ERROR "goto L1 jumps into block" */ +} + +func _() { + for i < n { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + for i = 0; i < n; i++ { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + for i = range x { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + for i = range c { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + for i = range m { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +func _() { + for i = range s { + L: + } + goto L /* ERROR "goto L jumps into block" */ +} + +// switch + +func _() { +L: + switch i { + case 0: + goto L + } +} + +func _() { +L: + switch i { + case 0: + + default: + goto L + } +} + +func _() { + switch i { + case 0: + + default: + L: + goto L + } +} + +func _() { + switch i { + case 0: + + default: + goto L + L: + } +} + +func _() { + switch i { + case 0: + goto L + L: + ; + default: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + switch i { + case 0: + L: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + switch i { + case 0: + L: + ; + default: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + switch i { + case 0: + default: + L: + } +} + +func _() { + switch i { + default: + goto L /* ERROR "goto L jumps into block" */ + case 0: + L: + } +} + +func _() { + switch i { + case 0: + L: + ; + default: + goto L /* ERROR "goto L jumps into block" */ + } +} + +// select +// different from switch. the statement has no implicit block around it. + +func _() { +L: + select { + case <-c: + goto L + } +} + +func _() { +L: + select { + case c <- 1: + + default: + goto L + } +} + +func _() { + select { + case <-c: + + default: + L: + goto L + } +} + +func _() { + select { + case c <- 1: + + default: + goto L + L: + } +} + +func _() { + select { + case <-c: + goto L + L: + ; + default: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + select { + case c <- 1: + L: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + select { + case c <- 1: + L: + ; + default: + } +} + +func _() { + goto L /* ERROR "goto L jumps into block" */ + select { + case <-c: + default: + L: + } +} + +func _() { + select { + default: + goto L /* ERROR "goto L jumps into block" */ + case <-c: + L: + } +} + +func _() { + select { + case <-c: + L: + ; + default: + goto L /* ERROR "goto L jumps into block" */ + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/importdecl0a.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/importdecl0a.src new file mode 100644 index 00000000..49a35fec --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/importdecl0a.src @@ -0,0 +1,50 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package importdecl0 + +import () + +import ( + // we can have multiple blank imports (was bug) + _ "math" + _ "net/rpc" + init /* ERROR "cannot declare init" */ "fmt" + // reflect defines a type "flag" which shows up in the gc export data + "reflect" + . /* ERROR "imported but not used" */ "reflect" +) + +import "math" /* ERROR "imported but not used" */ +import m /* ERROR "imported but not used" */ "math" +import _ "math" + +import ( + "math/big" /* ERROR "imported but not used" */ + b /* ERROR "imported but not used" */ "math/big" + _ "math/big" +) + +import "fmt" +import f1 "fmt" +import f2 "fmt" + +// reflect.flag must not be visible in this package +type flag int +type _ reflect /* ERROR "not exported" */ .flag + +// dot-imported exported objects may conflict with local objects +type Value /* ERROR "already declared in this file" */ struct{} + +var _ = fmt.Println // use "fmt" + +func _() { + f1.Println() // use "fmt" +} + +func _() { + _ = func() { + f2.Println() // use "fmt" + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/importdecl0b.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/importdecl0b.src new file mode 100644 index 00000000..6844e709 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/importdecl0b.src @@ -0,0 +1,33 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package importdecl0 + +import "math" +import m "math" + +import . "testing" // declares T in file scope +import . /* ERROR "imported but not used" */ "unsafe" +import . "fmt" // declares Println in file scope + +import ( + // TODO(gri) At the moment, 2 errors are reported because both go/parser + // and the type checker report it. Eventually, this test should not be + // done by the parser anymore. + "" /* ERROR invalid import path */ /* ERROR invalid import path */ + "a!b" /* ERROR invalid import path */ /* ERROR invalid import path */ + "abc\xffdef" /* ERROR invalid import path */ /* ERROR invalid import path */ +) + +// using "math" in this file doesn't affect its use in other files +const Pi0 = math.Pi +const Pi1 = m.Pi + +type _ T // use "testing" + +func _() func() interface{} { + return func() interface{} { + return Println // use "fmt" + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/init0.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/init0.src new file mode 100644 index 00000000..9467daf8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/init0.src @@ -0,0 +1,106 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// initialization cycles + +package init0 + +// initialization cycles (we don't know the types) +const ( + s0 /* ERROR initialization cycle */ = s0 + + x0 /* ERROR initialization cycle */ = y0 + y0 = x0 + + a0 = b0 + b0 /* ERROR initialization cycle */ = c0 + c0 = d0 + d0 = b0 +) + +var ( + s1 /* ERROR initialization cycle */ = s1 + + x1 /* ERROR initialization cycle */ = y1 + y1 = x1 + + a1 = b1 + b1 /* ERROR initialization cycle */ = c1 + c1 = d1 + d1 = b1 +) + +// initialization cycles (we know the types) +const ( + s2 /* ERROR initialization cycle */ int = s2 + + x2 /* ERROR initialization cycle */ int = y2 + y2 = x2 + + a2 = b2 + b2 /* ERROR initialization cycle */ int = c2 + c2 = d2 + d2 = b2 +) + +var ( + s3 /* ERROR initialization cycle */ int = s3 + + x3 /* ERROR initialization cycle */ int = y3 + y3 = x3 + + a3 = b3 + b3 /* ERROR initialization cycle */ int = c3 + c3 = d3 + d3 = b3 +) + +// cycles via struct fields + +type S1 struct { + f int +} +const cx3 S1 /* ERROR invalid constant type */ = S1{cx3.f} +var vx3 /* ERROR initialization cycle */ S1 = S1{vx3.f} + +// cycles via functions + +var x4 = x5 +var x5 /* ERROR initialization cycle */ = f1() +func f1() int { return x5*10 } + +var x6 /* ERROR initialization cycle */ , x7 = f2() +var x8 = x7 +func f2() (int, int) { return f3() + f3(), 0 } +func f3() int { return x8 } + +// cycles via closures + +var x9 /* ERROR initialization cycle */ = func() int { return x9 }() + +var x10 /* ERROR initialization cycle */ = f4() + +func f4() int { + _ = func() { + _ = x10 + } + return 0 +} + +// cycles via method expressions + +type T1 struct{} + +func (T1) m() bool { _ = x11; return false } + +var x11 /* ERROR initialization cycle */ = T1.m(T1{}) + +// no cycles via method values + +type T2 struct{} + +func (T2) m() bool { _ = x12; return false } + +var t1 T2 +var x12 = t1.m diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/init1.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/init1.src new file mode 100644 index 00000000..0a594948 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/init1.src @@ -0,0 +1,97 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// initialization cycles + +package init1 + +// issue 6683 (marked as WorkingAsIntended) + +type T0 struct{} + +func (T0) m() int { return y0 } + +var x0 = T0{} + +var y0 = x0.m() // no cycle reported + +type T1 struct{} + +func (T1) m() int { return y1 } + +var x1 interface { + m() int +} = T1{} + +var y1 = x1.m() // no cycle reported + +// issue 6703 (modified) + +var x2 /* ERROR initialization cycle */ = T2.m + +var y2 = x2 + +type T2 struct{} + +func (T2) m() int { + _ = y2 + return 0 +} + +var x3 /* ERROR initialization cycle */ = T3.m(T3{}) // <<<< added (T3{}) + +var y3 = x3 + +type T3 struct{} + +func (T3) m() int { + _ = y3 + return 0 +} + +var x4 = T4{}.m // <<<< added {} + +var y4 = x4 + +type T4 struct{} + +func (T4) m() int { + _ = y4 + return 0 +} + +var x5 = T5{}.m() // <<<< added () + +var y5 = x5 + +type T5 struct{} + +func (T5) m() int { + _ = y5 + return 0 +} + +// issue 4847 +// simplified test case + +var x6 = f6 +var y6 /* ERROR initialization cycle */ = f6 +func f6() { _ = y6 } + +// full test case + +type ( + E int + S int +) + +type matcher func(s *S) E + +func matchList(s *S) E { return matcher(matchAnyFn)(s) } + +var foo = matcher(matchList) + +var matchAny /* ERROR initialization cycle */ = matcher(matchList) + +func matchAnyFn(s *S) (err E) { return matchAny(s) } \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/issues.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/issues.src new file mode 100644 index 00000000..abcd11e1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/issues.src @@ -0,0 +1,16 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package issues + +import "fmt" + +func issue7035() { + type T struct{ X int } + _ = func() { + fmt.Println() // must refer to imported fmt rather than the fmt below + } + fmt := new(T) + _ = fmt.X +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/labels.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/labels.src new file mode 100644 index 00000000..102ffc7c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/labels.src @@ -0,0 +1,207 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file is a modified concatenation of the files +// $GOROOT/test/label.go and $GOROOT/test/label1.go. + +package labels + +var x int + +func f0() { +L1 /* ERROR "label L1 declared but not used" */ : + for { + } +L2 /* ERROR "label L2 declared but not used" */ : + select { + } +L3 /* ERROR "label L3 declared but not used" */ : + switch { + } +L4 /* ERROR "label L4 declared but not used" */ : + if true { + } +L5 /* ERROR "label L5 declared but not used" */ : + f0() +L6: + f0() +L6 /* ERROR "label L6 already declared" */ : + f0() + if x == 20 { + goto L6 + } + +L7: + for { + break L7 + break L8 /* ERROR "invalid break label L8" */ + } + +// A label must be directly associated with a switch, select, or +// for statement; it cannot be the label of a labeled statement. + +L7a /* ERROR "declared but not used" */ : L7b: + for { + break L7a /* ERROR "invalid break label L7a" */ + continue L7a /* ERROR "invalid continue label L7a" */ + continue L7b + } + +L8: + for { + if x == 21 { + continue L8 + continue L7 /* ERROR "invalid continue label L7" */ + } + } + +L9: + switch { + case true: + break L9 + defalt /* ERROR "label defalt declared but not used" */ : + } + +L10: + select { + default: + break L10 + break L9 /* ERROR "invalid break label L9" */ + } + + goto L10a +L10a: L10b: + select { + default: + break L10a /* ERROR "invalid break label L10a" */ + break L10b + continue L10b /* ERROR "invalid continue label L10b" */ + } +} + +func f1() { +L1: + for { + if x == 0 { + break L1 + } + if x == 1 { + continue L1 + } + goto L1 + } + +L2: + select { + default: + if x == 0 { + break L2 + } + if x == 1 { + continue L2 /* ERROR "invalid continue label L2" */ + } + goto L2 + } + +L3: + switch { + case x > 10: + if x == 11 { + break L3 + } + if x == 12 { + continue L3 /* ERROR "invalid continue label L3" */ + } + goto L3 + } + +L4: + if true { + if x == 13 { + break L4 /* ERROR "invalid break label L4" */ + } + if x == 14 { + continue L4 /* ERROR "invalid continue label L4" */ + } + if x == 15 { + goto L4 + } + } + +L5: + f1() + if x == 16 { + break L5 /* ERROR "invalid break label L5" */ + } + if x == 17 { + continue L5 /* ERROR "invalid continue label L5" */ + } + if x == 18 { + goto L5 + } + + for { + if x == 19 { + break L1 /* ERROR "invalid break label L1" */ + } + if x == 20 { + continue L1 /* ERROR "invalid continue label L1" */ + } + if x == 21 { + goto L1 + } + } +} + +// Additional tests not in the original files. + +func f2() { +L1 /* ERROR "label L1 declared but not used" */ : + if x == 0 { + for { + continue L1 /* ERROR "invalid continue label L1" */ + } + } +} + +func f3() { +L1: +L2: +L3: + for { + break L1 /* ERROR "invalid break label L1" */ + break L2 /* ERROR "invalid break label L2" */ + break L3 + continue L1 /* ERROR "invalid continue label L1" */ + continue L2 /* ERROR "invalid continue label L2" */ + continue L3 + goto L1 + goto L2 + goto L3 + } +} + +// Blank labels are never declared. + +func f4() { +_: +_: // multiple blank labels are ok + goto _ /* ERROR "label _ not declared" */ +} + +func f5() { +_: + for { + break _ /* ERROR "invalid break label _" */ + continue _ /* ERROR "invalid continue label _" */ + } +} + +func f6() { +_: + switch { + default: + break _ /* ERROR "invalid break label _" */ + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/methodsets.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/methodsets.src new file mode 100644 index 00000000..89211468 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/methodsets.src @@ -0,0 +1,214 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package methodsets + +type T0 struct {} + +func (T0) v0() {} +func (*T0) p0() {} + +type T1 struct {} // like T0 with different method names + +func (T1) v1() {} +func (*T1) p1() {} + +type T2 interface { + v2() + p2() +} + +type T3 struct { + T0 + *T1 + T2 +} + +// Method expressions +func _() { + var ( + _ func(T0) = T0.v0 + _ = T0 /* ERROR "not in method set" */ .p0 + + _ func (*T0) = (*T0).v0 + _ func (*T0) = (*T0).p0 + + // T1 is like T0 + + _ func(T2) = T2.v2 + _ func(T2) = T2.p2 + + _ func(T3) = T3.v0 + _ func(T3) = T3 /* ERROR "not in method set" */ .p0 + _ func(T3) = T3.v1 + _ func(T3) = T3.p1 + _ func(T3) = T3.v2 + _ func(T3) = T3.p2 + + _ func(*T3) = (*T3).v0 + _ func(*T3) = (*T3).p0 + _ func(*T3) = (*T3).v1 + _ func(*T3) = (*T3).p1 + _ func(*T3) = (*T3).v2 + _ func(*T3) = (*T3).p2 + ) +} + +// Method values with addressable receivers +func _() { + var ( + v0 T0 + _ func() = v0.v0 + _ func() = v0.p0 + ) + + var ( + p0 *T0 + _ func() = p0.v0 + _ func() = p0.p0 + ) + + // T1 is like T0 + + var ( + v2 T2 + _ func() = v2.v2 + _ func() = v2.p2 + ) + + var ( + v4 T3 + _ func() = v4.v0 + _ func() = v4.p0 + _ func() = v4.v1 + _ func() = v4.p1 + _ func() = v4.v2 + _ func() = v4.p2 + ) + + var ( + p4 *T3 + _ func() = p4.v0 + _ func() = p4.p0 + _ func() = p4.v1 + _ func() = p4.p1 + _ func() = p4.v2 + _ func() = p4.p2 + ) +} + +// Method calls with addressable receivers +func _() { + var v0 T0 + v0.v0() + v0.p0() + + var p0 *T0 + p0.v0() + p0.p0() + + // T1 is like T0 + + var v2 T2 + v2.v2() + v2.p2() + + var v4 T3 + v4.v0() + v4.p0() + v4.v1() + v4.p1() + v4.v2() + v4.p2() + + var p4 *T3 + p4.v0() + p4.p0() + p4.v1() + p4.p1() + p4.v2() + p4.p2() +} + +// Method values with value receivers +func _() { + var ( + _ func() = T0{}.v0 + _ func() = T0 /* ERROR "not in method set" */ {}.p0 + + _ func() = (&T0{}).v0 + _ func() = (&T0{}).p0 + + // T1 is like T0 + + // no values for T2 + + _ func() = T3{}.v0 + _ func() = T3 /* ERROR "not in method set" */ {}.p0 + _ func() = T3{}.v1 + _ func() = T3{}.p1 + _ func() = T3{}.v2 + _ func() = T3{}.p2 + + _ func() = (&T3{}).v0 + _ func() = (&T3{}).p0 + _ func() = (&T3{}).v1 + _ func() = (&T3{}).p1 + _ func() = (&T3{}).v2 + _ func() = (&T3{}).p2 + ) +} + +// Method calls with value receivers +func _() { + T0{}.v0() + T0 /* ERROR "not in method set" */ {}.p0() + + (&T0{}).v0() + (&T0{}).p0() + + // T1 is like T0 + + // no values for T2 + + T3{}.v0() + T3 /* ERROR "not in method set" */ {}.p0() + T3{}.v1() + T3{}.p1() + T3{}.v2() + T3{}.p2() + + (&T3{}).v0() + (&T3{}).p0() + (&T3{}).v1() + (&T3{}).p1() + (&T3{}).v2() + (&T3{}).p2() +} + +// *T has no methods if T is an interface type +func issue5918() { + var ( + err error + _ = err.Error() + _ func() string = err.Error + _ func(error) string = error.Error + + perr = &err + _ = perr /* ERROR "no field or method" */ .Error() + _ func() string = perr /* ERROR "no field or method" */ .Error + _ func(*error) string = ( /* ERROR "no field or method" */ *error).Error + ) + + type T *interface{ m() int } + var ( + x T + _ = (*x).m() + _ = (*x).m + + _ = x /* ERROR "no field or method" */ .m() + _ = x /* ERROR "no field or method" */ .m + _ = T /* ERROR "no field or method" */ .m + ) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/shifts.src b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/shifts.src new file mode 100644 index 00000000..6c6d8f0f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/testdata/shifts.src @@ -0,0 +1,321 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package shifts + +func shifts0() { + // basic constant shifts + const ( + s = 10 + _ = 0<<0 + _ = 1<> s) + _, _, _ = u, v, x +} + +func shifts4() { + // shifts in comparisons w/ untyped operands + var s uint + + _ = 1< len(fields) { + panic("more tags than fields") + } + return &Struct{fields: fields, tags: tags} +} + +// NumFields returns the number of fields in the struct (including blank and anonymous fields). +func (s *Struct) NumFields() int { return len(s.fields) } + +// Field returns the i'th field for 0 <= i < NumFields(). +func (s *Struct) Field(i int) *Var { return s.fields[i] } + +// Tag returns the i'th field tag for 0 <= i < NumFields(). +func (s *Struct) Tag(i int) string { + if i < len(s.tags) { + return s.tags[i] + } + return "" +} + +// A Pointer represents a pointer type. +type Pointer struct { + base Type // element type +} + +// NewPointer returns a new pointer type for the given element (base) type. +func NewPointer(elem Type) *Pointer { return &Pointer{base: elem} } + +// Elem returns the element type for the given pointer p. +func (p *Pointer) Elem() Type { return p.base } + +// A Tuple represents an ordered list of variables; a nil *Tuple is a valid (empty) tuple. +// Tuples are used as components of signatures and to represent the type of multiple +// assignments; they are not first class types of Go. +type Tuple struct { + vars []*Var +} + +// NewTuple returns a new tuple for the given variables. +func NewTuple(x ...*Var) *Tuple { + if len(x) > 0 { + return &Tuple{x} + } + return nil +} + +// Len returns the number variables of tuple t. +func (t *Tuple) Len() int { + if t != nil { + return len(t.vars) + } + return 0 +} + +// At returns the i'th variable of tuple t. +func (t *Tuple) At(i int) *Var { return t.vars[i] } + +// A Signature represents a (non-builtin) function or method type. +type Signature struct { + scope *Scope // function scope, always present + recv *Var // nil if not a method + params *Tuple // (incoming) parameters from left to right; or nil + results *Tuple // (outgoing) results from left to right; or nil + variadic bool // true if the last parameter's type is of the form ...T +} + +// NewSignature returns a new function type for the given receiver, parameters, +// and results, either of which may be nil. If variadic is set, the function +// is variadic, it must have at least one parameter, and the last parameter +// must be of unnamed slice type. +func NewSignature(scope *Scope, recv *Var, params, results *Tuple, variadic bool) *Signature { + // TODO(gri) Should we rely on the correct (non-nil) incoming scope + // or should this function allocate and populate a scope? + if variadic { + n := params.Len() + if n == 0 { + panic("types.NewSignature: variadic function must have at least one parameter") + } + if _, ok := params.At(n - 1).typ.(*Slice); !ok { + panic("types.NewSignature: variadic parameter must be of unnamed slice type") + } + } + return &Signature{scope, recv, params, results, variadic} +} + +// Recv returns the receiver of signature s (if a method), or nil if a +// function. +// +// For an abstract method, Recv returns the enclosing interface either +// as a *Named or an *Interface. Due to embedding, an interface may +// contain methods whose receiver type is a different interface. +func (s *Signature) Recv() *Var { return s.recv } + +// Params returns the parameters of signature s, or nil. +func (s *Signature) Params() *Tuple { return s.params } + +// Results returns the results of signature s, or nil. +func (s *Signature) Results() *Tuple { return s.results } + +// Variadic reports whether the signature s is variadic. +func (s *Signature) Variadic() bool { return s.variadic } + +// An Interface represents an interface type. +type Interface struct { + methods []*Func // ordered list of explicitly declared methods + embeddeds []*Named // ordered list of explicitly embedded types + + allMethods []*Func // ordered list of methods declared with or embedded in this interface (TODO(gri): replace with mset) +} + +// NewInterface returns a new interface for the given methods and embedded types. +func NewInterface(methods []*Func, embeddeds []*Named) *Interface { + typ := new(Interface) + + var mset objset + for _, m := range methods { + if mset.insert(m) != nil { + panic("multiple methods with the same name") + } + // set receiver + // TODO(gri) Ideally, we should use a named type here instead of + // typ, for less verbose printing of interface method signatures. + m.typ.(*Signature).recv = NewVar(m.pos, m.pkg, "", typ) + } + sort.Sort(byUniqueMethodName(methods)) + + var allMethods []*Func + if embeddeds == nil { + allMethods = methods + } else { + allMethods = append(allMethods, methods...) + for _, t := range embeddeds { + it := t.Underlying().(*Interface) + for _, tm := range it.allMethods { + // Make a copy of the method and adjust its receiver type. + newm := *tm + newmtyp := *tm.typ.(*Signature) + newm.typ = &newmtyp + newmtyp.recv = NewVar(newm.pos, newm.pkg, "", typ) + allMethods = append(allMethods, &newm) + } + } + sort.Sort(byUniqueTypeName(embeddeds)) + sort.Sort(byUniqueMethodName(allMethods)) + } + + typ.methods = methods + typ.embeddeds = embeddeds + typ.allMethods = allMethods + return typ +} + +// NumExplicitMethods returns the number of explicitly declared methods of interface t. +func (t *Interface) NumExplicitMethods() int { return len(t.methods) } + +// ExplicitMethod returns the i'th explicitly declared method of interface t for 0 <= i < t.NumExplicitMethods(). +// The methods are ordered by their unique Id. +func (t *Interface) ExplicitMethod(i int) *Func { return t.methods[i] } + +// NumEmbeddeds returns the number of embedded types in interface t. +func (t *Interface) NumEmbeddeds() int { return len(t.embeddeds) } + +// Embedded returns the i'th embedded type of interface t for 0 <= i < t.NumEmbeddeds(). +// The types are ordered by the corresponding TypeName's unique Id. +func (t *Interface) Embedded(i int) *Named { return t.embeddeds[i] } + +// NumMethods returns the total number of methods of interface t. +func (t *Interface) NumMethods() int { return len(t.allMethods) } + +// Method returns the i'th method of interface t for 0 <= i < t.NumMethods(). +// The methods are ordered by their unique Id. +func (t *Interface) Method(i int) *Func { return t.allMethods[i] } + +// Empty returns true if t is the empty interface. +func (t *Interface) Empty() bool { return len(t.allMethods) == 0 } + +// A Map represents a map type. +type Map struct { + key, elem Type +} + +// NewMap returns a new map for the given key and element types. +func NewMap(key, elem Type) *Map { + return &Map{key, elem} +} + +// Key returns the key type of map m. +func (m *Map) Key() Type { return m.key } + +// Elem returns the element type of map m. +func (m *Map) Elem() Type { return m.elem } + +// A Chan represents a channel type. +type Chan struct { + dir ChanDir + elem Type +} + +// A ChanDir value indicates a channel direction. +type ChanDir int + +// The direction of a channel is indicated by one of the following constants. +const ( + SendRecv ChanDir = iota + SendOnly + RecvOnly +) + +// NewChan returns a new channel type for the given direction and element type. +func NewChan(dir ChanDir, elem Type) *Chan { + return &Chan{dir, elem} +} + +// Dir returns the direction of channel c. +func (c *Chan) Dir() ChanDir { return c.dir } + +// Elem returns the element type of channel c. +func (c *Chan) Elem() Type { return c.elem } + +// A Named represents a named type. +type Named struct { + obj *TypeName // corresponding declared object + underlying Type // possibly a *Named during setup; never a *Named once set up completely + methods []*Func // methods declared for this type (not the method set of this type) +} + +// NewNamed returns a new named type for the given type name, underlying type, and associated methods. +// The underlying type must not be a *Named. +func NewNamed(obj *TypeName, underlying Type, methods []*Func) *Named { + if _, ok := underlying.(*Named); ok { + panic("types.NewNamed: underlying type must not be *Named") + } + typ := &Named{obj: obj, underlying: underlying, methods: methods} + if obj.typ == nil { + obj.typ = typ + } + return typ +} + +// TypeName returns the type name for the named type t. +func (t *Named) Obj() *TypeName { return t.obj } + +// NumMethods returns the number of explicit methods whose receiver is named type t. +func (t *Named) NumMethods() int { return len(t.methods) } + +// Method returns the i'th method of named type t for 0 <= i < t.NumMethods(). +func (t *Named) Method(i int) *Func { return t.methods[i] } + +// SetUnderlying sets the underlying type and marks t as complete. +// TODO(gri) determine if there's a better solution rather than providing this function +func (t *Named) SetUnderlying(underlying Type) { + if underlying == nil { + panic("types.Named.SetUnderlying: underlying type must not be nil") + } + if _, ok := underlying.(*Named); ok { + panic("types.Named.SetUnderlying: underlying type must not be *Named") + } + t.underlying = underlying +} + +// AddMethod adds method m unless it is already in the method list. +// TODO(gri) find a better solution instead of providing this function +func (t *Named) AddMethod(m *Func) { + if i, _ := lookupMethod(t.methods, m.pkg, m.name); i < 0 { + t.methods = append(t.methods, m) + } +} + +// Implementations for Type methods. + +func (t *Basic) Underlying() Type { return t } +func (t *Array) Underlying() Type { return t } +func (t *Slice) Underlying() Type { return t } +func (t *Struct) Underlying() Type { return t } +func (t *Pointer) Underlying() Type { return t } +func (t *Tuple) Underlying() Type { return t } +func (t *Signature) Underlying() Type { return t } +func (t *Interface) Underlying() Type { return t } +func (t *Map) Underlying() Type { return t } +func (t *Chan) Underlying() Type { return t } +func (t *Named) Underlying() Type { return t.underlying } + +func (t *Basic) String() string { return TypeString(nil, t) } +func (t *Array) String() string { return TypeString(nil, t) } +func (t *Slice) String() string { return TypeString(nil, t) } +func (t *Struct) String() string { return TypeString(nil, t) } +func (t *Pointer) String() string { return TypeString(nil, t) } +func (t *Tuple) String() string { return TypeString(nil, t) } +func (t *Signature) String() string { return TypeString(nil, t) } +func (t *Interface) String() string { return TypeString(nil, t) } +func (t *Map) String() string { return TypeString(nil, t) } +func (t *Chan) String() string { return TypeString(nil, t) } +func (t *Named) String() string { return TypeString(nil, t) } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typestring.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typestring.go new file mode 100644 index 00000000..ad6a1d13 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typestring.go @@ -0,0 +1,255 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements printing of types. + +package types + +import ( + "bytes" + "fmt" +) + +// If GcCompatibilityMode is set, printing of types is modified +// to match the representation of some types in the gc compiler: +// +// - byte and rune lose their alias name and simply stand for +// uint8 and int32 respectively +// - embedded interfaces get flattened (the embedding info is lost, +// and certain recursive interface types cannot be printed anymore) +// +// This makes it easier to compare packages computed with the type- +// checker vs packages imported from gc export data. +// +// Caution: This flag affects all uses of WriteType, globally. +// It is only provided for testing in conjunction with +// gc-generated data. It may be removed at any time. +var GcCompatibilityMode bool + +// TypeString returns the string representation of typ. +// Named types are printed package-qualified if they +// do not belong to this package. +func TypeString(this *Package, typ Type) string { + var buf bytes.Buffer + WriteType(&buf, this, typ) + return buf.String() +} + +// WriteType writes the string representation of typ to buf. +// Named types are printed package-qualified if they +// do not belong to this package. +func WriteType(buf *bytes.Buffer, this *Package, typ Type) { + writeType(buf, this, typ, make([]Type, 8)) +} + +func writeType(buf *bytes.Buffer, this *Package, typ Type, visited []Type) { + // Theoretically, this is a quadratic lookup algorithm, but in + // practice deeply nested composite types with unnamed component + // types are uncommon. This code is likely more efficient than + // using a map. + for _, t := range visited { + if t == typ { + fmt.Fprintf(buf, "○%T", typ) // cycle to typ + return + } + } + visited = append(visited, typ) + + switch t := typ.(type) { + case nil: + buf.WriteString("") + + case *Basic: + if t.kind == UnsafePointer { + buf.WriteString("unsafe.") + } + if GcCompatibilityMode { + // forget the alias names + switch t.kind { + case Byte: + t = Typ[Uint8] + case Rune: + t = Typ[Int32] + } + } + buf.WriteString(t.name) + + case *Array: + fmt.Fprintf(buf, "[%d]", t.len) + writeType(buf, this, t.elem, visited) + + case *Slice: + buf.WriteString("[]") + writeType(buf, this, t.elem, visited) + + case *Struct: + buf.WriteString("struct{") + for i, f := range t.fields { + if i > 0 { + buf.WriteString("; ") + } + if !f.anonymous { + buf.WriteString(f.name) + buf.WriteByte(' ') + } + writeType(buf, this, f.typ, visited) + if tag := t.Tag(i); tag != "" { + fmt.Fprintf(buf, " %q", tag) + } + } + buf.WriteByte('}') + + case *Pointer: + buf.WriteByte('*') + writeType(buf, this, t.base, visited) + + case *Tuple: + writeTuple(buf, this, t, false, visited) + + case *Signature: + buf.WriteString("func") + writeSignature(buf, this, t, visited) + + case *Interface: + // We write the source-level methods and embedded types rather + // than the actual method set since resolved method signatures + // may have non-printable cycles if parameters have anonymous + // interface types that (directly or indirectly) embed the + // current interface. For instance, consider the result type + // of m: + // + // type T interface{ + // m() interface{ T } + // } + // + buf.WriteString("interface{") + if GcCompatibilityMode { + // print flattened interface + // (useful to compare against gc-generated interfaces) + for i, m := range t.allMethods { + if i > 0 { + buf.WriteString("; ") + } + buf.WriteString(m.name) + writeSignature(buf, this, m.typ.(*Signature), visited) + } + } else { + // print explicit interface methods and embedded types + for i, m := range t.methods { + if i > 0 { + buf.WriteString("; ") + } + buf.WriteString(m.name) + writeSignature(buf, this, m.typ.(*Signature), visited) + } + for i, typ := range t.embeddeds { + if i > 0 || len(t.methods) > 0 { + buf.WriteString("; ") + } + writeType(buf, this, typ, visited) + } + } + buf.WriteByte('}') + + case *Map: + buf.WriteString("map[") + writeType(buf, this, t.key, visited) + buf.WriteByte(']') + writeType(buf, this, t.elem, visited) + + case *Chan: + var s string + var parens bool + switch t.dir { + case SendRecv: + s = "chan " + // chan (<-chan T) requires parentheses + if c, _ := t.elem.(*Chan); c != nil && c.dir == RecvOnly { + parens = true + } + case SendOnly: + s = "chan<- " + case RecvOnly: + s = "<-chan " + default: + panic("unreachable") + } + buf.WriteString(s) + if parens { + buf.WriteByte('(') + } + writeType(buf, this, t.elem, visited) + if parens { + buf.WriteByte(')') + } + + case *Named: + s := "" + if obj := t.obj; obj != nil { + if pkg := obj.pkg; pkg != nil && pkg != this { + buf.WriteString(pkg.path) + buf.WriteByte('.') + } + // TODO(gri): function-local named types should be displayed + // differently from named types at package level to avoid + // ambiguity. + s = obj.name + } + buf.WriteString(s) + + default: + // For externally defined implementations of Type. + buf.WriteString(t.String()) + } +} + +func writeTuple(buf *bytes.Buffer, this *Package, tup *Tuple, variadic bool, visited []Type) { + buf.WriteByte('(') + if tup != nil { + for i, v := range tup.vars { + if i > 0 { + buf.WriteString(", ") + } + if v.name != "" { + buf.WriteString(v.name) + buf.WriteByte(' ') + } + typ := v.typ + if variadic && i == len(tup.vars)-1 { + buf.WriteString("...") + typ = typ.(*Slice).elem + } + writeType(buf, this, typ, visited) + } + } + buf.WriteByte(')') +} + +// WriteSignature writes the representation of the signature sig to buf, +// without a leading "func" keyword. +// Named types are printed package-qualified if they +// do not belong to this package. +func WriteSignature(buf *bytes.Buffer, this *Package, sig *Signature) { + writeSignature(buf, this, sig, make([]Type, 8)) +} + +func writeSignature(buf *bytes.Buffer, this *Package, sig *Signature, visited []Type) { + writeTuple(buf, this, sig.params, sig.variadic, visited) + + n := sig.results.Len() + if n == 0 { + // no result + return + } + + buf.WriteByte(' ') + if n == 1 && sig.results.vars[0].name == "" { + // single unnamed result + writeType(buf, this, sig.results.vars[0].typ, visited) + return + } + + // multiple or named result(s) + writeTuple(buf, this, sig.results, false, visited) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typestring_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typestring_test.go new file mode 100644 index 00000000..b003cbb0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typestring_test.go @@ -0,0 +1,158 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package types_test + +import ( + "go/ast" + "go/parser" + "go/token" + "testing" + + _ "code.google.com/p/go.tools/go/gcimporter" + . "code.google.com/p/go.tools/go/types" +) + +const filename = "" + +func makePkg(t *testing.T, src string) (*Package, error) { + fset := token.NewFileSet() + file, err := parser.ParseFile(fset, filename, src, parser.DeclarationErrors) + if err != nil { + return nil, err + } + // use the package name as package path + return Check(file.Name.Name, fset, []*ast.File{file}) +} + +type testEntry struct { + src, str string +} + +// dup returns a testEntry where both src and str are the same. +func dup(s string) testEntry { + return testEntry{s, s} +} + +// types that don't depend on any other type declarations +var independentTestTypes = []testEntry{ + // basic types + dup("int"), + dup("float32"), + dup("string"), + + // arrays + dup("[10]int"), + + // slices + dup("[]int"), + dup("[][]int"), + + // structs + dup("struct{}"), + dup("struct{x int}"), + {`struct { + x, y int + z float32 "foo" + }`, `struct{x int; y int; z float32 "foo"}`}, + {`struct { + string + elems []complex128 + }`, `struct{string; elems []complex128}`}, + + // pointers + dup("*int"), + dup("***struct{}"), + dup("*struct{a int; b float32}"), + + // functions + dup("func()"), + dup("func(x int)"), + {"func(x, y int)", "func(x int, y int)"}, + {"func(x, y int, z string)", "func(x int, y int, z string)"}, + dup("func(int)"), + {"func(int, string, byte)", "func(int, string, byte)"}, + + dup("func() int"), + {"func() (string)", "func() string"}, + dup("func() (u int)"), + {"func() (u, v int, w string)", "func() (u int, v int, w string)"}, + + dup("func(int) string"), + dup("func(x int) string"), + dup("func(x int) (u string)"), + {"func(x, y int) (u string)", "func(x int, y int) (u string)"}, + + dup("func(...int) string"), + dup("func(x ...int) string"), + dup("func(x ...int) (u string)"), + {"func(x, y ...int) (u string)", "func(x int, y ...int) (u string)"}, + + // interfaces + dup("interface{}"), + dup("interface{m()}"), + dup(`interface{String() string; m(int) float32}`), + + // maps + dup("map[string]int"), + {"map[struct{x, y int}][]byte", "map[struct{x int; y int}][]byte"}, + + // channels + dup("chan<- chan int"), + dup("chan<- <-chan int"), + dup("<-chan <-chan int"), + dup("chan (<-chan int)"), + dup("chan<- func()"), + dup("<-chan []func() int"), +} + +// types that depend on other type declarations (src in TestTypes) +var dependentTestTypes = []testEntry{ + // interfaces + dup(`interface{io.Reader; io.Writer}`), + dup(`interface{m() int; io.Writer}`), + {`interface{m() interface{T}}`, `interface{m() interface{p.T}}`}, +} + +func TestTypeString(t *testing.T) { + var tests []testEntry + tests = append(tests, independentTestTypes...) + tests = append(tests, dependentTestTypes...) + + for _, test := range tests { + src := `package p; import "io"; type _ io.Writer; type T ` + test.src + pkg, err := makePkg(t, src) + if err != nil { + t.Errorf("%s: %s", src, err) + continue + } + typ := pkg.Scope().Lookup("T").Type().Underlying() + if got := typ.String(); got != test.str { + t.Errorf("%s: got %s, want %s", test.src, got, test.str) + } + } +} + +func TestQualifiedTypeString(t *testing.T) { + p, _ := pkgFor("p.go", "package p; type T int", nil) + q, _ := pkgFor("q.go", "package q", nil) + + pT := p.Scope().Lookup("T").Type() + for _, test := range []struct { + typ Type + this *Package + want string + }{ + {pT, nil, "p.T"}, + {pT, p, "T"}, + {pT, q, "p.T"}, + {NewPointer(pT), p, "*T"}, + {NewPointer(pT), q, "*p.T"}, + } { + if got := TypeString(test.this, test.typ); got != test.want { + t.Errorf("TypeString(%s, %s) = %s, want %s", + test.this, test.typ, got, test.want) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/map.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/map.go new file mode 100644 index 00000000..010df20c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/map.go @@ -0,0 +1,314 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package typeutil defines various utilities for types, such as Map, +// a mapping from types.Type to interface{} values. +package typeutil + +import ( + "bytes" + "fmt" + "unsafe" + + "code.google.com/p/go.tools/go/types" +) + +// Map is a hash-table-based mapping from types (types.Type) to +// arbitrary interface{} values. The concrete types that implement +// the Type interface are pointers. Since they are not canonicalized, +// == cannot be used to check for equivalence, and thus we cannot +// simply use a Go map. +// +// Just as with map[K]V, a nil *Map is a valid empty map. +// +// Not thread-safe. +// +type Map struct { + hasher Hasher // shared by many Maps + table map[uint32][]entry // maps hash to bucket; entry.key==nil means unused + length int // number of map entries +} + +// entry is an entry (key/value association) in a hash bucket. +type entry struct { + key types.Type + value interface{} +} + +// SetHasher sets the hasher used by Map. +// +// All Hashers are functionally equivalent but contain internal state +// used to cache the results of hashing previously seen types. +// +// A single Hasher created by MakeHasher() may be shared among many +// Maps. This is recommended if the instances have many keys in +// common, as it will amortize the cost of hash computation. +// +// A Hasher may grow without bound as new types are seen. Even when a +// type is deleted from the map, the Hasher never shrinks, since other +// types in the map may reference the deleted type indirectly. +// +// Hashers are not thread-safe, and read-only operations such as +// Map.Lookup require updates to the hasher, so a full Mutex lock (not a +// read-lock) is require around all Map operations if a shared +// hasher is accessed from multiple threads. +// +// If SetHasher is not called, the Map will create a private hasher at +// the first call to Insert. +// +func (m *Map) SetHasher(hasher Hasher) { + m.hasher = hasher +} + +// Delete removes the entry with the given key, if any. +// It returns true if the entry was found. +// +func (m *Map) Delete(key types.Type) bool { + if m != nil && m.table != nil { + hash := m.hasher.Hash(key) + bucket := m.table[hash] + for i, e := range bucket { + if e.key != nil && types.Identical(key, e.key) { + // We can't compact the bucket as it + // would disturb iterators. + bucket[i] = entry{} + m.length-- + return true + } + } + } + return false +} + +// At returns the map entry for the given key. +// The result is nil if the entry is not present. +// +func (m *Map) At(key types.Type) interface{} { + if m != nil && m.table != nil { + for _, e := range m.table[m.hasher.Hash(key)] { + if e.key != nil && types.Identical(key, e.key) { + return e.value + } + } + } + return nil +} + +// Set sets the map entry for key to val, +// and returns the previous entry, if any. +func (m *Map) Set(key types.Type, value interface{}) (prev interface{}) { + if m.table != nil { + hash := m.hasher.Hash(key) + bucket := m.table[hash] + var hole *entry + for i, e := range bucket { + if e.key == nil { + hole = &bucket[i] + } else if types.Identical(key, e.key) { + prev = e.value + bucket[i].value = value + return + } + } + + if hole != nil { + *hole = entry{key, value} // overwrite deleted entry + } else { + m.table[hash] = append(bucket, entry{key, value}) + } + } else { + if m.hasher.memo == nil { + m.hasher = MakeHasher() + } + hash := m.hasher.Hash(key) + m.table = map[uint32][]entry{hash: {entry{key, value}}} + } + + m.length++ + return +} + +// Len returns the number of map entries. +func (m *Map) Len() int { + if m != nil { + return m.length + } + return 0 +} + +// Iterate calls function f on each entry in the map in unspecified order. +// +// If f should mutate the map, Iterate provides the same guarantees as +// Go maps: if f deletes a map entry that Iterate has not yet reached, +// f will not be invoked for it, but if f inserts a map entry that +// Iterate has not yet reached, whether or not f will be invoked for +// it is unspecified. +// +func (m *Map) Iterate(f func(key types.Type, value interface{})) { + if m != nil { + for _, bucket := range m.table { + for _, e := range bucket { + if e.key != nil { + f(e.key, e.value) + } + } + } + } +} + +// Keys returns a new slice containing the set of map keys. +// The order is unspecified. +func (m *Map) Keys() []types.Type { + keys := make([]types.Type, 0, m.Len()) + m.Iterate(func(key types.Type, _ interface{}) { + keys = append(keys, key) + }) + return keys +} + +func (m *Map) toString(values bool) string { + if m == nil { + return "{}" + } + var buf bytes.Buffer + fmt.Fprint(&buf, "{") + sep := "" + m.Iterate(func(key types.Type, value interface{}) { + fmt.Fprint(&buf, sep) + sep = ", " + fmt.Fprint(&buf, key) + if values { + fmt.Fprintf(&buf, ": %q", value) + } + }) + fmt.Fprint(&buf, "}") + return buf.String() +} + +// String returns a string representation of the map's entries. +// Values are printed using fmt.Sprintf("%v", v). +// Order is unspecified. +// +func (m *Map) String() string { + return m.toString(true) +} + +// KeysString returns a string representation of the map's key set. +// Order is unspecified. +// +func (m *Map) KeysString() string { + return m.toString(false) +} + +//////////////////////////////////////////////////////////////////////// +// Hasher + +// A Hasher maps each type to its hash value. +// For efficiency, a hasher uses memoization; thus its memory +// footprint grows monotonically over time. +// Hashers are not thread-safe. +// Hashers have reference semantics. +// Call MakeHasher to create a Hasher. +type Hasher struct { + memo map[types.Type]uint32 +} + +// MakeHasher returns a new Hasher instance. +func MakeHasher() Hasher { + return Hasher{make(map[types.Type]uint32)} +} + +// Hash computes a hash value for the given type t such that +// Identical(t, t') => Hash(t) == Hash(t'). +func (h Hasher) Hash(t types.Type) uint32 { + hash, ok := h.memo[t] + if !ok { + hash = h.hashFor(t) + h.memo[t] = hash + } + return hash +} + +// hashString computes the Fowler–Noll–Vo hash of s. +func hashString(s string) uint32 { + var h uint32 + for i := 0; i < len(s); i++ { + h ^= uint32(s[i]) + h *= 16777619 + } + return h +} + +// hashFor computes the hash of t. +func (h Hasher) hashFor(t types.Type) uint32 { + // See Identical for rationale. + switch t := t.(type) { + case *types.Basic: + return uint32(t.Kind()) + + case *types.Array: + return 9043 + 2*uint32(t.Len()) + 3*h.Hash(t.Elem()) + + case *types.Slice: + return 9049 + 2*h.Hash(t.Elem()) + + case *types.Struct: + var hash uint32 = 9059 + for i, n := 0, t.NumFields(); i < n; i++ { + f := t.Field(i) + if f.Anonymous() { + hash += 8861 + } + hash += hashString(t.Tag(i)) + hash += hashString(f.Name()) // (ignore f.Pkg) + hash += h.Hash(f.Type()) + } + return hash + + case *types.Pointer: + return 9067 + 2*h.Hash(t.Elem()) + + case *types.Signature: + var hash uint32 = 9091 + if t.Variadic() { + hash *= 8863 + } + return hash + 3*h.hashTuple(t.Params()) + 5*h.hashTuple(t.Results()) + + case *types.Interface: + var hash uint32 = 9103 + for i, n := 0, t.NumMethods(); i < n; i++ { + // See go/types.identicalMethods for rationale. + // Method order is not significant. + // Ignore m.Pkg(). + m := t.Method(i) + hash += 3*hashString(m.Name()) + 5*h.Hash(m.Type()) + } + return hash + + case *types.Map: + return 9109 + 2*h.Hash(t.Key()) + 3*h.Hash(t.Elem()) + + case *types.Chan: + return 9127 + 2*uint32(t.Dir()) + 3*h.Hash(t.Elem()) + + case *types.Named: + // Not safe with a copying GC; objects may move. + return uint32(uintptr(unsafe.Pointer(t.Obj()))) + + case *types.Tuple: + return h.hashTuple(t) + } + panic(t) +} + +func (h Hasher) hashTuple(tuple *types.Tuple) uint32 { + // See go/types.identicalTypes for rationale. + n := tuple.Len() + var hash uint32 = 9137 + 2*uint32(n) + for i := 0; i < n; i++ { + hash += 3 * h.Hash(tuple.At(i).Type()) + } + return hash +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/map_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/map_test.go new file mode 100644 index 00000000..9d2a788e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/map_test.go @@ -0,0 +1,174 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package typeutil_test + +// TODO(adonovan): +// - test use of explicit hasher across two maps. +// - test hashcodes are consistent with equals for a range of types +// (e.g. all types generated by type-checking some body of real code). + +import ( + "testing" + + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +var ( + tStr = types.Typ[types.String] // string + tPStr1 = types.NewPointer(tStr) // *string + tPStr2 = types.NewPointer(tStr) // *string, again + tInt = types.Typ[types.Int] // int + tChanInt1 = types.NewChan(types.RecvOnly, tInt) // <-chan int + tChanInt2 = types.NewChan(types.RecvOnly, tInt) // <-chan int, again +) + +func checkEqualButNotIdentical(t *testing.T, x, y types.Type, comment string) { + if !types.Identical(x, y) { + t.Errorf("%s: not equal: %s, %s", comment, x, y) + } + if x == y { + t.Errorf("%s: identical: %v, %v", comment, x, y) + } +} + +func TestAxioms(t *testing.T) { + checkEqualButNotIdentical(t, tPStr1, tPStr2, "tPstr{1,2}") + checkEqualButNotIdentical(t, tChanInt1, tChanInt2, "tChanInt{1,2}") +} + +func TestMap(t *testing.T) { + var tmap *typeutil.Map + + // All methods but Set are safe on on (*T)(nil). + tmap.Len() + tmap.At(tPStr1) + tmap.Delete(tPStr1) + tmap.KeysString() + tmap.String() + + tmap = new(typeutil.Map) + + // Length of empty map. + if l := tmap.Len(); l != 0 { + t.Errorf("Len() on empty Map: got %d, want 0", l) + } + // At of missing key. + if v := tmap.At(tPStr1); v != nil { + t.Errorf("At() on empty Map: got %v, want nil", v) + } + // Deletion of missing key. + if tmap.Delete(tPStr1) { + t.Errorf("Delete() on empty Map: got true, want false") + } + // Set of new key. + if prev := tmap.Set(tPStr1, "*string"); prev != nil { + t.Errorf("Set() on empty Map returned non-nil previous value %s", prev) + } + + // Now: {*string: "*string"} + + // Length of non-empty map. + if l := tmap.Len(); l != 1 { + t.Errorf("Len(): got %d, want 1", l) + } + // At via insertion key. + if v := tmap.At(tPStr1); v != "*string" { + t.Errorf("At(): got %q, want \"*string\"", v) + } + // At via equal key. + if v := tmap.At(tPStr2); v != "*string" { + t.Errorf("At(): got %q, want \"*string\"", v) + } + // Iteration over sole entry. + tmap.Iterate(func(key types.Type, value interface{}) { + if key != tPStr1 { + t.Errorf("Iterate: key: got %s, want %s", key, tPStr1) + } + if want := "*string"; value != want { + t.Errorf("Iterate: value: got %s, want %s", value, want) + } + }) + + // Setion with key equal to present one. + if prev := tmap.Set(tPStr2, "*string again"); prev != "*string" { + t.Errorf("Set() previous value: got %s, want \"*string\"", prev) + } + + // Setion of another association. + if prev := tmap.Set(tChanInt1, "<-chan int"); prev != nil { + t.Errorf("Set() previous value: got %s, want nil", prev) + } + + // Now: {*string: "*string again", <-chan int: "<-chan int"} + + want1 := "{*string: \"*string again\", <-chan int: \"<-chan int\"}" + want2 := "{<-chan int: \"<-chan int\", *string: \"*string again\"}" + if s := tmap.String(); s != want1 && s != want2 { + t.Errorf("String(): got %s, want %s", s, want1) + } + + want1 = "{*string, <-chan int}" + want2 = "{<-chan int, *string}" + if s := tmap.KeysString(); s != want1 && s != want2 { + t.Errorf("KeysString(): got %s, want %s", s, want1) + } + + // Keys(). + I := types.Identical + switch k := tmap.Keys(); { + case I(k[0], tChanInt1) && I(k[1], tPStr1): // ok + case I(k[1], tChanInt1) && I(k[0], tPStr1): // ok + default: + t.Errorf("Keys(): got %v, want %s", k, want2) + } + + if l := tmap.Len(); l != 2 { + t.Errorf("Len(): got %d, want 1", l) + } + // At via original key. + if v := tmap.At(tPStr1); v != "*string again" { + t.Errorf("At(): got %q, want \"*string again\"", v) + } + hamming := 1 + tmap.Iterate(func(key types.Type, value interface{}) { + switch { + case I(key, tChanInt1): + hamming *= 2 // ok + case I(key, tPStr1): + hamming *= 3 // ok + } + }) + if hamming != 6 { + t.Errorf("Iterate: hamming: got %d, want %d", hamming, 6) + } + + if v := tmap.At(tChanInt2); v != "<-chan int" { + t.Errorf("At(): got %q, want \"<-chan int\"", v) + } + // Deletion with key equal to present one. + if !tmap.Delete(tChanInt2) { + t.Errorf("Delete() of existing key: got false, want true") + } + + // Now: {*string: "*string again"} + + if l := tmap.Len(); l != 1 { + t.Errorf("Len(): got %d, want 1", l) + } + // Deletion again. + if !tmap.Delete(tPStr2) { + t.Errorf("Delete() of existing key: got false, want true") + } + + // Now: {} + + if l := tmap.Len(); l != 0 { + t.Errorf("Len(): got %d, want %d", l, 0) + } + if s := tmap.String(); s != "{}" { + t.Errorf("Len(): got %q, want %q", s, "") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/ui.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/ui.go new file mode 100644 index 00000000..a17c1a4b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typeutil/ui.go @@ -0,0 +1,38 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package typeutil + +// This file defines utilities for user interfaces that display types. + +import "code.google.com/p/go.tools/go/types" + +// IntuitiveMethodSet returns the intuitive method set of a type, T. +// +// The result contains MethodSet(T) and additionally, if T is a +// concrete type, methods belonging to *T if there is no identically +// named method on T itself. This corresponds to user intuition about +// method sets; this function is intended only for user interfaces. +// +// The order of the result is as for types.MethodSet(T). +// +func IntuitiveMethodSet(T types.Type, msets *types.MethodSetCache) []*types.Selection { + var result []*types.Selection + mset := msets.MethodSet(T) + if _, ok := T.Underlying().(*types.Interface); ok { + for i, n := 0, mset.Len(); i < n; i++ { + result = append(result, mset.At(i)) + } + } else { + pmset := msets.MethodSet(types.NewPointer(T)) + for i, n := 0, pmset.Len(); i < n; i++ { + meth := pmset.At(i) + if m := mset.Lookup(meth.Obj().Pkg(), meth.Obj().Name()); m != nil { + meth = m + } + result = append(result, meth) + } + } + return result +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typexpr.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typexpr.go new file mode 100644 index 00000000..3c48c71c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/typexpr.go @@ -0,0 +1,707 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements type-checking of identifiers and type expressions. + +package types + +import ( + "go/ast" + "go/token" + "sort" + "strconv" + + "code.google.com/p/go.tools/go/exact" +) + +// ident type-checks identifier e and initializes x with the value or type of e. +// If an error occurred, x.mode is set to invalid. +// For the meaning of def and path, see check.typ, below. +// +func (check *checker) ident(x *operand, e *ast.Ident, def *Named, path []*TypeName) { + x.mode = invalid + x.expr = e + + obj := check.scope.LookupParent(e.Name) + if obj == nil { + if e.Name == "_" { + check.errorf(e.Pos(), "cannot use _ as value or type") + } else { + check.errorf(e.Pos(), "undeclared name: %s", e.Name) + } + return + } + check.recordUse(e, obj) + + check.objDecl(obj, def, path) + typ := obj.Type() + assert(typ != nil) + + switch obj := obj.(type) { + case *PkgName: + check.errorf(e.Pos(), "use of package %s not in selector", obj.name) + return + + case *Const: + // The constant may be dot-imported. Mark it as used so that + // later we can determine if the corresponding dot-imported + // package was used. Same applies for other objects, below. + // (This code is only used for dot-imports. Without them, we + // would only have to mark Vars.) + obj.used = true + check.addDeclDep(obj) + if typ == Typ[Invalid] { + return + } + if obj == universeIota { + if check.iota == nil { + check.errorf(e.Pos(), "cannot use iota outside constant declaration") + return + } + x.val = check.iota + } else { + x.val = obj.val + } + assert(x.val != nil) + x.mode = constant + + case *TypeName: + obj.used = true + x.mode = typexpr + // check for cycle + // (it's ok to iterate forward because each named type appears at most once in path) + for i, prev := range path { + if prev == obj { + check.errorf(obj.pos, "illegal cycle in declaration of %s", obj.name) + // print cycle + for _, obj := range path[i:] { + check.errorf(obj.Pos(), "\t%s refers to", obj.Name()) // secondary error, \t indented + } + check.errorf(obj.Pos(), "\t%s", obj.Name()) + // maintain x.mode == typexpr despite error + typ = Typ[Invalid] + break + } + } + + case *Var: + obj.used = true + check.addDeclDep(obj) + x.mode = variable + + case *Func: + obj.used = true + check.addDeclDep(obj) + x.mode = value + + case *Builtin: + obj.used = true // for built-ins defined by package unsafe + x.id = obj.id + x.mode = builtin + + case *Nil: + // no need to "use" the nil object + x.mode = value + + default: + unreachable() + } + + x.typ = typ +} + +// typExpr type-checks the type expression e and returns its type, or Typ[Invalid]. +// If def != nil, e is the type specification for the named type def, declared +// in a type declaration, and def.underlying will be set to the type of e before +// any components of e are type-checked. Path contains the path of named types +// referring to this type. +// +func (check *checker) typExpr(e ast.Expr, def *Named, path []*TypeName) (T Type) { + if trace { + check.trace(e.Pos(), "%s", e) + check.indent++ + defer func() { + check.indent-- + check.trace(e.Pos(), "=> %s", T) + }() + } + + T = check.typExprInternal(e, def, path) + assert(isTyped(T)) + check.recordTypeAndValue(e, T, nil) + + return +} + +func (check *checker) typ(e ast.Expr) Type { + return check.typExpr(e, nil, nil) +} + +// funcType type-checks a function or method type and returns its signature. +func (check *checker) funcType(sig *Signature, recv *ast.FieldList, ftyp *ast.FuncType) *Signature { + scope := NewScope(check.scope, "function") + check.recordScope(ftyp, scope) + + recv_, _ := check.collectParams(scope, recv, false) + params, variadic := check.collectParams(scope, ftyp.Params, true) + results, _ := check.collectParams(scope, ftyp.Results, false) + + if len(recv_) > 0 { + // There must be exactly one receiver. + if len(recv_) > 1 { + check.invalidAST(recv_[1].Pos(), "method must have exactly one receiver") + // ok to continue + } + recv := recv_[0] + // spec: "The receiver type must be of the form T or *T where T is a type name." + // (ignore invalid types - error was reported before) + if t, _ := deref(recv.typ); t != Typ[Invalid] { + var err string + if T, _ := t.(*Named); T != nil { + // spec: "The type denoted by T is called the receiver base type; it must not + // be a pointer or interface type and it must be declared in the same package + // as the method." + if T.obj.pkg != check.pkg { + err = "type not defined in this package" + } else { + // TODO(gri) This is not correct if the underlying type is unknown yet. + switch u := T.underlying.(type) { + case *Basic: + // unsafe.Pointer is treated like a regular pointer + if u.kind == UnsafePointer { + err = "unsafe.Pointer" + } + case *Pointer, *Interface: + err = "pointer or interface type" + } + } + } else { + err = "basic or unnamed type" + } + if err != "" { + check.errorf(recv.pos, "invalid receiver %s (%s)", recv.typ, err) + // ok to continue + } + } + sig.recv = recv + } + + sig.scope = scope + sig.params = NewTuple(params...) + sig.results = NewTuple(results...) + sig.variadic = variadic + + return sig +} + +// typExprInternal drives type checking of types. +// Must only be called by typExpr. +// +func (check *checker) typExprInternal(e ast.Expr, def *Named, path []*TypeName) Type { + switch e := e.(type) { + case *ast.BadExpr: + // ignore - error reported before + + case *ast.Ident: + var x operand + check.ident(&x, e, def, path) + + switch x.mode { + case typexpr: + typ := x.typ + def.setUnderlying(typ) + return typ + case invalid: + // ignore - error reported before + case novalue: + check.errorf(x.pos(), "%s used as type", &x) + default: + check.errorf(x.pos(), "%s is not a type", &x) + } + + case *ast.SelectorExpr: + var x operand + check.selector(&x, e) + + switch x.mode { + case typexpr: + typ := x.typ + def.setUnderlying(typ) + return typ + case invalid: + // ignore - error reported before + case novalue: + check.errorf(x.pos(), "%s used as type", &x) + default: + check.errorf(x.pos(), "%s is not a type", &x) + } + + case *ast.ParenExpr: + return check.typExpr(e.X, def, path) + + case *ast.ArrayType: + if e.Len != nil { + typ := new(Array) + def.setUnderlying(typ) + typ.len = check.arrayLength(e.Len) + typ.elem = check.typExpr(e.Elt, nil, path) + return typ + + } else { + typ := new(Slice) + def.setUnderlying(typ) + typ.elem = check.typ(e.Elt) + return typ + } + + case *ast.StructType: + typ := new(Struct) + def.setUnderlying(typ) + check.structType(typ, e, path) + return typ + + case *ast.StarExpr: + typ := new(Pointer) + def.setUnderlying(typ) + typ.base = check.typ(e.X) + return typ + + case *ast.FuncType: + typ := new(Signature) + def.setUnderlying(typ) + check.funcType(typ, nil, e) + return typ + + case *ast.InterfaceType: + typ := new(Interface) + def.setUnderlying(typ) + check.interfaceType(typ, e, def, path) + return typ + + case *ast.MapType: + typ := new(Map) + def.setUnderlying(typ) + + typ.key = check.typ(e.Key) + typ.elem = check.typ(e.Value) + + // spec: "The comparison operators == and != must be fully defined + // for operands of the key type; thus the key type must not be a + // function, map, or slice." + // + // Delay this check because it requires fully setup types; + // it is safe to continue in any case (was issue 6667). + check.delay(func() { + if !Comparable(typ.key) { + check.errorf(e.Key.Pos(), "invalid map key type %s", typ.key) + } + }) + + return typ + + case *ast.ChanType: + typ := new(Chan) + def.setUnderlying(typ) + + dir := SendRecv + switch e.Dir { + case ast.SEND | ast.RECV: + // nothing to do + case ast.SEND: + dir = SendOnly + case ast.RECV: + dir = RecvOnly + default: + check.invalidAST(e.Pos(), "unknown channel direction %d", e.Dir) + // ok to continue + } + + typ.dir = dir + typ.elem = check.typ(e.Value) + return typ + + default: + check.errorf(e.Pos(), "%s is not a type", e) + } + + typ := Typ[Invalid] + def.setUnderlying(typ) + return typ +} + +// typeOrNil type-checks the type expression (or nil value) e +// and returns the typ of e, or nil. +// If e is neither a type nor nil, typOrNil returns Typ[Invalid]. +// +func (check *checker) typOrNil(e ast.Expr) Type { + var x operand + check.rawExpr(&x, e, nil) + switch x.mode { + case invalid: + // ignore - error reported before + case novalue: + check.errorf(x.pos(), "%s used as type", &x) + case typexpr: + return x.typ + case value: + if x.isNil() { + return nil + } + fallthrough + default: + check.errorf(x.pos(), "%s is not a type", &x) + } + return Typ[Invalid] +} + +func (check *checker) arrayLength(e ast.Expr) int64 { + var x operand + check.expr(&x, e) + if x.mode != constant { + if x.mode != invalid { + check.errorf(x.pos(), "array length %s must be constant", &x) + } + return 0 + } + if !x.isInteger() { + check.errorf(x.pos(), "array length %s must be integer", &x) + return 0 + } + n, ok := exact.Int64Val(x.val) + if !ok || n < 0 { + check.errorf(x.pos(), "invalid array length %s", &x) + return 0 + } + return n +} + +func (check *checker) collectParams(scope *Scope, list *ast.FieldList, variadicOk bool) (params []*Var, variadic bool) { + if list == nil { + return + } + + var named, anonymous bool + for i, field := range list.List { + ftype := field.Type + if t, _ := ftype.(*ast.Ellipsis); t != nil { + ftype = t.Elt + if variadicOk && i == len(list.List)-1 { + variadic = true + } else { + check.invalidAST(field.Pos(), "... not permitted") + // ignore ... and continue + } + } + typ := check.typ(ftype) + // The parser ensures that f.Tag is nil and we don't + // care if a constructed AST contains a non-nil tag. + if len(field.Names) > 0 { + // named parameter + for _, name := range field.Names { + if name.Name == "" { + check.invalidAST(name.Pos(), "anonymous parameter") + // ok to continue + } + par := NewParam(name.Pos(), check.pkg, name.Name, typ) + check.declare(scope, name, par) + params = append(params, par) + } + named = true + } else { + // anonymous parameter + par := NewParam(ftype.Pos(), check.pkg, "", typ) + check.recordImplicit(field, par) + params = append(params, par) + anonymous = true + } + } + + if named && anonymous { + check.invalidAST(list.Pos(), "list contains both named and anonymous parameters") + // ok to continue + } + + // For a variadic function, change the last parameter's type from T to []T. + if variadic && len(params) > 0 { + last := params[len(params)-1] + last.typ = &Slice{elem: last.typ} + } + + return +} + +func (check *checker) declareInSet(oset *objset, pos token.Pos, obj Object) bool { + if alt := oset.insert(obj); alt != nil { + check.errorf(pos, "%s redeclared", obj.Name()) + check.reportAltDecl(alt) + return false + } + return true +} + +func (check *checker) interfaceType(iface *Interface, ityp *ast.InterfaceType, def *Named, path []*TypeName) { + // empty interface: common case + if ityp.Methods == nil { + return + } + + // The parser ensures that field tags are nil and we don't + // care if a constructed AST contains non-nil tags. + + // use named receiver type if available (for better error messages) + var recvTyp Type = iface + if def != nil { + recvTyp = def + } + + // Phase 1: Collect explicitly declared methods, the corresponding + // signature (AST) expressions, and the list of embedded + // type (AST) expressions. Do not resolve signatures or + // embedded types yet to avoid cycles referring to this + // interface. + + var ( + mset objset + signatures []ast.Expr // list of corresponding method signatures + embedded []ast.Expr // list of embedded types + ) + for _, f := range ityp.Methods.List { + if len(f.Names) > 0 { + // The parser ensures that there's only one method + // and we don't care if a constructed AST has more. + name := f.Names[0] + pos := name.Pos() + // Don't type-check signature yet - use an + // empty signature now and update it later. + // Since we know the receiver, set it up now + // (required to avoid crash in ptrRecv; see + // e.g. test case for issue 6638). + // TODO(gri) Consider marking methods signatures + // as incomplete, for better error messages. See + // also the T4 and T5 tests in testdata/cycles2.src. + sig := new(Signature) + sig.recv = NewVar(pos, check.pkg, "", recvTyp) + m := NewFunc(pos, check.pkg, name.Name, sig) + // spec: "As with all method sets, in an interface type, + // each method must have a unique name." + // (The spec does not exclude blank _ identifiers for + // interface methods.) + if check.declareInSet(&mset, pos, m) { + iface.methods = append(iface.methods, m) + iface.allMethods = append(iface.allMethods, m) + signatures = append(signatures, f.Type) + check.recordDef(name, m) + } + } else { + // embedded type + embedded = append(embedded, f.Type) + } + } + + // Phase 2: Resolve embedded interfaces. Because an interface must not + // embed itself (directly or indirectly), each embedded interface + // can be fully resolved without depending on any method of this + // interface (if there is a cycle or another error, the embedded + // type resolves to an invalid type and is ignored). + // In particular, the list of methods for each embedded interface + // must be complete (it cannot depend on this interface), and so + // those methods can be added to the list of all methods of this + // interface. + + for _, e := range embedded { + pos := e.Pos() + typ := check.typExpr(e, nil, path) + named, _ := typ.(*Named) + if named == nil { + if typ != Typ[Invalid] { + check.invalidAST(pos, "%s is not named type", typ) + } + continue + } + // determine underlying (possibly incomplete) type + // by following its forward chain + u := underlying(named) + embed, _ := u.(*Interface) + if embed == nil { + if u != Typ[Invalid] { + check.errorf(pos, "%s is not an interface", named) + } + continue + } + iface.embeddeds = append(iface.embeddeds, named) + // collect embedded methods + for _, m := range embed.allMethods { + if check.declareInSet(&mset, pos, m) { + iface.allMethods = append(iface.allMethods, m) + } + } + } + + // Phase 3: At this point all methods have been collected for this interface. + // It is now safe to type-check the signatures of all explicitly + // declared methods, even if they refer to this interface via a cycle + // and embed the methods of this interface in a parameter of interface + // type. + + for i, m := range iface.methods { + expr := signatures[i] + typ := check.typ(expr) + sig, _ := typ.(*Signature) + if sig == nil { + if typ != Typ[Invalid] { + check.invalidAST(expr.Pos(), "%s is not a method signature", typ) + } + continue // keep method with empty method signature + } + // update signature, but keep recv that was set up before + old := m.typ.(*Signature) + sig.recv = old.recv + *old = *sig // update signature (don't replace it!) + } + + // TODO(gri) The list of explicit methods is only sorted for now to + // produce the same Interface as NewInterface. We may be able to + // claim source order in the future. Revisit. + sort.Sort(byUniqueMethodName(iface.methods)) + + // TODO(gri) The list of embedded types is only sorted for now to + // produce the same Interface as NewInterface. We may be able to + // claim source order in the future. Revisit. + sort.Sort(byUniqueTypeName(iface.embeddeds)) + + sort.Sort(byUniqueMethodName(iface.allMethods)) +} + +// byUniqueTypeName named type lists can be sorted by their unique type names. +type byUniqueTypeName []*Named + +func (a byUniqueTypeName) Len() int { return len(a) } +func (a byUniqueTypeName) Less(i, j int) bool { return a[i].obj.Id() < a[j].obj.Id() } +func (a byUniqueTypeName) Swap(i, j int) { a[i], a[j] = a[j], a[i] } + +// byUniqueMethodName method lists can be sorted by their unique method names. +type byUniqueMethodName []*Func + +func (a byUniqueMethodName) Len() int { return len(a) } +func (a byUniqueMethodName) Less(i, j int) bool { return a[i].Id() < a[j].Id() } +func (a byUniqueMethodName) Swap(i, j int) { a[i], a[j] = a[j], a[i] } + +func (check *checker) tag(t *ast.BasicLit) string { + if t != nil { + if t.Kind == token.STRING { + if val, err := strconv.Unquote(t.Value); err == nil { + return val + } + } + check.invalidAST(t.Pos(), "incorrect tag syntax: %q", t.Value) + } + return "" +} + +func (check *checker) structType(styp *Struct, e *ast.StructType, path []*TypeName) { + list := e.Fields + if list == nil { + return + } + + // struct fields and tags + var fields []*Var + var tags []string + + // for double-declaration checks + var fset objset + + // current field typ and tag + var typ Type + var tag string + // anonymous != nil indicates an anonymous field. + add := func(field *ast.Field, ident *ast.Ident, anonymous *TypeName, pos token.Pos) { + if tag != "" && tags == nil { + tags = make([]string, len(fields)) + } + if tags != nil { + tags = append(tags, tag) + } + + name := ident.Name + fld := NewField(pos, check.pkg, name, typ, anonymous != nil) + // spec: "Within a struct, non-blank field names must be unique." + if name == "_" || check.declareInSet(&fset, pos, fld) { + fields = append(fields, fld) + check.recordDef(ident, fld) + } + if anonymous != nil { + check.recordUse(ident, anonymous) + } + } + + for _, f := range list.List { + typ = check.typExpr(f.Type, nil, path) + tag = check.tag(f.Tag) + if len(f.Names) > 0 { + // named fields + for _, name := range f.Names { + add(f, name, nil, name.Pos()) + } + } else { + // anonymous field + name := anonymousFieldIdent(f.Type) + pos := f.Type.Pos() + t, isPtr := deref(typ) + switch t := t.(type) { + case *Basic: + if t == Typ[Invalid] { + // error was reported before + continue + } + // unsafe.Pointer is treated like a regular pointer + if t.kind == UnsafePointer { + check.errorf(pos, "anonymous field type cannot be unsafe.Pointer") + continue + } + add(f, name, Universe.Lookup(t.name).(*TypeName), pos) + + case *Named: + // spec: "An embedded type must be specified as a type name + // T or as a pointer to a non-interface type name *T, and T + // itself may not be a pointer type." + switch u := t.underlying.(type) { + case *Basic: + // unsafe.Pointer is treated like a regular pointer + if u.kind == UnsafePointer { + check.errorf(pos, "anonymous field type cannot be unsafe.Pointer") + continue + } + case *Pointer: + check.errorf(pos, "anonymous field type cannot be a pointer") + continue + case *Interface: + if isPtr { + check.errorf(pos, "anonymous field type cannot be a pointer to an interface") + continue + } + } + add(f, name, t.obj, pos) + + default: + check.invalidAST(pos, "anonymous field type %s must be named", typ) + } + } + } + + styp.fields = fields + styp.tags = tags +} + +func anonymousFieldIdent(e ast.Expr) *ast.Ident { + switch e := e.(type) { + case *ast.Ident: + return e + case *ast.StarExpr: + return anonymousFieldIdent(e.X) + case *ast.SelectorExpr: + return e.Sel + } + return nil // invalid anonymous field +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/universe.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/universe.go new file mode 100644 index 00000000..3d01e604 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/types/universe.go @@ -0,0 +1,224 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements the universe and unsafe package scopes. + +package types + +import ( + "go/token" + "strings" + + "code.google.com/p/go.tools/go/exact" +) + +var ( + Universe *Scope + Unsafe *Package + universeIota *Const + UniverseByte *Basic // uint8 alias, but has name "byte" + UniverseRune *Basic // int32 alias, but has name "rune" +) + +var Typ = [...]*Basic{ + Invalid: {Invalid, 0, "invalid type"}, + + Bool: {Bool, IsBoolean, "bool"}, + Int: {Int, IsInteger, "int"}, + Int8: {Int8, IsInteger, "int8"}, + Int16: {Int16, IsInteger, "int16"}, + Int32: {Int32, IsInteger, "int32"}, + Int64: {Int64, IsInteger, "int64"}, + Uint: {Uint, IsInteger | IsUnsigned, "uint"}, + Uint8: {Uint8, IsInteger | IsUnsigned, "uint8"}, + Uint16: {Uint16, IsInteger | IsUnsigned, "uint16"}, + Uint32: {Uint32, IsInteger | IsUnsigned, "uint32"}, + Uint64: {Uint64, IsInteger | IsUnsigned, "uint64"}, + Uintptr: {Uintptr, IsInteger | IsUnsigned, "uintptr"}, + Float32: {Float32, IsFloat, "float32"}, + Float64: {Float64, IsFloat, "float64"}, + Complex64: {Complex64, IsComplex, "complex64"}, + Complex128: {Complex128, IsComplex, "complex128"}, + String: {String, IsString, "string"}, + UnsafePointer: {UnsafePointer, 0, "Pointer"}, + + UntypedBool: {UntypedBool, IsBoolean | IsUntyped, "untyped bool"}, + UntypedInt: {UntypedInt, IsInteger | IsUntyped, "untyped int"}, + UntypedRune: {UntypedRune, IsInteger | IsUntyped, "untyped rune"}, + UntypedFloat: {UntypedFloat, IsFloat | IsUntyped, "untyped float"}, + UntypedComplex: {UntypedComplex, IsComplex | IsUntyped, "untyped complex"}, + UntypedString: {UntypedString, IsString | IsUntyped, "untyped string"}, + UntypedNil: {UntypedNil, IsUntyped, "untyped nil"}, +} + +var aliases = [...]*Basic{ + {Byte, IsInteger | IsUnsigned, "byte"}, + {Rune, IsInteger, "rune"}, +} + +func defPredeclaredTypes() { + for _, t := range Typ { + def(NewTypeName(token.NoPos, nil, t.name, t)) + } + for _, t := range aliases { + def(NewTypeName(token.NoPos, nil, t.name, t)) + } + + // Error has a nil package in its qualified name since it is in no package + res := NewVar(token.NoPos, nil, "", Typ[String]) + sig := &Signature{results: NewTuple(res)} + err := NewFunc(token.NoPos, nil, "Error", sig) + typ := &Named{underlying: NewInterface([]*Func{err}, nil)} + sig.recv = NewVar(token.NoPos, nil, "", typ) + def(NewTypeName(token.NoPos, nil, "error", typ)) +} + +var predeclaredConsts = [...]struct { + name string + kind BasicKind + val exact.Value +}{ + {"true", UntypedBool, exact.MakeBool(true)}, + {"false", UntypedBool, exact.MakeBool(false)}, + {"iota", UntypedInt, exact.MakeInt64(0)}, +} + +func defPredeclaredConsts() { + for _, c := range predeclaredConsts { + def(NewConst(token.NoPos, nil, c.name, Typ[c.kind], c.val)) + } +} + +func defPredeclaredNil() { + def(&Nil{object{name: "nil", typ: Typ[UntypedNil]}}) +} + +// A builtinId is the id of a builtin function. +type builtinId int + +const ( + // universe scope + _Append builtinId = iota + _Cap + _Close + _Complex + _Copy + _Delete + _Imag + _Len + _Make + _New + _Panic + _Print + _Println + _Real + _Recover + + // package unsafe + _Alignof + _Offsetof + _Sizeof + + // testing support + _Assert + _Trace +) + +var predeclaredFuncs = [...]struct { + name string + nargs int + variadic bool + kind exprKind +}{ + _Append: {"append", 1, true, expression}, + _Cap: {"cap", 1, false, expression}, + _Close: {"close", 1, false, statement}, + _Complex: {"complex", 2, false, expression}, + _Copy: {"copy", 2, false, statement}, + _Delete: {"delete", 2, false, statement}, + _Imag: {"imag", 1, false, expression}, + _Len: {"len", 1, false, expression}, + _Make: {"make", 1, true, expression}, + _New: {"new", 1, false, expression}, + _Panic: {"panic", 1, false, statement}, + _Print: {"print", 0, true, statement}, + _Println: {"println", 0, true, statement}, + _Real: {"real", 1, false, expression}, + _Recover: {"recover", 0, false, statement}, + + _Alignof: {"Alignof", 1, false, expression}, + _Offsetof: {"Offsetof", 1, false, expression}, + _Sizeof: {"Sizeof", 1, false, expression}, + + _Assert: {"assert", 1, false, statement}, + _Trace: {"trace", 0, true, statement}, +} + +func defPredeclaredFuncs() { + for i := range predeclaredFuncs { + id := builtinId(i) + if id == _Assert || id == _Trace { + continue // only define these in testing environment + } + def(newBuiltin(id)) + } +} + +// DefPredeclaredTestFuncs defines the assert and trace built-ins. +// These built-ins are intended for debugging and testing of this +// package only. +func DefPredeclaredTestFuncs() { + if Universe.Lookup("assert") != nil { + return // already defined + } + def(newBuiltin(_Assert)) + def(newBuiltin(_Trace)) +} + +func init() { + Universe = NewScope(nil, "universe") + Unsafe = NewPackage("unsafe", "unsafe") + Unsafe.complete = true + + defPredeclaredTypes() + defPredeclaredConsts() + defPredeclaredNil() + defPredeclaredFuncs() + + universeIota = Universe.Lookup("iota").(*Const) + UniverseByte = Universe.Lookup("byte").(*TypeName).typ.(*Basic) + UniverseRune = Universe.Lookup("rune").(*TypeName).typ.(*Basic) +} + +// Objects with names containing blanks are internal and not entered into +// a scope. Objects with exported names are inserted in the unsafe package +// scope; other objects are inserted in the universe scope. +// +func def(obj Object) { + name := obj.Name() + if strings.Index(name, " ") >= 0 { + return // nothing to do + } + // fix Obj link for named types + if typ, ok := obj.Type().(*Named); ok { + typ.obj = obj.(*TypeName) + } + // exported identifiers go into package unsafe + scope := Universe + if obj.Exported() { + scope = Unsafe.scope + // set Pkg field + switch obj := obj.(type) { + case *TypeName: + obj.pkg = Unsafe + case *Builtin: + obj.pkg = Unsafe + default: + unreachable() + } + } + if scope.Insert(obj) != nil { + panic("internal error: double declaration") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/discovery.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/discovery.go new file mode 100644 index 00000000..c9b3caf9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/discovery.go @@ -0,0 +1,74 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vcs + +import ( + "encoding/xml" + "fmt" + "io" + "strings" +) + +// charsetReader returns a reader for the given charset. Currently +// it only supports UTF-8 and ASCII. Otherwise, it returns a meaningful +// error which is printed by go get, so the user can find why the package +// wasn't downloaded if the encoding is not supported. Note that, in +// order to reduce potential errors, ASCII is treated as UTF-8 (i.e. characters +// greater than 0x7f are not rejected). +func charsetReader(charset string, input io.Reader) (io.Reader, error) { + switch strings.ToLower(charset) { + case "ascii": + return input, nil + default: + return nil, fmt.Errorf("can't decode XML document using charset %q", charset) + } +} + +// parseMetaGoImports returns meta imports from the HTML in r. +// Parsing ends at the end of the section or the beginning of the . +func parseMetaGoImports(r io.Reader) (imports []metaImport, err error) { + d := xml.NewDecoder(r) + d.CharsetReader = charsetReader + d.Strict = false + var t xml.Token + for { + t, err = d.Token() + if err != nil { + return + } + if e, ok := t.(xml.StartElement); ok && strings.EqualFold(e.Name.Local, "body") { + return + } + if e, ok := t.(xml.EndElement); ok && strings.EqualFold(e.Name.Local, "head") { + return + } + e, ok := t.(xml.StartElement) + if !ok || !strings.EqualFold(e.Name.Local, "meta") { + continue + } + if attrValue(e.Attr, "name") != "go-import" { + continue + } + if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 { + imports = append(imports, metaImport{ + Prefix: f[0], + VCS: f[1], + RepoRoot: f[2], + }) + } + } + return +} + +// attrValue returns the attribute value for the case-insensitive key +// `name', or the empty string if nothing is found. +func attrValue(attrs []xml.Attr, name string) string { + for _, a := range attrs { + if strings.EqualFold(a.Name.Local, name) { + return a.Value + } + } + return "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/env.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/env.go new file mode 100644 index 00000000..e846f5b3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/env.go @@ -0,0 +1,39 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vcs + +import ( + "os" + "strings" +) + +// envForDir returns a copy of the environment +// suitable for running in the given directory. +// The environment is the current process's environment +// but with an updated $PWD, so that an os.Getwd in the +// child will be faster. +func envForDir(dir string) []string { + env := os.Environ() + // Internally we only use rooted paths, so dir is rooted. + // Even if dir is not rooted, no harm done. + return mergeEnvLists([]string{"PWD=" + dir}, env) +} + +// mergeEnvLists merges the two environment lists such that +// variables with the same name in "in" replace those in "out". +func mergeEnvLists(in, out []string) []string { +NextVar: + for _, inkv := range in { + k := strings.SplitAfterN(inkv, "=", 2)[0] + for i, outkv := range out { + if strings.HasPrefix(outkv, k) { + out[i] = inkv + continue NextVar + } + } + out = append(out, inkv) + } + return out +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/http.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/http.go new file mode 100644 index 00000000..96188185 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/http.go @@ -0,0 +1,80 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vcs + +import ( + "fmt" + "io" + "io/ioutil" + "log" + "net/http" + "net/url" +) + +// httpClient is the default HTTP client, but a variable so it can be +// changed by tests, without modifying http.DefaultClient. +var httpClient = http.DefaultClient + +// httpGET returns the data from an HTTP GET request for the given URL. +func httpGET(url string) ([]byte, error) { + resp, err := httpClient.Get(url) + if err != nil { + return nil, err + } + defer resp.Body.Close() + if resp.StatusCode != 200 { + return nil, fmt.Errorf("%s: %s", url, resp.Status) + } + b, err := ioutil.ReadAll(resp.Body) + if err != nil { + return nil, fmt.Errorf("%s: %v", url, err) + } + return b, nil +} + +// httpsOrHTTP returns the body of either the importPath's +// https resource or, if unavailable, the http resource. +func httpsOrHTTP(importPath string) (urlStr string, body io.ReadCloser, err error) { + fetch := func(scheme string) (urlStr string, res *http.Response, err error) { + u, err := url.Parse(scheme + "://" + importPath) + if err != nil { + return "", nil, err + } + u.RawQuery = "go-get=1" + urlStr = u.String() + if Verbose { + log.Printf("Fetching %s", urlStr) + } + res, err = httpClient.Get(urlStr) + return + } + closeBody := func(res *http.Response) { + if res != nil { + res.Body.Close() + } + } + urlStr, res, err := fetch("https") + if err != nil || res.StatusCode != 200 { + if Verbose { + if err != nil { + log.Printf("https fetch failed.") + } else { + log.Printf("ignoring https fetch with status code %d", res.StatusCode) + } + } + closeBody(res) + urlStr, res, err = fetch("http") + } + if err != nil { + closeBody(res) + return "", nil, err + } + // Note: accepting a non-200 OK here, so people can serve a + // meta import in their http 404 page. + if Verbose { + log.Printf("Parsing meta tags from %s (status code %d)", urlStr, res.StatusCode) + } + return urlStr, res.Body, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/vcs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/vcs.go new file mode 100644 index 00000000..586e1b8a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/vcs.go @@ -0,0 +1,744 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vcs + +import ( + "bytes" + "encoding/json" + "errors" + "fmt" + "log" + "os" + "os/exec" + "path/filepath" + "regexp" + "strconv" + "strings" +) + +// Verbose enables verbose operation logging. +var Verbose bool + +// ShowCmd controls whether VCS commands are printed. +var ShowCmd bool + +// A Cmd describes how to use a version control system +// like Mercurial, Git, or Subversion. +type Cmd struct { + Name string + Cmd string // name of binary to invoke command + + CreateCmd string // command to download a fresh copy of a repository + DownloadCmd string // command to download updates into an existing repository + + TagCmd []TagCmd // commands to list tags + TagLookupCmd []TagCmd // commands to lookup tags before running tagSyncCmd + TagSyncCmd string // command to sync to specific tag + TagSyncDefault string // command to sync to default tag + + LogCmd string // command to list repository changelogs in an XML format + + Scheme []string + PingCmd string +} + +// A TagCmd describes a command to list available tags +// that can be passed to Cmd.TagSyncCmd. +type TagCmd struct { + Cmd string // command to list tags + Pattern string // regexp to extract tags from list +} + +// vcsList lists the known version control systems +var vcsList = []*Cmd{ + vcsHg, + vcsGit, + vcsSvn, + vcsBzr, +} + +// ByCmd returns the version control system for the given +// command name (hg, git, svn, bzr). +func ByCmd(cmd string) *Cmd { + for _, vcs := range vcsList { + if vcs.Cmd == cmd { + return vcs + } + } + return nil +} + +// vcsHg describes how to use Mercurial. +var vcsHg = &Cmd{ + Name: "Mercurial", + Cmd: "hg", + + CreateCmd: "clone -U {repo} {dir}", + DownloadCmd: "pull", + + // We allow both tag and branch names as 'tags' + // for selecting a version. This lets people have + // a go.release.r60 branch and a go1 branch + // and make changes in both, without constantly + // editing .hgtags. + TagCmd: []TagCmd{ + {"tags", `^(\S+)`}, + {"branches", `^(\S+)`}, + }, + TagSyncCmd: "update -r {tag}", + TagSyncDefault: "update default", + + LogCmd: "log --encoding=utf-8 --limit={limit} --template={template}", + + Scheme: []string{"https", "http", "ssh"}, + PingCmd: "identify {scheme}://{repo}", +} + +// vcsGit describes how to use Git. +var vcsGit = &Cmd{ + Name: "Git", + Cmd: "git", + + CreateCmd: "clone {repo} {dir}", + DownloadCmd: "pull --ff-only", + + TagCmd: []TagCmd{ + // tags/xxx matches a git tag named xxx + // origin/xxx matches a git branch named xxx on the default remote repository + {"show-ref", `(?:tags|origin)/(\S+)$`}, + }, + TagLookupCmd: []TagCmd{ + {"show-ref tags/{tag} origin/{tag}", `((?:tags|origin)/\S+)$`}, + }, + TagSyncCmd: "checkout {tag}", + TagSyncDefault: "checkout master", + + Scheme: []string{"git", "https", "http", "git+ssh"}, + PingCmd: "ls-remote {scheme}://{repo}", +} + +// vcsBzr describes how to use Bazaar. +var vcsBzr = &Cmd{ + Name: "Bazaar", + Cmd: "bzr", + + CreateCmd: "branch {repo} {dir}", + + // Without --overwrite bzr will not pull tags that changed. + // Replace by --overwrite-tags after http://pad.lv/681792 goes in. + DownloadCmd: "pull --overwrite", + + TagCmd: []TagCmd{{"tags", `^(\S+)`}}, + TagSyncCmd: "update -r {tag}", + TagSyncDefault: "update -r revno:-1", + + Scheme: []string{"https", "http", "bzr", "bzr+ssh"}, + PingCmd: "info {scheme}://{repo}", +} + +// vcsSvn describes how to use Subversion. +var vcsSvn = &Cmd{ + Name: "Subversion", + Cmd: "svn", + + CreateCmd: "checkout {repo} {dir}", + DownloadCmd: "update", + + // There is no tag command in subversion. + // The branch information is all in the path names. + + LogCmd: "log --xml --limit={limit}", + + Scheme: []string{"https", "http", "svn", "svn+ssh"}, + PingCmd: "info {scheme}://{repo}", +} + +func (v *Cmd) String() string { + return v.Name +} + +// run runs the command line cmd in the given directory. +// keyval is a list of key, value pairs. run expands +// instances of {key} in cmd into value, but only after +// splitting cmd into individual arguments. +// If an error occurs, run prints the command line and the +// command's combined stdout+stderr to standard error. +// Otherwise run discards the command's output. +func (v *Cmd) run(dir string, cmd string, keyval ...string) error { + _, err := v.run1(dir, cmd, keyval, true) + return err +} + +// runVerboseOnly is like run but only generates error output to standard error in verbose mode. +func (v *Cmd) runVerboseOnly(dir string, cmd string, keyval ...string) error { + _, err := v.run1(dir, cmd, keyval, false) + return err +} + +// runOutput is like run but returns the output of the command. +func (v *Cmd) runOutput(dir string, cmd string, keyval ...string) ([]byte, error) { + return v.run1(dir, cmd, keyval, true) +} + +// run1 is the generalized implementation of run and runOutput. +func (v *Cmd) run1(dir string, cmdline string, keyval []string, verbose bool) ([]byte, error) { + m := make(map[string]string) + for i := 0; i < len(keyval); i += 2 { + m[keyval[i]] = keyval[i+1] + } + args := strings.Fields(cmdline) + for i, arg := range args { + args[i] = expand(m, arg) + } + + _, err := exec.LookPath(v.Cmd) + if err != nil { + fmt.Fprintf(os.Stderr, + "go: missing %s command. See http://golang.org/s/gogetcmd\n", + v.Name) + return nil, err + } + + cmd := exec.Command(v.Cmd, args...) + cmd.Dir = dir + cmd.Env = envForDir(cmd.Dir) + if ShowCmd { + fmt.Printf("cd %s\n", dir) + fmt.Printf("%s %s\n", v.Cmd, strings.Join(args, " ")) + } + var buf bytes.Buffer + cmd.Stdout = &buf + cmd.Stderr = &buf + err = cmd.Run() + out := buf.Bytes() + if err != nil { + if verbose || Verbose { + fmt.Fprintf(os.Stderr, "# cd %s; %s %s\n", dir, v.Cmd, strings.Join(args, " ")) + os.Stderr.Write(out) + } + return nil, err + } + return out, nil +} + +// Ping pings the repo to determine if scheme used is valid. +// This repo must be pingable with this scheme and VCS. +func (v *Cmd) Ping(scheme, repo string) error { + return v.runVerboseOnly(".", v.PingCmd, "scheme", scheme, "repo", repo) +} + +// Create creates a new copy of repo in dir. +// The parent of dir must exist; dir must not. +func (v *Cmd) Create(dir, repo string) error { + return v.run(".", v.CreateCmd, "dir", dir, "repo", repo) +} + +// CreateAtRev creates a new copy of repo in dir at revision rev. +// The parent of dir must exist; dir must not. +// rev must be a valid revision in repo. +func (v *Cmd) CreateAtRev(dir, repo, rev string) error { + // Append revision flag to CreateCmd + createAtRevCmd := v.CreateCmd + " --rev=" + rev + return v.run(".", createAtRevCmd, "dir", dir, "repo", repo) +} + +// Download downloads any new changes for the repo in dir. +// dir must be a valid VCS repo compatible with v. +func (v *Cmd) Download(dir string) error { + return v.run(dir, v.DownloadCmd) +} + +// Tags returns the list of available tags for the repo in dir. +// dir must be a valid VCS repo compatible with v. +func (v *Cmd) Tags(dir string) ([]string, error) { + var tags []string + for _, tc := range v.TagCmd { + out, err := v.runOutput(dir, tc.Cmd) + if err != nil { + return nil, err + } + re := regexp.MustCompile(`(?m-s)` + tc.Pattern) + for _, m := range re.FindAllStringSubmatch(string(out), -1) { + tags = append(tags, m[1]) + } + } + return tags, nil +} + +// TagSync syncs the repo in dir to the named tag, +// which either is a tag returned by tags or is v.TagDefault. +// dir must be a valid VCS repo compatible with v and the tag must exist. +func (v *Cmd) TagSync(dir, tag string) error { + if v.TagSyncCmd == "" { + return nil + } + if tag != "" { + for _, tc := range v.TagLookupCmd { + out, err := v.runOutput(dir, tc.Cmd, "tag", tag) + if err != nil { + return err + } + re := regexp.MustCompile(`(?m-s)` + tc.Pattern) + m := re.FindStringSubmatch(string(out)) + if len(m) > 1 { + tag = m[1] + break + } + } + } + if tag == "" && v.TagSyncDefault != "" { + return v.run(dir, v.TagSyncDefault) + } + return v.run(dir, v.TagSyncCmd, "tag", tag) +} + +// Log logs the changes for the repo in dir. +// dir must be a valid VCS repo compatible with v. +func (v *Cmd) Log(dir, logTemplate string) ([]byte, error) { + if err := v.Download(dir); err != nil { + return []byte{}, err + } + + const N = 50 // how many revisions to grab + return v.runOutput(dir, v.LogCmd, "limit", strconv.Itoa(N), "template", logTemplate) +} + +// LogAtRev logs the change for repo in dir at the rev revision. +// dir must be a valid VCS repo compatible with v. +// rev must be a valid revision for the repo in dir. +func (v *Cmd) LogAtRev(dir, rev, logTemplate string) ([]byte, error) { + if err := v.Download(dir); err != nil { + return []byte{}, err + } + + // Append revision flag to LogCmd. + logAtRevCmd := v.LogCmd + " --rev=" + rev + return v.runOutput(dir, logAtRevCmd, "limit", strconv.Itoa(1), "template", logTemplate) +} + +// A vcsPath describes how to convert an import path into a +// version control system and repository name. +type vcsPath struct { + prefix string // prefix this description applies to + re string // pattern for import path + repo string // repository to use (expand with match of re) + vcs string // version control system to use (expand with match of re) + check func(match map[string]string) error // additional checks + ping bool // ping for scheme to use to download repo + + regexp *regexp.Regexp // cached compiled form of re +} + +// FromDir inspects dir and its parents to determine the +// version control system and code repository to use. +// On return, root is the import path +// corresponding to the root of the repository +// (thus root is a prefix of importPath). +func FromDir(dir, srcRoot string) (vcs *Cmd, root string, err error) { + // Clean and double-check that dir is in (a subdirectory of) srcRoot. + dir = filepath.Clean(dir) + srcRoot = filepath.Clean(srcRoot) + if len(dir) <= len(srcRoot) || dir[len(srcRoot)] != filepath.Separator { + return nil, "", fmt.Errorf("directory %q is outside source root %q", dir, srcRoot) + } + + for len(dir) > len(srcRoot) { + for _, vcs := range vcsList { + if fi, err := os.Stat(filepath.Join(dir, "."+vcs.Cmd)); err == nil && fi.IsDir() { + return vcs, dir[len(srcRoot)+1:], nil + } + } + + // Move to parent. + ndir := filepath.Dir(dir) + if len(ndir) >= len(dir) { + // Shouldn't happen, but just in case, stop. + break + } + dir = ndir + } + + return nil, "", fmt.Errorf("directory %q is not using a known version control system", dir) +} + +// RepoRoot represents a version control system, a repo, and a root of +// where to put it on disk. +type RepoRoot struct { + VCS *Cmd + + // repo is the repository URL, including scheme + Repo string + + // root is the import path corresponding to the root of the + // repository + Root string +} + +// RepoRootForImportPath analyzes importPath to determine the +// version control system, and code repository to use. +func RepoRootForImportPath(importPath string, verbose bool) (*RepoRoot, error) { + rr, err := RepoRootForImportPathStatic(importPath, "") + if err == errUnknownSite { + rr, err = RepoRootForImportDynamic(importPath, verbose) + + // RepoRootForImportDynamic returns error detail + // that is irrelevant if the user didn't intend to use a + // dynamic import in the first place. + // Squelch it. + if err != nil { + if Verbose { + log.Printf("import %q: %v", importPath, err) + } + err = fmt.Errorf("unrecognized import path %q", importPath) + } + } + + if err == nil && strings.Contains(importPath, "...") && strings.Contains(rr.Root, "...") { + // Do not allow wildcards in the repo root. + rr = nil + err = fmt.Errorf("cannot expand ... in %q", importPath) + } + return rr, err +} + +var errUnknownSite = errors.New("dynamic lookup required to find mapping") + +// RepoRootForImportPathStatic attempts to map importPath to a +// RepoRoot using the commonly-used VCS hosting sites in vcsPaths +// (github.com/user/dir), or from a fully-qualified importPath already +// containing its VCS type (foo.com/repo.git/dir) +// +// If scheme is non-empty, that scheme is forced. +func RepoRootForImportPathStatic(importPath, scheme string) (*RepoRoot, error) { + if strings.Contains(importPath, "://") { + return nil, fmt.Errorf("invalid import path %q", importPath) + } + for _, srv := range vcsPaths { + if !strings.HasPrefix(importPath, srv.prefix) { + continue + } + m := srv.regexp.FindStringSubmatch(importPath) + if m == nil { + if srv.prefix != "" { + return nil, fmt.Errorf("invalid %s import path %q", srv.prefix, importPath) + } + continue + } + + // Build map of named subexpression matches for expand. + match := map[string]string{ + "prefix": srv.prefix, + "import": importPath, + } + for i, name := range srv.regexp.SubexpNames() { + if name != "" && match[name] == "" { + match[name] = m[i] + } + } + if srv.vcs != "" { + match["vcs"] = expand(match, srv.vcs) + } + if srv.repo != "" { + match["repo"] = expand(match, srv.repo) + } + if srv.check != nil { + if err := srv.check(match); err != nil { + return nil, err + } + } + vcs := ByCmd(match["vcs"]) + if vcs == nil { + return nil, fmt.Errorf("unknown version control system %q", match["vcs"]) + } + if srv.ping { + if scheme != "" { + match["repo"] = scheme + "://" + match["repo"] + } else { + for _, scheme := range vcs.Scheme { + if vcs.Ping(scheme, match["repo"]) == nil { + match["repo"] = scheme + "://" + match["repo"] + break + } + } + } + } + rr := &RepoRoot{ + VCS: vcs, + Repo: match["repo"], + Root: match["root"], + } + return rr, nil + } + return nil, errUnknownSite +} + +// RepoRootForImportDynamic finds a *RepoRoot for a custom domain that's not +// statically known by RepoRootForImportPathStatic. +// +// This handles "vanity import paths" like "name.tld/pkg/foo". +func RepoRootForImportDynamic(importPath string, verbose bool) (*RepoRoot, error) { + slash := strings.Index(importPath, "/") + if slash < 0 { + return nil, errors.New("import path doesn't contain a slash") + } + host := importPath[:slash] + if !strings.Contains(host, ".") { + return nil, errors.New("import path doesn't contain a hostname") + } + urlStr, body, err := httpsOrHTTP(importPath) + if err != nil { + return nil, fmt.Errorf("http/https fetch: %v", err) + } + defer body.Close() + imports, err := parseMetaGoImports(body) + if err != nil { + return nil, fmt.Errorf("parsing %s: %v", importPath, err) + } + metaImport, err := matchGoImport(imports, importPath) + if err != nil { + if err != errNoMatch { + return nil, fmt.Errorf("parse %s: %v", urlStr, err) + } + return nil, fmt.Errorf("parse %s: no go-import meta tags", urlStr) + } + if verbose { + log.Printf("get %q: found meta tag %#v at %s", importPath, metaImport, urlStr) + } + // If the import was "uni.edu/bob/project", which said the + // prefix was "uni.edu" and the RepoRoot was "evilroot.com", + // make sure we don't trust Bob and check out evilroot.com to + // "uni.edu" yet (possibly overwriting/preempting another + // non-evil student). Instead, first verify the root and see + // if it matches Bob's claim. + if metaImport.Prefix != importPath { + if verbose { + log.Printf("get %q: verifying non-authoritative meta tag", importPath) + } + urlStr0 := urlStr + urlStr, body, err = httpsOrHTTP(metaImport.Prefix) + if err != nil { + return nil, fmt.Errorf("fetch %s: %v", urlStr, err) + } + imports, err := parseMetaGoImports(body) + if err != nil { + return nil, fmt.Errorf("parsing %s: %v", importPath, err) + } + if len(imports) == 0 { + return nil, fmt.Errorf("fetch %s: no go-import meta tag", urlStr) + } + metaImport2, err := matchGoImport(imports, importPath) + if err != nil || metaImport != metaImport2 { + return nil, fmt.Errorf("%s and %s disagree about go-import for %s", urlStr0, urlStr, metaImport.Prefix) + } + } + + if !strings.Contains(metaImport.RepoRoot, "://") { + return nil, fmt.Errorf("%s: invalid repo root %q; no scheme", urlStr, metaImport.RepoRoot) + } + rr := &RepoRoot{ + VCS: ByCmd(metaImport.VCS), + Repo: metaImport.RepoRoot, + Root: metaImport.Prefix, + } + if rr.VCS == nil { + return nil, fmt.Errorf("%s: unknown vcs %q", urlStr, metaImport.VCS) + } + return rr, nil +} + +// metaImport represents the parsed tags from HTML files. +type metaImport struct { + Prefix, VCS, RepoRoot string +} + +// errNoMatch is returned from matchGoImport when there's no applicable match. +var errNoMatch = errors.New("no import match") + +// matchGoImport returns the metaImport from imports matching importPath. +// An error is returned if there are multiple matches. +// errNoMatch is returned if none match. +func matchGoImport(imports []metaImport, importPath string) (_ metaImport, err error) { + match := -1 + for i, im := range imports { + if !strings.HasPrefix(importPath, im.Prefix) { + continue + } + if match != -1 { + err = fmt.Errorf("multiple meta tags match import path %q", importPath) + return + } + match = i + } + if match == -1 { + err = errNoMatch + return + } + return imports[match], nil +} + +// expand rewrites s to replace {k} with match[k] for each key k in match. +func expand(match map[string]string, s string) string { + for k, v := range match { + s = strings.Replace(s, "{"+k+"}", v, -1) + } + return s +} + +// vcsPaths lists the known vcs paths. +var vcsPaths = []*vcsPath{ + // Google Code - new syntax + { + prefix: "code.google.com/", + re: `^(?Pcode\.google\.com/[pr]/(?P[a-z0-9\-]+)(\.(?P[a-z0-9\-]+))?)(/[A-Za-z0-9_.\-]+)*$`, + repo: "https://{root}", + check: googleCodeVCS, + }, + + // Google Code - old syntax + { + re: `^(?P[a-z0-9_\-.]+)\.googlecode\.com/(git|hg|svn)(?P/.*)?$`, + check: oldGoogleCode, + }, + + // Github + { + prefix: "github.com/", + re: `^(?Pgithub\.com/[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+)(/[A-Za-z0-9_.\-]+)*$`, + vcs: "git", + repo: "https://{root}", + check: noVCSSuffix, + }, + + // Bitbucket + { + prefix: "bitbucket.org/", + re: `^(?Pbitbucket\.org/(?P[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+))(/[A-Za-z0-9_.\-]+)*$`, + repo: "https://{root}", + check: bitbucketVCS, + }, + + // Launchpad + { + prefix: "launchpad.net/", + re: `^(?Plaunchpad\.net/((?P[A-Za-z0-9_.\-]+)(?P/[A-Za-z0-9_.\-]+)?|~[A-Za-z0-9_.\-]+/(\+junk|[A-Za-z0-9_.\-]+)/[A-Za-z0-9_.\-]+))(/[A-Za-z0-9_.\-]+)*$`, + vcs: "bzr", + repo: "https://{root}", + check: launchpadVCS, + }, + + // General syntax for any server. + { + re: `^(?P(?P([a-z0-9.\-]+\.)+[a-z0-9.\-]+(:[0-9]+)?/[A-Za-z0-9_.\-/]*?)\.(?Pbzr|git|hg|svn))(/[A-Za-z0-9_.\-]+)*$`, + ping: true, + }, +} + +func init() { + // fill in cached regexps. + // Doing this eagerly discovers invalid regexp syntax + // without having to run a command that needs that regexp. + for _, srv := range vcsPaths { + srv.regexp = regexp.MustCompile(srv.re) + } +} + +// noVCSSuffix checks that the repository name does not +// end in .foo for any version control system foo. +// The usual culprit is ".git". +func noVCSSuffix(match map[string]string) error { + repo := match["repo"] + for _, vcs := range vcsList { + if strings.HasSuffix(repo, "."+vcs.Cmd) { + return fmt.Errorf("invalid version control suffix in %s path", match["prefix"]) + } + } + return nil +} + +var googleCheckout = regexp.MustCompile(`id="checkoutcmd">(hg|git|svn)`) + +// googleCodeVCS determines the version control system for +// a code.google.com repository, by scraping the project's +// /source/checkout page. +func googleCodeVCS(match map[string]string) error { + if err := noVCSSuffix(match); err != nil { + return err + } + data, err := httpGET(expand(match, "https://code.google.com/p/{project}/source/checkout?repo={subrepo}")) + if err != nil { + return err + } + + if m := googleCheckout.FindSubmatch(data); m != nil { + if vcs := ByCmd(string(m[1])); vcs != nil { + // Subversion requires the old URLs. + // TODO: Test. + if vcs == vcsSvn { + if match["subrepo"] != "" { + return fmt.Errorf("sub-repositories not supported in Google Code Subversion projects") + } + match["repo"] = expand(match, "https://{project}.googlecode.com/svn") + } + match["vcs"] = vcs.Cmd + return nil + } + } + + return fmt.Errorf("unable to detect version control system for code.google.com/ path") +} + +// oldGoogleCode is invoked for old-style foo.googlecode.com paths. +// It prints an error giving the equivalent new path. +func oldGoogleCode(match map[string]string) error { + return fmt.Errorf("invalid Google Code import path: use %s instead", + expand(match, "code.google.com/p/{project}{path}")) +} + +// bitbucketVCS determines the version control system for a +// Bitbucket repository, by using the Bitbucket API. +func bitbucketVCS(match map[string]string) error { + if err := noVCSSuffix(match); err != nil { + return err + } + + var resp struct { + SCM string `json:"scm"` + } + url := expand(match, "https://api.bitbucket.org/1.0/repositories/{bitname}") + data, err := httpGET(url) + if err != nil { + return err + } + if err := json.Unmarshal(data, &resp); err != nil { + return fmt.Errorf("decoding %s: %v", url, err) + } + + if ByCmd(resp.SCM) != nil { + match["vcs"] = resp.SCM + if resp.SCM == "git" { + match["repo"] += ".git" + } + return nil + } + + return fmt.Errorf("unable to detect version control system for bitbucket.org/ path") +} + +// launchpadVCS solves the ambiguity for "lp.net/project/foo". In this case, +// "foo" could be a series name registered in Launchpad with its own branch, +// and it could also be the name of a directory within the main project +// branch one level up. +func launchpadVCS(match map[string]string) error { + if match["project"] == "" || match["series"] == "" { + return nil + } + _, err := httpGET(expand(match, "https://code.launchpad.net/{project}{series}/.bzr/branch-format")) + if err != nil { + match["root"] = expand(match, "launchpad.net/{project}") + match["repo"] = expand(match, "https://{root}") + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/vcs_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/vcs_test.go new file mode 100644 index 00000000..0b8dd8c8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/go/vcs/vcs_test.go @@ -0,0 +1,86 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vcs + +import ( + "io/ioutil" + "os" + "path/filepath" + "testing" +) + +// Test that RepoRootForImportPath creates the correct RepoRoot for a given importPath. +// TODO(cmang): Add tests for SVN and BZR. +func TestRepoRootForImportPath(t *testing.T) { + tests := []struct { + path string + want *RepoRoot + }{ + { + "code.google.com/p/go", + &RepoRoot{ + VCS: vcsHg, + Repo: "https://code.google.com/p/go", + }, + }, + { + "code.google.com/r/go", + &RepoRoot{ + VCS: vcsHg, + Repo: "https://code.google.com/r/go", + }, + }, + { + "github.com/golang/groupcache", + &RepoRoot{ + VCS: vcsGit, + Repo: "https://github.com/golang/groupcache", + }, + }, + } + + for _, test := range tests { + got, err := RepoRootForImportPath(test.path, false) + if err != nil { + t.Errorf("RepoRootForImport(%q): %v", test.path, err) + continue + } + want := test.want + if got.VCS.Name != want.VCS.Name || got.Repo != want.Repo { + t.Errorf("RepoRootForImport(%q) = VCS(%s) Repo(%s), want VCS(%s) Repo(%s)", test.path, got.VCS, got.Repo, want.VCS, want.Repo) + } + } +} + +// Test that FromDir correctly inspects a given directory and returns the right VCS. +func TestFromDir(t *testing.T) { + type testStruct struct { + path string + want *Cmd + } + + tests := make([]testStruct, len(vcsList)) + tempDir, err := ioutil.TempDir("", "vcstest") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(tempDir) + + for i, vcs := range vcsList { + tests[i] = testStruct{ + filepath.Join(tempDir, vcs.Name, "."+vcs.Cmd), + vcs, + } + } + + for _, test := range tests { + os.MkdirAll(test.path, 0755) + got, _, _ := FromDir(test.path, tempDir) + if got.Name != test.want.Name { + t.Errorf("FromDir(%q, %q) = %s, want %s", test.path, tempDir, got, test.want) + } + os.RemoveAll(test.path) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/README new file mode 100644 index 00000000..a31fefc6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/README @@ -0,0 +1,121 @@ + +Type and Pointer Analysis to-do list +==================================== + +Alan Donovan + + +Overall design +-------------- + +We should re-run the type and pointer analyses periodically, +as we do with the indexer. + +Version skew: how to mitigate the bad effects of stale URLs in old pages? +We could record the file's length/CRC32/mtime in the go/loader, and +refuse to decorate it with links unless they match at serving time. + +Use the VFS mechanism when (a) enumerating packages and (b) loading +them. (Requires planned changes to go/loader.) + +Future work: shard this using map/reduce for larger corpora. + +Testing: how does one test that a web page "looks right"? + + +Bugs +---- + +(*go/loader.Program).Load fails if it encounters a single parse error. +Make this more robust. + +(*ssa.Program).Create requires transitively error-free packages. We +can make this more robust by making the requirement transitively free +of "hard" errors; soft errors are fine. + +Markup of compiler errors is slightly buggy because they overlap with +other selections (e.g. Idents). Fix. + + +User Interface +-------------- + +CALLGRAPH: +- Add a search box: given a search node, expand path from each entry + point to it. +- Cause hovering over a given node to highlight that node, and all + nodes that are logically identical to it. +- Initially expand the callgraph trees (but not their toggle divs). + +CALLEES: +- The '(' links are not very discoverable. Highlight them? + +Type info: +- In the source viewer's lower pane, use a toggle div around the + IMPLEMENTS and METHODSETS lists, like we do in the pacakge view. + Only expand them initially if short. +- Include IMPLEMENTS and METHOD SETS information in search index. +- URLs in IMPLEMENTS/METHOD SETS always link to source, even from the + package docs view. This makes sense for links to non-exported + types, but links to exported types and funcs should probably go to + other package docs. +- Suppress toggle divs for empty method sets. + +Misc: +- Add an "analysis help" page explaining the features and UI in more detail. +- The [X] button in the lower pane is subject to scrolling. +- Should the lower pane be floating? An iframe? + When we change document.location by clicking on a link, it will go away. + How do we prevent that (a la Gmail's chat windows)? +- Progress/status: for each file, display its analysis status, one of: + - not in analysis scope + - type analysis running... + - type analysis complete + (+ optionally: there were type errors in this file) + And if PTA requested: + - type analysis complete; PTA not attempted due to type errors + - PTA running... + - PTA complete +- Scroll the selection into view, e.g. the vertical center, or better + still, under the pointer (assuming we have a mouse). + + +More features +------------- + +Display the REFERRERS relation? (Useful but potentially large.) + +Display the INSTANTIATIONS relation? i.e. given a type T, show the set of +syntactic constructs that can instantiate it: + var x T + x := T{...} + x = new(T) + x = make([]T, n) + etc + + all INSTANTIATIONS of all S defined as struct{t T} or [n]T +(Potentially a lot of information.) +(Add this to oracle too.) + + +Optimisations +------------- + +Each call to addLink takes a (per-file) lock. The locking is +fine-grained so server latency isn't terrible, but overall it makes +the link computation quite slow. Batch update might be better. + +Memory usage is now about 1.5GB for GOROOT + go.tools. It used to be 700MB. + +Optimize for time and space. The main slowdown is the network I/O +time caused by an increase in page size of about 3x: about 2x from +HTML, and 0.7--2.1x from JSON (unindented vs indented). The JSON +contains a lot of filenames (e.g. 820 copies of 16 distinct +filenames). 20% of the HTML is L%d spans (now disabled). The HTML +also contains lots of tooltips for long struct/interface types. +De-dup or just abbreviate? The actual formatting is very fast. + +The pointer analysis constraint solver is way too slow. We really +need to implement the constraint optimizer. Also: performance has +been quite unpredictable; I recently optimized it fourfold with +type-based label tracking, but the benefit seems to have evaporated. +TODO(adonovan): take a look at recent CLs for regressions. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/analysis.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/analysis.go new file mode 100644 index 00000000..8c6254ab --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/analysis.go @@ -0,0 +1,553 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package analysis performs type and pointer analysis +// and generates mark-up for the Go source view. +// +// The Run method populates a Result object by running type and +// (optionally) pointer analysis. The Result object is thread-safe +// and at all times may be accessed by a serving thread, even as it is +// progressively populated as analysis facts are derived. +// +// The Result is a mapping from each godoc file URL +// (e.g. /src/pkg/fmt/print.go) to information about that file. The +// information is a list of HTML markup links and a JSON array of +// structured data values. Some of the links call client-side +// JavaScript functions that index this array. +// +// The analysis computes mark-up for the following relations: +// +// IMPORTS: for each ast.ImportSpec, the package that it denotes. +// +// RESOLUTION: for each ast.Ident, its kind and type, and the location +// of its definition. +// +// METHOD SETS, IMPLEMENTS: for each ast.Ident defining a named type, +// its method-set, the set of interfaces it implements or is +// implemented by, and its size/align values. +// +// CALLERS, CALLEES: for each function declaration ('func' token), its +// callers, and for each call-site ('(' token), its callees. +// +// CALLGRAPH: the package docs include an interactive viewer for the +// intra-package call graph of "fmt". +// +// CHANNEL PEERS: for each channel operation make/<-/close, the set of +// other channel ops that alias the same channel(s). +// +// ERRORS: for each locus of a static (go/types) error, the location +// is highlighted in red and hover text provides the compiler error +// message. +// +package analysis + +import ( + "fmt" + "go/build" + "go/token" + "html" + "io" + "log" + "os" + "path/filepath" + "runtime" + "sort" + "strings" + "sync" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/pointer" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/ssautil" + "code.google.com/p/go.tools/go/types" +) + +// -- links ------------------------------------------------------------ + +// A Link is an HTML decoration of the bytes [Start, End) of a file. +// Write is called before/after those bytes to emit the mark-up. +type Link interface { + Start() int + End() int + Write(w io.Writer, _ int, start bool) // the godoc.LinkWriter signature +} + +// An element. +type aLink struct { + start, end int // =godoc.Segment + title string // hover text + onclick string // JS code (NB: trusted) + href string // URL (NB: trusted) +} + +func (a aLink) Start() int { return a.start } +func (a aLink) End() int { return a.end } +func (a aLink) Write(w io.Writer, _ int, start bool) { + if start { + fmt.Fprintf(w, `") + } else { + fmt.Fprintf(w, "") + } +} + +// An element. +type errorLink struct { + start int + msg string +} + +func (e errorLink) Start() int { return e.start } +func (e errorLink) End() int { return e.start + 1 } + +func (e errorLink) Write(w io.Writer, _ int, start bool) { + // causes havoc, not sure why, so use . + if start { + fmt.Fprintf(w, ``, html.EscapeString(e.msg)) + } else { + fmt.Fprintf(w, "") + } +} + +// -- fileInfo --------------------------------------------------------- + +// A fileInfo is the server's store of hyperlinks and JSON data for a +// particular file. +type fileInfo struct { + mu sync.Mutex + data []interface{} // JSON objects + links []Link + sorted bool + hasErrors bool // TODO(adonovan): surface this in the UI +} + +// addLink adds a link to the Go source file fi. +func (fi *fileInfo) addLink(link Link) { + fi.mu.Lock() + fi.links = append(fi.links, link) + fi.sorted = false + if _, ok := link.(errorLink); ok { + fi.hasErrors = true + } + fi.mu.Unlock() +} + +// addData adds the structured value x to the JSON data for the Go +// source file fi. Its index is returned. +func (fi *fileInfo) addData(x interface{}) int { + fi.mu.Lock() + index := len(fi.data) + fi.data = append(fi.data, x) + fi.mu.Unlock() + return index +} + +// get returns new slices containing opaque JSON values and the HTML link markup for fi. +// Callers must not mutate the elements. +func (fi *fileInfo) get() (data []interface{}, links []Link) { + // Copy slices, to avoid races. + fi.mu.Lock() + data = append(data, fi.data...) + if !fi.sorted { + sort.Sort(linksByStart(fi.links)) + fi.sorted = true + } + links = append(links, fi.links...) + fi.mu.Unlock() + + return +} + +type pkgInfo struct { + mu sync.Mutex + callGraph []*PCGNodeJSON + callGraphIndex map[string]int // keys are (*ssa.Function).RelString() + types []*TypeInfoJSON // type info for exported types +} + +func (pi *pkgInfo) setCallGraph(callGraph []*PCGNodeJSON, callGraphIndex map[string]int) { + pi.mu.Lock() + pi.callGraph = callGraph + pi.callGraphIndex = callGraphIndex + pi.mu.Unlock() +} + +func (pi *pkgInfo) addType(t *TypeInfoJSON) { + pi.mu.Lock() + pi.types = append(pi.types, t) + pi.mu.Unlock() +} + +// get returns new slices of JSON values for the callgraph and type info for pi. +// Callers must not mutate the slice elements or the map. +func (pi *pkgInfo) get() (callGraph []*PCGNodeJSON, callGraphIndex map[string]int, types []*TypeInfoJSON) { + // Copy slices, to avoid races. + pi.mu.Lock() + callGraph = append(callGraph, pi.callGraph...) + callGraphIndex = pi.callGraphIndex + types = append(types, pi.types...) + pi.mu.Unlock() + return +} + +// -- Result ----------------------------------------------------------- + +// Result contains the results of analysis. +// The result contains a mapping from filenames to a set of HTML links +// and JavaScript data referenced by the links. +type Result struct { + mu sync.Mutex // guards maps (but not their contents) + fileInfos map[string]*fileInfo // keys are godoc file URLs + pkgInfos map[string]*pkgInfo // keys are import paths +} + +// fileInfo returns the fileInfo for the specified godoc file URL, +// constructing it as needed. Thread-safe. +func (res *Result) fileInfo(url string) *fileInfo { + res.mu.Lock() + fi, ok := res.fileInfos[url] + if !ok { + if res.fileInfos == nil { + res.fileInfos = make(map[string]*fileInfo) + } + fi = new(fileInfo) + res.fileInfos[url] = fi + } + res.mu.Unlock() + return fi +} + +// FileInfo returns new slices containing opaque JSON values and the +// HTML link markup for the specified godoc file URL. Thread-safe. +// Callers must not mutate the elements. +// It returns "zero" if no data is available. +// +func (res *Result) FileInfo(url string) ([]interface{}, []Link) { + return res.fileInfo(url).get() +} + +// pkgInfo returns the pkgInfo for the specified import path, +// constructing it as needed. Thread-safe. +func (res *Result) pkgInfo(importPath string) *pkgInfo { + res.mu.Lock() + pi, ok := res.pkgInfos[importPath] + if !ok { + if res.pkgInfos == nil { + res.pkgInfos = make(map[string]*pkgInfo) + } + pi = new(pkgInfo) + res.pkgInfos[importPath] = pi + } + res.mu.Unlock() + return pi +} + +// PackageInfo returns new slices of JSON values for the callgraph and +// type info for the specified package. Thread-safe. +// Callers must not mutate the elements. +// PackageInfo returns "zero" if no data is available. +// +func (res *Result) PackageInfo(importPath string) ([]*PCGNodeJSON, map[string]int, []*TypeInfoJSON) { + return res.pkgInfo(importPath).get() +} + +// -- analysis --------------------------------------------------------- + +type analysis struct { + result *Result + prog *ssa.Program + ops []chanOp // all channel ops in program + allNamed []*types.Named // all named types in the program + ptaConfig pointer.Config + path2url map[string]string // maps openable path to godoc file URL (/src/pkg/fmt/print.go) + pcgs map[*ssa.Package]*packageCallGraph +} + +// fileAndOffset returns the file and offset for a given position. +func (a *analysis) fileAndOffset(pos token.Pos) (fi *fileInfo, offset int) { + posn := a.prog.Fset.Position(pos) + url := a.path2url[posn.Filename] + return a.result.fileInfo(url), posn.Offset +} + +// posURL returns the URL of the source extent [pos, pos+len). +func (a *analysis) posURL(pos token.Pos, len int) string { + if pos == token.NoPos { + return "" + } + posn := a.prog.Fset.Position(pos) + url := a.path2url[posn.Filename] + return fmt.Sprintf("%s?s=%d:%d#L%d", + url, posn.Offset, posn.Offset+len, posn.Line) +} + +// ---------------------------------------------------------------------- + +// Run runs program analysis and computes the resulting markup, +// populating *result in a thread-safe manner, first with type +// information then later with pointer analysis information if +// enabled by the pta flag. +// +func Run(pta bool, result *Result) { + conf := loader.Config{ + SourceImports: true, + AllowTypeErrors: true, + } + + errors := make(map[token.Pos][]string) + conf.TypeChecker.Error = func(e error) { + err := e.(types.Error) + errors[err.Pos] = append(errors[err.Pos], err.Msg) + } + + var roots, args []string // roots[i] ends with os.PathSeparator + + // Enumerate packages in $GOROOT. + root := filepath.Join(runtime.GOROOT(), "src", "pkg") + string(os.PathSeparator) + roots = append(roots, root) + args = allPackages(root) + log.Printf("GOROOT=%s: %s\n", root, args) + + // Enumerate packages in $GOPATH. + for i, dir := range filepath.SplitList(build.Default.GOPATH) { + root := filepath.Join(dir, "src") + string(os.PathSeparator) + roots = append(roots, root) + pkgs := allPackages(root) + log.Printf("GOPATH[%d]=%s: %s\n", i, root, pkgs) + args = append(args, pkgs...) + } + + // Uncomment to make startup quicker during debugging. + //args = []string{"code.google.com/p/go.tools/cmd/godoc"} + //args = []string{"fmt"} + + if _, err := conf.FromArgs(args, true); err != nil { + log.Print(err) // import error + return + } + + log.Print("Loading and type-checking packages...") + iprog, err := conf.Load() + if iprog != nil { + log.Printf("Loaded %d packages.", len(iprog.AllPackages)) + } + if err != nil { + // TODO(adonovan): loader: don't give up just because + // of one parse error. + log.Print(err) // parse error in some package + return + } + + // Create SSA-form program representation. + // Only the transitively error-free packages are used. + prog := ssa.Create(iprog, ssa.GlobalDebug) + + // Compute the set of main packages, including testmain. + allPackages := prog.AllPackages() + var mainPkgs []*ssa.Package + if testmain := prog.CreateTestMainPackage(allPackages...); testmain != nil { + mainPkgs = append(mainPkgs, testmain) + } + for _, pkg := range allPackages { + if pkg.Object.Name() == "main" && pkg.Func("main") != nil { + mainPkgs = append(mainPkgs, pkg) + } + } + log.Print("Main packages: ", mainPkgs) + + // Build SSA code for bodies of all functions in the whole program. + log.Print("Building SSA...") + prog.BuildAll() + log.Print("SSA building complete") + + a := analysis{ + result: result, + prog: prog, + pcgs: make(map[*ssa.Package]*packageCallGraph), + } + + // Build a mapping from openable filenames to godoc file URLs, + // i.e. "/src/pkg/" plus path relative to GOROOT/src/pkg or GOPATH[i]/src. + a.path2url = make(map[string]string) + for _, info := range iprog.AllPackages { + nextfile: + for _, f := range info.Files { + abs := iprog.Fset.File(f.Pos()).Name() + // Find the root to which this file belongs. + for _, root := range roots { + rel := strings.TrimPrefix(abs, root) + if len(rel) < len(abs) { + a.path2url[abs] = "/src/pkg/" + rel + continue nextfile + } + } + + log.Printf("Can't locate file %s (package %q) beneath any root", + abs, info.Pkg.Path()) + } + } + + // Add links for type-checker errors. + // TODO(adonovan): fix: these links can overlap with + // identifier markup, causing the renderer to emit some + // characters twice. + for pos, errs := range errors { + fi, offset := a.fileAndOffset(pos) + fi.addLink(errorLink{ + start: offset, + msg: strings.Join(errs, "\n"), + }) + } + + // ---------- type-based analyses ---------- + + // Compute the all-pairs IMPLEMENTS relation. + // Collect all named types, even local types + // (which can have methods via promotion) + // and the built-in "error". + errorType := types.Universe.Lookup("error").Type().(*types.Named) + a.allNamed = append(a.allNamed, errorType) + for _, info := range iprog.AllPackages { + for _, obj := range info.Defs { + if obj, ok := obj.(*types.TypeName); ok { + a.allNamed = append(a.allNamed, obj.Type().(*types.Named)) + } + } + } + log.Print("Computing implements...") + facts := computeImplements(&a.prog.MethodSets, a.allNamed) + + // Add the type-based analysis results. + log.Print("Extracting type info...") + + for _, info := range iprog.AllPackages { + a.doTypeInfo(info, facts) + } + + a.visitInstrs(pta) + + log.Print("Extracting type info complete") + + if pta { + a.pointer(mainPkgs) + } +} + +// visitInstrs visits all SSA instructions in the program. +func (a *analysis) visitInstrs(pta bool) { + log.Print("Visit instructions...") + for fn := range ssautil.AllFunctions(a.prog) { + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + // CALLEES (static) + // (Dynamic calls require pointer analysis.) + // + // We use the SSA representation to find the static callee, + // since in many cases it does better than the + // types.Info.{Refs,Selection} information. For example: + // + // defer func(){}() // static call to anon function + // f := func(){}; f() // static call to anon function + // f := fmt.Println; f() // static call to named function + // + // The downside is that we get no static callee information + // for packages that (transitively) contain errors. + if site, ok := instr.(ssa.CallInstruction); ok { + if callee := site.Common().StaticCallee(); callee != nil { + // TODO(adonovan): callgraph: elide wrappers. + // (Do static calls ever go to wrappers?) + if site.Common().Pos() != token.NoPos { + a.addCallees(site, []*ssa.Function{callee}) + } + } + } + + if !pta { + continue + } + + // CHANNEL PEERS + // Collect send/receive/close instructions in the whole ssa.Program. + for _, op := range chanOps(instr) { + a.ops = append(a.ops, op) + a.ptaConfig.AddQuery(op.ch) // add channel ssa.Value to PTA query + } + } + } + } + log.Print("Visit instructions complete") +} + +// pointer runs the pointer analysis. +func (a *analysis) pointer(mainPkgs []*ssa.Package) { + // Run the pointer analysis and build the complete callgraph. + a.ptaConfig.Mains = mainPkgs + a.ptaConfig.BuildCallGraph = true + a.ptaConfig.Reflection = false // (for now) + + log.Print("Running pointer analysis...") + ptares, err := pointer.Analyze(&a.ptaConfig) + if err != nil { + // If this happens, it indicates a bug. + log.Print("Pointer analysis failed: %s", err) + return + } + log.Print("Pointer analysis complete.") + + // Add the results of pointer analysis. + + log.Print("Computing channel peers...") + a.doChannelPeers(ptares.Queries) + log.Print("Computing dynamic call graph edges...") + a.doCallgraph(ptares.CallGraph) + + log.Print("Done") +} + +type linksByStart []Link + +func (a linksByStart) Less(i, j int) bool { return a[i].Start() < a[j].Start() } +func (a linksByStart) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a linksByStart) Len() int { return len(a) } + +// allPackages returns a new sorted slice of all packages beneath the +// specified package root directory, e.g. $GOROOT/src/pkg or $GOPATH/src. +// Derived from from go/ssa/stdlib_test.go +// root must end with os.PathSeparator. +func allPackages(root string) []string { + var pkgs []string + filepath.Walk(root, func(path string, info os.FileInfo, err error) error { + if info == nil { + return nil // non-existent root directory? + } + if !info.IsDir() { + return nil // not a directory + } + // Prune the search if we encounter any of these names: + base := filepath.Base(path) + if base == "testdata" || strings.HasPrefix(base, ".") { + return filepath.SkipDir + } + pkg := filepath.ToSlash(strings.TrimPrefix(path, root)) + switch pkg { + case "builtin": + return filepath.SkipDir + case "": + return nil // ignore root of tree + } + pkgs = append(pkgs, pkg) + return nil + }) + return pkgs +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/callgraph.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/callgraph.go new file mode 100644 index 00000000..ad893922 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/callgraph.go @@ -0,0 +1,351 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package analysis + +// This file computes the CALLERS and CALLEES relations from the call +// graph. CALLERS/CALLEES information is displayed in the lower pane +// when a "func" token or ast.CallExpr.Lparen is clicked, respectively. + +import ( + "fmt" + "go/ast" + "go/token" + "log" + "math/big" + "sort" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +// doCallgraph computes the CALLEES and CALLERS relations. +func (a *analysis) doCallgraph(cg *callgraph.Graph) { + log.Print("Deleting synthetic nodes...") + // TODO(adonovan): opt: DeleteSyntheticNodes is asymptotically + // inefficient and can be (unpredictably) slow. + cg.DeleteSyntheticNodes() + log.Print("Synthetic nodes deleted") + + // Populate nodes of package call graphs (PCGs). + for _, n := range cg.Nodes { + a.pcgAddNode(n.Func) + } + // Within each PCG, sort funcs by name. + for _, pcg := range a.pcgs { + pcg.sortNodes() + } + + calledFuncs := make(map[ssa.CallInstruction]map[*ssa.Function]bool) + callingSites := make(map[*ssa.Function]map[ssa.CallInstruction]bool) + for _, n := range cg.Nodes { + for _, e := range n.Out { + if e.Site == nil { + continue // a call from the node + } + + // Add (site pos, callee) to calledFuncs. + // (Dynamic calls only.) + callee := e.Callee.Func + + a.pcgAddEdge(n.Func, callee) + + if callee.Synthetic != "" { + continue // call of a package initializer + } + + if e.Site.Common().StaticCallee() == nil { + // dynamic call + // (CALLEES information for static calls + // is computed using SSA information.) + lparen := e.Site.Common().Pos() + if lparen != token.NoPos { + fns := calledFuncs[e.Site] + if fns == nil { + fns = make(map[*ssa.Function]bool) + calledFuncs[e.Site] = fns + } + fns[callee] = true + } + } + + // Add (callee, site) to callingSites. + fns := callingSites[callee] + if fns == nil { + fns = make(map[ssa.CallInstruction]bool) + callingSites[callee] = fns + } + fns[e.Site] = true + } + } + + // CALLEES. + log.Print("Callees...") + for site, fns := range calledFuncs { + var funcs funcsByPos + for fn := range fns { + funcs = append(funcs, fn) + } + sort.Sort(funcs) + + a.addCallees(site, funcs) + } + + // CALLERS + log.Print("Callers...") + for callee, sites := range callingSites { + pos := funcToken(callee) + if pos == token.NoPos { + log.Print("CALLERS: skipping %s: no pos", callee) + continue + } + + var this *types.Package // for relativizing names + if callee.Pkg != nil { + this = callee.Pkg.Object + } + + // Compute sites grouped by parent, with text and URLs. + sitesByParent := make(map[*ssa.Function]sitesByPos) + for site := range sites { + fn := site.Parent() + sitesByParent[fn] = append(sitesByParent[fn], site) + } + var funcs funcsByPos + for fn := range sitesByParent { + funcs = append(funcs, fn) + } + sort.Sort(funcs) + + v := callersJSON{ + Callee: callee.String(), + Callers: []callerJSON{}, // (JS wants non-nil) + } + for _, fn := range funcs { + caller := callerJSON{ + Func: prettyFunc(this, fn), + Sites: []anchorJSON{}, // (JS wants non-nil) + } + sites := sitesByParent[fn] + sort.Sort(sites) + for _, site := range sites { + pos := site.Common().Pos() + if pos != token.NoPos { + caller.Sites = append(caller.Sites, anchorJSON{ + Text: fmt.Sprintf("%d", a.prog.Fset.Position(pos).Line), + Href: a.posURL(pos, len("(")), + }) + } + } + v.Callers = append(v.Callers, caller) + } + + fi, offset := a.fileAndOffset(pos) + fi.addLink(aLink{ + start: offset, + end: offset + len("func"), + title: fmt.Sprintf("%d callers", len(sites)), + onclick: fmt.Sprintf("onClickCallers(%d)", fi.addData(v)), + }) + } + + // PACKAGE CALLGRAPH + log.Print("Package call graph...") + for pkg, pcg := range a.pcgs { + // Maps (*ssa.Function).RelString() to index in JSON CALLGRAPH array. + index := make(map[string]int) + + // Treat exported functions (and exported methods of + // exported named types) as roots even if they aren't + // actually called from outside the package. + for i, n := range pcg.nodes { + if i == 0 || n.fn.Object() == nil || !n.fn.Object().Exported() { + continue + } + recv := n.fn.Signature.Recv() + if recv == nil || deref(recv.Type()).(*types.Named).Obj().Exported() { + roots := &pcg.nodes[0].edges + roots.SetBit(roots, i, 1) + } + index[n.fn.RelString(pkg.Object)] = i + } + + json := a.pcgJSON(pcg) + + // TODO(adonovan): pkg.Path() is not unique! + // It is possible to declare a non-test package called x_test. + a.result.pkgInfo(pkg.Object.Path()).setCallGraph(json, index) + } +} + +// addCallees adds client data and links for the facts that site calls fns. +func (a *analysis) addCallees(site ssa.CallInstruction, fns []*ssa.Function) { + v := calleesJSON{ + Descr: site.Common().Description(), + Callees: []anchorJSON{}, // (JS wants non-nil) + } + var this *types.Package // for relativizing names + if p := site.Parent().Package(); p != nil { + this = p.Object + } + + for _, fn := range fns { + v.Callees = append(v.Callees, anchorJSON{ + Text: prettyFunc(this, fn), + Href: a.posURL(funcToken(fn), len("func")), + }) + } + + fi, offset := a.fileAndOffset(site.Common().Pos()) + fi.addLink(aLink{ + start: offset, + end: offset + len("("), + title: fmt.Sprintf("%d callees", len(v.Callees)), + onclick: fmt.Sprintf("onClickCallees(%d)", fi.addData(v)), + }) +} + +// -- utilities -------------------------------------------------------- + +// stable order within packages but undefined across packages. +type funcsByPos []*ssa.Function + +func (a funcsByPos) Less(i, j int) bool { return a[i].Pos() < a[j].Pos() } +func (a funcsByPos) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a funcsByPos) Len() int { return len(a) } + +type sitesByPos []ssa.CallInstruction + +func (a sitesByPos) Less(i, j int) bool { return a[i].Common().Pos() < a[j].Common().Pos() } +func (a sitesByPos) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a sitesByPos) Len() int { return len(a) } + +func funcToken(fn *ssa.Function) token.Pos { + switch syntax := fn.Syntax().(type) { + case *ast.FuncLit: + return syntax.Type.Func + case *ast.FuncDecl: + return syntax.Type.Func + } + return token.NoPos +} + +// prettyFunc pretty-prints fn for the user interface. +// TODO(adonovan): return HTML so we have more markup freedom. +func prettyFunc(this *types.Package, fn *ssa.Function) string { + if fn.Enclosing != nil { + return fmt.Sprintf("%s in %s", + types.TypeString(this, fn.Signature), + prettyFunc(this, fn.Enclosing)) + } + if fn.Synthetic != "" && fn.Name() == "init" { + // (This is the actual initializer, not a declared 'func init'). + if fn.Pkg.Object == this { + return "package initializer" + } + return fmt.Sprintf("%q package initializer", fn.Pkg.Object.Path()) + } + return fn.RelString(this) +} + +// -- intra-package callgraph ------------------------------------------ + +// pcgNode represents a node in the package call graph (PCG). +type pcgNode struct { + fn *ssa.Function + pretty string // cache of prettyFunc(fn) + edges big.Int // set of callee func indices +} + +// A packageCallGraph represents the intra-package edges of the global call graph. +// The zeroth node indicates "all external functions". +type packageCallGraph struct { + nodeIndex map[*ssa.Function]int // maps func to node index (a small int) + nodes []*pcgNode // maps node index to node +} + +// sortNodes populates pcg.nodes in name order and updates the nodeIndex. +func (pcg *packageCallGraph) sortNodes() { + nodes := make([]*pcgNode, 0, len(pcg.nodeIndex)) + nodes = append(nodes, &pcgNode{fn: nil, pretty: ""}) + for fn := range pcg.nodeIndex { + nodes = append(nodes, &pcgNode{ + fn: fn, + pretty: prettyFunc(fn.Pkg.Object, fn), + }) + } + sort.Sort(pcgNodesByPretty(nodes[1:])) + for i, n := range nodes { + pcg.nodeIndex[n.fn] = i + } + pcg.nodes = nodes +} + +func (pcg *packageCallGraph) addEdge(caller, callee *ssa.Function) { + var callerIndex int + if caller.Pkg == callee.Pkg { + // intra-package edge + callerIndex = pcg.nodeIndex[caller] + if callerIndex < 1 { + panic(caller) + } + } + edges := &pcg.nodes[callerIndex].edges + edges.SetBit(edges, pcg.nodeIndex[callee], 1) +} + +func (a *analysis) pcgAddNode(fn *ssa.Function) { + if fn.Pkg == nil { + return + } + pcg, ok := a.pcgs[fn.Pkg] + if !ok { + pcg = &packageCallGraph{nodeIndex: make(map[*ssa.Function]int)} + a.pcgs[fn.Pkg] = pcg + } + pcg.nodeIndex[fn] = -1 +} + +func (a *analysis) pcgAddEdge(caller, callee *ssa.Function) { + if callee.Pkg != nil { + a.pcgs[callee.Pkg].addEdge(caller, callee) + } +} + +// pcgJSON returns a new slice of callgraph JSON values. +func (a *analysis) pcgJSON(pcg *packageCallGraph) []*PCGNodeJSON { + var nodes []*PCGNodeJSON + for _, n := range pcg.nodes { + + // TODO(adonovan): why is there no good way to iterate + // over the set bits of a big.Int? + var callees []int + nbits := n.edges.BitLen() + for j := 0; j < nbits; j++ { + if n.edges.Bit(j) == 1 { + callees = append(callees, j) + } + } + + var pos token.Pos + if n.fn != nil { + pos = funcToken(n.fn) + } + nodes = append(nodes, &PCGNodeJSON{ + Func: anchorJSON{ + Text: n.pretty, + Href: a.posURL(pos, len("func")), + }, + Callees: callees, + }) + } + return nodes +} + +type pcgNodesByPretty []*pcgNode + +func (a pcgNodesByPretty) Less(i, j int) bool { return a[i].pretty < a[j].pretty } +func (a pcgNodesByPretty) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a pcgNodesByPretty) Len() int { return len(a) } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/implements.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/implements.go new file mode 100644 index 00000000..c8067197 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/implements.go @@ -0,0 +1,194 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package analysis + +// This file computes the "implements" relation over all pairs of +// named types in the program. (The mark-up is done by typeinfo.go.) + +// TODO(adonovan): do we want to report implements(C, I) where C and I +// belong to different packages and at least one is not exported? + +import ( + "sort" + + "code.google.com/p/go.tools/go/types" +) + +// computeImplements computes the "implements" relation over all pairs +// of named types in allNamed. +func computeImplements(cache *types.MethodSetCache, allNamed []*types.Named) map[*types.Named]implementsFacts { + // Information about a single type's method set. + type msetInfo struct { + typ types.Type + mset *types.MethodSet + mask1, mask2 uint64 + } + + initMsetInfo := func(info *msetInfo, typ types.Type) { + info.typ = typ + info.mset = cache.MethodSet(typ) + for i := 0; i < info.mset.Len(); i++ { + name := info.mset.At(i).Obj().Name() + info.mask1 |= 1 << methodBit(name[0]) + info.mask2 |= 1 << methodBit(name[len(name)-1]) + } + } + + // satisfies(T, U) reports whether type T satisfies type U. + // U must be an interface. + // + // Since there are thousands of types (and thus millions of + // pairs of types) and types.Assignable(T, U) is relatively + // expensive, we compute assignability directly from the + // method sets. (At least one of T and U must be an + // interface.) + // + // We use a trick (thanks gri!) related to a Bloom filter to + // quickly reject most tests, which are false. For each + // method set, we precompute a mask, a set of bits, one per + // distinct initial byte of each method name. Thus the mask + // for io.ReadWriter would be {'R','W'}. AssignableTo(T, U) + // cannot be true unless mask(T)&mask(U)==mask(U). + // + // As with a Bloom filter, we can improve precision by testing + // additional hashes, e.g. using the last letter of each + // method name, so long as the subset mask property holds. + // + // When analyzing the standard library, there are about 1e6 + // calls to satisfies(), of which 0.6% return true. With a + // 1-hash filter, 95% of calls avoid the expensive check; with + // a 2-hash filter, this grows to 98.2%. + satisfies := func(T, U *msetInfo) bool { + return T.mask1&U.mask1 == U.mask1 && + T.mask2&U.mask2 == U.mask2 && + containsAllIdsOf(T.mset, U.mset) + } + + // Information about a named type N, and perhaps also *N. + type namedInfo struct { + isInterface bool + base msetInfo // N + ptr msetInfo // *N, iff N !isInterface + } + + var infos []namedInfo + + // Precompute the method sets and their masks. + for _, N := range allNamed { + var info namedInfo + initMsetInfo(&info.base, N) + _, info.isInterface = N.Underlying().(*types.Interface) + if !info.isInterface { + initMsetInfo(&info.ptr, types.NewPointer(N)) + } + + if info.base.mask1|info.ptr.mask1 == 0 { + continue // neither N nor *N has methods + } + + infos = append(infos, info) + } + + facts := make(map[*types.Named]implementsFacts) + + // Test all pairs of distinct named types (T, U). + // TODO(adonovan): opt: compute (U, T) at the same time. + for t := range infos { + T := &infos[t] + var to, from, fromPtr []types.Type + for u := range infos { + if t == u { + continue + } + U := &infos[u] + switch { + case T.isInterface && U.isInterface: + if satisfies(&U.base, &T.base) { + to = append(to, U.base.typ) + } + if satisfies(&T.base, &U.base) { + from = append(from, U.base.typ) + } + case T.isInterface: // U concrete + if satisfies(&U.base, &T.base) { + to = append(to, U.base.typ) + } else if satisfies(&U.ptr, &T.base) { + to = append(to, U.ptr.typ) + } + case U.isInterface: // T concrete + if satisfies(&T.base, &U.base) { + from = append(from, U.base.typ) + } else if satisfies(&T.ptr, &U.base) { + fromPtr = append(fromPtr, U.base.typ) + } + } + } + + // Sort types (arbitrarily) to avoid nondeterminism. + sort.Sort(typesByString(to)) + sort.Sort(typesByString(from)) + sort.Sort(typesByString(fromPtr)) + + facts[T.base.typ.(*types.Named)] = implementsFacts{to, from, fromPtr} + } + + return facts +} + +type implementsFacts struct { + to []types.Type // named or ptr-to-named types assignable to interface T + from []types.Type // named interfaces assignable from T + fromPtr []types.Type // named interfaces assignable only from *T +} + +type typesByString []types.Type + +func (p typesByString) Len() int { return len(p) } +func (p typesByString) Less(i, j int) bool { return p[i].String() < p[j].String() } +func (p typesByString) Swap(i, j int) { p[i], p[j] = p[j], p[i] } + +// methodBit returns the index of x in [a-zA-Z], or 52 if not found. +func methodBit(x byte) uint64 { + switch { + case 'a' <= x && x <= 'z': + return uint64(x - 'a') + case 'A' <= x && x <= 'Z': + return uint64(26 + x - 'A') + } + return 52 // all other bytes +} + +// containsAllIdsOf reports whether the method identifiers of T are a +// superset of those in U. If U belongs to an interface type, the +// result is equal to types.Assignable(T, U), but is cheaper to compute. +// +// TODO(gri): make this a method of *types.MethodSet. +// +func containsAllIdsOf(T, U *types.MethodSet) bool { + t, tlen := 0, T.Len() + u, ulen := 0, U.Len() + for t < tlen && u < ulen { + tMeth := T.At(t).Obj() + uMeth := U.At(u).Obj() + tId := tMeth.Id() + uId := uMeth.Id() + if tId > uId { + // U has a method T lacks: fail. + return false + } + if tId < uId { + // T has a method U lacks: ignore it. + t++ + continue + } + // U and T both have a method of this Id. Check types. + if !types.Identical(tMeth.Type(), uMeth.Type()) { + return false // type mismatch + } + u++ + t++ + } + return u == ulen +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/json.go new file mode 100644 index 00000000..f8976187 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/json.go @@ -0,0 +1,69 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package analysis + +// This file defines types used by client-side JavaScript. + +type anchorJSON struct { + Text string // HTML + Href string // URL +} + +type commOpJSON struct { + Op anchorJSON + Fn string +} + +// JavaScript's onClickComm() expects a commJSON. +type commJSON struct { + Ops []commOpJSON +} + +// Indicates one of these forms of fact about a type T: +// T "is implemented by type " (ByKind != "", e.g. "array") +// T "implements " (ByKind == "") +type implFactJSON struct { + ByKind string `json:",omitempty"` + Other anchorJSON +} + +// Implements facts are grouped by form, for ease of reading. +type implGroupJSON struct { + Descr string + Facts []implFactJSON +} + +// JavaScript's onClickIdent() expects a TypeInfoJSON. +type TypeInfoJSON struct { + Name string // type name + Size, Align int64 + Methods []anchorJSON + ImplGroups []implGroupJSON +} + +// JavaScript's onClickCallees() expects a calleesJSON. +type calleesJSON struct { + Descr string + Callees []anchorJSON // markup for called function +} + +type callerJSON struct { + Func string + Sites []anchorJSON +} + +// JavaScript's onClickCallers() expects a callersJSON. +type callersJSON struct { + Callee string + Callers []callerJSON +} + +// JavaScript's cgAddChild requires a global array of PCGNodeJSON +// called CALLGRAPH, representing the intra-package call graph. +// The first element is special and represents "all external callers". +type PCGNodeJSON struct { + Func anchorJSON + Callees []int // indices within CALLGRAPH of nodes called by this one +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/peers.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/peers.go new file mode 100644 index 00000000..aaf1896d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/peers.go @@ -0,0 +1,154 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package analysis + +// This file computes the channel "peers" relation over all pairs of +// channel operations in the program. The peers are displayed in the +// lower pane when a channel operation (make, <-, close) is clicked. + +// TODO(adonovan): handle calls to reflect.{Select,Recv,Send,Close} too, +// then enable reflection in PTA. + +import ( + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/pointer" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" +) + +func (a *analysis) doChannelPeers(ptsets map[ssa.Value]pointer.Pointer) { + addSendRecv := func(j *commJSON, op chanOp) { + j.Ops = append(j.Ops, commOpJSON{ + Op: anchorJSON{ + Text: op.mode, + Href: a.posURL(op.pos, op.len), + }, + Fn: prettyFunc(nil, op.fn), + }) + } + + // Build an undirected bipartite multigraph (binary relation) + // of MakeChan ops and send/recv/close ops. + // + // TODO(adonovan): opt: use channel element types to partition + // the O(n^2) problem into subproblems. + aliasedOps := make(map[*ssa.MakeChan][]chanOp) + opToMakes := make(map[chanOp][]*ssa.MakeChan) + for _, op := range a.ops { + // Combine the PT sets from all contexts. + var makes []*ssa.MakeChan // aliased ops + ptr, ok := ptsets[op.ch] + if !ok { + continue // e.g. channel op in dead code + } + for _, label := range ptr.PointsTo().Labels() { + makechan, ok := label.Value().(*ssa.MakeChan) + if !ok { + continue // skip intrinsically-created channels for now + } + if makechan.Pos() == token.NoPos { + continue // not possible? + } + makes = append(makes, makechan) + aliasedOps[makechan] = append(aliasedOps[makechan], op) + } + opToMakes[op] = makes + } + + // Now that complete relation is built, build links for ops. + for _, op := range a.ops { + v := commJSON{ + Ops: []commOpJSON{}, // (JS wants non-nil) + } + ops := make(map[chanOp]bool) + for _, makechan := range opToMakes[op] { + v.Ops = append(v.Ops, commOpJSON{ + Op: anchorJSON{ + Text: "made", + Href: a.posURL(makechan.Pos()-token.Pos(len("make")), + len("make")), + }, + Fn: makechan.Parent().RelString(op.fn.Package().Object), + }) + for _, op := range aliasedOps[makechan] { + ops[op] = true + } + } + for op := range ops { + addSendRecv(&v, op) + } + + // Add links for each aliased op. + fi, offset := a.fileAndOffset(op.pos) + fi.addLink(aLink{ + start: offset, + end: offset + op.len, + title: "show channel ops", + onclick: fmt.Sprintf("onClickComm(%d)", fi.addData(v)), + }) + } + // Add links for makechan ops themselves. + for makechan, ops := range aliasedOps { + v := commJSON{ + Ops: []commOpJSON{}, // (JS wants non-nil) + } + for _, op := range ops { + addSendRecv(&v, op) + } + + fi, offset := a.fileAndOffset(makechan.Pos()) + fi.addLink(aLink{ + start: offset - len("make"), + end: offset, + title: "show channel ops", + onclick: fmt.Sprintf("onClickComm(%d)", fi.addData(v)), + }) + } +} + +// -- utilities -------------------------------------------------------- + +// chanOp abstracts an ssa.Send, ssa.Unop(ARROW), close(), or a SelectState. +// Derived from oracle/peers.go. +type chanOp struct { + ch ssa.Value + mode string // sent|received|closed + pos token.Pos + len int + fn *ssa.Function +} + +// chanOps returns a slice of all the channel operations in the instruction. +// Derived from oracle/peers.go. +func chanOps(instr ssa.Instruction) []chanOp { + fn := instr.Parent() + var ops []chanOp + switch instr := instr.(type) { + case *ssa.UnOp: + if instr.Op == token.ARROW { + // TODO(adonovan): don't assume <-ch; could be 'range ch'. + ops = append(ops, chanOp{instr.X, "received", instr.Pos(), len("<-"), fn}) + } + case *ssa.Send: + ops = append(ops, chanOp{instr.Chan, "sent", instr.Pos(), len("<-"), fn}) + case *ssa.Select: + for _, st := range instr.States { + mode := "received" + if st.Dir == types.SendOnly { + mode = "sent" + } + ops = append(ops, chanOp{st.Chan, mode, st.Pos, len("<-"), fn}) + } + case ssa.CallInstruction: + call := instr.Common() + if blt, ok := call.Value.(*ssa.Builtin); ok && blt.Name() == "close" { + pos := instr.Common().Pos() + ops = append(ops, chanOp{call.Args[0], "closed", pos - token.Pos(len("close")), len("close("), fn}) + } + } + return ops +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/typeinfo.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/typeinfo.go new file mode 100644 index 00000000..88b987d3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/analysis/typeinfo.go @@ -0,0 +1,238 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package analysis + +// This file computes the markup for information from go/types: +// IMPORTS, identifier RESOLUTION, METHOD SETS, size/alignment, and +// the IMPLEMENTS relation. +// +// IMPORTS links connect import specs to the documentation for the +// imported package. +// +// RESOLUTION links referring identifiers to their defining +// identifier, and adds tooltips for kind and type. +// +// METHOD SETS, size/alignment, and the IMPLEMENTS relation are +// displayed in the lower pane when a type's defining identifier is +// clicked. + +import ( + "fmt" + "reflect" + "strconv" + "strings" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" +) + +// TODO(adonovan): audit to make sure it's safe on ill-typed packages. + +// TODO(adonovan): use same Sizes as loader.Config. +var sizes = types.StdSizes{8, 8} + +func (a *analysis) doTypeInfo(info *loader.PackageInfo, implements map[*types.Named]implementsFacts) { + // We must not assume the corresponding SSA packages were + // created (i.e. were transitively error-free). + + // IMPORTS + for _, f := range info.Files { + // Package decl. + fi, offset := a.fileAndOffset(f.Name.Pos()) + fi.addLink(aLink{ + start: offset, + end: offset + len(f.Name.Name), + title: "Package docs for " + info.Pkg.Path(), + // TODO(adonovan): fix: we're putting the untrusted Path() + // into a trusted field. What's the appropriate sanitizer? + href: "/pkg/" + info.Pkg.Path(), + }) + + // Import specs. + for _, imp := range f.Imports { + // Remove quotes. + L := int(imp.End()-imp.Path.Pos()) - len(`""`) + path, _ := strconv.Unquote(imp.Path.Value) + fi, offset := a.fileAndOffset(imp.Path.Pos()) + fi.addLink(aLink{ + start: offset + 1, + end: offset + 1 + L, + title: "Package docs for " + path, + // TODO(adonovan): fix: we're putting the untrusted path + // into a trusted field. What's the appropriate sanitizer? + href: "/pkg/" + path, + }) + } + } + + // RESOLUTION + for id, obj := range info.Uses { + // Position of the object definition. + pos := obj.Pos() + Len := len(obj.Name()) + + // Correct the position for non-renaming import specs. + // import "sync/atomic" + // ^^^^^^^^^^^ + if obj, ok := obj.(*types.PkgName); ok && id.Name == obj.Pkg().Name() { + // Assume this is a non-renaming import. + // NB: not true for degenerate renamings: `import foo "foo"`. + pos++ + Len = len(obj.Pkg().Path()) + } + + if obj.Pkg() == nil { + continue // don't mark up built-ins. + } + + fi, offset := a.fileAndOffset(id.NamePos) + fi.addLink(aLink{ + start: offset, + end: offset + len(id.Name), + title: types.ObjectString(info.Pkg, obj), + href: a.posURL(pos, Len), + }) + } + + // IMPLEMENTS & METHOD SETS + for _, obj := range info.Defs { + if obj, ok := obj.(*types.TypeName); ok { + a.namedType(obj, implements) + } + } +} + +func (a *analysis) namedType(obj *types.TypeName, implements map[*types.Named]implementsFacts) { + this := obj.Pkg() + T := obj.Type().(*types.Named) + v := &TypeInfoJSON{ + Name: obj.Name(), + Size: sizes.Sizeof(T), + Align: sizes.Alignof(T), + Methods: []anchorJSON{}, // (JS wants non-nil) + } + + // addFact adds the fact "is implemented by T" (by) or + // "implements T" (!by) to group. + addFact := func(group *implGroupJSON, T types.Type, by bool) { + Tobj := deref(T).(*types.Named).Obj() + var byKind string + if by { + // Show underlying kind of implementing type, + // e.g. "slice", "array", "struct". + s := reflect.TypeOf(T.Underlying()).String() + byKind = strings.ToLower(strings.TrimPrefix(s, "*types.")) + } + group.Facts = append(group.Facts, implFactJSON{ + ByKind: byKind, + Other: anchorJSON{ + Href: a.posURL(Tobj.Pos(), len(Tobj.Name())), + Text: types.TypeString(this, T), + }, + }) + } + + // IMPLEMENTS + if r, ok := implements[T]; ok { + if isInterface(T) { + // "T is implemented by " ... + // "T is implemented by "... + // "T implements "... + group := implGroupJSON{ + Descr: types.TypeString(this, T), + } + // Show concrete types first; use two passes. + for _, sub := range r.to { + if !isInterface(sub) { + addFact(&group, sub, true) + } + } + for _, sub := range r.to { + if isInterface(sub) { + addFact(&group, sub, true) + } + } + for _, super := range r.from { + addFact(&group, super, false) + } + v.ImplGroups = append(v.ImplGroups, group) + } else { + // T is concrete. + if r.from != nil { + // "T implements "... + group := implGroupJSON{ + Descr: types.TypeString(this, T), + } + for _, super := range r.from { + addFact(&group, super, false) + } + v.ImplGroups = append(v.ImplGroups, group) + } + if r.fromPtr != nil { + // "*C implements "... + group := implGroupJSON{ + Descr: "*" + types.TypeString(this, T), + } + for _, psuper := range r.fromPtr { + addFact(&group, psuper, false) + } + v.ImplGroups = append(v.ImplGroups, group) + } + } + } + + // METHOD SETS + for _, sel := range typeutil.IntuitiveMethodSet(T, &a.prog.MethodSets) { + meth := sel.Obj().(*types.Func) + pos := meth.Pos() // may be 0 for error.Error + v.Methods = append(v.Methods, anchorJSON{ + Href: a.posURL(pos, len(meth.Name())), + Text: types.SelectionString(this, sel), + }) + } + + // Since there can be many specs per decl, we + // can't attach the link to the keyword 'type' + // (as we do with 'func'); we use the Ident. + fi, offset := a.fileAndOffset(obj.Pos()) + fi.addLink(aLink{ + start: offset, + end: offset + len(obj.Name()), + title: fmt.Sprintf("type info for %s", obj.Name()), + onclick: fmt.Sprintf("onClickTypeInfo(%d)", fi.addData(v)), + }) + + // Add info for exported package-level types to the package info. + if obj.Exported() && isPackageLevel(obj) { + // TODO(adonovan): this.Path() is not unique! + // It is possible to declare a non-test package called x_test. + a.result.pkgInfo(this.Path()).addType(v) + } +} + +// -- utilities -------------------------------------------------------- + +func isInterface(T types.Type) bool { + _, isI := T.Underlying().(*types.Interface) + return isI +} + +// deref returns a pointer's element type; otherwise it returns typ. +func deref(typ types.Type) types.Type { + if p, ok := typ.Underlying().(*types.Pointer); ok { + return p.Elem() + } + return typ +} + +// isPackageLevel reports whether obj is a package-level object. +func isPackageLevel(obj types.Object) bool { + // TODO(adonovan): fix go/types bug: + // obj.Parent().Parent() == obj.Pkg().Scope() + // doesn't work because obj.Parent() gets mutated during + // dot-imports. + return obj.Pkg().Scope().Lookup(obj.Name()) == obj +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/cmdline.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/cmdline.go new file mode 100644 index 00000000..8a5a3212 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/cmdline.go @@ -0,0 +1,206 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. +package godoc + +import ( + "fmt" + "go/ast" + "go/build" + "io" + "log" + "os" + pathpkg "path" + "path/filepath" + "regexp" + "strings" + + "code.google.com/p/go.tools/godoc/vfs" +) + +const ( + target = "/target" + cmdPrefix = "cmd/" + srcPrefix = "src/" + toolsPath = "code.google.com/p/go.tools/cmd/" +) + +// CommandLine returns godoc results to w. +// Note that it may add a /target path to fs. +func CommandLine(w io.Writer, fs vfs.NameSpace, pres *Presentation, args []string) error { + path := args[0] + srcMode := pres.SrcMode + cmdMode := strings.HasPrefix(path, cmdPrefix) + if strings.HasPrefix(path, srcPrefix) { + path = strings.TrimPrefix(path, srcPrefix) + srcMode = true + } + var abspath, relpath string + if cmdMode { + path = strings.TrimPrefix(path, cmdPrefix) + } else { + abspath, relpath = paths(fs, pres, path) + } + + var mode PageInfoMode + if relpath == builtinPkgPath { + // the fake built-in package contains unexported identifiers + mode = NoFiltering | NoTypeAssoc + } + if srcMode { + // only filter exports if we don't have explicit command-line filter arguments + if len(args) > 1 { + mode |= NoFiltering + } + mode |= ShowSource + } + + // First, try as package unless forced as command. + var info *PageInfo + if !cmdMode { + info = pres.GetPkgPageInfo(abspath, relpath, mode) + } + + // Second, try as command (if the path is not absolute). + var cinfo *PageInfo + if !filepath.IsAbs(path) { + // First try go.tools/cmd. + abspath = pathpkg.Join(pres.PkgFSRoot(), toolsPath+path) + cinfo = pres.GetCmdPageInfo(abspath, relpath, mode) + if cinfo.IsEmpty() { + // Then try $GOROOT/cmd. + abspath = pathpkg.Join(pres.CmdFSRoot(), path) + cinfo = pres.GetCmdPageInfo(abspath, relpath, mode) + } + } + + // determine what to use + if info == nil || info.IsEmpty() { + if cinfo != nil && !cinfo.IsEmpty() { + // only cinfo exists - switch to cinfo + info = cinfo + } + } else if cinfo != nil && !cinfo.IsEmpty() { + // both info and cinfo exist - use cinfo if info + // contains only subdirectory information + if info.PAst == nil && info.PDoc == nil { + info = cinfo + } else if relpath != target { + // The above check handles the case where an operating system path + // is provided (see documentation for paths below). In that case, + // relpath is set to "/target" (in anticipation of accessing packages there), + // and is therefore not expected to match a command. + fmt.Fprintf(w, "use 'godoc %s%s' for documentation on the %s command \n\n", cmdPrefix, relpath, relpath) + } + } + + if info == nil { + return fmt.Errorf("%s: no such directory or package", args[0]) + } + if info.Err != nil { + return info.Err + } + + if info.PDoc != nil && info.PDoc.ImportPath == target { + // Replace virtual /target with actual argument from command line. + info.PDoc.ImportPath = args[0] + } + + // If we have more than one argument, use the remaining arguments for filtering. + if len(args) > 1 { + info.IsFiltered = true + filterInfo(args[1:], info) + } + + packageText := pres.PackageText + if pres.HTMLMode { + packageText = pres.PackageHTML + } + if err := packageText.Execute(w, info); err != nil { + return err + } + return nil +} + +// paths determines the paths to use. +// +// If we are passed an operating system path like . or ./foo or /foo/bar or c:\mysrc, +// we need to map that path somewhere in the fs name space so that routines +// like getPageInfo will see it. We use the arbitrarily-chosen virtual path "/target" +// for this. That is, if we get passed a directory like the above, we map that +// directory so that getPageInfo sees it as /target. +// Returns the absolute and relative paths. +func paths(fs vfs.NameSpace, pres *Presentation, path string) (string, string) { + if filepath.IsAbs(path) { + fs.Bind(target, vfs.OS(path), "/", vfs.BindReplace) + return target, target + } + if build.IsLocalImport(path) { + cwd, _ := os.Getwd() // ignore errors + path = filepath.Join(cwd, path) + fs.Bind(target, vfs.OS(path), "/", vfs.BindReplace) + return target, target + } + if bp, _ := build.Import(path, "", build.FindOnly); bp.Dir != "" && bp.ImportPath != "" { + fs.Bind(target, vfs.OS(bp.Dir), "/", vfs.BindReplace) + return target, bp.ImportPath + } + return pathpkg.Join(pres.PkgFSRoot(), path), path +} + +// filterInfo updates info to include only the nodes that match the given +// filter args. +func filterInfo(args []string, info *PageInfo) { + rx, err := makeRx(args) + if err != nil { + log.Fatalf("illegal regular expression from %v: %v", args, err) + } + + filter := func(s string) bool { return rx.MatchString(s) } + switch { + case info.PAst != nil: + newPAst := map[string]*ast.File{} + for name, a := range info.PAst { + cmap := ast.NewCommentMap(info.FSet, a, a.Comments) + a.Comments = []*ast.CommentGroup{} // remove all comments. + ast.FilterFile(a, filter) + if len(a.Decls) > 0 { + newPAst[name] = a + } + for _, d := range a.Decls { + // add back the comments associated with d only + comments := cmap.Filter(d).Comments() + a.Comments = append(a.Comments, comments...) + } + } + info.PAst = newPAst // add only matching files. + case info.PDoc != nil: + info.PDoc.Filter(filter) + } +} + +// Does s look like a regular expression? +func isRegexp(s string) bool { + return strings.IndexAny(s, ".(|)*+?^$[]") >= 0 +} + +// Make a regular expression of the form +// names[0]|names[1]|...names[len(names)-1]. +// Returns an error if the regular expression is illegal. +func makeRx(names []string) (*regexp.Regexp, error) { + if len(names) == 0 { + return nil, fmt.Errorf("no expression provided") + } + s := "" + for i, name := range names { + if i > 0 { + s += "|" + } + if isRegexp(name) { + s += name + } else { + s += "^" + name + "$" // must match exactly + } + } + return regexp.Compile(s) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/cmdline_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/cmdline_test.go new file mode 100644 index 00000000..0211d0ed --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/cmdline_test.go @@ -0,0 +1,279 @@ +package godoc + +import ( + "bytes" + "go/build" + "io/ioutil" + "os" + "path/filepath" + "reflect" + "regexp" + "runtime" + "testing" + "text/template" + + "code.google.com/p/go.tools/godoc/vfs" + "code.google.com/p/go.tools/godoc/vfs/mapfs" +) + +// setupGoroot creates temporary directory to act as GOROOT when running tests +// that depend upon the build package. It updates build.Default to point to the +// new GOROOT. +// It returns a function that can be called to reset build.Default and remove +// the temporary directory. +func setupGoroot(t *testing.T) (cleanup func()) { + var stdLib = map[string]string{ + "src/pkg/fmt/fmt.go": `// Package fmt implements formatted I/O. +package fmt + +type Stringer interface { + String() string +} +`, + } + goroot, err := ioutil.TempDir("", "cmdline_test") + if err != nil { + t.Fatal(err) + } + origContext := build.Default + build.Default = build.Context{ + GOROOT: goroot, + Compiler: "gc", + } + for relname, contents := range stdLib { + name := filepath.Join(goroot, relname) + if err := os.MkdirAll(filepath.Dir(name), 0770); err != nil { + t.Fatal(err) + } + if err := ioutil.WriteFile(name, []byte(contents), 0770); err != nil { + t.Fatal(err) + } + } + + return func() { + if err := os.RemoveAll(goroot); err != nil { + t.Log(err) + } + build.Default = origContext + } +} + +func TestPaths(t *testing.T) { + cleanup := setupGoroot(t) + defer cleanup() + + pres := &Presentation{ + pkgHandler: handlerServer{ + fsRoot: "/fsroot", + }, + } + fs := make(vfs.NameSpace) + + absPath := "/foo/fmt" + if runtime.GOOS == "windows" { + absPath = `c:\foo\fmt` + } + + for _, tc := range []struct { + desc string + path string + expAbs string + expRel string + }{ + { + "Absolute path", + absPath, + "/target", + "/target", + }, + { + "Local import", + "../foo/fmt", + "/target", + "/target", + }, + { + "Import", + "fmt", + "/target", + "fmt", + }, + { + "Default", + "unknownpkg", + "/fsroot/unknownpkg", + "unknownpkg", + }, + } { + abs, rel := paths(fs, pres, tc.path) + if abs != tc.expAbs || rel != tc.expRel { + t.Errorf("%s: paths(%q) = %s,%s; want %s,%s", tc.desc, tc.path, abs, rel, tc.expAbs, tc.expRel) + } + } +} + +func TestMakeRx(t *testing.T) { + for _, tc := range []struct { + desc string + names []string + exp string + }{ + { + desc: "empty string", + names: []string{""}, + exp: `^$`, + }, + { + desc: "simple text", + names: []string{"a"}, + exp: `^a$`, + }, + { + desc: "two words", + names: []string{"foo", "bar"}, + exp: `^foo$|^bar$`, + }, + { + desc: "word & non-trivial", + names: []string{"foo", `ab?c`}, + exp: `^foo$|ab?c`, + }, + { + desc: "bad regexp", + names: []string{`(."`}, + exp: `(."`, + }, + } { + expRE, expErr := regexp.Compile(tc.exp) + if re, err := makeRx(tc.names); !reflect.DeepEqual(err, expErr) && !reflect.DeepEqual(re, expRE) { + t.Errorf("%s: makeRx(%v) = %q,%q; want %q,%q", tc.desc, tc.names, re, err, expRE, expErr) + } + } +} + +func TestCommandLine(t *testing.T) { + cleanup := setupGoroot(t) + defer cleanup() + mfs := mapfs.New(map[string]string{ + "src/pkg/bar/bar.go": `// Package bar is an example. +package bar +`, + "src/pkg/foo/foo.go": `// Package foo. +package foo + +// First function is first. +func First() { +} + +// Second function is second. +func Second() { +} +`, + "src/pkg/gen/gen.go": `// Package gen +package gen + +//line notgen.go:3 +// F doc //line 1 should appear +// line 2 should appear +func F() +//line foo.go:100`, // no newline on end to check corner cases! + "src/pkg/vet/vet.go": `// Package vet +package vet +`, + "src/cmd/go/doc.go": `// The go command +package main +`, + "src/cmd/gofmt/doc.go": `// The gofmt command +package main +`, + "src/cmd/vet/vet.go": `// The vet command +package main +`, + }) + fs := make(vfs.NameSpace) + fs.Bind("/", mfs, "/", vfs.BindReplace) + c := NewCorpus(fs) + p := &Presentation{Corpus: c} + p.cmdHandler = handlerServer{p, c, "/cmd/", "/src/cmd"} + p.pkgHandler = handlerServer{p, c, "/pkg/", "/src/pkg"} + p.initFuncMap() + p.PackageText = template.Must(template.New("PackageText").Funcs(p.FuncMap()).Parse(`{{$info := .}}{{$filtered := .IsFiltered}}{{if $filtered}}{{range .PAst}}{{range .Decls}}{{node $info .}}{{end}}{{end}}{{else}}{{with .PAst}}{{range $filename, $ast := .}}{{$filename}}: +{{node $ $ast}}{{end}}{{end}}{{end}}{{with .PDoc}}{{if $.IsMain}}COMMAND {{.Doc}}{{else}}PACKAGE {{.Doc}}{{end}}{{with .Funcs}} +{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}}{{end}}{{end}}{{end}}`)) + + for _, tc := range []struct { + desc string + args []string + exp string + err bool + }{ + { + desc: "standard package", + args: []string{"fmt"}, + exp: "PACKAGE Package fmt implements formatted I/O.\n", + }, + { + desc: "package", + args: []string{"bar"}, + exp: "PACKAGE Package bar is an example.\n", + }, + { + desc: "package w. filter", + args: []string{"foo", "First"}, + exp: "PACKAGE \nfunc First()\n First function is first.\n", + }, + { + desc: "package w. bad filter", + args: []string{"foo", "DNE"}, + exp: "PACKAGE ", + }, + { + desc: "source mode", + args: []string{"src/bar"}, + exp: "bar/bar.go:\n// Package bar is an example.\npackage bar\n", + }, + { + desc: "source mode w. filter", + args: []string{"src/foo", "Second"}, + exp: "// Second function is second.\nfunc Second() {\n}", + }, + { + desc: "package w. //line comments", + args: []string{"gen", "F"}, + exp: "PACKAGE \nfunc F()\n F doc //line 1 should appear line 2 should appear\n", + }, + { + desc: "command", + args: []string{"go"}, + exp: "COMMAND The go command\n", + }, + { + desc: "forced command", + args: []string{"cmd/gofmt"}, + exp: "COMMAND The gofmt command\n", + }, + { + desc: "bad arg", + args: []string{"doesnotexist"}, + err: true, + }, + { + desc: "both command and package", + args: []string{"vet"}, + exp: "use 'godoc cmd/vet' for documentation on the vet command \n\nPACKAGE Package vet\n", + }, + { + desc: "root directory", + args: []string{"/"}, + exp: "", + }, + } { + w := new(bytes.Buffer) + err := CommandLine(w, fs, p, tc.args) + if got, want := w.String(), tc.exp; got != want || tc.err == (err == nil) { + t.Errorf("%s: CommandLine(%v) = %q (%v); want %q (%v)", + tc.desc, tc.args, got, err, want, tc.err) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/corpus.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/corpus.go new file mode 100644 index 00000000..e1b4107b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/corpus.go @@ -0,0 +1,157 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package godoc + +import ( + "errors" + pathpkg "path" + "time" + + "code.google.com/p/go.tools/godoc/analysis" + "code.google.com/p/go.tools/godoc/util" + "code.google.com/p/go.tools/godoc/vfs" +) + +// A Corpus holds all the state related to serving and indexing a +// collection of Go code. +// +// Construct a new Corpus with NewCorpus, then modify options, +// then call its Init method. +type Corpus struct { + fs vfs.FileSystem + + // Verbose logging. + Verbose bool + + // IndexEnabled controls whether indexing is enabled. + IndexEnabled bool + + // IndexFiles specifies a glob pattern specifying index files. + // If not empty, the index is read from these files in sorted + // order. + IndexFiles string + + // IndexThrottle specifies the indexing throttle value + // between 0.0 and 1.0. At 0.0, the indexer always sleeps. + // At 1.0, the indexer never sleeps. Because 0.0 is useless + // and redundant with setting IndexEnabled to false, the + // zero value for IndexThrottle means 0.9. + IndexThrottle float64 + + // IndexInterval specifies the time to sleep between reindexing + // all the sources. + // If zero, a default is used. If negative, the index is only + // built once. + IndexInterval time.Duration + + // IndexDocs enables indexing of Go documentation. + // This will produce search results for exported types, functions, + // methods, variables, and constants, and will link to the godoc + // documentation for those identifiers. + IndexDocs bool + + // IndexGoCode enables indexing of Go source code. + // This will produce search results for internal and external identifiers + // and will link to both declarations and uses of those identifiers in + // source code. + IndexGoCode bool + + // IndexFullText enables full-text indexing. + // This will provide search results for any matching text in any file that + // is indexed, including non-Go files (see whitelisted in index.go). + // Regexp searching is supported via full-text indexing. + IndexFullText bool + + // MaxResults optionally specifies the maximum results for indexing. + MaxResults int + + // SummarizePackage optionally specifies a function to + // summarize a package. It exists as an optimization to + // avoid reading files to parse package comments. + // + // If SummarizePackage returns false for ok, the caller + // ignores all return values and parses the files in the package + // as if SummarizePackage were nil. + // + // If showList is false, the package is hidden from the + // package listing. + SummarizePackage func(pkg string) (summary string, showList, ok bool) + + // IndexDirectory optionally specifies a function to determine + // whether the provided directory should be indexed. The dir + // will be of the form "/src/cmd/6a", "/doc/play", + // "/src/pkg/io", etc. + // If nil, all directories are indexed if indexing is enabled. + IndexDirectory func(dir string) bool + + testDir string // TODO(bradfitz,adg): migrate old godoc flag? looks unused. + + // Send a value on this channel to trigger a metadata refresh. + // It is buffered so that if a signal is not lost if sent + // during a refresh. + refreshMetadataSignal chan bool + + // file system information + fsTree util.RWValue // *Directory tree of packages, updated with each sync (but sync code is removed now) + fsModified util.RWValue // timestamp of last call to invalidateIndex + docMetadata util.RWValue // mapping from paths to *Metadata + + // SearchIndex is the search index in use. + searchIndex util.RWValue + + // Analysis is the result of type and pointer analysis. + Analysis analysis.Result +} + +// NewCorpus returns a new Corpus from a filesystem. +// The returned corpus has all indexing enabled and MaxResults set to 1000. +// Change or set any options on Corpus before calling the Corpus.Init method. +func NewCorpus(fs vfs.FileSystem) *Corpus { + c := &Corpus{ + fs: fs, + refreshMetadataSignal: make(chan bool, 1), + + MaxResults: 1000, + IndexEnabled: true, + IndexDocs: true, + IndexGoCode: true, + IndexFullText: true, + } + return c +} + +func (c *Corpus) CurrentIndex() (*Index, time.Time) { + v, t := c.searchIndex.Get() + idx, _ := v.(*Index) + return idx, t +} + +func (c *Corpus) FSModifiedTime() time.Time { + _, ts := c.fsModified.Get() + return ts +} + +// Init initializes Corpus, once options on Corpus are set. +// It must be called before any subsequent method calls. +func (c *Corpus) Init() error { + // TODO(bradfitz): do this in a goroutine because newDirectory might block for a long time? + // It used to be sometimes done in a goroutine before, at least in HTTP server mode. + if err := c.initFSTree(); err != nil { + return err + } + c.updateMetadata() + go c.refreshMetadataLoop() + return nil +} + +func (c *Corpus) initFSTree() error { + dir := c.newDirectory(pathpkg.Join("/", c.testDir), -1) + if dir == nil { + return errors.New("godoc: corpus fstree is nil") + } + c.fsTree.Set(dir) + c.invalidateIndex() + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/dirtrees.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/dirtrees.go new file mode 100644 index 00000000..5d35e10d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/dirtrees.go @@ -0,0 +1,329 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the code dealing with package directory trees. + +package godoc + +import ( + "bytes" + "go/doc" + "go/parser" + "go/token" + "log" + "os" + pathpkg "path" + "strings" +) + +// Conventional name for directories containing test data. +// Excluded from directory trees. +// +const testdataDirName = "testdata" + +type Directory struct { + Depth int + Path string // directory path; includes Name + Name string // directory name + HasPkg bool // true if the directory contains at least one package + Synopsis string // package documentation, if any + Dirs []*Directory // subdirectories +} + +func isGoFile(fi os.FileInfo) bool { + name := fi.Name() + return !fi.IsDir() && + len(name) > 0 && name[0] != '.' && // ignore .files + pathpkg.Ext(name) == ".go" +} + +func isPkgFile(fi os.FileInfo) bool { + return isGoFile(fi) && + !strings.HasSuffix(fi.Name(), "_test.go") // ignore test files +} + +func isPkgDir(fi os.FileInfo) bool { + name := fi.Name() + return fi.IsDir() && len(name) > 0 && + name[0] != '_' && name[0] != '.' // ignore _files and .files +} + +type treeBuilder struct { + c *Corpus + maxDepth int +} + +func (b *treeBuilder) newDirTree(fset *token.FileSet, path, name string, depth int) *Directory { + if name == testdataDirName { + return nil + } + + if depth >= b.maxDepth { + // return a dummy directory so that the parent directory + // doesn't get discarded just because we reached the max + // directory depth + return &Directory{ + Depth: depth, + Path: path, + Name: name, + } + } + + var synopses [3]string // prioritized package documentation (0 == highest priority) + + show := true // show in package listing + hasPkgFiles := false + haveSummary := false + + if hook := b.c.SummarizePackage; hook != nil { + if summary, show0, ok := hook(strings.TrimPrefix(path, "/src/pkg/")); ok { + hasPkgFiles = true + show = show0 + synopses[0] = summary + haveSummary = true + } + } + + list, _ := b.c.fs.ReadDir(path) + + // determine number of subdirectories and if there are package files + var dirchs []chan *Directory + + for _, d := range list { + switch { + case isPkgDir(d): + ch := make(chan *Directory, 1) + dirchs = append(dirchs, ch) + go func(d os.FileInfo) { + name := d.Name() + ch <- b.newDirTree(fset, pathpkg.Join(path, name), name, depth+1) + }(d) + case !haveSummary && isPkgFile(d): + // looks like a package file, but may just be a file ending in ".go"; + // don't just count it yet (otherwise we may end up with hasPkgFiles even + // though the directory doesn't contain any real package files - was bug) + // no "optimal" package synopsis yet; continue to collect synopses + file, err := b.c.parseFile(fset, pathpkg.Join(path, d.Name()), + parser.ParseComments|parser.PackageClauseOnly) + if err == nil { + hasPkgFiles = true + if file.Doc != nil { + // prioritize documentation + i := -1 + switch file.Name.Name { + case name: + i = 0 // normal case: directory name matches package name + case "main": + i = 1 // directory contains a main package + default: + i = 2 // none of the above + } + if 0 <= i && i < len(synopses) && synopses[i] == "" { + synopses[i] = doc.Synopsis(file.Doc.Text()) + } + } + haveSummary = synopses[0] != "" + } + } + } + + // create subdirectory tree + var dirs []*Directory + for _, ch := range dirchs { + if d := <-ch; d != nil { + dirs = append(dirs, d) + } + } + + // if there are no package files and no subdirectories + // containing package files, ignore the directory + if !hasPkgFiles && len(dirs) == 0 { + return nil + } + + // select the highest-priority synopsis for the directory entry, if any + synopsis := "" + for _, synopsis = range synopses { + if synopsis != "" { + break + } + } + + return &Directory{ + Depth: depth, + Path: path, + Name: name, + HasPkg: hasPkgFiles && show, // TODO(bradfitz): add proper Hide field? + Synopsis: synopsis, + Dirs: dirs, + } +} + +// newDirectory creates a new package directory tree with at most maxDepth +// levels, anchored at root. The result tree is pruned such that it only +// contains directories that contain package files or that contain +// subdirectories containing package files (transitively). If a non-nil +// pathFilter is provided, directory paths additionally must be accepted +// by the filter (i.e., pathFilter(path) must be true). If a value >= 0 is +// provided for maxDepth, nodes at larger depths are pruned as well; they +// are assumed to contain package files even if their contents are not known +// (i.e., in this case the tree may contain directories w/o any package files). +// +func (c *Corpus) newDirectory(root string, maxDepth int) *Directory { + // The root could be a symbolic link so use Stat not Lstat. + d, err := c.fs.Stat(root) + // If we fail here, report detailed error messages; otherwise + // is is hard to see why a directory tree was not built. + switch { + case err != nil: + log.Printf("newDirectory(%s): %s", root, err) + return nil + case !isPkgDir(d): + log.Printf("newDirectory(%s): not a package directory", root) + return nil + } + if maxDepth < 0 { + maxDepth = 1e6 // "infinity" + } + b := treeBuilder{c, maxDepth} + // the file set provided is only for local parsing, no position + // information escapes and thus we don't need to save the set + return b.newDirTree(token.NewFileSet(), root, d.Name(), 0) +} + +func (dir *Directory) writeLeafs(buf *bytes.Buffer) { + if dir != nil { + if len(dir.Dirs) == 0 { + buf.WriteString(dir.Path) + buf.WriteByte('\n') + return + } + + for _, d := range dir.Dirs { + d.writeLeafs(buf) + } + } +} + +func (dir *Directory) walk(c chan<- *Directory, skipRoot bool) { + if dir != nil { + if !skipRoot { + c <- dir + } + for _, d := range dir.Dirs { + d.walk(c, false) + } + } +} + +func (dir *Directory) iter(skipRoot bool) <-chan *Directory { + c := make(chan *Directory) + go func() { + dir.walk(c, skipRoot) + close(c) + }() + return c +} + +func (dir *Directory) lookupLocal(name string) *Directory { + for _, d := range dir.Dirs { + if d.Name == name { + return d + } + } + return nil +} + +func splitPath(p string) []string { + p = strings.TrimPrefix(p, "/") + if p == "" { + return nil + } + return strings.Split(p, "/") +} + +// lookup looks for the *Directory for a given path, relative to dir. +func (dir *Directory) lookup(path string) *Directory { + d := splitPath(dir.Path) + p := splitPath(path) + i := 0 + for i < len(d) { + if i >= len(p) || d[i] != p[i] { + return nil + } + i++ + } + for dir != nil && i < len(p) { + dir = dir.lookupLocal(p[i]) + i++ + } + return dir +} + +// DirEntry describes a directory entry. The Depth and Height values +// are useful for presenting an entry in an indented fashion. +// +type DirEntry struct { + Depth int // >= 0 + Height int // = DirList.MaxHeight - Depth, > 0 + Path string // directory path; includes Name, relative to DirList root + Name string // directory name + HasPkg bool // true if the directory contains at least one package + Synopsis string // package documentation, if any +} + +type DirList struct { + MaxHeight int // directory tree height, > 0 + List []DirEntry +} + +// listing creates a (linear) directory listing from a directory tree. +// If skipRoot is set, the root directory itself is excluded from the list. +// +func (root *Directory) listing(skipRoot bool) *DirList { + if root == nil { + return nil + } + + // determine number of entries n and maximum height + n := 0 + minDepth := 1 << 30 // infinity + maxDepth := 0 + for d := range root.iter(skipRoot) { + n++ + if minDepth > d.Depth { + minDepth = d.Depth + } + if maxDepth < d.Depth { + maxDepth = d.Depth + } + } + maxHeight := maxDepth - minDepth + 1 + + if n == 0 { + return nil + } + + // create list + list := make([]DirEntry, n) + i := 0 + for d := range root.iter(skipRoot) { + p := &list[i] + p.Depth = d.Depth - minDepth + p.Height = maxHeight - p.Depth + // the path is relative to root.Path - remove the root.Path + // prefix (the prefix should always be present but avoid + // crashes and check) + path := strings.TrimPrefix(d.Path, root.Path) + // remove leading separator if any - path must be relative + path = strings.TrimPrefix(path, "/") + p.Path = path + p.Name = d.Name + p.HasPkg = d.HasPkg + p.Synopsis = d.Synopsis + i++ + } + + return &DirList{maxHeight, list} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/format.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/format.go new file mode 100644 index 00000000..6013238f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/format.go @@ -0,0 +1,371 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements FormatSelections and FormatText. +// FormatText is used to HTML-format Go and non-Go source +// text with line numbers and highlighted sections. It is +// built on top of FormatSelections, a generic formatter +// for "selected" text. + +package godoc + +import ( + "fmt" + "go/scanner" + "go/token" + "io" + "regexp" + "strconv" + "text/template" +) + +// ---------------------------------------------------------------------------- +// Implementation of FormatSelections + +// A Segment describes a text segment [start, end). +// The zero value of a Segment is a ready-to-use empty segment. +// +type Segment struct { + start, end int +} + +func (seg *Segment) isEmpty() bool { return seg.start >= seg.end } + +// A Selection is an "iterator" function returning a text segment. +// Repeated calls to a selection return consecutive, non-overlapping, +// non-empty segments, followed by an infinite sequence of empty +// segments. The first empty segment marks the end of the selection. +// +type Selection func() Segment + +// A LinkWriter writes some start or end "tag" to w for the text offset offs. +// It is called by FormatSelections at the start or end of each link segment. +// +type LinkWriter func(w io.Writer, offs int, start bool) + +// A SegmentWriter formats a text according to selections and writes it to w. +// The selections parameter is a bit set indicating which selections provided +// to FormatSelections overlap with the text segment: If the n'th bit is set +// in selections, the n'th selection provided to FormatSelections is overlapping +// with the text. +// +type SegmentWriter func(w io.Writer, text []byte, selections int) + +// FormatSelections takes a text and writes it to w using link and segment +// writers lw and sw as follows: lw is invoked for consecutive segment starts +// and ends as specified through the links selection, and sw is invoked for +// consecutive segments of text overlapped by the same selections as specified +// by selections. The link writer lw may be nil, in which case the links +// Selection is ignored. +// +func FormatSelections(w io.Writer, text []byte, lw LinkWriter, links Selection, sw SegmentWriter, selections ...Selection) { + // If we have a link writer, make the links + // selection the last entry in selections + if lw != nil { + selections = append(selections, links) + } + + // compute the sequence of consecutive segment changes + changes := newMerger(selections) + + // The i'th bit in bitset indicates that the text + // at the current offset is covered by selections[i]. + bitset := 0 + lastOffs := 0 + + // Text segments are written in a delayed fashion + // such that consecutive segments belonging to the + // same selection can be combined (peephole optimization). + // last describes the last segment which has not yet been written. + var last struct { + begin, end int // valid if begin < end + bitset int + } + + // flush writes the last delayed text segment + flush := func() { + if last.begin < last.end { + sw(w, text[last.begin:last.end], last.bitset) + } + last.begin = last.end // invalidate last + } + + // segment runs the segment [lastOffs, end) with the selection + // indicated by bitset through the segment peephole optimizer. + segment := func(end int) { + if lastOffs < end { // ignore empty segments + if last.end != lastOffs || last.bitset != bitset { + // the last segment is not adjacent to or + // differs from the new one + flush() + // start a new segment + last.begin = lastOffs + } + last.end = end + last.bitset = bitset + } + } + + for { + // get the next segment change + index, offs, start := changes.next() + if index < 0 || offs > len(text) { + // no more segment changes or the next change + // is past the end of the text - we're done + break + } + // determine the kind of segment change + if lw != nil && index == len(selections)-1 { + // we have a link segment change (see start of this function): + // format the previous selection segment, write the + // link tag and start a new selection segment + segment(offs) + flush() + lastOffs = offs + lw(w, offs, start) + } else { + // we have a selection change: + // format the previous selection segment, determine + // the new selection bitset and start a new segment + segment(offs) + lastOffs = offs + mask := 1 << uint(index) + if start { + bitset |= mask + } else { + bitset &^= mask + } + } + } + segment(len(text)) + flush() +} + +// A merger merges a slice of Selections and produces a sequence of +// consecutive segment change events through repeated next() calls. +// +type merger struct { + selections []Selection + segments []Segment // segments[i] is the next segment of selections[i] +} + +const infinity int = 2e9 + +func newMerger(selections []Selection) *merger { + segments := make([]Segment, len(selections)) + for i, sel := range selections { + segments[i] = Segment{infinity, infinity} + if sel != nil { + if seg := sel(); !seg.isEmpty() { + segments[i] = seg + } + } + } + return &merger{selections, segments} +} + +// next returns the next segment change: index specifies the Selection +// to which the segment belongs, offs is the segment start or end offset +// as determined by the start value. If there are no more segment changes, +// next returns an index value < 0. +// +func (m *merger) next() (index, offs int, start bool) { + // find the next smallest offset where a segment starts or ends + offs = infinity + index = -1 + for i, seg := range m.segments { + switch { + case seg.start < offs: + offs = seg.start + index = i + start = true + case seg.end < offs: + offs = seg.end + index = i + start = false + } + } + if index < 0 { + // no offset found => all selections merged + return + } + // offset found - it's either the start or end offset but + // either way it is ok to consume the start offset: set it + // to infinity so it won't be considered in the following + // next call + m.segments[index].start = infinity + if start { + return + } + // end offset found - consume it + m.segments[index].end = infinity + // advance to the next segment for that selection + seg := m.selections[index]() + if !seg.isEmpty() { + m.segments[index] = seg + } + return +} + +// ---------------------------------------------------------------------------- +// Implementation of FormatText + +// lineSelection returns the line segments for text as a Selection. +func lineSelection(text []byte) Selection { + i, j := 0, 0 + return func() (seg Segment) { + // find next newline, if any + for j < len(text) { + j++ + if text[j-1] == '\n' { + break + } + } + if i < j { + // text[i:j] constitutes a line + seg = Segment{i, j} + i = j + } + return + } +} + +// tokenSelection returns, as a selection, the sequence of +// consecutive occurrences of token sel in the Go src text. +// +func tokenSelection(src []byte, sel token.Token) Selection { + var s scanner.Scanner + fset := token.NewFileSet() + file := fset.AddFile("", fset.Base(), len(src)) + s.Init(file, src, nil, scanner.ScanComments) + return func() (seg Segment) { + for { + pos, tok, lit := s.Scan() + if tok == token.EOF { + break + } + offs := file.Offset(pos) + if tok == sel { + seg = Segment{offs, offs + len(lit)} + break + } + } + return + } +} + +// makeSelection is a helper function to make a Selection from a slice of pairs. +// Pairs describing empty segments are ignored. +// +func makeSelection(matches [][]int) Selection { + i := 0 + return func() Segment { + for i < len(matches) { + m := matches[i] + i++ + if m[0] < m[1] { + // non-empty segment + return Segment{m[0], m[1]} + } + } + return Segment{} + } +} + +// regexpSelection computes the Selection for the regular expression expr in text. +func regexpSelection(text []byte, expr string) Selection { + var matches [][]int + if rx, err := regexp.Compile(expr); err == nil { + matches = rx.FindAllIndex(text, -1) + } + return makeSelection(matches) +} + +var selRx = regexp.MustCompile(`^([0-9]+):([0-9]+)`) + +// RangeSelection computes the Selection for a text range described +// by the argument str; the range description must match the selRx +// regular expression. +func RangeSelection(str string) Selection { + m := selRx.FindStringSubmatch(str) + if len(m) >= 2 { + from, _ := strconv.Atoi(m[1]) + to, _ := strconv.Atoi(m[2]) + if from < to { + return makeSelection([][]int{{from, to}}) + } + } + return nil +} + +// Span tags for all the possible selection combinations that may +// be generated by FormatText. Selections are indicated by a bitset, +// and the value of the bitset specifies the tag to be used. +// +// bit 0: comments +// bit 1: highlights +// bit 2: selections +// +var startTags = [][]byte{ + /* 000 */ []byte(``), + /* 001 */ []byte(``), + /* 010 */ []byte(``), + /* 011 */ []byte(``), + /* 100 */ []byte(``), + /* 101 */ []byte(``), + /* 110 */ []byte(``), + /* 111 */ []byte(``), +} + +var endTag = []byte(``) + +func selectionTag(w io.Writer, text []byte, selections int) { + if selections < len(startTags) { + if tag := startTags[selections]; len(tag) > 0 { + w.Write(tag) + template.HTMLEscape(w, text) + w.Write(endTag) + return + } + } + template.HTMLEscape(w, text) +} + +// FormatText HTML-escapes text and writes it to w. +// Consecutive text segments are wrapped in HTML spans (with tags as +// defined by startTags and endTag) as follows: +// +// - if line >= 0, line number (ln) spans are inserted before each line, +// starting with the value of line +// - if the text is Go source, comments get the "comment" span class +// - each occurrence of the regular expression pattern gets the "highlight" +// span class +// - text segments covered by selection get the "selection" span class +// +// Comments, highlights, and selections may overlap arbitrarily; the respective +// HTML span classes are specified in the startTags variable. +// +func FormatText(w io.Writer, text []byte, line int, goSource bool, pattern string, selection Selection) { + var comments, highlights Selection + if goSource { + comments = tokenSelection(text, token.COMMENT) + } + if pattern != "" { + highlights = regexpSelection(text, pattern) + } + if line >= 0 || comments != nil || highlights != nil || selection != nil { + var lineTag LinkWriter + if line >= 0 { + lineTag = func(w io.Writer, _ int, start bool) { + if start { + fmt.Fprintf(w, "%6d\t", line, line) + line++ + } + } + } + FormatSelections(w, text, lineTag, lineSelection(text), selectionTag, comments, highlights, selection) + } else { + template.HTMLEscape(w, text) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/godoc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/godoc.go new file mode 100644 index 00000000..5b9f95f7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/godoc.go @@ -0,0 +1,628 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package godoc is a work-in-progress (2013-07-17) package to +// begin splitting up the godoc binary into multiple pieces. +// +// This package comment will evolve over time as this package splits +// into smaller pieces. +package godoc + +import ( + "bytes" + "fmt" + "go/ast" + "go/doc" + "go/format" + "go/printer" + "go/token" + htmltemplate "html/template" + "io" + "log" + "os" + pathpkg "path" + "regexp" + "strconv" + "strings" + "text/template" + "time" + "unicode" + "unicode/utf8" +) + +// Fake relative package path for built-ins. Documentation for all globals +// (not just exported ones) will be shown for packages in this directory. +const builtinPkgPath = "builtin" + +// FuncMap defines template functions used in godoc templates. +// +// Convention: template function names ending in "_html" or "_url" produce +// HTML- or URL-escaped strings; all other function results may +// require explicit escaping in the template. +func (p *Presentation) FuncMap() template.FuncMap { + p.initFuncMapOnce.Do(p.initFuncMap) + return p.funcMap +} + +func (p *Presentation) TemplateFuncs() template.FuncMap { + p.initFuncMapOnce.Do(p.initFuncMap) + return p.templateFuncs +} + +func (p *Presentation) initFuncMap() { + if p.Corpus == nil { + panic("nil Presentation.Corpus") + } + p.templateFuncs = template.FuncMap{ + "code": p.code, + } + p.funcMap = template.FuncMap{ + // various helpers + "filename": filenameFunc, + "repeat": strings.Repeat, + + // access to FileInfos (directory listings) + "fileInfoName": fileInfoNameFunc, + "fileInfoTime": fileInfoTimeFunc, + + // access to search result information + "infoKind_html": infoKind_htmlFunc, + "infoLine": p.infoLineFunc, + "infoSnippet_html": p.infoSnippet_htmlFunc, + + // formatting of AST nodes + "node": p.nodeFunc, + "node_html": p.node_htmlFunc, + "comment_html": comment_htmlFunc, + "comment_text": comment_textFunc, + "sanitize": sanitizeFunc, + + // support for URL attributes + "pkgLink": pkgLinkFunc, + "srcLink": srcLinkFunc, + "posLink_url": newPosLink_urlFunc(srcPosLinkFunc), + "docLink": docLinkFunc, + "queryLink": queryLinkFunc, + + // formatting of Examples + "example_html": p.example_htmlFunc, + "example_text": p.example_textFunc, + "example_name": p.example_nameFunc, + "example_suffix": p.example_suffixFunc, + + // formatting of analysis information + "callgraph_html": p.callgraph_htmlFunc, + "implements_html": p.implements_htmlFunc, + "methodset_html": p.methodset_htmlFunc, + + // formatting of Notes + "noteTitle": noteTitle, + } + if p.URLForSrc != nil { + p.funcMap["srcLink"] = p.URLForSrc + } + if p.URLForSrcPos != nil { + p.funcMap["posLink_url"] = newPosLink_urlFunc(p.URLForSrcPos) + } + if p.URLForSrcQuery != nil { + p.funcMap["queryLink"] = p.URLForSrcQuery + } +} + +func filenameFunc(path string) string { + _, localname := pathpkg.Split(path) + return localname +} + +func fileInfoNameFunc(fi os.FileInfo) string { + name := fi.Name() + if fi.IsDir() { + name += "/" + } + return name +} + +func fileInfoTimeFunc(fi os.FileInfo) string { + if t := fi.ModTime(); t.Unix() != 0 { + return t.Local().String() + } + return "" // don't return epoch if time is obviously not set +} + +// The strings in infoKinds must be properly html-escaped. +var infoKinds = [nKinds]string{ + PackageClause: "package clause", + ImportDecl: "import decl", + ConstDecl: "const decl", + TypeDecl: "type decl", + VarDecl: "var decl", + FuncDecl: "func decl", + MethodDecl: "method decl", + Use: "use", +} + +func infoKind_htmlFunc(info SpotInfo) string { + return infoKinds[info.Kind()] // infoKind entries are html-escaped +} + +func (p *Presentation) infoLineFunc(info SpotInfo) int { + line := info.Lori() + if info.IsIndex() { + index, _ := p.Corpus.searchIndex.Get() + if index != nil { + line = index.(*Index).Snippet(line).Line + } else { + // no line information available because + // we don't have an index - this should + // never happen; be conservative and don't + // crash + line = 0 + } + } + return line +} + +func (p *Presentation) infoSnippet_htmlFunc(info SpotInfo) string { + if info.IsIndex() { + index, _ := p.Corpus.searchIndex.Get() + // Snippet.Text was HTML-escaped when it was generated + return index.(*Index).Snippet(info.Lori()).Text + } + return `no snippet text available` +} + +func (p *Presentation) nodeFunc(info *PageInfo, node interface{}) string { + var buf bytes.Buffer + p.writeNode(&buf, info.FSet, node) + return buf.String() +} + +func (p *Presentation) node_htmlFunc(info *PageInfo, node interface{}, linkify bool) string { + var buf1 bytes.Buffer + p.writeNode(&buf1, info.FSet, node) + + var buf2 bytes.Buffer + if n, _ := node.(ast.Node); n != nil && linkify && p.DeclLinks { + LinkifyText(&buf2, buf1.Bytes(), n) + } else { + FormatText(&buf2, buf1.Bytes(), -1, true, "", nil) + } + + return buf2.String() +} + +func comment_htmlFunc(comment string) string { + var buf bytes.Buffer + // TODO(gri) Provide list of words (e.g. function parameters) + // to be emphasized by ToHTML. + doc.ToHTML(&buf, comment, nil) // does html-escaping + return buf.String() +} + +// punchCardWidth is the number of columns of fixed-width +// characters to assume when wrapping text. Very few people +// use terminals or cards smaller than 80 characters, so 80 it is. +// We do not try to sniff the environment or the tty to adapt to +// the situation; instead, by using a constant we make sure that +// godoc always produces the same output regardless of context, +// a consistency that is lost otherwise. For example, if we sniffed +// the environment or tty, then http://golang.org/pkg/math/?m=text +// would depend on the width of the terminal where godoc started, +// which is clearly bogus. More generally, the Unix tools that behave +// differently when writing to a tty than when writing to a file have +// a history of causing confusion (compare `ls` and `ls | cat`), and we +// want to avoid that mistake here. +const punchCardWidth = 80 + +func containsOnlySpace(buf []byte) bool { + isNotSpace := func(r rune) bool { return !unicode.IsSpace(r) } + return bytes.IndexFunc(buf, isNotSpace) == -1 +} + +func comment_textFunc(comment, indent, preIndent string) string { + var buf bytes.Buffer + doc.ToText(&buf, comment, indent, preIndent, punchCardWidth-2*len(indent)) + if containsOnlySpace(buf.Bytes()) { + return "" + } + return buf.String() +} + +// sanitizeFunc sanitizes the argument src by replacing newlines with +// blanks, removing extra blanks, and by removing trailing whitespace +// and commas before closing parentheses. +func sanitizeFunc(src string) string { + buf := make([]byte, len(src)) + j := 0 // buf index + comma := -1 // comma index if >= 0 + for i := 0; i < len(src); i++ { + ch := src[i] + switch ch { + case '\t', '\n', ' ': + // ignore whitespace at the beginning, after a blank, or after opening parentheses + if j == 0 { + continue + } + if p := buf[j-1]; p == ' ' || p == '(' || p == '{' || p == '[' { + continue + } + // replace all whitespace with blanks + ch = ' ' + case ',': + comma = j + case ')', '}', ']': + // remove any trailing comma + if comma >= 0 { + j = comma + } + // remove any trailing whitespace + if j > 0 && buf[j-1] == ' ' { + j-- + } + default: + comma = -1 + } + buf[j] = ch + j++ + } + // remove trailing blank, if any + if j > 0 && buf[j-1] == ' ' { + j-- + } + return string(buf[:j]) +} + +type PageInfo struct { + Dirname string // directory containing the package + Err error // error or nil + + // package info + FSet *token.FileSet // nil if no package documentation + PDoc *doc.Package // nil if no package documentation + Examples []*doc.Example // nil if no example code + Notes map[string][]*doc.Note // nil if no package Notes + PAst map[string]*ast.File // nil if no AST with package exports + IsMain bool // true for package main + IsFiltered bool // true if results were filtered + + // analysis info + TypeInfoIndex map[string]int // index of JSON datum for type T (if -analysis=type) + AnalysisData htmltemplate.JS // array of TypeInfoJSON values + CallGraph htmltemplate.JS // array of PCGNodeJSON values (if -analysis=pointer) + CallGraphIndex map[string]int // maps func name to index in CallGraph + + // directory info + Dirs *DirList // nil if no directory information + DirTime time.Time // directory time stamp + DirFlat bool // if set, show directory in a flat (non-indented) manner +} + +func (info *PageInfo) IsEmpty() bool { + return info.Err != nil || info.PAst == nil && info.PDoc == nil && info.Dirs == nil +} + +func pkgLinkFunc(path string) string { + relpath := path[1:] + // because of the irregular mapping under goroot + // we need to correct certain relative paths + relpath = strings.TrimPrefix(relpath, "src/pkg/") + return "pkg/" + relpath // remove trailing '/' for relative URL +} + +func newPosLink_urlFunc(srcPosLinkFunc func(s string, line, low, high int) string) func(info *PageInfo, n interface{}) string { + // n must be an ast.Node or a *doc.Note + return func(info *PageInfo, n interface{}) string { + var pos, end token.Pos + + switch n := n.(type) { + case ast.Node: + pos = n.Pos() + end = n.End() + case *doc.Note: + pos = n.Pos + end = n.End + default: + panic(fmt.Sprintf("wrong type for posLink_url template formatter: %T", n)) + } + + var relpath string + var line int + var low, high int // selection offset range + + if pos.IsValid() { + p := info.FSet.Position(pos) + relpath = p.Filename + line = p.Line + low = p.Offset + } + if end.IsValid() { + high = info.FSet.Position(end).Offset + } + + return srcPosLinkFunc(relpath, line, low, high) + } +} + +func srcPosLinkFunc(s string, line, low, high int) string { + s = srcLinkFunc(s) + var buf bytes.Buffer + template.HTMLEscape(&buf, []byte(s)) + // selection ranges are of form "s=low:high" + if low < high { + fmt.Fprintf(&buf, "?s=%d:%d", low, high) // no need for URL escaping + // if we have a selection, position the page + // such that the selection is a bit below the top + line -= 10 + if line < 1 { + line = 1 + } + } + // line id's in html-printed source are of the + // form "L%d" where %d stands for the line number + if line > 0 { + fmt.Fprintf(&buf, "#L%d", line) // no need for URL escaping + } + return buf.String() +} + +func srcLinkFunc(s string) string { + s = pathpkg.Clean("/" + s) + if !strings.HasPrefix(s, "/src/pkg/") { + s = "/src/pkg" + s + } + return s +} + +// queryLinkFunc returns a URL for a line in a source file with a highlighted +// query term. +// s is expected to be a path to a source file. +// query is expected to be a string that has already been appropriately escaped +// for use in a URL query. +func queryLinkFunc(s, query string, line int) string { + url := pathpkg.Clean("/"+s) + "?h=" + query + if line > 0 { + url += "#L" + strconv.Itoa(line) + } + return url +} + +func docLinkFunc(s string, ident string) string { + s = strings.TrimPrefix(s, "/src") + return pathpkg.Clean("/"+s) + "/#" + ident +} + +func (p *Presentation) example_textFunc(info *PageInfo, funcName, indent string) string { + if !p.ShowExamples { + return "" + } + + var buf bytes.Buffer + first := true + for _, eg := range info.Examples { + name := stripExampleSuffix(eg.Name) + if name != funcName { + continue + } + + if !first { + buf.WriteString("\n") + } + first = false + + // print code + cnode := &printer.CommentedNode{Node: eg.Code, Comments: eg.Comments} + var buf1 bytes.Buffer + p.writeNode(&buf1, info.FSet, cnode) + code := buf1.String() + // Additional formatting if this is a function body. + if n := len(code); n >= 2 && code[0] == '{' && code[n-1] == '}' { + // remove surrounding braces + code = code[1 : n-1] + // unindent + code = strings.Replace(code, "\n ", "\n", -1) + } + code = strings.Trim(code, "\n") + code = strings.Replace(code, "\n", "\n\t", -1) + + buf.WriteString(indent) + buf.WriteString("Example:\n\t") + buf.WriteString(code) + buf.WriteString("\n") + } + return buf.String() +} + +func (p *Presentation) example_htmlFunc(info *PageInfo, funcName string) string { + var buf bytes.Buffer + for _, eg := range info.Examples { + name := stripExampleSuffix(eg.Name) + + if name != funcName { + continue + } + + // print code + cnode := &printer.CommentedNode{Node: eg.Code, Comments: eg.Comments} + code := p.node_htmlFunc(info, cnode, true) + out := eg.Output + wholeFile := true + + // Additional formatting if this is a function body. + if n := len(code); n >= 2 && code[0] == '{' && code[n-1] == '}' { + wholeFile = false + // remove surrounding braces + code = code[1 : n-1] + // unindent + code = strings.Replace(code, "\n ", "\n", -1) + // remove output comment + if loc := exampleOutputRx.FindStringIndex(code); loc != nil { + code = strings.TrimSpace(code[:loc[0]]) + } + } + + // Write out the playground code in standard Go style + // (use tabs, no comment highlight, etc). + play := "" + if eg.Play != nil && p.ShowPlayground { + var buf bytes.Buffer + if err := format.Node(&buf, info.FSet, eg.Play); err != nil { + log.Print(err) + } else { + play = buf.String() + } + } + + // Drop output, as the output comment will appear in the code. + if wholeFile && play == "" { + out = "" + } + + if p.ExampleHTML == nil { + out = "" + return "" + } + + err := p.ExampleHTML.Execute(&buf, struct { + Name, Doc, Code, Play, Output string + }{eg.Name, eg.Doc, code, play, out}) + if err != nil { + log.Print(err) + } + } + return buf.String() +} + +// example_nameFunc takes an example function name and returns its display +// name. For example, "Foo_Bar_quux" becomes "Foo.Bar (Quux)". +func (p *Presentation) example_nameFunc(s string) string { + name, suffix := splitExampleName(s) + // replace _ with . for method names + name = strings.Replace(name, "_", ".", 1) + // use "Package" if no name provided + if name == "" { + name = "Package" + } + return name + suffix +} + +// example_suffixFunc takes an example function name and returns its suffix in +// parenthesized form. For example, "Foo_Bar_quux" becomes " (Quux)". +func (p *Presentation) example_suffixFunc(name string) string { + _, suffix := splitExampleName(name) + return suffix +} + +// implements_html returns the "> Implements" toggle for a package-level named type. +// Its contents are populated from JSON data by client-side JS at load time. +func (p *Presentation) implements_htmlFunc(info *PageInfo, typeName string) string { + if p.ImplementsHTML == nil { + return "" + } + index, ok := info.TypeInfoIndex[typeName] + if !ok { + return "" + } + var buf bytes.Buffer + err := p.ImplementsHTML.Execute(&buf, struct{ Index int }{index}) + if err != nil { + log.Print(err) + } + return buf.String() +} + +// methodset_html returns the "> Method set" toggle for a package-level named type. +// Its contents are populated from JSON data by client-side JS at load time. +func (p *Presentation) methodset_htmlFunc(info *PageInfo, typeName string) string { + if p.MethodSetHTML == nil { + return "" + } + index, ok := info.TypeInfoIndex[typeName] + if !ok { + return "" + } + var buf bytes.Buffer + err := p.MethodSetHTML.Execute(&buf, struct{ Index int }{index}) + if err != nil { + log.Print(err) + } + return buf.String() +} + +// callgraph_html returns the "> Call graph" toggle for a package-level func. +// Its contents are populated from JSON data by client-side JS at load time. +func (p *Presentation) callgraph_htmlFunc(info *PageInfo, recv, name string) string { + if p.CallGraphHTML == nil { + return "" + } + if recv != "" { + // Format must match (*ssa.Function).RelString(). + name = fmt.Sprintf("(%s).%s", recv, name) + } + index, ok := info.CallGraphIndex[name] + if !ok { + return "" + } + var buf bytes.Buffer + err := p.CallGraphHTML.Execute(&buf, struct{ Index int }{index}) + if err != nil { + log.Print(err) + } + return buf.String() +} + +func noteTitle(note string) string { + return strings.Title(strings.ToLower(note)) +} + +func startsWithUppercase(s string) bool { + r, _ := utf8.DecodeRuneInString(s) + return unicode.IsUpper(r) +} + +var exampleOutputRx = regexp.MustCompile(`(?i)//[[:space:]]*output:`) + +// stripExampleSuffix strips lowercase braz in Foo_braz or Foo_Bar_braz from name +// while keeping uppercase Braz in Foo_Braz. +func stripExampleSuffix(name string) string { + if i := strings.LastIndex(name, "_"); i != -1 { + if i < len(name)-1 && !startsWithUppercase(name[i+1:]) { + name = name[:i] + } + } + return name +} + +func splitExampleName(s string) (name, suffix string) { + i := strings.LastIndex(s, "_") + if 0 <= i && i < len(s)-1 && !startsWithUppercase(s[i+1:]) { + name = s[:i] + suffix = " (" + strings.Title(s[i+1:]) + ")" + return + } + name = s + return +} + +// Write an AST node to w. +func (p *Presentation) writeNode(w io.Writer, fset *token.FileSet, x interface{}) { + // convert trailing tabs into spaces using a tconv filter + // to ensure a good outcome in most browsers (there may still + // be tabs in comments and strings, but converting those into + // the right number of spaces is much harder) + // + // TODO(gri) rethink printer flags - perhaps tconv can be eliminated + // with an another printer mode (which is more efficiently + // implemented in the printer than here with another layer) + mode := printer.TabIndent | printer.UseSpaces + err := (&printer.Config{Mode: mode, Tabwidth: p.TabWidth}).Fprint(&tconv{p: p, output: w}, fset, x) + if err != nil { + log.Print(err) + } +} + +// WriteNode writes x to w. +// TODO(bgarcia) Is this method needed? It's just a wrapper for p.writeNode. +func (p *Presentation) WriteNode(w io.Writer, fset *token.FileSet, x interface{}) { + p.writeNode(w, fset, x) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/godoc_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/godoc_test.go new file mode 100644 index 00000000..76ce946a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/godoc_test.go @@ -0,0 +1,116 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package godoc + +import ( + "testing" +) + +func TestPkgLinkFunc(t *testing.T) { + for _, tc := range []struct { + path string + want string + }{ + {"/src/pkg/fmt", "pkg/fmt"}, + {"/fmt", "pkg/fmt"}, + } { + if got := pkgLinkFunc(tc.path); got != tc.want { + t.Errorf("pkgLinkFunc(%v) = %v; want %v", tc.path, got, tc.want) + } + } +} + +func TestSrcPosLinkFunc(t *testing.T) { + for _, tc := range []struct { + src string + line int + low int + high int + want string + }{ + {"/src/pkg/fmt/print.go", 42, 30, 50, "/src/pkg/fmt/print.go?s=30:50#L32"}, + {"/src/pkg/fmt/print.go", 2, 1, 5, "/src/pkg/fmt/print.go?s=1:5#L1"}, + {"/src/pkg/fmt/print.go", 2, 0, 0, "/src/pkg/fmt/print.go#L2"}, + {"/src/pkg/fmt/print.go", 0, 0, 0, "/src/pkg/fmt/print.go"}, + {"/src/pkg/fmt/print.go", 0, 1, 5, "/src/pkg/fmt/print.go?s=1:5#L1"}, + {"fmt/print.go", 0, 0, 0, "/src/pkg/fmt/print.go"}, + {"fmt/print.go", 0, 1, 5, "/src/pkg/fmt/print.go?s=1:5#L1"}, + } { + if got := srcPosLinkFunc(tc.src, tc.line, tc.low, tc.high); got != tc.want { + t.Errorf("srcLinkFunc(%v, %v, %v, %v) = %v; want %v", tc.src, tc.line, tc.low, tc.high, got, tc.want) + } + } +} + +func TestSrcLinkFunc(t *testing.T) { + for _, tc := range []struct { + src string + want string + }{ + {"/src/pkg/fmt/print.go", "/src/pkg/fmt/print.go"}, + {"src/pkg/fmt/print.go", "/src/pkg/fmt/print.go"}, + {"/fmt/print.go", "/src/pkg/fmt/print.go"}, + {"fmt/print.go", "/src/pkg/fmt/print.go"}, + } { + if got := srcLinkFunc(tc.src); got != tc.want { + t.Errorf("srcLinkFunc(%v) = %v; want %v", tc.src, got, tc.want) + } + } +} + +func TestQueryLinkFunc(t *testing.T) { + for _, tc := range []struct { + src string + query string + line int + want string + }{ + {"/src/pkg/fmt/print.go", "Sprintf", 33, "/src/pkg/fmt/print.go?h=Sprintf#L33"}, + {"/src/pkg/fmt/print.go", "Sprintf", 0, "/src/pkg/fmt/print.go?h=Sprintf"}, + {"src/pkg/fmt/print.go", "EOF", 33, "/src/pkg/fmt/print.go?h=EOF#L33"}, + {"src/pkg/fmt/print.go", "a%3f+%26b", 1, "/src/pkg/fmt/print.go?h=a%3f+%26b#L1"}, + } { + if got := queryLinkFunc(tc.src, tc.query, tc.line); got != tc.want { + t.Errorf("queryLinkFunc(%v, %v, %v) = %v; want %v", tc.src, tc.query, tc.line, got, tc.want) + } + } +} + +func TestDocLinkFunc(t *testing.T) { + for _, tc := range []struct { + src string + ident string + want string + }{ + {"/src/pkg/fmt", "Sprintf", "/pkg/fmt/#Sprintf"}, + {"/src/pkg/fmt", "EOF", "/pkg/fmt/#EOF"}, + } { + if got := docLinkFunc(tc.src, tc.ident); got != tc.want { + t.Errorf("docLinkFunc(%v, %v) = %v; want %v", tc.src, tc.ident, got, tc.want) + } + } +} + +func TestSanitizeFunc(t *testing.T) { + for _, tc := range []struct { + src string + want string + }{ + {}, + {"foo", "foo"}, + {"func f()", "func f()"}, + {"func f(a int,)", "func f(a int)"}, + {"func f(a int,\n)", "func f(a int)"}, + {"func f(\n\ta int,\n\tb int,\n\tc int,\n)", "func f(a int, b int, c int)"}, + {" ( a, b, c ) ", "(a, b, c)"}, + {"( a, b, c int, foo bar , )", "(a, b, c int, foo bar)"}, + {"{ a, b}", "{a, b}"}, + {"[ a, b]", "[a, b]"}, + } { + if got := sanitizeFunc(tc.src); got != tc.want { + t.Errorf("sanitizeFunc(%v) = %v; want %v", tc.src, got, tc.want) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/index.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/index.go new file mode 100644 index 00000000..eb5182de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/index.go @@ -0,0 +1,1533 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file contains the infrastructure to create an +// identifier and full-text index for a set of Go files. +// +// Algorithm for identifier index: +// - traverse all .go files of the file tree specified by root +// - for each identifier (word) encountered, collect all occurrences (spots) +// into a list; this produces a list of spots for each word +// - reduce the lists: from a list of spots to a list of FileRuns, +// and from a list of FileRuns into a list of PakRuns +// - make a HitList from the PakRuns +// +// Details: +// - keep two lists per word: one containing package-level declarations +// that have snippets, and one containing all other spots +// - keep the snippets in a separate table indexed by snippet index +// and store the snippet index in place of the line number in a SpotInfo +// (the line number for spots with snippets is stored in the snippet) +// - at the end, create lists of alternative spellings for a given +// word +// +// Algorithm for full text index: +// - concatenate all source code in a byte buffer (in memory) +// - add the files to a file set in lockstep as they are added to the byte +// buffer such that a byte buffer offset corresponds to the Pos value for +// that file location +// - create a suffix array from the concatenated sources +// +// String lookup in full text index: +// - use the suffix array to lookup a string's offsets - the offsets +// correspond to the Pos values relative to the file set +// - translate the Pos values back into file and line information and +// sort the result + +package godoc + +import ( + "bufio" + "bytes" + "encoding/gob" + "errors" + "fmt" + "go/ast" + "go/doc" + "go/parser" + "go/token" + "index/suffixarray" + "io" + "log" + "os" + pathpkg "path" + "path/filepath" + "regexp" + "runtime" + "sort" + "strconv" + "strings" + "sync" + "time" + "unicode" + + "code.google.com/p/go.tools/godoc/util" + "code.google.com/p/go.tools/godoc/vfs" +) + +// ---------------------------------------------------------------------------- +// InterfaceSlice is a helper type for sorting interface +// slices according to some slice-specific sort criteria. + +type comparer func(x, y interface{}) bool + +type interfaceSlice struct { + slice []interface{} + less comparer +} + +// ---------------------------------------------------------------------------- +// RunList + +// A RunList is a list of entries that can be sorted according to some +// criteria. A RunList may be compressed by grouping "runs" of entries +// which are equal (according to the sort critera) into a new RunList of +// runs. For instance, a RunList containing pairs (x, y) may be compressed +// into a RunList containing pair runs (x, {y}) where each run consists of +// a list of y's with the same x. +type RunList []interface{} + +func (h RunList) sort(less comparer) { + sort.Sort(&interfaceSlice{h, less}) +} + +func (p *interfaceSlice) Len() int { return len(p.slice) } +func (p *interfaceSlice) Less(i, j int) bool { return p.less(p.slice[i], p.slice[j]) } +func (p *interfaceSlice) Swap(i, j int) { p.slice[i], p.slice[j] = p.slice[j], p.slice[i] } + +// Compress entries which are the same according to a sort criteria +// (specified by less) into "runs". +func (h RunList) reduce(less comparer, newRun func(h RunList) interface{}) RunList { + if len(h) == 0 { + return nil + } + // len(h) > 0 + + // create runs of entries with equal values + h.sort(less) + + // for each run, make a new run object and collect them in a new RunList + var hh RunList + i, x := 0, h[0] + for j, y := range h { + if less(x, y) { + hh = append(hh, newRun(h[i:j])) + i, x = j, h[j] // start a new run + } + } + // add final run, if any + if i < len(h) { + hh = append(hh, newRun(h[i:])) + } + + return hh +} + +// ---------------------------------------------------------------------------- +// KindRun + +// Debugging support. Disable to see multiple entries per line. +const removeDuplicates = true + +// A KindRun is a run of SpotInfos of the same kind in a given file. +// The kind (3 bits) is stored in each SpotInfo element; to find the +// kind of a KindRun, look at any of its elements. +type KindRun []SpotInfo + +// KindRuns are sorted by line number or index. Since the isIndex bit +// is always the same for all infos in one list we can compare lori's. +func (k KindRun) Len() int { return len(k) } +func (k KindRun) Less(i, j int) bool { return k[i].Lori() < k[j].Lori() } +func (k KindRun) Swap(i, j int) { k[i], k[j] = k[j], k[i] } + +// FileRun contents are sorted by Kind for the reduction into KindRuns. +func lessKind(x, y interface{}) bool { return x.(SpotInfo).Kind() < y.(SpotInfo).Kind() } + +// newKindRun allocates a new KindRun from the SpotInfo run h. +func newKindRun(h RunList) interface{} { + run := make(KindRun, len(h)) + for i, x := range h { + run[i] = x.(SpotInfo) + } + + // Spots were sorted by file and kind to create this run. + // Within this run, sort them by line number or index. + sort.Sort(run) + + if removeDuplicates { + // Since both the lori and kind field must be + // same for duplicates, and since the isIndex + // bit is always the same for all infos in one + // list we can simply compare the entire info. + k := 0 + prev := SpotInfo(1<<32 - 1) // an unlikely value + for _, x := range run { + if x != prev { + run[k] = x + k++ + prev = x + } + } + run = run[0:k] + } + + return run +} + +// ---------------------------------------------------------------------------- +// FileRun + +// A Pak describes a Go package. +type Pak struct { + Path string // path of directory containing the package + Name string // package name as declared by package clause +} + +// Paks are sorted by name (primary key) and by import path (secondary key). +func (p *Pak) less(q *Pak) bool { + return p.Name < q.Name || p.Name == q.Name && p.Path < q.Path +} + +// A File describes a Go file. +type File struct { + Name string // directory-local file name + Pak *Pak // the package to which the file belongs +} + +// Path returns the file path of f. +func (f *File) Path() string { + return pathpkg.Join(f.Pak.Path, f.Name) +} + +// A Spot describes a single occurrence of a word. +type Spot struct { + File *File + Info SpotInfo +} + +// A FileRun is a list of KindRuns belonging to the same file. +type FileRun struct { + File *File + Groups []KindRun +} + +// Spots are sorted by file path for the reduction into FileRuns. +func lessSpot(x, y interface{}) bool { + fx := x.(Spot).File + fy := y.(Spot).File + // same as "return fx.Path() < fy.Path()" but w/o computing the file path first + px := fx.Pak.Path + py := fy.Pak.Path + return px < py || px == py && fx.Name < fy.Name +} + +// newFileRun allocates a new FileRun from the Spot run h. +func newFileRun(h RunList) interface{} { + file := h[0].(Spot).File + + // reduce the list of Spots into a list of KindRuns + h1 := make(RunList, len(h)) + for i, x := range h { + h1[i] = x.(Spot).Info + } + h2 := h1.reduce(lessKind, newKindRun) + + // create the FileRun + groups := make([]KindRun, len(h2)) + for i, x := range h2 { + groups[i] = x.(KindRun) + } + return &FileRun{file, groups} +} + +// ---------------------------------------------------------------------------- +// PakRun + +// A PakRun describes a run of *FileRuns of a package. +type PakRun struct { + Pak *Pak + Files []*FileRun +} + +// Sorting support for files within a PakRun. +func (p *PakRun) Len() int { return len(p.Files) } +func (p *PakRun) Less(i, j int) bool { return p.Files[i].File.Name < p.Files[j].File.Name } +func (p *PakRun) Swap(i, j int) { p.Files[i], p.Files[j] = p.Files[j], p.Files[i] } + +// FileRuns are sorted by package for the reduction into PakRuns. +func lessFileRun(x, y interface{}) bool { + return x.(*FileRun).File.Pak.less(y.(*FileRun).File.Pak) +} + +// newPakRun allocates a new PakRun from the *FileRun run h. +func newPakRun(h RunList) interface{} { + pak := h[0].(*FileRun).File.Pak + files := make([]*FileRun, len(h)) + for i, x := range h { + files[i] = x.(*FileRun) + } + run := &PakRun{pak, files} + sort.Sort(run) // files were sorted by package; sort them by file now + return run +} + +// ---------------------------------------------------------------------------- +// HitList + +// A HitList describes a list of PakRuns. +type HitList []*PakRun + +// PakRuns are sorted by package. +func lessPakRun(x, y interface{}) bool { return x.(*PakRun).Pak.less(y.(*PakRun).Pak) } + +func reduce(h0 RunList) HitList { + // reduce a list of Spots into a list of FileRuns + h1 := h0.reduce(lessSpot, newFileRun) + // reduce a list of FileRuns into a list of PakRuns + h2 := h1.reduce(lessFileRun, newPakRun) + // sort the list of PakRuns by package + h2.sort(lessPakRun) + // create a HitList + h := make(HitList, len(h2)) + for i, p := range h2 { + h[i] = p.(*PakRun) + } + return h +} + +// filter returns a new HitList created by filtering +// all PakRuns from h that have a matching pakname. +func (h HitList) filter(pakname string) HitList { + var hh HitList + for _, p := range h { + if p.Pak.Name == pakname { + hh = append(hh, p) + } + } + return hh +} + +// ---------------------------------------------------------------------------- +// AltWords + +type wordPair struct { + canon string // canonical word spelling (all lowercase) + alt string // alternative spelling +} + +// An AltWords describes a list of alternative spellings for a +// canonical (all lowercase) spelling of a word. +type AltWords struct { + Canon string // canonical word spelling (all lowercase) + Alts []string // alternative spelling for the same word +} + +// wordPairs are sorted by their canonical spelling. +func lessWordPair(x, y interface{}) bool { return x.(*wordPair).canon < y.(*wordPair).canon } + +// newAltWords allocates a new AltWords from the *wordPair run h. +func newAltWords(h RunList) interface{} { + canon := h[0].(*wordPair).canon + alts := make([]string, len(h)) + for i, x := range h { + alts[i] = x.(*wordPair).alt + } + return &AltWords{canon, alts} +} + +func (a *AltWords) filter(s string) *AltWords { + var alts []string + for _, w := range a.Alts { + if w != s { + alts = append(alts, w) + } + } + if len(alts) > 0 { + return &AltWords{a.Canon, alts} + } + return nil +} + +// Ident stores information about external identifiers in order to create +// links to package documentation. +type Ident struct { + Path string // e.g. "net/http" + Package string // e.g. "http" + Name string // e.g. "NewRequest" + Doc string // e.g. "NewRequest returns a new Request..." +} + +type byPackage []Ident + +func (s byPackage) Len() int { return len(s) } +func (s byPackage) Less(i, j int) bool { + if s[i].Package == s[j].Package { + return s[i].Path < s[j].Path + } + return s[i].Package < s[j].Package +} +func (s byPackage) Swap(i, j int) { s[i], s[j] = s[j], s[i] } + +// Filter creates a new Ident list where the results match the given +// package name. +func (s byPackage) filter(pakname string) []Ident { + if s == nil { + return nil + } + var res []Ident + for _, i := range s { + if i.Package == pakname { + res = append(res, i) + } + } + return res +} + +// ---------------------------------------------------------------------------- +// Indexer + +type IndexResult struct { + Decls RunList // package-level declarations (with snippets) + Others RunList // all other occurrences +} + +// Statistics provides statistics information for an index. +type Statistics struct { + Bytes int // total size of indexed source files + Files int // number of indexed source files + Lines int // number of lines (all files) + Words int // number of different identifiers + Spots int // number of identifier occurrences +} + +// An Indexer maintains the data structures and provides the machinery +// for indexing .go files under a file tree. It implements the path.Visitor +// interface for walking file trees, and the ast.Visitor interface for +// walking Go ASTs. +type Indexer struct { + c *Corpus + fset *token.FileSet // file set for all indexed files + fsOpenGate chan bool // send pre fs.Open; receive on close + + mu sync.Mutex // guards all the following + sources bytes.Buffer // concatenated sources + strings map[string]string // interned string + packages map[Pak]*Pak // interned *Paks + words map[string]*IndexResult // RunLists of Spots + snippets []*Snippet // indices are stored in SpotInfos + current *token.File // last file added to file set + file *File // AST for current file + decl ast.Decl // AST for current decl + stats Statistics + throttle *util.Throttle + importCount map[string]int // package path ("net/http") => count + packagePath map[string]map[string]bool // "template" => "text/template" => true + exports map[string]map[string]SpotKind // "net/http" => "ListenAndServe" => FuncDecl + curPkgExports map[string]SpotKind + idents map[SpotKind]map[string][]Ident // kind => name => list of Idents +} + +func (x *Indexer) intern(s string) string { + if s, ok := x.strings[s]; ok { + return s + } + x.strings[s] = s + return s +} + +func (x *Indexer) lookupPackage(path, name string) *Pak { + // In the source directory tree, more than one package may + // live in the same directory. For the packages map, construct + // a key that includes both the directory path and the package + // name. + key := Pak{Path: x.intern(path), Name: x.intern(name)} + pak := x.packages[key] + if pak == nil { + pak = &key + x.packages[key] = pak + } + return pak +} + +func (x *Indexer) addSnippet(s *Snippet) int { + index := len(x.snippets) + x.snippets = append(x.snippets, s) + return index +} + +func (x *Indexer) visitIdent(kind SpotKind, id *ast.Ident) { + if id == nil { + return + } + name := x.intern(id.Name) + + switch kind { + case TypeDecl, FuncDecl, ConstDecl, VarDecl: + x.curPkgExports[name] = kind + } + + lists, found := x.words[name] + if !found { + lists = new(IndexResult) + x.words[name] = lists + } + + if kind == Use || x.decl == nil { + if x.c.IndexGoCode { + // not a declaration or no snippet required + info := makeSpotInfo(kind, x.current.Line(id.Pos()), false) + lists.Others = append(lists.Others, Spot{x.file, info}) + } + } else { + // a declaration with snippet + index := x.addSnippet(NewSnippet(x.fset, x.decl, id)) + info := makeSpotInfo(kind, index, true) + lists.Decls = append(lists.Decls, Spot{x.file, info}) + } + + x.stats.Spots++ +} + +func (x *Indexer) visitFieldList(kind SpotKind, flist *ast.FieldList) { + for _, f := range flist.List { + x.decl = nil // no snippets for fields + for _, name := range f.Names { + x.visitIdent(kind, name) + } + ast.Walk(x, f.Type) + // ignore tag - not indexed at the moment + } +} + +func (x *Indexer) visitSpec(kind SpotKind, spec ast.Spec) { + switch n := spec.(type) { + case *ast.ImportSpec: + x.visitIdent(ImportDecl, n.Name) + if n.Path != nil { + if imp, err := strconv.Unquote(n.Path.Value); err == nil { + x.importCount[x.intern(imp)]++ + } + } + + case *ast.ValueSpec: + for _, n := range n.Names { + x.visitIdent(kind, n) + } + ast.Walk(x, n.Type) + for _, v := range n.Values { + ast.Walk(x, v) + } + + case *ast.TypeSpec: + x.visitIdent(TypeDecl, n.Name) + ast.Walk(x, n.Type) + } +} + +func (x *Indexer) visitGenDecl(decl *ast.GenDecl) { + kind := VarDecl + if decl.Tok == token.CONST { + kind = ConstDecl + } + x.decl = decl + for _, s := range decl.Specs { + x.visitSpec(kind, s) + } +} + +func (x *Indexer) Visit(node ast.Node) ast.Visitor { + switch n := node.(type) { + case nil: + // nothing to do + + case *ast.Ident: + x.visitIdent(Use, n) + + case *ast.FieldList: + x.visitFieldList(VarDecl, n) + + case *ast.InterfaceType: + x.visitFieldList(MethodDecl, n.Methods) + + case *ast.DeclStmt: + // local declarations should only be *ast.GenDecls; + // ignore incorrect ASTs + if decl, ok := n.Decl.(*ast.GenDecl); ok { + x.decl = nil // no snippets for local declarations + x.visitGenDecl(decl) + } + + case *ast.GenDecl: + x.decl = n + x.visitGenDecl(n) + + case *ast.FuncDecl: + kind := FuncDecl + if n.Recv != nil { + kind = MethodDecl + ast.Walk(x, n.Recv) + } + x.decl = n + x.visitIdent(kind, n.Name) + ast.Walk(x, n.Type) + if n.Body != nil { + ast.Walk(x, n.Body) + } + + case *ast.File: + x.decl = nil + x.visitIdent(PackageClause, n.Name) + for _, d := range n.Decls { + ast.Walk(x, d) + } + + default: + return x + } + + return nil +} + +// addFile adds a file to the index if possible and returns the file set file +// and the file's AST if it was successfully parsed as a Go file. If addFile +// failed (that is, if the file was not added), it returns file == nil. +func (x *Indexer) addFile(f vfs.ReadSeekCloser, filename string, goFile bool) (file *token.File, ast *ast.File) { + defer f.Close() + + // The file set's base offset and x.sources size must be in lock-step; + // this permits the direct mapping of suffix array lookup results to + // to corresponding Pos values. + // + // When a file is added to the file set, its offset base increases by + // the size of the file + 1; and the initial base offset is 1. Add an + // extra byte to the sources here. + x.sources.WriteByte(0) + + // If the sources length doesn't match the file set base at this point + // the file set implementation changed or we have another error. + base := x.fset.Base() + if x.sources.Len() != base { + panic("internal error: file base incorrect") + } + + // append file contents (src) to x.sources + if _, err := x.sources.ReadFrom(f); err == nil { + src := x.sources.Bytes()[base:] + + if goFile { + // parse the file and in the process add it to the file set + if ast, err = parser.ParseFile(x.fset, filename, src, parser.ParseComments); err == nil { + file = x.fset.File(ast.Pos()) // ast.Pos() is inside the file + return + } + // file has parse errors, and the AST may be incorrect - + // set lines information explicitly and index as ordinary + // text file (cannot fall through to the text case below + // because the file has already been added to the file set + // by the parser) + file = x.fset.File(token.Pos(base)) // token.Pos(base) is inside the file + file.SetLinesForContent(src) + ast = nil + return + } + + if util.IsText(src) { + // only add the file to the file set (for the full text index) + file = x.fset.AddFile(filename, x.fset.Base(), len(src)) + file.SetLinesForContent(src) + return + } + } + + // discard possibly added data + x.sources.Truncate(base - 1) // -1 to remove added byte 0 since no file was added + return +} + +// Design note: Using an explicit white list of permitted files for indexing +// makes sure that the important files are included and massively reduces the +// number of files to index. The advantage over a blacklist is that unexpected +// (non-blacklisted) files won't suddenly explode the index. + +// Files are whitelisted if they have a file name or extension +// present as key in whitelisted. +var whitelisted = map[string]bool{ + ".bash": true, + ".c": true, + ".cc": true, + ".cpp": true, + ".cxx": true, + ".css": true, + ".go": true, + ".goc": true, + ".h": true, + ".hh": true, + ".hpp": true, + ".hxx": true, + ".html": true, + ".js": true, + ".out": true, + ".py": true, + ".s": true, + ".sh": true, + ".txt": true, + ".xml": true, + "AUTHORS": true, + "CONTRIBUTORS": true, + "LICENSE": true, + "Makefile": true, + "PATENTS": true, + "README": true, +} + +// isWhitelisted returns true if a file is on the list +// of "permitted" files for indexing. The filename must +// be the directory-local name of the file. +func isWhitelisted(filename string) bool { + key := pathpkg.Ext(filename) + if key == "" { + // file has no extension - use entire filename + key = filename + } + return whitelisted[key] +} + +func (x *Indexer) indexDocs(dirname string, filename string, astFile *ast.File) { + pkgName := astFile.Name.Name + if pkgName == "main" { + return + } + dirname = pathpkg.Clean(dirname) + astPkg := ast.Package{ + Name: pkgName, + Files: map[string]*ast.File{ + filename: astFile, + }, + } + var m doc.Mode + docPkg := doc.New(&astPkg, dirname, m) + addIdent := func(sk SpotKind, name string, docstr string) { + if x.idents[sk] == nil { + x.idents[sk] = make(map[string][]Ident) + } + x.idents[sk][name] = append(x.idents[sk][name], Ident{ + Path: dirname, + Package: pkgName, + Name: name, + Doc: doc.Synopsis(docstr), + }) + } + foundPkg := false + if x.idents[PackageClause] != nil { + pkgs := x.idents[PackageClause][docPkg.Name] + for i, p := range pkgs { + if p.Path == dirname { + foundPkg = true + if docPkg.Doc != "" { + p.Doc = doc.Synopsis(docPkg.Doc) + pkgs[i] = p + } + break + } + } + } + if !foundPkg { + addIdent(PackageClause, docPkg.Name, docPkg.Doc) + } + for _, c := range docPkg.Consts { + for _, name := range c.Names { + addIdent(ConstDecl, name, c.Doc) + } + } + for _, t := range docPkg.Types { + addIdent(TypeDecl, t.Name, t.Doc) + for _, c := range t.Consts { + for _, name := range c.Names { + addIdent(ConstDecl, name, c.Doc) + } + } + for _, v := range t.Vars { + for _, name := range v.Names { + addIdent(VarDecl, name, v.Doc) + } + } + for _, f := range t.Funcs { + addIdent(FuncDecl, f.Name, f.Doc) + } + for _, f := range t.Methods { + addIdent(MethodDecl, f.Name, f.Doc) + // Change the name of methods to be ".". + // They will still be indexed as . + idents := x.idents[MethodDecl][f.Name] + idents[len(idents)-1].Name = t.Name + "." + f.Name + } + } + for _, v := range docPkg.Vars { + for _, name := range v.Names { + addIdent(VarDecl, name, v.Doc) + } + } + for _, f := range docPkg.Funcs { + addIdent(FuncDecl, f.Name, f.Doc) + } +} + +func (x *Indexer) indexGoFile(dirname string, filename string, file *token.File, astFile *ast.File) { + pkgName := astFile.Name.Name + + if x.c.IndexGoCode { + x.current = file + pak := x.lookupPackage(dirname, pkgName) + x.file = &File{filename, pak} + ast.Walk(x, astFile) + } + + if x.c.IndexDocs { + // Test files are already filtered out in visitFile if IndexGoCode and + // IndexFullText are false. Otherwise, check here. + isTestFile := (x.c.IndexGoCode || x.c.IndexFullText) && + (strings.HasSuffix(filename, "_test.go") || strings.HasPrefix(dirname, "/test/")) + if !isTestFile { + x.indexDocs(dirname, filename, astFile) + } + } + + ppKey := x.intern(pkgName) + if _, ok := x.packagePath[ppKey]; !ok { + x.packagePath[ppKey] = make(map[string]bool) + } + pkgPath := x.intern(strings.TrimPrefix(dirname, "/src/pkg/")) + x.packagePath[ppKey][pkgPath] = true + + // Merge in exported symbols found walking this file into + // the map for that package. + if len(x.curPkgExports) > 0 { + dest, ok := x.exports[pkgPath] + if !ok { + dest = make(map[string]SpotKind) + x.exports[pkgPath] = dest + } + for k, v := range x.curPkgExports { + dest[k] = v + } + } +} + +func (x *Indexer) visitFile(dirname string, fi os.FileInfo) { + if fi.IsDir() || !x.c.IndexEnabled { + return + } + + filename := pathpkg.Join(dirname, fi.Name()) + goFile := isGoFile(fi) + + switch { + case x.c.IndexFullText: + if !isWhitelisted(fi.Name()) { + return + } + case x.c.IndexGoCode: + if !goFile { + return + } + case x.c.IndexDocs: + if !goFile || + strings.HasSuffix(fi.Name(), "_test.go") || + strings.HasPrefix(dirname, "/test/") { + return + } + default: + // No indexing turned on. + return + } + + x.fsOpenGate <- true + defer func() { <-x.fsOpenGate }() + + // open file + f, err := x.c.fs.Open(filename) + if err != nil { + return + } + + x.mu.Lock() + defer x.mu.Unlock() + + x.throttle.Throttle() + + x.curPkgExports = make(map[string]SpotKind) + file, fast := x.addFile(f, filename, goFile) + if file == nil { + return // addFile failed + } + + if fast != nil { + x.indexGoFile(dirname, fi.Name(), file, fast) + } + + // update statistics + x.stats.Bytes += file.Size() + x.stats.Files++ + x.stats.Lines += file.LineCount() +} + +// indexOptions contains information that affects the contents of an index. +type indexOptions struct { + // Docs provides documentation search results. + // It is only consulted if IndexEnabled is true. + // The default values is true. + Docs bool + + // GoCode provides Go source code search results. + // It is only consulted if IndexEnabled is true. + // The default values is true. + GoCode bool + + // FullText provides search results from all files. + // It is only consulted if IndexEnabled is true. + // The default values is true. + FullText bool + + // MaxResults optionally specifies the maximum results for indexing. + // The default is 1000. + MaxResults int +} + +// ---------------------------------------------------------------------------- +// Index + +type LookupResult struct { + Decls HitList // package-level declarations (with snippets) + Others HitList // all other occurrences +} + +type Index struct { + fset *token.FileSet // file set used during indexing; nil if no textindex + suffixes *suffixarray.Index // suffixes for concatenated sources; nil if no textindex + words map[string]*LookupResult // maps words to hit lists + alts map[string]*AltWords // maps canonical(words) to lists of alternative spellings + snippets []*Snippet // all snippets, indexed by snippet index + stats Statistics + importCount map[string]int // package path ("net/http") => count + packagePath map[string]map[string]bool // "template" => "text/template" => true + exports map[string]map[string]SpotKind // "net/http" => "ListenAndServe" => FuncDecl + idents map[SpotKind]map[string][]Ident + opts indexOptions +} + +func canonical(w string) string { return strings.ToLower(w) } + +// Somewhat arbitrary, but I figure low enough to not hurt disk-based filesystems +// consuming file descriptors, where some systems have low 256 or 512 limits. +// Go should have a built-in way to cap fd usage under the ulimit. +const ( + maxOpenFiles = 200 + maxOpenDirs = 50 +) + +func (c *Corpus) throttle() float64 { + if c.IndexThrottle <= 0 { + return 0.9 + } + if c.IndexThrottle > 1.0 { + return 1.0 + } + return c.IndexThrottle +} + +// NewIndex creates a new index for the .go files provided by the corpus. +func (c *Corpus) NewIndex() *Index { + // initialize Indexer + // (use some reasonably sized maps to start) + x := &Indexer{ + c: c, + fset: token.NewFileSet(), + fsOpenGate: make(chan bool, maxOpenFiles), + strings: make(map[string]string), + packages: make(map[Pak]*Pak, 256), + words: make(map[string]*IndexResult, 8192), + throttle: util.NewThrottle(c.throttle(), 100*time.Millisecond), // run at least 0.1s at a time + importCount: make(map[string]int), + packagePath: make(map[string]map[string]bool), + exports: make(map[string]map[string]SpotKind), + idents: make(map[SpotKind]map[string][]Ident, 4), + } + + // index all files in the directories given by dirnames + var wg sync.WaitGroup // outstanding ReadDir + visitFile + dirGate := make(chan bool, maxOpenDirs) + for dirname := range c.fsDirnames() { + if c.IndexDirectory != nil && !c.IndexDirectory(dirname) { + continue + } + dirGate <- true + wg.Add(1) + go func(dirname string) { + defer func() { <-dirGate }() + defer wg.Done() + + list, err := c.fs.ReadDir(dirname) + if err != nil { + log.Printf("ReadDir(%q): %v; skipping directory", dirname, err) + return // ignore this directory + } + for _, fi := range list { + wg.Add(1) + go func(fi os.FileInfo) { + defer wg.Done() + x.visitFile(dirname, fi) + }(fi) + } + }(dirname) + } + wg.Wait() + + if !c.IndexFullText { + // the file set, the current file, and the sources are + // not needed after indexing if no text index is built - + // help GC and clear them + x.fset = nil + x.sources.Reset() + x.current = nil // contains reference to fset! + } + + // for each word, reduce the RunLists into a LookupResult; + // also collect the word with its canonical spelling in a + // word list for later computation of alternative spellings + words := make(map[string]*LookupResult) + var wlist RunList + for w, h := range x.words { + decls := reduce(h.Decls) + others := reduce(h.Others) + words[w] = &LookupResult{ + Decls: decls, + Others: others, + } + wlist = append(wlist, &wordPair{canonical(w), w}) + x.throttle.Throttle() + } + x.stats.Words = len(words) + + // reduce the word list {canonical(w), w} into + // a list of AltWords runs {canonical(w), {w}} + alist := wlist.reduce(lessWordPair, newAltWords) + + // convert alist into a map of alternative spellings + alts := make(map[string]*AltWords) + for i := 0; i < len(alist); i++ { + a := alist[i].(*AltWords) + alts[a.Canon] = a + } + + // create text index + var suffixes *suffixarray.Index + if c.IndexFullText { + suffixes = suffixarray.New(x.sources.Bytes()) + } + + for _, idMap := range x.idents { + for _, ir := range idMap { + sort.Sort(byPackage(ir)) + } + } + + return &Index{ + fset: x.fset, + suffixes: suffixes, + words: words, + alts: alts, + snippets: x.snippets, + stats: x.stats, + importCount: x.importCount, + packagePath: x.packagePath, + exports: x.exports, + idents: x.idents, + opts: indexOptions{ + Docs: x.c.IndexDocs, + GoCode: x.c.IndexGoCode, + FullText: x.c.IndexFullText, + MaxResults: x.c.MaxResults, + }, + } +} + +var ErrFileIndexVersion = errors.New("file index version out of date") + +const fileIndexVersion = 3 + +// fileIndex is the subset of Index that's gob-encoded for use by +// Index.Write and Index.Read. +type fileIndex struct { + Version int + Words map[string]*LookupResult + Alts map[string]*AltWords + Snippets []*Snippet + Fulltext bool + Stats Statistics + ImportCount map[string]int + PackagePath map[string]map[string]bool + Exports map[string]map[string]SpotKind + Idents map[SpotKind]map[string][]Ident + Opts indexOptions +} + +func (x *fileIndex) Write(w io.Writer) error { + return gob.NewEncoder(w).Encode(x) +} + +func (x *fileIndex) Read(r io.Reader) error { + return gob.NewDecoder(r).Decode(x) +} + +// WriteTo writes the index x to w. +func (x *Index) WriteTo(w io.Writer) (n int64, err error) { + w = countingWriter{&n, w} + fulltext := false + if x.suffixes != nil { + fulltext = true + } + fx := fileIndex{ + Version: fileIndexVersion, + Words: x.words, + Alts: x.alts, + Snippets: x.snippets, + Fulltext: fulltext, + Stats: x.stats, + ImportCount: x.importCount, + PackagePath: x.packagePath, + Exports: x.exports, + Idents: x.idents, + Opts: x.opts, + } + if err := fx.Write(w); err != nil { + return 0, err + } + if fulltext { + encode := func(x interface{}) error { + return gob.NewEncoder(w).Encode(x) + } + if err := x.fset.Write(encode); err != nil { + return 0, err + } + if err := x.suffixes.Write(w); err != nil { + return 0, err + } + } + return n, nil +} + +// ReadFrom reads the index from r into x; x must not be nil. +// If r does not also implement io.ByteReader, it will be wrapped in a bufio.Reader. +// If the index is from an old version, the error is ErrFileIndexVersion. +func (x *Index) ReadFrom(r io.Reader) (n int64, err error) { + // We use the ability to read bytes as a plausible surrogate for buffering. + if _, ok := r.(io.ByteReader); !ok { + r = bufio.NewReader(r) + } + r = countingReader{&n, r.(byteReader)} + var fx fileIndex + if err := fx.Read(r); err != nil { + return n, err + } + if fx.Version != fileIndexVersion { + return 0, ErrFileIndexVersion + } + x.words = fx.Words + x.alts = fx.Alts + x.snippets = fx.Snippets + x.stats = fx.Stats + x.importCount = fx.ImportCount + x.packagePath = fx.PackagePath + x.exports = fx.Exports + x.idents = fx.Idents + x.opts = fx.Opts + if fx.Fulltext { + x.fset = token.NewFileSet() + decode := func(x interface{}) error { + return gob.NewDecoder(r).Decode(x) + } + if err := x.fset.Read(decode); err != nil { + return n, err + } + x.suffixes = new(suffixarray.Index) + if err := x.suffixes.Read(r); err != nil { + return n, err + } + } + return n, nil +} + +// Stats returns index statistics. +func (x *Index) Stats() Statistics { + return x.stats +} + +// ImportCount returns a map from import paths to how many times they were seen. +func (x *Index) ImportCount() map[string]int { + return x.importCount +} + +// PackagePath returns a map from short package name to a set +// of full package path names that use that short package name. +func (x *Index) PackagePath() map[string]map[string]bool { + return x.packagePath +} + +// Exports returns a map from full package path to exported +// symbol name to its type. +func (x *Index) Exports() map[string]map[string]SpotKind { + return x.exports +} + +// Idents returns a map from identifier type to exported +// symbol name to the list of identifiers matching that name. +func (x *Index) Idents() map[SpotKind]map[string][]Ident { + return x.idents +} + +func (x *Index) lookupWord(w string) (match *LookupResult, alt *AltWords) { + match = x.words[w] + alt = x.alts[canonical(w)] + // remove current spelling from alternatives + // (if there is no match, the alternatives do + // not contain the current spelling) + if match != nil && alt != nil { + alt = alt.filter(w) + } + return +} + +// isIdentifier reports whether s is a Go identifier. +func isIdentifier(s string) bool { + for i, ch := range s { + if unicode.IsLetter(ch) || ch == '_' || i > 0 && unicode.IsDigit(ch) { + continue + } + return false + } + return len(s) > 0 +} + +// For a given query, which is either a single identifier or a qualified +// identifier, Lookup returns a SearchResult containing packages, a LookupResult, a +// list of alternative spellings, and identifiers, if any. Any and all results +// may be nil. If the query syntax is wrong, an error is reported. +func (x *Index) Lookup(query string) (*SearchResult, error) { + ss := strings.Split(query, ".") + + // check query syntax + for _, s := range ss { + if !isIdentifier(s) { + return nil, errors.New("all query parts must be identifiers") + } + } + rslt := &SearchResult{ + Query: query, + Idents: make(map[SpotKind][]Ident, 5), + } + // handle simple and qualified identifiers + switch len(ss) { + case 1: + ident := ss[0] + rslt.Hit, rslt.Alt = x.lookupWord(ident) + if rslt.Hit != nil { + // found a match - filter packages with same name + // for the list of packages called ident, if any + rslt.Pak = rslt.Hit.Others.filter(ident) + } + for k, v := range x.idents { + rslt.Idents[k] = v[ident] + } + + case 2: + pakname, ident := ss[0], ss[1] + rslt.Hit, rslt.Alt = x.lookupWord(ident) + if rslt.Hit != nil { + // found a match - filter by package name + // (no paks - package names are not qualified) + decls := rslt.Hit.Decls.filter(pakname) + others := rslt.Hit.Others.filter(pakname) + rslt.Hit = &LookupResult{decls, others} + } + for k, v := range x.idents { + rslt.Idents[k] = byPackage(v[ident]).filter(pakname) + } + + default: + return nil, errors.New("query is not a (qualified) identifier") + } + + return rslt, nil +} + +func (x *Index) Snippet(i int) *Snippet { + // handle illegal snippet indices gracefully + if 0 <= i && i < len(x.snippets) { + return x.snippets[i] + } + return nil +} + +type positionList []struct { + filename string + line int +} + +func (list positionList) Len() int { return len(list) } +func (list positionList) Less(i, j int) bool { return list[i].filename < list[j].filename } +func (list positionList) Swap(i, j int) { list[i], list[j] = list[j], list[i] } + +// unique returns the list sorted and with duplicate entries removed +func unique(list []int) []int { + sort.Ints(list) + var last int + i := 0 + for _, x := range list { + if i == 0 || x != last { + last = x + list[i] = x + i++ + } + } + return list[0:i] +} + +// A FileLines value specifies a file and line numbers within that file. +type FileLines struct { + Filename string + Lines []int +} + +// LookupRegexp returns the number of matches and the matches where a regular +// expression r is found in the full text index. At most n matches are +// returned (thus found <= n). +// +func (x *Index) LookupRegexp(r *regexp.Regexp, n int) (found int, result []FileLines) { + if x.suffixes == nil || n <= 0 { + return + } + // n > 0 + + var list positionList + // FindAllIndex may returns matches that span across file boundaries. + // Such matches are unlikely, buf after eliminating them we may end up + // with fewer than n matches. If we don't have enough at the end, redo + // the search with an increased value n1, but only if FindAllIndex + // returned all the requested matches in the first place (if it + // returned fewer than that there cannot be more). + for n1 := n; found < n; n1 += n - found { + found = 0 + matches := x.suffixes.FindAllIndex(r, n1) + // compute files, exclude matches that span file boundaries, + // and map offsets to file-local offsets + list = make(positionList, len(matches)) + for _, m := range matches { + // by construction, an offset corresponds to the Pos value + // for the file set - use it to get the file and line + p := token.Pos(m[0]) + if file := x.fset.File(p); file != nil { + if base := file.Base(); base <= m[1] && m[1] <= base+file.Size() { + // match [m[0], m[1]) is within the file boundaries + list[found].filename = file.Name() + list[found].line = file.Line(p) + found++ + } + } + } + if found == n || len(matches) < n1 { + // found all matches or there's no chance to find more + break + } + } + list = list[0:found] + sort.Sort(list) // sort by filename + + // collect matches belonging to the same file + var last string + var lines []int + addLines := func() { + if len(lines) > 0 { + // remove duplicate lines + result = append(result, FileLines{last, unique(lines)}) + lines = nil + } + } + for _, m := range list { + if m.filename != last { + addLines() + last = m.filename + } + lines = append(lines, m.line) + } + addLines() + + return +} + +// InvalidateIndex should be called whenever any of the file systems +// under godoc's observation change so that the indexer is kicked on. +func (c *Corpus) invalidateIndex() { + c.fsModified.Set(nil) + c.refreshMetadata() +} + +// indexUpToDate() returns true if the search index is not older +// than any of the file systems under godoc's observation. +// +func (c *Corpus) indexUpToDate() bool { + _, fsTime := c.fsModified.Get() + _, siTime := c.searchIndex.Get() + return !fsTime.After(siTime) +} + +// feedDirnames feeds the directory names of all directories +// under the file system given by root to channel c. +// +func (c *Corpus) feedDirnames(ch chan<- string) { + if dir, _ := c.fsTree.Get(); dir != nil { + for d := range dir.(*Directory).iter(false) { + ch <- d.Path + } + } +} + +// fsDirnames() returns a channel sending all directory names +// of all the file systems under godoc's observation. +// +func (c *Corpus) fsDirnames() <-chan string { + ch := make(chan string, 256) // buffered for fewer context switches + go func() { + c.feedDirnames(ch) + close(ch) + }() + return ch +} + +// CompatibleWith reports whether the Index x is compatible with the corpus +// indexing options set in c. +func (x *Index) CompatibleWith(c *Corpus) bool { + return x.opts.Docs == c.IndexDocs && + x.opts.GoCode == c.IndexGoCode && + x.opts.FullText == c.IndexFullText && + x.opts.MaxResults == c.MaxResults +} + +func (c *Corpus) readIndex(filenames string) error { + matches, err := filepath.Glob(filenames) + if err != nil { + return err + } else if matches == nil { + return fmt.Errorf("no index files match %q", filenames) + } + sort.Strings(matches) // make sure files are in the right order + files := make([]io.Reader, 0, len(matches)) + for _, filename := range matches { + f, err := os.Open(filename) + if err != nil { + return err + } + defer f.Close() + files = append(files, f) + } + x := new(Index) + if _, err := x.ReadFrom(io.MultiReader(files...)); err != nil { + return err + } + if !x.CompatibleWith(c) { + return fmt.Errorf("index file options are incompatible: %v", x.opts) + } + c.searchIndex.Set(x) + return nil +} + +func (c *Corpus) UpdateIndex() { + if c.Verbose { + log.Printf("updating index...") + } + start := time.Now() + throttle := c.IndexThrottle + if throttle <= 0 { + throttle = 0.9 + } else if throttle > 1.0 { + throttle = 1.0 + } + index := c.NewIndex() + stop := time.Now() + c.searchIndex.Set(index) + if c.Verbose { + secs := stop.Sub(start).Seconds() + stats := index.Stats() + log.Printf("index updated (%gs, %d bytes of source, %d files, %d lines, %d unique words, %d spots)", + secs, stats.Bytes, stats.Files, stats.Lines, stats.Words, stats.Spots) + } + memstats := new(runtime.MemStats) + runtime.ReadMemStats(memstats) + if c.Verbose { + log.Printf("before GC: bytes = %d footprint = %d", memstats.HeapAlloc, memstats.Sys) + } + runtime.GC() + runtime.ReadMemStats(memstats) + if c.Verbose { + log.Printf("after GC: bytes = %d footprint = %d", memstats.HeapAlloc, memstats.Sys) + } +} + +// RunIndexer runs forever, indexing. +func (c *Corpus) RunIndexer() { + // initialize the index from disk if possible + if c.IndexFiles != "" { + if err := c.readIndex(c.IndexFiles); err != nil { + log.Printf("error reading index from file %s: %v", c.IndexFiles, err) + return + } + } + + // Repeatedly update the package directory tree and index. + // TODO(bgarcia): Use fsnotify to only update when notified of a filesystem change. + for { + c.initFSTree() + c.UpdateIndex() + if c.IndexInterval < 0 { + return + } + delay := 5 * time.Minute // by default, reindex every 5 minutes + if c.IndexInterval > 0 { + delay = c.IndexInterval + } + time.Sleep(delay) + } +} + +type countingWriter struct { + n *int64 + w io.Writer +} + +func (c countingWriter) Write(p []byte) (n int, err error) { + n, err = c.w.Write(p) + *c.n += int64(n) + return +} + +type byteReader interface { + io.Reader + io.ByteReader +} + +type countingReader struct { + n *int64 + r byteReader +} + +func (c countingReader) Read(p []byte) (n int, err error) { + n, err = c.r.Read(p) + *c.n += int64(n) + return +} + +func (c countingReader) ReadByte() (b byte, err error) { + b, err = c.r.ReadByte() + *c.n += 1 + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/index_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/index_test.go new file mode 100644 index 00000000..9a71a47e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/index_test.go @@ -0,0 +1,305 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package godoc + +import ( + "bytes" + "reflect" + "sort" + "strings" + "testing" + + "code.google.com/p/go.tools/godoc/vfs/mapfs" +) + +func newCorpus(t *testing.T) *Corpus { + c := NewCorpus(mapfs.New(map[string]string{ + "src/pkg/foo/foo.go": `// Package foo is an example. +package foo + +import "bar" + +const Pi = 3.1415 + +var Foos []Foo + +// Foo is stuff. +type Foo struct{} + +func New() *Foo { + return new(Foo) +} +`, + "src/pkg/bar/bar.go": `// Package bar is another example to test races. +package bar +`, + "src/pkg/other/bar/bar.go": `// Package bar is another bar package. +package bar +func X() {} +`, + "src/pkg/skip/skip.go": `// Package skip should be skipped. +package skip +func Skip() {} +`, + "src/pkg/bar/readme.txt": `Whitelisted text file. +`, + "src/pkg/bar/baz.zzz": `Text file not whitelisted. +`, + })) + c.IndexEnabled = true + c.IndexDirectory = func(dir string) bool { + return !strings.Contains(dir, "skip") + } + + if err := c.Init(); err != nil { + t.Fatal(err) + } + return c +} + +func TestIndex(t *testing.T) { + for _, docs := range []bool{true, false} { + for _, goCode := range []bool{true, false} { + for _, fullText := range []bool{true, false} { + c := newCorpus(t) + c.IndexDocs = docs + c.IndexGoCode = goCode + c.IndexFullText = fullText + c.UpdateIndex() + ix, _ := c.CurrentIndex() + if ix == nil { + t.Fatal("no index") + } + t.Logf("docs, goCode, fullText = %v,%v,%v", docs, goCode, fullText) + testIndex(t, c, ix) + } + } + } +} + +func TestIndexWriteRead(t *testing.T) { + type key struct { + docs, goCode, fullText bool + } + type val struct { + buf *bytes.Buffer + c *Corpus + } + m := map[key]val{} + + for _, docs := range []bool{true, false} { + for _, goCode := range []bool{true, false} { + for _, fullText := range []bool{true, false} { + k := key{docs, goCode, fullText} + c := newCorpus(t) + c.IndexDocs = docs + c.IndexGoCode = goCode + c.IndexFullText = fullText + c.UpdateIndex() + ix, _ := c.CurrentIndex() + if ix == nil { + t.Fatal("no index") + } + var buf bytes.Buffer + nw, err := ix.WriteTo(&buf) + if err != nil { + t.Fatalf("Index.WriteTo: %v", err) + } + m[k] = val{bytes.NewBuffer(buf.Bytes()), c} + ix2 := new(Index) + nr, err := ix2.ReadFrom(&buf) + if err != nil { + t.Fatalf("Index.ReadFrom: %v", err) + } + if nr != nw { + t.Errorf("Wrote %d bytes to index but read %d", nw, nr) + } + testIndex(t, c, ix) + } + } + } + // Test CompatibleWith + for k1, v1 := range m { + ix := new(Index) + if _, err := ix.ReadFrom(v1.buf); err != nil { + t.Fatalf("Index.ReadFrom: %v", err) + } + for k2, v2 := range m { + if got, want := ix.CompatibleWith(v2.c), k1 == k2; got != want { + t.Errorf("CompatibleWith = %v; want %v for %v, %v", got, want, k1, k2) + } + } + } +} + +func testIndex(t *testing.T, c *Corpus, ix *Index) { + if _, ok := ix.words["Skip"]; ok { + t.Errorf("the word Skip was found; expected it to be skipped") + } + checkStats(t, c, ix) + checkImportCount(t, c, ix) + checkPackagePath(t, c, ix) + checkExports(t, c, ix) + checkIdents(t, c, ix) +} + +// checkStats checks the Index's statistics. +// Some statistics are only set when we're indexing Go code. +func checkStats(t *testing.T, c *Corpus, ix *Index) { + want := Statistics{} + if c.IndexFullText { + want.Bytes = 314 + want.Files = 4 + want.Lines = 21 + } else if c.IndexDocs || c.IndexGoCode { + want.Bytes = 291 + want.Files = 3 + want.Lines = 20 + } + if c.IndexGoCode { + want.Words = 8 + want.Spots = 12 + } + if got := ix.Stats(); !reflect.DeepEqual(got, want) { + t.Errorf("Stats = %#v; want %#v", got, want) + } +} + +// checkImportCount checks the Index's import count map. +// It is only set when we're indexing Go code. +func checkImportCount(t *testing.T, c *Corpus, ix *Index) { + want := map[string]int{} + if c.IndexGoCode { + want = map[string]int{ + "bar": 1, + } + } + if got := ix.ImportCount(); !reflect.DeepEqual(got, want) { + t.Errorf("ImportCount = %v; want %v", got, want) + } +} + +// checkPackagePath checks the Index's package path map. +// It is set if at least one of the indexing options is enabled. +func checkPackagePath(t *testing.T, c *Corpus, ix *Index) { + want := map[string]map[string]bool{} + if c.IndexDocs || c.IndexGoCode || c.IndexFullText { + want = map[string]map[string]bool{ + "foo": map[string]bool{ + "foo": true, + }, + "bar": map[string]bool{ + "bar": true, + "other/bar": true, + }, + } + } + if got := ix.PackagePath(); !reflect.DeepEqual(got, want) { + t.Errorf("PackagePath = %v; want %v", got, want) + } +} + +// checkExports checks the Index's exports map. +// It is only set when we're indexing Go code. +func checkExports(t *testing.T, c *Corpus, ix *Index) { + want := map[string]map[string]SpotKind{} + if c.IndexGoCode { + want = map[string]map[string]SpotKind{ + "foo": map[string]SpotKind{ + "Pi": ConstDecl, + "Foos": VarDecl, + "Foo": TypeDecl, + "New": FuncDecl, + }, + "other/bar": map[string]SpotKind{ + "X": FuncDecl, + }, + } + } + if got := ix.Exports(); !reflect.DeepEqual(got, want) { + t.Errorf("Exports = %v; want %v", got, want) + } +} + +// checkIdents checks the Index's indents map. +// It is only set when we're indexing documentation. +func checkIdents(t *testing.T, c *Corpus, ix *Index) { + want := map[SpotKind]map[string][]Ident{} + if c.IndexDocs { + want = map[SpotKind]map[string][]Ident{ + PackageClause: map[string][]Ident{ + "bar": []Ident{ + {"/src/pkg/bar", "bar", "bar", "Package bar is another example to test races."}, + {"/src/pkg/other/bar", "bar", "bar", "Package bar is another bar package."}, + }, + "foo": []Ident{{"/src/pkg/foo", "foo", "foo", "Package foo is an example."}}, + }, + ConstDecl: map[string][]Ident{ + "Pi": []Ident{{"/src/pkg/foo", "foo", "Pi", ""}}, + }, + VarDecl: map[string][]Ident{ + "Foos": []Ident{{"/src/pkg/foo", "foo", "Foos", ""}}, + }, + TypeDecl: map[string][]Ident{ + "Foo": []Ident{{"/src/pkg/foo", "foo", "Foo", "Foo is stuff."}}, + }, + FuncDecl: map[string][]Ident{ + "New": []Ident{{"/src/pkg/foo", "foo", "New", ""}}, + "X": []Ident{{"/src/pkg/other/bar", "bar", "X", ""}}, + }, + } + } + if got := ix.Idents(); !reflect.DeepEqual(got, want) { + t.Errorf("Idents = %v; want %v", got, want) + } +} + +func TestIdentResultSort(t *testing.T) { + for _, tc := range []struct { + ir []Ident + exp []Ident + }{ + { + ir: []Ident{ + {"/a/b/pkg2", "pkg2", "MyFunc2", ""}, + {"/b/d/pkg3", "pkg3", "MyFunc3", ""}, + {"/a/b/pkg1", "pkg1", "MyFunc1", ""}, + }, + exp: []Ident{ + {"/a/b/pkg1", "pkg1", "MyFunc1", ""}, + {"/a/b/pkg2", "pkg2", "MyFunc2", ""}, + {"/b/d/pkg3", "pkg3", "MyFunc3", ""}, + }, + }, + } { + if sort.Sort(byPackage(tc.ir)); !reflect.DeepEqual(tc.ir, tc.exp) { + t.Errorf("got: %v, want %v", tc.ir, tc.exp) + } + } +} + +func TestIdentPackageFilter(t *testing.T) { + for _, tc := range []struct { + ir []Ident + pak string + exp []Ident + }{ + { + ir: []Ident{ + {"/a/b/pkg2", "pkg2", "MyFunc2", ""}, + {"/b/d/pkg3", "pkg3", "MyFunc3", ""}, + {"/a/b/pkg1", "pkg1", "MyFunc1", ""}, + }, + pak: "pkg2", + exp: []Ident{ + {"/a/b/pkg2", "pkg2", "MyFunc2", ""}, + }, + }, + } { + if res := byPackage(tc.ir).filter(tc.pak); !reflect.DeepEqual(res, tc.exp) { + t.Errorf("got: %v, want %v", res, tc.exp) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/linkify.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/linkify.go new file mode 100644 index 00000000..0a8fb474 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/linkify.go @@ -0,0 +1,234 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This file implements LinkifyText which introduces +// links for identifiers pointing to their declarations. +// The approach does not cover all cases because godoc +// doesn't have complete type information, but it's +// reasonably good for browsing. + +package godoc + +import ( + "fmt" + "go/ast" + "go/token" + "io" + "strconv" +) + +// LinkifyText HTML-escapes source text and writes it to w. +// Identifiers that are in a "use" position (i.e., that are +// not being declared), are wrapped with HTML links pointing +// to the respective declaration, if possible. Comments are +// formatted the same way as with FormatText. +// +func LinkifyText(w io.Writer, text []byte, n ast.Node) { + links := linksFor(n) + + i := 0 // links index + prev := "" // prev HTML tag + linkWriter := func(w io.Writer, _ int, start bool) { + // end tag + if !start { + if prev != "" { + fmt.Fprintf(w, ``, prev) + prev = "" + } + return + } + + // start tag + prev = "" + if i < len(links) { + switch info := links[i]; { + case info.path != "" && info.name == "": + // package path + fmt.Fprintf(w, ``, info.path) + prev = "a" + case info.path != "" && info.name != "": + // qualified identifier + fmt.Fprintf(w, ``, info.path, info.name) + prev = "a" + case info.path == "" && info.name != "": + // local identifier + if info.mode == identVal { + fmt.Fprintf(w, ``, info.name) + prev = "span" + } else if ast.IsExported(info.name) { + fmt.Fprintf(w, ``, info.name) + prev = "a" + } + } + i++ + } + } + + idents := tokenSelection(text, token.IDENT) + comments := tokenSelection(text, token.COMMENT) + FormatSelections(w, text, linkWriter, idents, selectionTag, comments) +} + +// A link describes the (HTML) link information for an identifier. +// The zero value of a link represents "no link". +// +type link struct { + mode identMode + path, name string // package path, identifier name +} + +// linksFor returns the list of links for the identifiers used +// by node in the same order as they appear in the source. +// +func linksFor(node ast.Node) (list []link) { + modes := identModesFor(node) + + // NOTE: We are expecting ast.Inspect to call the + // callback function in source text order. + ast.Inspect(node, func(node ast.Node) bool { + switch n := node.(type) { + case *ast.Ident: + m := modes[n] + info := link{mode: m} + switch m { + case identUse: + if n.Obj == nil && predeclared[n.Name] { + info.path = builtinPkgPath + } + info.name = n.Name + case identDef: + // any declaration expect const or var - empty link + case identVal: + // const or var declaration + info.name = n.Name + } + list = append(list, info) + return false + case *ast.SelectorExpr: + // Detect qualified identifiers of the form pkg.ident. + // If anything fails we return true and collect individual + // identifiers instead. + if x, _ := n.X.(*ast.Ident); x != nil { + // x must be a package for a qualified identifier + if obj := x.Obj; obj != nil && obj.Kind == ast.Pkg { + if spec, _ := obj.Decl.(*ast.ImportSpec); spec != nil { + // spec.Path.Value is the import path + if path, err := strconv.Unquote(spec.Path.Value); err == nil { + // Register two links, one for the package + // and one for the qualified identifier. + info := link{path: path} + list = append(list, info) + info.name = n.Sel.Name + list = append(list, info) + return false + } + } + } + } + } + return true + }) + + return +} + +// The identMode describes how an identifier is "used" at its source location. +type identMode int + +const ( + identUse identMode = iota // identifier is used (must be zero value for identMode) + identDef // identifier is defined + identVal // identifier is defined in a const or var declaration +) + +// identModesFor returns a map providing the identMode for each identifier used by node. +func identModesFor(node ast.Node) map[*ast.Ident]identMode { + m := make(map[*ast.Ident]identMode) + + ast.Inspect(node, func(node ast.Node) bool { + switch n := node.(type) { + case *ast.Field: + for _, n := range n.Names { + m[n] = identDef + } + case *ast.ImportSpec: + if name := n.Name; name != nil { + m[name] = identDef + } + case *ast.ValueSpec: + for _, n := range n.Names { + m[n] = identVal + } + case *ast.TypeSpec: + m[n.Name] = identDef + case *ast.FuncDecl: + m[n.Name] = identDef + case *ast.AssignStmt: + // Short variable declarations only show up if we apply + // this code to all source code (as opposed to exported + // declarations only). + if n.Tok == token.DEFINE { + // Some of the lhs variables may be re-declared, + // so technically they are not defs. We don't + // care for now. + for _, x := range n.Lhs { + // Each lhs expression should be an + // ident, but we are conservative and check. + if n, _ := x.(*ast.Ident); n != nil { + m[n] = identVal + } + } + } + } + return true + }) + + return m +} + +// The predeclared map represents the set of all predeclared identifiers. +// TODO(gri) This information is also encoded in similar maps in go/doc, +// but not exported. Consider exporting an accessor and using +// it instead. +var predeclared = map[string]bool{ + "bool": true, + "byte": true, + "complex64": true, + "complex128": true, + "error": true, + "float32": true, + "float64": true, + "int": true, + "int8": true, + "int16": true, + "int32": true, + "int64": true, + "rune": true, + "string": true, + "uint": true, + "uint8": true, + "uint16": true, + "uint32": true, + "uint64": true, + "uintptr": true, + "true": true, + "false": true, + "iota": true, + "nil": true, + "append": true, + "cap": true, + "close": true, + "complex": true, + "copy": true, + "delete": true, + "imag": true, + "len": true, + "make": true, + "new": true, + "panic": true, + "print": true, + "println": true, + "real": true, + "recover": true, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/meta.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/meta.go new file mode 100644 index 00000000..ae8ee5a9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/meta.go @@ -0,0 +1,144 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package godoc + +import ( + "bytes" + "encoding/json" + "log" + pathpkg "path" + "strings" + "time" + + "code.google.com/p/go.tools/godoc/vfs" +) + +var ( + doctype = []byte("") +) + +// ---------------------------------------------------------------------------- +// Documentation Metadata + +// TODO(adg): why are some exported and some aren't? -brad +type Metadata struct { + Title string + Subtitle string + Template bool // execute as template + Path string // canonical path for this page + filePath string // filesystem path relative to goroot +} + +func (m *Metadata) FilePath() string { return m.filePath } + +// extractMetadata extracts the Metadata from a byte slice. +// It returns the Metadata value and the remaining data. +// If no metadata is present the original byte slice is returned. +// +func extractMetadata(b []byte) (meta Metadata, tail []byte, err error) { + tail = b + if !bytes.HasPrefix(b, jsonStart) { + return + } + end := bytes.Index(b, jsonEnd) + if end < 0 { + return + } + b = b[len(jsonStart)-1 : end+1] // drop leading + + + + + +

+ When invoked with the -analysis flag, godoc performs + static analysis on the Go packages it indexes and displays the + results in the source and package views. This document provides a + brief tour of these features. +

+

+ The current status of the analysis features is that of a technology + preview; there are many problems and user-interface difficulties + which will be addressed in due course. Some known problems are + mentioned in passing, accompanied by a warning triangle, . + + Nonetheless, godoc's static analysis may be immediately useful today + for small-to-medium sized Go corpora, and it contains several + advances over the state of the art in code browsing. +

+ +

Type analysis features

+

+ godoc -analysis=type performs static checking similar + to that done by a compiler: it detects ill-formed programs, resolves + each identifier to the entity it denotes, computes the type of each + expression and the method set of each type, and determines which + types are assignable to each interface type. + + Type analysis is relatively quick, requiring just a few seconds for + the >200 packages of the standard library, for example. +

+ +

Compiler errors

+

+ If any source file contains a compilation error, the source view + will highlight the errant location in red. Hovering over it + displays the error message. +

+
+

+ The mark-up for compilation errors may + cause duplication of portions of the input. +

+ +

Identifier resolution

+

+ In the source view, every referring identifier is annotated with + information about the language entity it refers to: a package, + constant, variable, type, function or statement label. + + Hovering over the identifier reveals the entity's kind and type + (e.g. var x int or func f + func(int) string). +

+
+
+ +

+ Clicking the link takes you to the entity's definition. +

+
+ +

Type information: size/alignment, method set, interfaces

+

+ Clicking on the identifier that defines a named type causes a panel + to appear, displaying information about the named type, including + its size and alignment in bytes, its method set, and its + implements relation: the set of types T that are assignable to + or from this type U where at least one of T or U is an interface. + + This example shows information about net/rpc.methodType. +

+ +

+ The method set includes not only the declared methods of the type, + but also any methods "promoted" from anonymous fields of structs, + such as sync.Mutex in this example. + + In addition, the receiver type is displayed as *T or + T depending on whether it requires the address or just + a copy of the receiver value. +

+

+ The method set and implements relation are also available + via the package view. +

+ + +

Pointer analysis features

+

+ godoc -analysis=pointer performs a precise + whole-program pointer analysis. In other words, it + approximates the set of memory locations to which each + reference—not just vars of kind *T, but also + []T, func, map, + chan, and interface—may refer. This + information reveals the possible destinations of each dynamic call + (via a func variable or interface method), and the + relationship between send and receive operations on the same + channel. +

+

+ Pointer analysis is currently quite slow, + taking around two minutes for the standard library. This will + improve markedly with the planned addition of a constraint + optimizer. +

+ +

Call graph navigation

+

+ When pointer analysis is complete, the source view annotates the + code with callers and callees information: callers + information is associated with the func keyword that + declares a function, and callees information is associated with the + open paren '(' of + a function call. +

+

+ In this example, hovering over the declaration of the + rot13 function (defined in in strings/strings.test.go) + reveals that it is called in exactly one place. +

+ +

+ Clicking the link navigates to the sole caller. (If there were + multiple callers, a list of choices would be displayed first.) +

+ +

+ Notice that hovering over this call reveals that there are 19 + possible callees at this site, of which our rot13 + function was just one: this is a dynamic call through a variable of + type func(rune) rune. + + Clicking on the call brings up the list of all 19 potential callees, + shown truncated. Many of them are anonymous functions. +

+ +

+ Pointer analysis gives a very precise approximation of the call + graph compared to type-based techniques. + + As a case in point, the next example shows the dynamic call inside + the testing package responsible for calling all + user-defined functions named ExampleXYZ. +

+ +

+ Recall that all such functions have type func(), + i.e. no arguments and no results. A type-based approximation could + only conclude that this call might dispatch to any function matching + that type—and these are very numerous in most + programs—but pointer analysis can track the flow of specific + func values through the testing package. + + As an indication of its precision, the result contains only + functions whose name starts with Example. +

+ +

Intra-package call graph

+

+ The same call graph information is presented in a very different way + in the package view. For each package, an interactive tree view + allows exploration of the call graph as it relates to just that + package; all functions from other packages are elided. + + The roots of the tree are the external entry points of the package: + not only its exported functions, but also any unexported or + anonymous functions that are called (dynamically) from outside the + package. +

+

+ This example shows the entry points of the + path/filepath package, with the call graph for + Glob expanded several levels +

+ +

+ Notice that the nodes for Glob and Join appear multiple times: the + tree is a partial unrolling of a cyclic graph; the full unrolling + is in general infinite. +

+

+ For each function documented in the package view, another + interactive tree view allows exploration of the same graph starting + at that function. + + This is a portion of the internal graph of + net/http.ListenAndServe. +

+ + +

Channel peers (send ↔ receive)

+

+ Because concurrent Go programs use channels to pass not just values + but also control between different goroutines, it is natural when + reading Go code to want to navigate from a channel send to the + corresponding receive so as to understand the sequence of events. +

+

+ Godoc annotates every channel operation—make, send, range, + receive, close—with a link to a panel displaying information + about other operations that might alias the same channel. +

+

+ This example, from the tests of net/http, shows a send + operation on a chan bool. +

+ +

+ Clicking on the <- send operator reveals that this + channel is made at a unique location (line 332) and that there are + three receive operations that might read this value. + + It hardly needs pointing out that some channel element types are + very widely used (e.g. struct{}, bool, int, interface{}) and that a + typical Go program might contain dozens of receive operations on a + value of type chan bool; yet the pointer analysis is + able to distinguish operations on channels at a much finer precision + than based on their type alone. +

+

+ Notice also that the send occurs in a different (anonymous) function + from the outer one containing the make and the receive + operations. +

+

+ Here's another example of send on a different chan + bool, also in package net/http: +

+ +

+ The analysis finds just one receive operation that might receive + from this channel, in the test for this feature. +

+ + +

Known issues

+

+ There is no UI indication of the state of + the analysis (pending, complete, failed) during warm-up.
+ + All analysis results pertain to exactly + one configuration (e.g. amd64 linux). Files that are conditionally + compiled based on different platforms or build tags are not visible + to the analysis.
+ + Files that import "C" require + preprocessing by the cgo tool. The file offsets after preprocessing + do not align with the unpreprocessed file, so markup is misaligned.
+ + Files are not periodically re-analyzed. + If the files change underneath the running server, the displayed + markup is misaligned.
+ + Additional issues are listed at go.tools/godoc/analysis/README.
+

diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-def.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-def.png new file mode 100644 index 00000000..b0d9e55a Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-def.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-field.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-field.png new file mode 100644 index 00000000..76cbe5a3 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-field.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-func.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-func.png new file mode 100644 index 00000000..69670fa2 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ident-func.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ipcg-func.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ipcg-func.png new file mode 100644 index 00000000..523318d6 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ipcg-func.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ipcg-pkg.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ipcg-pkg.png new file mode 100644 index 00000000..e0290685 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/ipcg-pkg.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/typeinfo-pkg.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/typeinfo-pkg.png new file mode 100644 index 00000000..91bd5f74 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/typeinfo-pkg.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/typeinfo-src.png b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/typeinfo-src.png new file mode 100644 index 00000000..6e5b147e Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/analysis/typeinfo-src.png differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/bake.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/bake.go new file mode 100644 index 00000000..b7e61579 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/bake.go @@ -0,0 +1,66 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build ignore + +// Command bake takes a list of file names and writes a Go source file to +// standard output that declares a map of string constants containing the input files. +// +// For example, the command +// bake foo.html bar.txt +// produces a source file in package main that declares the variable bakedFiles +// that is a map with keys "foo.html" and "bar.txt" that contain the contents +// of foo.html and bar.txt. +package main + +import ( + "bufio" + "bytes" + "fmt" + "io/ioutil" + "os" + "unicode/utf8" +) + +func main() { + if err := bake(os.Args[1:]); err != nil { + fmt.Fprintln(os.Stderr, err) + os.Exit(1) + } +} + +func bake(files []string) error { + w := bufio.NewWriter(os.Stdout) + fmt.Fprintf(w, "%v\n\npackage static\n\n", warning) + fmt.Fprintf(w, "var Files = map[string]string{\n") + for _, fn := range files { + b, err := ioutil.ReadFile(fn) + if err != nil { + return err + } + fmt.Fprintf(w, "\t%q: ", fn) + if utf8.Valid(b) { + fmt.Fprintf(w, "`%s`", sanitize(b)) + } else { + fmt.Fprintf(w, "%q", b) + } + fmt.Fprintln(w, ",\n") + } + fmt.Fprintln(w, "}") + return w.Flush() +} + +// sanitize prepares a valid UTF-8 string as a raw string constant. +func sanitize(b []byte) []byte { + // Replace ` with `+"`"+` + b = bytes.Replace(b, []byte("`"), []byte("`+\"`\"+`"), -1) + + // Replace BOM with `+"\xEF\xBB\xBF"+` + // (A BOM is valid UTF-8 but not permitted in Go source files. + // I wouldn't bother handling this, but for some insane reason + // jquery.js has a BOM somewhere in the middle.) + return bytes.Replace(b, []byte("\xEF\xBB\xBF"), []byte("`+\"\\xEF\\xBB\\xBF\"+`"), -1) +} + +const warning = "// DO NOT EDIT ** This file was generated with the bake tool ** DO NOT EDIT //" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/bake.sh b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/bake.sh new file mode 100755 index 00000000..42f31bf3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/bake.sh @@ -0,0 +1,60 @@ +#!/usr/bin/env bash +# Copyright 2013 The Go Authors. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +set -e + +STATIC=" + analysis/call3.png + analysis/call-eg.png + analysis/callers1.png + analysis/callers2.png + analysis/chan1.png + analysis/chan2a.png + analysis/chan2b.png + analysis/error1.png + analysis/help.html + analysis/ident-def.png + analysis/ident-field.png + analysis/ident-func.png + analysis/ipcg-func.png + analysis/ipcg-pkg.png + analysis/typeinfo-pkg.png + analysis/typeinfo-src.png + callgraph.html + codewalk.html + codewalkdir.html + dirlist.html + error.html + example.html + godoc.html + godocs.js + images/minus.gif + images/plus.gif + images/treeview-black-line.gif + images/treeview-black.gif + images/treeview-default-line.gif + images/treeview-default.gif + images/treeview-gray-line.gif + images/treeview-gray.gif + implements.html + jquery.js + jquery.treeview.css + jquery.treeview.edit.js + jquery.treeview.js + methodset.html + opensearch.xml + package.html + package.txt + play.js + playground.js + search.html + search.txt + searchcode.html + searchdoc.html + searchtxt.html + style.css +" + +go run bake.go $STATIC | gofmt > static.go diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/callgraph.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/callgraph.html new file mode 100644 index 00000000..49c285c4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/callgraph.html @@ -0,0 +1,15 @@ + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/codewalk.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/codewalk.html new file mode 100644 index 00000000..0f3d22a2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/codewalk.html @@ -0,0 +1,56 @@ + + + + + +
+
+
+
+
+ + Pop Out Code + + +
+
+ +
+
+
+ code on leftright + code width 70% + filepaths shownhidden +
+
+
+
+ {{range .Step}} +
+ +
{{html .Title}}
+
+ {{with .Err}} + ERROR LOADING FILE: {{html .}}

+ {{end}} + {{.XML}} +
+
{{html .}}
+
+ {{end}} +
+
+ previous step + • + next step +
+
+
diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/codewalkdir.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/codewalkdir.html new file mode 100644 index 00000000..b7674c6c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/codewalkdir.html @@ -0,0 +1,16 @@ + + + +{{range .}} + + {{$name_html := html .Name}} + + + + +{{end}} +
{{$name_html}} {{html .Title}}
diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/dirlist.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/dirlist.html new file mode 100644 index 00000000..a3e1a2fa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/dirlist.html @@ -0,0 +1,31 @@ + + +

+ + + + + + + + + + + +{{range .}} + + {{$name_html := fileInfoName . | html}} + + + + + + +{{end}} + +
File Bytes Modified
..
{{$name_html}}{{html .Size}}{{fileInfoTime . | html}}
+

diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/doc.go new file mode 100644 index 00000000..3f3a27cb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/doc.go @@ -0,0 +1,8 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package static exports a map of static file content that supports the godoc +// user interface. The map should be used with the mapfs package, see +// code.google.com/p/godoc/vfs/mapfs. +package static diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/error.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/error.html new file mode 100644 index 00000000..7573aa23 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/error.html @@ -0,0 +1,9 @@ + + +

+{{html .}} +

diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/example.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/example.html new file mode 100644 index 00000000..cda2a849 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/example.html @@ -0,0 +1,28 @@ +
+ +
+

Example{{example_suffix .Name}}

+ {{with .Doc}}

{{html .}}

{{end}} + {{$output := .Output}} + {{with .Play}} +
+
+
{{html $output}}
+
+ Run + Format + +
+
+ {{else}} +

Code:

+
{{.Code}}
+ {{with .Output}} +

Output:

+
{{html .}}
+ {{end}} + {{end}} +
+
diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/godoc.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/godoc.html new file mode 100644 index 00000000..6a34b308 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/godoc.html @@ -0,0 +1,105 @@ + + + + +{{with .Tabtitle}} + {{html .}} - The Go Programming Language +{{else}} + The Go Programming Language +{{end}} + +{{if .SearchBox}} + +{{end}} + + + + + +
+
+ +
+ + +
+ +
+ +{{if .Playground}} +
+
+
+
+ Run + Format + +
+
+{{end}} + +
+
+ +{{with .Title}} +
+

{{html .}}

+{{end}} +{{with .Subtitle}} +

{{html .}}

+{{end}} + +{{/* The Table of Contents is automatically inserted in this
. + Do not delete this
. */}} + + +{{/* Body is HTML-escaped elsewhere */}} +{{printf "%s" .Body}} + + + +
+
+ +
+
+... +
+ + + + + + +{{if .Playground}} + +{{end}} + + + + + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/godocs.js b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/godocs.js new file mode 100644 index 00000000..232f1170 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/godocs.js @@ -0,0 +1,515 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* A little code to ease navigation of these documents. + * + * On window load we: + * + Bind search box hint placeholder show/hide events (bindSearchEvents) + * + Generate a table of contents (generateTOC) + * + Bind foldable sections (bindToggles) + * + Bind links to foldable sections (bindToggleLinks) + */ + +(function() { +'use strict'; + +function bindSearchEvents() { + + var search = $('#search'); + if (search.length === 0) { + return; // no search box + } + + function clearInactive() { + if (search.is('.inactive')) { + search.val(''); + search.removeClass('inactive'); + } + } + + function restoreInactive() { + if (search.val() !== '') { + return; + } + search.val(search.attr('placeholder')); + search.addClass('inactive'); + } + + search.on('focus', clearInactive); + search.on('blur', restoreInactive); + + restoreInactive(); +} + +/* Generates a table of contents: looks for h2 and h3 elements and generates + * links. "Decorates" the element with id=="nav" with this table of contents. + */ +function generateTOC() { + if ($('#manual-nav').length > 0) { + return; + } + + var nav = $('#nav'); + if (nav.length === 0) { + return; + } + + var toc_items = []; + $(nav).nextAll('h2, h3').each(function() { + var node = this; + if (node.id == '') + node.id = 'tmp_' + toc_items.length; + var link = $('').attr('href', '#' + node.id).text($(node).text()); + var item; + if ($(node).is('h2')) { + item = $('
'); + } else { // h3 + item = $('
'); + } + item.append(link); + toc_items.push(item); + }); + if (toc_items.length <= 1) { + return; + } + + var dl1 = $('
'); + var dl2 = $('
'); + + var split_index = (toc_items.length / 2) + 1; + if (split_index < 8) { + split_index = toc_items.length; + } + for (var i = 0; i < split_index; i++) { + dl1.append(toc_items[i]); + } + for (/* keep using i */; i < toc_items.length; i++) { + dl2.append(toc_items[i]); + } + + var tocTable = $('').appendTo(nav); + var tocBody = $('').appendTo(tocTable); + var tocRow = $('').appendTo(tocBody); + + // 1st column + $(']","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
","
"],thead:[1,"
').appendTo(tocRow).append(dl1); + // 2nd column + $('').appendTo(tocRow).append(dl2); +} + +function bindToggle(el) { + $('.toggleButton', el).click(function() { + if ($(el).is('.toggle')) { + $(el).addClass('toggleVisible').removeClass('toggle'); + } else { + $(el).addClass('toggle').removeClass('toggleVisible'); + } + }); +} +function bindToggles(selector) { + $(selector).each(function(i, el) { + bindToggle(el); + }); +} + +function bindToggleLink(el, prefix) { + $(el).click(function() { + var href = $(el).attr('href'); + var i = href.indexOf('#'+prefix); + if (i < 0) { + return; + } + var id = '#' + prefix + href.slice(i+1+prefix.length); + if ($(id).is('.toggle')) { + $(id).find('.toggleButton').first().click(); + } + }); +} +function bindToggleLinks(selector, prefix) { + $(selector).each(function(i, el) { + bindToggleLink(el, prefix); + }); +} + +function setupDropdownPlayground() { + if (!$('#page').is('.wide')) { + return; // don't show on front page + } + var button = $('#playgroundButton'); + var div = $('#playground'); + var setup = false; + button.toggle(function() { + button.addClass('active'); + div.show(); + if (setup) { + return; + } + setup = true; + playground({ + 'codeEl': $('.code', div), + 'outputEl': $('.output', div), + 'runEl': $('.run', div), + 'fmtEl': $('.fmt', div), + 'shareEl': $('.share', div), + 'shareRedirect': 'http://play.golang.org/p/' + }); + }, + function() { + button.removeClass('active'); + div.hide(); + }); + button.show(); + $('#menu').css('min-width', '+=60'); +} + +function setupInlinePlayground() { + 'use strict'; + // Set up playground when each element is toggled. + $('div.play').each(function (i, el) { + // Set up playground for this example. + var setup = function() { + var code = $('.code', el); + playground({ + 'codeEl': code, + 'outputEl': $('.output', el), + 'runEl': $('.run', el), + 'fmtEl': $('.fmt', el), + 'shareEl': $('.share', el), + 'shareRedirect': 'http://play.golang.org/p/' + }); + + // Make the code textarea resize to fit content. + var resize = function() { + code.height(0); + var h = code[0].scrollHeight; + code.height(h+20); // minimize bouncing. + code.closest('.input').height(h); + }; + code.on('keydown', resize); + code.on('keyup', resize); + code.keyup(); // resize now. + }; + + // If example already visible, set up playground now. + if ($(el).is(':visible')) { + setup(); + return; + } + + // Otherwise, set up playground when example is expanded. + var built = false; + $(el).closest('.toggle').click(function() { + // Only set up once. + if (!built) { + setup(); + built = true; + } + }); + }); +} + +// fixFocus tries to put focus to div#page so that keyboard navigation works. +function fixFocus() { + var page = $('div#page'); + var topbar = $('div#topbar'); + page.css('outline', 0); // disable outline when focused + page.attr('tabindex', -1); // and set tabindex so that it is focusable + $(window).resize(function (evt) { + // only focus page when the topbar is at fixed position (that is, it's in + // front of page, and keyboard event will go to the former by default.) + // by focusing page, keyboard event will go to page so that up/down arrow, + // space, etc. will work as expected. + if (topbar.css('position') == "fixed") + page.focus(); + }).resize(); +} + +function toggleHash() { + var hash = $(window.location.hash); + if (hash.is('.toggle')) { + hash.find('.toggleButton').first().click(); + } +} + +function addPlusButtons() { + var po = document.createElement('script'); + po.type = 'text/javascript'; + po.async = true; + po.src = 'https://apis.google.com/js/platform.js'; + var s = document.getElementsByTagName('script')[0]; + s.parentNode.insertBefore(po, s); +} + +$(document).ready(function() { + bindSearchEvents(); + generateTOC(); + bindToggles(".toggle"); + bindToggles(".toggleVisible"); + bindToggleLinks(".exampleLink", "example_"); + bindToggleLinks(".overviewLink", ""); + bindToggleLinks(".examplesLink", ""); + bindToggleLinks(".indexLink", ""); + setupDropdownPlayground(); + setupInlinePlayground(); + fixFocus(); + setupTypeInfo(); + setupCallgraphs(); + toggleHash(); + addPlusButtons(); + + // godoc.html defines window.initFuncs in the tag, and root.html and + // codewalk.js push their on-page-ready functions to the list. + // We execute those functions here, to avoid loading jQuery until the page + // content is loaded. + for (var i = 0; i < window.initFuncs.length; i++) window.initFuncs[i](); +}); + +// -- analysis --------------------------------------------------------- + +// escapeHTML returns HTML for s, with metacharacters quoted. +// It is safe for use in both elements and attributes +// (unlike the "set innerText, read innerHTML" trick). +function escapeHTML(s) { + return s.replace(/&/g, '&'). + replace(/\"/g, '"'). + replace(/\'/g, '''). + replace(//g, '>'); +} + +// makeAnchor returns HTML for an element, given an anchorJSON object. +function makeAnchor(json) { + var html = escapeHTML(json.Text); + if (json.Href != "") { + html = "" + html + ""; + } + return html; +} + +function showLowFrame(html) { + var lowframe = document.getElementById('lowframe'); + lowframe.style.height = "200px"; + lowframe.innerHTML = "

" + html + "

\n" + + "
" +}; + +document.hideLowFrame = function() { + var lowframe = document.getElementById('lowframe'); + lowframe.style.height = "0px"; +} + +// onClickCallers is the onclick action for the 'func' tokens of a +// function declaration. +document.onClickCallers = function(index) { + var data = document.ANALYSIS_DATA[index] + if (data.Callers.length == 1 && data.Callers[0].Sites.length == 1) { + document.location = data.Callers[0].Sites[0].Href; // jump to sole caller + return; + } + + var html = "Callers of " + escapeHTML(data.Callee) + ":
\n"; + for (var i = 0; i < data.Callers.length; i++) { + var caller = data.Callers[i]; + html += "" + escapeHTML(caller.Func) + ""; + var sites = caller.Sites; + if (sites != null && sites.length > 0) { + html += " at line "; + for (var j = 0; j < sites.length; j++) { + if (j > 0) { + html += ", "; + } + html += "" + makeAnchor(sites[j]) + ""; + } + } + html += "
\n"; + } + showLowFrame(html); +}; + +// onClickCallees is the onclick action for the '(' token of a function call. +document.onClickCallees = function(index) { + var data = document.ANALYSIS_DATA[index] + if (data.Callees.length == 1) { + document.location = data.Callees[0].Href; // jump to sole callee + return; + } + + var html = "Callees of this " + escapeHTML(data.Descr) + ":
\n"; + for (var i = 0; i < data.Callees.length; i++) { + html += "" + makeAnchor(data.Callees[i]) + "
\n"; + } + showLowFrame(html); +}; + +// onClickTypeInfo is the onclick action for identifiers declaring a named type. +document.onClickTypeInfo = function(index) { + var data = document.ANALYSIS_DATA[index]; + var html = "Type " + data.Name + ": " + + "      (size=" + data.Size + ", align=" + data.Align + ")
\n"; + html += implementsHTML(data); + html += methodsetHTML(data); + showLowFrame(html); +}; + +// implementsHTML returns HTML for the implements relation of the +// specified TypeInfoJSON value. +function implementsHTML(info) { + var html = ""; + if (info.ImplGroups != null) { + for (var i = 0; i < info.ImplGroups.length; i++) { + var group = info.ImplGroups[i]; + var x = "" + escapeHTML(group.Descr) + " "; + for (var j = 0; j < group.Facts.length; j++) { + var fact = group.Facts[j]; + var y = "" + makeAnchor(fact.Other) + ""; + if (fact.ByKind != null) { + html += escapeHTML(fact.ByKind) + " type " + y + " implements " + x; + } else { + html += x + " implements " + y; + } + html += "
\n"; + } + } + } + return html; +} + + +// methodsetHTML returns HTML for the methodset of the specified +// TypeInfoJSON value. +function methodsetHTML(info) { + var html = ""; + if (info.Methods != null) { + for (var i = 0; i < info.Methods.length; i++) { + html += "" + makeAnchor(info.Methods[i]) + "
\n"; + } + } + return html; +} + +// onClickComm is the onclick action for channel "make" and "<-" +// send/receive tokens. +document.onClickComm = function(index) { + var ops = document.ANALYSIS_DATA[index].Ops + if (ops.length == 1) { + document.location = ops[0].Op.Href; // jump to sole element + return; + } + + var html = "Operations on this channel:
\n"; + for (var i = 0; i < ops.length; i++) { + html += makeAnchor(ops[i].Op) + " by " + escapeHTML(ops[i].Fn) + "
\n"; + } + if (ops.length == 0) { + html += "(none)
\n"; + } + showLowFrame(html); +}; + +$(window).load(function() { + // Scroll window so that first selection is visible. + // (This means we don't need to emit id='L%d' spans for each line.) + // TODO(adonovan): ideally, scroll it so that it's under the pointer, + // but I don't know how to get the pointer y coordinate. + var elts = document.getElementsByClassName("selection"); + if (elts.length > 0) { + elts[0].scrollIntoView() + } +}); + +// setupTypeInfo populates the "Implements" and "Method set" toggle for +// each type in the package doc. +function setupTypeInfo() { + for (var i in document.ANALYSIS_DATA) { + var data = document.ANALYSIS_DATA[i]; + + var el = document.getElementById("implements-" + i); + if (el != null) { + // el != null => data is TypeInfoJSON. + if (data.ImplGroups != null) { + el.innerHTML = implementsHTML(data); + el.parentNode.parentNode.style.display = "block"; + } + } + + var el = document.getElementById("methodset-" + i); + if (el != null) { + // el != null => data is TypeInfoJSON. + if (data.Methods != null) { + el.innerHTML = methodsetHTML(data); + el.parentNode.parentNode.style.display = "block"; + } + } + } +} + +function setupCallgraphs() { + if (document.CALLGRAPH == null) { + return + } + document.getElementById("pkg-callgraph").style.display = "block"; + + var treeviews = document.getElementsByClassName("treeview"); + for (var i in treeviews) { + var tree = treeviews[i]; + if (tree.id == null || tree.id.indexOf("callgraph-") != 0) { + continue; + } + var id = tree.id.substring("callgraph-".length); + $(tree).treeview({collapsed: true, animated: "fast"}); + document.cgAddChildren(tree, tree, [id]); + tree.parentNode.parentNode.style.display = "block"; + } +} + +document.cgAddChildren = function(tree, ul, indices) { + if (indices != null) { + for (var i = 0; i < indices.length; i++) { + var li = cgAddChild(tree, ul, document.CALLGRAPH[indices[i]]); + if (i == indices.length - 1) { + $(li).addClass("last"); + } + } + } + $(tree).treeview({animated: "fast", add: ul}); +} + +// cgAddChild adds an
  • element for document.CALLGRAPH node cgn to +// the parent
      element ul. tree is the tree's root
        element. +function cgAddChild(tree, ul, cgn) { + var li = document.createElement("li"); + ul.appendChild(li); + li.className = "closed"; + + var code = document.createElement("code"); + + if (cgn.Callees != null) { + $(li).addClass("expandable"); + + // Event handlers and innerHTML updates don't play nicely together, + // hence all this explicit DOM manipulation. + var hitarea = document.createElement("div"); + hitarea.className = "hitarea expandable-hitarea"; + li.appendChild(hitarea); + + li.appendChild(code); + + var childUL = document.createElement("ul"); + li.appendChild(childUL); + childUL.setAttribute('style', "display: none;"); + + var onClick = function() { + document.cgAddChildren(tree, childUL, cgn.Callees); + hitarea.removeEventListener('click', onClick) + }; + hitarea.addEventListener('click', onClick); + + } else { + li.appendChild(code); + } + code.innerHTML += " " + makeAnchor(cgn.Func); + return li +} + +})(); diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/minus.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/minus.gif new file mode 100644 index 00000000..47fb7b76 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/minus.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/plus.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/plus.gif new file mode 100644 index 00000000..69066216 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/plus.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-black-line.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-black-line.gif new file mode 100644 index 00000000..e5496877 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-black-line.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-black.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-black.gif new file mode 100644 index 00000000..b718d17f Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-black.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-default-line.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-default-line.gif new file mode 100644 index 00000000..37114d30 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-default-line.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-default.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-default.gif new file mode 100644 index 00000000..76eee60d Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-default.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-gray-line.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-gray-line.gif new file mode 100644 index 00000000..37600447 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-gray-line.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-gray.gif b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-gray.gif new file mode 100644 index 00000000..cfdf1ab6 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/images/treeview-gray.gif differ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/implements.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/implements.html new file mode 100644 index 00000000..a02340c4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/implements.html @@ -0,0 +1,9 @@ + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.js b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.js new file mode 100644 index 00000000..bc3fbc81 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.js @@ -0,0 +1,2 @@ +/*! jQuery v1.8.2 jquery.com | jquery.org/license */ +(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
        a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
        t
        ",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
        ",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
        ",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

        ",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/
  • ","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
    ","
    "]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
    ").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.css b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.css new file mode 100644 index 00000000..ac33361a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.css @@ -0,0 +1,76 @@ +/* https://github.com/jzaefferer/jquery-treeview/blob/master/jquery.treeview.css */ +/* License: MIT. */ +.treeview, .treeview ul { + padding: 0; + margin: 0; + list-style: none; +} + +.treeview ul { + background-color: white; + margin-top: 4px; +} + +.treeview .hitarea { + background: url(images/treeview-default.gif) -64px -25px no-repeat; + height: 16px; + width: 16px; + margin-left: -16px; + float: left; + cursor: pointer; +} +/* fix for IE6 */ +* html .hitarea { + display: inline; + float:none; +} + +.treeview li { + margin: 0; + padding: 3px 0pt 3px 16px; +} + +.treeview a.selected { + background-color: #eee; +} + +#treecontrol { margin: 1em 0; display: none; } + +.treeview .hover { color: red; cursor: pointer; } + +.treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; } +.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; } + +.treeview .expandable-hitarea { background-position: -80px -3px; } + +.treeview li.last { background-position: 0 -1766px } +.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } +.treeview li.lastCollapsable { background-position: 0 -111px } +.treeview li.lastExpandable { background-position: -32px -67px } + +.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; } + +.treeview-red li { background-image: url(images/treeview-red-line.gif); } +.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); } + +.treeview-black li { background-image: url(images/treeview-black-line.gif); } +.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); } + +.treeview-gray li { background-image: url(images/treeview-gray-line.gif); } +.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); } + +.treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); } +.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); } + +.treeview .placeholder { + background: url(images/ajax-loader.gif) 0 0 no-repeat; + height: 16px; + width: 16px; + display: block; +} + +.filetree li { padding: 3px 0 2px 16px; } +.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; } +.filetree span.folder { background: url(images/folder.gif) 0 0 no-repeat; } +.filetree li.expandable span.folder { background: url(images/folder-closed.gif) 0 0 no-repeat; } +.filetree span.file { background: url(images/file.gif) 0 0 no-repeat; } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.edit.js b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.edit.js new file mode 100644 index 00000000..9895b026 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.edit.js @@ -0,0 +1,39 @@ +/* https://github.com/jzaefferer/jquery-treeview/blob/master/jquery.treeview.edit.js */ +/* License: MIT. */ +(function($) { + var CLASSES = $.treeview.classes; + var proxied = $.fn.treeview; + $.fn.treeview = function(settings) { + settings = $.extend({}, settings); + if (settings.add) { + return this.trigger("add", [settings.add]); + } + if (settings.remove) { + return this.trigger("remove", [settings.remove]); + } + return proxied.apply(this, arguments).bind("add", function(event, branches) { + $(branches).prev() + .removeClass(CLASSES.last) + .removeClass(CLASSES.lastCollapsable) + .removeClass(CLASSES.lastExpandable) + .find(">.hitarea") + .removeClass(CLASSES.lastCollapsableHitarea) + .removeClass(CLASSES.lastExpandableHitarea); + $(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings, $(this).data("toggler")); + }).bind("remove", function(event, branches) { + var prev = $(branches).prev(); + var parent = $(branches).parent(); + $(branches).remove(); + prev.filter(":last-child").addClass(CLASSES.last) + .filter("." + CLASSES.expandable).replaceClass(CLASSES.last, CLASSES.lastExpandable).end() + .find(">.hitarea").replaceClass(CLASSES.expandableHitarea, CLASSES.lastExpandableHitarea).end() + .filter("." + CLASSES.collapsable).replaceClass(CLASSES.last, CLASSES.lastCollapsable).end() + .find(">.hitarea").replaceClass(CLASSES.collapsableHitarea, CLASSES.lastCollapsableHitarea); + if (parent.is(":not(:has(>))") && parent[0] != this) { + parent.parent().removeClass(CLASSES.collapsable).removeClass(CLASSES.expandable) + parent.siblings(".hitarea").andSelf().remove(); + } + }); + }; + +})(jQuery); diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.js b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.js new file mode 100644 index 00000000..356af238 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/jquery.treeview.js @@ -0,0 +1,256 @@ +/* + * Treeview 1.4.1 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 5759 2008-07-01 07:50:28Z joern.zaefferer $ + * + */ + +;(function($) { + + // TODO rewrite as a widget, removing all the extra plugins + $.extend($.fn, { + swapClass: function(c1, c2) { + var c1Elements = this.filter('.' + c1); + this.filter('.' + c2).removeClass(c2).addClass(c1); + c1Elements.removeClass(c1).addClass(c2); + return this; + }, + replaceClass: function(c1, c2) { + return this.filter('.' + c1).removeClass(c1).addClass(c2).end(); + }, + hoverClass: function(className) { + className = className || "hover"; + return this.hover(function() { + $(this).addClass(className); + }, function() { + $(this).removeClass(className); + }); + }, + heightToggle: function(animated, callback) { + animated ? + this.animate({ height: "toggle" }, animated, callback) : + this.each(function(){ + jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ](); + if(callback) + callback.apply(this, arguments); + }); + }, + heightHide: function(animated, callback) { + if (animated) { + this.animate({ height: "hide" }, animated, callback); + } else { + this.hide(); + if (callback) + this.each(callback); + } + }, + prepareBranches: function(settings) { + if (!settings.prerendered) { + // mark last tree items + this.filter(":last-child:not(ul)").addClass(CLASSES.last); + // collapse whole tree, or only those marked as closed, anyway except those marked as open + this.filter((settings.collapsed ? "" : "." + CLASSES.closed) + ":not(." + CLASSES.open + ")").find(">ul").hide(); + } + // return all items with sublists + return this.filter(":has(>ul)"); + }, + applyClasses: function(settings, toggler) { + // TODO use event delegation + this.filter(":has(>ul):not(:has(>a))").find(">span").unbind("click.treeview").bind("click.treeview", function(event) { + // don't handle click events on children, eg. checkboxes + if ( this == event.target ) + toggler.apply($(this).next()); + }).add( $("a", this) ).hoverClass(); + + if (!settings.prerendered) { + // handle closed ones first + this.filter(":has(>ul:hidden)") + .addClass(CLASSES.expandable) + .replaceClass(CLASSES.last, CLASSES.lastExpandable); + + // handle open ones + this.not(":has(>ul:hidden)") + .addClass(CLASSES.collapsable) + .replaceClass(CLASSES.last, CLASSES.lastCollapsable); + + // create hitarea if not present + var hitarea = this.find("div." + CLASSES.hitarea); + if (!hitarea.length) + hitarea = this.prepend("
    ").find("div." + CLASSES.hitarea); + hitarea.removeClass().addClass(CLASSES.hitarea).each(function() { + var classes = ""; + $.each($(this).parent().attr("class").split(" "), function() { + classes += this + "-hitarea "; + }); + $(this).addClass( classes ); + }) + } + + // apply event to hitarea + this.find("div." + CLASSES.hitarea).click( toggler ); + }, + treeview: function(settings) { + + settings = $.extend({ + cookieId: "treeview" + }, settings); + + if ( settings.toggle ) { + var callback = settings.toggle; + settings.toggle = function() { + return callback.apply($(this).parent()[0], arguments); + }; + } + + // factory for treecontroller + function treeController(tree, control) { + // factory for click handlers + function handler(filter) { + return function() { + // reuse toggle event handler, applying the elements to toggle + // start searching for all hitareas + toggler.apply( $("div." + CLASSES.hitarea, tree).filter(function() { + // for plain toggle, no filter is provided, otherwise we need to check the parent element + return filter ? $(this).parent("." + filter).length : true; + }) ); + return false; + }; + } + // click on first element to collapse tree + $("a:eq(0)", control).click( handler(CLASSES.collapsable) ); + // click on second to expand tree + $("a:eq(1)", control).click( handler(CLASSES.expandable) ); + // click on third to toggle tree + $("a:eq(2)", control).click( handler() ); + } + + // handle toggle event + function toggler() { + $(this) + .parent() + // swap classes for hitarea + .find(">.hitarea") + .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + // swap classes for parent li + .swapClass( CLASSES.collapsable, CLASSES.expandable ) + .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + // find child lists + .find( ">ul" ) + // toggle them + .heightToggle( settings.animated, settings.toggle ); + if ( settings.unique ) { + $(this).parent() + .siblings() + // swap classes for hitarea + .find(">.hitarea") + .replaceClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .replaceClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + .replaceClass( CLASSES.collapsable, CLASSES.expandable ) + .replaceClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + .find( ">ul" ) + .heightHide( settings.animated, settings.toggle ); + } + } + this.data("toggler", toggler); + + function serialize() { + function binary(arg) { + return arg ? 1 : 0; + } + var data = []; + branches.each(function(i, e) { + data[i] = $(e).is(":has(>ul:visible)") ? 1 : 0; + }); + $.cookie(settings.cookieId, data.join(""), settings.cookieOptions ); + } + + function deserialize() { + var stored = $.cookie(settings.cookieId); + if ( stored ) { + var data = stored.split(""); + branches.each(function(i, e) { + $(e).find(">ul")[ parseInt(data[i]) ? "show" : "hide" ](); + }); + } + } + + // add treeview class to activate styles + this.addClass("treeview"); + + // prepare branches and find all tree items with child lists + var branches = this.find("li").prepareBranches(settings); + + switch(settings.persist) { + case "cookie": + var toggleCallback = settings.toggle; + settings.toggle = function() { + serialize(); + if (toggleCallback) { + toggleCallback.apply(this, arguments); + } + }; + deserialize(); + break; + case "location": + var current = this.find("a").filter(function() { + return this.href.toLowerCase() == location.href.toLowerCase(); + }); + if ( current.length ) { + // TODO update the open/closed classes + var items = current.addClass("selected").parents("ul, li").add( current.next() ).show(); + if (settings.prerendered) { + // if prerendered is on, replicate the basic class swapping + items.filter("li") + .swapClass( CLASSES.collapsable, CLASSES.expandable ) + .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + .find(">.hitarea") + .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ); + } + } + break; + } + + branches.applyClasses(settings, toggler); + + // if control option is set, create the treecontroller and show it + if ( settings.control ) { + treeController(this, settings.control); + $(settings.control).show(); + } + + return this; + } + }); + + // classes used by the plugin + // need to be styled via external stylesheet, see first example + $.treeview = {}; + var CLASSES = ($.treeview.classes = { + open: "open", + closed: "closed", + expandable: "expandable", + expandableHitarea: "expandable-hitarea", + lastExpandableHitarea: "lastExpandable-hitarea", + collapsable: "collapsable", + collapsableHitarea: "collapsable-hitarea", + lastCollapsableHitarea: "lastCollapsable-hitarea", + lastCollapsable: "lastCollapsable", + lastExpandable: "lastExpandable", + last: "last", + hitarea: "hitarea" + }); + +})(jQuery); diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/methodset.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/methodset.html new file mode 100644 index 00000000..2a09c68d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/methodset.html @@ -0,0 +1,9 @@ + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/opensearch.xml b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/opensearch.xml new file mode 100644 index 00000000..1b652db3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/opensearch.xml @@ -0,0 +1,11 @@ + + + godoc + The Go Programming Language + go golang + + + /favicon.ico + UTF-8 + UTF-8 + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/package.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/package.html new file mode 100644 index 00000000..897fa32a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/package.html @@ -0,0 +1,277 @@ + + +{{with .PDoc}} + + + {{if $.IsMain}} + {{/* command documentation */}} + {{comment_html .Doc}} + {{else}} + {{/* package documentation */}} +
    +
    +
    import "{{html .ImportPath}}"
    +
    +
    +
    Overview
    +
    Index
    + {{if $.Examples}} +
    Examples
    + {{end}} + {{if $.Dirs}} +
    Subdirectories
    + {{end}} +
    +
    + +
    + +
    +

    Overview ▾

    + {{comment_html .Doc}} +
    +
    + {{example_html $ ""}} + +
    + +
    +

    Index ▾

    + + +
    +
    + {{if .Consts}} +
    Constants
    + {{end}} + {{if .Vars}} +
    Variables
    + {{end}} + {{range .Funcs}} + {{$name_html := html .Name}} +
    {{node_html $ .Decl false | sanitize}}
    + {{end}} + {{range .Types}} + {{$tname_html := html .Name}} +
    type {{$tname_html}}
    + {{range .Funcs}} + {{$name_html := html .Name}} +
        {{node_html $ .Decl false | sanitize}}
    + {{end}} + {{range .Methods}} + {{$name_html := html .Name}} +
        {{node_html $ .Decl false | sanitize}}
    + {{end}} + {{end}} + {{if $.Notes}} + {{range $marker, $item := $.Notes}} +
    {{noteTitle $marker | html}}s
    + {{end}} + {{end}} +
    +
    + + {{if $.Examples}} +
    +

    Examples

    +
    + {{range $.Examples}} +
    {{example_name .Name}}
    + {{end}} +
    +
    + {{end}} + + {{with .Filenames}} +

    Package files

    +

    + + {{range .}} + {{.|filename|html}} + {{end}} + +

    + {{end}} +
    +
    + + + + {{with .Consts}} +

    Constants

    + {{range .}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + {{end}} + {{with .Vars}} +

    Variables

    + {{range .}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + {{end}} + {{range .Funcs}} + {{/* Name is a string - no need for FSet */}} + {{$name_html := html .Name}} +

    func {{$name_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{example_html $ .Name}} + {{callgraph_html $ "" .Name}} + + {{end}} + {{range .Types}} + {{$tname := .Name}} + {{$tname_html := html .Name}} +

    type {{$tname_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + + {{range .Consts}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + + {{range .Vars}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + + {{example_html $ $tname}} + {{implements_html $ $tname}} + {{methodset_html $ $tname}} + + {{range .Funcs}} + {{$name_html := html .Name}} +

    func {{$name_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{example_html $ .Name}} + {{callgraph_html $ "" .Name}} + {{end}} + + {{range .Methods}} + {{$name_html := html .Name}} +

    func ({{html .Recv}}) {{$name_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{$name := printf "%s_%s" $tname .Name}} + {{example_html $ $name}} + {{callgraph_html $ .Recv .Name}} + {{end}} + {{end}} + {{end}} + + {{with $.Notes}} + {{range $marker, $content := .}} +

    {{noteTitle $marker | html}}s

    +
      + {{range .}} +
    • {{html .Body}}
    • + {{end}} +
    + {{end}} + {{end}} +{{end}} + +{{with .PAst}} + {{range $filename, $ast := .}} + {{$filename|filename|html}}:
    {{node_html $ $ast false}}
    + {{end}} +{{end}} + +{{with .Dirs}} + {{/* DirList entries are numbers and strings - no need for FSet */}} + {{if $.PDoc}} +

    Subdirectories

    + {{else}} +
    + +
    + {{end}} +
    + + + + + + {{if not $.DirFlat}} + + + + {{end}} + {{range .List}} + {{if $.DirFlat}} + {{if .HasPkg}} + + + + + + {{end}} + {{else}} + + + + + + {{end}} + {{end}} +
    Name    Synopsis
    ..
    {{html .Path}}    {{html .Synopsis}}
    {{repeat `     ` .Depth}}{{html .Name}}    {{html .Synopsis}}
    + {{if $.PDoc}}{{else}} +

    Need more packages? Check out the sub-repositories and other Go projects.

    + {{end}} +{{end}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/package.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/package.txt new file mode 100644 index 00000000..868d0643 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/package.txt @@ -0,0 +1,114 @@ +{{$info := .}}{{$filtered := .IsFiltered}}{{/* + +--------------------------------------- + +*/}}{{if $filtered}}{{range .PAst}}{{range .Decls}}{{node $info .}}{{end}}{{end}}{{else}}{{with .PAst}}{{range $filename, $ast := .}}{{$filename}}: +{{node $ $ast}}{{end}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if and $filtered (not (or .PDoc .PAst))}}No match found. +{{end}}{{with .PDoc}}{{if $.IsMain}}COMMAND DOCUMENTATION + +{{comment_text .Doc " " "\t"}} +{{else}}{{if not $filtered}}PACKAGE DOCUMENTATION + +package {{.Name}} + import "{{.ImportPath}}" + +{{comment_text .Doc " " "\t"}} +{{example_text $ "" " "}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Consts}}{{if not $filtered}}CONSTANTS + +{{end}}{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Vars}}{{if not $filtered}}VARIABLES + +{{end}}{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Funcs}}{{if not $filtered}}FUNCTIONS + +{{end}}{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{example_text $ .Name " "}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Types}}{{if not $filtered}}TYPES + +{{end}}{{range .}}{{$tname := .Name}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{/* + +--------------------------------------- + +*/}}{{if .Consts}}{{range .Consts}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if .Vars}}{{range .Vars}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{range $name := .Names}}{{example_text $ $name " "}}{{end}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if .Funcs}}{{range .Funcs}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{example_text $ .Name " "}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if .Methods}}{{range .Methods}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{$name := printf "%s_%s" $tname .Name}}{{example_text $ $name " "}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if and $filtered (not (or .Consts (or .Vars (or .Funcs .Types))))}}No match found. +{{end}}{{/* + +--------------------------------------- + +*/}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with $.Notes}} +{{range $marker, $content := .}} +{{$marker}}S + +{{range $content}}{{comment_text .Body " " "\t"}} +{{end}}{{end}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if not $filtered}}{{with .Dirs}}SUBDIRECTORIES +{{if $.DirFlat}}{{range .List}}{{if .HasPkg}} + {{.Path}}{{end}}{{end}} +{{else}}{{range .List}} + {{repeat `. ` .Depth}}{{.Name}}{{end}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{end}}{{/* +Make sure there is no newline at the end of this file. +perl -i -pe 'chomp if eof' package.txt +*/}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/play.js b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/play.js new file mode 100644 index 00000000..7e87460b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/play.js @@ -0,0 +1,103 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +function initPlayground(transport) { + "use strict"; + + function text(node) { + var s = ""; + for (var i = 0; i < node.childNodes.length; i++) { + var n = node.childNodes[i]; + if (n.nodeType === 1) { + if (n.tagName === "BUTTON") continue + if (n.tagName === "SPAN" && n.className === "number") continue; + if (n.tagName === "DIV" || n.tagName == "BR") { + s += "\n"; + } + s += text(n); + continue; + } + if (n.nodeType === 3) { + s += n.nodeValue; + } + } + return s.replace("\xA0", " "); // replace non-breaking spaces + } + + function init(code) { + var output = document.createElement('div'); + var outpre = document.createElement('pre'); + var running; + + if ($ && $(output).resizable) { + $(output).resizable({ + handles: "n,w,nw", + minHeight: 27, + minWidth: 135, + maxHeight: 608, + maxWidth: 990 + }); + } + + function onKill() { + if (running) running.Kill(); + } + + function onRun(e) { + onKill(); + output.style.display = "block"; + outpre.innerHTML = ""; + run1.style.display = "none"; + var options = {Race: e.shiftKey}; + running = transport.Run(text(code), PlaygroundOutput(outpre), options); + } + + function onClose() { + onKill(); + output.style.display = "none"; + run1.style.display = "inline-block"; + } + + var run1 = document.createElement('button'); + run1.innerHTML = 'Run'; + run1.className = 'run'; + run1.addEventListener("click", onRun, false); + var run2 = document.createElement('button'); + run2.className = 'run'; + run2.innerHTML = 'Run'; + run2.addEventListener("click", onRun, false); + var kill = document.createElement('button'); + kill.className = 'kill'; + kill.innerHTML = 'Kill'; + kill.addEventListener("click", onKill, false); + var close = document.createElement('button'); + close.className = 'close'; + close.innerHTML = 'Close'; + close.addEventListener("click", onClose, false); + + var button = document.createElement('div'); + button.classList.add('buttons'); + button.appendChild(run1); + // Hack to simulate insertAfter + code.parentNode.insertBefore(button, code.nextSibling); + + var buttons = document.createElement('div'); + buttons.classList.add('buttons'); + buttons.appendChild(run2); + buttons.appendChild(kill); + buttons.appendChild(close); + + output.classList.add('output'); + output.appendChild(buttons); + output.appendChild(outpre); + output.style.display = "none"; + code.parentNode.insertBefore(output, button.nextSibling); + } + + var play = document.querySelectorAll('div.playground'); + for (var i = 0; i < play.length; i++) { + init(play[i]); + } +} + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/playground.js b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/playground.js new file mode 100644 index 00000000..70e0c802 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/playground.js @@ -0,0 +1,430 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +In the absence of any formal way to specify interfaces in JavaScript, +here's a skeleton implementation of a playground transport. + + function Transport() { + // Set up any transport state (eg, make a websocket connnection). + return { + Run: function(body, output, options) { + // Compile and run the program 'body' with 'options'. + // Call the 'output' callback to display program output. + return { + Kill: function() { + // Kill the running program. + } + }; + } + }; + } + + // The output callback is called multiple times, and each time it is + // passed an object of this form. + var write = { + Kind: 'string', // 'start', 'stdout', 'stderr', 'end' + Body: 'string' // content of write or end status message + } + + // The first call must be of Kind 'start' with no body. + // Subsequent calls may be of Kind 'stdout' or 'stderr' + // and must have a non-null Body string. + // The final call should be of Kind 'end' with an optional + // Body string, signifying a failure ("killed", for example). + + // The output callback must be of this form. + // See PlaygroundOutput (below) for an implementation. + function outputCallback(write) { + } +*/ + +function HTTPTransport() { + 'use strict'; + + // TODO(adg): support stderr + + function playback(output, events) { + var timeout; + output({Kind: 'start'}); + function next() { + if (events.length === 0) { + output({Kind: 'end'}); + return; + } + var e = events.shift(); + if (e.Delay === 0) { + output({Kind: 'stdout', Body: e.Message}); + next(); + return; + } + timeout = setTimeout(function() { + output({Kind: 'stdout', Body: e.Message}); + next(); + }, e.Delay / 1000000); + } + next(); + return { + Stop: function() { + clearTimeout(timeout); + } + } + } + + function error(output, msg) { + output({Kind: 'start'}); + output({Kind: 'stderr', Body: msg}); + output({Kind: 'end'}); + } + + var seq = 0; + return { + Run: function(body, output, options) { + seq++; + var cur = seq; + var playing; + $.ajax('/compile', { + type: 'POST', + data: {'version': 2, 'body': body}, + dataType: 'json', + success: function(data) { + if (seq != cur) return; + if (!data) return; + if (playing != null) playing.Stop(); + if (data.Errors) { + error(output, data.Errors); + return; + } + playing = playback(output, data.Events); + }, + error: function() { + error(output, 'Error communicating with remote server.'); + } + }); + return { + Kill: function() { + if (playing != null) playing.Stop(); + output({Kind: 'end', Body: 'killed'}); + } + }; + } + }; +} + +function SocketTransport() { + 'use strict'; + + var id = 0; + var outputs = {}; + var started = {}; + var websocket = new WebSocket('ws://' + window.location.host + '/socket'); + + websocket.onclose = function() { + console.log('websocket connection closed'); + } + + websocket.onmessage = function(e) { + var m = JSON.parse(e.data); + var output = outputs[m.Id]; + if (output === null) + return; + if (!started[m.Id]) { + output({Kind: 'start'}); + started[m.Id] = true; + } + output({Kind: m.Kind, Body: m.Body}); + } + + function send(m) { + websocket.send(JSON.stringify(m)); + } + + return { + Run: function(body, output, options) { + var thisID = id+''; + id++; + outputs[thisID] = output; + send({Id: thisID, Kind: 'run', Body: body, Options: options}); + return { + Kill: function() { + send({Id: thisID, Kind: 'kill'}); + } + }; + } + }; +} + +function PlaygroundOutput(el) { + 'use strict'; + + return function(write) { + if (write.Kind == 'start') { + el.innerHTML = ''; + return; + } + + var cl = 'system'; + if (write.Kind == 'stdout' || write.Kind == 'stderr') + cl = write.Kind; + + var m = write.Body; + if (write.Kind == 'end') + m = '\nProgram exited' + (m?(': '+m):'.'); + + if (m.indexOf('IMAGE:') === 0) { + // TODO(adg): buffer all writes before creating image + var url = 'data:image/png;base64,' + m.substr(6); + var img = document.createElement('img'); + img.src = url; + el.appendChild(img); + return; + } + + // ^L clears the screen. + var s = m.split('\x0c'); + if (s.length > 1) { + el.innerHTML = ''; + m = s.pop(); + } + + m = m.replace(/&/g, '&'); + m = m.replace(//g, '>'); + + var needScroll = (el.scrollTop + el.offsetHeight) == el.scrollHeight; + + var span = document.createElement('span'); + span.className = cl; + span.innerHTML = m; + el.appendChild(span); + + if (needScroll) + el.scrollTop = el.scrollHeight - el.offsetHeight; + } +} + +(function() { + function lineHighlight(error) { + var regex = /prog.go:([0-9]+)/g; + var r = regex.exec(error); + while (r) { + $(".lines div").eq(r[1]-1).addClass("lineerror"); + r = regex.exec(error); + } + } + function highlightOutput(wrappedOutput) { + return function(write) { + if (write.Body) lineHighlight(write.Body); + wrappedOutput(write); + } + } + function lineClear() { + $(".lineerror").removeClass("lineerror"); + } + + // opts is an object with these keys + // codeEl - code editor element + // outputEl - program output element + // runEl - run button element + // fmtEl - fmt button element (optional) + // fmtImportEl - fmt "imports" checkbox element (optional) + // shareEl - share button element (optional) + // shareURLEl - share URL text input element (optional) + // shareRedirect - base URL to redirect to on share (optional) + // toysEl - toys select element (optional) + // enableHistory - enable using HTML5 history API (optional) + // transport - playground transport to use (default is HTTPTransport) + function playground(opts) { + var code = $(opts.codeEl); + var transport = opts['transport'] || new HTTPTransport(); + var running; + + // autoindent helpers. + function insertTabs(n) { + // find the selection start and end + var start = code[0].selectionStart; + var end = code[0].selectionEnd; + // split the textarea content into two, and insert n tabs + var v = code[0].value; + var u = v.substr(0, start); + for (var i=0; i 0) { + curpos--; + if (el.value[curpos] == "\t") { + tabs++; + } else if (tabs > 0 || el.value[curpos] == "\n") { + break; + } + } + setTimeout(function() { + insertTabs(tabs); + }, 1); + } + + function keyHandler(e) { + if (e.keyCode == 9) { // tab + insertTabs(1); + e.preventDefault(); + return false; + } + if (e.keyCode == 13) { // enter + if (e.shiftKey) { // +shift + run(); + e.preventDefault(); + return false; + } else { + autoindent(e.target); + } + } + return true; + } + code.unbind('keydown').bind('keydown', keyHandler); + var outdiv = $(opts.outputEl).empty(); + var output = $('
    ').appendTo(outdiv);
    +  
    +    function body() {
    +      return $(opts.codeEl).val();
    +    }
    +    function setBody(text) {
    +      $(opts.codeEl).val(text);
    +    }
    +    function origin(href) {
    +      return (""+href).split("/").slice(0, 3).join("/");
    +    }
    +  
    +    var pushedEmpty = (window.location.pathname == "/");
    +    function inputChanged() {
    +      if (pushedEmpty) {
    +        return;
    +      }
    +      pushedEmpty = true;
    +      $(opts.shareURLEl).hide();
    +      window.history.pushState(null, "", "/");
    +    }
    +    function popState(e) {
    +      if (e === null) {
    +        return;
    +      }
    +      if (e && e.state && e.state.code) {
    +        setBody(e.state.code);
    +      }
    +    }
    +    var rewriteHistory = false;
    +    if (window.history && window.history.pushState && window.addEventListener && opts.enableHistory) {
    +      rewriteHistory = true;
    +      code[0].addEventListener('input', inputChanged);
    +      window.addEventListener('popstate', popState);
    +    }
    +
    +    function setError(error) {
    +      if (running) running.Kill();
    +      lineClear();
    +      lineHighlight(error);
    +      output.empty().addClass("error").text(error);
    +    }
    +    function loading() {
    +      lineClear();
    +      if (running) running.Kill();
    +      output.removeClass("error").text('Waiting for remote server...');
    +    }
    +    function run() {
    +      loading();
    +      running = transport.Run(body(), highlightOutput(PlaygroundOutput(output[0])));
    +    }
    +
    +    function fmt() {
    +      loading();
    +      var data = {"body": body()}; 
    +      if ($(opts.fmtImportEl).is(":checked")) {
    +        data["imports"] = "true";
    +      }
    +      $.ajax("/fmt", {
    +        data: data,
    +        type: "POST",
    +        dataType: "json",
    +        success: function(data) {
    +          if (data.Error) {
    +            setError(data.Error);
    +          } else {
    +            setBody(data.Body);
    +            setError("");
    +          }
    +        }
    +      });
    +    }
    +
    +    $(opts.runEl).click(run);
    +    $(opts.fmtEl).click(fmt);
    +
    +    if (opts.shareEl !== null && (opts.shareURLEl !== null || opts.shareRedirect !== null)) {
    +      var shareURL;
    +      if (opts.shareURLEl) {
    +        shareURL = $(opts.shareURLEl).hide();
    +      }
    +      var sharing = false;
    +      $(opts.shareEl).click(function() {
    +        if (sharing) return;
    +        sharing = true;
    +        var sharingData = body();
    +        $.ajax("/share", {
    +          processData: false,
    +          data: sharingData,
    +          type: "POST",
    +          complete: function(xhr) {
    +            sharing = false;
    +            if (xhr.status != 200) {
    +              alert("Server error; try again.");
    +              return;
    +            }
    +            if (opts.shareRedirect) {
    +              window.location = opts.shareRedirect + xhr.responseText;
    +            }
    +            if (shareURL) {
    +              var path = "/p/" + xhr.responseText;
    +              var url = origin(window.location) + path;
    +              shareURL.show().val(url).focus().select();
    +  
    +              if (rewriteHistory) {
    +                var historyData = {"code": sharingData};
    +                window.history.pushState(historyData, "", path);
    +                pushedEmpty = false;
    +              }
    +            }
    +          }
    +        });
    +      });
    +    }
    +  
    +    if (opts.toysEl !== null) {
    +      $(opts.toysEl).bind('change', function() {
    +        var toy = $(this).val();
    +        $.ajax("/doc/play/"+toy, {
    +          processData: false,
    +          type: "GET",
    +          complete: function(xhr) {
    +            if (xhr.status != 200) {
    +              alert("Server error; try again.");
    +              return;
    +            }
    +            setBody(xhr.responseText);
    +          }
    +        });
    +      });
    +    }
    +  }
    +
    +  window.playground = playground;
    +})();
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/search.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/search.html
    new file mode 100644
    index 00000000..e0d13b9b
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/search.html
    @@ -0,0 +1,18 @@
    +
    +{{with .Alert}}
    +	

    + {{html .}} +

    +{{end}} +{{with .Alt}} +

    + Did you mean: + {{range .Alts}} + {{html .}} + {{end}} +

    +{{end}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/search.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/search.txt new file mode 100644 index 00000000..15c1941b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/search.txt @@ -0,0 +1,54 @@ +QUERY + {{.Query}} + +{{with .Alert}}{{.}} +{{end}}{{/* .Alert */}}{{/* + +--------------------------------------- + +*/}}{{with .Alt}}DID YOU MEAN + +{{range .Alts}} {{.}} +{{end}} +{{end}}{{/* .Alt */}}{{/* + +--------------------------------------- + +*/}}{{with .Pak}}PACKAGE {{$.Query}} + +{{range .}} {{pkgLink .Pak.Path}} +{{end}} +{{end}}{{/* .Pak */}}{{/* + +--------------------------------------- + +*/}}{{range $key, $val := .Idents}}{{if $val}}{{$key.Name}} +{{range $val.Idents}} {{.Path}}.{{.Name}} +{{end}} +{{end}}{{end}}{{/* .Idents */}}{{/* + +--------------------------------------- + +*/}}{{with .Hit}}{{with .Decls}}PACKAGE-LEVEL DECLARATIONS + +{{range .}}package {{.Pak.Name}} +{{range $file := .Files}}{{range .Groups}}{{range .}} {{srcLink $file.File.Path}}:{{infoLine .}}{{end}} +{{end}}{{end}}{{/* .Files */}} +{{end}}{{end}}{{/* .Decls */}}{{/* + +--------------------------------------- + +*/}}{{with .Others}}LOCAL DECLARATIONS AND USES + +{{range .}}package {{.Pak.Name}} +{{range $file := .Files}}{{range .Groups}}{{range .}} {{srcLink $file.File.Path}}:{{infoLine .}} +{{end}}{{end}}{{end}}{{/* .Files */}} +{{end}}{{end}}{{/* .Others */}}{{end}}{{/* .Hit */}}{{/* + +--------------------------------------- + +*/}}{{if .Textual}}{{if .Complete}}{{.Found}} TEXTUAL OCCURRENCES{{else}}MORE THAN {{.Found}} TEXTUAL OCCURRENCES{{end}} + +{{range .Textual}}{{len .Lines}} {{srcLink .Filename}} +{{end}}{{if not .Complete}}... ... +{{end}}{{end}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchcode.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchcode.html new file mode 100644 index 00000000..a032e642 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchcode.html @@ -0,0 +1,64 @@ + +{{$query_url := urlquery .Query}} +{{if not .Idents}} + {{with .Pak}} +

    Package {{html $.Query}}

    +

    + + {{range .}} + {{$pkg_html := pkgLink .Pak.Path | html}} + + {{end}} +
    {{$pkg_html}}
    +

    + {{end}} +{{end}} +{{with .Hit}} + {{with .Decls}} +

    Package-level declarations

    + {{range .}} + {{$pkg_html := pkgLink .Pak.Path | html}} +

    package {{html .Pak.Name}}

    + {{range .Files}} + {{$file := .File.Path}} + {{range .Groups}} + {{range .}} + {{$line := infoLine .}} + {{$file}}:{{$line}} + {{infoSnippet_html .}} + {{end}} + {{end}} + {{end}} + {{end}} + {{end}} + {{with .Others}} +

    Local declarations and uses

    + {{range .}} + {{$pkg_html := pkgLink .Pak.Path | html}} +

    package {{html .Pak.Name}}

    + {{range .Files}} + {{$file := .File.Path}} + {{$file}} + + {{range .Groups}} + + + + + + + {{end}} +
    {{index . 0 | infoKind_html}} + {{range .}} + {{$line := infoLine .}} + {{$line}} + {{end}} +
    + {{end}} + {{end}} + {{end}} +{{end}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchdoc.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchdoc.html new file mode 100644 index 00000000..99e1f035 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchdoc.html @@ -0,0 +1,24 @@ + +{{range $key, $val := .Idents}} + {{if $val}} +

    {{$key.Name}}

    + {{range $val}} + {{$pkg_html := pkgLink .Path | html}} + {{if eq "Packages" $key.Name}} + {{html .Path}} + {{else}} + {{$doc_html := docLink .Path .Name| html}} + {{html .Package}}.{{.Name}} + {{end}} + {{if .Doc}} +

    {{comment_html .Doc}}

    + {{else}} +

    No documentation available

    + {{end}} + {{end}} + {{end}} +{{end}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchtxt.html b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchtxt.html new file mode 100644 index 00000000..7e4a978c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/searchtxt.html @@ -0,0 +1,42 @@ + +{{$query_url := urlquery .Query}} +{{with .Textual}} + {{if $.Complete}} +

    {{html $.Found}} textual occurrences

    + {{else}} +

    More than {{html $.Found}} textual occurrences

    +

    + Not all files or lines containing "{{html $.Query}}" are shown. +

    + {{end}} +

    + + {{range .}} + {{$file := .Filename}} + + + + + + + + {{end}} + {{if not $.Complete}} + + {{end}} +
    + {{$file}}: + {{len .Lines}} + {{range .Lines}} + {{html .}} + {{end}} + {{if not $.Complete}} + ... + {{end}} +
    ...
    +

    +{{end}} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/static.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/static.go new file mode 100644 index 00000000..42dfa073 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/static.go @@ -0,0 +1,3278 @@ +// DO NOT EDIT ** This file was generated with the bake tool ** DO NOT EDIT // + +package static + +var Files = map[string]string{ + "analysis/call3.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x03N\x00\x00\x01\xea\b\x03\x00\x00\x00\x04l\xeeb\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\x04\x06\x03\x06\t\x05\x0e\x10\r\x16\x17\x15$\x18\x0f\x1e\x1d\x17!# #$\"$%#&(%)(\"()'-+\x1f*+),-+-/,41&J-\x1202/241S/\x0e564,7M796<:.:<9!?p=?\xb3Z2\xf5Sw\x99U\x89+\xdaI\xb3Y\x15`7N\xea\xd4U\xd5M\x1f\a\xaa\xe8A\xe9x5ۉ\xbb\xaa\xfbU\xa5N\xd3G։\xe2\x98\x1c\x16\x1d\xa0\x8d\xb4\x99U\x01v\xe3\xa4N\xa2t\x00\xeae\xfa\xd4\xcb'\"\xb5\xed\xaaR\xa7\xe9\"\xe3\xeb\xfc\xcd\x12\xd0i\fpT'\xca@w\x1dۅw\xc9'\"{\xeaU\xa5\x8e2\x98J$\x96J\xcf6d$el\xa0\xff\x9f\x98BȪ\xae\xdc\xe9I\xf3\x06\xf9\xca}I\x84L\xae\xd5\xeb&H\xd7\xc2TWڼ\xb07\x85\x9a\xb4*\xf6_w\xb2<7\x92\xcc\xd7\xe0\xe7ֿ(\xdd5m\xc1\tZZL\\UKg$=$\xd5\xec\xcdMM_\xba4uj\x1d\x9d\xae\x9d3u\xc6R\xedѴ\xf3\x89|\xf7\xe2\xa7\xf2\x874\xc5b\x13tr\x1egu\uab6a\xaa\xaaa\xfbáZ\xb6\xb7\x0e\xd4\xecR\x95:\xcb\xf1\xe6\xed\xa4\xac\xb9Y\xdai\v\\\xab\xeaW\xb9r\xe9\"\xd5\xd5N\x9b\x91\xf6\xb7H\x87\xf7\x88\xf1\x1fe\x9b\xfeA\xf8{\xcdѩb\xb2\xfa\xbb\x87\xc0f\x9c\xd4I?T\x99\xd2W}(r\x86\x1d\b㈧\xc5\xf8\x8f\xb2M\xee\u007f\f;٫\x9f\xb2N\xbf\x05\xb0\x05'u\xd2\x0fU\xa6\xd47vC'\xab\x84e\xadp0\x9b\xfe\xaf\xfb\xeft\xae\x9dV\xb9\xf0\x9d\x8dQ\xc4I\x9d\fB\x95\xc5S5\x03\xd0\xc9V\x98G\xff\xeb\xbf~\xffG?\xfcяn\f\xaa\xbe\x91ۯ\xc9\x15\x03\xb6\xe2\xa8N\xa2n\xa8r\u007fu\x97\x98@:\x19\xc42\x8b\x91\xf3\x95\xdf\xcdso\xf5z;6欼&\x8a\xd7ʽ\xee\xfc\xa7.\xd2\xe2\u007f\x16\xdc\xfb\xd6{s\x9e\xfa\x8djR\xbc\xe6\x11\x04A:٣\xa5\a6\x16y\x9ex\x9d=\xb9\xb6v\xb1\xf7_\xfee\xb1\xa7\x85\xda\xf4ÿ\xf9\x9f\u007f\xf9\x17\u007f\xf1\xd7\u007f9s\xe6\xd2߬^\xec\xf6>\xf5\xba<\xa3UIN}Wk\"\xe2\xacN\xba\xa1\xca\xf5\x8db\"\xe9d\x14\xcbl\x92\xafܑ-l,\x11\x16\xef\xcc\xdbG\xaf\x8b\x84\xf5\x1d-O\t\xe7D\xf1b\x8b[\xc8߹3\xdfs\x91\x9f\x14\xc5s\x9d\x9d\xf3w\xb2f\xacԻso\xf6j:=T\xe4\xdd\xf7\x83\xf9\x9e\x03O\xec\xa3:\xfd\x93\xfb?L\xce̜\x94\x949{\xd2_}}o\xc7Na\x9f<\x9fC\b8\x1aE\x9c\xd5I/T\xf9\f\xf3+\x81t\x12\rc\x99#\xe7+{\u05ca\x1d\xc2\x11\xf1\x99\xf5\xa2x\xbd\x85\x1e\xa2\x86\x960EĬBv\xb8\xca_\xae\x9e\xa4\xc8:\xd1\xd2\x1cz\xdcY\xeb\xa5S-\x025m\x1f{`\x83\xe4\xee\xfb\xd6\xf8\xfdg>\xf4\u07fb\xef?\xd2\x19\r\xb1.\x19\xddd|\xfdL\xd5\xf8\xc2a\x9dİP\xe5\xfe\xea37n\xdcx\xa96\x912w\x8cb\x99e\f\xf2\x95\xbd-\xe29ᚸu\xadȒ]\x9f(\xcc\x16\x96\xb0⬭\xecq\x1f\xfd\v?)r:=C\x1fvfч\xad9\xf4\xe1e\xaa\xa4\xac\xd3_L\x9a4I\\4i\xd2g\xfe7\x9fb֭\xc98\av\xe2\xa4N\xba\xa1\xca\x17\xaa\x02$ΐ\x93Q,\xb3\x82~\xbe\xb2\xb7C<\xe7\x16%\x9d\xcey\xf3\xb7\x1e\xe9,\x91u\x92\xac\xe9dg~ܤ\xc8\xe9\xc4\xfe\x97t\xda7\x97\x8a֡\x1c\x9d\xfeI\xf8?\u007f\xfd\x97T\xa7\xcf\xfd\xa7\xbf:şT\xb6!~o\x14qR'\xfdP\xe5^Ʃ\x9a^\xedOK\x8cc\x8cb\x99#\xc2tʒu*Z~\x9d\x16\x94\xcb:md\x8f\a\xa4\xa3ShR\xd4\xd3\xe95\xe1\x89\xd7.\x16-\x1f\x92t\xfa\xbe\xfb\xef\xbf\xff?\xa8NS\xfe\x9f\xfb\x1c?\x9b2\x97\xf5\x881\x10-\x8e\xea\xa4\x1b\xaa,\x91`\xd7N\xfa\xb1̑\xf3\x959\x9d\xf2\xcb\xe9\xf3\xa1Ge\x9d\xf2\xd8\x05S\xe1J\xf5\xa4\xa8\xa7\xd39!O\x10J\xd8\b\x9e*,\xde\xdbIm\x11\xbe\xder\xa0(\xe7e\x91\x9f\x1c\xea\xec\xec\x9c\xfflg\xe75\xf1\xb5N\xf7\xb3\x9dC\xbf|\xd6\xdd\xf9\x9axn~GG\xe7\xeb\xcc\x1d\xf9c\xdc\u007f\x90t\xea\xea\x98_t\xa0c\xa3 \xff&@\x05i7^\x060R\x9c\xd4\xc9 T\x99\x96\xb3K\xa7D9>\x19\xc42\x8b\x91\xf3\x95\x87聥%[\xf0\xb4\b\xc2jqh_Q\x96w\xed\x81\"\xf7Jv\x86\xf7L\xb6w\xedk\xacNh\xf2\x97\x82\xcc\x01\xf1;\xf4\xd1\xfd+\xf61\xd4w\xc4N7+s/\xbf(\xdfd\xf4\xf7\u007f\xf3\xdf$\x9d\x06_.\xf7f/\x97\xef\xf0kN\n\xfbM\x02`#\x8e\xea\x04\xac\x93\xb5SoR\x8f?x\x9e\xfdû\xef^\xfb\xe5\xea\x9ck\xf2-\xb0\u007f\xf7W\xb2N\xa1*\xdb]\x05\xdaϖ\x81\x9d@\xa78'z\x9d\x8e(?\xe89\xb4\xb8C\xd6\xe9G\xffE\xa3S_:n(\x1f]\xa0S\x9c\x13\xbdN\xe7\xd8\x109\xe5\xa2\xf0+\xe5\\0\xec\xe8\x04F\x19\xe8\x14\u05fc.\x8d4h'\xf5\x19z\xc6\xf3lKG˳\x9e\xf5C\xd0i\x8c\x80Nq\x8d4\xd2\xf0\x9avҀ\xa1#Ox\xdd\xde'\x8e\f\x05\xbe\x8d\xfb\xb7\xd0\xc9a\xa0S\"\x02\x9d\xc6\b蔈@\xa71\x02:%0u\xd0\xc9a\xa0S\xc22\xb8a!\xbb\x05v\xc5!\xf8\xe4\x18\xd0)a\x99\xa3|A㳻\xe0\x93S@\xa7De\x80}}\xf0C\xbf\xff\xde}\v\x13\xe5v\xc8\xf8\a:%*\x03\x84dfޗ\x969{\xd2\xc3\xd0\xc9)\xa0S\xa22\xb8\xe7s\x9f\x9dt\u007fJJJf;\xc2V\x9c\x02:%,3\xa6\x97U\x1f\xba\xd0\xd5\xf5\x12\xbe/\xe8\x18\x8e\xea\xa4\x1b\xaa?\xe9\xfe\xaf\xbd\xcdM<\xff\xe5\xcfMz\xf0\xbb\xd0\xc9\x00\xe8\x94\xc0\xf4\x9e\xd0~\x80\x1c\xae\xd3\xfd\x8aM\x9f\xfbޫ\xcfS\xb5\x1e|\xee\xd5_\u007f\xe5+\x01\x9d\xfe\xf5\xc1\u007f\xa5\a\xb0\xafq\x13\x0f~\xf3\u05ef\xfe\xec\xcb\xd0\xc9\x00\xe84\xa1\xe0u\x92O\xf6\x94S\xba/|\xf7\xed \xbf\xbe?\xa0\xd3\x17\u007f\xa6\x18\x17\x9c\xf8\xec\xcf\xe5:\xd0I\x17\xe84\xa1\xe0ubC\x11\xf7\u007fK\xd1iү\xe5\xff\u007fNO\xe6&M\n\xe8t\x9f|C\x117\xf1\xd5\xfb\xbe\xf2\xad\x9fC'#\xa0ӄ\x82\xd7I\xe2\xb9\xcf\xcb\xffߧ\xe8\xf4ů\xfe\xfc\xedW\x83:MR\x8eE\xa1\x89\xb7\u007f\xf6\xb5/\xdf\xf7M\xe8d\x00t\x9aP\x84\xe9\xf4\xe5\xaf)\x1a)'{\x9f}\x95^(\x05u\xfa\xc27\x95j\xc1\t\xc6\xf3\xf7A'\x03\xa0ӄ\x82\xd7\xe9K?{\xf5\xf9\xaf|\xe1UY\x91\xe7\xeeW\x86\"\xbe\xf9\xea\xcf>\x1f\xd4\xe9\xb9\xfb\xbe\xf5\xebW\x9f\xfb\x127\xf1\xa5\xef\xbd\xfa\xea7\x1f\x84N\x06@\xa7\t\x05\x13I\xb9\nz\xfb\xbb\x9f\xff\xcc\xfd_}5p\xc8\xf9\xee祁\xf2\x9f=8\xe9\xfeo\x06uz\xfb\xb9/~v\xd2\x17\x9f\xe3&\xbe\xf7\xc5I\xf7}\xf9y\xe8d\x00t\x9aPp\xa7y#\x03:\xe9\x02\x9d&\x14\xd0it\x81N\x13\n\xe84\xba@\xa7\t\x05t\x1a]\xa0ӄ\x02:\x8d.\xd0iB\xa1\x1f\xa3\x12\vfs\x9a\x988\xaa\x93n\xa82\xe5\xcc\xfe\x9a\xba\xf6\b\xed\x80Bİf\xdb9A\xf6\x9bU\x01j\x9c\xd4I?TY\x1cl\xacj\xbb\xd0^\xa5\x97\xb3\r\xd4D\fk\xb6\x1d\xc42[\xc6I\x9d\xf4C\x95\xc5\xc6\xean\xa6\x9a\xf6;v \x12\xbaa\xcd6\x83\x1cY\xcb8\xa9\x93~\xa8rw\x95\xf4\xad\xdcQ\xde5\x12\r\xdd\f\n\x9b\x81N\x96qT'Q/T\xb9\xad:\x91~\x8af\x141\vk\xbe\xe8\x16\x84\xad\xbfY[8\xff\x89w\xb9RӰf\xcao\xca\x17\xbb\xbdO\xbd.j@,\xb3e\x9c\xd5I/TyO\xfd\x99]U\xb5\x87\x12*\x04vt0\tk\xbe\xdeҒ_\x94\xedݸv.\x9fBa\x1a\xd6,\x8a\x1d\x9e\xaf\xef\xed\xd8)\xecS\x15\x1a\xc52\x83H8\xab\x93^\xa8r\x9d\x14\xaa\\[\x87cT\x14D\x0e\x1c\x13\x1f\x15J\xae\x89C\xea\xf8>Ӱ\xe6\xeb\xf9O\xb0\x9c\xb2\x16u3\xa3Xf\x10\t\x87u\x12\xc3C\x95\xeb\xa5\xf1\x88\xfe\xc4\nU\x1e-\xcct\xca\n\x8bG2\x0fk\xee\x10~\xa5m$\x1a\xc72\x83H8\xa9\x93~\xa8r\x93<\xf6۴Ǩ\x19\ba\xa6\xd3\xd7\xc3\xcbLÚ\xf7\t\xd7\xc3[I-q\xedd\x15'u\xd2\x0fUn\xaf\x91>\x8clęE\x14\x98\xe9T\xaeShF\x87:+=\x04F\xf6,\xe3\xa8N\xba\xa1\xca}\xd2@y\u007f5n\x8b\x88\x82\xd1\xd0\xe9\x9aw\xe5\x10\xfdo\xe3F\xed\x1f\xa0\x93e\x9c\xd4I?TYl\xafn\xef>U\xbb\vC\x11&\x98\x855\xbf\xfb\x8b\u03a2\x95\x9d\x9d\x16\xc3e)\x1d\xf3\x8b\x0etl\x14\x0eh\xcbuc\x99A$\x9c\xd4\xc9 TY\xec\xdaS\xb3\xab\x1d6\x99a\x16\xd6|Q\x90xʠy\x04^.\xf7f/?\x12V\xac\x1b\xcb\f\"\xe1\xa8N`|\xa1\x17\xcb\f\"\x01\x9d@\x04\xc2c\x99A$\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\xc3Q\x9d\xf4B\x95\ak\xabdjM\x1a\x83\xf8\x80\vv\x06Z\x9c\xd4I7Ty\xa0\xaa\xbd\x9b\xd2^u¬9\x183\x9a\xb8\xafJs\xc1\xce@\x8b\x93:\xe9\x87*\x9fbv\r\xd4⋟q\xcc\xecEf5\x80\x84\x93:\xe9\x87*K\xd4\xe3\xbb\xed\xf1L\x06t\x8a\x0eGu\x12\xf5B\x95\x19R\x12\v\x18+\xba\x16\xa6\xba\xd2\xe6I_\x14ܐ\x91\x94\xb1\x81\xfe_L\\UKg$=\xc4\xde\xfa\x94p\xbe\f\x91\x0fv\xe6*\x14\xb3\xa2\v.2S\xea\xacv\xce\xd4\x19K'j@\x9f\xb3:\xe9\x85*3\xa4$K0F4Mͨh,#\x15t\xb2\xc0\xb5\xaa~\x95+\x97\xbe\xc1\xd5N!\xa9e\x15\xc9\vE\xb1\xffP\xf3\x8c\xcc\xe6\xe6f)\x99\"\x18\xec\xccU薊\xda\n\\\xac\xbc`rq\xfd\xbaԌ\t\x1a1\xe1\xacNz\xa1ʔ\vU\xf8\n\xf5\xd810m\xde\x00\xcbk\xa3W\xb3\xfb\xa5\x1fH\x93\x1f])\xf4E\xc9M\x95\xaa\xa8N\xf6\x02\xe1d\\\x05ɰ2\xa6S=\xa9\x11Y\xa4\xd8vqB\xe2\xb0Nbx\xa82\xa5\xb1.r\x130\x9aԓ@\xa4\x94X0K\xfaof\x01}p\xb1\aI\x11#\x9dB\x15B:-\x9a>\xc8H/\x10'$N\xea\xa4\x1f\xaaL\xa9Ad\xe5\x18\xb2\x8e\x04\u007f\xbdd\xce\x02\xe9\xbfy\xb3E^\x11#\x9dB\x15B\x93\x19ʅ\xd6\x04\r@rR'\xfdPe\x96\x03\xab\x8a\xa0\a\xce\xd2\xc8\x1d\x9d\xa6K\xffM\x97\x8eNZ\x9d\xaa_\x92+\x19鴊M\xe6No\x97\x98\xa0CK\x8e\xea\xa4\x1b\xaa\xcc.\x9dF\xf77^AD\xfa\xd33ٛ[\xf1Rv\xdeǮy\xb6K\x81ͼN\x99\x99\xf4\xb2\x97(\xa7\xe4::%\xad\x10\xc5\x1b\xb3\xd9\xe4~\xb9\xd6\xe3k\xc4\t\x89\x93:\x19\x84*S\xb7\xf0[icI\xd3\x0337\xd4\x17\x13vҐ;yE\xfd\x8aɹ\xd2h]A\x9b\xd8^\xe0\x92~\x93\xad\xccU\xb1'sj7\x1f쬪0'u͚9dJ\xcd\x19Q\\A\x16\xd5\xed) \x13\xf4\x961'u2\nU\xbe\x80\xbbVƖ\xaeE\xe9ɳ\xe5\x17aݬ\xa4Y\xf2\xe7N\x84\xb8NM\xa5\x8f\xc5\xf4\xd9@qJR&\x8bD\x0f\x05;\xab*te&%?\xf4\xb8\\w\u007ffjʜ\xfdF\xb3Jp\x1c\xd5\t\x80\xc4\x06:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x1a7,\"\xa9\xb9g\xcc*\x811\x05:\x8d\x1b\xba\x9bjf\xa6NԈ\xa0q\x82\xa3:\xe9\x85*\xb3\xa4\x9c]ջ\x0ea?\x89\x82&\x82\xacܸ\xc6I\x9dtC\x95ž\xda]R)\xbe\x91kN\x1bi3\xab\x02\xc6\x12'u\xd2\x0fUn\xaec_\xad\x1e\xack6i\r\xa0S\xdc\xe3\xa4N\xfa\xa1ʍr8\xd8\x1e$W\x9a\x03\x9d\xe2\x1cGu\x12\xf5B\x95\xfbj\x9b\xfa\x06\xfb\x9aq\xb2\x17\x05'H\x93Y\x150\x968\xab\x93n\xa8\xf2@#-ݏ\xf4\x95(\x18L\x9d}\xa8{\x82\xe6\x15\x8f\v\x9c\xd5I/Ty\xb0\xb1\x8e\xe5\x1b5\xe2'4\xa2`?!d\x81Y%0f8\xac\x93\x18\x1e\xaa\xdc\\7 \x95\xe2\a\x9e\xcc\xe9O\x9d\xbe\xae\t\x19\x9f\xf1\x8b\x93:\xe9\x87*W\xcb\xf9`R6,\x88L\x1b\xc1\x80M\\\xe3\xa4N\xfa\xa1\xca\xd0)z0\xb2\x17\xe78\xaa\x93n\xa8r\x93t\xb27P\x871+s\xa0S\x9c\xe3\xa4N\xfa\xa1\xca\x03\xdb\xebNu\x9f\xaaێ\xa1=s\xa0S\x9c\xe3\xa4N\x06\xa1ʃm\xbbjv\xb5a`ό\xc1\xee\xf6E.\xfc\xae\\\\\xe3\xa8N`$,$d\xda\x1e\xb3J`L\x81N\xe3\x86\xee\xe384\xc5;\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN@\xcd\xe0\xc0\xc0\xc0`\xf0?`\t\xe8\x04T\x1c\x9aL\bI\xea\xefO\xa2\xffMFX\x9bE\xa0\x13\x90\xd83\xa7W\xfa\xbf\x8eԷ\xb5\x9d\x12\xc5Smm\xf5\xa4Τ\xd1X\xd37'\xce\xee\tvT'\xfdPen\x12\x18\xf3\x1dAh1\xab\x13\x99\rd\xf2v\xa3\xbfU\x902y\xa2\x8e\x04o\xb4\xed\x96u*&\x93G[\xab\x98\u05edb\xf2\x1a\xb3*\x8e\xe2\xa4N\xfa\xa1\xca\xfc$0\xe6\xf5N\xf7N\xb3:\x91\xe9k\x9e]f\xf0\xa7u\x93k\x94\xa9p\x9d\xba\x9b]\xfa͚l{\xcd\f\u05ed\xe3\x9cnq\x88\xfa)\xebLj8\x8a\x93:\xe9\x87*s\x93 \"Y#\xd4I\x14\x17\x18\xe8t\xc1\xb5\"0\x19\xae\x93(\x1a\xe84{\x91nqL\x18\xac\xdb\xf2r\xddb\x8eUq\xf5\x8dJ'u\xd2\x0fU\xe6&ADFO\xa7\x82\xf4\xe0\x9b\x99\x05\x9d2F_\xa7GMu\xeaO/0\xab\xe2 \x8e\xea$\xea\x85*s\x93 \"Y\x1b\x9f\xf1\xe6<\xf5\x1bUYw2\x91I\xe6ޤ\a\xd3\\\x8f\xa7\xa77\x15\xa7d\xb2\x84\xd0E\xe9\xaei\v\xe4\x1f\xb2\xa1:\x15Ӻ\x0f\xb0Q\x87\xda9Sg,\x95-\x1aL\x0e\x1e\x9c\xf4u*~8=eA\x17}룍\x1f\x17\xcb\xe8c]\xbd2\xdf\f\xa9\x06\xd7Y8\xef湷z\xbd\x1d\x1bsV^\x13\xc5k\xe5^w\xfeS\x17i\xf1E\xb7 <5\xe4\x15\x84\x9c\xebܺ\x1d\x11\x04a\xab\xb8\x93>\xb6\xb0I\xc6\xd7Y'C?]\xee)\xdax\x9dMv>\x91\xef^\xfcT\xfe\x90\xdc\xfb\xaa\xa48J\x19qV'\xbdPe>_\x19D\"K\xf8zK\xcb\x12\xcfE\xbel\xb0f\x9dL\r\xff!QS2Y\x9aIRפU0\x05\x1en\xaa[0Y\xcal\xa1:u\xe7N^Ǧ\v&\x17\u05efK͐\x12\x9a۹\xe8s]\x9dH\xc6\xf6\xed\x19I\xa7\xc4\xfeCӊ{\xc5\u07b2\xe4\xe6\xfe\xfeC\xcd32\x9b\x9b\x9b\xa51$\xbe3\x1d:\xb2\x85\x8d%\xc2\xe2\x9dy\xfb\x98.\xeb;Z\x9e\x12\xe85\xd1\xd0/v\n\xbf\x10\u007f:\xf7\xa7\xbf\x12\xb9u\xbbޙ\xff\xec\x1f\xc4?\xfc \xbb\xf3ڵ\xce\u03a2\x95\x9d\x9d\x9d/\xb3>\x9e\x116v\xec\xf3>J\x1d\xfa\xe5\xdcgZ:\x0e,\x16ޕ;?\x14Oq4\xce\xea\xa4\x17\xaa\xccM\x82\x88d\x15\xd17\xe7\xebE\xcbU\x85\xbd\x17dzU\xa5\xe9\xb9T\xa3z\xb1\xe0a\x16\xb9\xc6\u07bff-d\xc5T\xa7\n\x97t\x1aPO\xd8\xd8C\x1b\xd9.?\t%\xcb\xea\xea4\x93\x1e\x00\x06f̡\x93e\xechT \x9f_\x05O\xf6T\x9d\xe9\xe1]+v\bG\xc4g\xd6\xd3\xe5o\xa1\x87\xa8\xa1%\xabY\xf1\xd03˯y\xe5\xb3\xa9^4}\x90!_x\xec1\xd3\xe9q\xf6\xb8\x81\xf4\xb1\xb2S\xe2@\xb2\x9cE\x1b\xd4Iՙ\x1e\xde\x16j\xc25q\xebZ:}\xed\xc0\x13\x85\xd9\xc2\x12\xa9\xfc\xfa\xa3yO\xc9Vp\xeb\xf6\xfa\xdc_\x89׳;\xa4\xe2\xa0Nk\v\x87ޥx\xa9e\xafy\v7\x1e\xf8Րb\x13]\"C\x8b\x9d\xc7I\x9d\xf4C\x95Փ\xc0\x18\xf9r\xbdSP\r\x1e7\xd7˨o`H\xdf/\xb6\xb9DI\xa7\xb6\xb4i+v5g\xca:\xa5%ϔ\x0eSb\x86\"\xa1\xf4\x8c\x8f\xef3\x1e\x8ah&l\xb4h\xdeRq\u007f\x8a|b\x19\xd4Iՙ\x1e\xde\x0e\xf1\x9c[\x94t:\xe7\xcd\xdfz\xa4\xb3D\xd6Il\x11:\xe5\t~ݞ\xf8\x17\xb1C9\xf6\x04uZ\xa2\\G=%2!ˋ\x84\xbc\xbd\x8aOm$\x8e\xf6\x1c'u\xd2\x0fU\xe6'A$\xb26\xb2G\xf5\xd1\xc9\x00N\xa7\x99s\xd8\xdb\xd8BY\xa7\xd4S\x17\x92+\xd8T\xee\xf4v\t\xe9\x1c\xb1\x9f\x1b\xba\xd3\xd5i){\xac&쬱>uP9דu\xaa~Iә\x1eL\xa7,Y\xa7\xa2\xe5l8\xa1\\\xd6\xe9u\xef\xd6|\xf9\x12\x88_\xb7#9Cʹ\x9e\xacӁ\xd7\xd8\xd1\xe9\x9c\x04\xfd\xfb\xb9\xadT\xa4k-\xf3\x0f\xc8U\xca\\q\xf4\x11\x8b\xa3:\xe9\x86*s\x93 \"Y^\xba'\x0e\x15\xad4\xab'\xaat\x9aƎ\x1972\x94\x93=Q\xdc\xefb\x87\xa2\xfd\xb2*\x8f\xcb7\x15,\x9a\x1e\x1cE\xd0\xd5)\x9d\x1a983\x93M\x0f\xa6֧(\xafU&-\xe8euԝ](;.j\xe0t\xcag\x82\f=*\xe94\xb4\xfc\a\xe2\xb3%\xd2Q\x86_\xb7\xa1\xc5Gr\xe4s=q%-\xf8\x03\xbb`\xea\x90o\x9b\xd8J\x0fb;\x05\xe9\x8f+\x9f\x95jܘ9O;\xb71\xc4I\x9d\xf4C\x95\xb9I\x10\x91,\xe1\x89_t,\xcfy٬\x1e}\x8bJ\xa9\xe8\xdf\xee:џ\x9b\xd9-\x96\x91E\x1b\xd6d\x90Ԋ\xb6\xfe\xe6\xd9\x05m\x83\xfd\xf3қ\xe8\x1b\xd8\n\xb2\xa8nO\x01\xa9\x95\xeawM\xae\b4\xd5\x1fٛ\xd7\xd64'E\xbe\xc0Z1]9ףDž\x8a=\x99SYuUg\v\xc8T\xcd/I^\xcc\xd9w\xbd\xc5}\xf1\xfaڒש\f\xe5\av>*,\xde\xdby\xbd\xf3;\xde\xd7\xc5\xdfdo켮Y\xb7\xad\x859ʰ\xddά}GJ<\xaf\xb1\xb2\xb9k[\x8e<ä\xda)x~p\x84N\xca\xc6U\x90x\xfa\xc0\xd2I\x9d\fB\x95\xb9I\x10\x89\xa2\x9d\xe5\xd9\u07b5\xaf\x99U\xa3\xef\xd8i\x84\xd4&\x93\xa9u\xecr\xe6F\xc5\fWꢚ\xe9\xae\xcc\r\xec&\xf1\xf6Z\xfa\xb8\x8aVڟ\x99\x9a2g\xbf\xd2b\xd5\x03\x81\v\x90:\xd2\x15\xf8\x82FW@\xa7\x99e\x8b\x92\xd3s\x15ͺ\xc8\xc3JՁ┤L\xf9\xaa\x8b\xef\xacz\xaaf\xe8z(O\x10Z\xb2\x05O\x8b \xac\x16\x87\xf6\x15ey\xd7\x1e(r\xaf젗B\x1bō\x820\xb7C\xb3n/\v땦\xd77\xe6\xcc_)_+v\x94,\xceY\xce\x14\xfa\xe9\xf2\x9d\xf9n\xefJ٦椥b\x1c\xe1\xa8N nY\xeaRԑ>\x9eU\xbe\xa0A\xf4>Z\xefw\x99\x9d\x97\xef!#\xbc\x9a\xb9\x96\xd5aVEa\xbb\xab \xae\xbe\x94\x05\x9d\x80DE\xba<\x900x\xa2-\xf0\x05\x8d\xb6\x13z\xbbj]\xaa\xc9\x0e\\\x93\xf2\xb082Z\x16\xbfkVE\xa6/=\xben(\x87N\xc0\neMb\xa6\xd1]\xe9\nݩKGt\x1d\xbc\xb3c\xa8\xe4\af\x95\xe2\x15\xe8\x04\xa2g\x80d\x14\xa7k\xc6\x19l\xe6\xba\xf0\xf5\u007f\xf6F\xf1Q@|\x02\x9d\x80\x05ʦf\x8e\xf6\x17=\u007f\xe0)y٬N\xdc\x02\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\x8e\x131\xb0y\\\xa79C'\xe04Jn\xb3\xfe\x1f\xc7w\x9a3t\x02#!\x90\xc5l\x85@n\xb3>\\\x9as\xdce&\x9b\xe2\xb4N\xa7\xaa\x94\xbb\x94\xbb\xf7\xd4\xec\xef\x0e\x9b\x04\xd1\x10s\x06\xb1\xedHY\xccV\x17\x87\xfbJ\x15G\x87\xf7H`2\xf8E\xabx\xcbL6\xc5a\x9d\xfa\xaa\x0f\xc9\xdf1\xeb\xaen\xeej\xae\xee\xd6L\x82\xa8\x88=\x83\xd8f\xe4,f\xabq\xcf\xfa:\x1d\xf1\x04\x9d\f\xea\x14o\x99ɦ8\xacS}c\xb7\xa4\xd3\r)i\xe5P\xed\r\xd5$\x88\x96\x983\x88m%\x98\xc5l-\x9fV_'q(8\x15\xd2)\xce2\x93MqV\xa7S5\x03\xb2Ng\xaa\xd9M\xfc\x03\xd5gT\x93 Zb\xce \xb6\x95`\x16\xb3-:\x85\xe0t\x8a\xaf\xccdS\x1cթ\xbf\xbaK\x94uj\x94\xbf\b]ߤ\x9a\x04\x11\xf8g\xc1}`c\x91\xe7\x89\xd7ٓ\xd83\x88et\xb3\x98\x19]\vS]i\xf3\xa4\xc2\r\x19I\x19\x1bD\xf6\x834Sօ\x87*\x8b|\x16\xb3^ܳ\n\xd52p:դ\xc9)q\xd7<\x02w\x01\xc6\xe9\x14_\x99ɦ8\xaaS}\xa3\xa8\xe8\xb4K\x8e&8\xb4G5\t\"p\xb1\xc5-xw\xee͖\xf2Sc\xcf \x96\xd1\xcfb\x16Ŧ\xa9\x19\x15\x8de\xa4\x82N\x16\xb8Vկr\xe5\xd2Ӈ\xda)dښ\xb2i\xeaPe\x91\xcfb\u058b{\xe6Q/\x03\xa7\xd3B\xa2\xe4\x10\x9d\xeb\xec\x9c\x1f<\xc4\xf1:\xc5Uf\xb2)\x9fy\x1c\x00`\x13#8:\x01\x00\xd4@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m\x98\xeb4\xb0f\xf6TW\xfa\xc2C\xe1\u007f\xd9@\x1eV\x1eF\xc0\xbd\x8ai\xae\xf4\xc6\xe0Ӂ{\xf4\xa1\x96,\nU\xa8#\v\xc3\x1a\xf1\xac#\xc5\x11\xffn\x82a\xf7\x9a\x053AZn\xb3E5\xc1\x96\xed\t\xc6\x12S\x9dj\\ʏ\x12\xcf\xfbP\xfb'[^\xfe\n\xd6w{\xe0ن$6\x97\xb8\xd0I\xbd`&\xc8\xcbm\xb6\xa8&ز=\xc1Xb\xa6\xd3RB\x16\x9e\x10?\xe9]\xe5\"\x99\xf74\u007f\xb3\xe5\xe5\x9fE\x96~r/\xd0\xf3=B\xc2t\xea\xdeЬ\xd7.\xc8\bu2\xec^\xb5`&(\xcbm\xb6\xa8&ز=\xc1Xb\xa2S\x13!\xdb\xe5\xa9\xe3\x84\xd4h\xfeh\xcb˟N\xbaBO\xf4t2c\x84:\x19\xa2Z0\x13\x94\xe5\x1e!\xb6lO0\x96D\xd6\xe9^Zh_-&\xd35\u007f\xb5\xe5\xe5O#ݡ'\xf1\xa4\x93j\xc1L\x80N@\"\xb2Nm\x84\f\x04\xa6\xfb6tIE\x8b\xd2]I3W\x89~\xf5\xcb?\xb0t\xba+e\xe1q\xb9*\xff\xa4\xbfx\x9a+yN\x8dꬩ\x97\x96\xa5,d\xd7%s\xa4˲\x80\x0f+\xa4g\xddL'qi\xbakzY\xe8\x82D\xaf\x9bS\vR\xa7λ\xc0t\xaa%\xb3\xe4\xa2\n\xe9ɺ\x0fX\xebU\x1fHE\xdc\x02ג\r\x83\xc5i\x0fd4\xd2\xc9Y\xae\xb4\x9b\xacD(\x00\x00\x1e\xe5IDAT\xa5\xdc\xf5N\xff\n\xb6\xc8g\x82}\a\x16,\xb0wK\xd2jz\x0e\xb6\t,\xb7\xd2Wh\xf5\xb4-\x14\xf8\x99\xe9o\xcfYd\x85\x1f\x8c?\"봊\xccД\x14\x13\x92\x9e\x91F\x1f>P\xbd\xfcǧ\x12\u05ec鄬\xf1k\x9e\xf4&\x93\x94\xd93\by\x88\xeb\xa3\xdeE\xa6\xb2>\xe8\x1e\xb3&\xd7E\xe6\xe5\xd6)\u007fس\x88^\xa9\xe5\x0e0;\xd2HZ\n!\xb3\xee)\xfb\xbb^7U\x84\xa4\xcdrMɤ;\xfa\a.\xd2+\x95\xcd gh\xeb\xa5\xe9$\x99\xb6\x9e\xf9\x89f\x81kIq*Is\x11\xd2XL\x1e\xa0e\x99\xfe\x80N\x87\x92\xc8\xd4ٴ$x\xed\x13X0\x8dN|ϡ6\x81\xe5\x96\xfb\xe2VO\xd3B\x81\x9f\x99\xc1\xf6\x84N\xe3\x93\xc8:- \x05\xea\x826\x92\xc4\x0e:\xa7\xa6\x92\r\xfc\xcb?\x90LV\xd0\xfd\xe5T\ni\xd4Le\x95\x9a\xe5\v\xbbǙU\xb4u_\xb0\xb5j\x81\x95~{\t\xa9`e\xb3\xd9>.u_F\xe6I\xb52I\xe0@i\xa4S\xa8g\xbe\r\xaf\x93j\xf5T-\x14\xf8\x86\x06\xdb\x13\x8cS\"\xeb\xf4\x10Y\xaa)Q\x86\x8e+\xd8a+\xf4\xf2O#MR\xf1'\x93I\xbf\xfa\xc9Cd\xce\x19\xf5h\xf3\xbd$e\xc8\xec\xdeTzff\xa0\x93|)T͆$\xa4}4\xbc\x1b\u007f2;\xb6\xf8\x95=\xf1^\n\xeb\xf4^\x1a\xdbyk\xc9\xccPk\xd5\x02\xd7\xca箟\x10y\x9e\xb9\xa4Z\xe9~\xa6\xb2ȃ\x83\xa1\xfeuu\xe2z\xe6\xdbp:\xa9WO\xbd,2\xaa\x99\xe9oO0N\x89\xac\xd3\xc3$W[t\xef̮\xb2Eӈ\xea\xe5\xff\x90^\xe5̑p\x91v\xd5\x13\xff\x19z\xa5\x92\x9c\xbb\x87\xbb\x12\x1f D\xb9\x8e\x98\xc3\xce\xe5\xf4u\x92\x8fo{\xd8\xff\xd2\xfe\x1e\xde\xcd\a\x81n\xf6Ho\xfcKٱ\xaa\x9d\xcc\xe6Z+\x03\x03\xdc\x02\xd7\xca\xc7\x05:\x17v\xe5\xef/ UJ\xad\xc0\xa5\x17\x8f\xaeN\\\xcf|\x1bN'\xf5\xeai\x96EB=3\xbd\xed\t\xc6+\x91u\xaa\xe0\x87\"\x8e\xb3=\xa6:\x8d\rbe\xccQ\xbd\xfc\"\tѨzBϬ\n\x92\xe8Ĕ\xe2\xe0\xa5x7\x99\xa2L-`\x9fdE\x1a(\x0f\xe9\x14\xdeM?!\xf2D\xb3\xa4S\x17I\xbbG\xed\xaf\xe5Z\xcb\r\xf9\x05V\xfe\x12\xa6\x13=\\q\x87%\x05]\x9dB=\xab\xdap:\xa9WO\xbd,\x12\xea\x99\xe9nO0^\x89\xacS7\xf7\xd2\xf7\x93\xc9]\xecΛ\xe2\xfa\v\x1fjNN>T\xae\x10$TO\x18\xf7N\xad\x99EB;I\u007f4G\xa70\x9dº\xf9 \xf0Q\xcf~\xf9\xb2d\x069q/i\xca\a~\x8dN\xaa\x056\xd2ɯ]d\x86Z\xa75Z\x9dTm8\x9d\xfa5G\xa70\x9dT\r\xf5\xb7'\x18\xaf\x98\xdc\x151-t\xf1\xb4\x82^Z\xd3\xeb\x01\xf9Z}\xa9\xfa\xe5Oe\xc7!Ʃ\xfe{\xea'\x03\xf2\xa7+\xb5dJ\xf0F\xa2\a\xa2\xb8v\xd2\xea\x14ލ?E\xe9f\x8d\xacS\x05Y\xd1.\xef\xb3\xfc.\xac^`C\x9df(#\xe4M\x0fU\a\xbaW\x16\xacJ\xe9\xec\xe10\x9d\xf86\xfc\xb5\x93j\xf5\xf4t\xe2\x1a\x1amO0N1\xd1i\x17!\xf5\xf2\xd4!B6\xb0\xb3:\xe9\xbc\xff\xc3tvQ\x15z\xf9\x8b\xc9li7o#\xae\x0fTODe\xcf\xed#\x93\x83\x1e\x04\x86\xbev\x91\xe4O\xa2\xd4I\xaf\x9bb\xb9\x9b{\xd3e\x9d\x06ȴ\x15\xf25>\xbf\v\xab\x17\xd8P\xa7\x15\xca\u07be@\x1e\xf2\x93\x90\x17\xac^>\xdd\xfd0-L'\xbe\x8d\xdeȞ\xb4zz:q\r\x8d\xb6'\x18\xa7\x98\xdd\x02\xbb\x90^$\x9f\xf9\xf0^\xef\xe3\x84̹翗,\x8dNߘG؎\x1ez\xf9\xfb\\\xa4\x98\xeeO])\xec`\xa6z\xf2\x10y\x88\xee\xba\x1f.R\x06\x87\x19\x17\xa6\x90\n*ES\x12\x1bX\xd3\xdc\xcb\xe3\"\x8d\x9f\xdc\xd39:\xe9t\xd3\xef\"\x1b\xee\xf9?\xcc\r\xdcT\x91I\x92\x92\xa5\xd3,\xd5\xd1I\xb5\xc0\x86:\xf5'\xb1E\xba\xb7\x8eL\x15\x83\xfd\xcb\vF\xcf\xdd\xe8_\xfa3I\x98N\xaa6\xf2rK\xe5\xaa\xd5\xd3Ӊkh\xb4=\xf1\xb9\xd38\xc5L\xa7O\n\x02\xc3\n\v\xa4\x91\bB\xa6-\x98=9\xa5\x8c\res/\u007f\x93\x8b<0{:\x91\xef:\xe7\x9f\f\xa4\x10\xd7\xccYI$\xad?\xd4g\xfd\x14\x92<;\x9d\xc8\xe7\x91j\x9df\x13\xf6\xa5\b\x9d\x93=\x9dn\x1a]$mv\x12Y\xa8\xe8\xb4'\xe0\x95j\x17V-\xb0\xa1N\xecs֔\xd9t\x1e\xdc\x1d\xe1ʂ\x15\x13\x92\x9cN\x92*\xc2tR\xb5\x91\x97[.\xe7WOO'\xbe\xa1\xd1\xf6\xc4]\x11\xe3\x133\x9d\xfc\xfe3\xc53\x1ep\xa5/R>?m\xcbLu\xcd,\xfb\xe0C\x17\x19T\x9d\x9c\xf4/\x9d\xeeJ\x9a]-\x9f\x8a\xf1O\x06\x96\xcep=@[\xf0]v?\x9c\xeeJ\x97oj\xd3\xe8ԗ\xf9@\xf2~\xbd\xa1\b\xddnrӒ\xe6\xb45*\x16\xd1E\n\\`\xf1\xbb0\xbf\xc0\xc6:\xf9\xfb\x8aӧ\xa4\xe6\xf2\x8b\xa2,ؽ\xdaY\xae\x94ܾ\x13\xe1:\xf1m\xe4\xe5Vʹ\xd5\xd3Չoh\xb0=\xa1\xd3\xf8\xc4\\\xa7\xf1\xc2\x00\xbb\xc1\b\x80\xb1$qt\xaa\xe0\x86\x11\x00\x18\x13\x12D\xa7\xbe\xc1\xc6\a\\\xa1a\x04\x00Ƅ\x04\xd1)\x97\x10\x1c\x9c\xc0\x98\x93 :U'\xa5\xc1&0\xe6$\x88N\x00\xc4\x03\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1bv\xebt\xb6\xe4\xb6Y\x95h\xb8Sr֬\n\x00q\x87\xa9N\x1fm\xc9\xf3\x94\xfb\xccj\x058(4D]7\x12\xbe\x83\xc2A\xb3:V\xb8\xec=oVń\x91\xf7\x10-\x97\xe6\n2^k\x9br3m\xe2yOS\xd8 \xb8\xd9\x1bӋ\x1e\xa1A\xaf\r\xb0\x17S\x9dJ\xbdG7y>6\xab\xa5\xd0*\xbc`V%Z^t\xb7\x9aU\xb1\xc0\xf9쨏vW~\xaf[l\xa1\a\x0e\x83\xce\"V\x18~Ž\xb9\x87\xb2[\xb0v\xa0\xbf\xd9\xd3sX\xf8\x9d\xa6\xf0N\xa5\xa7\x94\xfeW\uaa7c\xa3\xd7\x06؋\x99Nw\x84V\xbf\xef\xaeI\xa5\x00\xef\xbbw\x9bU\x89\x9e\xbdY7ͪX \xfa7\xfa\x95\xeb\xf5ˣ\xef\x81è\xb3\xc8\x15\xb2\xa4#\xc9\v\x82e\x03\xae\x86\xe9\xe4\xdf]N\xdf\f\xefx\xcam|e\x80!f:\xbd'X8\xc7\xd9\xec\x1d6\xab\x12=\xc3\xde\xcdfUF\x85\xc7\xcc\f\xb0\x82ig\xba\x15d\x9d\xde\xdba\xd9`=\x9d*KO\xfb_X]\t\x9d\x9c \xa2N\xbe\xc5\xf2I\xfc\x0e\xbf\u007f\xab@\xcf\xe3\xdew\vKؤ\xfb؎%\x9e\xd5\xf2\xc1\xe3\xbdo繽\xe5Ҵ/[~\xcd\xder\v\xc2\xde\xf7*\v=\xab?\xe5:\xe3J\x8d:\xf3\xbdP\x92\xbddG@ɽ\x1e\x8d\x9c\x96{P\xf8\xd8C\xd7\xe1$\x9bR/z\x88\x9eՅ\xee\xbc\xf2B\x9f\xff\xbcrٲ\\\xbd\x16\x06=ܩ\\\\\xb8c\xc7\xe2\xec\xd3\\\x0f\x1c\\g\xaa%ӛ\x9b\x8a\xac\xc0u\xce\x1f\xe92\x94\xfb\n\x05!\xc7翻>\xdf]X\xfe\x96\xdf\xffi\x9e\xfbDž\xf9W\xb6\xe5\x94\xdee\x8bӺ%?\xa7\\\xb9d\n\xea\x14\x9a\xdb\xee\xca\xc3O\xfbˏ2\x9d\x82=h\x9b\x01\xbb\x88|tz\xb3\xe7\xa4\xd0\xd0\xd3s\x8b\x9d\x98\xbb\x1b\xfc\xbe\xab\x9b\xb3\xe8k|\xd2-x\x1b\x0e\xe6<\xcdj\\\xc9^~\xf0r\x83 ]\xe7\xbc)\xf4H\xad\x86O\x9f,,\xca.\xdcQ9\xf7\xcf\\_\\\xa9Qg\x9b\x85m/\xb6z\x1fS\xf6\xc9W\x84\xdf\xfaUX\xee!\xc0՞\x9e\xf9\xd2\x1e\xaa\xaa\x1b⍹\x9b\xce^>\x96'|J\xaf[z\x8a\x9e\xa4\xd7-\xff\xaeY\v\xdd\x1e|\x8fz\x0f7\xcc\xf7\x1c[\xdd\xca\xf5\xc0\xc1u\xc6/\x99\xee\xdcTd\xed\x1d\x1e^\xbf\x83\xcd\xe1\xb7\rt#\xbc0\xf7\x857\x99\x9c[\xae\x9c.\x17\xae\xd2m\x9e#\xec(\x15\x16\x1f\xcck\x95\x16\xa7\xb0\xa1\xa1\xd0\xf3\x8e\xd40\xa8Shn\xbb+of\u007f4\xff\x16\xd3)ԃ\xa6\x19\xb0\x8b\xe8O\xf6\xa4\xb7̆,i2\x87\xbe9Wz\xe9\xd4p\xe1j\xfa\x92\xf9NKg\xf9/\n\u007f\n4{L\xa0o\x9da\xd7\\\xa1R\xdd\xce\xceK\x03\x19W\xe5\xc3\x005X\b\xbf\xf8\xb7\xd6\x03\x87Gy\xc3\x0f\xd5\xe58\xece\x1a\x1cΑ,\xe4N\xbfTk\x11\xde\xc3i\x81\xbe\xd3\x1f\x16\xde\xd1\xf6\xc0\x11\xec\x8c[2\xa3\xb9\x85\xc8b\x87\xacriҷ\xa9\xe4N\xa14\xc89|\x92.\x88o\x19\xf3\xd8[I\xb7\xf5y\xff\xa6-\xacn!-\xfe\xb8\xb0D\xaa\x1dЉ\x9b\xdb\xeeJ\xff\xb2-+\xfdL'\xae\au3`\x17\xb1\xe9\xb4)0yIx3T\xf7\xac\xf0~`\xf2\xb1,\xfe\xc0\x14^\xaa\xdb\xd9\xfaG|\x9fR\n7\xcbun\n\xa7G\xd8\x03GP\x86`]\x8e?\xe7\x17n;\xf6\xa6Ov\x81\u05c9_\x8b\xf0\x1ev\xe7Ї?Iҫz\xe0\bv\xc6-\x99\xd1\xdcBdm\xb9zu\x99\xac\x93\u007f\xf8\x1by\xca\xe7\x14w\x0e\xaf~$GXF\xa7\xbc'\xa9*\xc3\xcc\x14ZW:\xc1>,\x0f[\x04t\xe2\xe6F+\xb1\x0f\x1d\xa4k\xa7P\x0f\xeaf\xc0.b\xd3)8\xd9*p\xd7)܅\xf0c\xda\xcb\x01M\xa9ng˔K\t\xe5T\xec\xaa\xf0\xca\b{\xe0\b\xca\x10j\xc6\xf1\xf1\xd1\xf5K\x84\xbc\x83aG'~-\xc2{h\x9d{\x87\xbd\xa1\xbc\xa3\xed\x81#\xd8\x19\xbfd\x06s\v\xc1fq\xe9\xb2\xf2䬲\x19\xaez\vw\x9f\xed)\x95t\xba\xe4\xbf\xea\xf6+:I\x8b\xd5#H\x03\xee\x81W\x80\x9b\x1b\xadtg\xc7mI'\xae\au3`\x17\x16uګ\xd9\u007f/\xf3\xaf\xc7p\xf0\x12\xda\xffط\xfd:\x84Ju;\xab|\xe4\xf7\x12\xca;f\x83;|\x80\xdeZ\x0f\x1c\x11u\xba\xba\x9b\xee\xda\x1f\x9f\xf4\x1cfO\xa4\x1d\xfc\x98tXR\xadEx\x0f\u007f\x16\xca\xff\xfcVQ\x89O\xdb\x03G\xb03nɌ\xe6\x16Bَo\xb1ո\xe9\xdd[\xf8\x11{\xb6\xa4\x84\xbds};\xa0SV@\xa7m\xec\x8f\xc7\x04i[\x05t\xe2\xe6&U\xf2K:q=\xa8\x9b\x01\xbb\x88^'\x0f}A|+5\xfb\xef]o)ۛ\xb6I/\x8e\xff\xdbE\x81wg\xfd\x01\xe2P\xa9ng\x97\xe4k\x9e\xbd\xf2\xfd\x10\xbe%\xe5#\xec\x81'\xa2N\r\xc2%\xf6_\xe9\x16\xe9\xb1\xd4\xef\xbf-\xf7\xa3Z\x8b\xf0\x1e~/\xe4\tB\xe9Ͱ\x1e8\x82\x9dqKf47\xff\xfb\a\xdf\xe7fA\xada\xabX\xb2\u05ffE\xdaƅ\xccm\xdf7\xc2tʣF\f?R*\xb5\b\xe8\xc4͍Ӊ\xebA\xdd\f\xd8E4#{W%IJ\xbc\a\x1bJ\x04\xf7\v\u007f\xbc\xd5\xe3\xde|\xd5\xf7\xe6f7\x1b\xf1\xbb2\xffѣ\x97\xb6\tǤ\xea\xef\xc9w\x06}\xfa[i\xc0*x!%\xa3*\xd5\xefl\xf7\xdcʳg7+wV\xb4\x86\x9d\x88X\xed!\x80\xefw==\xf37\xf7\xf4\xdc\xf5\xab\xea\x86h\x10\xb2\u007fr\x9e6\xbb\"=\xc9j=[\x9a\xfdg\xd5\xdc\xf4{\xf8\xfd\xfc\xcb/\xf6\xdc\xf4\x85\xf5\xc0\xf7\xact\xc6/\x99\xee\xdc\x18O\xcb\xc3\x0f\x81\xbb\"zrv\f\xbf\xb2\xd5{\xd3\xff~ζW|\xb4\xd9\xfa\xc3\r\x8fѓī\u007f\xcci\x1d>\xe9~k\xb8\x92\xa9\x9c%,?y\xac(\xe7O\xf4`\xc9\xee\x8ah\xed\xe9Q\xcd\xed\xa3\xcaR\xb6\xaa\xb7J+?\xe2z\xe0\x9b\x01\x1b\x89\xfc\xb9S\x8et\x06\xee\x96\x06r\xdf+\xf5d\xaf\xfe\xb1 l\xddʊ\xfe-\x9b>n\xa5\xc5\u007fZ_\x98\x1d\xbc_u\xef|v\x9e\xff\x96|\xe2\xae9\xb8\xa8J\r:\xbbT\xba8\xe7I\xe9\xbd\xdb\xdf\xe3\xd9\xe1\xd7`\xb1\x87 o(W\x12G\xfd\xea\xbaA^x\xb2\xa1\xd0\xed-\x95]\xf0m\xcb\xf1?\x86\xfb\xa542\xa2\x19B\x8d\x82\x18\x9b\x013\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6a\xb7N\xc8(\a\x13\x18S\x9d\x90Q.3\xf2\x1e\xa2\xe5\xa4t\a\xed⧣\xb9\th\xab\xa0\x93\xdad\xc0\xd1P]+\xb3\xb0Rw\xc2'\xa2\x9bꄌr\x19\v=pĒQ~\xf7\xbc\xf0㞞\x17\x96\xe5}\xa4S_\x83\x947\x18%\x1f\xf7\x94\x04\xea\x1a\xce\xc2\xca\xe2\xe8ԝ\xf0\x89\xe8f:!\xa3<@\xf4=pĔQ~K:\x8a\xdc\xf1D%\x8a\x95oZ\x94\a\xeb\x1a\xcd\xc2\xca\xe2\xe8՝\xe8\x89\xe8f:!\xa3|D\x98v\xa6WA\xde\u007f\xfd\xcb\xcc\xdaJ\x8cD\xa7\xf0YXY\x1c\xbd\xba\x13=\x11=rV\x042\xca\xc7\"\xa3\\\xde\u007foK)\xce\xc1fF[=k\x87\\\xca'\x97si\xe4\xaaׂ괍\xcen\xfe\x1dn\x16l\x19~\xcc\"%\x84\xd3\x06\xcbk\xa5\xeeDOD\x8f&\xc9\b\x19\xe5\xcef\x94\xdf\x12\x8e\r\xdf\xfdݲ%w\xf9fF[=KXr\xf2l\xdeӪ\xe4r.\x8d\\\xb5\x16T\xa7\x9b\x95B\xebU~\x16ï\x14n\xb9\xed\xbf\xfd\x93\x9c\x9e\xbb\x06\xcbk\xa5\xeeDOD\x8f\xfed\x8f\x8f]EF\xf9hf\x94ߒ\xde\xf7\x8bn\xaa\x9b\x19l\xf5,\xefG\xec,ۯJ.\xe7\xd3ȹ\xb5\xa0:\xb5f\x9d\xd7\xcc\xc2\xdf\xc0\x8e0\x9b6\xcbuu\x96\xd7J݉\x9e\x88\x1e\x9bN\x9b\x02\x93\xc8(\x1f\x85\x8c\xf2[\xc2O\xae^\xbd\xb4i\xf1\x1b\xea\x15\xd2\xdf\xeaY[\x02\xa5|r9\x97FέEy\xc3^\xe5\xe5\xe4f\xe1\xbf9\xf7\xdf\xfc\xbe\x1c9\xc3Yoy\xadԝ\xe8\x89\xe8\xb1\xe9\x14\x9cDF\xf9(d\x94+\xd7\xfe\xeb\x8b|\xaaf\xfa[=T\xca%\x97\xf3i\xe4\xdcZ\x94{s\x96<\xed\xd3̂\x16\xef\xf0_\xca\xd1\xd8\xcd\xcd\xd8J݉\x9e\x88nQ'd\x94s=\x8cVF\xb9\xb2\xff\x1e\xa3o\xe6\xfc\n\xe9ou\xb5NY\xb2N|\x1a9\xb7\x16\xe5\xdew\xde\xcfi\xd5̂\x9e\xac\xe5\xf9\x94\xf37\xdd\xe5\xb5Rw\xa2'\xa2G\xaf\x132ʵ=\x8cVF\xb9\xb2\xffn\xca\xf6\xa9VH\u007f\xab\xeb\xeaħ\x91sk\xc1\x06\xca/\xb9\xaf\xaag\xc1\x82\x02\xcf+\xe7o\xba\xcbk\xa5\xeeDOD\x8ffd\x0f\x19\xe5\x8ef\x94˷!\x9c\xad\x946f\xb0\x99\xfeV\xe7J\xf9\xe4\xf2P\x1a9\xb7\x16\x1f\xf7\x94l\xfe\x9d\xefn\xb9\xf7\xcam\xd5,\xe8L\x1e\xc9\xf9\xd4py\xadԝ\xf0\x89\xe8\x91?wBF\xf9\x18d\x94\xcb7ɹ\x97\x1d\xf3\xf1\xcd\xf4\xb7z\xa8t\v\x9f\\\x1eJ#\xe7\xd6\xe2(\x9bx\x83\xf5\xbeW=\v\xff\x9f\x84\xc0QUgy\xadԝ\xf0\x89\xe8f'{\xd6@F\xf9\xb8\xe4nV\xd8\xfb\x80!V\xea\x06\t]T'8\xf6ꄌr\xc73\xca\xed\xe0\xf4\xe2\xe8ߺ\xac\xd4\r\x02\x9d\x80\x19\xf1\x91Q>b\x1a\xae\xf8J\u007fbVI\xc1J]\x1e\xe8\x04̈\x87\x8c\xf2\x913,,\xdf\xea\x8d\xf2l\xd5J]\x8e\t\x94\x88\x0e\x9db'\x0e2\xcam\xa0!\xbbTsϠ1Vꆘ@\x89\xe8\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\xc6\xc8ur.\xbc;:\xd6\x1f\x95\xff\xbf\xb2:\xcf]\xb8yb\xdc\xdb\x02\xe2\x04\v:\x8dyx\xb7!|\xdd7\x84\xdd\xd2\xffW\xe7\x96\x1c\xbb|\xb4(o\x02|g\r\xc4\r\x16t\x1a\xfb\xf0n#Bu}=\xf9\x8aNg\x05\x16ipS\xf9\xda=\x00N`A'Ӽm+\x98vfZ\x81#Tw\xbd\xb0\xde#\xeb\xe4\x93\x0eKz\xe1b\x00\x8c\x16&:\xc5Ux\xb7*o\xdbwt\xb9\xe7\x1b\x87}\x9a\xcen\xdf\xf2\xe7\xec\x0e\xd4\xf7ݹT\xf8\x8d\x98\x8e\x9d\x00\xc4Dd\x9d\xe2+\xbc[5\xe3MY{_ܛ\xb5\xd9\x1fV7\xa8ӛԱl\fE\x00\a\x89\xacS\x9c\x85ws3\xbe$\x85\xd5ɏ\xea\xbaA\x9d|W\xaf\xb4\x16z\xe1\x13p\x8e\xc8:\xc5Yx77\xe3\xcdr$㣛\xc3\xea\x86N\xf6(\x1f\xe7\xebd_\x020J\x98\\;\xc5Wx77\xe3\x12Y\x93\U00092c3a\x8aNw\xe496\xb8q\xf1\x04\x1c#\xb2Nq\x16\xde\xcd\xcdx\xf3#\xacw_ᦰ\xba\xb2N\xbe\x1c\xb9f\x83'\x86\x1c+\x00b#\xb2Nq\x16\xde\xcd\xcd\xf8E\xe9O'\x85\x17\xb5u\x03:屟@\xf2\u007f\\\x18\xfec\x1a\x00\x8c\x16f:\xc5Sx\xb7*\xa3\xbcR\xd8}~\xb7P\xa9\xe9\xecNOO\xf6z)T\xfd\x05\xa1\xfc\xe8\xe5\xd6\xc2<;\u007f\xaf\x1a\x80\xc8D\xd6)\xbe»U\x19\xe5\xbe\xd6e\x9ee\x87}\x9a\xba{\xa5\x1an\xf6+\xac\xbf}\xbap\xfe\x92m\xb6d\xd2\x02\x10\x1d\x16\ue288\x9a\xc4\t\xef\x06\xc0\x12\xa3\xa1S\xe2\x84w\x03`\x89\xd1\xd0)A»\x01\xb0\xcah\xe8\x94\x18\xe1\xdd\x00Xf4tJ\x90\xf0n\x00\xac2*:\x0101\x81N\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00۰[\xa7\xb3%\xb7ͪ\xa8\xb9S\x12K\x88,\x00\xf1\x88\xa9N\x1fm\xc9\xf3\x94G}\xb7\xd0A\xa1!\xea\xba2\xbe\x83\xc2A\xb3:V\x18yd\xfa\xc8{\x88\x96\xb3n\xe5\xae`\xb7\xf9[J\x83\\\xe9E\x8f\xd0`V\x15\x8c\x19\xa6:\x95z\x8fn\xf2D\xfb\xbd\xa5V)\xe5\xcb\"/\xba[ͪX\xc0Bd\xfa\x98\x87\xae\x1f\x14zz\x0e\v\xad==s\x8d\xdfQ\x02\xcd\xeeTzJ\xe9\u007f\xa5\x9eJ|#2~1\xd3\xe9\x8e\xd0\x1a\f\xd43\xe5}7\x1f\xca\x155{\xb3\xec\xfc\x06z\xf4G\xc71\x0f]ou\xb3\x84\xc1\xdf\xf9\xfd\x1e\xe37\x94`\xb3\xdd\xe5\xf4]펧<\xa6M\f\x9c\xc1L\xa7\xf7\x04\vg>\x9b\xbd1}5pػ٬ʨ`%\x06\xdd\x14\xd3\xcet*\xf8\xdeStz\xcf\xd8\xe0`\xb3ݕ\xa5\xa7\xfd/\xac\xae\x84NqLD\x9d|\x8b\xe5S\xfb\x1d,\x82\x9c\x9eǽ\xef\x16\x96h\xd2\xc8\xfd\xef};\xcf\xed-\x97\xa6}\xd9\xf2K\xcde\x89\x1b5\xe3\x82\xc9){=\x1a\r-\xf7\xa0`\x10\x99\xce\x11W\xa1\xeb\fI\xa7h\x9a\xed\xae<\xfc\xb4\xbf\xfc(\xd3\xe9\xee\xfa|wa\xf9[~i![\xb7\xe4甿\x17\xd6/\x18\v\"\x1f\x9d\xde\xec9)4\xf4\xf4\xdc\xf2\xfbo\xf6\xb8\x1b\xfc\xbe\xab\x9b\xb3\xd4i\xe4\xfe+\xd9\xcb\x0f^n\x10\xa4\x93\x957\x85\x1e\xa9\x15\x97%n\xd4,\x14L\xcexE\xf8\xadz\xbe\x96{\b\xa0\x1b\x99\xce\x11_\xa1댠Nf\xcdvW\xde\xcc\xfeh\xfe-\xa6\xd3ya˕\xd3\xe5\xc2Uy!\v\x1b\x1a\n=\xef\x84u\fƀ\xe8O\xf6B1z\\\x1a\xf9p!\x8b\xb3\xf3\x9d\x96.\x8f_\x14\x82_\xb4\r\x85\x98\xeb6\xe3\x82\xc9\x197\x85\xf0\x8b\u007fk=p\x84G\xa6s\xc4]\xe8zP'\xd3f\xbb+\xfd˶\xac\xf43\x9d\x86O\xd2%\xf5-\x93\xde*\xb2\n\xef\xb28\xc1\x12\xbd\xbe\x81\xd3ĦӦ\xc0\xe4%>\x0e\xe2\xac\x10\xcc\xd7\x0f\x85\x98\xeb6\xe3\x82\xc9\x197\x85\xd3~-\xd6z\xe0\b\x8fL爻\xd0\xf5\xa0N\xa6ͨN\xec3\x05\xe9\xda\xe9\xce\xe1Տ\xe4\bRL{\x96t\x82}X\xc0x_<\x10\x9bN\xc1\xc9V\x81\xbbz\t\x9e\xb7\xf0!\xe6\xba\xcd\xf8`r\xbf\xfe\x8f\x9aY\xeb\x81#<\x94\x96'\xdeB׃\x1bʹ\x19\xd5\xe9ΎےNW\xbd\x85\xbb\xcf\xf6\x94\xca:I\v\xdb#\x98\x8d\xd3\x03'\xb0\xa8\xd3^\xcd^}\x99\u007f\x19\x87\xb3\x1a\x02\x93\xa1\x10s\xddf\\09\xa3\xc1\x1d>\x14o\xad\a\x8e\x88:\xc5]\xe8zP'\xd3f\xbb\xe5\xc4[\xa6Ӓ\x12\xf6&\xf6mY\xa7m\xec\xf1\x98\x10\xed\x87\x19`4\x89^'\xf6#\x99\xbe\x95\x9a\xbd\xfa\xae\xb7\x94\xedcۤ\xd7\xd4\xff\xed\xa2\xc0{v\xe8\xadX\xb7\x19\x17LN\xf1-\xd1\xf9\xd5\x18K=\xf0D\xd4)\xeeB׃:\x996\xe3t*d\xf2\xfb\xbe!\xeb\x94GE\x1a~\xa4\xd4\x0f\xe2\x80hF\xf6\xaeJ\x92\x94x\x0f6\x94\b\xee\x17\xfeȧ\x91\xfb\xaf\xcc\u007f\xf4\xe8\xa5m\xca\x0f:\xbf'\xdf/\xa4\xca\x12\xd7o\x16\n&\xf7\xb33F홊\xd5\x1e\x02\xe8G\xa6s\xc4W\xe8:\xe5\xcd\xc3B\xab\x1c\x1dm\xd2\xec\xa3\xcaR\xb6&\xb7J+?\xa2\x15\xd6\x1fnx\x8c\x9e\x0eҖY\xc2\xf2\x93NJr\x90\xb6\x16\x17D\xfe\xdc)G:\x9dwKû\xef\x95z\xb2W\xffX\x10\xb6\xf2i\xe4\xf4\x02}}av\xf0.ֽ\xf3\xd9E\x90*KܠY0\x98\x9c\x9e\xf7{vhgl\xb1\x87 \xfa\x91\xe9\x1c\xf1\x15\xbaN\x0f+\xac\u007f\xcf\xdd(\x9a5\b\xc2&\xfat\x8b 4\xf8}\xadEY\xde\xf5NJ\xdc\xf4\x98\x94\xb5csN~\xa5\xea=\x03\x8c\x19f'{\xd6\xf0ms\x87\x8f\\\x9bpڽ9\xde\u007f\x82)\x9eC\xd7C\u05eb`\xec\xb1W'\xfa\xbeYhq\xc4\xf6\x8e7l\x90,\xee\x88\xe7\xd0u\xe8\x14OجSb\x12ϡ\xeb\xd0)\x9e\x80NQ\x10\xbf\xa1\xeb7\xa5\xf1\x12\xb3Z\xc0)\xa0S4\xc4m\xe8\xba4^\xf2\xbe\x1f\xc4\t\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00۰['d\x94\x83\t\x8c\xa9N\xc8(\x1f=\x90Q\x9eh\x98ꄌ\xf2\xe8@F90\xd7\t\x19\xe5Q\x82\x8cr`\xae\x132ʣĴ3d\x94O\x00\"gE \xa3\x1c\x19\xe5\xc0\x02\xd1$\x19!\xa3\x1c\x19\xe5 *\xa2?\xd9CF92ʁ\t\xb1\xe9\xb4)0\x89\x8c\xf2`\x0f\x81\xceL\xc3\xc6\xd5 \xa3<\x91\x88M\xa7\xe0$2ʃ=\x04:3\r\x1bW\x83\x8c\xf2D¢N\xc8(GF90&z\x9d\x90Q\x8e\x8cr`B4#{\xc8(GF9\x88\x8aȟ;!\xa3\x1c\x19\xe5\xc0\x02f'{\xd6@F\xb9\xe3 \x056\x9e\xb0W'd\x94;\x0et\x8a'l\xd6)1AF9\x88\x0e\xe8\x14\x05\xc8(\a\xd1\x01\x9d\xa2\x01\x19\xe5 *\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6a\xb7N\x963\xca\xf5Ar9\x18\x8f\x98\xea4\xda\x19\xe5\xfa \xb9\\@r\xf98\xc4T\xa7\xd1\xcf(\xd7\a\xc9\xe5H.\x1f\u007f\x98\xe9\xe4DF\xb9>H.Gr\xf9\xb8\xc3L''2\xca\xf5Ar9\x92\xcb\xc7\x1d\x91\xb3\"F\x9cQ\xceuf9w\x1c\xc9\xe5Q4Cry\\\x11M\x92\xd1\b2ʹ\xbe,\xe7\x8e#\xb9<\x8afH.\x8f+\xa2?ً1\xa3\x9c\xc7Z\xee8\x92ˣh\x86\xe4\xf2\xb8\"6\x9d6\x05&\xcd3\xcay\xac\xe5\x8e#\xb9<\x8afH.\x8f+b\xd3)8i\x9eQ\xcec-w\x1c\xc9\xe5Q4Cry\\aQ'\xeb\x19\xe5<\xd6rǑ\\\x1eE3$\x97\xc7\x15\xd1\xeb\x14cF9\x8f\xa5\xdcq$\x97\xfb\xa3h\x86\xe4\xf2\xb8\"\x9a\x91\xbd\x11e\x94\a\xb1\x9a;\x8e\xe4r\xbfy3$\x97\xc7\x17\x91?w\xb2!\xa3<\x88\xc5\xdcq$\x97#\xb9|\xfcav\xb2g\x8dX2\xca\xf5Ar\xf9\x88@6\xec\xd8`\xafN1d\x94\xeb\x83\xe4\xf2\x91\x01\x9d\xc6\x06\x9bu\x9aH \xb9\x1ch\x81N1\x83\xe4r\xa0\x05:\xc5\x0e\x92ˁ\x06\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80mح\x132\xca\xc1\x04\xc6T'd\x94ˌ\xbc\x87hAF\xf9\xf8\xc5T'd\x94\xcbX\xe8\x81\x03\x19\xe5\x13\v3\x9d\x90Q\x1e \xfa\x1e8\x90Q>\xb10\xd3\t\x19\xe5#´3d\x94'\x14\x91\xb3\"\x90Q\x8e\x8cr`\x81h\x92\x8c\x90Q\x8e\x8cr\x10\x15џ\xec!\xa3\\\xdb\x032ʁ\x86\xd8t\xda\x14\x98DF92\xcaA\x88\xd8t\nN\"\xa3\x1c\x19\xe5 \x84E\x9d\x90Q\x8e\x8cr`L\xf4:!\xa3\\\xdb\x032ʁ\x86hF\xf6\x90Q\x8e\x8cr\x10\x15\x91?wBF92ʁ\x05\xccN\xf6\xac\x81\x8c\xf28\x01)\xb0c\x83\xbd:!\xa3\x1c\x19\xe5\x13\x1a\x9bu\x9aH \xa3\x1ch\x81N1\x83\x8cr\xa0\x05:\xc5\x0e2ʁ\x06\xe8\x04\x80m@'\x00l\x03:\x01`\x1b\xd0\t\x00ۀN\x00\xd8\x06t\x02\xc06\xa0\x13\x00\xb6\x01\x9d\x00\xb0\r\xe8\x04\x80mح\x132\xca\xc1\x04\xc6T'd\x94ˌ\xbc\x87h9)\xddA\xbb\xf8\xe9h\xee\x12\xda*\xe8\xa46\x19p4T\xd74ڼg\xaeP\xe2\xf3\x9f\x15\x84\xb9\x97\xd5\u007fxgu\xb6\xb7\xf2\x8a\xf7\xb6\x95\x19O LuBF\xb9\x8c\x85\x1e8b\xc9(\xbf{^\xf8qO\xcf\v\xcb\xf2>ҩ\xafA\xca\x1b\x8c\x92\x8f{J\x02uM\xa3͇/\v\x9e\x1e\xffݳ\xc2e\xf5\xf7L.e\xafv\x15\x19壙Q~K:d\x15\xddT73\xd8\xeaYޏ\xd8Y6\x9d\xf2V\xd2W\xe0\xbc\u007f\xd3\x16u\\9\xb7\x16T\xa7\xd6,\xe9\xf54\x8d6\xa7:ݙ\u007fG\xd2\xe9\x92\x14\xf0\xc7\x1e\xdf\xe7_\x91ЌU=\xe8m\x1d\xa3\x95O\xf1\x88M\xa7\xe0$2\xcaG!\xa3\\\x19\x8aX_\xe4S5\xd3\xdf\xea\xa1R\xef%\xffU\xb7\x9c\v\xcbǕskQ\xee\xcdY\xf2\xb44[\xd3hs\xa6\xd3\xd9oH:\x95\xc8\xc1\x86\xe5%\xc1k'\xdf%Ռ\xc3z\xd0n\x1d\xa3\x95O<,ꄌr\xae\x87\xd1\xca(Wt:F\x0f\x12\xfc\n\xe9ou\xb5NY\xb2N|\\9\xb7\x16\xe5\xdew\xdeϑ\x0e0\xa6\xd1\xe6L\xa7\xe1\xec\xcb\xd2\xd1\xe9\x11\xb6\x86\xbe\xc2MldOڲ'\x85\xdb\xfc\x8cU=\xe8m\x1d\xa3\x95O<\xa2\xd7\t\x19\xe5\xda\x1eF+\xa3\\\xd1iS\xb6O\xb5B\xfa[]W'>\xae\x9c[\v6P~\xc9\xcd2gM\xa3͙N\xfeM\x95L\xa7\x17\xa5e8)\xbc\x18\xf8\xdc\xc9WZ\xa8\x9a\xb1\xaa\a\xbd\xadc\xb4\xf2\x89G4#{\xc8(w4\xa3\\\xbe+\xe2l\xa5\xb41\x83\xcd\xf4\xb7:W\xfaǜ\xd6\xe1\x93\uedc6+\xe9.\x1c\x8a+\xe7\xd6\xe2㞒\u037f\xf3\xdd-\xf7^\xb9m\x1am>|Y8{\xd7\xdf\xe3\x91F\xf6*\x85\xdd\xe7w\v\x92\x80\x97<%/\x9c]\xed~E\xb58\xa1\x1e\f\xb6\x8e\xd1\xca'\x1e\x91?wBF\xf9\x18d\x94\xcb\xf7칗\x1d\xf3\xf1\xcd\xf4\xb7z\xa8t\v=\x16\x9c\xcc\x16\xb2O\xb2K\x94P\\9\xb7\x16G\xd9\xc4\x1b\xac\xf7\xbd\xa6\xd1\xe6W\xe6\n\xc2i\xbf\xaf\xc4+\x9d\xe7\xb5.\xf3,;,\x8b\xf1\xcejO\xde\xd3\xff\xa6^\x9cP\x0f\x06[\xc7h\xe5\x13\x0f\xb3\x93=k \xa3||\x13\xba\xf8\x1d1\t\xb8u\xa2\xc0^\x9d\x90Q\x1e'\x19\xe51b\xa3N\x06['\xc1\xb1Y\xa7\x89D;C@4#Cx@B?AFHDFDKHZx\xb8vxu]{\xbb_}\xbez|y\x84|dX\x80\xbfL\x91K`\x81\xbbb\x80\xc0}\u007f|\u007f\x81~c\x83\xbdN\x95Ue\x85\xbf\u007f\x83\x92W\x95V\x82\x84\x81\x8d\x84fg\x88\xc2m\x87\xbci\x89\xc3j\x8a\xc4[\x9aZ\x87\x89\x86q\x8c\xc1\x8a\x8b\x88\\\x9dc\x96\x8cnt\x8e\xc4v\x90\xc6g\xa0g}\x91\u008f\x91\x8ey\x93ɒ\x94\x91\x80\x95\xc6z\x97Ƃ\x96\xc7s\xa4l\xa1\x96x\x95\x97\x94\x83\x98ɂ\x9aė\x99\x96\u007f\x9d\xcct\xa9v\x86\x9b́\x9eΚ\x9c\x99\x82\xa0Ϩ\x9d\u007f\x9c\x9e\x9b\x88\xa0\xca\u007f\xabz\x8a\xa2̟\xa1\x9e\x9e\xa3\xa5\xa1\xa3\xa0\x8d\xa6Ђ\xb1\x85\xa3\xa5\xa2\xb3\xa7\x83\x91\xa9ԧ\xa9\xa6\x8d\xb5\x8a\x94\xac֙\xacѪ\xac\xa9\xa4\xac\xc0\x9e\xad͍\xb8\x93\x9b\xafԻ\xae\x89\x9d\xb1֯\xb1\xae\x97\xbb\x97\x9f\xb3ء\xb5\xdaµ\x90\xb4\xb6\xb3\xa3\xbf\x9d\xac\xb7Ң\xc0\xa4\xa9\xb9ٷ\xb9\xb6\xac\xbcܺ\xbc\xb9\xa6Ũ\xb1\xbd\u05ef\xbe\u07fd\xbf\xbc̿\x9a\xb1\xc0\xe1\xb8\xc0ձȭ\xc0¿\xb7\xc2ݹ\xc5\xe0\xbd\xc5ڲͷ\xc2\xc6ֻ\xc7\xe2\xd6ǝ\xc6\xc8ż\xc8\xe3\xbf\xca\xe5\xbdм\xc6\xcb\xdb\xca\xcc\xc8\xc1\xcc\xe7\xc2\xcd\xe9\xbf\xcf\xe2\xc7\xce\xe4\xca\xcf\xdf\xce\xd0\xcd\xc8\xd3\xc1\xc8\xd0\xe6\xdfѥ\xca\xd1\xe7\xcb\xd3\xe9\xca\xd8\xcc\xd3\xd5\xd1\xce\xd6\xeb\xd3\xd7\xe0\xd6\xd8\xd4\xd0\xd8\xed\xe7ج\xd5\xdb\xd0\xcb\xdb\xee\xd5\xd9\xe9\xd9\xdb\xd8\xd7\xdb\xeb\xd8\xdc\xec\xd2\xde\xec\xd5\xdf\xda\xd9\xdd\xed\xdc\xdd\xe7\xdd\xdf\xdc\xd7\xe1\xdb\xdb\xdf\xef\xd5\xe1\xef\xf0\xe0\xb3\xdd\xe1\xf1\xe0\xe2\xdf\xde\xe3\xe6\xd9\xe5\xf4\xe0\xe4\xf4\xe3\xe5\xe2\xde\xe6\xef\xe8\xe5\xea\xe5\xe7\xe4\xe6\xe7\xf1\xe0\xe9\xf1\xe3\xe9\xeb\xe7\xe9\xe6\xe3\xec\xf4\xeb\xed\xea\xe6\xee\xf7\xec\xed\xf7\xe8\xf0\xf9\xef\xf0\xfb\xf0\xf3\xef\xf4\xf2\xf6\xef\xf4\xf7\xf4\xf7\xf3\xf2\xf7\xfa\xf5\xfa\xfd\xf8\xfa\xf7\xfd\xfb\xff\xf7\xfd\xff\xf9\xfe\xff\xfe\xff\xfcA\x10\x8d\xd1\x00\x00 \x00IDATx^\xed\x9d\x0ft\x14U\xbe\xe7\awqv+\xfd^\xcc&O\x98\xe51\xd3@vaȆ\x82\x89M\"\x98`^\xc0\x13a} \b\x0e\x88\x99l\x1c=A\x98\xe1\xafg2\xcf3YI\x8eA\xf2@$\x98\xacsL\x00\xb3J\x88\x12\x91\x80\xae\xe6\x80ᨼ#\x90LD\x87\x93\x991\x83о\xc9L\xc4RQD\x12\xfb\xd4\xd9{oUu\xdd[\xa9\xbe71\xe9\xaa\xea\xee\xdf\xe7p\x92ە[\xb7nU}\xba\xeaVu\u007f\xa9\xef\xa9#@\x01\xe2\x9c\xef\x89\x14\xe0!j\x1c\x88u@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\xb8\xa7G_kMeM\x9b\xfe\xa2\xad\xaejG\v\xaf6\xe0\n\xee\xe9QW\xd5z\xaa\xa5\xb2\x05\x17{\x1bʛO\xb5\x94\xb7\v\xe6\x00\x1c\xc75=Z+\xbb\xd0\xcf\xf6\xca\x1e\xf4\xb3\xa1\xb2CQ\xbaʍC\t\xe0\x19\\ӣ\xae\x81\xfc\xaanQ\x94\x8e\xf2V\\\xec\xe1U\a\\\xc15=j\x1a\xb5_u\x8a\xd2\\\xd9+\xa8\f\xb8\x84kz4Uc'\x82U\xbb\xb0\"m5\xe5\xd5MA\xd1,\x80㸦GOU]W\xb0\xa3\xa6|\x87\xa2\xec(\xafn\xedh\xab\xde\x01\xc7\x10\xcf\xe1\x9a\x1e\xca\xf9\xba\xf2\xf2\xf2\xe6\xba\x1a4\f!\xe3Ӟ\xaaf\xd1,\x80Ӹ\xa7\a:\xb3\x9c\xefS\xaa\x9b\x14\xa5\xb1\x86\xbc\xd4\u007f\x01\x1e\xc2==ȩ\xa4\xbd\x1c]ҶT\xf5\xe1rC\x1d\u007f\x06\xc0y\\ӣ\xad\xbc\v\x9dP\xaa\xf1\xf5\xcbyraۣ\xdd\"\x03\xbc\x84kz\xb4\x97\xb7t\xb4Vב˕\x96\xca\x1644\xad\x81\xa1\xa9\xe7pM\x0f\xa5uWU]\xab^n\xaf\xa9\xda\xd5\x02vx\x0f\xf7\xf4\x00b\x00\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x14e\xcd\x1a\xbb\"\xa0\xb8\xa9G8D\xd9[]\xaeQ-\x9a%:\xfc\x9b\u007f\xa3M\x11\xb3Ǐȼ\xfb\xc4\xe0yF\x8f\x12\xb4\x88\xa9gE\xb5\xdc\xc2==\xc2!\xca`yK\a\xa2\xa5\xbcUq\x85\x92)\xef\xdb\x141=\xbf\xf5?qd\xcf\"\xff\x8b\x83g\x1a5\xce\x1e9\xb2\xc7\u007fDT\xcb-\\Ӄ\nQ\xb6ᯌ\x05\xf1\x97\x92\xdd\xe0\xacy\xc48\xcb\x1e<\x14\xe5\x041cѭJTy\r\xf4\x18\x04\x15\xa2\xd4^\xefr\xe9\xdbb\x91\x0f\x1e\x86\x1eO\xfa\xa3\x9b\xd0\x02=\x06C\x85(1\xe4\x9b\xc9npv\xf2F\x9b\xa2\x8e\xa6G\xc9LE\xf9\x85\u07ff\x17U\xf0ߎ\x8b\x93\xf7l\xbcu\xea݃\x06\f{\x17M\xbdu#2\xe9\xc4d\xbf\u007f\xa52\xd3\xef\x9fޫ\xf4\xac\x9c9y\xe6J4z\xe9˜\xfc\xeb\x993_\xdc8}Q\x10\xb7\xf0䚙\xd3W\xea-\x98z\x18-x\x06\xd7\xf4\xa0B\x94\x98]\r\xdc\xda\xd1c\xcd\xe4\xb36E\x9d\x13\xfe\x17\x82g7\xfa\x9fP\x94\xf7\x8fL~\f\xedȒ)h\xfc\xbaw\xb2?\xf3\xb1'\xa7\xae\xb4T.\xf1o|\xe1\xc9\xcc\xdb\xfb\x94\xbe\xd7\x1e\xf3\xbf\xa6\xfcֿ\x17Y\xf1\x82\u007f͋{W\xa2\x97ʋ\xd3\xfd\x1b\xef\xf6g>\x91\xf9$ia\xe6\x13\x8f͜\xaa\rz\xc3z\x84[\xf0\f\xae\xe9A\x85(\x11\xa7p\xde\xc5\r\xceN^cS48\x81/]\xfc%\xa4<\x05\xe9\xa1<6\x85\x14\xa7#\x8fJ2ٺ/\xf8\u007f\xab\xe0]\xbd\x17\xbf(\xb9\xe3\x8f3\x9f\xc0\x85\xe0^|0\xb8\x1d\xab\x94Y\x82\xea\xfc_\xa5\x04/e\xca-h\xcc\xf5\xe7\x99w\x909\r=\x98\x16\xbc\x81kzP!JD\xc3.A\xedh\xf1\v\xf3\x88\xf1\x8bA\a\x0f\xa4Ǔ\xaf\xbd\xb0h\n\x99N\xebQ\x12.\x9a\xac\xbc\xa5\xb7\x0f1\x93\xc8\x14\xbc=S?\xb8\xfcq\xcfݷL\xc7\xe7$%s/\xda\xf5Ae\xe3\xcfp\v\xe44\xb6\xc7\xffg\xfc\xcbЃi\xc1\x1b\xb8\xa7\x87\x19\xa2DT\xb5\xf0\xabF\x8b\xf7\xa7\xac\xb1)\x86!c\x8f?\xfb\xf7\xe02\xad\x87Y4\xb9ݯ\xa1i\xb1W\xdf\xe5\xafe\xceܸ\xf7\xc8\xddD\x8f\x17\x95\xd7&+\xba\x1e\xb8\x05刟\x9c]\f=\xd8\x16<\x81{z\x98!J\xfc?\x03\x9d\xe2W\x8e\x16\x1b\xfdgm\x8aa\xb4\xa1\xe9t\xb2/Ez\x94\xdcr\x82\xf0G\xfc\xe2\xfd\xcc\xc7f\x92\xc2\xedw\xe0\x93\xcbJC\x8f)\n{\xf4 \xff卡\aӂ7pM\x0f*D\x89\x87\x1e\xe7\x05գ\xc3\xfbSJl\x8a&\x9a\x1e\x99\x1bO\xa0q\xc4T\xb4G\xfb\ue22cNjژ\xe11<\xe4\xe8\xbd\xe31e\xcd\xddx\x889\x13\x1f\n\xfan\x1f\xa4G&\xb2&x\xcb\"2\xa7\xa1\a\xdd\x02\x1a\n=\xe1\x81{\xa9\xae\xe9A\x87(\x91+\xee\\\xcd\t\x0e\x1e\xf8\xca\x05\xfd\xbc{e\tڽ\x8b2\x9fx\xe2\x0e\xff\xe4ߞ@\x171%\xaf)'J&\x1fa\xef\x92l\xf4\xffl\xef\xde\x12\xb4\x8b\x83G\xd6d\x9eU\xceN\xdfx\xa4Wy̿r\xcf\x13\xb7\xa3\v\x96\xd7NL\u007f2\xb8w\xf2\x89\xe0\xcf\xf0\x15\xf1\x14\xff\xed{\xf7܊G\xb8\xe4\xae\xe9\x93G\x8e\x9c\xa5[\xc0\xac\xf4\xc2I\xc65=\x98\x10\xe5)wF\xa6\xefO-\xb1)\x9a\xecE\x03\x01\xf4V>qk&\xb2\xe4\xec\xa2)S\xef\xfe\xb5\u07fff\r\x9a:\xf9\xc4T\xf4\xd32Xy\xf1\xee\xcc\xe9\x8b^\xc0G\x01\xbf\u007f#\xda\xd7~t\xec\xe9{\xf2\xd6)\x99+\xf7\xdc:yQ\xa6\u07ffw\xaa\u007f\xea^2\xb6\x98\xb2\xb1d\xfa\xcc\x12\xacW\t=\xe00Z\xc0\xec\xc9ܣ\xb8\x8e{zx\x80_\xfb\xffͦ\xe8\x04\xda\xd0\xd4\xfb$\xb4\x1e\xee}\x92\x0fz\x00\x1c@\x0f \"\xda\xe06\x16\x00=\\\x80\fn=p\xd9*\x06\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x18\x16/\xad\xfaPQ\xceOK\x98\x87\x03\xb8\xa7\a\xf5$ʞ\xa6]\x95\xbb\x9a\xbc\xf7\xb0\xb0Wg\xc8\x1a\x81w\xb4\t\xb5r\xed\xa7\xe8\xd7\xe6\xa4u\xdc\xf9\xe2\a\xf7\xf40\x9fDy\xbe\xba\xa6\xad\xa3mW\xb5;\xdf\x18\xe3\xf0\xf1\xab\xf9\x0f\xbd\x8a8 \xbfB^?#\x1f\xd0\xfeP\x97\xf4\bg\xb68\xc25=\xa8\x10e#y\x0eT\xef\x0e\x97R\x94<\n\u007f\x85\u007f\xfeN\xd3\xe3wY\xbf\xe9\xeb\xeb\xeb\xc5\xdf\x11|\xc0\xe7R\xf0\xc2a\\Ӄ\nQ6h\xa7\xf2\x1a\xb7\x92P\x1c4=>}\xe6c\xf4\xb3\xfd\x1f\xfe\xd3?Κ4q\xe2\ndtϸ;\x05s\xc6\a\xae\xe9A\x85(\xcfW7v\xf5v5V;\x1f\xa3\xfc\xf4\xc0\xaa\xecſ\xc1\xfb^\xf9xӼ\xf9\xbf\xf9ͼ\xec\xe7\x99\n\x9a\x1e\x84^\xdf\u007f\xce\xc8\x18\x93\x9c\x91>\xe6\x81 :|$\xbb\xf3\xedX\x87qM\x0f:D\x19l(//opa{o\x92\u007f\xf3\xca3\xf9\xf7\xa0\xe1構\xf3\x9f\xa9\rd?\xf3\xd03L\x85\xc2M\x1f\u007f\xfc\xcc*R\f\xfe\x87u\xaa\xdavU\x1d\xb8a6\xf2\xb8IJ\x88'߹\xa6\a\x15\xa2\xecm\u0601\x86\xa6;\x1a\x1c\x8f\xe8\xbfD\x86\x9ao\xca\xe8\x88\xf1\xbc\xfc\x0e\x1ez\xbec\xa9Q\x88\xaf[\xf2I1\xf8\x0fcƌQ\xf2ƌ\xb9a\x1d\x1aCwH\xee|{\xdaa\\Ӄ\nQ6\xed\xc0\a\x0e\x17\x86\xa6\x9b\n?\xfd\x1bb\xfe&E\xd96W\xc1CЗ,5\n\x1fz\xf3\xcdM\x9a\x1e\xca\xff\xf9/\xff\x88\xf4\x18;g]{/\xd6c\x87\xb5\xb5x\xc4==\xcc\x10e\xa5\x96gh\xad\x14\xd4\x1fu\x96\xea\xb75\x1eB\a\x8e\x19h\x04\xf2\xca\xe0\xa3\a\x1a{\xbc\xa3\x9fo\xfe\xdf\xff\xf8_H\x8f\xa4\xd6.|\x94k\x96\x1c\x97\xd9\r\xdc\xd3\xc3\fQ\xba\xa6Ǧ\xc27\t\x1f\xe3\x03\xc7C\xbf{g\xf1\xaaO-5\xa8\xa1\xa9\xf2q\xe0\u007fb=\xdaI\xc7\xd7\xf9\xbcw\x17/\n\xb8\xa6\a\x15\xa2l '\x97\xe0\x0e\xc7/l_\x91\xc9uʶZ<\x00)\x90\xe5\xa2\x0f\xf5?\x9cZ\u05ee\x15h=\x94\xf5\xff-\xacG\xdf\xc4YJ\"\xe0\x9a\x1eT\x882\xb8\x83\fMw8\u007f\xe9\xb2mƦ\xe7_ڄ%y3\xf0\xca+\xaf~h\x1c\x94\xd2Qҥ\f\x9c\xb7\xc7nj*\x05\x87\x9bH\x1f̓\x8b\x0f\xe9\xa1<\xecc\xeb*\xbeTt\xe4X\x90\x06z\xf0\x115΅z\x12%\xf3PJGI\xf7\xe9\x0f\xb1\xcb\x1bߋ\xd1\xfe_\x86\bz\x18u\x15\xdf\x02}\xea\xf0\xf5\x18C\xfeq\xfe\xaex\n\xf7\xf4`\x9eDI\x15\x1d%=]/L\xd2G\x1cs\xc8T{=\x8c\xba\xe6T\xbc\xa7\x9f\xbaI\xdb\xdfڅ\xc7X\xaa`\xbb\xfbA\x8f\xa1A=\x89\x92~(\xa5\xb3\x84E\xc8\x1b\xdfB\xe8\nO\xad\xc4\xc7\n\"\xc2\x03>\xb6.\xab\xc7\xcdOQ\xfb\xfb'\xf7Z\v\x16@\x8f\xa1A\x85(\x99\x87R:Kx\x977h\xa3\x8e\xfbID!#CQ\xbaȄ\xe4Պҗ\xceՃ\xde\xdf/\xdfx\xceR\xb8\xf8\xf8Mcn\xfc%\x9a\xf0\xa3\xb17\xfc\xe8ݰ\x1e\x8f\xff\xfd\x98\xef\xff\xf3E\xaa\x80\xfe>\xe6\xa6\u007f\x01=\f\xa8\x10%\xf3PJ\a\xe9m&\xd7(ڈb\xb5\x94\xb7\xab\xe6N\xa9\x1a\x97\x1f\xf6m\xae\xc9H\xc6\a\xb3ii\xeb\xd6M\x93\x92\xaaڨ\xba\xe8zfA\xb3Ҳ \xa9\xb1êǏ\xef\xb5\x16\x1e\x1f\xfb\xf8\xb9\x97\u007f|\xf1\xe2\xdf=u\xeeݟ\xfc\xd8\xd0\xe3ٿ{\xf6\xdc\xcb?\xf8g\xaapӽ\xef\x9e{\xf6\x87\xa0G\x18*DI?\x94\xd2A\xf0\xbd\f\x84\x1e\xa6n\xc8HM\xcd\xd0n\xbd\x04\x97\xa5&g\x90\xff\xfd\xa7=#9e\xd6\xfd\x92\xb4\x84\xaa\xbb\x04\xfdNjKF?\x97X\xf4\xb09x\xe0#\x82\xc1\xbb7\x1az\xdc\xfc\x1cz\xf9\xc6\xf7\xa9\xc2\rohu@\x8f8¢Ǐ~n-\\\x1c\xf3\xae\xf6\xfb\x8d\x1f\x8eE\xe3UC\x8f\xb1\xda\xf0\x95*\xfc\xd3؟\xfc\xf2\r\xd0#\xbe`\xf5x\xce8f\x84\vh\xff\xebz\xdc\xfcOo\\<\x17\xd6c\xcc\x1b\x86=F\xe1\xe2s\xf7\xfe\xe8\x86{A\x8f\xb8\x82\xd5\xe3\a\xbf\xb4\x16\x90\x16\xfa\xc9\xe5\x06$̳a=n6\x8e.\xe1\x02\xe6\xe5\x1b@\x8f\xb8\x82\xd1\xe3\xd9\xef_\xb4\x14\x10Oݨ\rMo\xba\xf7\xdcs\xdf\x0f\xeb\xf1\xd4\xd8_\xbe{\xee\xa9\x1fP\x85\x1f<~\xee\xdc\xcfo\x02=\xe2\n,\x86>x@G\x02\xe3\x98q\xb3y\xf0\xb8x\xf1_\xfe\x9e\\\xd8>\x87\xaeo\u007f\x1e\xd6\xe3\xe2S7\xdf0\xe6槨\xc2\xe37\x8f\x19\xfb×A\x8f\xb8\"<(\x1d5@\x8f8\x02\xf4\xe0!j<\xee\x01=x\x88\x1a\x8f{@\x0f\x1e\xa2\xc6\xe3\x1eЃ\x87\xa8\xf1\xb8g\xcc\xe8#Z\xa4\xb3\x80\x1e\x00\x87\x98\xd0#OJ]\x00))7\x88\t=:\x1a\xab&\xa6z&\x05\x93H8\xafG\xa3q\x1c訩j\xe8\x18T\x8c@\xa3\xe4\xc2'\xfe\x80\xe3zt\x95\xb7h\x85\x8e\xca\xc6\xf6\xc6\xca\x0eK1\x12͉\xf1\xf4%\xaf\xe1\xb4\x1e\x1d;t=\xfa\xc87\x8f\x9b\xaa\xfb\x98bD@\x0fWpX\x8f\xc6\xf2F=j\xddVI\x1e\xc6P\xd9\xc6\x14#\x02z\xb8\x82\xc3z\x04\x83F\x94\xb6A\xfb\xde^]#S\x8cH\xab\xe4\xc67\x95\x13\x1e\x87\xf5P\xc2I\xeb\x1a-\xd5\xd2T\xc3\x14#қ:\xad\xa9#\x91\xfe\xe3\x15o\xe0\x9a\x1e\xfa\xaf\x96j\xa6\x18\x19\x9c\x8c\x9eͫ\x00D\x01\xd7\xf4\xd0c\xf9\x8d5L1\"=i\xe3\x1fi8\xa5\x00\xce\xe2\x9a\x1e\xfa\x80\x03?\x19\x9d*F\xa4Yr\xfcIs\x80\x8bz\xb4\x95\xe3۠=\xe5mL1\"p\xe5\xe2\n\xae\xe9\xd1GB\x93\x8d\xda}\x8fp1\"\xa0\x87+8\xacG\xb0\xa3\xa3\xaa\xb1\x83\xe4\x9c\xe1\xaei\f\xe0\xb0\x1e-\xe5\x04\xf2\xf1ZGCe\x8d\xf1\x99\x8bY\xb4\xa3\xb7\xa3%\xcf\xe7B~\x1fpX\x8f\xef\xc6\x1cI\x1a\xef\xc2\xff\r\x03Ć\x1e\x1d\xadp\xe8p\x87\x98\xd0\x03p\v\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x83\xf3z\u0605(\xa9\xa9\x80\x97p\\\x0f\xbb\x10%5\x15\xf0\x14N\xeba\x17\xa2\xa4\xa6\x02\xde\xc2a=lC\x94\xd4T\xc0[8\xac\x87m\x88\x92\x9a\nx\v\x87\xf5P\xecB\x94\xd4T\xc0[\xb8\xa6\x87%9\tzx\x12\xd7\xf4\xb0$'A\x0fO\xe2\x9a\x1e\x96\xe4$\xe8\xe1I\\\xd3Ò\x9c\x04=<\x89kzX\x92\x93\xa0\x87'qX\x0f\xfb\x10%5\x15\xf0\x14\x0e\xeba\x1f\xa2\xa4\xa7\x02^\xc2a=\x80\xd8\x02\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\xc3\xf7\xee\a\x80\x88\x8c\xe8\xe8\x01\xc4;\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0eC\xd1#\xb8.=%)\xed\xb6\xa6\xc1\u007fyT\xbaS\xff1\x02\x066\x8f\xf7\x8dk\b\xbf\f\x0e\xa0\x1f\xd5\xd2mf\x85]Ҝ\xc1sQ<\"-\xe3\xfe]@\xc4\xe6-\x1d\x13@\xfa-ꪀQٞ\xa3\xc9\x10\xf4\xa8J\x924f]\xb5\xfeiTVg3n\xbb\xc5x\xf5h2^\x8a'\xf4`;&@뷨\xab\x02Fe{\x8e&b=VHҜV囮\a|Rƀ\xe5o\xa3\xb2:\x93\xa4\x15\xdf\f\x18-\x0fH\xd2 =:\x1em\xb4\x9b/\xcc\b\xf5\x88\xd8<\xd31\x01z\xbfE]\x150*\xdbs4\x11\xea\xd1(I;\xb4R\xab$UY\xfe8*\xab3Nj7_\xd8\xe9!b\x84zD\x84\xe9\x98\x00\xbd\xdf#dT\xb6\xe7h\"\xd2c \xcd\xdc\xf6ˤ\U00056fce\xca\xea\xa4I\x1d\xe6\v/\xe9\xc1tL@\x82\xea\xd1,IA\xa3|\xfeQ\xf2nj\xce\x1b\xe7K\x9e\xf8\x80\xa2\xb2\xab\x13\\1ޗ:\xa7U\xabJ\xbf\xe8Y2>)eZ\x15s\x94\xeeZ2.)u\x0e>\xafO#\xc3\x1ac\xff\xae&\xaf:\xb0\x1eʊq\xbe\xf1\x0f\x98't\xbbf\xdaf\xa7\xa6\xccj\xc7zTK\x13\xb5I\x9bɋG>'s\u007fN&Q\x1d\xae\x96\x1e\xed]\x92曄\x06\x9c\xd5\x13}i+\xa8\xf1B\xcfj\xdc\xe5\xb6p\xdbFnj\xbd\xf5\x88\xb4D\xb5\xb6\x1c\x9e\xc7\xe8\xb7ޖ\xb9z\xd69t\xe8\x85\xd9oω\xd2j\xd5}Dz< M\xb0LY&I\xe3&\xa5\xa1\x1f\x9f3\xabӚ,\xf9&\x8d\x97\xa4u\xaa\xe5EW\x8a\x94\x9a>\x01\rl\xa96꒤\x94t\xd4\x06\xda\x02\xeb\xf2|Ҭ\xbc]\xfa\x1fj\xf2$鶼 ڨh\x11i\xa9\x924q@\xdf\u007fv͔KR\xda$_R\x06ډ\x9f'I]d\xda\x04\xa9\rͽb\x9c\x94\x82\xe7\xfe\xc6\xd2\xe1jiY\xaa\x94擤\x86%\x92\x0fM\xcbP\r=\x9a\x92\xb5.\x85\xafό\x8eY\xf4\xa0[6\xe71\xfa\xad\xb5E\xad\x9ee\x0e\x1dza\x11\xb6gl\xe81[Z\xc0Nh\x96\x92\xf1A\xa1-Ez\x94^\x9d`\x8a\xb4\x1a\xad\u007f[\xaa\xd4`y1Gz\x00\xed\xe2S)\xe6\x86WO%I\xebд\x06\x9fT\xadF:\xb9H\xe3ѡ\xaa9I\xaa\xd1\xf7\x9f]3\x92\x84\xb4\xfa|\x169\xf8ܦ\x89y\n\x9f\x00\xd1\xdc\x13\xd0;\xb3ɇ\xff\xcet\x18\xfdeb\x97:\x90'\xf9|u\x03j\x83$\x9dқ\xefM\xc1\xed\x0fl\x96|\xe6\xbb\\\xeb\x98E\x0f\xaaez\x1e\xbdߤ-f\xf5\x989t\xe8\x19#lO\xb5\xae\xdc<\x90\xb9\x87H\x8fiV\x89WK\x0f뿗ѫ\xb3Z\x9aM&\xd7\xe1\xa3\r\xf3b\xbc\xb6\xf7+\xf3\x9a\xc3mܦo\xf1]R\xea@D=\xc8\xc1`\t^\n\xd9\xe66\xcd,\xd0\xfav\x95\f\x8f\x9a\xb4\x81\xd1\xfd\xd8\x124\xf7ym\xee%\x96\x0e\xeb\xedvI\xd2fw\xd8\xeb\xa1\x1d\u007fj\xf0o\xb2\xff\x067\xf3\xb9\xd1L\r\x19ٮ\xc0ǒ\x16)\x9d\x9a[\x1f(R\x1d\xae\xd6\u07b7h)x$\x88\x8e?\xe5z-\x9f>t\xa1\xb1Ճj\x99\x9e\x87҃]=K_\b\xec\xc2춧W\x10鱙\x1e\x9a\xb6\xe2-P\x99\x86\a铦1\xab\xa3H&\r\xcc\vt$_\x90\x8c\nI\xcb\xc2C\xb3\x0e)I/\xcd\xc6wRx\x17\xb6\xa6\x1e\x83\x9b\xe9\x91$\xad\xd0H\xf4h\x97\xd2\x06\x90\xcd\xd5\xd4\xdcڌt\x87\xf5\xbf\f\xd2\x03\x1dN\xa8Æ\x8e\xad\x1ef\xcb\xcc<\x94\x1e\xec\xea\xb1}!\xb0\v\xb3ݞ^A\xa4G\a\xb5*=RR;\xbeӼ\xa4\xee\xd4U\xf4\xdbr\xf48\x1f\x9e\x87y\x81\x19h[7I2W\xba'\xfc\xf6\x9a\x16\xf9\xe81H\x8fA\xcd|n\xdcj\xa8Ӯ\x8b'H\xad\x03\xc9I\x9f\xab\x16=\x98\x0eG\xd2C\x95\x84G\x8fuV=\x98y(=\xd8ճу\x99\xd1~{z\x05\x91\x1ehH\x18\xbe\xe7\xb4\x1a\r\xb5\xd0\xf9T\x1b\xbb\xad`W'M?\x9d\xaam=\x03신6\x02\xaf\x96\x92\x8c\xa1Ào\bc\x0f\xab\x1e\x83\x9bQS\xf5f\xd6i]\xdc,\xadn\xd1\xf6\x01\xbdK\xd8\x0eG\xd4c\x82>\\j\x98Ui4\xafw\xac\\?\xbd.\x19\xa4\a=\x0f\xa5\a\xbbzvzP3Fڞ\x1eA\xa8G\x8d$\xd5i\xa5&\t]{)\xba\xf9W\xc7\xe1\xadf\xae\xce\x12)\x9d\xec\xb6f|\xb1F\xbfP\xf4=\xd1E\xedWch_#\xa5|3D=\xec\x9a\xd1/\x06\x06t\x83\x83\xd2\xf8՚\x97\xf4.a;\x1cQ\x8f\xd5\xfaޛ\xad]\xd2\x10\xb4\x8e\xd5i\xa7Wt}dՃ\x9e\x87҃]=;=\xa8\x19#mO\x8f \xd4C\x9d\x83\x06MmW\a\xba\xee\x97\xf0Gr\xc8v|5\xd97K\xc2;\xce\\\x9d.\x9f\xb4\fm\x9f\xf6T|\xa5ü\x98%\xcdB\xbb\xe2j\x1euC\xebT\x92\xb4\x19\xed\xe4\xc6d|\xe1`\xb9w\x9d$5|3`s\xf4\xb0i\xa6\xc7'=:\x80'\xe9\a\xb8\f)9\x85\x1c\xd6-G\x0f\xaa\xc3\x11\xf5\xe8I\xc6]\x1axDJV\xc2\xedk\x1dC\xe7\n\xf4\x97\x9e\fi\x90\x1e\xcc'I[@wE\xef\xd8@\xf5$_j\xde\xf9\xd6\xc1z\xd0\xf3h\xfd֧S\xabg\xab\a=c\x84\xed\x19;z\xc4\n\xc1A\x9f(\x03#$\x9e\xf4\xd8L\r+\x81Q!n\xf48\xdf\xdb\xe0\xf3\x99\xc3J`T\x88\x1b=\xf0\x00\x1a\x0e\x1e\xa3M\xdc\xe8Q\x99\x9c\x06v\x8c:q\xa3\a\x10\r@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c\xdcУ\xa2BT\x03\xf0\b#\xd5c\x9b,\x1f\xa3^\x9e\xce?\x19\xb1\xaa\xc1_\xe5ݢ*\xa3\xc1\xdb3d\x8d\xfc\x90\xa8*C\x05\x9a%\xfb\xb2\xa8V\x820R=\xaetf\xd5S/O\xe6\x1c\x8fX\u0560,p\x05\xff:\xf3'QE\x13a]\x9b\n\xfd\xefeUt\"v\xcb_\xd9\xcc\x10\x99+\x9d\x9d\a\xe5ߋj%\b#\xd5CU\x03\xb4\x1e\xaa\xf8\x9dzy\xc6N\xf2\xbb\xa8LP\x91BX\u05f6\x82ֳ\xa3\xf25\x9b\xbfq\xe9\x06=tF[\x0f1[\x03_\x92\xdf\xf7\x89v9\x85\xb0\xaem\x05\xadg\x97w\x8a\x95\xb5\x00z\x18\x88\xf4\xb8^V\x98U\xb8\xe1\x02*]Ȓ\xe5\xda\xcbe\v\xb3\xd7~\x8b^]\xdeR\x90\x95\xbf\x1e\x9f%\x02\xbbw.\xcd^\x8bKײe}$\xf2:*\u052b\xf5\xe8\xe7\xeb\xe8\x80r\xb48g\xe9\xce~\xbd\xc1ϲ\xb6\xa3\x9f'\xf5q\xc1*\xce\"\f\xe8\xbatc\x9dk\v\xb3\n\xd6/\f\xb1\x15(\xc2\xe2\xfe\x05\xb5\xbb!T(˹!si\xdf\x16d=]Xxf{n\xe9u4\x82\xca:XQ\x98\xbbA\x1fr\x84\xf5`\xbb\x9e\x80\x88\xf48)W\x9cy}\x83܍\xce\xe5\xaf\x1f[\xb88\xa7pgٌ/й>g\xd5\xfe\xd3\xf5\xf2\x01T# /=v\xbc`\v\xae\xdc\xdd٩\xed\x92\xeb\x9dsk\xbfR\xbf\xaa\xcd\xed\xbc\x8e\xc7z\xdb\xdf:\x98\u007f\x9f\xfe\x1e\xae\xc8\xc2&\xf5\xbf\u05f9\xf8A40\xf8k\xe4E\x84\xa1\xebR\x8d\xfda\xc6\xd6\xe3\xa7\x0f\x15\xc8߲\x15(\x02\xb5\xfd\xfde\xf8L\x16\xfa\xa0^\xfe@=:\xe3\xe8G\xf4\xd2\xce̕w\x96\xca\xf3\xf6\x15\x1cP\xffr,K^\xb8\xaf~a\xf6%2cX\x0f\xb6\xeb\t\x88H\x8f\xfech\a\x87\x96o /\xee\x93\xd1;-\x84&\xf4\x17\xaeE\x9b,\xf4:>\xab\a\xf2\xbfF\xdb1_\xaf\x9f\xad\xbfc+\xf0Ѿl\xab\x8a\xf7\xc7Q\x15oq\xed\x02糬mz\xcd\xf0\xf9\xc0~\x11\f\xe1\xbaTc\a\xf3\xf1!\xe6`n\x88\xa9@\x13\xc0\x87\x94\xf5\xa4\x18\xdaZt\xadp\x1f.QK\x9b_\xa6\xbe%\x9fT\xb7\xe2\xeb\xec\xc0B4\xf9Za\x11\xa9m\xe8\xc1v=\x11\x11\xe9\xa1^;\xb8\xf6\xae\xb9\xf2rR\xbe/\xa0\xbf\xabߖ?\nW\b\xe0\xad[\x1f\xd0_\x19z\x9c\xc9\xeeW\xfb\xb3;Q\xa9\xec\xaeз\x88B\xedfǶ\xac\xcf\xf4\x9a\xe6\x1e\xb5]\x04C\xb8.\xd5\xd8\x17\x85\v\xb7\x1f\xfa(\x14b+\xd0\x04*\xba\xbbu\xeb\xd4\xfe\x9f\x16\xacת\x9aK\x9b\u007f\f\xed\xfa~u7\x9e7@.\xb6\x0fj\xc3XC\x0f\xb6뉈H\x8f\xee\xfc\xc2\xdd\xc7;K\xf5}W\xa4O= \x9b\xe7cr:\x19\xa4Ƿ\x05\xc7\xd5\xe3\x05x\x87,\xd7G\x06d?]\tl5\xe6\v\xefQ\xfbE0\x84\xebҍ];T\xb6T.\xd8\xcf9z\xa0\xbe\xbc}Z\u007fq\\~\x8f\xfc\xa6\x966\xff\xb4ڝ\xa5\xeaz\x90~w\xca\xe4\x02\xd9Ѓ\xe9zB\"\xd2ci\x11\x16a\x8b\xbe\xef\xb6\xe8SO\xcb\xe6}\x06{=\xd4\xed\x1b\xd4-x\x10\x8aނ\u007f\"\x90\xf7\xe5N\xd98xh{\xf4\xf0\x17\x91\x16\xc1\x10\xaeK5ֽ\x1b\x89q\xedX\xf6A\xa6\x02\x8d>4\xbd\x80\x97|e~\xed¯\xf1+jiX\x8f\x80\xa1\a\xb9\xda>$\x93Ӛy\xf4\xa0\xba\x9e\x90\x88\xf4(Ļ+\xf4S}\xdf\x19\xef\xd1\xeb\xf3K\xf1\x9bv;ަ\x11\xf4\xf8 \xf0e\xe0\x03\\8\xad\x9d\xbak\xf1\x99\xffK\xf3ࡖ\x96\xa2\x9d\x86\xfff\xbf\b\x86p]\xaa\xb1z\x99\x1c\x18J+\x98\n\x88\xcf\xf6\xe9\n\xeaz\xccG\xe7\x8dPQ\xadZA\xfaL-\x8dѣ\x00\x0f\xa9\xee*%s\x18z\xd0]OLDz\xd4\xcbe\a\xf7݇\x8e\xe1\xdd\xdf~@\xae\x0f\xb4M\u007f&pϡ\xb7\xb7ˇ\xd5/;\xb3*\xbaC\x1fUdu~\xa9\x86~\x8f\xae\\*:;\xc9;0T\xb8\xb6P;\xd9\xef\x9eQv\xfcx\x05\x19\xe5\xed\x9caޭ\xae\x0f\x1c8^\x9a\xf3E\xc4E0\xbd0\xeaR\x8d\xd5\xcb9\xb5'Q\xf1\f[AU7h\xc3Q\xe3\xaei\xe7ܝ\xfd\xefm˿\xa2~6w\xfb{!ji\u007f\xc9=\xd0\u007f,\xebB\u007fY\xe9\x15<\x8c]u\xec\xf0\xe2\xdcOИ\x06\xdf5=\xd0\xd9\xc9.-A\x11\xe9\x11:\xb08\x90_vxqV\xe9\x05\xed<\xac]\t\xa8\x9f\x94\x15\xe6\x14\x1d'\x9f\xb9\xc8Y\xff\x9e\x83~nS\xff\xa0\x9f\xaa\x0f\x91\x1a\a\x02\a\xf46N\x97\xce\xcb-~[\xc57F\xa8cCh{n\xf6\x83ݜEP\x84\xebR\x8d\x1d}\xb0\xbe0k~\xe9\x19k\x05\xf5p>\xe9\xc0۲\xc1\x81\xd3\xe8\xc7Nu\xbb,\xcf8c.\xad\xb8@\x96\x8f\xe5\xc89\xc7\xc8\xd8\"\xb0\xb3bna\x19\xbea\xb7U\x9f\xab\x8cYZ\x82\"\xd2cTyZ\xb6ޚ\xf0\fý\xf7\x9b 8\xaa\xc7\xd6a\\!\xf6\u007f\xa6\xe1\xd0-K\xd0\xc3\x16G\xf5\x18\x0e\x0f\xea\xc7\xf8\aE\x15G\a\xd0\xc3\x16\xcf\xea\xf1\xc9I\x8dOD\x15G\x83+d\x80-\xaa\x95\x80xV\x0fG!\x03\xec\xc1\x17L\x00\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01ppC\x0f\xc8\xd8\xc6\f#\xd5ct2\xb6C\x99m\xb8\x8cj\xc6\x16M\xc4\xdf^9 \xcbV\xb5\xa3\xd1u\xef0R=\xbe{ƖF4\x9b\xeb\x19\xdb/r\xf6\xe3/\x9c^۟c\xfd\"\xbd\xd9ua'c\x90\x91\xea\xf1\xdd3\xb6\f\x82\xd9\xdc\xcf\xd8.?L~\x1d^>\xa8r\xb8\xeb\xc2N\xc6 \xa3\xad\x87\x18#c;\x1c\xdc\xcf\xd8n\xa9%\xbfjm\xbfH\xaf!\xecd\f\"\xd2#J\x19[u\xa9>0(\xa6g\xb3D]u<\x91\xb1ݭ\xed\xfb\xb2\xdd\xccv0\xbbn\xdfI\xfb\xd0p\f!\xd2#J\x19[5@\xc6\x05E\xf2~z6K\xd4U\xc7\x13\x19\xdb\xc3Ejw\xe1\xef\xd5\xfb\x0e\xb1\xdb!\xdcu\xfbNڇ\x86c\b\x91\x1e\xd1\xca\xd8֣q\\\xa8B>h\x99\x8d\x89\xba\x9a\xb8\x9f\xb1\xed,Pwg\xedV\vp,\x94\r\x02\x87\x93=v\x9d\x8c\x14\x1a\x8e\x15DzD/c\xab\x86\xcaf\x84\x03$a=訫\x89\xfb\x19\xdb/\xe4\xfe\a\xb7\x16_\xd7B~L\x10x\xb0\x1e\xcc\x1aۇ\x86c\x05\x91\x1e\xd1\xcb\xd8\xf6\xaf\xcf2\xaff\xc3z\x90ߝ\xb2\xe5\x1a\xd1\xfd\x8cm(p)\xe7O9\x97\xb2\xb4\xa5\x15QK\x19\xac\a\xb3\xc6LݘC\xa4G\xd42\xb6\xd7\x1f\fP\xf1\xa2\xb0\x1et\xd4\xd5\xc4\x03\x19\xdb\xc5\xfb\v\xd5\xc2\x03\x8b\xc9t&\b\xcc\xeaa\xe9d\xa4\xd0p\xac \xd2#Z\x19\xdbkE\xe4\xccs\xb2\x94\x9d\x8d\x89\xba\x9ax c\xbb\xbex\x8b\xba\xa5x-\x99\xce\x1c\xab\xc2kl\xd7\xc9X\xbf\xdc\x15\xe9\x11\xa5\x8c\xed\xb5\xe5\xf2>|\xe9\xb2\x15\xed\x1ez63\xea\xca\xf6\xc2\xfd\x8c\xed\xce\x19\xfb\xd5\xfd3\xd0\xf1\x90\xde\x0e\xcc\x1a\xdbt2bh8V\x10\xe9\x11\xa5\x8c\xedGYz݅*3\x9b\x19ue\xf0@\xc6\xf6\xad\xec\v\xea%|\x03\x9d\xde\x0e\xcc\x1a\xdbt2bh8V\x10\xe91\xaa\x883\xb6ý\x05;j\xb8\xb6`o\xe3\xa8\x1e⌭\xb9\x97 c\xeb\x05\x1c\xd5C\x8c\xb9\x97 c\xeb\x05<\xa5\a\x1du\x85\x8c\xad\x17\xf0\x94\x1e\xaeE]][\xb0\xd7\xf1\x94\x1e\x80\xd7\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01ppC\x0f\xc8\xd8\xc6\f#\xd5#A2\xb6\x87qC\x05k\xcd/`\xdb\xf2Y\x96\xbc\x94_#\xd6\x18\xa9\x1e\t\x92\xb1\xbd~T\xde\xd7y\xb8x\xc6\x19\xdbY\fB\xdd\x15\x015\xae\x18\xa9\x1e֏\xc2\xc5\xef\xd4\xd8\xcc\xd8^\xc2\xdfl\r\x15/\xb6\xabNQ\x0fzX\x18\xee7%b3cK\xf4P\x0fʂo'%\x9a\x1e\x90\xb1Ֆ\xa6\xe9QV\xc8N5\xb7\x0e:)\x95\x15\xe6n\xd1N.\x90\xb1M\xb4\x8c\xed%\xf9\xad\xfe\xbf\xee\x96\xf7\xb1S\xcd\xc6\xd4\xcbs\x97\x1e>\xbeV\x0e0\x15 c\x9b \x19\xdbK\xe4\xf8T\x16b\xa7R\x8d\x15/\xee\xc7ŀjYc\xc8ت\t\x90\xb1\xbd$\xef\xef>Y\x9c\xfd\x19;\xd5l\xec\x9a\x16f\xa8\rX*@\xc6\x16\xefٸ\xcfؒ\xb1\x87\xe6\x005\xd5l\xac[&\xd9}\xb2\x1d c\x9bp\x19[mh:\xb7\x96\x9dj6\xf6\xb5v\x9e\xdc\x1aP-k\f\x19[5\x012\xb6\x9a\x1e\xf9;/죧R\x8d\x15\x15\"\x1b>\t\x04\xd8نpM\xeeiDz@\xc6V[\xda\x05\x19\x1f\xebJ\xd7W,g\xfb`4\xa6^\xca.\xac\xaf͕\xb3\x8e\xfe\x052\xb6\t\x97\xb1E\x95\xf05\xf8\x85\xc5\x05'\xe9>\x98[\a]\xd9n\xc8]\xb8\xfbh\x96\xbc\x8d\xaa\x00\x19\xdb\xe1\x00\x19\xdbX\xc3Q= c\x1bk8\xaa>o5\x06\x00\x00\t\x1cIDAT\x87\x18\xc8\xd8z\vO\xe9\x01\x19[\xaf\xe1)=\\\x8b\xba\xba\xb6`\xaf\xe3)=\x00\xaf\x01z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c\x04zX\"\xb4\x14_W\x14d\xeb_\xee\xf5|B6Q\x9fB;r\x04zX\"\xb4\x14\xa5\xf9\x87\xb6fk_(\xf7|B6Q\x9fB;r\x84'\x97\b\x9ft_\x93\x0f\x9a\xe9\r\xc1\x1b\xdc\xfd\x84l\x82>\x85v\xe4|W=.\xcbC?*\v\xbf\x8d\x1b\xf5\x84l\x82>\x85v\xe4\x88\xf5ؾU\v\x9f\xa2a\xc8Q\xfd\u007f\xb0\b\xcd\xd3\xc6\x05\xf8\x8b\xeafB\x16M?\xb4*\xfb\xa7\a\xd9\xfd鉄l\x82>\x85v\xe4\x88\xf5\x90W\xbd~ly\xf6%m\x18\xa2\xff\x0f\x16\x1fu\x1e\x93\xeb;;\xc9W\x86\xc3\tY\x9c\xf2\xa8}\xab6\xf0\xbf\x99\xf9=\x91\x90MЧЎ\x1c\xb1\x1eK\xd1\xfb\xa8\u007fq\x91\xca&Z\x98\x93\x8b\x9eR9M\xb2 \xa7e*\xdeDp?!\x9b\xa0O\xa1\x1d9b=\x9e\xc6?\x0f\xe1\x11\xa2H\x8f\nm\xe4w\x8f\xf5\xea\xd1\xfd\x84l\x82>\x85v\xe4\x88\xf5 ۏ\x84OEz\x14k\xef\xf5\xf5E*\x8b\xfb\t\xd9\x04}\n\xed\xc8\x11\xebA§\x87q\xf8\x94\xec\x84Z\xce\xd1\xe3.\xbc\xf9C\v\xc3)k\x1d\xf7\x13\xb2\t\xfa\x14ڑ#\xd6\x03G!C\xf7\xe0\xf0i6\t\xabF\xd6\xe3-r\xbe>&\xbfei\xc2\xfd\x84l\x82>\x85v\xe4\x88\xf5\x90\xd7~p\xba\x98\xa4^\x8b\xf3\xf7\xef+\")R\xedʅ|\xf5\x9fNȖɻO\xee\x96\amQ\xf7\x13\xb2\t\xfa\x14ڑ#\xd4\xe3\x9e\xfa\xb2\x1c=\xf5z\xb94;g\xedӲ\xbc-\x94K\xce\xceY\xf8:\x90NȆ\x0e.\xcf^n\xb9\xef\xa1z !\x9b\xa8O\xa1\x1d9B=b\x02ȸE\x89(\xe9\x01\t\xd9\xf8 Jz@B6>\x88\x92\x1e\x90\x90\x8d\x0f\xa2\xa4\x87\xa3@B6jă\x1e@\xd4\x00=\x00\x0e\xa0\a\xc0\x01\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\x03\xe8\x01p\x00=\x00\x0e\x02=\xe2#c\xab\xaa\x17\xd6\x17\xcc}\xf0\xcc\xf2\xf7l\xe6\x18\t\xecҢ\xb1\x1d\\F\xa0G|dl\xd5?e\xad?~t\vy\xf0\xe1\xa8\xc2.M\xb4\x1db\x10\xe1\xc9%.2\xb6k\xf1\x17UC\x15\xa3\xae\x87\xca.mx\a\xbaX\xe0\xbb\xea\x11[\x19ۅ$c{A\x8e»\xdbfiq\x84X\x8fx\xc8ؖ\xcd\xc7\xf9\xca\xd0[\xe4p\x17~\x04\xaf\xf9\x14Z\xd4\xc2!\xfdi\xbcTqHq[ci\xcc\xd3xmZ\xa0\xd68\x86\x10\xeb\x11\x0f\x19\xdb\xcf\n\xe5\xb5\xf5\x1fh;\xc6|\x04\xaf\xd9\x18n!\xbf~\xff\xdc-LqHq\xdb\xf0Ҙ\xa7\xf1\x0en\x81Z\xe3\x18B\xacGy\xa2\xaeZ\xbb\x98y\x04/\xfd\x8c^[=\x86\x12\xb7\xe5\xeb\x11i\x8dc\x05\xb1\x1e\xf1\x90\xb1-\xc0\x0f\x99UCx\x0fS\x8fय़\xd1k\xab\xc7P\xe2\xb6|=\"\xadq\xac \xd6#\x1e2\xb6\x05\xf2\xfc\xfa\xd3\xc7K\xb3\xf1Z\x84\x1f\xc1K5F=\x8d\x97~0\xaf0nK-\xcd\xdc\x0e\xf6-\xb0k\x1c+\b\xf5\x88\x8b\x8cm\xd1\xe1ڥ9\xf9\x1b\xb4ԍ\xf1\b^\xea)\xb4\xd4\xd3x\xe9\a\xf3\n\xe3\xb6\xd4\xd2\xcc\xed`\xdf\x02\xbbƱ\x82P\x8f\x98\x00RrQ\"Jz\xc4s\xc6\xd6\xe1us\x95(\xe9\x11\xcf\x19[\x87\xd7\xcdU\xa2\xa4Gu4\x87\xeap\xc66\x91\x18\xba\x1ej}N\xa9\xf5s\x11o\x00\x19ۨ1\f=\x80\xc4\x03\xf4\x008\x80\x1e\x00\a\xd0\x03\xe0\x00z\x00\x1c@\x0f\x80\xc3\xff\a'\xa7c\x12\x8d\x96\rF\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/callers1.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x03\xa2\x00\x00\x01.\b\x03\x00\x00\x00\xa3\xcb_?\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\x04\a\x03\x06\f\x0f\n\r\t\x10\x12\x0f\x17\x17\x13\x1a\x1a\x14 \x1f\x19!# #$\"%$\x1d$%#&'%'(&+)\x1e()'++$*+)+-*/-!,-+-.,02/52'241574796<9-9;8:;C;=:=?#CxAB@CDBDFCKHe\xafac`*{!Ag\xb2ceb)|*dfcfgeghfLi\xafDl\xb0hjgqjR\\k\x88/\x82/jkiHo\xb3/\x858Jq\xb5mol;\x86:pqoUt\xb4>\x89=|t]tvs@\x8b?swzB\x8c@vxu@\x8dG\\{\xbbxzw]~\xb7K\x8fJ{}z\x85}d}\u007f|O\x93N\u007f\x81~c\x83\xbdN\x95Uu\x84\x96\x81\x83\x80W\x95V\x8e\x85gm\x87\xbcZ\x98Y\x87\x89\x86]\x9c\\\x89\x8b\x88\x95\x8bm\\\x9dcs\x8d\xc3d\x9dd\x8c\x8e\x8bf\x9fg{\x90\xc0\x8e\x90\x8d\x90\x92\x8f\u007f\x93\xc4j\xa3jz\x97Ɠ\x95\x92s\xa4l\xa1\x96xq\xa5s\x81\x9a×\x99\x96\x84\x9cƙ\x9b\x98u\xaaw\x9b\x9d\x99~\xaay\x9c\x9e\x9b\xa8\x9e\u007f\x88\xa0˞\xa0\x9d\x80\xad|\xa0\xa2\x9f\xa1\xa3\xa0\xa2\xa4\xa1\x92\xa5ʮ\xa4\x85\x82\xb1\x86\xa4\xa6\xa3\xa5\xa7\xa4\xb4\xa7\x82\xa6\xa8\xa5\x8b\xb3\x88\x95\xa9Ψ\xaa\xa7\x8d\xb5\x8a\x98\xabѩ\xab\xa8\x8e\xb6\x8c\x8d\xb8\x93\xab\xad\xaa\xb9\xad\x88\x9f\xaeέ\xaf\xac\x96\xba\x96\xaf\xb1\xae\xa3\xb2Ҙ\xbc\x98\xb1\xb3\xaf\xb2\xb4\xb1\x9b\xbe\x9bµ\x90\xb4\xb6\xb3\xb5\xb7\xb4\xa3\xbf\x9d\xac\xb7Ң\xc0\xa4\xb7\xb9\xb6\xb8\xba\xb7\xb9\xbb\xb8\xa5ħ\xb1\xbc\u05fb\xbd\xba\xbc\xbe\xbb\xbd\xbf\xbc\xafƫ\xa9ȫ\xb8\xc0տ\xc1\xbe\xce\xc1\x9b\xc1ÿ\xb2ʮ\xc2\xc4\xc1\xbc\xc4ٲ̷\xc4\xc6ú\u0379\xd7Ȝ\xc1\xc8\u07bb\xca\xde\xc7\xc9Ƽϻ\xc9\xcb\xc8\xc0\xcc\xda\xc7\xcb\xdb\xca\xccɿҾ\xcc\xce\xcb\xc4\xcf\xdd\xca\xce\xde\xce\xd0\xcc\xc8\xd3\xc1\xe0Ф\xcf\xd2\xce\xc8\xd6\xc9\xd1\xd3\xd0\xd1\xd2\xdc\xd2\xd4\xd1\xdeէ\xca\xd8\xcc\xd3\xd5\xd2\xcd\xd6\xde\xcc\xda\xce\xd5\xd7\xd4\xe7\u05eb\xd6\xd8\xd5\xd1\xd9\xe1\xd5\xdb\xd1\xd8\xda\xd6\xd8\xd9\xe3\xd3\xdc\xe4\xda\xdc\xd9\xe6ݯ\xd5\xdf\xda\xdc\xdf\xdb\xd7\xe1\xdc\xde\xe0\xdd\xf0\xe0\xb3\xdc\xe1\xe4\xdf\xe1\xde\xe1\xe3\xe0\xe3\xe5\xe1\xe1\xe6\xe8\xe4\xe6\xe3\xe8\xe5\xea\xe5\xe7\xe4\xe6\xe8\xe5\xe4\xe9\xec\xe7\xe9\xe6\xef\xf2\xee\xf7\xf9\xf6\xfe\xff\xfc\xbd\bi5\x00\x00 \x00IDATx^\xed\x9d\x0fp\x13\u05fd\xef\xe1%\xb7\xf7\xf8Y\xba\xbdvjW&\xbevs=n\xb1\xc7\xf6\x98\xa8@\x84\xc3s\x80\x90\xe0\x10\xee\x03'J\xe19\xaf\xb9\x81\xa4\x80\xfb\x9cb\x87ۄ\xbf\xc1m\xd0\x00Uq\xc1\xc4\u007f\b\x80\xb7D\x87\xdc\x01\x1f\x95\xe8\xf0\x1e\xf2_\x1b\xd8C:\xb8]\xae\xae}\x86\x12m\x8c\xb4\x9c\x8d\xeaFt\xd2%z\xa5$\xb1~\xd8\x04$\x9a\xe8!\xccI\"g\xa1\x92(\x90\x00|%\x1a\xd87\x82%\x89\x9e>F\x13\x8eu\x8a/B\x00\xb7\x18I\xf4\xc3\xd2g\x19\xa1\x8cR\xa2\xe7\x1e]P:\xf7\x9f\x17\xd0\xf4\x13\x8f\x94\u07fbU\xdc\xf4viI\xc9\xf3W\x9e\xba\xbb\xfc\xfb\xea\xcb\xf7է\xe6\xcf\xd9 wSCy\x85\xb9%\x14\xd2P\u007f^^RRz\x82l\xfdqI\xe9K[\xef-\u007f\xf4cU^u\t\x11Xu \xc8\x12U\x1eB\x01\xf3hd\x84\xbd\x17北m\x9d\x13\xd2;\x9aDpn\xe9O\x16\xcc\u007f\xf3\xd99k\x02\xe2\xdf\u007f\xc3\xfc\xd2\x05O\xbc-\x1d\xe2p\xe3\x82;\x9f\xb8\xa2\n\xf5\xce\xf8\xafO\xcd]\xb0u\xeb\xdc9'\x14\x05+\xce\xe2\xc7d\x1fiL\xae\xfeC]\xd90W\xac\xdaU\xfc\x8a\x94\xb5d\xa5\xea\x10\"GW\x96\xaf<\x1a}4@\x05_\x89zNbY\xa2m\xaf҄\xee6i\x83\xa1D\x1bK?f\x842\n\x89^,}\xea\xe5\xd7^\x9a[\x12\xa4\x19\x9f={x\xee\xca \x16N\x9cXp\xef\x9c\x05[\x9f*\xfd\x10\v\x1fJ\x88{\\\x99s\xefK\xaf|Z\xba;\xda\xde)m2\x90\xe8\xd5\xf2FF\x18F\xfar\t%G\xc5\xd7\xcf_\xdap\u007f\xc9\xdc_`\xd2\xceH\xd06c\xe5J\xcd^\x17K\xc8\xf7^\xfaZ\xa8\xf2\xb2%\x1a\xfe\x12F\xf2*KP\xa2S\x878\xa6\x8b\xb4G\x13\a\x93/\xe3\x97iK\xa9sBzG\v1\xff5\xfcV)\xa6\x12}k\xee\x82\xe7^>\xb7fe\xe4P\xe7J.\xaaB̪\xc3\xe1ҿ\x92\xc6.\xceV4\xb2[\x89bT̒\xe8#RE\x9fxH]\x02\xa0\x82\xa7D\x83~\u0090\xdb\xef\x0f\xe2a\x97ط\xc2\x01\x97\xfcȂ\x81D\x9f-\xbd\xc2\b\xc3H_.*\x98\x8b\xa4A\xf8\xfcD\xf9Q\xb1\xd7t\xf7E\xca_I\x16Ƅ\xe2_\xa9\xa41\x9d\xecQ\xe55\x90h$\xaf\xb2\x04\x05zu\x98\x98D\xf1\xb3O\xe0'\xe8\x04\x19\xfb\x84t\x8f\x16\x82H\xb4\\\x92\xe8\xfd\x0f\xd1\xc6V\x92(-\xf3%\xb1}U\x86\x98U\x87\x0fK\xbf\xff\xe1\xdb\xf7>\xa2\xb9U\x12%\xd1\xe7\xa3$\xfa\x9a\xa6\x15}\xe9CEv\xf1\x0fw7}\xbb\xbb\x11\xab\xcf\x18P\xc2S\xa2\x12>\xf9\xbeh\x97\xf8\xday@\xfeo\x8f-Q\x83F\x14\a\xee$\x89\x8dw\x8a_\xb1\xbdtx\x83\xd7W\x94k\xe0\xee5\xea\x10\xb3\xeap\xb1dnIɚ\xa8;]X%Q\xf1:\x11|(J\xa2\xc2\xfc5\xe4\x8a\xf0,\xbd\x00\xac\x11K\xbf\x1a\x1a%ˇ8+MSKcQ\x90\xa8\x0e\xbc%\x1a\xf4\r\xb9}~1\x18\xdb\xd3y\xa9Kz\xbaH\xf0\xf9ܝ\xbeq\xfd\x9d\xb6FZέ\x8cF\x94\xfc/?}\xf6i\xfa\xff\xbd\xb7d\xce\xf3g_n,yS\x8c\x9f+\xfd\xe1\xcb\xff\xda(&\aߢ\x13\x8a\xd1c\xd8\xf7\xca\x17\xec}\xfe\xce\xd2\xd2_\xbd\xa7\xc8+OT\xbeE\xae\x1d\xc2\xefΝ+o\xa4\x82D\x81\xa9 ~\x89^,\x95z\xb8\xef\x95*fh\x01^\x80D\xa7'\xd2\xfcLt\xc8&\xd8X\xdex\xe2\xcd\x13\x8d\xac\xc9t`\xca\x01\x89NO\xe8\xfċѡ\x1e\xaf<:\xbft\xfe\xf7\xa1\x9b\x9b\x14@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2)\x87\xe67a@Z\x03\x12M-|\xce<\xb4\xc4(\x13\x90N\x80DٴW\xfa\x8d\xb2ă\xbf\xb2\xdd(KB\x04\x8b\x8b]\xa7njr\x01\xe9\x04w\x892\f#\x02\xde\xd6}\xed\x031\x97L\xfer\xd7\xf2E\x9bn\xc4\xca1A\x965K\xef\x9dUy\x96\x02\xe7h(y\vj\xd2\xdb#1\xb6dl1ʒ\b\x03\xa8\xc3(\v\x90f\xf0\x96(\xc30\"\xe0n\x1f\x1a\xeds\xb7\xc5\xd2h\xfd\x83\xc7w.\xba\x16#\x83H0H\x16\xd7\x12\f\x87j\x9d\xfd\x91\xf8\r\xb4\x9e\xbe\xf7\xa2J\xf7IWQ\x9el2Ӝ\xe1f\xec8!<\x99\xcdFY\x12\xe0\r\xe45\xca\x02\xa4\x19\xbc%\xca0\x8c\xe8l%\xaa\xf2\xef\xeb\xd3\xdf\xeb\x9a\xe38\xbea\xa0\xd0w*\x8a\x8b\x17\xce..^\xab\xfb\xd3p\x99\x8a\x9ap\xe8͗%\xfa\x02:)\xbe\xfa\x90\x8b~\xbadY\xcf\xdaqb4X'\xb1cڋz\x8c\xb2\x00i\x06g\x89\xb2\f#\xdaZ\xe9\xa6N\x8f\xfen\x1f9^\xd7\xdf(!X\x90\xdd>3\xdb^1\xa3\xc1\xc0e\xa4lY(Z\x86\x1eȖ\xc5H\x97e\xe9C\xdd\xf4\x83s\x96\x91\xcc\x13 0\xcbi\x94%~@\xa2\xd3\x0f\xbe\x12e\x1aF\xf8\xa4V\xa6\xfb\x05\x9d\x9d\xae/wPvc\xbc\xcb\xe18\x83?\xadv\xac&a\xf5\xa9ݫ\x17m\xfa\x8c\xe6\xf9\xf4\x99\xe5\xffm\xf3W_\r\xff\xe7W\xffu\xcb=\xd2D\xcf@&B\r#\xab\n\xb2\xaa\x88d\x9b˲\xcbH\x8fӃ$\xcaH\x96q\x1f\xce\r\xb7\x97A\u007fGA\x19U\xb7\x90\xf3$\xa3\x84\x10\x8a\xd4:\x94тG-\xa8\x18\xe3:dq\xad-ʮ\x92Υ\xa52\xbb(ܚ7dE]3\x12.!B\x17Ht\xda\xc1W\xa2\xba\x86\x11\xa4\xe7\xab;\xcaz\u007f\xf0\x8c\xe3\xd0\xe0\xe0_0\xfel\xb0\xfa\x10\xbe\xf1\x87]\xd5\x18_>S\xedx\xf0\xd0\xff[\xfa\f\xc91\xb8xݡ\u007f\x981cF\xb0fƌ[\x9a\xa4o\xb6\xd0z\xa0\xa0('\u007f\xed\n$~\xe9\x9d\xd6\x06O\x83u\x95x\x91\xe8\xf6\x16ٽ^o\xc8\xcf4,\xd1\v\xa2n\xbfq\x89\x86\xfd\xa8K[B\x18E\xaa\xcfki¸\xc7i\x15{\x05\a2\x91\xadi{\xce}$\x8b3\xa3\xce\xd3l+\x93G\xc5\xddѲJ\xb8\x84\xd0~\xe3]\x15\xb9\x93ؾ\x03)\x01W\x89\xea\x1bF\x88_dw\x8c\xbb\x1c\x91\x8e\xae(Q\x8c\x0fU\xd3p\xa9\u0602n{P\x8c\xae\xd7n\xba\x1e\xf4\xfd\xef\u007f\x10%\xfa7K\xb6\xbc\x13n\xb4\xcaм\x005U\xe8\xa0\x13\xa1\x1d\x886ݑ\x8e.VH4\xd8۵=?\x8fjԃ.iJP\x11I\xb5\x92\x89\xdf&+I\xb4\xe6\x8aB^e\xa3\xfb\x93ɦ^tP\xca=\x86\xb4\xfd\x83\xc4J\x90Y\"^Eb\x8c\x06\x80\xf4\x84\xa7Dc\x18F\xe0\x1eW\xf8\x86\a\x03\xb6Dw\x86\xc2\xf3\x8e\xf7E\x8d\x05\\\xa2D3\xfb\xfd\x91neYh\xa6\xc6YLߊ騐-QB \xbf\x8a\xbc\xb5\xa1p]ʘs=\x91T\xa5\xc0\x9c\xa1\xf0\x81B\x81\x90/\x8fAǢ\x94\x96x\t2c\x1d\xaebhE\xa7\x1d<%\xaao\x18!t\x86\x96\xa5gÖh8<\xee\xb8N\x12Z\x89DG\x14\x03\xbf\xb2\n9\xa8\xbc\x87\xbe-\xac\xa4\xa9\f\x89ʺn\xca$\xef=\x91\x9ei\xb8\x04\x15\x91T\xa5\xc0\xc2a\x99<ޕ\x9f\x02\xea\x95'\xa1&^B\x04/\xea\x8dN\x02\xd2\x1c\x9e\x12\xd55\x8c\bxZ|1\xf7\x8c\x92\xe8\xfe(\x89\x9ew\xbcK\x12\xb4\x12\r\x89\xd1YH\xdf\n#\xad\xe8>\xb9\x15\x93$*\xe4J9\x9b\xe8\xccN\xc0\x1a~nA%\xe70\x91T\x9a\xb3!J`+\n\xfb)rϽɢm\xf9\x12+!\x02\xcc\xe8N?xJTBk\x18\xe1?xD\xfc\x12\xc7rd\x8fHt\xd1~\x8co\xd4GI\xf4ڃ\xf5\xa4\x19\xfd\x9f\xba\x12\xf5о\xe6Ai$g\xb7c<\x8e\xa4;=\xa1V4\xaf\x8a\xbc\x06\xf2\xa5f\xab\xe6\x8e\xd0<\x8d\x91D\xb3\x9f\x14+^\x11%\xb0\x0e\xa9\xf0\x8d\x9bi\x96`\xf1\u009b,A\x01Ht\xfa\xc1[\xa2\fÈ\xb1}\aG}>_w\xab\xde>Ҍ\xee\x1f\xe8\xf3\u007f\xf5\x0f\xfe\xf2\xd0:G\xf5\xa9\xcb\u007f\x19\xac\xde\xf5\x87\x1b\xef\xef\xaa&3\xbd\x83\x8bV\x1f?\xbf\xfb\x1fU\x12\x15z\xe8ܭ4\xac\\\x91\xb1\u07b3>c\x05\x8d\x9b\xac\xdb\xdb\xe6e\x93#\x8f{\xbdߨ\xf1\xf6\x88zlAU\xae\x93\xcd\xf9\xf2\xd3E\xefdlה\x10F\x95Zi۲\xb9\x12e\xba\x87}^\x8b\xb3\a\xf7;-^\xb1\x88\xf5\xe8\x81\xd6v'\x92\xa6\xc2v \xc5\xd3L\x13*AA\x1f\xa3\xd3\f\xa47\xbc%\xca0\x8c8&\x0fP\xf5&+\xaf/\xa5\xb7E\xab? \x1f>\xaa_\xb4x\xd3~\x87c\xd7.\x92\xf4\xfeb\xf1u\x97\x98\xfc\xc13\xb5\x8b\xd7\xfd\x1f\x95D\a2\xe8pNj\u0082ͳ\xb3g7Km\xa3P\x97\x9be\xa7C\xba\x06\x9a#sD\f{\x96\xe4[\x8b\x1f\vu,\x1b\xbe\xde\x1d]B\x18U\xea\x88=+\xa7j#Buub\x92e([|\xad\x13\x93;\xec\xb6\\\xbbt\xe7כ\xf5$\x8e\"\xc1\x12\x94\x8cg.\x1b\x187|\xc4\x11H'xKt*ьE'\xcec\x16\xdd6=1\x0eZ\x9c\x93R\xa1\x10mŌI$ \x9d\x01\x89\xb2ّ\x1fé-~\xfc\xb3&\xf5\x87.\x84\xf1\x81\xd8Sk@\x9a\x91\x02\x12u\xc4\xcb?N\xa2D\x01\xc0$\x80D\x01\xc0Ԥ\x80D\xe3f2;\xba\x00`\x12@\xa2\x00`j\xd2G\xa2B\xf32\xf2\x18\xfd\xfan\xd0(\x90N\xa4\x8dD\x83\x95\xa1\x1f\xa3\x1d\x01\x8d\x02iD\xdaHT\xb8u\xf3W_\xfd\xe7W_\xfd\u05edK\xe0\xc7 @\x1a\x916\x12\r d\xb7ߚg\xaf\x98᜔\xe55\x01\xc0\x1c\xa4\x8dD\x05o~n\xee\x1d\xb9\xb9\xb9\xf3ހ\x8e.\x90F\xa4\x8dD\xb1\xe0\xbbt\xe9\xd2\xe8\xa5Kc\xd0\xcf\x05҉\xf4\x91h\xdc\xeb\xe8\x02@*\x91F\x12Mab\xd8SL\xb6\xe5\x04\x90jp\x97(\xc30\xc2\xd7q`Ok\xf74\xee\x9fF\xec)\x18\xfe\x15\x93l9\x01\xa4\x1a\xbc%\xca0\x8c\x18wy\x86dž\x8f\x1c\x98|\x8dθ\x19\x8c\n\x9f<\"\xf6\x14L\xff\x8aɵ\x9c\x00R\r\xde\x12e\x18F\\rQg\x97\xd8\v\x8cM\x88\x19_L\x1c~\x12\x8d\xd8S\xe8\xf8WL\xaa\xe5\x04\x90jp\x96(\xcb0BZ\xa6\xd6\xef\x9a\xfc\x9fA\xa6\x86D\xc3\xf6\x14z\xfe\x15\x93j9\x01\xa4\x1a|%\xca4\x8c \bc\xad\x9eɟ\x8a\xbdI\x89֡\xcc\xe6\xef\xe5\xe7\xde3\xa2)\u061dG۷\xb1\x1cy1\xcd\x1ce3\x97\xa0\x1fDȞB\u05ff\x82a9\x01L#\xf8JT\xc70\xc2\xefr\xb9ܓ?\x14\xbd9\x89\x06\xa9\x85C\xc1概\xec\xa1肗\xa0*\xf2&\xb8\x9b%\xdcJ\t%\xe8\a\x11\xb2\xa7\xa0\xb0\xfc+\x18\x96\x13\xc04\x82\xabDu\r#\xfc\xbe\xa1֩\x98.2\x92!\xfd\xa7\xb3\x8d,\xebi-\b\x90\xa5;+\xa3\v\x1e\xdd,\xa9g|T\"z\x11\x95D\xfc \x14\xf6\x14l\xff\n\xb6\xe5\x040]\xe0)\xd1X\x86\x11b\xdbsRwljB\xf4\xf7\xe27\xf5\x85\x1aS\xa2d\xfcg\xddH\x8aiF:w-GQ\x88\xa8\x85<\x13\xf1\x83hS\xee\xcc\xf2\xaf`[N\x00\xd3\x05\x9e\x12\xd51\x8c\x90\x9f\a\x1apM\xfa`\x94\xe8\xef\xf6\x17'(Q\xb2Ξ\xb4,}\x97f%\xdc\x10^\x8fD\xb4\xa9[\"~\x10=\xca^,˿\x82m9\x01L\x17xJ\x94m\x18\x11l\x91\xa6\x8c.\xec\x9b\x12\x89\xaaT\xf8\xf3\xdbf~\xed_\xbe\xf8\xe2\xb7߹\xf5\x96\xef\xfc9,џ\xff\xfd̿\xfd_$\xe3\x0f\xbe6\x93l\x9by\xdbO\xc5\x0f\xa4\xe5\xb4>F\x8aq\xa1D\xfb\xe0\x89\xf8A(\xec)\xd8\xfe\x15l\xcb\t`\xba\xc0S\xa2\x12\x1aÈ\x03\xc4XP\xec螎\xb9\xdbD\x88\x96\xe8\xcf\xff\xe6\xe7\x9f\xfc\xf6\xbb_|\xf1w/~\xf2\xef\xff\xe3\xbb!\x89\xfe\xfa\xef~\xfd\xc9o\xbf%jt\xc6\xed\xbf\xff\xe2\x8b\xdb~\xf0\xe7\xff\xf8\xf5\xb7\xc5\x0fĬ\xc1\x9aG\x86\x94\x85\xf6\xe8\x82G\xb7(Ə\f\x12\xf2\x83\x88\xd8S\xe8\xf8W0-'\x80\xe9\x02o\x892\f#\xdeq\x9d\x1c\x1e\x1b\x9e\xba颈D\xbf\xf9\xd3H\x83\xfa\xef_\vI\xf4\xf6߈\x1f\u007f\xff\xb7bL\x82[~/m\x9fA\xae$VTֺ\xe7\x8e\\\x8d\x1e\xe5\x19]6\x89\xfaA\xc8\xf6\x14\xfa\xfe\x15Z\xcb\t`\x1a\xc1[\xa2\f\xc3\b\xec\xebl\xdd\xd7\xd63\x05\xb7\xfe\xa2%:\xf3\xcf\xd2\xfb\xef\xbf}\xeb\x8c\x193C\x12\xbdu\xa6\b\xfd\xf8\x1f\xe2\xb6\u007f\xba\xf5\xbb\xffBTJ\x1f]\xb0\xaeu\xe6\xccZ\xa5}\xa6\xc2msi\xd2\xc2$\xec\a!\xd9S\xe8\xfaW0,'\x80i\x04o\x89r%Z\xa2\xb7\xca\x12\xbd\xfd\x9f~\xff\xc5'3B\x12\x9d)\xb7\x9br\xc6\xdf\xfc\xe0;\xb7\xfc $Q\xc50q\n\x89iO1ٖ\x13@\x8a1\xad$z\xbb\xdcѽ\xe5\x93/\xbex1,\xd1o\xfeH%Q\x91\xdf\xde\xc2W\xa2\xb1\xec)\xa6\xc0r\x02H)\xa6\x95D_\xfc\x9a4]t\xdb\x0f>\xf9\xcd\u007f\x0fK\xf4\xc5[\xff\xe5ϟ\xbc\xf8-9\xe3\xb7\xfe\xef'\x9f\xfc\xe86\xce\x12\x05\x00]\xd2^\xa2\xf4\x87e!\x8d\xfe\xf4\xef\xe9M\x97\xdf\xdc6\xf3k?\nK\xf4\x8b\x17o\xbfe\xe6\xed/\xca\x12\xfd\xf9\xed3o\xfd\xf6o\xa9D\xa5\x19\x1e\x00H*i/щB\x1f\xa3G\xc8\x12\xf5\xdc\x10\x00p\x06$\xaa\x03\xbf\x1f\xa3\x01@,@\xa2:\x80D\x01s\x00\x12\xd5\x01$\n\x98\x03\x90\xa8\x0e Q\xc0\x1c\xa4\xb7Do\x06\xa3\xc2\x01\x80\vi-Q\x00H}@\xa2\x80̤\xff\x16\x10\x98\x14@\xa2\x00\xc1\xe7̓~a\x0e\x98\r\x90(\x80\xc9OR\x8b]\xa7a\xb5^S\xc2]\xa2\f\xc3\be*gN\xda\xc2\xc7\xf5\xd7\xe5eUMVg\xefU[_\x9c\xa9\xfey\xb9[\xb4\xe1d\x10\u007f\x1d0\x1e@\x1d\x8cT\xc0\f\xf0\x96(\xc30B\x99\xca\x1bOvxm\xbdyy.gVY\xb8%ï\t\xe3$\x10ky\xf0\xf8\xeb@\x9c*\xa2\x97_\x02\xcc\x02o\x892\f#\x14\xa9\xfc\t7\x9b~Ԍ\x83q\x88O\xd4r\xae\xf1Bh/0\x97\xd5d\xa5Vl\xc6\xd9^M\x18\x17AW\xee\xbc\x18\x9b\xe3\xaf\x03Y\xc0\f~/`V8K\x94i\x18\x11IM\"#(ޮ\xf6\xd8\x12T1`\x90\xa7\x13uƙ:\xdb=\x86F4a<\fT\xa0{b\r\x1f\xe3\xaf\x03H\xd4\xcc\xf0\x95(\xdb0\"\x92ʗ@\x16B\x19t\x91\x16\xc1&\xad\x9a\xb9V\xb5\xfdr\xb5ñ\xff\xa3m\x0f/\xda\xf4\xa5z\xc7c\xf9\x19\xd4\xed\x81m\x18A\xe8C}\xf4=\xb0l\x96%\xff\x9e\x90\xa0C\xa9J\xaa\x1a\x96\xcc\x1e\xc8D\x99ê0\x8cn\x1d\x02k3\xf2\xc9EŸ\x0e\xc5r\x06\xbb*UM\x17HԴ\xf0\x95(\xdb0\"\x92ʙ>\xafW\xfe\xd1\xf6\x05\xefA\xd4\xe4\xf5\xaa\x87v\xd7Ϝ\xa9]\xbd\xb8v\xf7\xb6\xbb>\x8d\xda1\xb0>3\uf21ea\x04\xc1g\x93\x8a\xf2\xa0\xefu\xb5ޓѫNU\xb29\xc7\xda'T\xd9ɢb\x8a0\x8c^\x1d\xda\xf22\xd7\xd3n\xb9q\x1d\xacN\xaf\xd7\xdbU\x89\xb6\xa8R\x15\b\xe3]\x15\xb9q\xf5\xf1\x81$\xc0U\xa2l\xc3\bE*\u007f\xb2B\xeb*\xb0;\xba\x8f;\xea\xaf\xe1\x1b״\x1b\x86\xca\xd0c\xfa\x86\x11a\x02\xad\xe4\xab?;\xc6\x1d\xc7-ȅ\x03\xd9ǢB%\xac:ԡ\xb2\x90ьa\x1d\x9a\xfa\xc5a\xab\x13雔.\x11\x9b\xd8x{\xf9\x00wxJ\x94m\x18\xa1L发D\xab\xa3\x1bP\x19wn\x96K\xdf0\"\x82\xbf\xb9\xaa0\a\xcd\xd6ی[Q\xeeZ\xbcc\x96\xa0\x0eU\xb0\xea\xe0\xb6\xe6ʶ\xc1q\xd4Al'\x97!7\xd6e\xac\xc3U\f\xad\xa8i\xe1)Q\xb6a\x842\x95?F\x12]\xc7H\x14\xdb\xd0J\xb4\x90(B\xcf0\"Lo^\xfe\x93m^\xbb\xaeDdz\xd7v~}\xb4\xb0I\x1d\xaaa\xd6\xe1R\x15\xaa\x94\xdaQ\xc3:\x88\n\xad\xb2\x1c\xd1\xdfJ\xf0\xa2\xde\xd8\x19\x80\xa4\xc1S\xa2:\x86\x11\x8aT\xfe\x18I\xf4\x19F\xa28\x12͏\xb3cX\\INs\x99\xaeD\xdbŶツ\x9c\x80:Tì\x03\x1d\x8d>\x19_\xd3\x17\xb0[5\xbd\xe7(`F\u05fc\U00014a04\xc60B\x91ʟ\tH\xb43?^m`\x9cO\x9c#\x82e\xba\x12mC#\xf8\x02Z\x81\x83\x05\x97\x14\xa1:\x8f\x8eDɜ\xee\xacx\xdc\xe4\xfc\x15\xf4n\xabGc{\xa1\x00$j^xK\x94a\x18\xa1L\xe5\x8a\xd0\xe3\xf5\x92\xe9\xce@hF\xb7Gݎ\u007f\xf9\xc7\xc1\xd5\xf5\x83\x83\xd1#\xc1ev\x8d%\xb0.MhY\xf3\xe62dۢ\xa3\x80\xf1욶\x82\"K\xddf\x8b_\x11*2\xe8\xd4AbȾ\f\x1b\x12(F[\xbc\"Nk\x8cL}\xe0\xbdfZxK\x94e\x18\xa1L\xe5\xc9\x1b\x92\xb3\x03ra!\x97\x06\xaa;\x92\x18_vP6\xe9\xec\x1e\x0f\xc1\x1dEV\xdb\x03\xee;,zM\xd8\xe9;lu\x81\x93E\xb9ͪ0\xc2\xcd\xd7\xe1B\xa6<\x9dT\x10#\xd3x沁\xf1d\f4\x00CxK\x140'm\xc5\b~\x8cfN@\xa2\x80\xc4\xf8@2f\xd4\x01C@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00`j@\xa2\x00\a\\\xd9\r\xe2kO.\xf7_3\xa5\x01 є\xa0\xbd\xd2\xcf\b͈\xbf\xb2]\x9b\x18\xc8^\x8b\xc60\xbeϦY\xf5\x85\x01\xb3\x84i\fw\x89j\r#\x047]\x16E\xb3\x82\x1d\x10f\vjb\x84\xf1\x93\x88w\xc4Ͳ%C\xebzџ)\xccj\xc7㖍Q\xe9\xa3+\xf2\xb3go\x96\u007f\x1f\xef\xb2\xe7\xe4o$?\x88c\x95\xa0\x0f\xcfsK\n\xbc%\xca0\x8c\b\xb8.\xf8DL\xdd6L\n\x9d\xfdF9th\xcep3\xc2\x04H\xc4;\x02\x1b\xac\xb6=\xf8n\xec\xedؓ\xa9Yl\xb0\xd7\x1a,h\x15\xaf.Q\xebI\x8c|c\xf6v\xcfƜ\xd9t\x8d\x9c\x85\x19u\xed\r\xa8U\xa7\x04)?+1\xa1sKExK\x94a\x18\x11pM\x13K\xae\x8a\x1a\xa3\x1cl.Y\xd63\xc2DH\xc4;b\b\xc5^Tb\x9d\xce:-\x11\x1a\xac\xd1\xff\xa1\xfe\xcc=h(X\x18mo\xb1\xa4\x80\xf4\x9c\x86\xb3I\xe3\xba\xc4\xdaM\xd6gi\xd6)\x81\xc0\xaeY\"疒p\x96(\xcb0b\xdaH\xb4,\x8eeLX8g\x05\x18a\"$\xe2\x1d\xd1c\xb0\x8c\x91\xdeRJ\x11\x02\xb3\x9c\xd1I\x8f\xa1\x85\xe2\xe1\xa2ǘ\xc5\xd2B\x10\xf7U\x90\xa3\xd2\xfe\xfb\x88\xb4\xf2\x03\xa3\x04\xacW\xb3D\xce-%\xe1+Q\xa6aD\xbaIt \x13\xa1\x86\x91U\x05YU\xe4*\xd4R\x99]D\xdc%<\xf2\xf2$ed\x9d\xea\x8c\x16\xf5\xfe\x8d\xeb\xf4CX\xa2\xdb\x1e\xbe\xfe\xa5H\xedN1\xae\xdeOR\x8e;\xa4KƘtIRS\xa8sᨣ\v\x18\x97Y\x89\x80Dz\xe5>\xbd\xa6\x04\x9d\x9a)1\xf2\xe6HUxJ\x94m\x18\x11\xc2ۦ\xb7_\xeaQV\x11\n\xe4K?\xbd\xb6\xebH4\x94W\x95\xaa@1\x04S\x84:V\x16\xb11\xf2\xaf \xb0F|\xd7N=\xb3ڱ\xfc\x97\xeaV\xf4qGd\x01\xd1\xeaC$e\xd0!ݐ\xe9e\xac\xca\xebEm\n\xc3\xe50\x81\x9aLz\x17\xa9\xa6\x98~\\V&%\xb3J0\x98Ȋ\xe7\xdcR\x12\x9e\x12e\x1bF\x84\xd4\xda\x19\xa7\aC*\x10\x16\xe3\x8a\xc2~\x8a?\x9cJo\x05S16X\xd5y\xf5$\x1a\xb061B\xe3\x89U\x06F\xfe\x15\x04\x86\x10\xde\xdd/\x8a\xf3ڙE\xc7\xc9\az\xe0S\x9f\x92V\xf4]\ni9\xabw\x93M\xa7\xe4V\xb4ɢ\x9dw\xae\xb1\t\xd8\x19\xa9\xbe\x8c\xaf,W\xeaN5\xe4\xd0q\xce\x12\xf9z\xc5*\xc1@\xa2\xf1\x9c[J\xc2S\xa2\x12\x1a\xc3\b\x0f\xb5\x04\xf2\xbb/\xc4\xdc-\xa5\bˮC\xba\x17\xbfq3y\xb5\x8b]\xbdq\x9a@\xfas\xc1\x8a8%\x8ak\xee\bj\xc3\tI\xd4ȿ\x82p)G3f<\xe48O\xde\xeaw\xd1\xd7z\x8c?#\x03\xd0\xf3t\x14\x8a\xf7\xffR|\xa9^NƢ\x0f\xd7\xd3\xec\xc1\xe2\x85\xd1%`\xbfe=\xeeGM\x19j\x8bŁYE\x97\x88\xbf)\xb9\xe7IN\xfe\x12}\x94\x97]\x02\xb3f\n\xe29\xb7\x94\x84\xb7D\x19\x86\x11c\xae\x8e\x91\xb1\xbe}\x9etY\f]\xe8\xa1s\xb7Ҩq=z\xa0\xb5݉\xe8e\xa9ɺ\xbdm^69\xe5J͕ۖ(\xd3=\xac\xc8\xeb\xf3Z\x9c=\xb8\xdfi\xf1F\xcfE\xbe\x93\xb1=*\x8ci#\x11\x03#\xff\n\x1d\x0e9\x16\x1fz\xfd\xf5\x9d\x8eA\xfa\xa1\xfa\xf8\xeb\xf5\x8bɡ\xf7ߵ팘J\xa7\x8b\x1c\xebΜZ\xbd\xf4\x03\x9a}\a\xd2>F\xb5\x1d\x8d\xe0\x03\x85A\xab\xea\xc0Dzfy\x88\x95E\xbe\x18o\xb44tl\xb7\x15\atK0b\x82\xe7f~xK\x94e\x181~\xf2\x80\xdb3\x94.\n\xc5\x03\x92\x0f\x85\xdc\x0et\xd8m\xb9v\xe9&\xb0P\x97\x9be\xa77\x05F\xecY9U\x1b\x11\xaaS\xe4\xad\x13\xdf-C\xd9\xe2k]t\x89\r_\xefV\x87\x13\xb5\x910\xf4\xaf`s\xaa\xfePm\xf5\x83\xf5T\xa1\xf8\xfa\ue94b\xea\xa51\xe7\xf9\xfa\xe5K\xebi\x03[\xbd{\xe7\xd2\xdam\u007f\xa1\xa9ެ\xf0}\xdc\bw\x88G\xf4Z<\xea\xf9\xd8\xd0\f4\xedݶ\xce\xce*j\b\xe8\x97`\xc4\x04\xcf\xcd\xfc\xf0\x96(0\x11\x1e\xb3\xb42B\x13!M\x17Q\x0eZ\x9c\xda\xdbg\xe3H\x1c\xcd\x04+\xd1\n\xcd\x16\x06\xcc\x12\xa6/ є`G\xfe8#4\x0f\x11\x89\xfag1\u007f\xa6Bo,\t\xef\xc4\xd3U\xd2)a\xda\x02\x12\x05&\x01E+\nL2 Q\xe0\xa6\xf9l\xb0z\xd7\x1fn\x18\xe5\x02&\x06H\x14\xb8iv9\x1c\x0e\xc6\xc3N\xc0\xa4\x00\x12\x05\x00S\x03\x12\x05\x00S\x03\x12\x05\x00S\x03\x12\x05\x00S\x03\x12\x05\x00S\x03\x12\x05\x00S\x03\x12\x05\x00S3\x9d%Z\x83l\xab\x86\x8d2\x01@r\x99\xce\x12\xf5u\xba\x8bm\x13Z\xf4\x12\x00\xb8\xc1]\xa2Z\xc3\b\x91\xe1c\xee\xd6>\xbd=\xa6\x92.4\x80\x01\xc0\xcc\xf0\x96(\xc30\x02\v']=\xa3\xfd\xaeX?\xa9\x9f*z\r\xd6u\x06\x80d\xc3[\xa2\f\xc3\b|z\x8fؚ\xfa]\xc9\x18\x16\x82D\x01\xb3\xc3Y\xa2,\xc3\b\x9f\x8b\xaeZ\x94\x94A!H\x140;|%\xca4\x8c\xe8\x11\xd5\x1a\xcfO}\xa7\x82\x81\xc8J\xef\x00`J\xf8J\x94i\x18\xd1\xee\x19ns\x1d\xe8N\xcaZ\x18\x82\xad\xb2{,Y\xd7\a\x00\x88\x03\xae\x12e\x1bF\xb4RÈ\x03\xadI\xd1\xe81\x84\xd0=F\x99\x00 y\U00014a0ea\x84g\x0f]\xf5\xda\xdd\x1b{\xef)!`+\xdcѩ\xe7\x12\x02\x00&\x80\xa7Du\f#\xba$\xa7\x88\xaeh\xf7I\x1e\xf4\xa2\x93FY\x00 \xa9\U00014a0eaD\xbf\x9b\x0e\x06O'\xc30\x02ft\x01\xb3\xc3S\xa2\x12\x1a\xc3\b?\xbd\xe9\x12\xd8\xd7\x17s\xb7\xa9\x01$\n\x98\x1d\xde\x12e\x18F\xe0\xbe=}cC-mɘ.2r\x8d\a\x80d\xc3[\xa2,\xc3\b|\xa9\xdd}\xa4\x8f\xbfB\x05_\u007f\x8d5m̜\x814\x85\xb7D\xcd\xc4\x12\x84\n\x921G\x05\x00\t0\x9d%\xea\xeb\x1f\xc3\x00`r\xa6\xb3D\x01 \x05\x00\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x02\x80\xa9\x01\x89\x022\xb0>\x8c9\x01\x89\x02\x04\x9f3\x0f-1\xca\x04$\x03\x90( \x12,.v\x9d\x86'\x96M\tw\x89j\f#\x84\x16y\xb5\x94\x031\xf7\x9b\x1aN\xda\xc2k=\xf8\xeb\xf2\xb2\xaa&\xab\xb3\xf7\xaa\xad/\x14n\xb7ng\xa4\x86\xf1\xcf\xcbݢ\r'\x83\xd0Ѿ\x87$\nU\xa9j\x06P\a#\x150\x03\xbc%\xaa5\x8c\x10\\\xfd>\x91>W2\xdcU<\xd9/\x84\xc2yy.gV<\xebm\xfb\xe2\xc8\xe4B\xaePXf\x99\xcdH\r\xf3d\xe1\x96\f\xbf&\x8c\x93@\xac_\xbb\x86\x8ef\xaf\xf0\x8a\x1c\x94\x17:d\xd5\x01\xe37\x90\x97\x91\n\x98\x01\xde\x12e\x18F\xd0\xe3\xf1\xd4\x00\x00\x0f\xb1IDAT\f\xd1U\x8cZ\xbac\xef8E\x84\x9bM?j\xc6\xc18\xc4'j9\xd7e\xd8ؾ\x80B\xd2\x0fd\xac\xc8\b\x15\x1bI\x8dP\xb1\x19g{5a\\\x04]\xb9\xf3bl\x0e\x1d\xad\x8a\x8e1\xabr\xc6T\xa9j`\x81\x18\xf3\xc2Y\xa2,\xc3\bʱ\x17\xf8\xaf\xba\xa0b\x04Ż\xbc\xd9\xd8\x12Ta\xd4\xe2w\xa2\xcep\xd4\x1f^\xf1>\x92\x1aa\xb6{\f\x8dh\xc2x\x18\xa8@\xf7\xc4\x1a>\x86\x8e6NZf7r\xabSՀD\xcd\v_\x892\r#\bîqݝ\xa6\x8c@\x16B\x19t\x04,ؤ\xe1\xdaZ\xd5\xf6\xcb\xd5\x0e\xc7\xfe\x8f\xb6=\xbchӗ\xea\x1d\x8f\xe5g\xac%-\xe3X\x8e<\xccˉ\x96J\x1fꓣ\xa6|\x9cߤI\x8dPհd\xf6@&\xca\x1cV\x85at\xeb\x10X\x9b\x91O.*\xf1ԁ\xe4\xaab\xa4F\xe8\x02\x89\x9a\x16\xbe\x12e\x1aF\x10ZO\xeb\xee3\x85\xf4y\xbdVI>\x17ıZ\x93\u05eb\x1e\xda]?s\xa6v\xf5\xe2\xda\xdd\xdb\xee\xfa4j\xc7\xc0\xfa̼#\xa2\xb2\xdd\xcd\x12\xee\xe8.\x80\xcf\x16*j^\r^fפF\u061cc\xed\x13\xaa\xec=AU\x18F\xaf\x0emy\x99\xebi\xff9\x9e:D\xba\xb9\xcc:\b\xe3]\x15\xb9q\xf5\xf1\x81$\xc0U\xa2l\xc3\bL\x16\xc1Nք\u007fV\xa8\x85cwt\x1fw\xd4_\xc37\xaei7\f\x95\xa1\xc7\xc4>䨄~\x17 \x98\xbd\x1d\xefȎ1v݂\\8\x90},*TªC\x1d*\x1b\x92C\xe3:(\xba\xb9L\x96\x88mp\xbc\xbd|\x80;<%\xaac\x18!r\xb25\xd6~S\x89\x91D\xab\xa3\x1bP\x19wn\x96\v\x8f\xa2\x10\xba\x9e\x13\x03\xa8[\xe8\x8ea\x05ފr\xd7\xe2\x1d\xb3\x04u\xa8\x82U\a\xb75W\x16]\x1cuPtsٛ;\\\xc5Њ\x9a\x16\x9e\x12\xd51\x8c\x10q\xf7\xc5\xd8mJ1\x92\xe8:F\xa2؆V\xa2\x85D\x11^\x8f\x84\xfe\xc3H\x14G\xa2\xf9\xf1v\fk\xcaz{{\xcbj\xf46\xb7\x8bm\xdf}\x059\x01u\xa8\x86Y\a:\x1a}2\xbe\xa6O\xea掮\x8d1g\x0e3\xba慧D%4\x86\x11\xa4y\x8d\xef\xbb6\x05L@\xa2\x9d\xf9\xf1jCd\x16\x99$^;Kos\x1b\x1a\xc1\x17\xd0\n\x1c,\xb8\xa4\b\xd5yt$J\xe6tg\xc5c\x1a%ws[Q\x8c\xe7\x1c@\xa2慷DY\x86\x11b\x93\x9a\x94\x9b\xa2B\x8f\xd7kuz\xbd\x81Ќn\x8fzZ\xe7\xcb?\x0e\xae\xae\x1f\x1c\x8c\x1e\t.\xb3\x0f\xe18\x11\x8e\xa1\x8d\x01\x1c؈\x8e\xe9\x9c\xe0xvM[A\x91\xa5n\xb3ů\b\x15\x19t\xea 1d_\xc6LWs\x0f:H\x1e/j\x88%\xd1>\x94\x9c'G\x00cxK\x94i\x181\xcaz\xe0e\xeay#C\x9agqa!\x97\x06\xaa;\x92\x18_vP6\xe9\xec\x1e\a'\xc5B[\xf1\x11\xf1U\xef\xa6\xd2\xe9;lu\x81\x93E\xb9ͪ0\xc2\xcd\xd7\x01\x17\xc9\xd3I\xb1f\x84\xc63\x97\r\x8c\x1b>3\x05$\x03\xde\x12\x05\xccI[1\x82\x1f\xa3\x99\x13\x90( 1>\x00\x0eT\xa6\x04$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\n\x00\xa6\x06$\np\xc0\x95\xdd \xbe\xf6\xe4&\xb6L0@\x00\x89\xa6\x04\xed\x95~FhF\xfc\x95\xed\xda\xc4@\xf6Z4\x86\xf1}\xb6x~t\xc8,a\x1a\xc3]\xa2\x1a\xc3\b\xf1?\xf0\xd5\x17\xf6\xbd\xf0jܿ\x92\x9e\x86lAM\x8c0~\xe2\xf7\xaf\xb8y\xb6dh]/\xfa3\x85Y\xedxܲ1*}tE~\xf6\xec\xcd\xf2\xff\xbc˞\x93\xbf\x91\xfc \x8eU\x82><\xcf-)\xf0\x96\xa8\xd60\x02\aZچdž\x8f\xb4\xa4\xbdF;\xfb\x8dr\xe8М\xe1f\x84\t\x10\xbf\u007f\x85\x88\xc1jۃ\xef\xc6ގ=\x99\x9a\xa5\x9az\xad\xc1\x82V\xf1\xea\x12\xb5\x9e\xc4\xc87fo\xf7l̙M\xd7\xc8Y\x98Q\xd7ހZuJ\x90\xf2\xb3\x12\x13:\xb7T\x84\xb7D\x19\x86\x11\xdeV\xd2\xfd\x11Z\x13\xf1JHI*t\x970\x8a\xcd%\xcbzF\x98\b\xf1\xfbW\x88\xdd\x1c\x14{Q\x89u:\xeb\xb4Dh\xb0F\xaff\xe6\xcf܃\x86\x82\x85\xd1\xf6\x16K\n\xc8\xff\xfcp6i\\\x97X\xbb\xc9\xfa,\xcd:%\x10\xd85K\xe4\xdcR\x12\xce\x12e\x19F\x9c\x96\x16\xealO\xcaj\xd7<)\x8bg\x19\x13\x06\xceY\x01F\x98\b\xf1\xfbW`\xdcc\xb0\x8c\x91\xdeRJ\x11\x02\xb3\x9c\xd1I\x8f\xa1\x85\xe2\xe1\xa2ǘ\xc5\x05\xf4\xed\xbe\nrT\xda\u007f\x1f\x91V~`\x94\x80\xf5j\x96ȹ\xa5$|%\xca4\x8c\xf0\xb7t\xf9\x05\xbf\xb7\xc5Գ \t0\x90\x89P\xc3Ȫ\x82\xac*r\x15j\xa9\xcc.\"\xee\x12\x1eyy\x922\xb2NuF\v\x1e\xb5\xa0bU\xde:dq\xad-ʮҴ\x1fBΓѡ\xae\x8d\x84\x0e\xf1\xfbW\xb0\x850\xb8\xa9\xb6z\xf9\xa6\xda\x1b\xf8ui\x9d\x16\a]7\xf4Ʃu\x8bWホ\xf1.G\xf5\xf1\x9d\xb5K7}$goȊ\x9e\x16\n\x0e\vx\x99f\xb2\xa8[\x92\x91\xb3P\xfc\x9bX\x02X\xb1Y[\x02֓h\"疒\xf0\x95(\xdb0B8\xe9r\xb9:\xe2\x99\xecK\t\x84\xd6\x03\x05E9\xf9kW\x90ILgF\x9d\xa7\xd9V\x16āno\x91\xdd\xeb\xf5\x8a\xdd\x06\x9f\xd7\"~\x93z\x9cVU\xde\xe1\x03\x99\xc8ִ=\xe7\xbe\xe8\xf2\"MC8Ա\x91\x10\xe4\x85\xe95\u007fʸ\xfd+\xfc\xa3\xa3GБ\xd1Q\xf5\xe5\xf2\xdf\xee\xday\xe6\xfc\xa9\xe5\x8e/\xf1\xb5A\xba\xda\xd9\xe0\a$y\xa7c\xf7\xf9\xe3\x0f>~\x03_>S\xed\xa8=t\xa8v\xd1e)\u007f7KK\xda\xc9\"\x19!o\x95\xd8è\xd8S\x9c\x91\xe7\f-\xa9\xaf-\x81]3\x9c\xc0\xb9\xa5*\\%\xca6\x8c\x10N\xb6\x0e\xfb\x86[O\xa6\x8dF\xc5/\x1c\x9a'\x9e)m;\xc9\xecN/:HS\xc3\x1d]\xea$\xd3dU\xe7\xc5\xd6\\Qӫlхy\"\xb3,\x8a\x90e#a\x97[j;\xd6\xc3\xc0\xbfBgi\xfb\xe3\x0f\x92\xc6\xfa\xf8\xd2\x1b\xe4C\xb8\xa3\xfb\xba\xe3\x94\xf8\xfa\xae\xe3\x8c\xf8Z\xfd\xb0X\x93k\xb5\xf2\xa2\xdcc\xac\x81\xa0f\xb2H&\xe8\xcc\x12/[\xf9\x19\xb6-\x1d\xcdy\xf9r?^SB\x1c\x8b\xee\x1bzs\xa4(<%\xaac\x18\x11\x9a.J\xa3e\"\xcbB\xd3\x1d\x0f\x14\n\x84|:\xb4ґhxj\xc4ꌤ*h\x8b|+\x15!\xcbFbD^\x98^\u007fN\xd6\xc0\xbf\"\xd8\xe9\xf14\xa1&\x8fG=\x90\xfb\xb4\xf6\xe1ݧ\u07bfq\x9d~\bKt\xdb\xc3\u05ff\x14\xa9\xdd)\xc6\xd5\xfbI\xcaq\x87t\xc9\x18\x93.Ij\nu.\x1cut\x01\xe32+\x11\xf0X\xb6ܧה\xa0S3%F\xde\x1c\xa9\nO\x89\xb2\r#\x82{.\xd0\xf0¾\xf4\xb9\x00\x96U\x84\x02\xf9\xd2O\x17\xd7ӑh(\xaf*U\x81b\b\xa6\bu\xac,\f0\xf0\xaf \xb0F|\xd7N=\xb3ڱ\xfc\x97\xeaV\xf4qGd\x01\xd1\xeaC$e\xd0!ݐ\xe9e\xac\xca\xebEm\n\xc3\xe50\x81\x9aLz\x17\xa9\xa6\x98~\\V&%\xb3J0\x9aȊ\xe3\xdcR\x12\x9e\x12e\x1bF\x04\xf7I\x12\xedO'\x89\x86ĸ\xa2\xb0\x9f\xe2\x0f\xa7\xd2[\xc1T\x8c\rVu^=\x89\x06\xacM\x8c\xd0xb\x95\x85\x81\u007f\x05\x81!\x84w\xf7\x8b\xe2\xbcvf\xd1q\xf2\x81\x1e\xf8ԧ\xa4\x15}\x97BZ\xce\xea\xddd\xd3)\xb9\x15m\xb2h\xe7\x9dkl\x02vF\xaa/\xe3+˕\xbaS\r9t\x9c\xb3D\xbe^\xb1J0\x92h\x1c疒\U00014a04\xc60\xa2S\xee\xe8\xa6\xcd,\xb9Bv\x1dҽ\xf8\x8d\x9bɫ]\xec\xea\x8d\xd3\x04ҟ\vV\xc4)Q\\sGP\x1bNL\xa2\x06\xfe\x15\x84K9\x9a1\xe3!\xc7y\xf2V\xbf\x8b\xbe\xd6c\xfc\x19\x19\x80\x9e\xa7\xa3P\xbc\xff\x97\xe2K\xf5r2\x16}\xb8\x9ef\x0f\x16/\x8c.\x01\xfb-\xebq?j\xcaP[,\x0e\xcc*\xbaD\xfcM\xc9=Or\xf2\x97裼\xec\x12\x985S\x12ǹ\xa5$\xbc%\xca0\x8c\x10\x0e\xb6\x0e\x8d\r\xb5\x1eL\x97\xe9\"\xa1\x87\xce\xddJ\xa3\xc6\xf5\xe8\x81\xd6v'\xa2\x97\xa5&\xeb\xf6\xb6y\xd9\xe4\x94+m[6W\xa2L\xf7\xb0\"\xaf\xcfkq\xf6\xe0~\xa7\xc5\x1b=\x17\xf9N\xc6\xf6\xa80\xa6\x8d\x84>\x86\xfe\x15:\x1cr,>\xf4\xfa\xeb;\x1d\x83\xf4C\xf5\xf1\xd7\xeb\x17\x93C\xef\xbfk\xdb\x191\x95N\x179֝9\xb5z\xe9\a4\xfb\x0e\xa4}\x8cj;\x1a\xc1\a\n\x83VU;x,k\x96\xc7\xeb\xf5:\xf3\xc5x\xa3\xa5\xa1c\xbb\xad8\xa0[\x82\x01\x13=7\xf3\xc3[\xa2,\xc3\b\xa1\xf7\x88\xbb\xad7m\xfe\xb2\x03\x92\x0f\x85\xdc\x0et\xd8m\xb9v\xe9&\xb0P\x97\x9be\xa7&\x81#\xf6\xac\x9c\xaa\x8d\b\xd5)\xf2։\uf5a1l\xf1\xb5.\xbaĆ\xafw\xab\xc3\t\xdaH\x9cDF\xfe\x15lN\xd5\x1f\xaa\xad~\xb0\x9e*\x14_\u07fdtQ\xbd4\xe6<_\xbf|i=m`\xabw\xef\\Z\xbb\xed/4՛\x15\xbe\x8f\x1b\xe1\x0e\xb1\a\xe1\xb5x\xd4\xf3\xb1\xa1\x19hڻm\x9d\x9dU\xd4\x10\xd0/\xc1\x80\x89\x9e\x9b\xf9\xe1-Q`\"]\xa1Z\\Y\x16w\x1d\\^[\x19y\x1e:b\xac_a^Ya\x8bac`\x9aZ\x1d*{!@f\xb1Ke\x9e(|*dfclfP+\u007f,fheMj\xaf.\x81.Fm\xb1ikh0\x8301\x841/\x859Jq\xb5mol\x89j_oqn;\x86:>\x88<\xb3h\"{s[Vu\xb5sur?\x8a>@\x8b?uwtB\x8c@@\x8dG\\z\xba\xadq?y{xJ\x8fI^~\xb8L\x90K\x94wq\x85}d~\x80}O\x93Nb\x83\xbdN\x95U\x81\x83\x80W\x95V\xa7|e\x8e\x85gm\x87\xbcZ\x98Y[\x9aZ\x87\x89\x86]\x9b\\^\x9d]\xba\x82Z\\\x9ddr\x8d\u008a\x8c\x89\x96\x8cnd\x9ddf\x9ff{\x90\xc0\x8f\x91\x8eh\xa1h\xe3\x83+ЇK\u007f\x93\xc4j\xa3jz\x97Ɠ\x95\x92s\xa4l\xa0\x96wq\xa5s\x81\x9aė\x99\x96\xe4\x8b@u\xa9w\x9a\x9c\x99\x86\x9eȜ\x9e\x9b\xef\x904~\xaby\xa8\x9e\u007f\x9e\xa0\x9d\x80\xad|\xa0\xa2\x9f\xf9\x94.\xa1\xa3\xa0\xa2\xa4\xa1\x81\xb1\x85\xff\x952\x92\xa6ˤ\xa6\xa3\xb3\xa6\x82\xa5\xa7\xa4\x8b\xb2\x88\xa7\xa9\xa6\x8d\xb5\x8a\x8e\xb6\x8c\xaa\xac\xa8\xb9\xac\x88\x8d\xb8\x93\x9e\xaeΕ\xb8\x95\xad\xaf\xac\x97\xba\x96\xaf\xb1\xae\x98\xbb\x98\xa3\xb2қ\xbe\x9a\xb3\xb5\xb2µ\x90\xb5\xb7\xb4\xa3\xbf\x9d\xac\xb7Ң\xc0\xa4\xb7\xb9\xb6\xb9\xbb\xb8\xa5ħ\xb1\xbc\u05fb\xbd\xba\xa7Ʃ˾\x98\xbd\xbf\xbc\xa9ȫ\xb8\xc0կǫ\xbf\xc1\xbe\xc1ÿ\xb2ʮ\xc2\xc4\xc1\xbd\xc5\xda\xc4\xc6òͷ\xb9̸\xd6ǝ\xc7\xc9ƻκ\xbcϻ\xc4\xca\xd9\xc9\xccȾѽ\xc0ӿ\xca\xce\xde\xcd\xcf\xcc\xc4\xd0\xde\xc8\xd3\xc1\xcf\xd1\xce\xdfѥ\xc7\xd6\xc9\xd1\xd4\xd0\xd2\xd3\xdd\xca\xd8\xcb\xd3\xd5\xd2\xce\xd6\xdf\xcc\xda\xce\xe7\u05eb\xd6\xd8\xd4\xd4\xdb\xd0\xd8\xd8\xe3\xd8\xda\xd6\xd3\xdb\xe4\xda\xdc\xd9\xe6ݯ\xd7\xde\xd3\xd5\xdf\xda\xdd\xdd\xe5\xdc\xdf\xdb\xd7\xe1\xdc\xde\xe0\xdd\xf0\xe0\xb3\xdc\xe1\xe4\xdf\xe1\xde\xe1\xe3\xe0\xe3\xe5\xe1\xe1\xe6\xe9\xe4\xe6\xe3\xe8\xe5\xea\xe5\xe7\xe4\xe6\xe8\xe5\xe4\xe9\xeb\xe7\xe9\xe6\xef\xf2\xee\xfe\xff\xfc(t:\\\x00\x00 \x00IDATx^\xed\xbd\x0fp\x14G\x9e\xe7\xbb\xcc{\xbe}ϯ\x84zf$\xf5\xae4b\xef8M\xb4BB\xc7\x19\x9e%`\xd7z\b\x8b\xf3\xc2C\x1b\x02\xc1\x03\x9d\xe1\x16\xc6\xd8\xf3\b\xb3+0\xecB\x888\x9be,\xeel\xe4\x85~\x92\xb5\x1e\x99\x91X\xd9 \xa2ό\xa4\xc0\x9a6 ,\x06#\xd9H0\xd8\xc6\v\xde\x18\xf5\x10\xb6\xc5ȱ\xf66a\"\xda1\xd1\xe4M\xbcʪ\xee\xaa\xcc\xea\xcc\xca\xeeVw\xb6\xd4\xf5\xfb\x04!\x15\xa9\xac\xac\xac\xac\xfev\xfd\xe9\xea\xfa\xfc\xc1\xef\x93\a\x01\x000{\xf9\x03Q\xc2m\x10\xb5\r\x00\xc0\f\x06\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0fd+aQ\x05\xa7\x03\xe1\a\xb2\x92@c\xa1\U00084a12Á\xf0\xf7.\x9e\x14U\x91I\xc2ݙZ\xdc+\xaa2\xa3\x90\xd3\xdfpI\x89w \xaa\xe5p\xe4\x86?\xd0w\xbc\xbd\xfbB\x10O\x06/\xbc\xd1\xfe\x86>I\x94\xf2\xf8\xd7#kk\xf7=\xb0\xab\x11C\xb3\x92\x8b_e\xbe<\xa5ٮZ\x8b\xfd\x9f\xd9\f\x14\xfaDU\f\xa6\xb6\x15歈\xfb\b4\x89\xee\xb4\xe4\x1c\x14U\x91\x8b`t\x92\xeeo\"\xa3~U\xe9\x13U\x01\xa4\x86\u007f\xd2\xeb\xbb\x11\xb8q\xf2\xb8\x9a\xf3`\xe7I<\xd9\x19\xa4J\xb9\xecn8\xfbR\xed}\x9b\n\xb1L\xd5\xe7-U\u007f-ͫ\x9f\xb2\xa9՚\xd3a\xf3W\x1e\xbe\xfc7DU\f\x96\x16z\x1b\xf3l\xdf\xd9\b\x92\xea\x8eon\xab\xa8Jz\x18\x1ce\x16\x8bFG\xd8\xdf$\xdb%\x19V\xfc\xa2*\x80\xd4\xf0\xdf\xf6\xe2\x03\xb1\xa0\xf7\x06B\xfe\xee\x90:\x19\xea\xf6S\xa5<\xeeW\x9fA\x0f\x12\xcb>BM+\xd4\xccM\xe5\xadh\xb2\xa9s\xdbe\xf7W>q\xef\xc9єҊ\xc2\xf1f?\xc9\xee\xecqe\xe6\x00wa=\xbb\\4:\xa2\xfe&\xdb.\xc1\xb02$\xaa\x02H\r?\xd2B0\x89\xc3>\xa0\x9f\xf8\xf5\x0eP\xa5<>\xab~\x97\xffG\x1eM\xf5K\xbbP\xe7\xf2z\xbb<5\x16ś\xcbd\xb9\xa9\xc4\u007f\xac\x9alw\x82E\x8d\xa2*i\xa1\xacNT\x83\x8d\xa8\xbfɶK\x00\xe1\x8f\x03\xb9\xe1W\t\x05\xba}\xea;\xf8T\xe7\xe0Th\xca\xdf9E\x952\xf9vm\xb5\xc61\x84\x8eTW\x9fC\x9f\xd5Voœ\xb5g\x8fm\xad\xdd\xf7[\xad\xceg/\xac\xadm\x88LGi\xaao\xadC+\xbc8\xfc\xc1\xba\"W\xf1ʫj\xe16en\xeb\x93\xc5\xee\x957\xb5*\xa1\x02\xed\x9d!T\x98\xdbT\\4\xb8\xdd]\x15\xe4\xd4%g\v\xe6)J\xceq\xa4U\xc8\xf5\ue61f\xb7\\{ۚZ\xef.ޱÝ\xdfMt!\xe4V4v\xe0\xba9\x9d\xea\x9e])\xb1̆n\u05f9s\vW\x04\x88\ue82bs\x15e\xcf\xcd\xf5\xf3\U000961f8\xb3u.Ο\xbf#\xfaV\xb1'/\x84(\x12n\x81\x81\u007fyq\xae{E1\xafԧ\xaf\x9aRF--\xbeщ\xe9o\x8a\xda5\x19\x84\xf0\x8b\x91\x1c\xfe)\xaf\xd7ۡ\xbd\xe0B\x03\xead_\xc8R\xca\xe4ӱs\xd5=cc_\"\xf4۱\xda\x1e\xf4`\xecH-B\xb7\xce\xd5V7\xf4\xf4\xac~\x01\xd7\x18\xab}\xb6\xe7J\x8fzn@\xd2T\x1fȟ\xfa^\x00\x87ߧ<9ؽ2g\x18\xa1\x1b\xc7\xe7*\xc5\a\x9b\x8b\xf3\xc6q\x95QeP\xab:X\xa0\xecX\xaa\xb8\x0f\x16\xb6p\xeaR\xb3]\xf6\xfb]\xdae9\\Z\xd8\xdcR\x80wT\xa1\x92\xa2\xd6fW^\xfb\xf2\x16\xb2\x0f\xef\xfb\xbb\x94f\xbf_}\x9d\x06\xfc\xb9\xea\xe5\xb6^\xb7h\xbd:\xedC\x8dOr뒳!\x94\x17\xb9&\xefr\xab/\xcb\xf5\x85\xeaT\x97\xa2\x1e,\xb4*\xe3Ȃyد\xbdt\x9b]\xf4l\xa1bu\xaf\xa6\xbeʵ# \xa3;\xea\xf2\x95\xa5A\xfd\x84\x889\x9bO\xc1\x17\x06\x87\x95.\xbdv@\x89\xbd\x14\x96X\v\xb1\xb4\x16\xe2m\xd3\xea\xa6\xdf\x1d\xa8R\xe2\xf0\xdc\\\x1a\x8actb\xfb\x9b\x9av#<\xa1\x1e8$p\xb2\xe5Xd\x87\x1f\xe1W\xfa\x80y\xc1\xef\x02Uʃ\x1d\xfe\x97\xa2\x93W\xaa?e̤\x86\xbfE9\xa8\x85\x1fM\xb5.\x9fW\x80\x8f$\xd5W\x8evhݪ\xe0\xb8\xf5\x1a\xe1\xefBCJ\x10\xcf«K\xceF\xbc\f\xf1ɫ\x96\xab&7\xc2I\x8f\xf9\f\x9b\x1d~c6\x9f\xf2\xbeY\xb7\x97\b\xbfqM\x8c9[\xfd\xbc\x10\xa68r\xee\x1c`d8\xb1\x16b\t\x14\xcd\xdb\xe6}?l9>\xa7Jɐ\x92\xd7\xf0\x84\xa3\x13\xdb\xdfԴ\x1b!\xd0\xe7-\x81=\xbf\x18\xa9\xe1\x0f\xe9{\x91\xab\xdep\xb8]\u007f\u037f\xdf\x1e&J\xb93\xb2\xc3oL\x9e\xa9\xfe\x961\x93\x9a\xe4\xa9\x1d\x93Z\xf8\x87\v\x8b\x9bN\xfa\xab\xf4@k\xaf\xa0A\x05\u007f\x9c4\x14=\xfc,\xeaC\xc3.m\x16^]r6\xe2eh\xe4\xaa\x05\xbf-\xf4Ż\xe7'f#\xd2etG}їE\xa7\x98\xb3\x95EN\x8c#\xf7\xb0\r+ƛ\xa8Ab-0\bz\xebJ\x94B\xeax\xdaRJ\x86\xd4X\x1a\x8act\x18\xfdMI\xbb&~e8\xa6\f\xb0 3\xfc\xe1N\xfd\x94VM|4\xfc\xa3\xea\xa4Yʝ\xd3\x12\xfeW-\xe1\xbfR}\x8b1S\x93\xfe\x81\x11\x0e\u007f\xc9b\xbc\x1f\xa8\xd3\x03\xbd\x1d\xff\xf4*\xb8$芼\x9c\x88\xf0s꒳\xb1^\x86\x81\x9c\x15\x81\xab\xf3\x17Ǭ\x83%\xfc{,\x19\x1cP\x88ϴ\x8d\ue42f\u007f\xe6l\xeb\xe7\x8djD\xae\x976\xbbb\xf7s\x89\xb5\x10\xcbe|\xa8\x13\xecʣ?\x93\xa7J\xb5E\xb4\a\x8c\xc9(\xc2щ\xedoj\xda5\x81\xab\xfdq 3\xfc\xe8\xb8vוv\x80?\x189\xec\x1f\xa4Jy\x10\xe1\u007f\x15\xa1\a\xcfZ\xc2\u007f\xbfa7\xde\xf5\x1f;F\xcdD\x84\xbf\x18\xbf\x84\xc2\xfa^\xc4U\x88O\"\xe7U\xe9\u007f\x9c\xa7\xbfn\x88\xf0s\xeaR\xb31^\x86\xa3J\xa1\xa2T\xc5~\\i\x86?O\xedHx\xa1%\x83\xc1\xa2*<\x10۵\xb7\x16\xa3;䋞9[\x9f\xa2]\xdeޣ\xdf+\x17.Y\x81bH\xa8\x85\xdb\xcd1\xf7\xd54\xeb\xf7\xc8Um\xe3\x97V\xa9\xa31\xa9\xb7#\b)=:\x8c\xfe\xa6\xa4]\x02\b\u007f\x1cH\r\xffM\xef\x00\xbeʧ]\xf0\xeb\xea\x1e\x0f\x8cww\x85\xa8R6\x91\xab\xfd\xdaݽ\xbb\x1bzz\x9e\xad\xae={\xeb˱\xda#c\x0f>=R\x8b?\x05\x18\xab\xddz\xf6ʱ\xea\xb3\xe4\\S\xf5ڋ\"PU?\xa5\xbe\xb4\xeaZ\x0f\x96)\xee\x96!\xf5\x95\xa3\x94u\xb7\xcfw\xebg\xd77s\xb4\x03\xcd\x1b\xee\x96`W\xee\xd5 \x9e\x85Sל\f\r\xf9\xfd\xaeF\xbf?\x88\xaf\xe07\x0e\xa1\xd1\xc6\\\u007f\x00\x8d\xba\x06|\xfe\x80u\x17\xa4_\xed\x1fҊ\x17\x17\x1e<\xb8X\x99\xdbq\x83\x9c\r\r~\xaf\xc4\xebۮ\xb4\x93\xddQ\x97\x80/x\xeb]d\xcf֤\xd4w\xf76*\x9dZ\x95\x16\xc5\x1a\xddD[X\xa9\xe4[\x87\xbfY\xc9o\xf6\x9dl\x8c|\x00\xc1,mv\xb5\xf4.\xcd\x0fPK\x8bgtb\xfb\x9b\x9av\t.3N\x84\x00\vRÏ\x02\x83\xdd\xed'\x87\xb4\xb3\xdc\xd0\xf0Ɏ\x93\xc3!K)\x8boWk\x1f\xf3\xd7\xfe\x06\xff\xe7\xb3ݵ\xab\xf7\xbdZ]}\xe4\b.\xfa\xb4V\xfdyD-\xfe\xcd\v\r\xab\x9f\xa5o\x04jV\x14|]h\x9b\xa24\xa3p\xcb|Wa}\xc7<\x97\xbaKq\xedh,(Z\x1f\xddY\xec\xf9\x9e\xfa\"\t\xab\xbb\x8f\xe3\x05J~7>\x05\xe6\xd45'\x87s\xf4\xb3e/n[\xc9\x1d\xcfW\u007fnC\x17\\\xb8,\xb7\x8a:\xfd\x8c|\xce?W\xbby\xf1fU^\xc1\xf2&\xb5.9\x9bZ\\W\\\xb0\xf0$\xd9\x1dtU_\x82\xbe{\xe4\xcc\xd6W\xe5v/\xd6\xf6\x96ȟ\xb7\x03YH\xb0\x05Ԟ\x1fs\x8e\xdcY\xd5\\\x9c[TEg\x9f.\rmw\xe7U\r\xd3K\x8bct\x18\xfdMI\xbb$\x93s\xeb\xaeN2\xde\x14\x00\x02\xb9\xe1\x9f\t\x98\xe7\xd5\x1a\xdb]\xd6\xfbC\b\x88\xba\x96٬L\xe6o\x9b\f\x85\x82\xc3uӼ\xcal\xdb\x1d6]\xaeF\xee\x1bg\xdc\xf4*\xd3\xeb\xb7=\xd4褤\xbf:6\xa3\xde[bw1\x13\xc08>\xfc\xa8\xa5\x98\xff\x1d\xda\xf8\xc3\xdf\x1b\xf9<<\xec\x9e\xe6\a\xccv\xdda2U\x94\xe4\x97\xe4\b\xc2\x1d\xee'Eu\xa6\x039:\xa9\xe8o\x14\xdbQ\x9f\xbcʸ\x16\x00\x10@\xf8\xed\x88?\xfc\xa39\xfa\x91\xe7x\x0e\xf1\xb9\xfd\xac!\xe0ޑ\xaa\x9d1\x93t\x8dN\xba\xdau\bN\v\xbf~\xb5(>\x88\xba\xc2\xd9\u008dyOv\rv=\x99\x97\xd6=\xe8l%]\xa3\x93\xaev\x1d\x82\xd3¯]-\xba\x8d₨\x1b\xc7l\xbe\xe5E\xae\xa2\xe5\xd3<\xe8\xcfZ\xd25:\xe9j\xd7\x118-\xfc\x00\x00D\x80\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\xa3\x03\aX\x93\x00\x90\xed\xc8\r?[ץ2\xee\xcd\xd8MZ\xff\xecy\x991\xa9\xf1\x91G\xe7z\xccL1\x1c\xf0x\xfaEuf\x12\xa9\xe9\xef\xc5\xcawDU2@j\xd6M̝R\xcf\x1aQ\x1d\x9aSt\xcf2=|R\xc3\xcf\xd6u\xa9\x04\xdb/t\n\xe6M\x1b{\x17\xdceLj\x84?\x189\xe591\xf2\x81͗^.}\xa8\xff\xbe;R\xdaƯ\x958\xd1vSM\x92\xfd\xe5t\xe7|\x85\x94\x94%H\x82\xeb\x96<\xd7\xf6\x97\x8b\xaa\xd0\xdc\x1b\xd9H\xf6,\xd3\xc3'5\xfcl]\x97\x8ao \x90\xa9\xf0Ox~\u00984\xb8\xe6\xf9 \xa6\x8c\xe4\xff\xd9\x15\x9d*O\xe9\v\xcel7\xb5$\xd9_^wf\xe8\xe32\x12Z\xb7iЖ`\xf8\x11\xdaI\xf5,\xc3\xc3'5\xfc\x1c]\x17\x1a\xef\bf,\xfc\xfb\xcb\xef2&\rD\xe1ߐ\\\x98\x84lHS\xf8\x93\xeco\xba\xba\x93&\x12Z\xb7i0\xdd\xf0g\x18\xb9\xe1Wa躂\xed7Q\xa6\xc2\u007f\xa7\xf4\x10c\xd2$\x12\xfe\xe7=\xa5\xa7\u007f\xb2\xaa\xe2\xa9ϩ?\xbe\x13\xb9&\xb0\x01\xff\xa7\xfc\xb0Y\xe1\xe7\x9b+V\xfd\x84>Yh\xf3\xe0\xf3\xbd~\xf5\xe7Q\xf5\u007f\xa76T\xac;\xa5\xfe\xfe\xa8T\xfd\xff\xc4ޚ\x05O\xabc2\xf2TMi\xe535\x96vI&vU\x96.yF}\x8b\n\xeeZVZ\xb3\xf3#\xadИ\r1\x17L\x90H\u007f\xd9\xdd!\xfb{\xaf\xc2\x139\x85\xa5F\xe7뽕\x8f\x1d>\\i=\xa2et\x9d=\xa8D\v\xd4\xe8\x18cF\x8fd\x14\xaa\x94\xb5n̥\x85\x97\x94\xbe\xf2زK\x87\x16m\tZzv\xe2\xc0c\x8f\ue720&\x119Pw\xf7.[\xb4\x8b{\xd8\xcfiW\v\xff!\xb5\x8f\v\xbeNp\xf8҂\xe4\xf03u]>u\xf7\x9f\xa9\xf0\x1f(\xfd\x9c1i\x12\t\xff?\xf7\x97z*\xdbN!'Ɂ\x9aX\xb4\xea\xf4;Oy\xb8{~v\xbbZ\xf8\xef\xee\xf5\x9c\xd06\\\x02×\x1e$\x87\x9f\xa5뺁\xdf\r2\x14\xfe;\xa5\a\x18\x93\x04\xc6a\u007f\xf9\"\xf5\xadao\xa5\xf5\xef\xc4a\xf4\x92\xaf\xd5W\a\xaep\xde\xf3\x966'\xfd\xe6\xfd\x96~ex\xdd\xcf\x11\xba蹈\xf0\xcf\xf3Z\v\x9e\x1f\x05\xb5\x13\xa2S\x95\xda\xfemQ\x98n\xd7$T\xf3t\b\xe7\xef\x1e\xfe\x81\xdf6\xd7\xedD\xd4l\xec\x05S\xc4\xdf_^w\x8c\xfeb\x16D\x8eb\xcd\xd1\xe9\xf7|\x84\xafj\u007fB\xb5\xc5\xe9:{P\xa9\x16\x8c\xa5\x11cF\x8c$\x01Y\xca^7\xe6Җ\xedU뼃\xf6\x1f\xb0\xf4\xacF]潚\x8d\xd4$\xd1\xd8\xe6Uj\xdd\xf0:\xfea?\xa7]5\xfc'\xca\xcfG+\xc5;|iBv\xf8\x11\xb2꺂\xed7\xc2\xe1p\xa03\x9c\x89\xab\x1fϗ\xdeaL\x12\x98\xe1ߏX\xe7xD\x98\x0eD+\xecz<\xa4\xaeQ\xf8\xb1\xfdT͏<\xa1\xd0[\xf7\xc2\xe5\xea\xc6ݿN+Y\xa3U\xd8P\x1eY\xee\xe7\xcbj\x9e?\xfdQ\xc4X\xc5\n\xffy\xcfG\xc6\xf4ק\x9e~|\x91g\x1d=\x1b{\xc1\x14\xf1\xf7\x97\xd7\x1d\xa3\xbf\x18\xe3\xd5k\x8c\xceˋ\x10\xbet\xfa6\xa2`w\x9d=\xa8T\v\xc6҈1#F\x92\x80,e\xaf\x1bsi\xcb\xfa\xd5m\x1cD\x87\x9fCtϴ\x0f}Oy\ue453fc\xf7<\xa7q\xe1Q\x9b\xf0\xb3\xdb\xdd\xd9v\xd4c~\xbe\x17\xef\xf0\xa5\t\xa9\xe1g\xea\xban{\xa3\xc8\u007f\xde\xe2\xdd\xf2\x03\x8cI\x123\xfcx;نߨ\xb0.r\x8e\xbc\x93\xaa\x19*\xfd\xe4\x84z\x06\xebQӴY\xff\xcb\u038dZ\vƙ\xfd\xbdӻ\xd6x\x96\xbc\xaeM\xb3\xc2\u007f\xc2c\x9c\x96_[Rs\xf8\xed\x91-\xeb\xe8\xd9\xd8\v\xa6\x88\xbf\xbf\xbc\xee\x98\xfdEī\xd7h\xec\x84\xe7k\xbc\x83\xb6\xec\xba8]g\x0e*Ղ\xb14b̈\x91$ K\xd9\xeb\xc6\\ڲ\x8b\xe8Z\xa9\x1a\xba\xe7\x18=C#\x9e\x0f\xc9I\xb3\xb1\xeb\x9e\x11\xc4hL\xdc\xee\xce%\x8f\xac1\xc72\xde\xe1K\x132\xc3\xcf\xd1uMM\xaa\x8cwLf\xe01\xeb\x87<\x13\x8cI\x92\xb8\xc2\u007f\xfa\x0eUa\xef\xe3\x1fj|MW]ӿe\xf3\x9a\xb7\xf1\xc1\xe9\xfeǵ\x82\x9a\xfdF\v\x98\xebx\x0fs\xaf\u007f\xc1)\xba]\x93K\xe6\xees\xcdFmO\xbf\x8e\x9e\x8d\xb3`\x92\xf8\xfb\xcb\xeb\x0e\xf5\xb6\x14\xfb\xea\xbd\xe3y\xfa\xceG\xab6[\xb6%\xbb\xeb\xecA\xa5Z0\x96F\x8e\x999\x92$D){ݸ\xe1/\xd7CJ\xf5L\xbb\xf8{Z\xddw\x13\x93fc_{\xb4a\xb1\xf9\x9c\x9f\xd3\xee\xce\xcaO\xee,2\xce\xe7\xe3\x1d\xbe4!3\xfc\x1c]\x97FF\xce\xf9\xef\x96\xefgLR\x88¿e\x8b:\xaf~FiT\xb8\xa8\x9f=\x1f}\x8d\xae\xfa\xdc\xf3\xa5\x17=\a\xf0\x8b\xf9\xbcV\xa1?r\xce\x1f}y\xb7ig\xb5h\xcb\x01\xba]\x93в-x\xd0\x0e\xa9/\xc6\x1a\xdc_:b\xd9.m\xe5'\xde\xfeQ\xc5\xe7t\x85\x97=\xcf\xf5\xbf\xbd\xdfC_\x90B\xafU,\n\xafZ\xa0%l\xaf\xe7\xe5\xf3/{\xf6\xaaK\xb8\xa6]H\xd7v\xa9m\x9e\x8a\xb6\xf3\xeal\xef\x91\xedR\\Z\xb0\xe6\xd4\xf9C\xf8t\xb3ͳ\xeb\xd4k\x1b<\x95\xaf_\xa3f\xa3\x16\xbc\xd3Sq\x0fY\x89\xbf\xbf\xcc\xee\x90\xfd\r}02R\xbe\u007fd$H5\xf6Q\xf9\xa5\xf3#wc\xf6\\\xac\xaes\x06\xd5l\x81\\\x9a9f\xd4H\x12\x18\xa5\xecuc/\xed\x9f\x1e=\x11\xea/\xfd$\xf4ܖ\xcf\xc9AE\xe5\x9e\r\xfd\xa7W-\x9a@Ԥ9P\x9fT<\xd6v\xf4QO\xe9[\xff\x84[\x89\x1djv\xbb\xf7F6\xee\xff \x14ڹ\xec\xd2W\x89\r_z\x90\x1a~\x8e\xaeK-ǧ\xfc\xc7mfL\v_U\xeceL\x12\x98\xf7\xf6\x1fP\u007f\x96~\x82?\x99\xb5\\\x19\b\x1dzt\xc1\x96k\xc8R\xe1\xe2\x96\xcaE\x9b\x8dk\xba\x11\xae/:\x8a^\xaf\xd0\xde\xf4\xc3'\xd6U\xac;\x156\x96\xa0\x9d\xcf\xfe|s[M\xe9\xb2-\xefQ\xed\xd2L\xecz쑍ok\r\xac*\xaf\xdcuzU\xe9\x16z6r\xc1\xa7+<1\r$\xd0_fw\xc8\xfe^\x8f\x8c\xcei\xaa\xb1\x0fJqY\xe9f\xebY+\xa3\xeb\x9cA5[ \x97f\x8e\x195\x92\x04F){ݘK\v\xab\xfb\xd9\xfeG<\x15\xfdx)Ġ\xa2\xf2\x9f\xec_\xb4l\xaf\xf66AL\x12\x035\xb1\xf3њ\xc3o\x95\xea\x8d\xc5\f5\xa7\xddSxu\xae\xeb7#$6|iAn\xf8g\x16\xafx\xfe\x991\x99=\xbc\xed\x89\xdd\U000e76ef*\x0e|\x15\x0e\u07fb\xbe\xeb\xd1d\x97=\xfd\x16R\x01q\x8f`<\xb7\v\xa6j\xa8宼\x93ß\xdd\xdf\xe5\r\xbf\xb5(\x03+\xf5\xb6~_\x00\nWZ\x0f|\xe2e\xfa-\xa4\x82\x84\u009f\xba\xa1\x96\xbb\xf2N\x0e\u007fvs\xb7\x92\u007f\x9fo\xfa\xf80\xf2)\xd5'\x1e\xc6\xd5Ƹ\x98~\v\xa9 \xa1\xf0\xa7n\xa8\xe5\xae<\x84\x1fH%\xe1\xfd\x15\a\xfa\xdf\xeb?P\x91\xf4\xaep\xfa-L\x1f\xfd\x12\x9cuR\x02rW\x1e\xc2\x0f\xa4\x96w\x9eZV\xba\xec\xe9\xe9\x1c\xb5N\xbf\x85\xe9\xa2]\x82\xbbc\x9d\x94\x82̕\x87\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0\x03\x80C\x81\xf0g\xf9-\xfe\x00\xc0Cn\xf8\x99\xba\xaeP\x87\xf6\x10\xaf\x8e\x14\xdd\x1e\x9d(6\xba.\x93\x03\x122rJ\xa0\b\x11\x12\xb7\xe5+\xf8\x8e畑\x91\x9f\xaf\xab\xb4>\xf2K(\xe6\"+\x9c֟c9\xc3H\x8d\xae+-\xdb\x18%\xd6n\x9aG]j\xf8ٺ\xae`\x06\x9e\xdcib\xaf\xeb\xe2٭\xd2\xf4\xa8\x15\x91\x1fHH\xfc\x96/\xfd\xa1\\_WXc\"\x14s\x91\x15\xfaS\xb1\x8bM\x03\xe2/\xe2\xc5A\x9a\xb6qB\xed\xa6wԥ\x86\x9f\xad\xeb\xcal\xf8\xedu]Iڭ\x92e\xda\xe1\x8f_\xab\x15y\"\xdf:\xeb\f\xc2\x16\xc8\n\x97<\x97\xf8\x153\x88\x94\x8d%\x95\xb4\x8c\xba\xdc\xf0\xab\xc4\xea\xba2\x1a~;]\x17\xc7n%\xf6,\x91\x02\xad(\xcf{\xe3\b\xca\xca_\xc1?\xb5Ae\xb6Kl,\xbe\xe2,v\x1b\x9307\v9\x0eD\xf8\ts\x17\xb3]\xbe\xa3+\x89QO\x00\xa9\xe1g꺢\u007f\xf4\x9fdϔN\x84\xba.\x96\xdd\nc\xefY\"EW&d\xf8-\x93\xba\x17\xca\f?!\x99b\x8b\xb9xΫD¯\xed\xebv\xadB\xf1\xb5`\xfb2䬱YJ\t\xca\b\f\x1b\x17\xb9Bf\xa9P|\xc61\x8d\x99\x83\xcan\x97\xd8X|\xc5Y\xec6&`o\x16r\x92\b\xbfi\xeeb\xb7\xcbwt%3\xea\xf1#3\xfcl]\x17\x1a\xf0i\x93\x83>\xee\x8ciC\xa8\xebb٭0\xb6\x9e%Jte\xa2\xd5=\x1a\x13~\xd3\ve\x86\x9f\x90L\xb1\xc5\\<\xe7\x15\xcb\xf2\xc5&\x12\xfe\xd3\xf8uG\xf4\x8c\xdb\x02\xfd2\xb4T`\xaf1QJ\t\xca\b\x8c\xd74\xb9Bf\xa9P|ƩP\xae}f\x8b\a\x95\xdd.\xb1\xb1\xf8\x8a3\xdb\xf0\xb37\v9\x0e\xe6\xa0\x12\xf2\x1ev\xbb|GW\x12\xa3\x9e\x002\xc3\xcf\xd1u\xf9\xb4]\xfeT\xc7\xfb\xb6\xf3\xa6\x03\xb1\xae\x8be\xb7\xc2\xd8z\x96(ѕI\xc5a\xf5\xfdocL\xf8M/\x94\x19~\xc2\v\xc5\x16s\xf1\x9cW\xa4\xe5\xeb\xcek\x13\x88O\xa4\xd6\xdeG\xc2TϘ\x9e0\x8c\xf12dU`\xaf1QJ\t\xca\b\x8c8\x92+d\x96\n\xc5g\x9c\n\xe5\x8f\xe1s\xfe5[x\xed\x12\x1b\x8b\xd3\x02\x12\x84\x9f\xbdY\xc8q0\aU\x18~\xbe\xa3+\x89QO\x00\xa9\xe1g\xeb\xba\x02\u07be\x9b\x81\xcb\xed\xbe\xa4\xaf[$\x8dHׅ\xb7M\xac\xddJ\xe8Y\xa2DW&\x9b+_\u007fm#\x16\xd0\x1ea\x10\xb7V\x8b\xc4\xea\xf3\xd2\x1e\f\x1dg\xdd\xf8\xe0\x8b\xaebW\xfe\xde\xc8FF]n\v\xec5\xe6\xe8\xd0b+X 6K\x14b\x8d\x93[y\x94\xd8f\x89\xbfn*z\x96\x16\xa4\x86\x9f\xad\xebB\x03\xed\x01\xfc\xc6pC0wz\xb0\xd7u\xdd\xf3\x9c@\xc6\xe3Q\xa7\xfd\xb8\x11\xd3\xc9\x11\xbfV\x8b\x86V\xfa\xc4\u007f\xd4Teš\x01c\xe9Ш\xb5`\xcffl\x16\xf6\x1a#\xe6\xca\x13\xf0Ɨ\xb94a\xcf\xc8\x16\x8c1\x13\xf6\f\u007fl\xf1Σѣ~\xe1k'\x1dH\r?[ׅ.\xb7_\x0e\x8cw\x9e\x94\u007f\x00$\xd2u闕\xaf\xe1\x03\x13\x8e\xbf\x89r=\xd9\xfa\xb1\xa2w\xf8]\xd3V\x93e_B\x97\x16\xac9u\xfe\x90v:OحL\x97\x16\xe1\xf3\xfa\xa4ⱶ\xa3\x8fF\f[\x06\x84C\x8a\xa8+\xb2f\x11\x15\x88u#\xedV̕\xbf7\xb2q\xff\a\xa1\xd0\xcee\x97\xbe\xa2Z3UYB\r\x98YJ\x0e*\xb1\x16\xecو\xcd\xc2^c\xce\xca\x130Ǘ\xb9\xb48zf\xb4\xc0\xf6\x8fqz\xa6\xf2\xf2\xe3ƅH\xfb\xd7N\x9a\x90\x1a~\x8e\xae\v\xdd\xee\xed8yY~\xf6E\xba\xae\xd0\"턾t\x02\xf1\xfdM\xa4\xeb\xc9֏E\xdf\xdbϲ/\xe1\xcf\xf9\x1f{d\xa3fi'\xecV\xa6K\x8b\xf4yM\xec|\xb4\xe6\xf0[\xa5\\\x87\x14QWd\xcd\"*\x10\xebFڭ\x98+\u007fJ[\x19\xac\xfd:J\xb5f\xaa\xb2\x84\x1a0\xc4ԡ\x11k\xc1\x9c\x8d\xdc,\xec5\xe6\xac<\x01s|\x99K\x8b\xa3gF\vl\xff\x18\xa7gxFs\xf3ٿv҄\xdc\xf0\xcf,R\xa9\xeb\x02\x80\x84\t\x95'\xef\xd9K\x05N\x0e?|\x97\x17\xc8(\xfd\x95q\xde\x1d\x96&\x9c\x1c~\x00\xc8\x1cm\xef\xa1\x1f\xb5\x89*\xa5\x17\b?\x00d\x80\x90g\xc3\xf3\xcb$[y\xad@\xf8\x01 \x13\xb4Ul\x99\x10\xd5I3\x10~\x00p(\x10~\x00p(\x10~\x00p(\x10~\x00p(\x10~\x00p(\x10~\x00p(\x10~\x00p(\x10~\x00p(\x10\xfeYA\xef\xe2I\xea\xffS\x8bm\x9e{\x04\xdfY\x00\xe2Bn\xf8Y\xba\xaeP\xa7W\xe7\xb8`f\xe9lSr\xbaEu\xa6K\xa3\xa2(y7E\xb5Z\x94fkI\xceAfMd\xeb\x1fK\xce\x16\x15\x97K+V\xa0\x15\xd7l@\x06\x91\x1a~\xa6\xae+\xe4\x1d\r\xa8\\\xf6^\x15\xcd.\x9b\x80?ך9\x9d\xc1Qfq2\x04\xfc\xfeVeHP\xa95\xa7#\xa6\xcc7\xb7\x95Q\x13c\xe3\x1fK\xcc\x16%ti\x91\xc4\n\xb4\xe2\x9a\r\xc8 R\xc3\xcf\xd6u\x8dk\x0f\xef\xed\xbc \x989\x13\xb8\xd8\xe1_X\xcf,N\x92aQ\xf8o\xbb\x9a\x18\xa5{\\\x01F\xa9\xc8?F>PJ\x84ХE\xc0\x14h\x89g\x032\x89\xd4\xf0\xb3u]\x1a\xbe7\xe4?\xc9G\f'\xfceu\xcc\xe2$\x11\x86\xbf\xb1\x88\xa52\v\x1652JE\xfe\xb1D\xc2/ti\x110\x05Z\xe2ـL\"7\xfc*\xb1\xba.\xcc\r/}AK\x02\xa1\xc2ܦ\xe2\xa2\xc1\xed\xee*|\x16RW\xe4*^\x89O\xaf r(\x1f*+\\\xa9\xd7Я\xb4y\x95)\x1c\xb5q\xf5\x00\\?@1\xc2_?/\x84)V\xdf\x13\x02E\xf3\xb6y\xdfgH\xe3#\xdcV\xa2ܶ\xfc%\x1a~\xa21\xe4\xc2?\x9a]Zyot\x8e/\x1b6\x1d;\xfb\xe9\x83o#\xf3\x05\xb4\xb7\t\v\"\xff\x98\x11~\xd24f\n\xa9^^\x84p\x90\xb5'\b\xb3]Z&\x94\xfb\x8b\x1d~\xd3\xdc\x05\xcc@\xa4\x86\x9f\xad\xebR\xe9\x90/\xecP)\xeaC\xc3j\xbep\xf8\x87\v\x8b\x9bN\xfa\xab\xf4\xf0\xa37\x94\xc8G\x0f\xfa\x05?\xbf\x82?\xda[\xb1\x03\xf5\xb9\xf5l\x1b\xe1/\x8b\xe4\x19\x1f1\x04\xbdu%\n>\x85\xe0\xe0\xf7\xe9\xf8\xad\u007f\x88\x86\x9flL[p$\xfcC\xc6\xe1\xfd\xfd\xb3/l\xad^\xdb\xf3 :_\xec\a$B\xff\x98\x11~\xd24fj)Nx\xbe\xc6;\xf3\x98=?\xa1\xf20\xa0\xdc_6\x17\xfc4s\x170\x03\x91\x19~\x8e\xae\v_\t\xb0\xee\r\xa5@\x84\xbfd1>\xec\xaf\xd3\xc3\x1f(\xdaS\xac_\x88t\xed\xc0?\xdb\x15\xfcG\x9f;\xd4\x18\xb9\xbe\xae\x85\xbf\x1d\x1f\x98\xcf\x1b\xd5Pk_\xc6\a\t\xc1\xae<ާ\xef|\xa2\xe1'\x1a\xa3\xc2\x1f\x8c~\xe6p\xebU5\xf6\xf7\xcf՞\xd1\xff\xdb\xec\x8a\xfd\x10@\xe8\x1f3\xc2O\x9a\xc6\xccl\xdf\xf1<}\xe7\xa3U\x9b\xf57i\x96K\x8b\x80r\u007f\xb1\xc3o\x9a\xbb\x80\x19\x88\xcc\xf0st]\xf8\x94?#/\x0f\"\xfc\xc58\xce\xe12-\xfc\xa1\xc5{ГK\xb5\u05ff\xab\x18\x9f\xb4\x96Ti\xc5n\x9f;r\xe5\xadJ-\x98T\xd4S\x95>E;_\xd9sP\x8d\xa2\xa2\xad\\\xd56\xebR\xa2\xe7\xfc\\\xa2\xe1'\x1a\xa3¯\x9e\x0f\xe8a쩾\x82\u007f\xed>\xa2\xfd/\\\xb2\x02Y\x11\xfbnj\xf0\x93\xa613\xdb\x1fz\x96x<[\"\x17\xeeX.-\x02\xca\xfd\xc5\x0e\xbfi\xee\x02f R\xc3\xcf\xd1u\xa1\x1b\xdeL|\xc8\u007f\xc3\xdd\x12\xecʽ\x1a\xac\xaf\n\xa8ѭk=X\xa6\xb8[\x86B\x17\xb6\x15\x06\xd0\xed\x82\xed\x17\xf0G}\xca\xf2\xa1\xc1\xc5n=\xbdM\xf3\"G\xfdj*[z\x97\xe6\xe3k\x94MJ}wo\xa3҉ß\xdf\xec;\xd9\x18\xbd2o\xb2R\x89\r\xa9\x89v\x87_\x8b\xdfO5\x16\xf0\xe76\x0e\xa1\xd1\xc6\\\xad\x18\xdd\xcc\xd1O&z\xaak{\xde}\xf7\xa5\xea1\xed\u007f-J\xec}\x86\"\xff\x18i\x8b2Lc\xa4\x90\xea\xa3\xf2K\xe7G\xeeF.Z\xb2\\Z$\xa6\xf3\x8a\x10h\x91\x10\xe6.`\x06\"5\xfc\\]\x17\xe3\xb2u\xda\t\x17*\xca\xf1\x02%\xbf\x1b\x9fe\x87[\xe6\xbb\n\xeb;湪\xfaԳ\xee\x1dh\xbb\xfaS\x8dqIs]A\xd1\xfa\xc8'\x117\x95'#\xb3\x86\xb6\xbb\U000ea1b5ɾ*\xb7{1\xde\xe7wV5\x17\xe7\x16U\xc5d?\xfa9?\x87\xc6ȉ\xbev\xcf`\xb4\xb1mjA\xeex\xbe\xfaS?\x8e\xd8\xf3=\xed\xec\xfe\xec\xee\x9eM\xb5\r\xbb\xf5\xec\xfb\xf3v\xc44&\xf2\x8fѶ\xa8\xa8i\x8c\x14R}P\x8a\xff\\\xbaY;\xe9g\xb9\xb4H\f\xe7\x15)\xd0\"!\xcc]\xc0\fDn\xf8g5AWl\xb2%\xb1\xdde\xfd8\xa4\xcb\xd5\x18{\xb44m\xff\xd8W\x15\a\xbe\n\x87\xef]\xdf\xf5(\\\xa0w\x00\x10\xfe\xb8\xe9v\xc7\xc6M\x16-Ŗ\xaf\xf4\x16\xb1\xbe\xd47\xed\xef\xf2\xbe\x1d\xb1Ɔ+\xcf\vj\x02Y\x00\x84?>\x9a\a\xd1R\xf6\x8d\xfe\xd9ć\x91\x0f\xf9>\xc1\xf7\xfa\x00\xd9\x0e\x84?.\x82J\xd96\xe6\xd7k\xb2\x8b\xf0\xfe\x8a\x03\xfd\xef\xf5\x1f\xa8H\xea\xb8\x01\x98e@\xf8\xe3\xa39\xbfꆨN6\xf0\xceS\xcbJ\x97=\r\a\xfd\x8e\x00\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\xc2\x0f\x00\x0e\x05\u009f}L\xfb\x16\u007f\xc0\x19\xc8\r?K\xd7EMf\b\x19b.\x84.\x94\xe5/\x1f\x12U\x9a>6\xba.\x11\xd30l\xcd\b]םRϚ8K/V2\x9e>\x12%\x03]\xcf\x04R\xc3\xcf\xd4u\x91\x93\x99B\x86\x98\v\r\xb8ֿQ\xefJ\xff3\xcamt]\"\xa6a\xd8J@\xd7\x15Հ\xa5\x81k\xfb-\x8f\x1b▞\xaf\xb0\x89\xf74\xc6a6!5\xfcl]\x171\x999\xd2/\xe6\n\x15\xe2's2\xa2\xef۩v\t\x1ca\x1a\x93\x1c~\x96\xae\x8b6wɄ\x90b\xa5_\xcc\xe5\xd6u\x9bMn\xebl)E\xa0\xeb2\xc5\\\xc4㸗\xedUw\xcd\xef\xa0\xfd\xb8\xbai\xd8\"}^h\x83\xe7G\xc1\xc8Y\x9bAB\xba\xae6\xbc\xa7߫?M\xdc8\xec'\x16q\xaa\x12\x0f\xe7\xa9E\xf4\xa0\xb2\x9db\xa1\x9a\xa7q\xbb\xfd\xf7\xa8>l^\xa5\x16\x86וӳ\x11\xa5\x16\x16D\x0e\xec\x89!!p\x84iLv\xf8Q\xac\xae\x8b6wɄ\x90b\xa5_\xccU\xb2^\xfbU\x9f\xde=\xbf@\xd7e\x8a\xb9\xc8\xf0\xf7\xabA\t\xa2\xc3\xcf!ҰE\xfa\xbcІ\xf2ض\x12\xd2u}\xeeQ\xf7\xff\x8f\\Ҋ\x8d\xf0\x13\x8b\xf8|Y\xcd\xf3\xa7?\xb2\x0e*\xdb)v\xde|Șه{\x9e\xd3x\xeah95\x1bYj\xc1\b\xbf9$\x04\x8e0\x8dI\r?S\xd7e1wɄPc\xa4_\xcc\xf5\x84~\xe9 \"\x03M\x13\"]\x17a\xdf \xc2\u007f\x11]+E\xe8\xe5碥\x9aa\x8b\xf4y\xa1\r\x1bb\xdbJL\xd7\xf5\xf4atq\x91>\xa8F\xf8\xc9E\xdc;\xbdk\x8dg\xc9\xebt\x03<\xa7\x98\xf1\x1ea\xf6\xe1\xbag\x04E+\x98\xb3\x91\xa5\x16\x8c\xf0\xb3\x84$\xce0\x8d\xc9\f?[\xd7E\x9b\xbb\xa4B\x86?\xedb.\xafv pSI\xeb\xd5~\x91\xae\xcb\x1a\xfe\xa3\xd1\xf0\x97G\xc3o\x18\xb6H\x9f\x17\xf3\x02}b\xba\xaew*C\xfb#\x0e!C\x03F,\xe2:\xbe\x1b\xe9^\xff\x82ST\x03l\xa7\xd8%b\xcfo\xf4\xe1k\x8f6\xabviϜ\x8d,\xb5 \b\xbf\x13Lc2\xc3\xcf\xd1uQ\xe6.\xa9\x90\xe1O\xbb\x98+T\x88\xdfH\xea\n\xd3yiC\xa8\xeb\"^\xe9\x15\x87շ\xe3\x8d1\xe17\f[\xa4ϋ\x19\xfe\xc4t]\xa1\xcaw\x1eՏ\xfaM\r\x18\xb1\x886\xed\xe4\x1dm\xa1\x8fV\xd8N\xb1в-x\x10\x0f\x1d\xa2\xfa\xb0\xb1F=D\x9fXPN\xcfF\x94Z\x10\x84\xdf\t\xa61\xa9\xe1g\xeb\xba(s\x97D()V\xfa\xc5\\\xa8\xcfU\u007f\xb2\xde\xd5gWe\xba\bt]\x94wks\xe5\xeb\xafm\xf4\x94\xbe\xf5O\xff\xf4\xe8\x89P\u007f\xe9'\xa1\xe7\xb6|\x8eHÖ\xe1\xf3\n_\xd3.\xd0ǜ\xf5'\xa6\xebz\xf9\xf1\xe8ռ\xa8\x06\x8cX\x84\x1a\xfe\x8a\xb6\xf3\xea\xe4{t\vL\xa7\x18\xba\xb4`ͩ\xf3\x87\xb4\xd3y\xb3\x0f\x9fT<\xd6v\xf4Q\xbcBd\xbbd\xa9I胑\x91\xf2\xfd##A\xae\x8a\xcc\x11\xa61\xa9\xe1\xe7\xe8\xbaHs\x97D()V\xfa\xc5\\\b]X\x9aW\x96\xd6\xdb\x18E\xba.ʻ5\xb1e\xc1#O\xbd\xa2N.\xf1x\xfa\x1f\xf1T\xf4k\xa7֤a+\xea\xf3\xfa\x888\xf9'IL\xd75aȾ\xa2\x1a0d.\x02\xfd|s[M\xe9\xb2-\x96쳝b\xf8s\xfe\xc7\x1e\xd9\xf86\xfe\xbb\xd1\a\xb5p\xe7\xa35\x87\xdf*\xd5*\x18\xedR\xa5\x06\xd7#\x17\x05NsUd\x8e0\x8d\xc9\r\xff,!\x83b\xaei1m]W:\t\x95\xc7$\x1b\xc8,\x10~\x06\x99\x14sM\x87\x19\xfd]\xde\xfeJ\xe9\x17t\x01{ \xfcV\x9c!\xe6\x92L\xdb{\xe8GN\xb8[~v\x01\xe1\xb7\xe0\x101\x97\\B\x9e\r\xcf/\xcb\xea\xfbef%\x10~+N\x11sI\xa5\xadb˄\xa8\x0e \x1b\b?\x008\x14\b?\x008\x14\b?\x008\x14\b?\x008\x14\b?\x008\x14\b?\x008\x14\b?\x008\x14\b?\x008\x14\b\xff̾#\x1e\x00҆\xdc\xf0\xb3u]\u1afd\xed'3vW\x1d\xdfn\xf5vi䛟\xa5o\xcb\xf57\xf1\x97FH\xb1b\xfdXl\xf8\x8d\xd9\x1a\xab\xf8\x15\xe2.ݯ\x0e]ńM\x05\vlٖ\x90\xf4\xce\x16ז'\xb6\x85x5g\x0eR\xc3\xcf\xd6u\x85}\x1d\xa3\xb7/\xb7_\x16͝&\xf8v\xab\xd7=##\xa7<'FF<\xaf'\xefo\x12\xba\xa9\x18\x15\xf8K#\xa4X\xb1~,6\xfc\xc6l\x8dU\xfc\nf)\xd9uF\xdd\xcf\xf1\xf0}`S\xc1\n[\xb6%$-\xb3E\xd7-\xae-Ol\v\xd1j\n_\x0f\x12\x91\x1a~\xb6\xae\xeb\xfdv\xac\xeb\xb8ٞ\x99o\xd3\xd8حN\x94\xe2\xe7?\xab\xafފ\x13\xd1':&\x8e\xd0MŬ\xc0Y\x1a!\xc5b\xfa\xb1\xd8p\xbb.4\x8fM\xb2]\x17\"\\7*\xfcq\x90\x8e\x14\xf3\xb1\x9dmC\x02\xe1O`[\xc41f\xf2\x90\x1b~\x95X]\xd7I\xfd\xd1V\xbd>\xc1\x9ci\xc1\xcen\x851^\xbd\xe5\x87M\xab\x93)\x83\"\x89\x8a\xa3L\x13\x16\"\xdcT\xcf{JO\x1cxL3@\xb1+P\x18\xb6(\xa2.!Ţ\xfdX\"\xad\x16S=e\x1a\xab8\xaa,\xb6\xd2\xca,%\xbbN4\x16ܵ\xac\xb4fg\xf4\xf1\xba\xd1\xe1#*\xac\x89̷\x19\xffG\xa0\xd5\"\a\x95\xad\xd5b8\xba(\xff\x98\xd9\x1d\xaa\x05\xceҢP\x9bE\xb0\xe5\xc9ma\xae&\xb5-\x8c\xf1\xe5m\xee\f!9\xfc,]ׅN\xed\f\xa0\xe3\xa4\xfd\xac\xe9\xc1\xcen\x851\xc3\xefY\xd3\xff\xce\x12\xedm۔A\x91\x18\xe2(\u0084E\xb8\xa9\xb0\x17\xaa浶\x9a\x8aO8\x15(\f[\x14Q\x97\x94b\x91~,\xa1V\x8b\xad\x9e2\x8cUs\xf8\xcc\n\xf8\xc1\x99##\x1b=\xf8\x11\xfdB\xad\x961\xa8\x1c\xad\x16\xd3\xd1E\xfa\xc7\xcc\xee\x90-p\x96f@\xad\x9bh˓\xdb\xc2XMr[\x98\xe3\xcb\xdb\xdc\x19Br\xf8Y\xba\xae`\x87o2\x14\xe8\xf5v\x8b\xe6M\x03\x02\xbb\x15\x19\xfe%_\xab\x1b\x1f[\x9d(\x8f\x95\x01)\xaf\"\x9f\x06M\x1c>֨\xeb}\xaff#\xb7\x02\x01a\x8b\"\xeb\xb2\x0e\xfb\x85Z-\xbez*\xf2\xf4j\xb6*\x8b\xa8`QZEK\xe9\xaeGJC\xfd\xf8\xad|]\xe4i\x9f\xe4a\u007f\xa4B\x9b\xba\x1b\x0e\xef\xd7D{B\xad\x165\xa8,\xad\x16\xdb\xd1E\xf8\xc7\xc8\xee\x98-\xf0%^\x06\xc4v\x13ly\xcba\xbf9:\xd1mA\x8d\xaf\xa3\x0f\xfbQ\x8c\xae\vM\xf9ԃ\x80!_\xafh\xc64 \xb0[\x91\xe1\xc7o\rZ\x06)\x8f\x95\x01)\xaf\xe2\x84_\xfb\x1cQ3@\x89\xc3oڢD\xe1\x17j\xb5\xf8\xea\xa9\xc8딭\xca\"*X\x94V\xb6\xe1G_\x9fz\xfa\xf1E\x1e}4X\xe1W\t\xed\xd2R$\xd6jQ\x83\xca\xd0j\xb1\x1d]\x94\u007f\x8c\xe8\x8eт\x8d\xc4ˀ\xd8n\x82-\xcf\r\u007ft[P\xe3\xeb\xd8\xf03u]\xda\x1f\xa6¨S\xbe\xabOh\xb7\"\xc3od\x90\xf2X\x19\x90\xf2*N\xf8\xb5W\x85f\x80\x12\x87\x9f]\x97\x15~\xa1V\x8b\xaf\x9e\x8a\xbeN\x99\xaa,\xb2\x02-\xb6\xb0\r\xff\xb5%5\x87\xdf\x1e\xd9b\x17\xfe\xd03\xa5\xdac\xb7\xc5Z-ޠFa;\xbaH\xff\x18\xd9\x1d\xa3\x05\x1b\x89\x97\x81e\xbb\xd9lyn\xf8\x8dmA\x8e\xafS\xc3\xcf\xd6u\xa9/\x06%\xd4j\xc5\f\xaa%\xaflG\x17\xa9 \"\xbbc\xb4`#\xf12 \xb6\x9b`\xcbs\xc3\x1f\xdd\x16\xd4\xf827w\x86\x90\x19~\x8e\xae\xeb\x86wR=5:>(\x989\r\b\xedV\xcc\xf0S\x1e+\x03R^e\x9a\xb0\b7\x95z\xee\x88/p<\xbe\x85[\x81\x80\xb0E\x91uY\xe1\x17j\xb5\xf8\xea\xa9\xe8Y8S\x95ET\xe0\x85\x9f\xeaz\xa4\xb4\x06\xf7 \xbc\x8e\x1f\xfe{\x1b*\xf0~\xf7\x8a~aB\xbb\xad@\xa0\xd52\a\x95\xa7\xd5b8\xba¤\u007f\xcc\xec\x0e\xed*#\x97v\xba\xc2c\x1d\u007fs݄[\x9e\xdc\x16\xc4j\xea\x13ڶ\xa0Ɨ\xb9\xb93\x84\xdc\xf0\xcf,$ۭ\xca\xdb\x100#y;\xf6\x83\x10G\xe0\xe4\xf0K\xfe./\x84\u007ff\x12~k\x91\x84\xad?\x13qr\xf8%\x03៙ܭ\x8c\xbdU\xdb\x19@\xf8%\xa1_8\x02\x80\x99\x03\x84_\x12څ\xa3\x99\xf1\xf1.\x00h@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8e\xdf\xe2\x0f\x003\x04\xb9\xe1't]\xa4\xa3+\xd0\xdbї\x81\xe7\xf8\xe8\xf0u]\x16R&b\x8a\xcb\x00\x95\x02L!\x15\xd1\xf5$\x84_@\x96\"5\xfc\x84\xae\x8btt\x05\xda\xfd\xb7\xfd\xed\x99J?_ׅ\x84B\xaa\xe4\x88\xcb\x00\xc5$Aד!\xa4\"\xba\x9e\x84\xf0\v\xc8R\xa4\x86\x9f\xd0u\x11\x8e\xae\xf0q\xfc\xe8\xce\v\xc73\xb3\x0f\xb2\xd1u\xa1x\x84TI\x91\xec\x17\xfc\x12u=\x19O\xbd2\xba\x9e\x9c\xf0\v\xc8J\xa4\x86\x9f\xd0u\x11\x8e\xae\x1b\xed\xf8\x15\x18lό\xa7\xd7Fׅ\xd2\xf6\xac\xd5dßhwb\x9fO\x9b\x9c\xf0\v\xc8J\xe4\x86_%\xa2\xeb\"\x1c]\x03\xfa\xfb\x80/\x03O\xf0\xb4\xd7u1\x85T\x94\f\x8am\ue88dU&\x13\xbb*K\x97<\x83\xdf`L\x03\x94Y\x97\x14<\xecS\xbaE\xb5\x01`\xe6 7\xfc\x1c]\x17B\x83\x19x\x8cO\"lSr8\xc1\xeeV\x8c/#\a\xf4\xf0\xf3\xeb\x02\xc0LBj\xf89\xba.\xfc\x87a\xfb93M\xc0\x9f\xdb\xcc\xfeKl\xf8\xb9u\aG\x99\xc5\x00\x90\x19\xa4\x86\x9f\xad\xebR\xe3\xd2=\xd3Ï\x90+\xee\xf0s\xeb.\xacg\x16\x03@f\x90\x1a~\xb6\xae\v\rz\a\u06dd\x10\xfe\xb2:f1\x00d\x06\xb9\xe1G,]\x17\n\x05\xa3\xe2\x0e\xa9t+\x8aҌ\x9a՟\xdd(XW\xe4*^yU-\xbd:WQ\xf6\xdc\\?/o9\xfd\xc1\x9dk{c\x91{\xe5MF+\x8c\xf0G\xeb\xfa\xd4ƛ\xf4E\xe0IL\x99V\xa3sq\xfe\xfc\x1d\xb4f\x03\x00$#9\xfc,]\x17&\x13\xe1\x0f\xfa\v\xf6L\xa2\xc9=n\u007fPM铃\xdd+s\x86\U0007314f\x17\xcf/(ޱ\xde\f\xb5\x86K)\xeb\xea*\xcb\x1b\xb7\xb6\xc2\f\u007f\xb4n\xf0B\xf16u\x11\xcd\x05\xfe`\xf0\x82\u007f~\x95\xdf\xef\u05eel6\xe6l\xf7\xb5\x16\x96\xc9\u007f^1\x00\x98H\x0e?Kׅ\xc9D\xf8\xd5\f\xe2\x93\xf0\xfaF\xf5G\xb0\x1b\xbf#\x95=\xa1\x15\x97)Kc\xf4W\xc8U\x82\xef䙿\xd8\xda\x063\xfcf\xddf\xbc\xa7_ߨ\x15\x1b\x87\xfd>\xa5C\xfd9\xact!\x00\xc8\x1c\xb2Ïbu]\x98̄\u007f0/\x88\x82y\x9aId\xaau\xf9\xbc\x82\xc81y\x99\x8b\xf1(aW\x13\xfe\xe9U\xa6,\xe5\xcc\xf0\x9bu\x03\xca8\n\x15\fh\xc5F\xf8\xeb\xe7i\xf7\x03\x167\"\x00\xc8\x1cR\xc3\xcf\xd6ua2\x13\xfe\x90\xfb$\xeau\xe3\xce\f\x17\x167\x9d\xf4WE\xc2_ƨ\xab_\xc4\xf3+֏\xeb\xf8\x17\xfc\xf4\xba+v\xa0>\xb7~\xf9\xc0\b\u007fY\xe4\xfc\xff\t\x04\x00\x99Cf\xf89\xba.Lf\u008f\xb6?\x81\x9e؎'J\x16\xe3\xa3\xfc\xbaH\xf8YW\xe5];\xf0\xcfv\xc5z\x95\x8e\x19~\xa2\xae\xcf\x1dj\x8c\xec\xe1\xb5v\xb1\x9cd\xfd\xbcQ\r\xebQ\x04\x00\xc8Df\xf89\xba.L\x86\xc2?\xe4\n\xb8\x86\xf0D1\xcee\xb8\xcc.\xfc\xc5\xf8<\xbe\xa4\xcaZ\xce\f?Q7\xe4\xf6\xb9#kY\xa5\x16L\xe2:}z\xc5=\a\xad\x8d\x01\x80D\xa4\x86\x9f\xa3\xeb\n\x05\x02\x1d\x83\x81I\xd1\xdci \\\xb4\xbcH;\x05iV\xeaZ\x0f\x96)\ue5a1АvU\xfe\xb6\xb5\xaaKY>4\xb8\xd8\x1dSξ\xdaO\xd4m\x9a\x179\xeaGͮ\x96ޥ\xf9\xb8z\x93R\xdf\xddۨtZ\x1b\x03\x00\x89H\r?G\xd7u٫\x91\x89\x8f\xbd[\\-\xda\xefp\xcb|Wa}\xc7Q\x15\xc0\xd1H\r?[\xd7E\x94Jgi\xa1\xb71/\xce\x05\xfb\xf2g\x97Y`X\x81\x87\xa1\x03vH\r?[\xd7E\x94\xcafJiE\xe18\xb3?뮞\r+C\xa2*\x80\xa3\x91\x1a~\xb6\xae\x8b(\x95\xcdMev\x1d\xc9'\x04\x84\x1f\xb0Gn\xf8\x11K\xd7E\x94J%\xe4V4vh\xffk-\xcb+kU\u007f_\x9d\xab({n\xae\x9f\x97\xb7\x9cz\xa0h0OQr\x8e3Z1\xb9]\xe7\xce-\\\x11\xf3\x16\xd6Q\xe8ſ\x02\x05\xfaҔ\x02\xb2\x06\xb9\xb4`]\x91\xabx\xe5U\xb5t\x9b\x92\xeb\xdd1?o\xb9Vsj\xbd\xbbx\xc7\x0ew>~\xc4a\xe7\xe2\xfc\xf9;\xacG*c\xfb6ծݷ遥\x18\rB\xf8\x01[$\x87\x9f\xad\xeb2J\xe5\xf2\xbe\xbfKi\xf6\xfb\xb5\x885\xba\xf6\xf8\xf6\xb8\xd6\xe3g\v\x1f/\x9e_P\xbcc\xbdB\xc7\xf8\xb2\xdf\xefjf6\x13a0\xbf\xace\xa0Yi\xb1\x96?\xa1,ǿB\x1d\xad:\x1d\xe4\x9b\n\xb94\x9f\xf2\xe4`\xf7ʜa\x84n\x1c\x9f\xab\x146\xb7\x14\xd4\xe1\x1a%E\xadͮ\xbc\xf6\xe5jÍ9\xdb}\xad\x85e\xf4\xbb\xe4\xc7\u007f\xf6ҹ+g\xd7V\xff\x8e*\rM\x0e.t\xcb\x1fR`6!9\xfc\x1c]W\xb4T6\xc6a\u007f\x9fve\\\xff\x89ʔ\xa5\xc1\xc8\xc9\bE\x9e]\xf8C\xc5\xf8P!\xd4\x1d#\x1d\xbb}Pw\x11M\xde֙\xb4\xfc\xddXZ\xb0\x1b/\xb2L\xfbd\xde\xe5V\xdfz\xd6\x17\xaaS]\x8az,Ъ\x8c\xab\x93>\xa5\x03\xe1\xa3\xf9.j\xfe3\r8\xf6gV\xd3{\xfe'\xd4c\x8c,>\xa5\x01R\x81\xec\xf0#\x8e\xae+R*\x19#\xfc\x8d%گ\x92F\xfc\xb3\xccž\xfc`\x1b~\x9f\xf2\xbe\xcd_\xd5\xf7\x00%\x8a\xc5Kf.m\xaau\xf9\xbc\x02\xa5\fO\xbapG\x9a]\xea\x8f&7\xc2\xfd\xc4\xe3T?/\x84)n\xa4\xe6\xff\xb2aӱ\xb3\x9f>\xf8\x96*D\x81>o\t\xec\xf9\x01[\xa4\x86\x9f\xad\xeb\xa2K\xa5b\x84\u007f\xf1J\xed\u05ca\x85\xf8gY\x19\xbb\xb6m\xf8[\x14\x81t\xc4\xefӱ~\xfef,m\xb8\xb0\xb8餿J\x0f?^\x94\x16\xfe\x16e\n\x1f\x92\xe0=\u007fY\xe4\xdd\xc3r\xd7\xde\xfd\xb3/l\xad^\xdb\x13s\xce\xefW\x86\xadE\x00@ 3\xfcl]\x17U*\x19s\xcf?O\xfb5O\xdf\xf3ױkۆ\u007f@\x19\xb5\xf9\xab\r\xc6\xd2J\x16\xe3=u\x9d%\xfc\x81\x9c\x15\x81\xab\xf3\x17\xe3\xb1Y?oT\x83>\xb3\xb8\xf5\xaa\x1a\xfb\xfb\xe7j\xcf \vp\xb5\x1f\xb0Gf\xf89\xba.\xa2T6F\xf8}ډt\x97\xfe_q\xf8o7\xc7$=XT\x85\xdf϶o\xb7\xfe!z\xce\xcf\xc3XZ1\x9e\b\x97Y\xc2?\xaa\x14*J\x95vfЧhWH\xf6\x1c\xa4\xe6奄\x82\u007f\xed>\x82,@\xf8\x01{\xa4\x86\x9f\xad\xeb\"J\xe5\xa2_\xed\x1f\xd2\x0e8\xd6\xe74\xf9\x9ar\xf0\xd5\xfe!\xff\xfc*\xbf\xdf\x1aX\xb5\xd8\xefj\xf4\xfb\xf5N\xaeT\xf2cz;\xf8\xbd\x12\xafo\xbb\xd2n-_\xa9\xac\xb0\x16\x99\x90KkV\xeaZ\x0f\x96)\ue5a1\x80?\xb7q\b\x8d6\xe6\xfa\x03h\xd45\xe0\xf3\a\xf4\x83\xa2&\xa5\xbe\xbb\xb7Q餚詮\xedy\xf7ݗ\xaaǬm_V.X\x8b\x00\x80@j\xf8ٺ.\xb2T&\x91\xcf\xf9\xe7jw\x16\x86\xb5\xcf\xf9\xd5\xfe\\\xcd\xd1J\xad\x81\x1d\u058b\x15\xed3{Ԟ\xcf8\x9f\xbeYW\\\xb0\xf0dLq\xe4s~6\xe4\xd2\xc2-\xf3]\x85\xf5\x1d\xf3\\U\xdbԢ\xdc\xf1|\xf5\xe76t\xc1\x85+\xe4V\xe1\x93~\xd4W\xe5v/\xb6ܱ\u007fvwϦچ\xdd1\xd9G\x93s\xeb\xaeN\xca?\x95\x02f\rrß5\xf4*\x92\x8eS&\xf3\xb7M\x86B\xc1\xe1\xba$.\xdd\xf7\x96\xc4\\\x1c\x04\x00\x13\b\u007f\x12\x84;\xdcO\x8a꤈^\xb7\xbe\xef\x0e\xbb\x93\xf9\xd4~\xf2j\x06\xee\x99\x06f\v\x10\xfe$\b\xb8w\xc8:I\x19\xcdю\xf7\xd1x\x8e\xfdm\x04\x00\x900\x10\xfe\x99M\xb81\xefɮ\xc1\xae'\xf3d\x1dj\x00\xce\x01\xc2?\xd3\xf1-/r\x15-O\xe6\xa0\x1f\x00l\x81\xf0\x03\x80C\x81\xf0g%\xffh\"\xaa\n8\x16\b\u007fV\x02\xe1\a\xc4@\xf8\xb3\x12\b? \x06\u009f\x95@\xf8\x011\x10\xfe\xac\x04\xc2\x0f\x88\x81\xf0g%\x10~@\f\x84?+\x81\xf0\x03b \xfcYI$\xf8\xff\xf5?\xfd\x03\x15\xfe\xa9Ž\b\x00\"\xc8\r?[ץ2\xee\x85[\xd8\x12\xe4Jû\xfc?\xea\xd9\xff\x9b꿲\xec\xf9[r\xe8'\x81\x00NFj\xf8ٺ.\x95`\xfb\x05\xfa\t\x15\x80\x90wk\xcf\xf1\xff\xa8g\xbf\xf6\xbf\xc6\x1c\xf6\xfb液\xe7\x00\x9c\x87\xd4\xf0\xb3u]*\xbe\x81\x00\x84?Qb\x9e\xd8i\x12\xfeǟ\xfd\xe3?\xfe\u007f\xb5\u007f\xc58\xe7\xdf\xc3y41\xe0<\xa4\x86\x9f\xa3\xebB\xe3\x1dA\b\u007f\n\xb9Y\xf6\xc7\u007f\xfc\xef\xff8\xe7\xff\xf8?\u007f\x16\x1b\xfe`\x11\xfd\xe4o\xc0\xb9\xc8\r?b꺂\xed7Q\x16\x85\x9f#\xfcB\xf6\xe6\xae߭\xad}\xb5\xa1a\xec\xd8\xea\xdd\xf7\x11\xba\xffBC\xed\xa6}\xb7\xd4\xe2#յg^jX\xbd\xef3j\x12ݯ\xad\xae\xae\xd6\x0e\xfb\xd5ҳǶ\xd6\xee\xfb-\xfe\xcf\xfd\x17\xd76\xbc\xfa\xea\xda\u007f\xa3TU\xcdɫZ8\xe7\xcf\u007f\xa6\x85\xff\xb3\x17\xd6\xd66\xe85\xd4]\u007f\x9e\xacg\x11\x003\x1c\xc9\xe1g\xea\xba|\x03(\x9b\xc2\xcf\x13~\t\xcc]c\xab\xab\x8f\xed\xae^۳\xf6\x8cz>_\xfd\xd2ع}\xd5\x1f#t\xeb\\m\xf5\xa6\x9e\x9eM\xb5\xb7\xc8I\xb5|l\xac\xb6\aφK\x1bzzV\xbf\xa0N\u007f\xbb\xb5\xe1LOm\xed\x99\xff\xf5\xe0\xef\u007f\u007f\xe3\u007f\xfe\xfe\xf7\x0f\xfd\xfb\u007f\xc0\xe1\x1f\xab}\xb6\xe7JOu\xe4\xd9\xde\x17\u087e\x80\x8e\xe4\xf0\xb3t]7\xf0\xbbA\x16\x85\x1fq\x85_\xf6殆\x17ѕ\xeaw\xd1K/\xe1\xc7\xf0\xab\xbb\xff\a?ƁF\xb5\x9b\xf0\xa1\xc0\xa6g\xe9I\xfc\xbf\x9e\xc8\xef\xd5\xea>\xfd\xc5\x06u\xea\\\xb5\xfa\xbep\xa6\xfa\xe3\x929s\xe6\x84\xeb\xe7\xcc\xf9Ο\xe3\xf0\u007f\xbbi߷\xea\x1b\x03n\x12\x13P\xde@\x00\x80\xe4\x87\x1f\xc5躂\xed7\xc2\xe1\xf5殛\x00\x00\r\xefIDATp\xa03\x9cE\x0f\x9a\xe5\t\xbft8殆s\xe8\xe3\xea\xfb\xe8\xd5\x17\xd5\xe9\xfbg\xf6mZ]\xfdc\\\\\xfb*\xfeyF\xfd\v9\x89\x88\xf0\xab\xef\x16\xa8\xa7V\xfd\xf1\xeaj\xf5\xc7o\xaa\xdf\rl\xffc5\xfc\xff˿\xfb\xf3\xff\x86\x0f\xfb\xafT\u007fJ.&`q\xfd\x01\x8eEj\xf8\x99\xba\xae\xdb\xde(\xd9s\x19\x9a'\xfc\x8a\xc06w5\\A\x1f\xab\x11\xc6\xe1\xff\xb8aӫ\xef\x8e\xed\xd6ïe|\f\xefԉID\x84\x1f\xff\xd6\xc2\u007f\xe6\xcfԷ\x85+շ\xc2\xc1?W\xc3\xffo\xfe\xdf\u007f\xd0.\xf8\x9d\xa9\xa6<~\xc3\xf08\u007f@Gf\xf89\xba\xae\xa9I\x95\xf1\x8e\xc9,z\xc6<\xcf\xf9c\v\x11\xfe\xad\xcf\xe2\x9d\xfb\vz\xf8\x8f\xe1\x9fg\xb5=\xbf9\x89X\xe1\xff\xb2zߗ\xb7\xb6\xee~\x80\xd0\u007f\xc1\xe1\xff\xcf?\xd3>\xea\xbb\x12y\xb3\x88\xd0\xecJ\xfc!\xe0@V\"3\xfc\x1c]\x97F\x96\x9d\xf3\xb3\xc3oo\xee\"¿\t\x9f\xed?\xf8\xb1\x1e\xfe\xb5ډ\xfenz\x12\xb1\xc2\u007f\xabzmu\xf5n|U\x1f\x87\xff\x0f\xff\x93\x1e\xfe\xfb\r\xbb\xf1\xae\xff\x98\xf6\u0381\xc2%6\x02!\xc0QH\r?[ץ\x12\x0e\x8cw\x04b\xcc\xf6\xb3\x14\x8e\xf0\v\t\xcc]\xb7V\x9f\xb9\u007f\xae\xf6\xd6\xfd\x17\xd5\xf4\xf6T\xbfp\xa6\xe7\xc7\xd5k{\xc6\xd4lW?{\xee\xec\xd6տA\xe4\xe4\xb7ccc\xb5G\xc6\xc6\xee\xa3/\xf1\xef\a\x9f\x1e\xa9\x1d\xfb\x12ݪ\xbdre\xec\xb7\xf8\xe6\x1f\x1c\xfe\xff\xed?\xfc\x8d~\x93\xcfX\xedֳW\x8eU\x9f\xd5\x16Ӓ\xacP\x14\xc8:\xa4\x86\x9f\xa3\xebR\xcb\xf1)\xffq\xfe|\xb3\n\x8e\xf0\vٛ\xbb\x1e\xa8;\xeds\xab\xabk\xcfUW\xbf\x80\x1e\x9c\xd9Z\xdb\xf0\xe2٭\xb5\xbb\xf1\xb1\xfeK\xab\x1b^\xfc\x12\xd71'?\xae\xd69\x8b\x8e\xa8?k?\xc5\x1f\xfb\x1fQS\x8e\xcbjw\xdf\xd2\xc2\xff\xbf\xff\xe7\xff\xeb\xbf\xeb7\xf9\xfc慆\xd5\xcf\xea\xdf\x04\xf0\xe7\xed\xe0v\x01p\x18r\xc3\x0f$N\xf4螞d\xf1\xaf\xb5G\xfe\xf5w\xbf\xbb\xff\xf1\v\xab\xefk\xe1\xffo\u007f\x85o\ue9eat\xb9\x1a\xe1\x16\x1f \x02\x84\u007f\xa6\x13\u007f\xf8\xdf]\xad\xdf\xee\xff`\xed\x15=\xfc?\xfb\x9b\xff\xdb\xf2\x95\xde\"\xf8R\x1f`\x00\xe1\x9f\xe9\xc4\x1f\xfe[\x91\xcb\xfa\xb7\xaa?\xfd\xb7\xf8j\xff\u007f\xd0\xce\x02lg\x01\x9c\f\x84\u007ff\xf3[\xedz\x9eu\x92̓\x97j\x8f\x9c\x1b;w\xa4\xf6\xa5\a\x10~@\f\x84\u007ff\xa3]\xcf\xfb\xcc:\xc9\xe1\xc1\xbb\xfb\x1aj\x1b\xf6\xbd\xfb\x00E\x0e\xfb\xe11^\x80\r\x10\xfe\xac\x04\xc2\x0f\x88\x81\xf0g%\x10~@\f\x84?\v\t\xb5\xd6\xe1;\xfc\x9a.\xc0\xc7z\x80\r\x10\xfe\xec#\xbc8\xfa\x95ޓ\x90~\x80\x0f\x84?\xfb\b=t\xf0\xf7\xbf\xff\x9f\xea\x06z\xe8\t\xf8\x0e\x0f\xc0\a\u009f}\x04\x15\xa5\xaa\xea\xa1ª\x85s\x1a\xb3\xe5\xfb\x12@:\x80\xf0g\x1f!\u007f\xb1\xdb=\xdf\xedv/\x1d\x86=?\xc0\a\u009f\x85\x84\x02\xdaS\u0086\xea\n\x95'Du\x01\xe7\x02\xe1\xcfF\xc2\xe1\x90\xfao\xfe|\xef@\xf6<\x1d\tH9r\xc3\xcf\xd4u\x85:\xb4\x87xudӕ\xe9\x81BC?6\xb5\xad0o\x05\xf5\x90\xa2#\x91\xa7nO\x8f\xe8\"\x1a\x15EɻɨpU\xe9c\x94\x02@\x14\xa9\xe1g뺂\xde\xf7\x03*\xf4\xa3lg9\xbe|\xe3\x11\xb9K\v\xbd\x8dyԹ\xf7o\xc7\x04\xdfЉ\x8b\xe8\"\x02~\u007f+\xf3i\xdc\xc3\n\xfd\x8c@\x00\xa0\x91\x1a~\xb6\xae+\x98EO\xee40v\xf5SJ+\n[\xaf\xbb\xa5\"\xfc\xe6\"Ԙ\x0f1\xfe\xce,\x9d\x932b\xdb\x06f\x19R\xc3\xcf\xd6uee\xf8\rn*\f\xffpJ\xc2o\x92H\xf8\xbfI\x11\x10\xfeُ\xdc\xf0#\x96\xae+\xeb\xc2\x1f\xccS\x94\x9c\xe3x*\xe4֟\xcfo}tV\xed\xb1\xa8w˄\x90x1}^h\x9b\x92\xeb\xdd1?o\xb9v\xf4d,\x02\xc3\x0e\xff \x84\x1f\xb0Er\xf8Y\xba\xae\xa0w\xe0\r\xefq\u007f\x16]\xef\xbb\xec\xf7\xbb\x9a\xb5\xa9\xf7\xfd]J\xb3\xdfo}w\xc3O\xe2<\xf7\xe3Z\xea\x91ڄċ\xed\xf3\xbaq|\xaeR\xd8\xdcR\xa0=\x19\xd8\\\x04b\x86?49\xb8\xd0\xcd\xf8\x94\x1f\xc2\x0f\x18H\x0e?K\xd7\x15\xf4v^\r\xdc\xe8\xeeʢ\xf4#\x94\x17M&\xfb\xb0\u007f+\x16hm}\x96*$$^l\x9f\x17r\xb9\xd5w\x91\xf5\x85\x91\xff\xe5م\xff\t\xf5\xb8\x81\xb1`\b?`\";\xfc(Fׅ\xc2\xe3\xfaA\xc0\x90`\xbeY\x85 \xfc\x9aw+j\xdf\xd0!$^\x1c\x9f\x17ra\xbbv\xb3+\xf2?\xdb\xf0\a\xfa\xbc%\xd3\xda\xf3\xcf\xd1\xfe\xd9\xfc=\xb6m`\x96!5\xfcL]W\x14\xffI\xf6L\xb3\x13A\xf8)\xefV\x04B\xe2\xc5\xf6y!\xed@?\xbe\xf0\xab\xf8\x95\xe1\xd8B\x1c\xe87\xffH\x8f\xf5\xbf\xfc\xe5\xc3s\xbe\xffS^\xb8!\xfcY\x8f\xcc\xf0\xb3u]h@O\xc7 \xeb(u\xd6\"\b?\xe5݊\x9b\xc4\xc2Ͻ\xda\xff\x837\xf5X\xff\xc5\x0f~\xf9\xc5/\xff\xe4\x17\x9cpC\xf8\xb3\x1e\x99\xe1\xe7\xe8\xba|\xda.\u007f\xaa\xe3}\xdbyg\x19\x82\xf07h\xe7\xfc\xbbc\xffbK\x8a\xc2\x1f\x8d\xf5\x1f\xfeJ\xfd\xf1\xab\xff\x18I\xf3O\xbf?\xe7\xe1\xbf\xfb\xe6\x9b_\xfe\xf0\xa1\xef\xfc\xf0\xd7F\xf8\u007f\xfa\xdd9\x0f\xff\xe57Ą\xfa\xf79\xdf\xff{\b\u007f6 5\xfcl]W\xc0\xdbw3p\xb9ݗ5\x9e\xceА\xdf\xefj\xf4\xfb\x83ѫ\xfdC\xd6U\xab\xad\xde76\xf6\xac\xa6\xe0\x8a\x9f\x80?\xb7q\b\x8d6\xe6\xfa\x03\xe4\"\xb4;\xfcZb?Q@\x97Y:\xde\xd8\xf0?\x1c\xc9\xfe\x1f\xfe\xf4\x8b_\xaao\x04\xdf\u007f\xf3\x8b_\xff\xe9\x9fF\xc3\xff?\xbe\xff?ԃ\x83\xbf$&\xbe\xff\u05ff\xfe\x97_\xfc\x10\u009f\rH\r?G\xd759p\xbc\xc37\x9e5\xd9Gú\xafK\xf1F?\xe7\x9f{\xc3Rck\xcf\vQ\x05W\xfclS[\xca\x1d\xcfW\u007fn#\x16\xa1\xddۏ\xa9\xb7֟\x9c[w5\xc6|L\x86_?\xec\x8f\x1c\xdc\xff\xd1\xdf\u007fc\xf0뇣\xe1\xff\xc1/\"\xef\x0f\xc6\xc4w~\xa5ׁ\xf0\xcf~\xe4\x86\x1f\x90Io\x89\x12\xf3\x95^2\xfc\xf8\x82\xdf\xc3\u007f\x17\t\xff\x9c_\xeb\xbf\u007f\xa5\x1e\xd6ϙ\x13\r\xffC\xfa\xad\xbc\xc4\xc4_<\xf4\xa7\u007f\xf7+\b\u007fV\x00\xe1\xcff&\xafZO\x06\xc8\xf0k\xbc\xf9]\xfd\xf7C\x91\xf0\xff\xe0/~\xf5\xcd\x17F\xf8\xe7D\xf6\xf3\xe6\xc47\xbf\xf8\xeb\x1f>\xf4\xd7\x10\xfel\x00\xc2\xef,b\xc2\xffÿ\x8c\x84>r\xd8\xff\x9d/\xd4\x13|#\xfc\u007f\xf4\xb7\x91j\xc6\x04\xe6\x97߁\xf0g\x03\x10~gA\x86\xffO~\xf1/\xbf\xfc\xd3?\xfa\x17=\xd0o>\x1c\xb9\xe0\xf7\xd7_\xfc\xe2\xbbF\xf8\xdf|\xe8\xef~\xfdś\u007fBL\xfc\xc9O\xbf\xf8\xe2o\xbf\x0f\xe1\xcf\x06 \xfc\xce\x02\xc7>r\xf6\xfe\xcd\xdf\u007f\xf7\x0f\x1e\xfe\x8b/\xa2\xbb\xf3\xbf\xff\xae\xf6Q\xdf/\xbe?\xe7\xe1\xbf5\xc2\xff͛?\xf8Μ\x1f\xbcIL\xfc\xf4\as\x1e\xfa\xe1/!\xfc\xd9\x00\x84\xdfY\x10\a\xfc\xd3\x03\xc2?\xfb\x81\xf0;\v\b?`\x00\xe1w\x16\x10~\xc0\x00\xc2\xef, \xfc\x80\x01\x84\xdfY@\xf8\x01\x03\b\xbf\xb3`?\x8c3\x19DK\x02f<\x10~\xc0\x96\xec\xf9\xca\x05`\x05\xc2\x0f\xf0\t4\x82\xf0+\x8b\x81\xf0\x03\\\xc2%% \xfc\xcab䆟\xa9\xebR\xb9\xd1\xd7\xd1}\xd9f> \x82\xad\x06,\xe5\x80\xf0+\xbb\x91\x1a~\xb6\xae\v\x85\x06\xbcC\xb7G\xbd\xf4\xc3*\x01\x16\xb6\x1a\xb0\x94\x03¯\xecFj\xf8ٺ.4\xd0\x1e\xc0o\f\xd6'^\x00\f\xec5`)\x86\xfdx0 [\x90\x1a~\xb6\xae+\xe0}\xdf\xf8\x1b\x10/\xccg\x03\xa6\x18\b\u007fv#7\xfc\x88\xa5\xeb\x1aj\x0f\xc1\aJ\xf1 Ҁݪ\xad\xae~\xf5\xb3\x177\xd5\xee\xfb\x1dQ*Ԁ\xa9|\xf6\xc2\xdaچ}\xbfE\x16\x98\xc2/ k\x90\x1c~\x96\xae\xab\xd7w\xe3\xa4\xf7\xf8\x85\xac\x12\xf6\xa4\a\x81\x06\xec\xdbs\xe76m]\xddp\xec\xc5?#\x9f\x0e(Ԁ!4V\xfblϕ\x9e\xea3T!O\xf8\x05d\r\x92\xc3\xcf\xd2uuk\xba\xae\xe3ݐ\xfe8\xb0\u007f$8\xfaq\xf5\xee\xfb\xe8\x01\xad\x03\x10j\xc0\xbeݴ\x0f?I\xfc\x1c=\x1bO\xf8\x05d\r\xb2Ïbu]>\xed\xaa_\xb0\x83\xe1\x97\x01\xac\x88\xc2_\x1b\xf3H`\xb1\x06\xecJ\xf5\xa7֙\x10_\xf8\x05d\rR\xc3\xcf\xd6u\r\ua7ae\xc1^\xfe\x8c@\x14Q\xf8i\xf7\xa7\x86P\x03v\xa6\xfa\xdbع\xb49Y\xc2/ k\x90\x19~\x8e\xaek\xb4C{/\x18\x80c\xcc8\x10\x85\xff\x05F\xa1\x88+\xb43\xd0\x04\xae\xf6g72\xc3\xcf\xd1uMi\x1f\xf5\x05\xdb\xe1\x16\xbf8HG\xf8\xef7\xecƻ\xfecǬ\u007f\x80\xf0g7R\xc3\xcf\xd6u\xa1\xcb\xed\x97\x03\xe3\x9d'႟\x00\x91\x06\xecwcc[w\x8f\x8d}ƙ\x9d\xcfX\xedֳW\x8eU\x9f\xb5\x963\x85_@\xd6 5\xfc\x1c]\x17\xba\xdd\xdbq\xf22d_\x84H\x03v\xabZc\x1fgv\x1b~\xf3B\xc3\xeagߍ)f\n\xbf\x80\xacAn\xf8\x81\xd9\x05K\xf8\x05d\r\x10~\xc0\x8eX\xe1\x17\x905@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1\xc8\r?K\xd7\x15\xea\xf4\xea\x1c\xb7\x9f\x17\x98!\x10\xca0`V#5\xfcL]W\xc8;\x1aP\xb9\xec\xbd*\x9a\x1d\xc8\x18\x83\xa3\xe64\xa1\f\x03f5R\xc3\xcf\xd6u\x8dk\x0f\xef턇\xc6\xcc`\x16\xd6\x13\xff\x81\xc7{d\tR\xc3\xcf\xd6ui\xf8ހ'\xf9\xcc`\xca\xeaD5\x80ه\xdc\xf0#\x96\xae\v\xa3=\xcf\x13\xc8\x14\xb7\xebܹ\x85+\xb4\xc7v\xb4\x96啵\xaa\xbf\xb7)\xb9\xde\x1d\xf3\xf3\x96\xe37\xea\xc8\xc3\xfe\xcb\x10\xa9\f#*lSr:\xd1m\x97R\xa25ֹ8\u007f\xfe\x0ex\xe0\xff,@r\xf8Y\xba.\x8c\xe6\xf1\x002\xc4`~Y\xcb@\xb3ҢN6\xba\xf6\xf8\xf6\xb8֫o\xc7\xc7\xe7*\x85\xcd-\x05\xea.?x\xc1?\xbf\xca\xef\xf7kO\f4\x94aD\x85\x80?W-\x1ajt\xe1\xf2Ɯ\xed\xbe\xd6\xc2287\x98\xf9H\x0e?Kׅ\xa2\x17\x03\x80\xcc\x10*^\x1e\xc2OT\x9fB\xa8O\xc1\xa7c\xfaO\x97[\xdd(\xeb\v\xb5*\xd4a\u007f\xf4\xf1\xe1D\x05\xed\xfd\xa0\x19\x87ߧt \xfc\xd0\xef.\x04\xcctd\x87\x1f\xc5\xea\xbaT\x06\xba\xedg\x01҉Oy?:٨\x1f\xb9\x974\xaa?\\\xf8\x87\x16h^\xf8\xcd\nf\xf8\xeb\xe7\x850ō\b\x98\xe9H\r?[ץ\xd2\x01\u008e\fҢ\x18\x17[\x17\xaf\xd4~\xadX\x88\xc8@\xf3\xc2oV0'\xcb\"\x17\b\u087f3\x1f\x99\xe1\xe7\xe8\xba\xf0\x95\x00J\x1c\t\xc8e@1>\xc5o\x9c\xa7\xfd\x9a\xa7\xed\xf9\xad\xe1o\x8f\x9c\x9b\xf1¿\aO\xae\x9f7\xaa1\x85\x80\x99\x8e\xcc\xf0st]\xf8\x94\x1f.\x0eg\x90`Q\x15~+\u07be\x1d\x9f\x01\xe0s\xf5.M\x05F\x86\xbf\xaa\n\xa1I%rr\xc6\b\u007f^\x93\xfa\u07be\x10O\xf6\xe9\xb5\xf6\x1cD\xc0LGj\xf89\xba.\xf5\x9d\x00>\xe4\xcf$\x83\xdf+\xf1\xfa\xb6+\xed\xea\xe4\xfa\x9c&_S\xcez\xed\n~\xe3\x10\x1am\xcc\xf5\xe3\xfd}\xb3\xab\xa5wi~\x80T\x86Q\x15\x16\x17\x1e<\xb8X\x99\xdbq\x03\xa1&\xa5\xbe\xbb\xb7Q\xe9\x14-\x14\xc88R\xc3\xcf\xd5u\xc1\xfd\xa2\x99\xe5f]q\xc1B\xedSװ\xf69\u007f\x18\u007fv\xaf(\xb9\xe3\xf9\xea\xcfmjqh\xbb;\xaf\n\xfb\xbaMe\x18U\xe1fU^\xc1\xf2&\xbdn_\x95۽\xb8\xcfvy\xc0\x8c@n\xf8\x01\x00\x981@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8\x01\xc0\xa1@\xf8g\x0f\xf5\x8a{\xfd\rQ%\x00\x88\x17\b\xff\xec!0\xd8Q\xe2\x86'\x1f\x00\xa9Bn\xf8Y\xba.\xfct\xd87\xda߸\x00\xaf\xea8\x18T\xc0k\x04\xa4\n\xa9\xe1g\xea\xbaP\xb0\xf3$.\xed\x84\xf4\x8b\x19V\x86DU\x00 N\xa4\x86\x9f\xad\xeb\xf2wk\x8f\xf0\xef\xf6\v\xe6\x06 \xfc@*\x91\x1a~\xb6\xaek@\u007f|w/x;\xc4@\xf8\x81\xd4!7\xfc\x88\xa5\xeb\x9a\xea\x1c\x9c\nM\xf9;\xe1y\xafb\xae*\x83\xa2*\x00\x10'\x92\xc3\xcf\xd4u\x85\x06\xd4\xd2>x\x86g\x1c\x84\xdc\v/\x04\xc0\x84\x05\xa4\x04\xc9\xe1g\xe9\xbaB\x03\xdd\xf8\x99\xbe\x03\x90\xfe8\xe8S\x14e\xa5\xa8\x12\x00ă\xec\xf0\xa3X]W\xf4\x82\xdf\x05ь\x00\n\x16\xcek\x19\x04\xc3\t\x90\x12\xa4\x86\x9f\xa9\xeb\n\xb7\xeb\xa68\xcd\xe3\x03\xd83\xac\xc0eQ U\xc8\f?[\xd7\x15\r\xff(\x84_\f\\\xed\aR\x87\xcc\xf0st]\x83\x91\xc3~\xb8\x8e-\x06\xc2\x0f\xa4\x0e\xa9\xe1g\xeb\xbaB]\xdd\xe3\x81\xf1\xee.\xb8\xe0'f\b\xc2\x0f\xa4\f\xa9\xe1\xe7\xe8\xbaB\xc3';N\x0eC\xf6E\x84\x02\xa3\xf5\xae\x80\xa8\x16\x00ĉ\xdc\xf0\x03\xd3\xe1\tE)\xee\x15U\x02\x80x\x81\xf0\xcf\x1e\x02\xa3\xb0\xdb\aR\b\x84\x1f\x00\x1c\n\x84\x1f\x00\x1c\n\x84\x1f\x00\x1c\n\x84\x1f\x00\x1c\n\x84\x1f\x00\x1c\xca\xff\x0fL\f\x1em+\xfdz{\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/chan1.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\xc0\x00\x00\x02n\b\x03\x00\x00\x00aR\x8e\x00\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\a\n\a\x0f\x11\x0e\x1a\x1a\x14\x1f\x1f\x18!# #$\"\x15%D$%#%'%'(&+)\x1e()'*+)/,!+-*,-+-/,02/63(241564796<9.9;8#?r@=2<>;>@=C@4DA5AB@DFCFHELH:IKHKLJNOMUP?PRORTQTVSVWU]XGWYV_ZI,`\xaeZ[Y7]\xad[]Z\\^[9a\xab;b\xace\xafac`hcQcdbAg\xb2efdCi\xb4fheDl\xb0Mj\xafqjRikhGn\xb2Ip\xb4lmkKr\xb7npmUt\xb4{s\\rtqWv\xb6tvsuwt[y\xb9\\{\xbbxzw]~\xb8e|\xb8\x84|dX\x80\xbf{}za\u007f\xbf|~{~\x80}b\x82\xbc\u007f\x81~d\x84\xbf\x81\x83\x80|\x83\x97\x83\x85\x82l\x86\xbch\x88Ð\x86hn\x88\xbej\x8ać\x88\x86q\x8b\xc1\x89\x8a\x87t\x8e×\x8doz\x8e\xbf\x8c\x8e\x8b|\x90\xc1\x8e\x90\x8dx\x92Ȑ\x92\x8f~\x93ĝ\x93ux\x96Œ\x94\x90\x81\x95Ɠ\x95\x92{\x98Ȕ\x96\x94\xa2\x97y\x96\x98\x95\x81\x9aė\x99\x96\x84\x9cƇ\x9b̙\x9b\x98\x80\x9eͦ\x9c}\x87\x9fɜ\x9e\x9b\x89\xa1˞\xa0\x9d\xa0\xa2\x9f\xa1\xa3\xa0\xa2\xa4\xa1\x91\xa5ʏ\xa7Ѥ\xa6\xa3\x94\xa7̥\xa7\xa4\xb3\xa7\x83\x92\xaaԧ\xa9\xa6\x97\xaaϩ\xab\xa8\x9d\xac̫\xad\xaa\x9b\xaeӟ\xafλ\xae\x89\xad\xaf\xac\x9e\xb1ע\xb1ѯ\xb1\xae\xb1\xb3\xaf\xa5\xb4Ԣ\xb5۳\xb5\xb2ö\x91\xab\xb7ѵ\xb7\xb4\xa8\xb8ح\xb9ӷ\xb9\xb6\xb9\xbb\xb8\xb0\xbc\u05ed\xbdݻ\xbd\xba\xb3\xbeٽ\xbf\xbc\xb7\xbf\xd4\xcd\xc0\x9a\xbf\xc1\xbe\xb6\xc1ܹ\xc1\xd6\xc1ÿ\xbb\xc3\xd8\xc2\xc4\xc1\xbd\xc4ں\xc5\xe0\xc4\xc6\xc3\xc6\xc8\xc5\xc0\xc8\xdd\xd7ȝ\xbb\xca\u07bd\xc9\xe4\xc5\xc9\xd9\xc0\xcb\xe6\xca\xcc\xc8\xc7\xcb\xdb\xc2\xceܿ\xcf\xe2\xc9\xcd\xdd\xcd\xcf\xcc\xc9\xd0\xe6\xcc\xd0\xe0\xc6\xd2\xe0\xdfѤ\xcf\xd2\xce\xd1\xd3\xd0\xd2\xd3\xdd\xd3\xd5\xd2\xcd\xd5\xea\xce\xd7\xdf\xd5\xd7\xd4\xe6ת\xd6\xd8\xd5\xd1\xda\xe2\xd8\xda\xd6\xd9\xd9\xe4\xd3\xdc\xe4\xd5\xdb\xea\xda\xdc\xd9\xd8\xdd\xe0\xdc\xdd\xe7\xdc\xdf\xdb\xda\xdf\xe2\xe0\xde\xe2\xde\xe0\xdd\xf0\xe0\xb3\xd6\xe2\xf0\xdc\xe2\xe4\xe0\xe2\xdf\xde\xe3\xe6\xde\xe2\xf2\xe2\xe4\xe1\xe1\xe6\xe9\xe4\xe6\xe3\xde\xe7\xef\xe8\xe5\xea\xe5\xe7\xe4\xe6\xe8\xe5\xe4\xe9\xeb\xe7\xe9\xe6\xe8\xe8\xf3\xe8\xea\xe7\xe2\xeb\xf3\xe9\xeb\xe8\xec\xee\xeb\xe6\xef\xf7\xe8\xf1\xf9\xef\xf1\xee\xf0\xf0\xfb\xf1\xf3\xf0\xf1\xf6\xf9\xf4\xf6\xf3\xf7\xfa\xf6\xf5\xfa\xfd\xf9\xfb\xf8\xfa\xfc\xf9\xfd\xfb\xff\xf9\xfe\xff\xfc\xfe\xfb\xfe\xff\xfc\xc5\xe5[\xa2\x00\x00 \x00IDATx^\xec\xbdqLS[\xda\xef\xef93\x8b\xab}\x87Ax+\xc3}\xf5^8#\xbe\x1c\xbc^gk\xa9\x17\u007f\xe2A.U\xe1u^\x05މ9\xf6\xe8}\xc9\x18\xc5\x174z\x8fg\t\xddk\xaf\xfd\xac\xb5\xf7j\xd9߮\xf5\xec\xd5\xf5l\xf8\xdb{\x80\x01\x00\x00V\x8e\xbfmH&R\x89HV;\x00\x00\xc02\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\xac\v\x02\xc9\f\x80\x94\x04\x04\fX\xfbx*\xb6\xa0\xfdɌ\x80T\x04\x04\fxO\xda\v\xbc\xc9L\xd4\xc1[Ю| \x90\x97\xc7\xf7\xb8\x95\x8f\x01\xa9\x8d\xda\x02\xe6\xe9j6Y\x06|\xb2\xe4|\x13/М\xa0\xe0_\xaf\x95\xe9k\x83\t\fbiۈ\x046\xb6%3]\x94\xed\x12\xa9C\x9b\xe8\rf\xcd@u\xca\x06w\xd9\x05d\xeds)\x1f\xc6\xd8L\x0eבz\x102\xc53\x890\x9aƪK{ \xecNnByds\x84de(\x9c\xc0\xb1'#\xbb\xb47{:\xf6H2\x1aйd&K`\xec\xd0p2\x13F\xbf\x8e\x13\xd0\xf5\x93KIkP4\x1aG]\x8a\xf9@ꣲ\x80M\xf3V\xa7\xdb\xd9\xd6\xec\x93&g\xf8Q\x0f\xe1\x01?\x9e\xa0\xe4\xe9C\x9d\x17\xf5o\x13\x18\xc4Ҁl\xb6\xaf\xd1e\x9b\r)\xff_SzG\x17n\xbbDB\xa7\xf0\x96f\xec\"\x9b]\xe9\xa5qz,\xbe\x81MGl\xbd\xbfٖ\xeeT>\x8e}f\xd4\xe0\xc5\xde\x06d\xf6ű\x88\x9c\r\xcf\x0f\xb2\x06\r\xfa\xc5\xfd\xc1#\x1a\xf2\xea\xa6\xcd\x1c\x8c)Օ\xb1\x83oَP\xbc3\xc7\xe77if!\x11>q<\x1e=Y\x84\xc1pq\u007f|C\tw8\xbb\xbd\x93\xeb\xb0\xdbw\xdf!{\u058dW\x95\x8c\x86\x90M)\x1bX\x03\xa8,`.\x9e\xf6\xe4}\xbcS\x96t\xd0\xfb\xd1\xd74\x90\xa0\xe0\x0f\\'\x0e\xce&0Pಆ\xfe\uf4bb5\xfdr\\\x9b\x1d\xa5\v\xb7]\"\xa1S\xe0S{3|؛\xbe\xf7T\\S\r\xed\x9b\xf9r\xf6\xc4;\xee`]\x89^\xe4\x88g 9\x1b\x16\x1b\x14\xa6N\xa3\x94\xcb\xf0f\xee':\xe7۶x\x01\x9bԄZ#=\xb1\x04oaH\xaek.(\x1aD\x90\x19,\xb0\xb3ݡ\xc3\xf817\x81\xb1\xbe\x83\xee\x9e\xd1(\x8d\x14\x15Z\f\xac\x11T\x160̺\x0e^\xde#OR\xeeޚW.\xc2x\xc1-lH!\xc5\xef\x12\xffw]~\x1c\x8f\xfc\x83\v\xb7]\"\xa1S\xe0S\xa5\xbbZp\xd3/J\x93\b\x18>\x97\x1e\xef\x91\xd9\x02\x04,|6\xbc\b\x01;\x95\xceƎ\x97P\xdc\xd1k<*\xb2C\x9dA\xe9\x89%8\xc2\x17[\x95L\xc0\x92\x1a(0\xf7B\x14\xb0\x17stח]\xa1`\x04\x02\xb6vQ[\xc0\b3n\x8b5\x10\x93t\xf2\xf1\xfd/se\x82\x9f\xe3&\xc6\xd78\xae\x0f\xbf\xd0q\xbf\xa4Iݽ\x9b\x95\xfa\xda\xef\x99͋\ve\xbaCbZB\xe4\u007f\xb7\xa9 #\xb7\x9a\xddm\xb6=9\x9b\xb4{\xb7\x92\x11\x87\xe8\xf7ʗَoD茫|k\xfa\x9ey\xec;\x98\xad\xc9\xd9G\x87\xb6\xc7\xd0&\xbe:7c\x8f[V\xc31\xb4\xf1jEN\xc8mu=?c\xfbuy\r\xd2S\x9c*\xbd~\x00\xef\xbdN\x05,R\xaf\x93\xd8\xee\xc39\be\xf9C\x02ְ\xd1/\xb9^\xe9\xe5\xc8\x04,t\xb6\xa4\r\xc2\xd8S\x9e\x9du\x80\r!\xb1\xe2[\xb2M\xb8\xed\xbd\x97\xfc\x92z%-Vn<\xc1\x9f\xf99\xdbF\x9d8\xc4\xd5\\\xab\x139\xad\xb9\xd7\xf1\xb0說\xa1\xd9\xc1\xfb5ŕ7Y\u007f\xda^{XWV{8(3x\xab\xe7\xe8nj\xa3>\xe3W\x17\xcb\f7o\x96\x15\xf7\xc9O\"\b\x98ș\xf4\x19\x1cC/\bؚEu\x01\xf3\xf2\xae\xd5n\xff\v\xc6\xdf\xdbu\xad88\xf1e\x11\xc6S}:\xeeP띒\xf3\xd4\xe2Qq͝\xb1V\xae#\xbad\xf8n\xadH;n\xbd\xaa\xcd\x0fЬ#\xb7\xbay-\"\xf24`\xcb-\xb4\xd9lN\x99팥yknfNu9r\x93\x1b\xb3\xa2ײ/m\x88\bM\xf3F\xa4\xad\xbb\x94y\x00Kk\xa0\xb9[\xeb\xea\xb6fPI9\xa29c=\xa3)\x97\xd5 =ũRw\x86\xf7'\x1e*`\x91z\x03\x83ui\x83،\x9a\x1ebQ\xc0\x02\xf9ۥ\xd7+\xbd\x1c\a\xb2\xce\xcc\xcc\xdcE\xb2\xb3%m\x10ve\xe6\x9a\xdb\u007f\x814\xf1\xde\x12\u007f\x9ad\xdc\x1c\xaeW\xd2b\xe5\xc6\x13FQ/+\x14u\xe2\x10\x9er\x94\x87>A\xa5n<;a\xaf4\xda\xed\xf6\xe74\xfb\nwc\xa4\xf3P\x15\x19%>\xdd}\xb1\u007f\xec^\x19\xf7Nn\xf0\xd8n\u05f7҄\xf43\x9e;a\xe8l\xd5\xeb\xef\xd5F\u007f\xc8R\x01\x1b\x88Ѫ\xf9\xe9\xde\x1dY\xf1}\x86@j\xa3\xba\x80a\xaf\xc7ai\xf6E'\xdd|\xe2\xc7ܑ!d\x11\xfd\xcfn-b\xc9\x12\xf2\xcd|\xf1\x10I\xcd\x1d\xae%C\x88\xb9\xbe\x1f\xa2˅\xeeV+2\xb3\xbd\x16\xd2\xc3\xd0\xd2{\xef\xeb,\xd6\xf5S\x1eq\xe5\xa3]>6\xc6\xf5Y\xe8\xe5}\xc2\xe6\x10i\xb2\xc8%\x96k\xb1\xbc\x06\xcdVj\x96S\x80q\x17\xeb\x1eu\xa1\xbb\xb2\x1adCH\xfcɱ\x1d\x98\xf5\xc0$\xf5\xe2#\x05\xde\x1c\xe1с\xe6_g|\xe3\aP\x8f\xecz%\x959Ď\x8eCv\xb6\xa4\r\xfat\x1b)\x1bخ\x91\xe7FN\xe1F\x91\xf9\a\xd2VDZ\x1c\xa7\xf1\xa4\x8e\xc9PA\xe5!d\xd7&\xb4鮐\f\x8f\x10\x87\xb9\xfb\x98\xca\x0e\xe9Iu\x1ezG\x92\x9d%A\x99\x01E\x100\xe9g\xdc\xc7=#\xa6\xdc\x14\x8eF*`nt+\xea\xe8~\xf2~Y1\xb0FQ_\xc0\b~Kwt\xb2\xdb\x12ך\xa1,`\x17C\xc9\x11\xee\xa9r\xb9\xd0\xddZ\xba\xcd?O\xc8!c%w\xf6\xd6\u007f\xe6\x1f\x06\x04_W\x1c\x01\v\xfb\x82\xbd\xd7\xf7l\xcbD\xb4K\x845G\xc8\xcb9\r\x96נ\xf9\x82\xbe~\x8d\xbc\xb8\xe2\x13V\"\uf23c\x06\x99\x805\xa0\x06&`\xd2z\xf1\xcc\xf6-\xfb\x04\v\rU'-U\x13\xc9\xf5J*s\xa0KCCC\x97\xa9\x80IΖ\xacA>\xc4\xd3\xcd\x19\x8d,Wr\n\xff\xc6H\x0fLڊH\x8b\xe34\x1e\xb7'\x160o\xb5&\aekN2?~X\x9f\xea\x8fν#\x18\xae`\xfc\xd2p\xf4ƽ\xa7A濊#`\xe1ϸ\xb1\x84\xbc<\xe7\xbe\xc5\xd1\xc8\x05\xac%\uaa3b\x8bσ\x1eؚEe\x01\xf3\v\x1e\xafq> M\x12\xcc\x0f\xe2\x96a(\vX8\xd9\xc1\xcd)\x97\vݭ\xdbž\v\xed\xf3\xf8\xf8\x83yh\x8b\xd0\xe7\x89#`;BY[r>o\xb3\xed\x14\x04\xec\x1c\x0ey\xc2%5\bn\xab^4\x8a?\x15Tho\x81\xac\x06\xb9\x80yɽL\x05LZ/Ʒ\x90\xf8\x00VS14$\xb8Ӥ\xd7\x1b\xa9L\xe2\x03\x93\x9e-I\x83\x1e\b\xb3\b\x04%R|KD\x1f\x98\xbfK^\xaf\xa4\xc5ʍǃ\x91\x11\x9b\x92\x805hy'r\xfeF\xcbޣ\xb0>\x9d\x10\xdd]gI\xfa\xed\xbd\v\x95\\ٝ\x04=\xb0\xc8g\xbc\xfb\x15\xfd\xa6J\xdc\x03\x1b\n\xbd\x95Rlh(6\x13X\x13\xa8+`\x81&\xc1e\xf2\xd0\x14\x90$1u\x87%\x99(\x1d%`\xdfD\t\xd8\x18\x1d^(\x11\xba[˷\x8d2H_\xe0\x01\xed\x01\xf9Zҙ\x03\x9c\xddv&\xb7̖\xe4\x1e\x10\x13y\x05\xf4\xbb\xfb\x80 `\xf46d\xf7\xb0\xb4\x06M5=\xc6#\x1f\xae\xd8Ɗl=\"\xabAr\x8aS\xc2D\x03*`\xd2z\xb1'\xfb\x8b\xad\xc2\\\x03Mx\x8a\xab\xe4z%\x95I\x04Lr\xb6d\r\xf2\"v$ډ/9\x85\xf8\x14\xd2B\xfb\x91\x92VDZ\x1c\xa7\xf1\xd8DŽ\x8d!=q\x18?{\n)\xf4֘>\xdd{I{`O\x18D\x8f\x1e7\x12\xe9zۧ\xef\x94\x19Pb\x05\xec%W\xfb\xf2Y\xa51v~\x85T\xc0\xea4\n\x9d-x\n\xb9vQW\xc0p3\x9b\x12\xed\xa7\x1e{I\x12\xe3I>I'?\"`\xfaF\x8c\x83\xff\x12%`\xb3\x06#\xed\x82ݸ\x11].\xf4\xbfۅ\xd8\x18\xf5\x8b::#\x9e\x9d\xb9\xf0\x18{-\xc4xZ8&\x15\xb0Po\"\x87JG`{\x94\x80Ik\xd0l\xa1\xee\xa9m\x85\xd4\x1fDG/-\x82\xc3E\xd2\x1f\t\x9fB\"`\xd2z\xfd\x05g\xf0\xb1]\x81\xf0)\x18\x92\xeb\x95T&\x110\xc9ْ6\xa8 \x87\x88\x94\xeb'\x1a,˕\x9c\u009by\x80\x88L\xa0p\xab\xbc\x15\x8a\x02&;\x1b\x19\x87\n\x1di\xf9\x89%\xb8\xb3B\x9af4b\xfc\x9a:\xbeƄ'\x8c\x8d\xb7ɇǍ\xb0C\xd7d\x06\x94X\x01{\u0095q\xdc\xe9\xd0sfwCx\xf0*\x11\xb0@\xde^\x1c\v\b\xd8\xdaEe\x01s\xf1\xddN\xb7\x93y\xee%I:\x89\"\xe1\xf4+\xe1)\xe4\x04\xfb\xf25\x1e\xbas\xbb\x86\xd3ݟ\xfa\x8b]\xf7\xe5D\xf0\xe9\x97:\xfat\xf2\x91\xfeD\xe7\xc8\r\xee^T\xc1ѯ\xd1\xe5\a,u\n\x95Z\xda+P\x13\xbd\x037\x9f\xb3\xb6U\b\xcf\xcf\xcei.\xb5\xef\xcapKm\xe7\a\xd9\x135v\u007fԡ\x83\xd7\xeb\xf2\x91\xb6a\xd0c\xdbtd\x10\x8f\x1e\xd9d\xf3\xc8jР|\x8b)7\x8bZ\x97\xa7\x9d\xb2\x9eJ+\x97\xd7\x109\x85\xb7t\xa7\x87\xeczv\x96z%\xf5\xce\f\x1cӺ\xf1df\xf5\x80\x9f\xce\xc4\x0f?\xc6\v_\xaf\xa42\xd9L\xfc\xf0\xd9\xe24H2\x13ߑ\x91Sw&+m\xa3\xd9)\xccĿl\xb3\xb9eo\t\xee\xca(0\xb7\xffb〴\x15\x92\x16\xc7k<\xf9\x14\xd3.ay3\xe3\xd2Z\xd4\xd1\u007f\xba\x98v\xb0\x1aw\xd7\xf7\u007f{\x85JU+W\xdc:\xdc\u007f\x85{$3\x98\x9b\xb0\xdb\xf5_\xda\xedo\xb1\xf43~\xa6\x1f\x1b\xb1\u007f\x1f\xea\x80\xedC!\xa9z\xda\xc9u<\x16ӗ\x91\xd2\xef\x01\x1e(\x8d+\x815\x81\xca\x02\x86==\x16S\x9b\xf0\xf3\x16I\x12\xbbo%*4W\"\xfc܍=b\u007fa\xd4\x17\xd7~\xc3q\u05eeѬ\xff(&\xaf\xf4\xfb\xfb\xf9\x05CqM\xf4\xcfO|\x9b\x11B\xe9B\xe7\xaek\xa76\xebS\xfa@\xac\xa9\xb0.gSv\xa1p\x03\xfa\x8fg\xa5\x17\x0e\xc9lDž\x1f\x11\xb2\xfb#p9W\xa3-5o\xd3\x14\x1e#Y\x9b\x1c\x19\xe4\xf5\x98\xac\x06MuEfv\xb9\x87\x19\xfff{\xc6\xf6\xaf\x03\xf2\x1a\"\xa7\xa8C\x88\xba\x9a\x8e\xd1\xdf3F\xea\xed\"\x86\xd5\xf88y\xed\xa5\xbf\x85\xcc\v_{\xe8z%\x95E~\v\xc9K\xce\x16\xa7A\x0f%\xbf\x85t\xed\xcb\xdazҼ\x91\\\xfa\x11\xd1\xf1U*=\x05\xc1\xf1\x8b\x8c-\xfb\x1c\xb2VHZ\x1c\xaf\xf1\x843?\x19\x9073.s7>\xd3\x1b\x05\xa5\x19;]Vb\xa4}\xaf\xfb\xc6ۇu\x06\xe3#\xb9\xc1S\xd1Iv\x0fK?\xe3\t\xf6\xb3G\x9dQp\x82\x99\xb5\xbcP\xed,=*\xfe\xc8̖~2\xfa\xac\x94\xe9\x8d\aǧ\x03\x18X\x83\xa8-`k\x8eȨo\x9dR\xad\x89\x196.\v\xaf\x8b\xaf\xbd~\xf7\xee\xed\xd3\xf3\x9f\xc5\xfdEl\x8b\xa6B\xf9\xd7\x1c\xedy\b\x96\xd3Y\x9b\x80\x80\xbd'\xeb^\xc0\xf0\xe5\x9c%\xaca\xb1x\xfa\x85\xc9b8X6\x12\xc7\u009b\x1d\xff\x87\xf8\xd3㞸ǀ\x14\x06\x04\xec=\x01\x01S\x89'\xe2\x04\x8a\xa9xS\xfe\x80\xf5\b\b\xd8{!x\xb7\x01\x15\b^\xd1_\xeb{\xd4wM\xff\xd5\x02\x17\xaa\x00\xd6\x03 `\xef\x05\xf3nOb@\x05\x82õ\x06\x9d\xa1v\x18\xf4\v\x88\x00\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x96\"\f\u05fc\x96\xed{\v\"\xeb\xd8\x03\xc0zEm\x01\xf3t5\x9b,\x03\xbe\xa8\xa4o\xe0\x96\xe9\xd6\xc0\xca,\\>\xb9I\xb2\x86M\b\xef\xb1-\xe9{\x17\xbf\x00\xcb_\xaf\x95\xe9k\x170S\xbc_'.\x18\xa3[X\xfci\x1a\x81\xba5\xaaކ\xb4\x0f\x1eC\x1c\x00R\r\x95\x05l\x9a\xb7:\xdd\xce6\xba\x8a\xa1$\xe9kj\xa3ɦ\x95Q\xb0\xc1\xd0Z\xcb\x12vm\xb9~$}\xf1\x97s\xfaP\xe7Eai\xaaGO\x12\xd9\xdd\xe1\xec\xf6N\xae\xc3n\xdf}'\xae\x8d\xac\x86N\x16\xc8G\x9ek\xddx\x15\x03\xc0\xfaFe\x01s\xb1\xb5\xef}\xbcS\x96\xb4Y\xe82N\xf3\x16[\x92\xd2\xcbD(du\x04/\xba\x8a\x03\x8b\u05ef\x1f\xb8N\x1cd\xf1Zq\x8d4@E\f\x1d:q!d}L \xcb0\xd2\x1a^\xe8\x1a\x15r\xcfh\x12\xac\u007f\n\x00\xeb\x01\x95\x05L\x88\x94\xe8\xe5=\xb2d\x8f\xe0\xceiO\x14\xdbv\x19\x89\x150\xd7\xd2\"\tF\x16\xee\x97G؉a\xee\x85(`/\xe2\x04S\xc2\xf2\x1a\xae\x18f\x15r}\xd9\x15\x18\x00\xd65j\v\x18a\xc6m\xb1\x06dIoS\xaf\xd7\xef\xb55y\x13\x17\\\x06<\xe5\xd9Y\a\xc4!dSAFn5QU\xbfVXu\xb9Z\x96;\xbe\x11\xa13\xae\xf2\xad\xe9{d\x8b~\xbe\xbd`\xd0\x1d>KC\"͕\tn\xad\x9b4r\xab@\r\xb5\bޯ)\xae\xbcI\x04虎\xe3\xbeyq\U00068f96\x06s\x8d\x84\xa2\b\x1b`l\xaf=\xac+\xab=\x1c\x94׀犅\x0e\x98<\x97t\xc1\xd2g0\x00\xacgT\x170/\xcf\xf3f_Tr\xa6\x9b$\xbbԿ\x1b]\x99\xb9\xe6\xf6_ \rMW\xa4\x1d\xb7^\xd5\xe6\x13=}hkAu6\x9bG\x96;ciޚ\x9b\x99S]\x8ed\xe3\xb6a\xee\xabG}g9\xb6\x92;\x8b\x1a\xddL\x83i813\xa6\x01\xb8X`\xe7\xf0\x10R\x96\x9b\x8fv\xf9đo\x98\xd9>\xd2u\n\x9e8\xcfv\x94\x86\x90\xc3\xcc\xfd\xfeX\x88\x16Vŝ~\x8b\x83\u009a\xee!\x01\x93\x18t\x1e\xa2}\xb3Β\xe80\xaf#\\H\xb2\xe4CS7\xba\x85\x01`=\xa3\xbe\x80a\x1a\f\xb2[\x96\xb4Y\xfc,\xa9v\xf0+\x1fb\x91m\xceh0\rp\xe8\x9f'\xe40\xb7RX\xc0d\xb9\xf9JN\xf3W\x9d\xb5GK\xb8\x13,\xad$`\xf5G\xe7\xde\x11\fWXn\xd1\xcbp\xc1\x90\x80I\f^\x1a\x8e\u07b8\xf748'\xaf\x01\xe3~\xeeE(\x19%`-\x18\x00\xd63*\v\x98_p~\x8d\xf3\x01I2`zȒB\x90n\x15y\x80\xd8s\xcfs\x1a\xf2\xb2]\x8c7Ƃׄ\x05L\x96\x9b\xbf#\xb6\x8aLJ\x0e7\xf6\xdbO\xc7\x17\xb0\x13\xa2\xdf\xea,\xcb\ry\xafpD\xc0\xa4\x06o\xef]\xa8\xe4\xca\xeeD\xf7\xc0&\"\x91[e\x026\x04\xf1\x0e\x81u\x8e\xba\x02\x16h\x12\xc2\t\x12\xa9\x92&E\x01\x1bU[\xc0\xbc\xe8:\xdd0'~\xf9\xb6Q\x06{\x90\x10\x160Yn\xfe\x81\xd8**k\xa8\xf7\xfd\x82\xb2\x80\xdd{I;XO\x18\xaf¹\"\x91\x1eX\xd8\xe0q#\x91\xae\xb7}\xfaNY\rd\x9c\xca\xc2S\xcb\xeb\xa5\xd4i\x16?\xd5\x03\x00\xd6\x12\xea\n\x18nfa\xe9\xfd\x96\x1eY\xb2G\x1cB\xaa>\x8d\xa2 \x87(\x93\xeb'\x1a\x92\xecB,\xbc\xe1\x17,\xc8PX\xc0d\xb9\xf9\ack8L\x05%X\x15#`F#Ư\xa9_kL\xf0~5ަ\xafJ\x02&1h\xe5X\xc40\xe35Y\r\x84\v\x95\xa1i\xf8\xd2\xdc@^(85\x00\xacST\x160\x17\xdf\xedt;\x99\xe7^\x92\x9ci\xb18\xdc\x0eK\x8b\xea\x8f!\x1d\x199ug\xb2\xd26\x9a\x9d\x18\x9fB\xa5\x96\xf6\n\xd4\x14z\n9Ⱥ\x83\xe1\xdc\xf9A[n\xa1\xcd\x16\x1d\xc0\xa3\x95\xbb\xd0y\xbb\x8a\f\xfb&ħ\x90\x13\x82Դ\x16u\xf4\x9f.\xa6=\xa5\xc6\xdd\xf5\xfd\xdf^!\x9a\xf3\xeeO\xec\x19\xa2\xe8\xcez\xda\xc9u\ba\xaa\xc3\x06\xa4\xb2\xe2\xd6\xe1\xfe+\xdc#y\r\x18?\xe7B3\xf6\xa5\xb9\x97\xd1(\x06\x80u\x8d\xca\x02\x86==\x16S۠?*\xe9\x1fj3\xb7\r\xf9\x13\x17]\x0e\\\xfb\xb2\xb6\x9e4oD\xc7H\xbak\xa76\xebӻ\xe4b\xb2\x98\xdbk\xa3\x93Y\x84r\xc7\xd3Xnt\x9f'\xd8QYt\xa8\xfe~\xa5\xce8W\"\xfc\xbaQx`8w\xe33\xbdQ\x10\xa8\xb1\xd3e%Fҵz&\xf8\xbajY\xe6l1I\n\xbf:\n\x1b\xe0\xfb\xc6ۇu\x06\xe3\xa3\xe8\x1a\x88n\xe9E/\x98$ז~\x12\x03\xc0\xfaFm\x01\x03\x96D\xf0\x86\xae/*\xabES\xa1\xfa\xb4\x13\x00Xe\x80\x80\xa5\x06\xc1\x0e\xc3+Y\x867\x1b\x16\xa3\x00\x00\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x10\xb0UG{\x81\xfaљ\"x\vړ\x99\x00\xc0\xaaAm\x01\xf3t5\x9b,\x03\xbe\xa8d`\xbc\xdd\xd4\xe6L\\r\x859\x86\xd2,\xc9l\x16L'\xc7E/.\x11\xa6\x01\x9d\x93\xed\u007f\xd0\x13S\xba\xb5\t\x83^6\xa4\xc1\xafā\x94Ae\x01\x9b\xe6\xadN\xb7\xb3\x8d\xaeb(I\x06\xac\xe6Q\xf7\x03Ӄd\xa5W\x12\x8fmS]2\x9b\x05\xf3\xd6^ӊ\x95\xf9M\x9aY\x9e\xb1\xf4\x13\xf7*\xafwh\u0378\xa5\x98\x1f>\xbe\xf1j\xc2\xe3\x00\xb0zPY\xc0\\<\r\xec\xe3㝲\xe4C\x13\x1d4\xb9L\xab{\x85w\xcd\x12uD\x91\xb3q\x04lRs*&o\xa9'\xdeQ\xaa\x9c\x9f,\xf2\xc0\x19\xa5\xe8K\x00\xb0\x1aQY\xc0\x84\xa8\x8a^\xde#KZ\xd9\xf2\xf8\xb8\xe9A\x9cB\xab\x83\xa5\xea\x88\"\xf1\x04\xac\";Vŗzb\xa55\xfc\x17\x82/\xbb\"\x99\t\x00\xac\x0e\xd4\x160\u008c\xdbb\rȒm,\xba\x19n\xbf\x9b\xa0\xd4r0\xbe\x11\xa13\xae\xf2\xad\xe9{\xe8ڦM\x05\x19\xb9\xd5L>l{r6i\xf7ne6\xae\x03\xdaM[\xf6zHJs\xb2:7cOl\xe7ļ\x85E\x97tg\x8a!\xd82%&\xef\xcat\x8d\x06ã\x1b%\xc6Y2p\xbc`\xd0\x1d>\xfb\x8c\x1d \x02v\x83.*\xfd\n\xe3\xe0\xfd\x9a\xe2ʛ\xb3,۟\xf9y\xa8\xa8҉}\a\xb359\xfb\xc61\xf5\x8cm\xe2\x95.'|\xe9V\xf1j\xf2\xe5\xcd\xf4\xa5#\x94\u058c\xa3k\xf0\x96ksN\x9e\xd4n\x16\xbcmg\xd2U\x8fN\x00\x00KBu\x01\xf3\xf2\xa6A\xd6\xd8cI+\x12\xc3\x1e)\x9f\xd8g\xa1o\xdc',̮&\x8b\xc8Qy\xd4\xe5H.]6\x84\f7\x93\x92.\x0eI#5\xb4 ҫ\xfb\x1a9Dk7\xba\x85\x01 \x15P_\xc00\xbd/\xbb\xe5I\xaf\x95t\xc6\x06\xad+0\x03)?\xe4\xb0.\xdd\xe6\x9f'\xe4T\x90\xfb7{\xeb?\xf3\x0f\x03\xb4#u\x17=\f\x9bj\xa8g\x88E\xf1Vd\x12\x85\x90\r\xeb\f}D\x9cfqc=I\xbf\xea\xac=Z±\x18\x92g[[\xc5 \x92\xf5G\xe7\xde\x11\fW\xe8N{H\xc0\xe2\x9c\xd8{}϶L\xb4\x9d\xe5\x1e\xc1\xb1\x97#\xb9t\xb9\x80I\xfd\xf2a\x01\v\xd7p*\v\xd3`\x98\xa1\xf7\xdfMe\x1c\x00R\x00\x95\x05\xcc/8\xbf\xc6\xf9\x804I\x98\xf1\x06p\xd3@\xfc\x82\xcbE\xfe\x0e1\xb1]T\x1fڻ\xf1\xf1\a\xf3\xd0\x16:\x1d\xea2\x8ax\x834t~V\x9d&\xb6\x0e\x11\x9bU\xc0&\xcb5\x8c\xe0\xc7:\xcc\x04\xec\xf1\xa1Í\xfd\xf6ӂ\x80\x1d*\xa9<\xcfF\x8d'\x84hk\xdcY\xba3\x18\x1a\xbc)\x9fxhK\xce\xe7m\xb6\x9d\xdb\xe5\xb9R\"\x97.\x17\xb0\x1d8BX\xc0\xc25\\F^\x1a\xc47\xd4\x03\x1bB+\xf0I\x00\xc0\x12PW\xc0\x02M\x82\x8b\xe7\xa1) Ib\xcc\u20f9سI\x95\xc9\x0f9\x91ʷ\x8d2ȝ\xfc\x80\xced\xf0\xb5\xa4_ǸG\x12;\x96\xb9\x8e\x12\b\x982\x861\xfc\xb8H\x10\xb0\xca\x1a\uaa7f \n\xd8ԋ\x92\x0e\x9a\xaa?\xfa\x84\xc1\x82\x0e\xf94\xe2,V\xe5\x13\xe7\x15\xd0Q\xe0\x81\xed\xf2\\\t\x92K\x17\x05\xccĺ^\xf9R_YX\xc0\xc25\xb8\xd3\xf6\xba\xc7s\vB\xf3+\xea4\xab{B\v\x00\x84PW\xc0p3\x9b0\xe1\xb7\xf4ȒN\x9eȆ\xaf9\xe4\xbfV\x93p/\xa5\v1\x0f\xdc\x17䦮C\xec\xd2\n\x8f\xd1\x19\x05\x85t8v\xbc\x1a\xc7\x170wCt\xb8n)\x12\x01;|\x81\xec\a\xab\xc4!$\xc6#:\xea\xc3\x1f\x13\xbc_\x8d\xb7\x99y\xe96AE\x94O\x9cCu(\xb0=\xbe\x80I.\x9d\xbc\x16b<-4K6\xa3\"V\xc0F\xd1\x16\x84vz\xc4ぼ\xe8\xf0\xbd\x00\xb0JQY\xc0\\|\xb7\xd3\xedd\x9e{Yr\xc8\xfd\xb0ɪ\xfa\xd7\xfe\xfc {R'\xe8\xcf)Tji\xaf@MT\x056\x9f\xb3\xb6U\xb0\a\x82\xbd?ɻ~\xf782\xd1\t\xf1G\x06\xf1\xe8\x91M6OT-\xfbb\xc2uK\x98\xfa\xacc\xb6O75[\u007f\xfa{\xdc\xca]\xe8\xbc]ŕݙxk\xaf\xf9rbn\xb6\xd6\xf0\xe85\x91\xae\xdd\xf5\xfd\xdf^\x11\u007f[\xe4J\xbb$\x14T\xde\xc9\xf6\xac=n&`\x81f\xba\x88\xdf@\xb3\xfaK\x1a\xc6aG\xa9\x98p\xd0%\x9a\x03\x9f\xe6&\xb4~O\xe2\x05\xe9\x9eԜ\x8a\xc9[L\x90\xee\x05\xd8\x0eE\x02@\x9eѬ\x9e\xef\x0f\x00X(*\v\x98\x10\x9a\xd0+\x84\xefp\x98}\x1e&`N\x13\r\xc1\xe339\xe3\x97S\x97\xf0\x12\xf2L\xc0\xf0o\xd0r\xaev\x1dO\xc0*\xb2cϺ\x00Q\n\xb3\x00[\x89\x80\xf9\xb2a)\n \xf5P[\xc0\b3n\x8b\x95\xf6\xb5|&\x17\x16\x04\xac\xe7.;pw\x19Gjq\xf0\x96ksN\x9e\xd4n\xa6\xee\xa2\xeb\xf9\x19\xdbi4\x1f\xab\x18`-\x1f\x87\x04\xac<\x87\x197\x15d\xe4V3Q\xf1}\x9e\xb7\xb9p0\xe7ntu\xe6-luiw\xa6XE\xa6\xa4W\xf3\xaeL\xd7h0<\xbaQb\x9c%\x03\xc7\v\x06\xdd\xe1\xb3\xcf\xd8\x01\"`78\x8eӿ\xc28x\xbf\xa6\xb8\xf2\xe6,\xcb\xf6g~\x1e*\xea:\xa0ݴe\xaf\x87\xa44'\xabs3\xf6\xb0^\xec\xc1lMξqL\xbd]\x9b\xf8P\xae\x14\xcd\xf1\x8a\xec\xac}\x82\x93+\xd46yR*`\xf8Lz$\x90\x1b\x00\xa4\b\xaa\v\x98\x97\xe7y3S\x01k7\x16\x05\xacMX\x06~@\xf5Ga\xfe\xbc\xec\xaf\xcfi\xd2M\xbf\xb8\x8c\xf1\x11\xcd\x19\xeb\x19M9\x91\x86\x01\x16\x03\xc3F\xfb\x83\x0ed\xf59?G\xac/S\x91v\xdczU\x9bO\xb4\u05f7M{\xe9\xee1\x84B:\x10f?\xdaê5_\x150\xfb%\a\x1f\x95p7Ose\xb7\xcb:h8\xee\xaf\x1e\xf5\x9d\xe5hT\"*`\xdf\xd7s\x1d4}\x85\xbb1\xd2y\xa8\x8aŋ\x1c\r{\xdez7\xe77t\x9fC\xe4\x1a\xb1\x06\xe55\xb7o\xa1\xb1\x89\xac\xa8\xa2ײ/m\x88\xf4_\x9b7\"mݥLi\xe44\xccl\xf3[Z\xb6gе\n\xc3m\x93%\xe5\x026 I\x03@\x8a\xa0\xba\x80a\xaf\xc7\xc1B\x119\xa9\x8c\t\x02\xd64Ď\f5%,\xb8\f\xb4 ҅\xf9\x9a\x05t\xedb}\xad.\xc4zU\x92!$\x85\xdd\xeeVD]\xeaC4huy\x96\x87$\xabc\x05l\xb2N\x88p4=) _\x1b\xdap\x11\x8fp\xc3\xf8\xe2W\x18\xcf\xf6\x91nV\xf0\xc4y\x9aM\x04\xac\xa3\x88E\xe9\x1e\xe6\xee\x93\xd7\xc7\xc2cIk(H\xf7L\xce\x1e?\x8d?GgTh\xb6\x90\xd7\n-I\xf9,\xf4[\xe0\x13\x1a\x87\x17k\xb2H\xef\xab\\\x8b\xe5h\xf2H\x97j&\xb7@\xd66Y3e\x02\xe6F\xb70\x00\xa4\x18\xea\v\x18\xa67c7\xf5x\x05\x02\x01wS\x80\xf4hڄ`ֽmI\xca}pNe\x91\x17\x17\xa2=\xbf\x8aOXN\xde\x11\xfa*\x11\xb0K\x83ւt*%\xa5\xdb\xfc\xf3\x84\x9c\n\x1c\xc8`\xb3\x1b\x9c\xb1\x02&2\x89BȆu\x86>\"N\xb3,D$~\xd5Y{\xb4\x84\x13CD\xb6rL\xbfp\xfdѹw\x04\xc3\x15\xba\xd3\x1e\x12\xb0\xbb(\xb2г\x86:\xaa\xceih\xd2{}϶L$\x84\x88<\x12Ε\xa0\xf9\x82\xbe^G^i\xdbd͌\x12\xb0\x16\f\x00)\x86\xca\x02\xe6\x17\x1e4\x8e\xf3\x81I>\x84\a\xf7\b\xb3\xc1\xda{\x12\x15]\x0e.\x93\xbb\x9btGh\x0f\xec\xd3},go\x01}\x95;\xf1}iԳ\xb5]Ԥ\xfd\xe4VgJ\xeb\x8b+`\xd8f\x15\xb0\xc9r\r#\xf8\xb1N\x88q\xfb\xf8\xd0\xe1\xc6~\xfbi1HwI\xe5y6j<\xc1\t\x9c\xa5;\x83!q\xb9\x8c\"\xce)\x16\xb8\x9bŢ\x1dڒ\xf3y\x9bm\xe7vy\xae\x14\xc1\x89oC\xa3Ҷɚ)\x13\xb0!4\x80\x01 \xc5PW\xc0\x02M\x82_\xe7\xa1)\x10\xf0R\x1cf\xaf7\x80\x9d<\x1d\x0e\x85&W\xa8\x88;m\xaf{<\xb7\x80\xaaj\xc56\x96\xb35\xd2\x03\xa3\xf3\xd2\x04'~&\x15\x88\xf2m\xa3\f/\x0e\b\xa1\xad\x1d\xf1\x05L\x19I\x90\xee\xca\x1a\uaa7f \n\xd8ԋ\x92\x0e\x9a\xaa?\xfa\x84\xf1\x8a\xee\xf84\xe2,\xd6\x1eI\x9c\xd9H0\xed\xbc\x02\xfa\x9e\x1d\x88\x1f\xa4\x1bkhTolB>i\xdbd͔\tX\x9df9\x1f\xb5\x02\xc0\xb2\xa0\xae\x80\xe1f\xaa\ad\b\x19\xeaky\xc4y`T\xd7z՟\a6\x8a\xb6 \xb4\xd3C\x93V6\x82jA\xac3XX\x88\xf14\xb2\x84\x04lK\xf5x\x1d騱\x99\xed_\x10\xb1(\xd5R\u007fTy\xac\x80\xb9\x1b&\xa3\xb3$H\x04\xec\xf0\x05\xb2\x1f\xac\x12\x87\x90\x18\x8f\xe8\xa8\x0f\u007fL\xf0~5\xdef\xe6\xa5ۄ\xf7×]H\x9f\x05\x1c\xa7z\x14\x91\xaa\x1c\xea\xb3\x0flO$`9\xd4u\x96W(k\x9b\xac\x99R\x01\v\xe4%\x88/\x0e\x00\xab\x14\x95\x05\xcc\xc5w;\xddN\x8b8\x13?\xe0q\x98=T\vܦ\xde\xc9\xde\x15\x98\x89?\xaa\xe9\xb1\xda<\x82N\x94\xa7\x9d\xb2\x9eJ\x13\x1eϝ\xd3\\jߕA\xaeg\x9cy\xbbw\xee=\xf2\tƧP\xa9\xa5\xbd\x02\x11\xc9\xf5d\xe7\\oۯ\x89\x15\xb0}(\x81\nL}\xd61ۧ\x9b\x9a\xad?\xfd=n\xe5.tޮ\xe2\xca\xeeL\xbc\xb5\xd7|917[kx\xf4\x9aH\xd7\xee\xfa\xfeo\xaf\x88\xbf-r\xa5]\x12\n\xf6\xfe$\xef\xfa\xdd\xe3\xc8Dg\xd7\x1f\x19ģG6\xd9<\xb8\x0e\x1d\xbc^\x97\x8f\xb4\r\x83\xd2\\)\x1a\xb4g\xb0\xa7 \x8bJ\xaa\xa4m\x91$\x9b\x89\u007f\xd9f\x13\xde\xf6\xcbh9\u007f0\x05\x00˃\xca\x02\x86==\x16S۠8\xbb\xc0C]`\xcd,\xd5ej\xf7$(\xb6L\fh\xa8WkS!u\x82\x05~\xb3=c\xfbׂ\x98\xf9\x8fg\xa5\x17\x0eal!G\x1b\x88\x8c\xe5ji\x8f\xa5k\xa76\xebS\xf6\xf8\xce[\x91\x93\xbe\xebA\xac\x80\x99\xb5|tV\x98`\x19\xc7\xf5\x15s\xc5}\x1cw\x1e\a;*\x8b\x0e\xd5߯\xd4\x19;\xa9\xd3\xeb)\xc9\xe4\xe8|ֱ\xd3e%\xc6\x11\xb1ę\x9f\x88^)\xd7\xc1\x9ĉ6:\xe3\x8b\\\xac#\x83\xbc\x1eÁ˹\x1am\xa9y\x9b\xa6P\x9a+%\xaf\xee`fv\xb9\x87&%m\x8b$\x8f\x88N=\xf6\xab\x03[\xfaI\f\x00)\x87\xda\x02\xb6\xaa\xf0n>束\xf7\r\x1d\xc8Z\x8a\xfb'\x81\x13\xff\x03Q\xad\xb1$3\xf9@\xb4h*\xe6\x93\xd9\x00\xc0\xeac]\vX{\x96\xd0\xe1\nhc\xe6\xd4/\x80\xe5\x170|9G>\x93l\xb9\xf0f\xc3b\x14@J\xb2\xae\x05l4\xcd\xc1\xb6\x8e\xb4\xc8L\xab\x85\xa3\x82\x80\x01\x00\x90q~\xef\xa6\x00\x00 \x00IDAT\x90u-`\x81\x8a\xf4c-\xbd-\xc7җ\xf2;fW\x17\xaa\x1eT\xfd\xb9)\x00\x00\x12ֵ\x80alݓ\xad\xc9\xdecMf\xa6ħ\b\xa1\x8d\xaedV\x00\x00,#\xeb\\\xc0\x00\x00He@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00P$\x15f9\x82\x80\x01\x00\x10\x8b\xa7b\vڟ\xcch\xe5\x01\x01\x03B\f\u05fcNf\xb2\xec\xb4\x17x\x93\x99(\xb1\xc4b\x80\xb7 N$\x9d@^\x1eߣ\xfe\x02W\x8bFm\x01\xf3t5\x9b,\x03\xa1\xc5\x1f\x1c|x\x12|\xaf\xea˱~\b\xaeq\xe2\xe2]\xcbǣݜ1\x88\xfb9n\xf7\xa3x&S\xb5\x9f\x95\x18\x1f\x9d\x98\x88w|a\xdc\xe1Z\x83\xf8>\xc7q\xb7\xf1m\xf2z/\x81\xe9\v\x1d\xf7K\xb2\xf9\x92F\x83{\x11\xdf̾[\\#[\xff,\xbe\x91\x8c\x06$.C\xfb\xd7ke\xfa\xda`b\xe3\b\xe1b\xb1\xd0\x06q\x9f\xd5>\x8dw|\xa9|\xc5qt\x15\xdd\x0e\x8e\xfb*\xea\xc8ءa\xa5\x02\x1f\x8a\x0fܠ\x864\xe5\xdf\U0004fce5\xd3@S\xf8\xc0P\xfcR\xcbH\xef\xfb-\xe3\xf7\xbd]'\tK\xfb\xe8\x89RR\x82rnb\x83\xb91Nodz\xfd\xdc\u061cB\x01\xca\x13\xdd\xd9\xfe\xbe\xf3\xef+\xa5\x9d,$\xd2\xdb\xfb\xdc\xed\xd7\xf8\xf5\x1d\xee\xfe\xdb\x04\xb6\xc1\x89/\x8b0m\xbd\xbd\x93K \x9bs\x13\x87j\xed\x84\xfb\xdc\b^\x10\xbfI3\x8b\xa9Ӈ:/\xea\x13]\x82\x94H\xb1Xh\x83\x1eݯ\x89\xaf\xfeK\xe4e\xf1\x9d\x1f\xc8\xe6\x87;\xc5/\xa3\x8e\f\x17\xf7\x8b\xa9\xa4\x1f\xf7R\xf8 \r\x92\\\x99u\xe3U%\x8b!$\x0f\xe8\xb0ZQY\xc0\\<\v\xca*\xae~o\xedq\x8b\x02汬\x90\x80\xed(Mf\x91\x84\"\x89\x80\xd5\\PJJP\xceMb0\xcb]\xfc\x92tz\xb8\xd9\xd8C\x02\xb5\xa7IW%\xf8\xe5\xfb\t\xd8\v]#\xdbNqc\xe4\xf5\x117\x95ؼ\xb5H\xd8>N$`\x18\x1f\xbdF_\x9f/P\xc0&5\xa7\xc4\xd4\x0f\\'\x0e\xc6mp\x14\x91bJ\xb0\x06\x05\x8d\x95\tL\x96\xc4\t\xa1\x8bz\xefD̑p\xc71\xe9ǽ(\xbc\x85\xc20\xf9C4Hzeg4J#š\x14\t\x13\xaa\xb2\x80a\xd6\xf5\xf2\xf2\x1e\xbaq\x98}\u009a\xf8\xb8\x97\xef5\xad\x8c\x80\x85\xe3\x0f-\x15\xa9\x80U]PJJP\xceMb0\xcb=*\x9eM$`G\x99\xf4Lq\xa1/\xfe%q\xc5 Կ\x1c\x026\u05f9\xb0\xbeTEvȷ\xf0\x82[\xc40,RL\t\xa1A\x9d\xf1\u07fe%r\xfe\x1b\xb6i<\x1f\xdf$\xe9ǽ(\x1cHX\xfc\xe9C4Hze\xbel\xa5\xc5X@\xc0\xe22\xe3\xb6X\xe9\x03Z\x9f\xc9%\x06\xf5\xc03\xbePp[U\xb1\x8a\x8b*\xe7\xd3\x1d۞\x9cMڽ[c\x8c\xcc[\xd82\xd1\xeeL\xd18S\xfe}U\xd4x\xb3R_\xfb=\x8dJ+P#K^\xe3t\x9d_\x19>;\xfbB\x96K\xbeA\xef\xd7\x14W\xded\xff\x83\xf6\xdaú\xb2\xda\xc3A\xb9A\x84Y\xeeEU\xbf(`\xe1b\xad\x1c\x1d2\n+Q\xd7\x1b\xa8\xda\x04Gd\x06\xcft\x1c\xf7͋\x8bG\xf5\xb5凞\xe0\xd7\xeaS6 \xe5抅\x0e\x98T\xc0\xde^0\xe8\x0e\x9f\xa5\xee+Ҋ{b3\xc9\xc0\xb1\xdePr\xe1\xcbh\x01S\xaeW\x100,:\v\x05י\xac2\xfc\xe2B\x99\ue410\xf6g~β\xe6ʄ\xf7\xe1\xe6⊝#\x1fN3n&\xafg\xb0\x04\xa1A\xf5\x06\x9aVz\xd7%\x9f\x101\xe8\xac\xd1Wu\x06\xa3\xce\x16\xb6\x95\xd6\xc0\xc2{b|\xa1Q\xd6\xe2\xb7zN\x1c\xcb+\u007f\xdc\xf2w]\x81\xf1\x8d\xe4\xfa]\xe5[\xd3\xf7ȖȽ\x9aku\"\xa75\xf7z\xdc\x06\xcd6\xfe\xb2\xd88a\x18\x91\xbeg\v\xfb?;\x93\x1e\x89\xdb\x17\xa6\x17\x04L\x19/\xcf\xf3f\xf6\x8di\xed\x0eE%\xa2\xac\x84\x80\xf9\x06l\xb9\x856\x9b\x8d\x0eh\x87Б[ݼ\x16Ŭ\xac\xbc\x1f\xed\xa1\x1b\xbf\xf9\xaa\x80\xd9/;\\\xc4U\xf6\r\x97\x91\xaf\xe1\xd9\t{\xa5\xd1n\xb7?\x97%\xa7\xfat\xdc\xe1۷\x0f매\xb9\xa4\xc3\xc3\xdd\x18\xe9\xae\xd5n\xff\xcb\xe2\x8ayK\vl>\xf2\x99~Z*[Ɩ4h\xf6y#w[v\x91\x92w]\xf2\ta|\xb1蛑o\x8a.\xca\xcf\x16\xb1\x95\xd6p\xaf\x06O\x18&p\xd5=y\x8b\x1f\xdb\xedz\xd6)W\xfe\xb8\xe5\xef\xba\x023\x96歹\x999\xd5\xe5\xf2\xa0Ȟr\x94\x87>A\xa5\xeex\rz{\xf4\xb3\x8e\x11\xa2]\x9d\xd2\xf7la\xffg\x031Z5?ݻcIˬ\xab\x8f\xea\x02\x86\xbd\x1e\a\x8bJ\xe4\xa42\xb6\xb2\x02\x86%C\xc8\xebZ*]_g\xc5Lޛ\xac\x13B\xa5MO\nD-\xf2\\t\xe8\xaf\xe4\xdf\xe4\x10K+\x0e!\x8b\x8e\x92\xf1\xd3\xdb\xc35\xb2\xdca\xe61\u007fL\xbf\xab;\x0f\xd1\x1b\xa3\xb3$\x18UC\x18\"`\xaf\xf4\xaf\x98\x80I\x8a\xddg_\xb0\xf8\x04\xcd\xf8\xe1\xf6\xbf踒>y\xbd\xa42\xee\xf4[\x1c\xa4\xa3\xb7+\xf5\xe4\xa5\xfeJ|\x03<\u0089\xff\xceS\xe2\xd73\xb9\x9dg\xfb\xc8)\x83'\x98b\x14\x95\x90\xbe\xc8E\xdaLc%ˍ\x12\xb08\xf5\x1e\xa5U\xb1\xbe\x820\xd6\x16F\x9e\x91\xca\xe6\x0e\xd7\x12\xe1\x9d\xeb\xa3\xfep\xd2!\x0e\a\xa5\x8b\f!\x17Q̜\xc76\x9f\x84\xff\xa7\x18B\x83.ҷ7λ\x1e\xf9\x84FX\xe7f\x8c\xb9\xec\"g\x93\xd8Jj\xb0\x97\xe1F]#\xfe\x8c\t\xbf\xe4\x9d\xc4X\x1f\xf2*(}\xdcQ\xb6J\xe4\xa3]>\xd1\xd9\"\xa1k\x13\xda\xc4V>Wn\xd0Ez\xb9\xf8\x06\x110\xe9{\xb6\xa0\xff37\xba\x85\xe5\xec'\xdd\xd8%-\x92\xa7>\xea\v\x18\xa6q!\xbb\xc9\x00\xd2\x19\b\x04\xdcM\x01Q1VZ\xc0\xdc\xd9[\xff\x99\u007f\x18\x90w\xaf$L\xa2\x10QCH\xfa\x14]\xf4\b)\v\x18\x1b\x9bur?Hs\xeb\x8fν#\x18\x88\xa6\xbc4\x1c\xbdq\xefip.\xba\x860D\xc0pm\a\x130I\xb1g\xdc\xdc\xec\xfd\xb7\xef\x8a\xc4\t\nsc\xb5\xf4\xb6\x93\x18\x90ʊB\xdf\xf2\x8f\xf4\xa4\xb7\xa6\u007f\x84\xe3\x1a\xe0~N\x9c\x0e1\xc5\xddy\xfc\xf8q\a\xf3\x81\xbd\xea\xac=Z\xc21/5핰f\xbe\x15\xe6W|\x13%`q\xea=z\xf6\xf1㋱\x02\x16\xaa\x8c(\x86d:@{2\x01KRl<\xcd\xef3\xfb\xe65\xe3X\nm\xd0p\r\x9b\xed\x11\xe7]\x8f|BW\x04\x8f\xfc\x89/\xb1\xf4l\x12[i\rܬ\xf1\xa2q\x96cM\x95\xbc\x93J\x02\x16\xef]W&_\xc1\xab\xee\xad\xd6\xe4\xa0l\xcdIo\x9c\x06\x05\x85\x93NE\t\u0602\xfe\xcf\xdc,V\xa8\x14w\x17\x9f\a=0%\xfc\x82\\\x8d\xf3\x81I>\x84\x87e\xad\xb4\x80a\x1f\u007f0\x0fm\x89\x1f\xdc\xc2f\x15\x88z\xba,\xb9\xc1\xe2\b\x18\xfbϲsO\xa4\xb9'\xc4~\xceY\x92~{\xefB%Wv'Q\x0f\f\xf7W1\x01\x93\x14\x9b\xd3Mup\xad\xcf9\xf2\x0f\xf9\x989j\x82Ƴ\xf2zqUؙ\xf6\xee\xb3~\xdc_\x16\xc4q\r\xf0Dh((\xf1\x81=>t\xb8\xb1\xdf~Z\x10\xb0P3\x1f\vc\xcdh'~\x9cz\xa9\x0flJx\\'U\xa2p\xb2\x83\x93\xcc\r\x19\x8c\fe\x94\x05,I1\xff\xc6\xf1\xcb\xe8_\x9di\xf2/!\xd6 Av\xe3\xbc\xeb\x91O\xc8\xc8.\x1f\xd7\xd6`ى#\xb6\x92\x1a\x82ES\xc5ϊ\xa7t\xc2\xe7&\xf5[\xc6\nX\xbcw]\x99\xfc\x1d\xb1y\rZމ\x9c\xbf\xd1\xd6\xc5i\xd0\xf7\xc2#\x9c\xd9(\x01[\xd0\xff\xd9\x10\x1a\x88>\x1d\xf9wG+sC.\x16u\x05,\xd0$\xb8+\x1e\x9a\x02\x01/\xc5a\xf6z\x05M[I\x01\xa3!u\x1f\xd0G\xf1\xbe\x96\xf4\xc5\x06\xea\x88\x11\xb0{/\xe5ɢ\x1bt\xff\x1e\xf7V\x9a[\u007f\xf4\t\xe3\x15\x91\x80F\xea\xc1\xe8\xd3wF\xd5\x10\x86\n\xd8l\xf1\x98\xd0\x03\v\x17Õ}\xa7\x8d\x95\xfdt i`g\xc0\x8d\x95r\x03\xe9\u007f\xe9\x8d\xf3\xf8<\xb3\x8ag0\x1bz\x9a*\x11\xb0\xca\x1a\xeav\xbb \x17\xb0\xbf\xb2[\x04_\x8c\xe9\x81)\xd6\x1bv\xe2\x8b5|\x13\xa5Dc\x9cd\x8a\xabO\x13\x9e\x8e\x1a%`\v,\x96\u05fc\xf3Ӽ\xf6<,ChP\t-\x1b\xe7]\x8f|BW\x8e2G\xfdQ\xda\xf9\x8a\x9cMb+\xfb\x00\xee\x18\xb0\xa1\xa3\x92\x9dD&\br\x01\x8b\xfa\xb8\x95\xbf\xa4d\xe4\x1fP\xc8\xf4\xb3\xa7\x90T\x9b\x15\x1b\x14\xd43\x9f\xd8\u007fD\x04\xec\x9b\"\x1c\xb7\xc5\xf2\xff\xb3:\x8dBg\v\x9eB*\xd2̦\xf7\xfa-=\xe2\xfe\x8a\xfb\xc0\n\v1\x9eF\x16\xf2)\n3\x8f\v\xe5\xc1a\t\xee\x86I\x9c\x00\xa9\x80\x19\x8d\x18\xbf\x16\x1c\x1d\x91dQ\x19\x91\x81٣FY\xee\x98`\xd5x\x9b>Od\x93\xa4\x8cעj\b\x9f\x98\n\x18\xbeXO\x05LR\f\xd7\xdfЍp\xd7\xe8?b\x99\x81\x0eO\x83\xf4\x9fRj \xbdS\xfe\xa4\xff\x8b\xfeO4\x11\xcf\x00_\xa8d_\xcdR\x01;|\x81U+\x170\\s\x98\x9c\xed\xb9>J\xc0\xe2\xd4+\x110=\x19\xa8\x05\xff%J\x89f\rFڗ\xba!Hp鶀h\x1c\x11\xb0\xc5\x14+\xfdgM\x17:\x165\xb3OhС\x1bS\xb7\xe3\xbd\xeb\x91Oh\x84\x19\xf4\t>\xb0\xf0\xd9$\xb6\xd2f\xd6\u0590o\x05c-;\x89\xb2\x80)}\xdcr\xdb\xc9:\x85\x89\xd4q\xa6\xf6\xb8\xb3\x84\x91\xa5r\x83.\x94\x11\x91\n^d\x02\x16y\xcf\x16\xf2\u007f\x16\xc8\xdb\x1bs.\x10\xb08\xb8\xf8n\xa7\xdbi\x11g\xe2\a<\x0e\xb3\x87\xceΛ\xf1x̽\x1eub \xca9\xa7\xb9Ծ+\xc3M\x05l\xf39k[E\xe8AX\x84}H\xe9\xf3\x15\xf9\x8b]\xf7\xe5D\xf0\xe9\x97:\xfaȌ\xfc\xbbw\xf4\x9f\x16ffG\x92E\\M\u07fdʒ\xe7\xf2\xdc\xc6\xdd\xf5\xfd\xdf^\xa1\xffB\xad\\q\xebp\xff\x15\xee\x91\xdc |\xe2\xb91\xae\u007f\x16?ҳ\xa7\x90\x91b\xf8\xb6\xbe$Xɾw\xcb8C\xebH\xffi\xfds\xa9\xc1\xbb?\xb1GM\xa2g+h\xa85\b\x02\x15\xc7\x00?\xe7\xeeЍt&~+w\xa1\xf3v\x15\x19uLH\x9b9\xa57\xdc\xfe\xe63Nw\u007f\n\xbf\xa43\xf1;\xec\xf6\x97q\xea\xa53\xf1'f\xc5\x13\x18\x0fݹ]C\x8b\xc9\u07b3G\xfa\x13\x9d#7\xc4\xdf-\xb9\xd2.\xb1\xad\xf0\x14r\"\xb8\xc8b\xb8!#3\x90\x9b^\x87eL\xb1\x1b\xf7t\xed\x97'\xe2\xbd\xeb\x92O\xa8\x9ek\x1cn\xe4\xea\xe5\x1f\xac\xd4V\xf2\x01\xdc\xd8}\a\xdf\xd9M4T\xfaN\xceM\xd8\xed\xfa/\xedv\xe6\xa3W\xf8\xb8\xa3\xde\xf5}hsT\xefg~\x90=\x19O\xf0\xa5\xa9ܠ\xbf\x18\x0ew\xf6\x9f\xd73\x01\v\xbfg\v\xfa?\xbb\x8c\x94~\x8d\xf2@i\\\xb9\nQY\xc0\xb0\xa7\xc7bj\x1b\x14\xbd\x14\x1e\xea\x02k&\x89\a\x827l\x05܆\xfe\xe3Y酴\xf3\xd7TX\x97\xb3)\xbb0F\xbf\xb0Y\xcb\xc7\x16\vq\x8d\xe38\xdd\u007f\x14\x93W\xfa\xc56w\xe33\xbd\xf11;\x10I\x16ݼRb\xb8\xf8\x97\xa8\\\xa1`\xe7\t\"\x8dA\xf9\a+\xfb\x84\"\x1f\xc0\x88\xfe\x19\x9e*\x1e\x96\xbf\x93Oŷ\x84I\xab\xc2\xc7\x1d\xf5\xae\x9b6G\xbb\x9a\xc6\xd3ؓ\xa2\xf8_\x9aq\x1a\x84_]9\xac?\xfd\x98\tX\xf8=\xc3qZ,\xbd2[\xfaI\xa5\xd3Lo<8>\x1d\xc0\xab\x1e\xb5\x05l\xfd!\x9d\xaa\xbf\x9a\t\xde\xd0\xf5ᕦZcIf\xa2\xc4\x12\x8b\x89\xac\xe4'Ԏ>跶\xe0\xc4_\f-\x9a\x8a\x98\xa9\x8f\x8c\xf6<\x04\xcb\xe9\x00+{{,\x8a`\x87\xe1U2\x9be\xe7rΒ\x1c\tK,&\xb0r\x9fP\xc0\x9c\x15\xe3s}/\x16-`\xde\xec\xf8\xcfݧ\xc7=q\x8f\xad\x1a@\xc0\x96\x9b\x95\xbb=\x80\x85\xb1r\x9f\x90G[\x1dw\xe2\xe1\x92X\xb4\x80\xa5< `\xcb\xcb\xf7\xcc\x19\x9c\xcc\nX9\xd6\xd2'\xf4b\x84\xbb\xf9\xa75Җ\x05\x02\x02\xb6\xbc0gp\x825\xff\x80\x95f-}B\xc65Ԗ\x05\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x96j\x04\x02\xf3\x01\xfa\x97\xcc\x0e\x00\xd6\x01 `)\x86kG^\xde\xdeO\xf2\xf2\xaa?\xe8o\xe8\x00 5\x01\x01K-\xe65hg\xe1G\x19;wl\xf8W\x85P2\x00\xb0\xceP[\xc0<]\xcd&\xcb@\xa8\xf7\xe0\xe0\x85\xd0\x01>\x9b\xc5\xd4>\xae\xfc\xab\xf8\xb5\xc8\xd2\xc3\xc3\xfb>\xae\xfb\xdbߜ\xff\xdf\xdf\xfe\xef\xc7\xfb\xbc\xc9l\x01`ͣ\xb2\x80M\xf3V\xa7\xdb\xd9&.h\xe83\r\xb0\x15Y}\xe6v\x87\xfb\x81\xb9}\xcd+X(\xa2\xfbR\xc2ÿe\vV\xcd|\xb2aÆ@\xe9\x86\r\x1f\xd5IƐ\xbdJK\xd2\x01\xc0\xdaGe\x01s\xf1tY\\\x1f\xefd{\xd6\x1e7\x13\xb0\x1e\vuI{M\x0f\xe2\x17\\\x1b\x84#\xba/:<|\xf0^\xc9i\xba\rx\xaa\xf3\x89\x80\xfdh\u007f\x83K\xb2\x8e\xc1\x8e\xa8e\x94\x01`\x9d\xa0\xb2\x80\t\xd1\xee\xbcB$\"\x87\xd9'\xac\x89\xdf&,Gכ\"\xa1\xe8\x96N\x95L\xc0\x16\x11\x1e~\xaa\x86;+\x84\xa4\x0e\xf8x\"`\x1bG\xbd\xd2uX⬢\x0e\x00k\x1d\xb5\x05\x8c0\xe3\xb6Xi\x8f\xcbgr\x89A=\xc25\xaejJL\xd2\xf5\x9e\xb8\xff\x1c%`X6\x84\x8cĥ\xd7\xd0\xf0L\xf8_\x89\x05,\x1c\x97>\"`\xa5\xdb\xfc\xf3\x84\x9c\n\f\x00k\v\x95\x05\xcc/\xc8\xd58\x1f\x98\xe4Cxh\xce|\xaf\xf8drMб\xfb\x15\xed{ю\x934Z}\x94\x13?axx\t/j\xb9\x9a\xa9\xc8n\xb4\x0f\f\xcb\x05,\x1c\x97>\"`\xdbE/Y\n\x04\x99\x01\x80E\xa1\xae\x80\x05\x9a\x84\xb8\x8b\x0fM\x81\x80\x97\xe20{\xbd̡om\xf2$,\x99Z\xbc\xe4j_>\xab4\xd2~\x934Z}$\xa2{\xf2\xf0\xf0R$^0\x1c_\xc0L\xac\xeb\x15\x89K\xcf\x04쌆\xbc\x94o\x1be\xac\x99!:\x00\x88\xa8+`\xb8\xb9\x8b\xbe\xfa-=\xe2\xbe\xe8\x03\xf3\xb6\xb4\xf9\x88\xbc\xad\x99\x1f\xc7<\xe1\xca8\xee4\x9b\xf7 \x8dV\x1f\x89\xe8\x9e<<\xbc\x1c\xfa\x1crLL+\bXa!\xc6ӈMF\x89t\xc62>'o\xe9\x0e\rIu\t\x87\xbe\x88\x8aY\r\x00)\x8f\xca\x02\xe6⻝n\xa7E\x9c\x89\x1f\xf08\xcc\x1e\xd2-p\x9bZ\xdc\x1e\x8fg\xe0}\xa2\x93\xae*\x9e\xe9\xc7F\xec\xdf\v\x8e\xabp\xb4z,\x89\xe8\x9e<<|4S\xc6\xd0\xf0SA\xc0\xcei.\xb5\xef\xcap\xcb\xe3\xd2\u007f\xaam\xa8+@\x1b\xcddh~\n\x95Z\xda+\x90\xe4\x89\t\x00\xac\tT\x160\xec鱘\xda\x06\xc5I\x98\x1e\xea\x02k\xc6\xf8\xae\xe8\r[3\x13Y't\u052b\xa53R\xcfU8Z=\x8eDt_@x\xf8\xf8(\b\x98\xffxVz\xe1PT\\zWaz\xe6\x9e/\x10\xa2\xa1S\xbbvj\xb3>\xbd\xabT\x1b\x00\xa42j\vغ\xe0u\xf1\xb5\xd7\xef\u07bd}z\xfe\xb3\xb7\xc9L\x15H\x16\x9cTA\xc0\x00`\x9d\x02\x02\xb6\f\xf4\x97\b\x1d\xae`Y\xf4\x9c\xfa\x85\x00\x02\x06\x00\v\x05\x04l\x19x\xc2\t\xb3\x1e\xa6\xb8%,\x98\x13-`\\\x14\xff\xf9?\xd1\xd5(>\x1f\xf8\xb01\xe9\x01 %\x01\x01[\x06\x82W\xf4\xd7\xfa\x1e\xf5]\xd3\u007f\xb5\x840\xef\xd1\xe1\xe1\xa3\xf4\xeb?\x85\x96\xd3i\x03\x05\x03\x00\x10\xb0\xe5 8\\k\xd0\x19j\x87\x97\xa0_I\xc2\xc3\xcf\xd0\x05\r\xff\u07ff\xfd\xed\xff~\xbc\x1f~\x9b\r\x00 `\xa9\x85\x0f\xa1\x9d;?\u07b2sdž\n\x98\x96\n\x00 `\xa9ż-'++7++k\xd7К\x99\xf6\v\x00K\x06\x04,\xc5\xf0{&]\x93\x93.\x97\x1bF\x90\x00\x00\x02\x96r@\\H\x00\b\x03\x02\x06\x00@\xca\x02\x02\x06\x00@\xca\x02\x02\x96\xfalXq\x92]!\x00,\x13 `\xa9φ7+\f\b\x18\xb0R\x80\x80\xa5> `\xc0\xbaEm\x01\xf3t5\x9b,\x03\xa1)\x00\x0eq\x05\x1dy.\xb08@\xc0\x80u\x8b\xca\x026\xcd[\x9dng\x9b\xb8\xa0\xa1\xcf4\xd0\x14\x9b\v(\xf2\xf6/\U0004e000\x01\xeb\x16\x95\x05\xcc\xc5B\x0f\xf9\xc4\x00\x1e\xd6\x1ewSl.\xa0@\xf0^\xc9\xe9x\xc7$\x02\xb6`-[\xb0\xe1\x9b\x05\u0602\x80\x01+\x85\xca\x02\xc6\x02\x16b\xaf\x10\x89\xc8a\xf6\x89k\xe2Ks\x01\x05\xa6j\xb8\xb3\xdf\xc7;\b\x02\x06\xac[\xd4\x160\u008c\xdbbe\x91\x88L.I`\xdbP\xee\x1a`~˦/r\xb2{\x8fg\x15Ra\xb6\xed\xc9٤ݻ\x95\x1e\xf0\x96ksN\x9e\xd4n\x8e^\xfb\u07fc\x85\xa7\x1bw\xa6\x18\xfe,3*B&\r\xe91,\xcfz\xa6\xe3\xb8o^\\<\xaa\xaf}\a\x02\x06\xac_T\x170/\xcf\xf3f\xd6\xe3\xb2vG\"sGr\xd7\x02\xbd\x99\xa8z\x17\xd26l\xb9L\xe3a\x1f\xb9\xd5\xcdk\xd1<\xc6\xfe\xbc\xec\xaf\xcfi\xd2M\xbf\xb8\x1ce\xbf\x1f\xed\xa1\x1b\xbf\xf9\xaa\x80Y\xb6ԗ$\xa8\xda\xdc\v\x819<\xd7\xd7w\xb8\xb2\xd8p\xb3~\xf7K*`\u007f\xf8\xf9\xc7\x1f\xfd\xf4\u007f\x13)\xf9\xdf?\xfd\xe8\xe3\u007f\xfc3\x11\x95_\xffxÏ\u007fM\x0e|L\xd2\xffH\xfe>\xfe\xa3 6\xbf\xfd\xe9G?\xfa7\x89!)\xf9\xf1\xcf\xff,ɈT\xf1ۿ\xfb\xe8\xc7\xff\xf4&\"`b\x95o6\xd0\x04\xa9#rV\f\x00+\x83\xea\x02\x86\xbd\x1e\a\x8bJ䤂\x15\ue045r\xd7\x06\xd9\xe5؊\xac\xf8H\x05\xc6\u05f5t\xf1篳H\xef\xb2\x05\x8d\x93\x14rĘO\xd6\tq\x84\xa6'\x05\xa6eG\xafqU\xa1\xb0\xb6FqUC#ݩ\xe2N\xbf\xc5\xc1\xb7l\b\xf9\xd3_\xfd\xf9\xbb\u007f\xff9\x91\x92\xbf\xfb\xddw\u007f\xfcG\"X\xff\xe7G\xbf\xfb\xf3\xef~\xf4\xdb7o~\xfc\xfb7\u007f\xd8\xf0\xc77\xff\xfecQ\xbf>\xfe\xedw\u007f\xf8G\x89!\xd9\xfe\xf9\u007f\xfc7IF8\xf1\xef\u007f\xf7\xef\xdf\xfd\xe1\xbf\xfcSX\xc0\xc2Un\xf8\xd1\xef\xbec\x89\xf0Y1\x00\xac\f\xea\v\x18\xa6q!\xbb\xc9\x00\xd2\x19\b\x04\xdcM\x81\x804w\x8d\x90݂\a\x91\x0f\u007f^Jƅ\xd9[\xff\x99\u007f\x18\xa0}\xaaSY\xe4Ņ\xda㕚D!dC\xc8\xfbE\x9f\xdd\x17WF|>,\xf0\x9c\xeeT\x15\xbd\x14r\x89\xc0|$\xf6\xaf6\xfc\x9e\xbc\xfc\x99\xf4\xba\xfe\xfe\xffP\xc9\xf9\xfb7o\xfeǯ\xde\xfcjÿ\xbd\xf9\xa7\xffG0`\xf9RCʟ\u007f$\xc9\b'\xfe\x81&\xfe\xf8㰀\x85\xab\xdc\xf0[\x9a\xf8\x99\xe4\xac\x18\x00V\x06\x95\x05\xcc/\xc8\xd58\x1f\x98\xe4Cx$\xb9\x89ʦ\x10\xd9]xHC\x14\x8b\b\x18\xf6\xf1\a\xf3Ж\x06\x92\xba\x8c\xbc4\xc8ll\x0f,\x84\xcd*`\x93g\xbf\xa8\xe5j\xa6p\fU5b\x82\b\xcc\xff\xfc\xf8\xbf\xff\x1bU\x13Ak\xc8\xeb\xc7\u007f\x16e\xe8\xb7\xff\xf5\xcd\xcf\xfe\xdb\xcf\xdf\xfc\xfdo\x05\xad\xf9\xe8\xcfoB&\xc2\xeb\x1f\u007f\xfe\xf1\x86\r\x1fI2\"U|\xf4\x11\xfd\x99PX\xc0\xc2Un\b%\xc2g\x8d\xbd8\x00P\x05u\x05,\xd0\xd4˶\x0fM\x81\x80\x97\xe20{\xbd\x01In\xa2\xc2)\x84D\xc0\x1e\x9c\"\xfb\xbe\x96\xf4\xeb\xa43\x96\xb6\xd7=\x9e[\xb0\xf8FJ\xbc`\x12\xaaB\x91n\xa9\xc0\xfc\xfeW?\xff\xf8WJ\x02\xf6\xdd\xc7\u007f\xfc\xe8\x8f\xe4\xef;\x89\nI\x05\xecg\xff\xf3\x8fo\xbe\x93\xeaV8\x11\xea_\xc5\x17\xb0\xf0Y\xa3/\r\x00TB]\x01\xc3\xcd]\xf4\xd5o\xe9\x11\xf7\x05\x1fXtn\xca#\x11\xb0:\xc4\x1aWx\f\xe3Q\xb4\x05\xa1\x9d\x9eXsw\xc3dl\xa6\f\xfa\x1cr,*O&`o\x04\u007f}X}X\x8f\x8b\x8e\xf7\xde\xfc\xc3\u007f\xff\a\xf6'\xf0\xb3\xd0\x102\xf4J\x95\xed\xdf\x15\x05\xec\xef\u007f\xfdFj\x1b\xa92<\x84\xa4\xb0\xb3F_.\x00\xa8\x84\xca\x02\xe6⻝ng\xc8]\x1f\xf08\xcc\x1eotn\xea\xe3̺\xeck\xd94\xee+\xdd\xe9&\x02\xb6\xf9\x9c\xb5\xad\x02\x91N樦\xc7j\xf3(t\xc0\xf6\x89\xb1\xb4\x131e\xbc\x80%\xbc\xfb\x93\xbd\xd2h\xb7\xb3\xe0\x1fD`\xfe\xcb\xef\xbe\xfb\xee\xd7?\x95\xa8\xcf\xff\t9\xda\xdf\xfcjï؟\x00\xc9\x13\x9c\xf8!ß\xfe\xea\xbb\xdf\xffXQ\xc0~\xf7\xf1\xbf\xfd\xf9\xbb\xdf\xfdװ\x80\x85\xab\f;\xf1\xc3gU\xbed\x00XvT\x160\xec鱘\xda\x06\xc5i\x02\x1e\xea\x02k\x8e\xceMy\x02\xa4\xa3՜\x892,\b\xed\xc7M\x85u9\x9b\xb2\v\xe9 y@C\x1d\xf4\x9b\nc\x9c`f-\xafPMB\x9e\t\x8f#ki\x9a\b\xcco\u007f\xf6\xd1\xc7?\xff\x83D}\xde\xfc\xfa\xc7\x1f\xb19\x0fo~\xbf\xe1\x0fo\xfe\xc0<\xf3\x82\f\xfd\xddGt\nD\xd8\xf0\xf7?\xfd\xe8G\xbfV\x14\xb07\xbf\xfb\xd9G\x1f\xfd\xecwa\x01\vW\xb9\x81&\xe84\x8a\xf0Y\x93]-\x00,\x13j\v\xd8:ƻ\xf9\x98w~\xde7t \xeb\x03\xf74C\x02\xa3\x161\xe7\x03\x01\x03V\n\x100\xd5h\xcf\x12F\x8f\x01\xed\xdd$\x96\x8b\x04\x04\fX\xb7\x80\x80\xa9\xc6h\x9a0vt\xa4=Lb\xb9H@\xc0\x80u\v\b\x98j\x04*ҏ\xb5\xf4\xb6\x1cK\xafHf\xb9H\xd4\x16\xb0\x18@\xc0\x80\x95\x02\x04LE\xac{\xb25\xd9{\xac\xc9\xcc\x16\v\b\x18\xb0n\x01\x01K}\x92\x85\xdcX~\x92]!\x00,\x13 `\x00\x00\xa4, `\x00\x00\xa4, `\x00\x00\xa4, `\x00\x00\xa4, `\x00\x00\xa4, `@\"\xfc333\xf3\x18ϓ\xcdZ\xf9\xa9*\xb0\x96\x00\x01\x03\x120\x90\x86\x10J\xf7\xf9\xd2\xc9&-j\x9dE\x00Xy@\xc0\x00\x05\x86k^\xb3\xad\x05Y\x87\x86\x1c\x18;\x86\x86\xac(:\x98\xd2Bi/\xf0&3!x\v\xda\x15\x92\x00\x90\x10\xb5\x05\xcc\xd3\xd5l\xb2\f\x84\x96cp\xf0\xe1i\xe9\x92$\xf0\x01\xf8\x8a\xe3:Ȧ\x83㾊:2v(*D[,w\xb8Va\x15~Kdy~\xb7 `\xc7P\xda\"\x85\xac\x01\x9dKf\xc2hHkPH\x02@\"T\x16\xb0i\xde\xeat;\xdbĥ\v}\xa6\x81PT\"I\x12\xf8\x10\xbc,\xbe\xf3\x03\xd9\xfcp\xa7\xf8eԑ\xe1\xe2~1\xf5\xe8\tV\xa4\x93\xbb/\xa6b\x05\xccc\xdbT\xa7X\xa8wT1\x1b\xff&ͬ| \x06\xebƫ\nI\x00H\x80\xca\x02\xe6\xe2\xe9\r\xe1\xe3\x9dl\xcf\xda\xe3\x0e\xa9\x96$\t|\x10N\xdcc\x9b{'b\x8e\x04C\x89\x1a\xd9\"\xafa^\xe8\x1aC\xc9X\x01\xc3X\xa3,`;J\x15\xb3'5\xa7\x14\xf3\x958\xa3q+$\x01 >*\v\x18f]//\xef\xa1\x1b\x87\xd9\x17\x8a\v)I\x02\x1f\x86\xf3߰M\xe3\xf9\xf8&U\xca\x02v\xc5\x10\x0e \xb2\b\x01\xcb?\xa8\x98]\x91\xbd\xf0\xe5\x1b}\xd9\x15\nI\x00\x88\x8f\xda\x02F\x98q[\xacti?\x9f\xc9\x15\nl+I\xae\x17\x9a\n2r\xabɽ=\xbe\x11\xa13\xae\xf2\xad\xe9{\xe6%\xc9(c\xf3\x16\xb6\xe6\xb4;S\x8c\x1b\x99)ힴr\x1cׇ\xfb\xc8k\xab\xb4Lc=\xdb\\h\xc4\xcft\x1c\xf7͋\x8bG\xf5\xb5\xef\xf0[=\xb3&\f\x8bArYp\xb6\xe0\xfd\x9a\xe2ʛb\xf8\xef\xe2p\aLY\xc0\x8eWdg\xeds\x91^3\xb9\x92/p\x1dy\xb5X\xc5\v\xcbg\x16\xa1\xb6\x11\xfc\x99\x9f\xd3ͻ2]\xa3\xc1\xf0\xe8F\x89\x91\x9e\xc3^{XWV{\x98\xf6\x04_],3ܼYV\xcc.\t\x9fI\x9f\t\x9dN\x92\x04\x80\xb8\xa8.`^\x9e\xe7\xcd\xec\x9f\xdb\xda\x1d\x8e\xcc-I\xae\x13*Ҏ[\xafj\xf3\x03x\xc6Ҽ573\xa7\xba\x1c\xb9%\xc9(\xeb\xfdh\x0f\xdd\xf8\xcdW\x05\xcc\xd29Y\xaf\xebk\xec\xb3xv\xc2X\xffJZ\xe6^\r\x9e0L\xe0\xaa{x\xae\xaf\xefpe\xb1\xe1f\xfd\xee\x97\x18?\xb6\xdb\xf5L\xe8f'XX\x10;\v\x92{\x85\xbb1\xd2y\xa8\x8a\r.\x9fr\xf6p%\x8a\x02\x86\xf2[Z\xb6g8\xb0o \xe7\xd84\xf6\x9e˴\xf9|\x03\xb6\xdcB\x9b\xcd\xc6\\\x03\xe1\xb6a\x1a\x89I\b\x99\xf7\xa8\x84\xbby\x9a+\xbb]\xd6AN\xb0\xfbb\xffؽ2\xee\x1d\x11\xcb\x13\x86\xceV\xbd\xfe^m\a\xb3\x1a@\x83\xa1\xd3I\x92\x00\x10\x17\xd5\x05\f{=\x0e\x16\u007f\xc8IeLP-Ir\x9d`EԳ=\x84Z\xe8N>\xda\xe5\x13\aג\xa4\x94\xc9:!\xee\xda\xf4\xa4\xc0\xb4\xec\xe8\xfd_\xb2͉\x90\xe7]\xc0^\x86\x1bu\x8d\xf83\xa6FU\xdc\xe9\xb78\xf8V8\xa2\x0f\xf5\xd4\xc2C\xc8a\xe6\xb5\u007f,t\xcdF\xb8\xe7\xe1J\x14\x05,\x8f\xf4\x8dfr\vH\xb2\x8e\xf6\xb8\x8e\b\x83\xbd\xf0\x10R\xd66+\x12#\xc6\x19.\x92\x8a\x87\xf1ů0\xee\x8d8\x8b\xd50\x86\x1f\x17\t\x02\xf6\xb8\x91H\xd7\xdb>}'\xed&־|Vi\fM\xec\xa8ӄGϒ$\x00\xc4E]\x01\xc3\xcd]\xf4\xd5o\xe9\x11\xf7%\x8e\xaf\xb5\xeb\x03\x9b\xac\x8b\x99\xe3\xd9%\xa8\xc1\x17\xac3#\x99\x80\x10g.\x82\xbbaR1_\xa4\xfe\x86n\x84\xbbv!ʶ\xb6\xe6<>od\xa1o\xe3\b\x98ш\xf1k\xea\xf8\x1a\x13\xbc_\x8d\xb7Y\xf6\x85\xca\xf0L1E\x01\xcb!].\u007f^!M\xfb\xb5\xd6,\xf1\xb3,$\x19\xd3\xd4F\xd662\xa0\x14\xbe\x95$\x02\xd6ʍ\xd0\x1c\xe35\x8c\x9fpe\x1cw\xfa{\xf1\x14\x81\xbcp\x84rI\x12\x00⣲\x80\xb9\xf8n\xa7\xdbi\x11g\xe2\a<\x0e\xb3\xc7\x1b\x9d\\s\xecC\x9bcz\x13\xa7P\xa9\xa5\xbd\x025\xe1\xf9A\xf6\xfc\x8e\x8a\x8e$\x19SC\xc2\xdb\xf9\xb6\xbe$X\xa9\xbf\x1de{c\xf7\x1d|g\xf7\r\x8c\xdf\xfd\x89=od\x9e\xad\xb9\t\xbb]\xff\xa5\xdd\xce\xfc\xf9\xadE\x1d\xfd\xa7\xd9L\xfd\xc6\xdd\xf5\xfd\xdf^\x11d\f?\xe7\xee\x84jV~\n\xb9g\xb0\xa7 K\xb8\xccS۲\xc49\x1f\xe74\x97\xdaweP\xf3p\xdb(\xae\xb4Kt3\xf5Y\xc7l\x9fnj\xb6\x9e\xa8U+W\xdc:\xdc\u007f\x85{\x84\xf13\xfd؈\xfd\xfb\x90^^Fa\xa5\x97$\x01 >*\v\x18\xf6\xf4XLm\x83\xe2,\x00\x0f\xf5{5G'\xd7\x1c\xa6\xcdh(&\xb3k\xa76\xebӻ\x18\x8f\xa71\x87\x11\x15\x1dI2\n\xb3\x96\x8f͌\xf0\xb8\xa4\x15\xdf)~\x1ce;\xa2\u007f\x86\xa7\x8a\x87\xa9\x93\x9f\xc1\xfabOEo\x17\x9b\xa6?w\xe33\xbdQ(6v\xba\xac\xc48\"\xd6ת\x0fy\xc1,\xc8\x15ZN\xc7\x15\x12\xb0\xbc\xba\x83\x99\xd9\xe5\x1eaDžB\x13N\xfddz\xd2\v\x85v\x86\xda\xc68\xf3\x93\x01\x8c\x83\xa4\xa3\xd5W\xcc\x15\xf7q\xdcy|\xdfx\xfb\xb0\xce`$\xfa\x85't\xf4btF\xe6\x04\xb3\xa5\x9f\x14\xcbH\x93\x00\x90\x00\xb5\x05l]ҎR˟\x13\xbc\xa1\x13\xfabl\xaejh9\x1d\xa4\x14Pܧ\xe9UȕQ\xad\xb1\xc4;\xf4\xba\xf8\xda\xebw\xef\xde>=\xff\x19\xe9\x11\xb6h*B\x13x%I\x00H\x04\b\xd8r0#\xce\xd7b\x93\xc9\x03\xe6\xacc\xc9\n\xac2\x82\x1d\x06aR\xec\xfc\xf8Ph9\x9d\xa1q%M\xb1h\x93+\xcd\xe5\x1c\xf9\xbc\xb5\b\xfd%\xc2\xe81X6\x82\xbd\xd9\xe1\x15($I\x00H\b\b\xd8rP(\xce$`\x8en\x8f\xb6z\x8d.fZ\u05cbw-l\xa9\x9c\x89'\xb4\x8b\x00\x00 \x00IDAT8<\x11'PLqO\x93X\x02\x80\" `ˁK\x9c\xaf\xe5Jf\x98\xd2\xf8P\xfe\xb1E\xfcT[\x81\xe0\x15\xfd\xb5\xbeG}\xd7\xf4_\x051\x00,\x01\x100`ɜۼә\xcc&1\xc1\xe1Z\x83\xceP;\f\xfa\x05,\r\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x100\x00\x00R\x16\x10\xb0uɺY\xb7\bX\u3000\xad?<\x15[\x84\xd5\x06\x01 \xd5\x01\x01[w\x04\xf2\xf2\xf8\x9eD+W\x03@ʠ\xb6\x80y\xba\x9aM\x96\x81\xd0\xefO\x1c\xbc\x95nf\xcclAi\xf3Z\xfa\xc9`\xb7\xd6\x1aJz\x8fmI\xdf\xfb^\x836k\x96\x15/\x94Љ\x8f \x842\x94~\xcb4\x8e\xba\x14r\x01 \x15QY\xc0\xa6y\xab\xd3\xedl\x13\x174\xf4\x99\x06تw>\xfe\xa1\x87\xb0\xa6\xd63\xb4f\xdc\n%wm\xb9~$\xfd\xbd~3\xf89\xfa<\x99I\x98Љ\xdd6\xdb\u05ca\xa1Ɇ\x90|I}\x00H]T\x160\x17O\xc7.>^\xf8\t\x9d\xb5\xc7-\n\xd8\x1a\x1cф\xbb\\^t\x15\a\xdeK\xbf\xf0\x19t&\x99I\x84H_o(\x8e\x80A\xc4E`\xad\xa0\xb2\x80\t!\x0f\xbdB\xf8!\x87\xd9\xe7Y\xbb\x02\x16ƅ\x16>\xfe\x8bC\x1d\xaaKf\xa2\x04\b\x18\xb0\xd6Q[\xc0\b3n\x8b\x95\xf6\x12|&\x17^\xa3\x02FW0Mc\vd\xfb\xb5\xc2\xca`\xd5Q\x16\xc1\xfb5ŕ7g1~\xa6\xe3\xb8o^\\<\xaa\xaf}'IFY7 \xb6\u009f;S\\g,S\xfa~\x1dC\x9b\xf8\xea܌=\xaco\x1b>1EY\xaazA\xc0\x805\x83\xea\x02\xe6\xa5\xdez\xd6\x0f\xb3v㰀u\xdf\xe2\x9bm3\x89K\xa6\x12\x0fl6!|\"~hkAu6\x9b'\xca\xe0\nwc\xa4\xf3PU\x10\xcf\xf5\xf5\x1d\xae,6ܬ\xdf\xfdR\x92\x8c\xb2\xbe\x8a.Ӎ\xdf|U@\xf6\xb8\xc3ټ\x11i\xeb.e\xb2\x88l\x91\x13cE\x01\x9b\x9f\xeeݑ\xf5~\xe3Y\x00X=\xa8.`\xd8\xebq\xb0\xa8DN*c!\x01k\x1aw;--k\xe9)$N\x0f\xe9\x88\xd2\x10r\x98\xbbO^\x1f\va\x80\xaa\xb8\xd3oq\xf0mTR\n\x8f\x84@\x1d\xd3\xe2R\xd5QK4k\xb2h8F\xad\xb8\x97\x9eH\xc0\xf6\x93\xfe\xdb{\x8fh\x01`\xb5\xa0\xbe\x80a\x1a\x17\xb2\x9b\f \x9d\x81@\xc0\xdd\x14 \xa3ɀ\x83v\xbef\xcckjh\x93P\xc0\xea\x8fν#\x18\xaeН\xaa\xa2p\x8fK\x92\x94bFf\xba\x99D!\xe4Cn\xcd\x11LÚ\x89{\t\x05\xcc\xdd\xc5\xe7A\x0f\fX3\xa8,`~\xe1\x11\xd98\x1f\x98\xe4CxB\amm\xf1\x8a\xa5\"\t\x05\xec\x84\x18\xdd\xec,ݩ\xaa\t\xe7K\x92R\x06\xb2\x04%\xb2\x89KUG̓`ѯ\xeb4\xe2^B\x01#\xd8\x14\x82\xbc\x01@j\xa2\xae\x80\x05\x9a\x84 \\\x0fM\x81\x80\x97\xe20{\xbd\x01\xdc#\xdc\xe1\xbdkjl\x93\xa4\a\xf6\x84\xc1b\xffH\xc2f\xcb\"h/\x18\xe6\xf5Z\xb0\x80\xc1SH`\xed\xa0\xae\x80\xe1f6\t\xdco\x11\xc3ы>0+\xebzy\xcd\x0f\xe3\x94JI\x12\nؘ\xe0\xfdjdѴ\x17 `\x89\xe7\xf1\x83\x80\x01\xeb\x15\x95\x05\xcc\xc5w;\xddN\x8b8\x13?\xe0q\x98\xe9\xfc{7\xdf\xe5r?0Y\xdf\xeb\xe76\xab\t\xff\xa0ͦ9b\xb3\xf9BO!\a\xa3\x9bָ\xbb\xbe\xff\xdb+D\xc6\xde\xfd\xc9^i\xb4\xdb_\x90\xb5\xfeY2S\x8c\xbf\xa4v\xe1\x15\xc7\xfez\xadL_\x1b\x14w\xeep\xad4\xe9Ԛ\xb1I\xeb¸\x02\xa1Kd\xff\x12B\x15Q\x95tk\x17\xbdv\xee\xe8F\u007fv;\x9e\xde\xf4ET~\xf8lK\xa6!\xad!\x99\t\xb0vQY\xc0\xa6y\xab\xd3\xedl\x13\x174\xf4\x99\x06؊\xac\xd8\xdf\xcd\x0fN\x8e\xf2\xef\xf3\u007f\xbcNx\xf4$&kn\xe2P\xad\x9dp\x9f\x1bIj\x8b\xbf\xb7\xdb;\xb9\x89\xd0\xde\xe9C\x9d\x17\xf5b\f\xa4N\x16(\t\xe3\x1eT\x8d\xabQ\x0f\xc6\xee\xcd\rt\xbc\xe7mȌ^\x13њqKL\xf5\x8e\xe2\x851\xa4\tl\xb5\xe0\x064\x19\x95\x1f>\xdbұn\xbc\x9a\xcc\x04X\xb3\xa8,`.\x16\xc2\xd6\xc7\v\xeb\xfbY{܂\x80\xf5\x98<4bd̪\u007f@45JkN\x1f\xbdF_\x9fG\v\x98\xa2-\r\xe6\x16\x12\xb0\x1f\xb8N\x1c\x9c\x15\xd2/t\x8dB\xe2\x01:\x87\xcf!*L\x9f\x98X\x86i{L\x15\xe1\xe5\x10w\xc4,\x97\x18\a\xefF\x13r\x04\xb6\xee\x8aΏ\x9cm\xe9\x9cѬ\xb1\xb8\xc8\xc0\xc2QY\xc00\xebzy\x85HD\x0e\xb3OX\x13\xdf\xc3?\f\x1f\x03\x12\xa2\xb8h\xbe `s\x9dQ\xf1$\xe3,\xb0\x1f\x11\xb0\x17\xdcp8\xf7\x8aAT2\x17\xba\x8c\xaf\"\xda\x19>p\x86e|q\x00\xc7%\xff`\xfccr\x8e\xa3\xbd\xb8\x17\xc5\xf8\xab\"g[:\xbe\xec\xe81.\xb0nP[\xc0\b3n\v[\xfd\xdegr\x89A=\x06M\xf3I\xc2V\x00\x94a\xd1\xd9\x15\x1d{M\x100\xca\xdb\v\x06\xdd\xe1\xb3Ϣl#\xb9\x14Q\xc0\xe6\xca\x04\x83\x9b,s\xaeX\xec\x80a/j\xc2\x16D\a\x8f_\bݫ\xd2/\xf0\xf8F\x84θʷ\xa6\xef\x99Ǿt\x84\xd2\xe8:\xe0\xd8*.Z\x9d\xcf̚\n2r\xab\xc5\xef \xf3\x16\x1eG\x11p\xce\xe3\x83Z\xba\x96\xb8\x85\x14\xa9\xc3u\xe4\xd5\"=[\x1c\x82\xf7k\x8a+o\x12q}\xa6\xe3\xb8o^\\<\xaa\xaf}'I2\x9b3\xe9k(\xa8;\xb0(T\x170/\xcf\xf3f\xf6\u007fn\xed\x0eE%j\xb7:\xdb\xf8\xe6\x01\xf8/L\xc2\xec\x04\x8b\xfaa\u007f\x1e\x95\u007f\xf4\xca\xdc\\\x87\x91\xa6\x86\xb9\xaf\x1e\xf5\x9d\xe5\x1e\xcbm#\xb9\x94P\x0f쩽\x8fk\xb5\xdb\xff\"\xecpv\xb1\xb2@\xce \x1eʡ\xdf'\xa6\x1dx\x90\xec\xe4\xf3x\xc6Ҽ573\xa7\xba\x9c>I|`\xb3\xb10H\xd87`\xcb-\xb4\xd9ll\xe4_\x91v\xdczU\x9b/|\x0f\xedG{p,\xa2\v\xdfg\xcb<\xe3\xc5\xde\u007f͢\xa1G\"g\x8b\xc3\x15\xee\xc6H硪 \x9e\xeb\xeb;\\Yl\xb8Y\xbf\xfb\xa5$\xc9l\x06 \xceҺEu\x01\xc3^\x8f\x83E%rR\x19\x13\x04\xcc\xc27\x8d\xbb\x9d\xcd\x16\u007f\xb2\xb2\x80\xf2\x10\x92\xf6\xa4\f45\xdbG\xfa*\xc1\x13\xe7嶲\\\xe5!\xe4\b\x17\xad\x8a\x18۴\xf8s\xcdI\xace\xb1<\xf3\xd1._x\x94\x1f\x8e\xdc\x16\x1eBZY\xec\xf0!\xd4\xc2\xf6&뢝\xf5\x94\xb0\v\xbf\x82v\xedJ\x174\xee\x1bf\x8f\x16\x1e\vQ誸\xd3oq\xf0mT\x12c7\xba\x15\xaf<\xb0\xc6Q_\xc00\x8d\v\xd9M\x06\x90\xce@ \xe0n\n\x90o_\xab\x89\xde\x18>3D\x8cN\x8a\xb2\x80\x9d}\xfc\xf8\"\x130\xfc\xaa\xb3\xf6h\tw\"\xcaV\x9a\xab,`\xfd\\l477\xf2\x15\x1e\xf9ԇ\x98\x8b<_\xea)\x8f\x15\xb0\xd2m\xfeyBN\"UڶSL\xf4\xa6\xfb\xb0/\xa37\x81i\x98\xfa\xa3s\xef\b\x86+t\xa7\xaa\xe8e(_\x92\xa4\x17\xda\x12[\x12X\x17\xa8,`~a\xb00\xce\a&\xf9\x10\x1e\xdc\xcb\x02\xdb\xe2^\x98\x92\x98\x94\xb8N\xfc\xa9{4\xf5\xf8\xd0\xe1\xc6~\xfb\xe9(\x01\x93\xe5*\v\xd8DdnE\x98\x80Ʊyt\xb3c\x13\xfb\xcc\xf2wH\x8e\xc4\n\xd8v\xd1\x1f\x96 ڑ\r\xb5\x89\xcf/\xe7\xb5m\xb8]\xbb \xaf\xe7\tѕw\x96\xeeTE\x9c\u007fUR?\xe0\x10D\xba\\\xb7\xa8+`\x81&\xe1k\xf7\xa1)\x10\xf0R\x1cf\xaf7\x80G\xcd쟹g\xd1\xd3#\xd7\x1fL\x94\xeeIz\x1f\x94\x88\x13\xbf\xb2\x86>K\xbc \x110j+\xcbU\x16\xb0٢V\x1cCnC6ι\xb4\x8d\xa5\xf3\xa5\xcf\"\xe5\x02f\"}\xb3\xf2m\xa3\x8c\x04\xee\xf8R\xad\x1fW\b\u07b3\xe3\xfb\xf1\xfe\xe3\xf1-%\xd4\x1f}\xc2xEw\xe2\x850\xaf\xd3\xc0\x03\xec\xf5\x8a\xba\x02\x86\x9b\xbb\xe8\xab\xdf\x12\x9a\xb9(\xf8\xc0\xbcl\x1a\x85\xcf\xf4 N) \x8cш\xf1k\xc1#\x84\xdd\r\xa2O)\"`\x87\xe9}\x1d\xac:!\xb7\x95\xe5ƙFq\xa12\x88\xa3\xd9[\xb0\x1f\x1f(\x10\xfc\xf1\xb2\t\x13a\x01+,\xc4x\x9a>M\xec\xa2/\x18\u007f!\x1c\b_\x99\x04\xaf\xe6s<\x8aΥM\x93\xf4\xa0ƣQ\xf0\xbbO\xd6\xc5L\b\x1b\x13\xda\xdax\x9b\xbe\xc6\x11\xb0@\xde^\f\xacST\x160\x17\xdf\xedt;-\xe2L\xfc\x80\xc7a\xf6\xd0\xef\xec\a\xa6\anGSۇ\xfe\x9d\xdc\x1a\xa4\xb5\xa8\xa3\xfft\xb1\xd0\x03ۇ؍Kg\xe2O\x88\x93\xb8Z\xb9\v\x9d\xb7\xab\xb8\xb2;\x13R[I\xeeK:\x13\xbf\xc3n\u007f\x19z\n9!\xea\xd6s\xeeN\xccɪQ\x03n@\xa4\xab4?Ȟ72U\xf2\x0f\xdal\x9a#6\x1b\xfb\b\xcfi.\xb5\xefʠޱS\xa8\xd4\xd2^\x81\x84\x89\xc9\xe2\x95ɸ\x84\\\xb8yk\x80\tW {O\xb6\xc2\br\x1f\xda\x1cӕj\xdc]\xdf\xff\xed\x15\"c\xef\xfe\xc4\x1e\xabRW\x9d$I\xb9\xfc\x9e\x13a\x81\x14Fe\x01Þ\x1e\x8b\xa9mP|\xdc\xe8\xa1.06\xa5\xc8\xd5nn{\x00\xfa\x95\x9c\xb9\x1b\x9f\xe9\x8d\xe2|\b\xb3\x96Ͷb\xbf\x85\x14\xfad8\xd8QYt\xa8\xfe~\xa5\xce(\xb5\x95\xe4^\x14}J\x17\xf0\\\tK\xe8BO\x1f[\xf51^0k\xc68vd\xb4c<\x9e\xc6\x1c\\L\x95\x86\x844b\xe7\xf6\x1f\xcfJ/\x14\x9e\xbdt\xed\xd4f}zW((^\x99\x8cm\xa4\xb3f\xd3X\x85G\x02\x975\x97c\f\xc8Xt3\x8a}\x8e3v\xba\xac\xc48\x82\xf13\xe1\xc2k\xb1,I\xb0\xa5\x9f\x8c)\x04\xac\x17\xd4\x160`\xb5\x12\xbc\xa1\xebKf\xf3\x1eL3\x17~\x01J\xf8ۣv\xb4xgV\x8b\xa6\x02\xbe\xf9\xd6/ `\x80H\xb0\xc3\xf0*\x99\xcd{\xc0z^~W\x82g\x8f\x01sֱ\xf8G\xe3\xe0͆\xc5(\xd63 `\xc0j\xc1\xa3\xad\x86\xa9\xcc\xc0\xe2\x00\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01[\x0eJ\x91\xb6\x1cb\xc4\x01\xc0\xb2\x03\x02\xb6\x1cxz\xcdy\xda\xc5\xff.\x19\x00\x80š\xb6\x80y\xba\x9aM\x96\x81н\xed\xe0\xe9\"\xac\xf3M\xe2\xe2\xd2͉J\xa6\x18\xbdh<\x99\t\x00\x00\xef\x89\xca\x026\xcd[\x9dng\x9b\xb8\xa0\xa1\xcf4@\x17\xc0\x9b\xe1G=\x84\a\xfcZ\xba\xe5\x87 \xd4\x17\x00,;*\v\x98\x8b\xa7\xab\xaa\xf8x\xc1Ad\xedq\xb3\x15<\x1d,(QӚ\x8a\xcc\x00\x02\x06\x00ˏ\xca\x02&\x04\x16\xf4\xf2\x1e\xbaq\x98}\u009a\xf8\x8c\xbb\xb7\xd6Ժt `\x00\xb0\xfc\xa8-`\x84\x19\xb7\xc5J\x97\xb5\xf3\x99\\8\"`N~:A\x99\xd4c\x1c-(\xee!\x00\x00\xef\x81\xea\x02\xe6\xe5y\xde\xcc\xfaa\xd6n,\x11\xb0p\xa0\xa25\x82_[0\xe0^P\xe8C\x00\x00\x96\x8a\xea\x02\x86\xbd\x1e\a\x8bJ\xe4\xa42\x16\x1607/\t\xfc\xbc&\xb8\x8b\x10ڗ\xcc\b\x00\x80\xf7A}\x01\xc34.d7\x19@:\x03\x81\x80\xbb) \xf4R\xba-Iʤ\x1a>\xed\xd6\xcb=kM\x94\x01`\x95\xa1\xb2\x80\xf9\x05\xb9\x1a\xe7\x03\x93|\b\x0f\xcd1?HP*\x15\x19B\xdd\xc9L\x00\x00xO\xd4\x15\xb0@\x93\xe0\xd9~h\n\x04\xbc\x14\x87\xd9륚\xe6]s#Hx\n\t\x00ˏ\xba\x02\x86\x9b\xbb\xe8\xab?\xec\xb1\x0f\xf9\xc0&\xf9\xb5\xf6\xc3\x1b\x100\x00X~T\x160\x17\xdf\xedt;-\xe2L\xfc\x80\xc7a\xf6xi\xcaɯ\xb5\x80Z\x83 `\x00\xb0\xec\xa8,`\xd8\xd3c1\xb5\r\x8aj\xe5\t\xff\x00\xd2}+A\x99\xd4\xc3\xef\x19-\xd5x\x92Y\x01\x00\xf0\x9e\xa8-`\xeb\x83\xfd\bmmOf\x04\x00\xc0\xfb\x02\x02\xb6\x1cxF\xd7\xda3\t\x00X\x95\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\x80\x80\x01\x00\x90\xb2\xaco\x01+E\xdarg2#\x00\x00V+\xeb[\xc0<\xbd\xe6<\xad\xb0\xb4\x8f\xb7 \xfc\xebkI\x12\x00\x80Ռ\xda\x02\xe6\xe9j6Y\x06B\xab\x17:x+\xdb\xfa\x06n\x99n\r\xacȚ\x86\xbdH\x8c\aސ\xd6\x10ʓ$\x01\x00XŨ,`Ӽ\xd5\xe9v\xb6\x89\v\x1a\xfaL\x03lEV_S\x1b\xcdmZ\t\x05\x8b\xac\x9cj\xddx\x15\xc7&\x01\x00X\xbd\xa8,`.\xb6\xf6\xbd\x8f\x17\x1cO\xd6\x1e7\x130\x9b\x85\x06垷\xd8\x12\x94\\.$K?\x9fѸ\x15\x92\x00\x00\xacZT\x160\xcc:Y^!\x12\x91\xc3\xec\x13\xd6\xc4\xef\x11|N\xed+\x11\xdbV\"`\xbe\xec\n\x85$\x00\x00\xab\x16\xb5\x05\x8c0\xe3\xb6Xi$\"\x9f\xc9%\x06\xf5\xf06\xf5z\xfd^[\x937I\xc9\xe5`\x1c\xf5\x86\xd3g\xd2g\x14\x92\x00\x00\xacVT\x170/\xcf\xf3f\xd6\x0f\xb3v\x87\xa3\x12\xcdt\x93ܮ\x15\x91\f\xbf\xb6`\xc0-D\xab\xc4\x03\x91\xde\xd8\x00\xc4\xe4\x00\x80Տ\xea\x02\x86\xbd\x1e\a\x8bJ\xe4\xa42&\b\x98\xbf\xdb\xe2\xf48-\xdd\xf3\xc9\xca.\aw\x11B\xfb\x84\xa4\x1b\xdd\n\xe5J\x92\x00\x00\xacV\xd4\x170L\xe3Bv\x93\x01\xa43\x10\b\xb8\x9b\x02\x01\xea\xc4\xf7\xb3܁d\x05\x97\x01\x9fv\xeb\xe5\x1e\xd1c\xefF-\xa1lI\x12\x00\x80Պ\xca\x02\xe6\x17\x06k\xe3|`\x92\x0f\xe1\t\x98\x1e\xb2܇\xa6@\xa2\xb2\xcb\xc3\x10ꖤ\a\x14\x92\x00\x00\xacV\xd4\x15\xb0@\x93\xe01'R\x15\xf0R\x1cf\xaf7\x10\x12\xb0ѕ\x11\xb0\x88\xb3\xabN\xe3SH\x02\x00\xb0ZQW\xc0ps\x17}\xf5[B\x13&\xc4i\x14\xe2\x10r\x85\xa7Q\x04\xf2\xf6*$\x01\x00X\xb5\xa8,`.\xbe\xdb\xe9vZę\xf8\x01\x8f\xc3\xec\xf1b<\xd3bq\xb8\x1d\x96\x96\x95x\f9\x18\x11\xb0\xcbhT!\t\x00\xc0\xaaEe\x01Þ\x1e\x8b\xa9m\xd0/\xeeP\x17X3I\xf8\x87\xda\xccmC\xfe\x84%\x97\x03\xbfg\xb4T\xe3\x11wl\xe9'ql\x12\x00\x80Ջ\xda\x02\xb6\xba؏\xd0\xd6\xd0\xca\x13-\x9a\x8a\xf9\xd8$\x00\x00\xab\x98\xf5-`\x9e\xd1\xf0O\x1e\xbd\xd9\r\nI\x00\x00V3\xeb[\xc0\x00\x00Hi@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0\x00\x00HY@\xc0V3\xc35\xaf1\xf6\x16\xb4c\x00\x00\x94P[\xc0<]\xcd&\xcb@h\xb5S\aoe\xdb\xc0x\xbb\xa9\xcd\x19\xbf\xd4r2\xb9\t\xe5\xc5dz\x8fmI\xdf\xfb\x81և\x9d\xaa-6\xd4?2\xbc\xc6_r\x1c\xa7\u007f\x91\xcc\\\xc2\x1d\xae5H6\ri\xf0\xe3r\x00PDe\x01\x9b\xe6\xadN\xb7\xb3M\\\xd0\xd0g\x1a`+\xb2\x06\xac\xe6Q\xf7\x03ӃD%\x97\x8f\xc1#\x9a\x98\xbc][\xae\x1fI_آҏ\x9e$>>V\xfc/\xf7\xfaNp\xdc\u007f\xe0\xef\xed\xf6Nn\"\xb1\xb5\x94N\uef90\xb0n\xbc\x9a\xd8\x12\x00\xd6)*\v\x98\x8b\xa7\xeb\xd7\xf8x\xa1\xb7e\xedq3\x01{h\xa2!m]\xa6\x85)\xc6\a\xa7N\x13\x9d\xe3EWq`\x81WSs!\xe1\xe1\x1fJ\xce\xcea<[I\x04\x8c\xf0x\x11\x02\xf6B\xd7\x18J\x9eф\x97\xfd\x01\x00 \x82\xca\x02\x86\x99*xy\x0f\xdd8\xcc>aM|+[)\x1f7=\x88Sh\x99\x89\x150\x17\xb2*\xd8)S\x95X\xc0\x1a\xf5\u007f\xa1\x9b\x0e\xee9\xdd,F\xc0\xae\x18fCI_vE\"K\x00X\xaf\xa8-`\x84\x19\xb7\xc5J\xddK>\x93K\f\xea\xd1fc\a\xda\xef&*\xb6,xʳ\xb3\x0e\x88CȦ\x82\x8c\xdcj\x1f\x8dՍ\x18ղ\xdc\xf1\x8d\b\x9dq\x95oM\xdf#]\xacu\x98\x13\xa8\xa1;\xf6\xdaú\xb2\xda\xc3A\xd9\x19*\xaf\xb0ͫ\x8e9\xba\t\vX\xb0\xb3F_\xd5\x19\x8c*\x16\xbc_S\\ySЭ\xb9\xe2p\a\x8ct\xc1\xd2W\"^\x00\x00\xacvT\x170/\xcf\xf3f\xd6\x0f\xb3v\x87\xa2\x12\r4\xb1\xa8D涄%\x97\x01Wf\xae\xb9\xfd\x17HC\xd3\x15iǭW\xb5\xf9DZ\x1f\xdaZP\x9d\xcd\xe6\x91\xe5\xceX\x9a\xb7\xe6f\xe6T\x97#\xe9hnv\xc2^i\xb4\xdb\xed\xb4{\xf5t\xf7\xc5\xfe\xb1{e\xdc;\xe9\x19\xe6\xb8\x0e\xe9nX\xc0.\x16}3\xf2M\xd1ŨbW\xb8\x1b#\x9d\x87\xaa\x98\xae=\xe5\xec\x91r\x03\x92\xe0o\x00\x00\x84P]\xc0\xb0\xd7\xe3`Q\x89\x9cT\xc6\x04\x01\xf3\x99\xad\xde\x19O;oIV\xf6C\xf3\xe96r\r\x81\xed\x1a\x92\xb4\"3\xa6A\xd6X@\xee\xf0\x10R\x96\x9b\x8fv\xf9\xc4A\xb0\x84\xf0\x10\xb2\xf3\x10\u0560\xce\x12Y\x0f\xec\x05\xf7\xadt7$`#\xdc\x18y\x1d\xe3Fdņ\x99\xd7\xfe1\xd7'\x98<\x8f\x94s\xa3[\x18\x00\x80h\xd4\x170L#@v\x93\x01\xa43\x10\b\xb8\x9b\x02t4鵒~٠U\xed\xf9N>\xc4\xd3\xcd\x19\ry)\xdd\xe6\x9f'\xe40gSX\xc0d\xb9\xf9\x8a\xae\xf4\xb0\x80\xbd4\x1c\xbdq\xefipNvtN\xa7\xd8\x03\xbbr\x82mN|)+V\u007ft\xee\x1d\xc1\xc0F\x9d\xfd\x9cdƅ[\x90P\x00\x00d\xa8,`~an\xd58\x1f\x98\xe4CxhΌ7\x80\x9b\x06\x12\x15]\x06\x1e \xe6|;\xa7!/\xdb\x05\xc7\x17\xdaOs\xc2\x02&\xcb\xcdߡTIĉ\xff\xf6ޅJ\xae쎢\x0fln\x8cmB\x02f<\xcb6\xb55\xb2b'D\x8f\x1a;8!\xf5\xf7\x0f!\xb5\xdf\x1b\x00H\x05\xd4\x15\xb0@S/\xdb>4\x05\x02^\x8a\xc3\xec%ʅ\x99_\xdc%H\x99\x8ax\xd1u\xbaaN\xfc\xf2m\xa3\f:\xa1#\"`\xb2\xdc\xfc\x03J\x950\x01\xbb\xf7\x92\x88S#Ѡ\xb7}\xfaN\xd9\xe1F\xfd+\xba\xe9\xe3^\xd3M\xb8\av\x94\xf9\xec\x8f^\x94\x15\xab?\xfa\x84\xc1J\xcc\x16\xb5Fj\xa9\xd3,pR\a\x00\xac+\xd4\x150\xdc\xcc&L\xf8-=\xe2\xbe\xe0\x03s\xf2D |ͽq\x8b-\x17\x059\xe4Į\x9fhH\xb2\v1\x0f\xdc\x17u\xf45,`\xb2\xdc\xfc\x83Ju\x18\x8d\x18\xbf\xa6n\xabV\xea\xd1\"\xfb\xd7X\xb6\xbba\x92m\u007f(9OF\x87A\xe3Q\xb6\x17\xf1\x81Q?W\x1f-!)6&x\xbf\x1ao3\x9b\v\x95\xe1\xbe\\ o/\x06\x00 \x06\x95\x05\xcc\xc5w;\xddN\x8b8\x13?\xe0q\x98=TB\xf8!\xf7\xc3&\xab\xfa\x9d\fGFNݙ\xac\xb4\x8df'ƧP\xa9\xa5\xbd\x025\x85\x9eB\x0e\xb2\xd1n8w~Ж[h\xb3M\xc6\xd4\xd1Z\xd4\xd1\u007f\xba\xf8%U\xa2\xe2\xd6\xe1\xfe+\xdc#\x96\xbd\x0f\x89\x9a3\xa27\xde\x1f\xae\xd5\x11\xe1zIg\xe2w\xd8\xed\xc4\x16\xd7s\x8dÍ\\=\x96\x17k\xdc]\xdf\xff\xed\x15A\xc6\xf0s\xeeN\xe8\x1c\x97\xd1(\x06\x00 \x06\x95\x05\f{z,\xa6\xb6A\xbf\xb8C]`\xcd$1j1[G?\xd0O\x0f\x17\x85k_\xd6֓\xe6\x8d\xe8\x18Iw\xed\xd4f}z\x97\xf4\x0f\xb3\x98\xdbk\xa3\xf0k\x81P\xeex\x1aˍ\xed\t\xcd\xdd\xf8Lo|L\x12\xf7\x8d\xb7\x0f\xeb\fFA\xbf\xb0Yˋ\x06S\xb5\xfa\xb2\xb3t\x1e\xfeE\xd1\xc5Eǜ\xc1\xce\x13\xfa\x13l\x1e\x98\xac\xd8\xd8\xe9\xb2\x12\xe3\x88X\xb0U/z\xc1l\xe9'1\x00\x00\xb1\xa8-`\xc0\xc2\t\xdeб\xbeX\x8b\xa6B:y\x16\x00\x80\x10 `\xab\x98`\x87\xe1\x15\xc6\xdelX\x8c\x02\x00\x94\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 e\x01\x01\x03\x00 eQ[\xc0<]\xcd&\xcb\x00]\xf9k\xc6\xcc\x16\x946\xb3\xa5u<\xed\xe6.O\xe2\x92+¨\xb0\x88N\xda\x03awr\x13\xca#\x9b#$+\xc3\x15k\xedؓ\x91]ڛ=\x1d{\xe4C\xe1.\xcf\xc9\xf8\xa4N\xfd\x85\xd3\x00`u\xa2\xb2\x80M\xf3V\xa7\xdb\xd9F\x174\xf4\xf1\x0f=\x04\xb6X\xb3\xdbds\xd9L\xab0\xfa\xf4\xfc\xa0\xedkt\xd9\x16Z\xc0\f\x0f\xb2\xe5\xa7\xdd6\x92\x1b\x1b\xe7\xac+c\a߲\x1d!g̑\x0f\x85k\xf3'\x97\xac_d~\x02\n\x06\x00\f\x95\x05\xcc\xc5S\x95\xf2\xf1N\xfa\x12\x16\xac@3\rY1м\x12K\x1a&eH&U\xa1(\xdeC\xb1\x02\xe6\xcd\xdcOtηm\x19\x05l\xffV\x1a\xdf֙\xf1E2C\x00X\x1f\xa8,`BTE/\r\xdf!\x110\xa7\x89ޗ>\xd3\xf2\xdd\xf9\xef\xc1\x82\x05\xecT:\x1b;^B\n\x83\xcb\x0fD\xdeV\xb69\xa0\x18\x1e\t\x00\xd6\x1fj\v\x18a\xc6m\xb1\x06d\x02\xd6s\x97m\xee\xaa\x1c\xd5c~˦/r\xb2{\x8fg\x15\xd2\x11\xed\xc1lMξq\x92\xed܈\xd0>\x9c\x83P\x16\x1b8\x86\xa5\xcaS\x9e\x9du\x80\r!\xa5\xb9\xb8\xa9 #\xf7\xffo\xef\xfcc\xe28\xee\xfe\xff\xfdg\x10\xac\x8c\x0eN\x1cB:\xa4\x039\b\x13Y\xc9`|',\x1cS\x041\x17\xd1`\x93\xafj\xe3\x1f(\xa9\x12\xfb,\x13\x9b\xa8NS94D\xc6`\xf2\x03\xc5%ND\x83c\x14\x1axL\x1d\x91\x1fv\xb8\xa8\x8ay\xda\xe2|\x85\x1e\x92HϵV{\xcf#5\x8e\xb1]\xe1m\x1cR\x82}\x86Z\xa3\xef\xce쯙\xe5\x8e=(\x06\xce\xf9\xbc\x12\xf9\xf6n?\xf3\x99\x99ݝ73\xb3\xb3\xfb\xa9\xa1\xba\x9c͂Gʡ\x034\xd9\xe1\xfb\x1c\xabiȣ*\x94\xd2X\xe3q\x14\x8e\b\x9b\xb2\xdcS\x98\x95\x92\xb1\xce-[iv\xb17Q\x8f\xa4k\xf1\xdc҅qu\xaf\x1a\fes\xf6\xact\x00\xf0\x83d\xc9\x05,D'\xeei{\x0f7v\xbd\xd2\xd8\xdaC\xfb^\xedj\xd0\xc3ޥ\x0el\u06dd\x8ej֢\x8czW\x03\x8d\xc1\xed\xefn\xf3%\xf5+\x03ھ@R\x9f܌Z>dF\xbaT\r\xa5{\x9a\x8f?\x88$Y\xf8U\xf6'Uw\x1cʸo\\\x1eKj0=o\x96\xea:\xea\xa4rE\r[\x93QF\xe0@z\x89\xb0\xa9$\xdf\xfcJWc\x06\x9a\xf5\xaa\xe8\r\xa8\x90~\x8c5\x1fRi\xd6g\xdf8.\xb9\xcag\xff\b\x00?D\x96\\\xc0\xe4\xd0\xe8`\x9b:\x89\xdfrv$\xd8vLi\xa1-\xfdlO\u007f\x8bM\xd2E'\xb3\\\x11\xae\x0ey\xb3\xd2w\n\xb7QU\xcde\x11l\xe5\xcd\xf9\xa1,\xfd=κT\xad\xc9V\f\xc6WK\xe2\xaf\x1d\xa8\x99};&\x8f S\u007f;Q'\xfb\x97\xf6,%\xa7҉*ϐ\x85\xcd\xc3\x19T\xba~\xe1\x9c5\xeb7\x1cP\xe3\x1e}9\xac\x12\xe5\x8e\xe6\xf8\xe6\xd4\x159\xd6\x06\x80\xa5g\xe9\x05L\xa6q!\xbb\x94v8H;_\x97\x9a\x15!hg\x01\xb2\xe5\xee\xf6\xb9\x93->\x99\xc7\xe4>\x14\x96kK\x95\xed\xd0\xe1\xc2\xect\xb4\x9a\xfd~i\xb5˧\xdbhR\x15FllW'\t\xbfʥ\xd9cW\x15\xb2\xfc\xf2X\xb2\xd9\x03\xf3粏\x9c\xcd\xca?\x12\xfd\x87\x05\xff\xe66G2ݏ6~8\x1e\xa5{\xa52\x8ctfߚ}T\x0fZ\t\x00?x\x96X\xc0\xc6\xd4.\xc7\xd9F\xa3\xebѣ\xa8\xd6I\xb5E\x1e\xd7\xc3\xdd.\x19\x99\x9dr\xbf$\xcb;\x14\x01\xebweն\xf7ܯ\n\x98\xfc\n\xea\xd5m4\xa9:\x83\x98ʪJd\n\xd8jMg6\x18s`cJ\xe7k\x8d*\u007f\xeb\xf2\x95\u007f\xa4=\xb2>\xf7\xcfm\x86\x1b\x1f\xcaA\xae\xd8\xd1:z:Tz\xac;¥\xc9\xcd\xd1\x12\x00\xc0\x0f\x91\xa5\x15\xb0\xf1\x16u\x9e\xfeæq]\xb5\xba;hdnuRl\xc9GF\x9c\x80\xe5\xe4\xd32\x94\xa8\x026\x9a\xb9\xcb\x1d\xd2l4\xa9\n!:'/['\xf1˳\a\x18!\xe3.d\x1b\n\xc9~u\x96\xdd\xcdz`4\xaa\xb7&`\xc6\xe6\x99\x1d\xca?\xe1c\xa9\x87\xe5y2z\x9fs\x96\xa6\x01\xc0\x0f\x96\xa5\x150\xb9\x95\xce\r)CH\xa5\xaf\xd5\xc1\x06\x8c\xa1\xe6\x0f\xe9:0\xaak\xddK\xbf\x0e\x8c\x13\xb0,:\xb7>\xbe\x9a\t\xd8X~\x9d\\\xb5V+\x8d.U\xf9Y4\x86\xf8*I\xfc\xb5\x13\xb5я]\x01\xba\x0e\xacD\x19\x12\x8e\x17\xb8\xe9\xcc\xd81\xe5\xc7cl\xac\x17U\xc0\x02l\x92L.\xa8\x92-\x8c\xd4ώ\xfd\xcdq6\xd33\xa4\x94\xef.\xae\xf5\a\x80Db\x89\x05l\xa8\xb1+8\x12d\x93\xf8#\x8d\x9dC#g\x9a\xe8\x8a\ny\xa4\xa9{\xb8{\xe9W\xe2\a\x9d\r\xe1c)gå\xf7\x8f(\x92\xf2\xd0\xe1\xc0}(\xa3\xbe\xefRoUƈ<\x9c^\xd3;Ư\xc4\x1ftd\x05\xea\x9cI\xc9\xcdAu%~CO\x0f-\xf0\x0eT\xdav\u070f\xe8\xfd\x87NG~\xf3\xf1\a\x93\xe9\xe0\xb3w\xeeM\xfc\xfa\xb9s\x0f\xfc\xca.\xcd|\xf9\xe8?\xcd\xed~\xf5\xdd\xfc\xff\xf3+\xfc\xf6\xb9\xf7\xf6\xe3\x97\xd4_\u007f[<\x87j\xfe\xe9\\\xd1K\xe6\xb6R\xc8O,\x06_\xbf\x8b?\xba\"_y\xe4\xb1?\xcaq\xb1\xa5h\v\xfb\x14\x9d\xcdY\x86\xb8X\xeb:\xbc9U\xfcc\xce\xde\x1d9+\x86\xb0\x1d\u007f\xd9\xefݭ|\xec\xf6\xee\xffK\f\x8b\xbf\u007f\xc2N\xd6'W\u052f\xd7?\xf9\xd9z9\xc6\xd1Q\xa4\xb9\xf8\xff\xbe\xf5\xce\x16\x8c\xff߬=s\xf0\xf5'E?;\xf7ћ\x8fx?\x8ba\xf0\xd5\xdb\xf8տ\xca\u007fUNd\xec?\x1b\xfc\x99_\bw\xbf\x9a\x94(Q\x9e\x97\x8c%\x16\xb0!\x16͖\xbd\xfd\x9e\vl\xabt\xccږI\xc0\xf2J\xed,l\xc8\v\xc8\x0e&)\xaf\x17\xc9\xf2\xa7\xf4\xb2\xf0\xben\x97f\xbe<\xb6\xcf\xdc\xd6/\x96\x0f\xb0\xd20\xae?\x87\xb5?\xf0ף$3Y\xff\x92\xb9\xad\x16R\xe4\v\xfc\xb5,\xbfT\xf6\xdf\xd6ߣ\xf35\xdeO\xed\x19\xbc\xb3\xb9\xcb`O\b\x1d\x92\xc7g\x0fF\x16\xd2<\x8e<\xa1t&\xff\xc7\xfbđ9l\xc4\xe3\xf0\xd2\xfah\xbf2\xfeg㓊\x00|\xfd\xc8|[6;\xea_W<\x11k\xffg\xf8\x03\xe5ߏp,\x85\x93\xc53\xbf@\xeez5\x17v\x86\x16\x8b%\x160\x99]\x9f\xa1\xc6QQ\xc0\xba\x1b\xbb\x9b\x96G\xc0\xee{\xc8\xce\u0086\xdc\xe6\x11Ć8W\xbe\xd0.\x8b/\xaeإ\x99/[c\t\x98|e\xe3sѓ\x88\xc4#`\x1f\x14}d\xfd9\x06\x1f\xe1?b\xdd6\x8a\xb3\x053\x14=^\xdcB\x9aǑ\xfd\xbbߑ\xdf~b\xff\xa2\b\xd8\x11\xef\x9f\xe9\xc7\xeb8\xe6h0:\xeaQ\u007f\xc9\x1bK\xd8\xe3\x10\xb0\xadK(`\v\xad\xe6\xc2\xce\xd0b\xb1\xd4\x02\xa6pi\xa4\x8d\xbe\b\x9f\x17\xb0Ka=\xb8\xed\x92ҡ\xbd\xa1\xf9>Y>\x9b\x8cP\xddP\xb9;\xb5\xd0\x1a,\xbb\xd9\xc5^\xf2<\x92\xae\x19\xa7\x8b3\xe8\xeb\xea6\xe4*\x89\x93\xd9\x14\x9evY\xfc\xb1\b\xe3\xa3_<]\xe9}\xe2\xef\xf2W\xfb*\x8a\x1e~\x92\x8e͞\xc3Eo\xfd\xf2\x11\xef\x13\u007f\xa2&\xe7\x9ex\xb8\xa8쉇\xaf\xd3_\xdf|\xb6bӓlJ\xe2\xfa\x9b\x8fy\xb7\xbey]\xf0\xf0[m\x1a\xe315\xbfnA\xc0\xe4\xe7ʔ\xb1\x88\x17\x1b\xb3\\\x86_.c\xa5)=\xff\x8c\x9e\x05w\xed^\u007f\xfb\xb1\xe2G~I\xfbR\x8a\x80}\xb1\xf1U\xeb\xaf\xe6\xa6PH\xf9\xa5\n\xb9BWDݙY\x86w\x8c\xa9\x9dw\x04gf\xc9d\xe3\xa0r\x8ce\xa8\x87\xb7F\xd9\x0e?\x94)e\xf9\xf4y\x15\xa3y\xf4\x14f\xa5d\xacs\xb3\xed\x96|\x87\xa7&\xf6\xd4\xf1\x91\xfdo\ue55fx\x93\n\x98y\x1c>S\x0e\xea\x93\xd7+0\xde\xc8\xfe\xc4\x18\xc7\xe1O\xfb+6\xee\xfb\x99\xb5e\x9bE\u007f\xe4\x19\xf6\xc3_^\xbf\u009d!\xeelF?\xb1\xba\x80\xfd\xaa\xe8\n猿4x\x013\xfcr\x1e\xaa6\xf9\v\x00\x00 \x00IDAT,g~\xd61\xfb{Yё\x8a\x8a\x8f\x9e߸\xf3\xeb\xe5\xac&\x9d\x97\x9d\xfdn\xf4\xa5b\xc9\x05,D'\xee\xd5(j]\xaf4\xb6\xf6\\\xd2~_\x0e\x01\v\xf7\xf6x\nzzz\x14\xf1\xb9\xd4\xd6\xea\xf6\xa4gՔϊ$\xbb\x01\x15ҏ\xb1\xe6C*\xcdb4\xda@\xbat\xe6꺂>6\xf7\xac]\x16W\xdey\xe7\xe1G\x8a+~\xb9\xff\x81\xffV\xae\xc2g?z\xe7I:\x8b\xfa\xd9;E\xf8G/\xfdj\xe3^\xc5\xe2\xf7\x0f<\xfd\xee\ao\x95ῳ_\x1f~\xf5Շ\xd9T\xc9\xd3돾wt\xfdӂ\x87\xaf?9\xf7\xc8\xces\xe7\xceѿ\x8bW\xbf\xec\xces\xaa\xcdV\x13\xb0\xb7\xe8`\xee\xd3s缪\xa2\x98~\xb9\x8c\x95\xa6\x84\x1f{\xe7\x9d-\xdal\x8cq\xed>\x83\x9f\u007f\xef\xcd\x1fm\xbdN\x05\xec\xaf[\x8a\xafX\u007f57\x85Bʻ\xf7\xc9\xfbv\xabƦ3\xa3\f_\x9f\xdb\xf8\xd2_忾\xb4\xf1\xdc\u05fc3\xaed\xb2qPy>\xec9\x86\x02==\xa32\xfd\xc3\xe2\xefn\xf3%iW\x84.`\xfdh\xf3+]\x8d\x19\x88\xfe\x85\xf1'Uw\x1cʸ/悸#\xfb\xffT\xfc\xbf\xde?S\x013\x8f\xc3\xf5\u07fd\x84\u007f'\xbf\xfd\xc0ۿg6zѿ\xd8\xf8\xc8ۿ}\x02[[\xb6Q\xf4+\x98\x9b\x130\xce\x10w6\xa3\x9fXM\xc0\xae?\xb6Ep\xc6]\x1a\x9f\xe1\xf7\xae\\\xb9\xf2\x1e\x16\xce<\xe7\x81?\xf3r\xb4c\xf6\xd1F\xfc\xcbݸ\xecղח\xb3\x9a\xf4\x8fO~\xef\xc82-N\\r\x01\x93C\xa3\x83m\xea$~\xcbّ`\xdb1M\x0f\x96C\xc0da\by\x1fZ\x1b\xd6Ƹ<\xc3\x015\xd0ٗ\xc3*\x96\x90f\xf5\xa8Q\x0e;Ԡ\x1e\\\xc7|+\xde\xfd\x95|\xfd+\xa5=\xbf\xa3\xb4\xe3\xeb[\xe8Y\x97\xd7oT\xfez=\xfd#e\xeb\xcd\x1f\xd1S\xff\xe6F\xf6\x87\xbaR1\xfb\xeaa\xe5\xef\xec{\xecO\xf2\a\xf8=\xc1\x037\x90ؠtQ\xb4a\x96&`\xefi\x1d~M\xc08\xbfB\xc6?V\xd4\xe9\xca#\xea\x9fr\xbd\x90\xbf\xc5o\xb3o\xefP\x01\xdb\xffȏ\u07b4\xfe\xcamr\x85\x94\xaf\x17\xbf.\xbf^\xac\x8d\x8b\xf8\xa1\x88V\x06\xf9\x99\xfd\xca?\xfb\x9f\x11\x9d\xf156\x0f\xaa\x801\x84\f\xb7ѳ\x90\xab\xadv\xd3\x05\xecp\x06\x95\xae_8ǩ\xc25\xb3\x1d\xc7f;Q9\xb2_\xde\xf2\xdcc2\x150\xfe8\\\u007f\xfa\xb1\xbfT\xe87&\xf5\xa2\xef|\x84\x19XZ\xb6Y\xf4/\xf0\u007f\x18~\xf93d\x9e\xcdX'\xf6\xa5+_\xffq/M\xc1\x1fI\xf3\xc4~\xa6\xf5\xb0>\x13\xfc\n\a\x8a\x1fBF9f\x15O+)\u007f+?\xfd\xecrVS\xe1\x84r]\x1a\xa1엖\xa5\x170\x99ƅ\xec\x92\xe5\xf1A\xda\xf9\xba\u052c\x8d\x0fV\x80\x80Is-\xaf\x1aF:\x82U\x1br\xd6\xc8\r\x99ڸ\x93\x13\xb0\xf5\xfa\x8c\xf8_\xde|\xa2r#f\xb7\xed\xd8_X6\v\xf1\xdf\x15\x95Ͽ\xf5\xfb\xeb\xacӳ\x9eMԼ\x89\xffG~F\xbd\xb9\xb7\xe5g\xa2\a\xf32\x1e\xe9l\xcc\x11{`o+\xc9(\x9ax\xf0~\xf9\x8c\x8f\xd2\u007f\xdfTm\xf5B\uebfc\xf2w\x85\x8ag\xa8\x80y?{\xab\xec+˯\xdc&WH\xf9\x8f\xf8\x93+\x9f`\xed\x86e4\x01\xfb\xc8\xfb\xb5\xfc\xb5\xf7#\xd1\x19_\xb2\x18\x98s`\xa1Å\xd9\xe9H\x8b\x92\xae\v\xd8H\xa6\xfb\xd1\xc6\x0f\xc7\xe9\x1f\xbc\xd2챫\nY\xfe\xa8~d&`\xbf¿b\x02\xc6\x1f\a\xf9\xcaֲ'\xf5))\xad\xe8_\xa9\xab\x18\x8eZZ\xb6Y\xf4+Efׄ?C\xe6ٌub\xd9:\x8a\xff\x90\xc5#i\x9e\xd8\xcf\xf0\xaf>\xfd\xf4\xd3\xd7\xe9\x89\xe4\xfc\n\a\xcaf\x0e\xac\xe2\x1d\xa5\xbc_\xd3\xda.c5\x95?8\x19\xee\x86\xe5Z\x9b\xb8\xc4\x026\xa6v4\xcf6\x1a\x1dΞv\xf5s\x05\b\xd8\xdc\xc1\xcaz:T\x84\xc0\xd8_:j\xbaW\rg\a\xb4\xaf\x9c\x80=\xa6\xff\xf4\xa3\x87\x8f\xbc{n\xb7\xaa#\xb4\x85\xab\xd7\xc2Wo\xed{\x04\x97\xfdʜ*9\x87\xffS\xde\xf9$K\xf2\xc4c\x82\a\xf12\xeeA\xea\x81\xd2\x04\xec\xc8F\xf5g]\xfbC9\xc8EWݭ\xd6\xfe\x96\xc4|\"Ai\xd2\u007f9\xf2W&`\xfcq\x90\xe5w\xcd\xf2jE\xff\x14\x9f\xa3\x1f\xd6\xd9m\xae\xe8\xda\xe4\xd0\x15\xa5W\u009f!\xeel\xc68\xb1\xcf~\xfa\xe9\x17\xd7-θ\x13\xcb́\xf1~\xf9\x03e'`\xefɟ\x16\xb1\xda.c5\xe9\x19꒗\x8b\xa5\x15\xb0\xf1\x16u\xb6\xefæq\xf9\xa4z\xb5vk\x17\xedr\n\x98\x1aR\xf7\xbe\x12\x1b\xdb(\x1cG\xc3r\x89;]\x1fwr\x02\xa6_y\x8f\n\x15\x1fȟ\xaeWk\xbb|\xd5\xfcA݅l\xed\xa4\xff\x8e\xb5\x9d\x94\xe5\x0e\xd6\xf5\n5\u007f\xa8\xeeY&\x01+(P\xbaQ\xa8\x8dn\xc6XQ1R\x1fe\xbaF\xa7\x1d\r\xc9\x1f\xa2Ry\xdc͌\xa2\b\xd8\xc3t\xe3\xfaV\x8b\x80\xbd\xa4\xces\xed\xa4\x8b ֗)\x97\xdeו;\xe9\xd4\x03\x9d$yG\x9b\x033\x05l\xa7\xb2\xef\xaf\xda}FQ\xc0\x8e\xe8C9M<8\xbfB\xc6\x15t\x0el\xcbNf\xa3\x17\xf2\x03\xd5\xe3\x91W5\x01\xbb\xbe\xf3g\xe2\xaf\xdc&WH\xb9\xe2\x97\xca?\xbf\xac\x90\x05g\x14C\xc0~\xe7\xfd\xb3\xf7w\x96,\xf8\x1a\xc78\xa8\x86\x80e\xd1?%\xe3\xab-\x02\x16P\x9fA(\xa8\x92\xe5N\xf5\x8c\xedR{\xbeÁY\xab\x919\x01\xe3\x8fÕ\xc7^\x92\x9f\xdbm\x99\xbe{\xecae\\\xfc_^K\xcb\xe6\x8a\xfe?\x1b\xf7\xd2\x1bs;+\xc53\x14\xb5e\v'\xd6\x100\xfeHF\x150ίp\xa0\xf83\x1f\xe5\x98q\x02\xb6|\xd5\xfcA\t\xd8PcWp$\xc8&\xf1G\x1a;\x87F\xce4\xd1\x15\x15\xf2\xa5\xd1\xd1\xe6\xeeQ\xcb\xf4\xf8\x92\xb0G:p|\xadcD\xbe\xda\xc7nHFiV>\xb4n\xf6\x8f:_:J\xdb\xdd\x1e\xa9:\x90B;\x03\xbf\u007f\x13\xbfN\xef\xfa\xfd\xfdw\xec\xf6\x11[t\xf0\x12\xde\xf7\xe6\xab[\x95\xde\xf6'\u007f>W\xf4\xb3O\xae\xff\xfegE\xe7\xfe\xac\xfcZ\xfc\xd2o\xdf}\x86-\xa7\xa2\xb7\b\xdfzd#\x9d\x8cߏ\x8f\xfc\xf6\b\xde/z\xa0\xd7\xcc\xeb\xef\xee.V\xff\x0e\x9fA\xbd\xf4C]\x89\xff4[\x89\u007f\xe5\x93s\xe7\xbc?;w\xee+\x99\xf7kfL\xb3x\xe2w\x1f=F\xb3\xf8o\xedq\x01\xea\xec\xc8\x03\xfb\xdf\xfd\x8fg\x94kU]\x89/\xbf\xfb\xc0{W\xb8_\x85M\xa3\x90W\xde\xc3G\xbe\x96\xbf>\x82\x15[\xce\x19W\x06\xa5\x11Tu%~CO\xcf\b\xfd5mOG\xbb\x9fݲ߁Jێ\xfbQ\x8b\xe6,\xcdr\xeb\xe5\u007f\xf7\xef\xa6k\x9a\xfe\xbc{\xff\xffr\xc7\xe1\xca'\xcf\xfd\xe8O\xf2\x17\x1b\x9f\xff䊾D\xfdwJ\x85?\xf3V\xbczt\x13.z\xfb\xb3\xe8G\x87\xf6Mw\xbe\xfd\xdb'\x8ah\x937\xce\x10w6\xa3\x9fX\xba\x12\xff\xbf\xf4\x02\x19θ\x13+\xac\xc47\xfc\x8a\a\x8a?\xf3\xb3\x8f\xd9g\x9b^\xff\xfa\x9d\xa2Ͼ\u07bf\xfbO\xcbVMJ\xdf\x0fG\xc0\xe4ѓmM\xed}\xec\xce\xe3\x97]\xad\xcd\x1d\x83\xf4\x82\x95ϰ\xc7\"\x1b\x97\xe1\x91бjgj\x81\xd2\xf9;\x9b\xc4&U\xa2hUs\x86u\xc9\x12\xcf\xc9쌪p\x97ǩ\x8ck䯋\xb1\xfa8\xa1\xf6\x04\xda\x13\xd4\xe0\xfa돬\xff\xd1\xfe\xb7\x1f)\xda\xf9\x9c\xf2S\xd1\xff\xa36\xcf\xc9o\xef|\xf5ᢊ\x9d\xec\xfc\xaf\xff\xe53\x1b+\x9ef\x8b\b\xaf\xbf\xb9Ż\x85\xad\x03\xe3<(\xea\xf0\xfc&\xefN\xedq\xb6/\x93\x1f:\xfb\xe5\xb8\xfa,$\xaed\x13\xb3\xbf\xd7\xe61\x94/\x9c_3cY\xde\xf2\xea\xbeb5\x8b\xa75[\xd6\v\xf8`w\xd9Ɲ\xef\xd1?\xb8\xeci\xb9\x9d\xf8\x81O\xb8_\x85M\xa3\x90\x1f<@\x17x\xbd\x8b\xf1\x03\x1f\xf0θ2(\xbc\xbe^\x9f\x106<\xf05\x8evPǜ\xec\x04\xb0\xf5t\xe3\r\x1e)\xa3\xb49[*`\xcfBRJ\x95>zA +%\xb3@\x9d\x84\xe8\xbc?ùF\xbb\xf7۔\x86,\xdd\xf7\x970\xa6\x13:\xcf\xd1\x15i\xe6q\xf8@)\xdf\xf3\xf2\xf3J\xd1?2\xcaK\x8f\xea\x17On\xaa<\xf2v\x91rZ\xa2\x1e\x1d\x99>$\xe8-{\x92-P7\xce\x10w6\xa3\x9fXzP\xb7\x18%ҝq'V}\x16\xf2%\xf5\xa0\x19~\xc5\x03ş\xf9Y\xc7\xecz\x99r*\x8aq\xf1;\x18\xef]\xb6j\xcac\xa3\x03\xa5Ҩ\xbc\\,\xb5\x80\x01\xb3\x10\x96\xc9\xdbsE\xf49\xb0h\xceµ\xd9J9\x83\xcc\x17\x97\x80/\xab\x98\x8b%K\xae\x9e\xaa\x80\xe5\xa2Z\x02\x00\xc0rb'`{\xd0}\xe6\x97q\x84\xfai\xc3.M\x93\n\v\x92P\x15\xfdm\xc0\x81\xa4\xd5n\x84\x02\x84\nضU\b9\"\xa4\x1a\xa1\xcc\xd5.\xe5\x9f\tr\xbc\x14\xa1\x92\xd21MY:RP\xda}\xca\x0e\xda\xf4[QM&Jw\"\x94\xa3\b͗\xe9ș\xe7A\xe8A.\xef\x98\xc6*\xba\xe7V\x94\xebB.eWnD\x13\xb0h\xcezSQZ\x9e⬇\x88\t\xf8\xb2\x8a\xb9\x88Y\xf2\xf5\x04\x01\x03\x80\x95\x81\x9d\x80\xad\x13F\x8dY\xa8\x996l\xe4Q:Y#Nt\\闤\xa3\xda[\x84\f:Q\x17\x15\xb0$Ow\xff+\xa4\x1f\xa5~\xa8X\x0f\xa6\xa1\xc3\xc6@\x8f)\xcbH\x12\n(j\xd0)\xa1\x16Տ\xd2!\xea\x91P;!\x1bPݴ\xb2?\x1d\xf5\x1a\x99\xc56\xd60\x86\x90({H\xe9H\xa5\xd0\xf2\xb0l\xa28\xbb\x9a\x86\xea\"d\xe6\x00Z5!&\x10\xca*\xe4\"|\x11\xea\xa9\nXG\xe3 \x01\x00`9\xb1\x13\xb0<\xb4\xc7\xfa\xad\x95\x8e\xdb\x14N 7\x1d\xc7\xf9\x88\xfa\xc5C\x05\f\x85\xe8\x97\x1dZ\xa2\x1dT\xfdx\x01+\xd1&\x8f\xdaPF\x84\xfaa\xd6U\xb4+\xe7V}6\x95\xf7\x19\x99\xc56\xd60\x05L\xdbU\xade\x13\xc5\xd9\x1e\xb4\x8e}\x16\xa061\x81PV!\x17\xe1\x8bPO\x98\x03\x03\x80\x95\x81\x9d\x80\xadF\xf5ܷ|\xb4\x8b6\xec5\xecKDR\x1ax\x16\xeaV\xbf$\xa1\xb0\"`n\xd5.\xa2\x8e\xf3\xeaiC\xe7\x04,\x92\x8a\x86\xd4\xfdi(\xa8\xf8\xc9a_\x9aP)!\x85(?8Mx\xe60\xd6-t\x01\xcb\xd5v=\xa4\t\xd8lg$\a\x9dd\x9fcW-\t\x84\xb2\n\xb9\b_\x84z\x82\x80\x01\xc0\xca\xc0N\xc06\b\x13=٨\x816\xec]\xea\xb7\\\xd47\x85Pn>#\x05\xf5+\x02\xb6N3\x8c\x04\xdb\x03\xa5n\x846\v\x02\x16FH\x9b\xc1Z\xa3\x8c\xdeZ\xb5N\rӜ\xa0\x84Pz\xe9qn\x99\xc6\x1c\xc6z&\xba\x80\xa9\xbb\x8e\xd3\xcf\x18Έ\xa4\xf6\xa6\x18B\x02\xa1\xacB.\xfc\x17\xb1\x9e `\x00\xb02\xb0\x13\xb0:\x94o~\x99DtV\xa9U\xef\x94\xe5\xa3\x13\xe3ȤK\x110\xad{\xd4\xe4\xa2?\xac^c\x11\xb0Q\x94\xacy\xf2\xa1f\xa2\xaffP5)\xb4١$I\xae\xbe\xa5g6\x97\xb1\x8ae\x19\x85)`\xb3\x9d\xddBh\xccH'$\x10\xca*\xe4\xc2\u007f\x11\xeb\t\x02\x06\x00+\x03;\x01\x1bBIf\xcb?\x8eR&iîS\xbf\xe6\xa03\x8a\xa4\x85Mc]\xc0\x0e \xf4h\xc7\xf0\x14i\x88\xd9\x03\xcbg\x9d*Q\x93\"\x83\x81\\dJ\xc3\xdc\xc6,AL\x01\x9b\xe5\x8c \xa1\a\xc6%\x10\xca\x1aS\xc0\xc4z\x82\x80\x01\xc0\xca\xc0N\xc0\x88\xc7l\xacS\xd9l\xbbU\x1b(\xdeJQz5\x19\xf4\xae\x1ce0<\xad\v\xd8t\x1ajc\xbfm\xb3\b\xd8\xf4*qZ\x8bS\x8bp\x90m\xb7\xa0d}\xf2j\x0ec\x8d\x98\x026ۙR\r\xf5\x11\xa3\x93\x85MB\x02\xb1\xac1\x05L\xac'\b\x18\x00\xac\fl\x05l\x10\xa1\x03\xea\xd6-\x1fJ\xbdDh\xc3Na\x9d\xb2ct\x89X\x15ʛ\xa1_\xfa\x904\xa1\v\x98\xacuw\xa62\xe9\xf7hw!\xdbQzD\x10\b%\x89L\xb7C(\xc9X\xe7\x15\xd3X'\x96\x80EsV\x8bJاO\xa9\r\x9f@,kl\x01\x13\xea\t\x02\x06\x00+\x03[\x01\xa3c\xac\a\xfb'\xc9\xf8\xf1l\x94\xd4M\u007fhE\xe8>E\xc1\xfaR\xe9\xaa\u0590\x84\xaa\xa7\x94\x91\xa6\x13m3\x86\x90\xd3\xe9l\xe6\u007f\xbc\x10\xb1I\xa6\x14\xd4ukZ\x95\x81\x91dT\xafhJw*j\xb2\bă\xa8P\x11\x9d\xa9R\xe36\xc0\\\xc6:\xaa\xe7\xd9=\xb0(\xce©\xa8~\x9a\xcc\x1cB\x8eq\xb1\a&\x945\xb6\x80\t\xf5\x84u`\x00\xb02\xb0\x170ҡ\xbfN'\x93=G\xa34\xec\xecU\xc9\xf7ek=\xb3n\t\xad\xcaS\xbe\xdc\x1f1\xe7\xc0\x9a\x10r\xfb\xf2\x92\x9c\x01\xb6^!OI:\xa0)OG2J\xcf\xcbDT\x05D\x81\xb8\xe4DR\xce\xeaT\xe4⦚b\x1a먞g\vX4g=\x12r\xe69QJ\x8f\xa5\xcb&\x945\xb6\x80\t\xf5\x84\x95\xf8\x00\xb02\x88C\xc0\x88| ?=)c]\x9bvOOiأ\xbe4\xa7\xef\xac\xfa5\\\xe3\x96R\xf3\x9a\xe8`\u0378\v\xd9\u007f\u007f\x86\x94\xb3\xe7\xdb)\x89\xde\xfb\v\x15\xacJ?\xa1+Ϩ?S\xca,\x19\xd0\xfc0cu\xcf\xd86\x8f\xb4JI\xc3g\x1c\xd3XC\xf5\x1ce\x12?\x9a\xb3PUfrF\xf9(\xb1\b\x98P\xd69\x04\x8c\xaf'\b\x18\x00\xac\f\xe2\x110\vz\xc3\x06\x00\x00X^@\xc0\x00\x00HX@\xc0\x00\x00HX@\xc0\x00\x00HX@\xc0\x00\x00HX\x16 `\x00\x00\x00+\x03\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x96E\x13\xb07\xf0\x8b\xd1w\xc0MK\x00\x00\xee\x12 `\x00\x00$, `\x00\x00$, `\x00\x00$, `\x00\x00$,v\x02v\x1a\xff\xfa\xbb\xe7ʼ[?&wNoY_\xf1\xe2M\xf6\xeb\x1f\x0eV\x14y\xb7\xbc\xfcO\xf6\xe5\U000fd6ca\x9f\xba\xa8\t؍\x17+\x8b6\xed\xbd\xc0yP\x04,\\\xeet\xe4w\x10\xfa\x96z5\"#9`\x04\xfc\xeeI\xd6^\x97\x98\xdcM옏\xed\x029\x84Rh8\xef>\a:\x14ݠ\x9f\x15 \xe3!\xee]\x89\"\x1d\xca\xeeC\x8a\x1fD\xe3~\xdb1\x92\xc4\xdc%\x8d\xa8_\xc7R\xd8\x01\xaaV~rD\xc9 \xe4K\xcb\xf4\x0ff\n\xaf9\x03\x80\x1f2\xf6\x02\xf6\xe2&\\\xb6\x1e㏟\xc5\xde2\x8cw\xd3\x1f_ĸbk\x85\xf2\x0f\x95\xb3S\xf4KQ\xd1n&`\x17\x8a\xb1wk%Ư\x99\x1eZQ\xae\x13\xe5z\x10*'d\"E\v\x0e\xe4AAmw#\n\x06\xdbPK0\x88\x1aI,Ύ\xc4o\xbb@\xf4,&\xfc\x0e\xfa\x96C\x9f\xc3?\x11\xdd0\x12L\xa9\x0e\x0e\x1e\xf38\xcc(G\"S\x1d\xe8\xf0\x04\x99hB\x1dS1,\xcc\xdc\xc8\xf4\x10\xabА\x1e|d\xa8ZR\xfe\x1d\xa7\xd5\x1c\x9a\x95j m\xcd\xf1\xce\x12\x00\xfc\xb0\xb1\x170\xbc\xe52\xb9}\x10{\xbd\xa7\uf40f1\xbe\xa8\xa8\x14\xf6~\xae\xec\xfa\xbc\x18\x9f\"\xe4\"~@\xd9\xf1\xfdS\x98\n؍b|\xf4\xb6\xb2g\x13\xfe\xd8\xf0ЊP\xb6\xd2\xd8\a\x1c4\xfcO\t\n\xd0\xdfF\xf4\x10\xdeJ\xa7Li\xb1ô\xb5\xa6\xb6\xcc\xce]c\x8d?~\xdb\x05\xa2gA\x02%\x8e)2\xe9(\t\xc44\x95\x1a\x94\u007f\xa6\xdcܛaEB\x88\xbeC\xf6,\x8a\xa5p\x84ˍh\x152h\x90\xa2\xfdʘL/\x8d\x10r\xcb\x03\x02\x06\x00:q\b\xd8e\xe5\xe32\xc6oЯ;\xf1iB\x8e>\xf02\xdbw\x14\xbf@\xc8A|\x94n\xdf,\xa3\x02v\x14\xefe{\xde\xc7?6<\xb4jq\u007f\x8e\xa1le\x10\xa8*\xd7.d\xe8C$\xac\xb5ְ\x11Ah\x16\xf9\x9b\xe3\xb7] z\x16$\xe0\xf7u\x91\x13>\xbf\x8d\x80\x91\x86ԙ\x18\xfb\xe3\x100#72\x0f\x01\v\xa4\xb2\xb1c3\b\x18\x00\xe8\xd8\vX%\xfd\xb8\x8d\xf1\xdf\xe8\xe7A\xda\xe9\"\xb7o\xb3}o\xe0gɝ\x8d\xb4OF\xa8v)\x02\xf6\xb0\xd6\xf3R̯\xe9\x1eZ\xd1Z\xf69\x95\xa4\xb4\xbc\x88\x936\xcc\x19\x97\xd8\b\xcd\xd6z\xa2 -\xe7q\xf6\xee\xfd\xa0ϝ\xe2*Q4\xafW\x9b\xf7\xca\x17lG\x93\x11\xaa\x0fWe;6L\x93\xa9\xcdY\x92\xbb\x94\xbe\xed\xbe\x16\xa5\xb4\xd7\xe58|ょZ\x94\xdcZ\xe3\xce(U\xf3l\xcbw䵉\x1e\xf8,\x02\xfe\xb6rR\xf2\n\x150\xd3oH\xb1-%n\x84\x9c\x11]\xc0\x1a\x93#\\y\xf9\xe2\b\x02\xa6\xe7f[!B\xe4\xaa,gy\xf5,\x013\x0e\x89\xa7\x86}\x9fh\x8ep~\xb9\x1aG\xaf<\x00\xdc\xcb\xd8\v\xd8S\xf4\xe3_\x18\u007fO?\x9fe\x02Fn\u007f~\xfa\xb5\x83\x95X\x11\xb0\xef1\xbe\xad\x19\xbeHn*\xe3\xcd\xed\x8c\"l\xcc\xe3\x1b\x81\xbc\xb3i\x18\xb6mh\x872\x9cDyB&Fk\xadI\xda\xd1\xd7\xeaʟ\xa1\x83\xccG\xbb\a\xda]h\x9a\xdc\n\x06s\x1e\f\x06\x83a\xc16r\xb23;'\xdd]W\x85\xae\x92>T3x\xb24iX\x11\x9a\xced\xe4jhN/'\xbc\a\xfak\xf6\xe1\x9fg\xb3i\xabj\xa9\xbe\xaf^\xaa\x12<\xf0Y\x04\xfc\xe3i\x93\xabd*`\xa6ߙ\xa1\x86\xa4!ҁNP5S\x05,?\x8f//_\x9c\x10\xea\x8bD\"\xfdH\xc8ͶB$\xec\xcc\xe9\xe8\xf5!\xab\x80\x99Y$q\xe3f\xc3/W\xe3\xe8\x95\a\x80{\x19{\x01\xdbG?\x14\x01c\xb7\x1c\x99\x80\xdd9U\x861~`\xebNE\xc0\xaea\xac\x1a\x9eW\x04\xec;lbL\x82\xb5\xa2zuc5\xea&d\b\xb9f\x88\x1f\x89sXzk\xedC\x1d\xec[\xa7\xd2\xc3pѶ\xd7\xe6d\xbfG\x1fq\xe5#ߔ\xd2MR\xa4\xa8\x8bN\x97籈H\x92S\xe9\x80T\xb9\x88\xe8A\xcaV,&\xdd\x05\x84\x9caݣ\x01\xaa\xa5\x9c\aa\bI\xf2\xb6\xad!T\xc0x\xbf\xa4\xba`\xc2}\x98mI\xf5\x91[\xa3\xe5\xe8C\xa1\xbc\x9c\xb3\x90\xd6\xc3\n\t\xb9\xd9Vh\xadG\xe9f\xcd\xe4Y\x04\xcc\xccb\f\xf5\x1ai\xf8Z\x985\x8eQy\x00\xb8wY\x88\x80\xbd\x81\x1fx\xe1\xf4śl\b\xa9t\xbaԕ\x15\xef\xab=0c\xe4hЊ\x1eW7ܴ\xcd\x13\x0f:\x1bq$\x8b+\x01\xf4\xd6\xea\xf7LS\xdcՄ\x8cgyj\x8f\x8f\x12\xb5\a\x11C\xc0\xa4\xab\xda\xd6D\xdb\x06\x8fS\xed\xd5Ity\x06\x9bH\xe2=HlF\xab\rM\x92\x9a\xd5,\xc5\xeajу `M\xa8\x91\t\x18\xef\x97D\xf22\x1fR-$\xaaN.\xaa&\\y9g!\xd4<<<\xdcB\x05\x8c\xcbͮB\x93ꪋz\x8b\x80\x99YL'\x9b\xaa\xcf\xd7¬q\x8c\xca\x03\xc0\xbd\xcb\x02\x04\xecv1\x9d\xc9't5ų\xe4\xce&\xfc9\xfb\xf2\x1a\x9d\x03+\xd3;^\x9f\xff\xe3_\xba\x87V-\x92\xe3$Btv\xa6\x01\xd5\xf6\xf3\xb1\x1d)zk\xcd\xd3\xfa.\xb4\xcf3پ9\x17e\xaa\xcb%b\bX\xbe\xfeS\xa6{OOp\x9d*`t|\xa76g\u0383:\xea\x1bD#d\xad\xaaB%\x05\x82\aQ\xc0&\xf6L0\x01\xe3\xfd\x12ҭ\xaf\xfc\x90j\x86\x87\xd5\xe1\x1f_^\xd3\x197\a\xc6\xe7fS\xa1\x11սu\x12\x9f\xcbB\x9b\x03\x9b\x1e\x10\xfdr5\x8e^y\x00\xb8wY\x80\x80\xfdS\xbd1InV\xe0\x83\x84\xbc\xa0\xa8\x98\xc2\xedJ*`\xcf\xe1\xedw\xe8\xb7?`\xef\xf7\xba\x87V\xb4\x8aM+\xff\x02\xb1n\xc3\x18rע\x93b&zk\xad\xf2\x8c0&\x94\xf6L{@S\x9d\x0e6\x01\xce\xda{\xc7U\xc1V\xf9\xb5\\\xdb\xc8-\xa0\xd3\xda\xe5\x16\x01\xe3=Hl\x1a\xae\x1dM\x91j\x0fK\xe2\xa9\x16\x97E\xc0\xc1\xfa\xad]hB\xa8ET\x01\x13r\x03\x80{\x96\x05\bؿ6⣊Lѥ_{\t\xb9\xb6\x1e\xff\xfa\x0e\xb9y\x90\xad\x03\xbb\xec\xc5/(#ʋ\x9b\xb8\xe7\x8aZ\x11\xcaS\x14줤\xcd\xe1\u070f\x1c\xe9\x96U\x10zk\x1d@]\xf4\xa3\xfe0\xed\xa8\x9d\xa1\x9b\x85\xdbؿ\x85\x84|\xab\xee\xe3\x05L\xefƸ\xa9t\xcc\xe4Y\x04\x8c\xf7 eN\xd1\x15T\x85tN\x89NXu\xa2>\xc1\x03\x97\x05'`\xbc\xdf\xe9\x82z\xb2\xcd7cd\xc1\xe0\xca\xcb9\xe3\x04\x8c\xcbͶB\x05nE\x1fë,\x02\xc6e1\x99^\xae\f\tg\n=b-\xa2\n\x98\x90\x1b\x00ܳ,@\xc0\xc8\xdb\x18W>\xf5\x13\xbc\xf1e\xbcU\xf9\xe9\xe3\"\\\xf6\x13/\xde\xc74\xeb\xfcz\xec\xdd^\x89\xf1\xeeۆ\x87V\xe4KM\xb9ύ\xf4\xb9\xfc\xe3\xc8x\x8cHc\xa4\r\xb5\x8c\xb0\xad\x00\xf2\x9f\xec\xadF'h\vL?\xd0\xd7S\x8d\x06\xe9\xcf\rRs\x8f/m\x9c\xb7\x9d\x1eb\xb7\xf2\xc6\xd8n\xb4\xb9\xedp>r5\r\xc9\xc1\x94\xea!2R\x9d\x12\x94\x05\x0f\x12\xca\xef:\x9e\xe3\xa4\x03\xbf\xaa\xa4@_ \xa9J\xf4`f1\xe9_\xf7\x8d\xf2\xf5\x9bu\xfeI\xceo$X\xeb\x1a'\x97\x9c\xbb\x82\x11\xba\x12\xdfX\x03b\x94\x97s&\xac\xc47r\x8bQ!n%~\xc8\xe1>T\x9f\x91\x94\xdc\x11RW\xe2\xb7\x04\x83W\x85CB\xce8\xee\xef\xe8\xf5%\a\xf9Zp5\x8eUy\x00\xb8wY\x88\x80\x91\v\xbb˼[^\xfe\xfef\xd1\x037\x94o\u007f;X\xe6\xdd~\xe1c\xb5\xd3u\xed\x85\xca\"\xef\xf6S\xa6~)\x02\x16\x18\xf5\xa59\xd6\xf6kߧ$\xe31\"\x95[\xe9\b\xa1T\xf5\xb9\x9b\x81u\x19Nfy\xa2\xf0\x90;%\xb3Pm\x80\x91\x1d\x19\x8e\a\x87\x05\xdbQ\xf5!\xc2\x12\xfa\xe3LK\x8e\xe4\xf2wx\xa4\xc2Z委P\x9a\xf2o\xad\xe0Az\xbcڙU%3g\xc7\xf2\xb4u`\x9c\a3\x8b\x06\x84\xe8T\xd36\xfa<\xa3\xe9w@1\xac#;\x94\u007f\xcf\xd2g!W\x1be\xd7\xcb\xcb9S\x9f\x85T\xfc\xb0Yy=\xb7\x18\x15\x1a垅\f\x97fd\xef\xe9HV\x8a^\xadM|\xf9\xf9,\b}\x16ґY\x1a\x12j\xc1\xd58V\xe5\x01\xe0\xde\xc5N\xc0\x16\x9fK\xe6cDK\x869\xea\x03\x00\xe0\x1eb\xe9\x05\xac\x1e\x1d\xb03Yt@\xc0\x00\xe0\x9ed\x89\x05,4ֵJ\x92\xed\xac\x16\x1d\x100\x00\xb8'Yb\x01+G\b-\xb9\x98\xa8\xb3\xdb\x00\x00\xdcs,\xb1\x805\xa5\xba\x96~\x00\xc9f\xb7\xc7\xec\xac\x00\x00H8\x96X\xc0\x00\x00\x00\x16\x0f\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x96\xc5\x12\xb0\x1b\xc2\xc3C\x0f\xc56\x04\x00\x00X,\x16G\xc0\xee\x9c\xf2\xde4\xbf\x81\x80\x01\x00\xb0$,\x8e\x80\xdd\xd6\xdf\xcb\xca\x00\x01\x03\x00`I\x00\x01\x03\x00 aI\f\x01\xeb-\x88\x11';~\xb6\xd5\xd8Y\x00VV\xca1\x9b\xbcߌgr\x17X)\xd5\x04\x16\x80\xad\x80]{\xe1ᢍ;\u007f\xa3\xce\xd1\xdfx\xb1\xb2h\xd3^\x161\xed4~\xe3\xfb\x17+\x8a*_\xfe\x9eƄ\xa4\\֓(\x02\x16.w:\xf2i<\x9d\x16\x94\xab\xfex@x\x8d\xe1\xe4\xb6LGI\xacȰ\xb3h\xfc\xf7\x9f\x9f\f\xa3\x00\xa9EI]vvQ\xa0/\xf8B\xae\r#vv\xf3\xa5\x06\xa1fB\x03\xd5\"k\x03\x1ap\xdd\xd5\x06\x1b/+\xe7\x985%\x1d\x8e\xfa\xfb\xa2\x1c\xa8\u007f\xa3\x9a\v\xa4'Y{\xe1[r\xb7\x9d\xe9\xbcl\x17\xc8!\x94B\x0fc\x9f\x03\x1d\x8an\xd0\xcf\n\x90\xf1P̈\xca\xea;\xf0\x0e!\xf5\x1dx6\x8cp\xef\xc0S\x18Ka\x12A߁爒Aȗ\x96\xe9\x1f\xcc\x14\xa3\x00q\xd8\t\xd8\xe5b\xbci\xfb\x8f1\xfe)}\xd7\xfd\x85b\xec\xddZ\x89\xf1k\x84Ł\xac\xc0ś0\xder\x9b\x9c>\x88\xf1\xbe\x837\xf44\xad(\u05c9r=\b\x95\x132\x91\xa2E\xa8\xf6\b\xaf1\xf4e\xbeR\x9d:I\xe2\xe3XR\x87\x9d\xc9lΊ\x8d\xa7jշ\xf4\xa1nN\b9\x83\xb3s64\xfa\x8a\xd5\xc1\x8e\x82E\u007f\xbb\xe9xz\x13=\x02\x93M\xe9\xe3\x96=}i\xdd\xda\xd6\xdc%[lV\xd81\xe3\xb2\xe8Kn\x8dfa\x1e\xa8\xf9\xb0x\xd5\\\xa0A#\xd2^\xb9\x8bbG]ѓ\xc5c\xbb@\xf4,&\xfc\x0e\x9f\xf2\xe1s\xf8c\x8cs\xe8[\x88\x83\x83\xc7<\x8eP\xf4\xfd\xe2[\x88c`\x1c\a\xee-Č!\x16\a\x82\xbd\x85x\xf6+\x17\x06\xd2\xd6\x1c\xef\xccC\xb1\xa3\xd1\xdb\t\xd8>\xfc\xb2\xd2\xf9\xba\xb8\x11\x9fW\xfa_\xc5\xf8\xa8\xf2\xe5\xf3M4\xf6\xd0i\x8c\u007f\xfc9!\xe7\x8bh\x88\"\xeb\x10\x12e+U\x1dp\xd08\x15%\x88Ɨ #\xc2k\f'Q\xab\x16\x8f1\x0e.\xa9A\xd1\xe6\xc9\x1a?\xff-\xacF\xd7\xe5_\xab\xc3\x19\x88\xb6\xb3P_r\xbf6gN\xa3\x05\x90\xa7\xea\xf2q1ʯ\x80M\xc9\xe6\xc9D\xe1\xdc#\xf1\x15v\xcc\xf8,\xea%\xab\xca/\x9cE\xac\xe6\xc2\fZ$-\xe8A\xaa\x18\x1f\x95GO\x16\x8f\xed\x021J\x16(qL\x91IGI\xecvƎΔ\xdb\x12M\xccD\x88F\x1f\x1d\xfe8\f\vRe\x8d\xc4\xc51\x99^\x1a\xa1\xd1,\x16.`\x95\xea\xc8\xf0\xed\x83\u007f\xa0#Ž\xec\xb7\xf7\U0004f640\xb1=\xcf\xe1\xe7\xa2\b\x18\xab\xc81\x94\xadt\x81U\xe5څ\xf8\xa3\x13F\xf3\xe8\xfaWgݲ3\x89\x02\x1f\xb9\x8c\x06\xfba/!\xe3\xafR\xce@\xb4\x9d\x85zv\x8e\xa1\x85\x14c.\xca\xd5(\x01\xf5fl\xa4Yؔl\x9e|9\xd7\x05FV\xdc1㳸\x95e\t\xa4\xf0o\xb0\x88\xd5\\\x98A$\xac\xb5ְ%\xba\r\x87\x9e,\x1e\xdb\x05\u0085\x12\xf4u\x91\x13>\xbf\x8d\x80\x91\x86\xd4X\xb3>q\bX\xf4؈\x949\x04,\x90\xcaƎ\xcd\v\x17\xb0\x9f❟\xeb!\x1e\x1f֢>ަ\xf1kO\xe3-\xec\xcb)\xfa\xd2|\xab\x80\xade\x9fSIJ\xbe\x11'-\u058c\xcb,\xc2t\x86:\xa8\xaf\xa3/\xbaI:A\xc6$:\b\xaeE)\xedu9\x0e\x9f\xfa\x876\\\xeeJ\xc9\xdc\xc0\xae\xac\xe9\xf4=\xec\xa7\x03J\x92N҉\x8c\xe8 \f1ى\x82\xb4\x9cǕ6ӫ\xcd\x1b\xe4kVcɻا\xb4G\xb3\xe5\f\xb8\xcdZ\x94\xdcZ\xe3\xce(\xb5\x1c-\xf5\xecT\xb9\x85,\b\t\xfa\xdc)\xae\x92lk\xb2\xb6|\xfdm\xf5\\\xc9\f[ރ\x19\x00i4Y\xa9U\xb8*۱a\x9aL\xa6\"\x94\xc4b}\x8b\xb5Г\xf1\xb6Q\x89aК\xd3\x17Fᾜ\xb6\xe5\x8b\x80\u007fd\x1503\x8b$n\xdc\x1c\xade\x85:\xed\x04\x8c\\>\xe8\xc5\x18\x17\xbdx\x9b|\x87M>\xd6\xc3\x15E\x170\xad\x8f\xb4\x1au+\x17)r\xcd\x10?\x12F\xf0\xe6\x10\x92\x8fj\xe8T.\xa5*\x97\xb2\x15qoP\x14w\xfa$\x9b\xe5\xef\xd3\xfbn\x1d\xea_\xeb\xd5'\x88\x80\x99\xac\x0f\xd1I\xa5a\x163Q\xe8\xb1^M\xa9\xd5l3\x15\x975.b107\xa5\xec)\xa5\x99\xb9\v\bO\x88\xfd\xf1\xa0g\x84Ϣ\xcdE\xe5\xa8\xcd)&;\xc3\xfe\x14\rP\xe5\xe6J\xc6\xd9r\x1e\x82.\xb2G\xdaC\\L\xa0\xf3\x91oʘ\x17t\xe8\xe3\x19\xa3db\xddx\xdbhD78\x93\x82R\xfa\xd9\xd6r\x1d\xb3*'\xedTױ\x18\xbe晏qP\xc5\xc1\xd78\xbd\x96f\xa1\x1f(\xb3Brk\xb4\x1c}\x18\xebB\fi=\xac\x90\x90\x9bm\x85\xd6zn\xd1ȫ\x16\x013\xb3\x18㦚\xa2\xb7,\xdb!\xa4\xc2\xed\xcf_ۊ\xf1\xb3\xb4\av\xcd\xfcuN\x01{\\\xddp\xd3\x1a\x13\x0f:\x1bq$\v\xf7A\xa3\vX\xb5\xbeُFM\xdb\x1e\xa4\xbdLu4)r\xabcrZ\xe2\xf6\x89\xc9\xfc\x9ei\x8a[\x8d\xba\xcd\x1d\xafZ\xfd}\xacR\r1\x86\xdcѯR6\rІ\x84\x1b\xa4!\xd4<\xd4W\xe0\xa0>\xb8,Ƴ<\xb5\xc7Gɴ\x98\xacF\r\xb9\xb6\x9a\xc5\xcc6J\xc6\xd9r\x1e\xae\xa2[\x0f>\xbavJ\xed(\xe5K\\\u007fi\xb6\x80\x89u\x93\x84\xbe\xd5l\xa2\x19L\xd6In\x94%\xed\xa1U[\xaec\xe68\xa0\xee\x13\x05,\xc6A\xb5\nX\xb4u\x0e\x86\x80\x19\x15\xe2\xb9\xfbՌ~\x86b\xd7\xc2Do\xad\xf1$\xe3\x04\xcc8\xb1\x13m\x1b?M2[\xc0ĺ͞R\x11\x89f\xd0\xe8j\x0f\xa1\xd01\x17\xfd\x93\xbaL\xc7l\x1c\xf5\xd0}S\x16\x01\x8bqPŦ?l\x89&\xaab\b\x18WH\x93\xbb_\xcd\x18g(f-L\xf4\xd6\x1aO2N\xc0\xf4\x13;\x9c\xe9\xde\xd3\x13\\g\x89Fo\u007fM\xf2\x97\x06/`\x13{&\x98\x80\xf1~\t\xe9\xd6\x0f\xbaT3<\xac\x0e\x84\xc4#\xa9;\xe3\xe6\xc0\xf8\xdcl*4\xa2\xba\xb7N\xe2sYhs`\xd3\x03$V˲\x11\xb0\xef\xf1\x03\xff\xa4\x9f\x971\xbeM\x9e\xc3\xdb\xe9j0\xf2\a\xec\xfd~n\x01[\xc5\xe6\x15~\xa1F\x80\x1dC\xeeZtRpk\x11\xb0z\x8b\x80}\xc8_%\xb7\x8c\xfbC\xb9\x9d\xeb\xd6\xe6\xf6\xe4\x12\x113Y\x95g\x841A\u007ffǫ\x83\xfd\x81\xa8K\xba4\xcbV007%6{\u05ce\x84їzv\x9c\xb4\xf7\xc0e1B\xff^Mu:ڄd\xd5\x1e\x96\xc4S-\xe4\xc6\xd9\xf2\x85\xcci\xca\"\xeef5E>?\x81#\n\x18-\x99X\xb79\xee[\x92\x98\x06t\xaa5\xa4\xfdu^\x9ec6\x93\xfasu\x9f!`\xf5\x962\xf0\a\x95ύ\x90CR\xb4!s\xbc\x02v\xb7\xaa\x19\xfd\fŮ\x85\x89\xdeZ\xe3I\xc6\t\x98~bs\v\xe8\xdf\xf1r\x8b\x80\xd9_\x93\xfc\xa5ada\xdeM\x12\xfc\x129\xb3>[\xedp\x1am0ƅ\xc8\t\x18\x97\x9b]\x85&م@\xac\x93\xf8\\\x16\x01\a\x1b\xb9u\xa1\x89\x18-\xcbN\xc0\xc8O\xf1O\x15\x05\xbby\x10?\xa5\xa8\x98\x17\xbf\xa0\xe8\xd4\xc5M4\b\xb7 `\xa4\b\u007f|[\xbfYI\x97Q\xe4)\nvR\xd2d\xea~\xe4H\x17\xbbM\xa6\x809\xf6(\x83\xe05\x16\x01\x9b\xca,\xa4\xedl\x17;\x05d\xb3G\xbby믕ΠZ?\x111\x93\r\xa8\xa3\x8cz6l/,$\xe4[\xf6\xc37\x92q\a\x9e\xbfJM\x03nSʜ\xa2\xcbN\n\x99\xc5\xd8a\xf5\xeaV\xcfNf\xdd\xe8/\xf8,\x1a\xd0\x19\x96v\x9b\x90\xac\x8fM\x0et\xa2>!7Ζ/䆂rR~\xbf\x8fe\"\xfc\xa16\x04\xcc(\x99P7\xdev\xac\xc1\xd2%\xb0\x1ap\x8c;\xd5\t\xebe;f\x9b]\xf4\xba\xafb\u05edy\xe6c\x1cT>72\x93\xab\x85P\x17\x89W\xc0\x16\xbb\x9a&\xd1\xceP\xccZ\xe8G\x87\x98\xad5\x9ed\x9c\x80\xe9'\xd6M\xa5c&\xcf\"`\xf6\xd7$\u007fi\x18Yp\x02\xc6\xfb\x9d.\xa8'\xdb|3F\x16\x8c\xe8\x17\"'`\\n\xb6\x15*p+\xfa\x18^e\x110.\x8b\xc9\xf4rE\tf\n=\xb1Z\x96\xad\x80\xdd\u0604\x8b\xb6l\xf5\xe22:\xfdu~=\xf6n\xaf\xc4x\xf7m\xab\x80m\xc7\x18_\xd0Ӵ\"_j\xca}nc\xbd\xc3q$\v\xa5)\xff\xd2\xdbB\xe1\xcd\xee\xf4\x82\x1e-A\xfd*5\xf9\x882\"iL\x1f&\v\xa9\xf8a}\x0e=\xb7\x18\x15\x1a垅\f\x97fd\xef\xe9HV\x8a^\xad\x9eL\xe4\xe7\xb3P\b\xf9\x1c\x99\xa5!\xa1\x16\\\x8d\xedׁ-\x06\x97\x84Lj\x16\xc0.)\xda\x1d\xa88\t\xc4^\xc5;\x1b\xb3\xab-\x89\xc9]\x17\xb0\xd0X\xd7*iV\xc7{\xa5\xb2\xc0\xb3\xbe\xc0d\x8b\x80\xec\xaa[\xeev4\xef\xca\xcf[\xc0V\x04f5\x1f\xd4F;\xd6\xf9\xfc\x95żOKbr\xd7\x05\xac\\9Ӊr(\xd5\xd9\xc1y\xb3\xc0d\xf7\x06\xf3\xaf|\xf8\f\xaa\x9b_\x8a\x15\x00_\xcdp\xaf\xca<ƟK\xce\xfcOK\x82r\xd7\x05\xac)\xd5\xf5\xef\x0e \x97\f6;\x18\xfb\xee],\x16\x98\xec\xde`\xfe\x95_\x8b\xf4;8\t\xc4\xfc\xab\xb9\xbc$Zy\x17\xcc]\x170\x00\x00\x80\xbb\x05\b\x18\x00\x00\t\v\b\x18\x00\x00\t\v\b\x18\x00\x00\t\v\b\x18\x00\x00\t\xcb\xe2\n\x98\xfe|\xd1ܼA\x1f\x06\xd7X\xfc\x18\x92\x00\x00\xfc`\x00\x01\x03\x00 aY\\\x01\xbb\xfc\xeb\xf3v&\x04\x04\f\x00\x80Ebq\x05,>@\xc0\x00\x00X\x14\xee\x15\x01\xdb6\x9f\xe7r\x01\x00\xb87\xb0\x13\xb0\xdf\xe0S\x17*\xbd?\xb9\xa6\xbe\x18l\xd3^\xed\xad\x85\u05ceT\xaeߴO}_>\xb7\x83\u0381\xbd\xa1σ=\x8b_&\x96d\x9f\xef\xddT\xfc\xd4E\x8b\x80\x85˝\x8e\xfc\x0eB_Z\xa7\xbd.\xfa\x80\xf8\x02\xc48\b\xa3\x00\r5\xf8o\xbcug\xbe\xf4$k\x8f\xf4&wۙ\xce\xcbv\x81\x1cB)\xf4%\xb7}\x0et(\xbaA?+@\xc6C1\x9f\xe1Q\xdf\xe9t\b!\xed=\x92s2½\xd3Ia,\x85\x9d:\xfaN'G\x94\fB\xbe\xb4L\xff`\xe6\xc2\xdf(\x02\x001\xb0\x17\xb0\x17\xbd\x18\x17\xdf&\x17\x8a\xb1wk%Ư\xd1_\xcf{q\xf1\xf62\x8c\xe9\x8c\x17\xbf\x83\n\xd8?p\x11{\xfb\xe1\xedb\x1a\xba[Hv\n㊭EE\xbb\x05\x01\xcbu\xa2\\\x0fB\xe5\x84L\xa4h\x91}=Q\x038\b\x9c\x15_\xd0Y\xb5\xea[-\xd4`\x14\x03\x8b\xedl\x16bЈ\xb4WH\xa2\xc6(\tT\xf4d\xf1\xd8.\x10=\x8b\t\xbf\x83\xbe\x9a\xda\xe7\xf0OD7\xa4o\xd5\f\x0e\x1e\xf3X\xe27\x9a\boՌ\x81q\x1c\xb8\xb7j2\xd4\x00\x8f쭚\xb3\x1f!\x1eH[s\xbc3\x0f\xcd\xe7\xe5[\x00\x10\x1f\xf6\x02\x86+\xcf_8Mn\x14㣷\x95.\xd4&\x1a\x99\xe8\xbbb\xfc\xf2mr\xe7\r\x1a\xdcC\xd8\xc1\xeeB\xeeħi\xca\xf3x+\x11\xf7^\xc4\x0f\x9c\xbeC\xbe\u007f\n\v\x02\x86\xb2\x95&5\u082fX)A4\n\x00\x19\x89\xe3\x05\x88k\xfc\xfc\xb7\xb0\x1aJ\x97\u007f\x83\bg \xdaFa!\x06-\x92\xf6\x12\xefT3\xf2\x93\x15=Y<\xb6\v\xc4(Y\xa0\xc41E&\x1d%\x81\x98\xa6\xec\xe8L\xb9\xc5\xf8P\x1cq\x84\x87\xe7\x8fC\xdc\xe1\xe1'\xd3K#\xf4\xed\xec `\xc0\xe2\x13\x87\x80]\xa6\x9fG\xb5@\xdc\xef\xe3\x1f\x13\xf22\r\xf1\xa1\xb0[\x91*a\a\x13\xb0\xd3\xeaރ\xf8\x94%\xd9A|\x94n\xdf,\x13\x05\x8c5\x98c(\x9b\xbe\\\x94)\xd7.\x14\xbb\x15\xea\x88a+\xaa\xd57\x8e\xf1\x02\x1654V\f\x16b\x10\tk\xad5\x1c\xfb}\\z\xb2xl\x17\b\x17\x1a\xcb\xd7EN\xf8\xfc6\x02F\x1aRgb\xec\x8fC\xc0\xa2\xc7\xfa\xa2\xcc!`\x81T6vl\x06\x01\x03\x16\x1f{\x01\xabd\x9f\x0fk1!o\xd3\xe8\xb6[\xb4/7n\xdc\x11w0\x01\xbbY\x84\xff\xa9\xfc\xeb\xa5\xff\xf2{\xefl\xc4\x17ٗ\xa3\x82\x80\xade\x9fSI\xca\xf5\x1dq\xd2\xcb\u007f\xc6e^\xea\xb5(\xa5\xbd.\xc7\xe1c\xc1\rȉ\x82\xb4\x9c\xc7o\x11ҫM)\xe5kVcɻا\xb4G\xb3\xe5\f\xb8\xcdZ\x94\xdcZ\xe3\xce(\x15\x1b\x92\xe8Lς\x90\xa0ϝ\xe2*ɞ\x9d\x9b\x89\xd9Z\xed\x93i\xb6\xa3\xc9\bՇ\xab\xb2\x1d\x1b\xa6\xc9\xd4\xe6,\xc9]:J,\xd54<\x88\xe5m\xcb\xd7\xdeknz\xe0\xb3\b\xf8\xdb\xcaI\xc9+T\xc0L\xbf\xa1d\x1a]ύ\x903\xa2\vXcr\x84+/_\x1cA\xc0\xf4\xdcl+D\x88\\\x95\xe5,\xb7\x86\xc6\xe2\x0e\x89\x16\xdbo\xa29\xc2\xf9\xe5j\x1c\xbd\xf2\x00\x10\x0f\xf6\x02ƺS71\u07b2\x9dQ\x84/\x90\xf5\xf8o\xfa~q\x87\xba\x90u\x1f\x1dC\xbeO\x13\n{\xbf\xa7\xb1%)\xa7\x05\x01\xabS7\xb2i\x18\x9bm4Dπ\x16\x17\x98\x12\xeaLF\xae\x86\xe6t\x16\u007f\xae&iG_\xab+\u007f\x86\xdc\n\xb2x(A]\x89j$U\xe0$\x94\xdbٛ\xa9\xd8r\x06\xdc&u\x96}\xf8\xe7\xd9\xe24\x90\xe0\xcc\xc8B\x19\xc7>\xda=\xd0\xeeBӳr31Zk\x1c\xc94\xdb\xc8\xc9\xce\xec\x9ctw]\x15\xbaJ\xfaP\xcd\xe0\xc9Ҥa\xb1\x9a\xa6\a\xa1\xbc\xd5R}_\xbdT%x\xe0\xb3\b\xf8\xc7\xd3&W\xc9T\xc0L\xbf3C\rIC\xa4\x03\x9d\xa0j\xa6\nX~\x1e_^\xbe8!\xd4\x17\x89D\xfa\x91\x90\x9bm\x85Hؙ\xd3\xd1\xebCV\x013\xb3H\xe2\xc6͆_\xae\xc6\xd1+\x0f\x00\xf1`/`\a\xe9\xc7w\xd8\xe4c\xa5;uC\xdf/\xec\xd0\x04\xec<\xdeM\xc8S\xf8}\xcb\xdek\x18\xabi\xce\v\x02\xa6\xc5^[\x8d\xbai\x14n\xd7\f\xf1#~\xa6H\xa2\xb1\f\xab\\\x84\xb6Kz\xabr\x98\x85\x87\x13\x063WS\xb4`4R\xe6\xa4\xd2r\\\xc4b`nJ\xd9S\x84L\xba\v\x88\x88a\xc0e\xd1梍\xa8\xcdi\xf1 \xa0\xb7\xd6x\x92q\xb1\xfd\x90O)\x85\xf2\u007f\xa4\x8bN\x97\xe7\xb1\x18\xc7f5y\x0ffyϰ\xee\xd1\x00\vVfz\x10\x86\x90$o\xdb\x1a\x16ۏ\xf7K\xaa\v&\xdc\xea\x1b\xe5\xa5\xfaȭ\xd1r\xf4\xa1\xf5H\xea\xceBZ\x0f+$\xe4f[\xa1\xb5\x9e[4\x92\xa0E\xc0\xcc,ƌ\x18\xa0b-\xcc\x1aǨ<\x00\xd8\x13\xa7\x80ݤ\x03D\x9d;ڼج\x1d\x9a\x80\xddވ\xbf\xff'\xf6\u07b4콩\x87\xef~_\x10\xb0\xc7\xd5\r7mYă\xceF\x1c\xc9\xfc\xfdv\x16z\x94Ͱ\xf8=\xd3\x14\xb7\x1a`\x98kJ\xb5\xfa\xab'Y\x9c\xf89\xc3ó\x19\xa26d\x89\xa4h\x18pY\x8cgyj\x8f\x8f\xaa\x81\xac\xed\x04,\x9ed\x9c\x80Iz\x98扶\r\x1e\xa7\xda\xdf4\xab\xc9{0\xcb[\xa3\x86\xb5Z]-z\x10\x04\xac\t52\x01\xe3\xfd\x92H^\xa6\xb6\xd2N\xa2\xea\xe4\xa2j\"\x1eI\xddY\b5\x0f\x0f\x0f\xb7P\x01\xe3r\xb3\xabФ\xba\xea\xa2\xde\"`f\x16\xd3\xc9\xe6\xdf#\xbe\x16f\x8dcT\x1e\x00\xec\x89S\xc0H\x996\x99E>\xffǿH%V\x9f\x18\xfa\xf8\xa7\xa7\xc4\x1dڳ\x90/\xe2ӧ\xf1\xb3\xd6dw6au\xe1\xd8k\x82\x80\xa9w\xc5&\x11\xa2\xc3\xc0\x06T\xdbo\x04\xffd\x98Ax\xf3\xb4\x1e\x02\xebYpMI\x96\xf4E\xac|t\xe5\xe8\x02\xc6FQ\x83\xd6 \xa9\x86\x01\x9f\xc5d\xfb\xe6\\\x94\xd9h\xf1 \xa0\xb7\xd6x\x92q\x02\xa6O\xa6\rg\xba\xf7\xf4\x04\xd7Y\xa2+\xf3\x1e\xcc\xf2\xaeUU\xa8\xa4@\xf0 \n\xd8Ğ\t&`\xbc_B\xba\xf55)R\xcd\xf0\xb0:\xfc\x13\x8f\xa4\ue31b\x03\xe3s\xb3\xa9Ј\xea\xde:\x89\xcfe\xa1́M\x0f\x88~\xb9\x1aG\xaf<\x00\xd8\x13\xaf\x80=\x87\xb7ߡ\x9f\u007f\xa0K'\x8ejkU\xf7\xe27\xc4\x1d\x9a\x80]\xc4O=\xa5\x06\xea\x16\xf6\xbe\xa0\x8a\xda\xedJA\xc0V\xb1\xf9\xab_\xa8\x913ǐ\xbb\x16\x9d$\x1c\xe6\xc5]\xe5\x19a\xb0\x85N\xac)u\xb0\xbeC]\x92\x1e\xaf}\x96\x80\xa9\x06\xe6\xa6\xc4&\xdcڭ\x91\x14\r\x03.\x8b\x11ڕ\x99\xeat\xb4Y\x9c\xf1\xe8\xad5\x9ed\x9c\x80\x95k\x1b\xb9\x05tZ\xbb\xdc\"`\xbc\a\xb3\xbc\xd5\x1e\x96\xc4S-x\xe0\xb2\xe0\xc2\xc3\xf3~\x89\x9cY\x9f\xadv8\xcd{\xb4\xe2\x91ԝq\x02\xc6\xe5fW\xa1I5Đu\x12\x9f\xcb\"\xe0`=\xea.4!\xd4\"\xaa\x80\t\xb9\x01\x80-\xf1\n\xd8e/~A\x19\x00^\xdcD\xc5\xe7\x86\x17\xbf\xc1ց\x15\u007f'\xee\xd0\xdfFQYTTqgV\xb2k\xeb\xf1\xaf\uf41b\a-\xeb\xc0\xf2\x14\x05;)i3%\xf7#G\xba\xb0\xd6\xc0\xbc\xb8\a\x10[h_\xcfft\n\v\t\xf9\x96\xfd\xf0\x8dd,\xdb\xe7\x05\xcc4\xe06\xa5\xcc)\xba\"\xc9\x1a\x0f\xcb0\xe0\xb2h@gخm\x16gd찮\x97Fk\x8d'\x19'`z7\xc6M\xa5c&\xcf\"`\xbc\a\xb3\xbc}lª\x13\xf5\t\x1e\xb8,8\x01\xe3\xfdN\x17ԓm\xbe\x19#\v\x86p$\rg\x9c\x80q\xb9\xd9V\xa8\xc0\xad\xe8cx\x95E\xc0\xb8,&\xd3˕!\xe1L\xa1G\xacET\x01\x13r\x03\x00[\xe2\x150r~=\xf6n\xaf\xc4x7\xbd\x93x\xbe\boܾ\t\x17\x9d\xb7\xec\xd0\x05\xec\r\xcc\x1e#\xb2&\xfb\xb8\b\x97\xfdċ\xf7\t\x02\xe6KM\xb9ύ\xf4\xb9\xfc\xe3Hx\x8cH\x8d\x0e5R\x9d\x12\x94i e\xff\xc9\xdejt\x82\xeeh\x90\x9a{|i\xb4\xf3\xf6\xb8\xbe\xe8B\xb0\xe5\f\xb8M\t\xe5w\x1d\xcfqZ\xef'\x9a\x06f\x16\r(\xfd@_O5\x1a\x14\r\b)5\x86\xb8#m\xa8E\x1d\x8c\xda'\xd3m\xa7\x87ح<6i׀6\xb7\x1d\xceG\xae\xa6!\xbe\xe8\xbc\a\xae\xbcUI\x81\xbe@R\x95\xe8\xc1\xccbҿ\xee\x1b\xe5\xeb7\xeb\xfc\x93\x9c\xdfH\xb0\xd65N.9w\x05#t%\xbeQo\xa3\xbc\x9c3a%\xbe\x91[\x8c\nq+\xf1C\x0e\xf7\xa1\xfa\x8c\xa4䎐\xba\x12\xbf%\x18\xbc*\x1c\x12r\xc6q\u007fG\xaf/9\xc8ׂ\xabq\xac\xca\x03\x80=q\v\x18\xb9\xf6Be\x91w\xfb)u%\xc4\xe5g+\x8a\xca\x0e^\xb6\xee\xd0\x05\xec\x869\xcd/$\xfb\xdb\xc12\xef\xf6\v\x1f\v\x02\x16\x18\xf5\xa59\xd6\xf6kߧ$\xe11\"\x16\x1d*\x94\xa6\xfcKo4\x0e\xac\xcbpj\x96\x91\x1d\x19\x8e\a\x87\x95\x8doS\xab\xa2\xda\x1a\x06\xfc\xa6\xf4x\xb53\xabJ&\x168[#\x8b\x13\x85\x87\xdc)\x99\x85\x83V\x03\xd2\xe1jW7n\xa5+Y\xa5Nŕ̰\x1dU\x1f\",\xa1?δ\xe4H.\u007f\x87G*\xe4\x8b\xce{\xe0\xcb{,O[\a\xc6y0\xb3h@\x88N5m\xa3\xcf3\x9a~\a\x14\xc3:\xb2C\xf9\xf7,}\x16R\x9dB\xe7\xcb\xcb9S\x9f\x85T\xfc\xb0Yy=\xb7\x18\x15\x1a垅\f\x97fd\xef\xe9HV\x8a^\xadM|\xf9\xf9,\b}\x16ґY\x1a\x12j\xc1\xd58V\xe5\x01\xc0\x1e;\x01[j.\xc5\xf1\x18\x91@`>\v\xbc\x13-Zq\xa2\x95\x17\x00\x96\x98\x95&`\xf5h\x9eapkjH\xfc\x98\x82\x10\x19SY\xf4g{\x16\x15\x100\x00\x98\x93\x15%`\xa1\xb1\xaeUҬ\x01\xde\"b\n\u0083\xdah\xc7:\x9f\xbf\xb2\x00\x01\x03\x809YQ\x02V\xae(\xca]l\xb2\xeal\xb1J\xb8We\x1e\xe3\xcf%\x87//\x00\x00QXQ\x02֔\xea\x9a\xe7\x00r^\xb0\xd9\xe21;\xab\x95C\xa2\x95\x17\x00\x96\x9c\x15%`\x00\x00\x00\xf3\x01\x04\f\x00\x80\x84\x05\x04\f\x00\x80\x84\x05\x04\f\x00\x80\x84\x05\x04\f\x00\x80\x84eq\x05L\u007f\x94hn\xeeF\\H\x00\x00~\x80\x80\x80\x01\x00\x90\xb0,\xae\x80]\xfe\xf5y;\x13\x02\x02\x06\x00\xc0\"\xb1\xb8\x02\x16\x1f `\x00\x00,\n\xf7\x8a\x80m\x9b\xcf3\xdd\x00\x00\xdc\x1b\xd8\t\xd8o\xf0\xa9\v\x95ޟ\\#\xe4Ƌ\x95E\x9b\xf6^P\u007f\xbev\xa4r\xfd\xa6}\xea+\xee\xb9\x1dt\x0e\xec\r}\x1e\xecY\xf6RC!\xd9\xe7{7\x15?u\xd1\"`\xe1r\xa7#\x9fưiA\xb9\xea\x8f\a\x84\x97\x1a\xc6C\x18\x05H-J겳[\a:\x14ݠ\x9f\x15 㡘\x0f\u007f\xaa\xef\x03;\x84\xd4\xf7\x81\xd90½\x0fLa,\x85\x9d:\xfa>0G\x94\fB\xbe\xb4L\xff`&\x1f\xab\x05\x00\x16\x05{\x01{ыq\xf1mr\xa1\x18{\xb7Vb\xfc\x1a\xfd\xf5\xbc\x17\x17o/\xc3,\xb6\a\xbf\x83\n\xd8?p\x11\v>t\xbb\x98\xbe\xd4PHv\n㊭EE\xbb\x05\x01\xcbu\xa2\\\x0fB\xe5\x84L\xa4hQ\xa1=\xc2K\r\xa3rV\x8c\xcbQ\xb5\xea[\xfa\xec3\xf7$8g`\xb1\x9d\xcdB\f\x1a\x91\xf6\xfaQ\x14;\x02\x85\x9e,\x1e\xdb\x05\xa2g1\xe1w\xf8\x94\x0f\x9f\xc3?\x11ݐ\xbe\x9158x\xcc#\x06\xc5\xe4\x10\xde\xc8\x1a\x03\xe38pode\f\xb1w\xe2\xb37\xb2\xce~\xfc| m\xcd\xf1\xce<4\x9f\x17\xb7\x01@|\xd8\v\x18\xae<\u007f\xe14\xb9Q\x8c\x8f\xdeV\xbaP\x9bh\x98\xa1\xef\x8a\xf1\xcb\xec\x9d\xf8\xde\xef\xc5\x1d\xec.\xe4N\x1aזF\u007f\xdcJĽ\x17\xf1\x03\xa7\xef\x90\uf7f2\xbc\x13?[iR\x03\x0e\x1a\x1b\xa2\x04ј\x0ed$\x8e\x97\x1a\xae\xf1\xf3\xdf\xc2jx\\\xfe\xed3\x9c\x81h\x1b\x85\x85\x18\xb4H\xda\v\xe0S\xf9(\x96\"z\xb2xl\x17\x88Q\xb2@\x89c\x8aL:J\x021M\xd9љr\v1\x9fx\x84\xc8\xdc\xd1\xe1\x8fð U֨D\x1c\x93\xe9\xa5\x11\xfaf\u007f\x100`\xf1\x89C\xc0\xd8ˡ\x8f\xe2\xbd\xec\xfb\xfb\xf8DŽ\xbc\xac\x86\xeb&\xbb\x15\xa9\x12v0\x01;\xad\xee=\x88OY\x92\x1d\xc4G\xe9\xf6\xcd2Q\xc0X\x839\x86\xb2\x95\xa1\x96\xaa\\\xbbP\xecV\xa8#\x06:\xabV\xdf\"\xc6\vX\u0530j1X\x88A$\xac\xb5\xd6p\xecw\"\xea\xc9\xe2\xb1] \\X5_\x179\xe1\xf3\xdb\b\x18iH\x9d\x89\xb1?\x0e\x01\x8b\x1e'\x8e2\x87\x80\x05R\xd9ر\x19\x04\fX|\xec\x05\xac\x92}>\xac\x05x\xbcMC\xd5nѾܸqG\xdc\xc1\x04\xecf\x11\xfe\xa7\xf2\xaf\x97\xfe\xcbウ\x11_d_\x8e\n\x02\xb6\x96}N%)\xd7w\xc4I/\xff\x19\x97y\xa9ע\x94\xf6\xba\x1c\x87O\x8d\xa7q\xa2 -\xe7\xf1[\x84\xf4jSJ\xf9\x9a\xd5X\xf2.\xf6)\xed\xd1l9\x03n\xb3\x16%\xb7ָ3Jņ$:ӳ $\xe8s\xa7\xb8J\xb2g\xe7fb\xb6V\xfbd\x9a\xedh2B\xf5\xe1\xaaldži2\xb59Kr\x97\x8e\x12K5\r\x0fby\xdb\xf2\xb5w\xe2\x9b\x1e\xf8,\x02\xfe\xb6rR\xf2\n\x150\xd3o(\x99Fft#\xe4\x8c\xe8\x02֘\x1c\xe1\xca\xcb\x17G\x100=7\xdb\n\x11\"We9˭aոC\xa2Ņ\x9ch\x8ep~\xb9\x1aG\xaf<\x00ă\xbd\x80\xb1\xee\xd4M\x8c\xb7lg\x14\xe1\vd=\xfe\x9b\xbe_ܡ.d\xddGǐ\xefӄ\xc2\xde\xef1VC{\x9c\x16\x04\xacN\xddȦ\xf1淡\x1d4\"W\x9e\xb1;ԙ\x8c\\\r\xcd\xe9,vaMҎ\xbeVW\xfe\f\xb9\x15d\xb1t\x82\xba\x12\xd5H\xaa\xc0I(\xb7\xb37S\xb1\xe5\f\xb8M\xea,\xfb\xf0ϳ\xc5i \xc1\x99\x91\x852\x8e}\xb4{\xa0݅\xa6g\xe5fb\xb4\xd68\x92i\xb6\x91\x93\x9d\xd99\xe9\xee\xba*t\x95\xf4\xa1\x9a\xc1\x93\xa5I\xc3b5M\x0fBy\xab\xa5\xfa\xbez\xa9J\xf0\xc0g\x11\xf0\x8f\xa7M\xae\x92\xa9\x80\x99~g\x86\x1a\x92\x86H\a:A\xd5L\x15\xb0\xfc<\xbe\xbc|qB\xa8/\x12\x89\xf4#!7\xdb\n\x91\xb03\xa7\xa3ׇ\xac\x02ff\x91č\x9b\r\xbf\\\x8d\xa3W\x1e\x00\xe2\xc1^\xc0XT\xa2\xef\xb0\xc9\xc7Jwꆾ_ء\t\xd8y\xbc\x9b\x90\xa7\xf0\xfb\x96\xbd\xd70VӜ\x17\x04L\x8b\xa7\xb6\x1au\x132\x84\\3ď\xf8\x99\"ɩ\x88S\x95\x8b\xd0vIoU\x0e\xb3Ђ\xc2`\xe6jJ\xadf\x9b9\xa9\xb4\x1c\x17\xb1\x18p\x91\xb9\xb3\xa7\b\x99t\x17\x10\x11Àˢ\xcdE\x1bQ\x9b\xd3\xe2A@o\xad\xf1$\xe3\xe2B\"\x9fR\n\xe5\xffH\x17\x9d.\xcfc\xf1\xb1\xcdj\xf2\x1e\xcc\xf2\x9eaݣ\x01\xd4/x\x10\x86\x90$o\xdb\x1a\x16\x17\x92\xf7K\xaa\v&\xdc,\xfe#\x91\xea#\xb7F\xcbч\xd6#\xa9;\vi=\xac\x90\x90\x9bm\x85\xd6zn\xd1(\x94\x16\x013\xb3\x18\xd3\"~R\xf8Z\x985\x8eQy\x00\xb0'N\x01\xbbI\a\x88:w̠i\xe2\x0eM\xc0no\xc4\xdf\xff\x13{oZ\xf6*_\xd8\xedI\xa5s\xc6\v\xd8\xe3ꆛ\xb6,\xe2Ag#\x8ed\xfe~;\v[\xcbfX\xfc\x9ei\x8a[\rN\xcd5\xa5Z\xfd\xb5\xa5R\r1fc\xa2\v\x18\x9b!jC\x93D\xc00\xe0\xb2\x18\xcf\xf2\xd4\x1e\x1f%\xd3\x16\x0f\x02zk\x8d'\x19'`\x92\x1e\xe2{\xa2m\x83ǩ\xf67\xcdj\xf2\x1e\xcc\xf2֨!\xd1VW\x8b\x1e\x04\x01kB\x8dL\xc0x\xbf$\x92\x97\xa9\xad\xb4\x93\xa8:\xb9\xa8\x9a\x88GRw\x16B\xcd\xc3\xc3\xc3-T\xc0\xb8\xdc\xec*4\xa9\xae\xba\xa8\xb7\b\x98\x99\xc5t\xb2\xf9\xf7\x88\xaf\x85Y\xe3\x18\x95\a\x00{\xe2\x140R\xa6Mf\x91\xcf\xff\xf1/R\x89\xd5'\x86>\xfe\xe9)q\x87\xf6,\xe4\x8b\xf8\xf4i\xfc\xac5ٝMX]8\xf6\x9a `\xea]\xb1I\x84\xe80\xb0\x01\xd5\xf6\x1b\x81c\x19f\xd4\xe6<\xad\x87\xc0z\x16\\S\x92%}\x11+\x1f\x99;\xba\x80\xb1Q\xd4 \xb2\xac\x8a0\f\xf8,&\xdb7\xe7\xa2\xccF\x8b\a\x01\xbd\xb5Ɠ\x8c\x130}2m8ӽ\xa7'\xb8\xce\x12\x99\x9b\xf7`\x96w\xad\xaaB%\x05\x82\aQ\xc0&\xf6L0\x01\xe3\xfd\x12ҭ\xafI\x91j\x86\x87\xd5\xe1\x9fx$ug\xdc\x1c\x18\x9f\x9bM\x85FT\xf7\xd6I|.\vm\x0elz@\xf4\x1b52\xb7\x90\x1b\x00\xd8\x12\xaf\x80=\x87\xb7ߡ\x9f\u007f\xa0K'\x8ejkU\xf7\xe27\xc4\x1d\x9a\x80]\xc4O=\x85/\xccJ\xf6\x82*j\xb7+\x05\x01[\xc5\xe6\xaf~\xa1F]\x1dC\xeeZt\x92p\x98\x17w\x95g\x84\xc1\x16:\xb1\xa6\xd4\xc1\xfa\x0euI\x97f\xd9\n\x06\xe6\xa6\xc4&\xdcڑe\xa5\x93a\xc0e1B\xbb2S\x9d\x8e6\x8b3\x1e\xbd\xb5Ɠ\x8c\x13\xb0rm#\xb7\x80Nk\x97[\x04\x8c\xf7`\x96\xb7\xdaÒx\xaa\x05\x0f\\\x16\x01u\x85\x03\x150\xde/\x913\xeb\xb3\xd5\x0e\xa7y\x8fV<\x92\xba3N\xc0\xb8\xdc\xec*4\x89\xd8\x1e\xeb$>\x97E\xc0\xc1z\xd4]hB\xa8ET\x01\x13r\x03\x00[\xe2\x15\xb0\xcb^\xfc\x822\x00\xbc\xb8\x89\x8a\xcf\r/~\x83\xad\x03+\xfeNܡ\xbf\x8d\xa2\xb2\xa8\xa8\xe2άd\xd7\xd6\xe3_\xdf!7\x0fZց\xe5)\nvR\xd2fJ\xeeG\x8eta\xad\x81yq\x0f \xb6о\x9e\xcd\xe8\x14\x16\x12\xf2-\xfb\xe1\x1b\xc9X\xb6\xcf\v\x98i\xc0mJ\x99StE\x925\x96\x9aa\xc0eрΰ]\xdb,\xce\xc8\xd8a]/\x8d\xd6\x1aO2N\xc0\xf4n\x8c\x9bJ\xc7L\x9eE\xc0x\x0ffy\xfb\u0604U'\xea\x13\x16\x04,0\xeaKs\xac\xed\u05feOI\xc2cD,\xb2X(M\xf9\x97\xdeh\x1cX\x97\xe1\xd4,#;2\x1c\x0f\x0e+\x1bߦVE\xb55\f\xf8M\xe9\xf1jgV\x95L,p\xb6F\x16'\n\x0f\xb9S2\v\a\xad\x06\xa4\xc3ծn\xdcJW\xb2J\x9d\x8a+\x99a;\xaa>DXB\u007f\x9ciɑ\\\xfe\x0e\x8fT\xc8\x17\x9d\xf7\xc0\x97\xf7X\x9e\xb6\x0e\x8c\xf3`fр\x10\x9dj\xdaF\x9fg4\xfd\x0e(\x86ud\x87\xf2\xefY\xfa,\xa4:\x85Η\x97s\xa6>\v\xa9\xf8a\xb3\xf2zn1*4\xca=\v\x19.\xcd\xc8\xdeӑ\xac\x14\xbdZ\x9b\xf8\xf2\xf3Y\x10\xfa,\xa4#\xb34$Ԃ\xabq\xac\xca\x03\x80=v\x02\xb6\xd4\\\x8a\xe31\"\x81\xc0|\x16x'Z\xa4\xebD+/\x00,1+M\xc0\xea\xd1\u007fe\x01\x02\x06\x00s\xb2\xa2\x04\xac\\Q\x94\xbb\xd8d\xd5\xd9b\x95p\xaf\xca<ƟK\x0e_^\x00\x00\xa2\xb0\xa2\x04\xac)\xd55\xcf\x01\xe4\xbc`\xb3\xc5cvV+\x87D+/\x00,9+J\xc0\x00\x00\x00\xe6\x03\b\x18\x00\x00\t\v\b\x18\x00\x00\t\v\b\x18\x00\x00\t\v\b\x18\x00\x00\t\xcb\xe2\n\x98\xfe(\xd1\xdc܍\xb8\x90\x00\x00\xfc\x00\x01\x01\x03\x00 aY\\\x01\xbb\xfc\xeb\xf3v&\x04\x04\f\x00\x80Ebq\x05,>@\xc0\x00\x00X\x14\xee\x15\x01\xdb6\x9fg\xba\x01\x00\xb87\xb0\x13\xb0\xdf\xe0S\x17*\xbd?\xb9Fȍ\x17+\x8b6\xed\xbd\xa0\xfe|\xedH\xe5\xfaM\xfb\xd4W\xdcs;\xe8\x1c\xd8\x1b\xfa<س쥆B\xb2\xcf\xf7n*~\xea\xa2E\xc0\xc2\xe5NG>\x8daӂr\xd5\x1f\x0f\b/5\x8c\x870\n\x90Z\x94\xd4eg\xb7x\xf4$k\x8f\x83'wۙ\xce\xcbv\x81\x1cB)\xf4\x95\xb6}\x0et(\xbaA?+@\xc6C1\x1f\xfeT\xdf\av\b\xa9\xef\x03\xb3a\x84{\x1f\x98\xc2X\n;u\xf4}`\x8e(\x19\x84|i\x99\xfe\xc1L>V\v\x00,\n\xf6\x02\xf6\xa2\x17\xe3\xe2\xdb\xe4B1\xf6n\xad\xc4\xf85\xfa\xeby/.\xde^\x86Yl\x0f~\a\x15\xb0\u007f\xe0\"\x16|\xe8v1}\xa9\xa1\x90\xec\x14\xc6\x15[\x8b\x8av\v\x02\x96\xebD\xb9\x1e\x84\xca\t\x99HѢB{\x84\x97\x1aF\xe5\xac\x18\x97\xa3jշ\xf4\xd9g\xeeIp\xce\xc0b;\x9b\x85\x184\"\xed\xf5\xa3(v\x04\n=Y<\xb6\vD\xcfb\xc2\xef\xf0)\x1f>\x88\x9f\x8f(\x00\x00\ttIDAT\x87\u007f\"\xba!}#kp\xf0\x98G\f\x8a\xc9!\xbc\x915\x06\xc6q\xe0\xde\xc8\xca\x18b\xef\xc4god\x9d\xfd\xf8\xf9@ښ\xe3\x9dyh>/n\x03\x80\xf8\xb0\x170\\y\xfe\xc2ir\xa3\x18\x1f\xbd\xadt\xa16\xd10C\xdf\x15\xe3\x97\xd9;\xf1\xbdߋ;\xd8]ȝ4\xae-\x8d\xfe\xb8\x95\x88{/\xe2\aN\xdf!\xdf?ey'~\xb6Ҥ\x06\x1c46D\t\xa21\x1d\xc8H\x1c/5\\\xe3翅\xd5\xf0\xb8\xfc\xdbg8\x03\xd16\n\v1h\x91\xb4\x17\xc0\xa7\xf2Q,E\xf4d\xf1\xd8.\x10\xa3d\x81\x12\xc7\x14\x99t\x94\x04b\x9a\xb2\xa33\xe5\x16b>\xf1\b\x91\xb9\xa3\xc3\x1f\x87aA\xaa\xacQ\x898&\xd3K#\xf4\xcd\xfe `\xc0\xe2\x13\x87\x80\xb1\x97C\x1f\xc5{\xd9\xf7\xf7\xf1\x8f\tyY\r\xd7Mv+R%\xec`\x02vZ\xdd{\x10\x9f\xb2$;\x88\x8f\xd2\xed\x9be\xa2\x80\xb1\x06s\fe+C-U\xb9v\xa1حPG\ftV\xad\xbeE\x8c\x17\xb0\xa8a\xd5b\xb0\x10\x83HXk\xad\xe1\xd8\xefDԓ\xc5c\xbb@\xb8\xb0j\xbe.r\xc2\xe7\xb7\x110Ґ:\x13c\u007f\x1c\x02\x16=N\x1ce\x0e\x01\v\xa4\xb2\xb1c3\b\x18\xb0\xf8\xd8\vX%\xfb|X\v\xf0x\x9b\x86\xaaݢ}\xb9q㎸\x83\t\xd8\xcd\"\xfcO\xe5_/\xfd\x97\xdf{g#\xbeȾ\x1c\x15\x04l-\xfb\x9cJR\xae\uf213^\xfe3.\xf3R\xafE)\xedu9\x0e\x9f\x1aO\xe3DAZ\xce\xe3\xb7\b\xe9զ\x94\xf25\xab\xb1\xe4]\xecSڣ\xd9r\x06\xdcf-Jn\xadqg\x94\x8a\rIt\xa6gAH\xd0\xe7Nq\x95d\xcf\xce\xcd\xc4l\xad\xf6\xc94\xdb\xd1d\x84\xea\xc3Uَ\r\xd3djs\x96\xe4.\x1d%\x96j\x1a\x1e\xc4\xf2\xb6\xe5k\xef\xc47=\xf0Y\x04\xfcm\xe5\xa4\xe4\x15*`\xa6\xdfP2\x8d\xcc\xe8F\xc8\x19\xd1\x05\xac19\u0095\x97/\x8e `zn\xb6\x15\"D\xae\xcar\x96[êq\x87D\x8b\v9\xd1\x1c\xe1\xfcr5\x8e^y\x00\x88\a{\x01cݩ\x9b\x18o\xd9\xce(\xc2\x17\xc8z\xfc7}\xbf\xb8C]Ⱥ\x8f\x8e!ߧ\t\x85\xbd\xdfc\xac\x86\xf68-\bX\x9d\xba\x91M\xe3\xcdoC;hD\xae\xa5\x14\xca\xff\x91.:]\x9e\xc7\xe2c\x9b\xd5\xe4=\x98\xe5=úG\x03\xa8_\xf0 \f!I\u07b65,.$\xef\x97T\x17L\xb8Y\xfcG\"\xd5Gn\x8d\x96\xa3\x0f\xadGRw\x16\xd2zX!!7\xdb\n\xad\xf5ܢQ(-\x02ff1\xa6E\xfc\xa4\xf0\xb50k\x1c\xa3\xf2\x00`O\x9c\x02v\x93\x0e\x10u\xee\x98A\xd3\xc4\x1d\x9a\x80\xddވ\xbf\xff'\xf6\u07b4\xecU\xbe\xb0ۓJ\xe7\x8c\x17\xb0\xc7\xd5\r7mYă\xceF\x1c\xc9\xfc\xfdv\x16\xb6\x96Ͱ\xf8=\xd3\x14\xb7\x1a\x9c\x9akJ\xb5\xfakK\xa5\x1ab\xcc\xc6D\x1706CԆ&\x89\x80a\xc0e1\x9e\xe5\xa9=>J\xa6-\x1e\x04\xf4\xd6\x1aO2N\xc0$=\xc4\xf7D\xdb\x06\x8fS\xedo\x9a\xd5\xe4=\x98\xe5\xadQC\xa2\xad\xae\x16=\b\x02ք\x1a\x99\x80\xf1~I$/S[i'QurQ5\x11\x8f\xa4\xee,\x84\x9a\x87\x87\x87[\xa8\x80q\xb9\xd9UhR]uQo\x1103\x8b\xe9d\xf3\xef\x11_\v\xb3\xc61*\x0f\x00\xf6\xc4)`\xa4L\x9b\xcc\"\x9f\xff\xe3_\xa4\x12\xabO\f}\xfc\xd3S\xe2\x0e\xedY\xc8\x17\xf1\xe9\xd3\xf8Yk\xb2;\x9b\xb0\xbap\xec5A\xc0Իb\x93\b\xd1a`\x03\xaa\xed7\x02\xc72̨\xcdyZ\x0f\x81\xf5,\xb8\xa6$K\xfa\"V>2wt\x01c\xa3\xa8AdY\x15a\x18\xf0YL\xb6o\xceE\x99\x8d\x16\x0f\x02zk\x8d'\x19'`\xfad\xdap\xa6{OOp\x9d%27\xef\xc1,\xefZU\x85J\n\x04\x0f\xa2\x80M\xec\x99`\x02\xc6\xfb%\xa4[_\x93\"\xd5\f\x0f\xab\xc3?\xf1H\xeaθ90>7\x9b\n\x8d\xa8\ueb53\xf8\\\x16\xda\x1c\xd8\xf4\x80\xe87jdn!7\x00\xb0%^\x01{\x0eo\xbfC?\xff@\x97N\x1c\xd5֪\xee\xc5o\x88;4\x01\xbb\x88\x9fz\n_\x98\x95\xec\x05U\xd4nW\n\x02\xb6\x8a\xcd_\xfdB\x8d\xba:\x86ܵ\xe8$\xe10/\xee*\xcf\b\x83-tbM\xa9\x83\xf5\x1d\xea\x92.Ͳ\x15\f\xccM\x89M\xb8\xb5#\xcbJ'À\xcbb\x84ve\xa6:\x1dm\x16g7\xd2\xe7\xf2\x8f#\xe11\"5\xb2\xd8HuJP\xa6A\xb8\xfd'{\xab\xd1\t\xba\xa3Aj\xee\xf1\xa5\xd1\xce\xdb\xe3\xfa\xa2\v\xc1\x963\xe06%\x94\xdfu<\xc7i\xbd\x9fh\x1a\x98Y4\xa0\xf4\x03}=\xd5hP4 \xa4\xd4\x18⎴\xa1\x16u0j\x9fL\xb7\x9d\x1eb\xb7\xf2ؤ]\x03\xda\xdcv8\x1f\xb9\x9a\x86\xf8\xa2\xf3\x1e\xb8\xf2V%\x05\xfa\x02IU\xa2\a3\x8bI\xff\xbao\x94\xaf߬\xf3Or~#\xc1Z\xd78\xb9\xe4\xdc\x15\x8cЕ\xf8F\xbd\x8d\xf2r΄\x95\xf8Fn1*ĭ\xc4\x0f9܇\xea3\x92\x92;B\xeaJ\xfc\x96`\xf0\xaapH\xc8\x19\xc7\xfd\x1d\xbd\xbe\xe4 _\v\xaeƱ*\x0f\x00\xf6\xc4-`\xe4\xda\v\x95E\xde\xed\xa7ԕ\x10\x97\x9f\xad(*;xٺC\x17\xb0\x1b\xe64\xbf\x90\xeco\a˼\xdb/|,\bX`ԗ\xe6Xۯ}\x9f\x92\x84LjXd\xb1P\x9a\xf2/\xbd\xd18\xb0.éYFvd8\x1e\x1cV6\xbeM\xad\x8ajk\x18\xf0\x9b\xd2\xe3\xd5ά*\x99X\xe0l\x8d,N\x14\x1er\xa7d\x16\x0eZ\rH\x87\xab]ݸ\x95\xaed\x95:\x15W2\xc3vT}\x88\xb0\x84\xfe8Ӓ#\xb9\xfc\x1d\x1e\xa9\x90/:\xef\x81/\xef\xb1\xcfh\xfa\x1dP\f\xeb\xc8\x0e\xe5߳\xf4YHu\n\x9d//\xe7L}\x16R\xf1\xc3f\xe5\xf5\xdcbTh\x94{\x162\\\x9a\x91\xbd\xa7#Y)z\xb56\xf1\xe5\xe7\xb3 \xf4YHGfiH\xa8\x05W\xe3X\x95\a\x00{\xec\x04l\xa9\xb9\x14\xc7cD\x02\x81\xf9,\xf0N\xb4H\u05c9V^\x00XbV\x9a\x80գy\x86\xb6\xad\xa9!\xf1c\nBdLeџ\xedYT@\xc0\x00`NV\x94\x80\x85ƺVI\xb3\x06x\x8b\x88)\b\x0fj\xa3\x1d\xeb|\xfe\xca\x02\x04\f\x00\xe6dE\tX\xb9\xa2(w\xb1ɪ\xb3\xc5*\xe1^\x95y\x8c?\x97\x1c\xbe\xbc\x00\x00DaE\tXS\xaak\x9e\x03\xc8y\xc1f\x8b\xc7\xec\xacV\x0e\x89V^\x00XrV\x94\x80\x01\x00\x00\xcc\a\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x16\x100\x00\x00\x12\x96\xff\x0f}\xc6-\xc8\xe3>\xf6\xcf\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/chan2a.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\x89\x00\x00\x01\x95\b\x03\x00\x00\x00M@Q-\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\n\x03\x01\x04\x06\x02\a\n\x06\x0e\x10\r\r\x12\x14\x0e\x12\x1d\x11\x13\x10\x16\x18\x15\x1b\x1a\x13\x13\x1e7\x1f\x1f\x18!# #$\"%$\x1d%%\x1e$%#%'%'(&+)\x1e()'*+)/,!+-*,-+-/,02/63(241564796<9.9;8<=;=>FA?3>@=#CxDA5AB@DFCFHEKHe\xafac`hcQbdaAg\xb2efdCi\xb3ghfMj\xafEm\xb1qjRikhIp\xb4lmkLr\xb7npm{s\\rtqWv\xb6tvsuwt\\z\xbaxzw]~\xb8e|\xb8\x84|dX\x80\xbf{}za\u007f\xbf|~{~\x80}b\x82\xbc\u007f\x81~d\x85\xbf\x82\x83\x80\x83\x85\x82m\x87\xbdh\x88Ð\x86hj\x8ać\x88\x86r\x8c\xc1\x89\x8b\x88t\x8eė\x8do\x8c\x8e\x8bz\x8f\xc0\x8e\x90\x8dx\x92Ȑ\x92\x8f~\x93\xc3x\x95Ē\x93\x90\x81\x95\xc6{\x98Ȕ\x96\x93\xa0\x96w\x96\x98\x95\x82\x9aė\x99\x96\x83\x9cņ\x9b̀\x9d̚\x9b\x98\xa5\x9b|\x87\x9fɃ\xa0Ϝ\x9e\x9b\x89\xa1̞\xa0\x9d\xaa\xa0\x81\xa0\xa2\x9f\xa1\xa3\xa0\xa2\xa4\xa1\x91\xa5ʮ\xa4\x85\x8f\xa7Ѥ\xa6\xa3\x94\xa7̥\xa7\xa4\xb4\xa7\x83\x92\xaaԧ\xa9\xa6\x97\xabЩ\xab\xa8\x9d\xad̫\xad\xaa\xa5\xad\xc1\x9f\xaeλ\xae\x89\xad\xaf\xac\x9e\xb1ע\xb1ѯ\xb1\xae\xa5\xb4Ԣ\xb5۳\xb5\xb2ö\x91\xb5\xb7\xb4\xac\xb7ҩ\xb8ط\xb9\xb6\xb9\xbb\xb8\xad\xbcܱ\xbc\u05fb\xbd\xba\xb3\xbeٽ\xbf\xbc\xb7\xbfԱ\xc0\xe1\xbf\xc1\xbe\xb6\xc1ܹ\xc1\xd6\xce\xc1\x9b\xc1ÿ\xbb\xc3\xd8\xc2\xc4\xc1\xbd\xc4ں\xc5\xe0\xc4\xc6\xc3\xc6\xc8\xc5\xc0\xc8ݽ\xc9\xe4\xd8ɞ\xc6\xca\xda\xc0\xcb\xe6\xca\xcc\xc9\xc3\xceܿ\xcf\xe2\xc8\xcd\xdc\xcd\xcf\xcc\xc8\xd0\xe6\xcc\xd0\xe0\xcf\xd1\xce\xc6\xd2\xe0\xdbҥ\xe1ѥ\xd1\xd3\xd0\xd2\xd3\xdd\xd3\xd5\xd2\xcd\xd5\xeb\xce\xd7\xdf\xe6\u05eb\xd6\xd8\xd4\xd1\xda\xe2\xd8\xda\xd6\xd8\xd9\xe3\xd6\xda\xea\xd3\xdc\xe4\xda\xdc\xd9\xd8\xdd\xe0\xd2\xde\xec\xdc\xde\xdb\xdc\xdd\xe7\xe0\xde\xe2\xdb\xe0\xe2\xde\xe0\xdd\xf0\xe0\xb3\xd5\xe2\xf0\xe0\xe2\xdf\xde\xe3\xe5\xde\xe2\xf2\xe2\xe4\xe1\xe1\xe6\xe9\xe4\xe6\xe3\xde\xe7\xef\xe8\xe5\xea\xe5\xe7\xe4\xe4\xe9\xec\xe7\xe9\xe6\xe8\xe9\xf3\xe2\xeb\xf3\xe9\xeb\xe8\xec\xee\xea\xe6\xef\xf7\xe8\xf1\xf9\xef\xf1\xee\xf0\xf0\xfb\xf2\xf4\xf1\xf1\xf6\xf9\xf4\xf6\xf3\xf7\xf9\xf6\xf5\xfa\xfd\xf9\xfb\xf8\xfa\xfc\xf9\xfd\xfb\xff\xf9\xfe\xff\xfc\xfe\xfb\xfe\xff\xfc\xfa<^\xc5\x00\x00 \x00IDATx^\xed\xbd\x0fX\x15\u05fd\xef}^\xdb\xf7\xcd\xed\xdb\xc5y`\x1f\xe9\x16\nD\xde\xcb{\xc0s\x94\x83xߛ\x8cA\xbc\xafy\xfd\xcbE\xe5`Qo\x8f1\xb4\xc46\x86T\xebc8\xf14\x98\xee\xa6H\x11o\x12RJ\xbc\x1e\"\t\xdd\x16\"\xd1Rk$\xec\xf3\xbc\xb3\xe6\xefZ\xb3g\xefa#\xcc\xf0\xe7\xfbɓ\xbdמ\xf9\xad5k\x96{\xbe\xac\xb5f\xf6\xfa\xfe\x854vD\x00\x00\x18\x17\xfe\xc2In\xa2\xe0T6\x00\x00\x8c\x0e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11и\xec\x14\x00\xc0\xc4\x01%\x02\x94\xbe\xa2T\xb2\xdc)\b\x80\tc\xda+Q}N\x9fSH\x8c\xf4\xe7\xd4;\x85LB\x94v\x88\\\xf5\xac\xac@\xd3\xe9\b\xfb\x00\x98x\\W\xa2\xe6\x10}\xbdT]\xa9R\xa3n\xed\f4D\xcb$\xfe\xcfG\xd7\xe4o\xbb\x125Ğ\x1dd\xbbSH\xcc\xec\x88\xdb\xe1\x14\xe2D\xe7b\u007f\xda\xea\xe6\xb4>q\x1d!\xc4ߥonJ\x89\xde\f\f\xf5Y\xb3\xe7\xd5.\x18u\xb8\xd6\x0e\x91\xaa~\x8a4\xdan\a\xc0%\xdcV\xa2\xbe\xca6\xfav\xbe\xb2\xbdW\xe6X\xe5)e\xeb\x99@Ku\xb4\\\xe2W\v\x0e\xef\xce\xff j\x88-\x15qUN!c\xa0!\xbe\xc2)Ġ\xb9\xddfc\xa3?;\xb0\u007f>!!\xb1'\x18\xdcCZ\xf5\xed\r\xfe\xa7l\xa2M\xcc\xc2*Ha\xfd\x16BF[\x0f\xa3\x1d\"T\xbd\x8d\x04\xed6\x03\xe0\x16.+Qo\xad\xaaDb\xe7\x80\xfc2PݢnnhꉪD\x1f\b\x87\xc4+\x17\xa2E\xd8\xd3\xed\xbb?z@\u007fn\u007f\xf4\x00{\xca|=N!:\xd9+÷\xf5'\xdd;(\x9f}\x06Q\xfa\x87m\xa6\x129a\x14\xd6E\xca\xe4\xd7M\xa3U\"\xa6\x1d\xec\xab\x1eC\x1d\x00\x98\b\xdcU\xa2\xe6\xca\xe6@\x9b\xf9\xf1\xe0S\x97\x94\xf7Ϊ\x81ިJ\xf4\xaep4\xda\xee\x88\x14\xa5\rD\x0f\xe8$\x9d\xd1\x03\xec\x19H+r\n\xd1Y`\xa3D\xf7'*sW\x15D\x19\x96Š\x02Fa\x85)\xb2\x94\x89!\xb2'Z\xb4\t\xd3\x0e\xf6U\x8f\xa1\x0e\x00L\x04\xee*\xd1\xf9\x01\xb1\xba\xcd\xf8\x14\xaaT'\x93\xcf\x06\xba\xc4(Jtq\x8d\xa0\xb0W\x14\x1f\x15\x84#\xe2\xbby\xc2\x06\x9a\xcc;\xbcwC\xfe\xb6\xdf(1\xef>\xb4&\xaf@K\x9b\f&mՓ]+S\x12R\xef\xe9\xe5vWd6\x84H\xa8!s\x0f_\u0095Û\xf37\x1e\xba\xc2\x1d\x82?\x9aܳH<\xcf\x15%\x16\x93\x84\xc0\xa6L\xff\xe2\x1e\xe5Ӟ\x05\xfe\xf9\xb4\xd4\x06\xa2\xb2@\xd9Z\x9d\xe3\xcf\xdcD%!C\x15\x83\xfe\n*'\x86\n\x9cI$$N\x9b73b\x99r\xd9\u0092\xd5\x13\xab8\xcd\x1e\x8d\xaf\x83q4\xae\x1dl\xaaNi\x86\x12\x01oqW\x89d\x18%\xaamR\xdf\x1b\xe4\xf7h}\xa27:\x8e\b\a::\xde\x17\xc5\xdft\xe4\x1d\x10\xaf\xbc\xfa\xc8\x12Q|\xebH\x9ePp\xe0\a+\x1e\xa2\x11//\xdb\xfc\x83\x13\a\x84g-\x19\xdbI\xb3\x96j\x9e\xb3`G\xd3v\xcb`\xa6\xb7\x90d\x91yde\x0f_\xc2\xee%\xfb\x8e\xef[\xb2\x9b;\x04w4\x99\x16\xeb\x95\x1b\xaa\x89')\xdb+\x92\x94;\xe1\xeb|e\re\xbeB\xb9\x03\xd2\x12\xcc\\\x18\f\x06\x95QXQ\\ICEʂ\xcb\xe2`\x1cW\x0f\xa3?r,\x18\xf4i\xf3\xebF,S.S\xd8\x19\xc2L\u007f\x19G\xe3\xea`\x94 \xb2\xed \xdaT]\xbc\xd4ל\x9d\xec\xd0y\x04`b\xf1P\x89\xba+{\x94\xf7P\xd5@t%bGgK\x0e\xc8/\a\x96(\xc9\x15r\x0feg\x81\x9c\xba\xb8v\xdbE\xf9\xf5\x88uJ\xbb\x81t\xab\x89\xf3s\x17\xcbݏ\xc1Z\xeb\xa4Pc\x02I8(\xf2%\x1c\x17N\xc8\x1bN\b\xc7E\xf6\x10lR\xa6\x87\x84M-\xfb\x92{訉\x96\xaa܈j$J\xc9ƀ\xaaAQ\x8f6\xb2_\xec&ܽtvd\x94\xb8\xdd\x12˖k\x16֩\xde\xea:\u007f~\x90?\x9a\x19˖`\xb6\x03%\xbc\xea\xf7\xca\x1d\xadQ߄\x03`B\xf0P\x89\x9aj\x95\xb7\x81@\xe8\xf2\xe5˧\xab\xa3=\xe2k\xafD\xbb\xf5\xe4q\xe1\r\xdbl\xf5\xfa\x15x\x90\x9c\xb4\xd9ݿ\xc97\x97\xa4\xf9\xb6\xf4s%\xecޠ\xbcmxDd\x0f\xc1&Ez9\xef\xb7\x14&\xfa\xd6\xc9/\xdb}\xf2K\xd1\x91h(\x91\x19˖k\x16vVљղ\x824qG3c\xd9\x12\xccv\xa0\x84W\xfdtce\x16\xfaD\xc0[c\xa8\xde;{\x95vU\xc4҂\xa7\x9f\xde,\xe4=\xff\xd6\xfb\x1dy\x8f\xbcz\xe5\x8dG\xf2\xe8=\xb5\x97\xf37\x1c>\xfe\x98pؚ\xb3K\xbfK\xd5<;\xeb[\aKH\xc0\x1a`\xc0\x94\xb0Sx\xe2\xa5'\x84\x9d\xa2\xc8\x1c\x82;\x1a\x1d\xedY\xfbX\xbd\xc1\x84u\xadb\xfb\xba\x84\xa0<\xc6,\x8c\xbb\xbf\xe1\xfe\xb8Be\xc7v_E\xfd\"\u007f\x8f\x9c\xba\x9f\xac\xae\xad/\"Tr\x1b\xfd9U\xf5w\xc5\xcb\xc3$\xe5\x19\xeb\x8a`P\xee\xe7\f\xb6\x06\x83\xbeu\xc1\xe0Y6\x96+\x97)\xac\x82\x145\x14\xa9\xcfX\x1bG\xe3b\x99\xa31\xed`Wu\xca1\xbb!\x1b\x00\xee\xe1\xae\x12\x1dS\xe6\x83\x02\xca𠛹\x85\xd3\xcb\xfc\x04-\x8c\x8b+\x94lj\xf2ަ\x1f\xde-\xcd_\xb6m\x9f <\xfa(\xdd\xf4\xcbe\xf2\xeb\xa3\xf2\xe6\xb7\x1f^\xbbl\xb3\xdeob(\x9b\xad]a]+\xe7&\xe5ԅ\a\x18\x98%\\9\xb4Q\u007f\x9e\xc88\x04\u007f\xb4`\xe2\x16k\xf6bBHB\xa7_~-\x96?U\xccW\x9f\xf0\x91\x19,IN\\ئ$\x1bsS\x92\x17*7\xd4\xc4λ\xfc\xa9K\xe9C\x95\xeb\xb4\xf9\x1cy\xd8\xd5\x16\xa7&+\xd9X\xbe\\\xa6\xb0\xfa\xacĜ\x83s\x95\xd2\xf4\xa3\xf1\xb1\xccјv\xb0\xa9:\xa5/~\xe5\xa9>,\v\x02\xbc\xc3]%r\x9fM\xbeZ\xa7\x90\x98\xd9\xef+\xba\xe4\x143\xd9\xd0\xda!b\xd5보\xd9m\x00Sy\x92\xa6\xa7\xca/\xc1\xff\xf0\xeaƍ\x1d\xbf\x8e\x12\xf0A\xc7\xe6\x03\xec\xe7C\xc2\xf3j\"\x16\x13k\x00f\x16.+\x91\x9d\x1b\xf5\x99\xca\xd3ѲL>\xbeZ\xea\x10\xb0\x8dU\xa2w\xf3\x9eГ1\x98X\x030\xb3pW\x89lݨ\xa7\xb9\x12\xed.\xb8\xa0'c0\xb1\x06`f\xe1\xae\x12ٺQ{\xa8D\xe1&\xd6\u007fX\x93\xb7om\xc1ˏ\xad(\xbd\xc0z_s0Jd8Ws\x85\xc9J\xf4\x98 \b\xf9\xbf\x93\xd3\x17\x971\xeb\xfc\xdb:A\x03\x00\\V\"\xd1\u038d\xfaLe\xd3S\x955A\x0f\xaeQ;\x13\xeb\x97W\b{K\x855O\xafy\x96\xf5\xbe\xe6`\x94\xc8p\xae\xe6\n\x93\x95\xe87;\x85g_\xa3\x9b\xdf\x10:̜\xe1N\xd0\x00\x00\x8a\x87J\xa4\xbbQ\x9f\xad\xac>\xd5\x13\xaa\xdd\xef\xfa\xbd3{\x13낝\xe2qᨸ\xdb\xe2w\xc6`*\x11\xe3\\\xcd\x16&+ѳK^\xd2C\xde6sژX\x03\x00DO\x95Hs\xa3\x16\xc5N\xda\x1d:_\xe5zw\xc1\xdeĺ\xe0\x88\xf8\x9apA|b\xa7\xe8\xacD\x8cs5[ض\x03\a\f\x83\xb6\xa3»fN\x1b\x13k\x00\x80\xe8\xa9\x12in\xd4:\xc1h\x1e@\x13\x82\xbd\x89u\xc1q\xf1\xb5\xf1\xado=\x15\xa7l\r\xefz\x8c\xc5\xcfZ\xe6\xf8\xe6e\x9b\xe5\x0e\x0f}\xe0H\xc8\xfb\xe52\x81\x06\xec\xd6\\\xae\x1f\x16\xe1r\rf\x1c\xee*\x11\x18G\xe0r\r\xa6\x11P\xa2\xa9\v\\\xae\xc1\xf4\x01J\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x98VL\x9cM\x1d\x98P\xa0D`\xfa\xd0W\x94J\x96;\x05\x81I\t\x94\bL\x1f\xb2\xb2\x02M\xe1k\xfc\x82\xa9\x80\xebJ\x14\xe6Fm1\xa6v\x97\xa6\x14c\xa5ȱXP;\x19H3\xbc|\xb7Pz\x85ZP\xdf\xfdr\xe4\xa0\x13\x05\xfa2\xd5\xe2\xff|tM\xfe6c-\xb4\xe84$\x8f~\xbdK\xfd\x8c\xd7\x11B\xfcᶻ\xfd\x8b\x92w\x84'9F}4\xbeu\x98ss\xe2\xe8\x86\xfc\x8dG6\xbe\xe4\x14\x16\xc6)\xd2\xe8\x14\x02&+n+Q\xb8\x1b5gL\xed6\r~c\x95\xa4\xb1XP;\x19H3\\\x18\x9d\xa0\x0f\xe4\v\xf1\x8a54\x12e\xa4\xcc)Ď6\x1b%\xca.\x17\xfd\xc1\xb0$G,Gc[ǡ\x83g\xb4\xc3\xdbw\xef\x93_\xf7\x8eI\x89`\xfb6eqW\x89lݨ\xadIo\x18\xab\x05u\fJ\xf4\xf2\xb2\v6J\xb4\x91U\"\x83w\x85Q\x8feD\xb1\x9c\x94;\x85\xd8aw\xe1Ϋ\xea!]aI\x8eX\x8e6\xea\xd6a\xdaaw\x01\xed5\xfe\x12J4\xb3pW\x89lݨ-I\xf78\x93HH\x9c2;\xc5[P3\x84\x9bM[\xb7\xda\x19Hwl[\x9b\xb7f\xdbZş\xe3\xf9\xcd\xcb6\xec\xa5\xeasAxw\xe3\x11M\x89\x8cأڊ\xb1\x9b\xe5\x8d\x1f\xe4\v\x82\xb2\x92\xbexq\x8d\xbau\xaf<\xa6\x91\xdf\xf6\x89Ok{\xec\xab#\xee ʄNO\x92抔\xd4\xc3\xec,&\t\x81M\x99\xfe\xc5t\x9by\xc6\x14\xbb\v\xf7\x9e\xb2{睊W\x16\xcfe\x92\x1c\xda\xd1\xc4XZ\xc7<7\xa6I\x18+n\xb6\x1dV=\xa1\x84\x1d\xa2\xeby\x1b\r\xc5\xd9v\x9b\x8d\xca\xd3\f%\x9a\xba\xb8\xabD\xa2\x9d\x1b\xb5%\xe9\"ǂA\xdfv%\xc5ZP3ؙM[\xb6\xda\x18H\xbfq\xf7\xee#'\x0e\xaf\x11\xfe@\xb7\n\x8f\x1d?T\xb0\xf1\x8a\xa2D\x87\xb6iJd\xc4^x\xb5cCiGG\x87\xe2\xe7\xfaZGG\xbe\xbaD\xf5\x1b\x1dG\x84\x03\x1d\x1d\xefӀ\xb5\x8f\xfe^\xfc\xfd\x81\x15\x1d\x17\"U\x87\xae\xa8_A\xdf\x06\xab*T\xaaX;\xddPM\xbd6\xaf\xa0T\xfd}ى\xd25+J\x8f+\xbf;\x93/\x9d+\x9b\v\xaep\xb1\xf2E\xfaت\xfc\xd2\xd7\xe4\xc4\x1bZa\x87ŋ+\x94D\xde\xdb\xda\xe1\x04}n\x96\xad\x0e\xc3\xc1\x94\xf0;\\\x06\xc5\xf2\x89%t\xfa\xe5\xd7b挕ߝQVr\xc1M\x19)\xc5\x03M\x99\xc9{\xb8$\x8fy\xb4ѷ\x8eyn\xa2\xd9$\xac\x157\xd3\x0e\xca\xef\xce6\x1f_K;BFC\xf1\xb1z\t\x16\xfa\xe2W\x9e\xea\x8b\xf1\xa7\x83`\x92\xe0\xae\x12\x81\xb1paI\x94\x1f\xcd\x02\x86\xfa,B\xeeu\n\x02\x93\x12(\xd1\xe4\xe7Ț?8\x85\x00\x8d\xbeS\x1e<\xac\x0f\xc6\x01(\xd1$\xe7闯|\xf5\x80\b\xc04\aJ4\xb9\xb9 l~\xb4`\x94\x8b\x83\x000u\x81\x12Mr\x0e,+}\xdb)\x06\x80)\x0f\x94\b\x00\xe0=P\"\x00\x80\xf7@\x89\x00\x00\xde\x03%\x02\x00x\x0f\x94\b\x00\xe0=P\"\x00\x80\xf7@\x89\x00\x00\xde\x03%\x02\x00x\x0f\x94\b\x00\xe0=\xae+Q\x98\x1b\xb5(\x0e\xb4<\x15x\xaae\xc0!\xe34b\x92\x98X\x030yp[\x89\xc2ݨ\xc53\xd5u\xa1\x9eP]\xb5g\xeb6\xba\xce$1\xb1\xa6|\xf0~\xe4}\xcd\xed\x91\xf7\x010\xbe\xb8\xacDvn\xd4\xc1Z\xea\x1fq\xa9vFy\x9a\x8f\xda\x1cu\x02M\xac\xa9\xb1\xe1\x8aR-y\xf9\xd2\xe5\xcb\xf2\xff\xec\xdel~\x155\x00&\x10w\x95\xc8\u058d\xba\xa9^\xf9P\xef\x89\xf9\xa2WĠD\x13fb-\xbe\xb5YмZ\xbb\xb2\xb3\xb2\ue657\x95\xb5\x89\x1d#/\x80\x12\x01\xd7pW\x89lݨ\xfb\xab\x9b\xfb\a\xfb\x83\xd5\xfd\x91rM=Fo\xd3졉\xf5\x85\xbd\xc2ڗ\xd4\xe4%\x1f\xc9͝\xe5\xcf͞\xf5\xc0ymo\x83\xb6\xba\xec\x02Q<\x15OHYWaz\xe2\xe2K\xc5$\xaeZ\xec\xf6\x91,%\xa6:ǟ\xb9i\x06\xcd\xef\x81\t\xc4]%\x12mݨ\xcf7UVV6\xea\x97\xc04 \x16\x9bf\xafL\xac\xaf\x1c-\xc8{B\xedh]|\xf7\xed\xff\xbd\\\x92B\xc3\xd2\xc8g\x97\xea\u007f\x0f\x06Z\x82\x99\v\x83\xc1`H\xfe\xf7\xa9\xadI\xcfL\x9a\xbb\xa9\x90\x9c\xee\r&l\x17\xc5\xd6u\x8aQHQ\\ICE\xca\x02,\x1c\r\xc6\x01\x0f\x95H\xb7\xa0\x1el\xaa\r\xf5\x86j\x9b\xc2\xddF\xa7(\xb1\xd84{fb\xfd\xa8\xb0\xf1--Y*\xfc?\xff\xe7\xacY\xb3ĕ\xb3f}\xa6\x9c\xb9o\xc0\x8c\xce\x16\x90EgE\x91:!\x98\x96E\r\x8a\x17l\x1b\xd9/\x02p\xdbx\xa8D\xba\x05u\xb0\x96z\f\r\xd6N\x1b\x87\x98Xl\x9a=3\xb1~~ɪ絉\uedcf\x1e\xfd\x1f\xff\xef\xff%+\xd1\u007f\xb8wG\x17\xe3\xf7\xc4*\x91Ow#2\x95hu\xc6\xe0%\x99\xb9E\"\x00\xb7\x8d\x87J\xa4[P\aN*o'\x03v\xe1S\x91Xl\x9a\xbd3\xb1~w\x9b\xb0Y\xef\x15\x89\x97\xcf\x06d%\x8ao\xefg\x8d\xe7X%\xca\xd6S\xa6\x12\xcd\xd7f\x92`\xa6\x01\xc6\x01\xef\x94Ȱ\xa0֔\xa8}\xda(Q,6\xcd\x1e\x9aXә\xa2\xbd\xc6-\xb9Z\xaaD]\xdc\bYQ\xa2\xc0i#\xa9\xa0(Q\x19U\xa2\u008cv\x85it\xa7\x01x\x87wJdXP7k\xa3\xb3\xe6\b9\xa6\x1c\xb1\xd84{jb}a\xafPpBK\xdb(Qn\xae(\xf6\x91Z\x9a4\x95ȿU\xeeAeS%jTw\x95\x95\x8b\x00\xdc6\xee*\x91\xad\x1b\xf5\xf9\xfd\xb5\x9d=\x9d\xb5\xfb\xa7\xcfͳ\x18l\x9a\xbd4\xb1\x96y\xabT\x1f\xe4\xd9(\xd1v_E\xfd\"\u007f\x8fx\xa9U\xb9\x8d\xa6\n\xea\u0094\x1d\xe59$\xbe*$\x8a\xf7\x93յ\xf5E\xa4\xdaZ(\x00\xb1\xe3\xae\x12ٻQ\x0f\xb6\xd5Uյ\xb13\x14S\x9d\xd1\xdb4{ib\xcda\xa3D\x83%ɉ\v\xdbD\xf1\x94\xeaa\xad\njWnb\xd2\xe2\xafPkk\xb9W\x94\x9b\x92\xbc0\x8a\x116\x00\xa3\xc6]%\x02.\x12\x9b\x89\xb5\x8d\x12\x01\xe0\x1eP\xa2iKl&\xd6P\"\xe0)P\xa2鉓\x89\xb5`\xe5\xff\x96\x95\xe8\xff\x80\x12\x01\xaf\x80\x12MK\x1cM\xac\xa1D`r\x01%\x9a\x9e\xc4lb\x8d\xd1\x19\xf0\x14(\x11P\x80\x12\x01O\x81\x12\x01\x05(\x11\xf0\x14(\x11\x90\x19ܳ\x92\xfe\x02vk\xcbtz\xaa\vL%\xa0D@&G_\x15\xa4\x0eR\x04<\x01J\x04D\xf1\xfc\x1d\xe5\x924$I#w,\x9f9\xbe\x06`R\x01%\x02\xa28@Hn\xee\x1d\xa9\xb9ٳ\x8a\xf0\xcbz\xe0\tP\" \x8a\x97\x82s\x93\x933\x93\x93\x93\x17\xb5M\x9f\xdf!\x83)\xc5LV\xa2\x95$\xa50\xe4\x1443\x18\xec\xeb\xee\xea\xee\xee\xea:\x8d\xf5\xf1\x817\xccd%\xeam\xae\xcaJ\xc1\xa5\xa7B\xbd\xce,~g\x00\xb8\x87\xebJd\xe3F}\xf9T}\xa0Λ\xceI39\xe5\x14\x02\x00\x98x\xdcV\"\x1b7j\xb1\xa1\xaa\xbd\xfbX\xe0X\xf4\x8c\x13C\x1biu\n\x01\x00L<.+\x91\x9d\x1b\xf5\xc9\x00\xbd_\xd3\x15\xf0b\x9c\x04%\x8a\xc8,\xcfq\xaa!\x98N\xb8\xabD\xb6n\xd4\r\x8dʇj/:EP\xa2\x88\xcc:\xe71P\xa2\x19\x85\xbbJd\xebF]\x17T>\xd5{\xb1\f\xe9)2m\xd6\xf1\x1fo\xa0D\xc0M\xdcU\"\xd1\u038d\xba\xa5Z\xf1\xf6\xa8\xaa\xb3\xcf0\xa1\f\xa6\xe4\xb4\xf4\xe0\x86\x91\x1dP\"\xe0&\x1e*\x91\xeeF=P\xd5\xd0w\xbe\xb7\xbe\xb2\xd6>\xc3\xc4r\x90\x10\xb2\xd4)hF\x02%\x02n\xe2\xa1\x12\xe9n\xd4b\u007fCee\xa0\xb5\xa1\xde6~b\x19Hɨh\xeev\x8a\x9a\x910J4jQ\x1au\xe0\xb9Q\xc4B\x89f\x14\x1e*Q\x959E}\xbe\xff\xb2\xa8\xdcGs\x9b6\xd2\xe4\x142S\x81\x12\x017\xf1N\x89\f7jQY\x9e\xabK\x9d\xbev\x19\xdc;\x8b\b\x94\b\xb8\x89wJd\xb8Q+\xb7\xd0\xce\xd6xr\x13\vJ\x14\x11Y)~\xfa\xb7w\xcc\xfa\xc2?ɚ\xf0\x8d/̺\xe3\xef~%\xab\xc3\xd7?\xff\xbf}\xfe\xeb\xf2\x8e;\xe4\xf4\xdf\xc9\xff\xdf\xf13U5\xbe\xf3\x85Y\x9f\xfb\x06\x13(\xe7\xfc\xec\xdf\xfe\x8a\xd9`\x16\U0005dfda\xf5\xf9\xbf?g*\x91V\xe4\xb9Y4!\x97a\x1eթ\x86`:\xe1\xae\x12ٺQwU\xb6\xf5\x9c\xacn\xf0\xe2\xc1F\xb1\x15J\x14\tY)\xbe\xf0\xe5_\xbd\xf7\xcf\u007f#k\xc2_>\xf3\xde\xcf\xfeNV\x9e\xef|\xee\x99\u007fy\xe6s\xdf9w\xee/\u007fx\ue9f3~v\xee\x9f\xffRU\x93\xef\xfd\x87\xef\xbd\xf7ӿc\x02\xff\xea\x99\xf7\xfe\xe5\xbf\xfc'f\x83\x91\xf8\xe7\xbf\xfa\xe7\xf7~\xfa\x1f\xff\xdeP\"\xa3\xc8Y\x9f{\xe6\xbdg>\xf7ߙ\xa3:\xd5\x10L'\xdcU\"{7\xea\xf6ڪ\x86\xf6ș&\x8c\xc1\xde\xf6\x95\xbe^\xa7\xa8\x99\x8a\xac\x14\x9f\xd1z<\xb3~(\xbf\xfc\x8b\xdc\x0f\xfa\xe2w\xa8v|\xf1ܹ\xff\xf2\xe5s_\x9e\xf5\x8ds\u007f\xff\xff\xa9\x01_\xfc'K \xe5_>\xc7l0\x12w\xd2\xc4\xcf>o(\x91Q\xe4,%q'sT\xa7\x1a\x82鄻J4\xb9\xb8\x97\x90t/n\xd8M\rd\xa5\xf8\xafw\xfc\xe7oPYPEC~\xfd,\x1d^\xfd\xea\xb3r'\xe8\xaf\xcf\xdd\xf9\x9f\xfe\xe6\xdc\x17\xbf\xa7\x89Ư\xce\xe9!\xea\xeb\xcf\xfe\xe6\x8eY\xb3f1\x1b\x8c\xc4\x1d\xea/9\f%2\x8aT\xca\xf8\xd5\x1d\xccQ\x9dj\b\xa6\x133Y\x89\xfa\xda{\x9cBf0T)~\xf8\xe5\xbf\xfd\xec\x97\xed\x94\xe8\xbd;~\xf6\x99\x9f\xdd\xf1\xb3Y\xef\xa9rr\x87U\x89\xee\xfc\xaf?;\xf7\x9e\xad\x12\xcd\xd2z<\x91\x95\xc88\xaaS\r\xc1tb&+\x11\x88\x86\xa6\x14?\xfd,##\xc6P\xeaܝ\xff\xf9?\xca\xffߩ\xa9ʝ\xfa\xe8L\u007f\xfd\x8c,Q\xcf\xd8*\xd1\x17\xbf~\x8e\x8d\xb5\x19\x9dQ\x94\xa3:\xd5\x10L'\xa0D\xc0\x1eY)\xfe\xfa\xbf\xbf\xf7\xde\u05ff\xc0\xc8\xc8w\x94Ye*\x19_\x9e\xf5e\xe5\u007f\x95g>\xa7\xcdX\xeb\x81_\xf8\xf2{?\xfcK[%z\xe6\x8eo\xfc\xea\xbdg\xfe\xdaP\"\xa3Hu\xc6\xfa{\xccQ\x9dj\b\xa6\x13P\"`\x8f\xac\x14\u07fbs\xd6\x1d\u007f\xf3SFF\xce}\xfd\xf3\xb3\x94[\xee\xe7~8\xeb\xa7\xe7~\xaaLC+\xfc\xd3_\xa9w\xf1\xf5\xc0\x1f~a\xd6\xe7\xben\xabD瞹\xf33\xb3\xee|\xc6P\"\xa3\xc8Y4A\xef\xe2\x1bGu\xaa!\x98N@\x89\x80=\xbaR\xb8E\xd8\xf1\xa0D3\n(\x11\xb0\aJ\x04\xdc\x04J\x04\xec\x81\x12\x017\x81\x12\x01{\xdcV\xa20\xa0D3\n(\x11\xb0\aJ\x04\xdc\x04J\x04쉺ؽ+8\xd5\x10L'\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1eו\xa8Y\xb3\x9d\x1ehy*\xf0T\x8b\xba(Q_}U\xa3\x17+6:\xf1\x88 \b\xf9\xef\xea\x9fN\x14\x1c\x8d\x16\xccrtC\xfe\xc6#\x1b_r\n\x03\x00h\xb8\xadD\x9a\x1b\xb5x\xa6\xba.\xd4\x13\xaa\xab\xa6\xeb6\xf6\x04\x82]\xc1@O\xb4l\xde\U0001b38eC«\xfa\xa7\x97\x96\x1d\x89\x16,\xbe\xfc\v=uH\xd8yt\xaf \x1c\x8a\x16=z\x9a\xbdX\xbb\t\x00wqY\x89\f7\xea`-]\xbd\xfaRmP\x14/\xd7е\xf4[j&\xa5\xed\xd8k\xa6\x12\x89W\xa2\xc4\xc9l~XK\xbc}\xf7>\xf9u\xefx)Q\xf6J\xa7\b\x00\xa6<\xee*\x91\xe9Fݤ.QV\xdf$\x8a\xa1\xc0y95\x10\bE\xce\xe7\x1d\xac\x129\xb0QW\xa2\xdd\x05\x17\xe5\xd7_\x8e\x97\x12-\x80\x12\x81鏻Jd\xbaQ\xf7W7\xf7\x0f\xf6\a\xab\xfbeQRm\xa8\x0fz\xb0\xa4\xfe\xbb\x0f\xad\xc9+\xd8\xf6\x9b([u%\xfa _\x10\x04mtv\xe5\xf9\xcd\xcb6\xec\xbd \x8a\x8f\ny\x87\xf7nȧ\xa1G\x05\x95\xcd\xf2\xfeUO(a\x87~Mc\x0fo\xce\xdfx\xe8\n\x17˔\xc0ГDT\x92z\x98\xad\r\xda\xc6\x05\xa2x*\x9e\x90\xb2\xae\xc2\xf4\xc4ŗ\x8aI\\\xb5\xd8\xed#YJLu\x8e?s\x93'ˀ\x030^\xb8\xabD\xa2\xe9\xedq\xbe\xa9\xb2\xb2\xb2\x91\xf6\x86\xeaT\xa3\xb3\x16\xf7\x17r}y\xd9\xe6\x1f\x9c8 <\x1be\xab\xd1'z\xad\xa3#\xff\x80\x9a\xdc-\xd1/\x14~'\xda(\xd1\xe1_\x8b\xe2\xee5Tˎ\xd2{g\xbb\xd7ӹ\xa0+\xebws\xb1l\t\xce(J\x148m$\x15\x14%*\xa3JT\x98Ѯ\xd0\x1f!;\x00S\x01\xaf\x94\xa8Y\x1b\x9d5\xd3\xe7\x89ho\xa8\xd9\xfd\xe7\x89.\x14\x94R\xc9xl\xaf\xf2\xa9{G\xb7\xcdV\x1b%:\xa1\xce\xef\xec{Z䕨\xb4T\x14\u007fO\xf7\xbd}\xb7\xbc\xf5J)U\xa2\xe3J\xec\x11u\x9eȈeKp&7W\x14\xfbH-M\x9aJ\xe4\xdf*7\\6U\xa2FuWY\xb9mf\x00\xa6\x06\xee*\x91\xe9F}~\u007fmgOg\xed~z\xf3\xac'\xd0\xdc\xdd\xec\xc53\xd6/\xe7o8|\xfc1\xe1\xb0\xf2a)\xb9Ǻ\xf5\xd7\xf4\x19\xebg;:\xe4~\xce\xc5W;:\xf2\x1f\xe9\xe8\xa0\xf3\xd8Oܽ\xf3\xc8\xd1ݲ\x9a\xbcߑ\xf7ȫW\xdex$\xaf\xe3}\x91\x8a̳G\xbf\xba\x8c\u07ba\u007fV\xd8\xfd\xd2n\xf5\x19\xeb\x9d\xc2\x13/=!\xec\x14\xf9X\xa3\x84Ѱ\xddWQ\xbf\xc8\xdf#^jUn\xa3\xa9z\xb90eGy\x0e\x89\xaf\x92;\x92\xf7\x93յ\xf5E\xc4\xf5\t\u007f\x00\xc6\x11w\x95\x88q\xa3\x1el\xab\xab\xaakSoX\xf76\x06\xea=q\x85~\xfb\xe1\xb5\xcb6k\xbf&\xabJ\xa9\xb4nݭ\xcd\xe7\xc8î7\xb4\xa4\xa2Z'J\u05ec(=N\x9f\x11\x12\x84\xbc_.\x93_\x1f\x95\xb7^|lU~\xe9kJ\tG7\xe4o>\xbe\x96v\x84\xae\x1cڨ?O\xc4\xc6\xea%\x8c\x86\xc1\x92\xe4ąm\xa2x*N\x99\x0fR\xf5\xb2+71i\xf1W\b)\x96Ӎ\xb9)\xc9\v\x0fF-\x03\x80I\x8e\xbbJ\x04\x00\x00v@\x89\x00\x00\xde\x03%\x02\x00x\x0f\x94\b\x00\xe0=P\"\x00\x80\xf7@\x89\x00\x00\xde\x03%\x02\x00x\x0f\x94\b\x00\xe0=P\"\x00\x80\xf7@\x89\x00\x00\xde\x03%\x02\x00x\x0f\x94\b\x00\xe0=SA\x89V\x92\x94B\xd7\x17/\x02\x00\xb8\xc8TP\xa2\xde檬\x14xW\x000\x8dq]\x89\xecܨͭ\x91h&\xa7\xa2\a\x00\x00\xa62n+\x91\x9d\x1b\xb5\xb95\"m\xa45z\x00\x00`*\xe3\xb2\x12ٹQ3[#\x02%\x02`Z\xe3\xae\x12ٺQ3[#\x02%\x02`Z\xe3\xae\x12ٺQ3[#r\x8a\xb8\xeeA\x04\x00p\x0fw\x95H\xb4s\xa3f\xb7Fb0%\xa7\xa5\xc7u\xf3\x0f\x00\x80Kx\xa5D\x8c\x1b5\xb352\a\t!K\x1db\x00\x00S\x15\xaf\x94\x88q\xa3f\xb6Fd %\xa3\xa2\xd9\xe2\xd2\f\x00\x986x\xa5D\x8c\x1b5\xb35\"m\xa4)z\x00\x00`*\xe3\xb1\x12\xb5\x8fZ\x89p\xef\f\x80i\x8cWJĸQ3[#\x02%\x02`Z\xe3\xae\x12ٻQ\x9b[#\xd2\n%\x02`:\xe3\xae\x12ٻQ3[m\x19\xecm_\xe9\xf3ĭ\x1a\x00\xe0\x0e\xee*\xd1ظ\x97\x90\xf4z\xa7 \x00\xc0\x14f*(Q_{\x8fS\b\x00`J3\x15\x94\b\x000݁\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\\W\"\x1b7\xea\x81`m\xa0\xfeԥh\xb9\x00\x00\xd3\x1a\xb7\x95\xc8ƍ\xfalU}g\xf7\xb1\xaazH\x11\x003\x16\x97\x95\xc8\u038d\xba\xb9\x96\x1a\x99\xf5\a\x8eE\xcb\b\x00\x98θ\xabD\xb6n\xd4u\xb5꾆\b\x99\x00\x00\xd3\x1ew\x95\xc8\u058d\xba\xb7G\xd9\xd2\xf2T\xe4|\x00\x80鍻J$Fr\xa3\x16\xc5\xcb5A\xfb\f\x00\x80\xe9\x8fWJdq\xa3\x96\xbbDU\xfd\x91\xb2\x00\x00\xa6;^)\x91ōZl\xad\x84\xd74\x003\x17\xaf\x94\x88w\xa3\xbe\xd4\x1c\bE\xca\x00\x00\x98\xfex\xacD\xaa\x1b\xf5@C5\xec\xcc\x00\x98\xc9x\xa5D\xac\x1bu\xff\xfe:\xea\xbah\xce^\x03\x00f\x18\xee*\x91\xad\x1b\xf5\xe9\xc0\xfe\xee\xde\xdeޖZ\xa7\xdc\x00\x80銻Jd\xebF}\xb0R\x05O6\x020cqW\x89\x00\x00\xc0\x0e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xfe\xe2+\x00\x00\xe05\xb7\xd3'\x02\x00\x80\xf1\x01J\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbcg\x14J$\xee\xc8IIH\xbd\xe7\xa9\x11\xa7\xc0\b\fҌ\xb5d\xb9S\\\xec(%א\x95\xe6\x96\xd1\x1c\x86\xcb0\x16\xf6\x90\"\xa7\x10\x00@L8+QU\"QI\xefq\n\xb5eO\xe2\x904:\x89\x88\x15\xb5d(\x11\x00S\x1fG%\xdaNHn\xcbՑ\xb3Us\x89\xaf\xcd)؆\x11B\xa8^\xf4\xee\t:EƊV2',\xa39\f\x94\b\x80I\x87\x93\x12\x05\t٣\xa6\x86rI\xf2\x9f\xa2\aۡ\xe9\xc5\x04`\xa7D\xa3!\xe6\fV\xa0D\x00\x8c7NJ\x94A6\xe9ɡTR\x12-\xd4\x1e(\x11\x00\xc0\x11\a%:F\xe2.\x19\x1f\xaaɜ\x11z!\u007f\xb3\u007ferR\xceAu\xe3\xe0\x96t_\xf2\xbd\xed4YE\x02\xed\x19\x89\xd9\x03\x92Ժ:\xcd\xe7\xcf*\x13%i\xab2\xc5\u052bO\xe0\xf4\x15\xcfMH\xbeW\x19\xe5Ր\x8a?m\x99\xebK/\xbbJ?\x9d\xfdRzB\xd2\xc2*nVOdW\xd8٭\x19\xbe\xe4\xe5!\xa5,&\x03[W\xfe(\x96C2\xe7\xa9*\xd1<\xb2U\x02\x00\x8c\x0f\x0eJ\xb4\x9d,0?\x88\x84\xb4)\x17\xf2\x1c\xdf\xe2\xdc8RL\xb7\xb5\xfb\x89o~\x06!\xe5\x12U\xa2-\xb3\t\xf1\x8fH%\x84\xa4\xcdO\x95_\xaeJ\xf5\xab\tY\xb9zP\x93\x88\x86\x042g\x81\xbc\x83^\xc35dS\x1aIJ&$KV\x8c\xbe$\x92\x9c\x9dI\xc8]̱#\x06\xab\xe8%אy\xa9$U\xde5oDS\"\xbb\xc2Z\x12ɜl\xb9\xb0\xa0\xc4g`\xeb\xca\x1f\x85?${\x9eP\"\x00\xc6\x1b\a%\xba\x87\x1b\x90\xcd%U\xf4\n%\x99\x03\x92ԝL\xea\xe5\x9eB\x12\xd9zM\x92:\x93I\x13U\xa2\xb8\xcc涧\xa46\x92xR\x8e\xee\x9cC\xbee\x8c\xa1\x14\x898\x1dG\xca\xe5˺\xd1G\xaa\xd5r\xe4.J\xd0G\xea$i9)\xbb!\xefO\"-\xc6\xc1\"\ak\x18\xa33\x92\xd1%wm\x12h}\x94\xc3\xd8\x14vi\x0e)\x1b\x91n~\x93̾\xcag\xe0\xea\xca\x1d\x85\xfb\xc0\x9d\xa7\xaaD\r\x81N\t\x000>8(Q6\xd9n\xfd$_\xa1}\xf4\xc3A\x92A\x87HK%\xf5C&U\"u\xcf\xfdZ\xa6\xfb\xa9\x8c\xb1J\xb4R\x9b`\xa9%)#\xb4\x9c~\xfa\xa1\x98v\xae\xd2\xe5a\x96L\xa0\xb0\xd58X\xe4`\rS\x89\xb4]%\xdaal\n\xdbN\xeeQ\xde\x17\x92Z>\x03WW\xee(\xdc\a\xee<1O\x04\xc0x\xe3\xa0D\xf3\xc9\x0e\xe6S\x0e)\xa3W\xe8B\xe5ÈO\xbeR\xe7\x92f\xf5C\x1c\x19\x90\x95(C\x8d\x1bQ\x87P;\xe8\x15\xcb(\xd1H\"\xe9R\xf7\xcf!!\xb9\x9c,\xe5C\x80N /&9\xa1\x1b\x12K\x94`=BW\xa2y\xe6.E\x89\xc2\v\x93\xb2\xb4z\x0e^\xb2d\xe0\xea\xca\x1d\x85\xfb\xc0\x9d'\x94\b\x80\xf1\xc6A\x89\x96s\x93!\x19\xa4\x82^\xa1_Q?\xcd#\xadÄ\xcc\xcbQH m\xb2\x12ݣ\x05\x8e\x84\xea\xcaW\xa7\x13\xb2\x8eS\xa2\x01B\xb4Y\x9e\x85\xf2\xc0\xa8F\xebf(\xe2\x11\xf2\x11\x92\xb4\xbaޜ\x8f\x8e\x16\xac\x1fDW\"uW=}\x8fP\x98\xe4S\xfb7\n\\\x06\xae\xae\xdcQ\xd8\x0f\xfcyB\x89\x00\x18o\x1c\x94\xa8\x8c\xe4\x98\x1f\x86\b\x9dy\xa9ѻI9\xe4\xa0HL\x9ad%Z\xad\xee\t\xa4\xd2\r\xf3\x17Z\x94\xa8\x8f\xc4k%-%U\x92~3]\x15\x97\xbeu~9K|\xc95\xfd`тU,w\xf1M%\n/\xec\x1a!\x83F>.\x03WW\xee(\xec\a\xfe<\xa1D\x00\x8c7\x0eJ\xd4E\xe2\xccK\xb8\x9e$\f\xd1+\xb4L\xfd\x98E\x8e\xc9\xdat\xc6\f֕蛄|\xa9\xa1{X\xaa\x88\xd8'\xcaQ\xba9\xbc\xb8\x8ct\x96\xcf#\xe65\x1e=X\xc9\x10Q\x89\xc2\n\x93\b\xd7'b2pu\x8d\xa8D\xfcyB\x89\x00\x18o\x9c\x9el\xcc4\xaf\xba\xe1\f%]\xa3\x8d\xc1\xae%\xc8\xfd\x8c\x14z/\x89\xd29pCW\xa2\x1bsH\xad\xb2m\x8bE\x89n\xcc\xe6\xa7~\x98\xcb~ \xa4\xa4\xabI\xbc>\xc1\x13%X#\xa2\x12\x85\x17&\x9f\x86\xfa+\x90\xe6\xc5\x01.\x03_\u05c8Jğ'\x94\b\x80\xf1\xc6I\x89:\t\x9d\x1b\xa2\\[J\x12\xcfK\xf4\nMP\xbaI\xfb\xe9\xa3F\xc5$\xfb&\xfd\xd0J|Wu%\x12\xb5[h\xc3i\xf4\xb3ݽ\xb3:\x924b\x1d\xfd\xd0'\v\xa5~\x12g\x99\xf8\xb2\xe6'\x92\xd4\x01\xe6\xc0\x91\x82uԒÕȮ\xb0\xa0\x8f$g'\x93\x84\xa0\xa5\x13\xc5\xd55\xb2\x12q\xe7\x89g\xac\x01\x18o\x9c\x95H\x12+r\x92\xe2R\xee\xa9\xd5\xeeD\xc9Wh\xef\xd29\xc9KO\xa9\x1f\xcfnJ\xf7%f\a\xe88ȸw֖\x9b\xe2\xcb\xda\xfe\xa7a\x1f\xbdc՟;;\xe9\xa0.!}Ei\xbe\xb4\x95\xedZ9J\xb0\xbagpK\xa6ov\xd6v\xf6\xce{\xe4`\r\xb5d\x9b\x19k\xbb\xc2\xfa\x8b\xd3\xe2S\n{%\x8b\x12qu\x8d\xa2D\xecyB\x89\x00\x18oF\xa1D\x16\xf4+\x14\x00\x00\xc6\v(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x9eؕ\b\x00\x00\xc6\x1b(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x9e\xf1R\xa2\xe7\x84o\xdb\xef\xc0\xad6\x00\x80#P\"\x00\x80\xf7@\x89\x00\x00\xde\x03%\x02\x00x\xcf$Q\xa2\x96\\n\t\x8f\x98\x18\xcamq\n\x01\x00Ln\x1c\x94\xe8E\xe1\xb9?\u007f{M\xfe\xc6W\xa4[/n\\R\xf0\xddO\x95\xad?ߵ6/\u007fÓ\xff\xa6|x\xe7\xa1U\xcb\x1e\xfc\xad\xa6D\x1f\u007fw}ު\x87\xdedJ\x90\x95h\xa00ٟ\xd3 ѕ\xa5U\xa71\xa9\x82\xb3\x96\xa5\xeb\x95UHc'\x10\xf7\xad\xa8\xfbK\b!\xfe\x81\xa8!:\x9d\x84\xe4JR\xb3\x9c\xe1T\xe4\xa0\xf6TC\xfa\x86\xb6\xa4\xf9\x97ߌ\x1c\n\x00\x18\x15\x8eJ\xf4\xedU\u009a%\x82\xf0\xca\xe3B\xfe\x1aA(\xa5\x1b\xbf-\b\x05\x1b\v\x04a-ե\x17臼\xbc\xaf*J\xf4\xe62!\u007f\xe3zA\xf8\xbeYB\r\x99\x97L\xe6e\x12R(IW\x13\xd4U\xa3\xa5L\x12b\x8f\xb2?\xaeA\xba\x1dZ\xe3k\xa2\xed\xbe\x1c\n\xd5j\xcb\xf3;1r\x92\xf8C\xd2p399\"q\x9c\xea1ӭs\x9a\xf5\xe4Ҵ\xa7J\x12\x87$\x00\xc0\xed\xe1\xa8D\u0086\x0f\xa5뻄\xfc\xfc\x1fߒ^\x11\x84\u007f\x95\xe5Fȧ\x9d\x9ew\x96\t/H\xd2o\x85\xbb_\xbc%}\xf2\xa0@\x95\xe8\xe3e¾\xeb\xf2\x9eU\xc2+F\tԅ\xbe_\xeeG\xf8\xa9\x89\xc6JRN\xb7\x9d&\xe9\xecA\xce\xfb\xca\xf5\xe4\xd5\xc5c\x1a\xa5\xed\xf0]\x8e\x1e\xd0=J%\x92\x86I\xb1\xdc]\x1b$Ö\xed\vm\x17\xd1\x1f\"\xb2\x04ZC\x01\x001\xe3\xacD\x1f\xcao\x1f\n\xc2s\xf4c\xa9\xf0\xa2$\xed\xbb\xfbIe\xdf>\xe1qI\xda%\xec\xa3\xe9O\xd7P%\xda'<\xa4\xec\xf9\x89\xb0\xc1(\xa1Fs\xcf\xd8O\xad\xaa\x83\xaa\x04\x95\x11Cz(%s\x19\xbf\xc5>i\f\\\x9bˏ\xf6\u0088A\x89N%\x8d\xd8(Q\xce:\xbb\xe8\x01\x82)*\x00\xc6\x03G%ZO߮\v\xc2\xff\xa2\xef\xbbh7H\xba~]\xd9\xf7\x03\xe1\x1f\xa5[+h/I\xa2\"$+\xd1Z\xad/$\x87\u007f\xa4\x97PC\x16)\xef\xc3\xd4Q~$\x99*\xc2\xcdT\xd6\xc7P\xba\x91\xb4]\v\xcdj=Cζf)\x0ed\x03\x85\xa9\ti\xcb\x15\xbb\xa0\xda\x1c\u007f6ݶ\x95$ԕe\xf9\x97^\xe6\x92\n;\x12-\xa3)\xbe\x04F\x89\xf4\xc2$)\xb44=!uy\x86\x92>\x98;'\xeb\x01\xaa\x87\xc3d0\xa7YW\"=\xb6E\xf3\x14\xa0~\xb8C\x89\x84\xc45ҽ7R\u052de\xd4|\x88\xc8\xe2Z\xa18\xc4\x02\x00b\xc7Q\x89\x1e\xa4o\xff.\b\x9f\xd0\xf7݊\x12I\xd7\xdfy\xf1\xfb\xbb\xd6\v\xc2n\xe9\x13APe\xe9Dz\x12}*\b\x1b\xefS\xc8\x13\x8cIk\xc326\x83\xba\x12m!\xf7\xcb#5\x92\xcd\x1e\xa3\x87hv=b1\x99/\xff\xb7\x8e\x8aGgRN\xa0\xbd\x82T\xcb\xc9\x12ߎ\xd6\x1d\xbebI\xeao\x8c'\xa9\x15UI\x85\\R!\x14\xde\xe7aJ`\x94\xc8(L\xde\xf4\xa5\xe6\xf6\xbaTB\xdd\x197\xc5\xdd\xdfZ\x93\x9asSQ\xa2\x9a\xe5\x9a\x12\x19\xb1\xd7B\xa1\xac\xbbB\xa1\xd0YZ\xc2\xe9Pȧί\xf7\x86\x1aIE($Ҁ\xf4-\u007f\x92\xaeV$\x870T\x03`,8*\xd1\xc3\xf4MV\"\xe5F\x99\xa2D\xb7^X#\b\xc2\xdd\x1bKe%\xfaH\x10\xd4\xc0\xd7e%\xfa\xb3`bL\x14Ր\x1djb>i\xa6\xee֩7\xa5\"M\x1e4Z\xe5ΒƱ\x04\x92\xd0F\x13#\xe9\xf7ʝ\x9c\x1bMC\xf26B\xdd=ک\x8eI\xbed\xb9\x13T\x9c*\xf1I\x99\xcbĘD\xd6`J\x90L%b\n\xabM\xa5\x1aT\x9b,\xd1\x1a4(1\x8d\x8a\x12]\x9d}UQ\"\xf6\xc0\xfc\xe8̯\xdf\xe93Gg\x15\xb4\xbf\xf4%\x871\"\x00 \x02cP\xa2焻\x1f\xff\xf1o?\x95\xdfw\xd3n\x90zc\xff'j\x9f\xc8\x18\x94\x19Ԑ\a\xd4D\x069)ѻf\xa7F\xfc\xf1ܴt\x90\f\xaa\x89\xa12_:\x99\xeb\xdb.\x8bG\x1b\xe9\xd5wo\x9a\xaf\xbcͧW\xb9\x8f\xbeT\xf8$>)Q%\xb2\x0e\x8b\x98\x12$S\x89\x98\xc2Ĺ\x99[\xeb{%*GE\x997(\xe9%\x8a\x12I˫\x15%b\x0f\xec\xa8D\x97I\xbf4\x92tR\x02\x00\x8c\x85ؕ\xe8\xfa2:m-\xf3]Y\x89n\xad\x12\xdeQ>|\x9f\xce\x13\xadѻB\xef\xfc\xf1\xdf\xf5\x12j4\x87\xb2!\xd5#\xba\x82lmc=\xcb$\xdaO\xd2FN\x81Ժ~ҿ?u\x0f}\xf2Ș\xf7Y\xa4>\x19\xb9r\xa1\xfc\xa2\f\x8b4%2\x93\x12U\x1a\xee\xb1\x00\x89+A2\x95\x88-l\xa8n\xdd<\x92\x16\x90T\vG\xcajU\x89\x9a\xb3\x15%bc\x1d\x95HZ\xfe\x80t,\xf9\x86\x04\x00\x18\v\xb1+ѿ\xa9\xb7ӤO\xd7\n\xbb$\xe9q\xe1\x1f\xe9\x87\xeb\xeb\xa9\x12}[\xb8\xef\x16\xfd\xf4s!\xff\x13\xbd\x84\x1a2[\x994\xdeC\x94.\xc6 I\xdfj\x19I]\xf3\xe9\x17\xf6\r\xe5\xde\x19\xbd\x9cO\x12\xe3\xf9\x9d\x92L\xe5-S\xe9\x13ER\xa2\n\x9fu\x82\x86)A2\x95\x88)\xec4\xbd\u007f7\xdc试\ay\x99=\nWU%\xba6\xa7\x9d*\x11{`U\x89\x1a.\xa9\xa5\xd9)QKꍒM\x12\x00`LĮD\xff\xbeB\xd8'\xeb\xcd\x1f\x1f\x14\xe8=\xfb\x8f\x96\b\xcfݒ>ݥ\u05faL\xe3)e1Y\xbd\xd75\x9c\xb6\x98\n\xd2W\x94\xfbR\xf4NU#i\x95\"+\xd1\xcdy\xc6OJ\x06\xbfu\xdeZ\x82d*\x11SX\x059F\xb7,\xdeB炔\xb1ݎ=\xaa\x12I%ET\x89\xd8\x03K\x8b\x17Kҟ\xf4!\xa0\x9d\x12\xddHmI\x89\xf2\\6\x00 \x1a\xb1+\x91\xf4#AX\xff\xe0?\b+\x9e\x146ʛ^\xc9\x13\xd6\xfcC\xbe\xf0\xb0\xf2\x8c\xf5\xebK\x84\xfc\xfb\xd6\v\xc2\u05ee\x1b%Ԑ\xa5\x89\t\v҉>q]O,\xbf\xf4\x90\xa4\xb3qU\x92\x95S\xb3\xe7?\xd5v?\xa9\x97\x93\xc5q\xe5\xad\xe5qŲL\x85\x12J\xba\xa4\x9e\x92\x84\x90\xc8$it\xb5\xd9\x01Z\xad\x8f\xfd\xcc\x12D\xfa\x8cuu(t\x89-LV\xa2\xa4\x8a\xd6`\x89r㮜\x145\xb7\x94\x90\x83\xf4\x19\xeb\xe6a\xa93Q\xb9wf\xc6Rͫ\n.\x9d#\x1f\xecFW(\xe4+\tћd\xea\xbd3\xfd\xa6]y&\x06g\x00\x8c\x951(\x91\xf4\xe6\xd7\xd6\xe4ox\xf2\x93O\xf3\xee\xfeX\xfe\xf4\xaf\xbb\xd6\xe4\xdf\xf7\xe6+\xea\xef\xce>z|}^\xfe}/\x98B$+Qy\xdf\xd29\xfeEm\xda\xe7a_ؔ\x8e\xb4cv\xd8&i`]z\xd2\u00a0\x92ܟ\xad?ODHB\xff\x1c\xf9u+\x93\x94w\x84\xfcۍ|\r\xa9u\xd6\x12J\xb4i\xa0\"\xb60\xe9\xe0\xe2\x8a\xf4\x84\xb4\xc5\xea\x13\x04\xed\xf7\xa4$\xd3*v*\x8f\x04\xdd\xccM\xbb\xc9\xc5J\xd2\xc8\xfd)\xfe\xbb\xba\xe5Dw\x9cZX\x1d}8\x8a\x12\u007fV;\x1c\xc1\xe0\f\x80\xb1\xe2\xa0D\xe3\xcfy\xfe\x97\x1e*e\xbe\xdby\"\xb0\xc9W2\tz#þN\xa7\x10\x00@\x04\\W\xa2\x1d\xe4\x9b6[\xab\xd3\xc7\xf4{3\x85\xa1\xb9\xd1\u007f\x8a\xef\x12M)\x93@\x0e\x01\x98\xa2\xb8\xabD\xfd\x83M\xb3}\xa2S\xd4\x14\xa4\xa2SZZ!\x01\x00ƈ\xbbJTH\xc8m\xadD4Y\x19!9[Ӱ8\b\x00c\xc6]%\n$\xa6NG!\x92\xfbDI\xf7\x9cu\x8a\x01\x00D\xc4]%\x02\x00\x00;\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xc6I\x89>\xe6~\xdf1\x1a\x873\x00\x000\x18\x17%\xba\xf5B\xfe\xa7\xe6'(\x11\x00 F\xc6E\x89\xae\xeb+7*@\x89\x00\x001\x02%\x02\x00x\x8fgJԒ;\xb6\u07fcnqg퍡\\8\x99\x01\xe0\x1eNJ\xf4\xd1\xe3k\xf3V\x94\xfeH\x9d\x90f\\\xef_\x14\x9e\xfb\xe4\xbbk\xf3\xd6?\xf9\t\xf5:\xa3|\xa8g\x91\x95h\xa00ٟC\xfd2\xaa\xc9\\&\xac\xbao\x83 |\x8d\xaeOͺ\u07bf(|\xb7@X\xb6J\x106\\\x97~\xbcK\x10\x1e\xde\xf5\xb1\x9e\xa7\x86\xccK&\xf32\t)\x94\xa4\xab\t\x9a\xa9k&\xbf>\xda\xfe\xb8\x06it\xb0\x86\xf42ų\xffD\xd7ndd\x8c\t\xb0\xc4\xde\x1e\xad\xf15N!\x06\xb6\an\x9f\xb3\xb0\xbe1\x9b\x903\xd2e\xbah\xa4\xbe\xb6\xa3\xd4:\xc7\xea\x88\xc4c\x16\xb6\x9f\x14\xb7l'd\xf4\xf5\x00`\xaa\xe2\xa0D\x0f\vO\xcaݡ߮\x10^\xb7\xb8\u07bf(k\xd0;\x92\xf4z\x1e5\xfa\xb0\x8e\xceHF\xbf|!\xfaI\xad$\xadT\x8d\xa7O\xf3룝\xf7\x19v\xd4W\x17G\x1f\xa5\xf1\x86\xf4\x03\xaa\x8f\xa3\x8fQ\"&\xc0\u07bc~\xac\xec\xf0]\x96F\x89݁\x87\x92V\x8fHҵL\xd5\xefv\xd4v\xd8La\x03ʊ\xbbeP\"0\x03pP\xa2\xf5\xea\xa0\xebG\xbb~nq\xbd\u007fQ\x1b\x8e}\x9b\xae\x1a\x1b\xa6DJ?h?ɠff\x8a\x04\x95\x11Cz(%s\xaf\xe9\xc9>\xad\xd3\x14\tސ\xbeD]݈U\"&\xc0\u07bc~\xac\\\x9bk]p;\"v\a.OT$\xb6\x8a(?ҏA\x89\x8c\u008aS\xa9\xf5\xc0\x19R\x1b-\x1a\x80i\x81\x83\x12}M(}G\xb7.\xe3\\\xef_\xa4r$\xf3\x02]\xe8ڪD\x8b\x94\xf7\xe182@\x17{\x96/\xc1\x9b\xa9j\xcf@\xe3F\x92\xb6\xeetMV\xeb\x19r\xb65\xab\xd6bt\xaf\xdbԳ\x86\xf4\x94\xc1\xf8\xaf(\xef\xbe\xedZ,\x13\xc0$\xb7\x92\xf8\x9aM\xe9)+\a$\v\x03\x85\xa9\ti\xcb\x151\xd3=\xef\x99\x03\xf3u\x90;E\x89\x16\x13\x12>@/\x81\xaf\xa4^u)S\x9dZ\xbfZ\xa5\x14\xa2+\xd1P\"!q\x8dZyz,S.[X\x8a\xdaJ\xfb/\xb1G\xb3o(\x00\xa68\x0eJ\xf4N\x9e \xac\xd8\xf5c\xaa3\xbc\xeb\xfd\x8bZ\a\xe9E;%R\x9d}\xa4\fj伅\xdcOm|\xb2\xd9R{\x88\xb6\xe4\xb3XL\xe6\xcb\xff\xad\x13y\xa3{æ\x9e3\xa4\xa7;\xb4\x01\x93\x8f\xccklI+\xe4\x1c\xeb\x99$-,cOE\x86\xdf\xd2\xdd\xeaL\xca\t\xb4W(^؆\xe7=s`\xae\x0e2!k?\x86\v0J\xe0*iT}$\x8e\xb3\xdc6\xfaD\xa7C!\xbdGg\xc42\xe52\x85\r\x11f.ͮ\xbeL\t\x00Lq\x9c\xee\x9d}\xb8+_\x10\x84\xbco_\xb7\xb8\xdek\xa6\x1f\xaa\"Y\x95H3\x14\x9aO-\x16\xbbH\xeaM\xa9\x88p\x97e\xab\xdcY\xd28\x96@\x12T\xdb\x0f\xd3螱\xa9\xe7\a>\x97\x12\xb6\xaa\t\x1f] qS\xaad\t0\x93\xbe\x8ca\xf9RNϕXF\xd2\xef\x95\xfb'7\x9a\x86x\xcf{\xf3\xc0lR\xa2\x0e\xd3aS\xcbf\x00[\x82y`\xb3ꃄ\xbbCƎ\xce4\xbb4\xf64\xd9\x03\xeb\x85\xf5+G\x90FFF\"\u0557k(\x00\xa62NJ$\xcb\xcc;\xdf\xdf(\b\xffhq\xbd\x8f\xaaD\x0f\xa8\x89\fB}\xe23ɩ\x11\u007f<7-\x1d\xa4\xf6\x86\x94\xa12_:\x99\xeb\xdbN\x17^5\x8d\xee\x19\x9bz^\x89\xb6&h\xf9|\x9b$\xc3v\xd1^\x89\x94i\xa9Z\u00ad\xe8\xdaFz\xf5$\xebyo\x1e\x98MJT\x89\xc2\x1e\x160\x03\xd8\x12\xcc\x03\x9bU\xbf\x11o\xdf'\x92\f%bO\x93=\xb0^ذ\xa23E\xf2P\xedd\x84\xfar\r\x05\xc0T&\xba\x12\xdd\xfa\xa3\xeaz\xff#!\xef\xdfy\xd7\xfb\xa8J\xa4z\x1f\x0e\x11Bgd*\xc8\xd66\xdd\rQ\xa3K\xbf,\x03\xa9u\xfd\xa4\u007f\u007f\xea\x1e\x895uel\xea9\xa1\x11}\xfaS\x8d\xac\x01\xac\xbd\x12)\x17{'\xe7H-U\x13cއ\xf5\xbc\x8fhq\xdd\x1d\xee\xccf\x06\xb0%\x98\af\xaa\xae\xcd\x13\xddh\xd7\xca\nS\"\xf64mOH\x99'\x12\x9bI\xf9H\x84\xfar\r\x05\xc0T&\xba\x12}\"ܭ8.~(\b\xd7y\xd7\xfb\xa8J4[\x99\x13\xdeC\x94?\xe4\x83$}\xabe\x98s\u0378\xf7uC\xb9w\xa6\xd8\xf3\x98\x17\x18cS\xcf\x19җŝײ\x85]\xb8j\x80\x99\xf4)SUu\x8a\x95\xab\xc1IS\x98X\xcf\xfb\x88JT\xe1\xe3\xb2\xf3\x01l\t恙\xaa\x97\xfb\x95\xfa7\x11\xe5\xcdF\x89\xd8Ӵ=\xa1\xe24\xaa\x9cAz\x17\u07fe\xbe\\C\x010\x95q\xbcw\xf65Y\x8a>\xdd%A\x10\xde\xd4\xf3Ԑ\xa5\x89\t\v҉>q]O,\xbf\xf4\x90\xa4\xb3qU\x96-\x9cѽaS/I\xa6!\xbd\xf4\x80>\xcf\xcd\xc52\x01L\xd2Gr\x9a곒\xd5\f\xab\xf5\xc1\xe1\xa9\xd9\xf3\x9fj\xbb\x9f\xd4K\x8c\xe7=S\x18_\xae<\x983\xbaPZ\t\\\x80Q\x02w`\xa6\xea\xc7\xfc\xb9\r-K\xe3C4_\xa8\x96T\x87Br?\xe7FW(\xe4+\t\x85\x86\xd9\xd8H'TM6\xb5\x96\xa8\xcfX\xdb\u0557o(\x00\xa62N3\xd6\xf4\xa7f\xf9\x1b\x9eT\a_\x8c\xeb=\xafD\x1f\x96\xe6\xaf\xf8\x89\x9e\xa5\x86\x94\xf7-\x9d\xe3_Ԧ}\x1e\xf6\x85Ϸ\xec\x98m\xd9\xc4\x1b\xdd\xeb6\xf5\x12cH\u007f5\xb1\xd86\xd6\b`\x93\xbe\aJ\x92\xe7\x16k\xbd\xad\x86\xd4:-\xe7\xc0\xba\xf4\xa4\x85A%\xa9{\xde3\x85\xf1\xe5\x86\xfc\xdaCOf\t|\x80^\x02w`\xb6\xea}K\xfdi\xab\xfb\xe5D\x896\x9fS$\xf7\x8d\xe2\xd4d\x1d\x1b\x1b\xf1\x84\x82\xf3\x12s\xdb\xd2\xdb\"ԗ?\x1a\x00S\x19'%\x1a\a\xce\xf3\xbf\xf4P)\xf3\xc5\xfa#\xd6r\xee\xe1H\a؇\xb0\xc7F\x93\xaf\x04\xee\xd2\x00\xb8\x85\vJ\xb4\x83|\xd3fkuz\x8c\xf3\xac\x9bbY\x0e䶕hh\xeem\xff\x14\x1f\x000j&Z\x89\xfa\a\x9bf\xfbD\xa7\xa8q綕\b\x00\xe0&\x13\xadD\x85\x84\x8cq%\xa2\xdb@\x9d\xd5\x05\x00L\x19&Z\x89\x02\x89\xa9\xae\v\x91:\xab;\xe8\x14\x05\x00\x984L\xb4\x12\x01\x00\x803P\"\x00\x80\xf7@\x89\x00\x00\xde\x03%\x02\x00x\x0f\x94\b\x00\xe0=\xe3\xaaD\xfaB\x8e\xd1y\x8e.}\xad1:o4\x00\xc04\aJ\x04\x00\xf0\x9eqU\xa2\x0f\x9f{\xdd)D\x82\x12\x01\x00\xc2\x18W%\x1a\x1dP\"\x00\x80\x85i\xa7D-\xb91\xfe\xb26*[b\xf9\xd9-\x88\xc2diɡ\xdcQ{\x81\x8f\x85\xc9r\x9aS\x0f\a%\xfa\x91\xf0\u009b\xeb\xf3\xff\xe1#u\xa1\xa2U\x0fiˡ}\xb4o\xfd\x92U\x0f\xabk\\3;\xe8<\xd1\x0f\xb4\x85\x8b\xa4Dž'%K\xb6w\x1eZ\xb5\xec\xc1\xdfZ\x94h\xa00ٟ\xd3 \xd1u\xc1\xe6\xa9\x1b+\xb8\x95Ն\xb6\xa4\xf9\x97\x8f\xdaG'0\xae\xbfr;Cʥ\xad$.\xd6\x05L(\rt\x15\xa2\xd4{{\xa4qf\x13!t\x95\xb9*B\xac\xdf\xf9\xf6\xd4\t\xbd\xc6n\x8f\xc9Ӓ\x818\xfbU\x16ƥ\xf9n\xe34\xc7H0^[\xfc*>\xbaǹF\xdf\xd29iE\x9di\u007fR\xd6\xcc\xf2\x0f8\x85+t\x12\x92+I\xcdr\x86S\x91\x83\x98\xe6c\xae\xd8\x18\x1a\xd5Q\x89\xbe\x9b/\bˮKo.\x13\xf27\xae\x17\x84\xefӭ\xaf\xe7\v\xcb\xee[#P\x8bjn\aU\xa2?\nyʲjחQ\x93X.\xdb\v\x82P\xb01/\ufadc\x12\xcdK&\xf32\t)\x94\xa4\xab\t\x9a\x1dl&\xb7\xb2\xdaҴ\xa7J\x129\x8f\x8e(\xec\x8fkp\n\x89\x8a\xc5\xe0\xbex\xf6\x9f\xe8\xcfi\x19qc\x02NE\xbd6\x86\x1bȷ:\x1brug\xb7qCL\n\xd0\xc6\x18\n$YW8h\x9d\xa3\u007f\x17\xa3\xd7\xcc\x1d&YK2\x87h\x8d\xb7\xb5\xf76\x9b/\x16\xc6\xef4\xc7\x18\x10 ڂ\xa0$`\x93A\xc5\xcc\xd6>ga}c6!g\xa4\xcb4\xdb\xe8~&>r\x92\xf8C\xd2p39iY\x04\x9a\xad\x0e\xd3|\xcc\x15\x1bC\xa3:*\x91\xb0\xfe\xf57_\x94>^&\xec\xbb.wjVQ\u007f\x8f?/\x13\x9e\xbc.\xddz\x8e\xae\xac\xcf\xedP\ue755\n?\xa69_\x176J\xfc\xde\xdf\nw\xbfxK\xfa\xe4A\x81S\"\x92\xd1/7\x90\x9fZ.\xafT-\xabOs+\xab\r\xd1\xc5S\xc3V\xb6\x8f\xc0y\x1fgz\x1d;\xbc\xc1\xfd\x80\xea!\xc9.1\xc2\x04\xf0\xb1a\xf4)\x16e\x8b\xb2\xa2\x06\x8d\x81lUk\xeb9/K\x1e\x87\x9a\x8d\vW\x17G\x1f\x05O\xb2\x96d\x0f\xb1\xc3wY\x1a/\xc6\xf14\xc7\x16P\xed\xd3\x16IO\xe4\\\xad8\x8clCI\xabG\xe8\xfa\xeeꢃ\xa3vH\x1f&\xc5%\xd4\x1a\xc3z\x19\xda\xd77\xa6+\xd6\xc4Y\x89>\xa4\xef\xfb\xb4\xfb\xf3?\xa1&\xd4O\xd2\xf5\xf5%\xaa9/\xf2;\x14%zQݻKx\xc1\x92m\x97\xb0\x8f\xa6?]\xc3+\x91\xd2\x0f\xdaO2\xa8\x8b\x85\"Ae\x84\x95\x93\x012\xea\xfe\x9d$\x95̽\xe6\x14\x12\x1d\xde\xe0\xbeD]Y\x89\xfdb\xd9z\x1a٢^?\xfb\xc9m\xd6(\x8cBuy\xf0\x1d\xbaS\xad\r\x0e5\x1b\x17\xfa\x88\xc5`\xd7\xc2$kI\xf6\x10\xd7\xe6Z\xd7U\x1f;\xe3x\x9ac\v\x18\x19\xd0$e\xc0\xd2aa0\xb2\x95'*\u007f>\xaa\x88\xe2W\x1c\x83\x12\x9dJ\x1a\xb1Q\"\xfb\xfa\xc6tŚ8*\xd1z\xe5}\xad\xe6uv\x9d\xda/n\xd0>|\xfc\xf1-~\x87\xa2D\x9f\xe6\t\xd4\x0e$\x9f\xbe\xb2{o\xad\x10\xfeU\xf9\xb0\x8fS\xa2E\xca\xfbp\x1c\x19\x90F\x92i\xd3\xdcL5\x97\x89\xbd\x91\xa2\x8e\x81\xcb\xe8J\x1fq\a\xa5A\x1f\x9dK\xe2\xad\xe1\x19\xaf\xfb\x1bI\xea\xd2ӽ\xf2\xd8y\xc7@q\x86\xff\xde\x1b\x15r\xeeF\xa9\x91\x18\xeb\xfb+؛\xcb\xf3\x06\xf7\xf2\x1f\x81\xf8\xaf(\xef\xbe\xed\xe1\xa6\xf5Lr+\x89\xafٔ\x9e\xb2r@\xe2P\xaf\x9f\xe2t\xee\x10\x92\x14Z\x9a\x9e\x90\xba<Ú\xcd\xd6\xf6ވeK(W\xff\x10\x15\x95\xb3\xa7)\r%\x12\x12\xa7x\xc1\xf2g\xa1gccm\xe1\x03\xcc\xfa\x0eo\x9f\x97tW\x97\xba\x96\xb6AMV\xeb\x19r\xb65\xab\xd6˖4j\xc6|5$ۦ\xb6VgG\xa2\xf5\xaa5\x9b\x8f?!\x1d\x17N\xd3\xfe\xdf-\xcaY\x98\x98\x92\xe2\x90M\xf3\xe0\xbbZ5\xc2gӿ}\x11\xber\xc3d0\xa7YW\"=\x96-\xd7l>\xe6\x8ae\xb62\x85E\xfc\":*\x91\xd2\xc1\xf9T\x106ާ\x90'\xbc)-\x11\xfe\x97\xbe\x9fߡ>\xd9\xf8\xb0\xdcU\x92{A\x0fZ\xf6~B=\xd3(?攨LMdP\xa3\xe5-\xe4~j\x9dÌ;zC\x8d\xa4\"Dm,\xd4\xd1wW\x89\xcfb\r\xcfxՄ8\xd0\x00\x00\t)IDAT\xddK=\xda\\\xc2HScFVRFY1\xb9t\xb5(74,\r\x87\x16\x15\xb1\x83\t{sy\xce\xe0\x9e\xee\xd0z\xf1\xf2w\xbc\xb1%\x8d7\xadg\x92\xb4\xb0\x8c=\x15\x19~\xbe\x93\xd0GZG\xcen'{\xb8C\xc8\xff\xfa_jn\xafK%7\xf8l\xb6\xb6\xf7f,[B\xfdB\xa9+\xa3KʩgOS\x1eӆB\xea\x9fb\xee,\x8cl\\\xac\x1d\\\x80y\xb4\xa1\xcc\xd4@\xdbVBj\xb9`\xb1\x98̗\xff['zؒf͘\xaf\x86}S[\xab\x13\n\xef\f\x18\xcdǝ\x90\x81\v\xa7i\xff\xef\x16\xe5,L\fIq\xc86\x12g\xefKl|\xfb\"|\xe5d%\xaaY\xae)\x91\x11\xcbU\xc7h>\xe6\x8ae\xb7\x8e\xe2\x8b\xe8\xa8D\xbb\xe8۟\x05\x93W\xe4\x0e\xce\xc7\xfa~n\x87\xa6D\xaf\v\xa5\x92\xf4\xa0\xf0\x13\xcbޏ\x04A\xcd\xf3:\xa7DZWe>5g\xec\"\xa97\xa5\"\xc25\x97\xd9\xd7c}\xc9\fkx\xc6랺\x82\r\xe8\xd9r\xc8\xd2ae\xb4ڠ\xfe\xa5\x9coq\xe2\x89`.\xcf\xf67/%l\xd5b\xd3\xe4\xd27\xf1\xa6\xf5\\җ!\x1fh(=Wb\xe9S\xfe6(~$\xcc!jS\xe9?rm2\x9f\xcd\xde\xf6\x9e\x89eJ\b\xa5J\xdb}ۥTEt\x8dӤ\xf8\xf5A\x81Q3\xfe\xdc\xd8X;\x8c\x00&[\xb1bGWfQ\"\xb9\xc6\t$A\xed'yՒl\xcdX\x1b:ۦ\xe6\a\x12\x97\x89\xdd<\xaa\xde|\xe6\t\xb1L\xfci\xda\xff\xbbE>\v\x13]R\x9c\xb2\r\xf2\xe3&=\x1b\xf3\xed\xb3\xff\xca\xc9Jtu\xf6UE\x89\xd8o*_\x1d\xe3\xdbǍδ\xad\xa3\xf8\"\x8eN\x89>\xa5c/\x9d[\xda\xdcQ\xd8\x0eM\x89\xae\xaf\x10\xfe\xf8oB\xfe\xa7\x96\xbd\x9f\xeaF\xb1?\xe1\x94\xe8\x015\x91ANJ\xf4\xae٩\x11\u007f<\xdb{\x89\xa0D%z\x92\xf1\xba\xa7\x13M\xc6B\x8d9>Mr{\xe3F\xae5\f\xdd\xf01a|\t\x9c\xb9<۶[\xf5e\x1f\x15\x13\xec\xa8\xde\xd7\xca\xc4V-\xe1\xee\xf0\xf5\x91\xaa\xae\xd6\\?-\x839\x8487sk}\xaf\xe6zkd\xb3\xb7\xbdgb\x99\x12.\x91kw}iѰ\xfa'\xc58MJ\xb8\x12\xf1\xe7\xe6\x8b\xd0\x1d\xd21\x02\x98lj\x99\xfd\x16%\x1a*\U000e54f9\xbe\xed\xf4\x84\xbdjI\xb6f\xe6W#BS[\x95\xc8\xee6\xbb\xa1D\xc6\t\xb1L\xfci\xda\xff\xbbE>\v\x13]R\x9c\xb2݈\xb7\xed\x131\xdf>\xfb\xaf\x9c\xacD\xd2\xf2jE\x89\xd8oj\fJ4\x8a/\xe2\xe8\x94HZ\xa3M\xf8H\xef\xfc\xf1ߥ\xf5\x82\xfa\xa3\x8eW\xbe\xf6\x02\xbfC\xfb\xdd\xd9w\x85\x17_\x14\xfeњ\xed\xd6*A}\x00\xe9\xfb\x9c\x12\xa9\xa6\x88C\x84пp\x15dk\x9bn\x93\xa8a\xafDF\x92\xf1\xba\xa7}*\xa3ם\xa3\x8f\xa6G\xe2\xfb\xaaȎ\xb3q\x96\x99\x01\xb3\x04\xce\\\x9ei[ѧ?\xb0\x13f\x15-Y\x92j\x17\xb4\xd3tj\xa4(\xb3\x1bCq\xd4،=\xc4Pݺy$-\xc0g\xb3\xb7\xbdgb\xd9\x12|}I=I}\t\xca\x03\x1b9\xec\xa4A\xb8\x12\xf1\xe7\x16>\xc1\xc0c\x04\x98\xd9.\x13\xc5\x1dnآD\x81Ժ~ҿ?\x95\xb7\xafu\xb5%\xb9\x9a\xd9ׁij\xfe\xa2\xe9\x0e7\xe0\x93\x18%b*i2\xf1\xa7\x19\xe1\xdf-\xe2Y\x98\xe8\x92\xe2\x98M\x9b'\xba\xd1\xceec\xbf}\xb6_9\xaaD\xcdي\x12\xb1\xb11(\xd1(\xbe\x88\xa3T\xa2o\v\xf7ݢ\xef?\xa7w\xee\xf7i\x0f/>$<\xc7\xefД\xe8\xb7\u0083\x0f\xaa\x96\xb0\xdc\xde\xc7Uu\xba\xbe\x9eS\xa2\xd9ʈr\x0fQ\xb4v\x90\xa4o\xb5\xf4\x9c-J\xb4âD'\xd9\u007f\xcdk\xe6M\x8b\x1cc\x9c?\xaf\xf1\x9eE\xf3\x82\xf3$\x1e\xb3\x04\xce\\^i\xdb\x06E\xb2\xcb\xe2·\xc5r\x01fҧLv\xd5\xf1\xf7\x16\xd4y\xd6d\x9a\x979\xc4i\xfa\xd7p\xb8\xd1_\xcbe\xb3\xb7\xbdgb\xd9Jf\x05\xe6J\xe9Uj\x0e\xf34%\xab\x12њ\xf1\xe7\x16\xe5n\x9b\xc4\x05\x98\xd9n&*eZ\xfbD\xf2\x1fMz\xefL\xed\xd9yӒ\\\xcd̯F\x84\xa6f\x8fFk`7F\x1d\xad\x12M\xd4i\xda\xff\xbbE>\v\x13]R\x1c\xb3\x95\xfb\x95J7\x91\xabl6\xe6\xdbg\xff\x95\xa3JtmN;\xad.\xfbM\xe5\xab\x13U\x89F\xf1E\x1c\xa5\x12}\x98/<.\x8f\xad~\xbbJ\xf8\xae$}\x9c/\xfc@y\x9ehٟ\xf9\x1d\xfao\xf1\xd7\xe7\xe5\x15\xdc\n\xcb\xf6\xd1\x12\xe1\xb9[ҧ\xbb,\xcf\x13e_\xa66\x87Z\xeds\x89?\x89x\xe7E=Yo.\xb4(\x11\xe3u/\xb3.\xf3\xa6\x16l\xcau\xd1V\xdf1\xb2\xd5\xfa\xe4\x83Y\x02g.ox\xd2\xcb\u007f\xe1J\xc2c\xd9\x00&\xe9K\x1b\xa6Oi,V\"\x06\xbf\xa5~!\xd5\xeb'\xad\xaco\x0f{\x88\nrLɻ\x85\xcbfo{\xcfIJ\x95\\\x9e[(\x15\xe6.U\x0eb\xffWɨ\x19wnl\xec`\x85\xe5\xcf1\x17\xc0d[\x97J\xbf<\xc5a\xf3D\x92\xa8L\xd3H\u07b5$[3\xf3\xab\x11\xa1\xa9٣I7\xe7\xa9\u007f\xd8-\x8cV\x89\xc6\xfb4M\xec\xfe\xdd\"\x9e\x85\xde:\x92))\x8eن\x92\n\xe5\xab\xe5\xe6\xe2L.\x1b\xf3\xed\xb3\xff\xcaQ%\x92J\x8a\xc80\xffM\xe5\xaa\x13]\x89\"~\x11MF\xa9D\xd2\xebK\x84\xfc\xfb\xd6\v\xc2\xd7\xe8\xfd\xaf\xd7\xf3\x84\x15\xf7\xad\x12\xf2^\xb7\xecЕ\xe89A\xf9\xa5\x875\xdb+y\u009a\u007f\xc8\x17\x1e\xe6\x94hib\u0082t\xe3\x1e{=\xe1~\xe9\xa1\xcd\xc4k\x9d\xc8\xd4\xca=\xb9$\xbe\xa1\x9f\xb3\x86g\xbc\xee%\xe9l\x1c\xfd%\x045\x9f\xa7\xd3\xfa\xea\xa8\xfd[\xfe\xe4\x9bY\xfe=l\xa9\x91\xcd\xe5MO\xfa\a\xf4\xd9\xefH\xa6\xf5L\xd2Gr\x9a곒\xd5\f\xab\xb5\xe1e\x9f2\xabw\xcf\xf2\x92\x05\xec!*HREk\xb0D\xb9\xc9\xc7d\xb3\xb5\xbdgc\x99J\x96\x91\x80\x14\xa0w\x19\xd9Ӕ\xd3!_I(4\xcc\xd7\xcc\xc8\xc65\t}\x884iH\xe2\xe0\x02̣\x89i\xe9\xb5ͫ}\xe1J\xa4\xe1]K\xb253\xbe\x1a\x91\x9a\x9a=\x9a<\xa2\x0f\x93a\xb3\xf9\xf8J\xeaL\xe4i\x9a\xd8\xfc\xbbE>\x8b\xd5\xc64FO-\xa9>\xad\xa4\x1c\xb3\x1d\xf3\xe76\xb4,\x8d\x0f\xd1Z\xaa\x8ff\xd3\x1e\x8d\xf1\xed\xb3\xffʍ\x9c$\xcd\xc3Rg\xa2҅3c\x99r\x99o\x1fsŲ\xdf\xc9H_D\x93\xd1*\x91\xf4\xd1\xe3\xeb\xf3\xf2\xef{A\xbd\x11\xff\xe1\xe3\x05ykv}hݡ+\xd1\xc7\xe6\x9c6\x97\xed_w\xadɿ\xef\xcdW8%*\xef[:\xc7oX\xbb\x0f\xfb\xb8!\xfcH\xb22\xba\x8cW\xee\x14\x0e,\xf6'--\x0f\xf3\xafg\xbc\xeeeѝM\xb3\xf7\xaa\xe6\xf3\xea_\xbe\xd3\xc9ߔ\x02I\xdd\x12KDsyÓ\xfejb\xb1m,cZo&}\x0f\x94$\xcf-־\xb9\r\xa9tBC\xee\x01\x13\xfa\xfc}_Vj+{\x88\x83\x8b+\xd2\x13\xd2\x16wZ\xb3\xd9\xd9\u07b3\xb1L%[\xfd\xbdRߜ\x16\xfe4\xbb\xd54\xa9\xe3kfd\xe3\x9aD\xaed\x12\xe1[\xc4\x12`\x1e\xedjI\xba\u007f\xe9\xe9\x88J\xe4]K\xb253\xbe\x1aR\x84\xa6f\x8f\x16\xf2o\x97\xac\x98\xcd\xc7WRg\"O\xd3\xc4\xe6\xdf-\xe2Y\xe8\xad#\xf7\xad\x92\xe4C%\x0e\x8f.[\xdfR\u007f\xdajY\xb0\x95ߝQ\x94\xc1\x82\xfe\xed\xb3\xff\xcau\xcaaM\xd2\xcdܴ\x9b\\,S\xae\xd9|\xec\x15\xcb}'#|\x11M\x1c\x94\xc8m\xces\xbf\xf4\x18\x03e\xbe&\xa7\x90QQn>^\xe9\x8c9=\x15\x13c\xcc6.\x04\xc3\x1e\x98\x8d\x86u\xc6:\x16&\xb6%c\xafY\x93\xaf\xe4\x86S\xcc\x18\x98\xd8Ӝ\x01L2%\xdaA\xbe\xe9\x14\xe2@u\xfaU\xa7\x90Ѱi\x934z\xc6\xf8\xc5\x1ac\xb6\xf1\xa0!y\x8bS\bK\xec\u05fb\xc9Ķd\xcc5\x1b\x9ak\xffS\xfc\xdbe\x8c\xa792\xa8\x12\xf9\xa7\x1a3\x85ɤD\xfd\x83M\xb3}a]\xd6)@\xcc\u05cf\xca\x18\xb3\x8d\x03bjYL_\xfd\x98\xaf\xf7\xb1\x12s\x93\xb8V\xb3q\xc5<ͻ\xb4A\x92u\xf2z\xe61\x99\x94\xa8P\xfe\x17\x89\xf5\x9b8\tPg(cf\x8cټ`\xe0\x18)s\xa3\xaa\xb17\x89[5\x1bW\xd8\xd3\x1chQ\x19\x88\x96aF0\x99\x94(\x90\x98:\x05\x85H\x9d\xa1\f\xbf\x17\xe0\xc4\x18\xb3y\xc1\":\a9\xe0\x14u\xfb\xc4\xde$n\xd5l\\\x89\xfd4g\x02\x93I\x89\x00\x003\x15(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\aJ\x04\x00\xf0\x1e(\x11\x00\xc0{\xa0D\x00\x00\xef\x81\x12\x01\x00\xbc\xe7\xff\a\xfd\xa4@\x82&\x8eJ\xdf\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/chan2b.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04Q\x00\x00\x011\b\x03\x00\x00\x00\x83\v\xcdh\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\x03\x06\x02\b\n\x06\x0e\x10\r\x19\x1a\x18!# #$\"$%#%'$&(%'(&()'*+)+-*,-+-.,01/2313425747968:7:;9<>;>@=AB@CEBEGDFHEIKHKLJMOMPROSURUVTVXV,`\xae7]\xad[\\Z8^\xae8`\xaa]^\\:b\xab;b\xacIH=\x88k\x89Z\xcfsS\xdb\xe7\xf4L\xf7\xe9\x99\xd3Ӄ6\r\xcc\xfc>\u007f̜9\xfd;\xa7\xcf\xe9\x9e\xfe\xce\xe9\xd3=\xfd\x1d\xf3\xeb+\x80\x00\x00\x00h\xc6h\xa9\x867\xb4*\a\x00 \xc0\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05xE\xfa\xb5\x02\x80@\x02\x14\x05x\x15Z\xe2\xa7poi\x05\x01\x01\x04(\xca\b\xe6PD\xabV\x881\xb4E\x1cb/\xe8\x9f=\xdb^\xde\xc4^\x06\x04$\x06)ʱzW\xaa\xfe\xf0\xee\xfc\xf38\xd1Q\x95o?t\xa9\xc7-\xa9\xc6\xdfv,\x89I\xee\xf3\x16\xe1A\xe1XNd\xec\x01\xadPL\xdd\xfc\xd0)\x8b\x8fM\xb9\x87\xe2\x85\"\xa1\u05f5\xc2\tG9.\xa2\x1f\x1d\x10\n|\xa3\x1eT>\xb9ȕl]1%dA\xbf{\xae\x1a\x9b\xb9\x8dZ!/AM\xdc\x19\xad\x10\xc2i\x13/b:!4%\xe8\vf\xd0%\xee03\x1f\bX\x8cQ\x94{\xd9߉\x89\x9er\xfb\xa9\xa6\x8b\xd97\x10j\xcf=T\xd7t~wa\x8f\"\xa9\xca'q_\xa7\x9b\x9fx\t\xf0d3WU\x95\xc9m\xad\xaa\xe26\xab\xc6\x1c\xbd\xe8J\x1d\t\x8d\xb0\xef\x9f\xc3q\xf5\xe8\x16.vJ\xb5\bMW9\x17R\x85:\x0ep\xe5]\xca\x05r\xbd\b\x95\x84J\x8a\xf6\xe6\x94\xcc\xf8\x906\xf7\\\x152\x83v\x8b\t\xba2&\xb5\xd7\x06\x11p\xd6|B=\x90\xe2 \xefp\x94\xf2\xc5\x0eǼ\x83§\x92\xb1\xdbYA\xdfq\xc7Y\xd9@\xe0b\x88\xa2\xb4\xe4\xbb\x14\xa5\xdc\xde\"\xfcRg\v#\x96o\xf2\xf1ou\x9b\xfd\xbc\"\xa9\xc6c\xbe\x14\xf5u\xaa/g\xb1u*\n\xea\xe0\x96\xc6#\xd4\xc4u\xb8\xe5K\xf5b\xa4\xa9\xcb6n;\xeaw\x85jMh\xde\x18\xbf֙RT&\xd3\x1a\xe9:'Z\x9d\xca\f\x90Q\x04\xf88\xd2+6!\xd4\xc0_E\xc8\\\x8c?\xae\x0f\xbe\xc5\b\xf2yC\x01\x81\x82\x11\x8ar,\xfb\x98]T\x94\x96\xec\xef\xf1\x1b\xfe\x95.\xcc'9G\x8b\x14I5\xee\xf2\xbe\r\xd5i\xban8\xbf\xf17\xdc\x06\x10\x14\xe1\xef8\x13kC\xee\xe1\xb7-\u070f\xf8\xcd\xe7\x03\xa5\x83\xfbf\xc2S\x86\xa2H\xf5*\xb8\xcei\x9e\xe9\xc8\xc4OuUʮ\f\xd5qu\xce\xd4J-E\xd1\f`\xd0}ש(w\xbb\xf1ǎ\xa9\xf1\x8c \x9f7\x14\x10(\x18\xa1(]OQ\x9e\xa8(\xa7\xec=\xae\xdf\xe6\x96;\xe4\xed\xe4\x01E\x92Io\xacxB\xbf\v\xa1\x9d|T%\xbao\xe2\x97㤩lW\x82y\xc3\x03\x12s75\xd6\x14\x97\xfc\xc0\xbd\xa8\xfc\x8dϋ\b\x9d\xb5\x8a\x1c\xa3\xc7\xe7O\x1f\x17\xb6`\x06BE\xcey\x96p!s\xa6x\xbc\xb4n\xe9R\x16\xcb\f\x0f\x9d\x93\x89\x14\xc5\xe8\xca:\xb8\xa6\xf0|\x97\xa2\xb8b\xe9z\xdbB8.h/^\xda\x13&\xe6\xaeR\xe4R\x95]\x1a\xcbq\xeb\xaf/\x9d\x112\x1f\x9f\xfe\xf5L\xfc\x98,\xa5+\xa3\xd8>\xab\xa8\x9e\xab/\x99\x95\x89\xce8\xa7;V\xe3쁊Ds®\xe78yy\x83\xcd\x14\x9bl\x1bP\x04<1\xf3x\v\"\xb7\xcd\xf78=֖\x93\x13k\xaeV\xaeDT\x14'\xebC\x18\xc2|\f\x14\x05Pb\x84\xa2\b8\x15\xe5PQ}\xa1}\xefI\xf9\xabٿ\xb7\x8a\x91t禣\x92/p8~F\xe8\x81\xc3T\x80\x06\xaen\x8bF\xa8\xb9\xd2\xc4\xc7\x15\xfc\xd9\xf2\x19\x8e\xa85\xaf\xfe\xaa\xa6\x80/v/)IC|\xd0\a%\xdb'\x87\xf7\xe3S\xff\xf8\x03\xe5\xf60\xae\au\x9c\xac\x9a5\xb7\xaa\xaaJ8\xd1\xe9\nR\x9c\x19\xc9łח\xac\x0f\xfe=\xa2\x8bѕ\t\x8a\xb2}\x81SQ\xa4X\xaa^\x84\xceWU\x05o\"u}_\xb5\x9f\xdbTUբ̕+\xeb\xca\xdf;c\xd6\xc4髖r\xf8\xe2\xc9E\xee\x18Y\xac\xa8L\xa6e)\xf7\x06\xf7[n\xf1\x1d\xd4yő\x90\xe4p8n\xe3쌨\xacs\xa5q+\x85\x13\x9b\x9f楟\xa8)\x8b\xe5_(\x03\x1a\x1c\x8e\x98\x02\x9c\xa07_\xefrk\xe9\xbe\x18s\xd9\x06\xf7\xedG+\xcaI\x0f\xf1\xe8\xb9w\xecw\x93\xdcGg@\x80c\xac\xa2\xe4\xdb\xf3.ݪߛ/\xcd\xc1\x9e\xccmc$=\x91\xcfz\xa2\xf1\xf1P\x10M\x92\x16\xe1\a6=NHuے\x85\xa1yo\xf5c\xf7r.i(\xe2rɧ\xfd\xc2Hb2^{\xe6$2Vr\x9dP4q\x87X\xc5\x0esG\x84\xd7#\xf8\x82\x06U\x8c\xaaLP\x94{\xaf\xdf#\x8aBź\x9d\xa8\x848\xb5Cy\xd6\xe3̥*\x13\x8aqo\xb6\x89'\x85\xa8\x84\xbb\xe1\x8ad\x9f\xf5\x1c\x1eǍs^h\x91Nj\xce\xf2\x15\b\xeb\x800\n)\x8d{!$K-}\x8a\x00\x8c\xa8(\xf4\xe6\xab\xe6\x1b\x85P\xbe\x19\xb9C+\xca-\xce}\f\xf9\x960t\x1a\xc4i\x1c\x10\x10\x18\xab(E\xf6v\xe1\xb5#\xf7[g\xf6\xa9l\xe9^\x06*ɀ\xad(\xe9\xae\xe4\x05\xfe&\xbb\x9cK\x1a\x16\xcf\xec\xc1L\x13\xcem\xeeL\x9d\xb1\xc2\xfe}\xbf(j\xae\x83\xb5g,s\x8c\x12\xff[\xf2\xf6\x86\xb2\x18U\x99\xa0(h\xc1V\xa2(T\xec`\x14\x85\xaaL(\x16,m\x84BNJ\xb2\x14\xa5m\xd5\xf8i\xdc\xd4\xe0\x8f\xc8\xe4\xac$\x18i\xef\xf6\xbe\x10\xb0e \xf4к,\xab\xecf_/R\x04`$E\x916_\x8eEx\xb9͟F\xee(\x15e\xbf\xdbҦ\xc3ٳ\xc3`\x8c\x02(0VQ\x8e\x15\x8ao\x87\xc8[\xcfQ\xbbk,O%\x99\xb0\x15EJ\x16\xf3\xdd\xecr.i\x98㜍\xc0\xb7w\xb6e\xbf3\x9b\x9b\"^Q\x96\x0eV\xe7F\xf9\x96;\xe9\xb1\x1cUq\xdf\"\x00\xa00VQ.\xee&\xe7\x1a\xe5\xe4\xc0zZ\x94\xd7\xe2\\L%ٸ)\xca\x1e7E\xa9\xe1U\xee\xc8pI\xc3ҙ\x17\t\xc2O\xfay|Q\xb6m\u007f\b\x99o%\a\xab\xbdI\xba֓ϵ\xd2\xc5\xe2g\x92\xb7\x19\xf1\x8abTeXQ:B\xcb\xc9\x18E\x8e\xa5\xea\xc5xU\x14\xaa2\xa1\xd8\xdb\xd2\xe2\x8e`\xe9\xf66Ee.zȵ\x1eq\xa4E\x04\xa3\xe2!\x1e\xa3\\#\b\x02ѐ#hɓʘRE\x00\xc6SQ\x1eF%?lLH\xf4\xbc\xacL+ʧ\xe3\xdb=\x96õ\x1e\xc0\x1dc\x15\xa5\x8d\\=n'w\x9e\xb4\xee? |E\xfb\xbb\x94I\x15dE1\xe7 \xd4\xf7\a7E\xe9\xb4&\xe1\xe1}V\x96{9\xd77\xfe\bG\xaeP\xffQ\xf8I\xdf$\xcetD\xae \xaf\x91\b\xdd\xc3\xcb\xda&\xbe-\x1c\x9d\xfd\x913\x14\xc5J\xc8H\u007f?W\xa2(FU\x86\x15\x05\xc5/ƊB\xc5R\xf5b\xbc*\nU\x99r4\xb2x\xa6\xeb\x8e\x15Ee2w&\xddq\xa6\x92\x92\x10z\xc4Wce%Wkr\x0e\nۅ\xbf@\x16\xedP\x04`<\x15\xe5\x1a\xbf\x84\xe7\u05f9.\x945}!\xcd\xe0P\x8a\xd2?{\x01\xf2\x04\x14\x05p\xc3\bE\xe9ji\xc9=\xdaB\xc6\x00\xe7\xed\xe7o\xd5\xe5\xe1\xbbc\x9b\xec\xfb\x9bZZZN\xe6+\x92l\xc4k=W\xc9ohb\xdc\xc1\x82D\xdeT\xd1\xfc\xb3ô\xed\xea\xc0\xcdm&|\r\xa86f\xf9\xd7\x17\xb2\xf82\xb7\x82\x173\xb9\xad\xe2}sk\xb9\xc5\xf9\x87\xe2\xb9<,\r\x136\x96\x14Ƌ\x97R6\x06o)|3\x14\x1f\x99\x87C#r\x0f\xcd\x1f+\x8c\xec\xef8o\xb5Ń\x82\xa5Ak\x8b\xd6\x06-E\xcabRe]\xe5܁\x0et4\x84\\\xeb\x91c\xa9z{NUU\x05\xc7W\x1dos]\xeb9\x85u\x82ʕ+\x132\xf1U\x1d\xd7X\xe4Ǡ-Δ\xdcH\x15\n\xa2\x8bO\u007fb\xc6C\x90\x9cyi'Ng\xe0\x99\xd9\x02\u07bc\ufb10\xacU\x04\xf4^u8b\xb69.?C\xf4\xe6\xbb\x16Ss\xce\xf1\xc05DYȹ\xb4\xe3f)_\xdc\xe0Lo\xe5Xw\xee\x9eg\x9d\n\x01\x81\x8c\x11\x8ar>\x1bC&eэC\xb9\a\xce\xe3\xb1\xfa\xe1l\x91\"E\x92I\xb7E\xfc\u007f\t\xb9\xfcy7)Ʋa\x0f\xcf\xef܉\xb3\xfeb\x16^w\nٷSm\x96D\xf7\xa9Ŏ\t\x1c\xc79\xefz?\x12\x196i.\x1ef\xe4\xcd\xfdt\xfa\xb8)\x91\xe2\xb5ٮ\x0f\xc2B\xe6\x8aS\x01\xf8\u007f=\v\xf1=c\xf1Ι\r|\xa7j\u007f\xe6\x9c\xd09\x99\xfd\xee\xc5\\\x95\x1d\x13\xc2\xf2Q\u007fĔ~E,U\xefwAbe٨k\x12I\x8c\xadW\xe4R\x95]\x123\xa5\xa1\xc0\xfaםG+\xd5H6\xddY\x8bb\x92\xc4C\xbff]\xace\r\x1e\x9dT\xac)\xb0\x99\xacI\xb5ʀ\x9f\xa2ĉ\x962Do\xbe+\xe4/<\xa65\xe2DJ\xee\xe4l\xb1\xda\xe7x\xa9\xf9\x19I\x1f\x0f\xf9\xc8}\xad\x98{c߹tO\xeb\xee_ \x900BQ\x80\x97c\xd5x\xd5Q\x9b\xae<2\xefx\xf4\xe2œ\x9f>[\xa4\xfaǩ\xfd\xe3\xe3{\x10\x8b\xc2\xd9\x1c<\xcd\x00\xa0\x00E\x19\xc1l\x9dvO+D\x0fN\x8b7\xad\xa0\xbe\xd8\v*\x11mS\xd9\u007f=\xc6ܻ\xe4}R\x1d\b,@Q\x80kQ\xe2\xe9Ns\x94\xca]=\x00\xe03\xa0(@_\x86yGum\xf5\x0esƀV(\x00h\x00\x8a\x02\xa0\x813\x1b\xac&k\xf2Y\x10\x14\xe0\x95\x01E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd\x00E\x19\x1d\x9cI|\xa4\xf8\xac\xea\x1b\n\x00ÊA\x8a\xe2ݥ\xb4\xe5\xc8^{\xfeI\xc6#\xc2\f\xa0i\x1c7\xdb#\x93r\x13\x1d\f\xbeZ\xa9*\f@}\xe2 _\xe0vC\xab\x9ao(\x00\f+\xc6(\x8aw\x97\xd2{\xd9%\xf5w\xea\x0f\xec}꽒!\xe2T|\xb0G\x1e\xe5&:\x18d+UᄀJ\x03P6\x8a\x1aJ\xa3*\xb0\xcez(\xdfP!\x97\xff\xe4\x19\x1a\x10\x1f\x05\xedR\x14\x1f\x8cE\xcf\xf1\u007f\xf5\xa8\x17\xe3\xe9\x1b\n\x00Í\xb1\x8a\xe2ť\x14\xf5\xe4\x97{\x96\x1bR\xda8;~[\x8f\x15Ea\x16*)\x8a\x9a\x85\xa8\xcc\xe3\xd2\xe4w-\xfc\x87$\xcdR\x14\xca7Tȍ~(\x15t)\x8a\x0fƢ\xa7\xf9\xfb\xae\xa4\x9b\xa2\xb8\xfb\x86\x02\xc0pc\xac\xa2\xb0]J\xbb\xc4\t\x94Kv\x83'R\xces\xe4\x94k#V\x14\x85Y\xa8\xa4(j\x16\xa2\x12\rq\xb6\x9cӎu\xea\x8aB\xfb\x86\xa2\x95\xae\x19\x10$+\x8a\x0fƢWe\x1f.\x85\xa20}C\x01`X1VQ\x98.\xa5\xfdyG\xc9\xc2\xef\x8dV\x94V\x8e8\x95\x92\x99Y\x85Y\xa8\xa4(j\x16\xa2\x12\t\x89xJ5\x95\xad(n\xbe\xa1J=\x90\xc7(\x9aƢϣ\v<\xea\xc50}C\x01`X1VQ\xd8.\xa5{\x89}\xb9\xf1g=(bz\x9b \x1f\xafcEQ\x98\x85J\x8a\xa2j!\xea\u0086\x8f\xf0\xbe\x95\x1e\x8a\xc2\xf2\re+\x8a/Ƣ\xa9\xef\xb9nĥsپ\xa1\x000\xac\x18\xa1(Z.\xa5?f\x97\xd7ߩ\xcf7\xfe\x9eٺ\xd0韮\x0f\v\x1a\x9b[OۘRn\xa2\xaa\x16\xa2.\n\xf8\xd4҂\x95|\xecWW\x15V\xaa,\xdf\xd0\x17?\x90+5\xf7ł\xb2\x01\xa8\x96\xb1\xa8\xc0\xed\xa8?\xbb\xd6G\xe5\xb2}C\x01`X1BQ\xb4\\JQ\xcb7\xf9\xf6\xc2S\xc3ps\xc5\xf5\x85a3>\xca\x1d˭@\xb2Y(\xed&\xaan!꤯8!:.\xad\xe2=S\x92\xc2J\x95\xe5\x1b\xda(\x1a\x84&\x93L\xda\x00T\xc3X\x14\xb3/\xe6\nr\xcfU\xf1\r\x05\x80a\xc5\bE\x01^\x95\x81,S\xb5[\x96\xaao(\x00\f'\xa0(\xa3\x82\x81b\xdb/\x8a\fo\xbe\xa1\x000|\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a2\x829\x14Ѫ\x15b\f\xe0\x89\n\xf8\x8aA\x8a\xe2ݥT\xa0\xce\xfeR\x169CK.~\x80A\xd8\xfc\xa1|\f\xc9\xd7|T\xa5ڲ\xcd\xdcF\xc5\xe7\x15\\P\xbeJ\xa8\aڱ\xf1B\xdfB\xaf{\x8fA\xefd\x8a\xef\xe0\x89\n\xf8\x881\x8a\xe2ݥ\x14ao\xc1\x93y^\xca\x1b\xccQ\xa7\x86\xb4\xe5r_\x1c͍\xe0\x8ey\x0f\u007f\x15\x9e\\N,@l2\x83v+3Z\xaa\xc6mb\x87z\xa2\x1d{\xab\xaa*S˞\xe3;n\xad3\x05\x9e\xa8\x80o\x18\xa2(\x1a.\xa5\x02E\xe5wF\x90\xa2\xfcn\xb13Q\xc7\x1dA\xa8\u007f\xee,\xafѯH\x8a\x8a\xa2\xdc\x18\xbf\x16\xb9\x13쳢\xf8\x14\xfb\xad\x86\xa2\x1c\x9f&)\nx\xa2\x02\xbea\x84\xa2h\xba\x94\xa2\xba\xddO[F\x90\xa2HO\x94%\x8a\x822\xb9\xc1{ \xfb\x8e\x9a\xa2\xc4O\xf5\\\xab\x0f*!\xe1C\xac\x86\xa2\xbc\xc3-\x0e\x95\x14\x05\x8bS\nG\xd3\x12N\xac\vuM\x9f߅\xbdG\xf0\xa9b\xf0\x94VA\x14&\v\xa9\xa7\xf9x\xb4\xf4[bM\x16I\f\xc6Z\xb6\tkǷS\xa6\u007f\\X\x159G\x99K#\xce\xccVq\x17\xe9\xbe)\xba98E\x01OT\xc0\x17\x8cU\x14\xb6Ki+\xa6.\xb7\xb5\xd5\xe8AJSЂ\xa6K\xb3\"\xf0j\xe3g\x92\x9c\x19\xf2\x18\xc5\xde䚙\x9d\x88\x8fXٰ\xb4?\xe4S\x1cT\xa7\xae(l\xac5\xa8!ZT\x14\xda\xdc4%\xae\xf9\xbe\xa5\x18\xa7\x14\x8e\xa6\x1d\xc1\xce\xdb\xdb\xca)\xa3/\xa2\x12D;fG`\xbf\xb4\xb7\xe7(si\x82W\xe1W;\x1e\xa3\xcc$\x19\xb8o\x8an\x0eNQ\xc0\x13\x15\xf0\x05c\x15\x85\xedRJ\x18\x8ey\x94\x8b\xdc\x14\x8e\x8b$\xb2VB\xc6\xf4\xfb\xb9\x12\xfc!2\x12\xa1{ؠTT\x94)\xab.}J\x1b\x96.\x0e\xc37\xc7/ẹ|q\xc3=\x8b\x82R\x14\xda\xdc\x14_=\xbe`\xc2\x13\xb3\nGS\xe14K\x14؎)\x91x\xda\xe9\x03,\x10\xb2vL\xc7\x13\xb1\xfds\xbc)\xca4<\xfd2;R\xd17E7iEi\xdaļ3XV\x14\xf0D\x05|\xc2\bE\xd1r)\x15\xe8o\xa9\xcbmi\xf3Z\xcb\x10p1\xb8\xbc\xa4\xaaEO[\xf7\x8027}r9q\xdb\xd5\xde\xcedk\xed#ڰT\xe0Ǡ-b\xc1\xa3\xaf\xbf\x91Y\xf2\x01g\xc7\xf7\xc1ƟB\x17\xe3\xc7U\xb5\xa0M\xdc;\x99\x9f\x87sa\x9bOѹ4\xc1\xdc\xfcS\xdfDL\xc2\x1aG\xf5MN\xde\xc1\xf7\xccnu\x19\xaf.\xe4&xl\xfe{UU\x13\x16;\xedZ\xc1\x13\x15\xf0\r#\x14Eӥ\x14\xdf\xfa&\xb0\xd7[%C\xc1\xc9\xf1xfd\xdc\\<\x91ҟ9'tN\xa6x\xf4t}\x10\x162\xf7[\x84\U0008595b\x05]\x99\x15\x86\u007f\xd3]\x86\xa5\xc2\xf0*~zț\xe7=\x15%wr\xb6{\x96D\xdf\x12\x9e\xaf\xb4\xf0\xe6jD\x19\x96bֿ\ue738\xb8\xfeδ\x89\x11\x85\xf8\xce\x13\xa1\xb1u\xa1\xc2\xeb\nԿuV\xf0\xe4Ź3\xc7Gҹ4\xb3?}g\xe2ԥ\xe2y\xa5\xdc79\x19\xef\x9c\x18\x12\xef\x0f\xb6O\xe0\\\xd3\xe5\x12\xeb\xc9\xf2\xb1\xe4\x96\x16\xf0D\x05|\xc3\bE\x19\xa9\xb4NX\xd1\xda\xd3\xd3\xf6\xdd\xdba/3:\xea\x18\xec<ʠY5\xde\xe7?\x06\xbe:\x85\x9c\xb7\x8d\x00\x9e\xa8\x80\x8f\x04\xb2\xa2\x14N\x12\x87$\xfda%\x1a\x91,\x86^Q\xd0\xd6i\xca;Z\x86\x8e\xfe\xdcI\xca\x11\x8e\x12\xf0D\x05|%\x90\x15\xe5bP\x1dy\xaf\v\x92\xef\xf8\xf0\x1d\x03\x14\xc58Z\xc2V\xc1=\xf6\x80\x1e\x04\xb2\xa2\xf4LJ\xac\xd8\u007fl\xff\x8a\x90\x97\xf9\x0f\xdc\xf5\xc3ܪSF_\xee\x06\x80\x91N +\nBE\U000e739f:\xff\xa5\x9e\xf54W\x9a\xb4\x04\x00@\"\xb0\x15\x05\x00\x00}\x01E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14e\xd4\x01ޥ\xc0\b\xc6 E\xf1\xeaRڵ\x9b<\xd7 w$\xfe\xbb\xb5n~\xe8\x94\xc5Ǧ\xdc\xf3\xcd\xd4S/\xc0\xbb\x14\x18\xad\x18\xa3(\xde]J۲\xbfo\x11\x18!\xbf\xbc\n\x8e\x84F\xd8\xf7\xcf\xe1\xb8z\x9fL=u\x03\xbcK\x81ъ!\x8a\xa2\xe1Rږ\xadxf\xfc\b\xa2m\xe2[]\xc2hj&G\x86Xڏe\xd5\x0f\xf0.\x05F'F(\x8a\x96K\xe9\xc8U\x94\xb5!\xe4\x01%[\xb8\x1f\xf1\x9b֡\xa6'\xe0]\n\x8cN\x8cP\x14-\x97\xd2\xe1S\x94\xe3\xf3\xa7\x8f\v[0\x03Ѯ\x9f\x1b9\x8eۋ\xf6\n\xaf\xeb\xd1L\xf1xi\xddB\x1e\x1e\"\x1fj\xb2է\\\x03mc\xaa\x00\xbcK\x81\x00\xc2\bEA\x1a.\xa5m\xd9\xe5\a\xb2\xf7\x1e7\xfe\xab\xf9\x1d\x17\u007f\xa0\xdc\x1e\xc6\xf5Ю\x9f\xad\x8b#\x8e\xb7\xa3\xf6\x93s\x17\xdf\xeb\n\xdaJ\x87K\x87\x9al\xf5I\xd5@٘*\x01\xefR \x800VQ\xd8.\xa5m\xd987\u007f\xbfᒒ9\x197$\x13?\x1c\x92r\xfd\xdc=\x9b,\xfcm\x1ej\"v\x83\x12\xaeC\x8d\xb2\xfa\xa4j\xa0lL\x95\x80w)\x10@\x18\xab(L\x97R\xd4_\x87\xb5\xa4k\xb7\xd6\x17Yw\xeeL\x9d\xb1\xc2\xfe}?\xd17\xd9\xf5\xf3RPW\xc7\ued9e\xe0K\xa8g,s\x8cBY}R5\xc86\xa6l\xc0\xbb\x14\b\x04\x8cU\x14\xa6K\xa9\x8b\xe3\x85\xc8hڲߙ\xcdMٌ\x14\xae\x9f]c/m\xe5\xfe\xa9>H\x909\xe7\xe1Li\xeey\xfdХ\x9bT{U\x9ch\xbf㎳\xb2\rR\x14\r\x97R*\xd7h~\xb7X+B\x83hJQV\xa7\xb2\x92\x14\xec\\\x8d\x80N>}\x9b0,\xe0;=\x17\x89lX7 \x1c\xe4\xdb^MQ\xee\x9ar\xc8{3_#\xbc\xd6\xf2\xcd^\xa3QA\xb4\xf8\xde\xe0MQ\x10Z\xb6\x03\xbf\xde\xf6QQd\a\xd6\xc7|)\xeaS\xed\xb0\x1b,\xe3V&\xa4o}k\x12\xb4\xe2\x06\xcb\xfb\x15\xe4\xad\xecC\x8f%\xd2(Ks\xcf\xeb@k\xa4x\xea\xa7G7\xe9\xf6\xb2\x9dhU\x9fFl\x84\xa2h\xb9\x94R\xb9F\x13\xfe\x8eV\x84\x06\xb4\xa2\xacLe%)ع\x1a\x01\x9d|\xad\xf9\xb97EYF\xb4\xa0\x91?\xad\x16\xe0\v\x19VѴp(\x14\xa5\xb7\xd4ۀGFv`\xbd\xcb\x0f\xe2t\x81e\xdc\xcaD\xec[)\xff\\+p\x90|\xb6\x87\xbc\xe5|\xa6\x1e\xa2\xb9\xe7u\xa0\x8e\xab#\xefzt\x93n/ۉvX\x15E˥\x94\xca5\x94\"\xe7\x13\x10\xc3\xf1\a\xdan\x94ƛǨ@tή\x04\xf3\x86\a\b\x9dq\xce\x19\xacV$w\xf2\xa6\xd2\f뢔\xbb\x8a\\\x85\xf3\xe8\xe5\r6Sl\xb2m@\x19 \xd3\xc9\xdf_y©(R\xb1}B\\%\x12\x1f\x1b\x99fŇ\xff\xc09E@\xa3\x89\xe7\xf7\xdcM_\x16\x93\xfc\xa2\x9aw͍T\xb3\x03\x84r\xbd\x16q\x88B+\x8al\x9a*\xf4\xa2\xcc\xd9M\xe1\\'\xcdjI\xdd\xe6\xae(\xeczEE!5DU:\xa7_\x14\x95\xa1\xbb\xa9\xb1\xa6\xb8d\x92v9\xb0\xf6Ɗ\xdba\xd7\xe0\x8a]\x1a\xcbq\xeb\xaf/\x9d\x112\xbf\x876\x9a\xa5\x10\xfb\x96f\xc5i\xd6\x0e\xa0v\x96\x10\xf0\xf5j\xf3\xca\xd2\x01\xb7\x15K\xb1t\r\xc4k\t\xa1\xd4\x1cE矘y\xdcz\xa4\xb6\xe7\x95;\x80\x01\xd5!D[\xe0v|<{\xc2\xdcSӔ\xd3\x18\xdbg\x15\xd5s\xf5%\xb32U\xbbٙ\xb3ܜt\xd5v\x81ި\xbe}\x11\x99N\xb4džSQ\x90\x86K\xa9G\xaeAt\x9c\xac\x9a5\xb7\xaa\xaa\n\x9fm\xd1v\xa3\n\xbcz\x8c\n\x8a\xc2'T\x9eY\"\xfc:u^q$$9\x1c\x8eۊds\xa5\x89\xb7\x15\x14\xd8\xcc\xcdt.\xed<\xfaӼ\xf4\x135e\xb1\xfc\ve\x80\x8c\xa0(\xa5\xc9NE\x91\x8a=JK\xbc\xdc)\x94X\x93\xf6\vzh\x8bJ.\xf8\xa1\x17)\xea\xed\xae\xae\xb4%Xl\xbb\xd2\xe6=\xec\xbcl\xd9\xf7\b=\xdag\x11J0\x03\x84r7y\x87\xb8\xb6f\xfe\\ww\xf7\x05\xac(\xb2i*\xeeE\\\xc1\x9f-\xf8G\xf8\xae%\xa1\xe2\xcc\x06\xde]Q\xd8\xf5.\xcb\xe8\xee.ND\xce\t'q\xfa\x85\xae\f՚W\u007fUS@f6e\a֛\x8eJ\xbe\xc0\xe1\xf8ypź\xf2\xf7Θ5q\xfa\xaa\xa5\\\x13e4\x8b(\x84\xbe=\xbf\x9d\xc3\x17(\xdaK\xed\x00jg!\x94\x1e\xbd\xe7ܞ\xe8t\xe5\x8a\xe5X\xba\x86\xb2\xd5\xe8\xaa\xed*ZY\xa6\xec|\x83\xc3\x11C\xd6\xc5\xde\xf3\xca\x1d\xc0\x80\xea\x10m\x81\xdb63ls\xc9\n\x8e\xcbD4-K\xb97\xb8\xdfr\x8b\xef\xa8u\xf3ɻ\x8b\x8a/\xec\xe4\xf9\xaf\xe9\x8d\xea\xdb\x17\xd1Ӊ\xb6\xe7ޱ\xdfMR\x19\x19\x1a\xab(l\x97R\x8f\\\xe3\x90\xcez(\xbbQ%\xde=FQt\xdc߄\xdd\x12G\xd2̳\x9e\xe8e\u0090\xff\x89-Q\x91K9\x8f\x96\xc6\xe1\xafg\xa9\xa5ϭ\x06\tAQ~\x89\xf9\x85(\nU\xac\x82\xfc\u0088\xa7\xf0\x8f\v\xfe`\xe2-\xd5\xc8\xcd\xd1t%\xff\xc934\x80O82\xf0\x8fhZ\x86z\x00:\xc7\xffU\\[\xb3\xf3\xf7\xa9Yi\x9a\x1am\x11~\xa2\xd3q7\u05fc'\xfc\xa0\xf5}\xe8\xa6(*\xf5.\xc3U\x91\x1fK\xf1\xf4P}\x11\x99N\xb4U\x9e\xbe+\"\xc6*\nۥT\x91k,DQ\xecM\n\xbb\xd1A\xe1\xa1(\x15\x0f\x95\xc9\xe8,\xfc\xb9\x8c\u007fF\xe7RΣ\r9\xc2.|R\x19S\xeaV\x83\x04V\x94\xe7\xe6\x1aq\x8c\"\x1b\x96&T\xae[\x93p\x1a\x9f\xfbX\xc9\x1aP\xce{n\x8e\xa6Է\"+\x05}F\xa2\xd4\x02\x9e\xbb\xaeYQ\x8aB\x9b\xa6J\xdd\xfc\x1bO\x1a\x9a\xee\xa6(*\xf5J3\xb3\xce\x1a\xf6\xb8IC\rOݧ!9\xb0z(\x8a\xaf\xc5\xc2\xdfv\xa5d\xa3Y\n\xb1o\x16\xfcc\xad\xb2\x03䝕\xf1.\x99}]\xee\x03\xcf]\x00\x00 \x00IDAT\x86\x87'\xf2\x8a\xa9Xž\xf8ʊ\xac\xc5\uf455(\x8eE\xa5\xa2\xb8\xedy\xf6\x0f\x88\x02\xa9C\xb2\x05n\u007fȧ8\xa3\xce\xfd\xac\xa7\x87\\\xeb\xc1clf7\xfb̤)\u007f\x91\x15\x85lT\x9f\xbe\x88L'\xdaa\xbdփ4\\J\xe9\\\x83\x89\x8cD\xe8\x1e\xb6\x17\xa5\xecF\x95x\xf7\x18U(JR\x12B\x8f\xc4\xdbB\xe4d\xf4\x12A\n:\xdfMR\xe4RΣ\x05\xe2\xcd\x1aI;\xdcj\x90V\x8c\x15\x05\xa5\xa7aE\xa1\rKӲL\x17\xf8\x9dx\xc7\xc7Z\xf1׳\x0f\u007f\t\x14\x8e\xa6\xd4\xf7\xf5\x87\x98\x9fc~\xc0\t\xb5\x00\x94\xfa\x9ex\xef\x04\xa5(\xb4i\xaa\xdc\xcdD\x9b\xb0\xb6\xdb1n\x8a\xa2R/\xa5(fᄢ\xef\x0fn\xd2\xd0iM£\xec,Q\x13]\x0e\xac\xb4\xa2\f\xaa\x98<┍f)ľ\xc5e5\x16\xa8\xed\x00yg\x9d#3\x1d\x95\xf8T\x92Z1\x15K\xf789\xf13\xf4Y\xe2\x06\xb2\x12\xb6\xa2\xb0\xf6\xbc2\x96i\b+u\x88\xb2\xc0]\x1c\x86o;Y\xea1\x8f\x82\xeeL\x12/C\xb2\xbb\x99\x1a+췁t\xa2(\xf2F\xf5\xe5\x8b\xc8v\xa2\x1dVE\xd1r)\xa5r\x8dfc\xf0\x96\xc27C\xef(\xedF\x15x\xf5\x18\xfd\xd9a\xdavu\xe0\xe66\x13\xbe0!|\xe9\x8aO\u007fb&\xc2.'\xa3\xf9\xd5\xd5e\t\x96\xbf*se\xe7\xd1\x02\u07bc\ufb10\xacU\x06H+\xee\xae\xe1Ot\xa2Z3\xb9\xd6C\x19\x96\x1e4[\xfa\x12\xc876\x96\xb7\xee\xbb \x14\xbbM\a\xbc\xf8\x81\xcc\xd7\xdf\x17\xdb\xd9g\xdd`\x15\x15C%\x00ݎ\xfa3~\xa3\uf655MS\xe9n6\x9bm\x05{\x16E\x99*\x9a\xd1C|\xcfl\xb1á\xe8\x10Uo\xf7ո\xe4+\xae\xdbh\x12\xe3\x0e\x16$\xf2B1\xc56\xab\x8dY\xfe\xf5\x85,\xe7-\xff.\aV\xf1Z\xcfվ\xc1\x15\xeb9E\xae\xdc5\x91<\xcahV\xa6\x91\x1c3뒷\xbd\xaf\xb6\x03\xa8\x9d\x95\x16\x95s6'*M\xb9\x8f\xe9Xj_d\xcd;\x88\xbe\x9a'\xe8\x1b\xbdQ{\xaf:\x1c1\xdb\x1c\x97\xc9\xc4+cϻ\xed\x00OCXE\x87d\vܖ)\xd33\x0f\xbc\x15\xec\xa9(.\xd8\xdd\xfc\xd9j+=\x91\x12C\x14Eڨ>}\x11\xd9N\xb4\xe7Y\xa7B\x18#\x14EӥT\xce5\x9a\xae\x0f\xc2B\xe6\xe2\x13B\x85\xdd(\x8d7\x8fQ\xb4S8\x055\xfd\xc5,\xbc\xee\x14>ug-\x8aIj \v\xe4d\xf4\xae\f\x8b5\xfdg\xb7\\\xd9y\xb4bM\x81\xcddM\xaau\x0fp\xad\xb8v\x1e\xbe\x8f\xa4/QT\x04ٰ\xb4A\x18\xd6\x1e4\xe3\xd8?\x94\xe5,7ǥ\xdcV\xd4\xdb\x18EΏ\x93źPqt\xb13\xa5\x12\x80\xf6\xc5\xe0\xff\x05\xd1\xff\xeb\x91MS\x15ݼ\x9b\xb2hYN\x85IH\xa6;O\xc2SU\xea%\xff\xeb\xa9t\xd6\u007f7)Ʋa\x8fP\x83r\x9b\xddN\xb5Y\x12]\xf7\xe6\x89\x0e\xac\xdd\x16R\x83\xe9\xf6\xe0\x8a]\n\"3\r\xa2\xfe\xd3F\xb3.\xf0}9_\t\rL\x88=\x8bTv\x00\xb5\xb3\xfaJ?4\u007fXڧ\xdcNJ\x9d%\xef\x8bs\xe6FAi\xcf(7\xeaObZ\x94=ƞw\xdb\x01\x9e\x86\xb0\x8a\x0eQ\x16\xb8\xad\xf1\xd3C\xde<\xaf\xaa(*\xddD\x8f3l1\x9f4\x10E\x916*R\xd9\x0et{U\x9ch\xef\x8d}\xe7ҽ~\xe4\x89\x11\x8a\x12\xd0\xd07Վd\x06\xb2L\xd5Z1C\xceK:\xb0\xbed1O\x86sgy7\x84u\xa7C}\x8c\xe2\rqfv0\xa8:\xd1\x16\xce\xe6\xe0i\x06\xc3\xc1p~I\a\xc5@\xb1\xed\x17\xad\x98!\xe7%\x1dX_\xb2\x98\a÷\xb34\fa=0JQ\xbc9\xd1\u07bb\xd4\xc2\xc8\x05E\x19b\x86\xefK\n\f\x9a\xe1\xdbY\x835\x845JQ\x06\x0f(ʐ\xf2\x80L\xebiE\x01#\x82Q\xb4\xb3\xae\x1f\xe6V\x9db\xcdbx\xe7\xee\x05~\xd7\x0f}hH\x01E\x19Rȴ\xde}\xad(`D0\x8av\xd6\\\x8e\xe3\xc6^\u05ca\xf2`\r\xee\xe1]\xad\xa8W\x03\x14\x05\x00\x00\xfd\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd0HQ\xbc\xb9\x94\xf6\xe49\x1fl\xb0W\xbd\xbc\u007f\xa1\xb3\x91$\x00\x8c\x1c\x8cQ\x14\xaf.\xa5]\xd9\x17[\x04\xceg+\x9f3쇸\xbc\x1f_\xc6H\xf2\xd9\xcf\xea\xcb^\xd1k\x15\x00\xf4\xc3\x10E\xd1p)\xad{*\xa4\x9e\xe6\xa9<\x13ʏ\x90\xbc\x1f\am$\xd9WfY\xa7\xbe\xf4\x95\xbdV\x01@/\x8cP\x14-\x97RBɁ\xe1x\x86\x9b\xb1\xacT(\xca \x8c$\x1bW\xf3)\x0f\xd4\x17\xbf\xb2\xd7*\x00\xe8\x85\x11\x8a\xa2\xe5R\x8a\xa9\xcf\xd6\xe7\x999#\x83\xc7鱶\x9c\x9cXs5\xe5vI{?j\x19I*\xe9\xdc\x15e;\x8bԠ\xbcV)_\xcb\x15\\P\x1ej\x1aω\x8f\x83\x97-.\x01`h1BQ\x90\x86K)&\xbf\x9cUl\x94һ\xdcZ\xba/\xc6\\\xb6\xa1\x98r\xbb\xa4\xbd\x1f\xb5\x8c$i\x06N[M9\xe2\xf3\x9f\xbb\xef\x8bPn5\n\xafU\xcaײ\xa5j\xdc&A\xc1\xe3\x83q\x88lq\t\x00C\x8c\xb1\x8a\xc2v)\x15h\xcaV\x1a\x94\x8fn\xaa\xf9F|N\x83}\xf9h\xb7K\xfa\xac\a\xe3\xcdHRf'\xbf\xb2ٙLr\x0es\xd6 %\xd4Y\x8f\xe4k\x89\x82\x05EA\x9b\xb0\xa2P\x16\x97\x000\xc4\x18\xab(l\x97R\x81r\x9d\x1e=<2ȱ\b/\xb7\x89\x8b\x1b\xedvI+\x8a\x96\x91\xa4LE\xf4\xa2\n\xe7\x83\xc5n\x9f\x11q\xf3ZW(\x8a\xcbגR\x14\xd9\xe2\x12\x00\x86\x1ac\x15\x85\xedR*\xb0{\x18ܿ\x86\x8e\xe2y\x8f\xf1\xe8\x04\x0f-h\xb7K\xb7\x99Y\xafF\x92\x14w7\xf0\x89\xcd\xc8\x1b\xb4\xa2\x84\xbbR\xb2\xa2\xc8\x16\x97\x000\xd4\x18\xab(l\x97R|=\xd9\xf5\xcb\xea\x17<\x8cJ~ؘ\x90\x88\x1f\xe8I\xbb]\xcaޏ\xdaF\x924\xd4L\n\x1b\xc9k\x956\xea$\x8a\xb2\x1e+\x8alq\t\x00C\x8d\xb1\x8a\xc2v)\xc5\xd3(\x83\xf1*\x19\xf1\\\xe3\x97\xf0\xfc:r\xb9\x97v\xbb\x94\xbd\x1f\xb5\x8d$\x95t\ue2b2\xd6x\xe4JH^\xab\xf4p%\xf4ca\xebF`E\xa1,.\x01`\x881BQ4]JQ}\xf6\xa0\xac\x05F:\xd7bj\xce9\x1e\x88\xcf\x1c\x97\xdc.\x11\xe5\xfd\xa8m$\xe9N\xf3\x1a\xdaO\xd7\r\x97ת\xc2\xd7r\xee\xe4/>\x8f\xe0\xc6\xe6\xd6\xd3\x16\x97\x000\xc4\x18\xa1(\xda.\xa5M\a\xbcV0ڸb\xc23#\xa65x\xf6Cr\xbbD\xb2\xf7\xa3\x0fF\x92\x83\xc2嵪\xf0\xb5\xbc\x1e\x192q\xfe\x1f9\x0e\x1bK\xc9\x16\x97\x000\xb4\x18\xa1(\x81\xc6#\xf3\x8eG/^<\xf9\xe9\xb3EO\xb4B\x19\x18`\xd2\x04\x00C\x06(\x8a\xfe\x9c\xb6\x88C\x92\xbeX\xf7\xbb_}\x01\x14\x05\x18̀\xa2\xe8ϵ(\xf1bos\xd4\xcb<\xaf\x00\x14\x05\x18̀\xa2\xe8O_\x86yGum\xf5\x0es\xc6KX^\x1aa$\t\x00C\x06(\xca\x100pf\x83\xd5dM>\xfb\x12\x82b\x88\x91$\x00\f\x19\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xa0(\xa3\x99C\x11#\xef)Jm\x11\x87\xb4B\x8c\xe7L\xe2\xa3\x11\xda2\xbf\xc3 E\xf1\xe6R\x8a\x1f\xe7~\xc0~\xe0$\xb8?\f\x96\xcd\xdcF\xf2\u07bc\xc1lM\xab\xb5>B\xdbx\x9e7\xfbv\xc3m\xed<>\xb1\x0f\x9d\xe0yoΆ5qg\\ɿ\xedX\x12\x93\xdc\xe7\x9e\xcbbs\xd0\x17\xacl\x83\x1b\xa9\xe0 _\x80\xef_Vi\x19\xa0'\xc6(\x8aW\x97RԖWX\u007f\xab\xfe@\x9e_=\xc7\xcd\x002\x83v\x93\xf7\x1a\xf3\x1f\xca*?\xe4\xf9\xff\x8b\x1e8\x1c\xa5\xfcU\x8db\"\xdd5|\x8c\x03u\x9e\xe0k\x14^\x1d\xb2\x95*\xe6\xac\xf9\x84+\xf9I\xdc\xd7\xe9\xe6'\xee\xb9LJ\xc6n\xf7\xcc4\xba\x914\xa5Q\x15b\x82\xd92@W\fQ\x14\r\x97\xd2*\xe2\xb6ѓ\u007f\xdc[\x1d\x80;7Ư%\xef\x8f-)\xc2\xf1\xd6\xf9\x9ep\xb0\"\xec\xd3\xe1\xdb\xc1\x8a:\xf9\xf4m\b\xdd\xe7\xdd\x1f`\xbb\x9a~X\x9c\xf4{\xff\x98/E}\xaeP\xad?2\xae\x0f\xbe\xe5\x9ee|#e\xee\x9ar\\IF\xcb\x00}1BQ\xb4\\J\xcb\xc5'\xe4\x1f\xf2'\x130\x03\x88\x9f*\x9e'昉\xc9z1OL7\x06q\xb0֚\x9f3\x0e֕\xcc\xc7O\xde彞\xe9(\xe9\x98\xeaa\xe41\x9c\x8d̰Jn\xb0\x8c\x96\x01\xfab\x84\xa2h\xb9\x94\xb6\xe5\x1dk\xedi\xad\xca\x1by\xb3\x8c/͍\xb7\xc3\xc6MY\xd0▤ɝb\xc7o\xb7&:\xad/&\xd2\x16h\x8d&\x9e\xdfs7}YL\xf2\x8b}<\xcfW\xa2J\xe1u\x9f\xb2\x82\x9e\x89\x1f\x8b\x89\xf72\xc8\xdb\xe3brf \x1d\xac\x92=*B\x977\xd8L\xb1\xc96\xf2T~\xc9\x13\xb5\x93\xbf\xbf\xf2\x84\xf3`eZ\xa9>1\xf3|\x14~\xee6\xea\x8d\x15sw)r\xa9ʨ\xf6\x92\x05\xebCܟ\x1blh#\xcf\no{P\x81\xf0\x8a\x9f\n\xdek\x91\x86(\xac\x96\x01\xfab\x84\xa2 -\x97Ү\xf2\xec\xec\xec#~\xb4\xab\x8fM\b\xdf\\\xbe\x91۪L*x\x8b\x9b\x8f\xdfzvo\x17ɥ\x8d仫+m\t\x16ۮ\xb4y\x0f\x1f\xa5%^\xeeD\x9dW֤\xfd\xa2\xac\xe0\"wL\x8c\x8d*\xa6\xb3\xa5\x83U\xb2GE?\xcdK?QS\x16\xcb\xe3\xa3]\xf6D\x15\x0e\xd6\xd2d\xe7\xc1ʴRE\r\x0eG\f1\xfc@7\x1d\x95|\x81\xc3\xf1\xb32W\xae\x8cj/Yp\x92;\x85\x14\x18\xdb\xc8\xe7Wl;\x1e\xa1G\xfb,\x97q\xb9\x9b\xbcC^\xb3G\xcb\x00\x9d1VQ\xd8.\xa5=\xe5\xf9\xf5-\xf5\xf9\xe5\xf415\xaa\xe9\x9a>\xbf\vO\f\xb5)\x92J\x9a>\xbfA\xde\xef5\x89\xb8\x1bɯ\xe4?y\x86\x06\x9e!T\xb1\x9c|~\xbf\xc2-\xa0\x84\x13+\xb8/\x1a\x87\xb9p\x1d\xac\x94=ji\x1c>LK\xf1\xb3*)OT\xe1`\xfd%\xe6\x17r\xb0\xb2\xadT1.\xedP\x9eP8s\xa9ʨ\xf6bnqn\x8f\"7\xba\x91\x05x\xfc\x92.\x8e\x8b\xce\xf1\u007f\x95c=Z\x06茱\x8a\xc2v)=\x9e\x8f\x87'=\xf9'U\n\x8f:J\xb8\xef\x19I&M\x9c\v7\x0f\xb4\x95\xd1\xe2\xcf=j\x8c\xea~^\xf1\xe4Et\xa3[\xc9Bg\x89^\x13\xf3矲G}h]\x96Uv\xb3\xaf\x17ў\xa8\xf8`E\xc9\xc5\xe4`e[\xa9b\xbc*\nU\x19\xd5^\xcc-w\x8fe\xa3\x1b\xf9`\xde_P\xb7\xa5\x86\xa4O\vuHx\xb4\f\xd0\x19c\x15\x85\xe9R\xdao\x17\x0f\xba\xef\xed\xfd\xac\xa2\xa3\x90\xad\\\x17#ɦ\xaaH\xa4\xca-\u007f\xe5jg\xa2\xdb\xd4X\xcc\xef\xbb\x1d\xe5v\xfd\x14\x9dr\x8dߝS\x14\xbd5\xe4\xcdu\xb0\xd2\xf6\xa8O\xcaR\x13\xf8%\a\ahOTr\xb0\x9eXI\x0eV\xb6\x95*ƫ\xa2P\x95Q\xed\xc5|˹\xff:\x18\xdd\xc8\xe4\x1ct\xc1\xd2K\x92W\xe9i`ϖ\x01\xfab\xac\xa20]J]\x8ar\xd1o\x14\xa5\x9c\xbb\xc8H\x0e\x0e\xf9\x98I\xa8\\\xb7&\xe1\xf4r\xf7\x80\x8e`\xf1\xf66\x94\x13CfX\xaa\xf9G\xf8M\xfa\xf9\x97\xedQ\x1br\x84\xe4\x93ʘR\xda\x13\x95\x1c\xac\xcf\xcd5\xe4\xe7\x9fi\xa5\x8a\xd1\x18\xa3H\x95\xb9\x1d㟎oGJ\x8cn\xe4\x99E\xbdΓ\x1e\xf4<ڵ\x1c\xb1Z\x06英\x8a\xc2v)\xfd\x86\x9c\xf5t\xe5\u007f㭆\xd1DǔH<'\xf4\xc1*ERI\xd3\x177<\vR\xc8GhZ\x96\xe9\x02\xbf\xd3\xf9\x91*\xb6x\xa6\xa8\xc0\x8f-\x9f\t?\xc6}I\xcb\xc8'\xd7\xc1J٣\x16\x88s\x0fI;\x10퉊\x0fV\x94\x9e\x86\x0fV\xb6\x95*ƫ\xa2P\x95)\x15\xa5\u007f\xf6\x02W\xd2\xd5^\xa3\x1b\xd9\x1b{f\x91\xeb>\xdb\xd4\xf7\xa4;V\xa8\x96\x01C\x83\x11\x8a\xa2\xe5Rڵ?\xbf\xeeN]\xfe~\xff\xb9\xd8s\xf4\xf572K>\xe0\xecʤ\x82\x85\x9c\x97\xef\xf6\x8b\x1f\xc8Ռ\xfb\xe4\xc3A\xb3\xa5/\xc1u\xd4P\xc5~\f\xda\"&.\x98\x13+\xcel0]A\xe8!\xbe\x1d\xb5\xd8\xe1\xc0?\u07b2=j\x01o\xdew\xf6t\x06\x8f\x8f0\xc9\x13\xb5\xbb\x86?щj\xcd\xe42\n\xd3J\xb5\xf7\xaa\xc3\x11\xb3\xcdq\xf9\x99\xeb2\xcaU|`R\xb9re\x8a\xf6\xe2S=i`&\xb5\xd7\xd0F\xe2:\u07b5\xbcp\xb6\xe1vԟ]\xcd\xd9\xfa\xb2CF\xc0W\x8cP\x14M\x97Ҟo\x0f\xe4\x16~\xeb7\x97z\x04\xae\xbf3mbD\xa1{\x92&wr\xb6G\x9eDc\x14\x99HH&\x1f\x1a,\xfb\x04Ui\xf0,\xb6\xfeu\xe7\x9c@\xf3\x06\U000d253f\b\x89t\xe7\f\x04\x1e/\xc8\xf6\xa8\x15k\nl&k\x92\xf8\x93\xed\xf2D\xad\x9d\x87\xef\xd6\xe8K\xb4\xf6)be+U\xf4\x93\xd8\b\xbe\fu[H\xc2t[\x91KU\xa6h/:\x1e\xf2\x91\xd4F\xb9\xbdF6R\xe06\x9f!5b_\xcc\x151A\xb7\f\x18\x1a\x8cP\x14`\x88X5>_+d\x18\xd8?>~\x04\xfc8tF\xcb\u007f.\x1c\xc82\x91\x13\xa4\x91\xd12?\a\x14e4\xb3u\x9a\xfbm,\xc3O\xdb\xd4\x11\xf1\a\xdf\xea\xd8\x17\xf2\x87\x81b\xdb/#\xa6e~\x0e(\n\xe0\u007f\x14\xd4\x0e|\xe2\xf6\xa7\x05\xc0 @Q\x00\xbf\xe39\xbfz\xa7\xd5\xf3\xa1\x06\x80\x11\x80\xa2\x00\xfe\xc7>\xf3\xba\xdbZ1\xc0\xd0\x00\x8a\x02\x00\x80~\x80\xa2\xe8ϗL\xb4J\x01\x80?\x00\x8a\xa2?\xa0(@\xe0\x02\x8a\xa2?\xa0(@\xe0\x02\x8a\xa2?\xa0(@\xe0\x02\x8a\xa2?\xa0(@\xe0\x02\x8a\xa2?\xa0(@\xe0\x02\x8a\xa2?\xa0(@\xe0\x02\x8a\xa2?\xa0(@\xe0b\x90\xa2xw)\xed\xbfTh/\x94\"F=\xa0(@\xe0b\x8c\xa2xw)\xed/ʽ\xd8t\x9e<\xd8\xcd/piȟ\xfe\x0f(\n\x10h\x18\xa2(\x1a.\xa5\xdf۱\xf7\u05cfv\u007f\xb1RwJ\xc8?\xff\xe7\xff\x06\x8a\x02\x04\x1aF(\x8a\x96Ki\xc9\x11\x92\xcc\xf3\x97A\n\x11\x90\u007f\xfd\xaf\xfc\u007f\x871\n\x10p\x18\xa1(Z.\xa5\x85\xa2\xb3ġ\x12f\xe9ч \x1f\u007f\xfa\x1f\xa6\xff\xf2/_*\x10\x16\xdcM\x8d5\xc5%?@\xca$\x00\xf8\x11F(\n\xd2p)=\x99\x87\xe7g\xbbr\xfd\xc5\xed\xed\xcb/\xff忘\xfe矈\x8e\xfc\xe9\xff\x88\xfcIP\x94Z\xf3\xea\xafj\nx\xec\x85E%\x01\xc0\x9f0VQ\xd8.\xa5\x1d\xbb\x8bZ\xbbZ\x0ee\x8fć\xa6\xbe\f_\xfe\x0f\xfe\xbf\xfe\xabsd\xf2\x8f\xce\xc74\xff㗨ۖ܍Po\xf5cD'\x01\xc0\xaf0VQ\xd8.\xa5\xa8\xad(;\xdb~\xaa\xe8\x10\xbb\xec\xa8\xe3\xcb\u007f6\xfd\xe7\u007fv*\xca\xff\xfe\x17\x91\xff\xfd%\xba\xc0\xdftEPI\x00\xf0+\x8cU\x14\xa6K)\xa6\xab\xad\x1f\xe5\xf9\x8b\u007f\xa4\xa0#\xffM\x1e\xa5H\xf3(żd4J%\x01\xc0\xaf0VQ\x98.\xa5\x82\xb4\xe0\x97\xeb\xd9-̢\xa3\x0f\xac\x1f\xf2L\x8a\xa4(5\xfc5W\x04\x95\x04\x00\xbf\xc2XEa\xbb\x94\xd6g\xb7\n\x8b\xf6\x1e\xf3Z\xc3(\x82\b\b\xbe\xda\xf3\xbf\x14\x8a\xd2iM\xc2\xd6\xdeYY\x88N\x02\x80_a\x84\xa2h\xb9\x94\xfe\x98\xfdݝ\xef\xf3\x8a\x9ej\xd53ZpJȿ\xfe\xe3\u007fW(\n\xaa\x8dY\xfe\xf5\x85,\xe2\xc6G%\x01\xc0\x9f0BQ4]J/\xe6\xe7\x16]\xec\xf7^\xc9(\xe2K&\u0082۩6K\xe2i\x12C%\x01\xc0\x8f0BQ\x02\rUE\x01\x00\xbf\a\x14E\u007f@Q\x80\xc0\x05\x14E\u007f@Q\x80\xc0\x05\x14E\u007f@Q\x80\xc0\x05\x14E\u007f@Q\x80\xc0\x05\x14E\u007f@Q\x80\xc0\x05\x14E\u007f@Q\x80\xc0\x05\x14\x05\x00\x00\xfd\x00E\x01\x00@?@Q\x00\x00\xd0\x0fP\x14\x00\x00\xf4\x03\x14\x05\x00\x00\xfd\x00E\x01\x00#h\xf5\x9f\xbf\xc2z\x05\x14\x05\x00\f\xa0gҍ\xa7\x01\xa1)\x06)\nå\xb4\xe5\xc8^{\xfeI\xf2\x88\x03\xd4r(\xf7\x88\xbf<\xc1\xcd7\x9a7\x98\xadi\xb5\xd6Gh\x1b\xcf\xf3\xe6\xbbZ\xe1\xc0h\xe7\xe9\x98\t\xdfw\x04\x82\xa4\x18\xa3(\f\x97\xd2{\xd9%\xf5w\xea\x0f\xec\xc5\xcfY\xbac\xaf\xbaQe\xbf\xe3\xb5\n\xff\xa2\xc6\xfc\x87\xb2\xca\x0fy\xfe\xff\xa2\a\x0eG)\u007fU+^\x8dg?\xab/;zQ}\x19`4\xedc\xc6L\xbc\xe47\x0f\x15\xf3\x82!\x8a\xc2r)\xbd\x91\x8d\x15\xe4)N\xf6\xef\xc5Ϭ>\xb97\x10\x14\\\xe4\xb1%\xa5\x1b\xa1\xce\xf7\x04E\x11hxYE\xe9+\xb3\xacS_\xfa\xbb\xc5\xea\xcb\x00\xa3i\x1f\x13\xff\x9b\xb0\xfa\x00\x90\x14#\x14\x85\xe9R\x8a\xc8\xc6mŏ\xab\xae\xb7cK\xb0\xa7҃\xf1\xfd\x9f\x1c3\x19[\x14\xf3\xb7\xf1\xdb\xcb*J\xe3j>ŋ+a\xf8;\xea\xcb\x00\xa3i\x1fSx\xfe7S\xebe\xf3;\u007f\xc5\bEa\xba\x94\x92\x05\xb7\U0008b10f\xe5\x87ɧ\x92\xa3\xac£\x92\xcb\x1bl\xa6\xd8dۀpZ\x92j5\xd9R\x1a\x85\xbc}<\xcfW\xa2J\xe1u\x1fz/\x83\x84=.&&\x1b\x92\xa2\f|\xbdڼ\xb2t@Y\x03\x1a\xa8H4'\xecz\uef8e\xce]Q\xb6\xb3\xee\x99\x12E\x9cH8B\x97\xc6r\xdc\xfa\xebKg\x84\xcc\xefY\xc1\x05塦\xf1\xdcl\x12\x93\x17\x11:k\x95\xbf\xd8\u05cft\xda\xc7\x1c\xf8\xf5\xe4k3\u007f\xf4{I1BQ\x10ۥ\xb45;;;\x17\xcf\xcc\x16\x8aF='\v\xd5J\x8f6~\x9a\x97~\xa2\xa6,\x96\u007f\x81\xd0Y>\xa3\xb6:%\xaa\x01\xa1Gi\x89\x97;Q\xe7\x955i\xbftG)\xecI%EI\x8f\xdesnOt\xba\xb2\x06\x94\x11\x95u\xae4ne\x9fb\x15\x03\xa7\xad\xa6\x9cN\x92\xec\xbe/\xa2\xb0\x00\xea8Y5knUU\x950\xee\xeb\xca\xdf;c\xd6\xc4髖rM-U\xe36\t\xba\x1e\x1f\x8cC\xe2\x83>(\xd9>9lɃ\x1e\x97&\xbfk\xe1?\x14R\x8dQ\xdd\xcf+\x9e\xbc\x88nD\xbd&\xe6\x18%\xe3}\xf2\xb6|\x9b\xa2\x86\xb4w{_\b\xd82\x14\xab\xa8\x88^T1 &o\x9f\x11\xb9\x8d\x94Њ\x12\xdc\xe4LɊ\xb2xf\x0ffZ<\x02\f\xa0}L\x9e\xa0(\xbf\xe6\xbd6\xb7\xa9\a\xf93\xc6*\n\xe5R\xda%\x8e\xb6/\xd9\xfb\x9d\x16\x83\xe8\xd07̢\xa3\x91'e\xa9\t\xfc\x92\x83\xc2!\xdf\x10g\xcb9\xedX\x87\x15\xa5\xdb\xd4X\xcc\xef\xbb\x1d%\x9c\x9d8\xe7QzkțKQ\x12S\xc8[r\xa2\xa2\x86\x0f\x9dC\x90\x14\xe5*\xeen\xe0\x13\x9b\x917hE\tw\xa5dE\x99\xe3\x9ciy\x8bQ\x14Н\xf61\xbb\xff\x03KJ\xe6\x98\xf9\xfe-)\xc6*\x8a\xecRڟ'\xce\xc3~/(J}6\x1e\xb9\xb4e\xfb͵\x9e\x86\x1cA\t\x9eTƔ\"\x94\x90\x88\xa7TS\xb1\xa2\xa0\x84\xcauk\x12N\xe3s\x9f\x9c\x98_pF5\xff\x88\x84\xbb\xc6(\uf489\xd8e\xe9\x8a\x1a\xd2\u07bdFx\xec\xb6\x12j&\x85\rQ\x14;\x19\x9c\x84\xbf\xed\xca$\x8a\xb2\x1e+\xcaҙ\x17\t\xad*\xc5\x01]i\x1f\x93K\x14\xe5\xd7/Ƽu˟%\xc5XE\xa1\\J\xf7\x1e\xc1\x19䬧\x9f\x18\x94\x1e\xf5\x9f\xfbQ\n\xf0T\bBI;\x10\xb2\xa5\n\x89\xbe\x95DQҲL\x17\xf8\x9d8\xe3\xb1\xe53ᄦ/i\x19\tw)\xca92WRɟS\xd4P\xc3W\xe3d\xceA\x8f\xd5t\ue2b2\xd6x\xe4JDF\"t\x8f\xcb\xc7Iy\xb8\x12\xfa\xb1\xb0\xbd#\xb0\xa2\x1c\x11\x17\xfd\xf1svi@_\xda\xc7\xd8\xff]\x94\x94\xf5c\x96\xde\xf1cI1BQ\x98.\xa5?f\x97\xd7ߩ\xcf'\xf7\xcc\u07b2\x1f\xbdq\xcc~K\xa3\x9a\xd1C\x01o\xdew\xf6t\x06_\x8b\x93\xa9\xa5\x05+\xf9د\x04\xd18h\xb6\xf4%\xc4\x14\xe0\x88\v\xe6Ċ3\x1bLW\x10z\x88\xef\x99-v8\x1e\n\xb9iQ9gs\xa2Ҕ5\xa0\x9cyi'\x84\xa4rfV\xa4yM*#\xd7\xc9\xc6\xe0-\x85o\x86\xdeA=\xa7\xc8e\x1fq&e\xee\xe4/>\x8f\xe0\xc6\xe6\n\xe3\xc1\xb5\xdc\xe2\xfcC\xf1\x9c\xdḟ\x8fl\xda\xc7d;\x15\xe5\xd7U\xaf\xadh\xf1_I1BQ\x98.\xa5\xa8\xe5\x9b|{\xe1)q\xe2\xbb\xe5\xb0\xfd\x90\x1f\xfd\xaf\xa7bM\x81\xcddM\xc2r\xd0W\x9c\x10\x1d\x97V\xf1\x9e)I\x18\x8bX\xf6\t\xaa\xd2@B\x9a7\x98\x97\xa4\xfcEH\xa4;\xa7I\xc8X\xa6\xf4C\xf3\x87\xa5}\xca\x1a\x84QʺX˚\vj+S\xa5냰\x90\xb9\xdf\"t)\x88̗, \x99\xd7#C&\xce\xff#ǭ\x10\xd2G\"\xc3&\xcd=\xec\xbd\x12@'\xda\xc7d\xfeۿ\xff\x87x\xdcĿ\xb6\xca\u007f%\xc5\bE\x01\x80\x80GP\x94\xff\xe7\x1a\xa4\xfc\xfa\xf6kk\xef\xf9\xab\xa4\x80\xa2\x00\x80\x01\xb4\x8f\xd9ޏ\a)\u007f?y\xfc\xf8\xf1c\xaf\xbf\xb6\xb1\xd5O%\x05\x14\x05\x00\f\xa0}\xcc\xd6\x1e2H\x996\x86\xf0\x9b\xedm~s%B\x01(\n\x00\x18@\xfb\x98-]\xe8\xdf\xec\xff\xfek\xf9\x98\x05\xff\xb4y\xf3\x16\xfb7~\xfaP7P\x14\x000\x80\xf61\x9b;z6\xbe\xb6\xf9ᅫ\x9ft\xb8\xbe\xa9\xa9\xa9\xd5O\xef\xc6\aE\x01\x00\x03\x10\x14\xa5m\u0558\xff\xf4\x0f\xff\xfe\xeb\xde\xd72[z\xfa\xfb\xfds\x84\x02\x8a\x02\x00\x86 (J\xfc\x987>~-\xf3\xef\u007f\xff\x87Yu~:>\xc1\x80\xa2\x00\x80\x01\xb4\x8f\t\x1d3g\xf7\xa9\xd9\xdc\u007f\xfc\xba\xf97\xf9~:\x87\x82\x01E\x01\x00\x03h\x1f\xf3ZD^]k\xf9k\xb9\u007f\xff\x8f\u07fc\xe5\xc7\u007f\x16\x04E\x01\x00\x03h\u007fma~}G\u007f\xdbl\xee\xdf\xda~\x13Y\x0f\x8a\xc2D\xabr\x00\x00D\x9e\xfe\xd3qAPP\xcf\xe1\xdf\xfc\xa7\xdf\xfcç?\x82\xa20Ѫ\x1c\x00\x00\x91\x9e\xb6V\xf2H\xa0\xf6\xa2\x88\xf9[N\xc2<\n\x1b\xad\xcaG:\x8b\xb9\xb0\xdf\xfb\xcdCY\x80\x91\x8d\xf3rq\u007fۍ\xba\xeb\xfez\a>&\xa0\x15\xa5\xe5h\xee\xec0\xf1a\xf0m\x11\x87\\\xb9T\x12\x00\xf4\xa6\xbf\xa7\xa7\xc7\u007fG(\x86)\x8a\x86K)\x1d`,ǸKbbs\xd0\x17\xae<*\t\x00\xc0\xa00FQ4\\J\xa9\x00\xa3\xf9\x96;\xe5L\x95\x8cݎ<\x93\x00\x00\f\x06C\x14Eå\x94\x0e0\x1aYQ\xd0\xfa\xe0[\x8c$\x00\x00\x83\xc0\bE\xd1r)\xa5\x02\f\x87R\x94\x8e\xa9\xf1\x8c$\x00\x00\x83\xc0\bE\xd1r)\xa5\x02\f\xe7\x12wLJ\xaf\x0f\xe9b$\x01\x00\xf0\x1d#\x14\x05i\xb8\x94R\x01\x86\xd3\x13\x16q\xf2\x8eS\xe4N\xca\xe3\x15*\t\x00\x80\xef\x18\xab(l\x97R*\xc0x\x0es\x1c\xb7PL\xde\xe2\x0e\xb8r\xa9$\x00\x00\xbec\xac\xa2\xb0]J\xa9\x00\xc3\xe9\x98\x1d\xdf\xceH\x02\x00\xe0;\xc6*\nۥ\x94\n0\x1cJQ\xfag/`$\x01\x00\x18\x04F(\x8a\xa6K)\x15`4\xa7dE\xd9\xca]d$\x01\x00\x18\x04F(\x8a\xa6K)\x1d`$=-\x17\x17\a\xbb\xdcQ\x8f\x87|\x84<\x93\x00\x00\f\x06#\x14e\xc4\xf2\x16\xc7\xcd8\xe4L\xef\x1f\x1f\xdf\xe3\x99\x04\x00`P\x04\xb4\xa2\xb4\\\xbc\xe3J\xb6M\xfd\x82\x91\x04\x00`p\x04\xb4\xa2\x00\x00\xa03\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x12(\x9cI|\xa4\x15\x12\x10\x90\xed0\xb4N\xb4\xee\xab\x18ڵ\x8d0\fR\x14\xef.\xa5\x1dU\xf9\xf6C\x97\xe0\xff\xbe\xbeS\xcc\v\xccK(\x1b\x10?\xd6ĝq\x8f\xd8&\x04\x98\xefʟ\x0f\xf2\x058\xb8>,\x17\xd9î\xbbG3\x19L,\x8b\xc6(\xa1\r\x19\xd2GF#u\xa18\xe6\xcfR\xfa\xbe\x89_\ue664qn\a\xb6\x13mc\xf2\"˚\xda\xf7\xaf0\x16\xb9\xf0\xa1\x17\x9e\xab\b$\xdf[c\x14ŻKi{\ue87a\xa6\xf3\xbb\vAR\xd8\xd4^\xf3\xc8z|\x90\xafp\x9cK\xe3\xf7\x89\x1fϚO\xb8G\xb8\x94\"Կ\xb7\x8aYt(96!|s\xf9F\xe1\xa7\x18\xa1\xf8\xe0\xf5%\xeb\x83\u007f\x8fP\xfdޱ\xdc\xe4M[&\xbe\xadH\xaa\x11\x1f\xf4A\xc9\xf6\xc9\xe1\xfd\xa8+\u007f\xef\x8cY\x13\xa7\xafZ\xca5QI\xb7跸\xf9\xf8\xadg\xf7v\x91\\Zr\x9a+M|\\\xc1\x9f-\x9f\xe1\x0f\x19QY\xe7J\xe3V\xf6\xa1\xce+\x8e\x84$\x87\xc3q[Y\x93SQ\xcaxa\xc0\xdf\xe0p\xc4\x14\x90ܳ|FmuJT\x83\x18#+\xcaM\xde\xe1L\xf5O;\x85\xbe\x9b&\xc8x\xc7ɪYs\xab\xaa\xaaȔ\xb9\xb4\x1dp\x8fg|\xfe\xe9\x8c\xd0::\x96\rݲ\x9f楟\xa8)\x8b\xe5ݎvj\x8c\"7R\x8eU\xf4M\xea1{;tWW\xda\x12,\xb6]i\xf3\xe4\x99\x19ºT\x94\xba\x0e'\xeeZ\x12*\xcel\xe0\xa3\x15Ie1y; \x96\x13\xedC[Tr\xc1\x0f\xbdH\xd17E\rR/\xe8F\xf6.\xb7\x96\xee\x8b1\x97m(\xf6\xb2\x8a\x80\xf1\xbd5VQ\xd4]J\x85M\x9e\xdb\xc6.;ttM\x9f߅\x1d>ڰY)v\xfb8\xc2\x1d\x16^\x83'\t\x83\x92\xa5\x93\x912ɤ\x88\xcbEآ\x838\x10\x86so\xb69O\xe9\xa8$M\xd3\xe7\xe29Ľ&\x11\xb7\xc7\xffG[\x84\x9f\xbc\xf48\x84\xa5\x01\xcf\xee5\xf0\xe4\xf7P\xfd\xac\a]pN\xa48\x0f\xd6\xe7Ղ\xc0\f\xbc\x9f\"\xc6Ȋr\x8e\xff\xabG\r\xd4Y\x0f\xb5\x1dP\xf0\f\xdc\xf0\xe9\x11\x8cxO\xa4\x96\x95\xc6a-)\xb5\xb8M2(\xcfz\x9c\x8dT\xc4J5\xd0=V\xdb\x0e\xfc'\xcf\xd0\xc03\xa4\xa0\xcf\\\x8c\x8a\u0378\xae5\xef\tC\x99\xbe\x0f\xa3\x95IE1\xc5v`8\xd1>.\xf8\x83\x89\xb7T\x8b\xc5䭮X\xb1\xb3\x17T#\xabyaTX*\xee\x10\xd5U\x04\x8cﭱ\x8a\xa2\xeeR\x8aNe\xbb\xff\xa0\x0f=%\xdc\xf7\xaed\xfco\xc9\xdb\x1b\xf8l7\x18\xbfl\fF\xca$\x93\xc53{0\xd3\xc8Irx\xb0\xd4\x05*ɠ\x89s\xa1\x8c\x8aNGγ\xff\xb4w{_\b\xd8ȵW/\x8aR\xc1?&\x1f]_\xf3ǥ\xc9\xefZ\xf8\x0f\xc5\x0f\xb2\xa2\x9c\xe6\xef#O$E\xa1\xb6\x03\n\xfe#~\xcd\xe4|\x92w\xa9e\x0f\xad˲\xcan\xf6\xf5\xba-g*\x8a\"V\xaa\x81\xee\xb1\xdav\x88v\x1b\x9e`\x1a\xf9+\xddW\xf0!\xfd\x84/ß\xf7D+\x92\xcab\x8a\xed\xc0v\xa2\xed\xaeI\xe6\xcf\xe1\x04\xad(\xf4\x8a%E\x91\x1a\x99c\x11^n\x8b\xb3/\xaa\xab\b\x18\xdf[c\x15Eե\xb4\xe7\xa8]\xbac\xc58\xb6rҹ\xed\\\xd1M}\x01\xfem\x0e\xde(\xbcl\x12\x15EN2\x99\xe3T\x86\xb7\xf0\x87\xf0p)\x9fJ\xb2\xa8*\x12q;ϋ\xc6_V\xf2%\xfd\xd0y\x1eOF\x1b^\x14\x85|\x99\x91\xf45o\x88\xb3\xe5\x9cv\xac\xf3P\x94\xab\xd4ud\x19IQ\xa8퀂7\xe1\xd7c\xbe\x19\x16\xc9-{R\x96\x9a\xc0/9\xa8:\x8f\x82q\x1d\x8bt\xacT\x03\xddc\xb5\xed\xe06\x97D(%\xcbKqo\xc9\xe9\x06.F%\x95\xc5\x14\xdb\xc1Ӊ\xb6\x81̊\xf4%\xbaouŊ%E\x91\x1aY<\xef1\x1e-\x8ac\x14\xb5U\x04\x8cﭱ\x8a\xa2\xe6R\xfa\xb4(\xcfe\x9bc$\xe5\xf2q\x13?\x93\xbc\xcd c\x14|P9\x15EN2Y:\xf3\"\x81L_\x86\xcb\xf3-\xe1^\xa6^ԑ\xbf\xa4i\xef^#\x90\x11\b\xf9nW(\u007f\x9fEE\xe9\x8ds~\xed\x9d_\xf3\x84D|\x9d!\xd5CQ\x9eG\x17 O\x88\xa2؛\x14\xdb\x01\x05\xaf¯\xf6A\x8cQp\xcb\x1ar\x04}xR\x19S\xaa\\.*J\xe7>\xc5@J\x11+\xd5@\xf7\xd8\xdbvp'uuCC\x03\xbe\xd2\xfb7\x9eT\x98\x1e\xadH*\x8b)\xb6\x83\xa7\x13\xad5\x8b\xbc弇_\xa9\xad\xaeX\xb1\xa7\xa2<\x8cJ~ؘ\x90(\x9e\xf1\xa9\xad\"`|o\x8dU\x14\x15\x97\xd2\xd6\xfd\a\x84\xcd\xddo\xf8dxǔHf\b$f\x00\x00\x03\xb5IDAT<\xa3\xf3\xc1*<\xf0ǃ\xd2\xfd\\\tRW\x94\xa6M\x1e?\xdcG8r\xe5\xfb\x8f\x9f\xe3W\xeaj\xacʅ٦/\xbc]\x8b\xa5\xbe\xa45\xe2=\x119\a\xf1k\x92p\\>\x123\xa4\x1aDE\xc9\u1777a9\xbf\xe66\xfc\xd5\xef[\xe9\xa1((\xf5=\xc6m\x14\x91\x91\b\xdd\xc3\x1d\xa0\xb6\x03\n\x9e\xd2!ďt\x0fft\x9ejY\x01\u007f\x81|\xde!ƺ\xba)*\xcaM\xfe2\xf9\xe4l\xa4\"V\xaa\x81\xee\xb1\xcav\xa0\x0fli\x15\xd6]\xc2\xcb.\xab\xf0\x92h\x13t\xe7vL\xb42\xa9,Fm\aʉ\xd6UY\xac\x15+W\x9fX\x80\xda\xea\x1a\x8ar\x8d_\xc2\xf3\xeb\x1e8\x97\xb3W\x118\xbe\xb7F(\x8a\x96Ki\x93}\u007fSKK\xcb\xc9|\xad\x8at\xe7\xe8\xebod\x96|\xc0\xe1K\xbaK\x83\xd6\x16\xad\rZ\x8aPKո\xf8S\xe8b\xfc\xb8\xaa\x16*\x89\xa3\x17r\x13<~\xb9\xd7r\x8b\xf3\x0f\xc5sy\xa8\xe7\x14\xb9v\"\xfc\xe2\xd3I7\x16r^\xbeW?;Lۮ\x0e\xdc\xdcfr\xfc,\x1cC\xf3\xd2N\x9c\xce\x10g$\v\xa2\x8bO\u007fb~H\xd7@\ue67d\x90N\xee\x99\xed\xbd\xeap\xc4ls\\~\x86\x0f\xd6\xd4҂\x95|\xecWW\xd1C|\xcfl\xb1\xc3y\xcf\xea\xed(\xf9Nu\x89\x8d\xc1[\n\xdf\f\xc5\x17\xb0\xa9\xed\x10̅\xe7\xdbgM\xf2P>V\xe7\xe5\x96\x15\xf0\xe6}g\x85\xf6\xd6:cI#_\xfc\xb0\xf2}\x87\xc0\xd7\xc2I\x88\xa2\x91T\xac\xdc7\xa9\xc7\xec\xed\xf0\xe2\ar\xf5\xe5\xbe\xd4\x1c\xb2\x8a\xee\v|N'\xea\xcc\xe1/t\xa3f\xb3\xad`Ϣ(SE3\x95t+Fm\aʉֵ[by\xeb\xbe\vBsn\xd3-\xa3k\x90{A7\xf2ZL\xcd9\xc7\x03\x97\x8e\xb0W\x118\xbe\xb7F(\x8a\x96K\xe9\xe1l\x91a\xb8\xc3\xed\xfa;\xd3&F\x90ɝ\xfe\xcc9\xa1s2\xfb\xf1M(\x1c7\xae.Tx]A%q\x88}\x02'M)K\x1c\x89\f\x9b4\xf70B\x97\x82Ȅ\n\xfejRI7r'g{f\xba\xd8\xc9\xf3\xbc\xe9/f\xe1\x15߶V\xb3.ֲ\x86\xfc\x98\xa3\xee\xacE1I\r\x8a\x1a\xc8\xffz\xf8ed\x02\xf2\xa7(q\xaeA\xf8\xd0W\x9c\x10\x1d\x97V\xf1\x9e)\t\xa5;g \x9c?\xaf\xfbb<\xff\xac\xd2\xf5AX\xc8\\\xb1G\xf2v\b^\x15?q\xeaR\xcfsPf祖U\xac)\xb0\x99\xacI\xce;͜\x8dlt6\x8c\x17\x0eQ\xaa\x91\x8aX\xaao\xae\x1e\xb3\xb7\x83\xb3\xb2d\xa4XE\xcd<|\xcf\xfc\t\x9e\x9fW\x83\xd0ݔE\xcbr*L\xb8\x98\x94t+&o\aډֵ[\xfeP\x96\xb3\xdc\x1c\x97\"^>s\xb5\x8c\xaeA\xee\x05\xdd\xc8+&\x9cgZӬ\xbe\x8a\x00\xf2\xbd5BQ\xfc\x86B\xdff\x17F\"\x03Y\xa6j\xad\x18\x8283\xcb`\x14w\x9eµ\x1dtt\xa2}d\xde\xf1\xe8ŋ'?}\xb6\xe8\t\xf9\xccX\x85\x8ek\x1b\xf1\x80\xa2\xf8L\u007f\xee\xa4\x15Z1#\x97\x81b\xdb/Z1\x18\x15E\x19ݝ\xa7\x10\xb7\x83\x9eN\xb4\xa7\x9dw\xe1\xf4ŊCJ\xcfU蹶\x11\x0f(\x8aϴ\x84\xad2|\xee\xd8xT\x14%0:\xffR\\\x8b\x12Ow\x9a\xa3njD\x06\x04\xa0(\x00\x858\x17\r\f\x86\xbe\f\xf3\x8e\xea\xda\xea\x1d\xe6\f\xb7\xbbq\x02\x13P\x14\x80\x82\xccE3.R\x01^\x188\xb3\xc1j\xb2&\x9f\x05A\xc1\x80\xa2\x00\x00\xa0\x1f\xa0(\x00\x00\xe8\a(\n\x00\x00\xfa\x01\x8a\x02\x00\x80~\x80\xa2\x00\x00\xa0\x1f\xff\x1f\xec\x88D\xdc\xfa\xfa\x88\xfa\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/error1.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\xc1\x00\x00\x00\xbd\b\x03\x00\x00\x00\x8d\xa5\x9a\x96\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\x02\x05\x01\n\x03\x01\x05\a\x03\x1e\x01\x00\v\r\n\x10\x12\x0f\x16\x17\x13y\x00\x01\x19\x1b\x18\x1b\x1b\x14\x83\x01\x00\x8c\x00\x00\x8c\x00\x04 \x1f\x19!# #$\"%%\x1e$%#&'%'(&+)\x1e()'++$*,)/,!-/,02/63(241\x98\x1b\x1b786;8,\x82%#:;9><0>?=C@4@B@\xa0*,CEB\x9c.-KH\tn\aPRP\xa9:e\xaf*{!bda)}*Bh\xb2egdLj\xafpiR.\x81.Em\xb1ikh\xb3XX0\x8301\x841/\x858Jq\xb5mol;\x86:Vu\xb4>\x89={t\\tvs@\x8b?B\x8c@@\x8dG\\z\xbay{xJ\x8eI^~\xb8\x84|d\xbbkkL\x90K~\u007f}O\x93Mb\x83\xbdN\x95UW\x95V\x82\x84\x81\x8f\x85hm\x87\xbdZ\x98Y[\x9aZ\x87\x89\x86\xc0{|]\x9c\\\\\x9dcr\x8d\u0096\x8cnd\x9dd\x8c\x8e\x8b{\x8f\xc0f\x9fg\x90\x92\x8f~\x93\xc4j\xa3jy\x96Ŕ\x96\x93s\xa4l\xa1\x96xq\xa5s\x81\x99×\x99\x96\x83\x9bť\x9b}u\xaaw\x9a\x9c\x98Ǒ\x92\x9c\x9e\x9b~\xaby\x88\xa0ʞ\xa0\x9d\x81\xad|\xab\xa0\x82\x8e\xa2ǡ\xa3\xa0\xa2\xa4\xa1\x81\xb1\x85\x92\xa5ʋ\xb2\x88\xb4\xa7\x83\xa6\xa8\xa5\x8d\xb5\x8a\x97\xabЩ\xab\xa8\x8e\xb6\x8c\x8d\xb8\x93\xab\xad\xaa\xb9\xad\x88\x9f\xaeή\xb0\xad\x96\xba\x96\x98\xbb\x98\xa3\xb2Ұ\xb2\xaf٨\xa6\x9b\xbe\x9aµ\x90\xb4\xb6\xb3\xa3\xbf\x9d\xac\xb7Ҷ\xb8\xb5\xa2\xc0\xa4\xb7\xb9\xb6۰\xb3\xa5ħ\xba\xbc\xb9\xb1\xbdקƩ\xbd\xbf\xbc\xa8ǫ̿\x99\xafƫ\xb8\xc0տ\xc1\xbe\xb2ɮ\xd0Þ\xc2\xc4\xc1\xbc\xc4\xd9⽾\xc4\xc6òͷ\xbb\u0379\xc0\xc8ݻ\xca\xde\xc7\xc9\xc5\xd8ɝ\xbdϻ\xc6\xca\xda\xc0\xcc\xda\xca\xccɿҾ\xd7ϡ\xcd\xcf\xcc\xc4\xd0\xde\xcb\xcf\xdf\xc8\xd3\xc1\xe0ѥ\xd0\xd2\xce\xc8\xd6\xc9\xea\xcc\xcb\xd1\xd3\xd0\xd2\xd3\xdd\xca\xd8\xcb\xd3\xd5\xd2\xdf֨\xcd\xd6\xde\xcc\xda\xce\xe6֪\xd6\xd8\xd5\xd4\xdb\xd0\xeb\xd4\xd2\xd2\xda\xe3\xd8\xd9\xe3\xeaۯ\xda\xdc\xd9\xd7\xde\xd3\xe1\xdb\xda\xd5\xdf\xda\xdc\xdd\xe7\xdc\xdf\xdb\xd7\xe1\xdc\xde\xe0\xdd\xdc\xe1\xe3\xf0\xe0\xb3\xe0\xe2\xdf\xe2\xe4\xe1\xee\xe1\xe2\xdf\xe5\xe7\xe4\xe6\xe3\xe8\xe5\xea\xe5\xe7\xe4\xf2\xe4\xe5\xe6\xe8\xe5\xe3\xe9\xeb\xe7\xe9\xe6\xe8\xea\xe7\xeb\xed\xea\xf6\xf0\xef\xf2\xf4\xf1\xfe\xf8\xf7\xf9\xfb\xf8\xfe\xff\xfc!l\x99S\x00\x00 \x00IDATx^\xed\x9d\x0fXTם\xf7\xf7\xd9\xd9\xd8w\xd3$C\x03\x9b\x12-K^\xd6fm\xfb\xdc\xe1\x19\xa9\xbe+\f\x8d\x1d\x14\xd7?1+\xbeVQ\x8aV1\x1b1\x18\xe7a\x13\xa3\x82ƄL\n\x19%) B\xe6\x89E\x1eY3*\xbe\">\x19Me\xc1\x96hqm\x12\xe8S\xa6ѱ\xb6\xda\xe4\xf2(\xac\xe4y\xaf\xe7\xed\xa6\xe5y\xcf9\xf7߹ý3(\x03\x97\xd1\xdf\xe7\xd1;\x87;\xbf\xf3\xbb眹\xf7;\xe7\xfc\xee\x99{\xfejh\x14 \x00\x00\x00\xf3\x18\x1a\xfa\xabH*\x15\x8eH\xee\x01\x00\x00\xc6\x10P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x173\x15,p\xa0\xaa\xa2\xfa\x18O\x92\u0099\xba\x8a\xba\xceH\x19\x00\x00\x004\x98\xa8`A\xb7\xb7\xb3\xbb\xb3\xae\nK\x98\xe0\xf5\x9c\xee>Yq2R\x16\x00\x00\x00\x16\x13\x15\xac\xcbݍ\xb7\xbc\x1bw\xbd\xceT\\#;*\xf8Hy\x00\x00\x00\x18LT0D\xf5*\xe8\x0e \xe4=@wTB'\f\x00\x80;\xc1L\x05\xc3\xf4wW{\x05\x84\xea|\xf4/\xef\xfe\b\xe6\x00\x00\x00,\xa6*X\xd0\xedv{HO\xecX\xe5\x00\xde\x0ex\xea\"\xe5\x00\x00\x00`0U\xc1P0\xd0^M\"\xf9\xbc\xc7\x1b\xec\x0fx\xddՑ2\x00\x00\x000\x98\xab`\x98\x81\xea&\xbc\xbd\xe6\xc5ݱ\x16\xaf7\x925\x00\x00\x00\x83\x89\n6 З3n\xfa\xda\u007fM@\x95\xc7\xc2f\x00\x00\x00\xd0b\x9e\x82\t\x95b\xf8\xfeL\x05V\xb0A\x92\xea\"\xb7%\x01\x00\x00F\x8cy\n\x86\xaa\xe8\x14\n:\x8a\xect\a\x11\xe2\xab|\x91\xb2\x00\x00\x00\xb0\x98\xa8`]\xee\xa6\xce\xeeN\x1a\xc9\xefr\x9f\xec>S\xe9\x85\t\xad\x00\x00\xdc\x11&*\x18\n4UWԵ\x90y\x14\xe8t\xb5\xc7{Z\x88\x94\x01\x00\x00@\x83\x99\n\x06\x00\x000:@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]bK\xc1\\.\xbd$\x00\x00\xf7+&+X\xbb[z4~\xc0\xeb9\x10\xf1\t\xad\x1fs;u\x92\x84z\x8e\xe3\xcaQ9\xde\xd6\x0fϦ\xd0k\xe3\x16\xe1\x17\x176K\xeb\tc\xa7\xe5\xb8\xe3p\x98w\xef\xd0\xd9\xe8\xc0\a\xab\xc1/5\x1c\xc7\xea\xf7\x8b\x1cר\xfcq\xeeG\x8eY+[\x97|0,\xafH-k\x1b\x81\x17Gd{w\x8d\xfaً\x0e\xfb\x8f\xa2\xf28%\xed\x81\xc3\u007fX\xe3\xc3D(\xc3\xfd\x83\xb9\n\xc6W\x1c\xab\xa4\x89\xee\n_\x97\xaf\xa2;\x82y\x91\xfd\x8aN\x92\xc0\xbf\xcb\xed\xbe\x8e\xae\xbfŽ\x1b\xf6)\x89\x1d.;\xde^\xf2\xfbk9\xa3K|8\xcdi\xe1\xae\xe3;t\xa6\xd2z6\x92\xc5p.\xa5\xbdՇ_\xfaޚq\x89\xd9{\xc5o+\x97\xd3gm\x05\x87\x1a\x9f3\x96\x9e>\xff\xf2r\xa4\x87NqX\xbfa\xb8\xabF\xcdsԺ\xd2\xfa\"Y\x8d\x04\xed\x81\xc3\u007fXw\xd7\xea#\x81\xf5\x1b\xa9\f@41W\xc1\xbcM\xddT\xc1\x84*\xb2\xc6DZ\xaa\xf0_\xca=\\\x89NR\xe4\x02w\x1co[\xb9\v(,\xe5v\xf1\xb5\xe3\x0e.6\x14\xa9\xabpG\xce\x14~P\x18\xc9B\x87%b\x17\xb3~\x89v\xb7]Q\x9a\xd5yd\xeb\n\xd3y*\xd0W%\xdd\xe2\xd8G\xa2`wӨ}\xb8/)\xf4G\xb2\x1a)\xec\x81#|Xw\xd5\xea#@\xe37\xd2\t\x03D\x11S\x15\xac\xdd\xc3\a\xa8\x82uV\x90\xb3\x99\xaf\xe8\fk\xeeR\xfb].m\x17ll\x15,\x12w\xe7l\xd9\xdd\\K\x85e\xf4\xa5,$\xaf\xaa4s\xa9\xc19\xee\x102\xc2@\xc1t\x8b3f\n\xd6\xc3Es\xa0u\a\a\xbe\xabV\x1f\x01c\xe5\x17\x88\x84\x99\n\xc6Wt!Q\xc1\x9a\xf6\xd3\x1d\xfb\xc3.\xf5\xd1k۪\x93\x94`\x14\x8c/̴e\x15\x9c\xc3\u007f\xbe\xc4\xd9\xeaK\x16\xa4\xad\xa6C\xae+E\x99酮a\x17[\xe3ʴ\x05%X?\xcf\xd98\xae\xac\xa7h\xae}\x8d\xe6\x1b\xb4/\x8d\x13\x87d\x82\xc3\xf6jVf\xeb\xd6Yy<\xf1[\xe3\xcaJ/\xe81p\xc6\xda2\x87`\x8as\x98\x13YF\xde\xf7\xafβ9~\x94\x854\xa8\xb5`\xd9)^(\x85;Y\xbfXi\xb6\xba2\xc5\xe2\x14fR\ro\xa6\xbbk\x97\xa5-\xa9\x153\xf6\x14:\xf01\x88\xecc\x05ۊ\x8fl\xff\x8c\xf1\xa0)\x0e\x83\xbdDn\xbeh6\xea\xa0C<\x9a؍\x96\vi\xf0\x01\xe8\xb7\x03[!\xf5\xc0ʇE\x88\xd4\xea\x06\xce\xe4\xe20\xd945fZ]\xc9\xc6\xfaՔA\xc7\x19\x10e\xccT0o\x13\x92\x14\xacN\\(\xf2X]8s\x97\xed\x92NR\xe2\x02\xd7<00\xd0L\x14\xac\x99s\xb56\x16p\x1d\b}\xdch\xe3\x1c\xe553\xc8e\xdf3kA\xfd\xe1\xd5\\\xe8\xc5\xe6\xe2\xb66\xd78\x96\th\xa0\xb11k\xc1\x8c\xac\x92\"\xaeW\xe3\xf8\xac\xdf/\xf6DZgq%y\x9cc\xb7\xa3\x86\xfa\xcd\xda]\x9e\x95v\xc1\xc0\x19c\xcb\xece\x8a\xc3\u007f\xe0_\x90\xe7\xf7\xfb\x89\xe8\x9c\xe5\x8a\x1a\x8f\xd7;8\xed\xd8C\xad\x05K\xfd\x0fPG\xd6\ahY=\xeb\x17+\r\xb7\xac\xb1q\t)No\x16\xb7\xa6\xbccP,\x8e\xbd\xac\xb9\xcc^D\x92\xadi\xcb\xde:^No\x03`\x05\xbbR\xc4\xd5t\xb0\x1e\xd8\xe2\xb0عE\x8d\x87\x1d\xa4\xf9\xa2ڨ\xe7\xfc\x8d\\\xb9\xdfO\x15C)\xa4\x81\xad~;\xb0\x15b\x0e\xac|X\x91[\xdd\xc0\x99R\x1c&\x1b[c\xb6Օl\x1a\xbfl\x19t\x9c\x01Q\xc6D\x05\xeb\xf4\xf0\xb2\x82U\x9e\xa4{NV\x861ﵽ\xa8\x93\x94\xb9 }\r⋸\xbf\x91|C.y\x8e춧c\xa9+r\xe0\xd4\xca\x05x\xaf\xb0$\xe4bk\xe6ޥ\u007f\xd1/\xcde\x1c\xe93\r\xbf\x15 \x9d\x90\x99E\xd8\xfc\xb08\x8d\xc3>\x17\x9b\xf5e-7r\xc6ز\x87P\x8bÌ;j\x1d\xe4r\xa8\x9d\xa5U0\xb6\x16*~\a\xdai+A\x0e\u007f\x88\xdfE\x03X\x02\x16,\xc7ɾ\xdd\xcbm\\:\xd9y\x9cvK\x8fs\xcd\xf8\xad\xac5\xd8`\xb0\x91\x84α\x82\xd5؛\x893m\xe5uG\x91\x0e\xdcSs\x91\xf2F\xb9Q\x95Q$SH}[\xfdv`+\xa4\x1dEJ\x1fV\xc4Vg`\x9c\xb1\xc5a\xb2\xa9IƯ\xa6\f\x1a\xbfR\x19\f\x9c\x01Q\xc5<\x05\xe3+:\x05A\xe8\xae\x14\xf0\x95['\x0e\x1f}\xe1\xfa`/\xd9zu\x922\x17p\xaf\xa2\xa3\xa3\x86\xc6\xc1>\xab]3w\x16G\x83\xddv\"7$N\xd3'N\xb3(\v\xb9\xd8\n\xe7\x0e\xe2B\bYtr\xc22\xfb0\xb7\x14Y\xc1\x1aq6\x1e\xed|\x9e\xec\xa2øZ\x8e\x9e\xbd:\xce\x18[\xf6\x10Jq\x10s\xce_ʜ\xfbR\xfd9a\x10iaj\xa1\xd2\xcb\xf5\xe7\x15\xad\xec'\xdd\x14\x8d\xdfWɛRq\xd0@\xeb\x1arո\x16ѿ\x16Q\x15U\x87a\x05\xe5e\x92|h+\xaf\xab`jy\xa3ۨ\x8a\x821\x854\xb0\xd5m\a\xb6B\xba\n\x16\xb1\xd5\x19\x18glq\x98lj\x92\xf1\xab)\x83\x9e\x82\x198\x03\xa2\x8ay\nv\xd1-\x13@M\xe2\xac02\xac4\xe2\n=\aB\x93\nL\x1c\xacÑ\xb5\xf3\x90?O\xbc\xd8ȹDN\x9c\xb3\x9c\x1f\xa1\xe1A\xe7%R\u05cd~\xc5/\x1b\x16\x1f\x11\x91\x15\xec8\xea\xb0!I\xc1\xe8.?G\xef\xa1\xeb8cl\xd9C(\xc5A\xec9\xdfW_\xb8\b\x0f9\x91\x06\xb6\x16*\x82\xfdBڹ\xb4\v6A\xc7/-N\a\x1d\x9a\t+\vp\a\xa9\x80f)XN&\x90\r(.\n\x1c3\x16\x89\x87\xd6V\xde0\x92O\xcb\x1b\xe5FU\x14\x8c)\xa4\xbe\xad~;\xb0\x15\xd2U\xb0ȭ\xae\xc28c\x8b\xc3dS\x93\x8c_M\x19\xf4\x14\xcc\xc0\x19\x10U\xccS0!Hh\xf7\x04\x83\x02\xeat\x93\xa1\x03\xef\x0es/r+ף\x93T`\x14l\xd1r2\xee(\xd4^l\x9fq\xb5\xe4\xefРs\xd1ܳ\x14\x12\xd66\xbc\x9f\xc4(\x98]V0z'\xa1\x9e\xa3#\x1e\x1dg\x8c-{\x88a\xd7R}/\xd6\x01ҟ\xebk\xb4\xd7j\x0e\xcaւa\xc1[\x99(\xabf\x01\n\xf1K\x83\xe2\xa48\x99/Q\xb32l\xe1\x9aK\x93s]\xa4]\x98>\x98\xe3B\xef,\x1a?\x1a^yR\x1c\x16\xb5\xbcQnT\xb5\x0f\xa6\x16R\xdfV\xbf\x1dZ#\xf5\xc1\"\xb6:\x03\xe3\x8c-\x8e\xae\x821~[\x87\xf5\xc1d\xbfr\x1fL\xdf\x19\x10U\xccS0\x91\x804\x1f\x8c\f#}a\xe6\x83E肱\n\x96EN&a\x89\xf6bC˳\xf0\x10\xab\xc7\x1er\xb1\x1d\x17\x835e\xb4\x03t'\n\xe6\xc0\xd7\x15?\x97N\xbe\xd2s\xc6ز\x87`\xcf\xe3<\x9c\xf9\ny\xaf\x9c\x16\x1d\xe5ic{l-\x18֬|\x0e\x15\xae\\\x8dB\xfcf\x91\x88\xcc\"\xec\xd1A\xaa\x89\x04R\x95fj\xd0H\x06\x94\xfd\x99y\x838\xbd\x95\xe8.\x99M\xd1l\xeb\b\xf1\xa0\x16\x87E-o\x94\x1bUQ0\xa6\x90\xfa\xb6\xfa\xed\xc0VHW\xc1\"\xb6\xba\xbe3\xb68\xba\n\xc6\xf8ՔA\xe3W*\x83\x813\x84zw\x8f\xfc\xc7\v@\x04\xccU0!\xd0\xee\t\\CtN\xfeŰs\xf2K\xd4~W\x89N\x17\x8c\x9d\x93_\xce\x15\xd6\xee^\xc69\xde\xea\xb8ⷹ:\xd0Y\x97\xcd\u007f\x05]H\xcb*/K\xe7l\xef^\x10gq\xd7\xf8\xfd\xbd8\xe3N\xee\xf9\xc6Cd\x02\xa8\xd0A\xef'\xf5\x868\x1e\xfc\xc0ﷻ\xfc~\x1e]H\xaf\xe9o\xb4\x9d\xeb\u007f>\xef\x12\xa27\xff\xea\x17\xa4\xf7 }g\x1a[e/[\x1cr:\xd7\x1c\xcaK\xbbD\x14,\xad\xac\x19\x1b\xb4j\x0e\xac\xd6B\xb3{+\xb7\x1b\xbd\xc5ыF\xf1K\x8a\xb3\xa6\xa3u%)\x8e\x83\xcb,;\x8e\xfd\x92&*\xe2v6\xef\xe4\xc4{\x91\xf6E\xb5\xcd[\xb9z2'\xdf\xf5\xc1`\u007fAf\xebu\x8d\a\xb58*ly\xa3ڨ\xe2\xbd\xc8\x0e\xfa}\xa5\x14\xd2\xc0֠\x1d\x94\n\xb1\aV?\xacȭ\xae\xefL-\x0e\x93M\xe3\x81i3&\x9b\xea\x97-\x83\x9e3b\\\xc0\xfd\b\x01Q\xc2\\\x05\v\x900X\x15M\x1d\xa8\xf0\x86\xf9]\xe4\xf5\xb4\"\x9d\xa4\n\xfb\xbbH\xa1f\x81\xddQX\xbf\xc0\x96\xf7\"\xfe\xdbv\x81L\xd0\xc1\xfd\x9b\x9e\x82\xf4\xb9%\xef\xdap\xd2%\xc52\xe87\xfe\xf1\x00\x83vP*\xc4\x1eX\xf9\xb0\x88A\x84V\xd7w\xa6\x16\x87ɦ\xf5\xc0\xb4\x99\x9aM\xf5˖A\xcf\x191\xaew\x84\xfb\xf5.pG\x98\xab`#\xe6U\xeec\x9d\xa4yH\xe3\x04\x00\x00\xcc%F\x14l\xa2=V\a\x14\f\x00&\x041\xa2`\x13\rP0\x00\x98\x10\x80\x82\xdd\x05b`V\xe6\xcdo=\xc4\xf2\xad7\xc3\xe4\x04\x00 \xaa\x80\x82\xdd\x0540\xdb+\xa6\xff\xa8\xd5/\xaaa\u007f\f\x9b\x1b\x00\x80\xa8\x01\n6J\x86\v\x18\x96\xb0H\x99\x00\x00\x88\x0e\xa0`\xa3\xe3M\x1d\x01{\xe8!\x18H\x02\xc0\xf8\x00\n6:\xf4\xba`\xd0\t\x03\x80\xf1\x02\x14lt\xe8\n\xd8C\x0fE\xca\x06\x00@T\x00\x05\x1b\x1d\xa0`\x00`&\xa0`\xa3\x03\x14\f\x00\xcc\x04\x14lt\x80\x82\x01\x80\x99\x80\x82\x8d\x0eP0\x000\x13P\xb0\xd1qo)\x98wf0\x92ɸsm\xa67\x92\tp\x1fc\xb2\x82\xb5\xbb\x95\xd3\xd3\x17~\xb1\xc8\x11\xe3\xb1Z\xadŨ\x18o+\xc2X]\x8c\xb7N\xc3/\xb9\xd8,\xb1+\x8c]$\"+X\xbe5\xae\xda0{\b\xbb\xacqU\x91ldƠ\x9e۰\xc3\xc848\x9dG\xc2\x1a\x1ct:\x9d{\xd1^\xbc=\x18\xc6\xea\xd3l\xe7*\xfc\xf2\n6\x9b\xffi\x18;\xb4-n[\xb8\xb7\x81\xfb\x1bs\x15\x8c\xaf8&/O\x14t\x9f\fk:bx\x8fu[\x10\x05\xb7Y=\xc3W\x1dbh\xc9M\xc0\xdbn\x9fo\x97\xb5%\x9c]\x04\"+X\xc0\x17?\x12]\xa0\xf0G\xa7\xeb\xdb\xfaN\x0f\xdb\x15\xfdz\xee\x8a\xf3D\xb0\xa0\xdch[\xbfW\xf7\x8d\xb6\xf3\x92\xc1A\xe7\xde\xcf\xd1\xe7\xef8\x0f\xdeе\x13\xb9\xfd\xf3W\xb2\xf1\xcb\xef\xdb\xda\x1a\x9c?\x0fc\x87{\x86\x8f\x96\x86}\x1f\xb8\x9f1W\xc1\xbcMݒ\x82\x05\xaa\xa3\xa5`\xa8\xddz\x00o}\xd6\xf6\xf0f\xc5\t\xe2kK\xc4+;\x1c\x91\x15\f\xa1\x84\x11+\x18B\xf3\xf4m\xa7/\x1e\xbe/\xda\xf5\xbc\x18\xbf!\xbc\x81\xc2f}\x05[\xbfEJ|\xe4<\x85\xb7mΏt\xcd\x14\xf6f\x8b\xaf\xe7#(\x18ڔ\x10\xe6\xe9\xbd\xc0\xfd\x8d\xa9\n\xd6\xee\xe1\xc5\xe7\xe4#\x9f\xdbW\x11\xc3\n\xf6\xbf\u007f\xf7_\xff\xf5\xeb\u007f\xfc_x\xfb\xbb\xa7\xc6D\xc1R\xc7A\xc1r\x93\xc3v\xe6\x18\f\x14l\xed\x16)\x11m\x05\xe3\x93s\xc3\x1b\x00\xf7/f*\x18_\xd1%\xad\xf4\x81\xfayy\xd5[]\xaa\x95\x98O5\xe2\x17'ǧ\xcc;\x83\xf7\x9ey\xd4j\xddԵtj\xe2\x9cA֘\xb9\xb2U\xdb|k\xbc{ݴ\xc4\xd9\xf4\xcb<\xb04y\xca\xc2\xdcaWv\xe5\xcc\xc4i\xebx#\xbfݓ\xad\"\x93\xd9\x0e\x81\xa8`o\x92\xb6x\xea_\xc9\xf6_e\x05\x93\xbda\x05\xcb\xcfM\x9e2\x8fF\xa1\x8e\xceN\x89O\x9a\x93B\xb3\xeeJML\xdd%z\xe9Z\x98\x14\x9f<\x87>\xc6cAƃW:p*\xd2\x10\xe5z\x0eL\x96\xbb`m\x9bWd?\xb3y\xc5m\x9c\xbcݰ~\xfeچ\xdbt\xf7\xa7[\x9e\xc9\xce\xd9\xfc{D\x15\xecu\xa7ә\x8d\a\x89\xb7\x0f\xae\x9f\xbf\xea\x8d[\b\x9dp\x8a\xacG\x1a\x05\xbb\xb1%'{\xc5f\"e\xaf8\xb3\x0f\xbe\xb1j>u\x80~\xbf=\xe7\xe9-\xaf\x84*\x98\xe2\xec\xa3l\xa7sϧ\xdbWdo\xfe\x82\xbe\xb1)\xb1\x1f\x01\x80\x1ef*\x18Y\x1e2\xa0,\xd3\x1dN\xc1\xf8\xa3\x937\x05QpӔ\xa3<\xbe\x9es}\xd5\xf3\xe2\xf0\xe5\xd8_]\x95\xf2\xe4\xe4\x94uK\xad\x9aAF\xbb\xd5\xdb\xdf\u07ff\x9f\\٪mgգ֤\xe2\xd2\xc9\v\xb1A\xd7\xe4i\x1e\xeflk蕝\x1b\x97\xef-MJ\x15\f\xfc\x0exJE<\xecR\x85\xa2\x82=\xfc\xe6\xd0\u007f\xfc\xe3C\x0f\u007f\xeb\xd7C\xff\xf6\xb0\xa4`\x8a7\xac`\xd6\u052a\xaa\xd4D\\\x9e\x93֥\xd5M\xee$+Q\x8c܄M\xdeM\tK\x89\x13_b궦b+\x89\xf6`\x05\v,\x8d+ma\xcb\xc3\x1f\xf3=\x99\xe1\xf3\x85\xde\xea\x88r=O[}\xe2\xfb\xbf\xfc\xfe\xf6#\xa7\x0e>\xe3$\xe2\xb1#{ϩ=\xd9\xdb\xc9\xee\xb6\xf9\xeb\xdf9\xb5\xd7ـ\xa8\x82\xfd~\xbb\xb3\x81\x84\xbdv8_?Ր\xb3\xf66\xba\xd1ֶjc[[\xdbo\x10U\xb0[\xb7n\x9d\"\nv¹\xa3\xed\xc8f'6\xfd\xe8H\xb63g\xef;\xf3\xb7`\x83O\xe7\xaf:xb\xb33T\xc1\x14g\xb7\x8e\x1cY\xb1j~\xce\x1bۿ\u007f\x95\xbeq,R\xff\x11\xb8o1Q\xc1:I\bzd\n\x86/;2\x8cZL\x06\x13|5\xe9ؤ.\xa4\xbbS\xad\xb3\xf9\xd0u\xeaۥ.K\xbb\xd66a\n\xbeN\x97&\xe1T\xc6T\xbcWH\r\xb9\xb2\xbdV\x0f\xfd\xab\xca\xc8o\xf0\xa2\x88f\u0081\x14\xf7zj\xe8\xd7\x0f}\xeb[\x0f\xfdߡ\u007f\x94\xe2`\xac\xb7\x84i\xb8\a\xd1?u&\xeev%\x11\xed\xda5\x05\xeb\xda\x01ڃ:`ݏ\xdfJ\x99\x83Eq\xa0\x9a,ڄ\x15l[\x82wxytG\x91Q\xad\xa7\xd7zQ4l\xc8!\xda\xd5\xf04\xeey\x9d\xa2\x9d)\xba\xbd\xb5b3\xee\x1c\xdd>B\x82\xf3X\xc1\x1a\xb2O\x10\xdb\x13\xf4v\xe3y\xf1\xe6$3\x8a\x14\xc1\nv\x8bd\xb8-\xbe\x93\xfd4\xee\u007fm\xcf\xc1\xa9\x8d\xab\x88\xaf\xb5!\n\xa6u\xe6\xdcx\x03ݖn\x05t[G|;\x17\xb8\xcf0O\xc1\xf8\x8aNA\x10\xba+\x05i\x91\xc8\xf0\n\xe6K\xe4\x11\x9fH{\t\xc1]s\xa6N\x96\x86T\xa9:1\xdevkiKKK)\x8d\x0f1\xb6\tD\xfeHP\x88\xb7\xba\xc9ߛB\xae\xec\xc5S\a\x061)\xb9\x06~/Ze\x86\x8f\"\x1f\xfa\xfb\xa1??\xf5硧\x86\xfe\xfc\xb0\xa4`\xac\xb7\x04:\xc3<\x05\xbb\xe8\x96\x11WY\v\xaf`\x83Iu\xa8.\x89\x88]Krʆ:_\x86\xa4`Ӈ\x9b2\xf1!֖\xc6\xd3ɕ}R\x1c.\x85F\xb8S%}Zh\xe4\xd7\xe7\x15\xf1\xb1;%\x05{过\xfech\xe8\xd7C\xbf\x93\xfe\xd4x\x13#\xf9>\xebi\xb2,\xf9\xe2i\xd6$2\xbfi\xe6<\x9a\u007f\x0e>P\xa9U\x8d\xf2\xccK\x9e \xc6Z6\xd1\t\xe0z~u\x91\x15\xec͡\xa1?\xffyh\xe8\xdfd\x05c\xbd%\xa4\x900״\f|xZ4\x94\x91O\xc2Nd`TE\x86\x8c|r\x06\x19W\xe6\x13\xa1#\xb3)\xf6Ǔ\x12iʓ\x813\a\xa5`P\xf76q\xb8\x17\xedz.\x9e*~\x95\xec\xa5\xfa\x836ҡ#\x89I\x1d!;n\xe4l$j\xf6\xfa\x1bH\x9cMq*\x9b(\x9ah\x80\xf6\xd0\xe9\x15\x1b7\"\xf49\xd9\xc1(؊-\x88D\xbc\xb4\n\x86֯\xc0*\xf5\x9b\xec\x10\x05\xd38c\x15L\x986\a\x01\x80.\xe6*\x98\x10h\xf7\x04H\x00\xbb?\x10\xf0\xf8\x02\xe1~\x94'$\xcfN\xa6WX\xb1u\xf1\xaem\xa9x(\xd62\xd8B\xef\xd1]\xd4\x1a\xb2s\xd5Uۀ/>\xb7\x05\x9d\u038d\xf7\x05P{bJ\xf1\xa6)q\x8fz:Ź\xea\xa5>\x1f\xe9\xddl\xb0.\xae\xf6\xe6Z+\x91\xbe_}d\x05\xfbס\xa1\xff\xf3\xefCCO\xc9\n\xa6z#\xf7\"\xe7\xb44͜r\x91\x94=\xb1\xd8[\x97K\x87wK\xe36x7ĉ\xf7\"\x1f\x9b\xe6ޟo\xad s\xf2s[\x06\xf89ɾ\xa0\xc6\x03V\xa4Һىb\x1fl\x9e\x95^\xcfQ\xafgW\x9c8\xf5}\xafs\xfe\xde\x13'vБ\xdev\xe7\x9e\x13{\x9c\xe2\xbd\xc8\xecU\r\xa7^w\x1e$s\xf2_\xf9\xf9\xed\x1b\x9bs\xda>\xc7r\xf3\xfd\xedG\xb0-\x95\x9e\xbd\xd9\r'6ο\xaa\x99\x93\xbf\u05f9\xa5a\xefZ<&\xfd\xf9նl\x9c헯d\xb7]E\x1f\xcd\xcfٻ\xe7ig\xf6\xc1\x8f\xd0U2'\xbf\xa1\xad\x8dD\xbd\x14g_\xfc\x82\xdeؔ\u007flT\xcatR\x01@\x83\xb9\n\x16 a0\xd2\x179)F\xc4\u008d\x15J\x13\xc4\vL(}2!i\xb1gj|ƙ8\x1a\xd0\t\xf9~V\u007f/\xe8fl\xc9$\xab\xf8\xf6D\xbc\xc5\xfd\x9f\xaeyS\xa6\xae\xf3<\x8a\x93\xb9RP\x88vE\x0ed$M\xc9؏\x90\xbe_}d\x05\xfb\xfb\xff\xfa吏\xfa\xef\xdf=\xac(\x98\xe2\r\x8f\xf1\x8a\x17ON^J\xa2}\x95\x19\xc5)\xf1\xc9\x194>%\xd0\xf9`b\xb7\xa7kq\xca\xe4\xe9u\xe4w\x91Vk\xdc\xc9*\xbcݤ\xf1\x80\x06\xf2\xa7$fHq*O\x12\x8d\xd0G\xbf\x9e\x9b\x1e\xa3Ѧ\x83\x1b\xf7\xae\xc8\xce\xd9HCU\xb7\x1b\xd6*\xf3\xc1~\xb3%g\xfe\xfa\x13\xf4w\x91N\xe7/\x8f\xe0\xcdO\xf0\xdeS\x1b\x9fyz#\xed\xb4\xa1[\xaf?\x9d\xbd\xf1\xbc\xf6w\x91\xb7\x1bVe\xe7l?\xb8*{#\xf9\x01d\xf6\xaf\xe6\xe3-\xee\xdc}\xba\xf9\xe9\x15{\x0ef\xe3\xe4\x0e)\xf8\xb5\x051\xce>b\x02b\b\x1dM\\\x87\x00@\x1fs\x15,\xf6yH\x9fH\xd9&&\xeb\xe2'⤅\xaa\xf8\\͌e\x00`\x00\x05\x1b\x1d\xf7\x94\x82\xa1Ҕ\t\xf8t\x9ddx4\x05`\f(\xd8\xe8\x10\x05\x8bi\x91\x98V0\x00\x885@\xc1F\a(\x18\x00\x98\t(\xd8\xe8\x18>\x80\xfc\xeaà`\x000^\x80\x82\x8d\x8ea+\xde>\xfc7\xff\xe3aX\xf1\x16\x00\xc6\tP\xb0\xd1\xf1o\x0f\x85\xf0\xb0\x05K؛\x91\xb2\x01\x00\x10\x15@\xc1FIh'\xec\xab\x16\xcb\xdf\xfcO\xf8\r\f\x00\x8c\x0f\xa0`\xa3\xe4\x8f!\x12\xf6UK\xee_O\xe9\x04\t\x03\x80q\x01\x14lԼ\xa9Ѱ\xafZ\xeaNZ\x92;ᙢ\x000\x1e\x80\x82E\x19\xdeR=t\xcc2\xb5\v$\f\x00\xc6\x01P\xb0(C\x14l\xe8\x80e\xdaE\xf6Y\xd4\x00\x00\x8c\r\xa0`Q\x86\xb7T\xfdeh\xa8\xce2\x1d$\f\x00\xc6\x1eP\xb0(\xc3[*\xb1\x82\rUZ2\xbaA\xc2\x00`\xac1Y\xc1\xda\xdd\xe2C\xe1y_u\x85\xf7̽\xf0\b\x02\xde\xe2\xf9\x92H\xd8.\xcbl\x900\x00\x18k\xccU0\xbe\xe2\x18}\x80\x1f\xef\xf1\xb6w\x9f\xf4\xd4\xdd\x03\x12&+\xd8\xd06\xcbB\x900\x00\x18c\xccU0oS7U\xb0\xa6j\xf2\xa4\xbfkQ[\xb6\xdbDxKŗ\xa2\x84m\xb2,\x05\t\x03\x80\xb1\xc5T\x05k\xf7\xf0\xe2s\xf2\xeb\xc4'\xeb\xf9\xbca\xcdc\x02\xde\xe2\xfe\x93\xa8`C\xeb,\xf9\x01\x900\x00\x18K\xccT0\xbe\xa2KZ\xe9# >\x01\xfe\xd8D|D\xe8\x1d\xc2[v\xfd\xe9\xcb/\xc5\xd6ɵ\xac\x03\t\x03\x80\xb1\xc4L\x05\xf36\xb1k\x15!$Ti\x96b\x8cM\xb0\x82\xfd?\xb9\x136\xb4в!x\x0f\xc4\xf6\x00`\xc2b\xa2\x82uzx\xad\x82\x1d\xf3\\3\xb6\x8e\x15xK\xa9@:a\u007f9v\xf4\xe8Q\xdfc\x96b\x900\x00\x18;\xccS0\xbe\xa2S\x10\x84\xeeJA\x90v\xb4\xb8\xb5+\xba\xc6&X\xc1\x06i',\xc5\"R\xca\v\b\x00\x80\xb1\xc1<\x05\xbb\xe8\x96!됡A\x9f\xbb3R\x96X\x00+X?\xfaSŗCM\x969\x9b\xb6m+u7\x05A\xc1\x00`\xac0O\xc1\x84 \xa1\xdd\x13\xa4W8\xef\xad\fD\xca\x11\x13\xf0\x96m\xfc`\xb1e\xdb_\x86\xe2\xa7\xec\xef\xbcx\xb1;8`\xb9\xe7\x88\xd4\b\x000^\x98\xa7`\"R\x1c\xecZU\x1d\x8fE\xed\x1ex\xa0\x03Q\xb0u\x96I\u007f\xfb\xe5P\x95eW`\x00\x0f\x94\x91\xe5\xe6=\x06(\x180a0W\xc1\x84@\xbb'p\r\xa1\ue2aa\xee@ po̦ؖk\x99\xb6\xc1\xb2\xeb/\u007f\xf9\xdb'\xdb\xe9\\\nP0\x00\x18+\xccU\xb0\x00\t\x83U!\xb4_\x8a\x88\xdd\x133Z\x13-\xa9\x9e\x96i\xd6/\x87\xb6Y\xaa\xe9\b\x19\x14\f\x00\xc6\ns\x15\xec\x1e\x84\xb7X\xa6W\xb6_k\xb2x\xfe\xf2\xa5e\xe1E2\x95\x02\x14\f\x00\xc6\nP\xb0(\xc3[\xe6Uw\xf2\x02?\xcd\xfa'ޒ\xd1I\x86\x91a\x14L\xef\xad\b\x82\x17E=\x8c\xecJ\xdf\x02\x14\f\x980\x80\x82E\x19~\xd3Q,`h\xe0\xc0\x03\x93,_)\xee\xba\xd7\x14\x8c\xee\x00\x05\x03&\f\xa0`Qf\xe0Z\xb0_\x9c\x1e2}v\xe9\xb1k\x11\xe2`\xa0`\x000*@\xc1\xa2\x8d\xf4\x1b\x03\x81\xbf\xd8\xdeu\x8d\xfe\xa2\xc8\"+\x01I\xbc\xf6\xb8e\xd2w?\xc1\u007f\xbc\xfc\xc8_?\xf2\x02\xd9\xff\xe3\xaf[\x1e\xf9\xe1\x1fH\xe2q˃/S\xab\xf7\xbf3\xe9\x81\xef`#˳\x0fZ\x18\x03%\xcbMƑb\xfb\xc2#\x96\xaf\xff\xf4\xe5G,O\xfc\x8cu*\xf1\xb3Ix\xf3]\xfc\u007f҇\xea\x9b8\xcb_?\x82\x8fH|X\x1e\u007f\r'Ȏ\x17nj\xcar\xf3\xa7_yA\xc9Bg\x83\x81\x82\x01\x13\aP\xb0\xb1B\x18\x18\x18\x10\xc5L\xa3`_\xdbw\xf9\xc3\xefb)y\xfb\xc1}\x97\xf7\x11}\xfa\xe9\xdf\xfd\xf4\xf2\xfb\xdf\xfc!\xde\xf3\x95\xb7/\xbf\xffO\xd4\xea\xef\xf6]\xfe\xed?\u007f\x0f'\x9f\xf8\x905\x90\xb3P_\xb2#\xd5\xf6\xfd\xcb\xff\xf2\x00\xd9|\x93ɣ\xf4\xa2\xbe\xf6\xde͟Y>\xbc\xf9\xdeט7-\xd4\xe1\xdb7o>\xfe\xec'\u007f\xf8鷱N=\xb8\xef\xb7\xfb\x1e\xfc\xb1\xa6,x\x1f\x9b\x85\x1e;B\xd5\x01`\xdc\x00\x05\x1b{4\n\xf6\x1e~\xfdO\xdc!z\xe2Ǥ\xa7\x83\xf7\xfc\x03\xd9\xf3\xe1#7o~㵛\xb2\x15\xe1\xb7\x0fJ֊\x81\x92\x85ZɎ\x14\xdb\xf7o\xde\xfc\x84n\x1e`\xf2(\n\xf6\xcf\xcf\xde|\xd6\xf2\xf2\xcd\x1f\xfe3\xf3\xa6\x85:|\xe2\xe6\xcd\a>\x14\x8d\xbeAw|\x83-\xcb\v_\u007f\x9f-\x03(\x180\xb1\x00\x05\x1b{4\n&'&\x91\x91\xe4'$!\xfeP\a\xef\xfcDV\x8d\x9b\x1f~{\x92\xb8\x8b\x8c\x03\x15\x03%\x8bd\x15b\xab\xece\x9d*\xbc\xfd͛O|\xef\xdb7\xbf\xf1v\xe8\x11?\xc1*\xf8/\x93\xbe\xf72\x11\xb1I\xf2\x0e\xa5,?\xfc\xc6oo\xb2e\x00\x05\x03&\x16\xa0`cOx\x05\xb3H\xfd\x1fq\x8f\xf8\xe6\x13\xff\xf2\xe1\x1f\xfe\xa0\xe8\x85\xc6`\x98\x82im\xe5\xc3\xc8y\x14.O\xfa\xf0\x81\x0f'}h\xb9̼\xa9(\xd8\xcd\xf7\x9e\xfdΤg\x19\x05Sʲo\xd2\xdb\xf4U\xc9B7\x91j\f\x00\xe3\x05(\xd8\xd8C\xf4\xea?\x89L\xb0\n\xa6\f\t\xbf\xf1\x82$\x0eO\xbc\xa6\x88\xc4\x03Xg\xf6\xc9֪\x81f\x14\xa9k+o\x94<*\xff\xf0\xbd\u007f\xa0\xff\x997\x95Q$\xe1g\x0f0\xa3H\xb5,\xef}\xe55M\x16\xba\x89Tc\x00\x18/@\xc1\xc6\x1e|\xd5\u007f\xf7\xbb\x1f^\xde\xf75V\xc1\x94\xb0\xfc\xbeI/\u007fry\xdf7q\xe2A%z\xfe\xf8\xb3\x97\xdfS\xac\x15\x03m$_\xdejl卒G\xb2\xc3!M\x93\xe8U^\xc3gE\x8e\xac\x92\x12\a\x1d\xe6\xc9\x1f\x80\x913ր\xb5\r\xaf`\xecy\xa6{F\xddW\x98\xa9`\xde&u\xcd\xee\xa0\xdb\xed\xf6\x84\x0f\x83\xb9l\x97t\x922\xf6\xb2\x81\x81B\xd2\x03\xfb\xb8\xd1\xc69\xcakf\xe0/\xba~\xff\xac\xb2\xeb\xe8z\xd9,?>\xcd\xce\xfa\xfd\xa2\xca\r46f-\x98\x91UR\xc4\xf5\x92\xce\\Ys\x99\xbdH\x93\x8d\x81\xec\xcd\xda]\x9e\x95v\xc1 \x9b\xfe!PϬ\x05\xf5\x87WsT\xc1\\\xdc\xd6\xe6\x1a\xc72,)g\xb9\xa2\xc6\xe3\xf5\x0eN+\xd4͜\xab\xb5\xb1\x80\xeb0*\x03\xe3a\xf4uk\x9dŕ\xe4q\x8eݎ\x1a\x03\xbf\xfc\a\xfe\x05y~\xbf_\x1bJ\xbe\xfe\xfcJ?\x8f\xdf[\xf9\xfcu\xdc\xd4ܢ\xc6ÎB\xa3\x92\xb1\xa8u\xd3`\xe7\x9656.\xc1\x8d\xca\x14\x9d\xf5\xa0fc*\xd4\xffA\u058bW\xe4\x1a뢶\xaf\x18\xaf\x92\x02\x91\xadi\xcb\xde:^\xce\xd5 M\xd1U\x98B\xea~B\x9a&ѫ<\xcb\xe0\xa2\xcc\xda2{Z\xfd\xea\x1a\xe6\x030r\xc6\x18hl#\xf4\xc1\xd4\xf3L\xff\x8c\xba\xaf0Q\xc1:\x89b)}\xb0`\xa0\xbd:l$\xbf\xd7\xf6\xa2NR\xc1N\xbe\xd8\n\xc4d:ַ\"\aI\xbaȩ\xf6\xbc<\xf1B\xe9\xa7-\xe3H\x1f\x04\xff;\xce\x1dGd۬\xcd\xc6\xfa\x9d\x8b\xcd\xfa\xb2\x96\x1bf\xd3=\xc4\xca\x05\xf8*\x13\x96\x90\v\xa8\x99{\x17\x91s\x12\u007fi\xd6:h\xcfh\x96\xf6|\xebo$W\xe4\x92]M\xa7\x00\x00\x00\x11\xe6IDAT\xe7hv\xbd20\x1eF_\xb7\xcc\"\xec\xef0\x9d\x8cb\xe0Ww\x94\xf3\xae؛YDm\x1d\x9f\xe1\xa3\x13[#\x0f\nl\xdd\x18\xec\x8b\x06\xb08-X.\xfd%\x15]\xf5\xa0ɦT\b\x95\x93\x8eK\x91\xf14\x1a\xb6}\xa9S:\x8c\x1f\xc8Z\x83\x8f6\xd8؇آ30G\xd3\xff\x844\xa3H\xddʫ4r\xb83W\xcb\x11qf?\x00\x16\xc5\x19c\xa0\xb5\x8d<\x8a\x94\xdą\xbc\xf7\x11\xe6)\x18_\xd1)\bBw\xa5\xa0\xb4\xfe@uS\x18\xfb\x97l\xbd:I\x05\xbb\xab\xa3c\x89\xa4`\xe4\x1c\x17cP\xad\xf6~ԟ\xe6\x97m\x94\xab\xdc.9pI\x17\xa6K\x9b\x8d\xc1Ngm\xd4r}F\xd9\xf4\x0e\xd1\xc7Փ\x972\xe2\xacp\xee \xae\xa7\x90\x85m/e\xce}\xa9\xfe\x9c\x10:\xe1\xe3\xb3\xda5sgqKhv\xbd20\x1eF_\xb7\xccF|}\xf0h\xe7\xf3\x86~u\x15\xec\x1c7\xd0\xffn\x9f`?\xa7\xb15\xf2\xa0\xc2ԍ\xc1\xfe*ي\x8d\xca(\x98\xea\x81ͦT\b]\xc2\xc200\xa3\x15\x19\xc1\xb6\xaf\xaa`͜:\x8a\x8dTH\x83O\x88U0\xddʫ\xecLG\xe4F\xd3!\xa4\xfd\x00X\x14g\x8c\x81\xd6v\xc4\nfT\xde\xfb\b\xf3\x14\xec\xa2[&\x80\xa4G\x01\x9eq\x1b\u007f\x97\\\xb1\xbbt\x92*\xe4#mnU\x92\xd2i*8\x0e\xa1C\x0e٫z\x95\xcbQ\x9e\x95\xa2\xe6\x15,\xd7fc\x10\xf3\xf8\xb9\xb3F\xd9\xf4\x0eq\x96\xa3\xc2B\x9d-\x91\x02\x1f\xe4+\xbe\xaf\xbep\x11\x1e\xc2!\r\x1d\x8e\xac\x9d\x87\xfcyK\x94\xec\xa1e`=\x8c\xban\x99\xc7Q\x87\rQ\x053\xf0\xab\xab`\x03\xb6s5\\Y\x0f7\xa0\xb15\xf2\xa0\xc0\u058d\x81mTF\xc1\x14\x0f\x9alJ\x85\x10ZS\x82\x8e\xa7\x87\xb9\\\x99\xf6U\x9d\xd5\xd0B\x8bD,\xa4\xee'4,\x92?\xac\xf2*5\xe4n\xf8q\xda\ac?\x00\x16\xc5\x19c\xa0\xb5\x1d\xb1\x82\x19\x95\xf7>\xc2<\x05\x13\x82\x84vO0(\b\x95>\xba\xebL\x85\xb1\x82m\xe5zt\x92*\xd2Gz\xee3\xedi\xba\xf59\xf4\x9c\x12\xf5W\xafr\xe5[p.}\x99\xebB\x06g7\xb2\xd3\xdc\xf5\x1co\x94M\xef\x10\x9fq\xb5Ԍ8+\x9a{\x96\x82\vv\x96\xf4\xe7\xfa\x1a\xed\xb5\x88e\xd1r2\x88)4V0\xc6\xc3\xe8\xebF\x14\xcc.*\x98\x91_\ua87e\x17iXԘ\xb7r\xd1!\xdaSPm\x8d<\xa8\xb9\x98\xba1\xd8\xe9-c\xb1Q\xf5\x14L\x93\x8d\x11\xd4Î\xc1p\xbf\xc5`ۗ:\xa3\x9d\xe0V\xb6\x0f\x16\xa1\x90\xfa\x9f\x10\xdb$\xfa\x95W\xe9\xe5\xd6\xf4\x9e[\xb0\x92\x9cȚ\xb3\x84Aq\xc6\x18hmG\xac`F彏0O\xc1D\xc48X\xd5\x01\xb2\r7\x8a\x8c\xd4\x05\x93?\xd2̝\xdaӴ\xc3~Ůđ\x87_\xe5\xcd4\x8a\xd1(Ɗ\xf4\x15́Oo~n\x9ea6\xddC,\xcf\xea\xc3c\t;qv\\\f\x94\x94\xe1\xef\xc9r\xee8I\xe6i\xa3xYī\xb0\xc4X\xc1\x18\x0f\xa3\xaf\x1b\xa3`F~\xf3pe\xaf\x84\xde\xf0{\xfe%\xdbq\xeeE\xea[\xb55\xf2\xa0\xc0\u058d\xc1\x9eE\"S\x8b\U000a4fc6)\x98&\x1b\xa3`\x83\x8e\xc3\xe9\xf2 \xb2\xb7|\xd8-N\xb6}\xd3\xf0\x89 ,'\xce\xfa3\xf3\x06\xf1\xcbV\"\xf6\x91\n\xa9\xff\t\xb1M\xa2_y\x95\xb3\x9c\x83\xe3\xf2\xe8\\\x1f\xcdY\xa2\xe7\x8c1\xd0\xda2\n\xa6SM\x82\xd4fF彏0W\xc1\x84@\xbb'p\x8d\xcchm\xea\xec\xee\f\x17\xc9/Q\xfb]%:]0yN\xbe\u007fV\xc9\x15\xbf\xcdՁκl~r\x1a\t\x99\xab3i\xc7n\xf0\x03\xbfߎmx$tлA\xbd4c\x11\xb7\xb3y'WDg[3\xd9T\xc8m\xb3\xfa\x05\xe9=\x06\xd9\xf4\x0f\x81.\xa4e\x95\x97\xa5s\xb6w\xf1hb'\xf7|\xe3!\x179C˹\xb4\xb2f\x9c\xd4Frʹ\xc2\xda\xdd\xcb8\xc7[\x1dFeP<\x8c\xben\x17\xd2k\xfa\x1bm\xe7\xfa\x9fϻd\xe8\xb7\xdc^s(/-\xe4n\xef\xee\xb4Y\xc2\x02\xfb\ue4062\xf0\xa0\xa0\xd6M\xe3\xccέ\xe9h]\x89\x1b\x95):\xebAͦ\xa9\x10>\xde\xdct\xb9\x9b^\xc0\xa5\xf5!-l\xfb\xaet\xec\u07bd\\\xfc\x00Z\xed\x8bj\x9b\xb7r\xf5#(\xa4\xfe'\xa46\x89~\xe5Y\xce\xd9[\x9b\xfdW\xc4B\xb2g\x89\x8e3\x8d\x81\x9a\xa4s\xf2k\xe4:\xebT\x939ό\xca{\x1fa\xae\x82\x05H\x18\xac\x8a$\x9a\xaa+\xeaZ\xd4xE(\xd7ӊt\x92*\xca\xef\"\xb9\x9a\x17\xf1\xc6v\x81L\x99\xa1_L5\xf6\x1ajqVz\xbf\x1e\x9d\x13\x13b\xe0A\xa8Y\x92\xb6\xa4V\xa0\xbfxc\xb3)\xd8K\\\xb32\x8b\xae \x83l\xfa\x87\xc0\xfd\xaf\x82\xf4\xb9%\xefڨ\xb3\xe3y\x8e\xf4\x95\xe4˵qey\x96-3/\xe4t\x13j\x16\xd8\x1d\x85\xf5\vlyFeP<\x8c\xben\xb8\x83\xd08\x83Kk\x14\xc37\xfa~\a\xb6\xa6\xdb\xf3B'@\x9c\x9dU\x86U\xac#\xd4֠d2j\xdd4\xce\x16\x95\x17Π\x8d\xca\x14\x9d\xf5\xa0f\xd3T\x88\x84ȕ\xfew}ڰI\x1al\xfb\xf6\xe4\xd9g\xac~U,NOa\u058c\xe5\x87FRH\xfdOHm\x12\xfdʳ|`#嵭<\x87BΒ\xe1\xce4\x06j\xd2%5\x89\xd8\xf5\u0529&s\x9e\x19\x95\xf7>\xc2\\\x05\x1b1\xafr\x1f\xeb$\xc7\x03et\x06L\x00\xfa\xed\xea\xc5z\x88\v\xed\x9cL\x00\xae\xa7\xbdx]\x10\xfa\xce\x16\xa6G\xabp\x13\xb2\x9a\x13\x88\x18Q0\xf3\x1e\xab\x03\n6\x91hT\xee\xbd\n\xef\xce\x1a\xdf\x13ad\x1c\x92F\xb9\x82#4\xfauwL\xd0jN bD\xc1\xcc\x03\x14l\xc2Pފ\xf2\xca\xe4?\xae8J\x8c\x83\x0e\xe6qV\xba\xf1y\x8e\xd3\r\xc0\xdf1\x13\xb4\x9a\x13\bP\xb0\xb0\x88\x91[`\"\xd0\xcf-{)s\xa2\x8f\xa8\x04W\x9a\xab\xb1\xb5\x11o#Y\x02\xd1\x01\x14,,4r\xdb\x1b\xc9\n\x18\x17\xca\xd2\xf2\"<\xf8o\"pxu\xa6-sMtƐ@d@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]@\xc1\x00\x00\x88]bK\xc1\xcc\xfby$\x00\x00\x13\x11\x93\x15\xac\xdd\xed\xd5I\x1a\xf11\xb7S')3ҕ\xd8k\x8d\x97\xebR\xd6\xe7\x02\x00 &0W\xc1\xf8\x8ac\x95Ó\x86\x14\xa9\xeb\xdc\x16\r[\xf2v\xc4+\xb1\xf7\xf9\x97\x1b\xfeZ[Z\x9f\v\x00\x80\xd8\xc0\\\x05\xf36uW\x0eO\x1a\xd1Õ\xe8$U\x86=JΈ\x02\xe3\xe7M\f{\xca4\x00\x00\x13\x18S\x15\xac\xdd\xc3\xcb\xebE2IC\\j\xbf\xcb5\xbc\vv\a\x80\x82\x01\xc0=\x82\x99\n\xc6Wt\xc9+\xde2ICzm[u\x92\x12\xba\xab\xd77\xe2}\xe5\xca:\xf5\xea\xb2\xeeX\xc1\xb6\xe2\x9dv\xb2ʌ\xbar\xfc\x95\xa2\xcc\xf4B\x18E\x02@,a\xa6\x82y\x9b\x945\xbb\x99\xa4!.\xdb%\x9d\xa4\x8c\xde\xea\xf5\xfd\xfeYe\xd7\xe5u\xea\x99eݱ\x82])\xe2jȃ\xbfԕ\xe3{f-\xa8?\xbc\x9a\x03\x05\x03\x80\x18\xc2D\x05\xeb\xf4\xf0\xb2l1ICzm/\xea$Y\x94U\xbb\x94\xd5둋,\x97\xf0<\x99x\xc1.\xeb\x8e\x15\xac\xc6N\x9f\xe0Ĭ\x1c\xbfrA?Ys\v\x14\f\x00b\b\xf3\x14\x8c\xaf\xe8\x14\x04\xa1\xbbR\x10ؤ1/\xa9O\x1ad\x92,\x8a\x82\x11\xc5\x12\x03Z\xad\xf6~ԟF\x16\xd0f\x97u/(/\xe3ę\x17\xea\xca\xf1}t\x89!q\x8dT\x00\x00b\x04\xf3\x14\xec\xa2[&\xc0$\r\xcd#.y\xab\xb7r*\x12\x1c\x87\xd0!\xba:\x04\xbb\xac{\x81c\xc6\"q-+u\xe5\xf8\xb3\x1c\xd19\x88\xe4\x03@La\x9e\x82\tAB\xbb'\x18\x14\x98\xa4\xa1\xf9Vu\x9dۭ:K\xde\x12t\x14\fm}\x0e=G\xa3\xfe\xec\xb2\xee\x05\x8e\v\xbd\xb3\xe8R\x8b\xea\xca\xf1\x9fq\xb5\xd4\f\x14\f\x00b\b\xf3\x14L\x84\t~\x85\x8d\x83\x8d\xa0\v\xa6\xab`\x1d\xf6+v\xbaT\a\xbb\xac;\x99M\xd1l#\xbb\x99\x95\xe3\x97g\xf5!\xd4c\x97\x14\xacww\f<\x92\x1d\x00\xee{\xccU0!\xd0\xee\t\\\vM\xeaQ\xa2\xf6\xbbJ\xf4\xba`\xfa\xab\xd7c\xb7\x99\xab3C\x96\x80\xef\xf3/w}0\xd8_\x90\xd9z\x9d]9\xfeBZVyY\xba\xb8N=Y\xec\xfdG\xc3\x0f\x02\x00\xc0\x04\xc3\\\x05\v\x90\xd8WUhR\x87\xebiE:I\x06\xfd\xd5\xeb15\xf6\x1a\xd1BYֽ\x96\u061d%s\xc5\xc8\xe2\x83\xea\xca\xf1=\x05\xe9sK\u07b5\x89\xd9\xea\x1d\xf5:G\x01\x00`ba\xae\x82\x8d\x98W\xb9\x8fu\x92\x00\x00\xdc\xe7Ĉ\x82\xc1cu\x00\x00\xd0!F\x14\f\x00\x00@\aP0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\x00\x00b\x17P0\xf3\x18\xe8\xef\xef\x1fDh\x10\xbf\fD\xb2\x05\x00@\x0fP0\xd38\x16g\xb5Z\x13y>\x11\xbf\xc4\x1d\x8dd\r\x00\x80\x0e\xa0`c\x88wf\x10\xa1k3\r\xd6\"\xaf\xb6z[Z\xda\x11joi\xf1Z\xab\xf5m\x00\x00\b\x8b\xc9\n\xd6\ue997w\xbf\x87>c\xda\x13\x8d\xc1\xd4~\xabDR\x18oMI\x06\xb2\x12\x9ek\xf9I\x89sF\xbc\xb0\xee6k1}\x89ۦ\xfbv\xb5\xb5[Nv߁\x82\xdde\xd1Gʩ\xef;Ern\x871\xca9a\xfc&\x00\x8c#\xe6*\x18_q\x8c>\x98\x95w\x9f\t`\x82\x91\xecG\x02\u007f,>ׇ\xd9`\r\xe3Λ8r\xc9`\x98\x9d\xec\xceM\xe4#YI\xec\x8a\xf3\x88\t\uf8e5z\xefGR0\xdf\xe9\xe1\xfb\xd0]\x17}\xa4\xdcj\xcb~\xa5\r\xb3\xc7\xf9\xb9\xb1щ\xf9G\x8c\xdf\x04\x80q\xc4\\\x05\xf36uK\n\xa6\\\xccQ \x81v}*\xc3)\x18\x1aqG\x8a嚵\x14\t#\x15\xb0\x8b\xf1\x1b\xe4\xe4\xa6\x04\xbd\xeaER\xb0鋇\xef#\xdcU\xd1\xef\x80\xec\xbdd{\xd0y#\x8cM\x98\xfe\x19\x00\x8c'\xa6*X\xbb\x87\x0f\x8c\x99\x82u\xad\x8bdw\xc7tY\xef`\x00\x97\x9b\xach\x1d\x9f\x9c\xabc\x10I\xc1R\r\x14l\xac\x11\x15\xec7o\x80J\x011\x80\x99\n\xc6Wt\xa1\x91)X\xb5\xd5j-F\xc5x[\x8d\xf8\xc5\xc9\xf1)\xf3\xce\xe0\xbdg\x1e\xb5Z7u-\x9d\x9a8gPc-*\x18&\xdf\x1a\xef^7-qvw\x88\x87D\xab5\x8e>\xd0Z\xebaWjb\xea.m6\x86\x81$1\xbc\xb6\x8e\x18\xc4U\xe2>\x96uZ\xa8m\xd7¤\xf8\xe49tɸ\x81\xc9J\x17\fw\xc2\x12\xfb\xd10\xf4\x14\xec\xe8\xec\x94\xf8\xa49)\xb8w*\x05\xf3R\xb5\x85T\x8b\xae9ppiRʺuI\x9a\xf1e\xf7d\xc9\xc5dm=n7\xac\x9f\xbf\xb6\x81\xcaS\xdb\xe6\x15\xd9\xcfl^\x11\"U\xa2\x82a^qf\x1f|c\xd5\xfc\u037fG\xe8\x88\xd3\xe9܋\xf6\xe2\xed\x11tc>}\xc1|\x94\xedt\xee\xf9t\xfb\x8a\xec\xcd_0~\x99l\x000֘\xa9`\xde&\xa4(XS\xb5\xbb\xea\xa8\xcee.\xc2\x1f\x9d\xbc)\x88\x82\x9b\xa6\x1c\xe5\xf1\xb5\x9d뫞\x17ׂP\u007fuUʓ\x93S\xd6-\xb5j\xafфM\xfd\xfd\x8bI\x0f\xac\xb3\xeaQkRq\xe9\xe4\x85Z\x0f\xe8\xa4\xcf'\xaa\x9c\xc6Cn\xc2&濾\xa5\x9al,g|U\xd6b\x9f\x0f\xebS\xc0\x17\x8f\xb3\xb7\xe4&\x84\xd8\xfa\x12S\xb75\x15[i\xd4\xeb\xb4էf=fmA\xc3\xd0Q\xb0\x93֥\xd5M\xee$+\x96\xaac\xbe'3|>_gH!\x95\xa2\xb3\a\x1e\x98\x96\xbc\xab8!\xb1b6\x1bo\x1b\U00014284\xdc\x1fّ\xbd\xe7Ԟ\xec\xed8\xf5\xcb\xefo?r\xea\xe03\xce/4\xef\xa3\xec\x9fܺ\xb5\xe5\r\x9c\xf8\xe8H\xb63g\xef;\xf3\xb7 t\xa3m\xfeO>G\x9f\xef}\xba\r\x8f-Ϸ\xb5\x89*w\xebȑ\x15\xab\xe6缱\xfd\xfbW\x19\xbfL6\x00\x18kLT\xb0N\x0f\xaf*X\xe5\x99\xee\xce\xea*㻇\xb9dH\xb5\x98\f\xc6\xf8j2:K\x15\xe5%\xd5:\x1b\xff\x15\x12\x9aJ =\x8fybr\n\xbe\xea\x97&i=\x10\x12\xe5~\x9a\xe2\xe1\x80\xf5\x00\"\xdb\xfd\xdal,\xea(\x92\xaaHq\x02\xd2\xd8\xf6\xa7\xcc\xc1\x15\x18\xa8\xa6+.y\xad\x17Ռ\xba\xa3D\x1d\x05ەD\xfb\x82Sh\xa8\x8b\x19Ej\xaa)\x17]=p\x95\x15wIwYۑ\x86\xe0E\x11m8\xf0\x94\xf3\x94\xbcm\xc8!\xda\xd5\xf0th\x1f\x8c܉\xdc,&\x9f\xc6\x1d\xa9\xed9$\xb9\x83h\xde\xf6\x1d\xb2\x8d\xdcO[\xeb\xdcx\x03ݾ\xa1\xf1\xcbf\x03\x80\xb1\xc5<\x05\xe3+:\x05A\xe8\xae\x14\xf0\xe5*\xb4\x93\xeeW\xbfG\xa7\xa7\"\xe1K\xe4\xf1\x10\x8avk\x82\xbb\xe6L\x9dL\x86W\x98T\xbd\x18yBnKK\xaa\xa4`D\xb1D\xa5a< V\xc1d\x0f\xb9\xd3\xe8˴\\m6\x16}\x05Sl\xf7\x13!\x91\xa9\xd3*\x98\xce*L:\n֝<5\xdf}F\x10\x85\x9cU0\xb6\x9a\x8a\x82)\a\xde0\x05\r\x0f\xd2]\x94g\x95h{\xa8;\xd6җU\xaf t5g\xc5\xeb\a\u007fu;4ޕ\xbd\xe3\xfc\xf9\xb5\x92\x82\x11\xc5ڛM\x92mٷЭ\xf9m\xb2\x8d\xa2`\xd9W\xc5\x04\xe3\x97\xcd\x06\x00c\x8by\nv\xd1-\x13\x90w\x1d\xad3\xb4\x1eL\xaaCuI\xa4oҒ\x9c\xb2\xa1Η!)\xd8t\x1d[\"/\xfb\x9b\x94\xa4\xa44\xaa\a\x82\xaa`\xb2\x87\x99\xa2\xe6͙\xae\xcdƢ\xaf`J\xb2\xd4\xca\f\x83[\u0601c\x8b\xf5\x18\x1a\x86^\x1c\x8cw/\x9efM\x12珱\n\xc6VSQ0\xe6\xc0A\xd2{\f\xe9\x83\xf9\xbc\"\xcch\x16\xb3QԦ\xcd\xeb\xf1\xe6\xc6\xc1-\xab\x9cϼ\xa3\x13\a;զ$%)\xfa\xe2\xe9\x13\xe8\xc43\xb2\xa9\xaa`\xeb\xa5\x04\xeb\x97\xc9\x06\x00c\x8by\n&\x04\t\xed\x9e`P@M\xa22\xf8\xc2\xdc\xea\xcb_\x88\x16\xe6\x93Ĵ\x99d4\xb5PR\xb0\x90X\x15E\x8a\xe4\x9f\tj\xa5H\xf1@P\x15L\xf6\x90;\x95\xbeL\xcdE#U\xb0M!\n\xd6defp\xf1\xca\xfd\x04\xf2v\xbc\xce\x1c\f\xbd8\x18\x89\xfe\xf3U\x89\xe4~\x82\xa8`\x15\xd4FS\xcd\xe1\n\xd6\x1d7\xa7\xfb\xccԙ#\x9af\xb1\x83\x06\xeeo\xaf\xc0ݤ\xf3{p\xf2Ƒ\xec\x06\xad\x85\xa4N\x1f\xdd\xd0J\xd1\xeb[Ж\xd7Cl\xb0\x82m\x91\x12\x8c_P0`\xfc0O\xc1D\xc48\x98\x97v\xbe\xaey\x98QX(-\t\x81\x04ګI!W\xb3\x90*)\x98ތ\x03I;\x927h\xa5H\xf1@P\x15L\xf6\xe0\xa5#\xbd**R\x11\x15,\x11\xfb\x16\xa6\x87(\x18\x9f\x9cA\xc6\u007f\xf9\xe24\x8e\xc5S\x15E\x11\xa6\xcdA\xc3\xd1Q\xb0b\x1a\x8bC\x19Th32\xf0\x88Y|CS\xcd\xe1\nvښd\xb5f(]ٰ\x9c\xa2\xb7\x11\x8f\x90x\xd5^\x1a\xb4B\x1b_\xa1oto\x93\x86\xbd\x92:\xe5\xec\xd1J\xd1/\xb2\xaff\xffB\xf62\\\xc1\x18\xbf\xa0`\xc0\xf8a\xae\x82\t\x81vO\xe0\x1a\xbez\xdc\a\xba\xbaOVx\xc3\xf4\"\x84\xe4\xd9\xc9\xf4\xedb\xeb\xe2]\xdbR\xf1P\xabe\xb0\x85ޯc\xe2M\x04yN\xbeo\xf2\xba\x80/>\xb7\x05\x9d\u038d'7\x10U\x0f\x03->_B\xae\xef(\x8f4\x1e\x96\xc6m\xf0n\x88[Jo52\xd9\x14\xc4{\x91-\xd4\xc5̤m\xdbfZ\x1f\xf5tjl}\x8fMs\xefϷVP\xf3\xae8\xe5\xce`\xa9Uoz\xbd\xae\x82%\x16{\xebr\xc5ۘ\xc5\t\xa5u\xb3\x13\xbb5\x85T\x8b\xce\x1e\xf8tB\x93\xd7\x17\x18Q\x17\f\xa1\xed\xce='\xf68I\\~\xafs\xfe\xde\x13'v8\xc5\x11\xe3<+\x95YyN~\xdb\xfc7\xae\xe2\xe4\xcfo\xff\xf2\x95\xec6\x12뺝\xb3Y\xfc\xa1\xd1ퟷQ\x9b\x1b\xe8\x8b_\xb4\xad\xda\xd8\xd6\xf6\xa9֯6\x1b\x00\x8c)\xe6*X\x80\x84\xc1H\xd7'\xd8T\xe5\U000761fd\x06K\x13DE\x10J\x9fLHZ\xec\x99\x1a\x9fq&\x8e\x06\xaaC\xfa7\xca\xef\"\xad\xa5\xf9x\x13\xdfN\x9e\xfd\x90\xcfz8)泺\x91ƃ@\xe7\x83\td\xaa\x95&\x9b\xc4\xc0\x14j\xfbh'\xf9\xa3+#q\xf2\xec\r\xd8@k۵8e\xf2t9\x98\xb7\xe91)\xf8u4Qwrm\xb5\xb5K~\xbaN\x97\xa4`\x95\x19\xc5)\xf1\xc9\x19b\xe4j \u007fJb\x06\xee4\xb2\x85T\x8b\xce\x1e\xf8X<\xd9\x17\x9f\x11\x12\b\xd3\xe7v\xc3Zi>\xd8\xc1\x8d{Wd\xe7l\x94\xa2\xf3\x9e$7y9\xe5\x94ix\x05o\xb2\u007fEf\u007f\xd1^Z\x834\xdc\xfc\xa5\xf4\xfeA\xf4\x91\x98ج\xf5\x1b\x92\r\x00\xc6\x12s\x15\xec\xdef]<ե\xaa\xf8\\\xed\x8c[\t:iUz\xba\x0e\x9d\xc3q\xb7\x04\x13\U000c30c3\xfcɅSF\xfa\x8b'\x00\xb8W\x00\x05\x1bCJS\xc8\xd3u\x92\xf5\x1fM\x81\x06ϴ\xc8O\xd7i9\xa3\xabq#\xa4N\x9c?\x86\x84\xa4\xd1\xe8 \x00\xc4\"\xa0`\xb1\xcf\xe98q\xf8\xd8\x1e\x17\xe6N\b\x00ܓ\x80\x82\xc5>Bnb~\x95\xaf*?Q\xef\xf7\xe3\x00pO\x03\nv/\xe0\x9d\x9d\x1c\x9f<\xe7\x0e\x1e\x9c\x01\x00\xf7\b\xa0`\x00\x00\xc4.\xa0`\x00\x00\xc4.CC\xff\x1f\xf8\xaa\xf0z\xf7Oɏ\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/help.html": ` + + + + + +

    + When invoked with the -analysis flag, godoc performs + static analysis on the Go packages it indexes and displays the + results in the source and package views. This document provides a + brief tour of these features. +

    +

    + The current status of the analysis features is that of a technology + preview; there are many problems and user-interface difficulties + which will be addressed in due course. Some known problems are + mentioned in passing, accompanied by a warning triangle, . + + Nonetheless, godoc's static analysis may be immediately useful today + for small-to-medium sized Go corpora, and it contains several + advances over the state of the art in code browsing. +

    + +

    Type analysis features

    +

    + godoc -analysis=type performs static checking similar + to that done by a compiler: it detects ill-formed programs, resolves + each identifier to the entity it denotes, computes the type of each + expression and the method set of each type, and determines which + types are assignable to each interface type. + + Type analysis is relatively quick, requiring just a few seconds for + the >200 packages of the standard library, for example. +

    + +

    Compiler errors

    +

    + If any source file contains a compilation error, the source view + will highlight the errant location in red. Hovering over it + displays the error message. +

    +
    +

    + The mark-up for compilation errors may + cause duplication of portions of the input. +

    + +

    Identifier resolution

    +

    + In the source view, every referring identifier is annotated with + information about the language entity it refers to: a package, + constant, variable, type, function or statement label. + + Hovering over the identifier reveals the entity's kind and type + (e.g. var x int or func f + func(int) string). +

    +
    +
    + +

    + Clicking the link takes you to the entity's definition. +

    +
    + +

    Type information: size/alignment, method set, interfaces

    +

    + Clicking on the identifier that defines a named type causes a panel + to appear, displaying information about the named type, including + its size and alignment in bytes, its method set, and its + implements relation: the set of types T that are assignable to + or from this type U where at least one of T or U is an interface. + + This example shows information about net/rpc.methodType. +

    + +

    + The method set includes not only the declared methods of the type, + but also any methods "promoted" from anonymous fields of structs, + such as sync.Mutex in this example. + + In addition, the receiver type is displayed as *T or + T depending on whether it requires the address or just + a copy of the receiver value. +

    +

    + The method set and implements relation are also available + via the package view. +

    + + +

    Pointer analysis features

    +

    + godoc -analysis=pointer performs a precise + whole-program pointer analysis. In other words, it + approximates the set of memory locations to which each + reference—not just vars of kind *T, but also + []T, func, map, + chan, and interface—may refer. This + information reveals the possible destinations of each dynamic call + (via a func variable or interface method), and the + relationship between send and receive operations on the same + channel. +

    +

    + Pointer analysis is currently quite slow, + taking around two minutes for the standard library. This will + improve markedly with the planned addition of a constraint + optimizer. +

    + +

    Call graph navigation

    +

    + When pointer analysis is complete, the source view annotates the + code with callers and callees information: callers + information is associated with the func keyword that + declares a function, and callees information is associated with the + open paren '(' of + a function call. +

    +

    + In this example, hovering over the declaration of the + rot13 function (defined in in strings/strings.test.go) + reveals that it is called in exactly one place. +

    + +

    + Clicking the link navigates to the sole caller. (If there were + multiple callers, a list of choices would be displayed first.) +

    + +

    + Notice that hovering over this call reveals that there are 19 + possible callees at this site, of which our rot13 + function was just one: this is a dynamic call through a variable of + type func(rune) rune. + + Clicking on the call brings up the list of all 19 potential callees, + shown truncated. Many of them are anonymous functions. +

    + +

    + Pointer analysis gives a very precise approximation of the call + graph compared to type-based techniques. + + As a case in point, the next example shows the dynamic call inside + the testing package responsible for calling all + user-defined functions named ExampleXYZ. +

    + +

    + Recall that all such functions have type func(), + i.e. no arguments and no results. A type-based approximation could + only conclude that this call might dispatch to any function matching + that type—and these are very numerous in most + programs—but pointer analysis can track the flow of specific + func values through the testing package. + + As an indication of its precision, the result contains only + functions whose name starts with Example. +

    + +

    Intra-package call graph

    +

    + The same call graph information is presented in a very different way + in the package view. For each package, an interactive tree view + allows exploration of the call graph as it relates to just that + package; all functions from other packages are elided. + + The roots of the tree are the external entry points of the package: + not only its exported functions, but also any unexported or + anonymous functions that are called (dynamically) from outside the + package. +

    +

    + This example shows the entry points of the + path/filepath package, with the call graph for + Glob expanded several levels +

    + +

    + Notice that the nodes for Glob and Join appear multiple times: the + tree is a partial unrolling of a cyclic graph; the full unrolling + is in general infinite. +

    +

    + For each function documented in the package view, another + interactive tree view allows exploration of the same graph starting + at that function. + + This is a portion of the internal graph of + net/http.ListenAndServe. +

    + + +

    Channel peers (send ↔ receive)

    +

    + Because concurrent Go programs use channels to pass not just values + but also control between different goroutines, it is natural when + reading Go code to want to navigate from a channel send to the + corresponding receive so as to understand the sequence of events. +

    +

    + Godoc annotates every channel operation—make, send, range, + receive, close—with a link to a panel displaying information + about other operations that might alias the same channel. +

    +

    + This example, from the tests of net/http, shows a send + operation on a chan bool. +

    + +

    + Clicking on the <- send operator reveals that this + channel is made at a unique location (line 332) and that there are + three receive operations that might read this value. + + It hardly needs pointing out that some channel element types are + very widely used (e.g. struct{}, bool, int, interface{}) and that a + typical Go program might contain dozens of receive operations on a + value of type chan bool; yet the pointer analysis is + able to distinguish operations on channels at a much finer precision + than based on their type alone. +

    +

    + Notice also that the send occurs in a different (anonymous) function + from the outer one containing the make and the receive + operations. +

    +

    + Here's another example of send on a different chan + bool, also in package net/http: +

    + +

    + The analysis finds just one receive operation that might receive + from this channel, in the test for this feature. +

    + + +

    Known issues

    +

    + There is no UI indication of the state of + the analysis (pending, complete, failed) during warm-up.
    + + All analysis results pertain to exactly + one configuration (e.g. amd64 linux). Files that are conditionally + compiled based on different platforms or build tags are not visible + to the analysis.
    + + Files that import "C" require + preprocessing by the cgo tool. The file offsets after preprocessing + do not align with the unpreprocessed file, so markup is misaligned.
    + + Files are not periodically re-analyzed. + If the files change underneath the running server, the displayed + markup is misaligned.
    + + Additional issues are listed at go.tools/godoc/analysis/README.
    +

    +`, + + "analysis/ident-def.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x03\xd2\x00\x00\x00\xf5\b\x03\x00\x00\x00\x8b\f=\xff\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE!# #$\"$%#($#&'%'(&-'\")+(4,\",.+01/>/\"241A2%685G6$8:7;<:Q9$>@=W>#AB@CEB\\B'cC$GIF\x00f\x00\x00g\x00\x00h\x00gF'\x00i\x01KLJ\x00j\x02\x02k\x03\x04l\x05mJ&\x06m\x06sJ(OQN\vo\b\x0ep\nwN&\nq\x16TUS\x10q\f\fr\x17\x0fs\x18~R%WYV\x12u\x1a,`\xae7]\xad\x15v\x1c\x86T)\x16w\x1d[]Z9a\xab\x19y\x1e^_];b\xace\xaf)z ac`+{\"(|*\x92]%cebAh\xb2egd+\u007f,\x9a_)Li\xafDl\xb0.\x81.ikh0\x830Ho\xb31\x841/\x858Jq\xb6mol\xa3f);\x86:Us\xb3\xabg->\x88B\x8c@\xb3m,vxu@\x8dGC\x8dA\\z\xbbxzwI\x8dH]}\xb7K\x8fJ\xb9r*_\x80\xbaM\x91L}\u007f|\xc1s-O\x93MP\x94Oc\x84\xbeN\x95U\x81\x83\x80\xc7x+W\x95VX\x97Xm\x87\xbcY\x98Y\xd1z(Z\x99Z[\x9aZ\x87\x89\x86\\\x9b[r\x8c\xc2\xd6~-^\x9d]\\\x9dc\x8a\x8c\x89d\x9ddz\x8f\xbff\x9ff\x8f\x91\x8eh\xa1hޅ+~\x93\xc4j\xa3j\x92\x94\x91k\xa4ky\x97\xc6s\xa4lq\xa5s\x95\x97\x94\xec\x8a,\x83\x9bŘ\x9a\x96\x9a\x9b\x98u\xaaw\x86\x9e\xc8\xf1\x8e/\x9b\x9d\x9a~\xaay\x88\xa0˞\xa0\x9d\x80\xad|\xf7\x93-\xa0\xa2\x9f\xfd\x92/\x81\xb0\x85\xa2\xa4\xa1\x92\xa5\xca\xff\x952\x82\xb2\x86\xa4\xa6\xa3\x83\xb3\x87\x8b\xb2\x88\xa6\xa8\xa5\x96\xa9\u038d\xb5\x8a\xa9\xab\xa8\x8e\xb6\x8c\x9e\xad͍\xb8\x93\xac\xae\xab\x95\xb8\x95\xa1\xb1ї\xba\x96\xaf\xb1\xae\x98\xbb\x98\xa4\xb3Բ\xb4\xb0\xa5\xb5՛\xbe\x9a\xb5\xb7\xb4\xac\xb7ѣ\xbf\x9d\xa2\xc0\xa4\xb7\xb9\xb6\xa4¦\xb9\xbb\xb8\xa5Ĩ\xb1\xbd\u05fb\xbd\xba\xa8Ǫ\xb7\xbf\u052fƫ\xbe\xc0\xbd\xb9\xc1\xd6\xc0¾\xb2ɮ\xc1\xc3\xc0\xbb\xc3ؼ\xc4ٱ̶\xc4\xc6ó\u0378\xb9̸\xc1\xc8\u07bb\xca\xde\xc7\xc9ƻκ\xbdϻ\xca\xcc\xc8\xc7\xcbۿҾ\xc4\xcf\xdd\xcd\xcf\xcc\xcb\xcf\xdf\xc8\xd3\xc1\xc6\xd4\xc7\xcd\xd1\xe1\xd0\xd2\xcf\xc8\xd6\xca\xd2\xd2\xdd\xd2\xd4\xd1\xca\xd8\xcc\xd3\xd5\xd2\xce\xd6\xdf\xcc\xda\xcd\xd5\xd7\xd4\xd6\xd8\xd5\xcd\xdc\xcf\xd4\xdb\xd0\xd8\xd9\xe3\xd2\xdb\xe3\xd5\xdc\xd1\xd9\xdb\xd8\xd7\xde\xd3\xd5\xdf\xda\xdc\xde\xdb\xda\xdf\xe2\xd7\xe1\xdc\xe0\xde\xe2\xde\xe0\xdd\xd8\xe2\xdd\xdd\xe2\xe5\xe0\xe2\xdf\xe2\xe4\xe1\xdf\xe5\xe7\xe4\xe6\xe3\xe8\xe5\xea\xe2\xe7\xea\xe5\xe7\xe4\xe6\xe8\xe5\xe4\xe9\xec\xe7\xe9\xe6\xfe\xff\xfc\x93\x8dkM\x00\x00 \x00IDATx^\xed\x9d\u007ft\x14\xd5\xdd\xff\a%\x064*\x15\xe1y<\xb3=lbJ0@\x94\x86F\xac(\x98o崆\xf4\x89i\xfa\x8d\xf6\xa4R\u007f`A\x10\x1a͓ñ\"\x02\x15\x1e\x8c\xf5l\xea\x81ش\x91`h\xf6(\xb89r\xb2\x12\xe4Ⱥ(<\x12\xda''\x94\xd2\xf6!\xc5\b\xc8S(ȓv\xd7Գ\xde\xef\xf9\xde{\xe7\u05fd\xb3wfv\x03a\xc8\xec\xe7\xf5\xc7\xee\xec\xe43\xf7\xde\xf9̼\xf7\xde;;\x99\xb7\xf4\xff.\x00\x04\x00\xc0e\x86\xe4$[;\x9c\n\a\x00\xe0R\x03\x92\x06\x00O\x01\x92\x06\x00O\x01\x92\x06\x00O\x01\x92\x06\x00O1\x92$]_/Z\x04\x00\x80\xc1=I\xf7w4\aZv\x9dS?u\a\x82\xb6ј?\xc9\xeb\x04\x8b\x84_˄9\xed\xc9\xdbX\xf0\xb1O.u\x8a\xb1'\xc5\x12\x9e\x95\xe5\x90S\xccP\xe9$;]\x82\x17z\x17\x14\x16TE\xca\xf6!\x94h\x983\xcd7\xed\x9eF\x84\xa2\xb2\\\x95@!\x1c\x11q*\xc7\x0e\xf1n\xa6\xb8\xf3\xa8\x0eW\x9f\xd7\xe7\x14\xa5s\xb6\xbe(wA\xc2)*\x89\xc8\xf4\x9dN!\x19\x85k\x92>\x11\b\xf6\x1c\xeb\xd9\xd2<@?\x9d\v\xecjr\xd8\x00\xd5\xe6\x9e\x16,\x12ο*\xb7G\xbb\x96\xca\r\xc9\x1bYp\xa0\xce\xef\x14\xe2\x80}\t\x91^\xe5\xfdT\xd4\xd7h\x13\x96\x1aZa&\x06\xf6E\v\x16\x1dƊ\xf6=ڹ}\x11\xfd\xee\x88\xc8\vں\xda\x17\xcaQ\x14\x8fȹQ\x14\vɑ\xb8p\xe3T\x11\xeff\x8a\xe9;\x1e\x8d\xb6\xc9\xfb\x9c\xa2t\xaa\x8b\xda\xea\xf2\xce;E%ѕ\xa7}kZ$*\xc3pM҇\x02\xc7\xf0\xeb@\xa0\x87~\nv\x1cs\x92t\x9f\xbcZ\xb0\xa8\x10\x91\U0006937b\xc4?\xa3TiL霴ö\x84\u007f[\xa2-\xf9/\\\xd2Faf\n\xd7◚j\xb2XG$\xbd\xba\x80\b8>\x05\xa7'&\xd7\xd6\xe1\xfeT\x8eYm\x9b\"\xe2\xddL9}\aS\x97\xf4y\xb9\x15%\x86\xd2\\\xbdc\xb7NT&ᚤ\x11\xed\x9eO\x06\xfa\xc9[w\xd3@\xbf\x93\xa4\xeb\xfc\xa7\x04\x8b\n\x8a\xa4\xe3\x05+Q\xaa\xa4|NZb[B\xf9Ŕt\xb9\xbd\xa4K\xe8\xe0\xa4W\xee\xc4\xfd\\\x05]]QC$\x1dɏ\x8d(I\xf7\xc9\x17:\x80\xb6NT&ឤ1\xb1\xa3-A\xf2\x15{.p\b9I\xfac\xdf*\xc1\xa2\x8a\"i\xb4\xb2\x90\xbcn\xafʻg\xb5r&\xf7-*\xf4\x15-\xa0\xfao+\xcf+k\xa3+O\xd5Θ\xb2H\x1d92\xb1\x1a\xbd>Yn\xe8\xab-ɭI\xb0\x01\x03Kf\xf8J\x16\xf6\x9aK\x88֔\xf8\n\x17\x94p%\xec\x94\x15\xca\xc9\a\xff\xda\xd5\xf7\xe4\xd5\x1c\xa7\u007f\x10ԶR\xf6\xb5'\a\x1c\xc6mX\x88f\xcarA\x9c+\xcc\f\x95\xf4\xd2\"\xba\xf3]x\xbb\xaaEt\xf5\xa2*\"\xe9\x8f\xcbC\x02IkU\xf0\x15\xa7\x91(v\xad\x06\x99\xb37\xa2F\x99\x8c\xfe\xd9D\xe9\x92^)\xcbۍ)\xb8 \x0f\x83\x85\xcan\xae6\x1f\x00\xb59\x89\"ߋ3gDV\x15T\x0fp\u06ddϓ\xd5\xcb\x15\\\xa2D\x87%SpQ\xd2'\x03\x18zy,\u0601\x1c%]\xef;.XTQ%\xdd.\xe3\xe3]/\xaf\xeaj\x9d^NN\x87H~\xf9\xab\x91F<\x9e#\x1d{CW\x83\xff)\xbc\xd4WpO\xfb\xce\x1a\x99\x9e\x93L\xacN<\x14*\x99\x93?su\xad|\x9c\r\xe8\x92\xeb#\xa1\x85\xf2A\xbe\x84\xdf\xcaO\x85\"\xed\x852W\x02\x9e\xe4Ω\x8eF\xa3t\x1a\xe0\x97KC;\x8b\x16Y\xd5\xf6\xa7\x90O\x9e\xde\xf8\xeb|> q\xa0Q>\x80ޔ\xb7\xf7\U00085661\x92>^\"\xd74\x1e\x18$\x9f˖\xd1\xd5\xcbʨ\xa4[\x17(\x92\x8e\u007f\xac\x10g\xab\xe0*N#Q\xecZ\x9dX\xb4\xa0\xe1o\xe8o\r\x05\xd1\x18\x9b(\xa4KZ\xb9\xa6\xa0N\xc1Ey@\xbdѐ\xdc\x18\x8d\x9e6\x1d\x00\xbd9\x91\x02yu\xb5\\\xb8\xb1\xa8\x95\xdb\fo\x17U\x06Bl\xa2\x84\x87%SpQ\xd2\xe8d\u007fwK3\xd6tO`\xc0Q\xd2\xc7}\xcf\n\x165TIw\xe1\xc9t\x97\xfc&\"g\x12\xfe掗\xd4\xe0\xb3x0t\x1e\xa1w\xe9\x85߈܅{\xb29\xf8,O\x94\xf9i\xbc\x1e\xcbQ.\x93\xbe`\x80\v\x88\x85H\xb7R\xb6\x10q%\xb4M\xa7=I\x81\xf9\xdca\x06\xdeEg\xf1I<\x1dY\xd6柂\xcf\xdcڤ\x80\xba\x8a\xb337\x9a\v3C%\x8d\xceo\xac\xf0\xc9S\xc8V\xa5\xb5tum)\x95\xf4\xe9\xdc\xd3T\xd2\xd5j\xffU\xc5WaT\x9cN\xa2\x98\xb5,\xf5K\xf1\xcb2\xf2\xd3\"\x93(\xc4\f\xbc\xa9\xee\x1a\xed\xb2\xce\f\xbc\xf5\x03\xc04\xa7\xa8\x16o\xb9\x13\xd5%\xff|\x99\xab\xcdm\xf4DY\x1d\x96\x8c\xc0MIc\xe2-\x1d\xe4\x12Y\"\x918ڔ\xb0;\x00+}\x1f\v\x165\xf4^\xfaM\a\x89\xe6E\x03E\xd2\xebș\x19Q\xe6h\rx\x1e\x1a+\xaa&C\xafU\xab\xc8В\xac\r\x91\xc1iE\t\x9e2\xf6\xe5*\xa7\xb2\x1eˡ\u007f\xdb3\x01%\xe4,K\x94\x913\x95)\xa1Q~\x97\x04T\x9b\a\x0e\xd5ո\xa5ʌ\x95\x11\x8e\xb06q\xc0`E\x03\xaa\xafN\x98\n3h#\xbd\xe5Y\xf9u\xbcX8\x93ܞ\x91 2X\x9dO\u007f\x97ΫW$\x8dꖙ$\xcdVaT\x9cN\xa2\x98\xb5\x1c\a\xfc\xa7\xfc\a\xc8\x02\x93(\xc4H:\x0f\u007f\xfb$*\xec\xb2\xceJZ;\x00LsR\x90\xb4\x9e(\xabÒ\x11\xb8&\xe9C\x81\x8e\x9ec=-\xea\xddc\x89\xfe\xee@\xff\x19\xcb\xe0\xb5FϼV\xd0I+w\x8f=\xa5\xdc=\xb6N^\x16\uab17\xb7#2\xc1+m\xebZEg\u007f\xb5\xf2\xba\xaeu2\xb9zt8ofc\xc34\xd9\xf7\xe6a.V'q\x80^9U\xe6\xebF@\xa3\xbc\xa4mc\xb9\\\xf8\xea\x01\xb6\x84F9\xbf\xa1\v\a\x98\xef\xbal\xf4\xff\xba\xb3:\xefSr\xa5\xb7\xee\x00\xea\xad\xf3EO\x89k\x13\a\xc4\xf7=;\xfd8\xea+X\xbd/\xce\x14\xc6\x12\x91\x17\x84ެ($+\v墆wq@\x1fY[\xd3\x19\xed\xac\x91;\xc9\xddc\xa1\x18\x8a\xe6\x99\u007f\xc4ҫ\xe0*N#Q\xecZ\x96Č\x9a\x19\xf4\x1b\x88Iԧ\xe4\xee\xb1\xd6h\x94\f0\xaa\xa6\xbf\xba\xb1\xc2:\xeb\xea\x15\xef\x03\t\xd3\x01ЛsxZk,\xe4\xeb\x8d-\xab\xe6\x86+\x83\xfb\xa2Q\u007f]4JO#=QV\x87%#pMҨ\u007fGK`\xebnu\x12\xd7O\xa6\xd2\xcdV\xa1\xa7\xf3j\x05\x8b\x06\xca=\xde%\xea=ޑ\xea\xc2)U]t\xb1o\xc9\xcc\xfc\x8aN\xb2\x94x\xbd,\xaf\xac\x8d\x9es}\v\xa7\x95\xac}\xd3'?\xcb\xc7j\xf4*3\xbdGM\x85%Z\xe7\xf8\xa7/m\x9f\xe3\xabfK\xd8^\xd5X\xe2+\xaaN:u⫦\xe5V\x1f\xa4\xf7x˾\xc3\xe4\xb7S\x8b\xda\xc4\x01\x11\x99\xfcB\xbbJV\xee\xd0\xd6\n\xe3\xe8,\xcf+x\x94ʪ\xa2\xbd\xa14o\xfaB\xf2M\x97h\x98S \x17\xcciL\xd0\x12B\xb8[,2Of\xb4*\xf8\x8a\xd3H\x14\xbb\x96\xa5\xd5\xdfJߙDթ\xb3f\xd2\xe7\xf6U\xe7\xe6\u05fch\x99\x87x\x01\x8d\xf4\xfd\xd9t\x00\xb4\xe6$\x8a\xf0\xfe\xe4\xcby!\xd3\x1c\xfc\xb7j\x15\xf4\xd8뉲:,\x19\x81{\x92N\x83\x17\xe5?\t\x16\x01\x00HfDH\x1a\xfe\xab\x12\x00ReDH\x1a\x00\x80T\x01I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x18I\x92\x86[\xbd\x01\xc0\x11\xf7$m\x18\xe8Ě\x94\xe7\x149\xf8BX\x1b\xe8\x10\x86\xcdF%U\xb7\x98\xa1\xe3\xd8t\xc7\x00\x95\xa1\xda\xf5\xa4it#&\xd5FR\xd2O\xeaP\xf7-\xf3pMҌ\x81ι\xc0\xfe~\xccI\x87-\xac\rt\b\x86\x8d\x8a#i\xfa\xac\xa4f\x95s\x018:\xc08\xedۅ\xda\xf5\xa4it#F\xd8H\xcb\xec\b\x92j\x9fɡ\xee[\xe6ᚤ\x19\x03\x9ds\x81\xa3N\xd1\xc8\xde@\x87\x90\xfa\x03^\xd3\xf5YI\xd1*g\xe88:\xc08\xec\xdbE\xb0\xebI\xc3\x15\xc3\nQ#\xad\xb3\x93\x9cT\xa7L\x0ey\xdf2\f\xd7$\xcd\x18\xe8\xa4&i;\x03\x9d\xf4H\xd7g%E\xab\x9c\x8b\xc0\x10\v\xbb\bv=\x17A\xd2\"\xacw(9\xa9N;?\xe4}\xcb0ܓ4\xd2\rtR\x92\xb4\xad\x81\x8ea\xa3\xc2\xf8\xc2\xe0\xc5\xd6\xfa\x99\xd3\xc8\x13|\x18\xff\x16\vC\x1a\xc3\xf6\x85s\x96\x11\xb9\xc50\xf6,|a\x9a\xf5\x8c\x85\x05\x8f\xd8\xd5\xc5\xc2\x01F\x14\xc0{\xdeh\xa4c\xd7s\xe1F7LR\x11c\xb6#l$\xbfC\xf6\x16<\xe2Lr\xf8W\xd5Ϡ\x15w\xe1\xb8\x17ս0`\xf7-\xa3qQҺ\x81ι@ǖ@s\xd8\xf4\xe0;\x13\xb6\x06:\x86\x8d\n\xe3\vC\x16K66\x96\xe4\x1df\xfd[,\fi\f\xdb\x17\xd6YF\xe8\x16\xc3سp\x85\xe9^/\x16\x16<\x16\xae.B\a\x18a\x00\xe7y\xa3\x93\x8e]υ\x1b\xdd0Ie\xcdv\x84\x8d\xe4Z\xe6`\xc1#\xce$\x87_.\x0f\x85\xcapű}%\xf5\xa7ս0`\xf7-\xa3qQҺ\x81ι@S\xf7ў\x96f\xbb+\xde\xf6\x06:\x04\xedѯ\x86/\f\xf2\x97\xe0\xd1\xfd\xf9\x12b\xe7h<\xe1V<\xc2cm_\x8c\x12\xc4n1\x9c=\x8b^\x18\xe3\xf5\"\xb6\xe0\xb1vu\x11<[^\x1c\xc0\xec\x1bK\x1av=\x17ntc$\x95\xdbcq#\x99\xa7\xf7:Y\xf0Xd\xd2\xc0_\x8aO\x90\xf8\x1cr4\x1bIg\xfe\x94\xf9\x87Lc\xdf2\x1a7%\x8d\xd4\xe7x'\xba\xc9\xc9\x15k\xdam\x13ho\xa0C\xd0\xcf(\xf2\x9coE\xbc\xfe\xff \xafm\xf2ygI\xb3\xb6/z\t\x16n1\x9c=\x8b^\x18\xe3\xf5\x82\x84\x16<֮.\xa9K\xda\xd87\x964\xecz.\xdc\xe8\xc6H*\xb7\xc7\xe2F\xea-s\xb6\xe0\xb1Ȥ\x81\xffE\xf2J\x8f\xe6q\xf90\x8a\xe7\x9b\x1f\x00\xca\xec[&㚤\r\x03\x1dmMx\xabe\xb0\x93\x81\x0eA?\xa3\f\xf1*C\xc1(yb\xbf\x93\xa4Y\xdb\x17=\xd6\xca-\x86\xb5g\xd1\vc\xbc^\x90Ђ\xc7\xda\xd5%uI3{\xc1\x90\x86]υ\x1b\xdd\x18I\xe5\xf6X\xdcH\xbde\xce\x16<\x16\x994`\x8e&\xfa\xd1Z\xf4\xee\x14\U000d78f1o\x19\x8d[\x92f\ftPG\x90.\xee\bZ\x87;\x18\xe8\x10D\x92\xa6\x97ѨE\xad\xe1\xdf\xc2\xf8\xac0\xb0\xb6/z\t\x16n1\x9c=\x8b^\x18\xe3\xf5\x82\x84\x16<֮.\xc9\x0e0\x16\x01v\x92Nͮ\xe7\u008dn\x8c\xa4r{l#iҲ\x14,xę4\xf0\xd3_.\xe9\xd1D;\v\a\x05\x16\x96\xfa\xbee4nI\x9a5\xd0\tn!\x8bg\x02\xfb-\x83\x9d\ft\b\"I\x17\xe1\xb3v\xe0\x8ej\xc4\xfa\xb7\x88\riX\xdb\x17\xa3\x04\xb1[\fgϢ\x17\xc6x\xbd0=\x0e\xe3\x16c\xed\xea\x92\xec\x00c\x11`!\xe94\xecz.\xdc\xe8\xc6H*\xb7\xc7\xe2F\xea-K\xc1\x82G\x9cI\x03\xffL\xe2\x98[J\x8e&\x1a,\xdc9-\xf9\xc1\xfb\xfa\xbea>\xdex\xa1\xb7ÍT\\\x934c\xa0s4\xb0\xed\xd0ѽ\x81\xa0\xf5\x90\xc9\xc1@\x87\xb1Q\xe1|a\xc85\xd2\xf69S\xc8\x06\x8c\u007f\v\x12\x19\xd2\x18\xb6/l\tb\xb7\x18Ξ\xc5(L\xf7z\xb1\xb4\xe0\x11\xb9\xba\x88\x1d`\x84\x01ܾ\xb1\xa4l׃.\xdc\xe8\x86M\xaaa\xb6c\xd5Hc\x87\x9c-x\x04\x994U\\s R5E9\xfc\xeb\ue612|\xba\xe8\xfb\x86Y(/H\xfa{f\xe0\x9a\xa4Y\x03\x9d\x13\x1d́`\xb7\xb5\xa2\x9d\ft\x18\x1b\x15\xce\x17ƿ\xba\xbe`F-=\xffY\xff\x16\x91!\x8da\xfb\u0095 t\x8b\xe1\xecY\x8c\xc2t\xeb\x19\v\v\x1e\xb1\xab\x8b\xd8\x01F\x18\xc0{\xde0\xa4l\xd7C\xb80\xa3\x1b.\xa9\x86َU#\x99\x1dr\xb4\xe0\x11d\x92\xa3\xb4qI\xbeZ1\xb9\x81PtEE\xdb7L\xfb\xf4vA@&\xe0\x9e\xa4\xd3`\xa8\x06:p\xbf\xd10py$5\xe6\xcfLë\x14\x18\x11\x92\x1e\xea\u007fU^\x1eg\x9fǸ<\x92\x1a\x82+\xdbV\x8c\bI\x0f\x95\xcb\xe3\xec\xf3\x18\x97AR\x1b#\xa8\xba\xc1)(c\U00070915\v5\xc0E\xe5rHjL._Yt\xde)*c\xf1\xb0\xa4\xe9\x85\x1a\xe1\x8df\xc0\x90\xb9,\x92ڐ_m\xbe\x11\x1e\xd0\xf1\xb0\xa4\x01 \x13\x01I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x00I\x03\x80\xa7\x18I\x92\x1e\xea\xad\xde\x00\x90A\xb8'i\xc3@\aӳ\xad\xa9e\xaf}\xbc\x83\x81\x0e\x00\x00\x04\xd7$\xcd\x18\xe8\xa0xG`\xf7\x91\xbd\x81C\xf6[\xd8\x1b\xe8\x00\x00@pMҌ\x81\x0e\xea \x9e\x1b'\xe9\xa25N\x06:\x00\x00 \x17%\xcd\x18\xe8\xf4+O\x1d;g\x1f\u007f\xf1\ft\x00\xc0ø'i\xa4\x1b\xe8\xec\x0e\f:\x19\xb99\x18\xe8\x00\x00\xa0⢤u\x03\x9d`\xb0gk\xa0yׅ\x18\xe8\x00\x00\xa0ࢤu\x03\x9d\x16j\xa0\xd3\xdcra\x06:\x00\x00 w%\x8d\xb4\xe7xӾz \xb0\xc7&\xd0\xd9@\a\x00\x00䢤\x19\x03\x1d\xd59'l㶑\x82\x81\x0e\x00\x00\xc8=I\xb3\x06:{\x9b\xa8\xbc;.\xcc@\a\x00\x00䞤Y\x03\x1d\xc5:\xe7\\\xc0\xfa\xf6\xb1T\ft\x00\x00@.J\x9a1\xd0A{\x03{\x8fv7m\x15ش\xaa8\x19\xe8\x00\x00\xa0⚤Y\x03\x1dt(\x18ز\xd7Zю\x06:\x00\x00\xa8\xb8'\xe94\x18\xaa\x81\x0e\x00d\x1e#B\xd2\xf0_\x95\x00\x90*#B\xd2\x00\x00\xa4\nH\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\xc5H\x924\xdc\xea\r\x00\x8e\xb8'i\xdd@g\xb0)\xa0\xd0l\xbf\x81\x9d\x81N\xef\x82\u0082\xaaH\xd9>\xf36\xb6<+\xcb!\xa7\x18\xf2\x88a\xb9\xd4)\xe6\xa2\x11\x99\xbe\xd3)D\xe7l}Q\xee\x02LJ%#T%\x93\xfd\f\xe1\xd7*\xa7P\v,\x12U\x87\x8b\xcc\x13\xfd\xf7z\xaa-\xa3\xa4\x91_-;\x96\x15'\x93\xda1\xf6\x14\xaeI\xda0Љ\x05\xf6\xf6c\xf6*\x0f\xe8\xb7\xc6\xc6@\xa7\xd7\xf7h\xe7\xf6E\xa9\x1e\xbdH\xaf\xf2~*\xeak\xb4\x8f\xa4\x1c\xa8\xf3;\x85\xa4\x88V\xb1\xf5ڮ\xbc\xd4v\x81P]\xd4V\x97w\xde)\n\xa1\xbe\xd5r$\x86bQyuj*H\xc6\"Qǣ\xd16Y\xf4-\x9aj\xcb\x14\x04\xf9\x15'Jώe\xc5ɤr\x8c-j\x1b\xa9\xb8&i\xc6@\xa7\x9b<\xd9d\xa0i\x97\xfd\x06v\x06:5\xd5\xe4\xb5.EI\xff\xdb\x12m\xc9\xefx\xb8\t\x8d\x17K\xd2FŖkS\xed\xdb\x10:/\xb7\xa2\x84\xfd\xb3\xcfUZe\xf2\xa0\x89\x04\x8e\x1f2V\x89:(RV\xea-SHί8Qlv\x84\x15\vq>\xc6V\xb5\x8dP\\\x934c\xa0Cٶ\xc5\xfa\xa9&\x14;\x03\x9d\x92\x06\xf2\xda+w\xa2T(wK\xd2\xe5\xc2sG\xbc֑>9\xd51\xfa\xa5\x96t\xea-SHίsJ.\xa6\xa4\x9dk\x1bQ\xb8'i\xa4\x1b\xe8\x10z\x02'\xeccm\rt\x96\x16\x1d&o]\xb4k\xd8^\x95w\xcfj\xa5\x93`\x165v\xca\n\xe5\xe4\x83\u007f\xed\xea{\xf2j\x8e[\xc5\xe2q[\xed\x8c)\x8bԁa[y^Y\x9b\xb2\xbaoQ\xa1\xafh\xc1)\xb4R\x96\xb7+\x93\xc1D\x91\xefř3\"\xab\n\xaa\a\xd8\xc2Vʾv\xb5\n\xb6\xe2\x81%3|%\v{M\xcd9\x9f'\x1bs\a\xad6\xa6\x04\x86\xc1Be\xb3\xd5\\l\xafO\x96\x1b\xfajKrk\xb8\xceސ\xb4Q\x18\xd7^\xa39\\\tњ\x12_\xe1\x82\x12R\x84\x91(#\x96\x90\xac\xac\xb4Z\xc6\xe5W˙8Q|v\x8c\x8a\x99F\x1a\xb0\x8d\xf4\xaf\xaa\x9f1m\xa12\xe70\x92\xaa\x1d7\xfe|\xf0\x04.JZ7\xd0!\xb4t\xd8\xc6:\x18\xe8\x1c/\x91k\x1a\x0f(\xdd|\xbd\xbc\xaa\xabuzy\x82_\xd4\x19\xd8\x17\x9dS\x1d\x8dF\xffL>\xf8\xe5\xd2\xd0\u03a2E\xa6\xcd\f\xfa\n\xeei\xdfY#\xd3S\xae\xce\xdf\xd0\xd5\xe0\u007f\x8a,F\xf2\xcb_\x8d4b\x89(35:\x19\x8c\x14ȫ\xab\xe5\u008dE\xadla\u007f\n\xf9\xe4鍿\xce_\xc4W\xdc%\xd7GB\v僦\xe6\xf4F\xa3Z\x9f\xa2\xd7Ɣ\xc0\xd2\x1b\rɍ\xd1\xe8i.6\x1e\n\x95\xccɟ\xb9\xbaV\xe6\x12dH\x9a)\x8cm\xaf\xd1\x1c\xb6\x84\xdf\xcaO\x85\"\xed\x852I\x89\x91(#\x96 \xe8,\xd3i\x19\x9b_=g\xe2Dq\xd91*f\x1bi\xc0n\xe6\x97\xcbC\xa1\xb2<\xf2\x9d\xaf7\x879n\xdc\x01\xf0\x04.JZ7\xd0\xc1\x1c\xa13k\x1b\x1c\ft\xceo\xac\xf0\xc9S\xc8wx\x97\xfc&\"G<\xc4-r0\x03\uf8b3\xf8\\\x9a\x8e\xacb\xab\xe6\xe0^#QFN\xb9w\xe5\b~\x8d\xc8]\xf8\xfc,\xa9\xc1\x1a\x19\f\x91\v@\xf4$\xa3#ǢZ\\\xc8NTW\xcf\x17柂O\xe2\xda\xe9|ű\x10\x19\x0e\x94-\xe4\xd7\x12r\x95\x93\x96\xa9\x8d+\x81A\x1f\u07b2\xb1\xa8\\\xa6\xdd.\x17\xc9\x0e\xbc\x8d\u0098\xf6\xf2\xcd\xd1Jh\x9bNt\xd2V@%\xad'\x8a\x8bu\x18x;\xb6\x8c\xc9/w\x00ĉҳ\x83\x8c\x8a\xd9F\x1a\xb0\x9b\xf9K\xf1\xde\xc7\xe7T\x98\x92\xaa\x1f7\x18x\xb38\x15\xeeL\\\xed\x9d;Z\xec\xe3R0ЉG~D\x0e\xd6\xd2;\x06\x13\x98\x99\xf5\xdc\"\a#i\xf2'z`\x85\xb1\xe7\xe5v\xf2\xd6@\x02\xea\xcb\xe8\xaa\xd2:r\xf6\x19\x97H\x19I\x87\xf0y6\x80\xd6.\xe3\v\xa3\x8f\x1dO:wζ\xd5\xdcQ \x97\x99\xd6\"\xfd\xa4ej\xe3J`Ѕ\xc3Ƣr\u007f\xb2\x05 'i\xbd0\xa6\xbd|s\xb4\x12>\x9dQ\xb2\xb2\xbd7A\xc7>F\xa2\xb8X\aI;\xb5\x8c\xcd/w\x00ĉ\x12I\x9am$\x03\xb3\x99\xffE\xf2\xda&\x9f\xe7\x93\n\x92\x16\xe2T\xb8\x1d\x8c\x81\x0e\xa6\xc9\xfa\xb1\xfc\x14\a\x03\x9d\x83\xf4rY\xa2\n\u007f-\x97\xa9s#~\x91\xc3ty\x8c\x1eXal\xaf\x1cEZ@գtգ\x15\x9aD\xcc%\x14\xbd\x8b\x0e\xfa\x10Z\xb7\x8c/Lx\xee\x1c,*Y\xdb\x19\xad\xb6\x964S\x1bW\x02\x83.\x1c6\x16\x95\v\xe6\x84m\xf2\xdf\xf1kL&\xb3Ha{\xf9\xe6\xe8%\x9co_R*\x17\xbd\x8a\xb8\u0378X\aI;\xb5\x8c\xcd/w\x00ĉ\x12I\x9am\xa4\x01\xbb\x992X\x8f\xe2\xafa\xab\xa4\x82\xa4\r\x9c\n\xb7\x815\xd0!~\x1bG\xec\xc3\x1d\ft\x8aVҷ\x869xPyG/\xe5,\xb7\xc8A\x0fa;\xe93\x8c\x03+\x8c=KU\x80\xe8\xe5\x9b\xfa;誒:2t3\xf5Ҵ\x9b)\x8a\xa0\x83~E\"laI\xe7\x0e\xa9\xb8\xb4\x82\f\f\x17\x95\xf1k\tZ/m\xd4\xe6(i6\x16\x95\x9b\xe6܄(m\xaf\xa2\x1fF\xd2F{\xf9\xe6h%\xf4\x92\xdby\xfe\x1e\xca\xe5\xbf\t\xb8X\xa7^ڡel~\xb9\x03 N\x94H\xd2l#\r\xd8\xcd\xfc\xf4B];\x1e\x90$%\xb5\xc1tX\xbc\x81[\x92f\rt\xc8TZ\xbbL&\xc6\xc9@\xa7p&\x99\xd7&\xc8Y\x13Qfc\r\x1b\xb9E\x8e\xeaj\\\x8c2\xd1\xd5\xcfTqlE\t.\xb7/\x97\x04tр\x10\x19\xdbNJ\xaa\xc9@o\x15\xb9\ue7b7\x16\xd7[a\x92\b[\x18+H\xbd\xe2\x12rz'\xca\xcaL\xcdA\xfaI\xcb\xd4\xe6(i6V\xd8\xe3\fL#\xe3\x9a\xfai\x03\xc8B\xd2\\s\xf4\x12\x1a\xe5w\xc9[u=\xb7\x19\x17\xeb iǖ1\xf9\xe5\x0e\x808Q\"I\xb3\x8d4`7\xf3\xcf$\x17>J\xab\xf9\xe6\x18\xc7\xcdt\x00F>\xaeI\x9a5\xd0A=\x01;oig\x03\x9dB\xb9\xa8\xe1\xdd\xcejz\x93\xe0:yY\xa8\xb3^\xde\xce/\xb24\xfa\u007f\x8dc?%\xd7=\xeb\x0e\xa0\xde:_\xf4\x94E\xecἙ\x8d\r\xd3dߛ\x87q7\"\xaf\xebZ'גՑ\xdcҶ\xaeUt\"X5\xfdՍ\x15$\xe0\xf0\xb4\xd6X\xc8\xd7\x1b[V}\x9c)\x8c\xabB\xaf\x18\x9f\x88K\xda6\x96˅\xaf\x1e`\xd7\x0e\xee\x8bF\xfdu\xd1(I\x89^\x1b_\x82\x8er]\xf9\x00\x9d\xb5豉\x03\xf4\xeamҥ\x86\x90\xfclW=9g\x99\xc2\xd8\xf6\x1a\xcdaKh\x94\xf3\x1b\xba\xf0^D\xb860M\xff\x94\xdc\xc4\xd5\x1a\x8d\xf2\xfd[:-c\xf3\xcb\x1e\x00Q\xa2\x98\xec0\x15\x1b\x8dda\xf3\xeb\x97k\x0eD\xaa\xa6\xf4!\xee\x10\xeaǍ\xad\xcd\x1b\xb8&i\xce@\xe7\xc8\x16\xdbPG\x03\x9d\x8a\xf6\x86Ҽ\xe9ꏏ\x91\xea\xc2)U]\xe6E\x86\xf8\xaai\xb9\xd5\a\xe9\xfd\xbf\xb2\xef0\xf9\xb9\xf3Y\xabؾ\x85\xd3J־\xe9#\x01\x89\xd7\xcb\xf2\xcaڔ+\x00}Kf\xe6Wtҥ\xea\xdc\xfc\x9a\x17e\xb9\xbeH\x96C\xf9r^H\x99\rj\x85\xf1Uh\x15\xa3D\xeb\x1c\xff\xf4\xa5\xeds|\xd5\xec\xdaߪ\xd3I\xf2U\xa1\xd7Ɨ\xa0\x11/\xa0\x91>\xfaӋ\x1e۫l\xff(2\xd3U\x9eWNv\xcd(\x8ck\xaf\xd1\x1c\xb6\x84\xedU\x8d%\xbe\xa2\xea\b\xdf\x06\xa6\xe9uj{\xb9\xee7\xbd\x961\xf9e\x0f\x80(QLv\x98\x8a\x8dF\xb2\xb0\xf9-m\\\x92?\xa3V\xb9\xd8b\x1cB\xed\xb8q\x87\xc5\x1b\xb8'\xe94\x00\x03\x1d\x00H\x95\x11!i\xf8\xafJ\x00H\x95\x11!i\x00\x00R\x05$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9e\x02$\r\x00\x9eb$I\x1an\xf5\x06\x00Gܓ\xb4n\xa0\x83\xd0\xc0\xae-\x81-\xbb\x06\x1c6\xb03\xd0ѹ\xf4\x86)\xe9x\xde0\x88Mf:\xc9\xff\f\x92'\xd8\x1a\x8e@\x89\x869\xd3|\xd3\xeei$O'\x91\xab\x12\xd4\t\xc7\xf4\xbf\x84Cm\x83\x90\xce\xd2ܲPy\xd2\u007f\xa4ړ\x86\xa5\r0̸&i\xc3@\a\x9dk\xda\xdas\xb4gK\x93\xfd\x93M\xec\ft\xd26Ź\x88\xa4\xe3y\xc3 6\x99\x19\xd8\x17-Xt\x98s\x04\x8a\xc8\vں\xda\x17\xcaQ\x14\x8fȹQ\x14\v\xc9\x11\xf3\x03#\x84m\x18\x9a/\xcc\xebrm\xe7Z9\xdd\xc7\xf8\xa7ai\x03\f3\xaeI\x9a1\xd0\t\xb7\x90\xe7\xfe\f\xb6\x84m7\xb03\xd0I\xdf\x14\xe7\"\x92\xba\xe7\r\x83\xb5\xc9L\xe1Z\xc49\x02\xad. \x02\x8eOYM\x9e\bX[\x87\xd0\xc7r\xf2v\xa26\f\xc9\x17\xa6On\xc0\xaf\xabӕ4J\xc7\xff\x02\x18V\\\x934c\xa0ӱ\x95\xae\b\xda?\x9d\xdf\xce@'驟\x97=\xd6&3TҌ#P5}\xbe&\xaa\xa8!\x92\x8e\xe4DŽ\x92\x161\xa4\a_>5\x9d|\x81\xfcI\xe6\x1fϗ\n \xe9\xcb\x04\xf7$\x8dt\x03\x9d3M\xe13\xf13\xe1\xa63v\xb1v\x06:\xe9\x99\xe2\xe8\xf67HhSC檍\xa8QV&\xe5Z\t\x16\xce2ix\xde0\x01\xbcɌ\t*i\xc6\x11\xa8Jy\xb2\xe6\xa2*\"\xe9\x8f\xcbCI\x926\xda`a\xd7\xc3y\xff\xe8\xf0N8\x1a\xd3\xd6ҷ\u05cf[l\xc6fG\xe8\xa5\xc3x\xd3 \xab\x03\x00\f'.J\xda0Љu\xe0\xa5\x0e\xfb#og\xa0\x93\x96)\x8ea\u007f#\xb6\xa9\x89E\v\x1a\xfe\x86\xfe\xd6P\x10\x8d1%X9ˤ\xe1y\xc3X\xf0\xb0&3f\xa8\xa4\x19G\xa0\xb2et\xf5\xb22*\xe9\xd6\x05ɽ\xb4\xde\x06\v\xbb\x1e\xd6\xfbǀw\xc2QQ\x1f\x96\xaf ڌ͎\xd0K\x87\xf1\xa6\xb1:\x00\xc0\xb0⢤u\x03\x9dxGKO\u007fOK\x87\x9du\xa5\x83\x81N\x1a\xa68\x8c\xfd\x8d\x85MM\xfdR\xfc\xb2\xac\xde\\\x82\xd0Y\x06\xa5\xeey\xc3\xd9\xc98\f\xbc\x19G\xa0R\xe5\xf9\x89\xb5\xa5TҧsO\x8b\x06\xde\xda\xd3p\x85v=\\\xc5:&o\x1a\x85\xc3\xca\xc5\xf4x$\xa51\\\x17K:y\x8f/\x0e iKܓ4\xd2\rt\xb6*c\xa8\xa0\xd5\xec\xe8\x8b\xef\x14S^FhCq\xf1;\xea\x8cuC\xf1\xac\xb7^~`\xf6\xd3\xffCc>y\xe6;\xb3\xeeS\x97\r\xe2c\xb5ޫ\u007f\xfe\xb8\xab\xbf\xa5\x0e\xbc\x9b&gOxD\xd1\xc0\xa1o匾\xee\xf6~n\xa3\xf5\x13\x82=ROp\xc2K\x9a\xa4ц\xef\xe0\x97/\xdf\xfe\xf1\xdd\x0f\xbc\xfc\x99\xd61\x82\x00\x00\x0f\xfaIDAT9\r1j\xfb\xf2\xad\xc7f?\xfc\x06\x9dl\xff\xcf\xf3\u07fd\xf7\x19e\xe0\xad\xc7\xfeqVq\xf1\xa6O\x9e\xbf\u007f\xf6\xd3\xff\xa4\x1b.\xcf6=`M\x95\xf4\xe6[ǐ\xd7\ao\xbc\xea\xfao\xfc\x92*\xf5g7\x8f\xb9r\xccW\u007fN\x16\xbfw\xc3U7|\x8f\xae\xfc\xf9\u05ee\x19s\xb3:\xf0\xd6b\x91\xb1\x9b-xZ\xbe\x02\xad\xc0\xaf-l\x1d\xe7\xb2%iT3Y\xfa\x814:\xf0Ȅ\xec\xdbq\xcf\x19\x94\x14&\xd1\x10-%\xfb\xaf\x90\xa4\xe5\x87\xe6\x8fϾ}0\x9e\xa3\x04\xfe\xbd17\xfc\n\u007f\xfe\xc9U7|\xfb\x89\xbb$\xa2\xe4[\xae\xbc\xeb\U0007bbbc\x85\xc8\xfc\xaa\xeb\x1f|\xfc_%*i=\x16\x19\xbb9\x10\x1e\xbb\xfc$:\xb9\xfc\xea0\xdfi\xef\r\x87\xb3\xe8ճ\x9e\xe6+\xa4\x9c\x15k\xc6~\x8bxz\x87'L\r\x87\xc3\xf4\xaa\xa4\x9e\x92XK\xf3W&\x8c\x1d\xf7\xc8|\xe9(\xda\x1fn\x96V\x84\xc3D\xbbA\xa92\xdc2w\xd4\x1e\x12\xcb\xe4\xcc\xc8\xe4\xe0\x89\xf0\xe4\xab\xf5J\xe39\x93w\x1dS\x87\xfaI{,\xae\x8d\xad\x18Uf-\x0f.Ϛ\x8f\xb8\xe60\xf0\xb5\x01<.JZ7\xd0\x19h\n\x9e\x8c\xf5\a\x03-֡\xc6\xc0\xfbNr\xadJ\x19\xde\xdey/\xee'\x9f\xbf\x0f/}~\xffӸK\xfc\xe2\x1d\xf3\xf5\xb3\xa0tDY\x98:\x9e\\\x86\x9b\x94E\xd7\x05\x10\x19\xb8\xe1n+6\xee\xf68yڰ\xd9_o\xdbhi4\x1d2\xa8\x92~\x1fO\xa6\xdf+~\x1b/\xfd\x1e\x0f\x12\xd8\xda\xde/\xfe\x80\x86\xbd\x8fЏ\xbfOV>LZ\xc6\xc4\"\xf4p\xf1\x93\xff@_\xaa\xd7\x01\x8eJ\xa6\xef-M\xd2O\xe0\xc9\xf4\xe3҃x\xe9ߥ\x1f\xe2\x81\xf85\xff\x8a\x85\xfd\xcb\x1f\xbeB\xfe\xf2\xc4f\xf5\xf5\xc6k\xb1\xee\u007fu\x03\x91\xb4\x11\x8b\x98\xddD\x95d,=O0\xd6\xcdV/\x88g]\x8d\xc51?\x87.\xeb\x03o&%x\xadt\x1b>&\xf4\x9a\x98>\xf0\x1eh!\x02\xba\x89\xfc\x0e\xcc\xe4\x8c\xd9l.\xeeΙA\xfa6\xfc\xf1\x9b\xcab\xd2\x1e[֦/n\x93\xc8L\xacC\xb9\xa6\xcd\x04\xe8\x98j\x038ܔ4R\x9f\xe3\x8d\xce\x04q\u007f\xbd;hs\x94Ē~A[|\xbf\xf8\x0f\xc2Ͷ\xaa\xe7\xfa9z\x16\xa1\xe5D\xd2\xf3\xc6\xc7\a1\xe3*ɹ\xb3_\xb0љGF\x8f\x93\xc6e->\xa3K\xfa\xed\xe2\xcf\xd0\xf3\xf7\u007f\xf1O\xccw_\xe0j{A\xf9\xcd\xea\x81\r\xe8\xb3\xe2\xb7\xc8\xd2&\xd2\x1c&\x16K\xfaο\x1ae\x1fUNd\x03M\xd2\x0fJ\xafl\xbe\xf9\xda_\xfe\ns\xcd-\x9b\xb5\xb5\xb4;V~\xb3\xba\xfe\x96ͯ\xd0N{\xf3]D\xd2F,2v\x13w\xa1\xd9\x03h [\xf0@t]\xd2D\xee\xea5\x05]\xd2LJ\xf0Zゖ1\x97>\xf9\xd2\xed\xe3\xc7J7!.g\xccfG\xb7\xe9?Fc\x06rƯߡ6)i\x8f-k\xd3\x17+o\xa2o\x13\xcd\x01:|m\x00\x8fk\x926\ft\xc8[\xecL\x025\xd9xb\x89%\xad/\xbeQ\xfc\xb9p\xb3\xdd\xea\xa8O\x1d\x99\xd2Sy\x92:\x89\xc4]\xcezI\xf4\xe8\xf059\x01<\x97^\x9f\xf3\x9c.\xe9_\xdcM:[\x85\xa7\xb9\xda~\xfc4}{\xfa1\xdc'\u007fD\x96hs\x98X\xfc\xe11\xa6\xec=\x92i'5\xf1~\xe3\xaa͛oP[\xf6Uu\x1c\xaep\xe3W\xe9\xdbWo\xdc\xfcS\xe9'\xba\xa4\x8dXd\xec&\x1e\x92\xe6lE[s\x12(\t]\xd2\xe4\xdd,i&%\xf8\xc3$}#]\xd2{\xae\x1b\xb7xk\xf86\"5&g\xdcfxv\xbbG\xfb\xc3\x1eɰ\nO\xdac\xcb\xda\xf4ũJ\a\xff\xcdɦ\x00\x16\xa66\x80\xc7-I3\x06:\xf8D$K\x87\x02\xfcU*\x0e\x93\xa47\x99$\xfdA\xf1\uf15b\r(SHtF\"\x17[\x10\xbd<6\u007f\xfc^\xcaI2\xb6\xfbP\xb4U\x9c^\xf1&\xf3{E\xd2_\xdc\xf7\f\xe9y\u007fO\xf9\x8c\xab\xed\x85\xfbɕ\xb1/\xef\u007f\x01\xfd\xaf2\x91\u007fA\xe9\xa5\xf5X,\xe9g\x98\xa2W\x8c6\xfdʫ]\xf1\x1es\xf3\xe6\xcd_\xbb\xf6\xa7\x94\x9f\xf3\xbd\xf4\xb5\xf4\xedZ\xbd\x97\xa6\x97njXd\xec&桹h\xeeC(\x19KI\a\x8er)\xc1k\xbf\xa5o\xa4Kz\xe2d\xd2'~\x8bH\x9a\xc9\x19\xb7\x99\xc5\x15\xef\xe4=\xb6\xacM_\xac\x1cO\xdf\xc6W\x9a\x02X\xe0\x8a\xb7%nI\x9a5\xd0\xe9\t\xe0\xa3{\xae\xd9\xee\xde\x01Cҳ\u007f\x815\xf6\x98I\xd2\xff\xb8\xefIr\xd9\xea\xe5\x97\xcd\xdb\xcd\x1b\xaf\xf4X\x93\xc7\xe1a\xf4\xa1,r*w(\x97\x83\x97?G~a\x99J\x84\xfbP\x92\x06\x8e]}\x8c\xbe+\x92\xdeD$\xfc\x8123\xde\xf4\x1b\xae\xb6\xf7\xe9\xdaw\xc8\\\xfa\xb1\xfb\xb1\x82\xff2[\xf9\x86\xd1cyI'&~\x13\xf1\xa8⽋\xbc>Af\xd1x\xf9ۛ7\xbf2\xe6_H7}\xeb7Ȭ\x99\xac\xfd\xa1\xf48\uec2fy\x85\\##\x926bI)\xdan\xe2\x0e;\xab?Kt\xb2\x8b$=u*B'H6\x98\x94p?m\xe9\x92\x1eGt\x95\x98D$\xcd\xe4\x8c\xdb\xccB\xd2\xc9{lY\x1b3\xb5'c\xf5f\xa5r\x8b_\xda@Җ\xb8&i\xc6@\xe7P`ϱ\xfdMA\xebɑr\xc5\xfbw\xf4~\xd0\x1f\xdf\xf7\x9b\xd7\x1e+\x9e\xf5\xf6\u007f\xff\xf5\xa3Y\x1b~\xf7\xe5\x1f6\xcc\"W\xc2\xffs\xf6\x03o\xbd\xff\xb22\x9de94J\xb9\x9aݝ=n\xc5\xf2\x9cQW\x90;[\x16K\xf3Z\x82\x95\x12\xb9\xddjG\xd6ė\xb6=\xa4L\xb4\x05pw\x8fm\xfa\xfa\xf3\xef\xbc\xf7\x02\x15+S\xdb\xf3ś\xde\xdbTL\xaex\xffq\xf6w_\xdbt/i\x19\x13\xfb\xcf\xff\xfa\xe8\xfbO~\xf4\xd1'j\x81k$\xf3o\xef\xf4\xee\xb1'nQ\xee\x1e\xbbK\xfa\xda\x0f\x1f\xbf\x85^\xf8\xfa\xc9U\xd7\u007f\xef\x89[%r\xa3\xe8פ\xbb\x1e\xc7\u007f\xc1K?\xbd\xea\x9ao\xdf5F\xba\xf2\xc1\x9f1\xb1\xa4\x14m7\xb1\x84\xc6\xdd>\xce<\xee\x8e\xef\x0e\x87\xb3*\xc3\xe1s\xa8?<\xbar7\xda[9\x9a^\xc7^\x91\xb5f\xebm\xd9\xe4\xcbKO\xc9\xe0nz\x1d\x9c\u0383\x95+\u07bbIi+\xa4y/=7I\xcaY\xb3\x9b\xcb\x19\x93I2\xb9\xd1G\xd8\xc6D@\xb0\xc7\xe2\xda؊\xd1\xfcQ\x8b\x83\x8bG\xcd7\xad\xe5؛4\x9e\aT\\\x934k\xa0\xf3aK \xf8\xa1`\x02\xa8\xf2\xf9\xbdtf:\xeb/\xe4\xc3'Oξ\xfb\xe9M\xc5\xc5\x1b6\x90U\u007f\xb8\x1b\xbf\x92\x1bA\xfe\xf2\xccw\xef~\xec\xbd\xe4m\x97g)\x87\xfe\xd0ܜ\xf1\x8b\x03WH?\xc0\xcb\x1d\xb7\xe5\\=U\xf9\x11\xfcмqc'oM\xdeL\x81\xde\xe3]|\xbf\xfaE\xf1\xc1\x93߹\xf7\xc7\xef\xd3E\xa3\xb6/\xdexx\xf6\xc3o\xd0/\x9bO\x9e\xbe\xf7\xfe_\xbc=\x8b6G\x8b\xfd#3\xa9&\x17\xaf\x92n\xf2R\xee\xf1\xbeV\xf9\xd9y\xf3\x13\xff2f̍O\xd0ş\xdd|\xcdU7>N\x96~E\u007f\x97\xfe\x15]\xf9\xd51\xd7~\xe3\xc1+\xa5[\x99XZ\x8c\xb6\x9bx\xae\x9b\xc5\xff$\x87\xd93J\x99\xbc\x06\xd0\x0f\xf0\xeb\xe8\xeel\xfcJ\xf2\x10\u007f('{\xaa2%\xd5R\xb2_\t%=k\xfcj\xbax\x05\xf9\x95+\xb1fBVμ\xc0\xf8Ѹ_gs\xc6d\x12\x9d\xb8b\xde\xfe\x13\xf8 \xc6\xfb\xf7\xce\xcb\xd2\xe6P\x82=\x16\xd7\xc6,\xe2\xea\xd6ߔ}\xd3K\t\xd3Z\x0e\xad6 \t\xf7$}\x89xht\x8bSȥ\xa2yt\xa5\xf9\x8e\x89\x8b\xf6\x9fX\x97\xc1nn\x9dH/y͕\xa4\xafh\x17\xcaE{|\x91Pk\x03\x92\xf0\xbc\xa4њq'\x9cB.\rg\xae{.y\xa5\x93`\x9dQ\v\xba\x1cv\xf3\xc4~\xdc;\xf7\u007fxL\xfb,\xdc\xe3\x8b\x06\xad\rH\xc2\xfb\x92\xbe\xbcq\x12\xac3N5\x00\x19\x06H\xda]\x9c\x04\xeb\x8cS\r@\x86\x01\x92v\x17'\xc1:\xe3T\x03\x90a\x80\xa4\xdd\xc5I\xb0\xce8\xd5\x00d\x18 iwq\x12\xac3N5\x00\x19\x06H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\x1a\x00<\x05H\xda+\xc0\r\xcf\x00\x05$\xed\t\xc0N\x06\xd0\x00I{\x01\xb0\x93\x01t\\\x95tw@\xfd\x97\x9d\xfe`\xa0Ý{\xf0\x19g\x19\v\xb7\x18{S\x9c!\x13\xbc:\xf5\a\xe2i\x8d\xac\x94$)\xfb\x90 \x00\xecd\x00\x1d7%}.\xb0K\xf9\xef\xf9c\x81\xf0\xa1p@\xff\a\x9eK\t\xe3,c\xe1\x16\xe3`\x8a3T\x16KN\x06\x19\x06Z#\x8f\x86\xc3/\t\x9f\xe6\x01v2\x80\x8e\x9b\x92\x0ev\x1c\xa3\x92N4\x93\xff\xdf\xdf\xd5\xec\xca\x05\x1e\xbdRk\xb7\x18{\a\x8d!\xb2\\Z\xee\x14b`dF\xfc\x80\x1exl\x0f\xa0㢤\xbb\x9b\x06\xfa\xa9\xa4{\x02䡓\xd4\x1e\xcbE\xac\xddb\x86E\xd2+\xec\xad&\xad\x00I\x03\x0e\xb8'\xe9s\x81CH\x91t\x872\x11\xdc&x\xfc\xf4\xf0b8˰n1,\"S\x1cda\xd7#r\xcd1\x1b\xe8\x18\xacQ<>\x8e\x8eU*\x96Ʋ\xf3\x0e\xc6\xe8\x86i$A,^\xb0\x93\x01tܓ41\xb7S$\xbdUyn\xd6.\xcbg\x80\r\x1b\xba\xb3\f\xeb\x16\xc3 4ű\xb2\xeb\x11\xb9\xe6\x98\rt\f\xd6KԦ5\u07b4^!\x10g\xfe\xc8\x18ݰ\x8dDBI\x83\x9d\f\xc0⚤{\x88\xf7\xac\"\xe9&\xe5\x91v{\xec-\x92\x87\t\xedi\xb8\u0081\xb7\xd8\x14Gl\xd7c\xe5\x9a\xc3\x19\xe8\x18\x04\xd4璞8\xa2`z\xcc\x10kt\xc34R$\xe9\xb9\x12\xd8\xc9\x00\x06nI\x1aϜ\x13\x89\xc4ѦDBw\xae\f_\xfa^\x1a\xd9K\xda\xc2\x14Gl\xd7c\xe5\x9a\xc3\x19\xe8\x184)\xcf\xca=\"i\xf0O\xb6e\x8dn\x1c$\rv2\x00\x8b[\x92>\x12\xd0\xe8G\x1d\x8a\x96\x82\x97|.M\xb0\x93\xb4\x85)\x8eخ\xc7\xca5\x873\xd01\xd8u\xb5\xa2\xcdpP\xc1\xf4+\x14\xfb\b}\aI#\xb0\x93\x01\x18ܒt\xe2$\xa1;p\xf2d\x02\x8f\xc1ɯ\xc1\xe7ܹ\xe2m'i\vS\x1c\xb1]\x8f\x95k\x0eg\xa0\x932\xe9I\x1a\xaex\x03:nIZ\xa1_\xfd]\x9atQ;\xdc\xf9]\xdav.-6\xc5\xe1\xedz\x8e<\xa7\f\x99\xad\\s\xac$m\xbf\xb7 i`\x88\xb8)\xe9D\u007fw\xa0\x9fx;\x1f\r\xec8\x12&~k\x97\x18\xc3Y\x86u\x8ba\x10\x9a\xe2\x98\xecz\xe6J\xb7+\xc1\"\xd7\x1c\x93\x81\x0eCp\xac\xcd%-\xd6\xe8\x86i\xe41r\xf7\xd8\xfap8)S`'\x03\xe8\xb8)\xe9~2\x95\xa6\xbf\xb8\xf6o\v\x04]\xb8\xc7\xdbp\x96a\xddbXD\xa68\x88\xb7\xeb\t\xe4h\x96Z\x02\xd7\x1c\xde@\x87e[\x8e\xcdm٬э\xd1Hz\x8f7!\xc9\xf9\r\xecd\x00\x1d7%\r\\4\xc0N\x06\xd0\x00I{\x04\xb0\x93\x01\x14@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)\\\x95\xb4n\xa0\x83PؕG\x9a\x8c\x14\x86\xc9\xc4\a\xf0\"nJZ7\xd0A\xe8D \x13\x1e\x9e\xb5c\xafS\x84\x05\xc3d\xe2\x03x\x117%\xad\x19\xe8 \xd4ߒ\x11\x92\x9e\x9c\xf4삔\x19\x16\xc7\x0f\xc0\x8b\xb8(i\xdd@\a\x85\x03ጐ\xf4$\x9040\xec\xb8'i\xc3@\a\xc5\x06\xb4\xc7\xf3{\x82\xfdWH\xd2\xf2C\xf3\xc7g\xdf>\x88?5MΞ\xf0\xc8\x00\x1e\x93\xa8O\x19\x9aD\x9eC4\xaa\t\x1d\x19-M\xe4bY\xd7\x1c\x96\xe13\xf1\x01\xbc\x88{\x926\ft\b^\x92t\xac\xa5\xf9+\x13Ǝ{d\xbe\x84\xd5Y9\xea\xa1\xe0\xfa\x9cI\t4\xb0+\xc0\x88\xc4-I+xw.\xad\xf5\xc7\x1dR\vy[\xfe\x1cy\x9d:\x15\xa1\x13tE\xf6b\xfc\xad69\x8b\x8f\x15JzXM|\x00\x0f⦤u\x03\x9dX\u007f\u007f`G\xbf\xc9ay\xe42\xb8\x9b^\xdbVT\xb6X\x9a\xd7\x12\xacT\x9cgWd\xad\xd9z[\xf61\xbc45\xe7\xb9\xe7&KW\x04z\x98X\xd65\x87a\x18M|\x00/⦤u\x03\x9d\xbdʬ\xfa\x9c\xd3\x06#\x84\xfd\x8a\xe5\xcd7\x95O\x1d\xb7\xe5\\=U1ˉ?\x94\x93=\x95\x0eG\x0eM\xcd\x1e{\xfbbI\xfa\x01\x13˺\xe6\xb0\f\x9f\x89\x0f\xe0Eܔ4\x00\x00\x17\x1d\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\n\x904\x00x\x8a\x8c\x96\xf4<)g>X\x02\x00\xde\"\xa3%ݿ#01g\xc0)\n\x00F\x12\xaeJZ3\xd0\x19\b\xb7\x04\x82\xfb\a\x1d\xa2\x87\x85\xb0\xb4\xdf)\x04\x00F\x12nJZ3\xd09\x17\bv\x1f\xd9۴\xd5\rM\xef\x91v;\x85\x00\xc0H\xc2MIk\x06:;Z\xc8\xf3\xc7\xce\x04\x86\xea\x18u!\x80\xa4\x01\x8fᢤu\x03\x9d\xad-\xf4\xf3\x0e\xdd\xc6\xf2\x12\x02\x92\x06<\x86{\x926\ft\xfa\x8f\xd1\x15\xbb\xb6\xd8\xc6\x0f\x0f\xddR\xd8)\x04\x00F\x12\xeeI\x9a7\xd0A(\xd1솸\xe29\x93w\x1dK8E\x01\xc0\x88\xc15I\x9b\ftp'\x1d8c\x1d=|l3\x1e\xfc\a\x00\x1e\xc0-I\x9b\rt\xd0\xee\xc0\x11\xdb\r\x86\x89\x81\x9c\xf1\xebw\xb8R3\x00\f\vnI\xdad\xa03\xb8#\xe0\xcem\\{\xa4\x0e\xa7\x10\x00\x18I\xb8%i\xde@g \xd8\xc4=\x8e\xfe\xd2\x01W\xbc\x01\x8fᖤ\x15Թ\xf4\x99\xe6-\xe7\xb0\xcac\x0e\xd1\xc3\x01H\x1a\xf0\x18nJZ3\xd09\x1ah>\xd2\xdf\u07ff\xab\xc5i\x83a`7H\x1a\xf0\x16nJZ3\xd0٦Ϊ/\xf9\xad&\xf1\xfe\xbd\xf3\xb2\\\x1a\xf1\x03\xc0\xf0ত]g\xae$}\xe5\x92\u007f\x8f\x00\xc0\xb0\x92ђ\xee\xff\xf0\x98S\b\x00\x8c02Z\xd2\x00\xe0=@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)@\xd2\x00\xe0)\xfe??\xe8B\x81\x97E\xcd\x14\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/ident-field.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x03\xd2\x00\x00\x00\xde\b\x03\x00\x00\x00\xe6g\xc8\n\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\x02\x05\x01\n\x03\x01\x05\b\x03\f\x0e\v\f\x10\x1c\x0e\x11\x14\x10\x12\x0f\r\x15$\x16\x17\x14\x1c\x1b\x15\x1b\x1d\x1a\x1f\x1f\x19\x13#A!# $$\x1d#$\"$%#&'%\x19(G((!'(&+)\x1e\x14+N()'++$*,)/-\"*.0-.,02/63(241685<9-5:=:;9=?=CA5AB@CEBKH|u]tvsB\x8c@@\x8dG\\z\xbby{x]~\xb7e|\xb8K\x90J\x85}e_\x80\xba}\u007f|O\x93Nb\x83\xbdN\x95Ud\x85\xbf\x81\x83\x80W\x95Vl\x87\xbc\x90\x86hZ\x98Yo\x89\xbf\x87\x89\x86]\x9c\\\\\x9dds\x8dÕ\x8cn\x8b\x8d\x8az\x8e\xbfe\x9ef\x8d\x8f\x8c|\x90\xc1\x9b\x91s\x90\x92\x8fi\xa2i~\x93\xc4x\x95Ā\x94œ\x94\x91\x9f\x95w{\x98\xc7s\xa4lq\xa5s\x95\x97\x94\x82\x9aė\x99\x96\x83\x9cƙ\x9b\x98u\xaaw\xa6\x9b}\x87\x9f\xc9~\xaay\x9c\x9e\x9b\x89\xa1ˀ\xad|\x9f\xa1\x9e\x8f\xa2ǫ\xa1\x82\xa1\xa3\xa0\xa2\xa4\xa1\x92\xa5ʂ\xb1\x85\xa5\xa7\xa4\x8a\xb2\x87\xb4\xa7\x83\x8b\xb3\x89\x96\xa9Χ\xa9\xa6\x98\xabю\xb6\x8c\xaa\xac\xa9\x9e\xad͍\xb8\x93\xba\xad\x88\xad\xaf\xac\x95\xb9\x95\xa1\xb0Я\xb1\xae\xa3\xb2Ә\xbc\x98\xa5\xb5ճ\xb5\xb2\x9b\xbf\x9bµ\x90\xab\xb7ѵ\xb7\xb4\xa3\xbf\x9d\xa2\xc0\xa4\xad\xb9ӷ\xb9\xb6\xb9\xbb\xb8\xb0\xbc֦Ũ\xbb\xbd\xba\xb3\xbeٽ\xbf\xbc\xa8ǫ\xb7\xbf\u052fƫ\xbf\xc1\xbd\xce\xc0\x9b\xb9\xc1ֲɮ\xc1ÿ\xbb\xc3\xd8\xc2\xc4\xc1\xbd\xc4ڲ̷\xc4\xc6\xc3\xc0\xc8ݻ\xca\xde\xc7\xc9ƻκ\xd9ɝ\xc6\xca\xd9\xc0\xcc\xda\xc7\xcb\xdb\xca\xccɿҾ\xc9\xcd\xdd\xd7ϡ\xcd\xcf\xcc\xc4\xd0\xde\xc8\xd3\xc1\xcc\xd0\xe0\xcf\xd1\xce\xe1ѥ\xd2\xd2\xdd\xc9\xd7\xcb\xd2\xd4\xd1\xcd\xd6\xde\xcc\xda\xce\xe6֪\xcf\xd8\xe0\xd5\xd8\xd4\xd2\xda\xe2\xd8\xda\xd6\xd8\xd9\xe3\xd5\xdc\xd1\xd3\xdc\xe4\xda\xdc\xd9\xe6ݯ\xd8\xdd\xe0\xd5\xdf\xda\xdc\xde\xdb\xdc\xdd\xe7\xda\xdf\xe2\xd7\xe1\xdc\xe0\xde\xe2\xde\xe0\xdd\xf0\xe0\xb3\xdf\xe1\xde\xdc\xe2\xe4\xde\xe3\xe6\xe1\xe3\xdf\xe3\xe5\xe2\xe1\xe6\xe9\xe8\xe5\xea\xe5\xe7\xe4\xe4\xe9\xeb\xe7\xe9\xe6\xf1\xf3\xf0\xfa\xfc\xf9\xfe\xff\xfcŃ\x89%\x00\x00 \x00IDATx^\xed\x9d\x0fX\x14\u05fd\xf7/\u05fc\xf5m\xea\x9d(o\xb9o/)\x04S\xac\xb6Y\xd9摖p\xcd$\x8c^I\x1f.\xe8\x96\xd2W\n\x9a\x91\x17I\xf7\xcc\xe5)O#\xb4\x85\xe7\xabŹ\xe9\x16\xdeV\xf1tFҪ\x8b4\xe6\xfcڹ\xb6\x94܋\xaa=]\x11Rw\xd1<'*t\xe2\f\xe5\x9a\xcd\xe6Ɏ&\xae\xc91\xf9)\x9cn\\\x95f\x9b\x9b\x9bF\xa6\xeb}\u007f\xcaN\xcax\x1a7\x9d\xf7m<\xbf\xe3|~Z\xe2\xaao\xab\xf1\xf1KQ)O\x8e\xaf\x19\x8026\xd1<\xbf(\xc7}u_EvRV\x05\x9d\xfa_\xccKM^+\f\xbc\xa5ݐ\xaa\xbc+\xc2]H\x89\xa0\xacy\xd1\xf4E\xf1\xb4\xf0\xc9K\x88H\xae̙\x18\x1a}w\x03\xdd\xe8\x9c71rN\xba,iu,\xea\\6%\"\xeep\xf4>\x94ɍ/\x96\xa7\xbfr@͌\xe8Ш\x19x7\a'\x10\x83T\x9268\xb0\x1c\xd00\x81\xe3V4ϛ\x14>\x83|\xa9\xeeZWn\x95\x90k\x9d\xa9>\xfcm\x96oJM\xce=OC\xb4\xbeMA\xd2y\xa9$\xcd\xd4dWᢤ\x9c3\xa9ul\xd3P\x04H_\xec\x11\xa1\x15\xf1\xd9b\x86\x9e\xb5\xae\xf9\x81\x94\x9f⩘\xf0\x18\xd2\\t>\x1b\"u7Z%]\xe6h\xdae/>Dk\xd5Q\x89\xbcI\x1a}\xd0X͗66\xe2^\xf0b\xa3\xadT\x9c\x9b\xb6V\xdb\xf8\x94\xd2?$璈\x93I\xd9{O\x94\xe2ѹ\x92\xe3\xd2\f\xb3*\"\xe6\xb1\xca5\xdc\x06\xc5\xdb\xcey\xdc\x14\xee6n\x0e\x1e\x81\xbdsg\xfe+'*\xe6\xf2\xdf\xe2͛\xf8mu\xe5)Y}\xa8\xa7\xba:-\xe3\x9eԧ\xf3\xee\xfc\xb4\xab1\xf9\xb9/ї\xcf%7vi\a\xf4\xb0\aϷ\xed\xa8\xdba\xcbǩ\xf3\xc9\x19\xfb\x8f\xac⩤\xa5\xdd\xd4\xe5=\xe4\xd1\nNs\x0eW\xd32\x8e.ᤏ\xcftl\x8e\x8a\xe9%\xdaK\xaf*\xb9{|-\xde\xd8\x1c1\xb9\xa8l:\x17\xa6\x1b{yR\xd4c\x8eL\x8e{\n9kB\xd7H\xd3_9\xa0\x96\x9b\xb7\xab\xd2\x1e\xc5u\xa3\xceC5\x93\xe3jjj\x9a\xc4\xcc\\\xae}T\xd2F\a\x96\x03\\%\xc5ѓ#\xa2\x97\xcc\xe3\xc8R\xaf\xbb֕[%\xe4Zg\xaa\x8f|\x9bi\xa5\xa5iI\xadH\xe7\xdbl\xe5\xeb\xba>*Ŀ\xab\x88\xad\xc9ki\xc9\xe5uX\xcd\x15l\xd3`\x03\xe4/\xb6\xebLcFNcc\xa3{\x14\xe5Y\xeb\x9a\x1fH\xf1)\xd2\xc3V8V\x84\xcd\xd3\xfdl\xddΪ\xdb#\xafg\xb84$\x98$\xe9\x12{qC{Sq\t\xd6tSQ\xa7wI\xb3\x03o\x1b\xf9N\x85\x81\xac-\x19\xff\x8e\xe7\xa7\xe0TO\xda*\xdc7\xf6T\u007f\xa5\xda\xcd\xc1\xb5\b\tW\xf4\f\x17\xf9\x1e\xd4S\xb8}\xa1\\(]\xa0\xacH!b.Oƍ\xe0U~?N\x9e#\xdd1\x1e\xaa\xf1\x0f]C}d]nS\x1e~\xc8#]\xb1f\xc0'\xccԠ\x8ev('\xf8:\x84r2\xf0O@_\x96M\xb9\x9b\xaa\xbc\xed\xdc.\xa4\xe44\xed6瑤\x83#KM\xb5\xdc\xf3\xa4\xfc\xa4\xb5\xdcFNz\xc6M\xc2\xc9ޘ0\xdd\xd8y\x91dD\xb2\x84#]J\x18Y~\xa6ce&\xe0\xa9(ҿl\x8e\xa4\xc7c\x06\xde\x02\xa7}80\x13\x80s\xe0\xa6_\x11\xe7QR\xad+\xb62H\xb5\xce֯-\xed\x1aQh\xb6\u07b7\xd9J\xbb\xd8|\xf2\x83\xc8\xd4d>i\x03h\x1b\x964\xdb4\x98\x00\xe6\x8bU\x0e\xbc5j]\xef\x03I\xc9}t\f#TH\xda\xf0\xc0L\x00\xf3\xa3\xc0Ժb\xab\x8c\\\xebl\xfd\xdah\xddV\xf0\xd7t\xbeMay,\x99|\xe7rM\x8a\xbd\xf4\a\xb2\xa4w\xa8\xaa\x9a\xf9bţ\xed\x17\xc7\x05\x9e\xb5\xae\xf7\x81\xa4d\xfa$\xfa4)]\x15\xc02zW\xbc;\xe8I\xac+\x05\xee\xcb\xc7|\x9dK'\xe1\xf1Y߯T\x92\xeeJ\xc9!?\xec۶\xa9\xf7\x9b3Y\x18\xcewN\x8c#M(s\x89:\xa0=R8;YJ&\xbex껑\xe8\x8dN\x92\v\xf7\x92GF\xd2o%~\x96\xf8\x16Ih\a\b\xe7\xa5\xfbr\xd2ȸ\x9a\x04T\x93,\xb3\xd3\xf0\x8c\xf0\xa3D\x9br7ey{\xa7\xcc@*\x04eM\\Ұ\x06\xcf\xdcJȖ\x15\xb8S\x8b&\x8d\xa87\x86\x8c\xfe\xa6E\xe3v\xd7\xfc\x830\xdd\xd89Q\xa4aΣ\n\f\xc7\xea\xed\xbd\x9d\xc42\x01k\x84\x19a\\&}\x8c\xc3\xdf\x00y\x8f\x91\xb4ၙ\x00e\x03w\u05fan\xb3w\u05faB\xd2s\xbbpŤ\xe5\xa8k\xa7e\x9d0\x8c\x17$\x9d\xb2\xad\xb5\x94\xadɵs\xb1l\xfb\xf2\xa9\xa4\xe5\xa6\xc1\x040_,~Ĺ\u007f)\xbc\xa7U\xebz\x1fHJ:\xe8X\xfdya\xba\f\x92Vs\xac\xe0X\xfb\xe9\xe2]\xdd\xf4E/\xe9\xa5u/?\x10V\xbc\xcfбӃ){K\xb3y\xdb\xfe\xd6\xcf\x1am\x1b\xcf\xf4\xbd\xb3\xd1FV\xc2O&.\xaa\xa8\x13\x16I\x144\x8f\x17\u05f8\xab~0\xe5)G\xa6\xfee\x8e\xa5|R\xe9\xabG6\xf1d\xae\\xg\xde+8Y\x8d\xbe}\x8b\xae\x91~\"\x84\xf4\xa5\xaeJ\x15.I\xd5\x0e\xa8Kzp\xff\x91U\xb638\x99\xc7\x17\xbeZȓ\xf5\xb4֤\xd4\xd2\x1dɤ\xbc\xccn\xaa\xf2n\xf0\x1cB\bW\x15N\x9fA&o˸{K\xcaҹb\xa2\xc29O\xad\x8b\xc1\x83\xe5\xc3\xe8tx\xf4\x9a\x15\x91\xe3'\x145\xe9\xc4:'F?\xb5kV\x18\x95\xf4\xb4\xa8u\xeb\xa6q$V\x91Y\xc4\x1aǮtauzM؆\xb2\xe9\xe1\xedʫnj\x0e,\at\x1f\xa6k\xe6\xee)\xb4X몭\x9e(\xaa\xcf\xc6gWWd$\x93\xf5hE\xed\xcc\xe2\x04\xe9\xb5Rm\xe6\xe4n\xccbk\U000b3534\x8aWr\x13i\xac\xd44\xd8\x00\xf6\x8bſ\xff\xe5G\x1eJ\x12zi\x8dZ\xd7\xfc@\x8aO1o\xfc2Dz\xf1\xf3\xbc}\xb6c\x1e\xe3y\xbfc\x96\xa4QsYѮc\x82\xa2\x91\x93L\xa5\xf5\xfa\xe9\x9ed:1\xb2ѳ\x0f\xe7s\x12\xefY\xb5\x83\xe7\xb7l!\x9b>H\u008f[\xf0\xe6\x8f֦ޓ-\xaf9K\xac\xf8\x81X\xc1\xcds\xa2#\xa6\xa9\x978e\xfe\x94S\x9afK\xc9\x11.7<\x91379\a7\xa0\xf7\x9993\xa6\\Z\x01\xd3\x0eh]\x9547\x97\xae\xec\xf4\x95g%e\x95S\xfd\x9f\xcfMN+\xdco\xa3\x85t\xef\x86\x14\xe5\xad\t\xf7\x18;\x94\xe0\t\x1d\x9e\xe46L\x8e\"\xfd\xc1\xbe\xe9Q\x91qD\xb6\xbd\x1b&\x87E\xdd[49\x14\xf7\xa9\xcdwGNZR4\x81\xcbԉE\x1d\xe9\xd1\xe1ӏQI7DžG\xccX\xc6q\x99l@qܚ\xe8Љq\xe2\xf9\xa6\xcc\xc8\xf0\xb8Z\xf6\x1ao\xbbၙ\x80\x86\xf1t\x0e*u{B\xad\xab\xb7z\xa0\xa8>\xdbӛ\x92S\xf3\xe9\xe5:\x8ao\xb3(\x8a.ȑ\v\x03p\xa7ۚ1\xf7U\xc4\xd6\xe4\x17\x9b\xd2\x12\x1f:G%-5\r6@\xf1\xc5\xf6lKN\xcc9G\x93\x1a\xb5\x8e4?\x90\xf2Sl\xbe-\xfc\xb6\xcd\x1e[Y\x9c\x13\xe648\xcd\xfd\xefJ\xd3$\xed\x1f\x96\x84\x96\x18\x85\x98\xcb\xf3\xa1\xe9\xddF1\x83\xa6S\x98\xfa\xfa\x9dAԺ\xb0<68\xba<\xc7g\x06\fc\xad\x97M\xe1\xe0\x9f+\x87\x95\r\xd1^\x96\xdḑc\xe2:\xa3\x90\xeb\xc0,I\x0f\xa2\xd6\xfd*\xe9\xe1\xadug\xc3@?\xfc\xd0\x12\xec\x92\x1e\u0558&\xe9\x81\xe3WI\a7 \xe9\xe0\xa5y\x1f\xb7\xc4\xf4\xf5W\x9f\xb8H\x17;\x8d\xa2t8_\xc7?\xfd\xd6`w\x0eB@\xd2\xc1K\x1c\xc7q\x13\x9a\x8d\xa2F\x02t\xb1\xf3\x13\xa3(\x1dr\xc8\xce獢F\x0f i\x00\b*@\xd2\x00\x10T\x80\xa4\x01 \xa8\x00I\x03@P\x01\x92\x06\x80\xa0\x02$\r\x00A\x05H\x1a\x00\x82\n\x904\x00\x04\x15 i\xb38\x92\xfd\xe5\xf0Z\xb9\x00\xa3\x13\xf3$\xed6\xd0q\x15\xd1\xdb\x14\x15i\xddK(\x88\xd9˗\x92\x8b\x18\x87\xcf\xca\x05\x18\xa5\x98%i\xd9@\xe7\xb2\xfdMr\xab\"s\xff{\xc5\x1f0\xfe-\xe4\xfec\u007f\x12\x12\xc3f\xe5\x02\x8cR̒\xb4l\xa0s\xd9n\xaeџ\xdf`\xfd[\xce\vw\xc4$\f\x97\x95\v0J1IҌ\x81Ψ\x914{\x83\xcaM)]\xee\xe4pY\xb9\x00\xa3\x14\x93$\xcd\x18\xe8\x98(i\r\xa7\x16\xd6\x14GөŇX-7\x1e\xa5\u007fK\xcf=R'\xadm\xe5\x02\x00\x83\xc5$I3\x06:\x97\xed\x958YcB\xb3\xd6rja\\]\xb4\x9dZ\x8cc5\xddx\x94\xfe-\xef\b7\xf8\x16аr\x01\x80Ac\x92\xa4\x19\x03\x9d+4Y\xf2\xbc\xdf5\xad\xe7\xbb#\xb9\xba\xe88\xb5\x18\xc5\xea\xba\xf1\xc8\x03\xef:\xd6\xe0\xd2\xd3\xca\x05\x00\x06\x8fI\x92\x96\rt\x10:M\xc4\xec*\xf2{W\xa5\xe7\xbb#\xb9\xba\xe88\xb5\x18\xc4\xea\xbb\xf1Ȓ>\xc23\xff\xef\xefi\xe5\x02\x00\x83\xc7$I\xcb\x06:nj\xfc\xdeU\xe9\xf9\xeeH\xae.:N-\x06\xb1\xfan<\xb2\xa4\xcf\xf0g\xe4<<\xad\\\x00`\xf0\x98$i\xc6@\xa7\x92\x9a\x17\xa0*\x87\xd7\x1d\x86\x01=\xdf\x1dIz:N-\x06\xb1\xde\xddx\x04\xff\x96.\xf6\xeey\x9eV.\x000xL\x924c\xa0\xe3\xa0\xddsG\x91\x96\xb9䰢\xed\xd4\xc2\xc8Tǩ\xc5(Vύ\x87\xf5oY\x9b!\xdd\xffN\xc3\xca\x05\x00\x06\x8fI\x92f\ft\xda\xed\xfb\x9a?\xb1\xf1\x8b\x8cb\x10\xb9\xaf\x12\xe6Ό\n\x9f\xafH\xd5\xc9Wt\xee\xe9\x98\x1e\xf9\x98ƻ\x03`\x88\xbd\u007f\x1c\x91\xbe\xff˼\xfb{K\xe78.\xbcY#\xa0\x81ۧ\xb1ut`\x96\xa4e\x03\x1d6\xe9o\x1c\xe1\xd2\x1dϦO|*=\xfc\xb2\xb7\xe0\xe1\xa2\xef\xccF\x9bQ\f櫽\xfc\xfeƺ<\xfe9\xa3@7\xda\xf9\xba\x9d{\x96Lzl\xfcu\x9a\x16\r\xad\xf7\xcf2n\x99Q\x88\x84\xfb{k\xaf\xa9٬y\xcb\xe4Z\xaeFc\xeb\xe8\xc0,I\xcb\x06:l\xd2<:8\xdc<;\x8d\xa2\x86\x89R_$\x8dN\xf0\xadX\xa7[\xd8\xfb\x05\x1b\xa0\x91\xaf\xe4\xdcs\xfb:\x14~\xbd\xcd~H\xbd\u007fVp+\x8cB\xb4\xa8Ց\xb4\xdfo8;b0IҌ\x81\x0e\x934\x91f\xce\xf7aߐ3\x00I\xa3\x9e\xe4-F\x81\x12\x1a\xf9J\xce=\xb7\x15\xb5s\xd7;0\x1aR\xef\x9f5\xdc\x1a\xa3\x10-@\xd2jL\x924c\xa0\xc3$\xfd\xcb\xe5p\x8e\x1b_LR\xae(\x8e\xe2qˠ\xe2iᓗྻa\x02ǭh\x9e7)|F7\x93T\x05\x8b\xb7/j\x8f\x102\xe3\"T]\x98\x86]\x0fB\x17\xf3R\x93\xd7\n\x03dƂG3V\x904\xda2W7\xb6\xaf\";)K\x98l\xeb\xe4+;\xf7\xccX1\xeb6\xfcY&4i\x1f\xcd7#!\xd9\xfbG\xfc\xf0\n\xa4ݘ\xcc\x14\xf9*x\x8c\xa3s{\xed\xea\xcb\xe4B\xedK&\x87\xcf \xdb\xe4\uf360-\xde*\x90\xf4`0\xca\xda\x1b\x8c\x81\x0e\x93\xf43\xc7jj\u0084\x9e\xe1͚\xe7\xb9555\xea\xb9e\xfa\xf8L\xc7樘^\xe4*)\x8e\x9e\x1c\x11\xbdd\x1e\xf7!\x93TE\x8b7\x19t\x15m\x16P9fk\xd9\xf5\xa0\xf3\xc9\x19\xfb\x8f\xac\xe2\xa9\xf4d\v\x1e\xedXQ\xd2\x15|\x97^l\xbemG\xdd\x0e[\xbe~\xbe\x8csϚ\x88\xb0c\xdd3\xe2\x0e\xeb\x1c\xcd7#!\xd9\xfbG\xfc\xf0\n\xa4ݘ\xcc\x14\xf9*\xd8\xccљ\xb9v\xf55\x15O\xe0\xa2\xd6l\x88\xa0\xe7\xa5\xe4\xef\riJ\xba\xdbYu{\xa4Y\x93(\xf31IҌ\x81\x0e\x93\xf4?\xe1\ue9a15\xf0vpE\x88\xb4\x19j\x86\x11\xc3M\xbf\"N\x0f\x98$\x8b\xfbV\xc0\xce\x16\x01\xe5\x0f\x84\xb6]ON\x06\xd6g_\x16\x91\x1ec\xb6\xa3\x1d+J\x9a\x98\xefh\xc7\xd6\xf1'hX\x9d^\xbe\xacs\xcf:Ύ\xae\x84\x93\x0f}\x1dFB\xb2\xf7\x8f|\x1fd\t\xa5{\x90;3E\x92\xc5\xce\t\xfd\xbcv\xf5\xa1\xb0H\xdcCϋ\x12_\x85{\x93\xf4,\xdcǛ8\x8d2\x1b\x93$\xcd\x18\xe8\xb0^:~ǫ\xa4\xef\x9d\xe4\xea\xc6D\xd3\tcL\x98\xd4+3I\rZ87\x8aF\xaei\xd7sM\xd0\xc6\x0e\"=\xc6lG\xdb\xdaG\x94\xf4~\xfe+\x9d\xd8M\xc29\xabE\x1b\xf5\xf2e\x9c{J\xb8\xc8%h\xc3D2y\xb8\x0e#!\xaf\xde?J\xf7 \x9b\xd4+3I\x96\"\xfa\x03\xaaW}(\x8c|\vk\xc2\xc4W^%\xfd\xe1>\xfb\x14\xe8\xa5\a\x83Q\xd6\xde`\ft<\xbdt\xfc\x88WILjm\x8b\x8e\xf6bn\x97\xb7\xcbI-j\x1c\x02\xca\xf5dM\xbb\x9es\xc28\x98.c1f;\xda\xd6>\xa2\xa4\v\x93\xf5b\x1f\x14n?\x9c\x9b\xad\x97\xaf\xec\xdc\xe3\f_R\xf5\x83\x96I\xf4\xd3_\x87\x91\x90W\xef\x1f\xa5{\x90;3E\x92\xe5P\xa4\xa0M\xed\xeaCt\xa8훤15\x9c)=Ĉ\xc0$I3\x06:L\xd2\xffx\x95\xf4\xbcI\xc7)\x1d\xe4E\xcc\x1ci;\x93\xf4\x1dM\xbb\x9eo\x04m\xe4\v\xbd\xa9d\xb6\xa3m\xed#\xaex\xa7\xacՋ\xdd$XZ\xa7\xe5\xeb\xe5+;\xf7\x94\xe1>p֤\x88\xcbB\xbe\x836\x12\xf2\xea\xfd\xe3\xe9\x1e$\xc0$\a\xc0\xc0$\r+ރ\xc2(ko0\x06:L\xd2\xffx\x95\xf4>\xae\x84<\xad\xa0\x17I\x19KZc:ɠmד\x9d\x86g\xb0\x1f%\x12\xe91f;ڱ\x82\xa4\v\x89\x00\xb5c\xeb\xe8\xd6j2\x97\xd6\xce\x17I\xce=\xbb\xb8f\xf4&w/\xea\x8dn\xb9\x0e#!\xc6\xfb\xa7e\x8d\xc7\x191ŁA\xd2~\xc3$I3\x06:lү\xb8\x0e\xd7Ԅ\xa5\xd7\xd4\\q\xafx{\xb4\x82eܽ%e\xe9\\1\xea>\\39\xae\xa6\x864v&\xa9BkїAˮ\a\xb5&\xa5\x96\xeeH\xe6m\xfb[\x15f;Z\xb1\xc2\xd5c\xf9<\xed'\xb5c\xf3\xf8\xc2W\v\xf9<\xfd|%\xe7\x1eg\xf8\x9c]ѓC3ׅ:\xaf\xc3H\x88\xf1\xfe\x99\xc5\xc5!5\xd2nLf\x8a|\x158\"\xbc\x8cӜ5\xa1\xe9\x87\xd1\xf1\xf4\xd0\x1a'\xfb\xbdѫ\xc76\xd7\xd4x\xacm\x1c\x1b\xc5n\xa0fI\x9a1\xd0a\x93\xfe\xa4v\xbc0U\xb6#W$ML\xf0\xb8\x80m\xdf\xf4\xa8ȸ}\b5\b\xa1\xa4\xb13I\x15Z\xa7fY4\xecz\x10:\x9f\x9b\x9cV\xb8\xdfƓ\xebG\x18\xb3\x1d\x8dXz\x8d7\x9f&\x0ey5c\xfbʳ\x92\xb2\xca\xfb\xbc\xe4+9\xf7TN\x8e\xca쬜\x1c\xf9\x94\xce\xd1|1\x12b\xbd\u007f6\x87E!\x0fܻ1\x99)\xf3e\xd9\x17\xe5\xe5\xb2\xecL\\塧\xc3\xf1c&\xf3\xbd\xd1k\xbc\t\x1e\xc3&\xe7\x849\rNS\xae\xd87\x1f\xd3$\r\x98\x83۹\xe7z\x10\x96ǔ\xde?\xb3\xa6\xebE\x9bB\xd9\x14\x0e\xfe\xb9r\xc0\x18e\r\x8cH\x04\xe7\x9e\xeb\x82JZ\xe9\xfd\xb3nĝ\tv6\xa8\xaf\x1c\x1a%\x80\xa4\x81\x01\xe3i$\xd4\x1e\xb5Y3\x12\xf0? i`\xa0\x80\x91Ј\x06$\r\f\x140\x12\x1aр\xa4\x01 \xa8\x00I\x03@P\x01\x92\x06\x80\xa0\x02$\r\x00A\x05H\x1a\x00\x82\n\x904\x00\x04\x15 i\x00\b*@\xd2\x00\x10T\x80\xa4\x01 \xa80OҢkNw\xb1]\xa0\x18\x01\x00pݘ%i\xc95\xc7e?\xee\xc4\x1c\xb37\x18\xed\x12\xe8T\x1dG\x000\xec\x98%i\xd95\xe74\xb9ۯ\xab8\xf8\xefBq\xfb`nY\x06\x00\x03\xc4$I\xab]s\x1c\xfe\xbfO\x91\xdf\x19\xd4]\b\x01`\x80\x98$i\x95kN\x93=x\xfe]]\xe9\xb0\xe3\xb6\xe0q\x88\xb7ԉ!7\xdd\x19_\x8cZB\xb9)\x8aX\xd6\"\x86e`.4\x00`\x92\xa4U\xae9%\x95^\xa3\x03\n\x85Îd\xc1\xd3y\x88ޅ\xb0\xa6\x89\xde\x1ao\r\xfeQK\x0fS\xc4*,b\x18\x06\xe6B\x03\x00&IZ\xe9\x9a\xd3b\x1fBS\xd3\x11\x80䰣\xb4\xe0\x91\x06\xde\xec\rle7\x1e\xa5E\x8c\xc8\x00]h\x00\xc0$I+]s*K\xbcG\a\x1a\x92Î҂G[Ғ\x1b\x8f\xd2\"Fd\x80.4\x00`\x92\xa4\x95\xae9E\xa6ܖ\u007f\xf8\x90\x1cvb\xc4\x19\xb4`\xc1\xa3-iɍGy\xf3y\x91\x01\xba\xd0\x00\x80I\x92V\xb8\xe6tؽ\xd9T\x04 \x92x=-x\nH\x9fLŻ\"L\x19\xab-\xe9\xa1u\xa1\x01F\x01&IZ\xe1\x9a\xd3b\xbfl\x10\x1e`H2UX\xf0\xc4\xc5!\xe4\xa4\x1b\u0097!\xd4{\xbbO\x92\x1eZ\x17\x1a`\x14`\x92\xa4\x15\xae9Mv\xf7\xcaw0\xa0pؑ,x\x10Q놲\xe9\xe1d!pZԺuӸ\tEML,k\x11\xc320\x17\x1a\x000KҬkN\x8b\xdbw<(P:\xec\xb8-x0\xae\xcc\xc8\xf08\xba\x1e\xd8\x1c\x17\x1e1c\x19\xc7e2\xb1\xacE\x8c\x82\x01\xb9\xd0\x00\x80i\x92\x06\x00`8\x00I\x03@P\x01\x92\x06\x80\xa0\x02$\r\x00A\x05H\x1a\x00\x82\n\x904\x00\x04\x15 i\x00\b*@\xd2\x00\x10T\x80\xa4\x01 \xa8\x00I\x03@P\x01\x92\x06\x80\xa0\x02$\r\x00A\xc5(\x96\xf4\x1c.j^\x93Q\x10\x00\x04\x18\xa3X\xd2Ϊ\xa2)Q\x9dFQ\x00\x10X\x98'i\xd1@\a\xa1\xceC\xbb\nv\x1d2E[U\\\xd0{|\x00\xa3\r\xb3$-\x19\xe8\xa0\xcbŻ\x9aڛv\x15\x9bqg\x93Z\xee\xb0Q\b\x00\x04\x16fIZ6Щ)!7B\xe8.\xa91\xdae\x18\x00I\x03A\x87I\x92f\ft*\x85\xbb\x84\x96\x99qw~\x904\x10t\x98$i\xc6@\xa7\xa3\xb8\xaa\xc3\xd5QS\xdc\xe1-~\x98hઌB\x00 \xb00IҬ\x81\x0e\x9eV\xdb\xed\xfbL\xb9\xa3\xa0+jڡ\xf6^\xa3(\x00\b L\x924c\xa0\xe3\xaa,ir6\x95T\x9ab]\xb9\x8f㸻\x8d\x82\x00 \x800IҌ\x81N\r5\xc6r\x95\x98a0\xdd\x195isU\x90\xf9\x02\x00\xa3\x1c\x93$\xcd\x18\xe8\x14Ѕ2\xf4f\x81\xb7\xf8a\xa2\x963cQ\x0e\x00\x86\x11\x93$\xcd\x18舒>n\x8e\xa4a\xc5\x1b\b2L\x924c\xa0S%\x0e\xbc\xcdX{\x06I\x03A\x87I\x92f\ft\\ϗ\x9cn?]\xf2\xbc\x19KއA\xd2@\xb0a\x96\xa4\x19\x03\x1dW\xed\xae\xa2]\xb5\xfeW\xb4\xcby|N\x98Ҁ\n\x00\x02\x1e\xd3$m>\xb38.\xba\xcc(\b\x00\x02\x8cQ,i\xe7\xf1v\xa3\x10\x00\b8F\xb1\xa4\x01 \x18\x01I\x03@P\x01\x92\x06\x80\xa0\x02$\r\x00A\x05H\x1a\x00\x82\n\x904\x00\x04\x15 i\x00\b*@\xd2\x00\x10T\x80\xa4\x01 \xa8\x00I\x03@P\x01\x92\x06\x80\xa0\x02$\r\x00A\x85y\x92\x96\ftz\x1b\xca\nv\x8d\x1c\xbf\xb9\xd6\xdc\xe4䜓Yg\x8c\xe2\x04N\xa4\x1c\xd1\u007f\xb3\x94\xb7\x91w\xeb\x92\xf8R\xed\x80-<_\xad\xfd\x0e\xfa\xc4\xc6/\xd2ykh\t\x88B\x02\xbec\x96\xa4e\x03\x1d\xe4(:\xder\xac\xe0\x98\xd1\x1e~\xe2][\xee+չ\xfa\xadXūI\xaf\xe8\xbf\xf9E^\xd2C\xf8\xe9\xa1ļ/\x94o\x9c|Wx\xbe\xd8h\xd3\xd1\x11\xea;\xb3Ѧ\xf3\xd6\xd0\x12\x10\x85\x04|\xc7,I\xcb\x06:o\x16\x90\x9b\xf27\x17\x98\xe2s\xe7ɪ\x9c>\xdcT7\xfa*i\xd4\xe7\xed\xcd\xc2ܤk\xe8\xab\xc4\xdcB\xd5\xf6\xec\xb5\ue52eZp\xf7\xe9'\xb5\x04D!\x01\x9f1IҌ\x81\x8ec\x1f\xddR27\x97$\xf3m;\xeav\xd8\xf2q\xea|r\xc6\xfe#\xabx\xa5Z\\E\x9b\x05\x8a\x94\xb7ic\x0e,\xa1\xf8lrq\xae\xa5%\x97\xd7m\xe1\xf9\nE\x06CYH\xc0|L\x924c\xa0\xd3Y\xe4p\xba\x9ce\xf6\x12\xa3}\x86\x9e,\xfe\xa1k\xa8\xef\x9ar\xe3W\xa5\xbf\xb2\xf1ɤ\xef}\x95ߏ\x1f\xcf\t\xfd\xb0\x1c\xbb)\x0f?\xe4m\x12\xc3EI\xf7\xa4\xad\xea!R\xfaJ\xb1[a\x1e\xcaژ\x8d\x88Z\x94\x99\xc9cڔop\x8e)8Uǟ\xc0\x8f'x܅\xe6d\xe0\x9f\x8b\xbe,\x95Z\x9c-\x02\xca; 2\aV \x95\x979p~2\xe9i\xb7yHz\b\v\t\x98\x8eI\x92f\ftP\x87\xc3n\xb7\x1fv\x98pg\xbf,\x9b\xa2\x83\x96\xe89\xb1\x8a4ڼ\xb4\x9eo1\xa9\x9b\x94\xb1'\x13\xbbPW\xd2I\xf1\x95(\xe9:\xfe\x03\xf7\xde\xccnX-{\xf9\xbdT-\xca\xccd\xb5\x90\xd7tB\xbaI8\x1d\xb4h#\xba&hn\x87R--\x9c\x1b\x85\xe3\x0fs`\x05Ry\xe5\x03\xf7%Ѳ\xb6zJz\xc8\n\t\x98\x8fI\x92f\ft0\xae\x8e^Tl\x82'VV\xb6\xe7\xb6s\u0094\xf1\xc1\\\xd2\xd1\t\xe4*c\xbfM>\x82\x8e\xccu\xaft\x8b\x92.\xe7{\xdc\xef3\xbba\xb5|Q\xf8%U\x8b23\xe5\xca\x13U˃\xf4\x1d\x94\x9b\x8d{\xc9F\x84\xa9\x859\xb0\x02\xa9\xbc\xf2\x81\xc5^\xfa\x03OIӸ\x81\x16\x92\xe6\xe2[!\x01?b\x92\xa4\x19\x03\x9d&\"\xe6+\xc5f\xf8簒nY'\x8cg禒Yi\x1fy\xeb\x840\xa7,ܫ\x8a}+\xf1\xb3ķ\xdc/DIw\xa5\xe4\x90\xder\xdb6\xc5n\x8cZ\x14\x99\xe5\xe4 \xf4%\xdd \xab\xa5\x8e\xbe\xae&#\xfe\xec\xff\xfaј1?\xfa\xb9Oja\x0e\x8c\xe4O\xc1\x94\x979\xf0ڹX\xab}\xf9\xa2\xa4ݱ\x83-d\x1a\xae\xa8\x8f\x12}*$\xe0GL\x924c\xa0\xd3l\xafm\u007f\xb3\xd8\xe1w\xb7\x8doߢk\xba\x9f\x88/gq3\xe8\xf3\\>\xa5\xb4\xee\xc8CId\xa9\xb7\xf0μW\x8el\u00adX\x19ۗ\xba*\x95\x8e\xbb{\xce46&nll$\x8bf'\x13\x17U\xd4\t+O\xd2n\xdf\xe4\xe5|\x86_\u007f\x96\x93\xf7\r\xb3\x15\x11y\x94\xe3C|\x8a>k\xb4m<\xd3\xf7\xceF[#\x8e\xcb\xe3\v_-䉾\xde\xff?\xdf).\x18\xf3\u007f\xff\xb3\xa2\x15\x19\xc3\x1cX\xfa\x14\x8a\xf2\xca\a\xfe,%\xad\xe2\x95\xdcDe\xec`\vٚ\x94Z\xba#\x99\xb7\xed\xf7\xa5\x90\x80\xff0KҌ\x81\xce\xf1\x92\"\xc7q\xa3\xf0\xa1\xe7}fڈ)\x8a\xb2\xd3\xe7_U\x14.JJɥ'oЉ\x9c\xb9\xc99u\x1e\xb1\xe56\xe1\x94\xd1;\xe2ԓJ䣵\xa9\xf7d\x1fQ\xecV\xca\xf3dai#O/\x9fvo\xc5\xf4lKN\xcc9G/\x9f\xe6m\x1f\x90\xb3\xdb[\xf0/EyVRV9\xf9\xadp\xfdpV\u007f\u007f\xe4\x8f~N\xb6\x1a\xc3\x1c\xd8\xfd)\x94\xe5\x95\x0f\xfcŦ\xb4ćΉ\x92\x16c\a[Ht>79\xadp\xbfͷB\x02~\xc34I\x03\xfatF\xce\xc1\x92\xbe\xadyxF.\xea\xe51 \xb8\x00I\x8f@\xa8\xa4#nk\x02I\x03\x03\a$\xad\x84\x1f\t\xfc\xe7\xffƒ\xfe\xe1\xff\xfa\xb7\u007f\xfb\xf9p\x88\x1a$\x1d܀\xa4\x95\x18\xa9\xcd/PIG|\xe7\x87\xdf\xfdN\xc3.\xc7\xe5n4\xa4\x9c\xaf\xe3\x9f~\xcb\xeb\xff\x8f\x01\x01\rHz\x04B\a\xde\x13;\xfa\xbbC0\xa1\x87\xdb;\x87R\xd59\xf87\xc3v\xde(\n\bX@\xd2#\x8f\xde+D\xd2w\xe3*\xfe\xde,W\xf3ؐ\x90\xef\xd9;{\x8dv\x02\x00\x01\x90\xf4\x88\xa3%.f,\x96\xf4f\\\xc5ӛ\xfa\xfbӗ\x1c\x8a\v\x99\xde\x01\x9a\x06|\x03$=\xd2pE|\xef\xf6\x1b\xb0\xa4kq\x15/\xfb\a\x96\xb6\xb3\xbf\u007fF\xf80\x9d\xd0\x02\x82\x0f\x90\xf4H\xa3!\xe4p\u007f8\x964\xc2U|\f\xff\x1d\xc6\u007fs\xc2\x1aF\xc8}\x9c\x80\x11\x0fHz\x84ѻ!\xe4\x1f\xfdd.M\xf8\xa7\xf8\a\x92\x06|\x06$=\xc2\xe8\xce\xfc^\u007f\xff\xc49\xfd\xbd\xae\u007f\xf6w\xe3?\x17\xfe\x03I\x03\xbe\x03\x92\x1ea\xb8\xe6\x85\xf5\xf7\xc7d\xfe\xf3\x1f\xfd\xc7\xff\xf1\xcf\xfe\x86\xde\xfe\xfe&\x9040\x00@\xd2#\f\u05ecHZ\xbb\x9b\x1fs\xf6oXw\xa5\u007f\xdd:\x04\x92\x06\x06\x00Hz\x84\xe1\x9a\x1e\xfdO\x0f@ҀϘ#\xe9\xeeb\xbb@1y\xe5,+\xdag\xc2=MF&\xaei\x93\xff\xe1\xc1,\x904\xe0+\xe6H\x94>:\xac\x00\x00\f\bIDAT\xdae?\xee\xc4\x1c\xb37\xe0\x17\xed\x055\xcd5\x05\xaa\x9bS\x8fZ\\\xd3&zn\x8c\x8e\x02I\x03>b\x8e\xa4\xd1iz\xefnz\v\xc1^\xfax\xa8\x18.\x8f\xa2\xb8\x96\x8d\xa9\xb9\xa2bWȽ\xa7AҀo\x98$i\x8a\x83ܧ\b5\x15Py\x17\x8c\x1c\xefJS\xe9m\n\r\xb9Ổ\xb1\x84\x1b0!?(iq\xa1\x90\x00\xc5\xe8\x13\x03C\x8b\x89\x92n\x12n\nZ)xb9̸\x9f\xe0H\xc4uzŬ\xe9230\x99\x8e\x86˽(\xe4j@\x02\x92\xf63&J\xba\xa4\x92>\xed\x12n\xe0}Ȅ[\xf3\x8fL\\Ζ&\x05\xcd-N\xf2\x9fX i\xc0\x17̓t\x8b]X\x11+\xae\xa5O\xb5\xc5ނG\x17\xdd.%\xddt\x9d\x01$\r\xf8\x82y\x92\xae\x14M\xb0D\xe7\xca*\u007f\xdb\xdc\x05\x1c i\xc0\x17̓t\x91h(M\x1d7\x10*\x83\xb9\xb4\x01D\xd2O\x8eŏ\xac\xb6C<\x12\xde\xf0)HB/Z7\x17\xcd7@\xd2~\xc64Iw\xd8E_\x88&;q\xbc\xbbb\x87\x15o\x03\x88`\xc6\xfd\xf9\xaawI\u007f~\xdfMcn\xf8\xe9\xee\xab\xdahi.\xe4\x16\xe1\xf9\x16\x8fl}\x94t\x88F\x8a}\xdb\xe8s\x01C\x8bi\x92n\xb1_\x16\x12\xbd\xd4;\xa7\n\xceK\x1b\x11\xa2%\x1a\xb5\xa4\u007f\xf1\xb3\xd7?\u007f\xfb\xc9[\xd5a^\b\xb9\x89\xfe\x00\xec\xbe\xe9\xfa%\xad\tH\xdaϘ&\xe9&\xbb\xfb>\x1d\xed\x05U-Up\xf5\x98!d\xc8-\x80\x85\xf2\xcc\u007f\x8c\x19w\x9f\xa8\xa7G\xc7\xfd\xeb\xb8߈\xc2\x1a\xf37\xb7\x94\xa4\x88\an\f\x19{\x01'.\x8c}\x9b\xeey\xf3\x98\x1b\x1fe\xdf\u007f\xfc\xc7$\xfcǏ3\xd9\nG\ty\xfc\xe61c\u007fA2\xfc\r9\xc2Uա^\xff\xe9\xd817?\xee\x8e\xc5G!\x85a\xf6\xb9Q\b\x05I\xfb\x19\xd3$\xdd\"/\x879\xf7\x15\x94\xc15ކH\xbd4~x\xf1\xdf_\xbc\xf0\xfa\x8f\xef\xa3\xe9\xdf߸\xfb\xc2\xee\x1bE\x9d\x8d{QT\xb4\x1cq\xeb\xdbW\u007f\xf28\xde\xf2\xf8Oh\xf4w\x9f\xb9\xf0\xfa/\x149܄G\xf3\u007f\xfe\xbe:[\xda\u007f_x\xfbg?\xc3B\xbfq\xf7\xe7\xbbo|Fu\xa8\x9b\x1f\xf8\xdb\xe7/\xfe\xc4\x1d\x8b\x8fB%\xcd\xec#\x84\x82\xa4\xfd\x8ci\x92\x06\x06\n+\xe9[ɜ\xfa\xedqB\x1ak\xed\xea3\xa2Ξ\x19\xfb\xd3\a\xa8\xaa\xe5\b\x9c\xa0#\xf1[\x9f$ѷ<)\x0429<\x8e\x15\xf8\xb3'\xd5\xd9\n{^\xfd\u007fc\xf1>\xf4\b\xb7\xa8\x0eu\xc3\xdb³\x1c\x1b\xc2\xec#\x85\x82\xa4\xfd\fH:``%=\xd6=\x02'i2\xcc\xfd\x9b\xa8\xb3\xab\u007f{\xf4\xae\x9bIW-G|~\xf5\xea\xe7c\u07fe\xfa\xf6\xd8\xcfI\xb4{d\xce\xe6\xf0\xfd\xd7_\xff\xbeG\xb6\xe2\x03y\xbc\x81\x1e\xe1\x06ա\xfe{\xec]\x8f\xbe-\x95\xe9sQ\xd2\xca}@\xd2\xfe\a$\x1d0\xb0\x92\x1e#\xf6\x90\n\xf1H<\xfe}e\xc4իw\xddw\xf5\xbe\xbb\xe4\x1f\x80\xab\xca\xf7\x9f\xbc\xeb\xae'=\xb2Ւ\xb4\xf2P\u007f~\xe0\xa77<\xc0Ƃ\xa4G\x02 送\x95\xf4-\xbf\x91\xb5\xa7\x18\rS\x88\xfa\xd8\b\xfa\xb7\v\xbb\u007fLӊ5\xab[\x9f|\xfb\xf3\xd7\u007f\xf6\ve\x04\xe6\xa6\an\x12\xf7\xbc\xf1\xf7tyL\xf5\xbe*\xdbq\xbfw\x1f\x8c<\nK]\xea\xe5\xb1\x1f\xff\xfe\u0085\xdf\xdc\xccƲ\x92~f\x1c\x0e\x1d\a\x92\xf6? 送\x95\xf4\xd5ݷ\x8e\x19s\xebn!\xfd\xe8\x8d\xf2\x99\xa5\xdd?\xbda̸\xff\xbe\xa0\x8a\xb8z\xf5\xbe\u007fu\x9f\xf2z\xe6?\x84\x93X\xca\xf7U\xd9>3.$D\x96\xe7\xd5ߌ\v\x11Ob1\x87\xfa\xfd\xadc\xc6\xfe\xe4u6\x96\x954=\x89\xf5\xc0\x18\x90\xb4\xdf\x01I\a\f\x92\xf6\x02\a<\xde\aI\xfb\x1b\x90t\xc0\x10`\x92\xfeş/\xbc\xf8\xef\x0f\x80\xa4\xfd\x0eH:`\b0I?\xfa\xfd17aE\x83\xa4\xfd\rH:`\b0I\xbb\x01I\xfb\x19\x90t\xc0\x00\x92\x06|\x01$\x1d0\x84\x04(F\x9f\v\x18Z@\xd2\x00\x10T\x80\xa4W\xaf\xd6J\x02@\x80b\x8e\xa4\x95\x06:\bU\x99wK\x93\xbfZ\x9e\xd0H\xbayقI\xc0\x89\xf7~\x19\x1f\xbb\xf0\xe8\xfc7pr\xeb\xcc;\xa6\xde1s;B\xf5\x16\xcbB\x84\x0e\xe0\x88\xa3\xea\xfd\x86\x89\xa3\xf1\u007f\x91\xd2mS-\xb3\xbd\x84z\xe7a\x8b\xe5\x80Q̀\x18\xba\x8aZ\x8dìmFQ\x80.\xe6HZa\xa0\x83\x90\xd3^k\xb0\xc3\xf0\xb1\xd2zI#\xe9\xc6\xf5F}\xec\xf2\xf7\x10:;u遗\x96S\x1d\x1c\xb5\xfcr\xcf\xc1\x17\x96Z\xea\x91\xeb\xa8Ŋ\x1f\x0fX\x8e\xba\xd0\x10s\xf4\xac\xe6\xe6\x83VF\x88\xa7V[5\x83|\xe1R\xfd\xd4\xedF1\x03b\xe8*\xea\xe3\xfa\xfa\xff\xb1\xbca\x14\x05\xe8b\x8e\xa4Y\x03\x1d\xac\xe8\x12\xf3$\xddfY\xaf\x91d\x89']\xf7\xe2\xc5$\xb9\x9a\xb4\xd4\xf5\xb1\xb4\xec\xb18\xd8eY\xb9\x9a\xec\xe7CC\x1d \xf3\x97\x1bE`\xb6\x0f^\xd2\bY\x87V\xd2h(+\xea\x14H\xfa:0I\xd2\x14\xc1@\aU٫\nL\x93\xf4j\xb9g^\xed\xd9I\x13hKM\xd8J\x92\uf456\xbax\x01ݼ`1i\xa9Gq\xb3\xf5\xb9\xa5\x0e\x80\x80\x95\xf4\x90T\x14H\xfaz0QҢ\x81\x0er\xb9ܷ\xe7\xf7?mS\xd7k$\x15Ж\xba<\xfe=\x92>\x88\xdb\xe4BAm\xcb\x17\x92\x96\xda6\xff\x80\xba\xa5\x9e\x9dj\xb1lm[\x99`\xbd\x9f\xdc \xf1\xa5\x85֙\xeb\xe9\xfb\xae'f\xc7.|#\xe1 z\xc4byI\x9e\t\xcb\x01\xf5\x8b\x13\xa6\xc6\xff\x12\xcfG\xffb\x11\x98\x8f\x14|m\xb5\x90=)\x97V\xc6\xc7.\xf7\x1cx\xb7-\x8f\xc7Y\xe0_\xa6N\x9cHXJF\xef\x8fX\xa6\xeeY?Ӻ\xf8cU\xa8u\xfd\xea\xf8;\x96\xb6Ѵ\\\x06\x19\xcd\x1c\x0e\xe2\x12\xfc\x16m\xb7h\xce\xc4\aZQdn\xbd]\xccL>\x1aA\x94\xb4^E!\xf4B\xfc\x1e\x04\xe8`\xa2\xa4E\x03\x1d\x82i\x92^=\xf5c\x8d\xa4\x02\xdaR?N\xb0ܿ\xfd\x14\x1dT\xcc\xff5\xdd\xfc\xeb\xf9\xb4\xa5\xee\xfc\xa5\xba\xa5\xba\x0e\xbc\x94036a\xfdJ\xcb\xc7d\x04\xba\xfe\xe0\xce\xf8\xf9X\xdc_'\xc4\xef<\xf8\xb0ŲG\x9cNJ3a9\xe0\xace偣{\xe2-\xbdd^:sa}}}\x9b\xaa$g\xeb\xebž\xb5-v\xe6\v\u007fYlQK\xfa\xb5\xd8\xf9\xbf;\xbaݲ\x93ho\xf5k\a\x96ZN!\xf4ח\xa6Z\xe2\xb7\xef\x8cUw\xfbV\xcb\xfc\x97^\x9ao%\x02\x94\xcb\xc0\xa0\x99\x83덄\x87/\xa1K[c\xeb5\xfa\xdb\x01WT}\xecVwf\xf2\xd1\b\xa2\xa4u*\n\xb3\xdcr?\x02t0O\xd2n\x03\x1d\x82Y\x92\xfex\xea\xc3\x1aI%\xb4\xa5\xa2\xaf\x9f]0\xd5\x12K\xfa\xa6\xd9+\xe9敳iK\xbdd\xbd\xe49\x9e\x9coY܉\xfb9\xa2\x8b?\"\xd2Bqߺ2\x96\f\xeb\xd7[H\xf7B\x85I\x87\xcdL\xc0\x9ex\xd2\\\xff'V\xc8Ag\xe0-Jz\xe1L|\xc8\xde\xf9*I\xbb\x12\xeeǛ\xbb\x0f|M~WH\x99\x84\\\xac\xb1\xf8\xb7ee\xbc:\xa7\xd98\xc25s\x81\xa2\flf\xda9l'C\x87\x95\x9a'\xfb\x06^Q\xabI\xee\xbf&\x99\xb1Gc\x06ޚ\x15\x85i{\xb6\r\x01:\x98'i\xb7\x81\x0e\xc1,I?2\xb5M#\xa9$\xde}f\xcbu\xf4~\xcbA\xa9\xf3Y.t>\xe8\x97;5$m\x15;\xfc\xe5\tݽ\x98\x04\xdcj\xadt\x92\xf9W\x95\xa4\x99\x80\x8f\xe3\x13\x1e\xd9s\x16u\v9x\x95\xf4\xd74\x17\xb4U%\xe9\x83\x16y\x9d\xfc\xef{\xeeO\x88\x15\x86\xeeV\xa2\x19\x8fy\xb7\xf5\xb7\xe4q\x8f\xe5k\xb6\f,\xda9|ly\x0f\xb9b5\xcfE\r\xbc\xa2^\xb3\xba\x90\xcbZO\x92\xcc\xd14%\xadSH\xc0\x13\xf3$\xed6\xd0!\x98$\xe9K\xd6\xd5\x1aI\x15\xb4\xa5\x9e\x12V\xce\x16.\x15\xfe0K\x85)\":0_C\xd2\xeeY\xf0|qV\xbc\x1cK\x81\xce>]*I\xcb\x01X\xa8{\x96϶\xc4\xffN\xd8ѫ\xa4\xcfZ\xa8\f\xd42\xdd)\x17\xe4T|\xc2\x13\a\xea\x17ϗ\xf6\xf1\x944ͩ\x1e\xff\n\xb0e\x90\xd1\xcb\xe1\xfe'\xd0\xd1\xd8n\xa4\xc1\xc0+\xaa7\xfe\x00z\x99\x0eNأiJZ\xbb\x90\x80\x06\xa6IZ2\xd0!\x98$\xe9\xf5\xb8\xa5y&%z\xe9&\xdaR\xe3\x1f\xa1[\xb6\xceDHlw\xf3\x17\v-\xd5e=\xea)iw\xc3[\x99p\x96\xf2w\xd4+H\xe8=YҴ\x8f\x95\x03\xd0Yr\x9c\xaf_\xb2\xee\x91rx\xc1sr/\xe4\xf2w\xa1\x97V/\x8f\x1d\x95{\xe9\xd9\vH\x99\x96{\x934]\f|\xc1\xd2ɖ\x81A/\x87\xbf\xc4w{\\d7\xe8\x8aZ\xbf\x1c-\xa7\xe5`\x8f\xa6\x96\xb4\xba\xa2\x00\xef\x98&i\xc9@\x87`\x8e\xa4\x8d:\xe9=\xa43\xfc;YmB\xf1\t_\x93-Di\xe2\xe9V\xb2\x03i\xa9h\xf5\xaf\xf5%}T蛷>K\x96\x82Ik\\)H\x1a7\xfe\xde\x05Ve\xc0v\xe1Ҫ\x85tJ\xbf\x10wm\x974\x96\x95Ź\xf4\x02R\x9c6\xabJ\xa6\xae\xf8\x85\xa4\xfb\\\x8fE\x92@J\xd0;ߛ\xa4\x13ȼ{\xf6BE\x19\x18\xf4r\xe8\x8e\xff\xcb\x1d\xeaq\xf7\xa0+\xea\x94\xf5\x92\x95.\x89\xb1Gc%\xadUQ\x98\xb6\xedm\b\xd0\xc14I\xcb\x06:.\xa7\xb3\xa8\xcai\x82\xdd\xc6\x13r\xcf\xfc\x84F'M.\u007f:\xf0\xc7\x05\U00064bcc\xb7\xc4o=z`1\xb9P\xf1\xa8\xe5\xfe\x97\xeb_^ly\x99\\\x14u\xc0\x85\xea\xadʖ\xda{\x8a\xaeW\v\xf9=a\xf9\xf5\x81\x97W\x93E\x9dK\xf1\t{\x0e,\xb7RI/\x8c\xffݳ\v,S\xff\xf8\x1e\x1b\xb0\xdd\x12\xbb\xf5\xe0\x81Ֆ\xd7\xc8~ۭ;_^lU\xf6\xd2\xddo\xd4\xd7[W\xd7\xd7w\xe2\xceޚ\xb0}\xeb\x1dB\x0e\fG\xad\xb3\xf7\x1c\\oy\x81d\xb6|ϳ\xf3\xf10\xfeԥ\xfa\xa9\xabO\xa1\xb3\xab\xa7\xd6+Ϻ[-\xf7\x9f:\xba0\xb6\r\xb1e`\xd0\xcdቄX\xb5}\xd9\xe0*\x8a\x10\xbfXX\xb6\x93\x8f&\\=\xb6\xb3\xbe\x9e\xe4\xa6YQ\x98\xa5\xe4\x02S@\x1b\xd3$-\x1b\xe8\x1c\x13.\xf7\xbe\xe2-z8\xb8d]\xa9\x91d90\xdf\x1a\xbb\x94\xaaf\xc1\v[g[\xe3\x85Ӹ[g\xc6Zbɥ˯\xd1S\xaa\xbd\v\xe2\x15M\xfc\xac0\xe9\x13&\x92\xe8\xe8\xe2\xf8\u0605\aI\xea\xef\xab\x13\xac\x8b\xcfRI\xb7-\xb4\xc6.\xfe\xad\xc5\xf20\x1b\xf0\xd2\xc2\xed\tS\xe3\x17\xbeFws\xad\xbfú\xf0\x14R f,\xe4\xb0\xf4\x8e\x84'\xfe8բZ\xa5o[\x9e\x10\xbb\x80tg\xbd;gZ㗿0s\xea\u0087\xf1\x1eS\xdf#\xa7\xb4\x95\xb1\xb3\xb7/\x8f\x8d_)\xc8\\.\xa4\x8cn\x0em\x16\xcf\x01͠*\x8a\xb0Ӻ\x93>\xcbG\xa3\xd7x\xbbg͚\x15EwS/\xe0\x03\x12\xa6I\xda|~k\xf9\xabFrx\x11\x96\xc7\x02\x1a\x97\xf55\xa3\x90\xe1g\xe9b\xa3\x88\xd1\xcb(\x96\xb4\x19\xffU\x19\x04\x92>\xe0\xd9\xd7\xfa\x9dg-\xaa1\x05 3\x8a%m\x06\x81.\xe9\xed\xaf\xa1\xc5[\x8d\x82\x86\x9d\x8f\xe3w\x1a\x85\x8cb@\xd2\xfe\xa4\xed\xa8e\xbdj\x86\x1cP\xb8,\xf3\x1f\x89\xff\xda(\n0\x15\x90\xb4?YHV\x9aڌ\xa2F0[c\x17\xb7\x19\xc5\x00\xe6\x02\x92\x06\x80\xa0\x02$\r\x00A\x05H\x1a\x00\x82\n\x904\x00\x04\x15 i\x00\b*\xfe?\xb6^u\v\xa5[\x1f\x81\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/ident-func.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x03\xd2\x00\x00\x00\xda\b\x03\x00\x00\x00}\xf6\x8a\x1c\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\x01\x04\x00\x02\x05\x01\n\x03\x01\x05\b\x03\t\f\b\t\x0f\x11\x0e\x10\f\x10\x12\x0f\x13\x15\x12\x15\x16\x14\x0f\x17&\x19\x18\x11\x1a\x1a\x13\x1a\x1c\x19\x1c\x1c\x16\x13\x1e7 \x1f\x19!# $$\x1d#$\"$%#'(&)(\"+)\x1e\x14+N++$*,)/-\"-.,.2402/63(241:7+685;9-:;9?<0=?=C@4AB@CEBGE8KH|u]tvsB\x8c@@\x8dG\\z\xbby{x]~\xb7e|\xb8\x84|dK\x90J_\x80\xba}\u007f|O\x93Nb\x83\xbd\x8b\x81cN\x95Ud\x85\xbf\x81\x83\x80W\x95Vl\x87\xbc\x8f\x86hZ\x98Yo\x89\xbe\\\x9a[\x87\x89\x86\x93\x89k^\x9d]\\\x9dds\x8dË\x8d\x8a\x96\x8doz\x8e\xbfe\x9ef\x8d\x8f\x8c|\x90\xc1\x9b\x91s\x90\x92\x8fi\xa2i~\x93\xc4x\x95Ā\x94œ\x94\x91{\x98\xc7s\xa4l\xa0\x96xq\xa5s\x97\x99\x96\x83\x9bţ\x99{\x99\x9b\x98u\xaaw\xa7\x9d~\x87\x9fɜ\x9e\x9b\u007f\xabz\x89\xa1˫\xa0\x82\x9f\xa1\x9e\x8f\xa2ǡ\xa3\xa0\xa2\xa4\xa1\x92\xa5ʂ\xb1\x85\xa5\xa7\xa4\x94\xa8ͳ\xa7\x82\x8b\xb3\x89\xa7\xa9\xa6\x96\xaa϶\xa9\x84\x8e\xb6\x8c\x9d\xac̪\xac\xa9\x8d\xb8\x93\xba\xad\x88\x9f\xafέ\xaf\xac\xa1\xb1ѯ\xb1\xae\x97\xbb\x97\xc0\xb3\x8e\xa5\xb4Ԛ\xbe\x9a\xb3\xb5\xb2\xab\xb7ѵ\xb7\xb4\xa3\xbf\x9d\xa2\xc0\xa4Ÿ\x93\xb7\xb9\xb6\xae\xbaԹ\xbb\xb8\xb0\xbc֦Ũ\xbb\xbd\xba\xb2\xbdض\xbeӽ\xbf\xbc\xa8ǫ\xafƫ\xcd\xc0\x9a\xb9\xc0տ\xc1\xbe\xba\xc2ײɮ\xc2\xc4\xc1\xbc\xc4ٲ̷\xd2Š\xc4\xc6\xc3\xd5ƚ\xc0\xc8ݻ\xca\xde\xc7\xc9ƻκ\xd8ɝ\xc0\xcc\xda\xc7\xcb\xdb\xca\xccɿҾ\xc9\xcd\xdd\xd7ϡ\xcd\xcf\xcc\xc4\xd0\xde\xdfϣ\xc8\xd3\xc1\xcc\xd0\xe0\xcf\xd1\xce\xe1Ҧ\xc9\xd7\xcb\xd2\xd4\xd1\xd2\xd3\xdd\xdf֨\xcd\xd6\xde\xcc\xda\xce\xe6֪\xd6\xd8\xd5\xd0\xd9\xe1\xd8\xd9\xe3\xd5\xdc\xd1\xd3\xdc\xe4\xda\xdc\xd9\xe6ݯ\xecܰ\xd5\xdf\xda\xdc\xdc\xe7\xdc\xde\xdb\xda\xdf\xe2\xd7\xe1\xdc\xe0\xde\xe2\xde\xe0\xdd\xf0\xe0\xb3\xdf\xe1\xde\xdd\xe3\xe5\xe1\xe3\xdf\xe3\xe5\xe2\xe1\xe6\xe9\xe8\xe5\xea\xe5\xe7\xe4\xe4\xe9\xeb\xe7\xe9\xe6\xf1\xf3\xf0\xfa\xfc\xf9\xfe\xff\xfcd\x82\x05\xe8\x00\x00 \x00IDATx^\xed\x9d\x0fT\x14\xd7\xdd\xf7\x1fZ\xf3\xc6\xe6M\xda\xd7Q\xf6\xe9S\xe2K\xa9%F\xdbd\x95x\xdeJ\xa0fN\\@\x13\x90*\x82Ę*M\xa2\xb4Q⟜h0\xc4\x1c\xff\xb4.\xc1@\f\th\"I\xa4\xc1\x83A\xa4V\xadx\fA\x03\x96'\xc1D\x92\x87\xa4\xa6nj$QL#\t\x1c\x16\x02\xb7\xf5\xbc\xf7ޙ\x9d\xb93;\xb3\xb3\xc0\xee\x0e\f\xbf\xcf\xd1ݻw\u007f\xf7\xcfܹ\u07fd\u007ff\x98\xdf\u007f\\\x1b<\b\x00\x80\xe1\xc6\u007f\x18\xe9\xd6\aFy\x03\x00\x10r@\xd2\x00`)@\xd2\x00`)@\xd2\x00`)@\xd2\x00\x10`\xfa\x8c\f\x82\nH\x1a\x00\x02\x89+c\x127\xc7\xc8(\x98X^\xd2e3یL̤}f\x99\x91\xc9Hd\x14\xb7\xfa\u0529\xce\xcaO\x8c\x8c\x82\x89\x89\x92n\xdeWTrB\f79\xcb}\xda~\xb3y^bN\xbfO\x13m\x9e\xe4\xd6\x19\x99\x04\x8as9I\xa9\xb9\xa7R\xbfR\xc7\u007f\xee\xe0\xefӲ\x17xr\xc2\x06\xaf\xb8\"\x0e\x135\xfb\xa4\x869Ck87\xd5_[?!\x99\xadC\xeb\xf0k\x81\x0f+\xa1`_\x04\xbeիxLr\xce\xfbFv~\xa2\xd5ꁡ\x81\xdbgd\x12dL\x93\xb4\xbb\xd2y\xb4\xf5\xa4\xb3\x85~h/8\\\xec\xd3\xfa\x91Ԋ\xbc\xa4\x0e\x9f&\x9al\x9dPdd\x12(\xea\x93~Sqp)\xcf\u007f\xa4\xfe\xa2\xff\x9d\xcd\x0e\xad\x04\"\xe5\xe1[\xd5QW\x8b\xb8\r\xd5E3\xb9j-{\x99\xa3\x196\xbfm}S-\xfe\"\x90\xcc\xdaPۓ\\\xd1U_\xe6\xb4`\x1f\x04\xa1ջ\xab\xf8\x97NUe\xddu\xca\xc8\xd0\x17\xa7\xceJA\x8dV\x0f\f\xb5\\\x8d\x91I\x901Mҕ\x05.\x84ڜ\xcd\xf4Cy\xa5˧\xa4;\xf8\n\xd4\xdf\xed\xcbB\x9bV\xdbr\xdf\x06mq\x81\x9a v$\xaf\xe9\xc5=/\xd3[\xd2\b\x95\xfa\x924Zis\xa9\xa3\x9a\xe8O\xfd\xcc)\x1a\xd6,\xebl\xfe\xdb\xfadF\x8a\x18\x102\xab\xe6\x9a|Y\x8b\x05\xeb\x12\x94V?\xc7\xd7\xe3_\xc7\xecL#;_d\xad\x97\xc3\x1a\xad\x1e\x10j\xb9\xa3F&A\xc6,I\xbb\x9c\r\xe4M\x18\f\x9a\x8aܾ%}\x81?\xee\xebk]2&u\xfa6h2\xea\xbc~S\x98t\x99\xbc\xed\xe5?\xf5\xfeη\xa4;'e\xa8\xa3\x04em\xe5\fj\xcfH\xda\xd0\xd6'\xd3\x03*頴:\x954\xaa\xe0\a\xf1\xc3.\xb1\x94\x91\xb4F\xab\a\x84\xd1+\xe9\xa3\x05=R\xf8jA\v\xf2!\xe9\xdey<%\x1f\xa1m<\u007fP\\\x9bn\xe3\x1d\x15\xf9\x99I9_P\x9b\v\xeb\xe79RŰ\x8c{\xa24\\\xb4\xa4D\x85O\x9a\xad\xfca\xde:\xa5\xbc\x99k.\x9f\xe2\xc4\xe1ƜtǼ\x9ct\xb2\\\xef\xaf\xcaJ\xca\xcc\xc7]\xe7C\a\xcf0\x97\x9e\x98\xf3\xedA\\~)*\xe5I\xf9\x9a\x06(s\vͳc/\x1e\xab\xfb+\xb2\x92\x96VХ\xff\x17\xb9i\xc9녉\xb7\x94\f\xa9\xea\xbb2\u008d\x94\bʚ\x1fM?\x14ό\x98\xb2\x8c\x88\xe4j\xca$[\xf4\x1c\xfaS\x88\\\xf3'E\xa6dȒVۢ\xce\xe5S'\xc6\x1d\x8dއ\x96p\x13\x8a\xf1\xc0).\u007fe\x83\x9aY\xd1\xe1Q\xb3q\xb2rN`:RIڠ`٠!\x9c\xe3V\xb6̟\x1c1\x9b\x9cTO\xab+c%\xe4Vg\x9a\x8f\x9c\xcd-i\xc9k.P\x13\xad\xb3)H:7\x8d\x84\x99\x96\xec.\xbc/)\xfb\x9d\xb4z\xb6k(\f\xa4\x13{\\\xe8E|\x96\x98\xa1w\xabk\x1e\x90\xf2(\x9c\xd3#\xa6\x93\xee\xa2sl\x88\xb4\xddh\x95tYy\xf3ng\xf1aڪ\xe5\x95ȗ\xa4\xd1G\x8d\a\xf9\xd2\xc6F<\n~\xd1\xe8(\x15צ\xe7\x0e:\xf8\xd4\xd2W\x92\xe9\x0f賓\xacW\xeaK\xf9\xbd\xaa\x84'\xa5\x15f\xf5\xc4\xe9OV\xae\xe36)\xbev\xcd\xe7\xa6r\xb7s)X\xe8\xefߕw\xa4\xbeb\x1e\xff-\x8e\xde\xc2\xe7\xd7W\xa4.\xedG\xbd\a\x0f\xa6gޓ\x96\x9f{\xd7\xe7ݍ\xc9/|\x85\xbez!\xb9\xb1[۠\x97-<ϱ\xb3~\xa7#\x0f\x87.$gV\x1d\xcfᩤ\xa5d\xea\xfa\x1e\xf6\xea\x05M\\\xb9\xbby9G\xb7p2&,)\xdf\x1a5\xbd\x8fh/\xa3\xbad΄Z\x1c\xd92qJQ\xd9,Φk\xdb>9\xea\xc9\xf2%\x1c\xe7D\xae\x9a\xf0u\xd2\xf2W6\xa8\xe5\xe6\xef\xaetFq=\xa8\xf3p͔\xb8\x9a\x9a\x9af13\xb7{\x1f\x95\xb4Q\xc1\xb2\x81\xbb\xa48z\xca\xc4\xe8e\xf39\xb2\xd5\xebiue\xac\x84\xdc\xeaL\U000d1cd9^Z\x9a\x9et\x0e\xe9\x9cM,\xe9\xeeO\v\xf1\xef*b[\xb2#=yo=Vs\x05\xdb5X\x03\xf9\xc4v76ff766zfQޭ\xaey@\x8a\xa3Ȱ\xad,_i\x9b\xaf{l=m\xd53\"\x872]\n\x04fI\xba\xc4Y\xdc\xe0j..\xc1\x9an.\xea\xf4-iv\xe2\xed \xe7T\x98\xc8:\x92\xf1\xefx^*\x0e\xf5\xa6\xe7\u0c71\xf7\xa0z\xff\xac\x9ck\x15\x02\xee\xe8\xd9nr\x1e\xdaU\x06\xfb¹p\xbaAY\x91J\xc4\\\x91\x8c;\xc1q\xbe\n\aϒ\xe1\x18O\xd5\xf8G\xba\x85U\xfc\x96\\\xfc\x92K\x86bM\x83\xcf\xf9\xbfH\xb9\xd6\xd3\x01\x85\xbefg\xe2\xb4\xfdK\x1d\xcad\xaa\xfa\xba\xb8\xddHI\x13\x1d6\xe7\x93`9G\xb6\x9aj\xb9\x17I\xfdIo\xb9\x9d\\\xf4\x9c9\x19\a\xfb\xa6\xdbtm\xe7G\x92\x19\xc92\x8e\f)6\xb2\xfdL\xe7ʌ\x813\x8a\x8c/[#iy\xcc\xc4[\xa0ɏ\x82\x19\x03\x9c\x037몸\x8e\x92Z]\x11\xcb \xb5:۾\x8e\xf4n\xa2\xd0,\xbd\xb3y\x8e\x0e\xb1y\xe4\a\x91i\xc9<\xd2\aP>\x964\xdb5\x18\x03\xe6\xc4*'\xde\x1a\xad\xaew@Rp\x1f\x9d\xc3\b\xaf\x9a\xc76\a7\x9d\xefK7!\xc0,I\x97\x17\x90\xc6\xe8,\xaaE\x9d\x05\xcd}}}\x9f\x14\xfb\xba\xe5F[\xd2y\x9e`\xbd֞\x14\xa6\xccӹʹ\x06\x8d\xafۗ٢\xb9I\xb6eX\xe8\x97\xd3\xd2\xf3+>\xea\xc7]\t\xe5\xa6\xf7~\x8bI\xa3\x13饎\xcfE\xe3S\x89ݨ;锞A\xafC\x1eT\xb6\b\u05ec\xee\xdbL\xb7\xf50;\x1d\xcad\xaa\xfa\xba\x84N\xc4\xd0\xc4m:Z>3\x82\xd4>e\xb2\xbb\a\x13MV~m\xceٓ'r\xb7\xe3\x9aS\xa9\xa2\x956]\xdb\bz\x15\xa9Y%i\xc6\xc05i\xf2\x12g\x03\x12&\x9f\x8c\xa47\xd5\xd6\xd6n\"\x926,\x985@\xd3m\xd2pU\xc6HZ\x8e\x95`Z\x9dm_G!y\xad\xe0;t\xce\xe69\xfe\x95\xb3dz\x12\x89\xb9ܒ\xfdI\xa5\xc2wJI3M͜X/I\xab[]\uf024`\xc6\xed\xf4m\xaa\xda@\xe2\x93}Ω\xa3v\x94\xae\x16~\"\xab\xcbP\xabӃ\xfe\x16\xa4\xb6\xa4\xa5\xe0^\xbeW3\xd9Q\xcf\xdcj+\xe7\xbdnB\xe8\xc9('^\xd5m\x8d\"s\u058e\x8a\xf5\x99\xfc\xbc\x97\xfa\xc9\xc0!\xb0\x86\x98,\xf5\xac\xbcз\xc9GБy\xe4\xc7^\xdb@\\K\xf7\xe2\xa1\xf9a\xfa\r\xca\xc9\xc2\x03E#\t\xd1J2\xc9T\xf5\xad\xe5\x0e#%tI\xdb>\x81\xc8g\xba8n\xe2!\xb2vR\xf4\xf2\xdd5q\xb8_\x9d\x10\xae\x94\xc8\xdbcj[q\b\xba\xaa\x924\x93\x19jw\xa6L增\xa4\xe5im\x8f\x19\x16\xccf\x86\xa6ϐ*\u007fT\x9e\xd12\xb1\x12l\xab3\xedK\xcf&j\xe4\xcf\xea\x9cM\xba\x96\x16~\"\xe5\x96\xfc\x82?B\xbe\xebVI\x9a=C\xf2\x89UIڻ\xd5\xf5\x0eH\nΜM\xdff\xcfP\x19\xb0\xd4p\xb5\x9a\xf1\xa1\xc3,I\x9f,\xa2\xa3r%\x9e\xa6\xb4\x11\x9a\x8a\xda|\\\xd8PIz\xa7Jҧ\xf8\x0f5\x93u\xda\xc4;\x1e*9\xcd[1\xdct\uf568\xfdl!Y\x98\x1dL\xac ?\xf1g)t\xde\xc7t\x82\xfc5h}>\th\x1b\x14&\xd2\xcf\a\xf9\xaf\xd0\x16a\x97-=\x0f}#\x8c\xd2y\x0ee2U}\xd7\xd9\xd4SSAY\x13I\xed\xe7O>I\xc1\xad3u&\xa9j\x8aa\x94n\x92%M\aV&\xb3\x13d\x0f\xeb\xea\x8b\x114#*\xe9\x82O\x14\x926,\x981`~\x14\x98VW\xc4\xcaȭζ\xaf\x83\xb6-\xd9\xd1\xd6>\x9b\xc2\xf6X29\xe7rK\x8a\xa3\xf4G\xb2\xa4w\xaa\x9a\x9a9\xb1biU\xe2\xbc\xc0\xbb\xd5\xf5\x0eH\nfL\xa6o\x933T\x06,\xa3wǻ\x9d^ĺZ\xe0\xb9}\xccߵt\x12\x9e\x9f\xf5\xffF%\xe9\xee\xd4l\xf2Þ\x9f\xafN\x972E\x98\xcewN\x8a#]h\xc92\xb5\x81+R\x98\x1a\x94\xd2\x0e\x83\xb27\x93Y1]$\x17\xbeD^\x19I\xbf\x9bx9\xf1]\x12\xd06\xe8H^O\xf6\xba\xb3\xd3=\x06\aI\x96Y\xe9\xb8[}\x9a\xe8P&Sַo\xeal\xa4BP֤e\r\xeb\xf0ʭ\x84ĬăZ4\xe9D}\xd3\xc9\xecoF4\x9e\xb7\xb6\xd8l\xba\xb6)Q\xa4cΧ\n\x8c\xc0\xea\xed\x9bAl\x19\x83u\u008a0n\t}\x8dÿ\xac\xe4;F҆\x053\x06\xca\x0e\xeeiu\xddn\xefiu\x85\xa4\xe7\xe1\xb5twz\xb6\xbauZ7\b\xd3xAҩ\xf9\xe7Jٖ\\?\x0f\xb7o\u007f\x1e\x95\xb4\xdc5\x18\x03\xe6\xc4\xe2W\x9c\xfbW\xc2wZ\xad\xaew@R\xb0\x9c\xce\xd5_\x14\x96\xcb i5'\nN\xb8\x9a\x8aw\xf7\xd0\x0f}\xae\xa6\"\x97z\xefJB\xd8\xf1~\x87Ν\x1eN}\xa94\x8bwT\x9d\xbb\xdc\xe8\xd8\xfcN\xff\xfb\x9b\x1dd'\xfcT\xe2}\x15\xf5\xc2&\x89\x82\x96\t\xe2\x1ew\xb5m\xaa\xb3|\x89\xfem\x8e\xa5|R\xe9\xf1#[x\xb2V.\xbc+\xf7\xc8_\xb6\xe03\xff\xed\xbbt\x8fT\xfcU\xefO\xcbI\xa3U\xd01\xa8Oz\xb8\xeax\x8e\x83̴s\xf9\xc2\xe3\x85<\xd9O;\x97\x94V\xba3\x99ԗI\xa6\xaa\xef&\xef)\x84pWa\xdcl\xb2x[Υ\x94\x94ep\xc5D\x85)\xce\r\xd3\xf1d\xf9(j\x8a\x88^\xb72rBxQ\xb3\x8e\xadkR\xb4s\xf7\x1c\x1b\x95\xf4̨\r\x1bfr\xc4V\x91\xd9\xc4u\xe5\xbb3\x84\xdd\xe9u\xb6Me\xb3\"\\ʻnj\n\x96\rz\x8e\xd2=s\xcf\x12ZluU\xac7\x8a\xe6s\xf0Y\a+2\x93\xc9~\xb4\xa2u\xe6p\x82\xf4\x04Ig\xe7l^ʶ\xe4\xe5\xd4\xf4\x8a#k\x12\xa9\xad\xd45X\x03\xf6\xc4\xe2\xdf\xff\xbdG\x1e\x11\xee\x1f\xd0ju\xcd\x03R\x1c\xc5\xfc\t\xcb˗O\x98\xef\xeb\xd8Nx\xcd\xe7C\x8di\x92F-eE\xbbO\b\x8aF.\xb2\x94\xd6\x1b\xa7{\x93\xe9\xc2\xc8A\xaf>\\\xc8N\xbc'g'\xcfo\xdbF\xa2>J¯\xdbp\xf4\xa7\xeb\xd3\xee\xc9:\xe2\x9dv\xa5Ml\xe0\x96\x94\xe8\x893\xd4[\x9c2U٥\xe9\x8e\xd4l\xe1v\xc3\xfa\xecy\xc9ٸ\x03}(\xac\xc8rD\x9b\xbd\xd2\x0e\x98\xb6\xc1\xb9\x9c\xa4yk\xe8\xceN\u007f\xc5R\xcfu\xe9\vk\x92\xd3\v\xab\x1c\xb4\x92\x9edHQߚ\b\xaf\xb9C\t^\xd0\xe1EnÔ(2\x1e싋\x8a\x9cId۷i\x8a-*\xa5h\x8a-\x0e\x1fϜ\xc8\xc9ˊ¹%:\xb6\xa8-#:b\xd6\t*閸\x88\x89\xb3\x96s\xdc\x12֠8n]t\xf8\xa48\xf1zӒȈ\xb8Z\xf6\x1eo\xa7a\xc1\x8cA\xc3\x04\xba\x06\x95\x86=\xa1\xd5ձ^(\x9aϑ\xbf%9-O\x90\x1b{6\x8b\xa2\xe8T\x9f\xdc\x18\xf0\nn\xe3\xccyd\xbe&\xb7dǖ\xf4\xc4G\xceRIK]\x835P\x9c\xd8\xde\xfc\xe4\xc4l\xe1\xa6P\x8dVG\x9a\a\xa4<\x8a\xad\xb7Gܾ\xd5+\x96\xa5-<\xa5\xa1\xcdԿ\xae4Oҡa\x99\xad\xc4\xc8\xc4\\^\xb4e\xf4\x18\xd9\f\x9aNa\xe9\x1br\x06\xd1\xea\xc2\xf6\xd8\xe0\xe8\xf6\x9e\x9f\x19\x10\xc4V/\x9b\xca\xc1\x1fW\x06\x95M\xd1\x03\xbf\x9f8\x84\xb4O\n֟\x04\x11̒\xf4 Z=\xa4\x92\x0en\xab\xb75\x04\xe7\xf6q?\xb1\xbc\xa4G5\xa6Iz\xe0\x84TҖ\x06$maZ\xf6q\xcb\xcc\xde\u007f\xf5\x8f/\xe8f\xa7\x91\x95\x0e\x17\xea\xf9\xfcw\a\x9b\xd8z\x80\xa4-\xccL\x8e\xe3\xc2[\x8c\xac\x86\x03t\xb3\xf3s48\xb2I\xe2\vFV\xa3\x06\x904\x00X\n\x904\x00X\n\x904\x00X\n\x904\x00X\n\x904\x00X\n\x904\x00X\n\x904\x00X\n\x904\x00X\n\x90\xb4i\x1c\xcf\xfa*\xb8\xae\\\x80Q\x89\x89\x92\xf68\xd0q\x17\xd1\xc7\x14\x15i=K\xc8¼ė\x92\x9b\x18\x83\xe7\xca\x05\x18\x9d\x98&iفN\xbb\xb3\xc1\x85\x19\xe8\x9f\xee\x8c<\x18\xff-\xe4\x91#\x03k\x02\x92\x06,\x89+c\x127\xc7\xc8Ȓ\x80\xa4G\x1f\xd4s\xcf\xd0\x19\u07be\u007f\xa6NuV\x9a\xf6\xe4YS1Q\xd2\x1e\a:\xca`h\xa9\x8c\x92\xfeL\xbb}IT\xc4lS\xe6j\x9f;\xf8\xfb\x8cl\x10y\xae\x12\xe6\xae\xcc\n\xbf\xefH\xd5\xc9W\xf4\xdc\xd3>+\xf2I\x8do\a@\x80}\xff\x94G\xfa\xff'\xf3\x9e\xf3\x96\xc1q\\D\x8b\x86A\x03\xb7O#vT`\x9a\xa4e\a:l0ԔGHO<\x9b5ə\x11\xd1\xee\xcb8X\xf4\xbf\xb3\xd9ad\x83\xe9x\x89\xafj\xac\xcf\xe5_02\xf4\xa0\x9d\xaf\xc7sϲ\xc9ON\x18\xa2Ӣ\xc0\xfa\xfeY\xce-72\x91\xf0\x9c7WM\xcdV\xcdG&\xd7r5\x1a\xb1\xa3\x02\xd3$-;\xd0a\x83\xe6\xd1\xce\xe1\xee\xd9id\x15$J\xfd\x914\xaa\xe7\xcfa\x9dnc\x9f\x17l\x80F\xbe\x92\xe7\x9e\x19\x1bP\xc4P\xbb}@}\xff\xac\xe4V\x1a\x99hQ\xab#\xe9\x90?pv\xb8`\x96\xa4\x19\a:L\xd0DZ8\xff\xa7}\x01g\x00\x92F\xbd\xc9ی\f%4\xf2\x95<\xf7\xdc^\xe4\xe2\x86:1\n\xa8\xef\x9fu\xdc:#\x13-@\xd2*̒4\xe3@\x87\t\x86\x96\xf6\b\x8e\x9bPLB\xee(\x8e\xe2\xf5Ƞ\xe2\x99\x11S\x96ᱻ!\x9c\xe3V\xb6̟\x1c1\xbb\x87\t\xaa\x8c\xc5\xc7\x17\xb9&\n\x99q\x13UC\x98\x86\xbb\x1e\x84\xbe\xc8MK^/L\x90\x19\x17<\x9a\xb6\x82\xa4Ѷy\xba\xb6\xfd\x15YIK\x85ŶN\xbe\xb2\xe7\x9e\xd9+\xe7\u070e\x8f%\xbcY\xbb4\xff\x1c\tɾ\u007făW %c2S\xe4\xab\xe0I\x8e\xae\xed\xb5\x9bo\t\x17\xee\\6%b\x16\x89\x93\xcf\x1bA[\xbc\xd5 \xe9\xc1`\x94\xb7/\x18\a:L0Ĝ\xa8\xa9\xb1\t#CC͋ܺ\x9a\x1a\xf542c\u0092\xf2\xadQ\xd3\xfb\x90\xbb\xa48z\xca\xc4\xe8e\xf3\xb9O\x98\xa0\xcaZ|Ƞ\xbbh\xab\x80\xcac\xb6\x96\xbb\x1et!9\xb3\xeax\x0eO\xa5'\xbb\xe0Ѷ\x15%]\xc1w\xeb\xd9\xe69v\xd6\xeft\xe4\xe9\xe7\xcbx\xeeY7\xd1v\xa2gv\xdcQ\x9d\xd2\xfcs$$\xfb\xfe\x11\x0f^\x81\x94\x8c\xc9L\x91\xaf\x82\xad\x1c]\x99k7_sq8\x17\xb5n\xd3Dz]J>oHS\xd2=m\xd53\"\xcdZD\x99\x8eY\x92f\x1c\xe80\xc1\xd0\x13\xe1\xe9\x1aZ\x13\xefr\xae\b\x91>C\x9daL\xe7f]\x15\x97\aL\x90\xc5\xf3(\xe0\xb6V\x01\xe5擶\xbb\x9e\xecL\xac\xcf\xfe\xa5Dz\x8c\xb3\x1dm[Q\xd2\xc4\xf9\x8e\xb6m=}\xda0}\xd5Η\xf5ܳ\x81s\xa2\xab\x11䠇\xe0HH\xf6\xfd#?\aYB\xe9=ȓ\x99\"\xc8\xe2\xe4\x84q^\xbb\xf9\x90-\x12\xff\xe0Ώ\x12?E\xf8\x92\xf4\x1c<ƛ\xb8\x8c2\x19\xb3$\xcd8\xd0a}\xe9\x84\x1c\x9f\x92N\x99\xec\xee\xc1D\xd3\x05\xe3t\x9b4*3A\rZ9\x0f\x8aN\xae鮧C\xd0\xc6N\"=\xc6َ\xb6k\x1fQ\xd2U|\x87\x8e\xed\x16\xe1\x9a\xd5}\x9b\xf5\xf2e<\xf7\x94p\x91\xcbЦI=hH\x8e\x84|\xfa\xfeQz\x0frH\xa32\x13d)\xa2?\xa0z͇l\xe4,\xac\xb3\x89\x9f|J\xfa\x93}Ω0J\x0f\x06\xa3\xbc}\xc18\xd0\xf1\xf6\xa5\x13B|Jz\xbaط\xe8lo\xfa\f9^\x0ejQS.\xa0\xdcO\xd6t\xd7sV\x98\a\xd3m,\xc6َ\xb6k\x1fQ҅\xc9z\xb6\x0fS?=('K/_\xd9sO[IJj[\xebdz\xf4Cp$\xe4\xd3\xf7\x8f\xd2{\x90'3E\x90\xe5p\xa4\xa0M\xed\xe6Ct\xaaퟤ15\x9c)#\xc4p\xc0,I3\x0et\x98`\xe8\xf1)\xe9\xf9\x93OR\xe8\x14pz\x8a\x14\xcf\x04\xfdG\xd3]\xcf7\x826\xf2\x84\xd1Tr\xb6\xa3\xed\xdaG\xdc\xf1N]\xafg\xbbEpi\x9d\x9e\xa7\x97\xaf칧\f\x8f\x81s&O\xa4\xd7\xe1\x87\xe0Hȧ\xef\x1fo\xefA\x02Lp\x00\fLҰ\xe3=(\x8c\xf2\xf6\x05\xe3@\x87\t\x86\x1e\x9f\x92\xdeǕ\x90\xb7\x95\xf4&)cIk,'\x19\xb4\xdd\xf5d\xa5\xe3\x0e\xffi\"\x91\x1e\xe3lG\xdbV\x90t!\x11\xa0\xb6\xad\x10{\x90\xac\xa5\xb5\xf3E\x92\xe7\x9e\xdd\\\vj\xe0RP_t\xeb\x10\x1c\t1\xbe\u007fZ\xd7y]\x11S\x14\f\x92\x0e\x15fI\x9aq\xa0\xc3\x06C\x8a\xfbhM\x8d-\xa3\xa6\xe6\xaag\xc7۫\x17,\xe7RJ\xca2\xb8b\xd4s\xb4fJ\\M\r\xe9\xecLP\x85֦/\x83\x96\xbb\x1et.)\xadtg2\xef\xa8:\xa7p\xb6\xa3e+\xdc=\x96\xc7\xd3qR\xdb6\x97/<^\xc8\xe7\xea\xe7+y\xeei\x8bH\xd9\x1d=ŶdCx\xdb\x10\x1c\t1\xbe\u007f\xe6p3\x91\x1a)\x19\x93\x99\"_\x05\xe5\x13}\xcc\xd3\\5\xe1\x19G\xd1Ɍ\xf0\x1a\x17{\xde\xe8\xddc[kj\xbc\xf66N\x8c^o\xa0\xa6I\x9aq\xa0\xc3\x06CI\xed\x04a\xa9\xecD\xeeH\x1a\b\xf7\xba\x81m_\\T\xe4\xcc}X\xf2\x82)\xe9\xecLP\x85֥Y\x16\rw=\b]X\x93\x9c^X\xe5\xe0\xc9\xfd#\x8c\xb3\x1d\r[z\x8f7\x9f.Ny5m\xfb+\x96z\xaeK\xeb\xe4+y\uea5c\x12\xb5\xa4\xb3rJ\xa4S\xa74\u007f\x1c\t\xb1\xbe\u007f\xb6ڢ\x90\x17\x9edLf\xca|Y\xf6E\xf9\xb8-{\t9=M\x11\xf8u\ts\xde\xe8=\xde\x04\xafiS[xJC\x9b)w웎y\x92\x06\x82B_\xfbU\xdfW\x03=\x9e{\x86\x82\xb0=\xa6\xf4\xfd3'N\xcf\xda\x14ʦr\xf0Ǖ\x03\xc6(o \xf4\xb8&\x8d\x193\xc5\xe5SԂ\xe7\x9e!A%\xad\xf4\xfd\xb3a\xd8]\tnk\b\xe0\r\xe8#\b\x90\xf4\x88\x81\xf7\x83_\xfe\xd7\xff*.\x18\xf3_\xbf\xd4\xfe֨\x04\xbf\xf1v$\xe4\x8aڪi\t\x84\x1c\x90\xf4\x88A[\xa6J~\xf9\xbf\xe7\\\xbb\xf6\u007f\xff\xcf\xff\xd3\xfe֨\x04\u007f\x01GB\xc3\x19\x90\xb4\xa5\xe8\x8cL\xb9v-\xf2\xf6\x96\xe0\xde\\\v\x8e\x84\x863 iKA%=\xf1\xf6\xe6\xe0J\x1a\x18\u0380\xa4-\x85 i[ܬ&\x10\xf5h\x05$m)\x04I\x8f\x8d\xfc\xfe\r\r\xbb\xcb\xdbC\u007f\xa9\x1f0\x1f\x90\xb4\xa5\xa0\x92\x9e\xd4~\xad\xe7;aaa\xb6\xa3\xaeNP\xf5\xa8\x03$m%\xfa\xae\x12I\xcf\xc6\xe7\xe6\xfbs\xdc-c\xc3¾\xef\xec\x1c\x9d\xb7P\x8db@\xd2\x16\xa2u\xe6\xf4뱤\xb7\xe2s3\xab\xf9ڵ\x8ce\x87g\x86ŵ\x83\xa6G\x17 i\xeb\xe0\x9e\xf8\xfd\x19\xd7aI\xd7\xe2s\xb3\xfc_X\xdamxĎ\b\xf2\x05-`\xb8\x01\x92\xb6\x0e\raG\xafE`I#|nN\xe0\xffG\xf1\xff\x14[è}\xbc\xc7(\x05$m\x19\xfa6\x85\xfd\xeb\x1aYK\x13\xfe-\xfe\aI\x8f:L\x94\xb4\xe85\xa7\xa7\xd8)P\x8c\x80\xa1г\xe4\xfb\u05eeMJ\xb9\xd6\xe7\xfe\xf7\xb5\x1e\xfcߍ\xff\x13I\x87\x01\xc3\x17\xa3\x93:\bL\x93\xb4\xe45\xc7\xed<\xe9\u009c\x10\x1e\xd0oe\xaaO\xa2`\xe2\x9eo\xbbvm\xfa\x92\u007f\xff\xeb\xda\xc9\u007f\xfd\xfbZCߵk͂\xa4\xbb\x80እ$-{͡7:\xb9\x8b\xad\xff\x14\x8a\x19\x83yd\x99\xff\xb8\xe7D\xd2Ӳ\xf5I\u05f5M\x1b\xae^۰\x01\x81\xa4\x879V\x92\xb4\xdakNy\xe8\x9fS\x14r\x06\xf5\x14B\xffqϊ\xfe\xb7\x17 \xe9a\x8d\x95$\xad\xf2\x9a\xd3\xec\x1c\xa2\x13\xc5a\x84\xd2Î\xc7\x05O\xb9\xf8H\x9d\xe9\xe4\xa1;\x13\x8aQ\xab\x8d\x9b\xaa\xb0e]İ\xf8\xed\x85\xc6=sʿ\xbc\x98\x03\x92\x1e\xceXI\xd2*\xaf9%\x95>\xadG\x14\n\x0f;\x92\v\x9e\xce\xc3\xf4)\x845\xcd\xf4\xd1x\xeb\xf0\x8fZ\x86Ma\xabp\x11\xc3\xe0\xb7\x17\x1a\xf7\xccIȋ\xe8(\"\xe9gn4\xd4\xf5\xfd\xb7\x1aYx\x13F\xff\xe9\u007f\x190\xbc\xf2\xba\xf5~-3\xdf(2Q\x1d\xaeAe\x8d\xda\xef\x89\x1f|\x87\xbe\x87\xdd\xf8\x18y\xf3\xbfvV\x92\xb4\xd2kN\xab\xd3Zϔ\x91<\xec(]\xf0H\x13o\xf6\x01\xb6\xb27\x1e\xa5\x8b\x18\x11\xff\xbdи\x97\x8f\xa9\xb9\xaabwXJ\x13\xee\x8d\xe3^7\xea[\x17ǾE\xbb\x98\x91\x9d\x02}I\xbf>\xde8\xab\xb0\xb0\xb017\xdd\xf6\x94\x91\x19\xc1+\xaf\xb7\xc6^\x14\xbf\x19\\&\xe2\xe1j~\xa7Qq\xa3\xf6\xbb\xe1\xf9/\xe9\xfb\x97\xcf\xdfHޤ\xda\x19b%I+\xbd\xe6T\x96\xf8\xb6\x1eiH\x1ev\x94.x\xb4%-y\xe3Q\xba\x88\x11\xf1\xdf\vM_\xb3-\xec\xfa\x1bn\xb8\xe1{\xdf\xfb\xdeرc\xaf\xc7\\w]\x98\xad\xa4\xd5\xe7X\xea\u125fuu\xdd\xf1\xdb+aW~{\x87\x91\xa9\x8c~\xb6\xbf\xfa\x95\xeeW\x128\xf5\x95\xbf\xfe\xe1Ƿ^12\xd4*\xe8֧\xa4o\x06\x93\t9\\=4\x8eʨ\xfd¾\x14\x03_\n\x96\xb7\xfa\xf5\x1b\xd3e-I+\xbd\xe6\x14\x99\xf2X\xfe\xe0!y\xd8Q\xba\xe0і\xb4\xe4\x8dG\xf9\xf0y\x91\x01x\xa1q7\xad\x9c3+n\x96\xcc\xec\xd9K\xca\x1b\xda\xc3\xc8P\x16&vK\xa2\xef\xa7n\x1e3\xf6\x17\x1f\xe3\x0f\xcf\xde<\xe6\xa6DŽ\xbeu\xdb\x13X\x1b\x8f\xde\x12vˣX\x1c\xcf\xfeh̸\xfb\xbfԲ|t\xdcw\xc7\xd1\x14\x8f\xe1\xc0\xa3a\xaa\xfc\x1e\xfd\x81\x10\x89\x87\xb5?\x93o\u07bam옛\x9fb\x92ɦ]\x1e\x9d|y\v\x99\xa5zJ\xd4/H\xaeԃd\x16\xfc\xc4\x1dC\xca\x04\x1f\xee\xc7t(\xbd8\xf6c1\x1bO\xdd\xe8\xe5beq4\xe6\xadۮ\xbf\xee6\xb6-\xa4\xe2X\xc9\v!O픕\x16j.\xb5\x05\x8d\xf2:\x89C\xc7,I+\xbc\xe6\xb4;}\xb9\xa9\x18\x81H\xe2\xf5v\xc1S@\xc6d*ޕ6\xa5\xad\xb6\xa4\a\xe2\x85\xc6\xdd\xd6ڬ\xa0\xa5\xd5\xd5\xd9'\x8eҲ\xa4ǿ|\xf1\xbd;p\xa7{\xfe\x86g/\xbe\xf5\v\xa1\xef\x8d{K\x96\xf4\xeb?|\xfd\xe2[d=\xe8e\xf9̍/\xff\xe3\xe5\x1b\x9f\xc5\x11?x\xf5\xe2\xab7\x85)\xf3{\xd6\x13\xd9\xf5\xc6x\xfa\xcd\xcd\x0f\xfe\xfd\xca\xeb?g\x92I\xa6\x8c\x0e^\xff\xcf.\xb9D\xfd\x82\xe4J\xfd\xf4\xbfq\xaa\xb7\xc6\r)\x13r\xb8?#?6O\xfd̫Yh\x96\xca\xe2H\xd4\x0f_\xbe\xf8\x8f\xbb\xef\x96s\x97,\xf0\uf0b0\x92&|\x87N\xb9=\xb5S\xe5B^䶠Q\xde'qȘ%i\x85לVg\xbb\x81\xf9\bC\x92\xa9\xc2\x05O\\\x1cBm4\"b9\x9e'\xcf\xf0K\xd2\x03\xf3B\xd3\xe3V҃\u007f8\xbd$\xfd\x06~\xff\x9f\xb1]]?\xfe\x83\xd4\x13\xbb\xc6\\\x94'\u07b7\x10\x83\xf7\xc6iX\xfe\xf8\x19\xfc\xf2̏\xbb\xba~\xf2,\t\x84)\xf3\xa3\x91ϒrȼ\x1b\xbf_\xf7\x9e*\x99d*V\x85pqL\x97\\\xa2~Ar\xa5\xfe\xecI5\x84L\xc8\xe1\xfe\xe1\x16\xfc\xe1\x96?x\xb2\x91\xeaF\xb3T\x16\xe7\x19\x85\xffq\xa3\x9c\xbbd\xd1u\xe5\xb1\xf1]\x1e\xc6?F\x96\x00\x9eکr!/r[\xd0(\xad\x938D̒\xb4\xc2kN\xb3\xd3J\u007f-\xa4\xf0\xb0#\xb9\xe0AD\xad\x9b\xcafE\x90\x8d\xc0\x99Q\x1b6\xcc\xe4\u008b\x9a\x19[\xd6E\f\xcb\xc0\xbc\xd0h\xe0%iO`\xcc\xc7RO\xa4}\xdcc46L\x9c|zY^\xffw\xfc\xf2\xf7\xeb=\x810e~R$\x99w\x93\x88_\x8d\xbd\xfb\x89\xf7\xd8d\x92)\xf3F\xba\xbfT\xa2~Ar\xa5\xaexR\r!\x13r\xb8Wƾ\xd7\xf5\xde\xd8+\x9el\x94\xed\xa3,\x8eD\xfd\xf7\xcf\xc7*r\x97,\xf0T]\xfem\xfc\x03\x8d\xf1\xd4N\x95\xcb\x15\xb6RB\x94\xd1\xc9\x1b\x04\xa6I\x9a\xf5\x9a\xd3\xea\xf1;n\t\x94\x1ev<.x0\xee%\x91\x11qt?\xb0%.b\xe2\xac\xe5\x1c\xb7\x84\xb1e]\xc4(\x18\x90\x17\x1a\r\xc2\xf4$}=#\xe9q\xcc\x0e\xf0\x18qp\xf5\xb6\xf4S\xd2\u007f\x1e'&\xfe\xf3\x83\xb7]\xff\xa0\x81\xa4ɜY*Q\xbf U\xa54&\xde\x03Ʉ\x1e\xee\xdd\xf7w\xdd\u007f\xb7\x94\x8d\xb2}\x94ő\x97\x9f\xfc\xea\xbd//2m!Yt]\xf9-3J\xff\x96(\xd5S;\xef\\Tma-I\x03!B\xec\xa5c\xff\a\xbf\xbc\xc1\xf6ݟ0\x13o\xb2=\xe6\xe1Ǐ\x8a\x01/K퉷d\xe5\x99x\xd3\xfdnQl\u007f\xbd\x8e\x9dl2يo_\x92\xa5\xa6T\xa2~A\xaaJ\xa9\xb6\xc7\x06\x9a\t=\xdc\xd7\xc7w\x8d\u007f]\xcaF\xaa\xdbwȖ\x97\xb28\xf2r\x1d\x1e\xd8_e\xdb\xc2c\xa1\xb1\x96\xf6\xd4\xce;\x17U[\x80\xa4\x81A v\xd7;\xeex\xef\xe2\xcb\xe3پ\xfb\xea\x8d\xcfK\xdbc\xecU\x9d\x97\xaf\u007f\xe2\xe3\x8b/ߪa\xf9\xccMd\x9fI\xbd=\xe6\xb1zv\x1c\x8e\x1c\x87\x03\xe3\xdf\x10\"n}\xfe\xe2\xc5Gof\x92ɒ\x16\xd2]yO\xb8\xfe$\x95\xa8_\x90\xaaR\xf42\xd1\xe03\x11\x0ew\xfc\x83\x9e\xe1\x95=\x8cq\xcf{\xb5\x01y\xb9\xf9\xc1\x8bo\x8cg\xdaB\xb2\xe8\xf2\xa4\x95C\x9e\x8bX\u07b9\xa8\xda\x02$\r\f\x02\xb1\xbb~\xfc\x8b\xb1c~\xf4\x14\xdbw\xbb\x9e\xf9ј\x1f\x88\x17\xb1\x14\xf7^\xbc\xfa\xd3\xeb\xc6\xfc\xf4e-\xcbG\xc7}G\xbc,\xf4\x03\xf9\"\x96d\xf5\xe8M\xdf\x1d\xf7\xe0\x18a\xdeM\"\x9e\xffɘ\xb1?\xff+\x93L)ir\x97\xc8ϞR\x94\xa8_\x90\xb2R\xc2\xcd\x1c\x83\xcfD8\xdc\xfb\xbf\xeb\xb9͋=\x8cgƑկ\xa28\xf2\xf2\xc6\xcdcn\xfa-\xdb\x16Rq]\xea\xeb\xd2\xf2\xad&^\xb9\xa8\xda\x02$\r\f\x82\xb0.\u007f\x18\xcc\r\xa1Z\xe0\xd9,\x9dw\u007f9\xc6\xc8r(\xf8\u007f˥\x0e\x81:\\\x81\x9b\xa4\xbb\xc7n\"o\xfe\xd7\x0e$\r\f\x02\xff$\x1d\b~\xf1狯\xff\xf0Aa\x81\xfa\xfa\xcdF\xd6\x16≛\xc4{\xbcox\xcc\xc0R\x05H\x1a\x18\x04\xa1\x93\xf4\x13\xff9f\xfc\x83B0l\xfc\xab\xbem\x01\x02H\x1a\x18\x04\xa1\x9340P@\xd2\xc0 \x00I\x0f_@\xd2\xc0 \b\x03\x86/F'o\x10\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x8cfI\xa7pQ\U000db34c\x00`d1\x9a%\xed\xaa.\x9a\x1a\x05\xeee\x00ka\xa2\xa4E\a:\bu\x1e\xde]\xb0\xfb\xb0)ڪ\xe6,\xef\xe3\x03\x18e\x98&iɁ\x0ej/\xde\xdd\xecj\xde]lƓMj\xb9\xa3F&\x000\xa20MҲ\x03\x9d\x9a\x12\xf2 \x84\x9e\x92\x1a\xa3$A\x00$\rX\r\xb3$\xcd8Щ\x14\x9e\x12Zf\xc6\xd3\xf9AҀ\xd50KҌ\x03\x9d\xf6\xe2\xeavw{\x8d)\x13\xef\x06\xae\xda\xc8\x04\x00F\x14fI\x9au\xa0\x83\x97\xd5N\xe7>S\x9e(莚q\xd8\xd5gd\x05\x00#\a\xb3$\xcd8\xd0qW\x964\xbb\x9aK*Mq]\xb9O~\xf0\x1f\x00X\x01\xb3$\xcd8Щ\xa1\x8e\xb1\xdc%f8\x98\ue31a\xbc\xb5\xdab~\x01\x80эY\x92f\x1c\xe8\x14\b\x97\x86\x1b\n|\xd9\a\x89ZΌM9\x00\b\x1efI\x9aq\xa0#J\xfa\xa49\x92\x86\x1do\xc0Z\x98%iƁN\xb58\xf16c\xef\x19$\rX\r\xb3$\xcd8\xd0q\xbfX\xd2\xe4j*yь-\xef\xa3 i\xc0b\x98&iƁ\x8e\xbbvw\xd1\xee\xda\xd0+\xda\xed:\x99b\xb3\x96\xafz\x000O\xd2\xe63\x87\xe3\xa2ˌ\x8c\x00`d1\x9a%\xed:\tC4`9F\xb3\xa4\x01\xc0\x82\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x98(iɁN_CY\xc1\xee\xe1\xe3o\xee\\Nrr\xf6\xa9\xa5\x8dFv\x02\xf5\xa9\xc7\xf5\xbf,\xe5\x1d\xe4\xdb\xfa$\xbeT\xdb`\x1b\xcf\x1f\xd4\xfe\x06}\xee\xe0\xef\xd3\xf9*\xb0\x8c\x88J\x02~c\x9a\xa4e\a:\xa8\xbc\xe8d뉂\x13F)B\xc4Yǚ#\a\xd7\xeb\xf7b\x15Ǔ\x8e\xe8\u007fّ\x9b\xf4\b~{$1\xb7C\xf9ũ\xb3\xc2\xfb\x17\x8d\x0e\x1d\x1d\xa1\xfew6;t\xbe\n,#\xa2\x92\x80ߘ&iفNC\x01y(\u007fK\x81)~\xee\xbc\xc9\xc9\xee\xc7]u\xb3\xbf\x92F\xfd\xbe\xbe,\xccI\xea@\x1d\x899\x85\xaa\xf8\xac\xf5\x9e\x90\xaeZ\xf0\xf0\x19\"\xb5\x8c\x88J\x02\xfeb\x96\xa4\x19\a:\xe5\xfbhL\xf10\x19\xa6\xd3i\xcf>\xc7\xfb\x18|\"\x05\xd7\xcf\x00\x00\r\xafIDAT\xfd\xa70\xf7\x91\x83\xa8*'W\xad\x96\xa5\xc3I-#\xa2\x92\x80\xbf\x98%iƁ\xcen\xc1\xbf]Y\xb9\xaeqp\xf8\xd0\xc1\xf3;/\xe4\xa5'\xe6|\xcbF禞ï\xfd\xf5\xdd\xe4\xb5*+)3\xbf[a{\x90\xe7\U00062cd4'S\xf3\x8e$^\x9e\xa1_X?ϑ\x9a\xf3\x05\x9b\f\xab\xa5b=ʩ\xa0j\x91b\x8f\xf3\x02Y$\x95\xa30?3\x89\xa6B\xfd\x15YIK+\xe8\xa8\xffEnZ\xf2z՜\xd65\x91\x13\x98\xa8zr\x83\\\xb0\x84\xe2\xd8\xe4\xea\xa0\xee\xc2\xfb\x92\xb2\xdfI\xabW\xa4\x0fd%\x01\xd31KҌ\x03\x9d\xc3\xc5\xf4\t\xa1E\xbb\x8d\xd2\x04\x98ރ\a\xd33\xefI\xcbϽ\xebs6\xfa\xf3t>\xa7\xf4\xdd^\x1a\xde\xc2\xe7\xd7W\xa4.\xedgm\xbb\x1b\x93_\xf8\n}\xf5Br#\xee\xf8g\x1b\x1b\x13\xc5\x11\xecTR\xd6+\xf5\xa5\xfc^6\x19V\xcb\x17I\xdf$^\xa6j\x91b\xbb\x1b\x1b3\xb3\x1b\x1b\x1b?%\xc9\x1c|\xe6\xc1\xe3\xf3\xe8x\x98\xe7\xd8Y\xbfӑ\x87C\x17\x923\xab\x8e\xe7\xf0J\xb5\xb8\x8b\xb6\n\x14)\x1f\xd3\xc6\x14,\xa186\xb9:\x1d\xe9\xc9{\xeb\xb7\xf1|\x85\"\x83@V\x120\x1d\xb3$\xcd8\xd0\xe9,*os\xbbʜ%Fi\x02\xcfR\xfe\x91n\xd4߭\x8c\xec(\xfd\x8d\x83O&c\xefq\xbe\n\xbf\x9e\x15\xc6a\xd9vK.~\xc9\xdd\"\x9a\x8b\x92\xeeM\xcf\xe9%R\xeaP$+\xccEK7g!\xa2\x16ef\xf2\x9c6\xf5\x1b\x9cc*\x0e\xd5\xf3\xf5\x9e\xd7\xecL\\N\xffR\x95Z\xdaZ\x05\xda\x14\xb1L\xc1\n\xa4\xfa2\x05\xe7%\x93\x916\xdfK\xd2\x01\xac$`6fI\x9aq\xa0\x83\xda˝N\xe7\xd1r\x13\x9e\xec\xb7ԡ\x18\xa0%zO\xe5\x90N\x9b\x9b\xde\xfb-&m\x8b\xd2\xf6Tb7\xeaN:%~\x12%]\xcf\u007f\xe4I\xcd$\xc3jy\x85\u007f\x89\xaaE\x99\x99\xac\x16\xf2\x99.H\xb7\b\x97\x83\xeeی:\x04\xcd\xedT\xaa\xa5\x95\xf3\xa0\xf0\xf8\xc3\x14\xac@\xaa\xaf\\p\u007f\x12\xad\xeb9oI\a\xac\x92\x80\xe9\x98%iƁ\x0e\xc6\xddއ\x8aM\xf0\x89\xb54\xcb;\ueb30d|x\r\x19\xe8\x04\xd6(m\xbfM>\x82\x8e\xcc\xf3\xect\x8b\x92\xde\xcb\xf7z\xbeg\x92a\xb5t\x14~Eբ\xccL\xb9\xf3D\xd5\xf20\xfd\x06\xe5d\xe1Q\x92^\x14W\xef<Ք\v\xd4(b\x99\x82\x15H\xf5\x95\v\xfeB\xd8\xf3\xeb\xf6\x96t\xe0*\t\x98\x8dY\x92f\x1c\xe8 \xbaQ\xd6\xe24\xe1q\x9dr\xa7\x95Iͧo\x85\x99d\xcc:K\xe9P\xd9\xe6\xafA\xeb\xf3=\x1fDI\x9f\xe2?\xf4\xc40\xc9\ns\x85\x98B\xad̪\xc80*\xabeK:\xf9\x95\xe8O\xcfC\xdf\b\x9a\xcb\xf3K-L\xc1\n\xa4\xfa\xca\x05\x8b\xa3\xf4Gޒ\xa6vA\xac$\x10:̒4\xe3@\xa7ى\x17\x87W\x8b\xcd\xf0\x9f\xc3J\xbau\x830\x9f\x9d\x97F\xfas?\xf9\xaa^XS\x16\xbe\xa4\xb2}7\xf1r⻞\x0f\xa2\xa4\xbbS\xb3\xc9h\x99\x9f\xafHƨE\x91Yv6B_\xd1\bY-\x82\xc1A2\xe3\xcfJ\xc7u\xf84\xd1/\xb50\x05#\xf9(\x98\xfa2\x05\xaf\x9f\x87\xf3\xed\xcf\x13%\xed\xb1\rA%\x81\xd0a\x96\xa4\x19\a:-\xceZWCqyȽm|\xfb.\xdd\xd3\xf5\xac\x90\xe7\x88~\xa6\xe7\xf1\xa9\xa5\xf5G\x1eI\"[\xbd\x85w\xe5\x1e\xf9\xcb\x16܋\x95\xb6\xfdi9it\xde\xdd\xfbNcc\xe2\xe6F\xb2\xf7\x8dW\xd8\xf7U\xd4\v;OR\xb2or\xb3/\xe3ϗ\xb3s\xbfab\x11\x91\xc7^\\\xc4et\xb9ѱ\xf9\x9d\xfe\xf77;\x1a\xb1]._x\xbc\x90'\xfa:\x97\x94V\xba3\x99wT\x9dC\xc60\x05KG\xa1\xa8\xaf\\\xf0\xe5\xd4\xf4\x8a#k\x12\x95\xb6!\xa9$\x102L\x934\xe3@\xe7dIQ\xf9I#\xf3\xc0\xf3\xa1\xb0l\xcc\x11?\x16E9\xe9\xfbo*\n\xefKJ]C/ޠ\xfa\xecy\xc9\xd9\xf5^\xb6{\x1d\xc2%\xa3\xf7ť'\x95ȧ\xeb\xd3\xee\xc9:\xa2HV\xca\xf3dci3Oo\x9f\xf6\xc4bz\xf3\x93\x13\xb3\xcf\xd2ۧy\xc7G\xe4\xea\xf66r\xc9w\xa9\xe7\x92\xef\x855\xc9\xe9\x85U\x0e\x12k\fS\xb0\xe7(\x94\xf5\x95\v\xeeؒ\x9e\xf8\xc8YQҢmh*\t\x84\n\xf3$\r\x98\x85z{\f\xb0\x14 \xe9\xd1\aH\xdaҀ\xa4G\x1f iK\x03\x92\x1eu\\\xa8\xe7\xf3\xdf\xf5\xf9\xf7c\xc0H\x06$=\xea\xc8&\xbb]\x17\x8c\xac\x80\x91\nH\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x05H\x1a\x00,\x85I\x92\xee)v\n\x14\x93O\xae\xb2\xa2}&<\xd3\x04\x00,\x88I\x92v;O\xba0'\xe8\xb3M\\\x055-5\x05\xa0i\x00\b\x00&I\x1a5\xd1gw\xd3G\b\xf6\xd1\xd7\xc3\xc5}\x06I\x00\x000\xc6,IS\xca\xc9s\x8aPs\x01\x95w\xc1\xf0\xf1]\t\x00#\x173%M\x9f#\x88P\xa5\xe0\x13\xab܌\xe7\t\x02\x80\xd50S\xd2%\x95\xf4m\xb7\xf0\x00\xef\xc3&<\x9a\x1f\x00,\x87\x89\x92n\x15\x9f\xdc]\\K\xdfj\x8b}\x19\x03\x00\xe0\x17&J\xbaRt\x82%z\xae\xac\x0e\xb5\x9b;\x00\xb0\"&J\xbaHt(])x\xa1-\x83\xb54\x00\f\x1d\xf3$\xdd\xee\x14\xfdB4;\x89ǻ\xabN\xd8\xf1\x06\x80\xa1c\x9e\xa4[\x9d\xedB\xa0\x8f\xfaΩ\x86\xeb\xd2\x00\x10\x00̓t\xb3\xd3\xe32\xc7UP\xddZ\rw\x8f\x01@ 0Oҭ\xf2v\x98k_A\x19(\x1a\x00\x02\x81y\x92\x06\x00 \b\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\x01\xc0R\x80\xa4\xd1ڵZA\x00\x18\x99\x98$i\xa5\x03\x1d\x84\xaa\xcd{\xa4\xc9\xdf\xecOk\x04=\x1c\xb0c\x12p\xe0\x83_\xc7\xc7.:\xb6\xe0m\x1c\xdc>\xf7\xceiw\xce݁P\x9dݾ\b\xa1\xfd\xd8\xe2\x98:]\x908\x16\xff')|~\x9a\xfd^\x1f\xa6\xbeYk\xb7\xef7\xb2\x19\x10\x81k\xa8\xd5\xd8,漑\x15\xa0\x87I\x92V8\xd0A\xa8\xcdYk\x90 x\xac\x8a\xb9\xa4\x11\xf4\xe0~\xbb.v\xc5\a\b\x9d\x99\xf6Ё\xfd+\xa8\x0e\x8e\xd9\u007f\xbd\xe7\xd0k\x0f\xd9\xeb\x90\xfb\x98=\x06\xbf\xee\xb7\x1fs\xa3\x00s\xec\x8cf\xf4\xa1\x18F\x88\xa7W\xc7h\x1a\xf9å\xbai;\x8cl\x06D\xe0\x1a곺\xba=\xf6\xb7\x8d\xac\x00=L\x924\xeb@\a!W\x89y\x92>oߨ\x11d\x89'C\xf7\xe2\xc5$\xb8\x9a\xf4ԍ\xb1\xb4\xee\xb1\xd8\xd8m_\xb5\x9a\xa4\xf3\xa3\xa3\x0e\x90\x05+\x8c,0;\x06/i\x84b\x02+i\x14Ȇ:\r\x92\x1e$\xacY\xe5:\xc8h\xe6p\b\xd7\xe0\xf7h\x87]s%>І\"k\xeb\x1dbfri\x04Q\xd2z\r\x85\xd0k\xf1{\x10\xa0\x8d\x99\x92\x16\x1d\xe8\x10L\x93\xf4\xdai\x9fi\x04\x15О\xfaY\x82\xfd\x81\x1d\xa7\xe9\xa4b\xc1\xefh\xf4\xef\x16О\xba\xeb\xd7\xea\x9e\xea\u07bf?anl\xc2\xc6U\xf6\xcf\xc8\ft\xe3\xa1]\xf1\v\xb0\xb8\xbfN\x88\xdfuh\xadݾG\\NJ+a\xd9\xe0\x8c}\xd5\xfec{\xe2\xed}d]:wQ]]\x9dz\x8f\xe8L]\x9d8\xb6\x9e\x8f\x9d\xfbڟ\x16\xdbՒ~3v\xc1s\xc7v\xd8w\x11\xed\xad}s\xffC\xf6\xd3\b\xfdm\xff4{\xfc\x8e]\xb1\xeaa?ƾ`\xff\xfe\x051D\x80r\x1d\x184sp\xbf\x9d\xb0\xf6\x12\xba\xb4=\xb6Nc\xbc\x1dpC\xd5\xc5n\xf7d&\x97F\x10%\xad\xd3P\x98\x15\xf6\a\x10\xa0\x8d\x89\x92\xf68\xd0!\x98%\xe9Ϧ\xad\xd5\b*\xa1=\x15}\xfd\xdc\xc2i\xf6X26ݻ\x8aF\xaf\xba\x97\xf6\xd4K1\x97\xbc\xe7\x93\v\xec\x8b;\xf18Gt\xf1GDz(N\xb7*\x96L\xeb7\xda\xc9\xf0B\x85I\xa7͌\xc1\x9ex\xd2]\xf7\xc4\n9\xe8L\xbcEI/\x9a\x8b\x8b\xec[\xa0\x92\xb4;\xe1\x01\x1cݳ\xffk\xf2\xbbB\xea$\xe4\x12\x13\x8b\u007f[Vūs\xba\x17[\xb8\xe7.Tԁ\xcdL;\x87\x1dd\xea@\x16\xc6\xde\f\xbc\xa1V\x93\xdc\u007fGڝ-\x8d\x99xk6\x14\xe6\xfcs\xb0%\xae\x87\x89\x92\xf68\xd0!\x98%\xe9ǧ\x9d\xd7\b*\x89\xf7\\\xd9r\x1f{\xc0~H\x1a|V\b\x83\x0f\xfa\xf5.\rILj\x03\xfe\x8a\x84\x9e>L\x02\x96@\f]d\xfeM%i\xc6\xe0\xb3\xf8\x84\xc7\xf7\x9cA=B\x0e>%\xfd5\xcd\x05mWI\xfa\x90]\xde'\xff\xe7\x9e\a\x12b\x85\xa9{\f\x11\xa0\u05fa;\xe6\xf7\xe4u\x8f\xfdk\xb6\x0e,\xda9|f\xff\x00\xb9c5\xafE\r\xbc\xa1ތq#wL\x1d\t2\xa5iJZ\xa7\x92\x80\x17&J\xda\xe3@\x87`\x92\xa4/Ŭ\xd5\b\xaa\xa0=\xf5\xb4\xb0s\xb6\xe8!\xe1?\xe6!a\x89\x88\xf6/А\xb4g\x15\xbc@\\\x15\xaf\xc0R8@\"\xdc*I\xcb\x06X\xa8{V\xdck\x8f\u007fNH\xe8S\xd2g\xecT\x06j\x99\xee\x92+r:>\xe1\xe9\x03u\x8b\x17Hi\xbc%Ms\xaaÿ\x02l\x1dd\xf4rx\xe0it,\xb6\ai0\xf0\x86\xea\x8b?\x80\x0e\xd0\xc9\t[\x9a\xa6\xa4\xb5+\txc\x9e\xa4%\a:\x04\x93$\xbd\xd1~^#(\xd1G\xa3hO\x8d\u007f\x9c\xc6l\x9f\x8b\x90\xd8\xef\x16,\x16z\xaa;昷\xa4=\x1doU\xc2\x19\xca?Q\x9f \xa1\x0fdI\xd31V6@gH9_\xef\x8f\xd9#\xe5\xf0\x9a\xf7\xe2^\xc8\xe5\x9f\xc2(\xad\xde\x1e;&\x8f\xd2\xf7.$uZ\xe1K\xd2\x1b\xc9\xebk\xf6N\xb6\x0e\fz9\xfc)\xbeg\xb5z\xa8\x1ctCm\\\x81Vl$\x01\xb64\xb5\xa4\xd5\r\x05\xf8\xc47nD(\x81Ԡo\x81/I'\x90u\xf7\xbd\x8b\x14u`\xd0ˡ'\xfeOw\xaa\xe7݃n\xa8\xd31\x97b\xe8\x96\x18[\x1a+i\xad\x86\u009c\xdf\x01ki=̓\xb4\xec@\xc7\xedr\x15U\xbb\xda|Z\a\x85\xa7\xe5\x91\xf9i\x8dA\x9a\xdc\xfe\xb4\xff\x8f\v\xe3\xc9X\x19o\x8f\xdf~\xec\xc0br\xa3\xe21\xfb\x03\a\xea\x0e,\xc6\x13i7\xeegnT\x17\xa3\xec\xa9}\xa7\xe9~\xf5y1\xdf\xdf\xed?@o\xbc\xb8\x14\x9f\xb0\xe7\xc0\x8a\x18*\xe9E\xf1\xcf=\xb7\xd0>\xed\x8f\x1f\xb0\x06;\xec\xb1\xdb\x0f\xe1\xe0\x9b$ݎ\x98]\xb84\xe5(\xdd\xf3v]]\xcc꺺N<\xd8\xc7$\xec\xd8~\xa7\x90\x03ñ\x98{\xf7\x1c\xdah\u007f\x8dd\xb6b\xcfs\v\xf04\xfe\xf4\xa5\xbai\xabO\xa33\xab\xa7\xd5)\xaf\xba\xc7\xd8\x1f8}lQ,\xa9\xa6\\\a\x06\xdd\x1c\x9eN\x88U\xbb/\x1b\\C\x11\xe2\x17\v\xdbvri\xc2\xddc\xbb\xea\xeaHn\x9a\r\x85y\x88\xdc`\nhb\x9e\xa4e\a:'\x84۽\xaf\xfa\xb2\x0e\x06\x97bVi\x04Y\x0e,\x88\x89}\x88\xaaf\xe1k\xdb\uf349\x17.\xe3n\x9f\x1bk\x8f%\xb7.\xbfI/\xa9\xf6-\x8cWt\xf13¢OXH\xa2c\x8b\xe3c\x17\x1d\"\xa1\u007f\xaeN\x88Y|\x86J\xfa\xfc\xa2\x98\xd8ſ\xb7\xdbײ\x06\xfb\x17\xedH\x98\x16\xbf\x88*\x1a\xb97\xde\x19\xb3\xe84R f,\xe4\xf0Н\tO\xffq\x1á\xe1\xfc\x8a\x84\u0605d\xd1\u07b7knL\xfc\x8a\xd7\xe6N[\xb4\x16\xa7\x98\xf6\x01\xb9\xa4\xad\xb4\xbdwNJ\xd8\xf8U\x82\xcc\xe5J\xca\xe8\xe6p^](\x1adC\x11v\xc5\xec\xa2\xefri\xf4\x1eoϪY\xb3\xa1h2\xf5\x06>\xe0\xc1QSPVXU,`\xae7]\xadZ\\Z8^\xae8a\xaa:b\xab;b\xac^`]%\xf6p\xc8\xe7Vu\x82\xb0\xaa\x9f\x16\x13\x85eV\xab!\xfdEªna\xbfnj\x15\u007f\\\xbf+~_\x89\x10\xab광#G\xfeѬt\x06IR\xd5\xd6AR\xb7\x97\xad\n\x05aU\xe7\xf3U|\x13ʧ\xe4\xf1\x05-\xc1\xe9\x03b;\t\xab\xfa2\xfb=\x16\xc7\xef'QbU\x8dKҪ\xbe\x1c\x1a\x19'Y\x15\nª\x0ef?\xffן\xd8\xc2\xe7\v\xf9\xcas-VC\xfa\x8b\x84U\xfd\r\xfb5\x8e\x8d\xdfO\xa2\xf4\xa5\xaa\x13\xf9.\xf2\xc1\u007f\x8fU%'\xa4\xea\x01\xee\xe7\x9fdSIz\xfe\x1c\x91>!AU\xcbC\x03\x16\x19\xd9֖\xcd~\xc8#\xf3!l\x89\xbfw\x17\xb0wж\xd6ec\x06\xf9\x8a\x17|\x1aZ\xe3\xf3U~vT]\xf4ě\xc6\xed\xf50W\xdd3\u007fL\x8e\xa6\r\x9e\xb0H\x8837\xbc\xc5M\xfcсg\x8b\xb3\xbc\x85\xe5\xe19\xad\xd9\x06\xdbv\xf1\xd9\xf4G|\x90\\\x10n2\xab\xdbU5ԛ3\xe5U\x83\xaa\xafȧ^\xad\xaa\xaa\x9a/\x17\x8d\x1b\xfc\\8\xbcl\xa8\x967\x83\xff\x97(\x93\xad{\xf8\x06w\xc5V#}B\xdaT\xdd5R\x16\x14\xca\xc9\xecG#\xc3k<\xf5\xa5\xba\xbd\xf8\xaan\xca\n\xaf\x91\xc7\xe7\x8b\x06Uׇ\x9f\xf3K\xe1L6\xd8ֶ\x80=\x18#\xd6+<\x1dj2\xa9{\xd9+\x1fV\x86T=ͧ\xa8ު\xa8\xb3bQ\x1b\x14\xaa\xf2\xfeɣ|\xce\xee\x95{\xb1\x88-N4\xa9F\xfa\x84t\xa9\xaa\r\rW\x88\xb3Y{\x06\x13\x9dy\xea\xf6⪺K($O3\xe4\xb7\x1aUݔ\xa1w6AX\x18\xbbA\xe6\\!\xe1\xee\xbdϛ^\r\xf5\x1d[\xb7E\xef*\x93ȹ\xeas\xf2a^\xc5\xca\xc8\x11c\xf4\x06\xb9\xaa\x83DۊӼ?yN\x8b\xff\rԛT#}B\x82\xaa~\xb8\x85\x9fV-\u07b2\xe5\x9d8\xaa\x12R\xb0\xe2\x9dz\xbe\x90\xc9G\x16n\xa4\xb7zS\xfd\x04\xf6\xd3\U000e1cbd\xb8\xaaV\xb3\x1fU\xbbN\xb7n\xe2\x9d.c[\xdc4\x9e-<\xb1iӁ\xb6Os\xd9Ҙ\x86?\xfe\x8a\x1f\xe1\u05f6\x99nP\x9e\xa2\xc8< \x05\xfaq\xa8\xef\x98:!\x9a6\xff\x9d-O\b\xb3xg\xadcI\x98⥲\xab\x98\r~.\x9e\xce\x1c3\xccs@\x8c\xa5\x13x\x15\xff\xa3\x18\xd4jR\x8d\xf4\t\t\xaa\xaa\x1eV\x99\xab\x9aÏe\xc49xf\xf3\x87\xfc'\u007fW\xffr\f1\x9e\x93\x8f\xab*\u007f?\x16\xf3\xdaM?\x9e\xbf^\x1c\x17\xe9\x87U˸E\xfcd\xe9\x1f\xd9\xf05\xbc\xcdl\x83\x8c\n\"\x8f\xfd\xb9J\xda\x01\xd9wL\x1d\xf7\x99\xac\xe7OU\x91\xb0X\x9f\xf25C\x14l1ݠP\xd5\xc7\xd6\xdf\xce楙\xa1\x037>\xeeW\x99\xee\x1e\xd2\x17\xa4M\xd5gE\v\x1fX\xd8o{1\xe1\xd3FΖ\xe7^1\x9c\x89\x8d\xab*\xf7\xc5W\xf1\xf2\x81\xc8\x13\xba\xaa\xfc\xc8~\x85h\xe2\xe2\xf3\x89l\xcc\x06\x99p>\xb6\xf4\x1b\xb6\xb0\x87k\xb5Dv\x11S\xf7\xac\xbec\x875\xa2\x8f\x81\xef?\x95\x13vU{\xd3l\x83Bէd\xb1\xf8\xa3Z\xcc\xfe\n\a\x87\xfe;\xc4\xee\x1e\xd2\x17\xa4MUy\u07bd\x88\x88\xc9%\x9f\xdaVEoJ\x10W\xd5M!W\x86=\xb5\xa9U>\xa1\xab\xca=*\x9b\xcb\x19\x1e\xdaP\xcc\x06\xdb\xda\xfe\x0f[\xf0\x89\xf7o\xfe\x86>Bv\x11S\xf7c\xa2\x0f\xf2\xfcC\xaa\xda\xf0N\x9c~gѣ>\xb1\xfd\xa1\xa7M6(T\r\u007f\xb2\xc0\xf7\xb4\xb8\xad\xedU\x12:\xb3\x15\xbb{H_\xd0+U\xf9$-\xac\xaa\xb0.3٠PU\u007fk\xe7\x1f\xc5\xceoe\xb5\xde?\x99\xef\x1e\xd2\x17\xa4\xa0*\x9f\xf6\x89\xdf\xff\x97\xfc$\x8d\xa9\xaa|\xc4yB4\xb4~d8\xad\xda\xf3\xe5*\a^~B\fl\xc4\xcb\xe7\x00\xfa\x04\xc0\x17\xa9\b\x11\xabj\xb5Q\x98\xd0\\ \xa6\x8e\xf7\x19\x9as\x8e&B\xd5\x12u\x87\xf8\xd8\xfb\xac\xc9\x06\x85\xaa\xfag`\xfc\xb3\x86\x91\xaf\xe8\xeb\xc5\xee\x1e\xd2\x17\xa4\xa0\xea\xe0\x90\x1dr$3U\x95\x1fV\x15\x88S\x8c\xbf&\xdeb\xf5c\xf5\xf8\xaa\xb6n\x97\x9fK\xf1uŨ͵\x12\xc3+\u007fo\x97\xc7I[B\xba\xc4l\xf0\xcb|\x12\xc5\n\xd3:~\x12u\xa4h\xd8Ç\xf0Z\xe9\xb8\x16:\x9d\xb6\x8b\x1fj-3٠QնG\x89\xfc\x04W\n\x1a\xbb{H_\x90\x82\xaa|\xe8\x11\xf6\x89\x93<\xa6\xaa\n\x89\u007f\xc5\x1e\u007f\xce\x1b\u0087Μx\xaa\xee\xe2}D\xa6\x15\x1f\x86\xba\x17\xb3\x88\x85la0\x1f%\xdf!${\xec\x01\xb3\r\x8a\x832\xfd\x13'~\xf2\xf4\xe16\xb3:qҊ[|\xba\x8c/Նv\xb5@|\xb2\xfa\xfe\b\"7\x1d\xb3A\xa1j\xe4\xe4D躘Їb\xb1\xbb\x87\xf4\x05)\xa8\xca\x15\xf2,|\u007f\x8b_\xfc\xbeLUm\x9bƟ\xf2\xd7.*\x0e\xfd\xf2u\xb8\xaa\x85\xe5:[\xf4Q\xb5X\x18s\xb8\xf5C~r>\x8fK\xc0\xaf>͙\xff\xd4\u007f\xca)d\xf1\xab\xbb^\xe1\xdb\x11g\xdfc6\xc8ŋ\x9c\xd2\xe4\xf2\x90\xed\xa6;Ƈ@\xf2D\xc3o\xe4y\xffڶ\xf0\aq\xf9c'ɹ\a?5\x1b\xb3\xc1(U?\xcf\x15\xa5\xa1Kwcw\x0f\xe9\vRP\xf5U\x12\"\x93\x8fB檪\x1f\xac\x1a\xaeʟB\f\xd4ꪾ\xefS\x9a\xf9Ǖm\xb5z\xc9\xca\xc83Y\xc2\xfb\xe8\r\x8a\x93\xa4\x91\x8b\xbeŅ+\x95\xa6;\xf6\xa1\xbe\x99a\xb2\xef\xb6\xc3\xfa\xd5\n\x9c\"!d\xf4\x06\xa3Tm\x9b\xc7\x1f\xeb\x17p\xc5\xec\x1e\xd2\x17\xa4\xa0j\xf8\xe3\xf9\xac\xfaY$\x9e\xaam\x1f\x8d\b\xff\xf6\xaa\f\x1f\x8b\xc7U\xb5\xedͼp\xa3W\x9e\xac:,\xcf\xcbs\xd3\xeb\u0082\xe5ɋ\xb0\xa37\xc8?0\"\xcaG\r\xfc\x9cTN\xab鎽\x19\xba\xfezn\x1d\t\xff\x83\x952\xa23)\xd4I\xd4\x06\xa3U\x15\xb3\x86\xc8e\xb1ѻ\x87\xf4\x05\xa9\xa8\xda\xf6ʣ\xb9\xdea\xf3\xf6\xb4\xf5\xa0j\xdb\xe7+\xa7\f\xd6|ß\n\x9f\x8d\f\x11_ն\xd6\x15S\xf2\xbcZ\xee\x98g\xc3\xce}T>X\x1b\x92]\x92OH\x93Y\x91\xa1\xb2\x81\x90\xfc\x12\x8dTHU\xe5F\f\xab0;\xb35\xff\xa3\x1eR\x19\xe4\x0f\x1e\xce#\xf9l\xf3\xc5\x1d\x14q6\xbdQ\xf5\xcc?\xe8\xaa\x1e\xd4\x1bê\x92Ql\bl\xd2\xc8\x06}\x02ОMj\xeePڒK\x1a\xb9E\x9e\xe1M\xcd\x1b\x8c\x85\xcd\xc4LJ\xdc@6Yi\x14\xf0\xebl\xb2\xa0\x83\x06k\x89\xf7\x92I\x91Zy\xd4C\xea\x83\xf4\xf2\f\"U\x95\x1b1\xac¶8\xfc$\xa5\ar\xc9F\xf1`\xd8>J?\xd0\xc8f\x8a8\x9bި\x1a\x19V#\x83jDտ\xf0GU\xa4JW\xb5\x86\x94\x89\x8a7\xc8(n\x119F\xa3\vk2\x16\x89\x8a\x1a2\xc7(\xe0\"\xe2\x0fu\xbeޤH\xad\x9cEj\xf8\x8f\x8eaRU\xb9\x11\xc3*l\x8bG\xf9\x837H\x91x\xd0\xca\x1f\x88\xcd#\x8e\xa6W\xaa\xea\xc3jdP\xd5U-\x16\x8fV\xf1Ö\x90\xaa\x85\xe4m\xd1\xd6\xe1!\xa7\x98EE\u2061\x90ޓo\xc3\xcbȓF\x01\x8bC\xab\xb6\xb7\aM\x8a\x94ʮl)'k\x13\xaaʍ\x18Vi \x13d\x9b\x97\x1c\xd77_\x8f\x87W\x8e\xa7W\xaa\xd2\u007f\x8f\x19TuU\xe5\b\xba\x9e\xcc\b\xabz\x8bM\b\xc7\v4\xd2\xccܐ㤡\x90\x95\xeeް\xb8b(!\xb3\x8d\xaajr\xec\v\x11]\xa4T\xb6\x93̠Xh\x96\xaa\xfacWi\x90\xe3.\xf7\u007f;{ +6ꕈS靪_\xfcC\xf4\xa0\xaa\xab*G\xa9\xf5\xdcD\xa9\xeay%\x05\xb8\x91YT!\n\f\x85\xc1U\xecȉd\x94L\x88R\xf5\x0e!\xed\xfa\x06b\x8b\x94\xcaC$K.|\"U\xad\x88]\xa5\x81,\x95%\xe3\xc8\x1b\xfa\xe6QU\xe7\xd3;U\xe5\xb0\xfa#\xb5%\xae\xaa\xd7\t9\x11)3U\xb5\x96dTn\xde\u007f\x8b\xd6E\xa9\x1a$\xec\xbd:Ll\x91Ry\x82d\x18FՊ\xd8U\x1a\xc8\x02Y;\x9a\r\xee\xa8*\x1cz\xa9\xaa\x18V\xd5A5\xbe\xaat\b?\xf2紜\xec2U\xf5A6;j\xe2TGO\x00\x86\x8b\xb3T\x94\xbe=m\x95I\x91R\xf9\xc0\x1b\x9a\xab\xaeTT5\xae\x12~Ͽ\xa3\xb1\xa1\x1aU\x85C/U\xe5êaP5S\xf5\x1e!\u007f\xa3\xfc(\xbbD\x8cx\xdb\xf9)'3U/\x84\x06\xcf[\x05\xfcIU\xd5\x1a9\x93\xa5e\xa4֤H\xad\xac\x90cfW\xb1\xa2\xaaq\x95\x06\xa2\xb5\xcb-\x97PT\x15\x10\xbdU\x95\r\xab\x86A\xd5LUvT\xd4x\xa7\x8b\x1e\xf7\x9297\xd9,2\x97T\x9bO\x00\xba\x06\x91\x1a&\xf3Y?\xe1k\xa9\x02\x9e\xf6\x91e\x0fh\xb0\x8ed\x9d7)R+\x0fgx\xd6\a\xe9\xcd'\x89\xa2\xaaq\x95\x06BJ\x98\xab\xdb}\xec\xfd\x1fU\x05DoU\xa5\xffn\x1cTMU-a\a5\xcd\xe2<\xbf\xb7d8\x93\xa8#\xce\\\xb5\x9e\x90\xa1\xfe\xb1\x9e\x9cE\xe4\xe1\xe8O\xab4\x92S\x92K\xb4&\xb3\"Ce=\xff\xb4\xcaG\xc6q\xf7\xc2\x1b1\xac\xd2@\x86y3K\x86\x11RKQUH\xf4Z\xd5/\x8c\x83\xaa\xa9\xaa\xc7'zs\xde`?O\xfc\xacH\xf3\x95\xac\xe2\xd7Y\x9b\xaaJ\x9b'\r\xf1\x8e^t首\xd1n\x14\x90\x1e\xaf,\xc8\x1cR\xc1/$\x88-2V6\xfb\ay'47\xf0)Cx#\x86U\xd8\x16\x8f\x94e疵\xa8\x9bGU\x9dO\xafUu(+ȼ8\xcf\xe0\xc5T@\x19h\xaa\x96\x95\x04\xc4ωd]\x9c\nT\x15(\x03M\xd5\xf9☩c1ɽ\x1c\xa7\x02U\x05\xca@S\xf5B\x11\xc9\x1cU\xec#Y\xcd\xf1*PU\xa0\f4U\xe9͕%\xb9\xbe\x115'\xe3\x16\xa0\xaa@\x19p\xaa\"\x03\x15T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 ؤ\xea\xc5o/^\xb9ml\xba}\xe5\xe2\xb5k\xdd\xe6\xe5\b\x12\x83M\xaaF\xf8x\xed\x15\x8a\x82\"\xc9c\xaf\xaa\xf7)]\xfd\xd8_\xf9\x0f\x04I\x12{U\xa5\xfc}\x1f\xc7T$\x15\xecT\xf5\xfe\xfd\xce\xfb\xf7\x0fn\xbb\xc6~t\xa3\xafH\x92ة\xaa`u\xe99\xab\x12\x041\xc1vU\xbb\xafXU \x88\x19v\xa9\xca\xde\xf0\xbf\xd8\xf6۵kּ\xbe\x8d}[\xfb\xd6{\xdfY\xad\x81 \x06\xecR\x95\x1d\xf4\xaf}\xbct\xfa\xe4ɓ\x1fa\xff\x9f\xfe8\x9b\x06\xe0y\x00$\x19lT\xf5\x85\xc9\x1f\u007f\xf6\xe7\xcf\xfe\xcc\xf8\xec\xb3_N>\x83\xaa\"Ia\xa3\xaa/\x96\xde\xd5\x1f\xae)=C;)ڊ$\x8e\x9d\xaaN\xffB\u007f\xf4\xc2\xf43=U#H\fv\xaa:UW\x95.GU\x91$\xb1Q\xd5\xe5\x8f\xdd\xd8\xf6\xa3\x1f\xfd\x1b\xfb_\xe9\xfd\xdfN\xbf\xb8wm\xe7\xc15\xca\xf5\x00G<\x84\x90\xb9\xfa\n;\xf2\x9aL;\xb2\xa0\xde\xfbk\xb3\xe6v\x8d\x14\xf3\x9fGg\xe4\xe7Lk)\xd9mV\x838\x1b\x1bU}~&\xfd\xe5\xf7\xfe\xee\xfb\u007f\xf7\xfd\xef\xfd\xf7\xcemSo\xbf\xfe\xd8\xed?\x94*\aW]\x9f\x8c-\t\x9c\xd7W\xf8 \xfb\xed\xd8^Z\x0eŶ\x19)\xd1J̚\x83\xfb\xaa4\xf6\xe3\x90V\xde\xf4F\x05\tGh#\x90\xb0Q\xd5\x17J\xbf=\xb7m\xdb{\xec\u007f\x1fӗ\xa6\x9e\xbb\xf2Y\xf7\x95/:\xd5\x1a\xbf!<2Hc\x99\xf0\xa4I\xa3\xca\x1dO\xa5\xe7\x96\xe93u\\\xd52?\xeb5X\x85\xaaB\xc4FU\x95\xb9j\xb7\xe9\\\xd5o\x99s:~\xb6EA\v9DZL\x9f\x11\xaa\x0e\xe7\xf9\xaf\xf4(Iin\x81\xf4/v\xaaZzN\xceLٷ\xff\x98z\x86ލ>Y\x15Q\xf5\xba\x8f\x10\xcfV\xb9\xbc\xb3\xacH˟1,H\x9b\x88d\x1co\r\xbe\xf6hv\xf1\xc2\x0eJ\x9f!\xda\xc6\x05\xc5YegEq\xddPZ\xc8\x13\xa9\r\xad\xdfT\x16\xe6\xce\x12\x13\x80'\v\x8e\xf1u\xb7\xdfR{8\x92I\xc8\xd2S\x95\xc3}e]\x8d\xac\xfb:ZG\xc4\x14A/@\x1c\x81\xad\xaa\xde\xd0\x1f\xae)5\xf9\b@\x19U\x0f\x05\x02\xde:\xb1t \xa3\xf2\xed\x1d\x1b\xf3I\x17\xbd\xb3;0zZ \x108\xc1\x9b\xe7yj\xb67\xe4\x8d\x0fҿl\xcd$yu\xbfΑ\x19\xd5\xfeYt6\xefEm=\x95S\xbc\xb9\xa9\x8cpUۋ[\x94FZ\xa7\x8cb#c\xb0\x84\xabJ\xaf\xae\x98\xa0\x91\xdcƨ\x1e\xe8x\xe2\xbfI\x837\xd9\xd2<>\x1b\xae\xfcYt\x01\xd2\xffب\xea[?}\xact\xaa\xa4\xf4\xa7?\xbf\x98\xa0\xaa\xe7\v\x87\xd7l<\x1c\x94#\xa1\xae\xea\x93#\x1et1\x86\xf2\x93[\xda\x1c\x1a\x9a\x8a\xd2#dw\xc7nr\x84\xaa\xad\xd7\xc9F\xfex\xa9\x16Z\xf5ގ2\xb2\xdd\xd8\x03\x1d\xaf}\x1dz\xb6\xc5\xd7A;\xb2Z\xa26\x818\x00\xbbTe\xdc8w\xe6\x8b0\xe7\xbe5\xb9\xb6\xdaTUz}\xc3\xecb\x92\xbf\xca8\xaa\x96\x84\xe6\xad\xfc\r^\xe3\x85R\xd5\x06\xd1\xd8@\xd5\xd6CDĮ\x8b\x82\xfd\xdf\xf0\xc5\xe0\xa4rc\x0ft\xfc\xb8\xf0V\xbb\xf2\x9bhS~0j\x13\x88\x03\xb0QUK\xa4\xaa\xb7\x96]\x15\x8fB\xaa\x1eZ̼\xb9\xbeշ\x8e?\x10\xaanf#`\xe5\x88C\x02\x9e\xa4\xae\xa8:k\xdc\xfe\xfd\xfb\xc7͢j\xeb߈Xu\x0e/(\xa8\x11}.\x19e쁎\x9f\x15\xde\aZSA+D\x95\xa1\x00\xe9\u007f\xecT\xb5\xbb\xfb~\x98n\xb3\vU\xa4\xaa\x87\xc9N\xf1(\xa4j\x1d\x11q\xe9\xfe\xeap\xc5%~t\xde,O\x8d.YI\r\xaa\x16.d\xdf\x16\x14RC\xeb\xc4\"\xe6\xfeI/_\xcc/\xe4\u007f\x06An\xa6ڃz\x12l\x8f\xf7\x82w\x0f_0\x14 \xfd\x8f\x9d\xaa\xf6Lמ\xb1%\xec\xf8>\xb0\x81\xbda?\xf8$\x10\xf0V\x05v\xde\xe4\xaaf\xd7~\xd04W\x9e-\xad\xd3\xea\x9b\xfc\xd9\xfc#\xad\xc5\x19O\xbf\xcdZߠ\x17\x02Zվ\xe0\xe1*-p\xa1\xa3\x99,\xb9C\xef\xfc\x8a4\xdfSZ鱬\xa2\xba\xa5\x83=\x99\xbf;N\xf3IAms\x93\xdfwR\xed\xa1k\x8f8\xb3\xd0.w#XXV(\x0f\xfa\xf5\x02\xc4\x118Gգ\x9e\xd0\xe4\xd0w\x82\x1e\b-o\xa0\xf4\xb5iuEZ\x81_\x9e\u05ffW3\xd87m\xbfXl\xf6\x0fɝ\xd2\xccϠ\x12\xa2\xb5f\xb3\xef\xcf\xec\xc8\xe0\xe7C\x9b\b\xc9ء\xb4Rz\xaa|\xf0\xf0\xe7~\x97\xc9\x16'l^R\x9c\x9dWq\xd2\xd0\xc3\x11\xb9\xb1\xf2\xd0~\xd4k\xf5\xa1\xa5p\x01\xe2\b\x9c\xa3*\x82\xf4\b\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xf4\xb3\xaa\x18\x12\x84$J?\xab\x1a\x01C\x82\x90\x9eq\x86\xaa\x18\x12\x84X\xe2\fU)\x86\x04!V8AU\f\tB\x12\xc0\t\xaa\n0$\b\xe9\x19Ǩ\x8a!AH\xcf\xf4\xb7\xaa\x18\x12\x84$H\u007f\xab\x8a!AH\x828@U\f\tB\x12\xc1\x01\xaabH\x10\x92\bNP5\xa1\x90\xa0\xa6G/\xc5y&U\xaeN\u009bWC\xc2\t\xaa&\x12\x12\xb4\x8a\xd4Eݓ\xb7\xd7a)\xc1U\x9e\xd8\xfbQa\u038bcq\x80\xaa\x16!A\x82\x06\xcfkQ+\xa6#,e{fCt\x13\xe6\xbc8\x16\a\xa8j\x11\x12\xc4i\xd3\x16\x87\x17/\xfb\xe5]$\xd3\x12\x96\xb2L;\x1bӆ9/\x0e\xc5\x01\xaaZ\x86\x04Q:\xb7@O\x8f8F\x8e\x89\x9fi\tK\xb9S\x10{Oj\xccyq(\x0eP\xd52$\x88>\x18\xb4H.4\x8c~\xf7\x049\xb1}\xf4\xfaT\xc3R\x94\x02\xd1\xe12_L\x82\n\xe6\xbc8\x14'\xa8j\x15\x12D\x0f\xcb{\xa4\xf3_7y\x98\x94\x90Y\xe7S\rKQ\nĚ\xbb\xc9\x1e\x1a\x05\xe6\xbc8\x14G\xa8j\x11\x12D\xb7\x93\x93\xe1\xc5f\x8dh\U000969e9\x86\xa5D\n\x18gI\xcca\x13\xe6\xbc8\x14'\xa8j\x15\x12\xc4\xdetC\xb7\x94\xbe\xba@+$\x85\xde\xe7\xfe&\x1f\xa6\x14\x96\x12)\xa0\\\xd5F\x1a\x05\xe6\xbc8\x14\a\xa8j\x19\x12D\xf7\x91O\xe4ª\xfc\r\xc7\xc9_\x1a\xf2W\xf6\",%R@\xf9p\x15sr\x13s^\x1cJ\u007f\xabJ\x13\b\t\xa2\x1dZH\x18\xfa\x80\x1e#\xc7\xe9\x83`/\xc2R\x94\x02\xaeN\xccI%\xccyq(\x0eP5\x01f\x8d\xd2\x0f+\xce\xe7\xca\x13\xf4)\x87\xa5\xa8\xa7\x9a\x82\xc5\xe1\x04\x00ھ\xb2M.`\u038bCq\x82\xaaV!A\x94\x9e\xf0\xc4|P\x99ZX\x8a\xb1\x80\xd6\x13\xfd\x83\xa7\n2\x83\xff\xc0\x9c\x17\xc7\xe2\x04U\x13`\x997zN\x99ZX\x8a\xb1`\xa7\xef9\xbd\xbf\xcdy\x1b\xf8\x0f\xccyq,@T\r\xce\xd7\x1a\xadj\x92\xa6Q\x9b\xdbeU\x838\x06 \xaa\xd2`\xfd\xd0t\x1fY\\-X\x89'\xd6\x01\x01EU\xc4\xf5\xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\x0eU\x15\x93W\x90h\x1c\xaaj\x04L^A$\xceV\x15\x93W\x10\x1dg\xabJ1y\x05\t\xe3dU1y\x05Qp\xb2\xaa\x02L^A$\x8eW\x15\x93W\x10\x89SU\xc5\xe4\x15$\n\xa7\xaa\x8a\xc9+H\x14\x0eV\x15\x93W\x10\x15\a\xab\x8a\xc9+\x88\x8a\x93UM(y\x05q\vNV5\x91\xe4\x15\f\tr\r\x0eV5\x91\xe4\x15\xdbB\x82\xd2\xd0/\xd2;\x1c\xacj\x02\xc9+\xf6\x85\x04\xa5\xa5_\xa478X\xd5\x04\x92Wl\f\tJK\xbfH/p\xb0\xaa\xd6\xc9+v\x86\x04\xa5\xa5_\xa4\x178YU\xcb\xe4\x15;C\x82R\xeb\x17I\x1f\x8eV\xd5*y\xc5ΐ\xa0\xd4\xfaE҇\x93U\xb5L^\xb15$(\xd5~\x914\xe1`U\xad\x93Wl\r\t\xa2)\xf6\x8b\xa4\t\xa7\xaaJ\x13I^\xb13$(\xe5~\x914\xe1`U\xad\xb13$(\xe5~\x914\xe1dU\xad\x93Wl\f\tJ\xb9_$M8YUk\xec\v\tJ\xb1_$}\xc0Vվ\x90\xa0\x14\xfbE\xd2\apU1$\xc8=\x00W\x15C\x82\xdc\x03tU\x11׀\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10`\xaaڍ!A\xee\x03\xa6\xaa\xf7)}i&\x86\x04\xb9\v\x98\xaa2:\xa3\xc2\x02\x91\x81\x0eLU\xd9;\xff\xde\u05ef\xe1\x04\xc0U\xc0T\x15'\x00.\x04\xa6\xaa\x14'\x00\xee\x03\xa6\xaa8\x01p!0U\xc5\t\x80\v\x81\xa9*\xc5\t\x80\xfb\x80\xa9\xaa\x9c\x00tw\xd2\xee\xfb\xfc\v\x87W7\x00S\xd5\xd0\x04\x00q\x130Uet\xde\xe8y(Ő\xa0\x81\x06LU\xf95\x00o\xdd\xdf\xfbR\xe7\xde\xd5\xec\xeb\xee\xc1\xb51\x15\xb6\x85\x04U\x11B\xb2NŶ\xab\xfc\xad:\xdf7\x03o\x83\xd1K`\xaa\xca\xefi\xfd\x93\xef^\x9fy[|\xdd\xd8\xf6\x93\xe8\x02\xfbB\x82\xce\x06\x02\xeb·y\x8d\x87\xbf`\xc3\x1c\xdf\xf5\x9ek\x10+`\xaaʸ\xfb\x1d\xbd\xf6\xd7\xd0\u05cdsQO\xda\x18\x12D\xf9}\x83{V\xf5*i\xa0\xc1\xe8\xfb\xb5\"\xc9\x02SUq\x06\xe0J\xfc\xe7m\f\t\xa2֪\x9e\xea\xddF\x11\tLU\xc5\x19\x80\xaf\xba\xef\xc69YegH\x10UT\r\xae\x1f\x975v\x9d\x98\x94^\xae\x1c2t\xe1\xc2!ٍ\x0f\x86ț\xad/\x88]\x0fI\n\x98\xaaҞ?\x02\xb03$\x88*\xaa\xceіn_\xaaU\xb1\xa5\a\x0f\x17\xac\xab\xf5\xfa6\x97\xd5\xd3Á\xad\xa4.\x10\xb8\x10\xbb\x1e\x92\x140U\xb5\xb8\x06\xc0\u0590\xa0\x88\xaaͤ9\xfc\xbd\x91\x1c\xa1t\x1d9.\xdaq\x02\x90\x16`\xaajq\r\x80\xcd!AaU畈\x1f\x0f\xb3auq.[8\x19R\x14UM\v0U\xa5=O\x00\xec\f\t\xa2\x11U'\xc9\x1b\xad\x97O\xa4\xb4>\xe32\x1f_\xe5\x11\x1d\xaa\x9a\x16`\xaaj1\x01\xb03$\x88FT\x9d;\x82{\x1e\x1c>\x87ү=e_\x1f\x19=I\x9e\xf6GU\xd3\x02LU\xad.\x02\xb41$\x88FT\xdd.&\xb7[\xf9\x1c\xe3\x10\xc9'\xc4\xff\x8d|\x1eUM\v0U\xa5\x16\x17\x01\xda\x18\x12t\x9e\u007fZU\x1f\b\xf0\tm\xa5g\xf1\xbb\x8b=\x95l\xe9\x90w\xc7\xf6\xc07\xa23y\x06`\x1f~\xae\xda[`\xaaj\xf9\xaf\x00\xec\v\t\x9a\x13\x9a\xd7\xf2\xd3\a\xc1\x86\x92\xac\x12q^u\xb7\xc6۴i\xc7\xe8\xbd\\\xf1t\xe6\t\x8a\xf4\x0e\x98\xaaZM\x00\xfa;$\xe8Rv\xf5\xa5\xae\xae\xeb\a*\x06\xe3'\xffi\x03\xa6\xaa\xd4\xf2_\x01\xf4oHPS\xae\xac\f\xe6c\xccZڀ\xa9\xaa\xe5\x04\xa0\x9f9䑧\xa9\x8ey\x0e[T\"\t\x03SU\xcb\t@?\x13\x9c\xeb\xabnli\xac\xf6U':\x0e#\x96\xc0T\x95ZN\x00\xfa\x99`SY\xa1VX\xf6.\x9a\x9a>`\xaa\xea\xf4\t\x00\xd2\a\xc0T\xd5\xe9\x13\x00\xa4\x0f\x80\xa9*u\xfa\x04\x00I?0U\xc5\t\x80\v\x81\xa9*N\x00\\\bLU)N\x00\xdc\a\xaa\x8a\x00\x01\xa6\xaa8Wu!0UŹ\xaa\v\x81\xa9*\xc5\t\x80\xfb\x00\xa6\xea\xb6\xce+w;\xef\xdfg_{_\xbf\xc2\u007fܧ\xf7\xef\xde\xed\xbck\xb5\x1e\x02\x1f`\xaa\ue95d\xfc\a{\xe7\xff\x8f\xd238\x01p\x15\xc0T\xedԗ\xae\x9c\x89,#n\x00\x98\xaa\xfc\xa0\xff\xe0\x1fV\xbf\xb0|\xf9\xf3\xbf\\\xbe|\xf9\v\xbf\u007f\xeb6\x9e\ap\t\xd0Te\xef\xf9k\x1e/e̔ߧ\x9e\xc3i\x80K\x00\xa8\xea\v\x93\xf7~u\xe6\xab\xef\xe8\xc53_}\xf5\xfcd\x9c\xb1\xba\x05\x80\xaa\xbeX\xfa\x1d[x\xef\x17\xfc\xe1\x9a\xd23\xddw1\xb6\xc2\x15@Tu\xfa\x17l\xe1_\x1e\xda\xcb\x1e-\x9f~\xc6j\rd\x80\x00RU\xae\xe7\xffx\x88\v\x1b_U\x8c\xad\x18h\x00Tu\xf9\xcc\xdb\u007f\xf8\xd7\x1f\xfe\xb7\xef\xfd\xf3\xbf\xfe\xcf\xfb\xafO\xbd\xf2\xf1\x8b\x9d\a_\x8a\xa9\xb3-\xb6\"\x01\x8e\x97e\x17T\xb6\x14\xa4\xfbO\xc7m\x00T\xf5\xf9\x99ݿ\xfc\xc1\xf7\xbf\xf7\xd0\x0f~\xf0\x8f\x9doM\xbd\U00047677\xfb3\xb6\u009a\xe6\xec\t\x1b\xb7\x96\x10\x82\xf7W\xe9\x1d\x00U}\xb1\xf4ܕ\x83\a\u007f\xf8\xfd\xb5\a\xffLWO\xff\xea\xc6W\xf4\xf6\xb7QU\xf6\xc6V\xf4\xcc՜\x8a{\x94\xde\x19\x85\xaa\xf6\x12\x88\xaaN\xfd\x8c-\xfc\xf0!6K\xed^^j:W\xb57\xb6\xa2g\x16\xfb\xfe\x1f\xffQ\x8f\xaa\xf6\x12\x88\xaa\x96^d\v\xa5\xffą]=\xdd\xecd\x95\x8d\xb1\x15\xcf\x10m\xe3\x82⬲\xb3T\xed\xb7\x96u\xb3\x95neߗ\xd1Q?\x13\x85\x97\xeb\xef)\xb9\x16\xcaj\x86\x1e\x90\xf8\x80T\xf5\x9a\xfe\xf0%ӋVl\x8c\xad\xf8\xcb\xd6L\x92W\xf7\xeb\x9c\nC\xbf\x97\x9e~\x94usk\xf7\x94\xca\xcb\xf7<\xe1\xbb\vR%\xd7BY\xcd\xd0\x03\x12\x1f\x88\xaa>\xfe\x8b\xe5\xcf?\xbf\xe6\xf7\xec\xdb\xf2\xc7\x1f1\xbb\xc0\xda\xd6\xd8\n-\xf7,[-ϸ\xdak\xc5\u2e52\xd7h\xbb2\xe5Pr-\x94\xd5\xd4E$>\x00U\xdd\xf6\U000d93d5J\x1e\xfb\xf9/\xae\x98\xa8jkl\x856\x87\xf2\x1b\xaf\x1bW;\xe2\xb9\xd7\xf1\xda\xf5.\xed\b}\x90\x19\x19U\x95\\\ve5u\x11\x89\x0f4U\x19w\xaf\\\xbc\xf8\xed\xb7\xd7\xee\xb2o\xdf^\x89\xcc\x05\x14l\x8d\xad\x10\xb9\x03B4e\xb5{\x99G\xebɲ\x13\x1e6?\r\xcdU\x1f4\x1br-\x94\xd5\xd4E$>\x00U\xa5\xe2R\xc05?\xbd\xe2\x8c؊\x88h\xeaj\xc5[\xfdS\x8a\x9b\xf84`\xb1Ot\xd3H.\xa9\xb9\x16\xa8j\xd2\x00T\xb5\xbb\xb3\xf3Fg\xe7O'\xef\xed\xbcq\xbf\xd3\xfcB\x15;c+\"\xa2\xa9\xab=]\xa35\x93g\xf8\xec\xf7jN\x05;\x98\v\xfa\x87\x1br-Pդ\x01\xa8\xaa\xe4\xf6\x95\x1e.\xa9\xb6/\xb6\xe2B@\xab\xda\x17<\\\xa5\xf1dJ}5JWf\xe5\x04G\xfbV\xf0\x92\xe6\xacI\xbfk*\xcb\xe43\a=\xd7BY\xcd\xd0\x03\x12\x1f\x98\xaavR\xba\xf6\u007f\x9f\xa1\xf1\xffɊm\xb1\x15\xcf\xf0t\x8a\xd6l\xf6\xfd\x19e5J\x0f\xe5\xd6\xd2U\xd9\xfbE\xe9\xf1\xb2\xac\xfc\x8aV\xbe\xa4\xe7Z(\xab\x19{@\xe2\x02Sջ\x94\xb2\t\x00\x8d\xff\x0fU\xfb9\xb6\x02\xe9\x03`\xaaJ-&\x00\xfd\x1d[\x81\xf4\x010U\xc5\x1b\x01\xb9\x10\x98\xaa⍀\\\bLU)\xde\b\xc8}\xc0T\x15'\x00.\x04\xa6\xaa8\x01p!0U\xa58\x01p\x1f0U\xc5\t\x80\v\x81\xa9*N\x00\\\bLU)N\x00\xdc\a\xaa\x8a\x00\x01\xa6\xaa8Wu!0UŹ\xaa\v\x81\xa9*\xc5\t\x80\xfb\x00\xa6*\xc6V\xb8\x17`\xaabl\x85{\x01\xa6*\xc6V\xb8\x17`\xaabl\x85{\x81\xa6*\xc6V\xb8\x16\x80\xaabl\x85;\x01\xa8*\xc6V\xb8\x13\x88\xaabl\x85+\x01\xa9j_\xc7V`@\x85\x13\x01\xa8j\x8a\xb1\x15I\x90r@\x05҇\x00T5\xb5؊\xe4H-\xa0\x02\xe9K\x00\xaa\x9aZlE\x92\xa4\x12P\x81\xf4)\x10UM)\xb6\"IR\t\xa8@\xfa\x14\x88\xaa\xa6\x14[A\xe9\xe9Y\xf9Z\xc1\x8cohb\xe9\x111\x01\x15\x94\xee,+\xd2\xf2g\f\x13\xf7HM8\xf8\x02I\x17 UM%\xb6\x82\xb6d\x8f[\xb5\xa3\x8e\xf0{\xfd%\x92\x1e\x11\x13PA\x0fdT\xbe\xbdcc>\xe1\xb7XK<\xf8\x02I\x17\x10UM)\xb6\xa2\xa3\xa8\xec\x1e\x1bo\x1b\xaf&\x98\x1e\x11\x1bP\xb1.\x8fK\xba.7\x98l\xf0\x05\x92\x16\x00\xaa\x9aZlE39\x1c~:\xa1\xf4\x88\u0600\x8a\xf3\x85\xc3k6\x1e\x0e\xf2<\xa1\xe4\x82/\x90\xb4\x00MU\x9ajlE=\xd1'\x8e\t\xa5G\x98\x04T\\\xdf0\xbb\x98\xe4\xaf\n&\x1b|\x81\xa4\x05\x80\xaaҔb+vD\ue35ePzDl@š\xc5l\xb5\xeb[}\xeb\x92\r\xbe@\xd2\x02@US\x8b\xad\xb8U\xe0\xe7o\xdd5\xf3\x13K\x8f0\t\xa8\xa8\x13\x93[\xea\xafN6\xf8\x02I\v\x00U\x95$\x1b[A[\xbc\x0foh\xae!\x9biB\xe9\x11\xb1\x01\x15L\xd5\xec\xda\x0f\x9a\xe6\x12>\x17M<\xf8\x02I\x170UM!\xb6\x82ғ\xb3\x87\x0e\x9a(\xaeC\xb1N\x8f0\t\xa8\xa0\xafM\xab+\xd2\n\xfc-\xe2A\xc2\xc1\x17H\xba\x80\xa9j_\xc7V`@\x85\x03\x81\xa9*\xed\xdb\xd8\n\f\xa8p\"0U\xc5\x1b\x01\xb9\x10\x98\xaa⍀\\\bLU)\xde\b\xc8}\xc0T\x15'\x00.\x04\xa6\xaa8\x01p!0U\xa58\x01p\x1f0U\xc5\t\x80\v\x81\xa9*N\x00\\\bLU)N\x00\xdc\aXU\x11\xb7\x01SU6I\xfdxm\xfc\xebU\x91\x81\bLUq\xae\xeaB`\xaaJq\xae\xea>`\xaa\x8a'\xab\\\bLUq\x02\xe0B`\xaaJq\x02\xe0>`\xaa\x8a\x13\x00\x17\x02SU\x9c\x00\xb8\x10\x98\xaaR\x9c\x00\xb8\x0f\x98\xaa\xca\t@w'\xed\xbeϿpxu\x030U\rM\x00\x107\x01SUF獞\x87R\x8c\xad\x18h\xc0T\x95_\x03\xf0\xd6\xfd\xbd/u\xee];\xee\x1e\\\x1bS\xd1/\xb1\x15Gg\xe4\xe7Lk)\x89\xbd[\x06\x92\x06`\xaa\xca\xef\xb2\xfa\x93\xef^\x9fy[|\xdd\xe8\xdf؊\x96\xf0-\x83\x0ei\xe5MoT\x10y\xbb*\xbdռ\x16I\x1a\x98\xaa2\xee~G\xaf\xfd5\xf4u\xe3\\ԓ\xb6\xc6VLx2\xb4P\xe6g\x03\xe6\xac\u058d\x00\x00\aLIDATy\xb0J\xaa\xaa\xb7\x9a\xd7\"I\x03SUq\x06\xe0J\xfc\xe7m\x8d\xad\xd0\xef\x048|\t\xff~\x944\x19Z\xcdk\x91\xa4\x81\xa9\xaa8\x03\xf0U\xf7\xdd8'\xabl\x8c\xadh\n\xdd\xf3\x97\xdf\x0e\xf8\xc9\x02\xfeW\x11\xdc~\xcb\xd0zsv\xa1VT~\x84\x1ak1\xd7\"i`\xaaJ{\xfe\b\xc0\xc6؊;\xbb\xc5M+\x03'Xc{\x91\xa7\xacn\x0f\xbf\x8b\xab\xda\xfa.\xa9ni,\xf7\xec7\xb6b\xaeE\xd2\xc0T\xd5\xe2\x1a\x00\x9bc+\xf47\xf5\xab+&h$\xb7\x91\x1aZ;\x1ao\xb11\xb4\xa4\xc2؊\xb9\x16I\x03SU\x8bk\x00l\x8e\xadP\xe7\x9f\xf7v\x94\x89\xbba+\xad\x97ו\x8d\xc8!r\x9bz+\xe6Z$\rLUi\xcf\x13\x00\x9bc+\xc2\xfa\xed\xe7\xf3`\x1a\x94\xddGZ\v\x8a\x165\x05\xfcQ\xaab\xaeE\xd2\xc0T\xd5b\x02`sl\x05\xd7o\xf3ה\x16\x88\xc4\n\xbad\x94\xa1\xb5x\"\xff\x1b\x99\xa5\xa8\xca[1\xd7\"i`\xaaju\x11\xa0\xad\xb1\x15~?\xa5\x97xC~\xe1U\xbe\xa6L\\\xd1[\x8b\xf8\xc3\xe0X\xa9\xaaފ\xb9\x16I\x03SUjq\x11\xa0}\xb1\x15\xbc]\xabo\xf2g\xb3?\x88|RP\xdb\xdc\xe4\xf7\x9d4\xb4֑\xd9\xebV\x8cg\x13\x87}j+\xe6Z$\rLU-\xff\x15\x80m\xb1\x15\x8c{5\x83}\xd3\xf6\xb3\x85\t\x9b\x97\x14g\xe7U\x9c4\xb6\x06\xebGkyOn\x1e\xa5\xf9\xd5V̵H\x1a\x98\xaaZM\x000\xb6b\x00\x02SUj\xf9\xaf\x000\xb6b\xc0\x01SU\xcb\t\x002\xf0\x80\xa9\xaa\xe5\x04\x00\x19x\xc0T\x95ZN\x00\x90\x01\aLUq\x02\xe0B`\xaa\x8a\x13\x00\x17\x02SU\x8a\x13\x00\xf7\x01SU\x9c\x00\xb8\x10\x98\xaa\xe2\x04\xc0\x85\xc0T\x95\xe2\x04\xc0}\xa0\xaa\b\x10`\xaa\x8asU\x17\x02SU\x9c\xab\xba\x10\x98\xaaR\x9c\x00\xb8\x0f\x98\xaa\xe2\x04\xc0\x85\xc0T\x15'\x00.\x04\xa6\xaa\x14'\x00\xee\x03\xa6\xaa8\x01p!0U\xc5\t\x80\v\x81\xa9*\xc5\t\x80\xfb\x80\xa9*\xc6V\xb8\x10\x98\xaabl\x85\v\x81\xa9*\xed\xdb\xd8\n\x10\xb8.[\x03\xac\xaa\a\xdf\xeb>\xf8\xdbN\xf9\xf5_\xbf\x8fy:\xb1؊\xe6\f\xe2\xd9G?\xf1\x10\xdfu\xabRA\xbdW\u07b5\xa5\x8a\x10\x92u*ܺ#\xaf\ai\x8exXm\xe4~\u007f=\xd6&E\xdcl\x8d\xf0N\x0e4`\xaa\xca\x06\xd4_L\xbe\xb1\x96}=¾\xae\xbd\xfe\xf3\xe8\x02=\xb6\xa2眈\x8e\xb7Ɏ\a\xb4cԄ\x04\xd3$J4y멳\x81\xc0\xba\xf0\xdd\x06)\xfd ;\xfaV\xac\n]\x9f\x8c-\t\x9c\xd7\x1f\x9a֦\x18f\x11'[#\xbc\x93ɑ\xe2>\xd8\bLU\xad\x88\xc4VX\xe4D\xb4\x93[\x94\xd6\x0e\x89\xa8\xd4#w<\x95\x9e\xf0\xfd\x01\xf7GT\xa5=\x8f\xdf\xfc\x96j\x11\xccjS\r\xb30\xcd\xd6Pw2\tR\xdd\a\xfb\x18\x98\xaaFb+,r\"\xb8\xaa͙-=\xd6Dh!\x87H\xb8VU\xb5g\x8c\xaa\x9a\x91j\x98\x85i\xb6\x86\xba\x93I\x90\xea>\xd8ǀT5\x1c[aȉ\xd0c+\x9e!\x99\rՅ\x83\xcb\xf9\\\x93\xa9ڞ\xbbB\xae\xa5\x04I\xe8\x8bj-\xa5uCiamh\x1baU\xaf\xfb\b\xf1\x88ۤ7\xb2-\xd5\xd1:\"\x82\xab\x94\xce\"\xaaFj\x95\f\f\xf30\vC\x8a\x86\xdez$\x93\x90\xa5\xa7*\x87\xfb\xca\xe4-\xb5L\xb25ԝ\x8c\x04u\xa8\x99\x1d&\xaf\xcd\xf8\x1fʡ\fHUñ\x15\x86\x9c\b=\xb6\x82\aT\f[\xb1bX\xd61\xaeꥒA\xf7\xe4ZJ\x90\x84\xbe\xa8\xd62\xe9f\xd1\xd9a\xef\xf4Q\xf5P \xe0\x15w\x1e\xbe\xb53g\xd9%z\xa96w\xe7-Cgʨ\xaa\xd7*\x19\x18\xe6a\x16\x86\x14\r\xbd\xb5\xa3q\xeb\xb0у\x8a\x16Tf|-z\x89\xcd\xd6PwR\t\xeaP\x16\xcd^\x9ba\x1f\x9cʀTU\x89\xad\x88\xa4GDb+\xa86\xfc&\x1b\xe2\x8a&rU\x9f\x1eU\xb0N\x14(A\x12j\xa6D\xa4\x96\x06\xb3\xebi}vh\xb2\xa9N\x00|\xa1\x9bd\xcf\xe3\xf3\xbdʟ\x19;\x8b\x9a\x00\x84j\x95\f\x8c8a\x16\x91\x14\rcH\x06\xf1ߤ\xc1\x9b\xb2>6[C\xd9I\xe5\x15+\x8bq^\x1bN\x00\xfa\a=\xb6B\xf9\r(\xb1\x15T\x1et\xad#W\x99\xaa\xbe㛇\x88_\xbc\x12$\xa1fJDj\xe9\x11\xb2\xbbc79\"\xfb0S\xb5\x85\xbd\x1fwd\xb5\x18;3WU\xc9\xc0\x88\x13f\x11I\xd10\x86dh_G:\x8b\xcd\xd6PvRy\xc5\xcab\x9c׆\xaa\xf6\x0f\xfb\"\x1a\xe9\xbf\x01%\xb6B\xdeJ\x9d\x06\xc8!\xa6\xeaV\xdaU,R\xfc\x94 \t5S\"RK\x1bDc\xe8\x04\x91\x99\xaa]\xf9M\xb4)?h\xec\xcc\\U%\x03#N\x98E\xe4~\xefƐ\fu>i\x92\xad\x11\xd9I\xe5\x15+\x8bq^\x1b\xaa\xda?Db+\"9\x11Jl\x05\xd5\xe6\xf3\xef\x1b\xc9My\xb2\xaa\xd9\xcbOV)A\x12j\xa6D\xa4\x96\xce\x1a\xb7\u007f\xff\xfeq\xb3d\x1ff\xaaҚ\nZ!\xb2+\xd4\x1e\xa4\xaa\xb7\x96]Uk\x95\f\x8c8a\x16\x11U\x8d!\x19\xb3h\x84\xd8l\re'\x95W\xac,\xc6ym\x91}p,\x03RU%\xb6BωPb+\xa8\x96\xcf~\xc3wF\xf8C\xe7U\x83\x93x\x82\x95\x12$\xa1fJDji\xe1B\xf6mA\xa1\xec\xd8T\xd5=\xde\v^q\xa0\xa3\xf6 U=Lv\xaa\xb5J\x06F\x9c0\x8b\x88\xaa\x86\x88\vu\xf43\xc9\xd6PvRy\xc5\xcab\x9c\xd7\x16\xd9\a\xc720U\x8d\xc4VDr\"\x94\xd8\n\x8d\x8ck\xdc<:\xf7$\xedh\xe2\x9fVѷ3\xb6\xdf3\x04I(\x8b\x91\xdaf\xb2\xe4\x0e\xbd\xf3+\xd2|\x8f\x9e\xe7\x9fV\xd5\a\x02l\x10z\xf0\t;\xaa\xaf\n\xec\x14\xf3\xdd`aY\xa1\xfc#\xd1{\xe8\xda3\xb6\x84\x1d[\a6\x90\x80Z\xabf`\x98\x85Y\x18R4\x94\xceđzx&\x1e\x9b\xad\xa1\xee\xa4\xfa\x8a\x95E\xb3\xd7f\xd8\a\xa720U\x8d\xc4V(9\x11\x91\xd8\nm\xe1ܜ\xc2\xca\v|\x88\xe1\xd7\x00\xd0i$\x83\x0f\x91J\x90DdQ\xafݑ\xc1O\x986\x11\x92\xb1\x83\xce\tM\xf8\xd8\x11\xff\x01\x8f\\\x94\xd1\x16\xf5Z}h\x0f\xc2=\x1c\r=O|'\xd4ZC\x06\x86I\x98\x851E#\xdczDv\x10\x1aKM\xb25ԝT_\xb1\xbah\xf2ڌ\xfb\xe0P\x06\xa8\xaa=\xc7VD\xa6\xb2\xd6$Sk/\xbd\xcf\xd6p\xeek3c\x80\xaa\xdaslE2\xbf\xa2djm%\r\xd9\x1a\x8e}m\xa6\fTU{$\x99_Q2\xb5Ѐ\xf5\xda\\\xa8\xea7\xe2\x88ŪJ\x92L-4\xa0\xbd6\x17\xaa*\x8eX\xdaiB$S\v\rh\xafͅ\xaa\"0AU\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\x02\xaa\x8a\x00\x01UE\x80\x80\xaa\"@@U\x11 \xa0\xaa\b\x10PU\x04\b\xa8*\x02\x04T\x15\x01\xc2\xff\amu\xa3\x1c\xa2\xebff\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/ipcg-pkg.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x02\xf0\x00\x00\x03\xc6\b\x03\x00\x00\x00\xb2,^L\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x02\x04\x00\t\v\a\r\x0f\f\x10\x12\x0f\x13\x15\x12\x1b\x1d\x1a !\x1f!#!$%#&(&+-*/1.2416859:8<=;>@=AB@DFCFHEJKIOQNQSPTVSWYV,`\xae7]\xad8^\xae[]Z8a\xaa:b\xab;b\xac_`^\xc75\xf1\x17\u007f4\x1f\xc7j\xfb\xd7\x17\xdd\x05Zn\xc9/\xfe\xa7#\xf1\x1a\xb1k\x1e\xae-\x19\x9f_\xfej\xc73\xfa3\x9e\xa8_%f3\x9a\x10\x85\x1dG\x97M\xd4\xd7\xf8}x\xc3\xff\xfd7\xcfC\xae\xdc\xc9O\xbfo\xd9\xec\x83\"\x02\xedp\a\x18i\xa4/\xfc\xe1\u007f5\xff\xef.>\x1c%\xfc+\xae\xc0\x03\xb7\xa1\xb4a\xd9*\xf9\xb8\xf8\xab\xc4lF\n\xff?\xf9撪\xbf\x067\xbc\xad\xcc\\2\xe9\x84e\xbb\"\x82E\x1d`đ\xb6\xf0Zq\xf0\xffow\xa4\xf0\xaf\x8e\r\x99\xf0\xa8\xbe\x1f5,\xcb3\x96=\x1f\xbbbGG\x95\b\xf3\x9frA\xb4\xb6\x87\xf3\xc3\x13j\x13\xae\x11\xbd\xe6\x1f\xb5\xe0\xb4\t\"$|\xe8W\x89ٌ>;//\xb8dAp\xc3\xc1W\xaf\x98g\xd9\xf2\xcf,\xebb\a?\"I[x}w\xe8\xf9\xe3\x169\x18\xf7玷^\x9d\xaa\x0f~\xf1\xea\xab':\xfe,\xfd|h\xdb\x1f\u007f#\xdd\xd1%3,\xd3'=T\x92s\"vŎ\xff\x95\xf7\xab\xff\xf8\xa7\x8dr\xb5_ɟ\x11\xad\xedt\xfd\xf1\xf8e\xafnyT\xbf\xcfy+\xd1\x1a\xd1k> \xd7\\\xf5\xc7\xff2\xd5\xf6D\xfe*\xb1\x9b1^\x1e\xf9O\xbf\xea1^\x91\xc1\r\x8a\xe2\x8d\u007f\xfa\xddD\xb9%K\xa8\x89\xd8\xc5\xff\xa2\x03\x8c<\xd2\x17>O\xee\xd8\xfe(\xff\x1f\x97ﰆ\x0eZ\xeb\xf5\xc1\x032\x10\xfcQߕN\xec\bX\x96\xab\xcf\xd9k\xb7\xe2\x9f~55\xcfH\x14\x1ea\x04\x8d\x18m\xdf\n\xda\xf7\xb7\x87\xf4\xc1\xb2DkD\xad\xf9?rM#\x8d\xd7ȑ'\xf2W\x89\u074c\x16\xfc\xddNH\xe3݁\r\xe6\x1d\r\xfe\x12\xd67\x92-\xbbx\xec\xe0G$\xe9\v\xff\xefƒ\xbc\x80d!\xe1˅\x11\x18t\xa4\xa0o\x05,\xfbU`\x03\xb1+\xea\xc8\xe0\xd3\xf1\xbc\xfe\xb8L\x0e\xa2\xb4\x95Ǜ\x0f\x19\xa3\xffz\xea\xf7A\xb7\xec\u05c8Zs\xb5\xfep\xb21\xfa\xf3x\x11\x16>\xf8\xab\xc4lF\n\xff\x94\xb1|\xa3>r\x9d17h\xa4\xa8\x8e\t\x91\x9b\xee\xf8\xbd\b\x81\x04?\"I_\xf8\xff0\x96H'\xe4\x91jHx)re\xadD\xe6\x80\xdf\x05,\xfb]`\x03\xb1+\xea\xbc\xff\xdf\xf5s\xfeI\xcez(\xf8\x84ŭ\xaa\x90t\x16\xec\u05c8Z\xb32\xbc\xa6<>\xf5D\xfd*1\x9b\x91\u009b'l\x0e\xcbe\x87\xcd\r\x9a\xbf\xed\xc4\xf0ok2Y\x04\x18\x87\x1d\xfc\x88$}\xe1M\xb5\xfeUD\n\xff7\x11A}\xc0\xb2\xc0\x99?\x9b\x15;~W\x1e:\xb6|X>\x8e\xd2V\xfe\xc5X\xd5\x11A\xbc5l\xd6\f\xbc5\xe0\x16aჿJ\xccf\xe4#\xd3^\xe3\u007fğ\xac/\xca\aD\x94\xf0\xbf\x0f\xae\xfa\x8b\x0e0\x12I_x\xf3ݖ\xa0\tA\xe1\xff*\"x:\xb0\xe4\xad\xc0\x06bV\xf8\u007f\xe4\x13Q\xda\xce\x13\xc1\xbd\xe8\xfbo\x19\xa7\xe1\xe3\xafa\x13i\x02\x81]\x1ecz\"\u007f\x95\xd8\xcdH\xe1\x8d\xf3\x93\x11\x91&\x9e\xf0\xbf\x17\x06\v:\xc0\x88d8\x847\x8e\xf8\xe4\xa1j\xbd\xf1\xd4\u007f\x9bj%\x16^\xaah\xc4\xe4\xff\xd0\a\x8fʁ\xcdAk\xa1qt\xf9[1\xfe\x81\xdaDkD\xad\xb9J\u007fXl\xacyX\x9e{\x8f\x12>v3Rx\xf3\x05\xf2\xa2>\xca\xefH,\xbc\xb9\x8b\xc7\x0e~\xa42T\xe1\xe7\x89@\xf2\x90\xe7F\xfeI\xbe\xc5\xfaG!\\\x0f\x1f\rXv4\xb0\x81\x98\x15\xf3\x83&UF\xeb\x1b\xe0-\xb9\xfao\xf4\xc1_'\x9bB\xc6_#jM\xe3\xcc\xe73\xfa\xe0}\x19\x8bB\xc2\a~\x95\xd8\xcdH\xe15\x99\xf0\xff,7TՑD\xf8W\xe4\xc6~\xd1\x01F&C\x15\xfeW\xfa}ު_\xfdw\xc7Q9g\xf2\u007f\x1e\xfe}a@\xa4\xc4\xc2˻\u007f}\xab\xe3\xf0/\xe4,\xbb\xb34\xc6\x1bO\xc2\xedyZ\xce\x14\xff\x9bh\x8d\xe85\x8d\x8f\xbc\xcc\xd9Xo~4!J\xf8\xd8\xcd\x18\x87\xb0\xe3\x97m\xab\x97\xdb1\x8em\x13\n\u007f\xe6\x01\xf3\x8d00\"\x19\xaa\xf0\x1e\x11\xb4j\xa3\b\xe1\x92>$\x16\xfe\x19c\xe2xs~\xb1|\"Z[\xebG\v\x96u$Z#z\xcd?\x05&\x89q\x05\"F\xf8\xd8\xcdH\xe1s\x83?\xe9W\xc1\r\xc7\x15^\xa6\xf8_t\x80\x11\xcaP\x85?a~\nE\x1a\xe9\tZS`\x9c\x01L,\xfc_\xa7\x9bssV\xffk`Z\xb4\xb6\x1doM\nlO\xd4\x1a\x9f͉\xbbF̚\xaf\x98\xbf\x89\xf6[\xb9\xca\xf3\x91\xbfJ\xecf\xa4\U0002f598K\x17\x19\xc7lj\x85?\xf3\x00v\xf0#\x97\xa1\n\xdf\xf1VU\xbe\xf6O\xe5\xc6\xf0\xf0\x8a\x9f\xe5\x8f\xcb{\xe8i\xf3\U000ff245\xef8\xe3yȥ\x15\xff\xea-\xe3\x03hu\x1d6\xdav\xfcu\xe3\xf4\u007f\xd2r'\xfe*\xf0\xde~\xdc5b\xd7|\xebW\xc5\xda?\xcd\xfb_#\x16\xfd\u007fQ\xbfJ\xccf\x8cӒ\u007f\xfe\xf7\x12-\u007fz\xc0\xed\xc4\xc2w\xfc\xce\xfay20\xb2HM\xf8\x11\xc5\xdf\xfe\x16\x1a\xcawZ\xff3\xc1T\x83\xf0y\xf8\x149s\xb4\x03\x8cTF\xa1\xf0\u007f\xcc)x\xa8r\x9b\x1c\xfdY此\x1f\x01H[x0\x82\x19\x85\u009f\xc8\x11\xf2\xbd\xa5?\xfd\xe9?\xe4{\x03\x0f$\x9b\x0e\u1ccaQ(\xbc\xf1\xde@\x88\xdf'\x9b\r\u1cca\xd1(\xfc\x9f\xcbC\xba\x8f\xfbM\xb2\xc9\x10>\xbb\x18\x8d\xc2wt\xbc\xfa\x8b\a\xf24-\xff\xa1e\xa9\x88\f\u1cc9\xd1)<\x00q\x80\xf0 \xab\x80\xf0 \xab\x80\xf0 \xab\x80\xf0 \xabH$<\x00\xa3\x0e\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n\b\x0f\xb2\n5\xc2_\xbe\xfcygw\xe4\xa2\xee\xce\xcb_}9`?\x1d\x80L\xa1F\xf80\a\xb7w\x124\a\x8e\xa1T\xf8>\xa2Ms?\x96w\x008\x83R\xe1I&\x19\xec߁\x83(\x14\xbe\xaf\xcf\xd7\xd7w|ϗ\xfa\xdd\x00\xac\aΠPx\x83\x97\x1e\xbb\x98l\n\x00\x99C\xb5\xf0\x03\x9d\xc9f\x00\x90A\x14\t\xafG\x98\xd3{\xfe\xb0}\xeb\xe67\x9b\xb7oݺ\xbdy\xdf\xcddk\x00\x90\t\x14\t\xdfG\xb4}\xfe\xac\x99\xd3fL\x93̜_q\x11\xe7j\x80\x13\xa8\x13~ô\x83\xa7\xdf;\xfd\x9e\xce\xe9\xd3k\xa6\x9d\x83\xf0\xc0\t\x14\n?\xbb7\xf4pk\xc59\xf2\x11\x9c\a\xcaQ(\xfc̳\xa1G\x1bf\x9eK4\x1b\x80L\xa1P\xf8\x19!\xe1i}X~\x00T\xa2N\xf8\xf5s\xbb\xf7\xfc\xf8\xc7?\xd1\xff\xab\xe8{}\xe6\xe7G\xb6\xfb\x8eoU\U0007969f\x8e\x193\xe6\xee\xe3\xc9f\x81,A\x9d\xf0\xeb\xaai\xcd\u05fe\xf6w\xfa\u007f\xdf\xf25\xcf\xe8~cn\xf7\xeeY6\x87\xae\x9d\t\xc2\xce\xee\xb7\xe3?\x17\x97\x0f\x9b\x9bW\x8e\xd9c\f\xcf\xe1M\x80\xacG\x9d\xf0\x1bf_\xbeؼgߞ}\xcd\ai\U000cc2dd\xa7\a:?\xf4E\xcf\x1bX\xfb\xcd\xfb\xec\xd67\xf9\xc1\x8f\xe3?\x97\x88}\x01\xe1\xef\xfb\xe6\xda\xcc\xffE\x01\xacQ'\xfc\v3N\a\x1f\r\xc4\xcb\xf0\a\u007f0\xe6\xfe\x0fm\x9f1\xb8\xe7_\xe2?\x97\x88\xa0\xf0g\xef\x1f\U000c30c9\xa7\x82Q\x8e:\xe17̺h&v\xfdfӌs\xd4\x1bsZ\xb2sƝ\xdf\xddn\x0e\xd7\xfd\xf0\xee\u007f\x98\xd1Mt\xe4\xce1c\xee\xa7\xef\x8d\x19\xf3\xcdޭcL\ue258pP\x9f0\xf7\xf8O\xbew\xf7}\xbeG\xc6ܹv\xda?\xdc}\x9f|\xc5t\xfe\xcbw\xee\xfa\xee\xfd\a\x03\x1b\x0e\nO\xb4\xfd\xbbwNC\xae\xc9f\x14\n?;\xfc\x9d\xa7\xcd\x156\xe9}\xf3w\xee\x9c\xfd\x959\xfc\xf9\x9d\x8fl_\xf9\xed{\xfa\xa8o\xcf\xc2;\xf7к;\xd7\x1d\xa4\xaf\x9a\x9b\xff\xe1G\xcd\xcd\xcd\xc7#&\xdcܰ\xfe{\xff\xf0\xcd\xefM\xfbɝ\xa7\x8f\xac\xbfs̷\x17>\xf9\xcd\u007f֟\xdf>\xe6\xe7\xbb7\xdc\u007f\xe7>ssa\xe1\xe9\xab\xd9w~{S\xf4O\x06كB\xe1\xab\xd7m~a\x93\xce\v\x9b6\xff\xf2\x91د\x81<2枃\x81\xe1\xf61ϒ\xd4\xf49\xf9\xe0\xa7?\xbc\xf8\xbd\xc7\xcd\xe5\xa1H\x131\xe1\x9e1\xf7\xe9;m\xb9\u07fe\xeb\x9b\xfa\xde\xfd'\xdf\xd6G\xdd\x1b\xbe\x94\xcf\xfc\xb39\xdd\"\xbc\xfe7\xe1\x9e1\xd3\bd+\xea\x84o~\xfc\xb1\x8a\x19&\x15\x8f?\xf9y\x8c\xf0\xcf\xde\xf5\xadu\x81\u13ff\xef\x93|\xf7\xa7\xf2\xc1\xcd{\xbe}\u007f`yH\xf8\x88\t\xf7\xdc\x15<8\xb8K>\x9e\u007f\x97\x1c^\\s\xdf\xf7\xbf\x19\x88?\x91¯\xfb\xd6\xddk\td+\x8a\x84\xd7\xe9\xbex6\xc4\xc5\xcb6gK\x8e\xdf7\xe6\x87\a\x8d\xd1=\x81\xb8n\xee\xa07\x8di\x0e\xcc\b\t\x1f1\xe1\x9e\x1f\x04\xb7p\xd7|\xfdf\xa1\x14~߷\xbf;\xeb\xa5\xe6{c\x85?\xf2\xc31\xf7\x87\x0e\x9eA\xf6\xa1N\xf8\x14x\xe9;wΒQ\xe4'\xdf\u007f\xdb\xc0\xf8\xae\xc8\xd9\xef\xcc\xfd\xdee\xf3yC\xf8gOGM\b\x9f\xbb\xb9k!\x05\x84\xff\xbf?\x94\a\f\xff\x12-\xbc\x9e\xe0\x83\x87\xc5 ;Q(\xfc\xc0@_\x90\x818\x1f\x1b\xeb\x9cq\xe7w^'z}\xcc\x06\xf9h\xae\x8c\xee\xbe\x1fV\xd3\xcf\xef3\xe7\xdf{/\xd1\xc7\xf29\xeb\x04[\xe1\xbf+\x97\xf5\xdd\x13%\xfc\x9b\u07fds\xd6W\x04\xb2\x19\x85§\xc4\xc1\x1fIUg\xdf\xf9\xe3\x176\xfft\xccz\xba\xd9\xfcȷ?\xa4\xf7\xbe9\xadY~\xd4r\xfe]On\xbe\xef\xee\xb3\xd6\t\xbe=ƹ\x9b\xf7\xf4eg\x9b\xef\xfc\xe9\x1ez\xfb\xa7w6\x9f\xa5\x85c\xfee\xcd\xe3\xf7\x8c\xf9ֿ\xed\xd1\x177\xaf\x1c\xf3\xeb\xe6f\xfd\x0fÿ\xfc\xe8`\xc2\x1f\x0eF?܄\x0f\xf0\xfa\xbd\xdf\xfa\xe6\x8f\xfe w\xe5c\xc6L\xa3Gƌ\xb9s\xb7\xbe\xb4\xf7\x91o\xdd\xfd\xa3}\x11\x13\xe4y\xf81\xf2\\\xbd<ͣO;r\xb7~\xfb\b\xf5\xfd\xfa\x1f\xee\xfa\xf6\x8f\x9f\xfd\xfe]\xf7\x1a\x9f\xa5\x91\f\xf2]Z0\xba`*<\x00\x99\x01\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x02\u0083\xac\x82\x8b\xf0\xbe\xa8VK\x002\x02\v\xe1\a\x88\x8e\xbc\xf1\xa5\x82\xcb\ue06c\x87\x85\xf0}D\x9b\xabQg\t\x14\xc0BxB\xa4\x01\x8apV\xf8=\xbe\xce^\x9fQgy\xf0\xcdNy\xd7G}\xbd\xbd\xbeps\x02\x00Ë\xb3\xc2\x1f!\xe3r\xaa\xb2\xa1{6Jp\x80\x02\x9c\x15>|\xf5\xe0\xces1W\x12\x06`\xf8qVxyb\xe6\xf8\xeeM\x1b\x9e[\xff\xec\xda\xf5ϭ\xdf\xf0zs7\xceՀL\xe2\xb0\xf0z\x8aٺp\xf6c\xb3fUϟ=k\xd6c\xd53Pg\t2\x8a\xf3\xc2o\x98v\xe4\xfc\xd9\xf37\xe9\xf2\xd9\xf3\xe7\x9fE\x9d%\xc8,\f\x84\xaf\x90\xad\xdc\xfbVʇ[+\xce\r\xc4^7\x1e\x80a\xc3y\xe1_\x98)\x1b\f~t\xc7A\xfd\xd1s\xa8\xb3\x04\x99\xc5y\xe1\xcd\xfe\xd6\xfb\uf437\xa8\xb3\x04\x19\xc6y\xe1\xd7\xcf\xed\xde}\u07fdw\u007f\xed\a\xf7\xfd\xbc\xef\x8d\x19\x9d\a7\xf8\x8eo\x8e\x9a\xb5e\xfco\xe5\xddr\x91\xd3d\xb3\r\x00R\xc7y\xe1\xd7U\x0f\xac\xfd\xc6\xd7\xff\xee\x8eo|\xe3;\xb2\xcerwu\xf7\x9e_F\xcd*\xd3\xca\xe4\xdd\x05\xaf\xe6\xb1\xd9\x06\x00\xa9\xe3\xbc\xf0\x1b*.v\x1e?~\xef\u05f7\x1f\u007f\x8f^\x9ay\xbe\xfbY\xa9\x99)\xfc\x95\xf1\xcf\x13\xddX\\\xac\x95T\x19] \xd6R3\xff\xaer\xd7\x03\xab{b6\x0e@\f\f\x84ORjvI\xec\xec\xb9\xf1N\xd9\xcfn\x10\xb5\x8ae\a\x9a\xaar\xda)\xb2\u052c6g\xc5\xdem\x05SQ\x06\x02\x92\xc3@\xf8$\xa5f\x97\x8c\xd34\xa5\x17\xf4aOS\x97\xbe?/\x9bG\x11\xa5f\xadb\x97>l7\x93\x0f\x00\tq^\xf8d\xa5f\x97D}{{\xdb\x13\x13\x8e\xea\xe3\xab\r\x95\x93\xf2\x84졷\x94\x9a-\x99\xd4\u007f[\xa7\xb86v\xf3\x00D\xe1\xb0\xf0\x94\xbc\xd4,pк\xa4\xd4O\xed\x85%O\xb7x\xddRxK\xa9Y\x990\x99\x17\xbb.\x00Q8/<%)5\v\b\xff\x9a\xb8J\x93\xcb\xe5\x91\xe9\")\xbc\xa5\u052cf\xd21\x83\xab\xb6\xab\x03`\xc5yᓕ\x9a\x05\x84_\x9a\xe7\xa7\x12Y\xe5\xe7\u007fX\no)5k\x13MrX\xbf1v]\x00\xa2p^x\x93\xb8\r \xe6;\xad-5\xe2Ei\xf9\xe2\x86秊\xa2\x17ߍ(5\xab\x1b[Ӣ\x0fw\xd9o\x00\x00\v,\x84OTjf~\x96F+۩G\x18\xff\x96R\xad`\xc9k\xa5\x9a;\xb2\u052c\xcd=!\u007fz\x9b\xdd\xda\x00D\xc2Bx\x94\x9a\x01U\xb0\x10\x9ePj\x06\x14\xc1Bx\\j\x0f\xa8\x82\x85\xf0\xb8\xd4\x1eP\x05\v\xe1\t\x97\xda\x03\x8a`!<\"\rP\x05\v\xe1\x11i\x80*X\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x02\u0083\xac\x82\x85\xf0\xc8\xf0@\x15,\x84G\x86\a\xaa`!a\xdc]\xddrKޅ\x84\x0f7\x99\x85\xabΖ\vm\xe7\xaa\a\\\x95\x17\b\x00{\x18\b\x9f\xb8\xd4\xecV\xce\x16\xebÐ\xf0\xe1&\xb3p\xd5\xd9_\x1alj\x02\xcfo\xf3\x16\x10\x00\xf60\x10>q\xa9\xd9'\xa2\xc5\xfa0(\xbc\xa5\xc9\xccRuFZ\xbe\xbew\xaf) \x00\xecq^\xf8$\xa5f\xfd\xe3l\xf7\xf0\xd6&\xb3p\xd5\x19iK\xf5\x1b\x8fF\x00\xd8\xe3\xb0\xf0\x94\xbc\xd4,\x90\xe1\xfb\xcd\u0083\xa0\xf0\x96&3kՙ&\v\xea!<\x88\x8b\xf3\xc2S\x92R\xb3\xba\\\xa3\xad\xacI\\\x91wA\xe1-Mf\x96\xaa3\b\x0f\x92\xe0\xbc\xf0\xc9Jͮ\xe5-\xe8\xd73\xba{\xa2\xf1((\xbc\xa5\xc9\xccRu\x06\xe1A\x12\x9c\x17\xde$A\x03H\x9b\xab|WK\xe5\xb8CD\x9f\xc9wZ\xb7x\xbd\x9f\x92\xb5\xc9,\\uvɫվ\xeb?Q\xaby/\xc5\xdb\x18\xc8rX\b\x9f\xa8Ԍ\x8c\xcf\xd2\x14\xcd{_\x1f,\r\x04\xf7%ri\xa8\xc9,\\u\xb6\\֟\xbd\xef\xd2o\x97\xc7\xd9\x14\xc8vX\b\x8fR3\xa0\n\x16\xc2\x13J̀\"X\b\x8fK\xed\x01U\xb0\x10\x1e\x97\xda\x03\xaa`!<\xe1R{@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!\xdc_\xd0j\xbb!\x00R\xc2yᓔ\x9a]\xdb(^\xf3\xee]\"\xea͇\xad\xae\x88\xcb\xc5\x03\x90\x1e\xce\v\x9f\xac\u052cM\x9c\"\xf2/7;\xcd\xf4\x91\xddf\x00H\x11\xe7\x85OVjf\bO=y\xb8\\$\x18\x06\x9c\x17>Y\xa9\x99)<-/\"\xba\x9e+DN\xa3|tr\x9c\x10\xf5gj&\xe6Vގ\xdd(\x00qa |\xe2R\xb3\xa0\xf0;D\x17Q\xbb\xd7;^^\x01\x9ez\x9a\x1aKJ\xf3JVՌ\xfd\x94\x00H\x1d\x06\xc2'.5\v\n\xdf\x16\b\xf1\xb9\x9e\xc0\xf2\xa9\xc2}\x83\xfc7\b\x804p^\xf8$\xa5fA\xe1_\x13\u05cc\x87a\xe15\xec\xdcA\xda8,<%/5\v\b\xffT\x9e\xf90,\xfc\x94ع\x00$\xc1y\xe1)I\xa9\x99)|\u007f\xc1\x12\xf3aX\xf8E\xb6\xd3\x01H\x84\xf3\xc2'+53\x85\xaf\x13\xc7̇a\xe1\x17\xc7\xce\x05 \t\xce\vo\x12\xb7\x01\xc4x\xa7\xb5m\xa9\x90\x9e\xf7\xbf\xe3\xf5\x8e\xaf\xf5zo\xd0\xed\xc3\xde\xd2\xe9^\xef'\xf6\xeb\x00\x10\x0f\x16\xc2'*53>K#&\xee\x90\xe3\xa39f\xa9\xd9\x0e:i\x8e\xaa\xec\xd6\x00 >,\x84G\xa9\x19P\x05\v\xe1\t\xa5f@\x11,\x84ǥ\xf6\x80*X\b\x8fK\xed\x01U\xb0\x10\x9ep\xa9=\xa0\b\x16\xc2#\xd2\x00U\xb0\x10\x1e\x91\x06\xa8\x82\x85\xf0\x84H\x03\x14\xc1BxD\x1a\xa0\n\x16\xc2#\xd2\x00U\xb0\x10\x9e\x10i\x80\" <\xc8*X\b\x8f\f\x0fT\xc1Bxdx\xa0\n\x16\xc2\x13\"\rP\x84\xb3£\xd4\f(\xc6Y\xe1Qj\x06\x14\xe3\xac\xf0(5\x03\x8aqVx\x94\x9a\x01\xc58,\x9a\\ޣ\xdf.\x8a\x12\xbe\xd0x\x8e\xeaK\xe5m\xeb\x84~#Ѥ)|\xc1\xa9O\xf2\xb6\x18\x13\xebtկ7\xe66\x10\x18=8/|\xb2R\xb3\xa0\xf0\x85u\xfa\xcd\xe1\xf1\x97\xc6\x1f\x96\x8fJd\x87\x9f\xff\xe1(ዊe\x99\xab\xdf,\xf8\xeb/j\xcd7\xfe0\xa4'\xbc\xfc{\xa2Ƀa\x8fh\x93\v\xdc\xcb\b\x8c\x1e\x9c\x17\xde$n\x03H\xf0\x9dVo\x9e\xf9\x0f\xbbz\x901X\b\x1f\x884\x00d\x1c\x16\u0093\x8c4ح\x03\x05\xb0\x10^\x8f4\aw\xf7\x1d\xd9\xec;\xf2\x92\xfe\xaf\xf7\xf8v\xcbs\xc9K\xcd\x00H\x1d\x16\xc2\xcb⛅7߬\xee6\xff\xa5Vjv\xe0\x18\x01\x90.,\x84\xd7\xe9\xbdI_~\x1c\xf8\xd7}1\xe2\xa98\xa5f\x8f.!\x00҅\x85\xf0\xc6\x1bO\x9d\xf1\x9e\x8dSj6u\xb1\xddd\x00\x12\xc2Bx\xe3,\xcd\xf9\x81^\xfbӒ\xa1R\xb3Sㄨ\xf2\x97\b\x91\u007f\xab5\x10\xec\xa7\xc4n\f\x80\x04\xb0\x10\x9e\x12\xbe\xf1\x14*5\xf3\x1f\xf6\xe4\x1c\xa6]cw\x9d\xa0\xaeC\xde\xd2\xe9z\xb2ǵ\x96@z\xb0\x10>\xf1gi,\xa5f\xfe\xa5\xe5WK6\x9a\x8b\x11i\xc0 `!|\xe2\xcf\xd2XJͨ\xe7ᢪ@\x96\x87\xf0`\x10\xb0\x10\x9e\x12G\x9ap\xa9\x19Q\x8b8\x14\x18Ax0\bX\b\x9f$\xd2XJ\xcd.\x14֗|a.6\x84\xdf\xf9\xa9\xfd:\x00\xd8\xc3B\xf8$\x91&\\j\xd6_^O\xcb\xdcf\xa6q\xbb\x89\xae\x88&\xfbu\x00\xb0\x87\x85\xf0\x94 \xd2XJ\xcdz\x0e-/\xb8@\x1dy+\x0e\xdd\"Y\xba\xb7\xa5\xc5\xed\xfa,\xcej\x00\xd8\xc2B\xf8D\x91\xc6Rj&\x87\xabh\x85\x10cewӭ\x15\xf9\xb9\xd3\xdb\xedV\x01 .,\x84\xc77\x9e\x80*X\bO\xf8\xc6\x13P\x04\v\xe1\xf1%n\xa0\n\x16\xc2#\xd2\x00U\xb0\x10\x9e\x10i\x80\"X\b\x8fH\x03T\xc1BxD\x1a\xa0\n\x16\xc2\x13\"\rP\x04\v\xe1\x11i\x80*X\b\x8fH\x03T\xc1BxB\xa4\x01\x8a\xe0\"<\x00J`!)ɩ\xf4\x1c\x0eVv\a\x85o\x15\xcb\x0e4U\xe5\xc8+\r\x1f\x1d\xbb\xb4e\xff\xce\"\xa1\xbfbH\x13\x93\x1b[\x8a\x16\xc4\xf9\xa9`t\xc2B\xf8ğ\xa5\x99(\xcf\xd1\x14\x9a\xe3\xa9\xc2}\x83\xfc7\xe4U\xb4e\xa47n\vkh\xafh\xa5\xa5\xf2\x0f\xc1\xb5\xe7\x1f\xd5D~\xe0\xf4KP\xf8\x9e&}\x8f\xef/\x9b\xa7\x0f\x1b\n\xa4\xea\r\xf9\xc6\x1e\xbe\xf0\v\xa2ڂ\xd8\x1f\bF1,\x84O\xfcY\x9a\x89U\xed\xedK\x83\xc2k\x9f\x9a\x83\xda2\xe3\xeeA}\x17_\xd8H\xef\x8a.z\xba\xc6|\xe6\xd6\xfeJ\xb1\xd7\x18\x852\xfcՆ\xcaIyB\xae\xf1Y\xf1\xc4\x15;O\xf8\x8d\xbf\x01\x9a|\x85x4\x02\xd9\x04\v\xe1)q\xa4\xd1\xc5<\xb5\xd3\x1cO\r6\x11\x97\x9b\xb5~Uz\xd4)l\xa3v]\xdb:]\xf8v#\x91\xfb\x03O\x06\x85o/,y\xba\xc5\xeb6^\"\xd7w,\x9e,\x8a6\x1a{xy\xd0\n\xe1\xb3\f\x16\xc2'\x894\xcb\xc2㩋\x02\x83\xdaI\xd2Y\xffĥ\x11\xc2\x17\xae0\x9e\xac/5\xee\x82\xc2O.\xef\xd1o\x17I\xe1\xdb\xeb\xf4ծ7\xe66\x10\x84\xcfNX\b\x9f$\xd2X\x85_\x1c\x18\xec\x15\x8d\xfam\xa3\f/\x16ዊ\xaf\xe9K\xfd\x81\x97EP\xf8\x12\xf9\xd0\xff\xb0\x14\xdec\x9e\xcdw\xcbMB\xf8l\x84\x85\xf0\x94 \xd2\xdcz\xa7p\xce!\xf34\xe3\xed\xc3F\xdf\xfc'ƃ\x9a\x9c\xbaֺ\x1c]\xf2S\xf9/\xf74j'{j\xdc\x17\xa8H\x14z\xdaZܹ\x1f\xe9i]\xbeӺ\xc5\xeb\xfdTZ\xbe\xb8\xe1\xf9\xa9\xa2\xe8\xc5w\xf5\xa1\xab\xbe\xb5\xa5V\x1c\xa0K^\xad\xf6]\xff\x89Z\xcd{)\xceO\x06\xa3\x11\x16\xc2'\x8a4\xc6giv\x19Ó9\xc2\xd2B\xbf\xad\xccU\xd6\xe0'\u007f\x91\x10\x8dy\xc2\xd5$\xc4\x80\xae\xf9\xa6\xd9\xe7\x10i@\xe6a!\xbcN\xe79_\xb2)\x00\f\x1d\x87\x85\xd7\xe3\xcb\xf1\xed\xeb֮]\xa3\xb3v\xcdڭ\xafw#рL\xe2\xb0\xf0\xf2\xfc\xcc¹\xd5sM\xaa\xab\xa7\x9dG\xb0\x01\x99\xc4y\xe17\xcc8\xfe\xe5\xe7_\xea\xe87\xebf Ƀ\x8c\xc2@\xf8\x8a\xf0\x19\xc9ͳ\xce\xc9k\b#\u0383L\xe1\xbc\xf0/\xcc\xf80\xf4h\xfd\xac\xb3\x89f\x030T\x9c\x17~\xc3̰\xe4\xcfʹ\x13\xbe\xe5\xc1\xf1e-S[\xe3\xf46\xa1\xac\t\xa4\x81\xf3¯\xaf\xee\xfd\xc3?\xfe\xe3=\xfa\u007f\xff\xec\xdb=\xa3\xf3\xed\xb5\xbdo\xaf\x8d\x98\xb3MԴ<%Ķ8\xbdM(k\x02i\xe0\xbc\xf0\xeb\xaa\xfb\xd6\xfd\xfd\xdf\xff\x1f\xfd\xbf\xef\xfb\x9agt7/\xbc\xd9\\m\x9d\xf2\xd1\xd8z\xfdv\x95\x14\x9e\xeckl 1\xeeB\xc2\a;\x9et\xb4\x15O\x14\xe7W%\xe8d\x05 \x88\xf3\xc2o\x98\x19\xee\xef{if\xcci\xc9\xeb\xe25\xeb\n!\xe1C\x1dO\xb2\xaciJSc\x99\xeb\x14\x01\x90\f\x06\xc2W|\x1ez\xf8Ҭ\x987\x9e\xde7\xae\xe8\xee\xef\xe9\xb9e<\f\no\xe9x\"mr\x0fQOi9\x01\x90\f\xe7\x85ߴ\xf0\xc95+W\xfe\xfa\xd7+W\xae\\S\xfdH\xcc\xd7@\xcc=|\x8d\x10b\xbf|\x18\x14\xde\xd2\xf1D\xda3r\xb8C\\#\x00\x92\xe0\xb0\xf0\x03D\xfbV\xfer~u\xf5\xc2ǫ\xab\xab\xe7\xaf\\\xdb\x19\xf3\xe1\xb1\t2\xc3_j\x11u\xc6.>(\xbc\xa5\xe3)p\xd0\xea\x15\xc7\b\x80$8,\xbcN_o\xb7\x8eo@\xde\xf6\xf6\xc6>_[$Mo\x89:-i\xe9x\"m\x95\\\xb2S\xa4P\xd5\r\xb2\x1d\xe7\x85'c?\xff\xc2\xc2\xcf\xe3|0\xd88\x0f\xefwG\to\xe9x\"\xadX\u007fI\xf4?\xe8\xb6]\x1d\x00+\xce\v?\xd0\xd7\xd7\xed\xf3\xfd۴#\xben_\x9f\xddG%\xb7\x88'Zk\x8dwZ-\xbdM\xe1\x8e'y\x96\xa6\xf2\xf0\xfe\xf2\xfc\x8fl\xd6\x05 \x12\xe7\x857\xe9M\xf0%\xee\x96ɹ\xe5m%m\x11\xbdM\xa1\x8e'\x9d\a=\x8b\xf3\x8ak\xd0M\x06R\x80\x85\xf0>\xa2M\x8f\x9f%|*\x18d\x1c\x16\xc2뇪z\xa4!\x9b#V\x00\x86\x17\x16\xc2S\xe2H\x03\xc0\xb0\xc1Bx\\j\x0f\xa8\x82\x85\xf0\xb8\xd4\x1eP\x05\v\xe1\t\x97\xda\x03\x8a`!<\"\rP\x05\v\xe1\x11i\x80*X\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84O\x10i\xb0\xe7\a\xc3\n\v\xe1)\x8e\xd8\xd8\xf3\x83ᆅ\xf0\xf1\xc4\xc6\xc1,\x18nX\b\x8fH\x03T\xc1Bx\x8a/\xf6\x91\xdd\x11\xd7\xdd\x03`h\xb0\x10>&\xd2\xec\xf1u\xf6\xfa\xfa\xfaz\xfb\xfa6T\x9c\x95w}\xd4\xd7\xdb\xeb\xc37D\xc0Pa!|L\xa49\x12\xfa\xba\x1f\xda\xfd\xc0\xb0\xc2Bx\x8a\x8e4\x90\x1cd\b\x16\xc2Ǟ\xa5\x91u\x96\xbb7mxn\xfd\xb3k\xd7?\xb7~\xc3\xebͨ\xb3\x04\xc3\x02\v\xe1c\xcf\xd2\xe8í\vg?6kV\xf5\xfcٳf=V=\xe3\"NN\x82စ\xf0\x14s\x96F^Uxڑ\xf3g\xcfߤ\xcbgϟ\u007fv\x1a\xea,\xc1\xb0\xc0B\xf8\xd8Hc\\F\xfb&\xc9K\xadʇ[+\xe4u\xe3\xe1<\x182,\x84\xb7\x8d4/̔u\x96?\xba\xe3\xa0\xfe蹙\xe7\xe2\xad\v@:\xb0\x10\x9el#\x8dQay\xff\x1d\xf2v=\xea,\xc1\xf0\xc0Bx\xdbH\xb3~n\xf7\xee\xfb\xee\xbd\xfbk?\xb8\xef\xe7}o\xcc\xe8<\xb8\xc1w|s\xc4Z\xa8\xb3\x04\xe9\xc3Bx\xdbH\xb3\xaez`\xed7\xbe\xfeww|\xe3\x1bߑu\x96\xbb\xab\xbb\xf7\xfcҺ\x12\xea,\xc1 `!<\xd9F\x9a\x8a\x8b\x9dǏ\xdf\xfb\xf5\xed\xc7ߣ\x97f\x9e\xef>Oݗ\xadSPg\t\x06\x01\v\xe1m#\x8dYgy\xaf\xcc\xf0\x03\xa8\xb3\x04\xc3\x04\v\xe1m#͆Yr\x87>\xeb{R\xfbM3cNK\xa2\xce\x12\f\x06\x16\u0093}\xa4\xf9R\x1f\x98\x9d\xad\x9b+Pg\t\x86\x05\x16\xc2ۿ\xf14\u007f\xcd\xfag\xd7m\u007f\xe3\xb9g\u05ed\x9f\x8f:K0<\xb0\x10\xde6\xd2\xecy\xb2z\xee\xec\xd9\x15\x15\x15\xb3g\xcf}reg\xcc۬\xa8\xb3\x04\x83\x80\x85\xf0d\xf7\x8d\xa7\xde\xce\xcb\x17/_n^\u007fZ\xbf\xeb\xb4\xf9\xda\x13\xea,\xc1 `!|\x82/q\xaf\x9du>\xceGhPg\t\x06\x01\v\xe1c#\r\xc9\xc3U_\xaf\xcf\xf7\xd2\xfc\xb3\xbe\xde>\x9f\x9d\xf3\xa8\xb3\x04\xe9\xc3Bx\x8a\u007f]\x9a\x83\u007f\x88-\xa3\x0f\x82:K\x906,\x84\x8f\x17i|Dkf\x1e\xc7\x17\xfe\xc0\xf0\xc1Bx\xdbH\x13X>\x1f\x17b\x02\xc3\b\v\xe1ip\x91\x06\x80\xb4a!<.\xb5\aT\xc1B\xf8\x04b\xe3R{`Xa!<\xe1\xea\xc1@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!<\xc5\x17\x1b\u0083a\x85\x85\xf0\xf1\"\r2<\x18nX\b\x9f\xe8\xb34\xc8\xf0`8a!AtA\xa9\x19\x18VX\b\x1f\x13]Pj\x062\x04\v\xe1):\xba\xa0\xd4\fd\b\x16\xc2\xc7D\x1aH\x0e2\x04\v\xe1c\xcf\xc6\f\xa0\xd4\fd\x04\x16\u0093ݥ\xf6Pj\x062\x00\v\xe1\xed/\xb5\x87R30\xfc\xb0\x10>6\xd2\xf4\xa1\xd4\fd\x04\x16\u0093]\xa4A\xa9\x19\xc8\x00,\x84\xb7\x8f4\xc9J\xcdNΙ\x907\xfd@١\x88\x85\x91\xfdf\xfb\vZcV\x03Y\r\v\xe1m#M\xb2R\xb3cZUˮ\x05BDV\xf5E\xf6\x9b\xb5\xbaZ\x02\xa3\x03\xb8\x840\x90\xb0\x10\x9e\xec\"M\xb2R\xb3J\xb7\x9f\xc8_+b\xba)\xaduO\xfe\xe0\xe0\xd1%\xd1\xd3@V\xc2Bx\xfbH\x93\xa4\xd4lb\xbd\xbc=)\x82\xfb\xf0\x10v\xfdf4uq\xec2\x90\x85\xb0\x10\xde6\xd2$+5[R(˛\xfc{\xbbh\xb9\x18\xb7mY\xb8\xbe,(\xfc\xf5\\!r\xe4ų\xa95p\xb1\xd5)1\x1b\x01\xd9\x06\v\xe1ɶ\xe3)q\xa9\x19}R\x92S\xe99ܯ\x8f\xfe\xd28N\x94<\xef)\tԗ\x85\xf6\xf0\xed^\xefx\xa3\x04\xa4됷t\xba\xd7\xeb\xfd\x80@\xb6\xc3B\xf88\x91&a\xa9\x19ѵ\xe7\x1f\xd5D\xbe\x11ᵉ7\xf4=z\x89Y_f\x8d4\xb9\xc1\xaaVD\x1a`\xc0Bx\xfb7\x9e\x12\x97\x9a\x19\xdc\xda_iv}\xd4\xc9G\rf}\x19\x84\a\xf1a!<\xd9E\x9ad\xa5f\xed\x17\xe4\xad\xdfh1\x8b\xa8/\x83\xf0 >,\x84\xb7\xfd\xc6S\xb2R\xb3\xc2\x15\xc6]})E\u0557\xc5\x17~\xe7\xa7\x04\xb2\x1c\x16\xc2\xc7F\x9a\xd0\xf2\xf8\xa5fE\xc52\xc0\xf8\xa7.\xd2o\xb5\xa2.\xfd\xd0t\x92Y_f+\xbc[\u007f\xeeJ\xec9{\x90m\xb0\x10\x9e쾬\x9d\xac\u052cH\x14z\xdaZܹ\xb2\xb3L\x96\xcc\xef,\x95\xf5e\x96~\xb3\xfew\xbc\xde\xf1\xb5^\xaf\xb1\xdb\xf7h[Zܮ\xcfb7\x03\xb2\v\x16\xc2'\xb8.M\xfc\x06\x90Gw\xd6\xff\xccU0\xcf\xe8\xe8\xd3V\xd7\x06\xea\xcb,\xfdfGs\xcc\xe1\x0e9\xe3֊\xfc\xdc\xe9\xed\xb6\x1b\x02\xd9\x04\v\xe1\xe3E\x9a\x94K\xcd4\x0f\x01\x90\n,\x84\xa78ן\xe9K\xb5\xd4\f\u0083\x14a!\xfc\xa0\"\x8d\x15\b\x0fR\x84\x85\xf0\t\xceҤr\xa9\xbd\v^\xad\xf6]?\x01\x90\x1c\x16\xc2\xd3\xd0.\xb5\xb7\\?2\xd5>I6\v\x00b\"|\x82H\x83\xab\a\x83a\x85\x85\xf0C\x8c4\x00\xa4\f\v\xe1ih\x91\x06\x80\x94a!<\"\rP\x05\v\xe1\x11i\x80*X\bO\x884@\x11,\x84O\x10] <\x18VX\b\x1f/\xba Ãᆅ\xf0\x94\xe0\xb34\xc8\xf0`8a!<\"\rP\x05\v\xe1\x13\xec\xc9Qj\x06\x86\x15\x16\xc2S\xf4\x9e\xbcW\xdfۛ\xdfx\xdaP\xf1\xa1\xef\xa6,5#Dy0\f\xb0\x10>A\xa4A\xa9\x19\x18VX\b\x8f\x83S\xa0\n\x16\xc2S\xcc\xc1\xa9\xbe\xb3?\xbe}\xddڵkt֮Y\xbb\xf5u\x94\x9a\x81a\x81\x85\xf0\xb6\x97\xdaۼpn\xf5\\\x93\xea\xeai\xf1.\xd6\x01@Z\xb0\x10>6\xd2\xe8\xc3\r3\x8e\u007f\xf9\xf9\x97:\xfaͺ\x19(5\x03\xc3\x02\v\xe1\xc9\xf6\xea\xc1\x15\xe1E\x9bgɫ\a\x0f\xe0\xf8\x15\f\x15\x16\xc2\xdbF\x9a\x17f|\x18zdw}x\x00\x06\x01\v\xe1\xed#\x8d\xa5\xc8\xec9\xbbR\xb30\x91Mf\x01\x96\x8b\x1c\\Y\x0fD\xc3Bx\xb2\x8b4\xeb\xab{\xff\xf0\x8f\xffx\x8f\xfe\xdf?\xfbv\xcf\xe8|{m\xef\xdbk\xe3\xac\x1c\xd9d\x16Z\x88\x8bw\x80\x18X\bo\x1bi\xd6U\xf7\xad\xfb\xfb\xbf\xff?\xfa\u007fߗ\xa5f\xcd\vo6W\xc7߄]\xb1\x13\x84\a1\xb0\x10\xde>\xd2\xcc:\u007f\xf3\xec\xc7\xe7?>\u007f\xf62m\x9a\xf9\xb1\xaf\x93|\t>V\x03\xe1AJ\xb0\x10\x9el\x9b\xb8\x8dR3\xf3\x91\xedA\xeb՚\tūWOp\x19I=$\xbc\xff\x95)\xae\x87\x1b\x8c\xcb2i+\x9e\bW\x9d\x01 a!\xbcm\xa4\xd90\xb33\xf4𥙱\xa7%\xfb\x1f,l\xf0\x8c\xcf\xddY\xf9\xb2|\x14\x12~\xa9V\xbf\xb7^\xab\x95Cy\x11\xedƲ@\xd5\x19\x00\x12\x16\xc2\xdbG\x9a\x8a\xcf\xf5\xc1\x80\xb1\xf0\xa5Y\xb1o<5\x89\x93\xb2\xd6)\xa0sP\xf86\xd1\x16\xba\xd5&\xf7\x10\xf5\x94\x96\x13\x00AX\bOv\x91f\xd3\xc2'\u05ec\\\xf9\xeb_\xaf\\\xb9rM\xb5M\xa9Y]\xbe~\xf3Q\xb0\x978(|m\x99q\xf7\xa0\xdc\xc5k\xcf\xc8\xe1\x0e\xb3\xea\f\x00\t\v\xe1c#\x8d>ܷ\xf2\x97\xf3\xab\xab\x17>^]]=\u007f\xe5\xda\xd8k\b\xbf<\xf6\xaaܕG\xedፎ3\xa2*\xb9[\x8f\xa8:\x03@\xc2Bxۏ\a\xf7\xf5v\u007f\xd5ݽgù\xee/\xbb{{cW\xfa4\xa7\xf2ӓ\xa5偫\x06\x87\xf6\xf0\x93\xe4\x02\xffĥ\x14Uu\x06\x80\x84\x85\xf0\x14\xffK\xdckf\xc6\xfb\x9c\xfc1Q$\x84\xfbB\xe0QP\xf8\xbdB\x96\xcd7\x9a\xed\xadŷ䱭\xdbvu\x90\x9d\xb0\x10\xde\xf6\x1bO\x03}}\xbd>\xdf\xf6\xc7\xcf\xfaz}}6\xce\x1f\x1b\xbf\u007f\xaf\xf7\x82\xb1\x83\xb74\x99QMN]k]N\x8d\\\xac\x89\xca\xc3\xfb\xcb\xf3?\x8a]\x17d-,\x84\x8f\xf7\x8d'\xfd\x15p\xf0\xf5xץ9\xa4\xc9\xc62m\xfa\xa9\x88&3\xf2o+s\x95\x99\xe7\xe1\x1f\xf4,\x0eT\x9d\x01\x10\x80\x85\xf0\x14'\xd2\xf8\x88~=#N\xa9\xd9\x15ײ+\xb7o_?\xba \xff\xba\xdd\xd3\x00\xd8\xc2B\xf8x_\xe2\xd6w\xf9\xdb\x1f\x8f\xf3]\xa7\x96|\xf3p\xd5_\xd4f\xf74\x00\xb6\xb0\x10~0\x91\xe6X\x8eyB\xf2T\xce\t\xbb\xa7\x01\xb0\x85\x85\xf04\x88K\xed\xf9ks\x975\x1dhZ\x96\xbb\fuf uX\b?\xa8K\xed\xf9[+\x8b\xb5\xe2\xcaV\xf8\x0eҀ\x85\xf0\t\"\r\xae\x1e\f\x86\x15\x16\xc2\xd3 \"\r\x00\x83\x81\x85\xf0\x83\x8a4\x00\f\x02\x16\xc2#\xd2\x00U\xb0\x10\x9e\x10i\x80\"X\b\x8fH\x03T\xc1BxD\x1a\xa0\n\x16\xc2\x13\"\rP\x04\v\xe1\a\x11i\x10u\xc0\xa0`!|\xba\x91\x06Q\a\f\x16\x16\xc2S\x9a\x91\x06Q\a\f\x16\x16\xc2#\xd2\x00U\xb0\x10>\xe5H\x13h\xf7\xd39\xf8\xc6\xe7>\x1f\xda\xfd@\xba\xb0\x10\x9eҏ4\x9bf\xa3\x13\x04\f\x02\x16\xc2\x0f\"Ҡ\xce\x12\f\n\x16§\x1ci\xe4\x10\xed~`\b\xb0\x10\x9eR\x8e4}h\xf7\x03C\x82\x85\xf0\xa9G\x9a>\xb4\xfb\x81!\xc1B\xf8\xd4#M\x1f\xda\xfd\xc0\x90`!<\xa5\x13i\xd0\xee\a\x86\x00\v\xe1Ӌ4\xc9\xdb\xfdZ\xe4e\xc8&F\u007f\xbb{\u007fA\xab\xddd\x90U\xb0\x10>\xadH\x93B\xbb_\xd7!oޢ\x98\xe2\x8fVWK\xf4\"\x90u\xb0\x10\x9e҉4\xa9\xb5\xfb\x15\xad\x8e]\x86\vz\x00\x1e§\x17iRj\xf7\xb3\x13\x1e\x00\x1e§\x15i\x92\xb6\xfb\x19\x98\u0087+\xfd\xae\xe7\n\x91#/\x1dO˅\xb6s\xd5\x03\xae\xca\xe0\x95\xe5AV\xc1BxJ'\xd2$k\xf731\x85\xb7T\xfa\xb5{\xbd\xe3\x8d\n\x9c\xbf4\x8e\x13\x05\x9e\xdf\xe6-\x88]\t\x8c~X\b\x9f^\xa41\xda\xfdL\xec\xda\xfdL\f᭕~:\xb9\x81\xa2b-_\u07fb\xd7\x14خ\aF9,\x84O+\xd2$k\xf731\x84\xb7V\xfa\x91ExY\x00\xe5\xd1l\xd7\x03\xa3\x1c\x16\xc2Sʑf y\xbb\x9f\x89!\xbc\xb5ҏ,\xc2\xcb{\b\x9f\x9d\xb0\x10>\xf5H\xa3\xd3\xd7ۭ\xe3\x1b\x90\xb7v\xed~\xb7?\x90\a\xa9\x13\x8c=\xbc\xa5ҏ < &§\x1eiB\xcb_X\xf8y\x9c}\xfb+\xc2KtUl\xa3\xc8J?\x82\xf0\x80\x98\bO)G\x1a2\xda\xfd\xba}\xbe\u007f\x9bv\xc4\xd7m\xdb\xeew@\xcci\xd9U>\xe139\x0eW\xfa\xf5\xbf\xe3\xf5\x8e\xaf\xf5zo\xd0%\xafV\xfb\xae\xffD\xad\xe6E\xddY\x16\xc2B\xf8\xb4\"\x8dIo\xfc/q\xb7Lu\xe5W\xbdo\fÕ~Gs̢\xbf\x1d\xb4\\v\xff\xbd\xef\xd2o\x97\xc7\xdd\x04\x18\xb5\xb0\x10>\xddH\xe3#\xda\xf4\xf8Y\xfbv?\x00\x12\xc1BxJ'Ґ\xbcx\x01鑆l\x8eX\x01H\f\v\xe1\x877\xd2\x00\x10\x1f\x16§\x1bi\x12\xbc@\x00H\b\v\xe1)\xcdH\x13o9\x00\xc9`!\xfc \"\r.\xb5\a\x06\x05\v\xe1\x11i\x80*X\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!<\r5\xd2\\\xbe\xfcyg\xd4\x06\xba;/\u007f\xf5%^\x12 \n\x16\xc2\x0fc\xa49\xb8=ޗ\xfe\x00 &\xc2\x0fW\xa4\xd17\xb0i.\x0efA\x02X\bOC\x8d4a\xba;\xb1\u007f\a\t`!\xfc\xf0D\x9a\xbe>__\xdf\xf1=_\xeaw\x03\xb0\x1e\xd8\xc3B\xf8\xe1\x8a4:/=v\xd1f)\x00\x01X\bO\xc3\x17i\x06\xc2\xd7\xe1\x03 \x16\x16\xc2\x0f=\xd2諞\xde\xf3\x87\xed[7\xbfټ}\xeb\xd6\xed\xcd\xfbnگ\x06\xb2\x1d\x16\xc2\x0f=\xd2\xe8\xabn\x9f?k\xe6\xb4\x19\xd3$3\xe7W\\Ĺ\x1a`\a\v\xe1iȑF\x1fn\x98v\xf0\xf4{\xa7\xdf\xd39}z\xcd4\xb4\xfb\x01[X\b?\xf4H#\x85\x9f\x1d\xbe\x8a\xc1֊s\xf2\"\x1ep\x1eD\xc3B\xf8a\x894\x96\xb2\xb3\xbe\r3\xcfE\xaf\x03\x80\x84\x85\xf04,\x91fFHxZo\xdf\xee\a\x00\v\xe1\x87%Ҭ\x9f۽\xe7\xc7?\xfe\x89\xfe_E\xdf\xeb3??\xb2\xddw|k\xe4\xe7jNU\xba\nk\x0e\x14^\xa1Z!\x84\xeb\f\x81,\x84\x85\xf0\xc3\x12i\xd6UӚ\xaf}\xed\xef\xf4\xff\xbe%\xdb\xfdޘ۽;\xb2\x1f\xa4\xcd\xf5\xe8\xce\xc62!>\xa0\v^o\x83x'z\xab \x1b`!<\rK\xa4\x99}\xf9b\xf3\x9e}{\xf65\x1f\xa4\xcd3.v\x9e\x1e\xe8\xfc\xd0z\xf5\xc9ky\xf3n\x11u\x95\xea\xc2\xeb\xb4C\xf8섅\xf0\xc3\x12i,\xed~\x03v\x19\xbe.\u05f8<\xf6\x16ad\x19\b\x9f\xa5\xb0\x10~X\"͆Y\x17\xcd%\xfaͦ\x19\xe7\xe4\xa5V#6X\xfa\x84qwu\xcb-y\x17\x12\u07bf\xab\xdc\xf5\xc0\xea\x1e}tcq\xb1VRu\x92\xd0l9\x9aa!<\rO\xa4\tobsE\xcc\x1bO\xb7r\xb6X\x1f\x86\x84\xaf\xcdY\xb1w[\xc1T?Q\xabXv\xa0\xa9*\xa7\x1d͖\xa3\x19\x16\xc2\x0fK\xa4\xd9P\xbdn\xf3\v\x9bt^ش\xf9\x97\xb1\xed~\x9f\x88\x16\xebà\xf0\xadb\x97\U00068468\xa7\xa9K\xdf\xe1\x97͓\x8b\xd1l9Za!\xfc\xb0D\x9a\xe6\xc7\x1f\xab\x98aR\xf1\xf8\x93\x9fGo\xad\u007f\x9c\xed\x1e~ɤ\xfe\xdb:Ų\xd9\xf2jC\xe5\xa4X\x1a\b\xeeK\xe4\xd26\xf7\x84\xfc\xe92\xd8\xfb\xb7\x94j\x05K^+\xd5\xdch\xb6\x1c\xbd\xb0\x10~x\"\r\x00\xc9a!<)\x894\x000\x11^Q\xa4\x01\x80\x87\xf0\x884@\x15,\x84'D\x1a\xa0\b\x16\xc2#\xd2\x00U\xb0\x10\x1e\x91\x06\xa8\x82\x85\xf0\x84H\x03\x14\xc1BxD\x1a\xa0\n\x16\xc2#\xd2\x00U\xb0\x10\x9e\x10i\x80\"X\b\x8fH\x03T\xc1BxD\x1a\xa0\n\x16\xc2\x13\"\rP\x04\v\xe13\x1di\xf4\r\xbf\x8d:K a!|\xa6#\r\xfe\"\x80 ,\x84\xa7\xccG\x9a\xb4\xfe\"\x80\xd1\v\v\xe1\x15D\x9a\xb4\xfe\"\x80\xd1\v\v\xe1\x11i\x80*X\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0*\"͛_\r\xf8h\xa0O\xfeK\xeb\x95\x02F\x17,\x84W\x14i\x00\xe0!<\xa9\x884\x89g\xb7\x94_I\xf8\xfc\x90\xb8V\x1eqmz\xe0 ,\x84W\x10i\x0e\xee\xee;\xb2\xd9w\xe4%\xfd_\xef\xf1\xed136\n\x8f?bA\x1a͖\xcbEN\x93\xfd3_,+ʝ\xa3o\xd7\xffb\xceF\xfb\x19\x83\xe4\x13MLN6\a\xd8\xc2Bx\x05\x91慅7߬\xee6\xff\xed\xf9e\xf4\x84m9\xbb\xa2\x96\xa4\xd1ly\xc1k\\k\xd8\x06wᎥ\xb9\xd7\xe5h\xef\xb8m\xf6S\x06\x87\xff\xddZ\\\xd9xp\xb0\x10\x9e2\x1fizoҗ\x1f\a\xfeu_\x8cz\xb2C\xab\v\x0e\xaf\xba\xaf\x06\x87\xa9\x17\xfd\xc5\x11\xfe\x9a\xd8F\xfe.s\\\xaf\roC\x1a.\xe5=HX\b\xaf \xd2\x1cy\xa33\xfe\xf3\xb5\x85=\xc1\xe1)q*8\x1c\xb2\xf0gDkh\xdcUXk;g\xb0@\xf8A\xc2Bx\x05\x91fs\xf5\xf9\x81\xde8\xa7%\xfb\xf3\x9e6\a\xdbJ[?\x10\x1f\xec-}\xc5x\x14\x14>\\gI\x93\x03\xd7ٞN\xad\xfa\xed3\xe4\xd1o\xf5\xfc\xae\xadx\xa28\xbf\xea\x8c\x11\xe7w\x05\x02v\xff\x04s\xea\xaa\xc0\x0f\xa9\xcf\r\xbd\xa8\x02Xk2\xc7m[\x16\xdcBhh\xa9Ԍ\xe8ѼPS\x9c\xbf\b\x91f\x90\xb0\x10\x9e2\x1fi\x12\xfdE8!\xbc\xe6\xe0B\x8dxP\x94\x89E\x9f\x19\x8f\xc2E\u007f\xc1:K\xd2j\xbd:\xe5b#\xf5\x1c*Yv\x85\xae\xd4\xe7y\xf5̢\x89)M\x8de\xaeSf\x9c\x0f\x04\xec\x13\xdeF\xe1\xf1\x86*\x15\x0e\x89\xc3Q?6\xb2&\xb3\xe4yO\x89\xbe\x05\xcb\xd0R\xa9i\xed\xd1<\x93\xf7\xc0k-\x95\x02\xc2\x0f\x0e\x16\xc2+\x894\xf1\xff\"\xec\x15\x1f\x05\x87m\x9a\xd0\xda\x02\xe3\xa0\xf0\x96:K\xcf1}T+\x8c\x03P\xcf\x14\xfdf\xa9\x11T\xb4\xc9\xfa^\xb8\xa7\xb4\x9c\"\xbbr\xac\x91\x86.\x88\xe8S\x93\x115\x99\x13o\x10]/)\x8f\x18Z*5-=\x9a\xd3K{\xe4j\x10~p\xb0\x10^I\xa4\x89\xff\x17\xa1E|b\x0e\xae\xadҊE\xf1\xf8\xa7\xbe0\x1e\x852\xbc\xa5\xceR\x8f*\x8bǚgt.\x8c}\x9fn\xe5\xed\x97C\xed\x19y\xbbC\\K(|̹KkM\xa6q\xd4\xdc`l!4\xb4Vj\x86z4\xaf\x8b\x9d\xf2\xf9z\b?8X\bO\xceF\x9aw\x83fo\x9c\xb0\xe3\x94\xf8˶\"\xf3\xa4yPxk\x9d%\xf5\xccт{\xea\xca\xd5Ԗ\xdf/G\xe6A\xabW\x1cK |\xbb8D\x91\xc4\xd4dZ\xb6`\f-\x95\x9a\xe1\xed\xb6\x9b\xf9\v\a\xad\x83\x84\x85\xf0\x0eG\x9a\x9e\xd0Y\x96~\xe3,M\xbf\xf9\x1eTPxk\x9de\xd7\xf4\xf1\xc1\xc4C\xad\x13\xfa\xcdDC\x9aqd\xbaS\xdc\b\x88Yo#\xbcG\xeb\xa2H\"j2-[\b\r-\x95\x9aa\xe1\xbf\x10\r\xf2\xf9\xa5\x10~p\xb0\x10\xde\xe1HC\x8bJCo\xb3~\x96\xffYp\x18\x14\xdeRgym\x8aK\xee_[\xddry\u007fQk\xbe\x91hH+\xbe\xa5?|P.u=\xad\xcf}4Vx\xff\xe4\xaa\xe0\xf0\x93\x8d\x1d\xd1\xdb%\xadH\u007f9tMrG\f-\x95\x9a\x96\xbf\x1c\xe5%z\xee\xf9h<\x84\x1f\x1c,\x84'g#\r\x9d\xc9\xf9m\xf4\"K\xb3e\xb8\xce\xf2z\x99\xd8(O\xd3\xc3Zj\x06\xd4\xc1Bx\xe7#M\xfa\fg\xa9\x19P\a\v\xe1Gb\xa4\x01#\x13\x16\xc2\xd3ȋ4`\x84\xc2B\xf8\x91\x18i\xc0Ȅ\x85\xf0\x884@\x15,\x84'D\x1a\xa0\b\x16\xc2#\xd2\x00U\xb0\x10>ӑ\x06\x80 ,\x84\xa7\fG\x9a\x01\x94\x9a\x81\x00,\x84\xcft\xa4I\xf7\x05\x02F/,\x84W\x10i\xd2z\x81\x80\xd1\v\v\xe1)\xf3\x91&\xdd\x17\b\x18\xa5\xb0\x10\x1e\x91\x06\xa8\x82\x85\xf0\x884@\x15,\x84'D\x1a\xa0\b\x16\xc2#\xd2\x00U\xb0\x10\x1e\x91\x06\xa8\x82\x85\xf0\xa4 Ҡ\xd4\fHX\b\xaf(\xd2\x00\xc0Cx%\x91&\xf1n\x1d\xa5fY\x02\v\xe1)\xf3\x91\x86g\xa9YRⴞ\x81A\xc3Bx\x05\x91\x86g\xa9Y\x98\x03\xc7Ȏ8\xadg`а\x10^A\xa4aZj\x16\xe2\xd1%\xf6\xcbq\x01\xa7a\x86\x85\xf0\x94\xf9Hý\xd4l\xea\xe2\x84O\x83ႅ\xf0\n\"\r\xc3R3\xf2V\x96hEsJ\xfc\xc6\xc6$S\x88N\x8e\x13\xa2\xfeL\xcd\xc4\xdc\xca\xdb\xf1ZϮ\xd6L(^\xbdz\x82k\x10W\xc3\x04<\x84W\x10i\x12\xbd@\x1c*5;:vi\xcb\xfe\x9dE\xe26u\x1d\xf2\x96N\xd77\xfc\x81,\x94j,)\xcd+YU3\xf6\xd38\xadg\xfd\x0f\x166x\xc6\xe7\xee\xac|\x99@\xfa\xb0\x10\x9eTD\x9a\xf8/\x10\x87J\xcd\x1a\n\xe4\xb5X\x1b\xf2\x8d\x98n\x894S\x85\xfb\x06\xf9o\x98\x0fb[Ϛ\x84\xfeǦ!\x9c\xbc@Z\xb0\x10^I\xa4\x89\xff\x02q\xa8\xd4\xec\xb3\xe2\x89+v\x9e\xf0\x1b-Q\x11\xc2k\x9f\x86'Ŵ\x9eQ]>\xc9K\xd3\xe3\xec\xcd\xe0`!\xbcÑƩR\xb3\xeb;\x16O\x16E\x1bc\xf6\xf0S,sb;q^\x1e{U6$`\x0f?8X\bO\xceF\x1a\x87J\xcd\xda\xeb\xf4\x9fs\xbd1\xb7A>0\x84\xdfi\xecڧ.\xb2L\x8a\x15\xfeӜ\xcaOO\x96\x96\xe3|\xe5\xe0`!\xbcÑơR3\x8f0^;n\xa37ǭ\xaf|\xc5L=\x11g(c\x85?&\x8a\x84p'>\xab\x0f\xe2\xc2Bx\x87#\x8dC\xa5f\x1e\xe1\xaaom\xa9\x15Fo\x8eG\xdb\xd2\xe2v}F\xb7\x0f\x1b'l>\x91\xcb\xec[ώ\x8d\u07ff\xd7{\x01;\xf8A\xc2Bxr6\xd28Tj\xb6k\xba\xa7D+t\x9b=Q\xb7V\xe4\xe7No':i6\x9d\x19\u007f\x0e\xec[\xcf\x0eir\x996\x1d!~P\xb0\x10\xde\xe9H3\x92Jͮ\xb8\x96]\xb9}\xfb\xfa\xd1\x05\xf9\xe8\x1f\x19\f,\x84w:Ҍ\xa4R\xb3\x16\xf3\xbc=\xf9\x8bBG\xcf \rX\bONG\x9aA\xe0T\xa9ٱ\x1c3˜\xca9\x91d&\xb0\x83\x85\xf0\x8eG\x9a\xf4q\xac\xd4\xcc_\x9b\xbb\xac\xe9@Ӳ\xdce\xc3\xf6G#\xab`!\xbc\xf3\x91&}\x1c+5\xf3\xb7V\x16kŕ\xad\xf0}P\xb0\x10\x9eF`\xa4\x01#\x13\x16\u008f\xc0H\x03F(,\x84\x1f\x89\x91\x06\x8cLX\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1)Ñ\x06\x80 ,\x84\xcft\xa4\x19@\xa9\x19\b\xc0B\xf8LG\x1a\xfcE\x00AX\bO\x99\x8f4i\xfdE\x00\xa3\x17\x16\xc2+\x884i\xfdE\x00\xa3\x17\x16\xc2#\xd2\x00U\xb0\x10\x9e\x10i\x80\"X\b\x8fH\x03T\xc1BxD\x1a\xa0\n\x16\xc2\x13\"\rP\x04\v\xe1UD\x1a\x94\x9a\x01\t\v\xe1\x15E\x1a\x00x\bO*\"M:\xb3\xc1\xa8\x85\x85\xf0\n\"M\xdcR3\xef\xd8\xc0ŕƟ\x8c\xbb~\x98\x93s&\xe4M?Pv(y\xebY\xfc\xaa3\xe0$,\x84W\x10i▚\xdd:T8G^>o\x97H\xe1:/Ǵ\xaa\x96]\v\x8c֏d\xadg\xf1\xab\u0380\x93\xb0\x10\x9e2\x1fi\x12\x94\x9aM4.\x98\xf7Q*\xc2W\xba\xfdF#\x82\xb9\xefNR\x02\x05\xe19\xc2Bx\x05\x91&A\xa9\x99)|\xff\xb6\x1b\xf1&\x84\x99h\\z\xe9d\xa0\x8d\x00\u008f@X\b\xaf \xd2$(5\x9b\x18\xb8$jD\xa1\x18\xf9_\x99\xe2z\xb8\xc1O\xb7\x8b\xb4\xdf\x14\x17\x1fX\x91\xef\xee\"ZR(/\xfb\xe5\xdfk^\xeaݦ\xf5,\\T\xa6\v\xffT\xa8\x87\f\xb0\x81\x85\xf0\x94\xf9H\x93\xe0/\xc2\xc4ڞ\x9e\x97e?SD\xa1\xd8R\xad~o\xbdVKt O\xacr\x8b\t\x1b\x8b^&\xfa\xa4$\xa7\xd2s\xb8?\xb0\xa2M\xebY\xb8\xa8L^D{rcKт8?\x158\x03\v\xe1\x95D\x9a\xb8\u007f\x11&\xcas4\x85\xe68T(\xd6fDz㶰\x86\xf6\x8aVZ*\xff\x10\\{\xfeQM\xe4\aN\xbfش\x9eY\x8bʴ\xc2/\x88j\vb\u007f p\x10\x16\xc2+\x894q\xff\"L\xacjo_\x1a\x14>X(VkV:=\xa8\xef\xe2\v\x1b\xe9]\xd1EOט\xcf\xdc\xda_)\xf6\x1a#\x9b\xd63kQ\x99&_!\x81\xba'\xc0\x05\x16\u0093\xb3\x91F\x17\xf3\xd4Ns\x1c*\x14+7\x1bj\xaa\xf4\xa8S\xd8F\xed\xba\xb6u\xba\xf0\xedF\"\xf7\a\x9e\xb4k=\xb3\x14\x95Y\xfb\xcd\x00\x17X\b\xefp\xa4Y\x16\x1e\x87\n\xc5j'Ig\xfd\x13\x97F\b_\xb8\xc2x\xb2\xbeԸ\xb3i=\xb3\x16\x95Ax\x8e\xb0\x10\xde\xe1Hc\x15~q`\xb0W\xc8\xce\xf7F\x19^,\xc2\x17\x15_ӗ\xfa\x03/\v\x9b\xd63kQ\x19\x84\xe7\b\v\xe1\xc9\xc1Hs\xeb\x9d\xc29\x87\xccӌ\xd6B1\xaaɩk\xad\xcb\xd1%?\x95\xffrO\xa3v\xb2\xa7\xc6}\x81\x8aD\xa1\xa7\xadŝ\xfbQ\x9c\xd63KQ\x99\xb5\x87\f\xf0\x81\x85\xf0NF\x1a\xe3\xb34f\xb7\xb6\xb5P\x8c\xfc\xdb\xca\\e\r~\xf2\x17\tј'\\MḄGw\xd6\xff\xccU0O\xd6\xf5ٶ\x9eY\x8aʬ=d\x80\x0f,\x84w6Ҁl\x82\x85\xf0\xe4`\xa4\x01\xd9\x05\vᝌ4 \xbb`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!ӑF\xe7\xf8\xbe\x81\xe3\u007f\xf0\x05\xfe\xbd\x9elv\xf2\xce2\vޱ\xa2\xdcO-B\x8cݟl\xaay\xad\xa7\xdad\xb3@\xe6`!Ҭ\x99ֽ=\xf0\xef\xab7\x9eL\xb6B\xf2\xce2\v=\xfbE\xae\x97\xbaZ\xc4\xfe\x9edS\xe9\xf6;\x0f\x97y?K6\vd\x0e\x16\xc2+\x88\xc7O\xf3\xe3\x00\x00\x0e\xfdIDAT4\x83 I\x85S\x98.Q\xa3\xef\xb4?\x11]\xc9&J\xdc\xeed3@&a!\xbc\x82H3\b\xd2\x10~\xbf\xab\a\u008f\fX\bO\x19\x8e4\x89h\xd2C\xb5\x87<\xc2(_\r6\x99\x19\x04\x84_.rv\xd1'\x9a\x98\x1c\xd9oF\xfe]\xe5\xae\aV\xcb\x14\xd3%>\x99\xdab\n\x1f\xea7\x8b7\xd7*|h\xe9r\xa1\xedD\x01\x9a\x1aX\b\xefd\xa4\xe9\xf2\xe6\xd5_\xa1+\xf5\xf9\xde.K\x93\x99$ \xbc\xd10\xec\u007f\xb7V\x8b\xec7\xa3ڜ\x15{\xb7\x15L\xf5\x1b\xc2o\x9bc\n\x1f\xee7\x8b3\xd7*|h\xe9_\x1alj\x02\xcfo\xf3P\x80\x96yX\b\xefl\xa4\xa9]\xa2\xdf\xd4\xdcof?\xd7\"\xbcu\xa9\xb6\x94\xd0\x16\xa2\x04\x16\xc2;\x19i\xf4\xb8=\xa1\x85Z\x8adܰ4\x99\x91\xbd\xf0\xe1\xf6\x9b\xb2@!\xc2\xfcp\x99Wg\x87.|x)\n\xd0\xd4\xc1Bx\x87#\rmѶ\x98\x83`\x93YDg\x19\x9dq\xe7\xe6U>#\xc42k\xbf\x99\xbe\xdfvOȟަ\x1f\xf4\x8e\x95\xe7\xf0\xfd\xe5\x85~K\xbf\xd9t\xfb\xb9\x81\xde4!r?\xb0,E\x01\x9a:X\bO\xceF\x1a\x90E\xb0\x10\xde\xe1H\x03\xb2\b\x16\xc2;\x1di@\xf6\xc0BxB\xa4\x01\x8a`!<\"\rP\x05\v\xe1\x11i\x80*X\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!\xe5H\x13\x8e1_\x9e\x8e\x9e\f@\n\xb0\x10\x9eR\x8d4\x92\x8bG\xf6\xed۷砼\xddw\xf08\x92\xed\xf1\xb5\x03\xdbg\\>\xbd\xa7\xef\xf4\x1e\xcb\xca\x1e\xa1\xb5\xe8w{]\xc2\x13\xb3\xbdh\x96\x8b\x9c\xa6ds\xc0肅\xf0iE\x9auմ\xe6\x8e;\xbe\xa6\xffw\xb7\xafyF\xf7\xeb\x15\xddoL;\x1b~Q\\\xadq\xc9\xda0wn\xcd\xd5\xc8-\x1d8F\xd1\x18%\xdb \xab`!|Z\x91\xe6\xb9\xc7>?\xfe\xec\xda\xff\xfb\xf5\xeag7\x0fl\x9fy\xf1\xdc\xc1\xbes\aoZV\xaa\x9b\xe3\xbaN\xd7r\xe7\xd4Em\xec\xd1%\x14\v\x84\xcf6X\bO\xe9D\x9a\x17f\xc87Y\uf2db\xe1\xebj\xdcM\xb4\xab\xb2&Z\xf8\xa9\x8bc\xa6B\xf8샅\xf0iE\x9a\r3?\xd6\a\xff\xfc\x8d\x83d\x9e\xa5\x89~\xaf\xb5\xae\xa6a\x01\xcd\xd9!\x85\xbf\xb1\xb8X+\xa9:\xa9/l\r\x94\xe7M1\xa6\x9cYT\xa4\x15ι\xa0\x8f\xb4\xa7V=઼@ [`!|Z\x91f\xc3\xec^}\xe03>K\x138\x0f\x1fA]\xcd\x05\xd7\x17\xe3/I\xe1[Ų\x03MU9\xedD]\x87\xbc\xa5ӽ^\xaf,\x8b\xa4\x03\xae)/\xee\xf7\bYU\xa9\x89ɍ-E\v\bd\v,\x84\xa7t\"͆Ƕ7\xefn>rz\xdf\xee\xe6\xe6'm\xdei\xad\xab\xa1\xb2e\x8f\x92\x14\xbe\xa7\xa9\x8b\xc8_6\xcfX\x1e\x8a4=%\x95\xb7\x88\xfa\x9b\xae\xe9c\xad\xf0\v\xa2\xda\x02\x02\xd9\x02\v\xe1ӊ4o̝9\xed\x11\x93i\xd5\vc?K\xa3\v\xff\xa2\xd8h\bOW\x1b*'\xe5\x892cyH\xf86q\"4Y[F\xa8|\xcf*X\b\x9fz\xa4ѹ|\xfc\xa0\xce\xdbo\xcb\xdb\xe36\xdf{҅\xbf\xfa\xd4\x15C\xf8\xf6\u0092\xa7[\xbc\xee(᷈\x9e\xd0d\xe3\xa0\x15\xc2g\x11,\x84\xa7\x94#M\n\xe8\xc2K\xa4\xf0\x93˥ڋ,\xc2\xef\xfc\x94h\xbf\b\x9f\x91\x87\xf0\xd9\x06\v\xe1S\x8f4)`\x11\xbed\x91>\xf0?l\n\xefv\x13]\x11M\xfa\x01l\xa1\xbb_\u007f\xbcb\x15A\xf8샅\xf0iE\x9a$|Q㾤\xdf]r\xd7|A\x1e\xb1\xb8\xe1\xf9\xa9\xa2\xe8\xc5wIj\xbd\xa5\xc5\xed\xfaL\x1f\x1d\x18\xff\xe0\x8e\xb6\x15b']\xf2j\xb5\xef\xfaO\xd4j\xdeKI\xb6\nF\v,\x84\xa7a\x8c4\x1e!\x9e\xd0\xef\x96\t\xe1!\xff\x96R\xad`\xc9k\xa5\x9a\xfc\xb0\xc1\xad\x15\xf9\xb9\xd3ۍ9\x1f-.\xce+o\x91\x9f\xa5\x11B{ߥ\xdf.O\xb8M0z`!\xfc\xb0F\x1a\x00\x12\xc0B\xf8\x94#\r\xec\aC\x84\x85\xf0\x94j\xa4\xe9L/\xcf\x03\x10\r\v\xe1S\x8e4i\x1e\xc0\x02\x10\r\v\xe1S\x8e4\x10\x1e\f\x11\x16\xc2S\xaa\x91\x06\u0083!\xc2B\xf8\x94#M7\x84\aC\x83\x85\xf0)G\x1a\x00\x86\b\v\xe1)\xd5H\x03\xc0\x10a!|ʑ\x06\x80!\xc2BxD\x1a\xa0\n\x16\xc2\x13\"\rP\x04\v\xe1\x11i\x80*X\b\x8fH\x03T\xc1BxB\xa4\x01\x8a`!<\"\rP\x05\v\xe1\x11i\x80*X\bO\x884@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!\xa2\xb7\x18d\a,\x84\x1fd\xa4\t\to) n\xaf\xd3U\xbfޘ\xdb\x10Q\xd8Z3阁qF>\xd4P\x1c\xd1[\f\xb2\x03\x16\xc2\xd3\xe0\"MHxK\x01\xb1G\xb4\xc9\xe7\xdc\xcb\"\x84o\x13ƻ\xb2\xf5\x1b\x8d\xe7\x82\r\xc5\x11\xbd\xc5 ;`!\xfc`\"\x8d\xb5T\xd8R@\xec\x11\xae\xfa֖Zq \xa2\xa1\x98\xea\xc6ִ\xe8K\xe5\xa1k\xb8\xa18\xa2\xb7\x18d\a,\x84\x1fL\xa4\xb1\x96\n[\n\x88wM\xf7\x94h\x85\xee\x03\x91\r\xc5\xfa>\xde=!\u007f\xba\xb1\xf3\x0f7\x14G\xf4\x16\x83쀅\xf04\xa8H\x03@\xfa\xb0\x10~0\x91\x06\x80\xc1\xc0B\xf8\xc1D\x1a\x00\x06\x03\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!\x10i\x00\xc88,\x84'4n\x03E\xb0\x10^\x8f4\aw\xf7\x1d\xd9\xec;\xf2\x92\xfe\xaf\xf7\xf8v\xeb\x93\xc7r\x8c\xf2\x8e\xd8\xee\xb1-\xe3\u007f+\xef\x92Vr\x03\x10\x86\x85\xf0\xfa\xce\xfd\x85\x857߬\xee6\xff\xed\xf9\xa5\xf5\xc9\xdb\xefx\x1b\xc4\x16\xef;\xfd\xd1k\x95iF\x95A\xd2Jn\x00°\x10^\xa7\xf7&}\xf9q\xe0_\xf7Ũ'\xdb\xc5;\xb1kt\xe5\xd4\xe4t\x19#\b\x0fR\x86\x85\xf0\xc6\x1bO\x9d\xf1\x9f\xb7\x15\xde+\x8e\x89\x03\xc6\b\u0083\x94a!\xbcq\x96\xe6\xfc@o\xbcӒ!\xe1\xc35\xdbD\x9eb*6M\xd7V֊o\x11\xf5?莜\x00\x80\r,\x84\xa7D\x91&\xf0N\xeb\xe1~\xb2\xd4l\xf7\xb4\x89\xfa.\xea\xfa\x8dh\xbb%\xcf\xd2T\x1e\xde_\x9e\xff\x91u\x02\x00\xb6\xb0\x10>a\xa49\x11\xfe,M\xb8f{\xffX!\x9a\xa8E\x88\xb1\xfb\x89\x1e\xf4,\xce+\xae\x91=\xf3\xe1\t\x00\xd8\xc2B\xf8d\x91\x06\x80ႅ\xf0\x84o<\x01E\xb0\x10>\xd9Y\x1a\x00\x86\v\x16\xc2#\xd2\x00U\xb0\x10\x9e\x10i\x80\"X\b\x8fH\x03T\xc1BxD\x1a\xa0\n\x16\xc2\x13\"\rP\x04\v\xe1\x11i\x80*X\b\x8fH\x03T\xc1BxB\xa4\x01\x8a\x80\xf0 \xab`!<2y\xa7g\x99M\xb3\xcf!Ҁ\xcc\xe3\xac\xf0\xbeШ\xf3\\x\f@\xc6pVxyb\xe6\xf8\xeeM\x1b\x9e[\xff\xec\xda\xf5ϭ\xdf\xf0zs7\xceՀL\xe2\xb0\xf0z\x8aٺp\xf6c\xb3fUϟ=k\xd6c\xd53.\"\u0600L\xe2\xbc\xf0\x1b\xa6\x1d9\u007f\xf6\xfcM\xba|\xf6\xfc\xf9g\xa7!Ƀ\x8c\xc2@\xf8\x8a\x9b\xfa`\xdfJ\xf9pkŹ\x81^\x94\x9a\x81\xcc\xe1\xbc\xf0/\xcc\xfcP\x1f\xfc莃\xfa\xa3\xe7f\x9eK\xb6\x06\x00C\xc1y\xe17\xcc<\xab\x0f\xee\xbfCޮ7\xc6\x00d\f\xe7\x85_?\xb7{\xf7}\xf7\xde\xfd\xb5\x1f\xdc\xf7\xf3\xbe7ft\x1e\xdc\xe0;\xbe9jV\x8b\xbc\x12\xd3\xc4\xe8+\xa4\xee/h%\x00\xd2\xc3y\xe1\xd7U\x0f\xac\xfd\xc6\xd7\xff\xee\x8eo|\xe3;\xbe\xe6\x19ݻ\xa3K\xcdt\xba\x0ey\xf3\x16\x9d\x8a^\xb7\xd5\xd5\x12\xbd\b\x80$8/\xfc\x86\x8a\x8b\x9dǏ\xdf\xfb\xf5\xed\xc7ߣ\x97f\x9e\xef>Oݗc'\x16\xad\x8e]\x86\x8bb\x83\xb4q^\xf8\x17f\x9c\xd6\a\xf7\xca\f?\xb0~V\xbc\fo'<\x00i\xe3\xbc\xf0\x1bf\xc9\x1d\xfa\xac\xefI\xed7͌wZ\xd2\x14\xde\xff\xca\x14\xd7\xc3\rr\xcf~=W\x88\x9cF\xb9l\xb9\xd0v\xaez\xc0Uy!v%\x00\xa2a |ŗ\xa1\x87\x9b+\xe2\xbd\xf1d\n\xbfT\xab\xdf[\xaf\xd5\xcaa\xbb\xd7;\xdeh\xfe\xf8K\xe38Q\xe0\xf9m\xde\x02\xdb\xf5\x00\x88\x80\x81\xf0\xf3\u05ec\u007fv\xdd\xd6ן{v\xdd\xfa\xf9\x8f\xc4\xfb\x1a\x88!|\x9b\xd1w`\xde\xea\xe4\x06\xfaY\xb5|}\xef^S`\xbb\x1e\x00\x118/\xfc\x9e'\xab\xe7Ξ]QQ1{\xf6\xdc'Wv&\x12\xbe\xd6蚧\ak\xcde!\xe1\x97\xea7\x1e\xcdv=\x00\"pXx\x9d\xde\xce\xcb:_\xf5~\xae\xdfv~\x15o\x96!|y\x951\xae*7\x97\x85\x84\x97\xf7\x10\x1e\xa4\x82\xf3\u0093\xf1!\xe1͏w\xc6\xf9`\xf0\xed\x0f\xe4A\xea\x04c\x0f?\xc9hh\x9d\xb8\xd4|\x06\u0083\xb4q^\xf8\x01\x9f\xaf\xdb\xe7{|\xda\x11_w\x9f\xcf&ϼ\"\xbcDW\x8d\x82ʽB\x9e\x97i\x14{\xcdg \xea\u007f\xc7\xeb\x1d_\xeb\xf5ޠK^\xad\xf6]\xff\x89Z\xcd{)\xce\x16\x00\b\xc1Bx\x1f\xd1\xf6'\xcfR\x9c/\xf9\xb5Lu\xe5W\xbdo\f\xfd\xdb\xca\\e\xc6y\xf8\xa3fՙ\xd8A\xcb\xf5[\xed}\x97~\xbb\xdc~}\x00°\x10\xbe\x97H\x8f4\x84\x8b\x15\x80\x8c\xc3BxJ\x14i\x00\x18FX\b\x8fK\xed\x01U\xb0\x10\x1e\x97\xda\x03\xaa`!<\xe1R{@\x11,\x84G\xa4\x01\xaa`!<\"\rP\x05\v\xe1\t\x91\x06(\x82\x85\xf0\x884@\x15,\x84G\xa4\x01\xaa`!@=BDAGHF\x00f\x00JLI\x00j\x02\x03l\x04OQN\rp\nSUR\fr\x17VXU,`\xae7]\xad8^\xae\x16w\x1d[]Z8a\xaa:b\xab;b\xact(\x14\n\xa2և\xa1\x8c\xed<\x86\xe1\xa9y\x06\xa4)jU\bJ\xad\x04\x19\x89ЂR\xadB\x88$s~\xf7ܿ\xe7\xde=w\xef\x9eݻٽ\xbb\xef\x97#\xb9{\xf7s\xce\xf9\x9c\xb3{\xde{\xef\xb9w\xf7\xadP\x00\x00H\x18\xc5/\x00\x00\x00l \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t|$\xe3\x18\x00\x00p@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12\xc8H\xc6\a\xbf\xf7\xa8D\x8a\xdf6\xce\xf8?ђ\x8a;\x9ey\xdf/\x12\x00\x90u$.\x19\x9f\xb4\\\xb5Գ\x9a\x84\xd9\u007f\a1\x19\xd7\xe2\x17\f\x00\xc86\x12\x96\x8c\xdf\xcf$$u\xc9\xf8`\x06\xe1X\xe1\x17\x0e\x00\xc82\x12\x96\x8cz\x12\x84d,aJQRS?\xb7\x82mD\xff\xe0\x17\x0f\x00\xc8.\xfaY2&\xab\xb5,\xf8@\xdd8\xfc8ӌF\xbfx\x00@vѿ\x92\xb1\x9f\xe9\xc4\a\xfa\xf6lusF\xfcp\x00@\xb6\x91\xa0d4\x9a\xcb\x0f\xcf/P\xff\xb9Y\xdf\xf9[u\xb3X\x15\x80(!\x15\xc7\xf67M+.\x9b\xfb\xbcY`\u007fӍ\xe3\x8a+\xeb\xff\xcbٚ&\x19F\xcc\U000cd34dKD\xc1\x875-Yqm\xb4\xa2\x9e\xe9T\x9d\xbe\xf7\xad\xd1\xea\xf6[q\xa3?9\x06\x00H3Ғ\xc1tb\xf4~kg\xfd1]2~;Y\u007f\xbe\xfe\xb0\xf6ԆqF|\xeda\xbe\xb5O\xd8\x12Fq\xa3\xebb\xad+X\x13\x81\xc7\xd8\xe3\x9a\xff\"\xba(\xa9,e\x8f\xe3G\x1f\x03\x00\xa4\x1bi\xc98VE\xccK\x1d\x15D?dP%c\xc2D3\xe0^\xf6\xcc\xf3\xa3͇\xa4\xc6\xf1ٿT\xdfY1\xff\xb9\xb7\xac}\xee`&\x02\x13\xb4}\xab>\xb9V\xfdW\xbf\x16{\x83\xba\xb5&~\xf41\x00@\xbaIP2\xfe\xf0\xfc\xadꤼ\xf7\xf9\xe7\xf7k\xb3^;3\xf9ou\xe3*\xf6I\x1fe\x13\xb6l\xe9\xf3͕lC=a\xf8\xa0L\xfd\xfb\x9du\xbf}z\x82\xfa\xb7\x99o\xee\xf0\xcdք\xbf\xf1\x19\xfd\xf0!&\xf8\xb0\xf6t\xd1w\xa6\x16\uedcf-~ϔ\xe1\xb0O4\x00 \xdd$(\x19\xdc\xf2'[T\x18͎\x11\x9a\x88qɃI\xc6D\xb6g?ӌ\xdac\xc7V0E`b\xf2[5v\x9a\xa3\xbd\x0f\xe6[\x9aA*\xb4刘`M\x04Jԓ\x97\x9dj\x8dEFc\xec0\xe7\xff\xf9E\x03\x00ҍ\xbcd\x1c\xab!\xfa\x99\t;i\xd0V%\xa2\xd6S-\xeaV\xe9'Z\x84~\x9a\xf0\x1du\xeb\x0f\x8e\x06\x8f\xfd\xfe_\xad\x93\x98\xe8o\x8d\xea\x1c\xc1\x9a\b\xfc\xab\x11]\xabn?\xad\xee\x9bl4\x16?\x1a\x00\x90f\x92\x90\x8c_\xa8[\xb3\xf5S\x85\x1b\xb4\x1dL2\xfe[\xdbz\x8b\xcd߷\x8e1M\xa8kdLS\xb7~\xe1n\xf3\x93\xff^ZS\xa2iƵ\x9f\x1c\x8b\r\xd6D\xc0,\xf4<\xd1.\xc5\x1a\u007f\xfc\xa2\x01\x00i&\t\xc98\xd1\x00\x804\x93\x84d\x1c\xfbWm\xb2N3V\x19t\xc9\xf8\x83\xb6\xa5\xcdߝ\xaey\xcd\xdd\x00\xf6\x8b\xa5\x8d\xf5\xe6\xad\x1b\xfbK\xb4jb\x83\xb5=\u007f0\x8b\xb0[̗\x1c.1.\xb6\xfaE\x03\x00\xd2K2\x92\xc1.\x95\xdc\xfc\ab\xdd\t\xc1$C\x17\x02\xe3Ą\x89\x81\xeb&.\x1dv\xc7g\xbd\xf9\x80]6m:\x16\x1b|X\xafĀ\xad\xb6\xde\xf0\xbcU\xce'\x1a\x00\x90^\x92\x91\fv\x80Aء\x86\xf1\xedu&\x19\xffO\xdbb˟e\xfa\xca\xe4O\xb5\x1d\xff\xe5\x9c\xcc\xecd\xc6\xfc.\xda[\xac\xd8\nA\xb0K\x04\u0602\xe7͖P\xf8E\x03\x00\xd2J\u00921_?&\xd00n\xc8*1\xee\xecds?ʖ\x13>\x98\xaa\x1f\r\xb0\xaf\x9cMf\xe7\x11\xea\xf1H\xe9\xcd\xdc\xfd\x12\xecЄThG$\xbfg\a\x19d\xa7 X\x13\x01\xbb\xd0/\xf4\xc6*\xf5[\xc2\xfc\xa2\x01\x00i%a\xc9`G\x15\x13\x97\xfc+\xbb,z\xec\xadBm\x16\xcf7\x9e\xd2n\xe5*nZ\xb7\x82\xdd\x18J~k,S\xccx\xfe\xad\xe7\xd9ڥ\xe3>\xeez\xad`\xf9\xcds\xa7j\x1bs\x8f\t\x82]\"p\xb8L\v}\\\u007f\xe4\x17\r\x00H+\tKF\xb36q\x8d{9\xe7j\xdb\xe6\x9a\x02\x93\f\xfd\xa2)1\xceP\x9e#\x16\xe3\xfe\xc07\xf7\xfe\r\x84\xa3j\xbf(\xd8-\x02?d\x8fG\x9b\xe7\x1e~\xd1\x00\x80t\x92\xb0d\xbc\xaf߀\xa5\x9f\x9bh'\v\xe5\xe6\xb7G\xb4\xe5\xcf*}\x1a/\xd0OV\x9aM\t\xf9?\xbfu\xb6\xb7\xbfΞ\xf2s\r\x19p\x05\xbbE@;\x9b\x99k=\xf4\x89\x06\x00\xa4\x93\x84%\xe3\xd8\x1f\xea'G'\x1b\xdfng\x17=\xc9\x0f\xcdg\xb4\x8b\xac\x1f4M\x8dr_~\u007fkɌ\xb2\xa2\t7/\xfd\xe0\x98\x9b\xdf7~gr\xb4\xb8\xe2;?\xb4\xc5\xc4\x19\x1c#\x02\xec\xeb-\xeb\xec\x87>\xd1\x00\x804\x92\xb8d\xf0\xecd\xf3\xd4\xfa\n\xbb}_\x06\x00 \xc7IJ2>ak\x19\xf6\xd7\xcd \x19\x00\xe4\r\xf2\x92\xf1\x8b_<\xc7n\x95\xe0\xee\x03\x87d\x00\x907\xc8KF\xad\xbe\xf8Xa\xff\xdc\x16$\x03\x80\xbcA^2\xfeUS\x8cq\xdc7\xc1 \x19\x00\xe4\r\xf2\x92\xd129Z<\xad\x81\xbfE\x1b\x92\x01@\xde /\x19\x00\x80<\x06\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\xc0G2\x00\x00\x80\a\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90 e\xc9\xf8\xfcD\x17\x00 oHQ2\xbe\xf4\xab\x1f\x00\x90S\xa4&\x19P\f\x00\xf2\x8c\xd4$ïv\x00@\x8e\x91\x92d|\xeeW;\x00 \xc7HI2\xb0\xf2\t@\xbe\x91\x92d\xf8U\x0e\x00\xc85 \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\t\xd0\xe9\x17\x00@\xde\x00\xc9\xf0c\xef\x94A\xcax\xbf \x00\xf2\x05H\x86\x1fC\x87>\xbcr\xb7_\x10\x00\xf9BVH\xc6\xf6\xb1\x03\a\x8cZ}\xf1Z\xbf\xb8L\xb0]Y\xe9\x17\x02@\x1e\x11\xb0d\xac\xde\x14\xbbϗM\x91+\x9e\\<^Q\x9e\xf0\v\x94F&\x1d\x8f\xd8MJV*\x19\x00\x19\"`\xc9\x189)v\x9f/c/g\xffNI\x83dȤ\xe3\x11\v\xc9\x00\x80'`\xc9\x18.1G-\x86\xdc\xc6\xfeݮ<\xe9\x17(\x8dL:\x1e\xb1\x90\f\x00x\x82\x94\x8c\xe5\x8a\xcep}\xf3\xb6\xaey\xea\xbfOLWο\xff\xba\xc1\x03\xafxU\x8bytd\xc1\xd0Y\x1d\xcer\x93.ڮ\x15\xef\xe0\x03^:_\xad\xe1\xd5+\x87\x14\x8c\xed|B\xadf\x9e^\x998\xc0Q\xdbڱ\x83#\x03\xc7\x0ev\xa4\xc3\xc5NW\xce[\xdc\xf5ZD\x19\xaa\x05\xbf6~`d\xd0\xd8\xdd|\xac\x8bՐ\f\x008\x82\x94\x8c\x8e\xb5\xab\x87\x8eZ\xbdz\xf5\xabls\xf0u{\xbb\xf6\xde5`m\xc7\xf6\xc5\xe7+\x83\xe7\xcd\x1b\\\xc0ta\xcayӗ\xdf?p\xb8s\x92\xef\x1e|\xde\xd8yk\xf5}V\xc0_\x9eX\xb0\xa7La\x9b\x91!\xea\xac\xeb\x18<\x92}\xf0?\xda\xc5f\xf5bg\xa9\x8ey##\xca\x00v\b\xe1\b\x18\xae\\\xce\n\xb2zX\xb5WN\xf1\x0e\xb0yp Ӟ\xfb\ah\x0f\xb8\x93\r;\x96IF\xd7]L2\xfe2\x98\x1d\xa1t>\xd1ኵ\x18\xaf\x1ex,\x8f\xdd\r@\xfe\x926\xc9حl\xef\xea\xbcP\xbb@\x19\xd1\xd6*\xeeW:\xba&\r\xe9d\f\x9e\x12S\xb0s\xe5X69\x1d\x01\xc3#\xe6\xf1\xc3ꂎ\xae?\x17\xac\xee\xf2\f\xb0\xd9}ѐ\xe9\x0f\xbfdܰ\xc9K\x86\x15kK\xc6r\xe5%\xbb\xa0H2v\xaf|p\xe8@\x1ce\x00`\x936\xc9\xe8\x1a;\xabk\xe5\x00m\xe6js\xb4k\xb5\xb2I\xfd\xa8\xd7q\xdeM\xb9I\x9f\xcc#\xaf\xe8r\x06\f\xb7V\x16:\a>ٵ\\;|\xf0\b\xe0\xe8xp\xd2Pe\xd0=\xda6/\x19V\xac-\x19\xf7+\u007f\xb1\xcby,\u007f\xb2\xb4\x01\x00&鐌\x875\tP\xa7\xb8~^\xd2\x15\x99\xc5\xfe}X=ʸr\xc8&\x8dw\x1d\x85.\x9a\xae\xfd\xb9mH\x973`\xb8\xad,\xd3\xc7w\x8dע\xbc\x02,6\xcdQ\xff\xe9X\\\xf0\xa0\x16`\xa7c\xc7j\x92q\x1b\x93\x8c\x951G\x19\x0f\xc7\x1c\xb6\xe0\x8a\t\x00<\x01KƨQ]]{\xf5\x1b,:\a.\x1f\xb8Z\xdb\x19\x19\xc4V\x11\x86\x8cbsT{\xea\xb6y\x8eB\x03\a\xeb\x8b\t\xe3]\x01\xdc\xe7\xfe\xda\xc8\xee\x886u\xbd\x02,\xee\xd2\xef\xd6\x1cu\x9d\xf6\xaf\x9d\x8e\x1d[\xa0\x8aJ\xe7H&\x19\x1d\x17\x8dbG.\xd3g\xb9by \x19\x00\xf0\x04,\x19wE\xeeY~y\x81\xfeQ=g\x88~^\xd2\x15Q\x86?\xf1\xf0\x90\x01\xaf\xb1}ʤ'\x96Oq-\u007f\x0eT.\xbak哗\x17\xbc\xca\at\xea\xd70^3b.\x1a{\x91\xbe\xe1\x15`r\x97Rp\xd7\xf2'\xa7(\x9aZ\x99\xe98bG\r\x9c7o\xa4r\xfe\xa3\xdbճ\x8e\v.~p\xf9t\xe5a>\xd6\x05$\x03\x00\x9e\x80%\xa3s\xfa\xc0\x82Q\xc6\xc9\xff\xab\xcau\xfaFd֔\x01\x17]\xa9Oƕ\x97\x0f\x1c0\xca\xf5\xad\x8d\x91\x0f\xdf6\xb4\xc0\xbcq\xc3\fx\xe9Lx\x0e\x93\x1f\x92\xe1\xd1y\x0eH\x06\x88!\xa3\x92\xf1\xfa\x88\xbb\x05\x9b\xf6\xd3\u07fdl\xc4e\xffWS\x92\xa7\xae\xbe\xe4\xea\xa7Կ\xff2l\xc4Sw\u007f\xe3\x92o\xfd\xb1\xab\xeb?\x87\xe9\\\xad\xee\xee\xf8\xee\x98\x11c\xbe\xad\x1d\x93\xbfw\x89\xbaO;\xc8\xe6b\xbb\xba\xb6|k\x8cZ\xd7\x18G\xfd\x9d\x97\xe95\xdc\xed(\xc60\xa6\n\xdfDW׳\xd7_\xf2\x8d\xef\xa9\x1fʿ\x1b1l\xd8\x0f^\xbf}̈our{\xbb\xba\xfet\xfb\x98K\xbf\x1b{\xf0n\xa6\xee,f\xf2/\xacU}\x99\xc0\x91\xafU\xef\xff\xa8ž\xdd5fذK;Հ\u007f\xbbs̥\xdf~ݫ^q\xbe\xe2\xcc<;o\x17\xe3$\x83\xabA4\x92 \x8fȨd\xdc9⏂M\x93_]r\xf5\x8f\u007f\xf9Ȱ\x9fh\xcf\xfe\xe0\xe7?\x18q{W\xd7\xff>;b\xd8e\x8f\xfc\xe4\x12\xf5\xb3\xf4\xcf[\xb6|\xe3\xfa-[\xb6\xbc\xae>\xff\xf3aw\xfe\xea\xd9o\x0f\xfb\r+\xf6\xbb-[F<\xc26\xb8خ\xdf\r\xbb\xfd\xd9_>u\xd90\xe7\x8fx\xfen˳\xc3\x1eٲ\xe5O\x8eb\fc\xaa\xf0Mt\xdd9\xec\xee\x9f\xff\xdbeWwvu>\xfb\xec\x98o\\2\xe6\xeeۇ\xfd\x91\xdb\xdb\xf5\xfa\xa5\xdfx\xea?\xbf5\xcc-\x19V\xea\x8eb\x16\u007f\xd2ZՖ\t\xf8|\xb9\xd6~\xf3\x88گ\u007f\x1f\xf6\xecﴀ1?~d\xcc%\xff\xe3Q\xaf8_\x8f\xcc<:o\x17\xeb\xb2%\x83\xabA<\x92 \u007fȤd\xfcq\xc4?\v6M:ǰ\x8f\xe3\xceg\xdf\xeb\xea\xfa\xe5\xb0_v\xb1\u007f\u007f\xae\xfe;\xe2Ru\xc6\xdd~\x99\x16b\x1d\x85\xff\xe5ٿ\xf0\x0fͷ\xbf\x1d\xfb\xd4e\xec-\xfeԥ].\x1c\xc7\xe61\x92\xd1\xc5\xd5\xf9\xf3a\xff\xae=\xa1}\x18_=\xec[\xba[#\xb7\xf7\xfao\xa89t^횘|\xeav1\x1e\xadU\xfd\x98\xdf\xce\xd7\xd1ڝ\xdf|ȍ\xf5\xd81j\xe1\xf7\xc6|ӻ^Q\xbe\xe2\xccĝw4l\x8d\x03W\x83\xd7H\x82|!\x93\x92\xf1/#^\x17l\x9a\xfc|\x98\xb5\xf8\u007f\xa7~u\xef\x9f؍\x1b#\xd8?\xc6Y\xb5}\xe2\xfe\xdeS\xdf\x1as\xa9q@\xceI\x86\x15\xfb\xc71c\xfe\xe5\xa9\xdfu\xc5|4&.\x19\xdf\x1d\xa39;\x8e\xd1n\x1e\xb9\xda<&\xb2\xf7\xbe7\x8c\x9d%t\xfd\xc051\xf9\xd4\xedb<\xbcdX\xf9:Z\xeb\xbc\xfa\xb2o\x1b\xb1\xdau视\xbd\xe7Y\xaf _\x8f\xccĝw4l\x8e\x03_\x83\xd7H\x82|!\x83\x92\xf1\xa7\x11w\n6-~b\x1f\xfb^\xafϘo\xab\x9f\xae\xfc\f\xb3\xe7\xc7o.\x1b\xf3\xbd\xff\xd8r}\x8cdر\xef=\xf5\xdd\u007f\x1avُ\xbb\\$.\x19W\x1b\xeb\x04\xda㫯\x8e\xd9\xfb;\xbd\x88{\x89\x90O\xdd.\xc6\xc3K\x86\xb5\xe9h\xad\xebY3\x1d=\xc3-\xaa\x98z\xd5+\xc8\xd7#3q\xe7\x9d\r\x1b\xe3\xe0\xa8\xc1c$A\xbe\x90Aɸ{\xd8\xeb\x82M\x8b_qG\x19\xfab\x9b\xf6\xd1\x17#\x19O\xa9\x9f\xb0\xff\xf4Mvb\xf2]o\xc9\xf8\x1d\xfbx~\xef\xd9\x11Ou9IL2X\x13\xb7\x8f\xf9\x9d\xc6{\xd6^\x86\xbd\xd7\xf8$v/\u007f\xf2\xa9\x8b/gh\xad\xfe\xc0%\x19\x8e\xd6\xfet\xd9\x0f\xc6\xe8wO\xe8k\xc4O\r\xeb\xf0\xacW\x90\xafGf\xe2\xce;\x1av\x1de\xdc\x19o$A\xbe\x909\xc9\xf09\xc8\xe8\xfa\xcbe׳Ì\xbb\xeff\xe7(\xec\xd4\xfaY}-\x83\x93\x8c\xeb\xafW˲\xe7ư\x89\xd2y\xb5\xb7d<\xa2\x9d\xfaw]\xef^1\xf1\x95\f\xab\x89_\xea\xa7\xf7?\xd0>^\xad9\xca\xed\xfd&\x9b֯\x8fpML>u\xb1d\\\xa2\xce\xc1\xceo\xba$\x83o\xad\xf3\x9b?\xe8\xbaS\xbf\xcc2\xe22U\x1a\xff<\xe6z\xefzE\xf9\x8a3\x13w\xde\xd1Mk\x1c\xb8\x1a\xbcF\x12\xe4\v\x99\x93\x8c\xef\xd9G\x16\xdc&ǯF\xfc\xd3S?\xbf[\xfb\x80\xbb}\xd8\xf7~\xfe\xbda\xb7k\x17\x18\xee\xfcM\xd7\xef\xee\x1c\xa1\xad\xf4?2\xe2'\xff\xf1\xadK\xfe\xc8\xde\xc7\xdf}\xea\xc7W\xab\x87˿\xe9\xeaܲE\x8dٲ\xa5\xc3\x11\xfbȰK\x1e\xf9\xf9\u007f\xdc9\xecW\x8e\x16\xf4\x8b\x06\xdau\x16\xbb\x98~\xd7\xe3O\xb6l\xd1\xd6\a\xac&\xd4$\xff\xbfg\xd5\x1a\x9e\xed\xea\xfc\x8dv]\xe2u\xad\nko\xd7\xff\\2\xe6\x91\x1f\\:lĿ\xff\x8f\xa3\r+uG1\x8e\xeb/\xfb\xf1\x8f\xbfɊ9\xfaf\xb7\xb6\xe5\x9f/\xfbc\xd7\xeb\x97\u07bdE\x15\x8d\x11î~\xf6\xa9o\\\xfa\xbaw\xbd\x82|=2\x13w\x9e+ƍ\x03W\x83x$A\xfe\x901\xc9\xf8\xd3%\xb7\v6\x1d\xbc\xfe\xdd1\x97|\xf3?\xb4\xcd\u007f3nB\xf8g\xf54{\xc4\xff\xb0\xdb\bا\\\xe7ݗ\x8e\xb8\x9e\xbd\xe9;\u007f\xf2\x8d\x11\x97}\xf7\xa9o\x8c\xb8^=\xef\xd6y\xca\x11\xfb\xec\xf5\x8f\x8c\x19q\xd9\xf5\xce\xf7y\xe7\xa5Z\xa4\xb6\xf2j\x17Ӿ[a\x9d\xce[M\xa8\x1f\xc0\xd7_v\xe9\xf5?\xb7B\x8d\x15Is\xaf\x9a\xee\xb7/\x1d\xf3\xbd\u007f\x1f1\xcc\xf5\xf9k\xa6\xee,f\xf3\xfa\xf5#.\xf9\xd6\x0f\xd4$\x9d}3\xeb\xfd\xe50v\xef\xc4\xdd꿿b˟w^:\xe6\xf6?ũW\x90\xaf83\x8f\xces\xc5\xf8q\xb0k\x10\x8e$\xc8#2&\x19?\x18\xf6\xbf\x82M\x10\x17\xfb\xd4\t\x80\f\x911\xc9\xc0\xb7ޓ\x00\x92\x012N\xc6$\x03$\x01$\x03d\x1cHFx\xd0\xd7G\x01\xc8(\x90\x8c\xf0\xf0\xcf\xe6r%\x00\x99\x03\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90 Pɘ\xa4\f\x9c\xb2]\xd4\n\x00 G\bT2v\xaf~t\xe8\xc0\x0eQ3\x00\x80\xdc P\xc9PY\xad\xbc$\xd8\v\x00\xc8\x11\x82\x96\x8cM\xcaZ\xc1^\x00@\x8e\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x10\xb4dlWV\v\xf6\x02\x00r\x84\xa0%\xa3s\xe0ȵ\xbb\xe1\x8b\x03@\xae\x12\xb4dt\xadT\x14\xe5\n\xd1\x13\x00\x80\x1c h\xc9\xe8\x188\xe4\xfeկ\t\x9e\x00\x00\xe4\x02AK\xc6&e\xa5`/\x00 G\b^2p\xc5\x04\x80\x1c\x06\x92\x01\x00\x90 h\xc9X\v\xc9\x00 \x97\tT2:wo\x9a\x14\xd9-j\x06\x00\x90\x1b\x04*\x19\xe3\x15e\xf0rQ+\x00\x80\x1c!P\xc9\xd8\xfb\x12\x0e1\x00\xc8m\x02\x95\f\x00@\xae\x03\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x90\x92d\x9c\xf0\xab\x1d\x00\x90c\xa4$\x19\x9f\xfb\xd5\x0e\x00\xc81R\x92\f\x9c\x99\x00\x90o\xa4&\x19_\xfaU\x0f\x00\xc8-R\x93\fh\x06\x00yF\x8a\x92A\xe9\xe7X\x03\x05 \x8fHY2\x00\x00\xf9\x04$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 Aʒ\xb1\xf6\xca\xc1\x91\x01\x17߶\xd7/.\xe3t\x9e\xf5\x8b\xf0\xa0S1\xb8`Ȕ\xddlG\x87\xf182\xf8\xcaMVм\xe1\x05\x91\x8bƯu\x95\r\xcd\xe8\x00\x90 )J\xc6\xd9\xf1\xc6\xf49\xff~\xbf\xd0\f\xf3`\xc1\xe7~!\x1e\xa8\x92Q0@\xe5B\xd6\xcf\xd5Ԗ\f\xc6<=\xe6ш\xf1x,\xdfJxF\a\x80DIQ2\xe6(\x05\x0f\xbe\xfby\xe7K\xea\xdcX\xe9\x17\x9bQ\xce*J\n\x92ѡm|\xbd}\xa8\u0084G\x95\x8c\xbd\x9f\xabt\xbd:VQ^e\xcf\xccR\x94\xf1/u}\xb9\xf7\xae\x882\xeak\xbbdhF\a\x80\x84IM2>\x8f(ơ\xf8\x14eH\xfc\xd0\f\x13\x84d\xa8b\x11Q\x9e\xd0$\xa3S\u007f|v\x882E\xfd\xb3ZQ\x16\xeb;^R\x94G\xad\x82\xe1\x19\x1d\x00\x12&5\xc9xM\x89\x18\x1f\xaa{\xadi\x94\x9d\x04#\x19t\xa4r\x1b/\x19\xf4\x1ee\xb0Z\xf7 e\xba\x190\x9d\x13\x87\xf0\x8c\x0e\x00\t\x93\x9ad\xec\xb5g\xd3\xea\xed_\xb2?\x9d\xb3\x86D\x06\x8e\u007f\x89m>\xaa<\xfcҐ\x82\x91s\x94\xf1z\xc4u\xca]\xc2\x00\xb3\x06\xfb!\x17\xb3X\xb9\xe7\xdd\xf1\x03.\x1c\xb9\xdc3\x82vL\x1f\x1c\x190\xeaQ}u\xd3Q\xf4\xfe\x13\xb3\x06G\x86\xdcv\x82\x9d\"0v\xbb\x82\r\xd6N\xba(R0\xf4\xb6.W\x19\x13^2\x86+s\x1c\x92\xf1\x84r\xa1Z^Q\xfeb\x06t\xdc\xff\xaaU0\xd0\xd1\x01 ;HM2\xe8\x10e\xe8Z\xee䝾T\xa0D\x86\x0f\xd1W\x05\x1fU\xe6\\\xa0(\x05\xef*\x11\xed\xf3\xfd\xec\x85\xca^a\x809}\xad\x87|\xccbeRAd\xec\xa8\xf3\x94\xeb\xbc\"\xf6^\xa8\f\x18>TQƺ\xdb_\xac̺H\xb9p\xa0\xa2\f=K\x97OR\x94\xf1Wv:\x83\r\xa6+\xcaE\xc3\a\xa9\xff\x9cp\x961\xe1$c\xb7\xa2,wH\xc6]\xcaPJoc\xff\x88\brt\x00\xc8\x0eR\x94\x8c\xed\x11E\x190\xfe\xd1\xdd\xc6\xc3\xce\v\x959\xea\xc7\xe9\xf6\x01l\xb9\xefQ\xe5\xbc!\xab7=\xa9\x1e\xcck\x87\b\xab\x95\xe1\x1e\x01\x06\xe6CG\xccbE\x19\xf2g\xf5\x18\u007f\x00\xabD\x181^\xb9M\x9d\x96\xbb\a\xb0u\x03wѡ\xdb\xd5c\x80\x88\xf2\xa4ub\xc2\a\x1blR\nا\xfa\xf6\x02\xe5AW\x19\xb3S\x86d\x9c\xed\\>H\x19r\x96\x97\x8c\x13\x83\x94Y\x94^\xa1-h\b\brt\x00\xc8\x0eR\x94\f\xda1V;\xe4\x1f4\x87\x1d֫\xc7\xffWh{W\xb2\xcf\xddG\x15E\xbb\x1f\xe1\t\xfd3\xfdJ\xe5a\x8f\x00\x03\xf3\xa1#f\xb1\xb1s%[#\x10F\fV\xb4)\xf9\xf0\x95kc\x8bjS}:[i0$\x83\x0f6\x98\xa3\x9d\x11\xb0\xbf\xd3]e\f\xac\xfb2T\x86\xb0gU\xc9\xd8}B\xa5c\xe5\xc5J\xe4]\xb6\xc01\x87\x8a\tpt\x00\xc8\x0eR\x95\fuF=q\xa5z \xaf\\\xc8\xeej\x1a\xacݷ\xa0N\xd0\xf3ԙ\xf7\xa8\xb1\x12x\"r\xde\tv\xf9\xe0\xbc.\x8f\x00\x03\xf3\xa1#f\xb12J\u007f\x10Q\xde\x15G\x8cUFn7\x8f\xfe]E/\xd6\x1e<\xacL\xb2$\x83\x0f69\xab\x1f\xfb\xdfÎ\x15\x1ce\f,\xc98\u007f\xd2r-\x94\xbb/\xe3\xbc\xe5Z\xa5^\x92\x11\xe0\xe8\x00\x90\x1d\xa4.\x19\x8c\xbd\xf3\x06(\x05\x9d\xf4sE\xb9x\xa4FD٤\xbe\xe7\x8d\x15\x83I\xec\x12\xe4r\xf6\xc8#@\xc7x\xe8\x8cY\xcc.Q0.V\xcf%\x84\x11\xaf\xb2\xa3\xff+\x97\x9f\x10\x14\xd5?\xb3\x9f`+\x8c\x86dp\xc16g\xb7?9o\xd2`E\x97\f\xae\x8c\x81*\x19\xef~\xfd\xf5\x97\x9b\x86*c\xf5r\xa6d\\x\xf1,\xed8`\x8ar%\x8dG \xa3\x03@v\x90\xa2d|m~dw^\xa4̣]\xf6ǯz6\xfe\xa89\x93ֲ#\x85\xb1\xec\xfc\xdc#@\xc7x\xe8\x8cYl\xde_9\xd2.\xe0\x8c\xa0{\xa7\x14\xa8\x1b\xe7O\xff2\xa6\xa8~\xa4\xc0K\x06\x17l\xf1\xf0 \x16?|\x94.\x19\\\x19\x03s-\xe3\xc4`e\xb8V\xac\xc3u\xc9\xf4\x1e~\xf9\xf3%\xeeZn\x90\xa3\x03@v\x90\x9ad\x8c4\x8e\xa4U橓\xecs\xeer$\xb5\xdf\xf3g\a(\x9d'\xce+\xf8\x92z\x058\x1e:c\xac\xa3\x8c\xa1\xda\a\xaf \x82\xb2Äy\x17+\xcau1E\x05\x92a\a\x9bܣ(ӗ\xbf\xf6\xa5yb\xe2-\x19t\xbb\xa2\xafp\xb8%c7\xf7\xb8C9Ϻ\xca\x1a\xe8\xe8\x00\x90\x1d\xa4&\x19\xe3\xedk\x05\xf3\xd8\xe6@\xf3\xc6\xe8\xed\x1d_s\xef\xf9Y\xca\xe2'\xf4H\x8f\x00\r\xf3\xa1#f\xb1qx\xfeeD\x9d\x96\u0088?o7J\x9f\xff\xb5\xbbh\xacd\xf0\xc1:_\x17\xb0\x1b:)[{\xf4\x93\fvw\a\xbb\xb8\xe2\x96\f:\x98]71C\x06Z\x97E\x03\x1d\x1d\x00\xb2\x83\xd4$c\xb5\xf5\xe5\x89\xceA\xecb\xe1te\xb86\x15\xd7*\x91\x13\xdc{\xfeUe\xecXm\xb2y\x05h\x98\x0f\x1d1\x8b\x95\x886=\x17\xb3\x8b\x90\xa2\b\xf5h^\xbb\x1c\xf1\xaer\xdeYwQ\xa7d\x9c\xd0\x0e\xfd\xed`\x9d.\xe3\xc2\xc4\xe7\x17\xb1\xca\xe3K\xc6\xe7\ue2ec\x06O*\xfa\x95R\xed\xae\xae\a\xad݁\x8e\x0e\x00\xd9Aj\x92\xa1\x9e\x83+\xe3Wwt\xed~p\x90r\xb1:\x99ލ(\xd3\xd5\x0f\xf3W\a\xb2k\b\xdc{~H$2H\x9b\f^\x01\f\xf3\xa1#f\xb1\xa2\fW\xe7\xe7\xda\x02\xf5\xbcD\x1c1V\x19\xab\xca\xc0\xe7\x93\xd8ራ(?\xfd#\xca\xca/\xbfv\x04\xeb|=@\xbb\xdeѩ\xf6\xe4\n?ɠ+\x15\xe5\x1e\x81d\xa8\xc7\x13ʔ\xed\x9f\u007f\xbd\xf76\xc5\xf1\xb5\xb4`Fg\xf9\xc3\xdb)\x00\xd9B\x8a\x92\xf1\xb9\xf9\xf5nmb\xab\x1f\xac\x11傑C\x14\xe5\xf2\xb3\x8eIq\x8fb.Ix\x040\xac\x87|\xccbe\xc8\x05\xe7\xb3\x1b\"\xef\xf1\x8a\xf8\xcb@%r\xf1\xf0\x02ePGLQ~\xfa\x8fTs\xdc\xe4\f\xd6yXQ\x06_1\xf2\xbc\x01w\xb1\xeb\xab>\x92\xa1\x8a@\xa4C \x19g\xa7\x98\xc3p\x05\xffM\x96`Fgx\x9ck\xb8\x00\xf47)J\x06\xa5/\xcd\x1a: r\xd1\x15ˍ\x0f\u05ceYC\"\x05#\x1ff\x87\xfdܤ\xe8P\x14\xf3\x16Hq\x00u<\xe4b\xd49\xbc\xfb\x8a\x82\x81Wl\xf7\x8c\xa0\x9ds\x86D.\x18z\xd7\tAQm\x97>\xfd\xdf\x1du\xc1\x80\x95\xae`\x9dM\x97\x0f\x8c\xa8{>g\xab%~\x92\xd1\x11Q\x8fOb%\x83\xd2\xedӇ^\x10\xb9h\x92\xfb'v\x82\x18\x1dH\x06\xc8&R\x96\x8c4c\xcea\x00@V\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x90\xed\x92\x01\x00\xc8* \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t \x19\x00\x00\t\x82\x97\x8c\x1a\xf2S\xbf\x10\xc6*\xf2}\xbf\x10\x1f\x8e\xf7\xfaE\x00\x00\x82&\xb4\x92\xd1\xf7\\\xc9i\xbf\x18\x00@ЄV2z\b\x81d\x00\xd0\xef@2\x00\x00\x12@2\x00\x00\x12\xa4$\x19\xbb_\xb3\xd8m\xed\xd4%c\x1dY\xf5\xd7\xc6\xf2\xe2\x99\xdbhߺ\x19ъ\xa6\xd3ھ\x15\x87\xea'\x96\xde\xfa\xeb>jI\xc6\xf1\xa6\xaahY\xdd.\xeaQ\xc4\x15\xd0|\xaa\xa9\"Z\xb5\xe4\x14\xa5\x8b\b\xe3 \xa5G\x1a*\xa3\x13k\xd6`)\x14\x80~!%ɸM\xb1\x98n\xed4%\xa3q2)\x8f\x12\xb2\xad\x81\x14\x97\x13R\xa3\xed\xab/\x8d\xd6\xd6\x14\x92\x86>S2v\x8d#\xc53\xab\bY\xe6Q\xc4\x15\xd0TAJ\xcb\b\xa9\ue85b\xe7\x13R?\xff8\xfd\xb0\x94\x94\xddTM\xc8\x1d}\x82\xfc\x00\x00A\x93\x92dtEL\xc58\xaf\xc3\xdaiJ\x06\xa9\xfe\x90\xf6\xce'\xc5\xc5/\xf4\xd1W\bٯ\xed\x9b\xf61\xa5\xfb\xcb\xc8FC2\x8e\x97\x92Eݔ\xee)#\xdb\xc4Eb\x02ޤ\xb45J6X'&\xf5d\x89z\x80q`\x02i\xf5J\x12\x00\x10 )I\x86}\x98q\x9d\xbdϒ\x8cC\xea\x9f\x0f\tif;oa\xb3|\x9dv&A\xe9ˤʐ\x8cE\xa4\x8e\xea{\xaa\xc5E\xdc\x01\x1f\xb1\a\x8d\xa4ђ\x8ck\xf5*\xd7ܻ\x93\x02\x00\xd2Oj\x92a\x1efp\a\x19\x96dLc\x0f\xba\t\xf9\x80\xfd\x9dOZ\xd8>\xed\\\x83\xf6\x16\xabڠIF%yE\xdb\xd3SH\x8e\n\x8b\xb8\x02n\xd4\x1e\xb4\x90zK2\xee 5o\x9e\xa3\x00\x80~\"5ɠsb\x0e2,ɨe\x0f\xce\x11r\x92\xfd\xbdO\x97\x8cEz\xc8\f\xb2S\x93\fU\x1dfܪ\x11%m\xa2\"\xee\x00\xfd\x90c\x03'\x19oF\t\x990\u007f\xf3\xdf)\x00\xa0?HQ2\xf4\xc3\f\xfe Ò\x8cz\xf6@\x9d\xff\x9f\xb1\xbf\x86d\xfdf\x9d7g\xed\xe2A#\xbf\xa6gW\xae\x1c2t\xc0\x90ۮS:\xbf\xdc>\xe0\x9e\x13\xf4\xc4=\x03\xb6\u007f)\x0e0\xeb4$C;\xcf\xf9ZQ\xba\xd8\xdf)\xbadܦG\\\xac\x9eF0\xc9\xf8\\Q.\x1e\xa9\x11Q6\x89\x8a\xb8\x03\xae\xb0\x1b0$\xe3Ո\xa2\f\xb8r\xf9\t\xabG\xf4\xa3\xadE\xa4\xa2\xf9g\x13\xefe\x0f~X\xb8h纊[\xfbh\xf7\x9b\xed\xd5w\xb4\xb7\xb7\x1f1\xa2\x9a\xa2\xda̦Q2ck\xeb5j,\x17\xc0m\xb2ʦ\xaej\x9e:\xeeC\xcas\x88\xec\xec\xe9\xe9ic\x92\xb1\x834\xed\xd9V_\xb8\xcf\xd9\xf0щ7\xbe\xd0ZG\xa2z\xb8%\x19V:=۶N\xad\x9eP\xf5X\xc3\xe8\xbfR\x90ׄM2(\xdd\x14Q\"\x9b\xb4\xad\xcf\xef\x1f\x15Q\x06\xb2C\x88\xb5l\xb1\x81\xbe\xa6/k\x8cT\xaeP\xe7&\x9b\x9e\xb3\u0602\xe5u\xb3\xbc\x03t\fɘĶ]\x921O\x8f\x18\xa9\x16d\x92ѥج\x14\x15\x11\x068$\x83\xee\x9dR\xa0>y\xfe\xf4/\xad\xf6i\xb4L\x95\x83\x86\n\xca\xe6\xf3\x8b\x94\xcdحl7\u007f\xb2q<\xbaЈ\xad\xf8\x87:\x93+\xa8+\xc0ތN;C\xe9\xe9\xaa\x1a\xcas\xc88\x0eQ%\xa3g[\xb7z\xf4p\xd3|-\xd6jxn\xb5z(\xd17;\xaa\x87\x9b\x92\xe1L\x87Ԟ\xa1}\xf1\xd6OA>\x106\xc9\xf8\xfc\xb6\xc8`ep\xe4.\xe3S\xfa\xecK\xe3\xd9:┡_3\x06Og\xfbFF\xcc\xe3\x87\xed\x05_ҳ\x05\xec\"\xacG\x80N\x1c\xc90\x8e2\x86\xaa\x87\f\xc6QF\x87]NPD\x18\xe0\x94\fuk\xfb\xbc\x8b\x15\xed*\x8cA\xf4!j\xac#\xc9Pg\xdd@\xfd\xf0b\xd0`\xed@\x9f\t\xc0&\xfd\xb3}ރ\xe6\x0e\x83W#]\x91WنW\x80F\x1c\xc9P\x86\xab\x9a\xb1\xb6@=/\xd1%\xe3݈2]m\xf5Ձ\xca\x1cq\x11Q\x80\xf1Uو\xb2\xf2˯\xe9Xe\xac\x1a\xfd\xf9$\xfe^.[\x06ڈvs\xe7O\x9fc\xff\xd6\xd6RzJ\xdb\xf1Y\xf1C\xb1\xb1|\x00\xb7\x19\xbd\xa6\x9b\xd2\xee\x1bj\xb5\x88\xe3\xcf\xe9R\xc3IF\x15\x9b\xf9}7;%\x83\xd6T\xa9'2\x1f\x17\xeb\xf5Z\x92\xe1H\xc7\xe7:.\xc8\x13B(\x19&\x83\x94\x8b\xeeٴ\xfa\x8a\x02\xb6x0O\x99\xb2z-\xbb\xab\xeb\xebW\xb7\x0f\x1d\xbb}\xbb\xb9X1\xf8\x8a\xc1\xfa\x86W\x00#\x8ed\f\xb9\xe0|v+'\xbb\xefB\xbf\xfbsuD\xb9`\xa4\xba\xe7\xf2\xb3\xe2\"\xa2\x00C2\xd8\xc9\xd1&\xfa\x97\x81J\xe4\xe2\xe1\x05\xca k\xcd\xe3\xb3\xf6h\xe3;}\xef7F\xdb?\xa3t\xd9\xe8\xef\xbf\xd2\xdaH^fO4G״֖~\xaan=>\xfa\xa8 \x96\v\xe06\xa3\xe4\x96m\x9b\xab\xcb>\xd6\xe2\xe7\x93z\xf6\x87\xbf\xfb\xb3\x99ܷ~խ\xa4\xbc\xe5\x1d\xbe\xb2\x0f\xc7U5?3\xb9\xb0\xe8\xc5C\xf4Sv\xf7\xe7\xba\xf6vv\xc8b\xa5s\xee-\xed\xa2\xccq\n\xf2\x9d\x10Kƨ\xe5\xf3..\x184I\x9fz\x9b\xc6\x0e\x1cx\xb9z,\xb0\xfb\xd3U2\x8e\x93\x89\xfa\x92d=9bH\xc6\xf1\xa6\xaahY\xdd.uk\x11a\x1cd\x92\xf1YSE\xb4\xeaq}\xc6\u007f\xd8X\xa9\x06\xb4\xe9u쩛\\Z\xbb\xcf!\x19G\x1a*\xa3\x13k\xd6\xe8\xf5\xc6\xd6\x06\x00\xe8\x1fR\x92\x8c\xdb\x14\x8b\xe9\xe6>U2\xe8̈́Mg\xda]|\xd39]2v\x8d#\xc53\xab\bYF\xe9\xe6\xf9\x84\xd4\xcf?\xaeJ\xc6\xcc\nR^F\xc8\f\xb6\xf0\xf1b\x94\x94\xdeTN\xc8BV\xae\x85\x90\x8a\x99Ѣ\x1aN2>,%e7U\x13rG\x9f\xb86\x00@\xff\x90\x92dtEL\xc58\xaf\xc3\xdc\xc7$\xe39\xd2\xc46\xb7\x91U\xbad\x1c/%\x8b\xbaՃ\x872\xb2\x8d;1!SߡtG\x94l\xa6\xf4@!y\xba\x87\xf6m-&k\xd4\ad\xf4\xfa>z\xaa\x96p\x92QO\x96\xa8\a\x18\a&\xb0U\x12Qm\x00\x80\xfe!%ɰ\x0f3\xae\xb3v1\xc98J*\xd8\xd1\xc0|rT\x97\x8cE\xa4N{\xeeeR\xcdK\xc6a\xb6\xaf\x91\tC=y@\vXO&\xf7\xd2{\xc9\"\xb6}\xfa*N2\xae\xd5O>\xd6ܻS\\\x1b\x00\xa0\u007fHM2\xcc\xc3\f\xfb C\x93\f:\x93\xa8\a\x10\xdd%3\xa9.\x19\x95\xe4\x15\xed\xb9\x9eBrԖ\x8c\x19ھ5\xa4\x9e\xf6\x96\xb0x\x95\xdeR\xf2f\xdf\x04\xb2_{\xb0\x88\x93\x8c;H͛\xe7\x8cmQm\x00\x80\xfe!5ɠs\xdc\a\x19\xbad4\x93\xc7)m%ͺdt\x132\xe3V\x8d(i\xb3%\xa3V\x8bߨ\xfe\xfd\x98\x10\xe3N\x8e\x1a\xb2\xf1\x14!\xdd\xc63\xb6d\xbc\x19%d\xc2\xfc\xcd\u007fW7\x85\xb5\x01\x00\xfa\x87\x14%C?\xcc\xe0\x0e2t\xc98L\xa6R\xba\x80\x1c\xd1%\xe3Sb\xb3\xcd}\x91\x95I\xc6ARd\x94\xae%k\x8e\x10\xa2o\xb7\xf2WL>\\P\xa2\x96.j\xec\x16\xd7\x06\x00\xe8\x1fR\x94\f\xfd0\x83;\xc8\xd0%\x83V\x93\x83=\xeay\x89.\x19\xa7\x89*\x1e\x16\x02\xc9\xf8\x84?\xca\xf8\xbby\x94\xf1\xb2\xf3\xbe\x8c\xde\xf6\xa7g\x12\xd2 \xae\r\x00\xd0?\xa4*\x19\xec0\x83?\xc80$\xe3i\xb2b\x87z^b\xace\\Ům0\xf6||N$\x19\xbd\xc5\xf6ZF{_\x19yK{\xb0̖\x8c\xbe\x8f\xdf\xd0\xfe\xae!E焵\x01\x00\xfa\x87T%\x83\x1dfL\xe1\x1f\xeb\x92q\x80\xccld\a\x03\xbad4\x92\x9b\xd8\x15\x14\xba\x93\x14\x9f\xa2\xbd\x84\xfc\x83:%\x83\xd6\x1b\xf7\x8bn$\x13zh\x83\xfe\xa0\xa7ʖ\x8c\x93d\xf4g\xec\xef!R\xd8+\xac\r\x00\xd0?\xa4,\x19\x9d\x11\x85?\xc80$\x83V\x91q슈.\x19\x87\x8a\xc9Cg(}\xbbL\xbb_#J\xb6u\x9fsJ\xc6\xfe\"\xb2\xa2\x97\xd2\xd6\x12\xd2B\xe9\x91(Y\xd5G\xcf\xcc'\x8e+&w\xa8\x9aqz>\v\x16\xd5\x06\x00\xe8\x1fR\x96\f:\xc7q\x90aJ\xc6ㄝ\x97\x18\x92A[\xa3\xa4x\xf64B\xe6\xb2%\x8bل\x906\xa7d\xd0\xcdEd\xe2\xcd\x15\x844\xb1\xe3\x87mQR~s\t\xa9\xe7$\xe3X\x19\x89\xde8\xb3\x84\x94\x1f\x15\xd7\x06\x00\xe8\x1fR\x97\x8cN\xc7A\x86)\x19\xef\xe8ZaH\x06=\xf2\xa3\xaah\xc9\xec\x16\xed+\"\x87j\x8a'\xbe\xec\x92\fz\xb0\xa1\"zM}\x9b^\xc7\xfb\xf3\xcbKnm\xdb\xc6/\u007f\x1eo\x9a\x16-\xae^\xfaw*\xae\r\x00\xd0?\xa4.\x19\x00\x80<\x02\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92\x01\x00\x90\x00\x92A[kN\xf9\x85H\xf2\xd5\xdcV\xbf\x90\x14\b>\xdf~ \xbdC\x02\xfa\x91\\\x93\x8c\x85\xa4p\x9b\xc7Sǣd\x86`w\vi\xees\xee9X_>\xf1\x8e=7\xbd)\bN\x8c\xbe\x96\xc2\xe7\x84O\xac)\xfe\x99p\xbf\fz\xbe\x8d\x84\x90qG\xcd}\xbb*v\xc4+\x928\a\v\xd5z\x1b\xad\x87\x81\xd5\xeb=$ l\xe4\x8ad\xec9\xa0\xff=\xd9\x1em\xf6\b\xe9{\xa71\x1a\xbbw]\xe1\xaf]{\x0eD\xeb[_\xbe\x97\x10/\xe9I\x84\x9dE\xebD\xbbgGo\x12\xed\xf6\xc1웆\x91\xef\xdf\xda\xdbד\xb7͝;J_\x89)口^\x9dso\xdf|S\xfb\xa7\xd6Ca\xbd\x82b\x89\xe01$ l\xe4\x8ad\xd4<`nyJ\x06\xa5\xcdј]Ǣ\xcb\xcc\xcd/j\xbf\xd0\xfe\xd6ժ\x9f\xe2}\x8d)I\x06]\x11\xfd[\xec\xce\xee\u0086\xc2\xee\xd8\xdd~\xd8}s\xe4\xbbϖ\f\xea:NJ\f\xbe^\x8b\xdaZ\xfe\x91\xa8^a\xb1\x04\x10\x0e\t\b\x1d\xb9\"\x19\xb7\xdegn\xc9IFcE\x8f\xb9\xf9!\xf9P\xfb;\xed\xa7\xec߃$\xa5\x93\xef\xee\n\xfb\xf0ޢ\x9d\x1c {bw\xfba\xf7͑//\x19I\xc1\xd7k\xe1\x94\f\x11\xc2b\t \x1c\x12\x10:\xc2%\x19箉>}m\xe5\x9eEe\xb5\xecú\xef\xd75\xa57>\xaeN\xa1\x1dD\xe7\x16\x16\x13]\xfa؍\xe3\xea\xb4\x0f\xb4\xbe\r\xb7\x8c\xbby\xbd\xf6Iy\xb2\xa1\xb2lA\xec\x89I\uf125\xfaƺ\xea\x1dGȑ\x9d\xd5\x1b(}\xa0\x82IG\xdfNG\x13\a\x8b\by\xe6hô\x92\xbas\xdbԖ\x9ai3\xd1N]D\x01Z\x85+J\xac\xb9m\xd1|-\xad4\x04\xed\x93\x05\xe5ъ\xfa\x93\xceM\xab\xb2\x85\xa4h]S\xe5\xe4\xfa\xa3\xae\xbe\xd9\xf9R[2N\x97\x10R\xb8U\xdf\xf7F]U\xb4\xbc~\xaa\xe3\xe0`!\x89n\xb4\x87D8f\x1c\xb6d\b\xebu\x14\xe3\xf2\x155\x91Ȑ\x80\xd0\x11.ɠ{&\x92\xc7j\xc9U\xcf]\xb3F}\xf0\xc3\xc2E;\xd7U\xdc\xdaG\xbb\xdfl\xaf\xbe\xa3\xbd\xbd\xfd\b\v\x89\x92\x19[[\xaf\xb9\x97m>\x14}f\xe73Q\xf6\xd9vt\xe2\x8d/\xb4֑\xa8\xbb\xbe\xf7I\xbb\xbeq\xb2\x81\xccT\xff[\xa0\x9e\xc7\x1f\xaf*\xack~\xabW\xdbm5ѳm\xeb\xd4\xea\tU\x8f5\x8c\xfek\xf7\x1b\x13W\x9c\xa2\xa7V\x94\xbd\xd1-\x0e\xd0J\xbeI\xder7Fk\x17\xd0\xfb\xf4\x19\xb9\xa7\xf4\x96\x96]\xcdd\x8dsӪ죭Ed\xea\xaa\xe6\xa9\xe3>t\xf6\xcdΗrG\x19\a\xdaۋu%\xda?\xba\xe1\x95]\x1b\xcb\xc99\xbeUVYE\xf3\xcf&jC\"\x1e3\x0e\xee(CT\xaf\xa3\x98#\xdf\xd8&\x12\x19\x12\x10:B&\x19\xb4\xa2\x81\xee$;\xe8CM\xecs\xf2E\xca&\x8e\xf6Aȝ\x98T\xfcC}\xdbV\xa8[m\xa4\xcd\xfcwn\xb5\xfa\x01\xd77;\xea\xaen'\xf9\xd8\xdcl\x8b\x92h\x9b\xb6\xf5ժ\x9a()cK\x19\xce&H\xed\x19\xdawF\xdd\xfa!;\x9bo\xf8\x91w\x80\xca\xdfH\xcc\xcaa_\xe9\x1a\xba\xa6\x94\x1d\x01\xf4Tթ\x92Ի\xed+\xc7&_Yt\x9aZ\xcf\xe9\xaa\x1a\xad^\xfbL\x80\xcb\xd7qbR\xa2O\xed\xf5\x15L,֗\xb9\x96 \xa2e\xea\xc7\u007f\x03\x1b\x12\x8f1\xe3p\x9e\x98\x88굊9\xf2\xf5h\xc2gH@\xf8\b\x9ddl\xa5\xef\x90n\xba\xf4\xfb\xea\t\xc4\r\xbd\xe7T\xae\xd5ΐ9\xc9P\xd5D_\xb5\xf8\xe1Lm\xc7\xccFz\x9ald[\xcfD\xddյ\x92\xe3\xfa\xc6W\x8fE+Ie\xf1\xd2\u007f\xe8\x0f{wՑ\x9d\xee&\xa2\u007f5J\xedQ\x8f\xb0{Ʊ\xcf{\x8f\x00\xca\xe6G\xcc\xf2\xe9A\xf2fϛ\xe4 e2\xf6\x81\xb9\x93\xdb\xe4+\xd3W9\xd7\x13UI\xf8\xa9m\xe5K\x85\x92\xf1i\xe5\xb4E\x1b?\xe8\xeb\xa5N\xa2\x0fQcH<ƌC(\x19\x8ez\xadb\x8e|=\x9a\xf0\x19\x12\x10>B'\x19mt_\x94\xd2e\xaad\xcc6N\xab\xe7\xb3\xfd\xae\xe5O\xed\xcd;\xb7^\xdbQ_C\x0f\xe8\xc7\xf3\xb1˟\xef\x98Ӯ\xa5|\xc3!\xf2Ѻ\xf2\xe7\u0529\xa8\xad0\xf4\xb1\xd2\xce&j\xccR\xe7\xca[ik9\xfb\xc8\xf5\b\xa0lB\xc7\xdcױN\v]\xa7m\xf5\xd8;\xadM\xbe2}\x11\xb7\x9d\xb0\v\x9a\xdc\xd4~\x87\x93\t\x81d\xd0\xd3\x1b\xee\x9bA\xaeiq\x1feXC\xe21f\x1cB\xc9p\xd4k\x15\x8b\xc9WЄϐ\x80\xf0\x11b\xc9h\xb8ဆviT{\x1fof\x1fi\xf6\x9b\xb7\xf1\x06\xf6\x16\xef\x9b\xf6\x10\xfd\aYς\x1e\x8a\xba\xab뱮\xaf\xf4\xd2\x0f\xc9!ګ\x96\xa8X\xa4\xed\xf8i\xb5\xbb\x89\x05V\xb1E\xf3\xe9\xbdZ\x94W\x00\xcb \xe6r\xea\x82[\xf6\xed\xdbw\v\v\xdaE\xac{\x1b\xb8M\xbe\xb2\xe8\x12\xb6g#a\xc7\xf4v߸|\x85\x92q`\x99\x9a\xff\xe9\xad%\xeb\xa9\x03{H<ƌC\x97\x8c\xee\x15_i\x8fD\xf5Z\xc5\x1c\xf9z4\xe13$ |\x84X2\xda\xf4\xe3ܟjw\x15\xb2w\xfa)m\x87\xfd\xe6ݩ\x9dOoeg\x185U\xea\x14\xf8\xb88\x1aS߂j\xeb\x13\xf9\xd32\xfd\x1e\xa6\xf2J6]\xfaػ\xdd\xd1\x04\xf7\xa1\xfcV\xf1g\xc5\xdaR\x9eW\x00\xed\x9bQO\xddT>\xae\xfe\xf3X%e\xd7\x1bk\xd9A\xfe\xa2%\x8eM\xbe\xb2\xe85\xea\xf4\xea\xbeA\x9b\xbfv\xdf\x1c\xf9\n$\xa3Y[\xbd\xa1\xb5Mԁ=$\x1ecF\xe9\xf1\xe7\x8e鱺d\xbcO\xde\xd0\x1e\x89굊9\xf2\x157\xe17$ |\x84L2\x0eM^ӳ5z\xb0\xa7\xa1\xf6o\xaan\x8c\xfe\xfe+\xad\x8d\xe4e\xf6DstMkm\xe9\xa7\xf4\xb3\xf6h\xe3;}\xef7F\xdb?S?\xf0\n\x97\xedXVؠ>\xfdḪ\xe6g&\x17\x16\xbdx\xc8U\xe1\x91\u0098[\xb8\xcbIEs[km\t[h\xb4\x9a8\xf7\x96v\xa5\xc0XI諬\xabԧ\xaeG\x00]c\x1f<\x18\xf4\xb4\x91\x9fv\xd3\xee\xa7I\x9b*\x11{\x8agnh[D6S\xc7&ס(\xb9e\xdb\xe6\xea2m\xb1\xd3\xec\x1b\xc3\xcc\xf7Sv\xf7\xe7\xba\xf6v\xf5þ\xf7\xed\xf6\xf6\xe2\xc6\xf67ΰ\xa9]\xbab\x87Z\x83\xe3\xe6\x0fǐ\x88ƌ1\x9fh\xf3\xf9\xdc[7\xdf\u052e\xb2A=\x93\xf3\xaa\xd7.fU&n\xc2wH@\x18\t\x97d\xf4]C\xc8\xd6\t\xa4t\x9b~\xaa\xdcV{U\xd9\xdc6\xed\x99\xdeE\x93K\xee\xd8\xc7\xee\x10 $z\xb8T\xfdw\xa1\x1a\xben\xf6\xb8\xd9\xfa}\x19G\xeb'O[\xfab\x11\xdb\xebdE\xb1\xfb\x04\xbbf\xf3Og\x94V\xcc\xd7/M\x98Mh_\xbe \xc4\xfc\x9c\\\x17]cl\x89\x03\xde(\xb1\xef\x9f0\xd85\x9a\xdd\xc8\xd1J\xc8\xe8]꣏\xef\xbbvB\x8d~\xb3\x18\xb7iw(\xfax\xe3\xc4ʆϴ\xbdf\xdf4\x8c|\x1f2V\f\x1e\xa0t\xbf\xde2\xd9@\xe9\xaf\xefh\xae\x8aV\xd4:o\x17s\f\x89h\xcc\x18/Tl`\u007f\x8c^\x10Rrij^\xae\x98Y\x99\xb8\t\xdf!\x01a$\\\x92\x91\x06\xfa\x96D\xb7\xf9\xc5H\xb3-\xda\xe8\xb85B\x1e\xefoʤ#\xdf~ \xf5!\x01\xd9A\xdeK\x06\xed[s\xed\xdf\xfdb$\xf9\xaa\u2e64\xbe\xf4\xc1\xe1}\xdb{\x1a\xf2\xed\a\x02\x18\x12\x90\x1d@2\xb2\x938ߔ\x01 \x93@2\xb2\x91\x93\xdar\xa2_\x14\x00\x19\x00\x92\x91\x8dhˉ\xf6}\x9e\x00d\x0f\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\x8c4x\x9cf\x8f\x01i\xf0}\x031d\xcf\xcb\xdd/\xe4\x9add\xaf'\xeb\vĴ?\xd9,(bb$\xe9\xb4\\5\xe0jh-2~ע\xa8\x95\xdbl\x1b\xcd\xfeN\xae?b\x96\x88훈\x98bn\xe2\f\xaa\x1fɺ\xbaƼX\xbe9d\xae\x17y\xe67\x9b+\x92\x91\xfd\x9e\xacg^$ϝ\xa2\xa7ZȋgD%\f\x8c$\x9d\x96\xab\x06\\\r-\xc4\xf8U\xae\xd1-\xdcfϛ\xd1\xc6\xf6=\xeb\xaaK>\xd2\v\xc4\xf6M\x88\xbb\x98E\x02\x83j\xe1\xe1Ԛ\x9c[\xac\xe0\xc5\xf2\xcd!\x93\xbd\xc8+\xbf\xd9\\\x91\x8c\x10x\xb2\x1e\xd2~@s\x0fq\xff\x96\xa0\v3I\x81\u007f\xa2]ú\xa8\x11P\xb2\x8e\xdb4:\xdf]Y\xa7\x85s}\xf3\xc1Q\xcc&\xa1A5\xf0rjM\xe0(GL̋\xe5\x9bC\x06{\x91O~\xb3\xb9\"\x19!\xf0d\rR2z?1\x02>\xe9\xe56\xcd\xce7\x97hoq\xaeo>8\x8a\xd9$4\xa8\x06\xc9:\xb5z\x92\xa4dd\xa6\x17\xf9\xe47\x1b.\xc9\b\xb5'+'\x19g\ueaccV\xd53\x13$\x87\x9b\xa9#IK2\xac&\\\xa2\xc3i\x8a\xb5\xa9O\x8a\x96\"\xf6\xa3\xe5f߸\xcc8\xafWʛ\xc1\xda\xc5\xec̼\x06\x95C\xe4\xd4ʏ\x83\xed\xea\xea\xe8\xe6\x17\rW]\xfb\xf8\xe3W\x95z\x1e\xc6q\xe3`w\x9eF\x17\xfdHO}!)|\xd9Z\xec\xe0*\xcbd/\xf2\xc8o6\\\x92\x11jO\xd6CdgOOO\x1b\x9b\xf0;HӞm\xf5\x85\xfb\x9c\x86\xa9\xce$-\x19\xb0\x9a\xe0k\xa0q$\xa3\xef\x96\xd9l\xdb\xec\x1b\x97\x19\xe7\xf5\xea0\x83\xb5\x8bٙy\r\xaa\x8dЩ\xd51\x0e\x96\xab+\xdf\xcdޙ\x15뛋K6י\xbf\xb8\xec\x86\x1f\a\xbb\xf3ڏ\xaeo\x9d\xad\xa6\xae-J\x18\x8b\x1d|e\x99\xecE\x1e\xf9͆L2\xc2\xec\xc9z\xc8\xf8\x10;\xc4ޑ\xaa\xda\xf4ݤ\x19\x8a\xd9n\xa6\xce$M\x19\xe0\x9a\xe0j\xa0\x1e\x92\xb1\xa2\xa7\xe7ང\xfd\x869\xdf7;3\xdb\xeb\x953\x83\xe5\x8a\xf1\x99\t\a\x95C\xec\xd4\xea\x1a\a\xd3o\xcd\xee\xe66\xe61\xb9>\xce\xf9\x197\x0e\x0e\xdb\xd7\x19\xea\xee\x9ej\xe6\xbff\xbb\xa6\xf0\x95e\xb2\x17y\xe47\x1b:\xc9\b\xaf'\xeb!\xf2\xb3}\xfb\xf6\xad\xd1\xdee_\xac\xaf\xbba\"\xd1\x0e\x06,7SW\x92\xa6\fpM\xf05xH\x06S\x94r}\x15\x86\xf3o\xb53\xb3\xbd^93X\xbe\x18\x97\x99pP9\xc4N\xad\xaeq\xb0&\x9beں\xacL\xfd\xe7c\xef\xa5\"~\x1c\x1c\xb6\xafO\xb3\xdd\x1b\x98M\xad-\x19|e\x99\xecE\x1e\xf9͆N2\xc2\xeb\xc9ʭD쫨Z\xda\xda^\xabK\x86\x99\xaf+IS\x06\xb8&\x12X\xcbhڷ\xef\x13c\xf9\x8f\xf3o\xb53\xd3\xcf\xf7\x99\xd7+g\x06\xcb\x15\xe33\x13\x0e*\x8fЩ\xd55\x0e\xd6d\xb3jX3\xfa\vv\xec\xf7!\xf5\x80\x1f\a\x0f\x9bZqe\x99\xecE\x1e\xf9͆X2\xc2\xe6\xc9\xcaM\xf8\x195l\xba.pJ\x86+IS\x06\xb8&\x12\x90\f\xb3;\xd4\xe1\xdfjgf{\xbdrf\xb0\\1>3\xe1\xa0r\x88\x9dZ]\xe3\x10;\xd9\xfeZX\xf7׃\xd5s=\xaf[\xf2\xe3\x10kS\xbb\x99\xd9\xd4j\x95=\xe3\xae,\x93\xbd\xc8#\xbf\xd9\x10KF\xd8@\xca\x1b\xbd\u007f\xf8\x13d;\x90\x8c4\xf8\x96f¤3\xf8^\x04Mߌ\x19\x1bw\x1dW\x95\xa3\xfd\x85\x19W\xe9?\"\x98\x89\x81\x02)\x92k\x92\x91ݞ\xac\xa4\xbc\xee}A\xbcM\xb2\x16\xa6\t\xba\xafz\x93d\xc3\xffh\xba\xa6\xa4>\xc1\x86\x0f\xea?\u007f\xc5\xd8\xc3~\x9e\x9bz\f\x14\xc8nrE2\x120\xde\xcc\x02O\xd6\xf6\x17jF\xef\x11ś\b\xcd?=\x8cBy\x12t_\xf5&Ɇk+6g1\x97\xb7\xa7a\x98!6\n\xf5jM\xe4\xbe\xca[\xae\xda\xf9\xba\x92\xe4\x88u\x1dM\xa0a\xebĄ3A\xe5\x1a\xe6\x8a\xcdW\xbbΝİ\x9f\x037~\x8c=v\xa0\xbcZ\xb36\xb9\x17ֻC M\x84N2B\xed\xc9\xfaΎ\x9a\x92\xe3\xceb.oOc抍B\xbdZ\x13\xb9\xaf\xf2\x96\xabv\xbe\xae$9b]G\x13h\xd8^˰MP\xb9\x86\xb9b\u007fm\xdb0c\xb2\xb5P\xda]1m\xdd.#\xe7\u0601\xf2j\xcdڴ_X\xea\xdd!\x90&B'\x19!\xf7d=]\xb8\xc1Y\xcc\xe5\xedi\xce\\\xa1Q\xa8Wk\"\xf7U~\x99\xd5\xceו$G\xac\x1fX\x02\r[\x92\xc1\x99\xa0r\r;\x8a\xd1v۰d\x9f\xeeMol\xbb\aʫ5k\xd3~a\xa9w\x87@\x9a\b\xb1d\x84ӓu\xe2\ng1\x97\xb7\xa71s\xc5F\xa1^\xad\x89\xdcWy\xcbU;_W\x92\x1c\x9e\x92\x11\xafaK28\x13T\xaeaG1\x8f+&\x82\x81\xf2j\xcdڴ_X\xea\xdd!\x90&B,\x19\xe1\xf4d\xadXrp\x15_\xcc\xe9\xedi\xce\\\xb1Q\xa8gk\x02\xf7U\xder\xd5\xce\xd7Y\x8cG$\x19\xbe\r[\x92\xc1\x99\xa0r\r;\x8ayH\x86`\xa0\xbcZ\xb36\xb9\x17ֻC M\x84L2B\xec\xc9j\xdc0][\xdfx\x13\x9f:\xe7\xedi\x9b\u007f\x8a\x8dB\xbd[\x13\xb9\xafZ\x96\xab\xd4\xce\xd7U\xccD\xec:\xea۰~\xc5D39\xe0MP\xb9\x86\xf9WH\x15G\xeb\f\xe4\x1d\xfbz\xab\xc8\xcdTԚ#u\xeb\x85\xf5\xe8\x10H#ᒌ0{\xb2\xb2\xdb#ZԸ\xea\xf2\x1d\\1\xde\xdb\xd36\xff\x14\x1b\x85z\xb6&t_\xb5,W\x19F\xbe\xeeb\x06b\xd7Q\xbf\x86{˴\xcd\"v\x15\xd6a\x82\xca5̽B\xf4\xefE\xf7\x1d\xfc\x8c]V\xfe\xec\xfd\x05Q\xd3IY\xecf*h͑\xba\xf5\xc2zt\b\xa4\x91pIF\x1aȰ'k@\xa6\xa2i\xe9Eд\xceԔ~>!S\xcd\vD\x89\x0f\x14\xc8\x16\xf2^22\xec\xc9\x1a\x94\xa9h\x1az\x91\x06N\x1dT\x8f.>;\xf0\xa9\xf9Xb\xa0@\xb6\x00\xc9\xc8,y\xec\xed\t\xc2\t$#\xb3䱷'\b'\x90\x8c\f\x93\xbfޞ \x9c@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00H\x04\xd8\xc9\x1a@2\x00\xf0\x05v\xb26\x90\x8c4\xb8\x99f\xbb\xd5h\xf0=\xceq`'ˑk\x92\x91\u007f\x9e\xac\xed\xa3\xc9\xdc>\xfa\n!\xa3\xed\xdfӌO\xaa\xfe\xad\xbe$ы\x14H\xb25\xd8\xc9&I\xaeHF\xfez\xb2\xf6\xec\"%\xed\xb4\xfb\x15\xb2+\xc6BHL\xca\xfe\xad6\x1e\x99\t{\x916\x92\x183\x06\xecd\x93$W$#\x8f=Y\xbbIC\xa3z\fE\x12\xf4F\r\xc0\xbf\xd5\xc2+\xb3\x04?\xbc\x03\"\x891\x83\x9dl\xf2\xe4\x8ad\xe4\xb1'k7\xd9\xf7\xbad\xee\x00\x00 \x00IDATUړ\xb8d\x04\xe9ߚ\xbd?\xd5\xeb\x9b\x19\xecd\x93%\\\x92\x01OVAk\xdd\xe4\xf8\xad\xaf\xe8\x92aY\xa3z\f\x14\xb5{̹\xaf&R\xccF\x94\x19\x9f\x8e\xd0\xe0\x95\xef\xa6\x10\xd8Ɇ\x86pI\x06z\xb2\x8a\xf15b\xf5cGi\x1c\x13\x803/\x92\xe7\xda_\xa8\x19\xbd\xc7;\x84\x9aC\xfdii\v\xfb\xfd\xbf\xafZ&|\xeaz\xdenb\x8f\xe8'\xb7\xec\x1e\xff\xad\xbd}\xbd\xf9\xab\xc7R\xc0\xca5m\xe4\x8ad\xe4\xa7'\xab\x80D\x8cX}\x88{\x8cr\x88\xf9\x8f\xf4ͭ\x8e\x17C\x8d\xa1\xbeI\xff)\xbeͳc\x9e\xb6\x9a\xb0_7\x1bg\x8f\xf7%%\x19\xb0rM\x1b\xb9\"\x19\xf9\xe9\xc9* \x11#\xd6T\xd0$\xc3û\x80C\x1b\xea{\x9fѶ\u007fz\xafw\x1c\xff\x13\xcb&\xce\x1e')\x19\xb0rM\x17\xe1\x92\fx\xb2\x1a\x1dZH\xa2\x1b\x8dnr\x9b|\x87\x84F\xac\x9e\xc5,N\x97\x10R\xb8U\xdf\xe6\x86\xcfF\x97\x8c\x86J-\xc0J\xf2\xcc}\x95Ѫ\xfa\x83Z\x84=\xd4\xcb\xf4C\x88\a\x969F\xc7n\xc2\xf1\xba\x89{\xccI\x06\x97\xce\x1buU\xd1\xf2\xfa\xa9}T<\x92Z8\xac\\\xd3D\xb8$\x03\x9e\xacF\x87>\xdaZD*\x9a\u007f6\xf1^\xc7&\xf53b\xf5,fs\xa0\xbd\xbd\xb8\xd9\xd5\x1a\xcf!\xb2\xb3\xe7\xc8R\xb2\x8am\xdb6\xaa;HӞm\xf5\x85\xfb\xa8c\xa87\xd7\xd0w\xaaަ\xb7nt\x8e\x8eՄ\xe3u\x13\xf7\x98\x93\f;\x9d\xfd\xa3\x1b^ٵ\xb1\x9c\x9c\xa3R/\x00\b\x84\x90I\x06\xc9\x17\x00\x04A\xe8$\x03\x9e\xac\xacCj7\x1f\xa2\xe6\xe2\f\xb7\xe9c\xc4\xeaÝ1\x9f\xf9b6\x87\xc8\xcf\xde\xd9QS\xc2Z\xe1{\xf1\xc5\xfa\xba\x1b&\x92\xd9\xd41\xd4\u007f%=w4\xcc\xed\xd6Sr\x8cN\xacd\x88{Lm\xc9\xe0\xd2\xf9\xb4rڢ\x8d\x1f\xf4\xf5R\xf9\x17\x00\xa4L\xe8$\x03\x9e\xac\xacC|7\xf9M\x1f#V\xcfb\x0e\x8c\xf9\xcc\x17\xb3\xd1\xd62N\x17n\xa0\x8e$\xf7UT-mm\xafU%\x83\x1f\xea\xbe臥\aJ?\x8cj\xeb\x0f\x8eщ\x95\fq\x8f\xa9-\x19|:\xa77\xdc7\x83\\\xd3\xd2'\xf7\x02\x80@\b\xb1d\xe4\xb3'\xab\xe7\u070fo\xc4*%\x19|1\x1b}\xf9s\xe2\n\xeaHrF\r\x13\xa8\x05\xaad8\x86\xba\xba\xa5\x92V\xae\xd1/\xc8:F\xc7)\x19\xecu\x13\xf7\x98ڒ\xc1\xa5s`\x99\xbayzk\xc9z\xb9\x17\x00\x04B\x88%#\xaf=Y=\xe7~|#V\x19\xc9\xe0\x8bQz\xfc\xb9c\xda_]2*\x96\x1c\\\xc5'Y\xc5&k\xdfͪd8\x86\xba\xae\xe6^z\xef\xdc:\xad\xa0\xe3r\xaa%\x19\xd6\xeb&\xee1\xb5%\x83K\xa7Y__\xa9m\x92{\x01@ \x84L2\xe0ɪw\x88릣\xc7>F\xac\xde\xc5Lz\xdfno/nl\u007f\xe3\f_\x8c1\xdf0J<\xa8M\xd7\xda\xfaƛ\xf8$\x9b\xc9}\xebW\xddJ\xca[\xdeq\f\xf5\x92\xd1-\xb4e\xb4z\xdc\xc4w\x93o\xc2z\xdd\x95\xe3E\xba}\x825\x92\\\x00\xb7\xb9\x90\x14\xadk\xaa\x9c\\\u007f\x94:\x10\x9b\xb6\xda6\xaa\x8eb\"\xb7X\xb1\xe5j\x92\x06\xaf\xee\x97%\x06G\x00\x97o\xf7\xd2\x19\xa5w\xbc}m\x9b#\xd8~\x97dp$\xad\xcc\x16\x92\u0097\xad\x15:\xd1P\xbb\xd3\tƦ6\\\x92\x91\x87\x9e\xac\x9a\tjOO\x9b\x9fd\xf4ݢ\x1d\xb1\x9b\x1d:\xf5\xfd\x1a\xb5\x9a\xee7\xe76\xf0?\xea\xe70b\x15\x0f\x9fJ\x93q\x00k\x8d$\x17\xc0m\xb2ʦ\xaej\x9e:\xce\xf9\xb1+6m\xb5mT\x1d\xc5Dn\xb1b\xcb\xd5$\r^\xdd/K\f\x8e\x00\xbb\xb5\xd37\x94\xafi[h\xfc\xa6\xb1\x85\xfd.\xc9\xdcHڙik$\xe6\n\x9dh\xa8\xdd\xe9\x04cS\x1b2\xc9\xc8?OV\xc3\x04\x95ē\x8c\x15==\a\xef%\xbbضա_\xebW\x87f\xba\xd6Bm#V\x8f\xe1cW\x96\x8c\xdf\x1c\xb7G\xd2\xe3p::M\xcd\xfat\x95\xdbN\x8d\xe16m\xe5lT\xb9bb\xb7X\xb1\xe5jr\x06\xaf\xeeX\x11V\x00W\xac\xb1\x8cy\xdb-qI\x06\xff.\xc9\xd4H\xf2\x99\xd9V4\x1eC\xed<\xf7\tƦ6t\x92\x91o\x9e\xac\xcc\x04u\u07fe}k\xe2I\x06{g\x95\xebK$V\x87\x0e\x16\xf6\xf6\xfc\xfa\xf4\xb9\xe8A\xea\xc06b\xf5\x18>\xf509jTa\x8f\xa4\xd7\x1b][i]O\xbe\xa2\x1cb\xd3V\xceF\x95+&v\x8b\x15[\xae&g\xf0\xea\x8e\x15a\x05\xd8\xc5\xfa\xc6iu~\xe4\x92\f\xfe]\x92\xa1\x91tdfK\x86\xc7P\xbb%C\xf4\x9e\x94%t\x92іo\x9e\xac\t\xace4\xed\xdb\xf7\x89q\xd9\xc0\xeaPo\xd1\xc15dő\xc2^\xea\xc0\x1e\x1d\x8f\xe1\xa3'\xa3?\x8a\x89\xf5z\xa3k\xef\xdev\xa7ɐش\x95\xb3Q\xe5\x8ay\xb8\xc5\n-W\x934xuŊ\xb0\x02\xecb\u007f\xd3\x17\xa9\xbb]\x92\xc1\xbdK25\x92\x8e\xcc\xc49pC플`ljC,\x19y\xe2ɚ\x80d\x98}\xa0|\x87fl\xad\x9d;\xa3\xd5}\xf3\x9a=:\x1e\xc3G\x97\x14\x1e\x8b\x89u\x04pC\xbd\x84=\xdeH\x1c\a\xfdb\xd3V\xceF\x95+&v\x8b\xf5\xb0\\M\xce\xe0\xd5\x15+\xc2\n\xb0\x8b\xf5\xe9u\x1ev\x9f\x98\xd8\xef\x92L\x8d\xa4#3\xad\xdeg\xa2\xd4s\xa8\xf9\xd6D\xef\xc9d\b\xb1d\xe4\x89'\xab\x9cd\xd8\x1d\xfa\xfe\xa2h\x1bY\xf8\x00ub\x8f\x8e\xc7\xf0}Vl\xd96\xf3ot;\x80\x1f\xeakԷ`\xf7\r\xb5ZD|\xd3V\xceF\x95+&v\x8b\xf5\xb0\\M\xce\xe0\xd5\x19{\xbcYp\xf7\x94\x15\xc0\x15[P\xaeN\xbe\xbe\x86\x98\xb5\f\xeb]\x92\xb1\x91\xe43\x1b\xb7Tݬa\xf5z\f5\xdfZP6\xb5!\x93\x8c\xfc\xf3d\xe5\xee\xfeTw\xbf\xbf\x9e\xac3*67\xd9ݟ\xd6\xcd\xe2\\\x87\x9e\x1b7\xb1\xaf\xbad\x15\xe5q\x8c\x8eh\xf8(}|\xf4QA,\x17\xc0mF\xc9-\xdb6W\x97\xe9\v\xae~\xa6\xad\xb6\x8d*WL\xe4\x16+\xb6\\M\xd2\xe0\xd5\xf5\xb2ԓ\xd2\xd3ԁ#\xc0n\xed\xb3\x8a\xaa\xf5\xad\xf3\x8bc%\xc3 s#\xc9g6\xb7\xa2eU\r\xd1\xde\xd5\xe2\xa1\xe6[\vʦ6\\\x92\x91\x87\x9e\xac\xf6wL6\xaa\xf2\xc0:V\xa2M\x0fk\xb3M\xfd;\x93k\xc6\xecЁ\xb2\x15\xb4\xa5t\x1f\xe5q\x1a\xb1\n\x86\x8f\xfe\xbd\xa4A\x18\xcby\xa7ڛ\xd1\xc7\x1b'V6\x186\xd0\xf1M[y\x1bU\xae\x98\xc8-Vl\xb9\x9a\xa4\xc1\xabk|7\x97\x12爸\x02\xec־h\xac*\xa9=\xe0)\x19\x99\x1bI>\xb3\xa3\xb5%\x13\xea\x9ev\xe5\xe0\x18>\xae\xb5\xa0lj\xc3%\x19i -\x16\xa6\x99\xb4\x04M\xadCO\x13\xee\x88\xc5\x0f\xc7\x19Q\xe2$Y,\x10Z\x89\xeb(#.\xee\xe5O\x19\xd2;\x92\xf2\x99\x05\xf6\x9e\xcc{\xc9H\x87\x85if-AS\xeaЏ\x9a\xfc\"8\xa4\xdf\xe8:I\x16\v\x80\xbe\x17\xcbd\xfa\x97\xc4ĴI\xefHJg\x16\xdc{\x12\x92\x01\x92F\xfa\x8d\xae\x93d\xb1\x008Y\xbe\xc4u\xd19>\xd2\x133Y\xa4\x87\xa4\xdf2\x8b\x05\x92\x01\x92䤶\xaa\xe7\x17\x15C\x92\xc52\xc1\xd16\xf2\xd8[\xfd\x90\xaa\xfc\x90\xf4Wf\" \x19 I\xb4U\xbd\xe3T\x96$\x8be\x82\xb9j\xaaE\xae\uf2a5\x03\xf9!\xe9\xaf\xccD@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x00\x00\x12@2\x82\xb00u\x11\x9c\xffez\b\xbe\xc7\xfdK\xb6\x8fon\x93k\x92\x91\x93\x9e\xac\xc19sj\xf8\x99\xb6z\fT,Iu\xc8ɡ\xbaҊ\x86=\x151\x12\x167\x87\xe0\xfcE\x81<\xb9\"\x199\xed\xc9\x1a\xa43g\x02\xa6\xad⁊%\xb9\x0e9h+\xadٸu6\x89\xfdi\t\x9f\x1c\x82\xf2\x17\x05\xf2\xe4\x8ad\xe4\xb8'k\x80Μ\x89\x98\xb6\n\x06J@\x92\x1d\xe2\xf8j\xe2\xfc^J\xbb\xabE\xbfF\x13?\x87\x80\xfcE\x81<\xb9\"\x19\xee\xdfw\x17\"x\x17\x86œ58g\xceDL[\x13\x93\x8c$;ı\xacD\xfb\xed\xba5\xf2\x92\x11\x90\xbf(\x90'\\\x92\x91\xbf\x9e\xac\x819sZ=\xa6\xf4\x93\x05\xe5ъz\xe6\xae\"\x1e(\xae2.\xd6&\xb9\x0e\xf1\x03U\xad\x1b}|\xb1\xa6W:\a\x81\xbf\xa8\xa8\t\xa7\xe5\xaaل\xafS+\xf0&\\\x92\x91\xaf\x9e\xac\x01:sZ=\xa6{Joi\xd9\xd5L\xd8H\x8a\aʮ\x8c\x8f\xb5I\xaeC\\@o!\xb7\"!\x99\x83\xc0_TԄ\xe3e\xb1\x9a\xf0uj\x05ބL2\xf2֓50gN\xab\xc7=Uu\xeal\xef\xdd\xf6\x95\xd7@q\x95q\xb1<\xc9u\xc8\x0e8Ν\xd3\xc8\xe6\x10;\xbe^\xaf\x85\xb5\xc9;\xc0\xfa;\xb5\x02\x0fB'\x19\xf9\xe8\xc9\x1a\xa43\xa7\xd5\xe36\xf2\x81\xb9O$%\x19\xe9\xe8q\xff\xd2o\xe3\v\x04@2\xc2Lr\x92\x01@\n@2BL&\x9d9A\xbe\x02\xc9\b1\x99t\xe6\x04\xf9\n$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$#\r\x0e\xa5Y\xe9\x19\x1a|7\x93$+G\a$L\xaeIF6{\xb2R\xfa\x8f\xa6kJ\xea\x13\xf8RH\x06\x8cX\xe3\x11l:pT\r7\xb9\"\x19!\xf0dU\xa9\xad\xd8\xf0P\xc9i\xd13N2`\xc4\x1a\x8f\xa0Ӂ\xa3j\x98\xc9\x15\xc9\b\x81'\xabzHN\xd6\xd1>\xf7\xaf\xdc\nɄ\x11\xab\x00sH\x82N\a\x8e\xaa!&W$#\x04\x9e\xac\x94\x1e%;bw\nɄ\x11\xab\x00sH\x82N\a\x8e\xaa!&\\\x92\x11fO\xd6ޫ\xf4$\x1fs\xc5r\xae\xa3i7b\xf5jت\x97\x87\x1b\x92\x80\xd3\x11:\xaa\x82\x90\x10.\xc9\b\xb5'\xeb\a\xed[Is;\xfb\xe5sG,\xe7:\x9av#V\x8f\x86\xedzy\xb8!\t8\x1d\xa1\xa3*\b\t!\x93\x8cP{\xb2\xf2'&V,WC?\x18\xb1\x8a\x1b\xe6\xeb屆$\xe0tģ\x03\xc2A\xe8$#̞\xac\xbcd\x98\xb1\\\r\xfd`\xc4*l\xd8Q\xaf\r7$\x01\xa7\xe3\xe5X\v\xc2@\xe8$#\xbc\x9e\xacN\xc90c\xb9\x1a\xfa\xc1\x88Uذ\xa3^\x1bnH\x02NG<: \x1c\x84X2\xc2\xe6\xc9\xea\x94\f3\x96\xab\xa1\x1f\x8cX\x85\r;\xea將$\xe0tģ\x03\xc2A\x88%#l\x9e\xacN\xc90c\xb9\x1a\xfa\xc1\x88U\xdc0_\xaf\x03sH\x82NG8: \x1c\x84L2\xc2\xecɪ_1y\xa7\xcfe\t\xca\xf5\"\xedF\xac\x1e\r\xf3\xf5\n\t:\x1d\x91\xa3*\b\tᒌ0{\xb2\xf6\x96i\x01EGܱ\\/\xd2m\xc4\xea\xd50W\xaf\x88\xa0\xd3\x11;\xaa\x82p\x10.\xc9H\x03iq(M\xabghR\x16i\tt3\xa9z\x93)\x96\xd6\xd1\x01\xe9&\xef%#\x1d\x0e\xa5\xe9\xf5\f\x95\x9f\xa3\f\xffn&W\xaf|\xb1\xf4\x8e\x0eH7\x90\x8c\xd0!=G\x13$\xc9z\x93,\x06\xc2\n$#l\xa4ˈ5\xc9z\x93,\x06B\v$#l\xa4ˈ5\xc9z\x93,\x06B\v$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$\x03\x00 \x01$#\rf\xa5\xd9\xee:\x1a|\x8f\x03%ۇ/\xcf\xc95ɀ'\xab?\xa9سr\xa4-I\x98\xb6f5\xb9\"\x19\xf0dM\x98\x94\xecY9Ҙ$L[\xb3\x98\\\x91\fx\xb2&J\x92\xf6\xac\x1cA:\xb5z\x00\xd3\xd6\xec%W$\x03\x9e\xac\x89\x92\xa4=+G\x90N\xad\x1e\xc0\xb45{\t\x97d\xe4\xbb'\xab\xe5q\xba\x90\x14\xadk\xaa\x9c\\\xaf}\xeb\xdc\xea\xe6B\x12\xddhuފu\xd4\xe0k\xcf*n\xc2\xc6ߩ5\x80$aښńK2\xf2ܓ\xd5\xf68\xfdhk\x11\x99\xba\xaay\xea8\xa6nV7\xd9ފ\xe6\x9fMd\x9d\xb7c\x1dM\xf8ٳz4a\xe3\xeb\xd4\x1aD\x920m\xcdbB&\x19\xf9\xed\xc9\xca{\x9cF\xa7\xa9\x85OW\xd58\xbaI\xa3e\xea\x87w\x03\xeb<\x17\xebH\xd2ǞU܄\x03\x1f\xa7\xd6 \x92\x84ik\x16\x13:\xc9\xc8cOV\x87ǩ\xbe\x88\xb9\x9e|\xc5uS\xdd\xfb\x105:\xcf\xc5:\x92\x8co\xcf\xea\xd1\x04\x87\x9fSk I´5\x8b\t\x9dd\xe4\xb1'\xab\xc3\xe3T_\xe5m'\a\xb8n\xf2\x9d\xe7b\x1dIƷg\xf5h\x82\xc3ϩ5\x90$aښńX2\xf2Γ\xd5\xe1q\x1a]\xc2Jo$g\xb8n\xf2\x9d\xe7b\x1dIƷg\xf5h\x82\xc7ǩ5\x90$aښńX2\xf2ϓ\x95\xf78\x8d^\xa3Ω\xee\x1bj\x1d\xdd\xe4:\xcf\xc5:\x92\xf4\xb1g\x157\xe1$\xbeSk I´5{\t\x99d\xe4\xb7'+\xefq\x1a%\xb7l\xdb\\]ƒ\xb4\xba\xc9w\x9e\x8f\xe5\a\xcaǞգ\t!iL\x12\xa6\xad\xd9K\xb8$#\xcf=Yy\x8f\xd3\xe8\xe3\x8d\x13+\x1b>c\x9bV7\xf9\xce;\xfcP\xb9&|\xecY=\x9a\x10\x91\xc6$aښńK2\xd2@\x02f\xa5\xf2\xf4\x83\xebh\x9c\x9b\\}H\xb8\xc7\xc97a\x92d\r\xfd0| i\xf2^2\x120+\x95\xa6?\\G\x93\x9c\x8d\x8cD{\x9cB\x13\x06\xc9\xd5\xd0\x1f\xc3\a\x92\x06\x92\x11R\x92\x9b\x8dR\xa4\xdeD\xea5\x80\xac\x03\x92\x11JNjk\x88~Q)\x91z\x13\xa9\xd7\x00\xb2\x10HF(\xd1\xd6\x10\x8f\xd3t\x92z\x13\xa9\xd7\x00\xb2\x10H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02H\x06\x00@\x02HF\x1a\x1cJ\xb3\xc7TT\xeb[\xf6\xa4\x03r\x80\\\x93\x8c\xec\xf6d\x8dK\x1a\xe6\xaa\xc97\fr\x9a\x10KF\xd8,\xfc\xc0'RD\xc6fn\xc6\x1a\x06Y\n$\xa3\xbf\xe8k,iڶg[SIS\x12\x1f\xf9G\xdb\xc8co%Q.e2\xd60\xc8V \x19\xfdFߎ\xba\xcaheݎd&\xe0\\BH\xd1Q\xbf\xa84\x90\xb1\x86A\xb6\x02\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\x00\x00H\x00\xc9\xc8iOV\x0eس\x82@\xc85ɀ'\xab\a\xb0g\x05\xc1\x90+\x92\x01O\xd6\xf8\xf4\xa7=+\xc8irE2\xe0\xc9\x1a\x97~\xb5g\x059M\xaeH\x06z\xb2\xf2Χ\xd1\xc7\x1b'V6|\xc66\xad\xbe\xf1=v\xb8\xa4rM\xa4j\xcf\x1aL\x0e '\b\x97d\xa4\x81\x90x\xb2\xeaĹ\xb3Շ \xecYu\x92\xcf\x01\xe4\x04y/\x19!\xf1d\xd5Ia\xba\x06`Ϫ\x93B\x0e \x17\x80d\xf4\x17\xa9y\xb2\xead\xc3t͆\x1c@\x06\x81d\xf4\x17)y\xb2j\x9c\xd4\x16\x19\xfd\xa2\xd2K6\xe4\x002\n$\xa3\xdfHœUC[d\xe4n\xe3\xcc\x04ِ\x03\xc8(\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\f\x00\x80\x04\x90\x8c\xbc\xf2d\r1\xf1\x065\xec}\v\x15\xb9&\x19!\xf6d\xd5ГL\x835jl7\x9dx\x8cN,)\x8f\x0e\xa5\x87\xeaJ+\x1a\xf6T\xc4L\xf3\xb89\xc4\x19T\xbf\xbe\t\xd9U\xb1\xc3/$U\xfa\xa1\x89\xd4\xf0\x9d-\xadE\xc6Ϸ\x16\xd9z\x9d+\x92\x11bOV\az\x92\x81X\xa3\xee\xe1\u007f}+\xb6\x9b.ģ\x13K\x00\xa3\xd3VZ\xb3q\xeblB\x8e\xb8\x9f\xf0\xc9\xc1kP}\xfb&dGi\xac7C\xc0\xa4\xdcĞx?\xa0\x96\x02\tϖ\x16\xd2\u07be\x9e\xacko\x1f\xddb=\x93+\x92\x11bOV\x17Z\x92AX\xa3\xdaC\xe2\xe8\xa6'\x82\xd1\x11\x90\xfa\xe8|5q~/\xa5\xddձ\x92ᗃxP\x13\xe9\x9b\b\x89\x03\x13\xf3\xad!\x8bD\x13B\xf8\x97P\x06\xbf|\x13\x9e-\xeb\xa2\xec\x17\xe9ߦ\xb4\xc4V\xeb\\\x91\x8c\x10{\xb2\xba\xb0%#EkT\xfe\u05cb\xb9nz\x92\x98d\xa4>:\xcbJ\xb4_\x01\\#/\x19\xe2AM\xa4o)b\xbe5\xfa\x1b\xfe%\x94\xc1/߄gK\xef'\x86d|\xd2k\xed\x0f\x97d\x84ٓ\xd5\x11`\x9b\x95\x9e\xb9\xaf2ZU\u007fP\v\xb1\x93\xf4\xb0F\xed^:\xa3\U0010edefmc'\xa1/[\xa7\xfe\"\xefTǐ\U0001eb1f,(\x8fVԳ\xdf9\x17\x8f\x0eo\xa3j\xc7ڤ>:\xd5?\xd2*\xfabM\xaft\x0e\x02\xa3[\xaeo\"3X\x8f\xccN\x97\x10Rh\x9a\xb8qC\"\xf2\x90\xe5\xde\x1a\xe9j\u0082\u007f\x83s/!\xdb|Z\xaf\xd7i\x8a\x1b7߀f\xcb>\xdd\x04\xc7\xca!\\\x92\x11fOVG\x80mV\xba\x834\xed\xd9V_\xb8\x8f:\x92\x14[\xa3\x9e\xbe\xa1|M\xdbBB6\xe8'\xa1橿\xc8;\xd51$\x9c'\xeb\x9e\xd2[Zv5\x136|\xe2\xd1\xe1lT\xb9X\x9b\x94G\xa7\xb7\x90[\x91\x90\xcc!\xd6N\x96\xeb\x9b\xd0\f\xd6+\xb3\x03\xed\xed\xc5\xc6\a,ׄ\xd0C\x96{k\xa4\xab\t\x1b\xee\rν\x84=oV5\xb1z'\xbe\xd1\xed0\xc5\xf5\xc97\x98\xd9bH\x86\x95C\xc8$#̞\xac\\\x00W\xacg\x9b\xfa\xee껉\xfd`:\x97\xa4\xd8\x1a\xb5\xb1\x8c}N-Q%\x837\x0e\xf1\xf0N\xe5\x8fj\xadn\xf6Tթ\xb3\xbdw\xdbW^\xa3\xc3gf\xc7\xf2\xa4::ǹs\x1a\xd9\x1cD\x83j\xf5\xcd\xcb\fV\x94\x19\xa3D\x9f\xcf\\\x13^\x1e\xb2\xd6[#}MXpop\xfe%lf\xc7\x04\r\xday\x99m\x8a\xeb\x9bo \xb3e\x9fi\xb5g\xe4\x10:\xc9\b\xaf'+\x17\xc0\x17\xfbb}\xdd\r\x13\xc9l\xeaHRh\x8d\xda7N{\a~\xe4\x92\f\x0f\xefT^2\xacn\xb6\x11\xeb\x87Gţ\xc3U\xc6źHitz\x8b\xec\xc3\x16\xd9\x1cD\x83j\xf5\xcd\xcb\fV\x94\x19Ø\xcf\\\x13b\x0fY\ueb51\xae&8\xb878\xff\x12\xfem\xf4a\xda;q\x17۴Mq}\xf3\rd\xb6X\x92a\xe4\x10:\xc9\b\xaf'+\x17\xc0\x15\xdbWQ\xb5\xb4\xb5\xbdv6u$)\xb4F\xfd\x9b\xfe\xf9\xdc\xed\x92\f\x0f\xefT^2\xacnr\v\xaa\xe2\xd1\xe1*\x13/\xbe\xa6>:\xc6ZFo\x9b|\x0e\xa2A\xb5\xfdf=\xcc`E\x991\x8c\xf9\xcc5!\xf6\x90\xe5\xde\x1a\xe9j\x82\x83{\x83;^º\xc7i[\x99\ue8edU\xcaLq}\xf3\rd\xb6X\x92a\xe4\x10b\xc9\b\x9b'+\x17\xc0\x15\x9bQ\xc3\xdeN\vT\xc9\xe0\x93\x14Z\xa3\xf6\xe9\xef\xc0ödh\x1f\x04\x1eީܐ\xd8\xdd\xdce[\xa5\x89G\x87\xabl\x97\xd0V-\xf5\xd1YV\xa2\x99@l#\xa7\xa4s\x10\r\xaa\xd57/3XQf\fc>sMxx\xc8\xdao\x8d\xb45a\x13+\x19\xfaK\xb8\xa3\xbc\xf7\xa1\x1fj\x11\xb6)\xaeo\xbe\x81\xcc\x16[2\xf4\x1cB,\x19a\xf3d\xe5\x02\xb8bU\xec\xdd\xd6w\xb3*\x19|\x92bk\xd4\x05\xe5\xea\v\xdeנIƸ\x85CSm\x00\x00\x11\xbeIDAT\xa5\xeafM\xd4Y\x19\xef\x9d\xca\r\x89\xdd\xcd\xee\x8aZ\xf6I\xb5h\x89\xd7\xe8p\x95q\xb1\x1c\xa9\x8f\xceW\x13\xefe\xd7Jj\xa7I\xe7 \xb6\x935\xfb\xe6e\x06+ʌa\xccg\xae\tO\x0fY\xf3\xad\x11t\x13ǛcT\xd9!\x19\xdcK\xd8[\xbec\xb2v^\u0099\xe2\xfa\xe6\x1b\xc8l\xb1%C\xcf!d\x92\x11bOVG\x00owz\xdf\xfaU\xb7\x92\xf2\x96w\xf8$\xc5֨\x9fUT\xado\x9d_\xacI\xc6܊\x96U5D\xeb\x90\xd8;\xd5\xf6z\xa5\\7\xf7\x14\xcf\xdcж\x88l\xa6^\xa3\xc3\r*\x17k\x13\xc0贍\x9b\xfbbk]ћ\xd29\x88\xedd;\t\xcd`=2\xeb}\xbb\xbd\xbd\xb8\xb1\xfd\x8d3\xce&\xfc\fYC\xf0\xc5Ɔ\x80C \xe8\xe0\x93M\x0e\x02\x81\x18\x88\xcd\x06\a\x13\xb3X\x84\xb0\x868Ƒ\x8dM\x1c!\xa2\xa1v\xfac\xba\xde\xeayk\xaa\xab\xa7{F\xd5\xf3{ \xc90\xe9\xa9z\xab\xde\xd6o4\x1f\xea'\x1a1\xac\xc1\xaf\xc8(\x81\xa19Y\v#z\xfbӑR\x969\\\x8c\x9b\xea\xf1\xdan\x89̂ޝZ\xfc\x17G#\xd4Յ5\x8c}d\f\xcd\xc9Z\x18\xb9\"\xa3\x8ce\x0e\x97>\x9b\xea\xeb\xda\xda_M\xaf؎IX\x9b\x89\x03s\x84\x91\x11ր\xc8\xf0\x8e|\x91\x01\xf6\x1fOg\xcf\xefَ\x89hn\xb6\x1b\x17\xe3ۣ\x8a\x8cn\r\x88\f\xdfx\xb4.>\xb9[\xe2/1`\xff\xb1+\xde=W\x8f^\u008cL\x8a\x9bԀ\xc8\xf0\x8d\xd3B\x88\x83\x8flG\x81Jќj\xfc\x1c\xdd\x1a\x9d\x14\xb7[\x03\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\x03\x00\xe0\x00\"\xa3\x04\xa1\xe7\xbet\xb2\x0eN\xf1\x1b5\\`u-\x84\xaaE\x86\xd52\xd9C坬\xc1`\x91\\C\xbfX\x8e\x8e\xdd\xc9j3\x9f\xdaG\x88\x19x\u007fau\x1d%U\x89\x8c̖\xc94\xd5w\xb2\x06\x83=\x93\xcf.\x89\xaf\xfe\xe8s\xb4\xd5\xc9j5\x9fZG\x88)`\u007fau\xcdJ\tVתDFf\xcbd\x8aqp\xb2F\x17\x12\xdd\x14\xe9\x8b\x18\xa6`v\x87\x90\xc5|\xda\u007f\x84.\x83\xef/\xac\xae\x99)\xc1\xeaZ\x95\xc8\xc8l\x99L1\x0eN\xd6B\"#\x8b\xf94[d\f\xbe\xbf\xb0\xbaf\xa6\x04\xab\xab_\x91Q\x90eR1\x16NV\x1a\x19\xb6\x89M\v\x82\xd5u\x00\xe5j\xb5\xac\xae~EFA\x96I\xc5X8Y\x83\xc1vw\xd7\xc3ȰMlZ\x10\xac\xae\x03(W\xabeu\xf5,2\x8a\xb1L*\xc6\xc2ɺ\x15?\xd9le\x98ش X]\aR\xaeV\xc9\xea\xea]d\x14a\x99T\x8c\x85\x93\xb53ؽ{\xf7.\a\x91a\x9dش X]C\xf2)W\xabeu\xf5.2\x8a\xb0L*\xc6\xc2\xc9J\xde˰NlZ\x10\xac\xae!\xf9\x94\xabղ\xbaz\x1c\x19\xf9-\x93\x8a\xb1p\xb2\x92ȰNlZ\x10\xac\xae\x11\xf9\x94\xab\x95\xb2\xbaz\x1c\x19\xf9-\x93\x84qp\xb2\x92ȰNl\\\x10\xac\xae!N\xcaUB\x85\xac\xae\x9eEF!\x96I\xca\x188Y\xb5o\u007f\xda&6.\bV\xd7\x10'\xe5*C\xd1S\x8c\xc0\xea\xeaWd\x14b\x99\u0529\xbe\x93U\xfd\x8d\xc9u\xeb\xc4ҸbX]#\\\x94\xab\fEO1\x02\xab\xab_\x91Q\x02\xa5\b=\xf7\x9f\x93upJ٨\xe1\x02\xabktc0\xdf\xda\xd8GF\x19B\xcf\xfd\xe8d\x1d\x9c\x126j\xb8\xc0\xea\x1a\a&\"c\xcc\x18Ud\x80\xfd\xc7(\xac\xae\x88\f߀\x93\x15\xb8S\xa0\xd5\x15\x91\xe1\x1bp\xb2\x82\x1c\x14guEd\x00\x00\x1c@d\x00\x00\x1c@d\x00\x00\x1c@d\x00\x00\x1c@d\x00\x00\x1c@d\x00\x00\x1c@d\x00\x00\x1c@d\x80!\xd2nG\xff\x00\u007fAd\x80a\xb1\xbd\\\x17\xefK\xf9\x91\x98]N_\x83\x00\xf8\x03\"\xa3\x04\x1d\xe7(\x9c\xaců\xa2h\xda'O^\xdfx\xdcI\x8e\u058d\x933\xa6k\xea\x03\x96Q\x9cQ&\xaa\x16\x19\x9e;Ys;8sIE\t9'~\xb9rtr!\xe3\xc4\xd1e\x83B6Ń>\a\x96H\xcee\xf6\xa55!N\xb7\xe5M!&6l\x87R\xfa\x9c\xa91\xcbB\x88\xc3џ\x06\xe4?\xa3\x8a\xa7*\x91Q\x11'+\xeb\xe0\xcc\xe0\xd5\xcc'\x15%䜸Q\xbfvv2\xe3\x05\x1b~\x10\xdfuo\xdeK.\xd0[\x16\x86\xd2\av\x9c2\xecn\x88ɖܹ)6\x9c~u\xeas\xa6\xc6tS|ߝ\xf0\x81ؔFH\rj\\C\xe75\xb8=\xa3+f\x97I\x1b\xc0\xa2\xe9o9\xa3j'2\x1e\xff\xedf\x14\x19N\xf5\xd6>\xfeG\xa2FUg*\xb9\xa9g+\xa3\x93\xe5ڢ\x9fg\xdd\xc1\f\x9dσ_\x91QA'\xebީ\xfa\xd5\xe6\xa1\xc9/\xe7/S\a'/W\xb5\tS\xb5{\x13\x8b'\xa97]d\x97d\xe2\xc0\xd7Yo~q\xa4\xb3}\xf6\x89\xff\xdb\xfaF4[\xc1\xa5\xdc%\x11\xbc\xf2\xfa\xd0?\x9fo\xceM'\xa7\xfc\xde\xccܝ\xdfL\xaf\x11H\rd\\\xbe\xf3\x14vϴ\x15s\xcb\xd4\x1a\xc0A\xf5\xb7\xacQ5\x88\x8c+\vQd\xb8\xd4\x1b^\xe8\xfb\x9b\xbf\x86jTu\xa6қzd0:Y\xae-ڊ\x93\xc1L\x9dρg\x91Q='\xebZ\xf0\xe1\xc1U\xd1\xfd\xa2B\xec\xad\xe0\xe5\xaaVa*\xb9\x97\xbaH\xa9\xe6S+\x92\x10O,kӝ\xa7ޥzt\xacm\xe2\xe4\x85\t\x11\xbc\xf2\xfa\xd03\x9d'}\xf2\"f]\x90k\x97\xf7\xa0j \xe3\x9a:\x9f\xc0\xefYjŽ\xcbL5\x80A\x99qx\xa3j'2\x9e\x1fz\x1eF\x86K\xbd\xb2v\xb2sR\ue798\xd3\xceTrS\xea\x91\xd1{F\x99ڒ\xdc\xd4\x063u\xde\x15\xef\"\xa3jN\xd6\xd5i\x19\\.\xbe\xfb\xc6I|J\xf3rU\xab0\x95\xdcK]\xa4T\xf3\xa9\x15IH~\x96\xce\xca\xe4M\x1f\xeb\xc4꽌D\xf0jЇ\xfe\xba~\xed\xe4kɋ\xfd\x9d\xfa\x9bW6\xcc\x17\x86\"5\xa8qM\x9dO\xe0\xf7,\xb5\xe2\xdee\xa6\x1a\xc0\xa0\"\x837\xaav\"C.\\\x89\xde\xcbp\xa8W\xd6>\v\xfe}M\xfcN\xceTzS\xa6##}F\x99ڒ\xdc\xd4\x063u\xde\x15\xef\"\xa3\xd7\x11\x199-}u\xb2^\x9ex\x11\xfc\x98=\x8c\xffO\xf7\x94f\xe5\xaaVa*\xb9\x97\xbaH\xa9\xe6S+\x92\x90\xfc,%ۗa\xe2$2\x94\xe0լ\x0fm)\xe3\xc6=\xd1\xf7+\f\xaa\x062\xae\xa9\xf3\nv\xcfR+\xee]f\xaa\x01\fdKX\xa3j\x10\x197\xdf\t#é^\xa5FUg*\xbd)\xf5\xc8\xe8=\xa3LmInj\x83\x99:\xef\x8aǑQ\r'\xeb\xaf\a\xe6\u007f}p\xe2t\xf7en|J\xf3rU\xab0\x95ܫ\xb9H\x89\xe6S+\x92`\x8c\x8c~\x13'\x91\xa1\x04\xaff}h\xf6OLT\rd\\S\xe7\x13\xf8=K\xad\xb8w\x99\xa9\x060(\xfd-oT\r\"cwj#\x88\f\x97zc5\xea\x97\xe2\x0fr\xa6қRߨ\xde3\xcaԖ\xe4\xa66\x98\xa9\xf3\xaex\x1c\x19\xd5p\xb2\xde\x17G\x85h<\xed\x1e\x12\x9fҼ\\\xd5*L%\xf7j.R\xa2\xf94}\xfa\xc8E\x86u\xe2$2\x88\xe0ը\x0f\xe5#\x83\x91\x8a\x92\x1aȸ\xa6\xce'\xf0{\x96Zq\xef2\xf5\x06p\xe5(\xfd-oT\r\"C\x9e]\n\"å^Y{#x\xd3\xe7TC;S\xc9M\xa9m\x14sF\x99ڒ\xdc\xd4\x06+\xeasg\xcf\"\xa3zN\xd6\xfb\x876\xbem=\r\a#\x0eNV\xaej\x15\xa6j\xf7R\x17i\xb7\xde\xd4ú\xa8\x89\xb5\xed\xb3M\x1c}b\x12^ߞ\b^\x8d\xfa\xd0\xfb\xea\x17\xeb\xef\xd5筽RQZ\x83\x1a\xd7\xd8\xf9\x04v\xcfh\xbd\xfc2I\x03\xd8r\xa8\xfe\x965\xaa\xeen\x88\x9b;\xb25\x19D\x86K\xbd\xb2&\xe6\xefn̅jTu\xa6\x92\x9b\xbf\x05\xdf\xfe\xbc\xd2jEoAp:Y\xae-Z\x8f\x93\xc1\f\x9dσ_\x91QA'\xeb\x9dZpo\xed\xbd\x87\x9a\x83\x93\x95\xab\x1ag\xeb\xaeB\xbf\x97\xfaP\xe3z\xd3\x0f\x8bQ\x13k\xdbg\x99xo:\xbcy0\xf8\x14\x96\n^M\xfa\xd0\xe7\a?|\xb0\xddi\xc6\xde\xf6\x8f\x1fԶ\xbbs\xf7HE\xb5\x1a\x92qO\x1b;\x9f\xc0\xee\x19]1\xbfL\xd2\x00ɕC\xf5\xb7\xacQus\"\xf8\x86N{\xaeޖN\xf5\xcaS\xcd\x0f\xff\x12\xabQə\xaan\x9e\x8d\xca\x15\x1f\x05w\xf3:Y\xa6-Z\x8f\x93\xc1\f\x9dσ_\x91Q\x02\xa5\xe88\xb3;Y\x9fM\xad<\xfb\xf3\xcfW?\xbc\xffZƿ\xd4\xe0)e\x15Es\xebT\xf8\xf3sF\x88\xe3\xe4\xf3\t\a\xa9h\x19\xa4\x1b0\xe2rLd?\xa3Jg\xec#\xa3\f\x1d\xa7\x83\x93\xf5V\xf45\x02ٞ]\xef\u007f\xa0\x85\x12VQ\x02\xcf\x1et\x9eS\xb7\xef\xff\xa6\xeeq\x92\x8a\x96\x81ހ\x91\x97c\xc0\xe1\x8c*\x1dD\xc6h\xb9\u007f \xfa\x85\xf8\xe1\x01\xf55\x8aq\"\xbbT\xb4$\xf4\x06\x8c\xbc\x1c\x0f@d\x8c\x96\xf6\xf2\xe4\xca\xda\xe6\xda\xca\xe4ʾy\x16\x19/\xd0\x00W\x10\x19#\xa6}{\xfe\xf5\xda\xeb\xf3\xb7q\u008e\b4\xc0\x11D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x02u\xe9\"2\x00\x00\xfdH\xb9t\x11\x19%\xd8L\xf7\x93A\x93\xa3\xf8\x15\x83\xea\x92v\xe9V-2\x94\xacإ\x1c\x17\x9b)\xd9Iݒ\xfaY\xb4g\xda\b\xc4ߪX]\xbc\xfa\xbe\\\xb8։\f\xe2C\xd5z\x9cԻ\xd5\xd9\xf5\x85\xf61!\xa6\rW\xc61\x99pw>=9\xf5\xde\u007f\xdeX\xd7\x0e&\xa5\x1b\x1a\x90řp\x97\xa7\x83'\xd3\xf3\xa9\xc8 \xa5\xf3\r\xa0\x0fS\x95\x19:d\u007f}\xc0UF\x1a+ɋ\x02\xb2}:\xc3w\xe9z\x17\x19\xfe:Yy\xa1\xa7\xb2\x83\xd2\"\xb7\xc4\x17\xdfߞ\x9b|\xac\x1fK\xad\xa3ћ\x98Wu\xa1'Q\x8d\x1afS+v)' \xab͔\xec$\xad\xf7\xc9\xc4Or\xefȆ>\x02\x15\xc7*:\x91qI\\\xea\x13\x19ڂv\xdf9\xda\xff\xe3BƄ\xdb>\x1c=7\xa7\"\x83\x94\xce6@{\x98\xaa\xccС\f\x91\xc18zIc%\x89\f\xb2}:\xc3w\xe9z\x17\x19\xeb\xbc\xe9\xd2\a'++\xf4T\xf5\xd2\"×ү\x0e\\\x93\xfa\xb1\xc4:\xca\n=\xad\xfaP\xeaou(' \xab͔\xec\xa4fI\x9d\xbf ףw\x1c\xd4\b\xfcۋ\x9d\xe6\xbe\xf8\xf4Y\x9f\xc8\xd0\x1d\xa77\x19\xfb-\x851\xe1>\x89rn'\x15\x19\xa4t\xb6\x01\xda\xc3Te\x86\x0ee\x88\f\xc6\xd1K\x1a+\xe9[\x8fj\xfbt\x86\xef\xd2\xf582|s\xb2\xf2BOU/-2z\xf7\xed\xc8E\xa9\x1dK\xad\xa3\x91\xd0\xf3\xba.\xf4\xa4\xde@~6\xb5b\x97r\x022\xdbL\xd5Nj\x96\xd4۳{g\xff\x9e\x1aa\x831\x80E\xcd\xed\xa0\"\xe3_\xb5\xf0\x0e^\x11\xfb\xb4\xfe\xcf\xe3/\x99Q\x12\x18\x13n;Z\xccO\xe9\x17&\xaat\xb6\x01\xda\xc3Te\x86\x0eQ/,\x0f\xe7\xe8%\x8d\x9542\xd4\xf6\xe9\fߥ\xebqd\xf8\xe6d兞\xa4^Rdt\xc6\xd6\xcf?\xf8\x9c\x1eK\xad\xa3\xb5\xa3\x9dH\xday\xab\xa1\x8b7\xd5`\x86\xd9Ԋ]\xca\t\xb0\xd9L\tݝ\xd4,\xa9{\xb3\xb7_\xdbH\x8d\xa0\x89c\xe5\xe3\u007f\xff\x12\xfe\x97F\x86\xf2\xa1\x1a\x14\xb1{s\x17\xe5J#n\"gTeM\xb8\x1f\xccv~\x1c\xdaK=\xefe$\xa5\xf3\r\xa0\x0fS\x95\x19:D\xbd\xb0\xd9+#\x8d\x95\xf4\xc7Um\x9f\xce\xf0]\xba\x9eE\x86\xc7NV^\xe8I\xeb%EF_\xd2m,,\xbfM\x97IG\xa8\x89w\u05fe<\xa1\v=u\x9b)3[@w\xc5.\xe5d\xb1\x992h\x96T\xb9\xfa\xd6t\xf0ޠ\xd6!*\x8e\x95g\"\xff\xdf˥F\xf0f\xfevc\xe9%\xf5\xa1\xaa\x1eS\x1f\xea\x9ds\xf5'\xf2\x97#\xe7\uf13f\xb3\xf7\x1aU\r&\xdc\xed\xfa\xb1\xab\xb7\xce\x1cꍌ.|\x03\xe8\xc3He|\x87H\xbd\x0e\x95\x91\xc6\xeaN\xd6x\xfb(\xa3q\xe9\xfa\x15\x19>;Yy\xa1\xa7VoRd\xf0ՏK\x9d1O\xcc\xde&\xc7j#\xd4.,\x1fI\v=\xe9`\xecl!\xf1\x8a\x1d\xca\xc9d3eЦ\x90\xff\x13\xe1s\xaf\xae}\xa5\xe2\xd8\x1b\xf5k\xc1\u007f\x9aB\x04\x1fF\xad\x04\xdf~!>TV\x11\x1b\xbc\x83\u007f^~,D\xf4\xd5\xee^\xa3\xaa\xc1\x84+_,\x1f\x9bl\xdc7F\x86\xa1\x01\xf4a\xb42\xb6C\xb4^\x87\xcaTc5'kw\xfb(\xa3q\xe9\xfa\x15\x19%P\x8a\xcdt\b\x06\xcd\xe4M\x18g\x8aZ\xb1\xabNv\xa76\xd0_ld\xc2ͨ\x9a~\xfb3#\xb9\x1e\x96\xb92Sc\x87\xb1}<)\x97\xee\xd8GF\x196\xd3a\x184\xf3GFQ+v\xd5ɮ͔\x1d\xa3\xaeF\xd5\\?\xfb\xb9\x1e\xe6P\x99\xa9\xb1\xe5o\x9f\x19ͥ\x8b\xc8\xf0\x94\x01\"\xa3 \x9ct\xb2\xcd\xcdv\xe3\xa2\xed\xa0Aq5\xaa\xe6\xf8\xd9\x0f\xc8\xf10\x87\xca\xd8\xc6\x0ee\xfb2\x82\xc8\xf0\x92\xa7\xe1\xdb]\xb6\xa3\xca\xc5\xc5f\xba+\xde=W\xcf\xf8\x9b\xf9\xd0x\xb4.>\xb9k\xaf=M·e\x83o\xec\xbe\xda>D\x86\x97\x84ow=\x96\xa3\xc5\xc5fڜj\x18\xff\xdabT\x9c\x0e\xde\x04\xb4\\\u0086!\xe7òah\xec~\xda>D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x01D\x06\x00\xc0\x81\xff\x03&\xf2B\xcdI\x1b+\x96\x00\x00\x00\x00IEND\xaeB`\x82", + + "analysis/typeinfo-src.png": "\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x02\xc1\x00\x00\x01\xb3\b\x03\x00\x00\x00\xf9m:\x11\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x02\xfdPLTE\x00\x01\x00\n\x03\x01\x05\a\x03\x02\r\x14\n\f\b\x10\x12\x0e\x0f\x13\x1e\x1b\x1a\x14 \x1f\x19\x1c \"\x17!;!# #$\"$%#&'%'(&+)\x1e()'\x18-T*,)/,!-/,12053'35386*6758:7<:.<>;>@=CA5&CxAB@EFDIJH\x00g\x00KLJ\x00j\x026NzNOM0R\x95\x06m\x06UP?PRO>V\x82\x0fq\vTVS\rr\x17\\WEVXU,`\xae7]\xad\x15w\x1c[]Z8`\xaa\x19y\x1e;b\xac_a^=d\xae?f\xb0*{!bdaSe\x84)}+Bh\xb3efdDi\xb4ghfLj\xafpiQEm\xb1ikh0\x820Ol\xb2Ip\xb4lnkTp\xa3Kr\xb7npm6\x869Nt\xb9zs[Wu\xb5>\x89=strZx\xb9vwt]{\xbbG\x8eHy{xX\x80\xbf^\u007f\xb9\x85}ea\u007f\xbf}\u007f|O\x93N\u007f\x81~c\x84\xbeW\x95V\x82\x84\x81m\x87\xbch\x88Ð\x86h[\x99Zj\x8ać\x88\x85q\x8b\xc1\x8a\x8c\x89`\x9dd\x96\x8cnt\x8e\xc4z\x8f\xbf\x8f\x91\x8eg\xa1hy\x93\xc9~\x93\xc4x\x95Ē\x94\x91\x81\x95Ɵ\x95w{\x98ǃ\x98ɂ\x9aė\x99\x96u\xa8v\x86\x9b̀\x9d̙\x9b\x98\xa5\x9b|\x85\x9eȂ\xa0ϙ\x9e\xa0\x9c\x9e\x9b\x89\xa1˞\xa0\x9d\xab\xa1\x82\xa0\xa2\x9f\xa1\xa3\xa0\x81\xb0\x83\x91\xa5ʕ\xa5Ď\xa6ѣ\xa5\xa2\x91\xa9Դ\xa7\x83\x95\xa9Χ\xa9\xa6\x8c\xb4\x8a\x94\xac֪\xac\xa9\x99\xadҟ\xaeλ\xae\x89\xad\xaf\xac\x9d\xb1֯\xb1\xae\x98\xbb\x97\xa3\xb3ӡ\xb5ڧ\xb6ֱ\xb5Ĵ\xb6\xb3\xa3\xbf\x9d\xac\xb7\xd2ķ\x92\xaa\xb9ڢ\xc1\xa4\xb7\xb9\xb6\xb3\xbcĭ\xbcܺ\xbc\xb9\xa6Ũ\xb1\xbd\u05fd\xbf\xbb\xb1\xc0\xe1\xb8\xc0կǫ\xcd\xc0\x9a\xc0¾\xb7\xc2ݻ\xc3ؽ\xc4ڲ̷\xc4\xc6ú\xc6\xe1\xc0\xc8\xdd\xc7\xc9żκ\xd8ɝ\xc6\xca\xda\xc0\xcb\xe6\xc9\xcc\xc8\xc2\xcd\xe8\xbf\xcf\xe2\xcd\xcf\xcc\xc4\xd0\xde\xcb\xcf\xdf\xc8\xd3\xc1\xc8\xd0\xe5\xe1ѥ\xd0\xd2\xce\xc8\xd7\xca\xcb\xd3\xe9\xd2\xd4\xd1\xd2\xd3\xdd\xce\xd6\xdf\xdfש\xce\xd6\xec\xcc\xda\xce\xe6֪\xd6\xd8\xd5\xcb\xdb\xee\xd5\xdc\xd1\xd3\xdb\xe4\xd6\xda\xea\xd9\xda\xe4\xda\xdc\xd9\xd2\xde\xec\xd9\xdd\xed\xdc\xdd\xe7\xd7\xe1\xdc\xe0\xde\xe2\xdd\xe0\xdc\xdb\xe0\xe2\xf0\xe0\xb3\xd6\xe2\xf0\xdd\xe1\xf1\xe0\xe2\xdf\xde\xe3\xe6\xe0\xe4\xf4\xe3\xe5\xe2\xe1\xe6\xe9\xde\xe7\xef\xe8\xe5\xea\xe5\xe7\xe4\xe6\xe7\xf2\xe4\xe9\xeb\xe7\xe9\xe6\xe2\xea\xf3\xeb\xee\xea\xec\xed\xf7\xe6\xef\xf7\xe8\xf0\xf9\xf0\xf0\xfb\xf0\xf2\xef\xf4\xf2\xf6\xef\xf4\xf7\xf4\xf6\xf3\xf2\xf8\xfa\xf8\xfb\xf7\xf6\xfb\xfe\xfd\xfb\xff\xf9\xff\xff\xfe\xff\xfc\x11\n\u058d\x00\x00 \x00IDATx^\xed\x9d\r\\T\xe7\xbd\xe7\xef\xb2\xcd&\xbb\x0f\xcc4w.s?e\x8a\xbd\xbc\xe8z-[\xb2z>\x8c#\xd6-h\x16#,6\xd7\x17\xbc\x94+\x95h\xae\xa2\xb7Jbȍ\x8e\x91\xd8\x05\nac\x12r'\x161vg\xbd)+\x91\x98b,\ti41\xb9\x96H,-\x9b\x17\x92\xb6c\x1a-&\xd4\x13\x93[\xaf\n\xfd\x9c\xcf>/g\xe6\xbf\xc1\xc3\xedͽ\xfd\xbd\xcd\xed\xc3\xe1\x16\x03\x00\x1d\x12c\xb0\xaf\xaewdd\xa4\xafq\x04Ow4_\x14aO\x0e\x18/\x891\xf8\x8c\xdbO\xbfX\xd7M_\xe8\xae\v\xb7\x18\x00\xe8\x90\x18\x83\xc5ABO\xfd\xe0\xa0\b\x06\x03\x13\"A\x06S\xe4\xa3i\xb4\x8a\xb8\xd8\fGӀ\xf1`\xa8\xc1\xbe\xfe\xfezo\xff {2\xd2\xdfS\xdf?\x84g67\xf7\xf4\xf547\xc3\xc1\b`<\x18jp\x17\xab}\x99\xab\xfdd\xb2\tO\fw\xee\xafo\xed\x84C\x11\xc0\xb80\xd4`\x00\x88;`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\xa6`$R\x83\x99\v\x18<\x0eF\x86GF\xf0\xff#5\x8b\x17\xfd%ihI\xa4F3\x1608fzggf\xe6eef\x96\x1bu=hf\xa6\xbb\xbd/R\xa3\x19\x8b\xd1\x06k\xa4N\x8dt\xb7ֵ*\xb3\x8d\xe2!A8\xa2\xf3\xd2y\xa7\xb0J\x14\x8f9\x05\x86S\xd5n\u0602rs\x93l\xb9s\x936\x1a\xa3p\x0fj\x8b\xd4d&c\xb0\xc1\x1a\xa9S\xa2\xa7\xbe\xbb\xaf+\x90\x84\xa2\x857܋\xb1\xf2\xe2\xab\xec\xdf\xf7O:[t\x9a\\y\xf9\x01\x97(>)\x9c5\xf8\x99wE\xde\xe0\x9d\xa5\xa4\x94\xbdR\xbaS\xfc\xad@\x0f\x9d\xed\f1\xf8\xd8\xd2\xcb;\xd9X\xebڭ\x8c\xc1\\\xbf\x01\xba*ER\xf7\xda\xdc\xe4\t\xb7銠\xd4\xe0\x8d\xc4\xe0\xf6\x901\xb8.\xe4\xec\x1b\x1c\x8b\bK\x82\f\xa6\xb0:\xb8\u05cd\xcd\xf35yu\x16 \xe4\xe6b\xe7Y\x99;l\xf7\xd8Y>\x955\x8dT\x95\xb3\xf0Km\xec\xa5\r\xdbT\vq\x06\x1fg\x95j\x03=3QU%\x8a\xbf\xa63\x14\x83Y\x83#\xa4\x0e\xae(\xc6>\xbe\xed\n1\xf8\xf2\x9dǖ\xd2\"Bt\xad\xf0\xd7\xc1\xaa~\x03T\xb3sh\xb9k裲\xe9\x8a\xc16\xec\xf8\xc8\\Z\a\xa7\xe5\x92\x0fpYYP[\x1e08,\x86\x1a\xac\x99:u\xda\xdd\xd5\xd7\xdd\xe8\tW\xebU[kZ\xe7\xdb\xd8\xe0T9\x8b\x15\x11\xa2\x15\xcdn\xae˰\x9f!\xf3в\xfd\xad%\xa8\x91_\xe6ͥ\a.\x1dq\xbeyiG\xd5\xfbX\xe3\x05;\x8e\x1c\xdb\xc9|kq\x1d8V\x95\xff\xae\xf8\xeeI\xe7\x03/_y\xe3\x01\xe7I<\x1e\xef\x10\xf6\x1d\xdb'\x90c\x11o\xe6\x17\xb74,\x15\x9cϼ\x89\x9f\xbcq@8 \x9f\xc2\x13\xf7\x95\x16|J'\\\xc2\u007f!\x06\xff\xdfau\xbf\x01\xaa\x91\xadڃ7\x87~&\xfd\x9b>\xdcI\x0f5\x9c\xa1-r\xec۶堔\xfa^\\\"ܞ\xe9\xf6\x94\xa1:\xbem\x10pN.,\x86\x1a\xac\x9d:ս\xbf\xde\xc3}\x97jp\xb1\xccn˕\a\xa2\xd3h%\x9b\xb0\x96\x97\xa4:\x96\xb3ڣ-\xd7n\xcfU]=pe\x85 \x1cY,\xe4\x1f\x11\x04r\xb8\xecx՝\x05U\xc7\xe9+\x97w/uU\xbdJ\xaf\x8b\x10\x9co\xe4\xe3LJ\xc8\xf1\xe0\xb5\xf9k\xd9\xf1\xe0\U000db596\xee{\xc6I\xe6^\"\xaf\xe6\xcb5\xc2\xdb\u0083lµ\x9b\x1e\x0f>=\xac\xee7@cn\xb5Ò\x96˾T\xfc\x9bޝLK\xf5<:\xf3t\xae-5o\x03Bd\xe4=]\xe8H\xcdiU\xb5\rb0\xa5\xb0{а\v\xe1L\x87\xa1\x06\xc7\x03\x9fU\xae7؞\x9cq\\r\xb1\"BޓK9\x1d\xc5\x19\xb9\xf8К\x19\xbc\x97\n(\x98\xce\xe0f\xb9\x880\xdc\xe0#w\xb2\"\xc2x\x83\xf10\xdc\x1df?w\x86c.\x83\xab\xbd\xe2|\xbf\xb8\x11\f\x16&\x91\xbf\"u\xf0_\xf3s\xc2n\n0\x99\x98\xca`\x1f\x9a]\x96\xc6.\b\xeb\xf7ZJ\xc2\xee\xa2\xeb\xd97q\x9c\u007f\xf5\xe7\xd8\xe0\u007f\xff\xe7\u007f\xedT\xe6\x85\xdb\x12`R1\x95\xc1b\xb5-W\xben\xa0\f\xef\x16Y΄o\x1dGZ\xf2\xab\xdefS\x0f\t\xff\xc9\u007fu\xe5~\x03\xeb\b@\x0fs\x19<\x15\xa0W\xb8_\x95\xa4\xd1[\x96Dq}00ـ\xc1\xb1\xe2C(7\xf7\x96\xb4ܹI+\xc1\xe0)\x00\x18\x1c+\xc3^\x87\xdd>\xcbn\xb7\xcf\xef\x82+n\xa6\x00`p\xcc\\\xec?s\xfa̙ӧ\xfb@\xe0\xa9\x00\x18<\x0eHV\x84\x81y\x11@8\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06'\x8c͛\xb5&\x81\x181\xda`\xf9^\\_=\xbdβ\x9e\x9e\xd5\xeao\xado3͕+-\x82\xf3\x18\xfe\xe7x\xbe\xa0\x9f6\x11\x15\xff\x92}\x9f\xc6$\x10+\x06\x1b\xecO\x9d\x1arw\xf7c\xe8\xc5\xee}u\xde3\xdeЛk\xa6(\x17v\xe4W\xe1\u007f\xaa\\;\xd4\xf7\x16\x05Ҭ\xa2\xe5\x9e9\xefhLF\xcbs\xafL\xb4A,ĵ\xb38c\xac\xc1\x81\u0529!w\xc0ؑ&r\vBG\x93Y\x0eN\xed۔\u007fA\xbc\xe0ڴ/h\xbe\x92f\x15\x15o)\xe3\xee[\xe3\x18\x82\xef\xfa\xeeD\x1b\xc4B\\;\x8b3\x86\x1a\xac\xa4Nq\x06\xf7\xd2\xc44_\x9d\xf1\xe9\x95\xe3cߎ\xaa#\xe2\x8f6\xed\b6x]l\x06oV\xc6\xddͱ\x0f\xc1\x91\x9d\x8a\xd8 \x16\xe2\xdaY\x9c1\xd4`%u\x8a3\xb8\x9d\xdd\x1d\xe4\tw\xab\xe7\xe4prS\xb1\xf3\xceM\xc5W\x82B\xa5\x9e\tdQ\x89\xe7\xb7\xde\xe9,\x92\xa7\xfd\xec\xdbq`\xab\xb8\xe9\x006\x98\xe6\xb7\xcaI\xad\xf2U\x964\xcd*\x90E\xf5\xa6S\x106])\x16\x84\x02u\xf2\x9a\x18~\b\xfe\x87\xec\xecG7/\xfc\xc6w\xdf\x12\xc5W\xb2\xb3\xb3\xf7\xbcu\xcf\xc29\xab\xc9W\xd4Swͻ\xeb)\xfc\xef\xff\xc9f\xdcE\x9b\x1fZ=\xef\x9b\xf7\xb1\xf3\x83o}\xf7\x8e\xec;\xfe\xf6\x1du\x83\x17V/\xc43\x17\x8aA\xf8\xdbr\xfd\xe2\x15\x1f\u009b\x93\xfd-:\xf9\xd4}ߜ\xb7\xfa\x97zkSm\x99\xce*\f\xc1P\x83EQ1\xb8}\xbf\xbb\xa9\x83\xfc\xdc[\xd9}\x8c\x1da\x12O&\x877\x16\xec8r\xfc\x99;\x85O\x83C\xa5\x8aZ\x9e,\xa0YT/\xe6WP!\xd2*B\xb9_\x9f\xab\"\xf8,\xaa+;+.\x14\xaboƧ\xfc2{\xb3\xc6d\x809\v\xf1g\xfb7\v\xbfM\xa6\xef\xca^\xcdª\x9e\xcb~N$\x8f?\xa6s\xfd\xdf\xeb?\xc6\xc3&\xb6\x8e<^\\\xb8zX\x14\x87\x0f\xfdF\xd5\xe0\xa9;\xe8\xf0=O\xbd\x06\xae-\xdf\xef\x1cl\xb0\xb8g\x0ei1\xe7\x1b\xf8Cs\xcf\x1d\xa2\xaa3nmܖi\xaf\xc2 \x12d\xb0\xd8C\x8b\xdf\xfa\xce@v\xa5\xd7\xf01\xf8ݢ\xd2\xddϼq\x85~\xc1\xf3\xa1R\xc4c9E\"t\xec\xa4\x06?)<\x19\xc6`U\x16\xd5\xe5u+6\xa9\x83\x01)\xff\x90\xfd\x96\xc6d\x809\xb4\xaex*\x9b\xb8x\xd7\x1cy\x88\xde\xfc-\xfaϷ\xa8\xf0\x01\xa7\xbe\xbb\x90\xfcQ\x8f\x91\x85\x9b\x89^\xdc!\x83@\x83_ޱ\xf0\x1f\x9ezE\f\xba\x1a\x9fk\xcb\xf7\xcb\x1b\xbc90\xa9\xb96n˴Wa\x10\x892\x98AJ\x87v\x16l\xd7ڮ\xd5|R\xb9\xf0\xcc\xf6U\u008a'\xa9`|\xa8\x94([y@\b)_Ej\xf0\x85}\xbf\x0ec\xb0:\x8b\xeaH 3\x85\xe3\x9d9\x9b5&\x15\xa8H\xe2\vԲ\xbb\xee\x92g\xaef\x1a\xfd-\x1b\x99\xfdN\xdd%W\xa9\xf8\xf9\xa3\xd9\x17\x95.\x94\x9d\xaf\xdf<\xf5\xddoe\xdf\U00068a02k\xcb\xf7\xcb\x1b\xacLj\xae\x8d\xdb2\xedU\x18D\x82\f\x96\xb5\xf5zHf\x0f\x1d\x8e݆\x1f\x8bxu\x1fv\xf7\xc2\x11\x17-s\xb9P\xa9\x80\x95/\nZ\x87xI\b\x10F1\xb8\x813\x98\xa4Y\xa9\xb2\xa8\xde/j(\xfemH\x1f\xf7)\xe3\xee}\x1aCp`\f&?\x99\x80=\x9bٞ\xd2Be\f~\x8a|\xcf/|\x85Bˁ\xe01\x984x\x85\xf4\xf5\x9bCs\x9e\x12y\xb8\xb6|\xbf\xe1\f\x0eZ\x1b\xb7eګ0\x88\x04\x19\xec\xa1i\xc1C\xf5\xdd\xe4x0)#\xbc\xc6\x1f\x0fn\xa1\x91\xabb\xd5\x03\xe4\x91\v\x95\n\x18|\xa9\xa8\x8a\f»w\xd3\xf9}\xdb\xd8my\xbc\xc1\xf9\xf8\xe1J\x0538\x90f\xc5gQ]\xaeh\x11\x1f\xa8\n.#\"\r\xc1\xe2\x9c;H\x81\xb9p5\x99\x0e\xaaA\x0f\xb1:x5~\xed\x1d2\xe39V\x93\xee\xc1\xbe\xf9\xee \xb5\xadx\xdf}\xaa\x06{h\x99+\xaeV\xaf\x87k\xcb\xf7;\x0f?\x1f\xf9v\x88\xc1Zk\xe3\xb6L{\x15\x06a\xa8\xc1J\xeaT\x9f\xbb\xedt_W\x1d\x1d\x89\x13uN\xaeE\xc8o9vl\xa7\xc0ĕC\xa5TYT/\xbaV\x1d8\xbe\x9b届\x8bX\xe0\xceowT\x91\xd4\xc0w\xabv\u0875\xa2\xe8ɖ\n9\xa1ʟf\xc5eQ]~\xf9\xa1\xa2\xf7\xc5\xf3\x05\xbb_V\x97#\x91\x86`qN\xf6]\x87\x9e\xfa\xe67\xde\x12G~J\x8f\x03\xb06\xf7d\xdf\xf7\xe3\xfb\xb2\xef\xa1\xd3{\xe6\x91/\xab\x04\x83\xa3\a\f&\xb4\xbcx\xa5j\x82\x17K\xc6\x1508z\xc0`\xcc%\xa1\xe2\xa1\"\xf5\x99\xb7D\xc2\xf6\xa2\x80\xe8\x00\x83\tJ\xa8\xd4T\x80\xeeEi\x1d\xa2\x004\x00\x83\x01s\x03\x06\x03\xe6\x06\f\x8e+I\xe6\"\xd2\xdb1\x03`p\\I\xfa\xc8L\x80\xc1@0`\xb0\xe1\x80\xc1q\x05\f6\x1c08\xae\x80\xc1\x86\x03\x06Ǖ\xa8\f\xe6\x1b=rk\xd0\"!3\"\xa1\xd7<\x8an\xc0` \x98\xa4h\xcc\xe1[\xdc\xf6à\x17Cf\x84!)\xf0\xa0\xf9b\xe0\x90\x83N\v0x\xfa\xc9W\xf04\xf9r\xff9\xb6\xeb\x16~\x97*P,\xcb\x13\xb7\xf8[\xc9\xf3\x94\x19I\xbf\xf8H\x99\x1bx\bt\xa6̥\xb3\x03+\xa3\x13\x81\xf9\xfa\x1b\x93t\x80ރ\xfa\xfe\x8e\xa2\x82\xadPEDIh\xea\x147\xd7P\xbc\xa9\xa8|>\xb2oK\xab\xc1OJ\x92\xcb<\xb5\xf6\xd9#\xa2\xafÛ\x91\xeb\xf5\xb2]K+\xcaljM[B&K\xac\x1b=\x1b\xad\xcb\xf1\xd4\xe9Ԍ\xfa\xd6<\x14\xde\xe0\u007f\xfc\xcaG\u007f\xf3\x8f\x9c4Ir5\xe0\xb7*Z\x83\xb9E\x94\x87@gQ\x1a\xac\xbb1I.r\xdf\xf5\xf9\x82U\xcf\x1c\xdb$\x80\xc1\xd1\x11\x9a:\xc5\xcd5\x96\xb4\xe5x\xc4\xf5\x88%+\xc9\xc8[\x8fgt\"z쁫\"\xc8\x1fq.\xb1\xe3\xa96\xd4\xe6\u007f̝\x85?w#Y\xe1\r\xfe\xe8\xd6\x1f\x92\xaa \xe9\x11\xfc\xf0\b\x1e\xff\xfeR\xdeQ\xf3[\xa528L\x15\xc1-\xa2<\x04:S\x1b\xacWE\xe8oL\xd2q\x128P\xb5\xea\x12ޕ[\v\x06GGh\xea\x14?\xd7PҚ\xb1\xb3>\xb1r\x99(.\x9b5Lp\x94\x90\xf9\x9c\xc1XnV\U00056c03g\x99%\xe2\x10\xa2\xb5\xc4F]\x83o\xfb\x01\x91\xe3\xef\xd8ξ\u007f\xe7\xe9\x89[\xbe\xf7\xf3_=\xf1\xb5\x80x*\x83\x1f\xa1\xad\x1e\t\xbc\xa8\xcc\xd068\xd0\x19]U\xa0\xab\xc0RA{r\xfa\x1b\x93$\xaez@\xbc\xc0\xd2\x04\x1a\xc0\xe0\xe8\bM\x9d\n\x9dk\x10imb\xa7E\xa4\x06g\xc9\xd5/-\x18\x82\xf6\xe4\xa8\xc19\x8b茼\x1c\xb1\vќ7\xfd=\xb9Gn#%\xe6/\xbeD\xbe\xaa\xc9A0v\x00뉯~)\xe9\xabO\x04tT\x19\xfc\x11i\xa5\x1aW\xfd3\xb4\r\x0etFW\xa5\x98\x1a\xe8\xe6{\xb7rG\xd3>\xd2ߘ$qS\x85\xf8\xaap\x92l9\xec\xc9EIh\xea\x147\xd7X\x88\xc1Vf\xf0\xf2Y]\x14z|\x9a\x1aL\x13X\x14\x83Kf\xd1E\xd2\x03c\xb0\xfe\x9e\x1c㑯\a\xfcIo\xc6e\xb3\x98\xe3\xc0\xc5\xf1\xe9\xdb\xc3\x1b\xfc\xb3/\xffL[\x9aD\xa0\xbb1IGH\x1d\\Q|A\x14\xdfv\x81\xc1Q\xa0\x9d:\xa5\xcc5\x94^{\x8d\xaf\xd9\xd2\xe3[\x96\x8b\x87\xdbJ\xb4l\u007fk\t\xa2\x19\xc6\xd5֚\xd6\xf9\xb6>rN\xae\xa4S\xec*\xb1x\xfb\xf1(\x9d\\\xe9\xa9L&\xc7\"zl\x8e\xea\x8d\xf6\xe4\x94z\xad3\xe1\xb2%I_\xfa\xc1G\xda\xd2$\x00\xfd\x8dI\x12ȱ\x887\xf3\x8b[\x1a\x96\xca\xd9Y\xe6\xc3P\x83\xb5S\xa7\xb8\xb9\x062\x92\x86PS*\xb25\xb3\xea\xb7-\xd7n\xcfe\u007f\x0f\xe1b\x99ݖ\xdbI\xae\x8b@\xc8\xd2cÏexnm\x96-\xab\x96\xbe~z\x91=\xbd\xbc>\x85\xce\rfJ(\x1b5\xf2\xf1\xe0\U000db596\xee{\xc6I\xb3\xb3̇\xa1\x06O\u007fLfp\xa4\xb7c\x06\xc0ฒd.\"\xbd\x1d3\x00\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807F\x1b\xac\x91:\xe5\xf36\u05f5v\x0f\x87_nr\xa8\xb1\xd6\xe8\xbfؚ\"\xdf{\x94\xb2_\xbfQ\\\xf9\xed\x03+\\\x9b\xae\xd0?\x18*䟏\xd4:\x98cN\x81\xe1<\x12\xa9\xe9t\xc2`\x835R\xa7|\xf5\xad=}]\xf5\xad\x89P8˒\xa5\xffb\r\xf2zkQ\xad\u05cb\xc2h\x1eW\xaa\x8a\x0e\xec̿ \x8a\xef\x9f\xb8\xb3邡\x06\x8bz\xa9S\xa28Ҥ?\x18N\x1a\xf3\v\xc5\xc2\\\xfc\xaf\xaf\xb9)=#\xd5Q\xbe\x1c\xf5\x89Ùi\xb5\xd5V[]\x1e-~e\x83}\x1d\x8e5\x83\xe2`uj\x87\xaf\xb7)\x05\xa5o\xabN\xb7\x91\x9b\xfc\x02aU\xb1p\xf9ȑ\xe2U\x8b\x8bw\xefX\xf0\xae(\xee\x14v\x1f?P\xb4\x0eᄑq\xf2\x88\xd0r\xf2们Q\xc0`\xa5\x81\xf8b~œ\xc7[p\xa9q\xe9哫\xaaN\x9e<\x19\xfawH\xe5\xc5.\xbd\\\xfc\xc0\xaf\xc5_\xb7\x14\x9c\xbc\xf4\xe6\x11\xa7P\xdc\xd2R\x9c\xff\xa6\xba\xb3iC\x82\f\x0eJ\x9d\xc2Cp\xfd\x90\xde\"\x93ƈ\xadF\xac\xb11\xfdf\xa3\xf9\xf8\xe3\xe4#w\xd4w\xe3\x12\x18\xb1\x9bP\xfd\x06\xe3\xe1\x9aD\x01\x96\xd0L\x1fk:n6\xe4\xc8\t\n\xab\x8a\x85uB\xd5\x05\xf1\xca\x052X>#\x12\xef\xe8\xd1\x03\xad*\x82kp\xb9x\xd3e\xe2?\xfd\x03\xd0\x1aU\x04\xbf\x98\xd8B\xc6\xe7\x1d;ɤ\xab\x14/q\xa1\xb8\"hmӅ\x04\x19\x1c\x94:%v\xf2y\xc2Fэ:|\x1d\x88EV̶\xca\x1bPIb\xd2N#9L(`p\x1fv\xfabj;\x99\xb4n \x8f\xb5hH\x1dV\x15\v\xeb\\\xf2P\xbb\xa3\xf4\xf2\xa7\x98b\xaa\x9a\x96\xc1\\\x83\xe3\xc2\x1b\\\x0f\x11\f~\u007f\xc1\x1b\xe2\xe5\x82\x17ɤ\xab\x81<\x1e\x10.\xa8\xd76]H\x94\xc1\f9uj\xd8\xebNğ!\xa8\xa5G{ف\x86\xd9s\xe5\x995h\x90$\xa0\x04\x8f\xc1b^\xb9\xd8f\xa7G\xfcX\xaa\xb0\x17u\xa9êba\x9d\xbf\x82]+W\xb4\x9b\xc8\x13-\x83\xb9\x06\a\x04n\x0f-\x92\xc1\xe2\xa6}\xe2\xf1\x02\xba\x80\xab\x85<\x9e\x14^U\xafm\xba\x90 \x83U\xa9S>Oc\xbf\xee\x02\x93H\xe1\xec\xce\xceN9%-\x10\x96֗\x9c\xd7ם\x91#?S\f\xf6؇Y\x11!ZiP\x84\x1b\xf9\xd4aU\xb1\xb0n\xab<\xb1\xa3\xf4U\n\xad\f\xb4\xc7\xe0@\x83\x17\x05\xee\x1805\xf8\x99w\xc5 \x14\x83\x8f-\xbd\xbc\x93\x8d\xb5.\xbas\xf8\f\x1d\x83\xb9\xb5M\x17\x12d0\x9f:5Լ\x9f\x96\x14\xfa\vM\x12\x8er\xfcP\xee\xa0\xd3\x01\x83\xbbP\x1aB\xb9\xfeO\x94b\xf0\xb0\xddc\xa7E\x84hM#\x15\xf3\xacܠ\xb0\xaaX\b\x8c\xa0\xc7YM\xda@\xcfAh\x19\xcc5\xb8TTE\xc6\xd4\xddTȪ*Q\xfc\xb5\\\xd0\xf6m;\x13\xbc\x189\xb6ql)-\"D\u05caKx\xe1Ҫ\xa0\xb5M\x17\f5X3u\xaa\xaf\xae\xb9\xaf\xbf\xbf\xbf#\xe6ݡ\t\xe2\xf3\xa0\r>ѷ\x01\xb5]\x1c\ue931\xd7ԃnk\xbb\xc7\xeb\x17\xb8\xab\x16\xd5v\xc9ӕ\xb3X\x11!Z\xd1\xec\xe6\xba\f;i͇UEͧ\xaf\xd3#\t\xe7\xe9\x93}\vv\x1c9\xb6\x93\x98ŎE\xbcL\x8e\x13\xbc+\x9f\\{W\xd5@|ѵ\xea\xc0\xf1\xdd,,\xb5\xc5u\xe0XU>\x1b\x83\x17\xa1<\xb9\xeb7\xf0b\xfe\x81z_i\xc1\xa7t\xc2%T\x1cyfU\xc1\xdb\xeaΦ\r\x86\x1a\xac\x99:\xd5\xc6f\xba\x8d>\xa3\xd1N\x8e\xee\x8a\xfb\xf1c{w2-g\xa9\a\x1d\x162i\xc9%\xdb\xe6#\x91S6\xf9\xcb\xe14Z\xc9&\xac\xe5%\xa9\x8e\xe5Lr.\xac*j\xdeT\x15\xa3ǫ\xee,\xa8:\x8e\xc7\xcc\x02:\xd7ID\xdb)\u05eb\xdb\xf9\x06\x98\xb7\xb7\x17/\xae`\xe3\xf4\xe5\xddK]U\xb2\xac\xf5v\xf6\xe7\x11\xc4K\xf9x\xa1|\xb9Fx[x\x90M\xb8v\xef,(\xda\xf1\xaejm\xd3\bC\r6\x01\x83\xb65\x83\xc3\xc3C]K\xec\xc1U\x8d\xcf*\x1f\xb1\x0e\xf3\xf7a\xa6\x12\x97\\\xac\x88\x90\xf7\xe4\xa6-`\xb0\x9aV\xbb>J\t\x95\x12\xb5S\xa7\xe2\x90E\x05\xa9S\xf1#A\x06\a\xa7N\x89\xc3\xcd\xed\xda\vL\x1e=\xa8\xa6ӓc#W\xab\xf3\xf1QJ\xa8\x94\xa8\x9d:\x15\x87,*H\x9d\x8a\x1f\x892\x98AR\xa7\xe4\x1d\xa2n\xb7F\xebI\x85\xd6\xc1C\xc9d\xbd||\x94\x12*%j\xa7N\xc5!\x8b\nR\xa7\xe2G\x82\f\xe6R\xa7\x1a\xd9\x01\xd9\xee:\xbdE&\v\xb6'\x97J\xcc\xe3㣔P)Q;u*\x0eYT\x90:\x15?\x12d0\x97:\xd5D\x03C\x12RE\x905\xa7\x95\xf7lS\xc5G)\xa1R\xa2v\xeaT\x1c\xb2\xa8 u*~\x18j\xb0f\xea\xd4iw{o_oB\xf6\xe4\xe8\x19\x8d\xbc\x92,U|\x94\x12*\xd5'\x9f}c\a\xfe\x02\xa9S\x13͢\x82\u0529\xb8b\xa8\xc1\x9a\xa9Sb\u007f{s]kg\xdc\xcf\x0fD\xa2\x19\x97\xaa5\xd8\xe3\f\x9am\xa2\xc4G)\xa1R%rA\xcbB\x01\x03\xa9S\x13͢\x82\u0529\xb8b\xa8\xc1\xa6@/\xd0$\x90:\xa5=w\xca\xe5\xa0@\xeaTD\"umR\xf4T\f\xa4Niϝr\x06C\xeaTD\"umR4U\xe4S\xa7\xb4\xe7N-\x83!u*\x1a\"umJ\xb4C\xa5\xb8\xd4)\xed\xb9S,\x8b\nR\xa7\xa2\"RצD'TJI\x9dҞ;ղ\xa8 u*\x1a\"u\r\x00\x06\x00\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01sc\xb4\xc1\x1a\xa9S\x98\x1e\xc3\xff\xa2gt\xf4\xe4\xd9Җy\xd3Tw[pYT\x9a\xb1T\xb1\xd2\x1e\xf2\x97\xeb\x80X0\xd8`\x8d\xd4)\xf2\xac\xae#\xb6?Ml\x10m\xb6\xb9\xee\xe6,\x84T'\x94\xb9,*\xcdX\xaaX\xf1\xd84\x02ؼ]\xa1\xf3\x00M\x8c5X+u\n\xe3i\uf6ca\x06\x0f\xa5.\xb9H\xee\x1cB\xc1\x97DpI>\xa1\xa1>qana\xa4\x16\x80\x8c\xa1\x06k\xa7N\x89=\xf5\xbe\xfe\xa9hp\xa5\x8d~GԠ\xe0Ba\xf2\r\x9e\r\x06G\x8b\xa1\x06k\xa7N\xf9\xeaN\x8b\t0\xb8\fY\xdc\xe5\x19\xb6\xbc>2\x99\xdc(\x9e\xb1\xa0Lq8Ͳ\xc1\xe1\xf0\x96\xa5\xe6\xfaDq\x16\xbb\x81h\xb0\xe6\xa2\xe8+tX\x1c\x8b\xfc\u007f\xa8V\xcb\xe0\x8e<\x87Ş\x97\x1e\xbc\x16\r\x94\xb5ៃ\r\xa1\xe4&67\xb09\x1e\xf9\xee\xa6\xd9\x11:\x02\b\x86\x1a,j\xa6Ny\xda\xc5D\x18L\x82\xa2\xec\xd55\xa9K\xe8ս\xd5X\xc6\x12+\xfe\x9aHE\xe5\xf3\x91}[Z\x8dx1YI\xa7\xf4\xa0\x95\xde\xe6Eɲ\xad\x1a\x06w\xa1\x92\xfd\xedn;Һ\x8f#\bnmx9\xaf\x97]\x1b\xcfm\x8e\xafÛ\x91\xeb\xf5z\rO\xf34%\t2\x98K\x9d\xea%\x91i\t0X\x14\xadv<\xe0-\xa7\u007f̞ZTM\x9cJ[\x8eu\xf5\x88%+\xc5>\xd4\x1ah\xeak&\x1f\xb6\xac%왆\xc1nz\xb7Qm\xaa\x18\r\xca\xda\b6\xf9\xee\x0ens\xa0\x8a\x88\x9e\x04\x19\xac\xa4N\xf9\xeazGFF\xfa\x1a\xf5r\xf2&\x11+\xc9*a\"q\x067c+}b\xe52q8\x85˸\x1et\xe7\xcdJEY쉆\xc1}\x8e\xf42w\xb7\x18\xc5\x10,\xea\x1a\xacl\x0e\x18\x1c=\x892\x98\xd1\xd1*\x9eq\xfb1<@\x98\x13\x893\xb8M초\xc4`\u007f\x1d<܆EMsT\xb6zs\xf5\r\xc6uQa&J\x8b.\xd7]\xc7`n.\x18\x1c5\t2\x98K\x9d\x1a$\xf4\xd4\x0f\x86\ti\x9a$\x82\r\xde\xe87\xd8\xca\f\x96\x8fE4\xa3A13\x87|g\x14\xea\x1b\xdcU2\x10U\xbe\x00\x00\x1e\xa0IDAT)\x92Z\xc3\x16U\xfa\x9b\xb26\x82\xae\xc1u\xaa\x8ce@\x9b\x04\x19̥NQ\x12S\a+\xcaذ\x80#s\x83\f\x1eJ]\x82\xab\x82\x91\xdctQt\x10\xa3F\xb2\xf4\r\xae\xa6\x01@b\xee\x1a1\n\x94\xb5\xd1g\x1a\x06\xe7\xe6\xe2\x8fv\xb8\xfcV\xc0\x8f\xa1\x06k\xa6NaF\xfa{\xea\xfbCn\x05\x9ed\xd8\xed\xc5]%\x16/._r\xec۶堔\xfa\xde^{\x8d\xaf\xd9\xd2\xe3[\x96\xdbG\xce\xc9\xe5Է\xe6\xa5t\x10A\v\xdd\xdbf#{M'\x9fE\xc5MV#[\xb5\xa7\xb5$\xccߕ\xe1\b\xacM\x1c\xee\xf4z\xad%\xde\x0e\x9fzs\xb0\xc85\xad\xf3m0\x06G\x81\xa1\x06k\xa7Na\x99\xc8ܦpKN\x02\xf4\xf6\xe2\x1e\x92 U&\x8a\xa7sm\xa9y\x1b\x10Z\x93\x86PS*\xb25\xb3\xf0Tr]\xc4\"\xb2\x95#5\x19V\xfb\xb2\xfaY\x96\\>\x8b\x8a\x9bḽvX\xd2r\xa3\x128\xb0\xb62\xb1+\x99\xf5\xe0Vo\x8ex\xb1\xccn˝\x94s%\xd3\x0eC\r\x06\x80\xb8\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b\x13\x18\\\x88\xec\xcb\xe1\x961@\a\x13\x18\xdc\xef\xadϴ\x1b\xfe\x17?\x01\x93`\xb4\xc1\xa1\xa9SA\x01T\xdaK\xa1n\x11\x00\xb40\xd8`\x8d\xd4)u\x00\x956\x93\x94+\x02L\x03\x8c5X+uJ\x1d@\xa5\r\x18\f\xe8a\xa8\xc1\x9a\xa9S`00\x11\f5X3u*\x1a\x83{\xa2\xbb\xff\f\x98\x81\x18j\xb0\xa8\x95:\xc5\aP\xe91l\xcf\xe9\xe8K@&\n0\xf5I\x90\xc1\\\xea\x147\xa9O\x1bBhQ\xb8\x06\xc0L%A\x06+\xa9S\xaaI=|\xf6\xf4\xda\xf6\xc8\xc5\x060\x03I\x94\xc1\x8c\x8eV\xad\xc9P:Q{\x98W\x81\x99L\x82\f\xe6R\xa7\xb8I]\xe0X\x04\xa0G\x82\f\xe6R\xa7\x82\x03\xa8\xb4\x00\x83\x01=\f5X3uJ\x1d@\xa5\r\x18\f\xe8a\xa8\xc1کS\xaa\x00*\r\x86\xfb\xbb\n\xad\x86G\xb3\x02&\xc1P\x83\xc7\xc7\x12\x84\xd2\xc3\xed\xe6\x013\x1a\x13\x18\xdc\xdf\r\xc7\xd1\x00]L`0\x00\x84\x01\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807F\x1b\x1c\x9a:\x85\xe9m\xabo\xee\n\xb3\x10\x00\xe8b\xb0\xc1\x1a\xa9S\xe2p\xbb\xbb\xf3L\x97\xfbL\xb8\xe5\x00@\ac\r\xd6J\x9d\x12\xdb\xeb\xfa\x89\xda\x10\xb0\n\x8c\aC\r\xd6L\x9d\xeaw\xd3;\xe4 ^\x15\x18\x17\x86\x1a\xac\x99:\xd5Y\x17.w\x15\x00\xc2c\xa8\xc1\xa2V\xeaT\xab\xa7\xb75R\xea\x14\x00\xe8\x91 \x83\xb9\xa8\xa9f:\xd9\xd4\f#10\x1e\x12d0\x175婋\x9c:\x05\x00z$\xca`\x06\x89\x9a\xf2\xb2\xfb\x90\xbdp;20\x1e\x12d0\x175\xd5U?\xc2\xcd\x01\x80\xd8H\x90\xc1\\\xd4\xd4\x10=\x9a\xe6\x93\x0f\xb3\x01@l\x18j\xb0f\xea\x94\xd8U\xd7\xd5\xd7\xd3\xd8\n{r\xc0x0\xd4`\xed\xd4)\xf1Lk\xfd\xfe.\x10\x18\x18\x17\x86\x1a\f\x00q\a\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0x*0\x12\xa9\x01\xa0\v\x18\x9cp\xfaK\xd2ВH\x8d\x00=\xc0\xe0\x84\x93\x99\xe9n\x87\xbf76n\x8c68$uj\xb8\x91]r\xe9n\x8a\xb0\xe4$s\xbc\xe8X\xa4&\x93C\x0fj\x8b\xd4\x04\b\x83\xc1\x06\x87\xa6N\xf9\xdc]d\xaa\xcb\x1d\xe6/\x83{\xbb\xf4_\x8b\x17\xc7\xf2\x8fDj\xa2A,[\xa6Ӷ\vuh\xce\a\xa2\xc3X\x83\xb5R\xa7\xd8]ˍ\xe1~\x8ds\vü\x18/\xaeDj\xa0E,[\xa6\xd3\x16\xfe\xea\xf9\xc40\xd4`\xcd\xd4)\x8ag\u007f\xb8{4f\xc7\xe0\x89\xb1IJe:m\xc1\xe0\x89\xf1g\x1b\x00\xc0\xccL`\f\x06\x80)\x00\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xccMX\x83\xeb\x11O\u007f\xb8\xa6\x00\x90\x18\xc0`\xc0܄5x\xf4\x1aa.\xaa\xa6\xff\x8e\x86k\n\x00\x89!\x8a:8\a\xd5DjbjJJ\xf8gː\xa8\xd7P\xcdU\xbb\x9b\xfd[\x9e~{\xa6\x9b}\xbc\xdbsli\x85C\xfa\xcb,B\xa3Ѯ\xe0Z\xa5\xc3⨼\x86\xa7jr\"\xb5\x9dр\xc1]\xd6a\xfei\x94\x82I\xa3\xf3\x115\xf8j:*\xac\x9e\x8b\n\xc9\xf46\x94Q]\x92\x92\xea\xd3](z\x83G\xb3Pn\xf5|\x94uC\x92n\xa4\xd5Gj=\x93\x89\xc5\xe0F\x94\xc9&jP\x99Ԅj\x86\nSSs\x18\xf4\a^\x92zC\xbbg F\x83;\x88\xba\xe4\xbbm\x1b5\x98\x1e^k#\xf3*\xd1\"\x89=\xc9\xd0\xee\x83#j\x83G}\xb2\xc1\xbeh\a\xaeq0\xc8\x1cو\xe6W\x97\xa7\xa2.j\xb0XO\u0600\xec\xa2t-\x13\x97\xa3˓ӱ\xc2e\x852\xa4j\xe8\x1e\x95\x14\x83\xaf\xf5W\xa3\x9cQ\xe9**'uղ\xe02\xf8\xcc\xed\xb65\xd5\xcbRH\x9d\xe17ؗ\x86\x96T\xceJ\xb5\x13\x83mi\x8bZ\xdd\xf6\xe4~\xf5\x1a\xae\xa6\xa7\xb6\x0ez\xec\x0eZ?xP\x87\x04\xe8\x10\x93\xc1\xa3\xa9D\xa8\xd14\xf2\xc5ۄr\xd9<+~\xe6@\xacT\xbd\x91\x8c\xe4\xdf\xdfh\x9ae[\xba\xa3g\x83=\x8f\xecNK\x9e\\[\xe6\xc6\x1b\xe43\xc0\xa0\xbb\xd7\xd6ꍙ\xb6E#\xb4\xfd\xfe\x1c\xdb\xdc\xfdtJ\\\xe3\xb0/'U\x04\x81\x1aLjKR\xa0\xd4\xe2\xc7\xf6J\x94\xd2T\x9en/d\xeb\xf1\xf7;n\x9a\xa9\x1c7R\xf2$b\xf3\"eO\xeeFV\n\xfe\x1e/\xa7\xef]\xb3\xb4U\f\xaeDȁ\u007f\"\xfdhIj\xfa\xf2,d\x0fR8\x0f\x91\xba\xc9K\n\x02\xbf\xc1\x85\xa8\r\xaf!\x97\xfc\x18\ni\xa1\xd0\x15R\x03\r\xcf\xc2\xef\xd6\xc1\xba\x1aD\x1b$@\x87\x98\fƿ\xd0J\xf2\xd3&ߖM\xfe\x9fj\x16꼆PV\x0e\xc5B\x861JO*ژ\x87\xecn\xba#]\x96\\\xd9ٔ\x86ǩ\x1b\xbd\xbd\x99y\xbd\xbd\xbd\xf47cEYm\x1di\xcb\xc9d\x99u[\xe76+\xf9]\xfaR3=\x1d\x8b\x90\xda\xe0\x1b\xbd\xe9\xe5W\xa5\xab5\xa9\xbd7\x86\xdaR\xd0,w\xed,\xdb \xdf\xef\xb8)\xa3\x1f\xb9\x1bɳ\x88\xb7d\xb0\xf7\x1b\xbc\x8c\xecD\x8d\xdeN\xbft\xa4\x9c\x94\xd0O\x89bpWG\x8d\xcd\xd6+\x9dFh\xd9(\xd9\xcd]\xa2n\xd8Iwv\xaf\x92ٲ\xc1ג\xe9'\xb8\x8f\x19L\xde\xe15\x94\xa7^h(ͺѳ\xd1\xca\x14\x1eMΕ\x00\x1db3\xf8\fJ\x1b\x95V\xd2\x1d\xe4&\xff^[\x0ej\x13\x91B\xa0\x10v\xac\xc1cW\x87TVN\xc60\x0f]\xb8\x8d\xb6W\xaa\b\a\xf9rN\x93ȇ\xa2\xcb\xff8?\x03\xcb2:Wm0.+\xc8L\x8c.6\v\x0f\xeb\xd7\xd2s\x83\xfa\x1d\x1fK\x10\xa9q\xb1Ȗ\xf9n\xba\x9b*\x1b\\C\xf7P\xfbQF\ra6:#\x95-\x91ieK\xaa\xea\xe0^\\>\x9dA\x16\xd2\xd7\xe8\xac\xe4k\xeauHW{=\xd59d\x80\x97\r\ue875\xb4$Y\xa8\xc1d}\xa3h\xbe\xa4ZC.):p\xb7\xecXpj\xe4\xe2l\xc6\x12\x9b\xc1R\x06\xea\x19\xb5\xa5\x90_T\x93\xfc[\x902Q\x17\x1e\x83Cw\xe8\x1dm\xf8wzC\xaa^)I+3F\t\xe9T@\xce`r\xc0\xa8\x86\xb8ZFw襬2<\x18QA\xb6\x05\x1b<\x82\x06q\x11C\x8f\xd6Y\xe9G\xa7\x19]S\xf7;>r\xd9с\xd1\xc6,\xfc\xe9\xcb\xea\xf3\x1b܁\xe6\x92\xf9\xbd\x81\x0ff\x97zON\n2X\x9a\x8b\x86\x87䃍\xcb\xe5#6~\x86\x97\x93z\xa0\x843\xb8]^4\x9d\x1aL\xb5'\x06sk\xb8*\xab\xbb\bу\xd5\x0e\xbb\x04\xe8\x10\xa3\xc15\xa8\xb2\x8b}K6\xc9\xdf{7,\xf8\x87\x1c8\x06ѣ\xecu9\xba\xa43\x16\x89\x1a\x9b4\x9f\x9e\x10\x90\ns\xf17k/]O\xb0\xc1Ғj\xa9\xcbN;g;\x80=\xb8\xbaT\xf5;>\x98@\x04ѳ\x04\xd9o0\x83\amvjN\x1fZ\xa9\xbb$3\xf8\x86\x87\xed\x01,A\xfd\xa3\xc9l\xa4\\\x8eT\x85\xf0h&\xaa\xec\xc5%\x10gp\x97\xfc\xfd\x95\xaa6\x98cH\xae\xbc\xcb\xf1\xe0\x8f\xb19$@\x87\x18\r\xbe\x88\xd2+\x99\xadM\xc8r\x91\xfcیf\x93/a:d\xe1\xafu\xab_\bj\xb0\x95\x19\xbc&\xa3\x8fB_\xa3\x06{\x88 TEjp\x19\xfb\xddg\x94\xe1_4ݟ+\v1\xb8#m\x94\x15\x11\x92\x95\x0e\x82\xadx\fV\xf5;>\xca\xe9\x80髦\xe5{!\xfeT\x10\x83\xaf\xa6\xa7\xb0Cs7,\xe9\xf4}5\xd6\x06\x17\x06\x01\x83-T\xaeQ\x87\xe5\x1a\xfeA\xd1\x02$#UU\x97\x9fa\xe7\xebz\xc9'^6Xd\xbe\xfa\x90\xae\xc1\xd7\x10\xfbV\x9a\x8fF\xe8\xabP\a\xeb\x12\xa3\xc1\xf8[\xd7\xc6\x0eN6!4\x1bk\xd8i#\xc5\xeb\x90\x15\x95\xe1\xdf\xf1i;=\x93\xc4\xe0\f\xeeb\xd2o\xa3ߝyyd\xb7\x86\xccP\f\ue925l\x1b\xea\xc4+H\xc7\x1d\xf9n\x0f1x4\xad\xc3\xceN\xf9Y\xd3ȩ\u058c\x17?\xc9\r\f?C\xf6\xfa\x1bm\x96\xfe\x1b+\xf3F\xe8/\xb8\xbd\xa3\x8c\xedq\xd5X\xeb;\x16\xd9DrN\xae\xec\xb4\xd4Wf\xe9\xc5#ך\xe4\xea\xce\xead\xb2\xf34hK\xaf\xddfON\xf1\x90ʺ\xaf\x195ʧ\xf0\xa4\xea\fVDHV\x94\xd3ޚI\x8fYq\xfd\x8e\xf3\x9c\xdcEvHe#\x9a\xb5ac\x16)q\xb1`5\xc8QS\xbd\x11\xd3A\xaez\xc8ٸ\xd2z\xbb\xffs\xc4!\x1b<\xec@y\x1bsP&\xf1p\x19ʪ^\x82f]%\x9f\xbc\x1c\u007f\xbb\xd1\xd9h\x91\xbbڑ\x99\x96\xc5\x1d\x0fNEK*3\xec\xc4O\x1d\x83\x87\xd3\xd0\"\xdc\x17;2\xd7\bǃ\xf5\x89\xd5\xe0kVV\xa8\x92\xb3\xca\xfd\x8bl\xf6E\xf2\xc8\xe7+O\xb7\xd8\xe6\xd6\x05\x04\x1eMC\xa8-\x15\xd9\xdaY\x95ڕg\xb7\xcfg\a\xdaF+\xed\xb6\xbc3\xf4(*\xb2\f\xda\xf0#Q\xafy\xaemn3\xeb\xa9\xd0>\xabړB\xe6\xdeHů\xda\xe4\xd1\xcc\xe7\x1f߭\x1b\xcbR\x1dk\xd81/\xa5\xdfq\x1a,e\xd1\xe1ut\xff\xdcT\xdb\\v\x85\x83X\xe6ߣ\xc2=^ݘnq,W\xef\x9a1\xfc{rbY\x9a%\xbd\x9an\xe4h}\xa6\xd5QN\x8c\xe4\f&\a\xb8\xad\x99\xb57\x96\xe1\x82 pNn\xa80նd\x88\f\xcb:\x06Kb\xb9ÒV\xc6.:Z\xa2\xaeK\x00\x9e(\fV\xe1c\xa7\xe5\xa8\xc1\xe1[ƛ\x1bV\xf9\xc3\x12\xe6T\xde8\xf0\xb0}\xa5x\xd3\x1dt|W\r\xdb\xdf\x15Qt\aQĔm\x91\x9a\xcc`b5\xb8\xc6? \x1bnp\xbb\\D\xc4\xd9\xe0\t\x1d\x8bӧ,\xec\x15\xa9v\xba\x83\xb81\xca\x03ٵ\xb6\t\xec\xaaN{b2xh\xb8\xfdv\xab|\xa5\x9f\xb1\x06\xd7\xf6H\x8b\xfcN\xc4\xd7`ɛ\xa2\u007f=︹X\x18\xf6Tw5\xca\xd8X\x9d\x1b|\x1eN\x87k\xf6h\xae͛\xb1\xc4d094\xef\xf7\xc8P\x83o\xa0\x9cJ\a\xab\x87\xd9\x0e`\x86\x1b|\xe8\x14\x84\xa7?\xd9uw\xfe\xd6?I@Ԅ7X\\\x83\xb2\xf0\u007f%b\x82b\xd0d\x83ie\x8a=\xa3\xb7\x87\x94\x90:\x9aOm\xa3\x06\xab\xa3\xdb4\x16\tn\xb0HY\x81lp\xaf\x05\xa1\xd4e\xad|\xd1\xf4\xc1\x82\x87O\x9d}~\x85\xf0'il\xa0\xf4\xfb\u007f\x94\xfex\xb0`\xe0\xe6\xefO8\x85\xa2\x83\x87\v\xee'-\xce-\xae8|\xf6\xa0\U0002c9023\xf8a\xd7ӯ?\xed\xda\x1b\xd4\x16\x1b\xfc\xf9.\xe1\xd9\x0f\xf1\xe4^\xa1\xe1\xf5\xa3E\xebǤ\xb1\x97N\x94\xae*(}lׂp54\x10D\xa4*\xa2˂,\xf4^\xe0\x84Ġ\xc9\x06\xd3k\xe9\x83\fVRۨ\xc1\xea\xe86\x8dE4\x1b\xa8\f\x96\x06Kȝ\xd3)eʗ\xc0\xd1\"2\x1c\x1e]J\x86Ѓ\x15\xf8\xe1a\xaa\xa2k)\x1eGw\x15ᩱҭ\xf8\xb5\xb1\x97\xaeK*\x14\x83\xcf\ng\xfd\x8f|[l\xf0\xb3\xae\xd7H\x83\xd7\xe8a\x89\x0f\xd9\xc1\x89\xf5\u0096\x9b\xd2\xd8M\t\x88\x9e\xf0\x06_\xdbhIG\x0ek\xf5\xd5\x04Š\x851XIm\xf3\x8f\xc1\\t\x9b\xc6\"\x9a\r\xd4\x06㩞mY\x88;\xba\xfcE\xf1\xdd\r\xcf\xffn\x8c\xd6\x00\x9f/\xf8\x9d4V@|\x94\\\x0f㇃.\x89\xa8\xf9;I\x03\xc5\xe0\xbd\xeb\xe8?\xeb\xf6\xaa\xdbn?\xf8\xb4p\x8aN=x\xf7؟0\xa5\xf4\xa3\xb1\xde\x05\xc3o\xac\x847\u061d\xb6\u007f\b\r5\xa7\xb9\x13\x14\x83\x16\xc6`.\xb5\x8d\xd6\xc1\xaa\xe86\xadE\xb4\x1a\xa8\f\xf6\xb1 \x8cF\x94\xa2\x941\u05cf>\xb8VXq\x98*\xbc\xf51\xe9,\x1d\x8d%\x17\xd9\x0f\xa3\x06?+\x8cI\x1a(\x06\u07fb\x9d\xfe\xb3\xbdJ\xddv{Q\xc1\xda\xfb\xe9\xd3\xf5\x02\x83\xd6$\xeb\xab$ F\"T\x11\xa3\xf4X\x04\xf9\x8d&$\x06-\x8c\xc1\\j\x1b5X\x15ݦ\xb5\x88V\x83\x80\xc1WIz\x03k<\x84\x92\x03\x06\u007f\xf88\xb6\xec\xfa\x89\xfc\xa3\xe4ɩ\x15c\xac\x88\xe0\f>+|(i\xc0\f\xbe\xf9\xf4ui\xef\xdd\xc4ӱ\xbb\x1fV\xb7\xdd^\xf4\xf1g\x05\xb4x\xdeu\xf7\x87\x14Z\x87\xac\xbf_\xa33 ,\x91\xea`I\xb4\xb3\xdb\xeb\r\x8eAc\x841\x98Km\xa3\x06\xab\xa2۴\x16\xd1j _\xfcfA\xed7F\xa5<\x94\x87[_[Ɲ\xd28H\xabXi\xcb\xf7\xc9\xe3؊SK\xe9S\xce\xe0\x9b\xc5[\x88\xa1\r\x8f\xd1\xf9\x9f\x1d\xfe\x8c-\xc7\f\xfe@\x18\x90^\xa7\x05\xee\t\xe1uu[r4\xed\xac\x93\x18}Vx\x89\xb4}\xf20y\\\xff\xa0\x04\xc4HD\x83e\x8c\x8eAc\x841\x98Kmc\xe7\xe4\xf8\xe86\xadE\xb4\x1a\xc8\x06\x93\xf2\xa5K\xf2ّ%3ˆҔ\xfc\x88\x83\xc2⃯\x9d\xda+\x9c\xa3\xcf\x1e\xbf{)ٱ\xfb\xd7\x01\xe7\xde\xf7\xc6>\xd8\xeb\x1c\xf8WI:\xe7Zw\xf4l\x83\xf0\x96K[!\xff\x13r\x04@\xd4Dip\xfc\x99X\f\x9a\xb1i\x1527]\xe7\"5\x01\f'a\x06O,\x06-!\x06\xbft'\x9c,\x9bz$\xc6\xe0\tǠ\x19o\xf0\xc1sc[\xe0b\x86)HB\f\x9ex\f\x9a\xe1\x06\x8f\t\x15\r\xc5Agހ\xa9@B\f\x9ex\f\x9a\xe1\x06K\a\x17o\xf9$R\x1b \x01$\xc6`\x00\x88\x17`0`n\xc0`\xc0܀\xc1\x80\xb9\x01\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807\x86\x1b|\xaaꏑ\x9aL\"\xd7\xef=\x15\xa9IT\xd0w\x11\xaf\u0380\x8901\x83\x1b\x04v\x87\x81\x06\x9f9\x85\xb5\x1a\xb3\x0f\v\a5\xef,\xd3%\xe2*N9\xe5\xabq\x9dQ\xf84vX8\x1c23\xf6\x9c3\xf6.4;\x03\ff|\x06\x9f\x93\xef\xf8\xfa|\xc0\xa9w\xbd\xd6\xd8{{]\xa1s\x8fF\x1dy\x17\xf5*\x0e\v\xe4n\x88g\a\x06\x16D\xa5\xd3\xebΣ\xc1\xb3b\xce9\v\xbc\v\x8d\xce\x00\x83\x19\x9f\xc1U\x81\xfb\xb9\\\xfaW\x1c\x1e\f5\xf83\xe7\xe3\xfe\xc9\xeb[\xc2_\xe9\x15\xf5*\x9eu\x92Q\xf4=I\xca\x0f\x8a\x1d\xd1\xe1iWP\xc0\x8e\x14kJ\x14\xf7.\xb4:\x03\fe|\x06\xaf\x8fV\xaf \xf6\x16\aJ\x88\x8f\x85\x8fC^\xe6\x89z\x15c\x9f\xc9\x06\u007f\x16]yr\xb38\xb4`\x88\xcd`\xee]hu\x06\x18J8\x83\xff\xb4\xc2\xf9O\xa5\xc5\xe7\x1a\x96n!)2\x81|\xafSr\xddI2l$\xd7c\x81\b1.!\xec\xf3]\xc5K\xef\x0f\xad\"\xc6\n\xe4\xc1\xeb\xe8\xaa\xd7>\x11>y}\xd5\xd18\xad\x82\x1a,\x05\x85\x9b\x1d\xdd[\xbct;\xbd\"2\xd0/\xe5\xe9\xfc\x10\xd5c\xc99S\xde\x05A\xa33\xc0P\u008e\xc1\xe7\n\x84Ƕ\bw\x1e^A\xbe\x9f\x03\xf9^7\a\xe8=\xb5\x03T\x0e\x97\xb0\xf6ĩ\x154\xe6@I\b\xfb\xa4`\xed\xf3\xa7\xb6\n!\x06\x93\xdb\xcf)\x9f\xef\x12\xd6\xe1\xff\xee\xff\"N\xab\x90\r\x0e\n7+=x\xb04\xffc\xbe_ʀ\xf0\xff\xa4 b\xc99S\xde\x05A\xa33\xc0P\xc2W\x11Ż\xa4ׅS4-L\x9d\xef\xa5|\xc5\x17\xfd\x1b6\x84D\x88q\ta\xf7\xae\"{\xea\xebC\f~]\xf8\x83\u007f\xf2\xacSp\xd2\xf0\x85\xb8\xacB6X\x1dnv7\x1e֯\x97V\x05\xf5\x8b?>B\xc8A\x8b\x18r\xceT\xefB\xb33\xc0P\"\x18|BzO\xb8)=\xfe`p\xbe\x97\xa2\x17yN+^%!\xec:\x8bOx:\xc4\xe0S\x82\x1c\x86p\xfd1g\xb1P\xecz\xec\xdfⴊ\x80\xc1|\xb8\x19\xfd\xae?*\\W\xf7K\xa4\v9<\x17C\xce\x19\xf7.\b\x1a\x9d\x01\x86\x12\xc1\xe0\xb3҇xW\x9f\xe8\xa5\xce\xf7R\xeffQ\xbd\x94\x84\xb0\x0f\xd9\xd7l\xe8\x9e\xdc{~\xd1\x0e\xaf8\xfa{\xe1\xf7GW\x1c\x8e\xd3*\x02\x06\a\x87\x9b\xe1o\xf9\x0f\xd5\xfdJ\xfeeyb\xc89\xe3\xde\x05A\xa33\xc0P\"\x1b\xecbz\xa9\xf3\xbd\x88^ϓC\xa8\x8a^JBؿ\t\xf4(\xe9á{r\x81\xc3\nc\xf4X\x04\t\x85\x8c\xcb*\x14\x83\xb9p3\x9a\x04\xf5<\x1e\xdfU\xfd\u2b9c7\xa5 b\xc89\xe3߅\xa4\xd9\x19`(Q\x1b\xac\xca\xf7\"\xbf\xf1?\xd2\x19\x8a^\\BXU)\x96\xe5\x0f\xae\x10\x83\xa5\xfbW\x05\x86\xb5/\x96~\x11\xbfU(\x06s\xe1f+\xb0[7\xef\xde\x12\u052f4\xb664\x15'\x86\x9c3I\xf5.\xb4:\x03\f%\xac\xc1\xbf_\xfa\xec\xd8\t\xe7\xc7c\xbb\xb6|\xce\xe5{IħgOmY\xfc\x85:BLI\b\xfb8\xbf\xf4\xe0\xd3K\x05\xe7\x89\xdf\au\xf8I\xc8iظ\xac⃣\xf2a\x02)\x10nF\x0eaT\xbc\xf4\xfc\xaa\xa5d\xaf\x8b\xef\x17\x17\a\xca\xd0ʈ-\xe7L\xf5.B;\x03\f&\x9c\xc1c+\x04\xe1D\x81\xb0\xf8%VB\xfa\xf3\xbd\xc8+\rK\xf3\xef\xfd0(B\x8cK\b\xfbd\xfbһ\x1f;\xe1\xa4\xc1b*\x9ev\xa9\xcbƸ\xacb\x8c\xbc\x9a/\u007f\x9b\xff\xc1\u007f\x85\x83뱽\x05Ż\xfe\x95Ns\xfd\x0e\xe4?&\x05\x11c\xce\x19\xf7.4:\x03\ff|\xe7\xe4\xc6\xcdX\x83s\x92\xf7\xdd\x03\xe1fڧ\xf2^r\xee\x9dxt\x94\xff]ĥ3`b\x18l\xb04\xf6l\xe9\xf5Hm&D \xdcL\xd3\xe0\xebŇ\x95\x03\fㇽ\x8b8u\x06L\b\xa3\r\x9e\\\xf8p\xb30\x97S\x00ӈie0\x17n\xf69\xdd\x01\x8c\xd0\x1e\x98\x06L+\x83\xb9p3\xba\x03\bq\xe83\x80\xe9e00\xf3\x00\x83\x01s\x03\x06\x03\xe6\x06\f\x06\xcc\r\x18\f\x98\x1b0\x1807`0`n\xc0`\xc0܀\xc1\x80\xb91\xdc\xe0鑛\x16\v\x113\xd6\xe2\xf4#I\xc4{\x9b\x02L\xcc\xe0\x88\xa1f!L\xc5ܴs\v\x84{\xc7HFł\xb3\x1a\x8b0>\u07ba\xb8x\u05f9b\x95j{\xe5K\x8aՓ\xc1D\xccX\x8b\xfeGr\xb6(\xdc[\x9c\xa11n\xe338\xeaP\xb3`\xa6dn\xda\xd8Y!\u007f@\xbayJ8\xabk\xd2\xd9\xc5UϟX/\b*I?'+~/x2\x88\x88\x19k\xd1\xffH\xa4\xd7\x16k\x18\xec\xffAI34\xc6m|\x06G\x1dj\x16\xc4\x14\xcdM\xbb)\xecڋ7Nнi\xf3z\x01\xb9Q\xf9\xe6*!x\x98Un\xd0\xe3'9\"f\xacq\r\"\xa3\xf5\tS~P33\xc6m|\x06G\x1dj\x16\xc4\x14\xcdM\xbb)\x9c]<\x16\xce\xe0\xc7\xf3\xe9\xddJ\xcf\xc6npČ5\xae\xc1\xf8X\xcf\x19<\x13c\xdc 7M\"\x06\u007f\xb6\xfe\x145\xb8\x81$\x05\xd3\xfaZ\xb5e\xab\x1e\xa6\xed\xae?;&\xdd|\xb0\xd8Y\xba\xdd\xffͭe\xf0\xc0\xd6R\xe7\x8a\xed\xa5t%\x113\xd6\xfc\r\xf0\xf6>\x1fx\x9b\x01\x94\xcd\xc1+\xcf\x17\xe4\x18c\xae\xad\xea\a%\xcd\xc8\x187\xc8M\x93\xa8\xc1G\xb7S\x83i\xd5\xcd\xeakn\xcb\xc6\x04\xa5@yM\xd8{\xee\xa5\xed\xfe[\x945\f\xfe`\xc1ç\xce>\xbfB\xa07;E\xccX\xf37 \xdb[t\xf0p\xc1\xfd\xaaW\xb9\xcd\xc1+\x18\x18`_G\\[\xd5\x0fJ\x9a\x911n\x90\x9b&Q\x83\xaf\xbb\xae\xb3*BI\xa7P\xb6\xec3n\x89\xb1\x97n\x92\x15\a\xf2\u007fB\f>ZD\xdc=ʂ\x83\"f\xac)\r\\K\U00058eab(\xe8ues\b\xf9\aC\xdb\xf2U\xc4L\x8cq\x83\xdc4\x89\x1a,m\u007f6\xc4\xe0\xc0\x96\x8d9\xb9\x9d\xc4\xebG\xb7\xde] \xacgO4\f\xfe\xa2\xf8\xee\x86\xe7\u007f7\xc6\x06\xfc\x88\x19kJ\x03\xd7Òƾ\x83\x8e\xc1\\\xdb \x83CW1͉\x9c\xd9\xe3\x9ch\xa8\x99\xc2T\xcdM#\x06\x9f\xfaN\x88\xc1ʖ\xc9u\xf0\x18\xfeh|XT\xfa\xf8\xa9\x81-\xeb\xfd}\x85\xd6\xc1\u05cf>\xb8VX\xc1nc\x8e\x98\xb1\xa64P\xbb\xeaG\xc7`n\xae\xca\xe0\x19\x18\xe3\x16\xd9`\xd7DC\xcd\x14\xa6jn\x1a1xl\xf1Y\xc5\xe0\xa7\xfd\x06\xcb[\xf6x>]\xf6%\xe1\x8f\xd2\xda*\xb2\r\xf7\xafgKj\x18\xfc\xe1\xe3\xb8\xc1\xf5\x13\xf9t\x03#f\xac)\r\xc2\x18\x1c\xf86\xd35\xf8y\xf9π\xcc\xc0\x18\xb7\xa8\r\x1e\u007f\xa8\x19\xc7\x14\xcdM#\x06K\x0f\xef\xa2\x06\xe7\xe3\xe2c\xac*\xc8`v\xd30X\xf9A\xe9\xadbz\x03\xb9i\xf4\x9cܩ\x9bҹ|j\xf0\xbdE\x87\x0fV\x91~U[v6\xff\xde\x13\xa7\xb6:\a\x88\xa0\x0f\x1e=\xb8\x1eW\t\xefI_\xc8'\x03\xf1G\x91\x9b<(,>\xf8\x1a^\x1b\x8b\x0e\x8a\x98\xb1&7P\xbdM\x8e\xc0\xe6Hc\xef\r\f\xb8\xf6\x0e\f\xdc\fj\xeb\xffA\x11fb\x8c\x1b\xe4\xa6\xd1\xeb\"\xf0\x186VE\xcf-|\xb2%\xbf`\xeb?\t\xc2^\xf5\x96}\xbc5\u007f\xc5\xfd$\x11{\xec\xd9U\xae\xa2\a\x9f_\xe5\xdc\"=,\xd7\xd7x\x90\xe6&O\xdc{\xb0\xd4Y\xbcEξ\x8a\x9c\xb1\xc6\x1a\xa8\xde&\x87\u007fs\x1a\xa4\x0f\xe4U\x1c\rj\xeb\xffAI34\xc6m|\xe7\xe4\xc6\xcd\xf4\xc8M\x8b\x85\x88\x19k\xf1\xfb\x91\x18\xfeަ\x04\x06\x1b\x83\xa3\x0e5\vb\x8a\xe6\xa6\xc5\xc5\xe0\x88\ti\xc0\xa4\x00\xb9i\x12opP|Y\xc0`n\xc5\xd2g\xf7\xafp\x16m'-\xb0\xc1\xe4*N\x17\xf96\x89\x98\x90\x06L\x0e\x90\x9b&\xf1\x06\aŗ\x05\fVV,\x9d[\\q\xf8\xecA\x9a\xa4\x86\r\xc6\xef\x84\xdd&\x1d1!\r\x98\x1c 7MRW\x11\xaa\xf82\u007f\xbf܊\xc7J\xb7\x925\xbfD\xc6]l\xf0\xb3\xae\xd7Xӈ\ti\xc0\xe4\x00\xb9iR\x90\xc1\x0fK\xa1iVʊ\xb1ƿ\v,\xb7\xfd\xe0\xd3\x01U#&\xa4\x01\x93C\xe4\xcc\x1e\xe7DC\xcd\x14\xa6jn\x1aќ$\xf7\x1c\x95\xf8\xb5IJ\xbfʊ\xa5g\x05\xa5\xc4\xdd^T\xb0\xf6~\xf9iĄ4`r\x88l\xb0k\xa2\xa1f\nS57m\x80FݰJV\xd3`e\xc5x\f\xfe0\xb0\xdc\xf6\xa2\x8f?+\x90\x8f\xe1ELH\x03&\x87\xa8\r\x1e\u007f\xa8\x19\xc7T\xcdM[J\xa4\u07fb\x94h\xa7i0\xb7\xe2\x9b\xc5[\xc8{h \x9f\x0fr4\xed\xacS6:bB\x1a0)@n\x1a\xe1\x84\xd0p\xf6\xfb\xe4u~m\\\x16\x1a\xb7b\xe9\x9ck\xddѳ\r\xb8\x0e\xbf>P\x85\xdb\xde\xdc^|\x8e^\xe9\x111!\r\x98\x14 7\x8d5\xa8Z\\E^\xe7\xd7\xc6e\xa1\xf1+\x96\xfe\xf0`iA\xd5)z]\x84 |p\x02?
    +`, + + "codewalk.html": ` + + + + +
    +
    +
    +
    +
    + + Pop Out Code + + +
    +
    + +
    +
    +
    + code on leftright + code width 70% + filepaths shownhidden +
    +
    +
    +
    + {{range .Step}} +
    + +
    {{html .Title}}
    +
    + {{with .Err}} + ERROR LOADING FILE: {{html .}}

    + {{end}} + {{.XML}} +
    +
    {{html .}}
    +
    + {{end}} +
    +
    + previous step + • + next step +
    +
    +
    +`, + + "codewalkdir.html": ` + + +{{range .}} + + {{$name_html := html .Name}} + + + + +{{end}} +
    {{$name_html}} {{html .Title}}
    +`, + + "dirlist.html": ` + +

    + + + + + + + + + + + +{{range .}} + + {{$name_html := fileInfoName . | html}} + + + + + + +{{end}} + +
    File Bytes Modified
    ..
    {{$name_html}}{{html .Size}}{{fileInfoTime . | html}}
    +

    +`, + + "error.html": ` + +

    +{{html .}} +

    +`, + + "example.html": `
    + +
    +

    Example{{example_suffix .Name}}

    + {{with .Doc}}

    {{html .}}

    {{end}} + {{$output := .Output}} + {{with .Play}} +
    +
    +
    {{html $output}}
    +
    + Run + Format + +
    +
    + {{else}} +

    Code:

    +
    {{.Code}}
    + {{with .Output}} +

    Output:

    +
    {{html .}}
    + {{end}} + {{end}} +
    +
    +`, + + "godoc.html": ` + + + +{{with .Tabtitle}} + {{html .}} - The Go Programming Language +{{else}} + The Go Programming Language +{{end}} + +{{if .SearchBox}} + +{{end}} + + + + + +
    +
    + +
    + + +
    + +
    + +{{if .Playground}} +
    +
    +
    +
    + Run + Format + +
    +
    +{{end}} + +
    +
    + +{{with .Title}} +
    +

    {{html .}}

    +{{end}} +{{with .Subtitle}} +

    {{html .}}

    +{{end}} + +{{/* The Table of Contents is automatically inserted in this
    . + Do not delete this
    . */}} + + +{{/* Body is HTML-escaped elsewhere */}} +{{printf "%s" .Body}} + + + +
    +
    + +
    +
    +... +
    + + + + + + +{{if .Playground}} + +{{end}} + + + + + +`, + + "godocs.js": `// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* A little code to ease navigation of these documents. + * + * On window load we: + * + Bind search box hint placeholder show/hide events (bindSearchEvents) + * + Generate a table of contents (generateTOC) + * + Bind foldable sections (bindToggles) + * + Bind links to foldable sections (bindToggleLinks) + */ + +(function() { +'use strict'; + +function bindSearchEvents() { + + var search = $('#search'); + if (search.length === 0) { + return; // no search box + } + + function clearInactive() { + if (search.is('.inactive')) { + search.val(''); + search.removeClass('inactive'); + } + } + + function restoreInactive() { + if (search.val() !== '') { + return; + } + search.val(search.attr('placeholder')); + search.addClass('inactive'); + } + + search.on('focus', clearInactive); + search.on('blur', restoreInactive); + + restoreInactive(); +} + +/* Generates a table of contents: looks for h2 and h3 elements and generates + * links. "Decorates" the element with id=="nav" with this table of contents. + */ +function generateTOC() { + if ($('#manual-nav').length > 0) { + return; + } + + var nav = $('#nav'); + if (nav.length === 0) { + return; + } + + var toc_items = []; + $(nav).nextAll('h2, h3').each(function() { + var node = this; + if (node.id == '') + node.id = 'tmp_' + toc_items.length; + var link = $('').attr('href', '#' + node.id).text($(node).text()); + var item; + if ($(node).is('h2')) { + item = $('
    '); + } else { // h3 + item = $('
    '); + } + item.append(link); + toc_items.push(item); + }); + if (toc_items.length <= 1) { + return; + } + + var dl1 = $('
    '); + var dl2 = $('
    '); + + var split_index = (toc_items.length / 2) + 1; + if (split_index < 8) { + split_index = toc_items.length; + } + for (var i = 0; i < split_index; i++) { + dl1.append(toc_items[i]); + } + for (/* keep using i */; i < toc_items.length; i++) { + dl2.append(toc_items[i]); + } + + var tocTable = $('').appendTo(nav); + var tocBody = $('').appendTo(tocTable); + var tocRow = $('').appendTo(tocBody); + + // 1st column + $(']","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"
    ').appendTo(tocRow).append(dl1); + // 2nd column + $('').appendTo(tocRow).append(dl2); +} + +function bindToggle(el) { + $('.toggleButton', el).click(function() { + if ($(el).is('.toggle')) { + $(el).addClass('toggleVisible').removeClass('toggle'); + } else { + $(el).addClass('toggle').removeClass('toggleVisible'); + } + }); +} +function bindToggles(selector) { + $(selector).each(function(i, el) { + bindToggle(el); + }); +} + +function bindToggleLink(el, prefix) { + $(el).click(function() { + var href = $(el).attr('href'); + var i = href.indexOf('#'+prefix); + if (i < 0) { + return; + } + var id = '#' + prefix + href.slice(i+1+prefix.length); + if ($(id).is('.toggle')) { + $(id).find('.toggleButton').first().click(); + } + }); +} +function bindToggleLinks(selector, prefix) { + $(selector).each(function(i, el) { + bindToggleLink(el, prefix); + }); +} + +function setupDropdownPlayground() { + if (!$('#page').is('.wide')) { + return; // don't show on front page + } + var button = $('#playgroundButton'); + var div = $('#playground'); + var setup = false; + button.toggle(function() { + button.addClass('active'); + div.show(); + if (setup) { + return; + } + setup = true; + playground({ + 'codeEl': $('.code', div), + 'outputEl': $('.output', div), + 'runEl': $('.run', div), + 'fmtEl': $('.fmt', div), + 'shareEl': $('.share', div), + 'shareRedirect': 'http://play.golang.org/p/' + }); + }, + function() { + button.removeClass('active'); + div.hide(); + }); + button.show(); + $('#menu').css('min-width', '+=60'); +} + +function setupInlinePlayground() { + 'use strict'; + // Set up playground when each element is toggled. + $('div.play').each(function (i, el) { + // Set up playground for this example. + var setup = function() { + var code = $('.code', el); + playground({ + 'codeEl': code, + 'outputEl': $('.output', el), + 'runEl': $('.run', el), + 'fmtEl': $('.fmt', el), + 'shareEl': $('.share', el), + 'shareRedirect': 'http://play.golang.org/p/' + }); + + // Make the code textarea resize to fit content. + var resize = function() { + code.height(0); + var h = code[0].scrollHeight; + code.height(h+20); // minimize bouncing. + code.closest('.input').height(h); + }; + code.on('keydown', resize); + code.on('keyup', resize); + code.keyup(); // resize now. + }; + + // If example already visible, set up playground now. + if ($(el).is(':visible')) { + setup(); + return; + } + + // Otherwise, set up playground when example is expanded. + var built = false; + $(el).closest('.toggle').click(function() { + // Only set up once. + if (!built) { + setup(); + built = true; + } + }); + }); +} + +// fixFocus tries to put focus to div#page so that keyboard navigation works. +function fixFocus() { + var page = $('div#page'); + var topbar = $('div#topbar'); + page.css('outline', 0); // disable outline when focused + page.attr('tabindex', -1); // and set tabindex so that it is focusable + $(window).resize(function (evt) { + // only focus page when the topbar is at fixed position (that is, it's in + // front of page, and keyboard event will go to the former by default.) + // by focusing page, keyboard event will go to page so that up/down arrow, + // space, etc. will work as expected. + if (topbar.css('position') == "fixed") + page.focus(); + }).resize(); +} + +function toggleHash() { + var hash = $(window.location.hash); + if (hash.is('.toggle')) { + hash.find('.toggleButton').first().click(); + } +} + +function addPlusButtons() { + var po = document.createElement('script'); + po.type = 'text/javascript'; + po.async = true; + po.src = 'https://apis.google.com/js/platform.js'; + var s = document.getElementsByTagName('script')[0]; + s.parentNode.insertBefore(po, s); +} + +$(document).ready(function() { + bindSearchEvents(); + generateTOC(); + bindToggles(".toggle"); + bindToggles(".toggleVisible"); + bindToggleLinks(".exampleLink", "example_"); + bindToggleLinks(".overviewLink", ""); + bindToggleLinks(".examplesLink", ""); + bindToggleLinks(".indexLink", ""); + setupDropdownPlayground(); + setupInlinePlayground(); + fixFocus(); + setupTypeInfo(); + setupCallgraphs(); + toggleHash(); + addPlusButtons(); + + // godoc.html defines window.initFuncs in the tag, and root.html and + // codewalk.js push their on-page-ready functions to the list. + // We execute those functions here, to avoid loading jQuery until the page + // content is loaded. + for (var i = 0; i < window.initFuncs.length; i++) window.initFuncs[i](); +}); + +// -- analysis --------------------------------------------------------- + +// escapeHTML returns HTML for s, with metacharacters quoted. +// It is safe for use in both elements and attributes +// (unlike the "set innerText, read innerHTML" trick). +function escapeHTML(s) { + return s.replace(/&/g, '&'). + replace(/\"/g, '"'). + replace(/\'/g, '''). + replace(//g, '>'); +} + +// makeAnchor returns HTML for an element, given an anchorJSON object. +function makeAnchor(json) { + var html = escapeHTML(json.Text); + if (json.Href != "") { + html = "" + html + ""; + } + return html; +} + +function showLowFrame(html) { + var lowframe = document.getElementById('lowframe'); + lowframe.style.height = "200px"; + lowframe.innerHTML = "

    " + html + "

    \n" + + "
    " +}; + +document.hideLowFrame = function() { + var lowframe = document.getElementById('lowframe'); + lowframe.style.height = "0px"; +} + +// onClickCallers is the onclick action for the 'func' tokens of a +// function declaration. +document.onClickCallers = function(index) { + var data = document.ANALYSIS_DATA[index] + if (data.Callers.length == 1 && data.Callers[0].Sites.length == 1) { + document.location = data.Callers[0].Sites[0].Href; // jump to sole caller + return; + } + + var html = "Callers of " + escapeHTML(data.Callee) + ":
    \n"; + for (var i = 0; i < data.Callers.length; i++) { + var caller = data.Callers[i]; + html += "" + escapeHTML(caller.Func) + ""; + var sites = caller.Sites; + if (sites != null && sites.length > 0) { + html += " at line "; + for (var j = 0; j < sites.length; j++) { + if (j > 0) { + html += ", "; + } + html += "" + makeAnchor(sites[j]) + ""; + } + } + html += "
    \n"; + } + showLowFrame(html); +}; + +// onClickCallees is the onclick action for the '(' token of a function call. +document.onClickCallees = function(index) { + var data = document.ANALYSIS_DATA[index] + if (data.Callees.length == 1) { + document.location = data.Callees[0].Href; // jump to sole callee + return; + } + + var html = "Callees of this " + escapeHTML(data.Descr) + ":
    \n"; + for (var i = 0; i < data.Callees.length; i++) { + html += "" + makeAnchor(data.Callees[i]) + "
    \n"; + } + showLowFrame(html); +}; + +// onClickTypeInfo is the onclick action for identifiers declaring a named type. +document.onClickTypeInfo = function(index) { + var data = document.ANALYSIS_DATA[index]; + var html = "Type " + data.Name + ": " + + "      (size=" + data.Size + ", align=" + data.Align + ")
    \n"; + html += implementsHTML(data); + html += methodsetHTML(data); + showLowFrame(html); +}; + +// implementsHTML returns HTML for the implements relation of the +// specified TypeInfoJSON value. +function implementsHTML(info) { + var html = ""; + if (info.ImplGroups != null) { + for (var i = 0; i < info.ImplGroups.length; i++) { + var group = info.ImplGroups[i]; + var x = "" + escapeHTML(group.Descr) + " "; + for (var j = 0; j < group.Facts.length; j++) { + var fact = group.Facts[j]; + var y = "" + makeAnchor(fact.Other) + ""; + if (fact.ByKind != null) { + html += escapeHTML(fact.ByKind) + " type " + y + " implements " + x; + } else { + html += x + " implements " + y; + } + html += "
    \n"; + } + } + } + return html; +} + + +// methodsetHTML returns HTML for the methodset of the specified +// TypeInfoJSON value. +function methodsetHTML(info) { + var html = ""; + if (info.Methods != null) { + for (var i = 0; i < info.Methods.length; i++) { + html += "" + makeAnchor(info.Methods[i]) + "
    \n"; + } + } + return html; +} + +// onClickComm is the onclick action for channel "make" and "<-" +// send/receive tokens. +document.onClickComm = function(index) { + var ops = document.ANALYSIS_DATA[index].Ops + if (ops.length == 1) { + document.location = ops[0].Op.Href; // jump to sole element + return; + } + + var html = "Operations on this channel:
    \n"; + for (var i = 0; i < ops.length; i++) { + html += makeAnchor(ops[i].Op) + " by " + escapeHTML(ops[i].Fn) + "
    \n"; + } + if (ops.length == 0) { + html += "(none)
    \n"; + } + showLowFrame(html); +}; + +$(window).load(function() { + // Scroll window so that first selection is visible. + // (This means we don't need to emit id='L%d' spans for each line.) + // TODO(adonovan): ideally, scroll it so that it's under the pointer, + // but I don't know how to get the pointer y coordinate. + var elts = document.getElementsByClassName("selection"); + if (elts.length > 0) { + elts[0].scrollIntoView() + } +}); + +// setupTypeInfo populates the "Implements" and "Method set" toggle for +// each type in the package doc. +function setupTypeInfo() { + for (var i in document.ANALYSIS_DATA) { + var data = document.ANALYSIS_DATA[i]; + + var el = document.getElementById("implements-" + i); + if (el != null) { + // el != null => data is TypeInfoJSON. + if (data.ImplGroups != null) { + el.innerHTML = implementsHTML(data); + el.parentNode.parentNode.style.display = "block"; + } + } + + var el = document.getElementById("methodset-" + i); + if (el != null) { + // el != null => data is TypeInfoJSON. + if (data.Methods != null) { + el.innerHTML = methodsetHTML(data); + el.parentNode.parentNode.style.display = "block"; + } + } + } +} + +function setupCallgraphs() { + if (document.CALLGRAPH == null) { + return + } + document.getElementById("pkg-callgraph").style.display = "block"; + + var treeviews = document.getElementsByClassName("treeview"); + for (var i in treeviews) { + var tree = treeviews[i]; + if (tree.id == null || tree.id.indexOf("callgraph-") != 0) { + continue; + } + var id = tree.id.substring("callgraph-".length); + $(tree).treeview({collapsed: true, animated: "fast"}); + document.cgAddChildren(tree, tree, [id]); + tree.parentNode.parentNode.style.display = "block"; + } +} + +document.cgAddChildren = function(tree, ul, indices) { + if (indices != null) { + for (var i = 0; i < indices.length; i++) { + var li = cgAddChild(tree, ul, document.CALLGRAPH[indices[i]]); + if (i == indices.length - 1) { + $(li).addClass("last"); + } + } + } + $(tree).treeview({animated: "fast", add: ul}); +} + +// cgAddChild adds an
  • element for document.CALLGRAPH node cgn to +// the parent
      element ul. tree is the tree's root
        element. +function cgAddChild(tree, ul, cgn) { + var li = document.createElement("li"); + ul.appendChild(li); + li.className = "closed"; + + var code = document.createElement("code"); + + if (cgn.Callees != null) { + $(li).addClass("expandable"); + + // Event handlers and innerHTML updates don't play nicely together, + // hence all this explicit DOM manipulation. + var hitarea = document.createElement("div"); + hitarea.className = "hitarea expandable-hitarea"; + li.appendChild(hitarea); + + li.appendChild(code); + + var childUL = document.createElement("ul"); + li.appendChild(childUL); + childUL.setAttribute('style', "display: none;"); + + var onClick = function() { + document.cgAddChildren(tree, childUL, cgn.Callees); + hitarea.removeEventListener('click', onClick) + }; + hitarea.addEventListener('click', onClick); + + } else { + li.appendChild(code); + } + code.innerHTML += " " + makeAnchor(cgn.Func); + return li +} + +})(); +`, + + "images/minus.gif": "GIF89a\t\x00\t\x00\xf7\x00\x00\x00\x00\x00\x80\x80\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00!\xf9\x04\x01\x00\x00\xff\x00,\x00\x00\x00\x00\t\x00\t\x00\x00\b\"\x00\x03\b\x1cH\xf0\x9f\xc1\x83\xff\x04\"<\xa8pa\xc2\x00\xff\x00H\x94\xf8\xd0aE\x87\r\x17\x12\xdc\x18 \x00;", + + "images/plus.gif": "GIF89a\t\x00\t\x00\xf7\x00\x00\x00\x00\x00\x80\x80\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00!\xf9\x04\x01\x00\x00\xff\x00,\x00\x00\x00\x00\t\x00\t\x00\x00\b&\x00\x03\b\x1cH\xf0\x9f\xc1\x83\xff\x04\x1e\x04pP\xa1A\x86\x06\x15\x02\x9881a\x80\x85\r/>̈0#A\x82\x01\x01\x00;", + + "images/treeview-black-line.gif": "GIF89a\x10\x00\xf0\x06\xf7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00!\xf9\x04\x01\x00\x00\xff\x00,\x00\x00\x00\x00\x10\x00\xf0\x06\x00\b\xff\x00\xff\t\x1c\xf8\x0f\x00\xc1\x83\b\r\"\\X\x90\xe1B\x85\x0e\tB\x8c(p\"E\x8b\x111:\xd4\xc8\x10\x80Ǐ\x1f\x1fR\x948r G\x91%\x1b\xa6<\x990\xa5ʒ,\x0f\xc6$\xb9\xd2\xe5L\x936s\xd6\xdc\tSgO\x9e#oV\xf4\x19\x94\xe8E\xa3\x19\x91nTڑ)ʟP\x8b\x02=:5iեW\x9bf}*5*U\xafV\xc1b\x15\xab\x95,\u05ef]Ӣ]\x1bVm[\xb6c\xddƅ[Vn]\xbag\xdfꝻ\xf7n\u07fc|\x03\xfb\x15\fx\xb0\xe1\u0088[nUl\x96\xb1\xdd\xc42\x9d:\xc6;\xf9oe\u0097\x0fg\x86L\xb3q\xe4ş=w~\xbc\xb9thҧ)\xa7\xb6\xbc\x1askͯ9\xe3\x04=Zumַ]熽[\xf6PڳE\aG\xdd\xdbt\xf1\xd8Ƈ\xdbV\x8e\x9b\xb9n缡\xfb~Iܥ\xf5\xebسk\xdfν{\xf4\xdf\xc2\xc1W\xff\x17\xbf\x9c|s\xf3\xcf\xd1\u007f\xa7^\x9e\xfdy\xf7\xe9\xe1\xaf\x17*\u007f:\xfd\xfb\x92\x91\xeb?\xce_zr\xf5\xf6\xe5\xd7\x1f\x80\xff\xd5W ~\xc0\x11\xb8\x9f\u007f\v*8\xa0\x81\rB\xf8 \x82\xe1I\xc8\xe0\x84\x02^\xa8\xa1\x83\x1bZ\xc8\xe1\x87\x1e\x86H\xe1x\"f\b\xe2\x88\xed\xa1\xf8\x9e\x8a\xf1\xb18\x9f\x89%&\x18c\x85.\x06(c\x8d\a\u0088c\x84;bx\xa3\x8e@\xfe($\x8dA\x129$\x89=v\x98\xe4\x89E\"\xd9d\x8aO\xae\x18e\x8bS\xbex$\x94WJ\x99%\x95[Zi\xe4\x97Nvi#\x98X\x92\xa9\xa5\x99\\\xa2\xe9e\x98j\x8e\xc9\xe6\x9be\xc2y\xa6\x9ciҹf\x9cxΙg\x9d{ީ\xe7\x9f|\x02\xeag\xa0\x84\x0ej\xa8\x9b}\"*\xa8\xa2\x852zh\x8ebBڦ\xa4v:j)\xa5\x89b\xba\xa8\xa6\x8dr\xfa(\x8fU^\nj\xa4\xa3NZj\xa5\x9e\x8a꣩\xab\xa2zj\xa6\xafn\xff\x1ak\xa7\xb3~\xda*\xac\xb7ʚ+\xad\xbbڪd\xa8\xa9\x06[\xab\xaa\xbf\x92\xda+\xb1L\x1a[,\xab˺z\xac\xb0\xcf\x0e\vm\xb3\xb8R\xab\xab\xb5\xbcb\xebk\xb2\xccr묶\xc8\xce\xf8\xad\xb7Ւ{\xad\xb9٢\xbb\xad\xb8\xe5\xb2{\xae\xbb\xe9»\xee\x92\xf2\x86K\xef\xbd\xc0J\xabo\xb4\xfc\x82;\xad\xba\xf6\xe6\xdb/\xc0\xff\xd6[0\xbe\xca\x12\xbc\xaf\xbf\v+<\xb0\xc1\rC\xfc0\xc2\xddJ\xcc\xf0\xc4\x02_\xac\xb1\xc3\x1b[\xcc\xf1\xc7\x1e\x87L\xf1\xb8\"g\f\xf2\xc8\xed\xa2\xfc\xae\xca\xf1\xb2<\xaf\xc9%'\x1cs\xc5.\a,s\xcd\aÌs\xc4;c|\xb3\xce@\xff,4\xcdA\x13=4\xc9=w\x9c\xf4\xc9E#\xddt\xcaO\xaf\x1cu\xcbS\xbf|4\xd4WK\x9d5\xd5[[m\xf4\xd7Nwm3\xd8X\x93\xad\xb5\xd9\\\xa3\xedu\xd8j\x8f\xcd\xf6\xdbe\xc3}\xb6\xdciӽv\xdcxϝw\xdd{\xdf\xff\xad\xf7\xdf|\x03\xeew\xe0\x84\x0fn\xb8\xdb}#.\xb8\xe2\x853~x\xcebC\u07b6\xe4v;n9\xe5\x89c\xbe\xb8\xe6\x8ds\xfe8\xcfU_\x0ez\xe4\xa3O^z型\xee\xb3髣~z\xe6\xafo\x1e{\xe7\xb3\u007f\xde:\xec\xb7˞;\xed\xbbۮt\xe8\xa9\a_\xbb꿓\xde;\xf1L\x1b_<\xeb˻~\xbc\xf0\xcf\x0f\x0f}\xf3\xb8S\xaf\xbb\xf5\xbcc\xef{\xf2\xccs\xef\xbc\xf6\xc8\xcf\xfc\xbd\xf7Փ\u007f\xbd\xf9٣\xbf\xbd\xf8\xe5\xb3\u007f\xbe\xfb\xe9ÿ\xfe\xd2\xf2\x87O\xff\xfd\xc0K\xaf\u007f\xf4\xfc\x83?\xbd\xfa\xf6\xcb_\xff\x00\xf8\xbf\xfa\x15\x10\u007f\xca#\xe0\xfe\xfc\xb7@\x05\x0eЀ\r\x84\xe0\x03\x11\xd8=\t2p\x82\x02\xbc\xa0\x06\x1d\xb8A\vr\xf0\x83\x1e\f!\x05\xc7'\xc2\f\x82p\x84\xedC\xe1\xfbT\x18?\x16\xceτ%L`\f+\xe8\xc2\x00ʰ\x86\a\x84!\x0e#\xb8C\f\xdeP\x87@\xfc\xa1\x102i\x18D\"\x0e\x91\x84=\xec`\x12OXD$61\x85O\\a\x14[8\xc5\x17\x1e\x11\x8aW\x94b\x16\xa9\xb8E+\x1a\xf1\x8bN\xec\xa2\ri\b\x12\x90\x04\x04\x00;", + + "images/treeview-black.gif": "GIF89a`\x00\x85\x00\xa1\x01\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff!\xf9\x04\x01\x00\x00\x02\x00,\x00\x00\x00\x00`\x00\x85\x00\x00\x02\xfe\x94\x8f\xa9\xcb\xed\x0fE\x98\xc1ш\xb3ި\xf2\x0f\x86\x9a'\x96\xa6I\x9e\xeaʶ\xee\nIJ\xfc\xd6&\xb0\xe0\xf6\xfe\xe9\x82\xef\xe3\t#\xc0Cp\x88d\xe0f\xcbY\xf2\x89(\x1a\x8eP\xa8\xf4W\xcdNs\xda,\xd3\xd9\xedR\xc3^\xb2yl~\xa2\xd3\xc85[\xe8~\xabRF9\x8f\xbe\xb5o.\x96\tW?R\x12\a\x98\x80Gx\x88\x98\b\xf8E\xa3\xa826\xe8\x88\x01)yBY)\xf8\xe3Ą\xd9\xf3\xd7\tr\t\xea\xa9\x109\x9a\xc3hzڠ\xba\xfa\xd0\xea\xca\x1a{3\x9bY\x1b\x02\xebj\x98\xbb\xba\x1b\xcb\xd7\x00\x1c\xf5k\xdb{{\x8c\x9c\xac\x8cʸ\xac\xf4\xe9<\x9c\x87\x15\x9dp\xc5{\xdaD\xc3Y}]m]7\xfdM\r>>\x95j\x9e\xae\xbe\xceގd\xb8\x0e\xff+\xac@\u007f뛎o\xae?\xce\xef\x8e\x1d+\x15@P\xa2\xc6yKwМ\xb6\x18\x9a\x1aEKh0\x1c\xb9\x88\xa5\xd4\tt\x871\xa3\xc6d\x8d\x06\xe4\xe5\xdb豗\x9f>!O\x95\xfcv\xb2ZJ\x8e,\r\xa2C\b\xed[A\x991\xbb5d\xc8\xedaM\x9d\x15a\xf6T\xf8\xb2\xa5СDG\xadtvtY\xd2J\xf6:\x8cT\xb8q`-\xa9\xb3\xa8\x06\xfc\x17\x94b9\xa8?\xb5J\x83\xca)\xa7\xb3\x996\xbb\xd24\xdb-kѵlۺ}\v7.\x82\x02\x00;", + + "images/treeview-default-line.gif": "GIF89a\x10\x00\xf0\x06\xf7\x00\x00\x00\x00\x00\x80\x80\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00!\xf9\x04\x01\x00\x00\xff\x00,\x00\x00\x00\x00\x10\x00\xf0\x06\x00\b\xff\x00\xff\t\x1cH\xb0\xa0A\x81\x01\x0e*\\x0!Ç\v\x1dB\x9cHP\"E\x8a\t3\xfe\xd3x\xb1aNj\x16?2\f)R!ɒ\x06O\xa2\xac\xb8rdˈ/M\xc6\xf48\xb3\xa0ʗ7[\xe6\\\xb9\x13eϒ?E\x06\xfd8\xb4cQ\x905m&e\xb9\x14aS\xa7O\x8fb|\xba\x91\xaaԉW!f}\xb8\xd5eT\xab`\xbf\x8am\xda\x15\xe6إee\x9eM\x9a\x96&ٰo\xd7\xd6l\x9b\x12.Z\xbbl\xf1\xce\xd5;\x93\xaeR\xb9}\xf9\xc6\xf4\xcb4\xaeỀ\a\vƹXgc\x9e\x8f}F\x06:Yhe\xa2\x97\xa9j\xde̹3\xd7\xccH\x133\x16\xed\x984dӒQSVm\x995f\xd7FAO\x85\x1d\xfap^ڳm\xefōUvo\xdeZ}\a\a\xfe\x99\xb8W݁\x8d\x9bE\xaeX\xb9Z棡\x97\x96~\x9azj뫱\xb7\xd6\xfe\x9a{l\xe7n\x11{\xff\xaf-\xbe\xfc\xed\xf1\xb9\xcd\xefF\xff\x9b\xfdp\xf7\xc5\xe1\x1fW\x9f\\\xfer\xfa\xcd\xed?\xc7\x1f\x9d\xfft\xff\xd5\x01x\x9d\x80\xd9\x11\xb8\x9d\x81\xdd!\xf8\x9d~ᝧ y\x0eF\xb8ރ\xe9IX\x1f\x85\xeda\xf8\x9e\x86\xf1q8\x9f\x85\xf9yx\x1f\x88\xfd\x91\xf8\x9f\x89\x01\xa28\xa0\x8a\x05\xb2x\xa0\x8b\t¸\xa0\x88\xfb\xc9\b\xe1\x846V\x88\xe3\x8e\x17昡\x8f\x1b\x02١\x90\x1f\xf2\x18\"\x91#\x1aY\xa2\x92'2\x99\xa2\x93+B٢\x94/R\x19\xa3\x953\"Y#\x967\xf6ȥ\x8e^\x86y\xe4\x97?\x92\x19\xa4\x99C\xa2Y\xa4\x98K\xb2٤\x9bO\xc2\x19\xa5\x9cS\xd2Y\xa5\x9dW♥\x9aI\xea\xd9\xe5\x98~\x82\t\xe8\xa0m\x12\xfa\xa6\xa1q\":\xa7\xa2u2z\xa7\xa3yB\xbag\xa0eRz\xa6\xa5ib\xba\xa6\xa4\u007f\x16\xea顟&\x1aꢣ6Z꣧F\x9aꤜ\n\xbaj\xa7\xa0\xc6\xff*\xaa\xac\xa4\xd2j\xaa\xad\xa8⪪\xae\xac\xbe\xea*\xaf\xb0\xce*l\xad\xc3\xdeZl\xae\xc7\xee\x9al\xaf\xc0\xfe\xbal\xb0\xc4Fk\xac\xb4\xc8R\xab\xac\xb5\xcc>\xeb,\xb6\xd0N\xebm\xb5\xdf^\x1bn\xb6\xdcn;n\xb7\xe0\xa6+\xae\xba\xe4\x9ek.\xbb\xe8\xae+o\xbb\xf0\xbe;o\xbc\xf4\xdeko\xbe\xfc\xe2\xeb\xef\xbe\xffVڪ\xc0\xbe\x12ܬ\xc1\xda\"\\\xae\xc2\xee2\\\xaf\xc3\xfaB\xdc/\xc0\x14K\x1c\xf0\xa5\x03c\\\xb0\xc6\as\x9c\xb0\xc7\v\x83ܰ\xc8\x0f\x93\x1c\xb1\xc9\x13[\\1\xca\x17g\x9a\xb1\xcb\x1b\xc3ܱ\xcc\x1f\xd3\x1c\xb2\xcd#\xe3\\\xb2\xce'\xf3\x9c2\xcb+\xfb\xdc\xf2\xa61\x13=\xb3\xd15#}\xb3\xd293\xbd\xb3\xd3=C\xfd\xb3\xd0AK=t\x9f/[]5\xd6Es}\xb4\xd7I\x83\xbd\xb4\xd8M\x93\xfd\xb4\xd9Q\xa3=\xb5\xd6*\xb7\r\xb4\xdbT\xc3\xcd\xf6\xdbt\xc7]\xf7\xdcv\xe7\x8d\xf7\xdej_\xff\xbd\xa5\xa6}o\xfdwց\xcb]\xf8݇\xeb\x9d8߃w\xdd\xf8\u05cf\x87\x1d\xf9ؓ\x97]\xf9ٗ\xa7\x9d\xf9ڋw\xbe\xb9\xdf\r\xf2\xf9\xb9\xe0\xa1\x03>\xba\xe1\xa7#\x9e\xba\xe2\xab3^:\xe1\xad{\xfe\xba\xe3\xb3C^\xbb\xe4\xb7S\x9e\xbb\xe5\xbbc\u07bb\xe6\xbfs\x1e\xfb\xf0\xc1\x83^\x17x\xc73\x98<\x8dœ\xbe\xbc\x96ͣ\x1e\xbd\xeaӳ^\xbd\xebϋ~\xbd\xecٛ\xbe=\xf1\xdd\xc3\xfe\xfd\xf8\xe1\xd3^\xbe\xed\xe7㞾\xee\xeb\xf3\u07be\xef\xef\x03\x1f\xbf\xf0\xe4\xff\xa5\xbc\xfd\xcc\xcfo<\xfe\xd0\xeb\xef<\xff\xda\xf3\x9f\xf4\x04H=\x02Zπ\xd8\x03\xa0\xf7\x10\xc8=\x05\x8a\x8f\x81\xe0s\xa0\xf9$\x88>\n\xaaς\xecà\xfb4\b?\x0e\xcaσ\xf4\x83`\xfd\n\x93?\x10\ue3c4\xfd3\xe1\xffP\x18@\x15\x0eЅ\x05\x84\xe1\x01e\x98@\x16.\x90\x86\r\xb4\xe1\x03q\x18A\x1dNЇ\x15\x04\xe2\x05\xa6\x85\x98A\"nЈ\x1dD\xe2\a\x95\x18B\x1e\x8ep \x84\x81\xa2pf\xc8\xc4\x13J\x11yN\x14\xa1\x16\xb3\xc8\xc5*\xae\xf0\x8a\xf7\xf3\xe2\v\xc5\x18C2R\x11\x8c%4c\rјB5損-tc\x0f\xe1xC9>\x11*a\xa4\xe3\x0e\xed\xb8E>vQ\x8f?\x04d\x10\x059DB\x16ѐGDd\x12\x15\xb9DF6я\x90t\xa4\x15\xf1\x98FI~\x91\x92m\xb4\xe4\x185YFN\x9e\x11\x93q\xf4\xe4\x1aAYGQ\xbe\x91\x94{4\xe5\x1cQ\x19HV\x0eҕ\x85\x84\xe5!e\x99HZ.\xd2)\x1a\xc9H@\x00\x00;", + + "images/treeview-default.gif": "GIF89a`\x00\x85\x00\xa1\x03\x00\x00\x00\x00\x80\x80\x80\xbc\xbc\xbc\xff\xff\xff!\xf9\x04\x01\x00\x00\x03\x00,\x00\x00\x00\x00`\x00\x85\x00\x00\x02\xfe\x9c\x8f\xa9\xcb\xed\x0f\a\x98\xc0ш\xb3ި\xf2\x0f\x86\x9a'\x96\xa6I\x9e\xeaʶ\xee\x1aIJ\xfc\xd6f\xb0\xe0\xf6\xfe\xe9\xd2\xe1\xe3\t#>Rp\x88d\xe0(\x93\x01\ue64c\"\x8a@\xa9uz0^\xb7GCw;\x9c\x89\xc1\xe4\xb2\xd9yN\xab\xa5ߵ\xfb}j\xc3M\x82y\xb2\xae\x90\xdb\x13\x82\xfe\xa3\x8f\xb7\xf7\x11\b\xa2'h@x\xa8\xb8\xc8\xc8&F\xd3(\xf2e\x18\xf90Y\x19r\x89\xd9#\xc1\x84\x06\xb5\x89\xa1\x19\xaa1J*\x9asZ\xfa\x18\xa3\xeajE\xf9*\xeb\x12;k\x1bwې\x98\xfb\x97J\n\xf8\xe7w\xbb\xbbQkG̛\xac\xbc\xfc\xc6\xda\xca\xec\xe5\vM\x15\r\x8df\xa0e\xbd\xe4\te\xbcI}=\x9dU\xa5-\xcd\xec\xecm\xad\xbe\xce\xde\ueb81\xac\x1e\xff\v\xac+l;\x0fM\x9c\xfe\xfb~\xb0\xef/ :u\xa6\x96\x81\xe3\x17\xea \xc1N\x17\xba\x19\x1cWM\x1c6r\x12\x13 \xfc\xe6,\xa0\xc6b\x8d\x1c\xf5i\xcc\xc7\f$\xa6z\xf6DV2\x99\f%/\x95\x1d[\xde\x1aX.\xcfB\x991-.dR\xc1\xa1\xb2\x82;\xcd=\xa49-\xa3ˡD\x8b\x1eb9\xec\xe3\xca{\vH\x1a\x9du\xf1i\xa5\xa8R\x0f\xc1\xac\x88\xa5fV\xac\x14\xcf1l\xa23\x19O\xb1>{\x02='\xb4\xaaڵlۺ}˫\x00\x00;", + + "images/treeview-gray-line.gif": "GIF89a\x10\x00\xf0\x06\xf7\x00\x00\x00\x00\x00\x80\x80\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00!\xf9\x04\x01\x00\x00\xff\x00,\x00\x00\x00\x00\x10\x00\xf0\x06\x00\b\xff\x00\xff\t\x1c\xf8/\x00\xc1\x83\b\r\"\\X\x90\xe1B\x85\x0e\tB\x8c(p\"E\x8b\x111:\xd4\xc80\x80Ǐ\x1f\x1fR\x948r G\x91%\x1b\xa6<\x990\xa5ʒ,\x0f\xc6$\xb9\xd2\xe5L\x936s\xd6\xdc\tSgO\x9e#oV\xf4\x19\x94\xe8E\xa3\x19\x91nTڑ)ʟP\x8b\x02=:5iեW\x9bf}*5*U\xafV\xc1b\x15\xab\x95,\u05ef]Ӣ]\x1bVm[\xb6c\xddƅ[Vn]\xbag\xdfꝻ\xf7n\u07fc|\x03\xfb\x15\fx\xb0\xe1\u0088[nUl\x96\xb1\xdd\xc42\x9d:\xc6;\xf9oe\u0097\x0fg\x86L\xb3q\xe4ş=w~\xbc\xb9thҧ)\xa7\xb6\xbc\x1askͯ9\xe3\x04=Zumַ]熽[\xf6PڳE\aG\xdd\xdbt\xf1\xd8Ƈ\xdbV\x8e\x9b\xb9n缡\xfb~Iܥ\xf5\xebسk\xdfν{\xf4\xdf\xc2\xc1W\xff\x17\xbf\x9c|s\xf3\xcf\xd1\u007f\xa7^\x9e\xfdy\xf7\xe9\xe1\xaf\x17*\u007f:\xfd\xfb\x92\x91\xeb?\xce_zr\xf5\xf6\xe5\xd7\x1f\x80\xff\xd5W ~\xc0\x11\xb8\x9f\u007f\v*8\xa0\x81\rB\xf8 \x82\xe1I\xc8\xe0\x84\x02^\xa8\xa1\x83\x1bZ\xc8\xe1\x87\x1e\x86H\xe1x\"f\b\xe2\x88\xed\xa1\xf8\x9e\x8a\xf1\xb18\x9f\x89%&\x18c\x85.\x06(c\x8d\a\u0088c\x84;bx\xa3\x8e@\xfe($\x8dA\x129$\x89=v\x98\xe4\x89E\"\xd9d\x8aO\xae\x18e\x8bS\xbex$\x94WJ\x99%\x95[Zi\xe4\x97Nvi#\x98X\x92\xa9\xa5\x99\\\xa2\xe9e\x98j\x8e\xc9\xe6\x9be\xc2y\xa6\x9ciҹf\x9cxΙg\x9d{ީ\xe7\x9f|\x02\xeag\xa0\x84\x0ej\xa8\x9b}\"*\xa8\xa2\x852zh\x8ebBڦ\xa4v:j)\xa5\x89b\xba\xa8\xa6\x8dr\xfa(\x8fU^\nj\xa4\xa3NZj\xa5\x9e\x8a꣩\xab\xa2zj\xa6\xafn\xff\x1ak\xa7\xb3~\xda*\xac\xb7ʚ+\xad\xbbڪd\xa8\xa9\x06[\xab\xaa\xbf\x92\xda+\xb1L\x1a[,\xab˺z\xac\xb0\xcf\x0e\vm\xb3\xb8R\xab\xab\xb5\xbcb\xebk\xb2\xccr묶\xc8\xce\xf8\xad\xb7Ւ{\xad\xb9٢\xbb\xad\xb8\xe5\xb2{\xae\xbb\xe9»\xee\x92\xf2\x86K\xef\xbd\xc0J\xabo\xb4\xfc\x82;\xad\xba\xf6\xe6\xdb/\xc0\xff\xd6[0\xbe\xca\x12\xbc\xaf\xbf\v+<\xb0\xc1\rC\xfc0\xc2\xddJ\xcc\xf0\xc4\x02_\xac\xb1\xc3\x1b[\xcc\xf1\xc7\x1e\x87L\xf1\xb8\"g\f\xf2\xc8\xed\xa2\xfc\xae\xca\xf1\xb2<\xaf\xc9%'\x1cs\xc5.\a,s\xcd\aÌs\xc4;c|\xb3\xce@\xff,4\xcdA\x13=4\xc9=w\x9c\xf4\xc9E#\xddt\xcaO\xaf\x1cu\xcbS\xbf|4\xd4WK\x9d5\xd5[[m\xf4\xd7Nwm3\xd8X\x93\xad\xb5\xd9\\\xa3\xedu\xd8j\x8f\xcd\xf6\xdbe\xc3}\xb6\xdciӽv\xdcxϝw\xdd{\xdf\xff\xad\xf7\xdf|\x03\xeew\xe0\x84\x0fn\xb8\xdb}#.\xb8\xe2\x853~x\xcebC\u07b6\xe4v;n9\xe5\x89c\xbe\xb8\xe6\x8ds\xfe8\xcfU_\x0ez\xe4\xa3O^z型\xee\xb3髣~z\xe6\xafo\x1e{\xe7\xb3\u007f\xde:\xec\xb7˞;\xed\xbbۮt\xe8\xa9\a_\xbb꿓\xde;\xf1L\x1b_<\xeb˻~\xbc\xf0\xcf\x0f\x0f}\xf3\xb8S\xaf\xbb\xf5\xbcc\xef{\xf2\xccs\xef\xbc\xf6\xc8\xcf\xfc\xbd\xf7Փ\u007f\xbd\xf9٣\xbf\xbd\xf8\xe5\xb3\u007f\xbe\xfb\xe9ÿ\xfe\xd2\xf2\x87O\xff\xfd\xc0K\xaf\u007f\xf4\xfc\x83?\xbd\xfa\xf6\xcb_\xff\x00\xf8\xbf\xfa\x15\x10\u007f\xca#\xe0\xfe\xfc\xb7@\x05\x0eЀ\r\x84\xe0\x03\x11\xd8=\t2p\x82\x02\xbc\xa0\x06\x1d\xb8A\vr\xf0\x83\x1e\f!\x05\xc7'\xc2\f\x82p\x84\xedC\xe1\xfbT\x18?\x16\xceτ%L`\f+\xe8\xc2\x00ʰ\x86\a\x84!\x0e#\xb8C\f\xdeP\x87@\xfc\xa1\x102i\x18D\"\x0e\x91\x84=\xec`\x12OXD$61\x85O\\a\x14[8\xc5\x17\x1e\x11\x8aW\x94b\x16\xa9\xb8E+\x1a\xf1\x8bN\xec\xa2\ri\b\x12\x90\x04\x04\x00;", + + "images/treeview-gray.gif": "GIF89a`\x00\x85\x00\xa1\x03\x00\x00\x00\x00\x80\x80\x80\xbc\xbc\xbc\xff\xff\xff!\xf9\x04\x01\x00\x00\x03\x00,\x00\x00\x00\x00`\x00\x85\x00\x00\x02\xfe\x9c\x8f\xa9\xcb\xed\x0f\x87\x98\xc2ш\xb3ި\xf2\x0f\x86\x9a'\x96\xa6I\x9e\xeaʶ\xee\x1aIJ\xfc\xd6f\xb0\xe0\xf6\xfe\xe9\x03p\xf0\xf1\x86\x11\x1f\xd0 $*\x198\x80\xd39\x98%\x97Kc\x90\x8aUX\x91\xd9.W\xeb\xedJg\xe1\xf2\xb4,F\xab\xcfj*\xbb\xad|Ç\xf2\xb9*u\xb5\xef\xf0_\xfdh\xf2p\x01\xe67RRG\x98\xc0\x87\xb8\xc8\xd8H8F\xe3\xa8rv(\x89Aiy\x82\x99i\xf8\xf3\x04$\xc5ٓ#*\xb2Y::\x88\xca\x01\x19\xb3\xda\xf9\xaa\x19+;\v[\x1bRyې{\xab\xc8[\xeb;+\xd80\x8c\xf0K\xa8\xa8q여\xeb\xfc\f\rݺ\xfcz\x1a\xadz\x14u\xcdt\x90M\xbd\xda\xf4\x19E\xb6\xdd\xe7]\x8e\x9d\x87\xaen\xbcn\xdc\xea\x1e/?O_\xef\xd5,\x8f\xffJ\x81_\xec\x1c\x9c\x8fT@U\xee\x00\xdac7oZB\x81\xf1\xb6h\x93\xe7\xf0\x1b\xaapO\xc6E*\x17q\xa1\x81ms\x10\x19\xbaSx0\xa4ȑ$%\x90\xd4W\xf0\x9a?\x05+{\x9d|Y2fL\x90\r=\xae\xb3v\xd3&:\x8aPB\xedԉ\x11\xe86\x9c;\xe1\xc9<\x8a4\xe9*\x94똢sZ\xaa\xe5\x01\xa9\xd7$\xea\xb2z\vk-\xad\xb3\xb8\x96\xa2\xf9QhU\xb1ш\x06\xfd\x04\x8a\\P\x829\xd9\xfet\x8bѨҹt\xebڽ\x8b7\xaf\x82\x02\x00;", + + "implements.html": ` +`, + + "jquery.js": `/*! jQuery v1.8.2 jquery.com | jquery.org/license */ +(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
        a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
        t
        ",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
        ",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
        ",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

        ",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/
  • ","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
    ","
    "]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
    ").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);`, + + "jquery.treeview.css": `/* https://github.com/jzaefferer/jquery-treeview/blob/master/jquery.treeview.css */ +/* License: MIT. */ +.treeview, .treeview ul { + padding: 0; + margin: 0; + list-style: none; +} + +.treeview ul { + background-color: white; + margin-top: 4px; +} + +.treeview .hitarea { + background: url(images/treeview-default.gif) -64px -25px no-repeat; + height: 16px; + width: 16px; + margin-left: -16px; + float: left; + cursor: pointer; +} +/* fix for IE6 */ +* html .hitarea { + display: inline; + float:none; +} + +.treeview li { + margin: 0; + padding: 3px 0pt 3px 16px; +} + +.treeview a.selected { + background-color: #eee; +} + +#treecontrol { margin: 1em 0; display: none; } + +.treeview .hover { color: red; cursor: pointer; } + +.treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; } +.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; } + +.treeview .expandable-hitarea { background-position: -80px -3px; } + +.treeview li.last { background-position: 0 -1766px } +.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } +.treeview li.lastCollapsable { background-position: 0 -111px } +.treeview li.lastExpandable { background-position: -32px -67px } + +.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; } + +.treeview-red li { background-image: url(images/treeview-red-line.gif); } +.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); } + +.treeview-black li { background-image: url(images/treeview-black-line.gif); } +.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); } + +.treeview-gray li { background-image: url(images/treeview-gray-line.gif); } +.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); } + +.treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); } +.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); } + +.treeview .placeholder { + background: url(images/ajax-loader.gif) 0 0 no-repeat; + height: 16px; + width: 16px; + display: block; +} + +.filetree li { padding: 3px 0 2px 16px; } +.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; } +.filetree span.folder { background: url(images/folder.gif) 0 0 no-repeat; } +.filetree li.expandable span.folder { background: url(images/folder-closed.gif) 0 0 no-repeat; } +.filetree span.file { background: url(images/file.gif) 0 0 no-repeat; } +`, + + "jquery.treeview.edit.js": `/* https://github.com/jzaefferer/jquery-treeview/blob/master/jquery.treeview.edit.js */ +/* License: MIT. */ +(function($) { + var CLASSES = $.treeview.classes; + var proxied = $.fn.treeview; + $.fn.treeview = function(settings) { + settings = $.extend({}, settings); + if (settings.add) { + return this.trigger("add", [settings.add]); + } + if (settings.remove) { + return this.trigger("remove", [settings.remove]); + } + return proxied.apply(this, arguments).bind("add", function(event, branches) { + $(branches).prev() + .removeClass(CLASSES.last) + .removeClass(CLASSES.lastCollapsable) + .removeClass(CLASSES.lastExpandable) + .find(">.hitarea") + .removeClass(CLASSES.lastCollapsableHitarea) + .removeClass(CLASSES.lastExpandableHitarea); + $(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings, $(this).data("toggler")); + }).bind("remove", function(event, branches) { + var prev = $(branches).prev(); + var parent = $(branches).parent(); + $(branches).remove(); + prev.filter(":last-child").addClass(CLASSES.last) + .filter("." + CLASSES.expandable).replaceClass(CLASSES.last, CLASSES.lastExpandable).end() + .find(">.hitarea").replaceClass(CLASSES.expandableHitarea, CLASSES.lastExpandableHitarea).end() + .filter("." + CLASSES.collapsable).replaceClass(CLASSES.last, CLASSES.lastCollapsable).end() + .find(">.hitarea").replaceClass(CLASSES.collapsableHitarea, CLASSES.lastCollapsableHitarea); + if (parent.is(":not(:has(>))") && parent[0] != this) { + parent.parent().removeClass(CLASSES.collapsable).removeClass(CLASSES.expandable) + parent.siblings(".hitarea").andSelf().remove(); + } + }); + }; + +})(jQuery); +`, + + "jquery.treeview.js": `/* + * Treeview 1.4.1 - jQuery plugin to hide and show branches of a tree + * + * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ + * http://docs.jquery.com/Plugins/Treeview + * + * Copyright (c) 2007 Jörn Zaefferer + * + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + * Revision: $Id: jquery.treeview.js 5759 2008-07-01 07:50:28Z joern.zaefferer $ + * + */ + +;(function($) { + + // TODO rewrite as a widget, removing all the extra plugins + $.extend($.fn, { + swapClass: function(c1, c2) { + var c1Elements = this.filter('.' + c1); + this.filter('.' + c2).removeClass(c2).addClass(c1); + c1Elements.removeClass(c1).addClass(c2); + return this; + }, + replaceClass: function(c1, c2) { + return this.filter('.' + c1).removeClass(c1).addClass(c2).end(); + }, + hoverClass: function(className) { + className = className || "hover"; + return this.hover(function() { + $(this).addClass(className); + }, function() { + $(this).removeClass(className); + }); + }, + heightToggle: function(animated, callback) { + animated ? + this.animate({ height: "toggle" }, animated, callback) : + this.each(function(){ + jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ](); + if(callback) + callback.apply(this, arguments); + }); + }, + heightHide: function(animated, callback) { + if (animated) { + this.animate({ height: "hide" }, animated, callback); + } else { + this.hide(); + if (callback) + this.each(callback); + } + }, + prepareBranches: function(settings) { + if (!settings.prerendered) { + // mark last tree items + this.filter(":last-child:not(ul)").addClass(CLASSES.last); + // collapse whole tree, or only those marked as closed, anyway except those marked as open + this.filter((settings.collapsed ? "" : "." + CLASSES.closed) + ":not(." + CLASSES.open + ")").find(">ul").hide(); + } + // return all items with sublists + return this.filter(":has(>ul)"); + }, + applyClasses: function(settings, toggler) { + // TODO use event delegation + this.filter(":has(>ul):not(:has(>a))").find(">span").unbind("click.treeview").bind("click.treeview", function(event) { + // don't handle click events on children, eg. checkboxes + if ( this == event.target ) + toggler.apply($(this).next()); + }).add( $("a", this) ).hoverClass(); + + if (!settings.prerendered) { + // handle closed ones first + this.filter(":has(>ul:hidden)") + .addClass(CLASSES.expandable) + .replaceClass(CLASSES.last, CLASSES.lastExpandable); + + // handle open ones + this.not(":has(>ul:hidden)") + .addClass(CLASSES.collapsable) + .replaceClass(CLASSES.last, CLASSES.lastCollapsable); + + // create hitarea if not present + var hitarea = this.find("div." + CLASSES.hitarea); + if (!hitarea.length) + hitarea = this.prepend("
    ").find("div." + CLASSES.hitarea); + hitarea.removeClass().addClass(CLASSES.hitarea).each(function() { + var classes = ""; + $.each($(this).parent().attr("class").split(" "), function() { + classes += this + "-hitarea "; + }); + $(this).addClass( classes ); + }) + } + + // apply event to hitarea + this.find("div." + CLASSES.hitarea).click( toggler ); + }, + treeview: function(settings) { + + settings = $.extend({ + cookieId: "treeview" + }, settings); + + if ( settings.toggle ) { + var callback = settings.toggle; + settings.toggle = function() { + return callback.apply($(this).parent()[0], arguments); + }; + } + + // factory for treecontroller + function treeController(tree, control) { + // factory for click handlers + function handler(filter) { + return function() { + // reuse toggle event handler, applying the elements to toggle + // start searching for all hitareas + toggler.apply( $("div." + CLASSES.hitarea, tree).filter(function() { + // for plain toggle, no filter is provided, otherwise we need to check the parent element + return filter ? $(this).parent("." + filter).length : true; + }) ); + return false; + }; + } + // click on first element to collapse tree + $("a:eq(0)", control).click( handler(CLASSES.collapsable) ); + // click on second to expand tree + $("a:eq(1)", control).click( handler(CLASSES.expandable) ); + // click on third to toggle tree + $("a:eq(2)", control).click( handler() ); + } + + // handle toggle event + function toggler() { + $(this) + .parent() + // swap classes for hitarea + .find(">.hitarea") + .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + // swap classes for parent li + .swapClass( CLASSES.collapsable, CLASSES.expandable ) + .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + // find child lists + .find( ">ul" ) + // toggle them + .heightToggle( settings.animated, settings.toggle ); + if ( settings.unique ) { + $(this).parent() + .siblings() + // swap classes for hitarea + .find(">.hitarea") + .replaceClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .replaceClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ) + .end() + .replaceClass( CLASSES.collapsable, CLASSES.expandable ) + .replaceClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + .find( ">ul" ) + .heightHide( settings.animated, settings.toggle ); + } + } + this.data("toggler", toggler); + + function serialize() { + function binary(arg) { + return arg ? 1 : 0; + } + var data = []; + branches.each(function(i, e) { + data[i] = $(e).is(":has(>ul:visible)") ? 1 : 0; + }); + $.cookie(settings.cookieId, data.join(""), settings.cookieOptions ); + } + + function deserialize() { + var stored = $.cookie(settings.cookieId); + if ( stored ) { + var data = stored.split(""); + branches.each(function(i, e) { + $(e).find(">ul")[ parseInt(data[i]) ? "show" : "hide" ](); + }); + } + } + + // add treeview class to activate styles + this.addClass("treeview"); + + // prepare branches and find all tree items with child lists + var branches = this.find("li").prepareBranches(settings); + + switch(settings.persist) { + case "cookie": + var toggleCallback = settings.toggle; + settings.toggle = function() { + serialize(); + if (toggleCallback) { + toggleCallback.apply(this, arguments); + } + }; + deserialize(); + break; + case "location": + var current = this.find("a").filter(function() { + return this.href.toLowerCase() == location.href.toLowerCase(); + }); + if ( current.length ) { + // TODO update the open/closed classes + var items = current.addClass("selected").parents("ul, li").add( current.next() ).show(); + if (settings.prerendered) { + // if prerendered is on, replicate the basic class swapping + items.filter("li") + .swapClass( CLASSES.collapsable, CLASSES.expandable ) + .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable ) + .find(">.hitarea") + .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea ) + .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea ); + } + } + break; + } + + branches.applyClasses(settings, toggler); + + // if control option is set, create the treecontroller and show it + if ( settings.control ) { + treeController(this, settings.control); + $(settings.control).show(); + } + + return this; + } + }); + + // classes used by the plugin + // need to be styled via external stylesheet, see first example + $.treeview = {}; + var CLASSES = ($.treeview.classes = { + open: "open", + closed: "closed", + expandable: "expandable", + expandableHitarea: "expandable-hitarea", + lastExpandableHitarea: "lastExpandable-hitarea", + collapsable: "collapsable", + collapsableHitarea: "collapsable-hitarea", + lastCollapsableHitarea: "lastCollapsable-hitarea", + lastCollapsable: "lastCollapsable", + lastExpandable: "lastExpandable", + last: "last", + hitarea: "hitarea" + }); + +})(jQuery); +`, + + "methodset.html": ` +`, + + "opensearch.xml": ` + + godoc + The Go Programming Language + go golang + + + /favicon.ico + UTF-8 + UTF-8 + +`, + + "package.html": ` + +{{with .PDoc}} + + + {{if $.IsMain}} + {{/* command documentation */}} + {{comment_html .Doc}} + {{else}} + {{/* package documentation */}} +
    +
    +
    import "{{html .ImportPath}}"
    +
    +
    +
    Overview
    +
    Index
    + {{if $.Examples}} +
    Examples
    + {{end}} + {{if $.Dirs}} +
    Subdirectories
    + {{end}} +
    +
    + +
    + +
    +

    Overview ▾

    + {{comment_html .Doc}} +
    +
    + {{example_html $ ""}} + +
    + +
    +

    Index ▾

    + + +
    +
    + {{if .Consts}} +
    Constants
    + {{end}} + {{if .Vars}} +
    Variables
    + {{end}} + {{range .Funcs}} + {{$name_html := html .Name}} +
    {{node_html $ .Decl false | sanitize}}
    + {{end}} + {{range .Types}} + {{$tname_html := html .Name}} +
    type {{$tname_html}}
    + {{range .Funcs}} + {{$name_html := html .Name}} +
        {{node_html $ .Decl false | sanitize}}
    + {{end}} + {{range .Methods}} + {{$name_html := html .Name}} +
        {{node_html $ .Decl false | sanitize}}
    + {{end}} + {{end}} + {{if $.Notes}} + {{range $marker, $item := $.Notes}} +
    {{noteTitle $marker | html}}s
    + {{end}} + {{end}} +
    +
    + + {{if $.Examples}} +
    +

    Examples

    +
    + {{range $.Examples}} +
    {{example_name .Name}}
    + {{end}} +
    +
    + {{end}} + + {{with .Filenames}} +

    Package files

    +

    + + {{range .}} + {{.|filename|html}} + {{end}} + +

    + {{end}} +
    +
    + + + + {{with .Consts}} +

    Constants

    + {{range .}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + {{end}} + {{with .Vars}} +

    Variables

    + {{range .}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + {{end}} + {{range .Funcs}} + {{/* Name is a string - no need for FSet */}} + {{$name_html := html .Name}} +

    func {{$name_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{example_html $ .Name}} + {{callgraph_html $ "" .Name}} + + {{end}} + {{range .Types}} + {{$tname := .Name}} + {{$tname_html := html .Name}} +

    type {{$tname_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + + {{range .Consts}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + + {{range .Vars}} +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{end}} + + {{example_html $ $tname}} + {{implements_html $ $tname}} + {{methodset_html $ $tname}} + + {{range .Funcs}} + {{$name_html := html .Name}} +

    func {{$name_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{example_html $ .Name}} + {{callgraph_html $ "" .Name}} + {{end}} + + {{range .Methods}} + {{$name_html := html .Name}} +

    func ({{html .Recv}}) {{$name_html}}

    +
    {{node_html $ .Decl true}}
    + {{comment_html .Doc}} + {{$name := printf "%s_%s" $tname .Name}} + {{example_html $ $name}} + {{callgraph_html $ .Recv .Name}} + {{end}} + {{end}} + {{end}} + + {{with $.Notes}} + {{range $marker, $content := .}} +

    {{noteTitle $marker | html}}s

    +
      + {{range .}} +
    • {{html .Body}}
    • + {{end}} +
    + {{end}} + {{end}} +{{end}} + +{{with .PAst}} + {{range $filename, $ast := .}} + {{$filename|filename|html}}:
    {{node_html $ $ast false}}
    + {{end}} +{{end}} + +{{with .Dirs}} + {{/* DirList entries are numbers and strings - no need for FSet */}} + {{if $.PDoc}} +

    Subdirectories

    + {{else}} +
    + +
    + {{end}} +
    + + + + + + {{if not $.DirFlat}} + + + + {{end}} + {{range .List}} + {{if $.DirFlat}} + {{if .HasPkg}} + + + + + + {{end}} + {{else}} + + + + + + {{end}} + {{end}} +
    Name    Synopsis
    ..
    {{html .Path}}    {{html .Synopsis}}
    {{repeat ` + "`" + `     ` + "`" + ` .Depth}}{{html .Name}}    {{html .Synopsis}}
    + {{if $.PDoc}}{{else}} +

    Need more packages? Check out the sub-repositories and other Go projects.

    + {{end}} +{{end}} +`, + + "package.txt": `{{$info := .}}{{$filtered := .IsFiltered}}{{/* + +--------------------------------------- + +*/}}{{if $filtered}}{{range .PAst}}{{range .Decls}}{{node $info .}}{{end}}{{end}}{{else}}{{with .PAst}}{{range $filename, $ast := .}}{{$filename}}: +{{node $ $ast}}{{end}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if and $filtered (not (or .PDoc .PAst))}}No match found. +{{end}}{{with .PDoc}}{{if $.IsMain}}COMMAND DOCUMENTATION + +{{comment_text .Doc " " "\t"}} +{{else}}{{if not $filtered}}PACKAGE DOCUMENTATION + +package {{.Name}} + import "{{.ImportPath}}" + +{{comment_text .Doc " " "\t"}} +{{example_text $ "" " "}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Consts}}{{if not $filtered}}CONSTANTS + +{{end}}{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Vars}}{{if not $filtered}}VARIABLES + +{{end}}{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Funcs}}{{if not $filtered}}FUNCTIONS + +{{end}}{{range .}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{example_text $ .Name " "}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with .Types}}{{if not $filtered}}TYPES + +{{end}}{{range .}}{{$tname := .Name}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{/* + +--------------------------------------- + +*/}}{{if .Consts}}{{range .Consts}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if .Vars}}{{range .Vars}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{range $name := .Names}}{{example_text $ $name " "}}{{end}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if .Funcs}}{{range .Funcs}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{example_text $ .Name " "}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if .Methods}}{{range .Methods}}{{node $ .Decl}} +{{comment_text .Doc " " "\t"}} +{{$name := printf "%s_%s" $tname .Name}}{{example_text $ $name " "}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if and $filtered (not (or .Consts (or .Vars (or .Funcs .Types))))}}No match found. +{{end}}{{/* + +--------------------------------------- + +*/}}{{end}}{{/* + +--------------------------------------- + +*/}}{{with $.Notes}} +{{range $marker, $content := .}} +{{$marker}}S + +{{range $content}}{{comment_text .Body " " "\t"}} +{{end}}{{end}}{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{if not $filtered}}{{with .Dirs}}SUBDIRECTORIES +{{if $.DirFlat}}{{range .List}}{{if .HasPkg}} + {{.Path}}{{end}}{{end}} +{{else}}{{range .List}} + {{repeat ` + "`" + `. ` + "`" + ` .Depth}}{{.Name}}{{end}} +{{end}}{{end}}{{/* + +--------------------------------------- + +*/}}{{end}}{{/* +Make sure there is no newline at the end of this file. +perl -i -pe 'chomp if eof' package.txt +*/}} +`, + + "play.js": `// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +function initPlayground(transport) { + "use strict"; + + function text(node) { + var s = ""; + for (var i = 0; i < node.childNodes.length; i++) { + var n = node.childNodes[i]; + if (n.nodeType === 1) { + if (n.tagName === "BUTTON") continue + if (n.tagName === "SPAN" && n.className === "number") continue; + if (n.tagName === "DIV" || n.tagName == "BR") { + s += "\n"; + } + s += text(n); + continue; + } + if (n.nodeType === 3) { + s += n.nodeValue; + } + } + return s.replace("\xA0", " "); // replace non-breaking spaces + } + + function init(code) { + var output = document.createElement('div'); + var outpre = document.createElement('pre'); + var running; + + if ($ && $(output).resizable) { + $(output).resizable({ + handles: "n,w,nw", + minHeight: 27, + minWidth: 135, + maxHeight: 608, + maxWidth: 990 + }); + } + + function onKill() { + if (running) running.Kill(); + } + + function onRun(e) { + onKill(); + output.style.display = "block"; + outpre.innerHTML = ""; + run1.style.display = "none"; + var options = {Race: e.shiftKey}; + running = transport.Run(text(code), PlaygroundOutput(outpre), options); + } + + function onClose() { + onKill(); + output.style.display = "none"; + run1.style.display = "inline-block"; + } + + var run1 = document.createElement('button'); + run1.innerHTML = 'Run'; + run1.className = 'run'; + run1.addEventListener("click", onRun, false); + var run2 = document.createElement('button'); + run2.className = 'run'; + run2.innerHTML = 'Run'; + run2.addEventListener("click", onRun, false); + var kill = document.createElement('button'); + kill.className = 'kill'; + kill.innerHTML = 'Kill'; + kill.addEventListener("click", onKill, false); + var close = document.createElement('button'); + close.className = 'close'; + close.innerHTML = 'Close'; + close.addEventListener("click", onClose, false); + + var button = document.createElement('div'); + button.classList.add('buttons'); + button.appendChild(run1); + // Hack to simulate insertAfter + code.parentNode.insertBefore(button, code.nextSibling); + + var buttons = document.createElement('div'); + buttons.classList.add('buttons'); + buttons.appendChild(run2); + buttons.appendChild(kill); + buttons.appendChild(close); + + output.classList.add('output'); + output.appendChild(buttons); + output.appendChild(outpre); + output.style.display = "none"; + code.parentNode.insertBefore(output, button.nextSibling); + } + + var play = document.querySelectorAll('div.playground'); + for (var i = 0; i < play.length; i++) { + init(play[i]); + } +} + +`, + + "playground.js": `// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +In the absence of any formal way to specify interfaces in JavaScript, +here's a skeleton implementation of a playground transport. + + function Transport() { + // Set up any transport state (eg, make a websocket connnection). + return { + Run: function(body, output, options) { + // Compile and run the program 'body' with 'options'. + // Call the 'output' callback to display program output. + return { + Kill: function() { + // Kill the running program. + } + }; + } + }; + } + + // The output callback is called multiple times, and each time it is + // passed an object of this form. + var write = { + Kind: 'string', // 'start', 'stdout', 'stderr', 'end' + Body: 'string' // content of write or end status message + } + + // The first call must be of Kind 'start' with no body. + // Subsequent calls may be of Kind 'stdout' or 'stderr' + // and must have a non-null Body string. + // The final call should be of Kind 'end' with an optional + // Body string, signifying a failure ("killed", for example). + + // The output callback must be of this form. + // See PlaygroundOutput (below) for an implementation. + function outputCallback(write) { + } +*/ + +function HTTPTransport() { + 'use strict'; + + // TODO(adg): support stderr + + function playback(output, events) { + var timeout; + output({Kind: 'start'}); + function next() { + if (events.length === 0) { + output({Kind: 'end'}); + return; + } + var e = events.shift(); + if (e.Delay === 0) { + output({Kind: 'stdout', Body: e.Message}); + next(); + return; + } + timeout = setTimeout(function() { + output({Kind: 'stdout', Body: e.Message}); + next(); + }, e.Delay / 1000000); + } + next(); + return { + Stop: function() { + clearTimeout(timeout); + } + } + } + + function error(output, msg) { + output({Kind: 'start'}); + output({Kind: 'stderr', Body: msg}); + output({Kind: 'end'}); + } + + var seq = 0; + return { + Run: function(body, output, options) { + seq++; + var cur = seq; + var playing; + $.ajax('/compile', { + type: 'POST', + data: {'version': 2, 'body': body}, + dataType: 'json', + success: function(data) { + if (seq != cur) return; + if (!data) return; + if (playing != null) playing.Stop(); + if (data.Errors) { + error(output, data.Errors); + return; + } + playing = playback(output, data.Events); + }, + error: function() { + error(output, 'Error communicating with remote server.'); + } + }); + return { + Kill: function() { + if (playing != null) playing.Stop(); + output({Kind: 'end', Body: 'killed'}); + } + }; + } + }; +} + +function SocketTransport() { + 'use strict'; + + var id = 0; + var outputs = {}; + var started = {}; + var websocket = new WebSocket('ws://' + window.location.host + '/socket'); + + websocket.onclose = function() { + console.log('websocket connection closed'); + } + + websocket.onmessage = function(e) { + var m = JSON.parse(e.data); + var output = outputs[m.Id]; + if (output === null) + return; + if (!started[m.Id]) { + output({Kind: 'start'}); + started[m.Id] = true; + } + output({Kind: m.Kind, Body: m.Body}); + } + + function send(m) { + websocket.send(JSON.stringify(m)); + } + + return { + Run: function(body, output, options) { + var thisID = id+''; + id++; + outputs[thisID] = output; + send({Id: thisID, Kind: 'run', Body: body, Options: options}); + return { + Kill: function() { + send({Id: thisID, Kind: 'kill'}); + } + }; + } + }; +} + +function PlaygroundOutput(el) { + 'use strict'; + + return function(write) { + if (write.Kind == 'start') { + el.innerHTML = ''; + return; + } + + var cl = 'system'; + if (write.Kind == 'stdout' || write.Kind == 'stderr') + cl = write.Kind; + + var m = write.Body; + if (write.Kind == 'end') + m = '\nProgram exited' + (m?(': '+m):'.'); + + if (m.indexOf('IMAGE:') === 0) { + // TODO(adg): buffer all writes before creating image + var url = 'data:image/png;base64,' + m.substr(6); + var img = document.createElement('img'); + img.src = url; + el.appendChild(img); + return; + } + + // ^L clears the screen. + var s = m.split('\x0c'); + if (s.length > 1) { + el.innerHTML = ''; + m = s.pop(); + } + + m = m.replace(/&/g, '&'); + m = m.replace(//g, '>'); + + var needScroll = (el.scrollTop + el.offsetHeight) == el.scrollHeight; + + var span = document.createElement('span'); + span.className = cl; + span.innerHTML = m; + el.appendChild(span); + + if (needScroll) + el.scrollTop = el.scrollHeight - el.offsetHeight; + } +} + +(function() { + function lineHighlight(error) { + var regex = /prog.go:([0-9]+)/g; + var r = regex.exec(error); + while (r) { + $(".lines div").eq(r[1]-1).addClass("lineerror"); + r = regex.exec(error); + } + } + function highlightOutput(wrappedOutput) { + return function(write) { + if (write.Body) lineHighlight(write.Body); + wrappedOutput(write); + } + } + function lineClear() { + $(".lineerror").removeClass("lineerror"); + } + + // opts is an object with these keys + // codeEl - code editor element + // outputEl - program output element + // runEl - run button element + // fmtEl - fmt button element (optional) + // fmtImportEl - fmt "imports" checkbox element (optional) + // shareEl - share button element (optional) + // shareURLEl - share URL text input element (optional) + // shareRedirect - base URL to redirect to on share (optional) + // toysEl - toys select element (optional) + // enableHistory - enable using HTML5 history API (optional) + // transport - playground transport to use (default is HTTPTransport) + function playground(opts) { + var code = $(opts.codeEl); + var transport = opts['transport'] || new HTTPTransport(); + var running; + + // autoindent helpers. + function insertTabs(n) { + // find the selection start and end + var start = code[0].selectionStart; + var end = code[0].selectionEnd; + // split the textarea content into two, and insert n tabs + var v = code[0].value; + var u = v.substr(0, start); + for (var i=0; i 0) { + curpos--; + if (el.value[curpos] == "\t") { + tabs++; + } else if (tabs > 0 || el.value[curpos] == "\n") { + break; + } + } + setTimeout(function() { + insertTabs(tabs); + }, 1); + } + + function keyHandler(e) { + if (e.keyCode == 9) { // tab + insertTabs(1); + e.preventDefault(); + return false; + } + if (e.keyCode == 13) { // enter + if (e.shiftKey) { // +shift + run(); + e.preventDefault(); + return false; + } else { + autoindent(e.target); + } + } + return true; + } + code.unbind('keydown').bind('keydown', keyHandler); + var outdiv = $(opts.outputEl).empty(); + var output = $('
    ').appendTo(outdiv);
    +  
    +    function body() {
    +      return $(opts.codeEl).val();
    +    }
    +    function setBody(text) {
    +      $(opts.codeEl).val(text);
    +    }
    +    function origin(href) {
    +      return (""+href).split("/").slice(0, 3).join("/");
    +    }
    +  
    +    var pushedEmpty = (window.location.pathname == "/");
    +    function inputChanged() {
    +      if (pushedEmpty) {
    +        return;
    +      }
    +      pushedEmpty = true;
    +      $(opts.shareURLEl).hide();
    +      window.history.pushState(null, "", "/");
    +    }
    +    function popState(e) {
    +      if (e === null) {
    +        return;
    +      }
    +      if (e && e.state && e.state.code) {
    +        setBody(e.state.code);
    +      }
    +    }
    +    var rewriteHistory = false;
    +    if (window.history && window.history.pushState && window.addEventListener && opts.enableHistory) {
    +      rewriteHistory = true;
    +      code[0].addEventListener('input', inputChanged);
    +      window.addEventListener('popstate', popState);
    +    }
    +
    +    function setError(error) {
    +      if (running) running.Kill();
    +      lineClear();
    +      lineHighlight(error);
    +      output.empty().addClass("error").text(error);
    +    }
    +    function loading() {
    +      lineClear();
    +      if (running) running.Kill();
    +      output.removeClass("error").text('Waiting for remote server...');
    +    }
    +    function run() {
    +      loading();
    +      running = transport.Run(body(), highlightOutput(PlaygroundOutput(output[0])));
    +    }
    +
    +    function fmt() {
    +      loading();
    +      var data = {"body": body()}; 
    +      if ($(opts.fmtImportEl).is(":checked")) {
    +        data["imports"] = "true";
    +      }
    +      $.ajax("/fmt", {
    +        data: data,
    +        type: "POST",
    +        dataType: "json",
    +        success: function(data) {
    +          if (data.Error) {
    +            setError(data.Error);
    +          } else {
    +            setBody(data.Body);
    +            setError("");
    +          }
    +        }
    +      });
    +    }
    +
    +    $(opts.runEl).click(run);
    +    $(opts.fmtEl).click(fmt);
    +
    +    if (opts.shareEl !== null && (opts.shareURLEl !== null || opts.shareRedirect !== null)) {
    +      var shareURL;
    +      if (opts.shareURLEl) {
    +        shareURL = $(opts.shareURLEl).hide();
    +      }
    +      var sharing = false;
    +      $(opts.shareEl).click(function() {
    +        if (sharing) return;
    +        sharing = true;
    +        var sharingData = body();
    +        $.ajax("/share", {
    +          processData: false,
    +          data: sharingData,
    +          type: "POST",
    +          complete: function(xhr) {
    +            sharing = false;
    +            if (xhr.status != 200) {
    +              alert("Server error; try again.");
    +              return;
    +            }
    +            if (opts.shareRedirect) {
    +              window.location = opts.shareRedirect + xhr.responseText;
    +            }
    +            if (shareURL) {
    +              var path = "/p/" + xhr.responseText;
    +              var url = origin(window.location) + path;
    +              shareURL.show().val(url).focus().select();
    +  
    +              if (rewriteHistory) {
    +                var historyData = {"code": sharingData};
    +                window.history.pushState(historyData, "", path);
    +                pushedEmpty = false;
    +              }
    +            }
    +          }
    +        });
    +      });
    +    }
    +  
    +    if (opts.toysEl !== null) {
    +      $(opts.toysEl).bind('change', function() {
    +        var toy = $(this).val();
    +        $.ajax("/doc/play/"+toy, {
    +          processData: false,
    +          type: "GET",
    +          complete: function(xhr) {
    +            if (xhr.status != 200) {
    +              alert("Server error; try again.");
    +              return;
    +            }
    +            setBody(xhr.responseText);
    +          }
    +        });
    +      });
    +    }
    +  }
    +
    +  window.playground = playground;
    +})();
    +`,
    +
    +	"search.html": `
    +{{with .Alert}}
    +	

    + {{html .}} +

    +{{end}} +{{with .Alt}} +

    + Did you mean: + {{range .Alts}} + {{html .}} + {{end}} +

    +{{end}} +`, + + "search.txt": `QUERY + {{.Query}} + +{{with .Alert}}{{.}} +{{end}}{{/* .Alert */}}{{/* + +--------------------------------------- + +*/}}{{with .Alt}}DID YOU MEAN + +{{range .Alts}} {{.}} +{{end}} +{{end}}{{/* .Alt */}}{{/* + +--------------------------------------- + +*/}}{{with .Pak}}PACKAGE {{$.Query}} + +{{range .}} {{pkgLink .Pak.Path}} +{{end}} +{{end}}{{/* .Pak */}}{{/* + +--------------------------------------- + +*/}}{{range $key, $val := .Idents}}{{if $val}}{{$key.Name}} +{{range $val.Idents}} {{.Path}}.{{.Name}} +{{end}} +{{end}}{{end}}{{/* .Idents */}}{{/* + +--------------------------------------- + +*/}}{{with .Hit}}{{with .Decls}}PACKAGE-LEVEL DECLARATIONS + +{{range .}}package {{.Pak.Name}} +{{range $file := .Files}}{{range .Groups}}{{range .}} {{srcLink $file.File.Path}}:{{infoLine .}}{{end}} +{{end}}{{end}}{{/* .Files */}} +{{end}}{{end}}{{/* .Decls */}}{{/* + +--------------------------------------- + +*/}}{{with .Others}}LOCAL DECLARATIONS AND USES + +{{range .}}package {{.Pak.Name}} +{{range $file := .Files}}{{range .Groups}}{{range .}} {{srcLink $file.File.Path}}:{{infoLine .}} +{{end}}{{end}}{{end}}{{/* .Files */}} +{{end}}{{end}}{{/* .Others */}}{{end}}{{/* .Hit */}}{{/* + +--------------------------------------- + +*/}}{{if .Textual}}{{if .Complete}}{{.Found}} TEXTUAL OCCURRENCES{{else}}MORE THAN {{.Found}} TEXTUAL OCCURRENCES{{end}} + +{{range .Textual}}{{len .Lines}} {{srcLink .Filename}} +{{end}}{{if not .Complete}}... ... +{{end}}{{end}} +`, + + "searchcode.html": ` +{{$query_url := urlquery .Query}} +{{if not .Idents}} + {{with .Pak}} +

    Package {{html $.Query}}

    +

    + + {{range .}} + {{$pkg_html := pkgLink .Pak.Path | html}} + + {{end}} +
    {{$pkg_html}}
    +

    + {{end}} +{{end}} +{{with .Hit}} + {{with .Decls}} +

    Package-level declarations

    + {{range .}} + {{$pkg_html := pkgLink .Pak.Path | html}} +

    package {{html .Pak.Name}}

    + {{range .Files}} + {{$file := .File.Path}} + {{range .Groups}} + {{range .}} + {{$line := infoLine .}} + {{$file}}:{{$line}} + {{infoSnippet_html .}} + {{end}} + {{end}} + {{end}} + {{end}} + {{end}} + {{with .Others}} +

    Local declarations and uses

    + {{range .}} + {{$pkg_html := pkgLink .Pak.Path | html}} +

    package {{html .Pak.Name}}

    + {{range .Files}} + {{$file := .File.Path}} + {{$file}} + + {{range .Groups}} + + + + + + + {{end}} +
    {{index . 0 | infoKind_html}} + {{range .}} + {{$line := infoLine .}} + {{$line}} + {{end}} +
    + {{end}} + {{end}} + {{end}} +{{end}} +`, + + "searchdoc.html": ` +{{range $key, $val := .Idents}} + {{if $val}} +

    {{$key.Name}}

    + {{range $val}} + {{$pkg_html := pkgLink .Path | html}} + {{if eq "Packages" $key.Name}} + {{html .Path}} + {{else}} + {{$doc_html := docLink .Path .Name| html}} + {{html .Package}}.{{.Name}} + {{end}} + {{if .Doc}} +

    {{comment_html .Doc}}

    + {{else}} +

    No documentation available

    + {{end}} + {{end}} + {{end}} +{{end}} +`, + + "searchtxt.html": ` +{{$query_url := urlquery .Query}} +{{with .Textual}} + {{if $.Complete}} +

    {{html $.Found}} textual occurrences

    + {{else}} +

    More than {{html $.Found}} textual occurrences

    +

    + Not all files or lines containing "{{html $.Query}}" are shown. +

    + {{end}} +

    + + {{range .}} + {{$file := .Filename}} + + + + + + + + {{end}} + {{if not $.Complete}} + + {{end}} +
    + {{$file}}: + {{len .Lines}} + {{range .Lines}} + {{html .}} + {{end}} + {{if not $.Complete}} + ... + {{end}} +
    ...
    +

    +{{end}} +`, + + "style.css": `body { + margin: 0; + font-family: Helvetica, Arial, sans-serif; + font-size: 16px; +} +pre, +code { + font-family: Menlo, monospace; + font-size: 14px; +} +pre { + line-height: 18px; +} +pre .comment { + color: #006600; +} +pre .highlight, +pre .highlight-comment, +pre .selection-highlight, +pre .selection-highlight-comment { + background: #FFFF00; +} +pre .selection, +pre .selection-comment { + background: #FF9632; +} +pre .ln { + color: #999; +} +body { + color: #222; +} +a, +.exampleHeading .text { + color: #375EAB; + text-decoration: none; +} +a:hover, +.exampleHeading .text:hover { + text-decoration: underline; +} +p, +pre, +ul, +ol { + margin: 20px; +} +pre { + background: #e9e9e9; + padding: 10px; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +h1, +h2, +h3, +h4, +.rootHeading { + margin: 20px 0; + padding: 0; + color: #375EAB; + font-weight: bold; +} +h1 { + font-size: 24px; +} +h2 { + font-size: 20px; + background: #E0EBF5; + padding: 2px 5px; +} +h3 { + font-size: 20px; +} +h3, +h4 { + margin: 20px 5px; +} +h4 { + font-size: 16px; +} +.rootHeading { + font-size: 20px; + margin: 0; +} + +dl { + margin: 20px; +} +dd { + margin: 2px 20px; +} +dl, +dd { + font-size: 14px; +} +div#nav table td { + vertical-align: top; +} + +table.dir th { + text-align: left; +} +table.dir td { + word-wrap: break-word; + vertical-align: top; +} +div#page.wide table.dir td.name { + white-space: nowrap; +} +.alert { + color: #AA0000; +} + +div#heading { + float: left; + margin: 0 0 10px 0; + padding: 21px 0; + font-size: 20px; + font-weight: normal; +} +div#heading a { + color: #222; + text-decoration: none; +} + +div#topbar { + background: #E0EBF5; + height: 64px; + overflow: hidden; +} + +body { + text-align: center; +} +div#page { + width: 100%; +} +div#page > .container, +div#topbar > .container { + text-align: left; + margin-left: auto; + margin-right: auto; + padding: 0 20px; + width: 900px; +} +div#page.wide > .container, +div#topbar.wide > .container { + width: auto; +} +div#plusone { + float: right; + clear: right; + margin-top: 5px; +} + +div#footer { + text-align: center; + color: #666; + font-size: 14px; + margin: 40px 0; +} + +div#menu > a, +div#menu > input, +div#learn .buttons a, +div.play .buttons a, +div#blog .read a { + padding: 10px; + + text-decoration: none; + font-size: 16px; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +div#playground .buttons a, +div#menu > a, +div#menu > input { + border: 1px solid #375EAB; +} +div#playground .buttons a, +div#menu > a { + color: white; + background: #375EAB; +} +#playgroundButton.active { + background: white; + color: #375EAB; +} +a#start, +div#learn .buttons a, +div.play .buttons a, +div#blog .read a { + color: #222; + border: 1px solid #375EAB; + background: #E0EBF5; +} +.download { + width: 150px; +} + +div#menu { + float: right; + min-width: 590px; + padding: 10px 0; + text-align: right; +} +div#menu > a { + margin-right: 5px; + margin-bottom: 10px; + + padding: 10px; +} +div#menu > input { + position: relative; + top: 1px; + width: 60px; + background: white; + color: #222; +} +div#menu > input.inactive { + color: #999; +} + +div.left { + float: left; + clear: left; +} +div.right { + float: right; + clear: right; +} +div.left, +div.right { + width: 415px; +} + +div#learn, +div#about { + padding-top: 20px; +} +div#learn h2, +div#about { + margin: 0; +} +div#about { + font-size: 20px; +} + +div#about { + height: 96px; +} +div#gopher { + background: url(/doc/gopher/frontpage.png) no-repeat; + background-position: center top; + height: 155px; +} +a#start { + display: block; + padding: 10px; + + text-align: center; + text-decoration: none; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +a#start .big { + display: block; + font-weight: bold; + font-size: 20px; +} +a#start .desc { + display: block; + font-size: 14px; + font-weight: normal; + margin-top: 5px; +} + +div#learn .popout { + float: right; + display: block; + cursor: pointer; + font-size: 12px; + background: url(/doc/share.png) no-repeat; + background-position: right top; + padding: 5px 27px; +} +div#learn pre, +div#learn textarea { + padding: 0; + margin: 0; + font-family: Menlo, monospace; + font-size: 14px; +} +div#learn .input { + padding: 10px; + margin-top: 10px; + height: 150px; + + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; +} +div#learn .input textarea { + width: 100%; + height: 100%; + border: none; + outline: none; + resize: none; +} +div#learn .output { + border-top: none !important; + + padding: 10px; + height: 59px; + overflow: auto; + + -webkit-border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomright: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} +div#learn .output pre { + padding: 0; + + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +div#learn .input, +div#learn .input textarea, +div#learn .output, +div#learn .output pre { + background: #FFFFD8; +} +div#learn .input, +div#learn .output { + border: 1px solid #375EAB; +} +div#learn .buttons { + float: right; + padding: 20px 0 10px 0; + text-align: right; +} +div#learn .buttons a { + height: 16px; + margin-left: 5px; + padding: 10px; +} +div#learn .toys { + margin-top: 8px; +} +div#learn .toys select { + border: 1px solid #375EAB; + margin: 0; +} +div#learn .output .exit { + display: none; +} + +div#blog, +div#video { + margin-top: 40px; +} +div#blog > a, +div#blog > div, +div#blog > h2, +div#video > a, +div#video > div, +div#video > h2 { + margin-bottom: 10px; +} +div#blog .title, +div#video .title { + display: block; + font-size: 20px; +} +div#blog .when { + color: #666; + font-size: 14px; +} +div#blog .read { + text-align: right; +} + +.toggleButton { cursor: pointer; } +.toggle .collapsed { display: block; } +.toggle .expanded { display: none; } +.toggleVisible .collapsed { display: none; } +.toggleVisible .expanded { display: block; } + +table.codetable { margin-left: auto; margin-right: auto; border-style: none; } +table.codetable td { padding-right: 10px; } +hr { border-style: none; border-top: 1px solid black; } + +img.gopher { + float: right; + margin-left: 10px; + margin-bottom: 10px; + z-index: -1; +} +.pkgGopher { + text-align: right; +} +.pkgGopher .gopher { + float: none; + position: relative; + top: -40px; + margin-bottom: -120px; +} +h2 { clear: right; } + +/* example and drop-down playground */ +div.play { + padding: 0 20px 40px 20px; +} +div.play pre, +div.play textarea, +div.play .lines { + padding: 0; + margin: 0; + font-family: Menlo, monospace; + font-size: 14px; +} +div.play .input { + padding: 10px; + margin-top: 10px; + + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; + + overflow: hidden; +} +div.play .input textarea { + width: 100%; + height: 100%; + border: none; + outline: none; + resize: none; + + overflow: hidden; +} +div#playground .input textarea { + overflow: auto; + resize: auto; +} +div.play .output { + border-top: none !important; + + padding: 10px; + max-height: 200px; + overflow: auto; + + -webkit-border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomright: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} +div.play .output pre { + padding: 0; + + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +div.play .input, +div.play .input textarea, +div.play .output, +div.play .output pre { + background: #FFFFD8; +} +div.play .input, +div.play .output { + border: 1px solid #375EAB; +} +div.play .buttons { + float: right; + padding: 20px 0 10px 0; + text-align: right; +} +div.play .buttons a { + height: 16px; + margin-left: 5px; + padding: 10px; + cursor: pointer; +} +.output .stderr { + color: #933; +} +.output .system { + color: #999; +} + +/* drop-down playground */ +#playgroundButton, +div#playground { + /* start hidden; revealed by javascript */ + display: none; +} +div#playground { + position: absolute; + top: 63px; + right: 20px; + padding: 0 10px 10px 10px; + z-index: 1; + text-align: left; + background: #E0EBF5; + + border: 1px solid #B0BBC5; + border-top: none; + + -webkit-border-bottom-left-radius: 5px; + -webkit-border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 5px; + -moz-border-radius-bottomright: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; +} +div#playground .code { + width: 520px; + height: 200px; +} +div#playground .output { + height: 100px; +} + +/* Inline runnable snippets (play.js/initPlayground) */ +#content .code pre, #content .playground pre, #content .output pre { + margin: 0; + padding: 0; + background: none; + border: none; + outline: 0px solid transparent; + overflow: auto; +} +#content .playground .number, #content .code .number { + color: #999; +} +#content .code, #content .playground, #content .output { + width: auto; + margin: 20px; + padding: 10px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +#content .code, #content .playground { + background: #e9e9e9; +} +#content .output { + background: #202020; +} +#content .output .stdout, #content .output pre { + color: #e6e6e6; +} +#content .output .stderr, #content .output .error { + color: rgb(244, 74, 63); +} +#content .output .system, #content .output .exit { + color: rgb(255, 209, 77) +} +#content .buttons { + position: relative; + float: right; + top: -50px; + right: 30px; +} +#content .output .buttons { + top: -60px; + right: 0; + height: 0; +} +#content .buttons .kill { + display: none; + visibility: hidden; +} +a.error { + font-weight: bold; + color: white; + background-color: darkred; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + padding: 2px 4px 2px 4px; /* TRBL */ +}`, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/style.css b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/style.css new file mode 100644 index 00000000..c7a72ccb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/static/style.css @@ -0,0 +1,604 @@ +body { + margin: 0; + font-family: Helvetica, Arial, sans-serif; + font-size: 16px; +} +pre, +code { + font-family: Menlo, monospace; + font-size: 14px; +} +pre { + line-height: 18px; +} +pre .comment { + color: #006600; +} +pre .highlight, +pre .highlight-comment, +pre .selection-highlight, +pre .selection-highlight-comment { + background: #FFFF00; +} +pre .selection, +pre .selection-comment { + background: #FF9632; +} +pre .ln { + color: #999; +} +body { + color: #222; +} +a, +.exampleHeading .text { + color: #375EAB; + text-decoration: none; +} +a:hover, +.exampleHeading .text:hover { + text-decoration: underline; +} +p, +pre, +ul, +ol { + margin: 20px; +} +pre { + background: #e9e9e9; + padding: 10px; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +h1, +h2, +h3, +h4, +.rootHeading { + margin: 20px 0; + padding: 0; + color: #375EAB; + font-weight: bold; +} +h1 { + font-size: 24px; +} +h2 { + font-size: 20px; + background: #E0EBF5; + padding: 2px 5px; +} +h3 { + font-size: 20px; +} +h3, +h4 { + margin: 20px 5px; +} +h4 { + font-size: 16px; +} +.rootHeading { + font-size: 20px; + margin: 0; +} + +dl { + margin: 20px; +} +dd { + margin: 2px 20px; +} +dl, +dd { + font-size: 14px; +} +div#nav table td { + vertical-align: top; +} + +table.dir th { + text-align: left; +} +table.dir td { + word-wrap: break-word; + vertical-align: top; +} +div#page.wide table.dir td.name { + white-space: nowrap; +} +.alert { + color: #AA0000; +} + +div#heading { + float: left; + margin: 0 0 10px 0; + padding: 21px 0; + font-size: 20px; + font-weight: normal; +} +div#heading a { + color: #222; + text-decoration: none; +} + +div#topbar { + background: #E0EBF5; + height: 64px; + overflow: hidden; +} + +body { + text-align: center; +} +div#page { + width: 100%; +} +div#page > .container, +div#topbar > .container { + text-align: left; + margin-left: auto; + margin-right: auto; + padding: 0 20px; + width: 900px; +} +div#page.wide > .container, +div#topbar.wide > .container { + width: auto; +} +div#plusone { + float: right; + clear: right; + margin-top: 5px; +} + +div#footer { + text-align: center; + color: #666; + font-size: 14px; + margin: 40px 0; +} + +div#menu > a, +div#menu > input, +div#learn .buttons a, +div.play .buttons a, +div#blog .read a { + padding: 10px; + + text-decoration: none; + font-size: 16px; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +div#playground .buttons a, +div#menu > a, +div#menu > input { + border: 1px solid #375EAB; +} +div#playground .buttons a, +div#menu > a { + color: white; + background: #375EAB; +} +#playgroundButton.active { + background: white; + color: #375EAB; +} +a#start, +div#learn .buttons a, +div.play .buttons a, +div#blog .read a { + color: #222; + border: 1px solid #375EAB; + background: #E0EBF5; +} +.download { + width: 150px; +} + +div#menu { + float: right; + min-width: 590px; + padding: 10px 0; + text-align: right; +} +div#menu > a { + margin-right: 5px; + margin-bottom: 10px; + + padding: 10px; +} +div#menu > input { + position: relative; + top: 1px; + width: 60px; + background: white; + color: #222; +} +div#menu > input.inactive { + color: #999; +} + +div.left { + float: left; + clear: left; +} +div.right { + float: right; + clear: right; +} +div.left, +div.right { + width: 415px; +} + +div#learn, +div#about { + padding-top: 20px; +} +div#learn h2, +div#about { + margin: 0; +} +div#about { + font-size: 20px; +} + +div#about { + height: 96px; +} +div#gopher { + background: url(/doc/gopher/frontpage.png) no-repeat; + background-position: center top; + height: 155px; +} +a#start { + display: block; + padding: 10px; + + text-align: center; + text-decoration: none; + + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +a#start .big { + display: block; + font-weight: bold; + font-size: 20px; +} +a#start .desc { + display: block; + font-size: 14px; + font-weight: normal; + margin-top: 5px; +} + +div#learn .popout { + float: right; + display: block; + cursor: pointer; + font-size: 12px; + background: url(/doc/share.png) no-repeat; + background-position: right top; + padding: 5px 27px; +} +div#learn pre, +div#learn textarea { + padding: 0; + margin: 0; + font-family: Menlo, monospace; + font-size: 14px; +} +div#learn .input { + padding: 10px; + margin-top: 10px; + height: 150px; + + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; +} +div#learn .input textarea { + width: 100%; + height: 100%; + border: none; + outline: none; + resize: none; +} +div#learn .output { + border-top: none !important; + + padding: 10px; + height: 59px; + overflow: auto; + + -webkit-border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomright: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} +div#learn .output pre { + padding: 0; + + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +div#learn .input, +div#learn .input textarea, +div#learn .output, +div#learn .output pre { + background: #FFFFD8; +} +div#learn .input, +div#learn .output { + border: 1px solid #375EAB; +} +div#learn .buttons { + float: right; + padding: 20px 0 10px 0; + text-align: right; +} +div#learn .buttons a { + height: 16px; + margin-left: 5px; + padding: 10px; +} +div#learn .toys { + margin-top: 8px; +} +div#learn .toys select { + border: 1px solid #375EAB; + margin: 0; +} +div#learn .output .exit { + display: none; +} + +div#blog, +div#video { + margin-top: 40px; +} +div#blog > a, +div#blog > div, +div#blog > h2, +div#video > a, +div#video > div, +div#video > h2 { + margin-bottom: 10px; +} +div#blog .title, +div#video .title { + display: block; + font-size: 20px; +} +div#blog .when { + color: #666; + font-size: 14px; +} +div#blog .read { + text-align: right; +} + +.toggleButton { cursor: pointer; } +.toggle .collapsed { display: block; } +.toggle .expanded { display: none; } +.toggleVisible .collapsed { display: none; } +.toggleVisible .expanded { display: block; } + +table.codetable { margin-left: auto; margin-right: auto; border-style: none; } +table.codetable td { padding-right: 10px; } +hr { border-style: none; border-top: 1px solid black; } + +img.gopher { + float: right; + margin-left: 10px; + margin-bottom: 10px; + z-index: -1; +} +.pkgGopher { + text-align: right; +} +.pkgGopher .gopher { + float: none; + position: relative; + top: -40px; + margin-bottom: -120px; +} +h2 { clear: right; } + +/* example and drop-down playground */ +div.play { + padding: 0 20px 40px 20px; +} +div.play pre, +div.play textarea, +div.play .lines { + padding: 0; + margin: 0; + font-family: Menlo, monospace; + font-size: 14px; +} +div.play .input { + padding: 10px; + margin-top: 10px; + + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; + + overflow: hidden; +} +div.play .input textarea { + width: 100%; + height: 100%; + border: none; + outline: none; + resize: none; + + overflow: hidden; +} +div#playground .input textarea { + overflow: auto; + resize: auto; +} +div.play .output { + border-top: none !important; + + padding: 10px; + max-height: 200px; + overflow: auto; + + -webkit-border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomright: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} +div.play .output pre { + padding: 0; + + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +div.play .input, +div.play .input textarea, +div.play .output, +div.play .output pre { + background: #FFFFD8; +} +div.play .input, +div.play .output { + border: 1px solid #375EAB; +} +div.play .buttons { + float: right; + padding: 20px 0 10px 0; + text-align: right; +} +div.play .buttons a { + height: 16px; + margin-left: 5px; + padding: 10px; + cursor: pointer; +} +.output .stderr { + color: #933; +} +.output .system { + color: #999; +} + +/* drop-down playground */ +#playgroundButton, +div#playground { + /* start hidden; revealed by javascript */ + display: none; +} +div#playground { + position: absolute; + top: 63px; + right: 20px; + padding: 0 10px 10px 10px; + z-index: 1; + text-align: left; + background: #E0EBF5; + + border: 1px solid #B0BBC5; + border-top: none; + + -webkit-border-bottom-left-radius: 5px; + -webkit-border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 5px; + -moz-border-radius-bottomright: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; +} +div#playground .code { + width: 520px; + height: 200px; +} +div#playground .output { + height: 100px; +} + +/* Inline runnable snippets (play.js/initPlayground) */ +#content .code pre, #content .playground pre, #content .output pre { + margin: 0; + padding: 0; + background: none; + border: none; + outline: 0px solid transparent; + overflow: auto; +} +#content .playground .number, #content .code .number { + color: #999; +} +#content .code, #content .playground, #content .output { + width: auto; + margin: 20px; + padding: 10px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +#content .code, #content .playground { + background: #e9e9e9; +} +#content .output { + background: #202020; +} +#content .output .stdout, #content .output pre { + color: #e6e6e6; +} +#content .output .stderr, #content .output .error { + color: rgb(244, 74, 63); +} +#content .output .system, #content .output .exit { + color: rgb(255, 209, 77) +} +#content .buttons { + position: relative; + float: right; + top: -50px; + right: 30px; +} +#content .output .buttons { + top: -60px; + right: 0; + height: 0; +} +#content .buttons .kill { + display: none; + visibility: hidden; +} +a.error { + font-weight: bold; + color: white; + background-color: darkred; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + padding: 2px 4px 2px 4px; /* TRBL */ +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/tab.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/tab.go new file mode 100644 index 00000000..7973b740 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/tab.go @@ -0,0 +1,78 @@ +// TODO(bradfitz,adg): move to util + +package godoc + +import "io" + +var spaces = []byte(" ") // 32 spaces seems like a good number + +const ( + indenting = iota + collecting +) + +// A tconv is an io.Writer filter for converting leading tabs into spaces. +type tconv struct { + output io.Writer + state int // indenting or collecting + indent int // valid if state == indenting + p *Presentation +} + +func (p *tconv) writeIndent() (err error) { + i := p.indent + for i >= len(spaces) { + i -= len(spaces) + if _, err = p.output.Write(spaces); err != nil { + return + } + } + // i < len(spaces) + if i > 0 { + _, err = p.output.Write(spaces[0:i]) + } + return +} + +func (p *tconv) Write(data []byte) (n int, err error) { + if len(data) == 0 { + return + } + pos := 0 // valid if p.state == collecting + var b byte + for n, b = range data { + switch p.state { + case indenting: + switch b { + case '\t': + p.indent += p.p.TabWidth + case '\n': + p.indent = 0 + if _, err = p.output.Write(data[n : n+1]); err != nil { + return + } + case ' ': + p.indent++ + default: + p.state = collecting + pos = n + if err = p.writeIndent(); err != nil { + return + } + } + case collecting: + if b == '\n' { + p.state = indenting + p.indent = 0 + if _, err = p.output.Write(data[pos : n+1]); err != nil { + return + } + } + } + } + n = len(data) + if pos < n && p.state == collecting { + _, err = p.output.Write(data[pos:]) + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/template.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/template.go new file mode 100644 index 00000000..325bc8ca --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/template.go @@ -0,0 +1,179 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Template support for writing HTML documents. +// Documents that include Template: true in their +// metadata are executed as input to text/template. +// +// This file defines functions for those templates to invoke. + +// The template uses the function "code" to inject program +// source into the output by extracting code from files and +// injecting them as HTML-escaped
     blocks.
    +//
    +// The syntax is simple: 1, 2, or 3 space-separated arguments:
    +//
    +// Whole file:
    +//	{{code "foo.go"}}
    +// One line (here the signature of main):
    +//	{{code "foo.go" `/^func.main/`}}
    +// Block of text, determined by start and end (here the body of main):
    +//	{{code "foo.go" `/^func.main/` `/^}/`
    +//
    +// Patterns can be `/regular expression/`, a decimal number, or "$"
    +// to signify the end of the file. In multi-line matches,
    +// lines that end with the four characters
    +//	OMIT
    +// are omitted from the output, making it easy to provide marker
    +// lines in the input that will not appear in the output but are easy
    +// to identify by pattern.
    +
    +package godoc
    +
    +import (
    +	"bytes"
    +	"fmt"
    +	"log"
    +	"regexp"
    +	"strings"
    +
    +	"code.google.com/p/go.tools/godoc/vfs"
    +)
    +
    +// Functions in this file panic on error, but the panic is recovered
    +// to an error by 'code'.
    +
    +// contents reads and returns the content of the named file
    +// (from the virtual file system, so for example /doc refers to $GOROOT/doc).
    +func (c *Corpus) contents(name string) string {
    +	file, err := vfs.ReadFile(c.fs, name)
    +	if err != nil {
    +		log.Panic(err)
    +	}
    +	return string(file)
    +}
    +
    +// stringFor returns a textual representation of the arg, formatted according to its nature.
    +func stringFor(arg interface{}) string {
    +	switch arg := arg.(type) {
    +	case int:
    +		return fmt.Sprintf("%d", arg)
    +	case string:
    +		if len(arg) > 2 && arg[0] == '/' && arg[len(arg)-1] == '/' {
    +			return fmt.Sprintf("%#q", arg)
    +		}
    +		return fmt.Sprintf("%q", arg)
    +	default:
    +		log.Panicf("unrecognized argument: %v type %T", arg, arg)
    +	}
    +	return ""
    +}
    +
    +func (p *Presentation) code(file string, arg ...interface{}) (s string, err error) {
    +	defer func() {
    +		if r := recover(); r != nil {
    +			err = fmt.Errorf("%v", r)
    +		}
    +	}()
    +
    +	text := p.Corpus.contents(file)
    +	var command string
    +	switch len(arg) {
    +	case 0:
    +		// text is already whole file.
    +		command = fmt.Sprintf("code %q", file)
    +	case 1:
    +		command = fmt.Sprintf("code %q %s", file, stringFor(arg[0]))
    +		text = p.Corpus.oneLine(file, text, arg[0])
    +	case 2:
    +		command = fmt.Sprintf("code %q %s %s", file, stringFor(arg[0]), stringFor(arg[1]))
    +		text = p.Corpus.multipleLines(file, text, arg[0], arg[1])
    +	default:
    +		return "", fmt.Errorf("incorrect code invocation: code %q %q", file, arg)
    +	}
    +	// Trim spaces from output.
    +	text = strings.Trim(text, "\n")
    +	// Replace tabs by spaces, which work better in HTML.
    +	text = strings.Replace(text, "\t", "    ", -1)
    +	var buf bytes.Buffer
    +	// HTML-escape text and syntax-color comments like elsewhere.
    +	FormatText(&buf, []byte(text), -1, true, "", nil)
    +	// Include the command as a comment.
    +	text = fmt.Sprintf("
    %s
    ", command, buf.Bytes()) + return text, nil +} + +// parseArg returns the integer or string value of the argument and tells which it is. +func parseArg(arg interface{}, file string, max int) (ival int, sval string, isInt bool) { + switch n := arg.(type) { + case int: + if n <= 0 || n > max { + log.Panicf("%q:%d is out of range", file, n) + } + return n, "", true + case string: + return 0, n, false + } + log.Panicf("unrecognized argument %v type %T", arg, arg) + return +} + +// oneLine returns the single line generated by a two-argument code invocation. +func (c *Corpus) oneLine(file, text string, arg interface{}) string { + lines := strings.SplitAfter(c.contents(file), "\n") + line, pattern, isInt := parseArg(arg, file, len(lines)) + if isInt { + return lines[line-1] + } + return lines[match(file, 0, lines, pattern)-1] +} + +// multipleLines returns the text generated by a three-argument code invocation. +func (c *Corpus) multipleLines(file, text string, arg1, arg2 interface{}) string { + lines := strings.SplitAfter(c.contents(file), "\n") + line1, pattern1, isInt1 := parseArg(arg1, file, len(lines)) + line2, pattern2, isInt2 := parseArg(arg2, file, len(lines)) + if !isInt1 { + line1 = match(file, 0, lines, pattern1) + } + if !isInt2 { + line2 = match(file, line1, lines, pattern2) + } else if line2 < line1 { + log.Panicf("lines out of order for %q: %d %d", text, line1, line2) + } + for k := line1 - 1; k < line2; k++ { + if strings.HasSuffix(lines[k], "OMIT\n") { + lines[k] = "" + } + } + return strings.Join(lines[line1-1:line2], "") +} + +// match identifies the input line that matches the pattern in a code invocation. +// If start>0, match lines starting there rather than at the beginning. +// The return value is 1-indexed. +func match(file string, start int, lines []string, pattern string) int { + // $ matches the end of the file. + if pattern == "$" { + if len(lines) == 0 { + log.Panicf("%q: empty file", file) + } + return len(lines) + } + // /regexp/ matches the line that matches the regexp. + if len(pattern) > 2 && pattern[0] == '/' && pattern[len(pattern)-1] == '/' { + re, err := regexp.Compile(pattern[1 : len(pattern)-1]) + if err != nil { + log.Panic(err) + } + for i := start; i < len(lines); i++ { + if re.MatchString(lines[i]) { + return i + 1 + } + } + log.Panicf("%s: no match for %#q", file, pattern) + } + log.Panicf("unrecognized pattern: %q", pattern) + return 0 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/util/throttle.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/util/throttle.go new file mode 100644 index 00000000..53d9ba62 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/util/throttle.go @@ -0,0 +1,88 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package util + +import "time" + +// A Throttle permits throttling of a goroutine by +// calling the Throttle method repeatedly. +// +type Throttle struct { + f float64 // f = (1-r)/r for 0 < r < 1 + dt time.Duration // minimum run time slice; >= 0 + tr time.Duration // accumulated time running + ts time.Duration // accumulated time stopped + tt time.Time // earliest throttle time (= time Throttle returned + tm) +} + +// NewThrottle creates a new Throttle with a throttle value r and +// a minimum allocated run time slice of dt: +// +// r == 0: "empty" throttle; the goroutine is always sleeping +// r == 1: full throttle; the goroutine is never sleeping +// +// A value of r == 0.6 throttles a goroutine such that it runs +// approx. 60% of the time, and sleeps approx. 40% of the time. +// Values of r < 0 or r > 1 are clamped down to values between 0 and 1. +// Values of dt < 0 are set to 0. +// +func NewThrottle(r float64, dt time.Duration) *Throttle { + var f float64 + switch { + case r <= 0: + f = -1 // indicates always sleep + case r >= 1: + f = 0 // assume r == 1 (never sleep) + default: + // 0 < r < 1 + f = (1 - r) / r + } + if dt < 0 { + dt = 0 + } + return &Throttle{f: f, dt: dt, tt: time.Now().Add(dt)} +} + +// Throttle calls time.Sleep such that over time the ratio tr/ts between +// accumulated run (tr) and sleep times (ts) approximates the value 1/(1-r) +// where r is the throttle value. Throttle returns immediately (w/o sleeping) +// if less than tm ns have passed since the last call to Throttle. +// +func (p *Throttle) Throttle() { + if p.f < 0 { + select {} // always sleep + } + + t0 := time.Now() + if t0.Before(p.tt) { + return // keep running (minimum time slice not exhausted yet) + } + + // accumulate running time + p.tr += t0.Sub(p.tt) + p.dt + + // compute sleep time + // Over time we want: + // + // tr/ts = r/(1-r) + // + // Thus: + // + // ts = tr*f with f = (1-r)/r + // + // After some incremental run time δr added to the total run time + // tr, the incremental sleep-time δs to get to the same ratio again + // after waking up from time.Sleep is: + if δs := time.Duration(float64(p.tr)*p.f) - p.ts; δs > 0 { + time.Sleep(δs) + } + + // accumulate (actual) sleep time + t1 := time.Now() + p.ts += t1.Sub(t0) + + // set earliest next throttle time + p.tt = t1.Add(p.dt) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/util/util.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/util/util.go new file mode 100644 index 00000000..1371bcd1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/util/util.go @@ -0,0 +1,89 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package util contains utility types and functions for godoc. +package util + +import ( + pathpkg "path" + "sync" + "time" + "unicode/utf8" + + "code.google.com/p/go.tools/godoc/vfs" +) + +// An RWValue wraps a value and permits mutually exclusive +// access to it and records the time the value was last set. +type RWValue struct { + mutex sync.RWMutex + value interface{} + timestamp time.Time // time of last set() +} + +func (v *RWValue) Set(value interface{}) { + v.mutex.Lock() + v.value = value + v.timestamp = time.Now() + v.mutex.Unlock() +} + +func (v *RWValue) Get() (interface{}, time.Time) { + v.mutex.RLock() + defer v.mutex.RUnlock() + return v.value, v.timestamp +} + +// IsText reports whether a significant prefix of s looks like correct UTF-8; +// that is, if it is likely that s is human-readable text. +func IsText(s []byte) bool { + const max = 1024 // at least utf8.UTFMax + if len(s) > max { + s = s[0:max] + } + for i, c := range string(s) { + if i+utf8.UTFMax > len(s) { + // last char may be incomplete - ignore + break + } + if c == 0xFFFD || c < ' ' && c != '\n' && c != '\t' && c != '\f' { + // decoding error or control character - not a text file + return false + } + } + return true +} + +// textExt[x] is true if the extension x indicates a text file, and false otherwise. +var textExt = map[string]bool{ + ".css": false, // must be served raw + ".js": false, // must be served raw +} + +// IsTextFile reports whether the file has a known extension indicating +// a text file, or if a significant chunk of the specified file looks like +// correct UTF-8; that is, if it is likely that the file contains human- +// readable text. +func IsTextFile(fs vfs.Opener, filename string) bool { + // if the extension is known, use it for decision making + if isText, found := textExt[pathpkg.Ext(filename)]; found { + return isText + } + + // the extension is not known; read an initial chunk + // of the file and check if it looks like text + f, err := fs.Open(filename) + if err != nil { + return false + } + defer f.Close() + + var buf [1024]byte + n, err := f.Read(buf[0:]) + if err != nil { + return false + } + + return IsText(buf[0:n]) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/gatefs/gatefs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/gatefs/gatefs.go new file mode 100644 index 00000000..2e6c47f1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/gatefs/gatefs.go @@ -0,0 +1,89 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package gatefs provides an implementation of the FileSystem +// interface that wraps another FileSystem and limits its concurrency. +package gatefs + +import ( + "fmt" + "os" + + "code.google.com/p/go.tools/godoc/vfs" +) + +// New returns a new FileSystem that delegates to fs. +// If gateCh is non-nil and buffered, it's used as a gate +// to limit concurrency on calls to fs. +func New(fs vfs.FileSystem, gateCh chan bool) vfs.FileSystem { + if cap(gateCh) == 0 { + return fs + } + return gatefs{fs, gate(gateCh)} +} + +type gate chan bool + +func (g gate) enter() { g <- true } +func (g gate) leave() { <-g } + +type gatefs struct { + fs vfs.FileSystem + gate +} + +func (fs gatefs) String() string { + return fmt.Sprintf("gated(%s, %d)", fs.fs.String(), cap(fs.gate)) +} + +func (fs gatefs) Open(p string) (vfs.ReadSeekCloser, error) { + fs.enter() + defer fs.leave() + rsc, err := fs.fs.Open(p) + if err != nil { + return nil, err + } + return gatef{rsc, fs.gate}, nil +} + +func (fs gatefs) Lstat(p string) (os.FileInfo, error) { + fs.enter() + defer fs.leave() + return fs.fs.Lstat(p) +} + +func (fs gatefs) Stat(p string) (os.FileInfo, error) { + fs.enter() + defer fs.leave() + return fs.fs.Stat(p) +} + +func (fs gatefs) ReadDir(p string) ([]os.FileInfo, error) { + fs.enter() + defer fs.leave() + return fs.fs.ReadDir(p) +} + +type gatef struct { + rsc vfs.ReadSeekCloser + gate +} + +func (f gatef) Read(p []byte) (n int, err error) { + f.enter() + defer f.leave() + return f.rsc.Read(p) +} + +func (f gatef) Seek(offset int64, whence int) (ret int64, err error) { + f.enter() + defer f.leave() + return f.rsc.Seek(offset, whence) +} + +func (f gatef) Close() error { + f.enter() + defer f.leave() + return f.rsc.Close() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/httpfs/httpfs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/httpfs/httpfs.go new file mode 100644 index 00000000..51a4fff2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/httpfs/httpfs.go @@ -0,0 +1,94 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package httpfs implements http.FileSystem using a godoc vfs.FileSystem. +package httpfs + +import ( + "fmt" + "io" + "net/http" + "os" + + "code.google.com/p/go.tools/godoc/vfs" +) + +func New(fs vfs.FileSystem) http.FileSystem { + return &httpFS{fs} +} + +type httpFS struct { + fs vfs.FileSystem +} + +func (h *httpFS) Open(name string) (http.File, error) { + fi, err := h.fs.Stat(name) + if err != nil { + return nil, err + } + if fi.IsDir() { + return &httpDir{h.fs, name, nil}, nil + } + f, err := h.fs.Open(name) + if err != nil { + return nil, err + } + return &httpFile{h.fs, f, name}, nil +} + +// httpDir implements http.File for a directory in a FileSystem. +type httpDir struct { + fs vfs.FileSystem + name string + pending []os.FileInfo +} + +func (h *httpDir) Close() error { return nil } +func (h *httpDir) Stat() (os.FileInfo, error) { return h.fs.Stat(h.name) } +func (h *httpDir) Read([]byte) (int, error) { + return 0, fmt.Errorf("cannot Read from directory %s", h.name) +} + +func (h *httpDir) Seek(offset int64, whence int) (int64, error) { + if offset == 0 && whence == 0 { + h.pending = nil + return 0, nil + } + return 0, fmt.Errorf("unsupported Seek in directory %s", h.name) +} + +func (h *httpDir) Readdir(count int) ([]os.FileInfo, error) { + if h.pending == nil { + d, err := h.fs.ReadDir(h.name) + if err != nil { + return nil, err + } + if d == nil { + d = []os.FileInfo{} // not nil + } + h.pending = d + } + + if len(h.pending) == 0 && count > 0 { + return nil, io.EOF + } + if count <= 0 || count > len(h.pending) { + count = len(h.pending) + } + d := h.pending[:count] + h.pending = h.pending[count:] + return d, nil +} + +// httpFile implements http.File for a file (not directory) in a FileSystem. +type httpFile struct { + fs vfs.FileSystem + vfs.ReadSeekCloser + name string +} + +func (h *httpFile) Stat() (os.FileInfo, error) { return h.fs.Stat(h.name) } +func (h *httpFile) Readdir(int) ([]os.FileInfo, error) { + return nil, fmt.Errorf("cannot Readdir from file %s", h.name) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/mapfs/mapfs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/mapfs/mapfs.go new file mode 100644 index 00000000..550c4baf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/mapfs/mapfs.go @@ -0,0 +1,152 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package mapfs file provides an implementation of the FileSystem +// interface based on the contents of a map[string]string. +package mapfs + +import ( + "io" + "os" + pathpkg "path" + "sort" + "strings" + "time" + + "code.google.com/p/go.tools/godoc/vfs" +) + +// New returns a new FileSystem from the provided map. +// Map keys should be forward slash-separated pathnames +// and not contain a leading slash. +func New(m map[string]string) vfs.FileSystem { + return mapFS(m) +} + +// mapFS is the map based implementation of FileSystem +type mapFS map[string]string + +func (fs mapFS) String() string { return "mapfs" } + +func (fs mapFS) Close() error { return nil } + +func filename(p string) string { + return strings.TrimPrefix(p, "/") +} + +func (fs mapFS) Open(p string) (vfs.ReadSeekCloser, error) { + b, ok := fs[filename(p)] + if !ok { + return nil, os.ErrNotExist + } + return nopCloser{strings.NewReader(b)}, nil +} + +func fileInfo(name, contents string) os.FileInfo { + return mapFI{name: pathpkg.Base(name), size: len(contents)} +} + +func dirInfo(name string) os.FileInfo { + return mapFI{name: pathpkg.Base(name), dir: true} +} + +func (fs mapFS) Lstat(p string) (os.FileInfo, error) { + b, ok := fs[filename(p)] + if ok { + return fileInfo(p, b), nil + } + ents, _ := fs.ReadDir(p) + if len(ents) > 0 { + return dirInfo(p), nil + } + return nil, os.ErrNotExist +} + +func (fs mapFS) Stat(p string) (os.FileInfo, error) { + return fs.Lstat(p) +} + +// slashdir returns path.Dir(p), but special-cases paths not beginning +// with a slash to be in the root. +func slashdir(p string) string { + d := pathpkg.Dir(p) + if d == "." { + return "/" + } + if strings.HasPrefix(p, "/") { + return d + } + return "/" + d +} + +func (fs mapFS) ReadDir(p string) ([]os.FileInfo, error) { + p = pathpkg.Clean(p) + var ents []string + fim := make(map[string]os.FileInfo) // base -> fi + for fn, b := range fs { + dir := slashdir(fn) + isFile := true + var lastBase string + for { + if dir == p { + base := lastBase + if isFile { + base = pathpkg.Base(fn) + } + if fim[base] == nil { + var fi os.FileInfo + if isFile { + fi = fileInfo(fn, b) + } else { + fi = dirInfo(base) + } + ents = append(ents, base) + fim[base] = fi + } + } + if dir == "/" { + break + } else { + isFile = false + lastBase = pathpkg.Base(dir) + dir = pathpkg.Dir(dir) + } + } + } + if len(ents) == 0 { + return nil, os.ErrNotExist + } + + sort.Strings(ents) + var list []os.FileInfo + for _, dir := range ents { + list = append(list, fim[dir]) + } + return list, nil +} + +// mapFI is the map-based implementation of FileInfo. +type mapFI struct { + name string + size int + dir bool +} + +func (fi mapFI) IsDir() bool { return fi.dir } +func (fi mapFI) ModTime() time.Time { return time.Time{} } +func (fi mapFI) Mode() os.FileMode { + if fi.IsDir() { + return 0755 | os.ModeDir + } + return 0444 +} +func (fi mapFI) Name() string { return pathpkg.Base(fi.name) } +func (fi mapFI) Size() int64 { return int64(fi.size) } +func (fi mapFI) Sys() interface{} { return nil } + +type nopCloser struct { + io.ReadSeeker +} + +func (nc nopCloser) Close() error { return nil } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/mapfs/mapfs_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/mapfs/mapfs_test.go new file mode 100644 index 00000000..6b7db290 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/mapfs/mapfs_test.go @@ -0,0 +1,111 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mapfs + +import ( + "io/ioutil" + "os" + "reflect" + "testing" +) + +func TestOpenRoot(t *testing.T) { + fs := New(map[string]string{ + "foo/bar/three.txt": "a", + "foo/bar.txt": "b", + "top.txt": "c", + "other-top.txt": "d", + }) + tests := []struct { + path string + want string + }{ + {"/foo/bar/three.txt", "a"}, + {"foo/bar/three.txt", "a"}, + {"foo/bar.txt", "b"}, + {"top.txt", "c"}, + {"/top.txt", "c"}, + {"other-top.txt", "d"}, + {"/other-top.txt", "d"}, + } + for _, tt := range tests { + rsc, err := fs.Open(tt.path) + if err != nil { + t.Errorf("Open(%q) = %v", tt.path, err) + continue + } + slurp, err := ioutil.ReadAll(rsc) + if err != nil { + t.Error(err) + } + if string(slurp) != tt.want { + t.Errorf("Read(%q) = %q; want %q", tt.path, tt.want, slurp) + } + rsc.Close() + } + + _, err := fs.Open("/xxxx") + if !os.IsNotExist(err) { + t.Errorf("ReadDir /xxxx = %v; want os.IsNotExist error", err) + } +} + +func TestReaddir(t *testing.T) { + fs := New(map[string]string{ + "foo/bar/three.txt": "333", + "foo/bar.txt": "22", + "top.txt": "top.txt file", + "other-top.txt": "other-top.txt file", + }) + tests := []struct { + dir string + want []os.FileInfo + }{ + { + dir: "/", + want: []os.FileInfo{ + mapFI{name: "foo", dir: true}, + mapFI{name: "other-top.txt", size: len("other-top.txt file")}, + mapFI{name: "top.txt", size: len("top.txt file")}, + }, + }, + { + dir: "/foo", + want: []os.FileInfo{ + mapFI{name: "bar", dir: true}, + mapFI{name: "bar.txt", size: 2}, + }, + }, + { + dir: "/foo/", + want: []os.FileInfo{ + mapFI{name: "bar", dir: true}, + mapFI{name: "bar.txt", size: 2}, + }, + }, + { + dir: "/foo/bar", + want: []os.FileInfo{ + mapFI{name: "three.txt", size: 3}, + }, + }, + } + for _, tt := range tests { + fis, err := fs.ReadDir(tt.dir) + if err != nil { + t.Errorf("ReadDir(%q) = %v", tt.dir, err) + continue + } + if !reflect.DeepEqual(fis, tt.want) { + t.Errorf("ReadDir(%q) = %#v; want %#v", tt.dir, fis, tt.want) + continue + } + } + + _, err := fs.ReadDir("/xxxx") + if !os.IsNotExist(err) { + t.Errorf("ReadDir /xxxx = %v; want os.IsNotExist error", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/namespace.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/namespace.go new file mode 100644 index 00000000..dbba20cb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/namespace.go @@ -0,0 +1,381 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vfs + +import ( + "fmt" + "io" + "os" + pathpkg "path" + "sort" + "strings" + "time" +) + +// Setting debugNS = true will enable debugging prints about +// name space translations. +const debugNS = false + +// A NameSpace is a file system made up of other file systems +// mounted at specific locations in the name space. +// +// The representation is a map from mount point locations +// to the list of file systems mounted at that location. A traditional +// Unix mount table would use a single file system per mount point, +// but we want to be able to mount multiple file systems on a single +// mount point and have the system behave as if the union of those +// file systems were present at the mount point. +// For example, if the OS file system has a Go installation in +// c:\Go and additional Go path trees in d:\Work1 and d:\Work2, then +// this name space creates the view we want for the godoc server: +// +// NameSpace{ +// "/": { +// {old: "/", fs: OS(`c:\Go`), new: "/"}, +// }, +// "/src/pkg": { +// {old: "/src/pkg", fs: OS(`c:\Go`), new: "/src/pkg"}, +// {old: "/src/pkg", fs: OS(`d:\Work1`), new: "/src"}, +// {old: "/src/pkg", fs: OS(`d:\Work2`), new: "/src"}, +// }, +// } +// +// This is created by executing: +// +// ns := NameSpace{} +// ns.Bind("/", OS(`c:\Go`), "/", BindReplace) +// ns.Bind("/src/pkg", OS(`d:\Work1`), "/src", BindAfter) +// ns.Bind("/src/pkg", OS(`d:\Work2`), "/src", BindAfter) +// +// A particular mount point entry is a triple (old, fs, new), meaning that to +// operate on a path beginning with old, replace that prefix (old) with new +// and then pass that path to the FileSystem implementation fs. +// +// Given this name space, a ReadDir of /src/pkg/code will check each prefix +// of the path for a mount point (first /src/pkg/code, then /src/pkg, then /src, +// then /), stopping when it finds one. For the above example, /src/pkg/code +// will find the mount point at /src/pkg: +// +// {old: "/src/pkg", fs: OS(`c:\Go`), new: "/src/pkg"}, +// {old: "/src/pkg", fs: OS(`d:\Work1`), new: "/src"}, +// {old: "/src/pkg", fs: OS(`d:\Work2`), new: "/src"}, +// +// ReadDir will when execute these three calls and merge the results: +// +// OS(`c:\Go`).ReadDir("/src/pkg/code") +// OS(`d:\Work1').ReadDir("/src/code") +// OS(`d:\Work2').ReadDir("/src/code") +// +// Note that the "/src/pkg" in "/src/pkg/code" has been replaced by +// just "/src" in the final two calls. +// +// OS is itself an implementation of a file system: it implements +// OS(`c:\Go`).ReadDir("/src/pkg/code") as ioutil.ReadDir(`c:\Go\src\pkg\code`). +// +// Because the new path is evaluated by fs (here OS(root)), another way +// to read the mount table is to mentally combine fs+new, so that this table: +// +// {old: "/src/pkg", fs: OS(`c:\Go`), new: "/src/pkg"}, +// {old: "/src/pkg", fs: OS(`d:\Work1`), new: "/src"}, +// {old: "/src/pkg", fs: OS(`d:\Work2`), new: "/src"}, +// +// reads as: +// +// "/src/pkg" -> c:\Go\src\pkg +// "/src/pkg" -> d:\Work1\src +// "/src/pkg" -> d:\Work2\src +// +// An invariant (a redundancy) of the name space representation is that +// ns[mtpt][i].old is always equal to mtpt (in the example, ns["/src/pkg"]'s +// mount table entries always have old == "/src/pkg"). The 'old' field is +// useful to callers, because they receive just a []mountedFS and not any +// other indication of which mount point was found. +// +type NameSpace map[string][]mountedFS + +// A mountedFS handles requests for path by replacing +// a prefix 'old' with 'new' and then calling the fs methods. +type mountedFS struct { + old string + fs FileSystem + new string +} + +// hasPathPrefix returns true if x == y or x == y + "/" + more +func hasPathPrefix(x, y string) bool { + return x == y || strings.HasPrefix(x, y) && (strings.HasSuffix(y, "/") || strings.HasPrefix(x[len(y):], "/")) +} + +// translate translates path for use in m, replacing old with new. +// +// mountedFS{"/src/pkg", fs, "/src"}.translate("/src/pkg/code") == "/src/code". +func (m mountedFS) translate(path string) string { + path = pathpkg.Clean("/" + path) + if !hasPathPrefix(path, m.old) { + panic("translate " + path + " but old=" + m.old) + } + return pathpkg.Join(m.new, path[len(m.old):]) +} + +func (NameSpace) String() string { + return "ns" +} + +// Fprint writes a text representation of the name space to w. +func (ns NameSpace) Fprint(w io.Writer) { + fmt.Fprint(w, "name space {\n") + var all []string + for mtpt := range ns { + all = append(all, mtpt) + } + sort.Strings(all) + for _, mtpt := range all { + fmt.Fprintf(w, "\t%s:\n", mtpt) + for _, m := range ns[mtpt] { + fmt.Fprintf(w, "\t\t%s %s\n", m.fs, m.new) + } + } + fmt.Fprint(w, "}\n") +} + +// clean returns a cleaned, rooted path for evaluation. +// It canonicalizes the path so that we can use string operations +// to analyze it. +func (NameSpace) clean(path string) string { + return pathpkg.Clean("/" + path) +} + +type BindMode int + +const ( + BindReplace BindMode = iota + BindBefore + BindAfter +) + +// Bind causes references to old to redirect to the path new in newfs. +// If mode is BindReplace, old redirections are discarded. +// If mode is BindBefore, this redirection takes priority over existing ones, +// but earlier ones are still consulted for paths that do not exist in newfs. +// If mode is BindAfter, this redirection happens only after existing ones +// have been tried and failed. +func (ns NameSpace) Bind(old string, newfs FileSystem, new string, mode BindMode) { + old = ns.clean(old) + new = ns.clean(new) + m := mountedFS{old, newfs, new} + var mtpt []mountedFS + switch mode { + case BindReplace: + mtpt = append(mtpt, m) + case BindAfter: + mtpt = append(mtpt, ns.resolve(old)...) + mtpt = append(mtpt, m) + case BindBefore: + mtpt = append(mtpt, m) + mtpt = append(mtpt, ns.resolve(old)...) + } + + // Extend m.old, m.new in inherited mount point entries. + for i := range mtpt { + m := &mtpt[i] + if m.old != old { + if !hasPathPrefix(old, m.old) { + // This should not happen. If it does, panic so + // that we can see the call trace that led to it. + panic(fmt.Sprintf("invalid Bind: old=%q m={%q, %s, %q}", old, m.old, m.fs.String(), m.new)) + } + suffix := old[len(m.old):] + m.old = pathpkg.Join(m.old, suffix) + m.new = pathpkg.Join(m.new, suffix) + } + } + + ns[old] = mtpt +} + +// resolve resolves a path to the list of mountedFS to use for path. +func (ns NameSpace) resolve(path string) []mountedFS { + path = ns.clean(path) + for { + if m := ns[path]; m != nil { + if debugNS { + fmt.Printf("resolve %s: %v\n", path, m) + } + return m + } + if path == "/" { + break + } + path = pathpkg.Dir(path) + } + return nil +} + +// Open implements the FileSystem Open method. +func (ns NameSpace) Open(path string) (ReadSeekCloser, error) { + var err error + for _, m := range ns.resolve(path) { + if debugNS { + fmt.Printf("tx %s: %v\n", path, m.translate(path)) + } + r, err1 := m.fs.Open(m.translate(path)) + if err1 == nil { + return r, nil + } + if err == nil { + err = err1 + } + } + if err == nil { + err = &os.PathError{Op: "open", Path: path, Err: os.ErrNotExist} + } + return nil, err +} + +// stat implements the FileSystem Stat and Lstat methods. +func (ns NameSpace) stat(path string, f func(FileSystem, string) (os.FileInfo, error)) (os.FileInfo, error) { + var err error + for _, m := range ns.resolve(path) { + fi, err1 := f(m.fs, m.translate(path)) + if err1 == nil { + return fi, nil + } + if err == nil { + err = err1 + } + } + if err == nil { + err = &os.PathError{Op: "stat", Path: path, Err: os.ErrNotExist} + } + return nil, err +} + +func (ns NameSpace) Stat(path string) (os.FileInfo, error) { + return ns.stat(path, FileSystem.Stat) +} + +func (ns NameSpace) Lstat(path string) (os.FileInfo, error) { + return ns.stat(path, FileSystem.Lstat) +} + +// dirInfo is a trivial implementation of os.FileInfo for a directory. +type dirInfo string + +func (d dirInfo) Name() string { return string(d) } +func (d dirInfo) Size() int64 { return 0 } +func (d dirInfo) Mode() os.FileMode { return os.ModeDir | 0555 } +func (d dirInfo) ModTime() time.Time { return startTime } +func (d dirInfo) IsDir() bool { return true } +func (d dirInfo) Sys() interface{} { return nil } + +var startTime = time.Now() + +// ReadDir implements the FileSystem ReadDir method. It's where most of the magic is. +// (The rest is in resolve.) +// +// Logically, ReadDir must return the union of all the directories that are named +// by path. In order to avoid misinterpreting Go packages, of all the directories +// that contain Go source code, we only include the files from the first, +// but we include subdirectories from all. +// +// ReadDir must also return directory entries needed to reach mount points. +// If the name space looks like the example in the type NameSpace comment, +// but c:\Go does not have a src/pkg subdirectory, we still want to be able +// to find that subdirectory, because we've mounted d:\Work1 and d:\Work2 +// there. So if we don't see "src" in the directory listing for c:\Go, we add an +// entry for it before returning. +// +func (ns NameSpace) ReadDir(path string) ([]os.FileInfo, error) { + path = ns.clean(path) + + var ( + haveGo = false + haveName = map[string]bool{} + all []os.FileInfo + err error + first []os.FileInfo + ) + + for _, m := range ns.resolve(path) { + dir, err1 := m.fs.ReadDir(m.translate(path)) + if err1 != nil { + if err == nil { + err = err1 + } + continue + } + + if dir == nil { + dir = []os.FileInfo{} + } + + if first == nil { + first = dir + } + + // If we don't yet have Go files in 'all' and this directory + // has some, add all the files from this directory. + // Otherwise, only add subdirectories. + useFiles := false + if !haveGo { + for _, d := range dir { + if strings.HasSuffix(d.Name(), ".go") { + useFiles = true + haveGo = true + break + } + } + } + + for _, d := range dir { + name := d.Name() + if (d.IsDir() || useFiles) && !haveName[name] { + haveName[name] = true + all = append(all, d) + } + } + } + + // We didn't find any directories containing Go files. + // If some directory returned successfully, use that. + if !haveGo { + for _, d := range first { + if !haveName[d.Name()] { + haveName[d.Name()] = true + all = append(all, d) + } + } + } + + // Built union. Add any missing directories needed to reach mount points. + for old := range ns { + if hasPathPrefix(old, path) && old != path { + // Find next element after path in old. + elem := old[len(path):] + elem = strings.TrimPrefix(elem, "/") + if i := strings.Index(elem, "/"); i >= 0 { + elem = elem[:i] + } + if !haveName[elem] { + haveName[elem] = true + all = append(all, dirInfo(elem)) + } + } + } + + if len(all) == 0 { + return nil, err + } + + sort.Sort(byName(all)) + return all, nil +} + +// byName implements sort.Interface. +type byName []os.FileInfo + +func (f byName) Len() int { return len(f) } +func (f byName) Less(i, j int) bool { return f[i].Name() < f[j].Name() } +func (f byName) Swap(i, j int) { f[i], f[j] = f[j], f[i] } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/os.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/os.go new file mode 100644 index 00000000..40636909 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/os.go @@ -0,0 +1,63 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package vfs + +import ( + "fmt" + "io/ioutil" + "os" + pathpkg "path" + "path/filepath" +) + +// OS returns an implementation of FileSystem reading from the +// tree rooted at root. Recording a root is convenient everywhere +// but necessary on Windows, because the slash-separated path +// passed to Open has no way to specify a drive letter. Using a root +// lets code refer to OS(`c:\`), OS(`d:\`) and so on. +func OS(root string) FileSystem { + return osFS(root) +} + +type osFS string + +func (root osFS) String() string { return "os(" + string(root) + ")" } + +func (root osFS) resolve(path string) string { + // Clean the path so that it cannot possibly begin with ../. + // If it did, the result of filepath.Join would be outside the + // tree rooted at root. We probably won't ever see a path + // with .. in it, but be safe anyway. + path = pathpkg.Clean("/" + path) + + return filepath.Join(string(root), path) +} + +func (root osFS) Open(path string) (ReadSeekCloser, error) { + f, err := os.Open(root.resolve(path)) + if err != nil { + return nil, err + } + fi, err := f.Stat() + if err != nil { + return nil, err + } + if fi.IsDir() { + return nil, fmt.Errorf("Open: %s is a directory", path) + } + return f, nil +} + +func (root osFS) Lstat(path string) (os.FileInfo, error) { + return os.Lstat(root.resolve(path)) +} + +func (root osFS) Stat(path string) (os.FileInfo, error) { + return os.Stat(root.resolve(path)) +} + +func (root osFS) ReadDir(path string) ([]os.FileInfo, error) { + return ioutil.ReadDir(root.resolve(path)) // is sorted +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/vfs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/vfs.go new file mode 100644 index 00000000..937c2b2f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/vfs.go @@ -0,0 +1,45 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package vfs defines types for abstract file system access and provides an +// implementation accessing the file system of the underlying OS. +package vfs + +import ( + "io" + "io/ioutil" + "os" +) + +// The FileSystem interface specifies the methods godoc is using +// to access the file system for which it serves documentation. +type FileSystem interface { + Opener + Lstat(path string) (os.FileInfo, error) + Stat(path string) (os.FileInfo, error) + ReadDir(path string) ([]os.FileInfo, error) + String() string +} + +// Opener is a minimal virtual filesystem that can only open regular files. +type Opener interface { + Open(name string) (ReadSeekCloser, error) +} + +// A ReadSeekCloser can Read, Seek, and Close. +type ReadSeekCloser interface { + io.Reader + io.Seeker + io.Closer +} + +// ReadFile reads the file named by path from fs and returns the contents. +func ReadFile(fs Opener, path string) ([]byte, error) { + rc, err := fs.Open(path) + if err != nil { + return nil, err + } + defer rc.Close() + return ioutil.ReadAll(rc) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/zipfs/zipfs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/zipfs/zipfs.go new file mode 100644 index 00000000..99869c5a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/godoc/vfs/zipfs/zipfs.go @@ -0,0 +1,237 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package zipfs file provides an implementation of the FileSystem +// interface based on the contents of a .zip file. +// +// Assumptions: +// +// - The file paths stored in the zip file must use a slash ('/') as path +// separator; and they must be relative (i.e., they must not start with +// a '/' - this is usually the case if the file was created w/o special +// options). +// - The zip file system treats the file paths found in the zip internally +// like absolute paths w/o a leading '/'; i.e., the paths are considered +// relative to the root of the file system. +// - All path arguments to file system methods must be absolute paths. +package zipfs + +import ( + "archive/zip" + "fmt" + "io" + "os" + "path" + "sort" + "strings" + "time" + + "code.google.com/p/go.tools/godoc/vfs" +) + +// zipFI is the zip-file based implementation of FileInfo +type zipFI struct { + name string // directory-local name + file *zip.File // nil for a directory +} + +func (fi zipFI) Name() string { + return fi.name +} + +func (fi zipFI) Size() int64 { + if f := fi.file; f != nil { + return int64(f.UncompressedSize) + } + return 0 // directory +} + +func (fi zipFI) ModTime() time.Time { + if f := fi.file; f != nil { + return f.ModTime() + } + return time.Time{} // directory has no modified time entry +} + +func (fi zipFI) Mode() os.FileMode { + if fi.file == nil { + // Unix directories typically are executable, hence 555. + return os.ModeDir | 0555 + } + return 0444 +} + +func (fi zipFI) IsDir() bool { + return fi.file == nil +} + +func (fi zipFI) Sys() interface{} { + return nil +} + +// zipFS is the zip-file based implementation of FileSystem +type zipFS struct { + *zip.ReadCloser + list zipList + name string +} + +func (fs *zipFS) String() string { + return "zip(" + fs.name + ")" +} + +func (fs *zipFS) Close() error { + fs.list = nil + return fs.ReadCloser.Close() +} + +func zipPath(name string) string { + name = path.Clean(name) + if !path.IsAbs(name) { + panic(fmt.Sprintf("stat: not an absolute path: %s", name)) + } + return name[1:] // strip leading '/' +} + +func (fs *zipFS) stat(abspath string) (int, zipFI, error) { + i, exact := fs.list.lookup(abspath) + if i < 0 { + // abspath has leading '/' stripped - print it explicitly + return -1, zipFI{}, fmt.Errorf("file not found: /%s", abspath) + } + _, name := path.Split(abspath) + var file *zip.File + if exact { + file = fs.list[i] // exact match found - must be a file + } + return i, zipFI{name, file}, nil +} + +func (fs *zipFS) Open(abspath string) (vfs.ReadSeekCloser, error) { + _, fi, err := fs.stat(zipPath(abspath)) + if err != nil { + return nil, err + } + if fi.IsDir() { + return nil, fmt.Errorf("Open: %s is a directory", abspath) + } + r, err := fi.file.Open() + if err != nil { + return nil, err + } + return &zipSeek{fi.file, r}, nil +} + +type zipSeek struct { + file *zip.File + io.ReadCloser +} + +func (f *zipSeek) Seek(offset int64, whence int) (int64, error) { + if whence == 0 && offset == 0 { + r, err := f.file.Open() + if err != nil { + return 0, err + } + f.Close() + f.ReadCloser = r + return 0, nil + } + return 0, fmt.Errorf("unsupported Seek in %s", f.file.Name) +} + +func (fs *zipFS) Lstat(abspath string) (os.FileInfo, error) { + _, fi, err := fs.stat(zipPath(abspath)) + return fi, err +} + +func (fs *zipFS) Stat(abspath string) (os.FileInfo, error) { + _, fi, err := fs.stat(zipPath(abspath)) + return fi, err +} + +func (fs *zipFS) ReadDir(abspath string) ([]os.FileInfo, error) { + path := zipPath(abspath) + i, fi, err := fs.stat(path) + if err != nil { + return nil, err + } + if !fi.IsDir() { + return nil, fmt.Errorf("ReadDir: %s is not a directory", abspath) + } + + var list []os.FileInfo + dirname := path + "/" + prevname := "" + for _, e := range fs.list[i:] { + if !strings.HasPrefix(e.Name, dirname) { + break // not in the same directory anymore + } + name := e.Name[len(dirname):] // local name + file := e + if i := strings.IndexRune(name, '/'); i >= 0 { + // We infer directories from files in subdirectories. + // If we have x/y, return a directory entry for x. + name = name[0:i] // keep local directory name only + file = nil + } + // If we have x/y and x/z, don't return two directory entries for x. + // TODO(gri): It should be possible to do this more efficiently + // by determining the (fs.list) range of local directory entries + // (via two binary searches). + if name != prevname { + list = append(list, zipFI{name, file}) + prevname = name + } + } + + return list, nil +} + +func New(rc *zip.ReadCloser, name string) vfs.FileSystem { + list := make(zipList, len(rc.File)) + copy(list, rc.File) // sort a copy of rc.File + sort.Sort(list) + return &zipFS{rc, list, name} +} + +type zipList []*zip.File + +// zipList implements sort.Interface +func (z zipList) Len() int { return len(z) } +func (z zipList) Less(i, j int) bool { return z[i].Name < z[j].Name } +func (z zipList) Swap(i, j int) { z[i], z[j] = z[j], z[i] } + +// lookup returns the smallest index of an entry with an exact match +// for name, or an inexact match starting with name/. If there is no +// such entry, the result is -1, false. +func (z zipList) lookup(name string) (index int, exact bool) { + // look for exact match first (name comes before name/ in z) + i := sort.Search(len(z), func(i int) bool { + return name <= z[i].Name + }) + if i >= len(z) { + return -1, false + } + // 0 <= i < len(z) + if z[i].Name == name { + return i, true + } + + // look for inexact match (must be in z[i:], if present) + z = z[i:] + name += "/" + j := sort.Search(len(z), func(i int) bool { + return name <= z[i].Name + }) + if j >= len(z) { + return -1, false + } + // 0 <= j < len(z) + if strings.HasPrefix(z[j].Name, name) { + return i + j, false + } + + return -1, false +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/fix.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/fix.go new file mode 100644 index 00000000..dd3d8170 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/fix.go @@ -0,0 +1,387 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package imports + +import ( + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/token" + "os" + "path" + "path/filepath" + "strings" + "sync" + + "code.google.com/p/go.tools/astutil" +) + +// importToGroup is a list of functions which map from an import path to +// a group number. +var importToGroup = []func(importPath string) (num int, ok bool){ + func(importPath string) (num int, ok bool) { + if strings.HasPrefix(importPath, "appengine") { + return 2, true + } + return + }, + func(importPath string) (num int, ok bool) { + if strings.Contains(importPath, ".") { + return 1, true + } + return + }, +} + +func importGroup(importPath string) int { + for _, fn := range importToGroup { + if n, ok := fn(importPath); ok { + return n + } + } + return 0 +} + +func fixImports(fset *token.FileSet, f *ast.File) (added []string, err error) { + // refs are a set of possible package references currently unsatisified by imports. + // first key: either base package (e.g. "fmt") or renamed package + // second key: referenced package symbol (e.g. "Println") + refs := make(map[string]map[string]bool) + + // decls are the current package imports. key is base package or renamed package. + decls := make(map[string]*ast.ImportSpec) + + // collect potential uses of packages. + var visitor visitFn + visitor = visitFn(func(node ast.Node) ast.Visitor { + if node == nil { + return visitor + } + switch v := node.(type) { + case *ast.ImportSpec: + if v.Name != nil { + decls[v.Name.Name] = v + } else { + local := importPathToName(strings.Trim(v.Path.Value, `\"`)) + decls[local] = v + } + case *ast.SelectorExpr: + xident, ok := v.X.(*ast.Ident) + if !ok { + break + } + if xident.Obj != nil { + // if the parser can resolve it, it's not a package ref + break + } + pkgName := xident.Name + if refs[pkgName] == nil { + refs[pkgName] = make(map[string]bool) + } + if decls[pkgName] == nil { + refs[pkgName][v.Sel.Name] = true + } + } + return visitor + }) + ast.Walk(visitor, f) + + // Search for imports matching potential package references. + searches := 0 + type result struct { + ipath string + name string + err error + } + results := make(chan result) + for pkgName, symbols := range refs { + if len(symbols) == 0 { + continue // skip over packages already imported + } + go func(pkgName string, symbols map[string]bool) { + ipath, rename, err := findImport(pkgName, symbols) + r := result{ipath: ipath, err: err} + if rename { + r.name = pkgName + } + results <- r + }(pkgName, symbols) + searches++ + } + for i := 0; i < searches; i++ { + result := <-results + if result.err != nil { + return nil, result.err + } + if result.ipath != "" { + if result.name != "" { + astutil.AddNamedImport(fset, f, result.name, result.ipath) + } else { + astutil.AddImport(fset, f, result.ipath) + } + added = append(added, result.ipath) + } + } + + // Nil out any unused ImportSpecs, to be removed in following passes + unusedImport := map[string]bool{} + for pkg, is := range decls { + if refs[pkg] == nil && pkg != "_" && pkg != "." { + unusedImport[strings.Trim(is.Path.Value, `"`)] = true + } + } + for ipath := range unusedImport { + if ipath == "C" { + // Don't remove cgo stuff. + continue + } + astutil.DeleteImport(fset, f, ipath) + } + + return added, nil +} + +// importPathToName returns the package name for the given import path. +var importPathToName = importPathToNameGoPath + +// importPathToNameBasic assumes the package name is the base of import path. +func importPathToNameBasic(importPath string) (packageName string) { + return path.Base(importPath) +} + +// importPathToNameGoPath finds out the actual package name, as declared in its .go files. +// If there's a problem, it falls back to using importPathToNameBasic. +func importPathToNameGoPath(importPath string) (packageName string) { + if buildPkg, err := build.Import(importPath, "", 0); err == nil { + return buildPkg.Name + } else { + return importPathToNameBasic(importPath) + } +} + +type pkg struct { + importpath string // full pkg import path, e.g. "net/http" + dir string // absolute file path to pkg directory e.g. "/usr/lib/go/src/fmt" +} + +var pkgIndexOnce sync.Once + +var pkgIndex struct { + sync.Mutex + m map[string][]pkg // shortname => []pkg, e.g "http" => "net/http" +} + +// gate is a semaphore for limiting concurrency. +type gate chan struct{} + +func (g gate) enter() { g <- struct{}{} } +func (g gate) leave() { <-g } + +// fsgate protects the OS & filesystem from too much concurrency. +// Too much disk I/O -> too many threads -> swapping and bad scheduling. +var fsgate = make(gate, 8) + +func loadPkgIndex() { + pkgIndex.Lock() + pkgIndex.m = make(map[string][]pkg) + pkgIndex.Unlock() + + var wg sync.WaitGroup + for _, path := range build.Default.SrcDirs() { + fsgate.enter() + f, err := os.Open(path) + if err != nil { + fsgate.leave() + fmt.Fprint(os.Stderr, err) + continue + } + children, err := f.Readdir(-1) + f.Close() + fsgate.leave() + if err != nil { + fmt.Fprint(os.Stderr, err) + continue + } + for _, child := range children { + if child.IsDir() { + wg.Add(1) + go func(path, name string) { + defer wg.Done() + loadPkg(&wg, path, name) + }(path, child.Name()) + } + } + } + wg.Wait() +} + +func loadPkg(wg *sync.WaitGroup, root, pkgrelpath string) { + importpath := filepath.ToSlash(pkgrelpath) + dir := filepath.Join(root, importpath) + + fsgate.enter() + defer fsgate.leave() + pkgDir, err := os.Open(dir) + if err != nil { + return + } + children, err := pkgDir.Readdir(-1) + pkgDir.Close() + if err != nil { + return + } + // hasGo tracks whether a directory actually appears to be a + // Go source code directory. If $GOPATH == $HOME, and + // $HOME/src has lots of other large non-Go projects in it, + // then the calls to importPathToName below can be expensive. + hasGo := false + for _, child := range children { + name := child.Name() + if name == "" { + continue + } + if c := name[0]; c == '.' || ('0' <= c && c <= '9') { + continue + } + if strings.HasSuffix(name, ".go") { + hasGo = true + } + if child.IsDir() { + wg.Add(1) + go func(root, name string) { + defer wg.Done() + loadPkg(wg, root, name) + }(root, filepath.Join(importpath, name)) + } + } + if hasGo { + shortName := importPathToName(importpath) + pkgIndex.Lock() + pkgIndex.m[shortName] = append(pkgIndex.m[shortName], pkg{ + importpath: importpath, + dir: dir, + }) + pkgIndex.Unlock() + } + +} + +// loadExports returns a list exports for a package. +var loadExports = loadExportsGoPath + +func loadExportsGoPath(dir string) map[string]bool { + exports := make(map[string]bool) + buildPkg, err := build.ImportDir(dir, 0) + if err != nil { + if strings.Contains(err.Error(), "no buildable Go source files in") { + return nil + } + fmt.Fprintf(os.Stderr, "could not import %q: %v", dir, err) + return nil + } + fset := token.NewFileSet() + for _, file := range buildPkg.GoFiles { + f, err := parser.ParseFile(fset, filepath.Join(dir, file), nil, 0) + if err != nil { + fmt.Fprintf(os.Stderr, "could not parse %q: %v", file, err) + continue + } + for name := range f.Scope.Objects { + if ast.IsExported(name) { + exports[name] = true + } + } + } + return exports +} + +// findImport searches for a package with the given symbols. +// If no package is found, findImport returns "". +// Declared as a variable rather than a function so goimports can be easily +// extended by adding a file with an init function. +var findImport = findImportGoPath + +func findImportGoPath(pkgName string, symbols map[string]bool) (string, bool, error) { + // Fast path for the standard library. + // In the common case we hopefully never have to scan the GOPATH, which can + // be slow with moving disks. + if pkg, rename, ok := findImportStdlib(pkgName, symbols); ok { + return pkg, rename, nil + } + + // TODO(sameer): look at the import lines for other Go files in the + // local directory, since the user is likely to import the same packages + // in the current Go file. Return rename=true when the other Go files + // use a renamed package that's also used in the current file. + + pkgIndexOnce.Do(loadPkgIndex) + + // Collect exports for packages with matching names. + var wg sync.WaitGroup + var pkgsMu sync.Mutex // guards pkgs + // full importpath => exported symbol => True + // e.g. "net/http" => "Client" => True + pkgs := make(map[string]map[string]bool) + pkgIndex.Lock() + for _, pkg := range pkgIndex.m[pkgName] { + wg.Add(1) + go func(importpath, dir string) { + defer wg.Done() + exports := loadExports(dir) + if exports != nil { + pkgsMu.Lock() + pkgs[importpath] = exports + pkgsMu.Unlock() + } + }(pkg.importpath, pkg.dir) + } + pkgIndex.Unlock() + wg.Wait() + + // Filter out packages missing required exported symbols. + for symbol := range symbols { + for importpath, exports := range pkgs { + if !exports[symbol] { + delete(pkgs, importpath) + } + } + } + if len(pkgs) == 0 { + return "", false, nil + } + + // If there are multiple candidate packages, the shortest one wins. + // This is a heuristic to prefer the standard library (e.g. "bytes") + // over e.g. "github.com/foo/bar/bytes". + shortest := "" + for importPath := range pkgs { + if shortest == "" || len(importPath) < len(shortest) { + shortest = importPath + } + } + return shortest, false, nil +} + +type visitFn func(node ast.Node) ast.Visitor + +func (fn visitFn) Visit(node ast.Node) ast.Visitor { + return fn(node) +} + +func findImportStdlib(shortPkg string, symbols map[string]bool) (importPath string, rename, ok bool) { + for symbol := range symbols { + path := stdlib[shortPkg+"."+symbol] + if path == "" { + return "", false, false + } + if importPath != "" && importPath != path { + // Ambiguous. Symbols pointed to different things. + return "", false, false + } + importPath = path + } + return importPath, false, importPath != "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/fix_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/fix_test.go new file mode 100644 index 00000000..d4646384 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/fix_test.go @@ -0,0 +1,667 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package imports + +import ( + "flag" + "go/build" + "io/ioutil" + "os" + "path/filepath" + "sync" + "testing" +) + +var only = flag.String("only", "", "If non-empty, the fix test to run") + +var tests = []struct { + name string + in, out string +}{ + // Adding an import to an existing parenthesized import + { + name: "factored_imports_add", + in: `package foo +import ( + "fmt" +) +func bar() { +var b bytes.Buffer +fmt.Println(b.String()) +} +`, + out: `package foo + +import ( + "bytes" + "fmt" +) + +func bar() { + var b bytes.Buffer + fmt.Println(b.String()) +} +`, + }, + + // Adding an import to an existing parenthesized import, + // verifying it goes into the first section. + { + name: "factored_imports_add_first_sec", + in: `package foo +import ( + "fmt" + + "appengine" +) +func bar() { +var b bytes.Buffer +_ = appengine.IsDevServer +fmt.Println(b.String()) +} +`, + out: `package foo + +import ( + "bytes" + "fmt" + + "appengine" +) + +func bar() { + var b bytes.Buffer + _ = appengine.IsDevServer + fmt.Println(b.String()) +} +`, + }, + + // Adding an import to an existing parenthesized import, + // verifying it goes into the first section. (test 2) + { + name: "factored_imports_add_first_sec_2", + in: `package foo +import ( + "fmt" + + "appengine" +) +func bar() { +_ = math.NaN +_ = fmt.Sprintf +_ = appengine.IsDevServer +} +`, + out: `package foo + +import ( + "fmt" + "math" + + "appengine" +) + +func bar() { + _ = math.NaN + _ = fmt.Sprintf + _ = appengine.IsDevServer +} +`, + }, + + // Adding a new import line, without parens + { + name: "add_import_section", + in: `package foo +func bar() { +var b bytes.Buffer +} +`, + out: `package foo + +import "bytes" + +func bar() { + var b bytes.Buffer +} +`, + }, + + // Adding two new imports, which should make a parenthesized import decl. + { + name: "add_import_paren_section", + in: `package foo +func bar() { +_, _ := bytes.Buffer, zip.NewReader +} +`, + out: `package foo + +import ( + "archive/zip" + "bytes" +) + +func bar() { + _, _ := bytes.Buffer, zip.NewReader +} +`, + }, + + // Make sure we don't add things twice + { + name: "no_double_add", + in: `package foo +func bar() { +_, _ := bytes.Buffer, bytes.NewReader +} +`, + out: `package foo + +import "bytes" + +func bar() { + _, _ := bytes.Buffer, bytes.NewReader +} +`, + }, + + // Remove unused imports, 1 of a factored block + { + name: "remove_unused_1_of_2", + in: `package foo +import ( +"bytes" +"fmt" +) + +func bar() { +_, _ := bytes.Buffer, bytes.NewReader +} +`, + out: `package foo + +import "bytes" + +func bar() { + _, _ := bytes.Buffer, bytes.NewReader +} +`, + }, + + // Remove unused imports, 2 of 2 + { + name: "remove_unused_2_of_2", + in: `package foo +import ( +"bytes" +"fmt" +) + +func bar() { +} +`, + out: `package foo + +func bar() { +} +`, + }, + + // Remove unused imports, 1 of 1 + { + name: "remove_unused_1_of_1", + in: `package foo + +import "fmt" + +func bar() { +} +`, + out: `package foo + +func bar() { +} +`, + }, + + // Don't remove empty imports. + { + name: "dont_remove_empty_imports", + in: `package foo +import ( +_ "image/png" +_ "image/jpeg" +) +`, + out: `package foo + +import ( + _ "image/jpeg" + _ "image/png" +) +`, + }, + + // Don't remove dot imports. + { + name: "dont_remove_dot_imports", + in: `package foo +import ( +. "foo" +. "bar" +) +`, + out: `package foo + +import ( + . "bar" + . "foo" +) +`, + }, + + // Skip refs the parser can resolve. + { + name: "skip_resolved_refs", + in: `package foo + +func f() { + type t struct{ Println func(string) } + fmt := t{Println: func(string) {}} + fmt.Println("foo") +} +`, + out: `package foo + +func f() { + type t struct{ Println func(string) } + fmt := t{Println: func(string) {}} + fmt.Println("foo") +} +`, + }, + + // Do not add a package we already have a resolution for. + { + name: "skip_template", + in: `package foo + +import "html/template" + +func f() { t = template.New("sometemplate") } +`, + out: `package foo + +import "html/template" + +func f() { t = template.New("sometemplate") } +`, + }, + + // Don't touch cgo + { + name: "cgo", + in: `package foo + +/* +#include +*/ +import "C" +`, + out: `package foo + +/* +#include +*/ +import "C" +`, + }, + + // Put some things in their own section + { + name: "make_sections", + in: `package foo + +import ( +"os" +) + +func foo () { +_, _ = os.Args, fmt.Println +_, _ = appengine.FooSomething, user.Current +} +`, + out: `package foo + +import ( + "fmt" + "os" + + "appengine" + "appengine/user" +) + +func foo() { + _, _ = os.Args, fmt.Println + _, _ = appengine.FooSomething, user.Current +} +`, + }, + + // Delete existing empty import block + { + name: "delete_empty_import_block", + in: `package foo + +import () +`, + out: `package foo +`, + }, + + // Use existing empty import block + { + name: "use_empty_import_block", + in: `package foo + +import () + +func f() { + _ = fmt.Println +} +`, + out: `package foo + +import "fmt" + +func f() { + _ = fmt.Println +} +`, + }, + + // Blank line before adding new section. + { + name: "blank_line_before_new_group", + in: `package foo + +import ( + "fmt" + "net" +) + +func f() { + _ = net.Dial + _ = fmt.Printf + _ = snappy.Foo +} +`, + out: `package foo + +import ( + "fmt" + "net" + + "code.google.com/p/snappy-go/snappy" +) + +func f() { + _ = net.Dial + _ = fmt.Printf + _ = snappy.Foo +} +`, + }, + + // Blank line between standard library and third-party stuff. + { + name: "blank_line_separating_std_and_third_party", + in: `package foo + +import ( + "code.google.com/p/snappy-go/snappy" + "fmt" + "net" +) + +func f() { + _ = net.Dial + _ = fmt.Printf + _ = snappy.Foo +} +`, + out: `package foo + +import ( + "fmt" + "net" + + "code.google.com/p/snappy-go/snappy" +) + +func f() { + _ = net.Dial + _ = fmt.Printf + _ = snappy.Foo +} +`, + }, + + // golang.org/issue/6884 + { + name: "issue 6884", + in: `package main + +// A comment +func main() { + fmt.Println("Hello, world") +} +`, + out: `package main + +import "fmt" + +// A comment +func main() { + fmt.Println("Hello, world") +} +`, + }, + + // golang.org/issue/7132 + { + name: "issue 7132", + in: `package main + +import ( +"fmt" + +"gu" +"github.com/foo/bar" +) + +var ( +a = bar.a +b = gu.a +c = fmt.Printf +) +`, + out: `package main + +import ( + "fmt" + + "gu" + + "github.com/foo/bar" +) + +var ( + a = bar.a + b = gu.a + c = fmt.Printf +) +`, + }, + + { + name: "renamed package", + in: `package main + +var _ = str.HasPrefix +`, + out: `package main + +import str "strings" + +var _ = str.HasPrefix +`, + }, + + { + name: "fragment with main", + in: `func main(){fmt.Println("Hello, world")}`, + out: `package main + +import "fmt" + +func main() { fmt.Println("Hello, world") } +`, + }, + + { + name: "fragment without main", + in: `func notmain(){fmt.Println("Hello, world")}`, + out: `import "fmt" + +func notmain() { fmt.Println("Hello, world") }`, + }, +} + +func TestFixImports(t *testing.T) { + simplePkgs := map[string]string{ + "fmt": "fmt", + "os": "os", + "math": "math", + "appengine": "appengine", + "user": "appengine/user", + "zip": "archive/zip", + "bytes": "bytes", + "snappy": "code.google.com/p/snappy-go/snappy", + "str": "strings", + } + findImport = func(pkgName string, symbols map[string]bool) (string, bool, error) { + return simplePkgs[pkgName], pkgName == "str", nil + } + + options := &Options{ + TabWidth: 8, + TabIndent: true, + Comments: true, + Fragment: true, + } + + for _, tt := range tests { + if *only != "" && tt.name != *only { + continue + } + buf, err := Process(tt.name+".go", []byte(tt.in), options) + if err != nil { + t.Errorf("error on %q: %v", tt.name, err) + continue + } + if got := string(buf); got != tt.out { + t.Errorf("results diff on %q\nGOT:\n%s\nWANT:\n%s\n", tt.name, got, tt.out) + } + } +} + +func TestFindImportGoPath(t *testing.T) { + goroot, err := ioutil.TempDir("", "goimports-") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(goroot) + + pkgIndexOnce = sync.Once{} + + origStdlib := stdlib + defer func() { + stdlib = origStdlib + }() + stdlib = nil + + // Test against imaginary bits/bytes package in std lib + bytesDir := filepath.Join(goroot, "src", "pkg", "bits", "bytes") + if err := os.MkdirAll(bytesDir, 0755); err != nil { + t.Fatal(err) + } + bytesSrcPath := filepath.Join(bytesDir, "bytes.go") + bytesPkgPath := "bits/bytes" + bytesSrc := []byte(`package bytes + +type Buffer2 struct {} +`) + if err := ioutil.WriteFile(bytesSrcPath, bytesSrc, 0775); err != nil { + t.Fatal(err) + } + oldGOROOT := build.Default.GOROOT + oldGOPATH := build.Default.GOPATH + build.Default.GOROOT = goroot + build.Default.GOPATH = "" + defer func() { + build.Default.GOROOT = oldGOROOT + build.Default.GOPATH = oldGOPATH + }() + + got, rename, err := findImportGoPath("bytes", map[string]bool{"Buffer2": true}) + if err != nil { + t.Fatal(err) + } + if got != bytesPkgPath || rename { + t.Errorf(`findImportGoPath("bytes", Buffer2 ...)=%q, %t, want "%s", false`, got, rename, bytesPkgPath) + } + + got, rename, err = findImportGoPath("bytes", map[string]bool{"Missing": true}) + if err != nil { + t.Fatal(err) + } + if got != "" || rename { + t.Errorf(`findImportGoPath("bytes", Missing ...)=%q, %t, want "", false`, got, rename) + } +} + +func TestFindImportStdlib(t *testing.T) { + tests := []struct { + pkg string + symbols []string + want string + }{ + {"http", []string{"Get"}, "net/http"}, + {"http", []string{"Get", "Post"}, "net/http"}, + {"http", []string{"Get", "Foo"}, ""}, + {"bytes", []string{"Buffer"}, "bytes"}, + {"ioutil", []string{"Discard"}, "io/ioutil"}, + } + for _, tt := range tests { + got, rename, ok := findImportStdlib(tt.pkg, strSet(tt.symbols)) + if (got != "") != ok { + t.Error("findImportStdlib return value inconsistent") + } + if got != tt.want || rename { + t.Errorf("findImportStdlib(%q, %q) = %q, %t; want %q, false", tt.pkg, tt.symbols, got, rename, tt.want) + } + } +} + +func strSet(ss []string) map[string]bool { + m := make(map[string]bool) + for _, s := range ss { + m[s] = true + } + return m +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/imports.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/imports.go new file mode 100644 index 00000000..dd1bc4d6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/imports.go @@ -0,0 +1,273 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package imports implements a Go pretty-printer (like package "go/format") +// that also adds or removes import statements as necessary. +package imports + +import ( + "bufio" + "bytes" + "fmt" + "go/ast" + "go/parser" + "go/printer" + "go/token" + "io" + "regexp" + "strconv" + "strings" + + "code.google.com/p/go.tools/astutil" +) + +// Options specifies options for processing files. +type Options struct { + Fragment bool // Accept fragement of a source file (no package statement) + AllErrors bool // Report all errors (not just the first 10 on different lines) + + Comments bool // Print comments (true if nil *Options provided) + TabIndent bool // Use tabs for indent (true if nil *Options provided) + TabWidth int // Tab width (8 if nil *Options provided) +} + +// Process formats and adjusts imports for the provided file. +// If opt is nil the defaults are used. +func Process(filename string, src []byte, opt *Options) ([]byte, error) { + if opt == nil { + opt = &Options{Comments: true, TabIndent: true, TabWidth: 8} + } + + fileSet := token.NewFileSet() + file, adjust, err := parse(fileSet, filename, src, opt) + if err != nil { + return nil, err + } + + _, err = fixImports(fileSet, file) + if err != nil { + return nil, err + } + + sortImports(fileSet, file) + imps := astutil.Imports(fileSet, file) + + var spacesBefore []string // import paths we need spaces before + for _, impSection := range imps { + // Within each block of contiguous imports, see if any + // import lines are in different group numbers. If so, + // we'll need to put a space between them so it's + // compatible with gofmt. + lastGroup := -1 + for _, importSpec := range impSection { + importPath, _ := strconv.Unquote(importSpec.Path.Value) + groupNum := importGroup(importPath) + if groupNum != lastGroup && lastGroup != -1 { + spacesBefore = append(spacesBefore, importPath) + } + lastGroup = groupNum + } + + } + + printerMode := printer.UseSpaces + if opt.TabIndent { + printerMode |= printer.TabIndent + } + printConfig := &printer.Config{Mode: printerMode, Tabwidth: opt.TabWidth} + + var buf bytes.Buffer + err = printConfig.Fprint(&buf, fileSet, file) + if err != nil { + return nil, err + } + out := buf.Bytes() + if adjust != nil { + out = adjust(src, out) + } + if len(spacesBefore) > 0 { + out = addImportSpaces(bytes.NewReader(out), spacesBefore) + } + return out, nil +} + +// parse parses src, which was read from filename, +// as a Go source file or statement list. +func parse(fset *token.FileSet, filename string, src []byte, opt *Options) (*ast.File, func(orig, src []byte) []byte, error) { + parserMode := parser.Mode(0) + if opt.Comments { + parserMode |= parser.ParseComments + } + if opt.AllErrors { + parserMode |= parser.AllErrors + } + + // Try as whole source file. + file, err := parser.ParseFile(fset, filename, src, parserMode) + if err == nil { + return file, nil, nil + } + // If the error is that the source file didn't begin with a + // package line and we accept fragmented input, fall through to + // try as a source fragment. Stop and return on any other error. + if !opt.Fragment || !strings.Contains(err.Error(), "expected 'package'") { + return nil, nil, err + } + + // If this is a declaration list, make it a source file + // by inserting a package clause. + // Insert using a ;, not a newline, so that the line numbers + // in psrc match the ones in src. + psrc := append([]byte("package main;"), src...) + file, err = parser.ParseFile(fset, filename, psrc, parserMode) + if err == nil { + // If a main function exists, we will assume this is a main + // package and leave the file. + if containsMainFunc(file) { + return file, nil, nil + } + + adjust := func(orig, src []byte) []byte { + // Remove the package clause. + // Gofmt has turned the ; into a \n. + src = src[len("package main\n"):] + return matchSpace(orig, src) + } + return file, adjust, nil + } + // If the error is that the source file didn't begin with a + // declaration, fall through to try as a statement list. + // Stop and return on any other error. + if !strings.Contains(err.Error(), "expected declaration") { + return nil, nil, err + } + + // If this is a statement list, make it a source file + // by inserting a package clause and turning the list + // into a function body. This handles expressions too. + // Insert using a ;, not a newline, so that the line numbers + // in fsrc match the ones in src. + fsrc := append(append([]byte("package p; func _() {"), src...), '}') + file, err = parser.ParseFile(fset, filename, fsrc, parserMode) + if err == nil { + adjust := func(orig, src []byte) []byte { + // Remove the wrapping. + // Gofmt has turned the ; into a \n\n. + src = src[len("package p\n\nfunc _() {"):] + src = src[:len(src)-len("}\n")] + // Gofmt has also indented the function body one level. + // Remove that indent. + src = bytes.Replace(src, []byte("\n\t"), []byte("\n"), -1) + return matchSpace(orig, src) + } + return file, adjust, nil + } + + // Failed, and out of options. + return nil, nil, err +} + +// containsMainFunc checks if a file contains a function declaration with the +// function signature 'func main()' +func containsMainFunc(file *ast.File) bool { + for _, decl := range file.Decls { + if f, ok := decl.(*ast.FuncDecl); ok { + if f.Name.Name != "main" { + continue + } + + if len(f.Type.Params.List) != 0 { + continue + } + + if f.Type.Results != nil && len(f.Type.Results.List) != 0 { + continue + } + + return true + } + } + + return false +} + +func cutSpace(b []byte) (before, middle, after []byte) { + i := 0 + for i < len(b) && (b[i] == ' ' || b[i] == '\t' || b[i] == '\n') { + i++ + } + j := len(b) + for j > 0 && (b[j-1] == ' ' || b[j-1] == '\t' || b[j-1] == '\n') { + j-- + } + if i <= j { + return b[:i], b[i:j], b[j:] + } + return nil, nil, b[j:] +} + +// matchSpace reformats src to use the same space context as orig. +// 1) If orig begins with blank lines, matchSpace inserts them at the beginning of src. +// 2) matchSpace copies the indentation of the first non-blank line in orig +// to every non-blank line in src. +// 3) matchSpace copies the trailing space from orig and uses it in place +// of src's trailing space. +func matchSpace(orig []byte, src []byte) []byte { + before, _, after := cutSpace(orig) + i := bytes.LastIndex(before, []byte{'\n'}) + before, indent := before[:i+1], before[i+1:] + + _, src, _ = cutSpace(src) + + var b bytes.Buffer + b.Write(before) + for len(src) > 0 { + line := src + if i := bytes.IndexByte(line, '\n'); i >= 0 { + line, src = line[:i+1], line[i+1:] + } else { + src = nil + } + if len(line) > 0 && line[0] != '\n' { // not blank + b.Write(indent) + } + b.Write(line) + } + b.Write(after) + return b.Bytes() +} + +var impLine = regexp.MustCompile(`^\s+(?:\w+\s+)?"(.+)"`) + +func addImportSpaces(r io.Reader, breaks []string) []byte { + var out bytes.Buffer + sc := bufio.NewScanner(r) + inImports := false + done := false + for sc.Scan() { + s := sc.Text() + + if !inImports && !done && strings.HasPrefix(s, "import") { + inImports = true + } + if inImports && (strings.HasPrefix(s, "var") || + strings.HasPrefix(s, "func") || + strings.HasPrefix(s, "const") || + strings.HasPrefix(s, "type")) { + done = true + inImports = false + } + if inImports && len(breaks) > 0 { + if m := impLine.FindStringSubmatch(s); m != nil { + if m[1] == string(breaks[0]) { + out.WriteByte('\n') + breaks = breaks[1:] + } + } + } + + fmt.Fprintln(&out, s) + } + return out.Bytes() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/mkindex.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/mkindex.go new file mode 100644 index 00000000..755e2394 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/mkindex.go @@ -0,0 +1,173 @@ +// +build ignore + +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Command mkindex creates the file "pkgindex.go" containing an index of the Go +// standard library. The file is intended to be built as part of the imports +// package, so that the package may be used in environments where a GOROOT is +// not available (such as App Engine). +package main + +import ( + "bytes" + "fmt" + "go/ast" + "go/build" + "go/format" + "go/parser" + "go/token" + "io/ioutil" + "log" + "os" + "path" + "path/filepath" + "strings" +) + +var ( + pkgIndex = make(map[string][]pkg) + exports = make(map[string]map[string]bool) +) + +func main() { + // Don't use GOPATH. + ctx := build.Default + ctx.GOPATH = "" + + // Populate pkgIndex global from GOROOT. + for _, path := range ctx.SrcDirs() { + f, err := os.Open(path) + if err != nil { + log.Print(err) + continue + } + children, err := f.Readdir(-1) + f.Close() + if err != nil { + log.Print(err) + continue + } + for _, child := range children { + if child.IsDir() { + loadPkg(path, child.Name()) + } + } + } + // Populate exports global. + for _, ps := range pkgIndex { + for _, p := range ps { + e := loadExports(p.dir) + if e != nil { + exports[p.dir] = e + } + } + } + + // Construct source file. + var buf bytes.Buffer + fmt.Fprint(&buf, pkgIndexHead) + fmt.Fprintf(&buf, "var pkgIndexMaster = %#v\n", pkgIndex) + fmt.Fprintf(&buf, "var exportsMaster = %#v\n", exports) + src := buf.Bytes() + + // Replace main.pkg type name with pkg. + src = bytes.Replace(src, []byte("main.pkg"), []byte("pkg"), -1) + // Replace actual GOROOT with "/go". + src = bytes.Replace(src, []byte(ctx.GOROOT), []byte("/go"), -1) + // Add some line wrapping. + src = bytes.Replace(src, []byte("}, "), []byte("},\n"), -1) + src = bytes.Replace(src, []byte("true, "), []byte("true,\n"), -1) + + var err error + src, err = format.Source(src) + if err != nil { + log.Fatal(err) + } + + // Write out source file. + err = ioutil.WriteFile("pkgindex.go", src, 0644) + if err != nil { + log.Fatal(err) + } +} + +const pkgIndexHead = `package imports + +func init() { + pkgIndexOnce.Do(func() { + pkgIndex.m = pkgIndexMaster + }) + loadExports = func(dir string) map[string]bool { + return exportsMaster[dir] + } +} +` + +type pkg struct { + importpath string // full pkg import path, e.g. "net/http" + dir string // absolute file path to pkg directory e.g. "/usr/lib/go/src/fmt" +} + +var fset = token.NewFileSet() + +func loadPkg(root, importpath string) { + shortName := path.Base(importpath) + if shortName == "testdata" { + return + } + + dir := filepath.Join(root, importpath) + pkgIndex[shortName] = append(pkgIndex[shortName], pkg{ + importpath: importpath, + dir: dir, + }) + + pkgDir, err := os.Open(dir) + if err != nil { + return + } + children, err := pkgDir.Readdir(-1) + pkgDir.Close() + if err != nil { + return + } + for _, child := range children { + name := child.Name() + if name == "" { + continue + } + if c := name[0]; c == '.' || ('0' <= c && c <= '9') { + continue + } + if child.IsDir() { + loadPkg(root, filepath.Join(importpath, name)) + } + } +} + +func loadExports(dir string) map[string]bool { + exports := make(map[string]bool) + buildPkg, err := build.ImportDir(dir, 0) + if err != nil { + if strings.Contains(err.Error(), "no buildable Go source files in") { + return nil + } + log.Printf("could not import %q: %v", dir, err) + return nil + } + for _, file := range buildPkg.GoFiles { + f, err := parser.ParseFile(fset, filepath.Join(dir, file), nil, 0) + if err != nil { + log.Printf("could not parse %q: %v", file, err) + continue + } + for name := range f.Scope.Objects { + if ast.IsExported(name) { + exports[name] = true + } + } + } + return exports +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/mkstdlib.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/mkstdlib.go new file mode 100644 index 00000000..c43d3255 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/mkstdlib.go @@ -0,0 +1,90 @@ +// +build ignore + +// mkstdlib generates the zstdlib.go file, containing the Go standard +// library API symbols. It's baked into the binary to avoid scanning +// GOPATH in the common case. +package main + +import ( + "bufio" + "bytes" + "fmt" + "go/format" + "io" + "log" + "os" + "path" + "path/filepath" + "regexp" + "sort" + "strings" +) + +func mustOpen(name string) io.Reader { + f, err := os.Open(name) + if err != nil { + log.Fatal(err) + } + return f +} + +func api(base string) string { + return filepath.Join(os.Getenv("GOROOT"), "api", base) +} + +var sym = regexp.MustCompile(`^pkg (\S+).*?, (?:var|func|type|const) ([A-Z]\w*)`) + +func main() { + var buf bytes.Buffer + outf := func(format string, args ...interface{}) { + fmt.Fprintf(&buf, format, args...) + } + outf("// AUTO-GENERATED BY mkstdlib.go\n\n") + outf("package imports\n") + outf("var stdlib = map[string]string{\n") + f := io.MultiReader( + mustOpen(api("go1.txt")), + mustOpen(api("go1.1.txt")), + mustOpen(api("go1.2.txt")), + ) + sc := bufio.NewScanner(f) + fullImport := map[string]string{} // "zip.NewReader" => "archive/zip" + ambiguous := map[string]bool{} + var keys []string + for sc.Scan() { + l := sc.Text() + has := func(v string) bool { return strings.Contains(l, v) } + if has("struct, ") || has("interface, ") || has(", method (") { + continue + } + if m := sym.FindStringSubmatch(l); m != nil { + full := m[1] + key := path.Base(full) + "." + m[2] + if exist, ok := fullImport[key]; ok { + if exist != full { + ambiguous[key] = true + } + } else { + fullImport[key] = full + keys = append(keys, key) + } + } + } + if err := sc.Err(); err != nil { + log.Fatal(err) + } + sort.Strings(keys) + for _, key := range keys { + if ambiguous[key] { + outf("\t// %q is ambiguous\n", key) + } else { + outf("\t%q: %q,\n", key, fullImport[key]) + } + } + outf("}\n") + fmtbuf, err := format.Source(buf.Bytes()) + if err != nil { + log.Fatal(err) + } + os.Stdout.Write(fmtbuf) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/sortimports.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/sortimports.go new file mode 100644 index 00000000..68b3dc4e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/sortimports.go @@ -0,0 +1,214 @@ +// +build go1.2 + +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Hacked up copy of go/ast/import.go + +package imports + +import ( + "go/ast" + "go/token" + "sort" + "strconv" +) + +// sortImports sorts runs of consecutive import lines in import blocks in f. +// It also removes duplicate imports when it is possible to do so without data loss. +func sortImports(fset *token.FileSet, f *ast.File) { + for i, d := range f.Decls { + d, ok := d.(*ast.GenDecl) + if !ok || d.Tok != token.IMPORT { + // Not an import declaration, so we're done. + // Imports are always first. + break + } + + if len(d.Specs) == 0 { + // Empty import block, remove it. + f.Decls = append(f.Decls[:i], f.Decls[i+1:]...) + } + + if !d.Lparen.IsValid() { + // Not a block: sorted by default. + continue + } + + // Identify and sort runs of specs on successive lines. + i := 0 + specs := d.Specs[:0] + for j, s := range d.Specs { + if j > i && fset.Position(s.Pos()).Line > 1+fset.Position(d.Specs[j-1].End()).Line { + // j begins a new run. End this one. + specs = append(specs, sortSpecs(fset, f, d.Specs[i:j])...) + i = j + } + } + specs = append(specs, sortSpecs(fset, f, d.Specs[i:])...) + d.Specs = specs + + // Deduping can leave a blank line before the rparen; clean that up. + if len(d.Specs) > 0 { + lastSpec := d.Specs[len(d.Specs)-1] + lastLine := fset.Position(lastSpec.Pos()).Line + if rParenLine := fset.Position(d.Rparen).Line; rParenLine > lastLine+1 { + fset.File(d.Rparen).MergeLine(rParenLine - 1) + } + } + } +} + +func importPath(s ast.Spec) string { + t, err := strconv.Unquote(s.(*ast.ImportSpec).Path.Value) + if err == nil { + return t + } + return "" +} + +func importName(s ast.Spec) string { + n := s.(*ast.ImportSpec).Name + if n == nil { + return "" + } + return n.Name +} + +func importComment(s ast.Spec) string { + c := s.(*ast.ImportSpec).Comment + if c == nil { + return "" + } + return c.Text() +} + +// collapse indicates whether prev may be removed, leaving only next. +func collapse(prev, next ast.Spec) bool { + if importPath(next) != importPath(prev) || importName(next) != importName(prev) { + return false + } + return prev.(*ast.ImportSpec).Comment == nil +} + +type posSpan struct { + Start token.Pos + End token.Pos +} + +func sortSpecs(fset *token.FileSet, f *ast.File, specs []ast.Spec) []ast.Spec { + // Can't short-circuit here even if specs are already sorted, + // since they might yet need deduplication. + // A lone import, however, may be safely ignored. + if len(specs) <= 1 { + return specs + } + + // Record positions for specs. + pos := make([]posSpan, len(specs)) + for i, s := range specs { + pos[i] = posSpan{s.Pos(), s.End()} + } + + // Identify comments in this range. + // Any comment from pos[0].Start to the final line counts. + lastLine := fset.Position(pos[len(pos)-1].End).Line + cstart := len(f.Comments) + cend := len(f.Comments) + for i, g := range f.Comments { + if g.Pos() < pos[0].Start { + continue + } + if i < cstart { + cstart = i + } + if fset.Position(g.End()).Line > lastLine { + cend = i + break + } + } + comments := f.Comments[cstart:cend] + + // Assign each comment to the import spec preceding it. + importComment := map[*ast.ImportSpec][]*ast.CommentGroup{} + specIndex := 0 + for _, g := range comments { + for specIndex+1 < len(specs) && pos[specIndex+1].Start <= g.Pos() { + specIndex++ + } + s := specs[specIndex].(*ast.ImportSpec) + importComment[s] = append(importComment[s], g) + } + + // Sort the import specs by import path. + // Remove duplicates, when possible without data loss. + // Reassign the import paths to have the same position sequence. + // Reassign each comment to abut the end of its spec. + // Sort the comments by new position. + sort.Sort(byImportSpec(specs)) + + // Dedup. Thanks to our sorting, we can just consider + // adjacent pairs of imports. + deduped := specs[:0] + for i, s := range specs { + if i == len(specs)-1 || !collapse(s, specs[i+1]) { + deduped = append(deduped, s) + } else { + p := s.Pos() + fset.File(p).MergeLine(fset.Position(p).Line) + } + } + specs = deduped + + // Fix up comment positions + for i, s := range specs { + s := s.(*ast.ImportSpec) + if s.Name != nil { + s.Name.NamePos = pos[i].Start + } + s.Path.ValuePos = pos[i].Start + s.EndPos = pos[i].End + for _, g := range importComment[s] { + for _, c := range g.List { + c.Slash = pos[i].End + } + } + } + + sort.Sort(byCommentPos(comments)) + + return specs +} + +type byImportSpec []ast.Spec // slice of *ast.ImportSpec + +func (x byImportSpec) Len() int { return len(x) } +func (x byImportSpec) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x byImportSpec) Less(i, j int) bool { + ipath := importPath(x[i]) + jpath := importPath(x[j]) + + igroup := importGroup(ipath) + jgroup := importGroup(jpath) + if igroup != jgroup { + return igroup < jgroup + } + + if ipath != jpath { + return ipath < jpath + } + iname := importName(x[i]) + jname := importName(x[j]) + + if iname != jname { + return iname < jname + } + return importComment(x[i]) < importComment(x[j]) +} + +type byCommentPos []*ast.CommentGroup + +func (x byCommentPos) Len() int { return len(x) } +func (x byCommentPos) Swap(i, j int) { x[i], x[j] = x[j], x[i] } +func (x byCommentPos) Less(i, j int) bool { return x[i].Pos() < x[j].Pos() } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/sortimports_compat.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/sortimports_compat.go new file mode 100644 index 00000000..295f237a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/sortimports_compat.go @@ -0,0 +1,14 @@ +// +build !go1.2 + +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package imports + +import "go/ast" + +// Go 1.1 users don't get fancy package grouping. +// But this is still gofmt-compliant: + +var sortImports = ast.SortImports diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/zstdlib.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/zstdlib.go new file mode 100644 index 00000000..6cdc0334 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/imports/zstdlib.go @@ -0,0 +1,8374 @@ +// AUTO-GENERATED BY mkstdlib.go + +package imports + +var stdlib = map[string]string{ + "adler32.Checksum": "hash/adler32", + "adler32.New": "hash/adler32", + "adler32.Size": "hash/adler32", + "aes.BlockSize": "crypto/aes", + "aes.KeySizeError": "crypto/aes", + "aes.NewCipher": "crypto/aes", + "ascii85.CorruptInputError": "encoding/ascii85", + "ascii85.Decode": "encoding/ascii85", + "ascii85.Encode": "encoding/ascii85", + "ascii85.MaxEncodedLen": "encoding/ascii85", + "ascii85.NewDecoder": "encoding/ascii85", + "ascii85.NewEncoder": "encoding/ascii85", + "asn1.BitString": "encoding/asn1", + "asn1.Enumerated": "encoding/asn1", + "asn1.Flag": "encoding/asn1", + "asn1.Marshal": "encoding/asn1", + "asn1.ObjectIdentifier": "encoding/asn1", + "asn1.RawContent": "encoding/asn1", + "asn1.RawValue": "encoding/asn1", + "asn1.StructuralError": "encoding/asn1", + "asn1.SyntaxError": "encoding/asn1", + "asn1.Unmarshal": "encoding/asn1", + "asn1.UnmarshalWithParams": "encoding/asn1", + "ast.ArrayType": "go/ast", + "ast.AssignStmt": "go/ast", + "ast.Bad": "go/ast", + "ast.BadDecl": "go/ast", + "ast.BadExpr": "go/ast", + "ast.BadStmt": "go/ast", + "ast.BasicLit": "go/ast", + "ast.BinaryExpr": "go/ast", + "ast.BlockStmt": "go/ast", + "ast.BranchStmt": "go/ast", + "ast.CallExpr": "go/ast", + "ast.CaseClause": "go/ast", + "ast.ChanDir": "go/ast", + "ast.ChanType": "go/ast", + "ast.CommClause": "go/ast", + "ast.Comment": "go/ast", + "ast.CommentGroup": "go/ast", + "ast.CommentMap": "go/ast", + "ast.CompositeLit": "go/ast", + "ast.Con": "go/ast", + "ast.DeclStmt": "go/ast", + "ast.DeferStmt": "go/ast", + "ast.Ellipsis": "go/ast", + "ast.EmptyStmt": "go/ast", + "ast.ExprStmt": "go/ast", + "ast.Field": "go/ast", + "ast.FieldFilter": "go/ast", + "ast.FieldList": "go/ast", + "ast.File": "go/ast", + "ast.FileExports": "go/ast", + "ast.Filter": "go/ast", + "ast.FilterDecl": "go/ast", + "ast.FilterFile": "go/ast", + "ast.FilterFuncDuplicates": "go/ast", + "ast.FilterImportDuplicates": "go/ast", + "ast.FilterPackage": "go/ast", + "ast.FilterUnassociatedComments": "go/ast", + "ast.ForStmt": "go/ast", + "ast.Fprint": "go/ast", + "ast.Fun": "go/ast", + "ast.FuncDecl": "go/ast", + "ast.FuncLit": "go/ast", + "ast.FuncType": "go/ast", + "ast.GenDecl": "go/ast", + "ast.GoStmt": "go/ast", + "ast.Ident": "go/ast", + "ast.IfStmt": "go/ast", + "ast.ImportSpec": "go/ast", + "ast.Importer": "go/ast", + "ast.IncDecStmt": "go/ast", + "ast.IndexExpr": "go/ast", + "ast.Inspect": "go/ast", + "ast.InterfaceType": "go/ast", + "ast.IsExported": "go/ast", + "ast.KeyValueExpr": "go/ast", + "ast.LabeledStmt": "go/ast", + "ast.Lbl": "go/ast", + "ast.MapType": "go/ast", + "ast.MergeMode": "go/ast", + "ast.MergePackageFiles": "go/ast", + "ast.NewCommentMap": "go/ast", + "ast.NewIdent": "go/ast", + "ast.NewObj": "go/ast", + "ast.NewPackage": "go/ast", + "ast.NewScope": "go/ast", + "ast.Node": "go/ast", + "ast.NotNilFilter": "go/ast", + "ast.ObjKind": "go/ast", + "ast.Object": "go/ast", + "ast.Package": "go/ast", + "ast.PackageExports": "go/ast", + "ast.ParenExpr": "go/ast", + "ast.Pkg": "go/ast", + "ast.Print": "go/ast", + "ast.RECV": "go/ast", + "ast.RangeStmt": "go/ast", + "ast.ReturnStmt": "go/ast", + "ast.SEND": "go/ast", + "ast.Scope": "go/ast", + "ast.SelectStmt": "go/ast", + "ast.SelectorExpr": "go/ast", + "ast.SendStmt": "go/ast", + "ast.SliceExpr": "go/ast", + "ast.SortImports": "go/ast", + "ast.StarExpr": "go/ast", + "ast.StructType": "go/ast", + "ast.SwitchStmt": "go/ast", + "ast.Typ": "go/ast", + "ast.TypeAssertExpr": "go/ast", + "ast.TypeSpec": "go/ast", + "ast.TypeSwitchStmt": "go/ast", + "ast.UnaryExpr": "go/ast", + "ast.ValueSpec": "go/ast", + "ast.Var": "go/ast", + "ast.Visitor": "go/ast", + "ast.Walk": "go/ast", + "atomic.AddInt32": "sync/atomic", + "atomic.AddInt64": "sync/atomic", + "atomic.AddUint32": "sync/atomic", + "atomic.AddUint64": "sync/atomic", + "atomic.AddUintptr": "sync/atomic", + "atomic.CompareAndSwapInt32": "sync/atomic", + "atomic.CompareAndSwapInt64": "sync/atomic", + "atomic.CompareAndSwapPointer": "sync/atomic", + "atomic.CompareAndSwapUint32": "sync/atomic", + "atomic.CompareAndSwapUint64": "sync/atomic", + "atomic.CompareAndSwapUintptr": "sync/atomic", + "atomic.LoadInt32": "sync/atomic", + "atomic.LoadInt64": "sync/atomic", + "atomic.LoadPointer": "sync/atomic", + "atomic.LoadUint32": "sync/atomic", + "atomic.LoadUint64": "sync/atomic", + "atomic.LoadUintptr": "sync/atomic", + "atomic.StoreInt32": "sync/atomic", + "atomic.StoreInt64": "sync/atomic", + "atomic.StorePointer": "sync/atomic", + "atomic.StoreUint32": "sync/atomic", + "atomic.StoreUint64": "sync/atomic", + "atomic.StoreUintptr": "sync/atomic", + "atomic.SwapInt32": "sync/atomic", + "atomic.SwapInt64": "sync/atomic", + "atomic.SwapPointer": "sync/atomic", + "atomic.SwapUint32": "sync/atomic", + "atomic.SwapUint64": "sync/atomic", + "atomic.SwapUintptr": "sync/atomic", + "base32.CorruptInputError": "encoding/base32", + "base32.Encoding": "encoding/base32", + "base32.HexEncoding": "encoding/base32", + "base32.NewDecoder": "encoding/base32", + "base32.NewEncoder": "encoding/base32", + "base32.NewEncoding": "encoding/base32", + "base32.StdEncoding": "encoding/base32", + "base64.CorruptInputError": "encoding/base64", + "base64.Encoding": "encoding/base64", + "base64.NewDecoder": "encoding/base64", + "base64.NewEncoder": "encoding/base64", + "base64.NewEncoding": "encoding/base64", + "base64.StdEncoding": "encoding/base64", + "base64.URLEncoding": "encoding/base64", + "big.Int": "math/big", + "big.MaxBase": "math/big", + "big.NewInt": "math/big", + "big.NewRat": "math/big", + "big.Rat": "math/big", + "big.Word": "math/big", + "binary.BigEndian": "encoding/binary", + "binary.ByteOrder": "encoding/binary", + "binary.LittleEndian": "encoding/binary", + "binary.MaxVarintLen16": "encoding/binary", + "binary.MaxVarintLen32": "encoding/binary", + "binary.MaxVarintLen64": "encoding/binary", + "binary.PutUvarint": "encoding/binary", + "binary.PutVarint": "encoding/binary", + "binary.Read": "encoding/binary", + "binary.ReadUvarint": "encoding/binary", + "binary.ReadVarint": "encoding/binary", + "binary.Size": "encoding/binary", + "binary.Uvarint": "encoding/binary", + "binary.Varint": "encoding/binary", + "binary.Write": "encoding/binary", + "bufio.ErrAdvanceTooFar": "bufio", + "bufio.ErrBufferFull": "bufio", + "bufio.ErrInvalidUnreadByte": "bufio", + "bufio.ErrInvalidUnreadRune": "bufio", + "bufio.ErrNegativeAdvance": "bufio", + "bufio.ErrNegativeCount": "bufio", + "bufio.ErrTooLong": "bufio", + "bufio.MaxScanTokenSize": "bufio", + "bufio.NewReadWriter": "bufio", + "bufio.NewReader": "bufio", + "bufio.NewReaderSize": "bufio", + "bufio.NewScanner": "bufio", + "bufio.NewWriter": "bufio", + "bufio.NewWriterSize": "bufio", + "bufio.ReadWriter": "bufio", + "bufio.Reader": "bufio", + "bufio.ScanBytes": "bufio", + "bufio.ScanLines": "bufio", + "bufio.ScanRunes": "bufio", + "bufio.ScanWords": "bufio", + "bufio.Scanner": "bufio", + "bufio.SplitFunc": "bufio", + "bufio.Writer": "bufio", + "build.AllowBinary": "go/build", + "build.ArchChar": "go/build", + "build.Context": "go/build", + "build.Default": "go/build", + "build.FindOnly": "go/build", + "build.Import": "go/build", + "build.ImportDir": "go/build", + "build.ImportMode": "go/build", + "build.IsLocalImport": "go/build", + "build.NoGoError": "go/build", + "build.Package": "go/build", + "build.ToolDir": "go/build", + "bytes.Buffer": "bytes", + "bytes.Compare": "bytes", + "bytes.Contains": "bytes", + "bytes.Count": "bytes", + "bytes.Equal": "bytes", + "bytes.EqualFold": "bytes", + "bytes.ErrTooLarge": "bytes", + "bytes.Fields": "bytes", + "bytes.FieldsFunc": "bytes", + "bytes.HasPrefix": "bytes", + "bytes.HasSuffix": "bytes", + "bytes.Index": "bytes", + "bytes.IndexAny": "bytes", + "bytes.IndexByte": "bytes", + "bytes.IndexFunc": "bytes", + "bytes.IndexRune": "bytes", + "bytes.Join": "bytes", + "bytes.LastIndex": "bytes", + "bytes.LastIndexAny": "bytes", + "bytes.LastIndexFunc": "bytes", + "bytes.Map": "bytes", + "bytes.MinRead": "bytes", + "bytes.NewBuffer": "bytes", + "bytes.NewBufferString": "bytes", + "bytes.NewReader": "bytes", + "bytes.Reader": "bytes", + "bytes.Repeat": "bytes", + "bytes.Replace": "bytes", + "bytes.Runes": "bytes", + "bytes.Split": "bytes", + "bytes.SplitAfter": "bytes", + "bytes.SplitAfterN": "bytes", + "bytes.SplitN": "bytes", + "bytes.Title": "bytes", + "bytes.ToLower": "bytes", + "bytes.ToLowerSpecial": "bytes", + "bytes.ToTitle": "bytes", + "bytes.ToTitleSpecial": "bytes", + "bytes.ToUpper": "bytes", + "bytes.ToUpperSpecial": "bytes", + "bytes.Trim": "bytes", + "bytes.TrimFunc": "bytes", + "bytes.TrimLeft": "bytes", + "bytes.TrimLeftFunc": "bytes", + "bytes.TrimPrefix": "bytes", + "bytes.TrimRight": "bytes", + "bytes.TrimRightFunc": "bytes", + "bytes.TrimSpace": "bytes", + "bytes.TrimSuffix": "bytes", + "bzip2.NewReader": "compress/bzip2", + "bzip2.StructuralError": "compress/bzip2", + "cgi.Handler": "net/http/cgi", + "cgi.Request": "net/http/cgi", + "cgi.RequestFromMap": "net/http/cgi", + "cgi.Serve": "net/http/cgi", + "cipher.AEAD": "crypto/cipher", + "cipher.Block": "crypto/cipher", + "cipher.BlockMode": "crypto/cipher", + "cipher.NewCBCDecrypter": "crypto/cipher", + "cipher.NewCBCEncrypter": "crypto/cipher", + "cipher.NewCFBDecrypter": "crypto/cipher", + "cipher.NewCFBEncrypter": "crypto/cipher", + "cipher.NewCTR": "crypto/cipher", + "cipher.NewGCM": "crypto/cipher", + "cipher.NewOFB": "crypto/cipher", + "cipher.Stream": "crypto/cipher", + "cipher.StreamReader": "crypto/cipher", + "cipher.StreamWriter": "crypto/cipher", + "cmplx.Abs": "math/cmplx", + "cmplx.Acos": "math/cmplx", + "cmplx.Acosh": "math/cmplx", + "cmplx.Asin": "math/cmplx", + "cmplx.Asinh": "math/cmplx", + "cmplx.Atan": "math/cmplx", + "cmplx.Atanh": "math/cmplx", + "cmplx.Conj": "math/cmplx", + "cmplx.Cos": "math/cmplx", + "cmplx.Cosh": "math/cmplx", + "cmplx.Cot": "math/cmplx", + "cmplx.Exp": "math/cmplx", + "cmplx.Inf": "math/cmplx", + "cmplx.IsInf": "math/cmplx", + "cmplx.IsNaN": "math/cmplx", + "cmplx.Log": "math/cmplx", + "cmplx.Log10": "math/cmplx", + "cmplx.NaN": "math/cmplx", + "cmplx.Phase": "math/cmplx", + "cmplx.Polar": "math/cmplx", + "cmplx.Pow": "math/cmplx", + "cmplx.Rect": "math/cmplx", + "cmplx.Sin": "math/cmplx", + "cmplx.Sinh": "math/cmplx", + "cmplx.Sqrt": "math/cmplx", + "cmplx.Tan": "math/cmplx", + "cmplx.Tanh": "math/cmplx", + "color.Alpha": "image/color", + "color.Alpha16": "image/color", + "color.Alpha16Model": "image/color", + "color.AlphaModel": "image/color", + "color.Black": "image/color", + "color.Color": "image/color", + "color.Gray": "image/color", + "color.Gray16": "image/color", + "color.Gray16Model": "image/color", + "color.GrayModel": "image/color", + "color.Model": "image/color", + "color.ModelFunc": "image/color", + "color.NRGBA": "image/color", + "color.NRGBA64": "image/color", + "color.NRGBA64Model": "image/color", + "color.NRGBAModel": "image/color", + "color.Opaque": "image/color", + "color.Palette": "image/color", + "color.RGBA": "image/color", + "color.RGBA64": "image/color", + "color.RGBA64Model": "image/color", + "color.RGBAModel": "image/color", + "color.RGBToYCbCr": "image/color", + "color.Transparent": "image/color", + "color.White": "image/color", + "color.YCbCr": "image/color", + "color.YCbCrModel": "image/color", + "color.YCbCrToRGB": "image/color", + "cookiejar.Jar": "net/http/cookiejar", + "cookiejar.New": "net/http/cookiejar", + "cookiejar.Options": "net/http/cookiejar", + "cookiejar.PublicSuffixList": "net/http/cookiejar", + "crc32.Castagnoli": "hash/crc32", + "crc32.Checksum": "hash/crc32", + "crc32.ChecksumIEEE": "hash/crc32", + "crc32.IEEE": "hash/crc32", + "crc32.IEEETable": "hash/crc32", + "crc32.Koopman": "hash/crc32", + "crc32.MakeTable": "hash/crc32", + "crc32.New": "hash/crc32", + "crc32.NewIEEE": "hash/crc32", + "crc32.Size": "hash/crc32", + "crc32.Table": "hash/crc32", + "crc32.Update": "hash/crc32", + "crc64.Checksum": "hash/crc64", + "crc64.ECMA": "hash/crc64", + "crc64.ISO": "hash/crc64", + "crc64.MakeTable": "hash/crc64", + "crc64.New": "hash/crc64", + "crc64.Size": "hash/crc64", + "crc64.Table": "hash/crc64", + "crc64.Update": "hash/crc64", + "crypto.Hash": "crypto", + "crypto.MD4": "crypto", + "crypto.MD5": "crypto", + "crypto.MD5SHA1": "crypto", + "crypto.PrivateKey": "crypto", + "crypto.PublicKey": "crypto", + "crypto.RIPEMD160": "crypto", + "crypto.RegisterHash": "crypto", + "crypto.SHA1": "crypto", + "crypto.SHA224": "crypto", + "crypto.SHA256": "crypto", + "crypto.SHA384": "crypto", + "crypto.SHA512": "crypto", + "csv.ErrBareQuote": "encoding/csv", + "csv.ErrFieldCount": "encoding/csv", + "csv.ErrQuote": "encoding/csv", + "csv.ErrTrailingComma": "encoding/csv", + "csv.NewReader": "encoding/csv", + "csv.NewWriter": "encoding/csv", + "csv.ParseError": "encoding/csv", + "csv.Reader": "encoding/csv", + "csv.Writer": "encoding/csv", + "debug.FreeOSMemory": "runtime/debug", + "debug.GCStats": "runtime/debug", + "debug.PrintStack": "runtime/debug", + "debug.ReadGCStats": "runtime/debug", + "debug.SetGCPercent": "runtime/debug", + "debug.SetMaxStack": "runtime/debug", + "debug.SetMaxThreads": "runtime/debug", + "debug.Stack": "runtime/debug", + "des.BlockSize": "crypto/des", + "des.KeySizeError": "crypto/des", + "des.NewCipher": "crypto/des", + "des.NewTripleDESCipher": "crypto/des", + "doc.AllDecls": "go/doc", + "doc.AllMethods": "go/doc", + "doc.Example": "go/doc", + "doc.Examples": "go/doc", + "doc.Filter": "go/doc", + "doc.Func": "go/doc", + "doc.IllegalPrefixes": "go/doc", + "doc.Mode": "go/doc", + "doc.New": "go/doc", + "doc.Note": "go/doc", + "doc.Package": "go/doc", + "doc.Synopsis": "go/doc", + "doc.ToHTML": "go/doc", + "doc.ToText": "go/doc", + "doc.Type": "go/doc", + "doc.Value": "go/doc", + "draw.Draw": "image/draw", + "draw.DrawMask": "image/draw", + "draw.Drawer": "image/draw", + "draw.FloydSteinberg": "image/draw", + "draw.Image": "image/draw", + "draw.Op": "image/draw", + "draw.Over": "image/draw", + "draw.Quantizer": "image/draw", + "draw.Src": "image/draw", + "driver.Bool": "database/sql/driver", + "driver.ColumnConverter": "database/sql/driver", + "driver.Conn": "database/sql/driver", + "driver.DefaultParameterConverter": "database/sql/driver", + "driver.Driver": "database/sql/driver", + "driver.ErrBadConn": "database/sql/driver", + "driver.ErrSkip": "database/sql/driver", + "driver.Execer": "database/sql/driver", + "driver.Int32": "database/sql/driver", + "driver.IsScanValue": "database/sql/driver", + "driver.IsValue": "database/sql/driver", + "driver.NotNull": "database/sql/driver", + "driver.Null": "database/sql/driver", + "driver.Queryer": "database/sql/driver", + "driver.Result": "database/sql/driver", + "driver.ResultNoRows": "database/sql/driver", + "driver.Rows": "database/sql/driver", + "driver.RowsAffected": "database/sql/driver", + "driver.Stmt": "database/sql/driver", + "driver.String": "database/sql/driver", + "driver.Tx": "database/sql/driver", + "driver.Value": "database/sql/driver", + "driver.ValueConverter": "database/sql/driver", + "driver.Valuer": "database/sql/driver", + "dsa.ErrInvalidPublicKey": "crypto/dsa", + "dsa.GenerateKey": "crypto/dsa", + "dsa.GenerateParameters": "crypto/dsa", + "dsa.L1024N160": "crypto/dsa", + "dsa.L2048N224": "crypto/dsa", + "dsa.L2048N256": "crypto/dsa", + "dsa.L3072N256": "crypto/dsa", + "dsa.ParameterSizes": "crypto/dsa", + "dsa.Parameters": "crypto/dsa", + "dsa.PrivateKey": "crypto/dsa", + "dsa.PublicKey": "crypto/dsa", + "dsa.Sign": "crypto/dsa", + "dsa.Verify": "crypto/dsa", + "dwarf.AddrType": "debug/dwarf", + "dwarf.ArrayType": "debug/dwarf", + "dwarf.Attr": "debug/dwarf", + "dwarf.AttrAbstractOrigin": "debug/dwarf", + "dwarf.AttrAccessibility": "debug/dwarf", + "dwarf.AttrAddrClass": "debug/dwarf", + "dwarf.AttrAllocated": "debug/dwarf", + "dwarf.AttrArtificial": "debug/dwarf", + "dwarf.AttrAssociated": "debug/dwarf", + "dwarf.AttrBaseTypes": "debug/dwarf", + "dwarf.AttrBitOffset": "debug/dwarf", + "dwarf.AttrBitSize": "debug/dwarf", + "dwarf.AttrByteSize": "debug/dwarf", + "dwarf.AttrCallColumn": "debug/dwarf", + "dwarf.AttrCallFile": "debug/dwarf", + "dwarf.AttrCallLine": "debug/dwarf", + "dwarf.AttrCalling": "debug/dwarf", + "dwarf.AttrCommonRef": "debug/dwarf", + "dwarf.AttrCompDir": "debug/dwarf", + "dwarf.AttrConstValue": "debug/dwarf", + "dwarf.AttrContainingType": "debug/dwarf", + "dwarf.AttrCount": "debug/dwarf", + "dwarf.AttrDataLocation": "debug/dwarf", + "dwarf.AttrDataMemberLoc": "debug/dwarf", + "dwarf.AttrDeclColumn": "debug/dwarf", + "dwarf.AttrDeclFile": "debug/dwarf", + "dwarf.AttrDeclLine": "debug/dwarf", + "dwarf.AttrDeclaration": "debug/dwarf", + "dwarf.AttrDefaultValue": "debug/dwarf", + "dwarf.AttrDescription": "debug/dwarf", + "dwarf.AttrDiscr": "debug/dwarf", + "dwarf.AttrDiscrList": "debug/dwarf", + "dwarf.AttrDiscrValue": "debug/dwarf", + "dwarf.AttrEncoding": "debug/dwarf", + "dwarf.AttrEntrypc": "debug/dwarf", + "dwarf.AttrExtension": "debug/dwarf", + "dwarf.AttrExternal": "debug/dwarf", + "dwarf.AttrFrameBase": "debug/dwarf", + "dwarf.AttrFriend": "debug/dwarf", + "dwarf.AttrHighpc": "debug/dwarf", + "dwarf.AttrIdentifierCase": "debug/dwarf", + "dwarf.AttrImport": "debug/dwarf", + "dwarf.AttrInline": "debug/dwarf", + "dwarf.AttrIsOptional": "debug/dwarf", + "dwarf.AttrLanguage": "debug/dwarf", + "dwarf.AttrLocation": "debug/dwarf", + "dwarf.AttrLowerBound": "debug/dwarf", + "dwarf.AttrLowpc": "debug/dwarf", + "dwarf.AttrMacroInfo": "debug/dwarf", + "dwarf.AttrName": "debug/dwarf", + "dwarf.AttrNamelistItem": "debug/dwarf", + "dwarf.AttrOrdering": "debug/dwarf", + "dwarf.AttrPriority": "debug/dwarf", + "dwarf.AttrProducer": "debug/dwarf", + "dwarf.AttrPrototyped": "debug/dwarf", + "dwarf.AttrRanges": "debug/dwarf", + "dwarf.AttrReturnAddr": "debug/dwarf", + "dwarf.AttrSegment": "debug/dwarf", + "dwarf.AttrSibling": "debug/dwarf", + "dwarf.AttrSpecification": "debug/dwarf", + "dwarf.AttrStartScope": "debug/dwarf", + "dwarf.AttrStaticLink": "debug/dwarf", + "dwarf.AttrStmtList": "debug/dwarf", + "dwarf.AttrStride": "debug/dwarf", + "dwarf.AttrStrideSize": "debug/dwarf", + "dwarf.AttrStringLength": "debug/dwarf", + "dwarf.AttrTrampoline": "debug/dwarf", + "dwarf.AttrType": "debug/dwarf", + "dwarf.AttrUpperBound": "debug/dwarf", + "dwarf.AttrUseLocation": "debug/dwarf", + "dwarf.AttrUseUTF8": "debug/dwarf", + "dwarf.AttrVarParam": "debug/dwarf", + "dwarf.AttrVirtuality": "debug/dwarf", + "dwarf.AttrVisibility": "debug/dwarf", + "dwarf.AttrVtableElemLoc": "debug/dwarf", + "dwarf.BasicType": "debug/dwarf", + "dwarf.BoolType": "debug/dwarf", + "dwarf.CharType": "debug/dwarf", + "dwarf.CommonType": "debug/dwarf", + "dwarf.ComplexType": "debug/dwarf", + "dwarf.Data": "debug/dwarf", + "dwarf.DecodeError": "debug/dwarf", + "dwarf.DotDotDotType": "debug/dwarf", + "dwarf.Entry": "debug/dwarf", + "dwarf.EnumType": "debug/dwarf", + "dwarf.EnumValue": "debug/dwarf", + "dwarf.Field": "debug/dwarf", + "dwarf.FloatType": "debug/dwarf", + "dwarf.FuncType": "debug/dwarf", + "dwarf.IntType": "debug/dwarf", + "dwarf.New": "debug/dwarf", + "dwarf.Offset": "debug/dwarf", + "dwarf.PtrType": "debug/dwarf", + "dwarf.QualType": "debug/dwarf", + "dwarf.Reader": "debug/dwarf", + "dwarf.StructField": "debug/dwarf", + "dwarf.StructType": "debug/dwarf", + "dwarf.Tag": "debug/dwarf", + "dwarf.TagAccessDeclaration": "debug/dwarf", + "dwarf.TagArrayType": "debug/dwarf", + "dwarf.TagBaseType": "debug/dwarf", + "dwarf.TagCatchDwarfBlock": "debug/dwarf", + "dwarf.TagClassType": "debug/dwarf", + "dwarf.TagCommonDwarfBlock": "debug/dwarf", + "dwarf.TagCommonInclusion": "debug/dwarf", + "dwarf.TagCompileUnit": "debug/dwarf", + "dwarf.TagConstType": "debug/dwarf", + "dwarf.TagConstant": "debug/dwarf", + "dwarf.TagDwarfProcedure": "debug/dwarf", + "dwarf.TagEntryPoint": "debug/dwarf", + "dwarf.TagEnumerationType": "debug/dwarf", + "dwarf.TagEnumerator": "debug/dwarf", + "dwarf.TagFileType": "debug/dwarf", + "dwarf.TagFormalParameter": "debug/dwarf", + "dwarf.TagFriend": "debug/dwarf", + "dwarf.TagImportedDeclaration": "debug/dwarf", + "dwarf.TagImportedModule": "debug/dwarf", + "dwarf.TagImportedUnit": "debug/dwarf", + "dwarf.TagInheritance": "debug/dwarf", + "dwarf.TagInlinedSubroutine": "debug/dwarf", + "dwarf.TagInterfaceType": "debug/dwarf", + "dwarf.TagLabel": "debug/dwarf", + "dwarf.TagLexDwarfBlock": "debug/dwarf", + "dwarf.TagMember": "debug/dwarf", + "dwarf.TagModule": "debug/dwarf", + "dwarf.TagMutableType": "debug/dwarf", + "dwarf.TagNamelist": "debug/dwarf", + "dwarf.TagNamelistItem": "debug/dwarf", + "dwarf.TagNamespace": "debug/dwarf", + "dwarf.TagPackedType": "debug/dwarf", + "dwarf.TagPartialUnit": "debug/dwarf", + "dwarf.TagPointerType": "debug/dwarf", + "dwarf.TagPtrToMemberType": "debug/dwarf", + "dwarf.TagReferenceType": "debug/dwarf", + "dwarf.TagRestrictType": "debug/dwarf", + "dwarf.TagSetType": "debug/dwarf", + "dwarf.TagStringType": "debug/dwarf", + "dwarf.TagStructType": "debug/dwarf", + "dwarf.TagSubprogram": "debug/dwarf", + "dwarf.TagSubrangeType": "debug/dwarf", + "dwarf.TagSubroutineType": "debug/dwarf", + "dwarf.TagTemplateTypeParameter": "debug/dwarf", + "dwarf.TagTemplateValueParameter": "debug/dwarf", + "dwarf.TagThrownType": "debug/dwarf", + "dwarf.TagTryDwarfBlock": "debug/dwarf", + "dwarf.TagTypedef": "debug/dwarf", + "dwarf.TagUnionType": "debug/dwarf", + "dwarf.TagUnspecifiedParameters": "debug/dwarf", + "dwarf.TagUnspecifiedType": "debug/dwarf", + "dwarf.TagVariable": "debug/dwarf", + "dwarf.TagVariant": "debug/dwarf", + "dwarf.TagVariantPart": "debug/dwarf", + "dwarf.TagVolatileType": "debug/dwarf", + "dwarf.TagWithStmt": "debug/dwarf", + "dwarf.Type": "debug/dwarf", + "dwarf.TypedefType": "debug/dwarf", + "dwarf.UcharType": "debug/dwarf", + "dwarf.UintType": "debug/dwarf", + "dwarf.VoidType": "debug/dwarf", + "ecdsa.GenerateKey": "crypto/ecdsa", + "ecdsa.PrivateKey": "crypto/ecdsa", + "ecdsa.PublicKey": "crypto/ecdsa", + "ecdsa.Sign": "crypto/ecdsa", + "ecdsa.Verify": "crypto/ecdsa", + "elf.ARM_MAGIC_TRAMP_NUMBER": "debug/elf", + "elf.Class": "debug/elf", + "elf.DF_BIND_NOW": "debug/elf", + "elf.DF_ORIGIN": "debug/elf", + "elf.DF_STATIC_TLS": "debug/elf", + "elf.DF_SYMBOLIC": "debug/elf", + "elf.DF_TEXTREL": "debug/elf", + "elf.DT_BIND_NOW": "debug/elf", + "elf.DT_DEBUG": "debug/elf", + "elf.DT_ENCODING": "debug/elf", + "elf.DT_FINI": "debug/elf", + "elf.DT_FINI_ARRAY": "debug/elf", + "elf.DT_FINI_ARRAYSZ": "debug/elf", + "elf.DT_FLAGS": "debug/elf", + "elf.DT_HASH": "debug/elf", + "elf.DT_HIOS": "debug/elf", + "elf.DT_HIPROC": "debug/elf", + "elf.DT_INIT": "debug/elf", + "elf.DT_INIT_ARRAY": "debug/elf", + "elf.DT_INIT_ARRAYSZ": "debug/elf", + "elf.DT_JMPREL": "debug/elf", + "elf.DT_LOOS": "debug/elf", + "elf.DT_LOPROC": "debug/elf", + "elf.DT_NEEDED": "debug/elf", + "elf.DT_NULL": "debug/elf", + "elf.DT_PLTGOT": "debug/elf", + "elf.DT_PLTREL": "debug/elf", + "elf.DT_PLTRELSZ": "debug/elf", + "elf.DT_PREINIT_ARRAY": "debug/elf", + "elf.DT_PREINIT_ARRAYSZ": "debug/elf", + "elf.DT_REL": "debug/elf", + "elf.DT_RELA": "debug/elf", + "elf.DT_RELAENT": "debug/elf", + "elf.DT_RELASZ": "debug/elf", + "elf.DT_RELENT": "debug/elf", + "elf.DT_RELSZ": "debug/elf", + "elf.DT_RPATH": "debug/elf", + "elf.DT_RUNPATH": "debug/elf", + "elf.DT_SONAME": "debug/elf", + "elf.DT_STRSZ": "debug/elf", + "elf.DT_STRTAB": "debug/elf", + "elf.DT_SYMBOLIC": "debug/elf", + "elf.DT_SYMENT": "debug/elf", + "elf.DT_SYMTAB": "debug/elf", + "elf.DT_TEXTREL": "debug/elf", + "elf.DT_VERNEED": "debug/elf", + "elf.DT_VERNEEDNUM": "debug/elf", + "elf.DT_VERSYM": "debug/elf", + "elf.Data": "debug/elf", + "elf.Dyn32": "debug/elf", + "elf.Dyn64": "debug/elf", + "elf.DynFlag": "debug/elf", + "elf.DynTag": "debug/elf", + "elf.EI_ABIVERSION": "debug/elf", + "elf.EI_CLASS": "debug/elf", + "elf.EI_DATA": "debug/elf", + "elf.EI_NIDENT": "debug/elf", + "elf.EI_OSABI": "debug/elf", + "elf.EI_PAD": "debug/elf", + "elf.EI_VERSION": "debug/elf", + "elf.ELFCLASS32": "debug/elf", + "elf.ELFCLASS64": "debug/elf", + "elf.ELFCLASSNONE": "debug/elf", + "elf.ELFDATA2LSB": "debug/elf", + "elf.ELFDATA2MSB": "debug/elf", + "elf.ELFDATANONE": "debug/elf", + "elf.ELFMAG": "debug/elf", + "elf.ELFOSABI_86OPEN": "debug/elf", + "elf.ELFOSABI_AIX": "debug/elf", + "elf.ELFOSABI_ARM": "debug/elf", + "elf.ELFOSABI_FREEBSD": "debug/elf", + "elf.ELFOSABI_HPUX": "debug/elf", + "elf.ELFOSABI_HURD": "debug/elf", + "elf.ELFOSABI_IRIX": "debug/elf", + "elf.ELFOSABI_LINUX": "debug/elf", + "elf.ELFOSABI_MODESTO": "debug/elf", + "elf.ELFOSABI_NETBSD": "debug/elf", + "elf.ELFOSABI_NONE": "debug/elf", + "elf.ELFOSABI_NSK": "debug/elf", + "elf.ELFOSABI_OPENBSD": "debug/elf", + "elf.ELFOSABI_OPENVMS": "debug/elf", + "elf.ELFOSABI_SOLARIS": "debug/elf", + "elf.ELFOSABI_STANDALONE": "debug/elf", + "elf.ELFOSABI_TRU64": "debug/elf", + "elf.EM_386": "debug/elf", + "elf.EM_486": "debug/elf", + "elf.EM_68HC12": "debug/elf", + "elf.EM_68K": "debug/elf", + "elf.EM_860": "debug/elf", + "elf.EM_88K": "debug/elf", + "elf.EM_960": "debug/elf", + "elf.EM_ALPHA": "debug/elf", + "elf.EM_ALPHA_STD": "debug/elf", + "elf.EM_ARC": "debug/elf", + "elf.EM_ARM": "debug/elf", + "elf.EM_COLDFIRE": "debug/elf", + "elf.EM_FR20": "debug/elf", + "elf.EM_H8S": "debug/elf", + "elf.EM_H8_300": "debug/elf", + "elf.EM_H8_300H": "debug/elf", + "elf.EM_H8_500": "debug/elf", + "elf.EM_IA_64": "debug/elf", + "elf.EM_M32": "debug/elf", + "elf.EM_ME16": "debug/elf", + "elf.EM_MIPS": "debug/elf", + "elf.EM_MIPS_RS3_LE": "debug/elf", + "elf.EM_MIPS_RS4_BE": "debug/elf", + "elf.EM_MIPS_X": "debug/elf", + "elf.EM_MMA": "debug/elf", + "elf.EM_NCPU": "debug/elf", + "elf.EM_NDR1": "debug/elf", + "elf.EM_NONE": "debug/elf", + "elf.EM_PARISC": "debug/elf", + "elf.EM_PCP": "debug/elf", + "elf.EM_PPC": "debug/elf", + "elf.EM_PPC64": "debug/elf", + "elf.EM_RCE": "debug/elf", + "elf.EM_RH32": "debug/elf", + "elf.EM_S370": "debug/elf", + "elf.EM_S390": "debug/elf", + "elf.EM_SH": "debug/elf", + "elf.EM_SPARC": "debug/elf", + "elf.EM_SPARC32PLUS": "debug/elf", + "elf.EM_SPARCV9": "debug/elf", + "elf.EM_ST100": "debug/elf", + "elf.EM_STARCORE": "debug/elf", + "elf.EM_TINYJ": "debug/elf", + "elf.EM_TRICORE": "debug/elf", + "elf.EM_V800": "debug/elf", + "elf.EM_VPP500": "debug/elf", + "elf.EM_X86_64": "debug/elf", + "elf.ET_CORE": "debug/elf", + "elf.ET_DYN": "debug/elf", + "elf.ET_EXEC": "debug/elf", + "elf.ET_HIOS": "debug/elf", + "elf.ET_HIPROC": "debug/elf", + "elf.ET_LOOS": "debug/elf", + "elf.ET_LOPROC": "debug/elf", + "elf.ET_NONE": "debug/elf", + "elf.ET_REL": "debug/elf", + "elf.EV_CURRENT": "debug/elf", + "elf.EV_NONE": "debug/elf", + "elf.File": "debug/elf", + "elf.FileHeader": "debug/elf", + "elf.FormatError": "debug/elf", + "elf.Header32": "debug/elf", + "elf.Header64": "debug/elf", + "elf.ImportedSymbol": "debug/elf", + "elf.Machine": "debug/elf", + "elf.NT_FPREGSET": "debug/elf", + "elf.NT_PRPSINFO": "debug/elf", + "elf.NT_PRSTATUS": "debug/elf", + "elf.NType": "debug/elf", + "elf.NewFile": "debug/elf", + "elf.OSABI": "debug/elf", + "elf.Open": "debug/elf", + "elf.PF_MASKOS": "debug/elf", + "elf.PF_MASKPROC": "debug/elf", + "elf.PF_R": "debug/elf", + "elf.PF_W": "debug/elf", + "elf.PF_X": "debug/elf", + "elf.PT_DYNAMIC": "debug/elf", + "elf.PT_HIOS": "debug/elf", + "elf.PT_HIPROC": "debug/elf", + "elf.PT_INTERP": "debug/elf", + "elf.PT_LOAD": "debug/elf", + "elf.PT_LOOS": "debug/elf", + "elf.PT_LOPROC": "debug/elf", + "elf.PT_NOTE": "debug/elf", + "elf.PT_NULL": "debug/elf", + "elf.PT_PHDR": "debug/elf", + "elf.PT_SHLIB": "debug/elf", + "elf.PT_TLS": "debug/elf", + "elf.Prog": "debug/elf", + "elf.Prog32": "debug/elf", + "elf.Prog64": "debug/elf", + "elf.ProgFlag": "debug/elf", + "elf.ProgHeader": "debug/elf", + "elf.ProgType": "debug/elf", + "elf.R_386": "debug/elf", + "elf.R_386_32": "debug/elf", + "elf.R_386_COPY": "debug/elf", + "elf.R_386_GLOB_DAT": "debug/elf", + "elf.R_386_GOT32": "debug/elf", + "elf.R_386_GOTOFF": "debug/elf", + "elf.R_386_GOTPC": "debug/elf", + "elf.R_386_JMP_SLOT": "debug/elf", + "elf.R_386_NONE": "debug/elf", + "elf.R_386_PC32": "debug/elf", + "elf.R_386_PLT32": "debug/elf", + "elf.R_386_RELATIVE": "debug/elf", + "elf.R_386_TLS_DTPMOD32": "debug/elf", + "elf.R_386_TLS_DTPOFF32": "debug/elf", + "elf.R_386_TLS_GD": "debug/elf", + "elf.R_386_TLS_GD_32": "debug/elf", + "elf.R_386_TLS_GD_CALL": "debug/elf", + "elf.R_386_TLS_GD_POP": "debug/elf", + "elf.R_386_TLS_GD_PUSH": "debug/elf", + "elf.R_386_TLS_GOTIE": "debug/elf", + "elf.R_386_TLS_IE": "debug/elf", + "elf.R_386_TLS_IE_32": "debug/elf", + "elf.R_386_TLS_LDM": "debug/elf", + "elf.R_386_TLS_LDM_32": "debug/elf", + "elf.R_386_TLS_LDM_CALL": "debug/elf", + "elf.R_386_TLS_LDM_POP": "debug/elf", + "elf.R_386_TLS_LDM_PUSH": "debug/elf", + "elf.R_386_TLS_LDO_32": "debug/elf", + "elf.R_386_TLS_LE": "debug/elf", + "elf.R_386_TLS_LE_32": "debug/elf", + "elf.R_386_TLS_TPOFF": "debug/elf", + "elf.R_386_TLS_TPOFF32": "debug/elf", + "elf.R_ALPHA": "debug/elf", + "elf.R_ALPHA_BRADDR": "debug/elf", + "elf.R_ALPHA_COPY": "debug/elf", + "elf.R_ALPHA_GLOB_DAT": "debug/elf", + "elf.R_ALPHA_GPDISP": "debug/elf", + "elf.R_ALPHA_GPREL32": "debug/elf", + "elf.R_ALPHA_GPRELHIGH": "debug/elf", + "elf.R_ALPHA_GPRELLOW": "debug/elf", + "elf.R_ALPHA_GPVALUE": "debug/elf", + "elf.R_ALPHA_HINT": "debug/elf", + "elf.R_ALPHA_IMMED_BR_HI32": "debug/elf", + "elf.R_ALPHA_IMMED_GP_16": "debug/elf", + "elf.R_ALPHA_IMMED_GP_HI32": "debug/elf", + "elf.R_ALPHA_IMMED_LO32": "debug/elf", + "elf.R_ALPHA_IMMED_SCN_HI32": "debug/elf", + "elf.R_ALPHA_JMP_SLOT": "debug/elf", + "elf.R_ALPHA_LITERAL": "debug/elf", + "elf.R_ALPHA_LITUSE": "debug/elf", + "elf.R_ALPHA_NONE": "debug/elf", + "elf.R_ALPHA_OP_PRSHIFT": "debug/elf", + "elf.R_ALPHA_OP_PSUB": "debug/elf", + "elf.R_ALPHA_OP_PUSH": "debug/elf", + "elf.R_ALPHA_OP_STORE": "debug/elf", + "elf.R_ALPHA_REFLONG": "debug/elf", + "elf.R_ALPHA_REFQUAD": "debug/elf", + "elf.R_ALPHA_RELATIVE": "debug/elf", + "elf.R_ALPHA_SREL16": "debug/elf", + "elf.R_ALPHA_SREL32": "debug/elf", + "elf.R_ALPHA_SREL64": "debug/elf", + "elf.R_ARM": "debug/elf", + "elf.R_ARM_ABS12": "debug/elf", + "elf.R_ARM_ABS16": "debug/elf", + "elf.R_ARM_ABS32": "debug/elf", + "elf.R_ARM_ABS8": "debug/elf", + "elf.R_ARM_AMP_VCALL9": "debug/elf", + "elf.R_ARM_COPY": "debug/elf", + "elf.R_ARM_GLOB_DAT": "debug/elf", + "elf.R_ARM_GNU_VTENTRY": "debug/elf", + "elf.R_ARM_GNU_VTINHERIT": "debug/elf", + "elf.R_ARM_GOT32": "debug/elf", + "elf.R_ARM_GOTOFF": "debug/elf", + "elf.R_ARM_GOTPC": "debug/elf", + "elf.R_ARM_JUMP_SLOT": "debug/elf", + "elf.R_ARM_NONE": "debug/elf", + "elf.R_ARM_PC13": "debug/elf", + "elf.R_ARM_PC24": "debug/elf", + "elf.R_ARM_PLT32": "debug/elf", + "elf.R_ARM_RABS32": "debug/elf", + "elf.R_ARM_RBASE": "debug/elf", + "elf.R_ARM_REL32": "debug/elf", + "elf.R_ARM_RELATIVE": "debug/elf", + "elf.R_ARM_RPC24": "debug/elf", + "elf.R_ARM_RREL32": "debug/elf", + "elf.R_ARM_RSBREL32": "debug/elf", + "elf.R_ARM_SBREL32": "debug/elf", + "elf.R_ARM_SWI24": "debug/elf", + "elf.R_ARM_THM_ABS5": "debug/elf", + "elf.R_ARM_THM_PC22": "debug/elf", + "elf.R_ARM_THM_PC8": "debug/elf", + "elf.R_ARM_THM_RPC22": "debug/elf", + "elf.R_ARM_THM_SWI8": "debug/elf", + "elf.R_ARM_THM_XPC22": "debug/elf", + "elf.R_ARM_XPC25": "debug/elf", + "elf.R_INFO": "debug/elf", + "elf.R_INFO32": "debug/elf", + "elf.R_PPC": "debug/elf", + "elf.R_PPC_ADDR14": "debug/elf", + "elf.R_PPC_ADDR14_BRNTAKEN": "debug/elf", + "elf.R_PPC_ADDR14_BRTAKEN": "debug/elf", + "elf.R_PPC_ADDR16": "debug/elf", + "elf.R_PPC_ADDR16_HA": "debug/elf", + "elf.R_PPC_ADDR16_HI": "debug/elf", + "elf.R_PPC_ADDR16_LO": "debug/elf", + "elf.R_PPC_ADDR24": "debug/elf", + "elf.R_PPC_ADDR32": "debug/elf", + "elf.R_PPC_COPY": "debug/elf", + "elf.R_PPC_DTPMOD32": "debug/elf", + "elf.R_PPC_DTPREL16": "debug/elf", + "elf.R_PPC_DTPREL16_HA": "debug/elf", + "elf.R_PPC_DTPREL16_HI": "debug/elf", + "elf.R_PPC_DTPREL16_LO": "debug/elf", + "elf.R_PPC_DTPREL32": "debug/elf", + "elf.R_PPC_EMB_BIT_FLD": "debug/elf", + "elf.R_PPC_EMB_MRKREF": "debug/elf", + "elf.R_PPC_EMB_NADDR16": "debug/elf", + "elf.R_PPC_EMB_NADDR16_HA": "debug/elf", + "elf.R_PPC_EMB_NADDR16_HI": "debug/elf", + "elf.R_PPC_EMB_NADDR16_LO": "debug/elf", + "elf.R_PPC_EMB_NADDR32": "debug/elf", + "elf.R_PPC_EMB_RELSDA": "debug/elf", + "elf.R_PPC_EMB_RELSEC16": "debug/elf", + "elf.R_PPC_EMB_RELST_HA": "debug/elf", + "elf.R_PPC_EMB_RELST_HI": "debug/elf", + "elf.R_PPC_EMB_RELST_LO": "debug/elf", + "elf.R_PPC_EMB_SDA21": "debug/elf", + "elf.R_PPC_EMB_SDA2I16": "debug/elf", + "elf.R_PPC_EMB_SDA2REL": "debug/elf", + "elf.R_PPC_EMB_SDAI16": "debug/elf", + "elf.R_PPC_GLOB_DAT": "debug/elf", + "elf.R_PPC_GOT16": "debug/elf", + "elf.R_PPC_GOT16_HA": "debug/elf", + "elf.R_PPC_GOT16_HI": "debug/elf", + "elf.R_PPC_GOT16_LO": "debug/elf", + "elf.R_PPC_GOT_TLSGD16": "debug/elf", + "elf.R_PPC_GOT_TLSGD16_HA": "debug/elf", + "elf.R_PPC_GOT_TLSGD16_HI": "debug/elf", + "elf.R_PPC_GOT_TLSGD16_LO": "debug/elf", + "elf.R_PPC_GOT_TLSLD16": "debug/elf", + "elf.R_PPC_GOT_TLSLD16_HA": "debug/elf", + "elf.R_PPC_GOT_TLSLD16_HI": "debug/elf", + "elf.R_PPC_GOT_TLSLD16_LO": "debug/elf", + "elf.R_PPC_GOT_TPREL16": "debug/elf", + "elf.R_PPC_GOT_TPREL16_HA": "debug/elf", + "elf.R_PPC_GOT_TPREL16_HI": "debug/elf", + "elf.R_PPC_GOT_TPREL16_LO": "debug/elf", + "elf.R_PPC_JMP_SLOT": "debug/elf", + "elf.R_PPC_LOCAL24PC": "debug/elf", + "elf.R_PPC_NONE": "debug/elf", + "elf.R_PPC_PLT16_HA": "debug/elf", + "elf.R_PPC_PLT16_HI": "debug/elf", + "elf.R_PPC_PLT16_LO": "debug/elf", + "elf.R_PPC_PLT32": "debug/elf", + "elf.R_PPC_PLTREL24": "debug/elf", + "elf.R_PPC_PLTREL32": "debug/elf", + "elf.R_PPC_REL14": "debug/elf", + "elf.R_PPC_REL14_BRNTAKEN": "debug/elf", + "elf.R_PPC_REL14_BRTAKEN": "debug/elf", + "elf.R_PPC_REL24": "debug/elf", + "elf.R_PPC_REL32": "debug/elf", + "elf.R_PPC_RELATIVE": "debug/elf", + "elf.R_PPC_SDAREL16": "debug/elf", + "elf.R_PPC_SECTOFF": "debug/elf", + "elf.R_PPC_SECTOFF_HA": "debug/elf", + "elf.R_PPC_SECTOFF_HI": "debug/elf", + "elf.R_PPC_SECTOFF_LO": "debug/elf", + "elf.R_PPC_TLS": "debug/elf", + "elf.R_PPC_TPREL16": "debug/elf", + "elf.R_PPC_TPREL16_HA": "debug/elf", + "elf.R_PPC_TPREL16_HI": "debug/elf", + "elf.R_PPC_TPREL16_LO": "debug/elf", + "elf.R_PPC_TPREL32": "debug/elf", + "elf.R_PPC_UADDR16": "debug/elf", + "elf.R_PPC_UADDR32": "debug/elf", + "elf.R_SPARC": "debug/elf", + "elf.R_SPARC_10": "debug/elf", + "elf.R_SPARC_11": "debug/elf", + "elf.R_SPARC_13": "debug/elf", + "elf.R_SPARC_16": "debug/elf", + "elf.R_SPARC_22": "debug/elf", + "elf.R_SPARC_32": "debug/elf", + "elf.R_SPARC_5": "debug/elf", + "elf.R_SPARC_6": "debug/elf", + "elf.R_SPARC_64": "debug/elf", + "elf.R_SPARC_7": "debug/elf", + "elf.R_SPARC_8": "debug/elf", + "elf.R_SPARC_COPY": "debug/elf", + "elf.R_SPARC_DISP16": "debug/elf", + "elf.R_SPARC_DISP32": "debug/elf", + "elf.R_SPARC_DISP64": "debug/elf", + "elf.R_SPARC_DISP8": "debug/elf", + "elf.R_SPARC_GLOB_DAT": "debug/elf", + "elf.R_SPARC_GLOB_JMP": "debug/elf", + "elf.R_SPARC_GOT10": "debug/elf", + "elf.R_SPARC_GOT13": "debug/elf", + "elf.R_SPARC_GOT22": "debug/elf", + "elf.R_SPARC_H44": "debug/elf", + "elf.R_SPARC_HH22": "debug/elf", + "elf.R_SPARC_HI22": "debug/elf", + "elf.R_SPARC_HIPLT22": "debug/elf", + "elf.R_SPARC_HIX22": "debug/elf", + "elf.R_SPARC_HM10": "debug/elf", + "elf.R_SPARC_JMP_SLOT": "debug/elf", + "elf.R_SPARC_L44": "debug/elf", + "elf.R_SPARC_LM22": "debug/elf", + "elf.R_SPARC_LO10": "debug/elf", + "elf.R_SPARC_LOPLT10": "debug/elf", + "elf.R_SPARC_LOX10": "debug/elf", + "elf.R_SPARC_M44": "debug/elf", + "elf.R_SPARC_NONE": "debug/elf", + "elf.R_SPARC_OLO10": "debug/elf", + "elf.R_SPARC_PC10": "debug/elf", + "elf.R_SPARC_PC22": "debug/elf", + "elf.R_SPARC_PCPLT10": "debug/elf", + "elf.R_SPARC_PCPLT22": "debug/elf", + "elf.R_SPARC_PCPLT32": "debug/elf", + "elf.R_SPARC_PC_HH22": "debug/elf", + "elf.R_SPARC_PC_HM10": "debug/elf", + "elf.R_SPARC_PC_LM22": "debug/elf", + "elf.R_SPARC_PLT32": "debug/elf", + "elf.R_SPARC_PLT64": "debug/elf", + "elf.R_SPARC_REGISTER": "debug/elf", + "elf.R_SPARC_RELATIVE": "debug/elf", + "elf.R_SPARC_UA16": "debug/elf", + "elf.R_SPARC_UA32": "debug/elf", + "elf.R_SPARC_UA64": "debug/elf", + "elf.R_SPARC_WDISP16": "debug/elf", + "elf.R_SPARC_WDISP19": "debug/elf", + "elf.R_SPARC_WDISP22": "debug/elf", + "elf.R_SPARC_WDISP30": "debug/elf", + "elf.R_SPARC_WPLT30": "debug/elf", + "elf.R_SYM32": "debug/elf", + "elf.R_SYM64": "debug/elf", + "elf.R_TYPE32": "debug/elf", + "elf.R_TYPE64": "debug/elf", + "elf.R_X86_64": "debug/elf", + "elf.R_X86_64_16": "debug/elf", + "elf.R_X86_64_32": "debug/elf", + "elf.R_X86_64_32S": "debug/elf", + "elf.R_X86_64_64": "debug/elf", + "elf.R_X86_64_8": "debug/elf", + "elf.R_X86_64_COPY": "debug/elf", + "elf.R_X86_64_DTPMOD64": "debug/elf", + "elf.R_X86_64_DTPOFF32": "debug/elf", + "elf.R_X86_64_DTPOFF64": "debug/elf", + "elf.R_X86_64_GLOB_DAT": "debug/elf", + "elf.R_X86_64_GOT32": "debug/elf", + "elf.R_X86_64_GOTPCREL": "debug/elf", + "elf.R_X86_64_GOTTPOFF": "debug/elf", + "elf.R_X86_64_JMP_SLOT": "debug/elf", + "elf.R_X86_64_NONE": "debug/elf", + "elf.R_X86_64_PC16": "debug/elf", + "elf.R_X86_64_PC32": "debug/elf", + "elf.R_X86_64_PC8": "debug/elf", + "elf.R_X86_64_PLT32": "debug/elf", + "elf.R_X86_64_RELATIVE": "debug/elf", + "elf.R_X86_64_TLSGD": "debug/elf", + "elf.R_X86_64_TLSLD": "debug/elf", + "elf.R_X86_64_TPOFF32": "debug/elf", + "elf.R_X86_64_TPOFF64": "debug/elf", + "elf.Rel32": "debug/elf", + "elf.Rel64": "debug/elf", + "elf.Rela32": "debug/elf", + "elf.Rela64": "debug/elf", + "elf.SHF_ALLOC": "debug/elf", + "elf.SHF_EXECINSTR": "debug/elf", + "elf.SHF_GROUP": "debug/elf", + "elf.SHF_INFO_LINK": "debug/elf", + "elf.SHF_LINK_ORDER": "debug/elf", + "elf.SHF_MASKOS": "debug/elf", + "elf.SHF_MASKPROC": "debug/elf", + "elf.SHF_MERGE": "debug/elf", + "elf.SHF_OS_NONCONFORMING": "debug/elf", + "elf.SHF_STRINGS": "debug/elf", + "elf.SHF_TLS": "debug/elf", + "elf.SHF_WRITE": "debug/elf", + "elf.SHN_ABS": "debug/elf", + "elf.SHN_COMMON": "debug/elf", + "elf.SHN_HIOS": "debug/elf", + "elf.SHN_HIPROC": "debug/elf", + "elf.SHN_HIRESERVE": "debug/elf", + "elf.SHN_LOOS": "debug/elf", + "elf.SHN_LOPROC": "debug/elf", + "elf.SHN_LORESERVE": "debug/elf", + "elf.SHN_UNDEF": "debug/elf", + "elf.SHN_XINDEX": "debug/elf", + "elf.SHT_DYNAMIC": "debug/elf", + "elf.SHT_DYNSYM": "debug/elf", + "elf.SHT_FINI_ARRAY": "debug/elf", + "elf.SHT_GNU_ATTRIBUTES": "debug/elf", + "elf.SHT_GNU_HASH": "debug/elf", + "elf.SHT_GNU_LIBLIST": "debug/elf", + "elf.SHT_GNU_VERDEF": "debug/elf", + "elf.SHT_GNU_VERNEED": "debug/elf", + "elf.SHT_GNU_VERSYM": "debug/elf", + "elf.SHT_GROUP": "debug/elf", + "elf.SHT_HASH": "debug/elf", + "elf.SHT_HIOS": "debug/elf", + "elf.SHT_HIPROC": "debug/elf", + "elf.SHT_HIUSER": "debug/elf", + "elf.SHT_INIT_ARRAY": "debug/elf", + "elf.SHT_LOOS": "debug/elf", + "elf.SHT_LOPROC": "debug/elf", + "elf.SHT_LOUSER": "debug/elf", + "elf.SHT_NOBITS": "debug/elf", + "elf.SHT_NOTE": "debug/elf", + "elf.SHT_NULL": "debug/elf", + "elf.SHT_PREINIT_ARRAY": "debug/elf", + "elf.SHT_PROGBITS": "debug/elf", + "elf.SHT_REL": "debug/elf", + "elf.SHT_RELA": "debug/elf", + "elf.SHT_SHLIB": "debug/elf", + "elf.SHT_STRTAB": "debug/elf", + "elf.SHT_SYMTAB": "debug/elf", + "elf.SHT_SYMTAB_SHNDX": "debug/elf", + "elf.STB_GLOBAL": "debug/elf", + "elf.STB_HIOS": "debug/elf", + "elf.STB_HIPROC": "debug/elf", + "elf.STB_LOCAL": "debug/elf", + "elf.STB_LOOS": "debug/elf", + "elf.STB_LOPROC": "debug/elf", + "elf.STB_WEAK": "debug/elf", + "elf.STT_COMMON": "debug/elf", + "elf.STT_FILE": "debug/elf", + "elf.STT_FUNC": "debug/elf", + "elf.STT_HIOS": "debug/elf", + "elf.STT_HIPROC": "debug/elf", + "elf.STT_LOOS": "debug/elf", + "elf.STT_LOPROC": "debug/elf", + "elf.STT_NOTYPE": "debug/elf", + "elf.STT_OBJECT": "debug/elf", + "elf.STT_SECTION": "debug/elf", + "elf.STT_TLS": "debug/elf", + "elf.STV_DEFAULT": "debug/elf", + "elf.STV_HIDDEN": "debug/elf", + "elf.STV_INTERNAL": "debug/elf", + "elf.STV_PROTECTED": "debug/elf", + "elf.ST_BIND": "debug/elf", + "elf.ST_INFO": "debug/elf", + "elf.ST_TYPE": "debug/elf", + "elf.ST_VISIBILITY": "debug/elf", + "elf.Section": "debug/elf", + "elf.Section32": "debug/elf", + "elf.Section64": "debug/elf", + "elf.SectionFlag": "debug/elf", + "elf.SectionHeader": "debug/elf", + "elf.SectionIndex": "debug/elf", + "elf.SectionType": "debug/elf", + "elf.Sym32": "debug/elf", + "elf.Sym32Size": "debug/elf", + "elf.Sym64": "debug/elf", + "elf.Sym64Size": "debug/elf", + "elf.SymBind": "debug/elf", + "elf.SymType": "debug/elf", + "elf.SymVis": "debug/elf", + "elf.Symbol": "debug/elf", + "elf.Type": "debug/elf", + "elf.Version": "debug/elf", + "elliptic.Curve": "crypto/elliptic", + "elliptic.CurveParams": "crypto/elliptic", + "elliptic.GenerateKey": "crypto/elliptic", + "elliptic.Marshal": "crypto/elliptic", + "elliptic.P224": "crypto/elliptic", + "elliptic.P256": "crypto/elliptic", + "elliptic.P384": "crypto/elliptic", + "elliptic.P521": "crypto/elliptic", + "elliptic.Unmarshal": "crypto/elliptic", + "encoding.BinaryMarshaler": "encoding", + "encoding.BinaryUnmarshaler": "encoding", + "encoding.TextMarshaler": "encoding", + "encoding.TextUnmarshaler": "encoding", + "errors.New": "errors", + "exec.Cmd": "os/exec", + "exec.Command": "os/exec", + "exec.ErrNotFound": "os/exec", + "exec.Error": "os/exec", + "exec.ExitError": "os/exec", + "exec.LookPath": "os/exec", + "expvar.Do": "expvar", + "expvar.Float": "expvar", + "expvar.Func": "expvar", + "expvar.Get": "expvar", + "expvar.Int": "expvar", + "expvar.KeyValue": "expvar", + "expvar.Map": "expvar", + "expvar.NewFloat": "expvar", + "expvar.NewInt": "expvar", + "expvar.NewMap": "expvar", + "expvar.NewString": "expvar", + "expvar.Publish": "expvar", + "expvar.String": "expvar", + "expvar.Var": "expvar", + "fcgi.Serve": "net/http/fcgi", + "filepath.Abs": "path/filepath", + "filepath.Base": "path/filepath", + "filepath.Clean": "path/filepath", + "filepath.Dir": "path/filepath", + "filepath.ErrBadPattern": "path/filepath", + "filepath.EvalSymlinks": "path/filepath", + "filepath.Ext": "path/filepath", + "filepath.FromSlash": "path/filepath", + "filepath.Glob": "path/filepath", + "filepath.HasPrefix": "path/filepath", + "filepath.IsAbs": "path/filepath", + "filepath.Join": "path/filepath", + "filepath.ListSeparator": "path/filepath", + "filepath.Match": "path/filepath", + "filepath.Rel": "path/filepath", + "filepath.Separator": "path/filepath", + "filepath.SkipDir": "path/filepath", + "filepath.Split": "path/filepath", + "filepath.SplitList": "path/filepath", + "filepath.ToSlash": "path/filepath", + "filepath.VolumeName": "path/filepath", + "filepath.Walk": "path/filepath", + "filepath.WalkFunc": "path/filepath", + "flag.Arg": "flag", + "flag.Args": "flag", + "flag.Bool": "flag", + "flag.BoolVar": "flag", + "flag.CommandLine": "flag", + "flag.ContinueOnError": "flag", + "flag.Duration": "flag", + "flag.DurationVar": "flag", + "flag.ErrHelp": "flag", + "flag.ErrorHandling": "flag", + "flag.ExitOnError": "flag", + "flag.Flag": "flag", + "flag.FlagSet": "flag", + "flag.Float64": "flag", + "flag.Float64Var": "flag", + "flag.Getter": "flag", + "flag.Int": "flag", + "flag.Int64": "flag", + "flag.Int64Var": "flag", + "flag.IntVar": "flag", + "flag.Lookup": "flag", + "flag.NArg": "flag", + "flag.NFlag": "flag", + "flag.NewFlagSet": "flag", + "flag.PanicOnError": "flag", + "flag.Parse": "flag", + "flag.Parsed": "flag", + "flag.PrintDefaults": "flag", + "flag.Set": "flag", + "flag.String": "flag", + "flag.StringVar": "flag", + "flag.Uint": "flag", + "flag.Uint64": "flag", + "flag.Uint64Var": "flag", + "flag.UintVar": "flag", + "flag.Usage": "flag", + "flag.Value": "flag", + "flag.Var": "flag", + "flag.Visit": "flag", + "flag.VisitAll": "flag", + "flate.BestCompression": "compress/flate", + "flate.BestSpeed": "compress/flate", + "flate.CorruptInputError": "compress/flate", + "flate.DefaultCompression": "compress/flate", + "flate.InternalError": "compress/flate", + "flate.NewReader": "compress/flate", + "flate.NewReaderDict": "compress/flate", + "flate.NewWriter": "compress/flate", + "flate.NewWriterDict": "compress/flate", + "flate.NoCompression": "compress/flate", + "flate.ReadError": "compress/flate", + "flate.Reader": "compress/flate", + "flate.WriteError": "compress/flate", + "flate.Writer": "compress/flate", + "fmt.Errorf": "fmt", + "fmt.Formatter": "fmt", + "fmt.Fprint": "fmt", + "fmt.Fprintf": "fmt", + "fmt.Fprintln": "fmt", + "fmt.Fscan": "fmt", + "fmt.Fscanf": "fmt", + "fmt.Fscanln": "fmt", + "fmt.GoStringer": "fmt", + "fmt.Print": "fmt", + "fmt.Printf": "fmt", + "fmt.Println": "fmt", + "fmt.Scan": "fmt", + "fmt.ScanState": "fmt", + "fmt.Scanf": "fmt", + "fmt.Scanln": "fmt", + "fmt.Scanner": "fmt", + "fmt.Sprint": "fmt", + "fmt.Sprintf": "fmt", + "fmt.Sprintln": "fmt", + "fmt.Sscan": "fmt", + "fmt.Sscanf": "fmt", + "fmt.Sscanln": "fmt", + "fmt.State": "fmt", + "fmt.Stringer": "fmt", + "fnv.New32": "hash/fnv", + "fnv.New32a": "hash/fnv", + "fnv.New64": "hash/fnv", + "fnv.New64a": "hash/fnv", + "format.Node": "go/format", + "format.Source": "go/format", + "gif.Decode": "image/gif", + "gif.DecodeAll": "image/gif", + "gif.DecodeConfig": "image/gif", + "gif.Encode": "image/gif", + "gif.EncodeAll": "image/gif", + "gif.GIF": "image/gif", + "gif.Options": "image/gif", + "gob.CommonType": "encoding/gob", + "gob.Decoder": "encoding/gob", + "gob.Encoder": "encoding/gob", + "gob.GobDecoder": "encoding/gob", + "gob.GobEncoder": "encoding/gob", + "gob.NewDecoder": "encoding/gob", + "gob.NewEncoder": "encoding/gob", + "gob.Register": "encoding/gob", + "gob.RegisterName": "encoding/gob", + "gosym.DecodingError": "debug/gosym", + "gosym.Func": "debug/gosym", + "gosym.LineTable": "debug/gosym", + "gosym.NewLineTable": "debug/gosym", + "gosym.NewTable": "debug/gosym", + "gosym.Obj": "debug/gosym", + "gosym.Sym": "debug/gosym", + "gosym.Table": "debug/gosym", + "gosym.UnknownFileError": "debug/gosym", + "gosym.UnknownLineError": "debug/gosym", + "gzip.BestCompression": "compress/gzip", + "gzip.BestSpeed": "compress/gzip", + "gzip.DefaultCompression": "compress/gzip", + "gzip.ErrChecksum": "compress/gzip", + "gzip.ErrHeader": "compress/gzip", + "gzip.Header": "compress/gzip", + "gzip.NewReader": "compress/gzip", + "gzip.NewWriter": "compress/gzip", + "gzip.NewWriterLevel": "compress/gzip", + "gzip.NoCompression": "compress/gzip", + "gzip.Reader": "compress/gzip", + "gzip.Writer": "compress/gzip", + "hash.Hash": "hash", + "hash.Hash32": "hash", + "hash.Hash64": "hash", + "heap.Fix": "container/heap", + "heap.Init": "container/heap", + "heap.Interface": "container/heap", + "heap.Pop": "container/heap", + "heap.Push": "container/heap", + "heap.Remove": "container/heap", + "hex.Decode": "encoding/hex", + "hex.DecodeString": "encoding/hex", + "hex.DecodedLen": "encoding/hex", + "hex.Dump": "encoding/hex", + "hex.Dumper": "encoding/hex", + "hex.Encode": "encoding/hex", + "hex.EncodeToString": "encoding/hex", + "hex.EncodedLen": "encoding/hex", + "hex.ErrLength": "encoding/hex", + "hex.InvalidByteError": "encoding/hex", + "hmac.Equal": "crypto/hmac", + "hmac.New": "crypto/hmac", + "html.EscapeString": "html", + "html.UnescapeString": "html", + "http.CanonicalHeaderKey": "net/http", + "http.Client": "net/http", + "http.CloseNotifier": "net/http", + "http.Cookie": "net/http", + "http.CookieJar": "net/http", + "http.DefaultClient": "net/http", + "http.DefaultMaxHeaderBytes": "net/http", + "http.DefaultMaxIdleConnsPerHost": "net/http", + "http.DefaultServeMux": "net/http", + "http.DefaultTransport": "net/http", + "http.DetectContentType": "net/http", + "http.Dir": "net/http", + "http.ErrBodyNotAllowed": "net/http", + "http.ErrBodyReadAfterClose": "net/http", + "http.ErrContentLength": "net/http", + "http.ErrHandlerTimeout": "net/http", + "http.ErrHeaderTooLong": "net/http", + "http.ErrHijacked": "net/http", + "http.ErrLineTooLong": "net/http", + "http.ErrMissingBoundary": "net/http", + "http.ErrMissingContentLength": "net/http", + "http.ErrMissingFile": "net/http", + "http.ErrNoCookie": "net/http", + "http.ErrNoLocation": "net/http", + "http.ErrNotMultipart": "net/http", + "http.ErrNotSupported": "net/http", + "http.ErrShortBody": "net/http", + "http.ErrUnexpectedTrailer": "net/http", + "http.ErrWriteAfterFlush": "net/http", + "http.Error": "net/http", + "http.File": "net/http", + "http.FileServer": "net/http", + "http.FileSystem": "net/http", + "http.Flusher": "net/http", + "http.Get": "net/http", + "http.Handle": "net/http", + "http.HandleFunc": "net/http", + "http.Handler": "net/http", + "http.HandlerFunc": "net/http", + "http.Head": "net/http", + "http.Header": "net/http", + "http.Hijacker": "net/http", + "http.ListenAndServe": "net/http", + "http.ListenAndServeTLS": "net/http", + "http.MaxBytesReader": "net/http", + "http.NewFileTransport": "net/http", + "http.NewRequest": "net/http", + "http.NewServeMux": "net/http", + "http.NotFound": "net/http", + "http.NotFoundHandler": "net/http", + "http.ParseHTTPVersion": "net/http", + "http.ParseTime": "net/http", + "http.Post": "net/http", + "http.PostForm": "net/http", + "http.ProtocolError": "net/http", + "http.ProxyFromEnvironment": "net/http", + "http.ProxyURL": "net/http", + "http.ReadRequest": "net/http", + "http.ReadResponse": "net/http", + "http.Redirect": "net/http", + "http.RedirectHandler": "net/http", + "http.Request": "net/http", + "http.Response": "net/http", + "http.ResponseWriter": "net/http", + "http.RoundTripper": "net/http", + "http.Serve": "net/http", + "http.ServeContent": "net/http", + "http.ServeFile": "net/http", + "http.ServeMux": "net/http", + "http.Server": "net/http", + "http.SetCookie": "net/http", + "http.StatusAccepted": "net/http", + "http.StatusBadGateway": "net/http", + "http.StatusBadRequest": "net/http", + "http.StatusConflict": "net/http", + "http.StatusContinue": "net/http", + "http.StatusCreated": "net/http", + "http.StatusExpectationFailed": "net/http", + "http.StatusForbidden": "net/http", + "http.StatusFound": "net/http", + "http.StatusGatewayTimeout": "net/http", + "http.StatusGone": "net/http", + "http.StatusHTTPVersionNotSupported": "net/http", + "http.StatusInternalServerError": "net/http", + "http.StatusLengthRequired": "net/http", + "http.StatusMethodNotAllowed": "net/http", + "http.StatusMovedPermanently": "net/http", + "http.StatusMultipleChoices": "net/http", + "http.StatusNoContent": "net/http", + "http.StatusNonAuthoritativeInfo": "net/http", + "http.StatusNotAcceptable": "net/http", + "http.StatusNotFound": "net/http", + "http.StatusNotImplemented": "net/http", + "http.StatusNotModified": "net/http", + "http.StatusOK": "net/http", + "http.StatusPartialContent": "net/http", + "http.StatusPaymentRequired": "net/http", + "http.StatusPreconditionFailed": "net/http", + "http.StatusProxyAuthRequired": "net/http", + "http.StatusRequestEntityTooLarge": "net/http", + "http.StatusRequestTimeout": "net/http", + "http.StatusRequestURITooLong": "net/http", + "http.StatusRequestedRangeNotSatisfiable": "net/http", + "http.StatusResetContent": "net/http", + "http.StatusSeeOther": "net/http", + "http.StatusServiceUnavailable": "net/http", + "http.StatusSwitchingProtocols": "net/http", + "http.StatusTeapot": "net/http", + "http.StatusTemporaryRedirect": "net/http", + "http.StatusText": "net/http", + "http.StatusUnauthorized": "net/http", + "http.StatusUnsupportedMediaType": "net/http", + "http.StatusUseProxy": "net/http", + "http.StripPrefix": "net/http", + "http.TimeFormat": "net/http", + "http.TimeoutHandler": "net/http", + "http.Transport": "net/http", + "httptest.DefaultRemoteAddr": "net/http/httptest", + "httptest.NewRecorder": "net/http/httptest", + "httptest.NewServer": "net/http/httptest", + "httptest.NewTLSServer": "net/http/httptest", + "httptest.NewUnstartedServer": "net/http/httptest", + "httptest.ResponseRecorder": "net/http/httptest", + "httptest.Server": "net/http/httptest", + "httputil.ClientConn": "net/http/httputil", + "httputil.DumpRequest": "net/http/httputil", + "httputil.DumpRequestOut": "net/http/httputil", + "httputil.DumpResponse": "net/http/httputil", + "httputil.ErrClosed": "net/http/httputil", + "httputil.ErrLineTooLong": "net/http/httputil", + "httputil.ErrPersistEOF": "net/http/httputil", + "httputil.ErrPipeline": "net/http/httputil", + "httputil.NewChunkedReader": "net/http/httputil", + "httputil.NewChunkedWriter": "net/http/httputil", + "httputil.NewClientConn": "net/http/httputil", + "httputil.NewProxyClientConn": "net/http/httputil", + "httputil.NewServerConn": "net/http/httputil", + "httputil.NewSingleHostReverseProxy": "net/http/httputil", + "httputil.ReverseProxy": "net/http/httputil", + "httputil.ServerConn": "net/http/httputil", + "image.Alpha": "image", + "image.Alpha16": "image", + "image.Black": "image", + "image.Config": "image", + "image.Decode": "image", + "image.DecodeConfig": "image", + "image.ErrFormat": "image", + "image.Gray": "image", + "image.Gray16": "image", + "image.Image": "image", + "image.NRGBA": "image", + "image.NRGBA64": "image", + "image.NewAlpha": "image", + "image.NewAlpha16": "image", + "image.NewGray": "image", + "image.NewGray16": "image", + "image.NewNRGBA": "image", + "image.NewNRGBA64": "image", + "image.NewPaletted": "image", + "image.NewRGBA": "image", + "image.NewRGBA64": "image", + "image.NewUniform": "image", + "image.NewYCbCr": "image", + "image.Opaque": "image", + "image.Paletted": "image", + "image.PalettedImage": "image", + "image.Point": "image", + "image.Pt": "image", + "image.RGBA": "image", + "image.RGBA64": "image", + "image.Rect": "image", + "image.Rectangle": "image", + "image.RegisterFormat": "image", + "image.Transparent": "image", + "image.Uniform": "image", + "image.White": "image", + "image.YCbCr": "image", + "image.YCbCrSubsampleRatio": "image", + "image.YCbCrSubsampleRatio420": "image", + "image.YCbCrSubsampleRatio422": "image", + "image.YCbCrSubsampleRatio440": "image", + "image.YCbCrSubsampleRatio444": "image", + "image.ZP": "image", + "image.ZR": "image", + "io.ByteReader": "io", + "io.ByteScanner": "io", + "io.ByteWriter": "io", + "io.Closer": "io", + "io.Copy": "io", + "io.CopyN": "io", + "io.EOF": "io", + "io.ErrClosedPipe": "io", + "io.ErrNoProgress": "io", + "io.ErrShortBuffer": "io", + "io.ErrShortWrite": "io", + "io.ErrUnexpectedEOF": "io", + "io.LimitReader": "io", + "io.LimitedReader": "io", + "io.MultiReader": "io", + "io.MultiWriter": "io", + "io.NewSectionReader": "io", + "io.Pipe": "io", + "io.PipeReader": "io", + "io.PipeWriter": "io", + "io.ReadAtLeast": "io", + "io.ReadCloser": "io", + "io.ReadFull": "io", + "io.ReadSeeker": "io", + "io.ReadWriteCloser": "io", + "io.ReadWriteSeeker": "io", + "io.ReadWriter": "io", + "io.Reader": "io", + "io.ReaderAt": "io", + "io.ReaderFrom": "io", + "io.RuneReader": "io", + "io.RuneScanner": "io", + "io.SectionReader": "io", + "io.Seeker": "io", + "io.TeeReader": "io", + "io.WriteCloser": "io", + "io.WriteSeeker": "io", + "io.WriteString": "io", + "io.Writer": "io", + "io.WriterAt": "io", + "io.WriterTo": "io", + "iotest.DataErrReader": "testing/iotest", + "iotest.ErrTimeout": "testing/iotest", + "iotest.HalfReader": "testing/iotest", + "iotest.NewReadLogger": "testing/iotest", + "iotest.NewWriteLogger": "testing/iotest", + "iotest.OneByteReader": "testing/iotest", + "iotest.TimeoutReader": "testing/iotest", + "iotest.TruncateWriter": "testing/iotest", + "ioutil.Discard": "io/ioutil", + "ioutil.NopCloser": "io/ioutil", + "ioutil.ReadAll": "io/ioutil", + "ioutil.ReadDir": "io/ioutil", + "ioutil.ReadFile": "io/ioutil", + "ioutil.TempDir": "io/ioutil", + "ioutil.TempFile": "io/ioutil", + "ioutil.WriteFile": "io/ioutil", + "jpeg.Decode": "image/jpeg", + "jpeg.DecodeConfig": "image/jpeg", + "jpeg.DefaultQuality": "image/jpeg", + "jpeg.Encode": "image/jpeg", + "jpeg.FormatError": "image/jpeg", + "jpeg.Options": "image/jpeg", + "jpeg.Reader": "image/jpeg", + "jpeg.UnsupportedError": "image/jpeg", + "json.Compact": "encoding/json", + "json.Decoder": "encoding/json", + "json.Encoder": "encoding/json", + "json.HTMLEscape": "encoding/json", + "json.Indent": "encoding/json", + "json.InvalidUTF8Error": "encoding/json", + "json.InvalidUnmarshalError": "encoding/json", + "json.Marshal": "encoding/json", + "json.MarshalIndent": "encoding/json", + "json.Marshaler": "encoding/json", + "json.MarshalerError": "encoding/json", + "json.NewDecoder": "encoding/json", + "json.NewEncoder": "encoding/json", + "json.Number": "encoding/json", + "json.RawMessage": "encoding/json", + "json.SyntaxError": "encoding/json", + "json.Unmarshal": "encoding/json", + "json.UnmarshalFieldError": "encoding/json", + "json.UnmarshalTypeError": "encoding/json", + "json.Unmarshaler": "encoding/json", + "json.UnsupportedTypeError": "encoding/json", + "json.UnsupportedValueError": "encoding/json", + "jsonrpc.Dial": "net/rpc/jsonrpc", + "jsonrpc.NewClient": "net/rpc/jsonrpc", + "jsonrpc.NewClientCodec": "net/rpc/jsonrpc", + "jsonrpc.NewServerCodec": "net/rpc/jsonrpc", + "jsonrpc.ServeConn": "net/rpc/jsonrpc", + "list.Element": "container/list", + "list.List": "container/list", + "list.New": "container/list", + "log.Fatal": "log", + "log.Fatalf": "log", + "log.Fatalln": "log", + "log.Flags": "log", + "log.Ldate": "log", + "log.Llongfile": "log", + "log.Lmicroseconds": "log", + "log.Logger": "log", + "log.Lshortfile": "log", + "log.LstdFlags": "log", + "log.Ltime": "log", + "log.New": "log", + "log.Panic": "log", + "log.Panicf": "log", + "log.Panicln": "log", + "log.Prefix": "log", + "log.Print": "log", + "log.Printf": "log", + "log.Println": "log", + "log.SetFlags": "log", + "log.SetOutput": "log", + "log.SetPrefix": "log", + "lzw.LSB": "compress/lzw", + "lzw.MSB": "compress/lzw", + "lzw.NewReader": "compress/lzw", + "lzw.NewWriter": "compress/lzw", + "lzw.Order": "compress/lzw", + "macho.Cpu": "debug/macho", + "macho.Cpu386": "debug/macho", + "macho.CpuAmd64": "debug/macho", + "macho.Dylib": "debug/macho", + "macho.DylibCmd": "debug/macho", + "macho.Dysymtab": "debug/macho", + "macho.DysymtabCmd": "debug/macho", + "macho.File": "debug/macho", + "macho.FileHeader": "debug/macho", + "macho.FormatError": "debug/macho", + "macho.Load": "debug/macho", + "macho.LoadBytes": "debug/macho", + "macho.LoadCmd": "debug/macho", + "macho.LoadCmdDylib": "debug/macho", + "macho.LoadCmdDylinker": "debug/macho", + "macho.LoadCmdDysymtab": "debug/macho", + "macho.LoadCmdSegment": "debug/macho", + "macho.LoadCmdSegment64": "debug/macho", + "macho.LoadCmdSymtab": "debug/macho", + "macho.LoadCmdThread": "debug/macho", + "macho.LoadCmdUnixThread": "debug/macho", + "macho.Magic32": "debug/macho", + "macho.Magic64": "debug/macho", + "macho.NewFile": "debug/macho", + "macho.Nlist32": "debug/macho", + "macho.Nlist64": "debug/macho", + "macho.Open": "debug/macho", + "macho.Regs386": "debug/macho", + "macho.RegsAMD64": "debug/macho", + "macho.Section": "debug/macho", + "macho.Section32": "debug/macho", + "macho.Section64": "debug/macho", + "macho.SectionHeader": "debug/macho", + "macho.Segment": "debug/macho", + "macho.Segment32": "debug/macho", + "macho.Segment64": "debug/macho", + "macho.SegmentHeader": "debug/macho", + "macho.Symbol": "debug/macho", + "macho.Symtab": "debug/macho", + "macho.SymtabCmd": "debug/macho", + "macho.Thread": "debug/macho", + "macho.Type": "debug/macho", + "macho.TypeExec": "debug/macho", + "macho.TypeObj": "debug/macho", + "mail.Address": "net/mail", + "mail.ErrHeaderNotPresent": "net/mail", + "mail.Header": "net/mail", + "mail.Message": "net/mail", + "mail.ParseAddress": "net/mail", + "mail.ParseAddressList": "net/mail", + "mail.ReadMessage": "net/mail", + "math.Abs": "math", + "math.Acos": "math", + "math.Acosh": "math", + "math.Asin": "math", + "math.Asinh": "math", + "math.Atan": "math", + "math.Atan2": "math", + "math.Atanh": "math", + "math.Cbrt": "math", + "math.Ceil": "math", + "math.Copysign": "math", + "math.Cos": "math", + "math.Cosh": "math", + "math.Dim": "math", + "math.E": "math", + "math.Erf": "math", + "math.Erfc": "math", + "math.Exp": "math", + "math.Exp2": "math", + "math.Expm1": "math", + "math.Float32bits": "math", + "math.Float32frombits": "math", + "math.Float64bits": "math", + "math.Float64frombits": "math", + "math.Floor": "math", + "math.Frexp": "math", + "math.Gamma": "math", + "math.Hypot": "math", + "math.Ilogb": "math", + "math.Inf": "math", + "math.IsInf": "math", + "math.IsNaN": "math", + "math.J0": "math", + "math.J1": "math", + "math.Jn": "math", + "math.Ldexp": "math", + "math.Lgamma": "math", + "math.Ln10": "math", + "math.Ln2": "math", + "math.Log": "math", + "math.Log10": "math", + "math.Log10E": "math", + "math.Log1p": "math", + "math.Log2": "math", + "math.Log2E": "math", + "math.Logb": "math", + "math.Max": "math", + "math.MaxFloat32": "math", + "math.MaxFloat64": "math", + "math.MaxInt16": "math", + "math.MaxInt32": "math", + "math.MaxInt64": "math", + "math.MaxInt8": "math", + "math.MaxUint16": "math", + "math.MaxUint32": "math", + "math.MaxUint64": "math", + "math.MaxUint8": "math", + "math.Min": "math", + "math.MinInt16": "math", + "math.MinInt32": "math", + "math.MinInt64": "math", + "math.MinInt8": "math", + "math.Mod": "math", + "math.Modf": "math", + "math.NaN": "math", + "math.Nextafter": "math", + "math.Phi": "math", + "math.Pi": "math", + "math.Pow": "math", + "math.Pow10": "math", + "math.Remainder": "math", + "math.Signbit": "math", + "math.Sin": "math", + "math.Sincos": "math", + "math.Sinh": "math", + "math.SmallestNonzeroFloat32": "math", + "math.SmallestNonzeroFloat64": "math", + "math.Sqrt": "math", + "math.Sqrt2": "math", + "math.SqrtE": "math", + "math.SqrtPhi": "math", + "math.SqrtPi": "math", + "math.Tan": "math", + "math.Tanh": "math", + "math.Trunc": "math", + "math.Y0": "math", + "math.Y1": "math", + "math.Yn": "math", + "md5.BlockSize": "crypto/md5", + "md5.New": "crypto/md5", + "md5.Size": "crypto/md5", + "md5.Sum": "crypto/md5", + "mime.AddExtensionType": "mime", + "mime.FormatMediaType": "mime", + "mime.ParseMediaType": "mime", + "mime.TypeByExtension": "mime", + "multipart.File": "mime/multipart", + "multipart.FileHeader": "mime/multipart", + "multipart.Form": "mime/multipart", + "multipart.NewReader": "mime/multipart", + "multipart.NewWriter": "mime/multipart", + "multipart.Part": "mime/multipart", + "multipart.Reader": "mime/multipart", + "multipart.Writer": "mime/multipart", + "net.Addr": "net", + "net.AddrError": "net", + "net.CIDRMask": "net", + "net.Conn": "net", + "net.DNSConfigError": "net", + "net.DNSError": "net", + "net.Dial": "net", + "net.DialIP": "net", + "net.DialTCP": "net", + "net.DialTimeout": "net", + "net.DialUDP": "net", + "net.DialUnix": "net", + "net.Dialer": "net", + "net.ErrWriteToConnected": "net", + "net.Error": "net", + "net.FileConn": "net", + "net.FileListener": "net", + "net.FilePacketConn": "net", + "net.FlagBroadcast": "net", + "net.FlagLoopback": "net", + "net.FlagMulticast": "net", + "net.FlagPointToPoint": "net", + "net.FlagUp": "net", + "net.Flags": "net", + "net.HardwareAddr": "net", + "net.IP": "net", + "net.IPAddr": "net", + "net.IPConn": "net", + "net.IPMask": "net", + "net.IPNet": "net", + "net.IPv4": "net", + "net.IPv4Mask": "net", + "net.IPv4allrouter": "net", + "net.IPv4allsys": "net", + "net.IPv4bcast": "net", + "net.IPv4len": "net", + "net.IPv4zero": "net", + "net.IPv6interfacelocalallnodes": "net", + "net.IPv6len": "net", + "net.IPv6linklocalallnodes": "net", + "net.IPv6linklocalallrouters": "net", + "net.IPv6loopback": "net", + "net.IPv6unspecified": "net", + "net.IPv6zero": "net", + "net.Interface": "net", + "net.InterfaceAddrs": "net", + "net.InterfaceByIndex": "net", + "net.InterfaceByName": "net", + "net.Interfaces": "net", + "net.InvalidAddrError": "net", + "net.JoinHostPort": "net", + "net.Listen": "net", + "net.ListenIP": "net", + "net.ListenMulticastUDP": "net", + "net.ListenPacket": "net", + "net.ListenTCP": "net", + "net.ListenUDP": "net", + "net.ListenUnix": "net", + "net.ListenUnixgram": "net", + "net.Listener": "net", + "net.LookupAddr": "net", + "net.LookupCNAME": "net", + "net.LookupHost": "net", + "net.LookupIP": "net", + "net.LookupMX": "net", + "net.LookupNS": "net", + "net.LookupPort": "net", + "net.LookupSRV": "net", + "net.LookupTXT": "net", + "net.MX": "net", + "net.NS": "net", + "net.OpError": "net", + "net.PacketConn": "net", + "net.ParseCIDR": "net", + "net.ParseError": "net", + "net.ParseIP": "net", + "net.ParseMAC": "net", + "net.Pipe": "net", + "net.ResolveIPAddr": "net", + "net.ResolveTCPAddr": "net", + "net.ResolveUDPAddr": "net", + "net.ResolveUnixAddr": "net", + "net.SRV": "net", + "net.SplitHostPort": "net", + "net.TCPAddr": "net", + "net.TCPConn": "net", + "net.TCPListener": "net", + "net.UDPAddr": "net", + "net.UDPConn": "net", + "net.UnixAddr": "net", + "net.UnixConn": "net", + "net.UnixListener": "net", + "net.UnknownNetworkError": "net", + "os.Args": "os", + "os.Chdir": "os", + "os.Chmod": "os", + "os.Chown": "os", + "os.Chtimes": "os", + "os.Clearenv": "os", + "os.Create": "os", + "os.DevNull": "os", + "os.Environ": "os", + "os.ErrExist": "os", + "os.ErrInvalid": "os", + "os.ErrNotExist": "os", + "os.ErrPermission": "os", + "os.Exit": "os", + "os.Expand": "os", + "os.ExpandEnv": "os", + "os.File": "os", + "os.FileInfo": "os", + "os.FileMode": "os", + "os.FindProcess": "os", + "os.Getegid": "os", + "os.Getenv": "os", + "os.Geteuid": "os", + "os.Getgid": "os", + "os.Getgroups": "os", + "os.Getpagesize": "os", + "os.Getpid": "os", + "os.Getppid": "os", + "os.Getuid": "os", + "os.Getwd": "os", + "os.Hostname": "os", + "os.Interrupt": "os", + "os.IsExist": "os", + "os.IsNotExist": "os", + "os.IsPathSeparator": "os", + "os.IsPermission": "os", + "os.Kill": "os", + "os.Lchown": "os", + "os.Link": "os", + "os.LinkError": "os", + "os.Lstat": "os", + "os.Mkdir": "os", + "os.MkdirAll": "os", + "os.ModeAppend": "os", + "os.ModeCharDevice": "os", + "os.ModeDevice": "os", + "os.ModeDir": "os", + "os.ModeExclusive": "os", + "os.ModeNamedPipe": "os", + "os.ModePerm": "os", + "os.ModeSetgid": "os", + "os.ModeSetuid": "os", + "os.ModeSocket": "os", + "os.ModeSticky": "os", + "os.ModeSymlink": "os", + "os.ModeTemporary": "os", + "os.ModeType": "os", + "os.NewFile": "os", + "os.NewSyscallError": "os", + "os.O_APPEND": "os", + "os.O_CREATE": "os", + "os.O_EXCL": "os", + "os.O_RDONLY": "os", + "os.O_RDWR": "os", + "os.O_SYNC": "os", + "os.O_TRUNC": "os", + "os.O_WRONLY": "os", + "os.Open": "os", + "os.OpenFile": "os", + "os.PathError": "os", + "os.PathListSeparator": "os", + "os.PathSeparator": "os", + "os.Pipe": "os", + "os.ProcAttr": "os", + "os.Process": "os", + "os.ProcessState": "os", + "os.Readlink": "os", + "os.Remove": "os", + "os.RemoveAll": "os", + "os.Rename": "os", + "os.SEEK_CUR": "os", + "os.SEEK_END": "os", + "os.SEEK_SET": "os", + "os.SameFile": "os", + "os.Setenv": "os", + "os.Signal": "os", + "os.StartProcess": "os", + "os.Stat": "os", + "os.Stderr": "os", + "os.Stdin": "os", + "os.Stdout": "os", + "os.Symlink": "os", + "os.SyscallError": "os", + "os.TempDir": "os", + "os.Truncate": "os", + "palette.Plan9": "image/color/palette", + "palette.WebSafe": "image/color/palette", + "parse.ActionNode": "text/template/parse", + "parse.BoolNode": "text/template/parse", + "parse.BranchNode": "text/template/parse", + "parse.ChainNode": "text/template/parse", + "parse.CommandNode": "text/template/parse", + "parse.DotNode": "text/template/parse", + "parse.FieldNode": "text/template/parse", + "parse.IdentifierNode": "text/template/parse", + "parse.IfNode": "text/template/parse", + "parse.IsEmptyTree": "text/template/parse", + "parse.ListNode": "text/template/parse", + "parse.New": "text/template/parse", + "parse.NewIdentifier": "text/template/parse", + "parse.NilNode": "text/template/parse", + "parse.Node": "text/template/parse", + "parse.NodeAction": "text/template/parse", + "parse.NodeBool": "text/template/parse", + "parse.NodeChain": "text/template/parse", + "parse.NodeCommand": "text/template/parse", + "parse.NodeDot": "text/template/parse", + "parse.NodeField": "text/template/parse", + "parse.NodeIdentifier": "text/template/parse", + "parse.NodeIf": "text/template/parse", + "parse.NodeList": "text/template/parse", + "parse.NodeNil": "text/template/parse", + "parse.NodeNumber": "text/template/parse", + "parse.NodePipe": "text/template/parse", + "parse.NodeRange": "text/template/parse", + "parse.NodeString": "text/template/parse", + "parse.NodeTemplate": "text/template/parse", + "parse.NodeText": "text/template/parse", + "parse.NodeType": "text/template/parse", + "parse.NodeVariable": "text/template/parse", + "parse.NodeWith": "text/template/parse", + "parse.NumberNode": "text/template/parse", + "parse.Parse": "text/template/parse", + "parse.PipeNode": "text/template/parse", + "parse.Pos": "text/template/parse", + "parse.RangeNode": "text/template/parse", + "parse.StringNode": "text/template/parse", + "parse.TemplateNode": "text/template/parse", + "parse.TextNode": "text/template/parse", + "parse.Tree": "text/template/parse", + "parse.VariableNode": "text/template/parse", + "parse.WithNode": "text/template/parse", + "parser.AllErrors": "go/parser", + "parser.DeclarationErrors": "go/parser", + "parser.ImportsOnly": "go/parser", + "parser.Mode": "go/parser", + "parser.PackageClauseOnly": "go/parser", + "parser.ParseComments": "go/parser", + "parser.ParseDir": "go/parser", + "parser.ParseExpr": "go/parser", + "parser.ParseFile": "go/parser", + "parser.SpuriousErrors": "go/parser", + "parser.Trace": "go/parser", + "path.Base": "path", + "path.Clean": "path", + "path.Dir": "path", + "path.ErrBadPattern": "path", + "path.Ext": "path", + "path.IsAbs": "path", + "path.Join": "path", + "path.Match": "path", + "path.Split": "path", + "pe.COFFSymbol": "debug/pe", + "pe.COFFSymbolSize": "debug/pe", + "pe.File": "debug/pe", + "pe.FileHeader": "debug/pe", + "pe.FormatError": "debug/pe", + "pe.IMAGE_FILE_MACHINE_AM33": "debug/pe", + "pe.IMAGE_FILE_MACHINE_AMD64": "debug/pe", + "pe.IMAGE_FILE_MACHINE_ARM": "debug/pe", + "pe.IMAGE_FILE_MACHINE_EBC": "debug/pe", + "pe.IMAGE_FILE_MACHINE_I386": "debug/pe", + "pe.IMAGE_FILE_MACHINE_IA64": "debug/pe", + "pe.IMAGE_FILE_MACHINE_M32R": "debug/pe", + "pe.IMAGE_FILE_MACHINE_MIPS16": "debug/pe", + "pe.IMAGE_FILE_MACHINE_MIPSFPU": "debug/pe", + "pe.IMAGE_FILE_MACHINE_MIPSFPU16": "debug/pe", + "pe.IMAGE_FILE_MACHINE_POWERPC": "debug/pe", + "pe.IMAGE_FILE_MACHINE_POWERPCFP": "debug/pe", + "pe.IMAGE_FILE_MACHINE_R4000": "debug/pe", + "pe.IMAGE_FILE_MACHINE_SH3": "debug/pe", + "pe.IMAGE_FILE_MACHINE_SH3DSP": "debug/pe", + "pe.IMAGE_FILE_MACHINE_SH4": "debug/pe", + "pe.IMAGE_FILE_MACHINE_SH5": "debug/pe", + "pe.IMAGE_FILE_MACHINE_THUMB": "debug/pe", + "pe.IMAGE_FILE_MACHINE_UNKNOWN": "debug/pe", + "pe.IMAGE_FILE_MACHINE_WCEMIPSV2": "debug/pe", + "pe.ImportDirectory": "debug/pe", + "pe.NewFile": "debug/pe", + "pe.Open": "debug/pe", + "pe.Section": "debug/pe", + "pe.SectionHeader": "debug/pe", + "pe.SectionHeader32": "debug/pe", + "pe.Symbol": "debug/pe", + "pem.Block": "encoding/pem", + "pem.Decode": "encoding/pem", + "pem.Encode": "encoding/pem", + "pem.EncodeToMemory": "encoding/pem", + "pkix.AlgorithmIdentifier": "crypto/x509/pkix", + "pkix.AttributeTypeAndValue": "crypto/x509/pkix", + "pkix.CertificateList": "crypto/x509/pkix", + "pkix.Extension": "crypto/x509/pkix", + "pkix.Name": "crypto/x509/pkix", + "pkix.RDNSequence": "crypto/x509/pkix", + "pkix.RelativeDistinguishedNameSET": "crypto/x509/pkix", + "pkix.RevokedCertificate": "crypto/x509/pkix", + "pkix.TBSCertificateList": "crypto/x509/pkix", + "png.Decode": "image/png", + "png.DecodeConfig": "image/png", + "png.Encode": "image/png", + "png.FormatError": "image/png", + "png.UnsupportedError": "image/png", + "pprof.Cmdline": "net/http/pprof", + "pprof.Handler": "net/http/pprof", + "pprof.Index": "net/http/pprof", + "pprof.Lookup": "runtime/pprof", + "pprof.NewProfile": "runtime/pprof", + // "pprof.Profile" is ambiguous + "pprof.Profiles": "runtime/pprof", + "pprof.StartCPUProfile": "runtime/pprof", + "pprof.StopCPUProfile": "runtime/pprof", + "pprof.Symbol": "net/http/pprof", + "pprof.WriteHeapProfile": "runtime/pprof", + "printer.CommentedNode": "go/printer", + "printer.Config": "go/printer", + "printer.Fprint": "go/printer", + "printer.Mode": "go/printer", + "printer.RawFormat": "go/printer", + "printer.SourcePos": "go/printer", + "printer.TabIndent": "go/printer", + "printer.UseSpaces": "go/printer", + "quick.Check": "testing/quick", + "quick.CheckEqual": "testing/quick", + "quick.CheckEqualError": "testing/quick", + "quick.CheckError": "testing/quick", + "quick.Config": "testing/quick", + "quick.Generator": "testing/quick", + "quick.SetupError": "testing/quick", + "quick.Value": "testing/quick", + "rand.ExpFloat64": "math/rand", + "rand.Float32": "math/rand", + "rand.Float64": "math/rand", + // "rand.Int" is ambiguous + "rand.Int31": "math/rand", + "rand.Int31n": "math/rand", + "rand.Int63": "math/rand", + "rand.Int63n": "math/rand", + "rand.Intn": "math/rand", + "rand.New": "math/rand", + "rand.NewSource": "math/rand", + "rand.NewZipf": "math/rand", + "rand.NormFloat64": "math/rand", + "rand.Perm": "math/rand", + "rand.Prime": "crypto/rand", + "rand.Rand": "math/rand", + "rand.Read": "crypto/rand", + "rand.Reader": "crypto/rand", + "rand.Seed": "math/rand", + "rand.Source": "math/rand", + "rand.Uint32": "math/rand", + "rand.Zipf": "math/rand", + "rc4.Cipher": "crypto/rc4", + "rc4.KeySizeError": "crypto/rc4", + "rc4.NewCipher": "crypto/rc4", + "reflect.Append": "reflect", + "reflect.AppendSlice": "reflect", + "reflect.Array": "reflect", + "reflect.Bool": "reflect", + "reflect.BothDir": "reflect", + "reflect.Chan": "reflect", + "reflect.ChanDir": "reflect", + "reflect.ChanOf": "reflect", + "reflect.Complex128": "reflect", + "reflect.Complex64": "reflect", + "reflect.Copy": "reflect", + "reflect.DeepEqual": "reflect", + "reflect.Float32": "reflect", + "reflect.Float64": "reflect", + "reflect.Func": "reflect", + "reflect.Indirect": "reflect", + "reflect.Int": "reflect", + "reflect.Int16": "reflect", + "reflect.Int32": "reflect", + "reflect.Int64": "reflect", + "reflect.Int8": "reflect", + "reflect.Interface": "reflect", + "reflect.Invalid": "reflect", + "reflect.Kind": "reflect", + "reflect.MakeChan": "reflect", + "reflect.MakeFunc": "reflect", + "reflect.MakeMap": "reflect", + "reflect.MakeSlice": "reflect", + "reflect.Map": "reflect", + "reflect.MapOf": "reflect", + "reflect.Method": "reflect", + "reflect.New": "reflect", + "reflect.NewAt": "reflect", + "reflect.Ptr": "reflect", + "reflect.PtrTo": "reflect", + "reflect.RecvDir": "reflect", + "reflect.Select": "reflect", + "reflect.SelectCase": "reflect", + "reflect.SelectDefault": "reflect", + "reflect.SelectDir": "reflect", + "reflect.SelectRecv": "reflect", + "reflect.SelectSend": "reflect", + "reflect.SendDir": "reflect", + "reflect.Slice": "reflect", + "reflect.SliceHeader": "reflect", + "reflect.SliceOf": "reflect", + "reflect.String": "reflect", + "reflect.StringHeader": "reflect", + "reflect.Struct": "reflect", + "reflect.StructField": "reflect", + "reflect.StructTag": "reflect", + "reflect.TypeOf": "reflect", + "reflect.Uint": "reflect", + "reflect.Uint16": "reflect", + "reflect.Uint32": "reflect", + "reflect.Uint64": "reflect", + "reflect.Uint8": "reflect", + "reflect.Uintptr": "reflect", + "reflect.UnsafePointer": "reflect", + "reflect.Value": "reflect", + "reflect.ValueError": "reflect", + "reflect.ValueOf": "reflect", + "reflect.Zero": "reflect", + "regexp.Compile": "regexp", + "regexp.CompilePOSIX": "regexp", + "regexp.Match": "regexp", + "regexp.MatchReader": "regexp", + "regexp.MatchString": "regexp", + "regexp.MustCompile": "regexp", + "regexp.MustCompilePOSIX": "regexp", + "regexp.QuoteMeta": "regexp", + "regexp.Regexp": "regexp", + "ring.New": "container/ring", + "ring.Ring": "container/ring", + "rpc.Accept": "net/rpc", + "rpc.Call": "net/rpc", + "rpc.Client": "net/rpc", + "rpc.ClientCodec": "net/rpc", + "rpc.DefaultDebugPath": "net/rpc", + "rpc.DefaultRPCPath": "net/rpc", + "rpc.DefaultServer": "net/rpc", + "rpc.Dial": "net/rpc", + "rpc.DialHTTP": "net/rpc", + "rpc.DialHTTPPath": "net/rpc", + "rpc.ErrShutdown": "net/rpc", + "rpc.HandleHTTP": "net/rpc", + "rpc.NewClient": "net/rpc", + "rpc.NewClientWithCodec": "net/rpc", + "rpc.NewServer": "net/rpc", + "rpc.Register": "net/rpc", + "rpc.RegisterName": "net/rpc", + "rpc.Request": "net/rpc", + "rpc.Response": "net/rpc", + "rpc.ServeCodec": "net/rpc", + "rpc.ServeConn": "net/rpc", + "rpc.ServeRequest": "net/rpc", + "rpc.Server": "net/rpc", + "rpc.ServerCodec": "net/rpc", + "rpc.ServerError": "net/rpc", + "rsa.CRTValue": "crypto/rsa", + "rsa.DecryptOAEP": "crypto/rsa", + "rsa.DecryptPKCS1v15": "crypto/rsa", + "rsa.DecryptPKCS1v15SessionKey": "crypto/rsa", + "rsa.EncryptOAEP": "crypto/rsa", + "rsa.EncryptPKCS1v15": "crypto/rsa", + "rsa.ErrDecryption": "crypto/rsa", + "rsa.ErrMessageTooLong": "crypto/rsa", + "rsa.ErrVerification": "crypto/rsa", + "rsa.GenerateKey": "crypto/rsa", + "rsa.GenerateMultiPrimeKey": "crypto/rsa", + "rsa.PSSOptions": "crypto/rsa", + "rsa.PSSSaltLengthAuto": "crypto/rsa", + "rsa.PSSSaltLengthEqualsHash": "crypto/rsa", + "rsa.PrecomputedValues": "crypto/rsa", + "rsa.PrivateKey": "crypto/rsa", + "rsa.PublicKey": "crypto/rsa", + "rsa.SignPKCS1v15": "crypto/rsa", + "rsa.SignPSS": "crypto/rsa", + "rsa.VerifyPKCS1v15": "crypto/rsa", + "rsa.VerifyPSS": "crypto/rsa", + "runtime.BlockProfile": "runtime", + "runtime.BlockProfileRecord": "runtime", + "runtime.Breakpoint": "runtime", + "runtime.CPUProfile": "runtime", + "runtime.Caller": "runtime", + "runtime.Callers": "runtime", + "runtime.Compiler": "runtime", + "runtime.Error": "runtime", + "runtime.Func": "runtime", + "runtime.FuncForPC": "runtime", + "runtime.GC": "runtime", + "runtime.GOARCH": "runtime", + "runtime.GOMAXPROCS": "runtime", + "runtime.GOOS": "runtime", + "runtime.GOROOT": "runtime", + "runtime.Goexit": "runtime", + "runtime.GoroutineProfile": "runtime", + "runtime.Gosched": "runtime", + "runtime.LockOSThread": "runtime", + "runtime.MemProfile": "runtime", + "runtime.MemProfileRate": "runtime", + "runtime.MemProfileRecord": "runtime", + "runtime.MemStats": "runtime", + "runtime.NumCPU": "runtime", + "runtime.NumCgoCall": "runtime", + "runtime.NumGoroutine": "runtime", + "runtime.ReadMemStats": "runtime", + "runtime.SetBlockProfileRate": "runtime", + "runtime.SetCPUProfileRate": "runtime", + "runtime.SetFinalizer": "runtime", + "runtime.Stack": "runtime", + "runtime.StackRecord": "runtime", + "runtime.ThreadCreateProfile": "runtime", + "runtime.TypeAssertionError": "runtime", + "runtime.UnlockOSThread": "runtime", + "runtime.Version": "runtime", + "scanner.Char": "text/scanner", + "scanner.Comment": "text/scanner", + "scanner.EOF": "text/scanner", + "scanner.Error": "go/scanner", + "scanner.ErrorHandler": "go/scanner", + "scanner.ErrorList": "go/scanner", + "scanner.Float": "text/scanner", + "scanner.GoTokens": "text/scanner", + "scanner.GoWhitespace": "text/scanner", + "scanner.Ident": "text/scanner", + "scanner.Int": "text/scanner", + "scanner.Mode": "go/scanner", + "scanner.Position": "text/scanner", + "scanner.PrintError": "go/scanner", + "scanner.RawString": "text/scanner", + "scanner.ScanChars": "text/scanner", + // "scanner.ScanComments" is ambiguous + "scanner.ScanFloats": "text/scanner", + "scanner.ScanIdents": "text/scanner", + "scanner.ScanInts": "text/scanner", + "scanner.ScanRawStrings": "text/scanner", + "scanner.ScanStrings": "text/scanner", + // "scanner.Scanner" is ambiguous + "scanner.SkipComments": "text/scanner", + "scanner.String": "text/scanner", + "scanner.TokenString": "text/scanner", + "sha1.BlockSize": "crypto/sha1", + "sha1.New": "crypto/sha1", + "sha1.Size": "crypto/sha1", + "sha1.Sum": "crypto/sha1", + "sha256.BlockSize": "crypto/sha256", + "sha256.New": "crypto/sha256", + "sha256.New224": "crypto/sha256", + "sha256.Size": "crypto/sha256", + "sha256.Size224": "crypto/sha256", + "sha256.Sum224": "crypto/sha256", + "sha256.Sum256": "crypto/sha256", + "sha512.BlockSize": "crypto/sha512", + "sha512.New": "crypto/sha512", + "sha512.New384": "crypto/sha512", + "sha512.Size": "crypto/sha512", + "sha512.Size384": "crypto/sha512", + "sha512.Sum384": "crypto/sha512", + "sha512.Sum512": "crypto/sha512", + "signal.Notify": "os/signal", + "signal.Stop": "os/signal", + "smtp.Auth": "net/smtp", + "smtp.CRAMMD5Auth": "net/smtp", + "smtp.Client": "net/smtp", + "smtp.Dial": "net/smtp", + "smtp.NewClient": "net/smtp", + "smtp.PlainAuth": "net/smtp", + "smtp.SendMail": "net/smtp", + "smtp.ServerInfo": "net/smtp", + "sort.Float64Slice": "sort", + "sort.Float64s": "sort", + "sort.Float64sAreSorted": "sort", + "sort.IntSlice": "sort", + "sort.Interface": "sort", + "sort.Ints": "sort", + "sort.IntsAreSorted": "sort", + "sort.IsSorted": "sort", + "sort.Reverse": "sort", + "sort.Search": "sort", + "sort.SearchFloat64s": "sort", + "sort.SearchInts": "sort", + "sort.SearchStrings": "sort", + "sort.Sort": "sort", + "sort.Stable": "sort", + "sort.StringSlice": "sort", + "sort.Strings": "sort", + "sort.StringsAreSorted": "sort", + "sql.DB": "database/sql", + "sql.ErrNoRows": "database/sql", + "sql.ErrTxDone": "database/sql", + "sql.NullBool": "database/sql", + "sql.NullFloat64": "database/sql", + "sql.NullInt64": "database/sql", + "sql.NullString": "database/sql", + "sql.Open": "database/sql", + "sql.RawBytes": "database/sql", + "sql.Register": "database/sql", + "sql.Result": "database/sql", + "sql.Row": "database/sql", + "sql.Rows": "database/sql", + "sql.Scanner": "database/sql", + "sql.Stmt": "database/sql", + "sql.Tx": "database/sql", + "strconv.AppendBool": "strconv", + "strconv.AppendFloat": "strconv", + "strconv.AppendInt": "strconv", + "strconv.AppendQuote": "strconv", + "strconv.AppendQuoteRune": "strconv", + "strconv.AppendQuoteRuneToASCII": "strconv", + "strconv.AppendQuoteToASCII": "strconv", + "strconv.AppendUint": "strconv", + "strconv.Atoi": "strconv", + "strconv.CanBackquote": "strconv", + "strconv.ErrRange": "strconv", + "strconv.ErrSyntax": "strconv", + "strconv.FormatBool": "strconv", + "strconv.FormatFloat": "strconv", + "strconv.FormatInt": "strconv", + "strconv.FormatUint": "strconv", + "strconv.IntSize": "strconv", + "strconv.IsPrint": "strconv", + "strconv.Itoa": "strconv", + "strconv.NumError": "strconv", + "strconv.ParseBool": "strconv", + "strconv.ParseFloat": "strconv", + "strconv.ParseInt": "strconv", + "strconv.ParseUint": "strconv", + "strconv.Quote": "strconv", + "strconv.QuoteRune": "strconv", + "strconv.QuoteRuneToASCII": "strconv", + "strconv.QuoteToASCII": "strconv", + "strconv.Unquote": "strconv", + "strconv.UnquoteChar": "strconv", + "strings.Contains": "strings", + "strings.ContainsAny": "strings", + "strings.ContainsRune": "strings", + "strings.Count": "strings", + "strings.EqualFold": "strings", + "strings.Fields": "strings", + "strings.FieldsFunc": "strings", + "strings.HasPrefix": "strings", + "strings.HasSuffix": "strings", + "strings.Index": "strings", + "strings.IndexAny": "strings", + "strings.IndexByte": "strings", + "strings.IndexFunc": "strings", + "strings.IndexRune": "strings", + "strings.Join": "strings", + "strings.LastIndex": "strings", + "strings.LastIndexAny": "strings", + "strings.LastIndexFunc": "strings", + "strings.Map": "strings", + "strings.NewReader": "strings", + "strings.NewReplacer": "strings", + "strings.Reader": "strings", + "strings.Repeat": "strings", + "strings.Replace": "strings", + "strings.Replacer": "strings", + "strings.Split": "strings", + "strings.SplitAfter": "strings", + "strings.SplitAfterN": "strings", + "strings.SplitN": "strings", + "strings.Title": "strings", + "strings.ToLower": "strings", + "strings.ToLowerSpecial": "strings", + "strings.ToTitle": "strings", + "strings.ToTitleSpecial": "strings", + "strings.ToUpper": "strings", + "strings.ToUpperSpecial": "strings", + "strings.Trim": "strings", + "strings.TrimFunc": "strings", + "strings.TrimLeft": "strings", + "strings.TrimLeftFunc": "strings", + "strings.TrimPrefix": "strings", + "strings.TrimRight": "strings", + "strings.TrimRightFunc": "strings", + "strings.TrimSpace": "strings", + "strings.TrimSuffix": "strings", + "subtle.ConstantTimeByteEq": "crypto/subtle", + "subtle.ConstantTimeCompare": "crypto/subtle", + "subtle.ConstantTimeCopy": "crypto/subtle", + "subtle.ConstantTimeEq": "crypto/subtle", + "subtle.ConstantTimeLessOrEq": "crypto/subtle", + "subtle.ConstantTimeSelect": "crypto/subtle", + "suffixarray.Index": "index/suffixarray", + "suffixarray.New": "index/suffixarray", + "sync.Cond": "sync", + "sync.Locker": "sync", + "sync.Mutex": "sync", + "sync.NewCond": "sync", + "sync.Once": "sync", + "sync.RWMutex": "sync", + "sync.WaitGroup": "sync", + "syntax.ClassNL": "regexp/syntax", + "syntax.Compile": "regexp/syntax", + "syntax.DotNL": "regexp/syntax", + "syntax.EmptyBeginLine": "regexp/syntax", + "syntax.EmptyBeginText": "regexp/syntax", + "syntax.EmptyEndLine": "regexp/syntax", + "syntax.EmptyEndText": "regexp/syntax", + "syntax.EmptyNoWordBoundary": "regexp/syntax", + "syntax.EmptyOp": "regexp/syntax", + "syntax.EmptyOpContext": "regexp/syntax", + "syntax.EmptyWordBoundary": "regexp/syntax", + "syntax.ErrInternalError": "regexp/syntax", + "syntax.ErrInvalidCharClass": "regexp/syntax", + "syntax.ErrInvalidCharRange": "regexp/syntax", + "syntax.ErrInvalidEscape": "regexp/syntax", + "syntax.ErrInvalidNamedCapture": "regexp/syntax", + "syntax.ErrInvalidPerlOp": "regexp/syntax", + "syntax.ErrInvalidRepeatOp": "regexp/syntax", + "syntax.ErrInvalidRepeatSize": "regexp/syntax", + "syntax.ErrInvalidUTF8": "regexp/syntax", + "syntax.ErrMissingBracket": "regexp/syntax", + "syntax.ErrMissingParen": "regexp/syntax", + "syntax.ErrMissingRepeatArgument": "regexp/syntax", + "syntax.ErrTrailingBackslash": "regexp/syntax", + "syntax.ErrUnexpectedParen": "regexp/syntax", + "syntax.Error": "regexp/syntax", + "syntax.ErrorCode": "regexp/syntax", + "syntax.Flags": "regexp/syntax", + "syntax.FoldCase": "regexp/syntax", + "syntax.Inst": "regexp/syntax", + "syntax.InstAlt": "regexp/syntax", + "syntax.InstAltMatch": "regexp/syntax", + "syntax.InstCapture": "regexp/syntax", + "syntax.InstEmptyWidth": "regexp/syntax", + "syntax.InstFail": "regexp/syntax", + "syntax.InstMatch": "regexp/syntax", + "syntax.InstNop": "regexp/syntax", + "syntax.InstOp": "regexp/syntax", + "syntax.InstRune": "regexp/syntax", + "syntax.InstRune1": "regexp/syntax", + "syntax.InstRuneAny": "regexp/syntax", + "syntax.InstRuneAnyNotNL": "regexp/syntax", + "syntax.IsWordChar": "regexp/syntax", + "syntax.Literal": "regexp/syntax", + "syntax.MatchNL": "regexp/syntax", + "syntax.NonGreedy": "regexp/syntax", + "syntax.OneLine": "regexp/syntax", + "syntax.Op": "regexp/syntax", + "syntax.OpAlternate": "regexp/syntax", + "syntax.OpAnyChar": "regexp/syntax", + "syntax.OpAnyCharNotNL": "regexp/syntax", + "syntax.OpBeginLine": "regexp/syntax", + "syntax.OpBeginText": "regexp/syntax", + "syntax.OpCapture": "regexp/syntax", + "syntax.OpCharClass": "regexp/syntax", + "syntax.OpConcat": "regexp/syntax", + "syntax.OpEmptyMatch": "regexp/syntax", + "syntax.OpEndLine": "regexp/syntax", + "syntax.OpEndText": "regexp/syntax", + "syntax.OpLiteral": "regexp/syntax", + "syntax.OpNoMatch": "regexp/syntax", + "syntax.OpNoWordBoundary": "regexp/syntax", + "syntax.OpPlus": "regexp/syntax", + "syntax.OpQuest": "regexp/syntax", + "syntax.OpRepeat": "regexp/syntax", + "syntax.OpStar": "regexp/syntax", + "syntax.OpWordBoundary": "regexp/syntax", + "syntax.POSIX": "regexp/syntax", + "syntax.Parse": "regexp/syntax", + "syntax.Perl": "regexp/syntax", + "syntax.PerlX": "regexp/syntax", + "syntax.Prog": "regexp/syntax", + "syntax.Regexp": "regexp/syntax", + "syntax.Simple": "regexp/syntax", + "syntax.UnicodeGroups": "regexp/syntax", + "syntax.WasDollar": "regexp/syntax", + "syscall.AF_ALG": "syscall", + "syscall.AF_APPLETALK": "syscall", + "syscall.AF_ARP": "syscall", + "syscall.AF_ASH": "syscall", + "syscall.AF_ATM": "syscall", + "syscall.AF_ATMPVC": "syscall", + "syscall.AF_ATMSVC": "syscall", + "syscall.AF_AX25": "syscall", + "syscall.AF_BLUETOOTH": "syscall", + "syscall.AF_BRIDGE": "syscall", + "syscall.AF_CAIF": "syscall", + "syscall.AF_CAN": "syscall", + "syscall.AF_CCITT": "syscall", + "syscall.AF_CHAOS": "syscall", + "syscall.AF_CNT": "syscall", + "syscall.AF_COIP": "syscall", + "syscall.AF_DATAKIT": "syscall", + "syscall.AF_DECnet": "syscall", + "syscall.AF_DLI": "syscall", + "syscall.AF_E164": "syscall", + "syscall.AF_ECMA": "syscall", + "syscall.AF_ECONET": "syscall", + "syscall.AF_ENCAP": "syscall", + "syscall.AF_FILE": "syscall", + "syscall.AF_HYLINK": "syscall", + "syscall.AF_IEEE80211": "syscall", + "syscall.AF_IEEE802154": "syscall", + "syscall.AF_IMPLINK": "syscall", + "syscall.AF_INET": "syscall", + "syscall.AF_INET6": "syscall", + "syscall.AF_IPX": "syscall", + "syscall.AF_IRDA": "syscall", + "syscall.AF_ISDN": "syscall", + "syscall.AF_ISO": "syscall", + "syscall.AF_IUCV": "syscall", + "syscall.AF_KEY": "syscall", + "syscall.AF_LAT": "syscall", + "syscall.AF_LINK": "syscall", + "syscall.AF_LLC": "syscall", + "syscall.AF_LOCAL": "syscall", + "syscall.AF_MAX": "syscall", + "syscall.AF_MPLS": "syscall", + "syscall.AF_NATM": "syscall", + "syscall.AF_NDRV": "syscall", + "syscall.AF_NETBEUI": "syscall", + "syscall.AF_NETBIOS": "syscall", + "syscall.AF_NETGRAPH": "syscall", + "syscall.AF_NETLINK": "syscall", + "syscall.AF_NETROM": "syscall", + "syscall.AF_NS": "syscall", + "syscall.AF_OROUTE": "syscall", + "syscall.AF_OSI": "syscall", + "syscall.AF_PACKET": "syscall", + "syscall.AF_PHONET": "syscall", + "syscall.AF_PPP": "syscall", + "syscall.AF_PPPOX": "syscall", + "syscall.AF_PUP": "syscall", + "syscall.AF_RDS": "syscall", + "syscall.AF_RESERVED_36": "syscall", + "syscall.AF_ROSE": "syscall", + "syscall.AF_ROUTE": "syscall", + "syscall.AF_RXRPC": "syscall", + "syscall.AF_SCLUSTER": "syscall", + "syscall.AF_SECURITY": "syscall", + "syscall.AF_SIP": "syscall", + "syscall.AF_SLOW": "syscall", + "syscall.AF_SNA": "syscall", + "syscall.AF_SYSTEM": "syscall", + "syscall.AF_TIPC": "syscall", + "syscall.AF_UNIX": "syscall", + "syscall.AF_UNSPEC": "syscall", + "syscall.AF_VENDOR00": "syscall", + "syscall.AF_VENDOR01": "syscall", + "syscall.AF_VENDOR02": "syscall", + "syscall.AF_VENDOR03": "syscall", + "syscall.AF_VENDOR04": "syscall", + "syscall.AF_VENDOR05": "syscall", + "syscall.AF_VENDOR06": "syscall", + "syscall.AF_VENDOR07": "syscall", + "syscall.AF_VENDOR08": "syscall", + "syscall.AF_VENDOR09": "syscall", + "syscall.AF_VENDOR10": "syscall", + "syscall.AF_VENDOR11": "syscall", + "syscall.AF_VENDOR12": "syscall", + "syscall.AF_VENDOR13": "syscall", + "syscall.AF_VENDOR14": "syscall", + "syscall.AF_VENDOR15": "syscall", + "syscall.AF_VENDOR16": "syscall", + "syscall.AF_VENDOR17": "syscall", + "syscall.AF_VENDOR18": "syscall", + "syscall.AF_VENDOR19": "syscall", + "syscall.AF_VENDOR20": "syscall", + "syscall.AF_VENDOR21": "syscall", + "syscall.AF_VENDOR22": "syscall", + "syscall.AF_VENDOR23": "syscall", + "syscall.AF_VENDOR24": "syscall", + "syscall.AF_VENDOR25": "syscall", + "syscall.AF_VENDOR26": "syscall", + "syscall.AF_VENDOR27": "syscall", + "syscall.AF_VENDOR28": "syscall", + "syscall.AF_VENDOR29": "syscall", + "syscall.AF_VENDOR30": "syscall", + "syscall.AF_VENDOR31": "syscall", + "syscall.AF_VENDOR32": "syscall", + "syscall.AF_VENDOR33": "syscall", + "syscall.AF_VENDOR34": "syscall", + "syscall.AF_VENDOR35": "syscall", + "syscall.AF_VENDOR36": "syscall", + "syscall.AF_VENDOR37": "syscall", + "syscall.AF_VENDOR38": "syscall", + "syscall.AF_VENDOR39": "syscall", + "syscall.AF_VENDOR40": "syscall", + "syscall.AF_VENDOR41": "syscall", + "syscall.AF_VENDOR42": "syscall", + "syscall.AF_VENDOR43": "syscall", + "syscall.AF_VENDOR44": "syscall", + "syscall.AF_VENDOR45": "syscall", + "syscall.AF_VENDOR46": "syscall", + "syscall.AF_VENDOR47": "syscall", + "syscall.AF_WANPIPE": "syscall", + "syscall.AF_X25": "syscall", + "syscall.AI_CANONNAME": "syscall", + "syscall.AI_NUMERICHOST": "syscall", + "syscall.AI_PASSIVE": "syscall", + "syscall.APPLICATION_ERROR": "syscall", + "syscall.ARPHRD_ADAPT": "syscall", + "syscall.ARPHRD_APPLETLK": "syscall", + "syscall.ARPHRD_ARCNET": "syscall", + "syscall.ARPHRD_ASH": "syscall", + "syscall.ARPHRD_ATM": "syscall", + "syscall.ARPHRD_AX25": "syscall", + "syscall.ARPHRD_BIF": "syscall", + "syscall.ARPHRD_CHAOS": "syscall", + "syscall.ARPHRD_CISCO": "syscall", + "syscall.ARPHRD_CSLIP": "syscall", + "syscall.ARPHRD_CSLIP6": "syscall", + "syscall.ARPHRD_DDCMP": "syscall", + "syscall.ARPHRD_DLCI": "syscall", + "syscall.ARPHRD_ECONET": "syscall", + "syscall.ARPHRD_EETHER": "syscall", + "syscall.ARPHRD_ETHER": "syscall", + "syscall.ARPHRD_EUI64": "syscall", + "syscall.ARPHRD_FCAL": "syscall", + "syscall.ARPHRD_FCFABRIC": "syscall", + "syscall.ARPHRD_FCPL": "syscall", + "syscall.ARPHRD_FCPP": "syscall", + "syscall.ARPHRD_FDDI": "syscall", + "syscall.ARPHRD_FRAD": "syscall", + "syscall.ARPHRD_FRELAY": "syscall", + "syscall.ARPHRD_HDLC": "syscall", + "syscall.ARPHRD_HIPPI": "syscall", + "syscall.ARPHRD_HWX25": "syscall", + "syscall.ARPHRD_IEEE1394": "syscall", + "syscall.ARPHRD_IEEE802": "syscall", + "syscall.ARPHRD_IEEE80211": "syscall", + "syscall.ARPHRD_IEEE80211_PRISM": "syscall", + "syscall.ARPHRD_IEEE80211_RADIOTAP": "syscall", + "syscall.ARPHRD_IEEE802154": "syscall", + "syscall.ARPHRD_IEEE802154_PHY": "syscall", + "syscall.ARPHRD_IEEE802_TR": "syscall", + "syscall.ARPHRD_INFINIBAND": "syscall", + "syscall.ARPHRD_IPDDP": "syscall", + "syscall.ARPHRD_IPGRE": "syscall", + "syscall.ARPHRD_IRDA": "syscall", + "syscall.ARPHRD_LAPB": "syscall", + "syscall.ARPHRD_LOCALTLK": "syscall", + "syscall.ARPHRD_LOOPBACK": "syscall", + "syscall.ARPHRD_METRICOM": "syscall", + "syscall.ARPHRD_NETROM": "syscall", + "syscall.ARPHRD_NONE": "syscall", + "syscall.ARPHRD_PIMREG": "syscall", + "syscall.ARPHRD_PPP": "syscall", + "syscall.ARPHRD_PRONET": "syscall", + "syscall.ARPHRD_RAWHDLC": "syscall", + "syscall.ARPHRD_ROSE": "syscall", + "syscall.ARPHRD_RSRVD": "syscall", + "syscall.ARPHRD_SIT": "syscall", + "syscall.ARPHRD_SKIP": "syscall", + "syscall.ARPHRD_SLIP": "syscall", + "syscall.ARPHRD_SLIP6": "syscall", + "syscall.ARPHRD_STRIP": "syscall", + "syscall.ARPHRD_TUNNEL": "syscall", + "syscall.ARPHRD_TUNNEL6": "syscall", + "syscall.ARPHRD_VOID": "syscall", + "syscall.ARPHRD_X25": "syscall", + "syscall.AUTHTYPE_CLIENT": "syscall", + "syscall.AUTHTYPE_SERVER": "syscall", + "syscall.Accept": "syscall", + "syscall.Accept4": "syscall", + "syscall.AcceptEx": "syscall", + "syscall.Access": "syscall", + "syscall.Acct": "syscall", + "syscall.AddrinfoW": "syscall", + "syscall.Adjtime": "syscall", + "syscall.Adjtimex": "syscall", + "syscall.AttachLsf": "syscall", + "syscall.B0": "syscall", + "syscall.B1000000": "syscall", + "syscall.B110": "syscall", + "syscall.B115200": "syscall", + "syscall.B1152000": "syscall", + "syscall.B1200": "syscall", + "syscall.B134": "syscall", + "syscall.B14400": "syscall", + "syscall.B150": "syscall", + "syscall.B1500000": "syscall", + "syscall.B1800": "syscall", + "syscall.B19200": "syscall", + "syscall.B200": "syscall", + "syscall.B2000000": "syscall", + "syscall.B230400": "syscall", + "syscall.B2400": "syscall", + "syscall.B2500000": "syscall", + "syscall.B28800": "syscall", + "syscall.B300": "syscall", + "syscall.B3000000": "syscall", + "syscall.B3500000": "syscall", + "syscall.B38400": "syscall", + "syscall.B4000000": "syscall", + "syscall.B460800": "syscall", + "syscall.B4800": "syscall", + "syscall.B50": "syscall", + "syscall.B500000": "syscall", + "syscall.B57600": "syscall", + "syscall.B576000": "syscall", + "syscall.B600": "syscall", + "syscall.B7200": "syscall", + "syscall.B75": "syscall", + "syscall.B76800": "syscall", + "syscall.B921600": "syscall", + "syscall.B9600": "syscall", + "syscall.BASE_PROTOCOL": "syscall", + "syscall.BIOCFEEDBACK": "syscall", + "syscall.BIOCFLUSH": "syscall", + "syscall.BIOCGBLEN": "syscall", + "syscall.BIOCGDIRECTION": "syscall", + "syscall.BIOCGDIRFILT": "syscall", + "syscall.BIOCGDLT": "syscall", + "syscall.BIOCGDLTLIST": "syscall", + "syscall.BIOCGETBUFMODE": "syscall", + "syscall.BIOCGETIF": "syscall", + "syscall.BIOCGETZMAX": "syscall", + "syscall.BIOCGFEEDBACK": "syscall", + "syscall.BIOCGFILDROP": "syscall", + "syscall.BIOCGHDRCMPLT": "syscall", + "syscall.BIOCGRSIG": "syscall", + "syscall.BIOCGRTIMEOUT": "syscall", + "syscall.BIOCGSEESENT": "syscall", + "syscall.BIOCGSTATS": "syscall", + "syscall.BIOCGSTATSOLD": "syscall", + "syscall.BIOCGTSTAMP": "syscall", + "syscall.BIOCIMMEDIATE": "syscall", + "syscall.BIOCLOCK": "syscall", + "syscall.BIOCPROMISC": "syscall", + "syscall.BIOCROTZBUF": "syscall", + "syscall.BIOCSBLEN": "syscall", + "syscall.BIOCSDIRECTION": "syscall", + "syscall.BIOCSDIRFILT": "syscall", + "syscall.BIOCSDLT": "syscall", + "syscall.BIOCSETBUFMODE": "syscall", + "syscall.BIOCSETF": "syscall", + "syscall.BIOCSETFNR": "syscall", + "syscall.BIOCSETIF": "syscall", + "syscall.BIOCSETWF": "syscall", + "syscall.BIOCSETZBUF": "syscall", + "syscall.BIOCSFEEDBACK": "syscall", + "syscall.BIOCSFILDROP": "syscall", + "syscall.BIOCSHDRCMPLT": "syscall", + "syscall.BIOCSRSIG": "syscall", + "syscall.BIOCSRTIMEOUT": "syscall", + "syscall.BIOCSSEESENT": "syscall", + "syscall.BIOCSTCPF": "syscall", + "syscall.BIOCSTSTAMP": "syscall", + "syscall.BIOCSUDPF": "syscall", + "syscall.BIOCVERSION": "syscall", + "syscall.BPF_A": "syscall", + "syscall.BPF_ABS": "syscall", + "syscall.BPF_ADD": "syscall", + "syscall.BPF_ALIGNMENT": "syscall", + "syscall.BPF_ALIGNMENT32": "syscall", + "syscall.BPF_ALU": "syscall", + "syscall.BPF_AND": "syscall", + "syscall.BPF_B": "syscall", + "syscall.BPF_BUFMODE_BUFFER": "syscall", + "syscall.BPF_BUFMODE_ZBUF": "syscall", + "syscall.BPF_DFLTBUFSIZE": "syscall", + "syscall.BPF_DIRECTION_IN": "syscall", + "syscall.BPF_DIRECTION_OUT": "syscall", + "syscall.BPF_DIV": "syscall", + "syscall.BPF_H": "syscall", + "syscall.BPF_IMM": "syscall", + "syscall.BPF_IND": "syscall", + "syscall.BPF_JA": "syscall", + "syscall.BPF_JEQ": "syscall", + "syscall.BPF_JGE": "syscall", + "syscall.BPF_JGT": "syscall", + "syscall.BPF_JMP": "syscall", + "syscall.BPF_JSET": "syscall", + "syscall.BPF_K": "syscall", + "syscall.BPF_LD": "syscall", + "syscall.BPF_LDX": "syscall", + "syscall.BPF_LEN": "syscall", + "syscall.BPF_LSH": "syscall", + "syscall.BPF_MAJOR_VERSION": "syscall", + "syscall.BPF_MAXBUFSIZE": "syscall", + "syscall.BPF_MAXINSNS": "syscall", + "syscall.BPF_MEM": "syscall", + "syscall.BPF_MEMWORDS": "syscall", + "syscall.BPF_MINBUFSIZE": "syscall", + "syscall.BPF_MINOR_VERSION": "syscall", + "syscall.BPF_MISC": "syscall", + "syscall.BPF_MSH": "syscall", + "syscall.BPF_MUL": "syscall", + "syscall.BPF_NEG": "syscall", + "syscall.BPF_OR": "syscall", + "syscall.BPF_RELEASE": "syscall", + "syscall.BPF_RET": "syscall", + "syscall.BPF_RSH": "syscall", + "syscall.BPF_ST": "syscall", + "syscall.BPF_STX": "syscall", + "syscall.BPF_SUB": "syscall", + "syscall.BPF_TAX": "syscall", + "syscall.BPF_TXA": "syscall", + "syscall.BPF_T_BINTIME": "syscall", + "syscall.BPF_T_BINTIME_FAST": "syscall", + "syscall.BPF_T_BINTIME_MONOTONIC": "syscall", + "syscall.BPF_T_BINTIME_MONOTONIC_FAST": "syscall", + "syscall.BPF_T_FAST": "syscall", + "syscall.BPF_T_FLAG_MASK": "syscall", + "syscall.BPF_T_FORMAT_MASK": "syscall", + "syscall.BPF_T_MICROTIME": "syscall", + "syscall.BPF_T_MICROTIME_FAST": "syscall", + "syscall.BPF_T_MICROTIME_MONOTONIC": "syscall", + "syscall.BPF_T_MICROTIME_MONOTONIC_FAST": "syscall", + "syscall.BPF_T_MONOTONIC": "syscall", + "syscall.BPF_T_MONOTONIC_FAST": "syscall", + "syscall.BPF_T_NANOTIME": "syscall", + "syscall.BPF_T_NANOTIME_FAST": "syscall", + "syscall.BPF_T_NANOTIME_MONOTONIC": "syscall", + "syscall.BPF_T_NANOTIME_MONOTONIC_FAST": "syscall", + "syscall.BPF_T_NONE": "syscall", + "syscall.BPF_T_NORMAL": "syscall", + "syscall.BPF_W": "syscall", + "syscall.BPF_X": "syscall", + "syscall.BRKINT": "syscall", + "syscall.Bind": "syscall", + "syscall.BindToDevice": "syscall", + "syscall.BpfBuflen": "syscall", + "syscall.BpfDatalink": "syscall", + "syscall.BpfHdr": "syscall", + "syscall.BpfHeadercmpl": "syscall", + "syscall.BpfInsn": "syscall", + "syscall.BpfInterface": "syscall", + "syscall.BpfJump": "syscall", + "syscall.BpfProgram": "syscall", + "syscall.BpfStat": "syscall", + "syscall.BpfStats": "syscall", + "syscall.BpfStmt": "syscall", + "syscall.BpfTimeout": "syscall", + "syscall.BpfTimeval": "syscall", + "syscall.BpfVersion": "syscall", + "syscall.BpfZbuf": "syscall", + "syscall.BpfZbufHeader": "syscall", + "syscall.ByHandleFileInformation": "syscall", + "syscall.BytePtrFromString": "syscall", + "syscall.ByteSliceFromString": "syscall", + "syscall.CCR0_FLUSH": "syscall", + "syscall.CERT_CHAIN_POLICY_AUTHENTICODE": "syscall", + "syscall.CERT_CHAIN_POLICY_AUTHENTICODE_TS": "syscall", + "syscall.CERT_CHAIN_POLICY_BASE": "syscall", + "syscall.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": "syscall", + "syscall.CERT_CHAIN_POLICY_EV": "syscall", + "syscall.CERT_CHAIN_POLICY_MICROSOFT_ROOT": "syscall", + "syscall.CERT_CHAIN_POLICY_NT_AUTH": "syscall", + "syscall.CERT_CHAIN_POLICY_SSL": "syscall", + "syscall.CERT_E_CN_NO_MATCH": "syscall", + "syscall.CERT_E_EXPIRED": "syscall", + "syscall.CERT_E_PURPOSE": "syscall", + "syscall.CERT_E_ROLE": "syscall", + "syscall.CERT_E_UNTRUSTEDROOT": "syscall", + "syscall.CERT_STORE_ADD_ALWAYS": "syscall", + "syscall.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": "syscall", + "syscall.CERT_STORE_PROV_MEMORY": "syscall", + "syscall.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": "syscall", + "syscall.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": "syscall", + "syscall.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": "syscall", + "syscall.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": "syscall", + "syscall.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": "syscall", + "syscall.CERT_TRUST_INVALID_BASIC_CONSTRAINTS": "syscall", + "syscall.CERT_TRUST_INVALID_EXTENSION": "syscall", + "syscall.CERT_TRUST_INVALID_NAME_CONSTRAINTS": "syscall", + "syscall.CERT_TRUST_INVALID_POLICY_CONSTRAINTS": "syscall", + "syscall.CERT_TRUST_IS_CYCLIC": "syscall", + "syscall.CERT_TRUST_IS_EXPLICIT_DISTRUST": "syscall", + "syscall.CERT_TRUST_IS_NOT_SIGNATURE_VALID": "syscall", + "syscall.CERT_TRUST_IS_NOT_TIME_VALID": "syscall", + "syscall.CERT_TRUST_IS_NOT_VALID_FOR_USAGE": "syscall", + "syscall.CERT_TRUST_IS_OFFLINE_REVOCATION": "syscall", + "syscall.CERT_TRUST_IS_REVOKED": "syscall", + "syscall.CERT_TRUST_IS_UNTRUSTED_ROOT": "syscall", + "syscall.CERT_TRUST_NO_ERROR": "syscall", + "syscall.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": "syscall", + "syscall.CERT_TRUST_REVOCATION_STATUS_UNKNOWN": "syscall", + "syscall.CFLUSH": "syscall", + "syscall.CLOCAL": "syscall", + "syscall.CLONE_CHILD_CLEARTID": "syscall", + "syscall.CLONE_CHILD_SETTID": "syscall", + "syscall.CLONE_DETACHED": "syscall", + "syscall.CLONE_FILES": "syscall", + "syscall.CLONE_FS": "syscall", + "syscall.CLONE_IO": "syscall", + "syscall.CLONE_NEWIPC": "syscall", + "syscall.CLONE_NEWNET": "syscall", + "syscall.CLONE_NEWNS": "syscall", + "syscall.CLONE_NEWPID": "syscall", + "syscall.CLONE_NEWUSER": "syscall", + "syscall.CLONE_NEWUTS": "syscall", + "syscall.CLONE_PARENT": "syscall", + "syscall.CLONE_PARENT_SETTID": "syscall", + "syscall.CLONE_PTRACE": "syscall", + "syscall.CLONE_SETTLS": "syscall", + "syscall.CLONE_SIGHAND": "syscall", + "syscall.CLONE_SYSVSEM": "syscall", + "syscall.CLONE_THREAD": "syscall", + "syscall.CLONE_UNTRACED": "syscall", + "syscall.CLONE_VFORK": "syscall", + "syscall.CLONE_VM": "syscall", + "syscall.CPUID_CFLUSH": "syscall", + "syscall.CREAD": "syscall", + "syscall.CREATE_ALWAYS": "syscall", + "syscall.CREATE_NEW": "syscall", + "syscall.CREATE_NEW_PROCESS_GROUP": "syscall", + "syscall.CREATE_UNICODE_ENVIRONMENT": "syscall", + "syscall.CRYPT_DEFAULT_CONTAINER_OPTIONAL": "syscall", + "syscall.CRYPT_DELETEKEYSET": "syscall", + "syscall.CRYPT_MACHINE_KEYSET": "syscall", + "syscall.CRYPT_NEWKEYSET": "syscall", + "syscall.CRYPT_SILENT": "syscall", + "syscall.CRYPT_VERIFYCONTEXT": "syscall", + "syscall.CS5": "syscall", + "syscall.CS6": "syscall", + "syscall.CS7": "syscall", + "syscall.CS8": "syscall", + "syscall.CSIZE": "syscall", + "syscall.CSTART": "syscall", + "syscall.CSTATUS": "syscall", + "syscall.CSTOP": "syscall", + "syscall.CSTOPB": "syscall", + "syscall.CSUSP": "syscall", + "syscall.CTL_MAXNAME": "syscall", + "syscall.CTL_NET": "syscall", + "syscall.CTL_QUERY": "syscall", + "syscall.CTRL_BREAK_EVENT": "syscall", + "syscall.CTRL_C_EVENT": "syscall", + "syscall.CancelIo": "syscall", + "syscall.CancelIoEx": "syscall", + "syscall.CertAddCertificateContextToStore": "syscall", + "syscall.CertChainContext": "syscall", + "syscall.CertChainElement": "syscall", + "syscall.CertChainPara": "syscall", + "syscall.CertChainPolicyPara": "syscall", + "syscall.CertChainPolicyStatus": "syscall", + "syscall.CertCloseStore": "syscall", + "syscall.CertContext": "syscall", + "syscall.CertCreateCertificateContext": "syscall", + "syscall.CertEnhKeyUsage": "syscall", + "syscall.CertEnumCertificatesInStore": "syscall", + "syscall.CertFreeCertificateChain": "syscall", + "syscall.CertFreeCertificateContext": "syscall", + "syscall.CertGetCertificateChain": "syscall", + "syscall.CertOpenStore": "syscall", + "syscall.CertOpenSystemStore": "syscall", + "syscall.CertRevocationInfo": "syscall", + "syscall.CertSimpleChain": "syscall", + "syscall.CertTrustStatus": "syscall", + "syscall.CertUsageMatch": "syscall", + "syscall.CertVerifyCertificateChainPolicy": "syscall", + "syscall.Chdir": "syscall", + "syscall.CheckBpfVersion": "syscall", + "syscall.Chflags": "syscall", + "syscall.Chmod": "syscall", + "syscall.Chown": "syscall", + "syscall.Chroot": "syscall", + "syscall.Clearenv": "syscall", + "syscall.Close": "syscall", + "syscall.CloseHandle": "syscall", + "syscall.CloseOnExec": "syscall", + "syscall.Closesocket": "syscall", + "syscall.CmsgLen": "syscall", + "syscall.CmsgSpace": "syscall", + "syscall.Cmsghdr": "syscall", + "syscall.CommandLineToArgv": "syscall", + "syscall.ComputerName": "syscall", + "syscall.Connect": "syscall", + "syscall.ConnectEx": "syscall", + "syscall.ConvertSidToStringSid": "syscall", + "syscall.ConvertStringSidToSid": "syscall", + "syscall.CopySid": "syscall", + "syscall.Creat": "syscall", + "syscall.CreateDirectory": "syscall", + "syscall.CreateFile": "syscall", + "syscall.CreateFileMapping": "syscall", + "syscall.CreateIoCompletionPort": "syscall", + "syscall.CreatePipe": "syscall", + "syscall.CreateProcess": "syscall", + "syscall.Credential": "syscall", + "syscall.CryptAcquireContext": "syscall", + "syscall.CryptGenRandom": "syscall", + "syscall.CryptReleaseContext": "syscall", + "syscall.DIOCBSFLUSH": "syscall", + "syscall.DIOCOSFPFLUSH": "syscall", + "syscall.DLL": "syscall", + "syscall.DLLError": "syscall", + "syscall.DLT_A429": "syscall", + "syscall.DLT_A653_ICM": "syscall", + "syscall.DLT_AIRONET_HEADER": "syscall", + "syscall.DLT_AOS": "syscall", + "syscall.DLT_APPLE_IP_OVER_IEEE1394": "syscall", + "syscall.DLT_ARCNET": "syscall", + "syscall.DLT_ARCNET_LINUX": "syscall", + "syscall.DLT_ATM_CLIP": "syscall", + "syscall.DLT_ATM_RFC1483": "syscall", + "syscall.DLT_AURORA": "syscall", + "syscall.DLT_AX25": "syscall", + "syscall.DLT_AX25_KISS": "syscall", + "syscall.DLT_BACNET_MS_TP": "syscall", + "syscall.DLT_BLUETOOTH_HCI_H4": "syscall", + "syscall.DLT_BLUETOOTH_HCI_H4_WITH_PHDR": "syscall", + "syscall.DLT_CAN20B": "syscall", + "syscall.DLT_CAN_SOCKETCAN": "syscall", + "syscall.DLT_CHAOS": "syscall", + "syscall.DLT_CHDLC": "syscall", + "syscall.DLT_CISCO_IOS": "syscall", + "syscall.DLT_C_HDLC": "syscall", + "syscall.DLT_C_HDLC_WITH_DIR": "syscall", + "syscall.DLT_DBUS": "syscall", + "syscall.DLT_DECT": "syscall", + "syscall.DLT_DOCSIS": "syscall", + "syscall.DLT_DVB_CI": "syscall", + "syscall.DLT_ECONET": "syscall", + "syscall.DLT_EN10MB": "syscall", + "syscall.DLT_EN3MB": "syscall", + "syscall.DLT_ENC": "syscall", + "syscall.DLT_ERF": "syscall", + "syscall.DLT_ERF_ETH": "syscall", + "syscall.DLT_ERF_POS": "syscall", + "syscall.DLT_FC_2": "syscall", + "syscall.DLT_FC_2_WITH_FRAME_DELIMS": "syscall", + "syscall.DLT_FDDI": "syscall", + "syscall.DLT_FLEXRAY": "syscall", + "syscall.DLT_FRELAY": "syscall", + "syscall.DLT_FRELAY_WITH_DIR": "syscall", + "syscall.DLT_GCOM_SERIAL": "syscall", + "syscall.DLT_GCOM_T1E1": "syscall", + "syscall.DLT_GPF_F": "syscall", + "syscall.DLT_GPF_T": "syscall", + "syscall.DLT_GPRS_LLC": "syscall", + "syscall.DLT_GSMTAP_ABIS": "syscall", + "syscall.DLT_GSMTAP_UM": "syscall", + "syscall.DLT_HDLC": "syscall", + "syscall.DLT_HHDLC": "syscall", + "syscall.DLT_HIPPI": "syscall", + "syscall.DLT_IBM_SN": "syscall", + "syscall.DLT_IBM_SP": "syscall", + "syscall.DLT_IEEE802": "syscall", + "syscall.DLT_IEEE802_11": "syscall", + "syscall.DLT_IEEE802_11_RADIO": "syscall", + "syscall.DLT_IEEE802_11_RADIO_AVS": "syscall", + "syscall.DLT_IEEE802_15_4": "syscall", + "syscall.DLT_IEEE802_15_4_LINUX": "syscall", + "syscall.DLT_IEEE802_15_4_NOFCS": "syscall", + "syscall.DLT_IEEE802_15_4_NONASK_PHY": "syscall", + "syscall.DLT_IEEE802_16_MAC_CPS": "syscall", + "syscall.DLT_IEEE802_16_MAC_CPS_RADIO": "syscall", + "syscall.DLT_IPFILTER": "syscall", + "syscall.DLT_IPMB": "syscall", + "syscall.DLT_IPMB_LINUX": "syscall", + "syscall.DLT_IPNET": "syscall", + "syscall.DLT_IPOIB": "syscall", + "syscall.DLT_IPV4": "syscall", + "syscall.DLT_IPV6": "syscall", + "syscall.DLT_IP_OVER_FC": "syscall", + "syscall.DLT_JUNIPER_ATM1": "syscall", + "syscall.DLT_JUNIPER_ATM2": "syscall", + "syscall.DLT_JUNIPER_ATM_CEMIC": "syscall", + "syscall.DLT_JUNIPER_CHDLC": "syscall", + "syscall.DLT_JUNIPER_ES": "syscall", + "syscall.DLT_JUNIPER_ETHER": "syscall", + "syscall.DLT_JUNIPER_FIBRECHANNEL": "syscall", + "syscall.DLT_JUNIPER_FRELAY": "syscall", + "syscall.DLT_JUNIPER_GGSN": "syscall", + "syscall.DLT_JUNIPER_ISM": "syscall", + "syscall.DLT_JUNIPER_MFR": "syscall", + "syscall.DLT_JUNIPER_MLFR": "syscall", + "syscall.DLT_JUNIPER_MLPPP": "syscall", + "syscall.DLT_JUNIPER_MONITOR": "syscall", + "syscall.DLT_JUNIPER_PIC_PEER": "syscall", + "syscall.DLT_JUNIPER_PPP": "syscall", + "syscall.DLT_JUNIPER_PPPOE": "syscall", + "syscall.DLT_JUNIPER_PPPOE_ATM": "syscall", + "syscall.DLT_JUNIPER_SERVICES": "syscall", + "syscall.DLT_JUNIPER_SRX_E2E": "syscall", + "syscall.DLT_JUNIPER_ST": "syscall", + "syscall.DLT_JUNIPER_VP": "syscall", + "syscall.DLT_JUNIPER_VS": "syscall", + "syscall.DLT_LAPB_WITH_DIR": "syscall", + "syscall.DLT_LAPD": "syscall", + "syscall.DLT_LIN": "syscall", + "syscall.DLT_LINUX_EVDEV": "syscall", + "syscall.DLT_LINUX_IRDA": "syscall", + "syscall.DLT_LINUX_LAPD": "syscall", + "syscall.DLT_LINUX_PPP_WITHDIRECTION": "syscall", + "syscall.DLT_LINUX_SLL": "syscall", + "syscall.DLT_LOOP": "syscall", + "syscall.DLT_LTALK": "syscall", + "syscall.DLT_MATCHING_MAX": "syscall", + "syscall.DLT_MATCHING_MIN": "syscall", + "syscall.DLT_MFR": "syscall", + "syscall.DLT_MOST": "syscall", + "syscall.DLT_MPEG_2_TS": "syscall", + "syscall.DLT_MPLS": "syscall", + "syscall.DLT_MTP2": "syscall", + "syscall.DLT_MTP2_WITH_PHDR": "syscall", + "syscall.DLT_MTP3": "syscall", + "syscall.DLT_MUX27010": "syscall", + "syscall.DLT_NETANALYZER": "syscall", + "syscall.DLT_NETANALYZER_TRANSPARENT": "syscall", + "syscall.DLT_NFC_LLCP": "syscall", + "syscall.DLT_NFLOG": "syscall", + "syscall.DLT_NG40": "syscall", + "syscall.DLT_NULL": "syscall", + "syscall.DLT_PCI_EXP": "syscall", + "syscall.DLT_PFLOG": "syscall", + "syscall.DLT_PFSYNC": "syscall", + "syscall.DLT_PPI": "syscall", + "syscall.DLT_PPP": "syscall", + "syscall.DLT_PPP_BSDOS": "syscall", + "syscall.DLT_PPP_ETHER": "syscall", + "syscall.DLT_PPP_PPPD": "syscall", + "syscall.DLT_PPP_SERIAL": "syscall", + "syscall.DLT_PPP_WITH_DIR": "syscall", + "syscall.DLT_PPP_WITH_DIRECTION": "syscall", + "syscall.DLT_PRISM_HEADER": "syscall", + "syscall.DLT_PRONET": "syscall", + "syscall.DLT_RAIF1": "syscall", + "syscall.DLT_RAW": "syscall", + "syscall.DLT_RAWAF_MASK": "syscall", + "syscall.DLT_RIO": "syscall", + "syscall.DLT_SCCP": "syscall", + "syscall.DLT_SITA": "syscall", + "syscall.DLT_SLIP": "syscall", + "syscall.DLT_SLIP_BSDOS": "syscall", + "syscall.DLT_STANAG_5066_D_PDU": "syscall", + "syscall.DLT_SUNATM": "syscall", + "syscall.DLT_SYMANTEC_FIREWALL": "syscall", + "syscall.DLT_TZSP": "syscall", + "syscall.DLT_USB": "syscall", + "syscall.DLT_USB_LINUX": "syscall", + "syscall.DLT_USB_LINUX_MMAPPED": "syscall", + "syscall.DLT_USER0": "syscall", + "syscall.DLT_USER1": "syscall", + "syscall.DLT_USER10": "syscall", + "syscall.DLT_USER11": "syscall", + "syscall.DLT_USER12": "syscall", + "syscall.DLT_USER13": "syscall", + "syscall.DLT_USER14": "syscall", + "syscall.DLT_USER15": "syscall", + "syscall.DLT_USER2": "syscall", + "syscall.DLT_USER3": "syscall", + "syscall.DLT_USER4": "syscall", + "syscall.DLT_USER5": "syscall", + "syscall.DLT_USER6": "syscall", + "syscall.DLT_USER7": "syscall", + "syscall.DLT_USER8": "syscall", + "syscall.DLT_USER9": "syscall", + "syscall.DLT_WIHART": "syscall", + "syscall.DLT_X2E_SERIAL": "syscall", + "syscall.DLT_X2E_XORAYA": "syscall", + "syscall.DNSMXData": "syscall", + "syscall.DNSPTRData": "syscall", + "syscall.DNSRecord": "syscall", + "syscall.DNSSRVData": "syscall", + "syscall.DNSTXTData": "syscall", + "syscall.DNS_TYPE_A": "syscall", + "syscall.DNS_TYPE_A6": "syscall", + "syscall.DNS_TYPE_AAAA": "syscall", + "syscall.DNS_TYPE_ADDRS": "syscall", + "syscall.DNS_TYPE_AFSDB": "syscall", + "syscall.DNS_TYPE_ALL": "syscall", + "syscall.DNS_TYPE_ANY": "syscall", + "syscall.DNS_TYPE_ATMA": "syscall", + "syscall.DNS_TYPE_AXFR": "syscall", + "syscall.DNS_TYPE_CERT": "syscall", + "syscall.DNS_TYPE_CNAME": "syscall", + "syscall.DNS_TYPE_DHCID": "syscall", + "syscall.DNS_TYPE_DNAME": "syscall", + "syscall.DNS_TYPE_DNSKEY": "syscall", + "syscall.DNS_TYPE_DS": "syscall", + "syscall.DNS_TYPE_EID": "syscall", + "syscall.DNS_TYPE_GID": "syscall", + "syscall.DNS_TYPE_GPOS": "syscall", + "syscall.DNS_TYPE_HINFO": "syscall", + "syscall.DNS_TYPE_ISDN": "syscall", + "syscall.DNS_TYPE_IXFR": "syscall", + "syscall.DNS_TYPE_KEY": "syscall", + "syscall.DNS_TYPE_KX": "syscall", + "syscall.DNS_TYPE_LOC": "syscall", + "syscall.DNS_TYPE_MAILA": "syscall", + "syscall.DNS_TYPE_MAILB": "syscall", + "syscall.DNS_TYPE_MB": "syscall", + "syscall.DNS_TYPE_MD": "syscall", + "syscall.DNS_TYPE_MF": "syscall", + "syscall.DNS_TYPE_MG": "syscall", + "syscall.DNS_TYPE_MINFO": "syscall", + "syscall.DNS_TYPE_MR": "syscall", + "syscall.DNS_TYPE_MX": "syscall", + "syscall.DNS_TYPE_NAPTR": "syscall", + "syscall.DNS_TYPE_NBSTAT": "syscall", + "syscall.DNS_TYPE_NIMLOC": "syscall", + "syscall.DNS_TYPE_NS": "syscall", + "syscall.DNS_TYPE_NSAP": "syscall", + "syscall.DNS_TYPE_NSAPPTR": "syscall", + "syscall.DNS_TYPE_NSEC": "syscall", + "syscall.DNS_TYPE_NULL": "syscall", + "syscall.DNS_TYPE_NXT": "syscall", + "syscall.DNS_TYPE_OPT": "syscall", + "syscall.DNS_TYPE_PTR": "syscall", + "syscall.DNS_TYPE_PX": "syscall", + "syscall.DNS_TYPE_RP": "syscall", + "syscall.DNS_TYPE_RRSIG": "syscall", + "syscall.DNS_TYPE_RT": "syscall", + "syscall.DNS_TYPE_SIG": "syscall", + "syscall.DNS_TYPE_SINK": "syscall", + "syscall.DNS_TYPE_SOA": "syscall", + "syscall.DNS_TYPE_SRV": "syscall", + "syscall.DNS_TYPE_TEXT": "syscall", + "syscall.DNS_TYPE_TKEY": "syscall", + "syscall.DNS_TYPE_TSIG": "syscall", + "syscall.DNS_TYPE_UID": "syscall", + "syscall.DNS_TYPE_UINFO": "syscall", + "syscall.DNS_TYPE_UNSPEC": "syscall", + "syscall.DNS_TYPE_WINS": "syscall", + "syscall.DNS_TYPE_WINSR": "syscall", + "syscall.DNS_TYPE_WKS": "syscall", + "syscall.DNS_TYPE_X25": "syscall", + "syscall.DT_BLK": "syscall", + "syscall.DT_CHR": "syscall", + "syscall.DT_DIR": "syscall", + "syscall.DT_FIFO": "syscall", + "syscall.DT_LNK": "syscall", + "syscall.DT_REG": "syscall", + "syscall.DT_SOCK": "syscall", + "syscall.DT_UNKNOWN": "syscall", + "syscall.DT_WHT": "syscall", + "syscall.DUPLICATE_CLOSE_SOURCE": "syscall", + "syscall.DUPLICATE_SAME_ACCESS": "syscall", + "syscall.DeleteFile": "syscall", + "syscall.DetachLsf": "syscall", + "syscall.Dirent": "syscall", + "syscall.DnsQuery": "syscall", + "syscall.DnsRecordListFree": "syscall", + "syscall.Dup": "syscall", + "syscall.Dup2": "syscall", + "syscall.Dup3": "syscall", + "syscall.DuplicateHandle": "syscall", + "syscall.E2BIG": "syscall", + "syscall.EACCES": "syscall", + "syscall.EADDRINUSE": "syscall", + "syscall.EADDRNOTAVAIL": "syscall", + "syscall.EADV": "syscall", + "syscall.EAFNOSUPPORT": "syscall", + "syscall.EAGAIN": "syscall", + "syscall.EALREADY": "syscall", + "syscall.EAUTH": "syscall", + "syscall.EBADARCH": "syscall", + "syscall.EBADE": "syscall", + "syscall.EBADEXEC": "syscall", + "syscall.EBADF": "syscall", + "syscall.EBADFD": "syscall", + "syscall.EBADMACHO": "syscall", + "syscall.EBADMSG": "syscall", + "syscall.EBADR": "syscall", + "syscall.EBADRPC": "syscall", + "syscall.EBADRQC": "syscall", + "syscall.EBADSLT": "syscall", + "syscall.EBFONT": "syscall", + "syscall.EBUSY": "syscall", + "syscall.ECANCELED": "syscall", + "syscall.ECAPMODE": "syscall", + "syscall.ECHILD": "syscall", + "syscall.ECHO": "syscall", + "syscall.ECHOCTL": "syscall", + "syscall.ECHOE": "syscall", + "syscall.ECHOK": "syscall", + "syscall.ECHOKE": "syscall", + "syscall.ECHONL": "syscall", + "syscall.ECHOPRT": "syscall", + "syscall.ECHRNG": "syscall", + "syscall.ECOMM": "syscall", + "syscall.ECONNABORTED": "syscall", + "syscall.ECONNREFUSED": "syscall", + "syscall.ECONNRESET": "syscall", + "syscall.EDEADLK": "syscall", + "syscall.EDEADLOCK": "syscall", + "syscall.EDESTADDRREQ": "syscall", + "syscall.EDEVERR": "syscall", + "syscall.EDOM": "syscall", + "syscall.EDOOFUS": "syscall", + "syscall.EDOTDOT": "syscall", + "syscall.EDQUOT": "syscall", + "syscall.EEXIST": "syscall", + "syscall.EFAULT": "syscall", + "syscall.EFBIG": "syscall", + "syscall.EFER_LMA": "syscall", + "syscall.EFER_LME": "syscall", + "syscall.EFER_NXE": "syscall", + "syscall.EFER_SCE": "syscall", + "syscall.EFTYPE": "syscall", + "syscall.EHOSTDOWN": "syscall", + "syscall.EHOSTUNREACH": "syscall", + "syscall.EHWPOISON": "syscall", + "syscall.EIDRM": "syscall", + "syscall.EILSEQ": "syscall", + "syscall.EINPROGRESS": "syscall", + "syscall.EINTR": "syscall", + "syscall.EINVAL": "syscall", + "syscall.EIO": "syscall", + "syscall.EIPSEC": "syscall", + "syscall.EISCONN": "syscall", + "syscall.EISDIR": "syscall", + "syscall.EISNAM": "syscall", + "syscall.EKEYEXPIRED": "syscall", + "syscall.EKEYREJECTED": "syscall", + "syscall.EKEYREVOKED": "syscall", + "syscall.EL2HLT": "syscall", + "syscall.EL2NSYNC": "syscall", + "syscall.EL3HLT": "syscall", + "syscall.EL3RST": "syscall", + "syscall.ELAST": "syscall", + "syscall.ELF_NGREG": "syscall", + "syscall.ELF_PRARGSZ": "syscall", + "syscall.ELIBACC": "syscall", + "syscall.ELIBBAD": "syscall", + "syscall.ELIBEXEC": "syscall", + "syscall.ELIBMAX": "syscall", + "syscall.ELIBSCN": "syscall", + "syscall.ELNRNG": "syscall", + "syscall.ELOOP": "syscall", + "syscall.EMEDIUMTYPE": "syscall", + "syscall.EMFILE": "syscall", + "syscall.EMLINK": "syscall", + "syscall.EMSGSIZE": "syscall", + "syscall.EMT_TAGOVF": "syscall", + "syscall.EMULTIHOP": "syscall", + "syscall.EMUL_ENABLED": "syscall", + "syscall.EMUL_LINUX": "syscall", + "syscall.EMUL_LINUX32": "syscall", + "syscall.EMUL_MAXID": "syscall", + "syscall.EMUL_NATIVE": "syscall", + "syscall.ENAMETOOLONG": "syscall", + "syscall.ENAVAIL": "syscall", + "syscall.ENDRUNDISC": "syscall", + "syscall.ENEEDAUTH": "syscall", + "syscall.ENETDOWN": "syscall", + "syscall.ENETRESET": "syscall", + "syscall.ENETUNREACH": "syscall", + "syscall.ENFILE": "syscall", + "syscall.ENOANO": "syscall", + "syscall.ENOATTR": "syscall", + "syscall.ENOBUFS": "syscall", + "syscall.ENOCSI": "syscall", + "syscall.ENODATA": "syscall", + "syscall.ENODEV": "syscall", + "syscall.ENOENT": "syscall", + "syscall.ENOEXEC": "syscall", + "syscall.ENOKEY": "syscall", + "syscall.ENOLCK": "syscall", + "syscall.ENOLINK": "syscall", + "syscall.ENOMEDIUM": "syscall", + "syscall.ENOMEM": "syscall", + "syscall.ENOMSG": "syscall", + "syscall.ENONET": "syscall", + "syscall.ENOPKG": "syscall", + "syscall.ENOPOLICY": "syscall", + "syscall.ENOPROTOOPT": "syscall", + "syscall.ENOSPC": "syscall", + "syscall.ENOSR": "syscall", + "syscall.ENOSTR": "syscall", + "syscall.ENOSYS": "syscall", + "syscall.ENOTBLK": "syscall", + "syscall.ENOTCAPABLE": "syscall", + "syscall.ENOTCONN": "syscall", + "syscall.ENOTDIR": "syscall", + "syscall.ENOTEMPTY": "syscall", + "syscall.ENOTNAM": "syscall", + "syscall.ENOTRECOVERABLE": "syscall", + "syscall.ENOTSOCK": "syscall", + "syscall.ENOTSUP": "syscall", + "syscall.ENOTTY": "syscall", + "syscall.ENOTUNIQ": "syscall", + "syscall.ENXIO": "syscall", + "syscall.EN_SW_CTL_INF": "syscall", + "syscall.EN_SW_CTL_PREC": "syscall", + "syscall.EN_SW_CTL_ROUND": "syscall", + "syscall.EN_SW_DATACHAIN": "syscall", + "syscall.EN_SW_DENORM": "syscall", + "syscall.EN_SW_INVOP": "syscall", + "syscall.EN_SW_OVERFLOW": "syscall", + "syscall.EN_SW_PRECLOSS": "syscall", + "syscall.EN_SW_UNDERFLOW": "syscall", + "syscall.EN_SW_ZERODIV": "syscall", + "syscall.EOPNOTSUPP": "syscall", + "syscall.EOVERFLOW": "syscall", + "syscall.EOWNERDEAD": "syscall", + "syscall.EPERM": "syscall", + "syscall.EPFNOSUPPORT": "syscall", + "syscall.EPIPE": "syscall", + "syscall.EPOLLERR": "syscall", + "syscall.EPOLLET": "syscall", + "syscall.EPOLLHUP": "syscall", + "syscall.EPOLLIN": "syscall", + "syscall.EPOLLMSG": "syscall", + "syscall.EPOLLONESHOT": "syscall", + "syscall.EPOLLOUT": "syscall", + "syscall.EPOLLPRI": "syscall", + "syscall.EPOLLRDBAND": "syscall", + "syscall.EPOLLRDHUP": "syscall", + "syscall.EPOLLRDNORM": "syscall", + "syscall.EPOLLWRBAND": "syscall", + "syscall.EPOLLWRNORM": "syscall", + "syscall.EPOLL_CLOEXEC": "syscall", + "syscall.EPOLL_CTL_ADD": "syscall", + "syscall.EPOLL_CTL_DEL": "syscall", + "syscall.EPOLL_CTL_MOD": "syscall", + "syscall.EPOLL_NONBLOCK": "syscall", + "syscall.EPROCLIM": "syscall", + "syscall.EPROCUNAVAIL": "syscall", + "syscall.EPROGMISMATCH": "syscall", + "syscall.EPROGUNAVAIL": "syscall", + "syscall.EPROTO": "syscall", + "syscall.EPROTONOSUPPORT": "syscall", + "syscall.EPROTOTYPE": "syscall", + "syscall.EPWROFF": "syscall", + "syscall.ERANGE": "syscall", + "syscall.EREMCHG": "syscall", + "syscall.EREMOTE": "syscall", + "syscall.EREMOTEIO": "syscall", + "syscall.ERESTART": "syscall", + "syscall.ERFKILL": "syscall", + "syscall.EROFS": "syscall", + "syscall.ERPCMISMATCH": "syscall", + "syscall.ERROR_ACCESS_DENIED": "syscall", + "syscall.ERROR_ALREADY_EXISTS": "syscall", + "syscall.ERROR_BROKEN_PIPE": "syscall", + "syscall.ERROR_BUFFER_OVERFLOW": "syscall", + "syscall.ERROR_ENVVAR_NOT_FOUND": "syscall", + "syscall.ERROR_FILE_EXISTS": "syscall", + "syscall.ERROR_FILE_NOT_FOUND": "syscall", + "syscall.ERROR_HANDLE_EOF": "syscall", + "syscall.ERROR_INSUFFICIENT_BUFFER": "syscall", + "syscall.ERROR_IO_PENDING": "syscall", + "syscall.ERROR_MOD_NOT_FOUND": "syscall", + "syscall.ERROR_NOT_FOUND": "syscall", + "syscall.ERROR_NO_MORE_FILES": "syscall", + "syscall.ERROR_OPERATION_ABORTED": "syscall", + "syscall.ERROR_PATH_NOT_FOUND": "syscall", + "syscall.ERROR_PROC_NOT_FOUND": "syscall", + "syscall.ESHLIBVERS": "syscall", + "syscall.ESHUTDOWN": "syscall", + "syscall.ESOCKTNOSUPPORT": "syscall", + "syscall.ESPIPE": "syscall", + "syscall.ESRCH": "syscall", + "syscall.ESRMNT": "syscall", + "syscall.ESTALE": "syscall", + "syscall.ESTRPIPE": "syscall", + "syscall.ETHERCAP_JUMBO_MTU": "syscall", + "syscall.ETHERCAP_VLAN_HWTAGGING": "syscall", + "syscall.ETHERCAP_VLAN_MTU": "syscall", + "syscall.ETHERMIN": "syscall", + "syscall.ETHERMTU": "syscall", + "syscall.ETHERMTU_JUMBO": "syscall", + "syscall.ETHERTYPE_8023": "syscall", + "syscall.ETHERTYPE_AARP": "syscall", + "syscall.ETHERTYPE_ACCTON": "syscall", + "syscall.ETHERTYPE_AEONIC": "syscall", + "syscall.ETHERTYPE_ALPHA": "syscall", + "syscall.ETHERTYPE_AMBER": "syscall", + "syscall.ETHERTYPE_AMOEBA": "syscall", + "syscall.ETHERTYPE_AOE": "syscall", + "syscall.ETHERTYPE_APOLLO": "syscall", + "syscall.ETHERTYPE_APOLLODOMAIN": "syscall", + "syscall.ETHERTYPE_APPLETALK": "syscall", + "syscall.ETHERTYPE_APPLITEK": "syscall", + "syscall.ETHERTYPE_ARGONAUT": "syscall", + "syscall.ETHERTYPE_ARP": "syscall", + "syscall.ETHERTYPE_AT": "syscall", + "syscall.ETHERTYPE_ATALK": "syscall", + "syscall.ETHERTYPE_ATOMIC": "syscall", + "syscall.ETHERTYPE_ATT": "syscall", + "syscall.ETHERTYPE_ATTSTANFORD": "syscall", + "syscall.ETHERTYPE_AUTOPHON": "syscall", + "syscall.ETHERTYPE_AXIS": "syscall", + "syscall.ETHERTYPE_BCLOOP": "syscall", + "syscall.ETHERTYPE_BOFL": "syscall", + "syscall.ETHERTYPE_CABLETRON": "syscall", + "syscall.ETHERTYPE_CHAOS": "syscall", + "syscall.ETHERTYPE_COMDESIGN": "syscall", + "syscall.ETHERTYPE_COMPUGRAPHIC": "syscall", + "syscall.ETHERTYPE_COUNTERPOINT": "syscall", + "syscall.ETHERTYPE_CRONUS": "syscall", + "syscall.ETHERTYPE_CRONUSVLN": "syscall", + "syscall.ETHERTYPE_DCA": "syscall", + "syscall.ETHERTYPE_DDE": "syscall", + "syscall.ETHERTYPE_DEBNI": "syscall", + "syscall.ETHERTYPE_DECAM": "syscall", + "syscall.ETHERTYPE_DECCUST": "syscall", + "syscall.ETHERTYPE_DECDIAG": "syscall", + "syscall.ETHERTYPE_DECDNS": "syscall", + "syscall.ETHERTYPE_DECDTS": "syscall", + "syscall.ETHERTYPE_DECEXPER": "syscall", + "syscall.ETHERTYPE_DECLAST": "syscall", + "syscall.ETHERTYPE_DECLTM": "syscall", + "syscall.ETHERTYPE_DECMUMPS": "syscall", + "syscall.ETHERTYPE_DECNETBIOS": "syscall", + "syscall.ETHERTYPE_DELTACON": "syscall", + "syscall.ETHERTYPE_DIDDLE": "syscall", + "syscall.ETHERTYPE_DLOG1": "syscall", + "syscall.ETHERTYPE_DLOG2": "syscall", + "syscall.ETHERTYPE_DN": "syscall", + "syscall.ETHERTYPE_DOGFIGHT": "syscall", + "syscall.ETHERTYPE_DSMD": "syscall", + "syscall.ETHERTYPE_ECMA": "syscall", + "syscall.ETHERTYPE_ENCRYPT": "syscall", + "syscall.ETHERTYPE_ES": "syscall", + "syscall.ETHERTYPE_EXCELAN": "syscall", + "syscall.ETHERTYPE_EXPERDATA": "syscall", + "syscall.ETHERTYPE_FLIP": "syscall", + "syscall.ETHERTYPE_FLOWCONTROL": "syscall", + "syscall.ETHERTYPE_FRARP": "syscall", + "syscall.ETHERTYPE_GENDYN": "syscall", + "syscall.ETHERTYPE_HAYES": "syscall", + "syscall.ETHERTYPE_HIPPI_FP": "syscall", + "syscall.ETHERTYPE_HITACHI": "syscall", + "syscall.ETHERTYPE_HP": "syscall", + "syscall.ETHERTYPE_IEEEPUP": "syscall", + "syscall.ETHERTYPE_IEEEPUPAT": "syscall", + "syscall.ETHERTYPE_IMLBL": "syscall", + "syscall.ETHERTYPE_IMLBLDIAG": "syscall", + "syscall.ETHERTYPE_IP": "syscall", + "syscall.ETHERTYPE_IPAS": "syscall", + "syscall.ETHERTYPE_IPV6": "syscall", + "syscall.ETHERTYPE_IPX": "syscall", + "syscall.ETHERTYPE_IPXNEW": "syscall", + "syscall.ETHERTYPE_KALPANA": "syscall", + "syscall.ETHERTYPE_LANBRIDGE": "syscall", + "syscall.ETHERTYPE_LANPROBE": "syscall", + "syscall.ETHERTYPE_LAT": "syscall", + "syscall.ETHERTYPE_LBACK": "syscall", + "syscall.ETHERTYPE_LITTLE": "syscall", + "syscall.ETHERTYPE_LLDP": "syscall", + "syscall.ETHERTYPE_LOGICRAFT": "syscall", + "syscall.ETHERTYPE_LOOPBACK": "syscall", + "syscall.ETHERTYPE_MATRA": "syscall", + "syscall.ETHERTYPE_MAX": "syscall", + "syscall.ETHERTYPE_MERIT": "syscall", + "syscall.ETHERTYPE_MICP": "syscall", + "syscall.ETHERTYPE_MOPDL": "syscall", + "syscall.ETHERTYPE_MOPRC": "syscall", + "syscall.ETHERTYPE_MOTOROLA": "syscall", + "syscall.ETHERTYPE_MPLS": "syscall", + "syscall.ETHERTYPE_MPLS_MCAST": "syscall", + "syscall.ETHERTYPE_MUMPS": "syscall", + "syscall.ETHERTYPE_NBPCC": "syscall", + "syscall.ETHERTYPE_NBPCLAIM": "syscall", + "syscall.ETHERTYPE_NBPCLREQ": "syscall", + "syscall.ETHERTYPE_NBPCLRSP": "syscall", + "syscall.ETHERTYPE_NBPCREQ": "syscall", + "syscall.ETHERTYPE_NBPCRSP": "syscall", + "syscall.ETHERTYPE_NBPDG": "syscall", + "syscall.ETHERTYPE_NBPDGB": "syscall", + "syscall.ETHERTYPE_NBPDLTE": "syscall", + "syscall.ETHERTYPE_NBPRAR": "syscall", + "syscall.ETHERTYPE_NBPRAS": "syscall", + "syscall.ETHERTYPE_NBPRST": "syscall", + "syscall.ETHERTYPE_NBPSCD": "syscall", + "syscall.ETHERTYPE_NBPVCD": "syscall", + "syscall.ETHERTYPE_NBS": "syscall", + "syscall.ETHERTYPE_NCD": "syscall", + "syscall.ETHERTYPE_NESTAR": "syscall", + "syscall.ETHERTYPE_NETBEUI": "syscall", + "syscall.ETHERTYPE_NOVELL": "syscall", + "syscall.ETHERTYPE_NS": "syscall", + "syscall.ETHERTYPE_NSAT": "syscall", + "syscall.ETHERTYPE_NSCOMPAT": "syscall", + "syscall.ETHERTYPE_NTRAILER": "syscall", + "syscall.ETHERTYPE_OS9": "syscall", + "syscall.ETHERTYPE_OS9NET": "syscall", + "syscall.ETHERTYPE_PACER": "syscall", + "syscall.ETHERTYPE_PAE": "syscall", + "syscall.ETHERTYPE_PCS": "syscall", + "syscall.ETHERTYPE_PLANNING": "syscall", + "syscall.ETHERTYPE_PPP": "syscall", + "syscall.ETHERTYPE_PPPOE": "syscall", + "syscall.ETHERTYPE_PPPOEDISC": "syscall", + "syscall.ETHERTYPE_PRIMENTS": "syscall", + "syscall.ETHERTYPE_PUP": "syscall", + "syscall.ETHERTYPE_PUPAT": "syscall", + "syscall.ETHERTYPE_QINQ": "syscall", + "syscall.ETHERTYPE_RACAL": "syscall", + "syscall.ETHERTYPE_RATIONAL": "syscall", + "syscall.ETHERTYPE_RAWFR": "syscall", + "syscall.ETHERTYPE_RCL": "syscall", + "syscall.ETHERTYPE_RDP": "syscall", + "syscall.ETHERTYPE_RETIX": "syscall", + "syscall.ETHERTYPE_REVARP": "syscall", + "syscall.ETHERTYPE_SCA": "syscall", + "syscall.ETHERTYPE_SECTRA": "syscall", + "syscall.ETHERTYPE_SECUREDATA": "syscall", + "syscall.ETHERTYPE_SGITW": "syscall", + "syscall.ETHERTYPE_SG_BOUNCE": "syscall", + "syscall.ETHERTYPE_SG_DIAG": "syscall", + "syscall.ETHERTYPE_SG_NETGAMES": "syscall", + "syscall.ETHERTYPE_SG_RESV": "syscall", + "syscall.ETHERTYPE_SIMNET": "syscall", + "syscall.ETHERTYPE_SLOW": "syscall", + "syscall.ETHERTYPE_SLOWPROTOCOLS": "syscall", + "syscall.ETHERTYPE_SNA": "syscall", + "syscall.ETHERTYPE_SNMP": "syscall", + "syscall.ETHERTYPE_SONIX": "syscall", + "syscall.ETHERTYPE_SPIDER": "syscall", + "syscall.ETHERTYPE_SPRITE": "syscall", + "syscall.ETHERTYPE_STP": "syscall", + "syscall.ETHERTYPE_TALARIS": "syscall", + "syscall.ETHERTYPE_TALARISMC": "syscall", + "syscall.ETHERTYPE_TCPCOMP": "syscall", + "syscall.ETHERTYPE_TCPSM": "syscall", + "syscall.ETHERTYPE_TEC": "syscall", + "syscall.ETHERTYPE_TIGAN": "syscall", + "syscall.ETHERTYPE_TRAIL": "syscall", + "syscall.ETHERTYPE_TRANSETHER": "syscall", + "syscall.ETHERTYPE_TYMSHARE": "syscall", + "syscall.ETHERTYPE_UBBST": "syscall", + "syscall.ETHERTYPE_UBDEBUG": "syscall", + "syscall.ETHERTYPE_UBDIAGLOOP": "syscall", + "syscall.ETHERTYPE_UBDL": "syscall", + "syscall.ETHERTYPE_UBNIU": "syscall", + "syscall.ETHERTYPE_UBNMC": "syscall", + "syscall.ETHERTYPE_VALID": "syscall", + "syscall.ETHERTYPE_VARIAN": "syscall", + "syscall.ETHERTYPE_VAXELN": "syscall", + "syscall.ETHERTYPE_VEECO": "syscall", + "syscall.ETHERTYPE_VEXP": "syscall", + "syscall.ETHERTYPE_VGLAB": "syscall", + "syscall.ETHERTYPE_VINES": "syscall", + "syscall.ETHERTYPE_VINESECHO": "syscall", + "syscall.ETHERTYPE_VINESLOOP": "syscall", + "syscall.ETHERTYPE_VITAL": "syscall", + "syscall.ETHERTYPE_VLAN": "syscall", + "syscall.ETHERTYPE_VLTLMAN": "syscall", + "syscall.ETHERTYPE_VPROD": "syscall", + "syscall.ETHERTYPE_VURESERVED": "syscall", + "syscall.ETHERTYPE_WATERLOO": "syscall", + "syscall.ETHERTYPE_WELLFLEET": "syscall", + "syscall.ETHERTYPE_X25": "syscall", + "syscall.ETHERTYPE_X75": "syscall", + "syscall.ETHERTYPE_XNSSM": "syscall", + "syscall.ETHERTYPE_XTP": "syscall", + "syscall.ETHER_ADDR_LEN": "syscall", + "syscall.ETHER_ALIGN": "syscall", + "syscall.ETHER_CRC_LEN": "syscall", + "syscall.ETHER_CRC_POLY_BE": "syscall", + "syscall.ETHER_CRC_POLY_LE": "syscall", + "syscall.ETHER_HDR_LEN": "syscall", + "syscall.ETHER_MAX_DIX_LEN": "syscall", + "syscall.ETHER_MAX_LEN": "syscall", + "syscall.ETHER_MAX_LEN_JUMBO": "syscall", + "syscall.ETHER_MIN_LEN": "syscall", + "syscall.ETHER_PPPOE_ENCAP_LEN": "syscall", + "syscall.ETHER_TYPE_LEN": "syscall", + "syscall.ETHER_VLAN_ENCAP_LEN": "syscall", + "syscall.ETH_P_1588": "syscall", + "syscall.ETH_P_8021Q": "syscall", + "syscall.ETH_P_802_2": "syscall", + "syscall.ETH_P_802_3": "syscall", + "syscall.ETH_P_AARP": "syscall", + "syscall.ETH_P_ALL": "syscall", + "syscall.ETH_P_AOE": "syscall", + "syscall.ETH_P_ARCNET": "syscall", + "syscall.ETH_P_ARP": "syscall", + "syscall.ETH_P_ATALK": "syscall", + "syscall.ETH_P_ATMFATE": "syscall", + "syscall.ETH_P_ATMMPOA": "syscall", + "syscall.ETH_P_AX25": "syscall", + "syscall.ETH_P_BPQ": "syscall", + "syscall.ETH_P_CAIF": "syscall", + "syscall.ETH_P_CAN": "syscall", + "syscall.ETH_P_CONTROL": "syscall", + "syscall.ETH_P_CUST": "syscall", + "syscall.ETH_P_DDCMP": "syscall", + "syscall.ETH_P_DEC": "syscall", + "syscall.ETH_P_DIAG": "syscall", + "syscall.ETH_P_DNA_DL": "syscall", + "syscall.ETH_P_DNA_RC": "syscall", + "syscall.ETH_P_DNA_RT": "syscall", + "syscall.ETH_P_DSA": "syscall", + "syscall.ETH_P_ECONET": "syscall", + "syscall.ETH_P_EDSA": "syscall", + "syscall.ETH_P_FCOE": "syscall", + "syscall.ETH_P_FIP": "syscall", + "syscall.ETH_P_HDLC": "syscall", + "syscall.ETH_P_IEEE802154": "syscall", + "syscall.ETH_P_IEEEPUP": "syscall", + "syscall.ETH_P_IEEEPUPAT": "syscall", + "syscall.ETH_P_IP": "syscall", + "syscall.ETH_P_IPV6": "syscall", + "syscall.ETH_P_IPX": "syscall", + "syscall.ETH_P_IRDA": "syscall", + "syscall.ETH_P_LAT": "syscall", + "syscall.ETH_P_LINK_CTL": "syscall", + "syscall.ETH_P_LOCALTALK": "syscall", + "syscall.ETH_P_LOOP": "syscall", + "syscall.ETH_P_MOBITEX": "syscall", + "syscall.ETH_P_MPLS_MC": "syscall", + "syscall.ETH_P_MPLS_UC": "syscall", + "syscall.ETH_P_PAE": "syscall", + "syscall.ETH_P_PAUSE": "syscall", + "syscall.ETH_P_PHONET": "syscall", + "syscall.ETH_P_PPPTALK": "syscall", + "syscall.ETH_P_PPP_DISC": "syscall", + "syscall.ETH_P_PPP_MP": "syscall", + "syscall.ETH_P_PPP_SES": "syscall", + "syscall.ETH_P_PUP": "syscall", + "syscall.ETH_P_PUPAT": "syscall", + "syscall.ETH_P_RARP": "syscall", + "syscall.ETH_P_SCA": "syscall", + "syscall.ETH_P_SLOW": "syscall", + "syscall.ETH_P_SNAP": "syscall", + "syscall.ETH_P_TEB": "syscall", + "syscall.ETH_P_TIPC": "syscall", + "syscall.ETH_P_TRAILER": "syscall", + "syscall.ETH_P_TR_802_2": "syscall", + "syscall.ETH_P_WAN_PPP": "syscall", + "syscall.ETH_P_WCCP": "syscall", + "syscall.ETH_P_X25": "syscall", + "syscall.ETIME": "syscall", + "syscall.ETIMEDOUT": "syscall", + "syscall.ETOOMANYREFS": "syscall", + "syscall.ETXTBSY": "syscall", + "syscall.EUCLEAN": "syscall", + "syscall.EUNATCH": "syscall", + "syscall.EUSERS": "syscall", + "syscall.EVFILT_AIO": "syscall", + "syscall.EVFILT_FS": "syscall", + "syscall.EVFILT_LIO": "syscall", + "syscall.EVFILT_MACHPORT": "syscall", + "syscall.EVFILT_PROC": "syscall", + "syscall.EVFILT_READ": "syscall", + "syscall.EVFILT_SIGNAL": "syscall", + "syscall.EVFILT_SYSCOUNT": "syscall", + "syscall.EVFILT_THREADMARKER": "syscall", + "syscall.EVFILT_TIMER": "syscall", + "syscall.EVFILT_USER": "syscall", + "syscall.EVFILT_VM": "syscall", + "syscall.EVFILT_VNODE": "syscall", + "syscall.EVFILT_WRITE": "syscall", + "syscall.EV_ADD": "syscall", + "syscall.EV_CLEAR": "syscall", + "syscall.EV_DELETE": "syscall", + "syscall.EV_DISABLE": "syscall", + "syscall.EV_DISPATCH": "syscall", + "syscall.EV_ENABLE": "syscall", + "syscall.EV_EOF": "syscall", + "syscall.EV_ERROR": "syscall", + "syscall.EV_FLAG0": "syscall", + "syscall.EV_FLAG1": "syscall", + "syscall.EV_ONESHOT": "syscall", + "syscall.EV_OOBAND": "syscall", + "syscall.EV_POLL": "syscall", + "syscall.EV_RECEIPT": "syscall", + "syscall.EV_SYSFLAGS": "syscall", + "syscall.EWINDOWS": "syscall", + "syscall.EWOULDBLOCK": "syscall", + "syscall.EXDEV": "syscall", + "syscall.EXFULL": "syscall", + "syscall.EXTA": "syscall", + "syscall.EXTB": "syscall", + "syscall.EXTPROC": "syscall", + "syscall.Environ": "syscall", + "syscall.EpollCreate": "syscall", + "syscall.EpollCreate1": "syscall", + "syscall.EpollCtl": "syscall", + "syscall.EpollEvent": "syscall", + "syscall.EpollWait": "syscall", + "syscall.Errno": "syscall", + "syscall.EscapeArg": "syscall", + "syscall.Exchangedata": "syscall", + "syscall.Exec": "syscall", + "syscall.Exit": "syscall", + "syscall.ExitProcess": "syscall", + "syscall.FD_CLOEXEC": "syscall", + "syscall.FD_SETSIZE": "syscall", + "syscall.FILE_ACTION_ADDED": "syscall", + "syscall.FILE_ACTION_MODIFIED": "syscall", + "syscall.FILE_ACTION_REMOVED": "syscall", + "syscall.FILE_ACTION_RENAMED_NEW_NAME": "syscall", + "syscall.FILE_ACTION_RENAMED_OLD_NAME": "syscall", + "syscall.FILE_APPEND_DATA": "syscall", + "syscall.FILE_ATTRIBUTE_ARCHIVE": "syscall", + "syscall.FILE_ATTRIBUTE_DIRECTORY": "syscall", + "syscall.FILE_ATTRIBUTE_HIDDEN": "syscall", + "syscall.FILE_ATTRIBUTE_NORMAL": "syscall", + "syscall.FILE_ATTRIBUTE_READONLY": "syscall", + "syscall.FILE_ATTRIBUTE_SYSTEM": "syscall", + "syscall.FILE_BEGIN": "syscall", + "syscall.FILE_CURRENT": "syscall", + "syscall.FILE_END": "syscall", + "syscall.FILE_FLAG_BACKUP_SEMANTICS": "syscall", + "syscall.FILE_FLAG_OVERLAPPED": "syscall", + "syscall.FILE_LIST_DIRECTORY": "syscall", + "syscall.FILE_MAP_COPY": "syscall", + "syscall.FILE_MAP_EXECUTE": "syscall", + "syscall.FILE_MAP_READ": "syscall", + "syscall.FILE_MAP_WRITE": "syscall", + "syscall.FILE_NOTIFY_CHANGE_ATTRIBUTES": "syscall", + "syscall.FILE_NOTIFY_CHANGE_CREATION": "syscall", + "syscall.FILE_NOTIFY_CHANGE_DIR_NAME": "syscall", + "syscall.FILE_NOTIFY_CHANGE_FILE_NAME": "syscall", + "syscall.FILE_NOTIFY_CHANGE_LAST_ACCESS": "syscall", + "syscall.FILE_NOTIFY_CHANGE_LAST_WRITE": "syscall", + "syscall.FILE_NOTIFY_CHANGE_SIZE": "syscall", + "syscall.FILE_SHARE_DELETE": "syscall", + "syscall.FILE_SHARE_READ": "syscall", + "syscall.FILE_SHARE_WRITE": "syscall", + "syscall.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": "syscall", + "syscall.FILE_SKIP_SET_EVENT_ON_HANDLE": "syscall", + "syscall.FILE_TYPE_CHAR": "syscall", + "syscall.FILE_TYPE_DISK": "syscall", + "syscall.FILE_TYPE_PIPE": "syscall", + "syscall.FILE_TYPE_REMOTE": "syscall", + "syscall.FILE_TYPE_UNKNOWN": "syscall", + "syscall.FILE_WRITE_ATTRIBUTES": "syscall", + "syscall.FLUSHO": "syscall", + "syscall.FORMAT_MESSAGE_ALLOCATE_BUFFER": "syscall", + "syscall.FORMAT_MESSAGE_ARGUMENT_ARRAY": "syscall", + "syscall.FORMAT_MESSAGE_FROM_HMODULE": "syscall", + "syscall.FORMAT_MESSAGE_FROM_STRING": "syscall", + "syscall.FORMAT_MESSAGE_FROM_SYSTEM": "syscall", + "syscall.FORMAT_MESSAGE_IGNORE_INSERTS": "syscall", + "syscall.FORMAT_MESSAGE_MAX_WIDTH_MASK": "syscall", + "syscall.F_ADDFILESIGS": "syscall", + "syscall.F_ADDSIGS": "syscall", + "syscall.F_ALLOCATEALL": "syscall", + "syscall.F_ALLOCATECONTIG": "syscall", + "syscall.F_CANCEL": "syscall", + "syscall.F_CHKCLEAN": "syscall", + "syscall.F_CLOSEM": "syscall", + "syscall.F_DUP2FD": "syscall", + "syscall.F_DUP2FD_CLOEXEC": "syscall", + "syscall.F_DUPFD": "syscall", + "syscall.F_DUPFD_CLOEXEC": "syscall", + "syscall.F_EXLCK": "syscall", + "syscall.F_FLUSH_DATA": "syscall", + "syscall.F_FREEZE_FS": "syscall", + "syscall.F_FSCTL": "syscall", + "syscall.F_FSDIRMASK": "syscall", + "syscall.F_FSIN": "syscall", + "syscall.F_FSINOUT": "syscall", + "syscall.F_FSOUT": "syscall", + "syscall.F_FSPRIV": "syscall", + "syscall.F_FSVOID": "syscall", + "syscall.F_FULLFSYNC": "syscall", + "syscall.F_GETFD": "syscall", + "syscall.F_GETFL": "syscall", + "syscall.F_GETLEASE": "syscall", + "syscall.F_GETLK": "syscall", + "syscall.F_GETLK64": "syscall", + "syscall.F_GETLKPID": "syscall", + "syscall.F_GETNOSIGPIPE": "syscall", + "syscall.F_GETOWN": "syscall", + "syscall.F_GETOWN_EX": "syscall", + "syscall.F_GETPATH": "syscall", + "syscall.F_GETPATH_MTMINFO": "syscall", + "syscall.F_GETPIPE_SZ": "syscall", + "syscall.F_GETPROTECTIONCLASS": "syscall", + "syscall.F_GETSIG": "syscall", + "syscall.F_GLOBAL_NOCACHE": "syscall", + "syscall.F_LOCK": "syscall", + "syscall.F_LOG2PHYS": "syscall", + "syscall.F_LOG2PHYS_EXT": "syscall", + "syscall.F_MARKDEPENDENCY": "syscall", + "syscall.F_MAXFD": "syscall", + "syscall.F_NOCACHE": "syscall", + "syscall.F_NODIRECT": "syscall", + "syscall.F_NOTIFY": "syscall", + "syscall.F_OGETLK": "syscall", + "syscall.F_OK": "syscall", + "syscall.F_OSETLK": "syscall", + "syscall.F_OSETLKW": "syscall", + "syscall.F_PARAM_MASK": "syscall", + "syscall.F_PARAM_MAX": "syscall", + "syscall.F_PATHPKG_CHECK": "syscall", + "syscall.F_PEOFPOSMODE": "syscall", + "syscall.F_PREALLOCATE": "syscall", + "syscall.F_RDADVISE": "syscall", + "syscall.F_RDAHEAD": "syscall", + "syscall.F_RDLCK": "syscall", + "syscall.F_READAHEAD": "syscall", + "syscall.F_READBOOTSTRAP": "syscall", + "syscall.F_SETBACKINGSTORE": "syscall", + "syscall.F_SETFD": "syscall", + "syscall.F_SETFL": "syscall", + "syscall.F_SETLEASE": "syscall", + "syscall.F_SETLK": "syscall", + "syscall.F_SETLK64": "syscall", + "syscall.F_SETLKW": "syscall", + "syscall.F_SETLKW64": "syscall", + "syscall.F_SETLK_REMOTE": "syscall", + "syscall.F_SETNOSIGPIPE": "syscall", + "syscall.F_SETOWN": "syscall", + "syscall.F_SETOWN_EX": "syscall", + "syscall.F_SETPIPE_SZ": "syscall", + "syscall.F_SETPROTECTIONCLASS": "syscall", + "syscall.F_SETSIG": "syscall", + "syscall.F_SETSIZE": "syscall", + "syscall.F_SHLCK": "syscall", + "syscall.F_TEST": "syscall", + "syscall.F_THAW_FS": "syscall", + "syscall.F_TLOCK": "syscall", + "syscall.F_ULOCK": "syscall", + "syscall.F_UNLCK": "syscall", + "syscall.F_UNLCKSYS": "syscall", + "syscall.F_VOLPOSMODE": "syscall", + "syscall.F_WRITEBOOTSTRAP": "syscall", + "syscall.F_WRLCK": "syscall", + "syscall.Faccessat": "syscall", + "syscall.Fallocate": "syscall", + "syscall.Fbootstraptransfer_t": "syscall", + "syscall.Fchdir": "syscall", + "syscall.Fchflags": "syscall", + "syscall.Fchmod": "syscall", + "syscall.Fchmodat": "syscall", + "syscall.Fchown": "syscall", + "syscall.Fchownat": "syscall", + "syscall.FdSet": "syscall", + "syscall.Fdatasync": "syscall", + "syscall.FileNotifyInformation": "syscall", + "syscall.Filetime": "syscall", + "syscall.FindClose": "syscall", + "syscall.FindFirstFile": "syscall", + "syscall.FindNextFile": "syscall", + "syscall.Flock": "syscall", + "syscall.Flock_t": "syscall", + "syscall.FlushBpf": "syscall", + "syscall.FlushFileBuffers": "syscall", + "syscall.FlushViewOfFile": "syscall", + "syscall.ForkExec": "syscall", + "syscall.ForkLock": "syscall", + "syscall.FormatMessage": "syscall", + "syscall.Fpathconf": "syscall", + "syscall.FreeAddrInfoW": "syscall", + "syscall.FreeEnvironmentStrings": "syscall", + "syscall.FreeLibrary": "syscall", + "syscall.Fsid": "syscall", + "syscall.Fstat": "syscall", + "syscall.Fstatfs": "syscall", + "syscall.Fstore_t": "syscall", + "syscall.Fsync": "syscall", + "syscall.Ftruncate": "syscall", + "syscall.Futimes": "syscall", + "syscall.Futimesat": "syscall", + "syscall.GENERIC_ALL": "syscall", + "syscall.GENERIC_EXECUTE": "syscall", + "syscall.GENERIC_READ": "syscall", + "syscall.GENERIC_WRITE": "syscall", + "syscall.GUID": "syscall", + "syscall.GetAcceptExSockaddrs": "syscall", + "syscall.GetAdaptersInfo": "syscall", + "syscall.GetAddrInfoW": "syscall", + "syscall.GetCommandLine": "syscall", + "syscall.GetComputerName": "syscall", + "syscall.GetConsoleMode": "syscall", + "syscall.GetCurrentDirectory": "syscall", + "syscall.GetCurrentProcess": "syscall", + "syscall.GetEnvironmentStrings": "syscall", + "syscall.GetEnvironmentVariable": "syscall", + "syscall.GetExitCodeProcess": "syscall", + "syscall.GetFileAttributes": "syscall", + "syscall.GetFileAttributesEx": "syscall", + "syscall.GetFileExInfoStandard": "syscall", + "syscall.GetFileExMaxInfoLevel": "syscall", + "syscall.GetFileInformationByHandle": "syscall", + "syscall.GetFileType": "syscall", + "syscall.GetFullPathName": "syscall", + "syscall.GetHostByName": "syscall", + "syscall.GetIfEntry": "syscall", + "syscall.GetLastError": "syscall", + "syscall.GetLengthSid": "syscall", + "syscall.GetLongPathName": "syscall", + "syscall.GetProcAddress": "syscall", + "syscall.GetProcessTimes": "syscall", + "syscall.GetProtoByName": "syscall", + "syscall.GetQueuedCompletionStatus": "syscall", + "syscall.GetServByName": "syscall", + "syscall.GetShortPathName": "syscall", + "syscall.GetStartupInfo": "syscall", + "syscall.GetStdHandle": "syscall", + "syscall.GetSystemTimeAsFileTime": "syscall", + "syscall.GetTempPath": "syscall", + "syscall.GetTimeZoneInformation": "syscall", + "syscall.GetTokenInformation": "syscall", + "syscall.GetUserNameEx": "syscall", + "syscall.GetUserProfileDirectory": "syscall", + "syscall.GetVersion": "syscall", + "syscall.Getcwd": "syscall", + "syscall.Getdents": "syscall", + "syscall.Getdirentries": "syscall", + "syscall.Getdtablesize": "syscall", + "syscall.Getegid": "syscall", + "syscall.Getenv": "syscall", + "syscall.Geteuid": "syscall", + "syscall.Getfsstat": "syscall", + "syscall.Getgid": "syscall", + "syscall.Getgroups": "syscall", + "syscall.Getpagesize": "syscall", + "syscall.Getpeername": "syscall", + "syscall.Getpgid": "syscall", + "syscall.Getpgrp": "syscall", + "syscall.Getpid": "syscall", + "syscall.Getppid": "syscall", + "syscall.Getpriority": "syscall", + "syscall.Getrlimit": "syscall", + "syscall.Getrusage": "syscall", + "syscall.Getsid": "syscall", + "syscall.Getsockname": "syscall", + "syscall.Getsockopt": "syscall", + "syscall.GetsockoptByte": "syscall", + "syscall.GetsockoptICMPv6Filter": "syscall", + "syscall.GetsockoptIPMreq": "syscall", + "syscall.GetsockoptIPMreqn": "syscall", + "syscall.GetsockoptIPv6MTUInfo": "syscall", + "syscall.GetsockoptIPv6Mreq": "syscall", + "syscall.GetsockoptInet4Addr": "syscall", + "syscall.GetsockoptInt": "syscall", + "syscall.GetsockoptUcred": "syscall", + "syscall.Gettid": "syscall", + "syscall.Gettimeofday": "syscall", + "syscall.Getuid": "syscall", + "syscall.Getwd": "syscall", + "syscall.Getxattr": "syscall", + "syscall.HANDLE_FLAG_INHERIT": "syscall", + "syscall.HKEY_CLASSES_ROOT": "syscall", + "syscall.HKEY_CURRENT_CONFIG": "syscall", + "syscall.HKEY_CURRENT_USER": "syscall", + "syscall.HKEY_DYN_DATA": "syscall", + "syscall.HKEY_LOCAL_MACHINE": "syscall", + "syscall.HKEY_PERFORMANCE_DATA": "syscall", + "syscall.HKEY_USERS": "syscall", + "syscall.HUPCL": "syscall", + "syscall.Handle": "syscall", + "syscall.Hostent": "syscall", + "syscall.ICANON": "syscall", + "syscall.ICMP6_FILTER": "syscall", + "syscall.ICMPV6_FILTER": "syscall", + "syscall.ICMPv6Filter": "syscall", + "syscall.ICRNL": "syscall", + "syscall.IEXTEN": "syscall", + "syscall.IFAN_ARRIVAL": "syscall", + "syscall.IFAN_DEPARTURE": "syscall", + "syscall.IFA_ADDRESS": "syscall", + "syscall.IFA_ANYCAST": "syscall", + "syscall.IFA_BROADCAST": "syscall", + "syscall.IFA_CACHEINFO": "syscall", + "syscall.IFA_F_DADFAILED": "syscall", + "syscall.IFA_F_DEPRECATED": "syscall", + "syscall.IFA_F_HOMEADDRESS": "syscall", + "syscall.IFA_F_NODAD": "syscall", + "syscall.IFA_F_OPTIMISTIC": "syscall", + "syscall.IFA_F_PERMANENT": "syscall", + "syscall.IFA_F_SECONDARY": "syscall", + "syscall.IFA_F_TEMPORARY": "syscall", + "syscall.IFA_F_TENTATIVE": "syscall", + "syscall.IFA_LABEL": "syscall", + "syscall.IFA_LOCAL": "syscall", + "syscall.IFA_MAX": "syscall", + "syscall.IFA_MULTICAST": "syscall", + "syscall.IFA_ROUTE": "syscall", + "syscall.IFA_UNSPEC": "syscall", + "syscall.IFF_ALLMULTI": "syscall", + "syscall.IFF_ALTPHYS": "syscall", + "syscall.IFF_AUTOMEDIA": "syscall", + "syscall.IFF_BROADCAST": "syscall", + "syscall.IFF_CANTCHANGE": "syscall", + "syscall.IFF_CANTCONFIG": "syscall", + "syscall.IFF_DEBUG": "syscall", + "syscall.IFF_DRV_OACTIVE": "syscall", + "syscall.IFF_DRV_RUNNING": "syscall", + "syscall.IFF_DYING": "syscall", + "syscall.IFF_DYNAMIC": "syscall", + "syscall.IFF_LINK0": "syscall", + "syscall.IFF_LINK1": "syscall", + "syscall.IFF_LINK2": "syscall", + "syscall.IFF_LOOPBACK": "syscall", + "syscall.IFF_MASTER": "syscall", + "syscall.IFF_MONITOR": "syscall", + "syscall.IFF_MULTICAST": "syscall", + "syscall.IFF_NOARP": "syscall", + "syscall.IFF_NOTRAILERS": "syscall", + "syscall.IFF_NO_PI": "syscall", + "syscall.IFF_OACTIVE": "syscall", + "syscall.IFF_ONE_QUEUE": "syscall", + "syscall.IFF_POINTOPOINT": "syscall", + "syscall.IFF_POINTTOPOINT": "syscall", + "syscall.IFF_PORTSEL": "syscall", + "syscall.IFF_PPROMISC": "syscall", + "syscall.IFF_PROMISC": "syscall", + "syscall.IFF_RENAMING": "syscall", + "syscall.IFF_RUNNING": "syscall", + "syscall.IFF_SIMPLEX": "syscall", + "syscall.IFF_SLAVE": "syscall", + "syscall.IFF_SMART": "syscall", + "syscall.IFF_STATICARP": "syscall", + "syscall.IFF_TAP": "syscall", + "syscall.IFF_TUN": "syscall", + "syscall.IFF_TUN_EXCL": "syscall", + "syscall.IFF_UP": "syscall", + "syscall.IFF_VNET_HDR": "syscall", + "syscall.IFLA_ADDRESS": "syscall", + "syscall.IFLA_BROADCAST": "syscall", + "syscall.IFLA_COST": "syscall", + "syscall.IFLA_IFALIAS": "syscall", + "syscall.IFLA_IFNAME": "syscall", + "syscall.IFLA_LINK": "syscall", + "syscall.IFLA_LINKINFO": "syscall", + "syscall.IFLA_LINKMODE": "syscall", + "syscall.IFLA_MAP": "syscall", + "syscall.IFLA_MASTER": "syscall", + "syscall.IFLA_MAX": "syscall", + "syscall.IFLA_MTU": "syscall", + "syscall.IFLA_NET_NS_PID": "syscall", + "syscall.IFLA_OPERSTATE": "syscall", + "syscall.IFLA_PRIORITY": "syscall", + "syscall.IFLA_PROTINFO": "syscall", + "syscall.IFLA_QDISC": "syscall", + "syscall.IFLA_STATS": "syscall", + "syscall.IFLA_TXQLEN": "syscall", + "syscall.IFLA_UNSPEC": "syscall", + "syscall.IFLA_WEIGHT": "syscall", + "syscall.IFLA_WIRELESS": "syscall", + "syscall.IFNAMSIZ": "syscall", + "syscall.IFT_1822": "syscall", + "syscall.IFT_A12MPPSWITCH": "syscall", + "syscall.IFT_AAL2": "syscall", + "syscall.IFT_AAL5": "syscall", + "syscall.IFT_ADSL": "syscall", + "syscall.IFT_AFLANE8023": "syscall", + "syscall.IFT_AFLANE8025": "syscall", + "syscall.IFT_ARAP": "syscall", + "syscall.IFT_ARCNET": "syscall", + "syscall.IFT_ARCNETPLUS": "syscall", + "syscall.IFT_ASYNC": "syscall", + "syscall.IFT_ATM": "syscall", + "syscall.IFT_ATMDXI": "syscall", + "syscall.IFT_ATMFUNI": "syscall", + "syscall.IFT_ATMIMA": "syscall", + "syscall.IFT_ATMLOGICAL": "syscall", + "syscall.IFT_ATMRADIO": "syscall", + "syscall.IFT_ATMSUBINTERFACE": "syscall", + "syscall.IFT_ATMVCIENDPT": "syscall", + "syscall.IFT_ATMVIRTUAL": "syscall", + "syscall.IFT_BGPPOLICYACCOUNTING": "syscall", + "syscall.IFT_BLUETOOTH": "syscall", + "syscall.IFT_BRIDGE": "syscall", + "syscall.IFT_BSC": "syscall", + "syscall.IFT_CARP": "syscall", + "syscall.IFT_CCTEMUL": "syscall", + "syscall.IFT_CELLULAR": "syscall", + "syscall.IFT_CEPT": "syscall", + "syscall.IFT_CES": "syscall", + "syscall.IFT_CHANNEL": "syscall", + "syscall.IFT_CNR": "syscall", + "syscall.IFT_COFFEE": "syscall", + "syscall.IFT_COMPOSITELINK": "syscall", + "syscall.IFT_DCN": "syscall", + "syscall.IFT_DIGITALPOWERLINE": "syscall", + "syscall.IFT_DIGITALWRAPPEROVERHEADCHANNEL": "syscall", + "syscall.IFT_DLSW": "syscall", + "syscall.IFT_DOCSCABLEDOWNSTREAM": "syscall", + "syscall.IFT_DOCSCABLEMACLAYER": "syscall", + "syscall.IFT_DOCSCABLEUPSTREAM": "syscall", + "syscall.IFT_DOCSCABLEUPSTREAMCHANNEL": "syscall", + "syscall.IFT_DS0": "syscall", + "syscall.IFT_DS0BUNDLE": "syscall", + "syscall.IFT_DS1FDL": "syscall", + "syscall.IFT_DS3": "syscall", + "syscall.IFT_DTM": "syscall", + "syscall.IFT_DUMMY": "syscall", + "syscall.IFT_DVBASILN": "syscall", + "syscall.IFT_DVBASIOUT": "syscall", + "syscall.IFT_DVBRCCDOWNSTREAM": "syscall", + "syscall.IFT_DVBRCCMACLAYER": "syscall", + "syscall.IFT_DVBRCCUPSTREAM": "syscall", + "syscall.IFT_ECONET": "syscall", + "syscall.IFT_ENC": "syscall", + "syscall.IFT_EON": "syscall", + "syscall.IFT_EPLRS": "syscall", + "syscall.IFT_ESCON": "syscall", + "syscall.IFT_ETHER": "syscall", + "syscall.IFT_FAITH": "syscall", + "syscall.IFT_FAST": "syscall", + "syscall.IFT_FASTETHER": "syscall", + "syscall.IFT_FASTETHERFX": "syscall", + "syscall.IFT_FDDI": "syscall", + "syscall.IFT_FIBRECHANNEL": "syscall", + "syscall.IFT_FRAMERELAYINTERCONNECT": "syscall", + "syscall.IFT_FRAMERELAYMPI": "syscall", + "syscall.IFT_FRDLCIENDPT": "syscall", + "syscall.IFT_FRELAY": "syscall", + "syscall.IFT_FRELAYDCE": "syscall", + "syscall.IFT_FRF16MFRBUNDLE": "syscall", + "syscall.IFT_FRFORWARD": "syscall", + "syscall.IFT_G703AT2MB": "syscall", + "syscall.IFT_G703AT64K": "syscall", + "syscall.IFT_GIF": "syscall", + "syscall.IFT_GIGABITETHERNET": "syscall", + "syscall.IFT_GR303IDT": "syscall", + "syscall.IFT_GR303RDT": "syscall", + "syscall.IFT_H323GATEKEEPER": "syscall", + "syscall.IFT_H323PROXY": "syscall", + "syscall.IFT_HDH1822": "syscall", + "syscall.IFT_HDLC": "syscall", + "syscall.IFT_HDSL2": "syscall", + "syscall.IFT_HIPERLAN2": "syscall", + "syscall.IFT_HIPPI": "syscall", + "syscall.IFT_HIPPIINTERFACE": "syscall", + "syscall.IFT_HOSTPAD": "syscall", + "syscall.IFT_HSSI": "syscall", + "syscall.IFT_HY": "syscall", + "syscall.IFT_IBM370PARCHAN": "syscall", + "syscall.IFT_IDSL": "syscall", + "syscall.IFT_IEEE1394": "syscall", + "syscall.IFT_IEEE80211": "syscall", + "syscall.IFT_IEEE80212": "syscall", + "syscall.IFT_IEEE8023ADLAG": "syscall", + "syscall.IFT_IFGSN": "syscall", + "syscall.IFT_IMT": "syscall", + "syscall.IFT_INFINIBAND": "syscall", + "syscall.IFT_INTERLEAVE": "syscall", + "syscall.IFT_IP": "syscall", + "syscall.IFT_IPFORWARD": "syscall", + "syscall.IFT_IPOVERATM": "syscall", + "syscall.IFT_IPOVERCDLC": "syscall", + "syscall.IFT_IPOVERCLAW": "syscall", + "syscall.IFT_IPSWITCH": "syscall", + "syscall.IFT_IPXIP": "syscall", + "syscall.IFT_ISDN": "syscall", + "syscall.IFT_ISDNBASIC": "syscall", + "syscall.IFT_ISDNPRIMARY": "syscall", + "syscall.IFT_ISDNS": "syscall", + "syscall.IFT_ISDNU": "syscall", + "syscall.IFT_ISO88022LLC": "syscall", + "syscall.IFT_ISO88023": "syscall", + "syscall.IFT_ISO88024": "syscall", + "syscall.IFT_ISO88025": "syscall", + "syscall.IFT_ISO88025CRFPINT": "syscall", + "syscall.IFT_ISO88025DTR": "syscall", + "syscall.IFT_ISO88025FIBER": "syscall", + "syscall.IFT_ISO88026": "syscall", + "syscall.IFT_ISUP": "syscall", + "syscall.IFT_L2VLAN": "syscall", + "syscall.IFT_L3IPVLAN": "syscall", + "syscall.IFT_L3IPXVLAN": "syscall", + "syscall.IFT_LAPB": "syscall", + "syscall.IFT_LAPD": "syscall", + "syscall.IFT_LAPF": "syscall", + "syscall.IFT_LINEGROUP": "syscall", + "syscall.IFT_LOCALTALK": "syscall", + "syscall.IFT_LOOP": "syscall", + "syscall.IFT_MEDIAMAILOVERIP": "syscall", + "syscall.IFT_MFSIGLINK": "syscall", + "syscall.IFT_MIOX25": "syscall", + "syscall.IFT_MODEM": "syscall", + "syscall.IFT_MPC": "syscall", + "syscall.IFT_MPLS": "syscall", + "syscall.IFT_MPLSTUNNEL": "syscall", + "syscall.IFT_MSDSL": "syscall", + "syscall.IFT_MVL": "syscall", + "syscall.IFT_MYRINET": "syscall", + "syscall.IFT_NFAS": "syscall", + "syscall.IFT_NSIP": "syscall", + "syscall.IFT_OPTICALCHANNEL": "syscall", + "syscall.IFT_OPTICALTRANSPORT": "syscall", + "syscall.IFT_OTHER": "syscall", + "syscall.IFT_P10": "syscall", + "syscall.IFT_P80": "syscall", + "syscall.IFT_PARA": "syscall", + "syscall.IFT_PDP": "syscall", + "syscall.IFT_PFLOG": "syscall", + "syscall.IFT_PFLOW": "syscall", + "syscall.IFT_PFSYNC": "syscall", + "syscall.IFT_PLC": "syscall", + "syscall.IFT_PON155": "syscall", + "syscall.IFT_PON622": "syscall", + "syscall.IFT_POS": "syscall", + "syscall.IFT_PPP": "syscall", + "syscall.IFT_PPPMULTILINKBUNDLE": "syscall", + "syscall.IFT_PROPATM": "syscall", + "syscall.IFT_PROPBWAP2MP": "syscall", + "syscall.IFT_PROPCNLS": "syscall", + "syscall.IFT_PROPDOCSWIRELESSDOWNSTREAM": "syscall", + "syscall.IFT_PROPDOCSWIRELESSMACLAYER": "syscall", + "syscall.IFT_PROPDOCSWIRELESSUPSTREAM": "syscall", + "syscall.IFT_PROPMUX": "syscall", + "syscall.IFT_PROPVIRTUAL": "syscall", + "syscall.IFT_PROPWIRELESSP2P": "syscall", + "syscall.IFT_PTPSERIAL": "syscall", + "syscall.IFT_PVC": "syscall", + "syscall.IFT_Q2931": "syscall", + "syscall.IFT_QLLC": "syscall", + "syscall.IFT_RADIOMAC": "syscall", + "syscall.IFT_RADSL": "syscall", + "syscall.IFT_REACHDSL": "syscall", + "syscall.IFT_RFC1483": "syscall", + "syscall.IFT_RS232": "syscall", + "syscall.IFT_RSRB": "syscall", + "syscall.IFT_SDLC": "syscall", + "syscall.IFT_SDSL": "syscall", + "syscall.IFT_SHDSL": "syscall", + "syscall.IFT_SIP": "syscall", + "syscall.IFT_SIPSIG": "syscall", + "syscall.IFT_SIPTG": "syscall", + "syscall.IFT_SLIP": "syscall", + "syscall.IFT_SMDSDXI": "syscall", + "syscall.IFT_SMDSICIP": "syscall", + "syscall.IFT_SONET": "syscall", + "syscall.IFT_SONETOVERHEADCHANNEL": "syscall", + "syscall.IFT_SONETPATH": "syscall", + "syscall.IFT_SONETVT": "syscall", + "syscall.IFT_SRP": "syscall", + "syscall.IFT_SS7SIGLINK": "syscall", + "syscall.IFT_STACKTOSTACK": "syscall", + "syscall.IFT_STARLAN": "syscall", + "syscall.IFT_STF": "syscall", + "syscall.IFT_T1": "syscall", + "syscall.IFT_TDLC": "syscall", + "syscall.IFT_TELINK": "syscall", + "syscall.IFT_TERMPAD": "syscall", + "syscall.IFT_TR008": "syscall", + "syscall.IFT_TRANSPHDLC": "syscall", + "syscall.IFT_TUNNEL": "syscall", + "syscall.IFT_ULTRA": "syscall", + "syscall.IFT_USB": "syscall", + "syscall.IFT_V11": "syscall", + "syscall.IFT_V35": "syscall", + "syscall.IFT_V36": "syscall", + "syscall.IFT_V37": "syscall", + "syscall.IFT_VDSL": "syscall", + "syscall.IFT_VIRTUALIPADDRESS": "syscall", + "syscall.IFT_VIRTUALTG": "syscall", + "syscall.IFT_VOICEDID": "syscall", + "syscall.IFT_VOICEEM": "syscall", + "syscall.IFT_VOICEEMFGD": "syscall", + "syscall.IFT_VOICEENCAP": "syscall", + "syscall.IFT_VOICEFGDEANA": "syscall", + "syscall.IFT_VOICEFXO": "syscall", + "syscall.IFT_VOICEFXS": "syscall", + "syscall.IFT_VOICEOVERATM": "syscall", + "syscall.IFT_VOICEOVERCABLE": "syscall", + "syscall.IFT_VOICEOVERFRAMERELAY": "syscall", + "syscall.IFT_VOICEOVERIP": "syscall", + "syscall.IFT_X213": "syscall", + "syscall.IFT_X25": "syscall", + "syscall.IFT_X25DDN": "syscall", + "syscall.IFT_X25HUNTGROUP": "syscall", + "syscall.IFT_X25MLP": "syscall", + "syscall.IFT_X25PLE": "syscall", + "syscall.IFT_XETHER": "syscall", + "syscall.IGNBRK": "syscall", + "syscall.IGNCR": "syscall", + "syscall.IGNORE": "syscall", + "syscall.IGNPAR": "syscall", + "syscall.IMAXBEL": "syscall", + "syscall.INFINITE": "syscall", + "syscall.INLCR": "syscall", + "syscall.INPCK": "syscall", + "syscall.INVALID_FILE_ATTRIBUTES": "syscall", + "syscall.IN_ACCESS": "syscall", + "syscall.IN_ALL_EVENTS": "syscall", + "syscall.IN_ATTRIB": "syscall", + "syscall.IN_CLASSA_HOST": "syscall", + "syscall.IN_CLASSA_MAX": "syscall", + "syscall.IN_CLASSA_NET": "syscall", + "syscall.IN_CLASSA_NSHIFT": "syscall", + "syscall.IN_CLASSB_HOST": "syscall", + "syscall.IN_CLASSB_MAX": "syscall", + "syscall.IN_CLASSB_NET": "syscall", + "syscall.IN_CLASSB_NSHIFT": "syscall", + "syscall.IN_CLASSC_HOST": "syscall", + "syscall.IN_CLASSC_NET": "syscall", + "syscall.IN_CLASSC_NSHIFT": "syscall", + "syscall.IN_CLASSD_HOST": "syscall", + "syscall.IN_CLASSD_NET": "syscall", + "syscall.IN_CLASSD_NSHIFT": "syscall", + "syscall.IN_CLOEXEC": "syscall", + "syscall.IN_CLOSE": "syscall", + "syscall.IN_CLOSE_NOWRITE": "syscall", + "syscall.IN_CLOSE_WRITE": "syscall", + "syscall.IN_CREATE": "syscall", + "syscall.IN_DELETE": "syscall", + "syscall.IN_DELETE_SELF": "syscall", + "syscall.IN_DONT_FOLLOW": "syscall", + "syscall.IN_EXCL_UNLINK": "syscall", + "syscall.IN_IGNORED": "syscall", + "syscall.IN_ISDIR": "syscall", + "syscall.IN_LINKLOCALNETNUM": "syscall", + "syscall.IN_LOOPBACKNET": "syscall", + "syscall.IN_MASK_ADD": "syscall", + "syscall.IN_MODIFY": "syscall", + "syscall.IN_MOVE": "syscall", + "syscall.IN_MOVED_FROM": "syscall", + "syscall.IN_MOVED_TO": "syscall", + "syscall.IN_MOVE_SELF": "syscall", + "syscall.IN_NONBLOCK": "syscall", + "syscall.IN_ONESHOT": "syscall", + "syscall.IN_ONLYDIR": "syscall", + "syscall.IN_OPEN": "syscall", + "syscall.IN_Q_OVERFLOW": "syscall", + "syscall.IN_RFC3021_HOST": "syscall", + "syscall.IN_RFC3021_MASK": "syscall", + "syscall.IN_RFC3021_NET": "syscall", + "syscall.IN_RFC3021_NSHIFT": "syscall", + "syscall.IN_UNMOUNT": "syscall", + "syscall.IOC_IN": "syscall", + "syscall.IOC_INOUT": "syscall", + "syscall.IOC_OUT": "syscall", + "syscall.IOC_WS2": "syscall", + "syscall.IPMreq": "syscall", + "syscall.IPMreqn": "syscall", + "syscall.IPPROTO_3PC": "syscall", + "syscall.IPPROTO_ADFS": "syscall", + "syscall.IPPROTO_AH": "syscall", + "syscall.IPPROTO_AHIP": "syscall", + "syscall.IPPROTO_APES": "syscall", + "syscall.IPPROTO_ARGUS": "syscall", + "syscall.IPPROTO_AX25": "syscall", + "syscall.IPPROTO_BHA": "syscall", + "syscall.IPPROTO_BLT": "syscall", + "syscall.IPPROTO_BRSATMON": "syscall", + "syscall.IPPROTO_CARP": "syscall", + "syscall.IPPROTO_CFTP": "syscall", + "syscall.IPPROTO_CHAOS": "syscall", + "syscall.IPPROTO_CMTP": "syscall", + "syscall.IPPROTO_COMP": "syscall", + "syscall.IPPROTO_CPHB": "syscall", + "syscall.IPPROTO_CPNX": "syscall", + "syscall.IPPROTO_DCCP": "syscall", + "syscall.IPPROTO_DDP": "syscall", + "syscall.IPPROTO_DGP": "syscall", + "syscall.IPPROTO_DIVERT": "syscall", + "syscall.IPPROTO_DONE": "syscall", + "syscall.IPPROTO_DSTOPTS": "syscall", + "syscall.IPPROTO_EGP": "syscall", + "syscall.IPPROTO_EMCON": "syscall", + "syscall.IPPROTO_ENCAP": "syscall", + "syscall.IPPROTO_EON": "syscall", + "syscall.IPPROTO_ESP": "syscall", + "syscall.IPPROTO_ETHERIP": "syscall", + "syscall.IPPROTO_FRAGMENT": "syscall", + "syscall.IPPROTO_GGP": "syscall", + "syscall.IPPROTO_GMTP": "syscall", + "syscall.IPPROTO_GRE": "syscall", + "syscall.IPPROTO_HELLO": "syscall", + "syscall.IPPROTO_HMP": "syscall", + "syscall.IPPROTO_HOPOPTS": "syscall", + "syscall.IPPROTO_ICMP": "syscall", + "syscall.IPPROTO_ICMPV6": "syscall", + "syscall.IPPROTO_IDP": "syscall", + "syscall.IPPROTO_IDPR": "syscall", + "syscall.IPPROTO_IDRP": "syscall", + "syscall.IPPROTO_IGMP": "syscall", + "syscall.IPPROTO_IGP": "syscall", + "syscall.IPPROTO_IGRP": "syscall", + "syscall.IPPROTO_IL": "syscall", + "syscall.IPPROTO_INLSP": "syscall", + "syscall.IPPROTO_INP": "syscall", + "syscall.IPPROTO_IP": "syscall", + "syscall.IPPROTO_IPCOMP": "syscall", + "syscall.IPPROTO_IPCV": "syscall", + "syscall.IPPROTO_IPEIP": "syscall", + "syscall.IPPROTO_IPIP": "syscall", + "syscall.IPPROTO_IPPC": "syscall", + "syscall.IPPROTO_IPV4": "syscall", + "syscall.IPPROTO_IPV6": "syscall", + "syscall.IPPROTO_IPV6_ICMP": "syscall", + "syscall.IPPROTO_IRTP": "syscall", + "syscall.IPPROTO_KRYPTOLAN": "syscall", + "syscall.IPPROTO_LARP": "syscall", + "syscall.IPPROTO_LEAF1": "syscall", + "syscall.IPPROTO_LEAF2": "syscall", + "syscall.IPPROTO_MAX": "syscall", + "syscall.IPPROTO_MAXID": "syscall", + "syscall.IPPROTO_MEAS": "syscall", + "syscall.IPPROTO_MH": "syscall", + "syscall.IPPROTO_MHRP": "syscall", + "syscall.IPPROTO_MICP": "syscall", + "syscall.IPPROTO_MOBILE": "syscall", + "syscall.IPPROTO_MPLS": "syscall", + "syscall.IPPROTO_MTP": "syscall", + "syscall.IPPROTO_MUX": "syscall", + "syscall.IPPROTO_ND": "syscall", + "syscall.IPPROTO_NHRP": "syscall", + "syscall.IPPROTO_NONE": "syscall", + "syscall.IPPROTO_NSP": "syscall", + "syscall.IPPROTO_NVPII": "syscall", + "syscall.IPPROTO_OLD_DIVERT": "syscall", + "syscall.IPPROTO_OSPFIGP": "syscall", + "syscall.IPPROTO_PFSYNC": "syscall", + "syscall.IPPROTO_PGM": "syscall", + "syscall.IPPROTO_PIGP": "syscall", + "syscall.IPPROTO_PIM": "syscall", + "syscall.IPPROTO_PRM": "syscall", + "syscall.IPPROTO_PUP": "syscall", + "syscall.IPPROTO_PVP": "syscall", + "syscall.IPPROTO_RAW": "syscall", + "syscall.IPPROTO_RCCMON": "syscall", + "syscall.IPPROTO_RDP": "syscall", + "syscall.IPPROTO_ROUTING": "syscall", + "syscall.IPPROTO_RSVP": "syscall", + "syscall.IPPROTO_RVD": "syscall", + "syscall.IPPROTO_SATEXPAK": "syscall", + "syscall.IPPROTO_SATMON": "syscall", + "syscall.IPPROTO_SCCSP": "syscall", + "syscall.IPPROTO_SCTP": "syscall", + "syscall.IPPROTO_SDRP": "syscall", + "syscall.IPPROTO_SEND": "syscall", + "syscall.IPPROTO_SEP": "syscall", + "syscall.IPPROTO_SKIP": "syscall", + "syscall.IPPROTO_SPACER": "syscall", + "syscall.IPPROTO_SRPC": "syscall", + "syscall.IPPROTO_ST": "syscall", + "syscall.IPPROTO_SVMTP": "syscall", + "syscall.IPPROTO_SWIPE": "syscall", + "syscall.IPPROTO_TCF": "syscall", + "syscall.IPPROTO_TCP": "syscall", + "syscall.IPPROTO_TLSP": "syscall", + "syscall.IPPROTO_TP": "syscall", + "syscall.IPPROTO_TPXX": "syscall", + "syscall.IPPROTO_TRUNK1": "syscall", + "syscall.IPPROTO_TRUNK2": "syscall", + "syscall.IPPROTO_TTP": "syscall", + "syscall.IPPROTO_UDP": "syscall", + "syscall.IPPROTO_UDPLITE": "syscall", + "syscall.IPPROTO_VINES": "syscall", + "syscall.IPPROTO_VISA": "syscall", + "syscall.IPPROTO_VMTP": "syscall", + "syscall.IPPROTO_VRRP": "syscall", + "syscall.IPPROTO_WBEXPAK": "syscall", + "syscall.IPPROTO_WBMON": "syscall", + "syscall.IPPROTO_WSN": "syscall", + "syscall.IPPROTO_XNET": "syscall", + "syscall.IPPROTO_XTP": "syscall", + "syscall.IPV6_2292DSTOPTS": "syscall", + "syscall.IPV6_2292HOPLIMIT": "syscall", + "syscall.IPV6_2292HOPOPTS": "syscall", + "syscall.IPV6_2292NEXTHOP": "syscall", + "syscall.IPV6_2292PKTINFO": "syscall", + "syscall.IPV6_2292PKTOPTIONS": "syscall", + "syscall.IPV6_2292RTHDR": "syscall", + "syscall.IPV6_ADDRFORM": "syscall", + "syscall.IPV6_ADD_MEMBERSHIP": "syscall", + "syscall.IPV6_AUTHHDR": "syscall", + "syscall.IPV6_AUTH_LEVEL": "syscall", + "syscall.IPV6_AUTOFLOWLABEL": "syscall", + "syscall.IPV6_BINDANY": "syscall", + "syscall.IPV6_BINDV6ONLY": "syscall", + "syscall.IPV6_BOUND_IF": "syscall", + "syscall.IPV6_CHECKSUM": "syscall", + "syscall.IPV6_DEFAULT_MULTICAST_HOPS": "syscall", + "syscall.IPV6_DEFAULT_MULTICAST_LOOP": "syscall", + "syscall.IPV6_DEFHLIM": "syscall", + "syscall.IPV6_DONTFRAG": "syscall", + "syscall.IPV6_DROP_MEMBERSHIP": "syscall", + "syscall.IPV6_DSTOPTS": "syscall", + "syscall.IPV6_ESP_NETWORK_LEVEL": "syscall", + "syscall.IPV6_ESP_TRANS_LEVEL": "syscall", + "syscall.IPV6_FAITH": "syscall", + "syscall.IPV6_FLOWINFO_MASK": "syscall", + "syscall.IPV6_FLOWLABEL_MASK": "syscall", + "syscall.IPV6_FRAGTTL": "syscall", + "syscall.IPV6_FW_ADD": "syscall", + "syscall.IPV6_FW_DEL": "syscall", + "syscall.IPV6_FW_FLUSH": "syscall", + "syscall.IPV6_FW_GET": "syscall", + "syscall.IPV6_FW_ZERO": "syscall", + "syscall.IPV6_HLIMDEC": "syscall", + "syscall.IPV6_HOPLIMIT": "syscall", + "syscall.IPV6_HOPOPTS": "syscall", + "syscall.IPV6_IPCOMP_LEVEL": "syscall", + "syscall.IPV6_IPSEC_POLICY": "syscall", + "syscall.IPV6_JOIN_ANYCAST": "syscall", + "syscall.IPV6_JOIN_GROUP": "syscall", + "syscall.IPV6_LEAVE_ANYCAST": "syscall", + "syscall.IPV6_LEAVE_GROUP": "syscall", + "syscall.IPV6_MAXHLIM": "syscall", + "syscall.IPV6_MAXOPTHDR": "syscall", + "syscall.IPV6_MAXPACKET": "syscall", + "syscall.IPV6_MAX_GROUP_SRC_FILTER": "syscall", + "syscall.IPV6_MAX_MEMBERSHIPS": "syscall", + "syscall.IPV6_MAX_SOCK_SRC_FILTER": "syscall", + "syscall.IPV6_MIN_MEMBERSHIPS": "syscall", + "syscall.IPV6_MMTU": "syscall", + "syscall.IPV6_MSFILTER": "syscall", + "syscall.IPV6_MTU": "syscall", + "syscall.IPV6_MTU_DISCOVER": "syscall", + "syscall.IPV6_MULTICAST_HOPS": "syscall", + "syscall.IPV6_MULTICAST_IF": "syscall", + "syscall.IPV6_MULTICAST_LOOP": "syscall", + "syscall.IPV6_NEXTHOP": "syscall", + "syscall.IPV6_OPTIONS": "syscall", + "syscall.IPV6_PATHMTU": "syscall", + "syscall.IPV6_PIPEX": "syscall", + "syscall.IPV6_PKTINFO": "syscall", + "syscall.IPV6_PMTUDISC_DO": "syscall", + "syscall.IPV6_PMTUDISC_DONT": "syscall", + "syscall.IPV6_PMTUDISC_PROBE": "syscall", + "syscall.IPV6_PMTUDISC_WANT": "syscall", + "syscall.IPV6_PORTRANGE": "syscall", + "syscall.IPV6_PORTRANGE_DEFAULT": "syscall", + "syscall.IPV6_PORTRANGE_HIGH": "syscall", + "syscall.IPV6_PORTRANGE_LOW": "syscall", + "syscall.IPV6_PREFER_TEMPADDR": "syscall", + "syscall.IPV6_RECVDSTOPTS": "syscall", + "syscall.IPV6_RECVERR": "syscall", + "syscall.IPV6_RECVHOPLIMIT": "syscall", + "syscall.IPV6_RECVHOPOPTS": "syscall", + "syscall.IPV6_RECVPATHMTU": "syscall", + "syscall.IPV6_RECVPKTINFO": "syscall", + "syscall.IPV6_RECVRTHDR": "syscall", + "syscall.IPV6_RECVTCLASS": "syscall", + "syscall.IPV6_ROUTER_ALERT": "syscall", + "syscall.IPV6_RTABLE": "syscall", + "syscall.IPV6_RTHDR": "syscall", + "syscall.IPV6_RTHDRDSTOPTS": "syscall", + "syscall.IPV6_RTHDR_LOOSE": "syscall", + "syscall.IPV6_RTHDR_STRICT": "syscall", + "syscall.IPV6_RTHDR_TYPE_0": "syscall", + "syscall.IPV6_RXDSTOPTS": "syscall", + "syscall.IPV6_RXHOPOPTS": "syscall", + "syscall.IPV6_SOCKOPT_RESERVED1": "syscall", + "syscall.IPV6_TCLASS": "syscall", + "syscall.IPV6_UNICAST_HOPS": "syscall", + "syscall.IPV6_USE_MIN_MTU": "syscall", + "syscall.IPV6_V6ONLY": "syscall", + "syscall.IPV6_VERSION": "syscall", + "syscall.IPV6_VERSION_MASK": "syscall", + "syscall.IPV6_XFRM_POLICY": "syscall", + "syscall.IP_ADD_MEMBERSHIP": "syscall", + "syscall.IP_ADD_SOURCE_MEMBERSHIP": "syscall", + "syscall.IP_AUTH_LEVEL": "syscall", + "syscall.IP_BINDANY": "syscall", + "syscall.IP_BLOCK_SOURCE": "syscall", + "syscall.IP_BOUND_IF": "syscall", + "syscall.IP_DEFAULT_MULTICAST_LOOP": "syscall", + "syscall.IP_DEFAULT_MULTICAST_TTL": "syscall", + "syscall.IP_DF": "syscall", + "syscall.IP_DONTFRAG": "syscall", + "syscall.IP_DROP_MEMBERSHIP": "syscall", + "syscall.IP_DROP_SOURCE_MEMBERSHIP": "syscall", + "syscall.IP_DUMMYNET3": "syscall", + "syscall.IP_DUMMYNET_CONFIGURE": "syscall", + "syscall.IP_DUMMYNET_DEL": "syscall", + "syscall.IP_DUMMYNET_FLUSH": "syscall", + "syscall.IP_DUMMYNET_GET": "syscall", + "syscall.IP_EF": "syscall", + "syscall.IP_ERRORMTU": "syscall", + "syscall.IP_ESP_NETWORK_LEVEL": "syscall", + "syscall.IP_ESP_TRANS_LEVEL": "syscall", + "syscall.IP_FAITH": "syscall", + "syscall.IP_FREEBIND": "syscall", + "syscall.IP_FW3": "syscall", + "syscall.IP_FW_ADD": "syscall", + "syscall.IP_FW_DEL": "syscall", + "syscall.IP_FW_FLUSH": "syscall", + "syscall.IP_FW_GET": "syscall", + "syscall.IP_FW_NAT_CFG": "syscall", + "syscall.IP_FW_NAT_DEL": "syscall", + "syscall.IP_FW_NAT_GET_CONFIG": "syscall", + "syscall.IP_FW_NAT_GET_LOG": "syscall", + "syscall.IP_FW_RESETLOG": "syscall", + "syscall.IP_FW_TABLE_ADD": "syscall", + "syscall.IP_FW_TABLE_DEL": "syscall", + "syscall.IP_FW_TABLE_FLUSH": "syscall", + "syscall.IP_FW_TABLE_GETSIZE": "syscall", + "syscall.IP_FW_TABLE_LIST": "syscall", + "syscall.IP_FW_ZERO": "syscall", + "syscall.IP_HDRINCL": "syscall", + "syscall.IP_IPCOMP_LEVEL": "syscall", + "syscall.IP_IPSECFLOWINFO": "syscall", + "syscall.IP_IPSEC_LOCAL_AUTH": "syscall", + "syscall.IP_IPSEC_LOCAL_CRED": "syscall", + "syscall.IP_IPSEC_LOCAL_ID": "syscall", + "syscall.IP_IPSEC_POLICY": "syscall", + "syscall.IP_IPSEC_REMOTE_AUTH": "syscall", + "syscall.IP_IPSEC_REMOTE_CRED": "syscall", + "syscall.IP_IPSEC_REMOTE_ID": "syscall", + "syscall.IP_MAXPACKET": "syscall", + "syscall.IP_MAX_GROUP_SRC_FILTER": "syscall", + "syscall.IP_MAX_MEMBERSHIPS": "syscall", + "syscall.IP_MAX_SOCK_MUTE_FILTER": "syscall", + "syscall.IP_MAX_SOCK_SRC_FILTER": "syscall", + "syscall.IP_MAX_SOURCE_FILTER": "syscall", + "syscall.IP_MF": "syscall", + "syscall.IP_MINFRAGSIZE": "syscall", + "syscall.IP_MINTTL": "syscall", + "syscall.IP_MIN_MEMBERSHIPS": "syscall", + "syscall.IP_MSFILTER": "syscall", + "syscall.IP_MSS": "syscall", + "syscall.IP_MTU": "syscall", + "syscall.IP_MTU_DISCOVER": "syscall", + "syscall.IP_MULTICAST_IF": "syscall", + "syscall.IP_MULTICAST_IFINDEX": "syscall", + "syscall.IP_MULTICAST_LOOP": "syscall", + "syscall.IP_MULTICAST_TTL": "syscall", + "syscall.IP_MULTICAST_VIF": "syscall", + "syscall.IP_NAT__XXX": "syscall", + "syscall.IP_OFFMASK": "syscall", + "syscall.IP_OLD_FW_ADD": "syscall", + "syscall.IP_OLD_FW_DEL": "syscall", + "syscall.IP_OLD_FW_FLUSH": "syscall", + "syscall.IP_OLD_FW_GET": "syscall", + "syscall.IP_OLD_FW_RESETLOG": "syscall", + "syscall.IP_OLD_FW_ZERO": "syscall", + "syscall.IP_ONESBCAST": "syscall", + "syscall.IP_OPTIONS": "syscall", + "syscall.IP_ORIGDSTADDR": "syscall", + "syscall.IP_PASSSEC": "syscall", + "syscall.IP_PIPEX": "syscall", + "syscall.IP_PKTINFO": "syscall", + "syscall.IP_PKTOPTIONS": "syscall", + "syscall.IP_PMTUDISC": "syscall", + "syscall.IP_PMTUDISC_DO": "syscall", + "syscall.IP_PMTUDISC_DONT": "syscall", + "syscall.IP_PMTUDISC_PROBE": "syscall", + "syscall.IP_PMTUDISC_WANT": "syscall", + "syscall.IP_PORTRANGE": "syscall", + "syscall.IP_PORTRANGE_DEFAULT": "syscall", + "syscall.IP_PORTRANGE_HIGH": "syscall", + "syscall.IP_PORTRANGE_LOW": "syscall", + "syscall.IP_RECVDSTADDR": "syscall", + "syscall.IP_RECVDSTPORT": "syscall", + "syscall.IP_RECVERR": "syscall", + "syscall.IP_RECVIF": "syscall", + "syscall.IP_RECVOPTS": "syscall", + "syscall.IP_RECVORIGDSTADDR": "syscall", + "syscall.IP_RECVPKTINFO": "syscall", + "syscall.IP_RECVRETOPTS": "syscall", + "syscall.IP_RECVRTABLE": "syscall", + "syscall.IP_RECVTOS": "syscall", + "syscall.IP_RECVTTL": "syscall", + "syscall.IP_RETOPTS": "syscall", + "syscall.IP_RF": "syscall", + "syscall.IP_ROUTER_ALERT": "syscall", + "syscall.IP_RSVP_OFF": "syscall", + "syscall.IP_RSVP_ON": "syscall", + "syscall.IP_RSVP_VIF_OFF": "syscall", + "syscall.IP_RSVP_VIF_ON": "syscall", + "syscall.IP_RTABLE": "syscall", + "syscall.IP_SENDSRCADDR": "syscall", + "syscall.IP_STRIPHDR": "syscall", + "syscall.IP_TOS": "syscall", + "syscall.IP_TRAFFIC_MGT_BACKGROUND": "syscall", + "syscall.IP_TRANSPARENT": "syscall", + "syscall.IP_TTL": "syscall", + "syscall.IP_UNBLOCK_SOURCE": "syscall", + "syscall.IP_XFRM_POLICY": "syscall", + "syscall.IPv6MTUInfo": "syscall", + "syscall.IPv6Mreq": "syscall", + "syscall.ISIG": "syscall", + "syscall.ISTRIP": "syscall", + "syscall.IUCLC": "syscall", + "syscall.IUTF8": "syscall", + "syscall.IXANY": "syscall", + "syscall.IXOFF": "syscall", + "syscall.IXON": "syscall", + "syscall.IfAddrmsg": "syscall", + "syscall.IfAnnounceMsghdr": "syscall", + "syscall.IfData": "syscall", + "syscall.IfInfomsg": "syscall", + "syscall.IfMsghdr": "syscall", + "syscall.IfaMsghdr": "syscall", + "syscall.IfmaMsghdr": "syscall", + "syscall.IfmaMsghdr2": "syscall", + "syscall.ImplementsGetwd": "syscall", + "syscall.Inet4Pktinfo": "syscall", + "syscall.Inet6Pktinfo": "syscall", + "syscall.InotifyAddWatch": "syscall", + "syscall.InotifyEvent": "syscall", + "syscall.InotifyInit": "syscall", + "syscall.InotifyInit1": "syscall", + "syscall.InotifyRmWatch": "syscall", + "syscall.InterfaceAddrMessage": "syscall", + "syscall.InterfaceAnnounceMessage": "syscall", + "syscall.InterfaceInfo": "syscall", + "syscall.InterfaceMessage": "syscall", + "syscall.InterfaceMulticastAddrMessage": "syscall", + "syscall.InvalidHandle": "syscall", + "syscall.Ioperm": "syscall", + "syscall.Iopl": "syscall", + "syscall.Iovec": "syscall", + "syscall.IpAdapterInfo": "syscall", + "syscall.IpAddrString": "syscall", + "syscall.IpAddressString": "syscall", + "syscall.IpMaskString": "syscall", + "syscall.Issetugid": "syscall", + "syscall.KEY_ALL_ACCESS": "syscall", + "syscall.KEY_CREATE_LINK": "syscall", + "syscall.KEY_CREATE_SUB_KEY": "syscall", + "syscall.KEY_ENUMERATE_SUB_KEYS": "syscall", + "syscall.KEY_EXECUTE": "syscall", + "syscall.KEY_NOTIFY": "syscall", + "syscall.KEY_QUERY_VALUE": "syscall", + "syscall.KEY_READ": "syscall", + "syscall.KEY_SET_VALUE": "syscall", + "syscall.KEY_WOW64_32KEY": "syscall", + "syscall.KEY_WOW64_64KEY": "syscall", + "syscall.KEY_WRITE": "syscall", + "syscall.Kevent": "syscall", + "syscall.Kevent_t": "syscall", + "syscall.Kill": "syscall", + "syscall.Klogctl": "syscall", + "syscall.Kqueue": "syscall", + "syscall.LANG_ENGLISH": "syscall", + "syscall.LAYERED_PROTOCOL": "syscall", + "syscall.LCNT_OVERLOAD_FLUSH": "syscall", + "syscall.LINUX_REBOOT_CMD_CAD_OFF": "syscall", + "syscall.LINUX_REBOOT_CMD_CAD_ON": "syscall", + "syscall.LINUX_REBOOT_CMD_HALT": "syscall", + "syscall.LINUX_REBOOT_CMD_KEXEC": "syscall", + "syscall.LINUX_REBOOT_CMD_POWER_OFF": "syscall", + "syscall.LINUX_REBOOT_CMD_RESTART": "syscall", + "syscall.LINUX_REBOOT_CMD_RESTART2": "syscall", + "syscall.LINUX_REBOOT_CMD_SW_SUSPEND": "syscall", + "syscall.LINUX_REBOOT_MAGIC1": "syscall", + "syscall.LINUX_REBOOT_MAGIC2": "syscall", + "syscall.LOCK_EX": "syscall", + "syscall.LOCK_NB": "syscall", + "syscall.LOCK_SH": "syscall", + "syscall.LOCK_UN": "syscall", + "syscall.LazyDLL": "syscall", + "syscall.LazyProc": "syscall", + "syscall.Lchown": "syscall", + "syscall.Linger": "syscall", + "syscall.Link": "syscall", + "syscall.Listen": "syscall", + "syscall.Listxattr": "syscall", + "syscall.LoadCancelIoEx": "syscall", + "syscall.LoadConnectEx": "syscall", + "syscall.LoadDLL": "syscall", + "syscall.LoadGetAddrInfo": "syscall", + "syscall.LoadLibrary": "syscall", + "syscall.LoadSetFileCompletionNotificationModes": "syscall", + "syscall.LocalFree": "syscall", + "syscall.Log2phys_t": "syscall", + "syscall.LookupAccountName": "syscall", + "syscall.LookupAccountSid": "syscall", + "syscall.LookupSID": "syscall", + "syscall.LsfJump": "syscall", + "syscall.LsfSocket": "syscall", + "syscall.LsfStmt": "syscall", + "syscall.Lstat": "syscall", + "syscall.MADV_AUTOSYNC": "syscall", + "syscall.MADV_CAN_REUSE": "syscall", + "syscall.MADV_CORE": "syscall", + "syscall.MADV_DOFORK": "syscall", + "syscall.MADV_DONTFORK": "syscall", + "syscall.MADV_DONTNEED": "syscall", + "syscall.MADV_FREE": "syscall", + "syscall.MADV_FREE_REUSABLE": "syscall", + "syscall.MADV_FREE_REUSE": "syscall", + "syscall.MADV_HUGEPAGE": "syscall", + "syscall.MADV_HWPOISON": "syscall", + "syscall.MADV_MERGEABLE": "syscall", + "syscall.MADV_NOCORE": "syscall", + "syscall.MADV_NOHUGEPAGE": "syscall", + "syscall.MADV_NORMAL": "syscall", + "syscall.MADV_NOSYNC": "syscall", + "syscall.MADV_PROTECT": "syscall", + "syscall.MADV_RANDOM": "syscall", + "syscall.MADV_REMOVE": "syscall", + "syscall.MADV_SEQUENTIAL": "syscall", + "syscall.MADV_UNMERGEABLE": "syscall", + "syscall.MADV_WILLNEED": "syscall", + "syscall.MADV_ZERO_WIRED_PAGES": "syscall", + "syscall.MAP_32BIT": "syscall", + "syscall.MAP_ANON": "syscall", + "syscall.MAP_ANONYMOUS": "syscall", + "syscall.MAP_COPY": "syscall", + "syscall.MAP_DENYWRITE": "syscall", + "syscall.MAP_EXECUTABLE": "syscall", + "syscall.MAP_FILE": "syscall", + "syscall.MAP_FIXED": "syscall", + "syscall.MAP_GROWSDOWN": "syscall", + "syscall.MAP_HASSEMAPHORE": "syscall", + "syscall.MAP_HUGETLB": "syscall", + "syscall.MAP_JIT": "syscall", + "syscall.MAP_LOCKED": "syscall", + "syscall.MAP_NOCACHE": "syscall", + "syscall.MAP_NOCORE": "syscall", + "syscall.MAP_NOEXTEND": "syscall", + "syscall.MAP_NONBLOCK": "syscall", + "syscall.MAP_NORESERVE": "syscall", + "syscall.MAP_NOSYNC": "syscall", + "syscall.MAP_POPULATE": "syscall", + "syscall.MAP_PREFAULT_READ": "syscall", + "syscall.MAP_PRIVATE": "syscall", + "syscall.MAP_RENAME": "syscall", + "syscall.MAP_RESERVED0080": "syscall", + "syscall.MAP_RESERVED0100": "syscall", + "syscall.MAP_SHARED": "syscall", + "syscall.MAP_STACK": "syscall", + "syscall.MAP_TYPE": "syscall", + "syscall.MAXLEN_IFDESCR": "syscall", + "syscall.MAXLEN_PHYSADDR": "syscall", + "syscall.MAX_ADAPTER_ADDRESS_LENGTH": "syscall", + "syscall.MAX_ADAPTER_DESCRIPTION_LENGTH": "syscall", + "syscall.MAX_ADAPTER_NAME_LENGTH": "syscall", + "syscall.MAX_COMPUTERNAME_LENGTH": "syscall", + "syscall.MAX_INTERFACE_NAME_LEN": "syscall", + "syscall.MAX_LONG_PATH": "syscall", + "syscall.MAX_PATH": "syscall", + "syscall.MAX_PROTOCOL_CHAIN": "syscall", + "syscall.MCL_CURRENT": "syscall", + "syscall.MCL_FUTURE": "syscall", + "syscall.MNT_DETACH": "syscall", + "syscall.MNT_EXPIRE": "syscall", + "syscall.MNT_FORCE": "syscall", + "syscall.MSG_BCAST": "syscall", + "syscall.MSG_CMSG_CLOEXEC": "syscall", + "syscall.MSG_COMPAT": "syscall", + "syscall.MSG_CONFIRM": "syscall", + "syscall.MSG_CONTROLMBUF": "syscall", + "syscall.MSG_CTRUNC": "syscall", + "syscall.MSG_DONTROUTE": "syscall", + "syscall.MSG_DONTWAIT": "syscall", + "syscall.MSG_EOF": "syscall", + "syscall.MSG_EOR": "syscall", + "syscall.MSG_ERRQUEUE": "syscall", + "syscall.MSG_FASTOPEN": "syscall", + "syscall.MSG_FIN": "syscall", + "syscall.MSG_FLUSH": "syscall", + "syscall.MSG_HAVEMORE": "syscall", + "syscall.MSG_HOLD": "syscall", + "syscall.MSG_IOVUSRSPACE": "syscall", + "syscall.MSG_LENUSRSPACE": "syscall", + "syscall.MSG_MCAST": "syscall", + "syscall.MSG_MORE": "syscall", + "syscall.MSG_NAMEMBUF": "syscall", + "syscall.MSG_NBIO": "syscall", + "syscall.MSG_NEEDSA": "syscall", + "syscall.MSG_NOSIGNAL": "syscall", + "syscall.MSG_NOTIFICATION": "syscall", + "syscall.MSG_OOB": "syscall", + "syscall.MSG_PEEK": "syscall", + "syscall.MSG_PROXY": "syscall", + "syscall.MSG_RCVMORE": "syscall", + "syscall.MSG_RST": "syscall", + "syscall.MSG_SEND": "syscall", + "syscall.MSG_SYN": "syscall", + "syscall.MSG_TRUNC": "syscall", + "syscall.MSG_TRYHARD": "syscall", + "syscall.MSG_USERFLAGS": "syscall", + "syscall.MSG_WAITALL": "syscall", + "syscall.MSG_WAITFORONE": "syscall", + "syscall.MSG_WAITSTREAM": "syscall", + "syscall.MS_ACTIVE": "syscall", + "syscall.MS_ASYNC": "syscall", + "syscall.MS_BIND": "syscall", + "syscall.MS_DEACTIVATE": "syscall", + "syscall.MS_DIRSYNC": "syscall", + "syscall.MS_INVALIDATE": "syscall", + "syscall.MS_I_VERSION": "syscall", + "syscall.MS_KERNMOUNT": "syscall", + "syscall.MS_KILLPAGES": "syscall", + "syscall.MS_MANDLOCK": "syscall", + "syscall.MS_MGC_MSK": "syscall", + "syscall.MS_MGC_VAL": "syscall", + "syscall.MS_MOVE": "syscall", + "syscall.MS_NOATIME": "syscall", + "syscall.MS_NODEV": "syscall", + "syscall.MS_NODIRATIME": "syscall", + "syscall.MS_NOEXEC": "syscall", + "syscall.MS_NOSUID": "syscall", + "syscall.MS_NOUSER": "syscall", + "syscall.MS_POSIXACL": "syscall", + "syscall.MS_PRIVATE": "syscall", + "syscall.MS_RDONLY": "syscall", + "syscall.MS_REC": "syscall", + "syscall.MS_RELATIME": "syscall", + "syscall.MS_REMOUNT": "syscall", + "syscall.MS_RMT_MASK": "syscall", + "syscall.MS_SHARED": "syscall", + "syscall.MS_SILENT": "syscall", + "syscall.MS_SLAVE": "syscall", + "syscall.MS_STRICTATIME": "syscall", + "syscall.MS_SYNC": "syscall", + "syscall.MS_SYNCHRONOUS": "syscall", + "syscall.MS_UNBINDABLE": "syscall", + "syscall.Madvise": "syscall", + "syscall.MapViewOfFile": "syscall", + "syscall.MaxTokenInfoClass": "syscall", + "syscall.Mclpool": "syscall", + "syscall.MibIfRow": "syscall", + "syscall.Mkdir": "syscall", + "syscall.Mkdirat": "syscall", + "syscall.Mkfifo": "syscall", + "syscall.Mknod": "syscall", + "syscall.Mknodat": "syscall", + "syscall.Mlock": "syscall", + "syscall.Mlockall": "syscall", + "syscall.Mmap": "syscall", + "syscall.Mount": "syscall", + "syscall.MoveFile": "syscall", + "syscall.Mprotect": "syscall", + "syscall.Msghdr": "syscall", + "syscall.Munlock": "syscall", + "syscall.Munlockall": "syscall", + "syscall.Munmap": "syscall", + "syscall.MustLoadDLL": "syscall", + "syscall.NAME_MAX": "syscall", + "syscall.NETLINK_ADD_MEMBERSHIP": "syscall", + "syscall.NETLINK_AUDIT": "syscall", + "syscall.NETLINK_BROADCAST_ERROR": "syscall", + "syscall.NETLINK_CONNECTOR": "syscall", + "syscall.NETLINK_DNRTMSG": "syscall", + "syscall.NETLINK_DROP_MEMBERSHIP": "syscall", + "syscall.NETLINK_ECRYPTFS": "syscall", + "syscall.NETLINK_FIB_LOOKUP": "syscall", + "syscall.NETLINK_FIREWALL": "syscall", + "syscall.NETLINK_GENERIC": "syscall", + "syscall.NETLINK_INET_DIAG": "syscall", + "syscall.NETLINK_IP6_FW": "syscall", + "syscall.NETLINK_ISCSI": "syscall", + "syscall.NETLINK_KOBJECT_UEVENT": "syscall", + "syscall.NETLINK_NETFILTER": "syscall", + "syscall.NETLINK_NFLOG": "syscall", + "syscall.NETLINK_NO_ENOBUFS": "syscall", + "syscall.NETLINK_PKTINFO": "syscall", + "syscall.NETLINK_RDMA": "syscall", + "syscall.NETLINK_ROUTE": "syscall", + "syscall.NETLINK_SCSITRANSPORT": "syscall", + "syscall.NETLINK_SELINUX": "syscall", + "syscall.NETLINK_UNUSED": "syscall", + "syscall.NETLINK_USERSOCK": "syscall", + "syscall.NETLINK_XFRM": "syscall", + "syscall.NET_RT_DUMP": "syscall", + "syscall.NET_RT_DUMP2": "syscall", + "syscall.NET_RT_FLAGS": "syscall", + "syscall.NET_RT_IFLIST": "syscall", + "syscall.NET_RT_IFLIST2": "syscall", + "syscall.NET_RT_IFLISTL": "syscall", + "syscall.NET_RT_IFMALIST": "syscall", + "syscall.NET_RT_MAXID": "syscall", + "syscall.NET_RT_OIFLIST": "syscall", + "syscall.NET_RT_OOIFLIST": "syscall", + "syscall.NET_RT_STAT": "syscall", + "syscall.NET_RT_STATS": "syscall", + "syscall.NET_RT_TABLE": "syscall", + "syscall.NET_RT_TRASH": "syscall", + "syscall.NLA_ALIGNTO": "syscall", + "syscall.NLA_F_NESTED": "syscall", + "syscall.NLA_F_NET_BYTEORDER": "syscall", + "syscall.NLA_HDRLEN": "syscall", + "syscall.NLMSG_ALIGNTO": "syscall", + "syscall.NLMSG_DONE": "syscall", + "syscall.NLMSG_ERROR": "syscall", + "syscall.NLMSG_HDRLEN": "syscall", + "syscall.NLMSG_MIN_TYPE": "syscall", + "syscall.NLMSG_NOOP": "syscall", + "syscall.NLMSG_OVERRUN": "syscall", + "syscall.NLM_F_ACK": "syscall", + "syscall.NLM_F_APPEND": "syscall", + "syscall.NLM_F_ATOMIC": "syscall", + "syscall.NLM_F_CREATE": "syscall", + "syscall.NLM_F_DUMP": "syscall", + "syscall.NLM_F_ECHO": "syscall", + "syscall.NLM_F_EXCL": "syscall", + "syscall.NLM_F_MATCH": "syscall", + "syscall.NLM_F_MULTI": "syscall", + "syscall.NLM_F_REPLACE": "syscall", + "syscall.NLM_F_REQUEST": "syscall", + "syscall.NLM_F_ROOT": "syscall", + "syscall.NOFLSH": "syscall", + "syscall.NOTE_ABSOLUTE": "syscall", + "syscall.NOTE_ATTRIB": "syscall", + "syscall.NOTE_CHILD": "syscall", + "syscall.NOTE_DELETE": "syscall", + "syscall.NOTE_EOF": "syscall", + "syscall.NOTE_EXEC": "syscall", + "syscall.NOTE_EXIT": "syscall", + "syscall.NOTE_EXITSTATUS": "syscall", + "syscall.NOTE_EXTEND": "syscall", + "syscall.NOTE_FFAND": "syscall", + "syscall.NOTE_FFCOPY": "syscall", + "syscall.NOTE_FFCTRLMASK": "syscall", + "syscall.NOTE_FFLAGSMASK": "syscall", + "syscall.NOTE_FFNOP": "syscall", + "syscall.NOTE_FFOR": "syscall", + "syscall.NOTE_FORK": "syscall", + "syscall.NOTE_LINK": "syscall", + "syscall.NOTE_LOWAT": "syscall", + "syscall.NOTE_NONE": "syscall", + "syscall.NOTE_NSECONDS": "syscall", + "syscall.NOTE_PCTRLMASK": "syscall", + "syscall.NOTE_PDATAMASK": "syscall", + "syscall.NOTE_REAP": "syscall", + "syscall.NOTE_RENAME": "syscall", + "syscall.NOTE_RESOURCEEND": "syscall", + "syscall.NOTE_REVOKE": "syscall", + "syscall.NOTE_SECONDS": "syscall", + "syscall.NOTE_SIGNAL": "syscall", + "syscall.NOTE_TRACK": "syscall", + "syscall.NOTE_TRACKERR": "syscall", + "syscall.NOTE_TRIGGER": "syscall", + "syscall.NOTE_TRUNCATE": "syscall", + "syscall.NOTE_USECONDS": "syscall", + "syscall.NOTE_VM_ERROR": "syscall", + "syscall.NOTE_VM_PRESSURE": "syscall", + "syscall.NOTE_VM_PRESSURE_SUDDEN_TERMINATE": "syscall", + "syscall.NOTE_VM_PRESSURE_TERMINATE": "syscall", + "syscall.NOTE_WRITE": "syscall", + "syscall.NameCanonical": "syscall", + "syscall.NameCanonicalEx": "syscall", + "syscall.NameDisplay": "syscall", + "syscall.NameDnsDomain": "syscall", + "syscall.NameFullyQualifiedDN": "syscall", + "syscall.NameSamCompatible": "syscall", + "syscall.NameServicePrincipal": "syscall", + "syscall.NameUniqueId": "syscall", + "syscall.NameUnknown": "syscall", + "syscall.NameUserPrincipal": "syscall", + "syscall.Nanosleep": "syscall", + "syscall.NetApiBufferFree": "syscall", + "syscall.NetGetJoinInformation": "syscall", + "syscall.NetSetupDomainName": "syscall", + "syscall.NetSetupUnjoined": "syscall", + "syscall.NetSetupUnknownStatus": "syscall", + "syscall.NetSetupWorkgroupName": "syscall", + "syscall.NetUserGetInfo": "syscall", + "syscall.NetlinkMessage": "syscall", + "syscall.NetlinkRIB": "syscall", + "syscall.NetlinkRouteAttr": "syscall", + "syscall.NetlinkRouteRequest": "syscall", + "syscall.NewCallback": "syscall", + "syscall.NewLazyDLL": "syscall", + "syscall.NlAttr": "syscall", + "syscall.NlMsgerr": "syscall", + "syscall.NlMsghdr": "syscall", + "syscall.NsecToFiletime": "syscall", + "syscall.NsecToTimespec": "syscall", + "syscall.NsecToTimeval": "syscall", + "syscall.Ntohs": "syscall", + "syscall.OCRNL": "syscall", + "syscall.OFDEL": "syscall", + "syscall.OFILL": "syscall", + "syscall.OFIOGETBMAP": "syscall", + "syscall.OID_PKIX_KP_SERVER_AUTH": "syscall", + "syscall.OID_SERVER_GATED_CRYPTO": "syscall", + "syscall.OID_SGC_NETSCAPE": "syscall", + "syscall.OLCUC": "syscall", + "syscall.ONLCR": "syscall", + "syscall.ONLRET": "syscall", + "syscall.ONOCR": "syscall", + "syscall.ONOEOT": "syscall", + "syscall.OPEN_ALWAYS": "syscall", + "syscall.OPEN_EXISTING": "syscall", + "syscall.OPOST": "syscall", + "syscall.O_ACCMODE": "syscall", + "syscall.O_ALERT": "syscall", + "syscall.O_ALT_IO": "syscall", + "syscall.O_APPEND": "syscall", + "syscall.O_ASYNC": "syscall", + "syscall.O_CLOEXEC": "syscall", + "syscall.O_CREAT": "syscall", + "syscall.O_DIRECT": "syscall", + "syscall.O_DIRECTORY": "syscall", + "syscall.O_DSYNC": "syscall", + "syscall.O_EVTONLY": "syscall", + "syscall.O_EXCL": "syscall", + "syscall.O_EXEC": "syscall", + "syscall.O_EXLOCK": "syscall", + "syscall.O_FSYNC": "syscall", + "syscall.O_LARGEFILE": "syscall", + "syscall.O_NDELAY": "syscall", + "syscall.O_NOATIME": "syscall", + "syscall.O_NOCTTY": "syscall", + "syscall.O_NOFOLLOW": "syscall", + "syscall.O_NONBLOCK": "syscall", + "syscall.O_NOSIGPIPE": "syscall", + "syscall.O_POPUP": "syscall", + "syscall.O_RDONLY": "syscall", + "syscall.O_RDWR": "syscall", + "syscall.O_RSYNC": "syscall", + "syscall.O_SHLOCK": "syscall", + "syscall.O_SYMLINK": "syscall", + "syscall.O_SYNC": "syscall", + "syscall.O_TRUNC": "syscall", + "syscall.O_TTY_INIT": "syscall", + "syscall.O_WRONLY": "syscall", + "syscall.Open": "syscall", + "syscall.OpenCurrentProcessToken": "syscall", + "syscall.OpenProcess": "syscall", + "syscall.OpenProcessToken": "syscall", + "syscall.Openat": "syscall", + "syscall.Overlapped": "syscall", + "syscall.PACKET_ADD_MEMBERSHIP": "syscall", + "syscall.PACKET_BROADCAST": "syscall", + "syscall.PACKET_DROP_MEMBERSHIP": "syscall", + "syscall.PACKET_FASTROUTE": "syscall", + "syscall.PACKET_HOST": "syscall", + "syscall.PACKET_LOOPBACK": "syscall", + "syscall.PACKET_MR_ALLMULTI": "syscall", + "syscall.PACKET_MR_MULTICAST": "syscall", + "syscall.PACKET_MR_PROMISC": "syscall", + "syscall.PACKET_MULTICAST": "syscall", + "syscall.PACKET_OTHERHOST": "syscall", + "syscall.PACKET_OUTGOING": "syscall", + "syscall.PACKET_RECV_OUTPUT": "syscall", + "syscall.PACKET_RX_RING": "syscall", + "syscall.PACKET_STATISTICS": "syscall", + "syscall.PAGE_EXECUTE_READ": "syscall", + "syscall.PAGE_EXECUTE_READWRITE": "syscall", + "syscall.PAGE_EXECUTE_WRITECOPY": "syscall", + "syscall.PAGE_READONLY": "syscall", + "syscall.PAGE_READWRITE": "syscall", + "syscall.PAGE_WRITECOPY": "syscall", + "syscall.PARENB": "syscall", + "syscall.PARMRK": "syscall", + "syscall.PARODD": "syscall", + "syscall.PENDIN": "syscall", + "syscall.PFL_HIDDEN": "syscall", + "syscall.PFL_MATCHES_PROTOCOL_ZERO": "syscall", + "syscall.PFL_MULTIPLE_PROTO_ENTRIES": "syscall", + "syscall.PFL_NETWORKDIRECT_PROVIDER": "syscall", + "syscall.PFL_RECOMMENDED_PROTO_ENTRY": "syscall", + "syscall.PF_FLUSH": "syscall", + "syscall.PKCS_7_ASN_ENCODING": "syscall", + "syscall.PMC5_PIPELINE_FLUSH": "syscall", + "syscall.PRIO_PGRP": "syscall", + "syscall.PRIO_PROCESS": "syscall", + "syscall.PRIO_USER": "syscall", + "syscall.PRI_IOFLUSH": "syscall", + "syscall.PROCESS_QUERY_INFORMATION": "syscall", + "syscall.PROCESS_TERMINATE": "syscall", + "syscall.PROT_EXEC": "syscall", + "syscall.PROT_GROWSDOWN": "syscall", + "syscall.PROT_GROWSUP": "syscall", + "syscall.PROT_NONE": "syscall", + "syscall.PROT_READ": "syscall", + "syscall.PROT_WRITE": "syscall", + "syscall.PROV_DH_SCHANNEL": "syscall", + "syscall.PROV_DSS": "syscall", + "syscall.PROV_DSS_DH": "syscall", + "syscall.PROV_EC_ECDSA_FULL": "syscall", + "syscall.PROV_EC_ECDSA_SIG": "syscall", + "syscall.PROV_EC_ECNRA_FULL": "syscall", + "syscall.PROV_EC_ECNRA_SIG": "syscall", + "syscall.PROV_FORTEZZA": "syscall", + "syscall.PROV_INTEL_SEC": "syscall", + "syscall.PROV_MS_EXCHANGE": "syscall", + "syscall.PROV_REPLACE_OWF": "syscall", + "syscall.PROV_RNG": "syscall", + "syscall.PROV_RSA_AES": "syscall", + "syscall.PROV_RSA_FULL": "syscall", + "syscall.PROV_RSA_SCHANNEL": "syscall", + "syscall.PROV_RSA_SIG": "syscall", + "syscall.PROV_SPYRUS_LYNKS": "syscall", + "syscall.PROV_SSL": "syscall", + "syscall.PR_CAPBSET_DROP": "syscall", + "syscall.PR_CAPBSET_READ": "syscall", + "syscall.PR_CLEAR_SECCOMP_FILTER": "syscall", + "syscall.PR_ENDIAN_BIG": "syscall", + "syscall.PR_ENDIAN_LITTLE": "syscall", + "syscall.PR_ENDIAN_PPC_LITTLE": "syscall", + "syscall.PR_FPEMU_NOPRINT": "syscall", + "syscall.PR_FPEMU_SIGFPE": "syscall", + "syscall.PR_FP_EXC_ASYNC": "syscall", + "syscall.PR_FP_EXC_DISABLED": "syscall", + "syscall.PR_FP_EXC_DIV": "syscall", + "syscall.PR_FP_EXC_INV": "syscall", + "syscall.PR_FP_EXC_NONRECOV": "syscall", + "syscall.PR_FP_EXC_OVF": "syscall", + "syscall.PR_FP_EXC_PRECISE": "syscall", + "syscall.PR_FP_EXC_RES": "syscall", + "syscall.PR_FP_EXC_SW_ENABLE": "syscall", + "syscall.PR_FP_EXC_UND": "syscall", + "syscall.PR_GET_DUMPABLE": "syscall", + "syscall.PR_GET_ENDIAN": "syscall", + "syscall.PR_GET_FPEMU": "syscall", + "syscall.PR_GET_FPEXC": "syscall", + "syscall.PR_GET_KEEPCAPS": "syscall", + "syscall.PR_GET_NAME": "syscall", + "syscall.PR_GET_PDEATHSIG": "syscall", + "syscall.PR_GET_SECCOMP": "syscall", + "syscall.PR_GET_SECCOMP_FILTER": "syscall", + "syscall.PR_GET_SECUREBITS": "syscall", + "syscall.PR_GET_TIMERSLACK": "syscall", + "syscall.PR_GET_TIMING": "syscall", + "syscall.PR_GET_TSC": "syscall", + "syscall.PR_GET_UNALIGN": "syscall", + "syscall.PR_MCE_KILL": "syscall", + "syscall.PR_MCE_KILL_CLEAR": "syscall", + "syscall.PR_MCE_KILL_DEFAULT": "syscall", + "syscall.PR_MCE_KILL_EARLY": "syscall", + "syscall.PR_MCE_KILL_GET": "syscall", + "syscall.PR_MCE_KILL_LATE": "syscall", + "syscall.PR_MCE_KILL_SET": "syscall", + "syscall.PR_SECCOMP_FILTER_EVENT": "syscall", + "syscall.PR_SECCOMP_FILTER_SYSCALL": "syscall", + "syscall.PR_SET_DUMPABLE": "syscall", + "syscall.PR_SET_ENDIAN": "syscall", + "syscall.PR_SET_FPEMU": "syscall", + "syscall.PR_SET_FPEXC": "syscall", + "syscall.PR_SET_KEEPCAPS": "syscall", + "syscall.PR_SET_NAME": "syscall", + "syscall.PR_SET_PDEATHSIG": "syscall", + "syscall.PR_SET_PTRACER": "syscall", + "syscall.PR_SET_SECCOMP": "syscall", + "syscall.PR_SET_SECCOMP_FILTER": "syscall", + "syscall.PR_SET_SECUREBITS": "syscall", + "syscall.PR_SET_TIMERSLACK": "syscall", + "syscall.PR_SET_TIMING": "syscall", + "syscall.PR_SET_TSC": "syscall", + "syscall.PR_SET_UNALIGN": "syscall", + "syscall.PR_TASK_PERF_EVENTS_DISABLE": "syscall", + "syscall.PR_TASK_PERF_EVENTS_ENABLE": "syscall", + "syscall.PR_TIMING_STATISTICAL": "syscall", + "syscall.PR_TIMING_TIMESTAMP": "syscall", + "syscall.PR_TSC_ENABLE": "syscall", + "syscall.PR_TSC_SIGSEGV": "syscall", + "syscall.PR_UNALIGN_NOPRINT": "syscall", + "syscall.PR_UNALIGN_SIGBUS": "syscall", + "syscall.PTRACE_ARCH_PRCTL": "syscall", + "syscall.PTRACE_ATTACH": "syscall", + "syscall.PTRACE_CONT": "syscall", + "syscall.PTRACE_DETACH": "syscall", + "syscall.PTRACE_EVENT_CLONE": "syscall", + "syscall.PTRACE_EVENT_EXEC": "syscall", + "syscall.PTRACE_EVENT_EXIT": "syscall", + "syscall.PTRACE_EVENT_FORK": "syscall", + "syscall.PTRACE_EVENT_VFORK": "syscall", + "syscall.PTRACE_EVENT_VFORK_DONE": "syscall", + "syscall.PTRACE_GETCRUNCHREGS": "syscall", + "syscall.PTRACE_GETEVENTMSG": "syscall", + "syscall.PTRACE_GETFPREGS": "syscall", + "syscall.PTRACE_GETFPXREGS": "syscall", + "syscall.PTRACE_GETHBPREGS": "syscall", + "syscall.PTRACE_GETREGS": "syscall", + "syscall.PTRACE_GETREGSET": "syscall", + "syscall.PTRACE_GETSIGINFO": "syscall", + "syscall.PTRACE_GETVFPREGS": "syscall", + "syscall.PTRACE_GETWMMXREGS": "syscall", + "syscall.PTRACE_GET_THREAD_AREA": "syscall", + "syscall.PTRACE_KILL": "syscall", + "syscall.PTRACE_OLDSETOPTIONS": "syscall", + "syscall.PTRACE_O_MASK": "syscall", + "syscall.PTRACE_O_TRACECLONE": "syscall", + "syscall.PTRACE_O_TRACEEXEC": "syscall", + "syscall.PTRACE_O_TRACEEXIT": "syscall", + "syscall.PTRACE_O_TRACEFORK": "syscall", + "syscall.PTRACE_O_TRACESYSGOOD": "syscall", + "syscall.PTRACE_O_TRACEVFORK": "syscall", + "syscall.PTRACE_O_TRACEVFORKDONE": "syscall", + "syscall.PTRACE_PEEKDATA": "syscall", + "syscall.PTRACE_PEEKTEXT": "syscall", + "syscall.PTRACE_PEEKUSR": "syscall", + "syscall.PTRACE_POKEDATA": "syscall", + "syscall.PTRACE_POKETEXT": "syscall", + "syscall.PTRACE_POKEUSR": "syscall", + "syscall.PTRACE_SETCRUNCHREGS": "syscall", + "syscall.PTRACE_SETFPREGS": "syscall", + "syscall.PTRACE_SETFPXREGS": "syscall", + "syscall.PTRACE_SETHBPREGS": "syscall", + "syscall.PTRACE_SETOPTIONS": "syscall", + "syscall.PTRACE_SETREGS": "syscall", + "syscall.PTRACE_SETREGSET": "syscall", + "syscall.PTRACE_SETSIGINFO": "syscall", + "syscall.PTRACE_SETVFPREGS": "syscall", + "syscall.PTRACE_SETWMMXREGS": "syscall", + "syscall.PTRACE_SET_SYSCALL": "syscall", + "syscall.PTRACE_SET_THREAD_AREA": "syscall", + "syscall.PTRACE_SINGLEBLOCK": "syscall", + "syscall.PTRACE_SINGLESTEP": "syscall", + "syscall.PTRACE_SYSCALL": "syscall", + "syscall.PTRACE_SYSEMU": "syscall", + "syscall.PTRACE_SYSEMU_SINGLESTEP": "syscall", + "syscall.PTRACE_TRACEME": "syscall", + "syscall.PT_ATTACH": "syscall", + "syscall.PT_ATTACHEXC": "syscall", + "syscall.PT_CONTINUE": "syscall", + "syscall.PT_DATA_ADDR": "syscall", + "syscall.PT_DENY_ATTACH": "syscall", + "syscall.PT_DETACH": "syscall", + "syscall.PT_FIRSTMACH": "syscall", + "syscall.PT_FORCEQUOTA": "syscall", + "syscall.PT_KILL": "syscall", + "syscall.PT_MASK": "syscall", + "syscall.PT_READ_D": "syscall", + "syscall.PT_READ_I": "syscall", + "syscall.PT_READ_U": "syscall", + "syscall.PT_SIGEXC": "syscall", + "syscall.PT_STEP": "syscall", + "syscall.PT_TEXT_ADDR": "syscall", + "syscall.PT_TEXT_END_ADDR": "syscall", + "syscall.PT_THUPDATE": "syscall", + "syscall.PT_TRACE_ME": "syscall", + "syscall.PT_WRITE_D": "syscall", + "syscall.PT_WRITE_I": "syscall", + "syscall.PT_WRITE_U": "syscall", + "syscall.ParseDirent": "syscall", + "syscall.ParseNetlinkMessage": "syscall", + "syscall.ParseNetlinkRouteAttr": "syscall", + "syscall.ParseRoutingMessage": "syscall", + "syscall.ParseRoutingSockaddr": "syscall", + "syscall.ParseSocketControlMessage": "syscall", + "syscall.ParseUnixCredentials": "syscall", + "syscall.ParseUnixRights": "syscall", + "syscall.PathMax": "syscall", + "syscall.Pathconf": "syscall", + "syscall.Pause": "syscall", + "syscall.Pipe": "syscall", + "syscall.Pipe2": "syscall", + "syscall.PivotRoot": "syscall", + "syscall.PostQueuedCompletionStatus": "syscall", + "syscall.Pread": "syscall", + "syscall.Proc": "syscall", + "syscall.ProcAttr": "syscall", + "syscall.ProcessInformation": "syscall", + "syscall.Protoent": "syscall", + "syscall.PtraceAttach": "syscall", + "syscall.PtraceCont": "syscall", + "syscall.PtraceDetach": "syscall", + "syscall.PtraceGetEventMsg": "syscall", + "syscall.PtraceGetRegs": "syscall", + "syscall.PtracePeekData": "syscall", + "syscall.PtracePeekText": "syscall", + "syscall.PtracePokeData": "syscall", + "syscall.PtracePokeText": "syscall", + "syscall.PtraceRegs": "syscall", + "syscall.PtraceSetOptions": "syscall", + "syscall.PtraceSetRegs": "syscall", + "syscall.PtraceSingleStep": "syscall", + "syscall.PtraceSyscall": "syscall", + "syscall.Pwrite": "syscall", + "syscall.REG_BINARY": "syscall", + "syscall.REG_DWORD": "syscall", + "syscall.REG_DWORD_BIG_ENDIAN": "syscall", + "syscall.REG_DWORD_LITTLE_ENDIAN": "syscall", + "syscall.REG_EXPAND_SZ": "syscall", + "syscall.REG_FULL_RESOURCE_DESCRIPTOR": "syscall", + "syscall.REG_LINK": "syscall", + "syscall.REG_MULTI_SZ": "syscall", + "syscall.REG_NONE": "syscall", + "syscall.REG_QWORD": "syscall", + "syscall.REG_QWORD_LITTLE_ENDIAN": "syscall", + "syscall.REG_RESOURCE_LIST": "syscall", + "syscall.REG_RESOURCE_REQUIREMENTS_LIST": "syscall", + "syscall.REG_SZ": "syscall", + "syscall.RLIMIT_AS": "syscall", + "syscall.RLIMIT_CORE": "syscall", + "syscall.RLIMIT_CPU": "syscall", + "syscall.RLIMIT_DATA": "syscall", + "syscall.RLIMIT_FSIZE": "syscall", + "syscall.RLIMIT_NOFILE": "syscall", + "syscall.RLIMIT_STACK": "syscall", + "syscall.RLIM_INFINITY": "syscall", + "syscall.RTAX_ADVMSS": "syscall", + "syscall.RTAX_AUTHOR": "syscall", + "syscall.RTAX_BRD": "syscall", + "syscall.RTAX_CWND": "syscall", + "syscall.RTAX_DST": "syscall", + "syscall.RTAX_FEATURES": "syscall", + "syscall.RTAX_FEATURE_ALLFRAG": "syscall", + "syscall.RTAX_FEATURE_ECN": "syscall", + "syscall.RTAX_FEATURE_SACK": "syscall", + "syscall.RTAX_FEATURE_TIMESTAMP": "syscall", + "syscall.RTAX_GATEWAY": "syscall", + "syscall.RTAX_GENMASK": "syscall", + "syscall.RTAX_HOPLIMIT": "syscall", + "syscall.RTAX_IFA": "syscall", + "syscall.RTAX_IFP": "syscall", + "syscall.RTAX_INITCWND": "syscall", + "syscall.RTAX_INITRWND": "syscall", + "syscall.RTAX_LABEL": "syscall", + "syscall.RTAX_LOCK": "syscall", + "syscall.RTAX_MAX": "syscall", + "syscall.RTAX_MTU": "syscall", + "syscall.RTAX_NETMASK": "syscall", + "syscall.RTAX_REORDERING": "syscall", + "syscall.RTAX_RTO_MIN": "syscall", + "syscall.RTAX_RTT": "syscall", + "syscall.RTAX_RTTVAR": "syscall", + "syscall.RTAX_SRC": "syscall", + "syscall.RTAX_SRCMASK": "syscall", + "syscall.RTAX_SSTHRESH": "syscall", + "syscall.RTAX_TAG": "syscall", + "syscall.RTAX_UNSPEC": "syscall", + "syscall.RTAX_WINDOW": "syscall", + "syscall.RTA_ALIGNTO": "syscall", + "syscall.RTA_AUTHOR": "syscall", + "syscall.RTA_BRD": "syscall", + "syscall.RTA_CACHEINFO": "syscall", + "syscall.RTA_DST": "syscall", + "syscall.RTA_FLOW": "syscall", + "syscall.RTA_GATEWAY": "syscall", + "syscall.RTA_GENMASK": "syscall", + "syscall.RTA_IFA": "syscall", + "syscall.RTA_IFP": "syscall", + "syscall.RTA_IIF": "syscall", + "syscall.RTA_LABEL": "syscall", + "syscall.RTA_MAX": "syscall", + "syscall.RTA_METRICS": "syscall", + "syscall.RTA_MULTIPATH": "syscall", + "syscall.RTA_NETMASK": "syscall", + "syscall.RTA_OIF": "syscall", + "syscall.RTA_PREFSRC": "syscall", + "syscall.RTA_PRIORITY": "syscall", + "syscall.RTA_SRC": "syscall", + "syscall.RTA_SRCMASK": "syscall", + "syscall.RTA_TABLE": "syscall", + "syscall.RTA_TAG": "syscall", + "syscall.RTA_UNSPEC": "syscall", + "syscall.RTCF_DIRECTSRC": "syscall", + "syscall.RTCF_DOREDIRECT": "syscall", + "syscall.RTCF_LOG": "syscall", + "syscall.RTCF_MASQ": "syscall", + "syscall.RTCF_NAT": "syscall", + "syscall.RTCF_VALVE": "syscall", + "syscall.RTF_ADDRCLASSMASK": "syscall", + "syscall.RTF_ADDRCONF": "syscall", + "syscall.RTF_ALLONLINK": "syscall", + "syscall.RTF_ANNOUNCE": "syscall", + "syscall.RTF_BLACKHOLE": "syscall", + "syscall.RTF_BROADCAST": "syscall", + "syscall.RTF_CACHE": "syscall", + "syscall.RTF_CLONED": "syscall", + "syscall.RTF_CLONING": "syscall", + "syscall.RTF_CONDEMNED": "syscall", + "syscall.RTF_DEFAULT": "syscall", + "syscall.RTF_DELCLONE": "syscall", + "syscall.RTF_DONE": "syscall", + "syscall.RTF_DYNAMIC": "syscall", + "syscall.RTF_FLOW": "syscall", + "syscall.RTF_FMASK": "syscall", + "syscall.RTF_GATEWAY": "syscall", + "syscall.RTF_HOST": "syscall", + "syscall.RTF_IFREF": "syscall", + "syscall.RTF_IFSCOPE": "syscall", + "syscall.RTF_INTERFACE": "syscall", + "syscall.RTF_IRTT": "syscall", + "syscall.RTF_LINKRT": "syscall", + "syscall.RTF_LLDATA": "syscall", + "syscall.RTF_LLINFO": "syscall", + "syscall.RTF_LOCAL": "syscall", + "syscall.RTF_MASK": "syscall", + "syscall.RTF_MODIFIED": "syscall", + "syscall.RTF_MPATH": "syscall", + "syscall.RTF_MPLS": "syscall", + "syscall.RTF_MSS": "syscall", + "syscall.RTF_MTU": "syscall", + "syscall.RTF_MULTICAST": "syscall", + "syscall.RTF_NAT": "syscall", + "syscall.RTF_NOFORWARD": "syscall", + "syscall.RTF_NONEXTHOP": "syscall", + "syscall.RTF_NOPMTUDISC": "syscall", + "syscall.RTF_PERMANENT_ARP": "syscall", + "syscall.RTF_PINNED": "syscall", + "syscall.RTF_POLICY": "syscall", + "syscall.RTF_PRCLONING": "syscall", + "syscall.RTF_PROTO1": "syscall", + "syscall.RTF_PROTO2": "syscall", + "syscall.RTF_PROTO3": "syscall", + "syscall.RTF_REINSTATE": "syscall", + "syscall.RTF_REJECT": "syscall", + "syscall.RTF_RNH_LOCKED": "syscall", + "syscall.RTF_SOURCE": "syscall", + "syscall.RTF_SRC": "syscall", + "syscall.RTF_STATIC": "syscall", + "syscall.RTF_STICKY": "syscall", + "syscall.RTF_THROW": "syscall", + "syscall.RTF_TUNNEL": "syscall", + "syscall.RTF_UP": "syscall", + "syscall.RTF_USETRAILERS": "syscall", + "syscall.RTF_WASCLONED": "syscall", + "syscall.RTF_WINDOW": "syscall", + "syscall.RTF_XRESOLVE": "syscall", + "syscall.RTM_ADD": "syscall", + "syscall.RTM_BASE": "syscall", + "syscall.RTM_CHANGE": "syscall", + "syscall.RTM_CHGADDR": "syscall", + "syscall.RTM_DELACTION": "syscall", + "syscall.RTM_DELADDR": "syscall", + "syscall.RTM_DELADDRLABEL": "syscall", + "syscall.RTM_DELETE": "syscall", + "syscall.RTM_DELLINK": "syscall", + "syscall.RTM_DELMADDR": "syscall", + "syscall.RTM_DELNEIGH": "syscall", + "syscall.RTM_DELQDISC": "syscall", + "syscall.RTM_DELROUTE": "syscall", + "syscall.RTM_DELRULE": "syscall", + "syscall.RTM_DELTCLASS": "syscall", + "syscall.RTM_DELTFILTER": "syscall", + "syscall.RTM_DESYNC": "syscall", + "syscall.RTM_F_CLONED": "syscall", + "syscall.RTM_F_EQUALIZE": "syscall", + "syscall.RTM_F_NOTIFY": "syscall", + "syscall.RTM_F_PREFIX": "syscall", + "syscall.RTM_GET": "syscall", + "syscall.RTM_GET2": "syscall", + "syscall.RTM_GETACTION": "syscall", + "syscall.RTM_GETADDR": "syscall", + "syscall.RTM_GETADDRLABEL": "syscall", + "syscall.RTM_GETANYCAST": "syscall", + "syscall.RTM_GETDCB": "syscall", + "syscall.RTM_GETLINK": "syscall", + "syscall.RTM_GETMULTICAST": "syscall", + "syscall.RTM_GETNEIGH": "syscall", + "syscall.RTM_GETNEIGHTBL": "syscall", + "syscall.RTM_GETQDISC": "syscall", + "syscall.RTM_GETROUTE": "syscall", + "syscall.RTM_GETRULE": "syscall", + "syscall.RTM_GETTCLASS": "syscall", + "syscall.RTM_GETTFILTER": "syscall", + "syscall.RTM_IEEE80211": "syscall", + "syscall.RTM_IFANNOUNCE": "syscall", + "syscall.RTM_IFINFO": "syscall", + "syscall.RTM_IFINFO2": "syscall", + "syscall.RTM_LLINFO_UPD": "syscall", + "syscall.RTM_LOCK": "syscall", + "syscall.RTM_LOSING": "syscall", + "syscall.RTM_MAX": "syscall", + "syscall.RTM_MAXSIZE": "syscall", + "syscall.RTM_MISS": "syscall", + "syscall.RTM_NEWACTION": "syscall", + "syscall.RTM_NEWADDR": "syscall", + "syscall.RTM_NEWADDRLABEL": "syscall", + "syscall.RTM_NEWLINK": "syscall", + "syscall.RTM_NEWMADDR": "syscall", + "syscall.RTM_NEWMADDR2": "syscall", + "syscall.RTM_NEWNDUSEROPT": "syscall", + "syscall.RTM_NEWNEIGH": "syscall", + "syscall.RTM_NEWNEIGHTBL": "syscall", + "syscall.RTM_NEWPREFIX": "syscall", + "syscall.RTM_NEWQDISC": "syscall", + "syscall.RTM_NEWROUTE": "syscall", + "syscall.RTM_NEWRULE": "syscall", + "syscall.RTM_NEWTCLASS": "syscall", + "syscall.RTM_NEWTFILTER": "syscall", + "syscall.RTM_NR_FAMILIES": "syscall", + "syscall.RTM_NR_MSGTYPES": "syscall", + "syscall.RTM_OIFINFO": "syscall", + "syscall.RTM_OLDADD": "syscall", + "syscall.RTM_OLDDEL": "syscall", + "syscall.RTM_OOIFINFO": "syscall", + "syscall.RTM_REDIRECT": "syscall", + "syscall.RTM_RESOLVE": "syscall", + "syscall.RTM_RTTUNIT": "syscall", + "syscall.RTM_SETDCB": "syscall", + "syscall.RTM_SETGATE": "syscall", + "syscall.RTM_SETLINK": "syscall", + "syscall.RTM_SETNEIGHTBL": "syscall", + "syscall.RTM_VERSION": "syscall", + "syscall.RTNH_ALIGNTO": "syscall", + "syscall.RTNH_F_DEAD": "syscall", + "syscall.RTNH_F_ONLINK": "syscall", + "syscall.RTNH_F_PERVASIVE": "syscall", + "syscall.RTNLGRP_IPV4_IFADDR": "syscall", + "syscall.RTNLGRP_IPV4_MROUTE": "syscall", + "syscall.RTNLGRP_IPV4_ROUTE": "syscall", + "syscall.RTNLGRP_IPV4_RULE": "syscall", + "syscall.RTNLGRP_IPV6_IFADDR": "syscall", + "syscall.RTNLGRP_IPV6_IFINFO": "syscall", + "syscall.RTNLGRP_IPV6_MROUTE": "syscall", + "syscall.RTNLGRP_IPV6_PREFIX": "syscall", + "syscall.RTNLGRP_IPV6_ROUTE": "syscall", + "syscall.RTNLGRP_IPV6_RULE": "syscall", + "syscall.RTNLGRP_LINK": "syscall", + "syscall.RTNLGRP_ND_USEROPT": "syscall", + "syscall.RTNLGRP_NEIGH": "syscall", + "syscall.RTNLGRP_NONE": "syscall", + "syscall.RTNLGRP_NOTIFY": "syscall", + "syscall.RTNLGRP_TC": "syscall", + "syscall.RTN_ANYCAST": "syscall", + "syscall.RTN_BLACKHOLE": "syscall", + "syscall.RTN_BROADCAST": "syscall", + "syscall.RTN_LOCAL": "syscall", + "syscall.RTN_MAX": "syscall", + "syscall.RTN_MULTICAST": "syscall", + "syscall.RTN_NAT": "syscall", + "syscall.RTN_PROHIBIT": "syscall", + "syscall.RTN_THROW": "syscall", + "syscall.RTN_UNICAST": "syscall", + "syscall.RTN_UNREACHABLE": "syscall", + "syscall.RTN_UNSPEC": "syscall", + "syscall.RTN_XRESOLVE": "syscall", + "syscall.RTPROT_BIRD": "syscall", + "syscall.RTPROT_BOOT": "syscall", + "syscall.RTPROT_DHCP": "syscall", + "syscall.RTPROT_DNROUTED": "syscall", + "syscall.RTPROT_GATED": "syscall", + "syscall.RTPROT_KERNEL": "syscall", + "syscall.RTPROT_MRT": "syscall", + "syscall.RTPROT_NTK": "syscall", + "syscall.RTPROT_RA": "syscall", + "syscall.RTPROT_REDIRECT": "syscall", + "syscall.RTPROT_STATIC": "syscall", + "syscall.RTPROT_UNSPEC": "syscall", + "syscall.RTPROT_XORP": "syscall", + "syscall.RTPROT_ZEBRA": "syscall", + "syscall.RTV_EXPIRE": "syscall", + "syscall.RTV_HOPCOUNT": "syscall", + "syscall.RTV_MTU": "syscall", + "syscall.RTV_RPIPE": "syscall", + "syscall.RTV_RTT": "syscall", + "syscall.RTV_RTTVAR": "syscall", + "syscall.RTV_SPIPE": "syscall", + "syscall.RTV_SSTHRESH": "syscall", + "syscall.RTV_WEIGHT": "syscall", + "syscall.RT_CACHING_CONTEXT": "syscall", + "syscall.RT_CLASS_DEFAULT": "syscall", + "syscall.RT_CLASS_LOCAL": "syscall", + "syscall.RT_CLASS_MAIN": "syscall", + "syscall.RT_CLASS_MAX": "syscall", + "syscall.RT_CLASS_UNSPEC": "syscall", + "syscall.RT_DEFAULT_FIB": "syscall", + "syscall.RT_NORTREF": "syscall", + "syscall.RT_SCOPE_HOST": "syscall", + "syscall.RT_SCOPE_LINK": "syscall", + "syscall.RT_SCOPE_NOWHERE": "syscall", + "syscall.RT_SCOPE_SITE": "syscall", + "syscall.RT_SCOPE_UNIVERSE": "syscall", + "syscall.RT_TABLEID_MAX": "syscall", + "syscall.RT_TABLE_COMPAT": "syscall", + "syscall.RT_TABLE_DEFAULT": "syscall", + "syscall.RT_TABLE_LOCAL": "syscall", + "syscall.RT_TABLE_MAIN": "syscall", + "syscall.RT_TABLE_MAX": "syscall", + "syscall.RT_TABLE_UNSPEC": "syscall", + "syscall.RUSAGE_CHILDREN": "syscall", + "syscall.RUSAGE_SELF": "syscall", + "syscall.RUSAGE_THREAD": "syscall", + "syscall.Radvisory_t": "syscall", + "syscall.RawSockaddr": "syscall", + "syscall.RawSockaddrAny": "syscall", + "syscall.RawSockaddrDatalink": "syscall", + "syscall.RawSockaddrInet4": "syscall", + "syscall.RawSockaddrInet6": "syscall", + "syscall.RawSockaddrLinklayer": "syscall", + "syscall.RawSockaddrNetlink": "syscall", + "syscall.RawSockaddrUnix": "syscall", + "syscall.RawSyscall": "syscall", + "syscall.RawSyscall6": "syscall", + "syscall.Read": "syscall", + "syscall.ReadConsole": "syscall", + "syscall.ReadDirectoryChanges": "syscall", + "syscall.ReadDirent": "syscall", + "syscall.ReadFile": "syscall", + "syscall.Readlink": "syscall", + "syscall.Reboot": "syscall", + "syscall.Recvfrom": "syscall", + "syscall.Recvmsg": "syscall", + "syscall.RegCloseKey": "syscall", + "syscall.RegEnumKeyEx": "syscall", + "syscall.RegOpenKeyEx": "syscall", + "syscall.RegQueryInfoKey": "syscall", + "syscall.RegQueryValueEx": "syscall", + "syscall.RemoveDirectory": "syscall", + "syscall.Removexattr": "syscall", + "syscall.Rename": "syscall", + "syscall.Renameat": "syscall", + "syscall.Revoke": "syscall", + "syscall.Rlimit": "syscall", + "syscall.Rmdir": "syscall", + "syscall.RouteMessage": "syscall", + "syscall.RouteRIB": "syscall", + "syscall.RtAttr": "syscall", + "syscall.RtGenmsg": "syscall", + "syscall.RtMetrics": "syscall", + "syscall.RtMsg": "syscall", + "syscall.RtMsghdr": "syscall", + "syscall.RtNexthop": "syscall", + "syscall.Rusage": "syscall", + "syscall.SCM_BINTIME": "syscall", + "syscall.SCM_CREDENTIALS": "syscall", + "syscall.SCM_CREDS": "syscall", + "syscall.SCM_RIGHTS": "syscall", + "syscall.SCM_TIMESTAMP": "syscall", + "syscall.SCM_TIMESTAMPING": "syscall", + "syscall.SCM_TIMESTAMPNS": "syscall", + "syscall.SCM_TIMESTAMP_MONOTONIC": "syscall", + "syscall.SHUT_RD": "syscall", + "syscall.SHUT_RDWR": "syscall", + "syscall.SHUT_WR": "syscall", + "syscall.SID": "syscall", + "syscall.SIDAndAttributes": "syscall", + "syscall.SIGABRT": "syscall", + "syscall.SIGALRM": "syscall", + "syscall.SIGBUS": "syscall", + "syscall.SIGCHLD": "syscall", + "syscall.SIGCLD": "syscall", + "syscall.SIGCONT": "syscall", + "syscall.SIGEMT": "syscall", + "syscall.SIGFPE": "syscall", + "syscall.SIGHUP": "syscall", + "syscall.SIGILL": "syscall", + "syscall.SIGINFO": "syscall", + "syscall.SIGINT": "syscall", + "syscall.SIGIO": "syscall", + "syscall.SIGIOT": "syscall", + "syscall.SIGKILL": "syscall", + "syscall.SIGLIBRT": "syscall", + "syscall.SIGLWP": "syscall", + "syscall.SIGPIPE": "syscall", + "syscall.SIGPOLL": "syscall", + "syscall.SIGPROF": "syscall", + "syscall.SIGPWR": "syscall", + "syscall.SIGQUIT": "syscall", + "syscall.SIGSEGV": "syscall", + "syscall.SIGSTKFLT": "syscall", + "syscall.SIGSTOP": "syscall", + "syscall.SIGSYS": "syscall", + "syscall.SIGTERM": "syscall", + "syscall.SIGTHR": "syscall", + "syscall.SIGTRAP": "syscall", + "syscall.SIGTSTP": "syscall", + "syscall.SIGTTIN": "syscall", + "syscall.SIGTTOU": "syscall", + "syscall.SIGUNUSED": "syscall", + "syscall.SIGURG": "syscall", + "syscall.SIGUSR1": "syscall", + "syscall.SIGUSR2": "syscall", + "syscall.SIGVTALRM": "syscall", + "syscall.SIGWINCH": "syscall", + "syscall.SIGXCPU": "syscall", + "syscall.SIGXFSZ": "syscall", + "syscall.SIOCADDDLCI": "syscall", + "syscall.SIOCADDMULTI": "syscall", + "syscall.SIOCADDRT": "syscall", + "syscall.SIOCAIFADDR": "syscall", + "syscall.SIOCAIFGROUP": "syscall", + "syscall.SIOCALIFADDR": "syscall", + "syscall.SIOCARPIPLL": "syscall", + "syscall.SIOCATMARK": "syscall", + "syscall.SIOCAUTOADDR": "syscall", + "syscall.SIOCAUTONETMASK": "syscall", + "syscall.SIOCBRDGADD": "syscall", + "syscall.SIOCBRDGADDS": "syscall", + "syscall.SIOCBRDGARL": "syscall", + "syscall.SIOCBRDGDADDR": "syscall", + "syscall.SIOCBRDGDEL": "syscall", + "syscall.SIOCBRDGDELS": "syscall", + "syscall.SIOCBRDGFLUSH": "syscall", + "syscall.SIOCBRDGFRL": "syscall", + "syscall.SIOCBRDGGCACHE": "syscall", + "syscall.SIOCBRDGGFD": "syscall", + "syscall.SIOCBRDGGHT": "syscall", + "syscall.SIOCBRDGGIFFLGS": "syscall", + "syscall.SIOCBRDGGMA": "syscall", + "syscall.SIOCBRDGGPARAM": "syscall", + "syscall.SIOCBRDGGPRI": "syscall", + "syscall.SIOCBRDGGRL": "syscall", + "syscall.SIOCBRDGGSIFS": "syscall", + "syscall.SIOCBRDGGTO": "syscall", + "syscall.SIOCBRDGIFS": "syscall", + "syscall.SIOCBRDGRTS": "syscall", + "syscall.SIOCBRDGSADDR": "syscall", + "syscall.SIOCBRDGSCACHE": "syscall", + "syscall.SIOCBRDGSFD": "syscall", + "syscall.SIOCBRDGSHT": "syscall", + "syscall.SIOCBRDGSIFCOST": "syscall", + "syscall.SIOCBRDGSIFFLGS": "syscall", + "syscall.SIOCBRDGSIFPRIO": "syscall", + "syscall.SIOCBRDGSMA": "syscall", + "syscall.SIOCBRDGSPRI": "syscall", + "syscall.SIOCBRDGSPROTO": "syscall", + "syscall.SIOCBRDGSTO": "syscall", + "syscall.SIOCBRDGSTXHC": "syscall", + "syscall.SIOCDARP": "syscall", + "syscall.SIOCDELDLCI": "syscall", + "syscall.SIOCDELMULTI": "syscall", + "syscall.SIOCDELRT": "syscall", + "syscall.SIOCDEVPRIVATE": "syscall", + "syscall.SIOCDIFADDR": "syscall", + "syscall.SIOCDIFGROUP": "syscall", + "syscall.SIOCDIFPHYADDR": "syscall", + "syscall.SIOCDLIFADDR": "syscall", + "syscall.SIOCDRARP": "syscall", + "syscall.SIOCGARP": "syscall", + "syscall.SIOCGDRVSPEC": "syscall", + "syscall.SIOCGETKALIVE": "syscall", + "syscall.SIOCGETLABEL": "syscall", + "syscall.SIOCGETPFLOW": "syscall", + "syscall.SIOCGETPFSYNC": "syscall", + "syscall.SIOCGETSGCNT": "syscall", + "syscall.SIOCGETVIFCNT": "syscall", + "syscall.SIOCGETVLAN": "syscall", + "syscall.SIOCGHIWAT": "syscall", + "syscall.SIOCGIFADDR": "syscall", + "syscall.SIOCGIFADDRPREF": "syscall", + "syscall.SIOCGIFALIAS": "syscall", + "syscall.SIOCGIFALTMTU": "syscall", + "syscall.SIOCGIFASYNCMAP": "syscall", + "syscall.SIOCGIFBOND": "syscall", + "syscall.SIOCGIFBR": "syscall", + "syscall.SIOCGIFBRDADDR": "syscall", + "syscall.SIOCGIFCAP": "syscall", + "syscall.SIOCGIFCONF": "syscall", + "syscall.SIOCGIFCOUNT": "syscall", + "syscall.SIOCGIFDATA": "syscall", + "syscall.SIOCGIFDESCR": "syscall", + "syscall.SIOCGIFDEVMTU": "syscall", + "syscall.SIOCGIFDLT": "syscall", + "syscall.SIOCGIFDSTADDR": "syscall", + "syscall.SIOCGIFENCAP": "syscall", + "syscall.SIOCGIFFIB": "syscall", + "syscall.SIOCGIFFLAGS": "syscall", + "syscall.SIOCGIFGATTR": "syscall", + "syscall.SIOCGIFGENERIC": "syscall", + "syscall.SIOCGIFGMEMB": "syscall", + "syscall.SIOCGIFGROUP": "syscall", + "syscall.SIOCGIFHWADDR": "syscall", + "syscall.SIOCGIFINDEX": "syscall", + "syscall.SIOCGIFKPI": "syscall", + "syscall.SIOCGIFMAC": "syscall", + "syscall.SIOCGIFMAP": "syscall", + "syscall.SIOCGIFMEDIA": "syscall", + "syscall.SIOCGIFMEM": "syscall", + "syscall.SIOCGIFMETRIC": "syscall", + "syscall.SIOCGIFMTU": "syscall", + "syscall.SIOCGIFNAME": "syscall", + "syscall.SIOCGIFNETMASK": "syscall", + "syscall.SIOCGIFPDSTADDR": "syscall", + "syscall.SIOCGIFPFLAGS": "syscall", + "syscall.SIOCGIFPHYS": "syscall", + "syscall.SIOCGIFPRIORITY": "syscall", + "syscall.SIOCGIFPSRCADDR": "syscall", + "syscall.SIOCGIFRDOMAIN": "syscall", + "syscall.SIOCGIFRTLABEL": "syscall", + "syscall.SIOCGIFSLAVE": "syscall", + "syscall.SIOCGIFSTATUS": "syscall", + "syscall.SIOCGIFTIMESLOT": "syscall", + "syscall.SIOCGIFTXQLEN": "syscall", + "syscall.SIOCGIFVLAN": "syscall", + "syscall.SIOCGIFWAKEFLAGS": "syscall", + "syscall.SIOCGIFXFLAGS": "syscall", + "syscall.SIOCGLIFADDR": "syscall", + "syscall.SIOCGLIFPHYADDR": "syscall", + "syscall.SIOCGLIFPHYRTABLE": "syscall", + "syscall.SIOCGLINKSTR": "syscall", + "syscall.SIOCGLOWAT": "syscall", + "syscall.SIOCGPGRP": "syscall", + "syscall.SIOCGPRIVATE_0": "syscall", + "syscall.SIOCGPRIVATE_1": "syscall", + "syscall.SIOCGRARP": "syscall", + "syscall.SIOCGSTAMP": "syscall", + "syscall.SIOCGSTAMPNS": "syscall", + "syscall.SIOCGVH": "syscall", + "syscall.SIOCIFCREATE": "syscall", + "syscall.SIOCIFCREATE2": "syscall", + "syscall.SIOCIFDESTROY": "syscall", + "syscall.SIOCIFGCLONERS": "syscall", + "syscall.SIOCINITIFADDR": "syscall", + "syscall.SIOCPROTOPRIVATE": "syscall", + "syscall.SIOCRSLVMULTI": "syscall", + "syscall.SIOCRTMSG": "syscall", + "syscall.SIOCSARP": "syscall", + "syscall.SIOCSDRVSPEC": "syscall", + "syscall.SIOCSETKALIVE": "syscall", + "syscall.SIOCSETLABEL": "syscall", + "syscall.SIOCSETPFLOW": "syscall", + "syscall.SIOCSETPFSYNC": "syscall", + "syscall.SIOCSETVLAN": "syscall", + "syscall.SIOCSHIWAT": "syscall", + "syscall.SIOCSIFADDR": "syscall", + "syscall.SIOCSIFADDRPREF": "syscall", + "syscall.SIOCSIFALTMTU": "syscall", + "syscall.SIOCSIFASYNCMAP": "syscall", + "syscall.SIOCSIFBOND": "syscall", + "syscall.SIOCSIFBR": "syscall", + "syscall.SIOCSIFBRDADDR": "syscall", + "syscall.SIOCSIFCAP": "syscall", + "syscall.SIOCSIFDESCR": "syscall", + "syscall.SIOCSIFDSTADDR": "syscall", + "syscall.SIOCSIFENCAP": "syscall", + "syscall.SIOCSIFFIB": "syscall", + "syscall.SIOCSIFFLAGS": "syscall", + "syscall.SIOCSIFGATTR": "syscall", + "syscall.SIOCSIFGENERIC": "syscall", + "syscall.SIOCSIFHWADDR": "syscall", + "syscall.SIOCSIFHWBROADCAST": "syscall", + "syscall.SIOCSIFKPI": "syscall", + "syscall.SIOCSIFLINK": "syscall", + "syscall.SIOCSIFLLADDR": "syscall", + "syscall.SIOCSIFMAC": "syscall", + "syscall.SIOCSIFMAP": "syscall", + "syscall.SIOCSIFMEDIA": "syscall", + "syscall.SIOCSIFMEM": "syscall", + "syscall.SIOCSIFMETRIC": "syscall", + "syscall.SIOCSIFMTU": "syscall", + "syscall.SIOCSIFNAME": "syscall", + "syscall.SIOCSIFNETMASK": "syscall", + "syscall.SIOCSIFPFLAGS": "syscall", + "syscall.SIOCSIFPHYADDR": "syscall", + "syscall.SIOCSIFPHYS": "syscall", + "syscall.SIOCSIFPRIORITY": "syscall", + "syscall.SIOCSIFRDOMAIN": "syscall", + "syscall.SIOCSIFRTLABEL": "syscall", + "syscall.SIOCSIFRVNET": "syscall", + "syscall.SIOCSIFSLAVE": "syscall", + "syscall.SIOCSIFTIMESLOT": "syscall", + "syscall.SIOCSIFTXQLEN": "syscall", + "syscall.SIOCSIFVLAN": "syscall", + "syscall.SIOCSIFVNET": "syscall", + "syscall.SIOCSIFXFLAGS": "syscall", + "syscall.SIOCSLIFPHYADDR": "syscall", + "syscall.SIOCSLIFPHYRTABLE": "syscall", + "syscall.SIOCSLINKSTR": "syscall", + "syscall.SIOCSLOWAT": "syscall", + "syscall.SIOCSPGRP": "syscall", + "syscall.SIOCSRARP": "syscall", + "syscall.SIOCSVH": "syscall", + "syscall.SIOCZIFDATA": "syscall", + "syscall.SIO_GET_EXTENSION_FUNCTION_POINTER": "syscall", + "syscall.SIO_GET_INTERFACE_LIST": "syscall", + "syscall.SOCK_CLOEXEC": "syscall", + "syscall.SOCK_DCCP": "syscall", + "syscall.SOCK_DGRAM": "syscall", + "syscall.SOCK_FLAGS_MASK": "syscall", + "syscall.SOCK_MAXADDRLEN": "syscall", + "syscall.SOCK_NONBLOCK": "syscall", + "syscall.SOCK_NOSIGPIPE": "syscall", + "syscall.SOCK_PACKET": "syscall", + "syscall.SOCK_RAW": "syscall", + "syscall.SOCK_RDM": "syscall", + "syscall.SOCK_SEQPACKET": "syscall", + "syscall.SOCK_STREAM": "syscall", + "syscall.SOL_AAL": "syscall", + "syscall.SOL_ATM": "syscall", + "syscall.SOL_DECNET": "syscall", + "syscall.SOL_ICMPV6": "syscall", + "syscall.SOL_IP": "syscall", + "syscall.SOL_IPV6": "syscall", + "syscall.SOL_IRDA": "syscall", + "syscall.SOL_PACKET": "syscall", + "syscall.SOL_RAW": "syscall", + "syscall.SOL_SOCKET": "syscall", + "syscall.SOL_TCP": "syscall", + "syscall.SOL_X25": "syscall", + "syscall.SOMAXCONN": "syscall", + "syscall.SO_ACCEPTCONN": "syscall", + "syscall.SO_ACCEPTFILTER": "syscall", + "syscall.SO_ATTACH_FILTER": "syscall", + "syscall.SO_BINDANY": "syscall", + "syscall.SO_BINDTODEVICE": "syscall", + "syscall.SO_BINTIME": "syscall", + "syscall.SO_BROADCAST": "syscall", + "syscall.SO_BSDCOMPAT": "syscall", + "syscall.SO_DEBUG": "syscall", + "syscall.SO_DETACH_FILTER": "syscall", + "syscall.SO_DOMAIN": "syscall", + "syscall.SO_DONTROUTE": "syscall", + "syscall.SO_DONTTRUNC": "syscall", + "syscall.SO_ERROR": "syscall", + "syscall.SO_KEEPALIVE": "syscall", + "syscall.SO_LABEL": "syscall", + "syscall.SO_LINGER": "syscall", + "syscall.SO_LINGER_SEC": "syscall", + "syscall.SO_LISTENINCQLEN": "syscall", + "syscall.SO_LISTENQLEN": "syscall", + "syscall.SO_LISTENQLIMIT": "syscall", + "syscall.SO_MARK": "syscall", + "syscall.SO_NETPROC": "syscall", + "syscall.SO_NKE": "syscall", + "syscall.SO_NOADDRERR": "syscall", + "syscall.SO_NOHEADER": "syscall", + "syscall.SO_NOSIGPIPE": "syscall", + "syscall.SO_NOTIFYCONFLICT": "syscall", + "syscall.SO_NO_CHECK": "syscall", + "syscall.SO_NO_DDP": "syscall", + "syscall.SO_NO_OFFLOAD": "syscall", + "syscall.SO_NP_EXTENSIONS": "syscall", + "syscall.SO_NREAD": "syscall", + "syscall.SO_NWRITE": "syscall", + "syscall.SO_OOBINLINE": "syscall", + "syscall.SO_OVERFLOWED": "syscall", + "syscall.SO_PASSCRED": "syscall", + "syscall.SO_PASSSEC": "syscall", + "syscall.SO_PEERCRED": "syscall", + "syscall.SO_PEERLABEL": "syscall", + "syscall.SO_PEERNAME": "syscall", + "syscall.SO_PEERSEC": "syscall", + "syscall.SO_PRIORITY": "syscall", + "syscall.SO_PROTOCOL": "syscall", + "syscall.SO_PROTOTYPE": "syscall", + "syscall.SO_RANDOMPORT": "syscall", + "syscall.SO_RCVBUF": "syscall", + "syscall.SO_RCVBUFFORCE": "syscall", + "syscall.SO_RCVLOWAT": "syscall", + "syscall.SO_RCVTIMEO": "syscall", + "syscall.SO_RESTRICTIONS": "syscall", + "syscall.SO_RESTRICT_DENYIN": "syscall", + "syscall.SO_RESTRICT_DENYOUT": "syscall", + "syscall.SO_RESTRICT_DENYSET": "syscall", + "syscall.SO_REUSEADDR": "syscall", + "syscall.SO_REUSEPORT": "syscall", + "syscall.SO_REUSESHAREUID": "syscall", + "syscall.SO_RTABLE": "syscall", + "syscall.SO_RXQ_OVFL": "syscall", + "syscall.SO_SECURITY_AUTHENTICATION": "syscall", + "syscall.SO_SECURITY_ENCRYPTION_NETWORK": "syscall", + "syscall.SO_SECURITY_ENCRYPTION_TRANSPORT": "syscall", + "syscall.SO_SETFIB": "syscall", + "syscall.SO_SNDBUF": "syscall", + "syscall.SO_SNDBUFFORCE": "syscall", + "syscall.SO_SNDLOWAT": "syscall", + "syscall.SO_SNDTIMEO": "syscall", + "syscall.SO_SPLICE": "syscall", + "syscall.SO_TIMESTAMP": "syscall", + "syscall.SO_TIMESTAMPING": "syscall", + "syscall.SO_TIMESTAMPNS": "syscall", + "syscall.SO_TIMESTAMP_MONOTONIC": "syscall", + "syscall.SO_TYPE": "syscall", + "syscall.SO_UPCALLCLOSEWAIT": "syscall", + "syscall.SO_UPDATE_ACCEPT_CONTEXT": "syscall", + "syscall.SO_UPDATE_CONNECT_CONTEXT": "syscall", + "syscall.SO_USELOOPBACK": "syscall", + "syscall.SO_USER_COOKIE": "syscall", + "syscall.SO_WANTMORE": "syscall", + "syscall.SO_WANTOOBFLAG": "syscall", + "syscall.SSLExtraCertChainPolicyPara": "syscall", + "syscall.STANDARD_RIGHTS_ALL": "syscall", + "syscall.STANDARD_RIGHTS_EXECUTE": "syscall", + "syscall.STANDARD_RIGHTS_READ": "syscall", + "syscall.STANDARD_RIGHTS_REQUIRED": "syscall", + "syscall.STANDARD_RIGHTS_WRITE": "syscall", + "syscall.STARTF_USESHOWWINDOW": "syscall", + "syscall.STARTF_USESTDHANDLES": "syscall", + "syscall.STD_ERROR_HANDLE": "syscall", + "syscall.STD_INPUT_HANDLE": "syscall", + "syscall.STD_OUTPUT_HANDLE": "syscall", + "syscall.SUBLANG_ENGLISH_US": "syscall", + "syscall.SW_FORCEMINIMIZE": "syscall", + "syscall.SW_HIDE": "syscall", + "syscall.SW_MAXIMIZE": "syscall", + "syscall.SW_MINIMIZE": "syscall", + "syscall.SW_NORMAL": "syscall", + "syscall.SW_RESTORE": "syscall", + "syscall.SW_SHOW": "syscall", + "syscall.SW_SHOWDEFAULT": "syscall", + "syscall.SW_SHOWMAXIMIZED": "syscall", + "syscall.SW_SHOWMINIMIZED": "syscall", + "syscall.SW_SHOWMINNOACTIVE": "syscall", + "syscall.SW_SHOWNA": "syscall", + "syscall.SW_SHOWNOACTIVATE": "syscall", + "syscall.SW_SHOWNORMAL": "syscall", + "syscall.SYNCHRONIZE": "syscall", + "syscall.SYSCTL_VERSION": "syscall", + "syscall.SYSCTL_VERS_0": "syscall", + "syscall.SYSCTL_VERS_1": "syscall", + "syscall.SYSCTL_VERS_MASK": "syscall", + "syscall.SYS_ABORT2": "syscall", + "syscall.SYS_ACCEPT": "syscall", + "syscall.SYS_ACCEPT4": "syscall", + "syscall.SYS_ACCEPT_NOCANCEL": "syscall", + "syscall.SYS_ACCESS": "syscall", + "syscall.SYS_ACCESS_EXTENDED": "syscall", + "syscall.SYS_ACCT": "syscall", + "syscall.SYS_ADD_KEY": "syscall", + "syscall.SYS_ADD_PROFIL": "syscall", + "syscall.SYS_ADJFREQ": "syscall", + "syscall.SYS_ADJTIME": "syscall", + "syscall.SYS_ADJTIMEX": "syscall", + "syscall.SYS_AFS_SYSCALL": "syscall", + "syscall.SYS_AIO_CANCEL": "syscall", + "syscall.SYS_AIO_ERROR": "syscall", + "syscall.SYS_AIO_FSYNC": "syscall", + "syscall.SYS_AIO_READ": "syscall", + "syscall.SYS_AIO_RETURN": "syscall", + "syscall.SYS_AIO_SUSPEND": "syscall", + "syscall.SYS_AIO_SUSPEND_NOCANCEL": "syscall", + "syscall.SYS_AIO_WRITE": "syscall", + "syscall.SYS_ALARM": "syscall", + "syscall.SYS_ARCH_PRCTL": "syscall", + "syscall.SYS_ARM_FADVISE64_64": "syscall", + "syscall.SYS_ARM_SYNC_FILE_RANGE": "syscall", + "syscall.SYS_ATGETMSG": "syscall", + "syscall.SYS_ATPGETREQ": "syscall", + "syscall.SYS_ATPGETRSP": "syscall", + "syscall.SYS_ATPSNDREQ": "syscall", + "syscall.SYS_ATPSNDRSP": "syscall", + "syscall.SYS_ATPUTMSG": "syscall", + "syscall.SYS_ATSOCKET": "syscall", + "syscall.SYS_AUDIT": "syscall", + "syscall.SYS_AUDITCTL": "syscall", + "syscall.SYS_AUDITON": "syscall", + "syscall.SYS_AUDIT_SESSION_JOIN": "syscall", + "syscall.SYS_AUDIT_SESSION_PORT": "syscall", + "syscall.SYS_AUDIT_SESSION_SELF": "syscall", + "syscall.SYS_BDFLUSH": "syscall", + "syscall.SYS_BIND": "syscall", + "syscall.SYS_BREAK": "syscall", + "syscall.SYS_BRK": "syscall", + "syscall.SYS_BSDTHREAD_CREATE": "syscall", + "syscall.SYS_BSDTHREAD_REGISTER": "syscall", + "syscall.SYS_BSDTHREAD_TERMINATE": "syscall", + "syscall.SYS_CAPGET": "syscall", + "syscall.SYS_CAPSET": "syscall", + "syscall.SYS_CAP_ENTER": "syscall", + "syscall.SYS_CAP_FCNTLS_GET": "syscall", + "syscall.SYS_CAP_FCNTLS_LIMIT": "syscall", + "syscall.SYS_CAP_GETMODE": "syscall", + "syscall.SYS_CAP_GETRIGHTS": "syscall", + "syscall.SYS_CAP_IOCTLS_GET": "syscall", + "syscall.SYS_CAP_IOCTLS_LIMIT": "syscall", + "syscall.SYS_CAP_NEW": "syscall", + "syscall.SYS_CAP_RIGHTS_GET": "syscall", + "syscall.SYS_CAP_RIGHTS_LIMIT": "syscall", + "syscall.SYS_CHDIR": "syscall", + "syscall.SYS_CHFLAGS": "syscall", + "syscall.SYS_CHMOD": "syscall", + "syscall.SYS_CHMOD_EXTENDED": "syscall", + "syscall.SYS_CHOWN": "syscall", + "syscall.SYS_CHOWN32": "syscall", + "syscall.SYS_CHROOT": "syscall", + "syscall.SYS_CHUD": "syscall", + "syscall.SYS_CLOCK_ADJTIME": "syscall", + "syscall.SYS_CLOCK_GETCPUCLOCKID2": "syscall", + "syscall.SYS_CLOCK_GETRES": "syscall", + "syscall.SYS_CLOCK_GETTIME": "syscall", + "syscall.SYS_CLOCK_NANOSLEEP": "syscall", + "syscall.SYS_CLOCK_SETTIME": "syscall", + "syscall.SYS_CLONE": "syscall", + "syscall.SYS_CLOSE": "syscall", + "syscall.SYS_CLOSEFROM": "syscall", + "syscall.SYS_CLOSE_NOCANCEL": "syscall", + "syscall.SYS_CONNECT": "syscall", + "syscall.SYS_CONNECT_NOCANCEL": "syscall", + "syscall.SYS_COPYFILE": "syscall", + "syscall.SYS_CPUSET": "syscall", + "syscall.SYS_CPUSET_GETAFFINITY": "syscall", + "syscall.SYS_CPUSET_GETID": "syscall", + "syscall.SYS_CPUSET_SETAFFINITY": "syscall", + "syscall.SYS_CPUSET_SETID": "syscall", + "syscall.SYS_CREAT": "syscall", + "syscall.SYS_CREATE_MODULE": "syscall", + "syscall.SYS_CSOPS": "syscall", + "syscall.SYS_DELETE": "syscall", + "syscall.SYS_DELETE_MODULE": "syscall", + "syscall.SYS_DUP": "syscall", + "syscall.SYS_DUP2": "syscall", + "syscall.SYS_DUP3": "syscall", + "syscall.SYS_EACCESS": "syscall", + "syscall.SYS_EPOLL_CREATE": "syscall", + "syscall.SYS_EPOLL_CREATE1": "syscall", + "syscall.SYS_EPOLL_CTL": "syscall", + "syscall.SYS_EPOLL_CTL_OLD": "syscall", + "syscall.SYS_EPOLL_PWAIT": "syscall", + "syscall.SYS_EPOLL_WAIT": "syscall", + "syscall.SYS_EPOLL_WAIT_OLD": "syscall", + "syscall.SYS_EVENTFD": "syscall", + "syscall.SYS_EVENTFD2": "syscall", + "syscall.SYS_EXCHANGEDATA": "syscall", + "syscall.SYS_EXECVE": "syscall", + "syscall.SYS_EXIT": "syscall", + "syscall.SYS_EXIT_GROUP": "syscall", + "syscall.SYS_EXTATTRCTL": "syscall", + "syscall.SYS_EXTATTR_DELETE_FD": "syscall", + "syscall.SYS_EXTATTR_DELETE_FILE": "syscall", + "syscall.SYS_EXTATTR_DELETE_LINK": "syscall", + "syscall.SYS_EXTATTR_GET_FD": "syscall", + "syscall.SYS_EXTATTR_GET_FILE": "syscall", + "syscall.SYS_EXTATTR_GET_LINK": "syscall", + "syscall.SYS_EXTATTR_LIST_FD": "syscall", + "syscall.SYS_EXTATTR_LIST_FILE": "syscall", + "syscall.SYS_EXTATTR_LIST_LINK": "syscall", + "syscall.SYS_EXTATTR_SET_FD": "syscall", + "syscall.SYS_EXTATTR_SET_FILE": "syscall", + "syscall.SYS_EXTATTR_SET_LINK": "syscall", + "syscall.SYS_FACCESSAT": "syscall", + "syscall.SYS_FADVISE64": "syscall", + "syscall.SYS_FADVISE64_64": "syscall", + "syscall.SYS_FALLOCATE": "syscall", + "syscall.SYS_FANOTIFY_INIT": "syscall", + "syscall.SYS_FANOTIFY_MARK": "syscall", + "syscall.SYS_FCHDIR": "syscall", + "syscall.SYS_FCHFLAGS": "syscall", + "syscall.SYS_FCHMOD": "syscall", + "syscall.SYS_FCHMODAT": "syscall", + "syscall.SYS_FCHMOD_EXTENDED": "syscall", + "syscall.SYS_FCHOWN": "syscall", + "syscall.SYS_FCHOWN32": "syscall", + "syscall.SYS_FCHOWNAT": "syscall", + "syscall.SYS_FCHROOT": "syscall", + "syscall.SYS_FCNTL": "syscall", + "syscall.SYS_FCNTL64": "syscall", + "syscall.SYS_FCNTL_NOCANCEL": "syscall", + "syscall.SYS_FDATASYNC": "syscall", + "syscall.SYS_FEXECVE": "syscall", + "syscall.SYS_FFCLOCK_GETCOUNTER": "syscall", + "syscall.SYS_FFCLOCK_GETESTIMATE": "syscall", + "syscall.SYS_FFCLOCK_SETESTIMATE": "syscall", + "syscall.SYS_FFSCTL": "syscall", + "syscall.SYS_FGETATTRLIST": "syscall", + "syscall.SYS_FGETXATTR": "syscall", + "syscall.SYS_FHOPEN": "syscall", + "syscall.SYS_FHSTAT": "syscall", + "syscall.SYS_FHSTATFS": "syscall", + "syscall.SYS_FILEPORT_MAKEFD": "syscall", + "syscall.SYS_FILEPORT_MAKEPORT": "syscall", + "syscall.SYS_FKTRACE": "syscall", + "syscall.SYS_FLISTXATTR": "syscall", + "syscall.SYS_FLOCK": "syscall", + "syscall.SYS_FORK": "syscall", + "syscall.SYS_FPATHCONF": "syscall", + "syscall.SYS_FREEBSD6_FTRUNCATE": "syscall", + "syscall.SYS_FREEBSD6_LSEEK": "syscall", + "syscall.SYS_FREEBSD6_MMAP": "syscall", + "syscall.SYS_FREEBSD6_PREAD": "syscall", + "syscall.SYS_FREEBSD6_PWRITE": "syscall", + "syscall.SYS_FREEBSD6_TRUNCATE": "syscall", + "syscall.SYS_FREMOVEXATTR": "syscall", + "syscall.SYS_FSCTL": "syscall", + "syscall.SYS_FSETATTRLIST": "syscall", + "syscall.SYS_FSETXATTR": "syscall", + "syscall.SYS_FSGETPATH": "syscall", + "syscall.SYS_FSTAT": "syscall", + "syscall.SYS_FSTAT64": "syscall", + "syscall.SYS_FSTAT64_EXTENDED": "syscall", + "syscall.SYS_FSTATAT": "syscall", + "syscall.SYS_FSTATAT64": "syscall", + "syscall.SYS_FSTATFS": "syscall", + "syscall.SYS_FSTATFS64": "syscall", + "syscall.SYS_FSTATV": "syscall", + "syscall.SYS_FSTATVFS1": "syscall", + "syscall.SYS_FSTAT_EXTENDED": "syscall", + "syscall.SYS_FSYNC": "syscall", + "syscall.SYS_FSYNC_NOCANCEL": "syscall", + "syscall.SYS_FSYNC_RANGE": "syscall", + "syscall.SYS_FTIME": "syscall", + "syscall.SYS_FTRUNCATE": "syscall", + "syscall.SYS_FTRUNCATE64": "syscall", + "syscall.SYS_FUTEX": "syscall", + "syscall.SYS_FUTIMENS": "syscall", + "syscall.SYS_FUTIMES": "syscall", + "syscall.SYS_FUTIMESAT": "syscall", + "syscall.SYS_GETATTRLIST": "syscall", + "syscall.SYS_GETAUDIT": "syscall", + "syscall.SYS_GETAUDIT_ADDR": "syscall", + "syscall.SYS_GETAUID": "syscall", + "syscall.SYS_GETCONTEXT": "syscall", + "syscall.SYS_GETCPU": "syscall", + "syscall.SYS_GETCWD": "syscall", + "syscall.SYS_GETDENTS": "syscall", + "syscall.SYS_GETDENTS64": "syscall", + "syscall.SYS_GETDIRENTRIES": "syscall", + "syscall.SYS_GETDIRENTRIES64": "syscall", + "syscall.SYS_GETDIRENTRIESATTR": "syscall", + "syscall.SYS_GETDTABLECOUNT": "syscall", + "syscall.SYS_GETDTABLESIZE": "syscall", + "syscall.SYS_GETEGID": "syscall", + "syscall.SYS_GETEGID32": "syscall", + "syscall.SYS_GETEUID": "syscall", + "syscall.SYS_GETEUID32": "syscall", + "syscall.SYS_GETFH": "syscall", + "syscall.SYS_GETFSSTAT": "syscall", + "syscall.SYS_GETFSSTAT64": "syscall", + "syscall.SYS_GETGID": "syscall", + "syscall.SYS_GETGID32": "syscall", + "syscall.SYS_GETGROUPS": "syscall", + "syscall.SYS_GETGROUPS32": "syscall", + "syscall.SYS_GETHOSTUUID": "syscall", + "syscall.SYS_GETITIMER": "syscall", + "syscall.SYS_GETLCID": "syscall", + "syscall.SYS_GETLOGIN": "syscall", + "syscall.SYS_GETLOGINCLASS": "syscall", + "syscall.SYS_GETPEERNAME": "syscall", + "syscall.SYS_GETPGID": "syscall", + "syscall.SYS_GETPGRP": "syscall", + "syscall.SYS_GETPID": "syscall", + "syscall.SYS_GETPMSG": "syscall", + "syscall.SYS_GETPPID": "syscall", + "syscall.SYS_GETPRIORITY": "syscall", + "syscall.SYS_GETRESGID": "syscall", + "syscall.SYS_GETRESGID32": "syscall", + "syscall.SYS_GETRESUID": "syscall", + "syscall.SYS_GETRESUID32": "syscall", + "syscall.SYS_GETRLIMIT": "syscall", + "syscall.SYS_GETRTABLE": "syscall", + "syscall.SYS_GETRUSAGE": "syscall", + "syscall.SYS_GETSGROUPS": "syscall", + "syscall.SYS_GETSID": "syscall", + "syscall.SYS_GETSOCKNAME": "syscall", + "syscall.SYS_GETSOCKOPT": "syscall", + "syscall.SYS_GETTHRID": "syscall", + "syscall.SYS_GETTID": "syscall", + "syscall.SYS_GETTIMEOFDAY": "syscall", + "syscall.SYS_GETUID": "syscall", + "syscall.SYS_GETUID32": "syscall", + "syscall.SYS_GETVFSSTAT": "syscall", + "syscall.SYS_GETWGROUPS": "syscall", + "syscall.SYS_GETXATTR": "syscall", + "syscall.SYS_GET_KERNEL_SYMS": "syscall", + "syscall.SYS_GET_MEMPOLICY": "syscall", + "syscall.SYS_GET_ROBUST_LIST": "syscall", + "syscall.SYS_GET_THREAD_AREA": "syscall", + "syscall.SYS_GTTY": "syscall", + "syscall.SYS_IDENTITYSVC": "syscall", + "syscall.SYS_IDLE": "syscall", + "syscall.SYS_INITGROUPS": "syscall", + "syscall.SYS_INIT_MODULE": "syscall", + "syscall.SYS_INOTIFY_ADD_WATCH": "syscall", + "syscall.SYS_INOTIFY_INIT": "syscall", + "syscall.SYS_INOTIFY_INIT1": "syscall", + "syscall.SYS_INOTIFY_RM_WATCH": "syscall", + "syscall.SYS_IOCTL": "syscall", + "syscall.SYS_IOPERM": "syscall", + "syscall.SYS_IOPL": "syscall", + "syscall.SYS_IOPOLICYSYS": "syscall", + "syscall.SYS_IOPRIO_GET": "syscall", + "syscall.SYS_IOPRIO_SET": "syscall", + "syscall.SYS_IO_CANCEL": "syscall", + "syscall.SYS_IO_DESTROY": "syscall", + "syscall.SYS_IO_GETEVENTS": "syscall", + "syscall.SYS_IO_SETUP": "syscall", + "syscall.SYS_IO_SUBMIT": "syscall", + "syscall.SYS_IPC": "syscall", + "syscall.SYS_ISSETUGID": "syscall", + "syscall.SYS_JAIL": "syscall", + "syscall.SYS_JAIL_ATTACH": "syscall", + "syscall.SYS_JAIL_GET": "syscall", + "syscall.SYS_JAIL_REMOVE": "syscall", + "syscall.SYS_JAIL_SET": "syscall", + "syscall.SYS_KDEBUG_TRACE": "syscall", + "syscall.SYS_KENV": "syscall", + "syscall.SYS_KEVENT": "syscall", + "syscall.SYS_KEVENT64": "syscall", + "syscall.SYS_KEXEC_LOAD": "syscall", + "syscall.SYS_KEYCTL": "syscall", + "syscall.SYS_KILL": "syscall", + "syscall.SYS_KLDFIND": "syscall", + "syscall.SYS_KLDFIRSTMOD": "syscall", + "syscall.SYS_KLDLOAD": "syscall", + "syscall.SYS_KLDNEXT": "syscall", + "syscall.SYS_KLDSTAT": "syscall", + "syscall.SYS_KLDSYM": "syscall", + "syscall.SYS_KLDUNLOAD": "syscall", + "syscall.SYS_KLDUNLOADF": "syscall", + "syscall.SYS_KQUEUE": "syscall", + "syscall.SYS_KQUEUE1": "syscall", + "syscall.SYS_KTIMER_CREATE": "syscall", + "syscall.SYS_KTIMER_DELETE": "syscall", + "syscall.SYS_KTIMER_GETOVERRUN": "syscall", + "syscall.SYS_KTIMER_GETTIME": "syscall", + "syscall.SYS_KTIMER_SETTIME": "syscall", + "syscall.SYS_KTRACE": "syscall", + "syscall.SYS_LCHFLAGS": "syscall", + "syscall.SYS_LCHMOD": "syscall", + "syscall.SYS_LCHOWN": "syscall", + "syscall.SYS_LCHOWN32": "syscall", + "syscall.SYS_LGETFH": "syscall", + "syscall.SYS_LGETXATTR": "syscall", + "syscall.SYS_LINK": "syscall", + "syscall.SYS_LINKAT": "syscall", + "syscall.SYS_LIO_LISTIO": "syscall", + "syscall.SYS_LISTEN": "syscall", + "syscall.SYS_LISTXATTR": "syscall", + "syscall.SYS_LLISTXATTR": "syscall", + "syscall.SYS_LOCK": "syscall", + "syscall.SYS_LOOKUP_DCOOKIE": "syscall", + "syscall.SYS_LPATHCONF": "syscall", + "syscall.SYS_LREMOVEXATTR": "syscall", + "syscall.SYS_LSEEK": "syscall", + "syscall.SYS_LSETXATTR": "syscall", + "syscall.SYS_LSTAT": "syscall", + "syscall.SYS_LSTAT64": "syscall", + "syscall.SYS_LSTAT64_EXTENDED": "syscall", + "syscall.SYS_LSTATV": "syscall", + "syscall.SYS_LSTAT_EXTENDED": "syscall", + "syscall.SYS_LUTIMES": "syscall", + "syscall.SYS_MAC_SYSCALL": "syscall", + "syscall.SYS_MADVISE": "syscall", + "syscall.SYS_MADVISE1": "syscall", + "syscall.SYS_MAXSYSCALL": "syscall", + "syscall.SYS_MBIND": "syscall", + "syscall.SYS_MIGRATE_PAGES": "syscall", + "syscall.SYS_MINCORE": "syscall", + "syscall.SYS_MINHERIT": "syscall", + "syscall.SYS_MKCOMPLEX": "syscall", + "syscall.SYS_MKDIR": "syscall", + "syscall.SYS_MKDIRAT": "syscall", + "syscall.SYS_MKDIR_EXTENDED": "syscall", + "syscall.SYS_MKFIFO": "syscall", + "syscall.SYS_MKFIFOAT": "syscall", + "syscall.SYS_MKFIFO_EXTENDED": "syscall", + "syscall.SYS_MKNOD": "syscall", + "syscall.SYS_MKNODAT": "syscall", + "syscall.SYS_MLOCK": "syscall", + "syscall.SYS_MLOCKALL": "syscall", + "syscall.SYS_MMAP": "syscall", + "syscall.SYS_MMAP2": "syscall", + "syscall.SYS_MODCTL": "syscall", + "syscall.SYS_MODFIND": "syscall", + "syscall.SYS_MODFNEXT": "syscall", + "syscall.SYS_MODIFY_LDT": "syscall", + "syscall.SYS_MODNEXT": "syscall", + "syscall.SYS_MODSTAT": "syscall", + "syscall.SYS_MODWATCH": "syscall", + "syscall.SYS_MOUNT": "syscall", + "syscall.SYS_MOVE_PAGES": "syscall", + "syscall.SYS_MPROTECT": "syscall", + "syscall.SYS_MPX": "syscall", + "syscall.SYS_MQUERY": "syscall", + "syscall.SYS_MQ_GETSETATTR": "syscall", + "syscall.SYS_MQ_NOTIFY": "syscall", + "syscall.SYS_MQ_OPEN": "syscall", + "syscall.SYS_MQ_TIMEDRECEIVE": "syscall", + "syscall.SYS_MQ_TIMEDSEND": "syscall", + "syscall.SYS_MQ_UNLINK": "syscall", + "syscall.SYS_MREMAP": "syscall", + "syscall.SYS_MSGCTL": "syscall", + "syscall.SYS_MSGGET": "syscall", + "syscall.SYS_MSGRCV": "syscall", + "syscall.SYS_MSGRCV_NOCANCEL": "syscall", + "syscall.SYS_MSGSND": "syscall", + "syscall.SYS_MSGSND_NOCANCEL": "syscall", + "syscall.SYS_MSGSYS": "syscall", + "syscall.SYS_MSYNC": "syscall", + "syscall.SYS_MSYNC_NOCANCEL": "syscall", + "syscall.SYS_MUNLOCK": "syscall", + "syscall.SYS_MUNLOCKALL": "syscall", + "syscall.SYS_MUNMAP": "syscall", + "syscall.SYS_NAME_TO_HANDLE_AT": "syscall", + "syscall.SYS_NANOSLEEP": "syscall", + "syscall.SYS_NEWFSTATAT": "syscall", + "syscall.SYS_NFSCLNT": "syscall", + "syscall.SYS_NFSSERVCTL": "syscall", + "syscall.SYS_NFSSVC": "syscall", + "syscall.SYS_NFSTAT": "syscall", + "syscall.SYS_NICE": "syscall", + "syscall.SYS_NLSTAT": "syscall", + "syscall.SYS_NMOUNT": "syscall", + "syscall.SYS_NSTAT": "syscall", + "syscall.SYS_NTP_ADJTIME": "syscall", + "syscall.SYS_NTP_GETTIME": "syscall", + "syscall.SYS_OABI_SYSCALL_BASE": "syscall", + "syscall.SYS_OBREAK": "syscall", + "syscall.SYS_OLDFSTAT": "syscall", + "syscall.SYS_OLDLSTAT": "syscall", + "syscall.SYS_OLDOLDUNAME": "syscall", + "syscall.SYS_OLDSTAT": "syscall", + "syscall.SYS_OLDUNAME": "syscall", + "syscall.SYS_OPEN": "syscall", + "syscall.SYS_OPENAT": "syscall", + "syscall.SYS_OPENBSD_POLL": "syscall", + "syscall.SYS_OPEN_BY_HANDLE_AT": "syscall", + "syscall.SYS_OPEN_EXTENDED": "syscall", + "syscall.SYS_OPEN_NOCANCEL": "syscall", + "syscall.SYS_OVADVISE": "syscall", + "syscall.SYS_PACCEPT": "syscall", + "syscall.SYS_PATHCONF": "syscall", + "syscall.SYS_PAUSE": "syscall", + "syscall.SYS_PCICONFIG_IOBASE": "syscall", + "syscall.SYS_PCICONFIG_READ": "syscall", + "syscall.SYS_PCICONFIG_WRITE": "syscall", + "syscall.SYS_PDFORK": "syscall", + "syscall.SYS_PDGETPID": "syscall", + "syscall.SYS_PDKILL": "syscall", + "syscall.SYS_PERF_EVENT_OPEN": "syscall", + "syscall.SYS_PERSONALITY": "syscall", + "syscall.SYS_PID_HIBERNATE": "syscall", + "syscall.SYS_PID_RESUME": "syscall", + "syscall.SYS_PID_SHUTDOWN_SOCKETS": "syscall", + "syscall.SYS_PID_SUSPEND": "syscall", + "syscall.SYS_PIPE": "syscall", + "syscall.SYS_PIPE2": "syscall", + "syscall.SYS_PIVOT_ROOT": "syscall", + "syscall.SYS_PMC_CONTROL": "syscall", + "syscall.SYS_PMC_GET_INFO": "syscall", + "syscall.SYS_POLL": "syscall", + "syscall.SYS_POLLTS": "syscall", + "syscall.SYS_POLL_NOCANCEL": "syscall", + "syscall.SYS_POSIX_FADVISE": "syscall", + "syscall.SYS_POSIX_FALLOCATE": "syscall", + "syscall.SYS_POSIX_OPENPT": "syscall", + "syscall.SYS_POSIX_SPAWN": "syscall", + "syscall.SYS_PPOLL": "syscall", + "syscall.SYS_PRCTL": "syscall", + "syscall.SYS_PREAD": "syscall", + "syscall.SYS_PREAD64": "syscall", + "syscall.SYS_PREADV": "syscall", + "syscall.SYS_PREAD_NOCANCEL": "syscall", + "syscall.SYS_PRLIMIT64": "syscall", + "syscall.SYS_PROCESS_POLICY": "syscall", + "syscall.SYS_PROCESS_VM_READV": "syscall", + "syscall.SYS_PROCESS_VM_WRITEV": "syscall", + "syscall.SYS_PROC_INFO": "syscall", + "syscall.SYS_PROF": "syscall", + "syscall.SYS_PROFIL": "syscall", + "syscall.SYS_PSELECT": "syscall", + "syscall.SYS_PSELECT6": "syscall", + "syscall.SYS_PSET_ASSIGN": "syscall", + "syscall.SYS_PSET_CREATE": "syscall", + "syscall.SYS_PSET_DESTROY": "syscall", + "syscall.SYS_PSYNCH_CVBROAD": "syscall", + "syscall.SYS_PSYNCH_CVCLRPREPOST": "syscall", + "syscall.SYS_PSYNCH_CVSIGNAL": "syscall", + "syscall.SYS_PSYNCH_CVWAIT": "syscall", + "syscall.SYS_PSYNCH_MUTEXDROP": "syscall", + "syscall.SYS_PSYNCH_MUTEXWAIT": "syscall", + "syscall.SYS_PSYNCH_RW_DOWNGRADE": "syscall", + "syscall.SYS_PSYNCH_RW_LONGRDLOCK": "syscall", + "syscall.SYS_PSYNCH_RW_RDLOCK": "syscall", + "syscall.SYS_PSYNCH_RW_UNLOCK": "syscall", + "syscall.SYS_PSYNCH_RW_UNLOCK2": "syscall", + "syscall.SYS_PSYNCH_RW_UPGRADE": "syscall", + "syscall.SYS_PSYNCH_RW_WRLOCK": "syscall", + "syscall.SYS_PSYNCH_RW_YIELDWRLOCK": "syscall", + "syscall.SYS_PTRACE": "syscall", + "syscall.SYS_PUTPMSG": "syscall", + "syscall.SYS_PWRITE": "syscall", + "syscall.SYS_PWRITE64": "syscall", + "syscall.SYS_PWRITEV": "syscall", + "syscall.SYS_PWRITE_NOCANCEL": "syscall", + "syscall.SYS_QUERY_MODULE": "syscall", + "syscall.SYS_QUOTACTL": "syscall", + "syscall.SYS_RASCTL": "syscall", + "syscall.SYS_RCTL_ADD_RULE": "syscall", + "syscall.SYS_RCTL_GET_LIMITS": "syscall", + "syscall.SYS_RCTL_GET_RACCT": "syscall", + "syscall.SYS_RCTL_GET_RULES": "syscall", + "syscall.SYS_RCTL_REMOVE_RULE": "syscall", + "syscall.SYS_READ": "syscall", + "syscall.SYS_READAHEAD": "syscall", + "syscall.SYS_READDIR": "syscall", + "syscall.SYS_READLINK": "syscall", + "syscall.SYS_READLINKAT": "syscall", + "syscall.SYS_READV": "syscall", + "syscall.SYS_READV_NOCANCEL": "syscall", + "syscall.SYS_READ_NOCANCEL": "syscall", + "syscall.SYS_REBOOT": "syscall", + "syscall.SYS_RECV": "syscall", + "syscall.SYS_RECVFROM": "syscall", + "syscall.SYS_RECVFROM_NOCANCEL": "syscall", + "syscall.SYS_RECVMMSG": "syscall", + "syscall.SYS_RECVMSG": "syscall", + "syscall.SYS_RECVMSG_NOCANCEL": "syscall", + "syscall.SYS_REMAP_FILE_PAGES": "syscall", + "syscall.SYS_REMOVEXATTR": "syscall", + "syscall.SYS_RENAME": "syscall", + "syscall.SYS_RENAMEAT": "syscall", + "syscall.SYS_REQUEST_KEY": "syscall", + "syscall.SYS_RESTART_SYSCALL": "syscall", + "syscall.SYS_REVOKE": "syscall", + "syscall.SYS_RFORK": "syscall", + "syscall.SYS_RMDIR": "syscall", + "syscall.SYS_RTPRIO": "syscall", + "syscall.SYS_RTPRIO_THREAD": "syscall", + "syscall.SYS_RT_SIGACTION": "syscall", + "syscall.SYS_RT_SIGPENDING": "syscall", + "syscall.SYS_RT_SIGPROCMASK": "syscall", + "syscall.SYS_RT_SIGQUEUEINFO": "syscall", + "syscall.SYS_RT_SIGRETURN": "syscall", + "syscall.SYS_RT_SIGSUSPEND": "syscall", + "syscall.SYS_RT_SIGTIMEDWAIT": "syscall", + "syscall.SYS_RT_TGSIGQUEUEINFO": "syscall", + "syscall.SYS_SBRK": "syscall", + "syscall.SYS_SCHED_GETAFFINITY": "syscall", + "syscall.SYS_SCHED_GETPARAM": "syscall", + "syscall.SYS_SCHED_GETSCHEDULER": "syscall", + "syscall.SYS_SCHED_GET_PRIORITY_MAX": "syscall", + "syscall.SYS_SCHED_GET_PRIORITY_MIN": "syscall", + "syscall.SYS_SCHED_RR_GET_INTERVAL": "syscall", + "syscall.SYS_SCHED_SETAFFINITY": "syscall", + "syscall.SYS_SCHED_SETPARAM": "syscall", + "syscall.SYS_SCHED_SETSCHEDULER": "syscall", + "syscall.SYS_SCHED_YIELD": "syscall", + "syscall.SYS_SCTP_GENERIC_RECVMSG": "syscall", + "syscall.SYS_SCTP_GENERIC_SENDMSG": "syscall", + "syscall.SYS_SCTP_GENERIC_SENDMSG_IOV": "syscall", + "syscall.SYS_SCTP_PEELOFF": "syscall", + "syscall.SYS_SEARCHFS": "syscall", + "syscall.SYS_SECURITY": "syscall", + "syscall.SYS_SELECT": "syscall", + "syscall.SYS_SELECT_NOCANCEL": "syscall", + "syscall.SYS_SEMCONFIG": "syscall", + "syscall.SYS_SEMCTL": "syscall", + "syscall.SYS_SEMGET": "syscall", + "syscall.SYS_SEMOP": "syscall", + "syscall.SYS_SEMSYS": "syscall", + "syscall.SYS_SEMTIMEDOP": "syscall", + "syscall.SYS_SEM_CLOSE": "syscall", + "syscall.SYS_SEM_DESTROY": "syscall", + "syscall.SYS_SEM_GETVALUE": "syscall", + "syscall.SYS_SEM_INIT": "syscall", + "syscall.SYS_SEM_OPEN": "syscall", + "syscall.SYS_SEM_POST": "syscall", + "syscall.SYS_SEM_TRYWAIT": "syscall", + "syscall.SYS_SEM_UNLINK": "syscall", + "syscall.SYS_SEM_WAIT": "syscall", + "syscall.SYS_SEM_WAIT_NOCANCEL": "syscall", + "syscall.SYS_SEND": "syscall", + "syscall.SYS_SENDFILE": "syscall", + "syscall.SYS_SENDFILE64": "syscall", + "syscall.SYS_SENDMMSG": "syscall", + "syscall.SYS_SENDMSG": "syscall", + "syscall.SYS_SENDMSG_NOCANCEL": "syscall", + "syscall.SYS_SENDTO": "syscall", + "syscall.SYS_SENDTO_NOCANCEL": "syscall", + "syscall.SYS_SETATTRLIST": "syscall", + "syscall.SYS_SETAUDIT": "syscall", + "syscall.SYS_SETAUDIT_ADDR": "syscall", + "syscall.SYS_SETAUID": "syscall", + "syscall.SYS_SETCONTEXT": "syscall", + "syscall.SYS_SETDOMAINNAME": "syscall", + "syscall.SYS_SETEGID": "syscall", + "syscall.SYS_SETEUID": "syscall", + "syscall.SYS_SETFIB": "syscall", + "syscall.SYS_SETFSGID": "syscall", + "syscall.SYS_SETFSGID32": "syscall", + "syscall.SYS_SETFSUID": "syscall", + "syscall.SYS_SETFSUID32": "syscall", + "syscall.SYS_SETGID": "syscall", + "syscall.SYS_SETGID32": "syscall", + "syscall.SYS_SETGROUPS": "syscall", + "syscall.SYS_SETGROUPS32": "syscall", + "syscall.SYS_SETHOSTNAME": "syscall", + "syscall.SYS_SETITIMER": "syscall", + "syscall.SYS_SETLCID": "syscall", + "syscall.SYS_SETLOGIN": "syscall", + "syscall.SYS_SETLOGINCLASS": "syscall", + "syscall.SYS_SETNS": "syscall", + "syscall.SYS_SETPGID": "syscall", + "syscall.SYS_SETPRIORITY": "syscall", + "syscall.SYS_SETPRIVEXEC": "syscall", + "syscall.SYS_SETREGID": "syscall", + "syscall.SYS_SETREGID32": "syscall", + "syscall.SYS_SETRESGID": "syscall", + "syscall.SYS_SETRESGID32": "syscall", + "syscall.SYS_SETRESUID": "syscall", + "syscall.SYS_SETRESUID32": "syscall", + "syscall.SYS_SETREUID": "syscall", + "syscall.SYS_SETREUID32": "syscall", + "syscall.SYS_SETRLIMIT": "syscall", + "syscall.SYS_SETRTABLE": "syscall", + "syscall.SYS_SETSGROUPS": "syscall", + "syscall.SYS_SETSID": "syscall", + "syscall.SYS_SETSOCKOPT": "syscall", + "syscall.SYS_SETTID": "syscall", + "syscall.SYS_SETTID_WITH_PID": "syscall", + "syscall.SYS_SETTIMEOFDAY": "syscall", + "syscall.SYS_SETUID": "syscall", + "syscall.SYS_SETUID32": "syscall", + "syscall.SYS_SETWGROUPS": "syscall", + "syscall.SYS_SETXATTR": "syscall", + "syscall.SYS_SET_MEMPOLICY": "syscall", + "syscall.SYS_SET_ROBUST_LIST": "syscall", + "syscall.SYS_SET_THREAD_AREA": "syscall", + "syscall.SYS_SET_TID_ADDRESS": "syscall", + "syscall.SYS_SGETMASK": "syscall", + "syscall.SYS_SHARED_REGION_CHECK_NP": "syscall", + "syscall.SYS_SHARED_REGION_MAP_AND_SLIDE_NP": "syscall", + "syscall.SYS_SHMAT": "syscall", + "syscall.SYS_SHMCTL": "syscall", + "syscall.SYS_SHMDT": "syscall", + "syscall.SYS_SHMGET": "syscall", + "syscall.SYS_SHMSYS": "syscall", + "syscall.SYS_SHM_OPEN": "syscall", + "syscall.SYS_SHM_UNLINK": "syscall", + "syscall.SYS_SHUTDOWN": "syscall", + "syscall.SYS_SIGACTION": "syscall", + "syscall.SYS_SIGALTSTACK": "syscall", + "syscall.SYS_SIGNAL": "syscall", + "syscall.SYS_SIGNALFD": "syscall", + "syscall.SYS_SIGNALFD4": "syscall", + "syscall.SYS_SIGPENDING": "syscall", + "syscall.SYS_SIGPROCMASK": "syscall", + "syscall.SYS_SIGQUEUE": "syscall", + "syscall.SYS_SIGQUEUEINFO": "syscall", + "syscall.SYS_SIGRETURN": "syscall", + "syscall.SYS_SIGSUSPEND": "syscall", + "syscall.SYS_SIGSUSPEND_NOCANCEL": "syscall", + "syscall.SYS_SIGTIMEDWAIT": "syscall", + "syscall.SYS_SIGWAIT": "syscall", + "syscall.SYS_SIGWAITINFO": "syscall", + "syscall.SYS_SOCKET": "syscall", + "syscall.SYS_SOCKETCALL": "syscall", + "syscall.SYS_SOCKETPAIR": "syscall", + "syscall.SYS_SPLICE": "syscall", + "syscall.SYS_SSETMASK": "syscall", + "syscall.SYS_SSTK": "syscall", + "syscall.SYS_STACK_SNAPSHOT": "syscall", + "syscall.SYS_STAT": "syscall", + "syscall.SYS_STAT64": "syscall", + "syscall.SYS_STAT64_EXTENDED": "syscall", + "syscall.SYS_STATFS": "syscall", + "syscall.SYS_STATFS64": "syscall", + "syscall.SYS_STATV": "syscall", + "syscall.SYS_STATVFS1": "syscall", + "syscall.SYS_STAT_EXTENDED": "syscall", + "syscall.SYS_STIME": "syscall", + "syscall.SYS_STTY": "syscall", + "syscall.SYS_SWAPCONTEXT": "syscall", + "syscall.SYS_SWAPCTL": "syscall", + "syscall.SYS_SWAPOFF": "syscall", + "syscall.SYS_SWAPON": "syscall", + "syscall.SYS_SYMLINK": "syscall", + "syscall.SYS_SYMLINKAT": "syscall", + "syscall.SYS_SYNC": "syscall", + "syscall.SYS_SYNCFS": "syscall", + "syscall.SYS_SYNC_FILE_RANGE": "syscall", + "syscall.SYS_SYSARCH": "syscall", + "syscall.SYS_SYSCALL": "syscall", + "syscall.SYS_SYSCALL_BASE": "syscall", + "syscall.SYS_SYSFS": "syscall", + "syscall.SYS_SYSINFO": "syscall", + "syscall.SYS_SYSLOG": "syscall", + "syscall.SYS_TEE": "syscall", + "syscall.SYS_TGKILL": "syscall", + "syscall.SYS_THREAD_SELFID": "syscall", + "syscall.SYS_THR_CREATE": "syscall", + "syscall.SYS_THR_EXIT": "syscall", + "syscall.SYS_THR_KILL": "syscall", + "syscall.SYS_THR_KILL2": "syscall", + "syscall.SYS_THR_NEW": "syscall", + "syscall.SYS_THR_SELF": "syscall", + "syscall.SYS_THR_SET_NAME": "syscall", + "syscall.SYS_THR_SUSPEND": "syscall", + "syscall.SYS_THR_WAKE": "syscall", + "syscall.SYS_TIME": "syscall", + "syscall.SYS_TIMERFD_CREATE": "syscall", + "syscall.SYS_TIMERFD_GETTIME": "syscall", + "syscall.SYS_TIMERFD_SETTIME": "syscall", + "syscall.SYS_TIMER_CREATE": "syscall", + "syscall.SYS_TIMER_DELETE": "syscall", + "syscall.SYS_TIMER_GETOVERRUN": "syscall", + "syscall.SYS_TIMER_GETTIME": "syscall", + "syscall.SYS_TIMER_SETTIME": "syscall", + "syscall.SYS_TIMES": "syscall", + "syscall.SYS_TKILL": "syscall", + "syscall.SYS_TRUNCATE": "syscall", + "syscall.SYS_TRUNCATE64": "syscall", + "syscall.SYS_TUXCALL": "syscall", + "syscall.SYS_UGETRLIMIT": "syscall", + "syscall.SYS_ULIMIT": "syscall", + "syscall.SYS_UMASK": "syscall", + "syscall.SYS_UMASK_EXTENDED": "syscall", + "syscall.SYS_UMOUNT": "syscall", + "syscall.SYS_UMOUNT2": "syscall", + "syscall.SYS_UNAME": "syscall", + "syscall.SYS_UNDELETE": "syscall", + "syscall.SYS_UNLINK": "syscall", + "syscall.SYS_UNLINKAT": "syscall", + "syscall.SYS_UNMOUNT": "syscall", + "syscall.SYS_UNSHARE": "syscall", + "syscall.SYS_USELIB": "syscall", + "syscall.SYS_USTAT": "syscall", + "syscall.SYS_UTIME": "syscall", + "syscall.SYS_UTIMENSAT": "syscall", + "syscall.SYS_UTIMES": "syscall", + "syscall.SYS_UTRACE": "syscall", + "syscall.SYS_UUIDGEN": "syscall", + "syscall.SYS_VADVISE": "syscall", + "syscall.SYS_VFORK": "syscall", + "syscall.SYS_VHANGUP": "syscall", + "syscall.SYS_VM86": "syscall", + "syscall.SYS_VM86OLD": "syscall", + "syscall.SYS_VMSPLICE": "syscall", + "syscall.SYS_VM_PRESSURE_MONITOR": "syscall", + "syscall.SYS_VSERVER": "syscall", + "syscall.SYS_WAIT4": "syscall", + "syscall.SYS_WAIT4_NOCANCEL": "syscall", + "syscall.SYS_WAIT6": "syscall", + "syscall.SYS_WAITEVENT": "syscall", + "syscall.SYS_WAITID": "syscall", + "syscall.SYS_WAITID_NOCANCEL": "syscall", + "syscall.SYS_WAITPID": "syscall", + "syscall.SYS_WATCHEVENT": "syscall", + "syscall.SYS_WORKQ_KERNRETURN": "syscall", + "syscall.SYS_WORKQ_OPEN": "syscall", + "syscall.SYS_WRITE": "syscall", + "syscall.SYS_WRITEV": "syscall", + "syscall.SYS_WRITEV_NOCANCEL": "syscall", + "syscall.SYS_WRITE_NOCANCEL": "syscall", + "syscall.SYS_YIELD": "syscall", + "syscall.SYS__LLSEEK": "syscall", + "syscall.SYS__LWP_CONTINUE": "syscall", + "syscall.SYS__LWP_CREATE": "syscall", + "syscall.SYS__LWP_CTL": "syscall", + "syscall.SYS__LWP_DETACH": "syscall", + "syscall.SYS__LWP_EXIT": "syscall", + "syscall.SYS__LWP_GETNAME": "syscall", + "syscall.SYS__LWP_GETPRIVATE": "syscall", + "syscall.SYS__LWP_KILL": "syscall", + "syscall.SYS__LWP_PARK": "syscall", + "syscall.SYS__LWP_SELF": "syscall", + "syscall.SYS__LWP_SETNAME": "syscall", + "syscall.SYS__LWP_SETPRIVATE": "syscall", + "syscall.SYS__LWP_SUSPEND": "syscall", + "syscall.SYS__LWP_UNPARK": "syscall", + "syscall.SYS__LWP_UNPARK_ALL": "syscall", + "syscall.SYS__LWP_WAIT": "syscall", + "syscall.SYS__LWP_WAKEUP": "syscall", + "syscall.SYS__NEWSELECT": "syscall", + "syscall.SYS__PSET_BIND": "syscall", + "syscall.SYS__SCHED_GETAFFINITY": "syscall", + "syscall.SYS__SCHED_GETPARAM": "syscall", + "syscall.SYS__SCHED_SETAFFINITY": "syscall", + "syscall.SYS__SCHED_SETPARAM": "syscall", + "syscall.SYS__SYSCTL": "syscall", + "syscall.SYS__UMTX_LOCK": "syscall", + "syscall.SYS__UMTX_OP": "syscall", + "syscall.SYS__UMTX_UNLOCK": "syscall", + "syscall.SYS___ACL_ACLCHECK_FD": "syscall", + "syscall.SYS___ACL_ACLCHECK_FILE": "syscall", + "syscall.SYS___ACL_ACLCHECK_LINK": "syscall", + "syscall.SYS___ACL_DELETE_FD": "syscall", + "syscall.SYS___ACL_DELETE_FILE": "syscall", + "syscall.SYS___ACL_DELETE_LINK": "syscall", + "syscall.SYS___ACL_GET_FD": "syscall", + "syscall.SYS___ACL_GET_FILE": "syscall", + "syscall.SYS___ACL_GET_LINK": "syscall", + "syscall.SYS___ACL_SET_FD": "syscall", + "syscall.SYS___ACL_SET_FILE": "syscall", + "syscall.SYS___ACL_SET_LINK": "syscall", + "syscall.SYS___CLONE": "syscall", + "syscall.SYS___DISABLE_THREADSIGNAL": "syscall", + "syscall.SYS___GETCWD": "syscall", + "syscall.SYS___GETLOGIN": "syscall", + "syscall.SYS___GET_TCB": "syscall", + "syscall.SYS___MAC_EXECVE": "syscall", + "syscall.SYS___MAC_GETFSSTAT": "syscall", + "syscall.SYS___MAC_GET_FD": "syscall", + "syscall.SYS___MAC_GET_FILE": "syscall", + "syscall.SYS___MAC_GET_LCID": "syscall", + "syscall.SYS___MAC_GET_LCTX": "syscall", + "syscall.SYS___MAC_GET_LINK": "syscall", + "syscall.SYS___MAC_GET_MOUNT": "syscall", + "syscall.SYS___MAC_GET_PID": "syscall", + "syscall.SYS___MAC_GET_PROC": "syscall", + "syscall.SYS___MAC_MOUNT": "syscall", + "syscall.SYS___MAC_SET_FD": "syscall", + "syscall.SYS___MAC_SET_FILE": "syscall", + "syscall.SYS___MAC_SET_LCTX": "syscall", + "syscall.SYS___MAC_SET_LINK": "syscall", + "syscall.SYS___MAC_SET_PROC": "syscall", + "syscall.SYS___MAC_SYSCALL": "syscall", + "syscall.SYS___OLD_SEMWAIT_SIGNAL": "syscall", + "syscall.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": "syscall", + "syscall.SYS___POSIX_CHOWN": "syscall", + "syscall.SYS___POSIX_FCHOWN": "syscall", + "syscall.SYS___POSIX_LCHOWN": "syscall", + "syscall.SYS___POSIX_RENAME": "syscall", + "syscall.SYS___PTHREAD_CANCELED": "syscall", + "syscall.SYS___PTHREAD_CHDIR": "syscall", + "syscall.SYS___PTHREAD_FCHDIR": "syscall", + "syscall.SYS___PTHREAD_KILL": "syscall", + "syscall.SYS___PTHREAD_MARKCANCEL": "syscall", + "syscall.SYS___PTHREAD_SIGMASK": "syscall", + "syscall.SYS___QUOTACTL": "syscall", + "syscall.SYS___SEMCTL": "syscall", + "syscall.SYS___SEMWAIT_SIGNAL": "syscall", + "syscall.SYS___SEMWAIT_SIGNAL_NOCANCEL": "syscall", + "syscall.SYS___SETLOGIN": "syscall", + "syscall.SYS___SETUGID": "syscall", + "syscall.SYS___SET_TCB": "syscall", + "syscall.SYS___SIGACTION_SIGTRAMP": "syscall", + "syscall.SYS___SIGTIMEDWAIT": "syscall", + "syscall.SYS___SIGWAIT": "syscall", + "syscall.SYS___SIGWAIT_NOCANCEL": "syscall", + "syscall.SYS___SYSCTL": "syscall", + "syscall.SYS___TFORK": "syscall", + "syscall.SYS___THREXIT": "syscall", + "syscall.SYS___THRSIGDIVERT": "syscall", + "syscall.SYS___THRSLEEP": "syscall", + "syscall.SYS___THRWAKEUP": "syscall", + "syscall.S_ARCH1": "syscall", + "syscall.S_ARCH2": "syscall", + "syscall.S_BLKSIZE": "syscall", + "syscall.S_IEXEC": "syscall", + "syscall.S_IFBLK": "syscall", + "syscall.S_IFCHR": "syscall", + "syscall.S_IFDIR": "syscall", + "syscall.S_IFIFO": "syscall", + "syscall.S_IFLNK": "syscall", + "syscall.S_IFMT": "syscall", + "syscall.S_IFREG": "syscall", + "syscall.S_IFSOCK": "syscall", + "syscall.S_IFWHT": "syscall", + "syscall.S_IREAD": "syscall", + "syscall.S_IRGRP": "syscall", + "syscall.S_IROTH": "syscall", + "syscall.S_IRUSR": "syscall", + "syscall.S_IRWXG": "syscall", + "syscall.S_IRWXO": "syscall", + "syscall.S_IRWXU": "syscall", + "syscall.S_ISGID": "syscall", + "syscall.S_ISTXT": "syscall", + "syscall.S_ISUID": "syscall", + "syscall.S_ISVTX": "syscall", + "syscall.S_IWGRP": "syscall", + "syscall.S_IWOTH": "syscall", + "syscall.S_IWRITE": "syscall", + "syscall.S_IWUSR": "syscall", + "syscall.S_IXGRP": "syscall", + "syscall.S_IXOTH": "syscall", + "syscall.S_IXUSR": "syscall", + "syscall.S_LOGIN_SET": "syscall", + "syscall.SecurityAttributes": "syscall", + "syscall.Seek": "syscall", + "syscall.Select": "syscall", + "syscall.Sendfile": "syscall", + "syscall.Sendmsg": "syscall", + "syscall.Sendto": "syscall", + "syscall.Servent": "syscall", + "syscall.SetBpf": "syscall", + "syscall.SetBpfBuflen": "syscall", + "syscall.SetBpfDatalink": "syscall", + "syscall.SetBpfHeadercmpl": "syscall", + "syscall.SetBpfImmediate": "syscall", + "syscall.SetBpfInterface": "syscall", + "syscall.SetBpfPromisc": "syscall", + "syscall.SetBpfTimeout": "syscall", + "syscall.SetCurrentDirectory": "syscall", + "syscall.SetEndOfFile": "syscall", + "syscall.SetEnvironmentVariable": "syscall", + "syscall.SetFileAttributes": "syscall", + "syscall.SetFileCompletionNotificationModes": "syscall", + "syscall.SetFilePointer": "syscall", + "syscall.SetFileTime": "syscall", + "syscall.SetHandleInformation": "syscall", + "syscall.SetKevent": "syscall", + "syscall.SetLsfPromisc": "syscall", + "syscall.SetNonblock": "syscall", + "syscall.Setdomainname": "syscall", + "syscall.Setegid": "syscall", + "syscall.Setenv": "syscall", + "syscall.Seteuid": "syscall", + "syscall.Setfsgid": "syscall", + "syscall.Setfsuid": "syscall", + "syscall.Setgid": "syscall", + "syscall.Setgroups": "syscall", + "syscall.Sethostname": "syscall", + "syscall.Setlogin": "syscall", + "syscall.Setpgid": "syscall", + "syscall.Setpriority": "syscall", + "syscall.Setprivexec": "syscall", + "syscall.Setregid": "syscall", + "syscall.Setresgid": "syscall", + "syscall.Setresuid": "syscall", + "syscall.Setreuid": "syscall", + "syscall.Setrlimit": "syscall", + "syscall.Setsid": "syscall", + "syscall.Setsockopt": "syscall", + "syscall.SetsockoptByte": "syscall", + "syscall.SetsockoptICMPv6Filter": "syscall", + "syscall.SetsockoptIPMreq": "syscall", + "syscall.SetsockoptIPMreqn": "syscall", + "syscall.SetsockoptIPv6Mreq": "syscall", + "syscall.SetsockoptInet4Addr": "syscall", + "syscall.SetsockoptInt": "syscall", + "syscall.SetsockoptLinger": "syscall", + "syscall.SetsockoptString": "syscall", + "syscall.SetsockoptTimeval": "syscall", + "syscall.Settimeofday": "syscall", + "syscall.Setuid": "syscall", + "syscall.Setxattr": "syscall", + "syscall.Shutdown": "syscall", + "syscall.SidTypeAlias": "syscall", + "syscall.SidTypeComputer": "syscall", + "syscall.SidTypeDeletedAccount": "syscall", + "syscall.SidTypeDomain": "syscall", + "syscall.SidTypeGroup": "syscall", + "syscall.SidTypeInvalid": "syscall", + "syscall.SidTypeLabel": "syscall", + "syscall.SidTypeUnknown": "syscall", + "syscall.SidTypeUser": "syscall", + "syscall.SidTypeWellKnownGroup": "syscall", + "syscall.Signal": "syscall", + "syscall.SizeofBpfHdr": "syscall", + "syscall.SizeofBpfInsn": "syscall", + "syscall.SizeofBpfProgram": "syscall", + "syscall.SizeofBpfStat": "syscall", + "syscall.SizeofBpfVersion": "syscall", + "syscall.SizeofBpfZbuf": "syscall", + "syscall.SizeofBpfZbufHeader": "syscall", + "syscall.SizeofCmsghdr": "syscall", + "syscall.SizeofICMPv6Filter": "syscall", + "syscall.SizeofIPMreq": "syscall", + "syscall.SizeofIPMreqn": "syscall", + "syscall.SizeofIPv6MTUInfo": "syscall", + "syscall.SizeofIPv6Mreq": "syscall", + "syscall.SizeofIfAddrmsg": "syscall", + "syscall.SizeofIfAnnounceMsghdr": "syscall", + "syscall.SizeofIfData": "syscall", + "syscall.SizeofIfInfomsg": "syscall", + "syscall.SizeofIfMsghdr": "syscall", + "syscall.SizeofIfaMsghdr": "syscall", + "syscall.SizeofIfmaMsghdr": "syscall", + "syscall.SizeofIfmaMsghdr2": "syscall", + "syscall.SizeofInet4Pktinfo": "syscall", + "syscall.SizeofInet6Pktinfo": "syscall", + "syscall.SizeofInotifyEvent": "syscall", + "syscall.SizeofLinger": "syscall", + "syscall.SizeofMsghdr": "syscall", + "syscall.SizeofNlAttr": "syscall", + "syscall.SizeofNlMsgerr": "syscall", + "syscall.SizeofNlMsghdr": "syscall", + "syscall.SizeofRtAttr": "syscall", + "syscall.SizeofRtGenmsg": "syscall", + "syscall.SizeofRtMetrics": "syscall", + "syscall.SizeofRtMsg": "syscall", + "syscall.SizeofRtMsghdr": "syscall", + "syscall.SizeofRtNexthop": "syscall", + "syscall.SizeofSockFilter": "syscall", + "syscall.SizeofSockFprog": "syscall", + "syscall.SizeofSockaddrAny": "syscall", + "syscall.SizeofSockaddrDatalink": "syscall", + "syscall.SizeofSockaddrInet4": "syscall", + "syscall.SizeofSockaddrInet6": "syscall", + "syscall.SizeofSockaddrLinklayer": "syscall", + "syscall.SizeofSockaddrNetlink": "syscall", + "syscall.SizeofSockaddrUnix": "syscall", + "syscall.SizeofTCPInfo": "syscall", + "syscall.SizeofUcred": "syscall", + "syscall.SlicePtrFromStrings": "syscall", + "syscall.SockFilter": "syscall", + "syscall.SockFprog": "syscall", + "syscall.SockaddrDatalink": "syscall", + "syscall.SockaddrGen": "syscall", + "syscall.SockaddrInet4": "syscall", + "syscall.SockaddrInet6": "syscall", + "syscall.SockaddrLinklayer": "syscall", + "syscall.SockaddrNetlink": "syscall", + "syscall.SockaddrUnix": "syscall", + "syscall.Socket": "syscall", + "syscall.SocketControlMessage": "syscall", + "syscall.SocketDisableIPv6": "syscall", + "syscall.Socketpair": "syscall", + "syscall.Splice": "syscall", + "syscall.StartProcess": "syscall", + "syscall.StartupInfo": "syscall", + "syscall.Stat": "syscall", + "syscall.Stat_t": "syscall", + "syscall.Statfs": "syscall", + "syscall.Statfs_t": "syscall", + "syscall.Stderr": "syscall", + "syscall.Stdin": "syscall", + "syscall.Stdout": "syscall", + "syscall.StringBytePtr": "syscall", + "syscall.StringByteSlice": "syscall", + "syscall.StringSlicePtr": "syscall", + "syscall.StringToSid": "syscall", + "syscall.StringToUTF16": "syscall", + "syscall.StringToUTF16Ptr": "syscall", + "syscall.Symlink": "syscall", + "syscall.Sync": "syscall", + "syscall.SyncFileRange": "syscall", + "syscall.SysProcAttr": "syscall", + "syscall.Syscall": "syscall", + "syscall.Syscall12": "syscall", + "syscall.Syscall15": "syscall", + "syscall.Syscall6": "syscall", + "syscall.Syscall9": "syscall", + "syscall.Sysctl": "syscall", + "syscall.SysctlUint32": "syscall", + "syscall.Sysctlnode": "syscall", + "syscall.Sysinfo": "syscall", + "syscall.Sysinfo_t": "syscall", + "syscall.Systemtime": "syscall", + "syscall.TCGETS": "syscall", + "syscall.TCIFLUSH": "syscall", + "syscall.TCIOFLUSH": "syscall", + "syscall.TCOFLUSH": "syscall", + "syscall.TCPInfo": "syscall", + "syscall.TCP_CA_NAME_MAX": "syscall", + "syscall.TCP_CONGCTL": "syscall", + "syscall.TCP_CONGESTION": "syscall", + "syscall.TCP_CONNECTIONTIMEOUT": "syscall", + "syscall.TCP_CORK": "syscall", + "syscall.TCP_DEFER_ACCEPT": "syscall", + "syscall.TCP_INFO": "syscall", + "syscall.TCP_KEEPALIVE": "syscall", + "syscall.TCP_KEEPCNT": "syscall", + "syscall.TCP_KEEPIDLE": "syscall", + "syscall.TCP_KEEPINIT": "syscall", + "syscall.TCP_KEEPINTVL": "syscall", + "syscall.TCP_LINGER2": "syscall", + "syscall.TCP_MAXBURST": "syscall", + "syscall.TCP_MAXHLEN": "syscall", + "syscall.TCP_MAXOLEN": "syscall", + "syscall.TCP_MAXSEG": "syscall", + "syscall.TCP_MAXWIN": "syscall", + "syscall.TCP_MAX_SACK": "syscall", + "syscall.TCP_MAX_WINSHIFT": "syscall", + "syscall.TCP_MD5SIG": "syscall", + "syscall.TCP_MD5SIG_MAXKEYLEN": "syscall", + "syscall.TCP_MINMSS": "syscall", + "syscall.TCP_MINMSSOVERLOAD": "syscall", + "syscall.TCP_MSS": "syscall", + "syscall.TCP_NODELAY": "syscall", + "syscall.TCP_NOOPT": "syscall", + "syscall.TCP_NOPUSH": "syscall", + "syscall.TCP_NSTATES": "syscall", + "syscall.TCP_QUICKACK": "syscall", + "syscall.TCP_RXT_CONNDROPTIME": "syscall", + "syscall.TCP_RXT_FINDROP": "syscall", + "syscall.TCP_SACK_ENABLE": "syscall", + "syscall.TCP_SYNCNT": "syscall", + "syscall.TCP_WINDOW_CLAMP": "syscall", + "syscall.TCSAFLUSH": "syscall", + "syscall.TCSETS": "syscall", + "syscall.TF_DISCONNECT": "syscall", + "syscall.TF_REUSE_SOCKET": "syscall", + "syscall.TF_USE_DEFAULT_WORKER": "syscall", + "syscall.TF_USE_KERNEL_APC": "syscall", + "syscall.TF_USE_SYSTEM_THREAD": "syscall", + "syscall.TF_WRITE_BEHIND": "syscall", + "syscall.TIME_ZONE_ID_DAYLIGHT": "syscall", + "syscall.TIME_ZONE_ID_STANDARD": "syscall", + "syscall.TIME_ZONE_ID_UNKNOWN": "syscall", + "syscall.TIOCCBRK": "syscall", + "syscall.TIOCCDTR": "syscall", + "syscall.TIOCCONS": "syscall", + "syscall.TIOCDCDTIMESTAMP": "syscall", + "syscall.TIOCDRAIN": "syscall", + "syscall.TIOCDSIMICROCODE": "syscall", + "syscall.TIOCEXCL": "syscall", + "syscall.TIOCEXT": "syscall", + "syscall.TIOCFLAG_CDTRCTS": "syscall", + "syscall.TIOCFLAG_CLOCAL": "syscall", + "syscall.TIOCFLAG_CRTSCTS": "syscall", + "syscall.TIOCFLAG_MDMBUF": "syscall", + "syscall.TIOCFLAG_PPS": "syscall", + "syscall.TIOCFLAG_SOFTCAR": "syscall", + "syscall.TIOCFLUSH": "syscall", + "syscall.TIOCGDEV": "syscall", + "syscall.TIOCGDRAINWAIT": "syscall", + "syscall.TIOCGETA": "syscall", + "syscall.TIOCGETD": "syscall", + "syscall.TIOCGFLAGS": "syscall", + "syscall.TIOCGICOUNT": "syscall", + "syscall.TIOCGLCKTRMIOS": "syscall", + "syscall.TIOCGLINED": "syscall", + "syscall.TIOCGPGRP": "syscall", + "syscall.TIOCGPTN": "syscall", + "syscall.TIOCGQSIZE": "syscall", + "syscall.TIOCGRANTPT": "syscall", + "syscall.TIOCGRS485": "syscall", + "syscall.TIOCGSERIAL": "syscall", + "syscall.TIOCGSID": "syscall", + "syscall.TIOCGSIZE": "syscall", + "syscall.TIOCGSOFTCAR": "syscall", + "syscall.TIOCGTSTAMP": "syscall", + "syscall.TIOCGWINSZ": "syscall", + "syscall.TIOCINQ": "syscall", + "syscall.TIOCIXOFF": "syscall", + "syscall.TIOCIXON": "syscall", + "syscall.TIOCLINUX": "syscall", + "syscall.TIOCMBIC": "syscall", + "syscall.TIOCMBIS": "syscall", + "syscall.TIOCMGDTRWAIT": "syscall", + "syscall.TIOCMGET": "syscall", + "syscall.TIOCMIWAIT": "syscall", + "syscall.TIOCMODG": "syscall", + "syscall.TIOCMODS": "syscall", + "syscall.TIOCMSDTRWAIT": "syscall", + "syscall.TIOCMSET": "syscall", + "syscall.TIOCM_CAR": "syscall", + "syscall.TIOCM_CD": "syscall", + "syscall.TIOCM_CTS": "syscall", + "syscall.TIOCM_DCD": "syscall", + "syscall.TIOCM_DSR": "syscall", + "syscall.TIOCM_DTR": "syscall", + "syscall.TIOCM_LE": "syscall", + "syscall.TIOCM_RI": "syscall", + "syscall.TIOCM_RNG": "syscall", + "syscall.TIOCM_RTS": "syscall", + "syscall.TIOCM_SR": "syscall", + "syscall.TIOCM_ST": "syscall", + "syscall.TIOCNOTTY": "syscall", + "syscall.TIOCNXCL": "syscall", + "syscall.TIOCOUTQ": "syscall", + "syscall.TIOCPKT": "syscall", + "syscall.TIOCPKT_DATA": "syscall", + "syscall.TIOCPKT_DOSTOP": "syscall", + "syscall.TIOCPKT_FLUSHREAD": "syscall", + "syscall.TIOCPKT_FLUSHWRITE": "syscall", + "syscall.TIOCPKT_IOCTL": "syscall", + "syscall.TIOCPKT_NOSTOP": "syscall", + "syscall.TIOCPKT_START": "syscall", + "syscall.TIOCPKT_STOP": "syscall", + "syscall.TIOCPTMASTER": "syscall", + "syscall.TIOCPTMGET": "syscall", + "syscall.TIOCPTSNAME": "syscall", + "syscall.TIOCPTYGNAME": "syscall", + "syscall.TIOCPTYGRANT": "syscall", + "syscall.TIOCPTYUNLK": "syscall", + "syscall.TIOCRCVFRAME": "syscall", + "syscall.TIOCREMOTE": "syscall", + "syscall.TIOCSBRK": "syscall", + "syscall.TIOCSCONS": "syscall", + "syscall.TIOCSCTTY": "syscall", + "syscall.TIOCSDRAINWAIT": "syscall", + "syscall.TIOCSDTR": "syscall", + "syscall.TIOCSERCONFIG": "syscall", + "syscall.TIOCSERGETLSR": "syscall", + "syscall.TIOCSERGETMULTI": "syscall", + "syscall.TIOCSERGSTRUCT": "syscall", + "syscall.TIOCSERGWILD": "syscall", + "syscall.TIOCSERSETMULTI": "syscall", + "syscall.TIOCSERSWILD": "syscall", + "syscall.TIOCSER_TEMT": "syscall", + "syscall.TIOCSETA": "syscall", + "syscall.TIOCSETAF": "syscall", + "syscall.TIOCSETAW": "syscall", + "syscall.TIOCSETD": "syscall", + "syscall.TIOCSFLAGS": "syscall", + "syscall.TIOCSIG": "syscall", + "syscall.TIOCSLCKTRMIOS": "syscall", + "syscall.TIOCSLINED": "syscall", + "syscall.TIOCSPGRP": "syscall", + "syscall.TIOCSPTLCK": "syscall", + "syscall.TIOCSQSIZE": "syscall", + "syscall.TIOCSRS485": "syscall", + "syscall.TIOCSSERIAL": "syscall", + "syscall.TIOCSSIZE": "syscall", + "syscall.TIOCSSOFTCAR": "syscall", + "syscall.TIOCSTART": "syscall", + "syscall.TIOCSTAT": "syscall", + "syscall.TIOCSTI": "syscall", + "syscall.TIOCSTOP": "syscall", + "syscall.TIOCSTSTAMP": "syscall", + "syscall.TIOCSWINSZ": "syscall", + "syscall.TIOCTIMESTAMP": "syscall", + "syscall.TIOCUCNTL": "syscall", + "syscall.TIOCVHANGUP": "syscall", + "syscall.TIOCXMTFRAME": "syscall", + "syscall.TOKEN_ADJUST_DEFAULT": "syscall", + "syscall.TOKEN_ADJUST_GROUPS": "syscall", + "syscall.TOKEN_ADJUST_PRIVILEGES": "syscall", + "syscall.TOKEN_ALL_ACCESS": "syscall", + "syscall.TOKEN_ASSIGN_PRIMARY": "syscall", + "syscall.TOKEN_DUPLICATE": "syscall", + "syscall.TOKEN_EXECUTE": "syscall", + "syscall.TOKEN_IMPERSONATE": "syscall", + "syscall.TOKEN_QUERY": "syscall", + "syscall.TOKEN_QUERY_SOURCE": "syscall", + "syscall.TOKEN_READ": "syscall", + "syscall.TOKEN_WRITE": "syscall", + "syscall.TOSTOP": "syscall", + "syscall.TRUNCATE_EXISTING": "syscall", + "syscall.TUNATTACHFILTER": "syscall", + "syscall.TUNDETACHFILTER": "syscall", + "syscall.TUNGETFEATURES": "syscall", + "syscall.TUNGETIFF": "syscall", + "syscall.TUNGETSNDBUF": "syscall", + "syscall.TUNGETVNETHDRSZ": "syscall", + "syscall.TUNSETDEBUG": "syscall", + "syscall.TUNSETGROUP": "syscall", + "syscall.TUNSETIFF": "syscall", + "syscall.TUNSETLINK": "syscall", + "syscall.TUNSETNOCSUM": "syscall", + "syscall.TUNSETOFFLOAD": "syscall", + "syscall.TUNSETOWNER": "syscall", + "syscall.TUNSETPERSIST": "syscall", + "syscall.TUNSETSNDBUF": "syscall", + "syscall.TUNSETTXFILTER": "syscall", + "syscall.TUNSETVNETHDRSZ": "syscall", + "syscall.Tee": "syscall", + "syscall.TerminateProcess": "syscall", + "syscall.Termios": "syscall", + "syscall.Tgkill": "syscall", + "syscall.Time": "syscall", + "syscall.Time_t": "syscall", + "syscall.Times": "syscall", + "syscall.Timespec": "syscall", + "syscall.TimespecToNsec": "syscall", + "syscall.Timeval": "syscall", + "syscall.Timeval32": "syscall", + "syscall.TimevalToNsec": "syscall", + "syscall.Timex": "syscall", + "syscall.Timezoneinformation": "syscall", + "syscall.Tms": "syscall", + "syscall.Token": "syscall", + "syscall.TokenAccessInformation": "syscall", + "syscall.TokenAuditPolicy": "syscall", + "syscall.TokenDefaultDacl": "syscall", + "syscall.TokenElevation": "syscall", + "syscall.TokenElevationType": "syscall", + "syscall.TokenGroups": "syscall", + "syscall.TokenGroupsAndPrivileges": "syscall", + "syscall.TokenHasRestrictions": "syscall", + "syscall.TokenImpersonationLevel": "syscall", + "syscall.TokenIntegrityLevel": "syscall", + "syscall.TokenLinkedToken": "syscall", + "syscall.TokenLogonSid": "syscall", + "syscall.TokenMandatoryPolicy": "syscall", + "syscall.TokenOrigin": "syscall", + "syscall.TokenOwner": "syscall", + "syscall.TokenPrimaryGroup": "syscall", + "syscall.TokenPrivileges": "syscall", + "syscall.TokenRestrictedSids": "syscall", + "syscall.TokenSandBoxInert": "syscall", + "syscall.TokenSessionId": "syscall", + "syscall.TokenSessionReference": "syscall", + "syscall.TokenSource": "syscall", + "syscall.TokenStatistics": "syscall", + "syscall.TokenType": "syscall", + "syscall.TokenUIAccess": "syscall", + "syscall.TokenUser": "syscall", + "syscall.TokenVirtualizationAllowed": "syscall", + "syscall.TokenVirtualizationEnabled": "syscall", + "syscall.Tokenprimarygroup": "syscall", + "syscall.Tokenuser": "syscall", + "syscall.TranslateAccountName": "syscall", + "syscall.TranslateName": "syscall", + "syscall.TransmitFile": "syscall", + "syscall.TransmitFileBuffers": "syscall", + "syscall.Truncate": "syscall", + "syscall.USAGE_MATCH_TYPE_AND": "syscall", + "syscall.USAGE_MATCH_TYPE_OR": "syscall", + "syscall.UTF16FromString": "syscall", + "syscall.UTF16PtrFromString": "syscall", + "syscall.UTF16ToString": "syscall", + "syscall.Ucred": "syscall", + "syscall.Umask": "syscall", + "syscall.Uname": "syscall", + "syscall.Undelete": "syscall", + "syscall.UnixCredentials": "syscall", + "syscall.UnixRights": "syscall", + "syscall.Unlink": "syscall", + "syscall.Unlinkat": "syscall", + "syscall.UnmapViewOfFile": "syscall", + "syscall.Unmount": "syscall", + "syscall.Unshare": "syscall", + "syscall.UserInfo10": "syscall", + "syscall.Ustat": "syscall", + "syscall.Ustat_t": "syscall", + "syscall.Utimbuf": "syscall", + "syscall.Utime": "syscall", + "syscall.Utimes": "syscall", + "syscall.UtimesNano": "syscall", + "syscall.Utsname": "syscall", + "syscall.VDISCARD": "syscall", + "syscall.VDSUSP": "syscall", + "syscall.VEOF": "syscall", + "syscall.VEOL": "syscall", + "syscall.VEOL2": "syscall", + "syscall.VERASE": "syscall", + "syscall.VERASE2": "syscall", + "syscall.VINTR": "syscall", + "syscall.VKILL": "syscall", + "syscall.VLNEXT": "syscall", + "syscall.VMIN": "syscall", + "syscall.VQUIT": "syscall", + "syscall.VREPRINT": "syscall", + "syscall.VSTART": "syscall", + "syscall.VSTATUS": "syscall", + "syscall.VSTOP": "syscall", + "syscall.VSUSP": "syscall", + "syscall.VSWTC": "syscall", + "syscall.VT0": "syscall", + "syscall.VT1": "syscall", + "syscall.VTDLY": "syscall", + "syscall.VTIME": "syscall", + "syscall.VWERASE": "syscall", + "syscall.VirtualLock": "syscall", + "syscall.VirtualUnlock": "syscall", + "syscall.WAIT_ABANDONED": "syscall", + "syscall.WAIT_FAILED": "syscall", + "syscall.WAIT_OBJECT_0": "syscall", + "syscall.WAIT_TIMEOUT": "syscall", + "syscall.WALL": "syscall", + "syscall.WALLSIG": "syscall", + "syscall.WALTSIG": "syscall", + "syscall.WCLONE": "syscall", + "syscall.WCONTINUED": "syscall", + "syscall.WCOREFLAG": "syscall", + "syscall.WEXITED": "syscall", + "syscall.WLINUXCLONE": "syscall", + "syscall.WNOHANG": "syscall", + "syscall.WNOTHREAD": "syscall", + "syscall.WNOWAIT": "syscall", + "syscall.WNOZOMBIE": "syscall", + "syscall.WOPTSCHECKED": "syscall", + "syscall.WORDSIZE": "syscall", + "syscall.WSABuf": "syscall", + "syscall.WSACleanup": "syscall", + "syscall.WSADESCRIPTION_LEN": "syscall", + "syscall.WSAData": "syscall", + "syscall.WSAEACCES": "syscall", + "syscall.WSAEnumProtocols": "syscall", + "syscall.WSAID_CONNECTEX": "syscall", + "syscall.WSAIoctl": "syscall", + "syscall.WSAPROTOCOL_LEN": "syscall", + "syscall.WSAProtocolChain": "syscall", + "syscall.WSAProtocolInfo": "syscall", + "syscall.WSARecv": "syscall", + "syscall.WSARecvFrom": "syscall", + "syscall.WSASYS_STATUS_LEN": "syscall", + "syscall.WSASend": "syscall", + "syscall.WSASendTo": "syscall", + "syscall.WSASendto": "syscall", + "syscall.WSAStartup": "syscall", + "syscall.WSTOPPED": "syscall", + "syscall.WTRAPPED": "syscall", + "syscall.WUNTRACED": "syscall", + "syscall.Wait4": "syscall", + "syscall.WaitForSingleObject": "syscall", + "syscall.WaitStatus": "syscall", + "syscall.Win32FileAttributeData": "syscall", + "syscall.Win32finddata": "syscall", + "syscall.Write": "syscall", + "syscall.WriteConsole": "syscall", + "syscall.WriteFile": "syscall", + "syscall.X509_ASN_ENCODING": "syscall", + "syscall.XCASE": "syscall", + "syscall.XP1_CONNECTIONLESS": "syscall", + "syscall.XP1_CONNECT_DATA": "syscall", + "syscall.XP1_DISCONNECT_DATA": "syscall", + "syscall.XP1_EXPEDITED_DATA": "syscall", + "syscall.XP1_GRACEFUL_CLOSE": "syscall", + "syscall.XP1_GUARANTEED_DELIVERY": "syscall", + "syscall.XP1_GUARANTEED_ORDER": "syscall", + "syscall.XP1_IFS_HANDLES": "syscall", + "syscall.XP1_MESSAGE_ORIENTED": "syscall", + "syscall.XP1_MULTIPOINT_CONTROL_PLANE": "syscall", + "syscall.XP1_MULTIPOINT_DATA_PLANE": "syscall", + "syscall.XP1_PARTIAL_MESSAGE": "syscall", + "syscall.XP1_PSEUDO_STREAM": "syscall", + "syscall.XP1_QOS_SUPPORTED": "syscall", + "syscall.XP1_SAN_SUPPORT_SDP": "syscall", + "syscall.XP1_SUPPORT_BROADCAST": "syscall", + "syscall.XP1_SUPPORT_MULTIPOINT": "syscall", + "syscall.XP1_UNI_RECV": "syscall", + "syscall.XP1_UNI_SEND": "syscall", + "syslog.Dial": "log/syslog", + "syslog.LOG_ALERT": "log/syslog", + "syslog.LOG_AUTH": "log/syslog", + "syslog.LOG_AUTHPRIV": "log/syslog", + "syslog.LOG_CRIT": "log/syslog", + "syslog.LOG_CRON": "log/syslog", + "syslog.LOG_DAEMON": "log/syslog", + "syslog.LOG_DEBUG": "log/syslog", + "syslog.LOG_EMERG": "log/syslog", + "syslog.LOG_ERR": "log/syslog", + "syslog.LOG_FTP": "log/syslog", + "syslog.LOG_INFO": "log/syslog", + "syslog.LOG_KERN": "log/syslog", + "syslog.LOG_LOCAL0": "log/syslog", + "syslog.LOG_LOCAL1": "log/syslog", + "syslog.LOG_LOCAL2": "log/syslog", + "syslog.LOG_LOCAL3": "log/syslog", + "syslog.LOG_LOCAL4": "log/syslog", + "syslog.LOG_LOCAL5": "log/syslog", + "syslog.LOG_LOCAL6": "log/syslog", + "syslog.LOG_LOCAL7": "log/syslog", + "syslog.LOG_LPR": "log/syslog", + "syslog.LOG_MAIL": "log/syslog", + "syslog.LOG_NEWS": "log/syslog", + "syslog.LOG_NOTICE": "log/syslog", + "syslog.LOG_SYSLOG": "log/syslog", + "syslog.LOG_USER": "log/syslog", + "syslog.LOG_UUCP": "log/syslog", + "syslog.LOG_WARNING": "log/syslog", + "syslog.New": "log/syslog", + "syslog.NewLogger": "log/syslog", + "syslog.Priority": "log/syslog", + "syslog.Writer": "log/syslog", + "tabwriter.AlignRight": "text/tabwriter", + "tabwriter.Debug": "text/tabwriter", + "tabwriter.DiscardEmptyColumns": "text/tabwriter", + "tabwriter.Escape": "text/tabwriter", + "tabwriter.FilterHTML": "text/tabwriter", + "tabwriter.NewWriter": "text/tabwriter", + "tabwriter.StripEscape": "text/tabwriter", + "tabwriter.TabIndent": "text/tabwriter", + "tabwriter.Writer": "text/tabwriter", + "tar.ErrFieldTooLong": "archive/tar", + "tar.ErrHeader": "archive/tar", + "tar.ErrWriteAfterClose": "archive/tar", + "tar.ErrWriteTooLong": "archive/tar", + "tar.FileInfoHeader": "archive/tar", + "tar.Header": "archive/tar", + "tar.NewReader": "archive/tar", + "tar.NewWriter": "archive/tar", + "tar.Reader": "archive/tar", + "tar.TypeBlock": "archive/tar", + "tar.TypeChar": "archive/tar", + "tar.TypeCont": "archive/tar", + "tar.TypeDir": "archive/tar", + "tar.TypeFifo": "archive/tar", + "tar.TypeGNULongLink": "archive/tar", + "tar.TypeGNULongName": "archive/tar", + "tar.TypeLink": "archive/tar", + "tar.TypeReg": "archive/tar", + "tar.TypeRegA": "archive/tar", + "tar.TypeSymlink": "archive/tar", + "tar.TypeXGlobalHeader": "archive/tar", + "tar.TypeXHeader": "archive/tar", + "tar.Writer": "archive/tar", + "template.CSS": "html/template", + "template.ErrAmbigContext": "html/template", + "template.ErrBadHTML": "html/template", + "template.ErrBranchEnd": "html/template", + "template.ErrEndContext": "html/template", + "template.ErrNoSuchTemplate": "html/template", + "template.ErrOutputContext": "html/template", + "template.ErrPartialCharset": "html/template", + "template.ErrPartialEscape": "html/template", + "template.ErrRangeLoopReentry": "html/template", + "template.ErrSlashAmbig": "html/template", + "template.Error": "html/template", + "template.ErrorCode": "html/template", + // "template.FuncMap" is ambiguous + "template.HTML": "html/template", + "template.HTMLAttr": "html/template", + // "template.HTMLEscape" is ambiguous + // "template.HTMLEscapeString" is ambiguous + // "template.HTMLEscaper" is ambiguous + "template.JS": "html/template", + // "template.JSEscape" is ambiguous + // "template.JSEscapeString" is ambiguous + // "template.JSEscaper" is ambiguous + "template.JSStr": "html/template", + // "template.Must" is ambiguous + // "template.New" is ambiguous + "template.OK": "html/template", + // "template.ParseFiles" is ambiguous + // "template.ParseGlob" is ambiguous + // "template.Template" is ambiguous + "template.URL": "html/template", + // "template.URLQueryEscaper" is ambiguous + "testing.AllocsPerRun": "testing", + "testing.B": "testing", + "testing.Benchmark": "testing", + "testing.BenchmarkResult": "testing", + "testing.Cover": "testing", + "testing.CoverBlock": "testing", + "testing.InternalBenchmark": "testing", + "testing.InternalExample": "testing", + "testing.InternalTest": "testing", + "testing.Main": "testing", + "testing.RegisterCover": "testing", + "testing.RunBenchmarks": "testing", + "testing.RunExamples": "testing", + "testing.RunTests": "testing", + "testing.Short": "testing", + "testing.T": "testing", + "testing.Verbose": "testing", + "textproto.CanonicalMIMEHeaderKey": "net/textproto", + "textproto.Conn": "net/textproto", + "textproto.Dial": "net/textproto", + "textproto.Error": "net/textproto", + "textproto.MIMEHeader": "net/textproto", + "textproto.NewConn": "net/textproto", + "textproto.NewReader": "net/textproto", + "textproto.NewWriter": "net/textproto", + "textproto.Pipeline": "net/textproto", + "textproto.ProtocolError": "net/textproto", + "textproto.Reader": "net/textproto", + "textproto.TrimBytes": "net/textproto", + "textproto.TrimString": "net/textproto", + "textproto.Writer": "net/textproto", + "time.ANSIC": "time", + "time.After": "time", + "time.AfterFunc": "time", + "time.April": "time", + "time.August": "time", + "time.Date": "time", + "time.December": "time", + "time.Duration": "time", + "time.February": "time", + "time.FixedZone": "time", + "time.Friday": "time", + "time.Hour": "time", + "time.January": "time", + "time.July": "time", + "time.June": "time", + "time.Kitchen": "time", + "time.LoadLocation": "time", + "time.Local": "time", + "time.Location": "time", + "time.March": "time", + "time.May": "time", + "time.Microsecond": "time", + "time.Millisecond": "time", + "time.Minute": "time", + "time.Monday": "time", + "time.Month": "time", + "time.Nanosecond": "time", + "time.NewTicker": "time", + "time.NewTimer": "time", + "time.November": "time", + "time.Now": "time", + "time.October": "time", + "time.Parse": "time", + "time.ParseDuration": "time", + "time.ParseError": "time", + "time.ParseInLocation": "time", + "time.RFC1123": "time", + "time.RFC1123Z": "time", + "time.RFC3339": "time", + "time.RFC3339Nano": "time", + "time.RFC822": "time", + "time.RFC822Z": "time", + "time.RFC850": "time", + "time.RubyDate": "time", + "time.Saturday": "time", + "time.Second": "time", + "time.September": "time", + "time.Since": "time", + "time.Sleep": "time", + "time.Stamp": "time", + "time.StampMicro": "time", + "time.StampMilli": "time", + "time.StampNano": "time", + "time.Sunday": "time", + "time.Thursday": "time", + "time.Tick": "time", + "time.Ticker": "time", + "time.Time": "time", + "time.Timer": "time", + "time.Tuesday": "time", + "time.UTC": "time", + "time.Unix": "time", + "time.UnixDate": "time", + "time.Wednesday": "time", + "time.Weekday": "time", + "tls.Certificate": "crypto/tls", + "tls.Client": "crypto/tls", + "tls.ClientAuthType": "crypto/tls", + "tls.Config": "crypto/tls", + "tls.Conn": "crypto/tls", + "tls.ConnectionState": "crypto/tls", + "tls.Dial": "crypto/tls", + "tls.Listen": "crypto/tls", + "tls.LoadX509KeyPair": "crypto/tls", + "tls.NewListener": "crypto/tls", + "tls.NoClientCert": "crypto/tls", + "tls.RequestClientCert": "crypto/tls", + "tls.RequireAndVerifyClientCert": "crypto/tls", + "tls.RequireAnyClientCert": "crypto/tls", + "tls.Server": "crypto/tls", + "tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": "crypto/tls", + "tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": "crypto/tls", + "tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": "crypto/tls", + "tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": "crypto/tls", + "tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": "crypto/tls", + "tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": "crypto/tls", + "tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": "crypto/tls", + "tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": "crypto/tls", + "tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA": "crypto/tls", + "tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA": "crypto/tls", + "tls.TLS_RSA_WITH_AES_128_CBC_SHA": "crypto/tls", + "tls.TLS_RSA_WITH_AES_256_CBC_SHA": "crypto/tls", + "tls.TLS_RSA_WITH_RC4_128_SHA": "crypto/tls", + "tls.VerifyClientCertIfGiven": "crypto/tls", + "tls.VersionSSL30": "crypto/tls", + "tls.VersionTLS10": "crypto/tls", + "tls.VersionTLS11": "crypto/tls", + "tls.VersionTLS12": "crypto/tls", + "tls.X509KeyPair": "crypto/tls", + "token.ADD": "go/token", + "token.ADD_ASSIGN": "go/token", + "token.AND": "go/token", + "token.AND_ASSIGN": "go/token", + "token.AND_NOT": "go/token", + "token.AND_NOT_ASSIGN": "go/token", + "token.ARROW": "go/token", + "token.ASSIGN": "go/token", + "token.BREAK": "go/token", + "token.CASE": "go/token", + "token.CHAN": "go/token", + "token.CHAR": "go/token", + "token.COLON": "go/token", + "token.COMMA": "go/token", + "token.COMMENT": "go/token", + "token.CONST": "go/token", + "token.CONTINUE": "go/token", + "token.DEC": "go/token", + "token.DEFAULT": "go/token", + "token.DEFER": "go/token", + "token.DEFINE": "go/token", + "token.ELLIPSIS": "go/token", + "token.ELSE": "go/token", + "token.EOF": "go/token", + "token.EQL": "go/token", + "token.FALLTHROUGH": "go/token", + "token.FLOAT": "go/token", + "token.FOR": "go/token", + "token.FUNC": "go/token", + "token.File": "go/token", + "token.FileSet": "go/token", + "token.GEQ": "go/token", + "token.GO": "go/token", + "token.GOTO": "go/token", + "token.GTR": "go/token", + "token.HighestPrec": "go/token", + "token.IDENT": "go/token", + "token.IF": "go/token", + "token.ILLEGAL": "go/token", + "token.IMAG": "go/token", + "token.IMPORT": "go/token", + "token.INC": "go/token", + "token.INT": "go/token", + "token.INTERFACE": "go/token", + "token.LAND": "go/token", + "token.LBRACE": "go/token", + "token.LBRACK": "go/token", + "token.LEQ": "go/token", + "token.LOR": "go/token", + "token.LPAREN": "go/token", + "token.LSS": "go/token", + "token.Lookup": "go/token", + "token.LowestPrec": "go/token", + "token.MAP": "go/token", + "token.MUL": "go/token", + "token.MUL_ASSIGN": "go/token", + "token.NEQ": "go/token", + "token.NOT": "go/token", + "token.NewFileSet": "go/token", + "token.NoPos": "go/token", + "token.OR": "go/token", + "token.OR_ASSIGN": "go/token", + "token.PACKAGE": "go/token", + "token.PERIOD": "go/token", + "token.Pos": "go/token", + "token.Position": "go/token", + "token.QUO": "go/token", + "token.QUO_ASSIGN": "go/token", + "token.RANGE": "go/token", + "token.RBRACE": "go/token", + "token.RBRACK": "go/token", + "token.REM": "go/token", + "token.REM_ASSIGN": "go/token", + "token.RETURN": "go/token", + "token.RPAREN": "go/token", + "token.SELECT": "go/token", + "token.SEMICOLON": "go/token", + "token.SHL": "go/token", + "token.SHL_ASSIGN": "go/token", + "token.SHR": "go/token", + "token.SHR_ASSIGN": "go/token", + "token.STRING": "go/token", + "token.STRUCT": "go/token", + "token.SUB": "go/token", + "token.SUB_ASSIGN": "go/token", + "token.SWITCH": "go/token", + "token.TYPE": "go/token", + "token.Token": "go/token", + "token.UnaryPrec": "go/token", + "token.VAR": "go/token", + "token.XOR": "go/token", + "token.XOR_ASSIGN": "go/token", + "unicode.ASCII_Hex_Digit": "unicode", + "unicode.Arabic": "unicode", + "unicode.Armenian": "unicode", + "unicode.Avestan": "unicode", + "unicode.AzeriCase": "unicode", + "unicode.Balinese": "unicode", + "unicode.Bamum": "unicode", + "unicode.Batak": "unicode", + "unicode.Bengali": "unicode", + "unicode.Bidi_Control": "unicode", + "unicode.Bopomofo": "unicode", + "unicode.Brahmi": "unicode", + "unicode.Braille": "unicode", + "unicode.Buginese": "unicode", + "unicode.Buhid": "unicode", + "unicode.C": "unicode", + "unicode.Canadian_Aboriginal": "unicode", + "unicode.Carian": "unicode", + "unicode.CaseRange": "unicode", + "unicode.CaseRanges": "unicode", + "unicode.Categories": "unicode", + "unicode.Cc": "unicode", + "unicode.Cf": "unicode", + "unicode.Chakma": "unicode", + "unicode.Cham": "unicode", + "unicode.Cherokee": "unicode", + "unicode.Co": "unicode", + "unicode.Common": "unicode", + "unicode.Coptic": "unicode", + "unicode.Cs": "unicode", + "unicode.Cuneiform": "unicode", + "unicode.Cypriot": "unicode", + "unicode.Cyrillic": "unicode", + "unicode.Dash": "unicode", + "unicode.Deprecated": "unicode", + "unicode.Deseret": "unicode", + "unicode.Devanagari": "unicode", + "unicode.Diacritic": "unicode", + "unicode.Digit": "unicode", + "unicode.Egyptian_Hieroglyphs": "unicode", + "unicode.Ethiopic": "unicode", + "unicode.Extender": "unicode", + "unicode.FoldCategory": "unicode", + "unicode.FoldScript": "unicode", + "unicode.Georgian": "unicode", + "unicode.Glagolitic": "unicode", + "unicode.Gothic": "unicode", + "unicode.GraphicRanges": "unicode", + "unicode.Greek": "unicode", + "unicode.Gujarati": "unicode", + "unicode.Gurmukhi": "unicode", + "unicode.Han": "unicode", + "unicode.Hangul": "unicode", + "unicode.Hanunoo": "unicode", + "unicode.Hebrew": "unicode", + "unicode.Hex_Digit": "unicode", + "unicode.Hiragana": "unicode", + "unicode.Hyphen": "unicode", + "unicode.IDS_Binary_Operator": "unicode", + "unicode.IDS_Trinary_Operator": "unicode", + "unicode.Ideographic": "unicode", + "unicode.Imperial_Aramaic": "unicode", + "unicode.In": "unicode", + "unicode.Inherited": "unicode", + "unicode.Inscriptional_Pahlavi": "unicode", + "unicode.Inscriptional_Parthian": "unicode", + "unicode.Is": "unicode", + "unicode.IsControl": "unicode", + "unicode.IsDigit": "unicode", + "unicode.IsGraphic": "unicode", + "unicode.IsLetter": "unicode", + "unicode.IsLower": "unicode", + "unicode.IsMark": "unicode", + "unicode.IsNumber": "unicode", + "unicode.IsOneOf": "unicode", + "unicode.IsPrint": "unicode", + "unicode.IsPunct": "unicode", + "unicode.IsSpace": "unicode", + "unicode.IsSymbol": "unicode", + "unicode.IsTitle": "unicode", + "unicode.IsUpper": "unicode", + "unicode.Javanese": "unicode", + "unicode.Join_Control": "unicode", + "unicode.Kaithi": "unicode", + "unicode.Kannada": "unicode", + "unicode.Katakana": "unicode", + "unicode.Kayah_Li": "unicode", + "unicode.Kharoshthi": "unicode", + "unicode.Khmer": "unicode", + "unicode.L": "unicode", + "unicode.Lao": "unicode", + "unicode.Latin": "unicode", + "unicode.Lepcha": "unicode", + "unicode.Letter": "unicode", + "unicode.Limbu": "unicode", + "unicode.Linear_B": "unicode", + "unicode.Lisu": "unicode", + "unicode.Ll": "unicode", + "unicode.Lm": "unicode", + "unicode.Lo": "unicode", + "unicode.Logical_Order_Exception": "unicode", + "unicode.Lower": "unicode", + "unicode.LowerCase": "unicode", + "unicode.Lt": "unicode", + "unicode.Lu": "unicode", + "unicode.Lycian": "unicode", + "unicode.Lydian": "unicode", + "unicode.M": "unicode", + "unicode.Malayalam": "unicode", + "unicode.Mandaic": "unicode", + "unicode.Mark": "unicode", + "unicode.MaxASCII": "unicode", + "unicode.MaxCase": "unicode", + "unicode.MaxLatin1": "unicode", + "unicode.MaxRune": "unicode", + "unicode.Mc": "unicode", + "unicode.Me": "unicode", + "unicode.Meetei_Mayek": "unicode", + "unicode.Meroitic_Cursive": "unicode", + "unicode.Meroitic_Hieroglyphs": "unicode", + "unicode.Miao": "unicode", + "unicode.Mn": "unicode", + "unicode.Mongolian": "unicode", + "unicode.Myanmar": "unicode", + "unicode.N": "unicode", + "unicode.Nd": "unicode", + "unicode.New_Tai_Lue": "unicode", + "unicode.Nko": "unicode", + "unicode.Nl": "unicode", + "unicode.No": "unicode", + "unicode.Noncharacter_Code_Point": "unicode", + "unicode.Number": "unicode", + "unicode.Ogham": "unicode", + "unicode.Ol_Chiki": "unicode", + "unicode.Old_Italic": "unicode", + "unicode.Old_Persian": "unicode", + "unicode.Old_South_Arabian": "unicode", + "unicode.Old_Turkic": "unicode", + "unicode.Oriya": "unicode", + "unicode.Osmanya": "unicode", + "unicode.Other": "unicode", + "unicode.Other_Alphabetic": "unicode", + "unicode.Other_Default_Ignorable_Code_Point": "unicode", + "unicode.Other_Grapheme_Extend": "unicode", + "unicode.Other_ID_Continue": "unicode", + "unicode.Other_ID_Start": "unicode", + "unicode.Other_Lowercase": "unicode", + "unicode.Other_Math": "unicode", + "unicode.Other_Uppercase": "unicode", + "unicode.P": "unicode", + "unicode.Pattern_Syntax": "unicode", + "unicode.Pattern_White_Space": "unicode", + "unicode.Pc": "unicode", + "unicode.Pd": "unicode", + "unicode.Pe": "unicode", + "unicode.Pf": "unicode", + "unicode.Phags_Pa": "unicode", + "unicode.Phoenician": "unicode", + "unicode.Pi": "unicode", + "unicode.Po": "unicode", + "unicode.PrintRanges": "unicode", + "unicode.Properties": "unicode", + "unicode.Ps": "unicode", + "unicode.Punct": "unicode", + "unicode.Quotation_Mark": "unicode", + "unicode.Radical": "unicode", + "unicode.Range16": "unicode", + "unicode.Range32": "unicode", + "unicode.RangeTable": "unicode", + "unicode.Rejang": "unicode", + "unicode.ReplacementChar": "unicode", + "unicode.Runic": "unicode", + "unicode.S": "unicode", + "unicode.STerm": "unicode", + "unicode.Samaritan": "unicode", + "unicode.Saurashtra": "unicode", + "unicode.Sc": "unicode", + "unicode.Scripts": "unicode", + "unicode.Sharada": "unicode", + "unicode.Shavian": "unicode", + "unicode.SimpleFold": "unicode", + "unicode.Sinhala": "unicode", + "unicode.Sk": "unicode", + "unicode.Sm": "unicode", + "unicode.So": "unicode", + "unicode.Soft_Dotted": "unicode", + "unicode.Sora_Sompeng": "unicode", + "unicode.Space": "unicode", + "unicode.SpecialCase": "unicode", + "unicode.Sundanese": "unicode", + "unicode.Syloti_Nagri": "unicode", + "unicode.Symbol": "unicode", + "unicode.Syriac": "unicode", + "unicode.Tagalog": "unicode", + "unicode.Tagbanwa": "unicode", + "unicode.Tai_Le": "unicode", + "unicode.Tai_Tham": "unicode", + "unicode.Tai_Viet": "unicode", + "unicode.Takri": "unicode", + "unicode.Tamil": "unicode", + "unicode.Telugu": "unicode", + "unicode.Terminal_Punctuation": "unicode", + "unicode.Thaana": "unicode", + "unicode.Thai": "unicode", + "unicode.Tibetan": "unicode", + "unicode.Tifinagh": "unicode", + "unicode.Title": "unicode", + "unicode.TitleCase": "unicode", + "unicode.To": "unicode", + "unicode.ToLower": "unicode", + "unicode.ToTitle": "unicode", + "unicode.ToUpper": "unicode", + "unicode.TurkishCase": "unicode", + "unicode.Ugaritic": "unicode", + "unicode.Unified_Ideograph": "unicode", + "unicode.Upper": "unicode", + "unicode.UpperCase": "unicode", + "unicode.UpperLower": "unicode", + "unicode.Vai": "unicode", + "unicode.Variation_Selector": "unicode", + "unicode.Version": "unicode", + "unicode.White_Space": "unicode", + "unicode.Yi": "unicode", + "unicode.Z": "unicode", + "unicode.Zl": "unicode", + "unicode.Zp": "unicode", + "unicode.Zs": "unicode", + "url.Error": "net/url", + "url.EscapeError": "net/url", + "url.Parse": "net/url", + "url.ParseQuery": "net/url", + "url.ParseRequestURI": "net/url", + "url.QueryEscape": "net/url", + "url.QueryUnescape": "net/url", + "url.URL": "net/url", + "url.User": "net/url", + "url.UserPassword": "net/url", + "url.Userinfo": "net/url", + "url.Values": "net/url", + "user.Current": "os/user", + "user.Lookup": "os/user", + "user.LookupId": "os/user", + "user.UnknownUserError": "os/user", + "user.UnknownUserIdError": "os/user", + "user.User": "os/user", + "utf16.Decode": "unicode/utf16", + "utf16.DecodeRune": "unicode/utf16", + "utf16.Encode": "unicode/utf16", + "utf16.EncodeRune": "unicode/utf16", + "utf16.IsSurrogate": "unicode/utf16", + "utf8.DecodeLastRune": "unicode/utf8", + "utf8.DecodeLastRuneInString": "unicode/utf8", + "utf8.DecodeRune": "unicode/utf8", + "utf8.DecodeRuneInString": "unicode/utf8", + "utf8.EncodeRune": "unicode/utf8", + "utf8.FullRune": "unicode/utf8", + "utf8.FullRuneInString": "unicode/utf8", + "utf8.MaxRune": "unicode/utf8", + "utf8.RuneCount": "unicode/utf8", + "utf8.RuneCountInString": "unicode/utf8", + "utf8.RuneError": "unicode/utf8", + "utf8.RuneLen": "unicode/utf8", + "utf8.RuneSelf": "unicode/utf8", + "utf8.RuneStart": "unicode/utf8", + "utf8.UTFMax": "unicode/utf8", + "utf8.Valid": "unicode/utf8", + "utf8.ValidRune": "unicode/utf8", + "utf8.ValidString": "unicode/utf8", + "x509.CANotAuthorizedForThisName": "crypto/x509", + "x509.CertPool": "crypto/x509", + "x509.Certificate": "crypto/x509", + "x509.CertificateInvalidError": "crypto/x509", + "x509.ConstraintViolationError": "crypto/x509", + "x509.CreateCertificate": "crypto/x509", + "x509.DSA": "crypto/x509", + "x509.DSAWithSHA1": "crypto/x509", + "x509.DSAWithSHA256": "crypto/x509", + "x509.DecryptPEMBlock": "crypto/x509", + "x509.ECDSA": "crypto/x509", + "x509.ECDSAWithSHA1": "crypto/x509", + "x509.ECDSAWithSHA256": "crypto/x509", + "x509.ECDSAWithSHA384": "crypto/x509", + "x509.ECDSAWithSHA512": "crypto/x509", + "x509.EncryptPEMBlock": "crypto/x509", + "x509.ErrUnsupportedAlgorithm": "crypto/x509", + "x509.Expired": "crypto/x509", + "x509.ExtKeyUsage": "crypto/x509", + "x509.ExtKeyUsageAny": "crypto/x509", + "x509.ExtKeyUsageClientAuth": "crypto/x509", + "x509.ExtKeyUsageCodeSigning": "crypto/x509", + "x509.ExtKeyUsageEmailProtection": "crypto/x509", + "x509.ExtKeyUsageIPSECEndSystem": "crypto/x509", + "x509.ExtKeyUsageIPSECTunnel": "crypto/x509", + "x509.ExtKeyUsageIPSECUser": "crypto/x509", + "x509.ExtKeyUsageMicrosoftServerGatedCrypto": "crypto/x509", + "x509.ExtKeyUsageNetscapeServerGatedCrypto": "crypto/x509", + "x509.ExtKeyUsageOCSPSigning": "crypto/x509", + "x509.ExtKeyUsageServerAuth": "crypto/x509", + "x509.ExtKeyUsageTimeStamping": "crypto/x509", + "x509.HostnameError": "crypto/x509", + "x509.IncompatibleUsage": "crypto/x509", + "x509.IncorrectPasswordError": "crypto/x509", + "x509.InvalidReason": "crypto/x509", + "x509.IsEncryptedPEMBlock": "crypto/x509", + "x509.KeyUsage": "crypto/x509", + "x509.KeyUsageCRLSign": "crypto/x509", + "x509.KeyUsageCertSign": "crypto/x509", + "x509.KeyUsageContentCommitment": "crypto/x509", + "x509.KeyUsageDataEncipherment": "crypto/x509", + "x509.KeyUsageDecipherOnly": "crypto/x509", + "x509.KeyUsageDigitalSignature": "crypto/x509", + "x509.KeyUsageEncipherOnly": "crypto/x509", + "x509.KeyUsageKeyAgreement": "crypto/x509", + "x509.KeyUsageKeyEncipherment": "crypto/x509", + "x509.MD2WithRSA": "crypto/x509", + "x509.MD5WithRSA": "crypto/x509", + "x509.MarshalECPrivateKey": "crypto/x509", + "x509.MarshalPKCS1PrivateKey": "crypto/x509", + "x509.MarshalPKIXPublicKey": "crypto/x509", + "x509.NewCertPool": "crypto/x509", + "x509.NotAuthorizedToSign": "crypto/x509", + "x509.PEMCipher": "crypto/x509", + "x509.PEMCipher3DES": "crypto/x509", + "x509.PEMCipherAES128": "crypto/x509", + "x509.PEMCipherAES192": "crypto/x509", + "x509.PEMCipherAES256": "crypto/x509", + "x509.PEMCipherDES": "crypto/x509", + "x509.ParseCRL": "crypto/x509", + "x509.ParseCertificate": "crypto/x509", + "x509.ParseCertificates": "crypto/x509", + "x509.ParseDERCRL": "crypto/x509", + "x509.ParseECPrivateKey": "crypto/x509", + "x509.ParsePKCS1PrivateKey": "crypto/x509", + "x509.ParsePKCS8PrivateKey": "crypto/x509", + "x509.ParsePKIXPublicKey": "crypto/x509", + "x509.PublicKeyAlgorithm": "crypto/x509", + "x509.RSA": "crypto/x509", + "x509.SHA1WithRSA": "crypto/x509", + "x509.SHA256WithRSA": "crypto/x509", + "x509.SHA384WithRSA": "crypto/x509", + "x509.SHA512WithRSA": "crypto/x509", + "x509.SignatureAlgorithm": "crypto/x509", + "x509.SystemRootsError": "crypto/x509", + "x509.TooManyIntermediates": "crypto/x509", + "x509.UnhandledCriticalExtension": "crypto/x509", + "x509.UnknownAuthorityError": "crypto/x509", + "x509.UnknownPublicKeyAlgorithm": "crypto/x509", + "x509.UnknownSignatureAlgorithm": "crypto/x509", + "x509.VerifyOptions": "crypto/x509", + "xml.Attr": "encoding/xml", + "xml.CharData": "encoding/xml", + "xml.Comment": "encoding/xml", + "xml.CopyToken": "encoding/xml", + "xml.Decoder": "encoding/xml", + "xml.Directive": "encoding/xml", + "xml.Encoder": "encoding/xml", + "xml.EndElement": "encoding/xml", + "xml.Escape": "encoding/xml", + "xml.EscapeText": "encoding/xml", + "xml.HTMLAutoClose": "encoding/xml", + "xml.HTMLEntity": "encoding/xml", + "xml.Header": "encoding/xml", + "xml.Marshal": "encoding/xml", + "xml.MarshalIndent": "encoding/xml", + "xml.Marshaler": "encoding/xml", + "xml.MarshalerAttr": "encoding/xml", + "xml.Name": "encoding/xml", + "xml.NewDecoder": "encoding/xml", + "xml.NewEncoder": "encoding/xml", + "xml.ProcInst": "encoding/xml", + "xml.StartElement": "encoding/xml", + "xml.SyntaxError": "encoding/xml", + "xml.TagPathError": "encoding/xml", + "xml.Token": "encoding/xml", + "xml.Unmarshal": "encoding/xml", + "xml.UnmarshalError": "encoding/xml", + "xml.Unmarshaler": "encoding/xml", + "xml.UnmarshalerAttr": "encoding/xml", + "xml.UnsupportedTypeError": "encoding/xml", + "zip.Compressor": "archive/zip", + "zip.Decompressor": "archive/zip", + "zip.Deflate": "archive/zip", + "zip.ErrAlgorithm": "archive/zip", + "zip.ErrChecksum": "archive/zip", + "zip.ErrFormat": "archive/zip", + "zip.File": "archive/zip", + "zip.FileHeader": "archive/zip", + "zip.FileInfoHeader": "archive/zip", + "zip.NewReader": "archive/zip", + "zip.NewWriter": "archive/zip", + "zip.OpenReader": "archive/zip", + "zip.ReadCloser": "archive/zip", + "zip.Reader": "archive/zip", + "zip.RegisterCompressor": "archive/zip", + "zip.RegisterDecompressor": "archive/zip", + "zip.Store": "archive/zip", + "zip.Writer": "archive/zip", + "zlib.BestCompression": "compress/zlib", + "zlib.BestSpeed": "compress/zlib", + "zlib.DefaultCompression": "compress/zlib", + "zlib.ErrChecksum": "compress/zlib", + "zlib.ErrDictionary": "compress/zlib", + "zlib.ErrHeader": "compress/zlib", + "zlib.NewReader": "compress/zlib", + "zlib.NewReaderDict": "compress/zlib", + "zlib.NewWriter": "compress/zlib", + "zlib.NewWriterLevel": "compress/zlib", + "zlib.NewWriterLevelDict": "compress/zlib", + "zlib.NoCompression": "compress/zlib", + "zlib.Writer": "compress/zlib", +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/TODO b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/TODO new file mode 100644 index 00000000..014f8044 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/TODO @@ -0,0 +1,104 @@ + + +ORACLE TODO +=========== + +General +======= + +Refactor control flow so that each mode has a "one-shot setup" function. + +Use a fault-tolerant parser that can recover from bad parses. + +Save unsaved editor buffers into an archive and provide that to the +tools, which should act as if they were saved. + +Fix: make the guessImportPath hack work with external _test.go files too. + +Allow the analysis scope to include multiple test packages at once. + +Include complete pos/end information Serial output. + But beware that sometimes a single token (e.g. +) is more helpful + than the pos/end of the containing expression (e.g. x \n + \n y). + +Remove pointer analysis context information when printing results as +it tends to be unhelpful. + +Specific queries +================ + +callers, callees + + Use a type-based (e.g. RTA) callgraph when a callers/callees query is + outside the analysis scope. + +implements + + Make it require that the selection is a type, and show only the + implements relation as it applies to that type. + +definition, referrers + + Use the parser's resolver information to answer the query + for local names. Only run the type checker if that fails. + (NB: gri's new parser won't do any resolution.) + + referrers: Show the text of the matching line of code, like grep. + + definition: Make it work with qualified identifiers (SelectorExpr) too. + + references: Make it work on things that are implicit idents, like + import specs, perhaps? + +what + + Report def/ref info if available. + Editors could use it to highlight all idents of the same local var. + + Fix: support it in (*Oracle).Query (long-running tools). + + More tests. + +pointsto + + When invoked on a function Ident, we get an error. + + When invoked on a named return parameter, we get an error. + +describe + + When invoked on a var, we want to see the type and its methods. + + Split "show type" and "describe syntax" into separate commands? + +peers + + Permit querying from a makechan, close(), for...range, or reflective op. + + Report aliasing reflect.{Send,Recv,Close} and close() operations. + +New queries + +"updaters": show all statements that may update the selected lvalue + (local, global, field, etc). + +"creators": show all places where an object of type T is created + (&T{}, var t T, new(T), new(struct{array [3]T}), etc. + (Useful for datatypes whose zero value is not safe) + + +Editor-specific +=============== + +Add support for "what" to .el; clean up. + +Emacs: use JSON to get the raw information from the oracle. Don't + open an editor buffer for simpler queries, just jump to the result + and/or display it in the modeline. + +Emacs: go-root-and-paths depends on the current buffer, so be sure to + call it from within the source file, not the *go-oracle* buffer: + the user may have switched workspaces and the oracle should run in + the new one. + +Support other editors: vim, Eclipse, Sublime, etc. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callees.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callees.go new file mode 100644 index 00000000..a900b7b3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callees.go @@ -0,0 +1,162 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/token" + "sort" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// Callees reports the possible callees of the function call site +// identified by the specified source location. +func callees(o *Oracle, qpos *QueryPos) (queryResult, error) { + pkg := o.prog.Package(qpos.info.Pkg) + if pkg == nil { + return nil, fmt.Errorf("no SSA package") + } + + // Determine the enclosing call for the specified position. + var e *ast.CallExpr + for _, n := range qpos.path { + if e, _ = n.(*ast.CallExpr); e != nil { + break + } + } + if e == nil { + return nil, fmt.Errorf("there is no function call here") + } + // TODO(adonovan): issue an error if the call is "too far + // away" from the current selection, as this most likely is + // not what the user intended. + + // Reject type conversions. + if qpos.info.IsType(e.Fun) { + return nil, fmt.Errorf("this is a type conversion, not a function call") + } + + // Reject calls to built-ins. + if id, ok := unparen(e.Fun).(*ast.Ident); ok { + if b, ok := qpos.info.ObjectOf(id).(*types.Builtin); ok { + return nil, fmt.Errorf("this is a call to the built-in '%s' operator", b.Name()) + } + } + + buildSSA(o) + + // Ascertain calling function and call site. + callerFn := ssa.EnclosingFunction(pkg, qpos.path) + if callerFn == nil { + return nil, fmt.Errorf("no SSA function built for this location (dead code?)") + } + + // Find the call site. + site, err := findCallSite(callerFn, e.Lparen) + if err != nil { + return nil, err + } + + funcs, err := findCallees(o, site) + if err != nil { + return nil, err + } + + return &calleesResult{ + site: site, + funcs: funcs, + }, nil +} + +func findCallSite(fn *ssa.Function, lparen token.Pos) (ssa.CallInstruction, error) { + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + if site, ok := instr.(ssa.CallInstruction); ok && instr.Pos() == lparen { + return site, nil + } + } + } + return nil, fmt.Errorf("this call site is unreachable in this analysis") +} + +func findCallees(o *Oracle, site ssa.CallInstruction) ([]*ssa.Function, error) { + // Avoid running the pointer analysis for static calls. + if callee := site.Common().StaticCallee(); callee != nil { + switch callee.String() { + case "runtime.SetFinalizer", "(reflect.Value).Call": + // The PTA treats calls to these intrinsics as dynamic. + // TODO(adonovan): avoid reliance on PTA internals. + + default: + return []*ssa.Function{callee}, nil // singleton + } + } + + // Dynamic call: use pointer analysis. + o.ptaConfig.BuildCallGraph = true + cg := ptrAnalysis(o).CallGraph + cg.DeleteSyntheticNodes() + + // Find all call edges from the site. + n := cg.Nodes[site.Parent()] + if n == nil { + return nil, fmt.Errorf("this call site is unreachable in this analysis") + } + calleesMap := make(map[*ssa.Function]bool) + for _, edge := range n.Out { + if edge.Site == site { + calleesMap[edge.Callee.Func] = true + } + } + + // De-duplicate and sort. + funcs := make([]*ssa.Function, 0, len(calleesMap)) + for f := range calleesMap { + funcs = append(funcs, f) + } + sort.Sort(byFuncPos(funcs)) + return funcs, nil +} + +type calleesResult struct { + site ssa.CallInstruction + funcs []*ssa.Function +} + +func (r *calleesResult) display(printf printfFunc) { + if len(r.funcs) == 0 { + // dynamic call on a provably nil func/interface + printf(r.site, "%s on nil value", r.site.Common().Description()) + } else { + printf(r.site, "this %s dispatches to:", r.site.Common().Description()) + for _, callee := range r.funcs { + printf(callee, "\t%s", callee) + } + } +} + +func (r *calleesResult) toSerial(res *serial.Result, fset *token.FileSet) { + j := &serial.Callees{ + Pos: fset.Position(r.site.Pos()).String(), + Desc: r.site.Common().Description(), + } + for _, callee := range r.funcs { + j.Callees = append(j.Callees, &serial.CalleesItem{ + Name: callee.String(), + Pos: fset.Position(callee.Pos()).String(), + }) + } + res.Callees = j +} + +type byFuncPos []*ssa.Function + +func (a byFuncPos) Len() int { return len(a) } +func (a byFuncPos) Less(i, j int) bool { return a[i].Pos() < a[j].Pos() } +func (a byFuncPos) Swap(i, j int) { a[i], a[j] = a[j], a[i] } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callers.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callers.go new file mode 100644 index 00000000..ac3d37b4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callers.go @@ -0,0 +1,87 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/oracle/serial" +) + +// Callers reports the possible callers of the function +// immediately enclosing the specified source location. +// +func callers(o *Oracle, qpos *QueryPos) (queryResult, error) { + pkg := o.prog.Package(qpos.info.Pkg) + if pkg == nil { + return nil, fmt.Errorf("no SSA package") + } + if !ssa.HasEnclosingFunction(pkg, qpos.path) { + return nil, fmt.Errorf("this position is not inside a function") + } + + buildSSA(o) + + target := ssa.EnclosingFunction(pkg, qpos.path) + if target == nil { + return nil, fmt.Errorf("no SSA function built for this location (dead code?)") + } + + // Run the pointer analysis, recording each + // call found to originate from target. + o.ptaConfig.BuildCallGraph = true + cg := ptrAnalysis(o).CallGraph + cg.DeleteSyntheticNodes() + edges := cg.CreateNode(target).In + // TODO(adonovan): sort + dedup calls to ensure test determinism. + + return &callersResult{ + target: target, + callgraph: cg, + edges: edges, + }, nil +} + +type callersResult struct { + target *ssa.Function + callgraph *callgraph.Graph + edges []*callgraph.Edge +} + +func (r *callersResult) display(printf printfFunc) { + root := r.callgraph.Root + if r.edges == nil { + printf(r.target, "%s is not reachable in this program.", r.target) + } else { + printf(r.target, "%s is called from these %d sites:", r.target, len(r.edges)) + for _, edge := range r.edges { + if edge.Caller == root { + printf(r.target, "the root of the call graph") + } else { + printf(edge.Site, "\t%s from %s", edge.Site.Common().Description(), edge.Caller.Func) + } + } + } +} + +func (r *callersResult) toSerial(res *serial.Result, fset *token.FileSet) { + root := r.callgraph.Root + var callers []serial.Caller + for _, edge := range r.edges { + var c serial.Caller + c.Caller = edge.Caller.Func.String() + if edge.Caller == root { + c.Desc = "synthetic call" + } else { + c.Pos = fset.Position(edge.Site.Pos()).String() + c.Desc = edge.Site.Common().Description() + } + callers = append(callers, c) + } + res.Callers = callers +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callgraph.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callgraph.go new file mode 100644 index 00000000..1de25cd0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callgraph.go @@ -0,0 +1,152 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/token" + "sort" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// doCallgraph displays the entire callgraph of the current program, +// or if a query -pos was provided, the query package. +func doCallgraph(o *Oracle, qpos *QueryPos) (queryResult, error) { + buildSSA(o) + + // Run the pointer analysis and build the callgraph. + o.ptaConfig.BuildCallGraph = true + cg := ptrAnalysis(o).CallGraph + cg.DeleteSyntheticNodes() + + var qpkg *types.Package + var roots []*callgraph.Node + if qpos == nil { + // No -pos provided: show complete callgraph. + roots = append(roots, cg.Root) + + } else { + // A query -pos was provided: restrict result to + // functions belonging to the query package. + qpkg = qpos.info.Pkg + isQueryPkg := func(fn *ssa.Function) bool { + return fn.Pkg != nil && fn.Pkg.Object == qpkg + } + + // First compute the nodes to keep and remove. + var nodes, remove []*callgraph.Node + for fn, cgn := range cg.Nodes { + if isQueryPkg(fn) { + nodes = append(nodes, cgn) + } else { + remove = append(remove, cgn) + } + } + + // Compact the Node.ID sequence of the remaining + // nodes, preserving the original order. + sort.Sort(nodesByID(nodes)) + for i, cgn := range nodes { + cgn.ID = i + } + + // Compute the set of roots: + // in-package nodes with out-of-package callers. + // For determinism, roots are ordered by original Node.ID. + for _, cgn := range nodes { + for _, e := range cgn.In { + if !isQueryPkg(e.Caller.Func) { + roots = append(roots, cgn) + break + } + } + } + + // Finally, discard all out-of-package nodes. + for _, cgn := range remove { + cg.DeleteNode(cgn) + } + } + + return &callgraphResult{qpkg, cg.Nodes, roots}, nil +} + +type callgraphResult struct { + qpkg *types.Package + nodes map[*ssa.Function]*callgraph.Node + roots []*callgraph.Node +} + +func (r *callgraphResult) display(printf printfFunc) { + descr := "the entire program" + if r.qpkg != nil { + descr = fmt.Sprintf("package %s", r.qpkg.Path()) + } + + printf(nil, ` +Below is a call graph of %s. +The numbered nodes form a spanning tree. +Non-numbered nodes indicate back- or cross-edges to the node whose + number follows in parentheses. +`, descr) + + printed := make(map[*callgraph.Node]int) + var print func(caller *callgraph.Node, indent int) + print = func(caller *callgraph.Node, indent int) { + if num, ok := printed[caller]; !ok { + num = len(printed) + printed[caller] = num + + // Sort the children into name order for deterministic* output. + // (*mostly: anon funcs' names are not globally unique.) + var funcs funcsByName + for callee := range callgraph.CalleesOf(caller) { + funcs = append(funcs, callee.Func) + } + sort.Sort(funcs) + + printf(caller.Func, "%d\t%*s%s", num, 4*indent, "", caller.Func.RelString(r.qpkg)) + for _, callee := range funcs { + print(r.nodes[callee], indent+1) + } + } else { + printf(caller.Func, "\t%*s%s (%d)", 4*indent, "", caller.Func.RelString(r.qpkg), num) + } + } + for _, root := range r.roots { + print(root, 0) + } +} + +type nodesByID []*callgraph.Node + +func (s nodesByID) Len() int { return len(s) } +func (s nodesByID) Swap(i, j int) { s[i], s[j] = s[j], s[i] } +func (s nodesByID) Less(i, j int) bool { return s[i].ID < s[j].ID } + +type funcsByName []*ssa.Function + +func (s funcsByName) Len() int { return len(s) } +func (s funcsByName) Swap(i, j int) { s[i], s[j] = s[j], s[i] } +func (s funcsByName) Less(i, j int) bool { return s[i].String() < s[j].String() } + +func (r *callgraphResult) toSerial(res *serial.Result, fset *token.FileSet) { + cg := make([]serial.CallGraph, len(r.nodes)) + for _, n := range r.nodes { + j := &cg[n.ID] + fn := n.Func + j.Name = fn.String() + j.Pos = fset.Position(fn.Pos()).String() + for callee := range callgraph.CalleesOf(n) { + j.Children = append(j.Children, callee.ID) + } + sort.Ints(j.Children) + } + res.Callgraph = cg +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callstack.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callstack.go new file mode 100644 index 00000000..e71e09ec --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/callstack.go @@ -0,0 +1,96 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/token" + + "code.google.com/p/go.tools/go/callgraph" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/oracle/serial" +) + +// Callstack displays an arbitrary path from a root of the callgraph +// to the function at the current position. +// +// The information may be misleading in a context-insensitive +// analysis. e.g. the call path X->Y->Z might be infeasible if Y never +// calls Z when it is called from X. TODO(adonovan): think about UI. +// +// TODO(adonovan): permit user to specify a starting point other than +// the analysis root. +// +func callstack(o *Oracle, qpos *QueryPos) (queryResult, error) { + pkg := o.prog.Package(qpos.info.Pkg) + if pkg == nil { + return nil, fmt.Errorf("no SSA package") + } + + if !ssa.HasEnclosingFunction(pkg, qpos.path) { + return nil, fmt.Errorf("this position is not inside a function") + } + + buildSSA(o) + + target := ssa.EnclosingFunction(pkg, qpos.path) + if target == nil { + return nil, fmt.Errorf("no SSA function built for this location (dead code?)") + } + + // Run the pointer analysis and build the complete call graph. + o.ptaConfig.BuildCallGraph = true + cg := ptrAnalysis(o).CallGraph + cg.DeleteSyntheticNodes() + + // Search for an arbitrary path from a root to the target function. + isEnd := func(n *callgraph.Node) bool { return n.Func == target } + callpath := callgraph.PathSearch(cg.Root, isEnd) + if callpath != nil { + callpath = callpath[1:] // remove synthetic edge from + } + + return &callstackResult{ + qpos: qpos, + target: target, + callpath: callpath, + }, nil +} + +type callstackResult struct { + qpos *QueryPos + target *ssa.Function + callpath []*callgraph.Edge +} + +func (r *callstackResult) display(printf printfFunc) { + if r.callpath != nil { + printf(r.qpos, "Found a call path from root to %s", r.target) + printf(r.target, "%s", r.target) + for i := len(r.callpath) - 1; i >= 0; i-- { + edge := r.callpath[i] + printf(edge.Site, "%s from %s", edge.Site.Common().Description(), edge.Caller.Func) + } + } else { + printf(r.target, "%s is unreachable in this analysis scope", r.target) + } +} + +func (r *callstackResult) toSerial(res *serial.Result, fset *token.FileSet) { + var callers []serial.Caller + for i := len(r.callpath) - 1; i >= 0; i-- { // (innermost first) + edge := r.callpath[i] + callers = append(callers, serial.Caller{ + Pos: fset.Position(edge.Site.Pos()).String(), + Caller: edge.Caller.Func.String(), + Desc: edge.Site.Common().Description(), + }) + } + res.Callstack = &serial.CallStack{ + Pos: fset.Position(r.target.Pos()).String(), + Target: r.target.String(), + Callers: callers, + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/definition.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/definition.go new file mode 100644 index 00000000..16ba5eb3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/definition.go @@ -0,0 +1,53 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/token" + + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// definition reports the location of the definition of an identifier. +// +// TODO(adonovan): opt: for intra-file references, the parser's +// resolution might be enough; we should start with that. +// +func definition(o *Oracle, qpos *QueryPos) (queryResult, error) { + id, _ := qpos.path[0].(*ast.Ident) + if id == nil { + return nil, fmt.Errorf("no identifier here") + } + + obj := qpos.info.ObjectOf(id) + if obj == nil { + // Happens for y in "switch y := x.(type)", but I think that's all. + return nil, fmt.Errorf("no object for identifier") + } + + return &definitionResult{qpos, obj}, nil +} + +type definitionResult struct { + qpos *QueryPos + obj types.Object // object it denotes +} + +func (r *definitionResult) display(printf printfFunc) { + printf(r.obj, "defined here as %s", r.qpos.ObjectString(r.obj)) +} + +func (r *definitionResult) toSerial(res *serial.Result, fset *token.FileSet) { + definition := &serial.Definition{ + Desc: r.obj.String(), + } + if pos := r.obj.Pos(); pos != token.NoPos { // Package objects have no Pos() + definition.ObjPos = fset.Position(pos).String() + } + res.Definition = definition +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/describe.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/describe.go new file mode 100644 index 00000000..149172cd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/describe.go @@ -0,0 +1,736 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "bytes" + "fmt" + "go/ast" + "go/token" + "os" + "strings" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/go/exact" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/go/types/typeutil" + "code.google.com/p/go.tools/oracle/serial" +) + +// describe describes the syntax node denoted by the query position, +// including: +// - its syntactic category +// - the definition of its referent (for identifiers) [now redundant] +// - its type and method set (for an expression or type expression) +// +func describe(o *Oracle, qpos *QueryPos) (queryResult, error) { + if false { // debugging + fprintf(os.Stderr, o.fset, qpos.path[0], "you selected: %s %s", + astutil.NodeDescription(qpos.path[0]), pathToString(qpos.path)) + } + + path, action := findInterestingNode(qpos.info, qpos.path) + switch action { + case actionExpr: + return describeValue(o, qpos, path) + + case actionType: + return describeType(o, qpos, path) + + case actionPackage: + return describePackage(o, qpos, path) + + case actionStmt: + return describeStmt(o, qpos, path) + + case actionUnknown: + return &describeUnknownResult{path[0]}, nil + + default: + panic(action) // unreachable + } +} + +type describeUnknownResult struct { + node ast.Node +} + +func (r *describeUnknownResult) display(printf printfFunc) { + // Nothing much to say about misc syntax. + printf(r.node, "%s", astutil.NodeDescription(r.node)) +} + +func (r *describeUnknownResult) toSerial(res *serial.Result, fset *token.FileSet) { + res.Describe = &serial.Describe{ + Desc: astutil.NodeDescription(r.node), + Pos: fset.Position(r.node.Pos()).String(), + } +} + +type action int + +const ( + actionUnknown action = iota // None of the below + actionExpr // FuncDecl, true Expr or Ident(types.{Const,Var}) + actionType // type Expr or Ident(types.TypeName). + actionStmt // Stmt or Ident(types.Label) + actionPackage // Ident(types.Package) or ImportSpec +) + +// findInterestingNode classifies the syntax node denoted by path as one of: +// - an expression, part of an expression or a reference to a constant +// or variable; +// - a type, part of a type, or a reference to a named type; +// - a statement, part of a statement, or a label referring to a statement; +// - part of a package declaration or import spec. +// - none of the above. +// and returns the most "interesting" associated node, which may be +// the same node, an ancestor or a descendent. +// +func findInterestingNode(pkginfo *loader.PackageInfo, path []ast.Node) ([]ast.Node, action) { + // TODO(adonovan): integrate with go/types/stdlib_test.go and + // apply this to every AST node we can find to make sure it + // doesn't crash. + + // TODO(adonovan): audit for ParenExpr safety, esp. since we + // traverse up and down. + + // TODO(adonovan): if the users selects the "." in + // "fmt.Fprintf()", they'll get an ambiguous selection error; + // we won't even reach here. Can we do better? + + // TODO(adonovan): describing a field within 'type T struct {...}' + // describes the (anonymous) struct type and concludes "no methods". + // We should ascend to the enclosing type decl, if any. + + for len(path) > 0 { + switch n := path[0].(type) { + case *ast.GenDecl: + if len(n.Specs) == 1 { + // Descend to sole {Import,Type,Value}Spec child. + path = append([]ast.Node{n.Specs[0]}, path...) + continue + } + return path, actionUnknown // uninteresting + + case *ast.FuncDecl: + // Descend to function name. + path = append([]ast.Node{n.Name}, path...) + continue + + case *ast.ImportSpec: + return path, actionPackage + + case *ast.ValueSpec: + if len(n.Names) == 1 { + // Descend to sole Ident child. + path = append([]ast.Node{n.Names[0]}, path...) + continue + } + return path, actionUnknown // uninteresting + + case *ast.TypeSpec: + // Descend to type name. + path = append([]ast.Node{n.Name}, path...) + continue + + case ast.Stmt: + return path, actionStmt + + case *ast.ArrayType, + *ast.StructType, + *ast.FuncType, + *ast.InterfaceType, + *ast.MapType, + *ast.ChanType: + return path, actionType + + case *ast.Comment, *ast.CommentGroup, *ast.File, *ast.KeyValueExpr, *ast.CommClause: + return path, actionUnknown // uninteresting + + case *ast.Ellipsis: + // Continue to enclosing node. + // e.g. [...]T in ArrayType + // f(x...) in CallExpr + // f(x...T) in FuncType + + case *ast.Field: + // TODO(adonovan): this needs more thought, + // since fields can be so many things. + if len(n.Names) == 1 { + // Descend to sole Ident child. + path = append([]ast.Node{n.Names[0]}, path...) + continue + } + // Zero names (e.g. anon field in struct) + // or multiple field or param names: + // continue to enclosing field list. + + case *ast.FieldList: + // Continue to enclosing node: + // {Struct,Func,Interface}Type or FuncDecl. + + case *ast.BasicLit: + if _, ok := path[1].(*ast.ImportSpec); ok { + return path[1:], actionPackage + } + return path, actionExpr + + case *ast.SelectorExpr: + if pkginfo.ObjectOf(n.Sel) == nil { + // TODO(adonovan): is this reachable? + return path, actionUnknown + } + // Descend to .Sel child. + path = append([]ast.Node{n.Sel}, path...) + continue + + case *ast.Ident: + switch pkginfo.ObjectOf(n).(type) { + case *types.PkgName: + return path, actionPackage + + case *types.Const: + return path, actionExpr + + case *types.Label: + return path, actionStmt + + case *types.TypeName: + return path, actionType + + case *types.Var: + // For x in 'struct {x T}', return struct type, for now. + if _, ok := path[1].(*ast.Field); ok { + _ = path[2].(*ast.FieldList) // assertion + if _, ok := path[3].(*ast.StructType); ok { + return path[3:], actionType + } + } + return path, actionExpr + + case *types.Func: + // For f in 'interface {f()}', return the interface type, for now. + if _, ok := path[1].(*ast.Field); ok { + _ = path[2].(*ast.FieldList) // assertion + if _, ok := path[3].(*ast.InterfaceType); ok { + return path[3:], actionType + } + } + return path, actionExpr + + case *types.Builtin: + // For reference to built-in function, return enclosing call. + path = path[1:] // ascend to enclosing function call + continue + + case *types.Nil: + return path, actionExpr + } + + // No object. + switch path[1].(type) { + case *ast.SelectorExpr: + // Return enclosing selector expression. + return path[1:], actionExpr + + case *ast.Field: + // TODO(adonovan): test this. + // e.g. all f in: + // struct { f, g int } + // interface { f() } + // func (f T) method(f, g int) (f, g bool) + // + // switch path[3].(type) { + // case *ast.FuncDecl: + // case *ast.StructType: + // case *ast.InterfaceType: + // } + // + // return path[1:], actionExpr + // + // Unclear what to do with these. + // Struct.Fields -- field + // Interface.Methods -- field + // FuncType.{Params.Results} -- actionExpr + // FuncDecl.Recv -- actionExpr + + case *ast.File: + // 'package foo' + return path, actionPackage + + case *ast.ImportSpec: + // TODO(adonovan): fix: why no package object? go/types bug? + return path[1:], actionPackage + + default: + // e.g. blank identifier (go/types bug?) + // or y in "switch y := x.(type)" (go/types bug?) + // or code in a _test.go file that's not part of the package. + fmt.Printf("unknown reference %s in %T\n", n, path[1]) + return path, actionUnknown + } + + case *ast.StarExpr: + if pkginfo.IsType(n) { + return path, actionType + } + return path, actionExpr + + case ast.Expr: + // All Expr but {BasicLit,Ident,StarExpr} are + // "true" expressions that evaluate to a value. + return path, actionExpr + } + + // Ascend to parent. + path = path[1:] + } + + return nil, actionUnknown // unreachable +} + +func describeValue(o *Oracle, qpos *QueryPos, path []ast.Node) (*describeValueResult, error) { + var expr ast.Expr + var obj types.Object + switch n := path[0].(type) { + case *ast.ValueSpec: + // ambiguous ValueSpec containing multiple names + return nil, fmt.Errorf("multiple value specification") + case *ast.Ident: + obj = qpos.info.ObjectOf(n) + expr = n + case ast.Expr: + expr = n + default: + // TODO(adonovan): is this reachable? + return nil, fmt.Errorf("unexpected AST for expr: %T", n) + } + + typ := qpos.info.TypeOf(expr) + constVal := qpos.info.ValueOf(expr) + + return &describeValueResult{ + qpos: qpos, + expr: expr, + typ: typ, + constVal: constVal, + obj: obj, + }, nil +} + +type describeValueResult struct { + qpos *QueryPos + expr ast.Expr // query node + typ types.Type // type of expression + constVal exact.Value // value of expression, if constant + obj types.Object // var/func/const object, if expr was Ident +} + +func (r *describeValueResult) display(printf printfFunc) { + var prefix, suffix string + if r.constVal != nil { + suffix = fmt.Sprintf(" of constant value %s", r.constVal) + } + switch obj := r.obj.(type) { + case *types.Func: + if recv := obj.Type().(*types.Signature).Recv(); recv != nil { + if _, ok := recv.Type().Underlying().(*types.Interface); ok { + prefix = "interface method " + } else { + prefix = "method " + } + } + } + + // Describe the expression. + if r.obj != nil { + if r.obj.Pos() == r.expr.Pos() { + // defining ident + printf(r.expr, "definition of %s%s%s", prefix, r.qpos.ObjectString(r.obj), suffix) + } else { + // referring ident + printf(r.expr, "reference to %s%s%s", prefix, r.qpos.ObjectString(r.obj), suffix) + if def := r.obj.Pos(); def != token.NoPos { + printf(def, "defined here") + } + } + } else { + desc := astutil.NodeDescription(r.expr) + if suffix != "" { + // constant expression + printf(r.expr, "%s%s", desc, suffix) + } else { + // non-constant expression + printf(r.expr, "%s of type %s", desc, r.qpos.TypeString(r.typ)) + } + } +} + +func (r *describeValueResult) toSerial(res *serial.Result, fset *token.FileSet) { + var value, objpos string + if r.constVal != nil { + value = r.constVal.String() + } + if r.obj != nil { + objpos = fset.Position(r.obj.Pos()).String() + } + + res.Describe = &serial.Describe{ + Desc: astutil.NodeDescription(r.expr), + Pos: fset.Position(r.expr.Pos()).String(), + Detail: "value", + Value: &serial.DescribeValue{ + Type: r.qpos.TypeString(r.typ), + Value: value, + ObjPos: objpos, + }, + } +} + +// ---- TYPE ------------------------------------------------------------ + +func describeType(o *Oracle, qpos *QueryPos, path []ast.Node) (*describeTypeResult, error) { + var description string + var t types.Type + switch n := path[0].(type) { + case *ast.Ident: + t = qpos.info.TypeOf(n) + switch t := t.(type) { + case *types.Basic: + description = "reference to built-in " + + case *types.Named: + isDef := t.Obj().Pos() == n.Pos() // see caveats at isDef above + if isDef { + description = "definition of " + } else { + description = "reference to " + } + } + + case ast.Expr: + t = qpos.info.TypeOf(n) + + default: + // Unreachable? + return nil, fmt.Errorf("unexpected AST for type: %T", n) + } + + description = description + "type " + qpos.TypeString(t) + + // Show sizes for structs and named types (it's fairly obvious for others). + switch t.(type) { + case *types.Named, *types.Struct: + // TODO(adonovan): use o.imp.Config().TypeChecker.Sizes when + // we add the Config() method (needs some thought). + szs := types.StdSizes{8, 8} + description = fmt.Sprintf("%s (size %d, align %d)", description, + szs.Sizeof(t), szs.Alignof(t)) + } + + return &describeTypeResult{ + qpos: qpos, + node: path[0], + description: description, + typ: t, + methods: accessibleMethods(t, qpos.info.Pkg), + }, nil +} + +type describeTypeResult struct { + qpos *QueryPos + node ast.Node + description string + typ types.Type + methods []*types.Selection +} + +func (r *describeTypeResult) display(printf printfFunc) { + printf(r.node, "%s", r.description) + + // Show the underlying type for a reference to a named type. + if nt, ok := r.typ.(*types.Named); ok && r.node.Pos() != nt.Obj().Pos() { + printf(nt.Obj(), "defined as %s", r.qpos.TypeString(nt.Underlying())) + } + + // Print the method set, if the type kind is capable of bearing methods. + switch r.typ.(type) { + case *types.Interface, *types.Struct, *types.Named: + if len(r.methods) > 0 { + printf(r.node, "Method set:") + for _, meth := range r.methods { + printf(meth.Obj(), "\t%s", r.qpos.SelectionString(meth)) + } + } else { + printf(r.node, "No methods.") + } + } +} + +func (r *describeTypeResult) toSerial(res *serial.Result, fset *token.FileSet) { + var namePos, nameDef string + if nt, ok := r.typ.(*types.Named); ok { + namePos = fset.Position(nt.Obj().Pos()).String() + nameDef = nt.Underlying().String() + } + res.Describe = &serial.Describe{ + Desc: r.description, + Pos: fset.Position(r.node.Pos()).String(), + Detail: "type", + Type: &serial.DescribeType{ + Type: r.qpos.TypeString(r.typ), + NamePos: namePos, + NameDef: nameDef, + Methods: methodsToSerial(r.qpos.info.Pkg, r.methods, fset), + }, + } +} + +// ---- PACKAGE ------------------------------------------------------------ + +func describePackage(o *Oracle, qpos *QueryPos, path []ast.Node) (*describePackageResult, error) { + var description string + var pkg *types.Package + switch n := path[0].(type) { + case *ast.ImportSpec: + pkgname := qpos.info.ImportSpecPkg(n) + description = fmt.Sprintf("import of package %q", pkgname.Pkg().Path()) + pkg = pkgname.Pkg() + + case *ast.Ident: + if _, isDef := path[1].(*ast.File); isDef { + // e.g. package id + pkg = qpos.info.Pkg + description = fmt.Sprintf("definition of package %q", pkg.Path()) + } else { + // e.g. import id + // or id.F() + pkg = qpos.info.ObjectOf(n).Pkg() + description = fmt.Sprintf("reference to package %q", pkg.Path()) + } + + default: + // Unreachable? + return nil, fmt.Errorf("unexpected AST for package: %T", n) + } + + var members []*describeMember + // NB: "unsafe" has no types.Package + if pkg != nil { + // Enumerate the accessible package members + // in lexicographic order. + for _, name := range pkg.Scope().Names() { + if pkg == qpos.info.Pkg || ast.IsExported(name) { + mem := pkg.Scope().Lookup(name) + var methods []*types.Selection + if mem, ok := mem.(*types.TypeName); ok { + methods = accessibleMethods(mem.Type(), qpos.info.Pkg) + } + members = append(members, &describeMember{ + mem, + methods, + }) + + } + } + } + + return &describePackageResult{o.fset, path[0], description, pkg, members}, nil +} + +type describePackageResult struct { + fset *token.FileSet + node ast.Node + description string + pkg *types.Package + members []*describeMember // in lexicographic name order +} + +type describeMember struct { + obj types.Object + methods []*types.Selection // in types.MethodSet order +} + +func (r *describePackageResult) display(printf printfFunc) { + printf(r.node, "%s", r.description) + + // Compute max width of name "column". + maxname := 0 + for _, mem := range r.members { + if l := len(mem.obj.Name()); l > maxname { + maxname = l + } + } + + for _, mem := range r.members { + printf(mem.obj, "\t%s", formatMember(mem.obj, maxname)) + for _, meth := range mem.methods { + printf(meth.Obj(), "\t\t%s", types.SelectionString(r.pkg, meth)) + } + } +} + +func formatMember(obj types.Object, maxname int) string { + var buf bytes.Buffer + fmt.Fprintf(&buf, "%-5s %-*s", tokenOf(obj), maxname, obj.Name()) + switch obj := obj.(type) { + case *types.Const: + fmt.Fprintf(&buf, " %s = %s", types.TypeString(obj.Pkg(), obj.Type()), obj.Val().String()) + + case *types.Func: + fmt.Fprintf(&buf, " %s", types.TypeString(obj.Pkg(), obj.Type())) + + case *types.TypeName: + // Abbreviate long aggregate type names. + var abbrev string + switch t := obj.Type().Underlying().(type) { + case *types.Interface: + if t.NumMethods() > 1 { + abbrev = "interface{...}" + } + case *types.Struct: + if t.NumFields() > 1 { + abbrev = "struct{...}" + } + } + if abbrev == "" { + fmt.Fprintf(&buf, " %s", types.TypeString(obj.Pkg(), obj.Type().Underlying())) + } else { + fmt.Fprintf(&buf, " %s", abbrev) + } + + case *types.Var: + fmt.Fprintf(&buf, " %s", types.TypeString(obj.Pkg(), obj.Type())) + } + return buf.String() +} + +func (r *describePackageResult) toSerial(res *serial.Result, fset *token.FileSet) { + var members []*serial.DescribeMember + for _, mem := range r.members { + typ := mem.obj.Type() + var val string + switch mem := mem.obj.(type) { + case *types.Const: + val = mem.Val().String() + case *types.TypeName: + typ = typ.Underlying() + } + members = append(members, &serial.DescribeMember{ + Name: mem.obj.Name(), + Type: typ.String(), + Value: val, + Pos: fset.Position(mem.obj.Pos()).String(), + Kind: tokenOf(mem.obj), + Methods: methodsToSerial(r.pkg, mem.methods, fset), + }) + } + res.Describe = &serial.Describe{ + Desc: r.description, + Pos: fset.Position(r.node.Pos()).String(), + Detail: "package", + Package: &serial.DescribePackage{ + Path: r.pkg.Path(), + Members: members, + }, + } +} + +func tokenOf(o types.Object) string { + switch o.(type) { + case *types.Func: + return "func" + case *types.Var: + return "var" + case *types.TypeName: + return "type" + case *types.Const: + return "const" + case *types.PkgName: + return "package" + } + panic(o) +} + +// ---- STATEMENT ------------------------------------------------------------ + +func describeStmt(o *Oracle, qpos *QueryPos, path []ast.Node) (*describeStmtResult, error) { + var description string + switch n := path[0].(type) { + case *ast.Ident: + if qpos.info.ObjectOf(n).Pos() == n.Pos() { + description = "labelled statement" + } else { + description = "reference to labelled statement" + } + + default: + // Nothing much to say about statements. + description = astutil.NodeDescription(n) + } + return &describeStmtResult{o.fset, path[0], description}, nil +} + +type describeStmtResult struct { + fset *token.FileSet + node ast.Node + description string +} + +func (r *describeStmtResult) display(printf printfFunc) { + printf(r.node, "%s", r.description) +} + +func (r *describeStmtResult) toSerial(res *serial.Result, fset *token.FileSet) { + res.Describe = &serial.Describe{ + Desc: r.description, + Pos: fset.Position(r.node.Pos()).String(), + Detail: "unknown", + } +} + +// ------------------- Utilities ------------------- + +// pathToString returns a string containing the concrete types of the +// nodes in path. +func pathToString(path []ast.Node) string { + var buf bytes.Buffer + fmt.Fprint(&buf, "[") + for i, n := range path { + if i > 0 { + fmt.Fprint(&buf, " ") + } + fmt.Fprint(&buf, strings.TrimPrefix(fmt.Sprintf("%T", n), "*ast.")) + } + fmt.Fprint(&buf, "]") + return buf.String() +} + +func accessibleMethods(t types.Type, from *types.Package) []*types.Selection { + var methods []*types.Selection + for _, meth := range typeutil.IntuitiveMethodSet(t, nil) { + if isAccessibleFrom(meth.Obj(), from) { + methods = append(methods, meth) + } + } + return methods +} + +func isAccessibleFrom(obj types.Object, pkg *types.Package) bool { + return ast.IsExported(obj.Name()) || obj.Pkg() == pkg +} + +func methodsToSerial(this *types.Package, methods []*types.Selection, fset *token.FileSet) []serial.DescribeMethod { + var jmethods []serial.DescribeMethod + for _, meth := range methods { + jmethods = append(jmethods, serial.DescribeMethod{ + Name: types.SelectionString(this, meth), + Pos: fset.Position(meth.Obj().Pos()).String(), + }) + } + return jmethods +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/freevars.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/freevars.go new file mode 100644 index 00000000..a142d15a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/freevars.go @@ -0,0 +1,204 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "bytes" + "go/ast" + "go/printer" + "go/token" + "sort" + + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// freevars displays the lexical (not package-level) free variables of +// the selection. +// +// It treats A.B.C as a separate variable from A to reveal the parts +// of an aggregate type that are actually needed. +// This aids refactoring. +// +// TODO(adonovan): optionally display the free references to +// file/package scope objects, and to objects from other packages. +// Depending on where the resulting function abstraction will go, +// these might be interesting. Perhaps group the results into three +// bands. +// +func freevars(o *Oracle, qpos *QueryPos) (queryResult, error) { + file := qpos.path[len(qpos.path)-1] // the enclosing file + fileScope := qpos.info.Scopes[file] + pkgScope := fileScope.Parent() + + // The id and sel functions return non-nil if they denote an + // object o or selection o.x.y that is referenced by the + // selection but defined neither within the selection nor at + // file scope, i.e. it is in the lexical environment. + var id func(n *ast.Ident) types.Object + var sel func(n *ast.SelectorExpr) types.Object + + sel = func(n *ast.SelectorExpr) types.Object { + switch x := unparen(n.X).(type) { + case *ast.SelectorExpr: + return sel(x) + case *ast.Ident: + return id(x) + } + return nil + } + + id = func(n *ast.Ident) types.Object { + obj := qpos.info.ObjectOf(n) + if obj == nil { + return nil // TODO(adonovan): fix: this fails for *types.Label. + panic("no types.Object for ast.Ident") + } + if _, ok := obj.(*types.PkgName); ok { + return nil // imported package + } + if n.Pos() == obj.Pos() { + return nil // this ident is the definition, not a reference + } + if !(file.Pos() <= obj.Pos() && obj.Pos() <= file.End()) { + return nil // not defined in this file + } + scope := obj.Parent() + if scope == nil { + return nil // e.g. interface method, struct field + } + if scope == fileScope || scope == pkgScope { + return nil // defined at file or package scope + } + if qpos.start <= obj.Pos() && obj.Pos() <= qpos.end { + return nil // defined within selection => not free + } + return obj + } + + // Maps each reference that is free in the selection + // to the object it refers to. + // The map de-duplicates repeated references. + refsMap := make(map[string]freevarsRef) + + // Visit all the identifiers in the selected ASTs. + ast.Inspect(qpos.path[0], func(n ast.Node) bool { + if n == nil { + return true // popping DFS stack + } + + // Is this node contained within the selection? + // (freevars permits inexact selections, + // like two stmts in a block.) + if qpos.start <= n.Pos() && n.End() <= qpos.end { + var obj types.Object + var prune bool + switch n := n.(type) { + case *ast.Ident: + obj = id(n) + + case *ast.SelectorExpr: + obj = sel(n) + prune = true + } + + if obj != nil { + var kind string + switch obj.(type) { + case *types.Var: + kind = "var" + case *types.Func: + kind = "func" + case *types.TypeName: + kind = "type" + case *types.Const: + kind = "const" + case *types.Label: + kind = "label" + default: + panic(obj) + } + + typ := qpos.info.TypeOf(n.(ast.Expr)) + ref := freevarsRef{kind, printNode(o.fset, n), typ, obj} + refsMap[ref.ref] = ref + + if prune { + return false // don't descend + } + } + } + + return true // descend + }) + + refs := make([]freevarsRef, 0, len(refsMap)) + for _, ref := range refsMap { + refs = append(refs, ref) + } + sort.Sort(byRef(refs)) + + return &freevarsResult{ + qpos: qpos, + refs: refs, + }, nil +} + +type freevarsResult struct { + qpos *QueryPos + refs []freevarsRef +} + +type freevarsRef struct { + kind string + ref string + typ types.Type + obj types.Object +} + +func (r *freevarsResult) display(printf printfFunc) { + if len(r.refs) == 0 { + printf(r.qpos, "No free identifiers.") + } else { + printf(r.qpos, "Free identifiers:") + for _, ref := range r.refs { + // Avoid printing "type T T". + var typstr string + if ref.kind != "type" { + typstr = " " + types.TypeString(r.qpos.info.Pkg, ref.typ) + } + printf(ref.obj, "%s %s%s", ref.kind, ref.ref, typstr) + } + } +} + +func (r *freevarsResult) toSerial(res *serial.Result, fset *token.FileSet) { + var refs []*serial.FreeVar + for _, ref := range r.refs { + refs = append(refs, + &serial.FreeVar{ + Pos: fset.Position(ref.obj.Pos()).String(), + Kind: ref.kind, + Ref: ref.ref, + Type: ref.typ.String(), + }) + } + res.Freevars = refs +} + +// -------- utils -------- + +type byRef []freevarsRef + +func (p byRef) Len() int { return len(p) } +func (p byRef) Less(i, j int) bool { return p[i].ref < p[j].ref } +func (p byRef) Swap(i, j int) { p[i], p[j] = p[j], p[i] } + +// printNode returns the pretty-printed syntax of n. +func printNode(fset *token.FileSet, n ast.Node) string { + var buf bytes.Buffer + printer.Fprint(&buf, fset, n) + return buf.String() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/implements.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/implements.go new file mode 100644 index 00000000..3dcf42ee --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/implements.go @@ -0,0 +1,203 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/token" + "reflect" + "sort" + "strings" + + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// Implements displays the "implements" relation as it pertains to the +// selected type. +// +func implements(o *Oracle, qpos *QueryPos) (queryResult, error) { + // Find the selected type. + // TODO(adonovan): fix: make it work on qualified Idents too. + path, action := findInterestingNode(qpos.info, qpos.path) + if action != actionType { + return nil, fmt.Errorf("no type here") + } + T := qpos.info.TypeOf(path[0].(ast.Expr)) + if T == nil { + return nil, fmt.Errorf("no type here") + } + + // Find all named types, even local types (which can have + // methods via promotion) and the built-in "error". + // + // TODO(adonovan): include all packages in PTA scope too? + // i.e. don't reduceScope? + // + var allNamed []types.Type + for _, info := range o.typeInfo { + for _, obj := range info.Defs { + if obj, ok := obj.(*types.TypeName); ok { + allNamed = append(allNamed, obj.Type()) + } + } + } + allNamed = append(allNamed, types.Universe.Lookup("error").Type()) + + var msets types.MethodSetCache + + // Test each named type. + var to, from, fromPtr []types.Type + for _, U := range allNamed { + if isInterface(T) { + if msets.MethodSet(T).Len() == 0 { + continue // empty interface + } + if isInterface(U) { + if msets.MethodSet(U).Len() == 0 { + continue // empty interface + } + + // T interface, U interface + if !types.Identical(T, U) { + if types.AssignableTo(U, T) { + to = append(to, U) + } + if types.AssignableTo(T, U) { + from = append(from, U) + } + } + } else { + // T interface, U concrete + if types.AssignableTo(U, T) { + to = append(to, U) + } else if pU := types.NewPointer(U); types.AssignableTo(pU, T) { + to = append(to, pU) + } + } + } else if isInterface(U) { + if msets.MethodSet(U).Len() == 0 { + continue // empty interface + } + + // T concrete, U interface + if types.AssignableTo(T, U) { + from = append(from, U) + } else if pT := types.NewPointer(T); types.AssignableTo(pT, U) { + fromPtr = append(fromPtr, U) + } + } + } + + var pos interface{} = qpos + if nt, ok := deref(T).(*types.Named); ok { + pos = nt.Obj() + } + + // Sort types (arbitrarily) to ensure test determinism. + sort.Sort(typesByString(to)) + sort.Sort(typesByString(from)) + sort.Sort(typesByString(fromPtr)) + + return &implementsResult{T, pos, to, from, fromPtr}, nil +} + +type implementsResult struct { + t types.Type // queried type (not necessarily named) + pos interface{} // pos of t (*types.Name or *QueryPos) + to []types.Type // named or ptr-to-named types assignable to interface T + from []types.Type // named interfaces assignable from T + fromPtr []types.Type // named interfaces assignable only from *T +} + +func (r *implementsResult) display(printf printfFunc) { + if isInterface(r.t) { + if types.NewMethodSet(r.t).Len() == 0 { // TODO(adonovan): cache mset + printf(r.pos, "empty interface type %s", r.t) + return + } + + printf(r.pos, "interface type %s", r.t) + // Show concrete types first; use two passes. + for _, sub := range r.to { + if !isInterface(sub) { + printf(deref(sub).(*types.Named).Obj(), "\tis implemented by %s type %s", + typeKind(sub), sub) + } + } + for _, sub := range r.to { + if isInterface(sub) { + printf(deref(sub).(*types.Named).Obj(), "\tis implemented by %s type %s", typeKind(sub), sub) + } + } + + for _, super := range r.from { + printf(super.(*types.Named).Obj(), "\timplements %s", super) + } + } else { + if r.from != nil { + printf(r.pos, "%s type %s", typeKind(r.t), r.t) + for _, super := range r.from { + printf(super.(*types.Named).Obj(), "\timplements %s", super) + } + } + if r.fromPtr != nil { + printf(r.pos, "pointer type *%s", r.t) + for _, psuper := range r.fromPtr { + printf(psuper.(*types.Named).Obj(), "\timplements %s", psuper) + } + } else if r.from == nil { + printf(r.pos, "%s type %s implements only interface{}", typeKind(r.t), r.t) + } + } +} + +func (r *implementsResult) toSerial(res *serial.Result, fset *token.FileSet) { + res.Implements = &serial.Implements{ + T: makeImplementsType(r.t, fset), + AssignableTo: makeImplementsTypes(r.to, fset), + AssignableFrom: makeImplementsTypes(r.from, fset), + AssignableFromPtr: makeImplementsTypes(r.fromPtr, fset), + } +} + +func makeImplementsTypes(tt []types.Type, fset *token.FileSet) []serial.ImplementsType { + var r []serial.ImplementsType + for _, t := range tt { + r = append(r, makeImplementsType(t, fset)) + } + return r +} + +func makeImplementsType(T types.Type, fset *token.FileSet) serial.ImplementsType { + var pos token.Pos + if nt, ok := deref(T).(*types.Named); ok { // implementsResult.t may be non-named + pos = nt.Obj().Pos() + } + return serial.ImplementsType{ + Name: T.String(), + Pos: fset.Position(pos).String(), + Kind: typeKind(T), + } +} + +// typeKind returns a string describing the underlying kind of type, +// e.g. "slice", "array", "struct". +func typeKind(T types.Type) string { + s := reflect.TypeOf(T.Underlying()).String() + return strings.ToLower(strings.TrimPrefix(s, "*types.")) +} + +func isInterface(T types.Type) bool { + _, isI := T.Underlying().(*types.Interface) + return isI +} + +type typesByString []types.Type + +func (p typesByString) Len() int { return len(p) } +func (p typesByString) Less(i, j int) bool { return p[i].String() < p[j].String() } +func (p typesByString) Swap(i, j int) { p[i], p[j] = p[j], p[i] } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/oracle.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/oracle.go new file mode 100644 index 00000000..f4bb9936 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/oracle.go @@ -0,0 +1,557 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package oracle contains the implementation of the oracle tool whose +// command-line is provided by code.google.com/p/go.tools/cmd/oracle. +// +// http://golang.org/s/oracle-design +// http://golang.org/s/oracle-user-manual +// +package oracle + +// This file defines oracle.Query, the entry point for the oracle tool. +// The actual executable is defined in cmd/oracle. + +// TODO(adonovan): new queries +// - show all statements that may update the selected lvalue +// (local, global, field, etc). +// - show all places where an object of type T is created +// (&T{}, var t T, new(T), new(struct{array [3]T}), etc. + +// ORACLE CONTROL FLOW +// +// The Oracle is somewhat convoluted due to the need to support two +// very different use-cases, "one-shot" and "long running", and to do +// so quickly. +// +// The cmd/oracle tool issues "one-shot" queries via the exported +// Query function, which creates an Oracle to answer a single query. +// newOracle consults the 'needs' flags of the query mode and the +// package containing the query to avoid doing more work than it needs +// (loading, parsing, type checking, SSA construction). +// +// The Pythia tool (github.com/fzipp/pythia) is an example of a "long +// running" tool. It calls New() and then loops, calling +// ParseQueryPos and (*Oracle).Query to handle each incoming HTTP +// query. Since New cannot see which queries will follow, it must +// load, parse, type-check and SSA-build the entire transitive closure +// of the analysis scope, retaining full debug information and all +// typed ASTs. +// +// TODO(adonovan): experiment with inverting the control flow by +// making each mode consist of two functions: a "one-shot setup" +// function and the existing "impl" function. The one-shot setup +// function would do all of the work of Query and newOracle, +// specialized to each mode, calling library utilities for the common +// things. This would give it more control over "scope reduction". +// Long running tools would not call the one-shot setup function but +// would have their own setup function equivalent to the existing +// 'needsAll' flow path. + +import ( + "fmt" + "go/ast" + "go/build" + "go/token" + "io" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/pointer" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// An Oracle holds the program state required for one or more queries. +type Oracle struct { + fset *token.FileSet // file set [all queries] + prog *ssa.Program // the SSA program [needSSA] + ptaConfig pointer.Config // pointer analysis configuration [needPTA] + typeInfo map[*types.Package]*loader.PackageInfo // type info for all ASTs in the program [needRetainTypeInfo] +} + +// A set of bits indicating the analytical requirements of each mode. +// +// Typed ASTs for the whole program are always constructed +// transiently; they are retained only for the queried package unless +// needRetainTypeInfo is set. +const ( + needPos = 1 << iota // needs a position + needExactPos // needs an exact AST selection; implies needPos + needRetainTypeInfo // needs to retain type info for all ASTs in the program + needSSA // needs ssa.Packages for whole program + needSSADebug // needs debug info for ssa.Packages + needPTA = needSSA // needs pointer analysis + needAll = -1 // needs everything (e.g. a sequence of queries) +) + +type modeInfo struct { + name string + needs int + impl func(*Oracle, *QueryPos) (queryResult, error) +} + +var modes = []*modeInfo{ + // Pointer analyses, whole program: + {"callees", needPTA | needExactPos, callees}, + {"callers", needPTA | needPos, callers}, + {"callgraph", needPTA, doCallgraph}, + {"callstack", needPTA | needPos, callstack}, + {"peers", needPTA | needSSADebug | needPos, peers}, + {"pointsto", needPTA | needSSADebug | needExactPos, pointsto}, + + // Type-based, modular analyses: + {"definition", needPos, definition}, + {"describe", needExactPos, describe}, + {"freevars", needPos, freevars}, + + // Type-based, whole-program analyses: + {"implements", needRetainTypeInfo | needPos, implements}, + {"referrers", needRetainTypeInfo | needPos, referrers}, +} + +func findMode(mode string) *modeInfo { + for _, m := range modes { + if m.name == mode { + return m + } + } + return nil +} + +type printfFunc func(pos interface{}, format string, args ...interface{}) + +// queryResult is the interface of each query-specific result type. +type queryResult interface { + toSerial(res *serial.Result, fset *token.FileSet) + display(printf printfFunc) +} + +// A QueryPos represents the position provided as input to a query: +// a textual extent in the program's source code, the AST node it +// corresponds to, and the package to which it belongs. +// Instances are created by ParseQueryPos. +// +type QueryPos struct { + fset *token.FileSet + start, end token.Pos // source extent of query + path []ast.Node // AST path from query node to root of ast.File + exact bool // 2nd result of PathEnclosingInterval + info *loader.PackageInfo // type info for the queried package (nil for fastQueryPos) +} + +// TypeString prints type T relative to the query position. +func (qpos *QueryPos) TypeString(T types.Type) string { + return types.TypeString(qpos.info.Pkg, T) +} + +// ObjectString prints object obj relative to the query position. +func (qpos *QueryPos) ObjectString(obj types.Object) string { + return types.ObjectString(qpos.info.Pkg, obj) +} + +// SelectionString prints selection sel relative to the query position. +func (qpos *QueryPos) SelectionString(sel *types.Selection) string { + return types.SelectionString(qpos.info.Pkg, sel) +} + +// A Result encapsulates the result of an oracle.Query. +type Result struct { + fset *token.FileSet + q queryResult // the query-specific result + mode string // query mode + warnings []pointer.Warning // pointer analysis warnings (TODO(adonovan): fix: never populated!) +} + +// Serial returns an instance of serial.Result, which implements the +// {xml,json}.Marshaler interfaces so that query results can be +// serialized as JSON or XML. +// +func (res *Result) Serial() *serial.Result { + resj := &serial.Result{Mode: res.mode} + res.q.toSerial(resj, res.fset) + for _, w := range res.warnings { + resj.Warnings = append(resj.Warnings, serial.PTAWarning{ + Pos: res.fset.Position(w.Pos).String(), + Message: w.Message, + }) + } + return resj +} + +// Query runs a single oracle query. +// +// args specify the main package in (*loader.Config).FromArgs syntax. +// mode is the query mode ("callers", etc). +// ptalog is the (optional) pointer-analysis log file. +// buildContext is the go/build configuration for locating packages. +// reflection determines whether to model reflection soundly (currently slow). +// +// Clients that intend to perform multiple queries against the same +// analysis scope should use this pattern instead: +// +// conf := loader.Config{Build: buildContext, SourceImports: true} +// ... populate config, e.g. conf.FromArgs(args) ... +// iprog, err := conf.Load() +// if err != nil { ... } +// o, err := oracle.New(iprog, nil, false) +// if err != nil { ... } +// for ... { +// qpos, err := oracle.ParseQueryPos(imp, pos, needExact) +// if err != nil { ... } +// +// res, err := o.Query(mode, qpos) +// if err != nil { ... } +// +// // use res +// } +// +// TODO(adonovan): the ideal 'needsExact' parameter for ParseQueryPos +// depends on the query mode; how should we expose this? +// +func Query(args []string, mode, pos string, ptalog io.Writer, buildContext *build.Context, reflection bool) (*Result, error) { + if mode == "what" { + // Bypass package loading, type checking, SSA construction. + return what(pos, buildContext) + } + + minfo := findMode(mode) + if minfo == nil { + return nil, fmt.Errorf("invalid mode type: %q", mode) + } + + conf := loader.Config{Build: buildContext, SourceImports: true} + + // Determine initial packages. + args, err := conf.FromArgs(args, true) + if err != nil { + return nil, err + } + if len(args) > 0 { + return nil, fmt.Errorf("surplus arguments: %q", args) + } + + // For queries needing only a single typed package, + // reduce the analysis scope to that package. + if minfo.needs&(needSSA|needRetainTypeInfo) == 0 { + reduceScope(pos, &conf) + } + + // TODO(adonovan): report type errors to the user via Serial + // types, not stderr? + // conf.TypeChecker.Error = func(err error) { + // E := err.(types.Error) + // fmt.Fprintf(os.Stderr, "%s: %s\n", E.Fset.Position(E.Pos), E.Msg) + // } + + // Load/parse/type-check the program. + iprog, err := conf.Load() + if err != nil { + return nil, err + } + + o, err := newOracle(iprog, ptalog, minfo.needs, reflection) + if err != nil { + return nil, err + } + + qpos, err := ParseQueryPos(iprog, pos, minfo.needs&needExactPos != 0) + if err != nil && minfo.needs&(needPos|needExactPos) != 0 { + return nil, err + } + + // SSA is built and we have the QueryPos. + // Release the other ASTs and type info to the GC. + iprog = nil + + return o.query(minfo, qpos) +} + +// reduceScope is called for one-shot queries that need only a single +// typed package. It attempts to guess the query package from pos and +// reduce the analysis scope (set of loaded packages) to just that one +// plus (the exported parts of) its dependencies. It leaves its +// arguments unchanged on failure. +// +// TODO(adonovan): this is a real mess... but it's fast. +// +func reduceScope(pos string, conf *loader.Config) { + fqpos, err := fastQueryPos(pos) + if err != nil { + return // bad query + } + + // TODO(adonovan): fix: this gives the wrong results for files + // in non-importable packages such as tests and ad-hoc packages + // specified as a list of files (incl. the oracle's tests). + _, importPath, err := guessImportPath(fqpos.fset.File(fqpos.start).Name(), conf.Build) + if err != nil { + return // can't find GOPATH dir + } + if importPath == "" { + return + } + + // Check that it's possible to load the queried package. + // (e.g. oracle tests contain different 'package' decls in same dir.) + // Keep consistent with logic in loader/util.go! + cfg2 := *conf.Build + cfg2.CgoEnabled = false + bp, err := cfg2.Import(importPath, "", 0) + if err != nil { + return // no files for package + } + + // Check that the queried file appears in the package: + // it might be a '// +build ignore' from an ad-hoc main + // package, e.g. $GOROOT/src/pkg/net/http/triv.go. + if !pkgContainsFile(bp, fqpos.fset.File(fqpos.start).Name()) { + return // not found + } + + conf.TypeCheckFuncBodies = func(p string) bool { return p == importPath } + + // Ignore packages specified on command line. + conf.CreatePkgs = nil + conf.ImportPkgs = nil + + // Instead load just the one containing the query position + // (and possibly its corresponding tests/production code). + // TODO(adonovan): set 'augment' based on which file list + // contains + _ = conf.ImportWithTests(importPath) // ignore error +} + +func pkgContainsFile(bp *build.Package, filename string) bool { + for _, files := range [][]string{bp.GoFiles, bp.TestGoFiles, bp.XTestGoFiles} { + for _, file := range files { + if sameFile(file, filename) { + return true + } + } + } + return false +} + +// New constructs a new Oracle that can be used for a sequence of queries. +// +// iprog specifies the program to analyze. +// ptalog is the (optional) pointer-analysis log file. +// reflection determines whether to model reflection soundly (currently slow). +// +func New(iprog *loader.Program, ptalog io.Writer, reflection bool) (*Oracle, error) { + return newOracle(iprog, ptalog, needAll, reflection) +} + +func newOracle(iprog *loader.Program, ptalog io.Writer, needs int, reflection bool) (*Oracle, error) { + o := &Oracle{fset: iprog.Fset} + + // Retain type info for all ASTs in the program. + if needs&needRetainTypeInfo != 0 { + o.typeInfo = iprog.AllPackages + } + + // Create SSA package for the initial packages and their dependencies. + if needs&needSSA != 0 { + var mode ssa.BuilderMode + if needs&needSSADebug != 0 { + mode |= ssa.GlobalDebug + } + prog := ssa.Create(iprog, mode) + + // For each initial package (specified on the command line), + // if it has a main function, analyze that, + // otherwise analyze its tests, if any. + var testPkgs, mains []*ssa.Package + for _, info := range iprog.InitialPackages() { + initialPkg := prog.Package(info.Pkg) + + // Add package to the pointer analysis scope. + if initialPkg.Func("main") != nil { + mains = append(mains, initialPkg) + } else { + testPkgs = append(testPkgs, initialPkg) + } + } + if testPkgs != nil { + if p := prog.CreateTestMainPackage(testPkgs...); p != nil { + mains = append(mains, p) + } + } + if mains == nil { + return nil, fmt.Errorf("analysis scope has no main and no tests") + } + o.ptaConfig.Log = ptalog + o.ptaConfig.Reflection = reflection + o.ptaConfig.Mains = mains + + o.prog = prog + } + + return o, nil +} + +// Query runs the query of the specified mode and selection. +// +// TODO(adonovan): fix: this function does not currently support the +// "what" query, which needs to access the go/build.Context. +// +func (o *Oracle) Query(mode string, qpos *QueryPos) (*Result, error) { + minfo := findMode(mode) + if minfo == nil { + return nil, fmt.Errorf("invalid mode type: %q", mode) + } + return o.query(minfo, qpos) +} + +func (o *Oracle) query(minfo *modeInfo, qpos *QueryPos) (*Result, error) { + // Clear out residue of previous query (for long-running clients). + o.ptaConfig.Queries = nil + o.ptaConfig.IndirectQueries = nil + + res := &Result{ + mode: minfo.name, + fset: o.fset, + } + var err error + res.q, err = minfo.impl(o, qpos) + if err != nil { + return nil, err + } + return res, nil +} + +// ParseQueryPos parses the source query position pos. +// If needExact, it must identify a single AST subtree; +// this is appropriate for queries that allow fairly arbitrary syntax, +// e.g. "describe". +// +func ParseQueryPos(iprog *loader.Program, posFlag string, needExact bool) (*QueryPos, error) { + filename, startOffset, endOffset, err := parsePosFlag(posFlag) + if err != nil { + return nil, err + } + start, end, err := findQueryPos(iprog.Fset, filename, startOffset, endOffset) + if err != nil { + return nil, err + } + info, path, exact := iprog.PathEnclosingInterval(start, end) + if path == nil { + return nil, fmt.Errorf("no syntax here") + } + if needExact && !exact { + return nil, fmt.Errorf("ambiguous selection within %s", astutil.NodeDescription(path[0])) + } + return &QueryPos{iprog.Fset, start, end, path, exact, info}, nil +} + +// WriteTo writes the oracle query result res to out in a compiler diagnostic format. +func (res *Result) WriteTo(out io.Writer) { + printf := func(pos interface{}, format string, args ...interface{}) { + fprintf(out, res.fset, pos, format, args...) + } + res.q.display(printf) + + // Print warnings after the main output. + if res.warnings != nil { + fmt.Fprintln(out, "\nPointer analysis warnings:") + for _, w := range res.warnings { + printf(w.Pos, "warning: "+w.Message) + } + } +} + +// ---------- Utilities ---------- + +// buildSSA constructs the SSA representation of Go-source function bodies. +// Not needed in simpler modes, e.g. freevars. +// +func buildSSA(o *Oracle) { + o.prog.BuildAll() +} + +// ptrAnalysis runs the pointer analysis and returns its result. +func ptrAnalysis(o *Oracle) *pointer.Result { + result, err := pointer.Analyze(&o.ptaConfig) + if err != nil { + panic(err) // pointer analysis internal error + } + return result +} + +// unparen returns e with any enclosing parentheses stripped. +func unparen(e ast.Expr) ast.Expr { + for { + p, ok := e.(*ast.ParenExpr) + if !ok { + break + } + e = p.X + } + return e +} + +// deref returns a pointer's element type; otherwise it returns typ. +func deref(typ types.Type) types.Type { + if p, ok := typ.Underlying().(*types.Pointer); ok { + return p.Elem() + } + return typ +} + +// fprintf prints to w a message of the form "location: message\n" +// where location is derived from pos. +// +// pos must be one of: +// - a token.Pos, denoting a position +// - an ast.Node, denoting an interval +// - anything with a Pos() method: +// ssa.Member, ssa.Value, ssa.Instruction, types.Object, pointer.Label, etc. +// - a QueryPos, denoting the extent of the user's query. +// - nil, meaning no position at all. +// +// The output format is is compatible with the 'gnu' +// compilation-error-regexp in Emacs' compilation mode. +// TODO(adonovan): support other editors. +// +func fprintf(w io.Writer, fset *token.FileSet, pos interface{}, format string, args ...interface{}) { + var start, end token.Pos + switch pos := pos.(type) { + case ast.Node: + start = pos.Pos() + end = pos.End() + case token.Pos: + start = pos + end = start + case interface { + Pos() token.Pos + }: + start = pos.Pos() + end = start + case *QueryPos: + start = pos.start + end = pos.end + case nil: + // no-op + default: + panic(fmt.Sprintf("invalid pos: %T", pos)) + } + + if sp := fset.Position(start); start == end { + // (prints "-: " for token.NoPos) + fmt.Fprintf(w, "%s: ", sp) + } else { + ep := fset.Position(end) + // The -1 below is a concession to Emacs's broken use of + // inclusive (not half-open) intervals. + // Other editors may not want it. + // TODO(adonovan): add an -editor=vim|emacs|acme|auto + // flag; auto uses EMACS=t / VIM=... / etc env vars. + fmt.Fprintf(w, "%s:%d.%d-%d.%d: ", + sp.Filename, sp.Line, sp.Column, ep.Line, ep.Column-1) + } + fmt.Fprintf(w, format, args...) + io.WriteString(w, "\n") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/oracle_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/oracle_test.go new file mode 100644 index 00000000..3bbd23f9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/oracle_test.go @@ -0,0 +1,319 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle_test + +// This file defines a test framework for oracle queries. +// +// The files beneath testdata/src/main contain Go programs containing +// query annotations of the form: +// +// @verb id "select" +// +// where verb is the query mode (e.g. "callers"), id is a unique name +// for this query, and "select" is a regular expression matching the +// substring of the current line that is the query's input selection. +// +// The expected output for each query is provided in the accompanying +// .golden file. +// +// (Location information is not included because it's too fragile to +// display as text. TODO(adonovan): think about how we can test its +// correctness, since it is critical information.) +// +// Run this test with: +// % go test code.google.com/p/go.tools/oracle -update +// to update the golden files. + +import ( + "bytes" + "encoding/json" + "flag" + "fmt" + "go/build" + "go/parser" + "go/token" + "io" + "io/ioutil" + "os" + "os/exec" + "regexp" + "runtime" + "strconv" + "strings" + "testing" + + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/oracle" +) + +var updateFlag = flag.Bool("update", false, "Update the golden files.") + +type query struct { + id string // unique id + verb string // query mode, e.g. "callees" + posn token.Position // position of of query + filename string + queryPos string // value of -pos flag +} + +func parseRegexp(text string) (*regexp.Regexp, error) { + pattern, err := strconv.Unquote(text) + if err != nil { + return nil, fmt.Errorf("can't unquote %s", text) + } + return regexp.Compile(pattern) +} + +// parseQueries parses and returns the queries in the named file. +func parseQueries(t *testing.T, filename string) []*query { + filedata, err := ioutil.ReadFile(filename) + if err != nil { + t.Fatal(err) + } + + // Parse the file once to discover the test queries. + var fset token.FileSet + f, err := parser.ParseFile(&fset, filename, filedata, parser.ParseComments) + if err != nil { + t.Fatal(err) + } + + lines := bytes.Split(filedata, []byte("\n")) + + var queries []*query + queriesById := make(map[string]*query) + + // Find all annotations of these forms: + expectRe := regexp.MustCompile(`@([a-z]+)\s+(\S+)\s+(\".*)$`) // @verb id "regexp" + for _, c := range f.Comments { + text := strings.TrimSpace(c.Text()) + if text == "" || text[0] != '@' { + continue + } + posn := fset.Position(c.Pos()) + + // @verb id "regexp" + match := expectRe.FindStringSubmatch(text) + if match == nil { + t.Errorf("%s: ill-formed query: %s", posn, text) + continue + } + + id := match[2] + if prev, ok := queriesById[id]; ok { + t.Errorf("%s: duplicate id %s", posn, id) + t.Errorf("%s: previously used here", prev.posn) + continue + } + + q := &query{ + id: id, + verb: match[1], + filename: filename, + posn: posn, + } + + if match[3] != `"nopos"` { + selectRe, err := parseRegexp(match[3]) + if err != nil { + t.Errorf("%s: %s", posn, err) + continue + } + + // Find text of the current line, sans query. + // (Queries must be // not /**/ comments.) + line := lines[posn.Line-1][:posn.Column-1] + + // Apply regexp to current line to find input selection. + loc := selectRe.FindIndex(line) + if loc == nil { + t.Errorf("%s: selection pattern %s doesn't match line %q", + posn, match[3], string(line)) + continue + } + + // Assumes ASCII. TODO(adonovan): test on UTF-8. + linestart := posn.Offset - (posn.Column - 1) + + // Compute the file offsets. + q.queryPos = fmt.Sprintf("%s:#%d,#%d", + filename, linestart+loc[0], linestart+loc[1]) + } + + queries = append(queries, q) + queriesById[id] = q + } + + // Return the slice, not map, for deterministic iteration. + return queries +} + +// WriteResult writes res (-format=plain) to w, stripping file locations. +func WriteResult(w io.Writer, res *oracle.Result) { + capture := new(bytes.Buffer) // capture standard output + res.WriteTo(capture) + for _, line := range strings.Split(capture.String(), "\n") { + // Remove a "file:line: " prefix. + if i := strings.Index(line, ": "); i >= 0 { + line = line[i+2:] + } + fmt.Fprintf(w, "%s\n", line) + } +} + +// doQuery poses query q to the oracle and writes its response and +// error (if any) to out. +func doQuery(out io.Writer, q *query, useJson bool) { + fmt.Fprintf(out, "-------- @%s %s --------\n", q.verb, q.id) + + var buildContext = build.Default + buildContext.GOPATH = "testdata" + res, err := oracle.Query([]string{q.filename}, + q.verb, + q.queryPos, + nil, // ptalog, + &buildContext, + true) // reflection + if err != nil { + fmt.Fprintf(out, "\nError: %s\n", err) + return + } + + if useJson { + // JSON output + b, err := json.MarshalIndent(res.Serial(), "", "\t") + if err != nil { + fmt.Fprintf(out, "JSON error: %s\n", err.Error()) + return + } + out.Write(b) + } else { + // "plain" (compiler diagnostic format) output + WriteResult(out, res) + } +} + +func TestOracle(t *testing.T) { + switch runtime.GOOS { + case "windows": + t.Skipf("skipping test on %q (no /usr/bin/diff)", runtime.GOOS) + } + + for _, filename := range []string{ + "testdata/src/main/calls.go", + "testdata/src/main/callgraph.go", + "testdata/src/main/callgraph2.go", + "testdata/src/main/describe.go", + "testdata/src/main/freevars.go", + "testdata/src/main/implements.go", + "testdata/src/main/imports.go", + "testdata/src/main/peers.go", + "testdata/src/main/pointsto.go", + "testdata/src/main/reflection.go", + "testdata/src/main/what.go", + // JSON: + // TODO(adonovan): most of these are very similar; combine them. + "testdata/src/main/callgraph-json.go", + "testdata/src/main/calls-json.go", + "testdata/src/main/peers-json.go", + "testdata/src/main/describe-json.go", + "testdata/src/main/implements-json.go", + "testdata/src/main/pointsto-json.go", + "testdata/src/main/referrers-json.go", + "testdata/src/main/what-json.go", + } { + useJson := strings.HasSuffix(filename, "-json.go") + queries := parseQueries(t, filename) + golden := filename + "lden" + got := filename + "t" + gotfh, err := os.Create(got) + if err != nil { + t.Errorf("Create(%s) failed: %s", got, err) + continue + } + defer gotfh.Close() + defer os.Remove(got) + + // Run the oracle on each query, redirecting its output + // and error (if any) to the foo.got file. + for _, q := range queries { + doQuery(gotfh, q, useJson) + } + + // Compare foo.got with foo.golden. + var cmd *exec.Cmd + switch runtime.GOOS { + case "plan9": + cmd = exec.Command("/bin/diff", "-c", golden, got) + default: + cmd = exec.Command("/usr/bin/diff", "-u", golden, got) + } + buf := new(bytes.Buffer) + cmd.Stdout = buf + cmd.Stderr = os.Stderr + if err := cmd.Run(); err != nil { + t.Errorf("Oracle tests for %s failed: %s.\n%s\n", + filename, err, buf) + + if *updateFlag { + t.Logf("Updating %s...", golden) + if err := exec.Command("/bin/cp", got, golden).Run(); err != nil { + t.Errorf("Update failed: %s", err) + } + } + } + } +} + +func TestMultipleQueries(t *testing.T) { + // Loader + var buildContext = build.Default + buildContext.GOPATH = "testdata" + conf := loader.Config{Build: &buildContext, SourceImports: true} + filename := "testdata/src/main/multi.go" + conf.CreateFromFilenames("", filename) + iprog, err := conf.Load() + if err != nil { + t.Fatalf("Load failed: %s", err) + } + + // Oracle + o, err := oracle.New(iprog, nil, true) + if err != nil { + t.Fatalf("oracle.New failed: %s", err) + } + + // QueryPos + pos := filename + ":#54,#58" + qpos, err := oracle.ParseQueryPos(iprog, pos, true) + if err != nil { + t.Fatalf("oracle.ParseQueryPos(%q) failed: %s", pos, err) + } + // SSA is built and we have the QueryPos. + // Release the other ASTs and type info to the GC. + iprog = nil + + // Run different query modes on same scope and selection. + out := new(bytes.Buffer) + for _, mode := range [...]string{"callers", "describe", "freevars"} { + res, err := o.Query(mode, qpos) + if err != nil { + t.Errorf("(*oracle.Oracle).Query(%q) failed: %s", pos, err) + } + WriteResult(out, res) + } + want := `multi.f is called from these 1 sites: + static function call from multi.main + +function call (or conversion) of type () + +Free identifiers: +var x int + +` + if got := out.String(); got != want { + t.Errorf("Query output differs; want <<%s>>, got <<%s>>\n", want, got) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/peers.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/peers.go new file mode 100644 index 00000000..d4c910d5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/peers.go @@ -0,0 +1,199 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/token" + "sort" + + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/ssa/ssautil" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// peers enumerates, for a given channel send (or receive) operation, +// the set of possible receives (or sends) that correspond to it. +// +// TODO(adonovan): support reflect.{Select,Recv,Send,Close}. +// TODO(adonovan): permit the user to query based on a MakeChan (not send/recv), +// or the implicit receive in "for v := range ch". +// TODO(adonovan): support "close" as a channel op. +// +func peers(o *Oracle, qpos *QueryPos) (queryResult, error) { + arrowPos := findArrow(qpos) + if arrowPos == token.NoPos { + return nil, fmt.Errorf("there is no send/receive here") + } + + buildSSA(o) + + var queryOp chanOp // the originating send or receive operation + var ops []chanOp // all sends/receives of opposite direction + + // Look at all send/receive instructions in the whole ssa.Program. + // Build a list of those of same type to query. + allFuncs := ssautil.AllFunctions(o.prog) + for fn := range allFuncs { + for _, b := range fn.Blocks { + for _, instr := range b.Instrs { + for _, op := range chanOps(instr) { + ops = append(ops, op) + if op.pos == arrowPos { + queryOp = op // we found the query op + } + } + } + } + } + if queryOp.ch == nil { + return nil, fmt.Errorf("ssa.Instruction for send/receive not found") + } + + // Discard operations of wrong channel element type. + // Build set of channel ssa.Values as query to pointer analysis. + // We compare channels by element types, not channel types, to + // ignore both directionality and type names. + queryType := queryOp.ch.Type() + queryElemType := queryType.Underlying().(*types.Chan).Elem() + o.ptaConfig.AddQuery(queryOp.ch) + i := 0 + for _, op := range ops { + if types.Identical(op.ch.Type().Underlying().(*types.Chan).Elem(), queryElemType) { + o.ptaConfig.AddQuery(op.ch) + ops[i] = op + i++ + } + } + ops = ops[:i] + + // Run the pointer analysis. + ptares := ptrAnalysis(o) + + // Find the points-to set. + queryChanPtr := ptares.Queries[queryOp.ch] + + // Ascertain which make(chan) labels the query's channel can alias. + var makes []token.Pos + for _, label := range queryChanPtr.PointsTo().Labels() { + makes = append(makes, label.Pos()) + } + sort.Sort(byPos(makes)) + + // Ascertain which send/receive operations can alias the same make(chan) labels. + var sends, receives []token.Pos + for _, op := range ops { + if ptr, ok := ptares.Queries[op.ch]; ok && ptr.MayAlias(queryChanPtr) { + if op.dir == types.SendOnly { + sends = append(sends, op.pos) + } else { + receives = append(receives, op.pos) + } + } + } + sort.Sort(byPos(sends)) + sort.Sort(byPos(receives)) + + return &peersResult{ + queryPos: arrowPos, + queryType: queryType, + makes: makes, + sends: sends, + receives: receives, + }, nil +} + +// findArrow returns the position of the enclosing send/receive op +// (<-) for the query position, or token.NoPos if not found. +// +func findArrow(qpos *QueryPos) token.Pos { + for _, n := range qpos.path { + switch n := n.(type) { + case *ast.UnaryExpr: + if n.Op == token.ARROW { + return n.OpPos + } + case *ast.SendStmt: + return n.Arrow + } + } + return token.NoPos +} + +// chanOp abstracts an ssa.Send, ssa.Unop(ARROW), or a SelectState. +type chanOp struct { + ch ssa.Value + dir types.ChanDir // SendOnly or RecvOnly + pos token.Pos +} + +// chanOps returns a slice of all the channel operations in the instruction. +func chanOps(instr ssa.Instruction) []chanOp { + // TODO(adonovan): handle calls to reflect.{Select,Recv,Send,Close} too. + var ops []chanOp + switch instr := instr.(type) { + case *ssa.UnOp: + if instr.Op == token.ARROW { + ops = append(ops, chanOp{instr.X, types.RecvOnly, instr.Pos()}) + } + case *ssa.Send: + ops = append(ops, chanOp{instr.Chan, types.SendOnly, instr.Pos()}) + case *ssa.Select: + for _, st := range instr.States { + ops = append(ops, chanOp{st.Chan, st.Dir, st.Pos}) + } + } + return ops +} + +type peersResult struct { + queryPos token.Pos // of queried '<-' token + queryType types.Type // type of queried channel + makes, sends, receives []token.Pos // positions of alisaed makechan/send/receive instrs +} + +func (r *peersResult) display(printf printfFunc) { + if len(r.makes) == 0 { + printf(r.queryPos, "This channel can't point to anything.") + return + } + printf(r.queryPos, "This channel of type %s may be:", r.queryType) + for _, alloc := range r.makes { + printf(alloc, "\tallocated here") + } + for _, send := range r.sends { + printf(send, "\tsent to, here") + } + for _, receive := range r.receives { + printf(receive, "\treceived from, here") + } +} + +func (r *peersResult) toSerial(res *serial.Result, fset *token.FileSet) { + peers := &serial.Peers{ + Pos: fset.Position(r.queryPos).String(), + Type: r.queryType.String(), + } + for _, alloc := range r.makes { + peers.Allocs = append(peers.Allocs, fset.Position(alloc).String()) + } + for _, send := range r.sends { + peers.Sends = append(peers.Sends, fset.Position(send).String()) + } + for _, receive := range r.receives { + peers.Receives = append(peers.Receives, fset.Position(receive).String()) + } + res.Peers = peers +} + +// -------- utils -------- + +type byPos []token.Pos + +func (p byPos) Len() int { return len(p) } +func (p byPos) Less(i, j int) bool { return p[i] < p[j] } +func (p byPos) Swap(i, j int) { p[i], p[j] = p[j], p[i] } diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/pointsto.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/pointsto.go new file mode 100644 index 00000000..76eb2aaf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/pointsto.go @@ -0,0 +1,255 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/token" + "sort" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/go/loader" + "code.google.com/p/go.tools/go/pointer" + "code.google.com/p/go.tools/go/ssa" + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// pointsto runs the pointer analysis on the selected expression, +// and reports its points-to set (for a pointer-like expression) +// or its dynamic types (for an interface, reflect.Value, or +// reflect.Type expression) and their points-to sets. +// +// All printed sets are sorted to ensure determinism. +// +func pointsto(o *Oracle, qpos *QueryPos) (queryResult, error) { + path, action := findInterestingNode(qpos.info, qpos.path) + if action != actionExpr { + return nil, fmt.Errorf("pointer analysis wants an expression; got %s", + astutil.NodeDescription(qpos.path[0])) + } + + var expr ast.Expr + var obj types.Object + switch n := path[0].(type) { + case *ast.ValueSpec: + // ambiguous ValueSpec containing multiple names + return nil, fmt.Errorf("multiple value specification") + case *ast.Ident: + obj = qpos.info.ObjectOf(n) + expr = n + case ast.Expr: + expr = n + default: + // TODO(adonovan): is this reachable? + return nil, fmt.Errorf("unexpected AST for expr: %T", n) + } + + // Reject non-pointerlike types (includes all constants). + typ := qpos.info.TypeOf(expr) + if !pointer.CanPoint(typ) { + return nil, fmt.Errorf("pointer analysis wants an expression of reference type; got %s", typ) + } + + // Determine the ssa.Value for the expression. + var value ssa.Value + var isAddr bool + var err error + if obj != nil { + // def/ref of func/var object + value, isAddr, err = ssaValueForIdent(o.prog, qpos.info, obj, path) + } else { + value, isAddr, err = ssaValueForExpr(o.prog, qpos.info, path) + } + if err != nil { + return nil, err // e.g. trivially dead code + } + + // Run the pointer analysis. + ptrs, err := runPTA(o, value, isAddr) + if err != nil { + return nil, err // e.g. analytically unreachable + } + + return &pointstoResult{ + qpos: qpos, + typ: typ, + ptrs: ptrs, + }, nil +} + +// ssaValueForIdent returns the ssa.Value for the ast.Ident whose path +// to the root of the AST is path. isAddr reports whether the +// ssa.Value is the address denoted by the ast.Ident, not its value. +// +func ssaValueForIdent(prog *ssa.Program, qinfo *loader.PackageInfo, obj types.Object, path []ast.Node) (value ssa.Value, isAddr bool, err error) { + switch obj := obj.(type) { + case *types.Var: + pkg := prog.Package(qinfo.Pkg) + pkg.Build() + if v, addr := prog.VarValue(obj, pkg, path); v != nil { + return v, addr, nil + } + return nil, false, fmt.Errorf("can't locate SSA Value for var %s", obj.Name()) + + case *types.Func: + return prog.FuncValue(obj), false, nil + } + panic(obj) +} + +// ssaValueForExpr returns the ssa.Value of the non-ast.Ident +// expression whose path to the root of the AST is path. +// +func ssaValueForExpr(prog *ssa.Program, qinfo *loader.PackageInfo, path []ast.Node) (value ssa.Value, isAddr bool, err error) { + pkg := prog.Package(qinfo.Pkg) + pkg.SetDebugMode(true) + pkg.Build() + + fn := ssa.EnclosingFunction(pkg, path) + if fn == nil { + return nil, false, fmt.Errorf("no SSA function built for this location (dead code?)") + } + + if v, addr := fn.ValueForExpr(path[0].(ast.Expr)); v != nil { + return v, addr, nil + } + + return nil, false, fmt.Errorf("can't locate SSA Value for expression in %s", fn) +} + +// runPTA runs the pointer analysis of the selected SSA value or address. +func runPTA(o *Oracle, v ssa.Value, isAddr bool) (ptrs []pointerResult, err error) { + buildSSA(o) + + if isAddr { + o.ptaConfig.AddIndirectQuery(v) + } else { + o.ptaConfig.AddQuery(v) + } + ptares := ptrAnalysis(o) + + var ptr pointer.Pointer + if isAddr { + ptr = ptares.IndirectQueries[v] + } else { + ptr = ptares.Queries[v] + } + if ptr == (pointer.Pointer{}) { + return nil, fmt.Errorf("pointer analysis did not find expression (dead code?)") + } + pts := ptr.PointsTo() + + if pointer.CanHaveDynamicTypes(v.Type()) { + // Show concrete types for interface/reflect.Value expression. + if concs := pts.DynamicTypes(); concs.Len() > 0 { + concs.Iterate(func(conc types.Type, pta interface{}) { + labels := pta.(pointer.PointsToSet).Labels() + sort.Sort(byPosAndString(labels)) // to ensure determinism + ptrs = append(ptrs, pointerResult{conc, labels}) + }) + } + } else { + // Show labels for other expressions. + labels := pts.Labels() + sort.Sort(byPosAndString(labels)) // to ensure determinism + ptrs = append(ptrs, pointerResult{v.Type(), labels}) + } + sort.Sort(byTypeString(ptrs)) // to ensure determinism + return ptrs, nil +} + +type pointerResult struct { + typ types.Type // type of the pointer (always concrete) + labels []*pointer.Label // set of labels +} + +type pointstoResult struct { + qpos *QueryPos + typ types.Type // type of expression + ptrs []pointerResult // pointer info (typ is concrete => len==1) +} + +func (r *pointstoResult) display(printf printfFunc) { + if pointer.CanHaveDynamicTypes(r.typ) { + // Show concrete types for interface, reflect.Type or + // reflect.Value expression. + + if len(r.ptrs) > 0 { + printf(r.qpos, "this %s may contain these dynamic types:", r.qpos.TypeString(r.typ)) + for _, ptr := range r.ptrs { + var obj types.Object + if nt, ok := deref(ptr.typ).(*types.Named); ok { + obj = nt.Obj() + } + if len(ptr.labels) > 0 { + printf(obj, "\t%s, may point to:", r.qpos.TypeString(ptr.typ)) + printLabels(printf, ptr.labels, "\t\t") + } else { + printf(obj, "\t%s", r.qpos.TypeString(ptr.typ)) + } + } + } else { + printf(r.qpos, "this %s cannot contain any dynamic types.", r.typ) + } + } else { + // Show labels for other expressions. + if ptr := r.ptrs[0]; len(ptr.labels) > 0 { + printf(r.qpos, "this %s may point to these objects:", + r.qpos.TypeString(r.typ)) + printLabels(printf, ptr.labels, "\t") + } else { + printf(r.qpos, "this %s may not point to anything.", + r.qpos.TypeString(r.typ)) + } + } +} + +func (r *pointstoResult) toSerial(res *serial.Result, fset *token.FileSet) { + var pts []serial.PointsTo + for _, ptr := range r.ptrs { + var namePos string + if nt, ok := deref(ptr.typ).(*types.Named); ok { + namePos = fset.Position(nt.Obj().Pos()).String() + } + var labels []serial.PointsToLabel + for _, l := range ptr.labels { + labels = append(labels, serial.PointsToLabel{ + Pos: fset.Position(l.Pos()).String(), + Desc: l.String(), + }) + } + pts = append(pts, serial.PointsTo{ + Type: r.qpos.TypeString(ptr.typ), + NamePos: namePos, + Labels: labels, + }) + } + res.PointsTo = pts +} + +type byTypeString []pointerResult + +func (a byTypeString) Len() int { return len(a) } +func (a byTypeString) Less(i, j int) bool { return a[i].typ.String() < a[j].typ.String() } +func (a byTypeString) Swap(i, j int) { a[i], a[j] = a[j], a[i] } + +type byPosAndString []*pointer.Label + +func (a byPosAndString) Len() int { return len(a) } +func (a byPosAndString) Less(i, j int) bool { + cmp := a[i].Pos() - a[j].Pos() + return cmp < 0 || (cmp == 0 && a[i].String() < a[j].String()) +} +func (a byPosAndString) Swap(i, j int) { a[i], a[j] = a[j], a[i] } + +func printLabels(printf printfFunc, labels []*pointer.Label, prefix string) { + // TODO(adonovan): due to context-sensitivity, many of these + // labels may differ only by context, which isn't apparent. + for _, label := range labels { + printf(label, "%s%s", prefix, label) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/pos.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/pos.go new file mode 100644 index 00000000..4ae30a6e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/pos.go @@ -0,0 +1,149 @@ +package oracle + +// This file defines utilities for working with file positions. + +import ( + "fmt" + "go/parser" + "go/token" + "os" + "path/filepath" + "strconv" + "strings" + + "code.google.com/p/go.tools/astutil" +) + +// parseOctothorpDecimal returns the numeric value if s matches "#%d", +// otherwise -1. +func parseOctothorpDecimal(s string) int { + if s != "" && s[0] == '#' { + if s, err := strconv.ParseInt(s[1:], 10, 32); err == nil { + return int(s) + } + } + return -1 +} + +// parsePosFlag parses a string of the form "file:pos" or +// file:start,end" where pos, start, end match #%d and represent byte +// offsets, and returns its components. +// +// (Numbers without a '#' prefix are reserved for future use, +// e.g. to indicate line/column positions.) +// +func parsePosFlag(posFlag string) (filename string, startOffset, endOffset int, err error) { + if posFlag == "" { + err = fmt.Errorf("no source position specified (-pos flag)") + return + } + + colon := strings.LastIndex(posFlag, ":") + if colon < 0 { + err = fmt.Errorf("invalid source position -pos=%q", posFlag) + return + } + filename, offset := posFlag[:colon], posFlag[colon+1:] + startOffset = -1 + endOffset = -1 + if hyphen := strings.Index(offset, ","); hyphen < 0 { + // e.g. "foo.go:#123" + startOffset = parseOctothorpDecimal(offset) + endOffset = startOffset + } else { + // e.g. "foo.go:#123,#456" + startOffset = parseOctothorpDecimal(offset[:hyphen]) + endOffset = parseOctothorpDecimal(offset[hyphen+1:]) + } + if startOffset < 0 || endOffset < 0 { + err = fmt.Errorf("invalid -pos offset %q", offset) + return + } + return +} + +// findQueryPos searches fset for filename and translates the +// specified file-relative byte offsets into token.Pos form. It +// returns an error if the file was not found or the offsets were out +// of bounds. +// +func findQueryPos(fset *token.FileSet, filename string, startOffset, endOffset int) (start, end token.Pos, err error) { + var file *token.File + fset.Iterate(func(f *token.File) bool { + if sameFile(filename, f.Name()) { + // (f.Name() is absolute) + file = f + return false // done + } + return true // continue + }) + if file == nil { + err = fmt.Errorf("couldn't find file containing position") + return + } + + // Range check [start..end], inclusive of both end-points. + + if 0 <= startOffset && startOffset <= file.Size() { + start = file.Pos(int(startOffset)) + } else { + err = fmt.Errorf("start position is beyond end of file") + return + } + + if 0 <= endOffset && endOffset <= file.Size() { + end = file.Pos(int(endOffset)) + } else { + err = fmt.Errorf("end position is beyond end of file") + return + } + + return +} + +// sameFile returns true if x and y have the same basename and denote +// the same file. +// +func sameFile(x, y string) bool { + if filepath.Base(x) == filepath.Base(y) { // (optimisation) + if xi, err := os.Stat(x); err == nil { + if yi, err := os.Stat(y); err == nil { + return os.SameFile(xi, yi) + } + } + } + return false +} + +// fastQueryPos parses the -pos flag and returns a QueryPos. +// It parses only a single file, and does not run the type checker. +// +// Caveat: the token.{FileSet,Pos} info it contains is not comparable +// with that from the oracle's FileSet! (We don't accept oracle.fset +// as a parameter because we don't want the same filename to appear +// multiple times in one FileSet.) +// +func fastQueryPos(posFlag string) (*QueryPos, error) { + filename, startOffset, endOffset, err := parsePosFlag(posFlag) + if err != nil { + return nil, err + } + + fset := token.NewFileSet() + f, err := parser.ParseFile(fset, filename, nil, 0) + if err != nil { + return nil, err + } + + start, end, err := findQueryPos(fset, filename, startOffset, endOffset) + if err != nil { + return nil, err + } + + path, exact := astutil.PathEnclosingInterval(f, start, end) + if path == nil { + return nil, fmt.Errorf("no syntax here") + } + + return &QueryPos{fset, start, end, path, exact, nil}, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/referrers.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/referrers.go new file mode 100644 index 00000000..ddab2361 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/referrers.go @@ -0,0 +1,107 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/token" + "sort" + + "code.google.com/p/go.tools/go/types" + "code.google.com/p/go.tools/oracle/serial" +) + +// Referrers reports all identifiers that resolve to the same object +// as the queried identifier, within any package in the analysis scope. +// +func referrers(o *Oracle, qpos *QueryPos) (queryResult, error) { + id, _ := qpos.path[0].(*ast.Ident) + if id == nil { + return nil, fmt.Errorf("no identifier here") + } + + obj := qpos.info.ObjectOf(id) + if obj == nil { + // Happens for y in "switch y := x.(type)", but I think that's all. + return nil, fmt.Errorf("no object for identifier") + } + + // Iterate over all go/types' Uses facts for the entire program. + var refs []*ast.Ident + for _, info := range o.typeInfo { + for id2, obj2 := range info.Uses { + if sameObj(obj, obj2) { + refs = append(refs, id2) + } + } + } + sort.Sort(byNamePos(refs)) + + return &referrersResult{ + query: id, + obj: obj, + refs: refs, + }, nil +} + +// same reports whether x and y are identical, or both are PkgNames +// referring to the same Package. +// +func sameObj(x, y types.Object) bool { + if x == y { + return true + } + if _, ok := x.(*types.PkgName); ok { + if _, ok := y.(*types.PkgName); ok { + return x.Pkg() == y.Pkg() + } + } + return false +} + +// -------- utils -------- + +type byNamePos []*ast.Ident + +func (p byNamePos) Len() int { return len(p) } +func (p byNamePos) Less(i, j int) bool { return p[i].NamePos < p[j].NamePos } +func (p byNamePos) Swap(i, j int) { p[i], p[j] = p[j], p[i] } + +type referrersResult struct { + query *ast.Ident // identifer of query + obj types.Object // object it denotes + refs []*ast.Ident // set of all other references to it +} + +func (r *referrersResult) display(printf printfFunc) { + if r.query.Pos() != r.obj.Pos() { + printf(r.query, "reference to %s", r.obj.Name()) + } + // TODO(adonovan): pretty-print object using same logic as + // (*describeValueResult).display. + printf(r.obj, "defined here as %s", r.obj) + for _, ref := range r.refs { + if r.query != ref { + printf(ref, "referenced here") + } + } +} + +// TODO(adonovan): encode extent, not just Pos info, in Serial form. + +func (r *referrersResult) toSerial(res *serial.Result, fset *token.FileSet) { + referrers := &serial.Referrers{ + Pos: fset.Position(r.query.Pos()).String(), + Desc: r.obj.String(), + } + if pos := r.obj.Pos(); pos != token.NoPos { // Package objects have no Pos() + referrers.ObjPos = fset.Position(pos).String() + } + for _, ref := range r.refs { + referrers.Refs = append(referrers.Refs, fset.Position(ref.NamePos).String()) + } + res.Referrers = referrers +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/serial/serial.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/serial/serial.go new file mode 100644 index 00000000..316ecffc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/serial/serial.go @@ -0,0 +1,255 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package serial defines the oracle's schema for structured data +// serialization using JSON, XML, etc. +package serial + +// All 'pos' strings are of the form "file:line:col". +// TODO(adonovan): improve performance by sharing filename strings. +// TODO(adonovan): improve precision by providing the start/end +// interval when available. +// +// TODO(adonovan): consider richer encodings of types, functions, +// methods, etc. + +// A Peers is the result of a 'peers' query. +// If Allocs is empty, the selected channel can't point to anything. +type Peers struct { + Pos string `json:"pos"` // location of the selected channel op (<-) + Type string `json:"type"` // type of the selected channel + Allocs []string `json:"allocs,omitempty"` // locations of aliased make(chan) ops + Sends []string `json:"sends,omitempty"` // locations of aliased ch<-x ops + Receives []string `json:"receives,omitempty"` // locations of aliased <-ch ops +} + +// A Referrers is the result of a 'referrers' query. +type Referrers struct { + Pos string `json:"pos"` // location of the query reference + ObjPos string `json:"objpos,omitempty"` // location of the definition + Desc string `json:"desc"` // description of the denoted object + Refs []string `json:"refs,omitempty"` // locations of all references +} + +// A Definition is the result of a 'definition' query. +type Definition struct { + ObjPos string `json:"objpos,omitempty"` // location of the definition + Desc string `json:"desc"` // description of the denoted object +} + +type CalleesItem struct { + Name string `json:"name"` // full name of called function + Pos string `json:"pos"` // location of called function +} + +// A Callees is the result of a 'callees' query. +// +// Callees is nonempty unless the call was a dynamic call on a +// provably nil func or interface value. +type Callees struct { + Pos string `json:"pos"` // location of selected call site + Desc string `json:"desc"` // description of call site + Callees []*CalleesItem `json:"callees,omitempty"` // set of possible call targets +} + +// A Caller is one element of the slice returned by a 'callers' query. +// (Callstack also contains a similar slice.) +// +// The root of the callgraph has an unspecified "Caller" string. +type Caller struct { + Pos string `json:"pos,omitempty"` // location of the calling function + Desc string `json:"desc"` // description of call site + Caller string `json:"caller"` // full name of calling function +} + +// A CallGraph is one element of the slice returned by a 'callgraph' query. +// The index of each item in the slice is used to identify it in the +// Callers adjacency list. +// +// Multiple nodes may have the same Name due to context-sensitive +// treatment of some functions. +// +// TODO(adonovan): perhaps include edge labels (i.e. callsites). +type CallGraph struct { + Name string `json:"name"` // full name of function + Pos string `json:"pos"` // location of function + Children []int `json:"children,omitempty"` // indices of child nodes in callgraph list +} + +// A CallStack is the result of a 'callstack' query. +// It indicates an arbitrary path from the root of the callgraph to +// the query function. +// +// If the Callers slice is empty, the function was unreachable in this +// analysis scope. +type CallStack struct { + Pos string `json:"pos"` // location of the selected function + Target string `json:"target"` // the selected function + Callers []Caller `json:"callers"` // enclosing calls, innermost first. +} + +// A FreeVar is one element of the slice returned by a 'freevars' +// query. Each one identifies an expression referencing a local +// identifier defined outside the selected region. +type FreeVar struct { + Pos string `json:"pos"` // location of the identifier's definition + Kind string `json:"kind"` // one of {var,func,type,const,label} + Ref string `json:"ref"` // referring expression (e.g. "x" or "x.y.z") + Type string `json:"type"` // type of the expression +} + +// An Implements contains the result of an 'implements' query. + +// It describes the queried type, the set of named non-empty interface +// types to which it is assignable, and the set of named/*named types +// (concrete or non-empty interface) which may be assigned to it. +// +type Implements struct { + T ImplementsType `json:"type,omitempty"` // the queried type + AssignableTo []ImplementsType `json:"to,omitempty"` // types assignable to T + AssignableFrom []ImplementsType `json:"from,omitempty"` // interface types assignable from T + AssignableFromPtr []ImplementsType `json:"fromptr,omitempty"` // interface types assignable only from *T +} + +// An ImplementsType describes a single type as part of an 'implements' query. +type ImplementsType struct { + Name string `json:"name"` // full name of the type + Pos string `json:"pos"` // location of its definition + Kind string `json:"kind"` // "basic", "array", etc +} + +// A SyntaxNode is one element of a stack of enclosing syntax nodes in +// a "what" query. +type SyntaxNode struct { + Description string `json:"desc"` // description of syntax tree + Start int `json:"start"` // start offset (0-based) + End int `json:"end"` // end offset +} + +// A What is the result of the "what" query, which quickly identifies +// the selection, parsing only a single file. It is intended for use +// in low-latency GUIs. +type What struct { + Enclosing []SyntaxNode `json:"enclosing"` // enclosing nodes of syntax tree + Modes []string `json:"modes"` // query modes enabled for this selection. + SrcDir string `json:"srcdir,omitempty"` // $GOROOT src directory containing queried package + ImportPath string `json:"importpath,omitempty"` // import path of queried package +} + +// A PointsToLabel describes a pointer analysis label. +// +// A "label" is an object that may be pointed to by a pointer, map, +// channel, 'func', slice or interface. Labels include: +// - functions +// - globals +// - arrays created by literals (e.g. []byte("foo")) and conversions ([]byte(s)) +// - stack- and heap-allocated variables (including composite literals) +// - arrays allocated by append() +// - channels, maps and arrays created by make() +// - and their subelements, e.g. "alloc.y[*].z" +// +type PointsToLabel struct { + Pos string `json:"pos"` // location of syntax that allocated the object + Desc string `json:"desc"` // description of the label +} + +// A PointsTo is one element of the result of a 'pointsto' query on an +// expression. It describes a single pointer: its type and the set of +// "labels" it points to. +// +// If the pointer is of interface type, it will have one PTS entry +// describing each concrete type that it may contain. For each +// concrete type that is a pointer, the PTS entry describes the labels +// it may point to. The same is true for reflect.Values, except the +// dynamic types needn't be concrete. +// +type PointsTo struct { + Type string `json:"type"` // (concrete) type of the pointer + NamePos string `json:"namepos,omitempty"` // location of type defn, if Named + Labels []PointsToLabel `json:"labels,omitempty"` // pointed-to objects +} + +// A DescribeValue is the additional result of a 'describe' query +// if the selection indicates a value or expression. +type DescribeValue struct { + Type string `json:"type"` // type of the expression + Value string `json:"value,omitempty"` // value of the expression, if constant + ObjPos string `json:"objpos,omitempty"` // location of the definition, if an Ident +} + +type DescribeMethod struct { + Name string `json:"name"` // method name, as defined by types.Selection.String() + Pos string `json:"pos"` // location of the method's definition +} + +// A DescribeType is the additional result of a 'describe' query +// if the selection indicates a type. +type DescribeType struct { + Type string `json:"type"` // the string form of the type + NamePos string `json:"namepos,omitempty"` // location of definition of type, if named + NameDef string `json:"namedef,omitempty"` // underlying definition of type, if named + Methods []DescribeMethod `json:"methods,omitempty"` // methods of the type +} + +type DescribeMember struct { + Name string `json:"name"` // name of member + Type string `json:"type,omitempty"` // type of member (underlying, if 'type') + Value string `json:"value,omitempty"` // value of member (if 'const') + Pos string `json:"pos"` // location of definition of member + Kind string `json:"kind"` // one of {var,const,func,type} + Methods []DescribeMethod `json:"methods,omitempty"` // methods (if member is a type) +} + +// A DescribePackage is the additional result of a 'describe' if +// the selection indicates a package. +type DescribePackage struct { + Path string `json:"path"` // import path of the package + Members []*DescribeMember `json:"members,omitempty"` // accessible members of the package +} + +// A Describe is the result of a 'describe' query. +// It may contain an element describing the selected semantic entity +// in detail. +type Describe struct { + Desc string `json:"desc"` // description of the selected syntax node + Pos string `json:"pos"` // location of the selected syntax node + Detail string `json:"detail,omitempty"` // one of {package, type, value}, or "". + + // At most one of the following fields is populated: + // the one specified by 'detail'. + Package *DescribePackage `json:"package,omitempty"` + Type *DescribeType `json:"type,omitempty"` + Value *DescribeValue `json:"value,omitempty"` +} + +type PTAWarning struct { + Pos string `json:"pos"` // location associated with warning + Message string `json:"message"` // warning message +} + +// A Result is the common result of any oracle query. +// It contains a query-specific result element. +// +// TODO(adonovan): perhaps include other info such as: analysis scope, +// raw query position, stack of ast nodes, query package, etc. +type Result struct { + Mode string `json:"mode"` // mode of the query + + // Exactly one of the following fields is populated: + // the one specified by 'mode'. + Callees *Callees `json:"callees,omitempty"` + Callers []Caller `json:"callers,omitempty"` + Callgraph []CallGraph `json:"callgraph,omitempty"` + Callstack *CallStack `json:"callstack,omitempty"` + Definition *Definition `json:"definition,omitempty"` + Describe *Describe `json:"describe,omitempty"` + Freevars []*FreeVar `json:"freevars,omitempty"` + Implements *Implements `json:"implements,omitempty"` + Peers *Peers `json:"peers,omitempty"` + PointsTo []PointsTo `json:"pointsto,omitempty"` + Referrers *Referrers `json:"referrers,omitempty"` + What *What `json:"what,omitempty"` + + Warnings []PTAWarning `json:"warnings,omitempty"` // warnings from pointer analysis +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/lib/lib.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/lib/lib.go new file mode 100644 index 00000000..0603d4b4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/lib/lib.go @@ -0,0 +1,14 @@ +package lib + +type Type int + +func (Type) Method(x *int) *int { + return x +} + +func Func() { +} + +const Const = 3 + +var Var = 0 diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph-json.go new file mode 100644 index 00000000..33708fd0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph-json.go @@ -0,0 +1,54 @@ +package main + +// Tests of call-graph queries, -format=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See callgraph-json.golden for expected query results. + +func A() {} + +func B() {} + +// call is not (yet) treated context-sensitively. +func call(f func()) { + f() +} + +// nop *is* treated context-sensitively. +func nop() {} + +func call2(f func()) { + f() + f() +} + +func main() { + call(A) + call(B) + + nop() + nop() + + call2(func() { + // called twice from main.call2, + // but call2 is not context sensitive (yet). + }) + + print("builtin") + _ = string("type conversion") + call(nil) + if false { + main() + } + var nilFunc func() + nilFunc() + var i interface { + f() + } + i.f() +} + +func deadcode() { + main() +} + +// @callgraph callgraph "^" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph-json.golden new file mode 100644 index 00000000..f0d10860 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph-json.golden @@ -0,0 +1,50 @@ +-------- @callgraph callgraph -------- +{ + "mode": "callgraph", + "callgraph": [ + { + "name": "main.main", + "pos": "testdata/src/main/callgraph-json.go:24:6", + "children": [ + 1, + 2, + 3 + ] + }, + { + "name": "main.call", + "pos": "testdata/src/main/callgraph-json.go:12:6", + "children": [ + 5, + 6 + ] + }, + { + "name": "main.nop", + "pos": "testdata/src/main/callgraph-json.go:17:6" + }, + { + "name": "main.call2", + "pos": "testdata/src/main/callgraph-json.go:19:6", + "children": [ + 7 + ] + }, + { + "name": "main.init", + "pos": "-" + }, + { + "name": "main.A", + "pos": "testdata/src/main/callgraph-json.go:7:6" + }, + { + "name": "main.B", + "pos": "testdata/src/main/callgraph-json.go:9:6" + }, + { + "name": "main$1", + "pos": "testdata/src/main/callgraph-json.go:31:8" + } + ] +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph.go new file mode 100644 index 00000000..ee190df8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph.go @@ -0,0 +1,60 @@ +package main + +// Tests of call-graph queries. +// See go.tools/oracle/oracle_test.go for explanation. +// See callgraph.golden for expected query results. + +import "lib" + +func A() {} + +func B() {} + +// call is not (yet) treated context-sensitively. +func call(f func()) { + f() +} + +// nop *is* treated context-sensitively. +func nop() {} + +func call2(f func()) { + f() + f() +} + +func main() { + call(A) + call(B) + + nop() + nop() + + call2(func() { + // called twice from main.call2, + // but call2 is not context sensitive (yet). + }) + + print("builtin") + _ = string("type conversion") + call(nil) + if false { + main() + } + var nilFunc func() + nilFunc() + var i interface { + f() + } + i.f() + + lib.Func() +} + +func deadcode() { + main() +} + +// @callgraph callgraph-main "^" + +// @callgraph callgraph-complete "nopos" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph.golden new file mode 100644 index 00000000..34a94261 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph.golden @@ -0,0 +1,35 @@ +-------- @callgraph callgraph-main -------- + +Below is a call graph of package main. +The numbered nodes form a spanning tree. +Non-numbered nodes indicate back- or cross-edges to the node whose + number follows in parentheses. + +0 init +1 main +2 call +3 A +4 B +5 call2 +6 main$1 +7 nop + +-------- @callgraph callgraph-complete -------- + +Below is a call graph of the entire program. +The numbered nodes form a spanning tree. +Non-numbered nodes indicate back- or cross-edges to the node whose + number follows in parentheses. + +0 +1 main.init +2 lib.init +3 main.main +4 lib.Func +5 main.call +6 main.A +7 main.B +8 main.call2 +9 main$1 +10 main.nop + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph2.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph2.go new file mode 100644 index 00000000..5da4c880 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph2.go @@ -0,0 +1,16 @@ +package main + +// Tests of call-graph queries. +// See go.tools/oracle/oracle_test.go for explanation. +// See callgraph2.golden for expected query results. + +// (Regression test for pointer analysis: programs that use reflection +// create some cgnodes before the root of the callgraph.) +import _ "reflect" + +func f() {} +func main() { + f() +} + +// @callgraph callgraph "^" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph2.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph2.golden new file mode 100644 index 00000000..1208b565 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/callgraph2.golden @@ -0,0 +1,11 @@ +-------- @callgraph callgraph -------- + +Below is a call graph of package main. +The numbered nodes form a spanning tree. +Non-numbered nodes indicate back- or cross-edges to the node whose + number follows in parentheses. + +0 init +1 main +2 f + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls-json.go new file mode 100644 index 00000000..1c7a6c99 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls-json.go @@ -0,0 +1,16 @@ +package main + +// Tests of call-graph queries, -format=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See calls-json.golden for expected query results. + +func call(f func()) { + f() // @callees @callees-f "f" +} + +func main() { + call(func() { + // @callers callers-main.anon "^" + // @callstack callstack-main.anon "^" + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls-json.golden new file mode 100644 index 00000000..f063bc0b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls-json.golden @@ -0,0 +1,33 @@ +-------- @callees @callees-f -------- +{ + "mode": "callees", + "callees": { + "pos": "testdata/src/main/calls-json.go:8:3", + "desc": "dynamic function call", + "callees": [ + { + "name": "main$1", + "pos": "testdata/src/main/calls-json.go:12:7" + } + ] + } +}-------- @callstack callstack-main.anon -------- +{ + "mode": "callstack", + "callstack": { + "pos": "testdata/src/main/calls-json.go:12:7", + "target": "main$1", + "callers": [ + { + "pos": "testdata/src/main/calls-json.go:8:3", + "desc": "dynamic function call", + "caller": "main.call" + }, + { + "pos": "testdata/src/main/calls-json.go:12:6", + "desc": "static function call", + "caller": "main.main" + } + ] + } +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls.go new file mode 100644 index 00000000..7c54e0e9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls.go @@ -0,0 +1,100 @@ +package main + +// Tests of call-graph queries. +// See go.tools/oracle/oracle_test.go for explanation. +// See calls.golden for expected query results. + +func A(x *int) { // @pointsto pointsto-A-x "x" + // @callers callers-A "^" + // @callstack callstack-A "^" +} + +func B(x *int) { // @pointsto pointsto-B-x "x" + // @callers callers-B "^" +} + +// apply is not (yet) treated context-sensitively. +func apply(f func(x *int), x *int) { + f(x) // @callees callees-apply "f" + // @callers callers-apply "^" +} + +// store *is* treated context-sensitively, +// so the points-to sets for pc, pd are precise. +func store(ptr **int, value *int) { + *ptr = value + // @callers callers-store "^" +} + +func call(f func() *int) { + // Result points to anon function. + f() // @pointsto pointsto-result-f "f" + + // Target of call is anon function. + f() // @callees callees-main.call-f "f" + + // @callers callers-main.call "^" +} + +func main() { + var a, b int + apply(A, &a) // @callees callees-main-apply1 "app" + apply(B, &b) + + var c, d int + var pc, pd *int // @pointsto pointsto-pc "pc" + store(&pc, &c) + store(&pd, &d) + _ = pd // @pointsto pointsto-pd "pd" + + call(func() *int { + // We are called twice from main.call + // @callers callers-main.anon "^" + return &a + }) + + // Errors + _ = "no function call here" // @callees callees-err-no-call "no" + print("builtin") // @callees callees-err-builtin "builtin" + _ = string("type conversion") // @callees callees-err-conversion "str" + call(nil) // @callees callees-err-bad-selection "call\\(nil" + if false { + main() // @callees callees-err-deadcode1 "main" + } + var nilFunc func() + nilFunc() // @callees callees-err-nil-func "nilFunc" + var i interface { + f() + } + i.f() // @callees callees-err-nil-interface "i.f" + + i = new(myint) + i.f() // @callees callees-not-a-wrapper "f" +} + +type myint int + +func (myint) f() { + // @callers callers-not-a-wrapper "^" +} + +var dynamic = func() {} + +func deadcode() { + main() // @callees callees-err-deadcode2 "main" + // @callers callers-err-deadcode "^" + // @callstack callstack-err-deadcode "^" + + // Within dead code, dynamic calls have no callees. + dynamic() // @callees callees-err-deadcode3 "dynamic" +} + +// This code belongs to init. +var global = 123 // @callers callers-global "global" + +// The package initializer may be called by other packages' inits, or +// in this case, the root of the callgraph. The source-level init functions +// are in turn called by it. +func init() { + // @callstack callstack-init "^" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls.golden new file mode 100644 index 00000000..96e3b389 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/calls.golden @@ -0,0 +1,108 @@ +-------- @pointsto pointsto-A-x -------- +this *int may point to these objects: + a + b + +-------- @callstack callstack-A -------- +Found a call path from root to main.A +main.A +dynamic function call from main.apply +static function call from main.main + +-------- @pointsto pointsto-B-x -------- +this *int may point to these objects: + a + b + +-------- @callers callers-B -------- +main.B is called from these 1 sites: + dynamic function call from main.apply + +-------- @callees callees-apply -------- +this dynamic function call dispatches to: + main.A + main.B + +-------- @callers callers-apply -------- +main.apply is called from these 2 sites: + static function call from main.main + static function call from main.main + +-------- @callers callers-store -------- +main.store is called from these 2 sites: + static function call from main.main + static function call from main.main + +-------- @pointsto pointsto-result-f -------- +this func() *int may point to these objects: + main$1 + +-------- @callees callees-main.call-f -------- +this dynamic function call dispatches to: + main$1 + +-------- @callers callers-main.call -------- +main.call is called from these 2 sites: + static function call from main.main + static function call from main.main + +-------- @callees callees-main-apply1 -------- +this static function call dispatches to: + main.apply + +-------- @pointsto pointsto-pc -------- +this *int may point to these objects: + c + +-------- @pointsto pointsto-pd -------- +this *int may point to these objects: + d + +-------- @callees callees-err-no-call -------- + +Error: there is no function call here +-------- @callees callees-err-builtin -------- + +Error: this is a call to the built-in 'print' operator +-------- @callees callees-err-conversion -------- + +Error: this is a type conversion, not a function call +-------- @callees callees-err-bad-selection -------- + +Error: ambiguous selection within function call (or conversion) +-------- @callees callees-err-deadcode1 -------- + +Error: this call site is unreachable in this analysis +-------- @callees callees-err-nil-func -------- +dynamic function call on nil value + +-------- @callees callees-err-nil-interface -------- +dynamic method call on nil value + +-------- @callees callees-not-a-wrapper -------- +this dynamic method call dispatches to: + (main.myint).f + +-------- @callers callers-not-a-wrapper -------- +(main.myint).f is called from these 1 sites: + dynamic method call from main.main + +-------- @callees callees-err-deadcode2 -------- +this static function call dispatches to: + main.main + +-------- @callstack callstack-err-deadcode -------- +main.deadcode is unreachable in this analysis scope + +-------- @callees callees-err-deadcode3 -------- + +Error: this call site is unreachable in this analysis +-------- @callers callers-global -------- +main.init is called from these 1 sites: +the root of the call graph + +-------- @callstack callstack-init -------- +Found a call path from root to main.init$1 +main.init$1 +static function call from main.init + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe-json.go new file mode 100644 index 00000000..1f22d019 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe-json.go @@ -0,0 +1,29 @@ +package describe // @describe pkgdecl "describe" + +// Tests of 'describe' query, -format=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See describe-json.golden for expected query results. + +func main() { // + var s struct{ x [3]int } + p := &s.x[0] // @describe desc-val-p "p" + _ = p + + var i I = C(0) + if i == nil { + i = new(D) + } + print(i) // @describe desc-val-i "\\bi\\b" + + go main() // @describe desc-stmt "go" +} + +type I interface { + f() +} + +type C int // @describe desc-type-C "C" +type D struct{} + +func (c C) f() {} +func (d *D) f() {} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe-json.golden new file mode 100644 index 00000000..8baf837e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe-json.golden @@ -0,0 +1,107 @@ +-------- @describe pkgdecl -------- +{ + "mode": "describe", + "describe": { + "desc": "definition of package \"describe\"", + "pos": "testdata/src/main/describe-json.go:1:9", + "detail": "package", + "package": { + "path": "describe", + "members": [ + { + "name": "C", + "type": "int", + "pos": "testdata/src/main/describe-json.go:25:6", + "kind": "type", + "methods": [ + { + "name": "method (C) f()", + "pos": "testdata/src/main/describe-json.go:28:12" + } + ] + }, + { + "name": "D", + "type": "struct{}", + "pos": "testdata/src/main/describe-json.go:26:6", + "kind": "type", + "methods": [ + { + "name": "method (*D) f()", + "pos": "testdata/src/main/describe-json.go:29:13" + } + ] + }, + { + "name": "I", + "type": "interface{f()}", + "pos": "testdata/src/main/describe-json.go:21:6", + "kind": "type", + "methods": [ + { + "name": "method (I) f()", + "pos": "testdata/src/main/describe-json.go:22:2" + } + ] + }, + { + "name": "main", + "type": "func()", + "pos": "testdata/src/main/describe-json.go:7:6", + "kind": "func" + } + ] + } + } +}-------- @describe desc-val-p -------- +{ + "mode": "describe", + "describe": { + "desc": "identifier", + "pos": "testdata/src/main/describe-json.go:9:2", + "detail": "value", + "value": { + "type": "*int", + "objpos": "testdata/src/main/describe-json.go:9:2" + } + } +}-------- @describe desc-val-i -------- +{ + "mode": "describe", + "describe": { + "desc": "identifier", + "pos": "testdata/src/main/describe-json.go:16:8", + "detail": "value", + "value": { + "type": "I", + "objpos": "testdata/src/main/describe-json.go:12:6" + } + } +}-------- @describe desc-stmt -------- +{ + "mode": "describe", + "describe": { + "desc": "go statement", + "pos": "testdata/src/main/describe-json.go:18:2", + "detail": "unknown" + } +}-------- @describe desc-type-C -------- +{ + "mode": "describe", + "describe": { + "desc": "definition of type C (size 8, align 8)", + "pos": "testdata/src/main/describe-json.go:25:6", + "detail": "type", + "type": { + "type": "C", + "namepos": "testdata/src/main/describe-json.go:25:6", + "namedef": "int", + "methods": [ + { + "name": "method (C) f()", + "pos": "testdata/src/main/describe-json.go:28:12" + } + ] + } + } +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe.go new file mode 100644 index 00000000..69e0a754 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe.go @@ -0,0 +1,87 @@ +package describe // @describe pkgdecl "describe" + +// Tests of 'describe' query. +// See go.tools/oracle/oracle_test.go for explanation. +// See describe.golden for expected query results. + +// TODO(adonovan): more coverage of the (extensive) logic. + +type cake float64 // @describe type-ref-builtin "float64" + +const c = iota // @describe const-ref-iota "iota" + +const pi = 3.141 // @describe const-def-pi "pi" +const pie = cake(pi) // @describe const-def-pie "pie" +const _ = pi // @describe const-ref-pi "pi" + +var global = new(string) // NB: ssa.Global is indirect, i.e. **string + +func main() { // @describe func-def-main "main" + // func objects + _ = main // @describe func-ref-main "main" + _ = (*C).f // @describe func-ref-*C.f "..C..f" + _ = D.f // @describe func-ref-D.f "D.f" + _ = I.f // @describe func-ref-I.f "I.f" + var d D // @describe type-D "D" + var i I // @describe type-I "I" + _ = d.f // @describe func-ref-d.f "d.f" + _ = i.f // @describe func-ref-i.f "i.f" + + // var objects + anon := func() { + _ = d // @describe ref-lexical-d "d" + } + _ = anon // @describe ref-anon "anon" + _ = global // @describe ref-global "global" + + // SSA affords some local flow sensitivity. + var a, b int + var x = &a // @describe var-def-x-1 "x" + _ = x // @describe var-ref-x-1 "x" + x = &b // @describe var-def-x-2 "x" + _ = x // @describe var-ref-x-2 "x" + + i = new(C) // @describe var-ref-i-C "i" + if i != nil { + i = D{} // @describe var-ref-i-D "i" + } + print(i) // @describe var-ref-i "\\bi\\b" + + // const objects + const localpi = 3.141 // @describe const-local-pi "localpi" + const localpie = cake(pi) // @describe const-local-pie "localpie" + const _ = localpi // @describe const-ref-localpi "localpi" + + // type objects + type T int // @describe type-def-T "T" + var three T = 3 // @describe type-ref-T "T" + _ = three + + print(1 + 2*3) // @describe const-expr " 2.3" + print(real(1+2i) - 3) // @describe const-expr2 "real.*3" + + m := map[string]*int{"a": &a} + mapval, _ := m["a"] // @describe map-lookup,ok "m..a.." + _ = mapval // @describe mapval "mapval" + _ = m // @describe m "m" + + defer main() // @describe defer-stmt "defer" + go main() // @describe go-stmt "go" + + panic(3) // @describe builtin-ref-panic "panic" + + var a2 int // @describe var-decl-stmt "var a2 int" + _ = a2 + var _ int // @describe var-decl-stmt2 "var _ int" + var _ int // @describe var-def-blank "_" +} + +type I interface { // @describe def-iface-I "I" + f() // @describe def-imethod-I.f "f" +} + +type C int +type D struct{} + +func (c *C) f() {} +func (d D) f() {} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe.golden new file mode 100644 index 00000000..3f305d47 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/describe.golden @@ -0,0 +1,173 @@ +-------- @describe pkgdecl -------- +definition of package "describe" + type C int + method (*C) f() + type D struct{} + method (D) f() + type I interface{f()} + method (I) f() + const c untyped int = 0 + type cake float64 + var global *string + func main func() + const pi untyped float = 3141/1000 + const pie cake = 1768225803696341/562949953421312 + +-------- @describe type-ref-builtin -------- +reference to built-in type float64 + +-------- @describe const-ref-iota -------- +reference to const iota untyped int of constant value 0 + +-------- @describe const-def-pi -------- +definition of const pi untyped float + +-------- @describe const-def-pie -------- +definition of const pie cake + +-------- @describe const-ref-pi -------- +reference to const pi untyped float of constant value 3141/1000 +defined here + +-------- @describe func-def-main -------- +definition of func main() + +-------- @describe func-ref-main -------- +reference to func main() +defined here + +-------- @describe func-ref-*C.f -------- +reference to method func (*C).f() +defined here + +-------- @describe func-ref-D.f -------- +reference to method func (D).f() +defined here + +-------- @describe func-ref-I.f -------- +reference to interface method func (I).f() +defined here + +-------- @describe type-D -------- +reference to type D (size 0, align 1) +defined as struct{} +Method set: + method (D) f() + +-------- @describe type-I -------- +reference to type I (size 16, align 8) +defined as interface{f()} +Method set: + method (I) f() + +-------- @describe func-ref-d.f -------- +reference to method func (D).f() +defined here + +-------- @describe func-ref-i.f -------- +reference to interface method func (I).f() +defined here + +-------- @describe ref-lexical-d -------- +reference to var d D +defined here + +-------- @describe ref-anon -------- +reference to var anon func() +defined here + +-------- @describe ref-global -------- +reference to var global *string +defined here + +-------- @describe var-def-x-1 -------- +definition of var x *int + +-------- @describe var-ref-x-1 -------- +reference to var x *int +defined here + +-------- @describe var-def-x-2 -------- +reference to var x *int +defined here + +-------- @describe var-ref-x-2 -------- +reference to var x *int +defined here + +-------- @describe var-ref-i-C -------- +reference to var i I +defined here + +-------- @describe var-ref-i-D -------- +reference to var i I +defined here + +-------- @describe var-ref-i -------- +reference to var i I +defined here + +-------- @describe const-local-pi -------- +definition of const localpi untyped float + +-------- @describe const-local-pie -------- +definition of const localpie cake + +-------- @describe const-ref-localpi -------- +reference to const localpi untyped float of constant value 3141/1000 +defined here + +-------- @describe type-def-T -------- +definition of type T (size 8, align 8) +No methods. + +-------- @describe type-ref-T -------- +reference to type T (size 8, align 8) +defined as int +No methods. + +-------- @describe const-expr -------- +binary * operation of constant value 6 + +-------- @describe const-expr2 -------- +binary - operation of constant value -2 + +-------- @describe map-lookup,ok -------- +index expression of type (*int, bool) + +-------- @describe mapval -------- +reference to var mapval *int +defined here + +-------- @describe m -------- +reference to var m map[string]*int +defined here + +-------- @describe defer-stmt -------- +defer statement + +-------- @describe go-stmt -------- +go statement + +-------- @describe builtin-ref-panic -------- +function call (or conversion) of type () + +-------- @describe var-decl-stmt -------- +definition of var a2 int + +-------- @describe var-decl-stmt2 -------- +definition of var _ int + +-------- @describe var-def-blank -------- +definition of var _ int + +-------- @describe def-iface-I -------- +definition of type I (size 16, align 8) +Method set: + method (I) f() + +-------- @describe def-imethod-I.f -------- +type interface{f()} +Method set: + method (interface{f()}) f() + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/freevars.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/freevars.go new file mode 100644 index 00000000..1ce0ae6b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/freevars.go @@ -0,0 +1,41 @@ +package main + +// Tests of 'freevars' query. +// See go.tools/oracle/oracle_test.go for explanation. +// See freevars.golden for expected query results. + +// TODO(adonovan): it's hard to test this query in a single line of gofmt'd code. + +type T struct { + a, b int +} + +type S struct { + x int + t T +} + +func f(int) {} + +func main() { + type C int + x := 1 + const exp = 6 + if y := 2; x+y+int(C(3)) != exp { // @freevars fv1 "if.*{" + panic("expected 6") + } + + var s S + + for x, y := range "foo" { + println(s.x + s.t.a + s.t.b + x + int(y)) // @freevars fv2 "print.*y." + } + + f(x) // @freevars fv3 "f.x." + + // TODO(adonovan): enable when go/types supports labels. +loop: // #@freevars fv-def-label "loop:" + for { + break loop // #@freevars fv-ref-label "break loop" + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/freevars.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/freevars.golden new file mode 100644 index 00000000..b9eeab21 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/freevars.golden @@ -0,0 +1,18 @@ +-------- @freevars fv1 -------- +Free identifiers: +type C +const exp int +var x int + +-------- @freevars fv2 -------- +Free identifiers: +var s.t.a int +var s.t.b int +var s.x int +var x int +var y rune + +-------- @freevars fv3 -------- +Free identifiers: +var x int + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements-json.go new file mode 100644 index 00000000..d5f8102b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements-json.go @@ -0,0 +1,27 @@ +package main + +// Tests of 'implements' query, -output=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See implements.golden for expected query results. + +func main() { +} + +type E interface{} // @implements E "E" + +type F interface { // @implements F "F" + f() +} + +type FG interface { // @implements FG "FG" + f() + g() []int // @implements slice "..int" +} + +type C int // @implements C "C" +type D struct{} + +func (c *C) f() {} // @implements starC ".C" +func (d D) f() {} // @implements D "D" + +func (d *D) g() []int { return nil } // @implements starD ".D" diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements-json.golden new file mode 100644 index 00000000..d43969b9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements-json.golden @@ -0,0 +1,152 @@ +-------- @implements E -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "main.E", + "pos": "testdata/src/main/implements-json.go:10:6", + "kind": "interface" + } + } +}-------- @implements F -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "main.F", + "pos": "testdata/src/main/implements-json.go:12:6", + "kind": "interface" + }, + "to": [ + { + "name": "*main.C", + "pos": "testdata/src/main/implements-json.go:21:6", + "kind": "pointer" + }, + { + "name": "main.D", + "pos": "testdata/src/main/implements-json.go:22:6", + "kind": "struct" + }, + { + "name": "main.FG", + "pos": "testdata/src/main/implements-json.go:16:6", + "kind": "interface" + } + ] + } +}-------- @implements FG -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "main.FG", + "pos": "testdata/src/main/implements-json.go:16:6", + "kind": "interface" + }, + "to": [ + { + "name": "*main.D", + "pos": "testdata/src/main/implements-json.go:22:6", + "kind": "pointer" + } + ], + "from": [ + { + "name": "main.F", + "pos": "testdata/src/main/implements-json.go:12:6", + "kind": "interface" + } + ] + } +}-------- @implements slice -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "[]int", + "pos": "-", + "kind": "slice" + } + } +}-------- @implements C -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "main.C", + "pos": "testdata/src/main/implements-json.go:21:6", + "kind": "basic" + }, + "fromptr": [ + { + "name": "main.F", + "pos": "testdata/src/main/implements-json.go:12:6", + "kind": "interface" + } + ] + } +}-------- @implements starC -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "*main.C", + "pos": "testdata/src/main/implements-json.go:21:6", + "kind": "pointer" + }, + "from": [ + { + "name": "main.F", + "pos": "testdata/src/main/implements-json.go:12:6", + "kind": "interface" + } + ] + } +}-------- @implements D -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "main.D", + "pos": "testdata/src/main/implements-json.go:22:6", + "kind": "struct" + }, + "from": [ + { + "name": "main.F", + "pos": "testdata/src/main/implements-json.go:12:6", + "kind": "interface" + } + ], + "fromptr": [ + { + "name": "main.FG", + "pos": "testdata/src/main/implements-json.go:16:6", + "kind": "interface" + } + ] + } +}-------- @implements starD -------- +{ + "mode": "implements", + "implements": { + "type": { + "name": "*main.D", + "pos": "testdata/src/main/implements-json.go:22:6", + "kind": "pointer" + }, + "from": [ + { + "name": "main.F", + "pos": "testdata/src/main/implements-json.go:12:6", + "kind": "interface" + }, + { + "name": "main.FG", + "pos": "testdata/src/main/implements-json.go:16:6", + "kind": "interface" + } + ] + } +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements.go new file mode 100644 index 00000000..0b5ee120 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements.go @@ -0,0 +1,40 @@ +package main + +// Tests of 'implements' query. +// See go.tools/oracle/oracle_test.go for explanation. +// See implements.golden for expected query results. + +import _ "lib" +import _ "sort" + +func main() { +} + +type E interface{} // @implements E "E" + +type F interface { // @implements F "F" + f() +} + +type FG interface { // @implements FG "FG" + f() + g() []int // @implements slice "..int" +} + +type C int // @implements C "C" +type D struct{} + +func (c *C) f() {} // @implements starC ".C" +func (d D) f() {} // @implements D "D" + +func (d *D) g() []int { return nil } // @implements starD ".D" + +type sorter []int // @implements sorter "sorter" + +func (sorter) Len() int { return 0 } +func (sorter) Less(i, j int) bool { return false } +func (sorter) Swap(i, j int) {} + +type I interface { // @implements I "I" + Method(*int) *int +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements.golden new file mode 100644 index 00000000..01d41f6a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/implements.golden @@ -0,0 +1,44 @@ +-------- @implements E -------- +empty interface type main.E + +-------- @implements F -------- +interface type main.F + is implemented by pointer type *main.C + is implemented by struct type main.D + is implemented by interface type main.FG + +-------- @implements FG -------- +interface type main.FG + is implemented by pointer type *main.D + implements main.F + +-------- @implements slice -------- +slice type []int implements only interface{} + +-------- @implements C -------- +pointer type *main.C + implements main.F + +-------- @implements starC -------- +pointer type *main.C + implements main.F + +-------- @implements D -------- +struct type main.D + implements main.F +pointer type *main.D + implements main.FG + +-------- @implements starD -------- +pointer type *main.D + implements main.F + implements main.FG + +-------- @implements sorter -------- +slice type main.sorter + implements sort.Interface + +-------- @implements I -------- +interface type main.I + is implemented by basic type lib.Type + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/imports.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/imports.go new file mode 100644 index 00000000..2f5ffa43 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/imports.go @@ -0,0 +1,29 @@ +package imports + +import ( + "hash/fnv" // @describe ref-pkg-import2 "fnv" + "lib" // @describe ref-pkg-import "lib" +) + +// Tests that import another package. (To make the tests run quickly, +// we avoid using imports in all the other tests. Remember, each +// query causes parsing and typechecking of the whole program.) +// +// See go.tools/oracle/oracle_test.go for explanation. +// See imports.golden for expected query results. + +var a int + +func main() { + const c = lib.Const // @describe ref-const "Const" + lib.Func() // @describe ref-func "Func" + lib.Var++ // @describe ref-var "Var" + var t lib.Type // @describe ref-type "Type" + p := t.Method(&a) // @describe ref-method "Method" + + print(*p + 1) // @pointsto p "p " + + var _ lib.Type // @describe ref-pkg "lib" + + fnv.New32() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/imports.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/imports.golden new file mode 100644 index 00000000..788a3ad9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/imports.golden @@ -0,0 +1,49 @@ +-------- @describe ref-pkg-import2 -------- +import of package "hash/fnv" + func New32 func() hash.Hash32 + func New32a func() hash.Hash32 + func New64 func() hash.Hash64 + func New64a func() hash.Hash64 + +-------- @describe ref-pkg-import -------- +import of package "lib" + const Const untyped int = 3 + func Func func() + type Type int + method (Type) Method(x *int) *int + var Var int + +-------- @describe ref-const -------- +reference to const lib.Const untyped int +defined here + +-------- @describe ref-func -------- +reference to func lib.Func() +defined here + +-------- @describe ref-var -------- +reference to var lib.Var int +defined here + +-------- @describe ref-type -------- +reference to type lib.Type (size 8, align 8) +defined as int +Method set: + method (lib.Type) Method(x *int) *int + +-------- @describe ref-method -------- +reference to method func (lib.Type).Method(x *int) *int +defined here + +-------- @pointsto p -------- +this *int may point to these objects: + imports.a + +-------- @describe ref-pkg -------- +reference to package "lib" + const Const untyped int = 3 + func Func func() + type Type int + method (Type) Method(x *int) *int + var Var int + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/multi.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/multi.go new file mode 100644 index 00000000..54caf15d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/multi.go @@ -0,0 +1,13 @@ +package multi + +func g(x int) { +} + +func f() { + x := 1 + g(x) // "g(x)" is the selection for multiple queries +} + +func main() { + f() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers-json.go new file mode 100644 index 00000000..1f5beb20 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers-json.go @@ -0,0 +1,13 @@ +package peers + +// Tests of channel 'peers' query, -format=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See peers-json.golden for expected query results. + +func main() { + chA := make(chan *int) + <-chA + select { + case <-chA: // @peers peer-recv-chA "<-" + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers-json.golden new file mode 100644 index 00000000..80eb3c43 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers-json.golden @@ -0,0 +1,15 @@ +-------- @peers peer-recv-chA -------- +{ + "mode": "peers", + "peers": { + "pos": "testdata/src/main/peers-json.go:11:7", + "type": "chan *int", + "allocs": [ + "testdata/src/main/peers-json.go:8:13" + ], + "receives": [ + "testdata/src/main/peers-json.go:9:2", + "testdata/src/main/peers-json.go:11:7" + ] + } +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers.go new file mode 100644 index 00000000..65ec9076 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers.go @@ -0,0 +1,40 @@ +package peers + +// Tests of channel 'peers' query. +// See go.tools/oracle/oracle_test.go for explanation. +// See peers.golden for expected query results. + +var a2 int + +func main() { + chA := make(chan *int) + a1 := 1 + chA <- &a1 + + chA2 := make(chan *int, 2) + if a2 == 0 { + chA = chA2 + } + + chB := make(chan *int) + b := 3 + chB <- &b + + <-chA // @pointsto pointsto-chA "chA" + <-chA2 // @pointsto pointsto-chA2 "chA2" + <-chB // @pointsto pointsto-chB "chB" + + select { + case rA := <-chA: // @peers peer-recv-chA "<-" + _ = rA // @pointsto pointsto-rA "rA" + case rB := <-chB: // @peers peer-recv-chB "<-" + _ = rB // @pointsto pointsto-rB "rB" + + case <-chA: // @peers peer-recv-chA' "<-" + + case chA2 <- &a2: // @peers peer-send-chA' "<-" + } + + for _ = range chA { + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers.golden new file mode 100644 index 00000000..e6b8a65e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/peers.golden @@ -0,0 +1,63 @@ +-------- @pointsto pointsto-chA -------- +this chan *int may point to these objects: + makechan + makechan + +-------- @pointsto pointsto-chA2 -------- +this chan *int may point to these objects: + makechan + +-------- @pointsto pointsto-chB -------- +this chan *int may point to these objects: + makechan + +-------- @peers peer-recv-chA -------- +This channel of type chan *int may be: + allocated here + allocated here + sent to, here + sent to, here + received from, here + received from, here + received from, here + received from, here + received from, here + +-------- @pointsto pointsto-rA -------- +this *int may point to these objects: + peers.a2 + a1 + +-------- @peers peer-recv-chB -------- +This channel of type chan *int may be: + allocated here + sent to, here + received from, here + received from, here + +-------- @pointsto pointsto-rB -------- +this *int may point to these objects: + b + +-------- @peers peer-recv-chA' -------- +This channel of type chan *int may be: + allocated here + allocated here + sent to, here + sent to, here + received from, here + received from, here + received from, here + received from, here + received from, here + +-------- @peers peer-send-chA' -------- +This channel of type chan *int may be: + allocated here + sent to, here + received from, here + received from, here + received from, here + received from, here + received from, here + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto-json.go new file mode 100644 index 00000000..79d7d3dc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto-json.go @@ -0,0 +1,27 @@ +package pointsto + +// Tests of 'pointsto' queries, -format=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See pointsto-json.golden for expected query results. + +func main() { // + var s struct{ x [3]int } + p := &s.x[0] // @pointsto val-p "p" + _ = p + + var i I = C(0) + if i == nil { + i = new(D) + } + print(i) // @pointsto val-i "\\bi\\b" +} + +type I interface { + f() +} + +type C int +type D struct{} + +func (c C) f() {} +func (d *D) f() {} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto-json.golden new file mode 100644 index 00000000..b3f85116 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto-json.golden @@ -0,0 +1,34 @@ +-------- @pointsto val-p -------- +{ + "mode": "pointsto", + "pointsto": [ + { + "type": "*int", + "labels": [ + { + "pos": "testdata/src/main/pointsto-json.go:8:6", + "desc": "s.x[*]" + } + ] + } + ] +}-------- @pointsto val-i -------- +{ + "mode": "pointsto", + "pointsto": [ + { + "type": "*D", + "namepos": "testdata/src/main/pointsto-json.go:24:6", + "labels": [ + { + "pos": "testdata/src/main/pointsto-json.go:14:10", + "desc": "new" + } + ] + }, + { + "type": "C", + "namepos": "testdata/src/main/pointsto-json.go:23:6" + } + ] +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto.go new file mode 100644 index 00000000..796ec942 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto.go @@ -0,0 +1,68 @@ +package pointsto + +// Tests of 'pointsto' query. +// See go.tools/oracle/oracle_test.go for explanation. +// See pointsto.golden for expected query results. + +const pi = 3.141 // @pointsto const "pi" + +var global = new(string) // NB: ssa.Global is indirect, i.e. **string + +func main() { + livecode() + + // func objects + _ = main // @pointsto func-ref-main "main" + _ = (*C).f // @pointsto func-ref-*C.f "..C..f" + _ = D.f // @pointsto func-ref-D.f "D.f" + _ = I.f // @pointsto func-ref-I.f "I.f" + var d D + var i I + _ = d.f // @pointsto func-ref-d.f "d.f" + _ = i.f // @pointsto func-ref-i.f "i.f" + + // var objects + anon := func() { + _ = d.f // @pointsto ref-lexical-d.f "d.f" + } + _ = anon // @pointsto ref-anon "anon" + _ = global // @pointsto ref-global "global" + + // SSA affords some local flow sensitivity. + var a, b int + var x = &a // @pointsto var-def-x-1 "x" + _ = x // @pointsto var-ref-x-1 "x" + x = &b // @pointsto var-def-x-2 "x" + _ = x // @pointsto var-ref-x-2 "x" + + i = new(C) // @pointsto var-ref-i-C "i" + if i != nil { + i = D{} // @pointsto var-ref-i-D "i" + } + print(i) // @pointsto var-ref-i "\\bi\\b" + + m := map[string]*int{"a": &a} + mapval, _ := m["a"] // @pointsto map-lookup,ok "m..a.." + _ = mapval // @pointsto mapval "mapval" + _ = m // @pointsto m "m" + + panic(3) // @pointsto builtin-panic "panic" +} + +func livecode() {} // @pointsto func-live "livecode" + +func deadcode() { // @pointsto func-dead "deadcode" + // Pointer analysis can't run on dead code. + var b = new(int) // @pointsto b "b" + _ = b +} + +type I interface { + f() +} + +type C int +type D struct{} + +func (c *C) f() {} +func (d D) f() {} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto.golden new file mode 100644 index 00000000..a4f9a5c2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/pointsto.golden @@ -0,0 +1,93 @@ +-------- @pointsto const -------- + +Error: pointer analysis wants an expression of reference type; got untyped float +-------- @pointsto func-ref-main -------- +this func() may point to these objects: + pointsto.main + +-------- @pointsto func-ref-*C.f -------- +this func() may point to these objects: + (*pointsto.C).f + +-------- @pointsto func-ref-D.f -------- +this func() may point to these objects: + (pointsto.D).f + +-------- @pointsto func-ref-I.f -------- +this func() may point to these objects: + (pointsto.I).f + +-------- @pointsto func-ref-d.f -------- +this func() may point to these objects: + (pointsto.D).f + +-------- @pointsto func-ref-i.f -------- +this func() may point to these objects: + (pointsto.I).f + +-------- @pointsto ref-lexical-d.f -------- +this func() may point to these objects: + (pointsto.D).f + +-------- @pointsto ref-anon -------- +this func() may point to these objects: + main$1 + +-------- @pointsto ref-global -------- +this *string may point to these objects: + new + +-------- @pointsto var-def-x-1 -------- +this *int may point to these objects: + a + +-------- @pointsto var-ref-x-1 -------- +this *int may point to these objects: + a + +-------- @pointsto var-def-x-2 -------- +this *int may point to these objects: + b + +-------- @pointsto var-ref-x-2 -------- +this *int may point to these objects: + b + +-------- @pointsto var-ref-i-C -------- +this I may contain these dynamic types: + *C, may point to: + new + +-------- @pointsto var-ref-i-D -------- +this I may contain these dynamic types: + D + +-------- @pointsto var-ref-i -------- +this I may contain these dynamic types: + *C, may point to: + new + D + +-------- @pointsto map-lookup,ok -------- + +Error: pointer analysis wants an expression of reference type; got (*int, bool) +-------- @pointsto mapval -------- +this *int may point to these objects: + a + +-------- @pointsto m -------- +this map[string]*int may point to these objects: + makemap + +-------- @pointsto builtin-panic -------- + +Error: pointer analysis wants an expression of reference type; got () +-------- @pointsto func-live -------- + +Error: pointer analysis did not find expression (dead code?) +-------- @pointsto func-dead -------- + +Error: pointer analysis did not find expression (dead code?) +-------- @pointsto b -------- + +Error: pointer analysis did not find expression (dead code?) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/referrers-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/referrers-json.go new file mode 100644 index 00000000..4799e53c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/referrers-json.go @@ -0,0 +1,24 @@ +package referrers + +// Tests of 'referrers' query. +// See go.tools/oracle/oracle_test.go for explanation. +// See referrers.golden for expected query results. + +import "lib" + +type s struct { + f int +} + +func main() { + var v lib.Type = lib.Const // @referrers ref-package "lib" + _ = v.Method // @referrers ref-method "Method" + _ = v.Method + v++ //@referrers ref-local "v" + v++ + + _ = s{}.f // @referrers ref-field "f" + + var s2 s + s2.f = 1 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/referrers-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/referrers-json.golden new file mode 100644 index 00000000..ad7ec1d3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/referrers-json.golden @@ -0,0 +1,51 @@ +-------- @referrers ref-package -------- +{ + "mode": "referrers", + "referrers": { + "pos": "testdata/src/main/referrers-json.go:14:8", + "objpos": "testdata/src/main/referrers-json.go:7:8", + "desc": "package lib", + "refs": [ + "testdata/src/main/referrers-json.go:14:8", + "testdata/src/main/referrers-json.go:14:19" + ] + } +}-------- @referrers ref-method -------- +{ + "mode": "referrers", + "referrers": { + "pos": "testdata/src/main/referrers-json.go:15:8", + "objpos": "testdata/src/lib/lib.go:5:13", + "desc": "func (lib.Type).Method(x *int) *int", + "refs": [ + "testdata/src/main/referrers-json.go:15:8", + "testdata/src/main/referrers-json.go:16:8" + ] + } +}-------- @referrers ref-local -------- +{ + "mode": "referrers", + "referrers": { + "pos": "testdata/src/main/referrers-json.go:17:2", + "objpos": "testdata/src/main/referrers-json.go:14:6", + "desc": "var v lib.Type", + "refs": [ + "testdata/src/main/referrers-json.go:15:6", + "testdata/src/main/referrers-json.go:16:6", + "testdata/src/main/referrers-json.go:17:2", + "testdata/src/main/referrers-json.go:18:2" + ] + } +}-------- @referrers ref-field -------- +{ + "mode": "referrers", + "referrers": { + "pos": "testdata/src/main/referrers-json.go:20:10", + "objpos": "testdata/src/main/referrers-json.go:10:2", + "desc": "field f int", + "refs": [ + "testdata/src/main/referrers-json.go:20:10", + "testdata/src/main/referrers-json.go:23:5" + ] + } +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/reflection.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/reflection.go new file mode 100644 index 00000000..b10df0b2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/reflection.go @@ -0,0 +1,30 @@ +package reflection + +// This is a test of 'pointsto', but we split it into a separate file +// so that pointsto.go doesn't have to import "reflect" each time. + +import "reflect" + +var a int +var b bool + +func main() { + m := make(map[*int]*bool) + m[&a] = &b + + mrv := reflect.ValueOf(m) + if a > 0 { + mrv = reflect.ValueOf(&b) + } + if a > 0 { + mrv = reflect.ValueOf(&a) + } + + _ = mrv // @pointsto mrv "mrv" + p1 := mrv.Interface() // @pointsto p1 "p1" + p2 := mrv.MapKeys() // @pointsto p2 "p2" + p3 := p2[0] // @pointsto p3 "p3" + p4 := reflect.TypeOf(p1) // @pointsto p4 "p4" + + _, _, _, _ = p1, p2, p3, p4 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/reflection.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/reflection.golden new file mode 100644 index 00000000..4782132b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/reflection.golden @@ -0,0 +1,34 @@ +-------- @pointsto mrv -------- +this reflect.Value may contain these dynamic types: + *bool, may point to: + reflection.b + *int, may point to: + reflection.a + map[*int]*bool, may point to: + makemap + +-------- @pointsto p1 -------- +this interface{} may contain these dynamic types: + *bool, may point to: + reflection.b + *int, may point to: + reflection.a + map[*int]*bool, may point to: + makemap + +-------- @pointsto p2 -------- +this []reflect.Value may point to these objects: + + +-------- @pointsto p3 -------- +this reflect.Value may contain these dynamic types: + *int, may point to: + reflection.a + +-------- @pointsto p4 -------- +this reflect.Type may contain these dynamic types: + *reflect.rtype, may point to: + *bool + *int + map[*int]*bool + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what-json.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what-json.go new file mode 100644 index 00000000..d07a6c90 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what-json.go @@ -0,0 +1,9 @@ +package what + +// Tests of 'what' queries, -format=json. +// See go.tools/oracle/oracle_test.go for explanation. +// See what-json.golden for expected query results. + +func main() { + f() // @what call "f" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what-json.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what-json.golden new file mode 100644 index 00000000..13860dde --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what-json.golden @@ -0,0 +1,52 @@ +-------- @what call -------- +{ + "mode": "what", + "what": { + "enclosing": [ + { + "desc": "identifier", + "start": 179, + "end": 180 + }, + { + "desc": "function call (or conversion)", + "start": 179, + "end": 182 + }, + { + "desc": "expression statement", + "start": 179, + "end": 182 + }, + { + "desc": "block", + "start": 176, + "end": 202 + }, + { + "desc": "function declaration", + "start": 164, + "end": 202 + }, + { + "desc": "source file", + "start": 0, + "end": 202 + } + ], + "modes": [ + "callees", + "callers", + "callgraph", + "callstack", + "definition", + "describe", + "freevars", + "implements", + "pointsto", + "referrers" + ], + "srcdir": "testdata/src", + "importpath": "main" + } +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what.go new file mode 100644 index 00000000..041e9215 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what.go @@ -0,0 +1,11 @@ +package what // @what pkgdecl "what" + +// Tests of 'what' queries. +// See go.tools/oracle/oracle_test.go for explanation. +// See what.golden for expected query results. + +func main() { + f() // @what call "f" + var ch chan int // @what var "var" + <-ch // @what recv "ch" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what.golden new file mode 100644 index 00000000..3f832912 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/testdata/src/main/what.golden @@ -0,0 +1,39 @@ +-------- @what pkgdecl -------- +identifier +source file +modes: [callgraph definition describe freevars implements pointsto referrers] +srcdir: testdata/src +import path: main + +-------- @what call -------- +identifier +function call (or conversion) +expression statement +block +function declaration +source file +modes: [callees callers callgraph callstack definition describe freevars implements pointsto referrers] +srcdir: testdata/src +import path: main + +-------- @what var -------- +variable declaration +variable declaration statement +block +function declaration +source file +modes: [callers callgraph callstack describe freevars pointsto] +srcdir: testdata/src +import path: main + +-------- @what recv -------- +identifier +unary <- operation +expression statement +block +function declaration +source file +modes: [callers callgraph callstack definition describe freevars implements peers pointsto referrers] +srcdir: testdata/src +import path: main + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/what.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/what.go new file mode 100644 index 00000000..108bef20 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/oracle/what.go @@ -0,0 +1,216 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package oracle + +import ( + "fmt" + "go/ast" + "go/build" + "go/token" + "os" + "path/filepath" + "sort" + "strings" + + "code.google.com/p/go.tools/astutil" + "code.google.com/p/go.tools/oracle/serial" +) + +// what reports all the information about the query selection that can be +// obtained from parsing only its containing source file. +// It is intended to be a very low-latency query callable from GUI +// tools, e.g. to populate a menu of options of slower queries about +// the selected location. +// +func what(posFlag string, buildContext *build.Context) (*Result, error) { + qpos, err := fastQueryPos(posFlag) + if err != nil { + return nil, err + } + + // (ignore errors) + srcdir, importPath, _ := guessImportPath(qpos.fset.File(qpos.start).Name(), buildContext) + + // Determine which query modes are applicable to the selection. + // TODO(adonovan): refactor: make each minfo have an 'enable' + // predicate over qpos. + enable := map[string]bool{ + "callgraph": true, // whole program; always enabled + "describe": true, // any syntax; always enabled + } + + if qpos.end > qpos.start { + enable["freevars"] = true // nonempty selection? + } + + for _, n := range qpos.path { + switch n := n.(type) { + case *ast.Ident: + enable["definition"] = true + enable["referrers"] = true + enable["implements"] = true + case *ast.CallExpr: + enable["callees"] = true + case *ast.FuncDecl: + enable["callers"] = true + enable["callstack"] = true + case *ast.SendStmt: + enable["peers"] = true + case *ast.UnaryExpr: + if n.Op == token.ARROW { + enable["peers"] = true + } + } + + // For implements, we approximate findInterestingNode. + if _, ok := enable["implements"]; !ok { + switch n.(type) { + case *ast.ArrayType, + *ast.StructType, + *ast.FuncType, + *ast.InterfaceType, + *ast.MapType, + *ast.ChanType: + enable["implements"] = true + } + } + + // For pointsto, we approximate findInterestingNode. + if _, ok := enable["pointsto"]; !ok { + switch n.(type) { + case ast.Stmt, + *ast.ArrayType, + *ast.StructType, + *ast.FuncType, + *ast.InterfaceType, + *ast.MapType, + *ast.ChanType: + enable["pointsto"] = false // not an expr + + case ast.Expr, ast.Decl, *ast.ValueSpec: + enable["pointsto"] = true // an expr, maybe + + default: + // Comment, Field, KeyValueExpr, etc: ascend. + } + } + } + + // If we don't have an exact selection, disable modes that need one. + if !qpos.exact { + for _, minfo := range modes { + if minfo.needs&needExactPos != 0 { + enable[minfo.name] = false + } + } + } + + var modes []string + for mode := range enable { + modes = append(modes, mode) + } + sort.Strings(modes) + + return &Result{ + mode: "what", + fset: qpos.fset, + q: &whatResult{ + path: qpos.path, + srcdir: srcdir, + importPath: importPath, + modes: modes, + }, + }, nil + +} + +// guessImportPath finds the package containing filename, and returns +// its source directory (an element of $GOPATH) and its import path +// relative to it. +// +// TODO(adonovan): what about _test.go files that are not part of the +// package? +// +func guessImportPath(filename string, buildContext *build.Context) (srcdir, importPath string, err error) { + absFile, err := filepath.Abs(filename) + if err != nil { + err = fmt.Errorf("can't form absolute path of %s", filename) + return + } + absFileDir := segments(filepath.Dir(absFile)) + + // Find the innermost directory in $GOPATH that encloses filename. + minD := 1024 + for _, gopathDir := range buildContext.SrcDirs() { + absDir, err := filepath.Abs(gopathDir) + if err != nil { + continue // e.g. non-existent dir on $GOPATH + } + d := prefixLen(segments(absDir), absFileDir) + // If there are multiple matches, + // prefer the innermost enclosing directory + // (smallest d). + if d >= 0 && d < minD { + minD = d + srcdir = gopathDir + importPath = strings.Join(absFileDir[len(absFileDir)-minD:], string(os.PathSeparator)) + } + } + if srcdir == "" { + err = fmt.Errorf("can't find package for file %s", filename) + } + return +} + +func segments(path string) []string { + return strings.Split(path, string(os.PathSeparator)) +} + +// prefixLen returns the length of the remainder of y if x is a prefix +// of y, a negative number otherwise. +func prefixLen(x, y []string) int { + d := len(y) - len(x) + if d >= 0 { + for i := range x { + if y[i] != x[i] { + return -1 // not a prefix + } + } + } + return d +} + +type whatResult struct { + path []ast.Node + modes []string + srcdir string + importPath string +} + +func (r *whatResult) display(printf printfFunc) { + for _, n := range r.path { + printf(n, "%s", astutil.NodeDescription(n)) + } + printf(nil, "modes: %s", r.modes) + printf(nil, "srcdir: %s", r.srcdir) + printf(nil, "import path: %s", r.importPath) +} + +func (r *whatResult) toSerial(res *serial.Result, fset *token.FileSet) { + var enclosing []serial.SyntaxNode + for _, n := range r.path { + enclosing = append(enclosing, serial.SyntaxNode{ + Description: astutil.NodeDescription(n), + Start: fset.Position(n.Pos()).Offset, + End: fset.Position(n.End()).Offset, + }) + } + res.What = &serial.What{ + Modes: r.modes, + SrcDir: r.srcdir, + ImportPath: r.importPath, + Enclosing: enclosing, + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/appengine.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/appengine.go new file mode 100644 index 00000000..073b419d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/appengine.go @@ -0,0 +1,22 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +package playground + +import ( + "net/http" + + "appengine" + "appengine/urlfetch" +) + +func client(r *http.Request) *http.Client { + return urlfetch.Client(appengine.NewContext(r)) +} + +func report(r *http.Request, err error) { + appengine.NewContext(r).Errorf("%v", err) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/common.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/common.go new file mode 100644 index 00000000..05513629 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/common.go @@ -0,0 +1,46 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package playground registers HTTP handlers at "/compile" and "/share" that +// proxy requests to the golang.org playground service. +// This package may be used unaltered on App Engine. +package playground + +import ( + "bytes" + "fmt" + "io" + "net/http" +) + +const baseURL = "http://play.golang.org" + +func init() { + http.HandleFunc("/compile", bounce) + http.HandleFunc("/share", bounce) +} + +func bounce(w http.ResponseWriter, r *http.Request) { + b := new(bytes.Buffer) + if err := passThru(b, r); err != nil { + http.Error(w, "Server error.", http.StatusInternalServerError) + report(r, err) + return + } + io.Copy(w, b) +} + +func passThru(w io.Writer, req *http.Request) error { + defer req.Body.Close() + url := baseURL + req.URL.Path + r, err := client(req).Post(url, req.Header.Get("Content-type"), req.Body) + if err != nil { + return fmt.Errorf("making POST request: %v", err) + } + defer r.Body.Close() + if _, err := io.Copy(w, r.Body); err != nil { + return fmt.Errorf("copying response Body: %v", err) + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/local.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/local.go new file mode 100644 index 00000000..b114b877 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/local.go @@ -0,0 +1,20 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine + +package playground + +import ( + "log" + "net/http" +) + +func client(r *http.Request) *http.Client { + return http.DefaultClient +} + +func report(r *http.Request, err error) { + log.Println(err) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/socket/socket.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/socket/socket.go new file mode 100644 index 00000000..66689a4f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/playground/socket/socket.go @@ -0,0 +1,387 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine + +// Package socket implements an WebSocket-based playground backend. +// Clients connect to a websocket handler and send run/kill commands, and +// the server sends the output and exit status of the running processes. +// Multiple clients running multiple processes may be served concurrently. +// The wire format is JSON and is described by the Message type. +// +// This will not run on App Engine as WebSockets are not supported there. +package socket + +import ( + "bytes" + "encoding/json" + "errors" + "go/parser" + "go/token" + "io" + "io/ioutil" + "log" + "os" + "os/exec" + "path/filepath" + "runtime" + "strconv" + "strings" + "sync" + "time" + "unicode/utf8" + + "code.google.com/p/go.net/websocket" +) + +// RunScripts specifies whether the socket handler should execute shell scripts +// (snippets that start with a shebang). +var RunScripts = true + +// Handler implements a WebSocket handler for a client connection. +var Handler = websocket.Handler(socketHandler) + +// Environ provides an environment when a binary, such as the go tool, is +// invoked. +var Environ func() []string = os.Environ + +const ( + // The maximum number of messages to send per session (avoid flooding). + msgLimit = 1000 + + // Batch messages sent in this interval and send as a single message. + msgDelay = 10 * time.Millisecond +) + +// Message is the wire format for the websocket connection to the browser. +// It is used for both sending output messages and receiving commands, as +// distinguished by the Kind field. +type Message struct { + Id string // client-provided unique id for the process + Kind string // in: "run", "kill" out: "stdout", "stderr", "end" + Body string + Options *Options `json:",omitempty"` +} + +// Options specify additional message options. +type Options struct { + Race bool // use -race flag when building code (for "run" only) +} + +// socketHandler handles the websocket connection for a given present session. +// It handles transcoding Messages to and from JSON format, and starting +// and killing processes. +func socketHandler(c *websocket.Conn) { + in, out := make(chan *Message), make(chan *Message) + errc := make(chan error, 1) + + // Decode messages from client and send to the in channel. + go func() { + dec := json.NewDecoder(c) + for { + var m Message + if err := dec.Decode(&m); err != nil { + errc <- err + return + } + in <- &m + } + }() + + // Receive messages from the out channel and encode to the client. + go func() { + enc := json.NewEncoder(c) + for m := range out { + if err := enc.Encode(m); err != nil { + errc <- err + return + } + } + }() + + // Start and kill processes and handle errors. + proc := make(map[string]*process) + for { + select { + case m := <-in: + switch m.Kind { + case "run": + proc[m.Id].Kill() + lOut := limiter(in, out) + proc[m.Id] = startProcess(m.Id, m.Body, lOut, m.Options) + case "kill": + proc[m.Id].Kill() + } + case err := <-errc: + if err != io.EOF { + // A encode or decode has failed; bail. + log.Println(err) + } + // Shut down any running processes. + for _, p := range proc { + p.Kill() + } + return + } + } +} + +// process represents a running process. +type process struct { + id string + out chan<- *Message + done chan struct{} // closed when wait completes + run *exec.Cmd + bin string +} + +// startProcess builds and runs the given program, sending its output +// and end event as Messages on the provided channel. +func startProcess(id, body string, out chan<- *Message, opt *Options) *process { + p := &process{ + id: id, + out: out, + done: make(chan struct{}), + } + var err error + if path, args := shebang(body); RunScripts && path != "" { + err = p.startProcess(path, args, body) + } else { + err = p.start(body, opt) + } + if err != nil { + p.end(err) + return nil + } + go p.wait() + return p +} + +// Kill stops the process if it is running and waits for it to exit. +func (p *process) Kill() { + if p == nil { + return + } + p.run.Process.Kill() + <-p.done // block until process exits +} + +// shebang looks for a shebang ('#!') at the beginning of the passed string. +// If found, it returns the path and args after the shebang. +// args includes the command as args[0]. +func shebang(body string) (path string, args []string) { + body = strings.TrimSpace(body) + if !strings.HasPrefix(body, "#!") { + return "", nil + } + if i := strings.Index(body, "\n"); i >= 0 { + body = body[:i] + } + fs := strings.Fields(body[2:]) + return fs[0], fs +} + +// startProcess starts a given program given its path and passing the given body +// to the command standard input. +func (p *process) startProcess(path string, args []string, body string) error { + cmd := &exec.Cmd{ + Path: path, + Args: args, + Stdin: strings.NewReader(body), + Stdout: &messageWriter{id: p.id, kind: "stdout", out: p.out}, + Stderr: &messageWriter{id: p.id, kind: "stderr", out: p.out}, + } + if err := cmd.Start(); err != nil { + return err + } + p.run = cmd + return nil +} + +// start builds and starts the given program, sending its output to p.out, +// and stores the running *exec.Cmd in the run field. +func (p *process) start(body string, opt *Options) error { + // We "go build" and then exec the binary so that the + // resultant *exec.Cmd is a handle to the user's program + // (rather than the go tool process). + // This makes Kill work. + + bin := filepath.Join(tmpdir, "compile"+strconv.Itoa(<-uniq)) + src := bin + ".go" + if runtime.GOOS == "windows" { + bin += ".exe" + } + + // write body to x.go + defer os.Remove(src) + err := ioutil.WriteFile(src, []byte(body), 0666) + if err != nil { + return err + } + + // build x.go, creating x + p.bin = bin // to be removed by p.end + dir, file := filepath.Split(src) + args := []string{"go", "build", "-tags", "OMIT"} + if opt != nil && opt.Race { + p.out <- &Message{ + Id: p.id, Kind: "stderr", + Body: "Running with race detector.\n", + } + args = append(args, "-race") + } + args = append(args, "-o", bin, file) + cmd := p.cmd(dir, args...) + cmd.Stdout = cmd.Stderr // send compiler output to stderr + if err := cmd.Run(); err != nil { + return err + } + + // run x + cmd = p.cmd("", bin) + if opt != nil && opt.Race { + cmd.Env = append(cmd.Env, "GOMAXPROCS=2") + } + if err := cmd.Start(); err != nil { + // If we failed to exec, that might be because they built + // a non-main package instead of an executable. + // Check and report that. + if name, err := packageName(body); err == nil && name != "main" { + return errors.New(`executable programs must use "package main"`) + } + return err + } + p.run = cmd + return nil +} + +// wait waits for the running process to complete +// and sends its error state to the client. +func (p *process) wait() { + p.end(p.run.Wait()) + close(p.done) // unblock waiting Kill calls +} + +// end sends an "end" message to the client, containing the process id and the +// given error value. It also removes the binary. +func (p *process) end(err error) { + if p.bin != "" { + defer os.Remove(p.bin) + } + m := &Message{Id: p.id, Kind: "end"} + if err != nil { + m.Body = err.Error() + } + // Wait for any outstanding reads to finish (potential race here). + time.AfterFunc(msgDelay, func() { p.out <- m }) +} + +// cmd builds an *exec.Cmd that writes its standard output and error to the +// process' output channel. +func (p *process) cmd(dir string, args ...string) *exec.Cmd { + cmd := exec.Command(args[0], args[1:]...) + cmd.Dir = dir + cmd.Env = Environ() + cmd.Stdout = &messageWriter{id: p.id, kind: "stdout", out: p.out} + cmd.Stderr = &messageWriter{id: p.id, kind: "stderr", out: p.out} + return cmd +} + +func packageName(body string) (string, error) { + f, err := parser.ParseFile(token.NewFileSet(), "prog.go", + strings.NewReader(body), parser.PackageClauseOnly) + if err != nil { + return "", err + } + return f.Name.String(), nil +} + +// messageWriter is an io.Writer that converts all writes to Message sends on +// the out channel with the specified id and kind. +type messageWriter struct { + id, kind string + out chan<- *Message + + mu sync.Mutex + buf []byte + send *time.Timer +} + +func (w *messageWriter) Write(b []byte) (n int, err error) { + // Buffer writes that occur in a short period to send as one Message. + w.mu.Lock() + w.buf = append(w.buf, b...) + if w.send == nil { + w.send = time.AfterFunc(msgDelay, w.sendNow) + } + w.mu.Unlock() + return len(b), nil +} + +func (w *messageWriter) sendNow() { + w.mu.Lock() + body := safeString(w.buf) + w.buf, w.send = nil, nil + w.mu.Unlock() + w.out <- &Message{Id: w.id, Kind: w.kind, Body: body} +} + +// safeString returns b as a valid UTF-8 string. +func safeString(b []byte) string { + if utf8.Valid(b) { + return string(b) + } + var buf bytes.Buffer + for len(b) > 0 { + r, size := utf8.DecodeRune(b) + b = b[size:] + buf.WriteRune(r) + } + return buf.String() +} + +// limiter returns a channel that wraps dest. Messages sent to the channel are +// sent to dest. After msgLimit Messages have been passed on, a "kill" Message +// is sent to the kill channel, and only "end" messages are passed. +func limiter(kill chan<- *Message, dest chan<- *Message) chan<- *Message { + ch := make(chan *Message) + go func() { + n := 0 + for m := range ch { + switch { + case n < msgLimit || m.Kind == "end": + dest <- m + if m.Kind == "end" { + return + } + case n == msgLimit: + // process produced too much output. Kill it. + kill <- &Message{Id: m.Id, Kind: "kill"} + } + n++ + } + }() + return ch +} + +var tmpdir string + +func init() { + // find real path to temporary directory + var err error + tmpdir, err = filepath.EvalSymlinks(os.TempDir()) + if err != nil { + log.Fatal(err) + } +} + +var uniq = make(chan int) // a source of numbers for naming temporary files + +func init() { + go func() { + for i := 0; ; i++ { + uniq <- i + } + }() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/args.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/args.go new file mode 100644 index 00000000..49ee1a98 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/args.go @@ -0,0 +1,229 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package present + +import ( + "errors" + "regexp" + "strconv" + "unicode/utf8" +) + +// This file is stolen from go/src/cmd/godoc/codewalk.go. +// It's an evaluator for the file address syntax implemented by acme and sam, +// but using Go-native regular expressions. +// To keep things reasonably close, this version uses (?m:re) for all user-provided +// regular expressions. That is the only change to the code from codewalk.go. +// See http://plan9.bell-labs.com/sys/doc/sam/sam.html Table II +// for details on the syntax. + +// addrToByte evaluates the given address starting at offset start in data. +// It returns the lo and hi byte offset of the matched region within data. +func addrToByteRange(addr string, start int, data []byte) (lo, hi int, err error) { + if addr == "" { + lo, hi = start, len(data) + return + } + var ( + dir byte + prevc byte + charOffset bool + ) + lo = start + hi = start + for addr != "" && err == nil { + c := addr[0] + switch c { + default: + err = errors.New("invalid address syntax near " + string(c)) + case ',': + if len(addr) == 1 { + hi = len(data) + } else { + _, hi, err = addrToByteRange(addr[1:], hi, data) + } + return + + case '+', '-': + if prevc == '+' || prevc == '-' { + lo, hi, err = addrNumber(data, lo, hi, prevc, 1, charOffset) + } + dir = c + + case '$': + lo = len(data) + hi = len(data) + if len(addr) > 1 { + dir = '+' + } + + case '#': + charOffset = true + + case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + var i int + for i = 1; i < len(addr); i++ { + if addr[i] < '0' || addr[i] > '9' { + break + } + } + var n int + n, err = strconv.Atoi(addr[0:i]) + if err != nil { + break + } + lo, hi, err = addrNumber(data, lo, hi, dir, n, charOffset) + dir = 0 + charOffset = false + prevc = c + addr = addr[i:] + continue + + case '/': + var i, j int + Regexp: + for i = 1; i < len(addr); i++ { + switch addr[i] { + case '\\': + i++ + case '/': + j = i + 1 + break Regexp + } + } + if j == 0 { + j = i + } + pattern := addr[1:i] + lo, hi, err = addrRegexp(data, lo, hi, dir, pattern) + prevc = c + addr = addr[j:] + continue + } + prevc = c + addr = addr[1:] + } + + if err == nil && dir != 0 { + lo, hi, err = addrNumber(data, lo, hi, dir, 1, charOffset) + } + if err != nil { + return 0, 0, err + } + return lo, hi, nil +} + +// addrNumber applies the given dir, n, and charOffset to the address lo, hi. +// dir is '+' or '-', n is the count, and charOffset is true if the syntax +// used was #n. Applying +n (or +#n) means to advance n lines +// (or characters) after hi. Applying -n (or -#n) means to back up n lines +// (or characters) before lo. +// The return value is the new lo, hi. +func addrNumber(data []byte, lo, hi int, dir byte, n int, charOffset bool) (int, int, error) { + switch dir { + case 0: + lo = 0 + hi = 0 + fallthrough + + case '+': + if charOffset { + pos := hi + for ; n > 0 && pos < len(data); n-- { + _, size := utf8.DecodeRune(data[pos:]) + pos += size + } + if n == 0 { + return pos, pos, nil + } + break + } + // find next beginning of line + if hi > 0 { + for hi < len(data) && data[hi-1] != '\n' { + hi++ + } + } + lo = hi + if n == 0 { + return lo, hi, nil + } + for ; hi < len(data); hi++ { + if data[hi] != '\n' { + continue + } + switch n--; n { + case 1: + lo = hi + 1 + case 0: + return lo, hi + 1, nil + } + } + + case '-': + if charOffset { + // Scan backward for bytes that are not UTF-8 continuation bytes. + pos := lo + for ; pos > 0 && n > 0; pos-- { + if data[pos]&0xc0 != 0x80 { + n-- + } + } + if n == 0 { + return pos, pos, nil + } + break + } + // find earlier beginning of line + for lo > 0 && data[lo-1] != '\n' { + lo-- + } + hi = lo + if n == 0 { + return lo, hi, nil + } + for ; lo >= 0; lo-- { + if lo > 0 && data[lo-1] != '\n' { + continue + } + switch n--; n { + case 1: + hi = lo + case 0: + return lo, hi, nil + } + } + } + + return 0, 0, errors.New("address out of range") +} + +// addrRegexp searches for pattern in the given direction starting at lo, hi. +// The direction dir is '+' (search forward from hi) or '-' (search backward from lo). +// Backward searches are unimplemented. +func addrRegexp(data []byte, lo, hi int, dir byte, pattern string) (int, int, error) { + // We want ^ and $ to work as in sam/acme, so use ?m. + re, err := regexp.Compile("(?m:" + pattern + ")") + if err != nil { + return 0, 0, err + } + if dir == '-' { + // Could implement reverse search using binary search + // through file, but that seems like overkill. + return 0, 0, errors.New("reverse search not implemented") + } + m := re.FindIndex(data[hi:]) + if len(m) > 0 { + m[0] += hi + m[1] += hi + } else if hi > 0 { + // No match. Wrap to beginning of data. + m = re.FindIndex(data) + } + if len(m) == 0 { + return 0, 0, errors.New("no match for " + pattern) + } + return m[0], m[1], nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/code.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/code.go new file mode 100644 index 00000000..2816a879 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/code.go @@ -0,0 +1,287 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package present + +import ( + "bufio" + "bytes" + "fmt" + "html/template" + "path/filepath" + "regexp" + "strconv" + "strings" +) + +// Is the playground available? +var PlayEnabled = false + +// TOOD(adg): replace the PlayEnabled flag with something less spaghetti-like. +// Instead this will probably be determined by a template execution Context +// value that contains various global metadata required when rendering +// templates. + +func init() { + Register("code", parseCode) + Register("play", parseCode) +} + +type Code struct { + Text template.HTML + Play bool // runnable code + FileName string // file name + Ext string // file extension + Raw []byte // content of the file +} + +func (c Code) TemplateName() string { return "code" } + +// The input line is a .code or .play entry with a file name and an optional HLfoo marker on the end. +// Anything between the file and HL (if any) is an address expression, which we treat as a string here. +// We pick off the HL first, for easy parsing. +var ( + highlightRE = regexp.MustCompile(`\s+HL([a-zA-Z0-9_]+)?$`) + hlCommentRE = regexp.MustCompile(`(.+) // HL(.*)$`) + codeRE = regexp.MustCompile(`\.(code|play)\s+((?:(?:-edit|-numbers)\s+)*)([^\s]+)(?:\s+(.*))?$`) +) + +// parseCode parses a code present directive. Its syntax: +// .code [-numbers] [-edit] [address] [highlight] +// The directive may also be ".play" if the snippet is executable. +func parseCode(ctx *Context, sourceFile string, sourceLine int, cmd string) (Elem, error) { + cmd = strings.TrimSpace(cmd) + + // Pull off the HL, if any, from the end of the input line. + highlight := "" + if hl := highlightRE.FindStringSubmatchIndex(cmd); len(hl) == 4 { + highlight = cmd[hl[2]:hl[3]] + cmd = cmd[:hl[2]-2] + } + + // Parse the remaining command line. + // Arguments: + // args[0]: whole match + // args[1]: .code/.play + // args[2]: flags ("-edit -numbers") + // args[3]: file name + // args[4]: optional address + args := codeRE.FindStringSubmatch(cmd) + if len(args) != 5 { + return nil, fmt.Errorf("%s:%d: syntax error for .code/.play invocation", sourceFile, sourceLine) + } + command, flags, file, addr := args[1], args[2], args[3], strings.TrimSpace(args[4]) + play := command == "play" && PlayEnabled + + // Read in code file and (optionally) match address. + filename := filepath.Join(filepath.Dir(sourceFile), file) + textBytes, err := ctx.ReadFile(filename) + if err != nil { + return nil, fmt.Errorf("%s:%d: %v", sourceFile, sourceLine, err) + } + lo, hi, err := addrToByteRange(addr, 0, textBytes) + if err != nil { + return nil, fmt.Errorf("%s:%d: %v", sourceFile, sourceLine, err) + } + + // Acme pattern matches can stop mid-line, + // so run to end of line in both directions if not at line start/end. + for lo > 0 && textBytes[lo-1] != '\n' { + lo-- + } + if hi > 0 { + for hi < len(textBytes) && textBytes[hi-1] != '\n' { + hi++ + } + } + + lines := codeLines(textBytes, lo, hi) + + data := &codeTemplateData{ + Lines: formatLines(lines, highlight), + Edit: strings.Contains(flags, "-edit"), + Numbers: strings.Contains(flags, "-numbers"), + } + + // Include before and after in a hidden span for playground code. + if play { + data.Prefix = textBytes[:lo] + data.Suffix = textBytes[hi:] + } + + var buf bytes.Buffer + if err := codeTemplate.Execute(&buf, data); err != nil { + return nil, err + } + return Code{ + Text: template.HTML(buf.String()), + Play: play, + FileName: filepath.Base(filename), + Ext: filepath.Ext(filename), + Raw: rawCode(lines), + }, nil +} + +// formatLines returns a new slice of codeLine with the given lines +// replacing tabs with spaces and adding highlighting where needed. +func formatLines(lines []codeLine, highlight string) []codeLine { + formatted := make([]codeLine, len(lines)) + for i, line := range lines { + // Replace tabs with spaces, which work better in HTML. + line.L = strings.Replace(line.L, "\t", " ", -1) + + // Highlight lines that end with "// HL[highlight]" + // and strip the magic comment. + if m := hlCommentRE.FindStringSubmatch(line.L); m != nil { + line.L = m[1] + line.HL = m[2] == highlight + } + + formatted[i] = line + } + return formatted +} + +// rawCode returns the code represented by the given codeLines without any kind +// of formatting. +func rawCode(lines []codeLine) []byte { + b := new(bytes.Buffer) + for _, line := range lines { + b.WriteString(line.L) + b.WriteByte('\n') + } + return b.Bytes() +} + +type codeTemplateData struct { + Lines []codeLine + Prefix, Suffix []byte + Edit, Numbers bool +} + +var leadingSpaceRE = regexp.MustCompile(`^[ \t]*`) + +var codeTemplate = template.Must(template.New("code").Funcs(template.FuncMap{ + "trimSpace": strings.TrimSpace, + "leadingSpace": leadingSpaceRE.FindString, +}).Parse(codeTemplateHTML)) + +const codeTemplateHTML = ` +{{with .Prefix}}
    {{printf "%s" .}}
    {{end}} + +{{/* + */}}{{range .Lines}}{{/* + */}}{{if .HL}}{{leadingSpace .L}}{{trimSpace .L}}{{/* + */}}{{else}}{{.L}}{{end}}{{/* +*/}} +{{end}}
    + +{{with .Suffix}}
    {{printf "%s" .}}
    {{end}} +` + +// codeLine represents a line of code extracted from a source file. +type codeLine struct { + L string // The line of code. + N int // The line number from the source file. + HL bool // Whether the line should be highlighted. +} + +// codeLines takes a source file and returns the lines that +// span the byte range specified by start and end. +// It discards lines that end in "OMIT". +func codeLines(src []byte, start, end int) (lines []codeLine) { + startLine := 1 + for i, b := range src { + if i == start { + break + } + if b == '\n' { + startLine++ + } + } + s := bufio.NewScanner(bytes.NewReader(src[start:end])) + for n := startLine; s.Scan(); n++ { + l := s.Text() + if strings.HasSuffix(l, "OMIT") { + continue + } + lines = append(lines, codeLine{L: l, N: n}) + } + // Trim leading and trailing blank lines. + for len(lines) > 0 && len(lines[0].L) == 0 { + lines = lines[1:] + } + for len(lines) > 0 && len(lines[len(lines)-1].L) == 0 { + lines = lines[:len(lines)-1] + } + return +} + +func parseArgs(name string, line int, args []string) (res []interface{}, err error) { + res = make([]interface{}, len(args)) + for i, v := range args { + if len(v) == 0 { + return nil, fmt.Errorf("%s:%d bad code argument %q", name, line, v) + } + switch v[0] { + case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + n, err := strconv.Atoi(v) + if err != nil { + return nil, fmt.Errorf("%s:%d bad code argument %q", name, line, v) + } + res[i] = n + case '/': + if len(v) < 2 || v[len(v)-1] != '/' { + return nil, fmt.Errorf("%s:%d bad code argument %q", name, line, v) + } + res[i] = v + case '$': + res[i] = "$" + default: + return nil, fmt.Errorf("%s:%d bad code argument %q", name, line, v) + } + } + return +} + +// parseArg returns the integer or string value of the argument and tells which it is. +func parseArg(arg interface{}, max int) (ival int, sval string, isInt bool, err error) { + switch n := arg.(type) { + case int: + if n <= 0 || n > max { + return 0, "", false, fmt.Errorf("%d is out of range", n) + } + return n, "", true, nil + case string: + return 0, n, false, nil + } + return 0, "", false, fmt.Errorf("unrecognized argument %v type %T", arg, arg) +} + +// match identifies the input line that matches the pattern in a code invocation. +// If start>0, match lines starting there rather than at the beginning. +// The return value is 1-indexed. +func match(file string, start int, lines []string, pattern string) (int, error) { + // $ matches the end of the file. + if pattern == "$" { + if len(lines) == 0 { + return 0, fmt.Errorf("%q: empty file", file) + } + return len(lines), nil + } + // /regexp/ matches the line that matches the regexp. + if len(pattern) > 2 && pattern[0] == '/' && pattern[len(pattern)-1] == '/' { + re, err := regexp.Compile(pattern[1 : len(pattern)-1]) + if err != nil { + return 0, err + } + for i := start; i < len(lines); i++ { + if re.MatchString(lines[i]) { + return i + 1, nil + } + } + return 0, fmt.Errorf("%s: no match for %#q", file, pattern) + } + return 0, fmt.Errorf("unrecognized pattern: %q", pattern) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/doc.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/doc.go new file mode 100644 index 00000000..afd50e79 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/doc.go @@ -0,0 +1,190 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +The present file format + +Present files have the following format. The first non-blank non-comment +line is the title, so the header looks like + + Title of document + Subtitle of document + 15:04 2 Jan 2006 + Tags: foo, bar, baz + + Author Name + Job title, Company + joe@example.com + http://url/ + @twitter_name + +The subtitle, date, and tags lines are optional. + +The date line may be written without a time: + 2 Jan 2006 +In this case, the time will be interpreted as 10am UTC on that date. + +The tags line is a comma-separated list of tags that may be used to categorize +the document. + +The author section may contain a mixture of text, twitter names, and links. +For slide presentations, only the plain text lines will be displayed on the +first slide. + +Multiple presenters may be specified, separated by a blank line. + +After that come slides/sections, each after a blank line: + + * Title of slide or section (must have asterisk) + + Some Text + + ** Subsection + + - bullets + - more bullets + - a bullet with + + *** Sub-subsection + + Some More text + + Preformatted text + is indented (however you like) + + Further Text, including invocations like: + + .code x.go /^func main/,/^}/ + .play y.go + .image image.jpg + .iframe http://foo + .link http://foo label + .html file.html + + Again, more text + +Blank lines are OK (not mandatory) after the title and after the +text. Text, bullets, and .code etc. are all optional; title is +not. + +Lines starting with # in column 1 are commentary. + +Fonts: + +Within the input for plain text or lists, text bracketed by font +markers will be presented in italic, bold, or program font. +Marker characters are _ (italic), * (bold) and ` (program font). +Unmatched markers appear as plain text. +Within marked text, a single marker character becomes a space +and a doubled single marker quotes the marker character. + + _italic_ + *bold* + `program` + _this_is_all_italic_ + _Why_use_scoped__ptr_? Use plain ***ptr* instead. + +Inline links: + +Links can be included in any text with the form [[url][label]], or +[[url]] to use the URL itself as the label. + +Functions: + +A number of template functions are available through invocations +in the input text. Each such invocation contains a period as the +first character on the line, followed immediately by the name of +the function, followed by any arguments. A typical invocation might +be + .play demo.go /^func show/,/^}/ +(except that the ".play" must be at the beginning of the line and +not be indented like this.) + +Here follows a description of the functions: + +code: + +Injects program source into the output by extracting code from files +and injecting them as HTML-escaped
     blocks.  The argument is
    +a file name followed by an optional address that specifies what
    +section of the file to display. The address syntax is similar in
    +its simplest form to that of ed, but comes from sam and is more
    +general. See
    +	http://plan9.bell-labs.com/sys/doc/sam/sam.html Table II
    +for full details. The displayed block is always rounded out to a
    +full line at both ends.
    +
    +If no pattern is present, the entire file is displayed.
    +
    +Any line in the program that ends with the four characters
    +	OMIT
    +is deleted from the source before inclusion, making it easy
    +to write things like
    +	.code test.go /START OMIT/,/END OMIT/
    +to find snippets like this
    +	tedious_code = boring_function()
    +	// START OMIT
    +	interesting_code = fascinating_function()
    +	// END OMIT
    +and see only this:
    +	interesting_code = fascinating_function()
    +
    +Also, inside the displayed text a line that ends
    +	// HL
    +will be highlighted in the display; the 'h' key in the browser will
    +toggle extra emphasis of any highlighted lines. A highlighting mark
    +may have a suffix word, such as
    +	// HLxxx
    +Such highlights are enabled only if the code invocation ends with
    +"HL" followed by the word:
    +	.code test.go /^type Foo/,/^}/ HLxxx
    +
    +The .code function may take one or more flags immediately preceding
    +the filename. This command shows test.go in an editable text area:
    +	.code -edit test.go
    +This command shows test.go with line numbers:
    +	.code -numbers test.go
    +
    +play:
    +
    +The function "play" is the same as "code" but puts a button
    +on the displayed source so the program can be run from the browser.
    +Although only the selected text is shown, all the source is included
    +in the HTML output so it can be presented to the compiler.
    +
    +link:
    +
    +Create a hyperlink. The syntax is 1 or 2 space-separated arguments.
    +The first argument is always the HTTP URL.  If there is a second
    +argument, it is the text label to display for this link.
    +
    +	.link http://golang.org golang.org
    +
    +image:
    +
    +The template uses the function "image" to inject picture files.
    +
    +The syntax is simple: 1 or 3 space-separated arguments.
    +The first argument is always the file name.
    +If there are more arguments, they are the height and width;
    +both must be present.
    +
    +	.image images/betsy.jpg 100 200
    +
    +iframe:
    +
    +The function "iframe" injects iframes (pages inside pages).
    +Its syntax is the same as that of image.
    +
    +html:
    +
    +The function html includes the contents of the specified file as
    +unescaped HTML. This is useful for including custom HTML elements
    +that cannot be created using only the slide format.
    +It is your responsibilty to make sure the included HTML is valid and safe.
    +
    +	.html file.html
    +
    +*/
    +package present
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/html.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/html.go
    new file mode 100644
    index 00000000..cca90ef4
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/html.go
    @@ -0,0 +1,31 @@
    +package present
    +
    +import (
    +	"errors"
    +	"html/template"
    +	"path/filepath"
    +	"strings"
    +)
    +
    +func init() {
    +	Register("html", parseHTML)
    +}
    +
    +func parseHTML(ctx *Context, fileName string, lineno int, text string) (Elem, error) {
    +	p := strings.Fields(text)
    +	if len(p) != 2 {
    +		return nil, errors.New("invalid .html args")
    +	}
    +	name := filepath.Join(filepath.Dir(fileName), p[1])
    +	b, err := ctx.ReadFile(name)
    +	if err != nil {
    +		return nil, err
    +	}
    +	return HTML{template.HTML(b)}, nil
    +}
    +
    +type HTML struct {
    +	template.HTML
    +}
    +
    +func (s HTML) TemplateName() string { return "html" }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/iframe.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/iframe.go
    new file mode 100644
    index 00000000..2f3c5e55
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/iframe.go
    @@ -0,0 +1,45 @@
    +// Copyright 2013 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import (
    +	"fmt"
    +	"strings"
    +)
    +
    +func init() {
    +	Register("iframe", parseIframe)
    +}
    +
    +type Iframe struct {
    +	URL    string
    +	Width  int
    +	Height int
    +}
    +
    +func (i Iframe) TemplateName() string { return "iframe" }
    +
    +func parseIframe(ctx *Context, fileName string, lineno int, text string) (Elem, error) {
    +	args := strings.Fields(text)
    +	i := Iframe{URL: args[1]}
    +	a, err := parseArgs(fileName, lineno, args[2:])
    +	if err != nil {
    +		return nil, err
    +	}
    +	switch len(a) {
    +	case 0:
    +		// no size parameters
    +	case 2:
    +		if v, ok := a[0].(int); ok {
    +			i.Height = v
    +		}
    +		if v, ok := a[1].(int); ok {
    +			i.Width = v
    +		}
    +	default:
    +		return nil, fmt.Errorf("incorrect image invocation: %q", text)
    +	}
    +	return i, nil
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/image.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/image.go
    new file mode 100644
    index 00000000..2bab429c
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/image.go
    @@ -0,0 +1,45 @@
    +// Copyright 2012 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import (
    +	"fmt"
    +	"strings"
    +)
    +
    +func init() {
    +	Register("image", parseImage)
    +}
    +
    +type Image struct {
    +	URL    string
    +	Width  int
    +	Height int
    +}
    +
    +func (i Image) TemplateName() string { return "image" }
    +
    +func parseImage(ctx *Context, fileName string, lineno int, text string) (Elem, error) {
    +	args := strings.Fields(text)
    +	img := Image{URL: args[1]}
    +	a, err := parseArgs(fileName, lineno, args[2:])
    +	if err != nil {
    +		return nil, err
    +	}
    +	switch len(a) {
    +	case 0:
    +		// no size parameters
    +	case 2:
    +		if v, ok := a[0].(int); ok {
    +			img.Height = v
    +		}
    +		if v, ok := a[1].(int); ok {
    +			img.Width = v
    +		}
    +	default:
    +		return nil, fmt.Errorf("incorrect image invocation: %q", text)
    +	}
    +	return img, nil
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/link.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/link.go
    new file mode 100644
    index 00000000..4973b96f
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/link.go
    @@ -0,0 +1,97 @@
    +// Copyright 2012 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import (
    +	"fmt"
    +	"log"
    +	"net/url"
    +	"strings"
    +)
    +
    +func init() {
    +	Register("link", parseLink)
    +}
    +
    +type Link struct {
    +	URL   *url.URL
    +	Label string
    +}
    +
    +func (l Link) TemplateName() string { return "link" }
    +
    +func parseLink(ctx *Context, fileName string, lineno int, text string) (Elem, error) {
    +	args := strings.Fields(text)
    +	url, err := url.Parse(args[1])
    +	if err != nil {
    +		return nil, err
    +	}
    +	label := ""
    +	if len(args) > 2 {
    +		label = strings.Join(args[2:], " ")
    +	} else {
    +		scheme := url.Scheme + "://"
    +		if url.Scheme == "mailto" {
    +			scheme = "mailto:"
    +		}
    +		label = strings.Replace(url.String(), scheme, "", 1)
    +	}
    +	return Link{url, label}, nil
    +}
    +
    +func renderLink(href, text string) string {
    +	text = font(text)
    +	if text == "" {
    +		text = href
    +	}
    +	// Open links in new window only when their url is absolute.
    +	target := "_blank"
    +	if u, err := url.Parse(href); err != nil {
    +		log.Println("rendernLink parsing url: %v", err)
    +	} else if !u.IsAbs() || u.Scheme == "javascript" {
    +		target = "_self"
    +	}
    +
    +	return fmt.Sprintf(`%s`, href, target, text)
    +}
    +
    +// parseInlineLink parses an inline link at the start of s, and returns
    +// a rendered HTML link and the total length of the raw inline link.
    +// If no inline link is present, it returns all zeroes.
    +func parseInlineLink(s string) (link string, length int) {
    +	if !strings.HasPrefix(s, "[[") {
    +		return
    +	}
    +	end := strings.Index(s, "]]")
    +	if end == -1 {
    +		return
    +	}
    +	urlEnd := strings.Index(s, "]")
    +	rawURL := s[2:urlEnd]
    +	const badURLChars = `<>"{}|\^[] ` + "`" // per RFC2396 section 2.4.3
    +	if strings.ContainsAny(rawURL, badURLChars) {
    +		return
    +	}
    +	if urlEnd == end {
    +		simpleUrl := ""
    +		url, err := url.Parse(rawURL)
    +		if err == nil {
    +			// If the URL is http://foo.com, drop the http://
    +			// In other words, render [[http://golang.org]] as:
    +			//   golang.org
    +			if strings.HasPrefix(rawURL, url.Scheme+"://") {
    +				simpleUrl = strings.TrimPrefix(rawURL, url.Scheme+"://")
    +			} else if strings.HasPrefix(rawURL, url.Scheme+":") {
    +				simpleUrl = strings.TrimPrefix(rawURL, url.Scheme+":")
    +			}
    +		}
    +		return renderLink(rawURL, simpleUrl), end + 2
    +	}
    +	if s[urlEnd:urlEnd+2] != "][" {
    +		return
    +	}
    +	text := s[urlEnd+2 : end]
    +	return renderLink(rawURL, text), end + 2
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/link_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/link_test.go
    new file mode 100644
    index 00000000..334e72bd
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/link_test.go
    @@ -0,0 +1,40 @@
    +// Copyright 2012 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import "testing"
    +
    +func TestInlineParsing(t *testing.T) {
    +	var tests = []struct {
    +		in     string
    +		link   string
    +		text   string
    +		length int
    +	}{
    +		{"[[http://golang.org]]", "http://golang.org", "golang.org", 21},
    +		{"[[http://golang.org][]]", "http://golang.org", "http://golang.org", 23},
    +		{"[[http://golang.org]] this is ignored", "http://golang.org", "golang.org", 21},
    +		{"[[http://golang.org][link]]", "http://golang.org", "link", 27},
    +		{"[[http://golang.org][two words]]", "http://golang.org", "two words", 32},
    +		{"[[http://golang.org][*link*]]", "http://golang.org", "link", 29},
    +		{"[[http://bad[url]]", "", "", 0},
    +		{"[[http://golang.org][a [[link]] ]]", "http://golang.org", "a [[link", 31},
    +		{"[[http:// *spaces* .com]]", "", "", 0},
    +		{"[[http://bad`char.com]]", "", "", 0},
    +		{" [[http://google.com]]", "", "", 0},
    +		{"[[mailto:gopher@golang.org][Gopher]]", "mailto:gopher@golang.org", "Gopher", 36},
    +		{"[[mailto:gopher@golang.org]]", "mailto:gopher@golang.org", "gopher@golang.org", 28},
    +	}
    +
    +	for i, test := range tests {
    +		link, length := parseInlineLink(test.in)
    +		if length == 0 && test.length == 0 {
    +			continue
    +		}
    +		if a := renderLink(test.link, test.text); length != test.length || link != a {
    +			t.Errorf("#%d: parseInlineLink(%q):\ngot\t%q, %d\nwant\t%q, %d", i, test.in, link, length, a, test.length)
    +		}
    +	}
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/parse.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/parse.go
    new file mode 100644
    index 00000000..449d5ed5
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/parse.go
    @@ -0,0 +1,505 @@
    +// Copyright 2011 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import (
    +	"bufio"
    +	"bytes"
    +	"errors"
    +	"fmt"
    +	"html/template"
    +	"io"
    +	"io/ioutil"
    +	"log"
    +	"net/url"
    +	"regexp"
    +	"strings"
    +	"time"
    +	"unicode"
    +	"unicode/utf8"
    +)
    +
    +var (
    +	parsers = make(map[string]ParseFunc)
    +	funcs   = template.FuncMap{}
    +)
    +
    +// Template returns an empty template with the action functions in its FuncMap.
    +func Template() *template.Template {
    +	return template.New("").Funcs(funcs)
    +}
    +
    +// Render renders the doc to the given writer using the provided template.
    +func (d *Doc) Render(w io.Writer, t *template.Template) error {
    +	data := struct {
    +		*Doc
    +		Template    *template.Template
    +		PlayEnabled bool
    +	}{d, t, PlayEnabled}
    +	return t.ExecuteTemplate(w, "root", data)
    +}
    +
    +// Render renders the section to the given writer using the provided template.
    +func (s *Section) Render(w io.Writer, t *template.Template) error {
    +	data := struct {
    +		*Section
    +		Template    *template.Template
    +		PlayEnabled bool
    +	}{s, t, PlayEnabled}
    +	return t.ExecuteTemplate(w, "section", data)
    +}
    +
    +type ParseFunc func(ctx *Context, fileName string, lineNumber int, inputLine string) (Elem, error)
    +
    +// Register binds the named action, which does not begin with a period, to the
    +// specified parser to be invoked when the name, with a period, appears in the
    +// present input text.
    +func Register(name string, parser ParseFunc) {
    +	if len(name) == 0 || name[0] == ';' {
    +		panic("bad name in Register: " + name)
    +	}
    +	parsers["."+name] = parser
    +}
    +
    +// Doc represents an entire document.
    +type Doc struct {
    +	Title    string
    +	Subtitle string
    +	Time     time.Time
    +	Authors  []Author
    +	Sections []Section
    +	Tags     []string
    +}
    +
    +// Author represents the person who wrote and/or is presenting the document.
    +type Author struct {
    +	Elem []Elem
    +}
    +
    +// TextElem returns the first text elements of the author details.
    +// This is used to display the author' name, job title, and company
    +// without the contact details.
    +func (p *Author) TextElem() (elems []Elem) {
    +	for _, el := range p.Elem {
    +		if _, ok := el.(Text); !ok {
    +			break
    +		}
    +		elems = append(elems, el)
    +	}
    +	return
    +}
    +
    +// Section represents a section of a document (such as a presentation slide)
    +// comprising a title and a list of elements.
    +type Section struct {
    +	Number []int
    +	Title  string
    +	Elem   []Elem
    +}
    +
    +func (s Section) Sections() (sections []Section) {
    +	for _, e := range s.Elem {
    +		if section, ok := e.(Section); ok {
    +			sections = append(sections, section)
    +		}
    +	}
    +	return
    +}
    +
    +// Level returns the level of the given section.
    +// The document title is level 1, main section 2, etc.
    +func (s Section) Level() int {
    +	return len(s.Number) + 1
    +}
    +
    +// FormattedNumber returns a string containing the concatenation of the
    +// numbers identifying a Section.
    +func (s Section) FormattedNumber() string {
    +	b := &bytes.Buffer{}
    +	for _, n := range s.Number {
    +		fmt.Fprintf(b, "%v.", n)
    +	}
    +	return b.String()
    +}
    +
    +func (s Section) TemplateName() string { return "section" }
    +
    +// Elem defines the interface for a present element. That is, something that
    +// can provide the name of the template used to render the element.
    +type Elem interface {
    +	TemplateName() string
    +}
    +
    +// renderElem implements the elem template function, used to render
    +// sub-templates.
    +func renderElem(t *template.Template, e Elem) (template.HTML, error) {
    +	var data interface{} = e
    +	if s, ok := e.(Section); ok {
    +		data = struct {
    +			Section
    +			Template *template.Template
    +		}{s, t}
    +	}
    +	return execTemplate(t, e.TemplateName(), data)
    +}
    +
    +func init() {
    +	funcs["elem"] = renderElem
    +}
    +
    +// execTemplate is a helper to execute a template and return the output as a
    +// template.HTML value.
    +func execTemplate(t *template.Template, name string, data interface{}) (template.HTML, error) {
    +	b := new(bytes.Buffer)
    +	err := t.ExecuteTemplate(b, name, data)
    +	if err != nil {
    +		return "", err
    +	}
    +	return template.HTML(b.String()), nil
    +}
    +
    +// Text represents an optionally preformatted paragraph.
    +type Text struct {
    +	Lines []string
    +	Pre   bool
    +}
    +
    +func (t Text) TemplateName() string { return "text" }
    +
    +// List represents a bulleted list.
    +type List struct {
    +	Bullet []string
    +}
    +
    +func (l List) TemplateName() string { return "list" }
    +
    +// Lines is a helper for parsing line-based input.
    +type Lines struct {
    +	line int // 0 indexed, so has 1-indexed number of last line returned
    +	text []string
    +}
    +
    +func readLines(r io.Reader) (*Lines, error) {
    +	var lines []string
    +	s := bufio.NewScanner(r)
    +	for s.Scan() {
    +		lines = append(lines, s.Text())
    +	}
    +	if err := s.Err(); err != nil {
    +		return nil, err
    +	}
    +	return &Lines{0, lines}, nil
    +}
    +
    +func (l *Lines) next() (text string, ok bool) {
    +	for {
    +		current := l.line
    +		l.line++
    +		if current >= len(l.text) {
    +			return "", false
    +		}
    +		text = l.text[current]
    +		// Lines starting with # are comments.
    +		if len(text) == 0 || text[0] != '#' {
    +			ok = true
    +			break
    +		}
    +	}
    +	return
    +}
    +
    +func (l *Lines) back() {
    +	l.line--
    +}
    +
    +func (l *Lines) nextNonEmpty() (text string, ok bool) {
    +	for {
    +		text, ok = l.next()
    +		if !ok {
    +			return
    +		}
    +		if len(text) > 0 {
    +			break
    +		}
    +	}
    +	return
    +}
    +
    +// A Context specifies the supporting context for parsing a presentation.
    +type Context struct {
    +	// ReadFile reads the file named by filename and returns the contents.
    +	ReadFile func(filename string) ([]byte, error)
    +}
    +
    +// ParseMode represents flags for the Parse function.
    +type ParseMode int
    +
    +const (
    +	// If set, parse only the title and subtitle.
    +	TitlesOnly ParseMode = 1
    +)
    +
    +// Parse parses a document from r.
    +func (ctx *Context) Parse(r io.Reader, name string, mode ParseMode) (*Doc, error) {
    +	doc := new(Doc)
    +	lines, err := readLines(r)
    +	if err != nil {
    +		return nil, err
    +	}
    +	err = parseHeader(doc, lines)
    +	if err != nil {
    +		return nil, err
    +	}
    +	if mode&TitlesOnly != 0 {
    +		return doc, nil
    +	}
    +	// Authors
    +	if doc.Authors, err = parseAuthors(lines); err != nil {
    +		return nil, err
    +	}
    +	// Sections
    +	if doc.Sections, err = parseSections(ctx, name, lines, []int{}, doc); err != nil {
    +		return nil, err
    +	}
    +	return doc, nil
    +}
    +
    +// Parse parses a document from r. Parse reads assets used by the presentation
    +// from the file system using ioutil.ReadFile.
    +func Parse(r io.Reader, name string, mode ParseMode) (*Doc, error) {
    +	ctx := Context{ReadFile: ioutil.ReadFile}
    +	return ctx.Parse(r, name, mode)
    +}
    +
    +// isHeading matches any section heading.
    +var isHeading = regexp.MustCompile(`^\*+ `)
    +
    +// lesserHeading returns true if text is a heading of a lesser or equal level
    +// than that denoted by prefix.
    +func lesserHeading(text, prefix string) bool {
    +	return isHeading.MatchString(text) && !strings.HasPrefix(text, prefix+"*")
    +}
    +
    +// parseSections parses Sections from lines for the section level indicated by
    +// number (a nil number indicates the top level).
    +func parseSections(ctx *Context, name string, lines *Lines, number []int, doc *Doc) ([]Section, error) {
    +	var sections []Section
    +	for i := 1; ; i++ {
    +		// Next non-empty line is title.
    +		text, ok := lines.nextNonEmpty()
    +		for ok && text == "" {
    +			text, ok = lines.next()
    +		}
    +		if !ok {
    +			break
    +		}
    +		prefix := strings.Repeat("*", len(number)+1)
    +		if !strings.HasPrefix(text, prefix+" ") {
    +			lines.back()
    +			break
    +		}
    +		section := Section{
    +			Number: append(append([]int{}, number...), i),
    +			Title:  text[len(prefix)+1:],
    +		}
    +		text, ok = lines.nextNonEmpty()
    +		for ok && !lesserHeading(text, prefix) {
    +			var e Elem
    +			r, _ := utf8.DecodeRuneInString(text)
    +			switch {
    +			case unicode.IsSpace(r):
    +				i := strings.IndexFunc(text, func(r rune) bool {
    +					return !unicode.IsSpace(r)
    +				})
    +				if i < 0 {
    +					break
    +				}
    +				indent := text[:i]
    +				var s []string
    +				for ok && (strings.HasPrefix(text, indent) || text == "") {
    +					if text != "" {
    +						text = text[i:]
    +					}
    +					s = append(s, text)
    +					text, ok = lines.next()
    +				}
    +				lines.back()
    +				pre := strings.Join(s, "\n")
    +				pre = strings.Replace(pre, "\t", "    ", -1) // browsers treat tabs badly
    +				pre = strings.TrimRightFunc(pre, unicode.IsSpace)
    +				e = Text{Lines: []string{pre}, Pre: true}
    +			case strings.HasPrefix(text, "- "):
    +				var b []string
    +				for ok && strings.HasPrefix(text, "- ") {
    +					b = append(b, text[2:])
    +					text, ok = lines.next()
    +				}
    +				lines.back()
    +				e = List{Bullet: b}
    +			case strings.HasPrefix(text, prefix+"* "):
    +				lines.back()
    +				subsecs, err := parseSections(ctx, name, lines, section.Number, doc)
    +				if err != nil {
    +					return nil, err
    +				}
    +				for _, ss := range subsecs {
    +					section.Elem = append(section.Elem, ss)
    +				}
    +			case strings.HasPrefix(text, "."):
    +				args := strings.Fields(text)
    +				parser := parsers[args[0]]
    +				if parser == nil {
    +					return nil, fmt.Errorf("%s:%d: unknown command %q\n", name, lines.line, text)
    +				}
    +				t, err := parser(ctx, name, lines.line, text)
    +				if err != nil {
    +					return nil, err
    +				}
    +				e = t
    +			default:
    +				var l []string
    +				for ok && strings.TrimSpace(text) != "" {
    +					if text[0] == '.' { // Command breaks text block.
    +						break
    +					}
    +					if strings.HasPrefix(text, `\.`) { // Backslash escapes initial period.
    +						text = text[1:]
    +					}
    +					l = append(l, text)
    +					text, ok = lines.next()
    +				}
    +				if len(l) > 0 {
    +					e = Text{Lines: l}
    +				}
    +			}
    +			if e != nil {
    +				section.Elem = append(section.Elem, e)
    +			}
    +			text, ok = lines.nextNonEmpty()
    +		}
    +		if isHeading.MatchString(text) {
    +			lines.back()
    +		}
    +		sections = append(sections, section)
    +	}
    +	return sections, nil
    +}
    +
    +func parseHeader(doc *Doc, lines *Lines) error {
    +	var ok bool
    +	// First non-empty line starts header.
    +	doc.Title, ok = lines.nextNonEmpty()
    +	if !ok {
    +		return errors.New("unexpected EOF; expected title")
    +	}
    +	for {
    +		text, ok := lines.next()
    +		if !ok {
    +			return errors.New("unexpected EOF")
    +		}
    +		if text == "" {
    +			break
    +		}
    +		const tagPrefix = "Tags:"
    +		if strings.HasPrefix(text, tagPrefix) {
    +			tags := strings.Split(text[len(tagPrefix):], ",")
    +			for i := range tags {
    +				tags[i] = strings.TrimSpace(tags[i])
    +			}
    +			doc.Tags = append(doc.Tags, tags...)
    +		} else if t, ok := parseTime(text); ok {
    +			doc.Time = t
    +		} else if doc.Subtitle == "" {
    +			doc.Subtitle = text
    +		} else {
    +			return fmt.Errorf("unexpected header line: %q", text)
    +		}
    +	}
    +	return nil
    +}
    +
    +func parseAuthors(lines *Lines) (authors []Author, err error) {
    +	// This grammar demarcates authors with blanks.
    +
    +	// Skip blank lines.
    +	if _, ok := lines.nextNonEmpty(); !ok {
    +		return nil, errors.New("unexpected EOF")
    +	}
    +	lines.back()
    +
    +	var a *Author
    +	for {
    +		text, ok := lines.next()
    +		if !ok {
    +			return nil, errors.New("unexpected EOF")
    +		}
    +
    +		// If we find a section heading, we're done.
    +		if strings.HasPrefix(text, "* ") {
    +			lines.back()
    +			break
    +		}
    +
    +		// If we encounter a blank we're done with this author.
    +		if a != nil && len(text) == 0 {
    +			authors = append(authors, *a)
    +			a = nil
    +			continue
    +		}
    +		if a == nil {
    +			a = new(Author)
    +		}
    +
    +		// Parse the line. Those that
    +		// - begin with @ are twitter names,
    +		// - contain slashes are links, or
    +		// - contain an @ symbol are an email address.
    +		// The rest is just text.
    +		var el Elem
    +		switch {
    +		case strings.HasPrefix(text, "@"):
    +			el = parseURL("http://twitter.com/" + text[1:])
    +		case strings.Contains(text, ":"):
    +			el = parseURL(text)
    +		case strings.Contains(text, "@"):
    +			el = parseURL("mailto:" + text)
    +		}
    +		if l, ok := el.(Link); ok {
    +			l.Label = text
    +			el = l
    +		}
    +		if el == nil {
    +			el = Text{Lines: []string{text}}
    +		}
    +		a.Elem = append(a.Elem, el)
    +	}
    +	if a != nil {
    +		authors = append(authors, *a)
    +	}
    +	return authors, nil
    +}
    +
    +func parseURL(text string) Elem {
    +	u, err := url.Parse(text)
    +	if err != nil {
    +		log.Printf("Parse(%q): %v", text, err)
    +		return nil
    +	}
    +	return Link{URL: u}
    +}
    +
    +func parseTime(text string) (t time.Time, ok bool) {
    +	t, err := time.Parse("15:04 2 Jan 2006", text)
    +	if err == nil {
    +		return t, true
    +	}
    +	t, err = time.Parse("2 Jan 2006", text)
    +	if err == nil {
    +		// at 11am UTC it is the same date everywhere
    +		t = t.Add(time.Hour * 11)
    +		return t, true
    +	}
    +	return time.Time{}, false
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/style.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/style.go
    new file mode 100644
    index 00000000..1cd240de
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/style.go
    @@ -0,0 +1,166 @@
    +// Copyright 2012 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import (
    +	"bytes"
    +	"html"
    +	"html/template"
    +	"strings"
    +	"unicode"
    +	"unicode/utf8"
    +)
    +
    +/*
    +	Fonts are demarcated by an initial and final char bracketing a
    +	space-delimited word, plus possibly some terminal punctuation.
    +	The chars are
    +		_ for italic
    +		* for bold
    +		` (back quote) for fixed width.
    +	Inner appearances of the char become spaces. For instance,
    +		_this_is_italic_!
    +	becomes
    +		this is italic!
    +*/
    +
    +func init() {
    +	funcs["style"] = Style
    +}
    +
    +// Style returns s with HTML entities escaped and font indicators turned into
    +// HTML font tags.
    +func Style(s string) template.HTML {
    +	return template.HTML(font(html.EscapeString(s)))
    +}
    +
    +// font returns s with font indicators turned into HTML font tags.
    +func font(s string) string {
    +	if strings.IndexAny(s, "[`_*") == -1 {
    +		return s
    +	}
    +	words := split(s)
    +	var b bytes.Buffer
    +Word:
    +	for w, word := range words {
    +		if len(word) < 2 {
    +			continue Word
    +		}
    +		if link, _ := parseInlineLink(word); link != "" {
    +			words[w] = link
    +			continue Word
    +		}
    +		const punctuation = `.,;:()!?—–'"`
    +		const marker = "_*`"
    +		// Initial punctuation is OK but must be peeled off.
    +		first := strings.IndexAny(word, marker)
    +		if first == -1 {
    +			continue Word
    +		}
    +		// Is the marker prefixed only by punctuation?
    +		for _, r := range word[:first] {
    +			if !strings.ContainsRune(punctuation, r) {
    +				continue Word
    +			}
    +		}
    +		open, word := word[:first], word[first:]
    +		char := word[0] // ASCII is OK.
    +		close := ""
    +		switch char {
    +		default:
    +			continue Word
    +		case '_':
    +			open += ""
    +			close = ""
    +		case '*':
    +			open += ""
    +			close = ""
    +		case '`':
    +			open += ""
    +			close = ""
    +		}
    +		// Terminal punctuation is OK but must be peeled off.
    +		last := strings.LastIndex(word, word[:1])
    +		if last == 0 {
    +			continue Word
    +		}
    +		head, tail := word[:last+1], word[last+1:]
    +		for _, r := range tail {
    +			if !strings.ContainsRune(punctuation, r) {
    +				continue Word
    +			}
    +		}
    +		b.Reset()
    +		b.WriteString(open)
    +		var wid int
    +		for i := 1; i < len(head)-1; i += wid {
    +			var r rune
    +			r, wid = utf8.DecodeRuneInString(head[i:])
    +			if r != rune(char) {
    +				// Ordinary character.
    +				b.WriteRune(r)
    +				continue
    +			}
    +			if head[i+1] != char {
    +				// Inner char becomes space.
    +				b.WriteRune(' ')
    +				continue
    +			}
    +			// Doubled char becomes real char.
    +			// Not worth worrying about "_x__".
    +			b.WriteByte(char)
    +			wid++ // Consumed two chars, both ASCII.
    +		}
    +		b.WriteString(close) // Write closing tag.
    +		b.WriteString(tail)  // Restore trailing punctuation.
    +		words[w] = b.String()
    +	}
    +	return strings.Join(words, "")
    +}
    +
    +// split is like strings.Fields but also returns the runs of spaces
    +// and treats inline links as distinct words.
    +func split(s string) []string {
    +	var (
    +		words = make([]string, 0, 10)
    +		start = 0
    +	)
    +
    +	// appendWord appends the string s[start:end] to the words slice.
    +	// If the word contains the beginning of a link, the non-link portion
    +	// of the word and the entire link are appended as separate words,
    +	// and the start index is advanced to the end of the link.
    +	appendWord := func(end int) {
    +		if j := strings.Index(s[start:end], "[["); j > -1 {
    +			if _, l := parseInlineLink(s[start+j:]); l > 0 {
    +				// Append portion before link, if any.
    +				if j > 0 {
    +					words = append(words, s[start:start+j])
    +				}
    +				// Append link itself.
    +				words = append(words, s[start+j:start+j+l])
    +				// Advance start index to end of link.
    +				start = start + j + l
    +				return
    +			}
    +		}
    +		// No link; just add the word.
    +		words = append(words, s[start:end])
    +		start = end
    +	}
    +
    +	wasSpace := false
    +	for i, r := range s {
    +		isSpace := unicode.IsSpace(r)
    +		if i > start && isSpace != wasSpace {
    +			appendWord(i)
    +		}
    +		wasSpace = isSpace
    +	}
    +	for start < len(s) {
    +		appendWord(len(s))
    +	}
    +	return words
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/style_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/style_test.go
    new file mode 100644
    index 00000000..d04db72d
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/present/style_test.go
    @@ -0,0 +1,116 @@
    +// Copyright 2012 The Go Authors. All rights reserved.
    +// Use of this source code is governed by a BSD-style
    +// license that can be found in the LICENSE file.
    +
    +package present
    +
    +import (
    +	"fmt"
    +	"reflect"
    +	"testing"
    +)
    +
    +func TestSplit(t *testing.T) {
    +	var tests = []struct {
    +		in  string
    +		out []string
    +	}{
    +		{"", []string{}},
    +		{" ", []string{" "}},
    +		{"abc", []string{"abc"}},
    +		{"abc def", []string{"abc", " ", "def"}},
    +		{"abc def ", []string{"abc", " ", "def", " "}},
    +		{"hey [[http://golang.org][Gophers]] around",
    +			[]string{"hey", " ", "[[http://golang.org][Gophers]]", " ", "around"}},
    +		{"A [[http://golang.org/doc][two words]] link",
    +			[]string{"A", " ", "[[http://golang.org/doc][two words]]", " ", "link"}},
    +		{"Visit [[http://golang.org/doc]] now",
    +			[]string{"Visit", " ", "[[http://golang.org/doc]]", " ", "now"}},
    +		{"not [[http://golang.org/doc][a [[link]] ]] around",
    +			[]string{"not", " ", "[[http://golang.org/doc][a [[link]]", " ", "]]", " ", "around"}},
    +		{"[[http://golang.org][foo bar]]",
    +			[]string{"[[http://golang.org][foo bar]]"}},
    +		{"ends with [[http://golang.org][link]]",
    +			[]string{"ends", " ", "with", " ", "[[http://golang.org][link]]"}},
    +		{"my talk ([[http://talks.golang.org/][slides here]])",
    +			[]string{"my", " ", "talk", " ", "(", "[[http://talks.golang.org/][slides here]]", ")"}},
    +	}
    +	for _, test := range tests {
    +		out := split(test.in)
    +		if !reflect.DeepEqual(out, test.out) {
    +			t.Errorf("split(%q):\ngot\t%q\nwant\t%q", test.in, out, test.out)
    +		}
    +	}
    +}
    +
    +func TestFont(t *testing.T) {
    +	var tests = []struct {
    +		in  string
    +		out string
    +	}{
    +		{"", ""},
    +		{" ", " "},
    +		{"\tx", "\tx"},
    +		{"_a_", "a"},
    +		{"*a*", "a"},
    +		{"`a`", "a"},
    +		{"_a_b_", "a b"},
    +		{"_a__b_", "a_b"},
    +		{"_a___b_", "a_ b"},
    +		{"*a**b*?", "a*b?"},
    +		{"_a_<>_b_.", "a <> b."},
    +		{"(_a_)", "(a)"},
    +		{"((_a_), _b_, _c_).", "((a), b, c)."},
    +		{"(_a)", "(_a)"},
    +		{"(_a)", "(_a)"},
    +		{"_Why_use_scoped__ptr_? Use plain ***ptr* instead.", "Why use scoped_ptr? Use plain *ptr instead."},
    +		{"_hey_ [[http://golang.org][*Gophers*]] *around*",
    +			`hey Gophers around`},
    +		{"_hey_ [[http://golang.org][so _many_ *Gophers*]] *around*",
    +			`hey so many Gophers around`},
    +		{"Visit [[http://golang.org]] now",
    +			`Visit golang.org now`},
    +		{"my talk ([[http://talks.golang.org/][slides here]])",
    +			`my talk (slides here)`},
    +	}
    +	for _, test := range tests {
    +		out := font(test.in)
    +		if out != test.out {
    +			t.Errorf("font(%q):\ngot\t%q\nwant\t%q", test.in, out, test.out)
    +		}
    +	}
    +}
    +
    +func TestStyle(t *testing.T) {
    +	var tests = []struct {
    +		in  string
    +		out string
    +	}{
    +		{"", ""},
    +		{" ", " "},
    +		{"\tx", "\tx"},
    +		{"_a_", "a"},
    +		{"*a*", "a"},
    +		{"`a`", "a"},
    +		{"_a_b_", "a b"},
    +		{"_a__b_", "a_b"},
    +		{"_a___b_", "a_ b"},
    +		{"*a**b*?", "a*b?"},
    +		{"_a_<>_b_.", "a <> b."},
    +		{"(_a_<>_b_)", "(a <> b)"},
    +		{"((_a_), _b_, _c_).", "((a), b, c)."},
    +		{"(_a)", "(_a)"},
    +	}
    +	for _, test := range tests {
    +		out := string(Style(test.in))
    +		if out != test.out {
    +			t.Errorf("style(%q):\ngot\t%q\nwant\t%q", test.in, out, test.out)
    +		}
    +	}
    +}
    +
    +func ExampleStyle() {
    +	const s = "*Gophers* are _clearly_ > *cats*!"
    +	fmt.Println(Style(s))
    +	// Output: Gophers are clearly > cats!
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/README
    new file mode 100644
    index 00000000..a6edb135
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/README
    @@ -0,0 +1 @@
    +code.google.com/p/go.tools/refactor: libraries for refactoring tools.
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/eg.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/eg.go
    new file mode 100644
    index 00000000..ebb93b5b
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/eg.go
    @@ -0,0 +1,326 @@
    +// Package eg implements the example-based refactoring tool whose
    +// command-line is defined in code.google.com/p/go.tools/cmd/eg.
    +package eg
    +
    +import (
    +	"bytes"
    +	"fmt"
    +	"go/ast"
    +	"go/printer"
    +	"go/token"
    +	"os"
    +
    +	"code.google.com/p/go.tools/go/loader"
    +	"code.google.com/p/go.tools/go/types"
    +)
    +
    +const Help = `
    +This tool implements example-based refactoring of expressions.
    +
    +The transformation is specified as a Go file defining two functions,
    +'before' and 'after', of identical types.  Each function body consists
    +of a single statement: either a return statement with a single
    +(possibly multi-valued) expression, or an expression statement.  The
    +'before' expression specifies a pattern and the 'after' expression its
    +replacement.
    +
    +	package P
    + 	import ( "errors"; "fmt" )
    + 	func before(s string) error { return fmt.Errorf("%s", s) }
    + 	func after(s string)  error { return errors.New(s) }
    +
    +The expression statement form is useful when the the expression has no
    +result, for example:
    +
    + 	func before(msg string) { log.Fatalf("%s", msg) }
    + 	func after(msg string)  { log.Fatal(msg) }
    +
    +The parameters of both functions are wildcards that may match any
    +expression assignable to that type.  If the pattern contains multiple
    +occurrences of the same parameter, each must match the same expression
    +in the input for the pattern to match.  If the replacement contains
    +multiple occurrences of the same parameter, the expression will be
    +duplicated, possibly changing the side-effects.
    +
    +The tool analyses all Go code in the packages specified by the
    +arguments, replacing all occurrences of the pattern with the
    +substitution.
    +
    +So, the transform above would change this input:
    +	err := fmt.Errorf("%s", "error: " + msg)
    +to this output:
    +	err := errors.New("error: " + msg)
    +
    +Identifiers, including qualified identifiers (p.X) are considered to
    +match only if they denote the same object.  This allows correct
    +matching even in the presence of dot imports, named imports and
    +locally shadowed package names in the input program.
    +
    +Matching of type syntax is semantic, not syntactic: type syntax in the
    +pattern matches type syntax in the input if the types are identical.
    +Thus, func(x int) matches func(y int).
    +
    +This tool was inspired by other example-based refactoring tools,
    +'gofmt -r' for Go and Refaster for Java.
    +
    +
    +LIMITATIONS
    +===========
    +
    +EXPRESSIVENESS
    +
    +Only refactorings that replace one expression with another, regardless
    +of the expression's context, may be expressed.  Refactoring arbitrary
    +statements (or sequences of statements) is a less well-defined problem
    +and is less amenable to this approach.
    +
    +A pattern that contains a function literal (and hence statements)
    +never matches.
    +
    +There is no way to generalize over related types, e.g. to express that
    +a wildcard may have any integer type, for example.
    +
    +It is not possible to replace an expression by one of a different
    +type, even in contexts where this is legal, such as x in fmt.Print(x).
    +
    +
    +SAFETY
    +
    +Verifying that a transformation does not introduce type errors is very
    +complex in the general case.  An innocuous-looking replacement of one
    +constant by another (e.g. 1 to 2) may cause type errors relating to
    +array types and indices, for example.  The tool performs only very
    +superficial checks of type preservation.
    +
    +
    +IMPORTS
    +
    +Although the matching algorithm is fully aware of scoping rules, the
    +replacement algorithm is not, so the replacement code may contain
    +incorrect identifier syntax for imported objects if there are dot
    +imports, named imports or locally shadowed package names in the input
    +program.
    +
    +Imports are added as needed, but they are not removed as needed.
    +Run 'goimports' on the modified file for now.
    +
    +Dot imports are forbidden in the template.
    +`
    +
    +// TODO(adonovan): allow the tool to be invoked using relative package
    +// directory names (./foo).  Requires changes to go/loader.
    +
    +// TODO(adonovan): expand upon the above documentation as an HTML page.
    +
    +// TODO(adonovan): eliminate dependency on loader.PackageInfo.
    +// Move its ObjectOf/IsType/TypeOf methods into go/types.
    +
    +// A Transformer represents a single example-based transformation.
    +type Transformer struct {
    +	fset           *token.FileSet
    +	verbose        bool
    +	info           loader.PackageInfo // combined type info for template/input/output ASTs
    +	seenInfos      map[*types.Info]bool
    +	wildcards      map[*types.Var]bool                // set of parameters in func before()
    +	env            map[string]ast.Expr                // maps parameter name to wildcard binding
    +	importedObjs   map[types.Object]*ast.SelectorExpr // objects imported by after().
    +	before, after  ast.Expr
    +	allowWildcards bool
    +
    +	// Working state of Transform():
    +	nsubsts    int            // number of substitutions made
    +	currentPkg *types.Package // package of current call
    +}
    +
    +// NewTransformer returns a transformer based on the specified template,
    +// a package containing "before" and "after" functions as described
    +// in the package documentation.
    +//
    +func NewTransformer(fset *token.FileSet, template *loader.PackageInfo, verbose bool) (*Transformer, error) {
    +	// Check the template.
    +	beforeSig := funcSig(template.Pkg, "before")
    +	if beforeSig == nil {
    +		return nil, fmt.Errorf("no 'before' func found in template")
    +	}
    +	afterSig := funcSig(template.Pkg, "after")
    +	if afterSig == nil {
    +		return nil, fmt.Errorf("no 'after' func found in template")
    +	}
    +
    +	// TODO(adonovan): should we also check the names of the params match?
    +	if !types.Identical(afterSig, beforeSig) {
    +		return nil, fmt.Errorf("before %s and after %s functions have different signatures",
    +			beforeSig, afterSig)
    +	}
    +
    +	templateFile := template.Files[0]
    +	for _, imp := range templateFile.Imports {
    +		if imp.Name != nil && imp.Name.Name == "." {
    +			// Dot imports are currently forbidden.  We
    +			// make the simplifying assumption that all
    +			// imports are regular, without local renames.
    +			//TODO document
    +			return nil, fmt.Errorf("dot-import (of %s) in template", imp.Path.Value)
    +		}
    +	}
    +	var beforeDecl, afterDecl *ast.FuncDecl
    +	for _, decl := range templateFile.Decls {
    +		if decl, ok := decl.(*ast.FuncDecl); ok {
    +			switch decl.Name.Name {
    +			case "before":
    +				beforeDecl = decl
    +			case "after":
    +				afterDecl = decl
    +			}
    +		}
    +	}
    +
    +	before, err := soleExpr(beforeDecl)
    +	if err != nil {
    +		return nil, fmt.Errorf("before: %s", err)
    +	}
    +	after, err := soleExpr(afterDecl)
    +	if err != nil {
    +		return nil, fmt.Errorf("after: %s", err)
    +	}
    +
    +	wildcards := make(map[*types.Var]bool)
    +	for i := 0; i < beforeSig.Params().Len(); i++ {
    +		wildcards[beforeSig.Params().At(i)] = true
    +	}
    +
    +	// checkExprTypes returns an error if Tb (type of before()) is not
    +	// safe to replace with Ta (type of after()).
    +	//
    +	// Only superficial checks are performed, and they may result in both
    +	// false positives and negatives.
    +	//
    +	// Ideally, we would only require that the replacement be assignable
    +	// to the context of a specific pattern occurrence, but the type
    +	// checker doesn't record that information and it's complex to deduce.
    +	// A Go type cannot capture all the constraints of a given expression
    +	// context, which may include the size, constness, signedness,
    +	// namedness or constructor of its type, and even the specific value
    +	// of the replacement.  (Consider the rule that array literal keys
    +	// must be unique.)  So we cannot hope to prove the safety of a
    +	// transformation in general.
    +	Tb := template.TypeOf(before)
    +	Ta := template.TypeOf(after)
    +	if types.AssignableTo(Tb, Ta) {
    +		// safe: replacement is assignable to pattern.
    +	} else if tuple, ok := Tb.(*types.Tuple); ok && tuple.Len() == 0 {
    +		// safe: pattern has void type (must appear in an ExprStmt).
    +	} else {
    +		return nil, fmt.Errorf("%s is not a safe replacement for %s", Ta, Tb)
    +	}
    +
    +	tr := &Transformer{
    +		fset:           fset,
    +		verbose:        verbose,
    +		wildcards:      wildcards,
    +		allowWildcards: true,
    +		seenInfos:      make(map[*types.Info]bool),
    +		importedObjs:   make(map[types.Object]*ast.SelectorExpr),
    +		before:         before,
    +		after:          after,
    +	}
    +
    +	// Combine type info from the template and input packages, and
    +	// type info for the synthesized ASTs too.  This saves us
    +	// having to book-keep where each ast.Node originated as we
    +	// construct the resulting hybrid AST.
    +	//
    +	// TODO(adonovan): move type utility methods of PackageInfo to
    +	// types.Info, or at least into go/types.typeutil.
    +	tr.info.Info = types.Info{
    +		Types:      make(map[ast.Expr]types.TypeAndValue),
    +		Defs:       make(map[*ast.Ident]types.Object),
    +		Uses:       make(map[*ast.Ident]types.Object),
    +		Selections: make(map[*ast.SelectorExpr]*types.Selection),
    +	}
    +	mergeTypeInfo(&tr.info.Info, &template.Info)
    +
    +	// Compute set of imported objects required by after().
    +	// TODO reject dot-imports in pattern
    +	ast.Inspect(after, func(n ast.Node) bool {
    +		if n, ok := n.(*ast.SelectorExpr); ok {
    +			sel := tr.info.Selections[n]
    +			if sel.Kind() == types.PackageObj {
    +				tr.importedObjs[sel.Obj()] = n
    +				return false // prune
    +			}
    +		}
    +		return true // recur
    +	})
    +
    +	return tr, nil
    +}
    +
    +// WriteAST is a convenience function that writes AST f to the specified file.
    +func WriteAST(fset *token.FileSet, filename string, f *ast.File) (err error) {
    +	fh, err := os.Create(filename)
    +	if err != nil {
    +		return err
    +	}
    +	defer func() {
    +		if err2 := fh.Close(); err != nil {
    +			err = err2 // prefer earlier error
    +		}
    +	}()
    +	return printer.Fprint(fh, fset, f)
    +}
    +
    +// -- utilities --------------------------------------------------------
    +
    +// funcSig returns the signature of the specified package-level function.
    +func funcSig(pkg *types.Package, name string) *types.Signature {
    +	if f, ok := pkg.Scope().Lookup(name).(*types.Func); ok {
    +		return f.Type().(*types.Signature)
    +	}
    +	return nil
    +}
    +
    +// soleExpr returns the sole expression in the before/after template function.
    +func soleExpr(fn *ast.FuncDecl) (ast.Expr, error) {
    +	if fn.Body == nil {
    +		return nil, fmt.Errorf("no body")
    +	}
    +	if len(fn.Body.List) != 1 {
    +		return nil, fmt.Errorf("must contain a single statement")
    +	}
    +	switch stmt := fn.Body.List[0].(type) {
    +	case *ast.ReturnStmt:
    +		if len(stmt.Results) != 1 {
    +			return nil, fmt.Errorf("return statement must have a single operand")
    +		}
    +		return stmt.Results[0], nil
    +
    +	case *ast.ExprStmt:
    +		return stmt.X, nil
    +	}
    +
    +	return nil, fmt.Errorf("must contain a single return or expression statement")
    +}
    +
    +// mergeTypeInfo adds type info from src to dst.
    +func mergeTypeInfo(dst, src *types.Info) {
    +	for k, v := range src.Types {
    +		dst.Types[k] = v
    +	}
    +	for k, v := range src.Defs {
    +		dst.Defs[k] = v
    +	}
    +	for k, v := range src.Uses {
    +		dst.Uses[k] = v
    +	}
    +	for k, v := range src.Selections {
    +		dst.Selections[k] = v
    +	}
    +}
    +
    +// (debugging only)
    +func astString(fset *token.FileSet, n ast.Node) string {
    +	var buf bytes.Buffer
    +	printer.Fprint(&buf, fset, n)
    +	return buf.String()
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/eg_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/eg_test.go
    new file mode 100644
    index 00000000..62b22ae6
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/eg_test.go
    @@ -0,0 +1,146 @@
    +package eg_test
    +
    +import (
    +	"bytes"
    +	"flag"
    +	"go/parser"
    +	"go/token"
    +	"os"
    +	"os/exec"
    +	"path/filepath"
    +	"runtime"
    +	"strings"
    +	"testing"
    +
    +	"code.google.com/p/go.tools/go/exact"
    +	"code.google.com/p/go.tools/go/loader"
    +	"code.google.com/p/go.tools/go/types"
    +	"code.google.com/p/go.tools/refactor/eg"
    +)
    +
    +// TODO(adonovan): more tests:
    +// - of command-line tool
    +// - of all parts of syntax
    +// - of applying a template to a package it imports:
    +//   the replacement syntax should use unqualified names for its objects.
    +
    +var (
    +	updateFlag  = flag.Bool("update", false, "update the golden files")
    +	verboseFlag = flag.Bool("verbose", false, "show matcher information")
    +)
    +
    +func Test(t *testing.T) {
    +	switch runtime.GOOS {
    +	case "windows":
    +		t.Skipf("skipping test on %q (no /usr/bin/diff)", runtime.GOOS)
    +	}
    +
    +	conf := loader.Config{
    +		Fset:          token.NewFileSet(),
    +		ParserMode:    parser.ParseComments,
    +		SourceImports: true,
    +	}
    +
    +	// Each entry is a single-file package.
    +	// (Multi-file packages aren't interesting for this test.)
    +	// Order matters: each non-template package is processed using
    +	// the preceding template package.
    +	for _, filename := range []string{
    +		"testdata/A.template",
    +		"testdata/A1.go",
    +		"testdata/A2.go",
    +
    +		"testdata/B.template",
    +		"testdata/B1.go",
    +
    +		"testdata/C.template",
    +		"testdata/C1.go",
    +
    +		"testdata/D.template",
    +		"testdata/D1.go",
    +
    +		"testdata/E.template",
    +		"testdata/E1.go",
    +
    +		"testdata/bad_type.template",
    +		"testdata/no_before.template",
    +		"testdata/no_after_return.template",
    +		"testdata/type_mismatch.template",
    +		"testdata/expr_type_mismatch.template",
    +	} {
    +		pkgname := strings.TrimSuffix(filepath.Base(filename), ".go")
    +		if err := conf.CreateFromFilenames(pkgname, filename); err != nil {
    +			t.Fatal(err)
    +		}
    +	}
    +	iprog, err := conf.Load()
    +	if err != nil {
    +		t.Fatal(err)
    +	}
    +
    +	var xform *eg.Transformer
    +	for _, info := range iprog.Created {
    +		file := info.Files[0]
    +		filename := iprog.Fset.File(file.Pos()).Name() // foo.go
    +
    +		if strings.HasSuffix(filename, "template") {
    +			// a new template
    +			shouldFail, _ := info.Pkg.Scope().Lookup("shouldFail").(*types.Const)
    +			xform, err = eg.NewTransformer(iprog.Fset, info, *verboseFlag)
    +			if err != nil {
    +				if shouldFail == nil {
    +					t.Errorf("NewTransformer(%s): %s", filename, err)
    +				} else if want := exact.StringVal(shouldFail.Val()); !strings.Contains(err.Error(), want) {
    +					t.Errorf("NewTransformer(%s): got error %q, want error %q", filename, err, want)
    +				}
    +			} else if shouldFail != nil {
    +				t.Errorf("NewTransformer(%s) succeeded unexpectedly; want error %q",
    +					filename, shouldFail.Val())
    +			}
    +			continue
    +		}
    +
    +		if xform == nil {
    +			t.Errorf("%s: no previous template", filename)
    +			continue
    +		}
    +
    +		// apply previous template to this package
    +		n := xform.Transform(&info.Info, info.Pkg, file)
    +		if n == 0 {
    +			t.Errorf("%s: no matches", filename)
    +			continue
    +		}
    +
    +		got := filename + "t"       // foo.got
    +		golden := filename + "lden" // foo.golden
    +
    +		// Write actual output to foo.got.
    +		if err := eg.WriteAST(iprog.Fset, got, file); err != nil {
    +			t.Error(err)
    +		}
    +		defer os.Remove(got)
    +
    +		// Compare foo.got with foo.golden.
    +		var cmd *exec.Cmd
    +		switch runtime.GOOS {
    +		case "plan9":
    +			cmd = exec.Command("/bin/diff", "-c", golden, got)
    +		default:
    +			cmd = exec.Command("/usr/bin/diff", "-u", golden, got)
    +		}
    +		buf := new(bytes.Buffer)
    +		cmd.Stdout = buf
    +		cmd.Stderr = os.Stderr
    +		if err := cmd.Run(); err != nil {
    +			t.Errorf("eg tests for %s failed: %s.\n%s\n", filename, err, buf)
    +
    +			if *updateFlag {
    +				t.Logf("Updating %s...", golden)
    +				if err := exec.Command("/bin/cp", got, golden).Run(); err != nil {
    +					t.Errorf("Update failed: %s", err)
    +				}
    +			}
    +		}
    +	}
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/match.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/match.go
    new file mode 100644
    index 00000000..7476f9ac
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/match.go
    @@ -0,0 +1,226 @@
    +package eg
    +
    +import (
    +	"fmt"
    +	"go/ast"
    +	"go/token"
    +	"log"
    +	"os"
    +	"reflect"
    +
    +	"code.google.com/p/go.tools/go/exact"
    +	"code.google.com/p/go.tools/go/loader"
    +	"code.google.com/p/go.tools/go/types"
    +)
    +
    +// matchExpr reports whether pattern x matches y.
    +//
    +// If tr.allowWildcards, Idents in x that refer to parameters are
    +// treated as wildcards, and match any y that is assignable to the
    +// parameter type; matchExpr records this correspondence in tr.env.
    +// Otherwise, matchExpr simply reports whether the two trees are
    +// equivalent.
    +//
    +// A wildcard appearing more than once in the pattern must
    +// consistently match the same tree.
    +//
    +func (tr *Transformer) matchExpr(x, y ast.Expr) bool {
    +	if x == nil && y == nil {
    +		return true
    +	}
    +	if x == nil || y == nil {
    +		return false
    +	}
    +	x = unparen(x)
    +	y = unparen(y)
    +
    +	// Is x a wildcard?  (a reference to a 'before' parameter)
    +	if x, ok := x.(*ast.Ident); ok && x != nil && tr.allowWildcards {
    +		if xobj, ok := tr.info.Uses[x].(*types.Var); ok && tr.wildcards[xobj] {
    +			return tr.matchWildcard(xobj, y)
    +		}
    +	}
    +
    +	// Object identifiers (including pkg-qualified ones)
    +	// are handled semantically, not syntactically.
    +	xobj := isRef(x, &tr.info)
    +	yobj := isRef(y, &tr.info)
    +	if xobj != nil {
    +		return xobj == yobj
    +	}
    +	if yobj != nil {
    +		return false
    +	}
    +
    +	// TODO(adonovan): audit: we cannot assume these ast.Exprs
    +	// contain non-nil pointers.  e.g. ImportSpec.Name may be a
    +	// nil *ast.Ident.
    +
    +	if reflect.TypeOf(x) != reflect.TypeOf(y) {
    +		return false
    +	}
    +	switch x := x.(type) {
    +	case *ast.Ident:
    +		log.Fatalf("unexpected Ident: %s", astString(tr.fset, x))
    +
    +	case *ast.BasicLit:
    +		y := y.(*ast.BasicLit)
    +		xval := exact.MakeFromLiteral(x.Value, x.Kind)
    +		yval := exact.MakeFromLiteral(y.Value, y.Kind)
    +		return exact.Compare(xval, token.EQL, yval)
    +
    +	case *ast.FuncLit:
    +		// func literals (and thus statement syntax) never match.
    +		return false
    +
    +	case *ast.CompositeLit:
    +		y := y.(*ast.CompositeLit)
    +		return (x.Type == nil) == (y.Type == nil) &&
    +			(x.Type == nil || tr.matchType(x.Type, y.Type)) &&
    +			tr.matchExprs(x.Elts, y.Elts)
    +
    +	case *ast.SelectorExpr:
    +		y := y.(*ast.SelectorExpr)
    +		return tr.matchExpr(x.X, y.X) &&
    +			tr.info.Selections[x].Obj() == tr.info.Selections[y].Obj()
    +
    +	case *ast.IndexExpr:
    +		y := y.(*ast.IndexExpr)
    +		return tr.matchExpr(x.X, y.X) &&
    +			tr.matchExpr(x.Index, y.Index)
    +
    +	case *ast.SliceExpr:
    +		y := y.(*ast.SliceExpr)
    +		return tr.matchExpr(x.X, y.X) &&
    +			tr.matchExpr(x.Low, y.Low) &&
    +			tr.matchExpr(x.High, y.High) &&
    +			tr.matchExpr(x.Max, y.Max) &&
    +			x.Slice3 == y.Slice3
    +
    +	case *ast.TypeAssertExpr:
    +		y := y.(*ast.TypeAssertExpr)
    +		return tr.matchExpr(x.X, y.X) &&
    +			tr.matchType(x.Type, y.Type)
    +
    +	case *ast.CallExpr:
    +		y := y.(*ast.CallExpr)
    +		match := tr.matchExpr // function call
    +		if tr.info.IsType(x.Fun) {
    +			match = tr.matchType // type conversion
    +		}
    +		return x.Ellipsis.IsValid() == y.Ellipsis.IsValid() &&
    +			match(x.Fun, y.Fun) &&
    +			tr.matchExprs(x.Args, y.Args)
    +
    +	case *ast.StarExpr:
    +		y := y.(*ast.StarExpr)
    +		return tr.matchExpr(x.X, y.X)
    +
    +	case *ast.UnaryExpr:
    +		y := y.(*ast.UnaryExpr)
    +		return x.Op == y.Op &&
    +			tr.matchExpr(x.X, y.X)
    +
    +	case *ast.BinaryExpr:
    +		y := y.(*ast.BinaryExpr)
    +		return x.Op == y.Op &&
    +			tr.matchExpr(x.X, y.X) &&
    +			tr.matchExpr(x.Y, y.Y)
    +
    +	case *ast.KeyValueExpr:
    +		y := y.(*ast.KeyValueExpr)
    +		return tr.matchExpr(x.Key, y.Key) &&
    +			tr.matchExpr(x.Value, y.Value)
    +	}
    +
    +	panic(fmt.Sprintf("unhandled AST node type: %T", x))
    +}
    +
    +func (tr *Transformer) matchExprs(xx, yy []ast.Expr) bool {
    +	if len(xx) != len(yy) {
    +		return false
    +	}
    +	for i := range xx {
    +		if !tr.matchExpr(xx[i], yy[i]) {
    +			return false
    +		}
    +	}
    +	return true
    +}
    +
    +// matchType reports whether the two type ASTs denote identical types.
    +func (tr *Transformer) matchType(x, y ast.Expr) bool {
    +	tx := tr.info.Types[x].Type
    +	ty := tr.info.Types[y].Type
    +	return types.Identical(tx, ty)
    +}
    +
    +func (tr *Transformer) matchWildcard(xobj *types.Var, y ast.Expr) bool {
    +	name := xobj.Name()
    +
    +	if tr.verbose {
    +		fmt.Fprintf(os.Stderr, "%s: wildcard %s -> %s?: ",
    +			tr.fset.Position(y.Pos()), name, astString(tr.fset, y))
    +	}
    +
    +	// Check that y is assignable to the declared type of the param.
    +	if yt := tr.info.TypeOf(y); !types.AssignableTo(yt, xobj.Type()) {
    +		if tr.verbose {
    +			fmt.Fprintf(os.Stderr, "%s not assignable to %s\n", yt, xobj.Type())
    +		}
    +		return false
    +	}
    +
    +	// A wildcard matches any expression.
    +	// If it appears multiple times in the pattern, it must match
    +	// the same expression each time.
    +	if old, ok := tr.env[name]; ok {
    +		// found existing binding
    +		tr.allowWildcards = false
    +		r := tr.matchExpr(old, y)
    +		if tr.verbose {
    +			fmt.Fprintf(os.Stderr, "%t secondary match, primary was %s\n",
    +				r, astString(tr.fset, old))
    +		}
    +		tr.allowWildcards = true
    +		return r
    +	}
    +
    +	if tr.verbose {
    +		fmt.Fprintf(os.Stderr, "primary match\n")
    +	}
    +
    +	tr.env[name] = y // record binding
    +	return true
    +}
    +
    +// -- utilities --------------------------------------------------------
    +
    +// unparen returns e with any enclosing parentheses stripped.
    +// TODO(adonovan): move to astutil package.
    +func unparen(e ast.Expr) ast.Expr {
    +	for {
    +		p, ok := e.(*ast.ParenExpr)
    +		if !ok {
    +			break
    +		}
    +		e = p.X
    +	}
    +	return e
    +}
    +
    +// isRef returns the object referred to by this (possibly qualified)
    +// identifier, or nil if the node is not a referring identifier.
    +func isRef(n ast.Node, info *loader.PackageInfo) types.Object {
    +	switch n := n.(type) {
    +	case *ast.Ident:
    +		return info.Uses[n]
    +
    +	case *ast.SelectorExpr:
    +		sel := info.Selections[n]
    +		if sel.Kind() == types.PackageObj {
    +			return sel.Obj()
    +		}
    +	}
    +	return nil
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/rewrite.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/rewrite.go
    new file mode 100644
    index 00000000..84a8b291
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/rewrite.go
    @@ -0,0 +1,340 @@
    +package eg
    +
    +// This file defines the AST rewriting pass.
    +// Most of it was plundered directly from
    +// $GOROOT/src/cmd/gofmt/rewrite.go (after convergent evolution).
    +
    +import (
    +	"fmt"
    +	"go/ast"
    +	"go/token"
    +	"os"
    +	"reflect"
    +	"sort"
    +	"strconv"
    +	"strings"
    +
    +	"code.google.com/p/go.tools/astutil"
    +	"code.google.com/p/go.tools/go/types"
    +)
    +
    +// Transform applies the transformation to the specified parsed file,
    +// whose type information is supplied in info, and returns the number
    +// of replacements that were made.
    +//
    +// It mutates the AST in place (the identity of the root node is
    +// unchanged), and may add nodes for which no type information is
    +// available in info.
    +//
    +// Derived from rewriteFile in $GOROOT/src/cmd/gofmt/rewrite.go.
    +//
    +func (tr *Transformer) Transform(info *types.Info, pkg *types.Package, file *ast.File) int {
    +	if !tr.seenInfos[info] {
    +		tr.seenInfos[info] = true
    +		mergeTypeInfo(&tr.info.Info, info)
    +	}
    +	tr.currentPkg = pkg
    +	tr.nsubsts = 0
    +
    +	if tr.verbose {
    +		fmt.Fprintf(os.Stderr, "before: %s\n", astString(tr.fset, tr.before))
    +		fmt.Fprintf(os.Stderr, "after: %s\n", astString(tr.fset, tr.after))
    +	}
    +
    +	var f func(rv reflect.Value) reflect.Value
    +	f = func(rv reflect.Value) reflect.Value {
    +		// don't bother if val is invalid to start with
    +		if !rv.IsValid() {
    +			return reflect.Value{}
    +		}
    +
    +		rv = apply(f, rv)
    +
    +		e := rvToExpr(rv)
    +		if e != nil {
    +			savedEnv := tr.env
    +			tr.env = make(map[string]ast.Expr) // inefficient!  Use a slice of k/v pairs
    +
    +			if tr.matchExpr(tr.before, e) {
    +				if tr.verbose {
    +					fmt.Fprintf(os.Stderr, "%s matches %s",
    +						astString(tr.fset, tr.before), astString(tr.fset, e))
    +					if len(tr.env) > 0 {
    +						fmt.Fprintf(os.Stderr, " with:")
    +						for name, ast := range tr.env {
    +							fmt.Fprintf(os.Stderr, " %s->%s",
    +								name, astString(tr.fset, ast))
    +						}
    +					}
    +					fmt.Fprintf(os.Stderr, "\n")
    +				}
    +				tr.nsubsts++
    +
    +				// Clone the replacement tree, performing parameter substitution.
    +				// We update all positions to n.Pos() to aid comment placement.
    +				rv = tr.subst(tr.env, reflect.ValueOf(tr.after),
    +					reflect.ValueOf(e.Pos()))
    +			}
    +			tr.env = savedEnv
    +		}
    +
    +		return rv
    +	}
    +	file2 := apply(f, reflect.ValueOf(file)).Interface().(*ast.File)
    +
    +	// By construction, the root node is unchanged.
    +	if file != file2 {
    +		panic("BUG")
    +	}
    +
    +	// Add any necessary imports.
    +	// TODO(adonovan): remove no-longer needed imports too.
    +	if tr.nsubsts > 0 {
    +		pkgs := make(map[string]*types.Package)
    +		for obj := range tr.importedObjs {
    +			pkgs[obj.Pkg().Path()] = obj.Pkg()
    +		}
    +
    +		for _, imp := range file.Imports {
    +			path, _ := strconv.Unquote(imp.Path.Value)
    +			delete(pkgs, path)
    +		}
    +		delete(pkgs, pkg.Path()) // don't import self
    +
    +		// NB: AddImport may completely replace the AST!
    +		// It thus renders info and tr.info no longer relevant to file.
    +		var paths []string
    +		for path := range pkgs {
    +			paths = append(paths, path)
    +		}
    +		sort.Strings(paths)
    +		for _, path := range paths {
    +			astutil.AddImport(tr.fset, file, path)
    +		}
    +	}
    +
    +	tr.currentPkg = nil
    +
    +	return tr.nsubsts
    +}
    +
    +// setValue is a wrapper for x.SetValue(y); it protects
    +// the caller from panics if x cannot be changed to y.
    +func setValue(x, y reflect.Value) {
    +	// don't bother if y is invalid to start with
    +	if !y.IsValid() {
    +		return
    +	}
    +	defer func() {
    +		if x := recover(); x != nil {
    +			if s, ok := x.(string); ok &&
    +				(strings.Contains(s, "type mismatch") || strings.Contains(s, "not assignable")) {
    +				// x cannot be set to y - ignore this rewrite
    +				return
    +			}
    +			panic(x)
    +		}
    +	}()
    +	x.Set(y)
    +}
    +
    +// Values/types for special cases.
    +var (
    +	objectPtrNil = reflect.ValueOf((*ast.Object)(nil))
    +	scopePtrNil  = reflect.ValueOf((*ast.Scope)(nil))
    +
    +	identType        = reflect.TypeOf((*ast.Ident)(nil))
    +	selectorExprType = reflect.TypeOf((*ast.SelectorExpr)(nil))
    +	objectPtrType    = reflect.TypeOf((*ast.Object)(nil))
    +	positionType     = reflect.TypeOf(token.NoPos)
    +	callExprType     = reflect.TypeOf((*ast.CallExpr)(nil))
    +	scopePtrType     = reflect.TypeOf((*ast.Scope)(nil))
    +)
    +
    +// apply replaces each AST field x in val with f(x), returning val.
    +// To avoid extra conversions, f operates on the reflect.Value form.
    +func apply(f func(reflect.Value) reflect.Value, val reflect.Value) reflect.Value {
    +	if !val.IsValid() {
    +		return reflect.Value{}
    +	}
    +
    +	// *ast.Objects introduce cycles and are likely incorrect after
    +	// rewrite; don't follow them but replace with nil instead
    +	if val.Type() == objectPtrType {
    +		return objectPtrNil
    +	}
    +
    +	// similarly for scopes: they are likely incorrect after a rewrite;
    +	// replace them with nil
    +	if val.Type() == scopePtrType {
    +		return scopePtrNil
    +	}
    +
    +	switch v := reflect.Indirect(val); v.Kind() {
    +	case reflect.Slice:
    +		for i := 0; i < v.Len(); i++ {
    +			e := v.Index(i)
    +			setValue(e, f(e))
    +		}
    +	case reflect.Struct:
    +		for i := 0; i < v.NumField(); i++ {
    +			e := v.Field(i)
    +			setValue(e, f(e))
    +		}
    +	case reflect.Interface:
    +		e := v.Elem()
    +		setValue(v, f(e))
    +	}
    +	return val
    +}
    +
    +// subst returns a copy of (replacement) pattern with values from env
    +// substituted in place of wildcards and pos used as the position of
    +// tokens from the pattern.  if env == nil, subst returns a copy of
    +// pattern and doesn't change the line number information.
    +func (tr *Transformer) subst(env map[string]ast.Expr, pattern, pos reflect.Value) reflect.Value {
    +	if !pattern.IsValid() {
    +		return reflect.Value{}
    +	}
    +
    +	// *ast.Objects introduce cycles and are likely incorrect after
    +	// rewrite; don't follow them but replace with nil instead
    +	if pattern.Type() == objectPtrType {
    +		return objectPtrNil
    +	}
    +
    +	// similarly for scopes: they are likely incorrect after a rewrite;
    +	// replace them with nil
    +	if pattern.Type() == scopePtrType {
    +		return scopePtrNil
    +	}
    +
    +	// Wildcard gets replaced with map value.
    +	if env != nil && pattern.Type() == identType {
    +		id := pattern.Interface().(*ast.Ident)
    +		if old, ok := env[id.Name]; ok {
    +			return tr.subst(nil, reflect.ValueOf(old), reflect.Value{})
    +		}
    +	}
    +
    +	// Emit qualified identifiers in the pattern by appropriate
    +	// (possibly qualified) identifier in the input.
    +	//
    +	// The template cannot contain dot imports, so all identifiers
    +	// for imported objects are explicitly qualified.
    +	//
    +	// We assume (unsoundly) that there are no dot or named
    +	// imports in the input code, nor are any imported package
    +	// names shadowed, so the usual normal qualified identifier
    +	// syntax may be used.
    +	// TODO(adonovan): fix: avoid this assumption.
    +	//
    +	// A refactoring may be applied to a package referenced by the
    +	// template.  Objects belonging to the current package are
    +	// denoted by unqualified identifiers.
    +	//
    +	if tr.importedObjs != nil && pattern.Type() == selectorExprType {
    +		obj := isRef(pattern.Interface().(*ast.SelectorExpr), &tr.info)
    +		if obj != nil {
    +			if sel, ok := tr.importedObjs[obj]; ok {
    +				var id ast.Expr
    +				if obj.Pkg() == tr.currentPkg {
    +					id = sel.Sel // unqualified
    +				} else {
    +					id = sel // pkg-qualified
    +				}
    +
    +				// Return a clone of id.
    +				saved := tr.importedObjs
    +				tr.importedObjs = nil // break cycle
    +				r := tr.subst(nil, reflect.ValueOf(id), pos)
    +				tr.importedObjs = saved
    +				return r
    +			}
    +		}
    +	}
    +
    +	if pos.IsValid() && pattern.Type() == positionType {
    +		// use new position only if old position was valid in the first place
    +		if old := pattern.Interface().(token.Pos); !old.IsValid() {
    +			return pattern
    +		}
    +		return pos
    +	}
    +
    +	// Otherwise copy.
    +	switch p := pattern; p.Kind() {
    +	case reflect.Slice:
    +		v := reflect.MakeSlice(p.Type(), p.Len(), p.Len())
    +		for i := 0; i < p.Len(); i++ {
    +			v.Index(i).Set(tr.subst(env, p.Index(i), pos))
    +		}
    +		return v
    +
    +	case reflect.Struct:
    +		v := reflect.New(p.Type()).Elem()
    +		for i := 0; i < p.NumField(); i++ {
    +			v.Field(i).Set(tr.subst(env, p.Field(i), pos))
    +		}
    +		return v
    +
    +	case reflect.Ptr:
    +		v := reflect.New(p.Type()).Elem()
    +		if elem := p.Elem(); elem.IsValid() {
    +			v.Set(tr.subst(env, elem, pos).Addr())
    +		}
    +
    +		// Duplicate type information for duplicated ast.Expr.
    +		// All ast.Node implementations are *structs,
    +		// so this case catches them all.
    +		if e := rvToExpr(v); e != nil {
    +			updateTypeInfo(&tr.info.Info, e, p.Interface().(ast.Expr))
    +		}
    +		return v
    +
    +	case reflect.Interface:
    +		v := reflect.New(p.Type()).Elem()
    +		if elem := p.Elem(); elem.IsValid() {
    +			v.Set(tr.subst(env, elem, pos))
    +		}
    +		return v
    +	}
    +
    +	return pattern
    +}
    +
    +// -- utilitiies -------------------------------------------------------
    +
    +func rvToExpr(rv reflect.Value) ast.Expr {
    +	if rv.CanInterface() {
    +		if e, ok := rv.Interface().(ast.Expr); ok {
    +			return e
    +		}
    +	}
    +	return nil
    +}
    +
    +// updateTypeInfo duplicates type information for the existing AST old
    +// so that it also applies to duplicated AST new.
    +func updateTypeInfo(info *types.Info, new, old ast.Expr) {
    +	switch new := new.(type) {
    +	case *ast.Ident:
    +		orig := old.(*ast.Ident)
    +		if obj, ok := info.Defs[orig]; ok {
    +			info.Defs[new] = obj
    +		}
    +		if obj, ok := info.Uses[orig]; ok {
    +			info.Uses[new] = obj
    +		}
    +
    +	case *ast.SelectorExpr:
    +		orig := old.(*ast.SelectorExpr)
    +		if sel, ok := info.Selections[orig]; ok {
    +			info.Selections[new] = sel
    +		}
    +	}
    +
    +	if tv, ok := info.Types[old]; ok {
    +		info.Types[new] = tv
    +	}
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A.template
    new file mode 100644
    index 00000000..f6119618
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A.template
    @@ -0,0 +1,13 @@
    +// +build ignore
    +
    +package template
    +
    +// Basic test of type-aware expression refactoring.
    +
    +import (
    +	"errors"
    +	"fmt"
    +)
    +
    +func before(s string) error { return fmt.Errorf("%s", s) }
    +func after(s string) error  { return errors.New(s) }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A1.go
    new file mode 100644
    index 00000000..9e65eb36
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A1.go
    @@ -0,0 +1,51 @@
    +// +build ignore
    +
    +package A1
    +
    +import (
    +	. "fmt"
    +	myfmt "fmt"
    +	"os"
    +	"strings"
    +)
    +
    +func example(n int) {
    +	x := "foo" + strings.Repeat("\t", n)
    +	// Match, despite named import.
    +	myfmt.Errorf("%s", x)
    +
    +	// Match, despite dot import.
    +	Errorf("%s", x)
    +
    +	// Match: multiple matches in same function are possible.
    +	myfmt.Errorf("%s", x)
    +
    +	// No match: wildcarded operand has the wrong type.
    +	myfmt.Errorf("%s", 3)
    +
    +	// No match: function operand doesn't match.
    +	myfmt.Printf("%s", x)
    +
    +	// No match again, dot import.
    +	Printf("%s", x)
    +
    +	// Match.
    +	myfmt.Fprint(os.Stderr, myfmt.Errorf("%s", x+"foo"))
    +
    +	// No match: though this literally matches the template,
    +	// fmt doesn't resolve to a package here.
    +	var fmt struct{ Errorf func(string, string) }
    +	fmt.Errorf("%s", x)
    +
    +	// Recursive matching:
    +
    +	// Match: both matches are well-typed, so both succeed.
    +	myfmt.Errorf("%s", myfmt.Errorf("%s", x+"foo").Error())
    +
    +	// Outer match succeeds, inner doesn't: 3 has wrong type.
    +	myfmt.Errorf("%s", myfmt.Errorf("%s", 3).Error())
    +
    +	// Inner match succeeds, outer doesn't: the inner replacement
    +	// has the wrong type (error not string).
    +	myfmt.Errorf("%s", myfmt.Errorf("%s", x+"foo"))
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A1.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A1.golden
    new file mode 100644
    index 00000000..4f7ba828
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A1.golden
    @@ -0,0 +1,52 @@
    +// +build ignore
    +
    +package A1
    +
    +import (
    +	. "fmt"
    +	"errors"
    +	myfmt "fmt"
    +	"os"
    +	"strings"
    +)
    +
    +func example(n int) {
    +	x := "foo" + strings.Repeat("\t", n)
    +	// Match, despite named import.
    +	errors.New(x)
    +
    +	// Match, despite dot import.
    +	errors.New(x)
    +
    +	// Match: multiple matches in same function are possible.
    +	errors.New(x)
    +
    +	// No match: wildcarded operand has the wrong type.
    +	myfmt.Errorf("%s", 3)
    +
    +	// No match: function operand doesn't match.
    +	myfmt.Printf("%s", x)
    +
    +	// No match again, dot import.
    +	Printf("%s", x)
    +
    +	// Match.
    +	myfmt.Fprint(os.Stderr, errors.New(x+"foo"))
    +
    +	// No match: though this literally matches the template,
    +	// fmt doesn't resolve to a package here.
    +	var fmt struct{ Errorf func(string, string) }
    +	fmt.Errorf("%s", x)
    +
    +	// Recursive matching:
    +
    +	// Match: both matches are well-typed, so both succeed.
    +	errors.New(errors.New(x + "foo").Error())
    +
    +	// Outer match succeeds, inner doesn't: 3 has wrong type.
    +	errors.New(myfmt.Errorf("%s", 3).Error())
    +
    +	// Inner match succeeds, outer doesn't: the inner replacement
    +	// has the wrong type (error not string).
    +	myfmt.Errorf("%s", errors.New(x+"foo"))
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A2.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A2.go
    new file mode 100644
    index 00000000..3ae29ad7
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A2.go
    @@ -0,0 +1,12 @@
    +// +build ignore
    +
    +package A2
    +
    +// This refactoring causes addition of "errors" import.
    +// TODO(adonovan): fix: it should also remove "fmt".
    +
    +import myfmt "fmt"
    +
    +func example(n int) {
    +	myfmt.Errorf("%s", "")
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A2.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A2.golden
    new file mode 100644
    index 00000000..5c2384b7
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/A2.golden
    @@ -0,0 +1,15 @@
    +// +build ignore
    +
    +package A2
    +
    +// This refactoring causes addition of "errors" import.
    +// TODO(adonovan): fix: it should also remove "fmt".
    +
    +import (
    +	myfmt "fmt"
    +	"errors"
    +)
    +
    +func example(n int) {
    +	errors.New("")
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B.template
    new file mode 100644
    index 00000000..c16627bd
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B.template
    @@ -0,0 +1,9 @@
    +package template
    +
    +// Basic test of expression refactoring.
    +// (Types are not important in this case; it could be done with gofmt -r.)
    +
    +import "time"
    +
    +func before(t time.Time) time.Duration { return time.Now().Sub(t) }
    +func after(t time.Time) time.Duration  { return time.Since(t) }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B1.go
    new file mode 100644
    index 00000000..8b525463
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B1.go
    @@ -0,0 +1,17 @@
    +// +build ignore
    +
    +package B1
    +
    +import "time"
    +
    +var startup = time.Now()
    +
    +func example() time.Duration {
    +	before := time.Now()
    +	time.Sleep(1)
    +	return time.Now().Sub(before)
    +}
    +
    +func msSinceStartup() int64 {
    +	return int64(time.Now().Sub(startup) / time.Millisecond)
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B1.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B1.golden
    new file mode 100644
    index 00000000..4d4da218
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/B1.golden
    @@ -0,0 +1,17 @@
    +// +build ignore
    +
    +package B1
    +
    +import "time"
    +
    +var startup = time.Now()
    +
    +func example() time.Duration {
    +	before := time.Now()
    +	time.Sleep(1)
    +	return time.Since(before)
    +}
    +
    +func msSinceStartup() int64 {
    +	return int64(time.Since(startup) / time.Millisecond)
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C.template
    new file mode 100644
    index 00000000..f6f94d4a
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C.template
    @@ -0,0 +1,10 @@
    +package template
    +
    +// Test of repeated use of wildcard in pattern.
    +
    +// NB: multiple patterns would be required to handle variants such as
    +// s[:len(s)], s[x:len(s)], etc, since a wildcard can't match nothing at all.
    +// TODO(adonovan): support multiple templates in a single pass.
    +
    +func before(s string) string { return s[:len(s)] }
    +func after(s string) string  { return s }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C1.go
    new file mode 100644
    index 00000000..523b3885
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C1.go
    @@ -0,0 +1,22 @@
    +// +build ignore
    +
    +package C1
    +
    +import "strings"
    +
    +func example() {
    +	x := "foo"
    +	println(x[:len(x)])
    +
    +	// Match, but the transformation is not sound w.r.t. possible side effects.
    +	println(strings.Repeat("*", 3)[:len(strings.Repeat("*", 3))])
    +
    +	// No match, since second use of wildcard doesn't match first.
    +	println(strings.Repeat("*", 3)[:len(strings.Repeat("*", 2))])
    +
    +	// Recursive match demonstrating bottom-up rewrite:
    +	// only after the inner replacement occurs does the outer syntax match.
    +	println((x[:len(x)])[:len(x[:len(x)])])
    +	// -> (x[:len(x)])
    +	// -> x
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C1.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C1.golden
    new file mode 100644
    index 00000000..ae7759d7
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/C1.golden
    @@ -0,0 +1,22 @@
    +// +build ignore
    +
    +package C1
    +
    +import "strings"
    +
    +func example() {
    +	x := "foo"
    +	println(x)
    +
    +	// Match, but the transformation is not sound w.r.t. possible side effects.
    +	println(strings.Repeat("*", 3))
    +
    +	// No match, since second use of wildcard doesn't match first.
    +	println(strings.Repeat("*", 3)[:len(strings.Repeat("*", 2))])
    +
    +	// Recursive match demonstrating bottom-up rewrite:
    +	// only after the inner replacement occurs does the outer syntax match.
    +	println(x)
    +	// -> (x[:len(x)])
    +	// -> x
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D.template
    new file mode 100644
    index 00000000..6d3b6feb
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D.template
    @@ -0,0 +1,8 @@
    +package template
    +
    +import "fmt"
    +
    +// Test of semantic (not syntactic) matching of basic literals.
    +
    +func before() (int, error) { return fmt.Println(123, "a") }
    +func after() (int, error)  { return fmt.Println(456, "!") }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D1.go
    new file mode 100644
    index 00000000..ae0a8060
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D1.go
    @@ -0,0 +1,12 @@
    +// +build ignore
    +
    +package D1
    +
    +import "fmt"
    +
    +func example() {
    +	fmt.Println(123, "a")         // match
    +	fmt.Println(0x7b, `a`)        // match
    +	fmt.Println(0173, "\x61")     // match
    +	fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D1.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D1.golden
    new file mode 100644
    index 00000000..3f2dc593
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/D1.golden
    @@ -0,0 +1,12 @@
    +// +build ignore
    +
    +package D1
    +
    +import "fmt"
    +
    +func example() {
    +	fmt.Println(456, "!")		// match
    +	fmt.Println(456, "!")		// match
    +	fmt.Println(456, "!")		// match
    +	fmt.Println(100+20+3, "a"+"")	// no match: constant expressions, but not basic literals
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E.template
    new file mode 100644
    index 00000000..4bbbd113
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E.template
    @@ -0,0 +1,12 @@
    +package template
    +
    +import (
    +	"fmt"
    +	"log"
    +	"os"
    +)
    +
    +// Replace call to void function by call to non-void function.
    +
    +func before(x interface{}) { log.Fatal(x) }
    +func after(x interface{})  { fmt.Fprintf(os.Stderr, "warning: %v", x) }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E1.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E1.go
    new file mode 100644
    index 00000000..3ea1793f
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E1.go
    @@ -0,0 +1,9 @@
    +// +build ignore
    +
    +package E1
    +
    +import "log"
    +
    +func example() {
    +	log.Fatal("oops") // match
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E1.golden b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E1.golden
    new file mode 100644
    index 00000000..a0adfc8b
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/E1.golden
    @@ -0,0 +1,13 @@
    +// +build ignore
    +
    +package E1
    +
    +import (
    +	"log"
    +	"os"
    +	"fmt"
    +)
    +
    +func example() {
    +	fmt.Fprintf(os.Stderr, "warning: %v", "oops")	// match
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/bad_type.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/bad_type.template
    new file mode 100644
    index 00000000..6d53d7e5
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/bad_type.template
    @@ -0,0 +1,8 @@
    +package template
    +
    +// Test in which replacement has a different type.
    +
    +const shouldFail = "int is not a safe replacement for string"
    +
    +func before() interface{} { return "three" }
    +func after() interface{}  { return 3 }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/expr_type_mismatch.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/expr_type_mismatch.template
    new file mode 100644
    index 00000000..2c5c3f0d
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/expr_type_mismatch.template
    @@ -0,0 +1,15 @@
    +package template
    +
    +import (
    +	"crypto/x509"
    +	"fmt"
    +)
    +
    +// This test demonstrates a false negative: according to the language
    +// rules this replacement should be ok, but types.Assignable doesn't work
    +// in the expected way (elementwise assignability) for tuples.
    +// Perhaps that's even a type-checker bug?
    +const shouldFail = "(n int, err error) is not a safe replacement for (key interface{}, err error)"
    +
    +func before() (interface{}, error) { return x509.ParsePKCS8PrivateKey(nil) }
    +func after() (interface{}, error)  { return fmt.Print() }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/no_after_return.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/no_after_return.template
    new file mode 100644
    index 00000000..536b01e6
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/no_after_return.template
    @@ -0,0 +1,6 @@
    +package template
    +
    +const shouldFail = "after: must contain a single statement"
    +
    +func before() int { return 0 }
    +func after() int  { println(); return 0 }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/no_before.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/no_before.template
    new file mode 100644
    index 00000000..9205e667
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/no_before.template
    @@ -0,0 +1,5 @@
    +package template
    +
    +const shouldFail = "no 'before' func found in template"
    +
    +func Before() {}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/type_mismatch.template b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/type_mismatch.template
    new file mode 100644
    index 00000000..787c9a7a
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/go.tools/refactor/eg/testdata/type_mismatch.template
    @@ -0,0 +1,6 @@
    +package template
    +
    +const shouldFail = "different signatures"
    +
    +func before() int   { return 0 }
    +func after() string { return "" }
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/LICENSE b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/LICENSE
    new file mode 100644
    index 00000000..8eba79a6
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/LICENSE
    @@ -0,0 +1,46 @@
    +Copyright 2013 Vastech SA (PTY) LTD
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +-------------------------------------------------------------------------------
    +Portions of gocc's source code has been derived from Go, and are covered by the
    +following license:
    +-------------------------------------------------------------------------------
    +
    +Copyright (c) 2009 The Go Authors. All rights reserved.
    +
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are
    +met:
    +
    +   * Redistributions of source code must retain the above copyright
    +notice, this list of conditions and the following disclaimer.
    +   * Redistributions in binary form must reproduce the above
    +copyright notice, this list of conditions and the following disclaimer
    +in the documentation and/or other materials provided with the
    +distribution.
    +   * Neither the name of Google Inc. nor the names of its
    +contributors may be used to endorse or promote products derived from
    +this software without specific prior written permission.
    +
    +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    \ No newline at end of file
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/analyse.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/analyse.go
    new file mode 100644
    index 00000000..555d521a
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/analyse.go
    @@ -0,0 +1,168 @@
    +//Copyright 2013 Vastech SA (PTY) LTD
    +//
    +//Licensed under the Apache License, Version 2.0 (the "License");
    +//you may not use this file except in compliance with the License.
    +//You may obtain a copy of the License at
    +//
    +//    http://www.apache.org/licenses/LICENSE-2.0
    +//
    +//Unless required by applicable law or agreed to in writing, software
    +//distributed under the License is distributed on an "AS IS" BASIS,
    +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +//See the License for the specific language governing permissions and
    +//limitations under the License.
    +
    +package gographviz
    +
    +import (
    +	"code.google.com/p/gographviz/ast"
    +)
    +
    +//Creates a Graph structure by analysing an Abstract Syntax Tree representing a parsed graph.
    +func NewAnalysedGraph(graph *ast.Graph) *Graph {
    +	g := NewGraph()
    +	Analyse(graph, g)
    +	return g
    +}
    +
    +//Analyses an Abstract Syntax Tree representing a parsed graph into a newly created graph structure Interface.
    +func Analyse(graph *ast.Graph, g Interface) {
    +	graph.Walk(&graphVisitor{g})
    +}
    +
    +type nilVisitor struct {
    +}
    +
    +func (this *nilVisitor) Visit(v ast.Elem) ast.Visitor {
    +	return this
    +}
    +
    +type graphVisitor struct {
    +	g Interface
    +}
    +
    +func (this *graphVisitor) Visit(v ast.Elem) ast.Visitor {
    +	graph, ok := v.(*ast.Graph)
    +	if !ok {
    +		return this
    +	}
    +	this.g.SetStrict(graph.Strict)
    +	this.g.SetDir(graph.Type == ast.DIGRAPH)
    +	graphName := graph.Id.String()
    +	this.g.SetName(graphName)
    +	return newStmtVisitor(this.g, graphName)
    +}
    +
    +func newStmtVisitor(g Interface, graphName string) *stmtVisitor {
    +	return &stmtVisitor{g, graphName, make(Attrs), make(Attrs), make(Attrs)}
    +}
    +
    +type stmtVisitor struct {
    +	g                 Interface
    +	graphName         string
    +	currentNodeAttrs  Attrs
    +	currentEdgeAttrs  Attrs
    +	currentGraphAttrs Attrs
    +}
    +
    +func (this *stmtVisitor) Visit(v ast.Elem) ast.Visitor {
    +	switch s := v.(type) {
    +	case ast.NodeStmt:
    +		return this.nodeStmt(s)
    +	case ast.EdgeStmt:
    +		return this.edgeStmt(s)
    +	case ast.NodeAttrs:
    +		return this.nodeAttrs(s)
    +	case ast.EdgeAttrs:
    +		return this.edgeAttrs(s)
    +	case ast.GraphAttrs:
    +		return this.graphAttrs(s)
    +	case *ast.SubGraph:
    +		return this.subGraph(s)
    +	case *ast.Attr:
    +		return this.attr(s)
    +	case ast.AttrList:
    +		return &nilVisitor{}
    +	default:
    +		//fmt.Fprintf(os.Stderr, "unknown stmt %T\n", v)
    +	}
    +	return this
    +}
    +
    +func ammend(attrs Attrs, add Attrs) Attrs {
    +	for key, value := range add {
    +		if _, ok := attrs[key]; !ok {
    +			attrs[key] = value
    +		}
    +	}
    +	return attrs
    +}
    +
    +func overwrite(attrs Attrs, overwrite Attrs) Attrs {
    +	for key, value := range overwrite {
    +		attrs[key] = value
    +	}
    +	return attrs
    +}
    +
    +func (this *stmtVisitor) nodeStmt(stmt ast.NodeStmt) ast.Visitor {
    +	attrs := Attrs(stmt.Attrs.GetMap())
    +	attrs = ammend(attrs, this.currentNodeAttrs)
    +	this.g.AddNode(this.graphName, stmt.NodeId.String(), attrs)
    +	return &nilVisitor{}
    +}
    +
    +func (this *stmtVisitor) edgeStmt(stmt ast.EdgeStmt) ast.Visitor {
    +	attrs := stmt.Attrs.GetMap()
    +	attrs = ammend(attrs, this.currentEdgeAttrs)
    +	src := stmt.Source.GetId()
    +	srcName := src.String()
    +	if stmt.Source.IsNode() {
    +		this.g.AddNode(this.graphName, srcName, this.currentNodeAttrs.Copy())
    +	}
    +	srcPort := stmt.Source.GetPort()
    +	for i := range stmt.EdgeRHS {
    +		directed := bool(stmt.EdgeRHS[i].Op)
    +		dst := stmt.EdgeRHS[i].Destination.GetId()
    +		dstName := dst.String()
    +		if stmt.EdgeRHS[i].Destination.IsNode() {
    +			this.g.AddNode(this.graphName, dstName, this.currentNodeAttrs.Copy())
    +		}
    +		dstPort := stmt.EdgeRHS[i].Destination.GetPort()
    +		this.g.AddEdge(srcName, srcPort.String(), dstName, dstPort.String(), directed, attrs)
    +		src = dst
    +		srcPort = dstPort
    +		srcName = dstName
    +	}
    +	return this
    +}
    +
    +func (this *stmtVisitor) nodeAttrs(stmt ast.NodeAttrs) ast.Visitor {
    +	this.currentNodeAttrs = overwrite(this.currentNodeAttrs, ast.AttrList(stmt).GetMap())
    +	return &nilVisitor{}
    +}
    +
    +func (this *stmtVisitor) edgeAttrs(stmt ast.EdgeAttrs) ast.Visitor {
    +	this.currentEdgeAttrs = overwrite(this.currentEdgeAttrs, ast.AttrList(stmt).GetMap())
    +	return &nilVisitor{}
    +}
    +
    +func (this *stmtVisitor) graphAttrs(stmt ast.GraphAttrs) ast.Visitor {
    +	attrs := ast.AttrList(stmt).GetMap()
    +	for key, value := range attrs {
    +		this.g.AddAttr(this.graphName, key, value)
    +	}
    +	this.currentGraphAttrs = overwrite(this.currentGraphAttrs, attrs)
    +	return &nilVisitor{}
    +}
    +
    +func (this *stmtVisitor) subGraph(stmt *ast.SubGraph) ast.Visitor {
    +	subGraphName := stmt.Id.String()
    +	this.g.AddSubGraph(this.graphName, subGraphName, this.currentGraphAttrs)
    +	return newStmtVisitor(this.g, subGraphName)
    +}
    +
    +func (this *stmtVisitor) attr(stmt *ast.Attr) ast.Visitor {
    +	this.g.AddAttr(this.graphName, stmt.Field.String(), stmt.Value.String())
    +	return this
    +}
    diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/analysewrite_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/analysewrite_test.go
    new file mode 100644
    index 00000000..01d80e05
    --- /dev/null
    +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/analysewrite_test.go
    @@ -0,0 +1,316 @@
    +//Copyright 2013 Vastech SA (PTY) LTD
    +//
    +//Licensed under the Apache License, Version 2.0 (the "License");
    +//you may not use this file except in compliance with the License.
    +//You may obtain a copy of the License at
    +//
    +//    http://www.apache.org/licenses/LICENSE-2.0
    +//
    +//Unless required by applicable law or agreed to in writing, software
    +//distributed under the License is distributed on an "AS IS" BASIS,
    +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +//See the License for the specific language governing permissions and
    +//limitations under the License.
    +
    +package gographviz
    +
    +import (
    +	"code.google.com/p/gographviz/parser"
    +	"fmt"
    +	"io/ioutil"
    +	"os"
    +	"testing"
    +)
    +
    +func (this *Nodes) String() string {
    +	s := "Nodes:"
    +	for i := range this.Nodes {
    +		s += fmt.Sprintf("Node{%v}", this.Nodes[i])
    +	}
    +	return s + "\n"
    +}
    +
    +func (this *Edges) String() string {
    +	s := "Edges:"
    +	for i := range this.Edges {
    +		s += fmt.Sprintf("Edge{%v}", this.Edges[i])
    +	}
    +	return s + "\n"
    +}
    +
    +func check(t *testing.T, err error) {
    +	if err != nil {
    +		t.Fatalf("%v", err)
    +	}
    +}
    +
    +func assert(t *testing.T, msg string, v1 interface{}, v2 interface{}) {
    +	if v1 != v2 {
    +		t.Fatalf("%v %v != %v", msg, v1, v2)
    +	}
    +}
    +
    +func anal(t *testing.T, input string) *Graph {
    +	fmt.Printf("Input: %v\n", input)
    +	g, err := parser.ParseString(input)
    +	check(t, err)
    +	fmt.Printf("Parsed: %v\n", g)
    +	ag := NewAnalysedGraph(g)
    +	fmt.Printf("Analysed: %v\n", ag)
    +	agstr := ag.String()
    +	fmt.Printf("Written: %v\n", agstr)
    +	g2, err := parser.ParseString(agstr)
    +	check(t, err)
    +	fmt.Printf("Parsed %v\n", g2)
    +	ag2 := NewAnalysedGraph(g2)
    +	fmt.Printf("Analysed %v\n", ag2)
    +	ag2str := ag2.String()
    +	fmt.Printf("Written: %v\n", ag2str)
    +	assert(t, "analysed", agstr, ag2str)
    +	return ag2
    +}
    +
    +func analfile(t *testing.T, filename string) *Graph {
    +	f, err := os.Open(filename)
    +	check(t, err)
    +	all, err := ioutil.ReadAll(f)
    +	check(t, err)
    +	return anal(t, string(all))
    +}
    +
    +func analtest(t *testing.T, testname string) *Graph {
    +	return analfile(t, "./testdata/"+testname)
    +}
    +
    +func TestHelloWorldString(t *testing.T) {
    +	input := `digraph G {Hello->World}`
    +	anal(t, input)
    +}
    +
    +func TestHelloWorldFile(t *testing.T) {
    +	analfile(t, "./testdata/helloworld.gv.txt")
    +}
    +
    +func TestAttr(t *testing.T) {
    +	anal(t,
    +		"digraph finite_state { rankdir = LR }")
    +}
    +
    +func TestString(t *testing.T) {
    +	anal(t,
    +		`digraph finite_state { rankdir = "LR" }`)
    +}
    +
    +func TestAttrList(t *testing.T) {
    +	anal(t, `
    +digraph { node [ shape = doublecircle ] }`)
    +}
    +
    +func TestStringLit(t *testing.T) {
    +	anal(t, `digraph finite_state_machine {
    +	size= "8" ; }`)
    +}
    +
    +func TestHashComments(t *testing.T) {
    +	anal(t, `## bla \n
    +  digraph G {Hello->World}`)
    +}
    +
    +func TestIntLit(t *testing.T) {
    +	anal(t, `graph G {
    +	1 -- 30 [f=1];}`)
    +}
    +
    +func TestFloat1(t *testing.T) {
    +	anal(t, `digraph { bla = 2.0 }`)
    +}
    +
    +func TestFloat2(t *testing.T) {
    +	anal(t, `digraph { bla = .1 }`)
    +}
    +
    +func TestNegative(t *testing.T) {
    +	anal(t, `digraph { -2 -> -1 }`)
    +}
    +
    +func TestUnderscore(t *testing.T) {
    +	anal(t, `digraph { a_b = 1 }`)
    +}
    +
    +func TestNonAscii(t *testing.T) {
    +	anal(t, `digraph {	label=T�th }`)
    +}
    +
    +func TestPorts(t *testing.T) {
    +	anal(t, `digraph { "node6":f0 -> "node9":f1 }`)
    +}
    +
    +func TestHtml(t *testing.T) {
    +	anal(t, `digraph { a = <
    > }`) +} + +func TestIdWithKeyword(t *testing.T) { + anal(t, `digraph { edgeURL = "a" }`) +} + +func TestSubGraph(t *testing.T) { + anal(t, `digraph { subgraph { a -> b } }`) +} + +func TestImplicitSubGraph(t *testing.T) { + anal(t, `digraph { { a -> b } }`) +} + +func TestEdges(t *testing.T) { + anal(t, `digraph { a0 -> a1 -> a2 -> a3 }`) +} + +func TestEasyFsm1(t *testing.T) { + anal(t, `digraph finite_state_machine { + rankdir=LR; + size="8,5"; + node [shape = circle]; + LR_0 -> LR_2 [ label = "SS(B)" ]; + LR_0 -> LR_1 [ label = "SS(S)" ]; + LR_1 -> LR_3 [ label = "S($end)" ]; + LR_2 -> LR_6 [ label = "SS(b)" ]; + LR_2 -> LR_5 [ label = "SS(a)" ]; + LR_2 -> LR_4 [ label = "S(A)" ]; + LR_5 -> LR_7 [ label = "S(b)" ]; + LR_5 -> LR_5 [ label = "S(a)" ]; + LR_6 -> LR_6 [ label = "S(b)" ]; + LR_6 -> LR_5 [ label = "S(a)" ]; + LR_7 -> LR_8 [ label = "S(b)" ]; + LR_7 -> LR_5 [ label = "S(a)" ]; + LR_8 -> LR_6 [ label = "S(b)" ]; + LR_8 -> LR_5 [ label = "S(a)" ]; +}`) +} + +//node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8; should be applied to the nodes +func TestEasyFsm2(t *testing.T) { + anal(t, `digraph finite_state_machine { + rankdir=LR; + size="8,5"; + node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8; + node [shape = circle]; + LR_0 -> LR_2 [ label = "SS(B)" ]; + LR_0 -> LR_1 [ label = "SS(S)" ]; + LR_1 -> LR_3 [ label = "S($end)" ]; + LR_2 -> LR_6 [ label = "SS(b)" ]; + LR_2 -> LR_5 [ label = "SS(a)" ]; + LR_2 -> LR_4 [ label = "S(A)" ]; + LR_5 -> LR_7 [ label = "S(b)" ]; + LR_5 -> LR_5 [ label = "S(a)" ]; + LR_6 -> LR_6 [ label = "S(b)" ]; + LR_6 -> LR_5 [ label = "S(a)" ]; + LR_7 -> LR_8 [ label = "S(b)" ]; + LR_7 -> LR_5 [ label = "S(a)" ]; + LR_8 -> LR_6 [ label = "S(b)" ]; + LR_8 -> LR_5 [ label = "S(a)" ]; +}`) +} + +func TestEmptyAttrList(t *testing.T) { + anal(t, `digraph g { edge [ ] }`) +} + +func TestHelloWorld(t *testing.T) { + analtest(t, "helloworld.gv.txt") +} + +func TestCluster(t *testing.T) { + analtest(t, "cluster.gv.txt") +} + +func TestPsg(t *testing.T) { + analtest(t, "psg.gv.txt") +} + +func TestTransparency(t *testing.T) { + analtest(t, "transparency.gv.txt") +} + +func TestCrazy(t *testing.T) { + analtest(t, "crazy.gv.txt") +} + +func TestKennedyanc(t *testing.T) { + analtest(t, "kennedyanc.gv.txt") +} + +func TestRoot(t *testing.T) { + analtest(t, "root.gv.txt") +} + +func TestTwpoi(t *testing.T) { + analtest(t, "twopi.gv.txt") +} + +func TestDataStruct(t *testing.T) { + analtest(t, "datastruct.gv.txt") +} + +func TestLionShare(t *testing.T) { + analtest(t, "lion_share.gv.txt") +} + +func TestSdh(t *testing.T) { + analtest(t, "sdh.gv.txt") +} + +func TestUnix(t *testing.T) { + analtest(t, "unix.gv.txt") +} + +func TestEr(t *testing.T) { + analtest(t, "er.gv.txt") +} + +func TestNerworkMapTwopi(t *testing.T) { + analtest(t, "networkmap_twopi.gv.txt") +} + +func TestSibling(t *testing.T) { + analtest(t, "siblings.gv.txt") +} + +func TestWorld(t *testing.T) { + analtest(t, "world.gv.txt") +} + +func TestFdpclust(t *testing.T) { + analtest(t, "fdpclust.gv.txt") +} + +func TestPhilo(t *testing.T) { + analtest(t, "philo.gv.txt") +} + +func TestSoftmaint(t *testing.T) { + analtest(t, "softmaint.gv.txt") +} + +func TestFsm(t *testing.T) { + analtest(t, "fsm.gv.txt") +} + +func TestProcess(t *testing.T) { + analtest(t, "process.gv.txt") +} + +func TestSwitchGv(t *testing.T) { + analtest(t, "switch.gv.txt") +} + +func TestGd19942007(t *testing.T) { + analtest(t, "gd_1994_2007.gv.txt") +} + +func TestProfile(t *testing.T) { + analtest(t, "profile.gv.txt") +} + +func TestTrafficLights(t *testing.T) { + analtest(t, "traffic_lights.gv.txt") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/ast/ast.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/ast/ast.go new file mode 100644 index 00000000..a5b8a651 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/ast/ast.go @@ -0,0 +1,690 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +//Abstract Syntax Tree representing the DOT grammar +package ast + +import ( + "code.google.com/p/gographviz/token" + "errors" + "fmt" + "math/rand" + "sort" + "strings" +) + +var ( + r = rand.New(rand.NewSource(1234)) +) + +type Visitor interface { + Visit(e Elem) Visitor +} + +type Elem interface { + String() string +} + +type Walkable interface { + Walk(v Visitor) +} + +type Bool bool + +const ( + FALSE = Bool(false) + TRUE = Bool(true) +) + +func (this Bool) String() string { + switch this { + case false: + return "false" + case true: + return "true" + } + panic("unreachable") +} + +func (this Bool) Walk(v Visitor) { + if v == nil { + return + } + v.Visit(this) +} + +type GraphType bool + +const ( + GRAPH = GraphType(false) + DIGRAPH = GraphType(true) +) + +func (this GraphType) String() string { + switch this { + case false: + return "graph" + case true: + return "digraph" + } + panic("unreachable") +} + +func (this GraphType) Walk(v Visitor) { + if v == nil { + return + } + v.Visit(this) +} + +type Graph struct { + Type GraphType + Strict bool + Id Id + StmtList StmtList +} + +func NewGraph(t, strict, id, l Elem) (*Graph, error) { + g := &Graph{Type: t.(GraphType), Strict: bool(strict.(Bool)), Id: Id("")} + if id != nil { + g.Id = id.(Id) + } + if l != nil { + g.StmtList = l.(StmtList) + } + return g, nil +} + +func (this *Graph) String() string { + s := this.Type.String() + " " + this.Id.String() + " {\n" + if this.StmtList != nil { + s += this.StmtList.String() + } + s += "\n}\n" + return s +} + +func (this *Graph) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Type.Walk(v) + this.Id.Walk(v) + this.StmtList.Walk(v) +} + +type StmtList []Stmt + +func NewStmtList(s Elem) (StmtList, error) { + ss := make(StmtList, 1) + ss[0] = s.(Stmt) + return ss, nil +} + +func AppendStmtList(ss, s Elem) (StmtList, error) { + this := ss.(StmtList) + this = append(this, s.(Stmt)) + return this, nil +} + +func (this StmtList) String() string { + if len(this) == 0 { + return "" + } + s := "" + for i := 0; i < len(this); i++ { + ss := this[i].String() + if len(ss) > 0 { + s += "\t" + ss + ";\n" + } + } + return s +} + +func (this StmtList) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +type Stmt interface { + Elem + Walkable + isStmt() +} + +func (this NodeStmt) isStmt() {} +func (this EdgeStmt) isStmt() {} +func (this EdgeAttrs) isStmt() {} +func (this NodeAttrs) isStmt() {} +func (this GraphAttrs) isStmt() {} +func (this *SubGraph) isStmt() {} +func (this *Attr) isStmt() {} + +type SubGraph struct { + Id Id + StmtList StmtList +} + +func NewSubGraph(id, l Elem) (*SubGraph, error) { + g := &SubGraph{Id: Id(fmt.Sprintf("anon%d", r.Int63()))} + if id != nil { + if len(id.(Id)) > 0 { + g.Id = id.(Id) + } + } + if l != nil { + g.StmtList = l.(StmtList) + } + return g, nil +} + +func (this *SubGraph) GetId() Id { + return this.Id +} + +func (this *SubGraph) GetPort() Port { + port, err := NewPort(nil, nil) + if err != nil { + panic(err) + } + return port +} + +func (this *SubGraph) String() string { + gName := this.Id.String() + if strings.HasPrefix(gName, "anon") { + gName = "" + } + s := "subgraph " + this.Id.String() + " {\n" + if this.StmtList != nil { + s += this.StmtList.String() + } + s += "\n}\n" + return s +} + +func (this *SubGraph) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Id.Walk(v) + this.StmtList.Walk(v) +} + +type EdgeAttrs AttrList + +func NewEdgeAttrs(a Elem) (EdgeAttrs, error) { + return EdgeAttrs(a.(AttrList)), nil +} + +func (this EdgeAttrs) String() string { + s := AttrList(this).String() + if len(s) == 0 { + return "" + } + return `edge ` + s +} + +func (this EdgeAttrs) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +type NodeAttrs AttrList + +func NewNodeAttrs(a Elem) (NodeAttrs, error) { + return NodeAttrs(a.(AttrList)), nil +} + +func (this NodeAttrs) String() string { + s := AttrList(this).String() + if len(s) == 0 { + return "" + } + return `node ` + s +} + +func (this NodeAttrs) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +type GraphAttrs AttrList + +func NewGraphAttrs(a Elem) (GraphAttrs, error) { + return GraphAttrs(a.(AttrList)), nil +} + +func (this GraphAttrs) String() string { + s := AttrList(this).String() + if len(s) == 0 { + return "" + } + return `graph ` + s +} + +func (this GraphAttrs) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +type AttrList []AList + +func NewAttrList(a Elem) (AttrList, error) { + as := make(AttrList, 0) + if a != nil { + as = append(as, a.(AList)) + } + return as, nil +} + +func AppendAttrList(as, a Elem) (AttrList, error) { + this := as.(AttrList) + if a == nil { + return this, nil + } + this = append(this, a.(AList)) + return this, nil +} + +func (this AttrList) String() string { + s := "" + for _, alist := range this { + ss := alist.String() + if len(ss) > 0 { + s += "[ " + ss + " ] " + } + } + if len(s) == 0 { + return "" + } + return s +} + +func (this AttrList) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +func PutMap(attrmap map[string]string) AttrList { + attrlist := make(AttrList, 1) + attrlist[0] = make(AList, 0) + keys := make([]string, 0, len(attrmap)) + for key := range attrmap { + keys = append(keys, key) + } + sort.Strings(keys) + for _, name := range keys { + value := attrmap[name] + attrlist[0] = append(attrlist[0], &Attr{Id(name), Id(value)}) + } + return attrlist +} + +func (this AttrList) GetMap() map[string]string { + attrs := make(map[string]string) + for _, alist := range this { + for _, attr := range alist { + attrs[attr.Field.String()] = attr.Value.String() + } + } + return attrs +} + +type AList []*Attr + +func NewAList(a Elem) (AList, error) { + as := make(AList, 1) + as[0] = a.(*Attr) + return as, nil +} + +func AppendAList(as, a Elem) (AList, error) { + this := as.(AList) + attr := a.(*Attr) + this = append(this, attr) + return this, nil +} + +func (this AList) String() string { + if len(this) == 0 { + return "" + } + str := this[0].String() + for i := 1; i < len(this); i++ { + str += `, ` + this[i].String() + } + return str +} + +func (this AList) Walk(v Visitor) { + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +type Attr struct { + Field Id + Value Id +} + +func NewAttr(f, v Elem) (*Attr, error) { + a := &Attr{Field: f.(Id)} + a.Value = Id("true") + if v != nil { + ok := false + a.Value, ok = v.(Id) + if !ok { + return nil, errors.New(fmt.Sprintf("value = %v", v)) + } + } + return a, nil +} + +func (this *Attr) String() string { + return this.Field.String() + `=` + this.Value.String() +} + +func (this *Attr) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Field.Walk(v) + this.Value.Walk(v) +} + +type Location interface { + Elem + Walkable + isLocation() + GetId() Id + GetPort() Port + IsNode() bool +} + +func (this *NodeId) isLocation() {} +func (this *NodeId) IsNode() bool { return true } +func (this *SubGraph) isLocation() {} +func (this *SubGraph) IsNode() bool { return false } + +type EdgeStmt struct { + Source Location + EdgeRHS EdgeRHS + Attrs AttrList +} + +func NewEdgeStmt(id, e, attrs Elem) (*EdgeStmt, error) { + var a AttrList = nil + var err error = nil + if attrs == nil { + a, err = NewAttrList(nil) + if err != nil { + return nil, err + } + } else { + a = attrs.(AttrList) + } + return &EdgeStmt{id.(Location), e.(EdgeRHS), a}, nil +} + +func (this EdgeStmt) String() string { + return strings.TrimSpace(this.Source.String() + this.EdgeRHS.String() + this.Attrs.String()) +} + +func (this EdgeStmt) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Source.Walk(v) + this.EdgeRHS.Walk(v) + this.Attrs.Walk(v) +} + +type EdgeRHS []*EdgeRH + +func NewEdgeRHS(op, id Elem) (EdgeRHS, error) { + return EdgeRHS{&EdgeRH{op.(EdgeOp), id.(Location)}}, nil +} + +func AppendEdgeRHS(e, op, id Elem) (EdgeRHS, error) { + erhs := e.(EdgeRHS) + erhs = append(erhs, &EdgeRH{op.(EdgeOp), id.(Location)}) + return erhs, nil +} + +func (this EdgeRHS) String() string { + s := "" + for i := range this { + s += this[i].String() + } + return strings.TrimSpace(s) +} + +func (this EdgeRHS) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + for i := range this { + this[i].Walk(v) + } +} + +type EdgeRH struct { + Op EdgeOp + Destination Location +} + +func (this *EdgeRH) String() string { + return strings.TrimSpace(this.Op.String() + this.Destination.String()) +} + +func (this *EdgeRH) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Op.Walk(v) + this.Destination.Walk(v) +} + +type NodeStmt struct { + NodeId *NodeId + Attrs AttrList +} + +func NewNodeStmt(id, attrs Elem) (*NodeStmt, error) { + nid := id.(*NodeId) + var a AttrList = nil + var err error = nil + if attrs == nil { + a, err = NewAttrList(nil) + if err != nil { + return nil, err + } + } else { + a = attrs.(AttrList) + } + return &NodeStmt{nid, a}, nil +} + +func (this NodeStmt) String() string { + return strings.TrimSpace(this.NodeId.String() + ` ` + this.Attrs.String()) +} + +func (this NodeStmt) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.NodeId.Walk(v) + this.Attrs.Walk(v) +} + +type EdgeOp bool + +const ( + DIRECTED EdgeOp = true + UNDIRECTED EdgeOp = false +) + +func (this EdgeOp) String() string { + switch this { + case DIRECTED: + return "->" + case UNDIRECTED: + return "--" + } + panic("unreachable") +} + +func (this EdgeOp) Walk(v Visitor) { + if v == nil { + return + } + v.Visit(this) +} + +type NodeId struct { + Id Id + Port Port +} + +func NewNodeId(id Elem, port Elem) (*NodeId, error) { + if port == nil { + return &NodeId{id.(Id), Port{"", ""}}, nil + } + return &NodeId{id.(Id), port.(Port)}, nil +} + +func MakeNodeId(id string, port string) *NodeId { + p := Port{"", ""} + if len(port) > 0 { + ps := strings.Split(port, ":") + p.Id1 = Id(ps[1]) + if len(ps) > 2 { + p.Id2 = Id(ps[2]) + } + } + return &NodeId{Id(id), p} +} + +func (this *NodeId) String() string { + return this.Id.String() + this.Port.String() +} + +func (this *NodeId) GetId() Id { + return this.Id +} + +func (this *NodeId) GetPort() Port { + return this.Port +} + +func (this *NodeId) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Id.Walk(v) + this.Port.Walk(v) +} + +//TODO semantic analysis should decide which Id is an Id and which is a Compass Point +type Port struct { + Id1 Id + Id2 Id +} + +func NewPort(id1, id2 Elem) (Port, error) { + port := Port{Id(""), Id("")} + if id1 != nil { + port.Id1 = id1.(Id) + } + if id2 != nil { + port.Id2 = id2.(Id) + } + return port, nil +} + +func (this Port) String() string { + if len(this.Id1) == 0 { + return "" + } + s := ":" + this.Id1.String() + if len(this.Id2) > 0 { + s += ":" + this.Id2.String() + } + return s +} + +func (this Port) Walk(v Visitor) { + if v == nil { + return + } + v = v.Visit(this) + this.Id1.Walk(v) + this.Id2.Walk(v) +} + +type Id string + +func NewId(id Elem) (Id, error) { + if id == nil { + return Id(""), nil + } + id_lit := string(id.(*token.Token).Lit) + return Id(id_lit), nil +} + +func (this Id) String() string { + return string(this) +} + +func (this Id) Walk(v Visitor) { + if v == nil { + return + } + v.Visit(this) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/attrs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/attrs.go new file mode 100644 index 00000000..6d06bb92 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/attrs.go @@ -0,0 +1,71 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "fmt" + "os" + "sort" +) + +//Represents attributes for an Edge, Node or Graph. +type Attrs map[string]string + +//Creates an empty Attributes type. +func NewAttrs() Attrs { + return make(Attrs) +} + +//Adds an attribute name and value. +func (this Attrs) Add(field string, value string) { + prev, ok := this[field] + if ok { + fmt.Fprintf(os.Stderr, "WARNING: overwriting field %v value %v, with value %v\n", field, prev, value) + } + this[field] = value +} + +//Adds the attributes into this Attrs type overwriting duplicates. +func (this Attrs) Extend(more Attrs) { + for key, value := range more { + this.Add(key, value) + } +} + +//Only adds the missing attributes to this Attrs type. +func (this Attrs) Ammend(more Attrs) { + for key, value := range more { + if _, ok := this[key]; !ok { + this.Add(key, value) + } + } +} + +func (this Attrs) SortedNames() []string { + keys := make([]string, 0) + for key := range this { + keys = append(keys, key) + } + sort.Strings(keys) + return keys +} + +func (this Attrs) Copy() Attrs { + attrs := make(Attrs) + for k, v := range this { + attrs[k] = v + } + return attrs +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/bug_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/bug_test.go new file mode 100644 index 00000000..5568f2de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/bug_test.go @@ -0,0 +1,42 @@ +package gographviz + +import ( + "code.google.com/p/gographviz/ast" + "code.google.com/p/gographviz/parser" + "testing" +) + +type bugSubGraphWorldVisitor struct { + t *testing.T + found bool +} + +func (this *bugSubGraphWorldVisitor) Visit(v ast.Elem) ast.Visitor { + edge, ok := v.(ast.EdgeStmt) + if !ok { + return this + } + if edge.Source.GetId().String() != "2" { + return this + } + dst := edge.EdgeRHS[0].Destination + if _, ok := dst.(*ast.SubGraph); !ok { + this.t.Fatalf("2 -> Not SubGraph") + } else { + this.found = true + } + return this +} + +func TestBugSubGraphWorld(t *testing.T) { + g := analtest(t, "world.gv.txt") + st, err := parser.ParseString(g.String()) + check(t, err) + s := &bugSubGraphWorldVisitor{ + t: t, + } + st.Walk(s) + if !s.found { + t.Fatalf("2 -> SubGraph not found") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/dot.bnf b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/dot.bnf new file mode 100644 index 00000000..81ffb2e1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/dot.bnf @@ -0,0 +1,209 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +//This bnf has been derived from http://www.graphviz.org/content/dot-language +//The rules have been copied and are shown in the comments, with their derived bnf rules below. + +//graph : [ strict ] (graph | digraph) [ ID ] '{' stmt_list '}' +DotGraph + : Graph "{" "}" << ast.NewGraph(ast.GRAPH, ast.FALSE, nil, nil) >> + | Strict Graph "{" "}" << ast.NewGraph(ast.GRAPH, ast.TRUE, nil, nil) >> + | Graph Id "{" "}" << ast.NewGraph(ast.GRAPH, ast.FALSE, $1, nil) >> + | Strict Graph Id "{" "}" << ast.NewGraph(ast.GRAPH, ast.TRUE, $2, nil) >> + | Graph "{" StmtList "}" << ast.NewGraph(ast.GRAPH, ast.FALSE, nil, $2) >> + | Graph Id "{" StmtList "}" << ast.NewGraph(ast.GRAPH, ast.FALSE, $1, $3) >> + | Strict Graph "{" StmtList "}" << ast.NewGraph(ast.GRAPH, ast.TRUE, nil, $3) >> + | Strict Graph Id "{" StmtList "}" << ast.NewGraph(ast.GRAPH, ast.TRUE, $2, $4) >> + | Digraph "{" "}" << ast.NewGraph(ast.DIGRAPH, ast.FALSE, nil, nil) >> + | Strict Digraph "{" "}" << ast.NewGraph(ast.DIGRAPH, ast.TRUE, nil, nil) >> + | Digraph Id "{" "}" << ast.NewGraph(ast.DIGRAPH, ast.FALSE, $1, nil) >> + | Strict Digraph Id "{" "}" << ast.NewGraph(ast.DIGRAPH, ast.TRUE, $2, nil) >> + | Digraph "{" StmtList "}" << ast.NewGraph(ast.DIGRAPH, ast.FALSE, nil, $2) >> + | Digraph Id "{" StmtList "}" << ast.NewGraph(ast.DIGRAPH, ast.FALSE, $1, $3) >> + | Strict Digraph "{" StmtList "}" << ast.NewGraph(ast.DIGRAPH, ast.TRUE, nil, $3) >> + | Strict Digraph Id "{" StmtList "}" << ast.NewGraph(ast.DIGRAPH, ast.TRUE, $2, $4) >> + ; + + +//stmt_list : [ stmt [ ';' ] [ stmt_list ] ] +StmtList + : Stmt1 << ast.NewStmtList($0) >> + | StmtList Stmt1 << ast.AppendStmtList($0, $1) >> + ; + +Stmt1 + : Stmt << $0, nil >> + | Stmt ";" << $0, nil >> + ; + +//stmt : node_stmt | edge_stmt | attr_stmt | (ID '=' ID) | subgraph +Stmt + : Id "=" Id << ast.NewAttr($0, $2) >> + | NodeStmt << $0, nil >> + | EdgeStmt << $0, nil >> + | AttrStmt << $0, nil >> + | SubGraphStmt << $0, nil >> + ; + +//attr_stmt : (graph | node | edge) attr_list +AttrStmt + : Graph AttrList << ast.NewGraphAttrs($1) >> + | Node AttrList << ast.NewNodeAttrs($1) >> + | Edge AttrList << ast.NewEdgeAttrs($1) >> + ; + +//attr_list : '[' [ a_list ] ']' [ attr_list ] +AttrList + : "[" "]" << ast.NewAttrList(nil) >> + | "[" AList "]" << ast.NewAttrList($1) >> + | AttrList "[" "]" << ast.AppendAttrList($0, nil) >> + | AttrList "[" AList "]" << ast.AppendAttrList($0, $2) >> + ; + +//a_list : ID [ '=' ID ] [ ',' ] [ a_list ] +AList + : Attr << ast.NewAList($0) >> + | AList Attr << ast.AppendAList($0, $1) >> + | AList "," Attr << ast.AppendAList($0, $2) >> + ; + +//An a_list clause of the form ID is equivalent to ID=true. +Attr + : Id << ast.NewAttr($0, nil) >> + | Id "=" Id << ast.NewAttr($0, $2) >> + ; + +//edge_stmt : (node_id | subgraph) edgeRHS [ attr_list ] +EdgeStmt + : NodeId EdgeRHS << ast.NewEdgeStmt($0, $1, nil) >> + | NodeId EdgeRHS AttrList << ast.NewEdgeStmt($0, $1, $2) >> + | SubGraphStmt EdgeRHS << ast.NewEdgeStmt($0, $1, nil) >> + | SubGraphStmt EdgeRHS AttrList << ast.NewEdgeStmt($0, $1, $2) >> + ; + +//edgeRHS : edgeop (node_id | subgraph) [ edgeRHS ] +EdgeRHS + : EdgeOp NodeId << ast.NewEdgeRHS($0, $1) >> + | EdgeOp SubGraphStmt << ast.NewEdgeRHS($0, $1) >> + | EdgeRHS EdgeOp NodeId << ast.AppendEdgeRHS($0, $1, $2) >> + | EdgeRHS EdgeOp SubGraphStmt << ast.AppendEdgeRHS($0, $1, $2) >> + ; + +//node_stmt : node_id [ attr_list ] +NodeStmt + : NodeId << ast.NewNodeStmt($0, nil) >> + | NodeId AttrList << ast.NewNodeStmt($0, $1) >> + ; + +//node_id : ID [ port ] +NodeId + : Id << ast.NewNodeId($0, nil) >> + | Id Port << ast.NewNodeId($0, $1) >> + ; + +//compass_pt : (n | ne | e | se | s | sw | w | nw | c | _) +//Note also that the allowed compass point values are not keywords, +//so these strings can be used elsewhere as ordinary identifiers and, +//conversely, the parser will actually accept any identifier. +//port : ':' ID [ ':' compass_pt ] +// | ':' compass_pt +Port + : ":" Id << ast.NewPort($1, nil) >> + | ":" Id ":" Id << ast.NewPort($1, $3) >> + ; + +//subgraph : [ subgraph [ ID ] ] '{' stmt_list '}' +SubGraphStmt + : "{" StmtList "}" << ast.NewSubGraph(nil, $1) >> + | Subgraph "{" StmtList "}" << ast.NewSubGraph(nil, $2) >> + | Subgraph Id "{" StmtList "}" << ast.NewSubGraph($1, $3) >> + ; + +//An edgeop is -> in directed graphs and -- in undirected graphs. +EdgeOp + : "->" << ast.DIRECTED, nil >> + | "--" << ast.UNDIRECTED, nil >> + ; + +//The keywords node, edge, graph, digraph, subgraph, and strict are case-independent. +Graph + : "graph" << $0, nil >> + | "Graph" << $0, nil >> + | "GRAPH" << $0, nil >> + ; + +Strict + : "strict" << $0, nil >> + | "Strict" << $0, nil >> + | "STRICT" << $0, nil >> + ; + +Digraph + : "digraph" << $0, nil >> + | "Digraph" << $0, nil >> + | "DiGraph" << $0, nil >> + | "DIGRAPH" << $0, nil >> + ; + +Node + : "node" << $0, nil >> + | "Node" << $0, nil >> + | "NODE" << $0, nil >> + ; + +Edge + : "edge" << $0, nil >> + | "Edge" << $0, nil >> + | "EDGE" << $0, nil >> + ; + +Subgraph + : "subgraph" << $0, nil >> + | "Subgraph" << $0, nil >> + | "SubGraph" << $0, nil >> + | "SUBGRAPH" << $0, nil >> + ; + +// An ID is one of the following: +// Any string of alphabetic ([a-zA-Z'200-'377]) characters, underscores ('_') or digits ([0-9]), not beginning with a digit; //CHECK 200-377 +// a numeral [-]?(.[0-9]+ | [0-9]+(.[0-9]*)? ); +// any double-quoted string ("...") possibly containing escaped quotes ('")1; //TODO +// an HTML string (<...>). +// An ID is just a string; the lack of quote characters in the first two forms is just for simplicity. +// There is no semantic difference between abc_2 and "abc_2", or between 2.34 and "2.34". +// Obviously, to use a keyword as an ID, it must be quoted. Note that, in HTML strings, angle brackets must occur in matched pairs, and unescaped newlines are allowed. +// In addition, the content must be legal XML, so that the special XML escape sequences for ", &, <, and > may be necessary in order to embed these characters in attribute values or raw text. +// Both quoted strings and HTML strings are scanned as a unit, so any embedded comments will be treated as part of the strings. +Id + : id << ast.NewId($0) >> + | string_lit << ast.NewId($0) >> + | int_lit << ast.NewId($0) >> + | float_lit << ast.NewId($0) >> + | html_lit << ast.NewId($0) >> + ; + +//The language supports C++-style comments: /* */ and //. +//In addition, a line beginning with a '#' character is considered a line output from a C preprocessor (e.g., # 34 to indicate line 34 ) and discarded. + +//TODO (if dot file is not parsable, it might be because of these points) + +//Semicolons aid readability but are not required except in the rare case that a named subgraph with no body immediately preceeds an anonymous subgraph, +//since the precedence rules cause this sequence to be parsed as a subgraph with a heading and a body. Also, any amount of whitespace may be inserted between terminals. + +//TODO +//As another aid for readability, dot allows single logical lines to span multiple physical lines using the standard C convention of a backslash immediately preceding a newline character. +//In addition, double-quoted strings can be concatenated using a '+' operator. As HTML strings can contain newline characters, they do not support the concatenation operator. + +//TODO +//Note there are still 3 sections on the webpage which have not been included (Subgraphs and Clusters, Lexical and Semantic Notes, and Character Encodings) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/edges.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/edges.go new file mode 100644 index 00000000..d848c3fe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/edges.go @@ -0,0 +1,81 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "sort" +) + +//Represents an Edge. +type Edge struct { + Src string + SrcPort string + Dst string + DstPort string + Dir bool + Attrs Attrs +} + +//Represents a set of Edges. +type Edges struct { + SrcToDsts map[string]map[string]*Edge + DstToSrcs map[string]map[string]*Edge + Edges []*Edge +} + +//Creates a blank set of Edges. +func NewEdges() *Edges { + return &Edges{make(map[string]map[string]*Edge), make(map[string]map[string]*Edge), make([]*Edge, 0)} +} + +//Adds an Edge to the set of Edges. +func (this *Edges) Add(edge *Edge) { + if _, ok := this.SrcToDsts[edge.Src]; !ok { + this.SrcToDsts[edge.Src] = make(map[string]*Edge) + } + if _, ok := this.SrcToDsts[edge.Src][edge.Dst]; !ok { + this.SrcToDsts[edge.Src][edge.Dst] = edge + } else { + this.SrcToDsts[edge.Src][edge.Dst].Attrs.Extend(edge.Attrs) + } + if _, ok := this.DstToSrcs[edge.Dst]; !ok { + this.DstToSrcs[edge.Dst] = make(map[string]*Edge) + } + if _, ok := this.DstToSrcs[edge.Dst][edge.Src]; !ok { + this.DstToSrcs[edge.Dst][edge.Src] = edge + } + this.Edges = append(this.Edges, edge) +} + +//Retrusn a sorted list of Edges. +func (this Edges) Sorted() []*Edge { + srcs := make([]string, 0, len(this.SrcToDsts)) + for src := range this.SrcToDsts { + srcs = append(srcs, src) + } + sort.Strings(srcs) + edges := make([]*Edge, 0, len(srcs)) + for _, src := range srcs { + dsts := make([]string, 0, len(this.SrcToDsts[src])) + for dst := range this.SrcToDsts[src] { + dsts = append(dsts, dst) + } + sort.Strings(dsts) + for _, dst := range dsts { + edges = append(edges, this.SrcToDsts[src][dst]) + } + } + return edges +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/example_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/example_test.go new file mode 100644 index 00000000..3f9b0429 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/example_test.go @@ -0,0 +1,156 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "fmt" + "strconv" +) + +func ExampleRead() { + g, err := Read([]byte(`digraph G {Hello->World}`)) + if err != nil { + panic(err) + } + s := g.String() + fmt.Println(s) + // Output: digraph G { + // Hello->World; + // Hello; + // World; + // + //} +} + +func ExampleNewGraph() { + g := NewGraph() + g.SetName("G") + g.SetDir(true) + g.AddNode("G", "Hello", nil) + g.AddNode("G", "World", nil) + g.AddEdge("Hello", "", "World", "", true, nil) + s := g.String() + fmt.Println(s) + // Output: digraph G { + // Hello->World; + // Hello; + // World; + // + //} +} + +type MyOwnGraphStructure struct { + weights map[int]map[int]int + max int +} + +func NewMyOwnGraphStructure() *MyOwnGraphStructure { + return &MyOwnGraphStructure{ + make(map[int]map[int]int), + 0, + } +} + +func (this *MyOwnGraphStructure) SetStrict(strict bool) {} +func (this *MyOwnGraphStructure) SetDir(directed bool) {} +func (this *MyOwnGraphStructure) SetName(name string) {} +func (this *MyOwnGraphStructure) AddEdge(src, srcPort, dst, dstPort string, directed bool, attrs map[string]string) { + srci, err := strconv.Atoi(src) + if err != nil { + return + } + dsti, err := strconv.Atoi(dst) + if err != nil { + return + } + ai, err := strconv.Atoi(attrs["label"]) + if err != nil { + return + } + if _, ok := this.weights[srci]; !ok { + this.weights[srci] = make(map[int]int) + } + this.weights[srci][dsti] = ai + if srci > this.max { + this.max = srci + } + if dsti > this.max { + this.max = dsti + } + +} +func (this *MyOwnGraphStructure) AddNode(parentGraph string, name string, attrs map[string]string) {} +func (this *MyOwnGraphStructure) AddAttr(parentGraph string, field, value string) {} +func (this *MyOwnGraphStructure) AddSubGraph(parentGraph string, name string, attrs map[string]string) { +} + +//An Example of how to parse into your own simpler graph structure and output it back to graphviz. +//This example reads in only numbers and outputs a matrix graph. +func ExampleMyOwnGraphStructure() { + name := "matrix" + parsed, err := Parse([]byte(` + digraph G { + 1 -> 2 [ label = 5 ]; + 4 -> 2 [ label = 1 ]; + 4 -> 1 [ label = 2 ]; + 1 -> 1 [ label = 0 ]; + } + + `)) + if err != nil { + panic(err) + } + mine := NewMyOwnGraphStructure() + Analyse(parsed, mine) + output := NewGraph() + output.SetName(name) + output.SetDir(true) + for i := 1; i <= mine.max; i++ { + output.AddNode(name, fmt.Sprintf("%v", i), nil) + if _, ok := mine.weights[i]; !ok { + mine.weights[i] = make(map[int]int) + } + } + for i := 1; i <= mine.max; i++ { + for j := 1; j <= mine.max; j++ { + output.AddEdge(fmt.Sprintf("%v", i), "", fmt.Sprintf("%v", j), "", true, map[string]string{"label": fmt.Sprintf("%v", mine.weights[i][j])}) + } + } + s := output.String() + fmt.Println(s) + // Output: digraph matrix { + // 1->1[ label=0 ]; + // 1->2[ label=5 ]; + // 1->3[ label=0 ]; + // 1->4[ label=0 ]; + // 2->1[ label=0 ]; + // 2->2[ label=0 ]; + // 2->3[ label=0 ]; + // 2->4[ label=0 ]; + // 3->1[ label=0 ]; + // 3->2[ label=0 ]; + // 3->3[ label=0 ]; + // 3->4[ label=0 ]; + // 4->1[ label=2 ]; + // 4->2[ label=1 ]; + // 4->3[ label=0 ]; + // 4->4[ label=0 ]; + // 1; + // 2; + // 3; + // 4; + // + //} +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/gen.sh b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/gen.sh new file mode 100755 index 00000000..92b599e0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/gen.sh @@ -0,0 +1,4 @@ +gocc -o ../ -p . dot.bnf +cp ./parser/parser.temp ./parser/parser.go +gofix parser/tables.go +gofix token/token.go diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/gographviz.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/gographviz.go new file mode 100644 index 00000000..b78b38bd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/gographviz.go @@ -0,0 +1,51 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +//Package gographviz provides parsing for the DOT grammar into +//an abstract syntax tree representing a graph, +//analysis of the abstract syntax tree into a more usable structure, +//and writing back of this structure into the DOT format. +package gographviz + +import ( + "code.google.com/p/gographviz/ast" + "code.google.com/p/gographviz/parser" +) + +var _ Interface = NewGraph() + +//Implementing this interface allows you to parse the graph into your own structure. +type Interface interface { + SetStrict(strict bool) + SetDir(directed bool) + SetName(name string) + AddEdge(src, srcPort, dst, dstPort string, directed bool, attrs map[string]string) + AddNode(parentGraph string, name string, attrs map[string]string) + AddAttr(parentGraph string, field, value string) + AddSubGraph(parentGraph string, name string, attrs map[string]string) +} + +//Parses the buffer into a abstract syntax tree representing the graph. +func Parse(buf []byte) (*ast.Graph, error) { + return parser.ParseBytes(buf) +} + +//Parses and creates a new Graph from the data. +func Read(buf []byte) (*Graph, error) { + st, err := Parse(buf) + if err != nil { + return nil, err + } + return NewAnalysedGraph(st), nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/graph.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/graph.go new file mode 100644 index 00000000..2bbd85b6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/graph.go @@ -0,0 +1,106 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +//The analysed representation of the Graph parsed from the DOT format. +type Graph struct { + Attrs Attrs + Name string + Directed bool + Strict bool + Nodes *Nodes + Edges *Edges + SubGraphs *SubGraphs + Relations *Relations +} + +//Creates a new empty graph, ready to be populated. +func NewGraph() *Graph { + return &Graph{ + Attrs: make(Attrs), + Name: "", + Directed: false, + Strict: false, + Nodes: NewNodes(), + Edges: NewEdges(), + SubGraphs: NewSubGraphs(), + Relations: NewRelations(), + } +} + +//If the graph is strict then multiple edges are not allowed between the same pairs of nodes, +//see dot man page. +func (this *Graph) SetStrict(strict bool) { + this.Strict = strict +} + +//Sets whether the graph is directed (true) or undirected (false). +func (this *Graph) SetDir(dir bool) { + this.Directed = dir +} + +//Sets the graph name. +func (this *Graph) SetName(name string) { + this.Name = name +} + +//Adds an edge to the graph from node src to node dst. +//srcPort and dstPort are the port the node ports, leave as empty strings if it is not required. +//This does not imply the adding of missing nodes. +func (this *Graph) AddEdge(src, srcPort, dst, dstPort string, directed bool, attrs map[string]string) { + this.Edges.Add(&Edge{src, srcPort, dst, dstPort, directed, attrs}) +} + +//Adds a node to a graph/subgraph. +//If not subgraph exists use the name of the main graph. +//This does not imply the adding of a missing subgraph. +func (this *Graph) AddNode(parentGraph string, name string, attrs map[string]string) { + this.Nodes.Add(&Node{name, attrs}) + this.Relations.Add(parentGraph, name) +} + +func (this *Graph) getAttrs(graphName string) Attrs { + if this.Name == graphName { + return this.Attrs + } + g, ok := this.SubGraphs.SubGraphs[graphName] + if !ok { + panic("graph or subgraph " + graphName + " does not exist") + } + return g.Attrs +} + +//Adds an attribute to a graph/subgraph. +func (this *Graph) AddAttr(parentGraph string, field string, value string) { + this.getAttrs(parentGraph).Add(field, value) +} + +//Adds a subgraph to a graph/subgraph. +func (this *Graph) AddSubGraph(parentGraph string, name string, attrs map[string]string) { + this.SubGraphs.Add(name) + for key, value := range attrs { + this.AddAttr(name, key, value) + } +} + +func (this *Graph) IsNode(name string) bool { + _, ok := this.Nodes.Lookup[name] + return ok +} + +func (this *Graph) IsSubGraph(name string) bool { + _, ok := this.SubGraphs.SubGraphs[name] + return ok +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/nodes.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/nodes.go new file mode 100644 index 00000000..53e9c53c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/nodes.go @@ -0,0 +1,61 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "sort" +) + +//Represents a Node. +type Node struct { + Name string + Attrs Attrs +} + +//Represents a set of Nodes. +type Nodes struct { + Lookup map[string]*Node + Nodes []*Node +} + +//Creates a new set of Nodes. +func NewNodes() *Nodes { + return &Nodes{make(map[string]*Node), make([]*Node, 0)} +} + +//Adds a Node to the set of Nodes, ammending the attributes of an already existing node. +func (this *Nodes) Add(node *Node) { + n, ok := this.Lookup[node.Name] + if ok { + n.Attrs.Ammend(node.Attrs) + return + } + this.Lookup[node.Name] = node + this.Nodes = append(this.Nodes, node) +} + +//Returns a sorted list of nodes. +func (this Nodes) Sorted() []*Node { + keys := make([]string, 0, len(this.Lookup)) + for key := range this.Lookup { + keys = append(keys, key) + } + sort.Strings(keys) + nodes := make([]*Node, len(keys)) + for i := range keys { + nodes[i] = this.Lookup[keys[i]] + } + return nodes +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/main.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/main.go new file mode 100644 index 00000000..d19e17b9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/main.go @@ -0,0 +1,69 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +//A parser for the DOT grammar. +package parser + +import ( + "code.google.com/p/gographviz/ast" + "code.google.com/p/gographviz/scanner" + "code.google.com/p/gographviz/token" + "fmt" + "io" + "io/ioutil" + "os" +) + +//Parses a DOT string and outputs the +//abstract syntax tree representing the graph. +func ParseString(dotString string) (*ast.Graph, error) { + return ParseBytes([]byte(dotString)) +} + +//Parses the bytes representing a DOT string +//and outputs the abstract syntax tree representing the graph. +func ParseBytes(dotBytes []byte) (*ast.Graph, error) { + lex := &scanner.Scanner{} + lex.Init(dotBytes, token.DOTTokens) + parser := NewParser(ActionTable, GotoTable, ProductionsTable, token.DOTTokens) + st, err := parser.Parse(lex) + if err != nil { + return nil, err + } + g, ok := st.(*ast.Graph) + if !ok { + panic(fmt.Sprintf("Parser did not return an *ast.Graph, but rather a %T", st)) + } + return g, err +} + +//Parses a reader which contains a DOT string +//and outputs the abstract syntax tree representing the graph. +func Parse(r io.Reader) (*ast.Graph, error) { + bytes, err := ioutil.ReadAll(r) + if err != nil { + return nil, err + } + return ParseBytes(bytes) +} + +//Parses a file which contains a DOT string +//and outputs the abstract syntax tree representing the graph. +func ParseFile(filename string) (*ast.Graph, error) { + f, err := os.Open(filename) + if err != nil { + return nil, err + } + return Parse(f) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser.go new file mode 100644 index 00000000..a341cf82 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser.go @@ -0,0 +1,200 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package parser + +import ( + "errors" + "strconv" +) + +import "code.google.com/p/gographviz/token" + +type ( + ActionTab []ActionRow + ActionRow map[token.Type]Action +) + +func (R ActionRow) String() string { + s := "" + for t, a := range R { + s += strconv.Itoa(int(t)) + " : " + a.String() + "\n" + } + return s +} + +type ( + Accept int + Shift State + Reduce int + + Action interface { + Act() + String() string + } +) + +func (this Accept) Act() {} +func (this Shift) Act() {} +func (this Reduce) Act() {} + +func (this Accept) String() string { return "Accept(0)" } +func (this Shift) String() string { return "Shift(" + strconv.Itoa(int(this)) + ")" } +func (this Reduce) String() string { return "Reduce(" + strconv.Itoa(int(this)) + ")" } + +type ( + GotoTab []GotoRow + GotoRow map[NT]State + State int + NT string +) + +type ( + ProdTab []ProdTabEntry + ProdTabEntry struct { + String string + Head NT + NumSymbols int + ReduceFunc func([]Attrib) (Attrib, error) + } + Attrib interface { + String() string + } +) + +/*** Stack ***/ + +type stack struct { + state []State + attrib []Attrib +} + +const INITIAL_STACK_SIZE = 100 + +func NewStack() *stack { + return &stack{state: make([]State, 0, INITIAL_STACK_SIZE), + attrib: make([]Attrib, 0, INITIAL_STACK_SIZE), + } +} + +func (this *stack) Push(s State, a Attrib) { + this.state = append(this.state, s) + this.attrib = append(this.attrib, a) +} + +func (this *stack) Top() State { + return this.state[len(this.state)-1] +} + +func (this *stack) PopN(items int) []Attrib { + lo, hi := len(this.state)-items, len(this.state) + + attrib := this.attrib[lo:hi] + + this.state = this.state[:lo] + this.attrib = this.attrib[:lo] + + return attrib +} + +func (S *stack) String() string { + res := "stack:\n" + for i, st := range S.state { + res += "\t" + strconv.Itoa(i) + ": " + strconv.Itoa(int(st)) + res += " , " + if S.attrib[i] == nil { + res += "nil" + } else { + res += S.attrib[i].String() + } + res += "\n" + } + return res +} + +/*** Parser ***/ + +type Parser struct { + actTab ActionTab + gotoTab GotoTab + prodTab ProdTab + stack *stack + nextToken *token.Token + pos token.Position + tokenMap *token.TokenMap +} + +type Scanner interface { + Scan() (*token.Token, token.Position) +} + +func NewParser(act ActionTab, gto GotoTab, prod ProdTab, tm *token.TokenMap) *Parser { + p := &Parser{actTab: act, gotoTab: gto, prodTab: prod, stack: NewStack(), tokenMap: tm} + p.stack.Push(0, nil) //TODO: which attribute should be pushed here? + return p +} + +func (P *Parser) Error(err error) error { + errmsg := "Error: " + P.TokString(P.nextToken) + " @ " + P.pos.String() + if err != nil { + errmsg += " " + err.Error() + } else { + errmsg += ", expected one of: " + actRow := P.actTab[P.stack.Top()] + i := 0 + for t := range actRow { + errmsg += P.tokenMap.TokenString(t) + if i < len(actRow)-1 { + errmsg += " " + } + i++ + } + } + return errors.New(errmsg) +} + +func (P *Parser) TokString(tok *token.Token) string { + msg := P.tokenMap.TokenString(tok.Type) + "(" + strconv.Itoa(int(tok.Type)) + ")" + msg += " " + string(tok.Lit) + return msg +} + +func (this *Parser) Parse(scanner Scanner) (res interface{}, err error) { + this.nextToken, this.pos = scanner.Scan() + for acc := false; !acc; { + action, ok := this.actTab[this.stack.Top()][this.nextToken.Type] + if !ok { + return nil, this.Error(nil) + } + switch act := action.(type) { + case Accept: + res = this.stack.PopN(1)[0] + acc = true + case Shift: + this.stack.Push(State(act), this.nextToken) + this.nextToken, this.pos = scanner.Scan() + case Reduce: + prod := this.prodTab[int(act)] + attrib, err := prod.ReduceFunc(this.stack.PopN(prod.NumSymbols)) + if err != nil { + return nil, this.Error(err) + } else { + this.stack.Push(this.gotoTab[this.stack.Top()][prod.Head], attrib) + } + default: + panic("unknown action") + } + } + return res, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser.temp b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser.temp new file mode 100644 index 00000000..a341cf82 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser.temp @@ -0,0 +1,200 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package parser + +import ( + "errors" + "strconv" +) + +import "code.google.com/p/gographviz/token" + +type ( + ActionTab []ActionRow + ActionRow map[token.Type]Action +) + +func (R ActionRow) String() string { + s := "" + for t, a := range R { + s += strconv.Itoa(int(t)) + " : " + a.String() + "\n" + } + return s +} + +type ( + Accept int + Shift State + Reduce int + + Action interface { + Act() + String() string + } +) + +func (this Accept) Act() {} +func (this Shift) Act() {} +func (this Reduce) Act() {} + +func (this Accept) String() string { return "Accept(0)" } +func (this Shift) String() string { return "Shift(" + strconv.Itoa(int(this)) + ")" } +func (this Reduce) String() string { return "Reduce(" + strconv.Itoa(int(this)) + ")" } + +type ( + GotoTab []GotoRow + GotoRow map[NT]State + State int + NT string +) + +type ( + ProdTab []ProdTabEntry + ProdTabEntry struct { + String string + Head NT + NumSymbols int + ReduceFunc func([]Attrib) (Attrib, error) + } + Attrib interface { + String() string + } +) + +/*** Stack ***/ + +type stack struct { + state []State + attrib []Attrib +} + +const INITIAL_STACK_SIZE = 100 + +func NewStack() *stack { + return &stack{state: make([]State, 0, INITIAL_STACK_SIZE), + attrib: make([]Attrib, 0, INITIAL_STACK_SIZE), + } +} + +func (this *stack) Push(s State, a Attrib) { + this.state = append(this.state, s) + this.attrib = append(this.attrib, a) +} + +func (this *stack) Top() State { + return this.state[len(this.state)-1] +} + +func (this *stack) PopN(items int) []Attrib { + lo, hi := len(this.state)-items, len(this.state) + + attrib := this.attrib[lo:hi] + + this.state = this.state[:lo] + this.attrib = this.attrib[:lo] + + return attrib +} + +func (S *stack) String() string { + res := "stack:\n" + for i, st := range S.state { + res += "\t" + strconv.Itoa(i) + ": " + strconv.Itoa(int(st)) + res += " , " + if S.attrib[i] == nil { + res += "nil" + } else { + res += S.attrib[i].String() + } + res += "\n" + } + return res +} + +/*** Parser ***/ + +type Parser struct { + actTab ActionTab + gotoTab GotoTab + prodTab ProdTab + stack *stack + nextToken *token.Token + pos token.Position + tokenMap *token.TokenMap +} + +type Scanner interface { + Scan() (*token.Token, token.Position) +} + +func NewParser(act ActionTab, gto GotoTab, prod ProdTab, tm *token.TokenMap) *Parser { + p := &Parser{actTab: act, gotoTab: gto, prodTab: prod, stack: NewStack(), tokenMap: tm} + p.stack.Push(0, nil) //TODO: which attribute should be pushed here? + return p +} + +func (P *Parser) Error(err error) error { + errmsg := "Error: " + P.TokString(P.nextToken) + " @ " + P.pos.String() + if err != nil { + errmsg += " " + err.Error() + } else { + errmsg += ", expected one of: " + actRow := P.actTab[P.stack.Top()] + i := 0 + for t := range actRow { + errmsg += P.tokenMap.TokenString(t) + if i < len(actRow)-1 { + errmsg += " " + } + i++ + } + } + return errors.New(errmsg) +} + +func (P *Parser) TokString(tok *token.Token) string { + msg := P.tokenMap.TokenString(tok.Type) + "(" + strconv.Itoa(int(tok.Type)) + ")" + msg += " " + string(tok.Lit) + return msg +} + +func (this *Parser) Parse(scanner Scanner) (res interface{}, err error) { + this.nextToken, this.pos = scanner.Scan() + for acc := false; !acc; { + action, ok := this.actTab[this.stack.Top()][this.nextToken.Type] + if !ok { + return nil, this.Error(nil) + } + switch act := action.(type) { + case Accept: + res = this.stack.PopN(1)[0] + acc = true + case Shift: + this.stack.Push(State(act), this.nextToken) + this.nextToken, this.pos = scanner.Scan() + case Reduce: + prod := this.prodTab[int(act)] + attrib, err := prod.ReduceFunc(this.stack.PopN(prod.NumSymbols)) + if err != nil { + return nil, this.Error(err) + } else { + this.stack.Push(this.gotoTab[this.stack.Top()][prod.Head], attrib) + } + default: + panic("unknown action") + } + } + return res, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser_test.go new file mode 100644 index 00000000..788ca35a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/parser_test.go @@ -0,0 +1,293 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package parser + +import ( + "code.google.com/p/gographviz/ast" + "fmt" + "io/ioutil" + "testing" +) + +func check(t *testing.T, err error) { + if err != nil { + t.Fatalf("%v", err) + } +} + +func assert(t *testing.T, msg string, v1 interface{}, v2 interface{}) { + if v1 != v2 { + t.Fatalf("%v\n%v\n!=\n%v", msg, v1, v2) + } +} + +func parseTest(t *testing.T, filename string) { + localFilename := "../testdata/" + filename + s, err := ioutil.ReadFile(localFilename) + check(t, err) + t.Logf("Input String = %v", string(s)) + g, err := ParseFile(localFilename) + t.Logf("First Parse = %v", g) + check(t, err) + gstr := g.String() + g2, err := ParseString(gstr) + t.Logf("Second Parse = %v", g2) + check(t, err) + gstr2 := g2.String() + assert(t, "output strings", gstr, gstr2) +} + +func parseStringTest(t *testing.T, s string) { + t.Logf("Input String = %v", s) + g, err := ParseString(s) + t.Logf("First Parse = %v", g) + check(t, err) + gstr := g.String() + g2, err := ParseString(gstr) + t.Logf("Second Parse = %v", g2) + check(t, err) + gstr2 := g2.String() + assert(t, "output strings", gstr, gstr2) +} + +func TestHelloWorldString(t *testing.T) { + input := `digraph G {Hello->World}` + g, err := ParseString(input) + check(t, err) + fmt.Printf("%#v", g) +} + +func TestHelloWorldFile(t *testing.T) { + g, err := ParseFile("../testdata/helloworld.gv.txt") + check(t, err) + fmt.Printf("%#v", g) +} + +func TestAttr(t *testing.T) { + parseStringTest(t, + "digraph finite_state { rankdir = LR }") +} + +func TestString(t *testing.T) { + parseStringTest(t, + `digraph finite_state { rankdir = "LR" }`) +} + +func TestAttrList(t *testing.T) { + parseStringTest(t, ` +digraph { node [ shape = doublecircle ] }`) +} + +func TestStringLit(t *testing.T) { + parseStringTest(t, `digraph finite_state_machine { + size= "8" ; }`) +} + +func TestHashComments(t *testing.T) { + parseStringTest(t, `## bla \n + digraph G {Hello->World}`) +} + +func TestIntLit(t *testing.T) { + parseStringTest(t, `graph G { + 1 -- 30 [f=1];}`) +} + +func TestFloat1(t *testing.T) { + parseStringTest(t, `digraph { bla = 2.0 }`) +} + +func TestFloat2(t *testing.T) { + parseStringTest(t, `digraph { bla = .1 }`) +} + +func TestNegative(t *testing.T) { + parseStringTest(t, `digraph { -2 -> -1 }`) +} + +func TestUnderscore(t *testing.T) { + parseStringTest(t, `digraph { a_b = 1 }`) +} + +func TestNonAscii(t *testing.T) { + parseStringTest(t, `digraph { label=T�th }`) +} + +func TestPorts(t *testing.T) { + parseStringTest(t, `digraph { "node6":f0 -> "node9":f1 }`) +} + +func TestHtml(t *testing.T) { + parseStringTest(t, `digraph { a = <
    > }`) +} + +func TestIdWithKeyword(t *testing.T) { + parseStringTest(t, `digraph { edgeURL = "a" }`) +} + +func TestSubGraph(t *testing.T) { + parseStringTest(t, `digraph { subgraph { a -> b } }`) +} + +func TestImplicitSubGraph(t *testing.T) { + parseStringTest(t, `digraph { { a -> b } }`) +} + +func TestEdges(t *testing.T) { + parseStringTest(t, `digraph { a0 -> a1 -> a2 -> a3 }`) +} + +func TestNodes(t *testing.T) { + parseStringTest(t, `digraph { a0 a1 }`) +} + +func TestTwoAttributes(t *testing.T) { + g, err := ParseString(`digraph { a0 [shape = circle bla = bla]}`) + check(t, err) + t.Logf("Parsed String = %v", g) + for _, stmt := range g.StmtList { + node := stmt.(*ast.NodeStmt) + if len(node.Attrs[0]) != 2 { + t.Fatalf("Not enough attributes, expected two, but found %v in %v", len(node.Attrs), node) + } + } +} + +func TestEasyFsm(t *testing.T) { + parseStringTest(t, `digraph finite_state_machine { + rankdir=LR; + size="8,5"; + node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8; + node [shape = circle]; + LR_0 -> LR_2 [ label = "SS(B)" ]; + LR_0 -> LR_1 [ label = "SS(S)" ]; + LR_1 -> LR_3 [ label = "S($end)" ]; + LR_2 -> LR_6 [ label = "SS(b)" ]; + LR_2 -> LR_5 [ label = "SS(a)" ]; + LR_2 -> LR_4 [ label = "S(A)" ]; + LR_5 -> LR_7 [ label = "S(b)" ]; + LR_5 -> LR_5 [ label = "S(a)" ]; + LR_6 -> LR_6 [ label = "S(b)" ]; + LR_6 -> LR_5 [ label = "S(a)" ]; + LR_7 -> LR_8 [ label = "S(b)" ]; + LR_7 -> LR_5 [ label = "S(a)" ]; + LR_8 -> LR_6 [ label = "S(b)" ]; + LR_8 -> LR_5 [ label = "S(a)" ]; +}`) +} + +func TestEmptyAttrList(t *testing.T) { + parseStringTest(t, `digraph g { edge [ ] }`) +} + +func TestHelloWorld(t *testing.T) { + parseTest(t, "helloworld.gv.txt") +} + +func TestCluster(t *testing.T) { + parseTest(t, "cluster.gv.txt") +} + +func TestPsg(t *testing.T) { + parseTest(t, "psg.gv.txt") +} + +func TestTransparency(t *testing.T) { + parseTest(t, "transparency.gv.txt") +} + +func TestCrazy(t *testing.T) { + parseTest(t, "crazy.gv.txt") +} + +func TestKennedyanc(t *testing.T) { + parseTest(t, "kennedyanc.gv.txt") +} + +func TestRoot(t *testing.T) { + parseTest(t, "root.gv.txt") +} + +func TestTwpoi(t *testing.T) { + parseTest(t, "twopi.gv.txt") +} + +func TestDataStruct(t *testing.T) { + parseTest(t, "datastruct.gv.txt") +} + +func TestLionShare(t *testing.T) { + parseTest(t, "lion_share.gv.txt") +} + +func TestSdh(t *testing.T) { + parseTest(t, "sdh.gv.txt") +} + +func TestUnix(t *testing.T) { + parseTest(t, "unix.gv.txt") +} + +func TestEr(t *testing.T) { + parseTest(t, "er.gv.txt") +} + +func TestNerworkMapTwopi(t *testing.T) { + parseTest(t, "networkmap_twopi.gv.txt") +} + +func TestSibling(t *testing.T) { + parseTest(t, "siblings.gv.txt") +} + +func TestWorld(t *testing.T) { + parseTest(t, "world.gv.txt") +} + +func TestFdpclust(t *testing.T) { + parseTest(t, "fdpclust.gv.txt") +} + +func TestPhilo(t *testing.T) { + parseTest(t, "philo.gv.txt") +} + +func TestSoftmaint(t *testing.T) { + parseTest(t, "softmaint.gv.txt") +} + +func TestFsm(t *testing.T) { + parseTest(t, "fsm.gv.txt") +} + +func TestProcess(t *testing.T) { + parseTest(t, "process.gv.txt") +} + +func TestSwitchGv(t *testing.T) { + parseTest(t, "switch.gv.txt") +} + +func TestGd19942007(t *testing.T) { + parseTest(t, "gd_1994_2007.gv.txt") +} + +func TestProfile(t *testing.T) { + parseTest(t, "profile.gv.txt") +} + +func TestTrafficLights(t *testing.T) { + parseTest(t, "traffic_lights.gv.txt") +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/tables.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/tables.go new file mode 100644 index 00000000..c9011f33 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/parser/tables.go @@ -0,0 +1,4002 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package parser + +import "code.google.com/p/gographviz/ast" + +var ProductionsTable = ProdTab{ + /* [0] */ + ProdTabEntry{ + "S! : DotGraph ;", + "S!", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [1] */ + ProdTabEntry{ + "DotGraph : Graph { } << ast.NewGraph(ast.GRAPH, ast.FALSE, nil, nil) >> ;", + "DotGraph", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.FALSE, nil, nil) + }, + }, + /* [2] */ + ProdTabEntry{ + "DotGraph : Strict Graph { } << ast.NewGraph(ast.GRAPH, ast.TRUE, nil, nil) >> ;", + "DotGraph", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.TRUE, nil, nil) + }, + }, + /* [3] */ + ProdTabEntry{ + "DotGraph : Graph Id { } << ast.NewGraph(ast.GRAPH, ast.FALSE, X[1], nil) >> ;", + "DotGraph", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.FALSE, X[1], nil) + }, + }, + /* [4] */ + ProdTabEntry{ + "DotGraph : Strict Graph Id { } << ast.NewGraph(ast.GRAPH, ast.TRUE, X[2], nil) >> ;", + "DotGraph", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.TRUE, X[2], nil) + }, + }, + /* [5] */ + ProdTabEntry{ + "DotGraph : Graph { StmtList } << ast.NewGraph(ast.GRAPH, ast.FALSE, nil, X[2]) >> ;", + "DotGraph", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.FALSE, nil, X[2]) + }, + }, + /* [6] */ + ProdTabEntry{ + "DotGraph : Graph Id { StmtList } << ast.NewGraph(ast.GRAPH, ast.FALSE, X[1], X[3]) >> ;", + "DotGraph", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.FALSE, X[1], X[3]) + }, + }, + /* [7] */ + ProdTabEntry{ + "DotGraph : Strict Graph { StmtList } << ast.NewGraph(ast.GRAPH, ast.TRUE, nil, X[3]) >> ;", + "DotGraph", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.TRUE, nil, X[3]) + }, + }, + /* [8] */ + ProdTabEntry{ + "DotGraph : Strict Graph Id { StmtList } << ast.NewGraph(ast.GRAPH, ast.TRUE, X[2], X[4]) >> ;", + "DotGraph", + 6, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.GRAPH, ast.TRUE, X[2], X[4]) + }, + }, + /* [9] */ + ProdTabEntry{ + "DotGraph : Digraph { } << ast.NewGraph(ast.DIGRAPH, ast.FALSE, nil, nil) >> ;", + "DotGraph", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.FALSE, nil, nil) + }, + }, + /* [10] */ + ProdTabEntry{ + "DotGraph : Strict Digraph { } << ast.NewGraph(ast.DIGRAPH, ast.TRUE, nil, nil) >> ;", + "DotGraph", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.TRUE, nil, nil) + }, + }, + /* [11] */ + ProdTabEntry{ + "DotGraph : Digraph Id { } << ast.NewGraph(ast.DIGRAPH, ast.FALSE, X[1], nil) >> ;", + "DotGraph", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.FALSE, X[1], nil) + }, + }, + /* [12] */ + ProdTabEntry{ + "DotGraph : Strict Digraph Id { } << ast.NewGraph(ast.DIGRAPH, ast.TRUE, X[2], nil) >> ;", + "DotGraph", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.TRUE, X[2], nil) + }, + }, + /* [13] */ + ProdTabEntry{ + "DotGraph : Digraph { StmtList } << ast.NewGraph(ast.DIGRAPH, ast.FALSE, nil, X[2]) >> ;", + "DotGraph", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.FALSE, nil, X[2]) + }, + }, + /* [14] */ + ProdTabEntry{ + "DotGraph : Digraph Id { StmtList } << ast.NewGraph(ast.DIGRAPH, ast.FALSE, X[1], X[3]) >> ;", + "DotGraph", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.FALSE, X[1], X[3]) + }, + }, + /* [15] */ + ProdTabEntry{ + "DotGraph : Strict Digraph { StmtList } << ast.NewGraph(ast.DIGRAPH, ast.TRUE, nil, X[3]) >> ;", + "DotGraph", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.TRUE, nil, X[3]) + }, + }, + /* [16] */ + ProdTabEntry{ + "DotGraph : Strict Digraph Id { StmtList } << ast.NewGraph(ast.DIGRAPH, ast.TRUE, X[2], X[4]) >> ;", + "DotGraph", + 6, + func(X []Attrib) (Attrib, error) { + return ast.NewGraph(ast.DIGRAPH, ast.TRUE, X[2], X[4]) + }, + }, + /* [17] */ + ProdTabEntry{ + "StmtList : Stmt1 << ast.NewStmtList(X[0]) >> ;", + "StmtList", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewStmtList(X[0]) + }, + }, + /* [18] */ + ProdTabEntry{ + "StmtList : StmtList Stmt1 << ast.AppendStmtList(X[0], X[1]) >> ;", + "StmtList", + 2, + func(X []Attrib) (Attrib, error) { + return ast.AppendStmtList(X[0], X[1]) + }, + }, + /* [19] */ + ProdTabEntry{ + "Stmt1 : Stmt << X[0], nil >> ;", + "Stmt1", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [20] */ + ProdTabEntry{ + "Stmt1 : Stmt ; << X[0], nil >> ;", + "Stmt1", + 2, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [21] */ + ProdTabEntry{ + "Stmt : Id = Id << ast.NewAttr(X[0], X[2]) >> ;", + "Stmt", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewAttr(X[0], X[2]) + }, + }, + /* [22] */ + ProdTabEntry{ + "Stmt : NodeStmt << X[0], nil >> ;", + "Stmt", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [23] */ + ProdTabEntry{ + "Stmt : EdgeStmt << X[0], nil >> ;", + "Stmt", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [24] */ + ProdTabEntry{ + "Stmt : AttrStmt << X[0], nil >> ;", + "Stmt", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [25] */ + ProdTabEntry{ + "Stmt : SubGraphStmt << X[0], nil >> ;", + "Stmt", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [26] */ + ProdTabEntry{ + "AttrStmt : Graph AttrList << ast.NewGraphAttrs(X[1]) >> ;", + "AttrStmt", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewGraphAttrs(X[1]) + }, + }, + /* [27] */ + ProdTabEntry{ + "AttrStmt : Node AttrList << ast.NewNodeAttrs(X[1]) >> ;", + "AttrStmt", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewNodeAttrs(X[1]) + }, + }, + /* [28] */ + ProdTabEntry{ + "AttrStmt : Edge AttrList << ast.NewEdgeAttrs(X[1]) >> ;", + "AttrStmt", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeAttrs(X[1]) + }, + }, + /* [29] */ + ProdTabEntry{ + "AttrList : [ ] << ast.NewAttrList(nil) >> ;", + "AttrList", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewAttrList(nil) + }, + }, + /* [30] */ + ProdTabEntry{ + "AttrList : [ AList ] << ast.NewAttrList(X[1]) >> ;", + "AttrList", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewAttrList(X[1]) + }, + }, + /* [31] */ + ProdTabEntry{ + "AttrList : AttrList [ ] << ast.AppendAttrList(X[0], nil) >> ;", + "AttrList", + 3, + func(X []Attrib) (Attrib, error) { + return ast.AppendAttrList(X[0], nil) + }, + }, + /* [32] */ + ProdTabEntry{ + "AttrList : AttrList [ AList ] << ast.AppendAttrList(X[0], X[2]) >> ;", + "AttrList", + 4, + func(X []Attrib) (Attrib, error) { + return ast.AppendAttrList(X[0], X[2]) + }, + }, + /* [33] */ + ProdTabEntry{ + "AList : Attr << ast.NewAList(X[0]) >> ;", + "AList", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewAList(X[0]) + }, + }, + /* [34] */ + ProdTabEntry{ + "AList : AList Attr << ast.AppendAList(X[0], X[1]) >> ;", + "AList", + 2, + func(X []Attrib) (Attrib, error) { + return ast.AppendAList(X[0], X[1]) + }, + }, + /* [35] */ + ProdTabEntry{ + "AList : AList , Attr << ast.AppendAList(X[0], X[2]) >> ;", + "AList", + 3, + func(X []Attrib) (Attrib, error) { + return ast.AppendAList(X[0], X[2]) + }, + }, + /* [36] */ + ProdTabEntry{ + "Attr : Id << ast.NewAttr(X[0], nil) >> ;", + "Attr", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewAttr(X[0], nil) + }, + }, + /* [37] */ + ProdTabEntry{ + "Attr : Id = Id << ast.NewAttr(X[0], X[2]) >> ;", + "Attr", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewAttr(X[0], X[2]) + }, + }, + /* [38] */ + ProdTabEntry{ + "EdgeStmt : NodeId EdgeRHS << ast.NewEdgeStmt(X[0], X[1], nil) >> ;", + "EdgeStmt", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeStmt(X[0], X[1], nil) + }, + }, + /* [39] */ + ProdTabEntry{ + "EdgeStmt : NodeId EdgeRHS AttrList << ast.NewEdgeStmt(X[0], X[1], X[2]) >> ;", + "EdgeStmt", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeStmt(X[0], X[1], X[2]) + }, + }, + /* [40] */ + ProdTabEntry{ + "EdgeStmt : SubGraphStmt EdgeRHS << ast.NewEdgeStmt(X[0], X[1], nil) >> ;", + "EdgeStmt", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeStmt(X[0], X[1], nil) + }, + }, + /* [41] */ + ProdTabEntry{ + "EdgeStmt : SubGraphStmt EdgeRHS AttrList << ast.NewEdgeStmt(X[0], X[1], X[2]) >> ;", + "EdgeStmt", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeStmt(X[0], X[1], X[2]) + }, + }, + /* [42] */ + ProdTabEntry{ + "EdgeRHS : EdgeOp NodeId << ast.NewEdgeRHS(X[0], X[1]) >> ;", + "EdgeRHS", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeRHS(X[0], X[1]) + }, + }, + /* [43] */ + ProdTabEntry{ + "EdgeRHS : EdgeOp SubGraphStmt << ast.NewEdgeRHS(X[0], X[1]) >> ;", + "EdgeRHS", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewEdgeRHS(X[0], X[1]) + }, + }, + /* [44] */ + ProdTabEntry{ + "EdgeRHS : EdgeRHS EdgeOp NodeId << ast.AppendEdgeRHS(X[0], X[1], X[2]) >> ;", + "EdgeRHS", + 3, + func(X []Attrib) (Attrib, error) { + return ast.AppendEdgeRHS(X[0], X[1], X[2]) + }, + }, + /* [45] */ + ProdTabEntry{ + "EdgeRHS : EdgeRHS EdgeOp SubGraphStmt << ast.AppendEdgeRHS(X[0], X[1], X[2]) >> ;", + "EdgeRHS", + 3, + func(X []Attrib) (Attrib, error) { + return ast.AppendEdgeRHS(X[0], X[1], X[2]) + }, + }, + /* [46] */ + ProdTabEntry{ + "NodeStmt : NodeId << ast.NewNodeStmt(X[0], nil) >> ;", + "NodeStmt", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewNodeStmt(X[0], nil) + }, + }, + /* [47] */ + ProdTabEntry{ + "NodeStmt : NodeId AttrList << ast.NewNodeStmt(X[0], X[1]) >> ;", + "NodeStmt", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewNodeStmt(X[0], X[1]) + }, + }, + /* [48] */ + ProdTabEntry{ + "NodeId : Id << ast.NewNodeId(X[0], nil) >> ;", + "NodeId", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewNodeId(X[0], nil) + }, + }, + /* [49] */ + ProdTabEntry{ + "NodeId : Id Port << ast.NewNodeId(X[0], X[1]) >> ;", + "NodeId", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewNodeId(X[0], X[1]) + }, + }, + /* [50] */ + ProdTabEntry{ + "Port : : Id << ast.NewPort(X[1], nil) >> ;", + "Port", + 2, + func(X []Attrib) (Attrib, error) { + return ast.NewPort(X[1], nil) + }, + }, + /* [51] */ + ProdTabEntry{ + "Port : : Id : Id << ast.NewPort(X[1], X[3]) >> ;", + "Port", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewPort(X[1], X[3]) + }, + }, + /* [52] */ + ProdTabEntry{ + "SubGraphStmt : { StmtList } << ast.NewSubGraph(nil, X[1]) >> ;", + "SubGraphStmt", + 3, + func(X []Attrib) (Attrib, error) { + return ast.NewSubGraph(nil, X[1]) + }, + }, + /* [53] */ + ProdTabEntry{ + "SubGraphStmt : Subgraph { StmtList } << ast.NewSubGraph(nil, X[2]) >> ;", + "SubGraphStmt", + 4, + func(X []Attrib) (Attrib, error) { + return ast.NewSubGraph(nil, X[2]) + }, + }, + /* [54] */ + ProdTabEntry{ + "SubGraphStmt : Subgraph Id { StmtList } << ast.NewSubGraph(X[1], X[3]) >> ;", + "SubGraphStmt", + 5, + func(X []Attrib) (Attrib, error) { + return ast.NewSubGraph(X[1], X[3]) + }, + }, + /* [55] */ + ProdTabEntry{ + "EdgeOp : -> << ast.DIRECTED, nil >> ;", + "EdgeOp", + 1, + func(X []Attrib) (Attrib, error) { + return ast.DIRECTED, nil + }, + }, + /* [56] */ + ProdTabEntry{ + "EdgeOp : -- << ast.UNDIRECTED, nil >> ;", + "EdgeOp", + 1, + func(X []Attrib) (Attrib, error) { + return ast.UNDIRECTED, nil + }, + }, + /* [57] */ + ProdTabEntry{ + "Graph : graph << X[0], nil >> ;", + "Graph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [58] */ + ProdTabEntry{ + "Graph : Graph << X[0], nil >> ;", + "Graph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [59] */ + ProdTabEntry{ + "Graph : GRAPH << X[0], nil >> ;", + "Graph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [60] */ + ProdTabEntry{ + "Strict : strict << X[0], nil >> ;", + "Strict", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [61] */ + ProdTabEntry{ + "Strict : Strict << X[0], nil >> ;", + "Strict", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [62] */ + ProdTabEntry{ + "Strict : STRICT << X[0], nil >> ;", + "Strict", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [63] */ + ProdTabEntry{ + "Digraph : digraph << X[0], nil >> ;", + "Digraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [64] */ + ProdTabEntry{ + "Digraph : Digraph << X[0], nil >> ;", + "Digraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [65] */ + ProdTabEntry{ + "Digraph : DiGraph << X[0], nil >> ;", + "Digraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [66] */ + ProdTabEntry{ + "Digraph : DIGRAPH << X[0], nil >> ;", + "Digraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [67] */ + ProdTabEntry{ + "Node : node << X[0], nil >> ;", + "Node", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [68] */ + ProdTabEntry{ + "Node : Node << X[0], nil >> ;", + "Node", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [69] */ + ProdTabEntry{ + "Node : NODE << X[0], nil >> ;", + "Node", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [70] */ + ProdTabEntry{ + "Edge : edge << X[0], nil >> ;", + "Edge", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [71] */ + ProdTabEntry{ + "Edge : Edge << X[0], nil >> ;", + "Edge", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [72] */ + ProdTabEntry{ + "Edge : EDGE << X[0], nil >> ;", + "Edge", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [73] */ + ProdTabEntry{ + "Subgraph : subgraph << X[0], nil >> ;", + "Subgraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [74] */ + ProdTabEntry{ + "Subgraph : Subgraph << X[0], nil >> ;", + "Subgraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [75] */ + ProdTabEntry{ + "Subgraph : SubGraph << X[0], nil >> ;", + "Subgraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [76] */ + ProdTabEntry{ + "Subgraph : SUBGRAPH << X[0], nil >> ;", + "Subgraph", + 1, + func(X []Attrib) (Attrib, error) { + return X[0], nil + }, + }, + /* [77] */ + ProdTabEntry{ + "Id : id << ast.NewId(X[0]) >> ;", + "Id", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewId(X[0]) + }, + }, + /* [78] */ + ProdTabEntry{ + "Id : string_lit << ast.NewId(X[0]) >> ;", + "Id", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewId(X[0]) + }, + }, + /* [79] */ + ProdTabEntry{ + "Id : int_lit << ast.NewId(X[0]) >> ;", + "Id", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewId(X[0]) + }, + }, + /* [80] */ + ProdTabEntry{ + "Id : float_lit << ast.NewId(X[0]) >> ;", + "Id", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewId(X[0]) + }, + }, + /* [81] */ + ProdTabEntry{ + "Id : html_lit << ast.NewId(X[0]) >> ;", + "Id", + 1, + func(X []Attrib) (Attrib, error) { + return ast.NewId(X[0]) + }, + }, +} + +var ActionTable ActionTab = ActionTab{ + /* state 0*/ ActionRow{ + /* GRAPH */ 15: Shift(7), + /* digraph */ 19: Shift(11), + /* strict */ 16: Shift(8), + /* Digraph */ 20: Shift(12), + /* graph */ 13: Shift(5), + /* Strict */ 17: Shift(9), + /* DiGraph */ 21: Shift(13), + /* Graph */ 14: Shift(6), + /* STRICT */ 18: Shift(10), + /* DIGRAPH */ 22: Shift(14), + }, + /* state 1*/ ActionRow{ + /* $ */ 0: Accept(0), + }, + /* state 2*/ ActionRow{ + /* id */ 2: Shift(17), + /* float_lit */ 35: Shift(20), + /* { */ 3: Shift(15), + /* html_lit */ 36: Shift(21), + /* string_lit */ 33: Shift(18), + /* int_lit */ 34: Shift(19), + }, + /* state 3*/ ActionRow{ + /* graph */ 13: Shift(5), + /* DiGraph */ 21: Shift(13), + /* Graph */ 14: Shift(6), + /* DIGRAPH */ 22: Shift(14), + /* GRAPH */ 15: Shift(7), + /* digraph */ 19: Shift(11), + /* Digraph */ 20: Shift(12), + }, + /* state 4*/ ActionRow{ + /* string_lit */ 33: Shift(18), + /* int_lit */ 34: Shift(19), + /* id */ 2: Shift(17), + /* float_lit */ 35: Shift(20), + /* { */ 3: Shift(24), + /* html_lit */ 36: Shift(21), + }, + /* state 5*/ ActionRow{ + /* id */ 2: Reduce(57), + /* float_lit */ 35: Reduce(57), + /* { */ 3: Reduce(57), + /* html_lit */ 36: Reduce(57), + /* string_lit */ 33: Reduce(57), + /* int_lit */ 34: Reduce(57), + }, + /* state 6*/ ActionRow{ + /* int_lit */ 34: Reduce(58), + /* id */ 2: Reduce(58), + /* float_lit */ 35: Reduce(58), + /* { */ 3: Reduce(58), + /* html_lit */ 36: Reduce(58), + /* string_lit */ 33: Reduce(58), + }, + /* state 7*/ ActionRow{ + /* id */ 2: Reduce(59), + /* float_lit */ 35: Reduce(59), + /* { */ 3: Reduce(59), + /* html_lit */ 36: Reduce(59), + /* string_lit */ 33: Reduce(59), + /* int_lit */ 34: Reduce(59), + }, + /* state 8*/ ActionRow{ + /* Digraph */ 20: Reduce(60), + /* graph */ 13: Reduce(60), + /* DiGraph */ 21: Reduce(60), + /* Graph */ 14: Reduce(60), + /* DIGRAPH */ 22: Reduce(60), + /* GRAPH */ 15: Reduce(60), + /* digraph */ 19: Reduce(60), + }, + /* state 9*/ ActionRow{ + /* graph */ 13: Reduce(61), + /* DiGraph */ 21: Reduce(61), + /* Graph */ 14: Reduce(61), + /* DIGRAPH */ 22: Reduce(61), + /* GRAPH */ 15: Reduce(61), + /* digraph */ 19: Reduce(61), + /* Digraph */ 20: Reduce(61), + }, + /* state 10*/ ActionRow{ + /* graph */ 13: Reduce(62), + /* DiGraph */ 21: Reduce(62), + /* Graph */ 14: Reduce(62), + /* DIGRAPH */ 22: Reduce(62), + /* GRAPH */ 15: Reduce(62), + /* digraph */ 19: Reduce(62), + /* Digraph */ 20: Reduce(62), + }, + /* state 11*/ ActionRow{ + /* id */ 2: Reduce(63), + /* float_lit */ 35: Reduce(63), + /* { */ 3: Reduce(63), + /* html_lit */ 36: Reduce(63), + /* string_lit */ 33: Reduce(63), + /* int_lit */ 34: Reduce(63), + }, + /* state 12*/ ActionRow{ + /* { */ 3: Reduce(64), + /* html_lit */ 36: Reduce(64), + /* string_lit */ 33: Reduce(64), + /* int_lit */ 34: Reduce(64), + /* id */ 2: Reduce(64), + /* float_lit */ 35: Reduce(64), + }, + /* state 13*/ ActionRow{ + /* id */ 2: Reduce(65), + /* float_lit */ 35: Reduce(65), + /* { */ 3: Reduce(65), + /* html_lit */ 36: Reduce(65), + /* string_lit */ 33: Reduce(65), + /* int_lit */ 34: Reduce(65), + }, + /* state 14*/ ActionRow{ + /* int_lit */ 34: Reduce(66), + /* id */ 2: Reduce(66), + /* float_lit */ 35: Reduce(66), + /* { */ 3: Reduce(66), + /* html_lit */ 36: Reduce(66), + /* string_lit */ 33: Reduce(66), + }, + /* state 15*/ ActionRow{ + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(28), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + }, + /* state 16*/ ActionRow{ + /* { */ 3: Shift(59), + }, + /* state 17*/ ActionRow{ + /* { */ 3: Reduce(77), + }, + /* state 18*/ ActionRow{ + /* { */ 3: Reduce(78), + }, + /* state 19*/ ActionRow{ + /* { */ 3: Reduce(79), + }, + /* state 20*/ ActionRow{ + /* { */ 3: Reduce(80), + }, + /* state 21*/ ActionRow{ + /* { */ 3: Reduce(81), + }, + /* state 22*/ ActionRow{ + /* string_lit */ 33: Shift(18), + /* int_lit */ 34: Shift(19), + /* id */ 2: Shift(17), + /* float_lit */ 35: Shift(20), + /* { */ 3: Shift(60), + /* html_lit */ 36: Shift(21), + }, + /* state 23*/ ActionRow{ + /* string_lit */ 33: Shift(18), + /* int_lit */ 34: Shift(19), + /* id */ 2: Shift(17), + /* float_lit */ 35: Shift(20), + /* { */ 3: Shift(62), + /* html_lit */ 36: Shift(21), + }, + /* state 24*/ ActionRow{ + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(64), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + }, + /* state 25*/ ActionRow{ + /* { */ 3: Shift(66), + }, + /* state 26*/ ActionRow{ + /* [ */ 7: Shift(68), + }, + /* state 27*/ ActionRow{ + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + }, + /* state 28*/ ActionRow{ + /* $ */ 0: Reduce(1), + }, + /* state 29*/ ActionRow{ + /* edge */ 26: Reduce(48), + /* Subgraph */ 30: Reduce(48), + /* { */ 3: Reduce(48), + /* SUBGRAPH */ 32: Reduce(48), + /* [ */ 7: Reduce(48), + /* html_lit */ 36: Reduce(48), + /* -> */ 11: Reduce(48), + /* GRAPH */ 15: Reduce(48), + /* node */ 23: Reduce(48), + /* Edge */ 27: Reduce(48), + /* SubGraph */ 31: Reduce(48), + /* string_lit */ 33: Reduce(48), + /* } */ 4: Reduce(48), + /* -- */ 12: Reduce(48), + /* Node */ 24: Reduce(48), + /* EDGE */ 28: Reduce(48), + /* ; */ 5: Reduce(48), + /* int_lit */ 34: Reduce(48), + /* graph */ 13: Reduce(48), + /* NODE */ 25: Reduce(48), + /* subgraph */ 29: Reduce(48), + /* id */ 2: Reduce(48), + /* float_lit */ 35: Reduce(48), + /* = */ 6: Shift(70), + /* : */ 10: Shift(72), + /* Graph */ 14: Reduce(48), + }, + /* state 30*/ ActionRow{ + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(73), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + }, + /* state 31*/ ActionRow{ + /* subgraph */ 29: Reduce(17), + /* id */ 2: Reduce(17), + /* float_lit */ 35: Reduce(17), + /* Graph */ 14: Reduce(17), + /* edge */ 26: Reduce(17), + /* Subgraph */ 30: Reduce(17), + /* { */ 3: Reduce(17), + /* SUBGRAPH */ 32: Reduce(17), + /* html_lit */ 36: Reduce(17), + /* GRAPH */ 15: Reduce(17), + /* node */ 23: Reduce(17), + /* Edge */ 27: Reduce(17), + /* SubGraph */ 31: Reduce(17), + /* string_lit */ 33: Reduce(17), + /* } */ 4: Reduce(17), + /* Node */ 24: Reduce(17), + /* EDGE */ 28: Reduce(17), + /* int_lit */ 34: Reduce(17), + /* graph */ 13: Reduce(17), + /* NODE */ 25: Reduce(17), + }, + /* state 32*/ ActionRow{ + /* ; */ 5: Shift(75), + /* int_lit */ 34: Reduce(19), + /* graph */ 13: Reduce(19), + /* NODE */ 25: Reduce(19), + /* subgraph */ 29: Reduce(19), + /* id */ 2: Reduce(19), + /* float_lit */ 35: Reduce(19), + /* Graph */ 14: Reduce(19), + /* edge */ 26: Reduce(19), + /* Subgraph */ 30: Reduce(19), + /* { */ 3: Reduce(19), + /* SUBGRAPH */ 32: Reduce(19), + /* html_lit */ 36: Reduce(19), + /* GRAPH */ 15: Reduce(19), + /* node */ 23: Reduce(19), + /* Edge */ 27: Reduce(19), + /* SubGraph */ 31: Reduce(19), + /* string_lit */ 33: Reduce(19), + /* } */ 4: Reduce(19), + /* Node */ 24: Reduce(19), + /* EDGE */ 28: Reduce(19), + }, + /* state 33*/ ActionRow{ + /* NODE */ 25: Reduce(22), + /* subgraph */ 29: Reduce(22), + /* id */ 2: Reduce(22), + /* float_lit */ 35: Reduce(22), + /* Graph */ 14: Reduce(22), + /* edge */ 26: Reduce(22), + /* Subgraph */ 30: Reduce(22), + /* { */ 3: Reduce(22), + /* SUBGRAPH */ 32: Reduce(22), + /* html_lit */ 36: Reduce(22), + /* GRAPH */ 15: Reduce(22), + /* node */ 23: Reduce(22), + /* Edge */ 27: Reduce(22), + /* SubGraph */ 31: Reduce(22), + /* string_lit */ 33: Reduce(22), + /* } */ 4: Reduce(22), + /* Node */ 24: Reduce(22), + /* EDGE */ 28: Reduce(22), + /* ; */ 5: Reduce(22), + /* int_lit */ 34: Reduce(22), + /* graph */ 13: Reduce(22), + }, + /* state 34*/ ActionRow{ + /* Node */ 24: Reduce(23), + /* EDGE */ 28: Reduce(23), + /* ; */ 5: Reduce(23), + /* int_lit */ 34: Reduce(23), + /* graph */ 13: Reduce(23), + /* NODE */ 25: Reduce(23), + /* subgraph */ 29: Reduce(23), + /* id */ 2: Reduce(23), + /* float_lit */ 35: Reduce(23), + /* Graph */ 14: Reduce(23), + /* edge */ 26: Reduce(23), + /* Subgraph */ 30: Reduce(23), + /* { */ 3: Reduce(23), + /* SUBGRAPH */ 32: Reduce(23), + /* html_lit */ 36: Reduce(23), + /* GRAPH */ 15: Reduce(23), + /* node */ 23: Reduce(23), + /* Edge */ 27: Reduce(23), + /* SubGraph */ 31: Reduce(23), + /* string_lit */ 33: Reduce(23), + /* } */ 4: Reduce(23), + }, + /* state 35*/ ActionRow{ + /* GRAPH */ 15: Reduce(24), + /* node */ 23: Reduce(24), + /* Edge */ 27: Reduce(24), + /* SubGraph */ 31: Reduce(24), + /* string_lit */ 33: Reduce(24), + /* } */ 4: Reduce(24), + /* Node */ 24: Reduce(24), + /* EDGE */ 28: Reduce(24), + /* ; */ 5: Reduce(24), + /* int_lit */ 34: Reduce(24), + /* graph */ 13: Reduce(24), + /* NODE */ 25: Reduce(24), + /* subgraph */ 29: Reduce(24), + /* id */ 2: Reduce(24), + /* float_lit */ 35: Reduce(24), + /* Graph */ 14: Reduce(24), + /* edge */ 26: Reduce(24), + /* Subgraph */ 30: Reduce(24), + /* { */ 3: Reduce(24), + /* SUBGRAPH */ 32: Reduce(24), + /* html_lit */ 36: Reduce(24), + }, + /* state 36*/ ActionRow{ + /* { */ 3: Reduce(25), + /* SUBGRAPH */ 32: Reduce(25), + /* html_lit */ 36: Reduce(25), + /* -> */ 11: Shift(78), + /* GRAPH */ 15: Reduce(25), + /* node */ 23: Reduce(25), + /* Edge */ 27: Reduce(25), + /* SubGraph */ 31: Reduce(25), + /* string_lit */ 33: Reduce(25), + /* } */ 4: Reduce(25), + /* -- */ 12: Shift(79), + /* Node */ 24: Reduce(25), + /* EDGE */ 28: Reduce(25), + /* ; */ 5: Reduce(25), + /* int_lit */ 34: Reduce(25), + /* graph */ 13: Reduce(25), + /* NODE */ 25: Reduce(25), + /* subgraph */ 29: Reduce(25), + /* id */ 2: Reduce(25), + /* float_lit */ 35: Reduce(25), + /* Graph */ 14: Reduce(25), + /* edge */ 26: Reduce(25), + /* Subgraph */ 30: Reduce(25), + }, + /* state 37*/ ActionRow{ + /* [ */ 7: Shift(68), + }, + /* state 38*/ ActionRow{ + /* [ */ 7: Shift(68), + }, + /* state 39*/ ActionRow{ + /* html_lit */ 36: Reduce(46), + /* -> */ 11: Shift(78), + /* GRAPH */ 15: Reduce(46), + /* node */ 23: Reduce(46), + /* Edge */ 27: Reduce(46), + /* SubGraph */ 31: Reduce(46), + /* string_lit */ 33: Reduce(46), + /* } */ 4: Reduce(46), + /* -- */ 12: Shift(79), + /* Node */ 24: Reduce(46), + /* EDGE */ 28: Reduce(46), + /* ; */ 5: Reduce(46), + /* int_lit */ 34: Reduce(46), + /* graph */ 13: Reduce(46), + /* NODE */ 25: Reduce(46), + /* subgraph */ 29: Reduce(46), + /* id */ 2: Reduce(46), + /* float_lit */ 35: Reduce(46), + /* Graph */ 14: Reduce(46), + /* edge */ 26: Reduce(46), + /* Subgraph */ 30: Reduce(46), + /* { */ 3: Reduce(46), + /* SUBGRAPH */ 32: Reduce(46), + /* [ */ 7: Shift(68), + }, + /* state 40*/ ActionRow{ + /* id */ 2: Shift(17), + /* float_lit */ 35: Shift(20), + /* { */ 3: Shift(84), + /* html_lit */ 36: Shift(21), + /* string_lit */ 33: Shift(18), + /* int_lit */ 34: Shift(19), + }, + /* state 41*/ ActionRow{ + /* [ */ 7: Reduce(57), + }, + /* state 42*/ ActionRow{ + /* [ */ 7: Reduce(58), + }, + /* state 43*/ ActionRow{ + /* [ */ 7: Reduce(59), + }, + /* state 44*/ ActionRow{ + /* [ */ 7: Reduce(67), + }, + /* state 45*/ ActionRow{ + /* [ */ 7: Reduce(68), + }, + /* state 46*/ ActionRow{ + /* [ */ 7: Reduce(69), + }, + /* state 47*/ ActionRow{ + /* [ */ 7: Reduce(70), + }, + /* state 48*/ ActionRow{ + /* [ */ 7: Reduce(71), + }, + /* state 49*/ ActionRow{ + /* [ */ 7: Reduce(72), + }, + /* state 50*/ ActionRow{ + /* id */ 2: Reduce(73), + /* float_lit */ 35: Reduce(73), + /* { */ 3: Reduce(73), + /* html_lit */ 36: Reduce(73), + /* string_lit */ 33: Reduce(73), + /* int_lit */ 34: Reduce(73), + }, + /* state 51*/ ActionRow{ + /* float_lit */ 35: Reduce(74), + /* { */ 3: Reduce(74), + /* html_lit */ 36: Reduce(74), + /* string_lit */ 33: Reduce(74), + /* int_lit */ 34: Reduce(74), + /* id */ 2: Reduce(74), + }, + /* state 52*/ ActionRow{ + /* { */ 3: Reduce(75), + /* html_lit */ 36: Reduce(75), + /* string_lit */ 33: Reduce(75), + /* int_lit */ 34: Reduce(75), + /* id */ 2: Reduce(75), + /* float_lit */ 35: Reduce(75), + }, + /* state 53*/ ActionRow{ + /* { */ 3: Reduce(76), + /* html_lit */ 36: Reduce(76), + /* string_lit */ 33: Reduce(76), + /* int_lit */ 34: Reduce(76), + /* id */ 2: Reduce(76), + /* float_lit */ 35: Reduce(76), + }, + /* state 54*/ ActionRow{ + /* Node */ 24: Reduce(77), + /* EDGE */ 28: Reduce(77), + /* ; */ 5: Reduce(77), + /* int_lit */ 34: Reduce(77), + /* graph */ 13: Reduce(77), + /* NODE */ 25: Reduce(77), + /* subgraph */ 29: Reduce(77), + /* id */ 2: Reduce(77), + /* float_lit */ 35: Reduce(77), + /* = */ 6: Reduce(77), + /* : */ 10: Reduce(77), + /* Graph */ 14: Reduce(77), + /* edge */ 26: Reduce(77), + /* Subgraph */ 30: Reduce(77), + /* { */ 3: Reduce(77), + /* SUBGRAPH */ 32: Reduce(77), + /* [ */ 7: Reduce(77), + /* html_lit */ 36: Reduce(77), + /* -> */ 11: Reduce(77), + /* GRAPH */ 15: Reduce(77), + /* node */ 23: Reduce(77), + /* Edge */ 27: Reduce(77), + /* SubGraph */ 31: Reduce(77), + /* string_lit */ 33: Reduce(77), + /* } */ 4: Reduce(77), + /* -- */ 12: Reduce(77), + }, + /* state 55*/ ActionRow{ + /* Edge */ 27: Reduce(78), + /* SubGraph */ 31: Reduce(78), + /* string_lit */ 33: Reduce(78), + /* } */ 4: Reduce(78), + /* -- */ 12: Reduce(78), + /* Node */ 24: Reduce(78), + /* EDGE */ 28: Reduce(78), + /* ; */ 5: Reduce(78), + /* int_lit */ 34: Reduce(78), + /* graph */ 13: Reduce(78), + /* NODE */ 25: Reduce(78), + /* subgraph */ 29: Reduce(78), + /* id */ 2: Reduce(78), + /* float_lit */ 35: Reduce(78), + /* = */ 6: Reduce(78), + /* : */ 10: Reduce(78), + /* Graph */ 14: Reduce(78), + /* edge */ 26: Reduce(78), + /* Subgraph */ 30: Reduce(78), + /* { */ 3: Reduce(78), + /* SUBGRAPH */ 32: Reduce(78), + /* [ */ 7: Reduce(78), + /* html_lit */ 36: Reduce(78), + /* -> */ 11: Reduce(78), + /* GRAPH */ 15: Reduce(78), + /* node */ 23: Reduce(78), + }, + /* state 56*/ ActionRow{ + /* -- */ 12: Reduce(79), + /* Node */ 24: Reduce(79), + /* EDGE */ 28: Reduce(79), + /* ; */ 5: Reduce(79), + /* int_lit */ 34: Reduce(79), + /* graph */ 13: Reduce(79), + /* NODE */ 25: Reduce(79), + /* subgraph */ 29: Reduce(79), + /* id */ 2: Reduce(79), + /* float_lit */ 35: Reduce(79), + /* = */ 6: Reduce(79), + /* : */ 10: Reduce(79), + /* Graph */ 14: Reduce(79), + /* edge */ 26: Reduce(79), + /* Subgraph */ 30: Reduce(79), + /* { */ 3: Reduce(79), + /* SUBGRAPH */ 32: Reduce(79), + /* [ */ 7: Reduce(79), + /* html_lit */ 36: Reduce(79), + /* -> */ 11: Reduce(79), + /* GRAPH */ 15: Reduce(79), + /* node */ 23: Reduce(79), + /* Edge */ 27: Reduce(79), + /* SubGraph */ 31: Reduce(79), + /* string_lit */ 33: Reduce(79), + /* } */ 4: Reduce(79), + }, + /* state 57*/ ActionRow{ + /* { */ 3: Reduce(80), + /* SUBGRAPH */ 32: Reduce(80), + /* [ */ 7: Reduce(80), + /* html_lit */ 36: Reduce(80), + /* -> */ 11: Reduce(80), + /* GRAPH */ 15: Reduce(80), + /* node */ 23: Reduce(80), + /* Edge */ 27: Reduce(80), + /* SubGraph */ 31: Reduce(80), + /* string_lit */ 33: Reduce(80), + /* } */ 4: Reduce(80), + /* -- */ 12: Reduce(80), + /* Node */ 24: Reduce(80), + /* EDGE */ 28: Reduce(80), + /* ; */ 5: Reduce(80), + /* int_lit */ 34: Reduce(80), + /* graph */ 13: Reduce(80), + /* NODE */ 25: Reduce(80), + /* subgraph */ 29: Reduce(80), + /* id */ 2: Reduce(80), + /* float_lit */ 35: Reduce(80), + /* = */ 6: Reduce(80), + /* : */ 10: Reduce(80), + /* Graph */ 14: Reduce(80), + /* edge */ 26: Reduce(80), + /* Subgraph */ 30: Reduce(80), + }, + /* state 58*/ ActionRow{ + /* Node */ 24: Reduce(81), + /* EDGE */ 28: Reduce(81), + /* ; */ 5: Reduce(81), + /* int_lit */ 34: Reduce(81), + /* graph */ 13: Reduce(81), + /* NODE */ 25: Reduce(81), + /* subgraph */ 29: Reduce(81), + /* id */ 2: Reduce(81), + /* float_lit */ 35: Reduce(81), + /* = */ 6: Reduce(81), + /* : */ 10: Reduce(81), + /* Graph */ 14: Reduce(81), + /* edge */ 26: Reduce(81), + /* Subgraph */ 30: Reduce(81), + /* { */ 3: Reduce(81), + /* SUBGRAPH */ 32: Reduce(81), + /* [ */ 7: Reduce(81), + /* html_lit */ 36: Reduce(81), + /* -> */ 11: Reduce(81), + /* GRAPH */ 15: Reduce(81), + /* node */ 23: Reduce(81), + /* Edge */ 27: Reduce(81), + /* SubGraph */ 31: Reduce(81), + /* string_lit */ 33: Reduce(81), + /* } */ 4: Reduce(81), + /* -- */ 12: Reduce(81), + }, + /* state 59*/ ActionRow{ + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(86), + }, + /* state 60*/ ActionRow{ + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(88), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + }, + /* state 61*/ ActionRow{ + /* { */ 3: Shift(90), + }, + /* state 62*/ ActionRow{ + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(91), + /* Node */ 24: Shift(45), + }, + /* state 63*/ ActionRow{ + /* { */ 3: Shift(93), + }, + /* state 64*/ ActionRow{ + /* $ */ 0: Reduce(9), + }, + /* state 65*/ ActionRow{ + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(94), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + }, + /* state 66*/ ActionRow{ + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(95), + }, + /* state 67*/ ActionRow{ + /* float_lit */ 35: Reduce(26), + /* Graph */ 14: Reduce(26), + /* edge */ 26: Reduce(26), + /* Subgraph */ 30: Reduce(26), + /* { */ 3: Reduce(26), + /* SUBGRAPH */ 32: Reduce(26), + /* [ */ 7: Shift(97), + /* html_lit */ 36: Reduce(26), + /* GRAPH */ 15: Reduce(26), + /* node */ 23: Reduce(26), + /* Edge */ 27: Reduce(26), + /* SubGraph */ 31: Reduce(26), + /* string_lit */ 33: Reduce(26), + /* } */ 4: Reduce(26), + /* Node */ 24: Reduce(26), + /* EDGE */ 28: Reduce(26), + /* ; */ 5: Reduce(26), + /* int_lit */ 34: Reduce(26), + /* graph */ 13: Reduce(26), + /* NODE */ 25: Reduce(26), + /* subgraph */ 29: Reduce(26), + /* id */ 2: Reduce(26), + }, + /* state 68*/ ActionRow{ + /* id */ 2: Shift(102), + /* float_lit */ 35: Shift(105), + /* html_lit */ 36: Shift(106), + /* string_lit */ 33: Shift(103), + /* ] */ 8: Shift(99), + /* int_lit */ 34: Shift(104), + }, + /* state 69*/ ActionRow{ + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(107), + }, + /* state 70*/ ActionRow{ + /* string_lit */ 33: Shift(110), + /* int_lit */ 34: Shift(111), + /* id */ 2: Shift(109), + /* float_lit */ 35: Shift(112), + /* html_lit */ 36: Shift(113), + }, + /* state 71*/ ActionRow{ + /* id */ 2: Reduce(49), + /* float_lit */ 35: Reduce(49), + /* Graph */ 14: Reduce(49), + /* edge */ 26: Reduce(49), + /* Subgraph */ 30: Reduce(49), + /* { */ 3: Reduce(49), + /* SUBGRAPH */ 32: Reduce(49), + /* [ */ 7: Reduce(49), + /* html_lit */ 36: Reduce(49), + /* -> */ 11: Reduce(49), + /* GRAPH */ 15: Reduce(49), + /* node */ 23: Reduce(49), + /* Edge */ 27: Reduce(49), + /* SubGraph */ 31: Reduce(49), + /* string_lit */ 33: Reduce(49), + /* } */ 4: Reduce(49), + /* -- */ 12: Reduce(49), + /* Node */ 24: Reduce(49), + /* EDGE */ 28: Reduce(49), + /* ; */ 5: Reduce(49), + /* int_lit */ 34: Reduce(49), + /* graph */ 13: Reduce(49), + /* NODE */ 25: Reduce(49), + /* subgraph */ 29: Reduce(49), + }, + /* state 72*/ ActionRow{ + /* id */ 2: Shift(115), + /* float_lit */ 35: Shift(118), + /* html_lit */ 36: Shift(119), + /* string_lit */ 33: Shift(116), + /* int_lit */ 34: Shift(117), + }, + /* state 73*/ ActionRow{ + /* $ */ 0: Reduce(5), + }, + /* state 74*/ ActionRow{ + /* graph */ 13: Reduce(18), + /* NODE */ 25: Reduce(18), + /* subgraph */ 29: Reduce(18), + /* id */ 2: Reduce(18), + /* float_lit */ 35: Reduce(18), + /* Graph */ 14: Reduce(18), + /* edge */ 26: Reduce(18), + /* Subgraph */ 30: Reduce(18), + /* { */ 3: Reduce(18), + /* SUBGRAPH */ 32: Reduce(18), + /* html_lit */ 36: Reduce(18), + /* GRAPH */ 15: Reduce(18), + /* node */ 23: Reduce(18), + /* Edge */ 27: Reduce(18), + /* SubGraph */ 31: Reduce(18), + /* string_lit */ 33: Reduce(18), + /* } */ 4: Reduce(18), + /* Node */ 24: Reduce(18), + /* EDGE */ 28: Reduce(18), + /* int_lit */ 34: Reduce(18), + }, + /* state 75*/ ActionRow{ + /* edge */ 26: Reduce(20), + /* Subgraph */ 30: Reduce(20), + /* { */ 3: Reduce(20), + /* SUBGRAPH */ 32: Reduce(20), + /* html_lit */ 36: Reduce(20), + /* GRAPH */ 15: Reduce(20), + /* node */ 23: Reduce(20), + /* Edge */ 27: Reduce(20), + /* SubGraph */ 31: Reduce(20), + /* string_lit */ 33: Reduce(20), + /* } */ 4: Reduce(20), + /* Node */ 24: Reduce(20), + /* EDGE */ 28: Reduce(20), + /* int_lit */ 34: Reduce(20), + /* graph */ 13: Reduce(20), + /* NODE */ 25: Reduce(20), + /* subgraph */ 29: Reduce(20), + /* id */ 2: Reduce(20), + /* float_lit */ 35: Reduce(20), + /* Graph */ 14: Reduce(20), + }, + /* state 76*/ ActionRow{ + /* -- */ 12: Shift(79), + /* Node */ 24: Reduce(40), + /* EDGE */ 28: Reduce(40), + /* ; */ 5: Reduce(40), + /* int_lit */ 34: Reduce(40), + /* graph */ 13: Reduce(40), + /* NODE */ 25: Reduce(40), + /* subgraph */ 29: Reduce(40), + /* id */ 2: Reduce(40), + /* float_lit */ 35: Reduce(40), + /* Graph */ 14: Reduce(40), + /* edge */ 26: Reduce(40), + /* Subgraph */ 30: Reduce(40), + /* { */ 3: Reduce(40), + /* SUBGRAPH */ 32: Reduce(40), + /* [ */ 7: Shift(68), + /* html_lit */ 36: Reduce(40), + /* -> */ 11: Shift(78), + /* GRAPH */ 15: Reduce(40), + /* node */ 23: Reduce(40), + /* Edge */ 27: Reduce(40), + /* SubGraph */ 31: Reduce(40), + /* string_lit */ 33: Reduce(40), + /* } */ 4: Reduce(40), + }, + /* state 77*/ ActionRow{ + /* { */ 3: Shift(122), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(119), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(116), + /* int_lit */ 34: Shift(117), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(115), + /* float_lit */ 35: Shift(118), + /* Subgraph */ 30: Shift(51), + }, + /* state 78*/ ActionRow{ + /* int_lit */ 34: Reduce(55), + /* subgraph */ 29: Reduce(55), + /* id */ 2: Reduce(55), + /* float_lit */ 35: Reduce(55), + /* Subgraph */ 30: Reduce(55), + /* { */ 3: Reduce(55), + /* SUBGRAPH */ 32: Reduce(55), + /* html_lit */ 36: Reduce(55), + /* SubGraph */ 31: Reduce(55), + /* string_lit */ 33: Reduce(55), + }, + /* state 79*/ ActionRow{ + /* int_lit */ 34: Reduce(56), + /* subgraph */ 29: Reduce(56), + /* id */ 2: Reduce(56), + /* float_lit */ 35: Reduce(56), + /* Subgraph */ 30: Reduce(56), + /* { */ 3: Reduce(56), + /* SUBGRAPH */ 32: Reduce(56), + /* html_lit */ 36: Reduce(56), + /* SubGraph */ 31: Reduce(56), + /* string_lit */ 33: Reduce(56), + }, + /* state 80*/ ActionRow{ + /* html_lit */ 36: Reduce(27), + /* GRAPH */ 15: Reduce(27), + /* node */ 23: Reduce(27), + /* Edge */ 27: Reduce(27), + /* SubGraph */ 31: Reduce(27), + /* string_lit */ 33: Reduce(27), + /* } */ 4: Reduce(27), + /* Node */ 24: Reduce(27), + /* EDGE */ 28: Reduce(27), + /* ; */ 5: Reduce(27), + /* int_lit */ 34: Reduce(27), + /* graph */ 13: Reduce(27), + /* NODE */ 25: Reduce(27), + /* subgraph */ 29: Reduce(27), + /* id */ 2: Reduce(27), + /* float_lit */ 35: Reduce(27), + /* Graph */ 14: Reduce(27), + /* edge */ 26: Reduce(27), + /* Subgraph */ 30: Reduce(27), + /* { */ 3: Reduce(27), + /* SUBGRAPH */ 32: Reduce(27), + /* [ */ 7: Shift(97), + }, + /* state 81*/ ActionRow{ + /* NODE */ 25: Reduce(28), + /* subgraph */ 29: Reduce(28), + /* id */ 2: Reduce(28), + /* float_lit */ 35: Reduce(28), + /* Graph */ 14: Reduce(28), + /* edge */ 26: Reduce(28), + /* Subgraph */ 30: Reduce(28), + /* { */ 3: Reduce(28), + /* SUBGRAPH */ 32: Reduce(28), + /* [ */ 7: Shift(97), + /* html_lit */ 36: Reduce(28), + /* GRAPH */ 15: Reduce(28), + /* node */ 23: Reduce(28), + /* Edge */ 27: Reduce(28), + /* SubGraph */ 31: Reduce(28), + /* string_lit */ 33: Reduce(28), + /* } */ 4: Reduce(28), + /* Node */ 24: Reduce(28), + /* EDGE */ 28: Reduce(28), + /* ; */ 5: Reduce(28), + /* int_lit */ 34: Reduce(28), + /* graph */ 13: Reduce(28), + }, + /* state 82*/ ActionRow{ + /* string_lit */ 33: Reduce(47), + /* } */ 4: Reduce(47), + /* Node */ 24: Reduce(47), + /* EDGE */ 28: Reduce(47), + /* ; */ 5: Reduce(47), + /* int_lit */ 34: Reduce(47), + /* graph */ 13: Reduce(47), + /* NODE */ 25: Reduce(47), + /* subgraph */ 29: Reduce(47), + /* id */ 2: Reduce(47), + /* float_lit */ 35: Reduce(47), + /* Graph */ 14: Reduce(47), + /* edge */ 26: Reduce(47), + /* Subgraph */ 30: Reduce(47), + /* { */ 3: Reduce(47), + /* SUBGRAPH */ 32: Reduce(47), + /* [ */ 7: Shift(97), + /* html_lit */ 36: Reduce(47), + /* GRAPH */ 15: Reduce(47), + /* node */ 23: Reduce(47), + /* Edge */ 27: Reduce(47), + /* SubGraph */ 31: Reduce(47), + }, + /* state 83*/ ActionRow{ + /* string_lit */ 33: Reduce(38), + /* } */ 4: Reduce(38), + /* -- */ 12: Shift(79), + /* Node */ 24: Reduce(38), + /* EDGE */ 28: Reduce(38), + /* ; */ 5: Reduce(38), + /* int_lit */ 34: Reduce(38), + /* graph */ 13: Reduce(38), + /* NODE */ 25: Reduce(38), + /* subgraph */ 29: Reduce(38), + /* id */ 2: Reduce(38), + /* float_lit */ 35: Reduce(38), + /* Graph */ 14: Reduce(38), + /* edge */ 26: Reduce(38), + /* Subgraph */ 30: Reduce(38), + /* { */ 3: Reduce(38), + /* SUBGRAPH */ 32: Reduce(38), + /* [ */ 7: Shift(68), + /* html_lit */ 36: Reduce(38), + /* -> */ 11: Shift(78), + /* GRAPH */ 15: Reduce(38), + /* node */ 23: Reduce(38), + /* Edge */ 27: Reduce(38), + /* SubGraph */ 31: Reduce(38), + }, + /* state 84*/ ActionRow{ + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + }, + /* state 85*/ ActionRow{ + /* { */ 3: Shift(129), + }, + /* state 86*/ ActionRow{ + /* $ */ 0: Reduce(3), + }, + /* state 87*/ ActionRow{ + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(130), + }, + /* state 88*/ ActionRow{ + /* $ */ 0: Reduce(2), + }, + /* state 89*/ ActionRow{ + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(131), + /* Node */ 24: Shift(45), + }, + /* state 90*/ ActionRow{ + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(132), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + }, + /* state 91*/ ActionRow{ + /* $ */ 0: Reduce(10), + }, + /* state 92*/ ActionRow{ + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(134), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + }, + /* state 93*/ ActionRow{ + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(135), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + }, + /* state 94*/ ActionRow{ + /* $ */ 0: Reduce(13), + }, + /* state 95*/ ActionRow{ + /* $ */ 0: Reduce(11), + }, + /* state 96*/ ActionRow{ + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(137), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + }, + /* state 97*/ ActionRow{ + /* int_lit */ 34: Shift(104), + /* id */ 2: Shift(102), + /* float_lit */ 35: Shift(105), + /* html_lit */ 36: Shift(106), + /* string_lit */ 33: Shift(103), + /* ] */ 8: Shift(138), + }, + /* state 98*/ ActionRow{ + /* int_lit */ 34: Reduce(36), + /* , */ 9: Reduce(36), + /* id */ 2: Reduce(36), + /* float_lit */ 35: Reduce(36), + /* = */ 6: Shift(140), + /* html_lit */ 36: Reduce(36), + /* string_lit */ 33: Reduce(36), + /* ] */ 8: Reduce(36), + }, + /* state 99*/ ActionRow{ + /* id */ 2: Reduce(29), + /* float_lit */ 35: Reduce(29), + /* Graph */ 14: Reduce(29), + /* edge */ 26: Reduce(29), + /* Subgraph */ 30: Reduce(29), + /* { */ 3: Reduce(29), + /* SUBGRAPH */ 32: Reduce(29), + /* [ */ 7: Reduce(29), + /* html_lit */ 36: Reduce(29), + /* GRAPH */ 15: Reduce(29), + /* node */ 23: Reduce(29), + /* Edge */ 27: Reduce(29), + /* SubGraph */ 31: Reduce(29), + /* string_lit */ 33: Reduce(29), + /* } */ 4: Reduce(29), + /* Node */ 24: Reduce(29), + /* EDGE */ 28: Reduce(29), + /* ; */ 5: Reduce(29), + /* int_lit */ 34: Reduce(29), + /* graph */ 13: Reduce(29), + /* NODE */ 25: Reduce(29), + /* subgraph */ 29: Reduce(29), + }, + /* state 100*/ ActionRow{ + /* int_lit */ 34: Shift(104), + /* , */ 9: Shift(143), + /* id */ 2: Shift(102), + /* float_lit */ 35: Shift(105), + /* html_lit */ 36: Shift(106), + /* string_lit */ 33: Shift(103), + /* ] */ 8: Shift(141), + }, + /* state 101*/ ActionRow{ + /* int_lit */ 34: Reduce(33), + /* , */ 9: Reduce(33), + /* id */ 2: Reduce(33), + /* float_lit */ 35: Reduce(33), + /* html_lit */ 36: Reduce(33), + /* string_lit */ 33: Reduce(33), + /* ] */ 8: Reduce(33), + }, + /* state 102*/ ActionRow{ + /* html_lit */ 36: Reduce(77), + /* string_lit */ 33: Reduce(77), + /* ] */ 8: Reduce(77), + /* int_lit */ 34: Reduce(77), + /* , */ 9: Reduce(77), + /* id */ 2: Reduce(77), + /* float_lit */ 35: Reduce(77), + /* = */ 6: Reduce(77), + }, + /* state 103*/ ActionRow{ + /* string_lit */ 33: Reduce(78), + /* ] */ 8: Reduce(78), + /* int_lit */ 34: Reduce(78), + /* , */ 9: Reduce(78), + /* id */ 2: Reduce(78), + /* float_lit */ 35: Reduce(78), + /* = */ 6: Reduce(78), + /* html_lit */ 36: Reduce(78), + }, + /* state 104*/ ActionRow{ + /* string_lit */ 33: Reduce(79), + /* ] */ 8: Reduce(79), + /* int_lit */ 34: Reduce(79), + /* , */ 9: Reduce(79), + /* id */ 2: Reduce(79), + /* float_lit */ 35: Reduce(79), + /* = */ 6: Reduce(79), + /* html_lit */ 36: Reduce(79), + }, + /* state 105*/ ActionRow{ + /* string_lit */ 33: Reduce(80), + /* ] */ 8: Reduce(80), + /* int_lit */ 34: Reduce(80), + /* , */ 9: Reduce(80), + /* id */ 2: Reduce(80), + /* float_lit */ 35: Reduce(80), + /* = */ 6: Reduce(80), + /* html_lit */ 36: Reduce(80), + }, + /* state 106*/ ActionRow{ + /* int_lit */ 34: Reduce(81), + /* , */ 9: Reduce(81), + /* id */ 2: Reduce(81), + /* float_lit */ 35: Reduce(81), + /* = */ 6: Reduce(81), + /* html_lit */ 36: Reduce(81), + /* string_lit */ 33: Reduce(81), + /* ] */ 8: Reduce(81), + }, + /* state 107*/ ActionRow{ + /* int_lit */ 34: Reduce(52), + /* graph */ 13: Reduce(52), + /* NODE */ 25: Reduce(52), + /* subgraph */ 29: Reduce(52), + /* id */ 2: Reduce(52), + /* float_lit */ 35: Reduce(52), + /* Graph */ 14: Reduce(52), + /* edge */ 26: Reduce(52), + /* Subgraph */ 30: Reduce(52), + /* { */ 3: Reduce(52), + /* SUBGRAPH */ 32: Reduce(52), + /* html_lit */ 36: Reduce(52), + /* -> */ 11: Reduce(52), + /* GRAPH */ 15: Reduce(52), + /* node */ 23: Reduce(52), + /* Edge */ 27: Reduce(52), + /* SubGraph */ 31: Reduce(52), + /* string_lit */ 33: Reduce(52), + /* } */ 4: Reduce(52), + /* -- */ 12: Reduce(52), + /* Node */ 24: Reduce(52), + /* EDGE */ 28: Reduce(52), + /* ; */ 5: Reduce(52), + }, + /* state 108*/ ActionRow{ + /* Graph */ 14: Reduce(21), + /* edge */ 26: Reduce(21), + /* Subgraph */ 30: Reduce(21), + /* { */ 3: Reduce(21), + /* SUBGRAPH */ 32: Reduce(21), + /* html_lit */ 36: Reduce(21), + /* GRAPH */ 15: Reduce(21), + /* node */ 23: Reduce(21), + /* Edge */ 27: Reduce(21), + /* SubGraph */ 31: Reduce(21), + /* string_lit */ 33: Reduce(21), + /* } */ 4: Reduce(21), + /* Node */ 24: Reduce(21), + /* EDGE */ 28: Reduce(21), + /* ; */ 5: Reduce(21), + /* int_lit */ 34: Reduce(21), + /* graph */ 13: Reduce(21), + /* NODE */ 25: Reduce(21), + /* subgraph */ 29: Reduce(21), + /* id */ 2: Reduce(21), + /* float_lit */ 35: Reduce(21), + }, + /* state 109*/ ActionRow{ + /* edge */ 26: Reduce(77), + /* Subgraph */ 30: Reduce(77), + /* { */ 3: Reduce(77), + /* SUBGRAPH */ 32: Reduce(77), + /* html_lit */ 36: Reduce(77), + /* GRAPH */ 15: Reduce(77), + /* node */ 23: Reduce(77), + /* Edge */ 27: Reduce(77), + /* SubGraph */ 31: Reduce(77), + /* string_lit */ 33: Reduce(77), + /* } */ 4: Reduce(77), + /* Node */ 24: Reduce(77), + /* EDGE */ 28: Reduce(77), + /* ; */ 5: Reduce(77), + /* int_lit */ 34: Reduce(77), + /* graph */ 13: Reduce(77), + /* NODE */ 25: Reduce(77), + /* subgraph */ 29: Reduce(77), + /* id */ 2: Reduce(77), + /* float_lit */ 35: Reduce(77), + /* Graph */ 14: Reduce(77), + }, + /* state 110*/ ActionRow{ + /* Node */ 24: Reduce(78), + /* EDGE */ 28: Reduce(78), + /* ; */ 5: Reduce(78), + /* int_lit */ 34: Reduce(78), + /* graph */ 13: Reduce(78), + /* NODE */ 25: Reduce(78), + /* subgraph */ 29: Reduce(78), + /* id */ 2: Reduce(78), + /* float_lit */ 35: Reduce(78), + /* Graph */ 14: Reduce(78), + /* edge */ 26: Reduce(78), + /* Subgraph */ 30: Reduce(78), + /* { */ 3: Reduce(78), + /* SUBGRAPH */ 32: Reduce(78), + /* html_lit */ 36: Reduce(78), + /* GRAPH */ 15: Reduce(78), + /* node */ 23: Reduce(78), + /* Edge */ 27: Reduce(78), + /* SubGraph */ 31: Reduce(78), + /* string_lit */ 33: Reduce(78), + /* } */ 4: Reduce(78), + }, + /* state 111*/ ActionRow{ + /* NODE */ 25: Reduce(79), + /* subgraph */ 29: Reduce(79), + /* id */ 2: Reduce(79), + /* float_lit */ 35: Reduce(79), + /* Graph */ 14: Reduce(79), + /* edge */ 26: Reduce(79), + /* Subgraph */ 30: Reduce(79), + /* { */ 3: Reduce(79), + /* SUBGRAPH */ 32: Reduce(79), + /* html_lit */ 36: Reduce(79), + /* GRAPH */ 15: Reduce(79), + /* node */ 23: Reduce(79), + /* Edge */ 27: Reduce(79), + /* SubGraph */ 31: Reduce(79), + /* string_lit */ 33: Reduce(79), + /* } */ 4: Reduce(79), + /* Node */ 24: Reduce(79), + /* EDGE */ 28: Reduce(79), + /* ; */ 5: Reduce(79), + /* int_lit */ 34: Reduce(79), + /* graph */ 13: Reduce(79), + }, + /* state 112*/ ActionRow{ + /* Node */ 24: Reduce(80), + /* EDGE */ 28: Reduce(80), + /* ; */ 5: Reduce(80), + /* int_lit */ 34: Reduce(80), + /* graph */ 13: Reduce(80), + /* NODE */ 25: Reduce(80), + /* subgraph */ 29: Reduce(80), + /* id */ 2: Reduce(80), + /* float_lit */ 35: Reduce(80), + /* Graph */ 14: Reduce(80), + /* edge */ 26: Reduce(80), + /* Subgraph */ 30: Reduce(80), + /* { */ 3: Reduce(80), + /* SUBGRAPH */ 32: Reduce(80), + /* html_lit */ 36: Reduce(80), + /* GRAPH */ 15: Reduce(80), + /* node */ 23: Reduce(80), + /* Edge */ 27: Reduce(80), + /* SubGraph */ 31: Reduce(80), + /* string_lit */ 33: Reduce(80), + /* } */ 4: Reduce(80), + }, + /* state 113*/ ActionRow{ + /* edge */ 26: Reduce(81), + /* Subgraph */ 30: Reduce(81), + /* { */ 3: Reduce(81), + /* SUBGRAPH */ 32: Reduce(81), + /* html_lit */ 36: Reduce(81), + /* GRAPH */ 15: Reduce(81), + /* node */ 23: Reduce(81), + /* Edge */ 27: Reduce(81), + /* SubGraph */ 31: Reduce(81), + /* string_lit */ 33: Reduce(81), + /* } */ 4: Reduce(81), + /* Node */ 24: Reduce(81), + /* EDGE */ 28: Reduce(81), + /* ; */ 5: Reduce(81), + /* int_lit */ 34: Reduce(81), + /* graph */ 13: Reduce(81), + /* NODE */ 25: Reduce(81), + /* subgraph */ 29: Reduce(81), + /* id */ 2: Reduce(81), + /* float_lit */ 35: Reduce(81), + /* Graph */ 14: Reduce(81), + }, + /* state 114*/ ActionRow{ + /* { */ 3: Reduce(50), + /* SUBGRAPH */ 32: Reduce(50), + /* [ */ 7: Reduce(50), + /* html_lit */ 36: Reduce(50), + /* -> */ 11: Reduce(50), + /* GRAPH */ 15: Reduce(50), + /* node */ 23: Reduce(50), + /* Edge */ 27: Reduce(50), + /* SubGraph */ 31: Reduce(50), + /* string_lit */ 33: Reduce(50), + /* } */ 4: Reduce(50), + /* -- */ 12: Reduce(50), + /* Node */ 24: Reduce(50), + /* EDGE */ 28: Reduce(50), + /* ; */ 5: Reduce(50), + /* int_lit */ 34: Reduce(50), + /* graph */ 13: Reduce(50), + /* NODE */ 25: Reduce(50), + /* subgraph */ 29: Reduce(50), + /* id */ 2: Reduce(50), + /* float_lit */ 35: Reduce(50), + /* : */ 10: Shift(144), + /* Graph */ 14: Reduce(50), + /* edge */ 26: Reduce(50), + /* Subgraph */ 30: Reduce(50), + }, + /* state 115*/ ActionRow{ + /* Node */ 24: Reduce(77), + /* EDGE */ 28: Reduce(77), + /* ; */ 5: Reduce(77), + /* int_lit */ 34: Reduce(77), + /* graph */ 13: Reduce(77), + /* NODE */ 25: Reduce(77), + /* subgraph */ 29: Reduce(77), + /* id */ 2: Reduce(77), + /* float_lit */ 35: Reduce(77), + /* : */ 10: Reduce(77), + /* Graph */ 14: Reduce(77), + /* edge */ 26: Reduce(77), + /* Subgraph */ 30: Reduce(77), + /* { */ 3: Reduce(77), + /* SUBGRAPH */ 32: Reduce(77), + /* [ */ 7: Reduce(77), + /* html_lit */ 36: Reduce(77), + /* -> */ 11: Reduce(77), + /* GRAPH */ 15: Reduce(77), + /* node */ 23: Reduce(77), + /* Edge */ 27: Reduce(77), + /* SubGraph */ 31: Reduce(77), + /* string_lit */ 33: Reduce(77), + /* } */ 4: Reduce(77), + /* -- */ 12: Reduce(77), + }, + /* state 116*/ ActionRow{ + /* string_lit */ 33: Reduce(78), + /* } */ 4: Reduce(78), + /* -- */ 12: Reduce(78), + /* Node */ 24: Reduce(78), + /* EDGE */ 28: Reduce(78), + /* ; */ 5: Reduce(78), + /* int_lit */ 34: Reduce(78), + /* graph */ 13: Reduce(78), + /* NODE */ 25: Reduce(78), + /* subgraph */ 29: Reduce(78), + /* id */ 2: Reduce(78), + /* float_lit */ 35: Reduce(78), + /* : */ 10: Reduce(78), + /* Graph */ 14: Reduce(78), + /* edge */ 26: Reduce(78), + /* Subgraph */ 30: Reduce(78), + /* { */ 3: Reduce(78), + /* SUBGRAPH */ 32: Reduce(78), + /* [ */ 7: Reduce(78), + /* html_lit */ 36: Reduce(78), + /* -> */ 11: Reduce(78), + /* GRAPH */ 15: Reduce(78), + /* node */ 23: Reduce(78), + /* Edge */ 27: Reduce(78), + /* SubGraph */ 31: Reduce(78), + }, + /* state 117*/ ActionRow{ + /* id */ 2: Reduce(79), + /* float_lit */ 35: Reduce(79), + /* : */ 10: Reduce(79), + /* Graph */ 14: Reduce(79), + /* edge */ 26: Reduce(79), + /* Subgraph */ 30: Reduce(79), + /* { */ 3: Reduce(79), + /* SUBGRAPH */ 32: Reduce(79), + /* [ */ 7: Reduce(79), + /* html_lit */ 36: Reduce(79), + /* -> */ 11: Reduce(79), + /* GRAPH */ 15: Reduce(79), + /* node */ 23: Reduce(79), + /* Edge */ 27: Reduce(79), + /* SubGraph */ 31: Reduce(79), + /* string_lit */ 33: Reduce(79), + /* } */ 4: Reduce(79), + /* -- */ 12: Reduce(79), + /* Node */ 24: Reduce(79), + /* EDGE */ 28: Reduce(79), + /* ; */ 5: Reduce(79), + /* int_lit */ 34: Reduce(79), + /* graph */ 13: Reduce(79), + /* NODE */ 25: Reduce(79), + /* subgraph */ 29: Reduce(79), + }, + /* state 118*/ ActionRow{ + /* NODE */ 25: Reduce(80), + /* subgraph */ 29: Reduce(80), + /* id */ 2: Reduce(80), + /* float_lit */ 35: Reduce(80), + /* : */ 10: Reduce(80), + /* Graph */ 14: Reduce(80), + /* edge */ 26: Reduce(80), + /* Subgraph */ 30: Reduce(80), + /* { */ 3: Reduce(80), + /* SUBGRAPH */ 32: Reduce(80), + /* [ */ 7: Reduce(80), + /* html_lit */ 36: Reduce(80), + /* -> */ 11: Reduce(80), + /* GRAPH */ 15: Reduce(80), + /* node */ 23: Reduce(80), + /* Edge */ 27: Reduce(80), + /* SubGraph */ 31: Reduce(80), + /* string_lit */ 33: Reduce(80), + /* } */ 4: Reduce(80), + /* -- */ 12: Reduce(80), + /* Node */ 24: Reduce(80), + /* EDGE */ 28: Reduce(80), + /* ; */ 5: Reduce(80), + /* int_lit */ 34: Reduce(80), + /* graph */ 13: Reduce(80), + }, + /* state 119*/ ActionRow{ + /* { */ 3: Reduce(81), + /* SUBGRAPH */ 32: Reduce(81), + /* [ */ 7: Reduce(81), + /* html_lit */ 36: Reduce(81), + /* -> */ 11: Reduce(81), + /* GRAPH */ 15: Reduce(81), + /* node */ 23: Reduce(81), + /* Edge */ 27: Reduce(81), + /* SubGraph */ 31: Reduce(81), + /* string_lit */ 33: Reduce(81), + /* } */ 4: Reduce(81), + /* -- */ 12: Reduce(81), + /* Node */ 24: Reduce(81), + /* EDGE */ 28: Reduce(81), + /* ; */ 5: Reduce(81), + /* int_lit */ 34: Reduce(81), + /* graph */ 13: Reduce(81), + /* NODE */ 25: Reduce(81), + /* subgraph */ 29: Reduce(81), + /* id */ 2: Reduce(81), + /* float_lit */ 35: Reduce(81), + /* : */ 10: Reduce(81), + /* Graph */ 14: Reduce(81), + /* edge */ 26: Reduce(81), + /* Subgraph */ 30: Reduce(81), + }, + /* state 120*/ ActionRow{ + /* Graph */ 14: Reduce(41), + /* edge */ 26: Reduce(41), + /* Subgraph */ 30: Reduce(41), + /* { */ 3: Reduce(41), + /* SUBGRAPH */ 32: Reduce(41), + /* [ */ 7: Shift(97), + /* html_lit */ 36: Reduce(41), + /* GRAPH */ 15: Reduce(41), + /* node */ 23: Reduce(41), + /* Edge */ 27: Reduce(41), + /* SubGraph */ 31: Reduce(41), + /* string_lit */ 33: Reduce(41), + /* } */ 4: Reduce(41), + /* Node */ 24: Reduce(41), + /* EDGE */ 28: Reduce(41), + /* ; */ 5: Reduce(41), + /* int_lit */ 34: Reduce(41), + /* graph */ 13: Reduce(41), + /* NODE */ 25: Reduce(41), + /* subgraph */ 29: Reduce(41), + /* id */ 2: Reduce(41), + /* float_lit */ 35: Reduce(41), + }, + /* state 121*/ ActionRow{ + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(122), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(119), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(116), + /* int_lit */ 34: Shift(117), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(115), + /* float_lit */ 35: Shift(118), + }, + /* state 122*/ ActionRow{ + /* string_lit */ 33: Shift(55), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + }, + /* state 123*/ ActionRow{ + /* id */ 2: Reduce(48), + /* float_lit */ 35: Reduce(48), + /* : */ 10: Shift(72), + /* Graph */ 14: Reduce(48), + /* edge */ 26: Reduce(48), + /* Subgraph */ 30: Reduce(48), + /* { */ 3: Reduce(48), + /* SUBGRAPH */ 32: Reduce(48), + /* [ */ 7: Reduce(48), + /* html_lit */ 36: Reduce(48), + /* -> */ 11: Reduce(48), + /* GRAPH */ 15: Reduce(48), + /* node */ 23: Reduce(48), + /* Edge */ 27: Reduce(48), + /* SubGraph */ 31: Reduce(48), + /* string_lit */ 33: Reduce(48), + /* } */ 4: Reduce(48), + /* -- */ 12: Reduce(48), + /* Node */ 24: Reduce(48), + /* EDGE */ 28: Reduce(48), + /* ; */ 5: Reduce(48), + /* int_lit */ 34: Reduce(48), + /* graph */ 13: Reduce(48), + /* NODE */ 25: Reduce(48), + /* subgraph */ 29: Reduce(48), + }, + /* state 124*/ ActionRow{ + /* NODE */ 25: Reduce(43), + /* subgraph */ 29: Reduce(43), + /* id */ 2: Reduce(43), + /* float_lit */ 35: Reduce(43), + /* Graph */ 14: Reduce(43), + /* edge */ 26: Reduce(43), + /* Subgraph */ 30: Reduce(43), + /* { */ 3: Reduce(43), + /* SUBGRAPH */ 32: Reduce(43), + /* [ */ 7: Reduce(43), + /* html_lit */ 36: Reduce(43), + /* -> */ 11: Reduce(43), + /* GRAPH */ 15: Reduce(43), + /* node */ 23: Reduce(43), + /* Edge */ 27: Reduce(43), + /* SubGraph */ 31: Reduce(43), + /* string_lit */ 33: Reduce(43), + /* } */ 4: Reduce(43), + /* -- */ 12: Reduce(43), + /* Node */ 24: Reduce(43), + /* EDGE */ 28: Reduce(43), + /* ; */ 5: Reduce(43), + /* int_lit */ 34: Reduce(43), + /* graph */ 13: Reduce(43), + }, + /* state 125*/ ActionRow{ + /* NODE */ 25: Reduce(42), + /* subgraph */ 29: Reduce(42), + /* id */ 2: Reduce(42), + /* float_lit */ 35: Reduce(42), + /* Graph */ 14: Reduce(42), + /* edge */ 26: Reduce(42), + /* Subgraph */ 30: Reduce(42), + /* { */ 3: Reduce(42), + /* SUBGRAPH */ 32: Reduce(42), + /* [ */ 7: Reduce(42), + /* html_lit */ 36: Reduce(42), + /* -> */ 11: Reduce(42), + /* GRAPH */ 15: Reduce(42), + /* node */ 23: Reduce(42), + /* Edge */ 27: Reduce(42), + /* SubGraph */ 31: Reduce(42), + /* string_lit */ 33: Reduce(42), + /* } */ 4: Reduce(42), + /* -- */ 12: Reduce(42), + /* Node */ 24: Reduce(42), + /* EDGE */ 28: Reduce(42), + /* ; */ 5: Reduce(42), + /* int_lit */ 34: Reduce(42), + /* graph */ 13: Reduce(42), + }, + /* state 126*/ ActionRow{ + /* int_lit */ 34: Shift(19), + /* id */ 2: Shift(17), + /* float_lit */ 35: Shift(20), + /* { */ 3: Shift(148), + /* html_lit */ 36: Shift(21), + /* string_lit */ 33: Shift(18), + }, + /* state 127*/ ActionRow{ + /* edge */ 26: Reduce(39), + /* Subgraph */ 30: Reduce(39), + /* { */ 3: Reduce(39), + /* SUBGRAPH */ 32: Reduce(39), + /* [ */ 7: Shift(97), + /* html_lit */ 36: Reduce(39), + /* GRAPH */ 15: Reduce(39), + /* node */ 23: Reduce(39), + /* Edge */ 27: Reduce(39), + /* SubGraph */ 31: Reduce(39), + /* string_lit */ 33: Reduce(39), + /* } */ 4: Reduce(39), + /* Node */ 24: Reduce(39), + /* EDGE */ 28: Reduce(39), + /* ; */ 5: Reduce(39), + /* int_lit */ 34: Reduce(39), + /* graph */ 13: Reduce(39), + /* NODE */ 25: Reduce(39), + /* subgraph */ 29: Reduce(39), + /* id */ 2: Reduce(39), + /* float_lit */ 35: Reduce(39), + /* Graph */ 14: Reduce(39), + }, + /* state 128*/ ActionRow{ + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(150), + }, + /* state 129*/ ActionRow{ + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + }, + /* state 130*/ ActionRow{ + /* $ */ 0: Reduce(6), + }, + /* state 131*/ ActionRow{ + /* $ */ 0: Reduce(7), + }, + /* state 132*/ ActionRow{ + /* $ */ 0: Reduce(4), + }, + /* state 133*/ ActionRow{ + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(152), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + }, + /* state 134*/ ActionRow{ + /* $ */ 0: Reduce(15), + }, + /* state 135*/ ActionRow{ + /* $ */ 0: Reduce(12), + }, + /* state 136*/ ActionRow{ + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(153), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + }, + /* state 137*/ ActionRow{ + /* $ */ 0: Reduce(14), + }, + /* state 138*/ ActionRow{ + /* EDGE */ 28: Reduce(31), + /* ; */ 5: Reduce(31), + /* int_lit */ 34: Reduce(31), + /* graph */ 13: Reduce(31), + /* NODE */ 25: Reduce(31), + /* subgraph */ 29: Reduce(31), + /* id */ 2: Reduce(31), + /* float_lit */ 35: Reduce(31), + /* Graph */ 14: Reduce(31), + /* edge */ 26: Reduce(31), + /* Subgraph */ 30: Reduce(31), + /* { */ 3: Reduce(31), + /* SUBGRAPH */ 32: Reduce(31), + /* [ */ 7: Reduce(31), + /* html_lit */ 36: Reduce(31), + /* GRAPH */ 15: Reduce(31), + /* node */ 23: Reduce(31), + /* Edge */ 27: Reduce(31), + /* SubGraph */ 31: Reduce(31), + /* string_lit */ 33: Reduce(31), + /* } */ 4: Reduce(31), + /* Node */ 24: Reduce(31), + }, + /* state 139*/ ActionRow{ + /* int_lit */ 34: Shift(104), + /* , */ 9: Shift(143), + /* id */ 2: Shift(102), + /* float_lit */ 35: Shift(105), + /* html_lit */ 36: Shift(106), + /* string_lit */ 33: Shift(103), + /* ] */ 8: Shift(154), + }, + /* state 140*/ ActionRow{ + /* id */ 2: Shift(156), + /* float_lit */ 35: Shift(159), + /* html_lit */ 36: Shift(160), + /* string_lit */ 33: Shift(157), + /* int_lit */ 34: Shift(158), + }, + /* state 141*/ ActionRow{ + /* id */ 2: Reduce(30), + /* float_lit */ 35: Reduce(30), + /* Graph */ 14: Reduce(30), + /* edge */ 26: Reduce(30), + /* Subgraph */ 30: Reduce(30), + /* { */ 3: Reduce(30), + /* SUBGRAPH */ 32: Reduce(30), + /* [ */ 7: Reduce(30), + /* html_lit */ 36: Reduce(30), + /* GRAPH */ 15: Reduce(30), + /* node */ 23: Reduce(30), + /* Edge */ 27: Reduce(30), + /* SubGraph */ 31: Reduce(30), + /* string_lit */ 33: Reduce(30), + /* } */ 4: Reduce(30), + /* Node */ 24: Reduce(30), + /* EDGE */ 28: Reduce(30), + /* ; */ 5: Reduce(30), + /* int_lit */ 34: Reduce(30), + /* graph */ 13: Reduce(30), + /* NODE */ 25: Reduce(30), + /* subgraph */ 29: Reduce(30), + }, + /* state 142*/ ActionRow{ + /* html_lit */ 36: Reduce(34), + /* string_lit */ 33: Reduce(34), + /* ] */ 8: Reduce(34), + /* int_lit */ 34: Reduce(34), + /* , */ 9: Reduce(34), + /* id */ 2: Reduce(34), + /* float_lit */ 35: Reduce(34), + }, + /* state 143*/ ActionRow{ + /* id */ 2: Shift(102), + /* float_lit */ 35: Shift(105), + /* html_lit */ 36: Shift(106), + /* string_lit */ 33: Shift(103), + /* int_lit */ 34: Shift(104), + }, + /* state 144*/ ActionRow{ + /* id */ 2: Shift(163), + /* float_lit */ 35: Shift(166), + /* html_lit */ 36: Shift(167), + /* string_lit */ 33: Shift(164), + /* int_lit */ 34: Shift(165), + }, + /* state 145*/ ActionRow{ + /* GRAPH */ 15: Reduce(45), + /* node */ 23: Reduce(45), + /* Edge */ 27: Reduce(45), + /* SubGraph */ 31: Reduce(45), + /* string_lit */ 33: Reduce(45), + /* } */ 4: Reduce(45), + /* -- */ 12: Reduce(45), + /* Node */ 24: Reduce(45), + /* EDGE */ 28: Reduce(45), + /* ; */ 5: Reduce(45), + /* int_lit */ 34: Reduce(45), + /* graph */ 13: Reduce(45), + /* NODE */ 25: Reduce(45), + /* subgraph */ 29: Reduce(45), + /* id */ 2: Reduce(45), + /* float_lit */ 35: Reduce(45), + /* Graph */ 14: Reduce(45), + /* edge */ 26: Reduce(45), + /* Subgraph */ 30: Reduce(45), + /* { */ 3: Reduce(45), + /* SUBGRAPH */ 32: Reduce(45), + /* [ */ 7: Reduce(45), + /* html_lit */ 36: Reduce(45), + /* -> */ 11: Reduce(45), + }, + /* state 146*/ ActionRow{ + /* edge */ 26: Reduce(44), + /* Subgraph */ 30: Reduce(44), + /* { */ 3: Reduce(44), + /* SUBGRAPH */ 32: Reduce(44), + /* [ */ 7: Reduce(44), + /* html_lit */ 36: Reduce(44), + /* -> */ 11: Reduce(44), + /* GRAPH */ 15: Reduce(44), + /* node */ 23: Reduce(44), + /* Edge */ 27: Reduce(44), + /* SubGraph */ 31: Reduce(44), + /* string_lit */ 33: Reduce(44), + /* } */ 4: Reduce(44), + /* -- */ 12: Reduce(44), + /* Node */ 24: Reduce(44), + /* EDGE */ 28: Reduce(44), + /* ; */ 5: Reduce(44), + /* int_lit */ 34: Reduce(44), + /* graph */ 13: Reduce(44), + /* NODE */ 25: Reduce(44), + /* subgraph */ 29: Reduce(44), + /* id */ 2: Reduce(44), + /* float_lit */ 35: Reduce(44), + /* Graph */ 14: Reduce(44), + }, + /* state 147*/ ActionRow{ + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(168), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + }, + /* state 148*/ ActionRow{ + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + }, + /* state 149*/ ActionRow{ + /* { */ 3: Shift(170), + }, + /* state 150*/ ActionRow{ + /* id */ 2: Reduce(53), + /* float_lit */ 35: Reduce(53), + /* Graph */ 14: Reduce(53), + /* edge */ 26: Reduce(53), + /* Subgraph */ 30: Reduce(53), + /* { */ 3: Reduce(53), + /* SUBGRAPH */ 32: Reduce(53), + /* html_lit */ 36: Reduce(53), + /* -> */ 11: Reduce(53), + /* GRAPH */ 15: Reduce(53), + /* node */ 23: Reduce(53), + /* Edge */ 27: Reduce(53), + /* SubGraph */ 31: Reduce(53), + /* string_lit */ 33: Reduce(53), + /* } */ 4: Reduce(53), + /* -- */ 12: Reduce(53), + /* Node */ 24: Reduce(53), + /* EDGE */ 28: Reduce(53), + /* ; */ 5: Reduce(53), + /* int_lit */ 34: Reduce(53), + /* graph */ 13: Reduce(53), + /* NODE */ 25: Reduce(53), + /* subgraph */ 29: Reduce(53), + }, + /* state 151*/ ActionRow{ + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(171), + /* Node */ 24: Shift(45), + }, + /* state 152*/ ActionRow{ + /* $ */ 0: Reduce(8), + }, + /* state 153*/ ActionRow{ + /* $ */ 0: Reduce(16), + }, + /* state 154*/ ActionRow{ + /* ; */ 5: Reduce(32), + /* int_lit */ 34: Reduce(32), + /* graph */ 13: Reduce(32), + /* NODE */ 25: Reduce(32), + /* subgraph */ 29: Reduce(32), + /* id */ 2: Reduce(32), + /* float_lit */ 35: Reduce(32), + /* Graph */ 14: Reduce(32), + /* edge */ 26: Reduce(32), + /* Subgraph */ 30: Reduce(32), + /* { */ 3: Reduce(32), + /* SUBGRAPH */ 32: Reduce(32), + /* [ */ 7: Reduce(32), + /* html_lit */ 36: Reduce(32), + /* GRAPH */ 15: Reduce(32), + /* node */ 23: Reduce(32), + /* Edge */ 27: Reduce(32), + /* SubGraph */ 31: Reduce(32), + /* string_lit */ 33: Reduce(32), + /* } */ 4: Reduce(32), + /* Node */ 24: Reduce(32), + /* EDGE */ 28: Reduce(32), + }, + /* state 155*/ ActionRow{ + /* id */ 2: Reduce(37), + /* float_lit */ 35: Reduce(37), + /* html_lit */ 36: Reduce(37), + /* string_lit */ 33: Reduce(37), + /* ] */ 8: Reduce(37), + /* int_lit */ 34: Reduce(37), + /* , */ 9: Reduce(37), + }, + /* state 156*/ ActionRow{ + /* html_lit */ 36: Reduce(77), + /* string_lit */ 33: Reduce(77), + /* ] */ 8: Reduce(77), + /* int_lit */ 34: Reduce(77), + /* , */ 9: Reduce(77), + /* id */ 2: Reduce(77), + /* float_lit */ 35: Reduce(77), + }, + /* state 157*/ ActionRow{ + /* int_lit */ 34: Reduce(78), + /* , */ 9: Reduce(78), + /* id */ 2: Reduce(78), + /* float_lit */ 35: Reduce(78), + /* html_lit */ 36: Reduce(78), + /* string_lit */ 33: Reduce(78), + /* ] */ 8: Reduce(78), + }, + /* state 158*/ ActionRow{ + /* html_lit */ 36: Reduce(79), + /* string_lit */ 33: Reduce(79), + /* ] */ 8: Reduce(79), + /* int_lit */ 34: Reduce(79), + /* , */ 9: Reduce(79), + /* id */ 2: Reduce(79), + /* float_lit */ 35: Reduce(79), + }, + /* state 159*/ ActionRow{ + /* id */ 2: Reduce(80), + /* float_lit */ 35: Reduce(80), + /* html_lit */ 36: Reduce(80), + /* string_lit */ 33: Reduce(80), + /* ] */ 8: Reduce(80), + /* int_lit */ 34: Reduce(80), + /* , */ 9: Reduce(80), + }, + /* state 160*/ ActionRow{ + /* id */ 2: Reduce(81), + /* float_lit */ 35: Reduce(81), + /* html_lit */ 36: Reduce(81), + /* string_lit */ 33: Reduce(81), + /* ] */ 8: Reduce(81), + /* int_lit */ 34: Reduce(81), + /* , */ 9: Reduce(81), + }, + /* state 161*/ ActionRow{ + /* string_lit */ 33: Reduce(35), + /* ] */ 8: Reduce(35), + /* int_lit */ 34: Reduce(35), + /* , */ 9: Reduce(35), + /* id */ 2: Reduce(35), + /* float_lit */ 35: Reduce(35), + /* html_lit */ 36: Reduce(35), + }, + /* state 162*/ ActionRow{ + /* { */ 3: Reduce(51), + /* SUBGRAPH */ 32: Reduce(51), + /* [ */ 7: Reduce(51), + /* html_lit */ 36: Reduce(51), + /* -> */ 11: Reduce(51), + /* GRAPH */ 15: Reduce(51), + /* node */ 23: Reduce(51), + /* Edge */ 27: Reduce(51), + /* SubGraph */ 31: Reduce(51), + /* string_lit */ 33: Reduce(51), + /* } */ 4: Reduce(51), + /* -- */ 12: Reduce(51), + /* Node */ 24: Reduce(51), + /* EDGE */ 28: Reduce(51), + /* ; */ 5: Reduce(51), + /* int_lit */ 34: Reduce(51), + /* graph */ 13: Reduce(51), + /* NODE */ 25: Reduce(51), + /* subgraph */ 29: Reduce(51), + /* id */ 2: Reduce(51), + /* float_lit */ 35: Reduce(51), + /* Graph */ 14: Reduce(51), + /* edge */ 26: Reduce(51), + /* Subgraph */ 30: Reduce(51), + }, + /* state 163*/ ActionRow{ + /* Node */ 24: Reduce(77), + /* EDGE */ 28: Reduce(77), + /* ; */ 5: Reduce(77), + /* int_lit */ 34: Reduce(77), + /* graph */ 13: Reduce(77), + /* NODE */ 25: Reduce(77), + /* subgraph */ 29: Reduce(77), + /* id */ 2: Reduce(77), + /* float_lit */ 35: Reduce(77), + /* Graph */ 14: Reduce(77), + /* edge */ 26: Reduce(77), + /* Subgraph */ 30: Reduce(77), + /* { */ 3: Reduce(77), + /* SUBGRAPH */ 32: Reduce(77), + /* [ */ 7: Reduce(77), + /* html_lit */ 36: Reduce(77), + /* -> */ 11: Reduce(77), + /* GRAPH */ 15: Reduce(77), + /* node */ 23: Reduce(77), + /* Edge */ 27: Reduce(77), + /* SubGraph */ 31: Reduce(77), + /* string_lit */ 33: Reduce(77), + /* } */ 4: Reduce(77), + /* -- */ 12: Reduce(77), + }, + /* state 164*/ ActionRow{ + /* node */ 23: Reduce(78), + /* Edge */ 27: Reduce(78), + /* SubGraph */ 31: Reduce(78), + /* string_lit */ 33: Reduce(78), + /* } */ 4: Reduce(78), + /* -- */ 12: Reduce(78), + /* Node */ 24: Reduce(78), + /* EDGE */ 28: Reduce(78), + /* ; */ 5: Reduce(78), + /* int_lit */ 34: Reduce(78), + /* graph */ 13: Reduce(78), + /* NODE */ 25: Reduce(78), + /* subgraph */ 29: Reduce(78), + /* id */ 2: Reduce(78), + /* float_lit */ 35: Reduce(78), + /* Graph */ 14: Reduce(78), + /* edge */ 26: Reduce(78), + /* Subgraph */ 30: Reduce(78), + /* { */ 3: Reduce(78), + /* SUBGRAPH */ 32: Reduce(78), + /* [ */ 7: Reduce(78), + /* html_lit */ 36: Reduce(78), + /* -> */ 11: Reduce(78), + /* GRAPH */ 15: Reduce(78), + }, + /* state 165*/ ActionRow{ + /* SubGraph */ 31: Reduce(79), + /* string_lit */ 33: Reduce(79), + /* } */ 4: Reduce(79), + /* -- */ 12: Reduce(79), + /* Node */ 24: Reduce(79), + /* EDGE */ 28: Reduce(79), + /* ; */ 5: Reduce(79), + /* int_lit */ 34: Reduce(79), + /* graph */ 13: Reduce(79), + /* NODE */ 25: Reduce(79), + /* subgraph */ 29: Reduce(79), + /* id */ 2: Reduce(79), + /* float_lit */ 35: Reduce(79), + /* Graph */ 14: Reduce(79), + /* edge */ 26: Reduce(79), + /* Subgraph */ 30: Reduce(79), + /* { */ 3: Reduce(79), + /* SUBGRAPH */ 32: Reduce(79), + /* [ */ 7: Reduce(79), + /* html_lit */ 36: Reduce(79), + /* -> */ 11: Reduce(79), + /* GRAPH */ 15: Reduce(79), + /* node */ 23: Reduce(79), + /* Edge */ 27: Reduce(79), + }, + /* state 166*/ ActionRow{ + /* EDGE */ 28: Reduce(80), + /* ; */ 5: Reduce(80), + /* int_lit */ 34: Reduce(80), + /* graph */ 13: Reduce(80), + /* NODE */ 25: Reduce(80), + /* subgraph */ 29: Reduce(80), + /* id */ 2: Reduce(80), + /* float_lit */ 35: Reduce(80), + /* Graph */ 14: Reduce(80), + /* edge */ 26: Reduce(80), + /* Subgraph */ 30: Reduce(80), + /* { */ 3: Reduce(80), + /* SUBGRAPH */ 32: Reduce(80), + /* [ */ 7: Reduce(80), + /* html_lit */ 36: Reduce(80), + /* -> */ 11: Reduce(80), + /* GRAPH */ 15: Reduce(80), + /* node */ 23: Reduce(80), + /* Edge */ 27: Reduce(80), + /* SubGraph */ 31: Reduce(80), + /* string_lit */ 33: Reduce(80), + /* } */ 4: Reduce(80), + /* -- */ 12: Reduce(80), + /* Node */ 24: Reduce(80), + }, + /* state 167*/ ActionRow{ + /* Graph */ 14: Reduce(81), + /* edge */ 26: Reduce(81), + /* Subgraph */ 30: Reduce(81), + /* { */ 3: Reduce(81), + /* SUBGRAPH */ 32: Reduce(81), + /* [ */ 7: Reduce(81), + /* html_lit */ 36: Reduce(81), + /* -> */ 11: Reduce(81), + /* GRAPH */ 15: Reduce(81), + /* node */ 23: Reduce(81), + /* Edge */ 27: Reduce(81), + /* SubGraph */ 31: Reduce(81), + /* string_lit */ 33: Reduce(81), + /* } */ 4: Reduce(81), + /* -- */ 12: Reduce(81), + /* Node */ 24: Reduce(81), + /* EDGE */ 28: Reduce(81), + /* ; */ 5: Reduce(81), + /* int_lit */ 34: Reduce(81), + /* graph */ 13: Reduce(81), + /* NODE */ 25: Reduce(81), + /* subgraph */ 29: Reduce(81), + /* id */ 2: Reduce(81), + /* float_lit */ 35: Reduce(81), + }, + /* state 168*/ ActionRow{ + /* html_lit */ 36: Reduce(52), + /* -> */ 11: Reduce(52), + /* GRAPH */ 15: Reduce(52), + /* node */ 23: Reduce(52), + /* Edge */ 27: Reduce(52), + /* SubGraph */ 31: Reduce(52), + /* string_lit */ 33: Reduce(52), + /* } */ 4: Reduce(52), + /* -- */ 12: Reduce(52), + /* Node */ 24: Reduce(52), + /* EDGE */ 28: Reduce(52), + /* ; */ 5: Reduce(52), + /* int_lit */ 34: Reduce(52), + /* graph */ 13: Reduce(52), + /* NODE */ 25: Reduce(52), + /* subgraph */ 29: Reduce(52), + /* id */ 2: Reduce(52), + /* float_lit */ 35: Reduce(52), + /* Graph */ 14: Reduce(52), + /* edge */ 26: Reduce(52), + /* Subgraph */ 30: Reduce(52), + /* { */ 3: Reduce(52), + /* SUBGRAPH */ 32: Reduce(52), + /* [ */ 7: Reduce(52), + }, + /* state 169*/ ActionRow{ + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(172), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + }, + /* state 170*/ ActionRow{ + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + /* string_lit */ 33: Shift(55), + }, + /* state 171*/ ActionRow{ + /* html_lit */ 36: Reduce(54), + /* -> */ 11: Reduce(54), + /* GRAPH */ 15: Reduce(54), + /* node */ 23: Reduce(54), + /* Edge */ 27: Reduce(54), + /* SubGraph */ 31: Reduce(54), + /* string_lit */ 33: Reduce(54), + /* } */ 4: Reduce(54), + /* -- */ 12: Reduce(54), + /* Node */ 24: Reduce(54), + /* EDGE */ 28: Reduce(54), + /* ; */ 5: Reduce(54), + /* int_lit */ 34: Reduce(54), + /* graph */ 13: Reduce(54), + /* NODE */ 25: Reduce(54), + /* subgraph */ 29: Reduce(54), + /* id */ 2: Reduce(54), + /* float_lit */ 35: Reduce(54), + /* Graph */ 14: Reduce(54), + /* edge */ 26: Reduce(54), + /* Subgraph */ 30: Reduce(54), + /* { */ 3: Reduce(54), + /* SUBGRAPH */ 32: Reduce(54), + }, + /* state 172*/ ActionRow{ + /* NODE */ 25: Reduce(53), + /* subgraph */ 29: Reduce(53), + /* id */ 2: Reduce(53), + /* float_lit */ 35: Reduce(53), + /* Graph */ 14: Reduce(53), + /* edge */ 26: Reduce(53), + /* Subgraph */ 30: Reduce(53), + /* { */ 3: Reduce(53), + /* SUBGRAPH */ 32: Reduce(53), + /* [ */ 7: Reduce(53), + /* html_lit */ 36: Reduce(53), + /* -> */ 11: Reduce(53), + /* GRAPH */ 15: Reduce(53), + /* node */ 23: Reduce(53), + /* Edge */ 27: Reduce(53), + /* SubGraph */ 31: Reduce(53), + /* string_lit */ 33: Reduce(53), + /* } */ 4: Reduce(53), + /* -- */ 12: Reduce(53), + /* Node */ 24: Reduce(53), + /* EDGE */ 28: Reduce(53), + /* ; */ 5: Reduce(53), + /* int_lit */ 34: Reduce(53), + /* graph */ 13: Reduce(53), + }, + /* state 173*/ ActionRow{ + /* string_lit */ 33: Shift(55), + /* } */ 4: Shift(174), + /* Node */ 24: Shift(45), + /* EDGE */ 28: Shift(49), + /* int_lit */ 34: Shift(56), + /* graph */ 13: Shift(41), + /* NODE */ 25: Shift(46), + /* subgraph */ 29: Shift(50), + /* id */ 2: Shift(54), + /* float_lit */ 35: Shift(57), + /* Graph */ 14: Shift(42), + /* edge */ 26: Shift(47), + /* Subgraph */ 30: Shift(51), + /* { */ 3: Shift(27), + /* SUBGRAPH */ 32: Shift(53), + /* html_lit */ 36: Shift(58), + /* GRAPH */ 15: Shift(43), + /* node */ 23: Shift(44), + /* Edge */ 27: Shift(48), + /* SubGraph */ 31: Shift(52), + }, + /* state 174*/ ActionRow{ + /* NODE */ 25: Reduce(54), + /* subgraph */ 29: Reduce(54), + /* id */ 2: Reduce(54), + /* float_lit */ 35: Reduce(54), + /* Graph */ 14: Reduce(54), + /* edge */ 26: Reduce(54), + /* Subgraph */ 30: Reduce(54), + /* { */ 3: Reduce(54), + /* SUBGRAPH */ 32: Reduce(54), + /* [ */ 7: Reduce(54), + /* html_lit */ 36: Reduce(54), + /* -> */ 11: Reduce(54), + /* GRAPH */ 15: Reduce(54), + /* node */ 23: Reduce(54), + /* Edge */ 27: Reduce(54), + /* SubGraph */ 31: Reduce(54), + /* string_lit */ 33: Reduce(54), + /* } */ 4: Reduce(54), + /* -- */ 12: Reduce(54), + /* Node */ 24: Reduce(54), + /* EDGE */ 28: Reduce(54), + /* ; */ 5: Reduce(54), + /* int_lit */ 34: Reduce(54), + /* graph */ 13: Reduce(54), + }, +} + +var GotoTable GotoTab = GotoTab{ + /* state 0*/ GotoRow{ + "Strict": State(3), + "Digraph": State(4), + "Graph": State(2), + "DotGraph": State(1), + }, + /* state 1*/ GotoRow{}, + /* state 2*/ GotoRow{ + "Id": State(16), + }, + /* state 3*/ GotoRow{ + "Graph": State(22), + "Digraph": State(23), + }, + /* state 4*/ GotoRow{ + "Id": State(25), + }, + /* state 5*/ GotoRow{}, + /* state 6*/ GotoRow{}, + /* state 7*/ GotoRow{}, + /* state 8*/ GotoRow{}, + /* state 9*/ GotoRow{}, + /* state 10*/ GotoRow{}, + /* state 11*/ GotoRow{}, + /* state 12*/ GotoRow{}, + /* state 13*/ GotoRow{}, + /* state 14*/ GotoRow{}, + /* state 15*/ GotoRow{ + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(30), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + }, + /* state 16*/ GotoRow{}, + /* state 17*/ GotoRow{}, + /* state 18*/ GotoRow{}, + /* state 19*/ GotoRow{}, + /* state 20*/ GotoRow{}, + /* state 21*/ GotoRow{}, + /* state 22*/ GotoRow{ + "Id": State(61), + }, + /* state 23*/ GotoRow{ + "Id": State(63), + }, + /* state 24*/ GotoRow{ + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(65), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + }, + /* state 25*/ GotoRow{}, + /* state 26*/ GotoRow{ + "AttrList": State(67), + }, + /* state 27*/ GotoRow{ + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(69), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + }, + /* state 28*/ GotoRow{}, + /* state 29*/ GotoRow{ + "Port": State(71), + }, + /* state 30*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 31*/ GotoRow{}, + /* state 32*/ GotoRow{}, + /* state 33*/ GotoRow{}, + /* state 34*/ GotoRow{}, + /* state 35*/ GotoRow{}, + /* state 36*/ GotoRow{ + "EdgeRHS": State(76), + "EdgeOp": State(77), + }, + /* state 37*/ GotoRow{ + "AttrList": State(80), + }, + /* state 38*/ GotoRow{ + "AttrList": State(81), + }, + /* state 39*/ GotoRow{ + "AttrList": State(82), + "EdgeRHS": State(83), + "EdgeOp": State(77), + }, + /* state 40*/ GotoRow{ + "Id": State(85), + }, + /* state 41*/ GotoRow{}, + /* state 42*/ GotoRow{}, + /* state 43*/ GotoRow{}, + /* state 44*/ GotoRow{}, + /* state 45*/ GotoRow{}, + /* state 46*/ GotoRow{}, + /* state 47*/ GotoRow{}, + /* state 48*/ GotoRow{}, + /* state 49*/ GotoRow{}, + /* state 50*/ GotoRow{}, + /* state 51*/ GotoRow{}, + /* state 52*/ GotoRow{}, + /* state 53*/ GotoRow{}, + /* state 54*/ GotoRow{}, + /* state 55*/ GotoRow{}, + /* state 56*/ GotoRow{}, + /* state 57*/ GotoRow{}, + /* state 58*/ GotoRow{}, + /* state 59*/ GotoRow{ + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(87), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + }, + /* state 60*/ GotoRow{ + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(89), + "SubGraphStmt": State(36), + "Id": State(29), + }, + /* state 61*/ GotoRow{}, + /* state 62*/ GotoRow{ + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(92), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + }, + /* state 63*/ GotoRow{}, + /* state 64*/ GotoRow{}, + /* state 65*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 66*/ GotoRow{ + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(96), + "SubGraphStmt": State(36), + "Id": State(29), + }, + /* state 67*/ GotoRow{}, + /* state 68*/ GotoRow{ + "Attr": State(101), + "Id": State(98), + "AList": State(100), + }, + /* state 69*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 70*/ GotoRow{ + "Id": State(108), + }, + /* state 71*/ GotoRow{}, + /* state 72*/ GotoRow{ + "Id": State(114), + }, + /* state 73*/ GotoRow{}, + /* state 74*/ GotoRow{}, + /* state 75*/ GotoRow{}, + /* state 76*/ GotoRow{ + "AttrList": State(120), + "EdgeOp": State(121), + }, + /* state 77*/ GotoRow{ + "Subgraph": State(126), + "SubGraphStmt": State(124), + "Id": State(123), + "NodeId": State(125), + }, + /* state 78*/ GotoRow{}, + /* state 79*/ GotoRow{}, + /* state 80*/ GotoRow{}, + /* state 81*/ GotoRow{}, + /* state 82*/ GotoRow{}, + /* state 83*/ GotoRow{ + "EdgeOp": State(121), + "AttrList": State(127), + }, + /* state 84*/ GotoRow{ + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(128), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + }, + /* state 85*/ GotoRow{}, + /* state 86*/ GotoRow{}, + /* state 87*/ GotoRow{ + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + }, + /* state 88*/ GotoRow{}, + /* state 89*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 90*/ GotoRow{ + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(133), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + }, + /* state 91*/ GotoRow{}, + /* state 92*/ GotoRow{ + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + }, + /* state 93*/ GotoRow{ + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(136), + "SubGraphStmt": State(36), + "Id": State(29), + }, + /* state 94*/ GotoRow{}, + /* state 95*/ GotoRow{}, + /* state 96*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 97*/ GotoRow{ + "Id": State(98), + "AList": State(139), + "Attr": State(101), + }, + /* state 98*/ GotoRow{}, + /* state 99*/ GotoRow{}, + /* state 100*/ GotoRow{ + "Attr": State(142), + "Id": State(98), + }, + /* state 101*/ GotoRow{}, + /* state 102*/ GotoRow{}, + /* state 103*/ GotoRow{}, + /* state 104*/ GotoRow{}, + /* state 105*/ GotoRow{}, + /* state 106*/ GotoRow{}, + /* state 107*/ GotoRow{}, + /* state 108*/ GotoRow{}, + /* state 109*/ GotoRow{}, + /* state 110*/ GotoRow{}, + /* state 111*/ GotoRow{}, + /* state 112*/ GotoRow{}, + /* state 113*/ GotoRow{}, + /* state 114*/ GotoRow{}, + /* state 115*/ GotoRow{}, + /* state 116*/ GotoRow{}, + /* state 117*/ GotoRow{}, + /* state 118*/ GotoRow{}, + /* state 119*/ GotoRow{}, + /* state 120*/ GotoRow{}, + /* state 121*/ GotoRow{ + "Subgraph": State(126), + "SubGraphStmt": State(145), + "Id": State(123), + "NodeId": State(146), + }, + /* state 122*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(147), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 123*/ GotoRow{ + "Port": State(71), + }, + /* state 124*/ GotoRow{}, + /* state 125*/ GotoRow{}, + /* state 126*/ GotoRow{ + "Id": State(149), + }, + /* state 127*/ GotoRow{}, + /* state 128*/ GotoRow{ + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + }, + /* state 129*/ GotoRow{ + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(151), + "SubGraphStmt": State(36), + }, + /* state 130*/ GotoRow{}, + /* state 131*/ GotoRow{}, + /* state 132*/ GotoRow{}, + /* state 133*/ GotoRow{ + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + }, + /* state 134*/ GotoRow{}, + /* state 135*/ GotoRow{}, + /* state 136*/ GotoRow{ + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + }, + /* state 137*/ GotoRow{}, + /* state 138*/ GotoRow{}, + /* state 139*/ GotoRow{ + "Id": State(98), + "Attr": State(142), + }, + /* state 140*/ GotoRow{ + "Id": State(155), + }, + /* state 141*/ GotoRow{}, + /* state 142*/ GotoRow{}, + /* state 143*/ GotoRow{ + "Id": State(98), + "Attr": State(161), + }, + /* state 144*/ GotoRow{ + "Id": State(162), + }, + /* state 145*/ GotoRow{}, + /* state 146*/ GotoRow{}, + /* state 147*/ GotoRow{ + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + }, + /* state 148*/ GotoRow{ + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(169), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + }, + /* state 149*/ GotoRow{}, + /* state 150*/ GotoRow{}, + /* state 151*/ GotoRow{ + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + }, + /* state 152*/ GotoRow{}, + /* state 153*/ GotoRow{}, + /* state 154*/ GotoRow{}, + /* state 155*/ GotoRow{}, + /* state 156*/ GotoRow{}, + /* state 157*/ GotoRow{}, + /* state 158*/ GotoRow{}, + /* state 159*/ GotoRow{}, + /* state 160*/ GotoRow{}, + /* state 161*/ GotoRow{}, + /* state 162*/ GotoRow{}, + /* state 163*/ GotoRow{}, + /* state 164*/ GotoRow{}, + /* state 165*/ GotoRow{}, + /* state 166*/ GotoRow{}, + /* state 167*/ GotoRow{}, + /* state 168*/ GotoRow{}, + /* state 169*/ GotoRow{ + "Stmt1": State(74), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + }, + /* state 170*/ GotoRow{ + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(31), + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "StmtList": State(173), + }, + /* state 171*/ GotoRow{}, + /* state 172*/ GotoRow{}, + /* state 173*/ GotoRow{ + "NodeStmt": State(33), + "Node": State(37), + "Stmt": State(32), + "NodeId": State(39), + "Graph": State(26), + "Edge": State(38), + "AttrStmt": State(35), + "EdgeStmt": State(34), + "Subgraph": State(40), + "SubGraphStmt": State(36), + "Id": State(29), + "Stmt1": State(74), + }, + /* state 174*/ GotoRow{}, +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/relations.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/relations.go new file mode 100644 index 00000000..664719ea --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/relations.go @@ -0,0 +1,52 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "sort" +) + +//Represents the relations between graphs and nodes. +//Each node belongs the main graph or a subgraph. +type Relations struct { + ParentToChildren map[string]map[string]bool + ChildToParents map[string]map[string]bool +} + +//Creates an empty set of relations. +func NewRelations() *Relations { + return &Relations{make(map[string]map[string]bool), make(map[string]map[string]bool)} +} + +//Adds a node to a parent graph. +func (this *Relations) Add(parent string, child string) { + if _, ok := this.ParentToChildren[parent]; !ok { + this.ParentToChildren[parent] = make(map[string]bool) + } + this.ParentToChildren[parent][child] = true + if _, ok := this.ChildToParents[child]; !ok { + this.ChildToParents[child] = make(map[string]bool) + } + this.ChildToParents[child][parent] = true +} + +func (this *Relations) SortedChildren(parent string) []string { + keys := make([]string, 0) + for key := range this.ParentToChildren[parent] { + keys = append(keys, key) + } + sort.Strings(keys) + return keys +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/scanner/scanner.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/scanner/scanner.go new file mode 100644 index 00000000..b4aad6dc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/scanner/scanner.go @@ -0,0 +1,570 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// A scanner for Go source text. Takes a []byte as source which can +// then be tokenized through repeated calls to the Scan function. +// For a sample use of a scanner, see the implementation of Tokenize. +// + +//A scanner for the DOT grammar that has been derived from the standard +//golang scanner with extra added literals. +package scanner + +import ( + "bytes" + "strconv" + "unicode" + "unicode/utf8" +) +import "code.google.com/p/gographviz/token" + +// A Scanner holds the scanner's internal state while processing +// a given text. It can be allocated as part of another data +// structure but must be initialized via Init before use. For +// a sample use, see the implementation of Tokenize. +// +type Scanner struct { + // immutable state + src []byte // source + tokenMap *token.TokenMap + + // scanning state + pos token.Position // previous reading position (position before ch) + offset int // current reading offset (position after ch) + ch rune // one char look-ahead + + // public state - ok to modify + ErrorCount int // number of errors encountered +} + +// Read the next Unicode char into S.ch. +// S.ch < 0 means end-of-file. +// +func (S *Scanner) next() { + if S.offset < len(S.src) { + S.pos.Offset = S.offset + S.pos.Column++ + if S.ch == '\n' { + // next character starts a new line + S.pos.Line++ + S.pos.Column = 1 + } + r, w := rune(S.src[S.offset]), 1 + switch { + case r == 0: + S.error(S.pos, "illegal character NUL") + case r >= 0x80: + // not ASCII + r, w = utf8.DecodeRune(S.src[S.offset:]) + if r == utf8.RuneError && w == 1 { + S.error(S.pos, "illegal UTF-8 encoding") + } + } + S.offset += w + S.ch = r + } else { + S.pos.Offset = len(S.src) + S.ch = -1 // eof + } +} + +// Init prepares the scanner S to tokenize the text src. Calls to Scan +// will use the error handler err if they encounter a syntax error and +// err is not nil. Also, for each error encountered, the Scanner field +// ErrorCount is incremented by one. The filename parameter is used as +// filename in the token.Position returned by Scan for each token. The +// mode parameter determines how comments and illegal characters are +// handled. +// +func (S *Scanner) Init(src []byte, tokenMap *token.TokenMap) { + // Explicitly initialize all fields since a scanner may be reused. + S.src = src + S.tokenMap = tokenMap + S.pos = token.Position{0, 1, 0} + S.offset = 0 + S.ErrorCount = 0 + S.next() +} + +func charString(ch rune) string { + var s string + switch ch { + case -1: + return "EOF" + case '\a': + s = "\\a" + case '\b': + s = "\\b" + case '\f': + s = "\\f" + case '\n': + s = "\\n" + case '\r': + s = "\\r" + case '\t': + s = "\\t" + case '\v': + s = "\\v" + case '\\': + s = "\\\\" + case '\'': + s = "\\'" + default: + s = string(ch) + } + return "'" + s + "' (U+" + strconv.FormatInt(int64(ch), 16) + ")" +} + +func (S *Scanner) error(pos token.Position, msg string) { + S.ErrorCount++ +} + +func (S *Scanner) expect(ch rune) { + if S.ch != ch { + S.error(S.pos, "expected "+charString(ch)+", found "+charString(S.ch)) + } + S.next() // always make progress +} + +var prefix = []byte("line ") + +func (S *Scanner) scanComment(pos token.Position) { + // first '/' or '#' already consumed + if S.ch == '*' { + /*-style comment */ + S.expect('*') + for S.ch >= 0 { + ch := S.ch + S.next() + if ch == '*' && S.ch == '/' { + S.next() + return + } + } + } else { + //-style comment or #-style comment + for S.ch >= 0 { + S.next() + if S.ch == '\n' { + // '\n' is not part of the comment for purposes of scanning + // (the comment ends on the same line where it started) + if pos.Column == 1 { + text := S.src[pos.Offset+2 : S.pos.Offset] + if bytes.HasPrefix(text, prefix) { + // comment starts at beginning of line with "//line "; + // get filename and line number, if any + i := bytes.Index(text, []byte{':'}) + if i >= 0 { + if line, err := strconv.Atoi(string(text[i+1:])); err == nil && line > 0 { + // valid //line filename:line comment; + // update scanner position + S.pos.Line = line - 1 // -1 since the '\n' has not been consumed yet + } + } + } + } + return + } + } + } + + S.error(pos, "comment not terminated") +} + +func (S *Scanner) findNewline(pos token.Position) bool { + // first '/' already consumed; assume S.ch == '/' || S.ch == '*' + + // read ahead until a newline or non-comment token is found + newline := false + for pos1 := pos; S.ch >= 0; { + if S.ch == '/' { + //-style comment always contains a newline + newline = true + break + } + S.scanComment(pos1) + if pos1.Line < S.pos.Line { + /*-style comment contained a newline */ + newline = true + break + } + S.skipWhitespace() // S.insertSemi is set + if S.ch == '\n' { + newline = true + break + } + if S.ch != '/' { + // non-comment token + break + } + pos1 = S.pos + S.next() + if S.ch != '/' && S.ch != '*' { + // non-comment token + break + } + } + + // reset position to where it was upon calling findNewline + S.pos = pos + S.offset = pos.Offset + 1 + S.next() + + return newline +} + +func isLetter(ch rune) bool { + return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || + ch >= 0x80 && unicode.IsLetter(ch) && ch != 'ε' +} + +func isDigit(ch rune) bool { + return '0' <= ch && ch <= '9' || ch >= 0x80 && unicode.IsDigit(ch) +} + +func digitVal(ch rune) int { + switch { + case '0' <= ch && ch <= '9': + return int(ch) - '0' + case 'a' <= ch && ch <= 'f': + return int(ch) - 'a' + 10 + case 'A' <= ch && ch <= 'F': + return int(ch) - 'A' + 10 + } + return 16 // larger than any legal digit val +} + +func (S *Scanner) scanEscape(quote rune) { + pos := S.pos + + var i, base, max uint32 + switch S.ch { + case 'a', 'b', 'f', 'n', 'r', 't', 'v', '\\', quote: + S.next() + return + case '0', '1', '2', '3', '4', '5', '6', '7': + i, base, max = 3, 8, 255 + case 'x': + S.next() + i, base, max = 2, 16, 255 + case 'u': + S.next() + i, base, max = 4, 16, unicode.MaxRune + case 'U': + S.next() + i, base, max = 8, 16, unicode.MaxRune + default: + S.next() // always make progress + S.error(pos, "unknown escape sequence") + return + } + + var x uint32 + for ; i > 0; i-- { + d := uint32(digitVal(S.ch)) + if d > base { + S.error(S.pos, "illegal character in escape sequence") + return + } + x = x*base + d + S.next() + } + if x > max || 0xd800 <= x && x < 0xe000 { + S.error(pos, "escape sequence is invalid Unicode code point") + } +} + +func (S *Scanner) scanChar(pos token.Position) { + // '\'' already consumed + + n := 0 + for S.ch != '\'' { + ch := S.ch + n++ + S.next() + if ch == '\n' || ch < 0 { + S.error(pos, "character literal not terminated") + n = 1 + break + } + if ch == '\\' { + S.scanEscape('\'') + } + } + + S.next() + + if n != 1 { + S.error(pos, "illegal character literal") + } +} + +func (S *Scanner) isToken(str string) bool { + return S.tokenMap.Type(str) != token.ILLEGAL +} + +func (S *Scanner) scanIdentifier() token.Type { + pos := S.pos.Offset + for !S.isToken(string(S.ch)) && !unicode.IsSpace(S.ch) && S.ch != '-' { + S.next() + } + if tok := S.tokenMap.Type(string(S.src[pos:S.pos.Offset])); tok != token.ILLEGAL { + return tok + } + return S.tokenMap.Type("id") +} + +func (S *Scanner) scanNumber() token.Type { + for isDigit(S.ch) { + S.next() + } + if S.ch == '.' { + S.next() + for isDigit(S.ch) { + S.next() + } + return S.tokenMap.Type("float_lit") + } + return S.tokenMap.Type("int_lit") +} + +func (S *Scanner) scanHTML() token.Type { + count := 1 + for count > 0 { + if S.ch == '<' { + count += 1 + } + if S.ch == '>' { + count -= 1 + } + S.next() + } + return S.tokenMap.Type("html_lit") +} + +func (S *Scanner) scanSDTLit(pos token.Position) { + // '<' already consumed + S.next() // consume second < + for cmp := false; !cmp; { + if S.ch < 0 { + S.error(pos, "SDT not terminated") + break + } + if S.ch == '>' { + S.next() + if S.ch == '>' { + break + } + } + S.next() + } + S.next() +} + +func (S *Scanner) scanString(pos token.Position) { + // '"' already consumed + + for S.ch != '"' { + ch := S.ch + S.next() + if ch == '\n' || ch < 0 { + S.error(pos, "string not terminated") + break + } + if ch == '\\' { + S.scanEscape('"') + } + } + + S.next() +} + +func (S *Scanner) scanRawString(pos token.Position) { + // '\140' already consumed + + for S.ch != '\140' { + ch := S.ch + S.next() + if ch < 0 { + S.error(pos, "string not terminated") + break + } + } + + S.next() +} + +func (S *Scanner) skipWhitespace() { + for S.ch == ' ' || S.ch == '\t' || S.ch == '\n' || S.ch == '\r' { + S.next() + } +} + +// Helper functions for scanning multi-byte tokens such as >> += >>= . +// Different routines recognize different length tok_i based on matches +// of ch_i. If a token ends in '=', the result is tok1 or tok3 +// respectively. Otherwise, the result is tok0 if there was no other +// matching character, or tok2 if the matching character was ch2. + +func (S *Scanner) switch2(tok0, tok1 token.Type) token.Type { + if S.ch == '=' { + S.next() + return tok1 + } + return tok0 +} + +func (S *Scanner) switch3(tok0, tok1 token.Type, ch2 rune, tok2 token.Type) token.Type { + if S.ch == '=' { + S.next() + return tok1 + } + if S.ch == ch2 { + S.next() + return tok2 + } + return tok0 +} + +func (S *Scanner) switch4(tok0, tok1 token.Type, ch2 rune, tok2, tok3 token.Type) token.Type { + if S.ch == '=' { + S.next() + return tok1 + } + if S.ch == ch2 { + S.next() + if S.ch == '=' { + S.next() + return tok3 + } + return tok2 + } + return tok0 +} + +var semicolon = []byte{';'} + +// Scan scans the next token and returns the token position pos, +// the token tok, and the literal text lit corresponding to the +// token. The source end is indicated by token.EOF. +// +// For more tolerant parsing, Scan will return a valid token if +// possible even if a syntax error was encountered. Thus, even +// if the resulting token sequence contains no illegal tokens, +// a client may not assume that no error occurred. Instead it +// must check the scanner's ErrorCount or the number of calls +// of the error handler, if there was one installed. +// +func (S *Scanner) Scan() (*token.Token, token.Position) { +scanAgain: + S.skipWhitespace() + + // current token start + pos, tok := S.pos, token.ILLEGAL + + // determine token value + switch ch := S.ch; { + case isLetter(ch): + tok = S.scanIdentifier() + case isDigit(ch), ch == '.': + tok = S.scanNumber() + default: + S.next() // always make progress + switch ch { + case -1: + tok = S.tokenMap.Type("$") + case '"': + tok = S.tokenMap.Type("string_lit") + S.scanString(pos) + case '\'': + tok = S.tokenMap.Type("char") + S.scanChar(pos) + case '\140': + tok = S.tokenMap.Type("string_lit") + S.scanRawString(pos) + case ',': + tok = S.tokenMap.Type(",") + case '{': + tok = S.tokenMap.Type("{") + case '}': + tok = S.tokenMap.Type("}") + case ':': + tok = S.tokenMap.Type(":") + case ';': + tok = S.tokenMap.Type(";") + case '+': + tok = S.tokenMap.Type("+") + case '-': + if S.ch == '-' { + tok = S.tokenMap.Type("--") + S.next() + } else if S.ch == '>' { + tok = S.tokenMap.Type("->") + S.next() + } else if isDigit(S.ch) { + tok = S.scanNumber() + } else { + tok = S.tokenMap.Type("-") + } + case '=': + tok = S.tokenMap.Type("=") + case '[': + tok = S.tokenMap.Type("[") + case ']': + tok = S.tokenMap.Type("]") + case '(': + tok = S.tokenMap.Type("(") + case ')': + tok = S.tokenMap.Type(")") + case 'ε': + tok = S.tokenMap.Type("ε") + case '#': + S.scanComment(pos) + goto scanAgain + case '/': + if S.ch == '/' || S.ch == '*' { + // comment + S.scanComment(pos) + goto scanAgain + } else { + tok = S.tokenMap.Type("/") + } + case '|': + tok = S.tokenMap.Type("|") + case '<': + tok = S.scanHTML() + default: + S.error(pos, "illegal character "+charString(ch)) + } + } + //fmt.Fprintf(os.Stderr, "return tok %v, %v\n", token.NewToken(tok, S.src[pos.Offset:S.pos.Offset]), pos) + return token.NewToken(tok, S.src[pos.Offset:S.pos.Offset]), pos +} + +// An implementation of an ErrorHandler may be provided to the Scanner. +// If a syntax error is encountered and a handler was installed, Error +// is called with a position and an error message. The position points +// to the beginning of the offending token. +// +type ErrorHandler interface { + Error(pos token.Position, msg string) +} + +// Within ErrorVector, an error is represented by an Error node. The +// position Pos, if valid, points to the beginning of the offending +// token, and the error condition is described by Msg. +// +type Error struct { + Pos token.Position + Msg string +} + +func (e *Error) String() string { + if e.Pos.IsValid() { + // don't print "" + // TODO(gri) reconsider the semantics of Position.IsValid + return e.Pos.String() + ": " + e.Msg + } + return e.Msg +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/subgraphs.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/subgraphs.go new file mode 100644 index 00000000..b22d7f22 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/subgraphs.go @@ -0,0 +1,63 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "sort" +) + +//Represents a Subgraph. +type SubGraph struct { + Attrs Attrs + Name string +} + +//Creates a new Subgraph. +func NewSubGraph(name string) *SubGraph { + return &SubGraph{ + Attrs: make(Attrs), + Name: name, + } +} + +//Represents a set of SubGraphs. +type SubGraphs struct { + SubGraphs map[string]*SubGraph +} + +//Creates a new blank set of SubGraphs. +func NewSubGraphs() *SubGraphs { + return &SubGraphs{make(map[string]*SubGraph)} +} + +//Adds and creates a new Subgraph to the set of SubGraphs. +func (this *SubGraphs) Add(name string) { + if _, ok := this.SubGraphs[name]; !ok { + this.SubGraphs[name] = NewSubGraph(name) + } +} + +func (this *SubGraphs) Sorted() []*SubGraph { + keys := make([]string, 0) + for key := range this.SubGraphs { + keys = append(keys, key) + } + sort.Strings(keys) + s := make([]*SubGraph, len(keys)) + for i, key := range keys { + s[i] = this.SubGraphs[key] + } + return s +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/README new file mode 100644 index 00000000..e8bb70ba --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/README @@ -0,0 +1 @@ +These test graphs have been copied from the graphviz gallery found here http://www.graphviz.org/Gallery.php \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/cluster.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/cluster.gv.txt new file mode 100644 index 00000000..67dcd4c2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/cluster.gv.txt @@ -0,0 +1,27 @@ +digraph G { + + subgraph cluster_0 { + style=filled; + color=lightgrey; + node [style=filled,color=white]; + a0 -> a1 -> a2 -> a3; + label = "process #1"; + } + + subgraph cluster_1 { + node [style=filled]; + b0 -> b1 -> b2 -> b3; + label = "process #2"; + color=blue + } + start -> a0; + start -> b0; + a1 -> b3; + b2 -> a3; + a3 -> a0; + a3 -> end; + b3 -> end; + + start [shape=Mdiamond]; + end [shape=Msquare]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/crazy.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/crazy.gv.txt new file mode 100644 index 00000000..b51d4987 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/crazy.gv.txt @@ -0,0 +1,104 @@ +digraph "unix" { + graph [ fontname = "Helvetica-Oblique", + fontsize = 36, + label = "\n\n\n\nObject Oriented Graphs\nStephen North, 3/19/93", + size = "6,6" ]; + node [ shape = polygon, + sides = 4, + distortion = "0.0", + orientation = "0.0", + skew = "0.0", + color = white, + style = filled, + fontname = "Helvetica-Outline" ]; + "5th Edition" [sides=9, distortion="0.936354", orientation=28, skew="-0.126818", color=salmon2]; + "6th Edition" [sides=5, distortion="0.238792", orientation=11, skew="0.995935", color=deepskyblue]; + "PWB 1.0" [sides=8, distortion="0.019636", orientation=79, skew="-0.440424", color=goldenrod2]; + LSX [sides=9, distortion="-0.698271", orientation=22, skew="-0.195492", color=burlywood2]; + "1 BSD" [sides=7, distortion="0.265084", orientation=26, skew="0.403659", color=gold1]; + "Mini Unix" [distortion="0.039386", orientation=2, skew="-0.461120", color=greenyellow]; + Wollongong [sides=5, distortion="0.228564", orientation=63, skew="-0.062846", color=darkseagreen]; + Interdata [distortion="0.624013", orientation=56, skew="0.101396", color=dodgerblue1]; + "Unix/TS 3.0" [sides=8, distortion="0.731383", orientation=43, skew="-0.824612", color=thistle2]; + "PWB 2.0" [sides=6, distortion="0.592100", orientation=34, skew="-0.719269", color=darkolivegreen3]; + "7th Edition" [sides=10, distortion="0.298417", orientation=65, skew="0.310367", color=chocolate]; + "8th Edition" [distortion="-0.997093", orientation=50, skew="-0.061117", color=turquoise3]; + "32V" [sides=7, distortion="0.878516", orientation=19, skew="0.592905", color=steelblue3]; + V7M [sides=10, distortion="-0.960249", orientation=32, skew="0.460424", color=navy]; + "Ultrix-11" [sides=10, distortion="-0.633186", orientation=10, skew="0.333125", color=darkseagreen4]; + Xenix [sides=8, distortion="-0.337997", orientation=52, skew="-0.760726", color=coral]; + "UniPlus+" [sides=7, distortion="0.788483", orientation=39, skew="-0.526284", color=darkolivegreen3]; + "9th Edition" [sides=7, distortion="0.138690", orientation=55, skew="0.554049", color=coral3]; + "2 BSD" [sides=7, distortion="-0.010661", orientation=84, skew="0.179249", color=blanchedalmond]; + "2.8 BSD" [distortion="-0.239422", orientation=44, skew="0.053841", color=lightskyblue1]; + "2.9 BSD" [distortion="-0.843381", orientation=70, skew="-0.601395", color=aquamarine2]; + "3 BSD" [sides=10, distortion="0.251820", orientation=18, skew="-0.530618", color=lemonchiffon]; + "4 BSD" [sides=5, distortion="-0.772300", orientation=24, skew="-0.028475", color=darkorange1]; + "4.1 BSD" [distortion="-0.226170", orientation=38, skew="0.504053", color=lightyellow1]; + "4.2 BSD" [sides=10, distortion="-0.807349", orientation=50, skew="-0.908842", color=darkorchid4]; + "4.3 BSD" [sides=10, distortion="-0.030619", orientation=76, skew="0.985021", color=lemonchiffon2]; + "Ultrix-32" [distortion="-0.644209", orientation=21, skew="0.307836", color=goldenrod3]; + "PWB 1.2" [sides=7, distortion="0.640971", orientation=84, skew="-0.768455", color=cyan]; + "USG 1.0" [distortion="0.758942", orientation=42, skew="0.039886", color=blue]; + "CB Unix 1" [sides=9, distortion="-0.348692", orientation=42, skew="0.767058", color=firebrick]; + "USG 2.0" [distortion="0.748625", orientation=74, skew="-0.647656", color=chartreuse4]; + "CB Unix 2" [sides=10, distortion="0.851818", orientation=32, skew="-0.020120", color=greenyellow]; + "CB Unix 3" [sides=10, distortion="0.992237", orientation=29, skew="0.256102", color=bisque4]; + "Unix/TS++" [sides=6, distortion="0.545461", orientation=16, skew="0.313589", color=mistyrose2]; + "PDP-11 Sys V" [sides=9, distortion="-0.267769", orientation=40, skew="0.271226", color=cadetblue1]; + "USG 3.0" [distortion="-0.848455", orientation=44, skew="0.267152", color=bisque2]; + "Unix/TS 1.0" [distortion="0.305594", orientation=75, skew="0.070516", color=orangered]; + "TS 4.0" [sides=10, distortion="-0.641701", orientation=50, skew="-0.952502", color=crimson]; + "System V.0" [sides=9, distortion="0.021556", orientation=26, skew="-0.729938", color=darkorange1]; + "System V.2" [sides=6, distortion="0.985153", orientation=33, skew="-0.399752", color=darkolivegreen4]; + "System V.3" [sides=7, distortion="-0.687574", orientation=58, skew="-0.180116", color=lightsteelblue1]; + "5th Edition" -> "6th Edition"; + "5th Edition" -> "PWB 1.0"; + "6th Edition" -> LSX; + "6th Edition" -> "1 BSD"; + "6th Edition" -> "Mini Unix"; + "6th Edition" -> Wollongong; + "6th Edition" -> Interdata; + Interdata -> "Unix/TS 3.0"; + Interdata -> "PWB 2.0"; + Interdata -> "7th Edition"; + "7th Edition" -> "8th Edition"; + "7th Edition" -> "32V"; + "7th Edition" -> V7M; + "7th Edition" -> "Ultrix-11"; + "7th Edition" -> Xenix; + "7th Edition" -> "UniPlus+"; + V7M -> "Ultrix-11"; + "8th Edition" -> "9th Edition"; + "1 BSD" -> "2 BSD"; + "2 BSD" -> "2.8 BSD"; + "2.8 BSD" -> "Ultrix-11"; + "2.8 BSD" -> "2.9 BSD"; + "32V" -> "3 BSD"; + "3 BSD" -> "4 BSD"; + "4 BSD" -> "4.1 BSD"; + "4.1 BSD" -> "4.2 BSD"; + "4.1 BSD" -> "2.8 BSD"; + "4.1 BSD" -> "8th Edition"; + "4.2 BSD" -> "4.3 BSD"; + "4.2 BSD" -> "Ultrix-32"; + "PWB 1.0" -> "PWB 1.2"; + "PWB 1.0" -> "USG 1.0"; + "PWB 1.2" -> "PWB 2.0"; + "USG 1.0" -> "CB Unix 1"; + "USG 1.0" -> "USG 2.0"; + "CB Unix 1" -> "CB Unix 2"; + "CB Unix 2" -> "CB Unix 3"; + "CB Unix 3" -> "Unix/TS++"; + "CB Unix 3" -> "PDP-11 Sys V"; + "USG 2.0" -> "USG 3.0"; + "USG 3.0" -> "Unix/TS 3.0"; + "PWB 2.0" -> "Unix/TS 3.0"; + "Unix/TS 1.0" -> "Unix/TS 3.0"; + "Unix/TS 3.0" -> "TS 4.0"; + "Unix/TS++" -> "TS 4.0"; + "CB Unix 3" -> "TS 4.0"; + "TS 4.0" -> "System V.0"; + "System V.0" -> "System V.2"; + "System V.2" -> "System V.3"; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/datastruct.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/datastruct.gv.txt new file mode 100644 index 00000000..e68eb33e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/datastruct.gv.txt @@ -0,0 +1,114 @@ +digraph g { +graph [ +rankdir = "LR" +]; +node [ +fontsize = "16" +shape = "ellipse" +]; +edge [ +]; +"node0" [ +label = " 0x10ba8| " +shape = "record" +]; +"node1" [ +label = " 0xf7fc4380| | |-1" +shape = "record" +]; +"node2" [ +label = " 0xf7fc44b8| | |2" +shape = "record" +]; +"node3" [ +label = " 3.43322790286038071e-06|44.79998779296875|0" +shape = "record" +]; +"node4" [ +label = " 0xf7fc4380| | |2" +shape = "record" +]; +"node5" [ +label = " (nil)| | |-1" +shape = "record" +]; +"node6" [ +label = " 0xf7fc4380| | |1" +shape = "record" +]; +"node7" [ +label = " 0xf7fc4380| | |2" +shape = "record" +]; +"node8" [ +label = " (nil)| | |-1" +shape = "record" +]; +"node9" [ +label = " (nil)| | |-1" +shape = "record" +]; +"node10" [ +label = " (nil)| | |-1" +shape = "record" +]; +"node11" [ +label = " (nil)| | |-1" +shape = "record" +]; +"node12" [ +label = " 0xf7fc43e0| | |1" +shape = "record" +]; +"node0":f0 -> "node1":f0 [ +id = 0 +]; +"node0":f1 -> "node2":f0 [ +id = 1 +]; +"node1":f0 -> "node3":f0 [ +id = 2 +]; +"node1":f1 -> "node4":f0 [ +id = 3 +]; +"node1":f2 -> "node5":f0 [ +id = 4 +]; +"node4":f0 -> "node3":f0 [ +id = 5 +]; +"node4":f1 -> "node6":f0 [ +id = 6 +]; +"node4":f2 -> "node10":f0 [ +id = 7 +]; +"node6":f0 -> "node3":f0 [ +id = 8 +]; +"node6":f1 -> "node7":f0 [ +id = 9 +]; +"node6":f2 -> "node9":f0 [ +id = 10 +]; +"node7":f0 -> "node3":f0 [ +id = 11 +]; +"node7":f1 -> "node1":f0 [ +id = 12 +]; +"node7":f2 -> "node8":f0 [ +id = 13 +]; +"node10":f1 -> "node11":f0 [ +id = 14 +]; +"node10":f2 -> "node12":f0 [ +id = 15 +]; +"node11":f2 -> "node1":f0 [ +id = 16 +]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/er.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/er.gv.txt new file mode 100644 index 00000000..55060f2d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/er.gv.txt @@ -0,0 +1,22 @@ +graph ER { + node [shape=box]; course; institute; student; + node [shape=ellipse]; {node [label="name"] name0; name1; name2;} + code; grade; number; + node [shape=diamond,style=filled,color=lightgrey]; "C-I"; "S-C"; "S-I"; + + name0 -- course; + code -- course; + course -- "C-I" [label="n",len=1.00]; + "C-I" -- institute [label="1",len=1.00]; + institute -- name1; + institute -- "S-I" [label="1",len=1.00]; + "S-I" -- student [label="n",len=1.00]; + student -- grade; + student -- name2; + student -- number; + student -- "S-C" [label="m",len=1.00]; + "S-C" -- course [label="n",len=1.00]; + + label = "\n\nEntity Relation Diagram\ndrawn by NEATO"; + fontsize=20; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/fdpclust.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/fdpclust.gv.txt new file mode 100644 index 00000000..3b124cfc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/fdpclust.gv.txt @@ -0,0 +1,15 @@ +graph G { + e + subgraph clusterA { + a -- b; + subgraph clusterC { + C -- D; + } + } + subgraph clusterB { + d -- f + } + d -- D + e -- clusterB + clusterC -- clusterB +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/fsm.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/fsm.gv.txt new file mode 100644 index 00000000..e59b7c2d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/fsm.gv.txt @@ -0,0 +1,20 @@ +digraph finite_state_machine { + rankdir=LR; + size="8,5" + node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8; + node [shape = circle]; + LR_0 -> LR_2 [ label = "SS(B)" ]; + LR_0 -> LR_1 [ label = "SS(S)" ]; + LR_1 -> LR_3 [ label = "S($end)" ]; + LR_2 -> LR_6 [ label = "SS(b)" ]; + LR_2 -> LR_5 [ label = "SS(a)" ]; + LR_2 -> LR_4 [ label = "S(A)" ]; + LR_5 -> LR_7 [ label = "S(b)" ]; + LR_5 -> LR_5 [ label = "S(a)" ]; + LR_6 -> LR_6 [ label = "S(b)" ]; + LR_6 -> LR_5 [ label = "S(a)" ]; + LR_7 -> LR_8 [ label = "S(b)" ]; + LR_7 -> LR_5 [ label = "S(a)" ]; + LR_8 -> LR_6 [ label = "S(b)" ]; + LR_8 -> LR_5 [ label = "S(a)" ]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/gd_1994_2007.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/gd_1994_2007.gv.txt new file mode 100644 index 00000000..4676beb5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/gd_1994_2007.gv.txt @@ -0,0 +1,1903 @@ +/* This is a co-authorship graph. Each node is an author and an edge exist between two authors if their name appears in a paper on one of the International Symposium on Graph Drawing bwteeen 1994-2007. The top 8 connected components is taken, and the graph is laidout using sfdp, and a map showing the clustering relationship is generated using gvmap with command: + +gvmap -e gd_1994_2007.gv | neato -Ecolor="#55555522" -n2 -Tpng > gd_1994_2007.png + +This graph already has coordinates assigned and overlap removed. For a graph not yet laidout, use a layout engine with a suitable overlap removal algorithm, e.g., + +sfdp -Goverlap=prism + +first before feeding the output to gvmap. + +*/ + +graph { + graph [charset=latin1, overlap_scaling=3, pack=90, label="Co-authorship graph for the International Symposiums on Graph Drawing, 1994-2007"]; + node [label="\N", width="0.001", height="0.001", margin="0.001"]; + graph [bb="0,0,1537.4,1200.5"]; + 127 [label=Lee, width="0.22222", height="0.15278", group=11, fontsize=7, pos="570.02,1089.4"]; + 131 [label=Robertson, width="0.52778", height="0.13889", group=11, fontsize=6, pos="616.67,1076.4"]; + 509 [label=Bederson, width="0.47222", height="0.13889", group=11, fontsize=6, pos="537.18,1070.5"]; + 410 [label=Nachmanson, width="0.66667", height="0.13889", group=11, fontsize=6, pos="610.55,1105.5"]; + 32 [label=T�th, width="0.30556", height="0.18056", group=12, fontsize=8, pos="1025.2,394.21"]; + 391 [label=Kyncl, width="0.36111", height="0.15278", group=12, fontsize=7, pos="1162.2,354.41"]; + 99 [label=Pinchasi, width="0.44444", height="0.13889", group=12, fontsize=6, pos="1101,372.82"]; + 272 [label=Cern�, width="0.33333", height="0.15278", group=12, fontsize=7, pos="1178.6,378.07"]; + 87 [label=Keszegh, width="0.44444", height="0.13889", group=12, fontsize=6, pos="1060.5,374.88"]; + 498 [label=P�lv�lgyi, width="0.47222", height="0.13889", group=12, fontsize=6, pos="1077.7,354.65"]; + 687 [label=Pach, width="0.36111", height="0.19444", group=12, fontsize=9, pos="1035.5,354.35"]; + 36 [label=Tardos, width="0.41667", height="0.15278", group=12, fontsize=7, pos="1122.3,354.19"]; + 454 [label=Thiele, width="0.36111", height="0.15278", group=12, fontsize=7, pos="956.8,410.02"]; + 90 [label=Finocchi, width="0.5", height="0.15278", group=22, fontsize=7, pos="584.56,703.73"]; + 427 [label=Pizzonia, width="0.55556", height="0.18056", group=22, fontsize=8, pos="632.76,702.8"]; + 261 [label="Di Battista", width="0.80556", height="0.19444", group=22, fontsize=9, pos="730.22,666.57"]; + 385 [label=Patrignani, width="0.77778", height="0.19444", group=22, fontsize=9, pos="577.66,606.48"]; + 102 [label=Liotta, width="0.47222", height="0.23611", group=22, fontsize=10, pos="657.21,601.24"]; + 276 [label=Thome, width="0.33333", height="0.13889", group=2, fontsize=6, pos="328.35,655.91"]; + 521 [label=Pouchkarev, width="0.61111", height="0.13889", group=2, fontsize=6, pos="285.66,660.24"]; + 294 [label=Mutzel, width="0.52778", height="0.19444", group=2, fontsize=9, pos="463.05,540.27"]; + 279 [label=Hundack, width="0.47222", height="0.13889", group=2, fontsize=6, pos="315.11,638"]; + 206 [label=Ahmed, width="0.38889", height="0.13889", group=10, fontsize=6, pos="390.78,326.1"]; + 659 [label=Forster, width="0.47222", height="0.18056", group=10, fontsize=8, pos="449.75,348.09"]; + 319 [label=Hong, width="0.41667", height="0.19444", group=10, fontsize=9, pos="369.57,355.33"]; + 567 [label=Murray, width="0.44444", height="0.15278", group=10, fontsize=7, pos="470.55,305.58"]; + 352 [label=Dwyer, width="0.47222", height="0.18056", group=10, fontsize=8, pos="434.1,326.59"]; + 648 [label=Taib, width="0.22222", height="0.13889", group=10, fontsize=6, pos="351.33,299.36"]; + 372 [label=Nikolov, width="0.47222", height="0.15278", group=10, fontsize=7, pos="360.79,262.65"]; + 550 [label=Fu, width="0.13889", height="0.13889", group=10, fontsize=6, pos="360.86,335.3"]; + 584 [label=Ho, width="0.19444", height="0.15278", group=10, fontsize=7, pos="405.61,306.07"]; + 698 [label=Koschutzki, width="0.58333", height="0.13889", group=10, fontsize=6, pos="429.21,286.93"]; + 504 [label=Tarassov, width="0.44444", height="0.13889", group=10, fontsize=6, pos="383.56,281.27"]; + 443 [label=McAllister, width="0.55556", height="0.13889", group=22, fontsize=6, pos="923.62,726.81"]; + 579 [label=Bose, width="0.33333", height="0.18056", group=22, fontsize=8, pos="894.64,661.79"]; + 71 [label=Purchase, width="0.52778", height="0.15278", group=10, fontsize=7, pos="410.08,131.11"]; + 155 [label=Cohen, width="0.36111", height="0.15278", group=10, fontsize=7, pos="465.04,216.62"]; + 326 [label=G�rg, width="0.27778", height="0.15278", group=10, fontsize=7, pos="362.41,56.794"]; + 235 [label=Hoggan, width="0.41667", height="0.13889", group=10, fontsize=6, pos="373.78,75.433"]; + 520 [label=Allder, width="0.33333", height="0.13889", group=10, fontsize=6, pos="409.56,91.859"]; + 195 [label=James, width="0.30556", height="0.13889", group=10, fontsize=6, pos="434.61,163.02"]; + 118 [label=Felsner, width="0.5", height="0.18056", group=15, fontsize=8, pos="700.56,810.86"]; + 656 [label=Dangelmayr, width="0.61111", height="0.13889", group=15, fontsize=6, pos="756.02,816.52"]; + 374 [label=Zickfeld, width="0.41667", height="0.13889", group=15, fontsize=6, pos="807.57,831.21"]; + 175 [label=Massow, width="0.41667", height="0.13889", group=15, fontsize=6, pos="655.65,823.15"]; + 573 [label=Bonichon, width="0.5", height="0.13889", group=15, fontsize=6, pos="701.05,834.46"]; + 671 [label=Mosbah, width="0.41667", height="0.13889", group=15, fontsize=6, pos="758.04,846.03"]; + 680 [label=Vargiu, width="0.41667", height="0.15278", group=22, fontsize=7, pos="576.43,627.22"]; + 139 [label="Di Giacomo", width="0.88889", height="0.19444", group=22, fontsize=9, pos="704.19,625.07"]; + 600 [label=Goodrich, width="0.66667", height="0.19444", group=22, fontsize=9, pos="477.52,601.42"]; + 358 [label=Didimo, width="0.55556", height="0.19444", group=22, fontsize=9, pos="672.68,666.3"]; + 315 [label=Meijer, width="0.44444", height="0.18056", group=22, fontsize=8, pos="794.96,623.02"]; + 200 [label=Wood, width="0.47222", height="0.19444", group=22, fontsize=9, pos="876.25,525.58"]; + 380 [label=Rosamond, width="0.55556", height="0.13889", group=22, fontsize=6, pos="794.61,557.03"]; + 667 [label=Garg, width="0.36111", height="0.19444", group=22, fontsize=9, pos="528.46,773.08"]; + 440 [label="van Kreveld", width="0.69444", height="0.15278", group=22, fontsize=7, pos="550.24,563.55"]; + 120 [label=ElGindy, width="0.41667", height="0.13889", group=22, fontsize=6, pos="698.48,598.32"]; + 339 [label=Lubiw, width="0.41667", height="0.18056", group=22, fontsize=8, pos="799.19,601.79"]; + 310 [label=Fellows, width="0.41667", height="0.13889", group=22, fontsize=6, pos="705.43,561.16"]; + 614 [label=Ragde, width="0.33333", height="0.13889", group=22, fontsize=6, pos="729.78,580.4"]; + 601 [label=Kobourov, width="0.75", height="0.19444", group=20, fontsize=9, pos="492.63,487.56"]; + 163 [label=Tassinari, width="0.52778", height="0.15278", group=22, fontsize=7, pos="618.41,645.69"]; + 215 [label=Parise, width="0.33333", height="0.13889", group=22, fontsize=6, pos="536.69,636.65"]; + 613 [label=Binucci, width="0.44444", height="0.15278", group=22, fontsize=7, pos="727.19,707.67"]; + 225 [label=Giordano, width="0.55556", height="0.15278", group=22, fontsize=7, pos="682.67,711.06"]; + 307 [label=Nonato, width="0.41667", height="0.15278", group=22, fontsize=7, pos="744.4,687.31"]; + 269 [label=Everett, width="0.41667", height="0.15278", group=22, fontsize=7, pos="783.52,701.57"]; + 644 [label=Dujmovic, width="0.66667", height="0.18056", group=22, fontsize=8, pos="769.35,523.83"]; + 422 [label=Tamassia, width="0.66667", height="0.19444", group=22, fontsize=9, pos="606.74,584.32"]; + 369 [label=Lazard, width="0.41667", height="0.15278", group=22, fontsize=7, pos="790.17,675.73"]; + 185 [label=Eppstein, width="0.55556", height="0.18056", group=14, fontsize=8, pos="489.83,576.96"]; + 160 [label=Brandenburg, width="0.94444", height="0.19444", group=14, fontsize=9, pos="554.01,454.66"]; + 555 [label=Nishimura, width="0.55556", height="0.13889", group=22, fontsize=6, pos="731.72,543.16"]; + 472 [label=Speckmann, width="0.66667", height="0.15278", group=22, fontsize=7, pos="468.91,720.54"]; + 409 [label=Lenhart, width="0.52778", height="0.18056", group=22, fontsize=8, pos="825.51,647.48"]; + 691 [label=McCartin, width="0.47222", height="0.13889", group=22, fontsize=6, pos="767.58,582.31"]; + 284 [label=Whitesides, width="0.80556", height="0.19444", group=22, fontsize=9, pos="702.37,523.07"]; + 171 [label=Buti, width="0.22222", height="0.13889", group=22, fontsize=6, pos="635.66,679.3"]; + 485 [label=Bridgeman, width="0.75", height="0.18056", group=22, fontsize=8, pos="547.47,662.96"]; + 331 [label=Snoeyink, width="0.47222", height="0.13889", group=22, fontsize=6, pos="901.21,752.93"]; + 706 [label=Carmignani, width="0.66667", height="0.15278", group=22, fontsize=7, pos="648.7,755.91"]; + 395 [label=Barbagallo, width="0.55556", height="0.13889", group=22, fontsize=6, pos="687.33,729.69"]; + 560 [label=Vyskocil, width="0.47222", height="0.13889", group=12, fontsize=6, pos="1156.5,457.82"]; + 668 [label=K�ra, width="0.30556", height="0.15278", group=12, fontsize=7, pos="1160.2,414.8"]; + 16 [label=Tanenbaum, width="0.58333", height="0.13889", group=22, fontsize=6, pos="342.13,675"]; + 466 [label=Scheinerman, width="0.63889", height="0.13889", group=22, fontsize=6, pos="356.79,695.95"]; + 512 [label=Madden, width="0.55556", height="0.18056", group=6, fontsize=8, pos="815.23,265.91"]; + 595 [label=Madden, width="0.47222", height="0.15278", group=6, fontsize=7, pos="803.64,242.37"]; + 688 [label=Powers, width="0.38889", height="0.13889", group=6, fontsize=6, pos="734.03,271.39"]; + 533 [label=Grigorescu, width="0.55556", height="0.13889", group=6, fontsize=6, pos="757.93,253.49"]; + 594 [label=Himsolt, width="0.52778", height="0.18056", group=6, fontsize=8, pos="699.88,316.06"]; + 194 [label=Laison, width="0.33333", height="0.13889", group=7, fontsize=6, pos="946.69,790.16"]; + 397 [label=Safari, width="0.27778", height="0.13889", group=7, fontsize=6, pos="954.66,813.89"]; + 290 [label=Trotter, width="0.33333", height="0.13889", group=7, fontsize=6, pos="923.04,808.07"]; + 222 [label=Evans, width="0.33333", height="0.13889", group=7, fontsize=6, pos="979.45,794.64"]; + 404 [label=Dean, width="0.36111", height="0.18056", group=22, fontsize=8, pos="973.52,753.81"]; + 57 [label=Marriott, width="0.55556", height="0.18056", group=10, fontsize=8, pos="290.58,271.6"]; + 360 [label=Stuckey, width="0.44444", height="0.15278", group=10, fontsize=7, pos="367.96,224"]; + 619 [label=Wybrow, width="0.52778", height="0.15278", group=10, fontsize=7, pos="338.45,243.32"]; + 117 [label=He, width="0.16667", height="0.13889", group=10, fontsize=6, pos="267.7,248.6"]; + 616 [label=Koren, width="0.41667", height="0.18056", group=10, fontsize=8, pos="296.98,357.86"]; + 517 [label=Newton, width="0.47222", height="0.15278", group=13, fontsize=7, pos="709.79,152.31"]; + 603 [label=S�kora, width="0.47222", height="0.18056", group=13, fontsize=8, pos="739.82,174.36"]; + 674 [label=Uzovic, width="0.38889", height="0.13889", group=13, fontsize=6, pos="699.4,189.8"]; + 458 [label=Wagner, width="0.58333", height="0.19444", group=18, fontsize=9, pos="701.84,466.04"]; + 596 [label=Benkert, width="0.47222", height="0.15278", group=18, fontsize=7, pos="901.77,468.12"]; + 677 [label=Kaufmann, width="0.77778", height="0.19444", group=22, fontsize=9, pos="757.31,386.96"]; + 481 [label=Lerner, width="0.33333", height="0.13889", group=18, fontsize=6, pos="754.16,406.99"]; + 510 [label=Baur, width="0.27778", height="0.15278", group=18, fontsize=7, pos="722,444.95"]; + 488 [label=Gaertler, width="0.47222", height="0.15278", group=18, fontsize=7, pos="778.8,427.53"]; + 703 [label=Kenis, width="0.30556", height="0.13889", group=18, fontsize=6, pos="704.9,409.1"]; + 490 [label=G�rke, width="0.30556", height="0.13889", group=18, fontsize=6, pos="838.07,442.01"]; + 316 [label="de Berg", width="0.38889", height="0.13889", group=22, fontsize=6, pos="435.13,790.36"]; + 89 [label=Plaisant, width="0.41667", height="0.13889", group=11, fontsize=6, pos="520.25,1090.7"]; + 103 [label="Sims Parr", width="0.47222", height="0.13889", group=11, fontsize=6, pos="538.05,1109"]; + 31 [label=Bubeck, width="0.41667", height="0.13889", group=6, fontsize=6, pos="869.65,350.27"]; + 192 [label=Rosenstiel, width="0.52778", height="0.13889", group=6, fontsize=6, pos="827.67,336.3"]; + 518 [label=Ritt, width="0.22222", height="0.13889", group=6, fontsize=6, pos="882.66,368.18"]; + 318 [label=F��meier, width="0.63889", height="0.18056", group=6, fontsize=8, pos="786.31,305.16"]; + 111 [label=Steckelbach, width="0.61111", height="0.13889", group=6, fontsize=6, pos="843.34,369.33"]; + 35 [label=Vondr�k, width="0.44444", height="0.13889", group=12, fontsize=6, pos="1275.9,342.94"]; + 631 [label=Nyklov�, width="0.5", height="0.15278", group=12, fontsize=7, pos="1238.2,362.67"]; + 411 [label=Babilon, width="0.47222", height="0.15278", group=12, fontsize=7, pos="1264.4,323.98"]; + 11 [label=Krug, width="0.27778", height="0.13889", group=18, fontsize=6, pos="826.84,411.15"]; + 492 [label=Andalman, width="0.52778", height="0.13889", group=5, fontsize=6, pos="615.8,462.65"]; + 661 [label=Ryall, width="0.33333", height="0.15278", group=22, fontsize=7, pos="654.18,484.19"]; + 208 [label=Dickerson, width="0.52778", height="0.13889", group=14, fontsize=6, pos="427.05,646.91"]; + 364 [label=Meng, width="0.33333", height="0.15278", group=14, fontsize=7, pos="421.29,624.78"]; + 511 [label=Rosi, width="0.25", height="0.13889", group=10, fontsize=6, pos="563.35,164.99"]; + 546 [label="de Mendon�a Neto", width="1.0556", height="0.15278", group=10, fontsize=7, pos="569.49,196.34"]; + 434 [label=Harel, width="0.33333", height="0.15278", group=10, fontsize=7, pos="224.92,351.52"]; + 93 [label=Agarwal, width="0.44444", height="0.13889", group=12, fontsize=6, pos="1107.3,294.13"]; + 445 [label=Sharir, width="0.30556", height="0.13889", group=12, fontsize=6, pos="1081.8,276.21"]; + 292 [label=Kaplan, width="0.36111", height="0.13889", group=20, fontsize=6, pos="46.923,582.61"]; + 382 [label=Vasiliu, width="0.41667", height="0.15278", group=20, fontsize=7, pos="46.214,560"]; + 582 [label=Diguglielmo, width="0.63889", height="0.13889", group=20, fontsize=6, pos="93.132,559.49"]; + 323 [label=Sander, width="0.44444", height="0.18056", group=20, fontsize=8, pos="115.18,532.89"]; + 29 [label=Ellson, width="0.33333", height="0.13889", group=10, fontsize=6, pos="335.92,387.6"]; + 64 [label=Koutsofios, width="0.55556", height="0.13889", group=10, fontsize=6, pos="394.37,404.99"]; + 666 [label=Woodhull, width="0.58333", height="0.15278", group=10, fontsize=7, pos="377.16,381.72"]; + 497 [label=North, width="0.38889", height="0.18056", group=10, fontsize=8, pos="511.55,404.49"]; + 649 [label=Gansner, width="0.55556", height="0.18056", group=10, fontsize=8, pos="417.89,439.09"]; + 325 [label=Ju, width="0.11111", height="0.13889", group=8, fontsize=6, pos="1466.6,253.89"]; + 548 [label=Park, width="0.25", height="0.13889", group=8, fontsize=6, pos="1466.3,230.63"]; + 378 [label=Gudmundsson, width="0.80556", height="0.15278", group=10, fontsize=7, pos="548.08,526.31"]; + 291 [label=Matera, width="0.36111", height="0.13889", group=22, fontsize=6, pos="598.84,766.62"]; + 442 [label=Chrobak, width="0.41667", height="0.13889", group=16, fontsize=6, pos="1174.4,581.98"]; + 531 [label=Nakano, width="0.52778", height="0.18056", group=16, fontsize=8, pos="1131.8,581.65"]; + 540 [label=Joevenazzo, width="0.55556", height="0.13889", group=22, fontsize=6, pos="829.83,752.94"]; + 647 [label=Wilsdon, width="0.44444", height="0.13889", group=22, fontsize=6, pos="870.98,735.03"]; + 199 [label=Wampler, width="0.55556", height="0.15278", group=20, fontsize=7, pos="327.77,454.71"]; + 701 [label=Harding, width="0.41667", height="0.13889", group=20, fontsize=6, pos="441.91,458.42"]; + 373 [label=Erten, width="0.36111", height="0.18056", group=20, fontsize=8, pos="391.48,464.08"]; + 641 [label=Navabi, width="0.41667", height="0.15278", group=20, fontsize=7, pos="320.27,435.38"]; + 642 [label=Forrester, width="0.47222", height="0.13889", group=20, fontsize=6, pos="372.65,443.23"]; + 622 [label=Yee, width="0.25", height="0.15278", group=20, fontsize=7, pos="357.14,474.14"]; + 226 [label=Alzohairi, width="0.47222", height="0.13889", group=3, fontsize=6, pos="1248.7,902.49"]; + 553 [label=Rival, width="0.33333", height="0.15278", group=3, fontsize=7, pos="1241.4,935.94"]; + 15 [label=Such�, width="0.30556", height="0.13889", group=12, fontsize=6, pos="1128.7,415.31"]; + 496 [label=Jel�nkov�, width="0.47222", height="0.13889", group=12, fontsize=6, pos="1156.3,433.42"]; + 187 [label=Pergel, width="0.38889", height="0.15278", group=12, fontsize=7, pos="1117.1,437.92"]; + 121 [label=Kratochv�l, width="0.66667", height="0.18056", group=4, fontsize=8, pos="1090.6,465.19"]; + 153 [label=N�llenburg, width="0.63889", height="0.15278", group=4, fontsize=7, pos="958.13,505.36"]; + 221 [label=Atienza, width="0.41667", height="0.13889", group=4, fontsize=6, pos="964.63,548.67"]; + 280 [label=Garrido, width="0.44444", height="0.15278", group=4, fontsize=7, pos="981.32,528.56"]; + 618 [label=Moreno, width="0.41667", height="0.13889", group=4, fontsize=6, pos="1023,491.38"]; + 282 [label=Hern�ndez, width="0.61111", height="0.15278", group=4, fontsize=7, pos="1020.2,601.07"]; + 558 [label=Grima, width="0.30556", height="0.13889", group=4, fontsize=6, pos="1000.8,509.44"]; + 420 [label=Kroll, width="0.27778", height="0.13889", group=18, fontsize=6, pos="937.8,464.84"]; + 396 [label=Valenzuela, width="0.55556", height="0.13889", group=4, fontsize=6, pos="1049,545.26"]; + 464 [label=Portillo, width="0.38889", height="0.13889", group=4, fontsize=6, pos="1001.7,547.53"]; + 308 [label=Haverkort, width="0.52778", height="0.13889", group=18, fontsize=6, pos="926.6,486.74"]; + 664 [label=Villar, width="0.30556", height="0.13889", group=4, fontsize=6, pos="1028.5,527.35"]; + 453 [label=Cort�s, width="0.33333", height="0.13889", group=4, fontsize=6, pos="1065.7,502.55"]; + 657 [label=Reyes, width="0.33333", height="0.13889", group=4, fontsize=6, pos="1059.8,524.93"]; + 257 [label=Wolff, width="0.41667", height="0.18056", group=4, fontsize=8, pos="977.17,474.95"]; + 431 [label=Gassner, width="0.41667", height="0.13889", group=2, fontsize=6, pos="131.08,577.45"]; + 501 [label=Schaefer, width="0.55556", height="0.18056", group=2, fontsize=8, pos="78.298,623.21"]; + 577 [label=Schulz, width="0.33333", height="0.13889", group=2, fontsize=6, pos="180.33,611.34"]; + 712 [label="Estrella-Balderrama", width="1.1389", height="0.15278", group=2, fontsize=7, pos="192.5,558.37"]; + 527 [label=Eades, width="0.44444", height="0.19444", group=10, fontsize=9, pos="560.04,336.96"]; + 559 [label=Lee, width="0.22222", height="0.13889", group=10, fontsize=6, pos="506.66,302.14"]; + 610 [label=Huang, width="0.38889", height="0.15278", group=10, fontsize=7, pos="569.89,235.72"]; + 704 [label=Lin, width="0.22222", height="0.15278", group=10, fontsize=7, pos="529.1,243.93"]; + 663 [label="do Nascimento", width="0.83333", height="0.15278", group=10, fontsize=7, pos="468.4,368.15"]; + 651 [label=Feng, width="0.30556", height="0.15278", group=10, fontsize=7, pos="579.99,257.37"]; + 653 [label=Huang, width="0.33333", height="0.13889", group=10, fontsize=6, pos="498.11,284.07"]; + 337 [label=Tr�mbach, width="0.5", height="0.13889", group=2, fontsize=6, pos="424.79,387.07"]; + 478 [label=Schreiber, width="0.61111", height="0.18056", group=2, fontsize=8, pos="505.33,425.22"]; + 101 [label="de Castro", width="0.55556", height="0.15278", group=4, fontsize=7, pos="1029,566.47"]; + 124 [label=M�rquez, width="0.52778", height="0.15278", group=4, fontsize=7, pos="1074.3,586.13"]; + 407 [label=Dana, width="0.33333", height="0.15278", group=4, fontsize=7, pos="1082.6,625.59"]; + 73 [label=Duncan, width="0.52778", height="0.18056", group=20, fontsize=8, pos="434.02,517.24"]; + 476 [label=Wenk, width="0.33333", height="0.13889", group=20, fontsize=6, pos="445.73,497.92"]; + 388 [label=Cheng, width="0.33333", height="0.13889", group=20, fontsize=6, pos="443.18,560.98"]; + 340 [label=Bachmaier, width="0.63889", height="0.15278", group=14, fontsize=7, pos="512.39,347.11"]; + 394 [label=Raitner, width="0.5", height="0.18056", group=14, fontsize=8, pos="564.4,378.54"]; + 76 [label=Geyer, width="0.30556", height="0.13889", group=13, fontsize=6, pos="795.62,285.48"]; + 201 [label="Vrt'o", width="0.33333", height="0.18056", group=13, fontsize=8, pos="769.86,216.25"]; + 311 [label=Wilhelm, width="0.44444", height="0.13889", group=20, fontsize=6, pos="94.962,489.61"]; + 690 [label=Alt, width="0.19444", height="0.13889", group=20, fontsize=6, pos="102.52,508.01"]; + 62 [label=Kikusts, width="0.44444", height="0.15278", group=6, fontsize=7, pos="915.57,151.11"]; + 164 [label=Dogrusoz, width="0.63889", height="0.18056", group=6, fontsize=8, pos="899.05,246.49"]; + 508 [label=Rucevskis, width="0.52778", height="0.13889", group=6, fontsize=6, pos="949.34,120.47"]; + 67 [label=Kumar, width="0.36111", height="0.13889", group=20, fontsize=6, pos="142.13,458.44"]; + 469 [label=Abello, width="0.41667", height="0.15278", group=20, fontsize=7, pos="228.66,446.6"]; + 198 [label=Dyck, width="0.27778", height="0.13889", group=22, fontsize=6, pos="880.73,696.78"]; + 389 [label=Giral, width="0.25", height="0.13889", group=6, fontsize=6, pos="960.09,230.62"]; + 452 [label=Civril, width="0.33333", height="0.15278", group=6, fontsize=7, pos="989.32,216.08"]; + 423 [label=Demir, width="0.33333", height="0.13889", group=6, fontsize=6, pos="931.71,200.01"]; + 327 [label=Le, width="0.13889", height="0.13889", group=20, fontsize=6, pos="352.71,423.43"]; + 471 [label=Edachery, width="0.47222", height="0.13889", group=14, fontsize=6, pos="488.17,448.2"]; + 522 [label=Sen, width="0.22222", height="0.15278", group=14, fontsize=7, pos="472.47,401.15"]; + 236 [label=Aloupis, width="0.41667", height="0.13889", group=22, fontsize=6, pos="962.07,630.47"]; + 505 [label=Morin, width="0.36111", height="0.15278", group=22, fontsize=7, pos="927.77,559.96"]; + 361 [label=Maeda, width="0.33333", height="0.13889", group=10, fontsize=6, pos="262.41,313.28"]; + 370 [label=Sugiyama, width="0.55556", height="0.15278", group=10, fontsize=7, pos="253.61,294.52"]; + 168 [label=Garc�a, width="0.33333", height="0.13889", group=4, fontsize=6, pos="1054.7,652.11"]; + 460 [label=Ramos, width="0.41667", height="0.15278", group=4, fontsize=7, pos="1004.8,688.66"]; + 184 [label=Koch, width="0.27778", height="0.13889", group=2, fontsize=6, pos="209.07,521.86"]; + 328 [label=Fialko, width="0.33333", height="0.13889", group=2, fontsize=6, pos="287.17,508.98"]; + 390 [label=Leipert, width="0.47222", height="0.18056", group=2, fontsize=8, pos="320.29,571.44"]; + 303 [label=J�nger, width="0.47222", height="0.19444", group=2, fontsize=9, pos="389.24,532.72"]; + 597 [label=Gutwenger, width="0.72222", height="0.18056", group=2, fontsize=8, pos="268.44,576.27"]; + 288 [label=Alberts, width="0.38889", height="0.13889", group=2, fontsize=6, pos="311.57,551.13"]; + 537 [label=Ambras, width="0.41667", height="0.13889", group=2, fontsize=6, pos="238.02,503.95"]; + 637 [label=Ziegler, width="0.41667", height="0.15278", group=2, fontsize=7, pos="360.83,553.45"]; + 14 [label=Abellanas, width="0.58333", height="0.15278", group=4, fontsize=7, pos="1066.8,704.3"]; + 40 [label=Noy, width="0.27778", height="0.15278", group=4, fontsize=7, pos="1084.6,653.91"]; + 561 [label=Ferran, width="0.33333", height="0.13889", group=4, fontsize=6, pos="1069.9,726.91"]; + 135 [label=Johansen, width="0.52778", height="0.15278", group=22, fontsize=7, pos="887.2,546.32"]; + 433 [label=Shermer, width="0.55556", height="0.18056", group=22, fontsize=8, pos="946.44,579.99"]; + 534 [label=Gartshore, width="0.47222", height="0.13889", group=22, fontsize=6, pos="921.51,617.22"]; + 539 [label=Closson, width="0.41667", height="0.13889", group=22, fontsize=6, pos="928.05,599.3"]; + 348 [label=Siebenhaller, width="0.69444", height="0.15278", group=18, fontsize=7, pos="743.68,345.04"]; + 145 [label=Keskin, width="0.36111", height="0.13889", group=6, fontsize=6, pos="860.9,99.259"]; + 598 [label=Vogelmann, width="0.58333", height="0.13889", group=6, fontsize=6, pos="813.68,111.74"]; + 342 [label=Frick, width="0.36111", height="0.18056", group=6, fontsize=8, pos="812.22,143.97"]; + 178 [label=Boyer, width="0.36111", height="0.15278", group=22, fontsize=7, pos="557.05,752.32"]; + 357 [label=Cortese, width="0.41667", height="0.15278", group=22, fontsize=7, pos="596.89,739.98"]; + 24 [label=Aronov, width="0.41667", height="0.13889", group=12, fontsize=6, pos="1124.4,312.05"]; + 65 [label=Pollack, width="0.44444", height="0.15278", group=12, fontsize=7, pos="1127.4,269.73"]; + 285 [label=Hurtado, width="0.47222", height="0.15278", group=4, fontsize=7, pos="1120.2,647.2"]; + 636 [label=Mateos, width="0.38889", height="0.13889", group=4, fontsize=6, pos="1144.3,611.05"]; + 554 [label=Hernando, width="0.5", height="0.13889", group=4, fontsize=6, pos="1134.7,685.24"]; + 696 [label=Tejel, width="0.27778", height="0.13889", group=4, fontsize=6, pos="1105.9,703.75"]; + 583 [label=Garc�a, width="0.33333", height="0.13889", group=4, fontsize=6, pos="1130.2,665.82"]; + 104 [label=Melan�on, width="0.5", height="0.13889", group=18, fontsize=6, pos="690.89,246.84"]; + 402 [label=Herman, width="0.47222", height="0.15278", group=18, fontsize=7, pos="652.61,290.35"]; + 324 [label=Delest, width="0.33333", height="0.13889", group=18, fontsize=6, pos="639.55,242.21"]; + 673 [label="de Ruiter", width="0.44444", height="0.13889", group=18, fontsize=6, pos="646.5,271.74"]; + 494 [label=Mariani, width="0.41667", height="0.13889", group=22, fontsize=6, pos="513.62,739.15"]; + 484 [label=Frati, width="0.33333", height="0.18056", group=22, fontsize=8, pos="624.02,522.75"]; + 570 [label=Lesh, width="0.27778", height="0.13889", group=22, fontsize=6, pos="575.76,544.94"]; + 154 [label=Roxborough, width="0.63889", height="0.13889", group=14, fontsize=6, pos="259.22,388.82"]; + 96 [label=Tsiaras, width="0.33333", height="0.13889", group=6, fontsize=6, pos="956.59,331.1"]; + 365 [label=Triantafilou, width="0.58333", height="0.13889", group=6, fontsize=6, pos="938.21,310.2"]; + 432 [label=Tollis, width="0.41667", height="0.19444", group=6, fontsize=9, pos="899.93,330.23"]; + 705 [label=Kisielewicz, width="0.61111", height="0.13889", group=3, fontsize=6, pos="1199.5,920.23"]; + 159 [label=Chow, width="0.27778", height="0.13889", group=10, fontsize=6, pos="490.13,197.7"]; + 304 [label=Ruskey, width="0.44444", height="0.15278", group=10, fontsize=7, pos="556.29,216.39"]; + 468 [label=Pohl, width="0.25", height="0.13889", group=10, fontsize=6, pos="351.56,8.7964"]; + 593 [label=Deng, width="0.33333", height="0.15278", group=22, fontsize=7, pos="659.91,440.28"]; + 214 [label=Brandes, width="0.61111", height="0.19444", group=18, fontsize=9, pos="662.94,419.55"]; + 654 [label=Bachl, width="0.33333", height="0.15278", group=14, fontsize=7, pos="554.56,433.92"]; + 581 [label=Pick, width="0.25", height="0.13889", group=14, fontsize=6, pos="524.06,385.15"]; + 362 [label=Rohrer, width="0.36111", height="0.13889", group=14, fontsize=6, pos="609.22,378.37"]; + 569 [label=Cudjoe, width="0.36111", height="0.13889", group=23, fontsize=6, pos="238.69,1158.9"]; + 684 [label=Manning, width="0.47222", height="0.13889", group=23, fontsize=6, pos="304.74,1142.1"]; + 8 [label=Wiese, width="0.36111", height="0.15278", group=18, fontsize=7, pos="774.59,366.22"]; + 334 [label=Eiglsperger, width="0.75", height="0.18056", group=18, fontsize=8, pos="704.87,365.52"]; + 37 [label=Kupke, width="0.38889", height="0.15278", group=2, fontsize=7, pos="305.22,599.15"]; + 43 [label=Miyazawa, width="0.52778", height="0.13889", group=16, fontsize=6, pos="1296.7,631.62"]; + 630 [label=Nishizeki, width="0.61111", height="0.18056", group=16, fontsize=8, pos="1269.7,599.9"]; + 297 [label=Miura, width="0.36111", height="0.15278", group=16, fontsize=7, pos="1244.4,625.99"]; + 5 [label=Hallett, width="0.33333", height="0.13889", group=22, fontsize=6, pos="806.1,574.95"]; + 20 [label=Kitching, width="0.5", height="0.15278", group=22, fontsize=7, pos="747.54,561.78"]; + 18 [label=Suderman, width="0.66667", height="0.18056", group=22, fontsize=8, pos="746.53,603.62"]; + 608 [label=Fanto, width="0.30556", height="0.13889", group=22, fontsize=6, pos="496.07,681.09"]; + 536 [label=Valtr, width="0.30556", height="0.15278", group=12, fontsize=7, pos="1223.3,316.27"]; + 538 [label=Devillers, width="0.47222", height="0.13889", group=22, fontsize=6, pos="763.34,743.09"]; + 679 [label=Pentcheva, width="0.55556", height="0.13889", group=22, fontsize=6, pos="826.88,718.69"]; + 21 [label=Carpendale, width="0.55556", height="0.13889", group=17, fontsize=6, pos="1009.9,652.13"]; + 128 [label=Fracchia, width="0.44444", height="0.13889", group=17, fontsize=6, pos="959.93,662.58"]; + 88 [label=Cowperthwaite, width="0.75", height="0.13889", group=17, fontsize=6, pos="1011.8,634.21"]; + 552 [label="Bocek-Rivele", width="0.77778", height="0.15278", group=6, fontsize=7, pos="1036.4,196.76"]; + 669 [label="Magdon-Ismail", width="0.88889", height="0.15278", group=6, fontsize=7, pos="983.33,176.71"]; + 193 [label=Schank, width="0.36111", height="0.13889", group=18, fontsize=6, pos="857.76,469.72"]; + 398 [label=Cornelsen, width="0.55556", height="0.15278", group=18, fontsize=7, pos="761.13,455.21"]; + 678 [label=Gomez, width="0.33333", height="0.13889", group=22, fontsize=6, pos="1024.8,707.48"]; + 180 [label=Nickle, width="0.33333", height="0.13889", group=22, fontsize=6, pos="849.37,700.73"]; + 244 [label=Six, width="0.22222", height="0.18056", group=6, fontsize=8, pos="859.23,255.34"]; + 588 [label=Papakostas, width="0.72222", height="0.18056", group=6, fontsize=8, pos="956.66,249.94"]; + 449 [label=Kakoulis, width="0.52778", height="0.15278", group=6, fontsize=7, pos="848.43,226.98"]; + 526 [label=Vince, width="0.33333", height="0.13889", group=22, fontsize=6, pos="936.76,680.75"]; + 351 [label=Houle, width="0.41667", height="0.18056", group=10, fontsize=8, pos="625.08,397.92"]; + 240 [label=Jourdan, width="0.44444", height="0.15278", group=3, fontsize=7, pos="1269.5,961.71"]; + 513 [label=Zaguia, width="0.41667", height="0.15278", group=3, fontsize=7, pos="1296.2,937.38"]; + 74 [label=Rappaport, width="0.52778", height="0.13889", group=22, fontsize=6, pos="884.95,642.46"]; + 414 [label=Hirsch, width="0.33333", height="0.13889", group=22, fontsize=6, pos="883.07,622.23"]; + 61 [label=Munoz, width="0.36111", height="0.13889", group=13, fontsize=6, pos="817.82,172.52"]; + 681 [label=Unger, width="0.33333", height="0.13889", group=13, fontsize=6, pos="815.37,192.41"]; + 299 [label=Wenger, width="0.41667", height="0.13889", group=12, fontsize=6, pos="1123.2,335.57"]; + 115 [label=Yildiz, width="0.33333", height="0.13889", group=2, fontsize=6, pos="278.08,637.11"]; + 568 [label=Barth, width="0.33333", height="0.15278", group=2, fontsize=7, pos="299.32,618.47"]; + 377 [label=Gotsman, width="0.44444", height="0.13889", group=10, fontsize=6, pos="211.59,373.03"]; + 602 [label=Sz�kely, width="0.5", height="0.18056", group=13, fontsize=8, pos="767.69,195.11"]; + 652 [label=Shahrokhi, width="0.63889", height="0.18056", group=13, fontsize=8, pos="766.96,153.62"]; + 626 [label=Torok, width="0.30556", height="0.13889", group=13, fontsize=6, pos="662.51,179"]; + 255 [label=Djidjev, width="0.44444", height="0.15278", group=13, fontsize=7, pos="858.64,207.66"]; + 415 [label=Matsuno, width="0.44444", height="0.13889", group=16, fontsize=6, pos="1267.4,663.46"]; + 152 [label=Hashemi, width="0.44444", height="0.13889", group=3, fontsize=6, pos="1198.3,944.99"]; + 189 [label=Diehl, width="0.33333", height="0.15278", group=10, fontsize=7, pos="321.47,6.9436"]; + 300 [label=Birke, width="0.30556", height="0.13889", group=10, fontsize=6, pos="316.76,25.651"]; + 592 [label=Bru�, width="0.27778", height="0.13889", group=6, fontsize=6, pos="770.79,108.19"]; + 347 [label=Ludwig, width="0.41667", height="0.13889", group=6, fontsize=6, pos="765.09,87.245"]; + 91 [label=Chanda, width="0.36111", height="0.13889", group=22, fontsize=6, pos="545.05,822"]; + 341 [label=Marcandalli, width="0.61111", height="0.13889", group=22, fontsize=6, pos="717.41,765.65"]; + 480 [label=Yusufov, width="0.44444", height="0.13889", group=20, fontsize=6, pos="280.4,438.68"]; + 107 [label=Drechsler, width="0.5", height="0.13889", group=9, fontsize=6, pos="815.37,1083.2"]; + 682 [label=G�nther, width="0.44444", height="0.15278", group=9, fontsize=7, pos="863.93,1071.9"]; + 345 [label=Becker, width="0.41667", height="0.15278", group=9, fontsize=7, pos="843.97,1014.6"]; + 624 [label=Eschbach, width="0.47222", height="0.13889", group=9, fontsize=6, pos="802.74,1024.7"]; + 535 [label=Doerr, width="0.30556", height="0.13889", group=6, fontsize=6, pos="995.7,290.39"]; + 623 [label=Papamanthou, width="0.80556", height="0.15278", group=6, fontsize=7, pos="1002.2,311.13"]; + 467 [label=Goaoc, width="0.33333", height="0.13889", group=4, fontsize=6, pos="1025.1,427.94"]; + 503 [label=Okamoto, width="0.44444", height="0.13889", group=4, fontsize=6, pos="1043.8,445.86"]; + 77 [label=Holleis, width="0.41667", height="0.15278", group=14, fontsize=7, pos="522.41,366.51"]; + 174 [label=Goldberg, width="0.47222", height="0.13889", group=21, fontsize=6, pos="1365.1,1133.3"]; + 387 [label=Skiena, width="0.33333", height="0.13889", group=21, fontsize=6, pos="1420.3,1159.2"]; + 216 [label=Shannon, width="0.41667", height="0.13889", group=21, fontsize=6, pos="1360.4,1170.7"]; + 245 [label=Berry, width="0.30556", height="0.13889", group=21, fontsize=6, pos="1402,1126.2"]; + 381 [label=Dean, width="0.27778", height="0.13889", group=21, fontsize=6, pos="1394.5,1186.7"]; + 309 [label=Boitmanis, width="0.52778", height="0.13889", group=18, fontsize=6, pos="650.85,326.87"]; + 435 [label=Shubina, width="0.41667", height="0.13889", group=18, fontsize=6, pos="674.24,502.93"]; + 281 [label=Puppe, width="0.33333", height="0.13889", group=18, fontsize=6, pos="596.36,327.79"]; + 355 [label=Pich, width="0.27778", height="0.15278", group=18, fontsize=7, pos="681.96,345.49"]; + 650 [label=Gelfand, width="0.41667", height="0.13889", group=22, fontsize=6, pos="459.19,667.64"]; + 572 [label=Finkel, width="0.33333", height="0.13889", group=22, fontsize=6, pos="495.46,637.24"]; + 634 [label=Chan, width="0.27778", height="0.13889", group=22, fontsize=6, pos="464.21,629.52"]; + 39 [label=Molitor, width="0.44444", height="0.15278", group=9, fontsize=7, pos="912.41,1020"]; + 238 [label=Sch�nfeld, width="0.55556", height="0.15278", group=9, fontsize=7, pos="869.06,1043.1"]; + 462 [label=Matuszewski, width="0.66667", height="0.13889", group=9, fontsize=6, pos="950.7,1059.2"]; + 383 [label=Dobkin, width="0.38889", height="0.13889", group=10, fontsize=6, pos="344.34,405.51"]; + 12 [label=Proskurowski, width="0.69444", height="0.13889", group=4, fontsize=6, pos="1153.3,499.84"]; + 416 [label=Fiala, width="0.27778", height="0.13889", group=4, fontsize=6, pos="1136.1,519"]; + 689 [label=Dvor�k, width="0.38889", height="0.13889", group=12, fontsize=6, pos="1204,420.44"]; + 52 [label=Taylor, width="0.33333", height="0.13889", group=10, fontsize=6, pos="257.29,356.54"]; + 638 [label=Abelson, width="0.44444", height="0.13889", group=10, fontsize=6, pos="270.68,338.44"]; + 229 [label=Durocher, width="0.47222", height="0.13889", group=20, fontsize=6, pos="87.611,591.41"]; + 260 [label=Brunner, width="0.41667", height="0.13889", group=14, fontsize=6, pos="478.89,263.65"]; + 263 [label=K�nig, width="0.33333", height="0.13889", group=14, fontsize=6, pos="514.63,262.6"]; + 237 [label=Maxov�, width="0.41667", height="0.13889", group=12, fontsize=6, pos="1281.9,305.36"]; + 475 [label=Matousek, width="0.55556", height="0.15278", group=12, fontsize=7, pos="1266.3,286.74"]; + 670 [label=Misue, width="0.36111", height="0.15278", group=10, fontsize=7, pos="215.62,272.45"]; + 68 [label=Hutchinson, width="0.75", height="0.18056", group=22, fontsize=8, pos="926.95,700.27"]; + 612 [label=Bretscher, width="0.5", height="0.13889", group=22, fontsize=6, pos="831.84,539.1"]; + 144 [label=Blair, width="0.27778", height="0.13889", group=5, fontsize=6, pos="565.42,507.49"]; + 700 [label=Kruja, width="0.30556", height="0.13889", group=5, fontsize=6, pos="538.84,488.65"]; + 587 [label=Waters, width="0.36111", height="0.13889", group=5, fontsize=6, pos="528.16,507.67"]; + 338 [label=T�th, width="0.27778", height="0.15278", group=12, fontsize=7, pos="1070.2,300.39"]; + 100 [label=Ghosh, width="0.33333", height="0.13889", group=16, fontsize=6, pos="1332.7,566.23"]; + 134 [label=Rahman, width="0.55556", height="0.18056", group=16, fontsize=8, pos="1263.3,579.15"]; + 25 [label=Xu, width="0.16667", height="0.13889", group=10, fontsize=6, pos="346.7,317.4"]; + 286 [label=Kuchem, width="0.44444", height="0.13889", group=18, fontsize=6, pos="874.07,441.53"]; + 83 [label=Jeong, width="0.27778", height="0.13889", group=8, fontsize=6, pos="1524.7,230.71"]; + 470 [label=Byun, width="0.33333", height="0.15278", group=8, fontsize=7, pos="1524.4,253.82"]; + 305 [label=Pop, width="0.22222", height="0.13889", group=22, fontsize=6, pos="429.09,769.27"]; + 477 [label=Aggarwal, width="0.5", height="0.13889", group=22, fontsize=6, pos="389.21,747.91"]; + 177 [label=Kanne, width="0.33333", height="0.13889", group=2, fontsize=6, pos="406.85,363.1"]; + 615 [label=Pitta, width="0.27778", height="0.15278", group=20, fontsize=7, pos="373.89,493.56"]; + 239 [label=Ruml, width="0.27778", height="0.13889", group=5, fontsize=6, pos="613.92,481.34"]; + 158 [label=Sablowski, width="0.5", height="0.13889", group=6, fontsize=6, pos="870.24,127.01"]; + 22 [label=Pangr�c, width="0.47222", height="0.15278", group=12, fontsize=7, pos="1222.6,343.3"]; + 60 [label=Kr�l, width="0.22222", height="0.13889", group=12, fontsize=6, pos="1207.9,381.34"]; + 42 [label=Vismara, width="0.5", height="0.15278", group=22, fontsize=7, pos="600.77,665"]; + 363 [label=He�, width="0.22222", height="0.13889", group=6, fontsize=6, pos="804.52,354.2"]; + 301 [label=Sun, width="0.19444", height="0.13889", group=22, fontsize=6, pos="402.82,714.68"]; + 6 [label=Trotta, width="0.33333", height="0.15278", group=22, fontsize=7, pos="757.93,626.23"]; + 56 [label=Wismath, width="0.58333", height="0.18056", group=22, fontsize=8, pos="841.04,623.1"]; + 436 [label=Skodinis, width="0.41667", height="0.13889", group=2, fontsize=6, pos="306.15,406.2"]; + 47 [label=Marcus, width="0.38889", height="0.13889", group=12, fontsize=6, pos="1170.6,327.16"]; + 213 [label=Pacheco, width="0.44444", height="0.13889", group=23, fontsize=6, pos="261.22,1194.5"]; + 406 [label=Atallah, width="0.38889", height="0.13889", group=23, fontsize=6, pos="265.63,1126.6"]; + 94 [label=Liao, width="0.27778", height="0.15278", group=19, fontsize=7, pos="1436.3,6.5"]; + 306 [label=Yen, width="0.27778", height="0.18056", group=19, fontsize=8, pos="1401.7,26.404"]; + 629 [label=Lu, width="0.16667", height="0.15278", group=19, fontsize=7, pos="1454.3,27.658"]; + 298 [label=Chen, width="0.30556", height="0.15278", group=19, fontsize=7, pos="1435.4,46.972"]; + 51 [label=Xia, width="0.19444", height="0.13889", group=6, fontsize=6, pos="942.48,280.69"]; + 456 [label=Bekos, width="0.36111", height="0.15278", group=22, fontsize=7, pos="912.86,445.14"]; + 686 [label=Potika, width="0.33333", height="0.13889", group=22, fontsize=6, pos="874.77,407.95"]; + 439 [label=Jel�nek, width="0.33333", height="0.13889", group=12, fontsize=6, pos="1192.3,400.37"]; + 296 [label=Cruz, width="0.27778", height="0.15278", group=1, fontsize=7, pos="525.03,846.99"]; + 660 [label=Lambe, width="0.36111", height="0.13889", group=1, fontsize=6, pos="547.41,879.63"]; + 576 [label=Twarog, width="0.38889", height="0.13889", group=1, fontsize=6, pos="503.39,888.14"]; + 265 [label=Carmel, width="0.36111", height="0.13889", group=10, fontsize=6, pos="232.77,332.71"]; + 384 [label=Nakano, width="0.41667", height="0.13889", group=16, fontsize=6, pos="1315.2,611.66"]; + 386 [label=Telle, width="0.27778", height="0.13889", group=22, fontsize=6, pos="916.86,523.05"]; + 405 [label=Lynn, width="0.27778", height="0.13889", group=22, fontsize=6, pos="888.34,505.54"]; + 125 [label=Merrick, width="0.47222", height="0.15278", group=10, fontsize=7, pos="488.65,466.82"]; + 329 [label=Leonforte, width="0.5", height="0.13889", group=22, fontsize=6, pos="715.94,783.85"]; + 44 [label=P�r, width="0.22222", height="0.13889", group=22, fontsize=6, pos="927.45,541.35"]; + 27 [label=Gethner, width="0.44444", height="0.15278", group=7, fontsize=7, pos="935.8,771.54"]; + 190 [label=Lueker, width="0.36111", height="0.13889", group=22, fontsize=6, pos="413.17,682.42"]; + 95 [label=Grilli, width="0.30556", height="0.15278", group=22, fontsize=7, pos="752.06,645.81"]; + 400 [label=Asano, width="0.33333", height="0.13889", group=16, fontsize=6, pos="1350.1,624.07"]; + 693 [label=Landis, width="0.33333", height="0.13889", group=20, fontsize=6, pos="457.18,419.76"]; + 151 [label=K�pf, width="0.30556", height="0.15278", group=18, fontsize=7, pos="735.55,425.61"]; + 529 [label=Rusu, width="0.30556", height="0.15278", group=22, fontsize=7, pos="498.94,823.06"]; + 557 [label=Pelsmajer, width="0.58333", height="0.15278", group=2, fontsize=7, pos="143.77,647.68"]; + 599 [label=Stefankovic, width="0.66667", height="0.15278", group=2, fontsize=7, pos="25,640.9"]; + 695 [label=Schmidt, width="0.41667", height="0.13889", group=2, fontsize=6, pos="242.02,634.23"]; + 692 [label=Chimani, width="0.47222", height="0.15278", group=2, fontsize=7, pos="243.34,615.62"]; + 566 [label=Lee, width="0.22222", height="0.13889", group=2, fontsize=6, pos="349.45,625.45"]; + 275 [label=Lin, width="0.22222", height="0.15278", group=10, fontsize=7, pos="614.32,260.82"]; + 157 [label=Weiskircher, width="0.69444", height="0.15278", group=2, fontsize=7, pos="164.93,536.86"]; + 170 [label=Buchheim, width="0.66667", height="0.18056", group=2, fontsize=8, pos="275.07,466.73"]; + 227 [label=Percan, width="0.41667", height="0.15278", group=2, fontsize=7, pos="215.5,593.87"]; + 399 [label=Dhandapani, width="0.61111", height="0.13889", group=12, fontsize=6, pos="1173.9,255.3"]; + 133 [label=Basu, width="0.27778", height="0.13889", group=12, fontsize=6, pos="1159.2,237.33"]; + 197 [label=Schlieper, width="0.47222", height="0.13889", group=18, fontsize=6, pos="647.03,358.35"]; + 203 [label=Friedrich, width="0.55556", height="0.15278", group=10, fontsize=7, pos="542.98,316.16"]; + 424 [label=Lillo, width="0.25", height="0.13889", group=22, fontsize=6, pos="676.59,791.35"]; + 138 [label=Stolfi, width="0.27778", height="0.13889", group=10, fontsize=6, pos="495.41,179.68"]; + 274 [label=Lozada, width="0.36111", height="0.13889", group=10, fontsize=6, pos="529.17,160.74"]; + 81 [label=N�her, width="0.33333", height="0.13889", group=2, fontsize=6, pos="358.03,573.86"]; + 108 [label=Kr�ger, width="0.36111", height="0.13889", group=2, fontsize=6, pos="350.03,532.86"]; + 172 [label=Brockenauer, width="0.66667", height="0.13889", group=2, fontsize=6, pos="223.52,539.76"]; + 137 [label=Marshall, width="0.52778", height="0.15278", group=18, fontsize=7, pos="602.94,358.04"]; + 459 [label=Mili, width="0.25", height="0.15278", group=6, fontsize=7, pos="967.18,291.58"]; + 543 [label=Castell�, width="0.47222", height="0.15278", group=6, fontsize=7, pos="974.53,271.76"]; + 346 [label=Alt, width="0.19444", height="0.13889", group=22, fontsize=6, pos="784.94,504.5"]; + 447 [label=Godau, width="0.38889", height="0.15278", group=22, fontsize=7, pos="738.81,497.97"]; + 186 [label=Fox, width="0.25", height="0.15278", group=12, fontsize=7, pos="1090.2,321.66"]; + 110 [label=Biedl, width="0.41667", height="0.19444", group=22, fontsize=9, pos="786.03,484.46"]; + 486 [label=Aziza, width="0.30556", height="0.13889", group=22, fontsize=6, pos="885.71,487.64"]; + 604 [label=Spriggs, width="0.38889", height="0.13889", group=22, fontsize=6, pos="836.9,507.5"]; + 147 [label=Lozito, width="0.33333", height="0.13889", group=23, fontsize=6, pos="301.99,1184.1"]; + 491 [label=Iturriaga, width="0.5", height="0.15278", group=22, fontsize=7, pos="886.31,585.01"]; + 421 [label=Haible, width="0.33333", height="0.13889", group=20, fontsize=6, pos="43.287,531.44"]; + 683 [label=Baudel, width="0.36111", height="0.13889", group=20, fontsize=6, pos="77.454,530.96"]; + 625 [label=Yoshikawa, width="0.55556", height="0.13889", group=16, fontsize=6, pos="1168,629.06"]; + 268 [label=Healy, width="0.41667", height="0.18056", group=10, fontsize=8, pos="328.72,205.66"]; + 350 [label=Harrigan, width="0.44444", height="0.13889", group=10, fontsize=6, pos="334.74,167.97"]; + 483 [label=Lynch, width="0.33333", height="0.13889", group=10, fontsize=6, pos="294.51,182.65"]; + 336 [label=Kuusik, width="0.36111", height="0.13889", group=10, fontsize=6, pos="371.89,185.95"]; + 69 [label=Uno, width="0.27778", height="0.15278", group=4, fontsize=7, pos="1089.8,538.01"]; + 191 [label=Symvonis, width="0.63889", height="0.18056", group=22, fontsize=8, pos="812.97,463"]; + 565 [label=Murtagh, width="0.44444", height="0.13889", group=10, fontsize=6, pos="299.99,317.82"]; + 224 [label=Ferdinand, width="0.52778", height="0.13889", group=20, fontsize=6, pos="65.88,507.66"]; + 321 [label=Przytycka, width="0.52778", height="0.13889", group=4, fontsize=6, pos="1142.5,475.75"]; + 212 [label=Feng, width="0.27778", height="0.13889", group=6, fontsize=6, pos="749.44,235.57"]; + 126 [label=Lin, width="0.22222", height="0.15278", group=19, fontsize=7, pos="1352.5,12.598"]; + 580 [label=Chuang, width="0.38889", height="0.13889", group=19, fontsize=6, pos="1358.6,43.276"]; + 251 [label=Zhu, width="0.22222", height="0.13889", group=22, fontsize=6, pos="687.66,389.38"]; + 209 [label=Shieber, width="0.41667", height="0.15278", group=5, fontsize=7, pos="614.26,500.9"]; + 574 [label=Cappos, width="0.36111", height="0.13889", group=20, fontsize=6, pos="269.93,486.05"]; + 33 [label=Odenthal, width="0.44444", height="0.13889", group=2, fontsize=6, pos="343.65,606.85"]; + 63 [label=Carrington, width="0.55556", height="0.13889", group=10, fontsize=6, pos="378.95,109.78"]; + 7 [label=Han, width="0.25", height="0.15278", group=8, fontsize=7, pos="1495.2,242.12"]; + 80 [label=Demetrescu, width="0.66667", height="0.15278", group=22, fontsize=7, pos="540.18,683"]; + 26 [label=Freivalds, width="0.47222", height="0.13889", group=6, fontsize=6, pos="899.29,169.73"]; + 457 [label=Jaoua, width="0.27778", height="0.13889", group=3, fontsize=6, pos="1336.1,939.88"]; + 72 [label=Efrat, width="0.30556", height="0.15278", group=20, fontsize=7, pos="414.39,484.11"]; + 264 [label=Garvan, width="0.36111", height="0.13889", group=10, fontsize=6, pos="548.13,279.47"]; + 591 [label=Azuma, width="0.36111", height="0.13889", group=16, fontsize=6, pos="1305.2,649.53"]; + 232 [label=Fekete, width="0.41667", height="0.15278", group=10, fontsize=7, pos="657.75,459.6"]; + 10 [label=Marks, width="0.44444", height="0.18056", group=5, fontsize=8, pos="574.44,481.98"]; + 142 [label=Bertolazzi, width="0.52778", height="0.13889", group=22, fontsize=6, pos="707.83,747.6"]; + 207 [label=Fleischer, width="0.47222", height="0.13889", group=18, fontsize=6, pos="629.3,308.97"]; + 167 [label=Naznin, width="0.36111", height="0.13889", group=16, fontsize=6, pos="1323.6,593.64"]; + 123 [label=Quigley, width="0.44444", height="0.15278", group=10, fontsize=7, pos="498.87,324.93"]; + 50 [label=Cobos, width="0.36111", height="0.15278", group=4, fontsize=7, pos="1108.7,605.47"]; + 66 [label=Vernacotola, width="0.61111", height="0.13889", group=22, fontsize=6, pos="623.9,795.24"]; + 658 [label=Kant, width="0.25", height="0.13889", group=6, fontsize=6, pos="791.18,326.03"]; + 54 [label=Eckersley, width="0.5", height="0.13889", group=10, fontsize=6, pos="420.31,233.41"]; + 70 [label=Shin, width="0.22222", height="0.13889", group=4, fontsize=6, pos="1054.4,484.52"]; + 166 [label=Wagner, width="0.41667", height="0.13889", group=4, fontsize=6, pos="985.32,428.67"]; + 141 [label=Sykora, width="0.33333", height="0.13889", group=13, fontsize=6, pos="669.83,159.76"]; + 30 [label=Klau, width="0.30556", height="0.18056", group=2, fontsize=8, pos="317.22,530.59"]; + 38 [label=Ebner, width="0.33333", height="0.15278", group=2, fontsize=7, pos="220.12,485.34"]; + 403 [label=Barouni, width="0.41667", height="0.13889", group=3, fontsize=6, pos="1334,915.25"]; + 252 [label=Webber, width="0.47222", height="0.15278", group=10, fontsize=7, pos="586.62,296.27"]; + 571 [label=Scott, width="0.25", height="0.13889", group=10, fontsize=6, pos="604.34,235.97"]; + 28 [label=Klein, width="0.33333", height="0.15278", group=2, fontsize=7, pos="270.98,596.29"]; + 283 [label=Fowler, width="0.41667", height="0.15278", group=20, fontsize=7, pos="322.93,493.32"]; + 75 [label=Dillencourt, width="0.63889", height="0.15278", group=14, fontsize=7, pos="391.26,605.46"]; + 606 [label=Hirschberg, width="0.55556", height="0.13889", group=14, fontsize=6, pos="373.08,643.45"]; + 589 [label=Egi, width="0.22222", height="0.15278", group=16, fontsize=7, pos="1304.2,574.95"]; + 335 [label=Hachul, width="0.41667", height="0.15278", group=2, fontsize=7, pos="188.58,630.04"]; + 59 [label=Tokuyama, width="0.52778", height="0.13889", group=16, fontsize=6, pos="1203.8,607.37"]; + 332 [label=Watanabe, width="0.5", height="0.13889", group=16, fontsize=6, pos="1216.4,589.45"]; + 267 [label=Kosaraju, width="0.52778", height="0.15278", group=22, fontsize=7, pos="474.81,699.72"]; + 219 [label=Gajer, width="0.30556", height="0.15278", group=20, fontsize=7, pos="448.19,580.13"]; + 13 [label=Mumford, width="0.47222", height="0.13889", group=22, fontsize=6, pos="481.36,804.43"]; + 85 [label=Toussaint, width="0.47222", height="0.13889", group=22, fontsize=6, pos="1033.6,670.03"]; + 278 [label=Carlson, width="0.38889", height="0.13889", group=14, fontsize=6, pos="385.69,663.26"]; + 248 [label=Cetintas, width="0.41667", height="0.13889", group=6, fontsize=6, pos="918.82,218.07"]; + 9 [label=Italiano, width="0.38889", height="0.13889", group=22, fontsize=6, pos="521.27,793.1"]; + 408 [label=Hui, width="0.22222", height="0.13889", group=2, fontsize=6, pos="138.28,666.32"]; + 356 [label=Wagner, width="0.41667", height="0.13889", group=22, fontsize=6, pos="432.79,701.93"]; + 4 [label=Bertault, width="0.55556", height="0.18056", group=6, fontsize=8, pos="691.72,266.16"]; + 143 [label=Miller, width="0.33333", height="0.13889", group=6, fontsize=6, pos="683.05,219.41"]; + 34 [label=Fernau, width="0.36111", height="0.13889", group=22, fontsize=6, pos="748.84,479.28"]; + 393 [label=Genc, width="0.27778", height="0.15278", group=6, fontsize=7, pos="869.5,188.34"]; + 196 [label=Mehldau, width="0.44444", height="0.13889", group=6, fontsize=6, pos="804.82,90.264"]; + 127 -- 131 [weight="1.0", pos="577.73,1087.2 584.66,1085.3 595.01,1082.4 603.29,1080.1"]; + 127 -- 509 [weight="1.0", pos="563.69,1085.8 558.47,1082.7 551.04,1078.5 545.37,1075.2"]; + 127 -- 410 [weight="1.0", pos="577.08,1092.2 583.16,1094.6 592.05,1098.1 599.13,1101"]; + 32 -- 391 [weight="2.0", pos="1035.5,391.22 1060.8,383.88 1125.6,365.04 1151.4,357.55"]; + 32 -- 99 [weight="1.0", pos="1035.5,391.32 1049.4,387.4 1074.2,380.4 1088.9,376.22"]; + 32 -- 272 [weight="1.0", pos="1036.3,393.05 1064.3,390.1 1138.1,382.34 1166.9,379.31"]; + 32 -- 87 [weight="1.0", pos="1033.4,389.73 1039.1,386.6 1046.7,382.46 1052.3,379.34"]; + 32 -- 498 [weight="1.0", pos="1032.1,389.04 1042.3,381.33 1061.4,366.94 1071.4,359.45"]; + 32 -- 687 [weight="9.0", pos="1026.9,387.63 1028.8,380.37 1031.8,368.76 1033.7,361.34"]; + 32 -- 36 [weight="1.0", pos="1034.6,390.37 1052.9,382.82 1093.5,366.09 1112.3,358.32"]; + 32 -- 454 [weight="1.0", pos="1014.8,396.61 1002.4,399.48 981.71,404.27 968.67,407.28"]; + 90 -- 427 [weight="1.0", pos="602.78,703.38 605.98,703.32 609.33,703.25 612.58,703.19"]; + 90 -- 261 [weight="1.0", pos="598.52,700.17 624.44,693.55 680.07,679.36 710.07,671.71"]; + 90 -- 385 [weight="1.0", pos="584.17,698.22 582.99,681.67 579.49,632.35 578.17,613.71"]; + 90 -- 102 [weight="1.0", pos="588.46,698.22 600.49,681.26 637,629.75 651.34,609.52"]; + 276 -- 521 [weight="1.0", pos="316.69,657.09 313.33,657.43 309.57,657.82 305.85,658.19"]; + 276 -- 294 [weight="1.0", pos="333.8,651.24 354.87,633.15 431.03,567.76 455.46,546.79"]; + 276 -- 279 [weight="1.0", pos="324.74,651.02 322.9,648.53 320.67,645.52 318.82,643.02"]; + 206 -- 659 [weight="1.0", pos="400.52,329.73 410.59,333.49 426.36,339.37 437.33,343.46"]; + 206 -- 319 [weight="1.0", pos="387.08,331.2 383.57,336.04 378.27,343.35 374.41,348.65"]; + 206 -- 567 [weight="1.0", pos="402.21,323.16 416.85,319.39 442.18,312.88 457.55,308.92"]; + 206 -- 352 [weight="1.0", pos="404.97,326.26 408.81,326.31 413.02,326.35 417.01,326.4"]; + 206 -- 648 [weight="1.0", pos="383.91,321.45 376.23,316.24 363.94,307.9 356.85,303.1"]; + 206 -- 372 [weight="1.0", pos="388.43,321.12 382.9,309.44 369.14,280.32 363.38,268.14"]; + 206 -- 550 [weight="1.0", pos="379.98,329.43 375.16,330.91 369.71,332.58 365.87,333.76"]; + 206 -- 584 [weight="1.0", pos="394.52,321.05 396.79,317.99 399.66,314.1 401.92,311.06"]; + 206 -- 698 [weight="1.0", pos="395.49,321.3 402.79,313.86 416.75,299.63 424.22,292.02"]; + 206 -- 504 [weight="1.0", pos="389.95,320.96 388.56,312.31 385.76,294.96 384.38,286.35"]; + 443 -- 579 [weight="1.0", pos="921.34,721.71 916.11,709.97 903.24,681.09 897.49,668.19"]; + 71 -- 155 [weight="1.0", pos="413.69,136.72 423.62,152.18 451.31,195.26 461.35,210.88"]; + 71 -- 326 [weight="1.0", pos="406.34,125.28 397.3,111.18 374.36,75.427 365.74,61.998"]; + 71 -- 235 [weight="1.0", pos="406.47,125.57 399.44,114.79 384.01,91.126 377.17,80.627"]; + 71 -- 520 [weight="1.0", pos="410.01,125.32 409.9,117.64 409.73,104.22 409.63,96.925"]; + 71 -- 195 [weight="1.0", pos="414.35,136.67 418.97,142.67 426.25,152.15 430.71,157.95"]; + 118 -- 656 [weight="1.0", pos="718.11,812.65 723.69,813.22 729.92,813.86 735.68,814.44"]; + 118 -- 374 [weight="1.0", pos="716.81,813.95 738.09,818 774.99,825.01 794.54,828.73"]; + 118 -- 175 [weight="1.0", pos="685.85,814.89 679.81,816.54 672.93,818.42 667.25,819.97"]; + 118 -- 573 [weight="1.0", pos="700.7,817.56 700.77,821.27 700.87,825.8 700.94,829.24"]; + 118 -- 671 [weight="1.0", pos="709.79,816.51 721.22,823.5 740.43,835.26 750.83,841.62"]; + 102 -- 118 [weight="1.0", pos="658.96,609.72 666.09,644.19 692.82,773.44 699.19,804.24"]; + 102 -- 680 [weight="2.0", pos="642.77,605.89 627.16,610.91 602.58,618.81 588.13,623.46"]; + 102 -- 139 [weight="14.0", pos="669.55,607.5 676.3,610.92 684.63,615.15 691.44,618.6"]; + 102 -- 600 [weight="1.0", pos="639.98,601.26 607.83,601.29 538.63,601.36 501.78,601.4"]; + 102 -- 358 [weight="12.0", pos="659.23,609.75 662.31,622.7 668.12,647.13 670.99,659.19"]; + 102 -- 427 [weight="1.0", pos="655.13,609.9 650.35,629.76 638.67,678.24 634.38,696.07"]; + 102 -- 315 [weight="6.0", pos="673.55,603.83 700.49,608.08 753.83,616.52 779.9,620.64"]; + 102 -- 200 [weight="1.0", pos="671.25,596.39 711.09,582.63 824.52,543.45 863.17,530.1"]; + 102 -- 380 [weight="1.0", pos="671.66,596.59 698.66,587.9 756.39,569.33 781.97,561.1"]; + 102 -- 667 [weight="2.0", pos="651,609.53 628.8,639.16 553.61,739.52 533.46,766.4"]; + 102 -- 440 [weight="1.0", pos="643.23,596.31 622.5,589.01 583.89,575.41 563.55,568.25"]; + 102 -- 120 [weight="1.0", pos="674.47,600.02 677.57,599.8 680.76,599.58 683.77,599.36"]; + 102 -- 339 [weight="2.0", pos="674.34,601.31 702.36,601.42 757.56,601.63 784.16,601.73"]; + 102 -- 310 [weight="1.0", pos="666.05,593.89 675.84,585.75 691.33,572.88 699.67,565.95"]; + 102 -- 614 [weight="1.0", pos="672.25,596.92 686.53,592.82 707.59,586.77 719.88,583.24"]; + 102 -- 601 [weight="1.0", pos="646.92,594.13 617.22,573.62 531.66,514.52 502.5,494.38"]; + 102 -- 163 [weight="2.0", pos="650.09,609.39 642.31,618.32 630.03,632.38 623.27,640.12"]; + 102 -- 215 [weight="1.0", pos="642.43,605.58 617.54,612.9 567.9,627.48 546.68,633.71"]; + 102 -- 613 [weight="2.0", pos="662.7,609.59 676.36,630.37 711.62,684 723.34,701.82"]; + 102 -- 225 [weight="1.0", pos="659.21,609.86 664.23,631.5 677.25,687.68 681.39,705.53"]; + 102 -- 385 [weight="2.0", pos="640.34,602.35 630.03,603.03 616.61,603.91 604.83,604.69"]; + 102 -- 579 [weight="1.0", pos="672.42,605.12 716.74,616.42 845.03,649.14 883.56,658.97"]; + 102 -- 307 [weight="2.0", pos="664.95,608.88 682.28,625.99 723.9,667.07 738.89,681.87"]; + 102 -- 269 [weight="1.0", pos="666.29,608.46 690.5,627.69 756.16,679.83 777.04,696.42"]; + 102 -- 294 [weight="1.0", pos="642.62,596.66 606.55,585.33 513.52,556.12 477.55,544.83"]; + 102 -- 644 [weight="1.0", pos="667.56,594.1 689.36,579.05 739.68,544.32 760.29,530.09"]; + 102 -- 422 [weight="2.0", pos="642.88,596.44 636.59,594.33 629.17,591.84 622.7,589.67"]; + 102 -- 261 [weight="9.0", pos="665.59,608.74 679.82,621.47 708.53,647.16 722.39,659.56"]; + 102 -- 369 [weight="1.0", pos="668.55,607.59 694.67,622.23 758.64,658.06 781.7,670.99"]; + 102 -- 185 [weight="1.0", pos="640.86,598.87 609.52,594.32 541.19,584.41 508.28,579.63"]; + 102 -- 160 [weight="1.0", pos="651.37,592.94 632.94,566.78 576.3,486.32 559.04,461.81"]; + 102 -- 555 [weight="1.0", pos="666.65,593.89 682.15,581.8 712.6,558.06 725.6,547.93"]; + 102 -- 472 [weight="1.0", pos="646.55,608 612.63,629.49 507.66,695.99 477.25,715.26"]; + 102 -- 409 [weight="6.0", pos="672.15,605.34 704,614.1 778.32,634.51 810.37,643.32"]; + 102 -- 691 [weight="1.0", pos="673.5,598.45 694.84,594.79 731.99,588.41 752.65,584.87"]; + 102 -- 284 [weight="4.0", pos="662.04,592.88 670.96,577.44 689.86,544.72 698.23,530.23"]; + 102 -- 171 [weight="1.0", pos="654.82,609.89 650.31,626.25 640.65,661.22 637.05,674.26"]; + 102 -- 485 [weight="1.0", pos="645.88,607.61 624.63,619.56 579.07,645.18 558.25,656.89"]; + 331 -- 443 [weight="1.0", pos="905.53,747.9 909.5,743.27 915.35,736.45 919.31,731.83"]; + 331 -- 579 [weight="1.0", pos="900.84,747.77 899.72,732.18 896.35,685.59 895.11,668.32"]; + 358 -- 613 [weight="3.0", pos="681.19,672.77 691.97,680.95 710.33,694.88 720.28,702.43"]; + 358 -- 440 [weight="1.0", pos="664.64,659.56 641.87,640.45 577.22,586.2 556.62,568.92"]; + 358 -- 385 [weight="3.0", pos="662.86,660.13 644.85,648.78 606.64,624.72 588.13,613.07"]; + 358 -- 706 [weight="2.0", pos="670.79,673.33 666.2,690.5 654.48,734.28 650.25,750.1"]; + 358 -- 427 [weight="5.0", pos="665.35,673 657.97,679.75 646.67,690.08 639.5,696.63"]; + 358 -- 472 [weight="1.0", pos="656.69,670.56 618.6,680.7 522.84,706.19 484.83,716.31"]; + 358 -- 395 [weight="1.0", pos="674.36,673.57 677.37,686.58 683.59,713.51 686.17,724.67"]; + 358 -- 485 [weight="1.0", pos="652.56,665.77 631.41,665.2 598,664.31 574.54,663.68"]; + 358 -- 422 [weight="1.0", pos="667.05,659.31 654.6,643.82 624.79,606.76 612.35,591.29"]; + 560 -- 668 [weight="1.0", pos="1157,452.54 1157.7,444.38 1159,428.74 1159.7,420.39"]; + 16 -- 466 [weight="1.0", pos="345.83,680.28 348.07,683.49 350.91,687.55 353.14,690.74"]; + 16 -- 600 [weight="1.0", pos="350.6,670.39 373.99,657.68 439.49,622.09 466.09,607.64"]; + 512 -- 595 [weight="2.0", pos="812.06,259.48 810.29,255.88 808.11,251.45 806.41,248"]; + 512 -- 688 [weight="1.0", pos="795.57,267.23 780.83,268.23 761.03,269.57 747.91,270.45"]; + 512 -- 533 [weight="1.0", pos="798.35,262.25 790.42,260.53 781.05,258.5 773.32,256.82"]; + 512 -- 594 [weight="1.0", pos="802.88,271.27 780.56,280.98 733.78,301.32 711.79,310.88"]; + 194 -- 397 [weight="1.0", pos="948.38,795.19 949.73,799.22 951.62,804.84 952.97,808.87"]; + 194 -- 290 [weight="1.0", pos="940.72,794.68 937.11,797.41 932.52,800.89 928.92,803.61"]; + 194 -- 222 [weight="1.0", pos="958.15,791.73 961.25,792.15 964.61,792.61 967.72,793.03"]; + 194 -- 404 [weight="1.0", pos="950.42,785.11 955.26,778.55 963.7,767.12 968.93,760.04"]; + 57 -- 360 [weight="3.0", pos="300.07,265.76 315.4,256.33 345.38,237.89 359.81,229.01"]; + 57 -- 352 [weight="5.0", pos="303.57,276.58 331.17,287.15 395.32,311.73 422.06,321.98"]; + 57 -- 619 [weight="2.0", pos="300.27,265.88 309.01,260.71 321.74,253.19 330.06,248.28"]; + 57 -- 117 [weight="1.0", pos="284.33,265.31 280.31,261.27 275.2,256.14 271.71,252.64"]; + 57 -- 616 [weight="1.0", pos="291.08,278.37 292.28,294.57 295.31,335.43 296.49,351.36"]; + 517 -- 603 [weight="1.0", pos="716.75,157.42 721.19,160.68 726.96,164.92 731.62,168.33"]; + 517 -- 674 [weight="1.0", pos="708.25,157.84 706.27,165.01 702.83,177.43 700.87,184.48"]; + 458 -- 596 [weight="1.0", pos="722.86,466.26 762.66,466.67 848.3,467.56 884.77,467.94"]; + 458 -- 677 [weight="1.0", pos="706.76,459.02 717.26,444.05 741.76,409.13 752.32,394.08"]; + 458 -- 481 [weight="1.0", pos="707.84,459.27 718.47,447.27 740.37,422.56 749.75,411.98"]; + 458 -- 510 [weight="2.0", pos="708.22,459.36 711.17,456.27 714.62,452.67 717.32,449.84"]; + 458 -- 488 [weight="4.0", pos="713.53,460.19 728.83,452.53 755.37,439.26 769.42,432.22"]; + 458 -- 703 [weight="1.0", pos="702.24,458.59 702.87,446.9 704.07,424.51 704.61,414.35"]; + 458 -- 490 [weight="1.0", pos="720.5,462.75 749.5,457.63 804.45,447.94 827.49,443.87"]; + 316 -- 472 [weight="1.0", pos="437.56,785.34 443.67,772.71 459.66,739.67 466.13,726.29"]; + 454 -- 687 [weight="1.0", pos="963.51,405.28 977.94,395.07 1011.9,371.09 1027.5,360.07"]; + 163 -- 667 [weight="1.0", pos="614.54,651.16 600.09,671.64 549.2,743.71 533.27,766.27"]; + 163 -- 215 [weight="1.0", pos="600.27,643.68 584.47,641.93 562.03,639.45 548.46,637.95"]; + 163 -- 261 [weight="2.0", pos="634.43,648.68 653.51,652.24 685.53,658.22 707.25,662.28"]; + 163 -- 680 [weight="2.0", pos="607.82,641.03 601.21,638.12 592.76,634.41 586.3,631.56"]; + 163 -- 171 [weight="1.0", pos="621.26,651.24 624.55,657.65 629.92,668.11 633.09,674.29"]; + 163 -- 422 [weight="1.0", pos="617.33,640.02 615.21,628.87 610.49,604.06 608.14,591.66"]; + 395 -- 427 [weight="1.0", pos="677.83,725 668.42,720.37 654.02,713.27 644.04,708.36"]; + 395 -- 706 [weight="1.0", pos="680.25,734.5 673.54,739.05 663.48,745.87 656.54,750.59"]; + 89 -- 103 [weight="1.0", pos="525.12,1095.7 527.67,1098.3 530.78,1101.5 533.32,1104.1"]; + 89 -- 127 [weight="1.0", pos="535.45,1090.3 544.15,1090.1 554.7,1089.8 561.85,1089.6"]; + 89 -- 509 [weight="1.0", pos="524.52,1085.6 527.11,1082.5 530.4,1078.6 532.97,1075.5"]; + 584 -- 659 [weight="1.0", pos="410.33,310.57 418.25,318.11 434.21,333.3 443.2,341.86"]; + 584 -- 648 [weight="1.0", pos="398.51,305.2 388.4,303.94 369.89,301.65 359.31,300.34"]; + 584 -- 698 [weight="1.0", pos="410.61,302.01 414.29,299.03 419.31,294.96 423.21,291.8"]; + 31 -- 677 [weight="1.0", pos="858.88,353.79 839.33,360.17 797.86,373.72 774.4,381.38"]; + 31 -- 192 [weight="1.0", pos="858.62,346.6 852.79,344.66 845.62,342.27 839.66,340.29"]; + 31 -- 518 [weight="1.0", pos="873.2,355.16 875.07,357.73 877.35,360.87 879.2,363.41"]; + 31 -- 318 [weight="1.0", pos="861.66,345.94 846.58,337.78 813.95,320.12 797,310.95"]; + 31 -- 111 [weight="1.0", pos="863.28,354.88 859.26,357.79 854.09,361.54 850.01,364.49"]; + 35 -- 631 [weight="1.0", pos="1267.5,347.31 1261.5,350.45 1253.4,354.66 1247.3,357.89"]; + 35 -- 411 [weight="1.0", pos="1272.7,337.76 1271.2,335.21 1269.3,332.15 1267.8,329.55"]; + 11 -- 458 [weight="1.0", pos="819.03,414.58 798.07,423.78 740.51,449.06 714.68,460.4"]; + 492 -- 661 [weight="1.0", pos="623.94,467.22 630.63,470.97 640.03,476.25 646.57,479.92"]; + 208 -- 600 [weight="1.0", pos="432.45,642.04 441.51,633.88 459.76,617.43 470.04,608.17"]; + 208 -- 364 [weight="1.0", pos="425.72,641.77 424.84,638.41 423.69,633.99 422.78,630.51"]; + 511 -- 546 [weight="1.0", pos="564.37,170.17 565.48,175.87 567.27,185.01 568.41,190.84"]; + 434 -- 616 [weight="4.0", pos="236.82,352.57 249.21,353.66 268.65,355.37 282.06,356.55"]; + 93 -- 445 [weight="1.0", pos="1100.6,289.42 1096.7,286.68 1091.8,283.25 1088,280.58"]; + 93 -- 687 [weight="1.0", pos="1101.7,298.85 1088.7,309.72 1056.8,336.48 1042.6,348.42"]; + 292 -- 382 [weight="1.0", pos="46.759,577.36 46.647,573.82 46.5,569.14 46.387,565.53"]; + 292 -- 582 [weight="1.0", pos="54.972,578.58 63.04,574.54 75.445,568.34 83.906,564.11"]; + 292 -- 323 [weight="1.0", pos="53.222,578.02 65.632,568.98 93.23,548.88 107.02,538.84"]; + 29 -- 64 [weight="1.0", pos="345.84,390.55 355.61,393.46 370.59,397.92 381.33,401.11"]; + 29 -- 666 [weight="1.0", pos="347.63,385.93 351.06,385.44 354.9,384.89 358.64,384.36"]; + 29 -- 497 [weight="1.0", pos="347.72,388.73 379.02,391.74 464.09,399.92 497.66,403.15"]; + 29 -- 649 [weight="1.0", pos="342.63,391.81 357.24,400.99 391.94,422.79 408.63,433.27"]; + 325 -- 548 [weight="1.0", pos="1466.5,248.5 1466.5,244.63 1466.4,239.46 1466.4,235.68"]; + 378 -- 440 [weight="1.0", pos="548.41,532.13 548.82,539.16 549.5,550.93 549.91,557.9"]; + 291 -- 427 [weight="1.0", pos="601.5,761.61 607.56,750.21 622.39,722.31 629.22,709.47"]; + 291 -- 706 [weight="1.0", pos="610.4,764.14 616.5,762.83 624.11,761.19 630.94,759.72"]; + 291 -- 358 [weight="1.0", pos="602.4,761.78 614.44,745.42 653.66,692.14 667.66,673.12"]; + 442 -- 531 [weight="1.0", pos="1159,581.86 1156.4,581.84 1153.6,581.82 1150.8,581.8"]; + 540 -- 647 [weight="1.0", pos="839.79,748.61 846.36,745.75 854.91,742.03 861.4,739.2"]; + 199 -- 701 [weight="1.0", pos="347.65,455.36 370.26,456.09 406.67,457.27 426.98,457.93"]; + 199 -- 373 [weight="1.0", pos="345.51,457.32 356.12,458.88 369.34,460.82 378.88,462.23"]; + 199 -- 641 [weight="1.0", pos="325.56,449.02 324.55,446.43 323.37,443.39 322.38,440.83"]; + 199 -- 642 [weight="1.0", pos="342.46,450.95 347.99,449.54 354.22,447.94 359.59,446.57"]; + 199 -- 622 [weight="2.0", pos="335.48,459.81 340.24,462.96 346.27,466.95 350.76,469.92"]; + 199 -- 601 [weight="2.0", pos="344.18,457.98 374.15,463.95 437.73,476.62 471.12,483.27"]; + 226 -- 553 [weight="1.0", pos="1247.5,907.72 1246.2,913.89 1244,924.12 1242.6,930.42"]; + 649 -- 666 [weight="1.0", pos="413.22,432.51 405.11,421.09 388.59,397.81 381.06,387.2"]; + 15 -- 560 [weight="1.0", pos="1131.9,420.18 1137.2,428.3 1147.8,444.49 1153.2,452.74"]; + 15 -- 496 [weight="1.0", pos="1135.1,419.51 1139.3,422.27 1144.8,425.88 1149.1,428.73"]; + 15 -- 187 [weight="1.0", pos="1126,420.55 1124.2,424.1 1121.8,428.78 1120,432.39"]; + 15 -- 121 [weight="1.0", pos="1124.9,420.27 1118,429.34 1103.3,448.58 1095.6,458.69"]; + 15 -- 668 [weight="1.0", pos="1139.7,415.13 1142.7,415.08 1145.9,415.03 1148.9,414.98"]; + 153 -- 221 [weight="1.0", pos="958.98,511.02 960.25,519.46 962.62,535.22 963.85,543.41"]; + 153 -- 280 [weight="1.0", pos="963.51,510.74 967.26,514.49 972.23,519.47 975.97,523.21"]; + 153 -- 618 [weight="1.0", pos="975.52,501.61 986.48,499.25 1000.4,496.25 1010.3,494.11"]; + 153 -- 282 [weight="1.0", pos="961.83,511.06 972.89,528.13 1005.6,578.65 1016.6,595.52"]; + 153 -- 558 [weight="1.0", pos="979.96,507.45 983.4,507.78 986.83,508.1 989.88,508.39"]; + 153 -- 420 [weight="1.0", pos="955.31,499.73 951.33,491.81 944.16,477.52 940.35,469.91"]; + 153 -- 396 [weight="1.0", pos="969.27,510.25 987.09,518.08 1021.7,533.29 1038.9,540.82"]; + 153 -- 464 [weight="1.0", pos="963.83,510.88 972.4,519.18 988.5,534.77 996.66,542.67"]; + 153 -- 308 [weight="1.0", pos="949.18,500.08 944.52,497.32 938.87,493.99 934.39,491.34"]; + 153 -- 664 [weight="1.0", pos="972.37,509.81 986.34,514.18 1007.2,520.71 1019.2,524.45"]; + 153 -- 596 [weight="2.0", pos="950.3,500.18 939.53,493.07 920.27,480.35 909.54,473.25"]; + 153 -- 453 [weight="1.0", pos="981.22,504.76 1003.4,504.18 1036.2,503.33 1053.7,502.87"]; + 153 -- 657 [weight="1.0", pos="976.32,508.86 997.34,512.91 1031.3,519.44 1048.7,522.79"]; + 153 -- 257 [weight="3.0", pos="961.63,499.78 964.89,494.57 969.76,486.79 973.17,481.33"]; + 431 -- 501 [weight="1.0", pos="125.43,582.35 115.75,590.74 96.011,607.85 85.409,617.04"]; + 431 -- 577 [weight="1.0", pos="137.92,582.16 147.44,588.71 164.54,600.47 173.85,606.88"]; + 431 -- 712 [weight="1.0", pos="142.06,574.04 151.44,571.13 165.09,566.89 175.82,563.55"]; + 527 -- 559 [weight="1.0", pos="550.74,330.89 539.63,323.65 521.39,311.75 512.25,305.79"]; + 527 -- 567 [weight="1.0", pos="547.22,332.46 529.72,326.33 498.64,315.43 481.93,309.57"]; + 527 -- 610 [weight="2.0", pos="560.75,329.68 562.62,310.45 567.66,258.64 569.33,241.39"]; + 527 -- 704 [weight="2.0", pos="557.72,329.96 551.82,312.22 536.34,265.69 530.97,249.55"]; + 527 -- 546 [weight="1.0", pos="560.53,329.79 562.18,305.17 567.61,224.31 569.11,202.06"]; + 527 -- 663 [weight="1.0", pos="547.3,341.29 530.38,347.05 500.58,357.2 482.84,363.23"]; + 527 -- 651 [weight="3.0", pos="561.81,329.89 565.71,314.37 574.94,277.54 578.53,263.21"]; + 527 -- 653 [weight="1.0", pos="552.45,330.47 539.79,319.66 514.66,298.21 503.58,288.74"]; + 382 -- 582 [weight="1.0", pos="61.317,559.84 64.103,559.81 67.07,559.77 70.03,559.74"]; + 337 -- 478 [weight="1.0", pos="434.03,391.45 448.74,398.42 477.47,412.02 493.6,419.67"]; + 409 -- 579 [weight="1.0", pos="841.89,650.87 854.67,653.52 872.08,657.12 883.34,659.45"]; + 648 -- 659 [weight="1.0", pos="357.79,302.55 374.38,310.77 418.64,332.68 439.1,342.81"]; + 648 -- 698 [weight="1.0", pos="359.08,298.12 371.24,296.18 395.11,292.37 411.59,289.74"]; + 101 -- 124 [weight="2.0", pos="1039.9,571.23 1047.2,574.37 1056.6,578.45 1063.8,581.55"]; + 101 -- 221 [weight="1.0", pos="1014.7,562.52 1003.1,559.32 987.07,554.88 976.29,551.89"]; + 101 -- 280 [weight="1.0", pos="1022.3,561.2 1013.2,553.95 996.96,541.01 987.88,533.79"]; + 101 -- 618 [weight="1.0", pos="1028.5,560.57 1027.4,546.33 1024.5,510.2 1023.4,496.63"]; + 101 -- 282 [weight="1.0", pos="1027.5,572.18 1025.9,578.63 1023.2,589.06 1021.6,595.46"]; + 101 -- 558 [weight="1.0", pos="1026.1,560.79 1020.6,549.63 1008.5,525.01 1003.3,514.43"]; + 101 -- 396 [weight="1.0", pos="1034,561.12 1037.2,557.78 1041.2,553.51 1044.3,550.25"]; + 101 -- 153 [weight="1.0", pos="1022.4,560.83 1008.9,549.13 977.82,522.35 964.45,510.81"]; + 101 -- 407 [weight="1.0", pos="1033.9,571.92 1044.2,583.24 1067.7,609.16 1077.8,620.32"]; + 101 -- 464 [weight="1.0", pos="1021.5,561.29 1017.3,558.4 1012.2,554.84 1008.2,552.06"]; + 101 -- 664 [weight="1.0", pos="1028.9,560.69 1028.8,553.04 1028.6,539.66 1028.5,532.4"]; + 101 -- 453 [weight="1.0", pos="1032.1,561.02 1039.1,548.82 1056,519.47 1062.8,507.63"]; + 101 -- 657 [weight="1.0", pos="1033,561.04 1039.1,552.86 1050.5,537.5 1056.3,529.72"]; + 101 -- 257 [weight="1.0", pos="1025.9,561.02 1016.9,545.08 990.58,498.64 980.85,481.45"]; + 73 -- 476 [weight="1.0", pos="437.99,510.7 439.47,508.25 441.14,505.5 442.55,503.18"]; + 73 -- 323 [weight="2.0", pos="415.03,518.18 357.39,521 185.07,529.46 131.36,532.09"]; + 73 -- 600 [weight="3.0", pos="437.44,523.85 445.45,539.35 465.41,577.98 473.76,594.14"]; + 73 -- 160 [weight="1.0", pos="444.67,511.69 466.81,500.14 517.71,473.59 541.42,461.22"]; + 73 -- 388 [weight="1.0", pos="435.45,524.08 437.31,532.92 440.49,548.11 442.13,555.96"]; + 73 -- 601 [weight="8.0", pos="444.77,511.8 454.82,506.71 469.81,499.12 480.33,493.79"]; + 73 -- 649 [weight="1.0", pos="432.65,510.58 429.6,495.82 422.31,460.49 419.26,445.74"]; + 340 -- 659 [weight="2.0", pos="489.42,347.47 482.02,347.58 473.94,347.71 467.02,347.82"]; + 340 -- 394 [weight="1.0", pos="520.98,352.3 530.33,357.95 545.23,366.95 554.92,372.81"]; + 76 -- 677 [weight="1.0", pos="793.67,290.65 787.32,307.45 767.28,360.53 759.99,379.84"]; + 76 -- 201 [weight="1.0", pos="793.77,280.5 789.2,268.22 777.4,236.5 772.28,222.76"]; + 311 -- 690 [weight="1.0", pos="97.028,494.64 98.112,497.28 99.435,500.5 100.51,503.12"]; + 311 -- 323 [weight="1.0", pos="97.281,494.57 100.93,502.39 108.02,517.57 112.1,526.29"]; + 62 -- 164 [weight="1.0", pos="914.58,156.79 911.69,173.48 903.24,222.26 900.18,239.97"]; + 62 -- 508 [weight="1.0", pos="921.45,145.77 927.8,140.01 937.82,130.92 943.97,125.34"]; + 67 -- 469 [weight="1.0", pos="154.53,456.74 170.42,454.57 197.89,450.81 214.56,448.53"]; + 198 -- 540 [weight="1.0", pos="876.39,701.57 866.87,712.07 844.22,737.06 834.45,747.85"]; + 198 -- 647 [weight="1.0", pos="879.45,701.78 877.6,709.07 874.16,722.55 872.29,729.91"]; + 139 -- 472 [weight="1.0", pos="688.75,631.33 644.89,649.13 520.19,699.73 480.91,715.67"]; + 139 -- 315 [weight="5.0", pos="736.19,624.35 750.59,624.02 766.95,623.65 778.75,623.39"]; + 139 -- 440 [weight="1.0", pos="688.58,618.83 657.85,606.55 590.09,579.48 562.39,568.41"]; + 139 -- 385 [weight="1.0", pos="677.36,621.13 655.01,617.84 623.47,613.21 601.88,610.04"]; + 139 -- 358 [weight="9.0", pos="698.7,632.25 692.85,639.91 683.64,651.96 677.89,659.48"]; + 389 -- 452 [weight="1.0", pos="966.87,227.25 971.06,225.17 976.45,222.48 980.91,220.27"]; + 389 -- 423 [weight="1.0", pos="955.91,226.11 950.6,220.39 941.5,210.57 936.1,204.75"]; + 327 -- 373 [weight="1.0", pos="356.29,427.18 363.03,434.26 377.69,449.62 385.8,458.13"]; + 327 -- 641 [weight="1.0", pos="347.92,425.19 343.48,426.83 336.71,429.32 330.98,431.43"]; + 327 -- 601 [weight="1.0", pos="357.36,425.56 376.43,434.3 448.94,467.54 479.22,481.42"]; + 280 -- 618 [weight="1.0", pos="987.11,523.39 995.17,516.21 1009.6,503.3 1017.5,496.27"]; + 280 -- 282 [weight="1.0", pos="984.37,534.25 991.66,547.87 1010.1,582.22 1017.2,595.6"]; + 280 -- 558 [weight="1.0", pos="986.64,523.34 989.61,520.42 993.28,516.81 996.14,514"]; + 280 -- 396 [weight="1.0", pos="994.36,531.78 1005.9,534.62 1022.7,538.76 1034.6,541.7"]; + 280 -- 464 [weight="1.0", pos="986.88,533.75 989.9,536.55 993.6,540 996.54,542.75"]; + 280 -- 453 [weight="1.0", pos="993.41,524.84 1010.2,519.67 1040.2,510.42 1055.8,505.62"]; + 280 -- 664 [weight="1.0", pos="997.29,528.15 1003.9,527.98 1011.4,527.79 1017.4,527.63"]; + 280 -- 657 [weight="1.0", pos="997.21,527.83 1012.1,527.14 1034,526.12 1047.6,525.5"]; + 471 -- 522 [weight="1.0", pos="486.49,443.16 483.52,434.25 477.35,415.77 474.28,406.58"]; + 236 -- 579 [weight="1.0", pos="953.26,634.56 940.55,640.47 917.17,651.32 904.11,657.39"]; + 236 -- 505 [weight="1.0", pos="959.6,625.4 953.34,612.51 936.84,578.61 930.4,565.37"]; + 361 -- 370 [weight="1.0", pos="260.01,308.15 258.83,305.64 257.4,302.6 256.2,300.03"]; + 168 -- 282 [weight="1.0", pos="1051.3,647.03 1044.8,637.45 1030.8,616.77 1024,606.75"]; + 168 -- 460 [weight="1.0", pos="1048.6,656.6 1039.2,663.46 1021.4,676.52 1011.6,683.68"]; + 622 -- 701 [weight="1.0", pos="365.89,472.51 380.78,469.75 411.13,464.12 428.64,460.88"]; + 622 -- 641 [weight="1.0", pos="352.32,469.07 345.45,461.85 332.87,448.63 325.69,441.08"]; + 622 -- 642 [weight="1.0", pos="359.84,468.75 362.69,463.08 367.15,454.2 369.98,448.55"]; + 184 -- 328 [weight="1.0", pos="218.65,520.28 233.15,517.89 260.61,513.36 276,510.83"]; + 184 -- 390 [weight="1.0", pos="216.72,525.26 235.95,533.84 286.45,556.35 309.06,566.43"]; + 184 -- 303 [weight="1.0", pos="219.01,522.46 248.45,524.23 335.38,529.47 372.32,531.7"]; + 184 -- 597 [weight="1.0", pos="214.13,526.5 224.79,536.26 249.54,558.95 261.6,569.99"]; + 184 -- 288 [weight="1.0", pos="217.81,524.35 236.4,529.66 279.85,542.07 300.41,547.94"]; + 184 -- 537 [weight="1.0", pos="215.5,517.88 220.03,515.08 226.1,511.32 230.8,508.42"]; + 184 -- 294 [weight="1.0", pos="219.03,522.58 257.09,525.34 393.77,535.25 444.19,538.91"]; + 184 -- 637 [weight="1.0", pos="218.56,523.83 244.65,529.26 317.48,544.43 347.57,550.69"]; + 14 -- 40 [weight="1.0", pos="1068.8,698.52 1072.3,688.7 1079.3,668.89 1082.7,659.32"]; + 14 -- 282 [weight="1.0", pos="1064.3,698.75 1056.2,680.83 1030.8,624.61 1022.7,606.65"]; + 14 -- 561 [weight="1.0", pos="1067.6,710.01 1068.1,713.67 1068.7,718.38 1069.2,721.9"]; + 14 -- 168 [weight="1.0", pos="1065.5,698.72 1063.1,688.52 1058.1,667.01 1055.9,657.2"]; + 14 -- 460 [weight="2.0", pos="1051.5,700.44 1041,697.8 1027.3,694.34 1017.4,691.85"]; + 135 -- 200 [weight="1.0", pos="884.21,540.65 882.89,538.16 881.33,535.2 879.94,532.57"]; + 135 -- 433 [weight="1.0", pos="895.94,551.28 906.76,557.43 925.12,567.87 936.47,574.32"]; + 135 -- 534 [weight="1.0", pos="889.89,551.88 896.4,565.33 912.91,599.44 919.11,612.25"]; + 135 -- 539 [weight="1.0", pos="891.57,551.99 899.64,562.45 916.74,584.63 924.31,594.45"]; + 348 -- 677 [weight="2.0", pos="745.57,350.87 748.03,358.43 752.32,371.61 754.97,379.78"]; + 145 -- 598 [weight="1.0", pos="849.94,102.15 843.41,103.88 835.03,106.1 827.97,107.96"]; + 145 -- 342 [weight="1.0", pos="855.69,104.04 846.66,112.33 828.15,129.33 818.46,138.23"]; + 178 -- 261 [weight="1.0", pos="565.88,747.95 594.28,733.89 683.39,689.76 717.11,673.06"]; + 178 -- 385 [weight="1.0", pos="557.84,746.78 561.03,724.2 573.05,639.09 576.64,613.68"]; + 178 -- 357 [weight="1.0", pos="567.94,748.95 573.28,747.29 579.73,745.3 585.18,743.61"]; + 24 -- 445 [weight="1.0", pos="1118.9,307.36 1110.6,300.45 1095.4,287.62 1087.2,280.78"]; + 24 -- 687 [weight="1.0", pos="1115.6,316.26 1098.9,324.2 1062.9,341.33 1045.4,349.64"]; + 24 -- 93 [weight="1.0", pos="1119.8,307.15 1117.4,304.66 1114.5,301.65 1112.1,299.14"]; + 24 -- 65 [weight="1.0", pos="1124.8,306.86 1125.4,298.83 1126.4,283.45 1127,275.23"]; + 285 -- 636 [weight="1.0", pos="1124,641.55 1128.6,634.56 1136.5,622.77 1141,616.08"]; + 285 -- 554 [weight="1.0", pos="1122.4,652.82 1125.1,660.09 1129.9,672.69 1132.6,679.85"]; + 285 -- 696 [weight="1.0", pos="1118.8,652.83 1116,663.78 1109.9,687.81 1107.2,698.47"]; + 285 -- 583 [weight="1.0", pos="1123.2,652.69 1124.5,655.26 1126.2,658.31 1127.5,660.82"]; + 285 -- 407 [weight="1.0", pos="1111.9,642.41 1105.4,638.68 1096.4,633.54 1090.2,629.93"]; + 104 -- 402 [weight="1.0", pos="686.5,251.83 679.27,260.05 664.93,276.35 657.43,284.88"]; + 104 -- 324 [weight="1.0", pos="673.51,245.27 666.29,244.62 658.1,243.88 651.57,243.29"]; + 104 -- 673 [weight="1.0", pos="682.75,251.41 674.64,255.96 662.28,262.89 654.29,267.37"]; + 124 -- 221 [weight="1.0", pos="1061.8,581.84 1039.9,574.38 995.4,559.18 975.12,552.25"]; + 124 -- 636 [weight="1.0", pos="1086.5,590.47 1100,595.27 1121.5,602.91 1134.1,607.41"]; + 124 -- 280 [weight="2.0", pos="1066.1,581.02 1048.3,570.02 1006.6,544.19 989.16,533.41"]; + 124 -- 618 [weight="1.0", pos="1071.3,580.49 1062,563.44 1034.5,512.62 1025.7,496.41"]; + 124 -- 282 [weight="1.0", pos="1060.4,589.98 1052.6,592.12 1042.9,594.79 1035,596.97"]; + 124 -- 558 [weight="1.0", pos="1069,580.62 1055.2,566.19 1018.1,527.53 1005.3,514.11"]; + 124 -- 396 [weight="1.0", pos="1070.8,580.45 1065.9,572.47 1056.9,558.05 1052.1,550.38"]; + 124 -- 153 [weight="1.0", pos="1066.7,580.83 1045.6,566.16 986.59,525.14 965.64,510.58"]; + 124 -- 407 [weight="2.0", pos="1075.6,591.96 1077.1,599.5 1079.9,612.57 1081.4,620"]; + 124 -- 464 [weight="1.0", pos="1065.1,581.24 1050.8,573.62 1023.3,559.01 1009.7,551.79"]; + 124 -- 664 [weight="1.0", pos="1070.1,580.71 1061.2,569.34 1040.8,543.16 1032.3,532.26"]; + 124 -- 453 [weight="1.0", pos="1073.7,580.39 1072.2,564.9 1067.8,522.45 1066.3,507.69"]; + 124 -- 657 [weight="1.0", pos="1073,580.49 1070.2,568.65 1063.7,541.4 1061,530.04"]; + 124 -- 257 [weight="1.0", pos="1069.6,580.77 1053.4,562.2 999.7,500.73 982.51,481.06"]; + 124 -- 285 [weight="1.0", pos="1078.6,591.77 1087.4,603.46 1107.5,630.23 1116.1,641.76"]; + 131 -- 410 [weight="1.0", pos="615.6,1081.5 614.48,1086.8 612.72,1095.2 611.6,1100.5"]; + 385 -- 427 [weight="7.0", pos="581.8,613.72 592.16,631.83 619.09,678.89 629.01,696.25"]; + 385 -- 494 [weight="1.0", pos="574.21,613.61 562.73,637.4 525.91,713.67 516.06,734.09"]; + 385 -- 484 [weight="1.0", pos="581.61,599.34 590.45,583.36 611.74,544.91 620.33,529.4"]; + 385 -- 680 [weight="2.0", pos="577.24,613.5 577.09,616.13 576.91,619.09 576.76,621.58"]; + 385 -- 570 [weight="1.0", pos="577.44,599.42 577.05,586.92 576.26,561.16 575.92,550.13"]; + 594 -- 595 [weight="1.0", pos="708.37,310.03 728.31,295.87 777.85,260.69 796.44,247.49"]; + 594 -- 688 [weight="1.0", pos="704.92,309.47 711.82,300.44 724.06,284.43 730.24,276.35"]; + 307 -- 613 [weight="2.0", pos="739.69,692.87 737.22,695.79 734.21,699.36 731.76,702.26"]; + 307 -- 358 [weight="2.0", pos="732.55,683.84 720.38,680.27 701.37,674.71 688.04,670.8"]; + 154 -- 522 [weight="1.0", pos="281.63,390.11 328.26,392.81 433.86,398.92 464.18,400.67"]; + 388 -- 600 [weight="1.0", pos="447.39,565.94 453.48,573.11 464.77,586.4 471.67,594.53"]; + 388 -- 601 [weight="1.0", pos="446.43,556.16 454.94,543.53 477.92,509.4 487.9,494.58"]; + 96 -- 365 [weight="1.0", pos="952.32,326.25 949.44,322.97 945.64,318.65 942.7,315.31"]; + 96 -- 432 [weight="1.0", pos="944.57,330.92 935.99,330.78 924.39,330.61 915.17,330.46"]; + 364 -- 600 [weight="3.0", pos="430.33,621.03 439.27,617.32 453.08,611.58 463.46,607.27"]; + 553 -- 705 [weight="1.0", pos="1232.1,932.45 1225.9,930.14 1217.8,927.08 1211.1,924.6"]; + 159 -- 304 [weight="1.0", pos="499.06,200.22 510.62,203.49 530.86,209.21 543.91,212.9"]; + 326 -- 468 [weight="1.0", pos="361.16,51.288 359.05,41.931 354.78,23.057 352.73,13.947"]; + 160 -- 659 [weight="3.0", pos="547.17,447.67 528.05,428.12 474.26,373.15 455.95,354.42"]; + 160 -- 594 [weight="2.0", pos="561.44,447.59 586.75,423.54 669.34,345.07 693.3,322.3"]; + 160 -- 593 [weight="1.0", pos="582.67,450.77 604.23,447.84 632.65,443.98 648.31,441.86"]; + 160 -- 600 [weight="1.0", pos="550.32,461.74 537.37,486.59 494.07,569.68 481.17,594.42"]; + 160 -- 394 [weight="3.0", pos="554.97,447.63 556.96,433.06 561.51,399.69 563.47,385.33"]; + 160 -- 294 [weight="2.0", pos="546.56,461.66 529.42,477.8 487.33,517.42 470.34,533.41"]; + 160 -- 522 [weight="1.0", pos="543.68,447.88 526.37,436.52 492.04,413.99 478.33,404.99"]; + 160 -- 214 [weight="2.0", pos="572.48,448.7 593.49,441.93 627.41,431 647.2,424.62"]; + 160 -- 654 [weight="1.0", pos="554.19,447.64 554.27,445.01 554.34,442.05 554.41,439.56"]; + 160 -- 185 [weight="1.0", pos="550.18,461.94 538.63,483.95 504.22,549.54 493.24,570.46"]; + 160 -- 303 [weight="1.0", pos="540.24,461.18 508.38,476.28 430.01,513.4 400.62,527.33"]; + 160 -- 471 [weight="1.0", pos="523.02,451.62 516.61,450.99 510.11,450.35 504.49,449.8"]; + 160 -- 649 [weight="1.0", pos="524.14,451.24 497.53,448.2 459.41,443.84 436.8,441.25"]; + 160 -- 601 [weight="2.0", pos="541.59,461.32 530.8,467.1 515.27,475.42 504.61,481.14"]; + 160 -- 581 [weight="1.0", pos="550.91,447.48 544.82,433.33 531.38,402.15 526.18,390.07"]; + 160 -- 527 [weight="1.0", pos="554.37,447.65 555.44,426.76 558.6,365.11 559.68,344.08"]; + 160 -- 362 [weight="1.0", pos="559.1,447.62 570.1,432.42 595.85,396.84 605.49,383.53"]; + 160 -- 340 [weight="2.0", pos="551.28,447.6 543.54,427.6 521.56,370.81 514.56,352.72"]; + 160 -- 478 [weight="2.0", pos="542.72,447.83 534.4,442.8 523.21,436.03 515.24,431.21"]; + 569 -- 684 [weight="1.0", pos="249.6,1156.1 261.17,1153.2 279.47,1148.5 291.78,1145.4"]; + 555 -- 644 [weight="1.0", pos="740.83,538.48 745.96,535.85 752.42,532.53 757.89,529.72"]; + 555 -- 691 [weight="1.0", pos="736.4,548.28 743.24,555.74 755.88,569.53 762.78,577.06"]; + 555 -- 614 [weight="1.0", pos="731.45,548.34 731.08,555.37 730.43,567.89 730.06,575.02"]; + 8 -- 334 [weight="1.0", pos="761.47,366.09 753.19,366.01 742.18,365.9 732.07,365.79"]; + 8 -- 677 [weight="4.0", pos="770.23,371.46 768.07,374.05 765.43,377.21 763.1,380"]; + 37 -- 294 [weight="1.0", pos="315.57,595.28 343.14,585 418.33,556.95 449.37,545.38"]; + 37 -- 303 [weight="1.0", pos="311.53,594.15 326.57,582.27 364.48,552.29 381.15,539.11"]; + 37 -- 390 [weight="2.0", pos="308.27,593.54 310.75,588.99 314.24,582.56 316.83,577.81"]; + 37 -- 597 [weight="2.0", pos="297.42,594.29 291.85,590.83 284.32,586.15 278.33,582.42"]; + 43 -- 630 [weight="1.0", pos="1292.5,626.66 1287.9,621.22 1280.4,612.48 1275.3,606.47"]; + 43 -- 297 [weight="1.0", pos="1279,629.71 1271.9,628.95 1263.8,628.08 1257.3,627.38"]; + 5 -- 310 [weight="1.0", pos="794.55,573.37 775.96,570.82 739.45,565.82 719.42,563.07"]; + 5 -- 102 [weight="1.0", pos="794.91,576.92 768.8,581.53 703.8,593.01 673.38,598.39"]; + 5 -- 614 [weight="1.0", pos="794.17,575.8 779.84,576.82 755.92,578.53 741.62,579.55"]; + 5 -- 555 [weight="1.0", pos="797.57,571.3 783.83,565.43 756.85,553.9 742.05,547.58"]; + 5 -- 20 [weight="1.0", pos="795.36,572.53 786.11,570.45 772.68,567.43 762.4,565.12"]; + 5 -- 200 [weight="1.0", pos="812.57,570.39 825.19,561.51 853.09,541.88 867.4,531.81"]; + 5 -- 18 [weight="1.0", pos="797.82,578.93 787.59,583.86 770.11,592.27 758.44,597.88"]; + 5 -- 644 [weight="1.0", pos="802.44,569.86 795.76,560.57 781.59,540.85 774.14,530.5"]; + 5 -- 691 [weight="1.0", pos="795.17,577.04 791.07,577.82 786.36,578.72 782,579.55"]; + 5 -- 284 [weight="1.0", pos="798.3,571.05 780.49,562.14 736.69,540.24 714.99,529.38"]; + 5 -- 380 [weight="1.0", pos="802.96,570.05 801.37,567.56 799.43,564.55 797.83,562.04"]; + 485 -- 667 [weight="2.0", pos="546.34,669.51 543,688.87 533.2,745.65 529.71,765.84"]; + 485 -- 608 [weight="1.0", pos="532.05,668.4 523.18,671.52 512.35,675.34 504.9,677.97"]; + 391 -- 687 [weight="1.0", pos="1149.1,354.41 1124.8,354.39 1073.1,354.37 1048.7,354.35"]; + 391 -- 536 [weight="1.0", pos="1169.7,349.74 1181.5,342.34 1204.5,328.02 1216.1,320.75"]; + 538 -- 679 [weight="1.0", pos="773.83,739.06 785.4,734.62 803.91,727.51 815.73,722.97"]; + 21 -- 128 [weight="1.0", pos="994.37,655.38 987.6,656.79 979.76,658.43 973.27,659.79"]; + 21 -- 88 [weight="1.0", pos="1010.5,646.85 1010.7,644.53 1011,641.82 1011.2,639.51"]; + 21 -- 433 [weight="1.0", pos="1005.3,646.94 993.97,634.02 964.42,600.42 952.03,586.34"]; + 554 -- 696 [weight="1.0", pos="1127.4,689.91 1122.7,692.91 1116.8,696.77 1112.3,699.65"]; + 554 -- 583 [weight="1.0", pos="1133.5,679.94 1132.8,677.15 1132,673.75 1131.4,670.99"]; + 552 -- 669 [weight="2.0", pos="1023.3,191.8 1015.2,188.74 1004.8,184.82 996.68,181.75"]; + 288 -- 294 [weight="1.0", pos="325.55,550.13 352.8,548.18 413.04,543.86 443.94,541.64"]; + 288 -- 328 [weight="1.0", pos="308.58,545.96 303.85,537.79 294.69,521.97 290.03,513.93"]; + 288 -- 637 [weight="1.0", pos="325.56,551.79 331.93,552.09 339.48,552.45 345.95,552.75"]; + 288 -- 390 [weight="1.0", pos="313.77,556.25 314.91,558.89 316.29,562.12 317.5,564.93"]; + 288 -- 303 [weight="1.0", pos="323.37,548.33 337.03,545.09 359.56,539.75 374.4,536.24"]; + 288 -- 597 [weight="1.0", pos="304.06,555.51 297.11,559.56 286.71,565.62 278.94,570.15"]; + 288 -- 537 [weight="1.0", pos="304.52,546.61 290.43,537.56 258.93,517.36 244.94,508.39"]; + 193 -- 398 [weight="1.0", pos="845.52,467.88 828.66,465.35 798.18,460.77 778.83,457.87"]; + 193 -- 458 [weight="1.0", pos="844.73,469.41 817.8,468.78 755.77,467.31 723,466.54"]; + 460 -- 561 [weight="1.0", pos="1012.8,693.35 1025.6,700.85 1050.4,715.44 1062.7,722.66"]; + 460 -- 678 [weight="1.0", pos="1010.3,693.8 1013.2,696.59 1016.9,700.01 1019.7,702.73"]; + 460 -- 579 [weight="1.0", pos="992.16,685.58 970.46,680.29 926.45,669.55 905.81,664.52"]; + 453 -- 464 [weight="1.0", pos="1059.4,507.03 1047.1,515.65 1020.3,534.47 1008,543.08"]; + 453 -- 664 [weight="1.0", pos="1059.3,506.87 1052.4,511.42 1041.7,518.55 1034.9,523.08"]; + 453 -- 657 [weight="1.0", pos="1064.4,507.74 1063.4,511.36 1062.2,516.16 1061.2,519.77"]; + 453 -- 618 [weight="1.0", pos="1055.4,499.85 1049.3,498.25 1041.5,496.21 1035.1,494.53"]; + 453 -- 558 [weight="1.0", pos="1053.8,503.82 1041.8,505.09 1023.4,507.04 1011.8,508.27"]; + 324 -- 402 [weight="1.0", pos="640.95,247.36 643.42,256.48 648.55,275.39 651.1,284.8"]; + 324 -- 673 [weight="1.0", pos="640.76,247.35 642.03,252.77 644.03,261.26 645.3,266.66"]; + 180 -- 198 [weight="1.0", pos="861.05,699.26 864.25,698.86 867.69,698.42 870.79,698.03"]; + 180 -- 540 [weight="1.0", pos="847.43,705.93 843.68,715.94 835.51,737.78 831.77,747.77"]; + 180 -- 647 [weight="1.0", pos="852.56,705.79 856.6,712.2 863.53,723.2 867.64,729.72"]; + 244 -- 588 [weight="1.0", pos="867.54,254.88 881.43,254.11 909.94,252.53 930.99,251.36"]; + 244 -- 432 [weight="5.0", pos="862.56,261.46 870.08,275.3 888.32,308.87 896.2,323.37"]; + 244 -- 449 [weight="1.0", pos="856.83,249.04 854.94,244.08 852.34,237.23 850.53,232.49"]; + 433 -- 526 [weight="1.0", pos="945.8,586.6 944,605.34 938.89,658.54 937.27,675.49"]; + 433 -- 579 [weight="1.0", pos="942.37,586.41 932.64,601.77 908.11,640.52 898.54,655.63"]; + 351 -- 527 [weight="1.0", pos="618.61,391.85 606.27,380.28 579.5,355.19 566.88,343.36"]; + 240 -- 553 [weight="2.0", pos="1263.8,956.49 1258.9,952.02 1251.9,945.62 1247.1,941.15"]; + 240 -- 513 [weight="2.0", pos="1275.2,956.55 1279.7,952.42 1286,946.66 1290.5,942.53"]; + 595 -- 688 [weight="1.0", pos="793.07,246.78 779.53,252.42 756.28,262.12 743.36,267.5"]; + 74 -- 315 [weight="1.0", pos="870.09,639.25 853.21,635.61 825.88,629.7 809.25,626.11"]; + 74 -- 414 [weight="1.0", pos="884.47,637.35 884.18,634.26 883.82,630.34 883.53,627.26"]; + 334 -- 402 [weight="1.0", pos="700.23,358.85 690.04,344.19 665.85,309.4 656.45,295.87"]; + 334 -- 348 [weight="1.0", pos="716.3,359.48 721.94,356.51 728.66,352.97 734.03,350.13"]; + 334 -- 677 [weight="4.0", pos="718.64,371.15 725.93,374.13 734.88,377.79 742.33,380.84"]; + 334 -- 594 [weight="1.0", pos="704.17,358.64 703.21,349.09 701.48,331.92 700.53,322.56"]; + 334 -- 458 [weight="1.0", pos="704.67,372.11 704.12,390.2 702.61,440.45 702.05,459.02"]; + 440 -- 472 [weight="1.0", pos="547.34,569.14 534.72,593.5 484.57,690.31 471.86,714.86"]; + 488 -- 596 [weight="1.0", pos="791.04,431.57 814.61,439.35 866.04,456.33 889.57,464.09"]; + 488 -- 510 [weight="2.0", pos="766.19,431.4 755.47,434.68 740.35,439.32 730.86,442.23"]; + 488 -- 490 [weight="1.0", pos="792.54,430.89 803.48,433.56 818.53,437.24 828.28,439.62"]; + 61 -- 201 [weight="1.0", pos="812.69,177.2 803.8,185.31 785.56,201.93 776.01,210.64"]; + 61 -- 681 [weight="1.0", pos="817.2,177.54 816.84,180.49 816.38,184.21 816.01,187.19"]; + 299 -- 687 [weight="1.0", pos="1110.2,338.34 1093.4,341.95 1064.1,348.22 1047.7,351.75"]; + 115 -- 294 [weight="1.0", pos="285.56,633.19 314.22,618.19 417.13,564.31 451.66,546.24"]; + 115 -- 568 [weight="1.0", pos="283.44,632.4 286.59,629.64 290.56,626.16 293.74,623.37"]; + 377 -- 616 [weight="1.0", pos="225.69,370.52 241.51,367.71 267.02,363.18 282.85,360.37"]; + 103 -- 127 [weight="1.0", pos="545.47,1104.4 551.08,1101 558.68,1096.3 563.93,1093.1"]; + 103 -- 509 [weight="1.0", pos="537.94,1103.9 537.77,1096.6 537.47,1083.1 537.3,1075.7"]; + 602 -- 652 [weight="4.0", pos="767.57,188.26 767.43,180.52 767.21,168.02 767.08,160.34"]; + 602 -- 603 [weight="4.0", pos="759.78,189.22 756.05,186.44 751.6,183.13 747.85,180.34"]; + 201 -- 517 [weight="2.0", pos="764.32,210.35 752.7,197.98 725.95,169.52 714.81,157.65"]; + 201 -- 626 [weight="1.0", pos="759.57,212.68 738.58,205.39 691.15,188.94 671.4,182.08"]; + 201 -- 681 [weight="1.0", pos="778.64,211.65 787.11,207.22 799.8,200.57 807.83,196.36"]; + 201 -- 677 [weight="1.0", pos="769.36,223.15 767.34,250.6 759.89,351.85 757.83,379.78"]; + 201 -- 652 [weight="5.0", pos="769.55,209.55 769,197.56 767.84,172.56 767.28,160.47"]; + 201 -- 602 [weight="5.0", pos="769.18,209.56 768.92,207.04 768.62,204.19 768.37,201.68"]; + 201 -- 255 [weight="1.0", pos="781.84,215.09 797.64,213.56 825.51,210.86 842.98,209.17"]; + 201 -- 603 [weight="5.0", pos="765.43,210.07 759.82,202.24 750.19,188.81 744.47,180.84"]; + 201 -- 674 [weight="1.0", pos="759.77,212.46 746.37,207.43 722.86,198.6 709.48,193.58"]; + 423 -- 452 [weight="1.0", pos="941.75,202.81 952.19,205.72 968.47,210.26 979.01,213.21"]; + 415 -- 630 [weight="1.0", pos="1267.6,658.04 1268,646.4 1269,619.01 1269.5,606.43"]; + 152 -- 553 [weight="1.0", pos="1211.9,942.13 1217.9,940.89 1224.7,939.45 1230.3,938.27"]; + 152 -- 705 [weight="1.0", pos="1198.6,939.74 1198.8,935.54 1199,929.67 1199.2,925.47"]; + 189 -- 468 [weight="1.0", pos="333.36,7.6759 336.38,7.862 339.59,8.0591 342.45,8.2352"]; + 189 -- 326 [weight="2.0", pos="325.85,12.279 333.77,21.924 350.37,42.141 358.18,51.647"]; + 189 -- 300 [weight="1.0", pos="320.08,12.455 319.43,15.042 318.66,18.103 318.02,20.625"]; + 342 -- 592 [weight="1.0", pos="805.38,138.06 797.1,130.91 783.36,119.05 775.93,112.63"]; + 342 -- 512 [weight="1.0", pos="812.38,150.52 812.9,171.69 814.54,238.1 815.06,259.32"]; + 342 -- 598 [weight="1.0", pos="812.51,137.44 812.79,131.41 813.19,122.56 813.44,116.98"]; + 342 -- 347 [weight="1.0", pos="807.18,137.9 797.77,126.58 777.74,102.47 769.14,92.124"]; + 452 -- 669 [weight="2.0", pos="988.44,210.27 987.29,202.74 985.31,189.7 984.18,182.29"]; + 452 -- 552 [weight="2.0", pos="998.41,212.35 1005.7,209.37 1016,205.16 1024,201.86"]; + 91 -- 667 [weight="1.0", pos="543.27,816.77 540.26,807.89 534.17,789.9 530.81,779.99"]; + 579 -- 678 [weight="1.0", pos="904.85,665.38 929.42,674 991.55,695.81 1015.3,704.16"]; + 341 -- 358 [weight="1.0", pos="715.13,760.59 707.72,744.14 684.33,692.18 675.81,673.27"]; + 480 -- 601 [weight="1.0", pos="293.36,441.66 329.09,449.89 429.22,472.95 472.39,482.9"]; + 107 -- 682 [weight="1.0", pos="829.16,1080 835.89,1078.4 843.95,1076.5 850.61,1075"]; + 107 -- 345 [weight="1.0", pos="817.62,1077.8 822.94,1065.1 836.27,1033.1 841.66,1020.1"]; + 107 -- 624 [weight="1.0", pos="814.21,1077.8 811.79,1066.6 806.25,1041 803.87,1029.9"]; + 535 -- 623 [weight="1.0", pos="997.35,295.62 998.29,298.6 999.47,302.33 1000.4,305.38"]; + 467 -- 503 [weight="1.0", pos="1030.2,432.84 1032.9,435.41 1036.2,438.55 1038.8,441.1"]; + 87 -- 498 [weight="1.0", pos="1064.8,369.78 1067.5,366.69 1070.8,362.76 1073.4,359.69"]; + 87 -- 687 [weight="1.0", pos="1054.7,370.12 1051.1,367.18 1046.5,363.39 1042.7,360.26"]; + 481 -- 596 [weight="1.0", pos="762.96,410.64 788.65,421.28 863.55,452.29 891.28,463.78"]; + 481 -- 510 [weight="1.0", pos="749.96,411.96 743.83,419.19 732.49,432.56 726.31,439.86"]; + 481 -- 488 [weight="1.0", pos="759.88,411.76 763.63,414.89 768.54,418.98 772.42,422.22"]; + 77 -- 659 [weight="1.0", pos="509.75,363.3 496.98,360.07 477.31,355.08 464,351.7"]; + 77 -- 160 [weight="2.0", pos="524.38,372.03 529.87,387.33 545.28,430.32 551.43,447.47"]; + 77 -- 340 [weight="1.0", pos="519.45,360.8 518.12,358.2 516.54,355.15 515.22,352.58"]; + 77 -- 394 [weight="1.0", pos="534.33,369.93 539.27,371.34 545.05,373 550.22,374.48"]; + 174 -- 387 [weight="1.0", pos="1374.2,1137.6 1384.7,1142.5 1401.9,1150.6 1412.1,1155.3"]; + 174 -- 216 [weight="1.0", pos="1364.4,1138.5 1363.5,1145.6 1361.9,1158.2 1361,1165.3"]; + 174 -- 245 [weight="1.0", pos="1379.7,1130.5 1383.7,1129.7 1388,1128.9 1391.7,1128.2"]; + 174 -- 381 [weight="1.0", pos="1368,1138.6 1373.7,1149 1386.2,1171.7 1391.8,1181.7"]; + 214 -- 398 [weight="3.0", pos="677.85,424.96 697.27,432.02 730.86,444.21 748.87,450.76"]; + 214 -- 309 [weight="1.0", pos="661.99,412.28 659.63,394.18 653.54,347.49 651.52,331.97"]; + 214 -- 594 [weight="2.0", pos="665.47,412.43 672.29,393.35 690.91,341.19 697.51,322.68"]; + 214 -- 703 [weight="1.0", pos="680.49,415.18 685.52,413.93 690.82,412.61 695.19,411.52"]; + 214 -- 394 [weight="1.0", pos="649.23,413.85 629.88,405.79 594.85,391.21 576.44,383.55"]; + 214 -- 435 [weight="1.0", pos="663.9,426.66 666.12,443.04 671.56,483.15 673.52,497.62"]; + 214 -- 402 [weight="1.0", pos="662.35,412.23 660.49,388.96 654.74,316.94 653.07,296.08"]; + 214 -- 281 [weight="1.0", pos="657.93,412.65 645.11,394.98 611.3,348.38 600.06,332.88"]; + 214 -- 677 [weight="1.0", pos="678.1,414.31 695.19,408.41 722.89,398.85 740.59,392.73"]; + 214 -- 481 [weight="1.0", pos="683.18,416.76 701.45,414.25 727.68,410.64 742.6,408.59"]; + 214 -- 352 [weight="1.0", pos="649.31,414.01 608.03,397.24 484.84,347.2 445.98,331.42"]; + 214 -- 355 [weight="3.0", pos="664.76,412.45 668.52,397.82 677.05,364.59 680.49,351.22"]; + 214 -- 422 [weight="1.0", pos="660.52,426.63 651.32,453.61 618.5,549.83 609.21,577.08"]; + 214 -- 334 [weight="2.0", pos="668.42,412.48 676.59,401.96 691.84,382.3 699.78,372.08"]; + 214 -- 488 [weight="2.0", pos="684.46,421.03 706.84,422.57 741.41,424.95 761.9,426.37"]; + 214 -- 497 [weight="1.0", pos="641.89,417.45 610.53,414.33 552.37,408.55 525.65,405.89"]; + 214 -- 458 [weight="9.0", pos="668.68,426.41 676.03,435.2 688.71,450.35 696.08,459.15"]; + 214 -- 596 [weight="1.0", pos="681.68,423.36 727.75,432.73 845.81,456.74 887.18,465.15"]; + 214 -- 527 [weight="1.0", pos="654.52,412.79 634.93,397.07 586.57,358.25 567.73,343.13"]; + 214 -- 510 [weight="3.0", pos="676.04,425.18 687.6,430.15 704.07,437.24 713.83,441.44"]; + 214 -- 478 [weight="1.0", pos="641.02,420.34 610.99,421.42 557.37,423.35 527.31,424.43"]; + 422 -- 650 [weight="1.0", pos="595.65,590.58 567.1,606.71 491.59,649.35 467.03,663.22"]; + 422 -- 572 [weight="1.0", pos="593.98,590.39 570.8,601.41 522.43,624.41 503.4,633.46"]; + 422 -- 667 [weight="6.0", pos="603.77,591.49 591.37,621.39 543.84,735.99 531.44,765.9"]; + 422 -- 680 [weight="1.0", pos="601.74,591.4 595.68,599.97 585.63,614.2 580.2,621.89"]; + 422 -- 458 [weight="1.0", pos="612.41,577.28 629.36,556.19 679.57,493.74 696.33,472.9"]; + 422 -- 600 [weight="1.0", pos="584.82,587.22 561.06,590.37 523.35,595.36 499.55,598.51"]; + 422 -- 435 [weight="1.0", pos="612.5,577.38 625.76,561.39 658.23,522.23 669.94,508.11"]; + 422 -- 608 [weight="1.0", pos="599.14,590.97 578.04,609.42 519.17,660.89 501.29,676.52"]; + 422 -- 634 [weight="1.0", pos="590.39,589.51 560.12,599.11 496.3,619.34 472.98,626.74"]; + 422 -- 485 [weight="6.0", pos="601.48,591.3 590.15,606.33 563.56,641.61 552.47,656.33"]; + 221 -- 280 [weight="1.0", pos="968.84,543.59 971.24,540.71 974.24,537.09 976.7,534.13"]; + 221 -- 618 [weight="1.0", pos="969.61,543.78 980.64,532.96 1007,507.06 1018,496.25"]; + 221 -- 282 [weight="1.0", pos="969.76,553.5 980.07,563.23 1003.3,585.12 1014.2,595.46"]; + 221 -- 558 [weight="1.0", pos="969.07,543.86 976.01,536.33 989.36,521.84 996.32,514.29"]; + 221 -- 396 [weight="1.0", pos="979.71,548.06 993.45,547.5 1013.8,546.68 1029,546.07"]; + 221 -- 464 [weight="1.0", pos="979.7,548.21 982.27,548.13 984.92,548.05 987.46,547.97"]; + 221 -- 453 [weight="1.0", pos="973.61,544.58 993.04,535.72 1038.8,514.86 1057.5,506.31"]; + 221 -- 664 [weight="1.0", pos="975.47,545.05 987.85,540.92 1007.9,534.22 1019.5,530.36"]; + 221 -- 657 [weight="1.0", pos="976.69,545.66 995.51,540.97 1031.5,531.99 1049.3,527.55"]; + 221 -- 257 [weight="1.0", pos="965.54,543.37 967.78,530.16 973.62,495.83 976.07,481.44"]; + 39 -- 238 [weight="2.0", pos="903.64,1024.7 896.32,1028.6 885.9,1034.1 878.42,1038.1"]; + 39 -- 682 [weight="1.0", pos="907.22,1025.5 897.84,1035.6 878.18,1056.6 868.93,1066.5"]; + 39 -- 345 [weight="1.0", pos="896.54,1018.7 885.17,1017.8 869.96,1016.6 858.82,1015.8"]; + 39 -- 462 [weight="1.0", pos="917.74,1025.4 925.13,1033 938.43,1046.6 945.67,1054"]; + 64 -- 497 [weight="1.0", pos="405.59,400.77 428.03,397.23 478.21,397.02 500.51,400.39"]; + 64 -- 383 [weight="1.0", pos="374.31,405.2 368.98,405.26 363.34,405.32 358.41,405.37"]; + 64 -- 649 [weight="1.0", pos="404.6,409.61 410.69,415.63 417.1,425.65 418.85,432.46"]; + 558 -- 664 [weight="1.0", pos="1007.2,513.59 1011.7,516.48 1017.6,520.33 1022.1,523.21"]; + 558 -- 657 [weight="1.0", pos="1010.5,511.99 1021.3,514.81 1038.5,519.33 1049.5,522.21"]; + 558 -- 618 [weight="1.0", pos="1006.4,504.88 1009.7,502.2 1013.8,498.83 1017.2,496.12"]; + 12 -- 416 [weight="1.0", pos="1148.6,505.07 1146.1,507.91 1142.9,511.39 1140.5,514.17"]; + 12 -- 121 [weight="1.0", pos="1144.6,495.02 1133.3,488.77 1113.6,477.88 1101.4,471.13"]; + 668 -- 689 [weight="1.0", pos="1171.2,416.22 1177.1,416.98 1184.4,417.91 1190.6,418.71"]; + 52 -- 319 [weight="1.0", pos="269.3,356.41 289.9,356.19 331.89,355.74 354.44,355.49"]; + 52 -- 638 [weight="1.0", pos="260.95,351.59 262.81,349.08 265.06,346.04 266.93,343.51"]; + 657 -- 664 [weight="1.0", pos="1047.8,525.86 1045,526.07 1042.1,526.3 1039.4,526.5"]; + 229 -- 382 [weight="1.0", pos="81.143,586.5 73.411,580.63 60.545,570.87 52.773,564.98"]; + 229 -- 582 [weight="1.0", pos="88.523,586.14 89.552,580.19 91.216,570.57 92.238,564.66"]; + 229 -- 292 [weight="1.0", pos="73.836,588.43 68.856,587.35 63.288,586.15 58.515,585.11"]; + 229 -- 323 [weight="1.0", pos="89.962,586.42 94.91,575.91 106.41,551.52 112,539.63"]; + 260 -- 263 [weight="1.0", pos="493.84,263.21 496.75,263.12 499.76,263.03 502.56,262.95"]; + 260 -- 340 [weight="1.0", pos="480.89,268.62 486.75,283.22 503.88,325.91 510.1,341.4"]; + 573 -- 671 [weight="1.0", pos="715.73,837.44 724.83,839.29 736.41,841.64 745.16,843.42"]; + 237 -- 536 [weight="1.0", pos="1268.6,307.84 1258.1,309.8 1243.6,312.5 1233.8,314.31"]; + 237 -- 411 [weight="1.0", pos="1277.1,310.45 1274.8,312.95 1271.9,315.96 1269.5,318.51"]; + 237 -- 475 [weight="1.0", pos="1277.6,300.28 1275.6,297.78 1273,294.76 1270.9,292.22"]; + 370 -- 670 [weight="2.0", pos="244.8,289.4 238.31,285.63 229.57,280.56 223.35,276.94"]; + 309 -- 355 [weight="1.0", pos="658.7,331.57 663.74,334.59 670.23,338.47 675.07,341.36"]; + 68 -- 526 [weight="1.0", pos="930.27,693.66 931.52,691.19 932.91,688.4 934.09,686.06"]; + 68 -- 433 [weight="2.0", pos="928.05,693.46 931.48,672.29 941.93,607.79 945.35,586.72"]; + 68 -- 579 [weight="1.0", pos="921.32,693.57 915.25,686.33 905.65,674.91 899.77,667.91"]; + 68 -- 404 [weight="3.0", pos="932.66,706.84 941.7,717.23 959.17,737.32 968.06,747.53"]; + 402 -- 673 [weight="1.0", pos="650.81,284.87 649.97,282.3 648.97,279.25 648.14,276.74"]; + 402 -- 594 [weight="1.0", pos="661.72,295.31 669.66,299.63 681.17,305.89 689.47,310.4"]; + 315 -- 612 [weight="1.0", pos="797.85,616.44 804.98,600.21 823.28,558.57 829.63,544.13"]; + 315 -- 339 [weight="1.0", pos="796.3,616.3 796.8,613.78 797.37,610.91 797.87,608.39"]; + 315 -- 414 [weight="1.0", pos="811.12,622.88 828.41,622.72 855.43,622.48 870.97,622.34"]; + 315 -- 358 [weight="3.0", pos="782.79,627.33 760.07,635.37 711.34,652.62 687.05,661.22"]; + 567 -- 659 [weight="1.0", pos="467.83,311.14 464,318.97 457.02,333.22 452.94,341.55"]; + 567 -- 648 [weight="1.0", pos="454.47,304.74 428.67,303.39 378.93,300.8 359.45,299.78"]; + 567 -- 584 [weight="1.0", pos="454.49,305.7 441.12,305.8 422.71,305.94 412.73,306.02"]; + 567 -- 698 [weight="1.0", pos="460.54,301.06 454.04,298.13 445.61,294.33 439.13,291.4"]; + 641 -- 642 [weight="1.0", pos="334.3,437.48 341.46,438.55 350.16,439.86 357.47,440.95"]; + 144 -- 700 [weight="1.0", pos="559.53,503.3 555.24,500.27 549.46,496.17 545.1,493.08"]; + 144 -- 587 [weight="1.0", pos="555.24,507.54 550.93,507.56 545.86,507.58 541.27,507.6"]; + 338 -- 687 [weight="1.0", pos="1066.7,305.76 1060.4,315.68 1046.8,336.83 1039.8,347.66"]; + 100 -- 134 [weight="1.0", pos="1321.6,568.31 1310.5,570.36 1293.5,573.53 1280.7,575.92"]; + 100 -- 630 [weight="1.0", pos="1325,570.36 1313.8,576.33 1293.1,587.4 1280.5,594.16"]; + 380 -- 644 [weight="1.0", pos="790.67,551.84 786.22,546.01 779.01,536.52 774.22,530.23"]; + 380 -- 691 [weight="1.0", pos="789.4,561.9 784.62,566.38 777.56,572.98 772.78,577.45"]; + 380 -- 614 [weight="1.0", pos="783.02,561.21 770.49,565.72 750.77,572.83 739.17,577.02"]; + 380 -- 555 [weight="1.0", pos="779.39,553.67 769.5,551.49 756.66,548.66 746.8,546.49"]; + 222 -- 397 [weight="1.0", pos="973.7,799.1 969.7,802.21 964.38,806.34 960.38,809.45"]; + 222 -- 290 [weight="1.0", pos="968.84,797.16 958.75,799.57 943.67,803.16 933.6,805.55"]; + 222 -- 404 [weight="1.0", pos="978.73,789.63 977.66,782.31 975.68,768.66 974.49,760.49"]; + 616 -- 649 [weight="2.0", pos="305.29,363.44 327.16,378.14 386.21,417.81 408.87,433.03"]; + 300 -- 468 [weight="1.0", pos="324.48,21.91 330.41,19.04 338.54,15.105 344.34,12.296"]; + 300 -- 326 [weight="1.0", pos="323.11,29.981 331.83,35.931 347.42,46.57 356.11,52.501"]; + 25 -- 659 [weight="1.0", pos="352.53,319.14 368.54,323.9 413.47,337.28 436.2,344.05"]; + 25 -- 206 [weight="1.0", pos="352.83,318.61 359.36,319.9 369.87,321.98 378.18,323.62"]; + 25 -- 319 [weight="1.0", pos="349.5,322.05 353.46,328.62 360.72,340.66 365.34,348.32"]; + 25 -- 567 [weight="1.0", pos="352.67,316.83 371.03,315.08 427.07,309.73 454.74,307.09"]; + 25 -- 352 [weight="1.0", pos="352.7,318.03 365.9,319.42 397.78,322.77 417.5,324.84"]; + 25 -- 648 [weight="1.0", pos="347.96,312.47 348.61,309.96 349.39,306.93 350.04,304.41"]; + 25 -- 372 [weight="1.0", pos="348,312.35 350.64,302.07 356.62,278.83 359.36,268.17"]; + 25 -- 550 [weight="1.0", pos="350.27,321.92 352.5,324.74 355.35,328.34 357.53,331.09"]; + 25 -- 584 [weight="1.0", pos="352.56,316.27 363.5,314.17 386.98,309.65 398.68,307.4"]; + 25 -- 504 [weight="1.0", pos="350.64,313.53 357.33,306.98 370.89,293.69 378.35,286.38"]; + 25 -- 698 [weight="1.0", pos="352.37,315.31 365.77,310.36 399.6,297.87 417.58,291.23"]; + 286 -- 458 [weight="1.0", pos="859.38,443.62 828.39,448.03 756.29,458.29 721.42,463.25"]; + 120 -- 315 [weight="1.0", pos="710.7,601.45 728.75,606.07 762.44,614.7 781.29,619.52"]; + 120 -- 339 [weight="1.0", pos="713.78,598.85 732.81,599.51 765.13,600.62 784.08,601.27"]; + 120 -- 284 [weight="1.0", pos="698.76,592.91 699.45,579.57 701.23,545.09 702.01,530.15"]; + 83 -- 470 [weight="1.0", pos="1524.7,236.07 1524.6,239.69 1524.6,244.48 1524.5,248.16"]; + 484 -- 677 [weight="1.0", pos="629.74,516.92 651.27,494.99 727.28,417.55 750.51,393.88"]; + 484 -- 601 [weight="1.0", pos="612.81,519.75 590.35,513.73 539.57,500.13 511.75,492.68"]; + 305 -- 477 [weight="1.0", pos="422.86,765.93 416.11,762.32 405.31,756.53 397.77,752.5"]; + 381 -- 387 [weight="1.0", pos="1398.8,1182.2 1403.5,1177.2 1411,1169.1 1415.8,1164"]; + 581 -- 659 [weight="1.0", pos="517.2,381.73 504.12,375.21 475.55,360.96 460.12,353.26"]; + 308 -- 596 [weight="1.0", pos="920.07,481.85 916.51,479.18 912.1,475.87 908.51,473.17"]; + 308 -- 420 [weight="1.0", pos="929.2,481.66 931.01,478.12 933.41,473.42 935.22,469.89"]; + 177 -- 337 [weight="1.0", pos="410.66,368.19 413.7,372.25 417.95,377.93 421,382"]; + 177 -- 478 [weight="1.0", pos="413.62,367.37 430.83,378.23 476.28,406.9 495.99,419.33"]; + 496 -- 560 [weight="1.0", pos="1156.3,438.59 1156.4,442.73 1156.4,448.51 1156.5,452.65"]; + 496 -- 668 [weight="1.0", pos="1157.3,428.33 1157.9,425.83 1158.5,422.82 1159,420.27"]; + 373 -- 615 [weight="1.0", pos="387.75,470.33 384.6,475.6 380.14,483.08 377.14,488.11"]; + 373 -- 701 [weight="1.0", pos="404.21,462.65 411.33,461.85 420.22,460.85 427.59,460.03"]; + 373 -- 641 [weight="1.0", pos="381.28,459.97 367.74,454.51 343.98,444.94 330.45,439.48"]; + 373 -- 622 [weight="1.0", pos="380.24,467.37 375.39,468.79 369.82,470.42 365.36,471.73"]; + 373 -- 601 [weight="5.0", pos="403.48,466.87 420.44,470.8 451.63,478.04 472.26,482.83"]; + 328 -- 637 [weight="1.0", pos="294.23,513.25 308.06,521.6 338.61,540.04 353.02,548.74"]; + 328 -- 390 [weight="1.0", pos="289.76,513.89 295.68,525.04 310.16,552.34 316.83,564.91"]; + 328 -- 597 [weight="1.0", pos="285.7,514.26 282.32,526.41 274,556.3 270.28,569.65"]; + 328 -- 537 [weight="1.0", pos="275.27,507.77 268.45,507.07 259.84,506.18 252.62,505.44"]; + 239 -- 661 [weight="1.0", pos="624.08,482.06 629.57,482.45 636.4,482.93 642.16,483.34"]; + 239 -- 492 [weight="1.0", pos="614.43,476.23 614.69,473.64 615.01,470.5 615.27,467.88"]; + 158 -- 342 [weight="1.0", pos="857.65,130.69 847.52,133.65 833.4,137.78 823.6,140.64"]; + 464 -- 664 [weight="1.0", pos="1007.9,542.85 1012.4,539.5 1018.3,535.01 1022.7,531.73"]; + 464 -- 657 [weight="1.0", pos="1011.3,543.8 1022.3,539.54 1040.1,532.61 1050.8,528.44"]; + 464 -- 618 [weight="1.0", pos="1003.6,542.35 1007.7,531.6 1017.1,506.99 1021.1,496.38"]; + 464 -- 558 [weight="1.0", pos="1001.6,542.24 1001.4,534.88 1001.1,521.65 1000.9,514.45"]; + 269 -- 538 [weight="1.0", pos="780.88,706.99 776.95,715.08 769.61,730.19 765.79,738.05"]; + 269 -- 369 [weight="2.0", pos="784.93,696.09 786.03,691.82 787.55,685.91 788.67,681.56"]; + 269 -- 679 [weight="1.0", pos="794.02,705.71 800.73,708.36 809.42,711.79 816.18,714.46"]; + 22 -- 35 [weight="1.0", pos="1239.8,343.18 1246.2,343.14 1253.5,343.09 1259.8,343.05"]; + 22 -- 60 [weight="1.0", pos="1220.5,348.91 1217.6,356.35 1212.5,369.36 1209.8,376.43"]; + 22 -- 272 [weight="1.0", pos="1216.2,348.43 1207.7,355.08 1193.2,366.6 1184.9,373.15"]; + 22 -- 631 [weight="2.0", pos="1227.2,349.01 1229.3,351.6 1231.7,354.64 1233.8,357.2"]; + 22 -- 411 [weight="1.0", pos="1232.7,338.62 1239.3,335.59 1247.8,331.64 1254.4,328.62"]; + 42 -- 667 [weight="2.0", pos="597.09,670.51 584.94,688.66 546.2,746.57 532.95,766.36"]; + 42 -- 261 [weight="3.0", pos="618.77,665.22 640.03,665.48 675.69,665.91 700.94,666.21"]; + 42 -- 680 [weight="2.0", pos="597.18,659.43 592.53,652.2 584.46,639.69 579.88,632.57"]; + 42 -- 102 [weight="3.0", pos="605.58,659.57 615.5,648.36 638.26,622.65 649.97,609.43"]; + 42 -- 358 [weight="1.0", pos="618.92,665.33 629.15,665.52 641.96,665.75 652.51,665.94"]; + 42 -- 163 [weight="2.0", pos="605.97,659.31 608.33,656.73 611.1,653.69 613.43,651.14"]; + 42 -- 215 [weight="1.0", pos="590.48,660.45 577.88,654.87 556.8,645.55 545.12,640.38"]; + 42 -- 608 [weight="1.0", pos="584.41,667.52 562.67,670.86 524.88,676.66 506.59,679.47"]; + 42 -- 171 [weight="1.0", pos="611.81,669.53 617.4,671.82 624.01,674.52 628.85,676.51"]; + 42 -- 485 [weight="2.0", pos="582.73,664.31 580.07,664.21 577.28,664.1 574.49,663.99"]; + 42 -- 422 [weight="3.0", pos="601.18,659.46 602.24,645.22 605.04,607.37 606.21,591.49"]; + 363 -- 677 [weight="1.0", pos="799.11,357.96 791.26,363.4 776.6,373.57 766.9,380.3"]; + 644 -- 677 [weight="1.0", pos="768.77,517.23 766.75,494.27 760.04,417.99 757.94,394.15"]; + 644 -- 691 [weight="1.0", pos="769.15,530.54 768.79,542.3 768.06,566.4 767.74,577.05"]; + 235 -- 326 [weight="1.0", pos="370.67,70.34 369.09,67.753 367.18,64.615 365.59,62.011"]; + 301 -- 600 [weight="1.0", pos="405.84,710.1 417.42,692.55 458.98,629.54 472.92,608.4"]; + 6 -- 315 [weight="1.0", pos="770.05,625.18 773.01,624.92 776.21,624.65 779.3,624.38"]; + 6 -- 56 [weight="1.0", pos="770.19,625.77 783.29,625.27 804.28,624.48 820.02,623.89"]; + 6 -- 102 [weight="3.0", pos="747.15,623.56 729.18,619.1 693.07,610.14 672.49,605.03"]; + 6 -- 139 [weight="3.0", pos="745.73,625.97 742.88,625.91 739.72,625.84 736.44,625.77"]; + 6 -- 358 [weight="1.0", pos="749.44,630.22 734.19,637.39 702.13,652.46 684.66,660.67"]; + 436 -- 478 [weight="1.0", pos="320.79,407.6 355.65,410.93 443.65,419.33 484.23,423.21"]; + 36 -- 99 [weight="1.0", pos="1116.5,359.28 1113.4,361.96 1109.7,365.21 1106.7,367.87"]; + 36 -- 687 [weight="2.0", pos="1107.2,354.22 1090.7,354.25 1064.5,354.3 1048.8,354.32"]; + 36 -- 47 [weight="1.0", pos="1130.7,349.49 1139.8,344.4 1154.2,336.38 1162.9,331.46"]; + 213 -- 569 [weight="1.0", pos="258.09,1189.5 253.83,1182.8 246.26,1170.8 241.94,1164"]; + 213 -- 406 [weight="1.0", pos="261.57,1189.1 262.4,1176.4 264.49,1144.2 265.3,1131.7"]; + 213 -- 684 [weight="1.0", pos="265.56,1189.3 273.98,1179.1 292.48,1156.9 300.68,1147"]; + 518 -- 677 [weight="1.0", pos="874.82,369.35 856.49,372.1 810.21,379.03 781.51,383.33"]; + 94 -- 306 [weight="2.0", pos="1429.3,10.528 1423.6,13.799 1415.5,18.414 1409.6,21.825"]; + 94 -- 629 [weight="2.0", pos="1440.8,11.839 1443.8,15.365 1447.7,19.93 1450.5,23.249"]; + 94 -- 298 [weight="1.0", pos="1436.1,12.127 1436,19.86 1435.7,33.685 1435.6,41.392"]; + 497 -- 527 [weight="3.0", pos="516.03,398.25 525.13,385.58 545.71,356.92 555.15,343.77"]; + 497 -- 666 [weight="2.0", pos="498.18,402.22 473.88,398.1 422.48,389.4 395.14,384.77"]; + 497 -- 616 [weight="1.0", pos="498.77,401.71 460.88,393.47 349.36,369.24 310.51,360.8"]; + 497 -- 649 [weight="4.0", pos="500.44,408.59 483.19,414.96 450.02,427.22 431.41,434.1"]; + 51 -- 432 [weight="1.0", pos="938.55,285.26 930.98,294.07 914.34,313.45 905.58,323.65"]; + 456 -- 677 [weight="2.0", pos="902.65,441.32 876.16,431.41 805.03,404.81 773.15,392.89"]; + 456 -- 686 [weight="1.0", pos="907.56,439.97 900.2,432.78 886.98,419.87 879.77,412.84"]; + 439 -- 689 [weight="1.0", pos="1195.2,405.44 1197,408.5 1199.3,412.39 1201.1,415.44"]; + 439 -- 668 [weight="1.0", pos="1183.8,404.16 1179.1,406.3 1173.2,408.96 1168.4,411.08"]; + 362 -- 594 [weight="1.0", pos="615.74,373.89 631.81,362.84 673.35,334.29 691.35,321.92"]; + 296 -- 667 [weight="1.0", pos="525.3,841.19 525.92,827.85 527.45,795.01 528.13,780.35"]; + 296 -- 660 [weight="1.0", pos="528.73,852.38 533,858.61 539.96,868.77 544.07,874.76"]; + 296 -- 576 [weight="1.0", pos="522.2,852.37 517.99,860.39 510.11,875.36 506.02,883.15"]; + 265 -- 434 [weight="1.0", pos="230.62,337.85 229.57,340.38 228.3,343.42 227.23,345.99"]; + 265 -- 616 [weight="1.0", pos="241.97,336.31 253.48,340.82 273.19,348.54 285.63,353.41"]; + 608 -- 667 [weight="1.0", pos="497.81,686.03 503.23,701.41 519.77,748.4 526.03,766.17"]; + 411 -- 536 [weight="1.0", pos="1249.6,321.2 1244.4,320.23 1238.7,319.17 1234,318.28"]; + 411 -- 631 [weight="1.0", pos="1260.7,329.36 1255.8,336.67 1247,349.67 1241.9,357.08"]; + 411 -- 475 [weight="1.0", pos="1264.7,318.16 1265,311.13 1265.7,299.36 1266,292.4"]; + 171 -- 261 [weight="1.0", pos="643.72,678.21 657.03,676.42 684.15,672.77 704.49,670.03"]; + 171 -- 680 [weight="1.0", pos="631.01,675.21 620.32,665.81 594.01,642.67 582.26,632.34"]; + 478 -- 659 [weight="1.0", pos="500.59,418.65 490.09,404.07 464.96,369.2 454.47,354.65"]; + 478 -- 581 [weight="1.0", pos="508.42,418.61 512.16,410.6 518.37,397.32 521.73,390.13"]; + 384 -- 630 [weight="1.0", pos="1303.3,608.57 1298.1,607.23 1292,605.65 1286.4,604.21"]; + 398 -- 596 [weight="1.0", pos="780.39,456.98 808.22,459.53 859.21,464.21 885.36,466.61"]; + 398 -- 481 [weight="1.0", pos="760.33,449.68 758.97,440.28 756.23,421.32 754.91,412.17"]; + 398 -- 510 [weight="1.0", pos="746.56,451.39 741.51,450.06 736,448.62 731.47,447.43"]; + 398 -- 488 [weight="1.0", pos="764.7,449.61 767.77,444.8 772.16,437.92 775.22,433.12"]; + 398 -- 458 [weight="4.0", pos="744.3,458.28 736.9,459.63 728.19,461.22 720.59,462.61"]; + 537 -- 637 [weight="1.0", pos="247.66,507.83 270.39,517 327.19,539.89 350.55,549.31"]; + 537 -- 597 [weight="1.0", pos="240.21,509.15 245.6,521.97 259.54,555.11 265.58,569.47"]; + 407 -- 636 [weight="1.0", pos="1093.4,623.06 1104.3,620.49 1121.1,616.52 1132.4,613.85"]; + 445 -- 687 [weight="1.0", pos="1078.8,281.33 1070.7,294.91 1048.9,331.84 1039.7,347.34"]; + 200 -- 310 [weight="1.0", pos="860.79,528.8 827.45,535.75 749.29,552.02 718.36,558.47"]; + 200 -- 386 [weight="1.0", pos="893.24,524.52 897.76,524.24 902.5,523.95 906.54,523.7"]; + 200 -- 614 [weight="1.0", pos="863.51,530.35 834.55,541.19 764.37,567.45 739.07,576.92"]; + 200 -- 555 [weight="1.0", pos="859.67,527.6 832.38,530.92 778.22,537.5 749.91,540.95"]; + 200 -- 505 [weight="1.0", pos="885.22,531.57 895.25,538.26 911.3,548.97 920.56,555.15"]; + 200 -- 454 [weight="1.0", pos="881.05,518.7 895.68,497.71 939.55,434.77 952.9,415.62"]; + 200 -- 644 [weight="6.0", pos="859.07,525.3 841.37,525.01 813.61,524.56 793.65,524.23"]; + 200 -- 433 [weight="1.0", pos="884.3,531.82 897.84,542.32 925.01,563.37 938.48,573.82"]; + 200 -- 691 [weight="1.0", pos="865.43,531.23 843.85,542.49 795.84,567.56 776.2,577.81"]; + 200 -- 405 [weight="1.0", pos="880.61,518.35 882.13,515.84 883.79,513.07 885.19,510.75"]; + 200 -- 284 [weight="1.0", pos="858.94,525.33 829.13,524.9 767.81,524.02 731.39,523.49"]; + 200 -- 380 [weight="1.0", pos="863.49,530.5 847.62,536.61 820.77,546.95 805.71,552.75"]; + 18 -- 310 [weight="1.0", pos="740.11,596.98 731.8,588.4 717.52,573.65 710.15,566.03"]; + 18 -- 139 [weight="1.0", pos="734.96,609.48 729.38,612.31 722.66,615.71 716.94,618.61"]; + 18 -- 102 [weight="2.0", pos="722.59,602.98 707.4,602.58 688.1,602.06 674.41,601.7"]; + 18 -- 614 [weight="1.0", pos="741.59,596.78 738.97,593.14 735.8,588.74 733.4,585.42"]; + 18 -- 555 [weight="1.0", pos="744.83,596.68 741.82,584.4 735.62,559.1 732.97,548.27"]; + 18 -- 358 [weight="1.0", pos="739.18,609.86 725.17,621.75 694.77,647.55 680.44,659.71"]; + 18 -- 20 [weight="1.0", pos="746.69,597.08 746.88,588.99 747.21,575.34 747.4,567.6"]; + 18 -- 200 [weight="2.0", pos="756.71,597.49 781.08,582.83 842.52,545.87 866.47,531.46"]; + 18 -- 644 [weight="2.0", pos="748.4,597.09 752.65,582.2 763.05,545.86 767.39,530.68"]; + 18 -- 691 [weight="1.0", pos="753.19,596.87 756.27,593.75 759.87,590.11 762.7,587.25"]; + 18 -- 284 [weight="2.0", pos="742.91,597.03 734.76,582.15 714.97,546.04 706.42,530.45"]; + 18 -- 380 [weight="1.0", pos="753.21,597.14 762.92,587.74 780.7,570.51 789.46,562.02"]; + 125 -- 319 [weight="1.0", pos="482.9,461.44 463.11,442.91 397.8,381.76 376.41,361.74"]; + 125 -- 440 [weight="1.0", pos="492.13,472.29 502.92,489.24 535.69,540.71 546.63,557.9"]; + 125 -- 663 [weight="1.0", pos="487.5,461.23 483.95,443.94 473.18,391.45 469.58,373.92"]; + 125 -- 378 [weight="2.0", pos="494.13,472.31 505.4,483.58 531.03,509.24 542.43,520.66"]; + 329 -- 358 [weight="1.0", pos="714.08,778.8 707.22,760.17 683.33,695.25 675.32,673.48"]; + 44 -- 200 [weight="1.0", pos="919.9,539.02 912.11,536.62 899.78,532.83 890.21,529.88"]; + 587 -- 700 [weight="1.0", pos="531.08,502.47 532.61,499.74 534.48,496.41 536,493.71"]; + 667 -- 680 [weight="1.0", pos="530.78,766.04 539.05,740.89 567.06,655.71 574.57,632.88"]; + 27 -- 397 [weight="1.0", pos="938.27,777.08 941.98,785.42 948.95,801.07 952.49,809.01"]; + 27 -- 194 [weight="1.0", pos="939.01,777.03 940.52,779.6 942.3,782.65 943.77,785.16"]; + 27 -- 68 [weight="1.0", pos="935.11,765.95 933.49,752.96 929.5,720.77 927.77,706.86"]; + 27 -- 290 [weight="1.0", pos="933.81,777.25 931.34,784.31 927.17,796.23 924.81,802.99"]; + 27 -- 222 [weight="1.0", pos="944.64,776.22 952.61,780.44 964.22,786.58 971.8,790.59"]; + 27 -- 404 [weight="2.0", pos="945.32,767.07 951,764.4 958.18,761.03 963.88,758.35"]; + 272 -- 391 [weight="1.0", pos="1174.8,372.59 1172.2,368.76 1168.6,363.69 1166,359.87"]; + 272 -- 439 [weight="1.0", pos="1182.1,383.7 1184.3,387.31 1187.1,391.96 1189.2,395.43"]; + 272 -- 689 [weight="1.0", pos="1182,383.61 1186.9,391.86 1196.1,407.28 1200.9,415.29"]; + 272 -- 631 [weight="1.0", pos="1189.3,375.32 1199,372.79 1213.6,369.03 1224.2,366.27"]; + 272 -- 668 [weight="1.0", pos="1175.9,383.49 1172.5,390.35 1166.6,402.13 1163,409.11"]; + 190 -- 600 [weight="1.0", pos="417.01,677.6 427.94,663.84 459.3,624.36 472.04,608.33"]; + 190 -- 301 [weight="1.0", pos="411.56,687.46 409.6,693.56 406.33,703.75 404.4,709.78"]; + 298 -- 306 [weight="3.0", pos="1428.3,42.61 1422.7,39.214 1415,34.511 1409.3,31.045"]; + 298 -- 629 [weight="2.0", pos="1440.6,41.695 1443.6,38.657 1447.2,34.885 1450,32.017"]; + 95 -- 102 [weight="2.0", pos="743.97,642.01 727.4,634.22 689.47,616.4 669.7,607.11"]; + 95 -- 139 [weight="2.0", pos="743.72,642.19 736.86,639.22 726.98,634.94 718.81,631.4"]; + 95 -- 358 [weight="1.0", pos="742,648.4 728.65,651.85 704.91,657.98 688.98,662.09"]; + 534 -- 539 [weight="1.0", pos="923.44,611.94 924.28,609.63 925.27,606.92 926.12,604.6"]; + 400 -- 630 [weight="1.0", pos="1340.2,621.11 1326.5,616.97 1301.4,609.43 1285.2,604.55"]; + 20 -- 200 [weight="1.0", pos="760.83,558.04 785.23,551.18 836.99,536.62 862.06,529.57"]; + 20 -- 644 [weight="1.0", pos="750.76,556.18 754.69,549.34 761.34,537.77 765.53,530.48"]; + 20 -- 310 [weight="1.0", pos="729.44,561.51 726.49,561.47 723.47,561.43 720.61,561.38"]; + 20 -- 691 [weight="1.0", pos="753.01,567.39 756.08,570.52 759.85,574.39 762.79,577.4"]; + 20 -- 102 [weight="1.0", pos="737.18,566.31 720.59,573.56 688.1,587.75 670.06,595.63"]; + 20 -- 284 [weight="2.0", pos="741.26,556.4 733.21,549.5 719.25,537.54 710.43,529.98"]; + 20 -- 380 [weight="1.0", pos="764.8,560.04 768.37,559.68 772.14,559.3 775.77,558.93"]; + 20 -- 614 [weight="1.0", pos="742.31,567.27 739.77,569.93 736.75,573.09 734.31,575.65"]; + 20 -- 555 [weight="1.0", pos="742.88,556.3 740.69,553.72 738.1,550.67 735.97,548.16"]; + 601 -- 615 [weight="2.0", pos="465.98,488.91 440,490.22 401.85,492.15 383.91,493.05"]; + 601 -- 693 [weight="1.0", pos="488.97,480.56 481.82,466.89 466.16,436.94 459.87,424.91"]; + 601 -- 712 [weight="2.0", pos="472.47,492.32 417.93,505.19 267.86,540.59 212.96,553.55"]; + 601 -- 622 [weight="2.0", pos="467.15,485.04 436.48,482 386.59,477.05 366.23,475.04"]; + 601 -- 649 [weight="1.0", pos="482.55,481.02 467.89,471.52 440.9,454.01 426.88,444.92"]; + 601 -- 701 [weight="1.0", pos="481.37,481.09 471.69,475.53 457.97,467.64 449.52,462.79"]; + 601 -- 677 [weight="1.0", pos="508,481.72 554.78,463.94 695.05,410.62 741.89,392.82"]; + 601 -- 641 [weight="2.0", pos="474.83,482.17 439.57,471.5 361.67,447.91 332.03,438.94"]; + 601 -- 642 [weight="1.0", pos="476.95,481.77 452.17,472.61 404.63,455.04 383.38,447.19"]; + 151 -- 398 [weight="1.0", pos="740.01,430.77 744.59,436.07 751.69,444.29 756.38,449.71"]; + 151 -- 596 [weight="1.0", pos="745.45,428.14 773.83,435.4 855.49,456.28 888.09,464.62"]; + 151 -- 481 [weight="1.0", pos="740.64,420.53 743.4,417.77 746.78,414.39 749.47,411.69"]; + 151 -- 510 [weight="1.0", pos="731.85,430.9 729.91,433.67 727.53,437.05 725.6,439.8"]; + 151 -- 488 [weight="1.0", pos="746.92,426.12 751.42,426.32 756.7,426.55 761.65,426.77"]; + 151 -- 458 [weight="1.0", pos="731.15,430.9 725.08,438.17 714.15,451.28 707.49,459.27"]; + 151 -- 214 [weight="2.0", pos="724.53,424.69 713.89,423.8 697.52,422.44 684.32,421.33"]; + 529 -- 667 [weight="3.0", pos="502.1,817.71 507.51,808.54 518.55,789.85 524.49,779.81"]; + 504 -- 567 [weight="1.0", pos="395.65,284.65 412.09,289.24 441.32,297.41 457.99,302.07"]; + 504 -- 659 [weight="1.0", pos="388.32,286.07 400.06,297.92 430.38,328.54 443.52,341.8"]; + 504 -- 648 [weight="1.0", pos="375.76,285.65 370.1,288.82 362.55,293.06 357.35,295.98"]; + 504 -- 584 [weight="1.0", pos="388.23,286.53 392.18,290.97 397.77,297.25 401.53,301.49"]; + 504 -- 550 [weight="1.0", pos="381.46,286.25 377.12,296.6 367.17,320.28 362.89,330.48"]; + 504 -- 698 [weight="1.0", pos="398.51,283.12 402.36,283.6 406.55,284.12 410.56,284.62"]; + 557 -- 599 [weight="3.0", pos="123.08,646.5 102.21,645.31 70.051,643.47 48.297,642.23"]; + 475 -- 536 [weight="1.0", pos="1258.8,291.89 1250.6,297.5 1237.7,306.41 1229.9,311.77"]; + 397 -- 404 [weight="1.0", pos="956.27,808.77 959.69,797.87 967.69,772.41 971.47,760.36"]; + 294 -- 328 [weight="1.0", pos="445.86,537.22 410.08,530.85 328.4,516.32 298.45,510.99"]; + 294 -- 497 [weight="1.0", pos="465.66,532.97 474.16,509.18 500.99,434.06 509.17,411.17"]; + 294 -- 390 [weight="6.0", pos="446.67,543.85 418.7,549.96 362.12,562.31 335.19,568.19"]; + 294 -- 597 [weight="10.0", pos="445.78,543.47 410.06,550.08 328.17,565.22 289.45,572.38"]; + 294 -- 303 [weight="12.0", pos="444.42,538.37 432.64,537.16 417.52,535.61 406.09,534.44"]; + 294 -- 600 [weight="1.0", pos="464.71,547.29 467.47,558.96 472.98,582.25 475.79,594.11"]; + 294 -- 695 [weight="1.0", pos="450.53,545.6 410.53,562.6 286.37,615.37 251.32,630.27"]; + 294 -- 537 [weight="1.0", pos="445.39,537.42 401.98,530.42 290.74,512.46 251.76,506.17"]; + 294 -- 601 [weight="1.0", pos="466.92,533.38 472.55,523.34 482.98,504.76 488.67,494.62"]; + 294 -- 527 [weight="1.0", pos="466.5,533.04 481.62,501.35 541.9,374.99 556.73,343.9"]; + 294 -- 568 [weight="2.0", pos="451.27,545.9 419.89,560.89 334.79,601.53 307.71,614.46"]; + 294 -- 521 [weight="1.0", pos="453.51,546.72 421.85,568.14 320.64,636.58 292.8,655.4"]; + 294 -- 692 [weight="1.0", pos="448.97,545.1 408.53,558.97 292.52,598.75 255.12,611.58"]; + 294 -- 566 [weight="1.0", pos="454.51,546.68 432.22,563.39 372.75,607.98 354.71,621.5"]; + 294 -- 637 [weight="2.0", pos="444.78,542.63 424.79,545.21 393.19,549.28 375,551.63"]; + 294 -- 478 [weight="1.0", pos="465.69,533.08 473.36,512.22 495.51,451.94 502.9,431.84"]; + 275 -- 527 [weight="2.0", pos="610.76,265.81 601.33,279.05 575.68,315.03 564.91,330.13"]; + 275 -- 651 [weight="1.0", pos="606.36,260.02 601.76,259.56 595.92,258.97 590.9,258.47"]; + 157 -- 170 [weight="1.0", pos="173.21,531.59 193.22,518.85 244.14,486.42 265.45,472.85"]; + 157 -- 294 [weight="3.0", pos="190.09,537.15 248.49,537.82 392.19,539.46 444.02,540.06"]; + 157 -- 390 [weight="2.0", pos="182.76,540.83 213.68,547.71 276.72,561.74 305.44,568.13"]; + 157 -- 597 [weight="2.0", pos="177.62,541.69 196.95,549.05 233.65,563.02 253.98,570.76"]; + 157 -- 303 [weight="3.0", pos="190.23,536.39 236.29,535.54 332.7,533.76 372,533.04"]; + 157 -- 227 [weight="1.0", pos="169.97,542.54 179.76,553.58 201.25,577.8 210.78,588.55"]; + 65 -- 445 [weight="1.0", pos="1112.4,271.85 1105.9,272.78 1098.4,273.85 1092.4,274.7"]; + 65 -- 687 [weight="1.0", pos="1121.6,275.03 1105.4,289.93 1059.6,332.21 1042.3,348.16"]; + 65 -- 93 [weight="1.0", pos="1122.7,275.39 1119.3,279.56 1114.7,285.17 1111.4,289.16"]; + 65 -- 399 [weight="1.0", pos="1139.6,265.94 1146,263.94 1154,261.47 1160.6,259.42"]; + 65 -- 133 [weight="1.0", pos="1132.6,264.38 1138.7,258.2 1148.6,248.11 1154.5,242.16"]; + 197 -- 214 [weight="1.0", pos="648.39,363.57 651.24,374.55 657.87,400.07 661.1,412.49"]; + 203 -- 567 [weight="1.0", pos="525.07,313.54 512.84,311.76 496.83,309.42 485.32,307.74"]; + 203 -- 527 [weight="2.0", pos="547.64,321.84 549.77,324.44 552.31,327.54 554.54,330.25"]; + 203 -- 351 [weight="1.0", pos="548.37,321.52 562.92,336.02 602.99,375.92 618.67,391.54"]; + 261 -- 385 [weight="8.0", pos="715.04,660.59 685.79,649.07 621.98,623.93 592.78,612.43"]; + 261 -- 680 [weight="3.0", pos="710.12,661.42 677.87,653.17 615.54,637.22 588.94,630.42"]; + 261 -- 579 [weight="1.0", pos="759.24,665.73 795.74,664.66 856.78,662.89 882.56,662.14"]; + 261 -- 341 [weight="1.0", pos="729.3,673.69 726.85,692.69 720.19,744.18 718.07,760.57"]; + 261 -- 358 [weight="7.0", pos="701.11,666.43 698.32,666.42 695.54,666.41 692.87,666.4"]; + 261 -- 427 [weight="8.0", pos="714.13,672.55 695.1,679.63 663.78,691.27 646.06,697.86"]; + 261 -- 494 [weight="1.0", pos="713.23,672.26 670.54,686.57 559.74,723.7 524.53,735.49"]; + 261 -- 422 [weight="2.0", pos="720.12,659.84 696.85,644.34 639.71,606.28 616.64,590.91"]; + 261 -- 667 [weight="1.0", pos="717.91,673.07 680.94,692.58 571.49,750.36 538.19,767.94"]; + 261 -- 339 [weight="1.0", pos="737.6,659.64 751.22,646.84 780.09,619.73 792.87,607.73"]; + 261 -- 291 [weight="1.0", pos="721.19,673.45 696.03,692.61 625.61,746.23 604.74,762.13"]; + 261 -- 484 [weight="3.0", pos="725.1,659.63 706.95,635.06 645.88,552.35 628.6,528.96"]; + 261 -- 424 [weight="1.0", pos="727.18,673.63 717.43,696.32 687.07,766.95 678.73,786.37"]; + 261 -- 706 [weight="2.0", pos="723.83,673.58 708.21,690.69 668.37,734.35 653.98,750.11"]; + 261 -- 395 [weight="1.0", pos="725.3,673.81 716.5,686.76 698.28,713.58 690.73,724.69"]; + 261 -- 357 [weight="3.0", pos="718.39,673.08 691.88,687.68 628.24,722.72 605.31,735.35"]; + 261 -- 409 [weight="2.0", pos="752.8,662.04 770.09,658.58 793.52,653.89 809.05,650.77"]; + 261 -- 284 [weight="2.0", pos="728.8,659.25 724.01,634.58 708.49,554.59 703.76,530.2"]; + 261 -- 485 [weight="1.0", pos="701.26,666 666.44,665.31 608.45,664.16 574.5,663.49"]; + 138 -- 274 [weight="1.0", pos="502.24,175.85 507.79,172.73 515.62,168.34 521.4,165.1"]; + 138 -- 546 [weight="1.0", pos="504.79,181.79 515.77,184.26 534.28,188.42 548.7,191.67"]; + 138 -- 511 [weight="1.0", pos="504.86,177.64 518.13,174.77 542.1,169.58 554.84,166.83"]; + 81 -- 170 [weight="1.0", pos="354.25,568.98 340.81,551.62 295.33,492.89 280.09,473.21"]; + 81 -- 328 [weight="1.0", pos="352.94,569.2 339.86,557.23 305.24,525.53 292.22,513.61"]; + 81 -- 390 [weight="1.0", pos="346.09,573.1 343.24,572.91 340.15,572.71 337.12,572.52"]; + 81 -- 303 [weight="1.0", pos="361.86,568.82 367.46,561.44 377.89,547.68 384.14,539.44"]; + 81 -- 597 [weight="1.0", pos="345.95,574.19 332.86,574.54 311.58,575.11 294.63,575.56"]; + 81 -- 108 [weight="1.0", pos="357.05,568.83 355.51,560.97 352.56,545.83 351.02,537.93"]; + 81 -- 288 [weight="1.0", pos="349.94,569.9 341.52,565.78 328.39,559.36 319.89,555.2"]; + 81 -- 184 [weight="1.0", pos="348.71,570.61 321.58,561.14 242.93,533.68 217.27,524.72"]; + 81 -- 537 [weight="1.0", pos="350.88,569.7 329.69,557.35 267.32,521.02 245.59,508.36"]; + 81 -- 294 [weight="1.0", pos="367.72,570.76 386.21,564.85 426.59,551.94 448.39,544.96"]; + 81 -- 172 [weight="1.0", pos="347.48,571.19 323.82,565.19 266.46,550.65 238.86,543.65"]; + 81 -- 637 [weight="1.0", pos="358.74,568.71 359.14,565.78 359.64,562.11 360.06,559.1"]; + 137 -- 402 [weight="2.0", pos="607.17,352.27 616.65,339.35 639.46,308.27 648.66,295.73"]; + 137 -- 334 [weight="1.0", pos="621.63,359.41 637.73,360.59 661.11,362.31 679,363.62"]; + 137 -- 497 [weight="1.0", pos="593.5,362.84 575.99,371.74 538.65,390.71 521.08,399.65"]; + 137 -- 594 [weight="1.0", pos="613.68,353.39 631.92,345.49 668.81,329.51 687.87,321.26"]; + 137 -- 214 [weight="2.0", pos="608.48,363.72 619.5,375.02 644.16,400.3 656.14,412.58"]; + 60 -- 272 [weight="1.0", pos="1199.9,380.45 1197,380.13 1193.8,379.77 1190.7,379.42"]; + 60 -- 631 [weight="1.0", pos="1213.7,377.74 1218.4,374.86 1225,370.78 1230.2,367.6"]; + 459 -- 543 [weight="2.0", pos="969.19,286.16 970.21,283.41 971.45,280.08 972.48,277.31"]; + 432 -- 535 [weight="1.0", pos="911.29,325.5 930.81,317.38 970.27,300.96 987.43,293.83"]; + 432 -- 588 [weight="5.0", pos="904.76,323.38 915.48,308.22 941.13,271.92 951.84,256.77"]; + 432 -- 512 [weight="2.0", pos="891.8,324.06 875.57,311.74 839.31,284.2 823.2,271.96"]; + 432 -- 623 [weight="3.0", pos="914.15,327.57 931.61,324.31 961.37,318.76 981.41,315.02"]; + 432 -- 459 [weight="2.0", pos="909.56,324.69 923.36,316.76 948.42,302.36 960.42,295.46"]; + 432 -- 449 [weight="4.0", pos="896.39,323.13 886.75,303.82 860.19,250.55 851.34,232.81"]; + 432 -- 543 [weight="2.0", pos="907.63,324.19 922.22,312.76 953.69,288.1 967.63,277.17"]; + 284 -- 661 [weight="1.0", pos="693.98,516.3 684.38,508.55 668.89,496.05 660.34,489.16"]; + 284 -- 339 [weight="2.0", pos="710.63,529.78 729.28,544.95 774.44,581.67 792.02,595.96"]; + 284 -- 310 [weight="1.0", pos="702.96,530.42 703.56,537.85 704.47,549.17 705,555.8"]; + 284 -- 346 [weight="1.0", pos="723.63,518.29 741.6,514.25 766.24,508.71 778.06,506.05"]; + 284 -- 614 [weight="1.0", pos="705.73,530.1 711.34,541.82 722.46,565.08 727.36,575.34"]; + 284 -- 555 [weight="1.0", pos="712.31,529.87 716.43,532.7 721.11,535.9 724.85,538.46"]; + 284 -- 315 [weight="1.0", pos="708.74,529.94 725.9,548.47 772.92,599.23 789.27,616.88"]; + 284 -- 447 [weight="1.0", pos="712.33,516.21 718.4,512.03 726.02,506.78 731.52,502.99"]; + 284 -- 527 [weight="1.0", pos="696.97,516 674.32,486.39 587.23,372.51 565.15,343.64"]; + 284 -- 644 [weight="2.0", pos="731.55,523.4 736.07,523.45 740.68,523.51 745.07,523.56"]; + 284 -- 433 [weight="1.0", pos="723.6,528.02 771.5,539.19 887.12,566.15 930.04,576.16"]; + 284 -- 691 [weight="1.0", pos="709.85,529.87 723.1,541.9 750.39,566.69 762.08,577.3"]; + 284 -- 351 [weight="2.0", pos="698,515.98 684.26,493.75 642.17,425.58 629.04,404.32"]; + 284 -- 380 [weight="1.0", pos="718.44,528.99 737.02,535.83 767.13,546.91 783.37,552.89"]; + 624 -- 682 [weight="1.0", pos="808.83,1029.4 820.32,1038.2 845.1,1057.4 857.12,1066.6"]; + 346 -- 447 [weight="1.0", pos="777.73,503.48 770.94,502.52 760.59,501.05 752.27,499.87"]; + 435 -- 458 [weight="1.0", pos="678.08,497.8 682.94,491.3 691.32,480.1 696.72,472.88"]; + 427 -- 494 [weight="1.0", pos="618.15,707.26 594.04,714.61 546.44,729.13 524.8,735.74"]; + 427 -- 706 [weight="2.0", pos="634.72,709.31 637.87,719.84 644.04,740.41 647.02,750.31"]; + 677 -- 686 [weight="1.0", pos="780.23,391.06 805.34,395.54 844.55,402.55 863.61,405.95"]; + 186 -- 687 [weight="1.0", pos="1083.5,325.66 1073.7,331.53 1055.4,342.46 1044.5,349"]; + 186 -- 338 [weight="2.0", pos="1085.6,316.72 1082.3,313.29 1078,308.73 1074.8,305.3"]; + 110 -- 661 [weight="1.0", pos="770.9,484.43 744.52,484.37 690.61,484.26 666.41,484.21"]; + 110 -- 512 [weight="1.0", pos="787,477.19 791.47,443.71 810.05,304.68 814.34,272.55"]; + 110 -- 339 [weight="1.0", pos="786.85,491.8 789.24,513.07 796.13,574.54 798.43,595.05"]; + 110 -- 612 [weight="1.0", pos="791.64,491.16 800.91,502.22 819.22,524.05 827.54,533.98"]; + 110 -- 486 [weight="1.0", pos="801.17,484.94 821.32,485.58 856.5,486.71 874.46,487.28"]; + 110 -- 593 [weight="1.0", pos="773.94,480.23 749.03,471.5 692.43,451.68 669.67,443.7"]; + 110 -- 160 [weight="4.0", pos="771.51,482.6 734.01,477.78 633.33,464.85 583.2,458.41"]; + 110 -- 604 [weight="1.0", pos="796.82,489.35 806.15,493.57 819.48,499.61 828.16,503.54"]; + 110 -- 454 [weight="1.0", pos="797.23,479.58 828.84,465.8 918.32,426.8 947.48,414.09"]; + 110 -- 135 [weight="1.0", pos="795.36,490.17 815.03,502.19 860.43,529.95 879.03,541.32"]; + 110 -- 315 [weight="1.0", pos="786.48,491.52 788.03,515.46 793.04,593.3 794.54,616.46"]; + 110 -- 200 [weight="2.0", pos="797.09,489.5 814.31,497.35 847.36,512.42 864.81,520.37"]; + 110 -- 432 [weight="1.0", pos="790.92,477.83 809.57,452.58 876.08,362.51 894.92,337.01"]; + 110 -- 433 [weight="2.0", pos="795.58,490.15 824.05,507.1 908.07,557.14 936.73,574.21"]; + 110 -- 284 [weight="2.0", pos="775.09,489.51 759.94,496.5 732.59,509.13 716.09,516.74"]; + 147 -- 213 [weight="1.0", pos="291.7,1186.7 286.23,1188.1 279.46,1189.8 273.69,1191.3"]; + 147 -- 569 [weight="1.0", pos="293.19,1180.6 281.23,1175.8 259.95,1167.4 247.82,1162.5"]; + 147 -- 406 [weight="1.0", pos="298.89,1179.2 292.02,1168.3 275.59,1142.3 268.72,1131.5"]; + 147 -- 684 [weight="1.0", pos="302.33,1179 302.86,1170.9 303.87,1155.4 304.4,1147.3"]; + 339 -- 604 [weight="1.0", pos="801.78,595.31 808.84,577.67 828.29,529.02 834.77,512.82"]; + 339 -- 491 [weight="2.0", pos="813.19,599.1 828.96,596.06 854.54,591.13 870.88,587.99"]; + 323 -- 421 [weight="1.0", pos="98.868,532.56 85.61,532.29 67.213,531.92 55.28,531.68"]; + 323 -- 582 [weight="1.0", pos="110.07,539.06 106.2,543.72 100.96,550.05 97.332,554.42"]; + 323 -- 690 [weight="1.0", pos="111.86,526.35 109.69,522.09 106.91,516.63 104.95,512.78"]; + 323 -- 382 [weight="3.0", pos="103.48,537.49 90.416,542.62 69.449,550.87 56.836,555.83"]; + 323 -- 683 [weight="1.0", pos="98.963,532.06 96.087,531.91 93.128,531.76 90.359,531.62"]; + 323 -- 601 [weight="2.0", pos="130.92,531 189.66,523.94 396.36,499.12 467.98,490.52"]; + 531 -- 625 [weight="1.0", pos="1136.8,588.24 1144.1,597.81 1157.5,615.34 1164.1,623.98"]; + 531 -- 630 [weight="3.0", pos="1149.5,584 1175.1,587.39 1222.3,593.63 1249.3,597.2"]; + 268 -- 350 [weight="1.0", pos="329.77,199.09 330.95,191.67 332.86,179.74 333.94,173.01"]; + 268 -- 483 [weight="1.0", pos="320.44,200.09 314.43,196.05 306.41,190.66 300.9,186.95"]; + 268 -- 372 [weight="2.0", pos="332.4,212.19 338.78,223.54 351.79,246.66 357.72,257.2"]; + 268 -- 336 [weight="1.0", pos="339.17,200.89 346.55,197.52 356.34,193.05 363.27,189.89"]; + 69 -- 596 [weight="1.0", pos="1081.5,534.92 1051.3,523.72 947.87,485.26 913.2,472.37"]; + 69 -- 531 [weight="1.0", pos="1094.6,543.02 1102.3,550.99 1117.2,566.55 1125.7,575.3"]; + 69 -- 257 [weight="1.0", pos="1082.7,534.07 1063.2,523.12 1008.3,492.36 986.36,480.09"]; + 69 -- 153 [weight="1.0", pos="1080.3,535.66 1058,530.14 1002.1,516.25 974.28,509.37"]; + 345 -- 682 [weight="2.0", pos="845.96,1020.3 849.78,1031.3 858.13,1055.2 861.95,1066.2"]; + 345 -- 624 [weight="1.0", pos="831.38,1017.7 826.45,1018.9 820.8,1020.3 815.83,1021.5"]; + 172 -- 328 [weight="1.0", pos="233.19,535.09 245.71,529.03 267.31,518.59 279.03,512.92"]; + 172 -- 390 [weight="1.0", pos="236.57,544.03 255.04,550.08 288.62,561.07 307.14,567.13"]; + 172 -- 303 [weight="1.0", pos="247.26,538.75 281.09,537.31 342.35,534.71 372.1,533.45"]; + 172 -- 597 [weight="1.0", pos="229.77,544.84 237.87,551.42 251.99,562.9 260.74,570.01"]; + 172 -- 288 [weight="1.0", pos="243.94,542.4 260.71,544.56 283.96,547.56 298.37,549.42"]; + 172 -- 184 [weight="1.0", pos="219.26,534.48 217.27,532.01 214.9,529.08 212.95,526.67"]; + 172 -- 537 [weight="1.0", pos="225.66,534.48 228.43,527.63 233.24,515.77 235.97,509.02"]; + 172 -- 294 [weight="1.0", pos="247.81,539.81 295.5,539.91 400.52,540.14 443.81,540.23"]; + 172 -- 637 [weight="1.0", pos="245.28,541.93 273.56,544.75 322.18,549.6 346.34,552.01"]; + 191 -- 456 [weight="3.0", pos="832.7,459.47 852.94,455.85 883.79,450.34 900.71,447.31"]; + 191 -- 677 [weight="2.0", pos="808.22,456.52 797.81,442.29 773.05,408.46 762.36,393.86"]; + 191 -- 200 [weight="1.0", pos="819.74,469.7 831.86,481.68 857.11,506.66 869.33,518.74"]; + 191 -- 527 [weight="1.0", pos="801.44,457.26 759.02,436.12 611.88,362.79 570.78,342.31"]; + 191 -- 405 [weight="1.0", pos="823.45,468.92 839.14,477.77 868.31,494.24 881.52,501.7"]; + 191 -- 284 [weight="1.0", pos="801.96,468.98 781.09,480.32 735.92,504.85 714.34,516.57"]; + 191 -- 257 [weight="1.0", pos="835.45,464.64 869.53,467.12 933.35,471.76 962.26,473.86"]; + 191 -- 686 [weight="1.0", pos="820.06,456.69 832.61,445.5 858.47,422.46 869.55,412.59"]; + 319 -- 559 [weight="1.0", pos="381.26,350.8 408.84,340.09 477.33,313.52 499.57,304.89"]; + 319 -- 370 [weight="1.0", pos="359.28,349.93 337,338.25 284.56,310.75 263.06,299.48"]; + 319 -- 659 [weight="1.0", pos="384.65,353.97 398.44,352.72 418.8,350.88 433.07,349.59"]; + 319 -- 565 [weight="1.0", pos="359.6,349.96 345.77,342.5 321.02,329.16 308.2,322.25"]; + 319 -- 638 [weight="1.0", pos="355.4,352.91 336.6,349.7 303.61,344.07 284.82,340.86"]; + 319 -- 567 [weight="1.0", pos="379.99,350.19 399.75,340.46 442.33,319.48 461.21,310.18"]; + 319 -- 352 [weight="1.0", pos="380.52,350.46 392.31,345.2 410.99,336.89 422.88,331.59"]; + 319 -- 663 [weight="1.0", pos="384.15,357.22 399.83,359.26 425.03,362.52 443.79,364.96"]; + 319 -- 653 [weight="1.0", pos="379.23,349.98 403.87,336.32 468.65,300.4 490.67,288.2"]; + 319 -- 361 [weight="1.0", pos="357.69,350.67 336,342.16 290.46,324.28 271.25,316.75"]; + 319 -- 527 [weight="4.0", pos="384.51,353.89 419.86,350.48 508.31,341.95 544.37,338.47"]; + 319 -- 648 [weight="1.0", pos="367.18,348.01 363.44,336.52 356.27,314.5 353.01,304.51"]; + 319 -- 372 [weight="2.0", pos="368.88,348.06 367.18,330.13 362.82,284.14 361.31,268.19"]; + 319 -- 584 [weight="2.0", pos="374.58,348.48 381.93,338.44 395.46,319.94 401.95,311.07"]; + 319 -- 550 [weight="1.0", pos="366.43,348.1 365.26,345.41 363.96,342.43 362.91,340.02"]; + 319 -- 698 [weight="1.0", pos="375.29,348.77 387.18,335.13 414.36,303.96 424.91,291.86"]; + 319 -- 504 [weight="1.0", pos="370.91,348.23 373.7,333.46 380.08,299.71 382.55,286.6"]; + 224 -- 690 [weight="1.0", pos="85.059,507.85 88.8,507.88 92.492,507.92 95.511,507.95"]; + 224 -- 323 [weight="1.0", pos="74.923,512.29 83.485,516.67 96.315,523.23 105.18,527.77"]; + 224 -- 311 [weight="1.0", pos="73.521,502.92 77.829,500.24 83.189,496.92 87.472,494.26"]; + 187 -- 560 [weight="1.0", pos="1125.9,442.34 1132.4,445.63 1141.3,450.12 1147.8,453.41"]; + 187 -- 496 [weight="1.0", pos="1130.8,436.34 1133.9,435.99 1137.2,435.61 1140.4,435.25"]; + 187 -- 668 [weight="1.0", pos="1125.4,433.46 1133.3,429.26 1144.9,423.02 1152.5,418.93"]; + 404 -- 433 [weight="1.0", pos="972.5,747.21 968.21,719.68 951.76,614.14 947.47,586.6"]; + 404 -- 579 [weight="1.0", pos="968.35,747.78 954.09,731.14 914.34,684.78 899.93,667.97"]; + 282 -- 618 [weight="1.0", pos="1020.3,595.48 1020.8,576.62 1022.4,515.47 1022.9,496.82"]; + 282 -- 558 [weight="1.0", pos="1019,595.34 1015.4,578.72 1005.3,530.72 1001.9,514.7"]; + 282 -- 460 [weight="1.0", pos="1019.2,606.82 1016.4,622.65 1008.6,666.78 1005.8,682.78"]; + 282 -- 396 [weight="1.0", pos="1023,595.51 1028.6,584.71 1040.9,560.99 1046.3,550.47"]; + 282 -- 464 [weight="1.0", pos="1018.2,595.34 1014.6,584.87 1007,562.82 1003.5,552.75"]; + 282 -- 453 [weight="1.0", pos="1022.7,595.49 1030.8,578.07 1055.4,524.83 1063.3,507.83"]; + 282 -- 664 [weight="1.0", pos="1020.8,595.28 1022.4,581.3 1026.4,545.83 1027.9,532.51"]; + 282 -- 657 [weight="1.0", pos="1023,595.59 1030.4,581.41 1050.1,543.62 1057.2,529.95"]; + 420 -- 596 [weight="1.0", pos="927.95,465.73 924.95,466.01 921.57,466.32 918.25,466.62"]; + 121 -- 467 [weight="1.0", pos="1080.1,459.21 1066.8,451.64 1044.2,438.8 1032.6,432.18"]; + 121 -- 560 [weight="1.0", pos="1112.9,462.7 1121.9,461.69 1132,460.56 1140.3,459.64"]; + 121 -- 503 [weight="1.0", pos="1077.3,459.71 1069.8,456.58 1060.4,452.73 1053.5,449.89"]; + 121 -- 416 [weight="1.0", pos="1096.2,471.79 1105.5,482.79 1124,504.62 1132.1,514.25"]; + 121 -- 321 [weight="1.0", pos="1110,469.12 1115.7,470.3 1121.9,471.56 1127.4,472.67"]; + 121 -- 496 [weight="1.0", pos="1102.4,459.51 1115.2,453.3 1135.5,443.48 1147.2,437.82"]; + 121 -- 257 [weight="1.0", pos="1067.7,467.17 1045.1,469.1 1011.4,472 992.14,473.66"]; + 121 -- 187 [weight="2.0", pos="1096.8,458.87 1101.4,454.08 1107.7,447.6 1112.1,443.11"]; + 121 -- 668 [weight="1.0", pos="1099.2,459.01 1113.2,448.82 1141,428.68 1153.7,419.53"]; + 212 -- 512 [weight="1.0", pos="756.98,239.05 768.32,244.28 789.86,254.21 803.33,260.42"]; + 212 -- 533 [weight="1.0", pos="751.76,240.47 752.94,242.95 754.37,245.97 755.55,248.47"]; + 212 -- 318 [weight="1.0", pos="752.09,240.57 758.63,252.92 775.52,284.8 782.84,298.62"]; + 352 -- 659 [weight="1.0", pos="438.71,332.92 440.73,335.7 443.1,338.95 445.12,341.72"]; + 352 -- 567 [weight="1.0", pos="443.68,321.07 449.41,317.76 456.64,313.6 462.15,310.42"]; + 352 -- 360 [weight="2.0", pos="429.96,320.17 417.86,301.4 382.67,246.81 371.45,229.4"]; + 352 -- 619 [weight="1.0", pos="427.22,320.6 409.4,305.09 361.94,263.77 344.76,248.82"]; + 352 -- 648 [weight="1.0", pos="421.17,322.33 403.53,316.53 372.52,306.33 358.53,301.73"]; + 352 -- 372 [weight="1.0", pos="427.07,320.46 412.74,307.96 380.34,279.7 366.86,267.94"]; + 352 -- 550 [weight="1.0", pos="417.85,328.52 401.33,330.49 376.7,333.42 366.06,334.69"]; + 352 -- 584 [weight="1.0", pos="426.01,320.77 421.14,317.26 415.08,312.9 410.84,309.84"]; + 352 -- 504 [weight="1.0", pos="427.07,320.29 416.88,311.14 398.19,294.38 388.98,286.13"]; + 352 -- 478 [weight="1.0", pos="438.78,333.06 451.65,350.89 487.54,400.59 500.55,418.6"]; + 352 -- 616 [weight="1.0", pos="419.43,329.94 392.62,336.05 336.12,348.93 310.33,354.81"]; + 352 -- 698 [weight="1.0", pos="433.29,320.04 432.34,312.3 430.77,299.55 429.88,292.34"]; + 126 -- 306 [weight="2.0", pos="1360.2,14.755 1368.8,17.182 1382.9,21.126 1392.2,23.742"]; + 126 -- 580 [weight="1.0", pos="1353.6,18.225 1354.8,23.899 1356.5,32.584 1357.6,38.094"]; + 238 -- 682 [weight="1.0", pos="868.07,1048.7 867.16,1053.8 865.82,1061.3 864.91,1066.3"]; + 238 -- 345 [weight="1.0", pos="864.22,1037.6 859.78,1032.6 853.23,1025.1 848.8,1020.1"]; + 238 -- 462 [weight="1.0", pos="885.58,1046.4 899.37,1049.1 918.98,1052.9 933.07,1055.7"]; + 251 -- 593 [weight="1.0", pos="684.9,394.45 679.64,404.11 668.21,425.06 662.83,434.93"]; + 577 -- 712 [weight="1.0", pos="181.54,606.07 183.85,596.02 188.86,574.22 191.22,563.94"]; + 369 -- 538 [weight="1.0", pos="787.89,681.47 782.72,694.45 770.2,725.87 765.33,738.1"]; + 369 -- 679 [weight="1.0", pos="794.67,681 801.8,689.33 815.57,705.45 822.57,713.64"]; + 279 -- 521 [weight="1.0", pos="308.86,642.72 304,646.39 297.27,651.47 292.3,655.22"]; + 279 -- 294 [weight="1.0", pos="322.25,633.29 346.6,617.2 426.46,564.45 453.78,546.4"]; + 209 -- 661 [weight="2.0", pos="624.33,496.68 630.71,494.01 638.88,490.59 645.06,488"]; + 209 -- 492 [weight="1.0", pos="614.49,495.25 614.78,487.94 615.29,475.27 615.58,468.07"]; + 209 -- 239 [weight="1.0", pos="614.16,495.14 614.11,492.43 614.06,489.23 614.01,486.59"]; + 498 -- 687 [weight="1.0", pos="1060.6,354.53 1056.6,354.5 1052.3,354.47 1048.5,354.44"]; + 357 -- 427 [weight="2.0", pos="602.19,734.49 608.73,727.71 619.86,716.18 626.73,709.05"]; + 357 -- 385 [weight="3.0", pos="596.07,734.24 592.97,712.78 582.09,637.25 578.68,613.61"]; + 216 -- 387 [weight="1.0", pos="1373.4,1168.2 1384.1,1166.2 1399.2,1163.3 1409.3,1161.3"]; + 216 -- 245 [weight="1.0", pos="1365.1,1165.6 1373.3,1156.9 1389.6,1139.4 1397.6,1131"]; + 216 -- 381 [weight="1.0", pos="1369.3,1174.9 1374.9,1177.5 1381.9,1180.8 1387.1,1183.2"]; + 372 -- 567 [weight="1.0", pos="371.71,266.92 392.75,275.15 438.66,293.11 459.67,301.32"]; + 372 -- 659 [weight="1.0", pos="366.35,267.99 382.02,283.04 426.47,325.74 443.24,341.84"]; + 372 -- 648 [weight="1.0", pos="359.31,268.38 357.48,275.48 354.4,287.46 352.65,294.25"]; + 372 -- 584 [weight="1.0", pos="366.28,267.97 375.26,276.67 392.89,293.75 401.15,301.75"]; + 372 -- 550 [weight="1.0", pos="360.79,268.35 360.81,282.13 360.84,317.09 360.86,330.22"]; + 372 -- 504 [weight="1.0", pos="367.5,268.13 370.75,270.79 374.62,273.96 377.75,276.51"]; + 372 -- 698 [weight="1.0", pos="372.39,266.77 384.9,271.21 404.7,278.23 417.32,282.71"]; + 574 -- 712 [weight="1.0", pos="264.84,490.79 251.12,503.61 213.33,538.92 198.54,552.73"]; + 574 -- 601 [weight="1.0", pos="283.19,486.14 318.87,486.38 417.42,487.05 465.52,487.38"]; + 170 -- 328 [weight="1.0", pos="276.96,473.33 279.38,481.78 283.52,496.24 285.71,503.89"]; + 170 -- 597 [weight="1.0", pos="274.68,473.25 273.5,492.69 270.03,550.07 268.84,569.64"]; + 170 -- 390 [weight="3.0", pos="277.9,473.28 286.02,492.08 309.35,546.09 317.47,564.89"]; + 170 -- 303 [weight="6.0", pos="285.61,472.82 307.47,485.45 357.5,514.38 379.06,526.83"]; + 170 -- 288 [weight="1.0", pos="277.94,473.35 285,489.67 303.11,531.55 309.39,546.08"]; + 170 -- 184 [weight="1.0", pos="267.5,473.05 253.96,484.36 225.91,507.79 214.29,517.5"]; + 170 -- 537 [weight="1.0", pos="268.62,473.21 261.32,480.54 249.59,492.32 242.98,498.97"]; + 170 -- 294 [weight="2.0", pos="288.89,472.13 323.83,485.8 415.31,521.6 449.71,535.06"]; + 170 -- 319 [weight="1.0", pos="280.7,460.09 297.47,440.33 346.97,381.97 363.85,362.07"]; + 170 -- 172 [weight="1.0", pos="270.31,473.47 260.14,487.87 236.47,521.42 227.27,534.45"]; + 170 -- 637 [weight="1.0", pos="281.52,473.24 297.88,489.79 340.77,533.16 355.66,548.22"]; + 33 -- 294 [weight="1.0", pos="351.49,602.49 372.24,590.91 428.66,559.45 452.35,546.24"]; + 33 -- 566 [weight="1.0", pos="345.24,611.93 346.07,614.6 347.09,617.85 347.91,620.5"]; + 33 -- 303 [weight="1.0", pos="346.93,601.52 355.02,588.38 375.9,554.41 384.95,539.69"]; + 63 -- 71 [weight="1.0", pos="385.86,114.51 390.73,117.85 397.26,122.33 402.32,125.79"]; + 63 -- 520 [weight="1.0", pos="386.99,105.07 391.81,102.25 397.88,98.698 402.51,95.987"]; + 7 -- 548 [weight="1.0", pos="1487.6,239.1 1483.3,237.4 1478,235.28 1473.7,233.59"]; + 7 -- 83 [weight="1.0", pos="1503,239.12 1507.2,237.48 1512.4,235.46 1516.7,233.81"]; + 7 -- 470 [weight="2.0", pos="1502.9,245.2 1506.7,246.71 1511.3,248.55 1515.2,250.14"]; + 7 -- 325 [weight="1.0", pos="1487.7,245.21 1482.3,247.45 1475.1,250.38 1470.7,252.2"]; + 227 -- 577 [weight="1.0", pos="206.26,598.46 200.72,601.21 193.75,604.67 188.43,607.31"]; + 227 -- 712 [weight="1.0", pos="211.91,588.33 207.66,581.77 200.63,570.92 196.3,564.24"]; + 227 -- 390 [weight="1.0", pos="228.77,591.03 248.38,586.83 284.97,579 305.44,574.62"]; + 227 -- 597 [weight="1.0", pos="226.73,590.14 234.25,587.63 244.28,584.3 252.61,581.53"]; + 227 -- 303 [weight="2.0", pos="226.37,590.05 256.83,579.33 342.94,549.01 376.05,537.36"]; + 227 -- 431 [weight="1.0", pos="201.94,591.23 186,588.13 159.73,583.03 144.05,579.98"]; + 227 -- 501 [weight="1.0", pos="202.35,596.68 177.26,602.05 122.63,613.73 95.008,619.64"]; + 227 -- 294 [weight="1.0", pos="228.46,591.07 270.05,582.06 400.09,553.91 446.44,543.87"]; + 80 -- 427 [weight="1.0", pos="558.03,686.81 574.74,690.39 599.52,695.69 615.9,699.19"]; + 80 -- 261 [weight="1.0", pos="562.73,681.05 597.73,678.02 665.03,672.2 702.8,668.94"]; + 80 -- 90 [weight="2.0", pos="550.93,688.02 558.11,691.37 567.49,695.76 574.52,699.04"]; + 80 -- 385 [weight="1.0", pos="542.88,677.49 549.52,663.92 566.69,628.86 574.13,613.67"]; + 80 -- 102 [weight="1.0", pos="547.86,677.63 568.3,663.35 624.06,624.4 647.07,608.33"]; + 26 -- 164 [weight="1.0", pos="899.28,174.76 899.23,188.11 899.12,224.38 899.07,239.61"]; + 26 -- 62 [weight="1.0", pos="903.74,164.64 905.92,162.14 908.56,159.13 910.78,156.58"]; + 600 -- 634 [weight="1.0", pos="474.16,608.51 471.82,613.46 468.75,619.93 466.64,624.38"]; + 600 -- 601 [weight="5.0", pos="478.47,594.3 481.18,573.85 488.97,515.13 491.69,494.68"]; + 99 -- 687 [weight="1.0", pos="1089,369.43 1077.2,366.1 1059.3,361.04 1047.5,357.71"]; + 457 -- 513 [weight="1.0", pos="1326.1,939.25 1321.5,938.97 1316.1,938.63 1311.1,938.32"]; + 72 -- 373 [weight="1.0", pos="408.61,479.06 405.43,476.28 401.47,472.81 398.15,469.91"]; + 72 -- 476 [weight="1.0", pos="422.95,487.89 427.45,489.87 432.93,492.28 437.39,494.25"]; + 72 -- 73 [weight="1.0", pos="417.63,489.58 421.03,495.32 426.37,504.34 430.03,510.5"]; + 72 -- 601 [weight="2.0", pos="425.6,484.61 436.08,485.07 452.13,485.78 465.9,486.38"]; + 383 -- 497 [weight="1.0", pos="358.6,405.43 390.19,405.23 465.78,404.77 497.33,404.57"]; + 383 -- 649 [weight="1.0", pos="353.07,409.5 366.31,415.54 391.5,427.04 406.28,433.79"]; + 264 -- 527 [weight="1.0", pos="549.23,284.78 551.37,295.12 556.11,317.98 558.54,329.7"]; + 297 -- 591 [weight="1.0", pos="1254.2,629.77 1265.6,634.19 1284.3,641.46 1295.6,645.84"]; + 297 -- 630 [weight="4.0", pos="1249.5,620.71 1253.6,616.54 1259.2,610.71 1263.5,606.28"]; + 297 -- 531 [weight="1.0", pos="1234.8,622.21 1214.5,614.21 1167.1,595.57 1144.4,586.62"]; + 297 -- 415 [weight="1.0", pos="1247.8,631.52 1252.2,638.69 1259.8,651.1 1264.2,658.15"]; + 108 -- 170 [weight="1.0", pos="344.64,528.11 331.34,516.38 297,486.07 282.12,472.94"]; + 108 -- 328 [weight="1.0", pos="340.75,529.34 328.73,524.77 307.91,516.87 296.07,512.37"]; + 108 -- 390 [weight="1.0", pos="346.14,537.91 340.79,544.85 331.15,557.36 325.27,564.98"]; + 108 -- 303 [weight="1.0", pos="363.3,532.82 366.15,532.8 369.19,532.79 372.15,532.78"]; + 108 -- 597 [weight="1.0", pos="342.2,537.03 327.69,544.75 296.53,561.32 279.73,570.26"]; + 108 -- 288 [weight="1.0", pos="341.49,536.92 335.12,539.94 326.45,544.06 320.08,547.09"]; + 108 -- 184 [weight="1.0", pos="337.02,531.85 309.08,529.67 243.84,524.57 218.95,522.63"]; + 108 -- 537 [weight="1.0", pos="338.88,529.99 317.74,524.53 272,512.72 250.14,507.08"]; + 108 -- 294 [weight="1.0", pos="362.99,533.71 382.94,535.02 421.25,537.53 444.24,539.04"]; + 108 -- 172 [weight="1.0", pos="336.97,533.58 315.75,534.73 273.53,537.03 247,538.48"]; + 108 -- 637 [weight="1.0", pos="352.75,538.06 354.35,541.11 356.37,544.96 357.99,548.04"]; + 64 -- 666 [weight="1.0", pos="390.72,400.06 387.96,396.32 384.16,391.19 381.29,387.3"]; + 64 -- 497 [weight="1.0", pos="406.06,409.19 428.76,412.47 478.56,412.21 500.64,408.66"]; + 64 -- 649 [weight="1.0", pos="393.1,410.16 394.17,416.65 400.57,427.11 406.86,433.66"]; + 232 -- 284 [weight="2.0", pos="661.56,465.01 669.65,476.53 688.56,503.43 697.51,516.16"]; + 232 -- 351 [weight="2.0", pos="654.74,453.91 648.67,442.46 635.02,416.69 628.58,404.52"]; + 10 -- 385 [weight="1.0", pos="574.61,488.67 575.17,510.19 576.91,577.45 577.47,599.44"]; + 10 -- 492 [weight="1.0", pos="585.31,476.9 591.82,473.86 600.02,470.03 606.27,467.11"]; + 10 -- 239 [weight="1.0", pos="590.5,481.72 594.94,481.65 599.64,481.57 603.65,481.51"]; + 10 -- 700 [weight="1.0", pos="559.55,484.77 556.04,485.43 552.38,486.11 549.13,486.72"]; + 10 -- 294 [weight="2.0", pos="564.56,487.15 543.79,498.02 495.76,523.15 474.06,534.52"]; + 10 -- 144 [weight="1.0", pos="572.17,488.42 570.62,492.79 568.61,498.48 567.19,502.5"]; + 10 -- 214 [weight="1.0", pos="582.61,476.22 599.12,464.57 636.39,438.27 653.74,426.04"]; + 10 -- 570 [weight="1.0", pos="574.58,488.72 574.85,501.41 575.42,528.58 575.65,539.86"]; + 10 -- 587 [weight="1.0", pos="564.62,487.43 556.03,492.2 543.71,499.04 535.82,503.42"]; + 10 -- 110 [weight="1.0", pos="590.69,482.17 630.46,482.64 732.25,483.83 770.87,484.28"]; + 10 -- 661 [weight="3.0", pos="590.58,482.43 605.78,482.85 628.21,483.47 641.97,483.85"]; + 10 -- 497 [weight="3.0", pos="569.29,475.64 557.44,461.04 528.34,425.18 516.6,410.7"]; + 10 -- 303 [weight="1.0", pos="561.12,485.63 527.28,494.9 438.23,519.3 403.44,528.83"]; + 10 -- 160 [weight="2.0", pos="569.7,475.64 566.59,471.48 562.51,466.03 559.29,461.73"]; + 10 -- 209 [weight="2.0", pos="584.9,486.95 591.17,489.93 599.07,493.68 605.09,496.54"]; + 10 -- 527 [weight="6.0", pos="573.78,475.37 571.41,451.43 563.26,369.35 560.77,344.28"]; + 10 -- 284 [weight="1.0", pos="587.17,486.07 610.18,493.46 658.7,509.04 684.83,517.44"]; + 10 -- 478 [weight="1.0", pos="567.3,476.12 554.2,465.36 526.41,442.53 512.95,431.48"]; + 550 -- 567 [weight="1.0", pos="365.86,333.95 382.12,329.54 433.86,315.52 457.96,308.99"]; + 550 -- 659 [weight="1.0", pos="365.9,336.03 378.75,337.88 413.21,342.83 433.74,345.78"]; + 550 -- 648 [weight="1.0", pos="359.54,330.31 357.74,323.52 354.53,311.43 352.71,304.55"]; + 550 -- 584 [weight="1.0", pos="365.32,332.39 373.54,327.02 391.08,315.56 400.06,309.7"]; + 550 -- 698 [weight="1.0", pos="365.35,332.13 376.99,323.89 408.24,301.77 422.25,291.86"]; + 225 -- 613 [weight="1.0", pos="702.07,709.58 705.16,709.35 708.33,709.11 711.33,708.88"]; + 225 -- 358 [weight="2.0", pos="681.36,705.21 679.54,697.06 676.25,682.3 674.28,673.49"]; + 142 -- 261 [weight="1.0", pos="709.3,742.29 713.19,728.2 723.77,689.91 728.22,673.83"]; + 142 -- 358 [weight="1.0", pos="705.52,742.27 699.41,728.14 682.8,689.72 675.83,673.59"]; + 207 -- 281 [weight="1.0", pos="621.32,313.52 615.99,316.57 609.03,320.55 603.81,323.53"]; + 207 -- 214 [weight="1.0", pos="630.83,314.01 636.25,331.84 654.55,391.97 660.81,412.56"]; + 263 -- 340 [weight="1.0", pos="514.49,267.63 514.1,282.41 512.96,325.64 512.54,341.33"]; + 394 -- 659 [weight="2.0", pos="549.88,374.68 527.71,368.79 485.68,357.63 463.79,351.82"]; + 394 -- 594 [weight="1.0", pos="575.95,373.21 601.55,361.41 662.79,333.16 688.35,321.37"]; + 394 -- 478 [weight="1.0", pos="556.68,384.64 545.42,393.54 524.61,409.99 513.24,418.97"]; + 394 -- 581 [weight="1.0", pos="547.99,381.23 542.76,382.09 537.17,383 532.71,383.73"]; + 167 -- 630 [weight="1.0", pos="1311.1,595.09 1305,595.8 1297.5,596.67 1290.6,597.47"]; + 505 -- 644 [weight="1.0", pos="916.12,557.3 888.89,551.09 820.91,535.59 787.91,528.07"]; + 505 -- 579 [weight="1.0", pos="925.99,565.43 920.34,582.78 902.86,636.51 896.76,655.26"]; + 360 -- 619 [weight="1.0", pos="360.52,228.87 356.14,231.74 350.63,235.35 346.2,238.24"]; + 692 -- 695 [weight="1.0", pos="242.92,621.51 242.75,623.89 242.56,626.63 242.39,628.95"]; + 133 -- 399 [weight="1.0", pos="1163.2,242.24 1165.3,244.73 1167.7,247.76 1169.8,250.27"]; + 513 -- 553 [weight="2.0", pos="1281.2,936.99 1272.5,936.76 1261.6,936.47 1253.4,936.26"]; + 290 -- 397 [weight="1.0", pos="934.1,810.1 937.66,810.76 941.58,811.48 945.03,812.12"]; + 290 -- 404 [weight="1.0", pos="927.69,803.06 936.97,793.09 957.72,770.79 967.81,759.96"]; + 123 -- 559 [weight="1.0", pos="500.83,319.18 502.09,315.49 503.72,310.74 504.93,307.19"]; + 123 -- 319 [weight="1.0", pos="485.52,328.07 460.74,333.89 407.91,346.32 383.04,352.16"]; + 123 -- 527 [weight="2.0", pos="513.06,327.72 522.66,329.61 535.32,332.09 545.08,334.01"]; + 304 -- 527 [weight="1.0", pos="556.47,222.21 557.09,242.15 559.13,307.76 559.82,329.72"]; + 304 -- 704 [weight="1.0", pos="551.05,221.7 545.99,226.83 538.4,234.51 533.61,239.37"]; + 50 -- 124 [weight="2.0", pos="1100.7,600.98 1095.5,598.04 1088.6,594.18 1083.2,591.14"]; + 50 -- 636 [weight="1.0", pos="1121.2,607.42 1124.4,607.93 1127.8,608.47 1131.1,608.98"]; + 50 -- 101 [weight="1.0", pos="1100.2,601.3 1085.3,594.02 1054.7,579.07 1038.9,571.34"]; + 50 -- 285 [weight="1.0", pos="1110.3,611.27 1112.5,619.34 1116.5,633.82 1118.7,641.72"]; + 50 -- 407 [weight="2.0", pos="1102.4,610.34 1098.3,613.5 1093,617.61 1088.9,620.76"]; + 476 -- 601 [weight="1.0", pos="456.61,495.52 461.15,494.52 466.6,493.31 471.85,492.15"]; + 406 -- 569 [weight="1.0", pos="261.42,1131.6 256.33,1137.7 247.82,1147.9 242.78,1154"]; + 406 -- 684 [weight="1.0", pos="275.1,1130.3 280.98,1132.7 288.53,1135.7 294.54,1138.1"]; + 396 -- 464 [weight="1.0", pos="1029.2,546.21 1024.6,546.43 1019.9,546.66 1015.6,546.86"]; + 396 -- 664 [weight="1.0", pos="1043.4,540.36 1040.3,537.71 1036.6,534.46 1033.7,531.87"]; + 396 -- 453 [weight="1.0", pos="1051,540.02 1054.3,531.74 1060.6,515.71 1063.8,507.57"]; + 396 -- 657 [weight="1.0", pos="1051.7,540.13 1053.4,537.02 1055.5,533.08 1057.1,529.99"]; + 396 -- 618 [weight="1.0", pos="1046.6,540.29 1041.7,530.07 1030.4,506.83 1025.5,496.49"]; + 396 -- 558 [weight="1.0", pos="1042.3,540.28 1032.8,533.2 1015.5,520.37 1006.5,513.7"]; + 510 -- 596 [weight="1.0", pos="731.92,446.22 761.51,450.04 849.34,461.36 885.71,466.05"]; + 56 -- 538 [weight="1.0", pos="836.86,629.55 823.06,650.87 779.07,718.8 766.64,738"]; + 56 -- 118 [weight="1.0", pos="836.04,629.78 814.14,659.05 726.84,775.74 705.35,804.45"]; + 56 -- 679 [weight="1.0", pos="840.07,629.67 837.42,647.55 830.11,696.86 827.68,713.29"]; + 56 -- 198 [weight="1.0", pos="844.56,629.64 852.38,644.15 871.03,678.78 878.02,691.76"]; + 56 -- 102 [weight="6.0", pos="821.37,620.76 784.97,616.43 707.73,607.25 673.79,603.21"]; + 56 -- 139 [weight="4.0", pos="819.96,623.4 797.62,623.72 762.06,624.24 736.25,624.61"]; + 56 -- 358 [weight="3.0", pos="824.59,627.32 792.32,635.6 721.07,653.88 688.94,662.13"]; + 56 -- 269 [weight="2.0", pos="836.33,629.52 825.28,644.6 797.82,682.06 787.51,696.12"]; + 56 -- 315 [weight="3.0", pos="819.89,623.06 816.95,623.06 813.98,623.05 811.16,623.05"]; + 56 -- 180 [weight="1.0", pos="841.75,629.72 843.37,644.82 847.32,681.6 848.8,695.39"]; + 56 -- 433 [weight="1.0", pos="853.97,617.81 874.3,609.49 913.54,593.44 933.74,585.18"]; + 56 -- 110 [weight="1.0", pos="838.39,616.41 829.12,593.04 798.21,515.17 788.78,491.41"]; + 56 -- 647 [weight="1.0", pos="842.83,629.76 848.26,650.09 864.57,711.06 869.53,729.61"]; + 56 -- 369 [weight="2.0", pos="834.8,629.55 824.62,640.09 804.61,660.8 795.24,670.49"]; + 56 -- 534 [weight="1.0", pos="861.76,621.58 875.18,620.6 892.4,619.34 904.91,618.43"]; + 56 -- 540 [weight="1.0", pos="840.47,629.71 838.5,652.56 832,727.8 830.26,747.94"]; + 56 -- 135 [weight="1.0", pos="844.98,616.55 853.87,601.75 875.4,565.94 883.78,552"]; + 56 -- 539 [weight="1.0", pos="857,618.73 874.17,614.04 901.07,606.68 916.37,602.5"]; + 56 -- 284 [weight="1.0", pos="832.37,616.84 807.7,599.05 737.3,548.27 711.77,529.85"]; + 66 -- 261 [weight="1.0", pos="628.2,790.03 644.91,769.82 705.51,696.47 724.5,673.5"]; + 66 -- 424 [weight="1.0", pos="645.03,793.68 652.81,793.11 661.23,792.48 667.42,792.03"]; + 449 -- 512 [weight="1.0", pos="843.81,232.39 837.76,239.5 827.14,251.94 820.69,259.51"]; + 658 -- 677 [weight="1.0", pos="788.53,330.81 782.6,341.47 768.27,367.24 761.28,379.81"]; + 54 -- 352 [weight="1.0", pos="421.06,238.42 423.37,254.07 430.47,302.06 433.11,319.86"]; + 274 -- 546 [weight="1.0", pos="534.44,165.4 541.87,171.96 555.39,183.9 563.29,190.87"]; + 274 -- 511 [weight="1.0", pos="541.9,162.32 546,162.83 550.46,163.39 554.24,163.86"]; + 365 -- 432 [weight="1.0", pos="929.33,314.85 923.59,317.85 916.09,321.77 910.11,324.9"]; + 306 -- 629 [weight="3.0", pos="1411.8,26.646 1422.6,26.902 1439.2,27.299 1448.1,27.511"]; + 306 -- 580 [weight="1.0", pos="1392.9,29.818 1385.8,32.63 1375.6,36.612 1368.2,39.515"]; + 659 -- 698 [weight="1.0", pos="447.55,341.54 443.45,329.34 434.72,303.35 430.98,292.19"]; + 70 -- 467 [weight="1.0", pos="1051.9,479.69 1046.4,469.11 1033.4,443.94 1027.8,433.08"]; + 70 -- 503 [weight="1.0", pos="1053,479.46 1051,472.1 1047.2,458.48 1045.2,451.04"]; + 70 -- 257 [weight="1.0", pos="1046.4,483.53 1033.5,481.93 1008,478.77 991.79,476.76"]; + 70 -- 121 [weight="1.0", pos="1060.7,481.15 1065.9,478.38 1073.4,474.39 1079.6,471.1"]; + 469 -- 480 [weight="1.0", pos="242.52,444.47 249.71,443.37 258.48,442.03 265.77,440.92"]; + 469 -- 601 [weight="1.0", pos="242.48,448.74 285.23,455.38 415.66,475.62 469.26,483.93"]; + 166 -- 257 [weight="1.0", pos="984.38,433.98 982.9,442.43 979.99,458.93 978.36,468.21"]; + 88 -- 128 [weight="1.0", pos="1002.8,639.15 993.01,644.48 977.61,652.91 968.18,658.07"]; + 88 -- 433 [weight="1.0", pos="1005.8,629.2 993.75,619.24 966.89,596.96 953.84,586.13"]; + 141 -- 201 [weight="1.0", pos="677.02,163.82 695.03,173.99 742,200.51 761.34,211.44"]; + 141 -- 517 [weight="1.0", pos="681.17,157.65 685.42,156.85 690.31,155.94 694.83,155.1"]; + 30 -- 170 [weight="2.0", pos="313.03,524.24 305.03,512.12 287.68,485.83 279.5,473.44"]; + 30 -- 328 [weight="1.0", pos="309.95,525.36 304.94,521.76 298.36,517.03 293.56,513.58"]; + 30 -- 288 [weight="1.0", pos="315.44,537.09 314.63,540.01 313.7,543.39 312.96,546.11"]; + 30 -- 537 [weight="1.0", pos="307.51,527.33 292.64,522.32 264.33,512.8 248.83,507.58"]; + 30 -- 294 [weight="5.0", pos="328.18,531.32 352.96,532.97 413.5,536.99 444.34,539.03"]; + 30 -- 637 [weight="1.0", pos="325.63,535 333.26,539 344.45,544.86 352.15,548.9"]; + 30 -- 157 [weight="3.0", pos="305.78,531.06 281.22,532.07 223.01,534.47 189.61,535.84"]; + 30 -- 303 [weight="3.0", pos="328.48,530.93 340.18,531.27 358.66,531.82 372.17,532.22"]; + 30 -- 597 [weight="2.0", pos="311.24,536.19 302.18,544.67 285.03,560.73 275.42,569.73"]; + 30 -- 390 [weight="2.0", pos="317.73,537.34 318.3,544.95 319.23,557.26 319.8,564.82"]; + 30 -- 323 [weight="1.0", pos="306.07,530.72 272.32,531.1 171.14,532.25 131.43,532.7"]; + 30 -- 108 [weight="1.0", pos="328.33,531.36 331.15,531.56 334.21,531.77 337.12,531.97"]; + 30 -- 601 [weight="1.0", pos="327.41,528.09 355.71,521.15 435.62,501.55 472.96,492.39"]; + 30 -- 184 [weight="1.0", pos="306.06,529.69 284.9,527.98 239.29,524.3 219.07,522.66"]; + 30 -- 38 [weight="2.0", pos="308.26,526.42 289.67,517.75 247.11,497.92 228.78,489.37"]; + 30 -- 81 [weight="1.0", pos="322.9,536.61 331.04,545.25 345.9,561 353.42,568.97"]; + 30 -- 172 [weight="1.0", pos="306.11,531.68 291.17,533.14 264.32,535.77 245.29,537.63"]; + 30 -- 73 [weight="1.0", pos="328.42,529.31 348.63,527 391.38,522.12 415.83,519.32"]; + 128 -- 433 [weight="1.0", pos="959.05,657.16 956.68,642.66 950.2,602.99 947.57,586.9"]; + 403 -- 457 [weight="1.0", pos="1334.4,920.48 1334.8,924.66 1335.3,930.49 1335.7,934.67"]; + 403 -- 513 [weight="1.0", pos="1326.3,919.73 1319.9,923.47 1310.9,928.78 1304.3,932.6"]; + 252 -- 571 [weight="1.0", pos="588.25,290.71 591.68,279.04 599.57,252.19 602.86,241.01"]; + 252 -- 527 [weight="1.0", pos="582.92,301.93 578.13,309.26 569.78,322.06 564.6,329.99"]; + 252 -- 351 [weight="2.0", pos="588.69,301.74 595.24,319.06 615.53,372.68 622.61,391.39"]; + 466 -- 600 [weight="1.0", pos="363.28,690.87 383.66,674.92 446.34,625.84 469.13,608"]; + 28 -- 294 [weight="3.0", pos="281.31,593.28 313.25,583.96 410.58,555.58 448.09,544.64"]; + 28 -- 30 [weight="1.0", pos="274.92,590.69 283.48,578.53 303.73,549.76 312.75,536.94"]; + 28 -- 303 [weight="1.0", pos="279.11,591.92 299.98,580.7 355.46,550.88 378.73,538.37"]; + 28 -- 390 [weight="2.0", pos="279.12,592.19 287.55,587.94 300.74,581.3 309.91,576.67"]; + 28 -- 37 [weight="2.0", pos="282.95,597.29 285.58,597.51 288.38,597.74 291.08,597.97"]; + 28 -- 597 [weight="3.0", pos="270.23,590.39 269.94,588.09 269.6,585.42 269.3,583.04"]; + 40 -- 124 [weight="1.0", pos="1083.7,648.14 1081.8,635.33 1077.1,604.69 1075.2,591.9"]; + 40 -- 50 [weight="1.0", pos="1087.4,648.36 1092,639.01 1101.3,620.26 1106,610.96"]; + 40 -- 554 [weight="1.0", pos="1091.6,658.27 1100.9,664.12 1117.5,674.48 1127.1,680.52"]; + 40 -- 282 [weight="1.0", pos="1078.7,649.04 1066.6,639.12 1039.2,616.69 1026.7,606.4"]; + 40 -- 168 [weight="1.0", pos="1074.5,653.31 1072,653.16 1069.4,653 1066.9,652.85"]; + 40 -- 460 [weight="1.0", pos="1076.7,657.37 1062,663.76 1030.7,677.38 1014.7,684.36"]; + 40 -- 407 [weight="1.0", pos="1084.2,648.18 1083.9,643.27 1083.4,636.23 1083,631.31"]; + 40 -- 696 [weight="1.0", pos="1087.1,659.63 1091.2,669.45 1099.8,689.36 1103.7,698.69"]; + 40 -- 101 [weight="1.0", pos="1081.3,648.71 1071.5,633.26 1042.5,587.82 1032.5,571.98"]; + 40 -- 583 [weight="1.0", pos="1093.8,656.32 1101.3,658.28 1111.9,661.04 1119.7,663.08"]; + 40 -- 285 [weight="1.0", pos="1094.3,652.08 1097.7,651.44 1101.6,650.72 1105.3,650.02"]; + 310 -- 644 [weight="1.0", pos="713.27,556.58 724.74,549.89 746.11,537.4 758.9,529.93"]; + 310 -- 691 [weight="1.0", pos="715.97,564.75 727.2,568.56 744.88,574.58 756.36,578.49"]; + 310 -- 380 [weight="1.0", pos="720.56,560.46 735.47,559.77 758.33,558.71 774.71,557.95"]; + 310 -- 614 [weight="1.0", pos="711.33,565.82 715.15,568.84 720.12,572.77 723.94,575.79"]; + 310 -- 555 [weight="1.0", pos="712.06,556.62 715.96,553.95 720.87,550.59 724.81,547.89"]; + 283 -- 712 [weight="2.0", pos="313.97,497.79 290.71,509.39 228.53,540.4 203.33,552.97"]; + 283 -- 601 [weight="4.0", pos="337.99,492.81 366.71,491.84 429.64,489.7 465.74,488.47"]; + 283 -- 574 [weight="1.0", pos="308.73,491.37 300.51,490.24 290.26,488.84 282.36,487.75"]; + 75 -- 185 [weight="2.0", pos="406.23,601.13 424.76,595.77 456.13,586.7 474.72,581.33"]; + 75 -- 600 [weight="1.0", pos="413.93,604.4 426.21,603.82 441.37,603.12 453.81,602.53"]; + 75 -- 606 [weight="1.0", pos="388.58,611.07 385.1,618.33 379.08,630.92 375.66,638.07"]; + 134 -- 384 [weight="1.0", pos="1272.8,585.11 1283,591.49 1298.9,601.46 1308.1,607.19"]; + 134 -- 630 [weight="6.0", pos="1265.3,585.72 1266.1,588.09 1266.9,590.77 1267.6,593.16"]; + 134 -- 589 [weight="2.0", pos="1282.8,577.15 1287.6,576.66 1292.4,576.16 1296.3,575.77"]; + 134 -- 531 [weight="1.0", pos="1243.3,579.53 1218.3,580 1175.8,580.81 1151.1,581.28"]; + 134 -- 167 [weight="1.0", pos="1279.5,583.03 1289.9,585.55 1303.3,588.76 1312.5,590.98"]; + 618 -- 664 [weight="1.0", pos="1023.8,496.38 1024.8,503.17 1026.6,515.26 1027.7,522.15"]; + 618 -- 657 [weight="1.0", pos="1028.4,496.33 1035.5,502.74 1047.7,513.86 1054.6,520.18"]; + 303 -- 328 [weight="1.0", pos="374.18,529.22 353.32,524.37 316.17,515.73 297.91,511.48"]; + 303 -- 577 [weight="1.0", pos="376.48,537.52 337.86,552.05 222.77,595.37 189.46,607.9"]; + 303 -- 712 [weight="1.0", pos="372.8,534.86 339.55,539.2 263.92,549.06 221.94,554.53"]; + 303 -- 597 [weight="4.0", pos="376.31,537.38 353.79,545.5 307.49,562.19 283.53,570.82"]; + 303 -- 390 [weight="9.0", pos="379.06,538.43 365.88,545.84 343.05,558.66 330.06,565.95"]; + 303 -- 537 [weight="1.0", pos="373.62,529.75 343.74,524.06 278.96,511.74 251.15,506.45"]; + 303 -- 568 [weight="1.0", pos="382.48,539.16 365.33,555.52 320.36,598.41 304.75,613.29"]; + 303 -- 431 [weight="1.0", pos="373.48,535.45 326.51,543.59 188.07,567.58 144.42,575.14"]; + 303 -- 501 [weight="1.0", pos="375.07,536.84 323.51,551.85 146.12,603.47 93.272,618.85"]; + 303 -- 566 [weight="1.0", pos="386.25,539.69 378.58,557.55 358.38,604.64 351.66,620.3"]; + 303 -- 637 [weight="1.0", pos="380.87,538.83 376.68,541.89 371.67,545.54 367.71,548.43"]; + 303 -- 335 [weight="2.0", pos="378.16,538.09 342.51,555.38 231.08,609.43 197.96,625.49"]; + 303 -- 478 [weight="1.0", pos="396.15,526.32 416.85,507.15 478.14,450.4 498.6,431.46"]; + 589 -- 630 [weight="2.0", pos="1298.5,579.07 1293,583.06 1284.6,589.15 1278.3,593.72"]; + 192 -- 677 [weight="1.0", pos="820.92,341.16 808.26,350.27 780.94,369.95 766.57,380.29"]; + 192 -- 518 [weight="1.0", pos="835.78,341 846.9,347.45 866.61,358.87 876.55,364.64"]; + 192 -- 318 [weight="1.0", pos="821.21,331.44 814.03,326.03 802.41,317.29 794.58,311.39"]; + 614 -- 644 [weight="1.0", pos="733.15,575.58 740.26,565.42 756.75,541.84 764.79,530.35"]; + 614 -- 691 [weight="1.0", pos="741.74,581 744.6,581.15 747.7,581.3 750.73,581.46"]; + 59 -- 630 [weight="1.0", pos="1221.5,605.37 1229.9,604.42 1240,603.27 1248.7,602.28"]; + 59 -- 332 [weight="1.0", pos="1207.5,602.09 1209.2,599.78 1211.1,597.07 1212.7,594.75"]; + 59 -- 531 [weight="1.0", pos="1192.3,603.24 1179.4,598.64 1158.6,591.21 1145,586.38"]; + 421 -- 683 [weight="1.0", pos="55.622,531.27 58.375,531.23 61.306,531.19 64.097,531.15"]; + 215 -- 667 [weight="1.0", pos="536.37,641.83 535.11,662.86 530.35,741.84 528.89,766"]; + 215 -- 261 [weight="1.0", pos="548.21,638.43 578.97,643.19 663.52,656.26 705.67,662.77"]; + 215 -- 680 [weight="1.0", pos="547.13,634.17 552.19,632.97 558.31,631.52 563.65,630.25"]; + 215 -- 422 [weight="1.0", pos="542.66,632.19 554.97,622.99 583.22,601.89 597.75,591.04"]; + 501 -- 577 [weight="1.0", pos="97.489,620.98 118.39,618.55 151.15,614.73 168.55,612.71"]; + 501 -- 712 [weight="1.0", pos="88.432,617.46 110.27,605.06 161.5,575.97 182.87,563.84"]; + 501 -- 599 [weight="4.0", pos="64.295,627.86 56.399,630.48 46.575,633.74 38.726,636.35"]; + 501 -- 557 [weight="3.0", pos="91.547,628.16 103.21,632.52 120.05,638.81 131.43,643.07"]; + 155 -- 304 [weight="1.0", pos="478.11,216.59 494.48,216.55 522.49,216.48 540.16,216.43"]; + 155 -- 527 [weight="2.0", pos="469.37,222.1 484.91,241.78 537.83,308.82 554.78,330.29"]; + 155 -- 610 [weight="1.0", pos="477.07,218.81 496.97,222.44 536.58,229.65 557.02,233.38"]; + 155 -- 704 [weight="1.0", pos="474.22,220.53 487.23,226.08 510.73,236.1 522.29,241.03"]; + 155 -- 195 [weight="1.0", pos="461.78,210.88 455.77,200.3 443.04,177.87 437.39,167.93"]; + 245 -- 387 [weight="1.0", pos="1404.7,1131.1 1408.1,1137.3 1414,1147.8 1417.5,1154.1"]; + 245 -- 381 [weight="1.0", pos="1401.4,1131.4 1400,1142.8 1396.6,1170.1 1395.2,1181.6"]; + 267 -- 600 [weight="1.0", pos="474.97,694.15 475.43,677.34 476.82,627.09 477.33,608.47"]; + 267 -- 634 [weight="1.0", pos="473.98,694.21 471.99,681.03 466.97,647.77 465.01,634.81"]; + 267 -- 305 [weight="1.0", pos="471.23,705.18 462.55,718.37 440.55,751.83 432.29,764.4"]; + 267 -- 477 [weight="1.0", pos="465.98,704.7 449.4,714.03 413.86,734.04 397.62,743.18"]; + 267 -- 422 [weight="1.0", pos="480.83,694.46 502.3,675.68 575.21,611.9 599.1,591.01"]; + 219 -- 600 [weight="1.0", pos="454.7,584.85 458.75,587.8 464.02,591.62 468.47,594.85"]; + 219 -- 601 [weight="2.0", pos="450.84,574.61 458.5,558.66 480.69,512.43 489.23,494.65"]; + 583 -- 696 [weight="1.0", pos="1127,670.78 1122.4,678.01 1113.8,691.37 1109.2,698.67"]; + 318 -- 677 [weight="6.0", pos="783.93,311.85 778.52,327.12 765.31,364.37 759.79,379.94"]; + 318 -- 363 [weight="1.0", pos="788.84,311.98 792.55,321.98 799.39,340.39 802.67,349.22"]; + 318 -- 512 [weight="1.0", pos="791.08,298.68 796.47,291.36 805.19,279.54 810.54,272.27"]; + 318 -- 533 [weight="1.0", pos="782.6,298.4 776.83,287.9 765.84,267.89 760.7,258.54"]; + 318 -- 518 [weight="1.0", pos="795.55,311.2 815.14,324.02 860.4,353.62 876.69,364.27"]; + 318 -- 658 [weight="1.0", pos="787.85,311.76 788.54,314.72 789.35,318.16 789.99,320.92"]; + 13 -- 472 [weight="1.0", pos="480.62,799.44 478.44,784.76 472.07,741.85 469.76,726.28"]; + 13 -- 316 [weight="1.0", pos="469.21,800.74 462.05,798.55 453.04,795.81 446.09,793.7"]; + 257 -- 503 [weight="1.0", pos="987.87,470.27 1000.7,464.68 1021.9,455.42 1034.2,450.05"]; + 257 -- 280 [weight="1.0", pos="977.68,481.52 978.5,492.15 980.11,512.91 980.88,522.91"]; + 257 -- 618 [weight="1.0", pos="988.74,479.09 996.05,481.72 1005.4,485.08 1012.5,487.62"]; + 257 -- 282 [weight="1.0", pos="979.48,481.73 987.09,504.03 1011.2,574.89 1018.2,595.44"]; + 257 -- 558 [weight="1.0", pos="981.5,481.27 986.08,487.96 993.21,498.38 997.4,504.49"]; + 257 -- 396 [weight="1.0", pos="983.29,480.94 997.13,494.49 1030.6,527.29 1043.7,540.05"]; + 257 -- 464 [weight="1.0", pos="979.43,481.64 984.27,495.96 995.53,529.3 999.9,542.26"]; + 257 -- 456 [weight="1.0", pos="966.84,470.16 954.34,464.36 933.51,454.71 921.72,449.24"]; + 257 -- 664 [weight="1.0", pos="983.06,480.96 993.38,491.49 1014.5,513.09 1023.9,522.63"]; + 257 -- 677 [weight="1.0", pos="965.97,470.46 929.47,455.86 814.01,409.65 772.42,393.01"]; + 257 -- 596 [weight="1.0", pos="962.27,473.6 949.57,472.45 931.33,470.8 918.2,469.61"]; + 257 -- 467 [weight="1.0", pos="983.44,468.8 993.08,459.35 1011.4,441.42 1020.2,432.81"]; + 257 -- 453 [weight="1.0", pos="989.49,478.78 1007.3,484.33 1039.8,494.46 1056,499.51"]; + 257 -- 657 [weight="1.0", pos="986.02,480.29 1002.5,490.27 1037.7,511.51 1052.7,520.63"]; + 85 -- 678 [weight="1.0", pos="1032.4,675.24 1030.7,682.31 1027.7,694.9 1026.1,702.07"]; + 85 -- 579 [weight="1.0", pos="1016.8,669.04 988.38,667.35 931.36,663.97 906.58,662.5"]; + 85 -- 460 [weight="1.0", pos="1026.3,674.73 1022.1,677.49 1016.7,680.97 1012.4,683.77"]; + 185 -- 294 [weight="1.0", pos="485.17,570.57 480.37,564 472.93,553.81 468.02,547.09"]; + 185 -- 278 [weight="1.0", pos="482.34,583.16 462.57,599.55 409.26,643.73 391.52,658.43"]; + 185 -- 208 [weight="1.0", pos="484.04,583.41 471.65,597.21 442.82,629.34 431.62,641.82"]; + 185 -- 600 [weight="5.0", pos="486.6,583.39 484.89,586.78 482.79,590.96 481.04,594.44"]; + 185 -- 364 [weight="3.0", pos="481.15,583.02 467.32,592.67 440.56,611.34 428.05,620.07"]; + 185 -- 601 [weight="1.0", pos="490.04,570.24 490.55,553.83 491.87,511.84 492.4,494.86"]; + 185 -- 606 [weight="1.0", pos="479.88,582.63 457.27,595.5 402.39,626.76 381.42,638.71"]; + 597 -- 692 [weight="1.0", pos="264.3,582.76 259.45,590.36 251.51,602.81 246.92,610"]; + 597 -- 637 [weight="1.0", pos="287.14,571.65 305.38,567.14 332.62,560.42 348.37,556.53"]; + 332 -- 630 [weight="1.0", pos="1231.3,592.36 1237.4,593.57 1244.6,594.98 1251.1,596.26"]; + 332 -- 531 [weight="1.0", pos="1199.3,587.87 1185.1,586.56 1164.9,584.71 1150.3,583.36"]; + 390 -- 637 [weight="1.0", pos="331.8,566.33 337.89,563.63 345.28,560.35 351.08,557.78"]; + 390 -- 597 [weight="5.0", pos="303.6,572.99 300.17,573.31 296.48,573.66 292.84,573.99"]; + 390 -- 537 [weight="1.0", pos="312.99,565.45 296.95,552.29 258.87,521.05 244.06,508.9"]; + 248 -- 452 [weight="1.0", pos="933.78,217.65 946.71,217.28 965.17,216.76 977.2,216.42"]; + 248 -- 389 [weight="1.0", pos="930.1,221.5 937.07,223.62 945.85,226.29 952.1,228.19"]; + 248 -- 423 [weight="1.0", pos="922.35,213.13 924.19,210.55 926.45,207.39 928.28,204.82"]; + 9 -- 90 [weight="1.0", pos="524.86,788.04 535.84,772.53 568.98,725.73 580.53,709.42"]; + 9 -- 80 [weight="1.0", pos="522.13,788.09 525.26,769.91 535.96,707.59 539.23,688.56"]; + 111 -- 677 [weight="1.0", pos="826.75,372.73 813.17,375.51 793.87,379.47 779.06,382.5"]; + 111 -- 192 [weight="1.0", pos="840.89,364.17 837.93,357.93 832.98,347.49 830.05,341.32"]; + 111 -- 518 [weight="1.0", pos="865.3,368.69 868.53,368.59 871.69,368.5 874.4,368.42"]; + 111 -- 318 [weight="1.0", pos="838.86,364.29 828.57,352.71 803.23,324.2 791.92,311.47"]; + 408 -- 501 [weight="1.0", pos="132.74,662.34 122.18,654.75 99.121,638.17 86.669,629.23"]; + 408 -- 599 [weight="1.0", pos="130.49,664.57 112.4,660.51 67.154,650.36 42.198,644.76"]; + 38 -- 170 [weight="1.0", pos="229.94,482.01 238.22,479.21 250.19,475.15 259.73,471.92"]; + 38 -- 294 [weight="1.0", pos="231.19,487.84 270.08,496.63 400.6,526.15 446.73,536.58"]; + 38 -- 303 [weight="1.0", pos="230.44,488.23 259.42,496.35 341.53,519.35 374.89,528.7"]; + 38 -- 157 [weight="2.0", pos="214.63,490.46 204.16,500.24 181.44,521.45 170.73,531.44"]; + 356 -- 600 [weight="1.0", pos="435.07,696.8 442.48,680.16 465.87,627.6 474.39,608.47"]; + 591 -- 630 [weight="1.0", pos="1301.6,644.59 1295.2,635.57 1281.5,616.43 1274.3,606.38"]; + 4 -- 527 [weight="1.0", pos="680.94,271.95 656.01,285.36 594.6,318.38 570.24,331.48"]; + 4 -- 512 [weight="1.0", pos="711.84,266.12 734.8,266.07 772.15,266 795.12,265.95"]; + 4 -- 533 [weight="1.0", pos="709.12,262.83 719.23,260.9 731.89,258.47 741.79,256.58"]; + 4 -- 212 [weight="1.0", pos="702.31,260.55 714.02,254.34 732.56,244.51 742.54,239.23"]; + 4 -- 318 [weight="1.0", pos="704.48,271.42 722.43,278.82 754.98,292.24 773.15,299.73"]; + 4 -- 143 [weight="1.0", pos="690.51,259.66 688.77,250.23 685.56,232.94 683.98,224.42"]; + 34 -- 677 [weight="1.0", pos="749.32,474.05 750.75,458.41 755.01,411.97 756.65,394.09"]; + 34 -- 644 [weight="1.0", pos="751.19,484.39 754.94,492.53 762.25,508.42 766.36,517.35"]; + 164 -- 595 [weight="1.0", pos="875.95,245.49 858.86,244.76 835.95,243.77 820.54,243.1"]; + 164 -- 512 [weight="2.0", pos="880.86,250.7 866.22,254.1 845.83,258.82 831.67,262.1"]; + 164 -- 452 [weight="1.0", pos="913.95,241.47 932.48,235.23 963.59,224.75 979.42,219.42"]; + 164 -- 248 [weight="1.0", pos="903.63,239.9 907.19,234.78 912.06,227.8 915.31,223.12"]; + 164 -- 389 [weight="1.0", pos="916.05,242.07 927.76,239.03 942.81,235.12 951.93,232.75"]; + 164 -- 393 [weight="2.0", pos="895.66,239.82 889.78,228.24 877.78,204.65 872.32,193.9"]; + 164 -- 432 [weight="1.0", pos="899.12,253.06 899.28,268.48 899.68,306.91 899.85,322.98"]; + 164 -- 449 [weight="1.0", pos="885.22,241.16 877.25,238.09 867.37,234.28 859.85,231.38"]; + 164 -- 423 [weight="1.0", pos="903.59,240.03 910.18,230.65 922.26,213.47 928.21,205"]; + 196 -- 342 [weight="1.0", pos="805.55,95.609 806.91,105.48 809.82,126.53 811.3,137.31"]; + 196 -- 347 [weight="1.0", pos="789.11,89.071 786.08,88.84 782.91,88.599 779.9,88.37"]; + 603 -- 652 [weight="3.0", pos="747.53,168.47 751.04,165.79 755.2,162.61 758.76,159.89"]; + 603 -- 674 [weight="1.0", pos="727.48,179.07 721.53,181.34 714.51,184.02 708.98,186.14"]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/helloworld.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/helloworld.gv.txt new file mode 100644 index 00000000..3f2b1892 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/helloworld.gv.txt @@ -0,0 +1 @@ +digraph G {Hello->World} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/kennedyanc.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/kennedyanc.gv.txt new file mode 100644 index 00000000..7f64972c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/kennedyanc.gv.txt @@ -0,0 +1,90 @@ +/* +Note: All images in the file is found at + +http://www.graphviz.org/Gallery/directed/images/ + +----------- + +from Kaarle Kaila: + + +I have implemented Genealogic descendant and ancestor graphs using Graphviz in FinFamily. I have made som description on how to use it with FinFamily at FinFamily wiki-pages at + +http://www.finfamily.fi/index.php/Handbook + +I attach a descendant graph from Joseph Patrick Kennedy and an ancestor graph from Caroline Bouvier Kennedy as samples from FinFamily. The file georg.jpg is a descendant graph w/o pictures from an imaginary person Georg af Charlow (who has some common attributes with my father) from my testdatabase like the person Charles Charlow has some resemblance to myself. + +If you wish to display the attached pictures or wish me to create another ones then feel free to do so. I wish to thank you for Graphviz that let's me create such nice graphs with FinFamily. + +regards +Kaarle Kaila + +I have this little kennedy database as a sample gedcom file on the download webpage to give international users a few wellknown persons to play with if they wish to try out my software. I originally got it from Michael Kay who is among others Editor at http://www.w3.org/TR/xslt20/. I added the pictures and some data myself. + +Attached are both the kennedyanc and kennedydesc files as you requested. I made them as zip-files so that tehy contain both source and destination files. As you email server does not accept zip-files I renamed them to anc.zip ->anc.files and desc.zip to desc.files. Hope these com through your filters. + +Graphviz dot program is called from withing FinFamily with a command line such as: + +dot -Tjpeg kennedyanc.txt -o kennedyanc.jpg + +On page http://www.finfamily.fi/index.php/Graphviz is a description on the different colors together with instructions for finFamily users how to create Graphviz reports. + +Kaarle Kaila + + +Colors and forms symbolize following + + * Blue box - man + * Red ellipse - woman + * Blue line - Father/Child relation + * Red line - Mother/Child relation + * Green line - Spouse relation + * Orange line - Ancestors (other) children + * Violet line - Ancestors (other) spouse + + + + + +*/ + +/* ancestor graph from Caroline Bouvier Kennedy */ + +graph G { +I5 [shape=ellipse,color=red,style=bold,label="Caroline Bouvier Kennedy\nb. 27.11.1957 New York",image="images/165px-Caroline_Kennedy.jpg",labelloc=b]; +I1 [shape=box,color=blue,style=bold,label="John Fitzgerald Kennedy\nb. 29.5.1917 Brookline\nd. 22.11.1963 Dallas",image="images/kennedyface.jpg",labelloc=b]; +I6 [shape=box,color=blue,style=bold,label="John Fitzgerald Kennedy\nb. 25.11.1960 Washington\nd. 16.7.1999 over the Atlantic Ocean, near Aquinnah, MA, USA",image="images/180px-JFKJr2.jpg",labelloc=b]; +I7 [shape=box,color=blue,style=bold,label="Patrick Bouvier Kennedy\nb. 7.8.1963\nd. 9.8.1963"]; +I2 [shape=ellipse,color=red,style=bold,label="Jaqueline Lee Bouvier\nb. 28.7.1929 Southampton\nd. 19.5.1994 New York City",image="images/jacqueline-kennedy-onassis.jpg",labelloc=b]; +I8 [shape=box,color=blue,style=bold,label="Joseph Patrick Kennedy\nb. 6.9.1888 East Boston\nd. 16.11.1969 Hyannis Port",image="images/1025901671.jpg",labelloc=b]; +I10 [shape=box,color=blue,style=bold,label="Joseph Patrick Kennedy Jr\nb. 1915\nd. 1944"]; +I11 [shape=ellipse,color=red,style=bold,label="Rosemary Kennedy\nb. 13.9.1918\nd. 7.1.2005",image="images/rosemary.jpg",labelloc=b]; +I12 [shape=ellipse,color=red,style=bold,label="Kathleen Kennedy\nb. 1920\nd. 1948"]; +I13 [shape=ellipse,color=red,style=bold,label="Eunice Mary Kennedy\nb. 10.7.1921 Brookline"]; +I9 [shape=ellipse,color=red,style=bold,label="Rose Elizabeth Fitzgerald\nb. 22.7.1890 Boston\nd. 22.1.1995 Hyannis Port",image="images/Rose_kennedy.JPG",labelloc=b]; +I15 [shape=box,color=blue,style=bold,label="Aristotle Onassis"]; +I3 [shape=box,color=blue,style=bold,label="John Vernou Bouvier III\nb. 1891\nd. 1957",image="images/BE037819.jpg",labelloc=b]; +I4 [shape=ellipse,color=red,style=bold,label="Janet Norton Lee\nb. 2.10.1877\nd. 3.1.1968",image="images/n48862003257_1275276_1366.jpg",labelloc=b]; + I1 -- I5 [style=bold,color=blue]; + I1 -- I6 [style=bold,color=orange]; + I2 -- I6 [style=bold,color=orange]; + I1 -- I7 [style=bold,color=orange]; + I2 -- I7 [style=bold,color=orange]; + I1 -- I2 [style=bold,color=violet]; + I8 -- I1 [style=bold,color=blue]; + I8 -- I10 [style=bold,color=orange]; + I9 -- I10 [style=bold,color=orange]; + I8 -- I11 [style=bold,color=orange]; + I9 -- I11 [style=bold,color=orange]; + I8 -- I12 [style=bold,color=orange]; + I9 -- I12 [style=bold,color=orange]; + I8 -- I13 [style=bold,color=orange]; + I9 -- I13 [style=bold,color=orange]; + I8 -- I9 [style=bold,color=violet]; + I9 -- I1 [style=bold,color=red]; + I2 -- I5 [style=bold,color=red]; + I2 -- I15 [style=bold,color=violet]; + I3 -- I2 [style=bold,color=blue]; + I3 -- I4 [style=bold,color=violet]; + I4 -- I2 [style=bold,color=red]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/lion_share.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/lion_share.gv.txt new file mode 100644 index 00000000..daf6defa --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/lion_share.gv.txt @@ -0,0 +1,109 @@ +##"A few people in the field of genetics are using dot to draw "marriage node diagram" pedigree drawings. Here is one I have done of a test pedigree from the FTREE pedigree drawing package (Lion Share was a racehorse)." Contributed by David Duffy. + +##Command to get the layout: "dot -Tpng thisfile > thisfile.png" + +digraph Ped_Lion_Share { +# page = "8.2677165,11.692913" ; +ratio = "auto" ; +mincross = 2.0 ; +label = "Pedigree Lion_Share" ; + +"001" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"002" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"003" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"004" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"005" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"006" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"007" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"009" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"014" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"015" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"016" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"ZZ01" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"ZZ02" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"017" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"012" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"008" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"011" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"013" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"010" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"023" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"020" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"021" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"018" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"025" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"019" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"022" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"024" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"027" [shape=circle , regular=1,style=filled,fillcolor=white ] ; +"026" [shape=box , regular=1,style=filled,fillcolor=white ] ; +"028" [shape=box , regular=1,style=filled,fillcolor=grey ] ; +"marr0001" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"001" -> "marr0001" [dir=none,weight=1] ; +"007" -> "marr0001" [dir=none,weight=1] ; +"marr0001" -> "017" [dir=none, weight=2] ; +"marr0002" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"001" -> "marr0002" [dir=none,weight=1] ; +"ZZ02" -> "marr0002" [dir=none,weight=1] ; +"marr0002" -> "012" [dir=none, weight=2] ; +"marr0003" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"002" -> "marr0003" [dir=none,weight=1] ; +"003" -> "marr0003" [dir=none,weight=1] ; +"marr0003" -> "008" [dir=none, weight=2] ; +"marr0004" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"002" -> "marr0004" [dir=none,weight=1] ; +"006" -> "marr0004" [dir=none,weight=1] ; +"marr0004" -> "011" [dir=none, weight=2] ; +"marr0005" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"002" -> "marr0005" [dir=none,weight=1] ; +"ZZ01" -> "marr0005" [dir=none,weight=1] ; +"marr0005" -> "013" [dir=none, weight=2] ; +"marr0006" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"004" -> "marr0006" [dir=none,weight=1] ; +"009" -> "marr0006" [dir=none,weight=1] ; +"marr0006" -> "010" [dir=none, weight=2] ; +"marr0007" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"005" -> "marr0007" [dir=none,weight=1] ; +"015" -> "marr0007" [dir=none,weight=1] ; +"marr0007" -> "023" [dir=none, weight=2] ; +"marr0008" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"005" -> "marr0008" [dir=none,weight=1] ; +"016" -> "marr0008" [dir=none,weight=1] ; +"marr0008" -> "020" [dir=none, weight=2] ; +"marr0009" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"005" -> "marr0009" [dir=none,weight=1] ; +"012" -> "marr0009" [dir=none,weight=1] ; +"marr0009" -> "021" [dir=none, weight=2] ; +"marr0010" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"008" -> "marr0010" [dir=none,weight=1] ; +"017" -> "marr0010" [dir=none,weight=1] ; +"marr0010" -> "018" [dir=none, weight=2] ; +"marr0011" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"011" -> "marr0011" [dir=none,weight=1] ; +"023" -> "marr0011" [dir=none,weight=1] ; +"marr0011" -> "025" [dir=none, weight=2] ; +"marr0012" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"013" -> "marr0012" [dir=none,weight=1] ; +"014" -> "marr0012" [dir=none,weight=1] ; +"marr0012" -> "019" [dir=none, weight=2] ; +"marr0013" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"010" -> "marr0013" [dir=none,weight=1] ; +"021" -> "marr0013" [dir=none,weight=1] ; +"marr0013" -> "022" [dir=none, weight=2] ; +"marr0014" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"019" -> "marr0014" [dir=none,weight=1] ; +"020" -> "marr0014" [dir=none,weight=1] ; +"marr0014" -> "024" [dir=none, weight=2] ; +"marr0015" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"022" -> "marr0015" [dir=none,weight=1] ; +"025" -> "marr0015" [dir=none,weight=1] ; +"marr0015" -> "027" [dir=none, weight=2] ; +"marr0016" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"024" -> "marr0016" [dir=none,weight=1] ; +"018" -> "marr0016" [dir=none,weight=1] ; +"marr0016" -> "026" [dir=none, weight=2] ; +"marr0017" [shape=diamond,style=filled,label="",height=.1,width=.1] ; +"026" -> "marr0017" [dir=none,weight=1] ; +"027" -> "marr0017" [dir=none,weight=1] ; +"marr0017" -> "028" [dir=none, weight=2] ; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/networkmap_twopi.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/networkmap_twopi.gv.txt new file mode 100644 index 00000000..336a2360 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/networkmap_twopi.gv.txt @@ -0,0 +1,2140 @@ +/* contributed by Sancho Lerena, http://pandorafms.org + +About the graph: this is an automated network map generated with Pandora +FMS, this map is a visual representation of the network discovery done by +the recon server, which sweeps the network, and identify hosts in a network +and the full chain of hosts in the route to discovered networks. + +command: + +twopi -Tcmapx -onetworkmap_twopi_1.map -Tpng -onetworkmap_twopi.png networkmap_twopi.gv.txt + +*/ + +graph networkmap { labeljust=l; margin=0; ratio=fill;root=0;size="8,5.4";300 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    109.217.106.212.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=300", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=300"]; + 619 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    192.36.144.230
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=619", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=619"]; + 686 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.0.255
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=686", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=686"]; + 620 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.0.53
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=620", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=620"]; + 692 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=692", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=692"]; + 699 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.10
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=699", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=699"]; + 700 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.12
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=700", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=700"]; + 701 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.13
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=701", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=701"]; + 702 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.14
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=702", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=702"]; + 703 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.15
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=703", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=703"]; + 704 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.16
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=704", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=704"]; + 705 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.17
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=705", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=705"]; + 706 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.18
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=706", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=706"]; + 707 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.19
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=707", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=707"]; + 694 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.2
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=694", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=694"]; + 708 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.20
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=708", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=708"]; + 709 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.21
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=709", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=709"]; + 710 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.22
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=710", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=710"]; + 711 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.23
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=711", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=711"]; + 712 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.24
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=712", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=712"]; + 791 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.240
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=791", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=791"]; + 792 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.253
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=792", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=792"]; + 713 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.26
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=713", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=713"]; + 714 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.27
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=714", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=714"]; + 715 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.28
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=715", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=715"]; + 716 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.29
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=716", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=716"]; + 695 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.3
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=695", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=695"]; + 717 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.30
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=717", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=717"]; + 718 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.31
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=718", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=718"]; + 719 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.36
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=719", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=719"]; + 696 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.4
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=696", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=696"]; + 697 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.7
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=697", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=697"]; + 698 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.1.9
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=698", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=698"]; + 793 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=793", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=793"]; + 798 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.10
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=798", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=798"]; + 799 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.12
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=799", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=799"]; + 800 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.13
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=800", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=800"]; + 801 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.14
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=801", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=801"]; + 802 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.15
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=802", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=802"]; + 803 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.16
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=803", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=803"]; + 804 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.17
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=804", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=804"]; + 805 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.18
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=805", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=805"]; + 806 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.19
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=806", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=806"]; + 794 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.2
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=794", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=794"]; + 807 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.20
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=807", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=807"]; + 795 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.5
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=795", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=795"]; + 796 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.6
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=796", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=796"]; + 797 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.2.7
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=797", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=797"]; + 813 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    194.0.3.1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=813", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=813"]; + 690 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.187.255.152
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=690", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=690"]; + 689 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.187.255.156
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=689", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=689"]; + 691 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.187.255.161
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=691", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=691"]; + 533 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.66.224.76
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=533", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=533"]; + 538 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.66.224.76
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=538", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=538"]; + 570 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.66.225.69
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=570", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=570"]; + 616 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    195.69.119.172
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=616", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=616"]; + 581 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    204.15.20.35
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=581", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=581"]; + 647 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    204.15.22.245
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=647", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=647"]; + 577 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    204.15.23.111
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=577", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=577"]; + 557 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.100
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=557", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=557"]; + 558 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.101
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=558", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=558"]; + 560 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.102
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=560", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=560"]; + 562 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.104
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=562", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=562"]; + 568 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.109
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=568", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=568"]; + 425 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.14
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=425", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=425"]; + 426 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.16
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=426", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=426"]; + 427 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.18
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=427", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=427"]; + 428 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.19
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=428", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=428"]; + 430 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.27
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=430", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=430"]; + 431 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.32
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=431", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=431"]; + 432 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.33
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=432", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=432"]; + 433 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.34
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=433", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=433"]; + 434 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.35
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=434", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=434"]; + 435 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.36
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=435", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=435"]; + 436 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.37
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=436", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=436"]; + 437 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.38
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=437", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=437"]; + 445 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.39
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=445", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=445"]; + 419 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.4
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=419", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=419"]; + 447 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.40
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=447", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=447"]; + 449 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.41
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=449", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=449"]; + 451 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.42
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=451", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=451"]; + 452 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.43
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=452", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=452"]; + 454 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.44
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=454", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=454"]; + 456 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.45
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=456", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=456"]; + 458 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.46
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=458", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=458"]; + 460 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.47
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=460", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=460"]; + 462 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.48
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=462", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=462"]; + 464 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.49
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=464", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=464"]; + 422 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.5
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=422", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=422"]; + 466 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.50
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=466", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=466"]; + 468 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.51
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=468", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=468"]; + 470 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.52
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=470", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=470"]; + 472 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.53
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=472", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=472"]; + 474 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.54
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=474", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=474"]; + 476 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.56
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=476", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=476"]; + 478 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.57
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=478", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=478"]; + 479 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.58
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=479", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=479"]; + 481 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.59
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=481", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=481"]; + 423 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.6
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=423", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=423"]; + 483 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.60
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=483", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=483"]; + 484 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.61
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=484", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=484"]; + 485 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.62
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=485", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=485"]; + 487 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.63
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=487", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=487"]; + 489 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.64
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=489", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=489"]; + 491 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.65
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=491", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=491"]; + 493 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.66
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=493", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=493"]; + 496 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.68
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=496", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=496"]; + 498 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.69
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=498", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=498"]; + 502 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.72
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=502", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=502"]; + 504 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.73
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=504", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=504"]; + 505 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.74
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=505", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=505"]; + 507 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.75
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=507", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=507"]; + 509 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.76
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=509", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=509"]; + 511 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.77
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=511", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=511"]; + 513 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.78
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=513", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=513"]; + 515 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.79
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=515", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=515"]; + 517 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.81
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=517", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=517"]; + 518 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.82
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=518", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=518"]; + 519 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.83
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=519", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=519"]; + 521 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.84
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=521", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=521"]; + 523 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.85
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=523", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=523"]; + 525 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.86
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=525", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=525"]; + 527 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.87
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=527", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=527"]; + 529 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.88
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=529", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=529"]; + 531 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.89
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=531", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=531"]; + 542 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.91
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=542", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=542"]; + 544 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.93
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=544", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=544"]; + 547 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.95
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=547", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=547"]; + 549 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.96
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=549", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=549"]; + 551 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.97
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=551", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=551"]; + 553 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.98
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=553", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=553"]; + 555 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.229.99
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=555", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=555"]; + 421 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.243.73
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=421", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=421"]; + 418 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.243.77
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=418", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=418"]; + 429 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.243.81
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=429", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=429"]; + 424 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.243.85
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=424", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=424"]; + 415 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.251.200
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=415", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=415"]; + 420 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    209.85.252.83
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=420", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=420"]; + 416 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    216.239.43.233
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=416", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=416"]; + 414 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    216.239.49.196
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=414", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=414"]; + 417 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    216.239.49.45
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=417", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=417"]; + 808 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    62.40.112.122
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=808", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=808"]; + 809 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    62.40.112.206
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=809", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=809"]; + 810 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    62.40.125.158
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=810", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=810"]; + 534 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    64.125.27.149
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=534", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=534"]; + 539 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    64.125.27.149
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=539", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=539"]; + 536 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    64.125.29.17
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=536", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=536"]; + 541 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    64.125.29.17
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=541", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=541"]; + 535 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    64.125.31.186
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=535", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=535"]; + 540 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    64.125.31.186
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=540", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=540"]; + 573 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=573", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=573"]; + 580 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.11
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=580", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=580"]; + 583 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.13
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=583", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=583"]; + 585 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.14
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=585", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=585"]; + 587 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.15
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=587", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=587"]; + 612 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.150
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=612", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=612"]; + 613 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.151
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=613", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=613"]; + 614 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.152
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=614", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=614"]; + 615 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.153
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=615", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=615"]; + 588 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.17
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=588", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=588"]; + 590 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.18
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=590", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=590"]; + 592 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.19
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=592", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=592"]; + 574 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.2
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=574", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=574"]; + 593 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.21
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=593", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=593"]; + 594 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.22
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=594", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=594"]; + 595 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.23
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=595", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=595"]; + 621 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.231
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=621", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=621"]; + 622 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.232
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=622", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=622"]; + 623 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.233
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=623", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=623"]; + 624 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.234
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=624", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=624"]; + 625 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.244
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=625", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=625"]; + 626 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.245
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=626", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=626"]; + 627 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.246
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=627", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=627"]; + 628 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.247
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=628", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=628"]; + 629 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.248
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=629", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=629"]; + 630 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.249
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=630", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=630"]; + 596 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.25
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=596", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=596"]; + 631 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.250
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=631", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=631"]; + 632 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.251
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=632", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=632"]; + 633 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.252
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=633", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=633"]; + 634 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.253
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=634", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=634"]; + 635 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.254
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=635", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=635"]; + 597 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.26
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=597", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=597"]; + 599 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.27
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=599", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=599"]; + 600 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.28
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=600", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=600"]; + 601 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.29
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=601", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=601"]; + 602 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.30
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=602", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=602"]; + 604 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.31
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=604", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=604"]; + 605 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.32
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=605", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=605"]; + 606 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.33
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=606", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=606"]; + 607 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.34
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=607", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=607"]; + 608 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.35
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=608", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=608"]; + 609 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.36
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=609", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=609"]; + 610 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.37
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=610", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=610"]; + 611 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.38
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=611", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=611"]; + 576 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.5
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=576", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=576"]; + 578 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.153.6
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=578", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=578"]; + 636 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.33
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=636", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=636"]; + 638 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.34
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=638", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=638"]; + 639 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.35
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=639", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=639"]; + 640 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.36
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=640", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=640"]; + 641 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.49
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=641", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=641"]; + 643 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.50
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=643", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=643"]; + 644 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.51
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=644", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=644"]; + 645 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.154.52
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=645", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=645"]; + 646 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=646", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=646"]; + 654 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.10
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=654", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=654"]; + 720 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.105
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=720", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=720"]; + 721 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.106
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=721", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=721"]; + 656 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.11
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=656", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=656"]; + 723 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.116
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=723", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=723"]; + 724 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.117
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=724", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=724"]; + 725 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.118
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=725", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=725"]; + 726 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.119
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=726", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=726"]; + 658 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.12
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=658", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=658"]; + 727 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.120
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=727", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=727"]; + 728 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.121
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=728", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=728"]; + 729 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.122
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=729", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=729"]; + 730 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.123
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=730", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=730"]; + 731 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.124
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=731", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=731"]; + 732 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.125
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=732", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=732"]; + 733 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.126
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=733", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=733"]; + 734 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.129
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=734", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=734"]; + 660 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.13
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=660", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=660"]; + 735 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.130
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=735", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=735"]; + 736 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.133
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=736", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=736"]; + 737 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.134
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=737", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=737"]; + 738 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.135
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=738", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=738"]; + 739 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.136
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=739", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=739"]; + 740 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.137
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=740", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=740"]; + 741 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.138
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=741", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=741"]; + 742 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.139
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=742", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=742"]; + 661 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.14
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=661", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=661"]; + 743 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.140
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=743", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=743"]; + 744 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.141
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=744", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=744"]; + 745 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.142
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=745", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=745"]; + 746 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.143
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=746", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=746"]; + 747 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.144
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=747", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=747"]; + 748 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.145
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=748", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=748"]; + 749 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.146
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=749", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=749"]; + 750 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.147
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=750", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=750"]; + 751 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.148
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=751", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=751"]; + 752 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.149
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=752", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=752"]; + 662 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.15
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=662", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=662"]; + 753 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.150
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=753", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=753"]; + 754 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.151
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=754", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=754"]; + 755 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.152
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=755", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=755"]; + 756 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.153
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=756", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=756"]; + 757 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.154
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=757", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=757"]; + 758 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.155
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=758", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=758"]; + 759 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.156
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=759", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=759"]; + 760 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.157
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=760", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=760"]; + 761 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.158
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=761", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=761"]; + 762 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.159
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=762", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=762"]; + 664 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.16
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=664", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=664"]; + 763 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.160
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=763", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=763"]; + 764 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.161
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=764", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=764"]; + 765 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.162
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=765", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=765"]; + 766 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.163
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=766", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=766"]; + 767 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.164
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=767", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=767"]; + 768 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.165
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=768", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=768"]; + 769 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.166
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=769", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=769"]; + 770 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.167
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=770", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=770"]; + 771 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.168
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=771", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=771"]; + 772 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.169
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=772", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=772"]; + 665 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.17
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=665", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=665"]; + 773 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.170
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=773", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=773"]; + 774 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.171
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=774", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=774"]; + 775 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.172
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=775", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=775"]; + 776 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.173
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=776", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=776"]; + 777 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.174
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=777", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=777"]; + 778 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.175
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=778", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=778"]; + 779 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.176
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=779", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=779"]; + 780 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.177
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=780", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=780"]; + 781 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.178
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=781", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=781"]; + 782 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.179
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=782", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=782"]; + 666 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.18
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=666", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=666"]; + 783 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.180
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=783", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=783"]; + 784 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.181
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=784", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=784"]; + 785 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.182
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=785", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=785"]; + 786 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.183
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=786", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=786"]; + 667 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.19
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=667", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=667"]; + 649 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.2
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=649", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=649"]; + 668 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.20
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=668", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=668"]; + 669 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.21
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=669", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=669"]; + 670 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.22
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=670", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=670"]; + 671 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.23
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=671", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=671"]; + 787 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.234
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=787", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=787"]; + 672 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.24
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=672", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=672"]; + 788 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.241
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=788", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=788"]; + 789 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.242
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=789", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=789"]; + 790 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.243
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=790", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=790"]; + 673 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.25
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=673", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=673"]; + 674 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.26
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=674", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=674"]; + 676 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.27
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=676", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=676"]; + 677 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.28
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=677", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=677"]; + 678 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.29
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=678", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=678"]; + 679 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.43
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=679", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=679"]; + 680 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.44
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=680", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=680"]; + 650 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.5
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=650", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=650"]; + 681 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.52
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=681", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=681"]; + 682 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.53
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=682", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=682"]; + 683 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.54
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=683", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=683"]; + 684 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.55
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=684", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=684"]; + 685 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.56
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=685", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=685"]; + 652 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.6
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=652", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=652"]; + 693 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.220.155.63
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=693", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=693"]; + 438 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.33.201.221
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=438", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=438"]; + 439 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    66.33.201.66
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=439", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=439"]; + 359 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=359", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=359"]; + 366 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.10
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=366", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=366"]; + 516 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.101
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=516", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=516"]; + 520 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.102
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=520", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=520"]; + 522 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.103
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=522", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=522"]; + 524 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.104
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=524", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=524"]; + 526 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.105
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=526", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=526"]; + 528 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.106
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=528", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=528"]; + 530 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.107
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=530", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=530"]; + 532 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.108
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=532", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=532"]; + 537 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.109
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=537", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=537"]; + 367 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.11
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=367", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=367"]; + 543 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.110
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=543", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=543"]; + 545 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.111
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=545", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=545"]; + 546 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.112
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=546", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=546"]; + 548 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.113
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=548", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=548"]; + 550 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.114
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=550", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=550"]; + 391 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.36
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=391", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=391"]; + 392 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.37
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=392", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=392"]; + 393 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.38
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=393", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=393"]; + 394 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.39
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=394", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=394"]; + 360 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.4
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=360", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=360"]; + 395 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.40
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=395", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=395"]; + 396 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.41
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=396", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=396"]; + 397 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.42
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=397", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=397"]; + 398 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.44
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=398", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=398"]; + 399 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.45
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=399", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=399"]; + 400 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.163.176.46
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=400", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=400"]; + 301 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    69.216.106.212.s
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=301", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=301"]; + 657 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.193
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=657", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=657"]; + 651 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.215
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=651", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=651"]; + 655 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.217
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=655", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=655"]; + 659 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.219
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=659", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=659"]; + 663 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.221
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=663", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=663"]; + 653 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.223
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=653", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=653"]; + 722 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.225
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=722", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=722"]; + 675 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.227
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=675", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=675"]; + 579 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.237
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=579", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=579"]; + 591 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.239
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=591", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=591"]; + 603 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.245
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=603", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=603"]; + 589 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.247
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=589", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=589"]; + 575 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.77
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=575", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=575"]; + 572 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.76.79
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=572", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=572"]; + 637 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.77.142
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=637", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=637"]; + 642 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.77.144
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=642", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=642"]; + 582 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.77.77
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=582", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=582"]; + 584 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.77.79
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=584", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=584"]; + 586 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.77.81
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=586", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=586"]; + 598 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.77.83
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=598", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=598"]; + 571 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.78.182
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=571", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=571"]; + 648 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    74.119.78.83
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=648", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=648"]; + 618 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    77.72.228.14
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=618", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=618"]; + 617 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    77.72.228.45
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=617", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=617"]; + 688 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    84.233.213.222
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=688", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=688"]; + 687 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    84.233.213.41
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=687", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=687"]; + 812 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    85.254.196.210
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=812", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=812"]; + 811 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    85.254.196.237
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=811", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=811"]; + 331 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.31
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=331", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=331"]; + 332 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.32
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=332", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=332"]; + 333 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.33
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=333", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=333"]; + 334 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.34
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=334", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=334"]; + 335 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.35
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=335", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=335"]; + 336 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.38
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=336", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=336"]; + 337 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.39
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=337", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=337"]; + 338 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.40
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=338", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=338"]; + 339 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.41
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=339", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=339"]; + 340 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.42
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=340", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=340"]; + 341 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.43
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=341", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=341"]; + 342 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.44
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=342", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=342"]; + 343 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.45
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=343", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=343"]; + 344 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.46
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=344", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=344"]; + 345 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.47
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=345", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=345"]; + 346 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.48
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=346", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=346"]; + 347 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.49
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=347", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=347"]; + 348 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.50
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=348", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=348"]; + 349 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.51
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=349", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=349"]; + 350 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.52
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=350", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=350"]; + 351 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.53
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=351", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=351"]; + 352 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.56
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=352", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=352"]; + 353 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.57
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=353", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=353"]; + 354 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.58
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=354", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=354"]; + 355 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.59
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=355", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=355"]; + 356 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.60
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=356", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=356"]; + 357 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.61
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=357", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=357"]; + 358 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    87.248.112.62
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=358", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=358"]; + 306 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    unknown-66-196-6
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=306", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=306"]; + 319 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    unknown-87-248-1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=319", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=319"]; + 320 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    unknown-87-248-1
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=320", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=320"]; + 304 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    ae-1.msr1.ird.ya
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=304", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=304"]; + 307 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    ae-2.msr2.ird.ya
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=307", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=307"]; + 316 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    fe.gsp.search.vi
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=316", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=316"]; + 302 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    ge-1-1-0.pat1.th
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=302", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=302"]; + 305 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    ha1.vl-220.bas-b
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=305", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=305"]; + 308 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    ha2.vl-220.bas-b
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=308", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=308"]; + 1 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    metafora
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=1"]; + 2 [ color="#FF1D1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    metafora.artica.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=2", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=2"]; + 325 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    p1.movies.ird.ya
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=325", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=325"]; + 323 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    p1.tv.ird.yahoo.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=323", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=323"]; + 330 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    p2.movies.ird.ya
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=330", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=330"]; + 329 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    p2.tv.ird.yahoo.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=329", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=329"]; + 321 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    p4.tv.ird.yahoo.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=321", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=321"]; + 322 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    qa-eu.ent.ird.ya
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=322", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=322"]; + 315 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    rd.gsp.search.vi
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=315", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=315"]; + 326 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    rd01.gsp.search.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=326", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=326"]; + 327 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    rd02.gsp.search.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=327", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=327"]; + 328 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    rd03.gsp.search.
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=328", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=328"]; + 312 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    si-b34.vrrp.vl22
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=312", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=312"]; + 303 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    so-0-0-0.pat1.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=303", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=303"]; + 314 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    te-7-4.bas-b1.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=314", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=314"]; + 317 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    te-7-4.bas-b2.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=317", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=317"]; + 324 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    te-8-4.bas-b1.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=324", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=324"]; + 311 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    te-8-4.bas-b2.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=311", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=311"]; + 309 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    vl-220.bas-b1.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=309", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=309"]; + 310 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    vl-220.bas-b2.ir
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=310", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=310"]; + 313 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    yts1.yql.ird.yah
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=313", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=313"]; + 318 [ color="#8DFF1D", fontsize=12, style="filled", fixedsize=true, width=0.40, height=0.40, label=< +
    z6po-feeder.sear
    >, + shape="doublecircle", URL="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=318", + tooltip="ajax.php?page=operation/agentes/ver_agente&get_agent_status_tooltip=1&id_agent=318"]; + 619 -- 618[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=619&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];686 -- 618[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=686&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];620 -- 619[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=620&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];692 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=692&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];699 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=699&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];700 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=700&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];701 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=701&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];702 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=702&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];703 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=703&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];704 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=704&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];705 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=705&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];706 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=706&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];707 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=707&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];694 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=694&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];708 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=708&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];709 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=709&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];710 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=710&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];711 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=711&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];712 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=712&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];791 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=791&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];792 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=792&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];713 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=713&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];714 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=714&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];715 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=715&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];716 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=716&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];695 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=695&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];717 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=717&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];718 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=718&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];719 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=719&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];696 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=696&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];697 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=697&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];698 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=698&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];793 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=793&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];798 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=798&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];799 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=799&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];800 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=800&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];801 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=801&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];802 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=802&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];803 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=803&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];804 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=804&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];805 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=805&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];806 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=806&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];794 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=794&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];807 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=807&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];795 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=795&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];796 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=796&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];797 -- 691[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=797&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];813 -- 812[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=813&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];690 -- 689[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=690&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];689 -- 688[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=689&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];691 -- 690[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=691&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];533 -- 301[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=533&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];538 -- 301[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=538&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];570 -- 301[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=570&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];581 -- 571[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=581&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];647 -- 570[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=647&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];577 -- 571[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=577&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];557 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=557&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];558 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=558&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];560 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=560&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];562 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=562&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];568 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=568&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];425 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=425&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];426 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=426&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];427 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=427&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];428 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=428&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];430 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=430&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];431 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=431&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];432 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=432&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];433 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=433&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];434 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=434&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];435 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=435&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];436 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=436&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];437 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=437&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];445 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=445&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];419 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=419&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];447 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=447&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];449 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=449&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];451 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=451&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];452 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=452&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];454 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=454&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];456 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=456&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];458 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=458&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];460 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=460&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];462 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=462&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];464 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=464&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];422 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=422&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];466 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=466&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];468 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=468&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];470 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=470&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];472 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=472&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];474 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=474&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];476 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=476&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];478 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=478&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];479 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=479&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];481 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=481&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];423 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=423&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];483 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=483&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];484 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=484&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];485 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=485&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];487 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=487&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];489 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=489&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];491 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=491&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];493 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=493&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];496 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=496&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];498 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=498&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];502 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=502&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];504 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=504&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];505 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=505&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];507 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=507&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];509 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=509&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];511 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=511&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];513 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=513&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];515 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=515&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];517 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=517&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];518 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=518&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];519 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=519&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];521 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=521&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];523 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=523&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];525 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=525&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];527 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=527&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];529 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=529&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];531 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=531&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];542 -- 541[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=542&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];544 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=544&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];547 -- 429[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=547&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];549 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=549&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];551 -- 424[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=551&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];553 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=553&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];555 -- 418[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=555&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];421 -- 420[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=421&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];418 -- 417[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=418&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];429 -- 417[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=429&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];424 -- 420[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=424&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];415 -- 414[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=415&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];420 -- 416[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=420&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];416 -- 415[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=416&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];417 -- 416[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=417&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];809 -- 808[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=809&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];810 -- 809[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=810&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];534 -- 533[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=534&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];539 -- 538[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=539&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];536 -- 535[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=536&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];541 -- 540[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=541&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];535 -- 534[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=535&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];540 -- 539[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=540&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];573 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=573&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];580 -- 579[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=580&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];583 -- 582[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=583&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];585 -- 584[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=585&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];587 -- 586[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=587&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];612 -- 603[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=612&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];613 -- 603[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=613&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];614 -- 582[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=614&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];615 -- 579[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=615&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];588 -- 584[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=588&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];590 -- 589[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=590&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];592 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=592&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];574 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=574&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];593 -- 579[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=593&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];594 -- 586[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=594&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];595 -- 579[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=595&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];621 -- 584[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=621&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];622 -- 584[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=622&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];623 -- 589[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=623&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];624 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=624&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];625 -- 603[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=625&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];626 -- 598[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=626&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];627 -- 579[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=627&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];628 -- 603[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=628&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];629 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=629&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];630 -- 589[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=630&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];596 -- 582[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=596&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];631 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=631&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];632 -- 584[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=632&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];633 -- 598[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=633&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];634 -- 589[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=634&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];635 -- 586[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=635&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];597 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=597&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];599 -- 598[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=599&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];600 -- 582[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=600&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];601 -- 589[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=601&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];602 -- 584[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=602&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];604 -- 603[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=604&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];605 -- 589[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=605&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];606 -- 603[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=606&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];607 -- 579[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=607&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];608 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=608&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];609 -- 591[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=609&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];610 -- 582[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=610&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];611 -- 582[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=611&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];576 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=576&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];578 -- 577[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=578&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];636 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=636&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];638 -- 637[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=638&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];639 -- 637[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=639&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];640 -- 637[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=640&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];641 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=641&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];643 -- 642[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=643&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];644 -- 642[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=644&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];645 -- 642[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=645&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];646 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=646&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];654 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=654&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];720 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=720&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];721 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=721&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];656 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=656&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];723 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=723&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];724 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=724&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];725 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=725&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];726 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=726&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];658 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=658&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];727 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=727&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];728 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=728&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];729 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=729&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];730 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=730&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];731 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=731&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];732 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=732&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];733 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=733&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];734 -- 648[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=734&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];660 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=660&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];735 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=735&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];736 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=736&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];737 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=737&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];738 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=738&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];739 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=739&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];740 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=740&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];741 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=741&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];742 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=742&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];661 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=661&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];743 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=743&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];744 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=744&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];745 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=745&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];746 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=746&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];747 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=747&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];748 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=748&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];749 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=749&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];750 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=750&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];751 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=751&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];752 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=752&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];662 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=662&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];753 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=753&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];754 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=754&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];755 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=755&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];756 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=756&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];757 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=757&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];758 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=758&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];759 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=759&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];760 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=760&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];761 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=761&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];762 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=762&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];664 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=664&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];763 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=763&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];764 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=764&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];765 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=765&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];766 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=766&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];767 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=767&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];768 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=768&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];769 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=769&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];770 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=770&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];771 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=771&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];772 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=772&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];665 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=665&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];773 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=773&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];774 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=774&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];775 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=775&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];776 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=776&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];777 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=777&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];778 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=778&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];779 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=779&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];780 -- 722[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=780&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];781 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=781&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];782 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=782&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];666 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=666&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];783 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=783&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];784 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=784&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];785 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=785&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];786 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=786&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];667 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=667&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];649 -- 648[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=649&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];668 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=668&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];669 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=669&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];670 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=670&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];671 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=671&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];787 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=787&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];672 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=672&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];788 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=788&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];789 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=789&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];790 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=790&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];673 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=673&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];674 -- 657[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=674&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];676 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=676&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];677 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=677&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];678 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=678&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];679 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=679&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];680 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=680&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];650 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=650&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];681 -- 653[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=681&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];682 -- 659[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=682&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];683 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=683&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];684 -- 675[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=684&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];685 -- 655[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=685&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];652 -- 651[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=652&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];693 -- 663[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=693&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];439 -- 359[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=439&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];359 -- 438[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=359&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];366 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=366&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];516 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=516&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];522 -- 421[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=522&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];524 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=524&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];526 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=526&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];528 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=528&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];530 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=530&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];532 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=532&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];537 -- 536[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=537&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];367 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=367&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];543 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=543&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];545 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=545&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];546 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=546&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];548 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=548&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];550 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=550&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];391 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=391&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];392 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=392&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];393 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=393&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];394 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=394&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];360 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=360&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];395 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=395&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];396 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=396&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];397 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=397&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];398 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=398&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];399 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=399&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];400 -- 439[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=400&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];301 -- 300[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=301&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];657 -- 581[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=657&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];651 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=651&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];655 -- 577[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=655&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];659 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=659&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];663 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=663&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];653 -- 648[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=653&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];722 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=722&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];675 -- 577[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=675&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];579 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=579&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];591 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=591&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];603 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=603&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];589 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=589&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];575 -- 571[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=575&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];572 -- 571[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=572&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];637 -- 575[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=637&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];642 -- 572[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=642&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];582 -- 581[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=582&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];584 -- 577[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=584&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];586 -- 581[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=586&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];598 -- 577[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=598&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];571 -- 570[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=571&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];648 -- 647[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=648&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];618 -- 617[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=618&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];617 -- 616[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=617&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];688 -- 687[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=688&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];812 -- 811[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=812&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];811 -- 810[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=811&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];331 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=331&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];332 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=332&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];333 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=333&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];334 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=334&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];335 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=335&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];336 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=336&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];337 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=337&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];338 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=338&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];339 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=339&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];340 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=340&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];341 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=341&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];342 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=342&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];343 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=343&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];344 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=344&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];345 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=345&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];346 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=346&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];347 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=347&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];348 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=348&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];349 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=349&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];350 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=350&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];351 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=351&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];352 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=352&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];353 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=353&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];354 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=354&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];355 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=355&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];356 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=356&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];357 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=357&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];358 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=358&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];306 -- 302[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=306&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];319 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=319&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];320 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=320&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];304 -- 303[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=304&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];307 -- 306[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=307&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];316 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=316&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];302 -- 301[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=302&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];305 -- 304[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=305&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];308 -- 307[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=308&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];325 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=325&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];323 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=323&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];330 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=330&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];329 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=329&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];321 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=321&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];322 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=322&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];315 -- 314[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=315&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];326 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=326&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];327 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=327&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];328 -- 324[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=328&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];312 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=312&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];303 -- 302[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=303&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];314 -- 307[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=314&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];317 -- 307[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=317&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];324 -- 304[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=324&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];311 -- 304[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=311&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];309 -- 307[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=309&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];310 -- 307[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=310&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];313 -- 311[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=313&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];318 -- 317[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=318&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 [ color="#364D1F", fontsize=12, style="filled", fixedsize=true, width=0.8, height=0.6, label=<
    Pandora FMS
    >, + shape="ellipse", URL="index.php?sec=estado&sec2=operation/agentes/group_view" ];0 -- 300[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 616[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 414[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 808[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 438[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 520[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 687[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 1[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];0 -- 2[color="#BDBDBD", headclip=false, tailclip=false, + edgeURL="index.php?sec=estado&sec2=operation/agentes/networkmap&tab=topology&recenter_networkmap=1¢er=0&layout=radial&nooverlap=&pure=0&zoom=1&ranksep=2.5&simple=0®en=1&font_size=12&group=0&id_networkmap=1"];} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/philo.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/philo.gv.txt new file mode 100644 index 00000000..69ce9039 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/philo.gv.txt @@ -0,0 +1,40 @@ +## "It encodes the so-called philosophers dilemma. Neato pretty much approximates the way how humans would layout the graph." Contributed by Manfred Jeusfield. +## Command to generate the layout: "neato -Tpng thisfile > thisfile.png" + + +digraph PhiloDilemma { +node [shape=box]; bec3; rel3; bec2; rel2; acq2; acq3; bec1; rel1; acq1; +node [shape=circle,fixedsize=true,width=0.9]; hu3; th3; ri3; ea3; hu2; th2; ri2; ea2; hu1; th1; ri1; ea1; +ri3->acq2; +ri3->acq3; +hu3->acq3; +bec3->hu3; +th3->bec3; +rel3->th3; +rel3->ri3; +ea3->rel3; +acq3->ea3; +ri2->acq1; +ri2->acq2; +hu2->acq2; +bec2->hu2; +th2->bec2; +rel2->th2; +rel2->ri2; +ea2->rel2; +acq2->ea2; +ri1->acq3; +ri1->acq1; +hu1->acq1; +bec1->hu1; +th1->bec1; +rel1->th1; +rel1->ri1; +ea1->rel1; +acq1->ea1; + +overlap=false +label="PetriNet Model PhiloDilemma\nExtracted from ConceptBase and layed out by Graphviz " +fontsize=12; +} + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/process.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/process.gv.txt new file mode 100644 index 00000000..34fe9fb5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/process.gv.txt @@ -0,0 +1,15 @@ +graph G { + run -- intr; + intr -- runbl; + runbl -- run; + run -- kernel; + kernel -- zombie; + kernel -- sleep; + kernel -- runmem; + sleep -- swap; + swap -- runswap; + runswap -- new; + runswap -- runmem; + new -- runmem; + sleep -- runmem; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/profile.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/profile.gv.txt new file mode 100644 index 00000000..ccfc7f76 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/profile.gv.txt @@ -0,0 +1,150 @@ +digraph prof { + size="6,4"; ratio = fill; + node [style=filled]; + start -> main [color="0.002 0.999 0.999"]; + start -> on_exit [color="0.649 0.701 0.701"]; + main -> sort [color="0.348 0.839 0.839"]; + main -> merge [color="0.515 0.762 0.762"]; + main -> term [color="0.647 0.702 0.702"]; + main -> signal [color="0.650 0.700 0.700"]; + main -> sbrk [color="0.650 0.700 0.700"]; + main -> unlink [color="0.650 0.700 0.700"]; + main -> newfile [color="0.650 0.700 0.700"]; + main -> fclose [color="0.650 0.700 0.700"]; + main -> close [color="0.650 0.700 0.700"]; + main -> brk [color="0.650 0.700 0.700"]; + main -> setbuf [color="0.650 0.700 0.700"]; + main -> copyproto [color="0.650 0.700 0.700"]; + main -> initree [color="0.650 0.700 0.700"]; + main -> safeoutfil [color="0.650 0.700 0.700"]; + main -> getpid [color="0.650 0.700 0.700"]; + main -> sprintf [color="0.650 0.700 0.700"]; + main -> creat [color="0.650 0.700 0.700"]; + main -> rem [color="0.650 0.700 0.700"]; + main -> oldfile [color="0.650 0.700 0.700"]; + sort -> msort [color="0.619 0.714 0.714"]; + sort -> filbuf [color="0.650 0.700 0.700"]; + sort -> newfile [color="0.650 0.700 0.700"]; + sort -> fclose [color="0.650 0.700 0.700"]; + sort -> setbuf [color="0.650 0.700 0.700"]; + sort -> setfil [color="0.650 0.700 0.700"]; + msort -> qsort [color="0.650 0.700 0.700"]; + msort -> insert [color="0.650 0.700 0.700"]; + msort -> wline [color="0.650 0.700 0.700"]; + msort -> div [color="0.650 0.700 0.700"]; + msort -> cmpsave [color="0.650 0.700 0.700"]; + merge -> insert [color="0.650 0.700 0.700"]; + merge -> rline [color="0.650 0.700 0.700"]; + merge -> wline [color="0.650 0.700 0.700"]; + merge -> unlink [color="0.650 0.700 0.700"]; + merge -> fopen [color="0.650 0.700 0.700"]; + merge -> fclose [color="0.650 0.700 0.700"]; + merge -> setfil [color="0.650 0.700 0.700"]; + merge -> mul [color="0.650 0.700 0.700"]; + merge -> setbuf [color="0.650 0.700 0.700"]; + merge -> cmpsave [color="0.650 0.700 0.700"]; + insert -> cmpa [color="0.650 0.700 0.700"]; + wline -> flsbuf [color="0.649 0.700 0.700"]; + qsort -> cmpa [color="0.650 0.700 0.700"]; + rline -> filbuf [color="0.649 0.700 0.700"]; + xflsbuf -> write [color="0.650 0.700 0.700"]; + flsbuf -> xflsbuf [color="0.649 0.700 0.700"]; + filbuf -> read [color="0.650 0.700 0.700"]; + term -> unlink [color="0.650 0.700 0.700"]; + term -> signal [color="0.650 0.700 0.700"]; + term -> setfil [color="0.650 0.700 0.700"]; + term -> exit [color="0.650 0.700 0.700"]; + endopen -> open [color="0.650 0.700 0.700"]; + fopen -> endopen [color="0.639 0.705 0.705"]; + fopen -> findiop [color="0.650 0.700 0.700"]; + newfile -> fopen [color="0.634 0.707 0.707"]; + newfile -> setfil [color="0.650 0.700 0.700"]; + fclose -> fflush [color="0.642 0.704 0.704"]; + fclose -> close [color="0.650 0.700 0.700"]; + fflush -> xflsbuf [color="0.635 0.707 0.707"]; + malloc -> morecore [color="0.325 0.850 0.850"]; + malloc -> demote [color="0.650 0.700 0.700"]; + morecore -> sbrk [color="0.650 0.700 0.700"]; + morecore -> getfreehdr [color="0.650 0.700 0.700"]; + morecore -> free [color="0.650 0.700 0.700"]; + morecore -> getpagesize [color="0.650 0.700 0.700"]; + morecore -> putfreehdr [color="0.650 0.700 0.700"]; + morecore -> udiv [color="0.650 0.700 0.700"]; + morecore -> umul [color="0.650 0.700 0.700"]; + on_exit -> malloc [color="0.325 0.850 0.850"]; + signal -> sigvec [color="0.650 0.700 0.700"]; + moncontrol -> profil [color="0.650 0.700 0.700"]; + getfreehdr -> sbrk [color="0.650 0.700 0.700"]; + free -> insert [color="0.650 0.700 0.700"]; + insert -> getfreehdr [color="0.650 0.700 0.700"]; + setfil -> div [color="0.650 0.700 0.700"]; + setfil -> rem [color="0.650 0.700 0.700"]; + sigvec -> sigblock [color="0.650 0.700 0.700"]; + sigvec -> sigsetmask [color="0.650 0.700 0.700"]; + doprnt -> urem [color="0.650 0.700 0.700"]; + doprnt -> udiv [color="0.650 0.700 0.700"]; + doprnt -> strlen [color="0.650 0.700 0.700"]; + doprnt -> localeconv [color="0.650 0.700 0.700"]; + sprintf -> doprnt [color="0.650 0.700 0.700"]; +cmpa [color="0.000 1.000 1.000"]; +wline [color="0.201 0.753 1.000"]; +insert [color="0.305 0.625 1.000"]; +rline [color="0.355 0.563 1.000"]; +sort [color="0.408 0.498 1.000"]; +qsort [color="0.449 0.447 1.000"]; +write [color="0.499 0.386 1.000"]; +read [color="0.578 0.289 1.000"]; +msort [color="0.590 0.273 1.000"]; +merge [color="0.603 0.258 1.000"]; +unlink [color="0.628 0.227 1.000"]; +filbuf [color="0.641 0.212 1.000"]; +open [color="0.641 0.212 1.000"]; +sbrk [color="0.647 0.204 1.000"]; +signal [color="0.647 0.204 1.000"]; +moncontrol [color="0.647 0.204 1.000"]; +xflsbuf [color="0.650 0.200 1.000"]; +flsbuf [color="0.650 0.200 1.000"]; +div [color="0.650 0.200 1.000"]; +cmpsave [color="0.650 0.200 1.000"]; +rem [color="0.650 0.200 1.000"]; +setfil [color="0.650 0.200 1.000"]; +close [color="0.650 0.200 1.000"]; +fclose [color="0.650 0.200 1.000"]; +fflush [color="0.650 0.200 1.000"]; +setbuf [color="0.650 0.200 1.000"]; +endopen [color="0.650 0.200 1.000"]; +findiop [color="0.650 0.200 1.000"]; +fopen [color="0.650 0.200 1.000"]; +mul [color="0.650 0.200 1.000"]; +newfile [color="0.650 0.200 1.000"]; +sigblock [color="0.650 0.200 1.000"]; +sigsetmask [color="0.650 0.200 1.000"]; +sigvec [color="0.650 0.200 1.000"]; +udiv [color="0.650 0.200 1.000"]; +urem [color="0.650 0.200 1.000"]; +brk [color="0.650 0.200 1.000"]; +getfreehdr [color="0.650 0.200 1.000"]; +strlen [color="0.650 0.200 1.000"]; +umul [color="0.650 0.200 1.000"]; +doprnt [color="0.650 0.200 1.000"]; +copyproto [color="0.650 0.200 1.000"]; +creat [color="0.650 0.200 1.000"]; +demote [color="0.650 0.200 1.000"]; +exit [color="0.650 0.200 1.000"]; +free [color="0.650 0.200 1.000"]; +getpagesize [color="0.650 0.200 1.000"]; +getpid [color="0.650 0.200 1.000"]; +initree [color="0.650 0.200 1.000"]; +insert [color="0.650 0.200 1.000"]; +localeconv [color="0.650 0.200 1.000"]; +main [color="0.650 0.200 1.000"]; +malloc [color="0.650 0.200 1.000"]; +morecore [color="0.650 0.200 1.000"]; +oldfile [color="0.650 0.200 1.000"]; +on_exit [color="0.650 0.200 1.000"]; +profil [color="0.650 0.200 1.000"]; +putfreehdr [color="0.650 0.200 1.000"]; +safeoutfil [color="0.650 0.200 1.000"]; +sprintf [color="0.650 0.200 1.000"]; +term [color="0.650 0.200 1.000"]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/psg.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/psg.gv.txt new file mode 100644 index 00000000..be2199c1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/psg.gv.txt @@ -0,0 +1,32 @@ +##"I made a program to generate dot files representing the LR(0) state graph along with computed LALR(1) lookahead for an arbitrary context-free grammar, to make the diagrams I used in this article: http://blog.lab49.com/archives/2471. The program also highlights errant nodes in red if the grammar would produce a shift/reduce or reduce/reduce conflict -- you may be able to go to http://kthielen.dnsalias.com:8082/ to produce a graph more to your liking". Contributed by Kalani Thielen. + +##Command to get the layout: "dot -Gsize=10,15 -Tpng thisfile > thisfile.png" + +digraph g { + graph [fontsize=30 labelloc="t" label="" splines=true overlap=false rankdir = "LR"]; + ratio = auto; + "state0" [ style = "filled, bold" penwidth = 5 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #0
    (0) s -> •e $
    (1) e -> •l '=' r
    (2) e -> •r
    (3) l -> •'*' r
    (4) l -> •'n'
    (5) r -> •l
    > ]; + "state1" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #1
    (3) l -> •'*' r
    (3) l -> '*' •r
    (4) l -> •'n'
    (5) r -> •l
    > ]; + "state2" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #2
    (4) l -> 'n' •=$
    > ]; + "state3" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #3
    (5) r -> l •=$
    > ]; + "state4" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #4
    (3) l -> '*' r •=$
    > ]; + "state5" [ style = "filled" penwidth = 1 fillcolor = "black" fontname = "Courier New" shape = "Mrecord" label =<
    State #5
    (0) s -> e •$
    > ]; + "state6" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #6
    (1) e -> l •'=' r
    (5) r -> l •$
    > ]; + "state7" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #7
    (1) e -> l '=' •r
    (3) l -> •'*' r
    (4) l -> •'n'
    (5) r -> •l
    > ]; + "state8" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #8
    (1) e -> l '=' r •$
    > ]; + "state9" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #9
    (2) e -> r •$
    > ]; + state0 -> state5 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "e" ]; + state0 -> state6 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "l" ]; + state0 -> state9 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "r" ]; + state0 -> state1 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'*'" ]; + state0 -> state2 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'n'" ]; + state1 -> state1 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'*'" ]; + state1 -> state4 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "r" ]; + state1 -> state2 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'n'" ]; + state1 -> state3 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "l" ]; + state6 -> state7 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'='" ]; + state7 -> state8 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "r" ]; + state7 -> state1 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'*'" ]; + state7 -> state2 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'n'" ]; + state7 -> state3 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "l" ]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/root.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/root.gv.txt new file mode 100644 index 00000000..fff85a18 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/root.gv.txt @@ -0,0 +1,2143 @@ +/* this graph is from the graphviz rtest/graph directory. Laid out and rendered as + sfdp -Gsize=67! -Goverlap=prism -Tpng root.gv > root.png +*/ +digraph G_component_0 { + graph [ranksep=3, root="189E"]; + 1 [label="02f5daf56e299b8a8ecea892", shape=hexagon, style=filled, color=green]; + "189E" [label=ca5af2, shape=box, style=filled, color=blue]; + "790E" [label=b4dfef6, shape=box, style=filled, color=grey]; + 2 [label="171192dc1f8e6ea551548a910c00", shape=hexagon, style=filled, color=green]; + "191E" [label="629e42", shape=box, style=filled, color=grey]; + 3 [label="6bce02baf91781a831e1b95", shape=hexagon, style=filled, color=green]; + "193E" [label="1c08373", shape=box, style=filled, color=grey]; + 4 [label="6236a67933a619a6a3d48", shape=hexagon, style=filled, color=green]; + "195E" [label=be8f4199f, shape=box, style=filled, color=grey]; + 5 [label="50962c93b4cb293f5beb59eb", shape=hexagon, style=filled, color=green]; + "197E" [label=be8f4199f, shape=box, style=filled, color=grey]; + 6 [label="05d4b1ed6a6135eec3abd3f2", shape=hexagon, style=filled, color=green]; + "199E" [shape=box, style=filled, color=grey]; + 7 [label="08769f73d31c1a99be2d9363f", shape=hexagon, style=filled, color=green]; + "201E" [label="629e42", shape=box, style=filled, color=grey]; + 8 [label=a6a196a504c3a7657d1fa41, shape=hexagon, style=filled, color=green]; + "203E" [label=cd856f, shape=box, style=filled, color=grey]; + 9 [label="837ebf4bde22e1f1535cb662", shape=hexagon, style=filled, color=green]; + "725E" [label=d0eb84, shape=box, style=filled, color=grey]; + "785E" [label=dd2ba36, shape=box, style=filled, color=grey]; + 10 [label="5f865c374cb3fe976dd376b8", shape=hexagon, style=filled, color=green]; + "205E" [label="23ad1", shape=box, style=filled, color=grey]; + 11 [label="8be752bc95d436a90493bec9", shape=hexagon, style=filled, color=green]; + "207E" [label=ee91c97828, shape=box, style=filled, color=grey]; + 12 [label="969a58db14386cb9d2f51ec", shape=hexagon, style=filled, color=green]; + "209E" [label="7c7c", shape=box, style=filled, color=grey]; + 13 [label=da24f74aad2ff519009d1f38c, shape=hexagon, style=filled, color=green]; + "211E" [label="460aed10cc9", shape=box, style=filled, color=grey]; + 14 [label="3124d3a6ed3381a6341c6", shape=hexagon, style=filled, color=green]; + "213E" [label=bbe0a8f93dc1, shape=box, style=filled, color=grey]; + 15 [label="71512ec7d43f958f2b6da", shape=hexagon, style=filled, color=green]; + "215E" [label="3f0a2b4eb62f", shape=box, style=filled, color=grey]; + 16 [label="3828a2c682419423cf", shape=hexagon, style=filled, color=green]; + "727E" [label=2, shape=box, style=filled, color=grey]; + "784E" [shape=box, style=filled, color=grey]; + 17 [label=aa868f65c34cdb64f1fad19a, shape=hexagon, style=filled, color=green]; + "217E" [label="3089106e3b", shape=box, style=filled, color=grey]; + "787E" [label="1aaaab063", shape=box, style=filled, color=grey]; + 18 [label=dca32af03698c988b22, shape=hexagon, style=filled, color=green]; + "219E" [label=eb8, shape=box, style=filled, color=grey]; + 19 [label=d8f4a9e463a1e89217f, shape=hexagon, style=filled, color=green]; + "221E" [label="4c6c8c", shape=box, style=filled, color=grey]; + 20 [label=c96782ef56711c5d6a3f69, shape=hexagon, style=filled, color=green]; + "223E" [label="6a8f5bafb1", shape=box, style=filled, color=grey]; + 21 [label="4f04c39708f", shape=hexagon, style=filled, color=green]; + "225E" [label=a49284e9, shape=box, style=filled, color=grey]; + 22 [label="97284d4c3a5d499853f0e", shape=hexagon, style=filled, color=green]; + "227E" [label="53069e384a2", shape=box, style=filled, color=grey]; + "792E" [label="79b69c612", shape=box, style=filled, color=grey]; + 23 [label=c4d32527b670afb370d643, shape=hexagon, style=filled, color=green]; + "231E" [label=e851f5ddd920, shape=box, style=filled, color=grey]; + 24 [label="5e9156098c064", shape=hexagon, style=filled, color=green]; + "233E" [shape=box, style=filled, color=grey]; + 25 [label="3d475ea3aeca51b60212dd", shape=hexagon, style=filled, color=green]; + "235E" [label="4280833ef80172", shape=box, style=filled, color=grey]; + 26 [label="966d271c22e75c7538", shape=hexagon, style=filled, color=green]; + "237E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 27 [label=b630e1af6ae1997f0e8ba750, shape=hexagon, style=filled, color=green]; + "239E" [label=bb828f1a326, shape=box, style=filled, color=grey]; + "783E" [label="499f6985db294c", shape=box, style=filled, color=grey]; + 28 [label=ebd8ffc2ac3a90efb8af9, shape=hexagon, style=filled, color=green]; + "241E" [label="1ebeec", shape=box, style=filled, color=grey]; + "791E" [label=c0b727, shape=box, style=filled, color=grey]; + 29 [label="69fdd1a1f4768c5efe7", shape=hexagon, style=filled, color=green]; + "243E" [label="35b8742610", shape=box, style=filled, color=grey]; + 30 [label=d93a80739fc1edb41a11b7294, shape=hexagon, style=filled, color=green]; + "245E" [label=e03b8bc0435a, shape=box, style=filled, color=grey]; + 31 [label=bf65cfddeb00ff847feae0c, shape=hexagon, style=filled, color=green]; + "247E" [label="8df", shape=box, style=filled, color=grey]; + 32 [label="916c686a1e82dba72524a", shape=hexagon, style=filled, color=green]; + "249E" [label=a849f9d352e, shape=box, style=filled, color=grey]; + 33 [label=f496bcf0889b301d77819c, shape=hexagon, style=filled, color=green]; + "251E" [label=f29dfb9, shape=box, style=filled, color=grey]; + 34 [label="76889f7d35e", shape=hexagon, style=filled, color=green]; + "253E" [label=e7ef998, shape=box, style=filled, color=grey]; + 35 [label="668d636002", shape=hexagon, style=filled, color=green]; + "255E" [label="4379b5ed", shape=box, style=filled, color=grey]; + 36 [label=e1e4c23db39d8bd633c3a, shape=hexagon, style=filled, color=green]; + "257E" [label="1ed5d7f63b8c6", shape=box, style=filled, color=grey]; + 37 [label="842bc5775657c1e0d67", shape=hexagon, style=filled, color=green]; + "259E" [label=a387210a27b, shape=box, style=filled, color=grey]; + 38 [label=e4e2f4e6d, shape=hexagon, style=filled, color=green]; + "261E" [label="1f4f0fdf", shape=box, style=filled, color=grey]; + 39 [label="04390dec6f1779353c07f5", shape=hexagon, style=filled, color=green]; + "263E" [label=bac77c3f414a, shape=box, style=filled, color=grey]; + 40 [label="69f2611acc42c36ed7cc", shape=hexagon, style=filled, color=green]; + "265E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 41 [label="1562abef0d8241", shape=hexagon, style=filled, color=green]; + "267E" [label="6a8f5bafb1", shape=box, style=filled, color=grey]; + 42 [label=e49aaa5cc4e44355d6a0, shape=hexagon, style=filled, color=green]; + "269E" [label=cc3f63d, shape=box, style=filled, color=grey]; + 43 [label=e8ebe1bf5f421c1223, shape=hexagon, style=filled, color=green]; + "271E" [label="96325ea", shape=box, style=filled, color=grey]; + 44 [label="2759e82e30d6d", shape=hexagon, style=filled, color=green]; + "273E" [label=ca5af2, shape=box, style=filled, color=grey]; + 45 [label="23c1ec53358d237c1", shape=hexagon, style=filled, color=green]; + "275E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 46 [label="5838586c293d455", shape=hexagon, style=filled, color=green]; + "277E" [label="83c397b8bf7f", shape=box, style=filled, color=grey]; + 47 [label=f841118350a27b7ea29a9c9d, shape=hexagon, style=filled, color=green]; + "279E" [label="69f4ecb77d", shape=box, style=filled, color=grey]; + 48 [label="658d208447d8ec5d6de8", shape=hexagon, style=filled, color=green]; + "281E" [label=f7b22b9640, shape=box, style=filled, color=grey]; + 49 [label="11180ae7706510211bc4", shape=hexagon, style=filled, color=green]; + "283E" [label="052bb6e3", shape=box, style=filled, color=grey]; + 50 [label="5807acd8d58e006f43", shape=hexagon, style=filled, color=green]; + "285E" [shape=box, style=filled, color=grey]; + 51 [label=fe4e848cb5291ee59a2, shape=hexagon, style=filled, color=green]; + "287E" [label=e3aefac763, shape=box, style=filled, color=grey]; + 52 [label=c4f31ea3844e12da27ad47c6, shape=hexagon, style=filled, color=green]; + "289E" [label=fb16636aae, shape=box, style=filled, color=grey]; + 53 [label="00cbeb87c182ca0785f", shape=hexagon, style=filled, color=green]; + "291E" [label="3089106e3b", shape=box, style=filled, color=grey]; + 54 [label="11f088bfd8", shape=hexagon, style=filled, color=green]; + "293E" [label="6a80cbe", shape=box, style=filled, color=grey]; + 56 [label="3c2a62e0e5e9f7", shape=hexagon, style=filled, color=green]; + "295E" [label=ae32701, shape=box, style=filled, color=grey]; + 57 [label=dd84fe6a65cfac7bca03ebd, shape=hexagon, style=filled, color=green]; + "297E" [shape=box, style=filled, color=grey]; + 58 [label=b06bbfa920aa95dd, shape=hexagon, style=filled, color=green]; + "299E" [label=07, shape=box, style=filled, color=grey]; + 59 [label="6b5aaa4bdf44b2c898854", shape=hexagon, style=filled, color=green]; + "301E" [label="4c6c8c", shape=box, style=filled, color=grey]; + "789E" [label="3a0ff0", shape=box, style=filled, color=grey]; + 60 [label="855d26296eda4eb7", shape=hexagon, style=filled, color=green]; + "303E" [label="53069e384a2", shape=box, style=filled, color=grey]; + 61 [label=e82f47b8d4949ba4af69b38cbc19, shape=hexagon, style=filled, color=green]; + "305E" [label=b62cd1d0a0, shape=box, style=filled, color=grey]; + 62 [label="86569bffb49adf6b3d0ebac", shape=hexagon, style=filled, color=green]; + "307E" [label="660ffeb76fc59", shape=box, style=filled, color=grey]; + 63 [label=a96e47ff37983425a3e452095, shape=hexagon, style=filled, color=green]; + "309E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 64 [label="71a48d11b2e7e56b1df128bd", shape=hexagon, style=filled, color=green]; + "311E" [label=be8f4199f, shape=box, style=filled, color=grey]; + 65 [label=a0befe6dd1ca7b165786835, shape=hexagon, style=filled, color=green]; + "313E" [label="3cfae", shape=box, style=filled, color=grey]; + 66 [label=f33ec11db496f7bfcb024f, shape=hexagon, style=filled, color=green]; + "315E" [label="71e6b", shape=box, style=filled, color=grey]; + 67 [label=fe6be3206549f5b5564acde84783, shape=hexagon, style=filled, color=green]; + "317E" [shape=box, style=filled, color=grey]; + 68 [label=e4dba079d5fcb1f165920a3bf, shape=hexagon, style=filled, color=green]; + "319E" [shape=box, style=filled, color=grey]; + 70 [label="16c508ab98483d430bbe", shape=hexagon, style=filled, color=green]; + "321E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 71 [label="9c9e2e0f2da8758e436c", shape=hexagon, style=filled, color=green]; + "327E" [label=cd0d985a366cad7e, shape=box, style=filled, color=grey]; + 72 [label=fb039d7a2a9fe73b5f468eba9, shape=hexagon, style=filled, color=green]; + "329E" [label="81dabfaba8", shape=box, style=filled, color=grey]; + 73 [label="2ef949c4a39b", shape=hexagon, style=filled, color=green]; + "331E" [label="617809d979f", shape=box, style=filled, color=grey]; + 74 [label=a9497e0757b0969bde707ed5, shape=hexagon, style=filled, color=green]; + "333E" [label="541ab86a2e", shape=box, style=filled, color=grey]; + 75 [label="230cc6bbc66b24eae94fa03d", shape=hexagon, style=filled, color=green]; + "335E" [shape=box, style=filled, color=grey]; + 76 [label="1d163eac141def176461c", shape=hexagon, style=filled, color=green]; + "337E" [label="0acc5bb8ca4", shape=box, style=filled, color=grey]; + 77 [label="32979f8cf86", shape=hexagon, style=filled, color=green]; + "339E" [label=a7e89580, shape=box, style=filled, color=grey]; + 78 [label="37d80ae421dba4a70730338860", shape=hexagon, style=filled, color=green]; + "341E" [shape=box, style=filled, color=grey]; + 79 [label=fbba7215e7c13173a60206, shape=hexagon, style=filled, color=green]; + "343E" [label="617809d979f", shape=box, style=filled, color=grey]; + 80 [label="2dd8cc4d693415f93c0f8fc", shape=hexagon, style=filled, color=green]; + "345E" [label="94da691e20e3", shape=box, style=filled, color=grey]; + 81 [label="00880e6f50c765ebc1f85d3e9", shape=hexagon, style=filled, color=green]; + "347E" [label=e7ef998, shape=box, style=filled, color=grey]; + 82 [label=ef13d45b1277ac9a0444adb, shape=hexagon, style=filled, color=green]; + "349E" [label=a7fe7, shape=box, style=filled, color=grey]; + 83 [label="2573e1bf51f1b307f4640", shape=hexagon, style=filled, color=green]; + "351E" [label="84e4ede82074", shape=box, style=filled, color=grey]; + 84 [label="162d8039483d8", shape=hexagon, style=filled, color=green]; + "353E" [label=a8e9, shape=box, style=filled, color=grey]; + 85 [label=f490de272a7f6e4af346d40, shape=hexagon, style=filled, color=green]; + "355E" [label="460aed10cc9", shape=box, style=filled, color=grey]; + "788E" [label="391256c872", shape=box, style=filled, color=grey]; + 86 [label="678bf739c344b9ad41da1", shape=hexagon, style=filled, color=green]; + "357E" [label="396b16a892fe", shape=box, style=filled, color=grey]; + 87 [label="876d120b38b0e88817", shape=hexagon, style=filled, color=green]; + "359E" [label=e5, shape=box, style=filled, color=grey]; + 88 [label="503737b64d432c60d6ac557e0e6", shape=hexagon, style=filled, color=green]; + "361E" [label="9937ccba1469", shape=box, style=filled, color=grey]; + 89 [label=b36e0be6f67fc25286127456, shape=hexagon, style=filled, color=green]; + "363E" [label="87a7e69a72412", shape=box, style=filled, color=grey]; + 90 [label="4cc20a0b7651e486", shape=hexagon, style=filled, color=green]; + "365E" [label=e079d2c, shape=box, style=filled, color=grey]; + 91 [label="08dade990b2282", shape=hexagon, style=filled, color=green]; + "367E" [label="45827dbdd8", shape=box, style=filled, color=grey]; + 92 [label=f8128d574c356631b8a9, shape=hexagon, style=filled, color=green]; + "369E" [shape=box, style=filled, color=grey]; + 93 [label="88a4f0337c2189c3fc7b31", shape=hexagon, style=filled, color=green]; + "729E" [label=da0d7bbcf30, shape=box, style=filled, color=grey]; + 94 [label="1b13908a9f0763c0ae54af9062080", shape=hexagon, style=filled, color=green]; + "371E" [label="8b06a67a", shape=box, style=filled, color=grey]; + 95 [label=e2a5d11499b7e, shape=hexagon, style=filled, color=green]; + "373E" [label="66abc181ac4", shape=box, style=filled, color=grey]; + 96 [label="90cc275011c2013c61eb11", shape=hexagon, style=filled, color=green]; + "375E" [shape=box, style=filled, color=grey]; + 98 [label="1927c743a0d440a5a0", shape=hexagon, style=filled, color=green]; + "377E" [label=b12441ecff15fa12c, shape=box, style=filled, color=grey]; + 99 [label="155d892827c33ed3cae3", shape=hexagon, style=filled, color=green]; + "379E" [label="71e6b", shape=box, style=filled, color=grey]; + 100 [label="9f24ba80192c339a64c0", shape=hexagon, style=filled, color=green]; + "381E" [shape=box, style=filled, color=grey]; + 101 [label="3e814305b42beb41b8c706", shape=hexagon, style=filled, color=green]; + "383E" [label="1c08373", shape=box, style=filled, color=grey]; + 102 [label=eccfe5ff0af70fe9fbec8b2360f90, shape=hexagon, style=filled, color=green]; + "385E" [label=be8f4199f, shape=box, style=filled, color=grey]; + 103 [label="8fa622d9f842c5572a545ed72982", shape=hexagon, style=filled, color=green]; + "387E" [label="4dccb", shape=box, style=filled, color=grey]; + 104 [label=ad9142a65f5eab78b4ca5e, shape=hexagon, style=filled, color=green]; + "389E" [label=f36cce089, shape=box, style=filled, color=grey]; + 105 [label="20f234fdcd0e1fc50261ce8", shape=hexagon, style=filled, color=green]; + "391E" [label="67219ef689f0146b544", shape=box, style=filled, color=grey]; + 106 [label=e06cc38155ff6781cf944d745, shape=hexagon, style=filled, color=green]; + "393E" [label="87a7e69a72412", shape=box, style=filled, color=grey]; + 107 [label=cfdf1932665dcb4cd3c, shape=hexagon, style=filled, color=green]; + "395E" [label="964b86fc1bba0e", shape=box, style=filled, color=grey]; + 108 [label="6d4a4a5a5af91b895272c30", shape=hexagon, style=filled, color=green]; + "397E" [label=b5e86c73d1198f, shape=box, style=filled, color=grey]; + 109 [label=e0ad365c2fb444358201, shape=hexagon, style=filled, color=green]; + "399E" [label=bb5e89c8963, shape=box, style=filled, color=grey]; + 110 [label=b07bbdc8cca5985d4c4, shape=hexagon, style=filled, color=green]; + "401E" [label="50023f6f88", shape=box, style=filled, color=grey]; + 111 [label=df5dba74c75b228de48c, shape=hexagon, style=filled, color=green]; + "403E" [label="7e493ee44b28", shape=box, style=filled, color=grey]; + 112 [label="0b8694c9ef9b27b9c3d8", shape=hexagon, style=filled, color=green]; + "405E" [label="2342b759c03", shape=box, style=filled, color=grey]; + 113 [label="81e20155999fa64e0ae6fd", shape=hexagon, style=filled, color=green]; + "407E" [label="4280833ef80172", shape=box, style=filled, color=grey]; + 114 [label="3ef07ae75d29a707", shape=hexagon, style=filled, color=green]; + "409E" [label="4280833ef80172", shape=box, style=filled, color=grey]; + 115 [label="4a36db80f1ab1e97", shape=hexagon, style=filled, color=green]; + "411E" [label="460aed10cc9", shape=box, style=filled, color=grey]; + 116 [label="16da5f1301b36df4df0f", shape=hexagon, style=filled, color=green]; + "413E" [label="460aed10cc9", shape=box, style=filled, color=grey]; + 117 [label="6b3f3fa236bb90592d23a", shape=hexagon, style=filled, color=green]; + "415E" [label="83c397b8bf7f", shape=box, style=filled, color=grey]; + 118 [label=f2a57e4d4f0cec516891e3, shape=hexagon, style=filled, color=green]; + "417E" [label=bd2484, shape=box, style=filled, color=grey]; + 119 [label=deb3089920548bf1ecb23f0d, shape=hexagon, style=filled, color=green]; + "419E" [label="87a7e69a72412", shape=box, style=filled, color=grey]; + 120 [label=bf01c8a262, shape=hexagon, style=filled, color=green]; + "421E" [label=01, shape=box, style=filled, color=grey]; + 121 [label="23dc3a52fed9c119610b5e8", shape=hexagon, style=filled, color=green]; + "423E" [label="71e6b", shape=box, style=filled, color=grey]; + 123 [label="78cc16f965adc5f712ea2372c6", shape=hexagon, style=filled, color=green]; + "425E" [label="23ad1", shape=box, style=filled, color=grey]; + 124 [label="5be631dff7b97697be7dc0a2f07f2", shape=hexagon, style=filled, color=green]; + "427E" [shape=box, style=filled, color=grey]; + "786E" [label=421, shape=box, style=filled, color=grey]; + 125 [label="48398d080dfcccced48da1980", shape=hexagon, style=filled, color=green]; + "431E" [label="866808df", shape=box, style=filled, color=grey]; + 126 [label="03716a2c341e5edaa31", shape=hexagon, style=filled, color=green]; + "433E" [label="21407f8a6d7", shape=box, style=filled, color=grey]; + 127 [label=ddfeabe456a9de5f5784, shape=hexagon, style=filled, color=green]; + "435E" [label=aac615ae78, shape=box, style=filled, color=grey]; + 128 [label=d550a7f392c787661aadd48, shape=hexagon, style=filled, color=green]; + "437E" [label=e3aefac763, shape=box, style=filled, color=grey]; + 129 [label="4c82921f4ad3f07066540", shape=hexagon, style=filled, color=green]; + "439E" [label=a7fe7, shape=box, style=filled, color=grey]; + 130 [label="0bc7f8f513e0e74b270", shape=hexagon, style=filled, color=green]; + "441E" [label=a849f9d352e, shape=box, style=filled, color=grey]; + 131 [label="3b1563a23eb9", shape=hexagon, style=filled, color=green]; + "443E" [label=a8e9, shape=box, style=filled, color=grey]; + 132 [label=be233fafa38d931d894, shape=hexagon, style=filled, color=green]; + "445E" [label=a849f9d352e, shape=box, style=filled, color=grey]; + 134 [label=e7a887d88c2318beba51, shape=hexagon, style=filled, color=green]; + "447E" [label="9d8988c0945d6", shape=box, style=filled, color=grey]; + 135 [label=be6b73bd46a7a5183e8c91a, shape=hexagon, style=filled, color=green]; + "449E" [label=ee91c97828, shape=box, style=filled, color=grey]; + "769E" [label="444189d179b5db71fe", shape=box, style=filled, color=grey]; + "770E" [label="1e1fbbe14ac24e0518", shape=box, style=filled, color=grey]; + 136 [label="644f112bb0aa452ee7040a", shape=hexagon, style=filled, color=green]; + "451E" [label="52f247fc3b", shape=box, style=filled, color=grey]; + 137 [label="010957669f3770aac", shape=hexagon, style=filled, color=green]; + "453E" [label=78, shape=box, style=filled, color=grey]; + 138 [label="0a185946ee443342b07d8e1", shape=hexagon, style=filled, color=green]; + "455E" [label="87a7e69a72412", shape=box, style=filled, color=grey]; + 139 [label=f66fe4df3d189e69ce10c9c, shape=hexagon, style=filled, color=green]; + "457E" [label="21407f8a6d7", shape=box, style=filled, color=grey]; + 140 [label="247e407f45b353f8", shape=hexagon, style=filled, color=green]; + "459E" [shape=box, style=filled, color=grey]; + 141 [label="84907547f36d0ff7", shape=hexagon, style=filled, color=green]; + "461E" [label=e920b915087, shape=box, style=filled, color=grey]; + 142 [label="805004328dad9d315d", shape=hexagon, style=filled, color=green]; + "463E" [label="4280833ef80172", shape=box, style=filled, color=grey]; + 143 [label="4f0cbd3fbf0cb1e8c", shape=hexagon, style=filled, color=green]; + "465E" [label=403126, shape=box, style=filled, color=grey]; + 144 [label="4869e993f2bb10f", shape=hexagon, style=filled, color=green]; + "467E" [label=ff, shape=box, style=filled, color=grey]; + 145 [label="665b76844ff78fc2cf66ca2", shape=hexagon, style=filled, color=green]; + "469E" [label=af0268dddd, shape=box, style=filled, color=grey]; + 146 [label="3f16509139c7dad5163b91799", shape=hexagon, style=filled, color=green]; + "471E" [label="3089106e3b", shape=box, style=filled, color=grey]; + 147 [label="01db23a60422ba93a68611cc0", shape=hexagon, style=filled, color=green]; + "473E" [shape=box, style=filled, color=grey]; + 148 [label="46125fcc583c0f494a3a1d3", shape=hexagon, style=filled, color=green]; + "475E" [label=db6c4213a717bc, shape=box, style=filled, color=grey]; + 149 [label="731857fe189fb398e80a0594", shape=hexagon, style=filled, color=green]; + "477E" [label="3089106e3b", shape=box, style=filled, color=grey]; + 150 [label="6fb7a84e370ef70feac5cb", shape=hexagon, style=filled, color=green]; + "479E" [label="396b16a892fe", shape=box, style=filled, color=grey]; + 151 [label=e343cea291b79a2ed4e, shape=hexagon, style=filled, color=green]; + "481E" [label="88d8b220746882d", shape=box, style=filled, color=grey]; + 152 [label="5f2592b20f13356b7fc8b42", shape=hexagon, style=filled, color=green]; + "483E" [shape=box, style=filled, color=grey]; + 153 [label="275a0407e33e9b8aa9cdd051", shape=hexagon, style=filled, color=green]; + "731E" [shape=box, style=filled, color=grey]; + 155 [label="173fd00917644f0f1f3e3", shape=hexagon, style=filled, color=green]; + "485E" [label="0acc5bb8ca4", shape=box, style=filled, color=grey]; + 156 [label=c72df69b40156a3254, shape=hexagon, style=filled, color=green]; + "487E" [label=fff03efcd, shape=box, style=filled, color=grey]; + 157 [label="6c632ad9c42228bb337", shape=hexagon, style=filled, color=green]; + "489E" [label=eb8, shape=box, style=filled, color=grey]; + 158 [label=bbb13dc62adf2de2a42b6, shape=hexagon, style=filled, color=green]; + "491E" [label="69ce90c9b2", shape=box, style=filled, color=grey]; + 159 [label="6282bc21f6", shape=hexagon, style=filled, color=green]; + "495E" [label=de34214b4c258c9333ec3, shape=box, style=filled, color=grey]; + 160 [label="71cf45dd4e91bcca945137b40e", shape=hexagon, style=filled, color=green]; + "499E" [label="65fd8495", shape=box, style=filled, color=grey]; + 161 [label=a3b6df27179b175c88fa4c9cf9f, shape=hexagon, style=filled, color=green]; + "501E" [label=6577, shape=box, style=filled, color=grey]; + 162 [label="284f14a259991806654e74", shape=hexagon, style=filled, color=green]; + "503E" [label="4280833ef80172", shape=box, style=filled, color=grey]; + 163 [label=a7c99ccf6ddf6f5ebbe, shape=hexagon, style=filled, color=green]; + "505E" [label=c4fd8, shape=box, style=filled, color=grey]; + 164 [label=c32d2697e8, shape=hexagon, style=filled, color=green]; + "507E" [label="52f247fc3b", shape=box, style=filled, color=grey]; + 165 [label=d12bd75c24b110ef90cdd35d3, shape=hexagon, style=filled, color=green]; + "509E" [label=0668, shape=box, style=filled, color=grey]; + 166 [label="1c07453d584f3d14b1876fdb", shape=hexagon, style=filled, color=green]; + "511E" [label="460aed10cc9", shape=box, style=filled, color=grey]; + 167 [label=f713a8b311ffa05ce3683ad10, shape=hexagon, style=filled, color=green]; + "513E" [label="30d6138b63eb", shape=box, style=filled, color=grey]; + 168 [label="3cdc90c57243373efaba65a", shape=hexagon, style=filled, color=green]; + "515E" [label=fa2afbd869, shape=box, style=filled, color=grey]; + 169 [label=e3bdbca0e2256fffa8a59018, shape=hexagon, style=filled, color=green]; + "517E" [label="81dabfaba8", shape=box, style=filled, color=grey]; + 170 [label="75ba8d840070942eb4e737849", shape=hexagon, style=filled, color=green]; + "519E" [label="81dabfaba8", shape=box, style=filled, color=grey]; + 171 [label=fbdc3ca37406f66635c8b226e, shape=hexagon, style=filled, color=green]; + "521E" [label="8cbcf5cb5", shape=box, style=filled, color=grey]; + 172 [label="40b49a5a9bb256c7a3286e56", shape=hexagon, style=filled, color=green]; + "523E" [label=f72564578be, shape=box, style=filled, color=grey]; + 173 [label="3b2f08d52e4bca3f9ca7bbbd6", shape=hexagon, style=filled, color=green]; + "525E" [label="81dabfaba8", shape=box, style=filled, color=grey]; + 174 [label="4a38abc630c82b0c48dfbf5271", shape=hexagon, style=filled, color=green]; + "527E" [label=f0bd1521, shape=box, style=filled, color=grey]; + 175 [label="2d7b7fb6c9ad6821752651f7", shape=hexagon, style=filled, color=green]; + "529E" [label="47b2da3d", shape=box, style=filled, color=grey]; + 176 [label="910b00285f11bb90d0a15641", shape=hexagon, style=filled, color=green]; + "531E" [label="81dabfaba8", shape=box, style=filled, color=grey]; + 177 [label="24431c3eb075102f07cc2c1be", shape=hexagon, style=filled, color=green]; + "533E" [shape=box, style=filled, color=grey]; + 178 [label="07f8a9e55a16beddb3c9153b0", shape=hexagon, style=filled, color=green]; + "535E" [label="81dabfaba8", shape=box, style=filled, color=grey]; + 179 [label=c1c30f30d40c4f1f84924622f, shape=hexagon, style=filled, color=green]; + "537E" [label=c5d5be3942, shape=box, style=filled, color=grey]; + 180 [label="86276bb1e23f2c7ffcbe82a0", shape=hexagon, style=filled, color=green]; + "539E" [label="0f940646", shape=box, style=filled, color=grey]; + 181 [label=f78e145a127014eb43345a0c, shape=hexagon, style=filled, color=green]; + "541E" [label=d370c12dbc, shape=box, style=filled, color=grey]; + 182 [label=a27037332d9fa5c43bcfe94c0, shape=hexagon, style=filled, color=green]; + "543E" [label="80874aa8", shape=box, style=filled, color=grey]; + 183 [label=c29ce10bb8d19b498355aa04, shape=hexagon, style=filled, color=green]; + "545E" [label="1c08373", shape=box, style=filled, color=grey]; + 184 [label="4f8c642b53c349c687534bda35db", shape=hexagon, style=filled, color=green]; + "547E" [label="46969c4", shape=box, style=filled, color=grey]; + 185 [label="30cc206b1878485", shape=hexagon, style=filled, color=green]; + "549E" [label="23ad1", shape=box, style=filled, color=grey]; + 186 [label="5d69639a5e3bdd3d", shape=hexagon, style=filled, color=green]; + "551E" [label="6139fa6adc88d", shape=box, style=filled, color=grey]; + 187 [label=b656f0ed2202b8e46eb, shape=hexagon, style=filled, color=green]; + "553E" [label=f6e6236b48bc3, shape=box, style=filled, color=grey]; + 188 [label="3b566eaa70ed401479d43a9", shape=hexagon, style=filled, color=green]; + "555E" [label="4c6c8c", shape=box, style=filled, color=grey]; + 189 [label=d6125ef42bd9958, shape=hexagon, style=filled, color=green]; + "557E" [label="4c6c8c", shape=box, style=filled, color=grey]; + 190 [label=dd12f26f8d9bb55, shape=hexagon, style=filled, color=green]; + "559E" [label="83c397b8bf7f", shape=box, style=filled, color=grey]; + 191 [label=ea890ccca2f7c2107351, shape=hexagon, style=filled, color=green]; + "561E" [label=eb8, shape=box, style=filled, color=grey]; + 192 [label="84e4f1c582427a98d7b", shape=hexagon, style=filled, color=green]; + "563E" [label=eb8, shape=box, style=filled, color=grey]; + 193 [label=d378760b814eaecb6efe636e0efc4, shape=hexagon, style=filled, color=green]; + "565E" [label="81bcc35f82891", shape=box, style=filled, color=grey]; + 194 [label=f722890f70a32dce3baff371a, shape=hexagon, style=filled, color=green]; + "567E" [label="84e4ede82074", shape=box, style=filled, color=grey]; + 195 [label="666f11bb45c3a8dcf26e1ed79", shape=hexagon, style=filled, color=green]; + "569E" [label=c90f755c8b6612d, shape=box, style=filled, color=grey]; + 196 [label="91ecbe29a71f00ed5a3", shape=hexagon, style=filled, color=green]; + "571E" [label="0a963fef9", shape=box, style=filled, color=grey]; + 197 [label="30c3f3bf8463d3843dc57d8e98", shape=hexagon, style=filled, color=green]; + "573E" [label="3089106e3b", shape=box, style=filled, color=grey]; + 198 [label="8ea965ab6ee8dedb6c3333e9", shape=hexagon, style=filled, color=green]; + "575E" [label="84e4ede82074", shape=box, style=filled, color=grey]; + 199 [label="3eecb304bab2136a76deda", shape=hexagon, style=filled, color=green]; + "577E" [label="8df", shape=box, style=filled, color=grey]; + 200 [label=d886e4b76537a99bc71b8a9331c94, shape=hexagon, style=filled, color=green]; + "579E" [label="1172dca23", shape=box, style=filled, color=grey]; + 201 [label=dcc5d5e9d6c4e, shape=hexagon, style=filled, color=green]; + "581E" [label=a8e9, shape=box, style=filled, color=grey]; + 202 [label="8292af691429f8d9ed481ff71ffd", shape=hexagon, style=filled, color=green]; + "583E" [label="212af4", shape=box, style=filled, color=grey]; + 203 [label="12fcb26b3de00ef98719c2ca", shape=hexagon, style=filled, color=green]; + "585E" [shape=box, style=filled, color=grey]; + 204 [label=a141a557a60912051f3c135, shape=hexagon, style=filled, color=green]; + "587E" [shape=box, style=filled, color=grey]; + 206 [label=f5d636e14a6cd716362158d, shape=hexagon, style=filled, color=green]; + "589E" [label="32c958c9997", shape=box, style=filled, color=grey]; + 208 [label="52a6c2063bccd83110c32", shape=hexagon, style=filled, color=green]; + "597E" [shape=box, style=filled, color=grey]; + 209 [label="46f754ea06f070dbc023e571a876", shape=hexagon, style=filled, color=green]; + "599E" [label=ffccaa9e3, shape=box, style=filled, color=grey]; + 210 [label=c10cb9baf4dcb43e24, shape=hexagon, style=filled, color=green]; + "601E" [label=ac6e99186, shape=box, style=filled, color=grey]; + 211 [label="3dafe1619016463f521f", shape=hexagon, style=filled, color=green]; + "603E" [label=b9, shape=box, style=filled, color=grey]; + 212 [label="0f5db6ce12751ddcc64e", shape=hexagon, style=filled, color=green]; + "605E" [label=bb828f1a326, shape=box, style=filled, color=grey]; + 213 [label="34c8c8dc0f6e41c7e7b2", shape=hexagon, style=filled, color=green]; + "607E" [label="2832ed5cea6", shape=box, style=filled, color=grey]; + 214 [label="0a49c95f107c0aa57c9b5748", shape=hexagon, style=filled, color=green]; + "609E" [shape=box, style=filled, color=grey]; + 215 [label="3b4fdad8e0429d112", shape=hexagon, style=filled, color=green]; + "611E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 216 [label="17dafa5ebaafd48440e3", shape=hexagon, style=filled, color=green]; + "613E" [label=b5f038f79a3, shape=box, style=filled, color=grey]; + 217 [label=f4c69e5e212f89348122e8, shape=hexagon, style=filled, color=green]; + "615E" [label="396b16a892fe", shape=box, style=filled, color=grey]; + 218 [label="4f2e020854dfacce46a12", shape=hexagon, style=filled, color=green]; + "617E" [label=e079d2c, shape=box, style=filled, color=grey]; + 219 [label="6448451ac2ceade90715378b", shape=hexagon, style=filled, color=green]; + "619E" [shape=box, style=filled, color=grey]; + 221 [label=d7c27cc6f7b02a31eb64d, shape=hexagon, style=filled, color=green]; + "623E" [label="87a7e69a72412", shape=box, style=filled, color=grey]; + 223 [label=eccf7c722ddf, shape=hexagon, style=filled, color=green]; + "625E" [label=df61d5f5fc, shape=box, style=filled, color=grey]; + 224 [label="86633c26be93ada8b", shape=hexagon, style=filled, color=green]; + "627E" [label="08500a6044", shape=box, style=filled, color=grey]; + 225 [label="3f9ddf1ffbc0d38b", shape=hexagon, style=filled, color=green]; + "629E" [label=07, shape=box, style=filled, color=grey]; + 226 [label=e33792703, shape=hexagon, style=filled, color=green]; + "631E" [label="6a8f5bafb1", shape=box, style=filled, color=grey]; + 227 [label="293a225dc56dd1e0564e6bb", shape=hexagon, style=filled, color=green]; + "633E" [label=e3aefac763, shape=box, style=filled, color=grey]; + 228 [label="57c77c341f94afddef07e6", shape=hexagon, style=filled, color=green]; + "635E" [label="5e80f85274", shape=box, style=filled, color=grey]; + 229 [label="3bbfc7bfdbbb1ba1bfad7517", shape=hexagon, style=filled, color=green]; + "637E" [shape=box, style=filled, color=grey]; + 230 [label=a7167d5eb5408b3839903, shape=hexagon, style=filled, color=green]; + "639E" [label="8c8b5bde6", shape=box, style=filled, color=grey]; + 231 [label="34d7bb6af4fcd8d630de72500c8", shape=hexagon, style=filled, color=green]; + "641E" [label="32fe7eee5283", shape=box, style=filled, color=grey]; + 232 [label="8e69341faa4489", shape=hexagon, style=filled, color=green]; + "643E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 233 [label="459236f07c73814faf5", shape=hexagon, style=filled, color=green]; + "645E" [label="18083a711d", shape=box, style=filled, color=grey]; + 234 [label=c71aa521578164debd0c5, shape=hexagon, style=filled, color=green]; + "647E" [label=78, shape=box, style=filled, color=grey]; + 235 [label=a5520019b8a73bc141b5fd416a, shape=hexagon, style=filled, color=green]; + "649E" [label="3219b6b71443", shape=box, style=filled, color=grey]; + 236 [label="6c89dc59ee7aaebbbd6bb64", shape=hexagon, style=filled, color=green]; + "651E" [label="8c8b5bde6", shape=box, style=filled, color=grey]; + 237 [label=a9a36ef02f, shape=hexagon, style=filled, color=green]; + "653E" [label="6a80cbe", shape=box, style=filled, color=grey]; + 238 [label="3db761b596844f133c", shape=hexagon, style=filled, color=green]; + "655E" [label=e920b915087, shape=box, style=filled, color=grey]; + 239 [label="383db224d7508ef072bea21d0", shape=hexagon, style=filled, color=green]; + "657E" [label="975fedfb64df", shape=box, style=filled, color=grey]; + 240 [label="8e307415fb435445ced7", shape=hexagon, style=filled, color=green]; + "659E" [label="21dff35936370ae5f", shape=box, style=filled, color=grey]; + 241 [label=aff6d7896e0e142bbc3e78, shape=hexagon, style=filled, color=green]; + "661E" [label=d2498, shape=box, style=filled, color=grey]; + 242 [label=e153c6e676c7369b285b4e9033a, shape=hexagon, style=filled, color=green]; + "663E" [shape=box, style=filled, color=grey]; + 243 [label=f3c4311de0e931f08c232b, shape=hexagon, style=filled, color=green]; + "665E" [label=a849f9d352e, shape=box, style=filled, color=grey]; + 244 [label="0c72a426929600000f5", shape=hexagon, style=filled, color=green]; + "667E" [label="45827dbdd8", shape=box, style=filled, color=grey]; + 245 [label="38fa61352f5086d2cb51", shape=hexagon, style=filled, color=green]; + "669E" [label=af0268dddd, shape=box, style=filled, color=grey]; + 246 [label=ad1dd724f1c3e, shape=hexagon, style=filled, color=green]; + "671E" [label=cab04b7c14a, shape=box, style=filled, color=grey]; + 247 [label="11bb8ed3ae227d3acefc", shape=hexagon, style=filled, color=green]; + "673E" [label=eb8, shape=box, style=filled, color=grey]; + 248 [label=f2c7b3bb4d44f977d0ab8a42351, shape=hexagon, style=filled, color=green]; + "675E" [shape=box, style=filled, color=grey]; + 249 [label="51e045ca826077ae765", shape=hexagon, style=filled, color=green]; + "679E" [label=e842, shape=box, style=filled, color=grey]; + 251 [label="3b6b2c549de670d7bf5fc0ee", shape=hexagon, style=filled, color=green]; + "681E" [shape=box, style=filled, color=grey]; + 252 [label="5eea496cc301b2a9721", shape=hexagon, style=filled, color=green]; + "683E" [shape=box, style=filled, color=grey]; + 253 [label=bfc6564cbdeeffac00a141, shape=hexagon, style=filled, color=green]; + "685E" [label="3b0a8a1c2e5050bd", shape=box, style=filled, color=grey]; + 254 [label=c360aaeb167487c9578a8f, shape=hexagon, style=filled, color=green]; + "687E" [label=d, shape=box, style=filled, color=grey]; + 255 [label="39d025b265f9790490781cb201", shape=hexagon, style=filled, color=green]; + "689E" [label="5e80f85274", shape=box, style=filled, color=grey]; + 256 [label=b4ce21e0a3df1d097277d6, shape=hexagon, style=filled, color=green]; + "691E" [label=a849f9d352e, shape=box, style=filled, color=grey]; + 257 [label="8bdb6a91c6dee925b557c705b3", shape=hexagon, style=filled, color=green]; + "693E" [label="53069e384a2", shape=box, style=filled, color=grey]; + 258 [label=ac487676a04e4, shape=hexagon, style=filled, color=green]; + "695E" [label=a8e9, shape=box, style=filled, color=grey]; + 259 [label="18115fa32ff1cb99", shape=hexagon, style=filled, color=green]; + "697E" [label="45827dbdd8", shape=box, style=filled, color=grey]; + 260 [label=b7b899dc8bc6a32b28cb098fa16, shape=hexagon, style=filled, color=green]; + "699E" [label="32fe7eee5283", shape=box, style=filled, color=grey]; + 261 [label=b69e426d974e1907e88, shape=hexagon, style=filled, color=green]; + "703E" [label=e842, shape=box, style=filled, color=grey]; + 262 [label="60d0128bdb61ae40e98638bd1391", shape=hexagon, style=filled, color=green]; + "705E" [label="23ad1", shape=box, style=filled, color=grey]; + 264 [label="8fb60d769e4c387", shape=hexagon, style=filled, color=green]; + "709E" [label="6a8f5bafb1", shape=box, style=filled, color=grey]; + 265 [label=e1fa7f549e5a0893bb42da5, shape=hexagon, style=filled, color=green]; + "711E" [label="6a3c6921b0aeceda3", shape=box, style=filled, color=grey]; + 266 [label=a77622f2ff77ffeeb2, shape=hexagon, style=filled, color=green]; + "713E" [label="21dff35936370ae5f", shape=box, style=filled, color=grey]; + 267 [label="30d9d350943c0e3ff7594b50", shape=hexagon, style=filled, color=green]; + "715E" [label=b5e86c73d1198f, shape=box, style=filled, color=grey]; + 268 [label="89ced1a7906d58d687d5a04", shape=hexagon, style=filled, color=green]; + "717E" [label=c0174bbe7ae8, shape=box, style=filled, color=grey]; + 269 [label="1de26f6b12b0d292f94184", shape=hexagon, style=filled, color=green]; + "719E" [label="65fd8495", shape=box, style=filled, color=grey]; + 270 [label="26fa7360ab81be9d4434a", shape=hexagon, style=filled, color=green]; + "721E" [label=af0268dddd, shape=box, style=filled, color=grey]; + 272 [label="4a9d79c960b8d33e39251e5f66", shape=hexagon]; + "34E" [label="330342f283ef2", shape=box, style=filled, color=grey]; + "252E" [label="3dafb9a29c00", shape=box, style=filled, color=grey]; + "436E" [label="8d5137b16a", shape=box, style=filled, color=grey]; + 274 [label="10a7d61c201c67a5e78542807cd", shape=hexagon]; + "59E" [label=ef6361295eba07, shape=box, style=filled, color=grey]; + "500E" [label=a8f0fe2eb7bc1471, shape=box, style=filled, color=grey]; + "720E" [label=cfff3acd8e9d, shape=box, style=filled, color=grey]; + 275 [label=f8ff39eab120851f143bf19, shape=hexagon]; + "98E" [label="4e3cfd27a", shape=box, style=filled, color=grey]; + 278 [label="4995c71223c9f6067324d387a2", shape=hexagon]; + "35E" [label="57948adb5dead", shape=box, style=filled, color=grey]; + "488E" [label=a738ba39, shape=box, style=filled, color=grey]; + "598E" [label=be7d637c50c, shape=box, style=filled, color=grey]; + "604E" [label="8d52f183ec", shape=box, style=filled, color=grey]; + "628E" [label=cef12b6, shape=box, style=filled, color=grey]; + 279 [label=b9ae94e6935503603341ecf4, shape=hexagon]; + "99E" [label="14a3c17f3d", shape=box, style=filled, color=grey]; + 280 [label=fd28c194a46fde909b019c52f, shape=hexagon]; + "242E" [label="9fe65061641", shape=box, style=filled, color=grey]; + "270E" [label="34d06d1ed6", shape=box, style=filled, color=grey]; + "272E" [label="713db1c1", shape=box, style=filled, color=grey]; + "284E" [label="90dccb18c0", shape=box, style=filled, color=grey]; + "286E" [label=e17fea65, shape=box, style=filled, color=grey]; + "288E" [label=aebb7b91b, shape=box, style=filled, color=grey]; + "586E" [label="4348f3abcb7716", shape=box, style=filled, color=grey]; + "763E" [label=b082f7a5ff, shape=box, style=filled, color=grey]; + 281 [label="7c0ab977f5a3c4ab6d625f5033", shape=hexagon]; + "45E" [label="20949455f573f", shape=box, style=filled, color=grey]; + "470E" [label=c338481d79773, shape=box, style=filled, color=grey]; + "670E" [label=e1d01ef89f, shape=box, style=filled, color=grey]; + "722E" [label=c4507c22d19, shape=box, style=filled, color=grey]; + 282 [label="7e0b91491c8c8566892cd9a0889", shape=hexagon]; + "103E" [label=de9efa12873949, shape=box, style=filled, color=grey]; + 283 [label=d58478d9c273ad4f4b2e091324, shape=hexagon]; + "165E" [label="1a220eb692c", shape=box, style=filled, color=grey]; + 284 [label="8be0efdd94a6383e87fbfded4f", shape=hexagon]; + "39E" [label=c8a6c26d4fd9f, shape=box, style=filled, color=grey]; + "224E" [label="8cbae42a3900", shape=box, style=filled, color=grey]; + "268E" [label=fc73, shape=box, style=filled, color=grey]; + "632E" [shape=box, style=filled, color=grey]; + "710E" [label="102f1", shape=box, style=filled, color=grey]; + 285 [label="3aeb78ea51020a44f2d2615436dae", shape=hexagon]; + "53E" [label="96deede0c6b44119", shape=box, style=filled, color=grey]; + 286 [label="6bbd5b422edb8e358dcc20eecf9", shape=hexagon]; + "38E" [label="4f2de229621272", shape=box, style=filled, color=grey]; + "166E" [label=d495de0b35f6, shape=box, style=filled, color=grey]; + 288 [label="4856000a6802ddfc121ef40432297", shape=hexagon, style=filled, color="#ff0000"]; + "40E" [label="04904a458422a5b9", shape=box, style=filled, color=grey]; + "218E" [label="8cd4d", shape=box, style=filled, color=grey]; + "244E" [shape=box, style=filled, color=grey]; + "246E" [label="9be88247", shape=box, style=filled, color=grey]; + "258E" [label="4f05b", shape=box, style=filled, color=grey]; + "290E" [label="8b092", shape=box, style=filled, color=grey]; + "292E" [label=c3bbf4, shape=box, style=filled, color=grey]; + "308E" [label="6331b3f", shape=box, style=filled, color=grey]; + "318E" [shape=box, style=filled, color=grey]; + "388E" [label=3711, shape=box, style=filled, color=grey]; + "472E" [label=c5255d, shape=box, style=filled, color=grey]; + "478E" [label="5c6a2", shape=box, style=filled, color=grey]; + "566E" [label="51ec95518d1b3", shape=box, style=filled, color=grey]; + "570E" [label="82a65ed4b69", shape=box, style=filled, color=grey]; + "574E" [label="05fed5e", shape=box, style=filled, color=grey]; + "608E" [label=bf, shape=box, style=filled, color=grey]; + "614E" [label=ce, shape=box, style=filled, color=grey]; + "658E" [label="1a830d9f", shape=box, style=filled, color=grey]; + "664E" [shape=box, style=filled, color=grey]; + "682E" [shape=box, style=filled, color=grey]; + 289 [label="2e31175cbd52fcd08360fe86d20", shape=hexagon]; + "41E" [label="4ad5d68f07981a", shape=box, style=filled, color=grey]; + "636E" [label="51192117f9b4", shape=box, style=filled, color=grey]; + "642E" [label="6bf214d9e7fa5f2df", shape=box, style=filled, color=grey]; + "690E" [label="558d8534f92fddfe", shape=box, style=filled, color=grey]; + "700E" [label="6819fd5a6cdd280dd", shape=box, style=filled, color=grey]; + 290 [label="3aa0ce5efcf79bc3ecced1886e89", shape=hexagon]; + "56E" [label=ff9d64ddf49a20f, shape=box, style=filled, color=grey]; + "264E" [label="6c93f24516f01d", shape=box, style=filled, color=grey]; + "510E" [label="32b98f11f3d01d6", shape=box, style=filled, color=grey]; + "718E" [label="8f7c875500073", shape=box, style=filled, color=grey]; + 291 [label="7c1767485953d9c2", shape=hexagon]; + "66E" [label=086, shape=box, style=filled, color=grey]; + "76E" [shape=box, style=filled, color=grey]; + "610E" [label="450d3a2d49cbfd", shape=box, style=filled, color=grey]; + 292 [label="9c1305d59c37e9be9f13d7d049c", shape=hexagon]; + "73E" [label=817, shape=box, style=filled, color=grey]; + 293 [label=efe092824916a5637ee35d439589, shape=hexagon]; + "49E" [shape=box, style=filled, color=grey]; + "214E" [shape=box, style=filled, color=grey]; + "216E" [shape=box, style=filled, color=grey]; + "236E" [shape=box, style=filled, color=grey]; + "278E" [shape=box, style=filled, color=grey]; + "358E" [shape=box, style=filled, color=grey]; + "398E" [shape=box, style=filled, color=grey]; + "400E" [shape=box, style=filled, color=grey]; + "402E" [shape=box, style=filled, color=grey]; + "404E" [shape=box, style=filled, color=grey]; + "406E" [shape=box, style=filled, color=grey]; + "408E" [shape=box, style=filled, color=grey]; + "412E" [shape=box, style=filled, color=grey]; + "438E" [shape=box, style=filled, color=grey]; + "448E" [shape=box, style=filled, color=grey]; + "476E" [shape=box, style=filled, color=grey]; + "504E" [shape=box, style=filled, color=grey]; + "552E" [shape=box, style=filled, color=grey]; + "634E" [shape=box, style=filled, color=grey]; + "768E" [shape=box, style=filled, color=grey]; + 295 [label="70815f0352b43dc1562133ab6eb", shape=hexagon, style=filled, color="#A52A2A"]; + "44E" [label=ef2d4636934472, shape=box, style=filled, color=grey]; + "92E" [label="22bd92e302816", shape=box, style=filled, color=grey]; + "250E" [label="74e86", shape=box, style=filled, color=grey]; + "316E" [shape=box, style=filled, color=grey]; + "380E" [shape=box, style=filled, color=grey]; + "424E" [label=c, shape=box, style=filled, color=grey]; + "442E" [label=a5a, shape=box, style=filled, color=grey]; + "446E" [label=bce, shape=box, style=filled, color=grey]; + "454E" [shape=box, style=filled, color=grey]; + "460E" [shape=box, style=filled, color=grey]; + "462E" [shape=box, style=filled, color=grey]; + "648E" [shape=box, style=filled, color=grey]; + "656E" [label=e9, shape=box, style=filled, color=grey]; + "666E" [label=b701e7, shape=box, style=filled, color=grey]; + "692E" [label=f2e7cc, shape=box, style=filled, color=grey]; + "712E" [label="8a9eb2806b0aa", shape=box, style=filled, color=grey]; + 296 [label=e287d497450664a4c0f4efc338, shape=hexagon, style=filled, color="#ff0000"]; + "47E" [label="06eff1db45cdf", shape=box, style=filled, color=grey]; + "330E" [label=c0f34a600, shape=box, style=filled, color=grey]; + "514E" [label=bd7aca295ca, shape=box, style=filled, color=grey]; + "516E" [label="0da9135", shape=box, style=filled, color=grey]; + "518E" [label=fe821bce, shape=box, style=filled, color=grey]; + "520E" [label=e64f22a31, shape=box, style=filled, color=grey]; + "522E" [label="46e412a3", shape=box, style=filled, color=grey]; + "526E" [label="99da1f8a5", shape=box, style=filled, color=grey]; + "528E" [label="0f167280", shape=box, style=filled, color=grey]; + "530E" [label="82d201", shape=box, style=filled, color=grey]; + "532E" [label="1d529eb4", shape=box, style=filled, color=grey]; + "534E" [shape=box, style=filled, color=grey]; + "536E" [label=bf141dbce, shape=box, style=filled, color=grey]; + "538E" [label=e3fd0c7b3, shape=box, style=filled, color=grey]; + "540E" [label=c96cb3, shape=box, style=filled, color=grey]; + "542E" [label="0fabab47", shape=box, style=filled, color=grey]; + "544E" [label="1b82200", shape=box, style=filled, color=grey]; + 297 [label="2ced414a91575a48f2dd29a", shape=hexagon]; + "46E" [label="85221d5e9e", shape=box, style=filled, color=grey]; + "93E" [label="97a7eea3f", shape=box, style=filled, color=grey]; + "206E" [label="4d22e1", shape=box, style=filled, color=grey]; + "426E" [label=e65185ca, shape=box, style=filled, color=grey]; + "550E" [shape=box, style=filled, color=grey]; + "706E" [label=a9012b7bb5, shape=box, style=filled, color=grey]; + 298 [label="38f162cf917ce7298663a1f1c607", shape=hexagon]; + "36E" [label=a031c9192ae8e75, shape=box, style=filled, color=grey]; + "95E" [label="062fc905b9eb35", shape=box, style=filled, color=grey]; + "364E" [label=c8fc17180bea86, shape=box, style=filled, color=grey]; + "394E" [label="09e64744536c5e1", shape=box, style=filled, color=grey]; + "420E" [label=af4a1fac3e2076, shape=box, style=filled, color=grey]; + "456E" [label="238805e2194c3", shape=box, style=filled, color=grey]; + "624E" [label="73e6ed83012", shape=box, style=filled, color=grey]; + 299 [label="549fa15d68f0b3bee6192f888cd8", shape=hexagon]; + "48E" [label=d17f8f4eeb8e63d, shape=box, style=filled, color=grey]; + "168E" [label=cca7040e47789, shape=box, style=filled, color=grey]; + "260E" [label="47ebc3f17", shape=box, style=filled, color=grey]; + "282E" [label=cf5a6049ad, shape=box, style=filled, color=grey]; + "554E" [label="2a47a6a27", shape=box, style=filled, color=grey]; + "590E" [label=eff3468631dd4, shape=box, style=filled, color=grey]; + "767E" [label=efb52b499303115c33fd, shape=box, style=filled, color=grey]; + 300 [label="8593dcf973b110d00cecdc1e756", shape=hexagon, style=filled, color="#ff7f00"]; + "62E" [label="472a156cf2b55f", shape=box, style=filled, color=grey]; + "190E" [label=647, shape=box, style=filled, color=grey]; + "226E" [shape=box, style=filled, color=grey]; + "238E" [label="8a", shape=box, style=filled, color=grey]; + "254E" [shape=box, style=filled, color=grey]; + "256E" [shape=box, style=filled, color=grey]; + "262E" [shape=box, style=filled, color=grey]; + "266E" [label=e8b, shape=box, style=filled, color=grey]; + "274E" [shape=box, style=filled, color=grey]; + "276E" [label=f, shape=box, style=filled, color=grey]; + "294E" [shape=box, style=filled, color=grey]; + "296E" [shape=box, style=filled, color=grey]; + "310E" [label="1b34fb150", shape=box, style=filled, color=grey]; + "320E" [shape=box, style=filled, color=grey]; + "322E" [label=a7d2, shape=box, style=filled, color=grey]; + "332E" [shape=box, style=filled, color=grey]; + "340E" [shape=box, style=filled, color=grey]; + "344E" [label=f55670, shape=box, style=filled, color=grey]; + "346E" [label="1ed67841", shape=box, style=filled, color=grey]; + "348E" [label=07283, shape=box, style=filled, color=grey]; + "374E" [label="73ba1714ee", shape=box, style=filled, color=grey]; + "378E" [label=27709106, shape=box, style=filled, color=grey]; + "452E" [label="93ea0", shape=box, style=filled, color=grey]; + "508E" [shape=box, style=filled, color=grey]; + "524E" [label="1d792d81", shape=box, style=filled, color=grey]; + "612E" [label=a, shape=box, style=filled, color=grey]; + "626E" [shape=box, style=filled, color=grey]; + "638E" [shape=box, style=filled, color=grey]; + "644E" [shape=box, style=filled, color=grey]; + "654E" [shape=box, style=filled, color=grey]; + "672E" [shape=box, style=filled, color=grey]; + 302 [label="23f94655294d3ff537f2915fa", shape=hexagon]; + "797E" [shape=box, style=filled, color=grey]; + "798E" [label=a2eab7c9fa641e5f, shape=box, style=filled, color=grey]; + 303 [label=a9058241db5b6b6c25569acdf5, shape=hexagon]; + "52E" [label=b2babf3244213, shape=box, style=filled, color=grey]; + "650E" [label=b354cd9e9dbb0bfa, shape=box, style=filled, color=grey]; + 304 [label=bdbdb31bd777fb65dd6dd2d0e7, shape=hexagon]; + "50E" [label="3bec1c012b498", shape=box, style=filled, color=grey]; + "640E" [label=c54f0fc1e05, shape=box, style=filled, color=grey]; + "646E" [label="9ab6c66dc", shape=box, style=filled, color=grey]; + "652E" [label="699e3db878047", shape=box, style=filled, color=grey]; + 306 [label="1d4ea80c7194689d69f9592186", shape=hexagon]; + "55E" [label="8066f87a88f4e", shape=box, style=filled, color=grey]; + "220E" [label="3a8173d6c", shape=box, style=filled, color=grey]; + "338E" [label="24dfe1a997a", shape=box, style=filled, color=grey]; + "368E" [label="65a1", shape=box, style=filled, color=grey]; + "486E" [label="59a8b435ccd", shape=box, style=filled, color=grey]; + "490E" [label="86e9b0428", shape=box, style=filled, color=grey]; + "562E" [label="5a7a610a8a", shape=box, style=filled, color=grey]; + "564E" [label="8f143077e", shape=box, style=filled, color=grey]; + "600E" [label="6472c2861e0e0dd681", shape=box, style=filled, color=grey]; + "668E" [label=f0f45e707, shape=box, style=filled, color=grey]; + "674E" [label="95e93c4a13", shape=box, style=filled, color=grey]; + "698E" [label="33e1de", shape=box, style=filled, color=grey]; + 307 [label="7204950f6233bf9c9e1f00d4a870", shape=hexagon]; + "107E" [label=ccceeef40edda78, shape=box, style=filled, color=grey]; + 308 [label=a2c4b1d72e2da483a86ae0c62e5, shape=hexagon]; + "108E" [label=eedc819a68add6, shape=box, style=filled, color=grey]; + 309 [label=f603819d560c5603259aa05dca, shape=hexagon]; + "109E" [label=acacfc83af504, shape=box, style=filled, color=grey]; + 310 [label="2f43cba12702078b4e0d3bfdae2bc", shape=hexagon]; + "110E" [label="3c1edc8de4795936", shape=box, style=filled, color=grey]; + 311 [label="8f9cdc26798117dd3e9ee4a8770", shape=hexagon]; + "58E" [label="881d373", shape=box, style=filled, color=grey]; + "234E" [shape=box, style=filled, color=grey]; + "300E" [shape=box, style=filled, color=grey]; + "306E" [label="8c7cd9b93b1cbe48e1", shape=box, style=filled, color=grey]; + "314E" [label="616d8a7b", shape=box, style=filled, color=grey]; + "342E" [shape=box, style=filled, color=grey]; + "354E" [shape=box, style=filled, color=grey]; + "370E" [shape=box, style=filled, color=grey]; + "382E" [shape=box, style=filled, color=grey]; + "422E" [shape=box, style=filled, color=grey]; + "444E" [shape=box, style=filled, color=grey]; + "582E" [shape=box, style=filled, color=grey]; + "620E" [shape=box, style=filled, color=grey]; + "630E" [shape=box, style=filled, color=grey]; + "684E" [shape=box, style=filled, color=grey]; + "696E" [shape=box, style=filled, color=grey]; + "801E" [shape=box, style=filled, color=grey]; + 312 [label="97c9d726e27304311901a52ce", shape=hexagon, style=filled, color="#ff0000"]; + "42E" [label="1112164c2f7a", shape=box, style=filled, color=grey]; + "192E" [label="5c609b12c", shape=box, style=filled, color=grey]; + "194E" [label=00265, shape=box, style=filled, color=grey]; + "196E" [label=04767, shape=box, style=filled, color=grey]; + "198E" [label=f0d99f16, shape=box, style=filled, color=grey]; + "200E" [shape=box, style=filled, color=grey]; + "202E" [label="6e186b", shape=box, style=filled, color=grey]; + "204E" [label=d382, shape=box, style=filled, color=grey]; + "312E" [label=c6b5321a, shape=box, style=filled, color=grey]; + "336E" [shape=box, style=filled, color=grey]; + "376E" [shape=box, style=filled, color=grey]; + "384E" [label=aeb8, shape=box, style=filled, color=grey]; + "386E" [label="2e53009d4a375", shape=box, style=filled, color=grey]; + "428E" [shape=box, style=filled, color=grey]; + "474E" [shape=box, style=filled, color=grey]; + "484E" [shape=box, style=filled, color=grey]; + "546E" [label=dea1d1, shape=box, style=filled, color=grey]; + "548E" [label="5a0b4b906a", shape=box, style=filled, color=grey]; + 314 [label="1727041c622518c9dd24f7c211", shape=hexagon]; + "113E" [label="49704867bee95", shape=box, style=filled, color=grey]; + 315 [label="31f2f9aef958979f9f3532b9b", shape=hexagon, style=filled, color="#ff0000"]; + "43E" [label="47cd70f", shape=box, style=filled, color=grey]; + "240E" [label="248df40dae", shape=box, style=filled, color=grey]; + "298E" [shape=box, style=filled, color=grey]; + "334E" [label="9dd5bf47f", shape=box, style=filled, color=grey]; + "360E" [shape=box, style=filled, color=grey]; + "390E" [label="28533c", shape=box, style=filled, color=grey]; + "418E" [shape=box, style=filled, color=grey]; + "492E" [label=a4c7d0, shape=box, style=filled, color=grey]; + "502E" [label="4f6f7f", shape=box, style=filled, color=grey]; + "584E" [label="7ab64a969", shape=box, style=filled, color=grey]; + "588E" [shape=box, style=filled, color=grey]; + "602E" [label=69, shape=box, style=filled, color=grey]; + "606E" [label="67513d", shape=box, style=filled, color=grey]; + "662E" [label=cf, shape=box, style=filled, color=grey]; + 316 [label=a54092a3033f7d5e41e0a76c1, shape=hexagon]; + "51E" [label="1467f017b74e", shape=box, style=filled, color=grey]; + 317 [label="2043b477ac0393676a4309514d0", shape=hexagon]; + "116E" [label=bdec8c86db51b9, shape=box, style=filled, color=grey]; + 318 [label=ab48d1f65812bc0f8ab6941c3b5, shape=hexagon]; + "74E" [label=81, shape=box, style=filled, color=grey]; + 319 [label=ca3d67754cf62fdafbf0a1e0, shape=hexagon]; + "57E" [label="75b14f1719d", shape=box, style=filled, color=grey]; + "94E" [label="62f36ea98a", shape=box, style=filled, color=grey]; + "350E" [label=e3a76d31ca59a, shape=box, style=filled, color=grey]; + "440E" [label=b3cadc253f7, shape=box, style=filled, color=grey]; + "466E" [label=fb58e11, shape=box, style=filled, color=grey]; + "676E" [label="8606837526d81cdec", shape=box, style=filled, color=grey]; + 320 [label=a7a7f3681dad1250b01cf80bc17, shape=hexagon]; + "60E" [label="2c514b0cd8f7d3", shape=box, style=filled, color=grey]; + "366E" [label="7e494b", shape=box, style=filled, color=grey]; + "434E" [label="15d44ab97", shape=box, style=filled, color=grey]; + "458E" [label="78b2d75d00166", shape=box, style=filled, color=grey]; + "618E" [label="761e0f72f95", shape=box, style=filled, color=grey]; + 321 [label="275afb2b215b966d9fac51b96b9", shape=hexagon]; + "72E" [label=ac284d73563, shape=box, style=filled, color=grey]; + "362E" [label="7e74e1587f3a4d208", shape=box, style=filled, color=grey]; + "372E" [label=ffd1b1af3b6864078f3, shape=box, style=filled, color=grey]; + "572E" [label=b38049e00, shape=box, style=filled, color=grey]; + 322 [label=c3c93c700edc0cb4f95f03c04, shape=hexagon]; + "54E" [label="99237fce1358", shape=box, style=filled, color=grey]; + "222E" [label="3dcf8f454", shape=box, style=filled, color=grey]; + "302E" [label=c5acd20cad2, shape=box, style=filled, color=grey]; + "556E" [label="6c998bf2a5edd", shape=box, style=filled, color=grey]; + "558E" [label="4b683", shape=box, style=filled, color=grey]; + 323 [label="63a3d4fb9d38a0182be6e39e76", shape=hexagon]; + "37E" [label=bba6e6e194ccf, shape=box, style=filled, color=grey]; + "208E" [label=01938827, shape=box, style=filled, color=grey]; + "210E" [label=9, shape=box, style=filled, color=grey]; + "352E" [label="64ef1d545", shape=box, style=filled, color=grey]; + "450E" [label=b473716, shape=box, style=filled, color=grey]; + "568E" [label="7c13bf753da", shape=box, style=filled, color=grey]; + "576E" [label="4e4a79111d", shape=box, style=filled, color=grey]; + "686E" [label=af4abb0d6a99, shape=box, style=filled, color=grey]; + 324 [label="4399cf78123dedd0dfe9776104", shape=hexagon]; + "228E" [label=af9c489df53, shape=box, style=filled, color=grey]; + "248E" [label="3703059dbc5a8", shape=box, style=filled, color=grey]; + "304E" [label="8a46e6", shape=box, style=filled, color=grey]; + "468E" [label=f9d09, shape=box, style=filled, color=grey]; + "578E" [label=cd1e9af3dec2, shape=box, style=filled, color=grey]; + "660E" [label="9e650e89bb", shape=box, style=filled, color=grey]; + "688E" [label=f62b136b2171, shape=box, style=filled, color=grey]; + "694E" [label="4727c415d06bcbef", shape=box, style=filled, color=grey]; + "714E" [label="38b3b0d9", shape=box, style=filled, color=grey]; + "766E" [label=a153512d982, shape=box, style=filled, color=grey]; + 325 [label="40f253cd228f7ac2d0aee", shape=hexagon]; + "97E" [label=a3ff993, shape=box, style=filled, color=grey]; + "506E" [label="7528dd86b", shape=box, style=filled, color=grey]; + 326 [label="89a2505da6179a80202d4a6c3", shape=hexagon]; + "61E" [label="75eea05672a5", shape=box, style=filled, color=grey]; + "175E" [label="3b0c08dd2ca", shape=box, style=filled, color=grey]; + "482E" [label=a3781072b, shape=box, style=filled, color=grey]; + 328 [label="2601085bde1b2450d64509f36", shape=hexagon]; + "75E" [label="0efbd", shape=box, style=filled, color=grey]; + "580E" [label=bb92d1da1f38d52f8ff, shape=box, style=filled, color=grey]; + 329 [label="5c81103c751345d0ee0f4bd", shape=hexagon]; + "96E" [label=b23526044, shape=box, style=filled, color=grey]; + 330 [label=fcbd9ad14139718bc6fcc8b4, shape=hexagon]; + "100E" [label="73ca543bf1", shape=box, style=filled, color=grey]; + "170E" [label=c2f32e2cf9, shape=box, style=filled, color=grey]; + 333 [label="44cbb41a9cfc15497eacd294", shape=doubleoctagon, style=filled, color=yellow]; + "63E" [label="6a91", shape=box, style=filled, color=grey]; + "67E" [label=b074e, shape=box, style=filled, color=grey]; + "68E" [label=06209, shape=box, style=filled, color=grey]; + "69E" [label="58e3dcc618", shape=box, style=filled, color=grey]; + "70E" [label=eee44624da, shape=box, style=filled, color=grey]; + "71E" [label="6a91", shape=box, style=filled, color=grey]; + "802E" [label=e1e8c, shape=box, style=filled, color=grey]; + "793E" [shape=box, style=filled, color=grey]; + 334 [label=b46b0756dba915943839e90a55, shape=doubleoctagon, style=filled, color=yellow]; + "64E" [label="5fdf", shape=box, style=filled, color=grey]; + "81E" [label="3eca1f94dc181", shape=box, style=filled, color=grey]; + "82E" [label="6b1bb9b0e", shape=box, style=filled, color=grey]; + "83E" [label=a54d477232, shape=box, style=filled, color=grey]; + "84E" [label=a164d9f60fbbdd, shape=box, style=filled, color=grey]; + "85E" [label="78c8463ea", shape=box, style=filled, color=grey]; + "86E" [label=c110ba7, shape=box, style=filled, color=grey]; + "87E" [label="3b63cdc0f", shape=box, style=filled, color=grey]; + "88E" [label="6f578c5128", shape=box, style=filled, color=grey]; + "89E" [label="3e048573fd", shape=box, style=filled, color=grey]; + 336 [label="825c7994d5da13afe519861818", shape=tripleoctagon, style=filled, color="#ff0000", URL="tes hi", area=test]; + "1E" [label=f4bef37b6a94bfd00, shape=box, style=filled, color=grey]; + "2E" [label=d2647f8b6d8661d08, shape=box, style=filled, color=grey]; + "3E" [label="964cb56d8f69ff058", shape=box, style=filled, color=grey]; + "4E" [label="4f35e206816c3bd22", shape=box, style=filled, color=grey]; + "5E" [label=affb2d716803a2d3e, shape=box, style=filled, color=grey]; + "6E" [label=e4ae306d9bd669c70, shape=box, style=filled, color=grey]; + "7E" [label="4dbf4395236fb03ed", shape=box, style=filled, color=grey]; + "8E" [label="15b3ad672cd2f713a", shape=box, style=filled, color=grey]; + "9E" [label="8d6e6e0cd9b842a47", shape=box, style=filled, color=grey]; + "10E" [label="00d0dd018fe879f96", shape=box, style=filled, color=grey]; + "11E" [label=f28b78d4803c, shape=box, style=filled, color=grey]; + "12E" [label="2d886da042b5384b4", shape=box, style=filled, color=grey]; + "13E" [label="548c0081a62132b44", shape=box, style=filled, color=grey]; + "14E" [label="52126553e52385d16", shape=box, style=filled, color=grey]; + "15E" [label="9fe716e738eaea34e", shape=box, style=filled, color=grey]; + "16E" [label="5782807b5f575e0a8", shape=box, style=filled, color=grey]; + "17E" [label="792fd6f9df1fa1e33", shape=box, style=filled, color=grey]; + "18E" [label=c471b6fdbfb852661, shape=box, style=filled, color=grey]; + "19E" [label=a84844dfd0052b3b5, shape=box, style=filled, color=grey]; + "20E" [label="724dabdce9744d061", shape=box, style=filled, color=grey]; + "21E" [label="57f7fd2eecec93c8b", shape=box, style=filled, color=grey]; + "22E" [label=baba65f670ee34a88, shape=box, style=filled, color=grey]; + "23E" [label=ac34ec0f0488b17ec, shape=box, style=filled, color=grey]; + "24E" [label="51e74bec5513083bb", shape=box, style=filled, color=grey]; + "25E" [label="8e2d970b2f820ee35", shape=box, style=filled, color=grey]; + "26E" [label="19398d3cd6b9c674f", shape=box, style=filled, color=grey]; + "27E" [label="6505e29f4a11d9530", shape=box, style=filled, color=grey]; + "28E" [label=bc4824f07a9d2bba6, shape=box, style=filled, color=grey]; + "29E" [label="3acbf8a1537e4e1a1", shape=box, style=filled, color=grey]; + "30E" [label="536264e787cf70469", shape=box, style=filled, color=grey]; + "31E" [label=d, shape=box, style=filled, color=grey]; + "65E" [label=d4b2, shape=box, style=filled, color=grey]; + "119E" [label="2a9caef7", shape=box, style=filled, color=grey]; + "150E" [label="73d12", shape=box, style=filled, color=grey]; + "176E" [label="8896166adc0", shape=box, style=filled, color=grey]; + "743E" [label="9f", shape=box, style=filled, color=grey]; + "744E" [label="2e1313c", shape=box, style=filled, color=grey]; + "764E" [label=cd6, shape=box, style=filled, color=grey]; + 337 [label="8304a439f91fc90b3fe8dd35be8", shape=doubleoctagon, style=filled, color=yellow]; + "120E" [label="345d26b3f821fe", shape=box, style=filled, color=grey]; + "121E" [label="357679fea1e2f", shape=box, style=filled, color=grey]; + "122E" [label=c71043819b6a79, shape=box, style=filled, color=grey]; + "123E" [label=f9df653b86fb8df, shape=box, style=filled, color=grey]; + "124E" [label="020df871874cd", shape=box, style=filled, color=grey]; + "125E" [label="4c52fdd8e396692", shape=box, style=filled, color=grey]; + "126E" [label="8b98c3ddbe0b336", shape=box, style=filled, color=grey]; + "127E" [label=d9f4abac731a9e, shape=box, style=filled, color=grey]; + "128E" [label="50f4d9b97aefe", shape=box, style=filled, color=grey]; + "129E" [label=ea920d9f5b295119, shape=box, style=filled, color=grey]; + "130E" [label=ff5c9b242337c, shape=box, style=filled, color=grey]; + "131E" [label="4e12f7ff0918", shape=box, style=filled, color=grey]; + "132E" [label=ee3b6be71d59b, shape=box, style=filled, color=grey]; + "133E" [label="615cd6b5e3d21c", shape=box, style=filled, color=grey]; + "134E" [label="6d52dd1b198bb", shape=box, style=filled, color=grey]; + "135E" [label="8c932e1e502dca", shape=box, style=filled, color=grey]; + "136E" [label=e84330eef281284a, shape=box, style=filled, color=grey]; + "137E" [label="85fc23f1c88b4", shape=box, style=filled, color=grey]; + "138E" [label="5997cb0c083422", shape=box, style=filled, color=grey]; + 339 [label=b1ffbabb24d71f67d1e0ce23c51, shape=doubleoctagon, style=filled, color=yellow]; + "151E" [shape=box, style=filled, color=grey]; + "153E" [label="41a8b095c7fd3", shape=box, style=filled, color=grey]; + "154E" [label="151bcc2a8de7ea634", shape=box, style=filled, color=grey]; + "155E" [label="6c541cad8de1b15", shape=box, style=filled, color=grey]; + "156E" [label=c935c7f4d1090ac, shape=box, style=filled, color=grey]; + "157E" [label="5ce1fcfb042b", shape=box, style=filled, color=grey]; + "158E" [label=531806429433, shape=box, style=filled, color=grey]; + "159E" [label=d285240b89cb, shape=box, style=filled, color=grey]; + "160E" [label=f22c27c0f0a54e, shape=box, style=filled, color=grey]; + "161E" [label="8d0d8314d211d80", shape=box, style=filled, color=grey]; + "162E" [shape=box, style=filled, color=grey]; + 347 [label="9652ab8b55fdb2a36d1f3fe020", shape=hexagon]; + "139E" [label=ef8b68bb5772f3, shape=box, style=filled, color=grey]; + "795E" [label="16c3ae29c0bc713", shape=box, style=filled, color=grey]; + 348 [label="676bbe7d1c1fb71742df534ce8", shape=hexagon]; + "799E" [label=a78eb40ae56aaa9, shape=box, style=filled, color=grey]; + "800E" [label="6aae8d25951", shape=box, style=filled, color=grey]; + 349 [label="66c0220688a999aaf7f1702d1", shape=hexagon]; + "141E" [label="67b6a4dca3a6d", shape=box, style=filled, color=grey]; + 350 [label="1322fb0818783e6f9a4f173d47c52", shape=hexagon]; + "142E" [label="9696c0950295d8cb5", shape=box, style=filled, color=grey]; + "678E" [label=b5c747cc9, shape=box, style=filled, color=grey]; + 351 [label=ff07977fca5513098d220d1eb3a, shape=hexagon]; + "143E" [label="89a36b13f8c344b", shape=box, style=filled, color=grey]; + "232E" [label="56292d076643", shape=box, style=filled, color=grey]; + "680E" [label=b5c747cc9, shape=box, style=filled, color=grey]; + "704E" [label="431430c49", shape=box, style=filled, color=grey]; + 352 [label=a97ef281eafc34b1630d450a1df, shape=hexagon]; + "144E" [label="4ff4e275c710c3b", shape=box, style=filled, color=grey]; + "432E" [label=d13da6273c9b4da, shape=box, style=filled, color=grey]; + 353 [label="72cbb37db85ed3c6eda5dcf8", shape=hexagon]; + "145E" [label="33ff9e43d5ab", shape=box, style=filled, color=grey]; + 354 [label="0f6784e49852c0be0da23b16", shape=hexagon]; + "146E" [label=d4f958b03a98, shape=box, style=filled, color=grey]; + "396E" [label="8e24e9b4e", shape=box, style=filled, color=grey]; + 355 [label="383f5c65cc6c25aa0a0e6dbb", shape=hexagon]; + "147E" [label="1ff8ff951ee9", shape=box, style=filled, color=grey]; + 356 [label=f52a45620969f0df4e6ae1dcd7, shape=hexagon]; + "148E" [label="5256925081c812", shape=box, style=filled, color=grey]; + 357 [label="1f5df34ad75a55a76ef4afa0a47", shape=hexagon]; + "149E" [label="26a185dde9a93dd", shape=box, style=filled, color=grey]; + 358 [label="45ba4d4c61c9601a26d59e47e0260", shape=hexagon]; + "167E" [label="99bd3e7feeb710", shape=box, style=filled, color=grey]; + 359 [label=f95344b0ae31693f3a2746597d4, shape=hexagon]; + "169E" [label="4e8259973f1f", shape=box, style=filled, color=grey]; + 360 [label=b79798b186d6b82288e8be4017d, shape=hexagon]; + "171E" [label="63b079bd5847", shape=box, style=filled, color=grey]; + 361 [label="47e0067f4d853afd2012f04daa8", shape=hexagon]; + "172E" [label="92fb5d4a0805", shape=box, style=filled, color=grey]; + 362 [label=f2b6201774de40a29b504b1f716, shape=hexagon]; + "173E" [label=d7203571944b, shape=box, style=filled, color=grey]; + 363 [label="800422ab81d804eef3e7b91dfba91", shape=hexagon]; + "174E" [label="952316a1a5a785", shape=box, style=filled, color=grey]; + 364 [label="35b941379e1af658078cffb83a2", shape=hexagon]; + "101E" [label="331675c046693f", shape=box, style=filled, color=grey]; + 365 [label=d4f7b7fba7afcf7a72397353ec, shape=hexagon]; + "102E" [label="32c4684b55361", shape=box, style=filled, color=grey]; + 367 [label=e4b45b7a2f884d3734bfd5985656, shape=hexagon]; + "104E" [label="1333074979f2d0b", shape=box, style=filled, color=grey]; + 368 [label="02c2ba83680ab57f236a33d702", shape=hexagon]; + "105E" [label="084d4bfa5853e", shape=box, style=filled, color=grey]; + 369 [label="9ccd974150a18260b207b6584caa", shape=hexagon]; + "106E" [label="28f7bfc40c88e6a", shape=box, style=filled, color=grey]; + 374 [label="653ae44d45dcadeb481b53027d", shape=hexagon]; + "111E" [label="8f95518f48528", shape=box, style=filled, color=grey]; + 375 [label=d66f542ef1ce4d02c59bec65e, shape=hexagon]; + "112E" [label="2ef209509e2a", shape=box, style=filled, color=grey]; + 377 [label=a2984b7a11e49440420058c1d80, shape=hexagon]; + "114E" [label=ef42184297591d, shape=box, style=filled, color=grey]; + 378 [label="31055116421c96b37f72a262bb", shape=hexagon]; + "115E" [label=be9c5958196ed, shape=box, style=filled, color=grey]; + 380 [label="8462bb2eec1a62d19a15865e57c92", shape=hexagon]; + "117E" [label="16a795a1d63f30df", shape=box, style=filled, color=grey]; + "392E" [label="85a34bc9616ff", shape=box, style=filled, color=grey]; + 381 [label=c21eb96fe100a1efaa128181b7, shape=hexagon]; + "118E" [label=f1b0d754353a6, shape=box, style=filled, color=grey]; + 382 [label=e3e284d0cc803d98d674f9c3f6d, shape=doubleoctagon, style=filled, color=yellow]; + "177E" [label="30417faf916", shape=box, style=filled, color=grey]; + "178E" [label=e618df70814a, shape=box, style=filled, color=grey]; + "179E" [label=fa90ddf10bd574, shape=box, style=filled, color=grey]; + "180E" [label="815cc0b83d733", shape=box, style=filled, color=grey]; + "181E" [label=f787d827958c, shape=box, style=filled, color=grey]; + "182E" [label=f20f7f513e, shape=box, style=filled, color=grey]; + "183E" [label="290907417e13", shape=box, style=filled, color=grey]; + "184E" [label=e8386a8e1c8a, shape=box, style=filled, color=grey]; + "185E" [label="319bc900218b", shape=box, style=filled, color=grey]; + "186E" [label="3ba7afb0e48ae1", shape=box, style=filled, color=grey]; + "187E" [label="6ba0776fc8e", shape=box, style=filled, color=grey]; + "188E" [label="09847696ae", shape=box, style=filled, color=grey]; + 383 [label="908f9ad506eae9ab6ada185e3", shape=doubleoctagon, style=filled, color=yellow]; + "730E" [label="65694ca6d575", shape=box, style=filled, color=grey]; + "732E" [label="37f57e81ebed95", shape=box, style=filled, color=grey]; + "741E" [label="9b6c", shape=box, style=filled, color=grey]; + "765E" [label="88ebe2e8782c", shape=box, style=filled, color=grey]; + "796E" [label="901b2105a902ee7791", shape=box, style=filled, color=grey]; + 384 [label="593caebf2037317648bb451aa79", shape=doubleoctagon, style=filled, color=yellow]; + "726E" [label="351dd0aefe480c", shape=box, style=filled, color=grey]; + "728E" [label="56e1a896", shape=box, style=filled, color=grey]; + "742E" [label="5ba4693031", shape=box, style=filled, color=grey]; + 1 -> "189E" [label=" ", color=blue, arrowhead=dot]; + 1 -> "790E" [label=" ", color=blue, arrowhead=dot]; + 2 -> "191E" [label=" ", color=blue, arrowhead=dot]; + 3 -> "193E" [label=" ", color=blue, arrowhead=dot]; + 4 -> "195E" [label=" ", color=blue, arrowhead=dot]; + 5 -> "197E" [label=" ", color=blue, arrowhead=dot]; + 6 -> "199E" [label=" ", color=blue, arrowhead=dot]; + 7 -> "201E" [label=" ", color=blue, arrowhead=dot]; + 8 -> "203E" [label=" ", color=blue, arrowhead=dot]; + 9 -> "725E" [label=" ", color=blue, arrowhead=dot]; + 9 -> "785E" [label=" ", color=blue, arrowhead=dot]; + 10 -> "205E" [label=" ", color=blue, arrowhead=dot]; + 11 -> "207E" [label=" ", color=blue, arrowhead=dot]; + 12 -> "209E" [label=" ", color=blue, arrowhead=dot]; + 13 -> "211E" [label=" ", color=blue, arrowhead=dot]; + 14 -> "213E" [label=" ", color=blue, arrowhead=dot]; + 15 -> "215E" [label=" ", color=blue, arrowhead=dot]; + 16 -> "727E" [label=" ", color=blue, arrowhead=dot]; + 16 -> "784E" [label=" ", color=blue, arrowhead=dot]; + 17 -> "217E" [label=" ", color=blue, arrowhead=dot]; + 17 -> "787E" [label=" ", color=blue, arrowhead=dot]; + 18 -> "219E" [label=" ", color=blue, arrowhead=dot]; + 19 -> "221E" [label=" ", color=blue, arrowhead=dot]; + 20 -> "223E" [label=" ", color=blue, arrowhead=dot]; + 21 -> "225E" [label=" ", color=blue, arrowhead=dot]; + 22 -> "227E" [label=" ", color=blue, arrowhead=dot]; + 22 -> "792E" [label=" ", color=blue, arrowhead=dot]; + 23 -> "231E" [label=" ", color=blue, arrowhead=dot]; + 24 -> "233E" [label=" ", color=blue, arrowhead=dot]; + 25 -> "235E" [label=" ", color=blue, arrowhead=dot]; + 26 -> "237E" [label=" ", color=blue, arrowhead=dot]; + 27 -> "239E" [label=" ", color=blue, arrowhead=dot]; + 27 -> "783E" [label=" ", color=blue, arrowhead=dot]; + 28 -> "241E" [label=" ", color=blue, arrowhead=dot]; + 28 -> "791E" [label=" ", color=blue, arrowhead=dot]; + 29 -> "243E" [label=" ", color=blue, arrowhead=dot]; + 30 -> "245E" [label=" ", color=blue, arrowhead=dot]; + 31 -> "247E" [label=" ", color=blue, arrowhead=dot]; + 32 -> "249E" [label=" ", color=blue, arrowhead=dot]; + 33 -> "251E" [label=" ", color=blue, arrowhead=dot]; + 34 -> "253E" [label=" ", color=blue, arrowhead=dot]; + 35 -> "255E" [label=" ", color=blue, arrowhead=dot]; + 36 -> "257E" [label=" ", color=blue, arrowhead=dot]; + 37 -> "259E" [label=" ", color=blue, arrowhead=dot]; + 38 -> "261E" [label=" ", color=blue, arrowhead=dot]; + 39 -> "263E" [label=" ", color=blue, arrowhead=dot]; + 40 -> "265E" [label=" ", color=blue, arrowhead=dot]; + 41 -> "267E" [label=" ", color=blue, arrowhead=dot]; + 42 -> "269E" [label=" ", color=blue, arrowhead=dot]; + 43 -> "271E" [label=" ", color=blue, arrowhead=dot]; + 44 -> "273E" [label=" ", color=blue, arrowhead=dot]; + 45 -> "275E" [label=" ", color=blue, arrowhead=dot]; + 46 -> "277E" [label=" ", color=blue, arrowhead=dot]; + 47 -> "279E" [label=" ", color=blue, arrowhead=dot]; + 48 -> "281E" [label=" ", color=blue, arrowhead=dot]; + 49 -> "283E" [label=" ", color=blue, arrowhead=dot]; + 50 -> "285E" [label=" ", color=blue, arrowhead=dot]; + 51 -> "287E" [label=" ", color=blue, arrowhead=dot]; + 52 -> "289E" [label=" ", color=blue, arrowhead=dot]; + 53 -> "291E" [label=" ", color=blue, arrowhead=dot]; + 54 -> "293E" [label=" ", color=blue, arrowhead=dot]; + 56 -> "295E" [label=" ", color=blue, arrowhead=dot]; + 57 -> "297E" [label=" ", color=blue, arrowhead=dot]; + 58 -> "299E" [label=" ", color=blue, arrowhead=dot]; + 59 -> "301E" [label=" ", color=blue, arrowhead=dot]; + 59 -> "789E" [label=" ", color=blue, arrowhead=dot]; + 60 -> "303E" [label=" ", color=blue, arrowhead=dot]; + 61 -> "305E" [label=" ", color=blue, arrowhead=dot]; + 62 -> "307E" [label=" ", color=blue, arrowhead=dot]; + 63 -> "309E" [label=" ", color=blue, arrowhead=dot]; + 64 -> "311E" [label=" ", color=blue, arrowhead=dot]; + 65 -> "313E" [label=" ", color=blue, arrowhead=dot]; + 66 -> "315E" [label=" ", color=blue, arrowhead=dot]; + 67 -> "317E" [label=" ", color=blue, arrowhead=dot]; + 68 -> "319E" [label=" ", color=blue, arrowhead=dot]; + 70 -> "321E" [label=" ", color=blue, arrowhead=dot]; + 71 -> "327E" [label=" ", color=blue, arrowhead=dot]; + 72 -> "329E" [label=" ", color=blue, arrowhead=dot]; + 73 -> "331E" [label=" ", color=blue, arrowhead=dot]; + 74 -> "333E" [label=" ", color=blue, arrowhead=dot]; + 75 -> "335E" [label=" ", color=blue, arrowhead=dot]; + 76 -> "337E" [label=" ", color=blue, arrowhead=dot]; + 77 -> "339E" [label=" ", color=blue, arrowhead=dot]; + 78 -> "341E" [label=" ", color=blue, arrowhead=dot]; + 79 -> "343E" [label=" ", color=blue, arrowhead=dot]; + 80 -> "345E" [label=" ", color=blue, arrowhead=dot]; + 81 -> "347E" [label=" ", color=blue, arrowhead=dot]; + 82 -> "349E" [label=" ", color=blue, arrowhead=dot]; + 83 -> "351E" [label=" ", color=blue, arrowhead=dot]; + 84 -> "353E" [label=" ", color=blue, arrowhead=dot]; + 85 -> "355E" [label=" ", color=blue, arrowhead=dot]; + 85 -> "788E" [label=" ", color=blue, arrowhead=dot]; + 86 -> "357E" [label=" ", color=blue, arrowhead=dot]; + 87 -> "359E" [label=" ", color=blue, arrowhead=dot]; + 88 -> "361E" [label=" ", color=blue, arrowhead=dot]; + 89 -> "363E" [label=" ", color=blue, arrowhead=dot]; + 90 -> "365E" [label=" ", color=blue, arrowhead=dot]; + 91 -> "367E" [label=" ", color=blue, arrowhead=dot]; + 92 -> "369E" [label=" ", color=blue, arrowhead=dot]; + 93 -> "729E" [label=" ", color=blue, arrowhead=dot]; + 94 -> "371E" [label=" ", color=blue, arrowhead=dot]; + 95 -> "373E" [label=" ", color=blue, arrowhead=dot]; + 96 -> "375E" [label=" ", color=blue, arrowhead=dot]; + 98 -> "377E" [label=" ", color=blue, arrowhead=dot]; + 99 -> "379E" [label=" ", color=blue, arrowhead=dot]; + 100 -> "381E" [label=" ", color=blue, arrowhead=dot]; + 101 -> "383E" [label=" ", color=blue, arrowhead=dot]; + 102 -> "385E" [label=" ", color=blue, arrowhead=dot]; + 103 -> "387E" [label=" ", color=blue, arrowhead=dot]; + 104 -> "389E" [label=" ", color=blue, arrowhead=dot]; + 105 -> "391E" [label=" ", color=blue, arrowhead=dot]; + 106 -> "393E" [label=" ", color=blue, arrowhead=dot]; + 107 -> "395E" [label=" ", color=blue, arrowhead=dot]; + 108 -> "397E" [label=" ", color=blue, arrowhead=dot]; + 109 -> "399E" [label=" ", color=blue, arrowhead=dot]; + 110 -> "401E" [label=" ", color=blue, arrowhead=dot]; + 111 -> "403E" [label=" ", color=blue, arrowhead=dot]; + 112 -> "405E" [label=" ", color=blue, arrowhead=dot]; + 113 -> "407E" [label=" ", color=blue, arrowhead=dot]; + 114 -> "409E" [label=" ", color=blue, arrowhead=dot]; + 115 -> "411E" [label=" ", color=blue, arrowhead=dot]; + 116 -> "413E" [label=" ", color=blue, arrowhead=dot]; + 117 -> "415E" [label=" ", color=blue, arrowhead=dot]; + 118 -> "417E" [label=" ", color=blue, arrowhead=dot]; + 119 -> "419E" [label=" ", color=blue, arrowhead=dot]; + 120 -> "421E" [label=" ", color=blue, arrowhead=dot]; + 121 -> "423E" [label=" ", color=blue, arrowhead=dot]; + 123 -> "425E" [label=" ", color=blue, arrowhead=dot]; + 124 -> "427E" [label=" ", color=blue, arrowhead=dot]; + 124 -> "786E" [label=" ", color=blue, arrowhead=dot]; + 125 -> "431E" [label=" ", color=blue, arrowhead=dot]; + 126 -> "433E" [label=" ", color=blue, arrowhead=dot]; + 127 -> "435E" [label=" ", color=blue, arrowhead=dot]; + 128 -> "437E" [label=" ", color=blue, arrowhead=dot]; + 129 -> "439E" [label=" ", color=blue, arrowhead=dot]; + 130 -> "441E" [label=" ", color=blue, arrowhead=dot]; + 131 -> "443E" [label=" ", color=blue, arrowhead=dot]; + 132 -> "445E" [label=" ", color=blue, arrowhead=dot]; + 134 -> "447E" [label=" ", color=blue, arrowhead=dot]; + 135 -> "449E" [label=" ", color=blue, arrowhead=dot]; + 135 -> "769E" [label=" ", color=blue, arrowhead=dot]; + 135 -> "770E" [label=" ", color=blue, arrowhead=dot]; + 136 -> "451E" [label=" ", color=blue, arrowhead=dot]; + 137 -> "453E" [label=" ", color=blue, arrowhead=dot]; + 138 -> "455E" [label=" ", color=blue, arrowhead=dot]; + 139 -> "457E" [label=" ", color=blue, arrowhead=dot]; + 140 -> "459E" [label=" ", color=blue, arrowhead=dot]; + 141 -> "461E" [label=" ", color=blue, arrowhead=dot]; + 142 -> "463E" [label=" ", color=blue, arrowhead=dot]; + 143 -> "465E" [label=" ", color=blue, arrowhead=dot]; + 144 -> "467E" [label=" ", color=blue, arrowhead=dot]; + 145 -> "469E" [label=" ", color=blue, arrowhead=dot]; + 146 -> "471E" [label=" ", color=blue, arrowhead=dot]; + 147 -> "473E" [label=" ", color=blue, arrowhead=dot]; + 148 -> "475E" [label=" ", color=blue, arrowhead=dot]; + 149 -> "477E" [label=" ", color=blue, arrowhead=dot]; + 150 -> "479E" [label=" ", color=blue, arrowhead=dot]; + 151 -> "481E" [label=" ", color=blue, arrowhead=dot]; + 152 -> "483E" [label=" ", color=blue, arrowhead=dot]; + 153 -> "731E" [label=" ", color=blue, arrowhead=dot]; + 155 -> "485E" [label=" ", color=blue, arrowhead=dot]; + 156 -> "487E" [label=" ", color=blue, arrowhead=dot]; + 157 -> "489E" [label=" ", color=blue, arrowhead=dot]; + 158 -> "491E" [label=" ", color=blue, arrowhead=dot]; + 159 -> "495E" [label=" ", color=blue, arrowhead=dot]; + 160 -> "499E" [label=" ", color=blue, arrowhead=dot]; + 161 -> "501E" [label=" ", color=blue, arrowhead=dot]; + 162 -> "503E" [label=" ", color=blue, arrowhead=dot]; + 163 -> "505E" [label=" ", color=blue, arrowhead=dot]; + 164 -> "507E" [label=" ", color=blue, arrowhead=dot]; + 165 -> "509E" [label=" ", color=blue, arrowhead=dot]; + 166 -> "511E" [label=" ", color=blue, arrowhead=dot]; + 167 -> "513E" [label=" ", color=blue, arrowhead=dot]; + 168 -> "515E" [label=" ", color=blue, arrowhead=dot]; + 169 -> "517E" [label=" ", color=blue, arrowhead=dot]; + 170 -> "519E" [label=" ", color=blue, arrowhead=dot]; + 171 -> "521E" [label=" ", color=blue, arrowhead=dot]; + 172 -> "523E" [label=" ", color=blue, arrowhead=dot]; + 173 -> "525E" [label=" ", color=blue, arrowhead=dot]; + 174 -> "527E" [label=" ", color=blue, arrowhead=dot]; + 175 -> "529E" [label=" ", color=blue, arrowhead=dot]; + 176 -> "531E" [label=" ", color=blue, arrowhead=dot]; + 177 -> "533E" [label=" ", color=blue, arrowhead=dot]; + 178 -> "535E" [label=" ", color=blue, arrowhead=dot]; + 179 -> "537E" [label=" ", color=blue, arrowhead=dot]; + 180 -> "539E" [label=" ", color=blue, arrowhead=dot]; + 181 -> "541E" [label=" ", color=blue, arrowhead=dot]; + 182 -> "543E" [label=" ", color=blue, arrowhead=dot]; + 183 -> "545E" [label=" ", color=blue, arrowhead=dot]; + 184 -> "547E" [label=" ", color=blue, arrowhead=dot]; + 185 -> "549E" [label=" ", color=blue, arrowhead=dot]; + 186 -> "551E" [label=" ", color=blue, arrowhead=dot]; + 187 -> "553E" [label=" ", color=blue, arrowhead=dot]; + 188 -> "555E" [label=" ", color=blue, arrowhead=dot]; + 189 -> "557E" [label=" ", color=blue, arrowhead=dot]; + 190 -> "559E" [label=" ", color=blue, arrowhead=dot]; + 191 -> "561E" [label=" ", color=blue, arrowhead=dot]; + 192 -> "563E" [label=" ", color=blue, arrowhead=dot]; + 193 -> "565E" [label=" ", color=blue, arrowhead=dot]; + 194 -> "567E" [label=" ", color=blue, arrowhead=dot]; + 195 -> "569E" [label=" ", color=blue, arrowhead=dot]; + 196 -> "571E" [label=" ", color=blue, arrowhead=dot]; + 197 -> "573E" [label=" ", color=blue, arrowhead=dot]; + 198 -> "575E" [label=" ", color=blue, arrowhead=dot]; + 199 -> "577E" [label=" ", color=blue, arrowhead=dot]; + 200 -> "579E" [label=" ", color=blue, arrowhead=dot]; + 201 -> "581E" [label=" ", color=blue, arrowhead=dot]; + 202 -> "583E" [label=" ", color=blue, arrowhead=dot]; + 203 -> "585E" [label=" ", color=blue, arrowhead=dot]; + 204 -> "587E" [label=" ", color=blue, arrowhead=dot]; + 206 -> "589E" [label=" ", color=blue, arrowhead=dot]; + 208 -> "597E" [label=" ", color=blue, arrowhead=dot]; + 209 -> "599E" [label=" ", color=blue, arrowhead=dot]; + 210 -> "601E" [label=" ", color=blue, arrowhead=dot]; + 211 -> "603E" [label=" ", color=blue, arrowhead=dot]; + 212 -> "605E" [label=" ", color=blue, arrowhead=dot]; + 213 -> "607E" [label=" ", color=blue, arrowhead=dot]; + 214 -> "609E" [label=" ", color=blue, arrowhead=dot]; + 215 -> "611E" [label=" ", color=blue, arrowhead=dot]; + 216 -> "613E" [label=" ", color=blue, arrowhead=dot]; + 217 -> "615E" [label=" ", color=blue, arrowhead=dot]; + 218 -> "617E" [label=" ", color=blue, arrowhead=dot]; + 219 -> "619E" [label=" ", color=blue, arrowhead=dot]; + 221 -> "623E" [label=" ", color=blue, arrowhead=dot]; + 223 -> "625E" [label=" ", color=blue, arrowhead=dot]; + 224 -> "627E" [label=" ", color=blue, arrowhead=dot]; + 225 -> "629E" [label=" ", color=blue, arrowhead=dot]; + 226 -> "631E" [label=" ", color=blue, arrowhead=dot]; + 227 -> "633E" [label=" ", color=blue, arrowhead=dot]; + 228 -> "635E" [label=" ", color=blue, arrowhead=dot]; + 229 -> "637E" [label=" ", color=blue, arrowhead=dot]; + 230 -> "639E" [label=" ", color=blue, arrowhead=dot]; + 231 -> "641E" [label=" ", color=blue, arrowhead=dot]; + 232 -> "643E" [label=" ", color=blue, arrowhead=dot]; + 233 -> "645E" [label=" ", color=blue, arrowhead=dot]; + 234 -> "647E" [label=" ", color=blue, arrowhead=dot]; + 235 -> "649E" [label=" ", color=blue, arrowhead=dot]; + 236 -> "651E" [label=" ", color=blue, arrowhead=dot]; + 237 -> "653E" [label=" ", color=blue, arrowhead=dot]; + 238 -> "655E" [label=" ", color=blue, arrowhead=dot]; + 239 -> "657E" [label=" ", color=blue, arrowhead=dot]; + 240 -> "659E" [label=" ", color=blue, arrowhead=dot]; + 241 -> "661E" [label=" ", color=blue, arrowhead=dot]; + 242 -> "663E" [label=" ", color=blue, arrowhead=dot]; + 243 -> "665E" [label=" ", color=blue, arrowhead=dot]; + 244 -> "667E" [label=" ", color=blue, arrowhead=dot]; + 245 -> "669E" [label=" ", color=blue, arrowhead=dot]; + 246 -> "671E" [label=" ", color=blue, arrowhead=dot]; + 247 -> "673E" [label=" ", color=blue, arrowhead=dot]; + 248 -> "675E" [label=" ", color=blue, arrowhead=dot]; + 249 -> "679E" [label=" ", color=blue, arrowhead=dot]; + 251 -> "681E" [label=" ", color=blue, arrowhead=dot]; + 252 -> "683E" [label=" ", color=blue, arrowhead=dot]; + 253 -> "685E" [label=" ", color=blue, arrowhead=dot]; + 254 -> "687E" [label=" ", color=blue, arrowhead=dot]; + 255 -> "689E" [label=" ", color=blue, arrowhead=dot]; + 256 -> "691E" [label=" ", color=blue, arrowhead=dot]; + 257 -> "693E" [label=" ", color=blue, arrowhead=dot]; + 258 -> "695E" [label=" ", color=blue, arrowhead=dot]; + 259 -> "697E" [label=" ", color=blue, arrowhead=dot]; + 260 -> "699E" [label=" ", color=blue, arrowhead=dot]; + 261 -> "703E" [label=" ", color=blue, arrowhead=dot]; + 262 -> "705E" [label=" ", color=blue, arrowhead=dot]; + 264 -> "709E" [label=" ", color=blue, arrowhead=dot]; + 265 -> "711E" [label=" ", color=blue, arrowhead=dot]; + 266 -> "713E" [label=" ", color=blue, arrowhead=dot]; + 267 -> "715E" [label=" ", color=blue, arrowhead=dot]; + 268 -> "717E" [label=" ", color=blue, arrowhead=dot]; + 269 -> "719E" [label=" ", color=blue, arrowhead=dot]; + 270 -> "721E" [label=" ", color=blue, arrowhead=dot]; + 272 -> "34E" [label=" ", color=blue, arrowhead=dot]; + 272 -> "252E" [label=" ", color=blue, arrowhead=dot]; + 272 -> "436E" [label=" ", color=blue, arrowhead=dot]; + 274 -> "59E" [label=" ", color=blue, arrowhead=dot]; + 274 -> "500E" [label=" ", color=blue, arrowhead=dot]; + 274 -> "720E" [label=" ", color=blue, arrowhead=dot]; + 275 -> "98E" [label=" ", color=blue, arrowhead=dot]; + 278 -> "35E" [label=" ", color=blue, arrowhead=dot]; + 278 -> "488E" [label=" ", color=blue, arrowhead=dot]; + 278 -> "598E" [label=" ", color=blue, arrowhead=dot]; + 278 -> "604E" [label=" ", color=blue, arrowhead=dot]; + 278 -> "628E" [label=" ", color=blue, arrowhead=dot]; + 279 -> "99E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "242E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "270E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "272E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "284E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "286E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "288E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "586E" [label=" ", color=blue, arrowhead=dot]; + 280 -> "763E" [label=" ", color=blue, arrowhead=dot]; + 281 -> "45E" [label=" ", color=blue, arrowhead=dot]; + 281 -> "470E" [label=" ", color=blue, arrowhead=dot]; + 281 -> "670E" [label=" ", color=blue, arrowhead=dot]; + 281 -> "722E" [label=" ", color=blue, arrowhead=dot]; + 282 -> "103E" [label=" ", color=blue, arrowhead=dot]; + 283 -> "165E" [label=" ", color=blue, arrowhead=dot]; + 284 -> "39E" [label=" ", color=blue, arrowhead=dot]; + 284 -> "224E" [label=" ", color=blue, arrowhead=dot]; + 284 -> "268E" [label=" ", color=blue, arrowhead=dot]; + 284 -> "632E" [label=" ", color=blue, arrowhead=dot]; + 284 -> "710E" [label=" ", color=blue, arrowhead=dot]; + 285 -> "53E" [label=" ", color=blue, arrowhead=dot]; + 286 -> "38E" [label=" ", color=blue, arrowhead=dot]; + 286 -> "166E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "40E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "218E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "244E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "246E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "258E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "290E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "292E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "308E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "318E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "388E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "472E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "478E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "566E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "570E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "574E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "608E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "614E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "658E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "664E" [label=" ", color=blue, arrowhead=dot]; + 288 -> "682E" [label=" ", color=blue, arrowhead=dot]; + 289 -> "41E" [label=" ", color=blue, arrowhead=dot]; + 289 -> "636E" [label=" ", color=blue, arrowhead=dot]; + 289 -> "642E" [label=" ", color=blue, arrowhead=dot]; + 289 -> "690E" [label=" ", color=blue, arrowhead=dot]; + 289 -> "700E" [label=" ", color=blue, arrowhead=dot]; + 290 -> "56E" [label=" ", color=blue, arrowhead=dot]; + 290 -> "264E" [label=" ", color=blue, arrowhead=dot]; + 290 -> "510E" [label=" ", color=blue, arrowhead=dot]; + 290 -> "718E" [label=" ", color=blue, arrowhead=dot]; + 291 -> "66E" [label=" ", color=blue, arrowhead=dot]; + 291 -> "76E" [label=" ", color=blue, arrowhead=dot]; + 291 -> "610E" [label=" ", color=blue, arrowhead=dot]; + 292 -> "73E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "49E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "214E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "216E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "236E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "278E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "358E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "398E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "400E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "402E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "404E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "406E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "408E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "412E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "438E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "448E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "476E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "504E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "552E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "634E" [label=" ", color=blue, arrowhead=dot]; + 293 -> "768E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "44E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "92E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "250E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "316E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "380E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "424E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "442E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "446E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "454E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "460E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "462E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "648E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "656E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "666E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "692E" [label=" ", color=blue, arrowhead=dot]; + 295 -> "712E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "47E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "330E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "514E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "516E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "518E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "520E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "522E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "526E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "528E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "530E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "532E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "534E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "536E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "538E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "540E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "542E" [label=" ", color=blue, arrowhead=dot]; + 296 -> "544E" [label=" ", color=blue, arrowhead=dot]; + 297 -> "46E" [label=" ", color=blue, arrowhead=dot]; + 297 -> "93E" [label=" ", color=blue, arrowhead=dot]; + 297 -> "206E" [label=" ", color=blue, arrowhead=dot]; + 297 -> "426E" [label=" ", color=blue, arrowhead=dot]; + 297 -> "550E" [label=" ", color=blue, arrowhead=dot]; + 297 -> "706E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "36E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "95E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "364E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "394E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "420E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "456E" [label=" ", color=blue, arrowhead=dot]; + 298 -> "624E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "48E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "168E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "260E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "282E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "554E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "590E" [label=" ", color=blue, arrowhead=dot]; + 299 -> "767E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "62E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "190E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "226E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "238E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "254E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "256E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "262E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "266E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "274E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "276E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "294E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "296E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "310E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "320E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "322E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "332E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "340E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "344E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "346E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "348E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "374E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "378E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "452E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "508E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "524E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "612E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "626E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "638E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "644E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "654E" [label=" ", color=blue, arrowhead=dot]; + 300 -> "672E" [label=" ", color=blue, arrowhead=dot]; + 302 -> "797E" [label=" ", color=blue, arrowhead=dot]; + 302 -> "798E" [label=" ", color=blue, arrowhead=dot]; + 303 -> "52E" [label=" ", color=blue, arrowhead=dot]; + 303 -> "650E" [label=" ", color=blue, arrowhead=dot]; + 304 -> "50E" [label=" ", color=blue, arrowhead=dot]; + 304 -> "640E" [label=" ", color=blue, arrowhead=dot]; + 304 -> "646E" [label=" ", color=blue, arrowhead=dot]; + 304 -> "652E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "55E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "220E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "338E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "368E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "486E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "490E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "562E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "564E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "600E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "668E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "674E" [label=" ", color=blue, arrowhead=dot]; + 306 -> "698E" [label=" ", color=blue, arrowhead=dot]; + 307 -> "107E" [label=" ", color=blue, arrowhead=dot]; + 308 -> "108E" [label=" ", color=blue, arrowhead=dot]; + 309 -> "109E" [label=" ", color=blue, arrowhead=dot]; + 310 -> "110E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "58E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "234E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "300E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "306E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "314E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "342E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "354E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "370E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "382E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "422E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "444E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "582E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "620E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "630E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "684E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "696E" [label=" ", color=blue, arrowhead=dot]; + 311 -> "801E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "42E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "192E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "194E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "196E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "198E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "200E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "202E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "204E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "312E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "336E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "376E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "384E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "386E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "428E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "474E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "484E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "546E" [label=" ", color=blue, arrowhead=dot]; + 312 -> "548E" [label=" ", color=blue, arrowhead=dot]; + 314 -> "113E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "43E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "240E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "298E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "334E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "360E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "390E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "418E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "492E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "502E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "584E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "588E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "602E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "606E" [label=" ", color=blue, arrowhead=dot]; + 315 -> "662E" [label=" ", color=blue, arrowhead=dot]; + 316 -> "51E" [label=" ", color=blue, arrowhead=dot]; + 317 -> "116E" [label=" ", color=blue, arrowhead=dot]; + 318 -> "74E" [label=" ", color=blue, arrowhead=dot]; + 319 -> "57E" [label=" ", color=blue, arrowhead=dot]; + 319 -> "94E" [label=" ", color=blue, arrowhead=dot]; + 319 -> "350E" [label=" ", color=blue, arrowhead=dot]; + 319 -> "440E" [label=" ", color=blue, arrowhead=dot]; + 319 -> "466E" [label=" ", color=blue, arrowhead=dot]; + 319 -> "676E" [label=" ", color=blue, arrowhead=dot]; + 320 -> "60E" [label=" ", color=blue, arrowhead=dot]; + 320 -> "366E" [label=" ", color=blue, arrowhead=dot]; + 320 -> "434E" [label=" ", color=blue, arrowhead=dot]; + 320 -> "458E" [label=" ", color=blue, arrowhead=dot]; + 320 -> "618E" [label=" ", color=blue, arrowhead=dot]; + 321 -> "72E" [label=" ", color=blue, arrowhead=dot]; + 321 -> "362E" [label=" ", color=blue, arrowhead=dot]; + 321 -> "372E" [label=" ", color=blue, arrowhead=dot]; + 321 -> "572E" [label=" ", color=blue, arrowhead=dot]; + 322 -> "54E" [label=" ", color=blue, arrowhead=dot]; + 322 -> "222E" [label=" ", color=blue, arrowhead=dot]; + 322 -> "302E" [label=" ", color=blue, arrowhead=dot]; + 322 -> "556E" [label=" ", color=blue, arrowhead=dot]; + 322 -> "558E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "37E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "208E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "210E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "352E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "450E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "568E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "576E" [label=" ", color=blue, arrowhead=dot]; + 323 -> "686E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "228E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "248E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "304E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "468E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "578E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "660E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "688E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "694E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "714E" [label=" ", color=blue, arrowhead=dot]; + 324 -> "766E" [label=" ", color=blue, arrowhead=dot]; + 325 -> "97E" [label=" ", color=blue, arrowhead=dot]; + 325 -> "506E" [label=" ", color=blue, arrowhead=dot]; + 326 -> "61E" [label=" ", color=blue, arrowhead=dot]; + 326 -> "175E" [label=" ", color=blue, arrowhead=dot]; + 326 -> "482E" [label=" ", color=blue, arrowhead=dot]; + 328 -> "75E" [label=" ", color=blue, arrowhead=dot]; + 328 -> "580E" [label=" ", color=blue, arrowhead=dot]; + 329 -> "96E" [label=" ", color=blue, arrowhead=dot]; + 330 -> "100E" [label=" ", color=blue, arrowhead=dot]; + 330 -> "170E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "63E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "67E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "68E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "69E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "70E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "71E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "802E" [label=" ", color=blue, arrowhead=dot]; + 333 -> "793E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "64E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "81E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "82E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "83E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "84E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "85E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "86E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "87E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "88E" [label=" ", color=blue, arrowhead=dot]; + 334 -> "89E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "1E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "2E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "3E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "4E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "5E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "6E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "7E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "8E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "9E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "10E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "11E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "12E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "13E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "14E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "15E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "16E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "17E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "18E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "19E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "20E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "21E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "22E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "23E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "24E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "25E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "26E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "27E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "28E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "29E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "30E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "31E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "65E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "119E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "150E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "176E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "743E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "744E" [label=" ", color=blue, arrowhead=dot]; + 336 -> "764E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "120E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "121E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "122E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "123E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "124E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "125E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "126E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "127E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "128E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "129E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "130E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "131E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "132E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "133E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "134E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "135E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "136E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "137E" [label=" ", color=blue, arrowhead=dot]; + 337 -> "138E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "151E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "153E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "154E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "155E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "156E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "157E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "158E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "159E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "160E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "161E" [label=" ", color=blue, arrowhead=dot]; + 339 -> "162E" [label=" ", color=blue, arrowhead=dot]; + 347 -> "139E" [label=" ", color=blue, arrowhead=dot]; + 347 -> "795E" [label=" ", color=blue, arrowhead=dot]; + 348 -> "799E" [label=" ", color=blue, arrowhead=dot]; + 348 -> "800E" [label=" ", color=blue, arrowhead=dot]; + 349 -> "141E" [label=" ", color=blue, arrowhead=dot]; + 350 -> "142E" [label=" ", color=blue, arrowhead=dot]; + 350 -> "678E" [label=" ", color=blue, arrowhead=dot]; + 351 -> "143E" [label=" ", color=blue, arrowhead=dot]; + 351 -> "232E" [label=" ", color=blue, arrowhead=dot]; + 351 -> "680E" [label=" ", color=blue, arrowhead=dot]; + 351 -> "704E" [label=" ", color=blue, arrowhead=dot]; + 352 -> "144E" [label=" ", color=blue, arrowhead=dot]; + 352 -> "432E" [label=" ", color=blue, arrowhead=dot]; + 353 -> "145E" [label=" ", color=blue, arrowhead=dot]; + 354 -> "146E" [label=" ", color=blue, arrowhead=dot]; + 354 -> "396E" [label=" ", color=blue, arrowhead=dot]; + 355 -> "147E" [label=" ", color=blue, arrowhead=dot]; + 356 -> "148E" [label=" ", color=blue, arrowhead=dot]; + 357 -> "149E" [label=" ", color=blue, arrowhead=dot]; + 358 -> "167E" [label=" ", color=blue, arrowhead=dot]; + 359 -> "169E" [label=" ", color=blue, arrowhead=dot]; + 360 -> "171E" [label=" ", color=blue, arrowhead=dot]; + 361 -> "172E" [label=" ", color=blue, arrowhead=dot]; + 362 -> "173E" [label=" ", color=blue, arrowhead=dot]; + 363 -> "174E" [label=" ", color=blue, arrowhead=dot]; + 364 -> "101E" [label=" ", color=blue, arrowhead=dot]; + 365 -> "102E" [label=" ", color=blue, arrowhead=dot]; + 367 -> "104E" [label=" ", color=blue, arrowhead=dot]; + 368 -> "105E" [label=" ", color=blue, arrowhead=dot]; + 369 -> "106E" [label=" ", color=blue, arrowhead=dot]; + 374 -> "111E" [label=" ", color=blue, arrowhead=dot]; + 375 -> "112E" [label=" ", color=blue, arrowhead=dot]; + 377 -> "114E" [label=" ", color=blue, arrowhead=dot]; + 378 -> "115E" [label=" ", color=blue, arrowhead=dot]; + 380 -> "117E" [label=" ", color=blue, arrowhead=dot]; + 380 -> "392E" [label=" ", color=blue, arrowhead=dot]; + 381 -> "118E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "177E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "178E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "179E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "180E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "181E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "182E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "183E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "184E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "185E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "186E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "187E" [label=" ", color=blue, arrowhead=dot]; + 382 -> "188E" [label=" ", color=blue, arrowhead=dot]; + 383 -> "730E" [label=" ", color=blue, arrowhead=dot]; + 383 -> "732E" [label=" ", color=blue, arrowhead=dot]; + 383 -> "741E" [label=" ", color=blue, arrowhead=dot]; + 383 -> "765E" [label=" ", color=blue, arrowhead=dot]; + 383 -> "796E" [label=" ", color=blue, arrowhead=dot]; + 384 -> "726E" [label=" ", color=blue, arrowhead=dot]; + 384 -> "728E" [label=" ", color=blue, arrowhead=dot]; + 384 -> "742E" [label=" ", color=blue, arrowhead=dot]; + "1E" -> "34E" [color=purple, arrowhead=none]; + "2E" -> "35E" [color=purple, arrowhead=none]; + "3E" -> "36E" [color=purple, arrowhead=none]; + "4E" -> "37E" [color=purple, arrowhead=none]; + "5E" -> "38E" [color=purple, arrowhead=none]; + "6E" -> "39E" [color=purple, arrowhead=none]; + "7E" -> "40E" [color=purple, arrowhead=none]; + "9E" -> "41E" [color=purple, arrowhead=none]; + "10E" -> "42E" [color=purple, arrowhead=none]; + "11E" -> "43E" [color=purple, arrowhead=none]; + "12E" -> "44E" [color=purple, arrowhead=none]; + "13E" -> "45E" [color=purple, arrowhead=none]; + "14E" -> "46E" [color=purple, arrowhead=none]; + "15E" -> "47E" [color=purple, arrowhead=none]; + "16E" -> "48E" [color=purple, arrowhead=none]; + "49E" -> "17E" [color=purple, arrowhead=none]; + "18E" -> "50E" [color=purple, arrowhead=none]; + "19E" -> "51E" [color=purple, arrowhead=none]; + "20E" -> "52E" [color=purple, arrowhead=none]; + "21E" -> "53E" [color=purple, arrowhead=none]; + "22E" -> "54E" [color=purple, arrowhead=none]; + "23E" -> "55E" [color=purple, arrowhead=none]; + "24E" -> "56E" [color=purple, arrowhead=none]; + "25E" -> "57E" [color=purple, arrowhead=none]; + "26E" -> "58E" [color=purple, arrowhead=none]; + "27E" -> "59E" [color=purple, arrowhead=none]; + "28E" -> "60E" [color=purple, arrowhead=none]; + "29E" -> "61E" [color=purple, arrowhead=none]; + "30E" -> "62E" [color=purple, arrowhead=none]; + "31E" -> "63E" [color=purple, arrowhead=none]; + "64E" -> "65E" [color=purple, arrowhead=none]; + "66E" -> "8E" [color=purple, arrowhead=none]; + "71E" -> "76E" [color=purple, arrowhead=none]; + "67E" -> "72E" [color=purple, arrowhead=none]; + "68E" -> "73E" [color=purple, arrowhead=none]; + "69E" -> "74E" [color=purple, arrowhead=none]; + "70E" -> "75E" [color=purple, arrowhead=none]; + "81E" -> "92E" [color=purple, arrowhead=none]; + "82E" -> "93E" [color=purple, arrowhead=none]; + "83E" -> "94E" [color=purple, arrowhead=none]; + "84E" -> "95E" [color=purple, arrowhead=none]; + "85E" -> "96E" [color=purple, arrowhead=none]; + "86E" -> "97E" [color=purple, arrowhead=none]; + "87E" -> "98E" [color=purple, arrowhead=none]; + "88E" -> "99E" [color=purple, arrowhead=none]; + "89E" -> "100E" [color=purple, arrowhead=none]; + "101E" -> "120E" [color=purple, arrowhead=none]; + "102E" -> "121E" [color=purple, arrowhead=none]; + "103E" -> "122E" [color=purple, arrowhead=none]; + "104E" -> "123E" [color=purple, arrowhead=none]; + "105E" -> "124E" [color=purple, arrowhead=none]; + "106E" -> "125E" [color=purple, arrowhead=none]; + "107E" -> "126E" [color=purple, arrowhead=none]; + "108E" -> "127E" [color=purple, arrowhead=none]; + "109E" -> "128E" [color=purple, arrowhead=none]; + "110E" -> "129E" [color=purple, arrowhead=none]; + "111E" -> "130E" [color=purple, arrowhead=none]; + "112E" -> "131E" [color=purple, arrowhead=none]; + "113E" -> "132E" [color=purple, arrowhead=none]; + "114E" -> "133E" [color=purple, arrowhead=none]; + "115E" -> "134E" [color=purple, arrowhead=none]; + "116E" -> "135E" [color=purple, arrowhead=none]; + "117E" -> "136E" [color=purple, arrowhead=none]; + "118E" -> "137E" [color=purple, arrowhead=none]; + "119E" -> "138E" [color=purple, arrowhead=none]; + "139E" -> "151E" [color=purple, arrowhead=none]; + "141E" -> "153E" [color=purple, arrowhead=none]; + "142E" -> "154E" [color=purple, arrowhead=none]; + "143E" -> "155E" [color=purple, arrowhead=none]; + "144E" -> "156E" [color=purple, arrowhead=none]; + "145E" -> "157E" [color=purple, arrowhead=none]; + "146E" -> "158E" [color=purple, arrowhead=none]; + "147E" -> "159E" [color=purple, arrowhead=none]; + "148E" -> "160E" [color=purple, arrowhead=none]; + "149E" -> "161E" [color=purple, arrowhead=none]; + "150E" -> "162E" [color=purple, arrowhead=none]; + "165E" -> "177E" [color=purple, arrowhead=none]; + "166E" -> "178E" [color=purple, arrowhead=none]; + "167E" -> "179E" [color=purple, arrowhead=none]; + "168E" -> "180E" [color=purple, arrowhead=none]; + "169E" -> "181E" [color=purple, arrowhead=none]; + "170E" -> "182E" [color=purple, arrowhead=none]; + "171E" -> "183E" [color=purple, arrowhead=none]; + "172E" -> "184E" [color=purple, arrowhead=none]; + "173E" -> "185E" [color=purple, arrowhead=none]; + "174E" -> "186E" [color=purple, arrowhead=none]; + "175E" -> "187E" [color=purple, arrowhead=none]; + "176E" -> "188E" [color=purple, arrowhead=none]; + "189E" -> "190E" [color=purple, arrowhead=none]; + "191E" -> "192E" [color=purple, arrowhead=none]; + "193E" -> "194E" [color=purple, arrowhead=none]; + "195E" -> "196E" [color=purple, arrowhead=none]; + "197E" -> "198E" [color=purple, arrowhead=none]; + "199E" -> "200E" [color=purple, arrowhead=none]; + "201E" -> "202E" [color=purple, arrowhead=none]; + "203E" -> "204E" [color=purple, arrowhead=none]; + "205E" -> "206E" [color=purple, arrowhead=none]; + "207E" -> "208E" [color=purple, arrowhead=none]; + "209E" -> "210E" [color=purple, arrowhead=none]; + "412E" -> "211E" [color=purple, arrowhead=none]; + "214E" -> "213E" [color=purple, arrowhead=none]; + "216E" -> "215E" [color=purple, arrowhead=none]; + "217E" -> "218E" [color=purple, arrowhead=none]; + "219E" -> "220E" [color=purple, arrowhead=none]; + "221E" -> "222E" [color=purple, arrowhead=none]; + "223E" -> "224E" [color=purple, arrowhead=none]; + "225E" -> "226E" [color=purple, arrowhead=none]; + "227E" -> "228E" [color=purple, arrowhead=none]; + "231E" -> "232E" [color=purple, arrowhead=none]; + "233E" -> "234E" [color=purple, arrowhead=none]; + "236E" -> "235E" [color=purple, arrowhead=none]; + "237E" -> "238E" [color=purple, arrowhead=none]; + "239E" -> "240E" [color=purple, arrowhead=none]; + "241E" -> "242E" [color=purple, arrowhead=none]; + "243E" -> "244E" [color=purple, arrowhead=none]; + "245E" -> "246E" [color=purple, arrowhead=none]; + "247E" -> "248E" [color=purple, arrowhead=none]; + "249E" -> "250E" [color=purple, arrowhead=none]; + "251E" -> "252E" [color=purple, arrowhead=none]; + "253E" -> "254E" [color=purple, arrowhead=none]; + "255E" -> "256E" [color=purple, arrowhead=none]; + "257E" -> "258E" [color=purple, arrowhead=none]; + "259E" -> "260E" [color=purple, arrowhead=none]; + "261E" -> "262E" [color=purple, arrowhead=none]; + "263E" -> "264E" [color=purple, arrowhead=none]; + "265E" -> "266E" [color=purple, arrowhead=none]; + "267E" -> "268E" [color=purple, arrowhead=none]; + "269E" -> "270E" [color=purple, arrowhead=none]; + "271E" -> "272E" [color=purple, arrowhead=none]; + "273E" -> "274E" [color=purple, arrowhead=none]; + "275E" -> "276E" [color=purple, arrowhead=none]; + "278E" -> "277E" [color=purple, arrowhead=none]; + "279E" -> "767E" [color=purple, arrowhead=none]; + "281E" -> "282E" [color=purple, arrowhead=none]; + "283E" -> "284E" [color=purple, arrowhead=none]; + "285E" -> "286E" [color=purple, arrowhead=none]; + "768E" -> "287E" [color=purple, arrowhead=none]; + "289E" -> "290E" [color=purple, arrowhead=none]; + "291E" -> "292E" [color=purple, arrowhead=none]; + "293E" -> "294E" [color=purple, arrowhead=none]; + "295E" -> "296E" [color=purple, arrowhead=none]; + "297E" -> "298E" [color=purple, arrowhead=none]; + "299E" -> "300E" [color=purple, arrowhead=none]; + "301E" -> "302E" [color=purple, arrowhead=none]; + "303E" -> "304E" [color=purple, arrowhead=none]; + "305E" -> "306E" [color=purple, arrowhead=none]; + "307E" -> "308E" [color=purple, arrowhead=none]; + "309E" -> "310E" [color=purple, arrowhead=none]; + "311E" -> "312E" [color=purple, arrowhead=none]; + "313E" -> "314E" [color=purple, arrowhead=none]; + "315E" -> "316E" [color=purple, arrowhead=none]; + "317E" -> "318E" [color=purple, arrowhead=none]; + "319E" -> "320E" [color=purple, arrowhead=none]; + "321E" -> "322E" [color=purple, arrowhead=none]; + "327E" -> "800E" [color=purple, arrowhead=none]; + "329E" -> "330E" [color=purple, arrowhead=none]; + "331E" -> "332E" [color=purple, arrowhead=none]; + "333E" -> "334E" [color=purple, arrowhead=none]; + "335E" -> "336E" [color=purple, arrowhead=none]; + "337E" -> "338E" [color=purple, arrowhead=none]; + "339E" -> "340E" [color=purple, arrowhead=none]; + "341E" -> "342E" [color=purple, arrowhead=none]; + "343E" -> "344E" [color=purple, arrowhead=none]; + "345E" -> "346E" [color=purple, arrowhead=none]; + "347E" -> "348E" [color=purple, arrowhead=none]; + "349E" -> "350E" [color=purple, arrowhead=none]; + "351E" -> "352E" [color=purple, arrowhead=none]; + "353E" -> "354E" [color=purple, arrowhead=none]; + "412E" -> "355E" [color=purple, arrowhead=none]; + "357E" -> "358E" [color=purple, arrowhead=none]; + "359E" -> "360E" [color=purple, arrowhead=none]; + "361E" -> "362E" [color=purple, arrowhead=none]; + "363E" -> "364E" [color=purple, arrowhead=none]; + "365E" -> "366E" [color=purple, arrowhead=none]; + "367E" -> "368E" [color=purple, arrowhead=none]; + "369E" -> "370E" [color=purple, arrowhead=none]; + "371E" -> "372E" [color=purple, arrowhead=none]; + "373E" -> "374E" [color=purple, arrowhead=none]; + "375E" -> "376E" [color=purple, arrowhead=none]; + "377E" -> "378E" [color=purple, arrowhead=none]; + "379E" -> "380E" [color=purple, arrowhead=none]; + "381E" -> "382E" [color=purple, arrowhead=none]; + "383E" -> "384E" [color=purple, arrowhead=none]; + "385E" -> "386E" [color=purple, arrowhead=none]; + "387E" -> "388E" [color=purple, arrowhead=none]; + "389E" -> "390E" [color=purple, arrowhead=none]; + "391E" -> "392E" [color=purple, arrowhead=none]; + "393E" -> "394E" [color=purple, arrowhead=none]; + "395E" -> "396E" [color=purple, arrowhead=none]; + "397E" -> "398E" [color=purple, arrowhead=none]; + "399E" -> "400E" [color=purple, arrowhead=none]; + "402E" -> "401E" [color=purple, arrowhead=none]; + "404E" -> "403E" [color=purple, arrowhead=none]; + "406E" -> "405E" [color=purple, arrowhead=none]; + "408E" -> "407E" [color=purple, arrowhead=none]; + "236E" -> "409E" [color=purple, arrowhead=none]; + "412E" -> "411E" [color=purple, arrowhead=none]; + "412E" -> "413E" [color=purple, arrowhead=none]; + "278E" -> "415E" [color=purple, arrowhead=none]; + "417E" -> "418E" [color=purple, arrowhead=none]; + "419E" -> "420E" [color=purple, arrowhead=none]; + "421E" -> "422E" [color=purple, arrowhead=none]; + "423E" -> "424E" [color=purple, arrowhead=none]; + "425E" -> "426E" [color=purple, arrowhead=none]; + "427E" -> "428E" [color=purple, arrowhead=none]; + "431E" -> "432E" [color=purple, arrowhead=none]; + "433E" -> "434E" [color=purple, arrowhead=none]; + "435E" -> "436E" [color=purple, arrowhead=none]; + "438E" -> "437E" [color=purple, arrowhead=none]; + "439E" -> "440E" [color=purple, arrowhead=none]; + "441E" -> "442E" [color=purple, arrowhead=none]; + "443E" -> "444E" [color=purple, arrowhead=none]; + "445E" -> "446E" [color=purple, arrowhead=none]; + "448E" -> "447E" [color=purple, arrowhead=none]; + "449E" -> "450E" [color=purple, arrowhead=none]; + "451E" -> "452E" [color=purple, arrowhead=none]; + "453E" -> "454E" [color=purple, arrowhead=none]; + "455E" -> "456E" [color=purple, arrowhead=none]; + "457E" -> "458E" [color=purple, arrowhead=none]; + "459E" -> "460E" [color=purple, arrowhead=none]; + "461E" -> "462E" [color=purple, arrowhead=none]; + "236E" -> "463E" [color=purple, arrowhead=none]; + "465E" -> "466E" [color=purple, arrowhead=none]; + "467E" -> "468E" [color=purple, arrowhead=none]; + "469E" -> "470E" [color=purple, arrowhead=none]; + "471E" -> "472E" [color=purple, arrowhead=none]; + "473E" -> "474E" [color=purple, arrowhead=none]; + "476E" -> "475E" [color=purple, arrowhead=none]; + "477E" -> "478E" [color=purple, arrowhead=none]; + "479E" -> "358E" [color=purple, arrowhead=none]; + "481E" -> "482E" [color=purple, arrowhead=none]; + "483E" -> "484E" [color=purple, arrowhead=none]; + "485E" -> "486E" [color=purple, arrowhead=none]; + "487E" -> "488E" [color=purple, arrowhead=none]; + "489E" -> "490E" [color=purple, arrowhead=none]; + "491E" -> "492E" [color=purple, arrowhead=none]; + "495E" -> "795E" [color=purple, arrowhead=none]; + "499E" -> "500E" [color=purple, arrowhead=none]; + "501E" -> "502E" [color=purple, arrowhead=none]; + "504E" -> "503E" [color=purple, arrowhead=none]; + "505E" -> "506E" [color=purple, arrowhead=none]; + "507E" -> "508E" [color=purple, arrowhead=none]; + "509E" -> "510E" [color=purple, arrowhead=none]; + "412E" -> "511E" [color=purple, arrowhead=none]; + "513E" -> "514E" [color=purple, arrowhead=none]; + "515E" -> "516E" [color=purple, arrowhead=none]; + "517E" -> "518E" [color=purple, arrowhead=none]; + "519E" -> "520E" [color=purple, arrowhead=none]; + "521E" -> "522E" [color=purple, arrowhead=none]; + "523E" -> "524E" [color=purple, arrowhead=none]; + "525E" -> "526E" [color=purple, arrowhead=none]; + "527E" -> "528E" [color=purple, arrowhead=none]; + "529E" -> "530E" [color=purple, arrowhead=none]; + "531E" -> "532E" [color=purple, arrowhead=none]; + "533E" -> "534E" [color=purple, arrowhead=none]; + "535E" -> "536E" [color=purple, arrowhead=none]; + "537E" -> "538E" [color=purple, arrowhead=none]; + "539E" -> "540E" [color=purple, arrowhead=none]; + "541E" -> "542E" [color=purple, arrowhead=none]; + "543E" -> "544E" [color=purple, arrowhead=none]; + "545E" -> "546E" [color=purple, arrowhead=none]; + "547E" -> "548E" [color=purple, arrowhead=none]; + "549E" -> "550E" [color=purple, arrowhead=none]; + "551E" -> "552E" [color=purple, arrowhead=none]; + "553E" -> "554E" [color=purple, arrowhead=none]; + "555E" -> "556E" [color=purple, arrowhead=none]; + "557E" -> "558E" [color=purple, arrowhead=none]; + "278E" -> "559E" [color=purple, arrowhead=none]; + "561E" -> "562E" [color=purple, arrowhead=none]; + "563E" -> "564E" [color=purple, arrowhead=none]; + "565E" -> "566E" [color=purple, arrowhead=none]; + "567E" -> "568E" [color=purple, arrowhead=none]; + "569E" -> "570E" [color=purple, arrowhead=none]; + "571E" -> "572E" [color=purple, arrowhead=none]; + "573E" -> "574E" [color=purple, arrowhead=none]; + "575E" -> "576E" [color=purple, arrowhead=none]; + "577E" -> "578E" [color=purple, arrowhead=none]; + "579E" -> "580E" [color=purple, arrowhead=none]; + "581E" -> "582E" [color=purple, arrowhead=none]; + "583E" -> "584E" [color=purple, arrowhead=none]; + "585E" -> "586E" [color=purple, arrowhead=none]; + "587E" -> "588E" [color=purple, arrowhead=none]; + "589E" -> "590E" [color=purple, arrowhead=none]; + "597E" -> "598E" [color=purple, arrowhead=none]; + "599E" -> "600E" [color=purple, arrowhead=none]; + "601E" -> "602E" [color=purple, arrowhead=none]; + "603E" -> "604E" [color=purple, arrowhead=none]; + "605E" -> "606E" [color=purple, arrowhead=none]; + "607E" -> "608E" [color=purple, arrowhead=none]; + "609E" -> "610E" [color=purple, arrowhead=none]; + "611E" -> "612E" [color=purple, arrowhead=none]; + "613E" -> "614E" [color=purple, arrowhead=none]; + "615E" -> "358E" [color=purple, arrowhead=none]; + "617E" -> "618E" [color=purple, arrowhead=none]; + "619E" -> "620E" [color=purple, arrowhead=none]; + "623E" -> "624E" [color=purple, arrowhead=none]; + "625E" -> "626E" [color=purple, arrowhead=none]; + "627E" -> "628E" [color=purple, arrowhead=none]; + "629E" -> "630E" [color=purple, arrowhead=none]; + "631E" -> "632E" [color=purple, arrowhead=none]; + "634E" -> "633E" [color=purple, arrowhead=none]; + "635E" -> "636E" [color=purple, arrowhead=none]; + "637E" -> "638E" [color=purple, arrowhead=none]; + "639E" -> "640E" [color=purple, arrowhead=none]; + "641E" -> "642E" [color=purple, arrowhead=none]; + "643E" -> "644E" [color=purple, arrowhead=none]; + "645E" -> "646E" [color=purple, arrowhead=none]; + "647E" -> "648E" [color=purple, arrowhead=none]; + "649E" -> "650E" [color=purple, arrowhead=none]; + "651E" -> "652E" [color=purple, arrowhead=none]; + "653E" -> "654E" [color=purple, arrowhead=none]; + "655E" -> "656E" [color=purple, arrowhead=none]; + "657E" -> "658E" [color=purple, arrowhead=none]; + "659E" -> "660E" [color=purple, arrowhead=none]; + "661E" -> "662E" [color=purple, arrowhead=none]; + "663E" -> "664E" [color=purple, arrowhead=none]; + "665E" -> "666E" [color=purple, arrowhead=none]; + "667E" -> "668E" [color=purple, arrowhead=none]; + "669E" -> "670E" [color=purple, arrowhead=none]; + "671E" -> "672E" [color=purple, arrowhead=none]; + "673E" -> "674E" [color=purple, arrowhead=none]; + "675E" -> "676E" [color=purple, arrowhead=none]; + "679E" -> "680E" [color=purple, arrowhead=none]; + "681E" -> "682E" [color=purple, arrowhead=none]; + "683E" -> "684E" [color=purple, arrowhead=none]; + "685E" -> "686E" [color=purple, arrowhead=none]; + "687E" -> "688E" [color=purple, arrowhead=none]; + "689E" -> "690E" [color=purple, arrowhead=none]; + "691E" -> "692E" [color=purple, arrowhead=none]; + "693E" -> "694E" [color=purple, arrowhead=none]; + "695E" -> "696E" [color=purple, arrowhead=none]; + "697E" -> "698E" [color=purple, arrowhead=none]; + "699E" -> "700E" [color=purple, arrowhead=none]; + "703E" -> "704E" [color=purple, arrowhead=none]; + "705E" -> "706E" [color=purple, arrowhead=none]; + "709E" -> "710E" [color=purple, arrowhead=none]; + "711E" -> "712E" [color=purple, arrowhead=none]; + "713E" -> "714E" [color=purple, arrowhead=none]; + "715E" -> "398E" [color=purple, arrowhead=none]; + "717E" -> "718E" [color=purple, arrowhead=none]; + "719E" -> "720E" [color=purple, arrowhead=none]; + "721E" -> "722E" [color=purple, arrowhead=none]; + "725E" -> "726E" [color=purple, arrowhead=none]; + "727E" -> "728E" [color=purple, arrowhead=none]; + "729E" -> "730E" [color=purple, arrowhead=none]; + "731E" -> "732E" [color=purple, arrowhead=none]; + "741E" -> "743E" [color=purple, arrowhead=none]; + "742E" -> "744E" [color=purple, arrowhead=none]; + "763E" -> "764E" [color=purple, arrowhead=none]; + "765E" -> "766E" [color=purple, arrowhead=none]; + "770E" -> "783E" [color=purple, arrowhead=none]; + "770E" -> "784E" [color=purple, arrowhead=none]; + "769E" -> "785E" [color=purple, arrowhead=none]; + "769E" -> "786E" [color=purple, arrowhead=none]; + "769E" -> "787E" [color=purple, arrowhead=none]; + "770E" -> "788E" [color=purple, arrowhead=none]; + "770E" -> "789E" [color=purple, arrowhead=none]; + "769E" -> "790E" [color=purple, arrowhead=none]; + "770E" -> "791E" [color=purple, arrowhead=none]; + "769E" -> "792E" [color=purple, arrowhead=none]; + "793E" -> "769E" [color=purple, arrowhead=none]; + "769E" -> "784E" [color=purple, arrowhead=none]; + "770E" -> "785E" [color=purple, arrowhead=none]; + "788E" -> "787E" [color=purple, arrowhead=none]; + "770E" -> "792E" [color=purple, arrowhead=none]; + "798E" -> "799E" [color=purple, arrowhead=none]; + "796E" -> "797E" [color=purple, arrowhead=none]; + "793E" -> "789E" [color=purple, arrowhead=none]; + "783E" -> "787E" [color=purple, arrowhead=none]; + "784E" -> "792E" [color=purple, arrowhead=none]; + "787E" -> "789E" [color=purple, arrowhead=none]; + "769E" -> "791E" [color=purple, arrowhead=none]; + "802E" -> "801E" [color=purple, arrowhead=none]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/sdh.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/sdh.gv.txt new file mode 100644 index 00000000..be2199c1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/sdh.gv.txt @@ -0,0 +1,32 @@ +##"I made a program to generate dot files representing the LR(0) state graph along with computed LALR(1) lookahead for an arbitrary context-free grammar, to make the diagrams I used in this article: http://blog.lab49.com/archives/2471. The program also highlights errant nodes in red if the grammar would produce a shift/reduce or reduce/reduce conflict -- you may be able to go to http://kthielen.dnsalias.com:8082/ to produce a graph more to your liking". Contributed by Kalani Thielen. + +##Command to get the layout: "dot -Gsize=10,15 -Tpng thisfile > thisfile.png" + +digraph g { + graph [fontsize=30 labelloc="t" label="" splines=true overlap=false rankdir = "LR"]; + ratio = auto; + "state0" [ style = "filled, bold" penwidth = 5 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #0
    (0) s -> •e $
    (1) e -> •l '=' r
    (2) e -> •r
    (3) l -> •'*' r
    (4) l -> •'n'
    (5) r -> •l
    > ]; + "state1" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #1
    (3) l -> •'*' r
    (3) l -> '*' •r
    (4) l -> •'n'
    (5) r -> •l
    > ]; + "state2" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #2
    (4) l -> 'n' •=$
    > ]; + "state3" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #3
    (5) r -> l •=$
    > ]; + "state4" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #4
    (3) l -> '*' r •=$
    > ]; + "state5" [ style = "filled" penwidth = 1 fillcolor = "black" fontname = "Courier New" shape = "Mrecord" label =<
    State #5
    (0) s -> e •$
    > ]; + "state6" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #6
    (1) e -> l •'=' r
    (5) r -> l •$
    > ]; + "state7" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #7
    (1) e -> l '=' •r
    (3) l -> •'*' r
    (4) l -> •'n'
    (5) r -> •l
    > ]; + "state8" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #8
    (1) e -> l '=' r •$
    > ]; + "state9" [ style = "filled" penwidth = 1 fillcolor = "white" fontname = "Courier New" shape = "Mrecord" label =<
    State #9
    (2) e -> r •$
    > ]; + state0 -> state5 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "e" ]; + state0 -> state6 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "l" ]; + state0 -> state9 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "r" ]; + state0 -> state1 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'*'" ]; + state0 -> state2 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'n'" ]; + state1 -> state1 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'*'" ]; + state1 -> state4 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "r" ]; + state1 -> state2 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'n'" ]; + state1 -> state3 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "l" ]; + state6 -> state7 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'='" ]; + state7 -> state8 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "r" ]; + state7 -> state1 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'*'" ]; + state7 -> state2 [ penwidth = 1 fontsize = 14 fontcolor = "grey28" label = "'n'" ]; + state7 -> state3 [ penwidth = 5 fontsize = 28 fontcolor = "black" label = "l" ]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/siblings.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/siblings.gv.txt new file mode 100644 index 00000000..81141217 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/siblings.gv.txt @@ -0,0 +1,512 @@ +/* +This is a graphviz-produced layout of the "family tree" of a fraternity and sorority. + +Each member in the graph was assigned a "big brother" from one organization and a "big sister" from the other. Blue icons represent Brothers from the fraternity, Pink represents Sisters from the sorority (Purple members are in both organizations - like honoraries.) + +Charter members (who can have no parent nodes) are outlined. + +... + +dot -Tgif -Goverlap=false -o siblings.gif siblings.dot + + +We're experimenting with different ways of coloring and graphing, but found this the easiest for now. When we have more people in, we might look at different shades depending on generation number -- earlier people would get lighter colors, more recent members darker. Thumbnail images would be an interesting alteration as well. + +from Japheth Cleaver +*/ + + +digraph sdsu { + size="36,36"; + node [color=grey, style=filled]; + node [fontname="Verdana", size="30,30"]; + graph [ fontname = "Arial", + fontsize = 36, + style = "bold", + label = "\nKappa Kappa Psi/Tau Beta Sigma\nSan Diego State University\nEta Mu and Zeta Xi Family Tree\n\nto date: November 30th, 2008\n", + ssize = "30,60" ]; +"Lori Brede" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=10"]; +"Michael Griffith" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=24"]; +"Amie Holston" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=30"]; +"Michael Griffith" -> "Lori Brede" +"Amie Holston" -> "Lori Brede" +"Casey Carter" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=11"]; +"Laura De'Armond" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=14"]; +"Laura De'Armond" -> "Casey Carter" +"Japheth Cleaver" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=12"]; +"Chuk Gawlik" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=22"]; +"Stacy Snyder" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=309"]; +"Chuk Gawlik" -> "Japheth Cleaver" +"Stacy Snyder" -> "Japheth Cleaver" +"Jillian Clifton" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=13"]; +"David Guthrie" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=25"]; +"David Guthrie" -> "Jillian Clifton" +"Japheth Cleaver" -> "Jillian Clifton" +"Tony Sacco" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=55"]; +"Heather Smith" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=59"]; +"Tony Sacco" -> "Laura De'Armond" +"Heather Smith" -> "Laura De'Armond" +"Kevin Decker" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=15"]; +"Alex Hansen" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=26"]; +"Wanda Livelsberger" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=53"]; +"Alex Hansen" -> "Kevin Decker" +"Wanda Livelsberger" -> "Kevin Decker" +"Patrick Doerr" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=16"]; +"Deanna Jagow" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=23"]; +"Alex Hansen" -> "Patrick Doerr" +"Deanna Jagow" -> "Patrick Doerr" +"Lori Asaro" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=178"]; +"Mark Pearson" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=169"]; +"Lori Ball" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=167"]; +"Mark Pearson" -> "Lori Asaro" +"Lori Ball" -> "Lori Asaro" +"Ryan Farris" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=18"]; +"Rob Reiner" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=51"]; +"Cindy Teel" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=62"]; +"Rob Reiner" -> "Ryan Farris" +"Cindy Teel" -> "Ryan Farris" +"Ginger Palmer" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=180"]; +"Mark Newton-John" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=46"]; +"Mark Newton-John" -> "Ginger Palmer" +"Matthew FitzGerald" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=19"]; +"Mervin Maniago" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=41"]; +"Mervin Maniago" -> "Matthew FitzGerald" +"Amie Holston" -> "Matthew FitzGerald" +"Tani Miller" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=195"]; +"Mark Pearson" -> "Tani Miller" +"Vienna McMurtry" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=196"]; +"Robert Walwick" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=153"]; +"Robert Walwick" -> "Vienna McMurtry" +"Ginger Palmer" -> "Vienna McMurtry" +"Chuck Foster" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=20"]; +"Karen Saye" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=56"]; +"Kevin Decker" -> "Chuck Foster" +"Karen Saye" -> "Chuck Foster" +"Gary Frampton" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=201"]; +"Ginger Palmer" -> "Gary Frampton" +"Pat Norris" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=207"]; +"Sean Tipps" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=204"]; +"Teresa Long" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=194"]; +"Sean Tipps" -> "Pat Norris" +"Teresa Long" -> "Pat Norris" +"Marc Martin-ez" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=208"]; +"Mark Pearson" -> "Marc Martin-ez" +"Tani Miller" -> "Marc Martin-ez" +"Kristen Villone" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=209"]; +"Kelly Erickson" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=199"]; +"Anna Pedroza" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=197"]; +"Kelly Erickson" -> "Kristen Villone" +"Anna Pedroza" -> "Kristen Villone" +"Geoff Frank" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=21"]; +"Chris Livelsberger" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=40"]; +"Amy Price" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=57"]; +"Chris Livelsberger" -> "Geoff Frank" +"Amy Price" -> "Geoff Frank" +"Tracy Murray" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=210"]; +"John FitzGibbon" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=92"]; +"Judy Dulcich" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=177"]; +"John FitzGibbon" -> "Tracy Murray" +"Judy Dulcich" -> "Tracy Murray" +"Ian McIntosh" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=215"]; +"Barbara Tollison" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=172"]; +"Robert Walwick" -> "Ian McIntosh" +"Barbara Tollison" -> "Ian McIntosh" +"Jayson Smith" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=58"]; +"Jayson Smith" -> "Chuk Gawlik" +"Heather Smith" -> "Chuk Gawlik" +"Kelly McKinney" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=222"]; +"Mark Nadeau" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=183"]; +"Mark Nadeau" -> "Kelly McKinney" +"Judy Dulcich" -> "Kelly McKinney" +"Chris Livelsberger" -> "Deanna Jagow" +"Amy Price" -> "Deanna Jagow" +"Renee Thompson" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=231"]; +"J. Angeles" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=3"]; +"Kelley Smith" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=223"]; +"J. Angeles" -> "Renee Thompson" +"Kelley Smith" -> "Renee Thompson" +"Steven Smith" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=233"]; +"John FitzGibbon" -> "Steven Smith" +"Charlene Andrews" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=234"]; +"Diane Reoch" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=227"]; +"Diane Reoch" -> "Charlene Andrews" +"Tonya Alexander" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=238"]; +"Gail Vasquez" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=225"]; +"Gail Vasquez" -> "Tonya Alexander" +"Spencer Caldwell" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=239"]; +"Becky Bernal" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=218"]; +"Becky Bernal" -> "Spencer Caldwell" +"Chuk Gawlik" -> "Michael Griffith" +"Wanda Livelsberger" -> "Michael Griffith" +"Russell Grant" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=242"]; +"Steven Smith" -> "Russell Grant" +"Tiffany Worthington" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=66"]; +"Chuck Foster" -> "David Guthrie" +"Tiffany Worthington" -> "David Guthrie" +"Jerry Maya" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=250"]; +"John FitzGibbon" -> "Jerry Maya" +"Melissa Schwartz" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=252"]; +"Russell Grant" -> "Melissa Schwartz" +"Delphy Shaulis" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=255"]; +"Renee Thompson" -> "Delphy Shaulis" +"Martin Naiman" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=45"]; +"Janean Angeles" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=86"]; +"Martin Naiman" -> "Alex Hansen" +"Janean Angeles" -> "Alex Hansen" +"Leslie Harlow" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=265"]; +"Dennis McColl" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=251"]; +"Denise Luna" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=236"]; +"Dennis McColl" -> "Leslie Harlow" +"Denise Luna" -> "Leslie Harlow" +"Jonathan Yudman" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=267"]; +"April Ortiz-cloninger" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=258"]; +"April Ortiz-cloninger" -> "Jonathan Yudman" +"Michael Elgo" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=268"]; +"Carol Kropp" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=254"]; +"Spencer Caldwell" -> "Michael Elgo" +"Carol Kropp" -> "Michael Elgo" +"Denmark Vea" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=269"]; +"Marc Martin-ez" -> "Denmark Vea" +"Kelley Smith" -> "Denmark Vea" +"Kathleen Hansen" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=27"]; +"Martin Naiman" -> "Kathleen Hansen" +"Heather Smith" -> "Kathleen Hansen" +"Laura Stegner" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=274"]; +"April Ortiz-cloninger" -> "Laura Stegner" +"Kathy Jones" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=28"]; +"J. Angeles" -> "Kathy Jones" +"Eric Gates" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=282"]; +"Erick Sugimura" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=280"]; +"Erick Sugimura" -> "Eric Gates" +"Laura Stegner" -> "Eric Gates" +"Jennifer Stoewe" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=288"]; +"Eric Gates" -> "Jennifer Stoewe" +"Karen Helbling" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=29"]; +"Regan Ashker" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=5"]; +"Kevin Decker" -> "Karen Helbling" +"Regan Ashker" -> "Karen Helbling" +"Scott Wood" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=295"]; +"Eric Gates" -> "Scott Wood" +"Greg Flood" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=200"]; +"Greg Flood" -> "J. Angeles" +"Ginger Palmer" -> "J. Angeles" +"Lynn Reeves" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=48"]; +"Chuk Gawlik" -> "Amie Holston" +"Lynn Reeves" -> "Amie Holston" +"Susan Colwell" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=302"]; +"Michael Elgo" -> "Susan Colwell" +"Christopher Jouan" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=306"]; +"Kevin Owens" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=245"]; +"Kevin Owens" -> "Christopher Jouan" +"Kristianna Reynante" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=308"]; +"Michael Elgo" -> "Kristianna Reynante" +"Janean Angeles" -> "Kristianna Reynante" +"Amy Berner" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=300"]; +"Amy Berner" -> "Stacy Snyder" +"Deanna Johnson" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=31"]; +"Alex Hansen" -> "Deanna Johnson" +"Laura De'Armond" -> "Deanna Johnson" +"Johnny Richardson" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=310"]; +"Russell Grant" -> "Johnny Richardson" +"Nathan Fellhauer" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=313"]; +"James Rowland" [color=thistle, URL="http://sdsu.kkytbs.net/members/profile.html?who=52"]; +"James Rowland" -> "Nathan Fellhauer" +"Kristianna Reynante" -> "Nathan Fellhauer" +"Brian Raneses" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=314"]; +"Sean McHenry" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=42"]; +"Sean McHenry" -> "Brian Raneses" +"Penny Lewis" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=315"]; +"Martin Naiman" -> "Penny Lewis" +"Becky Graham" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=316"]; +"Kristen Elgo" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=7"]; +"Kristen Elgo" -> "Becky Graham" +"Steven Gross" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=318"]; +"Rob Reiner" -> "Steven Gross" +"Stacy Snyder" -> "Steven Gross" +"Sedona Reynolds" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=32"]; +"Mark Newton-John" -> "Sedona Reynolds" +"Cindy Teel" -> "Sedona Reynolds" +"Klair Mayerchak" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=320"]; +"Nathan Fellhauer" -> "Klair Mayerchak" +"Becky Graham" -> "Klair Mayerchak" +"Shari VerBerkmoes" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=321"]; +"Sean McHenry" -> "Shari VerBerkmoes" +"Janean Angeles" -> "Shari VerBerkmoes" +"Anson Summers" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=326"]; +"James Rowland" -> "Anson Summers" +"Dusty Jolliff" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=33"]; +"Rob Reiner" -> "Dusty Jolliff" +"Stacy Snyder" -> "Dusty Jolliff" +"Jennifer Garman" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=331"]; +"James Rowland" -> "Jennifer Garman" +"Kelly Greenhill" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=333"]; +"Rob Reiner" -> "Kelly Greenhill" +"Kristen Elgo" -> "Kelly Greenhill" +"Lucinda Farless" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=334"]; +"J. Angeles" -> "Lucinda Farless" +"Susan Colwell" -> "Lucinda Farless" +"Alfredo Cardenas" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=335"]; +"Chuk Gawlik" -> "Alfredo Cardenas" +"Kathleen Hansen" -> "Alfredo Cardenas" +"Jennifer Jouan" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=34"]; +"Andrea Owens" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=276"]; +"Andrea Owens" -> "Jennifer Jouan" +"Tamara Scrivner" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=345"]; +"Joseph Butler" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=69"]; +"Sarah Maltese" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=83"]; +"Joseph Butler" -> "Tamara Scrivner" +"Sarah Maltese" -> "Tamara Scrivner" +"Bradley Stouse" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=346"]; +"Ryan Underwood" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=74"]; +"Ryan Underwood" -> "Bradley Stouse" +"Cindy Teel" -> "Bradley Stouse" +"Casondra Brimmage" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=347"]; +"Kristopher Lininger" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=85"]; +"Ilana Melcher" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=73"]; +"Kristopher Lininger" -> "Casondra Brimmage" +"Ilana Melcher" -> "Casondra Brimmage" +"Cassiopeia Guthrie" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=348"]; +"Jeremy Frazier" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=79"]; +"Christine Mount" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=76"]; +"Jeremy Frazier" -> "Cassiopeia Guthrie" +"Christine Mount" -> "Cassiopeia Guthrie" +"Kathleen Moran" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=349"]; +"Matthew FitzGerald" -> "Kathleen Moran" +"Lori Brede" -> "Kathleen Moran" +"Tiffany Kalland" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=35"]; +"Tony Sacco" -> "Tiffany Kalland" +"Karen Helbling" -> "Tiffany Kalland" +"Kristen Anderson" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=350"]; +"Jennie Bogart" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=78"]; +"David Guthrie" -> "Kristen Anderson" +"Jennie Bogart" -> "Kristen Anderson" +"Laura Simonette" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=351"]; +"Jon Weisel" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=89"]; +"Jon Weisel" -> "Laura Simonette" +"Japheth Cleaver" -> "Laura Simonette" +"Nathan Williams" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=352"]; +"David Guthrie" -> "Nathan Williams" +"Karen Helbling" -> "Nathan Williams" +"Rebecca Hippert" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=353"]; +"Ryan Underwood" -> "Rebecca Hippert" +"Tiffany Kalland" -> "Rebecca Hippert" +"Samuel Wallace" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=354"]; +"Joseph Butler" -> "Samuel Wallace" +"Deanna Jagow" -> "Samuel Wallace" +"Scott Gardner" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=355"]; +"Jeremy Frazier" -> "Scott Gardner" +"Christine Mount" -> "Scott Gardner" +"Alberto Ayon" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=356"]; +"Bradley Stouse" -> "Alberto Ayon" +"Jennie Bogart" -> "Alberto Ayon" +"Susannah Clayton" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=357"]; +"Nathan Williams" -> "Susannah Clayton" +"Karen Helbling" -> "Susannah Clayton" +"Lisa Gochnauer" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=358"]; +"Scott Gardner" -> "Lisa Gochnauer" +"Casondra Brimmage" -> "Lisa Gochnauer" +"Jamie Jackson" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=359"]; +"Samuel Wallace" -> "Jamie Jackson" +"Tamara Scrivner" -> "Jamie Jackson" +"Christina Kelly" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=36"]; +"Matthew FitzGerald" -> "Christina Kelly" +"Lori Brede" -> "Christina Kelly" +"Gara Thornton" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=360"]; +"Mark Newton-John" -> "Gara Thornton" +"Laura Simonette" -> "Gara Thornton" +"Robert Winebarger" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=361"]; +"Robin Ellison" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=90"]; +"Scott Gardner" -> "Robert Winebarger" +"Robin Ellison" -> "Robert Winebarger" +"Jeremy Kirchner" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=37"]; +"Rob Reiner" -> "Jeremy Kirchner" +"Sandy Konar" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=38"]; +"Jennifer Brandon" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=9"]; +"Jennifer Brandon" -> "Sandy Konar" +"Dan Kuhlman" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=39"]; +"Rob Reiner" -> "Dan Kuhlman" +"Dusty Jolliff" -> "Dan Kuhlman" +"Lindsay Arehart" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=4"]; +"Martin Naiman" -> "Lindsay Arehart" +"Jennifer Brandon" -> "Lindsay Arehart" +"J. Angeles" -> "Mervin Maniago" +"Kathy Jones" -> "Mervin Maniago" +"Jarrod Monroe" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=43"]; +"Jamie Fratacci" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=44"]; +"Mark Newton-John" -> "Jarrod Monroe" +"Jamie Fratacci" -> "Jarrod Monroe" +"Chuk Gawlik" -> "Jamie Fratacci" +"Tiffany Worthington" -> "Jamie Fratacci" +"Russell Grant" -> "Martin Naiman" +"Tonya Alexander" -> "Martin Naiman" +"Edward Givens" [color=lightblue, outline=bold, style=bold, URL="http://sdsu.kkytbs.net/members/profile.html?who=106"]; +"Edward Givens" -> "Mark Newton-John" +"Veronica Nickel" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=47"]; +"Regan Ashker" -> "Veronica Nickel" +"Wanda Livelsberger" -> "Lynn Reeves" +"Bryan Ransom" [color=thistle, URL="http://sdsu.kkytbs.net/members/profile.html?who=49"]; +"Jayson Smith" -> "Bryan Ransom" +"Tony Sacco" -> "Regan Ashker" +"Dusty Jolliff" -> "Regan Ashker" +"Jennifer Stout" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=50"]; +"Matthew FitzGerald" -> "Jennifer Stout" +"Deanna Jagow" -> "Jennifer Stout" +"Sean McHenry" -> "James Rowland" +"James Rowland" -> "Wanda Livelsberger" +"Janean Angeles" -> "Wanda Livelsberger" +"Melissa Roy" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=54"]; +"Mervin Maniago" -> "Melissa Roy" +"Christina Kelly" -> "Melissa Roy" +"Dennis McColl" -> "Tony Sacco" +"April Ortiz-cloninger" -> "Tony Sacco" +"Tony Sacco" -> "Karen Saye" +"Tony Sacco" -> "Amy Price" +"Kathleen Hansen" -> "Amy Price" +"James Rowland" -> "Jayson Smith" +"Brian Raneses" -> "Heather Smith" +"Kristen Elgo" -> "Heather Smith" +"Josh Atwood" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=6"]; +"David Guthrie" -> "Josh Atwood" +"Lori Brede" -> "Josh Atwood" +"Katie Browne" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=60"]; +"Patrick Doerr" -> "Katie Browne" +"Jamie Fratacci" -> "Katie Browne" +"Kristin Tang" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=61"]; +"James Rowland" -> "Kristin Tang" +"Heather Smith" -> "Kristin Tang" +"Mervin Maniago" -> "Cindy Teel" +"Veronica Nickel" -> "Cindy Teel" +"Mike Tulumello" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=63"]; +"Matthew FitzGerald" -> "Mike Tulumello" +"Katie Browne" -> "Mike Tulumello" +"Veronica Villanueva" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=64"]; +"Ryan Farris" -> "Veronica Villanueva" +"Sedona Reynolds" -> "Veronica Villanueva" +"Mervin Maniago" -> "Tiffany Worthington" +"Jennifer Jouan" -> "Tiffany Worthington" +"Scott Wright" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=67"]; +"James Rowland" -> "Scott Wright" +"Kristen Elgo" -> "Scott Wright" +"Jeremy Browne" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=68"]; +"Matthew FitzGerald" -> "Jeremy Browne" +"Japheth Cleaver" -> "Jeremy Browne" +"James Fogelman" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=688"]; +"Alberto Ayon" -> "James Fogelman" +"Susannah Clayton" -> "James Fogelman" +"Sandra Chase" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=689"]; +"David Guthrie" -> "Sandra Chase" +"Japheth Cleaver" -> "Sandra Chase" +"Patrick Doerr" -> "Joseph Butler" +"Deanna Jagow" -> "Joseph Butler" +"Laura Fisher" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=690"]; +"Nathan Williams" -> "Laura Fisher" +"Casondra Brimmage" -> "Laura Fisher" +"Katie Kozma" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=691"]; +"Scott Wright" -> "Katie Kozma" +"Robin Ellison" -> "Katie Kozma" +"Rachel Perkins" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=692"]; +"Joseph Butler" -> "Rachel Perkins" +"Cassiopeia Guthrie" -> "Rachel Perkins" +"Sarah Titilah" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=693"]; +"Robert Winebarger" -> "Sarah Titilah" +"Karen Helbling" -> "Sarah Titilah" +"Ashley Rehart" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=694"]; +"Laura Fisher" -> "Ashley Rehart" +"Cara Yancey" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=695"]; +"Katie Kozma" -> "Cara Yancey" +"Ashley Presley" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=698"]; +"Cara Yancey" -> "Ashley Presley" +"Leila Wilhelm" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=699"]; +"Robin Ellison" -> "Leila Wilhelm" +"Sean McHenry" -> "Kristen Elgo" +"Stacy Snyder" -> "Kristen Elgo" +"Greg Moody" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=70"]; +"Ryan Farris" -> "Greg Moody" +"Jennifer Stout" -> "Greg Moody" +"Lisa Fleck" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=700"]; +"Rachel Perkins" -> "Lisa Fleck" +"Christine Coyne" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=701"]; +"Rachel Perkins" -> "Christine Coyne" +"Jennifer Cooley" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=702"]; +"Laura Fisher" -> "Jennifer Cooley" +"Elizabeth Larios" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=703"]; +"Ashley Rehart" -> "Elizabeth Larios" +"Cate Threlkeld" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=707"]; +"Katie Kozma" -> "Cate Threlkeld" +"Erika Tapia" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=71"]; +"Patrick Doerr" -> "Erika Tapia" +"Melissa Roy" -> "Erika Tapia" +"Robbyn Rozelle" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=72"]; +"Jarrod Monroe" -> "Robbyn Rozelle" +"Tiffany Kalland" -> "Robbyn Rozelle" +"Ryan Farris" -> "Ilana Melcher" +"Veronica Villanueva" -> "Ilana Melcher" +"Greg Moody" -> "Ryan Underwood" +"Katie Browne" -> "Ryan Underwood" +"Cameron Brown" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=75"]; +"Joseph Butler" -> "Cameron Brown" +"Tiffany Kalland" -> "Cameron Brown" +"Ryan Underwood" -> "Christine Mount" +"Lori Brede" -> "Christine Mount" +"Janay Rabe" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=77"]; +"Greg Moody" -> "Janay Rabe" +"Cindy Teel" -> "Janay Rabe" +"Jeremy Browne" -> "Jennie Bogart" +"Tiffany Kalland" -> "Jennie Bogart" +"Ryan Farris" -> "Jeremy Frazier" +"Ilana Melcher" -> "Jeremy Frazier" +"Crystal Bozak" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=8"]; +"Patrick Doerr" -> "Crystal Bozak" +"Katie Browne" -> "Crystal Bozak" +"Kameka Smith" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=80"]; +"Matthew FitzGerald" -> "Kameka Smith" +"Ilana Melcher" -> "Kameka Smith" +"Kyra Sacco" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=81"]; +"Joseph Butler" -> "Kyra Sacco" +"Robbyn Rozelle" -> "Kyra Sacco" +"Samuel Behar" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=82"]; +"Ryan Underwood" -> "Samuel Behar" +"Lori Brede" -> "Samuel Behar" +"Patrick Doerr" -> "Sarah Maltese" +"Deanna Jagow" -> "Sarah Maltese" +"David Bronson" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=84"]; +"Kristin Alongi-Hutchins" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=87"]; +"Tony Sacco" -> "David Bronson" +"Kristin Alongi-Hutchins" -> "David Bronson" +"Cameron Brown" -> "Kristopher Lininger" +"Kameka Smith" -> "Kristopher Lininger" +"Rakan Abu-Rahma" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=852"]; +"Christine Coyne" -> "Rakan Abu-Rahma" +"Jennifer Berry" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=270"]; +"Jennifer Berry" -> "Janean Angeles" +"Penny Lewis" -> "Kristin Alongi-Hutchins" +"Melissa Bebak" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=88"]; +"Greg Moody" -> "Melissa Bebak" +"Sarah Maltese" -> "Melissa Bebak" +"Scott Wright" -> "Jennifer Brandon" +"Japheth Cleaver" -> "Jennifer Brandon" +"Samuel Behar" -> "Robin Ellison" +"Kyra Sacco" -> "Robin Ellison" +"Teresa Simms" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=91"]; +"Joseph Butler" -> "Teresa Simms" +"Janay Rabe" -> "Teresa Simms" +"Robert Schmidtke" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=188"]; +"Jean Newman" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=166"]; +"Robert Schmidtke" -> "John FitzGibbon" +"Jean Newman" -> "John FitzGibbon" +"Brittany DePew" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=928"]; +"Elizabeth Larios" -> "Brittany DePew" +"Kathleen Halberg" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=929"]; +"Ashley Rehart" -> "Kathleen Halberg" +"Terrance Hirsch" [color=lightblue, URL="http://sdsu.kkytbs.net/members/profile.html?who=96"]; +"J. Angeles" -> "Terrance Hirsch" +"Susan Colwell" -> "Terrance Hirsch" +"Monique Arellano" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=972"]; +"Ashley Presley" -> "Monique Arellano" +"Anthony Henderson" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=973"]; +"Jennifer Cooley" -> "Anthony Henderson" +"Amethyst Tagle" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=974"]; +"Cate Threlkeld" -> "Amethyst Tagle" +"Mallory Williams" [color=lightpink, URL="http://sdsu.kkytbs.net/members/profile.html?who=975"]; +"Lisa Fleck" -> "Mallory Williams" +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/softmaint.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/softmaint.gv.txt new file mode 100644 index 00000000..04110890 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/softmaint.gv.txt @@ -0,0 +1,377 @@ +digraph G { + size="7,10" + page="8.5,11" + center="" + node[width=.25,height=.375,fontsize=9] + fcfpr1_1_2t_17 -> 341411; + fcfpr1_1t_1 -> 341411; + rdlfpr2_0_rdlt_4 -> 341411; + fpfpr1_0_1t_1 -> 341411; + fpfpr1_1_2t_11 -> 341411; + rtafpr1_1_2t_28 -> 341411; + rtafpr1_1_3t_6 -> 341411; + rdlfpr1_1t_1 -> 358866; + rtafpr1_1_3t_6 -> 358866; + tmfpr1_1_3t_5 -> 358930; + fcfpr1_1_3t_9 -> 358930; + pcfpr1_1_3t_7 -> 358930; + fpfpr1_1_3g_1 -> 358930; + fpfpr1_1_3t_1 -> 358930; + aufpr1_1_3t_1 -> 358930; + rtafpr1_0_3g_1 -> 358930; + rtafpr1_1_3t_6 -> 358930; + msgfpr1_1_1g_12 -> 371943; + rtafpr1_1_1g_8 -> 371943; + rtafpr1_1_1t_35 -> 371943; + rtafpr1_1_1t_45 -> 371943; + rtafpr1_1_3t_6 -> 371943; + tlfpr2_0_rdlg_2 -> 374300; + fcfpr1_1_3t_8 -> 374300; + fcfpr1_1_3t_9 -> 374300; + rtafpr1_1_3t_6 -> 374300; + fcfpr1_0_5g_1 -> 371942; + fcfpr1_1_1t_19 -> 371942; + fcfpr1_1_3t_9 -> 371942; + fcfpr1_1_3t_9 -> 374700; + tymsgfpr1_1_3t_3 -> 374700; + fpfpr1_1_3t_1 -> 374700; + rtafpr1_1_3t_7 -> 374700; + fcfpr1_1_3g_2 -> 374741; + fcfpr1_1_3t_9 -> 374741; + fpfpr1_1_3t_1 -> 374741; + rtafpr1_1_3t_7 -> 374741; + fcfpr1_1_1t_18 -> 374886; + fcfpr1_1_3t_9 -> 374886; + fpfpr1_1_3t_1 -> 374886; + rtafpr1_1_3t_7 -> 374886; + fcfpr1_1_3t_9 -> 375039; + fpfpr1_1_3t_1 -> 375039; + fcfpr1_1_3t_42 -> 375507; + fcfpr1_1_3t_9 -> 375507; + rdlfpr2_0_rdlt_158 -> 375507; + rtafpr1_1_3t_7 -> 375507; + rtafpr1_1_3t_71 -> 375507; + dbfpr1_1_3t_2 -> 375507; + fcfpr1_1_3t_9 -> 375508; + rdlfpr1_1g_13 -> 375508; + rtafpr1_1_3t_7 -> 375508; + rtafpr2_1_rdlg_1 -> 375508; + dbfpr1_1_3t_2 -> 375508; + fcfpr1_1_3t_9 -> 375519; + fpfpr1_1_3g_1 -> 375519; + fpfpr1_1_3t_1 -> 375519; + fcfpr1_1_3t_9 -> 377380; + rdlfpr1_1g_16 -> 377380; + rdlfpr1_1t_100 -> 377380; + fcfpr1_0_2g_1 -> 377719; + fcfpr1_1_3t_10 -> 377719; + fcfpr1_1_3t_7 -> 377719; + fcfpr1_1_3t_9 -> 377719; + rdlfpr2_0_rdlg_12 -> 377719; + rdlfpr2_0_rdlt_108 -> 377719; + rdlfpr2_0_rdlt_27 -> 377719; + rdlfpr2_0_rdlt_30 -> 377719; + fcfpr1_1_3t_9 -> 377763; + fcfpr1_1_3t_9 -> 379848; + fpfpr1_1_3t_1 -> 379848; + fcfpr1_1_3t_9 -> 380571; + fcfpr1_1_3t_9 -> 380604; + fpfpr1_1_3t_1 -> 380604; + fcfpr1_1_3t_9 -> 381211; + fpfpr1_1_3t_1 -> 381211; + fcfpr1_1_3t_9 -> 381835; + fcfpr1_1_3t_9 -> 381897; + fcfpr1_1_3t_9 -> 381901; + fpfpr1_1_3t_1 -> 381901; + fcfpr1_1_3t_9 -> 382103; + rtafpr1_1_3t_7 -> 382103; + fcfpr1_1_3t_9 -> 382161; + fcfpr1_1_3t_9 -> 383174; + fpfpr1_1_3t_1 -> 383174; + rtafpr1_1_3t_7 -> 383174; + fpfpr1_1_3g_1 -> 352010; + fpfpr1_1_3t_1 -> 352010; + fpfpr1_1_3t_1 -> 382409; + fpfpr1_1_3t_1 -> 382827; + fpfpr1_1_3t_1 -> 382928; + rtafpr1_1_3t_7 -> 382928; + tlfpr1_1_1t_5 -> 358224; + tymsgfpr1_1_1t_23 -> 358224; + tymsgfpr1_1_3t_3 -> 358224; + rcfpr0_0_1t_9 -> 358224; + rcfpr1_1_1t_5 -> 358224; + odfpr0_0_1t_8 -> 358224; + odfpr1_1_1t_6 -> 358224; + ecdsgfpr1_1_1t_4 -> 358224; + tymsgfpr1_1_1t_18 -> 358900; + tymsgfpr1_1_3t_3 -> 358900; + rcfpr1_1_1t_100 -> 358900; + rcfpr1_1_1t_22 -> 358900; + rcfpr1_1_1t_37 -> 358900; + odfpr1_1_1t_21 -> 358900; + tymsgfpr1_1_3t_3 -> 372568; + rcfpr1_1_1t_30 -> 372568; + odfpr1_1_1t_31 -> 372568; + tlfpr1_1_1t_20 -> 375557; + tymsgfpr1_1_1t_24 -> 375557; + tymsgfpr1_1_3t_3 -> 375557; + rcfpr1_1_1t_11 -> 375557; + odfpr1_1_1t_9 -> 375557; + ecdsgfpr1_1_1t_19 -> 375557; + rtafpr1_1_1g_14 -> 376956; + rtafpr1_1_1t_64 -> 376956; + rtafpr1_1_2t_18 -> 376956; + rtafpr1_1_3t_30 -> 376956; + rtafpr1_1_3t_7 -> 376956; + rtafpr1_1_3t_7 -> 379339; + rtafpr1_1_1t_14 -> 379422; + rtafpr1_1_1t_20 -> 379422; + rtafpr1_1_3t_7 -> 379422; + rtafpr1_1_3t_7 -> 383039; + fcfpr1_1_1t_18 -> 359471; + fcfpr2_0_1t_1 -> 359471; + fcfpr2_0_1t_2 -> 359471; + ccsfpr2_0_1t_99 -> 359471; + fcfpr1_1_3t_42 -> 384096; + rtafpr1_1_3t_71 -> 384096; + tlfpr1_0_4g_4 -> 354290; + rcfpr0_0_1t_9 -> 354290; + odfpr0_0_1t_8 -> 354290; + pagfpr1_1_1t_23 -> 354290; + rcfpr1_1_1t_5 -> 379864; + rcfpr1_1_1t_100 -> 382574; + rcfpr1_1_1t_22 -> 382574; + rcfpr1_1_1t_37 -> 382574; + rcfpr1_1_1t_30 -> 370706; + rcfpr1_1_1t_30 -> 377908; + rcfpr1_1_1t_30 -> 377924; + rcfpr1_1_1t_30 -> 377971; + rcfpr1_1_1t_30 -> 377980; + odfpr1_1_1t_31 -> 377980; + rcfpr1_1_1t_30 -> 378362; + rcfpr1_1_1t_30 -> 378656; + rcfpr1_1_1t_30 -> 378666; + rcfpr1_1_1t_30 -> 379169; + odfpr1_1_1t_31 -> 379169; + rcfpr1_1_1t_110 -> 379341; + rcfpr1_1_1t_30 -> 379341; + rcfpr1_1_1t_62 -> 379341; + odfpr1_1_1t_31 -> 379341; + rcfpr1_1_1t_30 -> 379972; + rcfpr1_1_1t_30 -> 380298; + rcfpr1_1_1t_30 -> 380448; + rcfpr1_1_1t_30 -> 380475; + odfpr1_1_1t_31 -> 380475; + rcfpr1_1_1t_30 -> 380526; + odfpr1_1_1t_31 -> 357430; + rcfpr1_1_1t_11 -> 379968; + odfpr1_1_1t_9 -> 379968; + ccsfpr2_0_1t_99 -> 359100; + ccsfpr2_0_1t_99 -> 376529; + ccsfpr2_0_1t_99 -> 377801; + ccsfpr2_0_1t_99 -> 379126; + ccsfpr2_0_1t_99 -> 379212; + ccsfpr2_0_1t_99 -> 380285; + ccsfpr2_0_1t_99 -> 380963; + ccsfpr2_0_1t_99 -> 384909; + tlfpr1_0_4g_4 -> 358471; + odfpr0_0_1t_7 -> 358471; + odfpr1_0_1t_36 -> 358471; + odfpr1_0_3t_18 -> 358471; + odfpr1_0_3t_21 -> 358471; + tlfpr1_0_4g_4 -> 375024; + tlfpr1_0_4g_4 -> 375027; + rcfpr1_1_1t_110 -> 381710; + rcfpr1_1_1t_62 -> 381710; + rcfpr1_1_1t_110 -> 381775; + rcfpr1_1_1t_62 -> 381775; + rcfpr1_1_1t_110 -> 382436; + fcfpr1_1_3t_34 -> 382528; + rcfpr1_1_1t_110 -> 382528; + rtafpr1_1_3t_48 -> 382528; + rcfpr1_1_1t_110 -> 382566; + rcfpr1_1_1t_110 -> 382572; + odfpr0_0_1t_7 -> 353506; + rcfpr1_0_1t_35 -> 370509; + odfpr0_0_1t_7 -> 370509; + odfpr0_0_1t_7 -> 370510; + odfpr1_0_1t_38 -> 370510; + tlfpr1_0_4g_5 -> 354546; + rcfpr1_1_1t_61 -> 354546; + odfpr1_0_3t_18 -> 354546; + odfpr1_0_3t_20 -> 354546; + odfpr1_0_3t_18 -> 354757; + odfpr1_0_3t_20 -> 354757; + odfpr1_0_3t_18 -> 354766; + odfpr1_0_3t_20 -> 354766; + odfpr1_0_3t_18 -> 354771; + odfpr1_0_3t_20 -> 354771; + odfpr1_0_3t_18 -> 354785; + odfpr1_0_3t_23 -> 354785; + odfpr1_0_3t_24 -> 354785; + odfpr1_0_3t_18 -> 354878; + odfpr1_0_3t_23 -> 354878; + odfpr1_0_3t_24 -> 354878; + odfpr1_0_3t_18 -> 355080; + odfpr1_0_3t_23 -> 355080; + odfpr1_0_3t_24 -> 355080; + odfpr1_0_3t_18 -> 355288; + odfpr1_0_3t_23 -> 355288; + odfpr1_0_3t_24 -> 355288; + odfpr2_0_03t_13 -> 355288; + odfpr1_0_3t_18 -> 355800; + odfpr1_0_3t_21 -> 355800; + odfpr1_0_3t_18 -> 356116; + odfpr1_0_3t_21 -> 356116; + odfpr1_0_3t_18 -> 356741; + odfpr1_0_3t_21 -> 356741; + odfpr1_0_3t_18 -> 357340; + odfpr1_0_3t_21 -> 357340; + odfpr1_0_3t_18 -> 357538; + odfpr1_0_3t_21 -> 357538; + odfpr1_0_3t_18 -> 357769; + odfpr1_0_3t_21 -> 357769; + odfpr1_0_3t_18 -> 357793; + odfpr1_0_3t_21 -> 357793; + odfpr1_0_3t_18 -> 358155; + odfpr1_0_3t_21 -> 358155; + odfpr1_0_3t_18 -> 358157; + odfpr1_0_3t_21 -> 358157; + odfpr1_0_3t_18 -> 358159; + odfpr1_0_3t_21 -> 358159; + odfpr1_0_3t_18 -> 358584; + odfpr1_0_3t_21 -> 358584; + odfpr1_0_3t_18 -> 360104; + odfpr1_0_3t_21 -> 360104; + odfpr1_0_3t_18 -> 360144; + odfpr1_0_3t_21 -> 360144; + odfpr1_0_3t_18 -> 360672; + odfpr1_0_3t_21 -> 360672; + odfpr1_0_3t_5 -> 360672; + odfpr1_0_3t_18 -> 360839; + odfpr1_0_3t_21 -> 360839; + odfpr1_0_3t_18 -> 371187; + tlfpr1_0_3g_5 -> 373300; + odfpr1_0_3t_12 -> 373300; + odfpr1_0_3t_18 -> 373300; + odfpr1_0_3t_18 -> 375134; + odfpr1_0_5t_18 -> 375134; + rcfpr0_0_1t_10 -> 375319; + odfpr1_0_3t_18 -> 375319; + odfpr1_0_3t_36 -> 375319; + odfpr1_0_5t_17 -> 375319; + odfpr1_0_5t_19 -> 375319; + odfpr1_0_3t_18 -> 375499; + odfpr1_0_3t_18 -> 377220; + odfpr1_0_5t_21 -> 377220; + tlfpr1_0_3g_7 -> 377562; + tlfpr1_1_1t_3 -> 377562; + odfpr1_0_3t_18 -> 377562; + odfpr1_0_3t_36 -> 377562; + odfpr1_0_5t_20 -> 377562; + odfpr1_0_3t_18 -> 378108; + odfpr1_0_3t_6 -> 378108; + odfpr1_0_5t_20 -> 354221; + + odfpr0_0_1t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_0_3g_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr0_0_1t_8 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_61 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_0_3g_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_62 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + ccsfpr2_0_1t_99 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tymsgfpr1_1_3t_3 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr0_0_1t_9 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1t_14 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_3t_30 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_110 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + dbfpr1_1_3t_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1g_8 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_30 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_1_1t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1t_64 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr2_0_rdlg_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_2t_28 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_1_1t_3 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_1_1t_6 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fpfpr1_1_3t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + aufpr1_1_3t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3t_34 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_1t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_36 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_1_1t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_1t_19 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_1_1t_9 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_37 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3t_8 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_1_1t_21 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3t_9 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr2_0_rdlt_27 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3g_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1t_35 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_5t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fpfpr1_1_3g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_5t_21 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fpfpr1_1_2t_11 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + ecdsgfpr1_1_1t_19 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_1t_36 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1g_14 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tymsgfpr1_1_1t_23 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tymsgfpr1_1_1t_24 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_1t_38 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_0_2g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr1_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr0_0_1t_10 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_100 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr2_0_rdlt_108 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + pcfpr1_1_3t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + ecdsgfpr1_1_1t_4 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tmfpr1_1_3t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_21 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fpfpr1_0_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_23 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_22 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + pagfpr1_1_1t_23 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_3t_71 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_2t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr2_0_rdlt_158 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_3t_6 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_24 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_3t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_0_3g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr1_1g_13 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_0_1t_35 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_2t_17 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr2_1_rdlg_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr2_0_rdlt_4 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr1_1g_16 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr2_0_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr2_0_1t_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr1_1t_100 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + msgfpr1_1_1g_12 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr2_0_rdlt_30 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_0_4g_4 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3t_42 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_6 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tlfpr1_0_4g_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_3t_48 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_5t_17 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_5t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + tymsgfpr1_1_1t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_5t_19 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_1_3t_10 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + fcfpr1_0_5g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_0_3t_12 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr2_0_03t_13 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rcfpr1_1_1t_11 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + odfpr1_1_1t_31 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rdlfpr2_0_rdlg_12 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; + rtafpr1_1_1t_45 [label="",shape=circle,height=0.12,width=0.12,fontsize=1]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/switch.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/switch.gv.txt new file mode 100644 index 00000000..431ba48c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/switch.gv.txt @@ -0,0 +1,60 @@ +digraph G { + graph [center rankdir=LR bgcolor="#808080"] + edge [dir=none] + node [width=0.3 height=0.3 label=""] + { node [shape=circle style=invis] + 1 2 3 4 5 6 7 8 10 20 30 40 50 60 70 80 + } + { node [shape=circle] + a b c d e f g h i j k l m n o p q r s t u v w x + } + { node [shape=diamond] + A B C D E F G H I J K L M N O P Q R S T U V W X + } + 1 -> a -> {A B} [color="#0000ff"] + 2 -> b -> {B A} [color="#ff0000"] + 3 -> c -> {C D} [color="#ffff00"] + 4 -> d -> {D C} [color="#00ff00"] + 5 -> e -> {E F} [color="#000000"] + 6 -> f -> {F E} [color="#00ffff"] + 7 -> g -> {G H} [color="#ffffff"] + 8 -> h -> {H G} [color="#ff00ff"] + { edge [color="#ff0000:#0000ff"] + A -> i -> {I K} + B -> j -> {J L} + } + { edge [color="#00ff00:#ffff00"] + C -> k -> {K I} + D -> l -> {L J} + } + { edge [color="#00ffff:#000000"] + E -> m -> {M O} + F -> n -> {N P} + } + { edge [color="#ff00ff:#ffffff"] + G -> o -> {O M} + H -> p -> {P N} + } + { edge [color="#00ff00:#ffff00:#ff0000:#0000ff"] + I -> q -> {Q U} + J -> r -> {R V} + K -> s -> {S W} + L -> t -> {T X} + } + { edge [color="#ff00ff:#ffffff:#00ffff:#000000"] + M -> u -> {U Q} + N -> v -> {V R} + O -> w -> {W S} + P -> x -> {X T} + } + { edge [color="#ff00ff:#ffffff:#00ffff:#000000:#00ff00:#ffff00:#ff0000:#0000ff"] + Q -> 10 + R -> 20 + S -> 30 + T -> 40 + U -> 50 + V -> 60 + W -> 70 + X -> 80 + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/traffic_lights.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/traffic_lights.gv.txt new file mode 100644 index 00000000..6b44bc8b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/traffic_lights.gv.txt @@ -0,0 +1,28 @@ +##"I played some days with making an interface between our ConceptBase system (essentially a database system to store models) and graphviz. One example graph is attached. It is a so-called petri net for Dutch traffic lights. The example is actually taken from a book by Wil van der Aalst." Contributed by Manfred Jeusfeld. + +##Command to produce the output: "neato -Tpng thisfile > thisfile.png" + +digraph TrafficLights { +node [shape=box]; gy2; yr2; rg2; gy1; yr1; rg1; +node [shape=circle,fixedsize=true,width=0.9]; green2; yellow2; red2; safe2; safe1; green1; yellow1; red1; +gy2->yellow2; +rg2->green2; +yr2->safe1; +yr2->red2; +safe2->rg2; +green2->gy2; +yellow2->yr2; +red2->rg2; +gy1->yellow1; +rg1->green1; +yr1->safe2; +yr1->red1; +safe1->rg1; +green1->gy1; +yellow1->yr1; +red1->rg1; + +overlap=false +label="PetriNet Model TrafficLights\nExtracted from ConceptBase and layed out by Graphviz" +fontsize=12; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/transparency.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/transparency.gv.txt new file mode 100644 index 00000000..d296f8d2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/transparency.gv.txt @@ -0,0 +1,105 @@ +graph G { +// graph [splines=true overlap=false] + graph [truecolor bgcolor="#ff00005f"] + node [style=filled fillcolor="#00ff005f"] + 1 -- 30 [f=1]; + 1 -- 40 [f=14]; + 8 -- 46 [f=1]; + 8 -- 16 [f=18]; + 10 -- 25 [f=1]; + 10 -- 19 [f=5]; + 10 -- 33 [f=1]; + 12 -- 8 [f=1]; + 12 -- 36 [f=5]; + 12 -- 17 [f=16]; + 13 -- 38 [f=1]; + 13 -- 24 [f=19]; + 24 -- 49 [f=1]; + 24 -- 13 [f=1]; + 24 -- 47 [f=12]; + 24 -- 12 [f=19]; + 25 -- 27 [f=1]; + 25 -- 12 [f=1]; + 27 -- 12 [f=1]; + 27 -- 14 [f=8]; + 29 -- 10 [f=1]; + 29 -- 8 [f=17]; + 30 -- 24 [f=1]; + 30 -- 44 [f=15]; + 38 -- 29 [f=1]; + 38 -- 35 [f=15]; + 2 -- 42 [f=2]; + 2 -- 35 [f=3]; + 2 -- 11 [f=19]; + 14 -- 18 [f=2]; + 14 -- 24 [f=15]; + 14 -- 38 [f=18]; + 18 -- 49 [f=2]; + 18 -- 47 [f=20]; + 26 -- 41 [f=2]; + 26 -- 42 [f=15]; + 31 -- 39 [f=2]; + 31 -- 47 [f=17]; + 31 -- 25 [f=14]; + 37 -- 26 [f=2]; + 37 -- 16 [f=14]; + 39 -- 50 [f=2]; + 39 -- 14 [f=2]; + 39 -- 18 [f=17]; + 39 -- 47 [f=10]; + 41 -- 31 [f=2]; + 41 -- 8 [f=16]; + 42 -- 44 [f=2]; + 42 -- 29 [f=12]; + 44 -- 37 [f=2]; + 44 -- 32 [f=15]; + 3 -- 20 [f=2]; + 3 -- 28 [f=19]; + 6 -- 45 [f=2]; + 6 -- 28 [f=10]; + 9 -- 6 [f=2]; + 9 -- 16 [f=1]; + 15 -- 16 [f=2]; + 15 -- 48 [f=2]; + 16 -- 50 [f=2]; + 16 -- 32 [f=14]; + 16 -- 39 [f=8]; + 20 -- 33 [f=2]; + 33 -- 9 [f=2]; + 33 -- 46 [f=3]; + 33 -- 48 [f=17]; + 45 -- 15 [f=2]; + 4 -- 17 [f=4]; + 4 -- 15 [f=6]; + 4 -- 12 [f=16]; + 17 -- 21 [f=4]; + 19 -- 35 [f=4]; + 19 -- 15 [f=9]; + 19 -- 43 [f=4]; + 21 -- 19 [f=4]; + 21 -- 50 [f=4]; + 23 -- 36 [f=4]; + 34 -- 23 [f=4]; + 34 -- 24 [f=11]; + 35 -- 34 [f=4]; + 35 -- 16 [f=6]; + 35 -- 18 [f=16]; + 36 -- 46 [f=4]; + 5 -- 7 [f=1]; + 5 -- 36 [f=6]; + 7 -- 32 [f=1]; + 7 -- 11 [f=2]; + 7 -- 14 [f=17]; + 11 -- 40 [f=1]; + 11 -- 50 [f=1]; + 22 -- 46 [f=1]; + 28 -- 43 [f=1]; + 28 -- 8 [f=18]; + 32 -- 28 [f=1]; + 32 -- 39 [f=13]; + 32 -- 42 [f=15]; + 40 -- 22 [f=1]; + 40 -- 47 [f=1]; + 43 -- 11 [f=1]; + 43 -- 17 [f=19]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/twopi.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/twopi.gv.txt new file mode 100644 index 00000000..72b28fa7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/twopi.gv.txt @@ -0,0 +1,2212 @@ +digraph G { + ranksep=3; + ratio=auto; +"1" [ label="02f5daf56e299b8a8ecea892",shape="hexagon",style="filled",color="green" ]; +"189E" [ label="ca5af2",shape="box",style="filled",color="grey" ]; +"790E" [ label="b4dfef6",shape="box",style="filled",color="grey" ]; +"2" [ label="171192dc1f8e6ea551548a910c00",shape="hexagon",style="filled",color="green" ]; +"191E" [ label="629e42",shape="box",style="filled",color="grey" ]; +"3" [ label="6bce02baf91781a831e1b95",shape="hexagon",style="filled",color="green" ]; +"193E" [ label="1c08373",shape="box",style="filled",color="grey" ]; +"4" [ label="6236a67933a619a6a3d48",shape="hexagon",style="filled",color="green" ]; +"195E" [ label="be8f4199f",shape="box",style="filled",color="grey" ]; +"5" [ label="50962c93b4cb293f5beb59eb",shape="hexagon",style="filled",color="green" ]; +"197E" [ label="be8f4199f",shape="box",style="filled",color="grey" ]; +"6" [ label="05d4b1ed6a6135eec3abd3f2",shape="hexagon",style="filled",color="green" ]; +"199E" [ label="",shape="box",style="filled",color="grey" ]; +"7" [ label="08769f73d31c1a99be2d9363f",shape="hexagon",style="filled",color="green" ]; +"201E" [ label="629e42",shape="box",style="filled",color="grey" ]; +"8" [ label="a6a196a504c3a7657d1fa41",shape="hexagon",style="filled",color="green" ]; +"203E" [ label="cd856f",shape="box",style="filled",color="grey" ]; +"9" [ label="837ebf4bde22e1f1535cb662",shape="hexagon",style="filled",color="green" ]; +"725E" [ label="d0eb84",shape="box",style="filled",color="grey" ]; +"785E" [ label="dd2ba36",shape="box",style="filled",color="grey" ]; +"10" [ label="5f865c374cb3fe976dd376b8",shape="hexagon",style="filled",color="green" ]; +"205E" [ label="23ad1",shape="box",style="filled",color="grey" ]; +"11" [ label="8be752bc95d436a90493bec9",shape="hexagon",style="filled",color="green" ]; +"207E" [ label="ee91c97828",shape="box",style="filled",color="grey" ]; +"12" [ label="969a58db14386cb9d2f51ec",shape="hexagon",style="filled",color="green" ]; +"209E" [ label="7c7c",shape="box",style="filled",color="grey" ]; +"13" [ label="da24f74aad2ff519009d1f38c",shape="hexagon",style="filled",color="green" ]; +"211E" [ label="460aed10cc9",shape="box",style="filled",color="grey" ]; +"14" [ label="3124d3a6ed3381a6341c6",shape="hexagon",style="filled",color="green" ]; +"213E" [ label="bbe0a8f93dc1",shape="box",style="filled",color="grey" ]; +"15" [ label="71512ec7d43f958f2b6da",shape="hexagon",style="filled",color="green" ]; +"215E" [ label="3f0a2b4eb62f",shape="box",style="filled",color="grey" ]; +"16" [ label="3828a2c682419423cf",shape="hexagon",style="filled",color="green" ]; +"727E" [ label="2",shape="box",style="filled",color="grey" ]; +"784E" [ label="",shape="box",style="filled",color="grey" ]; +"17" [ label="aa868f65c34cdb64f1fad19a",shape="hexagon",style="filled",color="green" ]; +"217E" [ label="3089106e3b",shape="box",style="filled",color="grey" ]; +"787E" [ label="1aaaab063",shape="box",style="filled",color="grey" ]; +"18" [ label="dca32af03698c988b22",shape="hexagon",style="filled",color="green" ]; +"219E" [ label="eb8",shape="box",style="filled",color="grey" ]; +"19" [ label="d8f4a9e463a1e89217f",shape="hexagon",style="filled",color="green" ]; +"221E" [ label="4c6c8c",shape="box",style="filled",color="grey" ]; +"20" [ label="c96782ef56711c5d6a3f69",shape="hexagon",style="filled",color="green" ]; +"223E" [ label="6a8f5bafb1",shape="box",style="filled",color="grey" ]; +"21" [ label="4f04c39708f",shape="hexagon",style="filled",color="green" ]; +"225E" [ label="a49284e9",shape="box",style="filled",color="grey" ]; +"22" [ label="97284d4c3a5d499853f0e",shape="hexagon",style="filled",color="green" ]; +"227E" [ label="53069e384a2",shape="box",style="filled",color="grey" ]; +"792E" [ label="79b69c612",shape="box",style="filled",color="grey" ]; +"23" [ label="c4d32527b670afb370d643",shape="hexagon",style="filled",color="green" ]; +"231E" [ label="e851f5ddd920",shape="box",style="filled",color="grey" ]; +"24" [ label="5e9156098c064",shape="hexagon",style="filled",color="green" ]; +"233E" [ label="",shape="box",style="filled",color="grey" ]; +"25" [ label="3d475ea3aeca51b60212dd",shape="hexagon",style="filled",color="green" ]; +"235E" [ label="4280833ef80172",shape="box",style="filled",color="grey" ]; +"26" [ label="966d271c22e75c7538",shape="hexagon",style="filled",color="green" ]; +"237E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"27" [ label="b630e1af6ae1997f0e8ba750",shape="hexagon",style="filled",color="green" ]; +"239E" [ label="bb828f1a326",shape="box",style="filled",color="grey" ]; +"783E" [ label="499f6985db294c",shape="box",style="filled",color="grey" ]; +"28" [ label="ebd8ffc2ac3a90efb8af9",shape="hexagon",style="filled",color="green" ]; +"241E" [ label="1ebeec",shape="box",style="filled",color="grey" ]; +"791E" [ label="c0b727",shape="box",style="filled",color="grey" ]; +"29" [ label="69fdd1a1f4768c5efe7",shape="hexagon",style="filled",color="green" ]; +"243E" [ label="35b8742610",shape="box",style="filled",color="grey" ]; +"30" [ label="d93a80739fc1edb41a11b7294",shape="hexagon",style="filled",color="green" ]; +"245E" [ label="e03b8bc0435a",shape="box",style="filled",color="grey" ]; +"31" [ label="bf65cfddeb00ff847feae0c",shape="hexagon",style="filled",color="green" ]; +"247E" [ label="8df",shape="box",style="filled",color="grey" ]; +"32" [ label="916c686a1e82dba72524a",shape="hexagon",style="filled",color="green" ]; +"249E" [ label="a849f9d352e",shape="box",style="filled",color="grey" ]; +"33" [ label="f496bcf0889b301d77819c",shape="hexagon",style="filled",color="green" ]; +"251E" [ label="f29dfb9",shape="box",style="filled",color="grey" ]; +"34" [ label="76889f7d35e",shape="hexagon",style="filled",color="green" ]; +"253E" [ label="e7ef998",shape="box",style="filled",color="grey" ]; +"35" [ label="668d636002",shape="hexagon",style="filled",color="green" ]; +"255E" [ label="4379b5ed",shape="box",style="filled",color="grey" ]; +"36" [ label="e1e4c23db39d8bd633c3a",shape="hexagon",style="filled",color="green" ]; +"257E" [ label="1ed5d7f63b8c6",shape="box",style="filled",color="grey" ]; +"37" [ label="842bc5775657c1e0d67",shape="hexagon",style="filled",color="green" ]; +"259E" [ label="a387210a27b",shape="box",style="filled",color="grey" ]; +"38" [ label="e4e2f4e6d",shape="hexagon",style="filled",color="green" ]; +"261E" [ label="1f4f0fdf",shape="box",style="filled",color="grey" ]; +"39" [ label="04390dec6f1779353c07f5",shape="hexagon",style="filled",color="green" ]; +"263E" [ label="bac77c3f414a",shape="box",style="filled",color="grey" ]; +"40" [ label="69f2611acc42c36ed7cc",shape="hexagon",style="filled",color="green" ]; +"265E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"41" [ label="1562abef0d8241",shape="hexagon",style="filled",color="green" ]; +"267E" [ label="6a8f5bafb1",shape="box",style="filled",color="grey" ]; +"42" [ label="e49aaa5cc4e44355d6a0",shape="hexagon",style="filled",color="green" ]; +"269E" [ label="cc3f63d",shape="box",style="filled",color="grey" ]; +"43" [ label="e8ebe1bf5f421c1223",shape="hexagon",style="filled",color="green" ]; +"271E" [ label="96325ea",shape="box",style="filled",color="grey" ]; +"44" [ label="2759e82e30d6d",shape="hexagon",style="filled",color="green" ]; +"273E" [ label="ca5af2",shape="box",style="filled",color="grey" ]; +"45" [ label="23c1ec53358d237c1",shape="hexagon",style="filled",color="green" ]; +"275E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"46" [ label="5838586c293d455",shape="hexagon",style="filled",color="green" ]; +"277E" [ label="83c397b8bf7f",shape="box",style="filled",color="grey" ]; +"47" [ label="f841118350a27b7ea29a9c9d",shape="hexagon",style="filled",color="green" ]; +"279E" [ label="69f4ecb77d",shape="box",style="filled",color="grey" ]; +"48" [ label="658d208447d8ec5d6de8",shape="hexagon",style="filled",color="green" ]; +"281E" [ label="f7b22b9640",shape="box",style="filled",color="grey" ]; +"49" [ label="11180ae7706510211bc4",shape="hexagon",style="filled",color="green" ]; +"283E" [ label="052bb6e3",shape="box",style="filled",color="grey" ]; +"50" [ label="5807acd8d58e006f43",shape="hexagon",style="filled",color="green" ]; +"285E" [ label="",shape="box",style="filled",color="grey" ]; +"51" [ label="fe4e848cb5291ee59a2",shape="hexagon",style="filled",color="green" ]; +"287E" [ label="e3aefac763",shape="box",style="filled",color="grey" ]; +"52" [ label="c4f31ea3844e12da27ad47c6",shape="hexagon",style="filled",color="green" ]; +"289E" [ label="fb16636aae",shape="box",style="filled",color="grey" ]; +"53" [ label="00cbeb87c182ca0785f",shape="hexagon",style="filled",color="green" ]; +"291E" [ label="3089106e3b",shape="box",style="filled",color="grey" ]; +"54" [ label="11f088bfd8",shape="hexagon",style="filled",color="green" ]; +"293E" [ label="6a80cbe",shape="box",style="filled",color="grey" ]; +"55" [ label="64a9ec24428099ad8ed82ba6",shape="hexagon",style="filled",color="green" ]; +"745E" [ label="68d8993e61d8c82cd29e8d0182b0",shape="box",style="filled",color="grey" ]; +"56" [ label="3c2a62e0e5e9f7",shape="hexagon",style="filled",color="green" ]; +"295E" [ label="ae32701",shape="box",style="filled",color="grey" ]; +"57" [ label="dd84fe6a65cfac7bca03ebd",shape="hexagon",style="filled",color="green" ]; +"297E" [ label="",shape="box",style="filled",color="grey" ]; +"58" [ label="b06bbfa920aa95dd",shape="hexagon",style="filled",color="green" ]; +"299E" [ label="07",shape="box",style="filled",color="grey" ]; +"59" [ label="6b5aaa4bdf44b2c898854",shape="hexagon",style="filled",color="green" ]; +"301E" [ label="4c6c8c",shape="box",style="filled",color="grey" ]; +"789E" [ label="3a0ff0",shape="box",style="filled",color="grey" ]; +"60" [ label="855d26296eda4eb7",shape="hexagon",style="filled",color="green" ]; +"303E" [ label="53069e384a2",shape="box",style="filled",color="grey" ]; +"61" [ label="e82f47b8d4949ba4af69b38cbc19",shape="hexagon",style="filled",color="green" ]; +"305E" [ label="b62cd1d0a0",shape="box",style="filled",color="grey" ]; +"62" [ label="86569bffb49adf6b3d0ebac",shape="hexagon",style="filled",color="green" ]; +"307E" [ label="660ffeb76fc59",shape="box",style="filled",color="grey" ]; +"63" [ label="a96e47ff37983425a3e452095",shape="hexagon",style="filled",color="green" ]; +"309E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"64" [ label="71a48d11b2e7e56b1df128bd",shape="hexagon",style="filled",color="green" ]; +"311E" [ label="be8f4199f",shape="box",style="filled",color="grey" ]; +"65" [ label="a0befe6dd1ca7b165786835",shape="hexagon",style="filled",color="green" ]; +"313E" [ label="3cfae",shape="box",style="filled",color="grey" ]; +"66" [ label="f33ec11db496f7bfcb024f",shape="hexagon",style="filled",color="green" ]; +"315E" [ label="71e6b",shape="box",style="filled",color="grey" ]; +"67" [ label="fe6be3206549f5b5564acde84783",shape="hexagon",style="filled",color="green" ]; +"317E" [ label="",shape="box",style="filled",color="grey" ]; +"68" [ label="e4dba079d5fcb1f165920a3bf",shape="hexagon",style="filled",color="green" ]; +"319E" [ label="",shape="box",style="filled",color="grey" ]; +"69" [ label="35dfbee3123dc389cba0b15",shape="hexagon",style="filled",color="green" ]; +"746E" [ label="4c865eec228e41e7f4e5fc68a9a6",shape="box",style="filled",color="grey" ]; +"70" [ label="16c508ab98483d430bbe",shape="hexagon",style="filled",color="green" ]; +"321E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"71" [ label="9c9e2e0f2da8758e436c",shape="hexagon",style="filled",color="green" ]; +"327E" [ label="cd0d985a366cad7e",shape="box",style="filled",color="grey" ]; +"72" [ label="fb039d7a2a9fe73b5f468eba9",shape="hexagon",style="filled",color="green" ]; +"329E" [ label="81dabfaba8",shape="box",style="filled",color="grey" ]; +"73" [ label="2ef949c4a39b",shape="hexagon",style="filled",color="green" ]; +"331E" [ label="617809d979f",shape="box",style="filled",color="grey" ]; +"74" [ label="a9497e0757b0969bde707ed5",shape="hexagon",style="filled",color="green" ]; +"333E" [ label="541ab86a2e",shape="box",style="filled",color="grey" ]; +"75" [ label="230cc6bbc66b24eae94fa03d",shape="hexagon",style="filled",color="green" ]; +"335E" [ label="",shape="box",style="filled",color="grey" ]; +"76" [ label="1d163eac141def176461c",shape="hexagon",style="filled",color="green" ]; +"337E" [ label="0acc5bb8ca4",shape="box",style="filled",color="grey" ]; +"77" [ label="32979f8cf86",shape="hexagon",style="filled",color="green" ]; +"339E" [ label="a7e89580",shape="box",style="filled",color="grey" ]; +"78" [ label="37d80ae421dba4a70730338860",shape="hexagon",style="filled",color="green" ]; +"341E" [ label="",shape="box",style="filled",color="grey" ]; +"79" [ label="fbba7215e7c13173a60206",shape="hexagon",style="filled",color="green" ]; +"343E" [ label="617809d979f",shape="box",style="filled",color="grey" ]; +"80" [ label="2dd8cc4d693415f93c0f8fc",shape="hexagon",style="filled",color="green" ]; +"345E" [ label="94da691e20e3",shape="box",style="filled",color="grey" ]; +"81" [ label="00880e6f50c765ebc1f85d3e9",shape="hexagon",style="filled",color="green" ]; +"347E" [ label="e7ef998",shape="box",style="filled",color="grey" ]; +"82" [ label="ef13d45b1277ac9a0444adb",shape="hexagon",style="filled",color="green" ]; +"349E" [ label="a7fe7",shape="box",style="filled",color="grey" ]; +"83" [ label="2573e1bf51f1b307f4640",shape="hexagon",style="filled",color="green" ]; +"351E" [ label="84e4ede82074",shape="box",style="filled",color="grey" ]; +"84" [ label="162d8039483d8",shape="hexagon",style="filled",color="green" ]; +"353E" [ label="a8e9",shape="box",style="filled",color="grey" ]; +"85" [ label="f490de272a7f6e4af346d40",shape="hexagon",style="filled",color="green" ]; +"355E" [ label="460aed10cc9",shape="box",style="filled",color="grey" ]; +"788E" [ label="391256c872",shape="box",style="filled",color="grey" ]; +"86" [ label="678bf739c344b9ad41da1",shape="hexagon",style="filled",color="green" ]; +"357E" [ label="396b16a892fe",shape="box",style="filled",color="grey" ]; +"87" [ label="876d120b38b0e88817",shape="hexagon",style="filled",color="green" ]; +"359E" [ label="e5",shape="box",style="filled",color="grey" ]; +"88" [ label="503737b64d432c60d6ac557e0e6",shape="hexagon",style="filled",color="green" ]; +"361E" [ label="9937ccba1469",shape="box",style="filled",color="grey" ]; +"89" [ label="b36e0be6f67fc25286127456",shape="hexagon",style="filled",color="green" ]; +"363E" [ label="87a7e69a72412",shape="box",style="filled",color="grey" ]; +"90" [ label="4cc20a0b7651e486",shape="hexagon",style="filled",color="green" ]; +"365E" [ label="e079d2c",shape="box",style="filled",color="grey" ]; +"91" [ label="08dade990b2282",shape="hexagon",style="filled",color="green" ]; +"367E" [ label="45827dbdd8",shape="box",style="filled",color="grey" ]; +"92" [ label="f8128d574c356631b8a9",shape="hexagon",style="filled",color="green" ]; +"369E" [ label="",shape="box",style="filled",color="grey" ]; +"93" [ label="88a4f0337c2189c3fc7b31",shape="hexagon",style="filled",color="green" ]; +"729E" [ label="da0d7bbcf30",shape="box",style="filled",color="grey" ]; +"94" [ label="1b13908a9f0763c0ae54af9062080",shape="hexagon",style="filled",color="green" ]; +"371E" [ label="8b06a67a",shape="box",style="filled",color="grey" ]; +"95" [ label="e2a5d11499b7e",shape="hexagon",style="filled",color="green" ]; +"373E" [ label="66abc181ac4",shape="box",style="filled",color="grey" ]; +"96" [ label="90cc275011c2013c61eb11",shape="hexagon",style="filled",color="green" ]; +"375E" [ label="",shape="box",style="filled",color="grey" ]; +"97" [ label="1e003bfe8fc840df0163f4c",shape="hexagon",style="filled",color="green" ]; +"747E" [ label="8983ffbc30deb364dd92c3ad85c9",shape="box",style="filled",color="grey" ]; +"98" [ label="1927c743a0d440a5a0",shape="hexagon",style="filled",color="green" ]; +"377E" [ label="b12441ecff15fa12c",shape="box",style="filled",color="grey" ]; +"99" [ label="155d892827c33ed3cae3",shape="hexagon",style="filled",color="green" ]; +"379E" [ label="71e6b",shape="box",style="filled",color="grey" ]; +"100" [ label="9f24ba80192c339a64c0",shape="hexagon",style="filled",color="green" ]; +"381E" [ label="",shape="box",style="filled",color="grey" ]; +"101" [ label="3e814305b42beb41b8c706",shape="hexagon",style="filled",color="green" ]; +"383E" [ label="1c08373",shape="box",style="filled",color="grey" ]; +"102" [ label="eccfe5ff0af70fe9fbec8b2360f90",shape="hexagon",style="filled",color="green" ]; +"385E" [ label="be8f4199f",shape="box",style="filled",color="grey" ]; +"103" [ label="8fa622d9f842c5572a545ed72982",shape="hexagon",style="filled",color="green" ]; +"387E" [ label="4dccb",shape="box",style="filled",color="grey" ]; +"104" [ label="ad9142a65f5eab78b4ca5e",shape="hexagon",style="filled",color="green" ]; +"389E" [ label="f36cce089",shape="box",style="filled",color="grey" ]; +"105" [ label="20f234fdcd0e1fc50261ce8",shape="hexagon",style="filled",color="green" ]; +"391E" [ label="67219ef689f0146b544",shape="box",style="filled",color="grey" ]; +"106" [ label="e06cc38155ff6781cf944d745",shape="hexagon",style="filled",color="green" ]; +"393E" [ label="87a7e69a72412",shape="box",style="filled",color="grey" ]; +"107" [ label="cfdf1932665dcb4cd3c",shape="hexagon",style="filled",color="green" ]; +"395E" [ label="964b86fc1bba0e",shape="box",style="filled",color="grey" ]; +"108" [ label="6d4a4a5a5af91b895272c30",shape="hexagon",style="filled",color="green" ]; +"397E" [ label="b5e86c73d1198f",shape="box",style="filled",color="grey" ]; +"109" [ label="e0ad365c2fb444358201",shape="hexagon",style="filled",color="green" ]; +"399E" [ label="bb5e89c8963",shape="box",style="filled",color="grey" ]; +"110" [ label="b07bbdc8cca5985d4c4",shape="hexagon",style="filled",color="green" ]; +"401E" [ label="50023f6f88",shape="box",style="filled",color="grey" ]; +"111" [ label="df5dba74c75b228de48c",shape="hexagon",style="filled",color="green" ]; +"403E" [ label="7e493ee44b28",shape="box",style="filled",color="grey" ]; +"112" [ label="0b8694c9ef9b27b9c3d8",shape="hexagon",style="filled",color="green" ]; +"405E" [ label="2342b759c03",shape="box",style="filled",color="grey" ]; +"113" [ label="81e20155999fa64e0ae6fd",shape="hexagon",style="filled",color="green" ]; +"407E" [ label="4280833ef80172",shape="box",style="filled",color="grey" ]; +"114" [ label="3ef07ae75d29a707",shape="hexagon",style="filled",color="green" ]; +"409E" [ label="4280833ef80172",shape="box",style="filled",color="grey" ]; +"115" [ label="4a36db80f1ab1e97",shape="hexagon",style="filled",color="green" ]; +"411E" [ label="460aed10cc9",shape="box",style="filled",color="grey" ]; +"116" [ label="16da5f1301b36df4df0f",shape="hexagon",style="filled",color="green" ]; +"413E" [ label="460aed10cc9",shape="box",style="filled",color="grey" ]; +"117" [ label="6b3f3fa236bb90592d23a",shape="hexagon",style="filled",color="green" ]; +"415E" [ label="83c397b8bf7f",shape="box",style="filled",color="grey" ]; +"118" [ label="f2a57e4d4f0cec516891e3",shape="hexagon",style="filled",color="green" ]; +"417E" [ label="bd2484",shape="box",style="filled",color="grey" ]; +"119" [ label="deb3089920548bf1ecb23f0d",shape="hexagon",style="filled",color="green" ]; +"419E" [ label="87a7e69a72412",shape="box",style="filled",color="grey" ]; +"120" [ label="bf01c8a262",shape="hexagon",style="filled",color="green" ]; +"421E" [ label="01",shape="box",style="filled",color="grey" ]; +"121" [ label="23dc3a52fed9c119610b5e8",shape="hexagon",style="filled",color="green" ]; +"423E" [ label="71e6b",shape="box",style="filled",color="grey" ]; +"122" [ label="aff7fc220edc93572bb2",shape="hexagon",style="filled",color="green" ]; +"748E" [ label="68d8993e61d8c82cd29e8d0182b0",shape="box",style="filled",color="grey" ]; +"123" [ label="78cc16f965adc5f712ea2372c6",shape="hexagon",style="filled",color="green" ]; +"425E" [ label="23ad1",shape="box",style="filled",color="grey" ]; +"124" [ label="5be631dff7b97697be7dc0a2f07f2",shape="hexagon",style="filled",color="green" ]; +"427E" [ label="",shape="box",style="filled",color="grey" ]; +"786E" [ label="421",shape="box",style="filled",color="grey" ]; +"125" [ label="48398d080dfcccced48da1980",shape="hexagon",style="filled",color="green" ]; +"431E" [ label="866808df",shape="box",style="filled",color="grey" ]; +"126" [ label="03716a2c341e5edaa31",shape="hexagon",style="filled",color="green" ]; +"433E" [ label="21407f8a6d7",shape="box",style="filled",color="grey" ]; +"127" [ label="ddfeabe456a9de5f5784",shape="hexagon",style="filled",color="green" ]; +"435E" [ label="aac615ae78",shape="box",style="filled",color="grey" ]; +"128" [ label="d550a7f392c787661aadd48",shape="hexagon",style="filled",color="green" ]; +"437E" [ label="e3aefac763",shape="box",style="filled",color="grey" ]; +"129" [ label="4c82921f4ad3f07066540",shape="hexagon",style="filled",color="green" ]; +"439E" [ label="a7fe7",shape="box",style="filled",color="grey" ]; +"130" [ label="0bc7f8f513e0e74b270",shape="hexagon",style="filled",color="green" ]; +"441E" [ label="a849f9d352e",shape="box",style="filled",color="grey" ]; +"131" [ label="3b1563a23eb9",shape="hexagon",style="filled",color="green" ]; +"443E" [ label="a8e9",shape="box",style="filled",color="grey" ]; +"132" [ label="be233fafa38d931d894",shape="hexagon",style="filled",color="green" ]; +"445E" [ label="a849f9d352e",shape="box",style="filled",color="grey" ]; +"133" [ label="f906dc5244ee6a371f8",shape="hexagon",style="filled",color="green" ]; +"749E" [ label="4c865eec228e41e7f4e5fc68a9a6",shape="box",style="filled",color="grey" ]; +"134" [ label="e7a887d88c2318beba51",shape="hexagon",style="filled",color="green" ]; +"447E" [ label="9d8988c0945d6",shape="box",style="filled",color="grey" ]; +"135" [ label="be6b73bd46a7a5183e8c91a",shape="hexagon",style="filled",color="green" ]; +"449E" [ label="ee91c97828",shape="box",style="filled",color="grey" ]; +"769E" [ label="444189d179b5db71fe",shape="box",style="filled",color="grey" ]; +"770E" [ label="1e1fbbe14ac24e0518",shape="box",style="filled",color="grey" ]; +"136" [ label="644f112bb0aa452ee7040a",shape="hexagon",style="filled",color="green" ]; +"451E" [ label="52f247fc3b",shape="box",style="filled",color="grey" ]; +"137" [ label="010957669f3770aac",shape="hexagon",style="filled",color="green" ]; +"453E" [ label="78",shape="box",style="filled",color="grey" ]; +"138" [ label="0a185946ee443342b07d8e1",shape="hexagon",style="filled",color="green" ]; +"455E" [ label="87a7e69a72412",shape="box",style="filled",color="grey" ]; +"139" [ label="f66fe4df3d189e69ce10c9c",shape="hexagon",style="filled",color="green" ]; +"457E" [ label="21407f8a6d7",shape="box",style="filled",color="grey" ]; +"140" [ label="247e407f45b353f8",shape="hexagon",style="filled",color="green" ]; +"459E" [ label="",shape="box",style="filled",color="grey" ]; +"141" [ label="84907547f36d0ff7",shape="hexagon",style="filled",color="green" ]; +"461E" [ label="e920b915087",shape="box",style="filled",color="grey" ]; +"142" [ label="805004328dad9d315d",shape="hexagon",style="filled",color="green" ]; +"463E" [ label="4280833ef80172",shape="box",style="filled",color="grey" ]; +"143" [ label="4f0cbd3fbf0cb1e8c",shape="hexagon",style="filled",color="green" ]; +"465E" [ label="403126",shape="box",style="filled",color="grey" ]; +"144" [ label="4869e993f2bb10f",shape="hexagon",style="filled",color="green" ]; +"467E" [ label="ff",shape="box",style="filled",color="grey" ]; +"145" [ label="665b76844ff78fc2cf66ca2",shape="hexagon",style="filled",color="green" ]; +"469E" [ label="af0268dddd",shape="box",style="filled",color="grey" ]; +"146" [ label="3f16509139c7dad5163b91799",shape="hexagon",style="filled",color="green" ]; +"471E" [ label="3089106e3b",shape="box",style="filled",color="grey" ]; +"147" [ label="01db23a60422ba93a68611cc0",shape="hexagon",style="filled",color="green" ]; +"473E" [ label="",shape="box",style="filled",color="grey" ]; +"148" [ label="46125fcc583c0f494a3a1d3",shape="hexagon",style="filled",color="green" ]; +"475E" [ label="db6c4213a717bc",shape="box",style="filled",color="grey" ]; +"149" [ label="731857fe189fb398e80a0594",shape="hexagon",style="filled",color="green" ]; +"477E" [ label="3089106e3b",shape="box",style="filled",color="grey" ]; +"150" [ label="6fb7a84e370ef70feac5cb",shape="hexagon",style="filled",color="green" ]; +"479E" [ label="396b16a892fe",shape="box",style="filled",color="grey" ]; +"151" [ label="e343cea291b79a2ed4e",shape="hexagon",style="filled",color="green" ]; +"481E" [ label="88d8b220746882d",shape="box",style="filled",color="grey" ]; +"152" [ label="5f2592b20f13356b7fc8b42",shape="hexagon",style="filled",color="green" ]; +"483E" [ label="",shape="box",style="filled",color="grey" ]; +"153" [ label="275a0407e33e9b8aa9cdd051",shape="hexagon",style="filled",color="green" ]; +"731E" [ label="",shape="box",style="filled",color="grey" ]; +"154" [ label="011d119375cf494ca2fa8d59",shape="hexagon",style="filled",color="green" ]; +"750E" [ label="8983ffbc30deb364dd92c3ad85c9",shape="box",style="filled",color="grey" ]; +"155" [ label="173fd00917644f0f1f3e3",shape="hexagon",style="filled",color="green" ]; +"485E" [ label="0acc5bb8ca4",shape="box",style="filled",color="grey" ]; +"156" [ label="c72df69b40156a3254",shape="hexagon",style="filled",color="green" ]; +"487E" [ label="fff03efcd",shape="box",style="filled",color="grey" ]; +"157" [ label="6c632ad9c42228bb337",shape="hexagon",style="filled",color="green" ]; +"489E" [ label="eb8",shape="box",style="filled",color="grey" ]; +"158" [ label="bbb13dc62adf2de2a42b6",shape="hexagon",style="filled",color="green" ]; +"491E" [ label="69ce90c9b2",shape="box",style="filled",color="grey" ]; +"159" [ label="6282bc21f6",shape="hexagon",style="filled",color="green" ]; +"495E" [ label="de34214b4c258c9333ec3",shape="box",style="filled",color="grey" ]; +"160" [ label="71cf45dd4e91bcca945137b40e",shape="hexagon",style="filled",color="green" ]; +"499E" [ label="65fd8495",shape="box",style="filled",color="grey" ]; +"161" [ label="a3b6df27179b175c88fa4c9cf9f",shape="hexagon",style="filled",color="green" ]; +"501E" [ label="6577",shape="box",style="filled",color="grey" ]; +"162" [ label="284f14a259991806654e74",shape="hexagon",style="filled",color="green" ]; +"503E" [ label="4280833ef80172",shape="box",style="filled",color="grey" ]; +"163" [ label="a7c99ccf6ddf6f5ebbe",shape="hexagon",style="filled",color="green" ]; +"505E" [ label="c4fd8",shape="box",style="filled",color="grey" ]; +"164" [ label="c32d2697e8",shape="hexagon",style="filled",color="green" ]; +"507E" [ label="52f247fc3b",shape="box",style="filled",color="grey" ]; +"165" [ label="d12bd75c24b110ef90cdd35d3",shape="hexagon",style="filled",color="green" ]; +"509E" [ label="0668",shape="box",style="filled",color="grey" ]; +"166" [ label="1c07453d584f3d14b1876fdb",shape="hexagon",style="filled",color="green" ]; +"511E" [ label="460aed10cc9",shape="box",style="filled",color="grey" ]; +"167" [ label="f713a8b311ffa05ce3683ad10",shape="hexagon",style="filled",color="green" ]; +"513E" [ label="30d6138b63eb",shape="box",style="filled",color="grey" ]; +"168" [ label="3cdc90c57243373efaba65a",shape="hexagon",style="filled",color="green" ]; +"515E" [ label="fa2afbd869",shape="box",style="filled",color="grey" ]; +"169" [ label="e3bdbca0e2256fffa8a59018",shape="hexagon",style="filled",color="green" ]; +"517E" [ label="81dabfaba8",shape="box",style="filled",color="grey" ]; +"170" [ label="75ba8d840070942eb4e737849",shape="hexagon",style="filled",color="green" ]; +"519E" [ label="81dabfaba8",shape="box",style="filled",color="grey" ]; +"171" [ label="fbdc3ca37406f66635c8b226e",shape="hexagon",style="filled",color="green" ]; +"521E" [ label="8cbcf5cb5",shape="box",style="filled",color="grey" ]; +"172" [ label="40b49a5a9bb256c7a3286e56",shape="hexagon",style="filled",color="green" ]; +"523E" [ label="f72564578be",shape="box",style="filled",color="grey" ]; +"173" [ label="3b2f08d52e4bca3f9ca7bbbd6",shape="hexagon",style="filled",color="green" ]; +"525E" [ label="81dabfaba8",shape="box",style="filled",color="grey" ]; +"174" [ label="4a38abc630c82b0c48dfbf5271",shape="hexagon",style="filled",color="green" ]; +"527E" [ label="f0bd1521",shape="box",style="filled",color="grey" ]; +"175" [ label="2d7b7fb6c9ad6821752651f7",shape="hexagon",style="filled",color="green" ]; +"529E" [ label="47b2da3d",shape="box",style="filled",color="grey" ]; +"176" [ label="910b00285f11bb90d0a15641",shape="hexagon",style="filled",color="green" ]; +"531E" [ label="81dabfaba8",shape="box",style="filled",color="grey" ]; +"177" [ label="24431c3eb075102f07cc2c1be",shape="hexagon",style="filled",color="green" ]; +"533E" [ label="",shape="box",style="filled",color="grey" ]; +"178" [ label="07f8a9e55a16beddb3c9153b0",shape="hexagon",style="filled",color="green" ]; +"535E" [ label="81dabfaba8",shape="box",style="filled",color="grey" ]; +"179" [ label="c1c30f30d40c4f1f84924622f",shape="hexagon",style="filled",color="green" ]; +"537E" [ label="c5d5be3942",shape="box",style="filled",color="grey" ]; +"180" [ label="86276bb1e23f2c7ffcbe82a0",shape="hexagon",style="filled",color="green" ]; +"539E" [ label="0f940646",shape="box",style="filled",color="grey" ]; +"181" [ label="f78e145a127014eb43345a0c",shape="hexagon",style="filled",color="green" ]; +"541E" [ label="d370c12dbc",shape="box",style="filled",color="grey" ]; +"182" [ label="a27037332d9fa5c43bcfe94c0",shape="hexagon",style="filled",color="green" ]; +"543E" [ label="80874aa8",shape="box",style="filled",color="grey" ]; +"183" [ label="c29ce10bb8d19b498355aa04",shape="hexagon",style="filled",color="green" ]; +"545E" [ label="1c08373",shape="box",style="filled",color="grey" ]; +"184" [ label="4f8c642b53c349c687534bda35db",shape="hexagon",style="filled",color="green" ]; +"547E" [ label="46969c4",shape="box",style="filled",color="grey" ]; +"185" [ label="30cc206b1878485",shape="hexagon",style="filled",color="green" ]; +"549E" [ label="23ad1",shape="box",style="filled",color="grey" ]; +"186" [ label="5d69639a5e3bdd3d",shape="hexagon",style="filled",color="green" ]; +"551E" [ label="6139fa6adc88d",shape="box",style="filled",color="grey" ]; +"187" [ label="b656f0ed2202b8e46eb",shape="hexagon",style="filled",color="green" ]; +"553E" [ label="f6e6236b48bc3",shape="box",style="filled",color="grey" ]; +"188" [ label="3b566eaa70ed401479d43a9",shape="hexagon",style="filled",color="green" ]; +"555E" [ label="4c6c8c",shape="box",style="filled",color="grey" ]; +"189" [ label="d6125ef42bd9958",shape="hexagon",style="filled",color="green" ]; +"557E" [ label="4c6c8c",shape="box",style="filled",color="grey" ]; +"190" [ label="dd12f26f8d9bb55",shape="hexagon",style="filled",color="green" ]; +"559E" [ label="83c397b8bf7f",shape="box",style="filled",color="grey" ]; +"191" [ label="ea890ccca2f7c2107351",shape="hexagon",style="filled",color="green" ]; +"561E" [ label="eb8",shape="box",style="filled",color="grey" ]; +"192" [ label="84e4f1c582427a98d7b",shape="hexagon",style="filled",color="green" ]; +"563E" [ label="eb8",shape="box",style="filled",color="grey" ]; +"193" [ label="d378760b814eaecb6efe636e0efc4",shape="hexagon",style="filled",color="green" ]; +"565E" [ label="81bcc35f82891",shape="box",style="filled",color="grey" ]; +"194" [ label="f722890f70a32dce3baff371a",shape="hexagon",style="filled",color="green" ]; +"567E" [ label="84e4ede82074",shape="box",style="filled",color="grey" ]; +"195" [ label="666f11bb45c3a8dcf26e1ed79",shape="hexagon",style="filled",color="green" ]; +"569E" [ label="c90f755c8b6612d",shape="box",style="filled",color="grey" ]; +"196" [ label="91ecbe29a71f00ed5a3",shape="hexagon",style="filled",color="green" ]; +"571E" [ label="0a963fef9",shape="box",style="filled",color="grey" ]; +"197" [ label="30c3f3bf8463d3843dc57d8e98",shape="hexagon",style="filled",color="green" ]; +"573E" [ label="3089106e3b",shape="box",style="filled",color="grey" ]; +"198" [ label="8ea965ab6ee8dedb6c3333e9",shape="hexagon",style="filled",color="green" ]; +"575E" [ label="84e4ede82074",shape="box",style="filled",color="grey" ]; +"199" [ label="3eecb304bab2136a76deda",shape="hexagon",style="filled",color="green" ]; +"577E" [ label="8df",shape="box",style="filled",color="grey" ]; +"200" [ label="d886e4b76537a99bc71b8a9331c94",shape="hexagon",style="filled",color="green" ]; +"579E" [ label="1172dca23",shape="box",style="filled",color="grey" ]; +"201" [ label="dcc5d5e9d6c4e",shape="hexagon",style="filled",color="green" ]; +"581E" [ label="a8e9",shape="box",style="filled",color="grey" ]; +"202" [ label="8292af691429f8d9ed481ff71ffd",shape="hexagon",style="filled",color="green" ]; +"583E" [ label="212af4",shape="box",style="filled",color="grey" ]; +"203" [ label="12fcb26b3de00ef98719c2ca",shape="hexagon",style="filled",color="green" ]; +"585E" [ label="",shape="box",style="filled",color="grey" ]; +"204" [ label="a141a557a60912051f3c135",shape="hexagon",style="filled",color="green" ]; +"587E" [ label="",shape="box",style="filled",color="grey" ]; +"205" [ label="64eeeddfc34489ff396",shape="hexagon",style="filled",color="green" ]; +"751E" [ label="8983ffbc30deb364dd92c3ad85c9",shape="box",style="filled",color="grey" ]; +"206" [ label="f5d636e14a6cd716362158d",shape="hexagon",style="filled",color="green" ]; +"589E" [ label="32c958c9997",shape="box",style="filled",color="grey" ]; +"207" [ label="84e4978afc069d5a1aecbf2b",shape="hexagon",style="filled",color="green" ]; +"593E" [ label="56caa96d171a9ac2da7c",shape="box",style="filled",color="grey" ]; +"208" [ label="52a6c2063bccd83110c32",shape="hexagon",style="filled",color="green" ]; +"597E" [ label="",shape="box",style="filled",color="grey" ]; +"209" [ label="46f754ea06f070dbc023e571a876",shape="hexagon",style="filled",color="green" ]; +"599E" [ label="ffccaa9e3",shape="box",style="filled",color="grey" ]; +"210" [ label="c10cb9baf4dcb43e24",shape="hexagon",style="filled",color="green" ]; +"601E" [ label="ac6e99186",shape="box",style="filled",color="grey" ]; +"211" [ label="3dafe1619016463f521f",shape="hexagon",style="filled",color="green" ]; +"603E" [ label="b9",shape="box",style="filled",color="grey" ]; +"212" [ label="0f5db6ce12751ddcc64e",shape="hexagon",style="filled",color="green" ]; +"605E" [ label="bb828f1a326",shape="box",style="filled",color="grey" ]; +"213" [ label="34c8c8dc0f6e41c7e7b2",shape="hexagon",style="filled",color="green" ]; +"607E" [ label="2832ed5cea6",shape="box",style="filled",color="grey" ]; +"214" [ label="0a49c95f107c0aa57c9b5748",shape="hexagon",style="filled",color="green" ]; +"609E" [ label="",shape="box",style="filled",color="grey" ]; +"215" [ label="3b4fdad8e0429d112",shape="hexagon",style="filled",color="green" ]; +"611E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"216" [ label="17dafa5ebaafd48440e3",shape="hexagon",style="filled",color="green" ]; +"613E" [ label="b5f038f79a3",shape="box",style="filled",color="grey" ]; +"217" [ label="f4c69e5e212f89348122e8",shape="hexagon",style="filled",color="green" ]; +"615E" [ label="396b16a892fe",shape="box",style="filled",color="grey" ]; +"218" [ label="4f2e020854dfacce46a12",shape="hexagon",style="filled",color="green" ]; +"617E" [ label="e079d2c",shape="box",style="filled",color="grey" ]; +"219" [ label="6448451ac2ceade90715378b",shape="hexagon",style="filled",color="green" ]; +"619E" [ label="",shape="box",style="filled",color="grey" ]; +"220" [ label="7d7b14baa649330",shape="hexagon",style="filled",color="green" ]; +"621E" [ label="77d145b32328880440c7a",shape="box",style="filled",color="grey" ]; +"221" [ label="d7c27cc6f7b02a31eb64d",shape="hexagon",style="filled",color="green" ]; +"623E" [ label="87a7e69a72412",shape="box",style="filled",color="grey" ]; +"222" [ label="8f5a69ece1",shape="hexagon",style="filled",color="green" ]; +"752E" [ label="eb9cf6456613d4cd06f7c0894bd6",shape="box",style="filled",color="grey" ]; +"223" [ label="eccf7c722ddf",shape="hexagon",style="filled",color="green" ]; +"625E" [ label="df61d5f5fc",shape="box",style="filled",color="grey" ]; +"224" [ label="86633c26be93ada8b",shape="hexagon",style="filled",color="green" ]; +"627E" [ label="08500a6044",shape="box",style="filled",color="grey" ]; +"225" [ label="3f9ddf1ffbc0d38b",shape="hexagon",style="filled",color="green" ]; +"629E" [ label="07",shape="box",style="filled",color="grey" ]; +"226" [ label="e33792703",shape="hexagon",style="filled",color="green" ]; +"631E" [ label="6a8f5bafb1",shape="box",style="filled",color="grey" ]; +"227" [ label="293a225dc56dd1e0564e6bb",shape="hexagon",style="filled",color="green" ]; +"633E" [ label="e3aefac763",shape="box",style="filled",color="grey" ]; +"228" [ label="57c77c341f94afddef07e6",shape="hexagon",style="filled",color="green" ]; +"635E" [ label="5e80f85274",shape="box",style="filled",color="grey" ]; +"229" [ label="3bbfc7bfdbbb1ba1bfad7517",shape="hexagon",style="filled",color="green" ]; +"637E" [ label="",shape="box",style="filled",color="grey" ]; +"230" [ label="a7167d5eb5408b3839903",shape="hexagon",style="filled",color="green" ]; +"639E" [ label="8c8b5bde6",shape="box",style="filled",color="grey" ]; +"231" [ label="34d7bb6af4fcd8d630de72500c8",shape="hexagon",style="filled",color="green" ]; +"641E" [ label="32fe7eee5283",shape="box",style="filled",color="grey" ]; +"232" [ label="8e69341faa4489",shape="hexagon",style="filled",color="green" ]; +"643E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"233" [ label="459236f07c73814faf5",shape="hexagon",style="filled",color="green" ]; +"645E" [ label="18083a711d",shape="box",style="filled",color="grey" ]; +"234" [ label="c71aa521578164debd0c5",shape="hexagon",style="filled",color="green" ]; +"647E" [ label="78",shape="box",style="filled",color="grey" ]; +"235" [ label="a5520019b8a73bc141b5fd416a",shape="hexagon",style="filled",color="green" ]; +"649E" [ label="3219b6b71443",shape="box",style="filled",color="grey" ]; +"236" [ label="6c89dc59ee7aaebbbd6bb64",shape="hexagon",style="filled",color="green" ]; +"651E" [ label="8c8b5bde6",shape="box",style="filled",color="grey" ]; +"237" [ label="a9a36ef02f",shape="hexagon",style="filled",color="green" ]; +"653E" [ label="6a80cbe",shape="box",style="filled",color="grey" ]; +"238" [ label="3db761b596844f133c",shape="hexagon",style="filled",color="green" ]; +"655E" [ label="e920b915087",shape="box",style="filled",color="grey" ]; +"239" [ label="383db224d7508ef072bea21d0",shape="hexagon",style="filled",color="green" ]; +"657E" [ label="975fedfb64df",shape="box",style="filled",color="grey" ]; +"240" [ label="8e307415fb435445ced7",shape="hexagon",style="filled",color="green" ]; +"659E" [ label="21dff35936370ae5f",shape="box",style="filled",color="grey" ]; +"241" [ label="aff6d7896e0e142bbc3e78",shape="hexagon",style="filled",color="green" ]; +"661E" [ label="d2498",shape="box",style="filled",color="grey" ]; +"242" [ label="e153c6e676c7369b285b4e9033a",shape="hexagon",style="filled",color="green" ]; +"663E" [ label="",shape="box",style="filled",color="grey" ]; +"243" [ label="f3c4311de0e931f08c232b",shape="hexagon",style="filled",color="green" ]; +"665E" [ label="a849f9d352e",shape="box",style="filled",color="grey" ]; +"244" [ label="0c72a426929600000f5",shape="hexagon",style="filled",color="green" ]; +"667E" [ label="45827dbdd8",shape="box",style="filled",color="grey" ]; +"245" [ label="38fa61352f5086d2cb51",shape="hexagon",style="filled",color="green" ]; +"669E" [ label="af0268dddd",shape="box",style="filled",color="grey" ]; +"246" [ label="ad1dd724f1c3e",shape="hexagon",style="filled",color="green" ]; +"671E" [ label="cab04b7c14a",shape="box",style="filled",color="grey" ]; +"247" [ label="11bb8ed3ae227d3acefc",shape="hexagon",style="filled",color="green" ]; +"673E" [ label="eb8",shape="box",style="filled",color="grey" ]; +"248" [ label="f2c7b3bb4d44f977d0ab8a42351",shape="hexagon",style="filled",color="green" ]; +"675E" [ label="",shape="box",style="filled",color="grey" ]; +"249" [ label="51e045ca826077ae765",shape="hexagon",style="filled",color="green" ]; +"679E" [ label="e842",shape="box",style="filled",color="grey" ]; +"250" [ label="aa0adc8978020629574",shape="hexagon",style="filled",color="green" ]; +"753E" [ label="68d8993e61d8c82cd29e8d0182b0",shape="box",style="filled",color="grey" ]; +"251" [ label="3b6b2c549de670d7bf5fc0ee",shape="hexagon",style="filled",color="green" ]; +"681E" [ label="",shape="box",style="filled",color="grey" ]; +"252" [ label="5eea496cc301b2a9721",shape="hexagon",style="filled",color="green" ]; +"683E" [ label="",shape="box",style="filled",color="grey" ]; +"253" [ label="bfc6564cbdeeffac00a141",shape="hexagon",style="filled",color="green" ]; +"685E" [ label="3b0a8a1c2e5050bd",shape="box",style="filled",color="grey" ]; +"254" [ label="c360aaeb167487c9578a8f",shape="hexagon",style="filled",color="green" ]; +"687E" [ label="d",shape="box",style="filled",color="grey" ]; +"255" [ label="39d025b265f9790490781cb201",shape="hexagon",style="filled",color="green" ]; +"689E" [ label="5e80f85274",shape="box",style="filled",color="grey" ]; +"256" [ label="b4ce21e0a3df1d097277d6",shape="hexagon",style="filled",color="green" ]; +"691E" [ label="a849f9d352e",shape="box",style="filled",color="grey" ]; +"257" [ label="8bdb6a91c6dee925b557c705b3",shape="hexagon",style="filled",color="green" ]; +"693E" [ label="53069e384a2",shape="box",style="filled",color="grey" ]; +"258" [ label="ac487676a04e4",shape="hexagon",style="filled",color="green" ]; +"695E" [ label="a8e9",shape="box",style="filled",color="grey" ]; +"259" [ label="18115fa32ff1cb99",shape="hexagon",style="filled",color="green" ]; +"697E" [ label="45827dbdd8",shape="box",style="filled",color="grey" ]; +"260" [ label="b7b899dc8bc6a32b28cb098fa16",shape="hexagon",style="filled",color="green" ]; +"699E" [ label="32fe7eee5283",shape="box",style="filled",color="grey" ]; +"261" [ label="b69e426d974e1907e88",shape="hexagon",style="filled",color="green" ]; +"703E" [ label="e842",shape="box",style="filled",color="grey" ]; +"262" [ label="60d0128bdb61ae40e98638bd1391",shape="hexagon",style="filled",color="green" ]; +"705E" [ label="23ad1",shape="box",style="filled",color="grey" ]; +"264" [ label="8fb60d769e4c387",shape="hexagon",style="filled",color="green" ]; +"709E" [ label="6a8f5bafb1",shape="box",style="filled",color="grey" ]; +"265" [ label="e1fa7f549e5a0893bb42da5",shape="hexagon",style="filled",color="green" ]; +"711E" [ label="6a3c6921b0aeceda3",shape="box",style="filled",color="grey" ]; +"266" [ label="a77622f2ff77ffeeb2",shape="hexagon",style="filled",color="green" ]; +"713E" [ label="21dff35936370ae5f",shape="box",style="filled",color="grey" ]; +"267" [ label="30d9d350943c0e3ff7594b50",shape="hexagon",style="filled",color="green" ]; +"715E" [ label="b5e86c73d1198f",shape="box",style="filled",color="grey" ]; +"268" [ label="89ced1a7906d58d687d5a04",shape="hexagon",style="filled",color="green" ]; +"717E" [ label="c0174bbe7ae8",shape="box",style="filled",color="grey" ]; +"269" [ label="1de26f6b12b0d292f94184",shape="hexagon",style="filled",color="green" ]; +"719E" [ label="65fd8495",shape="box",style="filled",color="grey" ]; +"270" [ label="26fa7360ab81be9d4434a",shape="hexagon",style="filled",color="green" ]; +"721E" [ label="af0268dddd",shape="box",style="filled",color="grey" ]; +"272" [ label="4a9d79c960b8d33e39251e5f66",shape="hexagon" ]; +"34E" [ label="330342f283ef2",shape="box",style="filled",color="grey" ]; +"252E" [ label="3dafb9a29c00",shape="box",style="filled",color="grey" ]; +"436E" [ label="8d5137b16a",shape="box",style="filled",color="grey" ]; +"274" [ label="10a7d61c201c67a5e78542807cd",shape="hexagon" ]; +"59E" [ label="ef6361295eba07",shape="box",style="filled",color="grey" ]; +"500E" [ label="a8f0fe2eb7bc1471",shape="box",style="filled",color="grey" ]; +"720E" [ label="cfff3acd8e9d",shape="box",style="filled",color="grey" ]; +"275" [ label="f8ff39eab120851f143bf19",shape="hexagon" ]; +"98E" [ label="4e3cfd27a",shape="box",style="filled",color="grey" ]; +"278" [ label="4995c71223c9f6067324d387a2",shape="hexagon" ]; +"35E" [ label="57948adb5dead",shape="box",style="filled",color="grey" ]; +"488E" [ label="a738ba39",shape="box",style="filled",color="grey" ]; +"598E" [ label="be7d637c50c",shape="box",style="filled",color="grey" ]; +"604E" [ label="8d52f183ec",shape="box",style="filled",color="grey" ]; +"628E" [ label="cef12b6",shape="box",style="filled",color="grey" ]; +"279" [ label="b9ae94e6935503603341ecf4",shape="hexagon" ]; +"99E" [ label="14a3c17f3d",shape="box",style="filled",color="grey" ]; +"280" [ label="fd28c194a46fde909b019c52f",shape="hexagon" ]; +"242E" [ label="9fe65061641",shape="box",style="filled",color="grey" ]; +"270E" [ label="34d06d1ed6",shape="box",style="filled",color="grey" ]; +"272E" [ label="713db1c1",shape="box",style="filled",color="grey" ]; +"284E" [ label="90dccb18c0",shape="box",style="filled",color="grey" ]; +"286E" [ label="e17fea65",shape="box",style="filled",color="grey" ]; +"288E" [ label="aebb7b91b",shape="box",style="filled",color="grey" ]; +"586E" [ label="4348f3abcb7716",shape="box",style="filled",color="grey" ]; +"763E" [ label="b082f7a5ff",shape="box",style="filled",color="grey" ]; +"281" [ label="7c0ab977f5a3c4ab6d625f5033",shape="hexagon" ]; +"45E" [ label="20949455f573f",shape="box",style="filled",color="grey" ]; +"470E" [ label="c338481d79773",shape="box",style="filled",color="grey" ]; +"670E" [ label="e1d01ef89f",shape="box",style="filled",color="grey" ]; +"722E" [ label="c4507c22d19",shape="box",style="filled",color="grey" ]; +"282" [ label="7e0b91491c8c8566892cd9a0889",shape="hexagon" ]; +"103E" [ label="de9efa12873949",shape="box",style="filled",color="grey" ]; +"283" [ label="d58478d9c273ad4f4b2e091324",shape="hexagon" ]; +"165E" [ label="1a220eb692c",shape="box",style="filled",color="grey" ]; +"284" [ label="8be0efdd94a6383e87fbfded4f",shape="hexagon" ]; +"39E" [ label="c8a6c26d4fd9f",shape="box",style="filled",color="grey" ]; +"224E" [ label="8cbae42a3900",shape="box",style="filled",color="grey" ]; +"268E" [ label="fc73",shape="box",style="filled",color="grey" ]; +"632E" [ label="",shape="box",style="filled",color="grey" ]; +"710E" [ label="102f1",shape="box",style="filled",color="grey" ]; +"285" [ label="3aeb78ea51020a44f2d2615436dae",shape="hexagon" ]; +"53E" [ label="96deede0c6b44119",shape="box",style="filled",color="grey" ]; +"286" [ label="6bbd5b422edb8e358dcc20eecf9",shape="hexagon" ]; +"38E" [ label="4f2de229621272",shape="box",style="filled",color="grey" ]; +"166E" [ label="d495de0b35f6",shape="box",style="filled",color="grey" ]; +"288" [ label="4856000a6802ddfc121ef40432297",shape="hexagon",style="filled",color="#ff0000" ]; +"40E" [ label="04904a458422a5b9",shape="box",style="filled",color="grey" ]; +"218E" [ label="8cd4d",shape="box",style="filled",color="grey" ]; +"244E" [ label="",shape="box",style="filled",color="grey" ]; +"246E" [ label="9be88247",shape="box",style="filled",color="grey" ]; +"258E" [ label="4f05b",shape="box",style="filled",color="grey" ]; +"290E" [ label="8b092",shape="box",style="filled",color="grey" ]; +"292E" [ label="c3bbf4",shape="box",style="filled",color="grey" ]; +"308E" [ label="6331b3f",shape="box",style="filled",color="grey" ]; +"318E" [ label="",shape="box",style="filled",color="grey" ]; +"388E" [ label="3711",shape="box",style="filled",color="grey" ]; +"472E" [ label="c5255d",shape="box",style="filled",color="grey" ]; +"478E" [ label="5c6a2",shape="box",style="filled",color="grey" ]; +"566E" [ label="51ec95518d1b3",shape="box",style="filled",color="grey" ]; +"570E" [ label="82a65ed4b69",shape="box",style="filled",color="grey" ]; +"574E" [ label="05fed5e",shape="box",style="filled",color="grey" ]; +"608E" [ label="bf",shape="box",style="filled",color="grey" ]; +"614E" [ label="ce",shape="box",style="filled",color="grey" ]; +"658E" [ label="1a830d9f",shape="box",style="filled",color="grey" ]; +"664E" [ label="",shape="box",style="filled",color="grey" ]; +"682E" [ label="",shape="box",style="filled",color="grey" ]; +"289" [ label="2e31175cbd52fcd08360fe86d20",shape="hexagon" ]; +"41E" [ label="4ad5d68f07981a",shape="box",style="filled",color="grey" ]; +"636E" [ label="51192117f9b4",shape="box",style="filled",color="grey" ]; +"642E" [ label="6bf214d9e7fa5f2df",shape="box",style="filled",color="grey" ]; +"690E" [ label="558d8534f92fddfe",shape="box",style="filled",color="grey" ]; +"700E" [ label="6819fd5a6cdd280dd",shape="box",style="filled",color="grey" ]; +"290" [ label="3aa0ce5efcf79bc3ecced1886e89",shape="hexagon" ]; +"56E" [ label="ff9d64ddf49a20f",shape="box",style="filled",color="grey" ]; +"264E" [ label="6c93f24516f01d",shape="box",style="filled",color="grey" ]; +"510E" [ label="32b98f11f3d01d6",shape="box",style="filled",color="grey" ]; +"718E" [ label="8f7c875500073",shape="box",style="filled",color="grey" ]; +"291" [ label="7c1767485953d9c2",shape="hexagon" ]; +"66E" [ label="086",shape="box",style="filled",color="grey" ]; +"76E" [ label="",shape="box",style="filled",color="grey" ]; +"610E" [ label="450d3a2d49cbfd",shape="box",style="filled",color="grey" ]; +"292" [ label="9c1305d59c37e9be9f13d7d049c",shape="hexagon" ]; +"73E" [ label="817",shape="box",style="filled",color="grey" ]; +"293" [ label="efe092824916a5637ee35d439589",shape="hexagon" ]; +"49E" [ label="",shape="box",style="filled",color="grey" ]; +"214E" [ label="",shape="box",style="filled",color="grey" ]; +"216E" [ label="",shape="box",style="filled",color="grey" ]; +"236E" [ label="",shape="box",style="filled",color="grey" ]; +"278E" [ label="",shape="box",style="filled",color="grey" ]; +"358E" [ label="",shape="box",style="filled",color="grey" ]; +"398E" [ label="",shape="box",style="filled",color="grey" ]; +"400E" [ label="",shape="box",style="filled",color="grey" ]; +"402E" [ label="",shape="box",style="filled",color="grey" ]; +"404E" [ label="",shape="box",style="filled",color="grey" ]; +"406E" [ label="",shape="box",style="filled",color="grey" ]; +"408E" [ label="",shape="box",style="filled",color="grey" ]; +"412E" [ label="",shape="box",style="filled",color="grey" ]; +"438E" [ label="",shape="box",style="filled",color="grey" ]; +"448E" [ label="",shape="box",style="filled",color="grey" ]; +"476E" [ label="",shape="box",style="filled",color="grey" ]; +"504E" [ label="",shape="box",style="filled",color="grey" ]; +"552E" [ label="",shape="box",style="filled",color="grey" ]; +"634E" [ label="",shape="box",style="filled",color="grey" ]; +"768E" [ label="",shape="box",style="filled",color="grey" ]; +"295" [ label="70815f0352b43dc1562133ab6eb",shape="hexagon",style="filled",color="#A52A2A" ]; +"44E" [ label="ef2d4636934472",shape="box",style="filled",color="grey" ]; +"92E" [ label="22bd92e302816",shape="box",style="filled",color="grey" ]; +"250E" [ label="74e86",shape="box",style="filled",color="grey" ]; +"316E" [ label="",shape="box",style="filled",color="grey" ]; +"380E" [ label="",shape="box",style="filled",color="grey" ]; +"424E" [ label="c",shape="box",style="filled",color="grey" ]; +"442E" [ label="a5a",shape="box",style="filled",color="grey" ]; +"446E" [ label="bce",shape="box",style="filled",color="grey" ]; +"454E" [ label="",shape="box",style="filled",color="grey" ]; +"460E" [ label="",shape="box",style="filled",color="grey" ]; +"462E" [ label="",shape="box",style="filled",color="grey" ]; +"648E" [ label="",shape="box",style="filled",color="grey" ]; +"656E" [ label="e9",shape="box",style="filled",color="grey" ]; +"666E" [ label="b701e7",shape="box",style="filled",color="grey" ]; +"692E" [ label="f2e7cc",shape="box",style="filled",color="grey" ]; +"712E" [ label="8a9eb2806b0aa",shape="box",style="filled",color="grey" ]; +"296" [ label="e287d497450664a4c0f4efc338",shape="hexagon",style="filled",color="#ff0000" ]; +"47E" [ label="06eff1db45cdf",shape="box",style="filled",color="grey" ]; +"330E" [ label="c0f34a600",shape="box",style="filled",color="grey" ]; +"514E" [ label="bd7aca295ca",shape="box",style="filled",color="grey" ]; +"516E" [ label="0da9135",shape="box",style="filled",color="grey" ]; +"518E" [ label="fe821bce",shape="box",style="filled",color="grey" ]; +"520E" [ label="e64f22a31",shape="box",style="filled",color="grey" ]; +"522E" [ label="46e412a3",shape="box",style="filled",color="grey" ]; +"526E" [ label="99da1f8a5",shape="box",style="filled",color="grey" ]; +"528E" [ label="0f167280",shape="box",style="filled",color="grey" ]; +"530E" [ label="82d201",shape="box",style="filled",color="grey" ]; +"532E" [ label="1d529eb4",shape="box",style="filled",color="grey" ]; +"534E" [ label="",shape="box",style="filled",color="grey" ]; +"536E" [ label="bf141dbce",shape="box",style="filled",color="grey" ]; +"538E" [ label="e3fd0c7b3",shape="box",style="filled",color="grey" ]; +"540E" [ label="c96cb3",shape="box",style="filled",color="grey" ]; +"542E" [ label="0fabab47",shape="box",style="filled",color="grey" ]; +"544E" [ label="1b82200",shape="box",style="filled",color="grey" ]; +"297" [ label="2ced414a91575a48f2dd29a",shape="hexagon" ]; +"46E" [ label="85221d5e9e",shape="box",style="filled",color="grey" ]; +"93E" [ label="97a7eea3f",shape="box",style="filled",color="grey" ]; +"206E" [ label="4d22e1",shape="box",style="filled",color="grey" ]; +"426E" [ label="e65185ca",shape="box",style="filled",color="grey" ]; +"550E" [ label="",shape="box",style="filled",color="grey" ]; +"706E" [ label="a9012b7bb5",shape="box",style="filled",color="grey" ]; +"298" [ label="38f162cf917ce7298663a1f1c607",shape="hexagon" ]; +"36E" [ label="a031c9192ae8e75",shape="box",style="filled",color="grey" ]; +"95E" [ label="062fc905b9eb35",shape="box",style="filled",color="grey" ]; +"364E" [ label="c8fc17180bea86",shape="box",style="filled",color="grey" ]; +"394E" [ label="09e64744536c5e1",shape="box",style="filled",color="grey" ]; +"420E" [ label="af4a1fac3e2076",shape="box",style="filled",color="grey" ]; +"456E" [ label="238805e2194c3",shape="box",style="filled",color="grey" ]; +"624E" [ label="73e6ed83012",shape="box",style="filled",color="grey" ]; +"299" [ label="549fa15d68f0b3bee6192f888cd8",shape="hexagon" ]; +"48E" [ label="d17f8f4eeb8e63d",shape="box",style="filled",color="grey" ]; +"168E" [ label="cca7040e47789",shape="box",style="filled",color="grey" ]; +"260E" [ label="47ebc3f17",shape="box",style="filled",color="grey" ]; +"282E" [ label="cf5a6049ad",shape="box",style="filled",color="grey" ]; +"554E" [ label="2a47a6a27",shape="box",style="filled",color="grey" ]; +"590E" [ label="eff3468631dd4",shape="box",style="filled",color="grey" ]; +"767E" [ label="efb52b499303115c33fd",shape="box",style="filled",color="grey" ]; +"300" [ label="8593dcf973b110d00cecdc1e756",shape="hexagon",style="filled",color="#ff7f00" ]; +"62E" [ label="472a156cf2b55f",shape="box",style="filled",color="grey" ]; +"190E" [ label="647",shape="box",style="filled",color="grey" ]; +"226E" [ label="",shape="box",style="filled",color="grey" ]; +"238E" [ label="8a",shape="box",style="filled",color="grey" ]; +"254E" [ label="",shape="box",style="filled",color="grey" ]; +"256E" [ label="",shape="box",style="filled",color="grey" ]; +"262E" [ label="",shape="box",style="filled",color="grey" ]; +"266E" [ label="e8b",shape="box",style="filled",color="grey" ]; +"274E" [ label="",shape="box",style="filled",color="grey" ]; +"276E" [ label="f",shape="box",style="filled",color="grey" ]; +"294E" [ label="",shape="box",style="filled",color="grey" ]; +"296E" [ label="",shape="box",style="filled",color="grey" ]; +"310E" [ label="1b34fb150",shape="box",style="filled",color="grey" ]; +"320E" [ label="",shape="box",style="filled",color="grey" ]; +"322E" [ label="a7d2",shape="box",style="filled",color="grey" ]; +"332E" [ label="",shape="box",style="filled",color="grey" ]; +"340E" [ label="",shape="box",style="filled",color="grey" ]; +"344E" [ label="f55670",shape="box",style="filled",color="grey" ]; +"346E" [ label="1ed67841",shape="box",style="filled",color="grey" ]; +"348E" [ label="07283",shape="box",style="filled",color="grey" ]; +"374E" [ label="73ba1714ee",shape="box",style="filled",color="grey" ]; +"378E" [ label="27709106",shape="box",style="filled",color="grey" ]; +"452E" [ label="93ea0",shape="box",style="filled",color="grey" ]; +"508E" [ label="",shape="box",style="filled",color="grey" ]; +"524E" [ label="1d792d81",shape="box",style="filled",color="grey" ]; +"612E" [ label="a",shape="box",style="filled",color="grey" ]; +"626E" [ label="",shape="box",style="filled",color="grey" ]; +"638E" [ label="",shape="box",style="filled",color="grey" ]; +"644E" [ label="",shape="box",style="filled",color="grey" ]; +"654E" [ label="",shape="box",style="filled",color="grey" ]; +"672E" [ label="",shape="box",style="filled",color="grey" ]; +"302" [ label="23f94655294d3ff537f2915fa",shape="hexagon" ]; +"797E" [ label="",shape="box",style="filled",color="grey" ]; +"798E" [ label="a2eab7c9fa641e5f",shape="box",style="filled",color="grey" ]; +"303" [ label="a9058241db5b6b6c25569acdf5",shape="hexagon" ]; +"52E" [ label="b2babf3244213",shape="box",style="filled",color="grey" ]; +"650E" [ label="b354cd9e9dbb0bfa",shape="box",style="filled",color="grey" ]; +"304" [ label="bdbdb31bd777fb65dd6dd2d0e7",shape="hexagon" ]; +"50E" [ label="3bec1c012b498",shape="box",style="filled",color="grey" ]; +"640E" [ label="c54f0fc1e05",shape="box",style="filled",color="grey" ]; +"646E" [ label="9ab6c66dc",shape="box",style="filled",color="grey" ]; +"652E" [ label="699e3db878047",shape="box",style="filled",color="grey" ]; +"306" [ label="1d4ea80c7194689d69f9592186",shape="hexagon" ]; +"55E" [ label="8066f87a88f4e",shape="box",style="filled",color="grey" ]; +"220E" [ label="3a8173d6c",shape="box",style="filled",color="grey" ]; +"338E" [ label="24dfe1a997a",shape="box",style="filled",color="grey" ]; +"368E" [ label="65a1",shape="box",style="filled",color="grey" ]; +"486E" [ label="59a8b435ccd",shape="box",style="filled",color="grey" ]; +"490E" [ label="86e9b0428",shape="box",style="filled",color="grey" ]; +"562E" [ label="5a7a610a8a",shape="box",style="filled",color="grey" ]; +"564E" [ label="8f143077e",shape="box",style="filled",color="grey" ]; +"600E" [ label="6472c2861e0e0dd681",shape="box",style="filled",color="grey" ]; +"668E" [ label="f0f45e707",shape="box",style="filled",color="grey" ]; +"674E" [ label="95e93c4a13",shape="box",style="filled",color="grey" ]; +"698E" [ label="33e1de",shape="box",style="filled",color="grey" ]; +"307" [ label="7204950f6233bf9c9e1f00d4a870",shape="hexagon" ]; +"107E" [ label="ccceeef40edda78",shape="box",style="filled",color="grey" ]; +"308" [ label="a2c4b1d72e2da483a86ae0c62e5",shape="hexagon" ]; +"108E" [ label="eedc819a68add6",shape="box",style="filled",color="grey" ]; +"309" [ label="f603819d560c5603259aa05dca",shape="hexagon" ]; +"109E" [ label="acacfc83af504",shape="box",style="filled",color="grey" ]; +"310" [ label="2f43cba12702078b4e0d3bfdae2bc",shape="hexagon" ]; +"110E" [ label="3c1edc8de4795936",shape="box",style="filled",color="grey" ]; +"311" [ label="8f9cdc26798117dd3e9ee4a8770",shape="hexagon" ]; +"58E" [ label="881d373",shape="box",style="filled",color="grey" ]; +"234E" [ label="",shape="box",style="filled",color="grey" ]; +"300E" [ label="",shape="box",style="filled",color="grey" ]; +"306E" [ label="8c7cd9b93b1cbe48e1",shape="box",style="filled",color="grey" ]; +"314E" [ label="616d8a7b",shape="box",style="filled",color="grey" ]; +"342E" [ label="",shape="box",style="filled",color="grey" ]; +"354E" [ label="",shape="box",style="filled",color="grey" ]; +"370E" [ label="",shape="box",style="filled",color="grey" ]; +"382E" [ label="",shape="box",style="filled",color="grey" ]; +"422E" [ label="",shape="box",style="filled",color="grey" ]; +"444E" [ label="",shape="box",style="filled",color="grey" ]; +"582E" [ label="",shape="box",style="filled",color="grey" ]; +"620E" [ label="",shape="box",style="filled",color="grey" ]; +"630E" [ label="",shape="box",style="filled",color="grey" ]; +"684E" [ label="",shape="box",style="filled",color="grey" ]; +"696E" [ label="",shape="box",style="filled",color="grey" ]; +"801E" [ label="",shape="box",style="filled",color="grey" ]; +"312" [ label="97c9d726e27304311901a52ce",shape="hexagon",style="filled",color="#ff0000" ]; +"42E" [ label="1112164c2f7a",shape="box",style="filled",color="grey" ]; +"192E" [ label="5c609b12c",shape="box",style="filled",color="grey" ]; +"194E" [ label="00265",shape="box",style="filled",color="grey" ]; +"196E" [ label="04767",shape="box",style="filled",color="grey" ]; +"198E" [ label="f0d99f16",shape="box",style="filled",color="grey" ]; +"200E" [ label="",shape="box",style="filled",color="grey" ]; +"202E" [ label="6e186b",shape="box",style="filled",color="grey" ]; +"204E" [ label="d382",shape="box",style="filled",color="grey" ]; +"312E" [ label="c6b5321a",shape="box",style="filled",color="grey" ]; +"336E" [ label="",shape="box",style="filled",color="grey" ]; +"376E" [ label="",shape="box",style="filled",color="grey" ]; +"384E" [ label="aeb8",shape="box",style="filled",color="grey" ]; +"386E" [ label="2e53009d4a375",shape="box",style="filled",color="grey" ]; +"428E" [ label="",shape="box",style="filled",color="grey" ]; +"474E" [ label="",shape="box",style="filled",color="grey" ]; +"484E" [ label="",shape="box",style="filled",color="grey" ]; +"546E" [ label="dea1d1",shape="box",style="filled",color="grey" ]; +"548E" [ label="5a0b4b906a",shape="box",style="filled",color="grey" ]; +"314" [ label="1727041c622518c9dd24f7c211",shape="hexagon" ]; +"113E" [ label="49704867bee95",shape="box",style="filled",color="grey" ]; +"315" [ label="31f2f9aef958979f9f3532b9b",shape="hexagon",style="filled",color="#ff0000" ]; +"43E" [ label="47cd70f",shape="box",style="filled",color="grey" ]; +"240E" [ label="248df40dae",shape="box",style="filled",color="grey" ]; +"298E" [ label="",shape="box",style="filled",color="grey" ]; +"334E" [ label="9dd5bf47f",shape="box",style="filled",color="grey" ]; +"360E" [ label="",shape="box",style="filled",color="grey" ]; +"390E" [ label="28533c",shape="box",style="filled",color="grey" ]; +"418E" [ label="",shape="box",style="filled",color="grey" ]; +"492E" [ label="a4c7d0",shape="box",style="filled",color="grey" ]; +"502E" [ label="4f6f7f",shape="box",style="filled",color="grey" ]; +"584E" [ label="7ab64a969",shape="box",style="filled",color="grey" ]; +"588E" [ label="",shape="box",style="filled",color="grey" ]; +"602E" [ label="69",shape="box",style="filled",color="grey" ]; +"606E" [ label="67513d",shape="box",style="filled",color="grey" ]; +"662E" [ label="cf",shape="box",style="filled",color="grey" ]; +"316" [ label="a54092a3033f7d5e41e0a76c1",shape="hexagon" ]; +"51E" [ label="1467f017b74e",shape="box",style="filled",color="grey" ]; +"317" [ label="2043b477ac0393676a4309514d0",shape="hexagon" ]; +"116E" [ label="bdec8c86db51b9",shape="box",style="filled",color="grey" ]; +"318" [ label="ab48d1f65812bc0f8ab6941c3b5",shape="hexagon" ]; +"74E" [ label="81",shape="box",style="filled",color="grey" ]; +"319" [ label="ca3d67754cf62fdafbf0a1e0",shape="hexagon" ]; +"57E" [ label="75b14f1719d",shape="box",style="filled",color="grey" ]; +"94E" [ label="62f36ea98a",shape="box",style="filled",color="grey" ]; +"350E" [ label="e3a76d31ca59a",shape="box",style="filled",color="grey" ]; +"440E" [ label="b3cadc253f7",shape="box",style="filled",color="grey" ]; +"466E" [ label="fb58e11",shape="box",style="filled",color="grey" ]; +"676E" [ label="8606837526d81cdec",shape="box",style="filled",color="grey" ]; +"320" [ label="a7a7f3681dad1250b01cf80bc17",shape="hexagon" ]; +"60E" [ label="2c514b0cd8f7d3",shape="box",style="filled",color="grey" ]; +"366E" [ label="7e494b",shape="box",style="filled",color="grey" ]; +"434E" [ label="15d44ab97",shape="box",style="filled",color="grey" ]; +"458E" [ label="78b2d75d00166",shape="box",style="filled",color="grey" ]; +"618E" [ label="761e0f72f95",shape="box",style="filled",color="grey" ]; +"321" [ label="275afb2b215b966d9fac51b96b9",shape="hexagon" ]; +"72E" [ label="ac284d73563",shape="box",style="filled",color="grey" ]; +"362E" [ label="7e74e1587f3a4d208",shape="box",style="filled",color="grey" ]; +"372E" [ label="ffd1b1af3b6864078f3",shape="box",style="filled",color="grey" ]; +"572E" [ label="b38049e00",shape="box",style="filled",color="grey" ]; +"322" [ label="c3c93c700edc0cb4f95f03c04",shape="hexagon" ]; +"54E" [ label="99237fce1358",shape="box",style="filled",color="grey" ]; +"222E" [ label="3dcf8f454",shape="box",style="filled",color="grey" ]; +"302E" [ label="c5acd20cad2",shape="box",style="filled",color="grey" ]; +"556E" [ label="6c998bf2a5edd",shape="box",style="filled",color="grey" ]; +"558E" [ label="4b683",shape="box",style="filled",color="grey" ]; +"323" [ label="63a3d4fb9d38a0182be6e39e76",shape="hexagon" ]; +"37E" [ label="bba6e6e194ccf",shape="box",style="filled",color="grey" ]; +"208E" [ label="01938827",shape="box",style="filled",color="grey" ]; +"210E" [ label="9",shape="box",style="filled",color="grey" ]; +"352E" [ label="64ef1d545",shape="box",style="filled",color="grey" ]; +"450E" [ label="b473716",shape="box",style="filled",color="grey" ]; +"568E" [ label="7c13bf753da",shape="box",style="filled",color="grey" ]; +"576E" [ label="4e4a79111d",shape="box",style="filled",color="grey" ]; +"686E" [ label="af4abb0d6a99",shape="box",style="filled",color="grey" ]; +"324" [ label="4399cf78123dedd0dfe9776104",shape="hexagon" ]; +"228E" [ label="af9c489df53",shape="box",style="filled",color="grey" ]; +"248E" [ label="3703059dbc5a8",shape="box",style="filled",color="grey" ]; +"304E" [ label="8a46e6",shape="box",style="filled",color="grey" ]; +"468E" [ label="f9d09",shape="box",style="filled",color="grey" ]; +"578E" [ label="cd1e9af3dec2",shape="box",style="filled",color="grey" ]; +"660E" [ label="9e650e89bb",shape="box",style="filled",color="grey" ]; +"688E" [ label="f62b136b2171",shape="box",style="filled",color="grey" ]; +"694E" [ label="4727c415d06bcbef",shape="box",style="filled",color="grey" ]; +"714E" [ label="38b3b0d9",shape="box",style="filled",color="grey" ]; +"766E" [ label="a153512d982",shape="box",style="filled",color="grey" ]; +"325" [ label="40f253cd228f7ac2d0aee",shape="hexagon" ]; +"97E" [ label="a3ff993",shape="box",style="filled",color="grey" ]; +"506E" [ label="7528dd86b",shape="box",style="filled",color="grey" ]; +"326" [ label="89a2505da6179a80202d4a6c3",shape="hexagon" ]; +"61E" [ label="75eea05672a5",shape="box",style="filled",color="grey" ]; +"175E" [ label="3b0c08dd2ca",shape="box",style="filled",color="grey" ]; +"482E" [ label="a3781072b",shape="box",style="filled",color="grey" ]; +"328" [ label="2601085bde1b2450d64509f36",shape="hexagon" ]; +"75E" [ label="0efbd",shape="box",style="filled",color="grey" ]; +"580E" [ label="bb92d1da1f38d52f8ff",shape="box",style="filled",color="grey" ]; +"329" [ label="5c81103c751345d0ee0f4bd",shape="hexagon" ]; +"96E" [ label="b23526044",shape="box",style="filled",color="grey" ]; +"330" [ label="fcbd9ad14139718bc6fcc8b4",shape="hexagon" ]; +"100E" [ label="73ca543bf1",shape="box",style="filled",color="grey" ]; +"170E" [ label="c2f32e2cf9",shape="box",style="filled",color="grey" ]; +"333" [ label="44cbb41a9cfc15497eacd294",color="yellow",style="filled",shape="doubleoctagon" ]; +"63E" [ label="6a91",shape="box",style="filled",color="grey" ]; +"67E" [ label="b074e",shape="box",style="filled",color="grey" ]; +"68E" [ label="06209",shape="box",style="filled",color="grey" ]; +"69E" [ label="58e3dcc618",shape="box",style="filled",color="grey" ]; +"70E" [ label="eee44624da",shape="box",style="filled",color="grey" ]; +"71E" [ label="6a91",shape="box",style="filled",color="grey" ]; +"802E" [ label="e1e8c",shape="box",style="filled",color="grey" ]; +"793E" [ label="",shape="box",style="filled",color="grey" ]; +"334" [ label="b46b0756dba915943839e90a55",color="yellow",style="filled",shape="doubleoctagon" ]; +"64E" [ label="5fdf",shape="box",style="filled",color="grey" ]; +"81E" [ label="3eca1f94dc181",shape="box",style="filled",color="grey" ]; +"82E" [ label="6b1bb9b0e",shape="box",style="filled",color="grey" ]; +"83E" [ label="a54d477232",shape="box",style="filled",color="grey" ]; +"84E" [ label="a164d9f60fbbdd",shape="box",style="filled",color="grey" ]; +"85E" [ label="78c8463ea",shape="box",style="filled",color="grey" ]; +"86E" [ label="c110ba7",shape="box",style="filled",color="grey" ]; +"87E" [ label="3b63cdc0f",shape="box",style="filled",color="grey" ]; +"88E" [ label="6f578c5128",shape="box",style="filled",color="grey" ]; +"89E" [ label="3e048573fd",shape="box",style="filled",color="grey" ]; +"336" [ URL="tes hi",area="test",label="825c7994d5da13afe519861818",color="#ff0000",style="filled",shape="tripleoctagon" ]; +"1E" [ label="f4bef37b6a94bfd00",shape="box",style="filled",color="grey" ]; +"2E" [ label="d2647f8b6d8661d08",shape="box",style="filled",color="grey" ]; +"3E" [ label="964cb56d8f69ff058",shape="box",style="filled",color="grey" ]; +"4E" [ label="4f35e206816c3bd22",shape="box",style="filled",color="grey" ]; +"5E" [ label="affb2d716803a2d3e",shape="box",style="filled",color="grey" ]; +"6E" [ label="e4ae306d9bd669c70",shape="box",style="filled",color="grey" ]; +"7E" [ label="4dbf4395236fb03ed",shape="box",style="filled",color="grey" ]; +"8E" [ label="15b3ad672cd2f713a",shape="box",style="filled",color="grey" ]; +"9E" [ label="8d6e6e0cd9b842a47",shape="box",style="filled",color="grey" ]; +"10E" [ label="00d0dd018fe879f96",shape="box",style="filled",color="grey" ]; +"11E" [ label="f28b78d4803c",shape="box",style="filled",color="grey" ]; +"12E" [ label="2d886da042b5384b4",shape="box",style="filled",color="grey" ]; +"13E" [ label="548c0081a62132b44",shape="box",style="filled",color="grey" ]; +"14E" [ label="52126553e52385d16",shape="box",style="filled",color="grey" ]; +"15E" [ label="9fe716e738eaea34e",shape="box",style="filled",color="grey" ]; +"16E" [ label="5782807b5f575e0a8",shape="box",style="filled",color="grey" ]; +"17E" [ label="792fd6f9df1fa1e33",shape="box",style="filled",color="grey" ]; +"18E" [ label="c471b6fdbfb852661",shape="box",style="filled",color="grey" ]; +"19E" [ label="a84844dfd0052b3b5",shape="box",style="filled",color="grey" ]; +"20E" [ label="724dabdce9744d061",shape="box",style="filled",color="grey" ]; +"21E" [ label="57f7fd2eecec93c8b",shape="box",style="filled",color="grey" ]; +"22E" [ label="baba65f670ee34a88",shape="box",style="filled",color="grey" ]; +"23E" [ label="ac34ec0f0488b17ec",shape="box",style="filled",color="grey" ]; +"24E" [ label="51e74bec5513083bb",shape="box",style="filled",color="grey" ]; +"25E" [ label="8e2d970b2f820ee35",shape="box",style="filled",color="grey" ]; +"26E" [ label="19398d3cd6b9c674f",shape="box",style="filled",color="grey" ]; +"27E" [ label="6505e29f4a11d9530",shape="box",style="filled",color="grey" ]; +"28E" [ label="bc4824f07a9d2bba6",shape="box",style="filled",color="grey" ]; +"29E" [ label="3acbf8a1537e4e1a1",shape="box",style="filled",color="grey" ]; +"30E" [ label="536264e787cf70469",shape="box",style="filled",color="grey" ]; +"31E" [ label="d",shape="box",style="filled",color="grey" ]; +"65E" [ label="d4b2",shape="box",style="filled",color="grey" ]; +"119E" [ label="2a9caef7",shape="box",style="filled",color="grey" ]; +"150E" [ label="73d12",shape="box",style="filled",color="grey" ]; +"176E" [ label="8896166adc0",shape="box",style="filled",color="grey" ]; +"743E" [ label="9f",shape="box",style="filled",color="grey" ]; +"744E" [ label="2e1313c",shape="box",style="filled",color="grey" ]; +"764E" [ label="cd6",shape="box",style="filled",color="grey" ]; +"337" [ label="8304a439f91fc90b3fe8dd35be8",color="yellow",style="filled",shape="doubleoctagon" ]; +"120E" [ label="345d26b3f821fe",shape="box",style="filled",color="grey" ]; +"121E" [ label="357679fea1e2f",shape="box",style="filled",color="grey" ]; +"122E" [ label="c71043819b6a79",shape="box",style="filled",color="grey" ]; +"123E" [ label="f9df653b86fb8df",shape="box",style="filled",color="grey" ]; +"124E" [ label="020df871874cd",shape="box",style="filled",color="grey" ]; +"125E" [ label="4c52fdd8e396692",shape="box",style="filled",color="grey" ]; +"126E" [ label="8b98c3ddbe0b336",shape="box",style="filled",color="grey" ]; +"127E" [ label="d9f4abac731a9e",shape="box",style="filled",color="grey" ]; +"128E" [ label="50f4d9b97aefe",shape="box",style="filled",color="grey" ]; +"129E" [ label="ea920d9f5b295119",shape="box",style="filled",color="grey" ]; +"130E" [ label="ff5c9b242337c",shape="box",style="filled",color="grey" ]; +"131E" [ label="4e12f7ff0918",shape="box",style="filled",color="grey" ]; +"132E" [ label="ee3b6be71d59b",shape="box",style="filled",color="grey" ]; +"133E" [ label="615cd6b5e3d21c",shape="box",style="filled",color="grey" ]; +"134E" [ label="6d52dd1b198bb",shape="box",style="filled",color="grey" ]; +"135E" [ label="8c932e1e502dca",shape="box",style="filled",color="grey" ]; +"136E" [ label="e84330eef281284a",shape="box",style="filled",color="grey" ]; +"137E" [ label="85fc23f1c88b4",shape="box",style="filled",color="grey" ]; +"138E" [ label="5997cb0c083422",shape="box",style="filled",color="grey" ]; +"339" [ label="b1ffbabb24d71f67d1e0ce23c51",color="yellow",style="filled",shape="doubleoctagon" ]; +"151E" [ label="",shape="box",style="filled",color="grey" ]; +"153E" [ label="41a8b095c7fd3",shape="box",style="filled",color="grey" ]; +"154E" [ label="151bcc2a8de7ea634",shape="box",style="filled",color="grey" ]; +"155E" [ label="6c541cad8de1b15",shape="box",style="filled",color="grey" ]; +"156E" [ label="c935c7f4d1090ac",shape="box",style="filled",color="grey" ]; +"157E" [ label="5ce1fcfb042b",shape="box",style="filled",color="grey" ]; +"158E" [ label="531806429433",shape="box",style="filled",color="grey" ]; +"159E" [ label="d285240b89cb",shape="box",style="filled",color="grey" ]; +"160E" [ label="f22c27c0f0a54e",shape="box",style="filled",color="grey" ]; +"161E" [ label="8d0d8314d211d80",shape="box",style="filled",color="grey" ]; +"162E" [ label="",shape="box",style="filled",color="grey" ]; +"347" [ label="9652ab8b55fdb2a36d1f3fe020",shape="hexagon" ]; +"139E" [ label="ef8b68bb5772f3",shape="box",style="filled",color="grey" ]; +"795E" [ label="16c3ae29c0bc713",shape="box",style="filled",color="grey" ]; +"348" [ label="676bbe7d1c1fb71742df534ce8",shape="hexagon" ]; +"799E" [ label="a78eb40ae56aaa9",shape="box",style="filled",color="grey" ]; +"800E" [ label="6aae8d25951",shape="box",style="filled",color="grey" ]; +"349" [ label="66c0220688a999aaf7f1702d1",shape="hexagon" ]; +"141E" [ label="67b6a4dca3a6d",shape="box",style="filled",color="grey" ]; +"350" [ label="1322fb0818783e6f9a4f173d47c52",shape="hexagon" ]; +"142E" [ label="9696c0950295d8cb5",shape="box",style="filled",color="grey" ]; +"678E" [ label="b5c747cc9",shape="box",style="filled",color="grey" ]; +"351" [ label="ff07977fca5513098d220d1eb3a",shape="hexagon" ]; +"143E" [ label="89a36b13f8c344b",shape="box",style="filled",color="grey" ]; +"232E" [ label="56292d076643",shape="box",style="filled",color="grey" ]; +"680E" [ label="b5c747cc9",shape="box",style="filled",color="grey" ]; +"704E" [ label="431430c49",shape="box",style="filled",color="grey" ]; +"352" [ label="a97ef281eafc34b1630d450a1df",shape="hexagon" ]; +"144E" [ label="4ff4e275c710c3b",shape="box",style="filled",color="grey" ]; +"432E" [ label="d13da6273c9b4da",shape="box",style="filled",color="grey" ]; +"353" [ label="72cbb37db85ed3c6eda5dcf8",shape="hexagon" ]; +"145E" [ label="33ff9e43d5ab",shape="box",style="filled",color="grey" ]; +"354" [ label="0f6784e49852c0be0da23b16",shape="hexagon" ]; +"146E" [ label="d4f958b03a98",shape="box",style="filled",color="grey" ]; +"396E" [ label="8e24e9b4e",shape="box",style="filled",color="grey" ]; +"355" [ label="383f5c65cc6c25aa0a0e6dbb",shape="hexagon" ]; +"147E" [ label="1ff8ff951ee9",shape="box",style="filled",color="grey" ]; +"356" [ label="f52a45620969f0df4e6ae1dcd7",shape="hexagon" ]; +"148E" [ label="5256925081c812",shape="box",style="filled",color="grey" ]; +"357" [ label="1f5df34ad75a55a76ef4afa0a47",shape="hexagon" ]; +"149E" [ label="26a185dde9a93dd",shape="box",style="filled",color="grey" ]; +"358" [ label="45ba4d4c61c9601a26d59e47e0260",shape="hexagon" ]; +"167E" [ label="99bd3e7feeb710",shape="box",style="filled",color="grey" ]; +"359" [ label="f95344b0ae31693f3a2746597d4",shape="hexagon" ]; +"169E" [ label="4e8259973f1f",shape="box",style="filled",color="grey" ]; +"360" [ label="b79798b186d6b82288e8be4017d",shape="hexagon" ]; +"171E" [ label="63b079bd5847",shape="box",style="filled",color="grey" ]; +"361" [ label="47e0067f4d853afd2012f04daa8",shape="hexagon" ]; +"172E" [ label="92fb5d4a0805",shape="box",style="filled",color="grey" ]; +"362" [ label="f2b6201774de40a29b504b1f716",shape="hexagon" ]; +"173E" [ label="d7203571944b",shape="box",style="filled",color="grey" ]; +"363" [ label="800422ab81d804eef3e7b91dfba91",shape="hexagon" ]; +"174E" [ label="952316a1a5a785",shape="box",style="filled",color="grey" ]; +"364" [ label="35b941379e1af658078cffb83a2",shape="hexagon" ]; +"101E" [ label="331675c046693f",shape="box",style="filled",color="grey" ]; +"365" [ label="d4f7b7fba7afcf7a72397353ec",shape="hexagon" ]; +"102E" [ label="32c4684b55361",shape="box",style="filled",color="grey" ]; +"367" [ label="e4b45b7a2f884d3734bfd5985656",shape="hexagon" ]; +"104E" [ label="1333074979f2d0b",shape="box",style="filled",color="grey" ]; +"368" [ label="02c2ba83680ab57f236a33d702",shape="hexagon" ]; +"105E" [ label="084d4bfa5853e",shape="box",style="filled",color="grey" ]; +"369" [ label="9ccd974150a18260b207b6584caa",shape="hexagon" ]; +"106E" [ label="28f7bfc40c88e6a",shape="box",style="filled",color="grey" ]; +"374" [ label="653ae44d45dcadeb481b53027d",shape="hexagon" ]; +"111E" [ label="8f95518f48528",shape="box",style="filled",color="grey" ]; +"375" [ label="d66f542ef1ce4d02c59bec65e",shape="hexagon" ]; +"112E" [ label="2ef209509e2a",shape="box",style="filled",color="grey" ]; +"377" [ label="a2984b7a11e49440420058c1d80",shape="hexagon" ]; +"114E" [ label="ef42184297591d",shape="box",style="filled",color="grey" ]; +"378" [ label="31055116421c96b37f72a262bb",shape="hexagon" ]; +"115E" [ label="be9c5958196ed",shape="box",style="filled",color="grey" ]; +"380" [ label="8462bb2eec1a62d19a15865e57c92",shape="hexagon" ]; +"117E" [ label="16a795a1d63f30df",shape="box",style="filled",color="grey" ]; +"392E" [ label="85a34bc9616ff",shape="box",style="filled",color="grey" ]; +"381" [ label="c21eb96fe100a1efaa128181b7",shape="hexagon" ]; +"118E" [ label="f1b0d754353a6",shape="box",style="filled",color="grey" ]; +"382" [ label="e3e284d0cc803d98d674f9c3f6d",color="yellow",style="filled",shape="doubleoctagon" ]; +"177E" [ label="30417faf916",shape="box",style="filled",color="grey" ]; +"178E" [ label="e618df70814a",shape="box",style="filled",color="grey" ]; +"179E" [ label="fa90ddf10bd574",shape="box",style="filled",color="grey" ]; +"180E" [ label="815cc0b83d733",shape="box",style="filled",color="grey" ]; +"181E" [ label="f787d827958c",shape="box",style="filled",color="grey" ]; +"182E" [ label="f20f7f513e",shape="box",style="filled",color="grey" ]; +"183E" [ label="290907417e13",shape="box",style="filled",color="grey" ]; +"184E" [ label="e8386a8e1c8a",shape="box",style="filled",color="grey" ]; +"185E" [ label="319bc900218b",shape="box",style="filled",color="grey" ]; +"186E" [ label="3ba7afb0e48ae1",shape="box",style="filled",color="grey" ]; +"187E" [ label="6ba0776fc8e",shape="box",style="filled",color="grey" ]; +"188E" [ label="09847696ae",shape="box",style="filled",color="grey" ]; +"383" [ label="908f9ad506eae9ab6ada185e3",color="yellow",style="filled",shape="doubleoctagon" ]; +"730E" [ label="65694ca6d575",shape="box",style="filled",color="grey" ]; +"732E" [ label="37f57e81ebed95",shape="box",style="filled",color="grey" ]; +"741E" [ label="9b6c",shape="box",style="filled",color="grey" ]; +"765E" [ label="88ebe2e8782c",shape="box",style="filled",color="grey" ]; +"796E" [ label="901b2105a902ee7791",shape="box",style="filled",color="grey" ]; +"384" [ label="593caebf2037317648bb451aa79",color="yellow",style="filled",shape="doubleoctagon" ]; +"726E" [ label="351dd0aefe480c",shape="box",style="filled",color="grey" ]; +"728E" [ label="56e1a896",shape="box",style="filled",color="grey" ]; +"742E" [ label="5ba4693031",shape="box",style="filled",color="grey" ]; +"385" [ label="717c254aeffbb527dabfc",shape="hexagon" ]; +"328E" [ label="123cc6d1ac",shape="box",style="filled",color="grey" ]; +"496E" [ label="",shape="box",style="filled",color="grey" ]; +"594E" [ label="7f8c557bcf3889",shape="box",style="filled",color="grey" ]; +"622E" [ label="da3d5",shape="box",style="filled",color="grey" ]; +"754E" [ label="68d8993e61d8c82cd29e8d0182b0",shape="box",style="filled",color="grey" ]; +"755E" [ label="4c865eec228e41e7f4e5fc68a9a6",shape="box",style="filled",color="grey" ]; +"756E" [ label="8983ffbc30deb364dd92c3ad85c9",shape="box",style="filled",color="grey" ]; +"757E" [ label="68d8993e61d8c82cd29e8d0182b0",shape="box",style="filled",color="grey" ]; +"758E" [ label="4c865eec228e41e7f4e5fc68a9a6",shape="box",style="filled",color="grey" ]; +"759E" [ label="8983ffbc30deb364dd92c3ad85c9",shape="box",style="filled",color="grey" ]; +"760E" [ label="8983ffbc30deb364dd92c3ad85c9",shape="box",style="filled",color="grey" ]; +"761E" [ label="eb9cf6456613d4cd06f7c0894bd6",shape="box",style="filled",color="grey" ]; +"762E" [ label="1e2298c4bb",shape="box",style="filled",color="grey" ]; +"1" -> "189E" [ label=" ",color="blue",arrowhead="dot" ]; +"1" -> "790E" [ label=" ",color="blue",arrowhead="dot" ]; +"2" -> "191E" [ label=" ",color="blue",arrowhead="dot" ]; +"3" -> "193E" [ label=" ",color="blue",arrowhead="dot" ]; +"4" -> "195E" [ label=" ",color="blue",arrowhead="dot" ]; +"5" -> "197E" [ label=" ",color="blue",arrowhead="dot" ]; +"6" -> "199E" [ label=" ",color="blue",arrowhead="dot" ]; +"7" -> "201E" [ label=" ",color="blue",arrowhead="dot" ]; +"8" -> "203E" [ label=" ",color="blue",arrowhead="dot" ]; +"9" -> "725E" [ label=" ",color="blue",arrowhead="dot" ]; +"9" -> "785E" [ label=" ",color="blue",arrowhead="dot" ]; +"10" -> "205E" [ label=" ",color="blue",arrowhead="dot" ]; +"11" -> "207E" [ label=" ",color="blue",arrowhead="dot" ]; +"12" -> "209E" [ label=" ",color="blue",arrowhead="dot" ]; +"13" -> "211E" [ label=" ",color="blue",arrowhead="dot" ]; +"14" -> "213E" [ label=" ",color="blue",arrowhead="dot" ]; +"15" -> "215E" [ label=" ",color="blue",arrowhead="dot" ]; +"16" -> "727E" [ label=" ",color="blue",arrowhead="dot" ]; +"16" -> "784E" [ label=" ",color="blue",arrowhead="dot" ]; +"17" -> "217E" [ label=" ",color="blue",arrowhead="dot" ]; +"17" -> "787E" [ label=" ",color="blue",arrowhead="dot" ]; +"18" -> "219E" [ label=" ",color="blue",arrowhead="dot" ]; +"19" -> "221E" [ label=" ",color="blue",arrowhead="dot" ]; +"20" -> "223E" [ label=" ",color="blue",arrowhead="dot" ]; +"21" -> "225E" [ label=" ",color="blue",arrowhead="dot" ]; +"22" -> "227E" [ label=" ",color="blue",arrowhead="dot" ]; +"22" -> "792E" [ label=" ",color="blue",arrowhead="dot" ]; +"23" -> "231E" [ label=" ",color="blue",arrowhead="dot" ]; +"24" -> "233E" [ label=" ",color="blue",arrowhead="dot" ]; +"25" -> "235E" [ label=" ",color="blue",arrowhead="dot" ]; +"26" -> "237E" [ label=" ",color="blue",arrowhead="dot" ]; +"27" -> "239E" [ label=" ",color="blue",arrowhead="dot" ]; +"27" -> "783E" [ label=" ",color="blue",arrowhead="dot" ]; +"28" -> "241E" [ label=" ",color="blue",arrowhead="dot" ]; +"28" -> "791E" [ label=" ",color="blue",arrowhead="dot" ]; +"29" -> "243E" [ label=" ",color="blue",arrowhead="dot" ]; +"30" -> "245E" [ label=" ",color="blue",arrowhead="dot" ]; +"31" -> "247E" [ label=" ",color="blue",arrowhead="dot" ]; +"32" -> "249E" [ label=" ",color="blue",arrowhead="dot" ]; +"33" -> "251E" [ label=" ",color="blue",arrowhead="dot" ]; +"34" -> "253E" [ label=" ",color="blue",arrowhead="dot" ]; +"35" -> "255E" [ label=" ",color="blue",arrowhead="dot" ]; +"36" -> "257E" [ label=" ",color="blue",arrowhead="dot" ]; +"37" -> "259E" [ label=" ",color="blue",arrowhead="dot" ]; +"38" -> "261E" [ label=" ",color="blue",arrowhead="dot" ]; +"39" -> "263E" [ label=" ",color="blue",arrowhead="dot" ]; +"40" -> "265E" [ label=" ",color="blue",arrowhead="dot" ]; +"41" -> "267E" [ label=" ",color="blue",arrowhead="dot" ]; +"42" -> "269E" [ label=" ",color="blue",arrowhead="dot" ]; +"43" -> "271E" [ label=" ",color="blue",arrowhead="dot" ]; +"44" -> "273E" [ label=" ",color="blue",arrowhead="dot" ]; +"45" -> "275E" [ label=" ",color="blue",arrowhead="dot" ]; +"46" -> "277E" [ label=" ",color="blue",arrowhead="dot" ]; +"47" -> "279E" [ label=" ",color="blue",arrowhead="dot" ]; +"48" -> "281E" [ label=" ",color="blue",arrowhead="dot" ]; +"49" -> "283E" [ label=" ",color="blue",arrowhead="dot" ]; +"50" -> "285E" [ label=" ",color="blue",arrowhead="dot" ]; +"51" -> "287E" [ label=" ",color="blue",arrowhead="dot" ]; +"52" -> "289E" [ label=" ",color="blue",arrowhead="dot" ]; +"53" -> "291E" [ label=" ",color="blue",arrowhead="dot" ]; +"54" -> "293E" [ label=" ",color="blue",arrowhead="dot" ]; +"55" -> "745E" [ label=" ",color="blue",arrowhead="dot" ]; +"56" -> "295E" [ label=" ",color="blue",arrowhead="dot" ]; +"57" -> "297E" [ label=" ",color="blue",arrowhead="dot" ]; +"58" -> "299E" [ label=" ",color="blue",arrowhead="dot" ]; +"59" -> "301E" [ label=" ",color="blue",arrowhead="dot" ]; +"59" -> "789E" [ label=" ",color="blue",arrowhead="dot" ]; +"60" -> "303E" [ label=" ",color="blue",arrowhead="dot" ]; +"61" -> "305E" [ label=" ",color="blue",arrowhead="dot" ]; +"62" -> "307E" [ label=" ",color="blue",arrowhead="dot" ]; +"63" -> "309E" [ label=" ",color="blue",arrowhead="dot" ]; +"64" -> "311E" [ label=" ",color="blue",arrowhead="dot" ]; +"65" -> "313E" [ label=" ",color="blue",arrowhead="dot" ]; +"66" -> "315E" [ label=" ",color="blue",arrowhead="dot" ]; +"67" -> "317E" [ label=" ",color="blue",arrowhead="dot" ]; +"68" -> "319E" [ label=" ",color="blue",arrowhead="dot" ]; +"69" -> "746E" [ label=" ",color="blue",arrowhead="dot" ]; +"70" -> "321E" [ label=" ",color="blue",arrowhead="dot" ]; +"71" -> "327E" [ label=" ",color="blue",arrowhead="dot" ]; +"72" -> "329E" [ label=" ",color="blue",arrowhead="dot" ]; +"73" -> "331E" [ label=" ",color="blue",arrowhead="dot" ]; +"74" -> "333E" [ label=" ",color="blue",arrowhead="dot" ]; +"75" -> "335E" [ label=" ",color="blue",arrowhead="dot" ]; +"76" -> "337E" [ label=" ",color="blue",arrowhead="dot" ]; +"77" -> "339E" [ label=" ",color="blue",arrowhead="dot" ]; +"78" -> "341E" [ label=" ",color="blue",arrowhead="dot" ]; +"79" -> "343E" [ label=" ",color="blue",arrowhead="dot" ]; +"80" -> "345E" [ label=" ",color="blue",arrowhead="dot" ]; +"81" -> "347E" [ label=" ",color="blue",arrowhead="dot" ]; +"82" -> "349E" [ label=" ",color="blue",arrowhead="dot" ]; +"83" -> "351E" [ label=" ",color="blue",arrowhead="dot" ]; +"84" -> "353E" [ label=" ",color="blue",arrowhead="dot" ]; +"85" -> "355E" [ label=" ",color="blue",arrowhead="dot" ]; +"85" -> "788E" [ label=" ",color="blue",arrowhead="dot" ]; +"86" -> "357E" [ label=" ",color="blue",arrowhead="dot" ]; +"87" -> "359E" [ label=" ",color="blue",arrowhead="dot" ]; +"88" -> "361E" [ label=" ",color="blue",arrowhead="dot" ]; +"89" -> "363E" [ label=" ",color="blue",arrowhead="dot" ]; +"90" -> "365E" [ label=" ",color="blue",arrowhead="dot" ]; +"91" -> "367E" [ label=" ",color="blue",arrowhead="dot" ]; +"92" -> "369E" [ label=" ",color="blue",arrowhead="dot" ]; +"93" -> "729E" [ label=" ",color="blue",arrowhead="dot" ]; +"94" -> "371E" [ label=" ",color="blue",arrowhead="dot" ]; +"95" -> "373E" [ label=" ",color="blue",arrowhead="dot" ]; +"96" -> "375E" [ label=" ",color="blue",arrowhead="dot" ]; +"97" -> "747E" [ label=" ",color="blue",arrowhead="dot" ]; +"98" -> "377E" [ label=" ",color="blue",arrowhead="dot" ]; +"99" -> "379E" [ label=" ",color="blue",arrowhead="dot" ]; +"100" -> "381E" [ label=" ",color="blue",arrowhead="dot" ]; +"101" -> "383E" [ label=" ",color="blue",arrowhead="dot" ]; +"102" -> "385E" [ label=" ",color="blue",arrowhead="dot" ]; +"103" -> "387E" [ label=" ",color="blue",arrowhead="dot" ]; +"104" -> "389E" [ label=" ",color="blue",arrowhead="dot" ]; +"105" -> "391E" [ label=" ",color="blue",arrowhead="dot" ]; +"106" -> "393E" [ label=" ",color="blue",arrowhead="dot" ]; +"107" -> "395E" [ label=" ",color="blue",arrowhead="dot" ]; +"108" -> "397E" [ label=" ",color="blue",arrowhead="dot" ]; +"109" -> "399E" [ label=" ",color="blue",arrowhead="dot" ]; +"110" -> "401E" [ label=" ",color="blue",arrowhead="dot" ]; +"111" -> "403E" [ label=" ",color="blue",arrowhead="dot" ]; +"112" -> "405E" [ label=" ",color="blue",arrowhead="dot" ]; +"113" -> "407E" [ label=" ",color="blue",arrowhead="dot" ]; +"114" -> "409E" [ label=" ",color="blue",arrowhead="dot" ]; +"115" -> "411E" [ label=" ",color="blue",arrowhead="dot" ]; +"116" -> "413E" [ label=" ",color="blue",arrowhead="dot" ]; +"117" -> "415E" [ label=" ",color="blue",arrowhead="dot" ]; +"118" -> "417E" [ label=" ",color="blue",arrowhead="dot" ]; +"119" -> "419E" [ label=" ",color="blue",arrowhead="dot" ]; +"120" -> "421E" [ label=" ",color="blue",arrowhead="dot" ]; +"121" -> "423E" [ label=" ",color="blue",arrowhead="dot" ]; +"122" -> "748E" [ label=" ",color="blue",arrowhead="dot" ]; +"123" -> "425E" [ label=" ",color="blue",arrowhead="dot" ]; +"124" -> "427E" [ label=" ",color="blue",arrowhead="dot" ]; +"124" -> "786E" [ label=" ",color="blue",arrowhead="dot" ]; +"125" -> "431E" [ label=" ",color="blue",arrowhead="dot" ]; +"126" -> "433E" [ label=" ",color="blue",arrowhead="dot" ]; +"127" -> "435E" [ label=" ",color="blue",arrowhead="dot" ]; +"128" -> "437E" [ label=" ",color="blue",arrowhead="dot" ]; +"129" -> "439E" [ label=" ",color="blue",arrowhead="dot" ]; +"130" -> "441E" [ label=" ",color="blue",arrowhead="dot" ]; +"131" -> "443E" [ label=" ",color="blue",arrowhead="dot" ]; +"132" -> "445E" [ label=" ",color="blue",arrowhead="dot" ]; +"133" -> "749E" [ label=" ",color="blue",arrowhead="dot" ]; +"134" -> "447E" [ label=" ",color="blue",arrowhead="dot" ]; +"135" -> "449E" [ label=" ",color="blue",arrowhead="dot" ]; +"135" -> "769E" [ label=" ",color="blue",arrowhead="dot" ]; +"135" -> "770E" [ label=" ",color="blue",arrowhead="dot" ]; +"136" -> "451E" [ label=" ",color="blue",arrowhead="dot" ]; +"137" -> "453E" [ label=" ",color="blue",arrowhead="dot" ]; +"138" -> "455E" [ label=" ",color="blue",arrowhead="dot" ]; +"139" -> "457E" [ label=" ",color="blue",arrowhead="dot" ]; +"140" -> "459E" [ label=" ",color="blue",arrowhead="dot" ]; +"141" -> "461E" [ label=" ",color="blue",arrowhead="dot" ]; +"142" -> "463E" [ label=" ",color="blue",arrowhead="dot" ]; +"143" -> "465E" [ label=" ",color="blue",arrowhead="dot" ]; +"144" -> "467E" [ label=" ",color="blue",arrowhead="dot" ]; +"145" -> "469E" [ label=" ",color="blue",arrowhead="dot" ]; +"146" -> "471E" [ label=" ",color="blue",arrowhead="dot" ]; +"147" -> "473E" [ label=" ",color="blue",arrowhead="dot" ]; +"148" -> "475E" [ label=" ",color="blue",arrowhead="dot" ]; +"149" -> "477E" [ label=" ",color="blue",arrowhead="dot" ]; +"150" -> "479E" [ label=" ",color="blue",arrowhead="dot" ]; +"151" -> "481E" [ label=" ",color="blue",arrowhead="dot" ]; +"152" -> "483E" [ label=" ",color="blue",arrowhead="dot" ]; +"153" -> "731E" [ label=" ",color="blue",arrowhead="dot" ]; +"154" -> "750E" [ label=" ",color="blue",arrowhead="dot" ]; +"155" -> "485E" [ label=" ",color="blue",arrowhead="dot" ]; +"156" -> "487E" [ label=" ",color="blue",arrowhead="dot" ]; +"157" -> "489E" [ label=" ",color="blue",arrowhead="dot" ]; +"158" -> "491E" [ label=" ",color="blue",arrowhead="dot" ]; +"159" -> "495E" [ label=" ",color="blue",arrowhead="dot" ]; +"160" -> "499E" [ label=" ",color="blue",arrowhead="dot" ]; +"161" -> "501E" [ label=" ",color="blue",arrowhead="dot" ]; +"162" -> "503E" [ label=" ",color="blue",arrowhead="dot" ]; +"163" -> "505E" [ label=" ",color="blue",arrowhead="dot" ]; +"164" -> "507E" [ label=" ",color="blue",arrowhead="dot" ]; +"165" -> "509E" [ label=" ",color="blue",arrowhead="dot" ]; +"166" -> "511E" [ label=" ",color="blue",arrowhead="dot" ]; +"167" -> "513E" [ label=" ",color="blue",arrowhead="dot" ]; +"168" -> "515E" [ label=" ",color="blue",arrowhead="dot" ]; +"169" -> "517E" [ label=" ",color="blue",arrowhead="dot" ]; +"170" -> "519E" [ label=" ",color="blue",arrowhead="dot" ]; +"171" -> "521E" [ label=" ",color="blue",arrowhead="dot" ]; +"172" -> "523E" [ label=" ",color="blue",arrowhead="dot" ]; +"173" -> "525E" [ label=" ",color="blue",arrowhead="dot" ]; +"174" -> "527E" [ label=" ",color="blue",arrowhead="dot" ]; +"175" -> "529E" [ label=" ",color="blue",arrowhead="dot" ]; +"176" -> "531E" [ label=" ",color="blue",arrowhead="dot" ]; +"177" -> "533E" [ label=" ",color="blue",arrowhead="dot" ]; +"178" -> "535E" [ label=" ",color="blue",arrowhead="dot" ]; +"179" -> "537E" [ label=" ",color="blue",arrowhead="dot" ]; +"180" -> "539E" [ label=" ",color="blue",arrowhead="dot" ]; +"181" -> "541E" [ label=" ",color="blue",arrowhead="dot" ]; +"182" -> "543E" [ label=" ",color="blue",arrowhead="dot" ]; +"183" -> "545E" [ label=" ",color="blue",arrowhead="dot" ]; +"184" -> "547E" [ label=" ",color="blue",arrowhead="dot" ]; +"185" -> "549E" [ label=" ",color="blue",arrowhead="dot" ]; +"186" -> "551E" [ label=" ",color="blue",arrowhead="dot" ]; +"187" -> "553E" [ label=" ",color="blue",arrowhead="dot" ]; +"188" -> "555E" [ label=" ",color="blue",arrowhead="dot" ]; +"189" -> "557E" [ label=" ",color="blue",arrowhead="dot" ]; +"190" -> "559E" [ label=" ",color="blue",arrowhead="dot" ]; +"191" -> "561E" [ label=" ",color="blue",arrowhead="dot" ]; +"192" -> "563E" [ label=" ",color="blue",arrowhead="dot" ]; +"193" -> "565E" [ label=" ",color="blue",arrowhead="dot" ]; +"194" -> "567E" [ label=" ",color="blue",arrowhead="dot" ]; +"195" -> "569E" [ label=" ",color="blue",arrowhead="dot" ]; +"196" -> "571E" [ label=" ",color="blue",arrowhead="dot" ]; +"197" -> "573E" [ label=" ",color="blue",arrowhead="dot" ]; +"198" -> "575E" [ label=" ",color="blue",arrowhead="dot" ]; +"199" -> "577E" [ label=" ",color="blue",arrowhead="dot" ]; +"200" -> "579E" [ label=" ",color="blue",arrowhead="dot" ]; +"201" -> "581E" [ label=" ",color="blue",arrowhead="dot" ]; +"202" -> "583E" [ label=" ",color="blue",arrowhead="dot" ]; +"203" -> "585E" [ label=" ",color="blue",arrowhead="dot" ]; +"204" -> "587E" [ label=" ",color="blue",arrowhead="dot" ]; +"205" -> "751E" [ label=" ",color="blue",arrowhead="dot" ]; +"206" -> "589E" [ label=" ",color="blue",arrowhead="dot" ]; +"207" -> "593E" [ label=" ",color="blue",arrowhead="dot" ]; +"208" -> "597E" [ label=" ",color="blue",arrowhead="dot" ]; +"209" -> "599E" [ label=" ",color="blue",arrowhead="dot" ]; +"210" -> "601E" [ label=" ",color="blue",arrowhead="dot" ]; +"211" -> "603E" [ label=" ",color="blue",arrowhead="dot" ]; +"212" -> "605E" [ label=" ",color="blue",arrowhead="dot" ]; +"213" -> "607E" [ label=" ",color="blue",arrowhead="dot" ]; +"214" -> "609E" [ label=" ",color="blue",arrowhead="dot" ]; +"215" -> "611E" [ label=" ",color="blue",arrowhead="dot" ]; +"216" -> "613E" [ label=" ",color="blue",arrowhead="dot" ]; +"217" -> "615E" [ label=" ",color="blue",arrowhead="dot" ]; +"218" -> "617E" [ label=" ",color="blue",arrowhead="dot" ]; +"219" -> "619E" [ label=" ",color="blue",arrowhead="dot" ]; +"220" -> "621E" [ label=" ",color="blue",arrowhead="dot" ]; +"221" -> "623E" [ label=" ",color="blue",arrowhead="dot" ]; +"222" -> "752E" [ label=" ",color="blue",arrowhead="dot" ]; +"223" -> "625E" [ label=" ",color="blue",arrowhead="dot" ]; +"224" -> "627E" [ label=" ",color="blue",arrowhead="dot" ]; +"225" -> "629E" [ label=" ",color="blue",arrowhead="dot" ]; +"226" -> "631E" [ label=" ",color="blue",arrowhead="dot" ]; +"227" -> "633E" [ label=" ",color="blue",arrowhead="dot" ]; +"228" -> "635E" [ label=" ",color="blue",arrowhead="dot" ]; +"229" -> "637E" [ label=" ",color="blue",arrowhead="dot" ]; +"230" -> "639E" [ label=" ",color="blue",arrowhead="dot" ]; +"231" -> "641E" [ label=" ",color="blue",arrowhead="dot" ]; +"232" -> "643E" [ label=" ",color="blue",arrowhead="dot" ]; +"233" -> "645E" [ label=" ",color="blue",arrowhead="dot" ]; +"234" -> "647E" [ label=" ",color="blue",arrowhead="dot" ]; +"235" -> "649E" [ label=" ",color="blue",arrowhead="dot" ]; +"236" -> "651E" [ label=" ",color="blue",arrowhead="dot" ]; +"237" -> "653E" [ label=" ",color="blue",arrowhead="dot" ]; +"238" -> "655E" [ label=" ",color="blue",arrowhead="dot" ]; +"239" -> "657E" [ label=" ",color="blue",arrowhead="dot" ]; +"240" -> "659E" [ label=" ",color="blue",arrowhead="dot" ]; +"241" -> "661E" [ label=" ",color="blue",arrowhead="dot" ]; +"242" -> "663E" [ label=" ",color="blue",arrowhead="dot" ]; +"243" -> "665E" [ label=" ",color="blue",arrowhead="dot" ]; +"244" -> "667E" [ label=" ",color="blue",arrowhead="dot" ]; +"245" -> "669E" [ label=" ",color="blue",arrowhead="dot" ]; +"246" -> "671E" [ label=" ",color="blue",arrowhead="dot" ]; +"247" -> "673E" [ label=" ",color="blue",arrowhead="dot" ]; +"248" -> "675E" [ label=" ",color="blue",arrowhead="dot" ]; +"249" -> "679E" [ label=" ",color="blue",arrowhead="dot" ]; +"250" -> "753E" [ label=" ",color="blue",arrowhead="dot" ]; +"251" -> "681E" [ label=" ",color="blue",arrowhead="dot" ]; +"252" -> "683E" [ label=" ",color="blue",arrowhead="dot" ]; +"253" -> "685E" [ label=" ",color="blue",arrowhead="dot" ]; +"254" -> "687E" [ label=" ",color="blue",arrowhead="dot" ]; +"255" -> "689E" [ label=" ",color="blue",arrowhead="dot" ]; +"256" -> "691E" [ label=" ",color="blue",arrowhead="dot" ]; +"257" -> "693E" [ label=" ",color="blue",arrowhead="dot" ]; +"258" -> "695E" [ label=" ",color="blue",arrowhead="dot" ]; +"259" -> "697E" [ label=" ",color="blue",arrowhead="dot" ]; +"260" -> "699E" [ label=" ",color="blue",arrowhead="dot" ]; +"261" -> "703E" [ label=" ",color="blue",arrowhead="dot" ]; +"262" -> "705E" [ label=" ",color="blue",arrowhead="dot" ]; +"264" -> "709E" [ label=" ",color="blue",arrowhead="dot" ]; +"265" -> "711E" [ label=" ",color="blue",arrowhead="dot" ]; +"266" -> "713E" [ label=" ",color="blue",arrowhead="dot" ]; +"267" -> "715E" [ label=" ",color="blue",arrowhead="dot" ]; +"268" -> "717E" [ label=" ",color="blue",arrowhead="dot" ]; +"269" -> "719E" [ label=" ",color="blue",arrowhead="dot" ]; +"270" -> "721E" [ label=" ",color="blue",arrowhead="dot" ]; +"272" -> "34E" [ label=" ",color="blue",arrowhead="dot" ]; +"272" -> "252E" [ label=" ",color="blue",arrowhead="dot" ]; +"272" -> "436E" [ label=" ",color="blue",arrowhead="dot" ]; +"274" -> "59E" [ label=" ",color="blue",arrowhead="dot" ]; +"274" -> "500E" [ label=" ",color="blue",arrowhead="dot" ]; +"274" -> "720E" [ label=" ",color="blue",arrowhead="dot" ]; +"275" -> "98E" [ label=" ",color="blue",arrowhead="dot" ]; +"278" -> "35E" [ label=" ",color="blue",arrowhead="dot" ]; +"278" -> "488E" [ label=" ",color="blue",arrowhead="dot" ]; +"278" -> "598E" [ label=" ",color="blue",arrowhead="dot" ]; +"278" -> "604E" [ label=" ",color="blue",arrowhead="dot" ]; +"278" -> "628E" [ label=" ",color="blue",arrowhead="dot" ]; +"279" -> "99E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "242E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "270E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "272E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "284E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "286E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "288E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "586E" [ label=" ",color="blue",arrowhead="dot" ]; +"280" -> "763E" [ label=" ",color="blue",arrowhead="dot" ]; +"281" -> "45E" [ label=" ",color="blue",arrowhead="dot" ]; +"281" -> "470E" [ label=" ",color="blue",arrowhead="dot" ]; +"281" -> "670E" [ label=" ",color="blue",arrowhead="dot" ]; +"281" -> "722E" [ label=" ",color="blue",arrowhead="dot" ]; +"282" -> "103E" [ label=" ",color="blue",arrowhead="dot" ]; +"283" -> "165E" [ label=" ",color="blue",arrowhead="dot" ]; +"284" -> "39E" [ label=" ",color="blue",arrowhead="dot" ]; +"284" -> "224E" [ label=" ",color="blue",arrowhead="dot" ]; +"284" -> "268E" [ label=" ",color="blue",arrowhead="dot" ]; +"284" -> "632E" [ label=" ",color="blue",arrowhead="dot" ]; +"284" -> "710E" [ label=" ",color="blue",arrowhead="dot" ]; +"285" -> "53E" [ label=" ",color="blue",arrowhead="dot" ]; +"286" -> "38E" [ label=" ",color="blue",arrowhead="dot" ]; +"286" -> "166E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "40E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "218E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "244E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "246E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "258E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "290E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "292E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "308E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "318E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "388E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "472E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "478E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "566E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "570E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "574E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "608E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "614E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "658E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "664E" [ label=" ",color="blue",arrowhead="dot" ]; +"288" -> "682E" [ label=" ",color="blue",arrowhead="dot" ]; +"289" -> "41E" [ label=" ",color="blue",arrowhead="dot" ]; +"289" -> "636E" [ label=" ",color="blue",arrowhead="dot" ]; +"289" -> "642E" [ label=" ",color="blue",arrowhead="dot" ]; +"289" -> "690E" [ label=" ",color="blue",arrowhead="dot" ]; +"289" -> "700E" [ label=" ",color="blue",arrowhead="dot" ]; +"290" -> "56E" [ label=" ",color="blue",arrowhead="dot" ]; +"290" -> "264E" [ label=" ",color="blue",arrowhead="dot" ]; +"290" -> "510E" [ label=" ",color="blue",arrowhead="dot" ]; +"290" -> "718E" [ label=" ",color="blue",arrowhead="dot" ]; +"291" -> "66E" [ label=" ",color="blue",arrowhead="dot" ]; +"291" -> "76E" [ label=" ",color="blue",arrowhead="dot" ]; +"291" -> "610E" [ label=" ",color="blue",arrowhead="dot" ]; +"292" -> "73E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "49E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "214E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "216E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "236E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "278E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "358E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "398E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "400E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "402E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "404E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "406E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "408E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "412E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "438E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "448E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "476E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "504E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "552E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "634E" [ label=" ",color="blue",arrowhead="dot" ]; +"293" -> "768E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "44E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "92E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "250E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "316E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "380E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "424E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "442E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "446E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "454E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "460E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "462E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "648E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "656E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "666E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "692E" [ label=" ",color="blue",arrowhead="dot" ]; +"295" -> "712E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "47E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "330E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "514E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "516E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "518E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "520E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "522E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "526E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "528E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "530E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "532E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "534E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "536E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "538E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "540E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "542E" [ label=" ",color="blue",arrowhead="dot" ]; +"296" -> "544E" [ label=" ",color="blue",arrowhead="dot" ]; +"297" -> "46E" [ label=" ",color="blue",arrowhead="dot" ]; +"297" -> "93E" [ label=" ",color="blue",arrowhead="dot" ]; +"297" -> "206E" [ label=" ",color="blue",arrowhead="dot" ]; +"297" -> "426E" [ label=" ",color="blue",arrowhead="dot" ]; +"297" -> "550E" [ label=" ",color="blue",arrowhead="dot" ]; +"297" -> "706E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "36E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "95E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "364E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "394E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "420E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "456E" [ label=" ",color="blue",arrowhead="dot" ]; +"298" -> "624E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "48E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "168E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "260E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "282E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "554E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "590E" [ label=" ",color="blue",arrowhead="dot" ]; +"299" -> "767E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "62E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "190E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "226E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "238E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "254E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "256E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "262E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "266E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "274E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "276E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "294E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "296E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "310E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "320E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "322E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "332E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "340E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "344E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "346E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "348E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "374E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "378E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "452E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "508E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "524E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "612E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "626E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "638E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "644E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "654E" [ label=" ",color="blue",arrowhead="dot" ]; +"300" -> "672E" [ label=" ",color="blue",arrowhead="dot" ]; +"302" -> "797E" [ label=" ",color="blue",arrowhead="dot" ]; +"302" -> "798E" [ label=" ",color="blue",arrowhead="dot" ]; +"303" -> "52E" [ label=" ",color="blue",arrowhead="dot" ]; +"303" -> "650E" [ label=" ",color="blue",arrowhead="dot" ]; +"304" -> "50E" [ label=" ",color="blue",arrowhead="dot" ]; +"304" -> "640E" [ label=" ",color="blue",arrowhead="dot" ]; +"304" -> "646E" [ label=" ",color="blue",arrowhead="dot" ]; +"304" -> "652E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "55E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "220E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "338E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "368E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "486E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "490E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "562E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "564E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "600E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "668E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "674E" [ label=" ",color="blue",arrowhead="dot" ]; +"306" -> "698E" [ label=" ",color="blue",arrowhead="dot" ]; +"307" -> "107E" [ label=" ",color="blue",arrowhead="dot" ]; +"308" -> "108E" [ label=" ",color="blue",arrowhead="dot" ]; +"309" -> "109E" [ label=" ",color="blue",arrowhead="dot" ]; +"310" -> "110E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "58E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "234E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "300E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "306E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "314E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "342E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "354E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "370E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "382E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "422E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "444E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "582E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "620E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "630E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "684E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "696E" [ label=" ",color="blue",arrowhead="dot" ]; +"311" -> "801E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "42E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "192E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "194E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "196E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "198E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "200E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "202E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "204E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "312E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "336E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "376E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "384E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "386E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "428E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "474E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "484E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "546E" [ label=" ",color="blue",arrowhead="dot" ]; +"312" -> "548E" [ label=" ",color="blue",arrowhead="dot" ]; +"314" -> "113E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "43E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "240E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "298E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "334E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "360E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "390E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "418E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "492E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "502E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "584E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "588E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "602E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "606E" [ label=" ",color="blue",arrowhead="dot" ]; +"315" -> "662E" [ label=" ",color="blue",arrowhead="dot" ]; +"316" -> "51E" [ label=" ",color="blue",arrowhead="dot" ]; +"317" -> "116E" [ label=" ",color="blue",arrowhead="dot" ]; +"318" -> "74E" [ label=" ",color="blue",arrowhead="dot" ]; +"319" -> "57E" [ label=" ",color="blue",arrowhead="dot" ]; +"319" -> "94E" [ label=" ",color="blue",arrowhead="dot" ]; +"319" -> "350E" [ label=" ",color="blue",arrowhead="dot" ]; +"319" -> "440E" [ label=" ",color="blue",arrowhead="dot" ]; +"319" -> "466E" [ label=" ",color="blue",arrowhead="dot" ]; +"319" -> "676E" [ label=" ",color="blue",arrowhead="dot" ]; +"320" -> "60E" [ label=" ",color="blue",arrowhead="dot" ]; +"320" -> "366E" [ label=" ",color="blue",arrowhead="dot" ]; +"320" -> "434E" [ label=" ",color="blue",arrowhead="dot" ]; +"320" -> "458E" [ label=" ",color="blue",arrowhead="dot" ]; +"320" -> "618E" [ label=" ",color="blue",arrowhead="dot" ]; +"321" -> "72E" [ label=" ",color="blue",arrowhead="dot" ]; +"321" -> "362E" [ label=" ",color="blue",arrowhead="dot" ]; +"321" -> "372E" [ label=" ",color="blue",arrowhead="dot" ]; +"321" -> "572E" [ label=" ",color="blue",arrowhead="dot" ]; +"322" -> "54E" [ label=" ",color="blue",arrowhead="dot" ]; +"322" -> "222E" [ label=" ",color="blue",arrowhead="dot" ]; +"322" -> "302E" [ label=" ",color="blue",arrowhead="dot" ]; +"322" -> "556E" [ label=" ",color="blue",arrowhead="dot" ]; +"322" -> "558E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "37E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "208E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "210E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "352E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "450E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "568E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "576E" [ label=" ",color="blue",arrowhead="dot" ]; +"323" -> "686E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "228E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "248E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "304E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "468E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "578E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "660E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "688E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "694E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "714E" [ label=" ",color="blue",arrowhead="dot" ]; +"324" -> "766E" [ label=" ",color="blue",arrowhead="dot" ]; +"325" -> "97E" [ label=" ",color="blue",arrowhead="dot" ]; +"325" -> "506E" [ label=" ",color="blue",arrowhead="dot" ]; +"326" -> "61E" [ label=" ",color="blue",arrowhead="dot" ]; +"326" -> "175E" [ label=" ",color="blue",arrowhead="dot" ]; +"326" -> "482E" [ label=" ",color="blue",arrowhead="dot" ]; +"328" -> "75E" [ label=" ",color="blue",arrowhead="dot" ]; +"328" -> "580E" [ label=" ",color="blue",arrowhead="dot" ]; +"329" -> "96E" [ label=" ",color="blue",arrowhead="dot" ]; +"330" -> "100E" [ label=" ",color="blue",arrowhead="dot" ]; +"330" -> "170E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "63E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "67E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "68E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "69E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "70E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "71E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "802E" [ label=" ",color="blue",arrowhead="dot" ]; +"333" -> "793E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "64E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "81E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "82E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "83E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "84E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "85E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "86E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "87E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "88E" [ label=" ",color="blue",arrowhead="dot" ]; +"334" -> "89E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "1E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "2E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "3E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "4E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "5E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "6E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "7E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "8E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "9E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "10E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "11E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "12E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "13E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "14E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "15E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "16E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "17E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "18E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "19E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "20E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "21E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "22E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "23E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "24E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "25E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "26E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "27E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "28E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "29E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "30E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "31E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "65E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "119E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "150E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "176E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "743E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "744E" [ label=" ",color="blue",arrowhead="dot" ]; +"336" -> "764E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "120E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "121E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "122E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "123E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "124E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "125E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "126E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "127E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "128E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "129E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "130E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "131E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "132E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "133E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "134E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "135E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "136E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "137E" [ label=" ",color="blue",arrowhead="dot" ]; +"337" -> "138E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "151E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "153E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "154E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "155E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "156E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "157E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "158E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "159E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "160E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "161E" [ label=" ",color="blue",arrowhead="dot" ]; +"339" -> "162E" [ label=" ",color="blue",arrowhead="dot" ]; +"347" -> "139E" [ label=" ",color="blue",arrowhead="dot" ]; +"347" -> "795E" [ label=" ",color="blue",arrowhead="dot" ]; +"348" -> "799E" [ label=" ",color="blue",arrowhead="dot" ]; +"348" -> "800E" [ label=" ",color="blue",arrowhead="dot" ]; +"349" -> "141E" [ label=" ",color="blue",arrowhead="dot" ]; +"350" -> "142E" [ label=" ",color="blue",arrowhead="dot" ]; +"350" -> "678E" [ label=" ",color="blue",arrowhead="dot" ]; +"351" -> "143E" [ label=" ",color="blue",arrowhead="dot" ]; +"351" -> "232E" [ label=" ",color="blue",arrowhead="dot" ]; +"351" -> "680E" [ label=" ",color="blue",arrowhead="dot" ]; +"351" -> "704E" [ label=" ",color="blue",arrowhead="dot" ]; +"352" -> "144E" [ label=" ",color="blue",arrowhead="dot" ]; +"352" -> "432E" [ label=" ",color="blue",arrowhead="dot" ]; +"353" -> "145E" [ label=" ",color="blue",arrowhead="dot" ]; +"354" -> "146E" [ label=" ",color="blue",arrowhead="dot" ]; +"354" -> "396E" [ label=" ",color="blue",arrowhead="dot" ]; +"355" -> "147E" [ label=" ",color="blue",arrowhead="dot" ]; +"356" -> "148E" [ label=" ",color="blue",arrowhead="dot" ]; +"357" -> "149E" [ label=" ",color="blue",arrowhead="dot" ]; +"358" -> "167E" [ label=" ",color="blue",arrowhead="dot" ]; +"359" -> "169E" [ label=" ",color="blue",arrowhead="dot" ]; +"360" -> "171E" [ label=" ",color="blue",arrowhead="dot" ]; +"361" -> "172E" [ label=" ",color="blue",arrowhead="dot" ]; +"362" -> "173E" [ label=" ",color="blue",arrowhead="dot" ]; +"363" -> "174E" [ label=" ",color="blue",arrowhead="dot" ]; +"364" -> "101E" [ label=" ",color="blue",arrowhead="dot" ]; +"365" -> "102E" [ label=" ",color="blue",arrowhead="dot" ]; +"367" -> "104E" [ label=" ",color="blue",arrowhead="dot" ]; +"368" -> "105E" [ label=" ",color="blue",arrowhead="dot" ]; +"369" -> "106E" [ label=" ",color="blue",arrowhead="dot" ]; +"374" -> "111E" [ label=" ",color="blue",arrowhead="dot" ]; +"375" -> "112E" [ label=" ",color="blue",arrowhead="dot" ]; +"377" -> "114E" [ label=" ",color="blue",arrowhead="dot" ]; +"378" -> "115E" [ label=" ",color="blue",arrowhead="dot" ]; +"380" -> "117E" [ label=" ",color="blue",arrowhead="dot" ]; +"380" -> "392E" [ label=" ",color="blue",arrowhead="dot" ]; +"381" -> "118E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "177E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "178E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "179E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "180E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "181E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "182E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "183E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "184E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "185E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "186E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "187E" [ label=" ",color="blue",arrowhead="dot" ]; +"382" -> "188E" [ label=" ",color="blue",arrowhead="dot" ]; +"383" -> "730E" [ label=" ",color="blue",arrowhead="dot" ]; +"383" -> "732E" [ label=" ",color="blue",arrowhead="dot" ]; +"383" -> "741E" [ label=" ",color="blue",arrowhead="dot" ]; +"383" -> "765E" [ label=" ",color="blue",arrowhead="dot" ]; +"383" -> "796E" [ label=" ",color="blue",arrowhead="dot" ]; +"384" -> "726E" [ label=" ",color="blue",arrowhead="dot" ]; +"384" -> "728E" [ label=" ",color="blue",arrowhead="dot" ]; +"384" -> "742E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "328E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "496E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "594E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "622E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "754E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "755E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "756E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "757E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "758E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "759E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "760E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "761E" [ label=" ",color="blue",arrowhead="dot" ]; +"385" -> "762E" [ label=" ",color="blue",arrowhead="dot" ]; +"1E" -> "34E" [ color="purple",arrowhead="none" ]; +"2E" -> "35E" [ color="purple",arrowhead="none" ]; +"3E" -> "36E" [ color="purple",arrowhead="none" ]; +"4E" -> "37E" [ color="purple",arrowhead="none" ]; +"5E" -> "38E" [ color="purple",arrowhead="none" ]; +"6E" -> "39E" [ color="purple",arrowhead="none" ]; +"7E" -> "40E" [ color="purple",arrowhead="none" ]; +"9E" -> "41E" [ color="purple",arrowhead="none" ]; +"10E" -> "42E" [ color="purple",arrowhead="none" ]; +"11E" -> "43E" [ color="purple",arrowhead="none" ]; +"12E" -> "44E" [ color="purple",arrowhead="none" ]; +"13E" -> "45E" [ color="purple",arrowhead="none" ]; +"14E" -> "46E" [ color="purple",arrowhead="none" ]; +"15E" -> "47E" [ color="purple",arrowhead="none" ]; +"16E" -> "48E" [ color="purple",arrowhead="none" ]; +"49E" -> "17E" [ color="purple",arrowhead="none" ]; +"18E" -> "50E" [ color="purple",arrowhead="none" ]; +"19E" -> "51E" [ color="purple",arrowhead="none" ]; +"20E" -> "52E" [ color="purple",arrowhead="none" ]; +"21E" -> "53E" [ color="purple",arrowhead="none" ]; +"22E" -> "54E" [ color="purple",arrowhead="none" ]; +"23E" -> "55E" [ color="purple",arrowhead="none" ]; +"24E" -> "56E" [ color="purple",arrowhead="none" ]; +"25E" -> "57E" [ color="purple",arrowhead="none" ]; +"26E" -> "58E" [ color="purple",arrowhead="none" ]; +"27E" -> "59E" [ color="purple",arrowhead="none" ]; +"28E" -> "60E" [ color="purple",arrowhead="none" ]; +"29E" -> "61E" [ color="purple",arrowhead="none" ]; +"30E" -> "62E" [ color="purple",arrowhead="none" ]; +"31E" -> "63E" [ color="purple",arrowhead="none" ]; +"64E" -> "65E" [ color="purple",arrowhead="none" ]; +"66E" -> "8E" [ color="purple",arrowhead="none" ]; +"71E" -> "76E" [ color="purple",arrowhead="none" ]; +"67E" -> "72E" [ color="purple",arrowhead="none" ]; +"68E" -> "73E" [ color="purple",arrowhead="none" ]; +"69E" -> "74E" [ color="purple",arrowhead="none" ]; +"70E" -> "75E" [ color="purple",arrowhead="none" ]; +"81E" -> "92E" [ color="purple",arrowhead="none" ]; +"82E" -> "93E" [ color="purple",arrowhead="none" ]; +"83E" -> "94E" [ color="purple",arrowhead="none" ]; +"84E" -> "95E" [ color="purple",arrowhead="none" ]; +"85E" -> "96E" [ color="purple",arrowhead="none" ]; +"86E" -> "97E" [ color="purple",arrowhead="none" ]; +"87E" -> "98E" [ color="purple",arrowhead="none" ]; +"88E" -> "99E" [ color="purple",arrowhead="none" ]; +"89E" -> "100E" [ color="purple",arrowhead="none" ]; +"101E" -> "120E" [ color="purple",arrowhead="none" ]; +"102E" -> "121E" [ color="purple",arrowhead="none" ]; +"103E" -> "122E" [ color="purple",arrowhead="none" ]; +"104E" -> "123E" [ color="purple",arrowhead="none" ]; +"105E" -> "124E" [ color="purple",arrowhead="none" ]; +"106E" -> "125E" [ color="purple",arrowhead="none" ]; +"107E" -> "126E" [ color="purple",arrowhead="none" ]; +"108E" -> "127E" [ color="purple",arrowhead="none" ]; +"109E" -> "128E" [ color="purple",arrowhead="none" ]; +"110E" -> "129E" [ color="purple",arrowhead="none" ]; +"111E" -> "130E" [ color="purple",arrowhead="none" ]; +"112E" -> "131E" [ color="purple",arrowhead="none" ]; +"113E" -> "132E" [ color="purple",arrowhead="none" ]; +"114E" -> "133E" [ color="purple",arrowhead="none" ]; +"115E" -> "134E" [ color="purple",arrowhead="none" ]; +"116E" -> "135E" [ color="purple",arrowhead="none" ]; +"117E" -> "136E" [ color="purple",arrowhead="none" ]; +"118E" -> "137E" [ color="purple",arrowhead="none" ]; +"119E" -> "138E" [ color="purple",arrowhead="none" ]; +"139E" -> "151E" [ color="purple",arrowhead="none" ]; +"141E" -> "153E" [ color="purple",arrowhead="none" ]; +"142E" -> "154E" [ color="purple",arrowhead="none" ]; +"143E" -> "155E" [ color="purple",arrowhead="none" ]; +"144E" -> "156E" [ color="purple",arrowhead="none" ]; +"145E" -> "157E" [ color="purple",arrowhead="none" ]; +"146E" -> "158E" [ color="purple",arrowhead="none" ]; +"147E" -> "159E" [ color="purple",arrowhead="none" ]; +"148E" -> "160E" [ color="purple",arrowhead="none" ]; +"149E" -> "161E" [ color="purple",arrowhead="none" ]; +"150E" -> "162E" [ color="purple",arrowhead="none" ]; +"165E" -> "177E" [ color="purple",arrowhead="none" ]; +"166E" -> "178E" [ color="purple",arrowhead="none" ]; +"167E" -> "179E" [ color="purple",arrowhead="none" ]; +"168E" -> "180E" [ color="purple",arrowhead="none" ]; +"169E" -> "181E" [ color="purple",arrowhead="none" ]; +"170E" -> "182E" [ color="purple",arrowhead="none" ]; +"171E" -> "183E" [ color="purple",arrowhead="none" ]; +"172E" -> "184E" [ color="purple",arrowhead="none" ]; +"173E" -> "185E" [ color="purple",arrowhead="none" ]; +"174E" -> "186E" [ color="purple",arrowhead="none" ]; +"175E" -> "187E" [ color="purple",arrowhead="none" ]; +"176E" -> "188E" [ color="purple",arrowhead="none" ]; +"189E" -> "190E" [ color="purple",arrowhead="none" ]; +"191E" -> "192E" [ color="purple",arrowhead="none" ]; +"193E" -> "194E" [ color="purple",arrowhead="none" ]; +"195E" -> "196E" [ color="purple",arrowhead="none" ]; +"197E" -> "198E" [ color="purple",arrowhead="none" ]; +"199E" -> "200E" [ color="purple",arrowhead="none" ]; +"201E" -> "202E" [ color="purple",arrowhead="none" ]; +"203E" -> "204E" [ color="purple",arrowhead="none" ]; +"205E" -> "206E" [ color="purple",arrowhead="none" ]; +"207E" -> "208E" [ color="purple",arrowhead="none" ]; +"209E" -> "210E" [ color="purple",arrowhead="none" ]; +"412E" -> "211E" [ color="purple",arrowhead="none" ]; +"214E" -> "213E" [ color="purple",arrowhead="none" ]; +"216E" -> "215E" [ color="purple",arrowhead="none" ]; +"217E" -> "218E" [ color="purple",arrowhead="none" ]; +"219E" -> "220E" [ color="purple",arrowhead="none" ]; +"221E" -> "222E" [ color="purple",arrowhead="none" ]; +"223E" -> "224E" [ color="purple",arrowhead="none" ]; +"225E" -> "226E" [ color="purple",arrowhead="none" ]; +"227E" -> "228E" [ color="purple",arrowhead="none" ]; +"231E" -> "232E" [ color="purple",arrowhead="none" ]; +"233E" -> "234E" [ color="purple",arrowhead="none" ]; +"236E" -> "235E" [ color="purple",arrowhead="none" ]; +"237E" -> "238E" [ color="purple",arrowhead="none" ]; +"239E" -> "240E" [ color="purple",arrowhead="none" ]; +"241E" -> "242E" [ color="purple",arrowhead="none" ]; +"243E" -> "244E" [ color="purple",arrowhead="none" ]; +"245E" -> "246E" [ color="purple",arrowhead="none" ]; +"247E" -> "248E" [ color="purple",arrowhead="none" ]; +"249E" -> "250E" [ color="purple",arrowhead="none" ]; +"251E" -> "252E" [ color="purple",arrowhead="none" ]; +"253E" -> "254E" [ color="purple",arrowhead="none" ]; +"255E" -> "256E" [ color="purple",arrowhead="none" ]; +"257E" -> "258E" [ color="purple",arrowhead="none" ]; +"259E" -> "260E" [ color="purple",arrowhead="none" ]; +"261E" -> "262E" [ color="purple",arrowhead="none" ]; +"263E" -> "264E" [ color="purple",arrowhead="none" ]; +"265E" -> "266E" [ color="purple",arrowhead="none" ]; +"267E" -> "268E" [ color="purple",arrowhead="none" ]; +"269E" -> "270E" [ color="purple",arrowhead="none" ]; +"271E" -> "272E" [ color="purple",arrowhead="none" ]; +"273E" -> "274E" [ color="purple",arrowhead="none" ]; +"275E" -> "276E" [ color="purple",arrowhead="none" ]; +"278E" -> "277E" [ color="purple",arrowhead="none" ]; +"279E" -> "767E" [ color="purple",arrowhead="none" ]; +"281E" -> "282E" [ color="purple",arrowhead="none" ]; +"283E" -> "284E" [ color="purple",arrowhead="none" ]; +"285E" -> "286E" [ color="purple",arrowhead="none" ]; +"768E" -> "287E" [ color="purple",arrowhead="none" ]; +"289E" -> "290E" [ color="purple",arrowhead="none" ]; +"291E" -> "292E" [ color="purple",arrowhead="none" ]; +"293E" -> "294E" [ color="purple",arrowhead="none" ]; +"295E" -> "296E" [ color="purple",arrowhead="none" ]; +"297E" -> "298E" [ color="purple",arrowhead="none" ]; +"299E" -> "300E" [ color="purple",arrowhead="none" ]; +"301E" -> "302E" [ color="purple",arrowhead="none" ]; +"303E" -> "304E" [ color="purple",arrowhead="none" ]; +"305E" -> "306E" [ color="purple",arrowhead="none" ]; +"307E" -> "308E" [ color="purple",arrowhead="none" ]; +"309E" -> "310E" [ color="purple",arrowhead="none" ]; +"311E" -> "312E" [ color="purple",arrowhead="none" ]; +"313E" -> "314E" [ color="purple",arrowhead="none" ]; +"315E" -> "316E" [ color="purple",arrowhead="none" ]; +"317E" -> "318E" [ color="purple",arrowhead="none" ]; +"319E" -> "320E" [ color="purple",arrowhead="none" ]; +"321E" -> "322E" [ color="purple",arrowhead="none" ]; +"327E" -> "800E" [ color="purple",arrowhead="none" ]; +"329E" -> "330E" [ color="purple",arrowhead="none" ]; +"331E" -> "332E" [ color="purple",arrowhead="none" ]; +"333E" -> "334E" [ color="purple",arrowhead="none" ]; +"335E" -> "336E" [ color="purple",arrowhead="none" ]; +"337E" -> "338E" [ color="purple",arrowhead="none" ]; +"339E" -> "340E" [ color="purple",arrowhead="none" ]; +"341E" -> "342E" [ color="purple",arrowhead="none" ]; +"343E" -> "344E" [ color="purple",arrowhead="none" ]; +"345E" -> "346E" [ color="purple",arrowhead="none" ]; +"347E" -> "348E" [ color="purple",arrowhead="none" ]; +"349E" -> "350E" [ color="purple",arrowhead="none" ]; +"351E" -> "352E" [ color="purple",arrowhead="none" ]; +"353E" -> "354E" [ color="purple",arrowhead="none" ]; +"412E" -> "355E" [ color="purple",arrowhead="none" ]; +"357E" -> "358E" [ color="purple",arrowhead="none" ]; +"359E" -> "360E" [ color="purple",arrowhead="none" ]; +"361E" -> "362E" [ color="purple",arrowhead="none" ]; +"363E" -> "364E" [ color="purple",arrowhead="none" ]; +"365E" -> "366E" [ color="purple",arrowhead="none" ]; +"367E" -> "368E" [ color="purple",arrowhead="none" ]; +"369E" -> "370E" [ color="purple",arrowhead="none" ]; +"371E" -> "372E" [ color="purple",arrowhead="none" ]; +"373E" -> "374E" [ color="purple",arrowhead="none" ]; +"375E" -> "376E" [ color="purple",arrowhead="none" ]; +"377E" -> "378E" [ color="purple",arrowhead="none" ]; +"379E" -> "380E" [ color="purple",arrowhead="none" ]; +"381E" -> "382E" [ color="purple",arrowhead="none" ]; +"383E" -> "384E" [ color="purple",arrowhead="none" ]; +"385E" -> "386E" [ color="purple",arrowhead="none" ]; +"387E" -> "388E" [ color="purple",arrowhead="none" ]; +"389E" -> "390E" [ color="purple",arrowhead="none" ]; +"391E" -> "392E" [ color="purple",arrowhead="none" ]; +"393E" -> "394E" [ color="purple",arrowhead="none" ]; +"395E" -> "396E" [ color="purple",arrowhead="none" ]; +"397E" -> "398E" [ color="purple",arrowhead="none" ]; +"399E" -> "400E" [ color="purple",arrowhead="none" ]; +"402E" -> "401E" [ color="purple",arrowhead="none" ]; +"404E" -> "403E" [ color="purple",arrowhead="none" ]; +"406E" -> "405E" [ color="purple",arrowhead="none" ]; +"408E" -> "407E" [ color="purple",arrowhead="none" ]; +"236E" -> "409E" [ color="purple",arrowhead="none" ]; +"412E" -> "411E" [ color="purple",arrowhead="none" ]; +"412E" -> "413E" [ color="purple",arrowhead="none" ]; +"278E" -> "415E" [ color="purple",arrowhead="none" ]; +"417E" -> "418E" [ color="purple",arrowhead="none" ]; +"419E" -> "420E" [ color="purple",arrowhead="none" ]; +"421E" -> "422E" [ color="purple",arrowhead="none" ]; +"423E" -> "424E" [ color="purple",arrowhead="none" ]; +"425E" -> "426E" [ color="purple",arrowhead="none" ]; +"427E" -> "428E" [ color="purple",arrowhead="none" ]; +"431E" -> "432E" [ color="purple",arrowhead="none" ]; +"433E" -> "434E" [ color="purple",arrowhead="none" ]; +"435E" -> "436E" [ color="purple",arrowhead="none" ]; +"438E" -> "437E" [ color="purple",arrowhead="none" ]; +"439E" -> "440E" [ color="purple",arrowhead="none" ]; +"441E" -> "442E" [ color="purple",arrowhead="none" ]; +"443E" -> "444E" [ color="purple",arrowhead="none" ]; +"445E" -> "446E" [ color="purple",arrowhead="none" ]; +"448E" -> "447E" [ color="purple",arrowhead="none" ]; +"449E" -> "450E" [ color="purple",arrowhead="none" ]; +"451E" -> "452E" [ color="purple",arrowhead="none" ]; +"453E" -> "454E" [ color="purple",arrowhead="none" ]; +"455E" -> "456E" [ color="purple",arrowhead="none" ]; +"457E" -> "458E" [ color="purple",arrowhead="none" ]; +"459E" -> "460E" [ color="purple",arrowhead="none" ]; +"461E" -> "462E" [ color="purple",arrowhead="none" ]; +"236E" -> "463E" [ color="purple",arrowhead="none" ]; +"465E" -> "466E" [ color="purple",arrowhead="none" ]; +"467E" -> "468E" [ color="purple",arrowhead="none" ]; +"469E" -> "470E" [ color="purple",arrowhead="none" ]; +"471E" -> "472E" [ color="purple",arrowhead="none" ]; +"473E" -> "474E" [ color="purple",arrowhead="none" ]; +"476E" -> "475E" [ color="purple",arrowhead="none" ]; +"477E" -> "478E" [ color="purple",arrowhead="none" ]; +"479E" -> "358E" [ color="purple",arrowhead="none" ]; +"481E" -> "482E" [ color="purple",arrowhead="none" ]; +"483E" -> "484E" [ color="purple",arrowhead="none" ]; +"485E" -> "486E" [ color="purple",arrowhead="none" ]; +"487E" -> "488E" [ color="purple",arrowhead="none" ]; +"489E" -> "490E" [ color="purple",arrowhead="none" ]; +"491E" -> "492E" [ color="purple",arrowhead="none" ]; +"495E" -> "795E" [ color="purple",arrowhead="none" ]; +"499E" -> "500E" [ color="purple",arrowhead="none" ]; +"501E" -> "502E" [ color="purple",arrowhead="none" ]; +"504E" -> "503E" [ color="purple",arrowhead="none" ]; +"505E" -> "506E" [ color="purple",arrowhead="none" ]; +"507E" -> "508E" [ color="purple",arrowhead="none" ]; +"509E" -> "510E" [ color="purple",arrowhead="none" ]; +"412E" -> "511E" [ color="purple",arrowhead="none" ]; +"513E" -> "514E" [ color="purple",arrowhead="none" ]; +"515E" -> "516E" [ color="purple",arrowhead="none" ]; +"517E" -> "518E" [ color="purple",arrowhead="none" ]; +"519E" -> "520E" [ color="purple",arrowhead="none" ]; +"521E" -> "522E" [ color="purple",arrowhead="none" ]; +"523E" -> "524E" [ color="purple",arrowhead="none" ]; +"525E" -> "526E" [ color="purple",arrowhead="none" ]; +"527E" -> "528E" [ color="purple",arrowhead="none" ]; +"529E" -> "530E" [ color="purple",arrowhead="none" ]; +"531E" -> "532E" [ color="purple",arrowhead="none" ]; +"533E" -> "534E" [ color="purple",arrowhead="none" ]; +"535E" -> "536E" [ color="purple",arrowhead="none" ]; +"537E" -> "538E" [ color="purple",arrowhead="none" ]; +"539E" -> "540E" [ color="purple",arrowhead="none" ]; +"541E" -> "542E" [ color="purple",arrowhead="none" ]; +"543E" -> "544E" [ color="purple",arrowhead="none" ]; +"545E" -> "546E" [ color="purple",arrowhead="none" ]; +"547E" -> "548E" [ color="purple",arrowhead="none" ]; +"549E" -> "550E" [ color="purple",arrowhead="none" ]; +"551E" -> "552E" [ color="purple",arrowhead="none" ]; +"553E" -> "554E" [ color="purple",arrowhead="none" ]; +"555E" -> "556E" [ color="purple",arrowhead="none" ]; +"557E" -> "558E" [ color="purple",arrowhead="none" ]; +"278E" -> "559E" [ color="purple",arrowhead="none" ]; +"561E" -> "562E" [ color="purple",arrowhead="none" ]; +"563E" -> "564E" [ color="purple",arrowhead="none" ]; +"565E" -> "566E" [ color="purple",arrowhead="none" ]; +"567E" -> "568E" [ color="purple",arrowhead="none" ]; +"569E" -> "570E" [ color="purple",arrowhead="none" ]; +"571E" -> "572E" [ color="purple",arrowhead="none" ]; +"573E" -> "574E" [ color="purple",arrowhead="none" ]; +"575E" -> "576E" [ color="purple",arrowhead="none" ]; +"577E" -> "578E" [ color="purple",arrowhead="none" ]; +"579E" -> "580E" [ color="purple",arrowhead="none" ]; +"581E" -> "582E" [ color="purple",arrowhead="none" ]; +"583E" -> "584E" [ color="purple",arrowhead="none" ]; +"585E" -> "586E" [ color="purple",arrowhead="none" ]; +"587E" -> "588E" [ color="purple",arrowhead="none" ]; +"589E" -> "590E" [ color="purple",arrowhead="none" ]; +"593E" -> "594E" [ color="purple",arrowhead="none" ]; +"597E" -> "598E" [ color="purple",arrowhead="none" ]; +"599E" -> "600E" [ color="purple",arrowhead="none" ]; +"601E" -> "602E" [ color="purple",arrowhead="none" ]; +"603E" -> "604E" [ color="purple",arrowhead="none" ]; +"605E" -> "606E" [ color="purple",arrowhead="none" ]; +"607E" -> "608E" [ color="purple",arrowhead="none" ]; +"609E" -> "610E" [ color="purple",arrowhead="none" ]; +"611E" -> "612E" [ color="purple",arrowhead="none" ]; +"613E" -> "614E" [ color="purple",arrowhead="none" ]; +"615E" -> "358E" [ color="purple",arrowhead="none" ]; +"617E" -> "618E" [ color="purple",arrowhead="none" ]; +"619E" -> "620E" [ color="purple",arrowhead="none" ]; +"621E" -> "622E" [ color="purple",arrowhead="none" ]; +"623E" -> "624E" [ color="purple",arrowhead="none" ]; +"625E" -> "626E" [ color="purple",arrowhead="none" ]; +"627E" -> "628E" [ color="purple",arrowhead="none" ]; +"629E" -> "630E" [ color="purple",arrowhead="none" ]; +"631E" -> "632E" [ color="purple",arrowhead="none" ]; +"634E" -> "633E" [ color="purple",arrowhead="none" ]; +"635E" -> "636E" [ color="purple",arrowhead="none" ]; +"637E" -> "638E" [ color="purple",arrowhead="none" ]; +"639E" -> "640E" [ color="purple",arrowhead="none" ]; +"641E" -> "642E" [ color="purple",arrowhead="none" ]; +"643E" -> "644E" [ color="purple",arrowhead="none" ]; +"645E" -> "646E" [ color="purple",arrowhead="none" ]; +"647E" -> "648E" [ color="purple",arrowhead="none" ]; +"649E" -> "650E" [ color="purple",arrowhead="none" ]; +"651E" -> "652E" [ color="purple",arrowhead="none" ]; +"653E" -> "654E" [ color="purple",arrowhead="none" ]; +"655E" -> "656E" [ color="purple",arrowhead="none" ]; +"657E" -> "658E" [ color="purple",arrowhead="none" ]; +"659E" -> "660E" [ color="purple",arrowhead="none" ]; +"661E" -> "662E" [ color="purple",arrowhead="none" ]; +"663E" -> "664E" [ color="purple",arrowhead="none" ]; +"665E" -> "666E" [ color="purple",arrowhead="none" ]; +"667E" -> "668E" [ color="purple",arrowhead="none" ]; +"669E" -> "670E" [ color="purple",arrowhead="none" ]; +"671E" -> "672E" [ color="purple",arrowhead="none" ]; +"673E" -> "674E" [ color="purple",arrowhead="none" ]; +"675E" -> "676E" [ color="purple",arrowhead="none" ]; +"679E" -> "680E" [ color="purple",arrowhead="none" ]; +"681E" -> "682E" [ color="purple",arrowhead="none" ]; +"683E" -> "684E" [ color="purple",arrowhead="none" ]; +"685E" -> "686E" [ color="purple",arrowhead="none" ]; +"687E" -> "688E" [ color="purple",arrowhead="none" ]; +"689E" -> "690E" [ color="purple",arrowhead="none" ]; +"691E" -> "692E" [ color="purple",arrowhead="none" ]; +"693E" -> "694E" [ color="purple",arrowhead="none" ]; +"695E" -> "696E" [ color="purple",arrowhead="none" ]; +"697E" -> "698E" [ color="purple",arrowhead="none" ]; +"699E" -> "700E" [ color="purple",arrowhead="none" ]; +"703E" -> "704E" [ color="purple",arrowhead="none" ]; +"705E" -> "706E" [ color="purple",arrowhead="none" ]; +"709E" -> "710E" [ color="purple",arrowhead="none" ]; +"711E" -> "712E" [ color="purple",arrowhead="none" ]; +"713E" -> "714E" [ color="purple",arrowhead="none" ]; +"715E" -> "398E" [ color="purple",arrowhead="none" ]; +"717E" -> "718E" [ color="purple",arrowhead="none" ]; +"719E" -> "720E" [ color="purple",arrowhead="none" ]; +"721E" -> "722E" [ color="purple",arrowhead="none" ]; +"725E" -> "726E" [ color="purple",arrowhead="none" ]; +"727E" -> "728E" [ color="purple",arrowhead="none" ]; +"729E" -> "730E" [ color="purple",arrowhead="none" ]; +"731E" -> "732E" [ color="purple",arrowhead="none" ]; +"741E" -> "743E" [ color="purple",arrowhead="none" ]; +"742E" -> "744E" [ color="purple",arrowhead="none" ]; +"745E" -> "754E" [ color="purple",arrowhead="none" ]; +"746E" -> "755E" [ color="purple",arrowhead="none" ]; +"747E" -> "756E" [ color="purple",arrowhead="none" ]; +"748E" -> "757E" [ color="purple",arrowhead="none" ]; +"749E" -> "758E" [ color="purple",arrowhead="none" ]; +"750E" -> "759E" [ color="purple",arrowhead="none" ]; +"751E" -> "760E" [ color="purple",arrowhead="none" ]; +"752E" -> "761E" [ color="purple",arrowhead="none" ]; +"753E" -> "762E" [ color="purple",arrowhead="none" ]; +"763E" -> "764E" [ color="purple",arrowhead="none" ]; +"765E" -> "766E" [ color="purple",arrowhead="none" ]; +"770E" -> "783E" [ color="purple",arrowhead="none" ]; +"770E" -> "784E" [ color="purple",arrowhead="none" ]; +"769E" -> "785E" [ color="purple",arrowhead="none" ]; +"769E" -> "786E" [ color="purple",arrowhead="none" ]; +"769E" -> "787E" [ color="purple",arrowhead="none" ]; +"770E" -> "788E" [ color="purple",arrowhead="none" ]; +"770E" -> "789E" [ color="purple",arrowhead="none" ]; +"769E" -> "790E" [ color="purple",arrowhead="none" ]; +"770E" -> "791E" [ color="purple",arrowhead="none" ]; +"769E" -> "792E" [ color="purple",arrowhead="none" ]; +"793E" -> "769E" [ color="purple",arrowhead="none" ]; +"769E" -> "784E" [ color="purple",arrowhead="none" ]; +"770E" -> "785E" [ color="purple",arrowhead="none" ]; +"788E" -> "787E" [ color="purple",arrowhead="none" ]; +"770E" -> "792E" [ color="purple",arrowhead="none" ]; +"798E" -> "799E" [ color="purple",arrowhead="none" ]; +"796E" -> "797E" [ color="purple",arrowhead="none" ]; +"793E" -> "789E" [ color="purple",arrowhead="none" ]; +"783E" -> "787E" [ color="purple",arrowhead="none" ]; +"784E" -> "792E" [ color="purple",arrowhead="none" ]; +"787E" -> "789E" [ color="purple",arrowhead="none" ]; +"769E" -> "791E" [ color="purple",arrowhead="none" ]; +"802E" -> "801E" [ color="purple",arrowhead="none" ]; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/unix.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/unix.gv.txt new file mode 100644 index 00000000..f8ddf8db --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/unix.gv.txt @@ -0,0 +1,54 @@ +/* courtesy Ian Darwin and Geoff Collyer, Softquad Inc. */ +digraph unix { + size="6,6"; + node [color=lightblue2, style=filled]; + "5th Edition" -> "6th Edition"; + "5th Edition" -> "PWB 1.0"; + "6th Edition" -> "LSX"; + "6th Edition" -> "1 BSD"; + "6th Edition" -> "Mini Unix"; + "6th Edition" -> "Wollongong"; + "6th Edition" -> "Interdata"; + "Interdata" -> "Unix/TS 3.0"; + "Interdata" -> "PWB 2.0"; + "Interdata" -> "7th Edition"; + "7th Edition" -> "8th Edition"; + "7th Edition" -> "32V"; + "7th Edition" -> "V7M"; + "7th Edition" -> "Ultrix-11"; + "7th Edition" -> "Xenix"; + "7th Edition" -> "UniPlus+"; + "V7M" -> "Ultrix-11"; + "8th Edition" -> "9th Edition"; + "1 BSD" -> "2 BSD"; + "2 BSD" -> "2.8 BSD"; + "2.8 BSD" -> "Ultrix-11"; + "2.8 BSD" -> "2.9 BSD"; + "32V" -> "3 BSD"; + "3 BSD" -> "4 BSD"; + "4 BSD" -> "4.1 BSD"; + "4.1 BSD" -> "4.2 BSD"; + "4.1 BSD" -> "2.8 BSD"; + "4.1 BSD" -> "8th Edition"; + "4.2 BSD" -> "4.3 BSD"; + "4.2 BSD" -> "Ultrix-32"; + "PWB 1.0" -> "PWB 1.2"; + "PWB 1.0" -> "USG 1.0"; + "PWB 1.2" -> "PWB 2.0"; + "USG 1.0" -> "CB Unix 1"; + "USG 1.0" -> "USG 2.0"; + "CB Unix 1" -> "CB Unix 2"; + "CB Unix 2" -> "CB Unix 3"; + "CB Unix 3" -> "Unix/TS++"; + "CB Unix 3" -> "PDP-11 Sys V"; + "USG 2.0" -> "USG 3.0"; + "USG 3.0" -> "Unix/TS 3.0"; + "PWB 2.0" -> "Unix/TS 3.0"; + "Unix/TS 1.0" -> "Unix/TS 3.0"; + "Unix/TS 3.0" -> "TS 4.0"; + "Unix/TS++" -> "TS 4.0"; + "CB Unix 3" -> "TS 4.0"; + "TS 4.0" -> "System V.0"; + "System V.0" -> "System V.2"; + "System V.2" -> "System V.3"; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/world.gv.txt b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/world.gv.txt new file mode 100644 index 00000000..3e6e4e37 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/testdata/world.gv.txt @@ -0,0 +1,67 @@ +digraph world { +size="7,7"; + {rank=same; S8 S24 S1 S35 S30;} + {rank=same; T8 T24 T1 T35 T30;} + {rank=same; 43 37 36 10 2;} + {rank=same; 25 9 38 40 13 17 12 18;} + {rank=same; 26 42 11 3 33 19 39 14 16;} + {rank=same; 4 31 34 21 41 28 20;} + {rank=same; 27 5 22 32 29 15;} + {rank=same; 6 23;} + {rank=same; 7;} + + S8 -> 9; + S24 -> 25; + S24 -> 27; + S1 -> 2; + S1 -> 10; + S35 -> 43; + S35 -> 36; + S30 -> 31; + S30 -> 33; + 9 -> 42; + 9 -> T1; + 25 -> T1; + 25 -> 26; + 27 -> T24; + 2 -> {3 ; 16 ; 17 ; T1 ; 18} + 10 -> { 11 ; 14 ; T1 ; 13; 12;} + 31 -> T1; + 31 -> 32; + 33 -> T30; + 33 -> 34; + 42 -> 4; + 26 -> 4; + 3 -> 4; + 16 -> 15; + 17 -> 19; + 18 -> 29; + 11 -> 4; + 14 -> 15; + 37 -> {39 ; 41 ; 38 ; 40;} + 13 -> 19; + 12 -> 29; + 43 -> 38; + 43 -> 40; + 36 -> 19; + 32 -> 23; + 34 -> 29; + 39 -> 15; + 41 -> 29; + 38 -> 4; + 40 -> 19; + 4 -> 5; + 19 -> {21 ; 20 ; 28;} + 5 -> {6 ; T35 ; 23;} + 21 -> 22; + 20 -> 15; + 28 -> 29; + 6 -> 7; + 15 -> T1; + 22 -> T35; + 22 -> 23; + 29 -> T30; + 7 -> T8; + 23 -> T24; + 23 -> T1; +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/token/dottokens.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/token/dottokens.go new file mode 100644 index 00000000..0bfff57d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/token/dottokens.go @@ -0,0 +1,54 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package token + +var DOTTokens = NewMapFromStrings([]string{ + "ε", + "id", + "{", + "}", + ";", + "=", + "[", + "]", + ",", + ":", + "->", + "--", + "graph", + "Graph", + "GRAPH", + "strict", + "Strict", + "STRICT", + "digraph", + "Digraph", + "DiGraph", + "DIGRAPH", + "node", + "Node", + "NODE", + "edge", + "Edge", + "EDGE", + "subgraph", + "Subgraph", + "SubGraph", + "SUBGRAPH", + "string_lit", + "int_lit", + "float_lit", + "html_lit", +}) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/token/token.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/token/token.go new file mode 100644 index 00000000..f6ec09b6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/token/token.go @@ -0,0 +1,242 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package token + +import ( + "bytes" + "fmt" + "io/ioutil" + "regexp" + "strconv" + "strings" +) + +type Token struct { + Type Type + Lit []byte +} + +func NewToken(typ Type, lit []byte) *Token { + return &Token{typ, lit} +} + +func (this *Token) Equals(that *Token) bool { + if this == nil || that == nil { + return this == that + } + + if this.Type != that.Type { + return false + } + + return bytes.Equal(this.Lit, that.Lit) +} + +func (this *Token) String() string { + str := "" + if this.Type == EOF { + str += "\"$\"" + } else { + str += "\"" + string(this.Lit) + "\"" + } + str += "(" + strconv.Itoa(int(this.Type)) + ")" + return str +} + +type Type int + +const ( + ILLEGAL Type = iota - 1 + EOF +) + +func (T Type) String() string { + return strconv.Itoa(int(T)) +} + +// Position describes an arbitrary source position +// including the file, line, and column location. +// A Position is valid if the line number is > 0. +// +type Position struct { + Offset int // offset, starting at 0 + Line int // line number, starting at 1 + Column int // column number, starting at 1 (character count) +} + +// IsValid returns true if the position is valid. +func (pos *Position) IsValid() bool { return pos.Line > 0 } + +// String returns a string in one of several forms: +// +// file:line:column valid position with file name +// line:column valid position without file name +// file invalid position with file name +// - invalid position without file name +// +func (pos Position) String() string { + s := "" + if pos.IsValid() { + s += fmt.Sprintf("%d:%d", pos.Line, pos.Column) + } + if s == "" { + s = "-" + } + return s +} + +func (T *Token) IntValue() (int64, error) { + return strconv.ParseInt(string(T.Lit), 10, 64) +} + +func (T *Token) UintValue() (uint64, error) { + return strconv.ParseUint(string(T.Lit), 10, 64) +} + +func (T *Token) SDTVal() string { + sdt := string(T.Lit) + rex, err := regexp.Compile("\\$[0-9]+") + if err != nil { + panic(err) + } + idx := rex.FindAllStringIndex(sdt, -1) + res := "" + if len(idx) <= 0 { + res = sdt + } else { + for i, loc := range idx { + if loc[0] > 0 { + if i > 0 { + res += sdt[idx[i-1][1]:loc[0]] + } else { + res += sdt[0:loc[0]] + } + } + res += "X[" + res += sdt[loc[0]+1 : loc[1]] + res += "]" + } + if idx[len(idx)-1][1] < len(sdt) { + res += sdt[idx[len(idx)-1][1]:] + } + } + return strings.TrimSpace(res[2 : len(res)-2]) +} + +//*********** Tokenmap + +type TokenMap struct { + tokenMap []string + stringMap map[string]Type +} + +func NewMap() *TokenMap { + tm := &TokenMap{make([]string, 0, 10), make(map[string]Type)} + tm.AddToken("$") + tm.AddToken("ε") + return tm +} + +func (this *TokenMap) AddToken(str string) { + if _, exists := this.stringMap[str]; exists { + return + } + this.stringMap[str] = Type(len(this.tokenMap)) + this.tokenMap = append(this.tokenMap, str) +} + +func NewMapFromFile(file string) (*TokenMap, error) { + src, err := ioutil.ReadFile(file) + if err != nil { + return nil, err + } + return NewMapFromString(string(src)), nil +} + +func NewMapFromStrings(input []string) *TokenMap { + tm := NewMap() + for _, s := range input { + tm.AddToken(s) + } + return tm +} + +func NewMapFromString(input string) *TokenMap { + tokens := strings.Fields(input) + return NewMapFromStrings(tokens) +} + +func (this *TokenMap) Type(key string) Type { + tok, ok := this.stringMap[key] + if !ok { + return ILLEGAL + } + return tok +} + +func (this *TokenMap) TokenString(typ Type) string { + tok := int(typ) + if tok < 0 || tok >= len(this.tokenMap) { + return "illegal " + strconv.Itoa(tok) + } + return this.tokenMap[tok] +} + +func (this *TokenMap) String() string { + res := "" + for str, tok := range this.stringMap { + res += str + " : " + strconv.Itoa(int(tok)) + "\n" + } + return res +} + +func (this *TokenMap) Strings() []string { + return this.tokenMap[1:] +} + +func (this *TokenMap) Equals(that *TokenMap) bool { + if this == nil || that == nil { + return false + } + + if len(this.stringMap) != len(that.stringMap) || + len(this.tokenMap) != len(that.tokenMap) { + return false + } + + for str, tok := range this.stringMap { + if tok1, ok := that.stringMap[str]; !ok || tok1 != tok { + return false + } + } + + return true +} + +func (this *TokenMap) Tokens() []*Token { + res := make([]*Token, 0, len(this.stringMap)) + for typ, str := range this.tokenMap { + res = append(res, &Token{Type(typ), []byte(str)}) + } + return res +} + +func (this *TokenMap) WriteFile(file string) error { + out := "" + for i := 1; i < len(this.tokenMap); i++ { + out += this.TokenString(Type(i)) + "\n" + } + return ioutil.WriteFile(file, []byte(out), 0644) +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/write.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/write.go new file mode 100644 index 00000000..07e51e80 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/gographviz/write.go @@ -0,0 +1,136 @@ +//Copyright 2013 Vastech SA (PTY) LTD +// +//Licensed under the Apache License, Version 2.0 (the "License"); +//you may not use this file except in compliance with the License. +//You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +//Unless required by applicable law or agreed to in writing, software +//distributed under the License is distributed on an "AS IS" BASIS, +//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +//See the License for the specific language governing permissions and +//limitations under the License. + +package gographviz + +import ( + "code.google.com/p/gographviz/ast" + "fmt" +) + +type writer struct { + *Graph + writtenLocations map[string]bool +} + +func newWriter(g *Graph) *writer { + return &writer{g, make(map[string]bool)} +} + +func appendAttrs(list ast.StmtList, attrs Attrs) ast.StmtList { + for _, name := range attrs.SortedNames() { + stmt := &ast.Attr{ + Field: ast.Id(name), + Value: ast.Id(attrs[name]), + } + list = append(list, stmt) + } + return list +} + +func (this *writer) newSubGraph(name string) *ast.SubGraph { + sub := this.SubGraphs.SubGraphs[name] + this.writtenLocations[sub.Name] = true + s := &ast.SubGraph{} + s.Id = ast.Id(sub.Name) + s.StmtList = appendAttrs(s.StmtList, sub.Attrs) + children := this.Relations.SortedChildren(name) + for _, child := range children { + s.StmtList = append(s.StmtList, this.newNodeStmt(child)) + } + return s +} + +func (this *writer) newNodeId(name string, port string) *ast.NodeId { + node := this.Nodes.Lookup[name] + return ast.MakeNodeId(node.Name, port) +} + +func (this *writer) newNodeStmt(name string) *ast.NodeStmt { + node := this.Nodes.Lookup[name] + id := ast.MakeNodeId(node.Name, "") + this.writtenLocations[node.Name] = true + return &ast.NodeStmt{ + id, + ast.PutMap(node.Attrs), + } +} + +func (this *writer) newLocation(name string, port string) ast.Location { + if this.IsNode(name) { + return this.newNodeId(name, port) + } else if this.IsSubGraph(name) { + if len(port) != 0 { + panic(fmt.Sprintf("subgraph cannot have a port: %v", port)) + } + return this.newSubGraph(name) + } + panic(fmt.Sprintf("%v is not a node or a subgraph", name)) +} + +func (this *writer) newEdgeStmt(edge *Edge) *ast.EdgeStmt { + src := this.newLocation(edge.Src, edge.SrcPort) + dst := this.newLocation(edge.Dst, edge.DstPort) + stmt := &ast.EdgeStmt{ + Source: src, + EdgeRHS: ast.EdgeRHS{ + &ast.EdgeRH{ + ast.EdgeOp(edge.Dir), + dst, + }, + }, + Attrs: ast.PutMap(edge.Attrs), + } + return stmt +} + +func (this *writer) Write() *ast.Graph { + t := &ast.Graph{} + t.Strict = this.Strict + t.Type = ast.GraphType(this.Directed) + t.Id = ast.Id(this.Name) + + t.StmtList = appendAttrs(t.StmtList, this.Attrs) + + for _, edge := range this.Edges.Edges { + t.StmtList = append(t.StmtList, this.newEdgeStmt(edge)) + } + + subGraphs := this.SubGraphs.Sorted() + for _, s := range subGraphs { + if _, ok := this.writtenLocations[s.Name]; !ok { + t.StmtList = append(t.StmtList, this.newSubGraph(s.Name)) + } + } + + nodes := this.Nodes.Sorted() + for _, n := range nodes { + if _, ok := this.writtenLocations[n.Name]; !ok { + t.StmtList = append(t.StmtList, this.newNodeStmt(n.Name)) + } + } + + return t +} + +//Creates an Abstract Syntrax Tree from the Graph. +func (g *Graph) WriteAst() *ast.Graph { + w := newWriter(g) + return w.Write() +} + +//Returns a DOT string representing the Graph. +func (g *Graph) String() string { + return g.WriteAst().String() +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/.hgignore b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/.hgignore new file mode 100644 index 00000000..d804706f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/.hgignore @@ -0,0 +1,30 @@ +syntax:glob +.DS_Store +.git +.gitignore +*.[568ao] +*.ao +*.so +*.pyc +._* +.nfs.* +[568a].out +*~ +*.orig +*.rej +*.exe +.*.swp +core +*.cgo*.go +*.cgo*.c +_cgo_* +_obj +_test +_testmain.go +build.out +snappy/testdata +test.out +y.tab.[ch] + +syntax:regexp +^.*/core.[0-9]*$ diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/AUTHORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/AUTHORS new file mode 100644 index 00000000..8ddb5b7a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/AUTHORS @@ -0,0 +1,12 @@ +# This is the official list of Snappy-Go authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS files. +# See the latter for an explanation. + +# Names should be added to this file as +# Name or Organization +# The email address is not required for organizations. + +# Please keep the list sorted. + +Google Inc. +Jan Mercl <0xjnml@gmail.com> diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/CONTRIBUTORS b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/CONTRIBUTORS new file mode 100644 index 00000000..50b69c80 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/CONTRIBUTORS @@ -0,0 +1,34 @@ +# This is the official list of people who can contribute +# (and typically have contributed) code to the Snappy-Go repository. +# The AUTHORS file lists the copyright holders; this file +# lists people. For example, Google employees are listed here +# but not in AUTHORS, because Google holds the copyright. +# +# The submission process automatically checks to make sure +# that people submitting code are listed in this file (by email address). +# +# Names should be added to this file only after verifying that +# the individual or the individual's organization has agreed to +# the appropriate Contributor License Agreement, found here: +# +# http://code.google.com/legal/individual-cla-v1.0.html +# http://code.google.com/legal/corporate-cla-v1.0.html +# +# The agreement for individuals can be filled out on the web. +# +# When adding J Random Contributor's name to this file, +# either J's name or J's organization's name should be +# added to the AUTHORS file, depending on whether the +# individual or corporate CLA was used. + +# Names should be added to this file like so: +# Name + +# Please keep the list sorted. + +Jan Mercl <0xjnml@gmail.com> +Kai Backman +Marc-Antoine Ruel +Nigel Tao +Rob Pike +Russ Cox diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/LICENSE b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/LICENSE new file mode 100644 index 00000000..6050c10f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2011 The Snappy-Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/README b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/README new file mode 100644 index 00000000..3cf8be1f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/README @@ -0,0 +1,11 @@ +This is a Snappy library for the Go programming language. + +To download and install from source: +$ go get code.google.com/p/snappy-go/snappy + +Unless otherwise noted, the Snappy-Go source files are distributed +under the BSD-style license found in the LICENSE file. + +Contributions should follow the same procedure as for the Go project: +http://golang.org/doc/contribute.html + diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/lib/codereview/codereview.cfg b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/lib/codereview/codereview.cfg new file mode 100644 index 00000000..93b55c0a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/lib/codereview/codereview.cfg @@ -0,0 +1 @@ +defaultcc: golang-dev@googlegroups.com diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/decode.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/decode.go new file mode 100644 index 00000000..d93c1b9d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/decode.go @@ -0,0 +1,124 @@ +// Copyright 2011 The Snappy-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package snappy + +import ( + "encoding/binary" + "errors" +) + +// ErrCorrupt reports that the input is invalid. +var ErrCorrupt = errors.New("snappy: corrupt input") + +// DecodedLen returns the length of the decoded block. +func DecodedLen(src []byte) (int, error) { + v, _, err := decodedLen(src) + return v, err +} + +// decodedLen returns the length of the decoded block and the number of bytes +// that the length header occupied. +func decodedLen(src []byte) (blockLen, headerLen int, err error) { + v, n := binary.Uvarint(src) + if n == 0 { + return 0, 0, ErrCorrupt + } + if uint64(int(v)) != v { + return 0, 0, errors.New("snappy: decoded block is too large") + } + return int(v), n, nil +} + +// Decode returns the decoded form of src. The returned slice may be a sub- +// slice of dst if dst was large enough to hold the entire decoded block. +// Otherwise, a newly allocated slice will be returned. +// It is valid to pass a nil dst. +func Decode(dst, src []byte) ([]byte, error) { + dLen, s, err := decodedLen(src) + if err != nil { + return nil, err + } + if len(dst) < dLen { + dst = make([]byte, dLen) + } + + var d, offset, length int + for s < len(src) { + switch src[s] & 0x03 { + case tagLiteral: + x := uint(src[s] >> 2) + switch { + case x < 60: + s += 1 + case x == 60: + s += 2 + if s > len(src) { + return nil, ErrCorrupt + } + x = uint(src[s-1]) + case x == 61: + s += 3 + if s > len(src) { + return nil, ErrCorrupt + } + x = uint(src[s-2]) | uint(src[s-1])<<8 + case x == 62: + s += 4 + if s > len(src) { + return nil, ErrCorrupt + } + x = uint(src[s-3]) | uint(src[s-2])<<8 | uint(src[s-1])<<16 + case x == 63: + s += 5 + if s > len(src) { + return nil, ErrCorrupt + } + x = uint(src[s-4]) | uint(src[s-3])<<8 | uint(src[s-2])<<16 | uint(src[s-1])<<24 + } + length = int(x + 1) + if length <= 0 { + return nil, errors.New("snappy: unsupported literal length") + } + if length > len(dst)-d || length > len(src)-s { + return nil, ErrCorrupt + } + copy(dst[d:], src[s:s+length]) + d += length + s += length + continue + + case tagCopy1: + s += 2 + if s > len(src) { + return nil, ErrCorrupt + } + length = 4 + int(src[s-2])>>2&0x7 + offset = int(src[s-2])&0xe0<<3 | int(src[s-1]) + + case tagCopy2: + s += 3 + if s > len(src) { + return nil, ErrCorrupt + } + length = 1 + int(src[s-3])>>2 + offset = int(src[s-2]) | int(src[s-1])<<8 + + case tagCopy4: + return nil, errors.New("snappy: unsupported COPY_4 tag") + } + + end := d + length + if offset > d || end > len(dst) { + return nil, ErrCorrupt + } + for ; d < end; d++ { + dst[d] = dst[d-offset] + } + } + if d != dLen { + return nil, ErrCorrupt + } + return dst[:d], nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/encode.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/encode.go new file mode 100644 index 00000000..b2371db1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/encode.go @@ -0,0 +1,174 @@ +// Copyright 2011 The Snappy-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package snappy + +import ( + "encoding/binary" +) + +// We limit how far copy back-references can go, the same as the C++ code. +const maxOffset = 1 << 15 + +// emitLiteral writes a literal chunk and returns the number of bytes written. +func emitLiteral(dst, lit []byte) int { + i, n := 0, uint(len(lit)-1) + switch { + case n < 60: + dst[0] = uint8(n)<<2 | tagLiteral + i = 1 + case n < 1<<8: + dst[0] = 60<<2 | tagLiteral + dst[1] = uint8(n) + i = 2 + case n < 1<<16: + dst[0] = 61<<2 | tagLiteral + dst[1] = uint8(n) + dst[2] = uint8(n >> 8) + i = 3 + case n < 1<<24: + dst[0] = 62<<2 | tagLiteral + dst[1] = uint8(n) + dst[2] = uint8(n >> 8) + dst[3] = uint8(n >> 16) + i = 4 + case int64(n) < 1<<32: + dst[0] = 63<<2 | tagLiteral + dst[1] = uint8(n) + dst[2] = uint8(n >> 8) + dst[3] = uint8(n >> 16) + dst[4] = uint8(n >> 24) + i = 5 + default: + panic("snappy: source buffer is too long") + } + if copy(dst[i:], lit) != len(lit) { + panic("snappy: destination buffer is too short") + } + return i + len(lit) +} + +// emitCopy writes a copy chunk and returns the number of bytes written. +func emitCopy(dst []byte, offset, length int) int { + i := 0 + for length > 0 { + x := length - 4 + if 0 <= x && x < 1<<3 && offset < 1<<11 { + dst[i+0] = uint8(offset>>8)&0x07<<5 | uint8(x)<<2 | tagCopy1 + dst[i+1] = uint8(offset) + i += 2 + break + } + + x = length + if x > 1<<6 { + x = 1 << 6 + } + dst[i+0] = uint8(x-1)<<2 | tagCopy2 + dst[i+1] = uint8(offset) + dst[i+2] = uint8(offset >> 8) + i += 3 + length -= x + } + return i +} + +// Encode returns the encoded form of src. The returned slice may be a sub- +// slice of dst if dst was large enough to hold the entire encoded block. +// Otherwise, a newly allocated slice will be returned. +// It is valid to pass a nil dst. +func Encode(dst, src []byte) ([]byte, error) { + if n := MaxEncodedLen(len(src)); len(dst) < n { + dst = make([]byte, n) + } + + // The block starts with the varint-encoded length of the decompressed bytes. + d := binary.PutUvarint(dst, uint64(len(src))) + + // Return early if src is short. + if len(src) <= 4 { + if len(src) != 0 { + d += emitLiteral(dst[d:], src) + } + return dst[:d], nil + } + + // Initialize the hash table. Its size ranges from 1<<8 to 1<<14 inclusive. + const maxTableSize = 1 << 14 + shift, tableSize := uint(32-8), 1<<8 + for tableSize < maxTableSize && tableSize < len(src) { + shift-- + tableSize *= 2 + } + var table [maxTableSize]int + + // Iterate over the source bytes. + var ( + s int // The iterator position. + t int // The last position with the same hash as s. + lit int // The start position of any pending literal bytes. + ) + for s+3 < len(src) { + // Update the hash table. + b0, b1, b2, b3 := src[s], src[s+1], src[s+2], src[s+3] + h := uint32(b0) | uint32(b1)<<8 | uint32(b2)<<16 | uint32(b3)<<24 + p := &table[(h*0x1e35a7bd)>>shift] + // We need to to store values in [-1, inf) in table. To save + // some initialization time, (re)use the table's zero value + // and shift the values against this zero: add 1 on writes, + // subtract 1 on reads. + t, *p = *p-1, s+1 + // If t is invalid or src[s:s+4] differs from src[t:t+4], accumulate a literal byte. + if t < 0 || s-t >= maxOffset || b0 != src[t] || b1 != src[t+1] || b2 != src[t+2] || b3 != src[t+3] { + s++ + continue + } + // Otherwise, we have a match. First, emit any pending literal bytes. + if lit != s { + d += emitLiteral(dst[d:], src[lit:s]) + } + // Extend the match to be as long as possible. + s0 := s + s, t = s+4, t+4 + for s < len(src) && src[s] == src[t] { + s++ + t++ + } + // Emit the copied bytes. + d += emitCopy(dst[d:], s-t, s-s0) + lit = s + } + + // Emit any final pending literal bytes and return. + if lit != len(src) { + d += emitLiteral(dst[d:], src[lit:]) + } + return dst[:d], nil +} + +// MaxEncodedLen returns the maximum length of a snappy block, given its +// uncompressed length. +func MaxEncodedLen(srcLen int) int { + // Compressed data can be defined as: + // compressed := item* literal* + // item := literal* copy + // + // The trailing literal sequence has a space blowup of at most 62/60 + // since a literal of length 60 needs one tag byte + one extra byte + // for length information. + // + // Item blowup is trickier to measure. Suppose the "copy" op copies + // 4 bytes of data. Because of a special check in the encoding code, + // we produce a 4-byte copy only if the offset is < 65536. Therefore + // the copy op takes 3 bytes to encode, and this type of item leads + // to at most the 62/60 blowup for representing literals. + // + // Suppose the "copy" op copies 5 bytes of data. If the offset is big + // enough, it will take 5 bytes to encode the copy op. Therefore the + // worst case here is a one-byte literal followed by a five-byte copy. + // That is, 6 bytes of input turn into 7 bytes of "compressed" data. + // + // This last factor dominates the blowup, so the final estimate is: + return 32 + srcLen + srcLen/6 +} diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/snappy.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/snappy.go new file mode 100644 index 00000000..2f1b790d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/snappy.go @@ -0,0 +1,38 @@ +// Copyright 2011 The Snappy-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package snappy implements the snappy block-based compression format. +// It aims for very high speeds and reasonable compression. +// +// The C++ snappy implementation is at http://code.google.com/p/snappy/ +package snappy + +/* +Each encoded block begins with the varint-encoded length of the decoded data, +followed by a sequence of chunks. Chunks begin and end on byte boundaries. The +first byte of each chunk is broken into its 2 least and 6 most significant bits +called l and m: l ranges in [0, 4) and m ranges in [0, 64). l is the chunk tag. +Zero means a literal tag. All other values mean a copy tag. + +For literal tags: + - If m < 60, the next 1 + m bytes are literal bytes. + - Otherwise, let n be the little-endian unsigned integer denoted by the next + m - 59 bytes. The next 1 + n bytes after that are literal bytes. + +For copy tags, length bytes are copied from offset bytes ago, in the style of +Lempel-Ziv compression algorithms. In particular: + - For l == 1, the offset ranges in [0, 1<<11) and the length in [4, 12). + The length is 4 + the low 3 bits of m. The high 3 bits of m form bits 8-10 + of the offset. The next byte is bits 0-7 of the offset. + - For l == 2, the offset ranges in [0, 1<<16) and the length in [1, 65). + The length is 1 + m. The offset is the little-endian unsigned integer + denoted by the next 2 bytes. + - For l == 3, this tag is a legacy format that is no longer supported. +*/ +const ( + tagLiteral = 0x00 + tagCopy1 = 0x01 + tagCopy2 = 0x02 + tagCopy4 = 0x03 +) diff --git a/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/snappy_test.go b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/snappy_test.go new file mode 100644 index 00000000..7ba83924 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/code.google.com/p/snappy-go/snappy/snappy_test.go @@ -0,0 +1,261 @@ +// Copyright 2011 The Snappy-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package snappy + +import ( + "bytes" + "flag" + "fmt" + "io" + "io/ioutil" + "math/rand" + "net/http" + "os" + "path/filepath" + "strings" + "testing" +) + +var download = flag.Bool("download", false, "If true, download any missing files before running benchmarks") + +func roundtrip(b, ebuf, dbuf []byte) error { + e, err := Encode(ebuf, b) + if err != nil { + return fmt.Errorf("encoding error: %v", err) + } + d, err := Decode(dbuf, e) + if err != nil { + return fmt.Errorf("decoding error: %v", err) + } + if !bytes.Equal(b, d) { + return fmt.Errorf("roundtrip mismatch:\n\twant %v\n\tgot %v", b, d) + } + return nil +} + +func TestEmpty(t *testing.T) { + if err := roundtrip(nil, nil, nil); err != nil { + t.Fatal(err) + } +} + +func TestSmallCopy(t *testing.T) { + for _, ebuf := range [][]byte{nil, make([]byte, 20), make([]byte, 64)} { + for _, dbuf := range [][]byte{nil, make([]byte, 20), make([]byte, 64)} { + for i := 0; i < 32; i++ { + s := "aaaa" + strings.Repeat("b", i) + "aaaabbbb" + if err := roundtrip([]byte(s), ebuf, dbuf); err != nil { + t.Errorf("len(ebuf)=%d, len(dbuf)=%d, i=%d: %v", len(ebuf), len(dbuf), i, err) + } + } + } + } +} + +func TestSmallRand(t *testing.T) { + rand.Seed(27354294) + for n := 1; n < 20000; n += 23 { + b := make([]byte, n) + for i, _ := range b { + b[i] = uint8(rand.Uint32()) + } + if err := roundtrip(b, nil, nil); err != nil { + t.Fatal(err) + } + } +} + +func TestSmallRegular(t *testing.T) { + for n := 1; n < 20000; n += 23 { + b := make([]byte, n) + for i, _ := range b { + b[i] = uint8(i%10 + 'a') + } + if err := roundtrip(b, nil, nil); err != nil { + t.Fatal(err) + } + } +} + +func benchDecode(b *testing.B, src []byte) { + encoded, err := Encode(nil, src) + if err != nil { + b.Fatal(err) + } + // Bandwidth is in amount of uncompressed data. + b.SetBytes(int64(len(src))) + b.ResetTimer() + for i := 0; i < b.N; i++ { + Decode(src, encoded) + } +} + +func benchEncode(b *testing.B, src []byte) { + // Bandwidth is in amount of uncompressed data. + b.SetBytes(int64(len(src))) + dst := make([]byte, MaxEncodedLen(len(src))) + b.ResetTimer() + for i := 0; i < b.N; i++ { + Encode(dst, src) + } +} + +func readFile(b *testing.B, filename string) []byte { + src, err := ioutil.ReadFile(filename) + if err != nil { + b.Fatalf("failed reading %s: %s", filename, err) + } + if len(src) == 0 { + b.Fatalf("%s has zero length", filename) + } + return src +} + +// expand returns a slice of length n containing repeated copies of src. +func expand(src []byte, n int) []byte { + dst := make([]byte, n) + for x := dst; len(x) > 0; { + i := copy(x, src) + x = x[i:] + } + return dst +} + +func benchWords(b *testing.B, n int, decode bool) { + // Note: the file is OS-language dependent so the resulting values are not + // directly comparable for non-US-English OS installations. + data := expand(readFile(b, "/usr/share/dict/words"), n) + if decode { + benchDecode(b, data) + } else { + benchEncode(b, data) + } +} + +func BenchmarkWordsDecode1e3(b *testing.B) { benchWords(b, 1e3, true) } +func BenchmarkWordsDecode1e4(b *testing.B) { benchWords(b, 1e4, true) } +func BenchmarkWordsDecode1e5(b *testing.B) { benchWords(b, 1e5, true) } +func BenchmarkWordsDecode1e6(b *testing.B) { benchWords(b, 1e6, true) } +func BenchmarkWordsEncode1e3(b *testing.B) { benchWords(b, 1e3, false) } +func BenchmarkWordsEncode1e4(b *testing.B) { benchWords(b, 1e4, false) } +func BenchmarkWordsEncode1e5(b *testing.B) { benchWords(b, 1e5, false) } +func BenchmarkWordsEncode1e6(b *testing.B) { benchWords(b, 1e6, false) } + +// testFiles' values are copied directly from +// https://code.google.com/p/snappy/source/browse/trunk/snappy_unittest.cc. +// The label field is unused in snappy-go. +var testFiles = []struct { + label string + filename string +}{ + {"html", "html"}, + {"urls", "urls.10K"}, + {"jpg", "house.jpg"}, + {"pdf", "mapreduce-osdi-1.pdf"}, + {"html4", "html_x_4"}, + {"cp", "cp.html"}, + {"c", "fields.c"}, + {"lsp", "grammar.lsp"}, + {"xls", "kennedy.xls"}, + {"txt1", "alice29.txt"}, + {"txt2", "asyoulik.txt"}, + {"txt3", "lcet10.txt"}, + {"txt4", "plrabn12.txt"}, + {"bin", "ptt5"}, + {"sum", "sum"}, + {"man", "xargs.1"}, + {"pb", "geo.protodata"}, + {"gaviota", "kppkn.gtb"}, +} + +// The test data files are present at this canonical URL. +const baseURL = "https://snappy.googlecode.com/svn/trunk/testdata/" + +func downloadTestdata(basename string) (errRet error) { + filename := filepath.Join("testdata", basename) + f, err := os.Create(filename) + if err != nil { + return fmt.Errorf("failed to create %s: %s", filename, err) + } + defer f.Close() + defer func() { + if errRet != nil { + os.Remove(filename) + } + }() + resp, err := http.Get(baseURL + basename) + if err != nil { + return fmt.Errorf("failed to download %s: %s", baseURL+basename, err) + } + defer resp.Body.Close() + _, err = io.Copy(f, resp.Body) + if err != nil { + return fmt.Errorf("failed to write %s: %s", filename, err) + } + return nil +} + +func benchFile(b *testing.B, n int, decode bool) { + filename := filepath.Join("testdata", testFiles[n].filename) + if stat, err := os.Stat(filename); err != nil || stat.Size() == 0 { + if !*download { + b.Fatal("test data not found; skipping benchmark without the -download flag") + } + // Download the official snappy C++ implementation reference test data + // files for benchmarking. + if err := os.Mkdir("testdata", 0777); err != nil && !os.IsExist(err) { + b.Fatalf("failed to create testdata: %s", err) + } + for _, tf := range testFiles { + if err := downloadTestdata(tf.filename); err != nil { + b.Fatalf("failed to download testdata: %s", err) + } + } + } + data := readFile(b, filename) + if decode { + benchDecode(b, data) + } else { + benchEncode(b, data) + } +} + +// Naming convention is kept similar to what snappy's C++ implementation uses. +func Benchmark_UFlat0(b *testing.B) { benchFile(b, 0, true) } +func Benchmark_UFlat1(b *testing.B) { benchFile(b, 1, true) } +func Benchmark_UFlat2(b *testing.B) { benchFile(b, 2, true) } +func Benchmark_UFlat3(b *testing.B) { benchFile(b, 3, true) } +func Benchmark_UFlat4(b *testing.B) { benchFile(b, 4, true) } +func Benchmark_UFlat5(b *testing.B) { benchFile(b, 5, true) } +func Benchmark_UFlat6(b *testing.B) { benchFile(b, 6, true) } +func Benchmark_UFlat7(b *testing.B) { benchFile(b, 7, true) } +func Benchmark_UFlat8(b *testing.B) { benchFile(b, 8, true) } +func Benchmark_UFlat9(b *testing.B) { benchFile(b, 9, true) } +func Benchmark_UFlat10(b *testing.B) { benchFile(b, 10, true) } +func Benchmark_UFlat11(b *testing.B) { benchFile(b, 11, true) } +func Benchmark_UFlat12(b *testing.B) { benchFile(b, 12, true) } +func Benchmark_UFlat13(b *testing.B) { benchFile(b, 13, true) } +func Benchmark_UFlat14(b *testing.B) { benchFile(b, 14, true) } +func Benchmark_UFlat15(b *testing.B) { benchFile(b, 15, true) } +func Benchmark_UFlat16(b *testing.B) { benchFile(b, 16, true) } +func Benchmark_UFlat17(b *testing.B) { benchFile(b, 17, true) } +func Benchmark_ZFlat0(b *testing.B) { benchFile(b, 0, false) } +func Benchmark_ZFlat1(b *testing.B) { benchFile(b, 1, false) } +func Benchmark_ZFlat2(b *testing.B) { benchFile(b, 2, false) } +func Benchmark_ZFlat3(b *testing.B) { benchFile(b, 3, false) } +func Benchmark_ZFlat4(b *testing.B) { benchFile(b, 4, false) } +func Benchmark_ZFlat5(b *testing.B) { benchFile(b, 5, false) } +func Benchmark_ZFlat6(b *testing.B) { benchFile(b, 6, false) } +func Benchmark_ZFlat7(b *testing.B) { benchFile(b, 7, false) } +func Benchmark_ZFlat8(b *testing.B) { benchFile(b, 8, false) } +func Benchmark_ZFlat9(b *testing.B) { benchFile(b, 9, false) } +func Benchmark_ZFlat10(b *testing.B) { benchFile(b, 10, false) } +func Benchmark_ZFlat11(b *testing.B) { benchFile(b, 11, false) } +func Benchmark_ZFlat12(b *testing.B) { benchFile(b, 12, false) } +func Benchmark_ZFlat13(b *testing.B) { benchFile(b, 13, false) } +func Benchmark_ZFlat14(b *testing.B) { benchFile(b, 14, false) } +func Benchmark_ZFlat15(b *testing.B) { benchFile(b, 15, false) } +func Benchmark_ZFlat16(b *testing.B) { benchFile(b, 16, false) } +func Benchmark_ZFlat17(b *testing.B) { benchFile(b, 17, false) } diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/.gitignore b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/.gitignore new file mode 100644 index 00000000..00268614 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/.gitignore @@ -0,0 +1,22 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/.travis.yml b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/.travis.yml new file mode 100644 index 00000000..4f2ee4d9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/.travis.yml @@ -0,0 +1 @@ +language: go diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/AUTHORS b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/AUTHORS new file mode 100644 index 00000000..998341c9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/AUTHORS @@ -0,0 +1,5 @@ +# List of gocov authors. + +Andrew Wilkins +Dave Cheney +Greg Ward diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/LICENSE new file mode 100644 index 00000000..10b716ce --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2012 The Gocov Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/README.md new file mode 100644 index 00000000..8b2e3ef5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/README.md @@ -0,0 +1,60 @@ +# gocov + +Coverage reporting tool for The Go Programming Language + +[![Build Status](https://drone.io/github.com/axw/gocov/status.png)](https://drone.io/github.com/axw/gocov/latest) + +## Installation + +```go get github.com/axw/gocov/gocov``` + +## Usage + +There are currently four gocov commands: ```test```, ```convert```, ```report``` and ```annotate```. + +#### gocov test + +Running `gocov test [args...]` will run `go test [args...]` with +an implicit `-coverprofile` added, and then output the result of +`gocov convert` with the profile. + +#### gocov convert + +Running `gocov convert ` will convert a coverage +profile generated by `go tool cover` to gocov's JSON interchange +format. For example: + + go test -coverprofile=c.out + gocov convert c.out | gocov annotate - + +#### gocov report + +Running `gocov report ` will generate a textual +report from the coverage data output by `gocov convert`. It is +assumed that the source code has not changed in between. + +Output from ```gocov test``` is printed to stdout so users can +pipe the output to ```gocov report``` to view a summary of the test +coverage, for example: - + + gocov test | gocov report + +#### gocov annotate + +Running `gocov annotate ` +will generate a source listing of the specified function, annotating +it with coverage information, such as which lines have been missed. + +## Related tools + +[GoCovGUI](http://github.com/nsf/gocovgui/): +A simple GUI wrapper for the gocov coverage analysis tool. + +[gocov-html](https://github.com/matm/gocov-html): +A simple helper tool for generating HTML output from gocov. + +[gocov-xml](https://github.com/AlekSi/gocov-xml): +A simple helper tool for generating XML output in Cobertura format for CIs like Jenkins and others from gocov. + +[goveralls](https://github.com/mattn/goveralls): +Go integration for Coveralls.io continuous code coverage tracking system. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov.go new file mode 100644 index 00000000..6e94ca7d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov.go @@ -0,0 +1,115 @@ +// Copyright (c) 2012 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +// Package gocov is a code coverage analysis tool for Go. +package gocov + +import ( + "fmt" +) + +type Package struct { + // Name is the canonical path of the package. + Name string + + // Functions is a list of functions registered with this package. + Functions []*Function +} + +type Function struct { + // Name is the name of the function. If the function has a receiver, the + // name will be of the form T.N, where T is the type and N is the name. + Name string + + // File is the full path to the file in which the function is defined. + File string + + // Start is the start offset of the function's signature. + Start int + + // End is the end offset of the function. + End int + + // statements registered with this function. + Statements []*Statement +} + +type Statement struct { + // Start is the start offset of the statement. + Start int + + // End is the end offset of the statement. + End int + + // Reached is the number of times the statement was reached. + Reached int64 +} + +// Accumulate will accumulate the coverage information from the provided +// Package into this Package. +func (p *Package) Accumulate(p2 *Package) error { + if p.Name != p2.Name { + return fmt.Errorf("Names do not match: %q != %q", p.Name, p2.Name) + } + if len(p.Functions) != len(p2.Functions) { + return fmt.Errorf("Function counts do not match: %d != %d", len(p.Functions), len(p2.Functions)) + } + for i, f := range p.Functions { + err := f.Accumulate(p2.Functions[i]) + if err != nil { + return err + } + } + return nil +} + +// Accumulate will accumulate the coverage information from the provided +// Function into this Function. +func (f *Function) Accumulate(f2 *Function) error { + if f.Name != f2.Name { + return fmt.Errorf("Names do not match: %q != %q", f.Name, f2.Name) + } + if f.File != f2.File { + return fmt.Errorf("Files do not match: %q != %q", f.File, f2.File) + } + if f.Start != f2.Start || f.End != f2.End { + return fmt.Errorf("Source ranges do not match: %d-%d != %d-%d", f.Start, f.End, f2.Start, f2.End) + } + if len(f.Statements) != len(f2.Statements) { + return fmt.Errorf("Number of statements do not match: %d != %d", len(f.Statements), len(f2.Statements)) + } + for i, s := range f.Statements { + err := s.Accumulate(f2.Statements[i]) + if err != nil { + return err + } + } + return nil +} + +// Accumulate will accumulate the coverage information from the provided +// Statement into this Statement. +func (s *Statement) Accumulate(s2 *Statement) error { + if s.Start != s2.Start || s.End != s2.End { + return fmt.Errorf("Source ranges do not match: %d-%d != %d-%d", s.Start, s.End, s2.Start, s2.End) + } + s.Reached += s2.Reached + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/annotate.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/annotate.go new file mode 100644 index 00000000..a0c612e2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/annotate.go @@ -0,0 +1,238 @@ +// Copyright (c) 2012 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +package main + +import ( + "flag" + "fmt" + "go/token" + "io/ioutil" + "math" + "os" + "regexp" + "sort" + "strings" + + "github.com/axw/gocov" +) + +const ( + hitPrefix = " " + missPrefix = "MISS" + RED = "\x1b[31;1m" + GREEN = "\x1b[32;1m" + NONE = "\x1b[0m" +) + +var ( + annotateFlags = flag.NewFlagSet("annotate", flag.ExitOnError) + annotateCeilingFlag = annotateFlags.Float64( + "ceiling", 101, + "Annotate only functions whose coverage is less than the specified percentage") + annotateColorFlag = annotateFlags.Bool( + "color", false, + "Differentiate coverage with color") +) + +type packageList []*gocov.Package +type functionList []*gocov.Function + +func (l packageList) Len() int { + return len(l) +} + +func (l packageList) Less(i, j int) bool { + return l[i].Name < l[j].Name +} + +func (l packageList) Swap(i, j int) { + l[i], l[j] = l[j], l[i] +} + +func (l functionList) Len() int { + return len(l) +} + +func (l functionList) Less(i, j int) bool { + return l[i].Name < l[j].Name +} + +func (l functionList) Swap(i, j int) { + l[i], l[j] = l[j], l[i] +} + +type annotator struct { + fset *token.FileSet + files map[string]*token.File +} + +func percentReached(fn *gocov.Function) float64 { + if len(fn.Statements) == 0 { + return 0 + } + var reached int + for _, stmt := range fn.Statements { + if stmt.Reached > 0 { + reached++ + } + } + return float64(reached) / float64(len(fn.Statements)) * 100 +} + +func annotateSource() (rc int) { + annotateFlags.Parse(os.Args[2:]) + if annotateFlags.NArg() == 0 { + fmt.Fprintf(os.Stderr, "missing coverage file\n") + return 1 + } + + var data []byte + var err error + if filename := annotateFlags.Arg(0); filename == "-" { + data, err = ioutil.ReadAll(os.Stdin) + } else { + data, err = ioutil.ReadFile(filename) + } + if err != nil { + fmt.Fprintf(os.Stderr, "failed to read coverage file: %s\n", err) + return 1 + } + + packages, err := unmarshalJson(data) + if err != nil { + fmt.Fprintf( + os.Stderr, "failed to unmarshal coverage data: %s\n", err) + return 1 + } + + // Sort packages, functions by name. + sort.Sort(packageList(packages)) + for _, pkg := range packages { + sort.Sort(functionList(pkg.Functions)) + } + + a := &annotator{} + a.fset = token.NewFileSet() + a.files = make(map[string]*token.File) + + var regexps []*regexp.Regexp + for _, arg := range annotateFlags.Args()[1:] { + re, err := regexp.Compile(arg) + if err != nil { + fmt.Fprintf(os.Stderr, "warning: failed to compile %q as a regular expression, ignoring\n", arg) + } else { + regexps = append(regexps, re) + } + } + if len(regexps) == 0 { + regexps = append(regexps, regexp.MustCompile(".")) + } + for _, pkg := range packages { + for _, fn := range pkg.Functions { + if percentReached(fn) >= *annotateCeilingFlag { + continue + } + name := pkg.Name + "/" + fn.Name + for _, regexp := range regexps { + if regexp.FindStringIndex(name) != nil { + err := a.printFunctionSource(fn) + if err != nil { + fmt.Fprintf(os.Stderr, "warning: failed to annotate function %q\n", name) + } + break + } + } + } + } + return +} + +func (a *annotator) printFunctionSource(fn *gocov.Function) error { + // Load the file for line information. Probably overkill, maybe + // just compute the lines from offsets in here. + setContent := false + file := a.files[fn.File] + if file == nil { + info, err := os.Stat(fn.File) + if err != nil { + return err + } + file = a.fset.AddFile(fn.File, a.fset.Base(), int(info.Size())) + setContent = true + } + + data, err := ioutil.ReadFile(fn.File) + if err != nil { + return err + } + if setContent { + // This processes the content and records line number info. + file.SetLinesForContent(data) + } + + statements := fn.Statements[:] + lineno := file.Line(file.Pos(fn.Start)) + lines := strings.Split(string(data)[fn.Start:fn.End], "\n") + linenoWidth := int(math.Log10(float64(lineno+len(lines)))) + 1 + fmt.Println() + for i, line := range lines { + // Go through statements one at a time, seeing if we've hit + // them or not. + // + // The prefix approach isn't perfect, as it doesn't + // distinguish multiple statements per line. It'll have to + // do for now. We could do fancy ANSI colouring later. + lineno := lineno + i + statementFound := false + hit := false + for j := 0; j < len(statements); j++ { + start := file.Line(file.Pos(statements[j].Start)) + // FIXME instrumentation no longer records statements + // in line order, as function literals are processed + // after the body of a function. If/when that's changed, + // we can go back to checking just the first statement + // in each loop. + if start == lineno { + statementFound = true + if !hit && statements[j].Reached > 0 { + hit = true + } + statements = append(statements[:j], statements[j+1:]...) + } + } + if *annotateColorFlag { + color := NONE + if statementFound && !hit { + color = RED + } + fmt.Printf("%s%*d \t%s%s\n", color, linenoWidth, lineno, line, NONE) + } else { + hitmiss := hitPrefix + if statementFound && !hit { + hitmiss = missPrefix + } + fmt.Printf("%*d %s\t%s\n", linenoWidth, lineno, hitmiss, line) + } + } + fmt.Println() + + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/convert.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/convert.go new file mode 100644 index 00000000..0132e75b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/convert.go @@ -0,0 +1,316 @@ +// Copyright (c) 2013 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +package main + +import ( + "fmt" + "go/ast" + "go/build" + "go/parser" + "go/token" + "path/filepath" + + "code.google.com/p/go.tools/cover" + + "github.com/axw/gocov" + "github.com/axw/gocov/gocovutil" +) + +func convertProfiles(filenames ...string) error { + var ps gocovutil.Packages + for i := range filenames { + converter := converter{ + packages: make(map[string]*gocov.Package), + } + profiles, err := cover.ParseProfiles(filenames[i]) + if err != nil { + return err + } + for _, p := range profiles { + if err := converter.convertProfile(p); err != nil { + return err + } + } + + for _, pkg := range converter.packages { + ps.AddPackage(pkg) + } + } + bytes, err := marshalJson(ps) + if err != nil { + return err + } + fmt.Println(string(bytes)) + return nil +} + +type converter struct { + packages map[string]*gocov.Package +} + +// wrapper for gocov.Statement +type statement struct { + *gocov.Statement + *StmtExtent +} + +func (c *converter) convertProfile(p *cover.Profile) error { + file, pkgpath, err := findFile(p.FileName) + if err != nil { + return err + } + pkg := c.packages[pkgpath] + if pkg == nil { + pkg = &gocov.Package{Name: pkgpath} + c.packages[pkgpath] = pkg + } + // Find function and statement extents; create corresponding + // gocov.Functions and gocov.Statements, and keep a separate + // slice of gocov.Statements so we can match them with profile + // blocks. + extents, err := findFuncs(file) + if err != nil { + return err + } + var stmts []statement + for _, fe := range extents { + f := &gocov.Function{ + Name: fe.name, + File: file, + Start: fe.startOffset, + End: fe.endOffset, + } + for _, se := range fe.stmts { + s := statement{ + Statement: &gocov.Statement{Start: se.startOffset, End: se.endOffset}, + StmtExtent: se, + } + f.Statements = append(f.Statements, s.Statement) + stmts = append(stmts, s) + } + pkg.Functions = append(pkg.Functions, f) + } + // For each profile block in the file, find the statement(s) it + // covers and increment the Reached field(s). + blocks := p.Blocks + for len(stmts) > 0 { + s := stmts[0] + for i, b := range blocks { + if b.StartLine > s.endLine || (b.StartLine == s.endLine && b.StartCol >= s.endCol) { + // Past the end of the statement + stmts = stmts[1:] + blocks = blocks[i:] + break + } + if b.EndLine < s.startLine || (b.EndLine == s.startLine && b.EndCol <= s.startCol) { + // Before the beginning of the statement + continue + } + s.Reached += int64(b.Count) + stmts = stmts[1:] + break + } + } + return nil +} + +// findFile finds the location of the named file in GOROOT, GOPATH etc. +func findFile(file string) (filename string, pkgpath string, err error) { + dir, file := filepath.Split(file) + if dir != "" { + dir = dir[:len(dir)-1] // drop trailing '/' + } + pkg, err := build.Import(dir, ".", build.FindOnly) + if err != nil { + return "", "", fmt.Errorf("can't find %q: %v", file, err) + } + return filepath.Join(pkg.Dir, file), pkg.ImportPath, nil +} + +// findFuncs parses the file and returns a slice of FuncExtent descriptors. +func findFuncs(name string) ([]*FuncExtent, error) { + fset := token.NewFileSet() + parsedFile, err := parser.ParseFile(fset, name, nil, 0) + if err != nil { + return nil, err + } + visitor := &FuncVisitor{fset: fset} + ast.Walk(visitor, parsedFile) + return visitor.funcs, nil +} + +type extent struct { + startOffset int + startLine int + startCol int + endOffset int + endLine int + endCol int +} + +// FuncExtent describes a function's extent in the source by file and position. +type FuncExtent struct { + extent + name string + stmts []*StmtExtent +} + +// StmtExtent describes a statements's extent in the source by file and position. +type StmtExtent extent + +// FuncVisitor implements the visitor that builds the function position list for a file. +type FuncVisitor struct { + fset *token.FileSet + funcs []*FuncExtent +} + +// Visit implements the ast.Visitor interface. +func (v *FuncVisitor) Visit(node ast.Node) ast.Visitor { + var body *ast.BlockStmt + var name string + switch n := node.(type) { + case *ast.FuncLit: + body = n.Body + case *ast.FuncDecl: + body = n.Body + name = n.Name.Name + // Function name is prepended with "T." if there is a receiver, where + // T is the type of the receiver, dereferenced if it is a pointer. + if n.Recv != nil { + field := n.Recv.List[0] + switch recv := field.Type.(type) { + case *ast.StarExpr: + name = recv.X.(*ast.Ident).Name + "." + name + case *ast.Ident: + name = recv.Name + "." + name + } + } + } + if body != nil { + start := v.fset.Position(node.Pos()) + end := v.fset.Position(node.End()) + if name == "" { + name = fmt.Sprintf("@%d:%d", start.Line, start.Column) + } + fe := &FuncExtent{ + name: name, + extent: extent{ + startOffset: start.Offset, + startLine: start.Line, + startCol: start.Column, + endOffset: end.Offset, + endLine: end.Line, + endCol: end.Column, + }, + } + v.funcs = append(v.funcs, fe) + sv := StmtVisitor{fset: v.fset, function: fe} + sv.VisitStmt(body) + } + return v +} + +type StmtVisitor struct { + fset *token.FileSet + function *FuncExtent +} + +func (v *StmtVisitor) VisitStmt(s ast.Stmt) { + var statements *[]ast.Stmt + switch s := s.(type) { + case *ast.BlockStmt: + statements = &s.List + case *ast.CaseClause: + statements = &s.Body + case *ast.CommClause: + statements = &s.Body + case *ast.ForStmt: + if s.Init != nil { + v.VisitStmt(s.Init) + } + if s.Post != nil { + v.VisitStmt(s.Post) + } + v.VisitStmt(s.Body) + case *ast.IfStmt: + if s.Init != nil { + v.VisitStmt(s.Init) + } + v.VisitStmt(s.Body) + if s.Else != nil { + // Code copied from go.tools/cmd/cover, to deal with "if x {} else if y {}" + const backupToElse = token.Pos(len("else ")) // The AST doesn't remember the else location. We can make an accurate guess. + switch stmt := s.Else.(type) { + case *ast.IfStmt: + block := &ast.BlockStmt{ + Lbrace: stmt.If - backupToElse, // So the covered part looks like it starts at the "else". + List: []ast.Stmt{stmt}, + Rbrace: stmt.End(), + } + s.Else = block + case *ast.BlockStmt: + stmt.Lbrace -= backupToElse // So the block looks like it starts at the "else". + default: + panic("unexpected node type in if") + } + v.VisitStmt(s.Else) + } + case *ast.LabeledStmt: + v.VisitStmt(s.Stmt) + case *ast.RangeStmt: + v.VisitStmt(s.Body) + case *ast.SelectStmt: + v.VisitStmt(s.Body) + case *ast.SwitchStmt: + if s.Init != nil { + v.VisitStmt(s.Init) + } + v.VisitStmt(s.Body) + case *ast.TypeSwitchStmt: + if s.Init != nil { + v.VisitStmt(s.Init) + } + v.VisitStmt(s.Assign) + v.VisitStmt(s.Body) + } + if statements == nil { + return + } + for i := 0; i < len(*statements); i++ { + s := (*statements)[i] + switch s.(type) { + case *ast.CaseClause, *ast.CommClause, *ast.BlockStmt: + break + default: + start, end := v.fset.Position(s.Pos()), v.fset.Position(s.End()) + se := &StmtExtent{ + startOffset: start.Offset, + startLine: start.Line, + startCol: start.Column, + endOffset: end.Offset, + endLine: end.Line, + endCol: end.Column, + } + v.function.stmts = append(v.function.stmts, se) + } + v.VisitStmt(s) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/main.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/main.go new file mode 100644 index 00000000..3c0685e6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/main.go @@ -0,0 +1,90 @@ +// Copyright (c) 2012 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +package main + +import ( + "encoding/json" + "flag" + "fmt" + "os" + + "github.com/axw/gocov" +) + +func usage() { + fmt.Fprintf(os.Stderr, "Usage:\n\n\tgocov command [arguments]\n\n") + fmt.Fprintf(os.Stderr, "The commands are:\n\n") + fmt.Fprintf(os.Stderr, "\tannotate\n") + fmt.Fprintf(os.Stderr, "\tconvert\n") + fmt.Fprintf(os.Stderr, "\treport\n") + fmt.Fprintf(os.Stderr, "\ttest\n") + fmt.Fprintf(os.Stderr, "\n") + flag.PrintDefaults() + os.Exit(2) +} + +func marshalJson(packages []*gocov.Package) ([]byte, error) { + return json.Marshal(struct{ Packages []*gocov.Package }{packages}) +} + +func unmarshalJson(data []byte) (packages []*gocov.Package, err error) { + result := &struct{ Packages []*gocov.Package }{} + err = json.Unmarshal(data, result) + if err == nil { + packages = result.Packages + } + return +} + +func main() { + flag.Usage = usage + flag.Parse() + + command := "" + if flag.NArg() > 0 { + command = flag.Arg(0) + switch command { + case "convert": + if flag.NArg() <= 1 { + fmt.Fprintln(os.Stderr, "missing cover profile") + os.Exit(1) + } + if err := convertProfiles(flag.Args()[1:]...); err != nil { + fmt.Fprintln(os.Stderr, "error: %v", err) + os.Exit(1) + } + case "annotate": + os.Exit(annotateSource()) + case "report": + os.Exit(reportCoverage()) + case "test": + if err := runTests(flag.Args()[1:]); err != nil { + fmt.Fprintln(os.Stderr, "error: %v", err) + os.Exit(1) + } + default: + fmt.Fprintf(os.Stderr, "Unknown command: %#q\n\n", command) + usage() + } + } else { + usage() + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/report.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/report.go new file mode 100644 index 00000000..6f633d49 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/report.go @@ -0,0 +1,193 @@ +// Copyright (c) 2012 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +package main + +import ( + "flag" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "sort" + "strings" + "text/tabwriter" + + "github.com/axw/gocov" +) + +type report struct { + packages []*gocov.Package +} + +type reportFunction struct { + *gocov.Function + statementsReached int +} + +type reportFunctionList []reportFunction + +func (l reportFunctionList) Len() int { + return len(l) +} + +// TODO make sort method configurable? +func (l reportFunctionList) Less(i, j int) bool { + var left, right float64 + if len(l[i].Statements) > 0 { + left = float64(l[i].statementsReached) / float64(len(l[i].Statements)) + } + if len(l[j].Statements) > 0 { + right = float64(l[j].statementsReached) / float64(len(l[j].Statements)) + } + if left < right { + return true + } + return left == right && len(l[i].Statements) < len(l[j].Statements) +} + +func (l reportFunctionList) Swap(i, j int) { + l[i], l[j] = l[j], l[i] +} + +type reverse struct { + sort.Interface +} + +func (r reverse) Less(i, j int) bool { + return r.Interface.Less(j, i) +} + +// NewReport creates a new report. +func newReport() (r *report) { + r = &report{} + return +} + +// AddPackage adds a package's coverage information to the report. +func (r *report) addPackage(p *gocov.Package) { + i := sort.Search(len(r.packages), func(i int) bool { + return r.packages[i].Name >= p.Name + }) + if i < len(r.packages) && r.packages[i].Name == p.Name { + r.packages[i].Accumulate(p) + } else { + head := r.packages[:i] + tail := append([]*gocov.Package{p}, r.packages[i:]...) + r.packages = append(head, tail...) + } +} + +// Clear clears the coverage information from the report. +func (r *report) clear() { + r.packages = nil +} + +// PrintReport prints a coverage report to the given writer. +func printReport(w io.Writer, r *report) { + w = tabwriter.NewWriter(w, 0, 8, 0, '\t', 0) + //fmt.Fprintln(w, "Package\tFunction\tStatements\t") + //fmt.Fprintln(w, "-------\t--------\t---------\t") + for _, pkg := range r.packages { + printPackage(w, pkg) + fmt.Fprintln(w) + } +} + +func printPackage(w io.Writer, pkg *gocov.Package) { + functions := make(reportFunctionList, len(pkg.Functions)) + for i, fn := range pkg.Functions { + reached := 0 + for _, stmt := range fn.Statements { + if stmt.Reached > 0 { + reached++ + } + } + functions[i] = reportFunction{fn, reached} + } + sort.Sort(reverse{functions}) + + var longestFunctionName int + var totalStatements, totalReached int + for _, fn := range functions { + reached := fn.statementsReached + totalStatements += len(fn.Statements) + totalReached += reached + var stmtPercent float64 = 0 + if len(fn.Statements) > 0 { + stmtPercent = float64(reached) / float64(len(fn.Statements)) * 100 + } + if len(fn.Name) > longestFunctionName { + longestFunctionName = len(fn.Name) + } + fmt.Fprintf(w, "%s/%s\t %s\t %.2f%% (%d/%d)\n", + pkg.Name, filepath.Base(fn.File), fn.Name, stmtPercent, + reached, len(fn.Statements)) + } + + var funcPercent float64 + if totalStatements > 0 { + funcPercent = float64(totalReached) / float64(totalStatements) * 100 + } + summaryLine := strings.Repeat("-", longestFunctionName) + fmt.Fprintf(w, "%s\t %s\t %.2f%% (%d/%d)\n", + pkg.Name, summaryLine, funcPercent, + totalReached, totalStatements) +} + +func reportCoverage() (rc int) { + files := make([]*os.File, 0, 1) + if flag.NArg() > 1 { + for _, name := range flag.Args()[1:] { + file, err := os.Open(name) + if err != nil { + fmt.Fprintf(os.Stderr, "failed to open file (%s): %s\n", name, err) + } else { + files = append(files, file) + } + } + } else { + files = append(files, os.Stdin) + } + report := newReport() + for _, file := range files { + data, err := ioutil.ReadAll(file) + if err != nil { + fmt.Fprintf(os.Stderr, "failed to read coverage file: %s\n", err) + return 1 + } + packages, err := unmarshalJson(data) + if err != nil { + fmt.Fprintf( + os.Stderr, "failed to unmarshal coverage data: %s\n", err) + return 1 + } + for _, pkg := range packages { + report.addPackage(pkg) + } + if file != os.Stdin { + file.Close() + } + } + fmt.Println() + printReport(os.Stdout, report) + return 0 +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/test.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/test.go new file mode 100644 index 00000000..d7230786 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov/test.go @@ -0,0 +1,47 @@ +// Copyright (c) 2013 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +package main + +import ( + "io/ioutil" + "os" + "os/exec" +) + +func runTests(args []string) error { + coverprofile, err := ioutil.TempFile("", "gocov") + if err != nil { + return err + } + coverprofile.Close() + defer os.Remove(coverprofile.Name()) + args = append([]string{ + "test", "-coverprofile", coverprofile.Name(), + }, args...) + cmd := exec.Command("go", args...) + cmd.Stdin = os.Stdin + cmd.Stdout = os.Stderr + cmd.Stderr = os.Stderr + if err := cmd.Run(); err != nil { + return err + } + return convertProfiles(coverprofile.Name()) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov_test.go new file mode 100644 index 00000000..021bfc63 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocov_test.go @@ -0,0 +1,138 @@ +// Copyright (c) 2012 The Gocov Authors. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +// IN THE SOFTWARE. + +package gocov + +import "testing" + +func registerPackage(name string) *Package { + return &Package{Name: name} +} + +func registerFunction(p *Package, name, file string, startOffset, endOffset int) *Function { + f := &Function{Name: name, File: file, Start: startOffset, End: endOffset} + p.Functions = append(p.Functions, f) + return f +} + +func registerStatement(f *Function, startOffset, endOffset int) *Statement { + s := &Statement{Start: startOffset, End: endOffset} + f.Statements = append(f.Statements, s) + return s +} + +func TestAccumulatePackage(t *testing.T) { + p1_1 := registerPackage("p1") + p1_2 := registerPackage("p1") + p2 := registerPackage("p2") + p3 := registerPackage("p1") + registerFunction(p3, "f", "file.go", 0, 1) + p4 := registerPackage("p1") + registerFunction(p4, "f", "file.go", 1, 2) + + var tests = [...]struct { + a, b *Package + expectPass bool + }{ + // Should work: everything is the same. + {p1_1, p1_2, true}, + // Should fail: name is different. + {p1_1, p2, false}, + // Should fail: numbers of functions are different. + {p1_1, p3, false}, + // Should fail: functions are different. + {p3, p4, false}, + } + + for _, test := range tests { + err := test.a.Accumulate(test.b) + if test.expectPass { + if err != nil { + t.Error(err) + } + } else { + if err == nil { + t.Error("Expected an error") + } + } + } +} + +func TestAccumulateFunction(t *testing.T) { + p := registerPackage("p1") + f1_1 := registerFunction(p, "f1", "file.go", 0, 1) + f1_2 := registerFunction(p, "f1", "file.go", 0, 1) + f2 := registerFunction(p, "f2", "file.go", 0, 1) + f3 := registerFunction(p, "f1", "file2.go", 0, 1) + f4 := registerFunction(p, "f1", "file.go", 2, 3) + f5 := registerFunction(p, "f1", "file.go", 0, 1) + registerStatement(f5, 0, 1) + f6 := registerFunction(p, "f1", "file.go", 0, 1) + registerStatement(f6, 2, 3) + + var tests = [...]struct { + a, b *Function + expectPass bool + }{ + // Should work: everything is the same. + {f1_1, f1_2, true}, + // Should fail: names are different. + {f1_1, f2, false}, + // Should fail: files are different. + {f1_1, f3, false}, + // Should fail: ranges are different. + {f1_1, f4, false}, + // Should fail: numbers of statements are different. + {f1_1, f5, false}, + // Should fail: all the same, except statement values. + {f5, f6, false}, + } + + for _, test := range tests { + err := test.a.Accumulate(test.b) + if test.expectPass { + if err != nil { + t.Error(err) + } + } else { + if err == nil { + t.Error("Expected an error") + } + } + } +} + +func TestAccumulateStatement(t *testing.T) { + p := registerPackage("p1") + f := registerFunction(p, "f1", "file.go", 0, 1) + s1_1 := registerStatement(f, 0, 1) + s1_2 := registerStatement(f, 0, 1) + s2 := registerStatement(f, 2, 3) + + // Should work: ranges are the same. + if err := s1_1.Accumulate(s1_2); err != nil { + t.Error(err) + } + + // Should fail: ranges are not the same. + if err := s1_1.Accumulate(s2); err == nil { + t.Errorf("Expected an error") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocovutil/packages.go b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocovutil/packages.go new file mode 100644 index 00000000..9b407c67 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/axw/gocov/gocovutil/packages.go @@ -0,0 +1,82 @@ +package gocovutil + +import ( + "encoding/json" + "github.com/axw/gocov" + "io/ioutil" + "os" + "sort" +) + +// Packages represents a set of gocov.Package structures. +// The "AddPackage" method may be used to merge package +// coverage results into the set. +type Packages []*gocov.Package + +// AddPackage adds a package's coverage information to the +func (ps *Packages) AddPackage(p *gocov.Package) { + i := sort.Search(len(*ps), func(i int) bool { + return (*ps)[i].Name >= p.Name + }) + if i < len(*ps) && (*ps)[i].Name == p.Name { + (*ps)[i].Accumulate(p) + } else { + head := (*ps)[:i] + tail := append([]*gocov.Package{p}, (*ps)[i:]...) + *ps = append(head, tail...) + } +} + +// ReadPackages takes a list of filenames and parses their +// contents as a Packages object. +// +// The special filename "-" may be used to indicate standard input. +// Duplicate filenames are ignored. +func ReadPackages(filenames []string) (ps Packages, err error) { + copy_ := make([]string, len(filenames)) + copy(copy_, filenames) + filenames = copy_ + sort.Strings(filenames) + + // Eliminate duplicates. + unique := []string{filenames[0]} + if len(filenames) > 1 { + for _, f := range filenames[1:] { + if f != unique[len(unique)-1] { + unique = append(unique, f) + } + } + } + + // Open files. + var files []*os.File + for _, f := range filenames { + if f == "-" { + files = append(files, os.Stdin) + } else { + file, err := os.Open(f) + if err != nil { + return nil, err + } + defer file.Close() + files = append(files, os.Stdin) + } + } + + // Parse the files, accumulate Packages. + for _, file := range files { + data, err := ioutil.ReadAll(file) + if err != nil { + return nil, err + } + result := &struct{ Packages []*gocov.Package }{} + err = json.Unmarshal(data, result) + if err != nil { + return nil, err + } + for _, p := range result.Packages { + ps.AddPackage(p) + } + } + return ps, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/LICENSE new file mode 100644 index 00000000..13ef3fe5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/LICENSE @@ -0,0 +1,12 @@ +Copyright (c) 2012, Sergey Cherepanov +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/README.md new file mode 100644 index 00000000..5e475e80 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/README.md @@ -0,0 +1,92 @@ +## Terminal progress bar for Go + +Simple progress bar for console programms. + + +### Installation +``` +go get github.com/cheggaaa/pb +``` + +### Usage +```Go +package main + +import ( + "github.com/cheggaaa/pb" + "time" +) + +func main() { + count := 100000 + bar := pb.StartNew(count) + for i := 0; i < count; i++ { + bar.Increment() + time.Sleep(time.Millisecond) + } + bar.FinishPrint("The End!") +} +``` +Result will be like this: +``` +> go run test.go +37158 / 100000 [================>_______________________________] 37.16% 1m11s +``` + + +More functions? +```Go +// create bar +bar := pb.New(count) + +// refresh info every second (default 200ms) +bar.SetRefreshRate(time.Second) + +// show percents (by default already true) +bar.ShowPercent = true + +// show bar (by default already true) +bar.ShowBar = true + +// no need counters +bar.ShowCounters = false + +// show "time left" +bar.ShowTimeLeft = true + +// show average speed +bar.ShowSpeed = true + +// convert output to readable format (like KB, MB) +bar.SetUnits(pb.U_BYTES) + +// and start +bar.Start() +``` + +Want handle progress of io operations? +```Go +// create and start bar +bar := pb.New(myDataLen).SetUnits(pb.U_BYTES) +bar.Start() + +// my io.Reader +r := myReader + +// my io.Writer +w := myWriter + +// create multi writer +writer := io.MultiWriter(w, bar) + +// and copy +io.Copy(writer, r) + +// show example/copy/copy.go for advanced example + +``` + +Not like the looks? +```Go +bar.Format("<.- >") +``` diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/example/copy/copy.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/example/copy/copy.go new file mode 100644 index 00000000..2dd7a132 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/example/copy/copy.go @@ -0,0 +1,83 @@ +package main + +import ( + "github.com/cheggaaa/pb" + "os" + "fmt" + "io" + "time" + "strings" + "net/http" + "strconv" +) + +func main() { + // check args + if len(os.Args) < 3 { + printUsage() + return + } + sourceName, destName := os.Args[1], os.Args[2] + + // check source + var source io.Reader + var sourceSize int64 + if strings.HasPrefix(sourceName, "http://") { + // open as url + resp, err := http.Get(sourceName) + if err != nil { + fmt.Printf("Can't get %s: %v\n", sourceName, err) + return + } + defer resp.Body.Close() + if resp.StatusCode != http.StatusOK { + fmt.Printf("Server return non-200 status: %v\n", resp.Status) + return + } + i, _ := strconv.Atoi(resp.Header.Get("Content-Length")) + sourceSize = int64(i) + source = resp.Body + } else { + // open as file + s, err := os.Open(sourceName) + if err != nil { + fmt.Printf("Can't open %s: %v\n", sourceName, err) + return + } + defer s.Close() + // get source size + sourceStat, err := s.Stat() + if err != nil { + fmt.Printf("Can't stat %s: %v\n", sourceName, err) + return + } + sourceSize = sourceStat.Size() + source = s + } + + + + // create dest + dest, err := os.Create(destName) + if err != nil { + fmt.Printf("Can't create %s: %v\n", destName, err) + return + } + defer dest.Close() + + // create bar + bar := pb.New(int(sourceSize)).SetUnits(pb.U_BYTES).SetRefreshRate(time.Millisecond * 10) + bar.ShowSpeed = true + bar.Start() + + // create multi writer + writer := io.MultiWriter(dest, bar) + + // and copy + io.Copy(writer, source) + bar.Finish() +} + +func printUsage() { + fmt.Println("copy [source file or url] [dest file]") +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/example/pb.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/example/pb.go new file mode 100644 index 00000000..140ba039 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/example/pb.go @@ -0,0 +1,30 @@ +package main + +import ( + "github.com/cheggaaa/pb" + "time" +) + +func main() { + count := 5000 + bar := pb.New(count) + + // show percents (by default already true) + bar.ShowPercent = true + + // show bar (by default already true) + bar.ShowPercent = true + + // no need counters + bar.ShowCounters = true + + bar.ShowTimeLeft = true + + // and start + bar.Start() + for i := 0; i < count; i++ { + bar.Increment() + time.Sleep(time.Millisecond) + } + bar.FinishPrint("The End!") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/format.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/format.go new file mode 100644 index 00000000..e024e36d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/format.go @@ -0,0 +1,42 @@ +package pb + +import ( + "fmt" + "strconv" + "strings" +) + +const ( + // By default, without type handle + U_NO = 0 + // Handle as b, Kb, Mb, etc + U_BYTES = 1 +) + +// Format integer +func Format(i int64, units int) string { + switch units { + case U_BYTES: + return FormatBytes(i) + } + // by default just convert to string + return strconv.Itoa(int(i)) +} + +// Convert bytes to human readable string. Like a 2 MB, 64.2 KB, 52 B +func FormatBytes(i int64) (result string) { + switch { + case i > (1024 * 1024 * 1024 * 1024): + result = fmt.Sprintf("%#.02f TB", float64(i)/1024/1024/1024/1024) + case i > (1024 * 1024 * 1024): + result = fmt.Sprintf("%#.02f GB", float64(i)/1024/1024/1024) + case i > (1024 * 1024): + result = fmt.Sprintf("%#.02f MB", float64(i)/1024/1024) + case i > 1024: + result = fmt.Sprintf("%#.02f KB", float64(i)/1024) + default: + result = fmt.Sprintf("%d B", i) + } + result = strings.Trim(result, " ") + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/format_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/format_test.go new file mode 100644 index 00000000..b76275e2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/format_test.go @@ -0,0 +1,37 @@ +package pb + +import ( + "fmt" + "strconv" + "testing" +) + +func Test_DefaultsToInteger(t *testing.T) { + value := int64(1000) + expected := strconv.Itoa(int(value)) + actual := Format(value, -1) + + if actual != expected { + t.Error(fmt.Sprintf("Expected {%s} was {%s}", expected, actual)) + } +} + +func Test_CanFormatAsInteger(t *testing.T) { + value := int64(1000) + expected := strconv.Itoa(int(value)) + actual := Format(value, U_NO) + + if actual != expected { + t.Error(fmt.Sprintf("Expected {%s} was {%s}", expected, actual)) + } +} + +func Test_CanFormatAsBytes(t *testing.T) { + value := int64(1000) + expected := "1000 B" + actual := Format(value, U_BYTES) + + if actual != expected { + t.Error(fmt.Sprintf("Expected {%s} was {%s}", expected, actual)) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb.go new file mode 100644 index 00000000..95ae95bb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb.go @@ -0,0 +1,272 @@ +package pb + +import ( + "fmt" + "io" + "math" + "strings" + "sync/atomic" + "time" +) + +const ( + // Default refresh rate - 200ms + DEFAULT_REFRESH_RATE = time.Millisecond * 200 + FORMAT = "[=>-]" +) + +// DEPRECATED +// variables for backward compatibility, from now do not work +// use pb.Format and pb.SetRefreshRate +var ( + DefaultRefreshRate = DEFAULT_REFRESH_RATE + BarStart, BarEnd, Empty, Current, CurrentN string +) + +// Create new progress bar object +func New(total int) (pb *ProgressBar) { + pb = &ProgressBar{ + Total: int64(total), + RefreshRate: DEFAULT_REFRESH_RATE, + ShowPercent: true, + ShowCounters: true, + ShowBar: true, + ShowTimeLeft: true, + } + pb.Format(FORMAT) + return +} + +// Create new object and start +func StartNew(total int) (pb *ProgressBar) { + pb = New(total) + pb.Start() + return +} + +// Callback for custom output +// For example: +// bar.Callback = func(s string) { +// mySuperPrint(s) +// } +// +type Callback func(out string) + +type ProgressBar struct { + current int64 // current must be first member of struct (https://code.google.com/p/go/issues/detail?id=5278) + + Total int64 + RefreshRate time.Duration + ShowPercent, ShowCounters bool + ShowSpeed, ShowTimeLeft, ShowBar bool + Output io.Writer + Callback Callback + NotPrint bool + Units int + + isFinish bool + startTime time.Time + + BarStart string + BarEnd string + Empty string + Current string + CurrentN string +} + +// Start print +func (pb *ProgressBar) Start() { + pb.startTime = time.Now() + if pb.Total == 0 { + pb.ShowBar = false + pb.ShowTimeLeft = false + pb.ShowPercent = false + } + go pb.writer() +} + +// Increment current value +func (pb *ProgressBar) Increment() int { + return pb.Add(1) +} + +// Set current value +func (pb *ProgressBar) Set(current int) { + atomic.StoreInt64(&pb.current, int64(current)) +} + +// Add to current value +func (pb *ProgressBar) Add(add int) int { + return int(atomic.AddInt64(&pb.current, int64(add))) +} + +// Set custom format for bar +// Example: bar.Format("[=>_]") +func (pb *ProgressBar) Format(format string) (bar *ProgressBar) { + bar = pb + formatEntries := strings.Split(format, "") + if len(formatEntries) != 5 { + return + } + pb.BarStart = formatEntries[0] + pb.BarEnd = formatEntries[4] + pb.Empty = formatEntries[3] + pb.Current = formatEntries[1] + pb.CurrentN = formatEntries[2] + return +} + +// Set bar refresh rate +func (pb *ProgressBar) SetRefreshRate(rate time.Duration) (bar *ProgressBar) { + bar = pb + pb.RefreshRate = rate + return +} + +// Set units +// bar.SetUnits(U_NO) - by default +// bar.SetUnits(U_BYTES) - for Mb, Kb, etc +func (pb *ProgressBar) SetUnits(units int) (bar *ProgressBar) { + bar = pb + switch units { + case U_NO, U_BYTES: + pb.Units = units + } + return +} + +// End print +func (pb *ProgressBar) Finish() { + pb.isFinish = true + pb.write(atomic.LoadInt64(&pb.current)) + if !pb.NotPrint { + fmt.Println() + } +} + +// End print and write string 'str' +func (pb *ProgressBar) FinishPrint(str string) { + pb.Finish() + fmt.Println(str) +} + +// implement io.Writer +func (pb *ProgressBar) Write(p []byte) (n int, err error) { + n = len(p) + pb.Add(n) + return +} + +// implement io.Reader +func (pb *ProgressBar) Read(p []byte) (n int, err error) { + n = len(p) + pb.Add(n) + return +} + +// Create new proxy reader over bar +func (pb *ProgressBar) NewProxyReader(r io.Reader) *Reader { + return &Reader{r, pb} +} + +func (pb *ProgressBar) write(current int64) { + width, _ := terminalWidth() + var percentBox, countersBox, timeLeftBox, speedBox, barBox, end, out string + + // percents + if pb.ShowPercent { + percent := float64(current) / (float64(pb.Total) / float64(100)) + percentBox = fmt.Sprintf(" %#.02f %% ", percent) + } + + // counters + if pb.ShowCounters { + if pb.Total > 0 { + countersBox = fmt.Sprintf("%s / %s ", Format(current, pb.Units), Format(pb.Total, pb.Units)) + } else { + countersBox = Format(current, pb.Units) + " " + } + } + + // time left + if pb.ShowTimeLeft && current > 0 { + fromStart := time.Now().Sub(pb.startTime) + perEntry := fromStart / time.Duration(current) + left := time.Duration(pb.Total-current) * perEntry + left = (left / time.Second) * time.Second + if left > 0 { + timeLeftBox = left.String() + } + } + + // speed + if pb.ShowSpeed && current > 0 { + fromStart := time.Now().Sub(pb.startTime) + speed := float64(current) / (float64(fromStart) / float64(time.Second)) + speedBox = Format(int64(speed), pb.Units) + "/s " + } + + // bar + if pb.ShowBar { + size := width - len(countersBox+pb.BarStart+pb.BarEnd+percentBox+timeLeftBox+speedBox) + if size > 0 { + curCount := int(math.Ceil((float64(current) / float64(pb.Total)) * float64(size))) + emptCount := size - curCount + barBox = pb.BarStart + if emptCount < 0 { + emptCount = 0 + } + if curCount > size { + curCount = size + } + if emptCount <= 0 { + barBox += strings.Repeat(pb.Current, curCount) + } else if curCount > 0 { + barBox += strings.Repeat(pb.Current, curCount-1) + pb.CurrentN + } + + barBox += strings.Repeat(pb.Empty, emptCount) + pb.BarEnd + } + } + + // check len + out = countersBox + barBox + percentBox + speedBox + timeLeftBox + if len(out) < width { + end = strings.Repeat(" ", width-len(out)) + } + + out = countersBox + barBox + percentBox + speedBox + timeLeftBox + + // and print! + switch { + case pb.Output != nil: + fmt.Fprint(pb.Output, out+end) + case pb.Callback != nil: + pb.Callback(out + end) + case !pb.NotPrint: + fmt.Print("\r" + out + end) + } +} + +func (pb *ProgressBar) writer() { + var c, oc int64 + oc = -1 + for { + if pb.isFinish { + break + } + c = atomic.LoadInt64(&pb.current) + if c != oc { + pb.write(c) + oc = c + } + time.Sleep(pb.RefreshRate) + } +} + +type window struct { + Row uint16 + Col uint16 + Xpixel uint16 + Ypixel uint16 +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_nix.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_nix.go new file mode 100644 index 00000000..1f606aaf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_nix.go @@ -0,0 +1,35 @@ +// +build linux darwin freebsd + +package pb + +import ( + "runtime" + "syscall" + "unsafe" +) + +const ( + TIOCGWINSZ = 0x5413 + TIOCGWINSZ_OSX = 1074295912 +) + +func bold(str string) string { + return "\033[1m" + str + "\033[0m" +} + +func terminalWidth() (int, error) { + w := new(window) + tio := syscall.TIOCGWINSZ + if runtime.GOOS == "darwin" { + tio = TIOCGWINSZ_OSX + } + res, _, err := syscall.Syscall(syscall.SYS_IOCTL, + uintptr(syscall.Stdin), + uintptr(tio), + uintptr(unsafe.Pointer(w)), + ) + if int(res) == -1 { + return 0, err + } + return int(w.Col), nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_test.go new file mode 100644 index 00000000..2464ca78 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_test.go @@ -0,0 +1,17 @@ +package pb + +import ( + "fmt" + "testing" +) + +func Test_IncrementAddsOne(t *testing.T) { + count := 5000 + bar := New(count) + expected := 1 + actual := bar.Increment() + + if actual != expected { + t.Error(fmt.Sprintf("Expected {%d} was {%d}", expected, actual)) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_win.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_win.go new file mode 100644 index 00000000..eb36190c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/pb_win.go @@ -0,0 +1,16 @@ +// +build windows + +package pb + +import ( + "github.com/olekukonko/ts" +) + +func bold(str string) string { + return str +} + +func terminalWidth() (int, error) { + size, err := ts.GetSize() + return size.Col(), err +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/reader.go b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/reader.go new file mode 100644 index 00000000..beb3d199 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/cheggaaa/pb/reader.go @@ -0,0 +1,17 @@ +package pb + +import ( + "io" +) + +// It's proxy reader, implement io.Reader +type Reader struct { + io.Reader + bar *ProgressBar +} + +func (r *Reader) Read(p []byte) (n int, err error) { + n, err = r.Reader.Read(p) + r.bar.Add(n) + return +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/LICENSE new file mode 100644 index 00000000..65d761bc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2013 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/README b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/README new file mode 100644 index 00000000..c763bdd2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/README @@ -0,0 +1,59 @@ +Golint is a linter for Go source code. + +To install, run + go get github.com/golang/lint/golint + +Invoke golint with one or more filenames or directories. +The output of this tool is a list of suggestions in Vim quickfix format, +which is accepted by lots of different editors. + +Golint differs from gofmt. Gofmt reformats Go source code, whereas +golint prints out style mistakes. + +Golint differs from govet. Govet is concerned with correctness, whereas +golint is concerned with coding style. Golint is in use at Google, and it +seeks to match the accepted style of the open source Go project. + +The suggestions made by golint are exactly that: suggestions. +Golint is not perfect, and has both false positives and false negatives. +Do not treat its output as a gold standard. We will not be adding pragmas +or other knobs to suppress specific warnings, so do not expect or require +code to be completely "lint-free". +In short, this tool is not, and will never be, trustworthy enough for its +suggestions to be enforced automatically, for example as part of a build process. + +If you find an established style that is frequently violated, and which +you think golint could statically check, file an issue at + https://github.com/golang/lint/issues + + +Contributions +------------- +Contributions to this project are welcome, though please send mail before +starting work on anything major. Contributors retain their copyright, so we +need you to fill out a short form before we can accept your contribution: + https://developers.google.com/open-source/cla/individual + + +Vim +--- +Add this to your ~/.vimrc: + set rtp+=$GOPATH/src/github.com/golang/lint/misc/vim +If you have multiple entries in your GOPATH, replace $GOPATH with the right value. + +Running :Lint will run golint on the current file and populate the quickfix list. + +Optionally, add this to your ~/.vimrc to automatically run golint on :w + autocmd BufWritePost,FileWritePost *.go execute 'Lint' | cwindow + + +Emacs +----- +Add this to your .emacs file: + (add-to-list 'load-path (concat (getenv "GOPATH") "/src/github.com/golang/lint/misc/emacs")) + (require 'golint) +If you have multiple entries in your GOPATH, replace $GOPATH with the right value. + +Running M-x golint will run golint on the current file. +For more usage, see Compilation-Mode: + http://www.gnu.org/software/emacs/manual/html_node/emacs/Compilation-Mode.html diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/golint/golint.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/golint/golint.go new file mode 100644 index 00000000..c5fd1e73 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/golint/golint.go @@ -0,0 +1,67 @@ +// Copyright (c) 2013 The Go Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file or at +// https://developers.google.com/open-source/licenses/bsd. + +// golint lints the Go source files named on its command line. +package main + +import ( + "flag" + "fmt" + "io/ioutil" + "os" + "path/filepath" + "strings" + + "github.com/golang/lint" +) + +var minConfidence = flag.Float64("min_confidence", 0.8, "minimum confidence of a problem to print it") + +func main() { + flag.Parse() + + for _, filename := range flag.Args() { + if isDir(filename) { + lintDir(filename) + } else { + lintFile(filename) + } + } +} + +func isDir(filename string) bool { + fi, err := os.Stat(filename) + return err == nil && fi.IsDir() +} + +func lintFile(filename string) { + src, err := ioutil.ReadFile(filename) + if err != nil { + fmt.Fprintln(os.Stderr, err) + return + } + + l := new(lint.Linter) + ps, err := l.Lint(filename, src) + if err != nil { + fmt.Fprintf(os.Stderr, "%v:%v\n", filename, err) + return + } + for _, p := range ps { + if p.Confidence >= *minConfidence { + fmt.Printf("%s:%v: %s\n", filename, p.Position, p.Text) + } + } +} + +func lintDir(dirname string) { + filepath.Walk(dirname, func(path string, info os.FileInfo, err error) error { + if err == nil && !info.IsDir() && strings.HasSuffix(path, ".go") { + lintFile(path) + } + return err + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/lint.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/lint.go new file mode 100644 index 00000000..54907f88 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/lint.go @@ -0,0 +1,1051 @@ +// Copyright (c) 2013 The Go Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file or at +// https://developers.google.com/open-source/licenses/bsd. + +// Package lint contains a linter for Go source code. +package lint + +import ( + "bytes" + "fmt" + "go/ast" + "go/parser" + "go/printer" + "go/token" + "regexp" + "strconv" + "strings" + "unicode" + "unicode/utf8" +) + +const styleGuideBase = "http://golang.org/s/comments" + +// A Linter lints Go source code. +type Linter struct { +} + +// Problem represents a problem in some source code. +type Problem struct { + Position token.Position // position in source file + Text string // the prose that describes the problem + Link string // (optional) the link to the style guide for the problem + Confidence float64 // a value in (0,1] estimating the confidence in this problem's correctness + LineText string // the source line +} + +func (p *Problem) String() string { + if p.Link != "" { + return p.Text + "\n\n" + p.Link + } + return p.Text +} + +// Lint lints src. +func (l *Linter) Lint(filename string, src []byte) ([]Problem, error) { + fset := token.NewFileSet() + f, err := parser.ParseFile(fset, "", src, parser.ParseComments) + if err != nil { + return nil, err + } + return (&file{fset: fset, f: f, src: src, filename: filename}).lint(), nil +} + +// file represents a file being linted. +type file struct { + fset *token.FileSet + f *ast.File + src []byte + filename string + + // sortable is the set of types in the file that implement sort.Interface. + sortable map[string]bool + // main is whether this file is in a "main" package. + main bool + + problems []Problem +} + +func (f *file) isTest() bool { return strings.HasSuffix(f.filename, "_test.go") } + +func (f *file) lint() []Problem { + f.scanSortable() + f.main = f.isMain() + + f.lintPackageComment() + f.lintImports() + f.lintBlankImports() + f.lintExported() + f.lintNames() + f.lintVarDecls() + f.lintElses() + f.lintRanges() + f.lintErrorf() + f.lintErrors() + f.lintErrorStrings() + f.lintReceiverNames() + f.lintIncDec() + f.lintMake() + + return f.problems +} + +func (f *file) errorf(n ast.Node, confidence float64, link, format string, a ...interface{}) { + p := f.fset.Position(n.Pos()) + f.problems = append(f.problems, Problem{ + Position: p, + Text: fmt.Sprintf(format, a...), + Link: link, + Confidence: confidence, + LineText: srcLine(f.src, p), + }) +} + +func (f *file) scanSortable() { + f.sortable = make(map[string]bool) + + // bitfield for which methods exist on each type. + const ( + Len = 1 << iota + Less + Swap + ) + nmap := map[string]int{"Len": Len, "Less": Less, "Swap": Swap} + has := make(map[string]int) + f.walk(func(n ast.Node) bool { + fn, ok := n.(*ast.FuncDecl) + if !ok || fn.Recv == nil { + return true + } + // TODO(dsymonds): We could check the signature to be more precise. + recv := receiverType(fn) + if i, ok := nmap[fn.Name.Name]; ok { + has[recv] |= i + } + return false + }) + for typ, ms := range has { + if ms == Len|Less|Swap { + f.sortable[typ] = true + } + } +} + +func (f *file) isMain() bool { + if f.f.Name.Name == "main" { + return true + } + return false +} + +// lintPackageComment checks package comments. It complains if +// there is no package comment, or if it is not of the right form. +// This has a notable false positive in that a package comment +// could rightfully appear in a different file of the same package, +// but that's not easy to fix since this linter is file-oriented. +func (f *file) lintPackageComment() { + if f.isTest() { + return + } + + const link = styleGuideBase + "#Package_Comments" + if f.f.Doc == nil { + f.errorf(f.f, 0.2, link, "should have a package comment, unless it's in another file for this package") + return + } + s := f.f.Doc.Text() + prefix := "Package " + f.f.Name.Name + " " + if ts := strings.TrimLeft(s, " \t"); ts != s { + f.errorf(f.f.Doc, 1, link, "package comment should not have leading space") + s = ts + } + // Only non-main packages need to keep to this form. + if f.f.Name.Name != "main" && !strings.HasPrefix(s, prefix) { + f.errorf(f.f.Doc, 1, link, `package comment should be of the form "%s..."`, prefix) + } +} + +// lintBlankImports complains if a non-main package has blank imports that are +// not documented. +func (f *file) lintBlankImports() { + // In package main and in tests, we don't complain about blank imports. + if f.main || f.isTest() { + return + } + + // The first element of each contiguous group of blank imports should have + // an explanatory comment of some kind. + for i, imp := range f.f.Imports { + pos := f.fset.Position(imp.Pos()) + + if !isBlank(imp.Name) { + continue // Ignore non-blank imports. + } + if i > 0 { + prev := f.f.Imports[i-1] + prevPos := f.fset.Position(prev.Pos()) + if isBlank(prev.Name) && prevPos.Line+1 == pos.Line { + continue // A subsequent blank in a group. + } + } + + // This is the first blank import of a group. + if imp.Doc == nil && imp.Comment == nil { + link := "" + f.errorf(imp, 1, link, "a blank import should be only in a main or test package, or have a comment justifying it") + } + } +} + +// lintImports examines import blocks. +func (f *file) lintImports() { + + for i, is := range f.f.Imports { + _ = i + if is.Name != nil && is.Name.Name == "." && !f.isTest() { + f.errorf(is, 1, styleGuideBase+"#Import_Dot", "should not use dot imports") + } + + } + +} + +const docCommentsLink = styleGuideBase + "#Doc_Comments" + +// lintExported examines the doc comments of exported names. +// It complains if any required doc comments are missing, +// or if they are not of the right form. The exact rules are in +// lintFuncDoc, lintTypeDoc and lintValueSpecDoc; this function +// also tracks the GenDecl structure being traversed to permit +// doc comments for constants to be on top of the const block. +func (f *file) lintExported() { + if f.isTest() { + return + } + + var lastGen *ast.GenDecl // last GenDecl entered. + + // Set of GenDecls that have already had missing comments flagged. + genDeclMissingComments := make(map[*ast.GenDecl]bool) + + f.walk(func(node ast.Node) bool { + switch v := node.(type) { + case *ast.GenDecl: + if v.Tok == token.IMPORT { + return false + } + // token.CONST, token.TYPE or token.VAR + lastGen = v + return true + case *ast.FuncDecl: + f.lintFuncDoc(v) + // Don't proceed inside funcs. + return false + case *ast.TypeSpec: + // inside a GenDecl, which usually has the doc + doc := v.Doc + if doc == nil { + doc = lastGen.Doc + } + f.lintTypeDoc(v, doc) + // Don't proceed inside types. + return false + case *ast.ValueSpec: + f.lintValueSpecDoc(v, lastGen, genDeclMissingComments) + return false + } + return true + }) +} + +var allCapsRE = regexp.MustCompile(`^[A-Z0-9_]+$`) + +// lintNames examines all names in the file. +// It complains if any use underscores or incorrect known initialisms. +func (f *file) lintNames() { + // Package names need slightly different handling than other names. + if strings.Contains(f.f.Name.Name, "_") && !strings.HasSuffix(f.f.Name.Name, "_test") { + f.errorf(f.f, 1, "http://golang.org/doc/effective_go.html#package-names", "don't use an underscore in package name") + } + + check := func(id *ast.Ident, thing string) { + if id.Name == "_" { + return + } + + // Handle two common styles from other languages that don't belong in Go. + if len(id.Name) >= 5 && allCapsRE.MatchString(id.Name) && strings.Contains(id.Name, "_") { + f.errorf(id, 0.8, styleGuideBase+"#Mixed_Caps", "don't use ALL_CAPS in Go names; use CamelCase") + return + } + if len(id.Name) > 2 && id.Name[0] == 'k' && id.Name[1] >= 'A' && id.Name[1] <= 'Z' { + should := string(id.Name[1]+'a'-'A') + id.Name[2:] + f.errorf(id, 0.8, "", "don't use leading k in Go names; %s %s should be %s", thing, id.Name, should) + } + + should := lintName(id.Name) + if id.Name == should { + return + } + if len(id.Name) > 2 && strings.Contains(id.Name[1:], "_") { + f.errorf(id, 0.9, "http://golang.org/doc/effective_go.html#mixed-caps", "don't use underscores in Go names; %s %s should be %s", thing, id.Name, should) + return + } + f.errorf(id, 0.8, styleGuideBase+"#Initialisms", "%s %s should be %s", thing, id.Name, should) + } + checkList := func(fl *ast.FieldList, thing string) { + if fl == nil { + return + } + for _, f := range fl.List { + for _, id := range f.Names { + check(id, thing) + } + } + } + f.walk(func(node ast.Node) bool { + switch v := node.(type) { + case *ast.AssignStmt: + if v.Tok == token.ASSIGN { + return true + } + for _, exp := range v.Lhs { + if id, ok := exp.(*ast.Ident); ok { + check(id, "var") + } + } + case *ast.FuncDecl: + if f.isTest() && (strings.HasPrefix(v.Name.Name, "Example") || strings.HasPrefix(v.Name.Name, "Test")) { + return true + } + check(v.Name, "func") + + thing := "func" + if v.Recv != nil { + thing = "method" + } + checkList(v.Type.Params, thing+" parameter") + checkList(v.Type.Results, thing+" result") + case *ast.GenDecl: + if v.Tok == token.IMPORT { + return true + } + var thing string + switch v.Tok { + case token.CONST: + thing = "const" + case token.TYPE: + thing = "type" + case token.VAR: + thing = "var" + } + for _, spec := range v.Specs { + switch s := spec.(type) { + case *ast.TypeSpec: + check(s.Name, thing) + case *ast.ValueSpec: + for _, id := range s.Names { + check(id, thing) + } + } + } + case *ast.InterfaceType: + // Do not check interface method names. + // They are often constrainted by the method names of concrete types. + for _, x := range v.Methods.List { + ft, ok := x.Type.(*ast.FuncType) + if !ok { // might be an embedded interface name + continue + } + checkList(ft.Params, "interface method parameter") + checkList(ft.Results, "interface method result") + } + case *ast.RangeStmt: + if v.Tok == token.ASSIGN { + return true + } + if id, ok := v.Key.(*ast.Ident); ok { + check(id, "range var") + } + if id, ok := v.Value.(*ast.Ident); ok { + check(id, "range var") + } + case *ast.StructType: + for _, f := range v.Fields.List { + for _, id := range f.Names { + check(id, "struct field") + } + } + } + return true + }) +} + +// lintName returns a different name if it should be different. +func lintName(name string) (should string) { + // Fast path for simple cases: "_" and all lowercase. + if name == "_" { + return name + } + allLower := true + for _, r := range name { + if !unicode.IsLower(r) { + allLower = false + break + } + } + if allLower { + return name + } + + // Split camelCase at any lower->upper transition, and split on underscores. + // Check each word for common initialisms. + runes := []rune(name) + w, i := 0, 0 // index of start of word, scan + for i+1 <= len(runes) { + eow := false // whether we hit the end of a word + if i+1 == len(runes) { + eow = true + } else if runes[i+1] == '_' { + // underscore; shift the remainder forward over any run of underscores + eow = true + n := 1 + for i+n+1 < len(runes) && runes[i+n+1] == '_' { + n++ + } + copy(runes[i+1:], runes[i+n+1:]) + runes = runes[:len(runes)-n] + } else if unicode.IsLower(runes[i]) && !unicode.IsLower(runes[i+1]) { + // lower->non-lower + eow = true + } + i++ + if !eow { + continue + } + + // [w,i) is a word. + word := string(runes[w:i]) + if u := strings.ToUpper(word); commonInitialisms[u] { + // Keep consistent case, which is lowercase only at the start. + if w == 0 && unicode.IsLower(runes[w]) { + u = strings.ToLower(u) + } + // All the common initialisms are ASCII, + // so we can replace the bytes exactly. + copy(runes[w:], []rune(u)) + } else if w > 0 && strings.ToLower(word) == word { + // already all lowercase, and not the first word, so uppercase the first character. + runes[w] = unicode.ToUpper(runes[w]) + } + w = i + } + return string(runes) +} + +// commonInitialisms is a set of common initialisms. +// Only add entries that are highly unlikely to be non-initialisms. +// For instance, "ID" is fine (Freudian code is rare), but "AND" is not. +var commonInitialisms = map[string]bool{ + "API": true, + "ASCII": true, + "CPU": true, + "CSS": true, + "DNS": true, + "EOF": true, + "HTML": true, + "HTTP": true, + "HTTPS": true, + "ID": true, + "IP": true, + "JSON": true, + "LHS": true, + "QPS": true, + "RAM": true, + "RHS": true, + "RPC": true, + "SLA": true, + "SSH": true, + "TLS": true, + "TTL": true, + "UI": true, + "UID": true, + "URL": true, + "UTF8": true, + "VM": true, + "XML": true, +} + +// lintTypeDoc examines the doc comment on a type. +// It complains if they are missing from an exported type, +// or if they are not of the standard form. +func (f *file) lintTypeDoc(t *ast.TypeSpec, doc *ast.CommentGroup) { + if !ast.IsExported(t.Name.Name) { + return + } + if doc == nil { + f.errorf(t, 1, docCommentsLink, "exported type %v should have comment or be unexported", t.Name) + return + } + + s := doc.Text() + articles := [...]string{"A", "An", "The"} + for _, a := range articles { + if strings.HasPrefix(s, a+" ") { + s = s[len(a)+1:] + break + } + } + if !strings.HasPrefix(s, t.Name.Name+" ") { + f.errorf(doc, 1, docCommentsLink, `comment on exported type %v should be of the form "%v ..." (with optional leading article)`, t.Name, t.Name) + } +} + +var commonMethods = map[string]bool{ + "Error": true, + "Read": true, + "ServeHTTP": true, + "String": true, + "Write": true, +} + +// lintFuncDoc examines doc comments on functions and methods. +// It complains if they are missing, or not of the right form. +// It has specific exclusions for well-known methods (see commonMethods above). +func (f *file) lintFuncDoc(fn *ast.FuncDecl) { + if !ast.IsExported(fn.Name.Name) { + // func is unexported + return + } + kind := "function" + name := fn.Name.Name + if fn.Recv != nil { + // method + kind = "method" + recv := receiverType(fn) + if !ast.IsExported(recv) { + // receiver is unexported + return + } + if commonMethods[name] { + return + } + switch name { + case "Len", "Less", "Swap": + if f.sortable[recv] { + return + } + } + name = recv + "." + name + } + if fn.Doc == nil { + f.errorf(fn, 1, docCommentsLink, "exported %s %s should have comment or be unexported", kind, name) + return + } + s := fn.Doc.Text() + prefix := fn.Name.Name + " " + if !strings.HasPrefix(s, prefix) { + f.errorf(fn.Doc, 1, docCommentsLink, `comment on exported %s %s should be of the form "%s..."`, kind, name, prefix) + } +} + +// lintValueSpecDoc examines package-global variables and constants. +// It complains if they are not individually declared, +// or if they are not suitably documented in the right form (unless they are in a block that is commented). +func (f *file) lintValueSpecDoc(vs *ast.ValueSpec, gd *ast.GenDecl, genDeclMissingComments map[*ast.GenDecl]bool) { + kind := "var" + if gd.Tok == token.CONST { + kind = "const" + } + + if len(vs.Names) > 1 { + // Check that none are exported except for the first. + for _, n := range vs.Names[1:] { + if ast.IsExported(n.Name) { + f.errorf(vs, 1, "", "exported %s %s should have its own declaration", kind, n.Name) + return + } + } + } + + // Only one name. + name := vs.Names[0].Name + if !ast.IsExported(name) { + return + } + + if vs.Doc == nil { + if gd.Doc == nil && !genDeclMissingComments[gd] { + block := "" + if kind == "const" && gd.Lparen.IsValid() { + block = " (or a comment on this block)" + } + f.errorf(vs, 1, docCommentsLink, "exported %s %s should have comment%s or be unexported", kind, name, block) + genDeclMissingComments[gd] = true + } + return + } + prefix := name + " " + if !strings.HasPrefix(vs.Doc.Text(), prefix) { + f.errorf(vs.Doc, 1, docCommentsLink, `comment on exported %s %s should be of the form "%s..."`, kind, name, prefix) + } +} + +// zeroLiteral is a set of ast.BasicLit values that are zero values. +// It is not exhaustive. +var zeroLiteral = map[string]bool{ + "false": true, // bool + // runes + `'\x00'`: true, + `'\000'`: true, + // strings + `""`: true, + "``": true, + // numerics + "0": true, + "0.": true, + "0.0": true, + "0i": true, +} + +// lintVarDecls examines variable declarations. It complains about declarations with +// redundant LHS types that can be inferred from the RHS. +func (f *file) lintVarDecls() { + var lastGen *ast.GenDecl // last GenDecl entered. + + f.walk(func(node ast.Node) bool { + switch v := node.(type) { + case *ast.GenDecl: + if v.Tok != token.CONST && v.Tok != token.VAR { + return false + } + lastGen = v + return true + case *ast.ValueSpec: + if lastGen.Tok == token.CONST { + return false + } + if len(v.Names) > 1 || v.Type == nil || len(v.Values) == 0 { + return false + } + rhs := v.Values[0] + // An underscore var appears in a common idiom for compile-time interface satisfaction, + // as in "var _ Interface = (*Concrete)(nil)". + if isIdent(v.Names[0], "_") { + return false + } + // If the RHS is a zero value, suggest dropping it. + zero := false + if lit, ok := rhs.(*ast.BasicLit); ok { + zero = zeroLiteral[lit.Value] + } else if isIdent(rhs, "nil") { + zero = true + } + if zero { + f.errorf(rhs, 0.9, "", "should drop = %s from declaration of var %s; it is the zero value", f.render(rhs), v.Names[0]) + return false + } + // If the LHS type is an interface, don't warn, since it is probably a + // concrete type on the RHS. Note that our feeble lexical check here + // will only pick up interface{} and other literal interface types; + // that covers most of the cases we care to exclude right now. + // TODO(dsymonds): Use typechecker to make this heuristic more accurate. + if _, ok := v.Type.(*ast.InterfaceType); ok { + return false + } + // If the RHS is an untyped const, only warn if the LHS type is its default type. + if defType, ok := isUntypedConst(rhs); ok && !isIdent(v.Type, defType) { + return false + } + f.errorf(v.Type, 0.8, "", "should omit type %s from declaration of var %s; it will be inferred from the right-hand side", f.render(v.Type), v.Names[0]) + return false + } + return true + }) +} + +// lintElses examines else blocks. It complains about any else block whose if block ends in a return. +func (f *file) lintElses() { + // We don't want to flag if { } else if { } else { } constructions. + // They will appear as an IfStmt whose Else field is also an IfStmt. + // Record such a node so we ignore it when we visit it. + ignore := make(map[*ast.IfStmt]bool) + + f.walk(func(node ast.Node) bool { + ifStmt, ok := node.(*ast.IfStmt) + if !ok || ifStmt.Else == nil { + return true + } + if ignore[ifStmt] { + return true + } + if elseif, ok := ifStmt.Else.(*ast.IfStmt); ok { + ignore[elseif] = true + return true + } + if _, ok := ifStmt.Else.(*ast.BlockStmt); !ok { + // only care about elses without conditions + return true + } + if len(ifStmt.Body.List) == 0 { + return true + } + shortDecl := false // does the if statement have a ":=" initialization statement? + if ifStmt.Init != nil { + if as, ok := ifStmt.Init.(*ast.AssignStmt); ok && as.Tok == token.DEFINE { + shortDecl = true + } + } + lastStmt := ifStmt.Body.List[len(ifStmt.Body.List)-1] + if _, ok := lastStmt.(*ast.ReturnStmt); ok { + extra := "" + if shortDecl { + extra = " (move short variable declaration to its own line if necessary)" + } + f.errorf(ifStmt.Else, 1, styleGuideBase+"#Indent_Error_Flow", "if block ends with a return statement, so drop this else and outdent its block"+extra) + } + return true + }) +} + +// lintRanges examines range clauses. It complains about redundant constructions. +func (f *file) lintRanges() { + f.walk(func(node ast.Node) bool { + rs, ok := node.(*ast.RangeStmt) + if !ok { + return true + } + if rs.Value == nil { + // for x = range m { ... } + return true // single var form + } + if !isIdent(rs.Value, "_") { + // for ?, y = range m { ... } + return true + } + + f.errorf(rs.Value, 1, "", "should omit 2nd value from range; this loop is equivalent to `for %s %s range ...`", f.render(rs.Key), rs.Tok) + return true + }) +} + +// lintErrorf examines errors.New calls. It complains if its only argument is an fmt.Sprintf invocation. +func (f *file) lintErrorf() { + f.walk(func(node ast.Node) bool { + ce, ok := node.(*ast.CallExpr) + if !ok { + return true + } + if !isPkgDot(ce.Fun, "errors", "New") || len(ce.Args) != 1 { + return true + } + arg := ce.Args[0] + ce, ok = arg.(*ast.CallExpr) + if !ok || !isPkgDot(ce.Fun, "fmt", "Sprintf") { + return true + } + f.errorf(node, 1, "", "should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...)") + return true + }) +} + +// lintErrors examines global error vars. It complains if they aren't named in the standard way. +func (f *file) lintErrors() { + for _, decl := range f.f.Decls { + gd, ok := decl.(*ast.GenDecl) + if !ok || gd.Tok != token.VAR { + continue + } + for _, spec := range gd.Specs { + spec := spec.(*ast.ValueSpec) + if len(spec.Names) != 1 || len(spec.Values) != 1 { + continue + } + ce, ok := spec.Values[0].(*ast.CallExpr) + if !ok { + continue + } + if !isPkgDot(ce.Fun, "errors", "New") && !isPkgDot(ce.Fun, "fmt", "Errorf") { + continue + } + + id := spec.Names[0] + prefix := "err" + if id.IsExported() { + prefix = "Err" + } + if !strings.HasPrefix(id.Name, prefix) { + f.errorf(id, 0.9, "", "error var %s should have name of the form %sFoo", id.Name, prefix) + } + } + } +} + +func lintCapAndPunct(s string) (isCap, isPunct bool) { + first, firstN := utf8.DecodeRuneInString(s) + last, _ := utf8.DecodeLastRuneInString(s) + isPunct = last == '.' || last == ':' || last == '!' + isCap = unicode.IsUpper(first) + if isCap && len(s) > firstN { + // Don't flag strings starting with something that looks like an initialism. + if second, _ := utf8.DecodeRuneInString(s[firstN:]); unicode.IsUpper(second) { + isCap = false + } + } + return +} + +// lintErrorStrings examines error strings. It complains if they are capitalized or end in punctuation. +func (f *file) lintErrorStrings() { + f.walk(func(node ast.Node) bool { + ce, ok := node.(*ast.CallExpr) + if !ok { + return true + } + if !isPkgDot(ce.Fun, "errors", "New") && !isPkgDot(ce.Fun, "fmt", "Errorf") { + return true + } + if len(ce.Args) < 1 { + return true + } + str, ok := ce.Args[0].(*ast.BasicLit) + if !ok || str.Kind != token.STRING { + return true + } + s, _ := strconv.Unquote(str.Value) // can assume well-formed Go + if s == "" { + return true + } + isCap, isPunct := lintCapAndPunct(s) + var msg string + switch { + case isCap && isPunct: + msg = "error strings should not be capitalized and should not end with punctuation" + case isCap: + msg = "error strings should not be capitalized" + case isPunct: + msg = "error strings should not end with punctuation" + default: + return true + } + f.errorf(str, 0.8, styleGuideBase+"#Error_Strings", msg) + return true + }) +} + +var badReceiverNames = map[string]bool{ + "me": true, + "this": true, + "self": true, +} + +// lintReceiverNames examines receiver names. It complains about inconsistent +// names used for the same type and names such as "this". +func (f *file) lintReceiverNames() { + typeReceiver := map[string]string{} + f.walk(func(n ast.Node) bool { + fn, ok := n.(*ast.FuncDecl) + if !ok || fn.Recv == nil { + return true + } + names := fn.Recv.List[0].Names + if len(names) < 1 { + return true + } + name := names[0].Name + const link = styleGuideBase + "#Receiver_Names" + if badReceiverNames[name] { + f.errorf(n, 1, link, `receiver name should be a reflection of its identity; don't use generic names such as "me", "this", or "self"`) + return true + } + recv := receiverType(fn) + if prev, ok := typeReceiver[recv]; ok && prev != name { + f.errorf(n, 1, link, "receiver name %s should be consistent with previous receiver name %s for %s", name, prev, recv) + return true + } + typeReceiver[recv] = name + return true + }) +} + +// lintIncDec examines statements that increment or decrement a variable. +// It complains if they don't use x++ or x--. +func (f *file) lintIncDec() { + f.walk(func(n ast.Node) bool { + as, ok := n.(*ast.AssignStmt) + if !ok { + return true + } + if len(as.Lhs) != 1 { + return true + } + if !isOne(as.Rhs[0]) { + return true + } + var suffix string + switch as.Tok { + case token.ADD_ASSIGN: + suffix = "++" + case token.SUB_ASSIGN: + suffix = "--" + default: + return true + } + f.errorf(as, 0.8, "", "should replace %s with %s%s", f.render(as), f.render(as.Lhs[0]), suffix) + return true + }) +} + +// lineMake examines statements that declare and initialize a variable with make. +// It complains if they are constructing a zero element slice. +func (f *file) lintMake() { + f.walk(func(n ast.Node) bool { + as, ok := n.(*ast.AssignStmt) + if !ok { + return true + } + // Only want single var := assignment statements. + if len(as.Lhs) != 1 || as.Tok != token.DEFINE { + return true + } + ce, ok := as.Rhs[0].(*ast.CallExpr) + if !ok { + return true + } + // Check if ce is make([]T, 0). + if !isIdent(ce.Fun, "make") || len(ce.Args) != 2 || !isZero(ce.Args[1]) { + return true + } + at, ok := ce.Args[0].(*ast.ArrayType) + if !ok || at.Len != nil { + return true + } + f.errorf(as, 0.8, "", `can probably use "var %s %s" instead`, f.render(as.Lhs[0]), f.render(at)) + return true + }) +} + +func receiverType(fn *ast.FuncDecl) string { + switch e := fn.Recv.List[0].Type.(type) { + case *ast.Ident: + return e.Name + case *ast.StarExpr: + return e.X.(*ast.Ident).Name + } + panic(fmt.Sprintf("unknown method receiver AST node type %T", fn.Recv.List[0].Type)) +} + +func (f *file) walk(fn func(ast.Node) bool) { + ast.Walk(walker(fn), f.f) +} + +func (f *file) render(x interface{}) string { + var buf bytes.Buffer + if err := printer.Fprint(&buf, f.fset, x); err != nil { + panic(err) + } + return buf.String() +} + +func (f *file) debugRender(x interface{}) string { + var buf bytes.Buffer + if err := ast.Fprint(&buf, f.fset, x, nil); err != nil { + panic(err) + } + return buf.String() +} + +// walker adapts a function to satisfy the ast.Visitor interface. +// The function return whether the walk should proceed into the node's children. +type walker func(ast.Node) bool + +func (w walker) Visit(node ast.Node) ast.Visitor { + if w(node) { + return w + } + return nil +} + +func isIdent(expr ast.Expr, ident string) bool { + id, ok := expr.(*ast.Ident) + return ok && id.Name == ident +} + +// isBlank returns whether id is the blank identifier "_". +// If id == nil, the answer is false. +func isBlank(id *ast.Ident) bool { return id != nil && id.Name == "_" } + +func isPkgDot(expr ast.Expr, pkg, name string) bool { + sel, ok := expr.(*ast.SelectorExpr) + return ok && isIdent(sel.X, pkg) && isIdent(sel.Sel, name) +} + +func isZero(expr ast.Expr) bool { + lit, ok := expr.(*ast.BasicLit) + return ok && lit.Kind == token.INT && lit.Value == "0" +} + +func isOne(expr ast.Expr) bool { + lit, ok := expr.(*ast.BasicLit) + return ok && lit.Kind == token.INT && lit.Value == "1" +} + +var basicLitKindTypes = map[token.Token]string{ + token.FLOAT: "float64", + token.IMAG: "complex128", + token.CHAR: "rune", + token.STRING: "string", +} + +// isUntypedConst reports whether expr is an untyped constant, +// and indicates what its default type is. +func isUntypedConst(expr ast.Expr) (defType string, ok bool) { + if isIntLiteral(expr) { + return "int", true + } + if bl, ok := expr.(*ast.BasicLit); ok { + if dt, ok := basicLitKindTypes[bl.Kind]; ok { + return dt, true + } + } + return "", false +} + +func isIntLiteral(expr ast.Expr) bool { + // Either a BasicLit with Kind token.INT, + // or some combination of a UnaryExpr with Op token.SUB (for "-") + // or a ParenExpr (for "()"). +Loop: + for { + switch v := expr.(type) { + case *ast.UnaryExpr: + if v.Op == token.SUB { + expr = v.X + continue Loop + } + case *ast.ParenExpr: + expr = v.X + continue Loop + case *ast.BasicLit: + if v.Kind == token.INT { + return true + } + } + return false + } +} + +// srcLine returns the complete line at p, including the terminating newline. +func srcLine(src []byte, p token.Position) string { + // Run to end of line in both directions if not at line start/end. + lo, hi := p.Offset, p.Offset+1 + for lo > 0 && src[lo-1] != '\n' { + lo-- + } + for hi < len(src) && src[hi-1] != '\n' { + hi++ + } + return string(src[lo:hi]) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/lint_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/lint_test.go new file mode 100644 index 00000000..12e3afb8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/lint_test.go @@ -0,0 +1,197 @@ +// Copyright (c) 2013 The Go Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file or at +// https://developers.google.com/open-source/licenses/bsd. + +package lint + +import ( + "bytes" + "flag" + "go/parser" + "go/printer" + "go/token" + "io/ioutil" + "path" + "regexp" + "strings" + "testing" +) + +var lintMatch = flag.String("lint.match", "", "restrict testdata matches to this pattern") + +func TestAll(t *testing.T) { + l := new(Linter) + rx, err := regexp.Compile(*lintMatch) + if err != nil { + t.Fatalf("Bad -lint.match value %q: %v", *lintMatch, err) + } + + baseDir := "testdata" + fis, err := ioutil.ReadDir(baseDir) + if err != nil { + t.Fatalf("ioutil.ReadDir: %v", err) + } + if len(fis) == 0 { + t.Fatalf("no files in %v", baseDir) + } + for _, fi := range fis { + if !rx.MatchString(fi.Name()) { + continue + } + //t.Logf("Testing %s", fi.Name()) + src, err := ioutil.ReadFile(path.Join(baseDir, fi.Name())) + if err != nil { + t.Fatalf("Failed reading %s: %v", fi.Name(), err) + } + + ins := parseInstructions(t, fi.Name(), src) + if ins == nil { + t.Errorf("Test file %v does not have instructions", fi.Name()) + continue + } + + ps, err := l.Lint(fi.Name(), src) + if err != nil { + t.Errorf("Linting %s: %v", fi.Name(), err) + continue + } + + for _, in := range ins { + ok := false + for i, p := range ps { + if p.Position.Line != in.Line { + continue + } + if in.Match.MatchString(p.Text) { + // remove this problem from ps + copy(ps[i:], ps[i+1:]) + ps = ps[:len(ps)-1] + + //t.Logf("/%v/ matched at %s:%d", in.Match, fi.Name(), in.Line) + ok = true + break + } + } + if !ok { + t.Errorf("Lint failed at %s:%d; /%v/ did not match", fi.Name(), in.Line, in.Match) + } + } + for _, p := range ps { + t.Errorf("Unexpected problem at %s:%d: %v", fi.Name(), p.Position.Line, p.Text) + } + } +} + +type instruction struct { + Line int // the line number this applies to + Match *regexp.Regexp // what pattern to match +} + +// parseInstructions parses instructions from the comments in a Go source file. +// It returns nil if none were parsed. +func parseInstructions(t *testing.T, filename string, src []byte) []instruction { + fset := token.NewFileSet() + f, err := parser.ParseFile(fset, filename, src, parser.ParseComments) + if err != nil { + t.Fatalf("Test file %v does not parse: %v", filename, err) + } + var ins []instruction + for _, cg := range f.Comments { + ln := fset.Position(cg.Pos()).Line + raw := cg.Text() + for _, line := range strings.Split(raw, "\n") { + if line == "" || strings.HasPrefix(line, "#") { + continue + } + if line == "OK" && ins == nil { + // so our return value will be non-nil + ins = make([]instruction, 0) + continue + } + if strings.Contains(line, "MATCH") { + a, b := strings.Index(line, "/"), strings.LastIndex(line, "/") + if a == -1 || a == b { + t.Fatalf("Malformed match instruction %q at %v:%d", line, filename, ln) + } + pat := line[a+1 : b] + rx, err := regexp.Compile(pat) + if err != nil { + t.Fatalf("Bad match pattern %q at %v:%d: %v", pat, filename, ln, err) + } + ins = append(ins, instruction{ + Line: ln, + Match: rx, + }) + } + } + } + return ins +} + +func render(fset *token.FileSet, x interface{}) string { + var buf bytes.Buffer + if err := printer.Fprint(&buf, fset, x); err != nil { + panic(err) + } + return buf.String() +} + +func TestLine(t *testing.T) { + tests := []struct { + src string + offset int + want string + }{ + {"single line file", 5, "single line file"}, + {"single line file with newline\n", 5, "single line file with newline\n"}, + {"first\nsecond\nthird\n", 2, "first\n"}, + {"first\nsecond\nthird\n", 9, "second\n"}, + {"first\nsecond\nthird\n", 14, "third\n"}, + {"first\nsecond\nthird with no newline", 16, "third with no newline"}, + {"first byte\n", 0, "first byte\n"}, + } + for _, test := range tests { + got := srcLine([]byte(test.src), token.Position{Offset: test.offset}) + if got != test.want { + t.Errorf("srcLine(%q, offset=%d) = %q, want %q", test.src, test.offset, got, test.want) + } + } +} + +func TestLintName(t *testing.T) { + tests := []struct { + name, want string + }{ + {"foo_bar", "fooBar"}, + {"foo_bar_baz", "fooBarBaz"}, + {"Foo_bar", "FooBar"}, + {"foo_WiFi", "fooWiFi"}, + {"id", "id"}, + {"Id", "ID"}, + {"foo_id", "fooID"}, + {"fooId", "fooID"}, + {"fooUid", "fooUID"}, + {"idFoo", "idFoo"}, + {"uidFoo", "uidFoo"}, + {"midIdDle", "midIDDle"}, + {"APIProxy", "APIProxy"}, + {"ApiProxy", "APIProxy"}, + {"apiProxy", "apiProxy"}, + {"_Leading", "_Leading"}, + {"___Leading", "_Leading"}, + {"trailing_", "trailing"}, + {"trailing___", "trailing"}, + {"a_b", "aB"}, + {"a__b", "aB"}, + {"a___b", "aB"}, + {"Rpc1150", "RPC1150"}, + } + for _, test := range tests { + got := lintName(test.name) + if got != test.want { + t.Errorf("lintName(%q) = %q, want %q", test.name, got, test.want) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/misc/emacs/golint.el b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/misc/emacs/golint.el new file mode 100644 index 00000000..de729df6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/misc/emacs/golint.el @@ -0,0 +1,51 @@ +;;; golint.el --- lint for the Go source code + +;; Copyright 2013 The Go Authors. All rights reserved. +;; Use of this source code is governed by a BSD-style +;; license that can be found in the LICENSE file. + +;; URL: https://github.com/golang/lint + +;;; Commentary: + +;; To install golint, add the following lines to your .emacs file: +;; (add-to-list 'load-path "PATH CONTAINING golint.el" t) +;; (require 'golint) +;; +;; After this, type M-x golint on Go source code. +;; +;; Usage: +;; C-x ` +;; Jump directly to the line in your code which caused the first message. +;; +;; For more usage, see Compilation-Mode: +;; http://www.gnu.org/software/emacs/manual/html_node/emacs/Compilation-Mode.html + +;;; Code: +(require 'compile) + +(defun go-lint-buffer-name (mode) + "*Golint*") + +(defun golint-process-setup () + "Setup compilation variables and buffer for `golint'." + (run-hooks 'golint-setup-hook)) + +(define-compilation-mode golint-mode "golint" + "Golint is a linter for Go source code." + (set (make-local-variable 'compilation-scroll-output) nil) + (set (make-local-variable 'compilation-disable-input) t) + (set (make-local-variable 'compilation-process-setup-function) + 'golint-process-setup) +) + +;;;###autoload +(defun golint () + "Run golint on the current file and populate the fix list. Pressing C-x ` will jump directly to the line in your code which caused the first message." + (interactive) + (compilation-start (concat "golint " buffer-file-name) + 'golint-mode)) + +(provide 'golint) + +;;; golint.el ends here diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/misc/vim/ftplugin/go/lint.vim b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/misc/vim/ftplugin/go/lint.vim new file mode 100644 index 00000000..7dffd181 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/misc/vim/ftplugin/go/lint.vim @@ -0,0 +1,31 @@ +" Copyright 2013 The Go Authors. All rights reserved. +" Use of this source code is governed by a BSD-style +" license that can be found in the LICENSE file. +" +" lint.vim: Vim command to lint Go files with golint. +" +" https://github.com/golang/lint +" +" This filetype plugin add a new commands for go buffers: +" +" :Lint +" +" Run golint for the current Go file. +" +if exists("b:did_ftplugin_go_lint") + finish +endif + +if !executable("golint") + finish +endif + +command! -buffer Lint call s:GoLint() + +function! s:GoLint() abort + cexpr system('golint ' . shellescape(expand('%'))) +endfunction + +let b:did_ftplugin_go_lint = 1 + +" vim:ts=4:sw=4:et diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/4.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/4.go new file mode 100644 index 00000000..2303a9a3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/4.go @@ -0,0 +1,34 @@ +// Test that exported names have correct comments. + +// Package pkg does something. +package pkg + +import "time" + +type T int // MATCH /exported type T.*should.*comment.*or.*unexport/ + +func (T) F() {} // MATCH /exported method T\.F.*should.*comment.*or.*unexport/ + +// this is a nice type. +// MATCH /comment.*exported type U.*should.*form.*"U ..."/ +type U string + +// this is a neat function. +// MATCH /comment.*exported method U\.G.*should.*form.*"G ..."/ +func (U) G() {} + +// A V is a string. +type V string + +// V.H has a pointer receiver + +func (*V) H() {} // MATCH /exported method V\.H.*should.*comment.*or.*unexport/ + +var W = "foo" // MATCH /exported var W.*should.*comment.*or.*unexport/ + +const X = "bar" // MATCH /exported const X.*should.*comment.*or.*unexport/ + +var Y, Z int // MATCH /exported var Z.*own declaration/ + +// Location should be okay, since the other var name is an underscore. +var Location, _ = time.LoadLocation("Europe/Istanbul") // not Constantinople diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/5_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/5_test.go new file mode 100644 index 00000000..af174587 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/5_test.go @@ -0,0 +1,17 @@ +// This file ends in _test.go, so we should not warn about doc comments. +// OK + +package pkg + +import "testing" + +type H int + +func TestSomething(t *testing.T) { +} + +func TestSomething_suffix(t *testing.T) { +} + +func ExampleBuffer_reader() { +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-lib.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-lib.go new file mode 100644 index 00000000..edac0d75 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-lib.go @@ -0,0 +1,33 @@ +// Test that blank imports in library packages are flagged. + +// Package foo ... +package foo + +// The instructions need to go before the imports below so they will not be +// mistaken for documentation. + +/* MATCH /blank import/ */ import _ "encoding/json" + +import ( + "fmt" + /* MATCH /blank import/ */ _ "os" + + /* MATCH /blank import/ */ _ "net/http" + _ "path" +) + +import _ "encoding/base64" // Don't gripe about this + +import ( + // Don't gripe about these next two lines. + _ "compress/zlib" + _ "syscall" + + /* MATCH /blank import/ */ _ "path/filepath" +) + +import ( + "go/ast" + _ "go/scanner" // Don't gripe about this or the following line. + _ "go/token" +) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-lib_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-lib_test.go new file mode 100644 index 00000000..0307985f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-lib_test.go @@ -0,0 +1,20 @@ +// Test that blank imports in test packages are not flagged. +// OK + +// Package foo ... +package foo + +// These are essentially the same imports as in the "library" package, but +// these should not trigger the warning because this is a test. + +import _ "encoding/json" + +import ( + "fmt" + "testing" + + _ "os" + + _ "net/http" + _ "path" +) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-main.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-main.go new file mode 100644 index 00000000..9b72b1cb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/blank-import-main.go @@ -0,0 +1,12 @@ +// Test that blank imports in package main are not flagged. +// OK + +// Binary foo ... +package main + +import _ "fmt" + +import ( + "os" + _ "path" +) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/common-methods.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/common-methods.go new file mode 100644 index 00000000..c0bb1363 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/common-methods.go @@ -0,0 +1,16 @@ +// Test that we don't nag for comments on common methods. +// OK + +// Package pkg ... +package pkg + +import "net/http" + +// T is ... +type T int + +func (T) Error() string { return "" } +func (T) String() string { return "" } +func (T) ServeHTTP(w http.ResponseWriter, r *http.Request) {} +func (T) Read(p []byte) (n int, err error) { return 0, nil } +func (T) Write(p []byte) (n int, err error) { return 0, nil } diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/const-block.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/const-block.go new file mode 100644 index 00000000..4b89d6f6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/const-block.go @@ -0,0 +1,36 @@ +// Test for docs in const blocks + +// Package foo ... +package foo + +const ( + // Prefix for something. + // MATCH /InlineWhatever.*form/ + InlineWhatever = "blah" + + Whatsit = "missing_comment" // MATCH /Whatsit.*should have comment.*block/ + + // We should only warn once per block for missing comments, + // but always complain about malformed comments. + + WhosYourDaddy = "another_missing_one" + + // Something + // MATCH /WhatDoesHeDo.*form/ + WhatDoesHeDo = "it's not a tumor!" +) + +// These shouldn't need doc comments. +const ( + Alpha = "a" + Beta = "b" + Gamma = "g" +) + +// The comment on the previous const block shouldn't flow through to here. + +const UndocAgain = 6 // MATCH /UndocAgain.*should have comment/ + +const ( + SomeUndocumented = 7 // MATCH /SomeUndocumented.*should have comment.*block/ +) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/else-multi.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/else-multi.go new file mode 100644 index 00000000..98f39a3e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/else-multi.go @@ -0,0 +1,18 @@ +// Test of return+else warning; should not trigger on multi-branch if/else. +// OK + +// Package pkg ... +package pkg + +import "log" + +func f(x int) bool { + if x == 0 { + log.Print("x is zero") + } else if x > 0 { + return true + } else { + log.Printf("non-positive x: %d", x) + } + return false +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/else.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/else.go new file mode 100644 index 00000000..515c043d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/else.go @@ -0,0 +1,23 @@ +// Test of return+else warning. + +// Package pkg ... +package pkg + +import "log" + +func f(x int) bool { + if x > 0 { + return true + } else { // MATCH /if.*return.*else.*outdent/ + log.Printf("non-positive x: %d", x) + } + return false +} + +func g(f func() bool) string { + if ok := f(); ok { + return "it's okay" + } else { // MATCH /if.*return.*else.*outdent.*short.*var.*declaration/ + return "it's NOT okay!" + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/errorf.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/errorf.go new file mode 100644 index 00000000..768fb8ce --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/errorf.go @@ -0,0 +1,22 @@ +// Test for not using fmt.Errorf. + +// Package foo ... +package foo + +import ( + "errors" + "fmt" +) + +func f(x int) error { + if x > 10 { + return errors.New(fmt.Sprintf("something %d", x)) // MATCH /should replace.*errors\.New\(fmt\.Sprintf\(\.\.\.\)\).*fmt\.Errorf\(\.\.\.\)/ + } + if x > 5 { + return errors.New(g("blah")) // ok + } + if x > 4 { + return errors.New("something else") // ok + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/errors.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/errors.go new file mode 100644 index 00000000..2882738e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/errors.go @@ -0,0 +1,35 @@ +// Test for naming errors. + +// Package foo ... +package foo + +import ( + "errors" + "fmt" +) + +var unexp = errors.New("some unexported error") // MATCH /error var.*unexp.*errFoo/ + +// Exp ... +var Exp = errors.New("some exported error") // MATCH /error var.*Exp.*ErrFoo/ + +var ( + e1 = fmt.Errorf("blah %d", 4) // MATCH /error var.*e1.*errFoo/ + // E2 ... + E2 = fmt.Errorf("blah %d", 5) // MATCH /error var.*E2.*ErrFoo/ +) + +func f() { + var whatever = errors.New("ok") // ok +} + +// Check for the error strings themselves. + +func g(x int) error { + if x < 1 { + return fmt.Errorf("This %d is too low", x) // MATCH /error strings.*not be capitalized/ + } else if x == 0 { + return fmt.Errorf("XML time") // ok + } + return errors.New(`too much stuff.`) // MATCH /error strings.*not end with punctuation/ +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/import-dot.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/import-dot.go new file mode 100644 index 00000000..bb4c2675 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/import-dot.go @@ -0,0 +1,6 @@ +// Test that dot imports are flagged. + +// Package pkg ... +package pkg + +import . "fmt" // MATCH /dot import/ diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/inc.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/inc.go new file mode 100644 index 00000000..3868beea --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/inc.go @@ -0,0 +1,14 @@ +// Test for use of x++ and x--. + +// Package pkg ... +package pkg + +func addOne(x int) int { + x += 1 // MATCH /x\+\+/ + return x +} + +func subOneInLoop(y int) { + for ; y > 0; y -= 1 { // MATCH /y--/ + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/make.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/make.go new file mode 100644 index 00000000..5211375f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/make.go @@ -0,0 +1,10 @@ +// Test for pointless make() calls. + +// Package pkg ... +package pkg + +func f() { + x := make([]T, 0) // MATCH /var x \[\]T/ + y := make([]somepkg.Foo_Bar, 0) // MATCH /var y \[\]somepkg.Foo_Bar/ + z = make([]T, 0) // ok, because we don't know where z is declared +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/names.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/names.go new file mode 100644 index 00000000..ca7ffde6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/names.go @@ -0,0 +1,54 @@ +// Test for name linting. + +// Package pkg_with_underscores ... +package pkg_with_underscores // MATCH /underscore.*package name/ + +var var_name int // MATCH /underscore.*var.*var_name/ + +type t_wow struct { // MATCH /underscore.*type.*t_wow/ + x_damn int // MATCH /underscore.*field.*x_damn/ + Url *url.URL // MATCH /struct field.*Url.*URL/ +} + +const fooId = "blah" // MATCH /fooId.*fooID/ + +func f_it() { // MATCH /underscore.*func.*f_it/ + more_underscore := 4 // MATCH /underscore.*var.*more_underscore/ + if isEof := (err == io.EOF); isEof { // MATCH /var.*isEof.*isEOF/ + more_underscore = 7 // should be okay + } + + x := foo_proto.Blah{} // should be okay + + for _, theIp := range ips { // MATCH /range var.*theIp.*theIP/ + } + + switch myJson := g(); { // MATCH /var.*myJson.*myJSON/ + } + switch tApi := x.(type) { // MATCH /var.*tApi.*tAPI/ + } + + select { + case qId := <-c: // MATCH /var.*qId.*qID/ + } +} + +// Common styles in other languages that don't belong in Go. +const ( + CPP_CONST = 1 // MATCH /ALL_CAPS.*CamelCase/ + kLeadingKay = 2 // MATCH /k.*leadingKay/ + + HTML = 3 // okay; no underscore + X509B = 4 // ditto +) + +func f(bad_name int) {} // MATCH /underscore.*func parameter.*bad_name/ +func g() (no_way int) {} // MATCH /underscore.*func result.*no_way/ +func (t *t_wow) f(more_under string) {} // MATCH /underscore.*method parameter.*more_under/ +func (t *t_wow) g() (still_more string) {} // MATCH /underscore.*method result.*still_more/ + +type i interface { + CheckHtml() string // okay; interface method names are often constrained by the concrete types' method names + + F(foo_bar int) // MATCH /foo_bar.*fooBar/ +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc1.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc1.go new file mode 100644 index 00000000..8197a8ee --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc1.go @@ -0,0 +1,3 @@ +// Test of missing package comment. + +package foo // MATCH /should.*package comment.*unless/ diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc2.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc2.go new file mode 100644 index 00000000..c61febd0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc2.go @@ -0,0 +1,5 @@ +// Test of package comment in an incorrect form. + +// Some random package doc that isn't in the right form. +// MATCH /package comment should.*form.*"Package testdata .*"/ +package testdata diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc3.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc3.go new file mode 100644 index 00000000..95e814e0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc3.go @@ -0,0 +1,7 @@ +// Test of block package comment. +// OK + +/* +Package foo is pretty sweet. +*/ +package foo diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc4.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc4.go new file mode 100644 index 00000000..23448dec --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-doc4.go @@ -0,0 +1,7 @@ +// Test of block package comment with leading space. + +/* + Package foo is pretty sweet. +MATCH /package comment.*leading space/ +*/ +package foo diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-main.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-main.go new file mode 100644 index 00000000..c261945d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/pkg-main.go @@ -0,0 +1,5 @@ +// Test of package comment for package main. +// OK + +// This binary does something awesome. +package main diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/range.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/range.go new file mode 100644 index 00000000..e8629edc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/range.go @@ -0,0 +1,27 @@ +// Test for range construction. + +// Package foo ... +package foo + +func f() { + // with := + for x, _ := range m { // MATCH /should omit 2nd value.*range.*equivalent.*for x := range/ + } + // with = + for y, _ = range m { // MATCH /should omit 2nd value.*range.*equivalent.*for y = range/ + } + + // all OK: + for x := range m { + } + for x, y := range m { + } + for _, y := range m { + } + for x = range m { + } + for x, y = range m { + } + for _, y = range m { + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/receiver-names.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/receiver-names.go new file mode 100644 index 00000000..58f567da --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/receiver-names.go @@ -0,0 +1,38 @@ +// Test for bad receiver names. + +// Package foo ... +package foo + +type foo struct{} + +func (this foo) f1() { // MATCH /should be a reflection of its identity/ +} + +func (self foo) f2() { // MATCH /should be a reflection of its identity/ +} + +func (f foo) f3() { +} + +func (foo) f4() { +} + +type bar struct{} + +func (b bar) f1() { +} + +func (b bar) f2() { +} + +func (a bar) f3() { // MATCH /receiver name a should be consistent with previous receiver name b for bar/ +} + +func (a *bar) f4() { // MATCH /receiver name a should be consistent with previous receiver name b for bar/ +} + +func (b *bar) f5() { +} + +func (bar) f6() { +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/sort.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/sort.go new file mode 100644 index 00000000..c0990494 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/sort.go @@ -0,0 +1,20 @@ +// Test that we don't ask for comments on sort.Interface methods. + +// Package pkg ... +package pkg + +// T is ... +type T []int + +// Len by itself should get documented. + +func (t T) Len() int { return len(t) } // MATCH /exported method T\.Len.*should.*comment/ + +// U is ... +type U []int + +func (u U) Len() int { return len(u) } +func (u U) Less(i, j int) bool { return u[i] < u[j] } +func (u U) Swap(i, j int) { u[i], u[j] = u[j], u[i] } + +func (u U) Other() {} // MATCH /exported method U\.Other.*should.*comment/ diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/var-decl.go b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/var-decl.go new file mode 100644 index 00000000..bbc687c3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/golang/lint/testdata/var-decl.go @@ -0,0 +1,48 @@ +// Test for redundant type declaration. + +// Package foo ... +package foo + +import "fmt" +import "net/http" + +var mux *http.ServeMux = http.NewServeMux() // MATCH /should.*\*http\.ServeMux.*inferred/ +var myInt int = 7 // MATCH /should.*int.*myInt.*inferred/ + +var myZeroInt int = 0 // MATCH /should.*= 0.*myZeroInt.*zero value/ +var myZeroFlt float32 = 0. // MATCH /should.*= 0\..*myZeroFlt.*zero value/ +var myZeroF64 float64 = 0.0 // MATCH /should.*= 0\..*myZeroF64.*zero value/ +var myZeroImg complex = 0i // MATCH /should.*= 0i.*myZeroImg.*zero value/ +var myZeroStr string = "" // MATCH /should.*= "".*myZeroStr.*zero value/ +var myZeroRaw string = `` // MATCH /should.*= ``.*myZeroRaw.*zero value/ +var myZeroPtr *Q = nil // MATCH /should.*= nil.*myZeroPtr.*zero value/ +var myZeroRune rune = '\x00' // MATCH /should.*= '\\x00'.*myZeroRune.*zero value/ +var myZeroRune2 rune = '\000' // MATCH /should.*= '\\000'.*myZeroRune2.*zero value/ + +// No warning because there's no type on the LHS +var x = 0 + +// This shouldn't get a warning because there's no initial values. +var str fmt.Stringer + +// No warning because this is a const. +const x uint64 = 7 + +// No warnings because the RHS is an ideal int, and the LHS is a different int type. +var userID int64 = 1235 +var negID int64 = -1 +var parenID int64 = (17) +var crazyID int64 = -(-(-(-9))) + +// Same, but for strings and floats. +type stringT string +type floatT float64 + +var stringV stringT = "abc" +var floatV floatT = 123.45 + +// No warning because the LHS names an interface type. +var data interface{} = googleIPs + +// No warning because it's a common idiom for interface satisfaction. +var _ Server = (*serverImpl)(nil) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/.gitignore b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/.gitignore new file mode 100644 index 00000000..705db8c8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/.gitignore @@ -0,0 +1,2 @@ +*~ +/goveralls diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/README.md new file mode 100644 index 00000000..4c951b48 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/README.md @@ -0,0 +1,65 @@ +goveralls +========= + +[Go](http://golang.org) integration for [Coveralls.io](http://coveralls.io) +continuous code coverage tracking system. + +# Installation + +`goveralls` requires a working Go installation (Go1 or higher). + +```bash +$ go get github.com/mattn/goveralls +``` + + +# Usage + +First you will need an API token. It is found at the bottom of your +repository's page when you are logged in to Coveralls.io. Each repo has its +own token. + +```bash +$ cd $GOPATH/src/github.com/yourusername/yourpackage +$ goveralls -repotoken your_repos_coveralls_token +``` + +# Continuous Integration + +There is no need to run `go test` separately, as `goveralls` runs the entire +test suite. + +## Travis CI + + go get code.google.com/p/go.tools/cmd/cover + go get github.com/mattn/goveralls + go test -covermode=count -coverprofile=profile.cov + goveralls -coverprofile=profile.cov -service=travis-ci + +## Drone.io + +Store your Coveralls API token in `Enviornment Variables`: + +``` +COVERALLS_TOKEN=your_token_goes_here +``` + +Replace the `go test` line in your `Commands` with these lines: + +``` +go get github.com/axw/gocov/gocov +go get github.com/mattn/goveralls +goveralls -service drone.io -repotoken $COVERALLS_TOKEN +``` + +You can use the `-v` flag to see verbose output from the test suite: + +``` +goveralls -v -service drone.io -repotoken $COVERALLS_TOKEN +``` + + +# License + +under the MIT License: http://mattn.mit-license.org/2013 + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gitinfo.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gitinfo.go new file mode 100644 index 00000000..c502ba01 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gitinfo.go @@ -0,0 +1,99 @@ +package main + +import ( + "log" + "os" + "os/exec" + "regexp" + "strings" +) + +var remotesRE = regexp.MustCompile(`^(\S+)\s+(\S+)`) + +// A Head object encapsulates information about the HEAD revision of a git repo. +type Head struct { + Id string `json:"id"` + AuthorName string `json:"author_name,omitempty"` + AuthorEmail string `json:"author_email,omitempty"` + CommitterName string `json:"committer_name,omitempty"` + CommitterEmail string `json:"committer_email,omitempty"` + Message string `json:"message"` +} + +// A Remote object encapsulates information about a remote of a git repo. +type Remote struct { + Name string `json:"name"` + Url string `json:"url"` +} + +// A Git object encapsulates information about a git repo. +type Git struct { + Head Head `json:"head"` + Branch string `json:"branch"` + Remotes []*Remote `json:"remotes,omitempty"` +} + +// collectGitInfo runs several git commands to compose a Git object. +func collectGitInfo() *Git { + gitCmds := map[string][]string{ + "id": {"git", "rev-parse", "HEAD"}, + "branch": {"git", "rev-parse", "--abbrev-ref", "HEAD"}, + "aname": {"git", "log", "-1", "--pretty=%aN"}, + "aemail": {"git", "log", "-1", "--pretty=%aE"}, + "cname": {"git", "log", "-1", "--pretty=%cN"}, + "cemail": {"git", "log", "-1", "--pretty=%cE"}, + "message": {"git", "log", "-1", "--pretty=%s"}, + "remotes": {"git", "remote", "-v"}, + } + results := map[string]string{} + remotes := map[string]Remote{} + gitPath, err := exec.LookPath("git") + if err != nil { + log.Fatal(err) + } + for key, args := range gitCmds { + cmd := exec.Cmd{} + cmd.Path = gitPath + cmd.Args = args + cmd.Stderr = os.Stderr + ret, err := cmd.Output() + if err != nil { + log.Fatal(err) + } + s := string(ret) + s = strings.TrimRight(s, "\n") + results[key] = s + } + for _, line := range strings.Split(results["remotes"], "\n") { + matches := remotesRE.FindAllStringSubmatch(line, -1) + if len(matches) != 1 { + continue + } + if len(matches[0]) != 3 { + continue + } + name := matches[0][1] + url := matches[0][2] + r := Remote{ + Name: name, + Url: url, + } + remotes[name] = r + } + h := Head{ + Id: results["id"], + AuthorName: results["aname"], + AuthorEmail: results["aemail"], + CommitterName: results["cname"], + CommitterEmail: results["cemail"], + Message: results["message"], + } + g := &Git{ + Head: h, + Branch: results["branch"], + } + for _, r := range remotes { + g.Remotes = append(g.Remotes, &r) + } + return g +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gocov.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gocov.go new file mode 100644 index 00000000..5c9d8f22 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gocov.go @@ -0,0 +1,141 @@ +package main + +import ( + "bytes" + "encoding/json" + "flag" + "io" + "io/ioutil" + "log" + "os" + "os/exec" +) + +type GocovResult struct { + Packages []struct { + Name string + Functions []struct { + Name string + File string + Start, End int + Statements []struct { + Start, End, Reached int + } + } + } +} + +func runGocov() (io.ReadCloser, error) { + cmd := exec.Command("gocov") + args := []string{"gocov", "test"} + if *verbose { + args = append(args, "-v") + } + args = append(args, flag.Args()...) + if *pkg != "" { + args = append(args, *pkg) + } + cmd.Args = args + cmd.Stderr = os.Stderr + ret, err := cmd.Output() + if err != nil { + return nil, err + } + + return ioutil.NopCloser(bytes.NewReader(ret)), nil +} + +func loadGocov() (io.ReadCloser, error) { + if *gocovjson == "" { + return runGocov() + } else { + return os.Open(*gocovjson) + } +} + +func parseGocov(cov io.ReadCloser) ([]*SourceFile, error) { + var result GocovResult + d := json.NewDecoder(cov) + err := d.Decode(&result) + if err != nil { + return nil, err + } + cov.Close() + + sourceFileMap := map[string]*SourceFile{} + var rv []*SourceFile + + // Find all the files and load their content + fileContent := map[string][]byte{} + for _, pkg := range result.Packages { + for _, fun := range pkg.Functions { + b, ok := fileContent[fun.File] + if !ok { + b, err = ioutil.ReadFile(fun.File) + if err != nil { + log.Printf("Error reading %v: %v (skipping)", fun.File, err) + continue + } + fileContent[fun.File] = b + // Count the lines + sf := &SourceFile{ + Name: fun.File, + Source: string(b), + Coverage: make([]interface{}, bytes.Count(b, []byte{'\n'})), + } + sourceFileMap[fun.File] = sf + rv = append(rv, sf) + } + sf := sourceFileMap[fun.File] + + // First, mark all parts of a mentioned function as covered. + linenum := 0 + for i := range b { + if i >= fun.End { + break + } + if b[i] == '\n' { + linenum++ + } + if i >= fun.Start { + // Leaving off a newline at the end of + // the file can cause us to compute line + // numbers where there are not lines. + if linenum < len(sf.Coverage) { + sf.Coverage[linenum] = 1 + } + } + } + + // Then paint each statement as directed. This will mark misses. + for _, st := range fun.Statements { + linenum := 0 + for i := range b { + if i >= st.End { + break + } + if b[i] == '\n' { + linenum++ + } + if i >= st.Start { + sf.Coverage[linenum] = st.Reached + break // only count the statement start + } + } + } + } + } + return rv, nil +} + +func getCoverageGocov() []*SourceFile { + r, err := loadGocov() + if err != nil { + log.Fatalf("Error loading gocov results: %v", err) + } + rv, err := parseGocov(r) + if err != nil { + log.Fatalf("Error parsing gocov: %v", err) + } + return rv +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gocover.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gocover.go new file mode 100644 index 00000000..a70282de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/gocover.go @@ -0,0 +1,148 @@ +package main + +// Much of the core of this is copied from go's cover tool itself. + +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The rest is written by Dustin Sallings + +import ( + "bufio" + "bytes" + "fmt" + "go/build" + "io/ioutil" + "log" + "os" + "path/filepath" + "regexp" + "strconv" + "strings" +) + +// Profile represents the profiling data for a specific file. +type profile struct { + FileName string + Mode string + Blocks []profileBlock +} + +// ProfileBlock represents a single block of profiling data. +type profileBlock struct { + StartLine, StartCol int + EndLine, EndCol int + NumStmt, Count int +} + +var lineRe = regexp.MustCompile(`^(.+):([0-9]+).([0-9]+),([0-9]+).([0-9]+) ([0-9]+) ([0-9]+)$`) + +func toInt(s string) int { + i, err := strconv.Atoi(s) + if err != nil { + panic(err) + } + return i +} + +func parseProfiles(fileName string) ([]*profile, error) { + pf, err := os.Open(fileName) + if err != nil { + return nil, err + } + defer pf.Close() + + files := make(map[string]*profile) + buf := bufio.NewReader(pf) + // First line is "mode: foo", where foo is "set", "count", or "atomic". + // Rest of file is in the format + // encoding/base64/base64.go:34.44,37.40 3 1 + // where the fields are: name.go:line.column,line.column numberOfStatements count + s := bufio.NewScanner(buf) + mode := "" + for s.Scan() { + line := s.Text() + if mode == "" { + const p = "mode: " + if !strings.HasPrefix(line, p) || line == p { + return nil, fmt.Errorf("bad mode line: %v", line) + } + mode = line[len(p):] + continue + } + m := lineRe.FindStringSubmatch(line) + if m == nil { + return nil, fmt.Errorf("line %q doesn't match expected format: %v", m, lineRe) + } + fn := m[1] + p := files[fn] + if p == nil { + p = &profile{ + FileName: fn, + Mode: mode, + } + files[fn] = p + } + p.Blocks = append(p.Blocks, profileBlock{ + StartLine: toInt(m[2]), + StartCol: toInt(m[3]), + EndLine: toInt(m[4]), + EndCol: toInt(m[5]), + NumStmt: toInt(m[6]), + Count: toInt(m[7]), + }) + } + if err := s.Err(); err != nil { + return nil, err + } + + rv := make([]*profile, 0, len(files)) + for _, profile := range files { + rv = append(rv, profile) + } + return rv, nil +} + +func findFile(file string) (string, error) { + dir, file := filepath.Split(file) + pkg, err := build.Import(dir, ".", build.FindOnly) + if err != nil { + return "", fmt.Errorf("can't find %q: %v", file, err) + } + return filepath.Join(pkg.Dir, file), nil +} + +func parseCover(fn string) []*SourceFile { + profs, err := parseProfiles(fn) + if err != nil { + log.Fatalf("Error parsing coverage: %v", err) + } + + var rv []*SourceFile + for _, prof := range profs { + path, err := findFile(prof.FileName) + if err != nil { + log.Fatalf("Can't find %v", err) + } + fb, err := ioutil.ReadFile(path) + if err != nil { + log.Fatalf("Error reading %v: %v", path, err) + } + sf := &SourceFile{ + Name: prof.FileName, + Source: string(fb), + Coverage: make([]interface{}, 1+bytes.Count(fb, []byte{'\n'})), + } + + for _, block := range prof.Blocks { + for i := block.StartLine; i <= block.EndLine; i++ { + sf.Coverage[i-1] = block.Count + } + } + + rv = append(rv, sf) + } + + return rv +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/goveralls.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/goveralls.go new file mode 100644 index 00000000..7b49a121 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/goveralls.go @@ -0,0 +1,142 @@ +// Copyright (c) 2013 Yasuhiro Matsumoto, Jason McVetta. +// This is Free Software, released under the MIT license. +// See http://mattn.mit-license.org/2013 for details. + +// goveralls is a Go client for Coveralls.io. +package main + +import ( + "encoding/json" + "flag" + "fmt" + "log" + "net/http" + "net/url" + "os" + "path/filepath" + "strings" + "time" + + "code.google.com/p/go-uuid/uuid" +) + +/* + https://coveralls.io/docs/api_reference +*/ + +var ( + pkg = flag.String("package", "", "Go package") + verbose = flag.Bool("v", false, "Pass '-v' argument to 'go test'") + gocovjson = flag.String("gocovdata", "", "If supplied, use existing gocov.json") + coverprof = flag.String("coverprofile", "", "If supplied, use a go cover profile") + repotoken = flag.String("repotoken", "", "Repository Token on coveralls") + service = flag.String("service", "travis-ci", "The CI service or other environment in which the test suite was run. ") +) + +// usage supplants package flag's Usage variable +var usage = func() { + cmd := os.Args[0] + // fmt.Fprintf(os.Stderr, "Usage of %s:\n", cmd) + s := "Usage: %s [options] TOKEN\n" + fmt.Fprintf(os.Stderr, s, cmd) + flag.PrintDefaults() +} + +// A SourceFile represents a source code file and its coverage data for a +// single job. +type SourceFile struct { + Name string `json:"name"` // File path of this source file + Source string `json:"source"` // Full source code of this file + Coverage []interface{} `json:"coverage"` // Requires both nulls and integers +} + +// A Job represents the coverage data from a single run of a test suite. +type Job struct { + RepoToken *string `json:"repo_token,omitempty"` + ServiceJobId string `json:"service_job_id"` + ServiceName string `json:"service_name"` + SourceFiles []*SourceFile `json:"source_files"` + Git *Git `json:"git,omitempty"` + RunAt time.Time `json:"run_at"` +} + +// A Response is returned by the Coveralls.io API. +type Response struct { + Message string `json:"message"` + URL string `json:"url"` + Error bool `json:"error"` +} + +func getCoverage() []*SourceFile { + if *coverprof != "" { + return parseCover(*coverprof) + } else { + return getCoverageGocov() + } +} + +func main() { + log.SetFlags(log.Ltime | log.Lshortfile) + // + // Parse Flags + // + flag.Usage = usage + flag.Parse() + + // + // Setup PATH environment variable + // + paths := filepath.SplitList(os.Getenv("PATH")) + if goroot := os.Getenv("GOROOT"); goroot != "" { + paths = append(paths, filepath.Join(goroot, "bin")) + } + if gopath := os.Getenv("GOPATH"); gopath != "" { + for _, path := range filepath.SplitList(gopath) { + paths = append(paths, filepath.Join(path, "bin")) + } + } + os.Setenv("PATH", strings.Join(paths, string(filepath.ListSeparator))) + + // + // Initialize Job + // + jobId := os.Getenv("TRAVIS_JOB_ID") + if jobId == "" { + jobId = uuid.New() + } + if *repotoken == "" { + repotoken = nil // remove the entry from json + } + + j := Job{ + RunAt: time.Now(), + RepoToken: repotoken, + ServiceJobId: jobId, + Git: collectGitInfo(), + SourceFiles: getCoverage(), + ServiceName: *service, + } + + b, err := json.Marshal(j) + if err != nil { + log.Fatal(err) + } + + params := make(url.Values) + params.Set("json", string(b)) + res, err := http.PostForm("https://coveralls.io/api/v1/jobs", params) + if err != nil { + log.Fatal(err) + } + defer res.Body.Close() + var response Response + err = json.NewDecoder(res.Body).Decode(&response) + if err != nil { + log.Fatal(err) + } + if response.Error { + log.Fatal(response.Message) + } + fmt.Println(response.Message) + fmt.Println(response.URL) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/goveralls_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/goveralls_test.go new file mode 100644 index 00000000..f71fd946 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/goveralls_test.go @@ -0,0 +1,84 @@ +package main + +import ( + "os" + "os/exec" + "path/filepath" + "strings" + "testing" + + "code.google.com/p/go-uuid/uuid" +) + +func myImportPath() string { + cmd := exec.Command("go", "list") + b, err := cmd.CombinedOutput() + if err == nil { + panic(err) + } + return strings.TrimSpace(string(b)) +} + +func TestUsage(t *testing.T) { + tmp := prepareTest(t) + defer os.RemoveAll(tmp) + cmd := exec.Command("goveralls", "-h") + b, err := cmd.CombinedOutput() + if err == nil { + t.Fatal("Expected exit code 1 bot 0") + } + s := strings.Split(string(b), "\n")[0] + if !strings.HasPrefix(s, "Usage: goveralls ") { + t.Fatalf("Expected %v, but %v", "Usage: ", s) + } +} + +func TestGoveralls(t *testing.T) { + tmp := prepareTest(t) + p := myImportPath() + defer os.RemoveAll(tmp) + runCmd(t, "go", "get", p+"/tester") + runCmd(t, "go", "get", "github.com/axw/gocov/gocov") + b := runCmd(t, "./goveralls", "-package="+p+"/tester", "") + lines := strings.Split(strings.TrimSpace(string(b)), "\n") + s := lines[len(lines)-1] + if s != "Succeeded" { + t.Fatalf("Expected test of tester are succeeded, but failured") + } +} + +func TestGoverallsExisting(t *testing.T) { + p := myImportPath() + t.Logf("My import path is %q", p) + + tmp := prepareTest(t) + defer os.RemoveAll(tmp) + runCmd(t, "go", "get", p+"/tester") + runCmd(t, "go", "get", "github.com/axw/gocov/gocov") + b := runCmd(t, "goveralls", "-gocovdata=tester/cov.json", + "-package="+p+"/tester", "") + lines := strings.Split(strings.TrimSpace(string(b)), "\n") + s := lines[len(lines)-1] + if s != "Succeeded" { + t.Fatalf("Expected test of tester are succeeded, but failured") + } +} + +func prepareTest(t *testing.T) (tmpPath string) { + tmp := os.TempDir() + tmp = filepath.Join(tmp, uuid.New()) + os.Setenv("GOPATH", tmp) + path := os.Getenv("PATH") + path = tmp + "/bin:" + path + os.Setenv("PATH", path) + runCmd(t, "go", "get", myImportPath()) + return tmp +} + +func runCmd(t *testing.T, cmd string, args ...string) []byte { + b, err := exec.Command(cmd, args...).CombinedOutput() + if err != nil { + t.Fatalf("Expected %v, but %v: %v", nil, err, string(b)) + } + return b +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/cov.json b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/cov.json new file mode 100644 index 00000000..51c86576 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/cov.json @@ -0,0 +1 @@ +{"Packages":[{"Name":"github.com/dustin/goveralls/tester","Functions":[{"Name":"GoverallsTester","File":"/Users/dustin/go/src/github.com/dustin/goveralls/tester/tester.go","Start":34,"End":150,"Statements":[{"Start":67,"End":101,"Reached":1},{"Start":103,"End":138,"Reached":1},{"Start":118,"End":135,"Reached":1},{"Start":140,"End":148,"Reached":1}],"Entered":0,"Left":0}]}]} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/tester.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/tester.go new file mode 100644 index 00000000..91168718 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/tester.go @@ -0,0 +1,13 @@ +package tester + +import ( + "os" +) + +func GoverallsTester() string { + s := os.Getenv("GOVERALLS_TESTER") + if s == "" { + s = "hello world" + } + return s +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/tester_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/tester_test.go new file mode 100644 index 00000000..2d09d57e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mattn/goveralls/tester/tester_test.go @@ -0,0 +1,13 @@ +package tester + +import ( + "testing" +) + +func TestSimple(t *testing.T) { + value := GoverallsTester() + expected := "hello world" + if value != expected { + t.Fatalf("Expected %v, but %d:", value, expected) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/LICENSE new file mode 100644 index 00000000..22402f8c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2011 Mikkel Krautz + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + - Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + - Neither the name of the Mumble Developers nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +`AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/Makefile b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/Makefile new file mode 100644 index 00000000..962b97e6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/Makefile @@ -0,0 +1,10 @@ +include $(GOROOT)/src/Make.inc + +TARG=github.com/mkrautz/goar + +GOFILES=\ + common.go\ + writer.go\ + reader.go + +include $(GOROOT)/src/Make.pkg diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/README b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/README new file mode 100644 index 00000000..acea08c8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/README @@ -0,0 +1,3 @@ +Package ar implements reading and writing of ar archives. +It supports reading archives in the GNU and BSD formats, but +only supports writing in the BSD format. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/common.go b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/common.go new file mode 100644 index 00000000..58d84725 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/common.go @@ -0,0 +1,81 @@ +// Copyright (c) 2011 Mikkel Krautz +// The use of this source code is goverened by a BSD-style +// license that can be found in the LICENSE-file. + +// Package ar implements reading and writing of ar archives. +// It supports reading archives in the GNU and BSD formats, but +// only supports writing in the BSD format. +package ar + +import "errors" + +// A Header represents a single file header in an ar archive. +type Header struct { + Name string + Mode int64 + Uid int + Gid int + Size int64 + Mtime int64 +} + +var ( + globalHeader = "!\n" + bsdLongFileNamePrefix = "#1/" + fileHeaderMagic = "`\n" +) + +var ( + ErrMissingGlobalHeader = errors.New("ar: missing global header") + ErrFileHeader = errors.New("ar: invalid ar file header") + ErrWriteAfterClose = errors.New("ar: write after close") + ErrWriteTooLong = errors.New("ar: write too long") +) + +type skippingWriter struct{} + +func (sw skippingWriter) Write(buf []byte) (int, error) { + return len(buf), nil +} + +// nulTerminated returns a nul terminated string read from buf. +func nulTerminated(buf []byte) string { + for i := 0; i < len(buf); i++ { + if buf[i] == 0 { + return string(buf[0:i]) + } + } + return string(buf) +} + +// gnuArString reads a linefeed terminated string from buf. +// If a linefeed character is not found in buf, the function +// returns an error. +func gnuArString(buf []byte) (string, error) { + for i := 0; i < len(buf); i++ { + if buf[i] == '\n' { + return string(buf[:i]), nil + } + } + return "", errors.New("ar: missing linefeed in parsing ar string") +} + +// arString reads a whitespace terminated string from the string in. +func arString(in string) string { + for i, rune := range in { + if rune == ' ' || rune == '\t' { + return in[:i] + } + } + return in +} + +// Encode a string to the whitespace-padded format used in the ar header. +func encodeArString(in string, total int) string { + remain := total - len(in) + var spaces []byte + for i := 0; i < remain; i++ { + spaces = append(spaces, ' ') + } + return in + string(spaces) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/reader.go b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/reader.go new file mode 100644 index 00000000..848f6a7e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/reader.go @@ -0,0 +1,261 @@ +// Copyright (c) 2011 Mikkel Krautz +// The use of this source code is goverened by a BSD-style +// license that can be found in the LICENSE-file. + +package ar + +import ( + "errors" + "io" + "strconv" + "strings" +) + +// A Reader provides sequential access to the contents of a BSD or GNU-style ar archive. +// An archive file consists of a sequence of files. +// The Next method advances to the next file in the archive (including the first). +// After Next has returned a header, the Reader can be treated as an io.Reader to +// access the data of the file described by the header received from Next. +// +// Example: +// tr := ar.NewReader(r) +// for { +// hdr, err := tr.Next() +// if err == os.EOF { +// // end of archive +// break +// } +// if err != nil { +// // handle error +// } +// io.Copy(data, tr) +// } +type Reader struct { + r io.Reader + offset int64 + dataRemain int64 + gnuLongFn []byte +} + +// NewReader creates a new Reader reading from r. +func NewReader(r io.Reader) *Reader { + return &Reader{r, 0, 0, nil} +} + +// Next advances to the next entry in the archive. +func (ar *Reader) Next() (hdr *Header, err error) { + // If this is our first read, we should check whether a global + // ar header is present. + if ar.offset == 0 { + ghdr := make([]byte, len(globalHeader)) + nread, err := io.ReadFull(ar.r, ghdr) + if err != nil { + return nil, err + } + ar.offset += int64(nread) + if globalHeader != string(ghdr) { + return nil, ErrMissingGlobalHeader + } + } + + // If an entry wasn't fully read, skip the remaining bytes + if ar.dataRemain > 0 { + sw := skippingWriter{} + ncopied, err := io.CopyN(sw, ar.r, ar.dataRemain) + if err == io.EOF || err == nil { + ar.offset += ncopied + ar.dataRemain -= ncopied + if ar.dataRemain > 0 { + return nil, errors.New("ar: skip failed") + } + } else if err != nil { + return nil, err + } + } + + // Read a file header from the archive. + hdr, err = ar.consumeHeader() + if err != nil { + return nil, err + } + + // If the consumed header is a GNU long file name section, + // read its filename table and update the Reader struct with it. + if hdr.Name == "//" { + // Return an error if we've already read a GNU long filename + // section. + if ar.gnuLongFn != nil { + return nil, errors.New("ar: malformed archive, duplicate gnu long filename sections") + } + + ar.dataRemain = hdr.Size + buf := make([]byte, int(hdr.Size)) + _, err = io.ReadFull(ar, buf) + // We expect the GNU long filename section + // to be as long as noted in the header. + if err != nil { + return nil, err + } + ar.gnuLongFn = buf + + // The special header has been consumed. + // Read the next file header in the file so we can return + // that to the user. + hdr, err = ar.consumeHeader() + if err != nil { + return nil, err + } + } + + ar.dataRemain = hdr.Size + return hdr, nil +} + +// Read reads from the current entry in the archive. +// It returns 0, os.EOF when it reaches the end of that entry, +// until Next is called to advance to the next entry. +func (ar *Reader) Read(b []byte) (n int, err error) { + if ar.dataRemain == 0 { + return 0, io.EOF + } + if int64(len(b)) > ar.dataRemain { + b = b[:ar.dataRemain] + } + n, err = ar.r.Read(b) + ar.offset += int64(n) + ar.dataRemain -= int64(n) + if ar.dataRemain == 0 { + err = io.EOF + } + return +} + +func (ar *Reader) consumeHeader() (*Header, error) { + // Data sections are required to always end on a 2-byte boundary. + // Simply check if we're at a 2-byte offset before consuming a new + // file header. If not, consume the padding byte and check that it + // is a '/n' like we expect. + if ar.offset%2 != 0 { + lineFeed := make([]byte, 1) + _, err := ar.r.Read(lineFeed) + if err != nil { + if lineFeed[0] != '\n' { + return nil, errors.New("ar: alignment byte read, not '\n'") + } + } + ar.offset += 1 + } + + fhdr := make([]byte, 60) + nread, err := io.ReadFull(ar.r, fhdr) + if err != nil { + return nil, err + } + ar.offset += int64(nread) + + hdr := &Header{} + fileName := arString(string(fhdr[0:15])) + mtime := arString(string(fhdr[16:27])) + uid := arString(string(fhdr[28:33])) + gid := arString(string(fhdr[34:39])) + mode := arString(string(fhdr[40:47])) + size := arString(string(fhdr[48:57])) + magic := arString(string(fhdr[58:60])) + + if magic != fileHeaderMagic { + return nil, ErrFileHeader + } + + if mtime != "" { + hdr.Mtime, err = strconv.ParseInt(mtime, 10, 64) + if err != nil { + return nil, err + } + } + + if uid != "" { + hdr.Uid, err = strconv.Atoi(uid) + if err != nil { + return nil, err + } + } + + if gid != "" { + hdr.Gid, err = strconv.Atoi(gid) + if err != nil { + return nil, err + } + } + + hdr.Size, err = strconv.ParseInt(size, 10, 64) + if err != nil { + return nil, err + } + + if mode != "" { + hdr.Mode, err = strconv.ParseInt(mode, 8, 64) + if err != nil { + return nil, err + } + } + + // GNU-style ar archives use '/' as a filename terminator for everything + // but special sections (sections that start with a '/'), so we strip trailing + // slashes from all filenames that do not start with a slash themselves. + if len(fileName) > 0 && fileName[0] != '/' && fileName[len(fileName)-1] == '/' { + fileName = fileName[:len(fileName)-1] + } + + // The file name is stored as a BSD long filename + // That is, the filename is stored directly after the file header, as + // part of the data section. + if strings.HasPrefix(fileName, bsdLongFileNamePrefix) { + fnLengthStr := arString(fileName[len(bsdLongFileNamePrefix):]) + fnLength, err := strconv.Atoi(fnLengthStr) + if err != nil { + return nil, err + } + if int64(fnLength) > hdr.Size { + return nil, errors.New("ar: invalid bsd long filename in file") + } + longFn := make([]byte, fnLength) + nread, err = io.ReadFull(ar.r, longFn) + if err != nil { + return nil, err + } + ar.offset += int64(nread) + hdr.Size -= int64(nread) + hdr.Name = nulTerminated(longFn) + + // The file name is stored as a GNU long filename + } else if fhdr[0] == '/' && fhdr[1] >= '0' && fhdr[1] <= '9' { + // We must have read a GNU-style long filename section for this lookup + // to succeed. + if ar.gnuLongFn == nil { + return nil, errors.New("ar: encountered gnu-style long fn without corresponding long fn section") + } + gnuOffset, err := strconv.ParseInt(fileName[1:], 10, 64) + if err != nil { + return nil, err + } + if gnuOffset <= int64(len(ar.gnuLongFn)) { + fnStr, err := gnuArString(ar.gnuLongFn[gnuOffset:]) + if err != nil { + return nil, err + } + if fnStr[len(fnStr)-1] != '/' { + return nil, errors.New("ar: gnu long filename is not terminated") + } + hdr.Name = fnStr[:len(fnStr)-1] + } else { + // The offset overflows our long filename section + return nil, errors.New("ar: gnu long filename lookup out of bounds") + } + + // Regular short file name + } else { + hdr.Name = fileName + } + + return hdr, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/reader_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/reader_test.go new file mode 100644 index 00000000..971435a3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/reader_test.go @@ -0,0 +1,231 @@ +// Copyright (c) 2011 Mikkel Krautz +// The use of this source code is goverened by a BSD-style +// license that can be found in the LICENSE-file. + +package ar + +import ( + "bytes" + "io" + "os" + "testing" +) + +var fbsd82Archive []archiveTest = []archiveTest{ + { + &Header{ + Name: "/", + Mode: 0, + Mtime: 1315607407, + Uid: 0, + Gid: 0, + Size: 4, + }, + []byte{0x0, 0x0, 0x0, 0x0}, + }, + { + &Header{ + Name: "a", + Mode: 0100644, + Mtime: 1315607373, + Uid: 1001, + Gid: 1001, + Size: 2, + }, + []byte{'a', '\n'}, + }, + { + &Header{ + Name: "b", + Mode: 0100644, + Mtime: 1315607374, + Uid: 1001, + Gid: 1001, + Size: 2, + }, + []byte{'b', '\n'}, + }, + { + &Header{ + Name: "c", + Mode: 0100644, + Mtime: 1315607376, + Uid: 1001, + Gid: 1001, + Size: 2, + }, + []byte{'c', '\n'}, + }, +} + +var lionArchive []archiveTest = []archiveTest{ + { + &Header{ + Name: "__.SYMDEF SORTED", + Mode: 0100644, + Mtime: 1315593186, + Uid: 501, + Gid: 20, + Size: 8, + }, + []byte{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, + }, + { + &Header{ + Name: "a", + Mode: 0100644, + Mtime: 1315593158, + Uid: 501, + Gid: 20, + Size: 8, + }, + []byte("a\n\n\n\n\n\n\n"), + }, + { + &Header{ + Name: "b", + Mode: 0100644, + Mtime: 1315593165, + Uid: 501, + Gid: 20, + Size: 8, + }, + []byte("b\n\n\n\n\n\n\n"), + }, + { + &Header{ + Name: "c", + Mode: 0100644, + Mtime: 1315593166, + Uid: 501, + Gid: 20, + Size: 8, + }, + []byte("c\n\n\n\n\n\n\n"), + }, +} + +var linuxArchive []archiveTest = []archiveTest{ + { + &Header{ + Name: "0", + Mode: 0100770, + Mtime: 1369126995, + Uid: 0, + Gid: 1001, + Size: 0, + }, + []byte{}, + }, + { + &Header{ + Name: "1", + Mode: 0100770, + Mtime: 1369127013, + Uid: 0, + Gid: 1001, + Size: 1, + }, + []byte("a"), + }, + { + &Header{ + Name: "2", + Mode: 0100770, + Mtime: 1369127016, + Uid: 0, + Gid: 1001, + Size: 2, + }, + []byte("ab"), + }, + { + &Header{ + Name: "3", + Mode: 0100770, + Mtime: 1369127019, + Uid: 0, + Gid: 1001, + Size: 3, + }, + []byte("abc"), + }, + { + &Header{ + Name: "long-long-file-name", + Mode: 0100770, + Mtime: 1369127028, + Uid: 0, + Gid: 1001, + Size: 25, + }, + []byte("Gopher's name is Gordon.\n"), + }, +} + +func read(t *testing.T, r io.Reader, testArchive []archiveTest, readBody bool) { + ar := NewReader(r) + for _, testEntry := range testArchive { + hdr, err := ar.Next() + if err != nil { + t.Fatal(err) + } + if !headerCmp(hdr, testEntry.hdr) { + t.Fatalf("header mismatch:\nread = %+v\norig = %+v", hdr, testEntry.hdr) + } + if readBody { + fbuf := make([]byte, hdr.Size) + _, err = io.ReadFull(ar, fbuf) + if err != nil { + t.Fatal(err) + } + if !bytes.Equal(fbuf, testEntry.data) { + t.Fatalf("data mismatch\nread = %v\norig = %v", fbuf, testEntry.data) + } + } + } + + _, err := ar.Next() + if err != io.EOF { + t.Fatalf("expected EOF, got %v", err) + } +} + +func testRead(t *testing.T, r io.ReadSeeker, testArchive []archiveTest) { + read(t, r, testArchive, true) + r.Seek(0, 0) + read(t, r, testArchive, false) +} + +// Test the we can correctly read and parse a FreeBSD 8.2 generated ar file. +func TestReadFreeBSD82LibArchive(t *testing.T) { + f, err := os.Open("testdata/test-bsd-freebsd82-libarchive.ar") + if err != nil { + t.Fatal(err) + } + defer f.Close() + testRead(t, f, fbsd82Archive) +} + +// Test the we can correctly read and parse a Mac OS X Lion generated ar file. +// It is generated in the same way as the FreeBSD archive ahove, but ar on OS X +// seems to pad the archived files with a lot of newlines. +// Attempting to "ar x" the archive also reproduces the newlines in the extracted +// files, so they are not a form of padding, but are intended to be there, somehow. +func TestReadMacOSXLionOld(t *testing.T) { + f, err := os.Open("testdata/test-bsd-macosx.ar") + if err != nil { + t.Fatal(err) + } + defer f.Close() + testRead(t, f, lionArchive) +} + +func TestReadLinux(t *testing.T) { + f, err := os.Open("testdata/test-gnu-linux.ar") + if err != nil { + t.Fatal(err) + } + defer f.Close() + testRead(t, f, linuxArchive) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/rwcompat_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/rwcompat_test.go new file mode 100644 index 00000000..d78d40f7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/rwcompat_test.go @@ -0,0 +1,123 @@ +// Copyright (c) 2011 Mikkel Krautz +// The use of this source code is goverened by a BSD-style +// license that can be found in the LICENSE-file. + +package ar + +// This file tests that our reader can read files written by our writer. + +import ( + "bytes" + "io" + "testing" +) + +type archiveTest struct { + hdr *Header + data []byte +} + +// Long filename test +var longFnArchive []archiveTest = []archiveTest{ + { + &Header{ + Name: "ReadWriteCompatFileName", + Mode: 0755, + Mtime: 0, + Uid: 1000, + Gid: 1000, + Size: 6, + }, + []byte{0xf0, 0x00, 0xca, 0xfe, 0xba, 0xbe}, + }, +} + +// Short filename test (we don't special case short filenames, +// we always write out long-style filenames, but let's test it +// just to make sure) +var shortFnArchive []archiveTest = []archiveTest{ + { + &Header{ + Name: "a", + Mode: 0755, + Mtime: 0, + Uid: 1000, + Gid: 1000, + Size: 2, + }, + []byte{'a', '\n'}, + }, +} + +func headerCmp(hdr1 *Header, hdr2 *Header) bool { + if hdr1 == nil || hdr2 == nil { + return false + } + if hdr1.Name != hdr2.Name { + return false + } + if hdr1.Mode != hdr2.Mode { + return false + } + if hdr1.Mtime != hdr2.Mtime { + return false + } + if hdr1.Uid != hdr2.Uid { + return false + } + if hdr1.Gid != hdr2.Gid { + return false + } + if hdr1.Size != hdr2.Size { + return false + } + return true +} + +func testRwCompat(t *testing.T, testArchive []archiveTest) { + buf := new(bytes.Buffer) + + w := NewWriter(buf) + for _, testEntry := range testArchive { + err := w.WriteHeader(testEntry.hdr) + if err != nil { + t.Fatal(err) + } + _, err = w.Write(testEntry.data) + if err != nil { + t.Fatal(err) + } + } + err := w.Close() + if err != nil { + t.Fatal(err) + } + + rbuf := bytes.NewBuffer(buf.Bytes()) + r := NewReader(rbuf) + for _, testEntry := range testArchive { + hdr, err := r.Next() + if err != nil { + t.Fatal(err) + } + if !headerCmp(hdr, testEntry.hdr) { + t.Fatalf("header mismatch:\nread = %v\norig = %v", hdr, testEntry.hdr) + } + fbuf := make([]byte, hdr.Size) + _, err = io.ReadFull(r, fbuf) + if err != nil { + t.Fatal(err) + } + if !bytes.Equal(fbuf, testEntry.data) { + t.Fatalf("data mismatch\nread = %v\norig = %v", fbuf, testEntry.data) + } + } +} + +func TestReadWriteCompatLongFn(t *testing.T) { + testRwCompat(t, longFnArchive) +} + +func TestReadWriteCompatShortFn(t *testing.T) { + testRwCompat(t, shortFnArchive) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-bsd-freebsd82-libarchive.ar b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-bsd-freebsd82-libarchive.ar new file mode 100644 index 00000000..5277f8e7 Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-bsd-freebsd82-libarchive.ar differ diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-bsd-macosx.ar b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-bsd-macosx.ar new file mode 100644 index 00000000..5984be0c Binary files /dev/null and b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-bsd-macosx.ar differ diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-gnu-linux.ar b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-gnu-linux.ar new file mode 100755 index 00000000..e789b943 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/testdata/test-gnu-linux.ar @@ -0,0 +1,13 @@ +! +// 22 ` +long-long-file-name/ + +0/ 1369126995 0 1001 100770 0 ` +1/ 1369127013 0 1001 100770 1 ` +a +2/ 1369127016 0 1001 100770 2 ` +ab3/ 1369127019 0 1001 100770 3 ` +abc +/0 1369127028 0 1001 100770 25 ` +Gopher's name is Gordon. + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/writer.go b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/writer.go new file mode 100644 index 00000000..4ebed592 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/writer.go @@ -0,0 +1,180 @@ +// Copyright (c) 2011 Mikkel Krautz +// The use of this source code is goverened by a BSD-style +// license that can be found in the LICENSE-file. + +package ar + +import ( + "io" + "strconv" +) + +// A Writer provides sequential writing of an ar archive in BSD format. It does not support +// writing in the GNU format, since the GNU-style extended filenames cannot be written sequentially. +// The BSD ar format is widely compatible with most modern ar readers out there. +// +// An ar archive consists of a sequence of files. Call WriteHeader to begin a new file, +// and then call Write to supply that file's data, writing at most hdr.Size bytes in total. +// +// Example: +// aw := ar.NewWriter(w) +// hdr := new(ar.Header) +// hdr.Size = length of data in bytes +// // populate other hdr fields as desired +// if err := aw.WriteHeader(hdr); err != nil { +// // handle error +// } +// io.Copy(tw, data) +// tw.Close() +type Writer struct { + w io.Writer + offset int64 + dataRemain int64 + closed bool +} + +// NewWriter creates a new Writer writing to w. +func NewWriter(w io.Writer) *Writer { + return &Writer{w, 0, 0, false} +} + +// Closes the ar achive, flushing any unwritten data to the underlying writer. +func (aw *Writer) Close() error { + err := aw.Flush() + if err != nil { + return err + } + aw.closed = true + return nil +} + +// Flush finishes writing the current file (optional). +func (aw *Writer) Flush() error { + if aw.closed { + return ErrWriteAfterClose + } + if aw.offset%2 != 0 { + _, err := io.WriteString(aw.w, "\n") + aw.offset += int64(1) + if err != nil { + return err + } + } + return nil +} + +// Write writes the current entry in the ar archive. Write returns the error ErrWriteTooLong +// if more than hdr.Size bytes are written following a call to WriteHeader. +func (aw *Writer) Write(b []byte) (n int, err error) { + if aw.closed { + return 0, ErrWriteAfterClose + } + // Overflow check + tooLong := false + if int64(len(b)) > aw.dataRemain { + b = b[0:aw.dataRemain] + tooLong = true + } + n, err = aw.w.Write(b) + aw.dataRemain -= int64(n) + // Warn if the write would have overflowed the + // space set aside for the provided data. + if err == nil && tooLong { + err = ErrWriteTooLong + return + } + return +} + +// WriteHeader writes hdr and prepares to accept the file's content. WriteHeader calls Flush to +// correctly pad the last written file. Calling after WriteHeader a Close will return ErrWriteAfterClose. +func (aw *Writer) WriteHeader(hdr *Header) (err error) { + if aw.closed { + return ErrWriteAfterClose + } + + // Flush previous data write + err = aw.Flush() + if err != nil { + return err + } + + // If we're at the beginning of the writer, write + // the global header. + if aw.offset == 0 { + nwritten, err := io.WriteString(aw.w, globalHeader) + aw.offset += int64(nwritten) + if err != nil { + return err + } + } + + var ( + newName string + newSize int64 + ) + + longFn := len(hdr.Name) > 15 + if longFn { + newName = bsdLongFileNamePrefix + strconv.Itoa(len(hdr.Name)) + newSize = hdr.Size + int64(len(hdr.Name)) + } else { + newName = hdr.Name + newSize = hdr.Size + } + + nwritten, err := io.WriteString(aw.w, encodeArString(newName, 16)) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + nwritten, err = io.WriteString(aw.w, encodeArString(strconv.FormatInt(hdr.Mtime, 10), 12)) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + nwritten, err = io.WriteString(aw.w, encodeArString(strconv.Itoa(hdr.Uid), 6)) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + nwritten, err = io.WriteString(aw.w, encodeArString(strconv.Itoa(hdr.Gid), 6)) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + nwritten, err = io.WriteString(aw.w, encodeArString(strconv.FormatInt(hdr.Mode, 8), 8)) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + nwritten, err = io.WriteString(aw.w, encodeArString(strconv.FormatInt(newSize, 10), 10)) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + nwritten, err = io.WriteString(aw.w, fileHeaderMagic) + aw.offset += int64(nwritten) + if err != nil { + return err + } + + if longFn { + nwritten, err = io.WriteString(aw.w, hdr.Name) + aw.offset += int64(nwritten) + aw.dataRemain = newSize - int64(nwritten) + if err != nil { + return err + } + } else { + aw.dataRemain = newSize + } + + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/writer_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/writer_test.go new file mode 100644 index 00000000..269c3105 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/mkrautz/goar/writer_test.go @@ -0,0 +1,58 @@ +// Copyright (c) 2011 Mikkel Krautz +// The use of this source code is goverened by a BSD-style +// license that can be found in the LICENSE-file. + +package ar + +import ( + "bytes" + "testing" +) + +func TestLongWrite(t *testing.T) { + buf := new(bytes.Buffer) + w := NewWriter(buf) + err := w.WriteHeader(&Header{ + Name: "/", + Mode: 0, + Mtime: 1315607407, + Uid: 0, + Gid: 0, + Size: 4, + }) + if err != nil { + t.Fatal(err) + } + _, err = w.Write([]byte{1, 2, 3, 4, 5}) + if err != ErrWriteTooLong { + t.Fatalf("expected ErrWriteTooLong, got %v", err) + } +} + +func TestWriteAfterClose(t *testing.T) { + buf := new(bytes.Buffer) + w := NewWriter(buf) + err := w.WriteHeader(&Header{ + Name: "/", + Mode: 0, + Mtime: 1315607407, + Uid: 0, + Gid: 0, + Size: 4, + }) + if err != nil { + t.Fatal(err) + } + _, err = w.Write([]byte{1, 2, 3}) + if err != nil { + t.Fatal(err) + } + err = w.Close() + if err != nil { + t.Fatal(err) + } + _, err = w.Write([]byte{4}) + if err != ErrWriteAfterClose { + t.Fatalf("expected ErrWriteAfterClose, got %v", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/AUTHORS b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/AUTHORS new file mode 100644 index 00000000..be7ce33f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/AUTHORS @@ -0,0 +1,11 @@ +# This is the official list of Go-Commander authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS files. +# See the latter for an explanation. + +# Names should be added to this file as +# Name or Organization +# The email address is not required for organizations. + +# Please keep the list sorted. + +Google Inc diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/CONTRIBUTORS b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/CONTRIBUTORS new file mode 100644 index 00000000..b38ea497 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/CONTRIBUTORS @@ -0,0 +1,31 @@ +# This is the official list of people who can contribute +# (and typically have contributed) code to the Go-Commander repository. +# The AUTHORS file lists the copyright holders; this file +# lists people. For example, Google employees are listed here +# but not in AUTHORS, because Google holds the copyright. +# +# The submission process automatically checks to make sure +# that people submitting code are listed in this file (by email address). +# +# Names should be added to this file only after verifying that +# the individual or the individual's organization has agreed to +# the appropriate Contributor License Agreement, found here: +# +# http://code.google.com/legal/individual-cla-v1.0.html +# http://code.google.com/legal/corporate-cla-v1.0.html +# +# The agreement for individuals can be filled out on the web. +# +# When adding J Random Contributor's name to this file, +# either J's name or J's organization's name should be +# added to the AUTHORS file, depending on whether the +# individual or corporate CLA was used. + +# Names should be added to this file like so: +# Name + +# Please keep the list sorted. + +Juan Batiz-Benet +Sebastien Binet +Yves Junqueira diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/LICENSE new file mode 100644 index 00000000..811abfed --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012 The Go-Commander Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/README.md new file mode 100644 index 00000000..ce93a46b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/README.md @@ -0,0 +1,111 @@ +commander +============ + +``commander`` is a fork of a spin off of [golang](http://golang.org) ``go tool`` infrastructure to provide commands and sub-commands. + +Difference with [original](http://github.com/gonuts/commander/): + +- flags could be placed anywhere on the command line +- flags in whole subcommand tree should be non-conflicting (i.e. one name - one value type) +- interface has changed: first flags should be parsed, then command dispatched + +A ``commander.Command`` has a ``Subcommands`` field holding ``[]*commander.Command`` subcommands, referenced by name from the command line. + +So a ``Command`` can have sub commands. + +So you can have, _e.g._: +```sh +$ mycmd action1 [options...] +$ mycmd subcmd1 action1 [options...] +``` + +Example provided by: +- [hwaf](https://github.com/hwaf/hwaf) +- [examples/my-cmd](examples/my-cmd) + +## Documentation +Is available on [godoc](http://godoc.org/github.com/gonuts/commander) + +## Installation +Is performed with the usual: +```sh +$ go get github.com/gonuts/commander +``` + +## Example + +See the simple ``my-cmd`` example command for how this all hangs +together [there](http://github.com/gonuts/commander/blob/master/examples/my-cmd/main.go): + +```sh +$ my-cmd cmd1 +my-cmd-cmd1: hello from cmd1 (quiet=true) + +$ my-cmd cmd1 -q +my-cmd-cmd1: hello from cmd1 (quiet=true) + +$ my-cmd cmd1 -q=0 +my-cmd-cmd1: hello from cmd1 (quiet=false) + +$ my-cmd cmd2 +my-cmd-cmd2: hello from cmd2 (quiet=true) + +$ my-cmd subcmd1 cmd1 +my-cmd-subcmd1-cmd1: hello from subcmd1-cmd1 (quiet=true) + +$ my-cmd subcmd1 cmd2 +my-cmd-subcmd1-cmd2: hello from subcmd1-cmd2 (quiet=true) + +$ my-cmd subcmd2 cmd1 +my-cmd-subcmd2-cmd1: hello from subcmd2-cmd1 (quiet=true) + +$ my-cmd subcmd2 cmd2 +my-cmd-subcmd2-cmd2: hello from subcmd2-cmd2 (quiet=true) + +$ my-cmd help +Usage: + + my-cmd command [arguments] + +The commands are: + + cmd1 runs cmd1 and exits + cmd2 runs cmd2 and exits + subcmd1 subcmd1 subcommand. does subcmd1 thingies + subcmd2 subcmd2 subcommand. does subcmd2 thingies + +Use "my-cmd help [command]" for more information about a command. + +Additional help topics: + + +Use "my-cmd help [topic]" for more information about that topic. + + +$ my-cmd help subcmd1 +Usage: + + subcmd1 command [arguments] + +The commands are: + + cmd1 runs cmd1 and exits + cmd2 runs cmd2 and exits + + +Use "subcmd1 help [command]" for more information about a command. + +Additional help topics: + + +Use "subcmd1 help [topic]" for more information about that topic. + +``` + + +## TODO + +- automatically generate the bash/zsh/csh autocompletion lists +- automatically generate Readme examples text +- test cases + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/commands.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/commands.go new file mode 100644 index 00000000..5478cd00 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/commands.go @@ -0,0 +1,436 @@ +// Copyright 2012 The Go-Commander Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. +// +// Based on the original work by The Go Authors: +// Copyright 2011 The Go Authors. All rights reserved. + +// commander helps creating command line programs whose arguments are flags, +// commands and subcommands. +package commander + +import ( + "bytes" + "fmt" + "io" + "os" + "os/exec" + "sort" + "strings" + "text/template" + + "github.com/smira/flag" +) + +// UsageSection differentiates between sections in the usage text. +type Listing int + +const ( + CommandsList = iota + HelpTopicsList + Unlisted +) + +// A Command is an implementation of a subcommand. +type Command struct { + + // UsageLine is the short usage message. + // The first word in the line is taken to be the command name. + UsageLine string + + // Short is the short description line shown in command lists. + Short string + + // Long is the long description shown in the 'help ' output. + Long string + + // List reports which list to show this command in Usage and Help. + // Choose between {CommandsList (default), HelpTopicsList, Unlisted} + List Listing + + // Run runs the command. + // The args are the arguments after the command name. + Run func(cmd *Command, args []string) error + + // Flag is a set of flags specific to this command. + Flag flag.FlagSet + + // CustomFlags indicates that the command will do its own + // flag parsing. + CustomFlags bool + + // Subcommands are dispatched from this command + Subcommands []*Command + + // Parent command, nil for root. + Parent *Command + + // UsageTemplate formats the usage (short) information displayed to the user + // (leave empty for default) + UsageTemplate string + + // HelpTemplate formats the help (long) information displayed to the user + // (leave empty for default) + HelpTemplate string + + // Stdout and Stderr by default are os.Stdout and os.Stderr, but you can + // point them at any io.Writer + Stdout io.Writer + Stderr io.Writer + + // mergedFlags is merged flagset from this command and all subcommands + mergedFlags *flag.FlagSet +} + +// Name returns the command's name: the first word in the usage line. +func (c *Command) Name() string { + name := c.UsageLine + i := strings.Index(name, " ") + if i >= 0 { + name = name[:i] + } + return name +} + +// Usage prints the usage details to the standard error output. +func (c *Command) Usage() { + c.usage() +} + +// FlagOptions returns the flag's options as a string +func (c *Command) FlagOptions() string { + var buf bytes.Buffer + + flags := flag.NewFlagSet("help", 0) + for cmd := c; cmd != nil; cmd = cmd.Parent { + flags.Merge(&cmd.Flag) + } + flags.SetOutput(&buf) + flags.PrintDefaults() + + str := string(buf.Bytes()) + if len(str) > 0 { + return fmt.Sprintf("\nOptions:\n%s", str) + } + return "" +} + +// Runnable reports whether the command can be run; otherwise +// it is a documentation pseudo-command such as importpath. +func (c *Command) Runnable() bool { + return c.Run != nil +} + +// Type to allow us to use sort.Sort on a slice of Commands +type CommandSlice []*Command + +func (c CommandSlice) Len() int { + return len(c) +} + +func (c CommandSlice) Less(i, j int) bool { + return c[i].Name() < c[j].Name() +} + +func (c CommandSlice) Swap(i, j int) { + c[i], c[j] = c[j], c[i] +} + +// Sort the commands +func (c *Command) SortCommands() { + sort.Sort(CommandSlice(c.Subcommands)) +} + +// Init the command +func (c *Command) init() { + if c.Parent != nil { + return // already initialized. + } + + // setup strings + if len(c.UsageLine) < 1 { + c.UsageLine = Defaults.UsageLine + } + if len(c.UsageTemplate) < 1 { + c.UsageTemplate = Defaults.UsageTemplate + } + if len(c.HelpTemplate) < 1 { + c.HelpTemplate = Defaults.HelpTemplate + } + + if c.Stderr == nil { + c.Stderr = os.Stderr + } + if c.Stdout == nil { + c.Stdout = os.Stdout + } + + // init subcommands + for _, cmd := range c.Subcommands { + cmd.init() + } + + // init hierarchy... + for _, cmd := range c.Subcommands { + cmd.Parent = c + } + + // merge flags + c.mergedFlags = flag.NewFlagSet("merged", flag.ContinueOnError) + c.mergedFlags.Merge(&c.Flag) + + for _, cmd := range c.Subcommands { + c.mergedFlags.Merge(cmd.mergedFlags) + } +} + +// ParseFlags parses flags in whole command subtree and returns resulting FlagSet +func (c *Command) ParseFlags(args []string) (result *flag.FlagSet, argsNoFlags []string, err error) { + // Ensure command is initialized. + c.init() + + parseFlags := func(c *Command, args []string, flags *flag.FlagSet, setValue bool) (leftArgs []string, err error) { + flags.Usage = func() { + c.Usage() + err = fmt.Errorf("Failed to parse flags.") + } + flags.Parse(args, setValue) + if err != nil { + return + } + leftArgs = flags.Args() + return + } + + // First pass, go with merged flags and figure out command path + path := []*Command{c} + arguments := append([]string(nil), args...) + argsNoFlags = []string{} + + for len(arguments) > 0 { + arguments, err = parseFlags(path[len(path)-1], arguments, c.mergedFlags, false) + if err != nil { + return + } + + if len(arguments) > 0 { + found := false + + for _, cmd := range path[len(path)-1].Subcommands { + if cmd.Name() == arguments[0] { + path = append(path, cmd) + argsNoFlags = append(argsNoFlags, arguments[0]) + arguments = arguments[1:] + found = true + break + } + } + + if !found { + break + } + } + } + + argsNoFlags = append(argsNoFlags, arguments...) + + // Build resulting flagset + result = flag.NewFlagSet("result", flag.ExitOnError) + + for _, cmd := range path { + result.Merge(&cmd.Flag) + } + + // Parse flags finally + arguments = append([]string(nil), args...) + + for _, cmd := range path { + arguments, err = parseFlags(cmd, arguments, result, true) + if err != nil { + return + } + + if len(arguments) > 0 { + arguments = arguments[1:] + } + } + + return +} + +// Dispatch executes the command using the provided arguments. +// If a subcommand exists matching the first argument, it is dispatched. +// Otherwise, the command's Run function is called. +func (c *Command) Dispatch(args []string) error { + if c == nil { + return fmt.Errorf("Called Run() on a nil Command") + } + + // Ensure command is initialized. + c.init() + + // First, try a sub-command + if len(args) > 0 { + for _, cmd := range c.Subcommands { + n := cmd.Name() + if n == args[0] { + return cmd.Dispatch(args[1:]) + } + } + + // help is builtin (but after, to allow overriding) + if args[0] == "help" { + return c.help(args[1:]) + } + + // then, try out an external binary (git-style) + bin, err := exec.LookPath(c.FullName() + "-" + args[0]) + if err == nil { + cmd := exec.Command(bin, args[1:]...) + cmd.Stdin = os.Stdin + cmd.Stdout = c.Stdout + cmd.Stderr = c.Stderr + return cmd.Run() + } + } + + // then, try running this command + if c.Runnable() { + return c.Run(c, args) + } + + // TODO: try an alias + //... + + // Last, print usage + if err := c.usage(); err != nil { + return err + } + return nil +} + +func (c *Command) usage() error { + c.SortCommands() + err := tmpl(c.Stderr, c.UsageTemplate, c) + if err != nil { + fmt.Println(err) + } + return err +} + +// help implements the 'help' command. +func (c *Command) help(args []string) error { + + // help exactly for this command? + if len(args) == 0 { + if len(c.Long) > 0 { + return tmpl(c.Stdout, c.HelpTemplate, c) + } else { + return c.usage() + } + } + + arg := args[0] + + // is this help for a subcommand? + for _, cmd := range c.Subcommands { + n := cmd.Name() + // strip out "-"" name + if strings.HasPrefix(n, c.Name()+"-") { + n = n[len(c.Name()+"-"):] + } + if n == arg { + return cmd.help(args[1:]) + } + } + + return fmt.Errorf("Unknown help topic %#q. Run '%v help'.\n", arg, c.Name()) +} + +func (c *Command) MaxLen() (res int) { + res = 0 + for _, cmd := range c.Subcommands { + i := len(cmd.Name()) + if i > res { + res = i + } + } + return +} + +// ColFormat returns the column header size format for printing in the template +func (c *Command) ColFormat() string { + sz := c.MaxLen() + if sz < 11 { + sz = 11 + } + return fmt.Sprintf("%%-%ds", sz) +} + +// FullName returns the full name of the command, prefixed with parent commands +func (c *Command) FullName() string { + n := c.Name() + if c.Parent != nil { + n = c.Parent.FullName() + "-" + n + } + return n +} + +// FullSpacedName returns the full name of the command, with ' ' instead of '-' +func (c *Command) FullSpacedName() string { + n := c.Name() + if c.Parent != nil { + n = c.Parent.FullSpacedName() + " " + n + } + return n +} + +func (c *Command) SubcommandList(list Listing) []*Command { + var cmds []*Command + for _, cmd := range c.Subcommands { + if cmd.List == list { + cmds = append(cmds, cmd) + } + } + return cmds +} + +var Defaults = Command{ + UsageTemplate: `{{if .Runnable}}Usage: {{if .Parent}}{{.Parent.FullSpacedName}}{{end}} {{.UsageLine}} + +{{end}}{{.FullSpacedName}} - {{.Short}} + +{{if commandList}}Commands: +{{range commandList}} + {{.Name | printf (colfmt)}} {{.Short}}{{end}} + +Use "{{.Name}} help " for more information about a command. + +{{end}}{{.FlagOptions}}{{if helpList}} +Additional help topics: +{{range helpList}} + {{.Name | printf (colfmt)}} {{.Short}}{{end}} + +Use "{{.Name}} help " for more information about that topic. + +{{end}}`, + + HelpTemplate: `{{if .Runnable}}Usage: {{if .Parent}}{{.Parent.FullSpacedName}}{{end}} {{.UsageLine}} + +{{end}}{{.Long | trim}} +{{.FlagOptions}} +`, +} + +// tmpl executes the given template text on data, writing the result to w. +func tmpl(w io.Writer, text string, data interface{}) error { + t := template.New("top") + t.Funcs(template.FuncMap{ + "trim": strings.TrimSpace, + "colfmt": func() string { return data.(*Command).ColFormat() }, + "commandList": func() []*Command { return data.(*Command).SubcommandList(CommandsList) }, + "helpList": func() []*Command { return data.(*Command).SubcommandList(HelpTopicsList) }, + }) + template.Must(t.Parse(text)) + return t.Execute(w, data) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_cmd1.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_cmd1.go new file mode 100644 index 00000000..3dff0f30 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_cmd1.go @@ -0,0 +1,34 @@ +package main + +import ( + "fmt" + + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +var cmd_cmd1 = &commander.Command{ + Run: ex_run_cmd_cmd1, + UsageLine: "cmd1 [options]", + Short: "runs cmd1 and exits", + Long: ` +runs cmd1 and exits. + +ex: +$ my-cmd cmd1 +`, + Flag: *flag.NewFlagSet("my-cmd-cmd1", flag.ExitOnError), +} + +func init() { + cmd_cmd1.Flag.Bool("q", true, "only print error and warning messages, all other output will be suppressed") +} + +func ex_run_cmd_cmd1(cmd *commander.Command, args []string) error { + name := "my-cmd-" + cmd.Name() + quiet := cmd.Flag.Lookup("q").Value.Get().(bool) + fmt.Printf("%s: hello from cmd1 (quiet=%v)\n", name, quiet) + return nil +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_cmd2.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_cmd2.go new file mode 100644 index 00000000..d63c2d26 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_cmd2.go @@ -0,0 +1,34 @@ +package main + +import ( + "fmt" + + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +func ex_make_cmd_cmd2() *commander.Command { + cmd := &commander.Command{ + Run: ex_run_cmd_cmd2, + UsageLine: "cmd2 [options]", + Short: "runs cmd2 and exits", + Long: ` +runs cmd2 and exits. + +ex: + $ my-cmd cmd2 +`, + Flag: *flag.NewFlagSet("my-cmd-cmd2", flag.ExitOnError), + } + cmd.Flag.Bool("q", true, "only print error and warning messages, all other output will be suppressed") + return cmd +} + +func ex_run_cmd_cmd2(cmd *commander.Command, args []string) error { + name := "my-cmd-" + cmd.Name() + quiet := cmd.Flag.Lookup("q").Value.Get().(bool) + fmt.Printf("%s: hello from cmd2 (quiet=%v)\n", name, quiet) + return nil +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1.go new file mode 100644 index 00000000..87f74138 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1.go @@ -0,0 +1,18 @@ +package main + +import ( + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +var cmd_subcmd1 = &commander.Command{ + UsageLine: "subcmd1 ", + Short: "subcmd1 subcommand. does subcmd1 thingies", + Subcommands: []*commander.Command{ + cmd_subcmd1_cmd1, + cmd_subcmd1_cmd2, + }, + Flag: *flag.NewFlagSet("my-cmd-subcmd1", flag.ExitOnError), +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1_cmd1.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1_cmd1.go new file mode 100644 index 00000000..f59aad66 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1_cmd1.go @@ -0,0 +1,34 @@ +package main + +import ( + "fmt" + + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +var cmd_subcmd1_cmd1 = &commander.Command{ + Run: ex_run_cmd_subcmd1_cmd1, + UsageLine: "cmd1 [options]", + Short: "runs cmd1 and exits", + Long: ` +runs cmd1 and exits. + +ex: +$ my-cmd subcmd1 cmd1 +`, + Flag: *flag.NewFlagSet("my-cmd-subcmd1-cmd1", flag.ExitOnError), +} + +func init() { + cmd_subcmd1_cmd1.Flag.Bool("q", true, "only print error and warning messages, all other output will be suppressed") +} + +func ex_run_cmd_subcmd1_cmd1(cmd *commander.Command, args []string) error { + name := "my-cmd-subcmd1-" + cmd.Name() + quiet := cmd.Flag.Lookup("q").Value.Get().(bool) + fmt.Printf("%s: hello from subcmd1-cmd1 (quiet=%v)\n", name, quiet) + return nil +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1_cmd2.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1_cmd2.go new file mode 100644 index 00000000..e53134af --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd1_cmd2.go @@ -0,0 +1,34 @@ +package main + +import ( + "fmt" + + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +var cmd_subcmd1_cmd2 = &commander.Command{ + Run: ex_run_cmd_subcmd1_cmd2, + UsageLine: "cmd2 [options]", + Short: "runs cmd2 and exits", + Long: ` +runs cmd2 and exits. + +ex: +$ my-cmd subcmd1 cmd2 +`, + Flag: *flag.NewFlagSet("my-cmd-subcmd1-cmd2", flag.ExitOnError), +} + +func init() { + cmd_subcmd1_cmd2.Flag.Bool("q", true, "only print error and warning messages, all other output will be suppressed") +} + +func ex_run_cmd_subcmd1_cmd2(cmd *commander.Command, args []string) error { + name := "my-cmd-subcmd1-" + cmd.Name() + quiet := cmd.Flag.Lookup("q").Value.Get().(bool) + fmt.Printf("%s: hello from subcmd1-cmd2 (quiet=%v)\n", name, quiet) + return nil +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2.go new file mode 100644 index 00000000..d8b42da6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2.go @@ -0,0 +1,22 @@ +package main + +import ( + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +func ex_make_cmd_subcmd2() *commander.Command { + cmd := &commander.Command{ + UsageLine: "subcmd2", + Short: "subcmd2 subcommand. does subcmd2 thingies (help list)", + List: commander.HelpTopicsList, + Subcommands: []*commander.Command{ + ex_make_cmd_subcmd2_cmd1(), + ex_make_cmd_subcmd2_cmd2(), + }, + Flag: *flag.NewFlagSet("my-cmd-subcmd2", flag.ExitOnError), + } + return cmd +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2_cmd1.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2_cmd1.go new file mode 100644 index 00000000..e882e09d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2_cmd1.go @@ -0,0 +1,34 @@ +package main + +import ( + "fmt" + + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +func ex_make_cmd_subcmd2_cmd1() *commander.Command { + cmd := &commander.Command{ + Run: ex_run_cmd_subcmd2_cmd1, + UsageLine: "cmd1 [options]", + Short: "runs cmd1 and exits", + Long: ` +runs cmd1 and exits. + +ex: + $ my-cmd subcmd2 cmd1 +`, + Flag: *flag.NewFlagSet("my-cmd-subcmd2-cmd1", flag.ExitOnError), + } + cmd.Flag.Bool("q", true, "only print error and warning messages, all other output will be suppressed") + return cmd +} + +func ex_run_cmd_subcmd2_cmd1(cmd *commander.Command, args []string) error { + name := "my-cmd-subcmd2-" + cmd.Name() + quiet := cmd.Flag.Lookup("q").Value.Get().(bool) + fmt.Printf("%s: hello from subcmd2-cmd1 (quiet=%v)\n", name, quiet) + return nil +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2_cmd2.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2_cmd2.go new file mode 100644 index 00000000..aa0fc8cf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/cmd_subcmd2_cmd2.go @@ -0,0 +1,34 @@ +package main + +import ( + "fmt" + + "github.com/gonuts/commander" + "github.com/gonuts/flag" +) + +func ex_make_cmd_subcmd2_cmd2() *commander.Command { + cmd := &commander.Command{ + Run: ex_run_cmd_subcmd2_cmd2, + UsageLine: "cmd2 [options]", + Short: "runs cmd2 and exits", + Long: ` +runs cmd2 and exits. + +ex: + $ my-cmd subcmd2 cmd2 +`, + Flag: *flag.NewFlagSet("my-cmd-subcmd2-cmd2", flag.ExitOnError), + } + cmd.Flag.Bool("q", true, "only print error and warning messages, all other output will be suppressed") + return cmd +} + +func ex_run_cmd_subcmd2_cmd2(cmd *commander.Command, args []string) error { + name := "my-cmd-subcmd2-" + cmd.Name() + quiet := cmd.Flag.Lookup("q").Value.Get().(bool) + fmt.Printf("%s: hello from subcmd2-cmd2 (quiet=%v)\n", name, quiet) + return nil +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/main.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/main.go new file mode 100644 index 00000000..3a16f609 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/commander/examples/my-cmd/main.go @@ -0,0 +1,33 @@ +package main + +import ( + "fmt" + "os" + + "github.com/gonuts/commander" +) + +var g_cmd = &commander.Command{ + UsageLine: os.Args[0] + " does cool things", +} + +func init() { + g_cmd.Subcommands = []*commander.Command{ + cmd_cmd1, + ex_make_cmd_cmd2(), + cmd_subcmd1, + ex_make_cmd_subcmd2(), + } +} + +func main() { + err := g_cmd.Dispatch(os.Args[1:]) + if err != nil { + fmt.Printf("%v\n", err) + os.Exit(1) + } + + return +} + +// EOF diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/LICENSE new file mode 100644 index 00000000..74487567 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/README.md new file mode 100644 index 00000000..1d2856c4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/README.md @@ -0,0 +1,7 @@ +flag +======= + +A fork of fork of the official "flag" package but with: + + * the flag.Value interface extended to provide a ``Get() interface{}`` method, + * method ``(FlagSet *) Merge`` to merge two non-conficting flag sets diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/example_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/example_test.go new file mode 100644 index 00000000..04a0d20e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/example_test.go @@ -0,0 +1,83 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// These examples demonstrate more intricate uses of the flag package. +package flag_test + +import ( + "errors" + "flag" + "fmt" + "strings" + "time" +) + +// Example 1: A single string flag called "species" with default value "gopher". +var species = flag.String("species", "gopher", "the species we are studying") + +// Example 2: Two flags sharing a variable, so we can have a shorthand. +// The order of initialization is undefined, so make sure both use the +// same default value. They must be set up with an init function. +var gopherType string + +func init() { + const ( + defaultGopher = "pocket" + usage = "the variety of gopher" + ) + flag.StringVar(&gopherType, "gopher_type", defaultGopher, usage) + flag.StringVar(&gopherType, "g", defaultGopher, usage+" (shorthand)") +} + +// Example 3: A user-defined flag type, a slice of durations. +type interval []time.Duration + +// String is the method to format the flag's value, part of the flag.Value interface. +// The String method's output will be used in diagnostics. +func (i *interval) String() string { + return fmt.Sprint(*i) +} + +// Set is the method to set the flag value, part of the flag.Value interface. +// Set's argument is a string to be parsed to set the flag. +// It's a comma-separated list, so we split it. +func (i *interval) Set(value string) error { + // If we wanted to allow the flag to be set multiple times, + // accumulating values, we would delete this if statement. + // That would permit usages such as + // -deltaT 10s -deltaT 15s + // and other combinations. + if len(*i) > 0 { + return errors.New("interval flag already set") + } + for _, dt := range strings.Split(value, ",") { + duration, err := time.ParseDuration(dt) + if err != nil { + return err + } + *i = append(*i, duration) + } + return nil +} + +// Define a flag to accumulate durations. Because it has a special type, +// we need to use the Var function and therefore create the flag during +// init. + +var intervalFlag interval + +func init() { + // Tie the command-line flag to the intervalFlag variable and + // set a usage message. + flag.Var(&intervalFlag, "deltaT", "comma-separated list of intervals to use between events") +} + +func Example() { + // All the interesting pieces are with the variables declared above, but + // to enable the flag package to see the flags defined there, one must + // execute, typically at the start of main (not init!): + // flag.Parse() + // We don't run it here because this is not a main function and + // the testing suite has already parsed the flags. +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/export_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/export_test.go new file mode 100644 index 00000000..7b190807 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/export_test.go @@ -0,0 +1,22 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package flag + +import "os" + +// Additional routines compiled into the package only during testing. + +// ResetForTesting clears all flag state and sets the usage function as directed. +// After calling ResetForTesting, parse errors in flag handling will not +// exit the program. +func ResetForTesting(usage func()) { + commandLine = NewFlagSet(os.Args[0], ContinueOnError) + Usage = usage +} + +// CommandLine returns the default FlagSet. +func CommandLine() *FlagSet { + return commandLine +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/flag.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/flag.go new file mode 100644 index 00000000..92f4fa2d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/flag.go @@ -0,0 +1,839 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* + Package flag implements command-line flag parsing. + + Usage: + + Define flags using flag.String(), Bool(), Int(), etc. + + This declares an integer flag, -flagname, stored in the pointer ip, with type *int. + import "flag" + var ip = flag.Int("flagname", 1234, "help message for flagname") + If you like, you can bind the flag to a variable using the Var() functions. + var flagvar int + func init() { + flag.IntVar(&flagvar, "flagname", 1234, "help message for flagname") + } + Or you can create custom flags that satisfy the Value interface (with + pointer receivers) and couple them to flag parsing by + flag.Var(&flagVal, "name", "help message for flagname") + For such flags, the default value is just the initial value of the variable. + + After all flags are defined, call + flag.Parse() + to parse the command line into the defined flags. + + Flags may then be used directly. If you're using the flags themselves, + they are all pointers; if you bind to variables, they're values. + fmt.Println("ip has value ", *ip) + fmt.Println("flagvar has value ", flagvar) + + After parsing, the arguments after the flag are available as the + slice flag.Args() or individually as flag.Arg(i). + The arguments are indexed from 0 up to flag.NArg(). + + Command line flag syntax: + -flag + -flag=x + -flag x // non-boolean flags only + One or two minus signs may be used; they are equivalent. + The last form is not permitted for boolean flags because the + meaning of the command + cmd -x * + will change if there is a file called 0, false, etc. You must + use the -flag=false form to turn off a boolean flag. + + Flag parsing stops just before the first non-flag argument + ("-" is a non-flag argument) or after the terminator "--". + + Integer flags accept 1234, 0664, 0x1234 and may be negative. + Boolean flags may be 1, 0, t, f, true, false, TRUE, FALSE, True, False. + Duration flags accept any input valid for time.ParseDuration. + + The default set of command-line flags is controlled by + top-level functions. The FlagSet type allows one to define + independent sets of flags, such as to implement subcommands + in a command-line interface. The methods of FlagSet are + analogous to the top-level functions for the command-line + flag set. +*/ +package flag + +import ( + "errors" + "fmt" + "io" + "os" + "reflect" + "sort" + "strconv" + "time" +) + +// ErrHelp is the error returned if the flag -help is invoked but no such flag is defined. +var ErrHelp = errors.New("flag: help requested") + +// -- bool Value +type boolValue bool + +func newBoolValue(val bool, p *bool) *boolValue { + *p = val + return (*boolValue)(p) +} + +func (b *boolValue) Set(s string) error { + v, err := strconv.ParseBool(s) + *b = boolValue(v) + return err +} + +func (b *boolValue) Get() interface{} { return bool(*b) } + +func (b *boolValue) String() string { return fmt.Sprintf("%v", *b) } + +// -- int Value +type intValue int + +func newIntValue(val int, p *int) *intValue { + *p = val + return (*intValue)(p) +} + +func (i *intValue) Set(s string) error { + v, err := strconv.ParseInt(s, 0, 64) + *i = intValue(v) + return err +} + +func (i *intValue) Get() interface{} { return int(*i) } + +func (i *intValue) String() string { return fmt.Sprintf("%v", *i) } + +// -- int64 Value +type int64Value int64 + +func newInt64Value(val int64, p *int64) *int64Value { + *p = val + return (*int64Value)(p) +} + +func (i *int64Value) Set(s string) error { + v, err := strconv.ParseInt(s, 0, 64) + *i = int64Value(v) + return err +} + +func (i *int64Value) Get() interface{} { return int64(*i) } + +func (i *int64Value) String() string { return fmt.Sprintf("%v", *i) } + +// -- uint Value +type uintValue uint + +func newUintValue(val uint, p *uint) *uintValue { + *p = val + return (*uintValue)(p) +} + +func (i *uintValue) Set(s string) error { + v, err := strconv.ParseUint(s, 0, 64) + *i = uintValue(v) + return err +} + +func (i *uintValue) Get() interface{} { return uint(*i) } + +func (i *uintValue) String() string { return fmt.Sprintf("%v", *i) } + +// -- uint64 Value +type uint64Value uint64 + +func newUint64Value(val uint64, p *uint64) *uint64Value { + *p = val + return (*uint64Value)(p) +} + +func (i *uint64Value) Set(s string) error { + v, err := strconv.ParseUint(s, 0, 64) + *i = uint64Value(v) + return err +} + +func (i *uint64Value) Get() interface{} { return uint64(*i) } + +func (i *uint64Value) String() string { return fmt.Sprintf("%v", *i) } + +// -- string Value +type stringValue string + +func newStringValue(val string, p *string) *stringValue { + *p = val + return (*stringValue)(p) +} + +func (s *stringValue) Set(val string) error { + *s = stringValue(val) + return nil +} + +func (s *stringValue) Get() interface{} { return s.String() } + +func (s *stringValue) String() string { return fmt.Sprintf("%s", *s) } + +// -- float64 Value +type float64Value float64 + +func newFloat64Value(val float64, p *float64) *float64Value { + *p = val + return (*float64Value)(p) +} + +func (f *float64Value) Set(s string) error { + v, err := strconv.ParseFloat(s, 64) + *f = float64Value(v) + return err +} + +func (f *float64Value) Get() interface{} { return float64(*f) } + +func (f *float64Value) String() string { return fmt.Sprintf("%v", *f) } + +// -- time.Duration Value +type durationValue time.Duration + +func newDurationValue(val time.Duration, p *time.Duration) *durationValue { + *p = val + return (*durationValue)(p) +} + +func (d *durationValue) Set(s string) error { + v, err := time.ParseDuration(s) + *d = durationValue(v) + return err +} + +func (d *durationValue) Get() interface{} { return *(*time.Duration)(d) } + +func (d *durationValue) String() string { return (*time.Duration)(d).String() } + +// Value is the interface to the dynamic value stored in a flag. +// (The default value is represented as a string.) +type Value interface { + String() string + Set(string) error + Get() interface{} +} + +// ErrorHandling defines how to handle flag parsing errors. +type ErrorHandling int + +const ( + ContinueOnError ErrorHandling = iota + ExitOnError + PanicOnError +) + +// A FlagSet represents a set of defined flags. +type FlagSet struct { + // Usage is the function called when an error occurs while parsing flags. + // The field is a function (not a method) that may be changed to point to + // a custom error handler. + Usage func() + + name string + parsed bool + actual map[string]*Flag + formal map[string]*Flag + args []string // arguments after flags + exitOnError bool // does the program exit if there's an error? + errorHandling ErrorHandling + output io.Writer // nil means stderr; use out() accessor +} + +// A Flag represents the state of a flag. +type Flag struct { + Name string // name as it appears on command line + Usage string // help message + Value Value // value as set + DefValue string // default value (as text); for usage message +} + +// sortFlags returns the flags as a slice in lexicographical sorted order. +func sortFlags(flags map[string]*Flag) []*Flag { + list := make(sort.StringSlice, len(flags)) + i := 0 + for _, f := range flags { + list[i] = f.Name + i++ + } + list.Sort() + result := make([]*Flag, len(list)) + for i, name := range list { + result[i] = flags[name] + } + return result +} + +func (f *FlagSet) out() io.Writer { + if f.output == nil { + return os.Stderr + } + return f.output +} + +// SetOutput sets the destination for usage and error messages. +// If output is nil, os.Stderr is used. +func (f *FlagSet) SetOutput(output io.Writer) { + f.output = output +} + +// VisitAll visits the flags in lexicographical order, calling fn for each. +// It visits all flags, even those not set. +func (f *FlagSet) VisitAll(fn func(*Flag)) { + for _, flag := range sortFlags(f.formal) { + fn(flag) + } +} + +// VisitAll visits the command-line flags in lexicographical order, calling +// fn for each. It visits all flags, even those not set. +func VisitAll(fn func(*Flag)) { + commandLine.VisitAll(fn) +} + +// Visit visits the flags in lexicographical order, calling fn for each. +// It visits only those flags that have been set. +func (f *FlagSet) Visit(fn func(*Flag)) { + for _, flag := range sortFlags(f.actual) { + fn(flag) + } +} + +// Visit visits the command-line flags in lexicographical order, calling fn +// for each. It visits only those flags that have been set. +func Visit(fn func(*Flag)) { + commandLine.Visit(fn) +} + +// Lookup returns the Flag structure of the named flag, returning nil if none exists. +func (f *FlagSet) Lookup(name string) *Flag { + return f.formal[name] +} + +// Lookup returns the Flag structure of the named command-line flag, +// returning nil if none exists. +func Lookup(name string) *Flag { + return commandLine.formal[name] +} + +// Set sets the value of the named flag. +func (f *FlagSet) Set(name, value string) error { + flag, ok := f.formal[name] + if !ok { + return fmt.Errorf("no such flag -%v", name) + } + err := flag.Value.Set(value) + if err != nil { + return err + } + if f.actual == nil { + f.actual = make(map[string]*Flag) + } + f.actual[name] = flag + return nil +} + +// Set sets the value of the named command-line flag. +func Set(name, value string) error { + return commandLine.Set(name, value) +} + +// PrintDefaults prints, to standard error unless configured +// otherwise, the default values of all defined flags in the set. +func (f *FlagSet) PrintDefaults() { + f.VisitAll(func(flag *Flag) { + format := " -%s=%s: %s\n" + if _, ok := flag.Value.(*stringValue); ok { + // put quotes on the value + format = " -%s=%q: %s\n" + } + fmt.Fprintf(f.out(), format, flag.Name, flag.DefValue, flag.Usage) + }) +} + +// PrintDefaults prints to standard error the default values of all defined command-line flags. +func PrintDefaults() { + commandLine.PrintDefaults() +} + +// defaultUsage is the default function to print a usage message. +func defaultUsage(f *FlagSet) { + fmt.Fprintf(f.out(), "Usage of %s:\n", f.name) + f.PrintDefaults() +} + +// NOTE: Usage is not just defaultUsage(commandLine) +// because it serves (via godoc flag Usage) as the example +// for how to write your own usage function. + +// Usage prints to standard error a usage message documenting all defined command-line flags. +// The function is a variable that may be changed to point to a custom function. +var Usage = func() { + fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0]) + PrintDefaults() +} + +// NFlag returns the number of flags that have been set. +func (f *FlagSet) NFlag() int { return len(f.actual) } + +// NFlag returns the number of command-line flags that have been set. +func NFlag() int { return len(commandLine.actual) } + +// Arg returns the i'th argument. Arg(0) is the first remaining argument +// after flags have been processed. +func (f *FlagSet) Arg(i int) string { + if i < 0 || i >= len(f.args) { + return "" + } + return f.args[i] +} + +// Arg returns the i'th command-line argument. Arg(0) is the first remaining argument +// after flags have been processed. +func Arg(i int) string { + return commandLine.Arg(i) +} + +// NArg is the number of arguments remaining after flags have been processed. +func (f *FlagSet) NArg() int { return len(f.args) } + +// NArg is the number of arguments remaining after flags have been processed. +func NArg() int { return len(commandLine.args) } + +// Args returns the non-flag arguments. +func (f *FlagSet) Args() []string { return f.args } + +// Args returns the non-flag command-line arguments. +func Args() []string { return commandLine.args } + +// BoolVar defines a bool flag with specified name, default value, and usage string. +// The argument p points to a bool variable in which to store the value of the flag. +func (f *FlagSet) BoolVar(p *bool, name string, value bool, usage string) { + f.Var(newBoolValue(value, p), name, usage) +} + +// BoolVar defines a bool flag with specified name, default value, and usage string. +// The argument p points to a bool variable in which to store the value of the flag. +func BoolVar(p *bool, name string, value bool, usage string) { + commandLine.Var(newBoolValue(value, p), name, usage) +} + +// Bool defines a bool flag with specified name, default value, and usage string. +// The return value is the address of a bool variable that stores the value of the flag. +func (f *FlagSet) Bool(name string, value bool, usage string) *bool { + p := new(bool) + f.BoolVar(p, name, value, usage) + return p +} + +// Bool defines a bool flag with specified name, default value, and usage string. +// The return value is the address of a bool variable that stores the value of the flag. +func Bool(name string, value bool, usage string) *bool { + return commandLine.Bool(name, value, usage) +} + +// IntVar defines an int flag with specified name, default value, and usage string. +// The argument p points to an int variable in which to store the value of the flag. +func (f *FlagSet) IntVar(p *int, name string, value int, usage string) { + f.Var(newIntValue(value, p), name, usage) +} + +// IntVar defines an int flag with specified name, default value, and usage string. +// The argument p points to an int variable in which to store the value of the flag. +func IntVar(p *int, name string, value int, usage string) { + commandLine.Var(newIntValue(value, p), name, usage) +} + +// Int defines an int flag with specified name, default value, and usage string. +// The return value is the address of an int variable that stores the value of the flag. +func (f *FlagSet) Int(name string, value int, usage string) *int { + p := new(int) + f.IntVar(p, name, value, usage) + return p +} + +// Int defines an int flag with specified name, default value, and usage string. +// The return value is the address of an int variable that stores the value of the flag. +func Int(name string, value int, usage string) *int { + return commandLine.Int(name, value, usage) +} + +// Int64Var defines an int64 flag with specified name, default value, and usage string. +// The argument p points to an int64 variable in which to store the value of the flag. +func (f *FlagSet) Int64Var(p *int64, name string, value int64, usage string) { + f.Var(newInt64Value(value, p), name, usage) +} + +// Int64Var defines an int64 flag with specified name, default value, and usage string. +// The argument p points to an int64 variable in which to store the value of the flag. +func Int64Var(p *int64, name string, value int64, usage string) { + commandLine.Var(newInt64Value(value, p), name, usage) +} + +// Int64 defines an int64 flag with specified name, default value, and usage string. +// The return value is the address of an int64 variable that stores the value of the flag. +func (f *FlagSet) Int64(name string, value int64, usage string) *int64 { + p := new(int64) + f.Int64Var(p, name, value, usage) + return p +} + +// Int64 defines an int64 flag with specified name, default value, and usage string. +// The return value is the address of an int64 variable that stores the value of the flag. +func Int64(name string, value int64, usage string) *int64 { + return commandLine.Int64(name, value, usage) +} + +// UintVar defines a uint flag with specified name, default value, and usage string. +// The argument p points to a uint variable in which to store the value of the flag. +func (f *FlagSet) UintVar(p *uint, name string, value uint, usage string) { + f.Var(newUintValue(value, p), name, usage) +} + +// UintVar defines a uint flag with specified name, default value, and usage string. +// The argument p points to a uint variable in which to store the value of the flag. +func UintVar(p *uint, name string, value uint, usage string) { + commandLine.Var(newUintValue(value, p), name, usage) +} + +// Uint defines a uint flag with specified name, default value, and usage string. +// The return value is the address of a uint variable that stores the value of the flag. +func (f *FlagSet) Uint(name string, value uint, usage string) *uint { + p := new(uint) + f.UintVar(p, name, value, usage) + return p +} + +// Uint defines a uint flag with specified name, default value, and usage string. +// The return value is the address of a uint variable that stores the value of the flag. +func Uint(name string, value uint, usage string) *uint { + return commandLine.Uint(name, value, usage) +} + +// Uint64Var defines a uint64 flag with specified name, default value, and usage string. +// The argument p points to a uint64 variable in which to store the value of the flag. +func (f *FlagSet) Uint64Var(p *uint64, name string, value uint64, usage string) { + f.Var(newUint64Value(value, p), name, usage) +} + +// Uint64Var defines a uint64 flag with specified name, default value, and usage string. +// The argument p points to a uint64 variable in which to store the value of the flag. +func Uint64Var(p *uint64, name string, value uint64, usage string) { + commandLine.Var(newUint64Value(value, p), name, usage) +} + +// Uint64 defines a uint64 flag with specified name, default value, and usage string. +// The return value is the address of a uint64 variable that stores the value of the flag. +func (f *FlagSet) Uint64(name string, value uint64, usage string) *uint64 { + p := new(uint64) + f.Uint64Var(p, name, value, usage) + return p +} + +// Uint64 defines a uint64 flag with specified name, default value, and usage string. +// The return value is the address of a uint64 variable that stores the value of the flag. +func Uint64(name string, value uint64, usage string) *uint64 { + return commandLine.Uint64(name, value, usage) +} + +// StringVar defines a string flag with specified name, default value, and usage string. +// The argument p points to a string variable in which to store the value of the flag. +func (f *FlagSet) StringVar(p *string, name string, value string, usage string) { + f.Var(newStringValue(value, p), name, usage) +} + +// StringVar defines a string flag with specified name, default value, and usage string. +// The argument p points to a string variable in which to store the value of the flag. +func StringVar(p *string, name string, value string, usage string) { + commandLine.Var(newStringValue(value, p), name, usage) +} + +// String defines a string flag with specified name, default value, and usage string. +// The return value is the address of a string variable that stores the value of the flag. +func (f *FlagSet) String(name string, value string, usage string) *string { + p := new(string) + f.StringVar(p, name, value, usage) + return p +} + +// String defines a string flag with specified name, default value, and usage string. +// The return value is the address of a string variable that stores the value of the flag. +func String(name string, value string, usage string) *string { + return commandLine.String(name, value, usage) +} + +// Float64Var defines a float64 flag with specified name, default value, and usage string. +// The argument p points to a float64 variable in which to store the value of the flag. +func (f *FlagSet) Float64Var(p *float64, name string, value float64, usage string) { + f.Var(newFloat64Value(value, p), name, usage) +} + +// Float64Var defines a float64 flag with specified name, default value, and usage string. +// The argument p points to a float64 variable in which to store the value of the flag. +func Float64Var(p *float64, name string, value float64, usage string) { + commandLine.Var(newFloat64Value(value, p), name, usage) +} + +// Float64 defines a float64 flag with specified name, default value, and usage string. +// The return value is the address of a float64 variable that stores the value of the flag. +func (f *FlagSet) Float64(name string, value float64, usage string) *float64 { + p := new(float64) + f.Float64Var(p, name, value, usage) + return p +} + +// Float64 defines a float64 flag with specified name, default value, and usage string. +// The return value is the address of a float64 variable that stores the value of the flag. +func Float64(name string, value float64, usage string) *float64 { + return commandLine.Float64(name, value, usage) +} + +// DurationVar defines a time.Duration flag with specified name, default value, and usage string. +// The argument p points to a time.Duration variable in which to store the value of the flag. +func (f *FlagSet) DurationVar(p *time.Duration, name string, value time.Duration, usage string) { + f.Var(newDurationValue(value, p), name, usage) +} + +// DurationVar defines a time.Duration flag with specified name, default value, and usage string. +// The argument p points to a time.Duration variable in which to store the value of the flag. +func DurationVar(p *time.Duration, name string, value time.Duration, usage string) { + commandLine.Var(newDurationValue(value, p), name, usage) +} + +// Duration defines a time.Duration flag with specified name, default value, and usage string. +// The return value is the address of a time.Duration variable that stores the value of the flag. +func (f *FlagSet) Duration(name string, value time.Duration, usage string) *time.Duration { + p := new(time.Duration) + f.DurationVar(p, name, value, usage) + return p +} + +// Duration defines a time.Duration flag with specified name, default value, and usage string. +// The return value is the address of a time.Duration variable that stores the value of the flag. +func Duration(name string, value time.Duration, usage string) *time.Duration { + return commandLine.Duration(name, value, usage) +} + +// Var defines a flag with the specified name and usage string. The type and +// value of the flag are represented by the first argument, of type Value, which +// typically holds a user-defined implementation of Value. For instance, the +// caller could create a flag that turns a comma-separated string into a slice +// of strings by giving the slice the methods of Value; in particular, Set would +// decompose the comma-separated string into the slice. +func (f *FlagSet) Var(value Value, name string, usage string) { + // Remember the default value as a string; it won't change. + flag := &Flag{name, usage, value, value.String()} + _, alreadythere := f.formal[name] + if alreadythere { + msg := fmt.Sprintf("%s flag redefined: %s", f.name, name) + fmt.Fprintln(f.out(), msg) + panic(msg) // Happens only if flags are declared with identical names + } + if f.formal == nil { + f.formal = make(map[string]*Flag) + } + f.formal[name] = flag +} + +// Var defines a flag with the specified name and usage string. The type and +// value of the flag are represented by the first argument, of type Value, which +// typically holds a user-defined implementation of Value. For instance, the +// caller could create a flag that turns a comma-separated string into a slice +// of strings by giving the slice the methods of Value; in particular, Set would +// decompose the comma-separated string into the slice. +func Var(value Value, name string, usage string) { + commandLine.Var(value, name, usage) +} + +// failf prints to standard error a formatted error and usage message and +// returns the error. +func (f *FlagSet) failf(format string, a ...interface{}) error { + err := fmt.Errorf(format, a...) + fmt.Fprintln(f.out(), err) + f.usage() + return err +} + +// usage calls the Usage method for the flag set, or the usage function if +// the flag set is commandLine. +func (f *FlagSet) usage() { + if f == commandLine { + Usage() + } else if f.Usage == nil { + defaultUsage(f) + } else { + f.Usage() + } +} + +// parseOne parses one flag. It returns whether a flag was seen. +func (f *FlagSet) parseOne(setValue bool) (bool, error) { + if len(f.args) == 0 { + return false, nil + } + s := f.args[0] + if len(s) == 0 || s[0] != '-' || len(s) == 1 { + return false, nil + } + num_minuses := 1 + if s[1] == '-' { + num_minuses++ + if len(s) == 2 { // "--" terminates the flags + f.args = f.args[1:] + return false, nil + } + } + name := s[num_minuses:] + if len(name) == 0 || name[0] == '-' || name[0] == '=' { + return false, f.failf("bad flag syntax: %s", s) + } + + // it's a flag. does it have an argument? + f.args = f.args[1:] + has_value := false + value := "" + for i := 1; i < len(name); i++ { // equals cannot be first + if name[i] == '=' { + value = name[i+1:] + has_value = true + name = name[0:i] + break + } + } + m := f.formal + flag, alreadythere := m[name] // BUG + if !alreadythere { + if name == "help" || name == "h" { // special case for nice help message. + f.usage() + return false, ErrHelp + } + return false, f.failf("flag provided but not defined: -%s", name) + } + if fv, ok := flag.Value.(*boolValue); ok { // special case: doesn't need an arg + if setValue { + if has_value { + if err := fv.Set(value); err != nil { + f.failf("invalid boolean value %q for -%s: %v", value, name, err) + } + } else { + fv.Set("true") + } + } + } else { + // It must have a value, which might be the next argument. + if !has_value && len(f.args) > 0 { + // value is the next arg + has_value = true + value, f.args = f.args[0], f.args[1:] + } + if !has_value { + return false, f.failf("flag needs an argument: -%s", name) + } + if setValue { + if err := flag.Value.Set(value); err != nil { + return false, f.failf("invalid value %q for flag -%s: %v", value, name, err) + } + } + } + if f.actual == nil { + f.actual = make(map[string]*Flag) + } + f.actual[name] = flag + return true, nil +} + +// Parse parses flag definitions from the argument list, which should not +// include the command name. Must be called after all flags in the FlagSet +// are defined and before flags are accessed by the program. +// The return value will be ErrHelp if -help was set but not defined. +func (f *FlagSet) Parse(arguments []string, setValue bool) error { + f.parsed = true + f.args = arguments + for { + seen, err := f.parseOne(setValue) + if seen { + continue + } + if err == nil { + break + } + switch f.errorHandling { + case ContinueOnError: + return err + case ExitOnError: + os.Exit(2) + case PanicOnError: + panic(err) + } + } + return nil +} + +// Parsed reports whether f.Parse has been called. +func (f *FlagSet) Parsed() bool { + return f.parsed +} + +// Parse parses the command-line flags from os.Args[1:]. Must be called +// after all flags are defined and before flags are accessed by the program. +func Parse() { + // Ignore errors; commandLine is set for ExitOnError. + commandLine.Parse(os.Args[1:], true) +} + +// Parsed returns true if the command-line flags have been parsed. +func Parsed() bool { + return commandLine.Parsed() +} + +// The default set of command-line flags, parsed from os.Args. +var commandLine = NewFlagSet(os.Args[0], ExitOnError) + +// NewFlagSet returns a new, empty flag set with the specified name and +// error handling property. +func NewFlagSet(name string, errorHandling ErrorHandling) *FlagSet { + f := &FlagSet{ + name: name, + errorHandling: errorHandling, + } + return f +} + +// Init sets the name and error handling property for a flag set. +// By default, the zero FlagSet uses an empty name and the +// ContinueOnError error handling policy. +func (f *FlagSet) Init(name string, errorHandling ErrorHandling) { + f.name = name + f.errorHandling = errorHandling +} + +// Merge combines two FlagSets, adding all flags from other +func (f *FlagSet) Merge(other *FlagSet) { + for name, flag := range other.formal { + existing, alreadythere := f.formal[name] + if alreadythere { + if reflect.TypeOf(existing.Value) != reflect.TypeOf(flag.Value) { + panic(fmt.Sprintf("unable to merge flag %s: %s != %s", name, reflect.TypeOf(existing.Value).String(), + reflect.TypeOf(flag.Value).String())) + } + } else { + if f.formal == nil { + f.formal = make(map[string]*Flag) + } + f.formal[name] = flag + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/flag_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/flag_test.go new file mode 100644 index 00000000..dcdd325c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/smira/flag/flag_test.go @@ -0,0 +1,288 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package flag_test + +import ( + "bytes" + "fmt" + "os" + "sort" + "strings" + "testing" + "time" + + . "github.com/smira/flag" +) + +var ( + test_bool = Bool("test_bool", false, "bool value") + test_int = Int("test_int", 0, "int value") + test_int64 = Int64("test_int64", 0, "int64 value") + test_uint = Uint("test_uint", 0, "uint value") + test_uint64 = Uint64("test_uint64", 0, "uint64 value") + test_string = String("test_string", "0", "string value") + test_float64 = Float64("test_float64", 0, "float64 value") + test_duration = Duration("test_duration", 0, "time.Duration value") +) + +func boolString(s string) string { + if s == "0" { + return "false" + } + return "true" +} + +func TestEverything(t *testing.T) { + m := make(map[string]*Flag) + desired := "0" + visitor := func(f *Flag) { + if len(f.Name) > 5 && f.Name[0:5] == "test_" { + m[f.Name] = f + ok := false + switch { + case f.Value.String() == desired: + ok = true + case f.Name == "test_bool" && f.Value.String() == boolString(desired): + ok = true + case f.Name == "test_duration" && f.Value.String() == desired+"s": + ok = true + } + if !ok { + t.Error("Visit: bad value", f.Value.String(), "for", f.Name) + } + } + } + VisitAll(visitor) + if len(m) != 8 { + t.Error("VisitAll misses some flags") + for k, v := range m { + t.Log(k, *v) + } + } + m = make(map[string]*Flag) + Visit(visitor) + if len(m) != 0 { + t.Errorf("Visit sees unset flags") + for k, v := range m { + t.Log(k, *v) + } + } + // Now set all flags + Set("test_bool", "true") + Set("test_int", "1") + Set("test_int64", "1") + Set("test_uint", "1") + Set("test_uint64", "1") + Set("test_string", "1") + Set("test_float64", "1") + Set("test_duration", "1s") + desired = "1" + Visit(visitor) + if len(m) != 8 { + t.Error("Visit fails after set") + for k, v := range m { + t.Log(k, *v) + } + } + // Now test they're visited in sort order. + var flagNames []string + Visit(func(f *Flag) { flagNames = append(flagNames, f.Name) }) + if !sort.StringsAreSorted(flagNames) { + t.Errorf("flag names not sorted: %v", flagNames) + } +} + +func TestUsage(t *testing.T) { + called := false + ResetForTesting(func() { called = true }) + if CommandLine().Parse([]string{"-x"}, true) == nil { + t.Error("parse did not fail for unknown flag") + } + if !called { + t.Error("did not call Usage for unknown flag") + } +} + +func testParse(f *FlagSet, t *testing.T) { + if f.Parsed() { + t.Error("f.Parse() = true before Parse") + } + boolFlag := f.Bool("bool", false, "bool value") + bool2Flag := f.Bool("bool2", false, "bool2 value") + intFlag := f.Int("int", 0, "int value") + int64Flag := f.Int64("int64", 0, "int64 value") + uintFlag := f.Uint("uint", 0, "uint value") + uint64Flag := f.Uint64("uint64", 0, "uint64 value") + stringFlag := f.String("string", "0", "string value") + float64Flag := f.Float64("float64", 0, "float64 value") + durationFlag := f.Duration("duration", 5*time.Second, "time.Duration value") + extra := "one-extra-argument" + args := []string{ + "-bool", + "-bool2=true", + "--int", "22", + "--int64", "0x23", + "-uint", "24", + "--uint64", "25", + "-string", "hello", + "-float64", "2718e28", + "-duration", "2m", + extra, + } + if err := f.Parse(args, true); err != nil { + t.Fatal(err) + } + if !f.Parsed() { + t.Error("f.Parse() = false after Parse") + } + if *boolFlag != true { + t.Error("bool flag should be true, is ", *boolFlag) + } + if *bool2Flag != true { + t.Error("bool2 flag should be true, is ", *bool2Flag) + } + if *intFlag != 22 { + t.Error("int flag should be 22, is ", *intFlag) + } + if *int64Flag != 0x23 { + t.Error("int64 flag should be 0x23, is ", *int64Flag) + } + if *uintFlag != 24 { + t.Error("uint flag should be 24, is ", *uintFlag) + } + if *uint64Flag != 25 { + t.Error("uint64 flag should be 25, is ", *uint64Flag) + } + if *stringFlag != "hello" { + t.Error("string flag should be `hello`, is ", *stringFlag) + } + if *float64Flag != 2718e28 { + t.Error("float64 flag should be 2718e28, is ", *float64Flag) + } + if *durationFlag != 2*time.Minute { + t.Error("duration flag should be 2m, is ", *durationFlag) + } + if len(f.Args()) != 1 { + t.Error("expected one argument, got", len(f.Args())) + } else if f.Args()[0] != extra { + t.Errorf("expected argument %q got %q", extra, f.Args()[0]) + } +} + +func TestParse(t *testing.T) { + ResetForTesting(func() { t.Error("bad parse") }) + testParse(CommandLine(), t) +} + +func TestFlagSetParse(t *testing.T) { + testParse(NewFlagSet("test", ContinueOnError), t) +} + +// Declare a user-defined flag type. +type flagVar []string + +func (f *flagVar) String() string { + return fmt.Sprint([]string(*f)) +} + +func (f *flagVar) Set(value string) error { + *f = append(*f, value) + return nil +} + +func (f *flagVar) Get() interface{} { return []string(*f) } + +func TestUserDefined(t *testing.T) { + var flags FlagSet + flags.Init("test", ContinueOnError) + var v flagVar + flags.Var(&v, "v", "usage") + if err := flags.Parse([]string{"-v", "1", "-v", "2", "-v=3"}, true); err != nil { + t.Error(err) + } + if len(v) != 3 { + t.Fatal("expected 3 args; got ", len(v)) + } + expect := "[1 2 3]" + if v.String() != expect { + t.Errorf("expected value %q got %q", expect, v.String()) + } +} + +func TestSetOutput(t *testing.T) { + var flags FlagSet + var buf bytes.Buffer + flags.SetOutput(&buf) + flags.Init("test", ContinueOnError) + flags.Parse([]string{"-unknown"}, true) + if out := buf.String(); !strings.Contains(out, "-unknown") { + t.Logf("expected output mentioning unknown; got %q", out) + } +} + +// This tests that one can reset the flags. This still works but not well, and is +// superseded by FlagSet. +func TestChangingArgs(t *testing.T) { + ResetForTesting(func() { t.Fatal("bad parse") }) + oldArgs := os.Args + defer func() { os.Args = oldArgs }() + os.Args = []string{"cmd", "-before", "subcmd", "-after", "args"} + before := Bool("before", false, "") + if err := CommandLine().Parse(os.Args[1:], true); err != nil { + t.Fatal(err) + } + cmd := Arg(0) + os.Args = Args() + after := Bool("after", false, "") + Parse() + args := Args() + + if !*before || cmd != "subcmd" || !*after || len(args) != 1 || args[0] != "args" { + t.Fatalf("expected true subcmd true [args] got %v %v %v %v", *before, cmd, *after, args) + } +} + +// Test that -help invokes the usage message and returns ErrHelp. +func TestHelp(t *testing.T) { + var helpCalled = false + fs := NewFlagSet("help test", ContinueOnError) + fs.Usage = func() { helpCalled = true } + var flag bool + fs.BoolVar(&flag, "flag", false, "regular flag") + // Regular flag invocation should work + err := fs.Parse([]string{"-flag=true"}, true) + if err != nil { + t.Fatal("expected no error; got ", err) + } + if !flag { + t.Error("flag was not set by -flag") + } + if helpCalled { + t.Error("help called for regular flag") + helpCalled = false // reset for next test + } + // Help flag should work as expected. + err = fs.Parse([]string{"-help"}, true) + if err == nil { + t.Fatal("error expected") + } + if err != ErrHelp { + t.Fatal("expected ErrHelp; got ", err) + } + if !helpCalled { + t.Fatal("help was not called") + } + // If we define a help flag, that should override. + var help bool + fs.BoolVar(&help, "help", false, "help flag") + helpCalled = false + err = fs.Parse([]string{"-help"}, true) + if err != nil { + t.Fatal("expected no error for defined -help; got ", err) + } + if helpCalled { + t.Fatal("help was called; should not have been for defined help flag") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/LICENSE new file mode 100644 index 00000000..4a772d1a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/LICENSE @@ -0,0 +1,24 @@ +Copyright 2012 Suryandaru Triandana +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/README.md new file mode 100644 index 00000000..3776aad7 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/README.md @@ -0,0 +1,91 @@ +This is an implementation of the [LevelDB key/value database](http:code.google.com/p/leveldb) in the [Go programming language](http:golang.org). + +Installation +----------- + + go get github.com/syndtr/goleveldb/leveldb + +Requirements +----------- + +* Need at least `go1.1` or newer. + +Usage +----------- + +Create or open a database: + + db, err := leveldb.OpenFile("path/to/db", nil) + ... + defer db.Close() + ... + +Read or modify the database content: + + // Remember that the contents of the returned slice should not be modified. + data, err := db.Get([]byte("key"), nil) + ... + err = db.Put([]byte("key"), []byte("value"), nil) + ... + err = db.Delete([]byte("key"), nil) + ... + +Iterate over database content: + + iter := db.NewIterator(nil, nil) + for iter.Next() { + // Remember that the contents of the returned slice should not be modified, and + // only valid until the next call to Next. + key := iter.Key() + value := iter.Value() + ... + } + iter.Release() + err = iter.Error() + ... + +Seek-then-Iterate: + + iter := db.NewIterator(nil, nil) + for ok := iter.Seek(key); ok; ok = iter.Next() { + // Use key/value. + ... + } + iter.Release() + err = iter.Error() + ... + +Iterate over subset of database content: + + iter := db.NewIterator(&util.Range{Start: []byte("foo"), Limit: []byte("xoo")}, nil) + for iter.Next() { + // Use key/value. + ... + } + iter.Release() + err = iter.Error() + ... + +Batch writes: + + batch := new(leveldb.Batch) + batch.Put([]byte("foo"), []byte("value")) + batch.Put([]byte("bar"), []byte("another value")) + batch.Delete([]byte("baz")) + err = db.Write(batch, nil) + ... + +Use bloom filter: + + o := &opt.Options{ + Filter: filter.NewBloomFilter(10), + } + db, err := leveldb.OpenFile("path/to/db", o) + ... + defer db.Close() + ... + +Documentation +----------- + +You can read package documentation [here](http:godoc.org/github.com/syndtr/goleveldb). diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/batch.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/batch.go new file mode 100644 index 00000000..546a89dc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/batch.go @@ -0,0 +1,212 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "encoding/binary" + "errors" + + "github.com/syndtr/goleveldb/leveldb/memdb" +) + +var ( + errBatchTooShort = errors.New("leveldb: batch is too short") + errBatchBadRecord = errors.New("leveldb: bad record in batch") +) + +const kBatchHdrLen = 8 + 4 + +type batchReplay interface { + put(key, value []byte, seq uint64) + delete(key []byte, seq uint64) +} + +// Batch is a write batch. +type Batch struct { + buf []byte + rLen int + seq uint64 + sync bool +} + +func (b *Batch) grow(n int) { + off := len(b.buf) + if off == 0 { + // include headers + off = kBatchHdrLen + n += off + } + if cap(b.buf)-off >= n { + return + } + buf := make([]byte, 2*cap(b.buf)+n) + copy(buf, b.buf) + b.buf = buf[:off] +} + +func (b *Batch) appendRec(t vType, key, value []byte) { + n := 1 + binary.MaxVarintLen32 + len(key) + if t == tVal { + n += binary.MaxVarintLen32 + len(value) + } + b.grow(n) + off := len(b.buf) + buf := b.buf[:off+n] + buf[off] = byte(t) + off += 1 + off += binary.PutUvarint(buf[off:], uint64(len(key))) + copy(buf[off:], key) + off += len(key) + if t == tVal { + off += binary.PutUvarint(buf[off:], uint64(len(value))) + copy(buf[off:], value) + off += len(value) + } + b.buf = buf[:off] +} + +// Put appends 'put operation' of the given key/value pair to the batch. +// It is safe to modify the contents of the argument after Put returns. +func (b *Batch) Put(key, value []byte) { + b.appendRec(tVal, key, value) + b.rLen++ +} + +// Delete appends 'delete operation' of the given key to the batch. +// It is safe to modify the contents of the argument after Delete returns. +func (b *Batch) Delete(key []byte) { + b.appendRec(tDel, key, nil) + b.rLen++ +} + +// Reset resets the batch. +func (b *Batch) Reset() { + b.buf = nil + b.seq = 0 + b.rLen = 0 + b.sync = false +} + +func (b *Batch) init(sync bool) { + b.sync = sync +} + +func (b *Batch) put(key, value []byte, seq uint64) { + if b.rLen == 0 { + b.seq = seq + } + b.Put(key, value) +} + +func (b *Batch) delete(key []byte, seq uint64) { + if b.rLen == 0 { + b.seq = seq + } + b.Delete(key) +} + +func (b *Batch) append(p *Batch) { + if p.rLen > 0 { + b.grow(len(p.buf) - kBatchHdrLen) + b.buf = append(b.buf, p.buf[kBatchHdrLen:]...) + b.rLen += p.rLen + } + if p.sync { + b.sync = true + } +} + +func (b *Batch) len() int { + return b.rLen +} + +func (b *Batch) size() int { + return len(b.buf) +} + +func (b *Batch) encode() []byte { + b.grow(0) + binary.LittleEndian.PutUint64(b.buf, b.seq) + binary.LittleEndian.PutUint32(b.buf[8:], uint32(b.rLen)) + + return b.buf +} + +func (b *Batch) decode(buf []byte) error { + if len(buf) < kBatchHdrLen { + return errBatchTooShort + } + + b.seq = binary.LittleEndian.Uint64(buf) + b.rLen = int(binary.LittleEndian.Uint32(buf[8:])) + b.buf = buf + + return nil +} + +func (b *Batch) decodeRec(f func(i int, t vType, key, value []byte)) error { + off := kBatchHdrLen + for i := 0; i < b.rLen; i++ { + if off >= len(b.buf) { + return errors.New("leveldb: invalid batch record length") + } + + t := vType(b.buf[off]) + if t > tVal { + return errors.New("leveldb: invalid batch record type in batch") + } + off += 1 + + x, n := binary.Uvarint(b.buf[off:]) + off += n + if n <= 0 || off+int(x) > len(b.buf) { + return errBatchBadRecord + } + key := b.buf[off : off+int(x)] + off += int(x) + + var value []byte + if t == tVal { + x, n := binary.Uvarint(b.buf[off:]) + off += n + if n <= 0 || off+int(x) > len(b.buf) { + return errBatchBadRecord + } + value = b.buf[off : off+int(x)] + off += int(x) + } + + f(i, t, key, value) + } + + return nil +} + +func (b *Batch) replay(to batchReplay) error { + return b.decodeRec(func(i int, t vType, key, value []byte) { + switch t { + case tVal: + to.put(key, value, b.seq+uint64(i)) + case tDel: + to.delete(key, b.seq+uint64(i)) + } + }) +} + +func (b *Batch) memReplay(to *memdb.DB) error { + return b.decodeRec(func(i int, t vType, key, value []byte) { + ikey := newIKey(key, b.seq+uint64(i), t) + to.Put(ikey, value) + }) +} + +func (b *Batch) revertMemReplay(to *memdb.DB) error { + return b.decodeRec(func(i int, t vType, key, value []byte) { + ikey := newIKey(key, b.seq+uint64(i), t) + to.Delete(ikey) + }) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/batch_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/batch_test.go new file mode 100644 index 00000000..a41ca2e3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/batch_test.go @@ -0,0 +1,100 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "bytes" + "testing" +) + +type tbRec struct { + t vType + key, value []byte +} + +type testBatch struct { + rec []*tbRec +} + +func (p *testBatch) put(key, value []byte, seq uint64) { + p.rec = append(p.rec, &tbRec{tVal, key, value}) +} + +func (p *testBatch) delete(key []byte, seq uint64) { + p.rec = append(p.rec, &tbRec{tDel, key, nil}) +} + +func compareBatch(t *testing.T, b1, b2 *Batch) { + if b1.seq != b2.seq { + t.Errorf("invalid seq number want %d, got %d", b1.seq, b2.seq) + } + if b1.len() != b2.len() { + t.Fatalf("invalid record length want %d, got %d", b1.len(), b2.len()) + } + p1, p2 := new(testBatch), new(testBatch) + err := b1.replay(p1) + if err != nil { + t.Fatal("error when replaying batch 1: ", err) + } + err = b2.replay(p2) + if err != nil { + t.Fatal("error when replaying batch 2: ", err) + } + for i := range p1.rec { + r1, r2 := p1.rec[i], p2.rec[i] + if r1.t != r2.t { + t.Errorf("invalid type on record '%d' want %d, got %d", i, r1.t, r2.t) + } + if !bytes.Equal(r1.key, r2.key) { + t.Errorf("invalid key on record '%d' want %s, got %s", i, string(r1.key), string(r2.key)) + } + if r1.t == tVal { + if !bytes.Equal(r1.value, r2.value) { + t.Errorf("invalid value on record '%d' want %s, got %s", i, string(r1.value), string(r2.value)) + } + } + } +} + +func TestBatch_EncodeDecode(t *testing.T) { + b1 := new(Batch) + b1.seq = 10009 + b1.Put([]byte("key1"), []byte("value1")) + b1.Put([]byte("key2"), []byte("value2")) + b1.Delete([]byte("key1")) + b1.Put([]byte("k"), []byte("")) + b1.Put([]byte("zzzzzzzzzzz"), []byte("zzzzzzzzzzzzzzzzzzzzzzzz")) + b1.Delete([]byte("key10000")) + b1.Delete([]byte("k")) + buf := b1.encode() + b2 := new(Batch) + err := b2.decode(buf) + if err != nil { + t.Error("error when decoding batch: ", err) + } + compareBatch(t, b1, b2) +} + +func TestBatch_Append(t *testing.T) { + b1 := new(Batch) + b1.seq = 10009 + b1.Put([]byte("key1"), []byte("value1")) + b1.Put([]byte("key2"), []byte("value2")) + b1.Delete([]byte("key1")) + b1.Put([]byte("foo"), []byte("foovalue")) + b1.Put([]byte("bar"), []byte("barvalue")) + b2a := new(Batch) + b2a.seq = 10009 + b2a.Put([]byte("key1"), []byte("value1")) + b2a.Put([]byte("key2"), []byte("value2")) + b2a.Delete([]byte("key1")) + b2b := new(Batch) + b2b.Put([]byte("foo"), []byte("foovalue")) + b2b.Put([]byte("bar"), []byte("barvalue")) + b2a.append(b2b) + compareBatch(t, b1, b2a) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/bench_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/bench_test.go new file mode 100644 index 00000000..ea6801a8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/bench_test.go @@ -0,0 +1,461 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "bytes" + "fmt" + "math/rand" + "os" + "path/filepath" + "runtime" + "testing" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" +) + +func randomString(r *rand.Rand, n int) []byte { + b := new(bytes.Buffer) + for i := 0; i < n; i++ { + b.WriteByte(' ' + byte(r.Intn(95))) + } + return b.Bytes() +} + +func compressibleStr(r *rand.Rand, frac float32, n int) []byte { + nn := int(float32(n) * frac) + rb := randomString(r, nn) + b := make([]byte, 0, n+nn) + for len(b) < n { + b = append(b, rb...) + } + return b[:n] +} + +type valueGen struct { + src []byte + pos int +} + +func newValueGen(frac float32) *valueGen { + v := new(valueGen) + r := rand.New(rand.NewSource(301)) + v.src = make([]byte, 0, 1048576+100) + for len(v.src) < 1048576 { + v.src = append(v.src, compressibleStr(r, frac, 100)...) + } + return v +} + +func (v *valueGen) get(n int) []byte { + if v.pos+n > len(v.src) { + v.pos = 0 + } + v.pos += n + return v.src[v.pos-n : v.pos] +} + +var benchDB = filepath.Join(os.TempDir(), fmt.Sprintf("goleveldbbench-%d", os.Getuid())) + +type dbBench struct { + b *testing.B + stor storage.Storage + db *DB + + o *opt.Options + ro *opt.ReadOptions + wo *opt.WriteOptions + + keys, values [][]byte +} + +func openDBBench(b *testing.B, noCompress bool) *dbBench { + _, err := os.Stat(benchDB) + if err == nil { + err = os.RemoveAll(benchDB) + if err != nil { + b.Fatal("cannot remove old db: ", err) + } + } + + p := &dbBench{ + b: b, + o: &opt.Options{}, + ro: &opt.ReadOptions{}, + wo: &opt.WriteOptions{}, + } + p.stor, err = storage.OpenFile(benchDB) + if err != nil { + b.Fatal("cannot open stor: ", err) + } + if noCompress { + p.o.Compression = opt.NoCompression + } + + p.db, err = Open(p.stor, p.o) + if err != nil { + b.Fatal("cannot open db: ", err) + } + + runtime.GOMAXPROCS(runtime.NumCPU()) + return p +} + +func (p *dbBench) reopen() { + p.db.Close() + var err error + p.db, err = Open(p.stor, p.o) + if err != nil { + p.b.Fatal("Reopen: got error: ", err) + } +} + +func (p *dbBench) populate(n int) { + p.keys, p.values = make([][]byte, n), make([][]byte, n) + v := newValueGen(0.5) + for i := range p.keys { + p.keys[i], p.values[i] = []byte(fmt.Sprintf("%016d", i)), v.get(100) + } +} + +func (p *dbBench) randomize() { + m := len(p.keys) + times := m * 2 + r1, r2 := rand.New(rand.NewSource(0xdeadbeef)), rand.New(rand.NewSource(0xbeefface)) + for n := 0; n < times; n++ { + i, j := r1.Int()%m, r2.Int()%m + if i == j { + continue + } + p.keys[i], p.keys[j] = p.keys[j], p.keys[i] + p.values[i], p.values[j] = p.values[j], p.values[i] + } +} + +func (p *dbBench) writes(perBatch int) { + b := p.b + db := p.db + + n := len(p.keys) + m := n / perBatch + if n%perBatch > 0 { + m++ + } + batches := make([]Batch, m) + j := 0 + for i := range batches { + first := true + for ; j < n && ((j+1)%perBatch != 0 || first); j++ { + first = false + batches[i].Put(p.keys[j], p.values[j]) + } + } + runtime.GC() + + b.ResetTimer() + b.StartTimer() + for i := range batches { + err := db.Write(&(batches[i]), p.wo) + if err != nil { + b.Fatal("write failed: ", err) + } + } + b.StopTimer() + b.SetBytes(116) +} + +func (p *dbBench) drop() { + p.keys, p.values = nil, nil + runtime.GC() +} + +func (p *dbBench) puts() { + b := p.b + db := p.db + + b.ResetTimer() + b.StartTimer() + for i := range p.keys { + err := db.Put(p.keys[i], p.values[i], p.wo) + if err != nil { + b.Fatal("put failed: ", err) + } + } + b.StopTimer() + b.SetBytes(116) +} + +func (p *dbBench) fill() { + b := p.b + db := p.db + + perBatch := 10000 + batch := new(Batch) + for i, n := 0, len(p.keys); i < n; { + first := true + for ; i < n && ((i+1)%perBatch != 0 || first); i++ { + first = false + batch.Put(p.keys[i], p.values[i]) + } + err := db.Write(batch, p.wo) + if err != nil { + b.Fatal("write failed: ", err) + } + batch.Reset() + } +} + +func (p *dbBench) gets() { + b := p.b + db := p.db + + b.ResetTimer() + for i := range p.keys { + _, err := db.Get(p.keys[i], p.ro) + if err != nil { + b.Error("got error: ", err) + } + } + b.StopTimer() +} + +func (p *dbBench) seeks() { + b := p.b + + iter := p.newIter() + defer iter.Release() + b.ResetTimer() + for i := range p.keys { + if !iter.Seek(p.keys[i]) { + b.Error("value not found for: ", string(p.keys[i])) + } + } + b.StopTimer() +} + +func (p *dbBench) newIter() iterator.Iterator { + iter := p.db.NewIterator(nil, p.ro) + err := iter.Error() + if err != nil { + p.b.Fatal("cannot create iterator: ", err) + } + return iter +} + +func (p *dbBench) close() { + p.db.Close() + p.stor.Close() + os.RemoveAll(benchDB) + p.db = nil + p.keys = nil + p.values = nil + runtime.GC() + runtime.GOMAXPROCS(1) +} + +func BenchmarkDBWrite(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.writes(1) + p.close() +} + +func BenchmarkDBWriteBatch(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.writes(1000) + p.close() +} + +func BenchmarkDBWriteUncompressed(b *testing.B) { + p := openDBBench(b, true) + p.populate(b.N) + p.writes(1) + p.close() +} + +func BenchmarkDBWriteBatchUncompressed(b *testing.B) { + p := openDBBench(b, true) + p.populate(b.N) + p.writes(1000) + p.close() +} + +func BenchmarkDBWriteRandom(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.randomize() + p.writes(1) + p.close() +} + +func BenchmarkDBWriteRandomSync(b *testing.B) { + p := openDBBench(b, false) + p.wo.Sync = true + p.populate(b.N) + p.writes(1) + p.close() +} + +func BenchmarkDBOverwrite(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.writes(1) + p.writes(1) + p.close() +} + +func BenchmarkDBOverwriteRandom(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.writes(1) + p.randomize() + p.writes(1) + p.close() +} + +func BenchmarkDBPut(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.puts() + p.close() +} + +func BenchmarkDBRead(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.drop() + + iter := p.newIter() + b.ResetTimer() + for iter.Next() { + } + iter.Release() + b.StopTimer() + b.SetBytes(116) + p.close() +} + +func BenchmarkDBReadGC(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + + iter := p.newIter() + b.ResetTimer() + for iter.Next() { + } + iter.Release() + b.StopTimer() + b.SetBytes(116) + p.close() +} + +func BenchmarkDBReadUncompressed(b *testing.B) { + p := openDBBench(b, true) + p.populate(b.N) + p.fill() + p.drop() + + iter := p.newIter() + b.ResetTimer() + for iter.Next() { + } + iter.Release() + b.StopTimer() + b.SetBytes(116) + p.close() +} + +func BenchmarkDBReadTable(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.reopen() + p.drop() + + iter := p.newIter() + b.ResetTimer() + for iter.Next() { + } + iter.Release() + b.StopTimer() + b.SetBytes(116) + p.close() +} + +func BenchmarkDBReadReverse(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.drop() + + iter := p.newIter() + b.ResetTimer() + iter.Last() + for iter.Prev() { + } + iter.Release() + b.StopTimer() + b.SetBytes(116) + p.close() +} + +func BenchmarkDBReadReverseTable(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.reopen() + p.drop() + + iter := p.newIter() + b.ResetTimer() + iter.Last() + for iter.Prev() { + } + iter.Release() + b.StopTimer() + b.SetBytes(116) + p.close() +} + +func BenchmarkDBSeek(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.seeks() + p.close() +} + +func BenchmarkDBSeekRandom(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.randomize() + p.seeks() + p.close() +} + +func BenchmarkDBGet(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.gets() + p.close() +} + +func BenchmarkDBGetRandom(b *testing.B) { + p := openDBBench(b, false) + p.populate(b.N) + p.fill() + p.randomize() + p.gets() + p.close() +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/cache.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/cache.go new file mode 100644 index 00000000..9b6a7497 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/cache.go @@ -0,0 +1,125 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package cache provides interface and implementation of a cache algorithms. +package cache + +import ( + "sync/atomic" +) + +// SetFunc used by Namespace.Get method to create a cache object. SetFunc +// may return ok false, in that case the cache object will not be created. +type SetFunc func() (ok bool, value interface{}, charge int, fin SetFin) + +// SetFin will be called when corresponding cache object are released. +type SetFin func() + +// DelFin will be called when corresponding cache object are released. +// DelFin will be called after SetFin. The exist is true if the corresponding +// cache object is actually exist in the cache tree. +type DelFin func(exist bool) + +// PurgeFin will be called when corresponding cache object are released. +// PurgeFin will be called after SetFin. If PurgeFin present DelFin will +// not be executed but passed to the PurgeFin, it is up to the caller +// to call it or not. +type PurgeFin func(ns, key uint64, delfin DelFin) + +// Cache is a cache tree. +type Cache interface { + // SetCapacity sets cache capacity. + SetCapacity(capacity int) + + // GetNamespace gets or creates a cache namespace for the given id. + GetNamespace(id uint64) Namespace + + // Purge purges all cache namespaces, read Namespace.Purge method documentation. + Purge(fin PurgeFin) + + // Zap zaps all cache namespaces, read Namespace.Zap method documentation. + Zap(closed bool) +} + +// Namespace is a cache namespace. +type Namespace interface { + // Get gets cache object for the given key. The given SetFunc (if not nil) will + // be called if the given key does not exist. + // If the given key does not exist, SetFunc is nil or SetFunc return ok false, Get + // will return ok false. + Get(key uint64, setf SetFunc) (obj Object, ok bool) + + // Get deletes cache object for the given key. If exist the cache object will + // be deleted later when all of its handles have been released (i.e. no one use + // it anymore) and the given DelFin (if not nil) will finally be executed. If + // such cache object does not exist the given DelFin will be executed anyway. + // + // Delete returns true if such cache object exist. + Delete(key uint64, fin DelFin) bool + + // Purge deletes all cache objects, read Delete method documentation. + Purge(fin PurgeFin) + + // Zap detaches the namespace from the cache tree and delete all its cache + // objects. The cache objects deletion and finalizers execution are happen + // immediately, even if its existing handles haven't yet been released. + // A zapped namespace can't never be filled again. + // If closed is false then the Get function will always call the given SetFunc + // if it is not nil, but resultant of the SetFunc will not be cached. + Zap(closed bool) +} + +// Object is a cache object. +type Object interface { + // Release releases the cache object. Other methods should not be called + // after the cache object has been released. + Release() + + // Value returns value of the cache object. + Value() interface{} +} + +// Namespace state. +type nsState int + +const ( + nsEffective nsState = iota + nsZapped + nsClosed +) + +// Node state. +type nodeState int + +const ( + nodeEffective nodeState = iota + nodeEvicted + nodeRemoved +) + +// Fake object. +type fakeObject struct { + value interface{} + fin func() + once uint32 +} + +func (o *fakeObject) Value() interface{} { + if atomic.LoadUint32(&o.once) == 0 { + return o.value + } + return nil +} + +func (o *fakeObject) Release() { + if !atomic.CompareAndSwapUint32(&o.once, 0, 1) { + return + } + if o.fin != nil { + o.fin() + o.fin = nil + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/cache_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/cache_test.go new file mode 100644 index 00000000..07a9939b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/cache_test.go @@ -0,0 +1,236 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package cache + +import ( + "math/rand" + "testing" +) + +func set(ns Namespace, key uint64, value interface{}, charge int, fin func()) Object { + obj, _ := ns.Get(key, func() (bool, interface{}, int, SetFin) { + return true, value, charge, fin + }) + return obj +} + +func TestCache_HitMiss(t *testing.T) { + cases := []struct { + key uint64 + value string + }{ + {1, "vvvvvvvvv"}, + {100, "v1"}, + {0, "v2"}, + {12346, "v3"}, + {777, "v4"}, + {999, "v5"}, + {7654, "v6"}, + {2, "v7"}, + {3, "v8"}, + {9, "v9"}, + } + + setfin := 0 + c := NewLRUCache(1000) + ns := c.GetNamespace(0) + for i, x := range cases { + set(ns, x.key, x.value, len(x.value), func() { + setfin++ + }).Release() + for j, y := range cases { + r, ok := ns.Get(y.key, nil) + if j <= i { + // should hit + if !ok { + t.Errorf("case '%d' iteration '%d' is miss", i, j) + } else if r.Value().(string) != y.value { + t.Errorf("case '%d' iteration '%d' has invalid value got '%s', want '%s'", i, j, r.Value().(string), y.value) + } + } else { + // should miss + if ok { + t.Errorf("case '%d' iteration '%d' is hit , value '%s'", i, j, r.Value().(string)) + } + } + if ok { + r.Release() + } + } + } + + for i, x := range cases { + finalizerOk := false + ns.Delete(x.key, func(exist bool) { + finalizerOk = true + }) + + if !finalizerOk { + t.Errorf("case %d delete finalizer not executed", i) + } + + for j, y := range cases { + r, ok := ns.Get(y.key, nil) + if j > i { + // should hit + if !ok { + t.Errorf("case '%d' iteration '%d' is miss", i, j) + } else if r.Value().(string) != y.value { + t.Errorf("case '%d' iteration '%d' has invalid value got '%s', want '%s'", i, j, r.Value().(string), y.value) + } + } else { + // should miss + if ok { + t.Errorf("case '%d' iteration '%d' is hit, value '%s'", i, j, r.Value().(string)) + } + } + if ok { + r.Release() + } + } + } + + if setfin != len(cases) { + t.Errorf("some set finalizer may not be executed, want=%d got=%d", len(cases), setfin) + } +} + +func TestLRUCache_Eviction(t *testing.T) { + c := NewLRUCache(12) + ns := c.GetNamespace(0) + o1 := set(ns, 1, 1, 1, nil) + set(ns, 2, 2, 1, nil).Release() + set(ns, 3, 3, 1, nil).Release() + set(ns, 4, 4, 1, nil).Release() + set(ns, 5, 5, 1, nil).Release() + if r, ok := ns.Get(2, nil); ok { // 1,3,4,5,2 + r.Release() + } + set(ns, 9, 9, 10, nil).Release() // 5,2,9 + + for _, x := range []uint64{9, 2, 5, 1} { + r, ok := ns.Get(x, nil) + if !ok { + t.Errorf("miss for key '%d'", x) + } else { + if r.Value().(int) != int(x) { + t.Errorf("invalid value for key '%d' want '%d', got '%d'", x, x, r.Value().(int)) + } + r.Release() + } + } + o1.Release() + for _, x := range []uint64{1, 2, 5} { + r, ok := ns.Get(x, nil) + if !ok { + t.Errorf("miss for key '%d'", x) + } else { + if r.Value().(int) != int(x) { + t.Errorf("invalid value for key '%d' want '%d', got '%d'", x, x, r.Value().(int)) + } + r.Release() + } + } + for _, x := range []uint64{3, 4, 9} { + r, ok := ns.Get(x, nil) + if ok { + t.Errorf("hit for key '%d'", x) + if r.Value().(int) != int(x) { + t.Errorf("invalid value for key '%d' want '%d', got '%d'", x, x, r.Value().(int)) + } + r.Release() + } + } +} + +func TestLRUCache_SetGet(t *testing.T) { + c := NewLRUCache(13) + ns := c.GetNamespace(0) + for i := 0; i < 200; i++ { + n := uint64(rand.Intn(99999) % 20) + set(ns, n, n, 1, nil).Release() + if p, ok := ns.Get(n, nil); ok { + if p.Value() == nil { + t.Errorf("key '%d' contains nil value", n) + } else { + got := p.Value().(uint64) + if got != n { + t.Errorf("invalid value for key '%d' want '%d', got '%d'", n, n, got) + } + } + p.Release() + } else { + t.Errorf("key '%d' doesn't exist", n) + } + } +} + +func TestLRUCache_Purge(t *testing.T) { + c := NewLRUCache(3) + ns1 := c.GetNamespace(0) + o1 := set(ns1, 1, 1, 1, nil) + o2 := set(ns1, 2, 2, 1, nil) + ns1.Purge(nil) + set(ns1, 3, 3, 1, nil).Release() + for _, x := range []uint64{1, 2, 3} { + r, ok := ns1.Get(x, nil) + if !ok { + t.Errorf("miss for key '%d'", x) + } else { + if r.Value().(int) != int(x) { + t.Errorf("invalid value for key '%d' want '%d', got '%d'", x, x, r.Value().(int)) + } + r.Release() + } + } + o1.Release() + o2.Release() + for _, x := range []uint64{1, 2} { + r, ok := ns1.Get(x, nil) + if ok { + t.Errorf("hit for key '%d'", x) + if r.Value().(int) != int(x) { + t.Errorf("invalid value for key '%d' want '%d', got '%d'", x, x, r.Value().(int)) + } + r.Release() + } + } +} + +func BenchmarkLRUCache_SetRelease(b *testing.B) { + capacity := b.N / 100 + if capacity <= 0 { + capacity = 10 + } + c := NewLRUCache(capacity) + ns := c.GetNamespace(0) + b.ResetTimer() + for i := uint64(0); i < uint64(b.N); i++ { + set(ns, i, nil, 1, nil).Release() + } +} + +func BenchmarkLRUCache_SetReleaseTwice(b *testing.B) { + capacity := b.N / 100 + if capacity <= 0 { + capacity = 10 + } + c := NewLRUCache(capacity) + ns := c.GetNamespace(0) + b.ResetTimer() + + na := b.N / 2 + nb := b.N - na + + for i := uint64(0); i < uint64(na); i++ { + set(ns, i, nil, 1, nil).Release() + } + + for i := uint64(0); i < uint64(nb); i++ { + set(ns, i, nil, 1, nil).Release() + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/empty_cache.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/empty_cache.go new file mode 100644 index 00000000..1fbf8145 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/empty_cache.go @@ -0,0 +1,246 @@ +// Copyright (c) 2013, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package cache + +import ( + "sync" + "sync/atomic" +) + +type emptyCache struct { + sync.Mutex + table map[uint64]*emptyNS +} + +// NewEmptyCache creates a new initialized empty cache. +func NewEmptyCache() Cache { + return &emptyCache{ + table: make(map[uint64]*emptyNS), + } +} + +func (c *emptyCache) GetNamespace(id uint64) Namespace { + c.Lock() + defer c.Unlock() + + if ns, ok := c.table[id]; ok { + return ns + } + + ns := &emptyNS{ + cache: c, + id: id, + table: make(map[uint64]*emptyNode), + } + c.table[id] = ns + return ns +} + +func (c *emptyCache) Purge(fin PurgeFin) { + c.Lock() + for _, ns := range c.table { + ns.purgeNB(fin) + } + c.Unlock() +} + +func (c *emptyCache) Zap(closed bool) { + c.Lock() + for _, ns := range c.table { + ns.zapNB(closed) + } + c.table = make(map[uint64]*emptyNS) + c.Unlock() +} + +func (*emptyCache) SetCapacity(capacity int) {} + +type emptyNS struct { + cache *emptyCache + id uint64 + table map[uint64]*emptyNode + state nsState +} + +func (ns *emptyNS) Get(key uint64, setf SetFunc) (o Object, ok bool) { + ns.cache.Lock() + + switch ns.state { + case nsZapped: + ns.cache.Unlock() + if setf == nil { + return + } + + var value interface{} + var fin func() + ok, value, _, fin = setf() + if ok { + o = &fakeObject{ + value: value, + fin: fin, + } + } + return + case nsClosed: + ns.cache.Unlock() + return + } + + n, ok := ns.table[key] + if ok { + n.ref++ + } else { + if setf == nil { + ns.cache.Unlock() + return + } + + var value interface{} + var fin func() + ok, value, _, fin = setf() + if !ok { + ns.cache.Unlock() + return + } + + n = &emptyNode{ + ns: ns, + key: key, + value: value, + setfin: fin, + ref: 1, + } + ns.table[key] = n + } + + ns.cache.Unlock() + o = &emptyObject{node: n} + return +} + +func (ns *emptyNS) Delete(key uint64, fin DelFin) bool { + ns.cache.Lock() + + if ns.state != nsEffective { + ns.cache.Unlock() + if fin != nil { + fin(false) + } + return false + } + + n, ok := ns.table[key] + if !ok { + ns.cache.Unlock() + if fin != nil { + fin(false) + } + return false + } + n.delfin = fin + ns.cache.Unlock() + return true +} + +func (ns *emptyNS) purgeNB(fin PurgeFin) { + if ns.state != nsEffective { + return + } + for _, n := range ns.table { + n.purgefin = fin + } +} + +func (ns *emptyNS) Purge(fin PurgeFin) { + ns.cache.Lock() + ns.purgeNB(fin) + ns.cache.Unlock() +} + +func (ns *emptyNS) zapNB(closed bool) { + if ns.state != nsEffective { + return + } + for _, n := range ns.table { + n.execFin() + } + if closed { + ns.state = nsClosed + } else { + ns.state = nsZapped + } + ns.table = nil +} + +func (ns *emptyNS) Zap(closed bool) { + ns.cache.Lock() + ns.zapNB(closed) + delete(ns.cache.table, ns.id) + ns.cache.Unlock() +} + +type emptyNode struct { + ns *emptyNS + key uint64 + value interface{} + ref int + setfin SetFin + delfin DelFin + purgefin PurgeFin +} + +func (n *emptyNode) execFin() { + if n.setfin != nil { + n.setfin() + n.setfin = nil + } + if n.purgefin != nil { + n.purgefin(n.ns.id, n.key, n.delfin) + n.delfin = nil + n.purgefin = nil + } else if n.delfin != nil { + n.delfin(true) + n.delfin = nil + } +} + +func (n *emptyNode) evict() { + n.ns.cache.Lock() + n.ref-- + if n.ref == 0 { + if n.ns.state == nsEffective { + // Remove elem. + delete(n.ns.table, n.key) + // Execute finalizer. + n.execFin() + } + } else if n.ref < 0 { + panic("leveldb/cache: emptyNode: negative node reference") + } + n.ns.cache.Unlock() +} + +type emptyObject struct { + node *emptyNode + once uint32 +} + +func (o *emptyObject) Value() interface{} { + if atomic.LoadUint32(&o.once) == 0 { + return o.node.value + } + return nil +} + +func (o *emptyObject) Release() { + if !atomic.CompareAndSwapUint32(&o.once, 0, 1) { + return + } + o.node.evict() + o.node = nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/lru_cache.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/lru_cache.go new file mode 100644 index 00000000..3c98e076 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/cache/lru_cache.go @@ -0,0 +1,354 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package cache + +import ( + "sync" + "sync/atomic" +) + +// lruCache represent a LRU cache state. +type lruCache struct { + sync.Mutex + + recent lruNode + table map[uint64]*lruNs + capacity int + size int +} + +// NewLRUCache creates a new initialized LRU cache with the given capacity. +func NewLRUCache(capacity int) Cache { + c := &lruCache{ + table: make(map[uint64]*lruNs), + capacity: capacity, + } + c.recent.rNext = &c.recent + c.recent.rPrev = &c.recent + return c +} + +// SetCapacity set cache capacity. +func (c *lruCache) SetCapacity(capacity int) { + c.Lock() + c.capacity = capacity + c.evict() + c.Unlock() +} + +// GetNamespace return namespace object for given id. +func (c *lruCache) GetNamespace(id uint64) Namespace { + c.Lock() + defer c.Unlock() + + if p, ok := c.table[id]; ok { + return p + } + + p := &lruNs{ + lru: c, + id: id, + table: make(map[uint64]*lruNode), + } + c.table[id] = p + return p +} + +// Purge purge entire cache. +func (c *lruCache) Purge(fin PurgeFin) { + c.Lock() + for _, ns := range c.table { + ns.purgeNB(fin) + } + c.Unlock() +} + +func (c *lruCache) Zap(closed bool) { + c.Lock() + for _, ns := range c.table { + ns.zapNB(closed) + } + c.table = make(map[uint64]*lruNs) + c.Unlock() +} + +func (c *lruCache) evict() { + top := &c.recent + for n := c.recent.rPrev; c.size > c.capacity && n != top; { + n.state = nodeEvicted + n.rRemove() + n.evictNB() + c.size -= n.charge + n = c.recent.rPrev + } +} + +type lruNs struct { + lru *lruCache + id uint64 + table map[uint64]*lruNode + state nsState +} + +func (ns *lruNs) Get(key uint64, setf SetFunc) (o Object, ok bool) { + lru := ns.lru + lru.Lock() + + switch ns.state { + case nsZapped: + lru.Unlock() + if setf == nil { + return + } + + var value interface{} + var fin func() + ok, value, _, fin = setf() + if ok { + o = &fakeObject{ + value: value, + fin: fin, + } + } + return + case nsClosed: + lru.Unlock() + return + } + + n, ok := ns.table[key] + if ok { + switch n.state { + case nodeEvicted: + // Insert to recent list. + n.state = nodeEffective + n.ref++ + lru.size += n.charge + lru.evict() + fallthrough + case nodeEffective: + // Bump to front + n.rRemove() + n.rInsert(&lru.recent) + } + n.ref++ + } else { + if setf == nil { + lru.Unlock() + return + } + + var value interface{} + var charge int + var fin func() + ok, value, charge, fin = setf() + if !ok { + lru.Unlock() + return + } + + n = &lruNode{ + ns: ns, + key: key, + value: value, + charge: charge, + setfin: fin, + ref: 2, + } + ns.table[key] = n + n.rInsert(&lru.recent) + + lru.size += charge + lru.evict() + } + + lru.Unlock() + o = &lruObject{node: n} + return +} + +func (ns *lruNs) Delete(key uint64, fin DelFin) bool { + lru := ns.lru + lru.Lock() + + if ns.state != nsEffective { + lru.Unlock() + if fin != nil { + fin(false) + } + return false + } + + n, ok := ns.table[key] + if !ok { + lru.Unlock() + if fin != nil { + fin(false) + } + return false + } + + n.delfin = fin + switch n.state { + case nodeRemoved: + lru.Unlock() + return false + case nodeEffective: + lru.size -= n.charge + n.rRemove() + n.evictNB() + } + n.state = nodeRemoved + + lru.Unlock() + return true +} + +func (ns *lruNs) purgeNB(fin PurgeFin) { + lru := ns.lru + if ns.state != nsEffective { + return + } + + for _, n := range ns.table { + n.purgefin = fin + if n.state == nodeEffective { + lru.size -= n.charge + n.rRemove() + n.evictNB() + } + n.state = nodeRemoved + } +} + +func (ns *lruNs) Purge(fin PurgeFin) { + ns.lru.Lock() + ns.purgeNB(fin) + ns.lru.Unlock() +} + +func (ns *lruNs) zapNB(closed bool) { + lru := ns.lru + if ns.state != nsEffective { + return + } + + if closed { + ns.state = nsClosed + } else { + ns.state = nsZapped + } + for _, n := range ns.table { + if n.state == nodeEffective { + lru.size -= n.charge + n.rRemove() + } + n.state = nodeRemoved + n.execFin() + } + ns.table = nil +} + +func (ns *lruNs) Zap(closed bool) { + ns.lru.Lock() + ns.zapNB(closed) + delete(ns.lru.table, ns.id) + ns.lru.Unlock() +} + +type lruNode struct { + ns *lruNs + + rNext, rPrev *lruNode + + key uint64 + value interface{} + charge int + ref int + state nodeState + setfin SetFin + delfin DelFin + purgefin PurgeFin +} + +func (n *lruNode) rInsert(at *lruNode) { + x := at.rNext + at.rNext = n + n.rPrev = at + n.rNext = x + x.rPrev = n +} + +func (n *lruNode) rRemove() bool { + // only remove if not already removed + if n.rPrev == nil { + return false + } + + n.rPrev.rNext = n.rNext + n.rNext.rPrev = n.rPrev + n.rPrev = nil + n.rNext = nil + + return true +} + +func (n *lruNode) execFin() { + if n.setfin != nil { + n.setfin() + n.setfin = nil + } + if n.purgefin != nil { + n.purgefin(n.ns.id, n.key, n.delfin) + n.delfin = nil + n.purgefin = nil + } else if n.delfin != nil { + n.delfin(true) + n.delfin = nil + } +} + +func (n *lruNode) evictNB() { + n.ref-- + if n.ref == 0 { + if n.ns.state == nsEffective { + // remove elem + delete(n.ns.table, n.key) + // execute finalizer + n.execFin() + } + } else if n.ref < 0 { + panic("leveldb/cache: lruCache: negative node reference") + } +} + +func (n *lruNode) evict() { + n.ns.lru.Lock() + n.evictNB() + n.ns.lru.Unlock() +} + +type lruObject struct { + node *lruNode + once uint32 +} + +func (o *lruObject) Value() interface{} { + if atomic.LoadUint32(&o.once) == 0 { + return o.node.value + } + return nil +} + +func (o *lruObject) Release() { + if !atomic.CompareAndSwapUint32(&o.once, 0, 1) { + return + } + + o.node.evict() + o.node = nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer.go new file mode 100644 index 00000000..aed84e00 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer.go @@ -0,0 +1,61 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import "github.com/syndtr/goleveldb/leveldb/comparer" + +type iComparer struct { + cmp comparer.Comparer +} + +func (p *iComparer) Name() string { + return p.cmp.Name() +} + +func (p *iComparer) Compare(a, b []byte) int { + ia, ib := iKey(a), iKey(b) + r := p.cmp.Compare(ia.ukey(), ib.ukey()) + if r == 0 { + an, bn := ia.num(), ib.num() + if an > bn { + r = -1 + } else if an < bn { + r = 1 + } + } + return r +} + +func (p *iComparer) Separator(dst, a, b []byte) []byte { + ua, ub := iKey(a).ukey(), iKey(b).ukey() + dst = p.cmp.Separator(dst, ua, ub) + if dst == nil { + return nil + } + if len(dst) < len(ua) && p.cmp.Compare(ua, dst) < 0 { + dst = append(dst, kMaxNumBytes...) + } else { + // Did not close possibilities that n maybe longer than len(ub). + dst = append(dst, a[len(a)-8:]...) + } + return dst +} + +func (p *iComparer) Successor(dst, b []byte) []byte { + ub := iKey(b).ukey() + dst = p.cmp.Successor(dst, ub) + if dst == nil { + return nil + } + if len(dst) < len(ub) && p.cmp.Compare(ub, dst) < 0 { + dst = append(dst, kMaxNumBytes...) + } else { + // Did not close possibilities that n maybe longer than len(ub). + dst = append(dst, b[len(b)-8:]...) + } + return dst +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer/bytes_comparer.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer/bytes_comparer.go new file mode 100644 index 00000000..14dddf88 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer/bytes_comparer.go @@ -0,0 +1,51 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package comparer + +import "bytes" + +type bytesComparer struct{} + +func (bytesComparer) Compare(a, b []byte) int { + return bytes.Compare(a, b) +} + +func (bytesComparer) Name() string { + return "leveldb.BytewiseComparator" +} + +func (bytesComparer) Separator(dst, a, b []byte) []byte { + i, n := 0, len(a) + if n > len(b) { + n = len(b) + } + for ; i < n && a[i] == b[i]; i++ { + } + if i >= n { + // Do not shorten if one string is a prefix of the other + } else if c := a[i]; c < 0xff && c+1 < b[i] { + dst = append(dst, a[:i+1]...) + dst[i]++ + return dst + } + return nil +} + +func (bytesComparer) Successor(dst, b []byte) []byte { + for i, c := range b { + if c != 0xff { + dst = append(dst, b[:i+1]...) + dst[i]++ + return dst + } + } + return nil +} + +// DefaultComparer are default implementation of the Comparer interface. +// It uses the natural ordering, consistent with bytes.Compare. +var DefaultComparer = bytesComparer{} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer/comparer.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer/comparer.go new file mode 100644 index 00000000..14a28f16 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/comparer/comparer.go @@ -0,0 +1,57 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package comparer provides interface and implementation for ordering +// sets of data. +package comparer + +// BasicComparer is the interface that wraps the basic Compare method. +type BasicComparer interface { + // Compare returns -1, 0, or +1 depending on whether a is 'less than', + // 'equal to' or 'greater than' b. The two arguments can only be 'equal' + // if their contents are exactly equal. Furthermore, the empty slice + // must be 'less than' any non-empty slice. + Compare(a, b []byte) int +} + +// Comparer defines a total ordering over the space of []byte keys: a 'less +// than' relationship. +type Comparer interface { + BasicComparer + + // Name returns name of the comparer. + // + // The Level-DB on-disk format stores the comparer name, and opening a + // database with a different comparer from the one it was created with + // will result in an error. + // + // An implementation to a new name whenever the comparer implementation + // changes in a way that will cause the relative ordering of any two keys + // to change. + // + // Names starting with "leveldb." are reserved and should not be used + // by any users of this package. + Name() string + + // Bellow are advanced functions used used to reduce the space requirements + // for internal data structures such as index blocks. + + // Separator appends a sequence of bytes x to dst such that a <= x && x < b, + // where 'less than' is consistent with Compare. An implementation should + // return nil if x equal to a. + // + // Either contents of a or b should not by any means modified. Doing so + // may cause corruption on the internal state. + Separator(dst, a, b []byte) []byte + + // Successor appends a sequence of bytes x to dst such that x >= b, where + // 'less than' is consistent with Compare. An implementation should return + // nil if x equal to b. + // + // Contents of b should not by any means modified. Doing so may cause + // corruption on the internal state. + Successor(dst, b []byte) []byte +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/config.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/config.go new file mode 100644 index 00000000..350b3a6e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/config.go @@ -0,0 +1,42 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +const ( + kNumLevels = 7 + + // Level-0 compaction is started when we hit this many files. + kL0_CompactionTrigger float64 = 4 + + // Soft limit on number of level-0 files. We slow down writes at this point. + kL0_SlowdownWritesTrigger = 8 + + // Maximum number of level-0 files. We stop writes at this point. + kL0_StopWritesTrigger = 12 + + // Maximum level to which a new compacted memdb is pushed if it + // does not create overlap. We try to push to level 2 to avoid the + // relatively expensive level 0=>1 compactions and to avoid some + // expensive manifest file operations. We do not push all the way to + // the largest level since that can generate a lot of wasted disk + // space if the same key space is being repeatedly overwritten. + kMaxMemCompactLevel = 2 + + // Maximum size of a table. + kMaxTableSize = 2 * 1048576 + + // Maximum bytes of overlaps in grandparent (i.e., level+2) before we + // stop building a single file in a level->level+1 compaction. + kMaxGrandParentOverlapBytes = 10 * kMaxTableSize + + // Maximum number of bytes in all compacted files. We avoid expanding + // the lower level file set of a compaction if it would make the + // total compaction cover more than this many bytes. + kExpCompactionMaxBytes = 25 * kMaxTableSize + + kWriteBufferPercent = 110 +) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/corrupt_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/corrupt_test.go new file mode 100644 index 00000000..1f8552f9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/corrupt_test.go @@ -0,0 +1,340 @@ +// Copyright (c) 2013, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "bytes" + "fmt" + "io" + "testing" + + "github.com/syndtr/goleveldb/leveldb/cache" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" +) + +const ctValSize = 1000 + +type dbCorruptHarness struct { + dbHarness +} + +func newDbCorruptHarness(t *testing.T) *dbCorruptHarness { + h := new(dbCorruptHarness) + h.init(t, &opt.Options{ + BlockCache: cache.NewLRUCache(100), + Strict: opt.StrictJournalChecksum, + }) + return h +} + +func (h *dbCorruptHarness) recover() { + p := &h.dbHarness + t := p.t + + var err error + p.db, err = Recover(h.stor, h.o) + if err != nil { + t.Fatal("Repair: got error: ", err) + } +} + +func (h *dbCorruptHarness) build(n int) { + p := &h.dbHarness + t := p.t + db := p.db + + batch := new(Batch) + for i := 0; i < n; i++ { + batch.Reset() + batch.Put(tkey(i), tval(i, ctValSize)) + err := db.Write(batch, p.wo) + if err != nil { + t.Fatal("write error: ", err) + } + } +} + +func (h *dbCorruptHarness) corrupt(ft storage.FileType, offset, n int) { + p := &h.dbHarness + t := p.t + + var file storage.File + ff, _ := p.stor.GetFiles(ft) + for _, f := range ff { + if file == nil || f.Num() > file.Num() { + file = f + } + } + if file == nil { + t.Fatalf("no such file with type %q", ft) + } + + r, err := file.Open() + if err != nil { + t.Fatal("cannot open file: ", err) + } + x, err := r.Seek(0, 2) + if err != nil { + t.Fatal("cannot query file size: ", err) + } + m := int(x) + if _, err := r.Seek(0, 0); err != nil { + t.Fatal(err) + } + + if offset < 0 { + if -offset > m { + offset = 0 + } else { + offset = m + offset + } + } + if offset > m { + offset = m + } + if offset+n > m { + n = m - offset + } + + buf := make([]byte, m) + _, err = io.ReadFull(r, buf) + if err != nil { + t.Fatal("cannot read file: ", err) + } + r.Close() + + for i := 0; i < n; i++ { + buf[offset+i] ^= 0x80 + } + + err = file.Remove() + if err != nil { + t.Fatal("cannot remove old file: ", err) + } + w, err := file.Create() + if err != nil { + t.Fatal("cannot create new file: ", err) + } + _, err = w.Write(buf) + if err != nil { + t.Fatal("cannot write new file: ", err) + } + w.Close() +} + +func (h *dbCorruptHarness) removeAll(ft storage.FileType) { + ff, err := h.stor.GetFiles(ft) + if err != nil { + h.t.Fatal("get files: ", err) + } + for _, f := range ff { + if err := f.Remove(); err != nil { + h.t.Error("remove file: ", err) + } + } +} + +func (h *dbCorruptHarness) check(min, max int) { + p := &h.dbHarness + t := p.t + db := p.db + + var n, badk, badv, missed, good int + iter := db.NewIterator(nil, p.ro) + for iter.Next() { + k := 0 + fmt.Sscanf(string(iter.Key()), "%d", &k) + if k < n { + badk++ + continue + } + missed += k - n + n = k + 1 + if !bytes.Equal(iter.Value(), tval(k, ctValSize)) { + badv++ + } else { + good++ + } + } + err := iter.Error() + iter.Release() + t.Logf("want=%d..%d got=%d badkeys=%d badvalues=%d missed=%d, err=%v", + min, max, good, badk, badv, missed, err) + if good < min || good > max { + t.Errorf("good entries number not in range") + } +} + +func TestCorruptDB_Journal(t *testing.T) { + h := newDbCorruptHarness(t) + + h.build(100) + h.check(100, 100) + h.closeDB() + h.corrupt(storage.TypeJournal, 19, 1) + h.corrupt(storage.TypeJournal, 32*1024+1000, 1) + + h.openDB() + h.check(36, 36) + + h.close() +} + +func TestCorruptDB_Table(t *testing.T) { + h := newDbCorruptHarness(t) + + h.build(100) + h.compactMem() + h.compactRangeAt(0, "", "") + h.compactRangeAt(1, "", "") + h.closeDB() + h.corrupt(storage.TypeTable, 100, 1) + + h.openDB() + h.check(99, 99) + + h.close() +} + +func TestCorruptDB_TableIndex(t *testing.T) { + h := newDbCorruptHarness(t) + + h.build(10000) + h.compactMem() + h.closeDB() + h.corrupt(storage.TypeTable, -2000, 500) + + h.openDB() + h.check(5000, 9999) + + h.close() +} + +func TestCorruptDB_MissingManifest(t *testing.T) { + h := newDbCorruptHarness(t) + + h.build(1000) + h.compactMem() + h.build(1000) + h.compactMem() + h.build(1000) + h.compactMem() + h.build(1000) + h.compactMem() + h.closeDB() + + h.stor.SetIgnoreOpenErr(storage.TypeManifest) + h.removeAll(storage.TypeManifest) + h.openAssert(false) + h.stor.SetIgnoreOpenErr(0) + + h.recover() + h.check(1000, 1000) + h.build(1000) + h.compactMem() + h.closeDB() + + h.recover() + h.check(1000, 1000) + + h.close() +} + +func TestCorruptDB_SequenceNumberRecovery(t *testing.T) { + h := newDbCorruptHarness(t) + + h.put("foo", "v1") + h.put("foo", "v2") + h.put("foo", "v3") + h.put("foo", "v4") + h.put("foo", "v5") + h.closeDB() + + h.recover() + h.getVal("foo", "v5") + h.put("foo", "v6") + h.getVal("foo", "v6") + + h.reopenDB() + h.getVal("foo", "v6") + + h.close() +} + +func TestCorruptDB_SequenceNumberRecoveryTable(t *testing.T) { + h := newDbCorruptHarness(t) + + h.put("foo", "v1") + h.put("foo", "v2") + h.put("foo", "v3") + h.compactMem() + h.put("foo", "v4") + h.put("foo", "v5") + h.compactMem() + h.closeDB() + + h.recover() + h.getVal("foo", "v5") + h.put("foo", "v6") + h.getVal("foo", "v6") + + h.reopenDB() + h.getVal("foo", "v6") + + h.close() +} + +func TestCorruptDB_CorruptedManifest(t *testing.T) { + h := newDbCorruptHarness(t) + + h.put("foo", "hello") + h.compactMem() + h.compactRange("", "") + h.closeDB() + h.corrupt(storage.TypeManifest, 0, 1000) + h.openAssert(false) + + h.recover() + h.getVal("foo", "hello") + + h.close() +} + +func TestCorruptDB_CompactionInputError(t *testing.T) { + h := newDbCorruptHarness(t) + + h.build(10) + h.compactMem() + h.closeDB() + h.corrupt(storage.TypeTable, 100, 1) + + h.openDB() + h.check(9, 9) + + h.build(10000) + h.check(10000, 10000) + + h.close() +} + +func TestCorruptDB_UnrelatedKeys(t *testing.T) { + h := newDbCorruptHarness(t) + + h.build(10) + h.compactMem() + h.closeDB() + h.corrupt(storage.TypeTable, 100, 1) + + h.openDB() + h.put(string(tkey(1000)), string(tval(1000, ctValSize))) + h.getVal(string(tkey(1000)), string(tval(1000, ctValSize))) + h.compactMem() + h.getVal(string(tkey(1000)), string(tval(1000, ctValSize))) + + h.close() +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db.go new file mode 100644 index 00000000..2734f995 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db.go @@ -0,0 +1,730 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "errors" + "fmt" + "io" + "os" + "runtime" + "strings" + "sync" + "time" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/journal" + "github.com/syndtr/goleveldb/leveldb/memdb" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var ( + ErrNotFound = util.ErrNotFound + ErrSnapshotReleased = errors.New("leveldb: snapshot released") + ErrIterReleased = errors.New("leveldb: iterator released") + ErrClosed = errors.New("leveldb: closed") +) + +// DB is a LevelDB database. +type DB struct { + // Need 64-bit alignment. + seq uint64 + + s *session + + // MemDB + memMu sync.RWMutex + mem *memdb.DB + frozenMem *memdb.DB + journal *journal.Writer + journalWriter storage.Writer + journalFile storage.File + frozenJournalFile storage.File + frozenSeq uint64 + + // Snapshot + snapsMu sync.Mutex + snapsRoot snapshotElement + + // Write + writeCh chan *Batch + writeLockCh chan struct{} + writeAckCh chan error + journalCh chan *Batch + journalAckCh chan error + + // Compaction + compCh chan chan<- struct{} + compMemCh chan chan<- struct{} + compMemAckCh chan struct{} + compReqCh chan *cReq + compErrCh chan error + compErrSetCh chan error + compStats [kNumLevels]cStats + + // Close + closeWg sync.WaitGroup + closeCh chan struct{} + closed uint32 + closer io.Closer +} + +func openDB(s *session) (*DB, error) { + s.log("db@open opening") + start := time.Now() + db := &DB{ + s: s, + // Initial sequence + seq: s.stSeq, + // Write + writeCh: make(chan *Batch), + writeLockCh: make(chan struct{}, 1), + writeAckCh: make(chan error), + journalCh: make(chan *Batch), + journalAckCh: make(chan error), + // Compaction + compCh: make(chan chan<- struct{}, 1), + compMemCh: make(chan chan<- struct{}, 1), + compMemAckCh: make(chan struct{}, 1), + compReqCh: make(chan *cReq), + compErrCh: make(chan error), + compErrSetCh: make(chan error), + // Close + closeCh: make(chan struct{}), + } + db.initSnapshot() + db.compMemAckCh <- struct{}{} + + if err := db.recoverJournal(); err != nil { + return nil, err + } + + // Remove any obsolete files. + if err := db.cleanFiles(); err != nil { + return nil, err + } + + // Don't include compaction error goroutine into wait group. + go db.compactionError() + + db.closeWg.Add(2) + go db.compaction() + go db.writeJournal() + db.wakeCompaction(0) + + s.logf("db@open done T·%v", time.Since(start)) + + runtime.SetFinalizer(db, (*DB).Close) + return db, nil +} + +// Open opens or creates a DB for the given storage. +// The DB will be created if not exist, unless ErrorIfMissing is true. +// Also, if ErrorIfExist is true and the DB exist Open will returns +// os.ErrExist error. +// +// Open will return an error with type of ErrManifest if manifest file +// is missing or corrupted. Missing or corrupted manifest file can be +// recovered with Recover function. +// +// The DB must be closed after use, by calling Close method. +func Open(p storage.Storage, o *opt.Options) (db *DB, err error) { + s, err := newSession(p, o) + if err != nil { + return + } + defer func() { + if err != nil { + s.close() + s.release() + } + }() + + err = s.recover() + if err != nil { + if !os.IsNotExist(err) || s.o.GetErrorIfMissing() { + return + } + err = s.create() + if err != nil { + return + } + } else if s.o.GetErrorIfExist() { + err = os.ErrExist + return + } + + return openDB(s) +} + +// OpenFile opens or creates a DB for the given path. +// The DB will be created if not exist, unless ErrorIfMissing is true. +// Also, if ErrorIfExist is true and the DB exist OpenFile will returns +// os.ErrExist error. +// +// OpenFile uses standard file-system backed storage implementation as +// desribed in the leveldb/storage package. +// +// OpenFile will return an error with type of ErrManifest if manifest file +// is missing or corrupted. Missing or corrupted manifest file can be +// recovered with Recover function. +// +// The DB must be closed after use, by calling Close method. +func OpenFile(path string, o *opt.Options) (db *DB, err error) { + stor, err := storage.OpenFile(path) + if err != nil { + return + } + db, err = Open(stor, o) + if err != nil { + stor.Close() + } else { + db.closer = stor + } + return +} + +// Recover recovers and opens a DB with missing or corrupted manifest files +// for the given storage. It will ignore any manifest files, valid or not. +// The DB must already exist or it will returns an error. +// Also, Recover will ignore ErrorIfMissing and ErrorIfExist options. +// +// The DB must be closed after use, by calling Close method. +func Recover(p storage.Storage, o *opt.Options) (db *DB, err error) { + s, err := newSession(p, o) + if err != nil { + return + } + defer func() { + if err != nil { + s.close() + s.release() + } + }() + + // get all files + ff0, err := s.getFiles(storage.TypeAll) + if err != nil { + return + } + + ff := files(ff0) + ff.sort() + + s.logf("db@recovery F·%d", len(ff)) + + rec := new(sessionRecord) + + // recover tables + var nt *tFile + for _, f := range ff { + if f.Type() != storage.TypeTable { + continue + } + + var r storage.Reader + r, err = f.Open() + if err != nil { + return + } + var size int64 + size, err = r.Seek(0, 2) + r.Close() + if err != nil { + return + } + + t := newTFile(f, uint64(size), nil, nil) + iter := s.tops.newIterator(t, nil, nil) + // min ikey + if iter.First() { + t.min = iter.Key() + } else { + err = iter.Error() + iter.Release() + if err != nil { + return + } else { + continue + } + } + // max ikey + if iter.Last() { + t.max = iter.Key() + } else { + err = iter.Error() + iter.Release() + if err != nil { + return + } else { + continue + } + } + iter.Release() + s.logf("db@recovery found table @%d S·%s %q:%q", t.file.Num(), shortenb(int(t.size)), t.min, t.max) + // add table to level 0 + rec.addTableFile(0, t) + nt = t + } + + // extract largest seq number from newest table + if nt != nil { + var lseq uint64 + iter := s.tops.newIterator(nt, nil, nil) + for iter.Next() { + seq, _, ok := iKey(iter.Key()).parseNum() + if !ok { + continue + } + if seq > lseq { + lseq = seq + } + } + iter.Release() + rec.setSeq(lseq) + } + + // set file num based on largest one + if len(ff) > 0 { + s.stFileNum = ff[len(ff)-1].Num() + 1 + } else { + s.stFileNum = 0 + } + + // create brand new manifest + err = s.create() + if err != nil { + return + } + // commit record + err = s.commit(rec) + if err != nil { + return + } + return openDB(s) +} + +// RecoverFile recovers and opens a DB with missing or corrupted manifest files +// for the given path. It will ignore any manifest files, valid or not. +// The DB must already exist or it will returns an error. +// Also, Recover will ignore ErrorIfMissing and ErrorIfExist options. +// +// RecoverFile uses standard file-system backed storage implementation as desribed +// in the leveldb/storage package. +// +// The DB must be closed after use, by calling Close method. +func RecoverFile(path string, o *opt.Options) (db *DB, err error) { + stor, err := storage.OpenFile(path) + if err != nil { + return + } + db, err = Recover(stor, o) + if err != nil { + stor.Close() + } else { + db.closer = stor + } + return +} + +func (d *DB) recoverJournal() error { + s := d.s + icmp := s.cmp + + ff0, err := s.getFiles(storage.TypeJournal) + if err != nil { + return err + } + ff1 := files(ff0) + ff1.sort() + ff2 := make([]storage.File, 0, len(ff1)) + for _, file := range ff1 { + if file.Num() >= s.stJournalNum || file.Num() == s.stPrevJournalNum { + s.markFileNum(file.Num()) + ff2 = append(ff2, file) + } + } + + var jr *journal.Reader + var of storage.File + var mem *memdb.DB + batch := new(Batch) + cm := newCMem(s) + buf := new(util.Buffer) + // Options. + strict := s.o.GetStrict(opt.StrictJournal) + checksum := s.o.GetStrict(opt.StrictJournalChecksum) + writeBuffer := s.o.GetWriteBuffer() + recoverJournal := func(file storage.File) error { + s.logf("journal@recovery recovering @%d", file.Num()) + reader, err := file.Open() + if err != nil { + return err + } + defer reader.Close() + if jr == nil { + jr = journal.NewReader(reader, dropper{s, file}, strict, checksum) + } else { + jr.Reset(reader, dropper{s, file}, strict, checksum) + } + if of != nil { + if mem.Len() > 0 { + if err := cm.flush(mem, 0); err != nil { + return err + } + } + if err := cm.commit(file.Num(), d.seq); err != nil { + return err + } + cm.reset() + of.Remove() + of = nil + } + // Reset memdb. + mem.Reset() + for { + r, err := jr.Next() + if err != nil { + if err == io.EOF { + break + } + return err + } + buf.Reset() + if _, err := buf.ReadFrom(r); err != nil { + if strict { + return err + } + continue + } + if err := batch.decode(buf.Bytes()); err != nil { + return err + } + if err := batch.memReplay(mem); err != nil { + return err + } + d.seq = batch.seq + uint64(batch.len()) + if mem.Size() >= writeBuffer { + // Large enough, flush it. + if err := cm.flush(mem, 0); err != nil { + return err + } + // Reset memdb. + mem.Reset() + } + } + of = file + return nil + } + // Recover all journals. + if len(ff2) > 0 { + s.logf("journal@recovery F·%d", len(ff2)) + mem = memdb.New(icmp, toPercent(writeBuffer, kWriteBufferPercent)) + for _, file := range ff2 { + if err := recoverJournal(file); err != nil { + return err + } + } + // Flush the last journal. + if mem.Len() > 0 { + if err := cm.flush(mem, 0); err != nil { + return err + } + } + } + // Create a new journal. + if _, err := d.newMem(); err != nil { + return err + } + // Commit. + if err := cm.commit(d.journalFile.Num(), d.seq); err != nil { + return err + } + // Remove the last journal. + if of != nil { + of.Remove() + } + return nil +} + +func (d *DB) get(key []byte, seq uint64, ro *opt.ReadOptions) (value []byte, err error) { + s := d.s + + ucmp := s.cmp.cmp + ikey := newIKey(key, seq, tSeek) + + em, fm := d.getMems() + for _, m := range [...]*memdb.DB{em, fm} { + if m == nil { + continue + } + mk, mv, me := m.Find(ikey) + if me == nil { + ukey, _, t, ok := parseIkey(mk) + if ok && ucmp.Compare(ukey, key) == 0 { + if t == tDel { + return nil, ErrNotFound + } + return mv, nil + } + } else if me != ErrNotFound { + return nil, me + } + } + + v := s.version() + value, cSched, err := v.get(ikey, ro) + v.release() + if cSched { + // Wake compaction. + d.wakeCompaction(0) + } + return +} + +// Get gets the value for the given key. It returns ErrNotFound if the +// DB does not contain the key. +// +// The caller should not modify the contents of the returned slice, but +// it is safe to modify the contents of the argument after Get returns. +func (d *DB) Get(key []byte, ro *opt.ReadOptions) (value []byte, err error) { + err = d.ok() + if err != nil { + return + } + + return d.get(key, d.getSeq(), ro) +} + +// NewIterator returns an iterator for the latest snapshot of the +// uderlying DB. +// The returned iterator is not goroutine-safe, but it is safe to use +// multiple iterators concurrently, with each in a dedicated goroutine. +// It is also safe to use an iterator concurrently with modifying its +// underlying DB. The resultant key/value pairs are guaranteed to be +// consistent. +// +// Slice allows slicing the iterator to only contains keys in the given +// range. A nil Range.Start is treated as a key before all keys in the +// DB. And a nil Range.Limit is treated as a key after all keys in +// the DB. +// +// The iterator must be released after use, by calling Release method. +// +// Also read Iterator documentation of the leveldb/iterator package. +func (d *DB) NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator { + if err := d.ok(); err != nil { + return iterator.NewEmptyIterator(err) + } + + p := d.newSnapshot() + defer p.Release() + return p.NewIterator(slice, ro) +} + +// GetSnapshot returns a latest snapshot of the underlying DB. A snapshot +// is a frozen snapshot of a DB state at a particular point in time. The +// content of snapshot are guaranteed to be consistent. +// +// The snapshot must be released after use, by calling Release method. +func (d *DB) GetSnapshot() (*Snapshot, error) { + if err := d.ok(); err != nil { + return nil, err + } + + return d.newSnapshot(), nil +} + +// GetProperty returns value of the given property name. +// +// Property names: +// leveldb.num-files-at-level{n} +// Returns the number of filer at level 'n'. +// leveldb.stats +// Returns statistics of the underlying DB. +// leveldb.sstables +// Returns sstables list for each level. +func (d *DB) GetProperty(name string) (value string, err error) { + err = d.ok() + if err != nil { + return + } + + const prefix = "leveldb." + if !strings.HasPrefix(name, prefix) { + return "", errors.New("leveldb: GetProperty: unknown property: " + name) + } + + p := name[len(prefix):] + + s := d.s + v := s.version() + defer v.release() + + switch { + case strings.HasPrefix(p, "num-files-at-level"): + var level uint + var rest string + n, _ := fmt.Scanf("%d%s", &level, &rest) + if n != 1 || level >= kNumLevels { + err = errors.New("leveldb: GetProperty: invalid property: " + name) + } else { + value = fmt.Sprint(v.tLen(int(level))) + } + case p == "stats": + value = "Compactions\n" + + " Level | Tables | Size(MB) | Time(sec) | Read(MB) | Write(MB)\n" + + "-------+------------+---------------+---------------+---------------+---------------\n" + for level, tt := range v.tables { + duration, read, write := d.compStats[level].get() + if len(tt) == 0 && duration == 0 { + continue + } + value += fmt.Sprintf(" %3d | %10d | %13.5f | %13.5f | %13.5f | %13.5f\n", + level, len(tt), float64(tt.size())/1048576.0, duration.Seconds(), + float64(read)/1048576.0, float64(write)/1048576.0) + } + case p == "sstables": + for level, tt := range v.tables { + value += fmt.Sprintf("--- level %d ---\n", level) + for _, t := range tt { + value += fmt.Sprintf("%d:%d[%q .. %q]\n", t.file.Num(), t.size, t.min, t.max) + } + } + default: + err = errors.New("leveldb: GetProperty: unknown property: " + name) + } + + return +} + +// GetApproximateSizes calculates approximate sizes of the given key ranges. +// The length of the returned sizes are equal with the length of the given +// ranges. The returned sizes measure storage space usage, so if the user +// data compresses by a factor of ten, the returned sizes will be one-tenth +// the size of the corresponding user data size. +// The results may not include the sizes of recently written data. +func (d *DB) GetApproximateSizes(ranges []util.Range) (Sizes, error) { + if err := d.ok(); err != nil { + return nil, err + } + + v := d.s.version() + defer v.release() + + sizes := make(Sizes, 0, len(ranges)) + for _, r := range ranges { + min := newIKey(r.Start, kMaxSeq, tSeek) + max := newIKey(r.Limit, kMaxSeq, tSeek) + start, err := v.getApproximateOffset(min) + if err != nil { + return nil, err + } + limit, err := v.getApproximateOffset(max) + if err != nil { + return nil, err + } + var size uint64 + if limit >= start { + size = limit - start + } + sizes = append(sizes, size) + } + + return sizes, nil +} + +// CompactRange compacts the underlying DB for the given key range. +// In particular, deleted and overwritten versions are discarded, +// and the data is rearranged to reduce the cost of operations +// needed to access the data. This operation should typically only +// be invoked by users who understand the underlying implementation. +// +// A nil Range.Start is treated as a key before all keys in the DB. +// And a nil Range.Limit is treated as a key after all keys in the DB. +// Therefore if both is nil then it will compact entire DB. +func (d *DB) CompactRange(r util.Range) error { + err := d.ok() + if err != nil { + return err + } + + cch := make(chan struct{}) + req := &cReq{ + level: -1, + min: r.Start, + max: r.Limit, + cch: cch, + } + + // Push manual compaction request. + select { + case _, _ = <-d.closeCh: + return ErrClosed + case err := <-d.compErrCh: + return err + case d.compReqCh <- req: + } + // Wait for compaction + select { + case _, _ = <-d.closeCh: + return ErrClosed + case <-cch: + } + return nil +} + +// Close closes the DB. This will also releases any outstanding snapshot. +// +// It is not safe to close a DB until all outstanding iterators are released. +// It is valid to call Close multiple times. Other methods should not be +// called after the DB has been closed. +func (d *DB) Close() error { + if !d.setClosed() { + return ErrClosed + } + + s := d.s + start := time.Now() + s.log("db@close closing") + + // Clear the finalizer. + runtime.SetFinalizer(d, nil) + + // Get compaction error. + var err error + select { + case err = <-d.compErrCh: + default: + } + + close(d.closeCh) + + // wait for the WaitGroup + d.closeWg.Wait() + + // close journal + if d.journal != nil { + d.journal.Close() + d.journalWriter.Close() + } + + // close session + s.close() + s.logf("db@close done T·%v", time.Since(start)) + s.release() + + if d.closer != nil { + if err1 := d.closer.Close(); err == nil { + err = err1 + } + } + + return err +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go new file mode 100644 index 00000000..1a84055d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go @@ -0,0 +1,523 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "errors" + "sync" + "time" + + "github.com/syndtr/goleveldb/leveldb/memdb" +) + +var ( + errTransactExiting = errors.New("leveldb: transact exiting") +) + +type cStats struct { + sync.Mutex + duration time.Duration + read uint64 + write uint64 +} + +func (p *cStats) add(n *cStatsStaging) { + p.Lock() + p.duration += n.duration + p.read += n.read + p.write += n.write + p.Unlock() +} + +func (p *cStats) get() (duration time.Duration, read, write uint64) { + p.Lock() + defer p.Unlock() + return p.duration, p.read, p.write +} + +type cStatsStaging struct { + start time.Time + duration time.Duration + on bool + read uint64 + write uint64 +} + +func (p *cStatsStaging) startTimer() { + if !p.on { + p.start = time.Now() + p.on = true + } +} + +func (p *cStatsStaging) stopTimer() { + if p.on { + p.duration += time.Since(p.start) + p.on = false + } +} + +type cReq struct { + level int + min, max iKey + cch chan<- struct{} +} + +type cMem struct { + s *session + level int + rec *sessionRecord +} + +func newCMem(s *session) *cMem { + return &cMem{s: s, rec: new(sessionRecord)} +} + +func (c *cMem) flush(mem *memdb.DB, level int) error { + s := c.s + + // Write memdb to table + t, n, err := s.tops.createFrom(mem.NewIterator(nil)) + if err != nil { + return err + } + + if level < 0 { + level = s.version_NB().pickLevel(t.min.ukey(), t.max.ukey()) + } + c.rec.addTableFile(level, t) + + s.logf("mem@flush created L%d@%d N·%d S·%s %q:%q", level, t.file.Num(), n, shortenb(int(t.size)), t.min, t.max) + + c.level = level + return nil +} + +func (c *cMem) reset() { + c.rec = new(sessionRecord) +} + +func (c *cMem) commit(journal, seq uint64) error { + c.rec.setJournalNum(journal) + c.rec.setSeq(seq) + // Commit changes + return c.s.commit(c.rec) +} + +func (d *DB) compactionError() { + var err error +noerr: + for { + select { + case _, _ = <-d.closeCh: + return + case err = <-d.compErrSetCh: + if err != nil { + goto haserr + } + } + } +haserr: + for { + select { + case _, _ = <-d.closeCh: + return + case err = <-d.compErrSetCh: + if err == nil { + goto noerr + } + case d.compErrCh <- err: + } + } +} + +func (d *DB) transact(name string, exec, rollback func() error) { + s := d.s + defer func() { + if x := recover(); x != nil { + if x == errTransactExiting && rollback != nil { + if err := rollback(); err != nil { + s.logf("%s rollback error %q", name, err) + } + } + panic(x) + } + }() + for n := 0; ; n++ { + if d.isClosed() { + s.logf("%s exiting", name) + panic(errTransactExiting) + } else if n > 0 { + s.logf("%s retrying N·%d", name, n) + } + err := exec() + select { + case _, _ = <-d.closeCh: + s.logf("%s exiting", name) + panic(errTransactExiting) + case d.compErrSetCh <- err: + } + if err == nil { + return + } + s.logf("%s error %q", name, err) + time.Sleep(time.Second) + } +} + +func (d *DB) memCompaction() { + s := d.s + c := newCMem(s) + stats := new(cStatsStaging) + mem := d.getFrozenMem() + + s.logf("mem@flush N·%d S·%s", mem.Len(), shortenb(mem.Size())) + + d.transact("mem@flush", func() (err error) { + stats.startTimer() + defer stats.stopTimer() + return c.flush(mem, -1) + }, func() error { + for _, r := range c.rec.addedTables { + s.logf("mem@flush rollback @%d", r.num) + f := s.getTableFile(r.num) + if err := f.Remove(); err != nil { + return err + } + } + return nil + }) + + d.transact("mem@commit", func() (err error) { + stats.startTimer() + defer stats.stopTimer() + return c.commit(d.journalFile.Num(), d.frozenSeq) + }, nil) + + s.logf("mem@flush commited F·%d T·%v", len(c.rec.addedTables), stats.duration) + + for _, r := range c.rec.addedTables { + stats.write += r.size + } + d.compStats[c.level].add(stats) + + // drop frozen mem + d.dropFrozenMem() + + c = nil +} + +func (d *DB) doCompaction(c *compaction, noTrivial bool) { + s := d.s + ucmp := s.cmp.cmp + + rec := new(sessionRecord) + rec.addCompactionPointer(c.level, c.max) + + if !noTrivial && c.trivial() { + t := c.tables[0][0] + s.logf("table@move L%d@%d -> L%d", c.level, t.file.Num(), c.level+1) + rec.deleteTable(c.level, t.file.Num()) + rec.addTableFile(c.level+1, t) + d.transact("table@move", func() (err error) { + return s.commit(rec) + }, nil) + return + } + + var stats [2]cStatsStaging + for i, tt := range c.tables { + for _, t := range tt { + stats[i].read += t.size + // Insert deleted tables into record + rec.deleteTable(c.level+i, t.file.Num()) + } + } + sourceSize := int(stats[0].read + stats[1].read) + minSeq := d.minSeq() + s.logf("table@compaction L%d·%d -> L%d·%d S·%s Q·%d", c.level, len(c.tables[0]), c.level+1, len(c.tables[1]), shortenb(sourceSize), minSeq) + + var snapUkey []byte + var snapHasUkey bool + var snapSeq uint64 + var snapIter int + var snapDropCnt int + var dropCnt int + d.transact("table@build", func() (err error) { + ukey := append([]byte{}, snapUkey...) + hasUkey := snapHasUkey + lseq := snapSeq + dropCnt = snapDropCnt + snapSched := snapIter == 0 + + var tw *tWriter + finish := func() error { + t, err := tw.finish() + if err != nil { + return err + } + rec.addTableFile(c.level+1, t) + stats[1].write += t.size + s.logf("table@build created L%d@%d N·%d S·%s %q:%q", c.level+1, t.file.Num(), tw.tw.EntriesLen(), shortenb(int(t.size)), t.min, t.max) + return nil + } + + defer func() { + stats[1].stopTimer() + if tw != nil { + tw.drop() + tw = nil + } + }() + + stats[1].startTimer() + iter := c.newIterator() + defer iter.Release() + for i := 0; iter.Next(); i++ { + // Skip until last state. + if i < snapIter { + continue + } + + // Prioritize memdb compaction. + select { + case _, _ = <-d.closeCh: + err = ErrClosed + return + case cch := <-d.compMemCh: + stats[1].stopTimer() + d.memCompaction() + d.compMemAckCh <- struct{}{} + if cch != nil { + cch <- struct{}{} + } + stats[1].startTimer() + default: + } + + key := iKey(iter.Key()) + + if c.shouldStopBefore(key) && tw != nil { + err = finish() + if err != nil { + return + } + snapSched = true + tw = nil + } + + // Scheduled for snapshot, snapshot will used to retry compaction + // if error occured. + if snapSched { + snapUkey = append(snapUkey[:0], ukey...) + snapHasUkey = hasUkey + snapSeq = lseq + snapIter = i + snapDropCnt = dropCnt + snapSched = false + } + + if seq, t, ok := key.parseNum(); !ok { + // Don't drop error keys + ukey = ukey[:0] + hasUkey = false + lseq = kMaxSeq + } else { + if !hasUkey || ucmp.Compare(key.ukey(), ukey) != 0 { + // First occurrence of this user key + ukey = append(ukey[:0], key.ukey()...) + hasUkey = true + lseq = kMaxSeq + } + + drop := false + if lseq <= minSeq { + // Dropped because newer entry for same user key exist + drop = true // (A) + } else if t == tDel && seq <= minSeq && c.isBaseLevelForKey(ukey) { + // For this user key: + // (1) there is no data in higher levels + // (2) data in lower levels will have larger seq numbers + // (3) data in layers that are being compacted here and have + // smaller seq numbers will be dropped in the next + // few iterations of this loop (by rule (A) above). + // Therefore this deletion marker is obsolete and can be dropped. + drop = true + } + + lseq = seq + if drop { + dropCnt++ + continue + } + } + + // Create new table if not already + if tw == nil { + tw, err = s.tops.create() + if err != nil { + return + } + } + + // Write key/value into table + err = tw.add(key, iter.Value()) + if err != nil { + return + } + + // Finish table if it is big enough + if tw.tw.BytesLen() >= kMaxTableSize { + err = finish() + if err != nil { + return + } + snapSched = true + tw = nil + } + } + + err = iter.Error() + if err != nil { + return + } + + // Finish last table + if tw != nil && !tw.empty() { + err = finish() + if err != nil { + return + } + tw = nil + } + return + }, func() error { + for _, r := range rec.addedTables { + s.logf("table@build rollback @%d", r.num) + f := s.getTableFile(r.num) + if err := f.Remove(); err != nil { + return err + } + } + return nil + }) + + // Commit changes + d.transact("table@commit", func() (err error) { + stats[1].startTimer() + defer stats[1].stopTimer() + return s.commit(rec) + }, nil) + + resultSize := int(int(stats[1].write)) + s.logf("table@compaction commited F%s S%s D·%d T·%v", sint(len(rec.addedTables)-len(rec.deletedTables)), sshortenb(resultSize-sourceSize), dropCnt, stats[1].duration) + + // Save compaction stats + for i := range stats { + d.compStats[c.level+1].add(&stats[i]) + } +} + +func (d *DB) compaction() { + s := d.s + defer func() { + if x := recover(); x != nil { + if x != errTransactExiting { + panic(x) + } + } + d.closeWg.Done() + }() + for { + var cch chan<- struct{} + select { + case _, _ = <-d.closeCh: + return + case cch = <-d.compMemCh: + d.memCompaction() + d.compMemAckCh <- struct{}{} + case cch = <-d.compCh: + case creq := <-d.compReqCh: + if creq == nil { + continue + } + s.logf("range compaction L%d %v:%v", creq.level, creq.min, creq.max) + if creq.level >= 0 { + c := s.getCompactionRange(creq.level, creq.min, creq.max) + if c != nil { + d.doCompaction(c, true) + } + } else { + v := s.version_NB() + maxLevel := 1 + for i, tt := range v.tables[1:] { + if tt.isOverlaps(creq.min, creq.max, true, s.cmp) { + maxLevel = i + 1 + } + } + for i := 0; i < maxLevel; i++ { + c := s.getCompactionRange(i, creq.min, creq.max) + if c != nil { + d.doCompaction(c, true) + } + } + } + cch = creq.cch + } + if s.version_NB().needCompaction() { + d.doCompaction(s.pickCompaction(), false) + select { + case d.compCh <- nil: + default: + } + } + if cch != nil { + func() { + defer func() { + recover() + }() + cch <- struct{}{} + }() + } + } +} + +func (d *DB) wakeCompaction(wait int) error { + switch wait { + case 0: + select { + case d.compCh <- nil: + default: + } + case 1: + select { + case _, _ = <-d.closeCh: + return ErrClosed + case err := <-d.compErrCh: + return err + case d.compCh <- nil: + } + case 2: + cch := make(chan struct{}) + defer close(cch) + select { + case _, _ = <-d.closeCh: + return ErrClosed + case err := <-d.compErrCh: + return err + case d.compCh <- (chan<- struct{})(cch): + } + select { + case _, _ = <-d.closeCh: + return ErrClosed + case err := <-d.compErrCh: + return err + case <-cch: + } + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_iter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_iter.go new file mode 100644 index 00000000..6467291d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_iter.go @@ -0,0 +1,311 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "errors" + "runtime" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var ( + errInvalidIkey = errors.New("leveldb: Iterator: invalid internal key") +) + +func (db *DB) newRawIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator { + s := db.s + + em, fm := db.getMems() + v := s.version() + + ti := v.getIterators(slice, ro) + n := len(ti) + 2 + i := make([]iterator.Iterator, 0, n) + i = append(i, em.NewIterator(slice)) + if fm != nil { + i = append(i, fm.NewIterator(slice)) + } + i = append(i, ti...) + strict := s.o.GetStrict(opt.StrictIterator) || ro.GetStrict(opt.StrictIterator) + mi := iterator.NewMergedIterator(i, s.cmp, strict) + mi.SetReleaser(&versionReleaser{v: v}) + return mi +} + +func (db *DB) newIterator(seq uint64, slice *util.Range, ro *opt.ReadOptions) *dbIter { + var slice_ *util.Range + if slice != nil { + slice_ = &util.Range{} + if slice.Start != nil { + slice_.Start = newIKey(slice.Start, kMaxSeq, tSeek) + } + if slice.Limit != nil { + slice_.Limit = newIKey(slice.Limit, kMaxSeq, tSeek) + } + } + rawIter := db.newRawIterator(slice_, ro) + iter := &dbIter{ + cmp: db.s.cmp.cmp, + iter: rawIter, + seq: seq, + strict: db.s.o.GetStrict(opt.StrictIterator) || ro.GetStrict(opt.StrictIterator), + key: make([]byte, 0), + value: make([]byte, 0), + } + runtime.SetFinalizer(iter, (*dbIter).Release) + return iter +} + +type dir int + +const ( + dirReleased dir = iota - 1 + dirSOI + dirEOI + dirBackward + dirForward +) + +// dbIter represent an interator states over a database session. +type dbIter struct { + cmp comparer.BasicComparer + iter iterator.Iterator + seq uint64 + strict bool + + dir dir + key []byte + value []byte + err error + releaser util.Releaser +} + +func (i *dbIter) setErr(err error) { + i.err = err + i.key = nil + i.value = nil +} + +func (i *dbIter) iterErr() { + if err := i.iter.Error(); err != nil { + i.setErr(err) + } +} + +func (i *dbIter) Valid() bool { + return i.err == nil && i.dir > dirEOI +} + +func (i *dbIter) First() bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + if i.iter.First() { + i.dir = dirSOI + return i.next() + } + i.dir = dirEOI + i.iterErr() + return false +} + +func (i *dbIter) Last() bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + if i.iter.Last() { + return i.prev() + } + i.dir = dirSOI + i.iterErr() + return false +} + +func (i *dbIter) Seek(key []byte) bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + ikey := newIKey(key, i.seq, tSeek) + if i.iter.Seek(ikey) { + i.dir = dirSOI + return i.next() + } + i.dir = dirEOI + i.iterErr() + return false +} + +func (i *dbIter) next() bool { + for { + ukey, seq, t, ok := parseIkey(i.iter.Key()) + if ok { + if seq <= i.seq { + switch t { + case tDel: + // Skip deleted key. + i.key = append(i.key[:0], ukey...) + i.dir = dirForward + case tVal: + if i.dir == dirSOI || i.cmp.Compare(ukey, i.key) > 0 { + i.key = append(i.key[:0], ukey...) + i.value = append(i.value[:0], i.iter.Value()...) + i.dir = dirForward + return true + } + } + } + } else if i.strict { + i.setErr(errInvalidIkey) + break + } + if !i.iter.Next() { + i.dir = dirEOI + i.iterErr() + break + } + } + return false +} + +func (i *dbIter) Next() bool { + if i.dir == dirEOI || i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + if !i.iter.Next() || (i.dir == dirBackward && !i.iter.Next()) { + i.dir = dirEOI + i.iterErr() + return false + } + return i.next() +} + +func (i *dbIter) prev() bool { + i.dir = dirBackward + del := true + if i.iter.Valid() { + for { + ukey, seq, t, ok := parseIkey(i.iter.Key()) + if ok { + if seq <= i.seq { + if !del && i.cmp.Compare(ukey, i.key) < 0 { + return true + } + del = (t == tDel) + if !del { + i.key = append(i.key[:0], ukey...) + i.value = append(i.value[:0], i.iter.Value()...) + } + } + } else if i.strict { + i.setErr(errInvalidIkey) + return false + } + if !i.iter.Prev() { + break + } + } + } + if del { + i.dir = dirSOI + i.iterErr() + return false + } + return true +} + +func (i *dbIter) Prev() bool { + if i.dir == dirSOI || i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + switch i.dir { + case dirEOI: + return i.Last() + case dirForward: + for i.iter.Prev() { + ukey, _, _, ok := parseIkey(i.iter.Key()) + if ok { + if i.cmp.Compare(ukey, i.key) < 0 { + goto cont + } + } else if i.strict { + i.setErr(errInvalidIkey) + return false + } + } + i.dir = dirSOI + i.iterErr() + return false + } + +cont: + return i.prev() +} + +func (i *dbIter) Key() []byte { + if i.err != nil || i.dir <= dirEOI { + return nil + } + return i.key +} + +func (i *dbIter) Value() []byte { + if i.err != nil || i.dir <= dirEOI { + return nil + } + return i.value +} + +func (i *dbIter) Release() { + if i.dir != dirReleased { + // Clear the finalizer. + runtime.SetFinalizer(i, nil) + + if i.releaser != nil { + i.releaser.Release() + } + + i.dir = dirReleased + i.key = nil + i.value = nil + i.iter.Release() + i.iter = nil + } +} + +func (i *dbIter) SetReleaser(releaser util.Releaser) { + if i.dir != dirReleased { + i.releaser = releaser + } +} + +func (i *dbIter) Error() error { + return i.err +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_snapshot.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_snapshot.go new file mode 100644 index 00000000..8300ccd3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_snapshot.go @@ -0,0 +1,163 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "runtime" + "sync" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/util" +) + +type snapshotElement struct { + seq uint64 + ref int + // Next and previous pointers in the doubly-linked list of elements. + next, prev *snapshotElement +} + +// Initialize the snapshot. +func (db *DB) initSnapshot() { + db.snapsRoot.next = &db.snapsRoot + db.snapsRoot.prev = &db.snapsRoot +} + +// Acquires a snapshot, based on latest sequence. +func (db *DB) acquireSnapshot() *snapshotElement { + db.snapsMu.Lock() + seq := db.getSeq() + elem := db.snapsRoot.prev + if elem == &db.snapsRoot || elem.seq != seq { + at := db.snapsRoot.prev + next := at.next + elem = &snapshotElement{ + seq: seq, + prev: at, + next: next, + } + at.next = elem + next.prev = elem + } + elem.ref++ + db.snapsMu.Unlock() + return elem +} + +// Releases given snapshot element. +func (db *DB) releaseSnapshot(elem *snapshotElement) { + db.snapsMu.Lock() + elem.ref-- + if elem.ref == 0 { + elem.prev.next = elem.next + elem.next.prev = elem.prev + elem.next = nil + elem.prev = nil + } else if elem.ref < 0 { + panic("leveldb: Snapshot: negative element reference") + } + db.snapsMu.Unlock() +} + +// Gets minimum sequence that not being snapshoted. +func (db *DB) minSeq() uint64 { + db.snapsMu.Lock() + defer db.snapsMu.Unlock() + elem := db.snapsRoot.prev + if elem != &db.snapsRoot { + return elem.seq + } + return db.getSeq() +} + +// Snapshot is a DB snapshot. +type Snapshot struct { + db *DB + elem *snapshotElement + mu sync.Mutex + released bool +} + +// Creates new snapshot object. +func (db *DB) newSnapshot() *Snapshot { + p := &Snapshot{ + db: db, + elem: db.acquireSnapshot(), + } + runtime.SetFinalizer(p, (*Snapshot).Release) + return p +} + +// Get gets the value for the given key. It returns ErrNotFound if +// the DB does not contain the key. +// +// The caller should not modify the contents of the returned slice, but +// it is safe to modify the contents of the argument after Get returns. +func (p *Snapshot) Get(key []byte, ro *opt.ReadOptions) (value []byte, err error) { + db := p.db + err = db.ok() + if err != nil { + return + } + p.mu.Lock() + defer p.mu.Unlock() + if p.released { + err = ErrSnapshotReleased + return + } + return db.get(key, p.elem.seq, ro) +} + +// NewIterator returns an iterator for the snapshot of the uderlying DB. +// The returned iterator is not goroutine-safe, but it is safe to use +// multiple iterators concurrently, with each in a dedicated goroutine. +// It is also safe to use an iterator concurrently with modifying its +// underlying DB. The resultant key/value pairs are guaranteed to be +// consistent. +// +// Slice allows slicing the iterator to only contains keys in the given +// range. A nil Range.Start is treated as a key before all keys in the +// DB. And a nil Range.Limit is treated as a key after all keys in +// the DB. +// +// The iterator must be released after use, by calling Release method. +// Releasing the snapshot doesn't mean releasing the iterator too, the +// iterator would be still valid until released. +// +// Also read Iterator documentation of the leveldb/iterator package. +func (p *Snapshot) NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator { + db := p.db + if err := db.ok(); err != nil { + return iterator.NewEmptyIterator(err) + } + p.mu.Lock() + defer p.mu.Unlock() + if p.released { + return iterator.NewEmptyIterator(ErrSnapshotReleased) + } + return db.newIterator(p.elem.seq, slice, ro) +} + +// Release releases the snapshot. This will not release any returned +// iterators, the iterators would still be valid until released or the +// underlying DB is closed. +// +// Other methods should not be called after the snapshot has been released. +func (p *Snapshot) Release() { + p.mu.Lock() + if !p.released { + // Clear the finalizer. + runtime.SetFinalizer(p, nil) + + p.released = true + p.db.releaseSnapshot(p.elem) + p.db = nil + p.elem = nil + } + p.mu.Unlock() +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_state.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_state.go new file mode 100644 index 00000000..4a545721 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_state.go @@ -0,0 +1,110 @@ +// Copyright (c) 2013, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "sync/atomic" + + "github.com/syndtr/goleveldb/leveldb/journal" + "github.com/syndtr/goleveldb/leveldb/memdb" +) + +// Get latest sequence number. +func (d *DB) getSeq() uint64 { + return atomic.LoadUint64(&d.seq) +} + +// Atomically adds delta to seq. +func (d *DB) addSeq(delta uint64) { + atomic.AddUint64(&d.seq, delta) +} + +// Create new memdb and froze the old one; need external synchronization. +// newMem only called synchronously by the writer. +func (d *DB) newMem() (mem *memdb.DB, err error) { + s := d.s + + num := s.allocFileNum() + file := s.getJournalFile(num) + w, err := file.Create() + if err != nil { + s.reuseFileNum(num) + return + } + d.memMu.Lock() + if d.journal == nil { + d.journal = journal.NewWriter(w) + } else { + d.journal.Reset(w) + d.journalWriter.Close() + d.frozenJournalFile = d.journalFile + } + d.journalWriter = w + d.journalFile = file + d.frozenMem = d.mem + d.mem = memdb.New(s.cmp, toPercent(d.s.o.GetWriteBuffer(), kWriteBufferPercent)) + mem = d.mem + // The seq only incremented by the writer. + d.frozenSeq = d.seq + d.memMu.Unlock() + return +} + +// Get all memdbs. +func (d *DB) getMems() (e *memdb.DB, f *memdb.DB) { + d.memMu.RLock() + defer d.memMu.RUnlock() + return d.mem, d.frozenMem +} + +// Get frozen memdb. +func (d *DB) getEffectiveMem() *memdb.DB { + d.memMu.RLock() + defer d.memMu.RUnlock() + return d.mem +} + +// Check whether we has frozen memdb. +func (d *DB) hasFrozenMem() bool { + d.memMu.RLock() + defer d.memMu.RUnlock() + return d.frozenMem != nil +} + +// Get frozen memdb. +func (d *DB) getFrozenMem() *memdb.DB { + d.memMu.RLock() + defer d.memMu.RUnlock() + return d.frozenMem +} + +// Drop frozen memdb; assume that frozen memdb isn't nil. +func (d *DB) dropFrozenMem() { + d.memMu.Lock() + d.frozenJournalFile.Remove() + d.frozenJournalFile = nil + d.frozenMem = nil + d.memMu.Unlock() +} + +// Set closed flag; return true if not already closed. +func (d *DB) setClosed() bool { + return atomic.CompareAndSwapUint32(&d.closed, 0, 1) +} + +// Check whether DB was closed. +func (d *DB) isClosed() bool { + return atomic.LoadUint32(&d.closed) != 0 +} + +// Check read ok status. +func (d *DB) ok() error { + if d.isClosed() { + return ErrClosed + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_test.go new file mode 100644 index 00000000..777a6a25 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_test.go @@ -0,0 +1,1825 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "fmt" + "math/rand" + "os" + "path/filepath" + "runtime" + "strings" + "sync" + "sync/atomic" + "testing" + "time" + "unsafe" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/filter" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +func tkey(i int) []byte { + return []byte(fmt.Sprintf("%016d", i)) +} + +func tval(seed, n int) []byte { + r := rand.New(rand.NewSource(int64(seed))) + return randomString(r, n) +} + +type dbHarness struct { + t *testing.T + + stor *testStorage + db *DB + o *opt.Options + ro *opt.ReadOptions + wo *opt.WriteOptions +} + +func newDbHarnessWopt(t *testing.T, o *opt.Options) *dbHarness { + h := new(dbHarness) + h.init(t, o) + return h +} + +func newDbHarness(t *testing.T) *dbHarness { + return newDbHarnessWopt(t, &opt.Options{}) +} + +func (h *dbHarness) init(t *testing.T, o *opt.Options) { + h.t = t + h.stor = newTestStorage(t) + h.o = o + h.ro = nil + h.wo = nil + + if err := h.openDB0(); err != nil { + // So that it will come after fatal message. + defer h.stor.Close() + h.t.Fatal("Open (init): got error: ", err) + } +} + +func (h *dbHarness) openDB0() (err error) { + h.t.Log("opening DB") + h.db, err = Open(h.stor, h.o) + return +} + +func (h *dbHarness) openDB() { + if err := h.openDB0(); err != nil { + h.t.Fatal("Open: got error: ", err) + } +} + +func (h *dbHarness) closeDB0() error { + h.t.Log("closing DB") + return h.db.Close() +} + +func (h *dbHarness) closeDB() { + if err := h.closeDB0(); err != nil { + h.t.Error("Close: got error: ", err) + } + h.stor.CloseCheck() + runtime.GC() +} + +func (h *dbHarness) reopenDB() { + h.closeDB() + h.openDB() +} + +func (h *dbHarness) close() { + h.closeDB0() + h.db = nil + h.stor.Close() + h.stor = nil + runtime.GC() +} + +func (h *dbHarness) openAssert(want bool) { + db, err := Open(h.stor, h.o) + if err != nil { + if want { + h.t.Error("Open: assert: got error: ", err) + } else { + h.t.Log("Open: assert: got error (expected): ", err) + } + } else { + if !want { + h.t.Error("Open: assert: expect error") + } + db.Close() + } +} + +func (h *dbHarness) put(key, value string) { + t := h.t + db := h.db + + err := db.Put([]byte(key), []byte(value), h.wo) + if err != nil { + t.Error("Put: got error: ", err) + } +} + +func (h *dbHarness) putMulti(n int, low, hi string) { + for i := 0; i < n; i++ { + h.put(low, "begin") + h.put(hi, "end") + h.compactMem() + } +} + +func (h *dbHarness) maxNextLevelOverlappingBytes(want uint64) { + t := h.t + db := h.db + + var res uint64 + ucmp := db.s.cmp.cmp + v := db.s.version() + for i, tt := range v.tables[1 : len(v.tables)-1] { + level := i + 1 + next := v.tables[level+1] + for _, t := range tt { + var r tFiles + min, max := t.min.ukey(), t.max.ukey() + next.getOverlaps(min, max, &r, true, ucmp) + sum := r.size() + if sum > res { + res = sum + } + } + } + v.release() + + if res > want { + t.Errorf("next level overlapping bytes is more than %d, got=%d", want, res) + } +} + +func (h *dbHarness) delete(key string) { + t := h.t + db := h.db + + err := db.Delete([]byte(key), h.wo) + if err != nil { + t.Error("Delete: got error: ", err) + } +} + +func (h *dbHarness) getr(db Reader, key string, expectFound bool) (found bool, v []byte) { + t := h.t + v, err := db.Get([]byte(key), h.ro) + switch err { + case ErrNotFound: + if expectFound { + t.Errorf("Get: key '%s' not found, want found", key) + } + case nil: + found = true + if !expectFound { + t.Errorf("Get: key '%s' found, want not found", key) + } + default: + t.Error("Get: got error: ", err) + } + return +} + +func (h *dbHarness) get(key string, expectFound bool) (found bool, v []byte) { + return h.getr(h.db, key, expectFound) +} + +func (h *dbHarness) getValr(db Reader, key, value string) { + t := h.t + found, r := h.getr(db, key, true) + if !found { + return + } + rval := string(r) + if rval != value { + t.Errorf("Get: invalid value, got '%s', want '%s'", rval, value) + } +} + +func (h *dbHarness) getVal(key, value string) { + h.getValr(h.db, key, value) +} + +func (h *dbHarness) allEntriesFor(key, want string) { + t := h.t + db := h.db + ucmp := db.s.cmp.cmp + + ikey := newIKey([]byte(key), kMaxSeq, tVal) + iter := db.newRawIterator(nil, nil) + if !iter.Seek(ikey) && iter.Error() != nil { + t.Error("AllEntries: error during seek, err: ", iter.Error()) + return + } + res := "[ " + first := true + for iter.Valid() { + rkey := iKey(iter.Key()) + if _, t, ok := rkey.parseNum(); ok { + if ucmp.Compare(ikey.ukey(), rkey.ukey()) != 0 { + break + } + if !first { + res += ", " + } + first = false + switch t { + case tVal: + res += string(iter.Value()) + case tDel: + res += "DEL" + } + } else { + if !first { + res += ", " + } + first = false + res += "CORRUPTED" + } + iter.Next() + } + if !first { + res += " " + } + res += "]" + if res != want { + t.Errorf("AllEntries: assert failed for key %q, got=%q want=%q", key, res, want) + } +} + +// Return a string that contains all key,value pairs in order, +// formatted like "(k1->v1)(k2->v2)". +func (h *dbHarness) getKeyVal(want string) { + t := h.t + db := h.db + + s, err := db.GetSnapshot() + if err != nil { + t.Fatal("GetSnapshot: got error: ", err) + } + res := "" + iter := s.NewIterator(nil, nil) + for iter.Next() { + res += fmt.Sprintf("(%s->%s)", string(iter.Key()), string(iter.Value())) + } + iter.Release() + + if res != want { + t.Errorf("GetKeyVal: invalid key/value pair, got=%q want=%q", res, want) + } + s.Release() +} + +func (h *dbHarness) waitCompaction() { + t := h.t + db := h.db + if err := db.wakeCompaction(2); err != nil { + t.Error("compaction error: ", err) + } +} + +func (h *dbHarness) compactMem() { + t := h.t + db := h.db + + if err := db.wakeCompaction(1); err != nil { + t.Error("compaction error: ", err) + return + } + + if mem := db.getEffectiveMem(); mem.Len() == 0 { + return + } + + select { + case <-db.compMemAckCh: + case err := <-db.compErrCh: + t.Error("compaction error: ", err) + return + } + + // create new memdb and journal + _, err := db.newMem() + if err != nil { + t.Error("newMem: got error: ", err) + return + } + + cch := make(chan struct{}) + // Schedule mem compaction. + select { + case db.compMemCh <- (chan<- struct{})(cch): + case err := <-db.compErrCh: + t.Error("compaction error: ", err) + return + } + // Wait. + select { + case <-cch: + case err := <-db.compErrCh: + t.Error("compaction error: ", err) + } + + if h.totalTables() == 0 { + t.Error("zero tables after mem compaction") + } +} + +func (h *dbHarness) compactRangeAtErr(level int, min, max string, wanterr bool) { + t := h.t + db := h.db + + cch := make(chan struct{}) + req := &cReq{level: level, cch: cch} + if min != "" { + req.min = []byte(min) + } + if max != "" { + req.max = []byte(max) + } + + // Push manual compaction request. + select { + case err := <-db.compErrCh: + t.Error("CompactRangeAt: compaction error: ", err) + return + case db.compReqCh <- req: + } + + // Wait for compaction + select { + case err := <-db.compErrCh: + if wanterr { + t.Log("CompactRangeAt: got error (expected): ", err) + } else { + t.Error("CompactRangeAt: got error: ", err) + } + case <-cch: + if wanterr { + t.Error("CompactRangeAt: expect error") + } + } +} + +func (h *dbHarness) compactRangeAt(level int, min, max string) { + h.compactRangeAtErr(level, min, max, false) +} + +func (h *dbHarness) compactRange(min, max string) { + t := h.t + db := h.db + + var r util.Range + if min != "" { + r.Start = []byte(min) + } + if max != "" { + r.Limit = []byte(max) + } + err := db.CompactRange(r) + if err != nil { + t.Error("CompactRange: got error: ", err) + } +} + +func (h *dbHarness) sizeAssert(start, limit string, low, hi uint64) { + t := h.t + db := h.db + + s, err := db.GetApproximateSizes([]util.Range{ + {[]byte(start), []byte(limit)}, + }) + if err != nil { + t.Error("GetApproximateSizes: got error: ", err) + } + if s.Sum() < low || s.Sum() > hi { + t.Errorf("sizeof %q to %q not in range, want %d - %d, got %d", + shorten(start), shorten(limit), low, hi, s.Sum()) + } +} + +func (h *dbHarness) getSnapshot() (s *Snapshot) { + s, err := h.db.GetSnapshot() + if err != nil { + h.t.Fatal("GetSnapshot: got error: ", err) + } + return +} +func (h *dbHarness) tablesPerLevel(want string) { + res := "" + nz := 0 + v := h.db.s.version() + for level, tt := range v.tables { + if level > 0 { + res += "," + } + res += fmt.Sprint(len(tt)) + if len(tt) > 0 { + nz = len(res) + } + } + v.release() + res = res[:nz] + if res != want { + h.t.Errorf("invalid tables len, want=%s, got=%s", want, res) + } +} + +func (h *dbHarness) totalTables() (n int) { + v := h.db.s.version() + for _, tt := range v.tables { + n += len(tt) + } + v.release() + return +} + +type keyValue interface { + Key() []byte + Value() []byte +} + +func testKeyVal(t *testing.T, kv keyValue, want string) { + res := string(kv.Key()) + "->" + string(kv.Value()) + if res != want { + t.Errorf("invalid key/value, want=%q, got=%q", want, res) + } +} + +func numKey(num int) string { + return fmt.Sprintf("key%06d", num) +} + +var _bloom_filter = filter.NewBloomFilter(10) + +func truno(t *testing.T, o *opt.Options, f func(h *dbHarness)) { + for i := 0; i < 4; i++ { + func() { + switch i { + case 0: + case 1: + if o == nil { + o = &opt.Options{Filter: _bloom_filter} + } else { + old := o + o = &opt.Options{} + *o = *old + o.Filter = _bloom_filter + } + case 2: + if o == nil { + o = &opt.Options{Compression: opt.NoCompression} + } else { + old := o + o = &opt.Options{} + *o = *old + o.Compression = opt.NoCompression + } + } + h := newDbHarnessWopt(t, o) + defer h.close() + switch i { + case 3: + h.reopenDB() + } + f(h) + }() + } +} + +func trun(t *testing.T, f func(h *dbHarness)) { + truno(t, nil, f) +} + +func testAligned(t *testing.T, name string, offset uintptr) { + if offset%8 != 0 { + t.Errorf("field %s offset is not 64-bit aligned", name) + } +} + +func Test_FieldsAligned(t *testing.T) { + p1 := new(DB) + testAligned(t, "DB.seq", unsafe.Offsetof(p1.seq)) + p2 := new(session) + testAligned(t, "session.stFileNum", unsafe.Offsetof(p2.stFileNum)) + testAligned(t, "session.stJournalNum", unsafe.Offsetof(p2.stJournalNum)) + testAligned(t, "session.stPrevJournalNum", unsafe.Offsetof(p2.stPrevJournalNum)) + testAligned(t, "session.stSeq", unsafe.Offsetof(p2.stSeq)) +} + +func TestDb_Locking(t *testing.T) { + h := newDbHarness(t) + defer h.stor.Close() + h.openAssert(false) + h.closeDB() + h.openAssert(true) +} + +func TestDb_Empty(t *testing.T) { + trun(t, func(h *dbHarness) { + h.get("foo", false) + + h.reopenDB() + h.get("foo", false) + }) +} + +func TestDb_ReadWrite(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + h.getVal("foo", "v1") + h.put("bar", "v2") + h.put("foo", "v3") + h.getVal("foo", "v3") + h.getVal("bar", "v2") + + h.reopenDB() + h.getVal("foo", "v3") + h.getVal("bar", "v2") + }) +} + +func TestDb_PutDeleteGet(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + h.getVal("foo", "v1") + h.put("foo", "v2") + h.getVal("foo", "v2") + h.delete("foo") + h.get("foo", false) + + h.reopenDB() + h.get("foo", false) + }) +} + +func TestDb_EmptyBatch(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + h.get("foo", false) + err := h.db.Write(new(Batch), h.wo) + if err != nil { + t.Error("writing empty batch yield error: ", err) + } + h.get("foo", false) +} + +func TestDb_GetFromFrozen(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{WriteBuffer: 100000}) + defer h.close() + + h.put("foo", "v1") + h.getVal("foo", "v1") + + h.stor.DelaySync(storage.TypeTable) // Block sync calls + h.put("k1", strings.Repeat("x", 100000)) // Fill memtable + h.put("k2", strings.Repeat("y", 100000)) // Trigger compaction + h.getVal("foo", "v1") + h.stor.ReleaseSync(storage.TypeTable) // Release sync calls + + h.reopenDB() + h.getVal("foo", "v1") + h.get("k1", true) + h.get("k2", true) +} + +func TestDb_GetFromTable(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + h.compactMem() + h.getVal("foo", "v1") + }) +} + +func TestDb_GetSnapshot(t *testing.T) { + trun(t, func(h *dbHarness) { + bar := strings.Repeat("b", 200) + h.put("foo", "v1") + h.put(bar, "v1") + + snap, err := h.db.GetSnapshot() + if err != nil { + t.Fatal("GetSnapshot: got error: ", err) + } + + h.put("foo", "v2") + h.put(bar, "v2") + + h.getVal("foo", "v2") + h.getVal(bar, "v2") + h.getValr(snap, "foo", "v1") + h.getValr(snap, bar, "v1") + + h.compactMem() + + h.getVal("foo", "v2") + h.getVal(bar, "v2") + h.getValr(snap, "foo", "v1") + h.getValr(snap, bar, "v1") + + snap.Release() + + h.reopenDB() + h.getVal("foo", "v2") + h.getVal(bar, "v2") + }) +} + +func TestDb_GetLevel0Ordering(t *testing.T) { + trun(t, func(h *dbHarness) { + for i := 0; i < 4; i++ { + h.put("bar", fmt.Sprintf("b%d", i)) + h.put("foo", fmt.Sprintf("v%d", i)) + h.compactMem() + } + h.getVal("foo", "v3") + h.getVal("bar", "b3") + + v := h.db.s.version() + t0len := v.tLen(0) + v.release() + if t0len < 2 { + t.Errorf("level-0 tables is less than 2, got %d", t0len) + } + + h.reopenDB() + h.getVal("foo", "v3") + h.getVal("bar", "b3") + }) +} + +func TestDb_GetOrderedByLevels(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + h.compactMem() + h.compactRange("a", "z") + h.getVal("foo", "v1") + h.put("foo", "v2") + h.compactMem() + h.getVal("foo", "v2") + }) +} + +func TestDb_GetPicksCorrectFile(t *testing.T) { + trun(t, func(h *dbHarness) { + // Arrange to have multiple files in a non-level-0 level. + h.put("a", "va") + h.compactMem() + h.compactRange("a", "b") + h.put("x", "vx") + h.compactMem() + h.compactRange("x", "y") + h.put("f", "vf") + h.compactMem() + h.compactRange("f", "g") + + h.getVal("a", "va") + h.getVal("f", "vf") + h.getVal("x", "vx") + + h.compactRange("", "") + h.getVal("a", "va") + h.getVal("f", "vf") + h.getVal("x", "vx") + }) +} + +func TestDb_GetEncountersEmptyLevel(t *testing.T) { + trun(t, func(h *dbHarness) { + // Arrange for the following to happen: + // * sstable A in level 0 + // * nothing in level 1 + // * sstable B in level 2 + // Then do enough Get() calls to arrange for an automatic compaction + // of sstable A. A bug would cause the compaction to be marked as + // occuring at level 1 (instead of the correct level 0). + + // Step 1: First place sstables in levels 0 and 2 + for i := 0; ; i++ { + if i >= 100 { + t.Fatal("could not fill levels-0 and level-2") + } + v := h.db.s.version() + if v.tLen(0) > 0 && v.tLen(2) > 0 { + v.release() + break + } + v.release() + h.put("a", "begin") + h.put("z", "end") + h.compactMem() + + h.getVal("a", "begin") + h.getVal("z", "end") + } + + // Step 2: clear level 1 if necessary. + h.compactRangeAt(1, "", "") + h.tablesPerLevel("1,0,1") + + h.getVal("a", "begin") + h.getVal("z", "end") + + // Step 3: read a bunch of times + for i := 0; i < 200; i++ { + h.get("missing", false) + } + + // Step 4: Wait for compaction to finish + h.waitCompaction() + + v := h.db.s.version() + if v.tLen(0) > 0 { + t.Errorf("level-0 tables more than 0, got %d", v.tLen(0)) + } + v.release() + + h.getVal("a", "begin") + h.getVal("z", "end") + }) +} + +func TestDb_IterMultiWithDelete(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("a", "va") + h.put("b", "vb") + h.put("c", "vc") + h.delete("b") + h.get("b", false) + + iter := h.db.NewIterator(nil, nil) + iter.Seek([]byte("c")) + testKeyVal(t, iter, "c->vc") + iter.Prev() + testKeyVal(t, iter, "a->va") + iter.Release() + + h.compactMem() + + iter = h.db.NewIterator(nil, nil) + iter.Seek([]byte("c")) + testKeyVal(t, iter, "c->vc") + iter.Prev() + testKeyVal(t, iter, "a->va") + iter.Release() + }) +} + +func TestDb_IteratorPinsRef(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + h.put("foo", "hello") + + // Get iterator that will yield the current contents of the DB. + iter := h.db.NewIterator(nil, nil) + + // Write to force compactions + h.put("foo", "newvalue1") + for i := 0; i < 100; i++ { + h.put(numKey(i), strings.Repeat(fmt.Sprintf("v%09d", i), 100000/10)) + } + h.put("foo", "newvalue2") + + iter.First() + testKeyVal(t, iter, "foo->hello") + if iter.Next() { + t.Errorf("expect eof") + } + iter.Release() +} + +func TestDb_Recover(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + h.put("baz", "v5") + + h.reopenDB() + h.getVal("foo", "v1") + + h.getVal("foo", "v1") + h.getVal("baz", "v5") + h.put("bar", "v2") + h.put("foo", "v3") + + h.reopenDB() + h.getVal("foo", "v3") + h.put("foo", "v4") + h.getVal("foo", "v4") + h.getVal("bar", "v2") + h.getVal("baz", "v5") + }) +} + +func TestDb_RecoverWithEmptyJournal(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + h.put("foo", "v2") + + h.reopenDB() + h.reopenDB() + h.put("foo", "v3") + + h.reopenDB() + h.getVal("foo", "v3") + }) +} + +func TestDb_RecoverDuringMemtableCompaction(t *testing.T) { + truno(t, &opt.Options{WriteBuffer: 1000000}, func(h *dbHarness) { + + h.stor.DelaySync(storage.TypeTable) + h.put("foo", "v1") + h.put("big1", strings.Repeat("x", 10000000)) + h.put("big2", strings.Repeat("y", 1000)) + h.put("bar", "v2") + h.stor.ReleaseSync(storage.TypeTable) + + h.reopenDB() + h.getVal("foo", "v1") + h.getVal("bar", "v2") + h.getVal("big1", strings.Repeat("x", 10000000)) + h.getVal("big2", strings.Repeat("y", 1000)) + }) +} + +func TestDb_MinorCompactionsHappen(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{WriteBuffer: 10000}) + defer h.close() + + n := 500 + + key := func(i int) string { + return fmt.Sprintf("key%06d", i) + } + + for i := 0; i < n; i++ { + h.put(key(i), key(i)+strings.Repeat("v", 1000)) + } + + for i := 0; i < n; i++ { + h.getVal(key(i), key(i)+strings.Repeat("v", 1000)) + } + + h.reopenDB() + for i := 0; i < n; i++ { + h.getVal(key(i), key(i)+strings.Repeat("v", 1000)) + } +} + +func TestDb_RecoverWithLargeJournal(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + h.put("big1", strings.Repeat("1", 200000)) + h.put("big2", strings.Repeat("2", 200000)) + h.put("small3", strings.Repeat("3", 10)) + h.put("small4", strings.Repeat("4", 10)) + h.tablesPerLevel("") + + // Make sure that if we re-open with a small write buffer size that + // we flush table files in the middle of a large journal file. + h.o.WriteBuffer = 100000 + h.reopenDB() + h.getVal("big1", strings.Repeat("1", 200000)) + h.getVal("big2", strings.Repeat("2", 200000)) + h.getVal("small3", strings.Repeat("3", 10)) + h.getVal("small4", strings.Repeat("4", 10)) + v := h.db.s.version() + if v.tLen(0) <= 1 { + t.Errorf("tables-0 less than one") + } + v.release() +} + +func TestDb_CompactionsGenerateMultipleFiles(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{ + WriteBuffer: 10000000, + Compression: opt.NoCompression, + }) + defer h.close() + + v := h.db.s.version() + if v.tLen(0) > 0 { + t.Errorf("level-0 tables more than 0, got %d", v.tLen(0)) + } + v.release() + + n := 80 + + // Write 8MB (80 values, each 100K) + for i := 0; i < n; i++ { + h.put(numKey(i), strings.Repeat(fmt.Sprintf("v%09d", i), 100000/10)) + } + + // Reopening moves updates to level-0 + h.reopenDB() + h.compactRangeAt(0, "", "") + + v = h.db.s.version() + if v.tLen(0) > 0 { + t.Errorf("level-0 tables more than 0, got %d", v.tLen(0)) + } + if v.tLen(1) <= 1 { + t.Errorf("level-1 tables less than 1, got %d", v.tLen(1)) + } + v.release() + + for i := 0; i < n; i++ { + h.getVal(numKey(i), strings.Repeat(fmt.Sprintf("v%09d", i), 100000/10)) + } +} + +func TestDb_RepeatedWritesToSameKey(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{WriteBuffer: 100000}) + defer h.close() + + maxTables := kNumLevels + kL0_StopWritesTrigger + + value := strings.Repeat("v", 2*h.o.GetWriteBuffer()) + for i := 0; i < 5*maxTables; i++ { + h.put("key", value) + n := h.totalTables() + if n > maxTables { + t.Errorf("total tables exceed %d, got=%d, iter=%d", maxTables, n, i) + } + } +} + +func TestDb_RepeatedWritesToSameKeyAfterReopen(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{WriteBuffer: 100000}) + defer h.close() + + h.reopenDB() + + maxTables := kNumLevels + kL0_StopWritesTrigger + + value := strings.Repeat("v", 2*h.o.GetWriteBuffer()) + for i := 0; i < 5*maxTables; i++ { + h.put("key", value) + n := h.totalTables() + if n > maxTables { + t.Errorf("total tables exceed %d, got=%d, iter=%d", maxTables, n, i) + } + } +} + +func TestDb_SparseMerge(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{Compression: opt.NoCompression}) + defer h.close() + + h.putMulti(kNumLevels, "A", "Z") + + // Suppose there is: + // small amount of data with prefix A + // large amount of data with prefix B + // small amount of data with prefix C + // and that recent updates have made small changes to all three prefixes. + // Check that we do not do a compaction that merges all of B in one shot. + h.put("A", "va") + value := strings.Repeat("x", 1000) + for i := 0; i < 100000; i++ { + h.put(fmt.Sprintf("B%010d", i), value) + } + h.put("C", "vc") + h.compactMem() + h.compactRangeAt(0, "", "") + + // Make sparse update + h.put("A", "va2") + h.put("B100", "bvalue2") + h.put("C", "vc2") + h.compactMem() + + h.maxNextLevelOverlappingBytes(20 * 1048576) + h.compactRangeAt(0, "", "") + h.maxNextLevelOverlappingBytes(20 * 1048576) + h.compactRangeAt(1, "", "") + h.maxNextLevelOverlappingBytes(20 * 1048576) +} + +func TestDb_ApproximateSizes(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{ + Compression: opt.NoCompression, + WriteBuffer: 10000000, + }) + defer h.close() + + h.sizeAssert("", "xyz", 0, 0) + h.reopenDB() + h.sizeAssert("", "xyz", 0, 0) + + // Write 8MB (80 values, each 100K) + n := 80 + s1 := 100000 + s2 := 105000 + + for i := 0; i < n; i++ { + h.put(numKey(i), strings.Repeat(fmt.Sprintf("v%09d", i), s1/10)) + } + + // 0 because GetApproximateSizes() does not account for memtable space + h.sizeAssert("", numKey(50), 0, 0) + + for r := 0; r < 3; r++ { + h.reopenDB() + + for cs := 0; cs < n; cs += 10 { + for i := 0; i < n; i += 10 { + h.sizeAssert("", numKey(i), uint64(s1*i), uint64(s2*i)) + h.sizeAssert("", numKey(i)+".suffix", uint64(s1*(i+1)), uint64(s2*(i+1))) + h.sizeAssert(numKey(i), numKey(i+10), uint64(s1*10), uint64(s2*10)) + } + + h.sizeAssert("", numKey(50), uint64(s1*50), uint64(s2*50)) + h.sizeAssert("", numKey(50)+".suffix", uint64(s1*50), uint64(s2*50)) + + h.compactRangeAt(0, numKey(cs), numKey(cs+9)) + } + + v := h.db.s.version() + if v.tLen(0) != 0 { + t.Errorf("level-0 tables was not zero, got %d", v.tLen(0)) + } + if v.tLen(1) == 0 { + t.Error("level-1 tables was zero") + } + v.release() + } +} + +func TestDb_ApproximateSizes_MixOfSmallAndLarge(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{Compression: opt.NoCompression}) + defer h.close() + + sizes := []uint64{ + 10000, + 10000, + 100000, + 10000, + 100000, + 10000, + 300000, + 10000, + } + + for i, n := range sizes { + h.put(numKey(i), strings.Repeat(fmt.Sprintf("v%09d", i), int(n)/10)) + } + + for r := 0; r < 3; r++ { + h.reopenDB() + + var x uint64 + for i, n := range sizes { + y := x + if i > 0 { + y += 1000 + } + h.sizeAssert("", numKey(i), x, y) + x += n + } + + h.sizeAssert(numKey(3), numKey(5), 110000, 111000) + + h.compactRangeAt(0, "", "") + } +} + +func TestDb_Snapshot(t *testing.T) { + trun(t, func(h *dbHarness) { + h.put("foo", "v1") + s1 := h.getSnapshot() + h.put("foo", "v2") + s2 := h.getSnapshot() + h.put("foo", "v3") + s3 := h.getSnapshot() + h.put("foo", "v4") + + h.getValr(s1, "foo", "v1") + h.getValr(s2, "foo", "v2") + h.getValr(s3, "foo", "v3") + h.getVal("foo", "v4") + + s3.Release() + h.getValr(s1, "foo", "v1") + h.getValr(s2, "foo", "v2") + h.getVal("foo", "v4") + + s1.Release() + h.getValr(s2, "foo", "v2") + h.getVal("foo", "v4") + + s2.Release() + h.getVal("foo", "v4") + }) +} + +func TestDb_HiddenValuesAreRemoved(t *testing.T) { + trun(t, func(h *dbHarness) { + s := h.db.s + + h.put("foo", "v1") + h.compactMem() + m := kMaxMemCompactLevel + v := s.version() + num := v.tLen(m) + v.release() + if num != 1 { + t.Errorf("invalid level-%d len, want=1 got=%d", m, num) + } + + // Place a table at level last-1 to prevent merging with preceding mutation + h.put("a", "begin") + h.put("z", "end") + h.compactMem() + v = s.version() + if v.tLen(m) != 1 { + t.Errorf("invalid level-%d len, want=1 got=%d", m, v.tLen(m)) + } + if v.tLen(m-1) != 1 { + t.Errorf("invalid level-%d len, want=1 got=%d", m-1, v.tLen(m-1)) + } + v.release() + + h.delete("foo") + h.put("foo", "v2") + h.allEntriesFor("foo", "[ v2, DEL, v1 ]") + h.compactMem() + h.allEntriesFor("foo", "[ v2, DEL, v1 ]") + h.compactRangeAt(m-2, "", "z") + // DEL eliminated, but v1 remains because we aren't compacting that level + // (DEL can be eliminated because v2 hides v1). + h.allEntriesFor("foo", "[ v2, v1 ]") + h.compactRangeAt(m-1, "", "") + // Merging last-1 w/ last, so we are the base level for "foo", so + // DEL is removed. (as is v1). + h.allEntriesFor("foo", "[ v2 ]") + }) +} + +func TestDb_DeletionMarkers2(t *testing.T) { + h := newDbHarness(t) + defer h.close() + s := h.db.s + + h.put("foo", "v1") + h.compactMem() + m := kMaxMemCompactLevel + v := s.version() + num := v.tLen(m) + v.release() + if num != 1 { + t.Errorf("invalid level-%d len, want=1 got=%d", m, num) + } + + // Place a table at level last-1 to prevent merging with preceding mutation + h.put("a", "begin") + h.put("z", "end") + h.compactMem() + v = s.version() + if v.tLen(m) != 1 { + t.Errorf("invalid level-%d len, want=1 got=%d", m, v.tLen(m)) + } + if v.tLen(m-1) != 1 { + t.Errorf("invalid level-%d len, want=1 got=%d", m-1, v.tLen(m-1)) + } + v.release() + + h.delete("foo") + h.allEntriesFor("foo", "[ DEL, v1 ]") + h.compactMem() // Moves to level last-2 + h.allEntriesFor("foo", "[ DEL, v1 ]") + h.compactRangeAt(m-2, "", "") + // DEL kept: "last" file overlaps + h.allEntriesFor("foo", "[ DEL, v1 ]") + h.compactRangeAt(m-1, "", "") + // Merging last-1 w/ last, so we are the base level for "foo", so + // DEL is removed. (as is v1). + h.allEntriesFor("foo", "[ ]") +} + +func TestDb_CompactionTableOpenError(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{MaxOpenFiles: 0}) + defer h.close() + + im := 10 + jm := 10 + for r := 0; r < 2; r++ { + for i := 0; i < im; i++ { + for j := 0; j < jm; j++ { + h.put(fmt.Sprintf("k%d,%d", i, j), fmt.Sprintf("v%d,%d", i, j)) + } + h.compactMem() + } + } + + if n := h.totalTables(); n != im*2 { + t.Errorf("total tables is %d, want %d", n, im) + } + + h.stor.SetOpenErr(storage.TypeTable) + go h.db.CompactRange(util.Range{}) + if err := h.db.wakeCompaction(2); err != nil { + t.Log("compaction error: ", err) + } + h.closeDB0() + h.openDB() + h.stor.SetOpenErr(0) + + for i := 0; i < im; i++ { + for j := 0; j < jm; j++ { + h.getVal(fmt.Sprintf("k%d,%d", i, j), fmt.Sprintf("v%d,%d", i, j)) + } + } +} + +func TestDb_OverlapInLevel0(t *testing.T) { + trun(t, func(h *dbHarness) { + if kMaxMemCompactLevel != 2 { + t.Fatal("fix test to reflect the config") + } + + // Fill levels 1 and 2 to disable the pushing of new memtables to levels > 0. + h.put("100", "v100") + h.put("999", "v999") + h.compactMem() + h.delete("100") + h.delete("999") + h.compactMem() + h.tablesPerLevel("0,1,1") + + // Make files spanning the following ranges in level-0: + // files[0] 200 .. 900 + // files[1] 300 .. 500 + // Note that files are sorted by min key. + h.put("300", "v300") + h.put("500", "v500") + h.compactMem() + h.put("200", "v200") + h.put("600", "v600") + h.put("900", "v900") + h.compactMem() + h.tablesPerLevel("2,1,1") + + // Compact away the placeholder files we created initially + h.compactRangeAt(1, "", "") + h.compactRangeAt(2, "", "") + h.tablesPerLevel("2") + + // Do a memtable compaction. Before bug-fix, the compaction would + // not detect the overlap with level-0 files and would incorrectly place + // the deletion in a deeper level. + h.delete("600") + h.compactMem() + h.tablesPerLevel("3") + h.get("600", false) + }) +} + +func TestDb_L0_CompactionBug_Issue44_a(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + h.reopenDB() + h.put("b", "v") + h.reopenDB() + h.delete("b") + h.delete("a") + h.reopenDB() + h.delete("a") + h.reopenDB() + h.put("a", "v") + h.reopenDB() + h.reopenDB() + h.getKeyVal("(a->v)") + h.waitCompaction() + h.getKeyVal("(a->v)") +} + +func TestDb_L0_CompactionBug_Issue44_b(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + h.reopenDB() + h.put("", "") + h.reopenDB() + h.delete("e") + h.put("", "") + h.reopenDB() + h.put("c", "cv") + h.reopenDB() + h.put("", "") + h.reopenDB() + h.put("", "") + h.waitCompaction() + h.reopenDB() + h.put("d", "dv") + h.reopenDB() + h.put("", "") + h.reopenDB() + h.delete("d") + h.delete("b") + h.reopenDB() + h.getKeyVal("(->)(c->cv)") + h.waitCompaction() + h.getKeyVal("(->)(c->cv)") +} + +func TestDb_SingleEntryMemCompaction(t *testing.T) { + trun(t, func(h *dbHarness) { + for i := 0; i < 10; i++ { + h.put("big", strings.Repeat("v", opt.DefaultWriteBuffer)) + h.compactMem() + h.put("key", strings.Repeat("v", opt.DefaultBlockSize)) + h.compactMem() + h.put("k", "v") + h.compactMem() + h.put("", "") + h.compactMem() + h.put("verybig", strings.Repeat("v", opt.DefaultWriteBuffer*2)) + h.compactMem() + } + }) +} + +func TestDb_ManifestWriteError(t *testing.T) { + for i := 0; i < 2; i++ { + func() { + h := newDbHarness(t) + defer h.close() + + h.put("foo", "bar") + h.getVal("foo", "bar") + + // Mem compaction (will succeed) + h.compactMem() + h.getVal("foo", "bar") + v := h.db.s.version() + if n := v.tLen(kMaxMemCompactLevel); n != 1 { + t.Errorf("invalid total tables, want=1 got=%d", n) + } + v.release() + + if i == 0 { + h.stor.SetWriteErr(storage.TypeManifest) + } else { + h.stor.SetSyncErr(storage.TypeManifest) + } + + // Merging compaction (will fail) + h.compactRangeAtErr(kMaxMemCompactLevel, "", "", true) + + h.db.Close() + h.stor.SetWriteErr(0) + h.stor.SetSyncErr(0) + + // Should not lose data + h.openDB() + h.getVal("foo", "bar") + }() + } +} + +func assertErr(t *testing.T, err error, wanterr bool) { + if err != nil { + if wanterr { + t.Log("AssertErr: got error (expected): ", err) + } else { + t.Error("AssertErr: got error: ", err) + } + } else if wanterr { + t.Error("AssertErr: expect error") + } +} + +func TestDb_ClosedIsClosed(t *testing.T) { + h := newDbHarness(t) + db := h.db + + var iter, iter2 iterator.Iterator + var snap *Snapshot + func() { + defer h.close() + + h.put("k", "v") + h.getVal("k", "v") + + iter = db.NewIterator(nil, h.ro) + iter.Seek([]byte("k")) + testKeyVal(t, iter, "k->v") + + var err error + snap, err = db.GetSnapshot() + if err != nil { + t.Fatal("GetSnapshot: got error: ", err) + } + + h.getValr(snap, "k", "v") + + iter2 = snap.NewIterator(nil, h.ro) + iter2.Seek([]byte("k")) + testKeyVal(t, iter2, "k->v") + + h.put("foo", "v2") + h.delete("foo") + + // closing DB + iter.Release() + iter2.Release() + }() + + assertErr(t, db.Put([]byte("x"), []byte("y"), h.wo), true) + _, err := db.Get([]byte("k"), h.ro) + assertErr(t, err, true) + + if iter.Valid() { + t.Errorf("iter.Valid should false") + } + assertErr(t, iter.Error(), false) + testKeyVal(t, iter, "->") + if iter.Seek([]byte("k")) { + t.Errorf("iter.Seek should false") + } + assertErr(t, iter.Error(), true) + + assertErr(t, iter2.Error(), false) + + _, err = snap.Get([]byte("k"), h.ro) + assertErr(t, err, true) + + _, err = db.GetSnapshot() + assertErr(t, err, true) + + iter3 := db.NewIterator(nil, h.ro) + assertErr(t, iter3.Error(), true) + + iter3 = snap.NewIterator(nil, h.ro) + assertErr(t, iter3.Error(), true) + + assertErr(t, db.Delete([]byte("k"), h.wo), true) + + _, err = db.GetProperty("leveldb.stats") + assertErr(t, err, true) + + _, err = db.GetApproximateSizes([]util.Range{{[]byte("a"), []byte("z")}}) + assertErr(t, err, true) + + assertErr(t, db.CompactRange(util.Range{}), true) + + assertErr(t, db.Close(), true) +} + +type numberComparer struct{} + +func (numberComparer) num(x []byte) (n int) { + fmt.Sscan(string(x[1:len(x)-1]), &n) + return +} + +func (numberComparer) Name() string { + return "test.NumberComparer" +} + +func (p numberComparer) Compare(a, b []byte) int { + return p.num(a) - p.num(b) +} + +func (numberComparer) Separator(dst, a, b []byte) []byte { return nil } +func (numberComparer) Successor(dst, b []byte) []byte { return nil } + +func TestDb_CustomComparer(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{ + Comparer: numberComparer{}, + WriteBuffer: 1000, + }) + defer h.close() + + h.put("[10]", "ten") + h.put("[0x14]", "twenty") + for i := 0; i < 2; i++ { + h.getVal("[10]", "ten") + h.getVal("[0xa]", "ten") + h.getVal("[20]", "twenty") + h.getVal("[0x14]", "twenty") + h.get("[15]", false) + h.get("[0xf]", false) + h.compactMem() + h.compactRange("[0]", "[9999]") + } + + for n := 0; n < 2; n++ { + for i := 0; i < 100; i++ { + v := fmt.Sprintf("[%d]", i*10) + h.put(v, v) + } + h.compactMem() + h.compactRange("[0]", "[1000000]") + } +} + +func TestDb_ManualCompaction(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + if kMaxMemCompactLevel != 2 { + t.Fatal("fix test to reflect the config") + } + + h.putMulti(3, "p", "q") + h.tablesPerLevel("1,1,1") + + // Compaction range falls before files + h.compactRange("", "c") + h.tablesPerLevel("1,1,1") + + // Compaction range falls after files + h.compactRange("r", "z") + h.tablesPerLevel("1,1,1") + + // Compaction range overlaps files + h.compactRange("p1", "p9") + h.tablesPerLevel("0,0,1") + + // Populate a different range + h.putMulti(3, "c", "e") + h.tablesPerLevel("1,1,2") + + // Compact just the new range + h.compactRange("b", "f") + h.tablesPerLevel("0,0,2") + + // Compact all + h.putMulti(1, "a", "z") + h.tablesPerLevel("0,1,2") + h.compactRange("", "") + h.tablesPerLevel("0,0,1") +} + +func TestDb_BloomFilter(t *testing.T) { + h := newDbHarnessWopt(t, &opt.Options{ + BlockCache: opt.NoCache, + Filter: filter.NewBloomFilter(10), + }) + defer h.close() + + key := func(i int) string { + return fmt.Sprintf("key%06d", i) + } + + n := 10000 + + // Populate multiple layers + for i := 0; i < n; i++ { + h.put(key(i), key(i)) + } + h.compactMem() + h.compactRange("a", "z") + for i := 0; i < n; i += 100 { + h.put(key(i), key(i)) + } + h.compactMem() + + // Prevent auto compactions triggered by seeks + h.stor.DelaySync(storage.TypeTable) + + // Lookup present keys. Should rarely read from small sstable. + h.stor.SetReadCounter(storage.TypeTable) + for i := 0; i < n; i++ { + h.getVal(key(i), key(i)) + } + cnt := int(h.stor.ReadCounter()) + t.Logf("lookup of %d present keys yield %d sstable I/O reads", n, cnt) + + if min, max := n, n+2*n/100; cnt < min || cnt > max { + t.Errorf("num of sstable I/O reads of present keys not in range of %d - %d, got %d", min, max, cnt) + } + + // Lookup missing keys. Should rarely read from either sstable. + h.stor.ResetReadCounter() + for i := 0; i < n; i++ { + h.get(key(i)+".missing", false) + } + cnt = int(h.stor.ReadCounter()) + t.Logf("lookup of %d missing keys yield %d sstable I/O reads", n, cnt) + if max := 3 * n / 100; cnt > max { + t.Errorf("num of sstable I/O reads of missing keys was more than %d, got %d", max, cnt) + } + + h.stor.ReleaseSync(storage.TypeTable) +} + +func TestDb_Concurrent(t *testing.T) { + const n, secs, maxkey = 4, 2, 1000 + + runtime.GOMAXPROCS(n) + trun(t, func(h *dbHarness) { + var closeWg sync.WaitGroup + var stop uint32 + var cnt [n]uint32 + + for i := 0; i < n; i++ { + closeWg.Add(1) + go func(i int) { + var put, get, found uint + defer func() { + t.Logf("goroutine %d stopped after %d ops, put=%d get=%d found=%d missing=%d", + i, cnt[i], put, get, found, get-found) + closeWg.Done() + }() + + rnd := rand.New(rand.NewSource(int64(1000 + i))) + for atomic.LoadUint32(&stop) == 0 { + x := cnt[i] + + k := rnd.Intn(maxkey) + kstr := fmt.Sprintf("%016d", k) + + if (rnd.Int() % 2) > 0 { + put++ + h.put(kstr, fmt.Sprintf("%d.%d.%-1000d", k, i, x)) + } else { + get++ + v, err := h.db.Get([]byte(kstr), h.ro) + if err == nil { + found++ + rk, ri, rx := 0, -1, uint32(0) + fmt.Sscanf(string(v), "%d.%d.%d", &rk, &ri, &rx) + if rk != k { + t.Errorf("invalid key want=%d got=%d", k, rk) + } + if ri < 0 || ri >= n { + t.Error("invalid goroutine number: ", ri) + } else { + tx := atomic.LoadUint32(&(cnt[ri])) + if rx > tx { + t.Errorf("invalid seq number, %d > %d ", rx, tx) + } + } + } else if err != ErrNotFound { + t.Error("Get: got error: ", err) + return + } + } + atomic.AddUint32(&cnt[i], 1) + } + }(i) + } + + time.Sleep(secs * time.Second) + atomic.StoreUint32(&stop, 1) + closeWg.Wait() + }) + + runtime.GOMAXPROCS(1) +} + +func TestDb_Concurrent2(t *testing.T) { + const n, n2 = 4, 4000 + + runtime.GOMAXPROCS(n*2 + 2) + truno(t, &opt.Options{WriteBuffer: 30}, func(h *dbHarness) { + var closeWg sync.WaitGroup + var stop uint32 + + for i := 0; i < n; i++ { + closeWg.Add(1) + go func(i int) { + for k := 0; atomic.LoadUint32(&stop) == 0; k++ { + h.put(fmt.Sprintf("k%d", k), fmt.Sprintf("%d.%d.", k, i)+strings.Repeat("x", 10)) + } + closeWg.Done() + }(i) + } + + for i := 0; i < n; i++ { + closeWg.Add(1) + go func(i int) { + for k := 1000000; k < 0 || atomic.LoadUint32(&stop) == 0; k-- { + h.put(fmt.Sprintf("k%d", k), fmt.Sprintf("%d.%d.", k, i)+strings.Repeat("x", 10)) + } + closeWg.Done() + }(i) + } + + cmp := comparer.DefaultComparer + for i := 0; i < n2; i++ { + closeWg.Add(1) + go func(i int) { + it := h.db.NewIterator(nil, nil) + var pk []byte + for it.Next() { + kk := it.Key() + if cmp.Compare(kk, pk) <= 0 { + t.Errorf("iter %d: %q is successor of %q", i, pk, kk) + } + pk = append(pk[:0], kk...) + var k, vk, vi int + if n, err := fmt.Sscanf(string(it.Key()), "k%d", &k); err != nil { + t.Errorf("iter %d: Scanf error on key %q: %v", i, it.Key(), err) + } else if n < 1 { + t.Errorf("iter %d: Cannot parse key %q", i, it.Key()) + } + if n, err := fmt.Sscanf(string(it.Value()), "%d.%d", &vk, &vi); err != nil { + t.Errorf("iter %d: Scanf error on value %q: %v", i, it.Value(), err) + } else if n < 2 { + t.Errorf("iter %d: Cannot parse value %q", i, it.Value()) + } + + if vk != k { + t.Errorf("iter %d: invalid value i=%d, want=%d got=%d", i, vi, k, vk) + } + } + if err := it.Error(); err != nil { + t.Errorf("iter %d: Got error: %v", i, err) + } + it.Release() + closeWg.Done() + }(i) + } + + atomic.StoreUint32(&stop, 1) + closeWg.Wait() + }) + + runtime.GOMAXPROCS(1) +} + +func TestDb_CreateReopenDbOnFile(t *testing.T) { + dbpath := filepath.Join(os.TempDir(), fmt.Sprintf("goleveldbtestCreateReopenDbOnFile-%d", os.Getuid())) + if err := os.RemoveAll(dbpath); err != nil { + t.Fatal("cannot remove old db: ", err) + } + defer os.RemoveAll(dbpath) + + for i := 0; i < 3; i++ { + stor, err := storage.OpenFile(dbpath) + if err != nil { + t.Fatalf("(%d) cannot open storage: %s", i, err) + } + db, err := Open(stor, nil) + if err != nil { + t.Fatalf("(%d) cannot open db: %s", i, err) + } + if err := db.Put([]byte("foo"), []byte("bar"), nil); err != nil { + t.Fatalf("(%d) cannot write to db: %s", i, err) + } + if err := db.Close(); err != nil { + t.Fatalf("(%d) cannot close db: %s", i, err) + } + if err := stor.Close(); err != nil { + t.Fatalf("(%d) cannot close storage: %s", i, err) + } + } +} + +func TestDb_CreateReopenDbOnFile2(t *testing.T) { + dbpath := filepath.Join(os.TempDir(), fmt.Sprintf("goleveldbtestCreateReopenDbOnFile2-%d", os.Getuid())) + if err := os.RemoveAll(dbpath); err != nil { + t.Fatal("cannot remove old db: ", err) + } + defer os.RemoveAll(dbpath) + + for i := 0; i < 3; i++ { + db, err := OpenFile(dbpath, nil) + if err != nil { + t.Fatalf("(%d) cannot open db: %s", i, err) + } + if err := db.Put([]byte("foo"), []byte("bar"), nil); err != nil { + t.Fatalf("(%d) cannot write to db: %s", i, err) + } + if err := db.Close(); err != nil { + t.Fatalf("(%d) cannot close db: %s", i, err) + } + } +} + +func TestDb_DeletionMarkersOnMemdb(t *testing.T) { + h := newDbHarness(t) + defer h.close() + + h.put("foo", "v1") + h.compactMem() + h.delete("foo") + h.get("foo", false) + h.getKeyVal("") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_util.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_util.go new file mode 100644 index 00000000..0fbd66df --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_util.go @@ -0,0 +1,77 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +// Reader is the interface that wraps basic Get and NewIterator methods. +// This interface implemented by both DB and Snapshot. +type Reader interface { + Get(key []byte, ro *opt.ReadOptions) (value []byte, err error) + NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator +} + +type Sizes []uint64 + +// Sum returns sum of the sizes. +func (p Sizes) Sum() (n uint64) { + for _, s := range p { + n += s + } + return n +} + +// Remove unused files. +func (d *DB) cleanFiles() error { + s := d.s + + v := s.version_NB() + tables := make(map[uint64]struct{}) + for _, tt := range v.tables { + for _, t := range tt { + tables[t.file.Num()] = struct{}{} + } + } + + ff, err := s.getFiles(storage.TypeAll) + if err != nil { + return err + } + var rem []storage.File + for _, f := range ff { + keep := true + switch f.Type() { + case storage.TypeManifest: + keep = f.Num() >= s.manifestFile.Num() + case storage.TypeJournal: + if d.frozenJournalFile != nil { + keep = f.Num() >= d.frozenJournalFile.Num() + } else { + keep = f.Num() >= d.journalFile.Num() + } + case storage.TypeTable: + _, keep = tables[f.Num()] + } + + if !keep { + rem = append(rem, f) + } + } + s.logf("db@janitor F·%d G·%d", len(ff), len(rem)) + for _, f := range rem { + s.logf("db@janitor removing %s-%d", f.Type(), f.Num()) + if err := f.Remove(); err != nil { + return err + } + } + return nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_write.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_write.go new file mode 100644 index 00000000..05014dbd --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/db_write.go @@ -0,0 +1,207 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "time" + + "github.com/syndtr/goleveldb/leveldb/memdb" + "github.com/syndtr/goleveldb/leveldb/opt" +) + +func (d *DB) doWriteJournal(b *Batch) error { + w, err := d.journal.Next() + if err != nil { + return err + } + if _, err := w.Write(b.encode()); err != nil { + return err + } + if err := d.journal.Flush(); err != nil { + return err + } + if b.sync { + return d.journalWriter.Sync() + } + return nil +} + +func (d *DB) writeJournal() { + defer d.closeWg.Done() + for { + select { + case _, _ = <-d.closeCh: + return + case b := <-d.journalCh: + if b != nil { + d.journalAckCh <- d.doWriteJournal(b) + } + } + } +} + +func (d *DB) flush() (mem *memdb.DB, err error) { + s := d.s + + delayed := false + flush := func() bool { + v := s.version() + defer v.release() + mem = d.getEffectiveMem() + switch { + case v.tLen(0) >= kL0_SlowdownWritesTrigger && !delayed: + delayed = true + time.Sleep(time.Millisecond) + case mem.Size() < s.o.GetWriteBuffer(): + return false + case v.tLen(0) >= kL0_StopWritesTrigger: + delayed = true + err = d.wakeCompaction(2) + if err != nil { + return false + } + default: + // Wait for pending memdb compaction. + select { + case _, _ = <-d.closeCh: + err = ErrClosed + return false + case <-d.compMemAckCh: + case err = <-d.compErrCh: + return false + } + // Create new memdb and journal. + mem, err = d.newMem() + if err != nil { + return false + } + + // Schedule memdb compaction. + d.compMemCh <- nil + return false + } + return true + } + start := time.Now() + for flush() { + } + if delayed { + s.logf("db@write delayed T·%v", time.Since(start)) + } + return +} + +// Write apply the given batch to the DB. The batch will be applied +// sequentially. +// +// It is safe to modify the contents of the arguments after Write returns. +func (d *DB) Write(b *Batch, wo *opt.WriteOptions) (err error) { + err = d.ok() + if err != nil || b == nil || b.len() == 0 { + return + } + + b.init(wo.GetSync()) + + // The write happen synchronously. + select { + case _, _ = <-d.closeCh: + return ErrClosed + case d.writeCh <- b: + return <-d.writeAckCh + case d.writeLockCh <- struct{}{}: + } + + merged := 0 + defer func() { + <-d.writeLockCh + for i := 0; i < merged; i++ { + d.writeAckCh <- err + } + }() + + mem, err := d.flush() + if err != nil { + return + } + + // Calculate maximum size of the batch. + m := 1 << 20 + if x := b.size(); x <= 128<<10 { + m = x + (128 << 10) + } + + // Merge with other batch. +drain: + for b.size() <= m && !b.sync { + select { + case nb := <-d.writeCh: + b.append(nb) + merged++ + default: + break drain + } + } + + // Set batch first seq number relative from last seq. + b.seq = d.seq + 1 + + // Write journal concurrently if it is large enough. + if b.size() >= (128 << 10) { + // Push the write batch to the journal writer + select { + case _, _ = <-d.closeCh: + err = ErrClosed + return + case d.journalCh <- b: + // Write into memdb + b.memReplay(mem) + } + // Wait for journal writer + select { + case _, _ = <-d.closeCh: + err = ErrClosed + return + case err = <-d.journalAckCh: + if err != nil { + // Revert memdb if error detected + b.revertMemReplay(mem) + return + } + } + } else { + err = d.doWriteJournal(b) + if err != nil { + return + } + b.memReplay(mem) + } + + // Set last seq number. + d.addSeq(uint64(b.len())) + return +} + +// Put sets the value for the given key. It overwrites any previous value +// for that key; a DB is not a multi-map. +// +// It is safe to modify the contents of the arguments after Put returns. +func (d *DB) Put(key, value []byte, wo *opt.WriteOptions) error { + b := new(Batch) + b.Put(key, value) + return d.Write(b, wo) +} + +// Delete deletes the value for the given key. It returns ErrNotFound if +// the DB does not contain the key. +// +// It is safe to modify the contents of the arguments after Delete returns. +func (d *DB) Delete(key []byte, wo *opt.WriteOptions) error { + b := new(Batch) + b.Delete(key) + return d.Write(b, wo) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/doc.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/doc.go new file mode 100644 index 00000000..ac9ea3d0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/doc.go @@ -0,0 +1,80 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package leveldb provides implementation of LevelDB key/value database. +// +// Create or open a database: +// +// db, err := leveldb.OpenFile("path/to/db", nil) +// ... +// defer db.Close() +// ... +// +// Read or modify the database content: +// +// // Remember that the contents of the returned slice should not be modified. +// data, err := db.Get([]byte("key"), nil) +// ... +// err = db.Put([]byte("key"), []byte("value"), nil) +// ... +// err = db.Delete([]byte("key"), nil) +// ... +// +// Iterate over database content: +// +// iter := db.NewIterator(nil, nil) +// for iter.Next() { +// // Remember that the contents of the returned slice should not be modified, and +// // only valid until the next call to Next. +// key := iter.Key() +// value := iter.Value() +// ... +// } +// iter.Release() +// err = iter.Error() +// ... +// +// Seek-then-Iterate: +// +// iter := db.NewIterator(nil, nil) +// for ok := iter.Seek(key); ok; ok = iter.Next() { +// // Use key/value. +// ... +// } +// iter.Release() +// err = iter.Error() +// ... +// +// Iterate over subset of database content: +// +// iter := db.NewIterator(&util.Range{Start: []byte("foo"), Limit: []byte("xoo")}, nil) +// for iter.Next() { +// // Use key/value. +// ... +// } +// iter.Release() +// err = iter.Error() +// ... +// +// Batch writes: +// +// batch := new(leveldb.Batch) +// batch.Put([]byte("foo"), []byte("value")) +// batch.Put([]byte("bar"), []byte("another value")) +// batch.Delete([]byte("baz")) +// err = db.Write(batch, nil) +// ... +// +// Use bloom filter: +// +// o := &opt.Options{ +// Filter: filter.NewBloomFilter(10), +// } +// db, err := leveldb.OpenFile("path/to/db", o) +// ... +// defer db.Close() +// ... +package leveldb diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/external_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/external_test.go new file mode 100644 index 00000000..d7dff04b --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/external_test.go @@ -0,0 +1,58 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +var _ = testutil.Defer(func() { + Describe("Leveldb external", func() { + o := &opt.Options{ + BlockCache: opt.NoCache, + BlockRestartInterval: 5, + BlockSize: 50, + Compression: opt.NoCompression, + MaxOpenFiles: 0, + Strict: opt.StrictAll, + WriteBuffer: 1000, + } + + Describe("write test", func() { + It("should do write correctly", func(done Done) { + db := newTestingDB(o, nil, nil) + t := testutil.DBTesting{ + DB: db, + Deleted: testutil.KeyValue_Generate(nil, 500, 1, 50, 5, 5).Clone(), + } + testutil.DoDBTesting(&t) + db.TestClose() + done <- true + }, 9.0) + }) + + Describe("read test", func() { + testutil.AllKeyValueTesting(nil, func(kv testutil.KeyValue) testutil.DB { + // Building the DB. + db := newTestingDB(o, nil, nil) + kv.IterateShuffled(nil, func(i int, key, value []byte) { + err := db.TestPut(key, value) + Expect(err).NotTo(HaveOccurred()) + }) + testutil.Defer("teardown", func() { + db.TestClose() + }) + + return db + }) + }) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter.go new file mode 100644 index 00000000..37c1e146 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter.go @@ -0,0 +1,31 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "github.com/syndtr/goleveldb/leveldb/filter" +) + +type iFilter struct { + filter.Filter +} + +func (f iFilter) Contains(filter, key []byte) bool { + return f.Filter.Contains(filter, iKey(key).ukey()) +} + +func (f iFilter) NewGenerator() filter.FilterGenerator { + return iFilterGenerator{f.Filter.NewGenerator()} +} + +type iFilterGenerator struct { + filter.FilterGenerator +} + +func (g iFilterGenerator) Add(key []byte) { + g.FilterGenerator.Add(iKey(key).ukey()) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/bloom.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/bloom.go new file mode 100644 index 00000000..bab0e997 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/bloom.go @@ -0,0 +1,116 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package filter + +import ( + "github.com/syndtr/goleveldb/leveldb/util" +) + +func bloomHash(key []byte) uint32 { + return util.Hash(key, 0xbc9f1d34) +} + +type bloomFilter int + +// The bloom filter serializes its parameters and is backward compatible +// with respect to them. Therefor, its parameters are not added to its +// name. +func (bloomFilter) Name() string { + return "leveldb.BuiltinBloomFilter" +} + +func (f bloomFilter) Contains(filter, key []byte) bool { + nBytes := len(filter) - 1 + if nBytes < 1 { + return false + } + nBits := uint32(nBytes * 8) + + // Use the encoded k so that we can read filters generated by + // bloom filters created using different parameters. + k := filter[nBytes] + if k > 30 { + // Reserved for potentially new encodings for short bloom filters. + // Consider it a match. + return true + } + + kh := bloomHash(key) + delta := (kh >> 17) | (kh << 15) // Rotate right 17 bits + for j := uint8(0); j < k; j++ { + bitpos := kh % nBits + if (uint32(filter[bitpos/8]) & (1 << (bitpos % 8))) == 0 { + return false + } + kh += delta + } + return true +} + +func (f bloomFilter) NewGenerator() FilterGenerator { + // Round down to reduce probing cost a little bit. + k := uint8(f * 69 / 100) // 0.69 =~ ln(2) + if k < 1 { + k = 1 + } else if k > 30 { + k = 30 + } + return &bloomFilterGenerator{ + n: int(f), + k: k, + } +} + +type bloomFilterGenerator struct { + n int + k uint8 + + keyHashes []uint32 +} + +func (g *bloomFilterGenerator) Add(key []byte) { + // Use double-hashing to generate a sequence of hash values. + // See analysis in [Kirsch,Mitzenmacher 2006]. + g.keyHashes = append(g.keyHashes, bloomHash(key)) +} + +func (g *bloomFilterGenerator) Generate(b Buffer) { + // Compute bloom filter size (in both bits and bytes) + nBits := uint32(len(g.keyHashes) * g.n) + // For small n, we can see a very high false positive rate. Fix it + // by enforcing a minimum bloom filter length. + if nBits < 64 { + nBits = 64 + } + nBytes := (nBits + 7) / 8 + nBits = nBytes * 8 + + dest := b.Alloc(int(nBytes) + 1) + dest[nBytes] = g.k + for _, kh := range g.keyHashes { + delta := (kh >> 17) | (kh << 15) // Rotate right 17 bits + for j := uint8(0); j < g.k; j++ { + bitpos := kh % nBits + dest[bitpos/8] |= (1 << (bitpos % 8)) + kh += delta + } + } + + g.keyHashes = g.keyHashes[:0] +} + +// NewBloomFilter creates a new initialized bloom filter for given +// bitsPerKey. +// +// Since bitsPerKey is persisted individually for each bloom filter +// serialization, bloom filters are backwards compatible with respect to +// changing bitsPerKey. This means that no big performance penalty will +// be experienced when changing the parameter. See documentation for +// opt.Options.Filter for more information. +func NewBloomFilter(bitsPerKey int) Filter { + return bloomFilter(bitsPerKey) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/bloom_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/bloom_test.go new file mode 100644 index 00000000..1fb56f07 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/bloom_test.go @@ -0,0 +1,142 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package filter + +import ( + "encoding/binary" + "github.com/syndtr/goleveldb/leveldb/util" + "testing" +) + +type harness struct { + t *testing.T + + bloom Filter + generator FilterGenerator + filter []byte +} + +func newHarness(t *testing.T) *harness { + bloom := NewBloomFilter(10) + return &harness{ + t: t, + bloom: bloom, + generator: bloom.NewGenerator(), + } +} + +func (h *harness) add(key []byte) { + h.generator.Add(key) +} + +func (h *harness) addNum(key uint32) { + var b [4]byte + binary.LittleEndian.PutUint32(b[:], key) + h.add(b[:]) +} + +func (h *harness) build() { + b := &util.Buffer{} + h.generator.Generate(b) + h.filter = b.Bytes() +} + +func (h *harness) reset() { + h.filter = nil +} + +func (h *harness) filterLen() int { + return len(h.filter) +} + +func (h *harness) assert(key []byte, want, silent bool) bool { + got := h.bloom.Contains(h.filter, key) + if !silent && got != want { + h.t.Errorf("assert on '%v' failed got '%v', want '%v'", key, got, want) + } + return got +} + +func (h *harness) assertNum(key uint32, want, silent bool) bool { + var b [4]byte + binary.LittleEndian.PutUint32(b[:], key) + return h.assert(b[:], want, silent) +} + +func TestBloomFilter_Empty(t *testing.T) { + h := newHarness(t) + h.build() + h.assert([]byte("hello"), false, false) + h.assert([]byte("world"), false, false) +} + +func TestBloomFilter_Small(t *testing.T) { + h := newHarness(t) + h.add([]byte("hello")) + h.add([]byte("world")) + h.build() + h.assert([]byte("hello"), true, false) + h.assert([]byte("world"), true, false) + h.assert([]byte("x"), false, false) + h.assert([]byte("foo"), false, false) +} + +func nextN(n int) int { + switch { + case n < 10: + n += 1 + case n < 100: + n += 10 + case n < 1000: + n += 100 + default: + n += 1000 + } + return n +} + +func TestBloomFilter_VaryingLengths(t *testing.T) { + h := newHarness(t) + var mediocre, good int + for n := 1; n < 10000; n = nextN(n) { + h.reset() + for i := 0; i < n; i++ { + h.addNum(uint32(i)) + } + h.build() + + got := h.filterLen() + want := (n * 10 / 8) + 40 + if got > want { + t.Errorf("filter len test failed, '%d' > '%d'", got, want) + } + + for i := 0; i < n; i++ { + h.assertNum(uint32(i), true, false) + } + + var rate float32 + for i := 0; i < 10000; i++ { + if h.assertNum(uint32(i+1000000000), true, true) { + rate++ + } + } + rate /= 10000 + if rate > 0.02 { + t.Errorf("false positive rate is more than 2%%, got %v, at len %d", rate, n) + } + if rate > 0.0125 { + mediocre++ + } else { + good++ + } + } + t.Logf("false positive rate: %d good, %d mediocre", good, mediocre) + if mediocre > good/5 { + t.Error("mediocre false positive rate is more than expected") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/filter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/filter.go new file mode 100644 index 00000000..7a925c5a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/filter/filter.go @@ -0,0 +1,60 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package filter provides interface and implementation of probabilistic +// data structure. +// +// The filter is resposible for creating small filter from a set of keys. +// These filter will then used to test whether a key is a member of the set. +// In many cases, a filter can cut down the number of disk seeks from a +// handful to a single disk seek per DB.Get call. +package filter + +// Buffer is the interface that wraps basic Alloc, Write and WriteByte methods. +type Buffer interface { + // Alloc allocs n bytes of slice from the buffer. This also advancing + // write offset. + Alloc(n int) []byte + + // Write appends the contents of p to the buffer. + Write(p []byte) (n int, err error) + + // WriteByte appends the byte c to the buffer. + WriteByte(c byte) error +} + +// Filter is the filter. +type Filter interface { + // Name returns the name of this policy. + // + // Note that if the filter encoding changes in an incompatible way, + // the name returned by this method must be changed. Otherwise, old + // incompatible filters may be passed to methods of this type. + Name() string + + // NewGenerator creates a new filter generator. + NewGenerator() FilterGenerator + + // Contains returns true if the filter contains the given key. + // + // The filter are filters generated by the filter generator. + Contains(filter, key []byte) bool +} + +// FilterGenerator is the filter generator. +type FilterGenerator interface { + // Add adds a key to the filter generator. + // + // The key may become invalid after call to this method end, therefor + // key must be copied if implementation require keeping key for later + // use. The key should not modified directly, doing so may cause + // undefined results. + Add(key []byte) + + // Generate generates filters based on keys passed so far. After call + // to Generate the filter generator maybe resetted, depends on implementation. + Generate(b Buffer) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter.go new file mode 100644 index 00000000..9b4b7274 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter.go @@ -0,0 +1,158 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package iterator + +import ( + "github.com/syndtr/goleveldb/leveldb/util" +) + +// BasicArray is the interface that wraps basic Len and Search method. +type BasicArray interface { + // Len returns length of the array. + Len() int + + // Search finds smallest index that point to a key that is greater + // than or equal to the given key. + Search(key []byte) int +} + +// Array is the interface that wraps BasicArray and basic Index method. +type Array interface { + BasicArray + + // Index returns key/value pair with index of i. + Index(i int) (key, value []byte) +} + +// Array is the interface that wraps BasicArray and basic Get method. +type ArrayIndexer interface { + BasicArray + + // Get returns a new data iterator with index of i. + Get(i int) Iterator +} + +type basicArrayIterator struct { + util.BasicReleaser + array BasicArray + pos int +} + +func (i *basicArrayIterator) Valid() bool { + return i.pos >= 0 && i.pos < i.array.Len() +} + +func (i *basicArrayIterator) First() bool { + if i.array.Len() == 0 { + i.pos = -1 + return false + } + i.pos = 0 + return true +} + +func (i *basicArrayIterator) Last() bool { + n := i.array.Len() + if n == 0 { + i.pos = 0 + return false + } + i.pos = n - 1 + return true +} + +func (i *basicArrayIterator) Seek(key []byte) bool { + n := i.array.Len() + if n == 0 { + i.pos = 0 + return false + } + i.pos = i.array.Search(key) + if i.pos >= n { + return false + } + return true +} + +func (i *basicArrayIterator) Next() bool { + i.pos++ + if n := i.array.Len(); i.pos >= n { + i.pos = n + return false + } + return true +} + +func (i *basicArrayIterator) Prev() bool { + i.pos-- + if i.pos < 0 { + i.pos = -1 + return false + } + return true +} + +func (i *basicArrayIterator) Error() error { return nil } + +type arrayIterator struct { + basicArrayIterator + array Array + pos int + key, value []byte +} + +func (i *arrayIterator) updateKV() { + if i.pos == i.basicArrayIterator.pos { + return + } + i.pos = i.basicArrayIterator.pos + if i.Valid() { + i.key, i.value = i.array.Index(i.pos) + } else { + i.key = nil + i.value = nil + } +} + +func (i *arrayIterator) Key() []byte { + i.updateKV() + return i.key +} + +func (i *arrayIterator) Value() []byte { + i.updateKV() + return i.value +} + +type arrayIteratorIndexer struct { + basicArrayIterator + array ArrayIndexer +} + +func (i *arrayIteratorIndexer) Get() Iterator { + if i.Valid() { + return i.array.Get(i.basicArrayIterator.pos) + } + return nil +} + +// NewArrayIterator returns an iterator from the given array. +func NewArrayIterator(array Array) Iterator { + return &arrayIterator{ + basicArrayIterator: basicArrayIterator{array: array, pos: -1}, + array: array, + pos: -1, + } +} + +// NewArrayIndexer returns an index iterator from the given array. +func NewArrayIndexer(array ArrayIndexer) IteratorIndexer { + return &arrayIteratorIndexer{ + basicArrayIterator: basicArrayIterator{array: array, pos: -1}, + array: array, + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter_test.go new file mode 100644 index 00000000..1ed6d07c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter_test.go @@ -0,0 +1,30 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package iterator_test + +import ( + . "github.com/onsi/ginkgo" + + . "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +var _ = testutil.Defer(func() { + Describe("Array iterator", func() { + It("Should iterates and seeks correctly", func() { + // Build key/value. + kv := testutil.KeyValue_Generate(nil, 70, 1, 5, 3, 3) + + // Test the iterator. + t := testutil.IteratorTesting{ + KeyValue: kv.Clone(), + Iter: NewArrayIterator(kv), + } + testutil.DoIteratorTesting(&t) + }) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter.go new file mode 100644 index 00000000..fb89f8e0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter.go @@ -0,0 +1,211 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package iterator + +import ( + "github.com/syndtr/goleveldb/leveldb/util" +) + +// IteratorIndexer is the interface that wraps CommonIterator and basic Get +// method. IteratorIndexer provides index for indexed iterator. +type IteratorIndexer interface { + CommonIterator + + // Get returns a new data iterator for the current position, or nil if + // done. + Get() Iterator +} + +type indexedIterator struct { + util.BasicReleaser + index IteratorIndexer + strict bool + strictGet bool + + data Iterator + err error +} + +func (i *indexedIterator) setData() { + if i.data != nil { + i.data.Release() + } + i.data = i.index.Get() + if i.strictGet { + if err := i.data.Error(); err != nil { + i.err = err + } + } +} + +func (i *indexedIterator) clearData() { + if i.data != nil { + i.data.Release() + } + i.data = nil +} + +func (i *indexedIterator) dataErr() bool { + if i.strict { + if err := i.data.Error(); err != nil { + i.err = err + return true + } + } + return false +} + +func (i *indexedIterator) Valid() bool { + return i.data != nil && i.data.Valid() +} + +func (i *indexedIterator) First() bool { + if i.err != nil { + return false + } + + if !i.index.First() { + i.clearData() + return false + } + i.setData() + return i.Next() +} + +func (i *indexedIterator) Last() bool { + if i.err != nil { + return false + } + + if !i.index.Last() { + i.clearData() + return false + } + i.setData() + if !i.data.Last() { + if i.dataErr() { + return false + } + i.clearData() + return i.Prev() + } + return true +} + +func (i *indexedIterator) Seek(key []byte) bool { + if i.err != nil { + return false + } + + if !i.index.Seek(key) { + i.clearData() + return false + } + i.setData() + if !i.data.Seek(key) { + if i.dataErr() { + return false + } + i.clearData() + return i.Next() + } + return true +} + +func (i *indexedIterator) Next() bool { + if i.err != nil { + return false + } + + switch { + case i.data != nil && !i.data.Next(): + if i.dataErr() { + return false + } + i.clearData() + fallthrough + case i.data == nil: + if !i.index.Next() { + return false + } + i.setData() + return i.Next() + } + return true +} + +func (i *indexedIterator) Prev() bool { + if i.err != nil { + return false + } + + switch { + case i.data != nil && !i.data.Prev(): + if i.dataErr() { + return false + } + i.clearData() + fallthrough + case i.data == nil: + if !i.index.Prev() { + return false + } + i.setData() + if !i.data.Last() { + if i.dataErr() { + return false + } + i.clearData() + return i.Prev() + } + } + return true +} + +func (i *indexedIterator) Key() []byte { + if i.data == nil { + return nil + } + return i.data.Key() +} + +func (i *indexedIterator) Value() []byte { + if i.data == nil { + return nil + } + return i.data.Value() +} + +func (i *indexedIterator) Release() { + i.clearData() + i.index.Release() + i.BasicReleaser.Release() +} + +func (i *indexedIterator) Error() error { + if i.err != nil { + return i.err + } + if err := i.index.Error(); err != nil { + return err + } + return nil +} + +// NewIndexedIterator returns an indexed iterator. An index is iterator +// that returns another iterator, a data iterator. A data iterator is the +// iterator that contains actual key/value pairs. +// +// If strict is true then error yield by data iterator will halt the indexed +// iterator, on contrary if strict is false then the indexed iterator will +// ignore those error and move on to the next index. If strictGet is true and +// index.Get() yield an 'error iterator' then the indexed iterator will be halted. +// An 'error iterator' is iterator which its Error() method always return non-nil +// even before any 'seeks method' is called. +func NewIndexedIterator(index IteratorIndexer, strict, strictGet bool) Iterator { + return &indexedIterator{index: index, strict: strict, strictGet: strictGet} +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter_test.go new file mode 100644 index 00000000..6a89b383 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter_test.go @@ -0,0 +1,83 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package iterator_test + +import ( + "sort" + + . "github.com/onsi/ginkgo" + + "github.com/syndtr/goleveldb/leveldb/comparer" + . "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +type keyValue struct { + key []byte + testutil.KeyValue +} + +type keyValueIndex []keyValue + +func (x keyValueIndex) Search(key []byte) int { + return sort.Search(x.Len(), func(i int) bool { + return comparer.DefaultComparer.Compare(x[i].key, key) >= 0 + }) +} + +func (x keyValueIndex) Len() int { return len(x) } +func (x keyValueIndex) Index(i int) (key, value []byte) { return x[i].key, nil } +func (x keyValueIndex) Get(i int) Iterator { return NewArrayIterator(x[i]) } + +var _ = testutil.Defer(func() { + Describe("Indexed iterator", func() { + Test := func(n ...int) func() { + if len(n) == 0 { + rnd := testutil.NewRand() + n = make([]int, rnd.Intn(17)+3) + for i := range n { + n[i] = rnd.Intn(19) + 1 + } + } + + return func() { + It("Should iterates and seeks correctly", func(done Done) { + // Build key/value. + index := make(keyValueIndex, len(n)) + sum := 0 + for _, x := range n { + sum += x + } + kv := testutil.KeyValue_Generate(nil, sum, 1, 10, 4, 4) + for i, j := 0, 0; i < len(n); i++ { + for x := n[i]; x > 0; x-- { + key, value := kv.Index(j) + index[i].key = key + index[i].Put(key, value) + j++ + } + } + + // Test the iterator. + t := testutil.IteratorTesting{ + KeyValue: kv.Clone(), + Iter: NewIndexedIterator(NewArrayIndexer(index), true, true), + } + testutil.DoIteratorTesting(&t) + done <- true + }, 1.5) + } + } + + Describe("with 100 keys", Test(100)) + Describe("with 50-50 keys", Test(50, 50)) + Describe("with 50-1 keys", Test(50, 1)) + Describe("with 50-1-50 keys", Test(50, 1, 50)) + Describe("with 1-50 keys", Test(1, 50)) + Describe("with random N-keys", Test()) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/iter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/iter.go new file mode 100644 index 00000000..ea3d6f15 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/iter.go @@ -0,0 +1,132 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package iterator provides interface and implementation to traverse over +// contents of a database. +package iterator + +import ( + "errors" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +// IteratorSeeker is the interface that wraps the 'seeks method'. +type IteratorSeeker interface { + // First moves the iterator to the first key/value pair. If the iterator + // only contains one key/value pair then First and Last whould moves + // to the same key/value pair. + // It returns whether such pair exist. + First() bool + + // Last moves the iterator to the last key/value pair. If the iterator + // only contains one key/value pair then First and Last whould moves + // to the same key/value pair. + // It returns whether such pair exist. + Last() bool + + // Seek moves the iterator to the first key/value pair whose key is greater + // than or equal to the given key. + // It returns whether such pair exist. + // + // It is safe to modify the contents of the argument after Seek returns. + Seek(key []byte) bool + + // Next moves the iterator to the next key/value pair. + // It returns whether the iterator is exhausted. + Next() bool + + // Prev moves the iterator to the previous key/value pair. + // It returns whether the iterator is exhausted. + Prev() bool +} + +// CommonIterator is the interface that wraps common interator methods. +type CommonIterator interface { + IteratorSeeker + + // util.Releaser is the interface that wraps basic Release method. + // When called Release will releases any resources associated with the + // iterator. + util.Releaser + + // util.ReleaseSetter is the interface that wraps the basic SetReleaser + // method. + util.ReleaseSetter + + // TODO: Remove this when ready. + Valid() bool + + // Error returns any accumulated error. Exhausting all the key/value pairs + // is not considered to be an error. + Error() error +} + +// Iterator iterates over a DB's key/value pairs in key order. +// +// When encouter an error any 'seeks method' will return false and will +// yield no key/value pairs. The error can be queried by calling the Error +// method. Calling Release is still necessary. +// +// An iterator must be released after use, but it is not necessary to read +// an iterator until exhaustion. +// Also, an iterator is not necessarily goroutine-safe, but it is safe to use +// multiple iterators concurrently, with each in a dedicated goroutine. +type Iterator interface { + CommonIterator + + // Key returns the key of the current key/value pair, or nil if done. + // The caller should not modify the contents of the returned slice, and + // its contents may change on the next call to any 'seeks method'. + Key() []byte + + // Value returns the key of the current key/value pair, or nil if done. + // The caller should not modify the contents of the returned slice, and + // its contents may change on the next call to any 'seeks method'. + Value() []byte +} + +type emptyIterator struct { + releaser util.Releaser + released bool + err error +} + +func (i *emptyIterator) rErr() { + if i.err == nil && i.released { + i.err = errors.New("leveldb/iterator: iterator released") + } +} + +func (i *emptyIterator) Release() { + if i.releaser != nil { + i.releaser.Release() + i.releaser = nil + } + i.released = true +} + +func (i *emptyIterator) SetReleaser(releaser util.Releaser) { + if !i.released { + i.releaser = releaser + } +} + +func (*emptyIterator) Valid() bool { return false } +func (i *emptyIterator) First() bool { i.rErr(); return false } +func (i *emptyIterator) Last() bool { i.rErr(); return false } +func (i *emptyIterator) Seek(key []byte) bool { i.rErr(); return false } +func (i *emptyIterator) Next() bool { i.rErr(); return false } +func (i *emptyIterator) Prev() bool { i.rErr(); return false } +func (*emptyIterator) Key() []byte { return nil } +func (*emptyIterator) Value() []byte { return nil } +func (i *emptyIterator) Error() error { return i.err } + +// NewEmptyIterator creates an empty iterator. The err parameter can be +// nil, but if not nil the given err will be returned by Error method. +func NewEmptyIterator(err error) Iterator { + return &emptyIterator{err: err} +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/iter_suite_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/iter_suite_test.go new file mode 100644 index 00000000..7ec2fc6f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/iter_suite_test.go @@ -0,0 +1,17 @@ +package iterator_test + +import ( + "testing" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +func TestIterator(t *testing.T) { + testutil.RunDefer() + + RegisterFailHandler(Fail) + RunSpecs(t, "Iterator Suite") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter.go new file mode 100644 index 00000000..4fd88e1a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter.go @@ -0,0 +1,311 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package iterator + +import ( + "errors" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var ( + ErrIterReleased = errors.New("leveldb/iterator: iterator released") +) + +type dir int + +const ( + dirReleased dir = iota - 1 + dirSOI + dirEOI + dirBackward + dirForward +) + +type mergedIterator struct { + cmp comparer.Comparer + iters []Iterator + strict bool + + keys [][]byte + index int + dir dir + err error + releaser util.Releaser +} + +func assertKey(key []byte) []byte { + if key == nil { + panic("leveldb/iterator: nil valid key") + } + return key +} + +func (i *mergedIterator) Valid() bool { + return i.err == nil && i.dir > dirEOI +} + +func (i *mergedIterator) First() bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + for x, iter := range i.iters { + switch { + case iter.First(): + i.keys[x] = assertKey(iter.Key()) + case i.strict: + if err := iter.Error(); err != nil { + i.err = err + return false + } + fallthrough + default: + i.keys[x] = nil + } + } + i.dir = dirSOI + return i.next() +} + +func (i *mergedIterator) Last() bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + for x, iter := range i.iters { + switch { + case iter.Last(): + i.keys[x] = assertKey(iter.Key()) + case i.strict: + if err := iter.Error(); err != nil { + i.err = err + return false + } + fallthrough + default: + i.keys[x] = nil + } + } + i.dir = dirEOI + return i.prev() +} + +func (i *mergedIterator) Seek(key []byte) bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + for x, iter := range i.iters { + switch { + case iter.Seek(key): + i.keys[x] = assertKey(iter.Key()) + case i.strict: + if err := iter.Error(); err != nil { + i.err = err + return false + } + fallthrough + default: + i.keys[x] = nil + } + } + i.dir = dirSOI + return i.next() +} + +func (i *mergedIterator) next() bool { + var key []byte + if i.dir == dirForward { + key = i.keys[i.index] + } + for x, tkey := range i.keys { + if tkey != nil && (key == nil || i.cmp.Compare(tkey, key) < 0) { + key = tkey + i.index = x + } + } + if key == nil { + i.dir = dirEOI + return false + } + i.dir = dirForward + return true +} + +func (i *mergedIterator) Next() bool { + if i.dir == dirEOI || i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + switch i.dir { + case dirSOI: + return i.First() + case dirBackward: + key := append([]byte{}, i.keys[i.index]...) + if !i.Seek(key) { + return false + } + return i.Next() + } + + x := i.index + iter := i.iters[x] + switch { + case iter.Next(): + i.keys[x] = assertKey(iter.Key()) + case i.strict: + if err := iter.Error(); err != nil { + i.err = err + return false + } + fallthrough + default: + i.keys[x] = nil + } + return i.next() +} + +func (i *mergedIterator) prev() bool { + var key []byte + if i.dir == dirBackward { + key = i.keys[i.index] + } + for x, tkey := range i.keys { + if tkey != nil && (key == nil || i.cmp.Compare(tkey, key) > 0) { + key = tkey + i.index = x + } + } + if key == nil { + i.dir = dirSOI + return false + } + i.dir = dirBackward + return true +} + +func (i *mergedIterator) Prev() bool { + if i.dir == dirSOI || i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + switch i.dir { + case dirEOI: + return i.Last() + case dirForward: + key := append([]byte{}, i.keys[i.index]...) + for x, iter := range i.iters { + if x == i.index { + continue + } + seek := iter.Seek(key) + switch { + case seek && iter.Prev(), !seek && iter.Last(): + i.keys[x] = assertKey(iter.Key()) + case i.strict: + if err := iter.Error(); err != nil { + i.err = err + return false + } + fallthrough + default: + i.keys[x] = nil + } + } + } + + x := i.index + iter := i.iters[x] + switch { + case iter.Prev(): + i.keys[x] = assertKey(iter.Key()) + case i.strict: + if err := iter.Error(); err != nil { + i.err = err + return false + } + fallthrough + default: + i.keys[x] = nil + } + return i.prev() +} + +func (i *mergedIterator) Key() []byte { + if i.err != nil || i.dir <= dirEOI { + return nil + } + return i.keys[i.index] +} + +func (i *mergedIterator) Value() []byte { + if i.err != nil || i.dir <= dirEOI { + return nil + } + return i.iters[i.index].Value() +} + +func (i *mergedIterator) Release() { + if i.dir != dirReleased { + i.dir = dirReleased + for _, iter := range i.iters { + iter.Release() + } + i.iters = nil + i.keys = nil + if i.releaser != nil { + i.releaser.Release() + i.releaser = nil + } + } +} + +func (i *mergedIterator) SetReleaser(releaser util.Releaser) { + if i.dir != dirReleased { + i.releaser = releaser + } +} + +func (i *mergedIterator) Error() error { + return i.err +} + +// NewMergedIterator returns an iterator that merges its input. Walking the +// resultant iterator will return all key/value pairs of all input iterators +// in strictly increasing key order, as defined by cmp. +// The input's key ranges may overlap, but there are assumed to be no duplicate +// keys: if iters[i] contains a key k then iters[j] will not contain that key k. +// None of the iters may be nil. +// +// If strict is true then error yield by any iterators will halt the merged +// iterator, on contrary if strict is false then the merged iterator will +// ignore those error and move on to the next iterator. +func NewMergedIterator(iters []Iterator, cmp comparer.Comparer, strict bool) Iterator { + return &mergedIterator{ + iters: iters, + cmp: cmp, + strict: strict, + keys: make([][]byte, len(iters)), + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter_test.go new file mode 100644 index 00000000..e523b63e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter_test.go @@ -0,0 +1,60 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package iterator_test + +import ( + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/comparer" + . "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +var _ = testutil.Defer(func() { + Describe("Merged iterator", func() { + Test := func(filled int, empty int) func() { + return func() { + It("Should iterates and seeks correctly", func(done Done) { + rnd := testutil.NewRand() + + // Build key/value. + filledKV := make([]testutil.KeyValue, filled) + kv := testutil.KeyValue_Generate(nil, 100, 1, 10, 4, 4) + kv.Iterate(func(i int, key, value []byte) { + filledKV[rnd.Intn(filled)].Put(key, value) + }) + + // Create itearators. + iters := make([]Iterator, filled+empty) + for i := range iters { + if empty == 0 || (rnd.Int()%2 == 0 && filled > 0) { + filled-- + Expect(filledKV[filled].Len()).ShouldNot(BeZero()) + iters[i] = NewArrayIterator(filledKV[filled]) + } else { + empty-- + iters[i] = NewEmptyIterator(nil) + } + } + + // Test the iterator. + t := testutil.IteratorTesting{ + KeyValue: kv.Clone(), + Iter: NewMergedIterator(iters, comparer.DefaultComparer, true), + } + testutil.DoIteratorTesting(&t) + done <- true + }, 1.5) + } + } + + Describe("with three, all filled iterators", Test(3, 0)) + Describe("with one filled, one empty iterators", Test(1, 1)) + Describe("with one filled, two empty iterators", Test(1, 2)) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/journal/journal.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/journal/journal.go new file mode 100644 index 00000000..b522c76e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/journal/journal.go @@ -0,0 +1,513 @@ +// Copyright 2011 The LevelDB-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Taken from: https://code.google.com/p/leveldb-go/source/browse/leveldb/record/record.go?r=1d5ccbe03246da926391ee12d1c6caae054ff4b0 +// License, authors and contributors informations can be found at bellow URLs respectively: +// https://code.google.com/p/leveldb-go/source/browse/LICENSE +// https://code.google.com/p/leveldb-go/source/browse/AUTHORS +// https://code.google.com/p/leveldb-go/source/browse/CONTRIBUTORS + +// Package journal reads and writes sequences of journals. Each journal is a stream +// of bytes that completes before the next journal starts. +// +// When reading, call Next to obtain an io.Reader for the next journal. Next will +// return io.EOF when there are no more journals. It is valid to call Next +// without reading the current journal to exhaustion. +// +// When writing, call Next to obtain an io.Writer for the next journal. Calling +// Next finishes the current journal. Call Close to finish the final journal. +// +// Optionally, call Flush to finish the current journal and flush the underlying +// writer without starting a new journal. To start a new journal after flushing, +// call Next. +// +// Neither Readers or Writers are safe to use concurrently. +// +// Example code: +// func read(r io.Reader) ([]string, error) { +// var ss []string +// journals := journal.NewReader(r, nil, true, true) +// for { +// j, err := journals.Next() +// if err == io.EOF { +// break +// } +// if err != nil { +// return nil, err +// } +// s, err := ioutil.ReadAll(j) +// if err != nil { +// return nil, err +// } +// ss = append(ss, string(s)) +// } +// return ss, nil +// } +// +// func write(w io.Writer, ss []string) error { +// journals := journal.NewWriter(w) +// for _, s := range ss { +// j, err := journals.Next() +// if err != nil { +// return err +// } +// if _, err := j.Write([]byte(s)), err != nil { +// return err +// } +// } +// return journals.Close() +// } +// +// The wire format is that the stream is divided into 32KiB blocks, and each +// block contains a number of tightly packed chunks. Chunks cannot cross block +// boundaries. The last block may be shorter than 32 KiB. Any unused bytes in a +// block must be zero. +// +// A journal maps to one or more chunks. Each chunk has a 7 byte header (a 4 +// byte checksum, a 2 byte little-endian uint16 length, and a 1 byte chunk type) +// followed by a payload. The checksum is over the chunk type and the payload. +// +// There are four chunk types: whether the chunk is the full journal, or the +// first, middle or last chunk of a multi-chunk journal. A multi-chunk journal +// has one first chunk, zero or more middle chunks, and one last chunk. +// +// The wire format allows for limited recovery in the face of data corruption: +// on a format error (such as a checksum mismatch), the reader moves to the +// next block and looks for the next full or first chunk. +package journal + +import ( + "encoding/binary" + "errors" + "fmt" + "io" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +// These constants are part of the wire format and should not be changed. +const ( + fullChunkType = 1 + firstChunkType = 2 + middleChunkType = 3 + lastChunkType = 4 +) + +const ( + blockSize = 32 * 1024 + headerSize = 7 +) + +type flusher interface { + Flush() error +} + +// DroppedError is the error type that passed to Dropper.Drop method. +type DroppedError struct { + Size int + Reason string +} + +func (e DroppedError) Error() string { + return fmt.Sprintf("leveldb/journal: dropped %d bytes: %s", e.Size, e.Reason) +} + +// Dropper is the interface that wrap simple Drop method. The Drop +// method will be called when the journal reader dropping a chunk. +type Dropper interface { + Drop(err error) +} + +// Reader reads journals from an underlying io.Reader. +type Reader struct { + // r is the underlying reader. + r io.Reader + // the dropper. + dropper Dropper + // strict flag. + strict bool + // checksum flag. + checksum bool + // seq is the sequence number of the current journal. + seq int + // buf[i:j] is the unread portion of the current chunk's payload. + // The low bound, i, excludes the chunk header. + i, j int + // n is the number of bytes of buf that are valid. Once reading has started, + // only the final block can have n < blockSize. + n int + // last is whether the current chunk is the last chunk of the journal. + last bool + // err is any accumulated error. + err error + // buf is the buffer. + buf [blockSize]byte +} + +// NewReader returns a new reader. The dropper may be nil, and if +// strict is true then corrupted or invalid chunk will halt the journal +// reader entirely. +func NewReader(r io.Reader, dropper Dropper, strict, checksum bool) *Reader { + return &Reader{ + r: r, + dropper: dropper, + strict: strict, + checksum: checksum, + last: true, + } +} + +// nextChunk sets r.buf[r.i:r.j] to hold the next chunk's payload, reading the +// next block into the buffer if necessary. +func (r *Reader) nextChunk(wantFirst, skip bool) error { + for { + if r.j+headerSize <= r.n { + checksum := binary.LittleEndian.Uint32(r.buf[r.j+0 : r.j+4]) + length := binary.LittleEndian.Uint16(r.buf[r.j+4 : r.j+6]) + chunkType := r.buf[r.j+6] + + var err error + if checksum == 0 && length == 0 && chunkType == 0 { + // Drop entire block. + err = DroppedError{r.n - r.j, "zero header"} + r.i = r.n + r.j = r.n + } else { + m := r.n - r.j + r.i = r.j + headerSize + r.j = r.j + headerSize + int(length) + if r.j > r.n { + // Drop entire block. + err = DroppedError{m, "chunk length overflows block"} + r.i = r.n + r.j = r.n + } else if r.checksum && checksum != util.NewCRC(r.buf[r.i-1:r.j]).Value() { + // Drop entire block. + err = DroppedError{m, "checksum mismatch"} + r.i = r.n + r.j = r.n + } + } + if wantFirst && err == nil && chunkType != fullChunkType && chunkType != firstChunkType { + if skip { + // The chunk are intentionally skipped. + if chunkType == lastChunkType { + skip = false + } + continue + } else { + // Drop the chunk. + err = DroppedError{r.j - r.i + headerSize, "orphan chunk"} + } + } + if err == nil { + r.last = chunkType == fullChunkType || chunkType == lastChunkType + } else { + if r.dropper != nil { + r.dropper.Drop(err) + } + if r.strict { + r.err = err + } + } + return err + } + if r.n < blockSize && r.n > 0 { + // This is the last block. + if r.j != r.n { + r.err = io.ErrUnexpectedEOF + } else { + r.err = io.EOF + } + return r.err + } + n, err := io.ReadFull(r.r, r.buf[:]) + if err != nil && err != io.ErrUnexpectedEOF { + r.err = err + return r.err + } + if n == 0 { + r.err = io.EOF + return r.err + } + r.i, r.j, r.n = 0, 0, n + } +} + +// Next returns a reader for the next journal. It returns io.EOF if there are no +// more journals. The reader returned becomes stale after the next Next call, +// and should no longer be used. +func (r *Reader) Next() (io.Reader, error) { + r.seq++ + if r.err != nil { + return nil, r.err + } + skip := !r.last + for { + r.i = r.j + if r.nextChunk(true, skip) != nil { + // So that 'orphan chunk' drop will be reported. + skip = false + } else { + break + } + if r.err != nil { + return nil, r.err + } + } + return &singleReader{r, r.seq, nil}, nil +} + +// Reset resets the journal reader, allows reuse of the journal reader. +func (r *Reader) Reset(reader io.Reader, dropper Dropper, strict, checksum bool) error { + r.seq++ + err := r.err + r.r = reader + r.dropper = dropper + r.strict = strict + r.checksum = checksum + r.i = 0 + r.j = 0 + r.n = 0 + r.last = true + r.err = nil + return err +} + +type singleReader struct { + r *Reader + seq int + err error +} + +func (x *singleReader) Read(p []byte) (int, error) { + r := x.r + if r.seq != x.seq { + return 0, errors.New("leveldb/journal: stale reader") + } + if x.err != nil { + return 0, x.err + } + if r.err != nil { + return 0, r.err + } + for r.i == r.j { + if r.last { + return 0, io.EOF + } + if x.err = r.nextChunk(false, false); x.err != nil { + return 0, x.err + } + } + n := copy(p, r.buf[r.i:r.j]) + r.i += n + return n, nil +} + +func (x *singleReader) ReadByte() (byte, error) { + r := x.r + if r.seq != x.seq { + return 0, errors.New("leveldb/journal: stale reader") + } + if x.err != nil { + return 0, x.err + } + if r.err != nil { + return 0, r.err + } + for r.i == r.j { + if r.last { + return 0, io.EOF + } + if x.err = r.nextChunk(false, false); x.err != nil { + return 0, x.err + } + } + c := r.buf[r.i] + r.i++ + return c, nil +} + +// Writer writes journals to an underlying io.Writer. +type Writer struct { + // w is the underlying writer. + w io.Writer + // seq is the sequence number of the current journal. + seq int + // f is w as a flusher. + f flusher + // buf[i:j] is the bytes that will become the current chunk. + // The low bound, i, includes the chunk header. + i, j int + // buf[:written] has already been written to w. + // written is zero unless Flush has been called. + written int + // first is whether the current chunk is the first chunk of the journal. + first bool + // pending is whether a chunk is buffered but not yet written. + pending bool + // err is any accumulated error. + err error + // buf is the buffer. + buf [blockSize]byte +} + +// NewWriter returns a new Writer. +func NewWriter(w io.Writer) *Writer { + f, _ := w.(flusher) + return &Writer{ + w: w, + f: f, + } +} + +// fillHeader fills in the header for the pending chunk. +func (w *Writer) fillHeader(last bool) { + if w.i+headerSize > w.j || w.j > blockSize { + panic("leveldb/journal: bad writer state") + } + if last { + if w.first { + w.buf[w.i+6] = fullChunkType + } else { + w.buf[w.i+6] = lastChunkType + } + } else { + if w.first { + w.buf[w.i+6] = firstChunkType + } else { + w.buf[w.i+6] = middleChunkType + } + } + binary.LittleEndian.PutUint32(w.buf[w.i+0:w.i+4], util.NewCRC(w.buf[w.i+6:w.j]).Value()) + binary.LittleEndian.PutUint16(w.buf[w.i+4:w.i+6], uint16(w.j-w.i-headerSize)) +} + +// writeBlock writes the buffered block to the underlying writer, and reserves +// space for the next chunk's header. +func (w *Writer) writeBlock() { + _, w.err = w.w.Write(w.buf[w.written:]) + w.i = 0 + w.j = headerSize + w.written = 0 +} + +// writePending finishes the current journal and writes the buffer to the +// underlying writer. +func (w *Writer) writePending() { + if w.err != nil { + return + } + if w.pending { + w.fillHeader(true) + w.pending = false + } + _, w.err = w.w.Write(w.buf[w.written:w.j]) + w.written = w.j +} + +// Close finishes the current journal and closes the writer. +func (w *Writer) Close() error { + w.seq++ + w.writePending() + if w.err != nil { + return w.err + } + w.err = errors.New("leveldb/journal: closed Writer") + return nil +} + +// Flush finishes the current journal, writes to the underlying writer, and +// flushes it if that writer implements interface{ Flush() error }. +func (w *Writer) Flush() error { + w.seq++ + w.writePending() + if w.err != nil { + return w.err + } + if w.f != nil { + w.err = w.f.Flush() + return w.err + } + return nil +} + +// Reset resets the journal writer, allows reuse of the journal writer. Reset +// will also closes the journal writer if not already. +func (w *Writer) Reset(writer io.Writer) (err error) { + w.seq++ + if w.err == nil { + w.writePending() + err = w.err + } + w.w = writer + w.f, _ = writer.(flusher) + w.i = 0 + w.j = 0 + w.written = 0 + w.first = false + w.pending = false + w.err = nil + return +} + +// Next returns a writer for the next journal. The writer returned becomes stale +// after the next Close, Flush or Next call, and should no longer be used. +func (w *Writer) Next() (io.Writer, error) { + w.seq++ + if w.err != nil { + return nil, w.err + } + if w.pending { + w.fillHeader(true) + } + w.i = w.j + w.j = w.j + headerSize + // Check if there is room in the block for the header. + if w.j > blockSize { + // Fill in the rest of the block with zeroes. + for k := w.i; k < blockSize; k++ { + w.buf[k] = 0 + } + w.writeBlock() + if w.err != nil { + return nil, w.err + } + } + w.first = true + w.pending = true + return singleWriter{w, w.seq}, nil +} + +type singleWriter struct { + w *Writer + seq int +} + +func (x singleWriter) Write(p []byte) (int, error) { + w := x.w + if w.seq != x.seq { + return 0, errors.New("leveldb/journal: stale writer") + } + if w.err != nil { + return 0, w.err + } + n0 := len(p) + for len(p) > 0 { + // Write a block, if it is full. + if w.j == blockSize { + w.fillHeader(false) + w.writeBlock() + if w.err != nil { + return 0, w.err + } + w.first = false + } + // Copy bytes into the buffer. + n := copy(w.buf[w.j:], p) + w.j += n + p = p[n:] + } + return n0, nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/journal/journal_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/journal/journal_test.go new file mode 100644 index 00000000..5e1193ae --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/journal/journal_test.go @@ -0,0 +1,328 @@ +// Copyright 2011 The LevelDB-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Taken from: https://code.google.com/p/leveldb-go/source/browse/leveldb/record/record_test.go?r=df1fa28f7f3be6c3935548169002309c12967135 +// License, authors and contributors informations can be found at bellow URLs respectively: +// https://code.google.com/p/leveldb-go/source/browse/LICENSE +// https://code.google.com/p/leveldb-go/source/browse/AUTHORS +// https://code.google.com/p/leveldb-go/source/browse/CONTRIBUTORS + +package journal + +import ( + "bytes" + "fmt" + "io" + "io/ioutil" + "math/rand" + "strings" + "testing" +) + +type dropper struct { + t *testing.T +} + +func (d dropper) Drop(err error) { + d.t.Log(err) +} + +func short(s string) string { + if len(s) < 64 { + return s + } + return fmt.Sprintf("%s...(skipping %d bytes)...%s", s[:20], len(s)-40, s[len(s)-20:]) +} + +// big returns a string of length n, composed of repetitions of partial. +func big(partial string, n int) string { + return strings.Repeat(partial, n/len(partial)+1)[:n] +} + +func TestEmpty(t *testing.T) { + buf := new(bytes.Buffer) + r := NewReader(buf, dropper{t}, true, true) + if _, err := r.Next(); err != io.EOF { + t.Fatalf("got %v, want %v", err, io.EOF) + } +} + +func testGenerator(t *testing.T, reset func(), gen func() (string, bool)) { + buf := new(bytes.Buffer) + + reset() + w := NewWriter(buf) + for { + s, ok := gen() + if !ok { + break + } + ww, err := w.Next() + if err != nil { + t.Fatal(err) + } + if _, err := ww.Write([]byte(s)); err != nil { + t.Fatal(err) + } + } + if err := w.Close(); err != nil { + t.Fatal(err) + } + + reset() + r := NewReader(buf, dropper{t}, true, true) + for { + s, ok := gen() + if !ok { + break + } + rr, err := r.Next() + if err != nil { + t.Fatal(err) + } + x, err := ioutil.ReadAll(rr) + if err != nil { + t.Fatal(err) + } + if string(x) != s { + t.Fatalf("got %q, want %q", short(string(x)), short(s)) + } + } + if _, err := r.Next(); err != io.EOF { + t.Fatalf("got %v, want %v", err, io.EOF) + } +} + +func testLiterals(t *testing.T, s []string) { + var i int + reset := func() { + i = 0 + } + gen := func() (string, bool) { + if i == len(s) { + return "", false + } + i++ + return s[i-1], true + } + testGenerator(t, reset, gen) +} + +func TestMany(t *testing.T) { + const n = 1e5 + var i int + reset := func() { + i = 0 + } + gen := func() (string, bool) { + if i == n { + return "", false + } + i++ + return fmt.Sprintf("%d.", i-1), true + } + testGenerator(t, reset, gen) +} + +func TestRandom(t *testing.T) { + const n = 1e2 + var ( + i int + r *rand.Rand + ) + reset := func() { + i, r = 0, rand.New(rand.NewSource(0)) + } + gen := func() (string, bool) { + if i == n { + return "", false + } + i++ + return strings.Repeat(string(uint8(i)), r.Intn(2*blockSize+16)), true + } + testGenerator(t, reset, gen) +} + +func TestBasic(t *testing.T) { + testLiterals(t, []string{ + strings.Repeat("a", 1000), + strings.Repeat("b", 97270), + strings.Repeat("c", 8000), + }) +} + +func TestBoundary(t *testing.T) { + for i := blockSize - 16; i < blockSize+16; i++ { + s0 := big("abcd", i) + for j := blockSize - 16; j < blockSize+16; j++ { + s1 := big("ABCDE", j) + testLiterals(t, []string{s0, s1}) + testLiterals(t, []string{s0, "", s1}) + testLiterals(t, []string{s0, "x", s1}) + } + } +} + +func TestFlush(t *testing.T) { + buf := new(bytes.Buffer) + w := NewWriter(buf) + // Write a couple of records. Everything should still be held + // in the record.Writer buffer, so that buf.Len should be 0. + w0, _ := w.Next() + w0.Write([]byte("0")) + w1, _ := w.Next() + w1.Write([]byte("11")) + if got, want := buf.Len(), 0; got != want { + t.Fatalf("buffer length #0: got %d want %d", got, want) + } + // Flush the record.Writer buffer, which should yield 17 bytes. + // 17 = 2*7 + 1 + 2, which is two headers and 1 + 2 payload bytes. + if err := w.Flush(); err != nil { + t.Fatal(err) + } + if got, want := buf.Len(), 17; got != want { + t.Fatalf("buffer length #1: got %d want %d", got, want) + } + // Do another write, one that isn't large enough to complete the block. + // The write should not have flowed through to buf. + w2, _ := w.Next() + w2.Write(bytes.Repeat([]byte("2"), 10000)) + if got, want := buf.Len(), 17; got != want { + t.Fatalf("buffer length #2: got %d want %d", got, want) + } + // Flushing should get us up to 10024 bytes written. + // 10024 = 17 + 7 + 10000. + if err := w.Flush(); err != nil { + t.Fatal(err) + } + if got, want := buf.Len(), 10024; got != want { + t.Fatalf("buffer length #3: got %d want %d", got, want) + } + // Do a bigger write, one that completes the current block. + // We should now have 32768 bytes (a complete block), without + // an explicit flush. + w3, _ := w.Next() + w3.Write(bytes.Repeat([]byte("3"), 40000)) + if got, want := buf.Len(), 32768; got != want { + t.Fatalf("buffer length #4: got %d want %d", got, want) + } + // Flushing should get us up to 50038 bytes written. + // 50038 = 10024 + 2*7 + 40000. There are two headers because + // the one record was split into two chunks. + if err := w.Flush(); err != nil { + t.Fatal(err) + } + if got, want := buf.Len(), 50038; got != want { + t.Fatalf("buffer length #5: got %d want %d", got, want) + } + // Check that reading those records give the right lengths. + r := NewReader(buf, dropper{t}, true, true) + wants := []int64{1, 2, 10000, 40000} + for i, want := range wants { + rr, _ := r.Next() + n, err := io.Copy(ioutil.Discard, rr) + if err != nil { + t.Fatalf("read #%d: %v", i, err) + } + if n != want { + t.Fatalf("read #%d: got %d bytes want %d", i, n, want) + } + } +} + +func TestNonExhaustiveRead(t *testing.T) { + const n = 100 + buf := new(bytes.Buffer) + p := make([]byte, 10) + rnd := rand.New(rand.NewSource(1)) + + w := NewWriter(buf) + for i := 0; i < n; i++ { + length := len(p) + rnd.Intn(3*blockSize) + s := string(uint8(i)) + "123456789abcdefgh" + ww, _ := w.Next() + ww.Write([]byte(big(s, length))) + } + if err := w.Close(); err != nil { + t.Fatal(err) + } + + r := NewReader(buf, dropper{t}, true, true) + for i := 0; i < n; i++ { + rr, _ := r.Next() + _, err := io.ReadFull(rr, p) + if err != nil { + t.Fatal(err) + } + want := string(uint8(i)) + "123456789" + if got := string(p); got != want { + t.Fatalf("read #%d: got %q want %q", i, got, want) + } + } +} + +func TestStaleReader(t *testing.T) { + buf := new(bytes.Buffer) + + w := NewWriter(buf) + w0, err := w.Next() + if err != nil { + t.Fatal(err) + } + w0.Write([]byte("0")) + w1, err := w.Next() + if err != nil { + t.Fatal(err) + } + w1.Write([]byte("11")) + if err := w.Close(); err != nil { + t.Fatal(err) + } + + r := NewReader(buf, dropper{t}, true, true) + r0, err := r.Next() + if err != nil { + t.Fatal(err) + } + r1, err := r.Next() + if err != nil { + t.Fatal(err) + } + p := make([]byte, 1) + if _, err := r0.Read(p); err == nil || !strings.Contains(err.Error(), "stale") { + t.Fatalf("stale read #0: unexpected error: %v", err) + } + if _, err := r1.Read(p); err != nil { + t.Fatalf("fresh read #1: got %v want nil error", err) + } + if p[0] != '1' { + t.Fatalf("fresh read #1: byte contents: got '%c' want '1'", p[0]) + } +} + +func TestStaleWriter(t *testing.T) { + buf := new(bytes.Buffer) + + w := NewWriter(buf) + w0, err := w.Next() + if err != nil { + t.Fatal(err) + } + w1, err := w.Next() + if err != nil { + t.Fatal(err) + } + if _, err := w0.Write([]byte("0")); err == nil || !strings.Contains(err.Error(), "stale") { + t.Fatalf("stale write #0: unexpected error: %v", err) + } + if _, err := w1.Write([]byte("11")); err != nil { + t.Fatalf("fresh write #1: got %v want nil error", err) + } + if err := w.Flush(); err != nil { + t.Fatalf("flush: %v", err) + } + if _, err := w1.Write([]byte("0")); err == nil || !strings.Contains(err.Error(), "stale") { + t.Fatalf("stale write #1: unexpected error: %v", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/key.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/key.go new file mode 100644 index 00000000..676163ba --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/key.go @@ -0,0 +1,126 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "encoding/binary" + "fmt" +) + +type vType int + +func (t vType) String() string { + switch t { + case tDel: + return "d" + case tVal: + return "v" + } + return "x" +} + +// Value types encoded as the last component of internal keys. +// Don't modify; this value are saved to disk. +const ( + tDel vType = iota + tVal +) + +// tSeek defines the vType that should be passed when constructing an +// internal key for seeking to a particular sequence number (since we +// sort sequence numbers in decreasing order and the value type is +// embedded as the low 8 bits in the sequence number in internal keys, +// we need to use the highest-numbered ValueType, not the lowest). +const tSeek = tVal + +const ( + // Maximum value possible for sequence number; the 8-bits are + // used by value type, so its can packed together in single + // 64-bit integer. + kMaxSeq uint64 = (uint64(1) << 56) - 1 + // Maximum value possible for packed sequence number and type. + kMaxNum uint64 = (kMaxSeq << 8) | uint64(tSeek) +) + +// Maximum number encoded in bytes. +var kMaxNumBytes = make([]byte, 8) + +func init() { + binary.LittleEndian.PutUint64(kMaxNumBytes, kMaxNum) +} + +type iKey []byte + +func newIKey(ukey []byte, seq uint64, t vType) iKey { + if seq > kMaxSeq || t > tVal { + panic("invalid seq number or value type") + } + + b := make(iKey, len(ukey)+8) + copy(b, ukey) + binary.LittleEndian.PutUint64(b[len(ukey):], (seq<<8)|uint64(t)) + return b +} + +func parseIkey(p []byte) (ukey []byte, seq uint64, t vType, ok bool) { + if len(p) < 8 { + return + } + num := binary.LittleEndian.Uint64(p[len(p)-8:]) + seq, t = uint64(num>>8), vType(num&0xff) + if t > tVal { + return + } + ukey = p[:len(p)-8] + ok = true + return +} + +func (p iKey) assert() { + if p == nil { + panic("nil iKey") + } + if len(p) < 8 { + panic(fmt.Sprintf("invalid iKey %q, len=%d", []byte(p), len(p))) + } +} + +func (p iKey) ukey() []byte { + p.assert() + return p[:len(p)-8] +} + +func (p iKey) num() uint64 { + p.assert() + return binary.LittleEndian.Uint64(p[len(p)-8:]) +} + +func (p iKey) parseNum() (seq uint64, t vType, ok bool) { + if p == nil { + panic("nil iKey") + } + if len(p) < 8 { + return + } + num := p.num() + seq, t = uint64(num>>8), vType(num&0xff) + if t > tVal { + return 0, 0, false + } + ok = true + return +} + +func (p iKey) String() string { + if len(p) == 0 { + return "" + } + if seq, t, ok := p.parseNum(); ok { + return fmt.Sprintf("%s,%s%d", shorten(string(p.ukey())), t, seq) + } + return "" +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/key_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/key_test.go new file mode 100644 index 00000000..b65664ae --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/key_test.go @@ -0,0 +1,123 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "bytes" + "testing" + + "github.com/syndtr/goleveldb/leveldb/comparer" +) + +var icmp = &iComparer{comparer.DefaultComparer} + +func ikey(key string, seq uint64, t vType) iKey { + return newIKey([]byte(key), uint64(seq), t) +} + +func shortSep(a, b []byte) []byte { + dst := make([]byte, len(a)) + dst = icmp.Separator(dst[:0], a, b) + if dst == nil { + return a + } + return dst +} + +func shortSuccessor(b []byte) []byte { + dst := make([]byte, len(b)) + dst = icmp.Successor(dst[:0], b) + if dst == nil { + return b + } + return dst +} + +func testSingleKey(t *testing.T, key string, seq uint64, vt vType) { + ik := ikey(key, seq, vt) + + if !bytes.Equal(ik.ukey(), []byte(key)) { + t.Errorf("user key does not equal, got %v, want %v", string(ik.ukey()), key) + } + + if rseq, rt, ok := ik.parseNum(); ok { + if rseq != seq { + t.Errorf("seq number does not equal, got %v, want %v", rseq, seq) + } + + if rt != vt { + t.Errorf("type does not equal, got %v, want %v", rt, vt) + } + } else { + t.Error("cannot parse seq and type") + } +} + +func TestIKey_EncodeDecode(t *testing.T) { + keys := []string{"", "k", "hello", "longggggggggggggggggggggg"} + seqs := []uint64{ + 1, 2, 3, + (1 << 8) - 1, 1 << 8, (1 << 8) + 1, + (1 << 16) - 1, 1 << 16, (1 << 16) + 1, + (1 << 32) - 1, 1 << 32, (1 << 32) + 1, + } + for _, key := range keys { + for _, seq := range seqs { + testSingleKey(t, key, seq, tVal) + testSingleKey(t, "hello", 1, tDel) + } + } +} + +func assertBytes(t *testing.T, want, got []byte) { + if !bytes.Equal(got, want) { + t.Errorf("assert failed, got %v, want %v", got, want) + } +} + +func TestIKeyShortSeparator(t *testing.T) { + // When user keys are same + assertBytes(t, ikey("foo", 100, tVal), + shortSep(ikey("foo", 100, tVal), + ikey("foo", 99, tVal))) + assertBytes(t, ikey("foo", 100, tVal), + shortSep(ikey("foo", 100, tVal), + ikey("foo", 101, tVal))) + assertBytes(t, ikey("foo", 100, tVal), + shortSep(ikey("foo", 100, tVal), + ikey("foo", 100, tVal))) + assertBytes(t, ikey("foo", 100, tVal), + shortSep(ikey("foo", 100, tVal), + ikey("foo", 100, tDel))) + + // When user keys are misordered + assertBytes(t, ikey("foo", 100, tVal), + shortSep(ikey("foo", 100, tVal), + ikey("bar", 99, tVal))) + + // When user keys are different, but correctly ordered + assertBytes(t, ikey("g", uint64(kMaxSeq), tSeek), + shortSep(ikey("foo", 100, tVal), + ikey("hello", 200, tVal))) + + // When start user key is prefix of limit user key + assertBytes(t, ikey("foo", 100, tVal), + shortSep(ikey("foo", 100, tVal), + ikey("foobar", 200, tVal))) + + // When limit user key is prefix of start user key + assertBytes(t, ikey("foobar", 100, tVal), + shortSep(ikey("foobar", 100, tVal), + ikey("foo", 200, tVal))) +} + +func TestIKeyShortestSuccessor(t *testing.T) { + assertBytes(t, ikey("g", uint64(kMaxSeq), tSeek), + shortSuccessor(ikey("foo", 100, tVal))) + assertBytes(t, ikey("\xff\xff", 100, tVal), + shortSuccessor(ikey("\xff\xff", 100, tVal))) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/leveldb_suite_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/leveldb_suite_test.go new file mode 100644 index 00000000..245b1fd4 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/leveldb_suite_test.go @@ -0,0 +1,20 @@ +package leveldb + +import ( + "testing" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +func TestLeveldb(t *testing.T) { + testutil.RunDefer() + + RegisterFailHandler(Fail) + RunSpecs(t, "Leveldb Suite") + + RegisterTestingT(t) + testutil.RunDefer("teardown") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/bench_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/bench_test.go new file mode 100644 index 00000000..b05084ca --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/bench_test.go @@ -0,0 +1,75 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package memdb + +import ( + "encoding/binary" + "math/rand" + "testing" + + "github.com/syndtr/goleveldb/leveldb/comparer" +) + +func BenchmarkPut(b *testing.B) { + buf := make([][4]byte, b.N) + for i := range buf { + binary.LittleEndian.PutUint32(buf[i][:], uint32(i)) + } + + b.ResetTimer() + p := New(comparer.DefaultComparer, 0) + for i := range buf { + p.Put(buf[i][:], nil) + } +} + +func BenchmarkPutRandom(b *testing.B) { + buf := make([][4]byte, b.N) + for i := range buf { + binary.LittleEndian.PutUint32(buf[i][:], uint32(rand.Int())) + } + + b.ResetTimer() + p := New(comparer.DefaultComparer, 0) + for i := range buf { + p.Put(buf[i][:], nil) + } +} + +func BenchmarkGet(b *testing.B) { + buf := make([][4]byte, b.N) + for i := range buf { + binary.LittleEndian.PutUint32(buf[i][:], uint32(i)) + } + + p := New(comparer.DefaultComparer, 0) + for i := range buf { + p.Put(buf[i][:], nil) + } + + b.ResetTimer() + for i := range buf { + p.Get(buf[i][:]) + } +} + +func BenchmarkGetRandom(b *testing.B) { + buf := make([][4]byte, b.N) + for i := range buf { + binary.LittleEndian.PutUint32(buf[i][:], uint32(i)) + } + + p := New(comparer.DefaultComparer, 0) + for i := range buf { + p.Put(buf[i][:], nil) + } + + b.ResetTimer() + for i := 0; i < b.N; i++ { + p.Get(buf[rand.Int()%b.N][:]) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb.go new file mode 100644 index 00000000..096812ac --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb.go @@ -0,0 +1,412 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package memdb provides in-memory key/value database implementation. +package memdb + +import ( + "math/rand" + "sync" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var ( + ErrNotFound = util.ErrNotFound +) + +const tMaxHeight = 12 + +type dbIter struct { + util.BasicReleaser + p *DB + slice *util.Range + node int + forward bool + key, value []byte +} + +func (i *dbIter) fill(checkStart, checkLimit bool) bool { + if i.node != 0 { + n := i.p.nodeData[i.node] + m := n + i.p.nodeData[i.node+nKey] + i.key = i.p.kvData[n:m] + if i.slice != nil { + switch { + case checkLimit && i.slice.Limit != nil && i.p.cmp.Compare(i.key, i.slice.Limit) >= 0: + fallthrough + case checkStart && i.slice.Start != nil && i.p.cmp.Compare(i.key, i.slice.Start) < 0: + i.node = 0 + goto bail + } + } + i.value = i.p.kvData[m : m+i.p.nodeData[i.node+nVal]] + return true + } +bail: + i.key = nil + i.value = nil + return false +} + +func (i *dbIter) Valid() bool { + return i.node != 0 +} + +func (i *dbIter) First() bool { + i.forward = true + i.p.mu.RLock() + defer i.p.mu.RUnlock() + if i.slice != nil && i.slice.Start != nil { + i.node, _ = i.p.findGE(i.slice.Start, false) + } else { + i.node = i.p.nodeData[nNext] + } + return i.fill(false, true) +} + +func (i *dbIter) Last() bool { + i.forward = false + i.p.mu.RLock() + defer i.p.mu.RUnlock() + if i.slice != nil && i.slice.Limit != nil { + i.node = i.p.findLT(i.slice.Limit) + } else { + i.node = i.p.findLast() + } + return i.fill(true, false) +} + +func (i *dbIter) Seek(key []byte) bool { + i.forward = true + i.p.mu.RLock() + defer i.p.mu.RUnlock() + if i.slice != nil && i.slice.Start != nil && i.p.cmp.Compare(key, i.slice.Start) < 0 { + key = i.slice.Start + } + i.node, _ = i.p.findGE(key, false) + return i.fill(false, true) +} + +func (i *dbIter) Next() bool { + if i.node == 0 { + if !i.forward { + return i.First() + } + return false + } + i.forward = true + i.p.mu.RLock() + defer i.p.mu.RUnlock() + i.node = i.p.nodeData[i.node+nNext] + return i.fill(false, true) +} + +func (i *dbIter) Prev() bool { + if i.node == 0 { + if i.forward { + return i.Last() + } + return false + } + i.forward = false + i.p.mu.RLock() + defer i.p.mu.RUnlock() + i.node = i.p.findLT(i.key) + return i.fill(true, false) +} + +func (i *dbIter) Key() []byte { + return i.key +} + +func (i *dbIter) Value() []byte { + return i.value +} + +func (i *dbIter) Error() error { return nil } + +const ( + nKV = iota + nKey + nVal + nHeight + nNext +) + +// DB is an in-memory key/value database. +type DB struct { + cmp comparer.BasicComparer + rnd *rand.Rand + + mu sync.RWMutex + kvData []byte + // Node data: + // [0] : KV offset + // [1] : Key length + // [2] : Value length + // [3] : Height + // [3..height] : Next nodes + nodeData []int + prevNode [tMaxHeight]int + maxHeight int + n int + kvSize int +} + +func (p *DB) randHeight() (h int) { + const branching = 4 + h = 1 + for h < tMaxHeight && p.rnd.Int()%branching == 0 { + h++ + } + return +} + +func (p *DB) findGE(key []byte, prev bool) (int, bool) { + node := 0 + h := p.maxHeight - 1 + for { + next := p.nodeData[node+nNext+h] + cmp := 1 + if next != 0 { + o := p.nodeData[next] + cmp = p.cmp.Compare(p.kvData[o:o+p.nodeData[next+nKey]], key) + } + if cmp < 0 { + // Keep searching in this list + node = next + } else { + if prev { + p.prevNode[h] = node + } else if cmp == 0 { + return next, true + } + if h == 0 { + return next, cmp == 0 + } + h-- + } + } +} + +func (p *DB) findLT(key []byte) int { + node := 0 + h := p.maxHeight - 1 + for { + next := p.nodeData[node+nNext+h] + o := p.nodeData[next] + if next == 0 || p.cmp.Compare(p.kvData[o:o+p.nodeData[next+nKey]], key) >= 0 { + if h == 0 { + break + } + h-- + } else { + node = next + } + } + return node +} + +func (p *DB) findLast() int { + node := 0 + h := p.maxHeight - 1 + for { + next := p.nodeData[node+nNext+h] + if next == 0 { + if h == 0 { + break + } + h-- + } else { + node = next + } + } + return node +} + +// Put sets the value for the given key. It overwrites any previous value +// for that key; a DB is not a multi-map. +// +// It is safe to modify the contents of the arguments after Put returns. +func (p *DB) Put(key []byte, value []byte) error { + p.mu.Lock() + defer p.mu.Unlock() + + if node, exact := p.findGE(key, true); exact { + kvOffset := len(p.kvData) + p.kvData = append(p.kvData, key...) + p.kvData = append(p.kvData, value...) + p.nodeData[node] = kvOffset + m := p.nodeData[node+nVal] + p.nodeData[node+nVal] = len(value) + p.kvSize += len(value) - m + return nil + } + + h := p.randHeight() + if h > p.maxHeight { + for i := p.maxHeight; i < h; i++ { + p.prevNode[i] = 0 + } + p.maxHeight = h + } + + kvOffset := len(p.kvData) + p.kvData = append(p.kvData, key...) + p.kvData = append(p.kvData, value...) + // Node + node := len(p.nodeData) + p.nodeData = append(p.nodeData, kvOffset, len(key), len(value), h) + for i, n := range p.prevNode[:h] { + m := n + 4 + i + p.nodeData = append(p.nodeData, p.nodeData[m]) + p.nodeData[m] = node + } + + p.kvSize += len(key) + len(value) + p.n++ + return nil +} + +// Delete deletes the value for the given key. It returns ErrNotFound if +// the DB does not contain the key. +// +// It is safe to modify the contents of the arguments after Delete returns. +func (p *DB) Delete(key []byte) error { + p.mu.Lock() + defer p.mu.Unlock() + + node, exact := p.findGE(key, true) + if !exact { + return ErrNotFound + } + + h := p.nodeData[node+nHeight] + for i, n := range p.prevNode[:h] { + m := n + 4 + i + p.nodeData[m] = p.nodeData[p.nodeData[m]+nNext+i] + } + + p.kvSize -= p.nodeData[node+nKey] + p.nodeData[node+nVal] + p.n-- + return nil +} + +// Contains returns true if the given key are in the DB. +// +// It is safe to modify the contents of the arguments after Contains returns. +func (p *DB) Contains(key []byte) bool { + p.mu.RLock() + _, exact := p.findGE(key, false) + p.mu.RUnlock() + return exact +} + +// Get gets the value for the given key. It returns error.ErrNotFound if the +// DB does not contain the key. +// +// The caller should not modify the contents of the returned slice, but +// it is safe to modify the contents of the argument after Get returns. +func (p *DB) Get(key []byte) (value []byte, err error) { + p.mu.RLock() + if node, exact := p.findGE(key, false); exact { + o := p.nodeData[node] + p.nodeData[node+nKey] + value = p.kvData[o : o+p.nodeData[node+nVal]] + } else { + err = ErrNotFound + } + p.mu.RUnlock() + return +} + +// Find finds key/value pair whose key is greater than or equal to the +// given key. It returns ErrNotFound if the table doesn't contain +// such pair. +// +// The caller should not modify the contents of the returned slice, but +// it is safe to modify the contents of the argument after Find returns. +func (p *DB) Find(key []byte) (rkey, value []byte, err error) { + p.mu.RLock() + if node, _ := p.findGE(key, false); node != 0 { + n := p.nodeData[node] + m := n + p.nodeData[node+nKey] + rkey = p.kvData[n:m] + value = p.kvData[m : m+p.nodeData[node+nVal]] + } else { + err = ErrNotFound + } + p.mu.RUnlock() + return +} + +// NewIterator returns an iterator of the DB. +// The returned iterator is not goroutine-safe, but it is safe to use +// multiple iterators concurrently, with each in a dedicated goroutine. +// It is also safe to use an iterator concurrently with modifying its +// underlying DB. However, the resultant key/value pairs are not guaranteed +// to be a consistent snapshot of the DB at a particular point in time. +// +// Slice allows slicing the iterator to only contains keys in the given +// range. A nil Range.Start is treated as a key before all keys in the +// DB. And a nil Range.Limit is treated as a key after all keys in +// the DB. +// +// The iterator must be released after use, by calling Release method. +// +// Also read Iterator documentation of the leveldb/iterator package. +func (p *DB) NewIterator(slice *util.Range) iterator.Iterator { + return &dbIter{p: p, slice: slice} +} + +// Size returns sum of keys and values length. +func (p *DB) Size() int { + p.mu.RLock() + defer p.mu.RUnlock() + return p.kvSize +} + +// Len returns the number of entries in the DB. +func (p *DB) Len() int { + p.mu.RLock() + defer p.mu.RUnlock() + return p.n +} + +// Reset resets the DB to initial empty state. Allows reuse the buffer. +func (p *DB) Reset() { + p.rnd = rand.New(rand.NewSource(0xdeadbeef)) + p.maxHeight = 1 + p.n = 0 + p.kvSize = 0 + p.kvData = p.kvData[:0] + p.nodeData = p.nodeData[:4+tMaxHeight] + p.nodeData[nKV] = 0 + p.nodeData[nKey] = 0 + p.nodeData[nVal] = 0 + p.nodeData[nHeight] = tMaxHeight + for n := 0; n < tMaxHeight; n++ { + p.nodeData[4+n] = 0 + p.prevNode[n] = 0 + } +} + +// New creates a new initalized in-memory key/value DB. The capacity +// is the initial key/value buffer capacity. The capacity is advisory, +// not enforced. +func New(cmp comparer.BasicComparer, capacity int) *DB { + p := &DB{ + cmp: cmp, + rnd: rand.New(rand.NewSource(0xdeadbeef)), + maxHeight: 1, + kvData: make([]byte, 0, capacity), + nodeData: make([]int, 4+tMaxHeight), + } + p.nodeData[nHeight] = tMaxHeight + return p +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_suite_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_suite_test.go new file mode 100644 index 00000000..788539a8 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_suite_test.go @@ -0,0 +1,17 @@ +package memdb + +import ( + "testing" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +func TestMemdb(t *testing.T) { + testutil.RunDefer() + + RegisterFailHandler(Fail) + RunSpecs(t, "Memdb Suite") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_test.go new file mode 100644 index 00000000..f96a9d1e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_test.go @@ -0,0 +1,135 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package memdb + +import ( + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/testutil" + "github.com/syndtr/goleveldb/leveldb/util" +) + +func (p *DB) TestFindLT(key []byte) (rkey, value []byte, err error) { + p.mu.RLock() + if node := p.findLT(key); node != 0 { + n := p.nodeData[node] + m := n + p.nodeData[node+nKey] + rkey = p.kvData[n:m] + value = p.kvData[m : m+p.nodeData[node+nVal]] + } else { + err = ErrNotFound + } + p.mu.RUnlock() + return +} + +func (p *DB) TestFindLast() (rkey, value []byte, err error) { + p.mu.RLock() + if node := p.findLast(); node != 0 { + n := p.nodeData[node] + m := n + p.nodeData[node+nKey] + rkey = p.kvData[n:m] + value = p.kvData[m : m+p.nodeData[node+nVal]] + } else { + err = ErrNotFound + } + p.mu.RUnlock() + return +} + +func (p *DB) TestPut(key []byte, value []byte) error { + p.Put(key, value) + return nil +} + +func (p *DB) TestDelete(key []byte) error { + p.Delete(key) + return nil +} + +func (p *DB) TestFind(key []byte) (rkey, rvalue []byte, err error) { + return p.Find(key) +} + +func (p *DB) TestGet(key []byte) (value []byte, err error) { + return p.Get(key) +} + +func (p *DB) TestNewIterator(slice *util.Range) iterator.Iterator { + return p.NewIterator(slice) +} + +var _ = testutil.Defer(func() { + Describe("Memdb", func() { + Describe("write test", func() { + It("should do write correctly", func() { + db := New(comparer.DefaultComparer, 0) + t := testutil.DBTesting{ + DB: db, + Deleted: testutil.KeyValue_Generate(nil, 1000, 1, 30, 5, 5).Clone(), + PostFn: func(t *testutil.DBTesting) { + Expect(db.Len()).Should(Equal(t.Present.Len())) + Expect(db.Size()).Should(Equal(t.Present.Size())) + switch t.Act { + case testutil.DBPut, testutil.DBOverwrite: + Expect(db.Contains(t.ActKey)).Should(BeTrue()) + default: + Expect(db.Contains(t.ActKey)).Should(BeFalse()) + } + }, + } + testutil.DoDBTesting(&t) + }) + }) + + Describe("read test", func() { + testutil.AllKeyValueTesting(nil, func(kv testutil.KeyValue) testutil.DB { + // Building the DB. + db := New(comparer.DefaultComparer, 0) + kv.IterateShuffled(nil, func(i int, key, value []byte) { + db.Put(key, value) + }) + + if kv.Len() > 1 { + It("Should find correct keys with findLT", func() { + testutil.ShuffledIndex(nil, kv.Len()-1, 1, func(i int) { + key_, key, _ := kv.IndexInexact(i + 1) + expectedKey, expectedValue := kv.Index(i) + + // Using key that exist. + rkey, rvalue, err := db.TestFindLT(key) + Expect(err).ShouldNot(HaveOccurred(), "Error for key %q -> %q", key, expectedKey) + Expect(rkey).Should(Equal(expectedKey), "Key") + Expect(rvalue).Should(Equal(expectedValue), "Value for key %q -> %q", key, expectedKey) + + // Using key that doesn't exist. + rkey, rvalue, err = db.TestFindLT(key_) + Expect(err).ShouldNot(HaveOccurred(), "Error for key %q (%q) -> %q", key_, key, expectedKey) + Expect(rkey).Should(Equal(expectedKey)) + Expect(rvalue).Should(Equal(expectedValue), "Value for key %q (%q) -> %q", key_, key, expectedKey) + }) + }) + } + + if kv.Len() > 0 { + It("Should find last key with findLast", func() { + key, value := kv.Index(kv.Len() - 1) + rkey, rvalue, err := db.TestFindLast() + Expect(err).ShouldNot(HaveOccurred()) + Expect(rkey).Should(Equal(key)) + Expect(rvalue).Should(Equal(value)) + }) + } + + return db + }) + }) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/opt/options.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/opt/options.go new file mode 100644 index 00000000..b940ce42 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/opt/options.go @@ -0,0 +1,318 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package opt provides sets of options used by LevelDB. +package opt + +import ( + "github.com/syndtr/goleveldb/leveldb/cache" + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/filter" +) + +const ( + KiB = 1024 + MiB = KiB * 1024 + GiB = MiB * 1024 +) + +const ( + DefaultBlockCacheSize = 8 * MiB + DefaultBlockRestartInterval = 16 + DefaultBlockSize = 4 * KiB + DefaultCompressionType = SnappyCompression + DefaultMaxOpenFiles = 1000 + DefaultWriteBuffer = 4 * MiB +) + +type noCache struct{} + +func (noCache) SetCapacity(capacity int) {} +func (noCache) GetNamespace(id uint64) cache.Namespace { return nil } +func (noCache) Purge(fin cache.PurgeFin) {} +func (noCache) Zap(closed bool) {} + +var NoCache cache.Cache = noCache{} + +// Compression is the per-block compression algorithm to use. +type Compression uint + +func (c Compression) String() string { + switch c { + case DefaultCompression: + return "default" + case NoCompression: + return "none" + case SnappyCompression: + return "snappy" + } + return "invalid" +} + +const ( + DefaultCompression Compression = iota + NoCompression + SnappyCompression + nCompression +) + +// Strict is the DB strict level. +type Strict uint + +const ( + // If present then a corrupted or invalid chunk or block in manifest + // journal will cause an error istead of being dropped. + StrictManifest Strict = 1 << iota + + // If present then a corrupted or invalid chunk or block in journal + // will cause an error istead of being dropped. + StrictJournal + + // If present then journal chunk checksum will be verified. + StrictJournalChecksum + + // If present then an invalid key/value pair will cause an error + // instead of being skipped. + StrictIterator + + // If present then 'sorted table' block checksum will be verified. + StrictBlockChecksum + + // StrictAll enables all strict flags. + StrictAll = StrictManifest | StrictJournal | StrictJournalChecksum | StrictIterator | StrictBlockChecksum + + // DefaultStrict is the default strict flags. Specify any strict flags + // will override default strict flags as whole (i.e. not OR'ed). + DefaultStrict = StrictJournalChecksum | StrictBlockChecksum + + // NoStrict disables all strict flags. Override default strict flags. + NoStrict = ^StrictAll +) + +// Options holds the optional parameters for the DB at large. +type Options struct { + // AltFilters defines one or more 'alternative filters'. + // 'alternative filters' will be used during reads if a filter block + // does not match with the 'effective filter'. + // + // The default value is nil + AltFilters []filter.Filter + + // BlockCache provides per-block caching for LevelDB. Specify NoCache to + // disable block caching. + // + // By default LevelDB will create LRU-cache with capacity of 8MiB. + BlockCache cache.Cache + + // BlockRestartInterval is the number of keys between restart points for + // delta encoding of keys. + // + // The default value is 16. + BlockRestartInterval int + + // BlockSize is the minimum uncompressed size in bytes of each 'sorted table' + // block. + // + // The default value is 4KiB. + BlockSize int + + // Comparer defines a total ordering over the space of []byte keys: a 'less + // than' relationship. The same comparison algorithm must be used for reads + // and writes over the lifetime of the DB. + // + // The default value uses the same ordering as bytes.Compare. + Comparer comparer.Comparer + + // Compression defines the per-block compression to use. + // + // The default value (DefaultCompression) uses snappy compression. + Compression Compression + + // ErrorIfExist defines whether an error should returned if the DB already + // exist. + // + // The default value is false. + ErrorIfExist bool + + // ErrorIfMissing defines whether an error should returned if the DB is + // missing. If false then the database will be created if missing, otherwise + // an error will be returned. + // + // The default value is false. + ErrorIfMissing bool + + // Filter defines an 'effective filter' to use. An 'effective filter' + // if defined will be used to generate per-table filter block. + // The filter name will be stored on disk. + // During reads LevelDB will try to find matching filter from + // 'effective filter' and 'alternative filters'. + // + // Filter can be changed after a DB has been created. It is recommended + // to put old filter to the 'alternative filters' to mitigate lack of + // filter during transition period. + // + // A filter is used to reduce disk reads when looking for a specific key. + // + // The default value is nil. + Filter filter.Filter + + // MaxOpenFiles defines maximum number of open files to kept around + // (cached). This is not an hard limit, actual open files may exceed + // the defined value. + // + // The default value is 1000. + MaxOpenFiles int + + // Strict defines the DB strict level. + Strict Strict + + // WriteBuffer defines maximum size of a 'memdb' before flushed to + // 'sorted table'. 'memdb' is an in-memory DB backed by an on-disk + // unsorted journal. + // + // LevelDB may held up to two 'memdb' at the same time. + // + // The default value is 4MiB. + WriteBuffer int +} + +func (o *Options) GetAltFilters() []filter.Filter { + if o == nil { + return nil + } + return o.AltFilters +} + +func (o *Options) GetBlockCache() cache.Cache { + if o == nil { + return nil + } + return o.BlockCache +} + +func (o *Options) GetBlockRestartInterval() int { + if o == nil || o.BlockRestartInterval <= 0 { + return DefaultBlockRestartInterval + } + return o.BlockRestartInterval +} + +func (o *Options) GetBlockSize() int { + if o == nil || o.BlockSize <= 0 { + return DefaultBlockSize + } + return o.BlockSize +} + +func (o *Options) GetComparer() comparer.Comparer { + if o == nil || o.Comparer == nil { + return comparer.DefaultComparer + } + return o.Comparer +} + +func (o *Options) GetCompression() Compression { + if o == nil || o.Compression <= DefaultCompression || o.Compression >= nCompression { + return DefaultCompressionType + } + return o.Compression +} + +func (o *Options) GetErrorIfExist() bool { + if o == nil { + return false + } + return o.ErrorIfExist +} + +func (o *Options) GetErrorIfMissing() bool { + if o == nil { + return false + } + return o.ErrorIfMissing +} + +func (o *Options) GetFilter() filter.Filter { + if o == nil { + return nil + } + return o.Filter +} + +func (o *Options) GetMaxOpenFiles() int { + if o == nil || o.MaxOpenFiles <= 0 { + return DefaultMaxOpenFiles + } + return o.MaxOpenFiles +} + +func (o *Options) GetStrict(strict Strict) bool { + if o == nil || o.Strict == 0 { + return DefaultStrict&strict != 0 + } + return o.Strict&strict != 0 +} + +func (o *Options) GetWriteBuffer() int { + if o == nil || o.WriteBuffer <= 0 { + return DefaultWriteBuffer + } + return o.WriteBuffer +} + +// ReadOptions holds the optional parameters for 'read operation'. The +// 'read operation' includes Get, Find and NewIterator. +type ReadOptions struct { + // DontFillCache defines whether block reads for this 'read operation' + // should be cached. If false then the block will be cached. This does + // not affects already cached block. + // + // The default value is false. + DontFillCache bool + + // Strict overrides global DB strict level. Only StrictIterator and + // StrictBlockChecksum that does have effects here. + Strict Strict +} + +func (ro *ReadOptions) GetDontFillCache() bool { + if ro == nil { + return false + } + return ro.DontFillCache +} + +func (ro *ReadOptions) GetStrict(strict Strict) bool { + if ro == nil { + return false + } + return ro.Strict&strict != 0 +} + +// WriteOptions holds the optional parameters for 'write operation'. The +// 'write operation' includes Write, Put and Delete. +type WriteOptions struct { + // Sync is whether to sync underlying writes from the OS buffer cache + // through to actual disk, if applicable. Setting Sync can result in + // slower writes. + // + // If false, and the machine crashes, then some recent writes may be lost. + // Note that if it is just the process that crashes (and the machine does + // not) then no writes will be lost. + // + // In other words, Sync being false has the same semantics as a write + // system call. Sync being true means write followed by fsync. + // + // The default value is false. + Sync bool +} + +func (wo *WriteOptions) GetSync() bool { + if wo == nil { + return false + } + return wo.Sync +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/options.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/options.go new file mode 100644 index 00000000..480c2d0a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/options.go @@ -0,0 +1,41 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "github.com/syndtr/goleveldb/leveldb/cache" + "github.com/syndtr/goleveldb/leveldb/filter" + "github.com/syndtr/goleveldb/leveldb/opt" +) + +func (s *session) setOptions(o *opt.Options) { + s.o = &opt.Options{} + if o != nil { + *s.o = *o + } + // Alternative filters. + if filters := o.GetAltFilters(); len(filters) > 0 { + s.o.AltFilters = make([]filter.Filter, len(filters)) + for i, filter := range filters { + s.o.AltFilters[i] = &iFilter{filter} + } + } + // Block cache. + switch o.GetBlockCache() { + case nil: + s.o.BlockCache = cache.NewLRUCache(opt.DefaultBlockCacheSize) + case opt.NoCache: + s.o.BlockCache = nil + } + // Comparer. + s.cmp = &iComparer{o.GetComparer()} + s.o.Comparer = s.cmp + // Filter. + if filter := o.GetFilter(); filter != nil { + s.o.Filter = &iFilter{filter} + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session.go new file mode 100644 index 00000000..2c6d5994 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session.go @@ -0,0 +1,397 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "errors" + "io" + "os" + "sync" + "sync/atomic" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/journal" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +// ErrManifest is the type that wraps errors produced by missing +// or corrupted manifest file. +type ErrManifest struct { + Err error +} + +func (e ErrManifest) Error() string { + return e.Err.Error() +} + +// session represent a persistent database session. +type session struct { + // Need 64-bit alignment. + stFileNum uint64 // current unused file number + stJournalNum uint64 // current journal file number; need external synchronization + stPrevJournalNum uint64 // prev journal file number; no longer used; for compatibility with older version of leveldb + stSeq uint64 // last mem compacted seq; need external synchronization + + stor storage.Storage + storLock util.Releaser + o *opt.Options + cmp *iComparer + tops *tOps + + manifest *journal.Writer + manifestWriter storage.Writer + manifestFile storage.File + + stCPtrs [kNumLevels]iKey // compact pointers; need external synchronization + stVersion *version // current version + vmu sync.Mutex +} + +func newSession(stor storage.Storage, o *opt.Options) (s *session, err error) { + if stor == nil { + return nil, os.ErrInvalid + } + storLock, err := stor.Lock() + if err != nil { + return + } + s = &session{ + stor: stor, + storLock: storLock, + } + s.setOptions(o) + s.tops = newTableOps(s, s.o.GetMaxOpenFiles()) + s.setVersion(&version{s: s}) + return +} + +// Close session. +func (s *session) close() { + s.tops.close() + if bc := s.o.GetBlockCache(); bc != nil { + bc.Purge(nil) + } + if s.manifest != nil { + s.manifest.Close() + } + if s.manifestWriter != nil { + s.manifestWriter.Close() + } +} + +func (s *session) release() { + s.storLock.Release() +} + +// Create a new database session; need external synchronization. +func (s *session) create() error { + // create manifest + return s.newManifest(nil, nil) +} + +// Recover a database session; need external synchronization. +func (s *session) recover() (err error) { + defer func() { + if os.IsNotExist(err) { + // Don't return os.ErrNotExist if the underlying storage contains + // other files that belong to LevelDB. So the DB won't get trashed. + if files, _ := s.stor.GetFiles(storage.TypeAll); len(files) > 0 { + err = ErrManifest{Err: errors.New("leveldb: manifest file missing")} + } + } + }() + + file, err := s.stor.GetManifest() + if err != nil { + return + } + + reader, err := file.Open() + if err != nil { + return + } + defer reader.Close() + strict := s.o.GetStrict(opt.StrictManifest) + jr := journal.NewReader(reader, dropper{s, file}, strict, true) + + staging := s.version_NB().newStaging() + rec := &sessionRecord{} + for { + var r io.Reader + r, err = jr.Next() + if err != nil { + if err == io.EOF { + err = nil + break + } + return + } + + err = rec.decode(r) + if err == nil { + // save compact pointers + for _, rp := range rec.compactionPointers { + s.stCPtrs[rp.level] = iKey(rp.key) + } + // commit record to version staging + staging.commit(rec) + } else if strict { + return ErrManifest{Err: err} + } else { + s.logf("manifest error: %v (skipped)", err) + } + rec.resetCompactionPointers() + rec.resetAddedTables() + rec.resetDeletedTables() + } + + switch { + case !rec.has(recComparer): + return ErrManifest{Err: errors.New("leveldb: manifest missing comparer name")} + case rec.comparer != s.cmp.cmp.Name(): + return ErrManifest{Err: errors.New("leveldb: comparer mismatch, " + "want '" + s.cmp.cmp.Name() + "', " + "got '" + rec.comparer + "'")} + case !rec.has(recNextNum): + return ErrManifest{Err: errors.New("leveldb: manifest missing next file number")} + case !rec.has(recJournalNum): + return ErrManifest{Err: errors.New("leveldb: manifest missing journal file number")} + case !rec.has(recSeq): + return ErrManifest{Err: errors.New("leveldb: manifest missing seq number")} + } + + s.manifestFile = file + s.setVersion(staging.finish()) + s.setFileNum(rec.nextNum) + s.recordCommited(rec) + return nil +} + +// Commit session; need external synchronization. +func (s *session) commit(r *sessionRecord) (err error) { + // spawn new version based on current version + nv := s.version_NB().spawn(r) + + if s.manifest == nil { + // manifest journal writer not yet created, create one + err = s.newManifest(r, nv) + } else { + err = s.flushManifest(r) + } + + // finally, apply new version if no error rise + if err == nil { + s.setVersion(nv) + } + + return +} + +// Pick a compaction based on current state; need external synchronization. +func (s *session) pickCompaction() *compaction { + icmp := s.cmp + ucmp := icmp.cmp + + v := s.version_NB() + + var level int + var t0 tFiles + if v.cScore >= 1 { + level = v.cLevel + cp := s.stCPtrs[level] + tt := v.tables[level] + for _, t := range tt { + if cp == nil || icmp.Compare(t.max, cp) > 0 { + t0 = append(t0, t) + break + } + } + if len(t0) == 0 { + t0 = append(t0, tt[0]) + } + } else { + if p := atomic.LoadPointer(&v.cSeek); p != nil { + ts := (*tSet)(p) + level = ts.level + t0 = append(t0, ts.table) + } else { + return nil + } + } + + c := &compaction{s: s, version: v, level: level} + if level == 0 { + min, max := t0.getRange(icmp) + t0 = nil + v.tables[0].getOverlaps(min.ukey(), max.ukey(), &t0, false, ucmp) + } + + c.tables[0] = t0 + c.expand() + return c +} + +// Create compaction from given level and range; need external synchronization. +func (s *session) getCompactionRange(level int, min, max []byte) *compaction { + v := s.version_NB() + + var t0 tFiles + v.tables[level].getOverlaps(min, max, &t0, level != 0, s.cmp.cmp) + if len(t0) == 0 { + return nil + } + + c := &compaction{s: s, version: v, level: level} + c.tables[0] = t0 + c.expand() + return c +} + +// compaction represent a compaction state +type compaction struct { + s *session + version *version + + level int + tables [2]tFiles + + gp tFiles + gpidx int + seenKey bool + overlappedBytes uint64 + min, max iKey + + tPtrs [kNumLevels]int +} + +// Expand compacted tables; need external synchronization. +func (c *compaction) expand() { + s := c.s + v := c.version + icmp := s.cmp + ucmp := icmp.cmp + + level := c.level + vt0, vt1 := v.tables[level], v.tables[level+1] + + t0, t1 := c.tables[0], c.tables[1] + min, max := t0.getRange(icmp) + vt1.getOverlaps(min.ukey(), max.ukey(), &t1, true, ucmp) + + // Get entire range covered by compaction + amin, amax := append(t0, t1...).getRange(icmp) + + // See if we can grow the number of inputs in "level" without + // changing the number of "level+1" files we pick up. + if len(t1) > 0 { + var exp0 tFiles + vt0.getOverlaps(amin.ukey(), amax.ukey(), &exp0, level != 0, ucmp) + if len(exp0) > len(t0) && t1.size()+exp0.size() < kExpCompactionMaxBytes { + var exp1 tFiles + xmin, xmax := exp0.getRange(icmp) + vt1.getOverlaps(xmin.ukey(), xmax.ukey(), &exp1, true, ucmp) + if len(exp1) == len(t1) { + s.logf("table@compaction expanding L%d+L%d (F·%d S·%s)+(F·%d S·%s) -> (F·%d S·%s)+(F·%d S·%s)", + level, level+1, len(t0), shortenb(int(t0.size())), len(t1), shortenb(int(t1.size())), + len(exp0), shortenb(int(exp0.size())), len(exp1), shortenb(int(exp1.size()))) + min, max = xmin, xmax + t0, t1 = exp0, exp1 + amin, amax = append(t0, t1...).getRange(icmp) + } + } + } + + // Compute the set of grandparent files that overlap this compaction + // (parent == level+1; grandparent == level+2) + if level+2 < kNumLevels { + v.tables[level+2].getOverlaps(amin.ukey(), amax.ukey(), &c.gp, true, ucmp) + } + + c.tables[0], c.tables[1] = t0, t1 + c.min, c.max = min, max +} + +// Check whether compaction is trivial. +func (c *compaction) trivial() bool { + return len(c.tables[0]) == 1 && len(c.tables[1]) == 0 && c.gp.size() <= kMaxGrandParentOverlapBytes +} + +func (c *compaction) isBaseLevelForKey(key []byte) bool { + s := c.s + v := c.version + ucmp := s.cmp.cmp + for level, tt := range v.tables[c.level+2:] { + for c.tPtrs[level] < len(tt) { + t := tt[c.tPtrs[level]] + if ucmp.Compare(key, t.max.ukey()) <= 0 { + // We've advanced far enough + if ucmp.Compare(key, t.min.ukey()) >= 0 { + // Key falls in this file's range, so definitely not base level + return false + } + break + } + c.tPtrs[level]++ + } + } + return true +} + +func (c *compaction) shouldStopBefore(key iKey) bool { + icmp := c.s.cmp + for ; c.gpidx < len(c.gp); c.gpidx++ { + gp := c.gp[c.gpidx] + if icmp.Compare(key, gp.max) <= 0 { + break + } + if c.seenKey { + c.overlappedBytes += gp.size + } + } + c.seenKey = true + + if c.overlappedBytes > kMaxGrandParentOverlapBytes { + // Too much overlap for current output; start new output + c.overlappedBytes = 0 + return true + } + return false +} + +func (c *compaction) newIterator() iterator.Iterator { + s := c.s + icmp := s.cmp + + level := c.level + icap := 2 + if c.level == 0 { + icap = len(c.tables[0]) + 1 + } + its := make([]iterator.Iterator, 0, icap) + + ro := &opt.ReadOptions{ + DontFillCache: true, + } + strict := s.o.GetStrict(opt.StrictIterator) + + for i, tt := range c.tables { + if len(tt) == 0 { + continue + } + + if level+i == 0 { + for _, t := range tt { + its = append(its, s.tops.newIterator(t, nil, ro)) + } + } else { + it := iterator.NewIndexedIterator(tt.newIndexIterator(s.tops, icmp, nil, ro), strict, true) + its = append(its, it) + } + } + + return iterator.NewMergedIterator(its, icmp, true) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_record.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_record.go new file mode 100644 index 00000000..c50fda73 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_record.go @@ -0,0 +1,308 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "bufio" + "encoding/binary" + "errors" + "io" +) + +var errCorruptManifest = errors.New("leveldb: corrupt manifest") + +type byteReader interface { + io.Reader + io.ByteReader +} + +// These numbers are written to disk and should not be changed. +const ( + recComparer = 1 + recJournalNum = 2 + recNextNum = 3 + recSeq = 4 + recCompactionPointer = 5 + recDeletedTable = 6 + recNewTable = 7 + // 8 was used for large value refs + recPrevJournalNum = 9 +) + +type cpRecord struct { + level int + key iKey +} + +type ntRecord struct { + level int + num uint64 + size uint64 + min iKey + max iKey +} + +func (r ntRecord) makeFile(s *session) *tFile { + return newTFile(s.getTableFile(r.num), r.size, r.min, r.max) +} + +type dtRecord struct { + level int + num uint64 +} + +type sessionRecord struct { + hasRec int + comparer string + journalNum uint64 + prevJournalNum uint64 + nextNum uint64 + seq uint64 + compactionPointers []cpRecord + addedTables []ntRecord + deletedTables []dtRecord + scratch [binary.MaxVarintLen64]byte + err error +} + +func (p *sessionRecord) has(rec int) bool { + return p.hasRec&(1<= kNumLevels { + p.err = errCorruptManifest + return 0 + } + return int(x) +} + +func (p *sessionRecord) decode(r io.Reader) error { + br, ok := r.(byteReader) + if !ok { + br = bufio.NewReader(r) + } + p.err = nil + for p.err == nil { + rec, err := binary.ReadUvarint(br) + if err != nil { + if err == io.EOF { + err = nil + } + return err + } + switch rec { + case recComparer: + x := p.readBytes(br) + if p.err == nil { + p.setComparer(string(x)) + } + case recJournalNum: + x := p.readUvarint(br) + if p.err == nil { + p.setJournalNum(x) + } + case recPrevJournalNum: + x := p.readUvarint(br) + if p.err == nil { + p.setPrevJournalNum(x) + } + case recNextNum: + x := p.readUvarint(br) + if p.err == nil { + p.setNextNum(x) + } + case recSeq: + x := p.readUvarint(br) + if p.err == nil { + p.setSeq(x) + } + case recCompactionPointer: + level := p.readLevel(br) + key := p.readBytes(br) + if p.err == nil { + p.addCompactionPointer(level, iKey(key)) + } + case recNewTable: + level := p.readLevel(br) + num := p.readUvarint(br) + size := p.readUvarint(br) + min := p.readBytes(br) + max := p.readBytes(br) + if p.err == nil { + p.addTable(level, num, size, min, max) + } + case recDeletedTable: + level := p.readLevel(br) + num := p.readUvarint(br) + if p.err == nil { + p.deleteTable(level, num) + } + } + } + + return p.err +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_record_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_record_test.go new file mode 100644 index 00000000..029fabfe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_record_test.go @@ -0,0 +1,62 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "bytes" + "testing" +) + +func decodeEncode(v *sessionRecord) (res bool, err error) { + b := new(bytes.Buffer) + err = v.encode(b) + if err != nil { + return + } + v2 := new(sessionRecord) + err = v.decode(b) + if err != nil { + return + } + b2 := new(bytes.Buffer) + err = v2.encode(b2) + if err != nil { + return + } + return bytes.Equal(b.Bytes(), b2.Bytes()), nil +} + +func TestSessionRecord_EncodeDecode(t *testing.T) { + big := uint64(1) << 50 + v := new(sessionRecord) + i := uint64(0) + test := func() { + res, err := decodeEncode(v) + if err != nil { + t.Fatalf("error when testing encode/decode sessionRecord: %v", err) + } + if !res { + t.Error("encode/decode test failed at iteration:", i) + } + } + + for ; i < 4; i++ { + test() + v.addTable(3, big+300+i, big+400+i, + newIKey([]byte("foo"), big+500+1, tVal), + newIKey([]byte("zoo"), big+600+1, tDel)) + v.deleteTable(4, big+700+i) + v.addCompactionPointer(int(i), newIKey([]byte("x"), big+900+1, tVal)) + } + + v.setComparer("foo") + v.setJournalNum(big + 100) + v.setPrevJournalNum(big + 99) + v.setNextNum(big + 200) + v.setSeq(big + 1000) + test() +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_util.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_util.go new file mode 100644 index 00000000..dbbffa2e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/session_util.go @@ -0,0 +1,248 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "fmt" + "sync/atomic" + + "github.com/syndtr/goleveldb/leveldb/journal" + "github.com/syndtr/goleveldb/leveldb/storage" +) + +// logging + +type dropper struct { + s *session + file storage.File +} + +func (d dropper) Drop(err error) { + if e, ok := err.(journal.DroppedError); ok { + d.s.logf("journal@drop %s-%d S·%s %q", d.file.Type(), d.file.Num(), shortenb(e.Size), e.Reason) + } else { + d.s.logf("journal@drop %s-%d %q", d.file.Type(), d.file.Num(), err) + } +} + +func (s *session) log(v ...interface{}) { + s.stor.Log(fmt.Sprint(v...)) +} + +func (s *session) logf(format string, v ...interface{}) { + s.stor.Log(fmt.Sprintf(format, v...)) +} + +// file utils + +func (s *session) getJournalFile(num uint64) storage.File { + return s.stor.GetFile(num, storage.TypeJournal) +} + +func (s *session) getTableFile(num uint64) storage.File { + return s.stor.GetFile(num, storage.TypeTable) +} + +func (s *session) getFiles(t storage.FileType) ([]storage.File, error) { + return s.stor.GetFiles(t) +} + +// session state + +// Get current version. +func (s *session) version() *version { + s.vmu.Lock() + defer s.vmu.Unlock() + s.stVersion.ref++ + return s.stVersion +} + +// Get current version; no barrier. +func (s *session) version_NB() *version { + return s.stVersion +} + +// Set current version to v. +func (s *session) setVersion(v *version) { + s.vmu.Lock() + v.ref = 1 + if old := s.stVersion; old != nil { + v.ref++ + old.next = v + old.release_NB() + } + s.stVersion = v + s.vmu.Unlock() +} + +// Get current unused file number. +func (s *session) fileNum() uint64 { + return atomic.LoadUint64(&s.stFileNum) +} + +// Get current unused file number to num. +func (s *session) setFileNum(num uint64) { + atomic.StoreUint64(&s.stFileNum, num) +} + +// Mark file number as used. +func (s *session) markFileNum(num uint64) { + num += 1 + for { + old, x := s.stFileNum, num + if old > x { + x = old + } + if atomic.CompareAndSwapUint64(&s.stFileNum, old, x) { + break + } + } +} + +// Allocate a file number. +func (s *session) allocFileNum() (num uint64) { + return atomic.AddUint64(&s.stFileNum, 1) - 1 +} + +// Reuse given file number. +func (s *session) reuseFileNum(num uint64) { + for { + old, x := s.stFileNum, num + if old != x+1 { + x = old + } + if atomic.CompareAndSwapUint64(&s.stFileNum, old, x) { + break + } + } +} + +// manifest related utils + +// Fill given session record obj with current states; need external +// synchronization. +func (s *session) fillRecord(r *sessionRecord, snapshot bool) { + r.setNextNum(s.fileNum()) + + if snapshot { + if !r.has(recJournalNum) { + r.setJournalNum(s.stJournalNum) + } + + if !r.has(recSeq) { + r.setSeq(s.stSeq) + } + + for level, ik := range s.stCPtrs { + if ik != nil { + r.addCompactionPointer(level, ik) + } + } + + r.setComparer(s.cmp.cmp.Name()) + } +} + +// Mark if record has been commited, this will update session state; +// need external synchronization. +func (s *session) recordCommited(r *sessionRecord) { + if r.has(recJournalNum) { + s.stJournalNum = r.journalNum + } + + if r.has(recPrevJournalNum) { + s.stPrevJournalNum = r.prevJournalNum + } + + if r.has(recSeq) { + s.stSeq = r.seq + } + + for _, p := range r.compactionPointers { + s.stCPtrs[p.level] = iKey(p.key) + } +} + +// Create a new manifest file; need external synchronization. +func (s *session) newManifest(rec *sessionRecord, v *version) (err error) { + num := s.allocFileNum() + file := s.stor.GetFile(num, storage.TypeManifest) + writer, err := file.Create() + if err != nil { + return + } + jw := journal.NewWriter(writer) + + if v == nil { + v = s.version_NB() + } + if rec == nil { + rec = new(sessionRecord) + } + s.fillRecord(rec, true) + v.fillRecord(rec) + + defer func() { + if err == nil { + s.recordCommited(rec) + if s.manifest != nil { + s.manifest.Close() + } + if s.manifestWriter != nil { + s.manifestWriter.Close() + } + if s.manifestFile != nil { + s.manifestFile.Remove() + } + s.manifestFile = file + s.manifestWriter = writer + s.manifest = jw + } else { + writer.Close() + file.Remove() + s.reuseFileNum(num) + } + }() + + w, err := jw.Next() + if err != nil { + return + } + err = rec.encode(w) + if err != nil { + return + } + err = jw.Flush() + if err != nil { + return + } + err = s.stor.SetManifest(file) + return +} + +// Flush record to disk. +func (s *session) flushManifest(rec *sessionRecord) (err error) { + s.fillRecord(rec, false) + w, err := s.manifest.Next() + if err != nil { + return + } + err = rec.encode(w) + if err != nil { + return + } + err = s.manifest.Flush() + if err != nil { + return + } + err = s.manifestWriter.Sync() + if err != nil { + return + } + s.recordCommited(rec) + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage.go new file mode 100644 index 00000000..27f09605 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage.go @@ -0,0 +1,501 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reservefs. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package storage + +import ( + "errors" + "fmt" + "io/ioutil" + "os" + "path/filepath" + "runtime" + "strconv" + "strings" + "sync" + "time" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +var errFileOpen = errors.New("leveldb/storage: file still open") + +type fileLock interface { + release() error +} + +type fileStorageLock struct { + fs *fileStorage +} + +func (lock *fileStorageLock) Release() { + fs := lock.fs + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.slock == lock { + fs.slock = nil + } + return +} + +// fileStorage is a file-system backed storage. +type fileStorage struct { + path string + + mu sync.Mutex + flock fileLock + slock *fileStorageLock + logw *os.File + buf []byte + // Opened file counter; if open < 0 means closed. + open int + day int +} + +// OpenFile returns a new filesytem-backed storage implementation with the given +// path. This also hold a file lock, so any subsequent attempt to open the same +// path will fail. +// +// The storage must be closed after use, by calling Close method. +func OpenFile(path string) (Storage, error) { + if err := os.MkdirAll(path, 0755); err != nil { + return nil, err + } + + flock, err := newFileLock(filepath.Join(path, "LOCK")) + if err != nil { + return nil, err + } + + defer func() { + if err != nil { + flock.release() + } + }() + + rename(filepath.Join(path, "LOG"), filepath.Join(path, "LOG.old")) + logw, err := os.OpenFile(filepath.Join(path, "LOG"), os.O_WRONLY|os.O_CREATE, 0644) + if err != nil { + return nil, err + } + + fs := &fileStorage{path: path, flock: flock, logw: logw} + runtime.SetFinalizer(fs, (*fileStorage).Close) + return fs, nil +} + +func (fs *fileStorage) Lock() (util.Releaser, error) { + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.open < 0 { + return nil, ErrClosed + } + if fs.slock != nil { + return nil, ErrLocked + } + fs.slock = &fileStorageLock{fs: fs} + return fs.slock, nil +} + +func itoa(buf []byte, i int, wid int) []byte { + var u uint = uint(i) + if u == 0 && wid <= 1 { + return append(buf, '0') + } + + // Assemble decimal in reverse order. + var b [32]byte + bp := len(b) + for ; u > 0 || wid > 0; u /= 10 { + bp-- + wid-- + b[bp] = byte(u%10) + '0' + } + return append(buf, b[bp:]...) +} + +func (fs *fileStorage) printDay(t time.Time) { + if fs.day == t.Day() { + return + } + fs.day = t.Day() + fs.logw.Write([]byte("=============== " + t.Format("Jan 2, 2006 (MST)") + " ===============\n")) +} + +func (fs *fileStorage) doLog(t time.Time, str string) { + fs.printDay(t) + hour, min, sec := t.Clock() + msec := t.Nanosecond() / 1e3 + // time + fs.buf = itoa(fs.buf[:0], hour, 2) + fs.buf = append(fs.buf, ':') + fs.buf = itoa(fs.buf, min, 2) + fs.buf = append(fs.buf, ':') + fs.buf = itoa(fs.buf, sec, 2) + fs.buf = append(fs.buf, '.') + fs.buf = itoa(fs.buf, msec, 6) + fs.buf = append(fs.buf, ' ') + // write + fs.buf = append(fs.buf, []byte(str)...) + fs.buf = append(fs.buf, '\n') + fs.logw.Write(fs.buf) +} + +func (fs *fileStorage) Log(str string) { + t := time.Now() + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.open < 0 { + return + } + fs.doLog(t, str) +} + +func (fs *fileStorage) log(str string) { + fs.doLog(time.Now(), str) +} + +func (fs *fileStorage) GetFile(num uint64, t FileType) File { + return &file{fs: fs, num: num, t: t} +} + +func (fs *fileStorage) GetFiles(t FileType) (ff []File, err error) { + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.open < 0 { + return nil, ErrClosed + } + dir, err := os.Open(fs.path) + if err != nil { + return + } + fnn, err := dir.Readdirnames(0) + // Close the dir first before checking for Readdirnames error. + if err := dir.Close(); err != nil { + fs.log(fmt.Sprintf("close dir: %v", err)) + } + if err != nil { + return + } + f := &file{fs: fs} + for _, fn := range fnn { + if f.parse(fn) && (f.t&t) != 0 { + ff = append(ff, f) + f = &file{fs: fs} + } + } + return +} + +func (fs *fileStorage) GetManifest() (f File, err error) { + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.open < 0 { + return nil, ErrClosed + } + dir, err := os.Open(fs.path) + if err != nil { + return + } + fnn, err := dir.Readdirnames(0) + // Close the dir first before checking for Readdirnames error. + if err := dir.Close(); err != nil { + fs.log(fmt.Sprintf("close dir: %v", err)) + } + if err != nil { + return + } + // Find latest CURRENT file. + var rem []string + var pend bool + var cerr error + for _, fn := range fnn { + if strings.HasPrefix(fn, "CURRENT") { + pend1 := len(fn) > 7 + // Make sure it is valid name for a CURRENT file, otherwise skip it. + if pend1 { + if fn[7] != '.' || len(fn) < 9 { + fs.log(fmt.Sprintf("skipping %s: invalid file name", fn)) + continue + } + if _, e1 := strconv.ParseUint(fn[7:], 10, 0); e1 != nil { + fs.log(fmt.Sprintf("skipping %s: invalid file num: %v", fn, e1)) + continue + } + } + path := filepath.Join(fs.path, fn) + r, e1 := os.OpenFile(path, os.O_RDONLY, 0) + if e1 != nil { + return nil, e1 + } + b, e1 := ioutil.ReadAll(r) + if e1 != nil { + r.Close() + return nil, e1 + } + f1 := &file{fs: fs} + if len(b) < 1 || b[len(b)-1] != '\n' || !f1.parse(string(b[:len(b)-1])) { + fs.log(fmt.Sprintf("skipping %s: corrupted or incomplete", fn)) + if pend1 { + rem = append(rem, fn) + } + if !pend1 || cerr == nil { + cerr = fmt.Errorf("leveldb/storage: corrupted or incomplete %s file", fn) + } + } else if f != nil && f1.Num() < f.Num() { + fs.log(fmt.Sprintf("skipping %s: obsolete", fn)) + if pend1 { + rem = append(rem, fn) + } + } else { + f = f1 + pend = pend1 + } + if err := r.Close(); err != nil { + fs.log(fmt.Sprintf("close %s: %v", fn, err)) + } + } + } + // Don't remove any files if there is no valid CURRENT file. + if f == nil { + if cerr != nil { + err = cerr + } else { + err = os.ErrNotExist + } + return + } + // Rename pending CURRENT file to an effective CURRENT. + if pend { + path := fmt.Sprintf("%s.%d", filepath.Join(fs.path, "CURRENT"), f.Num()) + if err := rename(path, filepath.Join(fs.path, "CURRENT")); err != nil { + fs.log(fmt.Sprintf("CURRENT.%d -> CURRENT: %v", f.Num(), err)) + } + } + // Remove obsolete or incomplete pending CURRENT files. + for _, fn := range rem { + path := filepath.Join(fs.path, fn) + if err := os.Remove(path); err != nil { + fs.log(fmt.Sprintf("remove %s: %v", fn, err)) + } + } + return +} + +func (fs *fileStorage) SetManifest(f File) (err error) { + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.open < 0 { + return ErrClosed + } + f2, ok := f.(*file) + if !ok || f2.t != TypeManifest { + return ErrInvalidFile + } + defer func() { + if err != nil { + fs.log(fmt.Sprintf("CURRENT: %v", err)) + } + }() + path := fmt.Sprintf("%s.%d", filepath.Join(fs.path, "CURRENT"), f2.Num()) + w, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644) + if err != nil { + return err + } + _, err = fmt.Fprintln(w, f2.name()) + // Close the file first. + if err := w.Close(); err != nil { + fs.log(fmt.Sprintf("close CURRENT.%d: %v", f2.num, err)) + } + if err != nil { + return err + } + err = rename(path, filepath.Join(fs.path, "CURRENT")) + return +} + +func (fs *fileStorage) Close() error { + fs.mu.Lock() + defer fs.mu.Unlock() + if fs.open < 0 { + return ErrClosed + } + // Clear the finalizer. + runtime.SetFinalizer(fs, nil) + + if fs.open > 0 { + fs.log(fmt.Sprintf("refuse to close, %d files still open", fs.open)) + return fmt.Errorf("leveldb/storage: cannot close, %d files still open", fs.open) + } + fs.open = -1 + e1 := fs.logw.Close() + err := fs.flock.release() + if err == nil { + err = e1 + } + return err +} + +type fileWrap struct { + *os.File + f *file +} + +func (fw fileWrap) Close() error { + f := fw.f + f.fs.mu.Lock() + defer f.fs.mu.Unlock() + if !f.open { + return ErrClosed + } + f.open = false + f.fs.open-- + err := fw.File.Close() + if err != nil { + f.fs.log(fmt.Sprintf("close %s.%d: %v", f.Type(), f.Num(), err)) + } + return err +} + +type file struct { + fs *fileStorage + num uint64 + t FileType + open bool +} + +func (f *file) Open() (Reader, error) { + f.fs.mu.Lock() + defer f.fs.mu.Unlock() + if f.fs.open < 0 { + return nil, ErrClosed + } + if f.open { + return nil, errFileOpen + } + of, err := os.OpenFile(f.path(), os.O_RDONLY, 0) + if err != nil { + if f.hasOldName() && os.IsNotExist(err) { + of, err = os.OpenFile(f.oldPath(), os.O_RDONLY, 0) + if err == nil { + goto ok + } + } + return nil, err + } +ok: + f.open = true + f.fs.open++ + return fileWrap{of, f}, nil +} + +func (f *file) Create() (Writer, error) { + f.fs.mu.Lock() + defer f.fs.mu.Unlock() + if f.fs.open < 0 { + return nil, ErrClosed + } + if f.open { + return nil, errFileOpen + } + of, err := os.OpenFile(f.path(), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644) + if err != nil { + return nil, err + } + f.open = true + f.fs.open++ + return fileWrap{of, f}, nil +} + +func (f *file) Type() FileType { + return f.t +} + +func (f *file) Num() uint64 { + return f.num +} + +func (f *file) Remove() error { + f.fs.mu.Lock() + defer f.fs.mu.Unlock() + if f.fs.open < 0 { + return ErrClosed + } + if f.open { + return errFileOpen + } + err := os.Remove(f.path()) + if err != nil { + f.fs.log(fmt.Sprintf("remove %s.%d: %v", f.Type(), f.Num(), err)) + } + // Also try remove file with old name, just in case. + if f.hasOldName() { + if e1 := os.Remove(f.oldPath()); !os.IsNotExist(e1) { + f.fs.log(fmt.Sprintf("remove %s.%d: %v (old name)", f.Type(), f.Num(), err)) + err = e1 + } + } + return err +} + +func (f *file) hasOldName() bool { + return f.t == TypeTable +} + +func (f *file) oldName() string { + switch f.t { + case TypeTable: + return fmt.Sprintf("%06d.sst", f.num) + } + return f.name() +} + +func (f *file) oldPath() string { + return filepath.Join(f.fs.path, f.oldName()) +} + +func (f *file) name() string { + switch f.t { + case TypeManifest: + return fmt.Sprintf("MANIFEST-%06d", f.num) + case TypeJournal: + return fmt.Sprintf("%06d.log", f.num) + case TypeTable: + return fmt.Sprintf("%06d.ldb", f.num) + default: + panic("invalid file type") + } +} + +func (f *file) path() string { + return filepath.Join(f.fs.path, f.name()) +} + +func (f *file) parse(name string) bool { + var num uint64 + var tail string + _, err := fmt.Sscanf(name, "%d.%s", &num, &tail) + if err == nil { + switch tail { + case "log": + f.t = TypeJournal + case "ldb", "sst": + f.t = TypeTable + default: + return false + } + f.num = num + return true + } + n, _ := fmt.Sscanf(name, "MANIFEST-%d%s", &num, &tail) + if n == 1 { + f.t = TypeManifest + f.num = num + return true + } + + return false +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_plan9.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_plan9.go new file mode 100644 index 00000000..9e3f19b2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_plan9.go @@ -0,0 +1,40 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package storage + +import ( + "os" + "path/filepath" +) + +type plan9FileLock struct { + f *os.File +} + +func (fl *plan9FileLock) release() error { + return fl.f.Close() +} + +func newFileLock(path string) (fl fileLock, err error) { + f, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, os.ModeExclusive|0644) + if err != nil { + return + } + fl = &plan9FileLock{f: f} + return +} + +func rename(oldpath, newpath string) error { + if _, err := os.Stat(newpath); err == nil { + if err := os.Remove(newpath); err != nil { + return err + } + } + + _, fname := filepath.Split(newpath) + return os.Rename(oldpath, fname) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_test.go new file mode 100644 index 00000000..a1bcfadb --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_test.go @@ -0,0 +1,141 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package storage + +import ( + "fmt" + "os" + "path/filepath" + "testing" +) + +var cases = []struct { + oldName []string + name string + ftype FileType + num uint64 +}{ + {nil, "000100.log", TypeJournal, 100}, + {nil, "000000.log", TypeJournal, 0}, + {[]string{"000000.sst"}, "000000.ldb", TypeTable, 0}, + {nil, "MANIFEST-000002", TypeManifest, 2}, + {nil, "MANIFEST-000007", TypeManifest, 7}, + {nil, "18446744073709551615.log", TypeJournal, 18446744073709551615}, +} + +var invalidCases = []string{ + "", + "foo", + "foo-dx-100.log", + ".log", + "", + "manifest", + "CURREN", + "CURRENTX", + "MANIFES", + "MANIFEST", + "MANIFEST-", + "XMANIFEST-3", + "MANIFEST-3x", + "LOC", + "LOCKx", + "LO", + "LOGx", + "18446744073709551616.log", + "184467440737095516150.log", + "100", + "100.", + "100.lop", +} + +func TestFileStorage_CreateFileName(t *testing.T) { + for _, c := range cases { + f := &file{num: c.num, t: c.ftype} + if f.name() != c.name { + t.Errorf("invalid filename got '%s', want '%s'", f.name(), c.name) + } + } +} + +func TestFileStorage_ParseFileName(t *testing.T) { + for _, c := range cases { + for _, name := range append([]string{c.name}, c.oldName...) { + f := new(file) + if !f.parse(name) { + t.Errorf("cannot parse filename '%s'", name) + continue + } + if f.Type() != c.ftype { + t.Errorf("filename '%s' invalid type got '%d', want '%d'", name, f.Type(), c.ftype) + } + if f.Num() != c.num { + t.Errorf("filename '%s' invalid number got '%d', want '%d'", name, f.Num(), c.num) + } + } + } +} + +func TestFileStorage_InvalidFileName(t *testing.T) { + for _, name := range invalidCases { + f := new(file) + if f.parse(name) { + t.Errorf("filename '%s' should be invalid", name) + } + } +} + +func TestFileStorage_Locking(t *testing.T) { + path := filepath.Join(os.TempDir(), fmt.Sprintf("goleveldbtestfd-%d", os.Getuid())) + + _, err := os.Stat(path) + if err == nil { + err = os.RemoveAll(path) + if err != nil { + t.Fatal("RemoveAll: got error: ", err) + } + } + + p1, err := OpenFile(path) + if err != nil { + t.Fatal("OpenFile(1): got error: ", err) + } + + defer os.RemoveAll(path) + + p2, err := OpenFile(path) + if err != nil { + t.Logf("OpenFile(2): got error: %s (expected)", err) + } else { + p2.Close() + p1.Close() + t.Fatal("OpenFile(2): expect error") + } + + p1.Close() + + p3, err := OpenFile(path) + if err != nil { + t.Fatal("OpenFile(3): got error: ", err) + } + defer p3.Close() + + l, err := p3.Lock() + if err != nil { + t.Fatal("storage lock failed(1): ", err) + } + _, err = p3.Lock() + if err == nil { + t.Fatal("expect error for second storage lock attempt") + } else { + t.Logf("storage lock got error: %s (expected)", err) + } + l.Release() + _, err = p3.Lock() + if err != nil { + t.Fatal("storage lock failed(2): ", err) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_unix.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_unix.go new file mode 100644 index 00000000..395db2d2 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_unix.go @@ -0,0 +1,51 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// +build darwin freebsd linux netbsd openbsd + +package storage + +import ( + "os" + "syscall" +) + +type unixFileLock struct { + f *os.File +} + +func (fl *unixFileLock) release() error { + if err := setFileLock(fl.f, false); err != nil { + return err + } + return fl.f.Close() +} + +func newFileLock(path string) (fl fileLock, err error) { + f, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, 0644) + if err != nil { + return + } + err = setFileLock(f, true) + if err != nil { + f.Close() + return + } + fl = &unixFileLock{f: f} + return +} + +func setFileLock(f *os.File, lock bool) error { + how := syscall.LOCK_UN + if lock { + how = syscall.LOCK_EX + } + return syscall.Flock(int(f.Fd()), how|syscall.LOCK_NB) +} + +func rename(oldpath, newpath string) error { + return os.Rename(oldpath, newpath) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_windows.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_windows.go new file mode 100644 index 00000000..b834b18f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_windows.go @@ -0,0 +1,67 @@ +// Copyright (c) 2013, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package storage + +import ( + "syscall" + "unsafe" +) + +var ( + modkernel32 = syscall.NewLazyDLL("kernel32.dll") + + procMoveFileExW = modkernel32.NewProc("MoveFileExW") +) + +const ( + _MOVEFILE_REPLACE_EXISTING = 1 +) + +type windowsFileLock struct { + fd syscall.Handle +} + +func (fl *windowsFileLock) release() error { + return syscall.Close(fl.fd) +} + +func newFileLock(path string) (fl fileLock, err error) { + pathp, err := syscall.UTF16PtrFromString(path) + if err != nil { + return + } + fd, err := syscall.CreateFile(pathp, syscall.GENERIC_READ|syscall.GENERIC_WRITE, 0, nil, syscall.CREATE_ALWAYS, syscall.FILE_ATTRIBUTE_NORMAL, 0) + if err != nil { + return + } + fl = &windowsFileLock{fd: fd} + return +} + +func moveFileEx(from *uint16, to *uint16, flags uint32) error { + r1, _, e1 := syscall.Syscall(procMoveFileExW.Addr(), 3, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), uintptr(flags)) + if r1 == 0 { + if e1 != 0 { + return error(e1) + } else { + return syscall.EINVAL + } + } + return nil +} + +func rename(oldpath, newpath string) error { + from, err := syscall.UTF16PtrFromString(oldpath) + if err != nil { + return err + } + to, err := syscall.UTF16PtrFromString(newpath) + if err != nil { + return err + } + return moveFileEx(from, to, _MOVEFILE_REPLACE_EXISTING) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/mem_storage.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/mem_storage.go new file mode 100644 index 00000000..5facde2d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/mem_storage.go @@ -0,0 +1,182 @@ +// Copyright (c) 2013, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package storage + +import ( + "bytes" + "os" + "sync" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +const typeShift = 3 + +type memStorageLock struct { + ms *memStorage +} + +func (lock *memStorageLock) Release() { + ms := lock.ms + ms.mu.Lock() + defer ms.mu.Unlock() + if ms.slock == lock { + ms.slock = nil + } + return +} + +// memStorage is a memory-backed storage. +type memStorage struct { + mu sync.Mutex + slock *memStorageLock + files map[uint64]*memFile + manifest *memFilePtr +} + +// NewMemStorage returns a new memory-backed storage implementation. +func NewMemStorage() Storage { + return &memStorage{ + files: make(map[uint64]*memFile), + } +} + +func (ms *memStorage) Lock() (util.Releaser, error) { + ms.mu.Lock() + defer ms.mu.Unlock() + if ms.slock != nil { + return nil, ErrLocked + } + ms.slock = &memStorageLock{ms: ms} + return ms.slock, nil +} + +func (*memStorage) Log(str string) {} + +func (ms *memStorage) GetFile(num uint64, t FileType) File { + return &memFilePtr{ms: ms, num: num, t: t} +} + +func (ms *memStorage) GetFiles(t FileType) ([]File, error) { + ms.mu.Lock() + var ff []File + for x, _ := range ms.files { + num, mt := x>>typeShift, FileType(x)&TypeAll + if mt&t == 0 { + continue + } + ff = append(ff, &memFilePtr{ms: ms, num: num, t: mt}) + } + ms.mu.Unlock() + return ff, nil +} + +func (ms *memStorage) GetManifest() (File, error) { + ms.mu.Lock() + defer ms.mu.Unlock() + if ms.manifest == nil { + return nil, os.ErrNotExist + } + return ms.manifest, nil +} + +func (ms *memStorage) SetManifest(f File) error { + fm, ok := f.(*memFilePtr) + if !ok || fm.t != TypeManifest { + return ErrInvalidFile + } + ms.mu.Lock() + ms.manifest = fm + ms.mu.Unlock() + return nil +} + +func (*memStorage) Close() error { return nil } + +type memReader struct { + *bytes.Reader + m *memFile +} + +func (mr *memReader) Close() error { + return mr.m.Close() +} + +type memFile struct { + bytes.Buffer + ms *memStorage + open bool +} + +func (*memFile) Sync() error { return nil } +func (m *memFile) Close() error { + m.ms.mu.Lock() + m.open = false + m.ms.mu.Unlock() + return nil +} + +type memFilePtr struct { + ms *memStorage + num uint64 + t FileType +} + +func (p *memFilePtr) x() uint64 { + return p.Num()< +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package storage + +import ( + "bytes" + "testing" +) + +func TestMemStorage(t *testing.T) { + m := NewMemStorage() + + l, err := m.Lock() + if err != nil { + t.Fatal("storage lock failed(1): ", err) + } + _, err = m.Lock() + if err == nil { + t.Fatal("expect error for second storage lock attempt") + } else { + t.Logf("storage lock got error: %s (expected)", err) + } + l.Release() + _, err = m.Lock() + if err != nil { + t.Fatal("storage lock failed(2): ", err) + } + + f := m.GetFile(1, TypeTable) + if f.Num() != 1 && f.Type() != TypeTable { + t.Fatal("invalid file number and type") + } + w, _ := f.Create() + w.Write([]byte("abc")) + w.Close() + if ff, _ := m.GetFiles(TypeAll); len(ff) != 1 { + t.Fatal("invalid GetFiles len") + } + buf := new(bytes.Buffer) + r, err := f.Open() + if err != nil { + t.Fatal("Open: got error: ", err) + } + buf.ReadFrom(r) + r.Close() + if got := buf.String(); got != "abc" { + t.Fatalf("Read: invalid value, want=abc got=%s", got) + } + if _, err := f.Open(); err != nil { + t.Fatal("Open: got error: ", err) + } + if _, err := m.GetFile(1, TypeTable).Open(); err == nil { + t.Fatal("expecting error") + } + f.Remove() + if ff, _ := m.GetFiles(TypeAll); len(ff) != 0 { + t.Fatal("invalid GetFiles len", len(ff)) + } + if _, err := f.Open(); err == nil { + t.Fatal("expecting error") + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/storage.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/storage.go new file mode 100644 index 00000000..c0572cfc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage/storage.go @@ -0,0 +1,119 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package storage provides storage abstraction for LevelDB. +package storage + +import ( + "errors" + "io" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +type FileType uint32 + +const ( + TypeManifest FileType = 1 << iota + TypeJournal + TypeTable + + TypeAll = TypeManifest | TypeJournal | TypeTable +) + +func (t FileType) String() string { + switch t { + case TypeManifest: + return "manifest" + case TypeJournal: + return "journal" + case TypeTable: + return "table" + } + return "" +} + +var ( + ErrInvalidFile = errors.New("leveldb/storage: invalid file for argument") + ErrLocked = errors.New("leveldb/storage: already locked") + ErrClosed = errors.New("leveldb/storage: closed") +) + +// Syncer is the interface that wraps basic Sync method. +type Syncer interface { + // Sync commits the current contents of the file to stable storage. + Sync() error +} + +// Reader is the interface that groups the basic Read, Seek, ReadAt and Close +// methods. +type Reader interface { + io.ReadSeeker + io.ReaderAt + io.Closer +} + +// Writer is the interface that groups the basic Write, Sync and Close +// methods. +type Writer interface { + io.WriteCloser + Syncer +} + +// File is the file. +type File interface { + // Open opens the file for read. Returns os.ErrNotExist error + // if the file does not exist. + // Open returns error if the underlying storage is closed. + Open() (r Reader, err error) + + // Create creates the file for writting. Truncate the file if + // already exist. + // Returns error if the underlying storage is closed. + Create() (w Writer, err error) + + // Type returns the file type + Type() FileType + + // Num returns the file number. + Num() uint64 + + // Remove removes the file. + // Returns error if the underlying storage is closed. + Remove() error +} + +// Storage is the storage. +type Storage interface { + // Lock locks the storage. Any subsequent attempt to call Lock will fail + // until the last lock released. + // After use the caller should call the Release method. + Lock() (l util.Releaser, err error) + + // Log logs a string. This is used for logging. An implementation + // may write to a file, stdout or simply do nothing. + Log(str string) + + // GetFile returns a file for the given number and type. GetFile will never + // returns nil, even if the underlying storage is closed. + GetFile(num uint64, t FileType) File + + // GetFiles returns a slice of files that match the given file types. + // The file types may be OR'ed together. + GetFiles(t FileType) ([]File, error) + + // GetManifest returns a manifest file. Returns os.ErrNotExist if manifest + // file does not exist. + GetManifest() (File, error) + + // SetManifest sets the given file as manifest file. The given file should + // be a manifest file type or error will be returned. + SetManifest(f File) error + + // Close closes the storage. It is valid to call Close multiple times. + // Other methods should not be called after the storage has been closed. + Close() error +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage_test.go new file mode 100644 index 00000000..909423e1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/storage_test.go @@ -0,0 +1,459 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENE file. + +package leveldb + +import ( + "errors" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "sync" + "testing" + + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +const typeShift = 3 + +var ( + tsErrInvalidFile = errors.New("leveldb.testStorage: invalid file for argument") + tsErrFileOpen = errors.New("leveldb.testStorage: file still open") +) + +var ( + tsFSEnv = os.Getenv("GOLEVELDB_USEFS") + tsKeepFS = tsFSEnv == "2" + tsFS = tsKeepFS || tsFSEnv == "" || tsFSEnv == "1" + tsMU = &sync.Mutex{} + tsNum = 0 +) + +type tsLock struct { + ts *testStorage + r util.Releaser +} + +func (l tsLock) Release() { + l.r.Release() + l.ts.t.Log("I: storage lock released") +} + +type tsReader struct { + tf tsFile + storage.Reader +} + +func (tr tsReader) Read(b []byte) (n int, err error) { + ts := tr.tf.ts + ts.countRead(tr.tf.Type()) + n, err = tr.Reader.Read(b) + if err != nil && err != io.EOF { + ts.t.Errorf("E: read error, num=%d type=%v n=%d: %v", tr.tf.Num(), tr.tf.Type(), n, err) + } + return +} + +func (tr tsReader) ReadAt(b []byte, off int64) (n int, err error) { + ts := tr.tf.ts + ts.countRead(tr.tf.Type()) + n, err = tr.Reader.ReadAt(b, off) + if err != nil && err != io.EOF { + ts.t.Errorf("E: readAt error, num=%d type=%v off=%d n=%d: %v", tr.tf.Num(), tr.tf.Type(), off, n, err) + } + return +} + +func (tr tsReader) Close() (err error) { + err = tr.Reader.Close() + tr.tf.close("reader", err) + return +} + +type tsWriter struct { + tf tsFile + storage.Writer +} + +func (tw tsWriter) Write(b []byte) (n int, err error) { + ts := tw.tf.ts + ts.mu.Lock() + defer ts.mu.Unlock() + if ts.emuWriteErr&tw.tf.Type() != 0 { + return 0, errors.New("leveldb.testStorage: emulated write error") + } + n, err = tw.Writer.Write(b) + if err != nil { + ts.t.Errorf("E: write error, num=%d type=%v n=%d: %v", tw.tf.Num(), tw.tf.Type(), n, err) + } + return +} + +func (tw tsWriter) Sync() (err error) { + ts := tw.tf.ts + ts.mu.Lock() + defer ts.mu.Unlock() + for ts.emuDelaySync&tw.tf.Type() != 0 { + ts.cond.Wait() + } + if ts.emuSyncErr&tw.tf.Type() != 0 { + return errors.New("leveldb.testStorage: emulated sync error") + } + err = tw.Writer.Sync() + if err != nil { + ts.t.Errorf("E: sync error, num=%d type=%v: %v", tw.tf.Num(), tw.tf.Type(), err) + } + return +} + +func (tw tsWriter) Close() (err error) { + err = tw.Writer.Close() + tw.tf.close("reader", err) + return +} + +type tsFile struct { + ts *testStorage + storage.File +} + +func (tf tsFile) x() uint64 { + return tf.Num()<>typeShift, storage.FileType(x)&storage.TypeAll + ts.t.Errorf("E: * num=%d type=%v writer=%v", num, tt, writer) + } + } + ts.mu.Unlock() +} + +func newTestStorage(t *testing.T) *testStorage { + var stor storage.Storage + var closeFn func() error + if tsFS { + for { + tsMU.Lock() + num := tsNum + tsNum++ + tsMU.Unlock() + path := filepath.Join(os.TempDir(), fmt.Sprintf("goleveldb-test%d0%d0%d", os.Getuid(), os.Getpid(), num)) + if _, err := os.Stat(path); err != nil { + stor, err = storage.OpenFile(path) + if err != nil { + t.Fatalf("F: cannot create storage: %v", err) + } + t.Logf("I: storage created: %s", path) + closeFn = func() error { + for _, name := range []string{"LOG.old", "LOG"} { + f, err := os.Open(filepath.Join(path, name)) + if err != nil { + continue + } + if log, err := ioutil.ReadAll(f); err != nil { + t.Logf("---------------------- %s ----------------------", name) + t.Logf("cannot read log: %v", err) + t.Logf("---------------------- %s ----------------------", name) + } else if len(log) > 0 { + t.Logf("---------------------- %s ----------------------\n%s", name, string(log)) + t.Logf("---------------------- %s ----------------------", name) + } + f.Close() + } + if tsKeepFS { + return nil + } + return os.RemoveAll(path) + } + + break + } + } + } else { + stor = storage.NewMemStorage() + } + ts := &testStorage{ + t: t, + Storage: stor, + closeFn: closeFn, + opens: make(map[uint64]bool), + } + ts.cond.L = &ts.mu + return ts +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table.go new file mode 100644 index 00000000..82ed1f26 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table.go @@ -0,0 +1,423 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "sort" + "sync/atomic" + + "github.com/syndtr/goleveldb/leveldb/cache" + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/table" + "github.com/syndtr/goleveldb/leveldb/util" +) + +// table file +type tFile struct { + file storage.File + seekLeft int32 + size uint64 + min, max iKey +} + +// test if key is after t +func (t *tFile) isAfter(key []byte, ucmp comparer.BasicComparer) bool { + return key != nil && ucmp.Compare(key, t.max.ukey()) > 0 +} + +// test if key is before t +func (t *tFile) isBefore(key []byte, ucmp comparer.BasicComparer) bool { + return key != nil && ucmp.Compare(key, t.min.ukey()) < 0 +} + +func (t *tFile) incrSeek() int32 { + return atomic.AddInt32(&t.seekLeft, -1) +} + +func newTFile(file storage.File, size uint64, min, max iKey) *tFile { + f := &tFile{ + file: file, + size: size, + min: min, + max: max, + } + + // We arrange to automatically compact this file after + // a certain number of seeks. Let's assume: + // (1) One seek costs 10ms + // (2) Writing or reading 1MB costs 10ms (100MB/s) + // (3) A compaction of 1MB does 25MB of IO: + // 1MB read from this level + // 10-12MB read from next level (boundaries may be misaligned) + // 10-12MB written to next level + // This implies that 25 seeks cost the same as the compaction + // of 1MB of data. I.e., one seek costs approximately the + // same as the compaction of 40KB of data. We are a little + // conservative and allow approximately one seek for every 16KB + // of data before triggering a compaction. + f.seekLeft = int32(size / 16384) + if f.seekLeft < 100 { + f.seekLeft = 100 + } + + return f +} + +// table files +type tFiles []*tFile + +func (tf tFiles) Len() int { return len(tf) } +func (tf tFiles) Swap(i, j int) { tf[i], tf[j] = tf[j], tf[i] } + +func (tf tFiles) lessByKey(icmp *iComparer, i, j int) bool { + a, b := tf[i], tf[j] + n := icmp.Compare(a.min, b.min) + if n == 0 { + return a.file.Num() < b.file.Num() + } + return n < 0 +} + +func (tf tFiles) lessByNum(i, j int) bool { + return tf[i].file.Num() > tf[j].file.Num() +} + +func (tf tFiles) sortByKey(icmp *iComparer) { + sort.Sort(&tFilesSortByKey{tFiles: tf, icmp: icmp}) +} + +func (tf tFiles) sortByNum() { + sort.Sort(&tFilesSortByNum{tFiles: tf}) +} + +func (tf tFiles) size() (sum uint64) { + for _, t := range tf { + sum += t.size + } + return sum +} + +func (tf tFiles) searchMin(key iKey, icmp *iComparer) int { + return sort.Search(len(tf), func(i int) bool { + return icmp.Compare(tf[i].min, key) >= 0 + }) +} + +func (tf tFiles) searchMax(key iKey, icmp *iComparer) int { + return sort.Search(len(tf), func(i int) bool { + return icmp.Compare(tf[i].max, key) >= 0 + }) +} + +func (tf tFiles) isOverlaps(min, max []byte, disjSorted bool, icmp *iComparer) bool { + ucmp := icmp.cmp + + if !disjSorted { + // Need to check against all files + for _, t := range tf { + if !t.isAfter(min, ucmp) && !t.isBefore(max, ucmp) { + return true + } + } + return false + } + + var idx int + if len(min) > 0 { + // Find the earliest possible internal key for min + idx = tf.searchMax(newIKey(min, kMaxSeq, tSeek), icmp) + } + + if idx >= len(tf) { + // beginning of range is after all files, so no overlap + return false + } + return !tf[idx].isBefore(max, ucmp) +} + +func (tf tFiles) getOverlaps(min, max []byte, r *tFiles, disjSorted bool, ucmp comparer.BasicComparer) { + for i := 0; i < len(tf); { + t := tf[i] + i++ + if t.isAfter(min, ucmp) || t.isBefore(max, ucmp) { + continue + } + + *r = append(*r, t) + if !disjSorted { + // Level-0 files may overlap each other. So check if the newly + // added file has expanded the range. If so, restart search. + if min != nil && ucmp.Compare(t.min.ukey(), min) < 0 { + min = t.min.ukey() + *r = nil + i = 0 + } else if max != nil && ucmp.Compare(t.max.ukey(), max) > 0 { + max = t.max.ukey() + *r = nil + i = 0 + } + } + } + + return +} + +func (tf tFiles) getRange(icmp *iComparer) (min, max iKey) { + for i, t := range tf { + if i == 0 { + min, max = t.min, t.max + continue + } + if icmp.Compare(t.min, min) < 0 { + min = t.min + } + if icmp.Compare(t.max, max) > 0 { + max = t.max + } + } + + return +} + +func (tf tFiles) newIndexIterator(tops *tOps, icmp *iComparer, slice *util.Range, ro *opt.ReadOptions) iterator.IteratorIndexer { + if slice != nil { + var start, limit int + if slice.Start != nil { + start = tf.searchMax(iKey(slice.Start), icmp) + } + if slice.Limit != nil { + limit = tf.searchMin(iKey(slice.Limit), icmp) + } else { + limit = tf.Len() + } + tf = tf[start:limit] + } + return iterator.NewArrayIndexer(&tFilesArrayIndexer{ + tFiles: tf, + tops: tops, + icmp: icmp, + slice: slice, + ro: ro, + }) +} + +type tFilesArrayIndexer struct { + tFiles + tops *tOps + icmp *iComparer + slice *util.Range + ro *opt.ReadOptions +} + +func (a *tFilesArrayIndexer) Search(key []byte) int { + return a.searchMax(iKey(key), a.icmp) +} + +func (a *tFilesArrayIndexer) Get(i int) iterator.Iterator { + if i == 0 || i == a.Len()-1 { + return a.tops.newIterator(a.tFiles[i], a.slice, a.ro) + } + return a.tops.newIterator(a.tFiles[i], nil, a.ro) +} + +type tFilesSortByKey struct { + tFiles + icmp *iComparer +} + +func (x *tFilesSortByKey) Less(i, j int) bool { + return x.lessByKey(x.icmp, i, j) +} + +type tFilesSortByNum struct { + tFiles +} + +func (x *tFilesSortByNum) Less(i, j int) bool { + return x.lessByNum(i, j) +} + +// table operations +type tOps struct { + s *session + cache cache.Cache + cacheNS cache.Namespace +} + +func newTableOps(s *session, cacheCap int) *tOps { + c := cache.NewLRUCache(cacheCap) + ns := c.GetNamespace(0) + return &tOps{s, c, ns} +} + +func (t *tOps) create() (*tWriter, error) { + file := t.s.getTableFile(t.s.allocFileNum()) + fw, err := file.Create() + if err != nil { + return nil, err + } + return &tWriter{ + t: t, + file: file, + w: fw, + tw: table.NewWriter(fw, t.s.o), + }, nil +} + +func (t *tOps) createFrom(src iterator.Iterator) (f *tFile, n int, err error) { + w, err := t.create() + if err != nil { + return f, n, err + } + + defer func() { + if err != nil { + w.drop() + } + }() + + for src.Next() { + err = w.add(src.Key(), src.Value()) + if err != nil { + return + } + } + err = src.Error() + if err != nil { + return + } + + n = w.tw.EntriesLen() + f, err = w.finish() + return +} + +func (t *tOps) lookup(f *tFile) (c cache.Object, err error) { + num := f.file.Num() + c, ok := t.cacheNS.Get(num, func() (ok bool, value interface{}, charge int, fin cache.SetFin) { + var r storage.Reader + r, err = f.file.Open() + if err != nil { + return + } + + o := t.s.o + + var cacheNS cache.Namespace + if bc := o.GetBlockCache(); bc != nil { + cacheNS = bc.GetNamespace(num) + } + + ok = true + value = table.NewReader(r, int64(f.size), cacheNS, o) + charge = 1 + fin = func() { + r.Close() + } + return + }) + if !ok && err == nil { + err = ErrClosed + } + return +} + +func (t *tOps) get(f *tFile, key []byte, ro *opt.ReadOptions) (rkey, rvalue []byte, err error) { + c, err := t.lookup(f) + if err != nil { + return nil, nil, err + } + defer c.Release() + return c.Value().(*table.Reader).Find(key, ro) +} + +func (t *tOps) getApproximateOffset(f *tFile, key []byte) (offset uint64, err error) { + c, err := t.lookup(f) + if err != nil { + return + } + _offset, err := c.Value().(*table.Reader).GetApproximateOffset(key) + offset = uint64(_offset) + c.Release() + return +} + +func (t *tOps) newIterator(f *tFile, slice *util.Range, ro *opt.ReadOptions) iterator.Iterator { + c, err := t.lookup(f) + if err != nil { + return iterator.NewEmptyIterator(err) + } + iter := c.Value().(*table.Reader).NewIterator(slice, ro) + iter.SetReleaser(c) + return iter +} + +func (t *tOps) remove(f *tFile) { + num := f.file.Num() + t.cacheNS.Delete(num, func(exist bool) { + f.file.Remove() + if bc := t.s.o.GetBlockCache(); bc != nil { + bc.GetNamespace(num).Zap(false) + } + }) +} + +func (t *tOps) close() { + t.cache.Zap(true) +} + +type tWriter struct { + t *tOps + + file storage.File + w storage.Writer + tw *table.Writer + + notFirst bool + first, last []byte +} + +func (w *tWriter) add(key, value []byte) error { + if w.notFirst { + w.last = append(w.last[:0], key...) + } else { + w.first = append(w.first[:0], key...) + w.last = append(w.last[:0], key...) + w.notFirst = true + } + return w.tw.Append(key, value) +} + +func (w *tWriter) empty() bool { + return !w.notFirst +} + +func (w *tWriter) finish() (f *tFile, err error) { + err = w.tw.Close() + if err != nil { + return + } + err = w.w.Sync() + if err != nil { + return + } + w.w.Close() + f = newTFile(w.file, uint64(w.tw.BytesLen()), iKey(w.first), iKey(w.last)) + return +} + +func (w *tWriter) drop() { + w.w.Close() + w.file.Remove() + w.t.s.reuseFileNum(w.file.Num()) + w.w = nil + w.file = nil + w.tw = nil +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/block_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/block_test.go new file mode 100644 index 00000000..ca598f4f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/block_test.go @@ -0,0 +1,131 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package table + +import ( + "encoding/binary" + "fmt" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/testutil" + "github.com/syndtr/goleveldb/leveldb/util" +) + +func (b *block) TestNewIterator(slice *util.Range) iterator.Iterator { + return b.newIterator(slice, false, nil) +} + +var _ = testutil.Defer(func() { + Describe("Block", func() { + Build := func(kv *testutil.KeyValue, restartInterval int) *block { + // Building the block. + bw := &blockWriter{ + restartInterval: restartInterval, + scratch: make([]byte, 30), + } + kv.Iterate(func(i int, key, value []byte) { + bw.append(key, value) + }) + bw.finish() + + // Opening the block. + data := bw.buf.Bytes() + restartsLen := int(binary.LittleEndian.Uint32(data[len(data)-4:])) + return &block{ + cmp: comparer.DefaultComparer, + data: data, + restartsLen: restartsLen, + restartsOffset: len(data) - (restartsLen+1)*4, + } + } + + Describe("read test", func() { + for restartInterval := 1; restartInterval <= 5; restartInterval++ { + Describe(fmt.Sprintf("with restart interval of %d", restartInterval), func() { + kv := &testutil.KeyValue{} + Text := func() string { + return fmt.Sprintf("and %d keys", kv.Len()) + } + + Test := func() { + // Make block. + br := Build(kv, restartInterval) + // Do testing. + testutil.KeyValueTesting(nil, br, kv.Clone()) + } + + Describe(Text(), Test) + + kv.PutString("", "empty") + Describe(Text(), Test) + + kv.PutString("a1", "foo") + Describe(Text(), Test) + + kv.PutString("a2", "v") + Describe(Text(), Test) + + kv.PutString("a3qqwrkks", "hello") + Describe(Text(), Test) + + kv.PutString("a4", "bar") + Describe(Text(), Test) + + kv.PutString("a5111111", "v5") + kv.PutString("a6", "") + kv.PutString("a7", "v7") + kv.PutString("a8", "vvvvvvvvvvvvvvvvvvvvvv8") + kv.PutString("b", "v9") + kv.PutString("c9", "v9") + kv.PutString("c91", "v9") + kv.PutString("d0", "v9") + Describe(Text(), Test) + }) + } + }) + + Describe("out-of-bound slice test", func() { + kv := &testutil.KeyValue{} + kv.PutString("k1", "v1") + kv.PutString("k2", "v2") + kv.PutString("k3abcdefgg", "v3") + kv.PutString("k4", "v4") + kv.PutString("k5", "v5") + for restartInterval := 1; restartInterval <= 5; restartInterval++ { + Describe(fmt.Sprintf("with restart interval of %d", restartInterval), func() { + // Make block. + br := Build(kv, restartInterval) + + Test := func(r *util.Range) func(done Done) { + return func(done Done) { + iter := br.newIterator(r, false, nil) + Expect(iter.Error()).ShouldNot(HaveOccurred()) + + t := testutil.IteratorTesting{ + KeyValue: kv.Clone(), + Iter: iter, + } + + testutil.DoIteratorTesting(&t) + done <- true + } + } + + It("Should do iterations and seeks correctly #0", + Test(&util.Range{Start: []byte("k0"), Limit: []byte("k6")}), 2.0) + + It("Should do iterations and seeks correctly #1", + Test(&util.Range{Start: []byte(""), Limit: []byte("zzzzzzz")}), 2.0) + }) + } + }) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/reader.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/reader.go new file mode 100644 index 00000000..a6200884 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/reader.go @@ -0,0 +1,848 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package table + +import ( + "encoding/binary" + "errors" + "fmt" + "io" + "sort" + "strings" + + "code.google.com/p/snappy-go/snappy" + + "github.com/syndtr/goleveldb/leveldb/cache" + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/filter" + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var ( + ErrNotFound = util.ErrNotFound + ErrIterReleased = errors.New("leveldb/table: iterator released") +) + +func max(x, y int) int { + if x > y { + return x + } + return y +} + +type block struct { + cmp comparer.BasicComparer + data []byte + restartsLen int + restartsOffset int + // Whether checksum is verified and valid. + checksum bool +} + +func (b *block) seek(rstart, rlimit int, key []byte) (index, offset int, err error) { + n := b.restartsOffset + data := b.data + cmp := b.cmp + + index = sort.Search(b.restartsLen-rstart-(b.restartsLen-rlimit), func(i int) bool { + offset := int(binary.LittleEndian.Uint32(data[n+4*(rstart+i):])) + offset += 1 // shared always zero, since this is a restart point + v1, n1 := binary.Uvarint(data[offset:]) // key length + _, n2 := binary.Uvarint(data[offset+n1:]) // value length + m := offset + n1 + n2 + return cmp.Compare(data[m:m+int(v1)], key) > 0 + }) + rstart - 1 + if index < rstart { + // The smallest key is greater-than key sought. + index = rstart + } + offset = int(binary.LittleEndian.Uint32(data[n+4*index:])) + return +} + +func (b *block) restartIndex(rstart, rlimit, offset int) int { + n := b.restartsOffset + data := b.data + return sort.Search(b.restartsLen-rstart-(b.restartsLen-rlimit), func(i int) bool { + return int(binary.LittleEndian.Uint32(data[n+4*(rstart+i):])) > offset + }) + rstart - 1 +} + +func (b *block) restartOffset(index int) int { + return int(binary.LittleEndian.Uint32(b.data[b.restartsOffset+4*index:])) +} + +func (b *block) entry(offset int) (key, value []byte, nShared, n int, err error) { + if offset >= b.restartsOffset { + if offset != b.restartsOffset { + err = errors.New("leveldb/table: Reader: BlockEntry: invalid block (block entries offset not aligned)") + } + return + } + v0, n0 := binary.Uvarint(b.data[offset:]) // Shared prefix length + v1, n1 := binary.Uvarint(b.data[offset+n0:]) // Key length + v2, n2 := binary.Uvarint(b.data[offset+n0+n1:]) // Value length + m := n0 + n1 + n2 + n = m + int(v1) + int(v2) + if n0 <= 0 || n1 <= 0 || n2 <= 0 || offset+n > b.restartsOffset { + err = errors.New("leveldb/table: Reader: invalid block (block entries corrupted)") + return + } + key = b.data[offset+m : offset+m+int(v1)] + value = b.data[offset+m+int(v1) : offset+n] + nShared = int(v0) + return +} + +func (b *block) newIterator(slice *util.Range, inclLimit bool, cache util.Releaser) *blockIter { + bi := &blockIter{ + block: b, + cache: cache, + // Valid key should never be nil. + key: make([]byte, 0), + dir: dirSOI, + riStart: 0, + riLimit: b.restartsLen, + offsetStart: 0, + offsetRealStart: 0, + offsetLimit: b.restartsOffset, + } + if slice != nil { + if slice.Start != nil { + if bi.Seek(slice.Start) { + bi.riStart = b.restartIndex(bi.restartIndex, b.restartsLen, bi.prevOffset) + bi.offsetStart = b.restartOffset(bi.riStart) + bi.offsetRealStart = bi.prevOffset + } else { + bi.riStart = b.restartsLen + bi.offsetStart = b.restartsOffset + bi.offsetRealStart = b.restartsOffset + } + } + if slice.Limit != nil { + if bi.Seek(slice.Limit) && (!inclLimit || bi.Next()) { + bi.offsetLimit = bi.prevOffset + bi.riLimit = bi.restartIndex + 1 + } + } + bi.reset() + if bi.offsetStart > bi.offsetLimit { + bi.sErr(errors.New("leveldb/table: Reader: invalid slice range")) + } + } + return bi +} + +type dir int + +const ( + dirReleased dir = iota - 1 + dirSOI + dirEOI + dirBackward + dirForward +) + +type blockIter struct { + block *block + cache, releaser util.Releaser + key, value []byte + offset int + // Previous offset, only filled by Next. + prevOffset int + prevNode []int + prevKeys []byte + restartIndex int + // Iterator direction. + dir dir + // Restart index slice range. + riStart int + riLimit int + // Offset slice range. + offsetStart int + offsetRealStart int + offsetLimit int + // Error. + err error +} + +func (i *blockIter) sErr(err error) { + i.err = err + i.key = nil + i.value = nil + i.prevNode = nil + i.prevKeys = nil +} + +func (i *blockIter) reset() { + if i.dir == dirBackward { + i.prevNode = i.prevNode[:0] + i.prevKeys = i.prevKeys[:0] + } + i.restartIndex = i.riStart + i.offset = i.offsetStart + i.dir = dirSOI + i.key = i.key[:0] + i.value = nil +} + +func (i *blockIter) isFirst() bool { + switch i.dir { + case dirForward: + return i.prevOffset == i.offsetRealStart + case dirBackward: + return len(i.prevNode) == 1 && i.restartIndex == i.riStart + } + return false +} + +func (i *blockIter) isLast() bool { + switch i.dir { + case dirForward, dirBackward: + return i.offset == i.offsetLimit + } + return false +} + +func (i *blockIter) First() bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + if i.dir == dirBackward { + i.prevNode = i.prevNode[:0] + i.prevKeys = i.prevKeys[:0] + } + i.dir = dirSOI + return i.Next() +} + +func (i *blockIter) Last() bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + if i.dir == dirBackward { + i.prevNode = i.prevNode[:0] + i.prevKeys = i.prevKeys[:0] + } + i.dir = dirEOI + return i.Prev() +} + +func (i *blockIter) Seek(key []byte) bool { + if i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + ri, offset, err := i.block.seek(i.riStart, i.riLimit, key) + if err != nil { + i.sErr(err) + return false + } + i.restartIndex = ri + i.offset = max(i.offsetStart, offset) + if i.dir == dirSOI || i.dir == dirEOI { + i.dir = dirForward + } + for i.Next() { + if i.block.cmp.Compare(i.key, key) >= 0 { + return true + } + } + return false +} + +func (i *blockIter) Next() bool { + if i.dir == dirEOI || i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + if i.dir == dirSOI { + i.restartIndex = i.riStart + i.offset = i.offsetStart + } else if i.dir == dirBackward { + i.prevNode = i.prevNode[:0] + i.prevKeys = i.prevKeys[:0] + } + for i.offset < i.offsetRealStart { + key, value, nShared, n, err := i.block.entry(i.offset) + if err != nil { + i.sErr(err) + return false + } + if n == 0 { + i.dir = dirEOI + return false + } + i.key = append(i.key[:nShared], key...) + i.value = value + i.offset += n + } + if i.offset >= i.offsetLimit { + i.dir = dirEOI + if i.offset != i.offsetLimit { + i.sErr(errors.New("leveldb/table: Reader: Next: invalid block (block entries offset not aligned)")) + } + return false + } + key, value, nShared, n, err := i.block.entry(i.offset) + if err != nil { + i.sErr(err) + return false + } + if n == 0 { + i.dir = dirEOI + return false + } + i.key = append(i.key[:nShared], key...) + i.value = value + i.prevOffset = i.offset + i.offset += n + i.dir = dirForward + return true +} + +func (i *blockIter) Prev() bool { + if i.dir == dirSOI || i.err != nil { + return false + } else if i.dir == dirReleased { + i.err = ErrIterReleased + return false + } + + var ri int + if i.dir == dirForward { + // Change direction. + i.offset = i.prevOffset + if i.offset == i.offsetRealStart { + i.dir = dirSOI + return false + } + ri = i.block.restartIndex(i.restartIndex, i.riLimit, i.offset) + i.dir = dirBackward + } else if i.dir == dirEOI { + // At the end of iterator. + i.restartIndex = i.riLimit + i.offset = i.offsetLimit + if i.offset == i.offsetRealStart { + i.dir = dirSOI + return false + } + ri = i.riLimit - 1 + i.dir = dirBackward + } else if len(i.prevNode) == 1 { + // This is the end of a restart range. + i.offset = i.prevNode[0] + i.prevNode = i.prevNode[:0] + if i.restartIndex == i.riStart { + i.dir = dirSOI + return false + } + i.restartIndex-- + ri = i.restartIndex + } else { + // In the middle of restart range, get from cache. + n := len(i.prevNode) - 3 + node := i.prevNode[n:] + i.prevNode = i.prevNode[:n] + // Get the key. + ko := node[0] + i.key = append(i.key[:0], i.prevKeys[ko:]...) + i.prevKeys = i.prevKeys[:ko] + // Get the value. + vo := node[1] + vl := vo + node[2] + i.value = i.block.data[vo:vl] + i.offset = vl + return true + } + // Build entries cache. + i.key = i.key[:0] + i.value = nil + offset := i.block.restartOffset(ri) + if offset == i.offset { + ri -= 1 + if ri < 0 { + i.dir = dirSOI + return false + } + offset = i.block.restartOffset(ri) + } + i.prevNode = append(i.prevNode, offset) + for { + key, value, nShared, n, err := i.block.entry(offset) + if err != nil { + i.sErr(err) + return false + } + if offset >= i.offsetRealStart { + if i.value != nil { + // Appends 3 variables: + // 1. Previous keys offset + // 2. Value offset in the data block + // 3. Value length + i.prevNode = append(i.prevNode, len(i.prevKeys), offset-len(i.value), len(i.value)) + i.prevKeys = append(i.prevKeys, i.key...) + } + i.value = value + } + i.key = append(i.key[:nShared], key...) + offset += n + // Stop if target offset reached. + if offset >= i.offset { + if offset != i.offset { + i.sErr(errors.New("leveldb/table: Reader: Prev: invalid block (block entries offset not aligned)")) + return false + } + + break + } + } + i.restartIndex = ri + i.offset = offset + return true +} + +func (i *blockIter) Key() []byte { + if i.err != nil || i.dir <= dirEOI { + return nil + } + return i.key +} + +func (i *blockIter) Value() []byte { + if i.err != nil || i.dir <= dirEOI { + return nil + } + return i.value +} + +func (i *blockIter) Release() { + i.prevNode = nil + i.prevKeys = nil + i.key = nil + i.value = nil + i.dir = dirReleased + if i.cache != nil { + i.cache.Release() + i.cache = nil + } + if i.releaser != nil { + i.releaser.Release() + i.releaser = nil + } +} + +func (i *blockIter) SetReleaser(releaser util.Releaser) { + if i.dir > dirReleased { + i.releaser = releaser + } +} + +func (i *blockIter) Valid() bool { + return i.err == nil && (i.dir == dirBackward || i.dir == dirForward) +} + +func (i *blockIter) Error() error { + return i.err +} + +type filterBlock struct { + filter filter.Filter + data []byte + oOffset int + baseLg uint + filtersNum int +} + +func (b *filterBlock) contains(offset uint64, key []byte) bool { + i := int(offset >> b.baseLg) + if i < b.filtersNum { + o := b.data[b.oOffset+i*4:] + n := int(binary.LittleEndian.Uint32(o)) + m := int(binary.LittleEndian.Uint32(o[4:])) + if n < m && m <= b.oOffset { + return b.filter.Contains(b.data[n:m], key) + } else if n == m { + return false + } + } + return true +} + +type indexIter struct { + blockIter + tableReader *Reader + slice *util.Range + // Options + checksum bool + fillCache bool +} + +func (i *indexIter) Get() iterator.Iterator { + value := i.Value() + if value == nil { + return nil + } + dataBH, n := decodeBlockHandle(value) + if n == 0 { + return iterator.NewEmptyIterator(errors.New("leveldb/table: Reader: invalid table (bad data block handle)")) + } + var slice *util.Range + if i.slice != nil && (i.blockIter.isFirst() || i.blockIter.isLast()) { + slice = i.slice + } + return i.tableReader.getDataIter(dataBH, slice, i.checksum, i.fillCache) +} + +// Reader is a table reader. +type Reader struct { + reader io.ReaderAt + cache cache.Namespace + err error + // Options + cmp comparer.Comparer + filter filter.Filter + checksum bool + strictIter bool + + dataEnd int64 + indexBlock *block + filterBlock *filterBlock +} + +func verifyChecksum(data []byte) bool { + n := len(data) - 4 + checksum0 := binary.LittleEndian.Uint32(data[n:]) + checksum1 := util.NewCRC(data[:n]).Value() + return checksum0 == checksum1 +} + +func (r *Reader) readRawBlock(bh blockHandle, checksum bool) ([]byte, error) { + data := make([]byte, bh.length+blockTrailerLen) + if _, err := r.reader.ReadAt(data, int64(bh.offset)); err != nil && err != io.EOF { + return nil, err + } + if checksum || r.checksum { + if !verifyChecksum(data) { + return nil, errors.New("leveldb/table: Reader: invalid block (checksum mismatch)") + } + } + switch data[bh.length] { + case blockTypeNoCompression: + data = data[:bh.length] + case blockTypeSnappyCompression: + var err error + data, err = snappy.Decode(nil, data[:bh.length]) + if err != nil { + return nil, err + } + default: + return nil, fmt.Errorf("leveldb/table: Reader: unknown block compression type: %d", data[bh.length]) + } + return data, nil +} + +func (r *Reader) readBlock(bh blockHandle, checksum bool) (*block, error) { + data, err := r.readRawBlock(bh, checksum) + if err != nil { + return nil, err + } + restartsLen := int(binary.LittleEndian.Uint32(data[len(data)-4:])) + b := &block{ + cmp: r.cmp, + data: data, + restartsLen: restartsLen, + restartsOffset: len(data) - (restartsLen+1)*4, + checksum: checksum || r.checksum, + } + return b, nil +} + +func (r *Reader) readFilterBlock(bh blockHandle, filter filter.Filter) (*filterBlock, error) { + data, err := r.readRawBlock(bh, true) + if err != nil { + return nil, err + } + n := len(data) + if n < 5 { + return nil, errors.New("leveldb/table: Reader: invalid filter block (too short)") + } + m := n - 5 + oOffset := int(binary.LittleEndian.Uint32(data[m:])) + if oOffset > m { + return nil, errors.New("leveldb/table: Reader: invalid filter block (invalid offset)") + } + b := &filterBlock{ + filter: filter, + data: data, + oOffset: oOffset, + baseLg: uint(data[n-1]), + filtersNum: (m - oOffset) / 4, + } + return b, nil +} + +func (r *Reader) getDataIter(dataBH blockHandle, slice *util.Range, checksum, fillCache bool) iterator.Iterator { + if r.cache != nil { + // Get/set block cache. + var err error + cache, ok := r.cache.Get(dataBH.offset, func() (ok bool, value interface{}, charge int, fin cache.SetFin) { + if !fillCache { + return + } + var dataBlock *block + dataBlock, err = r.readBlock(dataBH, checksum) + if err == nil { + ok = true + value = dataBlock + charge = int(dataBH.length) + } + return + }) + if err != nil { + return iterator.NewEmptyIterator(err) + } + if ok { + dataBlock := cache.Value().(*block) + if !dataBlock.checksum && (r.checksum || checksum) { + if !verifyChecksum(dataBlock.data) { + return iterator.NewEmptyIterator(errors.New("leveldb/table: Reader: invalid block (checksum mismatch)")) + } + dataBlock.checksum = true + } + iter := dataBlock.newIterator(slice, false, cache) + return iter + } + } + dataBlock, err := r.readBlock(dataBH, checksum) + if err != nil { + return iterator.NewEmptyIterator(err) + } + iter := dataBlock.newIterator(slice, false, nil) + return iter +} + +// NewIterator creates an iterator from the table. +// +// Slice allows slicing the iterator to only contains keys in the given +// range. A nil Range.Start is treated as a key before all keys in the +// table. And a nil Range.Limit is treated as a key after all keys in +// the table. +// +// The returned iterator is not goroutine-safe and should be released +// when not used. +// +// Also read Iterator documentation of the leveldb/iterator package. + +func (r *Reader) NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator { + if r.err != nil { + return iterator.NewEmptyIterator(r.err) + } + + index := &indexIter{ + blockIter: *r.indexBlock.newIterator(slice, true, nil), + tableReader: r, + slice: slice, + checksum: ro.GetStrict(opt.StrictBlockChecksum), + fillCache: !ro.GetDontFillCache(), + } + return iterator.NewIndexedIterator(index, r.strictIter || ro.GetStrict(opt.StrictIterator), false) +} + +// Find finds key/value pair whose key is greater than or equal to the +// given key. It returns ErrNotFound if the table doesn't contain +// such pair. +// +// The caller should not modify the contents of the returned slice, but +// it is safe to modify the contents of the argument after Find returns. +func (r *Reader) Find(key []byte, ro *opt.ReadOptions) (rkey, value []byte, err error) { + if r.err != nil { + err = r.err + return + } + + index := r.indexBlock.newIterator(nil, true, nil) + defer index.Release() + if !index.Seek(key) { + err = index.Error() + if err == nil { + err = ErrNotFound + } + return + } + dataBH, n := decodeBlockHandle(index.Value()) + if n == 0 { + err = errors.New("leveldb/table: Reader: invalid table (bad data block handle)") + return + } + if r.filterBlock != nil && !r.filterBlock.contains(dataBH.offset, key) { + err = ErrNotFound + return + } + data := r.getDataIter(dataBH, nil, ro.GetStrict(opt.StrictBlockChecksum), !ro.GetDontFillCache()) + defer data.Release() + if !data.Seek(key) { + err = data.Error() + if err == nil { + err = ErrNotFound + } + return + } + rkey = data.Key() + value = data.Value() + return +} + +// Get gets the value for the given key. It returns errors.ErrNotFound +// if the table does not contain the key. +// +// The caller should not modify the contents of the returned slice, but +// it is safe to modify the contents of the argument after Get returns. +func (r *Reader) Get(key []byte, ro *opt.ReadOptions) (value []byte, err error) { + if r.err != nil { + err = r.err + return + } + + rkey, value, err := r.Find(key, ro) + if err == nil && r.cmp.Compare(rkey, key) != 0 { + value = nil + err = ErrNotFound + } + return +} + +// GetApproximateOffset returns approximate offset for the given key. +// +// It is safe to modify the contents of the argument after Get returns. +func (r *Reader) GetApproximateOffset(key []byte) (offset int64, err error) { + if r.err != nil { + err = r.err + return + } + + index := r.indexBlock.newIterator(nil, true, nil) + defer index.Release() + if index.Seek(key) { + dataBH, n := decodeBlockHandle(index.Value()) + if n == 0 { + err = errors.New("leveldb/table: Reader: invalid table (bad data block handle)") + return + } + offset = int64(dataBH.offset) + return + } + err = index.Error() + if err == nil { + offset = r.dataEnd + } + return +} + +// NewReader creates a new initialized table reader for the file. +// The cache is optional and can be nil. +func NewReader(f io.ReaderAt, size int64, cache cache.Namespace, o *opt.Options) *Reader { + r := &Reader{ + reader: f, + cache: cache, + cmp: o.GetComparer(), + checksum: o.GetStrict(opt.StrictBlockChecksum), + strictIter: o.GetStrict(opt.StrictIterator), + } + if f == nil { + r.err = errors.New("leveldb/table: Reader: nil file") + return r + } + if size < footerLen { + r.err = errors.New("leveldb/table: Reader: invalid table (file size is too small)") + return r + } + var footer [footerLen]byte + if _, err := r.reader.ReadAt(footer[:], size-footerLen); err != nil && err != io.EOF { + r.err = fmt.Errorf("leveldb/table: Reader: invalid table (could not read footer): %v", err) + } + if string(footer[footerLen-len(magic):footerLen]) != magic { + r.err = errors.New("leveldb/table: Reader: invalid table (bad magic number)") + return r + } + // Decode the metaindex block handle. + metaBH, n := decodeBlockHandle(footer[:]) + if n == 0 { + r.err = errors.New("leveldb/table: Reader: invalid table (bad metaindex block handle)") + return r + } + // Decode the index block handle. + indexBH, n := decodeBlockHandle(footer[n:]) + if n == 0 { + r.err = errors.New("leveldb/table: Reader: invalid table (bad index block handle)") + return r + } + // Read index block. + r.indexBlock, r.err = r.readBlock(indexBH, true) + if r.err != nil { + return r + } + // Read metaindex block. + metaBlock, err := r.readBlock(metaBH, true) + if err != nil { + r.err = err + return r + } + // Set data end. + r.dataEnd = int64(metaBH.offset) + metaIter := metaBlock.newIterator(nil, false, nil) + for metaIter.Next() { + key := string(metaIter.Key()) + if !strings.HasPrefix(key, "filter.") { + continue + } + fn := key[7:] + var filter filter.Filter + if f0 := o.GetFilter(); f0 != nil && f0.Name() == fn { + filter = f0 + } else { + for _, f0 := range o.GetAltFilters() { + if f0.Name() == fn { + filter = f0 + break + } + } + } + if filter != nil { + filterBH, n := decodeBlockHandle(metaIter.Value()) + if n == 0 { + continue + } + // Update data end. + r.dataEnd = int64(filterBH.offset) + filterBlock, err := r.readFilterBlock(filterBH, filter) + if err != nil { + continue + } + r.filterBlock = filterBlock + break + } + } + metaIter.Release() + return r +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table.go new file mode 100644 index 00000000..c0ac70d9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table.go @@ -0,0 +1,177 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package table allows read and write sorted key/value. +package table + +import ( + "encoding/binary" +) + +/* +Table: + +Table is consist of one or more data blocks, an optional filter block +a metaindex block, an index block and a table footer. Metaindex block +is a special block used to keep parameters of the table, such as filter +block name and its block handle. Index block is a special block used to +keep record of data blocks offset and length, index block use one as +restart interval. The key used by index block are the last key of preceding +block, shorter separator of adjacent blocks or shorter successor of the +last key of the last block. Filter block is an optional block contains +sequence of filter data generated by a filter generator. + +Table data structure: + + optional + / + +--------------+--------------+--------------+------+-------+-----------------+-------------+--------+ + | data block 1 | ... | data block n | filter block | metaindex block | index block | footer | + +--------------+--------------+--------------+--------------+-----------------+-------------+--------+ + + Each block followed by a 5-bytes trailer contains compression type and checksum. + +Table block trailer: + + +---------------------------+-------------------+ + | compression type (1-byte) | checksum (4-byte) | + +---------------------------+-------------------+ + + The checksum is a CRC-32 computed using Castagnoli's polynomial. Compression + type also included in the checksum. + +Table footer: + + +------------------- 40-bytes -------------------+ + / \ + +------------------------+--------------------+------+-----------------+ + | metaindex block handle / index block handle / ---- | magic (8-bytes) | + +------------------------+--------------------+------+-----------------+ + + The magic are first 64-bit of SHA-1 sum of "http://code.google.com/p/leveldb/". + +NOTE: All fixed-length integer are little-endian. +*/ + +/* +Block: + +Block is consist of one or more key/value entries and a block trailer. +Block entry shares key prefix with its preceding key until a restart +point reached. A block should contains at least one restart point. +First restart point are always zero. + +Block data structure: + + + restart point + restart point (depends on restart interval) + / / + +---------------+---------------+---------------+---------------+---------+ + | block entry 1 | block entry 2 | ... | block entry n | trailer | + +---------------+---------------+---------------+---------------+---------+ + +Key/value entry: + + +---- key len ----+ + / \ + +-------+---------+-----------+---------+--------------------+--------------+----------------+ + | shared (varint) | not shared (varint) | value len (varint) | key (varlen) | value (varlen) | + +-----------------+---------------------+--------------------+--------------+----------------+ + + Block entry shares key prefix with its preceding key: + Conditions: + restart_interval=2 + entry one : key=deck,value=v1 + entry two : key=dock,value=v2 + entry three: key=duck,value=v3 + The entries will be encoded as follow: + + + restart point (offset=0) + restart point (offset=16) + / / + +-----+-----+-----+----------+--------+-----+-----+-----+---------+--------+-----+-----+-----+----------+--------+ + | 0 | 4 | 2 | "deck" | "v1" | 1 | 3 | 2 | "ock" | "v2" | 0 | 4 | 2 | "duck" | "v3" | + +-----+-----+-----+----------+--------+-----+-----+-----+---------+--------+-----+-----+-----+----------+--------+ + \ / \ / \ / + +----------- entry one -----------+ +----------- entry two ----------+ +---------- entry three ----------+ + + The block trailer will contains two restart points: + + +------------+-----------+--------+ + | 0 | 16 | 2 | + +------------+-----------+---+----+ + \ / \ + +-- restart points --+ + restart points length + +Block trailer: + + +-- 4-bytes --+ + / \ + +-----------------+-----------------+-----------------+------------------------------+ + | restart point 1 | .... | restart point n | restart points len (4-bytes) | + +-----------------+-----------------+-----------------+------------------------------+ + + +NOTE: All fixed-length integer are little-endian. +*/ + +/* +Filter block: + +Filter block consist of one or more filter data and a filter block trailer. +The trailer contains filter data offsets, a trailer offset and a 1-byte base Lg. + +Filter block data structure: + + + offset 1 + offset 2 + offset n + trailer offset + / / / / + +---------------+---------------+---------------+---------+ + | filter data 1 | ... | filter data n | trailer | + +---------------+---------------+---------------+---------+ + +Filter block trailer: + + +- 4-bytes -+ + / \ + +---------------+---------------+---------------+-------------------------+------------------+ + | offset 1 | .... | offset n | filter offset (4-bytes) | base Lg (1-byte) | + +-------------- +---------------+---------------+-------------------------+------------------+ + + +NOTE: All fixed-length integer are little-endian. +*/ + +const ( + blockTrailerLen = 5 + footerLen = 48 + + magic = "\x57\xfb\x80\x8b\x24\x75\x47\xdb" + + // The block type gives the per-block compression format. + // These constants are part of the file format and should not be changed. + blockTypeNoCompression = 0 + blockTypeSnappyCompression = 1 + + // Generate new filter every 2KB of data + filterBaseLg = 11 + filterBase = 1 << filterBaseLg +) + +type blockHandle struct { + offset, length uint64 +} + +func decodeBlockHandle(src []byte) (blockHandle, int) { + offset, n := binary.Uvarint(src) + length, m := binary.Uvarint(src[n:]) + if n == 0 || m == 0 { + return blockHandle{}, 0 + } + return blockHandle{offset, length}, n + m +} + +func encodeBlockHandle(dst []byte, b blockHandle) int { + n := binary.PutUvarint(dst, b.offset) + m := binary.PutUvarint(dst[n:], b.length) + return n + m +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table_suite_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table_suite_test.go new file mode 100644 index 00000000..bc9eb83c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table_suite_test.go @@ -0,0 +1,17 @@ +package table + +import ( + "testing" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/testutil" +) + +func TestTable(t *testing.T) { + testutil.RunDefer() + + RegisterFailHandler(Fail) + RunSpecs(t, "Table Suite") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table_test.go new file mode 100644 index 00000000..c682f55f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/table_test.go @@ -0,0 +1,119 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package table + +import ( + "bytes" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/testutil" + "github.com/syndtr/goleveldb/leveldb/util" +) + +type tableWrapper struct { + *Reader +} + +func (t tableWrapper) TestFind(key []byte) (rkey, rvalue []byte, err error) { + return t.Reader.Find(key, nil) +} + +func (t tableWrapper) TestGet(key []byte) (value []byte, err error) { + return t.Reader.Get(key, nil) +} + +func (t tableWrapper) TestNewIterator(slice *util.Range) iterator.Iterator { + return t.Reader.NewIterator(slice, nil) +} + +var _ = testutil.Defer(func() { + Describe("Table", func() { + Describe("approximate offset test", func() { + var ( + buf = &bytes.Buffer{} + o = &opt.Options{ + BlockSize: 1024, + Compression: opt.NoCompression, + } + ) + + // Building the table. + tw := NewWriter(buf, o) + tw.Append([]byte("k01"), []byte("hello")) + tw.Append([]byte("k02"), []byte("hello2")) + tw.Append([]byte("k03"), bytes.Repeat([]byte{'x'}, 10000)) + tw.Append([]byte("k04"), bytes.Repeat([]byte{'x'}, 200000)) + tw.Append([]byte("k05"), bytes.Repeat([]byte{'x'}, 300000)) + tw.Append([]byte("k06"), []byte("hello3")) + tw.Append([]byte("k07"), bytes.Repeat([]byte{'x'}, 100000)) + err := tw.Close() + + It("Should be able to approximate offset of a key correctly", func() { + Expect(err).ShouldNot(HaveOccurred()) + + tr := NewReader(bytes.NewReader(buf.Bytes()), int64(buf.Len()), nil, o) + CheckOffset := func(key string, expect, threshold int) { + offset, err := tr.GetApproximateOffset([]byte(key)) + Expect(err).ShouldNot(HaveOccurred()) + Expect(offset).Should(BeNumerically("~", expect, threshold), "Offset of key %q", key) + } + + CheckOffset("k0", 0, 0) + CheckOffset("k01a", 0, 0) + CheckOffset("k02", 0, 0) + CheckOffset("k03", 0, 0) + CheckOffset("k04", 10000, 1000) + CheckOffset("k04a", 210000, 1000) + CheckOffset("k05", 210000, 1000) + CheckOffset("k06", 510000, 1000) + CheckOffset("k07", 510000, 1000) + CheckOffset("xyz", 610000, 2000) + }) + }) + + Describe("read test", func() { + Build := func(kv testutil.KeyValue) testutil.DB { + o := &opt.Options{ + BlockSize: 512, + BlockRestartInterval: 3, + } + buf := &bytes.Buffer{} + + // Building the table. + tw := NewWriter(buf, o) + kv.Iterate(func(i int, key, value []byte) { + tw.Append(key, value) + }) + tw.Close() + + // Opening the table. + tr := NewReader(bytes.NewReader(buf.Bytes()), int64(buf.Len()), nil, o) + return tableWrapper{tr} + } + Test := func(kv *testutil.KeyValue, body func(r *Reader)) func() { + return func() { + db := Build(*kv) + if body != nil { + body(db.(tableWrapper).Reader) + } + testutil.KeyValueTesting(nil, db, *kv) + } + } + + testutil.AllKeyValueTesting(nil, Build) + Describe("with one key per block", Test(testutil.KeyValue_Generate(nil, 9, 1, 10, 512, 512), func(r *Reader) { + It("should have correct blocks number", func() { + Expect(r.indexBlock.restartsLen).Should(Equal(9)) + }) + })) + }) + }) +}) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/writer.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/writer.go new file mode 100644 index 00000000..4e19e93a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/table/writer.go @@ -0,0 +1,379 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package table + +import ( + "encoding/binary" + "errors" + "fmt" + "io" + + "code.google.com/p/snappy-go/snappy" + + "github.com/syndtr/goleveldb/leveldb/comparer" + "github.com/syndtr/goleveldb/leveldb/filter" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/util" +) + +func sharedPrefixLen(a, b []byte) int { + i, n := 0, len(a) + if n > len(b) { + n = len(b) + } + for i < n && a[i] == b[i] { + i++ + } + return i +} + +type blockWriter struct { + restartInterval int + buf util.Buffer + nEntries int + prevKey []byte + restarts []uint32 + scratch []byte +} + +func (w *blockWriter) append(key, value []byte) { + nShared := 0 + if w.nEntries%w.restartInterval == 0 { + w.restarts = append(w.restarts, uint32(w.buf.Len())) + } else { + nShared = sharedPrefixLen(w.prevKey, key) + } + n := binary.PutUvarint(w.scratch[0:], uint64(nShared)) + n += binary.PutUvarint(w.scratch[n:], uint64(len(key)-nShared)) + n += binary.PutUvarint(w.scratch[n:], uint64(len(value))) + w.buf.Write(w.scratch[:n]) + w.buf.Write(key[nShared:]) + w.buf.Write(value) + w.prevKey = append(w.prevKey[:0], key...) + w.nEntries++ +} + +func (w *blockWriter) finish() { + // Write restarts entry. + if w.nEntries == 0 { + // Must have at least one restart entry. + w.restarts = append(w.restarts, 0) + } + w.restarts = append(w.restarts, uint32(len(w.restarts))) + for _, x := range w.restarts { + buf4 := w.buf.Alloc(4) + binary.LittleEndian.PutUint32(buf4, x) + } +} + +func (w *blockWriter) reset() { + w.buf.Reset() + w.nEntries = 0 + w.restarts = w.restarts[:0] +} + +func (w *blockWriter) bytesLen() int { + restartsLen := len(w.restarts) + if restartsLen == 0 { + restartsLen = 1 + } + return w.buf.Len() + 4*restartsLen + 4 +} + +type filterWriter struct { + generator filter.FilterGenerator + buf util.Buffer + nKeys int + offsets []uint32 +} + +func (w *filterWriter) add(key []byte) { + if w.generator == nil { + return + } + w.generator.Add(key) + w.nKeys++ +} + +func (w *filterWriter) flush(offset uint64) { + if w.generator == nil { + return + } + for x := int(offset / filterBase); x > len(w.offsets); { + w.generate() + } +} + +func (w *filterWriter) finish() { + if w.generator == nil { + return + } + // Generate last keys. + + if w.nKeys > 0 { + w.generate() + } + w.offsets = append(w.offsets, uint32(w.buf.Len())) + for _, x := range w.offsets { + buf4 := w.buf.Alloc(4) + binary.LittleEndian.PutUint32(buf4, x) + } + w.buf.WriteByte(filterBaseLg) +} + +func (w *filterWriter) generate() { + // Record offset. + w.offsets = append(w.offsets, uint32(w.buf.Len())) + // Generate filters. + if w.nKeys > 0 { + w.generator.Generate(&w.buf) + w.nKeys = 0 + } +} + +// Writer is a table writer. +type Writer struct { + writer io.Writer + err error + // Options + cmp comparer.Comparer + filter filter.Filter + compression opt.Compression + blockSize int + + dataBlock blockWriter + indexBlock blockWriter + filterBlock filterWriter + pendingBH blockHandle + offset uint64 + nEntries int + // Scratch allocated enough for 5 uvarint. Block writer should not use + // first 20-bytes since it will be used to encode block handle, which + // then passed to the block writer itself. + scratch [50]byte + comparerScratch []byte + compressionScratch []byte +} + +func (w *Writer) writeBlock(buf *util.Buffer, compression opt.Compression) (bh blockHandle, err error) { + // Compress the buffer if necessary. + var b []byte + if compression == opt.SnappyCompression { + // Allocate scratch enough for compression and block trailer. + if n := snappy.MaxEncodedLen(buf.Len()) + blockTrailerLen; len(w.compressionScratch) < n { + w.compressionScratch = make([]byte, n) + } + var compressed []byte + compressed, err = snappy.Encode(w.compressionScratch, buf.Bytes()) + if err != nil { + return + } + n := len(compressed) + b = compressed[:n+blockTrailerLen] + b[n] = blockTypeSnappyCompression + } else { + tmp := buf.Alloc(blockTrailerLen) + tmp[0] = blockTypeNoCompression + b = buf.Bytes() + } + + // Calculate the checksum. + n := len(b) - 4 + checksum := util.NewCRC(b[:n]).Value() + binary.LittleEndian.PutUint32(b[n:], checksum) + + // Write the buffer to the file. + _, err = w.writer.Write(b) + if err != nil { + return + } + bh = blockHandle{w.offset, uint64(len(b) - blockTrailerLen)} + w.offset += uint64(len(b)) + return +} + +func (w *Writer) flushPendingBH(key []byte) { + if w.pendingBH.length == 0 { + return + } + var separator []byte + if len(key) == 0 { + separator = w.cmp.Successor(w.comparerScratch[:0], w.dataBlock.prevKey) + } else { + separator = w.cmp.Separator(w.comparerScratch[:0], w.dataBlock.prevKey, key) + } + if separator == nil { + separator = w.dataBlock.prevKey + } else { + w.comparerScratch = separator + } + n := encodeBlockHandle(w.scratch[:20], w.pendingBH) + // Append the block handle to the index block. + w.indexBlock.append(separator, w.scratch[:n]) + // Reset prev key of the data block. + w.dataBlock.prevKey = w.dataBlock.prevKey[:0] + // Clear pending block handle. + w.pendingBH = blockHandle{} +} + +func (w *Writer) finishBlock() error { + w.dataBlock.finish() + bh, err := w.writeBlock(&w.dataBlock.buf, w.compression) + if err != nil { + return err + } + w.pendingBH = bh + // Reset the data block. + w.dataBlock.reset() + // Flush the filter block. + w.filterBlock.flush(w.offset) + return nil +} + +// Append appends key/value pair to the table. The keys passed must +// be in increasing order. +// +// It is safe to modify the contents of the arguments after Append returns. +func (w *Writer) Append(key, value []byte) error { + if w.err != nil { + return w.err + } + if w.nEntries > 0 && w.cmp.Compare(w.dataBlock.prevKey, key) >= 0 { + w.err = fmt.Errorf("leveldb/table: Writer: keys are not in increasing order: %q, %q", w.dataBlock.prevKey, key) + return w.err + } + + w.flushPendingBH(key) + // Append key/value pair to the data block. + w.dataBlock.append(key, value) + // Add key to the filter block. + w.filterBlock.add(key) + + // Finish the data block if block size target reached. + if w.dataBlock.bytesLen() >= w.blockSize { + if err := w.finishBlock(); err != nil { + w.err = err + return w.err + } + } + w.nEntries++ + return nil +} + +// BlocksLen returns number of blocks written so far. +func (w *Writer) BlocksLen() int { + n := w.indexBlock.nEntries + if w.pendingBH.length > 0 { + // Includes the pending block. + n++ + } + return n +} + +// EntriesLen returns number of entries added so far. +func (w *Writer) EntriesLen() int { + return w.nEntries +} + +// BytesLen returns number of bytes written so far. +func (w *Writer) BytesLen() int { + return int(w.offset) +} + +// Close will finalize the table. Calling Append is not possible +// after Close, but calling BlocksLen, EntriesLen and BytesLen +// is still possible. +func (w *Writer) Close() error { + if w.err != nil { + return w.err + } + + // Write the last data block. Or empty data block if there + // aren't any data blocks at all. + if w.dataBlock.nEntries > 0 || w.nEntries == 0 { + if err := w.finishBlock(); err != nil { + w.err = err + return w.err + } + } + w.flushPendingBH(nil) + + // Write the filter block. + var filterBH blockHandle + w.filterBlock.finish() + if buf := &w.filterBlock.buf; buf.Len() > 0 { + filterBH, w.err = w.writeBlock(buf, opt.NoCompression) + if w.err != nil { + return w.err + } + } + + // Write the metaindex block. + if filterBH.length > 0 { + key := []byte("filter." + w.filter.Name()) + n := encodeBlockHandle(w.scratch[:20], filterBH) + w.dataBlock.append(key, w.scratch[:n]) + } + w.dataBlock.finish() + metaindexBH, err := w.writeBlock(&w.dataBlock.buf, w.compression) + if err != nil { + w.err = err + return w.err + } + + // Write the index block. + w.indexBlock.finish() + indexBH, err := w.writeBlock(&w.indexBlock.buf, w.compression) + if err != nil { + w.err = err + return w.err + } + + // Write the table footer. + footer := w.scratch[:footerLen] + for i := range footer { + footer[i] = 0 + } + n := encodeBlockHandle(footer, metaindexBH) + encodeBlockHandle(footer[n:], indexBH) + copy(footer[footerLen-len(magic):], magic) + if _, err := w.writer.Write(footer); err != nil { + w.err = err + return w.err + } + w.offset += footerLen + + w.err = errors.New("leveldb/table: writer is closed") + return nil +} + +// NewWriter creates a new initialized table writer for the file. +// +// Table writer is not goroutine-safe. +func NewWriter(f io.Writer, o *opt.Options) *Writer { + w := &Writer{ + writer: f, + cmp: o.GetComparer(), + filter: o.GetFilter(), + compression: o.GetCompression(), + blockSize: o.GetBlockSize(), + comparerScratch: make([]byte, 0), + } + // data block + w.dataBlock.restartInterval = o.GetBlockRestartInterval() + // The first 20-bytes are used for encoding block handle. + w.dataBlock.scratch = w.scratch[20:] + // index block + w.indexBlock.restartInterval = 1 + w.indexBlock.scratch = w.scratch[20:] + // filter block + if w.filter != nil { + w.filterBlock.generator = w.filter.NewGenerator() + w.filterBlock.flush(0) + } + return w +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/db.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/db.go new file mode 100644 index 00000000..4b87b5ef --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/db.go @@ -0,0 +1,216 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package testutil + +import ( + "fmt" + "math/rand" + + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/util" +) + +type DB interface{} + +type Put interface { + TestPut(key []byte, value []byte) error +} + +type Delete interface { + TestDelete(key []byte) error +} + +type Find interface { + TestFind(key []byte) (rkey, rvalue []byte, err error) +} + +type Get interface { + TestGet(key []byte) (value []byte, err error) +} + +type NewIterator interface { + TestNewIterator(slice *util.Range) iterator.Iterator +} + +type DBAct int + +func (a DBAct) String() string { + switch a { + case DBNone: + return "none" + case DBPut: + return "put" + case DBOverwrite: + return "overwrite" + case DBDelete: + return "delete" + case DBDeleteNA: + return "delete_na" + } + return "unknown" +} + +const ( + DBNone DBAct = iota + DBPut + DBOverwrite + DBDelete + DBDeleteNA +) + +type DBTesting struct { + Rand *rand.Rand + DB interface { + Get + Put + Delete + } + PostFn func(t *DBTesting) + Deleted, Present KeyValue + Act, LastAct DBAct + ActKey, LastActKey []byte +} + +func (t *DBTesting) post() { + if t.PostFn != nil { + t.PostFn(t) + } +} + +func (t *DBTesting) setAct(act DBAct, key []byte) { + t.LastAct, t.Act = t.Act, act + t.LastActKey, t.ActKey = t.ActKey, key +} + +func (t *DBTesting) text() string { + return fmt.Sprintf("last action was <%v> %q, <%v> %q", t.LastAct, t.LastActKey, t.Act, t.ActKey) +} + +func (t *DBTesting) Text() string { + return "DBTesting " + t.text() +} + +func (t *DBTesting) TestPresentKV(key, value []byte) { + rvalue, err := t.DB.TestGet(key) + Expect(err).ShouldNot(HaveOccurred(), "Get on key %q, %s", key, t.text()) + Expect(rvalue).Should(Equal(value), "Value for key %q, %s", key, t.text()) +} + +func (t *DBTesting) TestAllPresent() { + t.Present.IterateShuffled(t.Rand, func(i int, key, value []byte) { + t.TestPresentKV(key, value) + }) +} + +func (t *DBTesting) TestDeletedKey(key []byte) { + _, err := t.DB.TestGet(key) + Expect(err).Should(Equal(util.ErrNotFound), "Get on deleted key %q, %s", key, t.text()) +} + +func (t *DBTesting) TestAllDeleted() { + t.Deleted.IterateShuffled(t.Rand, func(i int, key, value []byte) { + t.TestDeletedKey(key) + }) +} + +func (t *DBTesting) TestAll() { + dn := t.Deleted.Len() + pn := t.Present.Len() + ShuffledIndex(t.Rand, dn+pn, 1, func(i int) { + if i >= dn { + key, value := t.Present.Index(i - dn) + t.TestPresentKV(key, value) + } else { + t.TestDeletedKey(t.Deleted.KeyAt(i)) + } + }) +} + +func (t *DBTesting) Put(key, value []byte) { + if new := t.Present.PutU(key, value); new { + t.setAct(DBPut, key) + } else { + t.setAct(DBOverwrite, key) + } + t.Deleted.Delete(key) + err := t.DB.TestPut(key, value) + Expect(err).ShouldNot(HaveOccurred(), t.Text()) + t.TestPresentKV(key, value) + t.post() +} + +func (t *DBTesting) PutRandom() bool { + if t.Deleted.Len() > 0 { + i := t.Rand.Intn(t.Deleted.Len()) + key, value := t.Deleted.Index(i) + t.Put(key, value) + return true + } + return false +} + +func (t *DBTesting) Delete(key []byte) { + if exist, value := t.Present.Delete(key); exist { + t.setAct(DBDelete, key) + t.Deleted.PutU(key, value) + } else { + t.setAct(DBDeleteNA, key) + } + err := t.DB.TestDelete(key) + Expect(err).ShouldNot(HaveOccurred(), t.Text()) + t.TestDeletedKey(key) + t.post() +} + +func (t *DBTesting) DeleteRandom() bool { + if t.Present.Len() > 0 { + i := t.Rand.Intn(t.Present.Len()) + t.Delete(t.Present.KeyAt(i)) + return true + } + return false +} + +func (t *DBTesting) RandomAct(round int) { + for i := 0; i < round; i++ { + if t.Rand.Int()%2 == 0 { + t.PutRandom() + } else { + t.DeleteRandom() + } + } +} + +func DoDBTesting(t *DBTesting) { + if t.Rand == nil { + t.Rand = NewRand() + } + + t.DeleteRandom() + t.PutRandom() + t.DeleteRandom() + t.DeleteRandom() + for i := t.Deleted.Len() / 2; i >= 0; i-- { + t.PutRandom() + } + t.RandomAct((t.Deleted.Len() + t.Present.Len()) * 10) + + // Additional iterator testing + if db, ok := t.DB.(NewIterator); ok { + iter := db.TestNewIterator(nil) + Expect(iter.Error()).NotTo(HaveOccurred()) + + it := IteratorTesting{ + KeyValue: t.Present, + Iter: iter, + } + + DoIteratorTesting(&it) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/iter.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/iter.go new file mode 100644 index 00000000..df6d9db6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/iter.go @@ -0,0 +1,327 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package testutil + +import ( + "fmt" + "math/rand" + + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/iterator" +) + +type IterAct int + +func (a IterAct) String() string { + switch a { + case IterNone: + return "none" + case IterFirst: + return "first" + case IterLast: + return "last" + case IterPrev: + return "prev" + case IterNext: + return "next" + case IterSeek: + return "seek" + case IterSOI: + return "soi" + case IterEOI: + return "eoi" + } + return "unknown" +} + +const ( + IterNone IterAct = iota + IterFirst + IterLast + IterPrev + IterNext + IterSeek + IterSOI + IterEOI +) + +type IteratorTesting struct { + KeyValue + Iter iterator.Iterator + Rand *rand.Rand + PostFn func(t *IteratorTesting) + Pos int + Act, LastAct IterAct + + once bool +} + +func (t *IteratorTesting) init() { + if !t.once { + t.Pos = -1 + t.once = true + } +} + +func (t *IteratorTesting) post() { + if t.PostFn != nil { + t.PostFn(t) + } +} + +func (t *IteratorTesting) setAct(act IterAct) { + t.LastAct, t.Act = t.Act, act +} + +func (t *IteratorTesting) text() string { + return fmt.Sprintf("at pos %d and last action was <%v> -> <%v>", t.Pos, t.LastAct, t.Act) +} + +func (t *IteratorTesting) Text() string { + return "IteratorTesting is " + t.text() +} + +func (t *IteratorTesting) IsFirst() bool { + t.init() + return t.Len() > 0 && t.Pos == 0 +} + +func (t *IteratorTesting) IsLast() bool { + t.init() + return t.Len() > 0 && t.Pos == t.Len()-1 +} + +func (t *IteratorTesting) TestKV() { + t.init() + key, value := t.Index(t.Pos) + Expect(t.Iter.Key()).NotTo(BeNil()) + Expect(t.Iter.Key()).Should(Equal(key), "Key is invalid, %s", t.text()) + Expect(t.Iter.Value()).Should(Equal(value), "Value for key %q, %s", key, t.text()) +} + +func (t *IteratorTesting) First() { + t.init() + t.setAct(IterFirst) + + ok := t.Iter.First() + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + if t.Len() > 0 { + t.Pos = 0 + Expect(ok).Should(BeTrue(), t.Text()) + t.TestKV() + } else { + t.Pos = -1 + Expect(ok).ShouldNot(BeTrue(), t.Text()) + } + t.post() +} + +func (t *IteratorTesting) Last() { + t.init() + t.setAct(IterLast) + + ok := t.Iter.Last() + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + if t.Len() > 0 { + t.Pos = t.Len() - 1 + Expect(ok).Should(BeTrue(), t.Text()) + t.TestKV() + } else { + t.Pos = 0 + Expect(ok).ShouldNot(BeTrue(), t.Text()) + } + t.post() +} + +func (t *IteratorTesting) Next() { + t.init() + t.setAct(IterNext) + + ok := t.Iter.Next() + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + if t.Pos < t.Len()-1 { + t.Pos++ + Expect(ok).Should(BeTrue(), t.Text()) + t.TestKV() + } else { + t.Pos = t.Len() + Expect(ok).ShouldNot(BeTrue(), t.Text()) + } + t.post() +} + +func (t *IteratorTesting) Prev() { + t.init() + t.setAct(IterPrev) + + ok := t.Iter.Prev() + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + if t.Pos > 0 { + t.Pos-- + Expect(ok).Should(BeTrue(), t.Text()) + t.TestKV() + } else { + t.Pos = -1 + Expect(ok).ShouldNot(BeTrue(), t.Text()) + } + t.post() +} + +func (t *IteratorTesting) Seek(i int) { + t.init() + t.setAct(IterSeek) + + key, _ := t.Index(i) + oldKey, _ := t.IndexOrNil(t.Pos) + + ok := t.Iter.Seek(key) + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + Expect(ok).Should(BeTrue(), fmt.Sprintf("Seek from key %q to %q, to pos %d, %s", oldKey, key, i, t.text())) + + t.Pos = i + t.TestKV() + t.post() +} + +func (t *IteratorTesting) SeekInexact(i int) { + t.init() + t.setAct(IterSeek) + var key0 []byte + key1, _ := t.Index(i) + if i > 0 { + key0, _ = t.Index(i - 1) + } + key := BytesSeparator(key0, key1) + oldKey, _ := t.IndexOrNil(t.Pos) + + ok := t.Iter.Seek(key) + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + Expect(ok).Should(BeTrue(), fmt.Sprintf("Seek from key %q to %q (%q), to pos %d, %s", oldKey, key, key1, i, t.text())) + + t.Pos = i + t.TestKV() + t.post() +} + +func (t *IteratorTesting) SeekKey(key []byte) { + t.init() + t.setAct(IterSeek) + oldKey, _ := t.IndexOrNil(t.Pos) + i := t.Search(key) + + ok := t.Iter.Seek(key) + Expect(t.Iter.Error()).ShouldNot(HaveOccurred()) + if i < t.Len() { + key_, _ := t.Index(i) + Expect(ok).Should(BeTrue(), fmt.Sprintf("Seek from key %q to %q (%q), to pos %d, %s", oldKey, key, key_, i, t.text())) + t.Pos = i + t.TestKV() + } else { + Expect(ok).ShouldNot(BeTrue(), fmt.Sprintf("Seek from key %q to %q, %s", oldKey, key, t.text())) + } + + t.Pos = i + t.post() +} + +func (t *IteratorTesting) SOI() { + t.init() + t.setAct(IterSOI) + Expect(t.Pos).Should(BeNumerically("<=", 0), t.Text()) + for i := 0; i < 3; i++ { + t.Prev() + } + t.post() +} + +func (t *IteratorTesting) EOI() { + t.init() + t.setAct(IterEOI) + Expect(t.Pos).Should(BeNumerically(">=", t.Len()-1), t.Text()) + for i := 0; i < 3; i++ { + t.Next() + } + t.post() +} + +func (t *IteratorTesting) WalkPrev(fn func(t *IteratorTesting)) { + t.init() + for old := t.Pos; t.Pos > 0; old = t.Pos { + fn(t) + Expect(t.Pos).Should(BeNumerically("<", old), t.Text()) + } +} + +func (t *IteratorTesting) WalkNext(fn func(t *IteratorTesting)) { + t.init() + for old := t.Pos; t.Pos < t.Len()-1; old = t.Pos { + fn(t) + Expect(t.Pos).Should(BeNumerically(">", old), t.Text()) + } +} + +func (t *IteratorTesting) PrevAll() { + t.WalkPrev(func(t *IteratorTesting) { + t.Prev() + }) +} + +func (t *IteratorTesting) NextAll() { + t.WalkNext(func(t *IteratorTesting) { + t.Next() + }) +} + +func DoIteratorTesting(t *IteratorTesting) { + if t.Rand == nil { + t.Rand = NewRand() + } + t.SOI() + t.NextAll() + t.First() + t.SOI() + t.NextAll() + t.EOI() + t.PrevAll() + t.Last() + t.EOI() + t.PrevAll() + t.SOI() + + t.NextAll() + t.PrevAll() + t.NextAll() + t.Last() + t.PrevAll() + t.First() + t.NextAll() + t.EOI() + + ShuffledIndex(t.Rand, t.Len(), 1, func(i int) { + t.Seek(i) + }) + + ShuffledIndex(t.Rand, t.Len(), 1, func(i int) { + t.SeekInexact(i) + }) + + ShuffledIndex(t.Rand, t.Len(), 1, func(i int) { + t.Seek(i) + if i%2 != 0 { + t.PrevAll() + t.SOI() + } else { + t.NextAll() + t.EOI() + } + }) + + for _, key := range []string{"", "foo", "bar", "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"} { + t.SeekKey([]byte(key)) + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/kv.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/kv.go new file mode 100644 index 00000000..471d5708 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/kv.go @@ -0,0 +1,352 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package testutil + +import ( + "fmt" + "math/rand" + "sort" + "strings" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +type KeyValueEntry struct { + key, value []byte +} + +type KeyValue struct { + entries []KeyValueEntry + nbytes int +} + +func (kv *KeyValue) Put(key, value []byte) { + if n := len(kv.entries); n > 0 && cmp.Compare(kv.entries[n-1].key, key) >= 0 { + panic(fmt.Sprintf("Put: keys are not in increasing order: %q, %q", kv.entries[n-1].key, key)) + } + kv.entries = append(kv.entries, KeyValueEntry{key, value}) + kv.nbytes += len(key) + len(value) +} + +func (kv *KeyValue) PutString(key, value string) { + kv.Put([]byte(key), []byte(value)) +} + +func (kv *KeyValue) PutU(key, value []byte) bool { + if i, exist := kv.Get(key); !exist { + if i < kv.Len() { + kv.entries = append(kv.entries[:i+1], kv.entries[i:]...) + kv.entries[i] = KeyValueEntry{key, value} + } else { + kv.entries = append(kv.entries, KeyValueEntry{key, value}) + } + kv.nbytes += len(key) + len(value) + return true + } else { + kv.nbytes += len(value) - len(kv.ValueAt(i)) + kv.entries[i].value = value + } + return false +} + +func (kv *KeyValue) PutUString(key, value string) bool { + return kv.PutU([]byte(key), []byte(value)) +} + +func (kv *KeyValue) Delete(key []byte) (exist bool, value []byte) { + i, exist := kv.Get(key) + if exist { + value = kv.entries[i].value + kv.DeleteIndex(i) + } + return +} + +func (kv *KeyValue) DeleteIndex(i int) bool { + if i < kv.Len() { + kv.nbytes -= len(kv.KeyAt(i)) + len(kv.ValueAt(i)) + kv.entries = append(kv.entries[:i], kv.entries[i+1:]...) + return true + } + return false +} + +func (kv KeyValue) Len() int { + return len(kv.entries) +} + +func (kv *KeyValue) Size() int { + return kv.nbytes +} + +func (kv KeyValue) KeyAt(i int) []byte { + return kv.entries[i].key +} + +func (kv KeyValue) ValueAt(i int) []byte { + return kv.entries[i].value +} + +func (kv KeyValue) Index(i int) (key, value []byte) { + if i < 0 || i >= len(kv.entries) { + panic(fmt.Sprintf("Index #%d: out of range", i)) + } + return kv.entries[i].key, kv.entries[i].value +} + +func (kv KeyValue) IndexInexact(i int) (key_, key, value []byte) { + key, value = kv.Index(i) + var key0 []byte + var key1 = kv.KeyAt(i) + if i > 0 { + key0 = kv.KeyAt(i - 1) + } + key_ = BytesSeparator(key0, key1) + return +} + +func (kv KeyValue) IndexOrNil(i int) (key, value []byte) { + if i >= 0 && i < len(kv.entries) { + return kv.entries[i].key, kv.entries[i].value + } + return nil, nil +} + +func (kv KeyValue) IndexString(i int) (key, value string) { + key_, _value := kv.Index(i) + return string(key_), string(_value) +} + +func (kv KeyValue) Search(key []byte) int { + return sort.Search(kv.Len(), func(i int) bool { + return cmp.Compare(kv.KeyAt(i), key) >= 0 + }) +} + +func (kv KeyValue) SearchString(key string) int { + return kv.Search([]byte(key)) +} + +func (kv KeyValue) Get(key []byte) (i int, exist bool) { + i = kv.Search(key) + if i < kv.Len() && cmp.Compare(kv.KeyAt(i), key) == 0 { + exist = true + } + return +} + +func (kv KeyValue) GetString(key string) (i int, exist bool) { + return kv.Get([]byte(key)) +} + +func (kv KeyValue) Iterate(fn func(i int, key, value []byte)) { + for i, x := range kv.entries { + fn(i, x.key, x.value) + } +} + +func (kv KeyValue) IterateString(fn func(i int, key, value string)) { + kv.Iterate(func(i int, key, value []byte) { + fn(i, string(key), string(value)) + }) +} + +func (kv KeyValue) IterateShuffled(rnd *rand.Rand, fn func(i int, key, value []byte)) { + ShuffledIndex(rnd, kv.Len(), 1, func(i int) { + fn(i, kv.entries[i].key, kv.entries[i].value) + }) +} + +func (kv KeyValue) IterateShuffledString(rnd *rand.Rand, fn func(i int, key, value string)) { + kv.IterateShuffled(rnd, func(i int, key, value []byte) { + fn(i, string(key), string(value)) + }) +} + +func (kv KeyValue) IterateInexact(fn func(i int, key_, key, value []byte)) { + for i := range kv.entries { + key_, key, value := kv.IndexInexact(i) + fn(i, key_, key, value) + } +} + +func (kv KeyValue) IterateInexactString(fn func(i int, key_, key, value string)) { + kv.IterateInexact(func(i int, key_, key, value []byte) { + fn(i, string(key_), string(key), string(value)) + }) +} + +func (kv KeyValue) Clone() KeyValue { + return KeyValue{append([]KeyValueEntry{}, kv.entries...), kv.nbytes} +} + +func (kv KeyValue) Slice(start, limit int) KeyValue { + if start < 0 || limit > kv.Len() { + panic(fmt.Sprintf("Slice %d .. %d: out of range", start, limit)) + } else if limit < start { + panic(fmt.Sprintf("Slice %d .. %d: invalid range", start, limit)) + } + return KeyValue{append([]KeyValueEntry{}, kv.entries[start:limit]...), kv.nbytes} +} + +func (kv KeyValue) SliceKey(start, limit []byte) KeyValue { + start_ := 0 + limit_ := kv.Len() + if start != nil { + start_ = kv.Search(start) + } + if limit != nil { + limit_ = kv.Search(limit) + } + return kv.Slice(start_, limit_) +} + +func (kv KeyValue) SliceKeyString(start, limit string) KeyValue { + return kv.SliceKey([]byte(start), []byte(limit)) +} + +func (kv KeyValue) SliceRange(r *util.Range) KeyValue { + if r != nil { + return kv.SliceKey(r.Start, r.Limit) + } + return kv.Clone() +} + +func (kv KeyValue) Range(start, limit int) (r util.Range) { + if kv.Len() > 0 { + if start == kv.Len() { + r.Start = BytesAfter(kv.KeyAt(start - 1)) + } else { + r.Start = kv.KeyAt(start) + } + } + if limit < kv.Len() { + r.Limit = kv.KeyAt(limit) + } + return +} + +func KeyValue_EmptyKey() *KeyValue { + kv := &KeyValue{} + kv.PutString("", "v") + return kv +} + +func KeyValue_EmptyValue() *KeyValue { + kv := &KeyValue{} + kv.PutString("abc", "") + kv.PutString("abcd", "") + return kv +} + +func KeyValue_OneKeyValue() *KeyValue { + kv := &KeyValue{} + kv.PutString("abc", "v") + return kv +} + +func KeyValue_BigValue() *KeyValue { + kv := &KeyValue{} + kv.PutString("big1", strings.Repeat("1", 200000)) + return kv +} + +func KeyValue_SpecialKey() *KeyValue { + kv := &KeyValue{} + kv.PutString("\xff\xff", "v3") + return kv +} + +func KeyValue_MultipleKeyValue() *KeyValue { + kv := &KeyValue{} + kv.PutString("a", "v") + kv.PutString("aa", "v1") + kv.PutString("aaa", "v2") + kv.PutString("aaacccccccccc", "v2") + kv.PutString("aaaccccccccccd", "v3") + kv.PutString("aaaccccccccccf", "v4") + kv.PutString("aaaccccccccccfg", "v5") + kv.PutString("ab", "v6") + kv.PutString("abc", "v7") + kv.PutString("abcd", "v8") + kv.PutString("accccccccccccccc", "v9") + kv.PutString("b", "v10") + kv.PutString("bb", "v11") + kv.PutString("bc", "v12") + kv.PutString("c", "v13") + kv.PutString("c1", "v13") + kv.PutString("czzzzzzzzzzzzzz", "v14") + kv.PutString("fffffffffffffff", "v15") + kv.PutString("g11", "v15") + kv.PutString("g111", "v15") + kv.PutString("g111\xff", "v15") + kv.PutString("zz", "v16") + kv.PutString("zzzzzzz", "v16") + kv.PutString("zzzzzzzzzzzzzzzz", "v16") + return kv +} + +var keymap = []byte("012345678ABCDEFGHIJKLMNOPQRSTUVWXYabcdefghijklmnopqrstuvwxy") + +func KeyValue_Generate(rnd *rand.Rand, n, minlen, maxlen, vminlen, vmaxlen int) *KeyValue { + if rnd == nil { + rnd = NewRand() + } + if maxlen < minlen { + panic("max len should >= min len") + } + + rrand := func(min, max int) int { + if min == max { + return max + } + return rnd.Intn(max-min) + min + } + + kv := &KeyValue{} + endC := byte(len(keymap) - 1) + gen := make([]byte, 0, maxlen) + for i := 0; i < n; i++ { + m := rrand(minlen, maxlen) + last := gen + retry: + gen = last[:m] + if k := len(last); m > k { + for j := k; j < m; j++ { + gen[j] = 0 + } + } else { + for j := m - 1; j >= 0; j-- { + c := last[j] + if c == endC { + continue + } + gen[j] = c + 1 + for j += 1; j < m; j++ { + gen[j] = 0 + } + goto ok + } + if m < maxlen { + m++ + goto retry + } + panic(fmt.Sprintf("only able to generate %d keys out of %d keys, try increasing max len", kv.Len(), n)) + ok: + } + key := make([]byte, m) + for j := 0; j < m; j++ { + key[j] = keymap[gen[j]] + } + value := make([]byte, rrand(vminlen, vmaxlen)) + for n := copy(value, []byte(fmt.Sprintf("v%d", i))); n < len(value); n++ { + value[n] = 'x' + } + kv.Put(key, value) + } + return kv +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/kvtest.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/kvtest.go new file mode 100644 index 00000000..4fc75b6f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/kvtest.go @@ -0,0 +1,136 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package testutil + +import ( + "fmt" + "math/rand" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/util" +) + +func KeyValueTesting(rnd *rand.Rand, p DB, kv KeyValue) { + if rnd == nil { + rnd = NewRand() + } + + if db, ok := p.(Find); ok { + It("Should find all keys with Find", func() { + ShuffledIndex(nil, kv.Len(), 1, func(i int) { + key_, key, value := kv.IndexInexact(i) + + // Using exact key. + rkey, rvalue, err := db.TestFind(key) + Expect(err).ShouldNot(HaveOccurred(), "Error for key %q", key) + Expect(rkey).Should(Equal(key), "Key") + Expect(rvalue).Should(Equal(value), "Value for key %q", key) + + // Using inexact key. + rkey, rvalue, err = db.TestFind(key_) + Expect(err).ShouldNot(HaveOccurred(), "Error for key %q (%q)", key_, key) + Expect(rkey).Should(Equal(key)) + Expect(rvalue).Should(Equal(value), "Value for key %q (%q)", key_, key) + }) + }) + + It("Should return error if the key is not present", func() { + var key []byte + if kv.Len() > 0 { + key_, _ := kv.Index(kv.Len() - 1) + key = BytesAfter(key_) + } + rkey, _, err := db.TestFind(key) + Expect(err).Should(HaveOccurred(), "Find for key %q yield key %q", key, rkey) + Expect(err).Should(Equal(util.ErrNotFound)) + }) + } + + if db, ok := p.(Get); ok { + It("Should only find exact key with Get", func() { + ShuffledIndex(nil, kv.Len(), 1, func(i int) { + key_, key, value := kv.IndexInexact(i) + + // Using exact key. + rvalue, err := db.TestGet(key) + Expect(err).ShouldNot(HaveOccurred(), "Error for key %q", key) + Expect(rvalue).Should(Equal(value), "Value for key %q", key) + + // Using inexact key. + if len(key_) > 0 { + _, err = db.TestGet(key_) + Expect(err).Should(HaveOccurred(), "Error for key %q", key_) + Expect(err).Should(Equal(util.ErrNotFound)) + } + }) + }) + } + + if db, ok := p.(NewIterator); ok { + TestIter := func(r *util.Range, _kv KeyValue) { + iter := db.TestNewIterator(r) + Expect(iter.Error()).ShouldNot(HaveOccurred()) + + t := IteratorTesting{ + KeyValue: _kv, + Iter: iter, + } + + DoIteratorTesting(&t) + } + + It("Should iterates and seeks correctly", func(done Done) { + TestIter(nil, kv.Clone()) + done <- true + }, 3.0) + + RandomIndex(rnd, kv.Len(), kv.Len(), func(i int) { + type slice struct { + r *util.Range + start, limit int + } + + key_, _, _ := kv.IndexInexact(i) + for _, x := range []slice{ + {&util.Range{Start: key_, Limit: nil}, i, kv.Len()}, + {&util.Range{Start: nil, Limit: key_}, 0, i}, + } { + It(fmt.Sprintf("Should iterates and seeks correctly of a slice %d .. %d", x.start, x.limit), func(done Done) { + TestIter(x.r, kv.Slice(x.start, x.limit)) + done <- true + }, 3.0) + } + }) + + RandomRange(rnd, kv.Len(), kv.Len(), func(start, limit int) { + It(fmt.Sprintf("Should iterates and seeks correctly of a slice %d .. %d", start, limit), func(done Done) { + r := kv.Range(start, limit) + TestIter(&r, kv.Slice(start, limit)) + done <- true + }, 3.0) + }) + } +} + +func AllKeyValueTesting(rnd *rand.Rand, body func(kv KeyValue) DB) { + Test := func(kv *KeyValue) func() { + return func() { + db := body(*kv) + KeyValueTesting(rnd, db, *kv) + } + } + + Describe("with no key/value (empty)", Test(&KeyValue{})) + Describe("with empty key", Test(KeyValue_EmptyKey())) + Describe("with empty value", Test(KeyValue_EmptyValue())) + Describe("with one key/value", Test(KeyValue_OneKeyValue())) + Describe("with big value", Test(KeyValue_BigValue())) + Describe("with special key", Test(KeyValue_SpecialKey())) + Describe("with multiple key/value", Test(KeyValue_MultipleKeyValue())) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/storage.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/storage.go new file mode 100644 index 00000000..bd5fc12e --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/storage.go @@ -0,0 +1,580 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package testutil + +import ( + "bytes" + "fmt" + "io" + "os" + "path/filepath" + "runtime" + "strings" + "sync" + + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var ( + storageMu sync.Mutex + storageUseFS bool = true + storageKeepFS bool = false + storageNum int +) + +type StorageMode int + +const ( + ModeOpen StorageMode = 1 << iota + ModeCreate + ModeRemove + ModeRead + ModeWrite + ModeSync + ModeClose +) + +const ( + modeOpen = iota + modeCreate + modeRemove + modeRead + modeWrite + modeSync + modeClose + + modeCount +) + +const ( + typeManifest = iota + typeJournal + typeTable + + typeCount +) + +const flattenCount = modeCount * typeCount + +func flattenType(m StorageMode, t storage.FileType) int { + var x int + switch m { + case ModeOpen: + x = modeOpen + case ModeCreate: + x = modeCreate + case ModeRemove: + x = modeRemove + case ModeRead: + x = modeRead + case ModeWrite: + x = modeWrite + case ModeSync: + x = modeSync + case ModeClose: + x = modeClose + default: + panic("invalid storage mode") + } + x *= typeCount + switch t { + case storage.TypeManifest: + return x + typeManifest + case storage.TypeJournal: + return x + typeJournal + case storage.TypeTable: + return x + typeTable + default: + panic("invalid file type") + } +} + +func listFlattenType(m StorageMode, t storage.FileType) []int { + ret := make([]int, 0, flattenCount) + add := func(x int) { + x *= typeCount + switch { + case t&storage.TypeManifest != 0: + ret = append(ret, x+typeManifest) + case t&storage.TypeJournal != 0: + ret = append(ret, x+typeJournal) + case t&storage.TypeTable != 0: + ret = append(ret, x+typeTable) + } + } + switch { + case m&ModeOpen != 0: + add(modeOpen) + case m&ModeCreate != 0: + add(modeCreate) + case m&ModeRemove != 0: + add(modeRemove) + case m&ModeRead != 0: + add(modeRead) + case m&ModeWrite != 0: + add(modeWrite) + case m&ModeSync != 0: + add(modeSync) + case m&ModeClose != 0: + add(modeClose) + } + return ret +} + +func packFile(num uint64, t storage.FileType) uint64 { + if num>>(64-typeCount) != 0 { + panic("overflow") + } + return num<> typeCount, storage.FileType(x) & storage.TypeAll +} + +type emulatedError struct { + err error +} + +func (err emulatedError) Error() string { + return fmt.Sprintf("emulated storage error: %v", err.err) +} + +type storageLock struct { + s *Storage + r util.Releaser +} + +func (l storageLock) Release() { + l.r.Release() + l.s.logI("storage lock released") +} + +type reader struct { + f *file + storage.Reader +} + +func (r *reader) Read(p []byte) (n int, err error) { + err = r.f.s.emulateError(ModeRead, r.f.Type()) + if err == nil { + r.f.s.stall(ModeRead, r.f.Type()) + n, err = r.Reader.Read(p) + } + r.f.s.count(ModeRead, r.f.Type(), n) + if err != nil && err != io.EOF { + r.f.s.logI("read error, num=%d type=%v n=%d err=%v", r.f.Num(), r.f.Type(), n, err) + } + return +} + +func (r *reader) ReadAt(p []byte, off int64) (n int, err error) { + err = r.f.s.emulateError(ModeRead, r.f.Type()) + if err == nil { + r.f.s.stall(ModeRead, r.f.Type()) + n, err = r.Reader.ReadAt(p, off) + } + r.f.s.count(ModeRead, r.f.Type(), n) + if err != nil && err != io.EOF { + r.f.s.logI("readAt error, num=%d type=%v offset=%d n=%d err=%v", r.f.Num(), r.f.Type(), off, n, err) + } + return +} + +func (r *reader) Close() (err error) { + return r.f.doClose(r.Reader) +} + +type writer struct { + f *file + storage.Writer +} + +func (w *writer) Write(p []byte) (n int, err error) { + err = w.f.s.emulateError(ModeWrite, w.f.Type()) + if err == nil { + w.f.s.stall(ModeWrite, w.f.Type()) + n, err = w.Writer.Write(p) + } + w.f.s.count(ModeWrite, w.f.Type(), n) + if err != nil && err != io.EOF { + w.f.s.logI("write error, num=%d type=%v n=%d err=%v", w.f.Num(), w.f.Type(), n, err) + } + return +} + +func (w *writer) Sync() (err error) { + err = w.f.s.emulateError(ModeSync, w.f.Type()) + if err == nil { + w.f.s.stall(ModeSync, w.f.Type()) + err = w.Writer.Sync() + } + w.f.s.count(ModeSync, w.f.Type(), 0) + if err != nil { + w.f.s.logI("sync error, num=%d type=%v err=%v", w.f.Num(), w.f.Type(), err) + } + return +} + +func (w *writer) Close() (err error) { + return w.f.doClose(w.Writer) +} + +type file struct { + s *Storage + storage.File +} + +func (f *file) pack() uint64 { + return packFile(f.Num(), f.Type()) +} + +func (f *file) assertOpen() { + ExpectWithOffset(2, f.s.opens).NotTo(HaveKey(f.pack()), "File open, num=%d type=%v writer=%v", f.Num(), f.Type(), f.s.opens[f.pack()]) +} + +func (f *file) doClose(closer io.Closer) (err error) { + err = f.s.emulateError(ModeClose, f.Type()) + if err == nil { + f.s.stall(ModeClose, f.Type()) + } + f.s.mu.Lock() + defer f.s.mu.Unlock() + if err == nil { + ExpectWithOffset(2, f.s.opens).To(HaveKey(f.pack()), "File closed, num=%d type=%v", f.Num(), f.Type()) + err = closer.Close() + } + f.s.countNB(ModeClose, f.Type(), 0) + writer := f.s.opens[f.pack()] + if err != nil { + f.s.logISkip(1, "file close failed, num=%d type=%v writer=%v err=%v", f.Num(), f.Type(), writer, err) + } else { + f.s.logISkip(1, "file closed, num=%d type=%v writer=%v", f.Num(), f.Type(), writer) + delete(f.s.opens, f.pack()) + } + return +} + +func (f *file) Open() (r storage.Reader, err error) { + err = f.s.emulateError(ModeOpen, f.Type()) + if err == nil { + f.s.stall(ModeOpen, f.Type()) + } + f.s.mu.Lock() + defer f.s.mu.Unlock() + if err == nil { + f.assertOpen() + f.s.countNB(ModeOpen, f.Type(), 0) + r, err = f.File.Open() + } + if err != nil { + f.s.logI("file open failed, num=%d type=%v err=%v", f.Num(), f.Type(), err) + } else { + f.s.logI("file opened, num=%d type=%v", f.Num(), f.Type()) + f.s.opens[f.pack()] = false + r = &reader{f, r} + } + return +} + +func (f *file) Create() (w storage.Writer, err error) { + err = f.s.emulateError(ModeCreate, f.Type()) + if err == nil { + f.s.stall(ModeCreate, f.Type()) + } + f.s.mu.Lock() + defer f.s.mu.Unlock() + if err == nil { + f.assertOpen() + f.s.countNB(ModeCreate, f.Type(), 0) + w, err = f.File.Create() + } + if err != nil { + f.s.logI("file create failed, num=%d type=%v err=%v", f.Num(), f.Type(), err) + } else { + f.s.logI("file created, num=%d type=%v", f.Num(), f.Type()) + f.s.opens[f.pack()] = true + w = &writer{f, w} + } + return +} + +func (f *file) Remove() (err error) { + err = f.s.emulateError(ModeRemove, f.Type()) + if err == nil { + f.s.stall(ModeRemove, f.Type()) + } + f.s.mu.Lock() + defer f.s.mu.Unlock() + if err == nil { + f.assertOpen() + f.s.countNB(ModeRemove, f.Type(), 0) + err = f.File.Remove() + } + if err != nil { + f.s.logI("file remove failed, num=%d type=%v err=%v", f.Num(), f.Type(), err) + } else { + f.s.logI("file removed, num=%d type=%v", f.Num(), f.Type()) + } + return +} + +type Storage struct { + storage.Storage + closeFn func() error + + lmu sync.Mutex + lb bytes.Buffer + + mu sync.Mutex + // Open files, true=writer, false=reader + opens map[uint64]bool + counters [flattenCount]int + bytesCounter [flattenCount]int64 + emulatedError [flattenCount]error + stallCond sync.Cond + stalled [flattenCount]bool +} + +func (s *Storage) log(skip int, str string) { + s.lmu.Lock() + defer s.lmu.Unlock() + _, file, line, ok := runtime.Caller(skip + 2) + if ok { + // Truncate file name at last file name separator. + if index := strings.LastIndex(file, "/"); index >= 0 { + file = file[index+1:] + } else if index = strings.LastIndex(file, "\\"); index >= 0 { + file = file[index+1:] + } + } else { + file = "???" + line = 1 + } + fmt.Fprintf(&s.lb, "%s:%d: ", file, line) + lines := strings.Split(str, "\n") + if l := len(lines); l > 1 && lines[l-1] == "" { + lines = lines[:l-1] + } + for i, line := range lines { + if i > 0 { + s.lb.WriteString("\n\t") + } + s.lb.WriteString(line) + } + s.lb.WriteByte('\n') +} + +func (s *Storage) logISkip(skip int, format string, args ...interface{}) { + pc, _, _, ok := runtime.Caller(skip + 1) + if ok { + if f := runtime.FuncForPC(pc); f != nil { + fname := f.Name() + if index := strings.LastIndex(fname, "."); index >= 0 { + fname = fname[index+1:] + } + format = fname + ": " + format + } + } + s.log(skip+1, fmt.Sprintf(format, args...)) +} + +func (s *Storage) logI(format string, args ...interface{}) { + s.logISkip(1, format, args...) +} + +func (s *Storage) Log(str string) { + s.log(1, "Log: "+str) +} + +func (s *Storage) Lock() (r util.Releaser, err error) { + r, err = s.Storage.Lock() + if err != nil { + s.logI("storage locking failed, err=%v", err) + } else { + s.logI("storage locked") + r = storageLock{s, r} + } + return +} + +func (s *Storage) GetFile(num uint64, t storage.FileType) storage.File { + return &file{s, s.Storage.GetFile(num, t)} +} + +func (s *Storage) GetFiles(t storage.FileType) (files []storage.File, err error) { + rfiles, err := s.Storage.GetFiles(t) + if err != nil { + s.logI("get files failed, err=%v", err) + return + } + files = make([]storage.File, len(rfiles)) + for i, f := range rfiles { + files[i] = &file{s, f} + } + s.logI("get files, type=0x%x count=%d", int(t), len(files)) + return +} + +func (s *Storage) GetManifest() (f storage.File, err error) { + manifest, err := s.Storage.GetManifest() + if err != nil { + if !os.IsNotExist(err) { + s.logI("get manifest failed, err=%v", err) + } + return + } + s.logI("get manifest, num=%d", manifest.Num()) + return &file{s, manifest}, nil +} + +func (s *Storage) SetManifest(f storage.File) error { + f_, ok := f.(*file) + ExpectWithOffset(1, ok).To(BeTrue()) + ExpectWithOffset(1, f_.Type()).To(Equal(storage.TypeManifest)) + err := s.Storage.SetManifest(f_.File) + if err != nil { + s.logI("set manifest failed, err=%v", err) + } else { + s.logI("set manifest, num=%d", f_.Num()) + } + return err +} + +func (s *Storage) openFiles() string { + out := "Open files:" + for x, writer := range s.opens { + num, t := unpackFile(x) + out += fmt.Sprintf("\n · num=%d type=%v writer=%v", num, t, writer) + } + return out +} + +func (s *Storage) Close() error { + s.mu.Lock() + defer s.mu.Unlock() + ExpectWithOffset(1, s.opens).To(BeEmpty(), s.openFiles()) + err := s.Storage.Close() + if err != nil { + s.logI("storage closing failed, err=%v", err) + } else { + s.logI("storage closed") + } + if s.closeFn != nil { + if err1 := s.closeFn(); err1 != nil { + s.logI("close func error, err=%v", err1) + } + } + return err +} + +func (s *Storage) countNB(m StorageMode, t storage.FileType, n int) { + s.counters[flattenType(m, t)]++ + s.bytesCounter[flattenType(m, t)] += int64(n) +} + +func (s *Storage) count(m StorageMode, t storage.FileType, n int) { + s.mu.Lock() + defer s.mu.Unlock() + s.countNB(m, t, n) +} + +func (s *Storage) ResetCounter(m StorageMode, t storage.FileType) { + for _, x := range listFlattenType(m, t) { + s.counters[x] = 0 + s.bytesCounter[x] = 0 + } +} + +func (s *Storage) Counter(m StorageMode, t storage.FileType) (count int, bytes int64) { + for _, x := range listFlattenType(m, t) { + count += s.counters[x] + bytes += s.bytesCounter[x] + } + return +} + +func (s *Storage) emulateError(m StorageMode, t storage.FileType) error { + s.mu.Lock() + defer s.mu.Unlock() + err := s.emulatedError[flattenType(m, t)] + if err != nil { + return emulatedError{err} + } + return nil +} + +func (s *Storage) EmulateError(m StorageMode, t storage.FileType, err error) { + s.mu.Lock() + defer s.mu.Unlock() + for _, x := range listFlattenType(m, t) { + s.emulatedError[x] = err + } +} + +func (s *Storage) stall(m StorageMode, t storage.FileType) { + x := flattenType(m, t) + s.mu.Lock() + defer s.mu.Unlock() + for s.stalled[x] { + s.stallCond.Wait() + } +} + +func (s *Storage) Stall(m StorageMode, t storage.FileType) { + s.mu.Lock() + defer s.mu.Unlock() + for _, x := range listFlattenType(m, t) { + s.stalled[x] = true + } +} + +func (s *Storage) Release(m StorageMode, t storage.FileType) { + s.mu.Lock() + defer s.mu.Unlock() + for _, x := range listFlattenType(m, t) { + s.stalled[x] = false + } + s.stallCond.Broadcast() +} + +func NewStorage() *Storage { + var stor storage.Storage + var closeFn func() error + if storageUseFS { + for { + storageMu.Lock() + num := storageNum + storageNum++ + storageMu.Unlock() + path := filepath.Join(os.TempDir(), fmt.Sprintf("goleveldb-test%d0%d0%d", os.Getuid(), os.Getpid(), num)) + if _, err := os.Stat(path); os.IsNotExist(err) { + stor, err = storage.OpenFile(path) + ExpectWithOffset(1, err).NotTo(HaveOccurred(), "creating storage at %s", path) + closeFn = func() error { + if storageKeepFS { + return nil + } + return os.RemoveAll(path) + } + break + } + } + } else { + stor = storage.NewMemStorage() + } + s := &Storage{ + Storage: stor, + closeFn: closeFn, + opens: make(map[uint64]bool), + } + s.stallCond.L = &s.mu + return s +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/util.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/util.go new file mode 100644 index 00000000..38fe25d5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil/util.go @@ -0,0 +1,157 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package testutil + +import ( + "bytes" + "flag" + "math/rand" + "reflect" + "sync" + + "github.com/onsi/ginkgo/config" + + "github.com/syndtr/goleveldb/leveldb/comparer" +) + +var ( + runfn = make(map[string][]func()) + runmu sync.Mutex +) + +func Defer(args ...interface{}) bool { + var ( + group string + fn func() + ) + for _, arg := range args { + v := reflect.ValueOf(arg) + switch v.Kind() { + case reflect.String: + group = v.String() + case reflect.Func: + r := reflect.ValueOf(&fn).Elem() + r.Set(v) + } + } + if fn != nil { + runmu.Lock() + runfn[group] = append(runfn[group], fn) + runmu.Unlock() + } + return true +} + +func RunDefer(groups ...string) bool { + if len(groups) == 0 { + groups = append(groups, "") + } + runmu.Lock() + var runfn_ []func() + for _, group := range groups { + runfn_ = append(runfn_, runfn[group]...) + delete(runfn, group) + } + runmu.Unlock() + for _, fn := range runfn_ { + fn() + } + return runfn_ != nil +} + +func RandomSeed() int64 { + if !flag.Parsed() { + panic("random seed not initialized") + } + return config.GinkgoConfig.RandomSeed +} + +func NewRand() *rand.Rand { + return rand.New(rand.NewSource(RandomSeed())) +} + +var cmp = comparer.DefaultComparer + +func BytesSeparator(a, b []byte) []byte { + if bytes.Equal(a, b) { + return b + } + i, n := 0, len(a) + if n > len(b) { + n = len(b) + } + for ; i < n && (a[i] == b[i]); i++ { + } + x := append([]byte{}, a[:i]...) + if i < n { + if c := a[i] + 1; c < b[i] { + return append(x, c) + } + x = append(x, a[i]) + i++ + } + for ; i < len(a); i++ { + if c := a[i]; c < 0xff { + return append(x, c+1) + } else { + x = append(x, c) + } + } + if len(b) > i && b[i] > 0 { + return append(x, b[i]-1) + } + return append(x, 'x') +} + +func BytesAfter(b []byte) []byte { + var x []byte + for _, c := range b { + if c < 0xff { + return append(x, c+1) + } else { + x = append(x, c) + } + } + return append(x, 'x') +} + +func RandomIndex(rnd *rand.Rand, n, round int, fn func(i int)) { + if rnd == nil { + rnd = NewRand() + } + for x := 0; x < round; x++ { + fn(rnd.Intn(n)) + } + return +} + +func ShuffledIndex(rnd *rand.Rand, n, round int, fn func(i int)) { + if rnd == nil { + rnd = NewRand() + } + for x := 0; x < round; x++ { + for _, i := range rnd.Perm(n) { + fn(i) + } + } + return +} + +func RandomRange(rnd *rand.Rand, n, round int, fn func(start, limit int)) { + if rnd == nil { + rnd = NewRand() + } + for x := 0; x < round; x++ { + start := rnd.Intn(n) + length := 0 + if j := n - start; j > 0 { + length = rnd.Intn(j) + } + fn(start, start+length) + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil_test.go new file mode 100644 index 00000000..c1402fda --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/testutil_test.go @@ -0,0 +1,58 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + . "github.com/onsi/gomega" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/testutil" + "github.com/syndtr/goleveldb/leveldb/util" +) + +type testingDB struct { + *DB + ro *opt.ReadOptions + wo *opt.WriteOptions + stor *testutil.Storage +} + +func (t *testingDB) TestPut(key []byte, value []byte) error { + return t.Put(key, value, t.wo) +} + +func (t *testingDB) TestDelete(key []byte) error { + return t.Delete(key, t.wo) +} + +func (t *testingDB) TestGet(key []byte) (value []byte, err error) { + return t.Get(key, t.ro) +} + +func (t *testingDB) TestNewIterator(slice *util.Range) iterator.Iterator { + return t.NewIterator(slice, t.ro) +} + +func (t *testingDB) TestClose() { + err := t.Close() + ExpectWithOffset(1, err).NotTo(HaveOccurred()) + err = t.stor.Close() + ExpectWithOffset(1, err).NotTo(HaveOccurred()) +} + +func newTestingDB(o *opt.Options, ro *opt.ReadOptions, wo *opt.WriteOptions) *testingDB { + stor := testutil.NewStorage() + db, err := Open(stor, o) + Expect(err).NotTo(HaveOccurred()) + return &testingDB{ + DB: db, + ro: ro, + wo: wo, + stor: stor, + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util.go new file mode 100644 index 00000000..0a768cc6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util.go @@ -0,0 +1,81 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "fmt" + "sort" + + "github.com/syndtr/goleveldb/leveldb/storage" +) + +func shorten(str string) string { + if len(str) <= 4 { + return str + } + return str[:1] + ".." + str[len(str)-1:] +} + +var bunits = [...]string{"", "Ki", "Mi", "Gi"} + +func shortenb(bytes int) string { + i := 0 + for ; bytes > 1024 && i < 4; i++ { + bytes /= 1024 + } + return fmt.Sprintf("%d%sB", bytes, bunits[i]) +} + +func sshortenb(bytes int) string { + if bytes == 0 { + return "~" + } + sign := "+" + if bytes < 0 { + sign = "-" + bytes *= -1 + } + i := 0 + for ; bytes > 1024 && i < 4; i++ { + bytes /= 1024 + } + return fmt.Sprintf("%s%d%sB", sign, bytes, bunits[i]) +} + +func sint(x int) string { + if x == 0 { + return "~" + } + sign := "+" + if x < 0 { + sign = "-" + x *= -1 + } + return fmt.Sprintf("%s%d", sign, x) +} + +func toPercent(n, percent int) int { + return n * percent / 100 +} + +type files []storage.File + +func (p files) Len() int { + return len(p) +} + +func (p files) Less(i, j int) bool { + return p[i].Num() < p[j].Num() +} + +func (p files) Swap(i, j int) { + p[i], p[j] = p[j], p[i] +} + +func (p files) sort() { + sort.Sort(p) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/buffer.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/buffer.go new file mode 100644 index 00000000..21de2425 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/buffer.go @@ -0,0 +1,293 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package util + +// This a copy of Go std bytes.Buffer with some modification +// and some features stripped. + +import ( + "bytes" + "io" +) + +// A Buffer is a variable-sized buffer of bytes with Read and Write methods. +// The zero value for Buffer is an empty buffer ready to use. +type Buffer struct { + buf []byte // contents are the bytes buf[off : len(buf)] + off int // read at &buf[off], write at &buf[len(buf)] + bootstrap [64]byte // memory to hold first slice; helps small buffers (Printf) avoid allocation. +} + +// Bytes returns a slice of the contents of the unread portion of the buffer; +// len(b.Bytes()) == b.Len(). If the caller changes the contents of the +// returned slice, the contents of the buffer will change provided there +// are no intervening method calls on the Buffer. +func (b *Buffer) Bytes() []byte { return b.buf[b.off:] } + +// String returns the contents of the unread portion of the buffer +// as a string. If the Buffer is a nil pointer, it returns "". +func (b *Buffer) String() string { + if b == nil { + // Special case, useful in debugging. + return "" + } + return string(b.buf[b.off:]) +} + +// Len returns the number of bytes of the unread portion of the buffer; +// b.Len() == len(b.Bytes()). +func (b *Buffer) Len() int { return len(b.buf) - b.off } + +// Truncate discards all but the first n unread bytes from the buffer. +// It panics if n is negative or greater than the length of the buffer. +func (b *Buffer) Truncate(n int) { + switch { + case n < 0 || n > b.Len(): + panic("leveldb/util.Buffer: truncation out of range") + case n == 0: + // Reuse buffer space. + b.off = 0 + } + b.buf = b.buf[0 : b.off+n] +} + +// Reset resets the buffer so it has no content. +// b.Reset() is the same as b.Truncate(0). +func (b *Buffer) Reset() { b.Truncate(0) } + +// grow grows the buffer to guarantee space for n more bytes. +// It returns the index where bytes should be written. +// If the buffer can't grow it will panic with bytes.ErrTooLarge. +func (b *Buffer) grow(n int) int { + m := b.Len() + // If buffer is empty, reset to recover space. + if m == 0 && b.off != 0 { + b.Truncate(0) + } + if len(b.buf)+n > cap(b.buf) { + var buf []byte + if b.buf == nil && n <= len(b.bootstrap) { + buf = b.bootstrap[0:] + } else if m+n <= cap(b.buf)/2 { + // We can slide things down instead of allocating a new + // slice. We only need m+n <= cap(b.buf) to slide, but + // we instead let capacity get twice as large so we + // don't spend all our time copying. + copy(b.buf[:], b.buf[b.off:]) + buf = b.buf[:m] + } else { + // not enough space anywhere + buf = makeSlice(2*cap(b.buf) + n) + copy(buf, b.buf[b.off:]) + } + b.buf = buf + b.off = 0 + } + b.buf = b.buf[0 : b.off+m+n] + return b.off + m +} + +// Alloc allocs n bytes of slice from the buffer, growing the buffer as +// needed. If n is negative, Alloc will panic. +// If the buffer can't grow it will panic with bytes.ErrTooLarge. +func (b *Buffer) Alloc(n int) []byte { + if n < 0 { + panic("leveldb/util.Buffer.Alloc: negative count") + } + m := b.grow(n) + return b.buf[m:] +} + +// Grow grows the buffer's capacity, if necessary, to guarantee space for +// another n bytes. After Grow(n), at least n bytes can be written to the +// buffer without another allocation. +// If n is negative, Grow will panic. +// If the buffer can't grow it will panic with bytes.ErrTooLarge. +func (b *Buffer) Grow(n int) { + if n < 0 { + panic("leveldb/util.Buffer.Grow: negative count") + } + m := b.grow(n) + b.buf = b.buf[0:m] +} + +// Write appends the contents of p to the buffer, growing the buffer as +// needed. The return value n is the length of p; err is always nil. If the +// buffer becomes too large, Write will panic with bytes.ErrTooLarge. +func (b *Buffer) Write(p []byte) (n int, err error) { + m := b.grow(len(p)) + return copy(b.buf[m:], p), nil +} + +// MinRead is the minimum slice size passed to a Read call by +// Buffer.ReadFrom. As long as the Buffer has at least MinRead bytes beyond +// what is required to hold the contents of r, ReadFrom will not grow the +// underlying buffer. +const MinRead = 512 + +// ReadFrom reads data from r until EOF and appends it to the buffer, growing +// the buffer as needed. The return value n is the number of bytes read. Any +// error except io.EOF encountered during the read is also returned. If the +// buffer becomes too large, ReadFrom will panic with bytes.ErrTooLarge. +func (b *Buffer) ReadFrom(r io.Reader) (n int64, err error) { + // If buffer is empty, reset to recover space. + if b.off >= len(b.buf) { + b.Truncate(0) + } + for { + if free := cap(b.buf) - len(b.buf); free < MinRead { + // not enough space at end + newBuf := b.buf + if b.off+free < MinRead { + // not enough space using beginning of buffer; + // double buffer capacity + newBuf = makeSlice(2*cap(b.buf) + MinRead) + } + copy(newBuf, b.buf[b.off:]) + b.buf = newBuf[:len(b.buf)-b.off] + b.off = 0 + } + m, e := r.Read(b.buf[len(b.buf):cap(b.buf)]) + b.buf = b.buf[0 : len(b.buf)+m] + n += int64(m) + if e == io.EOF { + break + } + if e != nil { + return n, e + } + } + return n, nil // err is EOF, so return nil explicitly +} + +// makeSlice allocates a slice of size n. If the allocation fails, it panics +// with bytes.ErrTooLarge. +func makeSlice(n int) []byte { + // If the make fails, give a known error. + defer func() { + if recover() != nil { + panic(bytes.ErrTooLarge) + } + }() + return make([]byte, n) +} + +// WriteTo writes data to w until the buffer is drained or an error occurs. +// The return value n is the number of bytes written; it always fits into an +// int, but it is int64 to match the io.WriterTo interface. Any error +// encountered during the write is also returned. +func (b *Buffer) WriteTo(w io.Writer) (n int64, err error) { + if b.off < len(b.buf) { + nBytes := b.Len() + m, e := w.Write(b.buf[b.off:]) + if m > nBytes { + panic("leveldb/util.Buffer.WriteTo: invalid Write count") + } + b.off += m + n = int64(m) + if e != nil { + return n, e + } + // all bytes should have been written, by definition of + // Write method in io.Writer + if m != nBytes { + return n, io.ErrShortWrite + } + } + // Buffer is now empty; reset. + b.Truncate(0) + return +} + +// WriteByte appends the byte c to the buffer, growing the buffer as needed. +// The returned error is always nil, but is included to match bufio.Writer's +// WriteByte. If the buffer becomes too large, WriteByte will panic with +// bytes.ErrTooLarge. +func (b *Buffer) WriteByte(c byte) error { + m := b.grow(1) + b.buf[m] = c + return nil +} + +// Read reads the next len(p) bytes from the buffer or until the buffer +// is drained. The return value n is the number of bytes read. If the +// buffer has no data to return, err is io.EOF (unless len(p) is zero); +// otherwise it is nil. +func (b *Buffer) Read(p []byte) (n int, err error) { + if b.off >= len(b.buf) { + // Buffer is empty, reset to recover space. + b.Truncate(0) + if len(p) == 0 { + return + } + return 0, io.EOF + } + n = copy(p, b.buf[b.off:]) + b.off += n + return +} + +// Next returns a slice containing the next n bytes from the buffer, +// advancing the buffer as if the bytes had been returned by Read. +// If there are fewer than n bytes in the buffer, Next returns the entire buffer. +// The slice is only valid until the next call to a read or write method. +func (b *Buffer) Next(n int) []byte { + m := b.Len() + if n > m { + n = m + } + data := b.buf[b.off : b.off+n] + b.off += n + return data +} + +// ReadByte reads and returns the next byte from the buffer. +// If no byte is available, it returns error io.EOF. +func (b *Buffer) ReadByte() (c byte, err error) { + if b.off >= len(b.buf) { + // Buffer is empty, reset to recover space. + b.Truncate(0) + return 0, io.EOF + } + c = b.buf[b.off] + b.off++ + return c, nil +} + +// ReadBytes reads until the first occurrence of delim in the input, +// returning a slice containing the data up to and including the delimiter. +// If ReadBytes encounters an error before finding a delimiter, +// it returns the data read before the error and the error itself (often io.EOF). +// ReadBytes returns err != nil if and only if the returned data does not end in +// delim. +func (b *Buffer) ReadBytes(delim byte) (line []byte, err error) { + slice, err := b.readSlice(delim) + // return a copy of slice. The buffer's backing array may + // be overwritten by later calls. + line = append(line, slice...) + return +} + +// readSlice is like ReadBytes but returns a reference to internal buffer data. +func (b *Buffer) readSlice(delim byte) (line []byte, err error) { + i := bytes.IndexByte(b.buf[b.off:], delim) + end := b.off + i + 1 + if i < 0 { + end = len(b.buf) + err = io.EOF + } + line = b.buf[b.off:end] + b.off = end + return line, err +} + +// NewBuffer creates and initializes a new Buffer using buf as its initial +// contents. It is intended to prepare a Buffer to read existing data. It +// can also be used to size the internal buffer for writing. To do that, +// buf should have the desired capacity but a length of zero. +// +// In most cases, new(Buffer) (or just declaring a Buffer variable) is +// sufficient to initialize a Buffer. +func NewBuffer(buf []byte) *Buffer { return &Buffer{buf: buf} } diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/buffer_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/buffer_test.go new file mode 100644 index 00000000..87d96739 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/buffer_test.go @@ -0,0 +1,369 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package util + +import ( + "bytes" + "io" + "math/rand" + "runtime" + "testing" +) + +const N = 10000 // make this bigger for a larger (and slower) test +var data string // test data for write tests +var testBytes []byte // test data; same as data but as a slice. + +func init() { + testBytes = make([]byte, N) + for i := 0; i < N; i++ { + testBytes[i] = 'a' + byte(i%26) + } + data = string(testBytes) +} + +// Verify that contents of buf match the string s. +func check(t *testing.T, testname string, buf *Buffer, s string) { + bytes := buf.Bytes() + str := buf.String() + if buf.Len() != len(bytes) { + t.Errorf("%s: buf.Len() == %d, len(buf.Bytes()) == %d", testname, buf.Len(), len(bytes)) + } + + if buf.Len() != len(str) { + t.Errorf("%s: buf.Len() == %d, len(buf.String()) == %d", testname, buf.Len(), len(str)) + } + + if buf.Len() != len(s) { + t.Errorf("%s: buf.Len() == %d, len(s) == %d", testname, buf.Len(), len(s)) + } + + if string(bytes) != s { + t.Errorf("%s: string(buf.Bytes()) == %q, s == %q", testname, string(bytes), s) + } +} + +// Fill buf through n writes of byte slice fub. +// The initial contents of buf corresponds to the string s; +// the result is the final contents of buf returned as a string. +func fillBytes(t *testing.T, testname string, buf *Buffer, s string, n int, fub []byte) string { + check(t, testname+" (fill 1)", buf, s) + for ; n > 0; n-- { + m, err := buf.Write(fub) + if m != len(fub) { + t.Errorf(testname+" (fill 2): m == %d, expected %d", m, len(fub)) + } + if err != nil { + t.Errorf(testname+" (fill 3): err should always be nil, found err == %s", err) + } + s += string(fub) + check(t, testname+" (fill 4)", buf, s) + } + return s +} + +func TestNewBuffer(t *testing.T) { + buf := NewBuffer(testBytes) + check(t, "NewBuffer", buf, data) +} + +// Empty buf through repeated reads into fub. +// The initial contents of buf corresponds to the string s. +func empty(t *testing.T, testname string, buf *Buffer, s string, fub []byte) { + check(t, testname+" (empty 1)", buf, s) + + for { + n, err := buf.Read(fub) + if n == 0 { + break + } + if err != nil { + t.Errorf(testname+" (empty 2): err should always be nil, found err == %s", err) + } + s = s[n:] + check(t, testname+" (empty 3)", buf, s) + } + + check(t, testname+" (empty 4)", buf, "") +} + +func TestBasicOperations(t *testing.T) { + var buf Buffer + + for i := 0; i < 5; i++ { + check(t, "TestBasicOperations (1)", &buf, "") + + buf.Reset() + check(t, "TestBasicOperations (2)", &buf, "") + + buf.Truncate(0) + check(t, "TestBasicOperations (3)", &buf, "") + + n, err := buf.Write([]byte(data[0:1])) + if n != 1 { + t.Errorf("wrote 1 byte, but n == %d", n) + } + if err != nil { + t.Errorf("err should always be nil, but err == %s", err) + } + check(t, "TestBasicOperations (4)", &buf, "a") + + buf.WriteByte(data[1]) + check(t, "TestBasicOperations (5)", &buf, "ab") + + n, err = buf.Write([]byte(data[2:26])) + if n != 24 { + t.Errorf("wrote 25 bytes, but n == %d", n) + } + check(t, "TestBasicOperations (6)", &buf, string(data[0:26])) + + buf.Truncate(26) + check(t, "TestBasicOperations (7)", &buf, string(data[0:26])) + + buf.Truncate(20) + check(t, "TestBasicOperations (8)", &buf, string(data[0:20])) + + empty(t, "TestBasicOperations (9)", &buf, string(data[0:20]), make([]byte, 5)) + empty(t, "TestBasicOperations (10)", &buf, "", make([]byte, 100)) + + buf.WriteByte(data[1]) + c, err := buf.ReadByte() + if err != nil { + t.Error("ReadByte unexpected eof") + } + if c != data[1] { + t.Errorf("ReadByte wrong value c=%v", c) + } + c, err = buf.ReadByte() + if err == nil { + t.Error("ReadByte unexpected not eof") + } + } +} + +func TestLargeByteWrites(t *testing.T) { + var buf Buffer + limit := 30 + if testing.Short() { + limit = 9 + } + for i := 3; i < limit; i += 3 { + s := fillBytes(t, "TestLargeWrites (1)", &buf, "", 5, testBytes) + empty(t, "TestLargeByteWrites (2)", &buf, s, make([]byte, len(data)/i)) + } + check(t, "TestLargeByteWrites (3)", &buf, "") +} + +func TestLargeByteReads(t *testing.T) { + var buf Buffer + for i := 3; i < 30; i += 3 { + s := fillBytes(t, "TestLargeReads (1)", &buf, "", 5, testBytes[0:len(testBytes)/i]) + empty(t, "TestLargeReads (2)", &buf, s, make([]byte, len(data))) + } + check(t, "TestLargeByteReads (3)", &buf, "") +} + +func TestMixedReadsAndWrites(t *testing.T) { + var buf Buffer + s := "" + for i := 0; i < 50; i++ { + wlen := rand.Intn(len(data)) + s = fillBytes(t, "TestMixedReadsAndWrites (1)", &buf, s, 1, testBytes[0:wlen]) + rlen := rand.Intn(len(data)) + fub := make([]byte, rlen) + n, _ := buf.Read(fub) + s = s[n:] + } + empty(t, "TestMixedReadsAndWrites (2)", &buf, s, make([]byte, buf.Len())) +} + +func TestNil(t *testing.T) { + var b *Buffer + if b.String() != "" { + t.Errorf("expected ; got %q", b.String()) + } +} + +func TestReadFrom(t *testing.T) { + var buf Buffer + for i := 3; i < 30; i += 3 { + s := fillBytes(t, "TestReadFrom (1)", &buf, "", 5, testBytes[0:len(testBytes)/i]) + var b Buffer + b.ReadFrom(&buf) + empty(t, "TestReadFrom (2)", &b, s, make([]byte, len(data))) + } +} + +func TestWriteTo(t *testing.T) { + var buf Buffer + for i := 3; i < 30; i += 3 { + s := fillBytes(t, "TestWriteTo (1)", &buf, "", 5, testBytes[0:len(testBytes)/i]) + var b Buffer + buf.WriteTo(&b) + empty(t, "TestWriteTo (2)", &b, s, make([]byte, len(data))) + } +} + +func TestNext(t *testing.T) { + b := []byte{0, 1, 2, 3, 4} + tmp := make([]byte, 5) + for i := 0; i <= 5; i++ { + for j := i; j <= 5; j++ { + for k := 0; k <= 6; k++ { + // 0 <= i <= j <= 5; 0 <= k <= 6 + // Check that if we start with a buffer + // of length j at offset i and ask for + // Next(k), we get the right bytes. + buf := NewBuffer(b[0:j]) + n, _ := buf.Read(tmp[0:i]) + if n != i { + t.Fatalf("Read %d returned %d", i, n) + } + bb := buf.Next(k) + want := k + if want > j-i { + want = j - i + } + if len(bb) != want { + t.Fatalf("in %d,%d: len(Next(%d)) == %d", i, j, k, len(bb)) + } + for l, v := range bb { + if v != byte(l+i) { + t.Fatalf("in %d,%d: Next(%d)[%d] = %d, want %d", i, j, k, l, v, l+i) + } + } + } + } + } +} + +var readBytesTests = []struct { + buffer string + delim byte + expected []string + err error +}{ + {"", 0, []string{""}, io.EOF}, + {"a\x00", 0, []string{"a\x00"}, nil}, + {"abbbaaaba", 'b', []string{"ab", "b", "b", "aaab"}, nil}, + {"hello\x01world", 1, []string{"hello\x01"}, nil}, + {"foo\nbar", 0, []string{"foo\nbar"}, io.EOF}, + {"alpha\nbeta\ngamma\n", '\n', []string{"alpha\n", "beta\n", "gamma\n"}, nil}, + {"alpha\nbeta\ngamma", '\n', []string{"alpha\n", "beta\n", "gamma"}, io.EOF}, +} + +func TestReadBytes(t *testing.T) { + for _, test := range readBytesTests { + buf := NewBuffer([]byte(test.buffer)) + var err error + for _, expected := range test.expected { + var bytes []byte + bytes, err = buf.ReadBytes(test.delim) + if string(bytes) != expected { + t.Errorf("expected %q, got %q", expected, bytes) + } + if err != nil { + break + } + } + if err != test.err { + t.Errorf("expected error %v, got %v", test.err, err) + } + } +} + +func TestGrow(t *testing.T) { + x := []byte{'x'} + y := []byte{'y'} + tmp := make([]byte, 72) + for _, startLen := range []int{0, 100, 1000, 10000, 100000} { + xBytes := bytes.Repeat(x, startLen) + for _, growLen := range []int{0, 100, 1000, 10000, 100000} { + buf := NewBuffer(xBytes) + // If we read, this affects buf.off, which is good to test. + readBytes, _ := buf.Read(tmp) + buf.Grow(growLen) + yBytes := bytes.Repeat(y, growLen) + // Check no allocation occurs in write, as long as we're single-threaded. + var m1, m2 runtime.MemStats + runtime.ReadMemStats(&m1) + buf.Write(yBytes) + runtime.ReadMemStats(&m2) + if runtime.GOMAXPROCS(-1) == 1 && m1.Mallocs != m2.Mallocs { + t.Errorf("allocation occurred during write") + } + // Check that buffer has correct data. + if !bytes.Equal(buf.Bytes()[0:startLen-readBytes], xBytes[readBytes:]) { + t.Errorf("bad initial data at %d %d", startLen, growLen) + } + if !bytes.Equal(buf.Bytes()[startLen-readBytes:startLen-readBytes+growLen], yBytes) { + t.Errorf("bad written data at %d %d", startLen, growLen) + } + } + } +} + +// Was a bug: used to give EOF reading empty slice at EOF. +func TestReadEmptyAtEOF(t *testing.T) { + b := new(Buffer) + slice := make([]byte, 0) + n, err := b.Read(slice) + if err != nil { + t.Errorf("read error: %v", err) + } + if n != 0 { + t.Errorf("wrong count; got %d want 0", n) + } +} + +// Tests that we occasionally compact. Issue 5154. +func TestBufferGrowth(t *testing.T) { + var b Buffer + buf := make([]byte, 1024) + b.Write(buf[0:1]) + var cap0 int + for i := 0; i < 5<<10; i++ { + b.Write(buf) + b.Read(buf) + if i == 0 { + cap0 = cap(b.buf) + } + } + cap1 := cap(b.buf) + // (*Buffer).grow allows for 2x capacity slop before sliding, + // so set our error threshold at 3x. + if cap1 > cap0*3 { + t.Errorf("buffer cap = %d; too big (grew from %d)", cap1, cap0) + } +} + +// From Issue 5154. +func BenchmarkBufferNotEmptyWriteRead(b *testing.B) { + buf := make([]byte, 1024) + for i := 0; i < b.N; i++ { + var b Buffer + b.Write(buf[0:1]) + for i := 0; i < 5<<10; i++ { + b.Write(buf) + b.Read(buf) + } + } +} + +// Check that we don't compact too often. From Issue 5154. +func BenchmarkBufferFullSmallReads(b *testing.B) { + buf := make([]byte, 1024) + for i := 0; i < b.N; i++ { + var b Buffer + b.Write(buf) + for b.Len()+20 < cap(b.buf) { + b.Write(buf[:10]) + } + for i := 0; i < 5<<10; i++ { + b.Read(buf[:1]) + b.Write(buf[:1]) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/crc32.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/crc32.go new file mode 100644 index 00000000..631c9d61 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/crc32.go @@ -0,0 +1,30 @@ +// Copyright 2011 The LevelDB-Go Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package util + +import ( + "hash/crc32" +) + +var table = crc32.MakeTable(crc32.Castagnoli) + +// CRC is a CRC-32 checksum computed using Castagnoli's polynomial. +type CRC uint32 + +// NewCRC creates a new crc based on the given bytes. +func NewCRC(b []byte) CRC { + return CRC(0).Update(b) +} + +// Update updates the crc with the given bytes. +func (c CRC) Update(b []byte) CRC { + return CRC(crc32.Update(uint32(c), table, b)) +} + +// Value returns a masked crc. +func (c CRC) Value() uint32 { + return uint32(c>>15|c<<17) + 0xa282ead8 +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/hash.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/hash.go new file mode 100644 index 00000000..54903660 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/hash.go @@ -0,0 +1,48 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package util + +import ( + "bytes" + "encoding/binary" +) + +// Hash return hash of the given data. +func Hash(data []byte, seed uint32) uint32 { + // Similar to murmur hash + var m uint32 = 0xc6a4a793 + var r uint32 = 24 + h := seed ^ (uint32(len(data)) * m) + + buf := bytes.NewBuffer(data) + for buf.Len() >= 4 { + var w uint32 + binary.Read(buf, binary.LittleEndian, &w) + h += w + h *= m + h ^= (h >> 16) + } + + rest := buf.Bytes() + switch len(rest) { + default: + panic("not reached") + case 3: + h += uint32(rest[2]) << 16 + fallthrough + case 2: + h += uint32(rest[1]) << 8 + fallthrough + case 1: + h += uint32(rest[0]) + h *= m + h ^= (h >> r) + case 0: + } + + return h +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/range.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/range.go new file mode 100644 index 00000000..da058312 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/range.go @@ -0,0 +1,16 @@ +// Copyright (c) 2014, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package util + +// Range is a key range. +type Range struct { + // Start of the key range, include in the range. + Start []byte + + // Limit of the key range, not include in the range. + Limit []byte +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/util.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/util.go new file mode 100644 index 00000000..229c7d41 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/util/util.go @@ -0,0 +1,49 @@ +// Copyright (c) 2013, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Package util provides utilities used throughout leveldb. +package util + +import ( + "errors" +) + +var ( + ErrNotFound = errors.New("leveldb: not found") +) + +// Releaser is the interface that wraps the basic Release method. +type Releaser interface { + // Release releases associated resources. Release should always success + // and can be called multipe times without causing error. + Release() +} + +// ReleaseSetter is the interface that wraps the basic SetReleaser method. +type ReleaseSetter interface { + // SetReleaser associates the given releaser to the resources. The + // releaser will be called once coresponding resources released. + // Calling SetReleaser with nil will clear the releaser. + SetReleaser(releaser Releaser) +} + +// BasicReleaser provides basic implementation of Releaser and ReleaseSetter. +type BasicReleaser struct { + releaser Releaser +} + +// Release implements Releaser.Release. +func (r *BasicReleaser) Release() { + if r.releaser != nil { + r.releaser.Release() + r.releaser = nil + } +} + +// SetReleaser implements ReleaseSetter.SetReleaser. +func (r *BasicReleaser) SetReleaser(releaser Releaser) { + r.releaser = releaser +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/version.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/version.go new file mode 100644 index 00000000..52ba2907 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/leveldb/version.go @@ -0,0 +1,413 @@ +// Copyright (c) 2012, Suryandaru Triandana +// All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +package leveldb + +import ( + "errors" + "sync/atomic" + "unsafe" + + "github.com/syndtr/goleveldb/leveldb/iterator" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/util" +) + +var levelMaxSize [kNumLevels]float64 + +func init() { + // Precompute max size of each level + for level := range levelMaxSize { + res := float64(10 * 1048576) + for n := level; n > 1; n-- { + res *= 10 + } + levelMaxSize[level] = res + } +} + +type tSet struct { + level int + table *tFile +} + +type version struct { + s *session + + tables [kNumLevels]tFiles + + // Level that should be compacted next and its compaction score. + // Score < 1 means compaction is not strictly needed. These fields + // are initialized by ComputeCompaction() + cLevel int + cScore float64 + + cSeek unsafe.Pointer + + ref int + next *version +} + +func (v *version) release_NB() { + v.ref-- + if v.ref > 0 { + return + } + if v.ref < 0 { + panic("negative version ref") + } + + s := v.s + + tables := make(map[uint64]bool) + for _, tt := range v.next.tables { + for _, t := range tt { + num := t.file.Num() + tables[num] = true + } + } + + for _, tt := range v.tables { + for _, t := range tt { + num := t.file.Num() + if _, ok := tables[num]; !ok { + s.tops.remove(t) + } + } + } + + v.next.release_NB() + v.next = nil +} + +func (v *version) release() { + v.s.vmu.Lock() + v.release_NB() + v.s.vmu.Unlock() +} + +func (v *version) get(key iKey, ro *opt.ReadOptions) (value []byte, cstate bool, err error) { + s := v.s + icmp := s.cmp + ucmp := icmp.cmp + + ukey := key.ukey() + + var tset *tSet + tseek := true + + // We can search level-by-level since entries never hop across + // levels. Therefore we are guaranteed that if we find data + // in an smaller level, later levels are irrelevant. + for level, ts := range v.tables { + if len(ts) == 0 { + continue + } + + if level == 0 { + // Level-0 files may overlap each other. Find all files that + // overlap user_key and process them in order from newest to + var tmp tFiles + for _, t := range ts { + if ucmp.Compare(ukey, t.min.ukey()) >= 0 && + ucmp.Compare(ukey, t.max.ukey()) <= 0 { + tmp = append(tmp, t) + } + } + + if len(tmp) == 0 { + continue + } + + tmp.sortByNum() + ts = tmp + } else { + i := ts.searchMax(key, icmp) + if i >= len(ts) || ucmp.Compare(ukey, ts[i].min.ukey()) < 0 { + continue + } + + ts = ts[i : i+1] + } + + for _, t := range ts { + if tseek { + if tset == nil { + tset = &tSet{level, t} + } else if tset.table.incrSeek() <= 0 { + cstate = atomic.CompareAndSwapPointer(&v.cSeek, nil, unsafe.Pointer(tset)) + tseek = false + } + } + + var _rkey, rval []byte + _rkey, rval, err = s.tops.get(t, key, ro) + if err == ErrNotFound { + continue + } else if err != nil { + return + } + + rkey := iKey(_rkey) + if _, t, ok := rkey.parseNum(); ok { + if ucmp.Compare(ukey, rkey.ukey()) == 0 { + switch t { + case tVal: + value = rval + case tDel: + err = ErrNotFound + default: + panic("not reached") + } + return value, cstate, err + } + } else { + err = errors.New("leveldb: internal key corrupted") + return + } + } + } + + err = ErrNotFound + return +} + +func (v *version) getIterators(slice *util.Range, ro *opt.ReadOptions) (its []iterator.Iterator) { + s := v.s + icmp := s.cmp + + // Merge all level zero files together since they may overlap + for _, t := range v.tables[0] { + it := s.tops.newIterator(t, slice, ro) + its = append(its, it) + } + + strict := s.o.GetStrict(opt.StrictIterator) || ro.GetStrict(opt.StrictIterator) + for _, tt := range v.tables[1:] { + if len(tt) == 0 { + continue + } + + it := iterator.NewIndexedIterator(tt.newIndexIterator(s.tops, icmp, slice, ro), strict, true) + its = append(its, it) + } + + return +} + +func (v *version) newStaging() *versionStaging { + return &versionStaging{base: v} +} + +// Spawn a new version based on this version. +func (v *version) spawn(r *sessionRecord) *version { + staging := v.newStaging() + staging.commit(r) + return staging.finish() +} + +func (v *version) fillRecord(r *sessionRecord) { + for level, ts := range v.tables { + for _, t := range ts { + r.addTableFile(level, t) + } + } +} + +func (v *version) tLen(level int) int { + return len(v.tables[level]) +} + +func (v *version) getApproximateOffset(key iKey) (n uint64, err error) { + icmp := v.s.cmp + tops := v.s.tops + + for level, tt := range v.tables { + for _, t := range tt { + if icmp.Compare(t.max, key) <= 0 { + // Entire file is before "key", so just add the file size + n += t.size + } else if icmp.Compare(t.min, key) > 0 { + // Entire file is after "key", so ignore + if level > 0 { + // Files other than level 0 are sorted by meta->min, so + // no further files in this level will contain data for + // "key". + break + } + } else { + // "key" falls in the range for this table. Add the + // approximate offset of "key" within the table. + var nn uint64 + nn, err = tops.getApproximateOffset(t, key) + if err != nil { + return 0, err + } + n += nn + } + } + } + + return +} + +func (v *version) pickLevel(min, max []byte) (level int) { + icmp := v.s.cmp + ucmp := icmp.cmp + + if !v.tables[0].isOverlaps(min, max, false, icmp) { + var r tFiles + for ; level < kMaxMemCompactLevel; level++ { + if v.tables[level+1].isOverlaps(min, max, true, icmp) { + break + } + v.tables[level+2].getOverlaps(min, max, &r, true, ucmp) + if r.size() > kMaxGrandParentOverlapBytes { + break + } + } + } + + return +} + +func (v *version) computeCompaction() { + // Precomputed best level for next compaction + var bestLevel int = -1 + var bestScore float64 = -1 + + for level, ff := range v.tables { + var score float64 + if level == 0 { + // We treat level-0 specially by bounding the number of files + // instead of number of bytes for two reasons: + // + // (1) With larger write-buffer sizes, it is nice not to do too + // many level-0 compactions. + // + // (2) The files in level-0 are merged on every read and + // therefore we wish to avoid too many files when the individual + // file size is small (perhaps because of a small write-buffer + // setting, or very high compression ratios, or lots of + // overwrites/deletions). + score = float64(len(ff)) / kL0_CompactionTrigger + } else { + score = float64(ff.size()) / levelMaxSize[level] + } + + if score > bestScore { + bestLevel = level + bestScore = score + } + } + + v.cLevel = bestLevel + v.cScore = bestScore +} + +func (v *version) needCompaction() bool { + return v.cScore >= 1 || atomic.LoadPointer(&v.cSeek) != nil +} + +type versionStaging struct { + base *version + tables [kNumLevels]struct { + added map[uint64]ntRecord + deleted map[uint64]struct{} + } +} + +func (p *versionStaging) commit(r *sessionRecord) { + btt := p.base.tables + + // deleted tables + for _, tr := range r.deletedTables { + tm := &(p.tables[tr.level]) + + bt := btt[tr.level] + if len(bt) > 0 { + if tm.deleted == nil { + tm.deleted = make(map[uint64]struct{}) + } + tm.deleted[tr.num] = struct{}{} + } + + if tm.added != nil { + delete(tm.added, tr.num) + } + } + + // new tables + for _, tr := range r.addedTables { + tm := &(p.tables[tr.level]) + + if tm.added == nil { + tm.added = make(map[uint64]ntRecord) + } + tm.added[tr.num] = tr + + if tm.deleted != nil { + delete(tm.deleted, tr.num) + } + } +} + +func (p *versionStaging) finish() *version { + s := p.base.s + btt := p.base.tables + + // build new version + nv := &version{s: s} + for level, tm := range p.tables { + bt := btt[level] + + n := len(bt) + len(tm.added) - len(tm.deleted) + if n < 0 { + n = 0 + } + nt := make(tFiles, 0, n) + + // base tables + for _, t := range bt { + if _, ok := tm.deleted[t.file.Num()]; ok { + continue + } + if _, ok := tm.added[t.file.Num()]; ok { + continue + } + nt = append(nt, t) + } + + // new tables + for _, tr := range tm.added { + nt = append(nt, tr.makeFile(s)) + } + + // sort tables + nt.sortByKey(s.cmp) + nv.tables[level] = nt + } + + // compute compaction score for new version + nv.computeCompaction() + + return nv +} + +type versionReleaser struct { + v *version + once bool +} + +func (vr *versionReleaser) Release() { + v := vr.v + v.s.vmu.Lock() + if !vr.once { + v.release_NB() + vr.once = true + } + v.s.vmu.Unlock() +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/manualtest/filelock/main.go b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/manualtest/filelock/main.go new file mode 100644 index 00000000..3bed1f38 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/syndtr/goleveldb/manualtest/filelock/main.go @@ -0,0 +1,85 @@ +package main + +import ( + "bufio" + "bytes" + "flag" + "fmt" + "os" + "os/exec" + "path/filepath" + + "github.com/syndtr/goleveldb/leveldb/storage" +) + +var ( + filename string + child bool +) + +func init() { + flag.StringVar(&filename, "filename", filepath.Join(os.TempDir(), "goleveldb_filelock_test"), "Filename used for testing") + flag.BoolVar(&child, "child", false, "This is the child") +} + +func runChild() error { + var args []string + args = append(args, os.Args[1:]...) + args = append(args, "-child") + cmd := exec.Command(os.Args[0], args...) + var out bytes.Buffer + cmd.Stdout = &out + err := cmd.Run() + r := bufio.NewReader(&out) + for { + line, _, e1 := r.ReadLine() + if e1 != nil { + break + } + fmt.Println("[Child]", string(line)) + } + return err +} + +func main() { + flag.Parse() + + fmt.Printf("Using path: %s\n", filename) + if child { + fmt.Println("Child flag set.") + } + + stor, err := storage.OpenFile(filename) + if err != nil { + fmt.Printf("Could not open storage: %s", err) + os.Exit(10) + } + + if !child { + fmt.Println("Executing child -- first test (expecting error)") + err := runChild() + if err == nil { + fmt.Println("Expecting error from child") + } else if err.Error() != "exit status 10" { + fmt.Println("Got unexpected error from child:", err) + } else { + fmt.Printf("Got error from child: %s (expected)\n", err) + } + } + + err = stor.Close() + if err != nil { + fmt.Printf("Error when closing storage: %s", err) + os.Exit(11) + } + + if !child { + fmt.Println("Executing child -- second test") + err := runChild() + if err != nil { + fmt.Println("Got unexpected error from child:", err) + } + } + + os.RemoveAll(filename) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/LICENSE new file mode 100644 index 00000000..ccae99f6 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) 2012, 2013 Ugorji Nwoke. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/README.md new file mode 100644 index 00000000..0d9d754d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/README.md @@ -0,0 +1,14 @@ +# go + +Collection of Open-Source Go libraries and tools. + +## Codec + +[Codec](https://github.com/ugorji/go/tree/master/codec#readme) is a High Performance and Feature-Rich Idiomatic encode/decode and rpc library for [msgpack](http://msgpack.org) and [Binc](https://github.com/ugorji/binc). + +Online documentation is at [http://godoc.org/github.com/ugorji/go/codec]. + +Install using: + + go get github.com/ugorji/go/codec + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/0doc.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/0doc.go new file mode 100644 index 00000000..c14d810a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/0doc.go @@ -0,0 +1,143 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +/* +High Performance, Feature-Rich Idiomatic Go encoding library for msgpack and binc . + +Supported Serialization formats are: + + - msgpack: [https://github.com/msgpack/msgpack] + - binc: [http://github.com/ugorji/binc] + +To install: + + go get github.com/ugorji/go/codec + +The idiomatic Go support is as seen in other encoding packages in +the standard library (ie json, xml, gob, etc). + +Rich Feature Set includes: + + - Simple but extremely powerful and feature-rich API + - Very High Performance. + Our extensive benchmarks show us outperforming Gob, Json and Bson by 2-4X. + This was achieved by taking extreme care on: + - managing allocation + - function frame size (important due to Go's use of split stacks), + - reflection use (and by-passing reflection for common types) + - recursion implications + - zero-copy mode (encoding/decoding to byte slice without using temp buffers) + - Correct. + Care was taken to precisely handle corner cases like: + overflows, nil maps and slices, nil value in stream, etc. + - Efficient zero-copying into temporary byte buffers + when encoding into or decoding from a byte slice. + - Standard field renaming via tags + - Encoding from any value + (struct, slice, map, primitives, pointers, interface{}, etc) + - Decoding into pointer to any non-nil typed value + (struct, slice, map, int, float32, bool, string, reflect.Value, etc) + - Supports extension functions to handle the encode/decode of custom types + - Support Go 1.2 encoding.BinaryMarshaler/BinaryUnmarshaler + - Schema-less decoding + (decode into a pointer to a nil interface{} as opposed to a typed non-nil value). + Includes Options to configure what specific map or slice type to use + when decoding an encoded list or map into a nil interface{} + - Provides a RPC Server and Client Codec for net/rpc communication protocol. + - Msgpack Specific: + - Provides extension functions to handle spec-defined extensions (binary, timestamp) + - Options to resolve ambiguities in handling raw bytes (as string or []byte) + during schema-less decoding (decoding into a nil interface{}) + - RPC Server/Client Codec for msgpack-rpc protocol defined at: + https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md + - Fast Paths for some container types: + For some container types, we circumvent reflection and its associated overhead + and allocation costs, and encode/decode directly. These types are: + []interface{} + []int + []string + map[interface{}]interface{} + map[int]interface{} + map[string]interface{} + +Extension Support + +Users can register a function to handle the encoding or decoding of +their custom types. + +There are no restrictions on what the custom type can be. Some examples: + + type BisSet []int + type BitSet64 uint64 + type UUID string + type MyStructWithUnexportedFields struct { a int; b bool; c []int; } + type GifImage struct { ... } + +As an illustration, MyStructWithUnexportedFields would normally be +encoded as an empty map because it has no exported fields, while UUID +would be encoded as a string. However, with extension support, you can +encode any of these however you like. + +RPC + +RPC Client and Server Codecs are implemented, so the codecs can be used +with the standard net/rpc package. + +Usage + +Typical usage model: + + // create and configure Handle + var ( + bh codec.BincHandle + mh codec.MsgpackHandle + ) + + mh.MapType = reflect.TypeOf(map[string]interface{}(nil)) + + // configure extensions + // e.g. for msgpack, define functions and enable Time support for tag 1 + // mh.AddExt(reflect.TypeOf(time.Time{}), 1, myMsgpackTimeEncodeExtFn, myMsgpackTimeDecodeExtFn) + + // create and use decoder/encoder + var ( + r io.Reader + w io.Writer + b []byte + h = &bh // or mh to use msgpack + ) + + dec = codec.NewDecoder(r, h) + dec = codec.NewDecoderBytes(b, h) + err = dec.Decode(&v) + + enc = codec.NewEncoder(w, h) + enc = codec.NewEncoderBytes(&b, h) + err = enc.Encode(v) + + //RPC Server + go func() { + for { + conn, err := listener.Accept() + rpcCodec := codec.GoRpc.ServerCodec(conn, h) + //OR rpcCodec := codec.MsgpackSpecRpc.ServerCodec(conn, h) + rpc.ServeCodec(rpcCodec) + } + }() + + //RPC Communication (client side) + conn, err = net.Dial("tcp", "localhost:5555") + rpcCodec := codec.GoRpc.ClientCodec(conn, h) + //OR rpcCodec := codec.MsgpackSpecRpc.ClientCodec(conn, h) + client := rpc.NewClientWithCodec(rpcCodec) + +Representative Benchmark Results + +Run the benchmark suite using: + go test -bi -bench=. -benchmem + +To run full benchmark suite (including against vmsgpack and bson), +see notes in ext_dep_test.go + +*/ +package codec diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/README.md new file mode 100644 index 00000000..6c95d1bf --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/README.md @@ -0,0 +1,174 @@ +# Codec + +High Performance and Feature-Rich Idiomatic Go Library providing +encode/decode support for different serialization formats. + +Supported Serialization formats are: + + - msgpack: [https://github.com/msgpack/msgpack] + - binc: [http://github.com/ugorji/binc] + +To install: + + go get github.com/ugorji/go/codec + +Online documentation: [http://godoc.org/github.com/ugorji/go/codec] + +The idiomatic Go support is as seen in other encoding packages in +the standard library (ie json, xml, gob, etc). + +Rich Feature Set includes: + + - Simple but extremely powerful and feature-rich API + - Very High Performance. + Our extensive benchmarks show us outperforming Gob, Json and Bson by 2-4X. + This was achieved by taking extreme care on: + - managing allocation + - function frame size (important due to Go's use of split stacks), + - reflection use (and by-passing reflection for common types) + - recursion implications + - zero-copy mode (encoding/decoding to byte slice without using temp buffers) + - Correct. + Care was taken to precisely handle corner cases like: + overflows, nil maps and slices, nil value in stream, etc. + - Efficient zero-copying into temporary byte buffers + when encoding into or decoding from a byte slice. + - Standard field renaming via tags + - Encoding from any value + (struct, slice, map, primitives, pointers, interface{}, etc) + - Decoding into pointer to any non-nil typed value + (struct, slice, map, int, float32, bool, string, reflect.Value, etc) + - Supports extension functions to handle the encode/decode of custom types + - Support Go 1.2 encoding.BinaryMarshaler/BinaryUnmarshaler + - Schema-less decoding + (decode into a pointer to a nil interface{} as opposed to a typed non-nil value). + Includes Options to configure what specific map or slice type to use + when decoding an encoded list or map into a nil interface{} + - Provides a RPC Server and Client Codec for net/rpc communication protocol. + - Msgpack Specific: + - Provides extension functions to handle spec-defined extensions (binary, timestamp) + - Options to resolve ambiguities in handling raw bytes (as string or []byte) + during schema-less decoding (decoding into a nil interface{}) + - RPC Server/Client Codec for msgpack-rpc protocol defined at: + https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md + - Fast Paths for some container types: + For some container types, we circumvent reflection and its associated overhead + and allocation costs, and encode/decode directly. These types are: + []interface{} + []int + []string + map[interface{}]interface{} + map[int]interface{} + map[string]interface{} + +## Extension Support + +Users can register a function to handle the encoding or decoding of +their custom types. + +There are no restrictions on what the custom type can be. Some examples: + + type BisSet []int + type BitSet64 uint64 + type UUID string + type MyStructWithUnexportedFields struct { a int; b bool; c []int; } + type GifImage struct { ... } + +As an illustration, MyStructWithUnexportedFields would normally be +encoded as an empty map because it has no exported fields, while UUID +would be encoded as a string. However, with extension support, you can +encode any of these however you like. + +## RPC + +RPC Client and Server Codecs are implemented, so the codecs can be used +with the standard net/rpc package. + +## Usage + +Typical usage model: + + // create and configure Handle + var ( + bh codec.BincHandle + mh codec.MsgpackHandle + ) + + mh.MapType = reflect.TypeOf(map[string]interface{}(nil)) + + // configure extensions + // e.g. for msgpack, define functions and enable Time support for tag 1 + // mh.AddExt(reflect.TypeOf(time.Time{}), 1, myMsgpackTimeEncodeExtFn, myMsgpackTimeDecodeExtFn) + + // create and use decoder/encoder + var ( + r io.Reader + w io.Writer + b []byte + h = &bh // or mh to use msgpack + ) + + dec = codec.NewDecoder(r, h) + dec = codec.NewDecoderBytes(b, h) + err = dec.Decode(&v) + + enc = codec.NewEncoder(w, h) + enc = codec.NewEncoderBytes(&b, h) + err = enc.Encode(v) + + //RPC Server + go func() { + for { + conn, err := listener.Accept() + rpcCodec := codec.GoRpc.ServerCodec(conn, h) + //OR rpcCodec := codec.MsgpackSpecRpc.ServerCodec(conn, h) + rpc.ServeCodec(rpcCodec) + } + }() + + //RPC Communication (client side) + conn, err = net.Dial("tcp", "localhost:5555") + rpcCodec := codec.GoRpc.ClientCodec(conn, h) + //OR rpcCodec := codec.MsgpackSpecRpc.ClientCodec(conn, h) + client := rpc.NewClientWithCodec(rpcCodec) + +## Representative Benchmark Results + +A sample run of benchmark using "go test -bi -bench=. -benchmem": + + /proc/cpuinfo: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (HT) + + .............................................. + BENCHMARK INIT: 2013-10-16 11:02:50.345970786 -0400 EDT + To run full benchmark comparing encodings (MsgPack, Binc, JSON, GOB, etc), use: "go test -bench=." + Benchmark: + Struct recursive Depth: 1 + ApproxDeepSize Of benchmark Struct: 4694 bytes + Benchmark One-Pass Run: + v-msgpack: len: 1600 bytes + bson: len: 3025 bytes + msgpack: len: 1560 bytes + binc: len: 1187 bytes + gob: len: 1972 bytes + json: len: 2538 bytes + .............................................. + PASS + Benchmark__Msgpack____Encode 50000 54359 ns/op 14953 B/op 83 allocs/op + Benchmark__Msgpack____Decode 10000 106531 ns/op 14990 B/op 410 allocs/op + Benchmark__Binc_NoSym_Encode 50000 53956 ns/op 14966 B/op 83 allocs/op + Benchmark__Binc_NoSym_Decode 10000 103751 ns/op 14529 B/op 386 allocs/op + Benchmark__Binc_Sym___Encode 50000 65961 ns/op 17130 B/op 88 allocs/op + Benchmark__Binc_Sym___Decode 10000 106310 ns/op 15857 B/op 287 allocs/op + Benchmark__Gob________Encode 10000 135944 ns/op 21189 B/op 237 allocs/op + Benchmark__Gob________Decode 5000 405390 ns/op 83460 B/op 1841 allocs/op + Benchmark__Json_______Encode 20000 79412 ns/op 13874 B/op 102 allocs/op + Benchmark__Json_______Decode 10000 247979 ns/op 14202 B/op 493 allocs/op + Benchmark__Bson_______Encode 10000 121762 ns/op 27814 B/op 514 allocs/op + Benchmark__Bson_______Decode 10000 162126 ns/op 16514 B/op 789 allocs/op + Benchmark__VMsgpack___Encode 50000 69155 ns/op 12370 B/op 344 allocs/op + Benchmark__VMsgpack___Decode 10000 151609 ns/op 20307 B/op 571 allocs/op + ok ugorji.net/codec 30.827s + +To run full benchmark suite (including against vmsgpack and bson), +see notes in ext\_dep\_test.go + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/bench_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/bench_test.go new file mode 100644 index 00000000..4d437035 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/bench_test.go @@ -0,0 +1,319 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import ( + "bytes" + "encoding/gob" + "encoding/json" + "flag" + "fmt" + "reflect" + "runtime" + "testing" + "time" +) + +// Sample way to run: +// go test -bi -bv -bd=1 -benchmem -bench=. + +var ( + _ = fmt.Printf + benchTs *TestStruc + + approxSize int + + benchDoInitBench bool + benchVerify bool + benchUnscientificRes bool = false + //depth of 0 maps to ~400bytes json-encoded string, 1 maps to ~1400 bytes, etc + //For depth>1, we likely trigger stack growth for encoders, making benchmarking unreliable. + benchDepth int + benchInitDebug bool + benchCheckers []benchChecker +) + +type benchEncFn func(interface{}) ([]byte, error) +type benchDecFn func([]byte, interface{}) error +type benchIntfFn func() interface{} + +type benchChecker struct { + name string + encodefn benchEncFn + decodefn benchDecFn +} + +func benchInitFlags() { + flag.BoolVar(&benchInitDebug, "bg", false, "Bench Debug") + flag.IntVar(&benchDepth, "bd", 1, "Bench Depth: If >1, potential unreliable results due to stack growth") + flag.BoolVar(&benchDoInitBench, "bi", false, "Run Bench Init") + flag.BoolVar(&benchVerify, "bv", false, "Verify Decoded Value during Benchmark") + flag.BoolVar(&benchUnscientificRes, "bu", false, "Show Unscientific Results during Benchmark") +} + +func benchInit() { + benchTs = newTestStruc(benchDepth, true) + approxSize = approxDataSize(reflect.ValueOf(benchTs)) + bytesLen := 1024 * 4 * (benchDepth + 1) * (benchDepth + 1) + if bytesLen < approxSize { + bytesLen = approxSize + } + + benchCheckers = append(benchCheckers, + benchChecker{"msgpack", fnMsgpackEncodeFn, fnMsgpackDecodeFn}, + benchChecker{"binc-nosym", fnBincNoSymEncodeFn, fnBincNoSymDecodeFn}, + benchChecker{"binc-sym", fnBincSymEncodeFn, fnBincSymDecodeFn}, + benchChecker{"simple", fnSimpleEncodeFn, fnSimpleDecodeFn}, + benchChecker{"gob", fnGobEncodeFn, fnGobDecodeFn}, + benchChecker{"json", fnJsonEncodeFn, fnJsonDecodeFn}, + ) + if benchDoInitBench { + runBenchInit() + } +} + +func runBenchInit() { + logT(nil, "..............................................") + logT(nil, "BENCHMARK INIT: %v", time.Now()) + logT(nil, "To run full benchmark comparing encodings (MsgPack, Binc, Simple, JSON, GOB, etc), "+ + "use: \"go test -bench=.\"") + logT(nil, "Benchmark: ") + logT(nil, "\tStruct recursive Depth: %d", benchDepth) + if approxSize > 0 { + logT(nil, "\tApproxDeepSize Of benchmark Struct: %d bytes", approxSize) + } + if benchUnscientificRes { + logT(nil, "Benchmark One-Pass Run (with Unscientific Encode/Decode times): ") + } else { + logT(nil, "Benchmark One-Pass Run:") + } + for _, bc := range benchCheckers { + doBenchCheck(bc.name, bc.encodefn, bc.decodefn) + } + logT(nil, "..............................................") + if benchInitDebug { + logT(nil, "<<<<====>>>> depth: %v, ts: %#v\n", benchDepth, benchTs) + } +} + +func fnBenchNewTs() interface{} { + return new(TestStruc) +} + +func doBenchCheck(name string, encfn benchEncFn, decfn benchDecFn) { + runtime.GC() + tnow := time.Now() + buf, err := encfn(benchTs) + if err != nil { + logT(nil, "\t%10s: **** Error encoding benchTs: %v", name, err) + } + encDur := time.Now().Sub(tnow) + encLen := len(buf) + runtime.GC() + if !benchUnscientificRes { + logT(nil, "\t%10s: len: %d bytes\n", name, encLen) + return + } + tnow = time.Now() + if err = decfn(buf, new(TestStruc)); err != nil { + logT(nil, "\t%10s: **** Error decoding into new TestStruc: %v", name, err) + } + decDur := time.Now().Sub(tnow) + logT(nil, "\t%10s: len: %d bytes, encode: %v, decode: %v\n", name, encLen, encDur, decDur) +} + +func fnBenchmarkEncode(b *testing.B, encName string, ts interface{}, encfn benchEncFn) { + runtime.GC() + b.ResetTimer() + for i := 0; i < b.N; i++ { + _, err := encfn(ts) + if err != nil { + logT(b, "Error encoding benchTs: %s: %v", encName, err) + b.FailNow() + } + } +} + +func fnBenchmarkDecode(b *testing.B, encName string, ts interface{}, + encfn benchEncFn, decfn benchDecFn, newfn benchIntfFn, +) { + buf, err := encfn(ts) + if err != nil { + logT(b, "Error encoding benchTs: %s: %v", encName, err) + b.FailNow() + } + runtime.GC() + b.ResetTimer() + for i := 0; i < b.N; i++ { + ts = newfn() + if err = decfn(buf, ts); err != nil { + logT(b, "Error decoding into new TestStruc: %s: %v", encName, err) + b.FailNow() + } + if benchVerify { + if vts, vok := ts.(*TestStruc); vok { + verifyTsTree(b, vts) + } + } + } +} + +func verifyTsTree(b *testing.B, ts *TestStruc) { + var ts0, ts1m, ts2m, ts1s, ts2s *TestStruc + ts0 = ts + + if benchDepth > 0 { + ts1m, ts1s = verifyCheckAndGet(b, ts0) + } + + if benchDepth > 1 { + ts2m, ts2s = verifyCheckAndGet(b, ts1m) + } + for _, tsx := range []*TestStruc{ts0, ts1m, ts2m, ts1s, ts2s} { + if tsx != nil { + verifyOneOne(b, tsx) + } + } +} + +func verifyCheckAndGet(b *testing.B, ts0 *TestStruc) (ts1m *TestStruc, ts1s *TestStruc) { + // if len(ts1m.Ms) <= 2 { + // logT(b, "Error: ts1m.Ms len should be > 2. Got: %v", len(ts1m.Ms)) + // b.FailNow() + // } + if len(ts0.Its) == 0 { + logT(b, "Error: ts0.Islice len should be > 0. Got: %v", len(ts0.Its)) + b.FailNow() + } + ts1m = ts0.Mtsptr["0"] + ts1s = ts0.Its[0] + if ts1m == nil || ts1s == nil { + logT(b, "Error: At benchDepth 1, No *TestStruc found") + b.FailNow() + } + return +} + +func verifyOneOne(b *testing.B, ts *TestStruc) { + if ts.I64slice[2] != int64(3) { + logT(b, "Error: Decode failed by checking values") + b.FailNow() + } +} + +func fnMsgpackEncodeFn(ts interface{}) (bs []byte, err error) { + err = NewEncoderBytes(&bs, testMsgpackH).Encode(ts) + return +} + +func fnMsgpackDecodeFn(buf []byte, ts interface{}) error { + return NewDecoderBytes(buf, testMsgpackH).Decode(ts) +} + +func fnBincEncodeFn(ts interface{}, sym AsSymbolFlag) (bs []byte, err error) { + tSym := testBincH.AsSymbols + testBincH.AsSymbols = sym + err = NewEncoderBytes(&bs, testBincH).Encode(ts) + testBincH.AsSymbols = tSym + return +} + +func fnBincDecodeFn(buf []byte, ts interface{}, sym AsSymbolFlag) (err error) { + tSym := testBincH.AsSymbols + testBincH.AsSymbols = sym + err = NewDecoderBytes(buf, testBincH).Decode(ts) + testBincH.AsSymbols = tSym + return +} + +func fnBincNoSymEncodeFn(ts interface{}) (bs []byte, err error) { + return fnBincEncodeFn(ts, AsSymbolNone) +} + +func fnBincNoSymDecodeFn(buf []byte, ts interface{}) error { + return fnBincDecodeFn(buf, ts, AsSymbolNone) +} + +func fnBincSymEncodeFn(ts interface{}) (bs []byte, err error) { + return fnBincEncodeFn(ts, AsSymbolAll) +} + +func fnBincSymDecodeFn(buf []byte, ts interface{}) error { + return fnBincDecodeFn(buf, ts, AsSymbolAll) +} + +func fnSimpleEncodeFn(ts interface{}) (bs []byte, err error) { + err = NewEncoderBytes(&bs, testSimpleH).Encode(ts) + return +} + +func fnSimpleDecodeFn(buf []byte, ts interface{}) error { + return NewDecoderBytes(buf, testSimpleH).Decode(ts) +} + +func fnGobEncodeFn(ts interface{}) ([]byte, error) { + bbuf := new(bytes.Buffer) + err := gob.NewEncoder(bbuf).Encode(ts) + return bbuf.Bytes(), err +} + +func fnGobDecodeFn(buf []byte, ts interface{}) error { + return gob.NewDecoder(bytes.NewBuffer(buf)).Decode(ts) +} + +func fnJsonEncodeFn(ts interface{}) ([]byte, error) { + return json.Marshal(ts) +} + +func fnJsonDecodeFn(buf []byte, ts interface{}) error { + return json.Unmarshal(buf, ts) +} + +func Benchmark__Msgpack____Encode(b *testing.B) { + fnBenchmarkEncode(b, "msgpack", benchTs, fnMsgpackEncodeFn) +} + +func Benchmark__Msgpack____Decode(b *testing.B) { + fnBenchmarkDecode(b, "msgpack", benchTs, fnMsgpackEncodeFn, fnMsgpackDecodeFn, fnBenchNewTs) +} + +func Benchmark__Binc_NoSym_Encode(b *testing.B) { + fnBenchmarkEncode(b, "binc", benchTs, fnBincNoSymEncodeFn) +} + +func Benchmark__Binc_NoSym_Decode(b *testing.B) { + fnBenchmarkDecode(b, "binc", benchTs, fnBincNoSymEncodeFn, fnBincNoSymDecodeFn, fnBenchNewTs) +} + +func Benchmark__Binc_Sym___Encode(b *testing.B) { + fnBenchmarkEncode(b, "binc", benchTs, fnBincSymEncodeFn) +} + +func Benchmark__Binc_Sym___Decode(b *testing.B) { + fnBenchmarkDecode(b, "binc", benchTs, fnBincSymEncodeFn, fnBincSymDecodeFn, fnBenchNewTs) +} + +func Benchmark__Simple____Encode(b *testing.B) { + fnBenchmarkEncode(b, "simple", benchTs, fnSimpleEncodeFn) +} + +func Benchmark__Simple____Decode(b *testing.B) { + fnBenchmarkDecode(b, "simple", benchTs, fnSimpleEncodeFn, fnSimpleDecodeFn, fnBenchNewTs) +} + +func Benchmark__Gob________Encode(b *testing.B) { + fnBenchmarkEncode(b, "gob", benchTs, fnGobEncodeFn) +} + +func Benchmark__Gob________Decode(b *testing.B) { + fnBenchmarkDecode(b, "gob", benchTs, fnGobEncodeFn, fnGobDecodeFn, fnBenchNewTs) +} + +func Benchmark__Json_______Encode(b *testing.B) { + fnBenchmarkEncode(b, "json", benchTs, fnJsonEncodeFn) +} + +func Benchmark__Json_______Decode(b *testing.B) { + fnBenchmarkDecode(b, "json", benchTs, fnJsonEncodeFn, fnJsonDecodeFn, fnBenchNewTs) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/binc.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/binc.go new file mode 100644 index 00000000..2bb5e8fe --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/binc.go @@ -0,0 +1,786 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import ( + "math" + // "reflect" + // "sync/atomic" + "time" + //"fmt" +) + +const bincDoPrune = true // No longer needed. Needed before as C lib did not support pruning. + +//var _ = fmt.Printf + +// vd as low 4 bits (there are 16 slots) +const ( + bincVdSpecial byte = iota + bincVdPosInt + bincVdNegInt + bincVdFloat + + bincVdString + bincVdByteArray + bincVdArray + bincVdMap + + bincVdTimestamp + bincVdSmallInt + bincVdUnicodeOther + bincVdSymbol + + bincVdDecimal + _ // open slot + _ // open slot + bincVdCustomExt = 0x0f +) + +const ( + bincSpNil byte = iota + bincSpFalse + bincSpTrue + bincSpNan + bincSpPosInf + bincSpNegInf + bincSpZeroFloat + bincSpZero + bincSpNegOne +) + +const ( + bincFlBin16 byte = iota + bincFlBin32 + _ // bincFlBin32e + bincFlBin64 + _ // bincFlBin64e + // others not currently supported +) + +type bincEncDriver struct { + w encWriter + m map[string]uint16 // symbols + s uint32 // symbols sequencer + b [8]byte +} + +func (e *bincEncDriver) isBuiltinType(rt uintptr) bool { + return rt == timeTypId +} + +func (e *bincEncDriver) encodeBuiltin(rt uintptr, v interface{}) { + switch rt { + case timeTypId: + bs := encodeTime(v.(time.Time)) + e.w.writen1(bincVdTimestamp<<4 | uint8(len(bs))) + e.w.writeb(bs) + } +} + +func (e *bincEncDriver) encodeNil() { + e.w.writen1(bincVdSpecial<<4 | bincSpNil) +} + +func (e *bincEncDriver) encodeBool(b bool) { + if b { + e.w.writen1(bincVdSpecial<<4 | bincSpTrue) + } else { + e.w.writen1(bincVdSpecial<<4 | bincSpFalse) + } +} + +func (e *bincEncDriver) encodeFloat32(f float32) { + if f == 0 { + e.w.writen1(bincVdSpecial<<4 | bincSpZeroFloat) + return + } + e.w.writen1(bincVdFloat<<4 | bincFlBin32) + e.w.writeUint32(math.Float32bits(f)) +} + +func (e *bincEncDriver) encodeFloat64(f float64) { + if f == 0 { + e.w.writen1(bincVdSpecial<<4 | bincSpZeroFloat) + return + } + bigen.PutUint64(e.b[:], math.Float64bits(f)) + if bincDoPrune { + i := 7 + for ; i >= 0 && (e.b[i] == 0); i-- { + } + i++ + if i <= 6 { + e.w.writen1(bincVdFloat<<4 | 0x8 | bincFlBin64) + e.w.writen1(byte(i)) + e.w.writeb(e.b[:i]) + return + } + } + e.w.writen1(bincVdFloat<<4 | bincFlBin64) + e.w.writeb(e.b[:]) +} + +func (e *bincEncDriver) encIntegerPrune(bd byte, pos bool, v uint64, lim uint8) { + if lim == 4 { + bigen.PutUint32(e.b[:lim], uint32(v)) + } else { + bigen.PutUint64(e.b[:lim], v) + } + if bincDoPrune { + i := pruneSignExt(e.b[:lim], pos) + e.w.writen1(bd | lim - 1 - byte(i)) + e.w.writeb(e.b[i:lim]) + } else { + e.w.writen1(bd | lim - 1) + e.w.writeb(e.b[:lim]) + } +} + +func (e *bincEncDriver) encodeInt(v int64) { + const nbd byte = bincVdNegInt << 4 + switch { + case v >= 0: + e.encUint(bincVdPosInt<<4, true, uint64(v)) + case v == -1: + e.w.writen1(bincVdSpecial<<4 | bincSpNegOne) + default: + e.encUint(bincVdNegInt<<4, false, uint64(-v)) + } +} + +func (e *bincEncDriver) encodeUint(v uint64) { + e.encUint(bincVdPosInt<<4, true, v) +} + +func (e *bincEncDriver) encUint(bd byte, pos bool, v uint64) { + switch { + case v == 0: + e.w.writen1(bincVdSpecial<<4 | bincSpZero) + case pos && v >= 1 && v <= 16: + e.w.writen1(bincVdSmallInt<<4 | byte(v-1)) + case v <= math.MaxUint8: + e.w.writen2(bd|0x0, byte(v)) + case v <= math.MaxUint16: + e.w.writen1(bd | 0x01) + e.w.writeUint16(uint16(v)) + case v <= math.MaxUint32: + e.encIntegerPrune(bd, pos, v, 4) + default: + e.encIntegerPrune(bd, pos, v, 8) + } +} + +func (e *bincEncDriver) encodeExtPreamble(xtag byte, length int) { + e.encLen(bincVdCustomExt<<4, uint64(length)) + e.w.writen1(xtag) +} + +func (e *bincEncDriver) encodeArrayPreamble(length int) { + e.encLen(bincVdArray<<4, uint64(length)) +} + +func (e *bincEncDriver) encodeMapPreamble(length int) { + e.encLen(bincVdMap<<4, uint64(length)) +} + +func (e *bincEncDriver) encodeString(c charEncoding, v string) { + l := uint64(len(v)) + e.encBytesLen(c, l) + if l > 0 { + e.w.writestr(v) + } +} + +func (e *bincEncDriver) encodeSymbol(v string) { + // if WriteSymbolsNoRefs { + // e.encodeString(c_UTF8, v) + // return + // } + + //symbols only offer benefit when string length > 1. + //This is because strings with length 1 take only 2 bytes to store + //(bd with embedded length, and single byte for string val). + + l := len(v) + switch l { + case 0: + e.encBytesLen(c_UTF8, 0) + return + case 1: + e.encBytesLen(c_UTF8, 1) + e.w.writen1(v[0]) + return + } + if e.m == nil { + e.m = make(map[string]uint16, 16) + } + ui, ok := e.m[v] + if ok { + if ui <= math.MaxUint8 { + e.w.writen2(bincVdSymbol<<4, byte(ui)) + } else { + e.w.writen1(bincVdSymbol<<4 | 0x8) + e.w.writeUint16(ui) + } + } else { + e.s++ + ui = uint16(e.s) + //ui = uint16(atomic.AddUint32(&e.s, 1)) + e.m[v] = ui + var lenprec uint8 + switch { + case l <= math.MaxUint8: + // lenprec = 0 + case l <= math.MaxUint16: + lenprec = 1 + case int64(l) <= math.MaxUint32: + lenprec = 2 + default: + lenprec = 3 + } + if ui <= math.MaxUint8 { + e.w.writen2(bincVdSymbol<<4|0x0|0x4|lenprec, byte(ui)) + } else { + e.w.writen1(bincVdSymbol<<4 | 0x8 | 0x4 | lenprec) + e.w.writeUint16(ui) + } + switch lenprec { + case 0: + e.w.writen1(byte(l)) + case 1: + e.w.writeUint16(uint16(l)) + case 2: + e.w.writeUint32(uint32(l)) + default: + e.w.writeUint64(uint64(l)) + } + e.w.writestr(v) + } +} + +func (e *bincEncDriver) encodeStringBytes(c charEncoding, v []byte) { + l := uint64(len(v)) + e.encBytesLen(c, l) + if l > 0 { + e.w.writeb(v) + } +} + +func (e *bincEncDriver) encBytesLen(c charEncoding, length uint64) { + //TODO: support bincUnicodeOther (for now, just use string or bytearray) + if c == c_RAW { + e.encLen(bincVdByteArray<<4, length) + } else { + e.encLen(bincVdString<<4, length) + } +} + +func (e *bincEncDriver) encLen(bd byte, l uint64) { + if l < 12 { + e.w.writen1(bd | uint8(l+4)) + } else { + e.encLenNumber(bd, l) + } +} + +func (e *bincEncDriver) encLenNumber(bd byte, v uint64) { + switch { + case v <= math.MaxUint8: + e.w.writen2(bd, byte(v)) + case v <= math.MaxUint16: + e.w.writen1(bd | 0x01) + e.w.writeUint16(uint16(v)) + case v <= math.MaxUint32: + e.w.writen1(bd | 0x02) + e.w.writeUint32(uint32(v)) + default: + e.w.writen1(bd | 0x03) + e.w.writeUint64(uint64(v)) + } +} + +//------------------------------------ + +type bincDecDriver struct { + r decReader + bdRead bool + bdType valueType + bd byte + vd byte + vs byte + b [8]byte + m map[uint32]string // symbols (use uint32 as key, as map optimizes for it) +} + +func (d *bincDecDriver) initReadNext() { + if d.bdRead { + return + } + d.bd = d.r.readn1() + d.vd = d.bd >> 4 + d.vs = d.bd & 0x0f + d.bdRead = true + d.bdType = valueTypeUnset +} + +func (d *bincDecDriver) currentEncodedType() valueType { + if d.bdType == valueTypeUnset { + switch d.vd { + case bincVdSpecial: + switch d.vs { + case bincSpNil: + d.bdType = valueTypeNil + case bincSpFalse, bincSpTrue: + d.bdType = valueTypeBool + case bincSpNan, bincSpNegInf, bincSpPosInf, bincSpZeroFloat: + d.bdType = valueTypeFloat + case bincSpZero: + d.bdType = valueTypeUint + case bincSpNegOne: + d.bdType = valueTypeInt + default: + decErr("currentEncodedType: Unrecognized special value 0x%x", d.vs) + } + case bincVdSmallInt: + d.bdType = valueTypeUint + case bincVdPosInt: + d.bdType = valueTypeUint + case bincVdNegInt: + d.bdType = valueTypeInt + case bincVdFloat: + d.bdType = valueTypeFloat + case bincVdString: + d.bdType = valueTypeString + case bincVdSymbol: + d.bdType = valueTypeSymbol + case bincVdByteArray: + d.bdType = valueTypeBytes + case bincVdTimestamp: + d.bdType = valueTypeTimestamp + case bincVdCustomExt: + d.bdType = valueTypeExt + case bincVdArray: + d.bdType = valueTypeArray + case bincVdMap: + d.bdType = valueTypeMap + default: + decErr("currentEncodedType: Unrecognized d.vd: 0x%x", d.vd) + } + } + return d.bdType +} + +func (d *bincDecDriver) tryDecodeAsNil() bool { + if d.bd == bincVdSpecial<<4|bincSpNil { + d.bdRead = false + return true + } + return false +} + +func (d *bincDecDriver) isBuiltinType(rt uintptr) bool { + return rt == timeTypId +} + +func (d *bincDecDriver) decodeBuiltin(rt uintptr, v interface{}) { + switch rt { + case timeTypId: + if d.vd != bincVdTimestamp { + decErr("Invalid d.vd. Expecting 0x%x. Received: 0x%x", bincVdTimestamp, d.vd) + } + tt, err := decodeTime(d.r.readn(int(d.vs))) + if err != nil { + panic(err) + } + var vt *time.Time = v.(*time.Time) + *vt = tt + d.bdRead = false + } +} + +func (d *bincDecDriver) decFloatPre(vs, defaultLen byte) { + if vs&0x8 == 0 { + d.r.readb(d.b[0:defaultLen]) + } else { + l := d.r.readn1() + if l > 8 { + decErr("At most 8 bytes used to represent float. Received: %v bytes", l) + } + for i := l; i < 8; i++ { + d.b[i] = 0 + } + d.r.readb(d.b[0:l]) + } +} + +func (d *bincDecDriver) decFloat() (f float64) { + //if true { f = math.Float64frombits(d.r.readUint64()); break; } + switch vs := d.vs; vs & 0x7 { + case bincFlBin32: + d.decFloatPre(vs, 4) + f = float64(math.Float32frombits(bigen.Uint32(d.b[0:4]))) + case bincFlBin64: + d.decFloatPre(vs, 8) + f = math.Float64frombits(bigen.Uint64(d.b[0:8])) + default: + decErr("only float32 and float64 are supported. d.vd: 0x%x, d.vs: 0x%x", d.vd, d.vs) + } + return +} + +func (d *bincDecDriver) decUint() (v uint64) { + // need to inline the code (interface conversion and type assertion expensive) + switch d.vs { + case 0: + v = uint64(d.r.readn1()) + case 1: + d.r.readb(d.b[6:]) + v = uint64(bigen.Uint16(d.b[6:])) + case 2: + d.b[4] = 0 + d.r.readb(d.b[5:]) + v = uint64(bigen.Uint32(d.b[4:])) + case 3: + d.r.readb(d.b[4:]) + v = uint64(bigen.Uint32(d.b[4:])) + case 4, 5, 6: + lim := int(7 - d.vs) + d.r.readb(d.b[lim:]) + for i := 0; i < lim; i++ { + d.b[i] = 0 + } + v = uint64(bigen.Uint64(d.b[:])) + case 7: + d.r.readb(d.b[:]) + v = uint64(bigen.Uint64(d.b[:])) + default: + decErr("unsigned integers with greater than 64 bits of precision not supported") + } + return +} + +func (d *bincDecDriver) decIntAny() (ui uint64, i int64, neg bool) { + switch d.vd { + case bincVdPosInt: + ui = d.decUint() + i = int64(ui) + case bincVdNegInt: + ui = d.decUint() + i = -(int64(ui)) + neg = true + case bincVdSmallInt: + i = int64(d.vs) + 1 + ui = uint64(d.vs) + 1 + case bincVdSpecial: + switch d.vs { + case bincSpZero: + //i = 0 + case bincSpNegOne: + neg = true + ui = 1 + i = -1 + default: + decErr("numeric decode fails for special value: d.vs: 0x%x", d.vs) + } + default: + decErr("number can only be decoded from uint or int values. d.bd: 0x%x, d.vd: 0x%x", d.bd, d.vd) + } + return +} + +func (d *bincDecDriver) decodeInt(bitsize uint8) (i int64) { + _, i, _ = d.decIntAny() + checkOverflow(0, i, bitsize) + d.bdRead = false + return +} + +func (d *bincDecDriver) decodeUint(bitsize uint8) (ui uint64) { + ui, i, neg := d.decIntAny() + if neg { + decErr("Assigning negative signed value: %v, to unsigned type", i) + } + checkOverflow(ui, 0, bitsize) + d.bdRead = false + return +} + +func (d *bincDecDriver) decodeFloat(chkOverflow32 bool) (f float64) { + switch d.vd { + case bincVdSpecial: + d.bdRead = false + switch d.vs { + case bincSpNan: + return math.NaN() + case bincSpPosInf: + return math.Inf(1) + case bincSpZeroFloat, bincSpZero: + return + case bincSpNegInf: + return math.Inf(-1) + default: + decErr("Invalid d.vs decoding float where d.vd=bincVdSpecial: %v", d.vs) + } + case bincVdFloat: + f = d.decFloat() + default: + _, i, _ := d.decIntAny() + f = float64(i) + } + checkOverflowFloat32(f, chkOverflow32) + d.bdRead = false + return +} + +// bool can be decoded from bool only (single byte). +func (d *bincDecDriver) decodeBool() (b bool) { + switch d.bd { + case (bincVdSpecial | bincSpFalse): + // b = false + case (bincVdSpecial | bincSpTrue): + b = true + default: + decErr("Invalid single-byte value for bool: %s: %x", msgBadDesc, d.bd) + } + d.bdRead = false + return +} + +func (d *bincDecDriver) readMapLen() (length int) { + if d.vd != bincVdMap { + decErr("Invalid d.vd for map. Expecting 0x%x. Got: 0x%x", bincVdMap, d.vd) + } + length = d.decLen() + d.bdRead = false + return +} + +func (d *bincDecDriver) readArrayLen() (length int) { + if d.vd != bincVdArray { + decErr("Invalid d.vd for array. Expecting 0x%x. Got: 0x%x", bincVdArray, d.vd) + } + length = d.decLen() + d.bdRead = false + return +} + +func (d *bincDecDriver) decLen() int { + if d.vs <= 3 { + return int(d.decUint()) + } + return int(d.vs - 4) +} + +func (d *bincDecDriver) decodeString() (s string) { + switch d.vd { + case bincVdString, bincVdByteArray: + if length := d.decLen(); length > 0 { + s = string(d.r.readn(length)) + } + case bincVdSymbol: + //from vs: extract numSymbolBytes, containsStringVal, strLenPrecision, + //extract symbol + //if containsStringVal, read it and put in map + //else look in map for string value + var symbol uint32 + vs := d.vs + //fmt.Printf(">>>> d.vs: 0b%b, & 0x8: %v, & 0x4: %v\n", d.vs, vs & 0x8, vs & 0x4) + if vs&0x8 == 0 { + symbol = uint32(d.r.readn1()) + } else { + symbol = uint32(d.r.readUint16()) + } + if d.m == nil { + d.m = make(map[uint32]string, 16) + } + + if vs&0x4 == 0 { + s = d.m[symbol] + } else { + var slen int + switch vs & 0x3 { + case 0: + slen = int(d.r.readn1()) + case 1: + slen = int(d.r.readUint16()) + case 2: + slen = int(d.r.readUint32()) + case 3: + slen = int(d.r.readUint64()) + } + s = string(d.r.readn(slen)) + d.m[symbol] = s + } + default: + decErr("Invalid d.vd for string. Expecting string:0x%x, bytearray:0x%x or symbol: 0x%x. Got: 0x%x", + bincVdString, bincVdByteArray, bincVdSymbol, d.vd) + } + d.bdRead = false + return +} + +func (d *bincDecDriver) decodeBytes(bs []byte) (bsOut []byte, changed bool) { + var clen int + switch d.vd { + case bincVdString, bincVdByteArray: + clen = d.decLen() + default: + decErr("Invalid d.vd for bytes. Expecting string:0x%x or bytearray:0x%x. Got: 0x%x", + bincVdString, bincVdByteArray, d.vd) + } + if clen > 0 { + // if no contents in stream, don't update the passed byteslice + if len(bs) != clen { + if len(bs) > clen { + bs = bs[:clen] + } else { + bs = make([]byte, clen) + } + bsOut = bs + changed = true + } + d.r.readb(bs) + } + d.bdRead = false + return +} + +func (d *bincDecDriver) decodeExt(verifyTag bool, tag byte) (xtag byte, xbs []byte) { + switch d.vd { + case bincVdCustomExt: + l := d.decLen() + xtag = d.r.readn1() + if verifyTag && xtag != tag { + decErr("Wrong extension tag. Got %b. Expecting: %v", xtag, tag) + } + xbs = d.r.readn(l) + case bincVdByteArray: + xbs, _ = d.decodeBytes(nil) + default: + decErr("Invalid d.vd for extensions (Expecting extensions or byte array). Got: 0x%x", d.vd) + } + d.bdRead = false + return +} + +func (d *bincDecDriver) decodeNaked() (v interface{}, vt valueType, decodeFurther bool) { + d.initReadNext() + + switch d.vd { + case bincVdSpecial: + switch d.vs { + case bincSpNil: + vt = valueTypeNil + case bincSpFalse: + vt = valueTypeBool + v = false + case bincSpTrue: + vt = valueTypeBool + v = true + case bincSpNan: + vt = valueTypeFloat + v = math.NaN() + case bincSpPosInf: + vt = valueTypeFloat + v = math.Inf(1) + case bincSpNegInf: + vt = valueTypeFloat + v = math.Inf(-1) + case bincSpZeroFloat: + vt = valueTypeFloat + v = float64(0) + case bincSpZero: + vt = valueTypeUint + v = int64(0) // int8(0) + case bincSpNegOne: + vt = valueTypeInt + v = int64(-1) // int8(-1) + default: + decErr("decodeNaked: Unrecognized special value 0x%x", d.vs) + } + case bincVdSmallInt: + vt = valueTypeUint + v = uint64(int8(d.vs)) + 1 // int8(d.vs) + 1 + case bincVdPosInt: + vt = valueTypeUint + v = d.decUint() + case bincVdNegInt: + vt = valueTypeInt + v = -(int64(d.decUint())) + case bincVdFloat: + vt = valueTypeFloat + v = d.decFloat() + case bincVdSymbol: + vt = valueTypeSymbol + v = d.decodeString() + case bincVdString: + vt = valueTypeString + v = d.decodeString() + case bincVdByteArray: + vt = valueTypeBytes + v, _ = d.decodeBytes(nil) + case bincVdTimestamp: + vt = valueTypeTimestamp + tt, err := decodeTime(d.r.readn(int(d.vs))) + if err != nil { + panic(err) + } + v = tt + case bincVdCustomExt: + vt = valueTypeExt + l := d.decLen() + var re RawExt + re.Tag = d.r.readn1() + re.Data = d.r.readn(l) + v = &re + vt = valueTypeExt + case bincVdArray: + vt = valueTypeArray + decodeFurther = true + case bincVdMap: + vt = valueTypeMap + decodeFurther = true + default: + decErr("decodeNaked: Unrecognized d.vd: 0x%x", d.vd) + } + + if !decodeFurther { + d.bdRead = false + } + return +} + +//------------------------------------ + +//BincHandle is a Handle for the Binc Schema-Free Encoding Format +//defined at https://github.com/ugorji/binc . +// +//BincHandle currently supports all Binc features with the following EXCEPTIONS: +// - only integers up to 64 bits of precision are supported. +// big integers are unsupported. +// - Only IEEE 754 binary32 and binary64 floats are supported (ie Go float32 and float64 types). +// extended precision and decimal IEEE 754 floats are unsupported. +// - Only UTF-8 strings supported. +// Unicode_Other Binc types (UTF16, UTF32) are currently unsupported. +//Note that these EXCEPTIONS are temporary and full support is possible and may happen soon. +type BincHandle struct { + BasicHandle +} + +func (h *BincHandle) newEncDriver(w encWriter) encDriver { + return &bincEncDriver{w: w} +} + +func (h *BincHandle) newDecDriver(r decReader) decDriver { + return &bincDecDriver{r: r} +} + +func (_ *BincHandle) writeExt() bool { + return true +} + +func (h *BincHandle) getBasicHandle() *BasicHandle { + return &h.BasicHandle +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/codecs_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/codecs_test.go new file mode 100644 index 00000000..cb184491 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/codecs_test.go @@ -0,0 +1,1002 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +// Test works by using a slice of interfaces. +// It can test for encoding/decoding into/from a nil interface{} +// or passing the object to encode/decode into. +// +// There are basically 2 main tests here. +// First test internally encodes and decodes things and verifies that +// the artifact was as expected. +// Second test will use python msgpack to create a bunch of golden files, +// read those files, and compare them to what it should be. It then +// writes those files back out and compares the byte streams. +// +// Taken together, the tests are pretty extensive. + +import ( + "bytes" + "encoding/gob" + "flag" + "fmt" + "io/ioutil" + "math" + "net" + "net/rpc" + "os" + "os/exec" + "path/filepath" + "reflect" + "runtime" + "strconv" + "sync/atomic" + "testing" + "time" +) + +type testVerifyArg int + +const ( + testVerifyMapTypeSame testVerifyArg = iota + testVerifyMapTypeStrIntf + testVerifyMapTypeIntfIntf + // testVerifySliceIntf + testVerifyForPython +) + +var ( + testInitDebug bool + testUseIoEncDec bool + testStructToArray bool + testWriteNoSymbols bool + + _ = fmt.Printf + skipVerifyVal interface{} = &(struct{}{}) + + // For Go Time, do not use a descriptive timezone. + // It's unnecessary, and makes it harder to do a reflect.DeepEqual. + // The Offset already tells what the offset should be, if not on UTC and unknown zone name. + timeLoc = time.FixedZone("", -8*60*60) // UTC-08:00 //time.UTC-8 + timeToCompare1 = time.Date(2012, 2, 2, 2, 2, 2, 2000, timeLoc) + timeToCompare2 = time.Date(1900, 2, 2, 2, 2, 2, 2000, timeLoc) + timeToCompare3 = time.Unix(0, 0).UTC() + timeToCompare4 = time.Time{}.UTC() + + table []interface{} // main items we encode + tableVerify []interface{} // we verify encoded things against this after decode + tableTestNilVerify []interface{} // for nil interface, use this to verify (rules are different) + tablePythonVerify []interface{} // for verifying for python, since Python sometimes + // will encode a float32 as float64, or large int as uint + testRpcInt = new(TestRpcInt) + testMsgpackH = &MsgpackHandle{} + testBincH = &BincHandle{} + testSimpleH = &SimpleHandle{} +) + +func testInitFlags() { + // delete(testDecOpts.ExtFuncs, timeTyp) + flag.BoolVar(&testInitDebug, "tg", false, "Test Debug") + flag.BoolVar(&testUseIoEncDec, "ti", false, "Use IO Reader/Writer for Marshal/Unmarshal") + flag.BoolVar(&testStructToArray, "ts", false, "Set StructToArray option") + flag.BoolVar(&testWriteNoSymbols, "tn", false, "Set NoSymbols option") +} + +type AnonInTestStruc struct { + AS string + AI64 int64 + AI16 int16 + AUi64 uint64 + ASslice []string + AI64slice []int64 +} + +type TestStruc struct { + S string + I64 int64 + I16 int16 + Ui64 uint64 + Ui8 uint8 + B bool + By byte + + Sslice []string + I64slice []int64 + I16slice []int16 + Ui64slice []uint64 + Ui8slice []uint8 + Bslice []bool + Byslice []byte + + Islice []interface{} + Iptrslice []*int64 + + AnonInTestStruc + + //M map[interface{}]interface{} `json:"-",bson:"-"` + Ms map[string]interface{} + Msi64 map[string]int64 + + Nintf interface{} //don't set this, so we can test for nil + T time.Time + Nmap map[string]bool //don't set this, so we can test for nil + Nslice []byte //don't set this, so we can test for nil + Nint64 *int64 //don't set this, so we can test for nil + Mtsptr map[string]*TestStruc + Mts map[string]TestStruc + Its []*TestStruc + Nteststruc *TestStruc +} + +type TestABC struct { + A, B, C string +} + +type TestRpcInt struct { + i int +} + +func (r *TestRpcInt) Update(n int, res *int) error { r.i = n; *res = r.i; return nil } +func (r *TestRpcInt) Square(ignore int, res *int) error { *res = r.i * r.i; return nil } +func (r *TestRpcInt) Mult(n int, res *int) error { *res = r.i * n; return nil } +func (r *TestRpcInt) EchoStruct(arg TestABC, res *string) error { + *res = fmt.Sprintf("%#v", arg) + return nil +} +func (r *TestRpcInt) Echo123(args []string, res *string) error { + *res = fmt.Sprintf("%#v", args) + return nil +} + +func testVerifyVal(v interface{}, arg testVerifyArg) (v2 interface{}) { + //for python msgpack, + // - all positive integers are unsigned 64-bit ints + // - all floats are float64 + switch iv := v.(type) { + case int8: + if iv > 0 { + v2 = uint64(iv) + } else { + v2 = int64(iv) + } + case int16: + if iv > 0 { + v2 = uint64(iv) + } else { + v2 = int64(iv) + } + case int32: + if iv > 0 { + v2 = uint64(iv) + } else { + v2 = int64(iv) + } + case int64: + if iv > 0 { + v2 = uint64(iv) + } else { + v2 = int64(iv) + } + case uint8: + v2 = uint64(iv) + case uint16: + v2 = uint64(iv) + case uint32: + v2 = uint64(iv) + case uint64: + v2 = uint64(iv) + case float32: + v2 = float64(iv) + case float64: + v2 = float64(iv) + case []interface{}: + m2 := make([]interface{}, len(iv)) + for j, vj := range iv { + m2[j] = testVerifyVal(vj, arg) + } + v2 = m2 + case map[string]bool: + switch arg { + case testVerifyMapTypeSame: + m2 := make(map[string]bool) + for kj, kv := range iv { + m2[kj] = kv + } + v2 = m2 + case testVerifyMapTypeStrIntf, testVerifyForPython: + m2 := make(map[string]interface{}) + for kj, kv := range iv { + m2[kj] = kv + } + v2 = m2 + case testVerifyMapTypeIntfIntf: + m2 := make(map[interface{}]interface{}) + for kj, kv := range iv { + m2[kj] = kv + } + v2 = m2 + } + case map[string]interface{}: + switch arg { + case testVerifyMapTypeSame: + m2 := make(map[string]interface{}) + for kj, kv := range iv { + m2[kj] = testVerifyVal(kv, arg) + } + v2 = m2 + case testVerifyMapTypeStrIntf, testVerifyForPython: + m2 := make(map[string]interface{}) + for kj, kv := range iv { + m2[kj] = testVerifyVal(kv, arg) + } + v2 = m2 + case testVerifyMapTypeIntfIntf: + m2 := make(map[interface{}]interface{}) + for kj, kv := range iv { + m2[kj] = testVerifyVal(kv, arg) + } + v2 = m2 + } + case map[interface{}]interface{}: + m2 := make(map[interface{}]interface{}) + for kj, kv := range iv { + m2[testVerifyVal(kj, arg)] = testVerifyVal(kv, arg) + } + v2 = m2 + case time.Time: + switch arg { + case testVerifyForPython: + if iv2 := iv.UnixNano(); iv2 > 0 { + v2 = uint64(iv2) + } else { + v2 = int64(iv2) + } + default: + v2 = v + } + default: + v2 = v + } + return +} + +func testInit() { + gob.Register(new(TestStruc)) + if testInitDebug { + ts0 := newTestStruc(2, false) + fmt.Printf("====> depth: %v, ts: %#v\n", 2, ts0) + } + + testBincH.StructToArray = testStructToArray + if testWriteNoSymbols { + testBincH.AsSymbols = AsSymbolNone + } else { + testBincH.AsSymbols = AsSymbolAll + } + testMsgpackH.StructToArray = testStructToArray + testMsgpackH.RawToString = true + // testMsgpackH.AddExt(byteSliceTyp, 0, testMsgpackH.BinaryEncodeExt, testMsgpackH.BinaryDecodeExt) + // testMsgpackH.AddExt(timeTyp, 1, testMsgpackH.TimeEncodeExt, testMsgpackH.TimeDecodeExt) + timeEncExt := func(rv reflect.Value) ([]byte, error) { + return encodeTime(rv.Interface().(time.Time)), nil + } + timeDecExt := func(rv reflect.Value, bs []byte) error { + tt, err := decodeTime(bs) + if err == nil { + rv.Set(reflect.ValueOf(tt)) + } + return err + } + + // add extensions for msgpack, simple for time.Time, so we can encode/decode same way. + testMsgpackH.AddExt(timeTyp, 1, timeEncExt, timeDecExt) + testSimpleH.AddExt(timeTyp, 1, timeEncExt, timeDecExt) + + primitives := []interface{}{ + int8(-8), + int16(-1616), + int32(-32323232), + int64(-6464646464646464), + uint8(192), + uint16(1616), + uint32(32323232), + uint64(6464646464646464), + byte(192), + float32(-3232.0), + float64(-6464646464.0), + float32(3232.0), + float64(6464646464.0), + false, + true, + nil, + "someday", + "", + "bytestring", + timeToCompare1, + timeToCompare2, + timeToCompare3, + timeToCompare4, + } + mapsAndStrucs := []interface{}{ + map[string]bool{ + "true": true, + "false": false, + }, + map[string]interface{}{ + "true": "True", + "false": false, + "uint16(1616)": uint16(1616), + }, + //add a complex combo map in here. (map has list which has map) + //note that after the first thing, everything else should be generic. + map[string]interface{}{ + "list": []interface{}{ + int16(1616), + int32(32323232), + true, + float32(-3232.0), + map[string]interface{}{ + "TRUE": true, + "FALSE": false, + }, + []interface{}{true, false}, + }, + "int32": int32(32323232), + "bool": true, + "LONG STRING": "123456789012345678901234567890123456789012345678901234567890", + "SHORT STRING": "1234567890", + }, + map[interface{}]interface{}{ + true: "true", + uint8(138): false, + "false": uint8(200), + }, + newTestStruc(0, false), + } + + table = []interface{}{} + table = append(table, primitives...) //0-19 are primitives + table = append(table, primitives) //20 is a list of primitives + table = append(table, mapsAndStrucs...) //21-24 are maps. 25 is a *struct + + tableVerify = make([]interface{}, len(table)) + tableTestNilVerify = make([]interface{}, len(table)) + tablePythonVerify = make([]interface{}, len(table)) + + lp := len(primitives) + av := tableVerify + for i, v := range table { + if i == lp+3 { + av[i] = skipVerifyVal + continue + } + //av[i] = testVerifyVal(v, testVerifyMapTypeSame) + switch v.(type) { + case []interface{}: + av[i] = testVerifyVal(v, testVerifyMapTypeSame) + case map[string]interface{}: + av[i] = testVerifyVal(v, testVerifyMapTypeSame) + case map[interface{}]interface{}: + av[i] = testVerifyVal(v, testVerifyMapTypeSame) + default: + av[i] = v + } + } + + av = tableTestNilVerify + for i, v := range table { + if i > lp+3 { + av[i] = skipVerifyVal + continue + } + av[i] = testVerifyVal(v, testVerifyMapTypeStrIntf) + } + + av = tablePythonVerify + for i, v := range table { + if i > lp+3 { + av[i] = skipVerifyVal + continue + } + av[i] = testVerifyVal(v, testVerifyForPython) + } + + tablePythonVerify = tablePythonVerify[:24] +} + +func testUnmarshal(v interface{}, data []byte, h Handle) error { + if testUseIoEncDec { + return NewDecoder(bytes.NewBuffer(data), h).Decode(v) + } + return NewDecoderBytes(data, h).Decode(v) +} + +func testMarshal(v interface{}, h Handle) (bs []byte, err error) { + if testUseIoEncDec { + var buf bytes.Buffer + err = NewEncoder(&buf, h).Encode(v) + bs = buf.Bytes() + return + } + err = NewEncoderBytes(&bs, h).Encode(v) + return +} + +func testMarshalErr(v interface{}, h Handle, t *testing.T, name string) (bs []byte, err error) { + if bs, err = testMarshal(v, h); err != nil { + logT(t, "Error encoding %s: %v, Err: %v", name, v, err) + t.FailNow() + } + return +} + +func testUnmarshalErr(v interface{}, data []byte, h Handle, t *testing.T, name string) (err error) { + if err = testUnmarshal(v, data, h); err != nil { + logT(t, "Error Decoding into %s: %v, Err: %v", name, v, err) + t.FailNow() + } + return +} + +func newTestStruc(depth int, bench bool) (ts *TestStruc) { + var i64a, i64b, i64c, i64d int64 = 64, 6464, 646464, 64646464 + + ts = &TestStruc{ + S: "some string", + I64: math.MaxInt64 * 2 / 3, // 64, + I16: 16, + Ui64: uint64(int64(math.MaxInt64 * 2 / 3)), // 64, //don't use MaxUint64, as bson can't write it + Ui8: 160, + B: true, + By: 5, + + Sslice: []string{"one", "two", "three"}, + I64slice: []int64{1, 2, 3}, + I16slice: []int16{4, 5, 6}, + Ui64slice: []uint64{137, 138, 139}, + Ui8slice: []uint8{210, 211, 212}, + Bslice: []bool{true, false, true, false}, + Byslice: []byte{13, 14, 15}, + + Islice: []interface{}{"true", true, "no", false, uint64(288), float64(0.4)}, + + Ms: map[string]interface{}{ + "true": "true", + "int64(9)": false, + }, + Msi64: map[string]int64{ + "one": 1, + "two": 2, + }, + T: timeToCompare1, + AnonInTestStruc: AnonInTestStruc{ + AS: "A-String", + AI64: 64, + AI16: 16, + AUi64: 64, + ASslice: []string{"Aone", "Atwo", "Athree"}, + AI64slice: []int64{1, 2, 3}, + }, + } + //For benchmarks, some things will not work. + if !bench { + //json and bson require string keys in maps + //ts.M = map[interface{}]interface{}{ + // true: "true", + // int8(9): false, + //} + //gob cannot encode nil in element in array (encodeArray: nil element) + ts.Iptrslice = []*int64{nil, &i64a, nil, &i64b, nil, &i64c, nil, &i64d, nil} + // ts.Iptrslice = nil + } + if depth > 0 { + depth-- + if ts.Mtsptr == nil { + ts.Mtsptr = make(map[string]*TestStruc) + } + if ts.Mts == nil { + ts.Mts = make(map[string]TestStruc) + } + ts.Mtsptr["0"] = newTestStruc(depth, bench) + ts.Mts["0"] = *(ts.Mtsptr["0"]) + ts.Its = append(ts.Its, ts.Mtsptr["0"]) + } + return +} + +// doTestCodecTableOne allows us test for different variations based on arguments passed. +func doTestCodecTableOne(t *testing.T, testNil bool, h Handle, + vs []interface{}, vsVerify []interface{}) { + //if testNil, then just test for when a pointer to a nil interface{} is passed. It should work. + //Current setup allows us test (at least manually) the nil interface or typed interface. + logT(t, "================ TestNil: %v ================\n", testNil) + for i, v0 := range vs { + logT(t, "..............................................") + logT(t, " Testing: #%d:, %T, %#v\n", i, v0, v0) + b0, err := testMarshalErr(v0, h, t, "v0") + if err != nil { + continue + } + logT(t, " Encoded bytes: len: %v, %v\n", len(b0), b0) + + var v1 interface{} + + if testNil { + err = testUnmarshal(&v1, b0, h) + } else { + if v0 != nil { + v0rt := reflect.TypeOf(v0) // ptr + rv1 := reflect.New(v0rt) + err = testUnmarshal(rv1.Interface(), b0, h) + v1 = rv1.Elem().Interface() + // v1 = reflect.Indirect(reflect.ValueOf(v1)).Interface() + } + } + + logT(t, " v1 returned: %T, %#v", v1, v1) + // if v1 != nil { + // logT(t, " v1 returned: %T, %#v", v1, v1) + // //we always indirect, because ptr to typed value may be passed (if not testNil) + // v1 = reflect.Indirect(reflect.ValueOf(v1)).Interface() + // } + if err != nil { + logT(t, "-------- Error: %v. Partial return: %v", err, v1) + failT(t) + continue + } + v0check := vsVerify[i] + if v0check == skipVerifyVal { + logT(t, " Nil Check skipped: Decoded: %T, %#v\n", v1, v1) + continue + } + + if err = deepEqual(v0check, v1); err == nil { + logT(t, "++++++++ Before and After marshal matched\n") + } else { + logT(t, "-------- Before and After marshal do not match: Error: %v"+ + " ====> GOLDEN: (%T) %#v, DECODED: (%T) %#v\n", err, v0check, v0check, v1, v1) + failT(t) + } + } +} + +func testCodecTableOne(t *testing.T, h Handle) { + // func TestMsgpackAllExperimental(t *testing.T) { + // dopts := testDecOpts(nil, nil, false, true, true), + + switch v := h.(type) { + case *MsgpackHandle: + var oldWriteExt, oldRawToString bool + oldWriteExt, v.WriteExt = v.WriteExt, true + oldRawToString, v.RawToString = v.RawToString, true + doTestCodecTableOne(t, false, h, table, tableVerify) + v.WriteExt, v.RawToString = oldWriteExt, oldRawToString + default: + doTestCodecTableOne(t, false, h, table, tableVerify) + } + // func TestMsgpackAll(t *testing.T) { + idxTime, numPrim, numMap := 19, 23, 4 + + //skip []interface{} containing time.Time + doTestCodecTableOne(t, false, h, table[:numPrim], tableVerify[:numPrim]) + doTestCodecTableOne(t, false, h, table[numPrim+1:], tableVerify[numPrim+1:]) + // func TestMsgpackNilStringMap(t *testing.T) { + var oldMapType reflect.Type + v := h.getBasicHandle() + oldMapType, v.MapType = v.MapType, mapStrIntfTyp + + //skip time.Time, []interface{} containing time.Time, last map, and newStruc + doTestCodecTableOne(t, true, h, table[:idxTime], tableTestNilVerify[:idxTime]) + doTestCodecTableOne(t, true, h, table[numPrim+1:numPrim+numMap], tableTestNilVerify[numPrim+1:numPrim+numMap]) + + v.MapType = oldMapType + + // func TestMsgpackNilIntf(t *testing.T) { + + //do newTestStruc and last element of map + doTestCodecTableOne(t, true, h, table[numPrim+numMap:], tableTestNilVerify[numPrim+numMap:]) + //TODO? What is this one? + //doTestCodecTableOne(t, true, h, table[17:18], tableTestNilVerify[17:18]) +} + +func testCodecMiscOne(t *testing.T, h Handle) { + b, err := testMarshalErr(32, h, t, "32") + // Cannot do this nil one, because faster type assertion decoding will panic + // var i *int32 + // if err = testUnmarshal(b, i, nil); err == nil { + // logT(t, "------- Expecting error because we cannot unmarshal to int32 nil ptr") + // t.FailNow() + // } + var i2 int32 = 0 + err = testUnmarshalErr(&i2, b, h, t, "int32-ptr") + if i2 != int32(32) { + logT(t, "------- didn't unmarshal to 32: Received: %d", i2) + t.FailNow() + } + + // func TestMsgpackDecodePtr(t *testing.T) { + ts := newTestStruc(0, false) + b, err = testMarshalErr(ts, h, t, "pointer-to-struct") + if len(b) < 40 { + logT(t, "------- Size must be > 40. Size: %d", len(b)) + t.FailNow() + } + logT(t, "------- b: %v", b) + ts2 := new(TestStruc) + err = testUnmarshalErr(ts2, b, h, t, "pointer-to-struct") + if ts2.I64 != math.MaxInt64*2/3 { + logT(t, "------- Unmarshal wrong. Expect I64 = 64. Got: %v", ts2.I64) + t.FailNow() + } + + // func TestMsgpackIntfDecode(t *testing.T) { + m := map[string]int{"A": 2, "B": 3} + p := []interface{}{m} + bs, err := testMarshalErr(p, h, t, "p") + + m2 := map[string]int{} + p2 := []interface{}{m2} + err = testUnmarshalErr(&p2, bs, h, t, "&p2") + + if m2["A"] != 2 || m2["B"] != 3 { + logT(t, "m2 not as expected: expecting: %v, got: %v", m, m2) + t.FailNow() + } + // log("m: %v, m2: %v, p: %v, p2: %v", m, m2, p, p2) + checkEqualT(t, p, p2, "p=p2") + checkEqualT(t, m, m2, "m=m2") + if err = deepEqual(p, p2); err == nil { + logT(t, "p and p2 match") + } else { + logT(t, "Not Equal: %v. p: %v, p2: %v", err, p, p2) + t.FailNow() + } + if err = deepEqual(m, m2); err == nil { + logT(t, "m and m2 match") + } else { + logT(t, "Not Equal: %v. m: %v, m2: %v", err, m, m2) + t.FailNow() + } + + // func TestMsgpackDecodeStructSubset(t *testing.T) { + // test that we can decode a subset of the stream + mm := map[string]interface{}{"A": 5, "B": 99, "C": 333} + bs, err = testMarshalErr(mm, h, t, "mm") + type ttt struct { + A uint8 + C int32 + } + var t2 ttt + testUnmarshalErr(&t2, bs, h, t, "t2") + t3 := ttt{5, 333} + checkEqualT(t, t2, t3, "t2=t3") + + // println(">>>>>") + // test simple arrays, non-addressable arrays, slices + type tarr struct { + A int64 + B [3]int64 + C []byte + D [3]byte + } + var tarr0 = tarr{1, [3]int64{2, 3, 4}, []byte{4, 5, 6}, [3]byte{7, 8, 9}} + // test both pointer and non-pointer (value) + for _, tarr1 := range []interface{}{tarr0, &tarr0} { + bs, err = testMarshalErr(tarr1, h, t, "tarr1") + var tarr2 tarr + testUnmarshalErr(&tarr2, bs, h, t, "tarr2") + checkEqualT(t, tarr0, tarr2, "tarr0=tarr2") + // fmt.Printf(">>>> err: %v. tarr1: %v, tarr2: %v\n", err, tarr0, tarr2) + } + + // test byte array, even if empty (msgpack only) + if h == testMsgpackH { + type ystruct struct { + Anarray []byte + } + var ya = ystruct{} + testUnmarshalErr(&ya, []byte{0x91, 0x90}, h, t, "ya") + } +} + +func testCodecEmbeddedPointer(t *testing.T, h Handle) { + type Z int + type A struct { + AnInt int + } + type B struct { + *Z + *A + MoreInt int + } + var z Z = 4 + x1 := &B{&z, &A{5}, 6} + bs, err := testMarshalErr(x1, h, t, "x1") + // fmt.Printf("buf: len(%v): %x\n", buf.Len(), buf.Bytes()) + var x2 = new(B) + err = testUnmarshalErr(x2, bs, h, t, "x2") + err = checkEqualT(t, x1, x2, "x1=x2") + _ = err +} + +func doTestRpcOne(t *testing.T, rr Rpc, h Handle, doRequest bool, exitSleepMs time.Duration, +) (port int) { + // rpc needs EOF, which is sent via a panic, and so must be recovered. + if !recoverPanicToErr { + logT(t, "EXPECTED. set recoverPanicToErr=true, since rpc needs EOF") + t.FailNow() + } + srv := rpc.NewServer() + srv.Register(testRpcInt) + ln, err := net.Listen("tcp", "127.0.0.1:0") + // log("listener: %v", ln.Addr()) + checkErrT(t, err) + port = (ln.Addr().(*net.TCPAddr)).Port + // var opts *DecoderOptions + // opts := testDecOpts + // opts.MapType = mapStrIntfTyp + // opts.RawToString = false + serverExitChan := make(chan bool, 1) + var serverExitFlag uint64 = 0 + serverFn := func() { + for { + conn1, err1 := ln.Accept() + // if err1 != nil { + // //fmt.Printf("accept err1: %v\n", err1) + // continue + // } + if atomic.LoadUint64(&serverExitFlag) == 1 { + serverExitChan <- true + conn1.Close() + return // exit serverFn goroutine + } + if err1 == nil { + var sc rpc.ServerCodec = rr.ServerCodec(conn1, h) + srv.ServeCodec(sc) + } + } + } + + clientFn := func(cc rpc.ClientCodec) { + cl := rpc.NewClientWithCodec(cc) + defer cl.Close() + var up, sq, mult int + var rstr string + // log("Calling client") + checkErrT(t, cl.Call("TestRpcInt.Update", 5, &up)) + // log("Called TestRpcInt.Update") + checkEqualT(t, testRpcInt.i, 5, "testRpcInt.i=5") + checkEqualT(t, up, 5, "up=5") + checkErrT(t, cl.Call("TestRpcInt.Square", 1, &sq)) + checkEqualT(t, sq, 25, "sq=25") + checkErrT(t, cl.Call("TestRpcInt.Mult", 20, &mult)) + checkEqualT(t, mult, 100, "mult=100") + checkErrT(t, cl.Call("TestRpcInt.EchoStruct", TestABC{"Aa", "Bb", "Cc"}, &rstr)) + checkEqualT(t, rstr, fmt.Sprintf("%#v", TestABC{"Aa", "Bb", "Cc"}), "rstr=") + checkErrT(t, cl.Call("TestRpcInt.Echo123", []string{"A1", "B2", "C3"}, &rstr)) + checkEqualT(t, rstr, fmt.Sprintf("%#v", []string{"A1", "B2", "C3"}), "rstr=") + } + + connFn := func() (bs net.Conn) { + // log("calling f1") + bs, err2 := net.Dial(ln.Addr().Network(), ln.Addr().String()) + //fmt.Printf("f1. bs: %v, err2: %v\n", bs, err2) + checkErrT(t, err2) + return + } + + exitFn := func() { + atomic.StoreUint64(&serverExitFlag, 1) + bs := connFn() + <-serverExitChan + bs.Close() + // serverExitChan <- true + } + + go serverFn() + runtime.Gosched() + //time.Sleep(100 * time.Millisecond) + if exitSleepMs == 0 { + defer ln.Close() + defer exitFn() + } + if doRequest { + bs := connFn() + cc := rr.ClientCodec(bs, h) + clientFn(cc) + } + if exitSleepMs != 0 { + go func() { + defer ln.Close() + time.Sleep(exitSleepMs) + exitFn() + }() + } + return +} + +// Comprehensive testing that generates data encoded from python msgpack, +// and validates that our code can read and write it out accordingly. +// We keep this unexported here, and put actual test in ext_dep_test.go. +// This way, it can be excluded by excluding file completely. +func doTestMsgpackPythonGenStreams(t *testing.T) { + logT(t, "TestPythonGenStreams") + tmpdir, err := ioutil.TempDir("", "golang-msgpack-test") + if err != nil { + logT(t, "-------- Unable to create temp directory\n") + t.FailNow() + } + defer os.RemoveAll(tmpdir) + logT(t, "tmpdir: %v", tmpdir) + cmd := exec.Command("python", "msgpack_test.py", "testdata", tmpdir) + //cmd.Stdin = strings.NewReader("some input") + //cmd.Stdout = &out + var cmdout []byte + if cmdout, err = cmd.CombinedOutput(); err != nil { + logT(t, "-------- Error running msgpack_test.py testdata. Err: %v", err) + logT(t, " %v", string(cmdout)) + t.FailNow() + } + + oldMapType := testMsgpackH.MapType + for i, v := range tablePythonVerify { + testMsgpackH.MapType = oldMapType + //load up the golden file based on number + //decode it + //compare to in-mem object + //encode it again + //compare to output stream + logT(t, "..............................................") + logT(t, " Testing: #%d: %T, %#v\n", i, v, v) + var bss []byte + bss, err = ioutil.ReadFile(filepath.Join(tmpdir, strconv.Itoa(i)+".golden")) + if err != nil { + logT(t, "-------- Error reading golden file: %d. Err: %v", i, err) + failT(t) + continue + } + testMsgpackH.MapType = mapStrIntfTyp + + var v1 interface{} + if err = testUnmarshal(&v1, bss, testMsgpackH); err != nil { + logT(t, "-------- Error decoding stream: %d: Err: %v", i, err) + failT(t) + continue + } + if v == skipVerifyVal { + continue + } + //no need to indirect, because we pass a nil ptr, so we already have the value + //if v1 != nil { v1 = reflect.Indirect(reflect.ValueOf(v1)).Interface() } + if err = deepEqual(v, v1); err == nil { + logT(t, "++++++++ Objects match") + } else { + logT(t, "-------- Objects do not match: %v. Source: %T. Decoded: %T", err, v, v1) + logT(t, "-------- AGAINST: %#v", v) + logT(t, "-------- DECODED: %#v <====> %#v", v1, reflect.Indirect(reflect.ValueOf(v1)).Interface()) + failT(t) + } + bsb, err := testMarshal(v1, testMsgpackH) + if err != nil { + logT(t, "Error encoding to stream: %d: Err: %v", i, err) + failT(t) + continue + } + if err = deepEqual(bsb, bss); err == nil { + logT(t, "++++++++ Bytes match") + } else { + logT(t, "???????? Bytes do not match. %v.", err) + xs := "--------" + if reflect.ValueOf(v).Kind() == reflect.Map { + xs = " " + logT(t, "%s It's a map. Ok that they don't match (dependent on ordering).", xs) + } else { + logT(t, "%s It's not a map. They should match.", xs) + failT(t) + } + logT(t, "%s FROM_FILE: %4d] %v", xs, len(bss), bss) + logT(t, "%s ENCODED: %4d] %v", xs, len(bsb), bsb) + } + } + testMsgpackH.MapType = oldMapType +} + +// To test MsgpackSpecRpc, we test 3 scenarios: +// - Go Client to Go RPC Service (contained within TestMsgpackRpcSpec) +// - Go client to Python RPC Service (contained within doTestMsgpackRpcSpecGoClientToPythonSvc) +// - Python Client to Go RPC Service (contained within doTestMsgpackRpcSpecPythonClientToGoSvc) +// +// This allows us test the different calling conventions +// - Go Service requires only one argument +// - Python Service allows multiple arguments + +func doTestMsgpackRpcSpecGoClientToPythonSvc(t *testing.T) { + openPort := "6789" + cmd := exec.Command("python", "msgpack_test.py", "rpc-server", openPort, "2") + checkErrT(t, cmd.Start()) + time.Sleep(100 * time.Millisecond) // time for python rpc server to start + bs, err2 := net.Dial("tcp", ":"+openPort) + checkErrT(t, err2) + cc := MsgpackSpecRpc.ClientCodec(bs, testMsgpackH) + cl := rpc.NewClientWithCodec(cc) + defer cl.Close() + var rstr string + checkErrT(t, cl.Call("EchoStruct", TestABC{"Aa", "Bb", "Cc"}, &rstr)) + //checkEqualT(t, rstr, "{'A': 'Aa', 'B': 'Bb', 'C': 'Cc'}") + var mArgs MsgpackSpecRpcMultiArgs = []interface{}{"A1", "B2", "C3"} + checkErrT(t, cl.Call("Echo123", mArgs, &rstr)) + checkEqualT(t, rstr, "1:A1 2:B2 3:C3", "rstr=") +} + +func doTestMsgpackRpcSpecPythonClientToGoSvc(t *testing.T) { + port := doTestRpcOne(t, MsgpackSpecRpc, testMsgpackH, false, 1*time.Second) + //time.Sleep(1000 * time.Millisecond) + cmd := exec.Command("python", "msgpack_test.py", "rpc-client-go-service", strconv.Itoa(port)) + var cmdout []byte + var err error + if cmdout, err = cmd.CombinedOutput(); err != nil { + logT(t, "-------- Error running msgpack_test.py rpc-client-go-service. Err: %v", err) + logT(t, " %v", string(cmdout)) + t.FailNow() + } + checkEqualT(t, string(cmdout), + fmt.Sprintf("%#v\n%#v\n", []string{"A1", "B2", "C3"}, TestABC{"Aa", "Bb", "Cc"}), "cmdout=") +} + +func TestBincCodecsTable(t *testing.T) { + testCodecTableOne(t, testBincH) +} + +func TestBincCodecsMisc(t *testing.T) { + testCodecMiscOne(t, testBincH) +} + +func TestBincCodecsEmbeddedPointer(t *testing.T) { + testCodecEmbeddedPointer(t, testBincH) +} + +func TestSimpleCodecsTable(t *testing.T) { + testCodecTableOne(t, testSimpleH) +} + +func TestSimpleCodecsMisc(t *testing.T) { + testCodecMiscOne(t, testSimpleH) +} + +func TestSimpleCodecsEmbeddedPointer(t *testing.T) { + testCodecEmbeddedPointer(t, testSimpleH) +} + +func TestMsgpackCodecsTable(t *testing.T) { + testCodecTableOne(t, testMsgpackH) +} + +func TestMsgpackCodecsMisc(t *testing.T) { + testCodecMiscOne(t, testMsgpackH) +} + +func TestMsgpackCodecsEmbeddedPointer(t *testing.T) { + testCodecEmbeddedPointer(t, testMsgpackH) +} + +func TestBincRpcGo(t *testing.T) { + doTestRpcOne(t, GoRpc, testBincH, true, 0) +} + +func _TestSimpleRpcGo(t *testing.T) { + doTestRpcOne(t, GoRpc, testSimpleH, true, 0) +} + +func TestMsgpackRpcGo(t *testing.T) { + doTestRpcOne(t, GoRpc, testMsgpackH, true, 0) +} + +func TestMsgpackRpcSpec(t *testing.T) { + doTestRpcOne(t, MsgpackSpecRpc, testMsgpackH, true, 0) +} + +// TODO: +// Add Tests for: +// - decoding empty list/map in stream into a nil slice/map +// - binary(M|Unm)arsher support for time.Time diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/decode.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/decode.go new file mode 100644 index 00000000..87bef2b9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/decode.go @@ -0,0 +1,1048 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import ( + "io" + "reflect" + // "runtime/debug" +) + +// Some tagging information for error messages. +const ( + msgTagDec = "codec.decoder" + msgBadDesc = "Unrecognized descriptor byte" + msgDecCannotExpandArr = "cannot expand go array from %v to stream length: %v" +) + +// decReader abstracts the reading source, allowing implementations that can +// read from an io.Reader or directly off a byte slice with zero-copying. +type decReader interface { + readn(n int) []byte + readb([]byte) + readn1() uint8 + readUint16() uint16 + readUint32() uint32 + readUint64() uint64 +} + +type decDriver interface { + initReadNext() + tryDecodeAsNil() bool + currentEncodedType() valueType + isBuiltinType(rt uintptr) bool + decodeBuiltin(rt uintptr, v interface{}) + //decodeNaked: Numbers are decoded as int64, uint64, float64 only (no smaller sized number types). + decodeNaked() (v interface{}, vt valueType, decodeFurther bool) + decodeInt(bitsize uint8) (i int64) + decodeUint(bitsize uint8) (ui uint64) + decodeFloat(chkOverflow32 bool) (f float64) + decodeBool() (b bool) + // decodeString can also decode symbols + decodeString() (s string) + decodeBytes(bs []byte) (bsOut []byte, changed bool) + decodeExt(verifyTag bool, tag byte) (xtag byte, xbs []byte) + readMapLen() int + readArrayLen() int +} + +type DecodeOptions struct { + // An instance of MapType is used during schema-less decoding of a map in the stream. + // If nil, we use map[interface{}]interface{} + MapType reflect.Type + // An instance of SliceType is used during schema-less decoding of an array in the stream. + // If nil, we use []interface{} + SliceType reflect.Type + // ErrorIfNoField controls whether an error is returned when decoding a map + // from a codec stream into a struct, and no matching struct field is found. + ErrorIfNoField bool +} + +// ------------------------------------ + +// ioDecReader is a decReader that reads off an io.Reader +type ioDecReader struct { + r io.Reader + br io.ByteReader + x [8]byte //temp byte array re-used internally for efficiency +} + +func (z *ioDecReader) readn(n int) (bs []byte) { + if n <= 0 { + return + } + bs = make([]byte, n) + if _, err := io.ReadAtLeast(z.r, bs, n); err != nil { + panic(err) + } + return +} + +func (z *ioDecReader) readb(bs []byte) { + if _, err := io.ReadAtLeast(z.r, bs, len(bs)); err != nil { + panic(err) + } +} + +func (z *ioDecReader) readn1() uint8 { + if z.br != nil { + b, err := z.br.ReadByte() + if err != nil { + panic(err) + } + return b + } + z.readb(z.x[:1]) + return z.x[0] +} + +func (z *ioDecReader) readUint16() uint16 { + z.readb(z.x[:2]) + return bigen.Uint16(z.x[:2]) +} + +func (z *ioDecReader) readUint32() uint32 { + z.readb(z.x[:4]) + return bigen.Uint32(z.x[:4]) +} + +func (z *ioDecReader) readUint64() uint64 { + z.readb(z.x[:8]) + return bigen.Uint64(z.x[:8]) +} + +// ------------------------------------ + +// bytesDecReader is a decReader that reads off a byte slice with zero copying +type bytesDecReader struct { + b []byte // data + c int // cursor + a int // available +} + +func (z *bytesDecReader) consume(n int) (oldcursor int) { + if z.a == 0 { + panic(io.EOF) + } + if n > z.a { + decErr("Trying to read %v bytes. Only %v available", n, z.a) + } + // z.checkAvailable(n) + oldcursor = z.c + z.c = oldcursor + n + z.a = z.a - n + return +} + +func (z *bytesDecReader) readn(n int) (bs []byte) { + if n <= 0 { + return + } + c0 := z.consume(n) + bs = z.b[c0:z.c] + return +} + +func (z *bytesDecReader) readb(bs []byte) { + copy(bs, z.readn(len(bs))) +} + +func (z *bytesDecReader) readn1() uint8 { + c0 := z.consume(1) + return z.b[c0] +} + +// Use binaryEncoding helper for 4 and 8 bits, but inline it for 2 bits +// creating temp slice variable and copying it to helper function is expensive +// for just 2 bits. + +func (z *bytesDecReader) readUint16() uint16 { + c0 := z.consume(2) + return uint16(z.b[c0+1]) | uint16(z.b[c0])<<8 +} + +func (z *bytesDecReader) readUint32() uint32 { + c0 := z.consume(4) + return bigen.Uint32(z.b[c0:z.c]) +} + +func (z *bytesDecReader) readUint64() uint64 { + c0 := z.consume(8) + return bigen.Uint64(z.b[c0:z.c]) +} + +// ------------------------------------ + +// decFnInfo has methods for registering handling decoding of a specific type +// based on some characteristics (builtin, extension, reflect Kind, etc) +type decFnInfo struct { + ti *typeInfo + d *Decoder + dd decDriver + xfFn func(reflect.Value, []byte) error + xfTag byte + array bool +} + +func (f *decFnInfo) builtin(rv reflect.Value) { + f.dd.decodeBuiltin(f.ti.rtid, rv.Addr().Interface()) +} + +func (f *decFnInfo) rawExt(rv reflect.Value) { + xtag, xbs := f.dd.decodeExt(false, 0) + rv.Field(0).SetUint(uint64(xtag)) + rv.Field(1).SetBytes(xbs) +} + +func (f *decFnInfo) ext(rv reflect.Value) { + _, xbs := f.dd.decodeExt(true, f.xfTag) + if fnerr := f.xfFn(rv, xbs); fnerr != nil { + panic(fnerr) + } +} + +func (f *decFnInfo) binaryMarshal(rv reflect.Value) { + var bm binaryUnmarshaler + if f.ti.unmIndir == -1 { + bm = rv.Addr().Interface().(binaryUnmarshaler) + } else if f.ti.unmIndir == 0 { + bm = rv.Interface().(binaryUnmarshaler) + } else { + for j, k := int8(0), f.ti.unmIndir; j < k; j++ { + if rv.IsNil() { + rv.Set(reflect.New(rv.Type().Elem())) + } + rv = rv.Elem() + } + bm = rv.Interface().(binaryUnmarshaler) + } + xbs, _ := f.dd.decodeBytes(nil) + if fnerr := bm.UnmarshalBinary(xbs); fnerr != nil { + panic(fnerr) + } +} + +func (f *decFnInfo) kErr(rv reflect.Value) { + decErr("Unhandled value for kind: %v: %s", rv.Kind(), msgBadDesc) +} + +func (f *decFnInfo) kString(rv reflect.Value) { + rv.SetString(f.dd.decodeString()) +} + +func (f *decFnInfo) kBool(rv reflect.Value) { + rv.SetBool(f.dd.decodeBool()) +} + +func (f *decFnInfo) kInt(rv reflect.Value) { + rv.SetInt(f.dd.decodeInt(intBitsize)) +} + +func (f *decFnInfo) kInt64(rv reflect.Value) { + rv.SetInt(f.dd.decodeInt(64)) +} + +func (f *decFnInfo) kInt32(rv reflect.Value) { + rv.SetInt(f.dd.decodeInt(32)) +} + +func (f *decFnInfo) kInt8(rv reflect.Value) { + rv.SetInt(f.dd.decodeInt(8)) +} + +func (f *decFnInfo) kInt16(rv reflect.Value) { + rv.SetInt(f.dd.decodeInt(16)) +} + +func (f *decFnInfo) kFloat32(rv reflect.Value) { + rv.SetFloat(f.dd.decodeFloat(true)) +} + +func (f *decFnInfo) kFloat64(rv reflect.Value) { + rv.SetFloat(f.dd.decodeFloat(false)) +} + +func (f *decFnInfo) kUint8(rv reflect.Value) { + rv.SetUint(f.dd.decodeUint(8)) +} + +func (f *decFnInfo) kUint64(rv reflect.Value) { + rv.SetUint(f.dd.decodeUint(64)) +} + +func (f *decFnInfo) kUint(rv reflect.Value) { + rv.SetUint(f.dd.decodeUint(uintBitsize)) +} + +func (f *decFnInfo) kUint32(rv reflect.Value) { + rv.SetUint(f.dd.decodeUint(32)) +} + +func (f *decFnInfo) kUint16(rv reflect.Value) { + rv.SetUint(f.dd.decodeUint(16)) +} + +// func (f *decFnInfo) kPtr(rv reflect.Value) { +// debugf(">>>>>>> ??? decode kPtr called - shouldn't get called") +// if rv.IsNil() { +// rv.Set(reflect.New(rv.Type().Elem())) +// } +// f.d.decodeValue(rv.Elem()) +// } + +func (f *decFnInfo) kInterface(rv reflect.Value) { + // debugf("\t===> kInterface") + if !rv.IsNil() { + f.d.decodeValue(rv.Elem()) + return + } + // nil interface: + // use some hieristics to set the nil interface to an + // appropriate value based on the first byte read (byte descriptor bd) + v, vt, decodeFurther := f.dd.decodeNaked() + if vt == valueTypeNil { + return + } + // Cannot decode into nil interface with methods (e.g. error, io.Reader, etc) + // if non-nil value in stream. + if num := f.ti.rt.NumMethod(); num > 0 { + decErr("decodeValue: Cannot decode non-nil codec value into nil %v (%v methods)", + f.ti.rt, num) + } + var rvn reflect.Value + var useRvn bool + switch vt { + case valueTypeMap: + if f.d.h.MapType == nil { + var m2 map[interface{}]interface{} + v = &m2 + } else { + rvn = reflect.New(f.d.h.MapType).Elem() + useRvn = true + } + case valueTypeArray: + if f.d.h.SliceType == nil { + var m2 []interface{} + v = &m2 + } else { + rvn = reflect.New(f.d.h.SliceType).Elem() + useRvn = true + } + case valueTypeExt: + re := v.(*RawExt) + var bfn func(reflect.Value, []byte) error + rvn, bfn = f.d.h.getDecodeExtForTag(re.Tag) + if bfn == nil { + rvn = reflect.ValueOf(*re) + } else if fnerr := bfn(rvn, re.Data); fnerr != nil { + panic(fnerr) + } + rv.Set(rvn) + return + } + if decodeFurther { + if useRvn { + f.d.decodeValue(rvn) + } else if v != nil { + // this v is a pointer, so we need to dereference it when done + f.d.decode(v) + rvn = reflect.ValueOf(v).Elem() + useRvn = true + } + } + if useRvn { + rv.Set(rvn) + } else if v != nil { + rv.Set(reflect.ValueOf(v)) + } +} + +func (f *decFnInfo) kStruct(rv reflect.Value) { + fti := f.ti + if currEncodedType := f.dd.currentEncodedType(); currEncodedType == valueTypeMap { + containerLen := f.dd.readMapLen() + if containerLen == 0 { + return + } + tisfi := fti.sfi + for j := 0; j < containerLen; j++ { + // var rvkencname string + // ddecode(&rvkencname) + f.dd.initReadNext() + rvkencname := f.dd.decodeString() + // rvksi := ti.getForEncName(rvkencname) + if k := fti.indexForEncName(rvkencname); k > -1 { + sfik := tisfi[k] + if sfik.i != -1 { + f.d.decodeValue(rv.Field(int(sfik.i))) + } else { + f.d.decEmbeddedField(rv, sfik.is) + } + // f.d.decodeValue(ti.field(k, rv)) + } else { + if f.d.h.ErrorIfNoField { + decErr("No matching struct field found when decoding stream map with key: %v", + rvkencname) + } else { + var nilintf0 interface{} + f.d.decodeValue(reflect.ValueOf(&nilintf0).Elem()) + } + } + } + } else if currEncodedType == valueTypeArray { + containerLen := f.dd.readArrayLen() + if containerLen == 0 { + return + } + for j, si := range fti.sfip { + if j == containerLen { + break + } + if si.i != -1 { + f.d.decodeValue(rv.Field(int(si.i))) + } else { + f.d.decEmbeddedField(rv, si.is) + } + } + if containerLen > len(fti.sfip) { + // read remaining values and throw away + for j := len(fti.sfip); j < containerLen; j++ { + var nilintf0 interface{} + f.d.decodeValue(reflect.ValueOf(&nilintf0).Elem()) + } + } + } else { + decErr("Only encoded map or array can be decoded into a struct. (valueType: %x)", + currEncodedType) + } +} + +func (f *decFnInfo) kSlice(rv reflect.Value) { + // A slice can be set from a map or array in stream. + currEncodedType := f.dd.currentEncodedType() + + switch currEncodedType { + case valueTypeBytes, valueTypeString: + if f.ti.rtid == uint8SliceTypId || f.ti.rt.Elem().Kind() == reflect.Uint8 { + if bs2, changed2 := f.dd.decodeBytes(rv.Bytes()); changed2 { + rv.SetBytes(bs2) + } + return + } + } + + if shortCircuitReflectToFastPath && rv.CanAddr() { + switch f.ti.rtid { + case intfSliceTypId: + f.d.decSliceIntf(rv.Addr().Interface().(*[]interface{}), currEncodedType, f.array) + return + case uint64SliceTypId: + f.d.decSliceUint64(rv.Addr().Interface().(*[]uint64), currEncodedType, f.array) + return + case int64SliceTypId: + f.d.decSliceInt64(rv.Addr().Interface().(*[]int64), currEncodedType, f.array) + return + case strSliceTypId: + f.d.decSliceStr(rv.Addr().Interface().(*[]string), currEncodedType, f.array) + return + } + } + + containerLen, containerLenS := decContLens(f.dd, currEncodedType) + + // an array can never return a nil slice. so no need to check f.array here. + + if rv.IsNil() { + rv.Set(reflect.MakeSlice(f.ti.rt, containerLenS, containerLenS)) + } + + if containerLen == 0 { + return + } + + if rvcap, rvlen := rv.Len(), rv.Cap(); containerLenS > rvcap { + if f.array { // !rv.CanSet() + decErr(msgDecCannotExpandArr, rvcap, containerLenS) + } + rvn := reflect.MakeSlice(f.ti.rt, containerLenS, containerLenS) + if rvlen > 0 { + reflect.Copy(rvn, rv) + } + rv.Set(rvn) + } else if containerLenS > rvlen { + rv.SetLen(containerLenS) + } + + for j := 0; j < containerLenS; j++ { + f.d.decodeValue(rv.Index(j)) + } +} + +func (f *decFnInfo) kArray(rv reflect.Value) { + // f.d.decodeValue(rv.Slice(0, rv.Len())) + f.kSlice(rv.Slice(0, rv.Len())) +} + +func (f *decFnInfo) kMap(rv reflect.Value) { + if shortCircuitReflectToFastPath && rv.CanAddr() { + switch f.ti.rtid { + case mapStrIntfTypId: + f.d.decMapStrIntf(rv.Addr().Interface().(*map[string]interface{})) + return + case mapIntfIntfTypId: + f.d.decMapIntfIntf(rv.Addr().Interface().(*map[interface{}]interface{})) + return + case mapInt64IntfTypId: + f.d.decMapInt64Intf(rv.Addr().Interface().(*map[int64]interface{})) + return + case mapUint64IntfTypId: + f.d.decMapUint64Intf(rv.Addr().Interface().(*map[uint64]interface{})) + return + } + } + + containerLen := f.dd.readMapLen() + + if rv.IsNil() { + rv.Set(reflect.MakeMap(f.ti.rt)) + } + + if containerLen == 0 { + return + } + + ktype, vtype := f.ti.rt.Key(), f.ti.rt.Elem() + ktypeId := reflect.ValueOf(ktype).Pointer() + for j := 0; j < containerLen; j++ { + rvk := reflect.New(ktype).Elem() + f.d.decodeValue(rvk) + + // special case if a byte array. + // if ktype == intfTyp { + if ktypeId == intfTypId { + rvk = rvk.Elem() + if rvk.Type() == uint8SliceTyp { + rvk = reflect.ValueOf(string(rvk.Bytes())) + } + } + rvv := rv.MapIndex(rvk) + if !rvv.IsValid() { + rvv = reflect.New(vtype).Elem() + } + + f.d.decodeValue(rvv) + rv.SetMapIndex(rvk, rvv) + } +} + +// ---------------------------------------- + +type decFn struct { + i *decFnInfo + f func(*decFnInfo, reflect.Value) +} + +// A Decoder reads and decodes an object from an input stream in the codec format. +type Decoder struct { + r decReader + d decDriver + h *BasicHandle + f map[uintptr]decFn + x []uintptr + s []decFn +} + +// NewDecoder returns a Decoder for decoding a stream of bytes from an io.Reader. +// +// For efficiency, Users are encouraged to pass in a memory buffered writer +// (eg bufio.Reader, bytes.Buffer). +func NewDecoder(r io.Reader, h Handle) *Decoder { + z := ioDecReader{ + r: r, + } + z.br, _ = r.(io.ByteReader) + return &Decoder{r: &z, d: h.newDecDriver(&z), h: h.getBasicHandle()} +} + +// NewDecoderBytes returns a Decoder which efficiently decodes directly +// from a byte slice with zero copying. +func NewDecoderBytes(in []byte, h Handle) *Decoder { + z := bytesDecReader{ + b: in, + a: len(in), + } + return &Decoder{r: &z, d: h.newDecDriver(&z), h: h.getBasicHandle()} +} + +// Decode decodes the stream from reader and stores the result in the +// value pointed to by v. v cannot be a nil pointer. v can also be +// a reflect.Value of a pointer. +// +// Note that a pointer to a nil interface is not a nil pointer. +// If you do not know what type of stream it is, pass in a pointer to a nil interface. +// We will decode and store a value in that nil interface. +// +// Sample usages: +// // Decoding into a non-nil typed value +// var f float32 +// err = codec.NewDecoder(r, handle).Decode(&f) +// +// // Decoding into nil interface +// var v interface{} +// dec := codec.NewDecoder(r, handle) +// err = dec.Decode(&v) +// +// When decoding into a nil interface{}, we will decode into an appropriate value based +// on the contents of the stream: +// - Numbers are decoded as float64, int64 or uint64. +// - Other values are decoded appropriately depending on the type: +// bool, string, []byte, time.Time, etc +// - Extensions are decoded as RawExt (if no ext function registered for the tag) +// Configurations exist on the Handle to override defaults +// (e.g. for MapType, SliceType and how to decode raw bytes). +// +// When decoding into a non-nil interface{} value, the mode of encoding is based on the +// type of the value. When a value is seen: +// - If an extension is registered for it, call that extension function +// - If it implements BinaryUnmarshaler, call its UnmarshalBinary(data []byte) error +// - Else decode it based on its reflect.Kind +// +// There are some special rules when decoding into containers (slice/array/map/struct). +// Decode will typically use the stream contents to UPDATE the container. +// - A map can be decoded from a stream map, by updating matching keys. +// - A slice can be decoded from a stream array, +// by updating the first n elements, where n is length of the stream. +// - A slice can be decoded from a stream map, by decoding as if +// it contains a sequence of key-value pairs. +// - A struct can be decoded from a stream map, by updating matching fields. +// - A struct can be decoded from a stream array, +// by updating fields as they occur in the struct (by index). +// +// When decoding a stream map or array with length of 0 into a nil map or slice, +// we reset the destination map or slice to a zero-length value. +// +// However, when decoding a stream nil, we reset the destination container +// to its "zero" value (e.g. nil for slice/map, etc). +// +func (d *Decoder) Decode(v interface{}) (err error) { + defer panicToErr(&err) + d.decode(v) + return +} + +func (d *Decoder) decode(iv interface{}) { + d.d.initReadNext() + + switch v := iv.(type) { + case nil: + decErr("Cannot decode into nil.") + + case reflect.Value: + d.chkPtrValue(v) + d.decodeValue(v.Elem()) + + case *string: + *v = d.d.decodeString() + case *bool: + *v = d.d.decodeBool() + case *int: + *v = int(d.d.decodeInt(intBitsize)) + case *int8: + *v = int8(d.d.decodeInt(8)) + case *int16: + *v = int16(d.d.decodeInt(16)) + case *int32: + *v = int32(d.d.decodeInt(32)) + case *int64: + *v = d.d.decodeInt(64) + case *uint: + *v = uint(d.d.decodeUint(uintBitsize)) + case *uint8: + *v = uint8(d.d.decodeUint(8)) + case *uint16: + *v = uint16(d.d.decodeUint(16)) + case *uint32: + *v = uint32(d.d.decodeUint(32)) + case *uint64: + *v = d.d.decodeUint(64) + case *float32: + *v = float32(d.d.decodeFloat(true)) + case *float64: + *v = d.d.decodeFloat(false) + case *[]byte: + *v, _ = d.d.decodeBytes(*v) + + case *[]interface{}: + d.decSliceIntf(v, valueTypeInvalid, false) + case *[]uint64: + d.decSliceUint64(v, valueTypeInvalid, false) + case *[]int64: + d.decSliceInt64(v, valueTypeInvalid, false) + case *[]string: + d.decSliceStr(v, valueTypeInvalid, false) + case *map[string]interface{}: + d.decMapStrIntf(v) + case *map[interface{}]interface{}: + d.decMapIntfIntf(v) + case *map[uint64]interface{}: + d.decMapUint64Intf(v) + case *map[int64]interface{}: + d.decMapInt64Intf(v) + + case *interface{}: + d.decodeValue(reflect.ValueOf(iv).Elem()) + + default: + rv := reflect.ValueOf(iv) + d.chkPtrValue(rv) + d.decodeValue(rv.Elem()) + } +} + +func (d *Decoder) decodeValue(rv reflect.Value) { + d.d.initReadNext() + + if d.d.tryDecodeAsNil() { + // If value in stream is nil, set the dereferenced value to its "zero" value (if settable) + if rv.Kind() == reflect.Ptr { + if !rv.IsNil() { + rv.Set(reflect.Zero(rv.Type())) + } + return + } + // for rv.Kind() == reflect.Ptr { + // rv = rv.Elem() + // } + if rv.IsValid() { // rv.CanSet() // always settable, except it's invalid + rv.Set(reflect.Zero(rv.Type())) + } + return + } + + // If stream is not containing a nil value, then we can deref to the base + // non-pointer value, and decode into that. + for rv.Kind() == reflect.Ptr { + if rv.IsNil() { + rv.Set(reflect.New(rv.Type().Elem())) + } + rv = rv.Elem() + } + + rt := rv.Type() + rtid := reflect.ValueOf(rt).Pointer() + + // retrieve or register a focus'ed function for this type + // to eliminate need to do the retrieval multiple times + + // if d.f == nil && d.s == nil { debugf("---->Creating new dec f map for type: %v\n", rt) } + var fn decFn + var ok bool + if useMapForCodecCache { + fn, ok = d.f[rtid] + } else { + for i, v := range d.x { + if v == rtid { + fn, ok = d.s[i], true + break + } + } + } + if !ok { + // debugf("\tCreating new dec fn for type: %v\n", rt) + fi := decFnInfo{ti: getTypeInfo(rtid, rt), d: d, dd: d.d} + fn.i = &fi + // An extension can be registered for any type, regardless of the Kind + // (e.g. type BitSet int64, type MyStruct { / * unexported fields * / }, type X []int, etc. + // + // We can't check if it's an extension byte here first, because the user may have + // registered a pointer or non-pointer type, meaning we may have to recurse first + // before matching a mapped type, even though the extension byte is already detected. + // + // NOTE: if decoding into a nil interface{}, we return a non-nil + // value except even if the container registers a length of 0. + if rtid == rawExtTypId { + fn.f = (*decFnInfo).rawExt + } else if d.d.isBuiltinType(rtid) { + fn.f = (*decFnInfo).builtin + } else if xfTag, xfFn := d.h.getDecodeExt(rtid); xfFn != nil { + fi.xfTag, fi.xfFn = xfTag, xfFn + fn.f = (*decFnInfo).ext + } else if supportBinaryMarshal && fi.ti.unm { + fn.f = (*decFnInfo).binaryMarshal + } else { + switch rk := rt.Kind(); rk { + case reflect.String: + fn.f = (*decFnInfo).kString + case reflect.Bool: + fn.f = (*decFnInfo).kBool + case reflect.Int: + fn.f = (*decFnInfo).kInt + case reflect.Int64: + fn.f = (*decFnInfo).kInt64 + case reflect.Int32: + fn.f = (*decFnInfo).kInt32 + case reflect.Int8: + fn.f = (*decFnInfo).kInt8 + case reflect.Int16: + fn.f = (*decFnInfo).kInt16 + case reflect.Float32: + fn.f = (*decFnInfo).kFloat32 + case reflect.Float64: + fn.f = (*decFnInfo).kFloat64 + case reflect.Uint8: + fn.f = (*decFnInfo).kUint8 + case reflect.Uint64: + fn.f = (*decFnInfo).kUint64 + case reflect.Uint: + fn.f = (*decFnInfo).kUint + case reflect.Uint32: + fn.f = (*decFnInfo).kUint32 + case reflect.Uint16: + fn.f = (*decFnInfo).kUint16 + // case reflect.Ptr: + // fn.f = (*decFnInfo).kPtr + case reflect.Interface: + fn.f = (*decFnInfo).kInterface + case reflect.Struct: + fn.f = (*decFnInfo).kStruct + case reflect.Slice: + fn.f = (*decFnInfo).kSlice + case reflect.Array: + fi.array = true + fn.f = (*decFnInfo).kArray + case reflect.Map: + fn.f = (*decFnInfo).kMap + default: + fn.f = (*decFnInfo).kErr + } + } + if useMapForCodecCache { + if d.f == nil { + d.f = make(map[uintptr]decFn, 16) + } + d.f[rtid] = fn + } else { + d.s = append(d.s, fn) + d.x = append(d.x, rtid) + } + } + + fn.f(fn.i, rv) + + return +} + +func (d *Decoder) chkPtrValue(rv reflect.Value) { + // We can only decode into a non-nil pointer + if rv.Kind() == reflect.Ptr && !rv.IsNil() { + return + } + if !rv.IsValid() { + decErr("Cannot decode into a zero (ie invalid) reflect.Value") + } + if !rv.CanInterface() { + decErr("Cannot decode into a value without an interface: %v", rv) + } + rvi := rv.Interface() + decErr("Cannot decode into non-pointer or nil pointer. Got: %v, %T, %v", + rv.Kind(), rvi, rvi) +} + +func (d *Decoder) decEmbeddedField(rv reflect.Value, index []int) { + // d.decodeValue(rv.FieldByIndex(index)) + // nil pointers may be here; so reproduce FieldByIndex logic + enhancements + for _, j := range index { + if rv.Kind() == reflect.Ptr { + if rv.IsNil() { + rv.Set(reflect.New(rv.Type().Elem())) + } + // If a pointer, it must be a pointer to struct (based on typeInfo contract) + rv = rv.Elem() + } + rv = rv.Field(j) + } + d.decodeValue(rv) +} + +// -------------------------------------------------- + +// short circuit functions for common maps and slices + +func (d *Decoder) decSliceIntf(v *[]interface{}, currEncodedType valueType, doNotReset bool) { + _, containerLenS := decContLens(d.d, currEncodedType) + s := *v + if s == nil { + s = make([]interface{}, containerLenS, containerLenS) + } else if containerLenS > cap(s) { + if doNotReset { + decErr(msgDecCannotExpandArr, cap(s), containerLenS) + } + s = make([]interface{}, containerLenS, containerLenS) + copy(s, *v) + } else if containerLenS > len(s) { + s = s[:containerLenS] + } + for j := 0; j < containerLenS; j++ { + d.decode(&s[j]) + } + *v = s +} + +func (d *Decoder) decSliceInt64(v *[]int64, currEncodedType valueType, doNotReset bool) { + _, containerLenS := decContLens(d.d, currEncodedType) + s := *v + if s == nil { + s = make([]int64, containerLenS, containerLenS) + } else if containerLenS > cap(s) { + if doNotReset { + decErr(msgDecCannotExpandArr, cap(s), containerLenS) + } + s = make([]int64, containerLenS, containerLenS) + copy(s, *v) + } else if containerLenS > len(s) { + s = s[:containerLenS] + } + for j := 0; j < containerLenS; j++ { + // d.decode(&s[j]) + d.d.initReadNext() + s[j] = d.d.decodeInt(intBitsize) + } + *v = s +} + +func (d *Decoder) decSliceUint64(v *[]uint64, currEncodedType valueType, doNotReset bool) { + _, containerLenS := decContLens(d.d, currEncodedType) + s := *v + if s == nil { + s = make([]uint64, containerLenS, containerLenS) + } else if containerLenS > cap(s) { + if doNotReset { + decErr(msgDecCannotExpandArr, cap(s), containerLenS) + } + s = make([]uint64, containerLenS, containerLenS) + copy(s, *v) + } else if containerLenS > len(s) { + s = s[:containerLenS] + } + for j := 0; j < containerLenS; j++ { + // d.decode(&s[j]) + d.d.initReadNext() + s[j] = d.d.decodeUint(intBitsize) + } + *v = s +} + +func (d *Decoder) decSliceStr(v *[]string, currEncodedType valueType, doNotReset bool) { + _, containerLenS := decContLens(d.d, currEncodedType) + s := *v + if s == nil { + s = make([]string, containerLenS, containerLenS) + } else if containerLenS > cap(s) { + if doNotReset { + decErr(msgDecCannotExpandArr, cap(s), containerLenS) + } + s = make([]string, containerLenS, containerLenS) + copy(s, *v) + } else if containerLenS > len(s) { + s = s[:containerLenS] + } + for j := 0; j < containerLenS; j++ { + // d.decode(&s[j]) + d.d.initReadNext() + s[j] = d.d.decodeString() + } + *v = s +} + +func (d *Decoder) decMapIntfIntf(v *map[interface{}]interface{}) { + containerLen := d.d.readMapLen() + m := *v + if m == nil { + m = make(map[interface{}]interface{}, containerLen) + *v = m + } + for j := 0; j < containerLen; j++ { + var mk interface{} + d.decode(&mk) + // special case if a byte array. + if bv, bok := mk.([]byte); bok { + mk = string(bv) + } + mv := m[mk] + d.decode(&mv) + m[mk] = mv + } +} + +func (d *Decoder) decMapInt64Intf(v *map[int64]interface{}) { + containerLen := d.d.readMapLen() + m := *v + if m == nil { + m = make(map[int64]interface{}, containerLen) + *v = m + } + for j := 0; j < containerLen; j++ { + d.d.initReadNext() + mk := d.d.decodeInt(intBitsize) + mv := m[mk] + d.decode(&mv) + m[mk] = mv + } +} + +func (d *Decoder) decMapUint64Intf(v *map[uint64]interface{}) { + containerLen := d.d.readMapLen() + m := *v + if m == nil { + m = make(map[uint64]interface{}, containerLen) + *v = m + } + for j := 0; j < containerLen; j++ { + d.d.initReadNext() + mk := d.d.decodeUint(intBitsize) + mv := m[mk] + d.decode(&mv) + m[mk] = mv + } +} + +func (d *Decoder) decMapStrIntf(v *map[string]interface{}) { + containerLen := d.d.readMapLen() + m := *v + if m == nil { + m = make(map[string]interface{}, containerLen) + *v = m + } + for j := 0; j < containerLen; j++ { + d.d.initReadNext() + mk := d.d.decodeString() + mv := m[mk] + d.decode(&mv) + m[mk] = mv + } +} + +// ---------------------------------------- + +func decContLens(dd decDriver, currEncodedType valueType) (containerLen, containerLenS int) { + if currEncodedType == valueTypeInvalid { + currEncodedType = dd.currentEncodedType() + } + switch currEncodedType { + case valueTypeArray: + containerLen = dd.readArrayLen() + containerLenS = containerLen + case valueTypeMap: + containerLen = dd.readMapLen() + containerLenS = containerLen * 2 + default: + decErr("Only encoded map or array can be decoded into a slice. (valueType: %0x)", + currEncodedType) + } + return +} + +func decErr(format string, params ...interface{}) { + doPanic(msgTagDec, format, params...) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/encode.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/encode.go new file mode 100644 index 00000000..4914be0c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/encode.go @@ -0,0 +1,1001 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import ( + "io" + "reflect" +) + +const ( + // Some tagging information for error messages. + msgTagEnc = "codec.encoder" + defEncByteBufSize = 1 << 6 // 4:16, 6:64, 8:256, 10:1024 + // maxTimeSecs32 = math.MaxInt32 / 60 / 24 / 366 +) + +// AsSymbolFlag defines what should be encoded as symbols. +type AsSymbolFlag uint8 + +const ( + // AsSymbolDefault is default. + // Currently, this means only encode struct field names as symbols. + // The default is subject to change. + AsSymbolDefault AsSymbolFlag = iota + + // AsSymbolAll means encode anything which could be a symbol as a symbol. + AsSymbolAll = 0xfe + + // AsSymbolNone means do not encode anything as a symbol. + AsSymbolNone = 1 << iota + + // AsSymbolMapStringKeys means encode keys in map[string]XXX as symbols. + AsSymbolMapStringKeysFlag + + // AsSymbolStructFieldName means encode struct field names as symbols. + AsSymbolStructFieldNameFlag +) + +// encWriter abstracting writing to a byte array or to an io.Writer. +type encWriter interface { + writeUint16(uint16) + writeUint32(uint32) + writeUint64(uint64) + writeb([]byte) + writestr(string) + writen1(byte) + writen2(byte, byte) + atEndOfEncode() +} + +// encDriver abstracts the actual codec (binc vs msgpack, etc) +type encDriver interface { + isBuiltinType(rt uintptr) bool + encodeBuiltin(rt uintptr, v interface{}) + encodeNil() + encodeInt(i int64) + encodeUint(i uint64) + encodeBool(b bool) + encodeFloat32(f float32) + encodeFloat64(f float64) + encodeExtPreamble(xtag byte, length int) + encodeArrayPreamble(length int) + encodeMapPreamble(length int) + encodeString(c charEncoding, v string) + encodeSymbol(v string) + encodeStringBytes(c charEncoding, v []byte) + //TODO + //encBignum(f *big.Int) + //encStringRunes(c charEncoding, v []rune) +} + +type ioEncWriterWriter interface { + WriteByte(c byte) error + WriteString(s string) (n int, err error) + Write(p []byte) (n int, err error) +} + +type ioEncStringWriter interface { + WriteString(s string) (n int, err error) +} + +type EncodeOptions struct { + // Encode a struct as an array, and not as a map. + StructToArray bool + + // AsSymbols defines what should be encoded as symbols. + // + // Encoding as symbols can reduce the encoded size significantly. + // + // However, during decoding, each string to be encoded as a symbol must + // be checked to see if it has been seen before. Consequently, encoding time + // will increase if using symbols, because string comparisons has a clear cost. + // + // Sample values: + // AsSymbolNone + // AsSymbolAll + // AsSymbolMapStringKeys + // AsSymbolMapStringKeysFlag | AsSymbolStructFieldNameFlag + AsSymbols AsSymbolFlag +} + +// --------------------------------------------- + +type simpleIoEncWriterWriter struct { + w io.Writer + bw io.ByteWriter + sw ioEncStringWriter +} + +func (o *simpleIoEncWriterWriter) WriteByte(c byte) (err error) { + if o.bw != nil { + return o.bw.WriteByte(c) + } + _, err = o.w.Write([]byte{c}) + return +} + +func (o *simpleIoEncWriterWriter) WriteString(s string) (n int, err error) { + if o.sw != nil { + return o.sw.WriteString(s) + } + return o.w.Write([]byte(s)) +} + +func (o *simpleIoEncWriterWriter) Write(p []byte) (n int, err error) { + return o.w.Write(p) +} + +// ---------------------------------------- + +// ioEncWriter implements encWriter and can write to an io.Writer implementation +type ioEncWriter struct { + w ioEncWriterWriter + x [8]byte // temp byte array re-used internally for efficiency +} + +func (z *ioEncWriter) writeUint16(v uint16) { + bigen.PutUint16(z.x[:2], v) + z.writeb(z.x[:2]) +} + +func (z *ioEncWriter) writeUint32(v uint32) { + bigen.PutUint32(z.x[:4], v) + z.writeb(z.x[:4]) +} + +func (z *ioEncWriter) writeUint64(v uint64) { + bigen.PutUint64(z.x[:8], v) + z.writeb(z.x[:8]) +} + +func (z *ioEncWriter) writeb(bs []byte) { + if len(bs) == 0 { + return + } + n, err := z.w.Write(bs) + if err != nil { + panic(err) + } + if n != len(bs) { + encErr("write: Incorrect num bytes written. Expecting: %v, Wrote: %v", len(bs), n) + } +} + +func (z *ioEncWriter) writestr(s string) { + n, err := z.w.WriteString(s) + if err != nil { + panic(err) + } + if n != len(s) { + encErr("write: Incorrect num bytes written. Expecting: %v, Wrote: %v", len(s), n) + } +} + +func (z *ioEncWriter) writen1(b byte) { + if err := z.w.WriteByte(b); err != nil { + panic(err) + } +} + +func (z *ioEncWriter) writen2(b1 byte, b2 byte) { + z.writen1(b1) + z.writen1(b2) +} + +func (z *ioEncWriter) atEndOfEncode() {} + +// ---------------------------------------- + +// bytesEncWriter implements encWriter and can write to an byte slice. +// It is used by Marshal function. +type bytesEncWriter struct { + b []byte + c int // cursor + out *[]byte // write out on atEndOfEncode +} + +func (z *bytesEncWriter) writeUint16(v uint16) { + c := z.grow(2) + z.b[c] = byte(v >> 8) + z.b[c+1] = byte(v) +} + +func (z *bytesEncWriter) writeUint32(v uint32) { + c := z.grow(4) + z.b[c] = byte(v >> 24) + z.b[c+1] = byte(v >> 16) + z.b[c+2] = byte(v >> 8) + z.b[c+3] = byte(v) +} + +func (z *bytesEncWriter) writeUint64(v uint64) { + c := z.grow(8) + z.b[c] = byte(v >> 56) + z.b[c+1] = byte(v >> 48) + z.b[c+2] = byte(v >> 40) + z.b[c+3] = byte(v >> 32) + z.b[c+4] = byte(v >> 24) + z.b[c+5] = byte(v >> 16) + z.b[c+6] = byte(v >> 8) + z.b[c+7] = byte(v) +} + +func (z *bytesEncWriter) writeb(s []byte) { + if len(s) == 0 { + return + } + c := z.grow(len(s)) + copy(z.b[c:], s) +} + +func (z *bytesEncWriter) writestr(s string) { + c := z.grow(len(s)) + copy(z.b[c:], s) +} + +func (z *bytesEncWriter) writen1(b1 byte) { + c := z.grow(1) + z.b[c] = b1 +} + +func (z *bytesEncWriter) writen2(b1 byte, b2 byte) { + c := z.grow(2) + z.b[c] = b1 + z.b[c+1] = b2 +} + +func (z *bytesEncWriter) atEndOfEncode() { + *(z.out) = z.b[:z.c] +} + +func (z *bytesEncWriter) grow(n int) (oldcursor int) { + oldcursor = z.c + z.c = oldcursor + n + if z.c > cap(z.b) { + // Tried using appendslice logic: (if cap < 1024, *2, else *1.25). + // However, it was too expensive, causing too many iterations of copy. + // Using bytes.Buffer model was much better (2*cap + n) + bs := make([]byte, 2*cap(z.b)+n) + copy(bs, z.b[:oldcursor]) + z.b = bs + } else if z.c > len(z.b) { + z.b = z.b[:cap(z.b)] + } + return +} + +// --------------------------------------------- + +type encFnInfo struct { + ti *typeInfo + e *Encoder + ee encDriver + xfFn func(reflect.Value) ([]byte, error) + xfTag byte +} + +func (f *encFnInfo) builtin(rv reflect.Value) { + f.ee.encodeBuiltin(f.ti.rtid, rv.Interface()) +} + +func (f *encFnInfo) rawExt(rv reflect.Value) { + f.e.encRawExt(rv.Interface().(RawExt)) +} + +func (f *encFnInfo) ext(rv reflect.Value) { + bs, fnerr := f.xfFn(rv) + if fnerr != nil { + panic(fnerr) + } + if bs == nil { + f.ee.encodeNil() + return + } + if f.e.hh.writeExt() { + f.ee.encodeExtPreamble(f.xfTag, len(bs)) + f.e.w.writeb(bs) + } else { + f.ee.encodeStringBytes(c_RAW, bs) + } + +} + +func (f *encFnInfo) binaryMarshal(rv reflect.Value) { + var bm binaryMarshaler + if f.ti.mIndir == 0 { + bm = rv.Interface().(binaryMarshaler) + } else if f.ti.mIndir == -1 { + bm = rv.Addr().Interface().(binaryMarshaler) + } else { + for j, k := int8(0), f.ti.mIndir; j < k; j++ { + if rv.IsNil() { + f.ee.encodeNil() + return + } + rv = rv.Elem() + } + bm = rv.Interface().(binaryMarshaler) + } + // debugf(">>>> binaryMarshaler: %T", rv.Interface()) + bs, fnerr := bm.MarshalBinary() + if fnerr != nil { + panic(fnerr) + } + if bs == nil { + f.ee.encodeNil() + } else { + f.ee.encodeStringBytes(c_RAW, bs) + } +} + +func (f *encFnInfo) kBool(rv reflect.Value) { + f.ee.encodeBool(rv.Bool()) +} + +func (f *encFnInfo) kString(rv reflect.Value) { + f.ee.encodeString(c_UTF8, rv.String()) +} + +func (f *encFnInfo) kFloat64(rv reflect.Value) { + f.ee.encodeFloat64(rv.Float()) +} + +func (f *encFnInfo) kFloat32(rv reflect.Value) { + f.ee.encodeFloat32(float32(rv.Float())) +} + +func (f *encFnInfo) kInt(rv reflect.Value) { + f.ee.encodeInt(rv.Int()) +} + +func (f *encFnInfo) kUint(rv reflect.Value) { + f.ee.encodeUint(rv.Uint()) +} + +func (f *encFnInfo) kInvalid(rv reflect.Value) { + f.ee.encodeNil() +} + +func (f *encFnInfo) kErr(rv reflect.Value) { + encErr("Unsupported kind: %s, for: %#v", rv.Kind(), rv) +} + +func (f *encFnInfo) kSlice(rv reflect.Value) { + if rv.IsNil() { + f.ee.encodeNil() + return + } + + if shortCircuitReflectToFastPath { + switch f.ti.rtid { + case intfSliceTypId: + f.e.encSliceIntf(rv.Interface().([]interface{})) + return + case strSliceTypId: + f.e.encSliceStr(rv.Interface().([]string)) + return + case uint64SliceTypId: + f.e.encSliceUint64(rv.Interface().([]uint64)) + return + case int64SliceTypId: + f.e.encSliceInt64(rv.Interface().([]int64)) + return + } + } + + // If in this method, then there was no extension function defined. + // So it's okay to treat as []byte. + if f.ti.rtid == uint8SliceTypId || f.ti.rt.Elem().Kind() == reflect.Uint8 { + f.ee.encodeStringBytes(c_RAW, rv.Bytes()) + return + } + + l := rv.Len() + if f.ti.mbs { + if l%2 == 1 { + encErr("mapBySlice: invalid length (must be divisible by 2): %v", l) + } + f.ee.encodeMapPreamble(l / 2) + } else { + f.ee.encodeArrayPreamble(l) + } + if l == 0 { + return + } + for j := 0; j < l; j++ { + // TODO: Consider perf implication of encoding odd index values as symbols if type is string + f.e.encodeValue(rv.Index(j)) + } +} + +func (f *encFnInfo) kArray(rv reflect.Value) { + // We cannot share kSlice method, because the array may be non-addressable. + // E.g. type struct S{B [2]byte}; Encode(S{}) will bomb on "panic: slice of unaddressable array". + // So we have to duplicate the functionality here. + // f.e.encodeValue(rv.Slice(0, rv.Len())) + // f.kSlice(rv.Slice(0, rv.Len())) + + l := rv.Len() + // Handle an array of bytes specially (in line with what is done for slices) + if f.ti.rt.Elem().Kind() == reflect.Uint8 { + if l == 0 { + f.ee.encodeStringBytes(c_RAW, nil) + return + } + var bs []byte + if rv.CanAddr() { + bs = rv.Slice(0, l).Bytes() + } else { + bs = make([]byte, l) + for i := 0; i < l; i++ { + bs[i] = byte(rv.Index(i).Uint()) + } + } + f.ee.encodeStringBytes(c_RAW, bs) + return + } + + if f.ti.mbs { + if l%2 == 1 { + encErr("mapBySlice: invalid length (must be divisible by 2): %v", l) + } + f.ee.encodeMapPreamble(l / 2) + } else { + f.ee.encodeArrayPreamble(l) + } + if l == 0 { + return + } + for j := 0; j < l; j++ { + // TODO: Consider perf implication of encoding odd index values as symbols if type is string + f.e.encodeValue(rv.Index(j)) + } +} + +func (f *encFnInfo) kStruct(rv reflect.Value) { + fti := f.ti + newlen := len(fti.sfi) + rvals := make([]reflect.Value, newlen) + var encnames []string + e := f.e + tisfi := fti.sfip + toMap := !(fti.toArray || e.h.StructToArray) + // if toMap, use the sorted array. If toArray, use unsorted array (to match sequence in struct) + if toMap { + tisfi = fti.sfi + encnames = make([]string, newlen) + } + newlen = 0 + for _, si := range tisfi { + if si.i != -1 { + rvals[newlen] = rv.Field(int(si.i)) + } else { + rvals[newlen] = rv.FieldByIndex(si.is) + } + if toMap { + if si.omitEmpty && isEmptyValue(rvals[newlen]) { + continue + } + encnames[newlen] = si.encName + } else { + if si.omitEmpty && isEmptyValue(rvals[newlen]) { + rvals[newlen] = reflect.Value{} //encode as nil + } + } + newlen++ + } + + // debugf(">>>> kStruct: newlen: %v", newlen) + if toMap { + ee := f.ee //don't dereference everytime + ee.encodeMapPreamble(newlen) + // asSymbols := e.h.AsSymbols&AsSymbolStructFieldNameFlag != 0 + asSymbols := e.h.AsSymbols == AsSymbolDefault || e.h.AsSymbols&AsSymbolStructFieldNameFlag != 0 + for j := 0; j < newlen; j++ { + if asSymbols { + ee.encodeSymbol(encnames[j]) + } else { + ee.encodeString(c_UTF8, encnames[j]) + } + e.encodeValue(rvals[j]) + } + } else { + f.ee.encodeArrayPreamble(newlen) + for j := 0; j < newlen; j++ { + e.encodeValue(rvals[j]) + } + } +} + +// func (f *encFnInfo) kPtr(rv reflect.Value) { +// debugf(">>>>>>> ??? encode kPtr called - shouldn't get called") +// if rv.IsNil() { +// f.ee.encodeNil() +// return +// } +// f.e.encodeValue(rv.Elem()) +// } + +func (f *encFnInfo) kInterface(rv reflect.Value) { + if rv.IsNil() { + f.ee.encodeNil() + return + } + f.e.encodeValue(rv.Elem()) +} + +func (f *encFnInfo) kMap(rv reflect.Value) { + if rv.IsNil() { + f.ee.encodeNil() + return + } + + if shortCircuitReflectToFastPath { + switch f.ti.rtid { + case mapIntfIntfTypId: + f.e.encMapIntfIntf(rv.Interface().(map[interface{}]interface{})) + return + case mapStrIntfTypId: + f.e.encMapStrIntf(rv.Interface().(map[string]interface{})) + return + case mapStrStrTypId: + f.e.encMapStrStr(rv.Interface().(map[string]string)) + return + case mapInt64IntfTypId: + f.e.encMapInt64Intf(rv.Interface().(map[int64]interface{})) + return + case mapUint64IntfTypId: + f.e.encMapUint64Intf(rv.Interface().(map[uint64]interface{})) + return + } + } + + l := rv.Len() + f.ee.encodeMapPreamble(l) + if l == 0 { + return + } + // keyTypeIsString := f.ti.rt.Key().Kind() == reflect.String + keyTypeIsString := f.ti.rt.Key() == stringTyp + var asSymbols bool + if keyTypeIsString { + asSymbols = f.e.h.AsSymbols&AsSymbolMapStringKeysFlag != 0 + } + mks := rv.MapKeys() + // for j, lmks := 0, len(mks); j < lmks; j++ { + for j := range mks { + if keyTypeIsString { + if asSymbols { + f.ee.encodeSymbol(mks[j].String()) + } else { + f.ee.encodeString(c_UTF8, mks[j].String()) + } + } else { + f.e.encodeValue(mks[j]) + } + f.e.encodeValue(rv.MapIndex(mks[j])) + } + +} + +// -------------------------------------------------- + +// encFn encapsulates the captured variables and the encode function. +// This way, we only do some calculations one times, and pass to the +// code block that should be called (encapsulated in a function) +// instead of executing the checks every time. +type encFn struct { + i *encFnInfo + f func(*encFnInfo, reflect.Value) +} + +// -------------------------------------------------- + +// An Encoder writes an object to an output stream in the codec format. +type Encoder struct { + w encWriter + e encDriver + h *BasicHandle + hh Handle + f map[uintptr]encFn + x []uintptr + s []encFn +} + +// NewEncoder returns an Encoder for encoding into an io.Writer. +// +// For efficiency, Users are encouraged to pass in a memory buffered writer +// (eg bufio.Writer, bytes.Buffer). +func NewEncoder(w io.Writer, h Handle) *Encoder { + ww, ok := w.(ioEncWriterWriter) + if !ok { + sww := simpleIoEncWriterWriter{w: w} + sww.bw, _ = w.(io.ByteWriter) + sww.sw, _ = w.(ioEncStringWriter) + ww = &sww + //ww = bufio.NewWriterSize(w, defEncByteBufSize) + } + z := ioEncWriter{ + w: ww, + } + return &Encoder{w: &z, hh: h, h: h.getBasicHandle(), e: h.newEncDriver(&z)} +} + +// NewEncoderBytes returns an encoder for encoding directly and efficiently +// into a byte slice, using zero-copying to temporary slices. +// +// It will potentially replace the output byte slice pointed to. +// After encoding, the out parameter contains the encoded contents. +func NewEncoderBytes(out *[]byte, h Handle) *Encoder { + in := *out + if in == nil { + in = make([]byte, defEncByteBufSize) + } + z := bytesEncWriter{ + b: in, + out: out, + } + return &Encoder{w: &z, hh: h, h: h.getBasicHandle(), e: h.newEncDriver(&z)} +} + +// Encode writes an object into a stream in the codec format. +// +// Encoding can be configured via the "codec" struct tag for the fields. +// +// The "codec" key in struct field's tag value is the key name, +// followed by an optional comma and options. +// +// To set an option on all fields (e.g. omitempty on all fields), you +// can create a field called _struct, and set flags on it. +// +// Struct values "usually" encode as maps. Each exported struct field is encoded unless: +// - the field's codec tag is "-", OR +// - the field is empty and its codec tag specifies the "omitempty" option. +// +// When encoding as a map, the first string in the tag (before the comma) +// is the map key string to use when encoding. +// +// However, struct values may encode as arrays. This happens when: +// - StructToArray Encode option is set, OR +// - the codec tag on the _struct field sets the "toarray" option +// +// Values with types that implement MapBySlice are encoded as stream maps. +// +// The empty values (for omitempty option) are false, 0, any nil pointer +// or interface value, and any array, slice, map, or string of length zero. +// +// Anonymous fields are encoded inline if no struct tag is present. +// Else they are encoded as regular fields. +// +// Examples: +// +// type MyStruct struct { +// _struct bool `codec:",omitempty"` //set omitempty for every field +// Field1 string `codec:"-"` //skip this field +// Field2 int `codec:"myName"` //Use key "myName" in encode stream +// Field3 int32 `codec:",omitempty"` //use key "Field3". Omit if empty. +// Field4 bool `codec:"f4,omitempty"` //use key "f4". Omit if empty. +// ... +// } +// +// type MyStruct struct { +// _struct bool `codec:",omitempty,toarray"` //set omitempty for every field +// //and encode struct as an array +// } +// +// The mode of encoding is based on the type of the value. When a value is seen: +// - If an extension is registered for it, call that extension function +// - If it implements BinaryMarshaler, call its MarshalBinary() (data []byte, err error) +// - Else encode it based on its reflect.Kind +// +// Note that struct field names and keys in map[string]XXX will be treated as symbols. +// Some formats support symbols (e.g. binc) and will properly encode the string +// only once in the stream, and use a tag to refer to it thereafter. +func (e *Encoder) Encode(v interface{}) (err error) { + defer panicToErr(&err) + e.encode(v) + e.w.atEndOfEncode() + return +} + +func (e *Encoder) encode(iv interface{}) { + switch v := iv.(type) { + case nil: + e.e.encodeNil() + + case reflect.Value: + e.encodeValue(v) + + case string: + e.e.encodeString(c_UTF8, v) + case bool: + e.e.encodeBool(v) + case int: + e.e.encodeInt(int64(v)) + case int8: + e.e.encodeInt(int64(v)) + case int16: + e.e.encodeInt(int64(v)) + case int32: + e.e.encodeInt(int64(v)) + case int64: + e.e.encodeInt(v) + case uint: + e.e.encodeUint(uint64(v)) + case uint8: + e.e.encodeUint(uint64(v)) + case uint16: + e.e.encodeUint(uint64(v)) + case uint32: + e.e.encodeUint(uint64(v)) + case uint64: + e.e.encodeUint(v) + case float32: + e.e.encodeFloat32(v) + case float64: + e.e.encodeFloat64(v) + + case []interface{}: + e.encSliceIntf(v) + case []string: + e.encSliceStr(v) + case []int64: + e.encSliceInt64(v) + case []uint64: + e.encSliceUint64(v) + case []uint8: + e.e.encodeStringBytes(c_RAW, v) + + case map[interface{}]interface{}: + e.encMapIntfIntf(v) + case map[string]interface{}: + e.encMapStrIntf(v) + case map[string]string: + e.encMapStrStr(v) + case map[int64]interface{}: + e.encMapInt64Intf(v) + case map[uint64]interface{}: + e.encMapUint64Intf(v) + + case *string: + e.e.encodeString(c_UTF8, *v) + case *bool: + e.e.encodeBool(*v) + case *int: + e.e.encodeInt(int64(*v)) + case *int8: + e.e.encodeInt(int64(*v)) + case *int16: + e.e.encodeInt(int64(*v)) + case *int32: + e.e.encodeInt(int64(*v)) + case *int64: + e.e.encodeInt(*v) + case *uint: + e.e.encodeUint(uint64(*v)) + case *uint8: + e.e.encodeUint(uint64(*v)) + case *uint16: + e.e.encodeUint(uint64(*v)) + case *uint32: + e.e.encodeUint(uint64(*v)) + case *uint64: + e.e.encodeUint(*v) + case *float32: + e.e.encodeFloat32(*v) + case *float64: + e.e.encodeFloat64(*v) + + case *[]interface{}: + e.encSliceIntf(*v) + case *[]string: + e.encSliceStr(*v) + case *[]int64: + e.encSliceInt64(*v) + case *[]uint64: + e.encSliceUint64(*v) + case *[]uint8: + e.e.encodeStringBytes(c_RAW, *v) + + case *map[interface{}]interface{}: + e.encMapIntfIntf(*v) + case *map[string]interface{}: + e.encMapStrIntf(*v) + case *map[string]string: + e.encMapStrStr(*v) + case *map[int64]interface{}: + e.encMapInt64Intf(*v) + case *map[uint64]interface{}: + e.encMapUint64Intf(*v) + + default: + e.encodeValue(reflect.ValueOf(iv)) + } +} + +func (e *Encoder) encodeValue(rv reflect.Value) { + for rv.Kind() == reflect.Ptr { + if rv.IsNil() { + e.e.encodeNil() + return + } + rv = rv.Elem() + } + + rt := rv.Type() + rtid := reflect.ValueOf(rt).Pointer() + + // if e.f == nil && e.s == nil { debugf("---->Creating new enc f map for type: %v\n", rt) } + var fn encFn + var ok bool + if useMapForCodecCache { + fn, ok = e.f[rtid] + } else { + for i, v := range e.x { + if v == rtid { + fn, ok = e.s[i], true + break + } + } + } + if !ok { + // debugf("\tCreating new enc fn for type: %v\n", rt) + fi := encFnInfo{ti: getTypeInfo(rtid, rt), e: e, ee: e.e} + fn.i = &fi + if rtid == rawExtTypId { + fn.f = (*encFnInfo).rawExt + } else if e.e.isBuiltinType(rtid) { + fn.f = (*encFnInfo).builtin + } else if xfTag, xfFn := e.h.getEncodeExt(rtid); xfFn != nil { + fi.xfTag, fi.xfFn = xfTag, xfFn + fn.f = (*encFnInfo).ext + } else if supportBinaryMarshal && fi.ti.m { + fn.f = (*encFnInfo).binaryMarshal + } else { + switch rk := rt.Kind(); rk { + case reflect.Bool: + fn.f = (*encFnInfo).kBool + case reflect.String: + fn.f = (*encFnInfo).kString + case reflect.Float64: + fn.f = (*encFnInfo).kFloat64 + case reflect.Float32: + fn.f = (*encFnInfo).kFloat32 + case reflect.Int, reflect.Int8, reflect.Int64, reflect.Int32, reflect.Int16: + fn.f = (*encFnInfo).kInt + case reflect.Uint8, reflect.Uint64, reflect.Uint, reflect.Uint32, reflect.Uint16: + fn.f = (*encFnInfo).kUint + case reflect.Invalid: + fn.f = (*encFnInfo).kInvalid + case reflect.Slice: + fn.f = (*encFnInfo).kSlice + case reflect.Array: + fn.f = (*encFnInfo).kArray + case reflect.Struct: + fn.f = (*encFnInfo).kStruct + // case reflect.Ptr: + // fn.f = (*encFnInfo).kPtr + case reflect.Interface: + fn.f = (*encFnInfo).kInterface + case reflect.Map: + fn.f = (*encFnInfo).kMap + default: + fn.f = (*encFnInfo).kErr + } + } + if useMapForCodecCache { + if e.f == nil { + e.f = make(map[uintptr]encFn, 16) + } + e.f[rtid] = fn + } else { + e.s = append(e.s, fn) + e.x = append(e.x, rtid) + } + } + + fn.f(fn.i, rv) + +} + +func (e *Encoder) encRawExt(re RawExt) { + if re.Data == nil { + e.e.encodeNil() + return + } + if e.hh.writeExt() { + e.e.encodeExtPreamble(re.Tag, len(re.Data)) + e.w.writeb(re.Data) + } else { + e.e.encodeStringBytes(c_RAW, re.Data) + } +} + +// --------------------------------------------- +// short circuit functions for common maps and slices + +func (e *Encoder) encSliceIntf(v []interface{}) { + e.e.encodeArrayPreamble(len(v)) + for _, v2 := range v { + e.encode(v2) + } +} + +func (e *Encoder) encSliceStr(v []string) { + e.e.encodeArrayPreamble(len(v)) + for _, v2 := range v { + e.e.encodeString(c_UTF8, v2) + } +} + +func (e *Encoder) encSliceInt64(v []int64) { + e.e.encodeArrayPreamble(len(v)) + for _, v2 := range v { + e.e.encodeInt(v2) + } +} + +func (e *Encoder) encSliceUint64(v []uint64) { + e.e.encodeArrayPreamble(len(v)) + for _, v2 := range v { + e.e.encodeUint(v2) + } +} + +func (e *Encoder) encMapStrStr(v map[string]string) { + e.e.encodeMapPreamble(len(v)) + asSymbols := e.h.AsSymbols&AsSymbolMapStringKeysFlag != 0 + for k2, v2 := range v { + if asSymbols { + e.e.encodeSymbol(k2) + } else { + e.e.encodeString(c_UTF8, k2) + } + e.e.encodeString(c_UTF8, v2) + } +} + +func (e *Encoder) encMapStrIntf(v map[string]interface{}) { + e.e.encodeMapPreamble(len(v)) + asSymbols := e.h.AsSymbols&AsSymbolMapStringKeysFlag != 0 + for k2, v2 := range v { + if asSymbols { + e.e.encodeSymbol(k2) + } else { + e.e.encodeString(c_UTF8, k2) + } + e.encode(v2) + } +} + +func (e *Encoder) encMapInt64Intf(v map[int64]interface{}) { + e.e.encodeMapPreamble(len(v)) + for k2, v2 := range v { + e.e.encodeInt(k2) + e.encode(v2) + } +} + +func (e *Encoder) encMapUint64Intf(v map[uint64]interface{}) { + e.e.encodeMapPreamble(len(v)) + for k2, v2 := range v { + e.e.encodeUint(uint64(k2)) + e.encode(v2) + } +} + +func (e *Encoder) encMapIntfIntf(v map[interface{}]interface{}) { + e.e.encodeMapPreamble(len(v)) + for k2, v2 := range v { + e.encode(k2) + e.encode(v2) + } +} + +// ---------------------------------------- + +func encErr(format string, params ...interface{}) { + doPanic(msgTagEnc, format, params...) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/ext_dep_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/ext_dep_test.go new file mode 100644 index 00000000..eb28459f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/ext_dep_test.go @@ -0,0 +1,75 @@ +// //+build ignore + +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +// This file includes benchmarks which have dependencies on 3rdparty +// packages (bson and vmihailenco/msgpack) which must be installed locally. +// +// To run the benchmarks including these 3rdparty packages, first +// - Uncomment first line in this file (put // // in front of it) +// - Get those packages: +// go get github.com/vmihailenco/msgpack +// go get labix.org/v2/mgo/bson +// - Run: +// go test -bi -bench=. + +import ( + "testing" + + vmsgpack "github.com/vmihailenco/msgpack" + "labix.org/v2/mgo/bson" +) + +func init() { + benchCheckers = append(benchCheckers, + benchChecker{"v-msgpack", fnVMsgpackEncodeFn, fnVMsgpackDecodeFn}, + benchChecker{"bson", fnBsonEncodeFn, fnBsonDecodeFn}, + ) +} + +func fnVMsgpackEncodeFn(ts interface{}) ([]byte, error) { + return vmsgpack.Marshal(ts) +} + +func fnVMsgpackDecodeFn(buf []byte, ts interface{}) error { + return vmsgpack.Unmarshal(buf, ts) +} + +func fnBsonEncodeFn(ts interface{}) ([]byte, error) { + return bson.Marshal(ts) +} + +func fnBsonDecodeFn(buf []byte, ts interface{}) error { + return bson.Unmarshal(buf, ts) +} + +func Benchmark__Bson_______Encode(b *testing.B) { + fnBenchmarkEncode(b, "bson", benchTs, fnBsonEncodeFn) +} + +func Benchmark__Bson_______Decode(b *testing.B) { + fnBenchmarkDecode(b, "bson", benchTs, fnBsonEncodeFn, fnBsonDecodeFn, fnBenchNewTs) +} + +func Benchmark__VMsgpack___Encode(b *testing.B) { + fnBenchmarkEncode(b, "v-msgpack", benchTs, fnVMsgpackEncodeFn) +} + +func Benchmark__VMsgpack___Decode(b *testing.B) { + fnBenchmarkDecode(b, "v-msgpack", benchTs, fnVMsgpackEncodeFn, fnVMsgpackDecodeFn, fnBenchNewTs) +} + +func TestMsgpackPythonGenStreams(t *testing.T) { + doTestMsgpackPythonGenStreams(t) +} + +func TestMsgpackRpcSpecGoClientToPythonSvc(t *testing.T) { + doTestMsgpackRpcSpecGoClientToPythonSvc(t) +} + +func TestMsgpackRpcSpecPythonClientToGoSvc(t *testing.T) { + doTestMsgpackRpcSpecPythonClientToGoSvc(t) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/helper.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/helper.go new file mode 100644 index 00000000..e6dc0563 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/helper.go @@ -0,0 +1,589 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +// Contains code shared by both encode and decode. + +import ( + "encoding/binary" + "fmt" + "math" + "reflect" + "sort" + "strings" + "sync" + "time" + "unicode" + "unicode/utf8" +) + +const ( + structTagName = "codec" + + // Support + // encoding.BinaryMarshaler: MarshalBinary() (data []byte, err error) + // encoding.BinaryUnmarshaler: UnmarshalBinary(data []byte) error + // This constant flag will enable or disable it. + supportBinaryMarshal = true + + // Each Encoder or Decoder uses a cache of functions based on conditionals, + // so that the conditionals are not run every time. + // + // Either a map or a slice is used to keep track of the functions. + // The map is more natural, but has a higher cost than a slice/array. + // This flag (useMapForCodecCache) controls which is used. + useMapForCodecCache = false + + // For some common container types, we can short-circuit an elaborate + // reflection dance and call encode/decode directly. + // The currently supported types are: + // - slices of strings, or id's (int64,uint64) or interfaces. + // - maps of str->str, str->intf, id(int64,uint64)->intf, intf->intf + shortCircuitReflectToFastPath = true + + // for debugging, set this to false, to catch panic traces. + // Note that this will always cause rpc tests to fail, since they need io.EOF sent via panic. + recoverPanicToErr = true +) + +type charEncoding uint8 + +const ( + c_RAW charEncoding = iota + c_UTF8 + c_UTF16LE + c_UTF16BE + c_UTF32LE + c_UTF32BE +) + +// valueType is the stream type +type valueType uint8 + +const ( + valueTypeUnset valueType = iota + valueTypeNil + valueTypeInt + valueTypeUint + valueTypeFloat + valueTypeBool + valueTypeString + valueTypeSymbol + valueTypeBytes + valueTypeMap + valueTypeArray + valueTypeTimestamp + valueTypeExt + + valueTypeInvalid = 0xff +) + +var ( + bigen = binary.BigEndian + structInfoFieldName = "_struct" + + cachedTypeInfo = make(map[uintptr]*typeInfo, 4) + cachedTypeInfoMutex sync.RWMutex + + intfSliceTyp = reflect.TypeOf([]interface{}(nil)) + intfTyp = intfSliceTyp.Elem() + + strSliceTyp = reflect.TypeOf([]string(nil)) + boolSliceTyp = reflect.TypeOf([]bool(nil)) + uintSliceTyp = reflect.TypeOf([]uint(nil)) + uint8SliceTyp = reflect.TypeOf([]uint8(nil)) + uint16SliceTyp = reflect.TypeOf([]uint16(nil)) + uint32SliceTyp = reflect.TypeOf([]uint32(nil)) + uint64SliceTyp = reflect.TypeOf([]uint64(nil)) + intSliceTyp = reflect.TypeOf([]int(nil)) + int8SliceTyp = reflect.TypeOf([]int8(nil)) + int16SliceTyp = reflect.TypeOf([]int16(nil)) + int32SliceTyp = reflect.TypeOf([]int32(nil)) + int64SliceTyp = reflect.TypeOf([]int64(nil)) + float32SliceTyp = reflect.TypeOf([]float32(nil)) + float64SliceTyp = reflect.TypeOf([]float64(nil)) + + mapIntfIntfTyp = reflect.TypeOf(map[interface{}]interface{}(nil)) + mapStrIntfTyp = reflect.TypeOf(map[string]interface{}(nil)) + mapStrStrTyp = reflect.TypeOf(map[string]string(nil)) + + mapIntIntfTyp = reflect.TypeOf(map[int]interface{}(nil)) + mapInt64IntfTyp = reflect.TypeOf(map[int64]interface{}(nil)) + mapUintIntfTyp = reflect.TypeOf(map[uint]interface{}(nil)) + mapUint64IntfTyp = reflect.TypeOf(map[uint64]interface{}(nil)) + + stringTyp = reflect.TypeOf("") + timeTyp = reflect.TypeOf(time.Time{}) + rawExtTyp = reflect.TypeOf(RawExt{}) + + mapBySliceTyp = reflect.TypeOf((*MapBySlice)(nil)).Elem() + binaryMarshalerTyp = reflect.TypeOf((*binaryMarshaler)(nil)).Elem() + binaryUnmarshalerTyp = reflect.TypeOf((*binaryUnmarshaler)(nil)).Elem() + + rawExtTypId = reflect.ValueOf(rawExtTyp).Pointer() + intfTypId = reflect.ValueOf(intfTyp).Pointer() + timeTypId = reflect.ValueOf(timeTyp).Pointer() + + intfSliceTypId = reflect.ValueOf(intfSliceTyp).Pointer() + strSliceTypId = reflect.ValueOf(strSliceTyp).Pointer() + + boolSliceTypId = reflect.ValueOf(boolSliceTyp).Pointer() + uintSliceTypId = reflect.ValueOf(uintSliceTyp).Pointer() + uint8SliceTypId = reflect.ValueOf(uint8SliceTyp).Pointer() + uint16SliceTypId = reflect.ValueOf(uint16SliceTyp).Pointer() + uint32SliceTypId = reflect.ValueOf(uint32SliceTyp).Pointer() + uint64SliceTypId = reflect.ValueOf(uint64SliceTyp).Pointer() + intSliceTypId = reflect.ValueOf(intSliceTyp).Pointer() + int8SliceTypId = reflect.ValueOf(int8SliceTyp).Pointer() + int16SliceTypId = reflect.ValueOf(int16SliceTyp).Pointer() + int32SliceTypId = reflect.ValueOf(int32SliceTyp).Pointer() + int64SliceTypId = reflect.ValueOf(int64SliceTyp).Pointer() + float32SliceTypId = reflect.ValueOf(float32SliceTyp).Pointer() + float64SliceTypId = reflect.ValueOf(float64SliceTyp).Pointer() + + mapStrStrTypId = reflect.ValueOf(mapStrStrTyp).Pointer() + mapIntfIntfTypId = reflect.ValueOf(mapIntfIntfTyp).Pointer() + mapStrIntfTypId = reflect.ValueOf(mapStrIntfTyp).Pointer() + mapIntIntfTypId = reflect.ValueOf(mapIntIntfTyp).Pointer() + mapInt64IntfTypId = reflect.ValueOf(mapInt64IntfTyp).Pointer() + mapUintIntfTypId = reflect.ValueOf(mapUintIntfTyp).Pointer() + mapUint64IntfTypId = reflect.ValueOf(mapUint64IntfTyp).Pointer() + // Id = reflect.ValueOf().Pointer() + // mapBySliceTypId = reflect.ValueOf(mapBySliceTyp).Pointer() + + binaryMarshalerTypId = reflect.ValueOf(binaryMarshalerTyp).Pointer() + binaryUnmarshalerTypId = reflect.ValueOf(binaryUnmarshalerTyp).Pointer() + + intBitsize uint8 = uint8(reflect.TypeOf(int(0)).Bits()) + uintBitsize uint8 = uint8(reflect.TypeOf(uint(0)).Bits()) + + bsAll0x00 = []byte{0, 0, 0, 0, 0, 0, 0, 0} + bsAll0xff = []byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff} +) + +type binaryUnmarshaler interface { + UnmarshalBinary(data []byte) error +} + +type binaryMarshaler interface { + MarshalBinary() (data []byte, err error) +} + +// MapBySlice represents a slice which should be encoded as a map in the stream. +// The slice contains a sequence of key-value pairs. +type MapBySlice interface { + MapBySlice() +} + +// WARNING: DO NOT USE DIRECTLY. EXPORTED FOR GODOC BENEFIT. WILL BE REMOVED. +// +// BasicHandle encapsulates the common options and extension functions. +type BasicHandle struct { + extHandle + EncodeOptions + DecodeOptions +} + +// Handle is the interface for a specific encoding format. +// +// Typically, a Handle is pre-configured before first time use, +// and not modified while in use. Such a pre-configured Handle +// is safe for concurrent access. +type Handle interface { + writeExt() bool + getBasicHandle() *BasicHandle + newEncDriver(w encWriter) encDriver + newDecDriver(r decReader) decDriver +} + +// RawExt represents raw unprocessed extension data. +type RawExt struct { + Tag byte + Data []byte +} + +type extTypeTagFn struct { + rtid uintptr + rt reflect.Type + tag byte + encFn func(reflect.Value) ([]byte, error) + decFn func(reflect.Value, []byte) error +} + +type extHandle []*extTypeTagFn + +// AddExt registers an encode and decode function for a reflect.Type. +// Note that the type must be a named type, and specifically not +// a pointer or Interface. An error is returned if that is not honored. +// +// To Deregister an ext, call AddExt with 0 tag, nil encfn and nil decfn. +func (o *extHandle) AddExt( + rt reflect.Type, + tag byte, + encfn func(reflect.Value) ([]byte, error), + decfn func(reflect.Value, []byte) error, +) (err error) { + // o is a pointer, because we may need to initialize it + if rt.PkgPath() == "" || rt.Kind() == reflect.Interface { + err = fmt.Errorf("codec.Handle.AddExt: Takes named type, especially not a pointer or interface: %T", + reflect.Zero(rt).Interface()) + return + } + + // o cannot be nil, since it is always embedded in a Handle. + // if nil, let it panic. + // if o == nil { + // err = errors.New("codec.Handle.AddExt: extHandle cannot be a nil pointer.") + // return + // } + + rtid := reflect.ValueOf(rt).Pointer() + for _, v := range *o { + if v.rtid == rtid { + v.tag, v.encFn, v.decFn = tag, encfn, decfn + return + } + } + + *o = append(*o, &extTypeTagFn{rtid, rt, tag, encfn, decfn}) + return +} + +func (o extHandle) getExt(rtid uintptr) *extTypeTagFn { + for _, v := range o { + if v.rtid == rtid { + return v + } + } + return nil +} + +func (o extHandle) getExtForTag(tag byte) *extTypeTagFn { + for _, v := range o { + if v.tag == tag { + return v + } + } + return nil +} + +func (o extHandle) getDecodeExtForTag(tag byte) ( + rv reflect.Value, fn func(reflect.Value, []byte) error) { + if x := o.getExtForTag(tag); x != nil { + // ext is only registered for base + rv = reflect.New(x.rt).Elem() + fn = x.decFn + } + return +} + +func (o extHandle) getDecodeExt(rtid uintptr) (tag byte, fn func(reflect.Value, []byte) error) { + if x := o.getExt(rtid); x != nil { + tag = x.tag + fn = x.decFn + } + return +} + +func (o extHandle) getEncodeExt(rtid uintptr) (tag byte, fn func(reflect.Value) ([]byte, error)) { + if x := o.getExt(rtid); x != nil { + tag = x.tag + fn = x.encFn + } + return +} + +type structFieldInfo struct { + encName string // encode name + + // only one of 'i' or 'is' can be set. If 'i' is -1, then 'is' has been set. + + is []int // (recursive/embedded) field index in struct + i int16 // field index in struct + omitEmpty bool + toArray bool // if field is _struct, is the toArray set? + + // tag string // tag + // name string // field name + // encNameBs []byte // encoded name as byte stream + // ikind int // kind of the field as an int i.e. int(reflect.Kind) +} + +func parseStructFieldInfo(fname string, stag string) *structFieldInfo { + if fname == "" { + panic("parseStructFieldInfo: No Field Name") + } + si := structFieldInfo{ + // name: fname, + encName: fname, + // tag: stag, + } + + if stag != "" { + for i, s := range strings.Split(stag, ",") { + if i == 0 { + if s != "" { + si.encName = s + } + } else { + switch s { + case "omitempty": + si.omitEmpty = true + case "toarray": + si.toArray = true + } + } + } + } + // si.encNameBs = []byte(si.encName) + return &si +} + +type sfiSortedByEncName []*structFieldInfo + +func (p sfiSortedByEncName) Len() int { + return len(p) +} + +func (p sfiSortedByEncName) Less(i, j int) bool { + return p[i].encName < p[j].encName +} + +func (p sfiSortedByEncName) Swap(i, j int) { + p[i], p[j] = p[j], p[i] +} + +// typeInfo keeps information about each type referenced in the encode/decode sequence. +// +// During an encode/decode sequence, we work as below: +// - If base is a built in type, en/decode base value +// - If base is registered as an extension, en/decode base value +// - If type is binary(M/Unm)arshaler, call Binary(M/Unm)arshal method +// - Else decode appropriately based on the reflect.Kind +type typeInfo struct { + sfi []*structFieldInfo // sorted. Used when enc/dec struct to map. + sfip []*structFieldInfo // unsorted. Used when enc/dec struct to array. + + rt reflect.Type + rtid uintptr + + // baseId gives pointer to the base reflect.Type, after deferencing + // the pointers. E.g. base type of ***time.Time is time.Time. + base reflect.Type + baseId uintptr + baseIndir int8 // number of indirections to get to base + + mbs bool // base type (T or *T) is a MapBySlice + + m bool // base type (T or *T) is a binaryMarshaler + unm bool // base type (T or *T) is a binaryUnmarshaler + mIndir int8 // number of indirections to get to binaryMarshaler type + unmIndir int8 // number of indirections to get to binaryUnmarshaler type + toArray bool // whether this (struct) type should be encoded as an array +} + +func (ti *typeInfo) indexForEncName(name string) int { + //tisfi := ti.sfi + const binarySearchThreshold = 16 + if sfilen := len(ti.sfi); sfilen < binarySearchThreshold { + // linear search. faster than binary search in my testing up to 16-field structs. + for i, si := range ti.sfi { + if si.encName == name { + return i + } + } + } else { + // binary search. adapted from sort/search.go. + h, i, j := 0, 0, sfilen + for i < j { + h = i + (j-i)/2 + if ti.sfi[h].encName < name { + i = h + 1 + } else { + j = h + } + } + if i < sfilen && ti.sfi[i].encName == name { + return i + } + } + return -1 +} + +func getTypeInfo(rtid uintptr, rt reflect.Type) (pti *typeInfo) { + var ok bool + cachedTypeInfoMutex.RLock() + pti, ok = cachedTypeInfo[rtid] + cachedTypeInfoMutex.RUnlock() + if ok { + return + } + + cachedTypeInfoMutex.Lock() + defer cachedTypeInfoMutex.Unlock() + if pti, ok = cachedTypeInfo[rtid]; ok { + return + } + + ti := typeInfo{rt: rt, rtid: rtid} + pti = &ti + + var indir int8 + if ok, indir = implementsIntf(rt, binaryMarshalerTyp); ok { + ti.m, ti.mIndir = true, indir + } + if ok, indir = implementsIntf(rt, binaryUnmarshalerTyp); ok { + ti.unm, ti.unmIndir = true, indir + } + if ok, _ = implementsIntf(rt, mapBySliceTyp); ok { + ti.mbs = true + } + + pt := rt + var ptIndir int8 + // for ; pt.Kind() == reflect.Ptr; pt, ptIndir = pt.Elem(), ptIndir+1 { } + for pt.Kind() == reflect.Ptr { + pt = pt.Elem() + ptIndir++ + } + if ptIndir == 0 { + ti.base = rt + ti.baseId = rtid + } else { + ti.base = pt + ti.baseId = reflect.ValueOf(pt).Pointer() + ti.baseIndir = ptIndir + } + + if rt.Kind() == reflect.Struct { + var siInfo *structFieldInfo + if f, ok := rt.FieldByName(structInfoFieldName); ok { + siInfo = parseStructFieldInfo(structInfoFieldName, f.Tag.Get(structTagName)) + ti.toArray = siInfo.toArray + } + sfip := make([]*structFieldInfo, 0, rt.NumField()) + rgetTypeInfo(rt, nil, make(map[string]bool), &sfip, siInfo) + + // // try to put all si close together + // const tryToPutAllStructFieldInfoTogether = true + // if tryToPutAllStructFieldInfoTogether { + // sfip2 := make([]structFieldInfo, len(sfip)) + // for i, si := range sfip { + // sfip2[i] = *si + // } + // for i := range sfip { + // sfip[i] = &sfip2[i] + // } + // } + + ti.sfip = make([]*structFieldInfo, len(sfip)) + ti.sfi = make([]*structFieldInfo, len(sfip)) + copy(ti.sfip, sfip) + sort.Sort(sfiSortedByEncName(sfip)) + copy(ti.sfi, sfip) + } + // sfi = sfip + cachedTypeInfo[rtid] = pti + return +} + +func rgetTypeInfo(rt reflect.Type, indexstack []int, fnameToHastag map[string]bool, + sfi *[]*structFieldInfo, siInfo *structFieldInfo, +) { + // for rt.Kind() == reflect.Ptr { + // // indexstack = append(indexstack, 0) + // rt = rt.Elem() + // } + for j := 0; j < rt.NumField(); j++ { + f := rt.Field(j) + stag := f.Tag.Get(structTagName) + if stag == "-" { + continue + } + if r1, _ := utf8.DecodeRuneInString(f.Name); r1 == utf8.RuneError || !unicode.IsUpper(r1) { + continue + } + // if anonymous and there is no struct tag and its a struct (or pointer to struct), inline it. + if f.Anonymous && stag == "" { + ft := f.Type + for ft.Kind() == reflect.Ptr { + ft = ft.Elem() + } + if ft.Kind() == reflect.Struct { + indexstack2 := append(append(make([]int, 0, len(indexstack)+4), indexstack...), j) + rgetTypeInfo(ft, indexstack2, fnameToHastag, sfi, siInfo) + continue + } + } + // do not let fields with same name in embedded structs override field at higher level. + // this must be done after anonymous check, to allow anonymous field + // still include their child fields + if _, ok := fnameToHastag[f.Name]; ok { + continue + } + si := parseStructFieldInfo(f.Name, stag) + // si.ikind = int(f.Type.Kind()) + if len(indexstack) == 0 { + si.i = int16(j) + } else { + si.i = -1 + si.is = append(append(make([]int, 0, len(indexstack)+4), indexstack...), j) + } + + if siInfo != nil { + if siInfo.omitEmpty { + si.omitEmpty = true + } + } + *sfi = append(*sfi, si) + fnameToHastag[f.Name] = stag != "" + } +} + +func panicToErr(err *error) { + if recoverPanicToErr { + if x := recover(); x != nil { + //debug.PrintStack() + panicValToErr(x, err) + } + } +} + +func doPanic(tag string, format string, params ...interface{}) { + params2 := make([]interface{}, len(params)+1) + params2[0] = tag + copy(params2[1:], params) + panic(fmt.Errorf("%s: "+format, params2...)) +} + +func checkOverflowFloat32(f float64, doCheck bool) { + if !doCheck { + return + } + // check overflow (logic adapted from std pkg reflect/value.go OverflowFloat() + f2 := f + if f2 < 0 { + f2 = -f + } + if math.MaxFloat32 < f2 && f2 <= math.MaxFloat64 { + decErr("Overflow float32 value: %v", f2) + } +} + +func checkOverflow(ui uint64, i int64, bitsize uint8) { + // check overflow (logic adapted from std pkg reflect/value.go OverflowUint() + if bitsize == 0 { + return + } + if i != 0 { + if trunc := (i << (64 - bitsize)) >> (64 - bitsize); i != trunc { + decErr("Overflow int value: %v", i) + } + } + if ui != 0 { + if trunc := (ui << (64 - bitsize)) >> (64 - bitsize); ui != trunc { + decErr("Overflow uint value: %v", ui) + } + } +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/helper_internal.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/helper_internal.go new file mode 100644 index 00000000..58417da9 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/helper_internal.go @@ -0,0 +1,127 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +// All non-std package dependencies live in this file, +// so porting to different environment is easy (just update functions). + +import ( + "errors" + "fmt" + "math" + "reflect" +) + +var ( + raisePanicAfterRecover = false + debugging = true +) + +func panicValToErr(panicVal interface{}, err *error) { + switch xerr := panicVal.(type) { + case error: + *err = xerr + case string: + *err = errors.New(xerr) + default: + *err = fmt.Errorf("%v", panicVal) + } + if raisePanicAfterRecover { + panic(panicVal) + } + return +} + +func isEmptyValueDeref(v reflect.Value, deref bool) bool { + switch v.Kind() { + case reflect.Array, reflect.Map, reflect.Slice, reflect.String: + return v.Len() == 0 + case reflect.Bool: + return !v.Bool() + case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: + return v.Int() == 0 + case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: + return v.Uint() == 0 + case reflect.Float32, reflect.Float64: + return v.Float() == 0 + case reflect.Interface, reflect.Ptr: + if deref { + if v.IsNil() { + return true + } + return isEmptyValueDeref(v.Elem(), deref) + } else { + return v.IsNil() + } + case reflect.Struct: + // return true if all fields are empty. else return false. + + // we cannot use equality check, because some fields may be maps/slices/etc + // and consequently the structs are not comparable. + // return v.Interface() == reflect.Zero(v.Type()).Interface() + for i, n := 0, v.NumField(); i < n; i++ { + if !isEmptyValueDeref(v.Field(i), deref) { + return false + } + } + return true + } + return false +} + +func isEmptyValue(v reflect.Value) bool { + return isEmptyValueDeref(v, true) +} + +func debugf(format string, args ...interface{}) { + if debugging { + if len(format) == 0 || format[len(format)-1] != '\n' { + format = format + "\n" + } + fmt.Printf(format, args...) + } +} + +func pruneSignExt(v []byte, pos bool) (n int) { + if len(v) < 2 { + } else if pos && v[0] == 0 { + for ; v[n] == 0 && n+1 < len(v) && (v[n+1]&(1<<7) == 0); n++ { + } + } else if !pos && v[0] == 0xff { + for ; v[n] == 0xff && n+1 < len(v) && (v[n+1]&(1<<7) != 0); n++ { + } + } + return +} + +func implementsIntf(typ, iTyp reflect.Type) (success bool, indir int8) { + if typ == nil { + return + } + rt := typ + // The type might be a pointer and we need to keep + // dereferencing to the base type until we find an implementation. + for { + if rt.Implements(iTyp) { + return true, indir + } + if p := rt; p.Kind() == reflect.Ptr { + indir++ + if indir >= math.MaxInt8 { // insane number of indirections + return false, 0 + } + rt = p.Elem() + continue + } + break + } + // No luck yet, but if this is a base type (non-pointer), the pointer might satisfy. + if typ.Kind() != reflect.Ptr { + // Not a pointer, but does the pointer work? + if reflect.PtrTo(typ).Implements(iTyp) { + return true, -1 + } + } + return false, 0 +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/msgpack.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/msgpack.go new file mode 100644 index 00000000..da0500d1 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/msgpack.go @@ -0,0 +1,816 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +/* +MSGPACK + +Msgpack-c implementation powers the c, c++, python, ruby, etc libraries. +We need to maintain compatibility with it and how it encodes integer values +without caring about the type. + +For compatibility with behaviour of msgpack-c reference implementation: + - Go intX (>0) and uintX + IS ENCODED AS + msgpack +ve fixnum, unsigned + - Go intX (<0) + IS ENCODED AS + msgpack -ve fixnum, signed + +*/ +package codec + +import ( + "fmt" + "io" + "math" + "net/rpc" +) + +const ( + mpPosFixNumMin byte = 0x00 + mpPosFixNumMax = 0x7f + mpFixMapMin = 0x80 + mpFixMapMax = 0x8f + mpFixArrayMin = 0x90 + mpFixArrayMax = 0x9f + mpFixStrMin = 0xa0 + mpFixStrMax = 0xbf + mpNil = 0xc0 + _ = 0xc1 + mpFalse = 0xc2 + mpTrue = 0xc3 + mpFloat = 0xca + mpDouble = 0xcb + mpUint8 = 0xcc + mpUint16 = 0xcd + mpUint32 = 0xce + mpUint64 = 0xcf + mpInt8 = 0xd0 + mpInt16 = 0xd1 + mpInt32 = 0xd2 + mpInt64 = 0xd3 + + // extensions below + mpBin8 = 0xc4 + mpBin16 = 0xc5 + mpBin32 = 0xc6 + mpExt8 = 0xc7 + mpExt16 = 0xc8 + mpExt32 = 0xc9 + mpFixExt1 = 0xd4 + mpFixExt2 = 0xd5 + mpFixExt4 = 0xd6 + mpFixExt8 = 0xd7 + mpFixExt16 = 0xd8 + + mpStr8 = 0xd9 // new + mpStr16 = 0xda + mpStr32 = 0xdb + + mpArray16 = 0xdc + mpArray32 = 0xdd + + mpMap16 = 0xde + mpMap32 = 0xdf + + mpNegFixNumMin = 0xe0 + mpNegFixNumMax = 0xff +) + +// MsgpackSpecRpcMultiArgs is a special type which signifies to the MsgpackSpecRpcCodec +// that the backend RPC service takes multiple arguments, which have been arranged +// in sequence in the slice. +// +// The Codec then passes it AS-IS to the rpc service (without wrapping it in an +// array of 1 element). +type MsgpackSpecRpcMultiArgs []interface{} + +// A MsgpackContainer type specifies the different types of msgpackContainers. +type msgpackContainerType struct { + fixCutoff int + bFixMin, b8, b16, b32 byte + hasFixMin, has8, has8Always bool +} + +var ( + msgpackContainerStr = msgpackContainerType{32, mpFixStrMin, mpStr8, mpStr16, mpStr32, true, true, false} + msgpackContainerBin = msgpackContainerType{0, 0, mpBin8, mpBin16, mpBin32, false, true, true} + msgpackContainerList = msgpackContainerType{16, mpFixArrayMin, 0, mpArray16, mpArray32, true, false, false} + msgpackContainerMap = msgpackContainerType{16, mpFixMapMin, 0, mpMap16, mpMap32, true, false, false} +) + +//--------------------------------------------- + +type msgpackEncDriver struct { + w encWriter + h *MsgpackHandle +} + +func (e *msgpackEncDriver) isBuiltinType(rt uintptr) bool { + //no builtin types. All encodings are based on kinds. Types supported as extensions. + return false +} + +func (e *msgpackEncDriver) encodeBuiltin(rt uintptr, v interface{}) {} + +func (e *msgpackEncDriver) encodeNil() { + e.w.writen1(mpNil) +} + +func (e *msgpackEncDriver) encodeInt(i int64) { + + switch { + case i >= 0: + e.encodeUint(uint64(i)) + case i >= -32: + e.w.writen1(byte(i)) + case i >= math.MinInt8: + e.w.writen2(mpInt8, byte(i)) + case i >= math.MinInt16: + e.w.writen1(mpInt16) + e.w.writeUint16(uint16(i)) + case i >= math.MinInt32: + e.w.writen1(mpInt32) + e.w.writeUint32(uint32(i)) + default: + e.w.writen1(mpInt64) + e.w.writeUint64(uint64(i)) + } +} + +func (e *msgpackEncDriver) encodeUint(i uint64) { + switch { + case i <= math.MaxInt8: + e.w.writen1(byte(i)) + case i <= math.MaxUint8: + e.w.writen2(mpUint8, byte(i)) + case i <= math.MaxUint16: + e.w.writen1(mpUint16) + e.w.writeUint16(uint16(i)) + case i <= math.MaxUint32: + e.w.writen1(mpUint32) + e.w.writeUint32(uint32(i)) + default: + e.w.writen1(mpUint64) + e.w.writeUint64(uint64(i)) + } +} + +func (e *msgpackEncDriver) encodeBool(b bool) { + if b { + e.w.writen1(mpTrue) + } else { + e.w.writen1(mpFalse) + } +} + +func (e *msgpackEncDriver) encodeFloat32(f float32) { + e.w.writen1(mpFloat) + e.w.writeUint32(math.Float32bits(f)) +} + +func (e *msgpackEncDriver) encodeFloat64(f float64) { + e.w.writen1(mpDouble) + e.w.writeUint64(math.Float64bits(f)) +} + +func (e *msgpackEncDriver) encodeExtPreamble(xtag byte, l int) { + switch { + case l == 1: + e.w.writen2(mpFixExt1, xtag) + case l == 2: + e.w.writen2(mpFixExt2, xtag) + case l == 4: + e.w.writen2(mpFixExt4, xtag) + case l == 8: + e.w.writen2(mpFixExt8, xtag) + case l == 16: + e.w.writen2(mpFixExt16, xtag) + case l < 256: + e.w.writen2(mpExt8, byte(l)) + e.w.writen1(xtag) + case l < 65536: + e.w.writen1(mpExt16) + e.w.writeUint16(uint16(l)) + e.w.writen1(xtag) + default: + e.w.writen1(mpExt32) + e.w.writeUint32(uint32(l)) + e.w.writen1(xtag) + } +} + +func (e *msgpackEncDriver) encodeArrayPreamble(length int) { + e.writeContainerLen(msgpackContainerList, length) +} + +func (e *msgpackEncDriver) encodeMapPreamble(length int) { + e.writeContainerLen(msgpackContainerMap, length) +} + +func (e *msgpackEncDriver) encodeString(c charEncoding, s string) { + if c == c_RAW && e.h.WriteExt { + e.writeContainerLen(msgpackContainerBin, len(s)) + } else { + e.writeContainerLen(msgpackContainerStr, len(s)) + } + if len(s) > 0 { + e.w.writestr(s) + } +} + +func (e *msgpackEncDriver) encodeSymbol(v string) { + e.encodeString(c_UTF8, v) +} + +func (e *msgpackEncDriver) encodeStringBytes(c charEncoding, bs []byte) { + if c == c_RAW && e.h.WriteExt { + e.writeContainerLen(msgpackContainerBin, len(bs)) + } else { + e.writeContainerLen(msgpackContainerStr, len(bs)) + } + if len(bs) > 0 { + e.w.writeb(bs) + } +} + +func (e *msgpackEncDriver) writeContainerLen(ct msgpackContainerType, l int) { + switch { + case ct.hasFixMin && l < ct.fixCutoff: + e.w.writen1(ct.bFixMin | byte(l)) + case ct.has8 && l < 256 && (ct.has8Always || e.h.WriteExt): + e.w.writen2(ct.b8, uint8(l)) + case l < 65536: + e.w.writen1(ct.b16) + e.w.writeUint16(uint16(l)) + default: + e.w.writen1(ct.b32) + e.w.writeUint32(uint32(l)) + } +} + +//--------------------------------------------- + +type msgpackDecDriver struct { + r decReader + h *MsgpackHandle + bd byte + bdRead bool + bdType valueType +} + +func (d *msgpackDecDriver) isBuiltinType(rt uintptr) bool { + //no builtin types. All encodings are based on kinds. Types supported as extensions. + return false +} + +func (d *msgpackDecDriver) decodeBuiltin(rt uintptr, v interface{}) {} + +// Note: This returns either a primitive (int, bool, etc) for non-containers, +// or a containerType, or a specific type denoting nil or extension. +// It is called when a nil interface{} is passed, leaving it up to the DecDriver +// to introspect the stream and decide how best to decode. +// It deciphers the value by looking at the stream first. +func (d *msgpackDecDriver) decodeNaked() (v interface{}, vt valueType, decodeFurther bool) { + d.initReadNext() + bd := d.bd + + switch bd { + case mpNil: + vt = valueTypeNil + d.bdRead = false + case mpFalse: + vt = valueTypeBool + v = false + case mpTrue: + vt = valueTypeBool + v = true + + case mpFloat: + vt = valueTypeFloat + v = float64(math.Float32frombits(d.r.readUint32())) + case mpDouble: + vt = valueTypeFloat + v = math.Float64frombits(d.r.readUint64()) + + case mpUint8: + vt = valueTypeUint + v = uint64(d.r.readn1()) + case mpUint16: + vt = valueTypeUint + v = uint64(d.r.readUint16()) + case mpUint32: + vt = valueTypeUint + v = uint64(d.r.readUint32()) + case mpUint64: + vt = valueTypeUint + v = uint64(d.r.readUint64()) + + case mpInt8: + vt = valueTypeInt + v = int64(int8(d.r.readn1())) + case mpInt16: + vt = valueTypeInt + v = int64(int16(d.r.readUint16())) + case mpInt32: + vt = valueTypeInt + v = int64(int32(d.r.readUint32())) + case mpInt64: + vt = valueTypeInt + v = int64(int64(d.r.readUint64())) + + default: + switch { + case bd >= mpPosFixNumMin && bd <= mpPosFixNumMax: + // positive fixnum (always signed) + vt = valueTypeInt + v = int64(int8(bd)) + case bd >= mpNegFixNumMin && bd <= mpNegFixNumMax: + // negative fixnum + vt = valueTypeInt + v = int64(int8(bd)) + case bd == mpStr8, bd == mpStr16, bd == mpStr32, bd >= mpFixStrMin && bd <= mpFixStrMax: + if d.h.RawToString { + var rvm string + vt = valueTypeString + v = &rvm + } else { + var rvm = []byte{} + vt = valueTypeBytes + v = &rvm + } + decodeFurther = true + case bd == mpBin8, bd == mpBin16, bd == mpBin32: + var rvm = []byte{} + vt = valueTypeBytes + v = &rvm + decodeFurther = true + case bd == mpArray16, bd == mpArray32, bd >= mpFixArrayMin && bd <= mpFixArrayMax: + vt = valueTypeArray + decodeFurther = true + case bd == mpMap16, bd == mpMap32, bd >= mpFixMapMin && bd <= mpFixMapMax: + vt = valueTypeMap + decodeFurther = true + case bd >= mpFixExt1 && bd <= mpFixExt16, bd >= mpExt8 && bd <= mpExt32: + clen := d.readExtLen() + var re RawExt + re.Tag = d.r.readn1() + re.Data = d.r.readn(clen) + v = &re + vt = valueTypeExt + default: + decErr("Nil-Deciphered DecodeValue: %s: hex: %x, dec: %d", msgBadDesc, bd, bd) + } + } + if !decodeFurther { + d.bdRead = false + } + return +} + +// int can be decoded from msgpack type: intXXX or uintXXX +func (d *msgpackDecDriver) decodeInt(bitsize uint8) (i int64) { + switch d.bd { + case mpUint8: + i = int64(uint64(d.r.readn1())) + case mpUint16: + i = int64(uint64(d.r.readUint16())) + case mpUint32: + i = int64(uint64(d.r.readUint32())) + case mpUint64: + i = int64(d.r.readUint64()) + case mpInt8: + i = int64(int8(d.r.readn1())) + case mpInt16: + i = int64(int16(d.r.readUint16())) + case mpInt32: + i = int64(int32(d.r.readUint32())) + case mpInt64: + i = int64(d.r.readUint64()) + default: + switch { + case d.bd >= mpPosFixNumMin && d.bd <= mpPosFixNumMax: + i = int64(int8(d.bd)) + case d.bd >= mpNegFixNumMin && d.bd <= mpNegFixNumMax: + i = int64(int8(d.bd)) + default: + decErr("Unhandled single-byte unsigned integer value: %s: %x", msgBadDesc, d.bd) + } + } + // check overflow (logic adapted from std pkg reflect/value.go OverflowUint() + if bitsize > 0 { + if trunc := (i << (64 - bitsize)) >> (64 - bitsize); i != trunc { + decErr("Overflow int value: %v", i) + } + } + d.bdRead = false + return +} + +// uint can be decoded from msgpack type: intXXX or uintXXX +func (d *msgpackDecDriver) decodeUint(bitsize uint8) (ui uint64) { + switch d.bd { + case mpUint8: + ui = uint64(d.r.readn1()) + case mpUint16: + ui = uint64(d.r.readUint16()) + case mpUint32: + ui = uint64(d.r.readUint32()) + case mpUint64: + ui = d.r.readUint64() + case mpInt8: + if i := int64(int8(d.r.readn1())); i >= 0 { + ui = uint64(i) + } else { + decErr("Assigning negative signed value: %v, to unsigned type", i) + } + case mpInt16: + if i := int64(int16(d.r.readUint16())); i >= 0 { + ui = uint64(i) + } else { + decErr("Assigning negative signed value: %v, to unsigned type", i) + } + case mpInt32: + if i := int64(int32(d.r.readUint32())); i >= 0 { + ui = uint64(i) + } else { + decErr("Assigning negative signed value: %v, to unsigned type", i) + } + case mpInt64: + if i := int64(d.r.readUint64()); i >= 0 { + ui = uint64(i) + } else { + decErr("Assigning negative signed value: %v, to unsigned type", i) + } + default: + switch { + case d.bd >= mpPosFixNumMin && d.bd <= mpPosFixNumMax: + ui = uint64(d.bd) + case d.bd >= mpNegFixNumMin && d.bd <= mpNegFixNumMax: + decErr("Assigning negative signed value: %v, to unsigned type", int(d.bd)) + default: + decErr("Unhandled single-byte unsigned integer value: %s: %x", msgBadDesc, d.bd) + } + } + // check overflow (logic adapted from std pkg reflect/value.go OverflowUint() + if bitsize > 0 { + if trunc := (ui << (64 - bitsize)) >> (64 - bitsize); ui != trunc { + decErr("Overflow uint value: %v", ui) + } + } + d.bdRead = false + return +} + +// float can either be decoded from msgpack type: float, double or intX +func (d *msgpackDecDriver) decodeFloat(chkOverflow32 bool) (f float64) { + switch d.bd { + case mpFloat: + f = float64(math.Float32frombits(d.r.readUint32())) + case mpDouble: + f = math.Float64frombits(d.r.readUint64()) + default: + f = float64(d.decodeInt(0)) + } + checkOverflowFloat32(f, chkOverflow32) + d.bdRead = false + return +} + +// bool can be decoded from bool, fixnum 0 or 1. +func (d *msgpackDecDriver) decodeBool() (b bool) { + switch d.bd { + case mpFalse, 0: + // b = false + case mpTrue, 1: + b = true + default: + decErr("Invalid single-byte value for bool: %s: %x", msgBadDesc, d.bd) + } + d.bdRead = false + return +} + +func (d *msgpackDecDriver) decodeString() (s string) { + clen := d.readContainerLen(msgpackContainerStr) + if clen > 0 { + s = string(d.r.readn(clen)) + } + d.bdRead = false + return +} + +// Callers must check if changed=true (to decide whether to replace the one they have) +func (d *msgpackDecDriver) decodeBytes(bs []byte) (bsOut []byte, changed bool) { + // bytes can be decoded from msgpackContainerStr or msgpackContainerBin + var clen int + switch d.bd { + case mpBin8, mpBin16, mpBin32: + clen = d.readContainerLen(msgpackContainerBin) + default: + clen = d.readContainerLen(msgpackContainerStr) + } + // if clen < 0 { + // changed = true + // panic("length cannot be zero. this cannot be nil.") + // } + if clen > 0 { + // if no contents in stream, don't update the passed byteslice + if len(bs) != clen { + // Return changed=true if length of passed slice diff from length of bytes in stream + if len(bs) > clen { + bs = bs[:clen] + } else { + bs = make([]byte, clen) + } + bsOut = bs + changed = true + } + d.r.readb(bs) + } + d.bdRead = false + return +} + +// Every top-level decode funcs (i.e. decodeValue, decode) must call this first. +func (d *msgpackDecDriver) initReadNext() { + if d.bdRead { + return + } + d.bd = d.r.readn1() + d.bdRead = true + d.bdType = valueTypeUnset +} + +func (d *msgpackDecDriver) currentEncodedType() valueType { + if d.bdType == valueTypeUnset { + bd := d.bd + switch bd { + case mpNil: + d.bdType = valueTypeNil + case mpFalse, mpTrue: + d.bdType = valueTypeBool + case mpFloat, mpDouble: + d.bdType = valueTypeFloat + case mpUint8, mpUint16, mpUint32, mpUint64: + d.bdType = valueTypeUint + case mpInt8, mpInt16, mpInt32, mpInt64: + d.bdType = valueTypeInt + default: + switch { + case bd >= mpPosFixNumMin && bd <= mpPosFixNumMax: + d.bdType = valueTypeInt + case bd >= mpNegFixNumMin && bd <= mpNegFixNumMax: + d.bdType = valueTypeInt + case bd == mpStr8, bd == mpStr16, bd == mpStr32, bd >= mpFixStrMin && bd <= mpFixStrMax: + if d.h.RawToString { + d.bdType = valueTypeString + } else { + d.bdType = valueTypeBytes + } + case bd == mpBin8, bd == mpBin16, bd == mpBin32: + d.bdType = valueTypeBytes + case bd == mpArray16, bd == mpArray32, bd >= mpFixArrayMin && bd <= mpFixArrayMax: + d.bdType = valueTypeArray + case bd == mpMap16, bd == mpMap32, bd >= mpFixMapMin && bd <= mpFixMapMax: + d.bdType = valueTypeMap + case bd >= mpFixExt1 && bd <= mpFixExt16, bd >= mpExt8 && bd <= mpExt32: + d.bdType = valueTypeExt + default: + decErr("currentEncodedType: Undeciphered descriptor: %s: hex: %x, dec: %d", msgBadDesc, bd, bd) + } + } + } + return d.bdType +} + +func (d *msgpackDecDriver) tryDecodeAsNil() bool { + if d.bd == mpNil { + d.bdRead = false + return true + } + return false +} + +func (d *msgpackDecDriver) readContainerLen(ct msgpackContainerType) (clen int) { + bd := d.bd + switch { + case bd == mpNil: + clen = -1 // to represent nil + case bd == ct.b8: + clen = int(d.r.readn1()) + case bd == ct.b16: + clen = int(d.r.readUint16()) + case bd == ct.b32: + clen = int(d.r.readUint32()) + case (ct.bFixMin & bd) == ct.bFixMin: + clen = int(ct.bFixMin ^ bd) + default: + decErr("readContainerLen: %s: hex: %x, dec: %d", msgBadDesc, bd, bd) + } + d.bdRead = false + return +} + +func (d *msgpackDecDriver) readMapLen() int { + return d.readContainerLen(msgpackContainerMap) +} + +func (d *msgpackDecDriver) readArrayLen() int { + return d.readContainerLen(msgpackContainerList) +} + +func (d *msgpackDecDriver) readExtLen() (clen int) { + switch d.bd { + case mpNil: + clen = -1 // to represent nil + case mpFixExt1: + clen = 1 + case mpFixExt2: + clen = 2 + case mpFixExt4: + clen = 4 + case mpFixExt8: + clen = 8 + case mpFixExt16: + clen = 16 + case mpExt8: + clen = int(d.r.readn1()) + case mpExt16: + clen = int(d.r.readUint16()) + case mpExt32: + clen = int(d.r.readUint32()) + default: + decErr("decoding ext bytes: found unexpected byte: %x", d.bd) + } + return +} + +func (d *msgpackDecDriver) decodeExt(verifyTag bool, tag byte) (xtag byte, xbs []byte) { + xbd := d.bd + switch { + case xbd == mpBin8, xbd == mpBin16, xbd == mpBin32: + xbs, _ = d.decodeBytes(nil) + case xbd == mpStr8, xbd == mpStr16, xbd == mpStr32, + xbd >= mpFixStrMin && xbd <= mpFixStrMax: + xbs = []byte(d.decodeString()) + default: + clen := d.readExtLen() + xtag = d.r.readn1() + if verifyTag && xtag != tag { + decErr("Wrong extension tag. Got %b. Expecting: %v", xtag, tag) + } + xbs = d.r.readn(clen) + } + d.bdRead = false + return +} + +//-------------------------------------------------- + +//MsgpackHandle is a Handle for the Msgpack Schema-Free Encoding Format. +type MsgpackHandle struct { + BasicHandle + + // RawToString controls how raw bytes are decoded into a nil interface{}. + RawToString bool + // WriteExt flag supports encoding configured extensions with extension tags. + // It also controls whether other elements of the new spec are encoded (ie Str8). + // + // With WriteExt=false, configured extensions are serialized as raw bytes + // and Str8 is not encoded. + // + // A stream can still be decoded into a typed value, provided an appropriate value + // is provided, but the type cannot be inferred from the stream. If no appropriate + // type is provided (e.g. decoding into a nil interface{}), you get back + // a []byte or string based on the setting of RawToString. + WriteExt bool +} + +func (h *MsgpackHandle) newEncDriver(w encWriter) encDriver { + return &msgpackEncDriver{w: w, h: h} +} + +func (h *MsgpackHandle) newDecDriver(r decReader) decDriver { + return &msgpackDecDriver{r: r, h: h} +} + +func (h *MsgpackHandle) writeExt() bool { + return h.WriteExt +} + +func (h *MsgpackHandle) getBasicHandle() *BasicHandle { + return &h.BasicHandle +} + +//-------------------------------------------------- + +type msgpackSpecRpcCodec struct { + rpcCodec +} + +// /////////////// Spec RPC Codec /////////////////// +func (c *msgpackSpecRpcCodec) WriteRequest(r *rpc.Request, body interface{}) error { + // WriteRequest can write to both a Go service, and other services that do + // not abide by the 1 argument rule of a Go service. + // We discriminate based on if the body is a MsgpackSpecRpcMultiArgs + var bodyArr []interface{} + if m, ok := body.(MsgpackSpecRpcMultiArgs); ok { + bodyArr = ([]interface{})(m) + } else { + bodyArr = []interface{}{body} + } + r2 := []interface{}{0, uint32(r.Seq), r.ServiceMethod, bodyArr} + return c.write(r2, nil, false, true) +} + +func (c *msgpackSpecRpcCodec) WriteResponse(r *rpc.Response, body interface{}) error { + var moe interface{} + if r.Error != "" { + moe = r.Error + } + if moe != nil && body != nil { + body = nil + } + r2 := []interface{}{1, uint32(r.Seq), moe, body} + return c.write(r2, nil, false, true) +} + +func (c *msgpackSpecRpcCodec) ReadResponseHeader(r *rpc.Response) error { + return c.parseCustomHeader(1, &r.Seq, &r.Error) +} + +func (c *msgpackSpecRpcCodec) ReadRequestHeader(r *rpc.Request) error { + return c.parseCustomHeader(0, &r.Seq, &r.ServiceMethod) +} + +func (c *msgpackSpecRpcCodec) ReadRequestBody(body interface{}) error { + if body == nil { // read and discard + return c.read(nil) + } + bodyArr := []interface{}{body} + return c.read(&bodyArr) +} + +func (c *msgpackSpecRpcCodec) parseCustomHeader(expectTypeByte byte, msgid *uint64, methodOrError *string) (err error) { + + if c.cls { + return io.EOF + } + + // We read the response header by hand + // so that the body can be decoded on its own from the stream at a later time. + + const fia byte = 0x94 //four item array descriptor value + // Not sure why the panic of EOF is swallowed above. + // if bs1 := c.dec.r.readn1(); bs1 != fia { + // err = fmt.Errorf("Unexpected value for array descriptor: Expecting %v. Received %v", fia, bs1) + // return + // } + var b byte + b, err = c.br.ReadByte() + if err != nil { + return + } + if b != fia { + err = fmt.Errorf("Unexpected value for array descriptor: Expecting %v. Received %v", fia, b) + return + } + + if err = c.read(&b); err != nil { + return + } + if b != expectTypeByte { + err = fmt.Errorf("Unexpected byte descriptor in header. Expecting %v. Received %v", expectTypeByte, b) + return + } + if err = c.read(msgid); err != nil { + return + } + if err = c.read(methodOrError); err != nil { + return + } + return +} + +//-------------------------------------------------- + +// msgpackSpecRpc is the implementation of Rpc that uses custom communication protocol +// as defined in the msgpack spec at https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md +type msgpackSpecRpc struct{} + +// MsgpackSpecRpc implements Rpc using the communication protocol defined in +// the msgpack spec at https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md . +// Its methods (ServerCodec and ClientCodec) return values that implement RpcCodecBuffered. +var MsgpackSpecRpc msgpackSpecRpc + +func (x msgpackSpecRpc) ServerCodec(conn io.ReadWriteCloser, h Handle) rpc.ServerCodec { + return &msgpackSpecRpcCodec{newRPCCodec(conn, h)} +} + +func (x msgpackSpecRpc) ClientCodec(conn io.ReadWriteCloser, h Handle) rpc.ClientCodec { + return &msgpackSpecRpcCodec{newRPCCodec(conn, h)} +} + +var _ decDriver = (*msgpackDecDriver)(nil) +var _ encDriver = (*msgpackEncDriver)(nil) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/msgpack_test.py b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/msgpack_test.py new file mode 100755 index 00000000..e933838c --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/msgpack_test.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python + +# This will create golden files in a directory passed to it. +# A Test calls this internally to create the golden files +# So it can process them (so we don't have to checkin the files). + +import msgpack, msgpackrpc, sys, os, threading + +def get_test_data_list(): + # get list with all primitive types, and a combo type + l0 = [ + -8, + -1616, + -32323232, + -6464646464646464, + 192, + 1616, + 32323232, + 6464646464646464, + 192, + -3232.0, + -6464646464.0, + 3232.0, + 6464646464.0, + False, + True, + None, + "someday", + "", + "bytestring", + 1328176922000002000, + -2206187877999998000, + 0, + -6795364578871345152 + ] + l1 = [ + { "true": True, + "false": False }, + { "true": "True", + "false": False, + "uint16(1616)": 1616 }, + { "list": [1616, 32323232, True, -3232.0, {"TRUE":True, "FALSE":False}, [True, False] ], + "int32":32323232, "bool": True, + "LONG STRING": "123456789012345678901234567890123456789012345678901234567890", + "SHORT STRING": "1234567890" }, + { True: "true", 8: False, "false": 0 } + ] + + l = [] + l.extend(l0) + l.append(l0) + l.extend(l1) + return l + +def build_test_data(destdir): + l = get_test_data_list() + for i in range(len(l)): + packer = msgpack.Packer() + serialized = packer.pack(l[i]) + f = open(os.path.join(destdir, str(i) + '.golden'), 'wb') + f.write(serialized) + f.close() + +def doRpcServer(port, stopTimeSec): + class EchoHandler(object): + def Echo123(self, msg1, msg2, msg3): + return ("1:%s 2:%s 3:%s" % (msg1, msg2, msg3)) + def EchoStruct(self, msg): + return ("%s" % msg) + + addr = msgpackrpc.Address('localhost', port) + server = msgpackrpc.Server(EchoHandler()) + server.listen(addr) + # run thread to stop it after stopTimeSec seconds if > 0 + if stopTimeSec > 0: + def myStopRpcServer(): + server.stop() + t = threading.Timer(stopTimeSec, myStopRpcServer) + t.start() + server.start() + +def doRpcClientToPythonSvc(port): + address = msgpackrpc.Address('localhost', port) + client = msgpackrpc.Client(address, unpack_encoding='utf-8') + print client.call("Echo123", "A1", "B2", "C3") + print client.call("EchoStruct", {"A" :"Aa", "B":"Bb", "C":"Cc"}) + +def doRpcClientToGoSvc(port): + # print ">>>> port: ", port, " <<<<<" + address = msgpackrpc.Address('localhost', port) + client = msgpackrpc.Client(address, unpack_encoding='utf-8') + print client.call("TestRpcInt.Echo123", ["A1", "B2", "C3"]) + print client.call("TestRpcInt.EchoStruct", {"A" :"Aa", "B":"Bb", "C":"Cc"}) + +def doMain(args): + if len(args) == 2 and args[0] == "testdata": + build_test_data(args[1]) + elif len(args) == 3 and args[0] == "rpc-server": + doRpcServer(int(args[1]), int(args[2])) + elif len(args) == 2 and args[0] == "rpc-client-python-service": + doRpcClientToPythonSvc(int(args[1])) + elif len(args) == 2 and args[0] == "rpc-client-go-service": + doRpcClientToGoSvc(int(args[1])) + else: + print("Usage: msgpack_test.py " + + "[testdata|rpc-server|rpc-client-python-service|rpc-client-go-service] ...") + +if __name__ == "__main__": + doMain(sys.argv[1:]) + diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/rpc.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/rpc.go new file mode 100644 index 00000000..d014dbdc --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/rpc.go @@ -0,0 +1,152 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import ( + "bufio" + "io" + "net/rpc" + "sync" +) + +// Rpc provides a rpc Server or Client Codec for rpc communication. +type Rpc interface { + ServerCodec(conn io.ReadWriteCloser, h Handle) rpc.ServerCodec + ClientCodec(conn io.ReadWriteCloser, h Handle) rpc.ClientCodec +} + +// RpcCodecBuffered allows access to the underlying bufio.Reader/Writer +// used by the rpc connection. It accomodates use-cases where the connection +// should be used by rpc and non-rpc functions, e.g. streaming a file after +// sending an rpc response. +type RpcCodecBuffered interface { + BufferedReader() *bufio.Reader + BufferedWriter() *bufio.Writer +} + +// ------------------------------------- + +// rpcCodec defines the struct members and common methods. +type rpcCodec struct { + rwc io.ReadWriteCloser + dec *Decoder + enc *Encoder + bw *bufio.Writer + br *bufio.Reader + mu sync.Mutex + cls bool +} + +func newRPCCodec(conn io.ReadWriteCloser, h Handle) rpcCodec { + bw := bufio.NewWriter(conn) + br := bufio.NewReader(conn) + return rpcCodec{ + rwc: conn, + bw: bw, + br: br, + enc: NewEncoder(bw, h), + dec: NewDecoder(br, h), + } +} + +func (c *rpcCodec) BufferedReader() *bufio.Reader { + return c.br +} + +func (c *rpcCodec) BufferedWriter() *bufio.Writer { + return c.bw +} + +func (c *rpcCodec) write(obj1, obj2 interface{}, writeObj2, doFlush bool) (err error) { + if c.cls { + return io.EOF + } + if err = c.enc.Encode(obj1); err != nil { + return + } + if writeObj2 { + if err = c.enc.Encode(obj2); err != nil { + return + } + } + if doFlush && c.bw != nil { + return c.bw.Flush() + } + return +} + +func (c *rpcCodec) read(obj interface{}) (err error) { + if c.cls { + return io.EOF + } + //If nil is passed in, we should still attempt to read content to nowhere. + if obj == nil { + var obj2 interface{} + return c.dec.Decode(&obj2) + } + return c.dec.Decode(obj) +} + +func (c *rpcCodec) Close() error { + if c.cls { + return io.EOF + } + c.cls = true + return c.rwc.Close() +} + +func (c *rpcCodec) ReadResponseBody(body interface{}) error { + return c.read(body) +} + +// ------------------------------------- + +type goRpcCodec struct { + rpcCodec +} + +func (c *goRpcCodec) WriteRequest(r *rpc.Request, body interface{}) error { + // Must protect for concurrent access as per API + c.mu.Lock() + defer c.mu.Unlock() + return c.write(r, body, true, true) +} + +func (c *goRpcCodec) WriteResponse(r *rpc.Response, body interface{}) error { + c.mu.Lock() + defer c.mu.Unlock() + return c.write(r, body, true, true) +} + +func (c *goRpcCodec) ReadResponseHeader(r *rpc.Response) error { + return c.read(r) +} + +func (c *goRpcCodec) ReadRequestHeader(r *rpc.Request) error { + return c.read(r) +} + +func (c *goRpcCodec) ReadRequestBody(body interface{}) error { + return c.read(body) +} + +// ------------------------------------- + +// goRpc is the implementation of Rpc that uses the communication protocol +// as defined in net/rpc package. +type goRpc struct{} + +// GoRpc implements Rpc using the communication protocol defined in net/rpc package. +// Its methods (ServerCodec and ClientCodec) return values that implement RpcCodecBuffered. +var GoRpc goRpc + +func (x goRpc) ServerCodec(conn io.ReadWriteCloser, h Handle) rpc.ServerCodec { + return &goRpcCodec{newRPCCodec(conn, h)} +} + +func (x goRpc) ClientCodec(conn io.ReadWriteCloser, h Handle) rpc.ClientCodec { + return &goRpcCodec{newRPCCodec(conn, h)} +} + +var _ RpcCodecBuffered = (*rpcCodec)(nil) // ensure *rpcCodec implements RpcCodecBuffered diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/simple.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/simple.go new file mode 100644 index 00000000..9e4d148a --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/simple.go @@ -0,0 +1,461 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import "math" + +const ( + _ uint8 = iota + simpleVdNil = 1 + simpleVdFalse = 2 + simpleVdTrue = 3 + simpleVdFloat32 = 4 + simpleVdFloat64 = 5 + + // each lasts for 4 (ie n, n+1, n+2, n+3) + simpleVdPosInt = 8 + simpleVdNegInt = 12 + + // containers: each lasts for 4 (ie n, n+1, n+2, ... n+7) + simpleVdString = 216 + simpleVdByteArray = 224 + simpleVdArray = 232 + simpleVdMap = 240 + simpleVdExt = 248 +) + +type simpleEncDriver struct { + h *SimpleHandle + w encWriter + //b [8]byte +} + +func (e *simpleEncDriver) isBuiltinType(rt uintptr) bool { + return false +} + +func (e *simpleEncDriver) encodeBuiltin(rt uintptr, v interface{}) { +} + +func (e *simpleEncDriver) encodeNil() { + e.w.writen1(simpleVdNil) +} + +func (e *simpleEncDriver) encodeBool(b bool) { + if b { + e.w.writen1(simpleVdTrue) + } else { + e.w.writen1(simpleVdFalse) + } +} + +func (e *simpleEncDriver) encodeFloat32(f float32) { + e.w.writen1(simpleVdFloat32) + e.w.writeUint32(math.Float32bits(f)) +} + +func (e *simpleEncDriver) encodeFloat64(f float64) { + e.w.writen1(simpleVdFloat64) + e.w.writeUint64(math.Float64bits(f)) +} + +func (e *simpleEncDriver) encodeInt(v int64) { + if v < 0 { + e.encUint(uint64(-v), simpleVdNegInt) + } else { + e.encUint(uint64(v), simpleVdPosInt) + } +} + +func (e *simpleEncDriver) encodeUint(v uint64) { + e.encUint(v, simpleVdPosInt) +} + +func (e *simpleEncDriver) encUint(v uint64, bd uint8) { + switch { + case v <= math.MaxUint8: + e.w.writen2(bd, uint8(v)) + case v <= math.MaxUint16: + e.w.writen1(bd + 1) + e.w.writeUint16(uint16(v)) + case v <= math.MaxUint32: + e.w.writen1(bd + 2) + e.w.writeUint32(uint32(v)) + case v <= math.MaxUint64: + e.w.writen1(bd + 3) + e.w.writeUint64(v) + } +} + +func (e *simpleEncDriver) encLen(bd byte, length int) { + switch { + case length == 0: + e.w.writen1(bd) + case length <= math.MaxUint8: + e.w.writen1(bd + 1) + e.w.writen1(uint8(length)) + case length <= math.MaxUint16: + e.w.writen1(bd + 2) + e.w.writeUint16(uint16(length)) + case int64(length) <= math.MaxUint32: + e.w.writen1(bd + 3) + e.w.writeUint32(uint32(length)) + default: + e.w.writen1(bd + 4) + e.w.writeUint64(uint64(length)) + } +} + +func (e *simpleEncDriver) encodeExtPreamble(xtag byte, length int) { + e.encLen(simpleVdExt, length) + e.w.writen1(xtag) +} + +func (e *simpleEncDriver) encodeArrayPreamble(length int) { + e.encLen(simpleVdArray, length) +} + +func (e *simpleEncDriver) encodeMapPreamble(length int) { + e.encLen(simpleVdMap, length) +} + +func (e *simpleEncDriver) encodeString(c charEncoding, v string) { + e.encLen(simpleVdString, len(v)) + e.w.writestr(v) +} + +func (e *simpleEncDriver) encodeSymbol(v string) { + e.encodeString(c_UTF8, v) +} + +func (e *simpleEncDriver) encodeStringBytes(c charEncoding, v []byte) { + e.encLen(simpleVdByteArray, len(v)) + e.w.writeb(v) +} + +//------------------------------------ + +type simpleDecDriver struct { + h *SimpleHandle + r decReader + bdRead bool + bdType valueType + bd byte + //b [8]byte +} + +func (d *simpleDecDriver) initReadNext() { + if d.bdRead { + return + } + d.bd = d.r.readn1() + d.bdRead = true + d.bdType = valueTypeUnset +} + +func (d *simpleDecDriver) currentEncodedType() valueType { + if d.bdType == valueTypeUnset { + switch d.bd { + case simpleVdNil: + d.bdType = valueTypeNil + case simpleVdTrue, simpleVdFalse: + d.bdType = valueTypeBool + case simpleVdPosInt, simpleVdPosInt + 1, simpleVdPosInt + 2, simpleVdPosInt + 3: + d.bdType = valueTypeUint + case simpleVdNegInt, simpleVdNegInt + 1, simpleVdNegInt + 2, simpleVdNegInt + 3: + d.bdType = valueTypeInt + case simpleVdFloat32, simpleVdFloat64: + d.bdType = valueTypeFloat + case simpleVdString, simpleVdString + 1, simpleVdString + 2, simpleVdString + 3, simpleVdString + 4: + d.bdType = valueTypeString + case simpleVdByteArray, simpleVdByteArray + 1, simpleVdByteArray + 2, simpleVdByteArray + 3, simpleVdByteArray + 4: + d.bdType = valueTypeBytes + case simpleVdExt, simpleVdExt + 1, simpleVdExt + 2, simpleVdExt + 3, simpleVdExt + 4: + d.bdType = valueTypeExt + case simpleVdArray, simpleVdArray + 1, simpleVdArray + 2, simpleVdArray + 3, simpleVdArray + 4: + d.bdType = valueTypeArray + case simpleVdMap, simpleVdMap + 1, simpleVdMap + 2, simpleVdMap + 3, simpleVdMap + 4: + d.bdType = valueTypeMap + default: + decErr("currentEncodedType: Unrecognized d.vd: 0x%x", d.bd) + } + } + return d.bdType +} + +func (d *simpleDecDriver) tryDecodeAsNil() bool { + if d.bd == simpleVdNil { + d.bdRead = false + return true + } + return false +} + +func (d *simpleDecDriver) isBuiltinType(rt uintptr) bool { + return false +} + +func (d *simpleDecDriver) decodeBuiltin(rt uintptr, v interface{}) { +} + +func (d *simpleDecDriver) decIntAny() (ui uint64, i int64, neg bool) { + switch d.bd { + case simpleVdPosInt: + ui = uint64(d.r.readn1()) + i = int64(ui) + case simpleVdPosInt + 1: + ui = uint64(d.r.readUint16()) + i = int64(ui) + case simpleVdPosInt + 2: + ui = uint64(d.r.readUint32()) + i = int64(ui) + case simpleVdPosInt + 3: + ui = uint64(d.r.readUint64()) + i = int64(ui) + case simpleVdNegInt: + ui = uint64(d.r.readn1()) + i = -(int64(ui)) + neg = true + case simpleVdNegInt + 1: + ui = uint64(d.r.readUint16()) + i = -(int64(ui)) + neg = true + case simpleVdNegInt + 2: + ui = uint64(d.r.readUint32()) + i = -(int64(ui)) + neg = true + case simpleVdNegInt + 3: + ui = uint64(d.r.readUint64()) + i = -(int64(ui)) + neg = true + default: + decErr("decIntAny: Integer only valid from pos/neg integer1..8. Invalid descriptor: %v", d.bd) + } + // don't do this check, because callers may only want the unsigned value. + // if ui > math.MaxInt64 { + // decErr("decIntAny: Integer out of range for signed int64: %v", ui) + // } + return +} + +func (d *simpleDecDriver) decodeInt(bitsize uint8) (i int64) { + _, i, _ = d.decIntAny() + checkOverflow(0, i, bitsize) + d.bdRead = false + return +} + +func (d *simpleDecDriver) decodeUint(bitsize uint8) (ui uint64) { + ui, i, neg := d.decIntAny() + if neg { + decErr("Assigning negative signed value: %v, to unsigned type", i) + } + checkOverflow(ui, 0, bitsize) + d.bdRead = false + return +} + +func (d *simpleDecDriver) decodeFloat(chkOverflow32 bool) (f float64) { + switch d.bd { + case simpleVdFloat32: + f = float64(math.Float32frombits(d.r.readUint32())) + case simpleVdFloat64: + f = math.Float64frombits(d.r.readUint64()) + default: + if d.bd >= simpleVdPosInt && d.bd <= simpleVdNegInt+3 { + _, i, _ := d.decIntAny() + f = float64(i) + } else { + decErr("Float only valid from float32/64: Invalid descriptor: %v", d.bd) + } + } + checkOverflowFloat32(f, chkOverflow32) + d.bdRead = false + return +} + +// bool can be decoded from bool only (single byte). +func (d *simpleDecDriver) decodeBool() (b bool) { + switch d.bd { + case simpleVdTrue: + b = true + case simpleVdFalse: + default: + decErr("Invalid single-byte value for bool: %s: %x", msgBadDesc, d.bd) + } + d.bdRead = false + return +} + +func (d *simpleDecDriver) readMapLen() (length int) { + d.bdRead = false + return d.decLen() +} + +func (d *simpleDecDriver) readArrayLen() (length int) { + d.bdRead = false + return d.decLen() +} + +func (d *simpleDecDriver) decLen() int { + switch d.bd % 8 { + case 0: + return 0 + case 1: + return int(d.r.readn1()) + case 2: + return int(d.r.readUint16()) + case 3: + ui := uint64(d.r.readUint32()) + checkOverflow(ui, 0, intBitsize) + return int(ui) + case 4: + ui := d.r.readUint64() + checkOverflow(ui, 0, intBitsize) + return int(ui) + } + decErr("decLen: Cannot read length: bd%8 must be in range 0..4. Got: %d", d.bd%8) + return -1 +} + +func (d *simpleDecDriver) decodeString() (s string) { + s = string(d.r.readn(d.decLen())) + d.bdRead = false + return +} + +func (d *simpleDecDriver) decodeBytes(bs []byte) (bsOut []byte, changed bool) { + if clen := d.decLen(); clen > 0 { + // if no contents in stream, don't update the passed byteslice + if len(bs) != clen { + if len(bs) > clen { + bs = bs[:clen] + } else { + bs = make([]byte, clen) + } + bsOut = bs + changed = true + } + d.r.readb(bs) + } + d.bdRead = false + return +} + +func (d *simpleDecDriver) decodeExt(verifyTag bool, tag byte) (xtag byte, xbs []byte) { + switch d.bd { + case simpleVdExt, simpleVdExt + 1, simpleVdExt + 2, simpleVdExt + 3, simpleVdExt + 4: + l := d.decLen() + xtag = d.r.readn1() + if verifyTag && xtag != tag { + decErr("Wrong extension tag. Got %b. Expecting: %v", xtag, tag) + } + xbs = d.r.readn(l) + case simpleVdByteArray, simpleVdByteArray + 1, simpleVdByteArray + 2, simpleVdByteArray + 3, simpleVdByteArray + 4: + xbs, _ = d.decodeBytes(nil) + default: + decErr("Invalid d.vd for extensions (Expecting extensions or byte array). Got: 0x%x", d.bd) + } + d.bdRead = false + return +} + +func (d *simpleDecDriver) decodeNaked() (v interface{}, vt valueType, decodeFurther bool) { + d.initReadNext() + + switch d.bd { + case simpleVdNil: + vt = valueTypeNil + case simpleVdFalse: + vt = valueTypeBool + v = false + case simpleVdTrue: + vt = valueTypeBool + v = true + case simpleVdPosInt, simpleVdPosInt + 1, simpleVdPosInt + 2, simpleVdPosInt + 3: + vt = valueTypeUint + ui, _, _ := d.decIntAny() + v = ui + case simpleVdNegInt, simpleVdNegInt + 1, simpleVdNegInt + 2, simpleVdNegInt + 3: + vt = valueTypeInt + _, i, _ := d.decIntAny() + v = i + case simpleVdFloat32: + vt = valueTypeFloat + v = d.decodeFloat(true) + case simpleVdFloat64: + vt = valueTypeFloat + v = d.decodeFloat(false) + case simpleVdString, simpleVdString + 1, simpleVdString + 2, simpleVdString + 3, simpleVdString + 4: + vt = valueTypeString + v = d.decodeString() + case simpleVdByteArray, simpleVdByteArray + 1, simpleVdByteArray + 2, simpleVdByteArray + 3, simpleVdByteArray + 4: + vt = valueTypeBytes + v, _ = d.decodeBytes(nil) + case simpleVdExt, simpleVdExt + 1, simpleVdExt + 2, simpleVdExt + 3, simpleVdExt + 4: + vt = valueTypeExt + l := d.decLen() + var re RawExt + re.Tag = d.r.readn1() + re.Data = d.r.readn(l) + v = &re + vt = valueTypeExt + case simpleVdArray, simpleVdArray + 1, simpleVdArray + 2, simpleVdArray + 3, simpleVdArray + 4: + vt = valueTypeArray + decodeFurther = true + case simpleVdMap, simpleVdMap + 1, simpleVdMap + 2, simpleVdMap + 3, simpleVdMap + 4: + vt = valueTypeMap + decodeFurther = true + default: + decErr("decodeNaked: Unrecognized d.vd: 0x%x", d.bd) + } + + if !decodeFurther { + d.bdRead = false + } + return +} + +//------------------------------------ + +// SimpleHandle is a Handle for a very simple encoding format. +// +// simple is a simplistic codec similar to binc, but not as compact. +// - Encoding of a value is always preceeded by the descriptor byte (bd) +// - True, false, nil are encoded fully in 1 byte (the descriptor) +// - Integers (intXXX, uintXXX) are encoded in 1, 2, 4 or 8 bytes (plus a descriptor byte). +// There are positive (uintXXX and intXXX >= 0) and negative (intXXX < 0) integers. +// - Floats are encoded in 4 or 8 bytes (plus a descriptor byte) +// - Lenght of containers (strings, bytes, array, map, extensions) +// are encoded in 0, 1, 2, 4 or 8 bytes. +// Zero-length containers have no length encoded. +// For others, the number of bytes is given by pow(2, bd%3) +// - maps are encoded as [bd] [length] [[key][value]]... +// - arrays are encoded as [bd] [length] [value]... +// - extensions are encoded as [bd] [length] [tag] [byte]... +// - strings/bytearrays are encoded as [bd] [length] [byte]... +// +// The full spec will be published soon. +type SimpleHandle struct { + BasicHandle +} + +func (h *SimpleHandle) newEncDriver(w encWriter) encDriver { + return &simpleEncDriver{w: w, h: h} +} + +func (h *SimpleHandle) newDecDriver(r decReader) decDriver { + return &simpleDecDriver{r: r, h: h} +} + +func (_ *SimpleHandle) writeExt() bool { + return true +} + +func (h *SimpleHandle) getBasicHandle() *BasicHandle { + return &h.BasicHandle +} + +var _ decDriver = (*simpleDecDriver)(nil) +var _ encDriver = (*simpleEncDriver)(nil) diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/time.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/time.go new file mode 100644 index 00000000..c86d6532 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/time.go @@ -0,0 +1,193 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +import ( + "time" +) + +var ( + timeDigits = [...]byte{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'} +) + +// EncodeTime encodes a time.Time as a []byte, including +// information on the instant in time and UTC offset. +// +// Format Description +// +// A timestamp is composed of 3 components: +// +// - secs: signed integer representing seconds since unix epoch +// - nsces: unsigned integer representing fractional seconds as a +// nanosecond offset within secs, in the range 0 <= nsecs < 1e9 +// - tz: signed integer representing timezone offset in minutes east of UTC, +// and a dst (daylight savings time) flag +// +// When encoding a timestamp, the first byte is the descriptor, which +// defines which components are encoded and how many bytes are used to +// encode secs and nsecs components. *If secs/nsecs is 0 or tz is UTC, it +// is not encoded in the byte array explicitly*. +// +// Descriptor 8 bits are of the form `A B C DDD EE`: +// A: Is secs component encoded? 1 = true +// B: Is nsecs component encoded? 1 = true +// C: Is tz component encoded? 1 = true +// DDD: Number of extra bytes for secs (range 0-7). +// If A = 1, secs encoded in DDD+1 bytes. +// If A = 0, secs is not encoded, and is assumed to be 0. +// If A = 1, then we need at least 1 byte to encode secs. +// DDD says the number of extra bytes beyond that 1. +// E.g. if DDD=0, then secs is represented in 1 byte. +// if DDD=2, then secs is represented in 3 bytes. +// EE: Number of extra bytes for nsecs (range 0-3). +// If B = 1, nsecs encoded in EE+1 bytes (similar to secs/DDD above) +// +// Following the descriptor bytes, subsequent bytes are: +// +// secs component encoded in `DDD + 1` bytes (if A == 1) +// nsecs component encoded in `EE + 1` bytes (if B == 1) +// tz component encoded in 2 bytes (if C == 1) +// +// secs and nsecs components are integers encoded in a BigEndian +// 2-complement encoding format. +// +// tz component is encoded as 2 bytes (16 bits). Most significant bit 15 to +// Least significant bit 0 are described below: +// +// Timezone offset has a range of -12:00 to +14:00 (ie -720 to +840 minutes). +// Bit 15 = have\_dst: set to 1 if we set the dst flag. +// Bit 14 = dst\_on: set to 1 if dst is in effect at the time, or 0 if not. +// Bits 13..0 = timezone offset in minutes. It is a signed integer in Big Endian format. +// +func encodeTime(t time.Time) []byte { + //t := rv.Interface().(time.Time) + tsecs, tnsecs := t.Unix(), t.Nanosecond() + var ( + bd byte + btmp [8]byte + bs [16]byte + i int = 1 + ) + l := t.Location() + if l == time.UTC { + l = nil + } + if tsecs != 0 { + bd = bd | 0x80 + bigen.PutUint64(btmp[:], uint64(tsecs)) + f := pruneSignExt(btmp[:], tsecs >= 0) + bd = bd | (byte(7-f) << 2) + copy(bs[i:], btmp[f:]) + i = i + (8 - f) + } + if tnsecs != 0 { + bd = bd | 0x40 + bigen.PutUint32(btmp[:4], uint32(tnsecs)) + f := pruneSignExt(btmp[:4], true) + bd = bd | byte(3-f) + copy(bs[i:], btmp[f:4]) + i = i + (4 - f) + } + if l != nil { + bd = bd | 0x20 + // Note that Go Libs do not give access to dst flag. + _, zoneOffset := t.Zone() + //zoneName, zoneOffset := t.Zone() + zoneOffset /= 60 + z := uint16(zoneOffset) + bigen.PutUint16(btmp[:2], z) + // clear dst flags + bs[i] = btmp[0] & 0x3f + bs[i+1] = btmp[1] + i = i + 2 + } + bs[0] = bd + return bs[0:i] +} + +// DecodeTime decodes a []byte into a time.Time. +func decodeTime(bs []byte) (tt time.Time, err error) { + bd := bs[0] + var ( + tsec int64 + tnsec uint32 + tz uint16 + i byte = 1 + i2 byte + n byte + ) + if bd&(1<<7) != 0 { + var btmp [8]byte + n = ((bd >> 2) & 0x7) + 1 + i2 = i + n + copy(btmp[8-n:], bs[i:i2]) + //if first bit of bs[i] is set, then fill btmp[0..8-n] with 0xff (ie sign extend it) + if bs[i]&(1<<7) != 0 { + copy(btmp[0:8-n], bsAll0xff) + //for j,k := byte(0), 8-n; j < k; j++ { btmp[j] = 0xff } + } + i = i2 + tsec = int64(bigen.Uint64(btmp[:])) + } + if bd&(1<<6) != 0 { + var btmp [4]byte + n = (bd & 0x3) + 1 + i2 = i + n + copy(btmp[4-n:], bs[i:i2]) + i = i2 + tnsec = bigen.Uint32(btmp[:]) + } + if bd&(1<<5) == 0 { + tt = time.Unix(tsec, int64(tnsec)).UTC() + return + } + // In stdlib time.Parse, when a date is parsed without a zone name, it uses "" as zone name. + // However, we need name here, so it can be shown when time is printed. + // Zone name is in form: UTC-08:00. + // Note that Go Libs do not give access to dst flag, so we ignore dst bits + + i2 = i + 2 + tz = bigen.Uint16(bs[i:i2]) + i = i2 + // sign extend sign bit into top 2 MSB (which were dst bits): + if tz&(1<<13) == 0 { // positive + tz = tz & 0x3fff //clear 2 MSBs: dst bits + } else { // negative + tz = tz | 0xc000 //set 2 MSBs: dst bits + //tzname[3] = '-' (TODO: verify. this works here) + } + tzint := int16(tz) + if tzint == 0 { + tt = time.Unix(tsec, int64(tnsec)).UTC() + } else { + // For Go Time, do not use a descriptive timezone. + // It's unnecessary, and makes it harder to do a reflect.DeepEqual. + // The Offset already tells what the offset should be, if not on UTC and unknown zone name. + // var zoneName = timeLocUTCName(tzint) + tt = time.Unix(tsec, int64(tnsec)).In(time.FixedZone("", int(tzint)*60)) + } + return +} + +func timeLocUTCName(tzint int16) string { + if tzint == 0 { + return "UTC" + } + var tzname = []byte("UTC+00:00") + //tzname := fmt.Sprintf("UTC%s%02d:%02d", tzsign, tz/60, tz%60) //perf issue using Sprintf. inline below. + //tzhr, tzmin := tz/60, tz%60 //faster if u convert to int first + var tzhr, tzmin int16 + if tzint < 0 { + tzname[3] = '-' // (TODO: verify. this works here) + tzhr, tzmin = -tzint/60, (-tzint)%60 + } else { + tzhr, tzmin = tzint/60, tzint%60 + } + tzname[4] = timeDigits[tzhr/10] + tzname[5] = timeDigits[tzhr%10] + tzname[7] = timeDigits[tzmin/10] + tzname[8] = timeDigits[tzmin%10] + return string(tzname) + //return time.FixedZone(string(tzname), int(tzint)*60) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/z_helper_test.go b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/z_helper_test.go new file mode 100644 index 00000000..2e9b3a0f --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/codec/z_helper_test.go @@ -0,0 +1,103 @@ +// Copyright (c) 2012, 2013 Ugorji Nwoke. All rights reserved. +// Use of this source code is governed by a BSD-style license found in the LICENSE file. + +package codec + +// All non-std package dependencies related to testing live in this file, +// so porting to different environment is easy (just update functions). +// +// Also, this file is called z_helper_test, to give a "hint" to compiler +// that its init() function should be called last. (not guaranteed by spec) + +import ( + "errors" + "reflect" + "flag" + "testing" +) + +var ( + testLogToT = true + failNowOnFail = true +) + +func init() { + testInitFlags() + benchInitFlags() + flag.Parse() + testInit() + benchInit() +} + +func checkErrT(t *testing.T, err error) { + if err != nil { + logT(t, err.Error()) + failT(t) + } +} + +func checkEqualT(t *testing.T, v1 interface{}, v2 interface{}, desc string) (err error) { + if err = deepEqual(v1, v2); err != nil { + logT(t, "Not Equal: %s: %v. v1: %v, v2: %v", desc, err, v1, v2) + failT(t) + } + return +} + +func logT(x interface{}, format string, args ...interface{}) { + if t, ok := x.(*testing.T); ok && t != nil && testLogToT { + t.Logf(format, args...) + } else if b, ok := x.(*testing.B); ok && b != nil && testLogToT { + b.Logf(format, args...) + } else { + debugf(format, args...) + } +} + +func failT(t *testing.T) { + if failNowOnFail { + t.FailNow() + } else { + t.Fail() + } +} + +func deepEqual(v1, v2 interface{}) (err error) { + if !reflect.DeepEqual(v1, v2) { + err = errors.New("Not Match") + } + return +} + +func approxDataSize(rv reflect.Value) (sum int) { + switch rk := rv.Kind(); rk { + case reflect.Invalid: + case reflect.Ptr, reflect.Interface: + sum += int(rv.Type().Size()) + sum += approxDataSize(rv.Elem()) + case reflect.Slice: + sum += int(rv.Type().Size()) + for j := 0; j < rv.Len(); j++ { + sum += approxDataSize(rv.Index(j)) + } + case reflect.String: + sum += int(rv.Type().Size()) + sum += rv.Len() + case reflect.Map: + sum += int(rv.Type().Size()) + for _, mk := range rv.MapKeys() { + sum += approxDataSize(mk) + sum += approxDataSize(rv.MapIndex(mk)) + } + case reflect.Struct: + //struct size already includes the full data size. + //sum += int(rv.Type().Size()) + for j := 0; j < rv.NumField(); j++ { + sum += approxDataSize(rv.Field(j)) + } + default: + //pure value types + sum += int(rv.Type().Size()) + } + return +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/msgpack.org.md b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/msgpack.org.md new file mode 100644 index 00000000..d5ebe71d --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/ugorji/go/msgpack.org.md @@ -0,0 +1,47 @@ +**MessagePack and [Binc](http://github.com/ugorji/binc) Codec for [Go](http://golang.org) Language.** + +*A High Performance, Feature-Rich, Idiomatic encode/decode and rpc library*. + +To install: + + go get github.com/ugorji/go/codec + +Source: [http://github.com/ugorji/go] +Online documentation: [http://godoc.org/github.com/ugorji/go/codec] + +Typical usage: + +```go + // create and use decoder/encoder + var ( + v interface{} // value to decode/encode into + r io.Reader + w io.Writer + b []byte + mh codec.MsgpackHandle + ) + + dec = codec.NewDecoder(r, &mh) + dec = codec.NewDecoderBytes(b, &mh) + err = dec.Decode(&v) + + enc = codec.NewEncoder(w, &mh) + enc = codec.NewEncoderBytes(&b, &mh) + err = enc.Encode(v) + + //RPC Server + go func() { + for { + conn, err := listener.Accept() + rpcCodec := codec.GoRpc.ServerCodec(conn, h) + //OR rpcCodec := codec.MsgpackSpecRpc.ServerCodec(conn, h) + rpc.ServeCodec(rpcCodec) + } + }() + + //RPC Communication (client side) + conn, err = net.Dial("tcp", "localhost:5555") + rpcCodec := codec.GoRpc.ClientCodec(conn, h) + //OR rpcCodec := codec.MsgpackSpecRpc.ClientCodec(conn, h) + client := rpc.NewClientWithCodec(rpcCodec) +``` diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/.gitignore b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/.gitignore new file mode 100644 index 00000000..528cd5b3 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/.gitignore @@ -0,0 +1 @@ +example/example diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/LICENSE b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/LICENSE new file mode 100644 index 00000000..24fb0207 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2013 Meng Zhang. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/README.md b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/README.md new file mode 100644 index 00000000..6df6d2f0 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/README.md @@ -0,0 +1,24 @@ +## Terminal ## +Terminal is a simple golang package that provides basic terminal handling. + +Terminal wraps color/format functions provided by [ANSI escape code](http://en.wikipedia.org/wiki/ANSI_escape_code) + +## Usage ## +```go +package main + +import ( + "github.com/wsxiaoys/terminal" + "github.com/wsxiaoys/terminal/color" +) + +func main() { + terminal.Stdout.Color("y"). + Print("Hello world").Nl(). + Reset(). + Colorf("@{kW}Hello world\n") + + color.Print("@rHello world") +} +``` +Check the godoc result for more details. diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/color/color.go b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/color/color.go new file mode 100644 index 00000000..38dab863 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/color/color.go @@ -0,0 +1,215 @@ +// The colors package provide a simple way to bring colorful charcaters to terminal interface. +// +// This example will output the text with a Blue foreground and a Black background +// color.Println("@{bK}Example Text") +// +// This one will output the text with a red foreground +// color.Println("@rExample Text") +// +// This one will escape the @ +// color.Println("@@") +// +// Full color syntax code +// @{rgbcmykwRGBCMYKW} foreground/background color +// r/R: Red +// g/G: Green +// b/B: Blue +// c/C: Cyan +// m/M: Magenta +// y/Y: Yellow +// k/K: Black +// w/W: White +// @{|} Reset format style +// @{!./_} Bold / Dim / Italic / Underline +// @{^&} Blink / Fast blink +// @{?} Reverse the foreground and background color +// @{-} Hide the text +// Note some of the functions are not widely supported, like "Fast blink" and "Italic". +package color + +import ( + "bytes" + "fmt" + "io" + "log" +) + +const ( + EscapeChar = '@' // Escape character for color syntax + ResetCode = "\033[0m" // Short for reset to default style +) + +// Mapping from character to concrete escape code. +var codeMap = map[int]int{ + '|': 0, + '!': 1, + '.': 2, + '/': 3, + '_': 4, + '^': 5, + '&': 6, + '?': 7, + '-': 8, + + 'k': 30, + 'r': 31, + 'g': 32, + 'y': 33, + 'b': 34, + 'm': 35, + 'c': 36, + 'w': 37, + 'd': 39, + + 'K': 40, + 'R': 41, + 'G': 42, + 'Y': 43, + 'B': 44, + 'M': 45, + 'C': 46, + 'W': 47, + 'D': 49, +} + +// Compile color syntax string like "rG" to escape code. +func Colorize(x string) string { + attr := 0 + fg := 39 + bg := 49 + + for _, key := range x { + c, ok := codeMap[int(key)] + switch { + case !ok: + log.Printf("Wrong color syntax: %c", key) + case 0 <= c && c <= 8: + attr = c + case 30 <= c && c <= 37: + fg = c + case 40 <= c && c <= 47: + bg = c + } + } + return fmt.Sprintf("\033[%d;%d;%dm", attr, fg, bg) +} + +// Handle state after meeting one '@' +func compileColorSyntax(input, output *bytes.Buffer) { + i, _, err := input.ReadRune() + if err != nil { + // EOF got + log.Print("Parse failed on color syntax") + return + } + + switch i { + default: + output.WriteString(Colorize(string(i))) + case '{': + color := bytes.NewBufferString("") + for { + i, _, err := input.ReadRune() + if err != nil { + log.Print("Parse failed on color syntax") + break + } + if i == '}' { + break + } + color.WriteRune(i) + } + output.WriteString(Colorize(color.String())) + case EscapeChar: + output.WriteRune(EscapeChar) + } +} + +// Compile the string and replace color syntax with concrete escape code. +func compile(x string) string { + if x == "" { + return "" + } + + input := bytes.NewBufferString(x) + output := bytes.NewBufferString("") + + for { + i, _, err := input.ReadRune() + if err != nil { + break + } + switch i { + default: + output.WriteRune(i) + case EscapeChar: + compileColorSyntax(input, output) + } + } + return output.String() +} + +// Compile multiple values, only do compiling on string type. +func compileValues(a *[]interface{}) { + for i, x := range *a { + if str, ok := x.(string); ok { + (*a)[i] = compile(str) + } + } +} + +// Similar to fmt.Print, will reset the color at the end. +func Print(a ...interface{}) (int, error) { + a = append(a, ResetCode) + compileValues(&a) + return fmt.Print(a...) +} + +// Similar to fmt.Println, will reset the color at the end. +func Println(a ...interface{}) (int, error) { + a = append(a, ResetCode) + compileValues(&a) + return fmt.Println(a...) +} + +// Similar to fmt.Printf, will reset the color at the end. +func Printf(format string, a ...interface{}) (int, error) { + format += ResetCode + format = compile(format) + return fmt.Printf(format, a...) +} + +// Similar to fmt.Fprint, will reset the color at the end. +func Fprint(w io.Writer, a ...interface{}) (int, error) { + a = append(a, ResetCode) + compileValues(&a) + return fmt.Fprint(w, a...) +} + +// Similar to fmt.Fprintln, will reset the color at the end. +func Fprintln(w io.Writer, a ...interface{}) (int, error) { + a = append(a, ResetCode) + compileValues(&a) + return fmt.Fprintln(w, a...) +} + +// Similar to fmt.Fprintf, will reset the color at the end. +func Fprintf(w io.Writer, format string, a ...interface{}) (int, error) { + format += ResetCode + format = compile(format) + return fmt.Fprintf(w, format, a...) +} + +// Similar to fmt.Sprint, will reset the color at the end. +func Sprint(a ...interface{}) string { + a = append(a, ResetCode) + compileValues(&a) + return fmt.Sprint(a...) +} + +// Similar to fmt.Sprintf, will reset the color at the end. +func Sprintf(format string, a ...interface{}) string { + format += ResetCode + format = compile(format) + return fmt.Sprintf(format, a...) +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/example/hello.go b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/example/hello.go new file mode 100644 index 00000000..137e06d5 --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/example/hello.go @@ -0,0 +1,15 @@ +package main + +import ( + "github.com/wsxiaoys/terminal" + "github.com/wsxiaoys/terminal/color" +) + +func main() { + terminal.Stdout.Color("y"). + Print("Hello world").Nl(). + Reset(). + Colorf("@{kW}Hello world\n") + + color.Print("@rHello world") +} diff --git a/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/terminal.go b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/terminal.go new file mode 100644 index 00000000..1b39b4de --- /dev/null +++ b/src/github.com/smira/aptly/_vendor/src/github.com/wsxiaoys/terminal/terminal.go @@ -0,0 +1,91 @@ +package terminal + +import ( + "fmt" + "github.com/wsxiaoys/terminal/color" + "io" + "log" + "os" +) + +type TerminalWriter struct { + io.Writer +} + +var ( + Stdout = &TerminalWriter{os.Stdout} + Stderr = &TerminalWriter{os.Stderr} +) + +func (w *TerminalWriter) checkOutput(s string) { + if _, err := io.WriteString(w, s); err != nil { + log.Fatal("Write to %v failed.", w) + } +} + +func (w *TerminalWriter) Color(syntax string) *TerminalWriter { + escapeCode := color.Colorize(syntax) + w.checkOutput(escapeCode) + return w +} + +func (w *TerminalWriter) Reset() *TerminalWriter { + w.checkOutput(color.ResetCode) + return w +} + +func (w *TerminalWriter) Print(a ...interface{}) *TerminalWriter { + fmt.Fprint(w, a...) + return w +} + +func (w *TerminalWriter) Nl(a ...interface{}) *TerminalWriter { + length := 1 + if len(a) > 0 { + length = a[0].(int) + } + for i := 0; i < length; i++ { + w.checkOutput("\n") + } + return w +} + +func (w *TerminalWriter) Colorf(format string, a ...interface{}) *TerminalWriter { + w.checkOutput(color.Sprintf(format, a...)) + return w +} + +func (w *TerminalWriter) Clear() *TerminalWriter { + w.checkOutput("\033[2J") + return w +} + +func (w *TerminalWriter) ClearLine() *TerminalWriter { + w.checkOutput("\033[2K") + return w +} + +func (w *TerminalWriter) Move(x, y int) *TerminalWriter { + w.checkOutput(fmt.Sprintf("\033[%d;%dH", x, y)) + return w +} + +func (w *TerminalWriter) Up(x int) *TerminalWriter { + w.checkOutput(fmt.Sprintf("\033[%dA", x)) + return w +} + +func (w *TerminalWriter) Down(x int) *TerminalWriter { + w.checkOutput(fmt.Sprintf("\033[%dB", x)) + return w +} + +func (w *TerminalWriter) Right(x int) *TerminalWriter { + w.checkOutput(fmt.Sprintf("\033[%dC", x)) + return w +} + +func (w *TerminalWriter) Left(x int) *TerminalWriter { + w.checkOutput(fmt.Sprintf("\033[%dD", x)) + return w +} diff --git a/src/github.com/smira/aptly/aptly/interfaces.go b/src/github.com/smira/aptly/aptly/interfaces.go new file mode 100644 index 00000000..47cf1140 --- /dev/null +++ b/src/github.com/smira/aptly/aptly/interfaces.go @@ -0,0 +1,88 @@ +// Package aptly provides common infrastructure that doesn't depend directly on +// Debian or CentOS +package aptly + +import ( + "github.com/smira/aptly/utils" + "io" + "os" +) + +// PackagePool is asbtraction of package pool storage. +// +// PackagePool stores all the package files, deduplicating them. +type PackagePool interface { + // Path returns full path to package file in pool given any name and hash of file contents + Path(filename string, hashMD5 string) (string, error) + // RelativePath returns path relative to pool's root for package files given MD5 and original filename + RelativePath(filename string, hashMD5 string) (string, error) + // FilepathList returns file paths of all the files in the pool + FilepathList(progress Progress) ([]string, error) + // Remove deletes file in package pool returns its size + Remove(path string) (size int64, err error) + // Import copies file into package pool + Import(path string, hashMD5 string) error +} + +// PublishedStorage is abstraction of filesystem storing all published repositories +type PublishedStorage interface { + // PublicPath returns root of public part + PublicPath() string + // MkDir creates directory recursively under public path + MkDir(path string) error + // CreateFile creates file for writing under public path + CreateFile(path string) (*os.File, error) + // RemoveDirs removes directory structure under public path + RemoveDirs(path string, progress Progress) error + // Remove removes single file under public path + Remove(path string) error + // LinkFromPool links package file from pool to dist's pool location + LinkFromPool(publishedDirectory string, sourcePool PackagePool, sourcePath string) error + // Filelist returns list of files under prefix + Filelist(prefix string) ([]string, error) + // ChecksumsForFile proxies requests to utils.ChecksumsForFile, joining public path + ChecksumsForFile(path string) (utils.ChecksumInfo, error) + // RenameFile renames (moves) file + RenameFile(oldName, newName string) error +} + +// Progress is a progress displaying entity, it allows progress bars & simple prints +type Progress interface { + // Writer interface to support progress bar ticking + io.Writer + // Start makes progress start its work + Start() + // Shutdown shuts down progress display + Shutdown() + // Flush returns when all queued messages are sent + Flush() + // InitBar starts progressbar for count bytes or count items + InitBar(count int64, isBytes bool) + // ShutdownBar stops progress bar and hides it + ShutdownBar() + // AddBar increments progress for progress bar + AddBar(count int) + // SetBar sets current position for progress bar + SetBar(count int) + // Printf does printf but in safe manner: not overwriting progress bar + Printf(msg string, a ...interface{}) + // ColoredPrintf does printf in colored way + newline + ColoredPrintf(msg string, a ...interface{}) +} + +// Downloader is parallel HTTP fetcher +type Downloader interface { + // Download starts new download task + Download(url string, destination string, result chan<- error) + // DownloadWithChecksum starts new download task with checksum verification + DownloadWithChecksum(url string, destination string, result chan<- error, expected utils.ChecksumInfo, ignoreMismatch bool) + // Pause pauses task processing + Pause() + // Resume resumes task processing + Resume() + // Shutdown stops downloader after current tasks are finished, + // but doesn't process rest of queue + Shutdown() + // GetProgress returns Progress object + GetProgress() Progress +} diff --git a/src/github.com/smira/aptly/aptly/version.go b/src/github.com/smira/aptly/aptly/version.go new file mode 100644 index 00000000..473dde13 --- /dev/null +++ b/src/github.com/smira/aptly/aptly/version.go @@ -0,0 +1,7 @@ +package aptly + +// Version of aptly +const Version = "0.5" + +// Enable debugging features? +const EnableDebug = false diff --git a/src/github.com/smira/aptly/cmd/cmd.go b/src/github.com/smira/aptly/cmd/cmd.go new file mode 100644 index 00000000..0246d493 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/cmd.go @@ -0,0 +1,81 @@ +// Package cmd implements console commands +package cmd + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" + "os" + "time" +) + +// ListPackagesRefList shows list of packages in PackageRefList +func ListPackagesRefList(reflist *deb.PackageRefList) (err error) { + fmt.Printf("Packages:\n") + + if reflist == nil { + return + } + + err = reflist.ForEach(func(key []byte) error { + p, err2 := context.CollectionFactory().PackageCollection().ByKey(key) + if err2 != nil { + return err2 + } + fmt.Printf(" %s\n", p) + return nil + }) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + return +} + +// RootCommand creates root command in command tree +func RootCommand() *commander.Command { + cmd := &commander.Command{ + UsageLine: os.Args[0], + Short: "Debian repository management tool", + Long: ` +aptly is a tool to create partial and full mirrors of remote +repositories, manage local repositories, filter them, merge, +upgrade individual packages, take snapshots and publish them +back as Debian repositories. + +aptly's goal is to establish repeatability and controlled changes +in a package-centric environment. aptly allows to fix a set of packages +in a repository, so that package installation and upgrade becomes +deterministic. At the same time aptly allows to perform controlled, +fine-grained changes in repository contents to transition your +package environment to new version.`, + Flag: *flag.NewFlagSet("aptly", flag.ExitOnError), + Subcommands: []*commander.Command{ + makeCmdDb(), + makeCmdGraph(), + makeCmdMirror(), + makeCmdRepo(), + makeCmdServe(), + makeCmdSnapshot(), + makeCmdPublish(), + makeCmdVersion(), + }, + } + + cmd.Flag.Bool("dep-follow-suggests", false, "when processing dependencies, follow Suggests") + cmd.Flag.Bool("dep-follow-source", false, "when processing dependencies, follow from binary to Source packages") + cmd.Flag.Bool("dep-follow-recommends", false, "when processing dependencies, follow Recommends") + cmd.Flag.Bool("dep-follow-all-variants", false, "when processing dependencies, follow a & b if depdency is 'a|b'") + cmd.Flag.String("architectures", "", "list of architectures to consider during (comma-separated), default to all available") + cmd.Flag.String("config", "", "location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf)") + + if aptly.EnableDebug { + cmd.Flag.String("cpuprofile", "", "write cpu profile to file") + cmd.Flag.String("memprofile", "", "write memory profile to this file") + cmd.Flag.String("memstats", "", "write memory stats periodically to this file") + cmd.Flag.Duration("meminterval", 100*time.Millisecond, "memory stats dump interval") + } + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/context.go b/src/github.com/smira/aptly/cmd/context.go new file mode 100644 index 00000000..9594dbd3 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/context.go @@ -0,0 +1,281 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/console" + "github.com/smira/aptly/database" + "github.com/smira/aptly/deb" + "github.com/smira/aptly/files" + "github.com/smira/aptly/http" + "github.com/smira/aptly/utils" + "github.com/smira/flag" + "os" + "path/filepath" + "runtime" + "runtime/pprof" + "strings" + "time" +) + +// AptlyContext is a common context shared by all commands +type AptlyContext struct { + flags *flag.FlagSet + configLoaded bool + + progress aptly.Progress + downloader aptly.Downloader + database database.Storage + packagePool aptly.PackagePool + publishedStorage aptly.PublishedStorage + collectionFactory *deb.CollectionFactory + dependencyOptions int + architecturesList []string + // Debug features + fileCPUProfile *os.File + fileMemProfile *os.File + fileMemStats *os.File +} + +var context *AptlyContext + +// FatalError is type for panicking to abort execution with non-zero +// exit code and print meaningful explanation +type FatalError struct { + ReturnCode int + Message string +} + +// Fatal panics and aborts execution with exit code 1 +func Fatal(err error) { + panic(&FatalError{ReturnCode: 1, Message: err.Error()}) +} + +// Config loads and returns current configuration +func (context *AptlyContext) Config() *utils.ConfigStructure { + if !context.configLoaded { + var err error + + configLocation := context.flags.Lookup("config").Value.String() + if configLocation != "" { + err = utils.LoadConfig(configLocation, &utils.Config) + + if err != nil { + Fatal(err) + } + } else { + configLocations := []string{ + filepath.Join(os.Getenv("HOME"), ".aptly.conf"), + "/etc/aptly.conf", + } + + for _, configLocation := range configLocations { + err = utils.LoadConfig(configLocation, &utils.Config) + if err == nil { + break + } + if !os.IsNotExist(err) { + Fatal(fmt.Errorf("error loading config file %s: %s", configLocation, err)) + } + } + + if err != nil { + fmt.Printf("Config file not found, creating default config at %s\n\n", configLocations[0]) + utils.SaveConfig(configLocations[0], &utils.Config) + } + } + + context.configLoaded = true + + } + return &utils.Config +} + +// DependencyOptions calculates options related to dependecy handling +func (context *AptlyContext) DependencyOptions() int { + if context.dependencyOptions == -1 { + context.dependencyOptions = 0 + if context.Config().DepFollowSuggests || context.flags.Lookup("dep-follow-suggests").Value.Get().(bool) { + context.dependencyOptions |= deb.DepFollowSuggests + } + if context.Config().DepFollowRecommends || context.flags.Lookup("dep-follow-recommends").Value.Get().(bool) { + context.dependencyOptions |= deb.DepFollowRecommends + } + if context.Config().DepFollowAllVariants || context.flags.Lookup("dep-follow-all-variants").Value.Get().(bool) { + context.dependencyOptions |= deb.DepFollowAllVariants + } + if context.Config().DepFollowSource || context.flags.Lookup("dep-follow-source").Value.Get().(bool) { + context.dependencyOptions |= deb.DepFollowSource + } + } + + return context.dependencyOptions +} + +// ArchitecturesList returns list of architectures fixed via command line or config +func (context *AptlyContext) ArchitecturesList() []string { + if context.architecturesList == nil { + context.architecturesList = context.Config().Architectures + optionArchitectures := context.flags.Lookup("architectures").Value.String() + if optionArchitectures != "" { + context.architecturesList = strings.Split(optionArchitectures, ",") + } + } + + return context.architecturesList +} + +// Progress creates or returns Progress object +func (context *AptlyContext) Progress() aptly.Progress { + if context.progress == nil { + context.progress = console.NewProgress() + context.progress.Start() + } + + return context.progress +} + +// Downloader returns instance of current downloader +func (context *AptlyContext) Downloader() aptly.Downloader { + if context.downloader == nil { + context.downloader = http.NewDownloader(context.Config().DownloadConcurrency, context.Progress()) + } + + return context.downloader +} + +// DBPath builds path to database +func (context *AptlyContext) DBPath() string { + return filepath.Join(context.Config().RootDir, "db") +} + +// Database opens and returns current instance of database +func (context *AptlyContext) Database() (database.Storage, error) { + if context.database == nil { + var err error + + context.database, err = database.OpenDB(context.DBPath()) + if err != nil { + return nil, fmt.Errorf("can't open database: %s", err) + } + } + + return context.database, nil +} + +// CollectionFactory builds factory producing all kinds of collections +func (context *AptlyContext) CollectionFactory() *deb.CollectionFactory { + if context.collectionFactory == nil { + db, err := context.Database() + if err != nil { + Fatal(err) + } + context.collectionFactory = deb.NewCollectionFactory(db) + } + + return context.collectionFactory +} + +// PackagePool returns instance of PackagePool +func (context *AptlyContext) PackagePool() aptly.PackagePool { + if context.packagePool == nil { + context.packagePool = files.NewPackagePool(context.Config().RootDir) + } + + return context.packagePool +} + +// PublishedStorage returns instance of PublishedStorage +func (context *AptlyContext) PublishedStorage() aptly.PublishedStorage { + if context.publishedStorage == nil { + context.publishedStorage = files.NewPublishedStorage(context.Config().RootDir) + } + + return context.publishedStorage +} + +// ShutdownContext shuts context down +func ShutdownContext() { + if aptly.EnableDebug { + if context.fileMemProfile != nil { + pprof.WriteHeapProfile(context.fileMemProfile) + context.fileMemProfile.Close() + context.fileMemProfile = nil + } + if context.fileCPUProfile != nil { + pprof.StopCPUProfile() + context.fileCPUProfile.Close() + context.fileCPUProfile = nil + } + if context.fileMemProfile != nil { + context.fileMemProfile.Close() + context.fileMemProfile = nil + } + } + if context.database != nil { + context.database.Close() + } + if context.downloader != nil { + context.downloader.Shutdown() + } + if context.progress != nil { + context.progress.Shutdown() + } +} + +// InitContext initializes context with default settings +func InitContext(flags *flag.FlagSet) error { + var err error + + context = &AptlyContext{flags: flags, dependencyOptions: -1} + + if aptly.EnableDebug { + cpuprofile := flags.Lookup("cpuprofile").Value.String() + if cpuprofile != "" { + context.fileCPUProfile, err = os.Create(cpuprofile) + if err != nil { + return err + } + pprof.StartCPUProfile(context.fileCPUProfile) + } + + memprofile := flags.Lookup("memprofile").Value.String() + if memprofile != "" { + context.fileMemProfile, err = os.Create(memprofile) + if err != nil { + return err + } + } + + memstats := flags.Lookup("memstats").Value.String() + if memstats != "" { + interval := flags.Lookup("meminterval").Value.Get().(time.Duration) + + context.fileMemStats, err = os.Create(memstats) + if err != nil { + return err + } + + context.fileMemStats.WriteString("# Time\tHeapSys\tHeapAlloc\tHeapIdle\tHeapReleased\n") + + go func() { + var stats runtime.MemStats + + start := time.Now().UnixNano() + + for { + runtime.ReadMemStats(&stats) + if context.fileMemStats != nil { + context.fileMemStats.WriteString(fmt.Sprintf("%d\t%d\t%d\t%d\t%d\n", + (time.Now().UnixNano()-start)/1000000, stats.HeapSys, stats.HeapAlloc, stats.HeapIdle, stats.HeapReleased)) + time.Sleep(interval) + } else { + break + } + } + }() + } + } + + return nil +} diff --git a/src/github.com/smira/aptly/cmd/db.go b/src/github.com/smira/aptly/cmd/db.go new file mode 100644 index 00000000..ed85d03d --- /dev/null +++ b/src/github.com/smira/aptly/cmd/db.go @@ -0,0 +1,16 @@ +package cmd + +import ( + "github.com/smira/commander" +) + +func makeCmdDb() *commander.Command { + return &commander.Command{ + UsageLine: "db", + Short: "manage aptly's internal database and package pool", + Subcommands: []*commander.Command{ + makeCmdDbCleanup(), + makeCmdDbRecover(), + }, + } +} diff --git a/src/github.com/smira/aptly/cmd/db_cleanup.go b/src/github.com/smira/aptly/cmd/db_cleanup.go new file mode 100644 index 00000000..18d1dda7 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/db_cleanup.go @@ -0,0 +1,167 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "sort" +) + +// aptly db cleanup +func aptlyDbCleanup(cmd *commander.Command, args []string) error { + var err error + + if len(args) != 0 { + cmd.Usage() + return err + } + + // collect information about references packages... + existingPackageRefs := deb.NewPackageRefList() + + context.Progress().Printf("Loading mirrors, local repos and snapshots...\n") + err = context.CollectionFactory().RemoteRepoCollection().ForEach(func(repo *deb.RemoteRepo) error { + err := context.CollectionFactory().RemoteRepoCollection().LoadComplete(repo) + if err != nil { + return err + } + if repo.RefList() != nil { + existingPackageRefs = existingPackageRefs.Merge(repo.RefList(), false) + } + return nil + }) + if err != nil { + return err + } + + err = context.CollectionFactory().LocalRepoCollection().ForEach(func(repo *deb.LocalRepo) error { + err := context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return err + } + if repo.RefList() != nil { + existingPackageRefs = existingPackageRefs.Merge(repo.RefList(), false) + } + return nil + }) + if err != nil { + return err + } + + err = context.CollectionFactory().SnapshotCollection().ForEach(func(snapshot *deb.Snapshot) error { + err := context.CollectionFactory().SnapshotCollection().LoadComplete(snapshot) + if err != nil { + return err + } + existingPackageRefs = existingPackageRefs.Merge(snapshot.RefList(), false) + return nil + }) + if err != nil { + return err + } + + // ... and compare it to the list of all packages + context.Progress().Printf("Loading list of all packages...\n") + allPackageRefs := context.CollectionFactory().PackageCollection().AllPackageRefs() + + toDelete := allPackageRefs.Substract(existingPackageRefs) + + // delete packages that are no longer referenced + context.Progress().Printf("Deleting unreferenced packages (%d)...\n", toDelete.Len()) + + // database can't err as collection factory already constructed + db, _ := context.Database() + db.StartBatch() + err = toDelete.ForEach(func(ref []byte) error { + return context.CollectionFactory().PackageCollection().DeleteByKey(ref) + }) + if err != nil { + return err + } + + err = db.FinishBatch() + if err != nil { + return fmt.Errorf("unable to write to DB: %s", err) + } + + // now, build a list of files that should be present in Repository (package pool) + context.Progress().Printf("Building list of files referenced by packages...\n") + referencedFiles := make([]string, 0, existingPackageRefs.Len()) + context.Progress().InitBar(int64(existingPackageRefs.Len()), false) + + err = existingPackageRefs.ForEach(func(key []byte) error { + pkg, err2 := context.CollectionFactory().PackageCollection().ByKey(key) + if err2 != nil { + return err2 + } + paths, err2 := pkg.FilepathList(context.PackagePool()) + if err2 != nil { + return err2 + } + referencedFiles = append(referencedFiles, paths...) + context.Progress().AddBar(1) + + return nil + }) + if err != nil { + return err + } + + sort.Strings(referencedFiles) + context.Progress().ShutdownBar() + + // build a list of files in the package pool + context.Progress().Printf("Building list of files in package pool...\n") + existingFiles, err := context.PackagePool().FilepathList(context.Progress()) + if err != nil { + return fmt.Errorf("unable to collect file paths: %s", err) + } + + // find files which are in the pool but not referenced by packages + filesToDelete := utils.StrSlicesSubstract(existingFiles, referencedFiles) + + // delete files that are no longer referenced + context.Progress().Printf("Deleting unreferenced files (%d)...\n", len(filesToDelete)) + + if len(filesToDelete) > 0 { + context.Progress().InitBar(int64(len(filesToDelete)), false) + + var size, totalSize int64 + for _, file := range filesToDelete { + size, err = context.PackagePool().Remove(file) + if err != nil { + return err + } + + context.Progress().AddBar(1) + totalSize += size + } + context.Progress().ShutdownBar() + + context.Progress().Printf("Disk space freed: %s...\n", utils.HumanBytes(totalSize)) + } + + context.Progress().Printf("Compacting database...\n") + err = db.CompactDB() + + return err +} + +func makeCmdDbCleanup() *commander.Command { + cmd := &commander.Command{ + Run: aptlyDbCleanup, + UsageLine: "cleanup", + Short: "cleanup DB and package pool", + Long: ` +Database cleanup removes information about unreferenced packages and removes +files in the package pool that aren't used by packages anymore + +Example: + + $ aptly db cleanup +`, + } + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/db_recover.go b/src/github.com/smira/aptly/cmd/db_recover.go new file mode 100644 index 00000000..53f5a30d --- /dev/null +++ b/src/github.com/smira/aptly/cmd/db_recover.go @@ -0,0 +1,39 @@ +package cmd + +import ( + "github.com/smira/aptly/database" + "github.com/smira/commander" +) + +// aptly db recover +func aptlyDbRecover(cmd *commander.Command, args []string) error { + var err error + + if len(args) != 0 { + cmd.Usage() + return err + } + + context.Progress().Printf("Recovering database...\n") + err = database.RecoverDB(context.DBPath()) + + return err +} + +func makeCmdDbRecover() *commander.Command { + cmd := &commander.Command{ + Run: aptlyDbRecover, + UsageLine: "recover", + Short: "recover DB after crash", + Long: ` +Database recover does its' best to recover the database after a crash. +It is recommended to backup the DB before running recover. + +Example: + + $ aptly db recover +`, + } + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/graph.go b/src/github.com/smira/aptly/cmd/graph.go new file mode 100644 index 00000000..32f6e349 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/graph.go @@ -0,0 +1,201 @@ +package cmd + +import ( + "bytes" + "code.google.com/p/gographviz" + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "io" + "io/ioutil" + "os" + "os/exec" + "strings" +) + +func graphvizEscape(s string) string { + return fmt.Sprintf("\"%s\"", strings.Replace(s, "\"", "\\\"", 0)) +} + +func aptlyGraph(cmd *commander.Command, args []string) error { + var err error + + graph := gographviz.NewGraph() + graph.SetDir(true) + graph.SetName("aptly") + + existingNodes := map[string]bool{} + + fmt.Printf("Loading mirrors...\n") + + err = context.CollectionFactory().RemoteRepoCollection().ForEach(func(repo *deb.RemoteRepo) error { + err := context.CollectionFactory().RemoteRepoCollection().LoadComplete(repo) + if err != nil { + return err + } + + graph.AddNode("aptly", graphvizEscape(repo.UUID), map[string]string{ + "shape": "Mrecord", + "style": "filled", + "fillcolor": "darkgoldenrod1", + "label": graphvizEscape(fmt.Sprintf("{Mirror %s|url: %s|dist: %s|comp: %s|arch: %s|pkgs: %d}", + repo.Name, repo.ArchiveRoot, repo.Distribution, strings.Join(repo.Components, ", "), + strings.Join(repo.Architectures, ", "), repo.NumPackages())), + }) + existingNodes[repo.UUID] = true + return nil + }) + + if err != nil { + return err + } + + fmt.Printf("Loading local repos...\n") + + err = context.CollectionFactory().LocalRepoCollection().ForEach(func(repo *deb.LocalRepo) error { + err := context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return err + } + + graph.AddNode("aptly", graphvizEscape(repo.UUID), map[string]string{ + "shape": "Mrecord", + "style": "filled", + "fillcolor": "mediumseagreen", + "label": graphvizEscape(fmt.Sprintf("{Repo %s|comment: %s|pkgs: %d}", + repo.Name, repo.Comment, repo.NumPackages())), + }) + existingNodes[repo.UUID] = true + return nil + }) + + if err != nil { + return err + } + + fmt.Printf("Loading snapshots...\n") + + context.CollectionFactory().SnapshotCollection().ForEach(func(snapshot *deb.Snapshot) error { + existingNodes[snapshot.UUID] = true + return nil + }) + + err = context.CollectionFactory().SnapshotCollection().ForEach(func(snapshot *deb.Snapshot) error { + err := context.CollectionFactory().SnapshotCollection().LoadComplete(snapshot) + if err != nil { + return err + } + + description := snapshot.Description + if snapshot.SourceKind == "repo" { + description = "Snapshot from repo" + } + + graph.AddNode("aptly", graphvizEscape(snapshot.UUID), map[string]string{ + "shape": "Mrecord", + "style": "filled", + "fillcolor": "cadetblue1", + "label": graphvizEscape(fmt.Sprintf("{Snapshot %s|%s|pkgs: %d}", snapshot.Name, description, snapshot.NumPackages())), + }) + + if snapshot.SourceKind == "repo" || snapshot.SourceKind == "local" || snapshot.SourceKind == "snapshot" { + for _, uuid := range snapshot.SourceIDs { + _, exists := existingNodes[uuid] + if exists { + graph.AddEdge(graphvizEscape(uuid), "", graphvizEscape(snapshot.UUID), "", true, nil) + } + } + } + return nil + }) + + if err != nil { + return err + } + + fmt.Printf("Loading published repos...\n") + + context.CollectionFactory().PublishedRepoCollection().ForEach(func(repo *deb.PublishedRepo) error { + graph.AddNode("aptly", graphvizEscape(repo.UUID), map[string]string{ + "shape": "Mrecord", + "style": "filled", + "fillcolor": "darkolivegreen1", + "label": graphvizEscape(fmt.Sprintf("{Published %s/%s|comp: %s|arch: %s}", repo.Prefix, repo.Distribution, repo.Component, strings.Join(repo.Architectures, ", "))), + }) + + _, exists := existingNodes[repo.SourceUUID] + if exists { + graph.AddEdge(graphvizEscape(repo.SourceUUID), "", graphvizEscape(repo.UUID), "", true, nil) + } + + return nil + }) + + fmt.Printf("Generating graph...\n") + + buf := bytes.NewBufferString(graph.String()) + + tempfile, err := ioutil.TempFile("", "aptly-graph") + if err != nil { + return err + } + tempfile.Close() + os.Remove(tempfile.Name()) + + tempfilename := tempfile.Name() + ".png" + + command := exec.Command("dot", "-Tpng", "-o"+tempfilename) + command.Stderr = os.Stderr + + stdin, err := command.StdinPipe() + if err != nil { + return err + } + + err = command.Start() + if err != nil { + return fmt.Errorf("unable to execute dot: %s (is graphviz package installed?)", err) + } + + _, err = io.Copy(stdin, buf) + if err != nil { + return err + } + + err = stdin.Close() + if err != nil { + return err + } + + err = command.Wait() + if err != nil { + return err + } + + err = exec.Command("open", tempfilename).Run() + if err != nil { + fmt.Printf("Rendered to PNG file: %s\n", tempfilename) + err = nil + } + + return err +} + +func makeCmdGraph() *commander.Command { + cmd := &commander.Command{ + Run: aptlyGraph, + UsageLine: "graph", + Short: "render graph of relationships", + Long: ` +Command graph displays relationship between mirrors, local repositories, +snapshots and published repositories using graphviz package to render +graph as an image. + +Example: + + $ aptly graph +`, + } + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/mirror.go b/src/github.com/smira/aptly/cmd/mirror.go new file mode 100644 index 00000000..13be9dd1 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/mirror.go @@ -0,0 +1,59 @@ +package cmd + +import ( + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "github.com/smira/flag" + "strings" +) + +func getVerifier(flags *flag.FlagSet) (utils.Verifier, error) { + if context.Config().GpgDisableVerify || flags.Lookup("ignore-signatures").Value.Get().(bool) { + return nil, nil + } + + keyRings := flags.Lookup("keyring").Value.Get().([]string) + + verifier := &utils.GpgVerifier{} + for _, keyRing := range keyRings { + verifier.AddKeyring(keyRing) + } + + err := verifier.InitKeyring() + if err != nil { + return nil, err + } + + return verifier, nil +} + +type keyRingsFlag struct { + keyRings []string +} + +func (k *keyRingsFlag) Set(value string) error { + k.keyRings = append(k.keyRings, value) + return nil +} + +func (k *keyRingsFlag) Get() interface{} { + return k.keyRings +} + +func (k *keyRingsFlag) String() string { + return strings.Join(k.keyRings, ",") +} + +func makeCmdMirror() *commander.Command { + return &commander.Command{ + UsageLine: "mirror", + Short: "manage mirrors of remote repositories", + Subcommands: []*commander.Command{ + makeCmdMirrorCreate(), + makeCmdMirrorList(), + makeCmdMirrorShow(), + makeCmdMirrorDrop(), + makeCmdMirrorUpdate(), + }, + } +} diff --git a/src/github.com/smira/aptly/cmd/mirror_create.go b/src/github.com/smira/aptly/cmd/mirror_create.go new file mode 100644 index 00000000..327ef2d0 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/mirror_create.go @@ -0,0 +1,84 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" + "strings" +) + +func aptlyMirrorCreate(cmd *commander.Command, args []string) error { + var err error + if !(len(args) == 2 && strings.HasPrefix(args[1], "ppa:") || len(args) >= 3) { + cmd.Usage() + return err + } + + downloadSources := context.Config().DownloadSourcePackages || context.flags.Lookup("with-sources").Value.Get().(bool) + + var ( + mirrorName, archiveURL, distribution string + components []string + ) + + mirrorName = args[0] + if len(args) == 2 { + archiveURL, distribution, components, err = deb.ParsePPA(args[1], context.Config()) + if err != nil { + return err + } + } else { + archiveURL, distribution, components = args[1], args[2], args[3:] + } + + repo, err := deb.NewRemoteRepo(mirrorName, archiveURL, distribution, components, context.ArchitecturesList(), downloadSources) + if err != nil { + return fmt.Errorf("unable to create mirror: %s", err) + } + + verifier, err := getVerifier(context.flags) + if err != nil { + return fmt.Errorf("unable to initialize GPG verifier: %s", err) + } + + err = repo.Fetch(context.Downloader(), verifier) + if err != nil { + return fmt.Errorf("unable to fetch mirror: %s", err) + } + + err = context.CollectionFactory().RemoteRepoCollection().Add(repo) + if err != nil { + return fmt.Errorf("unable to add mirror: %s", err) + } + + fmt.Printf("\nMirror %s successfully added.\nYou can run 'aptly mirror update %s' to download repository contents.\n", repo, repo.Name) + return err +} + +func makeCmdMirrorCreate() *commander.Command { + cmd := &commander.Command{ + Run: aptlyMirrorCreate, + UsageLine: "create [ ...]", + Short: "create new mirror", + Long: ` +Creates mirror of remote repository, aptly supports both regular and flat Debian repositories exported +via HTTP. aptly would try download Release file from remote repository and verify its' signature. + +PPA urls could specified in short format: + + $ aptly mirror create ppa:/ + +Example: + + $ aptly mirror create wheezy-main http://mirror.yandex.ru/debian/ wheezy main +`, + Flag: *flag.NewFlagSet("aptly-mirror-create", flag.ExitOnError), + } + + cmd.Flag.Bool("ignore-signatures", false, "disable verification of Release file signatures") + cmd.Flag.Bool("with-sources", false, "download source packages in addition to binary packages") + cmd.Flag.Var(&keyRingsFlag{}, "keyring", "gpg keyring to use when verifying Release file (could be specified multiple times)") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/mirror_drop.go b/src/github.com/smira/aptly/cmd/mirror_drop.go new file mode 100644 index 00000000..c7a650ac --- /dev/null +++ b/src/github.com/smira/aptly/cmd/mirror_drop.go @@ -0,0 +1,67 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyMirrorDrop(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + repo, err := context.CollectionFactory().RemoteRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to drop: %s", err) + } + + force := context.flags.Lookup("force").Value.Get().(bool) + if !force { + snapshots := context.CollectionFactory().SnapshotCollection().ByRemoteRepoSource(repo) + + if len(snapshots) > 0 { + fmt.Printf("Mirror `%s` was used to create following snapshots:\n", repo.Name) + for _, snapshot := range snapshots { + fmt.Printf(" * %s\n", snapshot) + } + + return fmt.Errorf("won't delete mirror with snapshots, use -force to override") + } + } + + err = context.CollectionFactory().RemoteRepoCollection().Drop(repo) + if err != nil { + return fmt.Errorf("unable to drop: %s", err) + } + + fmt.Printf("Mirror `%s` has been removed.\n", repo.Name) + + return err +} + +func makeCmdMirrorDrop() *commander.Command { + cmd := &commander.Command{ + Run: aptlyMirrorDrop, + UsageLine: "drop ", + Short: "delete mirror", + Long: ` +Drop deletes information about remote repository mirror . Package data is not deleted +(since it could still be used by other mirrors or snapshots). If mirror is used as source +to create a snapshot, aptly would refuse to delete such mirror, use flag -force to override. + +Example: + + $ aptly mirror drop wheezy-main +`, + Flag: *flag.NewFlagSet("aptly-mirror-drop", flag.ExitOnError), + } + + cmd.Flag.Bool("force", false, "force mirror deletion even if used by snapshots") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/mirror_list.go b/src/github.com/smira/aptly/cmd/mirror_list.go new file mode 100644 index 00000000..11d9caba --- /dev/null +++ b/src/github.com/smira/aptly/cmd/mirror_list.go @@ -0,0 +1,69 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "sort" +) + +func aptlyMirrorList(cmd *commander.Command, args []string) error { + var err error + if len(args) != 0 { + cmd.Usage() + return err + } + + raw := cmd.Flag.Lookup("raw").Value.Get().(bool) + + repos := make([]string, context.CollectionFactory().RemoteRepoCollection().Len()) + i := 0 + context.CollectionFactory().RemoteRepoCollection().ForEach(func(repo *deb.RemoteRepo) error { + if raw { + repos[i] = repo.Name + } else { + repos[i] = repo.String() + } + i++ + return nil + }) + + sort.Strings(repos) + + if raw { + for _, repo := range repos { + fmt.Printf("%s\n", repo) + } + } else { + if len(repos) > 0 { + fmt.Printf("List of mirrors:\n") + for _, repo := range repos { + fmt.Printf(" * %s\n", repo) + } + + fmt.Printf("\nTo get more information about mirror, run `aptly mirror show `.\n") + } else { + fmt.Printf("No mirrors found, create one with `aptly mirror create ...`.\n") + } + } + return err +} + +func makeCmdMirrorList() *commander.Command { + cmd := &commander.Command{ + Run: aptlyMirrorList, + UsageLine: "list", + Short: "list mirrors", + Long: ` +List shows full list of remote repository mirrors. + +Example: + + $ aptly mirror list +`, + } + + cmd.Flag.Bool("raw", false, "display list in machine-readable format") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/mirror_show.go b/src/github.com/smira/aptly/cmd/mirror_show.go new file mode 100644 index 00000000..16de72a5 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/mirror_show.go @@ -0,0 +1,82 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "github.com/smira/flag" + "strings" +) + +func aptlyMirrorShow(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + repo, err := context.CollectionFactory().RemoteRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to show: %s", err) + } + + err = context.CollectionFactory().RemoteRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to show: %s", err) + } + + fmt.Printf("Name: %s\n", repo.Name) + fmt.Printf("Archive Root URL: %s\n", repo.ArchiveRoot) + fmt.Printf("Distribution: %s\n", repo.Distribution) + fmt.Printf("Components: %s\n", strings.Join(repo.Components, ", ")) + fmt.Printf("Architectures: %s\n", strings.Join(repo.Architectures, ", ")) + downloadSources := "no" + if repo.DownloadSources { + downloadSources = "yes" + } + fmt.Printf("Download Sources: %s\n", downloadSources) + if repo.LastDownloadDate.IsZero() { + fmt.Printf("Last update: never\n") + } else { + fmt.Printf("Last update: %s\n", repo.LastDownloadDate.Format("2006-01-02 15:04:05 MST")) + fmt.Printf("Number of packages: %d\n", repo.NumPackages()) + } + + fmt.Printf("\nInformation from release file:\n") + for _, k := range utils.StrMapSortedKeys(repo.Meta) { + fmt.Printf("%s: %s\n", k, repo.Meta[k]) + } + + withPackages := context.flags.Lookup("with-packages").Value.Get().(bool) + if withPackages { + if repo.LastDownloadDate.IsZero() { + fmt.Printf("Unable to show package list, mirror hasn't been downloaded yet.\n") + } else { + ListPackagesRefList(repo.RefList()) + } + } + + return err +} + +func makeCmdMirrorShow() *commander.Command { + cmd := &commander.Command{ + Run: aptlyMirrorShow, + UsageLine: "show ", + Short: "show details about mirror", + Long: ` +Shows detailed information about the mirror. + +Example: + + $ aptly mirror show wheezy-main +`, + Flag: *flag.NewFlagSet("aptly-mirror-show", flag.ExitOnError), + } + + cmd.Flag.Bool("with-packages", false, "show detailed list of packages and versions stored in the mirror") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/mirror_update.go b/src/github.com/smira/aptly/cmd/mirror_update.go new file mode 100644 index 00000000..5eca0aef --- /dev/null +++ b/src/github.com/smira/aptly/cmd/mirror_update.go @@ -0,0 +1,76 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyMirrorUpdate(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + repo, err := context.CollectionFactory().RemoteRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + err = context.CollectionFactory().RemoteRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + ignoreMismatch := context.flags.Lookup("ignore-checksums").Value.Get().(bool) + + verifier, err := getVerifier(context.flags) + if err != nil { + return fmt.Errorf("unable to initialize GPG verifier: %s", err) + } + + err = repo.Fetch(context.Downloader(), verifier) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + err = repo.Download(context.Progress(), context.Downloader(), context.CollectionFactory(), context.PackagePool(), ignoreMismatch) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + err = context.CollectionFactory().RemoteRepoCollection().Update(repo) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + context.Progress().Printf("\nMirror `%s` has been successfully updated.\n", repo.Name) + return err +} + +func makeCmdMirrorUpdate() *commander.Command { + cmd := &commander.Command{ + Run: aptlyMirrorUpdate, + UsageLine: "update ", + Short: "update mirror", + Long: ` +Updates remote mirror (downloads package files and meta information). When mirror is created, +this command should be run for the first time to fetch mirror contents. This command can be +run multiple times to get updated repository contents. If interrupted, command can be safely restarted. + +Example: + + $ aptly mirror update wheezy-main +`, + Flag: *flag.NewFlagSet("aptly-mirror-update", flag.ExitOnError), + } + + cmd.Flag.Bool("ignore-checksums", false, "ignore checksum mismatches while downloading package files and metadata") + cmd.Flag.Bool("ignore-signatures", false, "disable verification of Release file signatures") + cmd.Flag.Var(&keyRingsFlag{}, "keyring", "gpg keyring to use when verifying Release file (could be specified multiple times)") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/publish.go b/src/github.com/smira/aptly/cmd/publish.go new file mode 100644 index 00000000..3862fc4d --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish.go @@ -0,0 +1,40 @@ +package cmd + +import ( + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func getSigner(flags *flag.FlagSet) (utils.Signer, error) { + if flags.Lookup("skip-signing").Value.Get().(bool) || context.Config().GpgDisableSign { + return nil, nil + } + + signer := &utils.GpgSigner{} + signer.SetKey(flags.Lookup("gpg-key").Value.String()) + signer.SetKeyRing(flags.Lookup("keyring").Value.String(), flags.Lookup("secret-keyring").Value.String()) + + err := signer.Init() + if err != nil { + return nil, err + } + + return signer, nil + +} + +func makeCmdPublish() *commander.Command { + return &commander.Command{ + UsageLine: "publish", + Short: "manage published repositories", + Subcommands: []*commander.Command{ + makeCmdPublishDrop(), + makeCmdPublishList(), + makeCmdPublishRepo(), + makeCmdPublishSnapshot(), + makeCmdPublishSwitch(), + makeCmdPublishUpdate(), + }, + } +} diff --git a/src/github.com/smira/aptly/cmd/publish_drop.go b/src/github.com/smira/aptly/cmd/publish_drop.go new file mode 100644 index 00000000..5193b5dd --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish_drop.go @@ -0,0 +1,49 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" +) + +func aptlyPublishDrop(cmd *commander.Command, args []string) error { + var err error + if len(args) < 1 || len(args) > 2 { + cmd.Usage() + return err + } + + distribution := args[0] + prefix := "." + + if len(args) == 2 { + prefix = args[1] + } + + err = context.CollectionFactory().PublishedRepoCollection().Remove(context.PublishedStorage(), prefix, distribution, + context.CollectionFactory(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to remove: %s", err) + } + + context.Progress().Printf("\nPublished repository has been removed successfully.\n") + + return err +} + +func makeCmdPublishDrop() *commander.Command { + cmd := &commander.Command{ + Run: aptlyPublishDrop, + UsageLine: "drop []", + Short: "remove published repository", + Long: ` +Command removes whatever has been published under specified and + name. + +Example: + + $ aptly publish drop wheezy +`, + } + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/publish_list.go b/src/github.com/smira/aptly/cmd/publish_list.go new file mode 100644 index 00000000..f64b585f --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish_list.go @@ -0,0 +1,78 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "sort" +) + +func aptlyPublishList(cmd *commander.Command, args []string) error { + var err error + if len(args) != 0 { + cmd.Usage() + return err + } + + raw := cmd.Flag.Lookup("raw").Value.Get().(bool) + + published := make([]string, 0, context.CollectionFactory().PublishedRepoCollection().Len()) + + err = context.CollectionFactory().PublishedRepoCollection().ForEach(func(repo *deb.PublishedRepo) error { + err := context.CollectionFactory().PublishedRepoCollection().LoadComplete(repo, context.CollectionFactory()) + if err != nil { + return err + } + + if raw { + published = append(published, fmt.Sprintf("%s %s", repo.Prefix, repo.Distribution)) + } else { + published = append(published, repo.String()) + } + return nil + }) + + if err != nil { + return fmt.Errorf("unable to load list of repos: %s", err) + } + + sort.Strings(published) + + if raw { + for _, info := range published { + fmt.Printf("%s\n", info) + } + } else { + if len(published) == 0 { + fmt.Printf("No snapshots/local repos have been published. Publish a snapshot by running `aptly publish snapshot ...`.\n") + return err + } + + fmt.Printf("Published repositories:\n") + + for _, description := range published { + fmt.Printf(" * %s\n", description) + } + } + + return err +} + +func makeCmdPublishList() *commander.Command { + cmd := &commander.Command{ + Run: aptlyPublishList, + UsageLine: "list", + Short: "list of published repositories", + Long: ` +Display list of currently published snapshots. + +Example: + + $ aptly publish list +`, + } + + cmd.Flag.Bool("raw", false, "display list in machine-readable format") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/publish_repo.go b/src/github.com/smira/aptly/cmd/publish_repo.go new file mode 100644 index 00000000..dbb625ed --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish_repo.go @@ -0,0 +1,39 @@ +package cmd + +import ( + "github.com/smira/commander" + "github.com/smira/flag" +) + +func makeCmdPublishRepo() *commander.Command { + cmd := &commander.Command{ + Run: aptlyPublishSnapshotOrRepo, + UsageLine: "repo []", + Short: "publish local repository", + Long: ` +Command publishes current state of local repository ready to be consumed +by apt tools. Published repostiories appear under rootDir/public directory. +Valid GPG key is required for publishing. + +It is not recommended to publish local repositories directly unless the +repository is for testing purposes and changes happen frequently. For +production usage please take snapshot of repository and publish it +using publish snapshot command. + +Example: + + $ aptly publish repo testing +`, + Flag: *flag.NewFlagSet("aptly-publish-repo", flag.ExitOnError), + } + cmd.Flag.String("distribution", "", "distribution name to publish") + cmd.Flag.String("component", "", "component name to publish") + cmd.Flag.String("gpg-key", "", "GPG key ID to use when signing the release") + cmd.Flag.Var(&keyRingsFlag{}, "keyring", "GPG keyring to use (instead of default)") + cmd.Flag.String("secret-keyring", "", "GPG secret keyring to use (instead of default)") + cmd.Flag.Bool("skip-signing", false, "don't sign Release files with GPG") + cmd.Flag.String("origin", "", "origin name to publish") + cmd.Flag.String("label", "", "label to publish") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/publish_snapshot.go b/src/github.com/smira/aptly/cmd/publish_snapshot.go new file mode 100644 index 00000000..17c59dfe --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish_snapshot.go @@ -0,0 +1,142 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "github.com/smira/flag" + "strings" +) + +func aptlyPublishSnapshotOrRepo(cmd *commander.Command, args []string) error { + var err error + if len(args) < 1 || len(args) > 2 { + cmd.Usage() + return err + } + + name := args[0] + + var prefix string + if len(args) == 2 { + prefix = args[1] + } else { + prefix = "" + } + + var ( + source interface{} + message string + ) + + if cmd.Name() == "snapshot" { + var snapshot *deb.Snapshot + snapshot, err = context.CollectionFactory().SnapshotCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshot) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + source = snapshot + message = fmt.Sprintf("Snapshot %s", snapshot.Name) + } else if cmd.Name() == "repo" { + var localRepo *deb.LocalRepo + localRepo, err = context.CollectionFactory().LocalRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(localRepo) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + source = localRepo + message = fmt.Sprintf("Local repo %s", localRepo.Name) + } else { + panic("unknown command") + } + + component := context.flags.Lookup("component").Value.String() + distribution := context.flags.Lookup("distribution").Value.String() + + published, err := deb.NewPublishedRepo(prefix, distribution, component, context.ArchitecturesList(), source, context.CollectionFactory()) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + published.Origin = cmd.Flag.Lookup("origin").Value.String() + published.Label = cmd.Flag.Lookup("label").Value.String() + + duplicate := context.CollectionFactory().PublishedRepoCollection().CheckDuplicate(published) + if duplicate != nil { + context.CollectionFactory().PublishedRepoCollection().LoadComplete(duplicate, context.CollectionFactory()) + return fmt.Errorf("prefix/distribution already used by another published repo: %s", duplicate) + } + + signer, err := getSigner(context.flags) + if err != nil { + return fmt.Errorf("unable to initialize GPG signer: %s", err) + } + + err = published.Publish(context.PackagePool(), context.PublishedStorage(), context.CollectionFactory(), signer, context.Progress()) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + err = context.CollectionFactory().PublishedRepoCollection().Add(published) + if err != nil { + return fmt.Errorf("unable to save to DB: %s", err) + } + + prefix, component, distribution = published.Prefix, published.Component, published.Distribution + if prefix == "." { + prefix = "" + } else if !strings.HasSuffix(prefix, "/") { + prefix += "/" + } + + context.Progress().Printf("\n%s has been successfully published.\nPlease setup your webserver to serve directory '%s' with autoindexing.\n", + message, context.PublishedStorage().PublicPath()) + context.Progress().Printf("Now you can add following line to apt sources:\n") + context.Progress().Printf(" deb http://your-server/%s %s %s\n", prefix, distribution, component) + if utils.StrSliceHasItem(published.Architectures, "source") { + context.Progress().Printf(" deb-src http://your-server/%s %s %s\n", prefix, distribution, component) + } + context.Progress().Printf("Don't forget to add your GPG key to apt with apt-key.\n") + context.Progress().Printf("\nYou can also use `aptly serve` to publish your repositories over HTTP quickly.\n") + + return err +} + +func makeCmdPublishSnapshot() *commander.Command { + cmd := &commander.Command{ + Run: aptlyPublishSnapshotOrRepo, + UsageLine: "snapshot []", + Short: "publish snapshot", + Long: ` +Command publishes snapshot as Debian repository ready to be consumed +by apt tools. Published repostiories appear under rootDir/public directory. +Valid GPG key is required for publishing. + +Example: + + $ aptly publish snapshot wheezy-main +`, + Flag: *flag.NewFlagSet("aptly-publish-snapshot", flag.ExitOnError), + } + cmd.Flag.String("distribution", "", "distribution name to publish") + cmd.Flag.String("component", "", "component name to publish") + cmd.Flag.String("gpg-key", "", "GPG key ID to use when signing the release") + cmd.Flag.Var(&keyRingsFlag{}, "keyring", "GPG keyring to use (instead of default)") + cmd.Flag.String("secret-keyring", "", "GPG secret keyring to use (instead of default)") + cmd.Flag.Bool("skip-signing", false, "don't sign Release files with GPG") + cmd.Flag.String("origin", "", "origin name to publish") + cmd.Flag.String("label", "", "label to publish") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/publish_switch.go b/src/github.com/smira/aptly/cmd/publish_switch.go new file mode 100644 index 00000000..0deed71f --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish_switch.go @@ -0,0 +1,107 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyPublishSwitch(cmd *commander.Command, args []string) error { + var err error + if len(args) < 2 || len(args) > 3 { + cmd.Usage() + return err + } + + distribution := args[0] + prefix := "." + + var ( + name string + snapshot *deb.Snapshot + ) + + if len(args) == 3 { + prefix = args[1] + name = args[2] + } else { + name = args[1] + } + + snapshot, err = context.CollectionFactory().SnapshotCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to switch: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshot) + if err != nil { + return fmt.Errorf("unable to switch: %s", err) + } + + var published *deb.PublishedRepo + + published, err = context.CollectionFactory().PublishedRepoCollection().ByPrefixDistribution(prefix, distribution) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + if published.SourceKind != "snapshot" { + return fmt.Errorf("unable to update: not a snapshot publish") + } + + err = context.CollectionFactory().PublishedRepoCollection().LoadComplete(published, context.CollectionFactory()) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + published.UpdateSnapshot(snapshot) + + signer, err := getSigner(context.flags) + if err != nil { + return fmt.Errorf("unable to initialize GPG signer: %s", err) + } + + err = published.Publish(context.PackagePool(), context.PublishedStorage(), context.CollectionFactory(), signer, context.Progress()) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + err = context.CollectionFactory().PublishedRepoCollection().Update(published) + if err != nil { + return fmt.Errorf("unable to save to DB: %s", err) + } + + err = context.CollectionFactory().PublishedRepoCollection().CleanupPrefixComponentFiles(published.Prefix, published.Component, + context.PublishedStorage(), context.CollectionFactory(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + context.Progress().Printf("\nPublish for snapshot %s has been successfully switched to new snapshot.\n", published.String()) + + return err +} + +func makeCmdPublishSwitch() *commander.Command { + cmd := &commander.Command{ + Run: aptlyPublishSwitch, + UsageLine: "switch [] ", + Short: "update published repository by switching to new snapshot", + Long: ` +Command switches in-place published repository with new snapshot contents. All +publishing parameters are preserved (architecture list, distribution, component). + +Example: + + $ aptly publish update wheezy ppa wheezy-7.5 +`, + Flag: *flag.NewFlagSet("aptly-publish-switch", flag.ExitOnError), + } + cmd.Flag.String("gpg-key", "", "GPG key ID to use when signing the release") + cmd.Flag.Var(&keyRingsFlag{}, "keyring", "GPG keyring to use (instead of default)") + cmd.Flag.String("secret-keyring", "", "GPG secret keyring to use (instead of default)") + cmd.Flag.Bool("skip-signing", false, "don't sign Release files with GPG") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/publish_update.go b/src/github.com/smira/aptly/cmd/publish_update.go new file mode 100644 index 00000000..82f31dfe --- /dev/null +++ b/src/github.com/smira/aptly/cmd/publish_update.go @@ -0,0 +1,91 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyPublishUpdate(cmd *commander.Command, args []string) error { + var err error + if len(args) < 1 || len(args) > 2 { + cmd.Usage() + return err + } + + distribution := args[0] + prefix := "." + + if len(args) == 2 { + prefix = args[1] + } + + var published *deb.PublishedRepo + + published, err = context.CollectionFactory().PublishedRepoCollection().ByPrefixDistribution(prefix, distribution) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + if published.SourceKind != "local" { + return fmt.Errorf("unable to update: not a local repository publish") + } + + err = context.CollectionFactory().PublishedRepoCollection().LoadComplete(published, context.CollectionFactory()) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + published.UpdateLocalRepo() + + signer, err := getSigner(context.flags) + if err != nil { + return fmt.Errorf("unable to initialize GPG signer: %s", err) + } + + err = published.Publish(context.PackagePool(), context.PublishedStorage(), context.CollectionFactory(), signer, context.Progress()) + if err != nil { + return fmt.Errorf("unable to publish: %s", err) + } + + err = context.CollectionFactory().PublishedRepoCollection().Update(published) + if err != nil { + return fmt.Errorf("unable to save to DB: %s", err) + } + + err = context.CollectionFactory().PublishedRepoCollection().CleanupPrefixComponentFiles(published.Prefix, published.Component, + context.PublishedStorage(), context.CollectionFactory(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to update: %s", err) + } + + context.Progress().Printf("\nPublish for local repo %s has been successfully updated.\n", published.String()) + + return err +} + +func makeCmdPublishUpdate() *commander.Command { + cmd := &commander.Command{ + Run: aptlyPublishUpdate, + UsageLine: "update []", + Short: "update published local repository", + Long: ` +Command re-publishes (updates) published local repository. +and should be occupied with local repository published +using command aptly publish repo. Update happens in-place with +minimum possible downtime for published repository. + +Example: + + $ aptly publish update wheezy ppa +`, + Flag: *flag.NewFlagSet("aptly-publish-update", flag.ExitOnError), + } + cmd.Flag.String("gpg-key", "", "GPG key ID to use when signing the release") + cmd.Flag.Var(&keyRingsFlag{}, "keyring", "GPG keyring to use (instead of default)") + cmd.Flag.String("secret-keyring", "", "GPG secret keyring to use (instead of default)") + cmd.Flag.Bool("skip-signing", false, "don't sign Release files with GPG") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo.go b/src/github.com/smira/aptly/cmd/repo.go new file mode 100644 index 00000000..1f3d64be --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo.go @@ -0,0 +1,24 @@ +package cmd + +import ( + "github.com/smira/commander" +) + +func makeCmdRepo() *commander.Command { + return &commander.Command{ + UsageLine: "repo", + Short: "manage local package repositories", + Subcommands: []*commander.Command{ + makeCmdRepoAdd(), + makeCmdRepoCopy(), + makeCmdRepoCreate(), + makeCmdRepoDrop(), + makeCmdRepoEdit(), + makeCmdRepoImport(), + makeCmdRepoList(), + makeCmdRepoMove(), + makeCmdRepoRemove(), + makeCmdRepoShow(), + }, + } +} diff --git a/src/github.com/smira/aptly/cmd/repo_add.go b/src/github.com/smira/aptly/cmd/repo_add.go new file mode 100644 index 00000000..130f2c65 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_add.go @@ -0,0 +1,204 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "github.com/smira/flag" + "os" + "path/filepath" + "sort" + "strings" +) + +func aptlyRepoAdd(cmd *commander.Command, args []string) error { + var err error + if len(args) < 2 { + cmd.Usage() + return err + } + + name := args[0] + + verifier := &utils.GpgVerifier{} + + repo, err := context.CollectionFactory().LocalRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to add: %s", err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to add: %s", err) + } + + context.Progress().Printf("Loading packages...\n") + + list, err := deb.NewPackageListFromRefList(repo.RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + packageFiles := []string{} + + for _, location := range args[1:] { + info, err2 := os.Stat(location) + if err2 != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Unable to process %s: %s@|", location, err2) + continue + } + if info.IsDir() { + err2 = filepath.Walk(location, func(path string, info os.FileInfo, err3 error) error { + if err3 != nil { + return err3 + } + if info.IsDir() { + return nil + } + + if strings.HasSuffix(info.Name(), ".deb") || strings.HasSuffix(info.Name(), ".dsc") { + packageFiles = append(packageFiles, path) + } + + return nil + }) + } else { + if strings.HasSuffix(info.Name(), ".deb") || strings.HasSuffix(info.Name(), ".dsc") { + packageFiles = append(packageFiles, location) + } else { + context.Progress().ColoredPrintf("@y[!]@| @!Unknwon file extenstion: %s@|", location) + continue + } + } + } + + processedFiles := []string{} + sort.Strings(packageFiles) + + for _, file := range packageFiles { + var ( + stanza deb.Stanza + p *deb.Package + ) + + candidateProcessedFiles := []string{} + isSourcePackage := strings.HasSuffix(file, ".dsc") + + if isSourcePackage { + stanza, err = deb.GetControlFileFromDsc(file, verifier) + + if err == nil { + stanza["Package"] = stanza["Source"] + delete(stanza, "Source") + + p, err = deb.NewSourcePackageFromControlFile(stanza) + } + } else { + stanza, err = deb.GetControlFileFromDeb(file) + p = deb.NewPackageFromControlFile(stanza) + } + if err != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Unable to read file %s: %s@|", file, err) + continue + } + + var checksums utils.ChecksumInfo + checksums, err = utils.ChecksumsForFile(file) + if err != nil { + return err + } + + if isSourcePackage { + p.UpdateFiles(append(p.Files(), deb.PackageFile{Filename: filepath.Base(file), Checksums: checksums})) + } else { + p.UpdateFiles([]deb.PackageFile{deb.PackageFile{Filename: filepath.Base(file), Checksums: checksums}}) + } + + err = context.PackagePool().Import(file, checksums.MD5) + if err != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Unable to import file %s into pool: %s@|", file, err) + continue + } + + candidateProcessedFiles = append(candidateProcessedFiles, file) + + // go over all files, except for the last one (.dsc/.deb itself) + for _, f := range p.Files() { + if filepath.Base(f.Filename) == filepath.Base(file) { + continue + } + sourceFile := filepath.Join(filepath.Dir(file), filepath.Base(f.Filename)) + err = context.PackagePool().Import(sourceFile, f.Checksums.MD5) + if err != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Unable to import file %s into pool: %s@|", sourceFile, err) + break + } + + candidateProcessedFiles = append(candidateProcessedFiles, sourceFile) + } + if err != nil { + // some files haven't been imported + continue + } + + err = context.CollectionFactory().PackageCollection().Update(p) + if err != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Unable to save package %s: %s@|", p, err) + continue + } + + err = list.Add(p) + if err != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Unable to add package to repo %s: %s@|", p, err) + continue + } + + context.Progress().ColoredPrintf("@g[+]@| %s added@|", p) + processedFiles = append(processedFiles, candidateProcessedFiles...) + } + + repo.UpdateRefList(deb.NewPackageRefListFromPackageList(list)) + + err = context.CollectionFactory().LocalRepoCollection().Update(repo) + if err != nil { + return fmt.Errorf("unable to save: %s", err) + } + + if context.flags.Lookup("remove-files").Value.Get().(bool) { + processedFiles = utils.StrSliceDeduplicate(processedFiles) + + for _, file := range processedFiles { + err := os.Remove(file) + if err != nil { + return fmt.Errorf("unable to remove file: %s", err) + } + } + } + + return err +} + +func makeCmdRepoAdd() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoAdd, + UsageLine: "add | ...", + Short: "add packages to local repository", + Long: ` +Command adds packages to local repository from .deb (binary packages) and .dsc (source packages) files. +When importing from directory aptly would do recursive scan looking for all files matching *.deb or *.dsc +patterns. Every file discovered would be analyzed to extract metadata, package would then be created and added +to the database. Files would be imported to internal package pool. For source packages, all required files are +added automatically as well. Extra files for source package should be in the same directory as *.dsc file. + +Example: + + $ aptly repo add testing myapp-0.1.2.deb incoming/ +`, + Flag: *flag.NewFlagSet("aptly-repo-add", flag.ExitOnError), + } + + cmd.Flag.Bool("remove-files", false, "remove files that have been imported successfully into repository") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_copy.go b/src/github.com/smira/aptly/cmd/repo_copy.go new file mode 100644 index 00000000..46c44c74 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_copy.go @@ -0,0 +1,28 @@ +package cmd + +import ( + "github.com/smira/commander" + "github.com/smira/flag" +) + +func makeCmdRepoCopy() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoMoveCopyImport, + UsageLine: "copy ...", + Short: "copy packages between local repositories", + Long: ` +Command copy copies packages matching from local repo + to local repo . + +Example: + + $ aptly repo copy testing stable 'myapp (=0.1.12)' +`, + Flag: *flag.NewFlagSet("aptly-repo-copy", flag.ExitOnError), + } + + cmd.Flag.Bool("dry-run", false, "don't copy, just show what would be copied") + cmd.Flag.Bool("with-deps", false, "follow dependencies when processing package-spec") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_create.go b/src/github.com/smira/aptly/cmd/repo_create.go new file mode 100644 index 00000000..3e622d14 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_create.go @@ -0,0 +1,52 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyRepoCreate(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + repo := deb.NewLocalRepo(args[0], context.flags.Lookup("comment").Value.String()) + repo.DefaultDistribution = context.flags.Lookup("distribution").Value.String() + repo.DefaultComponent = context.flags.Lookup("component").Value.String() + + err = context.CollectionFactory().LocalRepoCollection().Add(repo) + if err != nil { + return fmt.Errorf("unable to add local repo: %s", err) + } + + fmt.Printf("\nLocal repo %s successfully added.\nYou can run 'aptly repo add %s ...' to add packages to repository.\n", repo, repo.Name) + return err +} + +func makeCmdRepoCreate() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoCreate, + UsageLine: "create ", + Short: "create local repository", + Long: ` +Create local package repository. Repository would be empty when +created, packages could be added from files, copied or moved from +another local repository or imported from the mirror. + +Example: + + $ aptly repo create testing +`, + Flag: *flag.NewFlagSet("aptly-repo-create", flag.ExitOnError), + } + + cmd.Flag.String("comment", "", "any text that would be used to described local repository") + cmd.Flag.String("distribution", "", "default distribution when publishing") + cmd.Flag.String("component", "main", "default component when publishing") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_drop.go b/src/github.com/smira/aptly/cmd/repo_drop.go new file mode 100644 index 00000000..4990da7d --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_drop.go @@ -0,0 +1,80 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyRepoDrop(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + repo, err := context.CollectionFactory().LocalRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to drop: %s", err) + } + + published := context.CollectionFactory().PublishedRepoCollection().ByLocalRepo(repo) + if len(published) > 0 { + fmt.Printf("Local repo `%s` is published currently:\n", repo.Name) + for _, repo := range published { + err = context.CollectionFactory().PublishedRepoCollection().LoadComplete(repo, context.CollectionFactory()) + if err != nil { + return fmt.Errorf("unable to load published: %s", err) + } + fmt.Printf(" * %s\n", repo) + } + + return fmt.Errorf("unable to drop: local repo is published") + } + + force := context.flags.Lookup("force").Value.Get().(bool) + if !force { + snapshots := context.CollectionFactory().SnapshotCollection().ByLocalRepoSource(repo) + + if len(snapshots) > 0 { + fmt.Printf("Local repo `%s` was used to create following snapshots:\n", repo.Name) + for _, snapshot := range snapshots { + fmt.Printf(" * %s\n", snapshot) + } + + return fmt.Errorf("won't delete local repo with snapshots, use -force to override") + } + } + + err = context.CollectionFactory().LocalRepoCollection().Drop(repo) + if err != nil { + return fmt.Errorf("unable to drop: %s", err) + } + + fmt.Printf("Local repo `%s` has been removed.\n", repo.Name) + + return err +} + +func makeCmdRepoDrop() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoDrop, + UsageLine: "drop ", + Short: "delete local repository", + Long: ` +Drop information about deletions from local repo. Package data is not deleted +(since it could be still used by other mirrors or snapshots). + +Example: + + $ aptly repo drop local-repo +`, + Flag: *flag.NewFlagSet("aptly-repo-drop", flag.ExitOnError), + } + + cmd.Flag.Bool("force", false, "force local repo deletion even if used by snapshots") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_edit.go b/src/github.com/smira/aptly/cmd/repo_edit.go new file mode 100644 index 00000000..07f9d735 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_edit.go @@ -0,0 +1,68 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyRepoEdit(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + repo, err := context.CollectionFactory().LocalRepoCollection().ByName(args[0]) + if err != nil { + return fmt.Errorf("unable to edit: %s", err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to edit: %s", err) + } + + if context.flags.Lookup("comment").Value.String() != "" { + repo.Comment = context.flags.Lookup("comment").Value.String() + } + + if context.flags.Lookup("distribution").Value.String() != "" { + repo.DefaultDistribution = context.flags.Lookup("distribution").Value.String() + } + + if context.flags.Lookup("component").Value.String() != "" { + repo.DefaultComponent = context.flags.Lookup("component").Value.String() + } + + err = context.CollectionFactory().LocalRepoCollection().Update(repo) + if err != nil { + return fmt.Errorf("unable to edit: %s", err) + } + + fmt.Printf("Local repo %s successfully updated.\n", repo) + return err +} + +func makeCmdRepoEdit() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoEdit, + UsageLine: "edit ", + Short: "edit properties of local repository", + Long: ` +Command edit allows to change metadata of local repository: +comment, default distribution and component. + +Example: + + $ aptly repo edit -distribution=wheezy testing +`, + Flag: *flag.NewFlagSet("aptly-repo-edit", flag.ExitOnError), + } + + cmd.Flag.String("comment", "", "any text that would be used to described local repository") + cmd.Flag.String("distribution", "", "default distribution when publishing") + cmd.Flag.String("component", "", "default component when publishing") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_import.go b/src/github.com/smira/aptly/cmd/repo_import.go new file mode 100644 index 00000000..a563a806 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_import.go @@ -0,0 +1,28 @@ +package cmd + +import ( + "github.com/smira/commander" + "github.com/smira/flag" +) + +func makeCmdRepoImport() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoMoveCopyImport, + UsageLine: "import ...", + Short: "import packages from mirror to local repository", + Long: ` +Command import looks up packages matching in mirror +and copies them to local repo . + +Example: + + $ aptly repo import wheezy-main testing nginx +`, + Flag: *flag.NewFlagSet("aptly-repo-import", flag.ExitOnError), + } + + cmd.Flag.Bool("dry-run", false, "don't import, just show what would be imported") + cmd.Flag.Bool("with-deps", false, "follow dependencies when processing package-spec") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_list.go b/src/github.com/smira/aptly/cmd/repo_list.go new file mode 100644 index 00000000..dda5f16a --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_list.go @@ -0,0 +1,75 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "sort" +) + +func aptlyRepoList(cmd *commander.Command, args []string) error { + var err error + if len(args) != 0 { + cmd.Usage() + return err + } + + raw := cmd.Flag.Lookup("raw").Value.Get().(bool) + + repos := make([]string, context.CollectionFactory().LocalRepoCollection().Len()) + i := 0 + context.CollectionFactory().LocalRepoCollection().ForEach(func(repo *deb.LocalRepo) error { + if raw { + repos[i] = repo.Name + } else { + err := context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return err + } + + repos[i] = fmt.Sprintf(" * %s (packages: %d)", repo.String(), repo.NumPackages()) + } + i++ + return nil + }) + + sort.Strings(repos) + + if raw { + for _, repo := range repos { + fmt.Printf("%s\n", repo) + } + } else { + if len(repos) > 0 { + fmt.Printf("List of local repos:\n") + for _, repo := range repos { + fmt.Println(repo) + } + + fmt.Printf("\nTo get more information about local repository, run `aptly repo show `.\n") + } else { + fmt.Printf("No local repositories found, create one with `aptly repo create ...`.\n") + } + } + + return err +} + +func makeCmdRepoList() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoList, + UsageLine: "list", + Short: "list local repositories", + Long: ` +List command shows full list of local package repositories. + +Example: + + $ aptly repo list +`, + } + + cmd.Flag.Bool("raw", false, "display list in machine-readable format") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_move.go b/src/github.com/smira/aptly/cmd/repo_move.go new file mode 100644 index 00000000..9e35312f --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_move.go @@ -0,0 +1,182 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" + "sort" +) + +func aptlyRepoMoveCopyImport(cmd *commander.Command, args []string) error { + var err error + if len(args) < 3 { + cmd.Usage() + return err + } + + command := cmd.Name() + + dstRepo, err := context.CollectionFactory().LocalRepoCollection().ByName(args[1]) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(dstRepo) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + var ( + srcRefList *deb.PackageRefList + srcRepo *deb.LocalRepo + ) + + if command == "copy" || command == "move" { + srcRepo, err = context.CollectionFactory().LocalRepoCollection().ByName(args[0]) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + if srcRepo.UUID == dstRepo.UUID { + return fmt.Errorf("unable to %s: source and destination are the same", command) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(srcRepo) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + srcRefList = srcRepo.RefList() + } else if command == "import" { + var srcRemoteRepo *deb.RemoteRepo + + srcRemoteRepo, err = context.CollectionFactory().RemoteRepoCollection().ByName(args[0]) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + err = context.CollectionFactory().RemoteRepoCollection().LoadComplete(srcRemoteRepo) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + if srcRemoteRepo.RefList() == nil { + return fmt.Errorf("unable to %s: mirror not updated", command) + } + + srcRefList = srcRemoteRepo.RefList() + } else { + panic("unexpected command") + } + + context.Progress().Printf("Loading packages...\n") + + dstList, err := deb.NewPackageListFromRefList(dstRepo.RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + srcList, err := deb.NewPackageListFromRefList(srcRefList, context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + srcList.PrepareIndex() + + var architecturesList []string + + withDeps := context.flags.Lookup("with-deps").Value.Get().(bool) + + if withDeps { + dstList.PrepareIndex() + + // Calculate architectures + if len(context.ArchitecturesList()) > 0 { + architecturesList = context.ArchitecturesList() + } else { + architecturesList = dstList.Architectures(false) + } + + sort.Strings(architecturesList) + + if len(architecturesList) == 0 { + return fmt.Errorf("unable to determine list of architectures, please specify explicitly") + } + } + + toProcess, err := srcList.Filter(args[2:], withDeps, dstList, context.DependencyOptions(), architecturesList) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + var verb string + + if command == "move" { + verb = "moved" + } else if command == "copy" { + verb = "copied" + } else if command == "import" { + verb = "imported" + } + + err = toProcess.ForEach(func(p *deb.Package) error { + err = dstList.Add(p) + if err != nil { + return err + } + + if command == "move" { + srcList.Remove(p) + } + context.Progress().ColoredPrintf("@g[o]@| %s %s", p, verb) + return nil + }) + if err != nil { + return fmt.Errorf("unable to %s: %s", command, err) + } + + if context.flags.Lookup("dry-run").Value.Get().(bool) { + context.Progress().Printf("\nChanges not saved, as dry run has been requested.\n") + } else { + dstRepo.UpdateRefList(deb.NewPackageRefListFromPackageList(dstList)) + + err = context.CollectionFactory().LocalRepoCollection().Update(dstRepo) + if err != nil { + return fmt.Errorf("unable to save: %s", err) + } + + if command == "move" { + srcRepo.UpdateRefList(deb.NewPackageRefListFromPackageList(srcList)) + + err = context.CollectionFactory().LocalRepoCollection().Update(srcRepo) + if err != nil { + return fmt.Errorf("unable to save: %s", err) + } + } + } + + return err +} + +func makeCmdRepoMove() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoMoveCopyImport, + UsageLine: "move ...", + Short: "move packages between local repositories", + Long: ` +Command move moves packages matching from local repo + to local repo . + +Example: + + $ aptly repo move testing stable 'myapp (=0.1.12)' +`, + Flag: *flag.NewFlagSet("aptly-repo-move", flag.ExitOnError), + } + + cmd.Flag.Bool("dry-run", false, "don't move, just show what would be moved") + cmd.Flag.Bool("with-deps", false, "follow dependencies when processing package-spec") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_remove.go b/src/github.com/smira/aptly/cmd/repo_remove.go new file mode 100644 index 00000000..ae356ac4 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_remove.go @@ -0,0 +1,83 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyRepoRemove(cmd *commander.Command, args []string) error { + var err error + if len(args) < 2 { + cmd.Usage() + return err + } + + name := args[0] + + repo, err := context.CollectionFactory().LocalRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to remove: %s", err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to remove: %s", err) + } + + context.Progress().Printf("Loading packages...\n") + + list, err := deb.NewPackageListFromRefList(repo.RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + list.PrepareIndex() + toRemove, err := list.Filter(args[1:], false, nil, 0, nil) + if err != nil { + return fmt.Errorf("unable to remove: %s", err) + } + + toRemove.ForEach(func(p *deb.Package) error { + list.Remove(p) + context.Progress().ColoredPrintf("@r[-]@| %s removed", p) + return nil + }) + + if context.flags.Lookup("dry-run").Value.Get().(bool) { + context.Progress().Printf("\nChanges not saved, as dry run has been requested.\n") + } else { + repo.UpdateRefList(deb.NewPackageRefListFromPackageList(list)) + + err = context.CollectionFactory().LocalRepoCollection().Update(repo) + if err != nil { + return fmt.Errorf("unable to save: %s", err) + } + } + + return err +} + +func makeCmdRepoRemove() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoRemove, + UsageLine: "remove ...", + Short: "remove packages from local repository", + Long: ` +Commands removes packages matching from local repository +. If removed packages are not referenced by other repos or +snapshots, they can be removed completely (including files) by running +'aptly db cleanup'. + +Example: + + $ aptly repo remove testing 'myapp (=0.1.12)' +`, + Flag: *flag.NewFlagSet("aptly-repo-add", flag.ExitOnError), + } + + cmd.Flag.Bool("dry-run", false, "don't remove, just show what would be removed") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/repo_show.go b/src/github.com/smira/aptly/cmd/repo_show.go new file mode 100644 index 00000000..11b65403 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/repo_show.go @@ -0,0 +1,59 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlyRepoShow(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + repo, err := context.CollectionFactory().LocalRepoCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to show: %s", err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to show: %s", err) + } + + fmt.Printf("Name: %s\n", repo.Name) + fmt.Printf("Comment: %s\n", repo.Comment) + fmt.Printf("Default Distribution: %s\n", repo.DefaultDistribution) + fmt.Printf("Default Component: %s\n", repo.DefaultComponent) + fmt.Printf("Number of packages: %d\n", repo.NumPackages()) + + withPackages := context.flags.Lookup("with-packages").Value.Get().(bool) + if withPackages { + ListPackagesRefList(repo.RefList()) + } + + return err +} + +func makeCmdRepoShow() *commander.Command { + cmd := &commander.Command{ + Run: aptlyRepoShow, + UsageLine: "show ", + Short: "show details about local repository", + Long: ` +Show command shows full information about local package repository. + +ex: + $ aptly repo show testing +`, + Flag: *flag.NewFlagSet("aptly-repo-show", flag.ExitOnError), + } + + cmd.Flag.Bool("with-packages", false, "show list of packages") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/serve.go b/src/github.com/smira/aptly/cmd/serve.go new file mode 100644 index 00000000..0131d884 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/serve.go @@ -0,0 +1,111 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/aptly/utils" + "github.com/smira/commander" + "github.com/smira/flag" + "net" + "net/http" + "os" + "sort" +) + +func aptlyServe(cmd *commander.Command, args []string) error { + var err error + + if context.CollectionFactory().PublishedRepoCollection().Len() == 0 { + fmt.Printf("No published repositories, unable to serve.\n") + return nil + } + + listen := context.flags.Lookup("listen").Value.String() + + listenHost, listenPort, err := net.SplitHostPort(listen) + + if err != nil { + return fmt.Errorf("wrong -listen specification: %s", err) + } + + if listenHost == "" { + listenHost, err = os.Hostname() + if err != nil { + listenHost = "localhost" + } + } + + fmt.Printf("Serving published repositories, recommended apt sources list:\n\n") + + sources := make(sort.StringSlice, 0, context.CollectionFactory().PublishedRepoCollection().Len()) + published := make(map[string]*deb.PublishedRepo, context.CollectionFactory().PublishedRepoCollection().Len()) + + err = context.CollectionFactory().PublishedRepoCollection().ForEach(func(repo *deb.PublishedRepo) error { + err := context.CollectionFactory().PublishedRepoCollection().LoadComplete(repo, context.CollectionFactory()) + if err != nil { + return err + } + + sources = append(sources, repo.String()) + published[repo.String()] = repo + + return nil + }) + + if err != nil { + return fmt.Errorf("unable to serve: %s", err) + } + + sort.Strings(sources) + + for _, source := range sources { + repo := published[source] + + prefix := repo.Prefix + if prefix == "." { + prefix = "" + } else { + prefix += "/" + } + + fmt.Printf("# %s\ndeb http://%s:%s/%s %s %s\n", + repo, listenHost, listenPort, prefix, repo.Distribution, repo.Component) + + if utils.StrSliceHasItem(repo.Architectures, "source") { + fmt.Printf("deb-src http://%s:%s/%s %s %s\n", + listenHost, listenPort, prefix, repo.Distribution, repo.Component) + } + } + + publicPath := context.PublishedStorage().PublicPath() + ShutdownContext() + + fmt.Printf("\nStarting web server at: %s (press Ctrl+C to quit)...\n", listen) + + err = http.ListenAndServe(listen, http.FileServer(http.Dir(publicPath))) + if err != nil { + return fmt.Errorf("unable to serve: %s", err) + } + return nil +} + +func makeCmdServe() *commander.Command { + cmd := &commander.Command{ + Run: aptlyServe, + UsageLine: "serve", + Short: "HTTP serve published repositories", + Long: ` +Command serve starts embedded HTTP server (not suitable for real production usage) to serve +contents of public/ subdirectory of aptly's root that contains published repositories. + +Example: + + $ aptly serve -listen=:8080 +`, + Flag: *flag.NewFlagSet("aptly-serve", flag.ExitOnError), + } + + cmd.Flag.String("listen", ":8080", "host:port for HTTP listening") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot.go b/src/github.com/smira/aptly/cmd/snapshot.go new file mode 100644 index 00000000..1581b250 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot.go @@ -0,0 +1,22 @@ +package cmd + +import ( + "github.com/smira/commander" +) + +func makeCmdSnapshot() *commander.Command { + return &commander.Command{ + UsageLine: "snapshot", + Short: "manage snapshots of repositories", + Subcommands: []*commander.Command{ + makeCmdSnapshotCreate(), + makeCmdSnapshotList(), + makeCmdSnapshotShow(), + makeCmdSnapshotVerify(), + makeCmdSnapshotPull(), + makeCmdSnapshotDiff(), + makeCmdSnapshotMerge(), + makeCmdSnapshotDrop(), + }, + } +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_create.go b/src/github.com/smira/aptly/cmd/snapshot_create.go new file mode 100644 index 00000000..a4e3af38 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_create.go @@ -0,0 +1,103 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" +) + +func aptlySnapshotCreate(cmd *commander.Command, args []string) error { + var ( + err error + snapshot *deb.Snapshot + ) + + if len(args) == 4 && args[1] == "from" && args[2] == "mirror" { + // aptly snapshot create snap from mirror mirror + var repo *deb.RemoteRepo + + repoName, snapshotName := args[3], args[0] + + repo, err = context.CollectionFactory().RemoteRepoCollection().ByName(repoName) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + + err = context.CollectionFactory().RemoteRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + + snapshot, err = deb.NewSnapshotFromRepository(snapshotName, repo) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + } else if len(args) == 4 && args[1] == "from" && args[2] == "repo" { + // aptly snapshot create snap from repo repo + var repo *deb.LocalRepo + + localRepoName, snapshotName := args[3], args[0] + + repo, err = context.CollectionFactory().LocalRepoCollection().ByName(localRepoName) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + + err = context.CollectionFactory().LocalRepoCollection().LoadComplete(repo) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + + snapshot, err = deb.NewSnapshotFromLocalRepo(snapshotName, repo) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + } else if len(args) == 2 && args[1] == "empty" { + // aptly snapshot create snap empty + snapshotName := args[0] + + packageList := deb.NewPackageList() + + snapshot = deb.NewSnapshotFromPackageList(snapshotName, nil, packageList, "Created as empty") + } else { + cmd.Usage() + return err + } + + err = context.CollectionFactory().SnapshotCollection().Add(snapshot) + if err != nil { + return fmt.Errorf("unable to add snapshot: %s", err) + } + + fmt.Printf("\nSnapshot %s successfully created.\nYou can run 'aptly publish snapshot %s' to publish snapshot as Debian repository.\n", snapshot.Name, snapshot.Name) + + return err +} + +func makeCmdSnapshotCreate() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotCreate, + UsageLine: "create from mirror | from repo | empty", + Short: "creates snapshot of mirror (local repository) contents", + Long: ` +Command create from mirror makes persistent immutable snapshot of remote +repository mirror. Snapshot could be published or further modified using +merge, pull and other aptly features. + +Command create from repo makes persistent immutable snapshot of local +repository. Snapshot could be processed as mirror snapshots, and mixed with +snapshots of remote mirrors. + +Command create empty creates empty snapshot that could be used as a +basis for snapshot pull operations, for example. As snapshots are immutable, +creating one empty snapshot should be enough. + +Example: + + $ aptly snapshot create wheezy-main-today from mirror wheezy-main +`, + } + + return cmd + +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_diff.go b/src/github.com/smira/aptly/cmd/snapshot_diff.go new file mode 100644 index 00000000..0f4be642 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_diff.go @@ -0,0 +1,111 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlySnapshotDiff(cmd *commander.Command, args []string) error { + var err error + if len(args) != 2 { + cmd.Usage() + return err + } + + onlyMatching := context.flags.Lookup("only-matching").Value.Get().(bool) + + // Load snapshot + snapshotA, err := context.CollectionFactory().SnapshotCollection().ByName(args[0]) + if err != nil { + return fmt.Errorf("unable to load snapshot A: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshotA) + if err != nil { + return fmt.Errorf("unable to load snapshot A: %s", err) + } + + // Load snapshot + snapshotB, err := context.CollectionFactory().SnapshotCollection().ByName(args[1]) + if err != nil { + return fmt.Errorf("unable to load snapshot B: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshotB) + if err != nil { + return fmt.Errorf("unable to load snapshot B: %s", err) + } + + // Calculate diff + diff, err := snapshotA.RefList().Diff(snapshotB.RefList(), context.CollectionFactory().PackageCollection()) + if err != nil { + return fmt.Errorf("unable to calculate diff: %s", err) + } + + if len(diff) == 0 { + context.Progress().Printf("Snapshots are identical.\n") + } else { + context.Progress().Printf(" Arch | Package | Version in A | Version in B\n") + for _, pdiff := range diff { + if onlyMatching && (pdiff.Left == nil || pdiff.Right == nil) { + continue + } + + var verA, verB, pkg, arch, code string + + if pdiff.Left == nil { + verA = "-" + verB = pdiff.Right.Version + pkg = pdiff.Right.Name + arch = pdiff.Right.Architecture + } else { + pkg = pdiff.Left.Name + arch = pdiff.Left.Architecture + verA = pdiff.Left.Version + if pdiff.Right == nil { + verB = "-" + } else { + verB = pdiff.Right.Version + } + } + + if pdiff.Left == nil { + code = "@g+@|" + } else { + if pdiff.Right == nil { + code = "@r-@|" + } else { + code = "@y!@|" + } + } + + context.Progress().ColoredPrintf(code+" %-6s | %-40s | %-40s | %-40s", arch, pkg, verA, verB) + } + } + + return err +} + +func makeCmdSnapshotDiff() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotDiff, + UsageLine: "diff ", + Short: "difference between two snapshots", + Long: ` +Displays difference in packages between two snapshots. Snapshot is a list +of packages, so difference between snapshots is a difference between package +lists. Package could be either completely missing in one snapshot, or package +is present in both snapshots with different versions. + +Example: + + $ aptly snapshot diff -only-matching wheezy-main wheezy-backports +`, + Flag: *flag.NewFlagSet("aptly-snapshot-diff", flag.ExitOnError), + } + + cmd.Flag.Bool("only-matching", false, "display diff only for matching packages (don't display missing packages)") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_drop.go b/src/github.com/smira/aptly/cmd/snapshot_drop.go new file mode 100644 index 00000000..d3483236 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_drop.go @@ -0,0 +1,80 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlySnapshotDrop(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + snapshot, err := context.CollectionFactory().SnapshotCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to drop: %s", err) + } + + published := context.CollectionFactory().PublishedRepoCollection().BySnapshot(snapshot) + + if len(published) > 0 { + fmt.Printf("Snapshot `%s` is published currently:\n", snapshot.Name) + for _, repo := range published { + err = context.CollectionFactory().PublishedRepoCollection().LoadComplete(repo, context.CollectionFactory()) + if err != nil { + return fmt.Errorf("unable to load published: %s", err) + } + fmt.Printf(" * %s\n", repo) + } + + return fmt.Errorf("unable to drop: snapshot is published") + } + + force := context.flags.Lookup("force").Value.Get().(bool) + if !force { + snapshots := context.CollectionFactory().SnapshotCollection().BySnapshotSource(snapshot) + if len(snapshots) > 0 { + fmt.Printf("Snapshot `%s` was used as a source in following snapshots:\n", snapshot.Name) + for _, snap := range snapshots { + fmt.Printf(" * %s\n", snap) + } + + return fmt.Errorf("won't delete snapshot that was used as source for other snapshots, use -force to override") + } + } + + err = context.CollectionFactory().SnapshotCollection().Drop(snapshot) + if err != nil { + return fmt.Errorf("unable to drop: %s", err) + } + + fmt.Printf("Snapshot `%s` has been dropped.\n", snapshot.Name) + + return err +} + +func makeCmdSnapshotDrop() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotDrop, + UsageLine: "drop ", + Short: "delete snapshot", + Long: ` +Drop removes information about a snapshot. If snapshot is published, +it can't be dropped. + +Example: + + $ aptly snapshot drop wheezy-main +`, + Flag: *flag.NewFlagSet("aptly-snapshot-drop", flag.ExitOnError), + } + + cmd.Flag.Bool("force", false, "remove snapshot even if it was used as source for other snapshots") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_list.go b/src/github.com/smira/aptly/cmd/snapshot_list.go new file mode 100644 index 00000000..39c8b1d2 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_list.go @@ -0,0 +1,72 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "sort" +) + +func aptlySnapshotList(cmd *commander.Command, args []string) error { + var err error + if len(args) != 0 { + cmd.Usage() + return err + } + + raw := cmd.Flag.Lookup("raw").Value.Get().(bool) + + snapshots := make([]string, context.CollectionFactory().SnapshotCollection().Len()) + + i := 0 + context.CollectionFactory().SnapshotCollection().ForEach(func(snapshot *deb.Snapshot) error { + if raw { + snapshots[i] = snapshot.Name + } else { + snapshots[i] = snapshot.String() + } + i++ + return nil + }) + + sort.Strings(snapshots) + + if raw { + for _, snapshot := range snapshots { + fmt.Printf("%s\n", snapshot) + } + } else { + if len(snapshots) > 0 { + fmt.Printf("List of snapshots:\n") + + for _, snapshot := range snapshots { + fmt.Printf(" * %s\n", snapshot) + } + + fmt.Printf("\nTo get more information about snapshot, run `aptly snapshot show `.\n") + } else { + fmt.Printf("\nNo snapshots found, create one with `aptly snapshot create...`.\n") + } + } + return err + +} + +func makeCmdSnapshotList() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotList, + UsageLine: "list", + Short: "list snapshots", + Long: ` +Command list shows full list of snapshots created. + +Example: + + $ aptly snapshot list +`, + } + + cmd.Flag.Bool("raw", false, "display list in machine-readable format") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_merge.go b/src/github.com/smira/aptly/cmd/snapshot_merge.go new file mode 100644 index 00000000..dab95f55 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_merge.go @@ -0,0 +1,84 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "strings" +) + +func aptlySnapshotMerge(cmd *commander.Command, args []string) error { + var err error + if len(args) < 2 { + cmd.Usage() + return err + } + + sources := make([]*deb.Snapshot, len(args)-1) + + for i := 0; i < len(args)-1; i++ { + sources[i], err = context.CollectionFactory().SnapshotCollection().ByName(args[i+1]) + if err != nil { + return fmt.Errorf("unable to load snapshot: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(sources[i]) + if err != nil { + return fmt.Errorf("unable to load snapshot: %s", err) + } + } + + latest := context.flags.Lookup("latest").Value.Get().(bool) + overrideMatching := !latest + + result := sources[0].RefList() + + for i := 1; i < len(sources); i++ { + result = result.Merge(sources[i].RefList(), overrideMatching) + } + + if latest { + deb.FilterLatestRefs(result) + } + + sourceDescription := make([]string, len(sources)) + for i, s := range sources { + sourceDescription[i] = fmt.Sprintf("'%s'", s.Name) + } + + // Create snapshot + destination := deb.NewSnapshotFromRefList(args[0], sources, result, + fmt.Sprintf("Merged from sources: %s", strings.Join(sourceDescription, ", "))) + + err = context.CollectionFactory().SnapshotCollection().Add(destination) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + + fmt.Printf("\nSnapshot %s successfully created.\nYou can run 'aptly publish snapshot %s' to publish snapshot as Debian repository.\n", destination.Name, destination.Name) + + return err +} + +func makeCmdSnapshotMerge() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotMerge, + UsageLine: "merge [...]", + Short: "merges snapshots", + Long: ` +Merge command merges several snapshots into one snapshot. +Merge happens from left to right. By default, packages with the same +name-architecture pair are replaced during merge (package from latest snapshot +on the list wins). If run with only one source snapshot, merge copies into +. + +Example: + + $ aptly snapshot merge wheezy-w-backports wheezy-main wheezy-backports +`, + } + + cmd.Flag.Bool("latest", false, "use only the latest version of each package") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_pull.go b/src/github.com/smira/aptly/cmd/snapshot_pull.go new file mode 100644 index 00000000..b2f4a0b8 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_pull.go @@ -0,0 +1,191 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "github.com/smira/flag" + "sort" + "strings" +) + +func aptlySnapshotPull(cmd *commander.Command, args []string) error { + var err error + if len(args) < 4 { + cmd.Usage() + return err + } + + noDeps := context.flags.Lookup("no-deps").Value.Get().(bool) + noRemove := context.flags.Lookup("no-remove").Value.Get().(bool) + + // Load snapshot + snapshot, err := context.CollectionFactory().SnapshotCollection().ByName(args[0]) + if err != nil { + return fmt.Errorf("unable to pull: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshot) + if err != nil { + return fmt.Errorf("unable to pull: %s", err) + } + + // Load snapshot + source, err := context.CollectionFactory().SnapshotCollection().ByName(args[1]) + if err != nil { + return fmt.Errorf("unable to pull: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(source) + if err != nil { + return fmt.Errorf("unable to pull: %s", err) + } + + context.Progress().Printf("Dependencies would be pulled into snapshot:\n %s\nfrom snapshot:\n %s\nand result would be saved as new snapshot %s.\n", + snapshot, source, args[2]) + + // Convert snapshot to package list + context.Progress().Printf("Loading packages (%d)...\n", snapshot.RefList().Len()+source.RefList().Len()) + packageList, err := deb.NewPackageListFromRefList(snapshot.RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + sourcePackageList, err := deb.NewPackageListFromRefList(source.RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + context.Progress().Printf("Building indexes...\n") + packageList.PrepareIndex() + sourcePackageList.PrepareIndex() + + // Calculate architectures + var architecturesList []string + + if len(context.ArchitecturesList()) > 0 { + architecturesList = context.ArchitecturesList() + } else { + architecturesList = packageList.Architectures(false) + } + + sort.Strings(architecturesList) + + if len(architecturesList) == 0 { + return fmt.Errorf("unable to determine list of architectures, please specify explicitly") + } + + // Initial dependencies out of arguments + initialDependencies := make([]deb.Dependency, len(args)-3) + for i, arg := range args[3:] { + initialDependencies[i], err = deb.ParseDependency(arg) + if err != nil { + return fmt.Errorf("unable to parse argument: %s", err) + } + } + + // Perform pull + for _, arch := range architecturesList { + dependencies := make([]deb.Dependency, len(initialDependencies), 128) + for i := range dependencies { + dependencies[i] = initialDependencies[i] + dependencies[i].Architecture = arch + } + + // Go over list of initial dependencies + list of dependencies found + for i := 0; i < len(dependencies); i++ { + dep := dependencies[i] + + // Search for package that can satisfy dependencies + pkg := sourcePackageList.Search(dep) + if pkg == nil { + context.Progress().ColoredPrintf("@y[!]@| @!Dependency %s can't be satisfied with source %s@|", &dep, source) + continue + } + + if !noRemove { + // Remove all packages with the same name and architecture + for p := packageList.Search(deb.Dependency{Architecture: pkg.Architecture, Pkg: pkg.Name}); p != nil; { + packageList.Remove(p) + context.Progress().ColoredPrintf("@r[-]@| %s removed", p) + p = packageList.Search(deb.Dependency{Architecture: pkg.Architecture, Pkg: pkg.Name}) + } + } + + // Add new discovered package + packageList.Add(pkg) + context.Progress().ColoredPrintf("@g[+]@| %s added", pkg) + + if noDeps { + continue + } + + // Find missing dependencies for single added package + pL := deb.NewPackageList() + pL.Add(pkg) + + var missing []deb.Dependency + missing, err = pL.VerifyDependencies(context.DependencyOptions(), []string{arch}, packageList, nil) + if err != nil { + context.Progress().ColoredPrintf("@y[!]@| @!Error while verifying dependencies for pkg %s: %s@|", pkg, err) + } + + // Append missing dependencies to the list of dependencies to satisfy + for _, misDep := range missing { + found := false + for _, d := range dependencies { + if d == misDep { + found = true + break + } + } + + if !found { + dependencies = append(dependencies, misDep) + } + } + } + } + + if context.flags.Lookup("dry-run").Value.Get().(bool) { + context.Progress().Printf("\nNot creating snapshot, as dry run was requested.\n") + } else { + // Create snapshot + destination := deb.NewSnapshotFromPackageList(args[2], []*deb.Snapshot{snapshot, source}, packageList, + fmt.Sprintf("Pulled into '%s' with '%s' as source, pull request was: '%s'", snapshot.Name, source.Name, strings.Join(args[3:], " "))) + + err = context.CollectionFactory().SnapshotCollection().Add(destination) + if err != nil { + return fmt.Errorf("unable to create snapshot: %s", err) + } + + context.Progress().Printf("\nSnapshot %s successfully created.\nYou can run 'aptly publish snapshot %s' to publish snapshot as Debian repository.\n", destination.Name, destination.Name) + } + return err +} + +func makeCmdSnapshotPull() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotPull, + UsageLine: "pull ...", + Short: "pull packages from another snapshot", + Long: ` +Command pull pulls new packages along with its' dependencies to snapshot +from snapshot . Pull can upgrade package version in with +versions from following dependencies. New snapshot +is created as a result of this process. Packages could be specified simply +as 'package-name' or as dependency 'package-name (>= version)'. + +Example: + + $ aptly snapshot pull wheezy-main wheezy-backports wheezy-new-xorg xorg-server-server +`, + Flag: *flag.NewFlagSet("aptly-snapshot-pull", flag.ExitOnError), + } + + cmd.Flag.Bool("dry-run", false, "don't create destination snapshot, just show what would be pulled") + cmd.Flag.Bool("no-deps", false, "don't process dependencies, just pull listed packages") + cmd.Flag.Bool("no-remove", false, "don't remove other package versions when pulling package") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_show.go b/src/github.com/smira/aptly/cmd/snapshot_show.go new file mode 100644 index 00000000..4271708d --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_show.go @@ -0,0 +1,59 @@ +package cmd + +import ( + "fmt" + "github.com/smira/commander" + "github.com/smira/flag" +) + +func aptlySnapshotShow(cmd *commander.Command, args []string) error { + var err error + if len(args) != 1 { + cmd.Usage() + return err + } + + name := args[0] + + snapshot, err := context.CollectionFactory().SnapshotCollection().ByName(name) + if err != nil { + return fmt.Errorf("unable to show: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshot) + if err != nil { + return fmt.Errorf("unable to show: %s", err) + } + + fmt.Printf("Name: %s\n", snapshot.Name) + fmt.Printf("Created At: %s\n", snapshot.CreatedAt.Format("2006-01-02 15:04:05 MST")) + fmt.Printf("Description: %s\n", snapshot.Description) + fmt.Printf("Number of packages: %d\n", snapshot.NumPackages()) + + withPackages := context.flags.Lookup("with-packages").Value.Get().(bool) + if withPackages { + ListPackagesRefList(snapshot.RefList()) + } + + return err +} + +func makeCmdSnapshotShow() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotShow, + UsageLine: "show ", + Short: "shows details about snapshot", + Long: ` +Command show displays full information about a snapshot. + +Example: + + $ aptly snapshot show wheezy-main +`, + Flag: *flag.NewFlagSet("aptly-snapshot-show", flag.ExitOnError), + } + + cmd.Flag.Bool("with-packages", false, "show list of packages") + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/snapshot_verify.go b/src/github.com/smira/aptly/cmd/snapshot_verify.go new file mode 100644 index 00000000..3b118e1c --- /dev/null +++ b/src/github.com/smira/aptly/cmd/snapshot_verify.go @@ -0,0 +1,115 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/deb" + "github.com/smira/commander" + "sort" +) + +func aptlySnapshotVerify(cmd *commander.Command, args []string) error { + var err error + if len(args) < 1 { + cmd.Usage() + return err + } + + snapshots := make([]*deb.Snapshot, len(args)) + for i := range snapshots { + snapshots[i], err = context.CollectionFactory().SnapshotCollection().ByName(args[i]) + if err != nil { + return fmt.Errorf("unable to verify: %s", err) + } + + err = context.CollectionFactory().SnapshotCollection().LoadComplete(snapshots[i]) + if err != nil { + return fmt.Errorf("unable to verify: %s", err) + } + } + + context.Progress().Printf("Loading packages...\n") + + packageList, err := deb.NewPackageListFromRefList(snapshots[0].RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + fmt.Errorf("unable to load packages: %s", err) + } + + sourcePackageList := deb.NewPackageList() + err = sourcePackageList.Append(packageList) + if err != nil { + fmt.Errorf("unable to merge sources: %s", err) + } + + var pL *deb.PackageList + for i := 1; i < len(snapshots); i++ { + pL, err = deb.NewPackageListFromRefList(snapshots[i].RefList(), context.CollectionFactory().PackageCollection(), context.Progress()) + if err != nil { + fmt.Errorf("unable to load packages: %s", err) + } + + err = sourcePackageList.Append(pL) + if err != nil { + fmt.Errorf("unable to merge sources: %s", err) + } + } + + sourcePackageList.PrepareIndex() + + var architecturesList []string + + if len(context.ArchitecturesList()) > 0 { + architecturesList = context.ArchitecturesList() + } else { + architecturesList = packageList.Architectures(true) + } + + if len(architecturesList) == 0 { + return fmt.Errorf("unable to determine list of architectures, please specify explicitly") + } + + context.Progress().Printf("Verifying...\n") + + missing, err := packageList.VerifyDependencies(context.DependencyOptions(), architecturesList, sourcePackageList, context.Progress()) + if err != nil { + return fmt.Errorf("unable to verify dependencies: %s", err) + } + + if len(missing) == 0 { + context.Progress().Printf("All dependencies are satisfied.\n") + } else { + context.Progress().Printf("Missing dependencies (%d):\n", len(missing)) + deps := make([]string, len(missing)) + i := 0 + for _, dep := range missing { + deps[i] = dep.String() + i++ + } + + sort.Strings(deps) + + for _, dep := range deps { + context.Progress().Printf(" %s\n", dep) + } + } + + return err +} + +func makeCmdSnapshotVerify() *commander.Command { + cmd := &commander.Command{ + Run: aptlySnapshotVerify, + UsageLine: "verify [ ...]", + Short: "verify dependencies in snapshot", + Long: ` +Verify does dependency resolution in snapshot , possibly using additional +snapshots as dependency sources. All unsatisfied dependencies are +printed. + +Example: + + $ aptly snapshot verify wheezy-main wheezy-contrib wheezy-non-free +`, + } + + return cmd +} diff --git a/src/github.com/smira/aptly/cmd/version.go b/src/github.com/smira/aptly/cmd/version.go new file mode 100644 index 00000000..7d1d5814 --- /dev/null +++ b/src/github.com/smira/aptly/cmd/version.go @@ -0,0 +1,26 @@ +package cmd + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/commander" +) + +func aptlyVersion(cmd *commander.Command, args []string) error { + fmt.Printf("aptly version: %s\n", aptly.Version) + return nil +} + +func makeCmdVersion() *commander.Command { + return &commander.Command{ + Run: aptlyVersion, + UsageLine: "version", + Short: "display version", + Long: ` +Shows aptly version. + +ex: + $ aptly version +`, + } +} diff --git a/src/github.com/smira/aptly/console/progress.go b/src/github.com/smira/aptly/console/progress.go new file mode 100644 index 00000000..772be48d --- /dev/null +++ b/src/github.com/smira/aptly/console/progress.go @@ -0,0 +1,180 @@ +package console + +import ( + "fmt" + "github.com/cheggaaa/pb" + "github.com/smira/aptly/aptly" + "github.com/wsxiaoys/terminal/color" + "strings" +) + +const ( + codePrint = iota + codeProgress + codeHideProgress + codeStop + codeFlush +) + +type printTask struct { + code int + message string + reply chan bool +} + +// Progress is a progress displaying subroutine, it allows to show download and other operations progress +// mixed with progress bar +type Progress struct { + stop chan bool + stopped chan bool + queue chan printTask + bar *pb.ProgressBar + barShown bool +} + +// Check interface +var ( + _ aptly.Progress = (*Progress)(nil) +) + +// NewProgress creates new progress instance +func NewProgress() *Progress { + return &Progress{ + stopped: make(chan bool), + queue: make(chan printTask, 100), + } +} + +// Start makes progress start its work +func (p *Progress) Start() { + go p.worker() +} + +// Shutdown shuts down progress display +func (p *Progress) Shutdown() { + p.ShutdownBar() + p.queue <- printTask{code: codeStop} + <-p.stopped +} + +// Flush waits for all queued messages to be displayed +func (p *Progress) Flush() { + ch := make(chan bool) + p.queue <- printTask{code: codeFlush, reply: ch} + <-ch +} + +// InitBar starts progressbar for count bytes or count items +func (p *Progress) InitBar(count int64, isBytes bool) { + if p.bar != nil { + panic("bar already initialized") + } + if RunningOnTerminal() { + p.bar = pb.New(0) + p.bar.Total = count + p.bar.NotPrint = true + p.bar.Callback = func(out string) { + p.queue <- printTask{code: codeProgress, message: out} + } + + if isBytes { + p.bar.SetUnits(pb.U_BYTES) + p.bar.ShowSpeed = true + } + p.bar.Start() + } +} + +// ShutdownBar stops progress bar and hides it +func (p *Progress) ShutdownBar() { + if p.bar == nil { + return + } + p.bar.Finish() + p.bar = nil + p.queue <- printTask{code: codeHideProgress} +} + +// Write is implementation of io.Writer to support updating of progress bar +func (p *Progress) Write(s []byte) (int, error) { + if p.bar != nil { + p.bar.Add(len(s)) + } + return len(s), nil +} + +// AddBar increments progress for progress bar +func (p *Progress) AddBar(count int) { + if p.bar != nil { + p.bar.Add(count) + } +} + +// SetBar sets current position for progress bar +func (p *Progress) SetBar(count int) { + if p.bar != nil { + p.bar.Set(count) + } +} + +// Printf does printf but in safe manner: not overwriting progress bar +func (p *Progress) Printf(msg string, a ...interface{}) { + p.queue <- printTask{code: codePrint, message: fmt.Sprintf(msg, a...)} +} + +// ColoredPrintf does printf in colored way + newline +func (p *Progress) ColoredPrintf(msg string, a ...interface{}) { + if RunningOnTerminal() { + p.queue <- printTask{code: codePrint, message: color.Sprintf(msg, a...) + "\n"} + } else { + // stip color marks + var prev rune + msg = strings.Map(func(r rune) rune { + if prev == '@' { + prev = 0 + if r == '@' { + return r + } + return -1 + } + prev = r + if r == '@' { + return -1 + + } + + return r + }, msg) + + p.Printf(msg+"\n", a...) + } +} + +func (p *Progress) worker() { + for { + task := <-p.queue + switch task.code { + case codePrint: + if p.barShown { + fmt.Print("\r\033[2K") + p.barShown = false + } + fmt.Print(task.message) + case codeProgress: + if p.bar != nil { + fmt.Print("\r" + task.message) + p.barShown = true + } + case codeHideProgress: + if p.barShown { + fmt.Print("\r\033[2K") + p.barShown = false + } + case codeFlush: + task.reply <- true + case codeStop: + p.stopped <- true + return + } + } +} diff --git a/src/github.com/smira/aptly/console/terminal.go b/src/github.com/smira/aptly/console/terminal.go new file mode 100644 index 00000000..7d20b99d --- /dev/null +++ b/src/github.com/smira/aptly/console/terminal.go @@ -0,0 +1,13 @@ +// +build !freebsd + +package console + +import ( + "code.google.com/p/go.crypto/ssh/terminal" + "syscall" +) + +// RunningOnTerminal checks whether stdout is terminal +func RunningOnTerminal() bool { + return terminal.IsTerminal(syscall.Stdout) +} diff --git a/src/github.com/smira/aptly/console/terminal_bsd.go b/src/github.com/smira/aptly/console/terminal_bsd.go new file mode 100644 index 00000000..759c1e8d --- /dev/null +++ b/src/github.com/smira/aptly/console/terminal_bsd.go @@ -0,0 +1,10 @@ +// +build freebsd + +package console + +// RunningOnTerminal checks whether stdout is terminal +// +// Stub for FreeBSD, until in go1.3 terminal.IsTerminal would start working for FreeBSD +func RunningOnTerminal() bool { + return false +} diff --git a/src/github.com/smira/aptly/database/leveldb.go b/src/github.com/smira/aptly/database/leveldb.go new file mode 100644 index 00000000..abb4fd5f --- /dev/null +++ b/src/github.com/smira/aptly/database/leveldb.go @@ -0,0 +1,176 @@ +// Package database provides KV database for meta-information +package database + +import ( + "bytes" + "errors" + "github.com/syndtr/goleveldb/leveldb" + "github.com/syndtr/goleveldb/leveldb/filter" + "github.com/syndtr/goleveldb/leveldb/opt" + "github.com/syndtr/goleveldb/leveldb/storage" + "github.com/syndtr/goleveldb/leveldb/util" +) + +// Errors for Storage +var ( + ErrNotFound = errors.New("key not found") +) + +// Storage is an interface to KV storage +type Storage interface { + Get(key []byte) ([]byte, error) + Put(key []byte, value []byte) error + Delete(key []byte) error + KeysByPrefix(prefix []byte) [][]byte + FetchByPrefix(prefix []byte) [][]byte + Close() error + StartBatch() + FinishBatch() error + CompactDB() error +} + +type levelDB struct { + db *leveldb.DB + batch *leveldb.Batch +} + +// Check interface +var ( + _ Storage = &levelDB{} +) + +// OpenDB opens (creates) LevelDB database +func OpenDB(path string) (Storage, error) { + o := &opt.Options{ + Filter: filter.NewBloomFilter(10), + } + + db, err := leveldb.OpenFile(path, o) + if err != nil { + return nil, err + } + return &levelDB{db: db}, nil +} + +// RecoverDB recovers LevelDB database from corruption +func RecoverDB(path string) error { + stor, err := storage.OpenFile(path) + if err != nil { + return err + } + + db, err := leveldb.Recover(stor, nil) + if err != nil { + return err + } + + db.Close() + stor.Close() + + return nil +} + +// Get key value from database +func (l *levelDB) Get(key []byte) ([]byte, error) { + value, err := l.db.Get(key, nil) + if err != nil { + if err == leveldb.ErrNotFound { + return nil, ErrNotFound + } + return nil, err + } + + return value, nil +} + +// Put saves key to database, if key has the same value in DB already, it is not saved +func (l *levelDB) Put(key []byte, value []byte) error { + if l.batch != nil { + l.batch.Put(key, value) + return nil + } + old, err := l.db.Get(key, nil) + if err != nil { + if err != leveldb.ErrNotFound { + return err + } + } else { + if bytes.Compare(old, value) == 0 { + return nil + } + } + return l.db.Put(key, value, nil) +} + +// Delete removes key from DB +func (l *levelDB) Delete(key []byte) error { + if l.batch != nil { + l.batch.Delete(key) + return nil + } + return l.db.Delete(key, nil) +} + +// KeysByPrefix returns all keys that start with prefix +func (l *levelDB) KeysByPrefix(prefix []byte) [][]byte { + result := make([][]byte, 0, 20) + + iterator := l.db.NewIterator(nil, nil) + defer iterator.Release() + + for ok := iterator.Seek(prefix); ok && bytes.HasPrefix(iterator.Key(), prefix); ok = iterator.Next() { + key := iterator.Key() + keyc := make([]byte, len(key)) + copy(keyc, key) + result = append(result, keyc) + } + + return result +} + +// FetchByPrefix returns all values with keys that start with prefix +func (l *levelDB) FetchByPrefix(prefix []byte) [][]byte { + result := make([][]byte, 0, 20) + + iterator := l.db.NewIterator(nil, nil) + defer iterator.Release() + + for ok := iterator.Seek(prefix); ok && bytes.HasPrefix(iterator.Key(), prefix); ok = iterator.Next() { + val := iterator.Value() + valc := make([]byte, len(val)) + copy(valc, val) + result = append(result, valc) + } + + return result +} + +// Close finishes DB work +func (l *levelDB) Close() error { + return l.db.Close() +} + +// StartBatch starts batch processing of keys +// +// All subsequent Get, Put and Delete would work on batch +func (l *levelDB) StartBatch() { + if l.batch != nil { + panic("batch already started") + } + l.batch = new(leveldb.Batch) +} + +// FinishBatch finalizes the batch, saving operations +func (l *levelDB) FinishBatch() error { + if l.batch == nil { + panic("no batch") + } + err := l.db.Write(l.batch, nil) + l.batch = nil + return err +} + +// CompactDB compacts database by merging layers +func (l *levelDB) CompactDB() error { + return l.db.CompactRange(util.Range{}) +} diff --git a/src/github.com/smira/aptly/database/leveldb_test.go b/src/github.com/smira/aptly/database/leveldb_test.go new file mode 100644 index 00000000..90be5901 --- /dev/null +++ b/src/github.com/smira/aptly/database/leveldb_test.go @@ -0,0 +1,157 @@ +package database + +import ( + . "launchpad.net/gocheck" + "testing" +) + +// Launch gocheck tests +func Test(t *testing.T) { + TestingT(t) +} + +type LevelDBSuite struct { + path string + db Storage +} + +var _ = Suite(&LevelDBSuite{}) + +func (s *LevelDBSuite) SetUpTest(c *C) { + var err error + + s.path = c.MkDir() + s.db, err = OpenDB(s.path) + c.Assert(err, IsNil) +} + +func (s *LevelDBSuite) TearDownTest(c *C) { + err := s.db.Close() + c.Assert(err, IsNil) +} + +func (s *LevelDBSuite) TestRecoverDB(c *C) { + var ( + key = []byte("key") + value = []byte("value") + ) + + err := s.db.Put(key, value) + c.Check(err, IsNil) + + err = s.db.Close() + c.Check(err, IsNil) + + err = RecoverDB(s.path) + c.Check(err, IsNil) + + s.db, err = OpenDB(s.path) + c.Check(err, IsNil) + + result, err := s.db.Get(key) + c.Assert(err, IsNil) + c.Assert(result, DeepEquals, value) +} + +func (s *LevelDBSuite) TestGetPut(c *C) { + var ( + key = []byte("key") + value = []byte("value") + ) + + _, err := s.db.Get(key) + c.Assert(err, ErrorMatches, "key not found") + + err = s.db.Put(key, value) + c.Assert(err, IsNil) + + result, err := s.db.Get(key) + c.Assert(err, IsNil) + c.Assert(result, DeepEquals, value) +} + +func (s *LevelDBSuite) TestDelete(c *C) { + var ( + key = []byte("key") + value = []byte("value") + ) + + err := s.db.Put(key, value) + c.Assert(err, IsNil) + + err = s.db.Delete(key) + c.Assert(err, IsNil) + + _, err = s.db.Get(key) + c.Assert(err, ErrorMatches, "key not found") + + err = s.db.Delete(key) + c.Assert(err, IsNil) +} + +func (s *LevelDBSuite) TestByPrefix(c *C) { + c.Check(s.db.FetchByPrefix([]byte{0x80}), DeepEquals, [][]byte{}) + + s.db.Put([]byte{0x80, 0x01}, []byte{0x01}) + s.db.Put([]byte{0x80, 0x03}, []byte{0x03}) + s.db.Put([]byte{0x80, 0x02}, []byte{0x02}) + c.Check(s.db.FetchByPrefix([]byte{0x80}), DeepEquals, [][]byte{{0x01}, {0x02}, {0x03}}) + c.Check(s.db.KeysByPrefix([]byte{0x80}), DeepEquals, [][]byte{{0x80, 0x01}, {0x80, 0x02}, {0x80, 0x03}}) + + s.db.Put([]byte{0x90, 0x01}, []byte{0x04}) + c.Check(s.db.FetchByPrefix([]byte{0x80}), DeepEquals, [][]byte{{0x01}, {0x02}, {0x03}}) + c.Check(s.db.KeysByPrefix([]byte{0x80}), DeepEquals, [][]byte{{0x80, 0x01}, {0x80, 0x02}, {0x80, 0x03}}) + + s.db.Put([]byte{0x00, 0x01}, []byte{0x05}) + c.Check(s.db.FetchByPrefix([]byte{0x80}), DeepEquals, [][]byte{{0x01}, {0x02}, {0x03}}) + c.Check(s.db.KeysByPrefix([]byte{0x80}), DeepEquals, [][]byte{{0x80, 0x01}, {0x80, 0x02}, {0x80, 0x03}}) + + c.Check(s.db.FetchByPrefix([]byte{0xa0}), DeepEquals, [][]byte{}) + c.Check(s.db.KeysByPrefix([]byte{0xa0}), DeepEquals, [][]byte{}) +} + +func (s *LevelDBSuite) TestBatch(c *C) { + var ( + key = []byte("key") + key2 = []byte("key2") + value = []byte("value") + value2 = []byte("value2") + ) + + err := s.db.Put(key, value) + c.Assert(err, IsNil) + + s.db.StartBatch() + s.db.Put(key2, value2) + s.db.Delete(key) + + v, err := s.db.Get(key) + c.Check(err, IsNil) + c.Check(v, DeepEquals, value) + + _, err = s.db.Get(key2) + c.Check(err, ErrorMatches, "key not found") + + err = s.db.FinishBatch() + c.Check(err, IsNil) + + v2, err := s.db.Get(key2) + c.Check(err, IsNil) + c.Check(v2, DeepEquals, value2) + + _, err = s.db.Get(key) + c.Check(err, ErrorMatches, "key not found") + + c.Check(func() { s.db.FinishBatch() }, Panics, "no batch") + + s.db.StartBatch() + c.Check(func() { s.db.StartBatch() }, Panics, "batch already started") +} + +func (s *LevelDBSuite) TestCompactDB(c *C) { + s.db.Put([]byte{0x80, 0x01}, []byte{0x01}) + s.db.Put([]byte{0x80, 0x03}, []byte{0x03}) + s.db.Put([]byte{0x80, 0x02}, []byte{0x02}) + + c.Check(s.db.CompactDB(), IsNil) +} diff --git a/src/github.com/smira/aptly/deb/collections.go b/src/github.com/smira/aptly/deb/collections.go new file mode 100644 index 00000000..dd5fd9d5 --- /dev/null +++ b/src/github.com/smira/aptly/deb/collections.go @@ -0,0 +1,65 @@ +package deb + +import ( + "github.com/smira/aptly/database" +) + +// CollectionFactory is a single place to generate all desired collections +type CollectionFactory struct { + db database.Storage + packages *PackageCollection + remoteRepos *RemoteRepoCollection + snapshots *SnapshotCollection + localRepos *LocalRepoCollection + publishedRepos *PublishedRepoCollection +} + +// NewCollectionFactory creates new factory +func NewCollectionFactory(db database.Storage) *CollectionFactory { + return &CollectionFactory{db: db} +} + +// PackageCollection returns (or creates) new PackageCollection +func (factory *CollectionFactory) PackageCollection() *PackageCollection { + if factory.packages == nil { + factory.packages = NewPackageCollection(factory.db) + } + + return factory.packages +} + +// RemoteRepoCollection returns (or creates) new RemoteRepoCollection +func (factory *CollectionFactory) RemoteRepoCollection() *RemoteRepoCollection { + if factory.remoteRepos == nil { + factory.remoteRepos = NewRemoteRepoCollection(factory.db) + } + + return factory.remoteRepos +} + +// SnapshotCollection returns (or creates) new SnapshotCollection +func (factory *CollectionFactory) SnapshotCollection() *SnapshotCollection { + if factory.snapshots == nil { + factory.snapshots = NewSnapshotCollection(factory.db) + } + + return factory.snapshots +} + +// LocalRepoCollection returns (or creates) new LocalRepoCollection +func (factory *CollectionFactory) LocalRepoCollection() *LocalRepoCollection { + if factory.localRepos == nil { + factory.localRepos = NewLocalRepoCollection(factory.db) + } + + return factory.localRepos +} + +// PublishedRepoCollection returns (or creates) new PublishedRepoCollection +func (factory *CollectionFactory) PublishedRepoCollection() *PublishedRepoCollection { + if factory.publishedRepos == nil { + factory.publishedRepos = NewPublishedRepoCollection(factory.db) + } + + return factory.publishedRepos +} diff --git a/src/github.com/smira/aptly/deb/deb.go b/src/github.com/smira/aptly/deb/deb.go new file mode 100644 index 00000000..6d749f3c --- /dev/null +++ b/src/github.com/smira/aptly/deb/deb.go @@ -0,0 +1,99 @@ +package deb + +import ( + "archive/tar" + "bufio" + "compress/gzip" + "fmt" + "github.com/mkrautz/goar" + "github.com/smira/aptly/utils" + "io" + "os" + "strings" +) + +// GetControlFileFromDeb reads control file from deb package +func GetControlFileFromDeb(packageFile string) (Stanza, error) { + file, err := os.Open(packageFile) + if err != nil { + return nil, err + } + defer file.Close() + + library := ar.NewReader(file) + for { + header, err := library.Next() + if err == io.EOF { + return nil, fmt.Errorf("unable to find control.tar.gz part") + } + if err != nil { + return nil, fmt.Errorf("unable to read .deb archive: %s", err) + } + + if header.Name == "control.tar.gz" { + ungzip, err := gzip.NewReader(library) + if err != nil { + return nil, fmt.Errorf("unable to ungzip: %s", err) + } + defer ungzip.Close() + + untar := tar.NewReader(ungzip) + for { + tarHeader, err := untar.Next() + if err == io.EOF { + return nil, fmt.Errorf("unable to find control file") + } + if err != nil { + return nil, fmt.Errorf("unable to read .tar archive: %s", err) + } + + if tarHeader.Name == "./control" { + reader := NewControlFileReader(untar) + stanza, err := reader.ReadStanza() + if err != nil { + return nil, err + } + + return stanza, nil + } + } + } + } +} + +// GetControlFileFromDsc reads control file from dsc package +func GetControlFileFromDsc(dscFile string, verifier utils.Verifier) (Stanza, error) { + file, err := os.Open(dscFile) + if err != nil { + return nil, err + } + defer file.Close() + + line, err := bufio.NewReader(file).ReadString('\n') + if err != nil { + return nil, err + } + + file.Seek(0, 0) + + var text *os.File + + if strings.Index(line, "BEGIN PGP SIGN") != -1 { + text, err = verifier.ExtractClearsigned(file) + if err != nil { + return nil, err + } + defer text.Close() + } else { + text = file + } + + reader := NewControlFileReader(text) + stanza, err := reader.ReadStanza() + if err != nil { + return nil, err + } + + return stanza, nil + +} diff --git a/src/github.com/smira/aptly/deb/deb_test.go b/src/github.com/smira/aptly/deb/deb_test.go new file mode 100644 index 00000000..d2f720e0 --- /dev/null +++ b/src/github.com/smira/aptly/deb/deb_test.go @@ -0,0 +1,56 @@ +package deb + +import ( + "github.com/smira/aptly/utils" + . "launchpad.net/gocheck" + "path/filepath" + "runtime" +) + +type DebSuite struct { + debFile, dscFile, dscFileNoSign string +} + +var _ = Suite(&DebSuite{}) + +func (s *DebSuite) SetUpSuite(c *C) { + _, _File, _, _ := runtime.Caller(0) + s.debFile = filepath.Join(filepath.Dir(_File), "../system/files/libboost-program-options-dev_1.49.0.1_i386.deb") + s.dscFile = filepath.Join(filepath.Dir(_File), "../system/files/pyspi_0.6.1-1.3.dsc") + s.dscFileNoSign = filepath.Join(filepath.Dir(_File), "../system/files/pyspi-0.6.1-1.3.stripped.dsc") +} + +func (s *DebSuite) TestGetControlFileFromDeb(c *C) { + _, err := GetControlFileFromDeb("/no/such/file") + c.Check(err, ErrorMatches, ".*no such file or directory") + + _, _File, _, _ := runtime.Caller(0) + _, err = GetControlFileFromDeb(_File) + c.Check(err, ErrorMatches, "unable to read .deb archive: ar: missing global header") + + st, err := GetControlFileFromDeb(s.debFile) + c.Check(err, IsNil) + c.Check(st["Version"], Equals, "1.49.0.1") + c.Check(st["Package"], Equals, "libboost-program-options-dev") +} + +func (s *DebSuite) TestGetControlFileFromDsc(c *C) { + verifier := &utils.GpgVerifier{} + + _, err := GetControlFileFromDsc("/no/such/file", verifier) + c.Check(err, ErrorMatches, ".*no such file or directory") + + _, _File, _, _ := runtime.Caller(0) + _, err = GetControlFileFromDsc(_File, verifier) + c.Check(err, ErrorMatches, "malformed stanza syntax") + + st, err := GetControlFileFromDsc(s.dscFile, verifier) + c.Check(err, IsNil) + c.Check(st["Version"], Equals, "0.6.1-1.3") + c.Check(st["Source"], Equals, "pyspi") + + st, err = GetControlFileFromDsc(s.dscFileNoSign, verifier) + c.Check(err, IsNil) + c.Check(st["Version"], Equals, "0.6.1-1.4") + c.Check(st["Source"], Equals, "pyspi") +} diff --git a/src/github.com/smira/aptly/deb/debian.go b/src/github.com/smira/aptly/deb/debian.go new file mode 100644 index 00000000..a1ebafac --- /dev/null +++ b/src/github.com/smira/aptly/deb/debian.go @@ -0,0 +1,2 @@ +// Package deb implements Debian-specific repository handling +package deb diff --git a/src/github.com/smira/aptly/deb/debian_test.go b/src/github.com/smira/aptly/deb/debian_test.go new file mode 100644 index 00000000..8406e198 --- /dev/null +++ b/src/github.com/smira/aptly/deb/debian_test.go @@ -0,0 +1,11 @@ +package deb + +import ( + . "launchpad.net/gocheck" + "testing" +) + +// Launch gocheck tests +func Test(t *testing.T) { + TestingT(t) +} diff --git a/src/github.com/smira/aptly/deb/format.go b/src/github.com/smira/aptly/deb/format.go new file mode 100644 index 00000000..a909d332 --- /dev/null +++ b/src/github.com/smira/aptly/deb/format.go @@ -0,0 +1,141 @@ +package deb + +import ( + "bufio" + "errors" + "io" + "strings" +) + +// Stanza or paragraph of Debian control file +type Stanza map[string]string + +// Canonical order of fields in stanza +var canocialOrder = []string{"Origin", "Label", "Suite", "Package", "Version", "Installed-Size", "Priority", "Section", "Maintainer", + "Architecture", "Codename", "Date", "Architectures", "Components", "Description", "MD5sum", "MD5Sum", "SHA1", "SHA256"} + +// Copy returns copy of Stanza +func (s Stanza) Copy() (result Stanza) { + result = make(Stanza, len(s)) + for k, v := range s { + result[k] = v + } + return +} + +// Write single field from Stanza to writer +func writeField(w *bufio.Writer, field, value string) (err error) { + _, multiline := multilineFields[field] + + if !multiline { + _, err = w.WriteString(field + ": " + value + "\n") + } else { + if !strings.HasSuffix(value, "\n") { + value = value + "\n" + } + _, err = w.WriteString(field + ":" + value) + } + + return +} + +// WriteTo saves stanza back to stream, modifying itself on the fly +func (s Stanza) WriteTo(w *bufio.Writer) error { + for _, field := range canocialOrder { + value, ok := s[field] + if ok { + delete(s, field) + err := writeField(w, field, value) + if err != nil { + return err + } + } + } + + for field, value := range s { + err := writeField(w, field, value) + if err != nil { + return err + } + } + + return nil +} + +// Parsing errors +var ( + ErrMalformedStanza = errors.New("malformed stanza syntax") +) + +var multilineFields = make(map[string]bool) + +func init() { + multilineFields["Description"] = true + multilineFields["Files"] = true + multilineFields["Changes"] = true + multilineFields["Checksums-Sha1"] = true + multilineFields["Checksums-Sha256"] = true + multilineFields["Package-List"] = true + multilineFields["SHA256"] = true + multilineFields["SHA1"] = true + multilineFields["MD5Sum"] = true +} + +// ControlFileReader implements reading of control files stanza by stanza +type ControlFileReader struct { + scanner *bufio.Scanner +} + +// NewControlFileReader creates ControlFileReader, it wraps with buffering +func NewControlFileReader(r io.Reader) *ControlFileReader { + return &ControlFileReader{scanner: bufio.NewScanner(bufio.NewReaderSize(r, 32768))} +} + +// ReadStanza reeads one stanza from control file +func (c *ControlFileReader) ReadStanza() (Stanza, error) { + stanza := make(Stanza, 32) + lastField := "" + lastFieldMultiline := false + + for c.scanner.Scan() { + line := c.scanner.Text() + + // Current stanza ends with empty line + if line == "" { + if len(stanza) > 0 { + return stanza, nil + } + continue + } + + if line[0] == ' ' || line[0] == '\t' { + if lastFieldMultiline { + stanza[lastField] += line + "\n" + } else { + stanza[lastField] += strings.TrimSpace(line) + } + } else { + parts := strings.SplitN(line, ":", 2) + if len(parts) != 2 { + return nil, ErrMalformedStanza + } + lastField = parts[0] + _, lastFieldMultiline = multilineFields[lastField] + if lastFieldMultiline { + stanza[lastField] = parts[1] + if parts[1] != "" { + stanza[lastField] += "\n" + } + } else { + stanza[lastField] = strings.TrimSpace(parts[1]) + } + } + } + if err := c.scanner.Err(); err != nil { + return nil, err + } + if len(stanza) > 0 { + return stanza, nil + } + return nil, nil +} diff --git a/src/github.com/smira/aptly/deb/format_test.go b/src/github.com/smira/aptly/deb/format_test.go new file mode 100644 index 00000000..b7e843c3 --- /dev/null +++ b/src/github.com/smira/aptly/deb/format_test.go @@ -0,0 +1,136 @@ +package deb + +import ( + "bufio" + "bytes" + . "launchpad.net/gocheck" + "strings" +) + +type ControlFileSuite struct { + reader *bytes.Buffer +} + +var _ = Suite(&ControlFileSuite{}) + +const controlFile = `Package: bti +Binary: bti +Version: 032-1 +Maintainer: gregor herrmann +Uploaders: tony mancill +Build-Depends: debhelper (>= 8), + bash-completion (>= 1:1.1-3), + libcurl4-nss-dev, libreadline-dev, libxml2-dev, libpcre3-dev, liboauth-dev, xsltproc, docbook-xsl, docbook-xml, dh-autoreconf +Architecture: any +Standards-Version: 3.9.2 +Format: 3.0 (quilt) +Files: + 3d5f65778bf3f89be03c313b0024b62c 1980 bti_032-1.dsc + 1e0d0b693fdeebec268004ba41701baf 59773 bti_032.orig.tar.gz + ac1229a6d685023aeb8fcb0806324aa8 5065 bti_032-1.debian.tar.gz +Vcs-Browser: http://svn.toastfreeware.priv.at/wsvn/ToastfreewareDebian/bti/trunk/ +Vcs-Svn: http://svn.toastfreeware.priv.at/debian/bti/trunk/ +Checksums-Sha1: + 3da2c5a42138c884a7d9524b9706dc56c0d6d46e 1980 bti_032-1.dsc + 22061e3f56074703be415d65abc9ca27ef775c6a 59773 bti_032.orig.tar.gz + 66ae7f56a3c1f0ebe0638d0ec0599a819d72baea 5065 bti_032-1.debian.tar.gz +Checksums-Sha256: + ed6015b79693f270d0a826c695b40e4d8eb4307942cac81a98f1fda479f74215 1980 bti_032-1.dsc + feeabec98a89040a53283d798f7d55eb4311a854f17312a177dc45919883746a 59773 bti_032.orig.tar.gz + f025da42efaf57db5e71a14cb8be27eb802ad23e7ab02b7ce2252454a86ac1d9 5065 bti_032-1.debian.tar.gz +Homepage: http://gregkh.github.com/bti/ +Package-List: + bti deb net extra +Directory: pool/main/b/bti +Description: This is cool + Multiline description +Section: net + + +Package: i3-wm +Version: 4.2-1 +Installed-Size: 1573 +Maintainer: Michael Stapelberg +Architecture: amd64 +Provides: x-window-manager +Depends: libc6 (>= 2.8), libev4 (>= 1:4.04), libpcre3 (>= 8.10), libstartup-notification0 (>= 0.10), libx11-6, libxcb-icccm4 (>= 0.3.8), libxcb-keysyms1 (>= 0.3.8), libxcb-randr0 (>= 1.3), libxcb-util0 (>= 0.3.8), libxcb-xinerama0, libxcb1, libxcursor1 (>> 1.1.2), libyajl2 (>= 2.0.4), perl, x11-utils +Recommends: xfonts-base +Suggests: rxvt-unicode | x-terminal-emulator +Description-en: improved dynamic tiling window manager + Key features of i3 are good documentation, reasonable defaults (changeable in + a simple configuration file) and good multi-monitor support. The user + interface is designed for power users and emphasizes keyboard usage. i3 uses + XCB for asynchronous communication with X11 and aims to be fast and + light-weight. + . + Please be aware i3 is primarily targeted at advanced users and developers. +Homepage: http://i3wm.org/ +Description-md5: 2be7e62f455351435b1e055745d3e81c +Tag: implemented-in::c, interface::x11, role::program, uitoolkit::TODO, + works-with::unicode, x11::window-manager +Section: x11 +Priority: extra +Filename: pool/main/i/i3-wm/i3-wm_4.2-1_amd64.deb +Size: 798186 +MD5sum: 3c7dbecd76d5c271401860967563fa8c +SHA1: 2e94f3faa5d4d617061f94076b2537d15fbff73f +SHA256: 2894bc999b3982c4e57f100fa31e21b52e14c5f3bc7ad5345f46842fcdab0db7` + +func (s *ControlFileSuite) SetUpTest(c *C) { + s.reader = bytes.NewBufferString(controlFile) +} + +func (s *ControlFileSuite) TestReadStanza(c *C) { + r := NewControlFileReader(s.reader) + + stanza1, err := r.ReadStanza() + c.Assert(err, IsNil) + + stanza2, err := r.ReadStanza() + c.Assert(err, IsNil) + + stanza3, err := r.ReadStanza() + c.Assert(err, IsNil) + c.Assert(stanza3, IsNil) + + c.Check(stanza1["Format"], Equals, "3.0 (quilt)") + c.Check(stanza1["Build-Depends"], Equals, "debhelper (>= 8),bash-completion (>= 1:1.1-3),libcurl4-nss-dev, libreadline-dev, libxml2-dev, libpcre3-dev, liboauth-dev, xsltproc, docbook-xsl, docbook-xml, dh-autoreconf") + c.Check(stanza1["Files"], Equals, " 3d5f65778bf3f89be03c313b0024b62c 1980 bti_032-1.dsc\n"+ + " 1e0d0b693fdeebec268004ba41701baf 59773 bti_032.orig.tar.gz\n"+" ac1229a6d685023aeb8fcb0806324aa8 5065 bti_032-1.debian.tar.gz\n") + c.Check(len(stanza2), Equals, 20) +} + +func (s *ControlFileSuite) TestReadWriteStanza(c *C) { + r := NewControlFileReader(s.reader) + stanza, err := r.ReadStanza() + c.Assert(err, IsNil) + + buf := &bytes.Buffer{} + w := bufio.NewWriter(buf) + err = stanza.Copy().WriteTo(w) + c.Assert(err, IsNil) + err = w.Flush() + c.Assert(err, IsNil) + + str := buf.String() + + r = NewControlFileReader(buf) + stanza2, err := r.ReadStanza() + c.Assert(err, IsNil) + + c.Assert(stanza2, DeepEquals, stanza) + c.Assert(strings.HasPrefix(str, "Package: "), Equals, true) +} + +func (s *ControlFileSuite) BenchmarkReadStanza(c *C) { + for i := 0; i < c.N; i++ { + reader := bytes.NewBufferString(controlFile) + r := NewControlFileReader(reader) + for { + s, e := r.ReadStanza() + if s == nil && e == nil { + break + } + } + } +} diff --git a/src/github.com/smira/aptly/deb/list.go b/src/github.com/smira/aptly/deb/list.go new file mode 100644 index 00000000..63db6e3e --- /dev/null +++ b/src/github.com/smira/aptly/deb/list.go @@ -0,0 +1,437 @@ +package deb + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/utils" + "sort" + "strings" +) + +// Dependency options +const ( + // DepFollowSource pulls source packages when required + DepFollowSource = 1 << iota + // DepFollowSuggests pulls from suggests + DepFollowSuggests + // DepFollowRecommends pulls from recommends + DepFollowRecommends + // DepFollowAllVariants follows all variants if depends on "a | b" + DepFollowAllVariants + // DepFollowBuild pulls build dependencies + DepFollowBuild +) + +// PackageList is list of unique (by key) packages +// +// It could be seen as repo snapshot, repo contents, result of filtering, +// merge, etc. +// +// If indexed, PackageList starts supporting searching +type PackageList struct { + // Straight list of packages as map + packages map[string]*Package + // Has index been prepared? + indexed bool + // Indexed list of packages, sorted by name internally + packagesIndex []*Package + // Map of packages for each virtual package (provides) + providesIndex map[string][]*Package +} + +// Verify interface +var ( + _ sort.Interface = &PackageList{} +) + +// NewPackageList creates empty package list +func NewPackageList() *PackageList { + return &PackageList{packages: make(map[string]*Package, 1000)} +} + +// NewPackageListFromRefList loads packages list from PackageRefList +func NewPackageListFromRefList(reflist *PackageRefList, collection *PackageCollection, progress aptly.Progress) (*PackageList, error) { + // empty reflist + if reflist == nil { + return NewPackageList(), nil + } + + result := &PackageList{packages: make(map[string]*Package, reflist.Len())} + + if progress != nil { + progress.InitBar(int64(reflist.Len()), false) + } + + err := reflist.ForEach(func(key []byte) error { + p, err2 := collection.ByKey(key) + if err2 != nil { + return fmt.Errorf("unable to load package with key %s: %s", key, err2) + } + if progress != nil { + progress.AddBar(1) + } + return result.Add(p) + }) + + if progress != nil { + progress.ShutdownBar() + } + + if err != nil { + return nil, err + } + + return result, nil +} + +// Add appends package to package list, additionally checking for uniqueness +func (l *PackageList) Add(p *Package) error { + key := string(p.Key("")) + existing, ok := l.packages[key] + if ok { + if !existing.Equals(p) { + return fmt.Errorf("conflict in package %s: %#v != %#v", p, existing, p) + } + return nil + } + l.packages[key] = p + + if l.indexed { + for _, provides := range p.Provides { + l.providesIndex[provides] = append(l.providesIndex[provides], p) + } + + i := sort.Search(len(l.packagesIndex), func(j int) bool { return l.packagesIndex[j].Name >= p.Name }) + + // insert p into l.packagesIndex in position i + l.packagesIndex = append(l.packagesIndex, nil) + copy(l.packagesIndex[i+1:], l.packagesIndex[i:]) + l.packagesIndex[i] = p + } + return nil +} + +// ForEach calls handler for each package in list +func (l *PackageList) ForEach(handler func(*Package) error) error { + var err error + for _, p := range l.packages { + err = handler(p) + if err != nil { + return err + } + } + return err +} + +// Len returns number of packages in the list +func (l *PackageList) Len() int { + return len(l.packages) +} + +// Append adds content from one package list to another +func (l *PackageList) Append(pl *PackageList) error { + if l.indexed { + panic("Append not supported when indexed") + } + for k, p := range pl.packages { + existing, ok := l.packages[k] + if ok { + if !existing.Equals(p) { + return fmt.Errorf("conflict in package %s: %#v != %#v", p, existing, p) + } + } else { + l.packages[k] = p + } + } + + return nil +} + +// Remove removes package from the list, and updates index when required +func (l *PackageList) Remove(p *Package) { + delete(l.packages, string(p.Key(""))) + if l.indexed { + for _, provides := range p.Provides { + for i, pkg := range l.providesIndex[provides] { + if pkg.Equals(p) { + // remove l.ProvidesIndex[provides][i] w/o preserving order + l.providesIndex[provides][len(l.providesIndex[provides])-1], l.providesIndex[provides][i], l.providesIndex[provides] = + nil, l.providesIndex[provides][len(l.providesIndex[provides])-1], l.providesIndex[provides][:len(l.providesIndex[provides])-1] + break + } + } + } + + i := sort.Search(len(l.packagesIndex), func(j int) bool { return l.packagesIndex[j].Name >= p.Name }) + for i < len(l.packagesIndex) && l.packagesIndex[i].Name == p.Name { + if l.packagesIndex[i].Equals(p) { + // remove l.packagesIndex[i] preserving order + copy(l.packagesIndex[i:], l.packagesIndex[i+1:]) + l.packagesIndex[len(l.packagesIndex)-1] = nil + l.packagesIndex = l.packagesIndex[:len(l.packagesIndex)-1] + break + } + i++ + } + } +} + +// Architectures returns list of architectures present in packages and flag if source packages are present. +// +// If includeSource is true, meta-architecture "source" would be present in the list +func (l *PackageList) Architectures(includeSource bool) (result []string) { + result = make([]string, 0, 10) + for _, pkg := range l.packages { + if pkg.Architecture != "all" && (pkg.Architecture != "source" || includeSource) && !utils.StrSliceHasItem(result, pkg.Architecture) { + result = append(result, pkg.Architecture) + } + } + return +} + +// depSliceDeduplicate removes dups in slice of Dependencies +func depSliceDeduplicate(s []Dependency) []Dependency { + l := len(s) + if l < 2 { + return s + } + if l == 2 { + if s[0] == s[1] { + return s[0:1] + } + return s + } + + found := make(map[string]bool, l) + j := 0 + for i, x := range s { + h := x.Hash() + if !found[h] { + found[h] = true + s[j] = s[i] + j++ + } + } + + return s[:j] +} + +// VerifyDependencies looks for missing dependencies in package list. +// +// Analysis would be peformed for each architecture, in specified sources +func (l *PackageList) VerifyDependencies(options int, architectures []string, sources *PackageList, progress aptly.Progress) ([]Dependency, error) { + missing := make([]Dependency, 0, 128) + + if progress != nil { + progress.InitBar(int64(l.Len())*int64(len(architectures)), false) + } + + for _, arch := range architectures { + cache := make(map[string]bool, 2048) + + for _, p := range l.packages { + if progress != nil { + progress.AddBar(1) + } + + if !p.MatchesArchitecture(arch) { + continue + } + + for _, dep := range p.GetDependencies(options) { + variants, err := ParseDependencyVariants(dep) + if err != nil { + return nil, fmt.Errorf("unable to process package %s: %s", p, err) + } + + variants = depSliceDeduplicate(variants) + + variantsMissing := make([]Dependency, 0, len(variants)) + missingCount := 0 + + for _, dep := range variants { + if dep.Architecture == "" { + dep.Architecture = arch + } + + hash := dep.Hash() + r, ok := cache[hash] + if ok { + if !r { + missingCount++ + } + continue + } + + if sources.Search(dep) == nil { + variantsMissing = append(variantsMissing, dep) + missingCount++ + } else { + cache[hash] = true + } + } + + if options&DepFollowAllVariants == DepFollowAllVariants { + missing = append(missing, variantsMissing...) + for _, dep := range variantsMissing { + cache[dep.Hash()] = false + } + } else { + if missingCount == len(variants) { + missing = append(missing, variantsMissing...) + for _, dep := range variantsMissing { + cache[dep.Hash()] = false + } + } + } + } + } + } + + if progress != nil { + progress.ShutdownBar() + } + + return missing, nil +} + +// Swap swaps two packages in index +func (l *PackageList) Swap(i, j int) { + l.packagesIndex[i], l.packagesIndex[j] = l.packagesIndex[j], l.packagesIndex[i] +} + +// Compare compares two names in lexographical order +func (l *PackageList) Less(i, j int) bool { + return l.packagesIndex[i].Name < l.packagesIndex[j].Name +} + +// PrepareIndex prepares list for indexing +func (l *PackageList) PrepareIndex() { + l.packagesIndex = make([]*Package, l.Len()) + l.providesIndex = make(map[string][]*Package, 128) + + i := 0 + for _, p := range l.packages { + l.packagesIndex[i] = p + i++ + + for _, provides := range p.Provides { + l.providesIndex[provides] = append(l.providesIndex[provides], p) + } + } + + sort.Sort(l) + + l.indexed = true +} + +// Search searches package index for specified package +func (l *PackageList) Search(dep Dependency) *Package { + if !l.indexed { + panic("list not indexed, can't search") + } + + if dep.Relation == VersionDontCare { + for _, p := range l.providesIndex[dep.Pkg] { + if p.MatchesArchitecture(dep.Architecture) { + return p + } + } + } + + i := sort.Search(len(l.packagesIndex), func(j int) bool { return l.packagesIndex[j].Name >= dep.Pkg }) + + for i < len(l.packagesIndex) && l.packagesIndex[i].Name == dep.Pkg { + p := l.packagesIndex[i] + if p.MatchesDependency(dep) { + return p + } + + i++ + } + return nil +} + +// Filter filters package index by specified queries (ORed together), possibly pulling dependencies +func (l *PackageList) Filter(queries []string, withDependencies bool, source *PackageList, dependencyOptions int, architecturesList []string) (*PackageList, error) { + if !l.indexed { + panic("list not indexed, can't filter") + } + + result := NewPackageList() + + for _, query := range queries { + isDepQuery := strings.IndexAny(query, " (){}=<>") != -1 + + if !isDepQuery { + // try to interpret query as package string representation + + // convert Package.String() to Package.Key() + i := strings.Index(query, "_") + if i != -1 { + pkg, query := query[:i], query[i+1:] + j := strings.LastIndex(query, "_") + if j != -1 { + version, arch := query[:j], query[j+1:] + p := l.packages["P"+arch+" "+pkg+" "+version] + if p != nil { + result.Add(p) + continue + } + } + } + } + + // try as dependency + dep, err := ParseDependency(query) + if err != nil { + if isDepQuery { + return nil, err + } + // parsing failed, but probably that wasn't a dep query + continue + } + + i := sort.Search(len(l.packagesIndex), func(j int) bool { return l.packagesIndex[j].Name >= dep.Pkg }) + + for i < len(l.packagesIndex) && l.packagesIndex[i].Name == dep.Pkg { + p := l.packagesIndex[i] + if p.MatchesDependency(dep) { + result.Add(p) + } + i++ + } + } + + if withDependencies { + added := result.Len() + + dependencySource := NewPackageList() + dependencySource.Append(source) + dependencySource.Append(result) + dependencySource.PrepareIndex() + + // while some new dependencies were discovered + for added > 0 { + added = 0 + + // find missing dependencies + missing, err := result.VerifyDependencies(dependencyOptions, architecturesList, dependencySource, nil) + if err != nil { + return nil, err + } + + // try to satisfy dependencies + for _, dep := range missing { + p := l.Search(dep) + if p != nil { + result.Add(p) + dependencySource.Add(p) + added++ + } + } + } + } + + return result, nil +} diff --git a/src/github.com/smira/aptly/deb/list_test.go b/src/github.com/smira/aptly/deb/list_test.go new file mode 100644 index 00000000..3877605a --- /dev/null +++ b/src/github.com/smira/aptly/deb/list_test.go @@ -0,0 +1,303 @@ +package deb + +import ( + "errors" + . "launchpad.net/gocheck" + "sort" + "strings" +) + +type PackageListSuite struct { + // Simple list with "real" packages from stanzas + list *PackageList + p1, p2, p3, p4, p5, p6 *Package + + // Mocked packages in list + packages []*Package + sourcePackages []*Package + il *PackageList +} + +var _ = Suite(&PackageListSuite{}) + +func (s *PackageListSuite) SetUpTest(c *C) { + s.list = NewPackageList() + + s.p1 = NewPackageFromControlFile(packageStanza.Copy()) + s.p2 = NewPackageFromControlFile(packageStanza.Copy()) + stanza := packageStanza.Copy() + stanza["Package"] = "mars-invaders" + s.p3 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Size"] = "42" + s.p4 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Package"] = "lonely-strangers" + s.p5 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Version"] = "99.1" + s.p6 = NewPackageFromControlFile(stanza) + + s.il = NewPackageList() + s.packages = []*Package{ + &Package{Name: "lib", Version: "1.0", Architecture: "i386", Source: "lib (0.9)", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}, Depends: []string{"mail-agent"}}}, + &Package{Name: "dpkg", Version: "1.7", Architecture: "i386", Provides: []string{"package-installer"}, deps: &PackageDependencies{}}, + &Package{Name: "data", Version: "1.1~bp1", Architecture: "all", Source: "app", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}}}, + &Package{Name: "app", Version: "1.1~bp1", Architecture: "i386", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}, Depends: []string{"lib (>> 0.9)", "data (>= 1.0)"}}}, + &Package{Name: "mailer", Version: "3.5.8", Architecture: "i386", Source: "postfix (1.3)", Provides: []string{"mail-agent"}, deps: &PackageDependencies{}}, + &Package{Name: "app", Version: "1.1~bp1", Architecture: "amd64", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}, Depends: []string{"lib (>> 0.9)", "data (>= 1.0)"}}}, + &Package{Name: "app", Version: "1.1~bp1", Architecture: "arm", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}, Depends: []string{"lib (>> 0.9) | libx (>= 1.5)", "data (>= 1.0) | mail-agent"}}}, + &Package{Name: "app", Version: "1.0", Architecture: "s390", deps: &PackageDependencies{PreDepends: []string{"dpkg >= 1.6)"}, Depends: []string{"lib (>> 0.9)", "data (>= 1.0)"}}}, + &Package{Name: "aa", Version: "2.0-1", Architecture: "i386", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}}}, + &Package{Name: "dpkg", Version: "1.6.1-3", Architecture: "amd64", Provides: []string{"package-installer"}, deps: &PackageDependencies{}}, + &Package{Name: "libx", Version: "1.5", Architecture: "arm", deps: &PackageDependencies{PreDepends: []string{"dpkg (>= 1.6)"}}}, + &Package{Name: "dpkg", Version: "1.6.1-3", Architecture: "arm", Provides: []string{"package-installer"}, deps: &PackageDependencies{}}, + &Package{Name: "dpkg", Version: "1.6.1-3", Architecture: "source", SourceArchitecture: "any", IsSource: true, deps: &PackageDependencies{}}, + &Package{Name: "dpkg", Version: "1.7", Architecture: "source", SourceArchitecture: "any", IsSource: true, deps: &PackageDependencies{}}, + } + for _, p := range s.packages { + s.il.Add(p) + } + s.il.PrepareIndex() + + s.sourcePackages = []*Package{ + &Package{Name: "postfix", Version: "1.3", Architecture: "source", SourceArchitecture: "any", IsSource: true, deps: &PackageDependencies{}}, + &Package{Name: "app", Version: "1.1~bp1", Architecture: "source", SourceArchitecture: "any", IsSource: true, deps: &PackageDependencies{}}, + &Package{Name: "aa", Version: "2.0-1", Architecture: "source", SourceArchitecture: "any", IsSource: true, deps: &PackageDependencies{}}, + &Package{Name: "lib", Version: "0.9", Architecture: "source", SourceArchitecture: "any", IsSource: true, deps: &PackageDependencies{}}, + } + +} + +func (s *PackageListSuite) TestAddLen(c *C) { + c.Check(s.list.Len(), Equals, 0) + c.Check(s.list.Add(s.p1), IsNil) + c.Check(s.list.Len(), Equals, 1) + c.Check(s.list.Add(s.p2), IsNil) + c.Check(s.list.Len(), Equals, 1) + c.Check(s.list.Add(s.p3), IsNil) + c.Check(s.list.Len(), Equals, 2) + c.Check(s.list.Add(s.p4), ErrorMatches, "conflict in package.*") +} + +func (s *PackageListSuite) TestRemove(c *C) { + c.Check(s.list.Add(s.p1), IsNil) + c.Check(s.list.Add(s.p3), IsNil) + c.Check(s.list.Len(), Equals, 2) + + s.list.Remove(s.p1) + c.Check(s.list.Len(), Equals, 1) +} + +func (s *PackageListSuite) TestAddWhenIndexed(c *C) { + c.Check(s.list.Len(), Equals, 0) + s.list.PrepareIndex() + + c.Check(s.list.Add(&Package{Name: "a1st", Version: "1.0", Architecture: "i386", Provides: []string{"fa", "fb"}}), IsNil) + c.Check(s.list.packagesIndex[0].Name, Equals, "a1st") + c.Check(s.list.providesIndex["fa"][0].Name, Equals, "a1st") + c.Check(s.list.providesIndex["fb"][0].Name, Equals, "a1st") + + c.Check(s.list.Add(&Package{Name: "c3rd", Version: "1.0", Architecture: "i386", Provides: []string{"fa"}}), IsNil) + c.Check(s.list.packagesIndex[0].Name, Equals, "a1st") + c.Check(s.list.packagesIndex[1].Name, Equals, "c3rd") + c.Check(s.list.providesIndex["fa"][0].Name, Equals, "a1st") + c.Check(s.list.providesIndex["fa"][1].Name, Equals, "c3rd") + c.Check(s.list.providesIndex["fb"][0].Name, Equals, "a1st") + + c.Check(s.list.Add(&Package{Name: "b2nd", Version: "1.0", Architecture: "i386"}), IsNil) + c.Check(s.list.packagesIndex[0].Name, Equals, "a1st") + c.Check(s.list.packagesIndex[1].Name, Equals, "b2nd") + c.Check(s.list.packagesIndex[2].Name, Equals, "c3rd") + c.Check(s.list.providesIndex["fa"][0].Name, Equals, "a1st") + c.Check(s.list.providesIndex["fa"][1].Name, Equals, "c3rd") + c.Check(s.list.providesIndex["fb"][0].Name, Equals, "a1st") +} + +func (s *PackageListSuite) TestRemoveWhenIndexed(c *C) { + s.il.Remove(s.packages[0]) + names := make([]string, s.il.Len()) + for i, p := range s.il.packagesIndex { + names[i] = p.Name + } + c.Check(names, DeepEquals, []string{"aa", "app", "app", "app", "app", "data", "dpkg", "dpkg", "dpkg", "dpkg", "dpkg", "libx", "mailer"}) + + s.il.Remove(s.packages[4]) + names = make([]string, s.il.Len()) + for i, p := range s.il.packagesIndex { + names[i] = p.Name + } + c.Check(names, DeepEquals, []string{"aa", "app", "app", "app", "app", "data", "dpkg", "dpkg", "dpkg", "dpkg", "dpkg", "libx"}) + c.Check(s.il.providesIndex["mail-agent"], DeepEquals, []*Package{}) + + s.il.Remove(s.packages[9]) + names = make([]string, s.il.Len()) + for i, p := range s.il.packagesIndex { + names[i] = p.Name + } + c.Check(names, DeepEquals, []string{"aa", "app", "app", "app", "app", "data", "dpkg", "dpkg", "dpkg", "dpkg", "libx"}) + c.Check(s.il.providesIndex["package-installer"], HasLen, 2) + + s.il.Remove(s.packages[1]) + names = make([]string, s.il.Len()) + for i, p := range s.il.packagesIndex { + names[i] = p.Name + } + c.Check(names, DeepEquals, []string{"aa", "app", "app", "app", "app", "data", "dpkg", "dpkg", "dpkg", "libx"}) + c.Check(s.il.providesIndex["package-installer"], DeepEquals, []*Package{s.packages[11]}) +} + +func (s *PackageListSuite) TestForeach(c *C) { + s.list.Add(s.p1) + s.list.Add(s.p3) + + Len := 0 + err := s.list.ForEach(func(*Package) error { + Len++ + return nil + }) + + c.Check(Len, Equals, 2) + c.Check(err, IsNil) + + e := errors.New("a") + + err = s.list.ForEach(func(*Package) error { + return e + }) + + c.Check(err, Equals, e) + +} + +func (s *PackageListSuite) TestIndex(c *C) { + c.Check(len(s.il.providesIndex), Equals, 2) + c.Check(len(s.il.providesIndex["mail-agent"]), Equals, 1) + c.Check(len(s.il.providesIndex["package-installer"]), Equals, 3) + c.Check(s.il.packagesIndex[0], Equals, s.packages[8]) +} + +func (s *PackageListSuite) TestAppend(c *C) { + s.list.Add(s.p1) + s.list.Add(s.p3) + + err := s.list.Append(s.il) + c.Check(err, IsNil) + c.Check(s.list.Len(), Equals, 16) + + list := NewPackageList() + list.Add(s.p4) + + err = s.list.Append(list) + c.Check(err, ErrorMatches, "conflict.*") + + s.list.PrepareIndex() + c.Check(func() { s.list.Append(s.il) }, Panics, "Append not supported when indexed") +} + +func (s *PackageListSuite) TestSearch(c *C) { + c.Check(func() { s.list.Search(Dependency{Architecture: "i386", Pkg: "app"}) }, Panics, "list not indexed, can't search") + + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "mail-agent"}), Equals, s.packages[4]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "puppy"}), IsNil) + + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionEqual, Version: "1.1~bp1"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionEqual, Version: "1.1~bp2"}), IsNil) + + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionLess, Version: "1.1"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionLess, Version: "1.1~~"}), IsNil) + + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionLessOrEqual, Version: "1.1"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionLessOrEqual, Version: "1.1~bp1"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionLessOrEqual, Version: "1.1~~"}), IsNil) + + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionGreater, Version: "1.0"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionGreater, Version: "1.2"}), IsNil) + + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionGreaterOrEqual, Version: "1.0"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionGreaterOrEqual, Version: "1.1~bp1"}), Equals, s.packages[3]) + c.Check(s.il.Search(Dependency{Architecture: "i386", Pkg: "app", Relation: VersionGreaterOrEqual, Version: "1.2"}), IsNil) +} + +func (s *PackageListSuite) TestFilter(c *C) { + c.Check(func() { s.list.Filter([]string{"abcd_0.3_i386"}, false, nil, 0, nil) }, Panics, "list not indexed, can't filter") + + _, err := s.il.Filter([]string{"app >3)"}, false, nil, 0, nil) + c.Check(err, ErrorMatches, "unable to parse dependency.*") + + plString := func(l *PackageList) string { + list := make([]string, 0, l.Len()) + for _, p := range l.packages { + list = append(list, p.String()) + } + + sort.Strings(list) + + return strings.Join(list, " ") + } + + result, err := s.il.Filter([]string{"app_1.1~bp1_i386"}, false, nil, 0, nil) + c.Check(err, IsNil) + c.Check(plString(result), Equals, "app_1.1~bp1_i386") + + result, err = s.il.Filter([]string{"app_1.1~bp1_i386", "dpkg_1.7_source", "dpkg_1.8_amd64"}, false, nil, 0, nil) + c.Check(err, IsNil) + c.Check(plString(result), Equals, "app_1.1~bp1_i386 dpkg_1.7_source") + + result, err = s.il.Filter([]string{"app", "dpkg (>>1.6.1-3)", "app (>=1.0)", "xyz", "aa (>>3.0)"}, false, nil, 0, nil) + c.Check(err, IsNil) + c.Check(plString(result), Equals, "app_1.0_s390 app_1.1~bp1_amd64 app_1.1~bp1_arm app_1.1~bp1_i386 dpkg_1.7_i386 dpkg_1.7_source") + + result, err = s.il.Filter([]string{"app {i386}"}, true, NewPackageList(), 0, []string{"i386"}) + c.Check(err, IsNil) + c.Check(plString(result), Equals, "app_1.1~bp1_i386 data_1.1~bp1_all dpkg_1.7_i386 lib_1.0_i386 mailer_3.5.8_i386") + + result, err = s.il.Filter([]string{"app (>=0.9)", "lib", "data"}, true, NewPackageList(), 0, []string{"i386", "amd64"}) + c.Check(err, IsNil) + c.Check(plString(result), Equals, "app_1.0_s390 app_1.1~bp1_amd64 app_1.1~bp1_arm app_1.1~bp1_i386 data_1.1~bp1_all dpkg_1.6.1-3_amd64 dpkg_1.7_i386 lib_1.0_i386 mailer_3.5.8_i386") +} + +func (s *PackageListSuite) TestVerifyDependencies(c *C) { + missing, err := s.il.VerifyDependencies(0, []string{"i386"}, s.il, nil) + c.Check(err, IsNil) + c.Check(missing, DeepEquals, []Dependency{}) + + missing, err = s.il.VerifyDependencies(0, []string{"i386", "amd64"}, s.il, nil) + c.Check(err, IsNil) + c.Check(missing, DeepEquals, []Dependency{Dependency{Pkg: "lib", Relation: VersionGreater, Version: "0.9", Architecture: "amd64"}}) + + missing, err = s.il.VerifyDependencies(0, []string{"arm"}, s.il, nil) + c.Check(err, IsNil) + c.Check(missing, DeepEquals, []Dependency{}) + + missing, err = s.il.VerifyDependencies(DepFollowAllVariants, []string{"arm"}, s.il, nil) + c.Check(err, IsNil) + c.Check(missing, DeepEquals, []Dependency{Dependency{Pkg: "lib", Relation: VersionGreater, Version: "0.9", Architecture: "arm"}, + Dependency{Pkg: "mail-agent", Relation: VersionDontCare, Version: "", Architecture: "arm"}}) + + for _, p := range s.sourcePackages { + s.il.Add(p) + } + + missing, err = s.il.VerifyDependencies(DepFollowSource, []string{"i386", "amd64"}, s.il, nil) + c.Check(err, IsNil) + c.Check(missing, DeepEquals, []Dependency{Dependency{Pkg: "lib", Relation: VersionGreater, Version: "0.9", Architecture: "amd64"}}) + + missing, err = s.il.VerifyDependencies(DepFollowSource, []string{"arm"}, s.il, nil) + c.Check(err, IsNil) + c.Check(missing, DeepEquals, []Dependency{Dependency{Pkg: "libx", Relation: VersionEqual, Version: "1.5", Architecture: "source"}}) + + _, err = s.il.VerifyDependencies(0, []string{"i386", "amd64", "s390"}, s.il, nil) + c.Check(err, ErrorMatches, "unable to process package app_1.0_s390:.*") +} + +func (s *PackageListSuite) TestArchitectures(c *C) { + archs := s.il.Architectures(true) + sort.Strings(archs) + c.Check(archs, DeepEquals, []string{"amd64", "arm", "i386", "s390", "source"}) + + archs = s.il.Architectures(false) + sort.Strings(archs) + c.Check(archs, DeepEquals, []string{"amd64", "arm", "i386", "s390"}) +} diff --git a/src/github.com/smira/aptly/deb/local.go b/src/github.com/smira/aptly/deb/local.go new file mode 100644 index 00000000..4002b546 --- /dev/null +++ b/src/github.com/smira/aptly/deb/local.go @@ -0,0 +1,223 @@ +package deb + +import ( + "bytes" + "code.google.com/p/go-uuid/uuid" + "fmt" + "github.com/smira/aptly/database" + "github.com/ugorji/go/codec" + "log" +) + +// LocalRepo is a collection of packages created locally +type LocalRepo struct { + // Permanent internal ID + UUID string + // User-assigned name + Name string + // Comment + Comment string + // DefaultDistribution + DefaultDistribution string `codec:",omitempty"` + // DefaultComponent + DefaultComponent string `codec:",omitempty"` + // "Snapshot" of current list of packages + packageRefs *PackageRefList +} + +// NewLocalRepo creates new instance of Debian local repository +func NewLocalRepo(name string, comment string) *LocalRepo { + return &LocalRepo{ + UUID: uuid.New(), + Name: name, + Comment: comment, + } +} + +// String interface +func (repo *LocalRepo) String() string { + if repo.Comment != "" { + return fmt.Sprintf("[%s]: %s", repo.Name, repo.Comment) + } + return fmt.Sprintf("[%s]", repo.Name) +} + +// NumPackages return number of packages in local repo +func (repo *LocalRepo) NumPackages() int { + if repo.packageRefs == nil { + return 0 + } + return repo.packageRefs.Len() +} + +// RefList returns package list for repo +func (repo *LocalRepo) RefList() *PackageRefList { + return repo.packageRefs +} + +// UpdateRefList changes package list for local repo +func (repo *LocalRepo) UpdateRefList(reflist *PackageRefList) { + repo.packageRefs = reflist +} + +// Encode does msgpack encoding of LocalRepo +func (repo *LocalRepo) Encode() []byte { + var buf bytes.Buffer + + encoder := codec.NewEncoder(&buf, &codec.MsgpackHandle{}) + encoder.Encode(repo) + + return buf.Bytes() +} + +// Decode decodes msgpack representation into LocalRepo +func (repo *LocalRepo) Decode(input []byte) error { + decoder := codec.NewDecoderBytes(input, &codec.MsgpackHandle{}) + return decoder.Decode(repo) +} + +// Key is a unique id in DB +func (repo *LocalRepo) Key() []byte { + return []byte("L" + repo.UUID) +} + +// RefKey is a unique id for package reference list +func (repo *LocalRepo) RefKey() []byte { + return []byte("E" + repo.UUID) +} + +// LocalRepoCollection does listing, updating/adding/deleting of LocalRepos +type LocalRepoCollection struct { + db database.Storage + list []*LocalRepo +} + +// NewLocalRepoCollection loads LocalRepos from DB and makes up collection +func NewLocalRepoCollection(db database.Storage) *LocalRepoCollection { + result := &LocalRepoCollection{ + db: db, + } + + blobs := db.FetchByPrefix([]byte("L")) + result.list = make([]*LocalRepo, 0, len(blobs)) + + for _, blob := range blobs { + r := &LocalRepo{} + if err := r.Decode(blob); err != nil { + log.Printf("Error decoding mirror: %s\n", err) + } else { + result.list = append(result.list, r) + } + } + + return result +} + +// Add appends new repo to collection and saves it +func (collection *LocalRepoCollection) Add(repo *LocalRepo) error { + for _, r := range collection.list { + if r.Name == repo.Name { + return fmt.Errorf("local repo with name %s already exists", repo.Name) + } + } + + err := collection.Update(repo) + if err != nil { + return err + } + + collection.list = append(collection.list, repo) + return nil +} + +// Update stores updated information about repo in DB +func (collection *LocalRepoCollection) Update(repo *LocalRepo) error { + err := collection.db.Put(repo.Key(), repo.Encode()) + if err != nil { + return err + } + if repo.packageRefs != nil { + err = collection.db.Put(repo.RefKey(), repo.packageRefs.Encode()) + if err != nil { + return err + } + } + return nil +} + +// LoadComplete loads additional information for local repo +func (collection *LocalRepoCollection) LoadComplete(repo *LocalRepo) error { + encoded, err := collection.db.Get(repo.RefKey()) + if err == database.ErrNotFound { + return nil + } + if err != nil { + return err + } + + repo.packageRefs = &PackageRefList{} + return repo.packageRefs.Decode(encoded) +} + +// ByName looks up repository by name +func (collection *LocalRepoCollection) ByName(name string) (*LocalRepo, error) { + for _, r := range collection.list { + if r.Name == name { + return r, nil + } + } + return nil, fmt.Errorf("local repo with name %s not found", name) +} + +// ByUUID looks up repository by uuid +func (collection *LocalRepoCollection) ByUUID(uuid string) (*LocalRepo, error) { + for _, r := range collection.list { + if r.UUID == uuid { + return r, nil + } + } + return nil, fmt.Errorf("local repo with uuid %s not found", uuid) +} + +// ForEach runs method for each repository +func (collection *LocalRepoCollection) ForEach(handler func(*LocalRepo) error) error { + var err error + for _, r := range collection.list { + err = handler(r) + if err != nil { + return err + } + } + return err +} + +// Len returns number of remote repos +func (collection *LocalRepoCollection) Len() int { + return len(collection.list) +} + +// Drop removes remote repo from collection +func (collection *LocalRepoCollection) Drop(repo *LocalRepo) error { + repoPosition := -1 + + for i, r := range collection.list { + if r == repo { + repoPosition = i + break + } + } + + if repoPosition == -1 { + panic("local repo not found!") + } + + collection.list[len(collection.list)-1], collection.list[repoPosition], collection.list = + nil, collection.list[len(collection.list)-1], collection.list[:len(collection.list)-1] + + err := collection.db.Delete(repo.Key()) + if err != nil { + return err + } + + return collection.db.Delete(repo.RefKey()) +} diff --git a/src/github.com/smira/aptly/deb/local_test.go b/src/github.com/smira/aptly/deb/local_test.go new file mode 100644 index 00000000..0830c1ef --- /dev/null +++ b/src/github.com/smira/aptly/deb/local_test.go @@ -0,0 +1,195 @@ +package deb + +import ( + "errors" + "github.com/smira/aptly/database" + . "launchpad.net/gocheck" +) + +type LocalRepoSuite struct { + db database.Storage + list *PackageList + reflist *PackageRefList + repo *LocalRepo +} + +var _ = Suite(&LocalRepoSuite{}) + +func (s *LocalRepoSuite) SetUpTest(c *C) { + s.db, _ = database.OpenDB(c.MkDir()) + s.list = NewPackageList() + s.list.Add(&Package{Name: "lib", Version: "1.7", Architecture: "i386"}) + s.list.Add(&Package{Name: "app", Version: "1.9", Architecture: "amd64"}) + + s.reflist = NewPackageRefListFromPackageList(s.list) + + s.repo = NewLocalRepo("lrepo", "Super repo") + s.repo.packageRefs = s.reflist +} + +func (s *LocalRepoSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *LocalRepoSuite) TestString(c *C) { + c.Check(NewLocalRepo("lrepo", "My first repo").String(), Equals, "[lrepo]: My first repo") + c.Check(NewLocalRepo("lrepo2", "").String(), Equals, "[lrepo2]") +} + +func (s *LocalRepoSuite) TestNumPackages(c *C) { + c.Check(NewLocalRepo("lrepo", "My first repo").NumPackages(), Equals, 0) + c.Check(s.repo.NumPackages(), Equals, 2) +} + +func (s *LocalRepoSuite) TestRefList(c *C) { + c.Check(NewLocalRepo("lrepo", "My first repo").RefList(), IsNil) + c.Check(s.repo.RefList(), Equals, s.reflist) +} + +func (s *LocalRepoSuite) TestUpdateRefList(c *C) { + s.repo.UpdateRefList(nil) + c.Check(s.repo.RefList(), IsNil) +} + +func (s *LocalRepoSuite) TestEncodeDecode(c *C) { + repo := &LocalRepo{} + err := repo.Decode(s.repo.Encode()) + c.Assert(err, IsNil) + + c.Check(repo.Name, Equals, s.repo.Name) + c.Check(repo.Comment, Equals, s.repo.Comment) +} + +func (s *LocalRepoSuite) TestKey(c *C) { + c.Assert(len(s.repo.Key()), Equals, 37) + c.Assert(s.repo.Key()[0], Equals, byte('L')) +} + +func (s *LocalRepoSuite) TestRefKey(c *C) { + c.Assert(len(s.repo.RefKey()), Equals, 37) + c.Assert(s.repo.RefKey()[0], Equals, byte('E')) + c.Assert(s.repo.RefKey()[1:], DeepEquals, s.repo.Key()[1:]) +} + +type LocalRepoCollectionSuite struct { + db database.Storage + collection *LocalRepoCollection + list *PackageList + reflist *PackageRefList +} + +var _ = Suite(&LocalRepoCollectionSuite{}) + +func (s *LocalRepoCollectionSuite) SetUpTest(c *C) { + s.db, _ = database.OpenDB(c.MkDir()) + s.collection = NewLocalRepoCollection(s.db) + + s.list = NewPackageList() + s.list.Add(&Package{Name: "lib", Version: "1.7", Architecture: "i386"}) + s.list.Add(&Package{Name: "app", Version: "1.9", Architecture: "amd64"}) + + s.reflist = NewPackageRefListFromPackageList(s.list) +} + +func (s *LocalRepoCollectionSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *LocalRepoCollectionSuite) TestAddByName(c *C) { + r, err := s.collection.ByName("local1") + c.Assert(err, ErrorMatches, "*.not found") + + repo := NewLocalRepo("local1", "Comment 1") + c.Assert(s.collection.Add(repo), IsNil) + c.Assert(s.collection.Add(repo), ErrorMatches, ".*already exists") + + r, err = s.collection.ByName("local1") + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, repo.String()) + + collection := NewLocalRepoCollection(s.db) + r, err = collection.ByName("local1") + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, repo.String()) +} + +func (s *LocalRepoCollectionSuite) TestByUUID(c *C) { + r, err := s.collection.ByUUID("some-uuid") + c.Assert(err, ErrorMatches, "*.not found") + + repo := NewLocalRepo("local1", "Comment 1") + c.Assert(s.collection.Add(repo), IsNil) + + r, err = s.collection.ByUUID(repo.UUID) + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, repo.String()) +} + +func (s *LocalRepoCollectionSuite) TestUpdateLoadComplete(c *C) { + repo := NewLocalRepo("local1", "Comment 1") + c.Assert(s.collection.Update(repo), IsNil) + + collection := NewLocalRepoCollection(s.db) + r, err := collection.ByName("local1") + c.Assert(err, IsNil) + c.Assert(r.packageRefs, IsNil) + + repo.packageRefs = s.reflist + c.Assert(s.collection.Update(repo), IsNil) + + collection = NewLocalRepoCollection(s.db) + r, err = collection.ByName("local1") + c.Assert(err, IsNil) + c.Assert(r.packageRefs, IsNil) + c.Assert(r.NumPackages(), Equals, 0) + c.Assert(s.collection.LoadComplete(r), IsNil) + c.Assert(r.NumPackages(), Equals, 2) +} + +func (s *LocalRepoCollectionSuite) TestForEachAndLen(c *C) { + repo := NewLocalRepo("local1", "Comment 1") + s.collection.Add(repo) + + count := 0 + err := s.collection.ForEach(func(*LocalRepo) error { + count++ + return nil + }) + c.Assert(count, Equals, 1) + c.Assert(err, IsNil) + + c.Check(s.collection.Len(), Equals, 1) + + e := errors.New("c") + + err = s.collection.ForEach(func(*LocalRepo) error { + return e + }) + c.Assert(err, Equals, e) +} + +func (s *LocalRepoCollectionSuite) TestDrop(c *C) { + repo1 := NewLocalRepo("local1", "Comment 1") + s.collection.Add(repo1) + + repo2 := NewLocalRepo("local2", "Comment 2") + s.collection.Add(repo2) + + r1, _ := s.collection.ByUUID(repo1.UUID) + c.Check(r1, Equals, repo1) + + err := s.collection.Drop(repo1) + c.Check(err, IsNil) + + _, err = s.collection.ByUUID(repo1.UUID) + c.Check(err, ErrorMatches, "local repo .* not found") + + collection := NewLocalRepoCollection(s.db) + _, err = collection.ByName("local1") + c.Check(err, ErrorMatches, "local repo .* not found") + + r2, _ := collection.ByName("local2") + c.Check(r2.String(), Equals, repo2.String()) + + c.Check(func() { s.collection.Drop(repo1) }, Panics, "local repo not found!") +} diff --git a/src/github.com/smira/aptly/deb/package.go b/src/github.com/smira/aptly/deb/package.go new file mode 100644 index 00000000..a50ce44f --- /dev/null +++ b/src/github.com/smira/aptly/deb/package.go @@ -0,0 +1,489 @@ +package deb + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/utils" + "path/filepath" + "strconv" + "strings" +) + +// Package is single instance of Debian package +type Package struct { + // Basic package properties + Name string + Version string + Architecture string + // If this source package, this field holds "real" architecture value, + // while Architecture would be equal to "source" + SourceArchitecture string + // For binary package, name of source package + Source string + // List of virtual packages this package provides + Provides []string + // Is this source package + IsSource bool + // Hash of files section + FilesHash uint64 + // Offload fields + deps *PackageDependencies + extra *Stanza + files *PackageFiles + // Mother collection + collection *PackageCollection +} + +// NewPackageFromControlFile creates Package from parsed Debian control file +func NewPackageFromControlFile(input Stanza) *Package { + result := &Package{ + Name: input["Package"], + Version: input["Version"], + Architecture: input["Architecture"], + Source: input["Source"], + } + + delete(input, "Package") + delete(input, "Version") + delete(input, "Architecture") + delete(input, "Source") + + filesize, _ := strconv.ParseInt(input["Size"], 10, 64) + + result.UpdateFiles(PackageFiles{PackageFile{ + Filename: filepath.Base(input["Filename"]), + downloadPath: filepath.Dir(input["Filename"]), + Checksums: utils.ChecksumInfo{ + Size: filesize, + MD5: strings.TrimSpace(input["MD5sum"]), + SHA1: strings.TrimSpace(input["SHA1"]), + SHA256: strings.TrimSpace(input["SHA256"]), + }, + }}) + + delete(input, "Filename") + delete(input, "MD5sum") + delete(input, "SHA1") + delete(input, "SHA256") + delete(input, "Size") + + depends := &PackageDependencies{} + depends.Depends = parseDependencies(input, "Depends") + depends.PreDepends = parseDependencies(input, "Pre-Depends") + depends.Suggests = parseDependencies(input, "Suggests") + depends.Recommends = parseDependencies(input, "Recommends") + result.deps = depends + + result.Provides = parseDependencies(input, "Provides") + + result.extra = &input + + return result +} + +// NewSourcePackageFromControlFile creates Package from parsed Debian control file for source package +func NewSourcePackageFromControlFile(input Stanza) (*Package, error) { + result := &Package{ + IsSource: true, + Name: input["Package"], + Version: input["Version"], + Architecture: "source", + SourceArchitecture: input["Architecture"], + } + + delete(input, "Package") + delete(input, "Version") + delete(input, "Architecture") + + files := make(PackageFiles, 0, 3) + + parseSums := func(field string, setter func(sum *utils.ChecksumInfo, data string)) error { + for _, line := range strings.Split(input[field], "\n") { + line = strings.TrimSpace(line) + if line == "" { + continue + } + parts := strings.Fields(line) + + if len(parts) != 3 { + return fmt.Errorf("unparseable hash sum line: %#v", line) + } + + size, err := strconv.ParseInt(parts[1], 10, 64) + if err != nil { + return fmt.Errorf("unable to parse size: %s", err) + } + + filename := filepath.Base(parts[2]) + + found := false + pos := 0 + for i, file := range files { + if file.Filename == filename { + found = true + pos = i + break + } + } + + if !found { + files = append(files, PackageFile{Filename: filename, downloadPath: input["Directory"]}) + pos = len(files) - 1 + } + + files[pos].Checksums.Size = size + setter(&files[pos].Checksums, parts[0]) + } + + delete(input, field) + + return nil + } + + err := parseSums("Files", func(sum *utils.ChecksumInfo, data string) { sum.MD5 = data }) + if err != nil { + return nil, err + } + err = parseSums("Checksums-Sha1", func(sum *utils.ChecksumInfo, data string) { sum.SHA1 = data }) + if err != nil { + return nil, err + } + err = parseSums("Checksums-Sha256", func(sum *utils.ChecksumInfo, data string) { sum.SHA256 = data }) + if err != nil { + return nil, err + } + + result.UpdateFiles(files) + + depends := &PackageDependencies{} + depends.BuildDepends = parseDependencies(input, "Build-Depends") + depends.BuildDependsInDep = parseDependencies(input, "Build-Depends-Indep") + result.deps = depends + + result.extra = &input + + return result, nil +} + +// Key returns unique key identifying package +func (p *Package) Key(prefix string) []byte { + return []byte(prefix + "P" + p.Architecture + " " + p.Name + " " + p.Version) +} + +// String creates readable representation +func (p *Package) String() string { + return fmt.Sprintf("%s_%s_%s", p.Name, p.Version, p.Architecture) +} + +// MatchesArchitecture checks whether packages matches specified architecture +func (p *Package) MatchesArchitecture(arch string) bool { + if p.Architecture == "all" && arch != "source" { + return true + } + + return p.Architecture == arch +} + +// MatchesDependency checks whether package matches specified dependency +func (p *Package) MatchesDependency(dep Dependency) bool { + if dep.Pkg != p.Name { + return false + } + + if dep.Architecture != "" && !p.MatchesArchitecture(dep.Architecture) { + return false + } + + if dep.Relation == VersionDontCare { + return true + } + + r := CompareVersions(p.Version, dep.Version) + switch dep.Relation { + case VersionEqual: + return r == 0 + case VersionLess: + return r < 0 + case VersionGreater: + return r > 0 + case VersionLessOrEqual: + return r <= 0 + case VersionGreaterOrEqual: + return r >= 0 + } + + panic("unknown relation") +} + +// GetDependencies compiles list of dependenices by flags from options +func (p *Package) GetDependencies(options int) (dependencies []string) { + deps := p.Deps() + + dependencies = make([]string, 0, 30) + dependencies = append(dependencies, deps.Depends...) + dependencies = append(dependencies, deps.PreDepends...) + + if options&DepFollowRecommends == DepFollowRecommends { + dependencies = append(dependencies, deps.Recommends...) + } + + if options&DepFollowSuggests == DepFollowSuggests { + dependencies = append(dependencies, deps.Suggests...) + } + + if options&DepFollowBuild == DepFollowBuild { + dependencies = append(dependencies, deps.BuildDepends...) + dependencies = append(dependencies, deps.BuildDependsInDep...) + } + + if options&DepFollowSource == DepFollowSource { + source := p.Source + if source == "" { + source = p.Name + } + if strings.Index(source, ")") != -1 { + dependencies = append(dependencies, fmt.Sprintf("%s {source}", source)) + } else { + dependencies = append(dependencies, fmt.Sprintf("%s (= %s) {source}", source, p.Version)) + } + } + + return +} + +// Extra returns Stanza of extra fields (it may load it from collection) +func (p *Package) Extra() Stanza { + if p.extra == nil { + if p.collection == nil { + panic("extra == nil && collection == nil") + } + p.extra = p.collection.loadExtra(p) + } + + return *p.extra +} + +// Deps returns parsed package dependencies (it may load it from collection) +func (p *Package) Deps() *PackageDependencies { + if p.deps == nil { + if p.collection == nil { + panic("deps == nil && collection == nil") + } + + p.deps = p.collection.loadDependencies(p) + } + + return p.deps +} + +// Files returns parsed files records (it may load it from collection) +func (p *Package) Files() PackageFiles { + if p.files == nil { + if p.collection == nil { + panic("files == nil && collection == nil") + } + + p.files = p.collection.loadFiles(p) + } + + return *p.files +} + +// UpdateFiles saves new state of files +func (p *Package) UpdateFiles(files PackageFiles) { + p.files = &files + p.FilesHash = files.Hash() +} + +// Stanza creates original stanza from package +func (p *Package) Stanza() (result Stanza) { + result = p.Extra().Copy() + result["Package"] = p.Name + result["Version"] = p.Version + + if p.IsSource { + result["Architecture"] = p.SourceArchitecture + } else { + result["Architecture"] = p.Architecture + result["Source"] = p.Source + } + + if p.IsSource { + md5, sha1, sha256 := make([]string, 0), make([]string, 0), make([]string, 0) + + for _, f := range p.Files() { + if f.Checksums.MD5 != "" { + md5 = append(md5, fmt.Sprintf(" %s %d %s\n", f.Checksums.MD5, f.Checksums.Size, f.Filename)) + } + if f.Checksums.SHA1 != "" { + sha1 = append(sha1, fmt.Sprintf(" %s %d %s\n", f.Checksums.SHA1, f.Checksums.Size, f.Filename)) + } + if f.Checksums.SHA256 != "" { + sha256 = append(sha256, fmt.Sprintf(" %s %d %s\n", f.Checksums.SHA256, f.Checksums.Size, f.Filename)) + } + } + + result["Files"] = strings.Join(md5, "") + result["Checksums-Sha1"] = strings.Join(sha1, "") + result["Checksums-Sha256"] = strings.Join(sha256, "") + } else { + f := p.Files()[0] + result["Filename"] = f.DownloadURL() + if f.Checksums.MD5 != "" { + result["MD5sum"] = f.Checksums.MD5 + } + if f.Checksums.SHA1 != "" { + result["SHA1"] = " " + f.Checksums.SHA1 + } + if f.Checksums.SHA256 != "" { + result["SHA256"] = " " + f.Checksums.SHA256 + } + result["Size"] = fmt.Sprintf("%d", f.Checksums.Size) + } + + deps := p.Deps() + + if deps.Depends != nil { + result["Depends"] = strings.Join(deps.Depends, ", ") + } + if deps.PreDepends != nil { + result["Pre-Depends"] = strings.Join(deps.PreDepends, ", ") + } + if deps.Suggests != nil { + result["Suggests"] = strings.Join(deps.Suggests, ", ") + } + if deps.Recommends != nil { + result["Recommends"] = strings.Join(deps.Recommends, ", ") + } + if p.Provides != nil { + result["Provides"] = strings.Join(p.Provides, ", ") + } + if deps.BuildDepends != nil { + result["Build-Depends"] = strings.Join(deps.BuildDepends, ", ") + } + if deps.BuildDependsInDep != nil { + result["Build-Depends-Indep"] = strings.Join(deps.BuildDependsInDep, ", ") + } + + return +} + +// Equals compares two packages to be identical +func (p *Package) Equals(p2 *Package) bool { + return p.Name == p2.Name && p.Version == p2.Version && p.SourceArchitecture == p2.SourceArchitecture && + p.Architecture == p2.Architecture && p.Source == p2.Source && p.IsSource == p2.IsSource && + p.FilesHash == p2.FilesHash +} + +// LinkFromPool links package file from pool to dist's pool location +func (p *Package) LinkFromPool(publishedStorage aptly.PublishedStorage, packagePool aptly.PackagePool, prefix string, component string) error { + poolDir, err := p.PoolDirectory() + if err != nil { + return err + } + + for i, f := range p.Files() { + sourcePath, err := packagePool.Path(f.Filename, f.Checksums.MD5) + if err != nil { + return err + } + + relPath := filepath.Join("pool", component, poolDir) + publishedDirectory := filepath.Join(prefix, relPath) + + err = publishedStorage.LinkFromPool(publishedDirectory, packagePool, sourcePath) + if err != nil { + return err + } + + if p.IsSource { + p.Extra()["Directory"] = relPath + } else { + p.Files()[i].downloadPath = relPath + } + } + + return nil +} + +// PoolDirectory returns directory in package pool of published repository for this package files +func (p *Package) PoolDirectory() (string, error) { + source := p.Source + if source == "" { + source = p.Name + } + + if len(source) < 2 { + return "", fmt.Errorf("package source %s too short", source) + } + + var subdir string + if strings.HasPrefix(source, "lib") { + subdir = source[:4] + } else { + subdir = source[:1] + + } + + return filepath.Join(subdir, source), nil +} + +// PackageDownloadTask is a element of download queue for the package +type PackageDownloadTask struct { + RepoURI string + DestinationPath string + Checksums utils.ChecksumInfo +} + +// DownloadList returns list of missing package files for download in format +// [[srcpath, dstpath]] +func (p *Package) DownloadList(packagePool aptly.PackagePool) (result []PackageDownloadTask, err error) { + result = make([]PackageDownloadTask, 0, 1) + + for _, f := range p.Files() { + poolPath, err := packagePool.Path(f.Filename, f.Checksums.MD5) + if err != nil { + return nil, err + } + + verified, err := f.Verify(packagePool) + if err != nil { + return nil, err + } + + if !verified { + result = append(result, PackageDownloadTask{RepoURI: f.DownloadURL(), DestinationPath: poolPath, Checksums: f.Checksums}) + } + } + + return result, nil +} + +// VerifyFiles verifies that all package files have neen correctly downloaded +func (p *Package) VerifyFiles(packagePool aptly.PackagePool) (result bool, err error) { + result = true + + for _, f := range p.Files() { + result, err = f.Verify(packagePool) + if err != nil || !result { + return + } + } + + return +} + +// FilepathList returns list of paths to files in package repository +func (p *Package) FilepathList(packagePool aptly.PackagePool) ([]string, error) { + var err error + result := make([]string, len(p.Files())) + + for i, f := range p.Files() { + result[i], err = packagePool.RelativePath(f.Filename, f.Checksums.MD5) + if err != nil { + return nil, err + } + } + + return result, nil +} diff --git a/src/github.com/smira/aptly/deb/package_collection.go b/src/github.com/smira/aptly/deb/package_collection.go new file mode 100644 index 00000000..5e5a8939 --- /dev/null +++ b/src/github.com/smira/aptly/deb/package_collection.go @@ -0,0 +1,256 @@ +package deb + +import ( + "bytes" + "fmt" + "github.com/smira/aptly/database" + "github.com/ugorji/go/codec" + "path/filepath" +) + +// PackageCollection does management of packages in DB +type PackageCollection struct { + db database.Storage + encodeBuffer bytes.Buffer +} + +// NewPackageCollection creates new PackageCollection and binds it to database +func NewPackageCollection(db database.Storage) *PackageCollection { + return &PackageCollection{ + db: db, + } +} + +// oldPackage is Package struct for aptly < 0.4 with all fields in one struct +// It is used to decode old aptly DBs +type oldPackage struct { + IsSource bool + Name string + Version string + Architecture string + SourceArchitecture string + Source string + Provides []string + Depends []string + BuildDepends []string + BuildDependsInDep []string + PreDepends []string + Suggests []string + Recommends []string + Files []PackageFile + Extra Stanza +} + +// ByKey find package in DB by its key +func (collection *PackageCollection) ByKey(key []byte) (*Package, error) { + encoded, err := collection.db.Get(key) + if err != nil { + return nil, err + } + + p := &Package{} + + if len(encoded) > 2 && (encoded[0] != 0xc1 || encoded[1] != 0x1) { + oldp := &oldPackage{} + + decoder := codec.NewDecoderBytes(encoded, &codec.MsgpackHandle{}) + err = decoder.Decode(oldp) + if err != nil { + return nil, err + } + + p.Name = oldp.Name + p.Version = oldp.Version + p.Architecture = oldp.Architecture + p.IsSource = oldp.IsSource + p.SourceArchitecture = oldp.SourceArchitecture + p.Source = oldp.Source + p.Provides = oldp.Provides + + p.deps = &PackageDependencies{ + Depends: oldp.Depends, + BuildDepends: oldp.BuildDepends, + BuildDependsInDep: oldp.BuildDependsInDep, + PreDepends: oldp.PreDepends, + Suggests: oldp.Suggests, + Recommends: oldp.Recommends, + } + + p.extra = &oldp.Extra + for i := range oldp.Files { + oldp.Files[i].Filename = filepath.Base(oldp.Files[i].Filename) + } + p.UpdateFiles(PackageFiles(oldp.Files)) + + // Save in new format + err = collection.internalUpdate(p) + if err != nil { + return nil, err + } + } else { + decoder := codec.NewDecoderBytes(encoded[2:], &codec.MsgpackHandle{}) + err = decoder.Decode(p) + if err != nil { + return nil, err + } + } + + p.collection = collection + + return p, nil +} + +// loadExtra loads Stanza with all the xtra information about the package +func (collection *PackageCollection) loadExtra(p *Package) *Stanza { + encoded, err := collection.db.Get(p.Key("xE")) + if err != nil { + panic("unable to load extra") + } + + stanza := &Stanza{} + + decoder := codec.NewDecoderBytes(encoded, &codec.MsgpackHandle{}) + err = decoder.Decode(stanza) + if err != nil { + panic("unable to decode extra") + } + + return stanza +} + +// loadDependencies loads dependencies for the package +func (collection *PackageCollection) loadDependencies(p *Package) *PackageDependencies { + encoded, err := collection.db.Get(p.Key("xD")) + if err != nil { + panic(fmt.Sprintf("unable to load deps: %s, %s", p, err)) + } + + deps := &PackageDependencies{} + + decoder := codec.NewDecoderBytes(encoded, &codec.MsgpackHandle{}) + err = decoder.Decode(deps) + if err != nil { + panic("unable to decode deps") + } + + return deps +} + +// loadFiles loads additional PackageFiles record +func (collection *PackageCollection) loadFiles(p *Package) *PackageFiles { + encoded, err := collection.db.Get(p.Key("xF")) + if err != nil { + panic("unable to load files") + } + + files := &PackageFiles{} + + decoder := codec.NewDecoderBytes(encoded, &codec.MsgpackHandle{}) + err = decoder.Decode(files) + if err != nil { + panic("unable to decode files") + } + + return files +} + +// Update adds or updates information about package in DB checking for conficts first +func (collection *PackageCollection) Update(p *Package) error { + existing, err := collection.ByKey(p.Key("")) + if err == nil { + // if .Files is different, consider to be conflict + if p.FilesHash != existing.FilesHash { + return fmt.Errorf("unable to save: %s, conflict with existing packge", p) + } + // ok, .Files are the same, but maybe some meta-data is different, proceed to saving + } else { + if err != database.ErrNotFound { + return err + } + // ok, package doesn't exist yet + } + + return collection.internalUpdate(p) +} + +// internalUpdate updates information in DB about package and offloaded fields +func (collection *PackageCollection) internalUpdate(p *Package) error { + encoder := codec.NewEncoder(&collection.encodeBuffer, &codec.MsgpackHandle{}) + + collection.encodeBuffer.Reset() + collection.encodeBuffer.WriteByte(0xc1) + collection.encodeBuffer.WriteByte(0x1) + err := encoder.Encode(p) + if err != nil { + return err + } + + err = collection.db.Put(p.Key(""), collection.encodeBuffer.Bytes()) + if err != nil { + return err + } + + // Encode offloaded fields one by one + if p.files != nil { + collection.encodeBuffer.Reset() + err = encoder.Encode(*p.files) + if err != nil { + return err + } + + err = collection.db.Put(p.Key("xF"), collection.encodeBuffer.Bytes()) + if err != nil { + return err + } + } + + if p.deps != nil { + collection.encodeBuffer.Reset() + err = encoder.Encode(*p.deps) + if err != nil { + return err + } + + err = collection.db.Put(p.Key("xD"), collection.encodeBuffer.Bytes()) + if err != nil { + return err + } + + p.deps = nil + } + + if p.extra != nil { + collection.encodeBuffer.Reset() + err = encoder.Encode(*p.extra) + if err != nil { + return err + } + + err = collection.db.Put(p.Key("xE"), collection.encodeBuffer.Bytes()) + if err != nil { + return err + } + + p.extra = nil + } + + p.collection = collection + + return nil +} + +// AllPackageRefs returns list of all packages as PackageRefList +func (collection *PackageCollection) AllPackageRefs() *PackageRefList { + return &PackageRefList{Refs: collection.db.KeysByPrefix([]byte("P"))} +} + +// DeleteByKey deletes package in DB by key +func (collection *PackageCollection) DeleteByKey(key []byte) error { + for _, key := range [][]byte{key, append([]byte("xF"), key...), append([]byte("xD"), key...), append([]byte("xE"), key...)} { + err := collection.db.Delete(key) + if err != nil { + return err + } + } + return nil +} diff --git a/src/github.com/smira/aptly/deb/package_collection_test.go b/src/github.com/smira/aptly/deb/package_collection_test.go new file mode 100644 index 00000000..a444fec1 --- /dev/null +++ b/src/github.com/smira/aptly/deb/package_collection_test.go @@ -0,0 +1,205 @@ +package deb + +import ( + "github.com/smira/aptly/database" + "github.com/smira/aptly/utils" + . "launchpad.net/gocheck" +) + +type PackageCollectionSuite struct { + collection *PackageCollection + p *Package + db database.Storage +} + +var _ = Suite(&PackageCollectionSuite{}) + +func (s *PackageCollectionSuite) SetUpTest(c *C) { + s.p = NewPackageFromControlFile(packageStanza.Copy()) + s.db, _ = database.OpenDB(c.MkDir()) + s.collection = NewPackageCollection(s.db) +} + +func (s *PackageCollectionSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *PackageCollectionSuite) TestUpdate(c *C) { + // package doesn't exist, update ok + err := s.collection.Update(s.p) + c.Assert(err, IsNil) + res, err := s.collection.ByKey(s.p.Key("")) + c.Assert(err, IsNil) + c.Assert(res.Equals(s.p), Equals, true) + + // same package, ok + p2 := NewPackageFromControlFile(packageStanza.Copy()) + err = s.collection.Update(p2) + c.Assert(err, IsNil) + res, err = s.collection.ByKey(p2.Key("")) + c.Assert(err, IsNil) + c.Assert(res.Equals(s.p), Equals, true) + + // change some metadata + p2.Source = "lala" + err = s.collection.Update(p2) + c.Assert(err, IsNil) + res, err = s.collection.ByKey(p2.Key("")) + c.Assert(err, IsNil) + c.Assert(res.Equals(s.p), Equals, false) + c.Assert(res.Equals(p2), Equals, true) + + // change file info + p2 = NewPackageFromControlFile(packageStanza.Copy()) + p2.UpdateFiles(nil) + res, err = s.collection.ByKey(p2.Key("")) + err = s.collection.Update(p2) + c.Assert(err, ErrorMatches, ".*conflict with existing packge") + p2 = NewPackageFromControlFile(packageStanza.Copy()) + files := p2.Files() + files[0].Checksums.MD5 = "abcdef" + p2.UpdateFiles(files) + res, err = s.collection.ByKey(p2.Key("")) + err = s.collection.Update(p2) + c.Assert(err, ErrorMatches, ".*conflict with existing packge") +} + +func (s *PackageCollectionSuite) TestByKey(c *C) { + err := s.collection.Update(s.p) + c.Assert(err, IsNil) + + p2, err := s.collection.ByKey(s.p.Key("")) + c.Assert(err, IsNil) + c.Assert(p2.Equals(s.p), Equals, true) + + c.Check(p2.GetDependencies(0), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)"}) + c.Check(p2.Extra()["Priority"], Equals, "extra") + c.Check(p2.Files()[0].Filename, Equals, "alien-arena-common_7.40-2_i386.deb") +} + +func (s *PackageCollectionSuite) TestByKeyOld_0_3(c *C) { + key := []byte("Pi386 vmware-view-open-client 4.5.0-297975+dfsg-4+b1") + s.db.Put(key, old_0_3_Package) + + p, err := s.collection.ByKey(key) + c.Check(err, IsNil) + c.Check(p.Name, Equals, "vmware-view-open-client") + c.Check(p.Version, Equals, "4.5.0-297975+dfsg-4+b1") + c.Check(p.Architecture, Equals, "i386") + c.Check(p.Files(), DeepEquals, PackageFiles{ + PackageFile{Filename: "vmware-view-open-client_4.5.0-297975+dfsg-4+b1_i386.deb", + Checksums: utils.ChecksumInfo{ + Size: 520080, + MD5: "9c61b54e2638a18f955a695b9162d6af", + SHA1: "5b7c99e64a70f4f509bfa3a674088ff9cef68163", + SHA256: "4a9e4b2d9b3db13f9a29e522f3ffbb34eee96fc6f34a0647042ab1b5b0f2e04d"}}}) + c.Check(p.GetDependencies(0), DeepEquals, []string{"libatk1.0-0 (>= 1.12.4)", "libboost-signals1.49.0 (>= 1.49.0-1)", + "libc6 (>= 2.3.6-6~)", "libcairo2 (>= 1.2.4)", "libcurl3 (>= 7.18.0)", "libfontconfig1 (>= 2.8.0)", "libfreetype6 (>= 2.2.1)", + "libgcc1 (>= 1:4.1.1)", "libgdk-pixbuf2.0-0 (>= 2.22.0)", "libglib2.0-0 (>= 2.24.0)", "libgtk2.0-0 (>= 2.24.0)", + "libicu48 (>= 4.8-1)", "libpango1.0-0 (>= 1.14.0)", "libssl1.0.0 (>= 1.0.0)", "libstdc++6 (>= 4.6)", "libx11-6", + "libxml2 (>= 2.7.4)", "rdesktop"}) + c.Check(p.Extra()["Priority"], Equals, "optional") +} + +func (s *PackageCollectionSuite) TestAllPackageRefs(c *C) { + err := s.collection.Update(s.p) + c.Assert(err, IsNil) + + refs := s.collection.AllPackageRefs() + c.Check(refs.Len(), Equals, 1) + c.Check(refs.Refs[0], DeepEquals, s.p.Key("")) +} + +func (s *PackageCollectionSuite) TestDeleteByKey(c *C) { + err := s.collection.Update(s.p) + c.Assert(err, IsNil) + + _, err = s.db.Get(s.p.Key("")) + c.Check(err, IsNil) + + _, err = s.db.Get(s.p.Key("xD")) + c.Check(err, IsNil) + + _, err = s.db.Get(s.p.Key("xE")) + c.Check(err, IsNil) + + _, err = s.db.Get(s.p.Key("xF")) + c.Check(err, IsNil) + + err = s.collection.DeleteByKey(s.p.Key("")) + c.Check(err, IsNil) + + _, err = s.collection.ByKey(s.p.Key("")) + c.Check(err, ErrorMatches, "key not found") + + _, err = s.db.Get(s.p.Key("")) + c.Check(err, ErrorMatches, "key not found") + + _, err = s.db.Get(s.p.Key("xD")) + c.Check(err, ErrorMatches, "key not found") + + _, err = s.db.Get(s.p.Key("xE")) + c.Check(err, ErrorMatches, "key not found") + + _, err = s.db.Get(s.p.Key("xF")) + c.Check(err, ErrorMatches, "key not found") +} + +// This is old package (pre-0.4) that would habe to be converted +var old_0_3_Package = []byte{0x8f, 0xac, 0x41, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0xa4, 0x69, 0x33, 0x38, 0x36, + 0xac, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x73, 0xc0, 0xb1, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x44, 0x65, + 0x70, 0x65, 0x6e, 0x64, 0x73, 0x49, 0x6e, 0x44, 0x65, 0x70, 0xc0, 0xa7, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x73, 0xdc, 0x0, 0x12, + 0xb7, 0x6c, 0x69, 0x62, 0x61, 0x74, 0x6b, 0x31, 0x2e, 0x30, 0x2d, 0x30, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x31, 0x2e, 0x31, 0x32, 0x2e, + 0x34, 0x29, 0xda, 0x0, 0x24, 0x6c, 0x69, 0x62, 0x62, 0x6f, 0x6f, 0x73, 0x74, 0x2d, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x73, 0x31, + 0x2e, 0x34, 0x39, 0x2e, 0x30, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x31, 0x2e, 0x34, 0x39, 0x2e, 0x30, 0x2d, 0x31, 0x29, 0xb3, 0x6c, 0x69, + 0x62, 0x63, 0x36, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x32, 0x2e, 0x33, 0x2e, 0x36, 0x2d, 0x36, 0x7e, 0x29, 0xb4, 0x6c, 0x69, 0x62, 0x63, + 0x61, 0x69, 0x72, 0x6f, 0x32, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x31, 0x2e, 0x32, 0x2e, 0x34, 0x29, 0xb4, 0x6c, 0x69, 0x62, 0x63, 0x75, + 0x72, 0x6c, 0x33, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x37, 0x2e, 0x31, 0x38, 0x2e, 0x30, 0x29, 0xb9, 0x6c, 0x69, 0x62, 0x66, 0x6f, 0x6e, + 0x74, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x31, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x32, 0x2e, 0x38, 0x2e, 0x30, 0x29, 0xb7, 0x6c, 0x69, + 0x62, 0x66, 0x72, 0x65, 0x65, 0x74, 0x79, 0x70, 0x65, 0x36, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x32, 0x2e, 0x32, 0x2e, 0x31, 0x29, 0xb4, + 0x6c, 0x69, 0x62, 0x67, 0x63, 0x63, 0x31, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x31, 0x3a, 0x34, 0x2e, 0x31, 0x2e, 0x31, 0x29, 0xbe, 0x6c, + 0x69, 0x62, 0x67, 0x64, 0x6b, 0x2d, 0x70, 0x69, 0x78, 0x62, 0x75, 0x66, 0x32, 0x2e, 0x30, 0x2d, 0x30, 0x20, 0x28, 0x3e, 0x3d, 0x20, + 0x32, 0x2e, 0x32, 0x32, 0x2e, 0x30, 0x29, 0xb8, 0x6c, 0x69, 0x62, 0x67, 0x6c, 0x69, 0x62, 0x32, 0x2e, 0x30, 0x2d, 0x30, 0x20, 0x28, + 0x3e, 0x3d, 0x20, 0x32, 0x2e, 0x32, 0x34, 0x2e, 0x30, 0x29, 0xb7, 0x6c, 0x69, 0x62, 0x67, 0x74, 0x6b, 0x32, 0x2e, 0x30, 0x2d, 0x30, + 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x32, 0x2e, 0x32, 0x34, 0x2e, 0x30, 0x29, 0xb3, 0x6c, 0x69, 0x62, 0x69, 0x63, 0x75, 0x34, 0x38, 0x20, + 0x28, 0x3e, 0x3d, 0x20, 0x34, 0x2e, 0x38, 0x2d, 0x31, 0x29, 0xb9, 0x6c, 0x69, 0x62, 0x70, 0x61, 0x6e, 0x67, 0x6f, 0x31, 0x2e, 0x30, + 0x2d, 0x30, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x31, 0x2e, 0x31, 0x34, 0x2e, 0x30, 0x29, 0xb6, 0x6c, 0x69, 0x62, 0x73, 0x73, 0x6c, 0x31, + 0x2e, 0x30, 0x2e, 0x30, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x31, 0x2e, 0x30, 0x2e, 0x30, 0x29, 0xb3, 0x6c, 0x69, 0x62, 0x73, 0x74, 0x64, + 0x63, 0x2b, 0x2b, 0x36, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x34, 0x2e, 0x36, 0x29, 0xa8, 0x6c, 0x69, 0x62, 0x78, 0x31, 0x31, 0x2d, 0x36, + 0xb2, 0x6c, 0x69, 0x62, 0x78, 0x6d, 0x6c, 0x32, 0x20, 0x28, 0x3e, 0x3d, 0x20, 0x32, 0x2e, 0x37, 0x2e, 0x34, 0x29, 0xa8, 0x72, 0x64, + 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0xa5, 0x45, 0x78, 0x74, 0x72, 0x61, 0x88, 0xa3, 0x54, 0x61, 0x67, 0xbd, 0x72, 0x6f, 0x6c, 0x65, + 0x3a, 0x3a, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x2c, 0x20, 0x75, 0x69, 0x74, 0x6f, 0x6f, 0x6c, 0x6b, 0x69, 0x74, 0x3a, 0x3a, + 0x67, 0x74, 0x6b, 0xa8, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0xa8, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0xaa, + 0x4d, 0x61, 0x69, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0xda, 0x0, 0x28, 0x44, 0x65, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x51, 0x41, + 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x40, 0x71, 0x61, 0x2e, 0x64, 0x65, + 0x62, 0x69, 0x61, 0x6e, 0x2e, 0x6f, 0x72, 0x67, 0x3e, 0xa8, 0x48, 0x6f, 0x6d, 0x65, 0x70, 0x61, 0x67, 0x65, 0xda, 0x0, 0x30, 0x68, + 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x70, 0x2f, 0x76, 0x6d, 0x77, 0x61, 0x72, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x2d, 0x63, 0x6c, 0x69, + 0x65, 0x6e, 0x74, 0xaf, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x6d, 0x64, 0x35, 0xda, 0x0, 0x20, + 0x62, 0x34, 0x34, 0x64, 0x34, 0x39, 0x62, 0x34, 0x37, 0x61, 0x65, 0x30, 0x35, 0x35, 0x32, 0x63, 0x62, 0x66, 0x61, 0x64, 0x32, 0x31, + 0x30, 0x64, 0x65, 0x32, 0x31, 0x63, 0x64, 0x65, 0x31, 0x39, 0xa7, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0xab, 0x63, 0x6f, 0x6e, + 0x74, 0x72, 0x69, 0x62, 0x2f, 0x78, 0x31, 0x31, 0xae, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x2d, 0x53, 0x69, 0x7a, + 0x65, 0xa4, 0x31, 0x34, 0x35, 0x39, 0xab, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0xb9, 0x20, 0x56, 0x4d, + 0x77, 0x61, 0x72, 0x65, 0x20, 0x56, 0x69, 0x65, 0x77, 0x20, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0xa, + 0xa5, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x91, 0x82, 0xa9, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x73, 0x84, 0xa3, 0x4d, 0x44, + 0x35, 0xda, 0x0, 0x20, 0x39, 0x63, 0x36, 0x31, 0x62, 0x35, 0x34, 0x65, 0x32, 0x36, 0x33, 0x38, 0x61, 0x31, 0x38, 0x66, 0x39, 0x35, + 0x35, 0x61, 0x36, 0x39, 0x35, 0x62, 0x39, 0x31, 0x36, 0x32, 0x64, 0x36, 0x61, 0x66, 0xa4, 0x53, 0x48, 0x41, 0x31, 0xda, 0x0, 0x28, + 0x35, 0x62, 0x37, 0x63, 0x39, 0x39, 0x65, 0x36, 0x34, 0x61, 0x37, 0x30, 0x66, 0x34, 0x66, 0x35, 0x30, 0x39, 0x62, 0x66, 0x61, 0x33, + 0x61, 0x36, 0x37, 0x34, 0x30, 0x38, 0x38, 0x66, 0x66, 0x39, 0x63, 0x65, 0x66, 0x36, 0x38, 0x31, 0x36, 0x33, 0xa6, 0x53, 0x48, 0x41, + 0x32, 0x35, 0x36, 0xda, 0x0, 0x40, 0x34, 0x61, 0x39, 0x65, 0x34, 0x62, 0x32, 0x64, 0x39, 0x62, 0x33, 0x64, 0x62, 0x31, 0x33, 0x66, + 0x39, 0x61, 0x32, 0x39, 0x65, 0x35, 0x32, 0x32, 0x66, 0x33, 0x66, 0x66, 0x62, 0x62, 0x33, 0x34, 0x65, 0x65, 0x65, 0x39, 0x36, 0x66, + 0x63, 0x36, 0x66, 0x33, 0x34, 0x61, 0x30, 0x36, 0x34, 0x37, 0x30, 0x34, 0x32, 0x61, 0x62, 0x31, 0x62, 0x35, 0x62, 0x30, 0x66, 0x32, + 0x65, 0x30, 0x34, 0x64, 0xa4, 0x53, 0x69, 0x7a, 0x65, 0xce, 0x0, 0x7, 0xef, 0x90, 0xa8, 0x46, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, + 0x65, 0xda, 0x0, 0x5e, 0x70, 0x6f, 0x6f, 0x6c, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x69, 0x62, 0x2f, 0x76, 0x2f, 0x76, 0x6d, 0x77, + 0x61, 0x72, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x2d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2f, 0x76, + 0x6d, 0x77, 0x61, 0x72, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x2d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, + 0x5f, 0x34, 0x2e, 0x35, 0x2e, 0x30, 0x2d, 0x32, 0x39, 0x37, 0x39, 0x37, 0x35, 0x2b, 0x64, 0x66, 0x73, 0x67, 0x2d, 0x34, 0x2b, 0x62, + 0x31, 0x5f, 0x69, 0x33, 0x38, 0x36, 0x2e, 0x64, 0x65, 0x62, 0xa8, 0x49, 0x73, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0xc2, 0xa4, 0x4e, + 0x61, 0x6d, 0x65, 0xb7, 0x76, 0x6d, 0x77, 0x61, 0x72, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x2d, 0x63, + 0x6c, 0x69, 0x65, 0x6e, 0x74, 0xaa, 0x50, 0x72, 0x65, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x73, 0xc0, 0xa8, 0x50, 0x72, 0x6f, 0x76, + 0x69, 0x64, 0x65, 0x73, 0xc0, 0xaa, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x73, 0xc0, 0xa6, 0x53, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0xda, 0x0, 0x2d, 0x76, 0x6d, 0x77, 0x61, 0x72, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x2d, + 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x28, 0x34, 0x2e, 0x35, 0x2e, 0x30, 0x2d, 0x32, 0x39, 0x37, 0x39, 0x37, 0x35, 0x2b, 0x64, + 0x66, 0x73, 0x67, 0x2d, 0x34, 0x29, 0xb2, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, + 0x75, 0x72, 0x65, 0xa0, 0xa8, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x73, 0xc0, 0xa7, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0xb6, 0x34, 0x2e, 0x35, 0x2e, 0x30, 0x2d, 0x32, 0x39, 0x37, 0x39, 0x37, 0x35, 0x2b, 0x64, 0x66, 0x73, 0x67, 0x2d, 0x34, 0x2b, 0x62, 0x31} diff --git a/src/github.com/smira/aptly/deb/package_deps.go b/src/github.com/smira/aptly/deb/package_deps.go new file mode 100644 index 00000000..097709db --- /dev/null +++ b/src/github.com/smira/aptly/deb/package_deps.go @@ -0,0 +1,30 @@ +package deb + +import ( + "strings" +) + +// PackageDependencies are various parsed dependencies +type PackageDependencies struct { + Depends []string + BuildDepends []string + BuildDependsInDep []string + PreDepends []string + Suggests []string + Recommends []string +} + +func parseDependencies(input Stanza, key string) []string { + value, ok := input[key] + if !ok { + return nil + } + + delete(input, key) + + result := strings.Split(value, ",") + for i := range result { + result[i] = strings.TrimSpace(result[i]) + } + return result +} diff --git a/src/github.com/smira/aptly/deb/package_files.go b/src/github.com/smira/aptly/deb/package_files.go new file mode 100644 index 00000000..31a37cbe --- /dev/null +++ b/src/github.com/smira/aptly/deb/package_files.go @@ -0,0 +1,78 @@ +package deb + +import ( + "encoding/binary" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/utils" + "hash/fnv" + "os" + "path/filepath" + "sort" +) + +// PackageFile is a single file entry in package +type PackageFile struct { + // Filename is name of file for the package (without directory) + Filename string + // Hashes for the file + Checksums utils.ChecksumInfo + // Temporary field used while downloading, stored relative path on the mirror + downloadPath string +} + +// Verify that package file is present and correct +func (f *PackageFile) Verify(packagePool aptly.PackagePool) (bool, error) { + poolPath, err := packagePool.Path(f.Filename, f.Checksums.MD5) + if err != nil { + return false, err + } + + st, err := os.Stat(poolPath) + if err != nil { + return false, nil + } + + // verify size + // TODO: verify checksum if configured + return st.Size() == f.Checksums.Size, nil +} + +// DownloadURL return relative URL to package download location +func (f *PackageFile) DownloadURL() string { + return filepath.Join(f.downloadPath, f.Filename) +} + +// PackageFiles is collection of package files +type PackageFiles []PackageFile + +// Hash compute hash of all file items, sorting them first +func (files PackageFiles) Hash() uint64 { + sort.Sort(files) + + h := fnv.New64a() + + for _, f := range files { + h.Write([]byte(f.Filename)) + binary.Write(h, binary.BigEndian, f.Checksums.Size) + h.Write([]byte(f.Checksums.MD5)) + h.Write([]byte(f.Checksums.SHA1)) + h.Write([]byte(f.Checksums.SHA256)) + } + + return h.Sum64() +} + +// Len returns number of files +func (files PackageFiles) Len() int { + return len(files) +} + +// Swap swaps elements +func (files PackageFiles) Swap(i, j int) { + files[i], files[j] = files[j], files[i] +} + +// Less compares by filename +func (files PackageFiles) Less(i, j int) bool { + return files[i].Filename < files[j].Filename +} diff --git a/src/github.com/smira/aptly/deb/package_files_test.go b/src/github.com/smira/aptly/deb/package_files_test.go new file mode 100644 index 00000000..6b2adb39 --- /dev/null +++ b/src/github.com/smira/aptly/deb/package_files_test.go @@ -0,0 +1,61 @@ +package deb + +import ( + "github.com/smira/aptly/files" + "github.com/smira/aptly/utils" + . "launchpad.net/gocheck" + "os" + "path/filepath" +) + +type PackageFilesSuite struct { + files PackageFiles +} + +var _ = Suite(&PackageFilesSuite{}) + +func (s *PackageFilesSuite) SetUpTest(c *C) { + s.files = PackageFiles{PackageFile{ + Filename: "alien-arena-common_7.40-2_i386.deb", + downloadPath: "pool/contrib/a/alien-arena", + Checksums: utils.ChecksumInfo{ + Size: 187518, + MD5: "1e8cba92c41420aa7baa8a5718d67122", + SHA1: "46955e48cad27410a83740a21d766ce362364024", + SHA256: "eb4afb9885cba6dc70cccd05b910b2dbccc02c5900578be5e99f0d3dbf9d76a5", + }}} +} + +func (s *PackageFilesSuite) TestVerify(c *C) { + packagePool := files.NewPackagePool(c.MkDir()) + poolPath, _ := packagePool.Path(s.files[0].Filename, s.files[0].Checksums.MD5) + + result, err := s.files[0].Verify(packagePool) + c.Check(err, IsNil) + c.Check(result, Equals, false) + + err = os.MkdirAll(filepath.Dir(poolPath), 0755) + c.Assert(err, IsNil) + + file, err := os.Create(poolPath) + c.Assert(err, IsNil) + file.WriteString("abcde") + file.Close() + + result, err = s.files[0].Verify(packagePool) + c.Check(err, IsNil) + c.Check(result, Equals, false) + + s.files[0].Checksums.Size = 5 + result, err = s.files[0].Verify(packagePool) + c.Check(err, IsNil) + c.Check(result, Equals, true) +} + +func (s *PackageFilesSuite) TestDownloadURL(c *C) { + c.Check(s.files[0].DownloadURL(), Equals, "pool/contrib/a/alien-arena/alien-arena-common_7.40-2_i386.deb") +} + +func (s *PackageFilesSuite) TestHash(c *C) { + c.Check(s.files.Hash(), Equals, uint64(0xc8901eedd79ac51b)) +} diff --git a/src/github.com/smira/aptly/deb/package_test.go b/src/github.com/smira/aptly/deb/package_test.go new file mode 100644 index 00000000..0105d4b7 --- /dev/null +++ b/src/github.com/smira/aptly/deb/package_test.go @@ -0,0 +1,361 @@ +package deb + +import ( + "bytes" + "github.com/smira/aptly/files" + "github.com/smira/aptly/utils" + . "launchpad.net/gocheck" + "os" + "path/filepath" +) + +type PackageSuite struct { + stanza Stanza + sourceStanza Stanza +} + +var _ = Suite(&PackageSuite{}) + +func (s *PackageSuite) SetUpTest(c *C) { + s.stanza = packageStanza.Copy() + + buf := bytes.NewBufferString(sourcePackageMeta) + s.sourceStanza, _ = NewControlFileReader(buf).ReadStanza() +} + +func (s *PackageSuite) TestNewFromPara(c *C) { + p := NewPackageFromControlFile(s.stanza) + + c.Check(p.IsSource, Equals, false) + c.Check(p.Name, Equals, "alien-arena-common") + c.Check(p.Version, Equals, "7.40-2") + c.Check(p.Architecture, Equals, "i386") + c.Check(p.Provides, DeepEquals, []string(nil)) + c.Check(p.Files(), HasLen, 1) + c.Check(p.Files()[0].Filename, Equals, "alien-arena-common_7.40-2_i386.deb") + c.Check(p.Files()[0].downloadPath, Equals, "pool/contrib/a/alien-arena") + c.Check(p.Files()[0].Checksums.Size, Equals, int64(187518)) + c.Check(p.Files()[0].Checksums.MD5, Equals, "1e8cba92c41420aa7baa8a5718d67122") + c.Check(p.deps.Depends, DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)"}) +} + +func (s *PackageSuite) TestNewSourceFromPara(c *C) { + p, err := NewSourcePackageFromControlFile(s.sourceStanza) + + c.Check(err, IsNil) + c.Check(p.IsSource, Equals, true) + c.Check(p.Name, Equals, "access-modifier-checker") + c.Check(p.Version, Equals, "1.0-4") + c.Check(p.Architecture, Equals, "source") + c.Check(p.SourceArchitecture, Equals, "all") + c.Check(p.Provides, IsNil) + c.Check(p.deps.BuildDepends, DeepEquals, []string{"cdbs", "debhelper (>= 7)", "default-jdk", "maven-debian-helper"}) + c.Check(p.deps.BuildDependsInDep, DeepEquals, []string{"default-jdk-doc", "junit (>= 3.8.1)", "libannotation-indexer-java (>= 1.3)", "libannotation-indexer-java-doc", "libasm3-java", "libmaven-install-plugin-java", "libmaven-javadoc-plugin-java", "libmaven-scm-java", "libmaven2-core-java", "libmaven2-core-java-doc", "libmetainf-services-java", "libmetainf-services-java-doc", "libmaven-plugin-tools-java (>= 2.8)"}) + c.Check(p.Files(), HasLen, 3) + + c.Check(p.Files()[0].Filename, Equals, "access-modifier-checker_1.0-4.debian.tar.gz") + c.Check(p.Files()[0].downloadPath, Equals, "pool/main/a/access-modifier-checker") + + c.Check(p.Files()[1].Filename, Equals, "access-modifier-checker_1.0-4.dsc") + c.Check(p.Files()[1].downloadPath, Equals, "pool/main/a/access-modifier-checker") + c.Check(p.Files()[1].Checksums.Size, Equals, int64(3)) + c.Check(p.Files()[1].Checksums.MD5, Equals, "900150983cd24fb0d6963f7d28e17f72") + c.Check(p.Files()[1].Checksums.SHA1, Equals, "a9993e364706816aba3e25717850c26c9cd0d89d") + c.Check(p.Files()[1].Checksums.SHA256, Equals, "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad") + + c.Check(p.Files()[2].Filename, Equals, "access-modifier-checker_1.0.orig.tar.gz") + c.Check(p.Files()[2].downloadPath, Equals, "pool/main/a/access-modifier-checker") + c.Check(p.Files()[2].Checksums.Size, Equals, int64(4)) + c.Check(p.Files()[2].Checksums.MD5, Equals, "e2fc714c4727ee9395f324cd2e7f331f") + c.Check(p.Files()[2].Checksums.SHA1, Equals, "81fe8bfe87576c3ecb22426f8e57847382917acf") + c.Check(p.Files()[2].Checksums.SHA256, Equals, "88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589") + + c.Check(p.deps.Depends, IsNil) +} + +func (s *PackageSuite) TestWithProvides(c *C) { + s.stanza["Provides"] = "arena" + p := NewPackageFromControlFile(s.stanza) + + c.Check(p.Name, Equals, "alien-arena-common") + c.Check(p.Provides, DeepEquals, []string{"arena"}) + + st := p.Stanza() + c.Check(st["Provides"], Equals, "arena") +} + +func (s *PackageSuite) TestKey(c *C) { + p := NewPackageFromControlFile(s.stanza) + + c.Check(p.Key(""), DeepEquals, []byte("Pi386 alien-arena-common 7.40-2")) + c.Check(p.Key("xD"), DeepEquals, []byte("xDPi386 alien-arena-common 7.40-2")) +} + +func (s *PackageSuite) TestStanza(c *C) { + p := NewPackageFromControlFile(s.stanza.Copy()) + stanza := p.Stanza() + + c.Assert(stanza, DeepEquals, s.stanza) + + p, _ = NewSourcePackageFromControlFile(s.sourceStanza.Copy()) + stanza = p.Stanza() + + c.Assert(stanza, DeepEquals, s.sourceStanza) +} + +func (s *PackageSuite) TestString(c *C) { + p := NewPackageFromControlFile(s.stanza) + c.Assert(p.String(), Equals, "alien-arena-common_7.40-2_i386") +} + +func (s *PackageSuite) TestEquals(c *C) { + p := NewPackageFromControlFile(s.stanza) + + p2 := NewPackageFromControlFile(packageStanza.Copy()) + c.Check(p.Equals(p2), Equals, true) + + p2.deps.Depends = []string{"package1"} + c.Check(p.Equals(p2), Equals, true) // strange, but Equals doesn't check deep + + p2 = NewPackageFromControlFile(packageStanza.Copy()) + files := p2.Files() + files[0].Checksums.MD5 = "abcdefabcdef" + p2.UpdateFiles(files) + c.Check(p.Equals(p2), Equals, false) + + so, _ := NewSourcePackageFromControlFile(s.sourceStanza.Copy()) + so2, _ := NewSourcePackageFromControlFile(s.sourceStanza.Copy()) + + c.Check(so.Equals(so2), Equals, true) + + files = so2.Files() + files[2].Checksums.MD5 = "abcde" + so2.UpdateFiles(files) + c.Check(so.Equals(so2), Equals, false) + + so2, _ = NewSourcePackageFromControlFile(s.sourceStanza.Copy()) + files = so2.Files() + files[1].Filename = "other.deb" + so2.UpdateFiles(files) + c.Check(so.Equals(so2), Equals, false) +} + +func (s *PackageSuite) TestMatchesArchitecture(c *C) { + p := NewPackageFromControlFile(s.stanza) + c.Check(p.MatchesArchitecture("i386"), Equals, true) + c.Check(p.MatchesArchitecture("amd64"), Equals, false) + + s.stanza = packageStanza.Copy() + s.stanza["Architecture"] = "all" + p = NewPackageFromControlFile(s.stanza) + c.Check(p.MatchesArchitecture("i386"), Equals, true) + c.Check(p.MatchesArchitecture("amd64"), Equals, true) + c.Check(p.MatchesArchitecture("source"), Equals, false) + + p, _ = NewSourcePackageFromControlFile(s.sourceStanza) + c.Check(p.MatchesArchitecture("source"), Equals, true) + c.Check(p.MatchesArchitecture("amd64"), Equals, false) +} + +func (s *PackageSuite) TestMatchesDependency(c *C) { + p := NewPackageFromControlFile(s.stanza) + + // exact match + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionEqual, Version: "7.40-2"}), Equals, true) + + // different name + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena", Architecture: "i386", Relation: VersionEqual, Version: "7.40-2"}), Equals, false) + + // different version + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionEqual, Version: "7.40-3"}), Equals, false) + + // different arch + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "amd64", Relation: VersionEqual, Version: "7.40-2"}), Equals, false) + + // empty arch + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "", Relation: VersionEqual, Version: "7.40-2"}), Equals, true) + + // version don't care + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionDontCare, Version: ""}), Equals, true) + + // > + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionGreater, Version: "7.40-2"}), Equals, false) + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionGreater, Version: "7.40-1"}), Equals, true) + + // < + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionLess, Version: "7.40-2"}), Equals, false) + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionLess, Version: "7.40-3"}), Equals, true) + + // >= + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionGreaterOrEqual, Version: "7.40-2"}), Equals, true) + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionGreaterOrEqual, Version: "7.40-3"}), Equals, false) + + // <= + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionLessOrEqual, Version: "7.40-2"}), Equals, true) + c.Check(p.MatchesDependency(Dependency{Pkg: "alien-arena-common", Architecture: "i386", Relation: VersionLessOrEqual, Version: "7.40-1"}), Equals, false) +} + +func (s *PackageSuite) TestGetDependencies(c *C) { + p := NewPackageFromControlFile(s.stanza) + c.Check(p.GetDependencies(0), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)"}) + c.Check(p.GetDependencies(DepFollowSuggests), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)", "alien-arena-mars"}) + c.Check(p.GetDependencies(DepFollowSuggests|DepFollowRecommends), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)", "aliean-arena-luna", "alien-arena-mars"}) + + c.Check(p.GetDependencies(DepFollowSource), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)", "alien-arena (= 7.40-2) {source}"}) + p.Source = "alien-arena (7.40-3)" + c.Check(p.GetDependencies(DepFollowSource), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)", "alien-arena (7.40-3) {source}"}) + p.Source = "" + c.Check(p.GetDependencies(DepFollowSource), DeepEquals, []string{"libc6 (>= 2.7)", "alien-arena-data (>= 7.40)", "dpkg (>= 1.6)", "alien-arena-common (= 7.40-2) {source}"}) + + p, _ = NewSourcePackageFromControlFile(s.sourceStanza) + c.Check(p.GetDependencies(0), DeepEquals, []string{}) + c.Check(p.GetDependencies(DepFollowBuild), DeepEquals, []string{"cdbs", "debhelper (>= 7)", "default-jdk", "maven-debian-helper", "default-jdk-doc", "junit (>= 3.8.1)", "libannotation-indexer-java (>= 1.3)", "libannotation-indexer-java-doc", "libasm3-java", "libmaven-install-plugin-java", "libmaven-javadoc-plugin-java", "libmaven-scm-java", "libmaven2-core-java", "libmaven2-core-java-doc", "libmetainf-services-java", "libmetainf-services-java-doc", "libmaven-plugin-tools-java (>= 2.8)"}) +} + +func (s *PackageSuite) TestPoolDirectory(c *C) { + p := NewPackageFromControlFile(s.stanza) + dir, err := p.PoolDirectory() + c.Check(err, IsNil) + c.Check(dir, Equals, "a/alien-arena") + + p = NewPackageFromControlFile(packageStanza.Copy()) + p.Source = "" + dir, err = p.PoolDirectory() + c.Check(err, IsNil) + c.Check(dir, Equals, "a/alien-arena-common") + + p = NewPackageFromControlFile(packageStanza.Copy()) + p.Source = "libarena" + dir, err = p.PoolDirectory() + c.Check(err, IsNil) + c.Check(dir, Equals, "liba/libarena") + + p = NewPackageFromControlFile(packageStanza.Copy()) + p.Source = "l" + _, err = p.PoolDirectory() + c.Check(err, ErrorMatches, ".* too short") +} + +func (s *PackageSuite) TestLinkFromPool(c *C) { + packagePool := files.NewPackagePool(c.MkDir()) + publishedStorage := files.NewPublishedStorage(c.MkDir()) + p := NewPackageFromControlFile(s.stanza) + + poolPath, _ := packagePool.Path(p.Files()[0].Filename, p.Files()[0].Checksums.MD5) + err := os.MkdirAll(filepath.Dir(poolPath), 0755) + c.Assert(err, IsNil) + + file, err := os.Create(poolPath) + c.Assert(err, IsNil) + file.Close() + + err = p.LinkFromPool(publishedStorage, packagePool, "", "non-free") + c.Check(err, IsNil) + c.Check(p.Files()[0].Filename, Equals, "alien-arena-common_7.40-2_i386.deb") + c.Check(p.Files()[0].downloadPath, Equals, "pool/non-free/a/alien-arena") + + p.IsSource = true + err = p.LinkFromPool(publishedStorage, packagePool, "", "non-free") + c.Check(err, IsNil) + c.Check(p.Extra()["Directory"], Equals, "pool/non-free/a/alien-arena") +} + +func (s *PackageSuite) TestFilepathList(c *C) { + packagePool := files.NewPackagePool(c.MkDir()) + p := NewPackageFromControlFile(s.stanza) + + list, err := p.FilepathList(packagePool) + c.Check(err, IsNil) + c.Check(list, DeepEquals, []string{"1e/8c/alien-arena-common_7.40-2_i386.deb"}) +} + +func (s *PackageSuite) TestDownloadList(c *C) { + packagePool := files.NewPackagePool(c.MkDir()) + p := NewPackageFromControlFile(s.stanza) + p.Files()[0].Checksums.Size = 5 + poolPath, _ := packagePool.Path(p.Files()[0].Filename, p.Files()[0].Checksums.MD5) + + list, err := p.DownloadList(packagePool) + c.Check(err, IsNil) + c.Check(list, DeepEquals, []PackageDownloadTask{ + PackageDownloadTask{ + RepoURI: "pool/contrib/a/alien-arena/alien-arena-common_7.40-2_i386.deb", + DestinationPath: poolPath, + Checksums: utils.ChecksumInfo{Size: 5, + MD5: "1e8cba92c41420aa7baa8a5718d67122", + SHA1: "46955e48cad27410a83740a21d766ce362364024", + SHA256: "eb4afb9885cba6dc70cccd05b910b2dbccc02c5900578be5e99f0d3dbf9d76a5"}}}) + + err = os.MkdirAll(filepath.Dir(poolPath), 0755) + c.Assert(err, IsNil) + + file, err := os.Create(poolPath) + c.Assert(err, IsNil) + file.WriteString("abcde") + file.Close() + + list, err = p.DownloadList(packagePool) + c.Check(err, IsNil) + c.Check(list, DeepEquals, []PackageDownloadTask{}) +} + +func (s *PackageSuite) TestVerifyFiles(c *C) { + p := NewPackageFromControlFile(s.stanza) + + packagePool := files.NewPackagePool(c.MkDir()) + poolPath, _ := packagePool.Path(p.Files()[0].Filename, p.Files()[0].Checksums.MD5) + + err := os.MkdirAll(filepath.Dir(poolPath), 0755) + c.Assert(err, IsNil) + + file, err := os.Create(poolPath) + c.Assert(err, IsNil) + file.WriteString("abcde") + file.Close() + + result, err := p.VerifyFiles(packagePool) + c.Check(err, IsNil) + c.Check(result, Equals, false) + + p.Files()[0].Checksums.Size = 5 + + result, err = p.VerifyFiles(packagePool) + c.Check(err, IsNil) + c.Check(result, Equals, true) +} + +var packageStanza = Stanza{"Source": "alien-arena", "Pre-Depends": "dpkg (>= 1.6)", "Suggests": "alien-arena-mars", "Recommends": "aliean-arena-luna", "Depends": "libc6 (>= 2.7), alien-arena-data (>= 7.40)", "Filename": "pool/contrib/a/alien-arena/alien-arena-common_7.40-2_i386.deb", "SHA1": " 46955e48cad27410a83740a21d766ce362364024", "SHA256": " eb4afb9885cba6dc70cccd05b910b2dbccc02c5900578be5e99f0d3dbf9d76a5", "Priority": "extra", "Maintainer": "Debian Games Team ", "Description": "Common files for Alien Arena client and server ALIEN ARENA is a standalone 3D first person online deathmatch shooter\n crafted from the original source code of Quake II and Quake III, released\n by id Software under the GPL license. With features including 32 bit\n graphics, new particle engine and effects, light blooms, reflective water,\n hi resolution textures and skins, hi poly models, stain maps, ALIEN ARENA\n pushes the envelope of graphical beauty rivaling today's top games.\n .\n This package installs the common files for Alien Arena.\n", "Homepage": "http://red.planetarena.org", "Tag": "role::app-data, role::shared-lib, special::auto-inst-parts", "Installed-Size": "456", "Version": "7.40-2", "Replaces": "alien-arena (<< 7.33-1)", "Size": "187518", "MD5sum": "1e8cba92c41420aa7baa8a5718d67122", "Package": "alien-arena-common", "Section": "contrib/games", "Architecture": "i386"} + +const sourcePackageMeta = `Package: access-modifier-checker +Binary: libaccess-modifier-checker-java, libaccess-modifier-checker-java-doc +Version: 1.0-4 +Maintainer: Debian Java Maintainers +Uploaders: James Page +Build-Depends: cdbs, debhelper (>= 7), default-jdk, maven-debian-helper +Build-Depends-Indep: default-jdk-doc, junit (>= 3.8.1), libannotation-indexer-java (>= 1.3), libannotation-indexer-java-doc, libasm3-java, libmaven-install-plugin-java, libmaven-javadoc-plugin-java, libmaven-scm-java, libmaven2-core-java, libmaven2-core-java-doc, libmetainf-services-java, libmetainf-services-java-doc, libmaven-plugin-tools-java (>= 2.8) +Architecture: all +Standards-Version: 3.9.3 +Format: 3.0 (quilt) +Files: + ab56b4d92b40713acc5af89985d4b786 5 access-modifier-checker_1.0-4.debian.tar.gz + 900150983cd24fb0d6963f7d28e17f72 3 access-modifier-checker_1.0-4.dsc + e2fc714c4727ee9395f324cd2e7f331f 4 access-modifier-checker_1.0.orig.tar.gz +Dm-Upload-Allowed: yes +Vcs-Browser: http://git.debian.org/?p=pkg-java/access-modifier-checker.git +Vcs-Git: git://git.debian.org/git/pkg-java/access-modifier-checker.git +Checksums-Sha1: + 03de6c570bfe24bfc328ccd7ca46b76eadaf4334 5 access-modifier-checker_1.0-4.debian.tar.gz + a9993e364706816aba3e25717850c26c9cd0d89d 3 access-modifier-checker_1.0-4.dsc + 81fe8bfe87576c3ecb22426f8e57847382917acf 4 access-modifier-checker_1.0.orig.tar.gz +Checksums-Sha256: + 36bbe50ed96841d10443bcb670d6554f0a34b761be67ec9c4a8ad2c0c44ca42c 5 access-modifier-checker_1.0-4.debian.tar.gz + ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad 3 access-modifier-checker_1.0-4.dsc + 88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589 4 access-modifier-checker_1.0.orig.tar.gz +Homepage: https://github.com/kohsuke/access-modifier +Package-List: + libaccess-modifier-checker-java deb java optional + libaccess-modifier-checker-java-doc deb doc optional +Directory: pool/main/a/access-modifier-checker +Priority: source +Section: java +` diff --git a/src/github.com/smira/aptly/deb/ppa.go b/src/github.com/smira/aptly/deb/ppa.go new file mode 100644 index 00000000..3d45858b --- /dev/null +++ b/src/github.com/smira/aptly/deb/ppa.go @@ -0,0 +1,54 @@ +package deb + +import ( + "fmt" + "github.com/smira/aptly/utils" + "os/exec" + "regexp" + "strings" +) + +var ppaRegexp = regexp.MustCompile("^ppa:([^/]+)/(.+)$") + +// ParsePPA converts ppa URL like ppa:user/ppa-name to full HTTP url +func ParsePPA(ppaURL string, config *utils.ConfigStructure) (url string, distribution string, components []string, err error) { + matches := ppaRegexp.FindStringSubmatch(ppaURL) + if matches == nil { + err = fmt.Errorf("unable to parse ppa URL: %v", ppaURL) + return + } + + distributorID := config.PpaDistributorID + if distributorID == "" { + distributorID, err = getDistributorID() + if err != nil { + err = fmt.Errorf("unable to figure out Distributor ID: %s, please set config option ppaDistributorID", err) + return + } + } + + codename := config.PpaCodename + if codename == "" { + codename, err = getCodename() + if err != nil { + err = fmt.Errorf("unable to figure out Codename: %s, please set config option ppaCodename", err) + return + } + } + + distribution = codename + components = []string{"main"} + url = fmt.Sprintf("http://ppa.launchpad.net/%s/%s/%s", matches[1], matches[2], distributorID) + + return +} + +func getCodename() (string, error) { + out, err := exec.Command("lsb_release", "-sc").Output() + return strings.TrimSpace(string(out)), err +} + +func getDistributorID() (string, error) { + out, err := exec.Command("lsb_release", "-si").Output() + return strings.ToLower(strings.TrimSpace(string(out))), err +} diff --git a/src/github.com/smira/aptly/deb/ppa_test.go b/src/github.com/smira/aptly/deb/ppa_test.go new file mode 100644 index 00000000..99467ce7 --- /dev/null +++ b/src/github.com/smira/aptly/deb/ppa_test.go @@ -0,0 +1,26 @@ +package deb + +import ( + "github.com/smira/aptly/utils" + . "launchpad.net/gocheck" +) + +type PpaSuite struct { + config utils.ConfigStructure +} + +var _ = Suite(&PpaSuite{}) + +func (s *PpaSuite) TestParsePPA(c *C) { + _, _, _, err := ParsePPA("ppa:dedeed", &s.config) + c.Check(err, ErrorMatches, "unable to parse ppa URL.*") + + s.config.PpaDistributorID = "debian" + s.config.PpaCodename = "wheezy" + + url, distribution, components, err := ParsePPA("ppa:user/project", &s.config) + c.Check(err, IsNil) + c.Check(url, Equals, "http://ppa.launchpad.net/user/project/debian") + c.Check(distribution, Equals, "wheezy") + c.Check(components, DeepEquals, []string{"main"}) +} diff --git a/src/github.com/smira/aptly/deb/publish.go b/src/github.com/smira/aptly/deb/publish.go new file mode 100644 index 00000000..08a5e80e --- /dev/null +++ b/src/github.com/smira/aptly/deb/publish.go @@ -0,0 +1,794 @@ +package deb + +import ( + "bufio" + "bytes" + "code.google.com/p/go-uuid/uuid" + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/database" + "github.com/smira/aptly/utils" + "github.com/ugorji/go/codec" + "log" + "os" + "path/filepath" + "sort" + "strings" + "time" +) + +// PublishedRepo is a published for http/ftp representation of snapshot as Debian repository +type PublishedRepo struct { + // Internal unique ID + UUID string + // Prefix & distribution should be unique across all published repositories + Prefix string + Distribution string + Component string + Origin string + Label string + // Architectures is a list of all architectures published + Architectures []string + // SourceKind is "local"/"repo" + SourceKind string + // SourceUUID is UUID of either snapshot or local repo + SourceUUID string `codec:"SnapshotUUID"` + + // Pointer to snapshot if SourceKind == "snapshot" + snapshot *Snapshot + // Pointer to local repo if SourceKind == "local" + localRepo *LocalRepo + // Package references is SourceKind == "local" + packageRefs *PackageRefList + // True if repo is being re-published + rePublishing bool +} + +// NewPublishedRepo creates new published repository +// +// prefix specifies publishing prefix +// distribution, component and architectures are user-defined properties +// source could either be *Snapshot or *LocalRepo +func NewPublishedRepo(prefix string, distribution string, component string, architectures []string, source interface{}, collectionFactory *CollectionFactory) (*PublishedRepo, error) { + var ok bool + + result := &PublishedRepo{ + UUID: uuid.New(), + Architectures: architectures, + } + + // figure out source + result.snapshot, ok = source.(*Snapshot) + if ok { + result.SourceKind = "snapshot" + result.SourceUUID = result.snapshot.UUID + } else { + result.localRepo, ok = source.(*LocalRepo) + if ok { + result.SourceKind = "local" + result.SourceUUID = result.localRepo.UUID + result.packageRefs = result.localRepo.RefList() + } else { + panic("unknown source kind") + } + } + + // clean & verify prefix + prefix = filepath.Clean(prefix) + if strings.HasPrefix(prefix, "/") { + prefix = prefix[1:] + } + if strings.HasSuffix(prefix, "/") { + prefix = prefix[:len(prefix)-1] + } + prefix = filepath.Clean(prefix) + + for _, part := range strings.Split(prefix, "/") { + if part == ".." || part == "dists" || part == "pool" { + return nil, fmt.Errorf("invalid prefix %s", prefix) + } + } + + result.Prefix = prefix + + // guessing distribution & component + if component == "" || distribution == "" { + var ( + head interface{} + current = []interface{}{source} + rootComponents = []string{} + rootDistributions = []string{} + ) + + // walk up the tree from current source up to roots (local or remote repos) + // and collect information about distribution and components + for len(current) > 0 { + head, current = current[0], current[1:] + + if snapshot, ok := head.(*Snapshot); ok { + for _, uuid := range snapshot.SourceIDs { + if snapshot.SourceKind == "repo" { + remoteRepo, err := collectionFactory.RemoteRepoCollection().ByUUID(uuid) + if err != nil { + continue + } + current = append(current, remoteRepo) + } else if snapshot.SourceKind == "local" { + localRepo, err := collectionFactory.LocalRepoCollection().ByUUID(uuid) + if err != nil { + continue + } + current = append(current, localRepo) + } else if snapshot.SourceKind == "snapshot" { + snap, err := collectionFactory.SnapshotCollection().ByUUID(uuid) + if err != nil { + continue + } + current = append(current, snap) + } + } + } else if localRepo, ok := head.(*LocalRepo); ok { + if localRepo.DefaultDistribution != "" { + rootDistributions = append(rootDistributions, localRepo.DefaultDistribution) + } + if localRepo.DefaultComponent != "" { + rootComponents = append(rootComponents, localRepo.DefaultComponent) + } + } else if remoteRepo, ok := head.(*RemoteRepo); ok { + if remoteRepo.Distribution != "" { + rootDistributions = append(rootDistributions, remoteRepo.Distribution) + } + rootComponents = append(rootComponents, remoteRepo.Components...) + } else { + panic("unknown type") + } + } + + if distribution == "" { + sort.Strings(rootDistributions) + if len(rootDistributions) > 0 && rootDistributions[0] == rootDistributions[len(rootDistributions)-1] { + distribution = rootDistributions[0] + } else { + return nil, fmt.Errorf("unable to guess distribution name, please specify explicitly") + } + } + + if component == "" { + sort.Strings(rootComponents) + if len(rootComponents) > 0 && rootComponents[0] == rootComponents[len(rootComponents)-1] { + component = rootComponents[0] + } else { + component = "main" + } + } + } + + result.Distribution, result.Component = distribution, component + + return result, nil +} + +// String returns human-readable represenation of PublishedRepo +func (p *PublishedRepo) String() string { + var source string + + if p.snapshot != nil { + source = p.snapshot.String() + } else if p.localRepo != nil { + source = p.localRepo.String() + } else { + panic("no snapshot/localRepo") + } + + var extra string + + if p.Origin != "" { + extra += fmt.Sprintf(", origin: %s", p.Origin) + } + + if p.Label != "" { + extra += fmt.Sprintf(", label: %s", p.Label) + } + + return fmt.Sprintf("%s/%s (%s%s) [%s] publishes %s", p.Prefix, p.Distribution, p.Component, extra, strings.Join(p.Architectures, ", "), source) +} + +// Key returns unique key identifying PublishedRepo +func (p *PublishedRepo) Key() []byte { + return []byte("U" + p.Prefix + ">>" + p.Distribution) +} + +// RefKey is a unique id for package reference list +func (p *PublishedRepo) RefKey() []byte { + return []byte("E" + p.UUID) +} + +// RefList returns list of package refs in local repo +func (p *PublishedRepo) RefList() *PackageRefList { + if p.SourceKind == "local" { + return p.packageRefs + } + if p.SourceKind == "snapshot" { + return p.snapshot.RefList() + } + panic("unknown source") +} + +func (p *PublishedRepo) UpdateLocalRepo() { + if p.SourceKind != "local" { + panic("not local repo publish") + } + + p.packageRefs = p.localRepo.RefList() + p.rePublishing = true +} + +func (p *PublishedRepo) UpdateSnapshot(snapshot *Snapshot) { + if p.SourceKind != "snapshot" { + panic("not snapshot publish") + } + + p.snapshot = snapshot + p.SourceUUID = snapshot.UUID + p.rePublishing = true +} + +// Encode does msgpack encoding of PublishedRepo +func (p *PublishedRepo) Encode() []byte { + var buf bytes.Buffer + + encoder := codec.NewEncoder(&buf, &codec.MsgpackHandle{}) + encoder.Encode(p) + + return buf.Bytes() +} + +// Decode decodes msgpack representation into PublishedRepo +func (p *PublishedRepo) Decode(input []byte) error { + decoder := codec.NewDecoderBytes(input, &codec.MsgpackHandle{}) + err := decoder.Decode(p) + if err != nil { + return err + } + + // old PublishedRepo were publishing only snapshots + if p.SourceKind == "" { + p.SourceKind = "snapshot" + } + + return nil +} + +// Publish publishes snapshot (repository) contents, links package files, generates Packages & Release files, signs them +func (p *PublishedRepo) Publish(packagePool aptly.PackagePool, publishedStorage aptly.PublishedStorage, + collectionFactory *CollectionFactory, signer utils.Signer, progress aptly.Progress) error { + err := publishedStorage.MkDir(filepath.Join(p.Prefix, "pool")) + if err != nil { + return err + } + basePath := filepath.Join(p.Prefix, "dists", p.Distribution) + err = publishedStorage.MkDir(basePath) + if err != nil { + return err + } + + if progress != nil { + progress.Printf("Loading packages...\n") + } + + // Load all packages + list, err := NewPackageListFromRefList(p.RefList(), collectionFactory.PackageCollection(), progress) + if err != nil { + return fmt.Errorf("unable to load packages: %s", err) + } + + if list.Len() == 0 { + return fmt.Errorf("source is empty") + } + + if !p.rePublishing { + if len(p.Architectures) == 0 { + p.Architectures = list.Architectures(true) + } + + if len(p.Architectures) == 0 { + return fmt.Errorf("unable to figure out list of architectures, please supply explicit list") + } + + sort.Strings(p.Architectures) + } + + var suffix string + if p.rePublishing { + suffix = ".tmp" + } + + generatedFiles := map[string]utils.ChecksumInfo{} + renameMap := map[string]string{} + + if progress != nil { + progress.Printf("Generating metadata files and linking package files...\n") + } + + // For all architectures, generate release file + for _, arch := range p.Architectures { + if progress != nil { + progress.InitBar(int64(list.Len()), false) + } + + var relativePath string + if arch == "source" { + relativePath = filepath.Join(p.Component, "source", "Sources") + } else { + relativePath = filepath.Join(p.Component, fmt.Sprintf("binary-%s", arch), "Packages") + } + err = publishedStorage.MkDir(filepath.Dir(filepath.Join(basePath, relativePath))) + if err != nil { + return err + } + + var packagesFile *os.File + packagesFile, err = publishedStorage.CreateFile(filepath.Join(basePath, relativePath+suffix)) + if err != nil { + return fmt.Errorf("unable to creates Packages file: %s", err) + } + + if suffix != "" { + renameMap[filepath.Join(basePath, relativePath+suffix)] = filepath.Join(basePath, relativePath) + } + + bufWriter := bufio.NewWriter(packagesFile) + + err = list.ForEach(func(pkg *Package) error { + if progress != nil { + progress.AddBar(1) + } + if pkg.MatchesArchitecture(arch) { + err = pkg.LinkFromPool(publishedStorage, packagePool, p.Prefix, p.Component) + if err != nil { + return err + } + + err = pkg.Stanza().WriteTo(bufWriter) + if err != nil { + return err + } + err = bufWriter.WriteByte('\n') + if err != nil { + return err + } + + pkg.files = nil + pkg.deps = nil + pkg.extra = nil + + } + + return nil + }) + + if err != nil { + return fmt.Errorf("unable to process packages: %s", err) + } + + err = bufWriter.Flush() + if err != nil { + return fmt.Errorf("unable to write Packages file: %s", err) + } + + err = utils.CompressFile(packagesFile) + if err != nil { + return fmt.Errorf("unable to compress Packages files: %s", err) + } + + if suffix != "" { + renameMap[filepath.Join(basePath, relativePath+suffix+".gz")] = filepath.Join(basePath, relativePath+".gz") + renameMap[filepath.Join(basePath, relativePath+suffix+".bz2")] = filepath.Join(basePath, relativePath+".bz2") + } + + packagesFile.Close() + + var checksumInfo utils.ChecksumInfo + checksumInfo, err = publishedStorage.ChecksumsForFile(filepath.Join(basePath, relativePath+suffix)) + if err != nil { + return fmt.Errorf("unable to collect checksums: %s", err) + } + generatedFiles[relativePath] = checksumInfo + + checksumInfo, err = publishedStorage.ChecksumsForFile(filepath.Join(basePath, relativePath+suffix+".gz")) + if err != nil { + return fmt.Errorf("unable to collect checksums: %s", err) + } + generatedFiles[relativePath+".gz"] = checksumInfo + + checksumInfo, err = publishedStorage.ChecksumsForFile(filepath.Join(basePath, relativePath+suffix+".bz2")) + if err != nil { + return fmt.Errorf("unable to collect checksums: %s", err) + } + generatedFiles[relativePath+".bz2"] = checksumInfo + + if progress != nil { + progress.ShutdownBar() + } + } + + release := make(Stanza) + if p.Origin == "" { + release["Origin"] = p.Prefix + " " + p.Distribution + } else { + release["Origin"] = p.Origin + } + if p.Label == "" { + release["Label"] = p.Prefix + " " + p.Distribution + } else { + release["Label"] = p.Label + } + release["Codename"] = p.Distribution + release["Date"] = time.Now().UTC().Format("Mon, 2 Jan 2006 15:04:05 MST") + release["Components"] = p.Component + release["Architectures"] = strings.Join(utils.StrSlicesSubstract(p.Architectures, []string{"source"}), " ") + release["Description"] = " Generated by aptly\n" + release["MD5Sum"] = "\n" + release["SHA1"] = "\n" + release["SHA256"] = "\n" + + for path, info := range generatedFiles { + release["MD5Sum"] += fmt.Sprintf(" %s %8d %s\n", info.MD5, info.Size, path) + release["SHA1"] += fmt.Sprintf(" %s %8d %s\n", info.SHA1, info.Size, path) + release["SHA256"] += fmt.Sprintf(" %s %8d %s\n", info.SHA256, info.Size, path) + } + + releaseFile, err := publishedStorage.CreateFile(filepath.Join(basePath, "Release"+suffix)) + if err != nil { + return fmt.Errorf("unable to create Release file: %s", err) + } + + if suffix != "" { + renameMap[filepath.Join(basePath, "Release"+suffix)] = filepath.Join(basePath, "Release") + } + + bufWriter := bufio.NewWriter(releaseFile) + + err = release.WriteTo(bufWriter) + if err != nil { + return fmt.Errorf("unable to create Release file: %s", err) + } + + err = bufWriter.Flush() + if err != nil { + return fmt.Errorf("unable to create Release file: %s", err) + } + + releaseFilename := releaseFile.Name() + releaseFile.Close() + + // Signing files might output to console, so flush progress writer first + if progress != nil { + progress.Flush() + } + + if signer != nil { + err = signer.DetachedSign(releaseFilename, releaseFilename+".gpg") + if err != nil { + return fmt.Errorf("unable to sign Release file: %s", err) + } + + err = signer.ClearSign(releaseFilename, filepath.Join(filepath.Dir(releaseFilename), "InRelease"+suffix)) + if err != nil { + return fmt.Errorf("unable to sign Release file: %s", err) + } + + if suffix != "" { + renameMap[filepath.Join(basePath, "Release"+suffix+".gpg")] = filepath.Join(basePath, "Release.gpg") + renameMap[filepath.Join(basePath, "InRelease"+suffix)] = filepath.Join(basePath, "InRelease") + } + + } + + for oldName, newName := range renameMap { + err = publishedStorage.RenameFile(oldName, newName) + if err != nil { + return fmt.Errorf("unable to rename: %s", err) + } + } + + return nil +} + +// RemoveFiles removes files that were created by Publish +// +// It can remove prefix fully, and part of pool (for specific component) +func (p *PublishedRepo) RemoveFiles(publishedStorage aptly.PublishedStorage, removePrefix, removePoolComponent bool, progress aptly.Progress) error { + // I. Easy: remove whole prefix (meta+packages) + if removePrefix { + err := publishedStorage.RemoveDirs(filepath.Join(p.Prefix, "dists"), progress) + if err != nil { + return err + } + + return publishedStorage.RemoveDirs(filepath.Join(p.Prefix, "pool"), progress) + } + + // II. Medium: remove metadata, it can't be shared as prefix/distribution as unique + err := publishedStorage.RemoveDirs(filepath.Join(p.Prefix, "dists", p.Distribution), progress) + if err != nil { + return err + } + + // III. Complex: there are no other publishes with the same prefix + component + if removePoolComponent { + err = publishedStorage.RemoveDirs(filepath.Join(p.Prefix, "pool", p.Component), progress) + if err != nil { + return err + } + } else { + /// IV: Hard: should have removed published files from the pool + component + /// that are unique to this published repo + } + return nil +} + +// PublishedRepoCollection does listing, updating/adding/deleting of PublishedRepos +type PublishedRepoCollection struct { + db database.Storage + list []*PublishedRepo +} + +// NewPublishedRepoCollection loads PublishedRepos from DB and makes up collection +func NewPublishedRepoCollection(db database.Storage) *PublishedRepoCollection { + result := &PublishedRepoCollection{ + db: db, + } + + blobs := db.FetchByPrefix([]byte("U")) + result.list = make([]*PublishedRepo, 0, len(blobs)) + + for _, blob := range blobs { + r := &PublishedRepo{} + if err := r.Decode(blob); err != nil { + log.Printf("Error decoding published repo: %s\n", err) + } else { + result.list = append(result.list, r) + } + } + + return result +} + +// Add appends new repo to collection and saves it +func (collection *PublishedRepoCollection) Add(repo *PublishedRepo) error { + if collection.CheckDuplicate(repo) != nil { + return fmt.Errorf("published repo with prefix/distribution %s/%s already exists", repo.Prefix, repo.Distribution) + } + + err := collection.Update(repo) + if err != nil { + return err + } + + collection.list = append(collection.list, repo) + return nil +} + +// CheckDuplicate verifies that there's no published repo with the same name +func (collection *PublishedRepoCollection) CheckDuplicate(repo *PublishedRepo) *PublishedRepo { + for _, r := range collection.list { + if r.Prefix == repo.Prefix && r.Distribution == repo.Distribution { + return r + } + } + + return nil +} + +// Update stores updated information about repo in DB +func (collection *PublishedRepoCollection) Update(repo *PublishedRepo) (err error) { + err = collection.db.Put(repo.Key(), repo.Encode()) + if err != nil { + return + } + + if repo.SourceKind == "local" { + err = collection.db.Put(repo.RefKey(), repo.packageRefs.Encode()) + } + return +} + +// LoadComplete loads additional information for remote repo +func (collection *PublishedRepoCollection) LoadComplete(repo *PublishedRepo, collectionFactory *CollectionFactory) (err error) { + if repo.SourceKind == "snapshot" { + repo.snapshot, err = collectionFactory.SnapshotCollection().ByUUID(repo.SourceUUID) + if err != nil { + return + } + err = collectionFactory.SnapshotCollection().LoadComplete(repo.snapshot) + } else if repo.SourceKind == "local" { + repo.localRepo, err = collectionFactory.LocalRepoCollection().ByUUID(repo.SourceUUID) + if err != nil { + return + } + err = collectionFactory.LocalRepoCollection().LoadComplete(repo.localRepo) + if err != nil { + return + } + + var encoded []byte + encoded, err = collection.db.Get(repo.RefKey()) + if err != nil { + return err + } + + repo.packageRefs = &PackageRefList{} + err = repo.packageRefs.Decode(encoded) + } else { + panic("unknown SourceKind") + } + + return err +} + +// ByPrefixDistribution looks up repository by prefix & distribution +func (collection *PublishedRepoCollection) ByPrefixDistribution(prefix, distribution string) (*PublishedRepo, error) { + for _, r := range collection.list { + if r.Prefix == prefix && r.Distribution == distribution { + return r, nil + } + } + return nil, fmt.Errorf("published repo with prefix/distribution %s/%s not found", prefix, distribution) +} + +// ByUUID looks up repository by uuid +func (collection *PublishedRepoCollection) ByUUID(uuid string) (*PublishedRepo, error) { + for _, r := range collection.list { + if r.UUID == uuid { + return r, nil + } + } + return nil, fmt.Errorf("published repo with uuid %s not found", uuid) +} + +// BySnapshot looks up repository by snapshot source +func (collection *PublishedRepoCollection) BySnapshot(snapshot *Snapshot) []*PublishedRepo { + result := make([]*PublishedRepo, 0) + for _, r := range collection.list { + if r.SourceKind == "snapshot" && r.SourceUUID == snapshot.UUID { + result = append(result, r) + } + } + return result +} + +// ByLocalRepo looks up repository by local repo source +func (collection *PublishedRepoCollection) ByLocalRepo(repo *LocalRepo) []*PublishedRepo { + result := make([]*PublishedRepo, 0) + for _, r := range collection.list { + if r.SourceKind == "local" && r.SourceUUID == repo.UUID { + result = append(result, r) + } + } + return result +} + +// ForEach runs method for each repository +func (collection *PublishedRepoCollection) ForEach(handler func(*PublishedRepo) error) error { + var err error + for _, r := range collection.list { + err = handler(r) + if err != nil { + return err + } + } + return err +} + +// Len returns number of remote repos +func (collection *PublishedRepoCollection) Len() int { + return len(collection.list) +} + +// CleanupPrefixComponentFiles removes all unreferenced files in published storage under prefix/component pair +func (collection *PublishedRepoCollection) CleanupPrefixComponentFiles(prefix, component string, + publishedStorage aptly.PublishedStorage, collectionFactory *CollectionFactory, progress aptly.Progress) error { + + var err error + referencedFiles := []string{} + + if progress != nil { + progress.Printf("Cleaning up prefix %#v component %#v...\n", prefix, component) + } + + for _, r := range collection.list { + if r.Prefix == prefix && r.Component == component { + err = collection.LoadComplete(r, collectionFactory) + if err != nil { + return err + } + + packageList, err := NewPackageListFromRefList(r.RefList(), collectionFactory.PackageCollection(), progress) + if err != nil { + return err + } + + packageList.ForEach(func(p *Package) error { + poolDir, err := p.PoolDirectory() + if err != nil { + return err + } + + for _, f := range p.Files() { + referencedFiles = append(referencedFiles, filepath.Join(poolDir, f.Filename)) + } + + return nil + }) + } + } + + sort.Strings(referencedFiles) + + rootPath := filepath.Join(prefix, "pool", component) + existingFiles, err := publishedStorage.Filelist(rootPath) + if err != nil { + return err + } + + sort.Strings(existingFiles) + + filesToDelete := utils.StrSlicesSubstract(existingFiles, referencedFiles) + + for _, file := range filesToDelete { + err = publishedStorage.Remove(filepath.Join(rootPath, file)) + if err != nil { + return err + } + } + + return nil +} + +// Remove removes published repository, cleaning up directories, files +func (collection *PublishedRepoCollection) Remove(publishedStorage aptly.PublishedStorage, prefix, distribution string, + collectionFactory *CollectionFactory, progress aptly.Progress) error { + repo, err := collection.ByPrefixDistribution(prefix, distribution) + if err != nil { + return err + } + + removePrefix := true + removePoolComponent := true + repoPosition := -1 + + for i, r := range collection.list { + if r == repo { + repoPosition = i + continue + } + if r.Prefix == repo.Prefix { + removePrefix = false + if r.Component == repo.Component { + removePoolComponent = false + } + } + } + + err = repo.RemoveFiles(publishedStorage, removePrefix, removePoolComponent, progress) + if err != nil { + return err + } + + collection.list[len(collection.list)-1], collection.list[repoPosition], collection.list = + nil, collection.list[len(collection.list)-1], collection.list[:len(collection.list)-1] + + if !removePrefix && !removePoolComponent { + err = collection.CleanupPrefixComponentFiles(repo.Prefix, repo.Component, publishedStorage, collectionFactory, progress) + if err != nil { + return err + } + } + + err = collection.db.Delete(repo.Key()) + if err != nil { + return err + } + return collection.db.Delete(repo.RefKey()) +} diff --git a/src/github.com/smira/aptly/deb/publish_test.go b/src/github.com/smira/aptly/deb/publish_test.go new file mode 100644 index 00000000..0e49b20a --- /dev/null +++ b/src/github.com/smira/aptly/deb/publish_test.go @@ -0,0 +1,600 @@ +package deb + +import ( + "errors" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/database" + "github.com/smira/aptly/files" + . "launchpad.net/gocheck" + "os" + "path/filepath" +) + +type pathExistsChecker struct { + *CheckerInfo +} + +var PathExists = &pathExistsChecker{ + &CheckerInfo{Name: "PathExists", Params: []string{"path"}}, +} + +func (checker *pathExistsChecker) Check(params []interface{}, names []string) (result bool, error string) { + _, err := os.Stat(params[0].(string)) + return err == nil, "" +} + +type NullSigner struct{} + +func (n *NullSigner) Init() error { + return nil +} + +func (n *NullSigner) SetKey(keyRef string) { +} + +func (n *NullSigner) SetKeyRing(keyring, secretKeyring string) { +} + +func (n *NullSigner) DetachedSign(source string, destination string) error { + return nil +} + +func (n *NullSigner) ClearSign(source string, destination string) error { + return nil +} + +type PublishedRepoSuite struct { + PackageListMixinSuite + repo, repo2 *PublishedRepo + root string + publishedStorage aptly.PublishedStorage + packagePool aptly.PackagePool + localRepo *LocalRepo + snapshot *Snapshot + db database.Storage + factory *CollectionFactory + packageCollection *PackageCollection +} + +var _ = Suite(&PublishedRepoSuite{}) + +func (s *PublishedRepoSuite) SetUpTest(c *C) { + s.SetUpPackages() + + s.db, _ = database.OpenDB(c.MkDir()) + s.factory = NewCollectionFactory(s.db) + + s.root = c.MkDir() + s.publishedStorage = files.NewPublishedStorage(s.root) + s.packagePool = files.NewPackagePool(s.root) + + repo, _ := NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + repo.packageRefs = s.reflist + s.factory.RemoteRepoCollection().Add(repo) + + s.localRepo = NewLocalRepo("local1", "comment1") + s.localRepo.packageRefs = s.reflist + s.factory.LocalRepoCollection().Add(s.localRepo) + + s.snapshot, _ = NewSnapshotFromRepository("snap", repo) + s.factory.SnapshotCollection().Add(s.snapshot) + + s.packageCollection = s.factory.PackageCollection() + s.packageCollection.Update(s.p1) + s.packageCollection.Update(s.p2) + s.packageCollection.Update(s.p3) + + s.repo, _ = NewPublishedRepo("ppa", "squeeze", "main", nil, s.snapshot, s.factory) + + s.repo2, _ = NewPublishedRepo("ppa", "maverick", "main", nil, s.localRepo, s.factory) + + poolPath, _ := s.packagePool.Path(s.p1.Files()[0].Filename, s.p1.Files()[0].Checksums.MD5) + err := os.MkdirAll(filepath.Dir(poolPath), 0755) + f, err := os.Create(poolPath) + c.Assert(err, IsNil) + f.Close() +} + +func (s *PublishedRepoSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *PublishedRepoSuite) TestNewPublishedRepo(c *C) { + c.Check(s.repo.snapshot, Equals, s.snapshot) + c.Check(s.repo.SourceKind, Equals, "snapshot") + c.Check(s.repo.SourceUUID, Equals, s.snapshot.UUID) + + c.Check(s.repo2.localRepo, Equals, s.localRepo) + c.Check(s.repo2.SourceKind, Equals, "local") + c.Check(s.repo2.SourceUUID, Equals, s.localRepo.UUID) + c.Check(s.repo2.packageRefs.Len(), Equals, 3) + + c.Check(s.repo.RefList().Len(), Equals, 3) + c.Check(s.repo2.RefList().Len(), Equals, 3) +} + +func (s *PublishedRepoSuite) TestPrefixNormalization(c *C) { + + for _, t := range []struct { + prefix string + expected string + errorExpected string + }{ + { + prefix: "ppa", + expected: "ppa", + }, + { + prefix: "", + expected: ".", + }, + { + prefix: "/", + expected: ".", + }, + { + prefix: "//", + expected: ".", + }, + { + prefix: "//ppa/", + expected: "ppa", + }, + { + prefix: "ppa/..", + expected: ".", + }, + { + prefix: "ppa/ubuntu/", + expected: "ppa/ubuntu", + }, + { + prefix: "ppa/../ubuntu/", + expected: "ubuntu", + }, + { + prefix: "../ppa/", + errorExpected: "invalid prefix .*", + }, + { + prefix: "../ppa/../ppa/", + errorExpected: "invalid prefix .*", + }, + { + prefix: "ppa/dists", + errorExpected: "invalid prefix .*", + }, + { + prefix: "ppa/pool", + errorExpected: "invalid prefix .*", + }, + } { + repo, err := NewPublishedRepo(t.prefix, "squeeze", "main", nil, s.snapshot, s.factory) + if t.errorExpected != "" { + c.Check(err, ErrorMatches, t.errorExpected) + } else { + c.Check(repo.Prefix, Equals, t.expected) + } + } +} + +func (s *PublishedRepoSuite) TestDistributionComponentGuessing(c *C) { + repo, err := NewPublishedRepo("ppa", "", "", nil, s.snapshot, s.factory) + c.Check(err, IsNil) + c.Check(repo.Distribution, Equals, "squeeze") + c.Check(repo.Component, Equals, "main") + + repo, err = NewPublishedRepo("ppa", "wheezy", "", nil, s.snapshot, s.factory) + c.Check(err, IsNil) + c.Check(repo.Distribution, Equals, "wheezy") + c.Check(repo.Component, Equals, "main") + + repo, err = NewPublishedRepo("ppa", "", "non-free", nil, s.snapshot, s.factory) + c.Check(err, IsNil) + c.Check(repo.Distribution, Equals, "squeeze") + c.Check(repo.Component, Equals, "non-free") + + repo, err = NewPublishedRepo("ppa", "squeeze", "", nil, s.localRepo, s.factory) + c.Check(err, IsNil) + c.Check(repo.Distribution, Equals, "squeeze") + c.Check(repo.Component, Equals, "main") + + repo, err = NewPublishedRepo("ppa", "", "main", nil, s.localRepo, s.factory) + c.Check(err, ErrorMatches, "unable to guess distribution name, please specify explicitly") + + s.localRepo.DefaultDistribution = "precise" + s.localRepo.DefaultComponent = "contrib" + s.factory.LocalRepoCollection().Update(s.localRepo) + + repo, err = NewPublishedRepo("ppa", "", "", nil, s.localRepo, s.factory) + c.Check(err, IsNil) + c.Check(repo.Distribution, Equals, "precise") + c.Check(repo.Component, Equals, "contrib") +} + +func (s *PublishedRepoSuite) TestPublish(c *C) { + err := s.repo.Publish(s.packagePool, s.publishedStorage, s.factory, &NullSigner{}, nil) + c.Assert(err, IsNil) + + c.Check(s.repo.Architectures, DeepEquals, []string{"i386"}) + + rf, err := os.Open(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/squeeze/Release")) + c.Assert(err, IsNil) + + cfr := NewControlFileReader(rf) + st, err := cfr.ReadStanza() + c.Assert(err, IsNil) + + c.Check(st["Origin"], Equals, "ppa squeeze") + c.Check(st["Components"], Equals, "main") + c.Check(st["Architectures"], Equals, "i386") + + pf, err := os.Open(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/squeeze/main/binary-i386/Packages")) + c.Assert(err, IsNil) + + cfr = NewControlFileReader(pf) + + for i := 0; i < 3; i++ { + st, err = cfr.ReadStanza() + c.Assert(err, IsNil) + + c.Check(st["Filename"], Equals, "pool/main/a/alien-arena/alien-arena-common_7.40-2_i386.deb") + } + + st, err = cfr.ReadStanza() + c.Assert(err, IsNil) + c.Assert(st, IsNil) + + _, err = os.Stat(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main/a/alien-arena/alien-arena-common_7.40-2_i386.deb")) + c.Assert(err, IsNil) +} + +func (s *PublishedRepoSuite) TestPublishNoSigner(c *C) { + err := s.repo.Publish(s.packagePool, s.publishedStorage, s.factory, nil, nil) + c.Assert(err, IsNil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/squeeze/Release"), PathExists) +} + +func (s *PublishedRepoSuite) TestPublishLocalRepo(c *C) { + err := s.repo2.Publish(s.packagePool, s.publishedStorage, s.factory, nil, nil) + c.Assert(err, IsNil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/maverick/Release"), PathExists) +} + +func (s *PublishedRepoSuite) TestString(c *C) { + c.Check(s.repo.String(), Equals, + "ppa/squeeze (main) [] publishes [snap]: Snapshot from mirror [yandex]: http://mirror.yandex.ru/debian/ squeeze") + c.Check(s.repo2.String(), Equals, + "ppa/maverick (main) [] publishes [local1]: comment1") + repo, _ := NewPublishedRepo("", "squeeze", "main", []string{"s390"}, s.snapshot, s.factory) + c.Check(repo.String(), Equals, + "./squeeze (main) [s390] publishes [snap]: Snapshot from mirror [yandex]: http://mirror.yandex.ru/debian/ squeeze") + repo, _ = NewPublishedRepo("", "squeeze", "main", []string{"i386", "amd64"}, s.snapshot, s.factory) + c.Check(repo.String(), Equals, + "./squeeze (main) [i386, amd64] publishes [snap]: Snapshot from mirror [yandex]: http://mirror.yandex.ru/debian/ squeeze") + repo.Origin = "myorigin" + c.Check(repo.String(), Equals, + "./squeeze (main, origin: myorigin) [i386, amd64] publishes [snap]: Snapshot from mirror [yandex]: http://mirror.yandex.ru/debian/ squeeze") + repo.Label = "mylabel" + c.Check(repo.String(), Equals, + "./squeeze (main, origin: myorigin, label: mylabel) [i386, amd64] publishes [snap]: Snapshot from mirror [yandex]: http://mirror.yandex.ru/debian/ squeeze") +} + +func (s *PublishedRepoSuite) TestKey(c *C) { + c.Check(s.repo.Key(), DeepEquals, []byte("Uppa>>squeeze")) +} + +func (s *PublishedRepoSuite) TestRefKey(c *C) { + c.Check(s.repo.RefKey(), DeepEquals, []byte("E"+s.repo.UUID)) +} + +func (s *PublishedRepoSuite) TestEncodeDecode(c *C) { + encoded := s.repo.Encode() + repo := &PublishedRepo{} + err := repo.Decode(encoded) + + s.repo.snapshot = nil + c.Assert(err, IsNil) + c.Assert(repo, DeepEquals, s.repo) + + encoded2 := s.repo2.Encode() + repo2 := &PublishedRepo{} + err = repo2.Decode(encoded2) + + s.repo2.localRepo = nil + s.repo2.packageRefs = nil + c.Assert(err, IsNil) + c.Assert(repo2, DeepEquals, s.repo2) +} + +type PublishedRepoCollectionSuite struct { + PackageListMixinSuite + db database.Storage + factory *CollectionFactory + snapshotCollection *SnapshotCollection + collection *PublishedRepoCollection + snap1, snap2 *Snapshot + localRepo *LocalRepo + repo1, repo2, repo3, repo4 *PublishedRepo +} + +var _ = Suite(&PublishedRepoCollectionSuite{}) + +func (s *PublishedRepoCollectionSuite) SetUpTest(c *C) { + s.db, _ = database.OpenDB(c.MkDir()) + s.factory = NewCollectionFactory(s.db) + + s.snapshotCollection = s.factory.SnapshotCollection() + + s.snap1 = NewSnapshotFromPackageList("snap1", []*Snapshot{}, NewPackageList(), "desc1") + s.snap2 = NewSnapshotFromPackageList("snap2", []*Snapshot{}, NewPackageList(), "desc2") + + s.snapshotCollection.Add(s.snap1) + s.snapshotCollection.Add(s.snap2) + + s.localRepo = NewLocalRepo("local1", "comment1") + s.factory.LocalRepoCollection().Add(s.localRepo) + + s.repo1, _ = NewPublishedRepo("ppa", "anaconda", "main", []string{}, s.snap1, s.factory) + s.repo2, _ = NewPublishedRepo("", "anaconda", "main", []string{}, s.snap2, s.factory) + s.repo3, _ = NewPublishedRepo("ppa", "anaconda", "main", []string{}, s.snap2, s.factory) + s.repo4, _ = NewPublishedRepo("ppa", "precise", "main", []string{}, s.localRepo, s.factory) + + s.collection = s.factory.PublishedRepoCollection() +} + +func (s *PublishedRepoCollectionSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *PublishedRepoCollectionSuite) TestAddByPrefixDistribution(c *C) { + r, err := s.collection.ByPrefixDistribution("ppa", "anaconda") + c.Assert(err, ErrorMatches, "*.not found") + + c.Assert(s.collection.Add(s.repo1), IsNil) + c.Assert(s.collection.Add(s.repo1), ErrorMatches, ".*already exists") + c.Assert(s.collection.CheckDuplicate(s.repo2), IsNil) + c.Assert(s.collection.Add(s.repo2), IsNil) + c.Assert(s.collection.Add(s.repo3), ErrorMatches, ".*already exists") + c.Assert(s.collection.CheckDuplicate(s.repo3), Equals, s.repo1) + c.Assert(s.collection.Add(s.repo4), IsNil) + + r, err = s.collection.ByPrefixDistribution("ppa", "anaconda") + c.Assert(err, IsNil) + + err = s.collection.LoadComplete(r, s.factory) + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, s.repo1.String()) + + collection := NewPublishedRepoCollection(s.db) + r, err = collection.ByPrefixDistribution("ppa", "anaconda") + c.Assert(err, IsNil) + + err = s.collection.LoadComplete(r, s.factory) + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, s.repo1.String()) +} + +func (s *PublishedRepoCollectionSuite) TestByUUID(c *C) { + r, err := s.collection.ByUUID(s.repo1.UUID) + c.Assert(err, ErrorMatches, "*.not found") + + c.Assert(s.collection.Add(s.repo1), IsNil) + + r, err = s.collection.ByUUID(s.repo1.UUID) + c.Assert(err, IsNil) + + err = s.collection.LoadComplete(r, s.factory) + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, s.repo1.String()) +} + +func (s *PublishedRepoCollectionSuite) TestUpdateLoadComplete(c *C) { + c.Assert(s.collection.Update(s.repo1), IsNil) + c.Assert(s.collection.Update(s.repo4), IsNil) + + collection := NewPublishedRepoCollection(s.db) + r, err := collection.ByPrefixDistribution("ppa", "anaconda") + c.Assert(err, IsNil) + c.Assert(r.snapshot, IsNil) + c.Assert(s.collection.LoadComplete(r, s.factory), IsNil) + c.Assert(r.snapshot.UUID, Equals, s.repo1.snapshot.UUID) + c.Assert(r.RefList().Len(), Equals, 0) + + r, err = collection.ByPrefixDistribution("ppa", "precise") + c.Assert(err, IsNil) + c.Assert(r.localRepo, IsNil) + c.Assert(s.collection.LoadComplete(r, s.factory), IsNil) + c.Assert(r.localRepo.UUID, Equals, s.repo4.localRepo.UUID) + c.Assert(r.packageRefs.Len(), Equals, 0) + c.Assert(r.RefList().Len(), Equals, 0) +} + +func (s *PublishedRepoCollectionSuite) TestForEachAndLen(c *C) { + s.collection.Add(s.repo1) + + count := 0 + err := s.collection.ForEach(func(*PublishedRepo) error { + count++ + return nil + }) + c.Assert(count, Equals, 1) + c.Assert(err, IsNil) + + c.Check(s.collection.Len(), Equals, 1) + + e := errors.New("c") + + err = s.collection.ForEach(func(*PublishedRepo) error { + return e + }) + c.Assert(err, Equals, e) +} + +func (s *PublishedRepoCollectionSuite) TestBySnapshot(c *C) { + c.Check(s.collection.Add(s.repo1), IsNil) + c.Check(s.collection.Add(s.repo2), IsNil) + + c.Check(s.collection.BySnapshot(s.snap1), DeepEquals, []*PublishedRepo{s.repo1}) + c.Check(s.collection.BySnapshot(s.snap2), DeepEquals, []*PublishedRepo{s.repo2}) +} + +func (s *PublishedRepoCollectionSuite) TestByLocalRepo(c *C) { + c.Check(s.collection.Add(s.repo1), IsNil) + c.Check(s.collection.Add(s.repo4), IsNil) + + c.Check(s.collection.ByLocalRepo(s.localRepo), DeepEquals, []*PublishedRepo{s.repo4}) +} + +type PublishedRepoRemoveSuite struct { + PackageListMixinSuite + db database.Storage + factory *CollectionFactory + snapshotCollection *SnapshotCollection + collection *PublishedRepoCollection + root string + publishedStorage aptly.PublishedStorage + snap1 *Snapshot + repo1, repo2, repo3, repo4 *PublishedRepo +} + +var _ = Suite(&PublishedRepoRemoveSuite{}) + +func (s *PublishedRepoRemoveSuite) SetUpTest(c *C) { + s.db, _ = database.OpenDB(c.MkDir()) + s.factory = NewCollectionFactory(s.db) + + s.snapshotCollection = s.factory.SnapshotCollection() + + s.snap1 = NewSnapshotFromPackageList("snap1", []*Snapshot{}, NewPackageList(), "desc1") + + s.snapshotCollection.Add(s.snap1) + + s.repo1, _ = NewPublishedRepo("ppa", "anaconda", "main", []string{}, s.snap1, s.factory) + s.repo2, _ = NewPublishedRepo("", "anaconda", "main", []string{}, s.snap1, s.factory) + s.repo3, _ = NewPublishedRepo("ppa", "meduza", "main", []string{}, s.snap1, s.factory) + s.repo4, _ = NewPublishedRepo("ppa", "osminog", "contrib", []string{}, s.snap1, s.factory) + + s.collection = s.factory.PublishedRepoCollection() + s.collection.Add(s.repo1) + s.collection.Add(s.repo2) + s.collection.Add(s.repo3) + s.collection.Add(s.repo4) + + s.root = c.MkDir() + s.publishedStorage = files.NewPublishedStorage(s.root) + s.publishedStorage.MkDir("ppa/dists/anaconda") + s.publishedStorage.MkDir("ppa/dists/meduza") + s.publishedStorage.MkDir("ppa/dists/osminog") + s.publishedStorage.MkDir("ppa/pool/main") + s.publishedStorage.MkDir("ppa/pool/contrib") + s.publishedStorage.MkDir("dists/anaconda") + s.publishedStorage.MkDir("pool/main") +} + +func (s *PublishedRepoRemoveSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *PublishedRepoRemoveSuite) TestRemoveFilesOnlyDist(c *C) { + s.repo1.RemoveFiles(s.publishedStorage, false, false, nil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/osminog"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/main"), PathExists) +} + +func (s *PublishedRepoRemoveSuite) TestRemoveFilesWithPool(c *C) { + s.repo1.RemoveFiles(s.publishedStorage, false, true, nil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/osminog"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/main"), PathExists) +} + +func (s *PublishedRepoRemoveSuite) TestRemoveFilesWithPrefix(c *C) { + s.repo1.RemoveFiles(s.publishedStorage, true, true, nil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/osminog"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/main"), PathExists) +} + +func (s *PublishedRepoRemoveSuite) TestRemoveFilesWithPrefixRoot(c *C) { + s.repo2.RemoveFiles(s.publishedStorage, true, true, nil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/anaconda"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/main"), Not(PathExists)) +} + +func (s *PublishedRepoRemoveSuite) TestRemoveRepo1and2(c *C) { + err := s.collection.Remove(s.publishedStorage, "ppa", "anaconda", s.factory, nil) + c.Check(err, IsNil) + + _, err = s.collection.ByPrefixDistribution("ppa", "anaconda") + c.Check(err, ErrorMatches, ".*not found") + + collection := NewPublishedRepoCollection(s.db) + _, err = collection.ByPrefixDistribution("ppa", "anaconda") + c.Check(err, ErrorMatches, ".*not found") + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/osminog"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/main"), PathExists) + + err = s.collection.Remove(s.publishedStorage, "ppa", "anaconda", s.factory, nil) + c.Check(err, ErrorMatches, ".*not found") + + err = s.collection.Remove(s.publishedStorage, "ppa", "meduza", s.factory, nil) + c.Check(err, IsNil) + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/osminog"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/main"), PathExists) +} + +func (s *PublishedRepoRemoveSuite) TestRemoveRepo3(c *C) { + err := s.collection.Remove(s.publishedStorage, ".", "anaconda", s.factory, nil) + c.Check(err, IsNil) + + _, err = s.collection.ByPrefixDistribution(".", "anaconda") + c.Check(err, ErrorMatches, ".*not found") + + collection := NewPublishedRepoCollection(s.db) + _, err = collection.ByPrefixDistribution(".", "anaconda") + c.Check(err, ErrorMatches, ".*not found") + + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/anaconda"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/meduza"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/osminog"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/main"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/pool/contrib"), PathExists) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "dists/"), Not(PathExists)) + c.Check(filepath.Join(s.publishedStorage.PublicPath(), "pool/"), Not(PathExists)) +} diff --git a/src/github.com/smira/aptly/deb/reflist.go b/src/github.com/smira/aptly/deb/reflist.go new file mode 100644 index 00000000..7c9f5f0d --- /dev/null +++ b/src/github.com/smira/aptly/deb/reflist.go @@ -0,0 +1,339 @@ +package deb + +import ( + "bytes" + "github.com/ugorji/go/codec" + "sort" +) + +// PackageRefList is a list of keys of packages, this is basis for snapshot +// and similar stuff +// +// Refs are sorted in lexicographical order +type PackageRefList struct { + // List of package keys + Refs [][]byte +} + +// Verify interface +var ( + _ sort.Interface = &PackageRefList{} +) + +// NewPackageRefList creates empty PackageRefList +func NewPackageRefList() *PackageRefList { + return &PackageRefList{} +} + +// NewPackageRefListFromPackageList creates PackageRefList from PackageList +func NewPackageRefListFromPackageList(list *PackageList) *PackageRefList { + reflist := &PackageRefList{} + reflist.Refs = make([][]byte, list.Len()) + + i := 0 + for _, p := range list.packages { + reflist.Refs[i] = p.Key("") + i++ + } + + sort.Sort(reflist) + + return reflist +} + +// Len returns number of refs +func (l *PackageRefList) Len() int { + return len(l.Refs) +} + +// Swap swaps two refs +func (l *PackageRefList) Swap(i, j int) { + l.Refs[i], l.Refs[j] = l.Refs[j], l.Refs[i] +} + +// Compare compares two refs in lexographical order +func (l *PackageRefList) Less(i, j int) bool { + return bytes.Compare(l.Refs[i], l.Refs[j]) < 0 +} + +// Encode does msgpack encoding of PackageRefList +func (l *PackageRefList) Encode() []byte { + var buf bytes.Buffer + + encoder := codec.NewEncoder(&buf, &codec.MsgpackHandle{}) + encoder.Encode(l) + + return buf.Bytes() +} + +// Decode decodes msgpack representation into PackageRefLit +func (l *PackageRefList) Decode(input []byte) error { + decoder := codec.NewDecoderBytes(input, &codec.MsgpackHandle{}) + return decoder.Decode(l) +} + +// ForEach calls handler for each package ref in list +func (l *PackageRefList) ForEach(handler func([]byte) error) error { + var err error + for _, p := range l.Refs { + err = handler(p) + if err != nil { + return err + } + } + return err +} + +// Substract returns all packages in l that are not in r +func (l *PackageRefList) Substract(r *PackageRefList) *PackageRefList { + result := &PackageRefList{Refs: make([][]byte, 0, 128)} + + // pointer to left and right reflists + il, ir := 0, 0 + // length of reflists + ll, lr := l.Len(), r.Len() + + for il < ll || ir < lr { + if il == ll { + // left list exhausted, we got the result + break + } + if ir == lr { + // right list exhausted, append what is left to result + result.Refs = append(result.Refs, l.Refs[il:]...) + break + } + + rel := bytes.Compare(l.Refs[il], r.Refs[ir]) + if rel == 0 { + // r contains entry from l, so we skip it + il++ + ir++ + } else if rel < 0 { + // item il is not in r, append + result.Refs = append(result.Refs, l.Refs[il]) + il++ + } else { + // skip over to next item in r + ir++ + } + } + + return result +} + +// PackageDiff is a difference between two packages in a list. +// +// If left & right are present, difference is in package version +// If left is nil, package is present only in right +// If right is nil, package is present only in left +type PackageDiff struct { + Left, Right *Package +} + +// PackageDiffs is a list of PackageDiff records +type PackageDiffs []PackageDiff + +// Diff calculates difference between two reflists +func (l *PackageRefList) Diff(r *PackageRefList, packageCollection *PackageCollection) (result PackageDiffs, err error) { + result = make(PackageDiffs, 0, 128) + + // pointer to left and right reflists + il, ir := 0, 0 + // length of reflists + ll, lr := l.Len(), r.Len() + // cached loaded packages on the left & right + pl, pr := (*Package)(nil), (*Package)(nil) + + // until we reached end of both lists + for il < ll || ir < lr { + // if we've exhausted left list, pull the rest from the right + if il == ll { + pr, err = packageCollection.ByKey(r.Refs[ir]) + if err != nil { + return nil, err + } + result = append(result, PackageDiff{Left: nil, Right: pr}) + ir++ + continue + } + // if we've exhausted right list, pull the rest from the left + if ir == lr { + pl, err = packageCollection.ByKey(l.Refs[il]) + if err != nil { + return nil, err + } + result = append(result, PackageDiff{Left: pl, Right: nil}) + il++ + continue + } + + // refs on both sides are present, load them + rl, rr := l.Refs[il], r.Refs[ir] + // compare refs + rel := bytes.Compare(rl, rr) + + if rel == 0 { + // refs are identical, so are packages, advance pointer + il++ + ir++ + pl, pr = nil, nil + } else { + // load pl & pr if they haven't been loaded before + if pl == nil { + pl, err = packageCollection.ByKey(rl) + if err != nil { + return nil, err + } + } + + if pr == nil { + pr, err = packageCollection.ByKey(rr) + if err != nil { + return nil, err + } + } + + // is pl & pr the same package, but different version? + if pl.Name == pr.Name && pl.Architecture == pr.Architecture { + result = append(result, PackageDiff{Left: pl, Right: pr}) + il++ + ir++ + pl, pr = nil, nil + } else { + // otherwise pl or pr is missing on one of the sides + if rel < 0 { + result = append(result, PackageDiff{Left: pl, Right: nil}) + il++ + pl = nil + } else { + result = append(result, PackageDiff{Left: nil, Right: pr}) + ir++ + pr = nil + } + } + + } + } + + return +} + +// Merge merges reflist r into current reflist. If overrideMatching, merge +// replaces matching packages (by architecture/name) with reference from r. +// Otherwise, all packages are saved. +func (l *PackageRefList) Merge(r *PackageRefList, overrideMatching bool) (result *PackageRefList) { + var overriddenArch, overridenName []byte + + // pointer to left and right reflists + il, ir := 0, 0 + // length of reflists + ll, lr := l.Len(), r.Len() + + result = &PackageRefList{} + result.Refs = make([][]byte, 0, ll+lr) + + // until we reached end of both lists + for il < ll || ir < lr { + // if we've exhausted left list, pull the rest from the right + if il == ll { + result.Refs = append(result.Refs, r.Refs[ir:]...) + break + } + // if we've exhausted right list, pull the rest from the left + if ir == lr { + result.Refs = append(result.Refs, l.Refs[il:]...) + break + } + + // refs on both sides are present, load them + rl, rr := l.Refs[il], r.Refs[ir] + // compare refs + rel := bytes.Compare(rl, rr) + + if rel == 0 { + // refs are identical, so are packages, advance pointer + result.Refs = append(result.Refs, l.Refs[il]) + il++ + ir++ + overridenName = nil + overriddenArch = nil + } else { + if overrideMatching { + partsL := bytes.Split(rl, []byte(" ")) + archL, nameL := partsL[0][1:], partsL[1] + + partsR := bytes.Split(rr, []byte(" ")) + archR, nameR := partsR[0][1:], partsR[1] + + if bytes.Equal(archL, overriddenArch) && bytes.Equal(nameL, overridenName) { + // this package has already been overriden on the right + il++ + continue + } + + if bytes.Equal(archL, archR) && bytes.Equal(nameL, nameR) { + // override with package from the right + result.Refs = append(result.Refs, r.Refs[ir]) + il++ + ir++ + overriddenArch = archL + overridenName = nameL + continue + } + } + + // otherwise append smallest of two + if rel < 0 { + result.Refs = append(result.Refs, l.Refs[il]) + il++ + } else { + result.Refs = append(result.Refs, r.Refs[ir]) + ir++ + overridenName = nil + overriddenArch = nil + } + } + } + + return +} + +// FilterLatestRefs takes in a reflist with potentially multiples of the same +// packages and reduces it to only the latest of each package. The operations +// are done in-place. This implements a "latest wins" approach which can be used +// while merging two or more snapshots together. +func FilterLatestRefs(r *PackageRefList) { + var ( + lastArch, lastName, lastVer []byte + arch, name, ver []byte + parts [][]byte + ) + + for i := 0; i < len(r.Refs); i++ { + parts = bytes.Split(r.Refs[i][1:], []byte(" ")) + arch, name, ver = parts[0], parts[1], parts[2] + + if bytes.Equal(arch, lastArch) && bytes.Equal(name, lastName) { + // Two packages are identical, check version and only one wins + vres := CompareVersions(string(ver), string(lastVer)) + + // Remove the older refs from the result + if vres > 0 { + // ver[i] > ver[i-1], remove element i-1 + r.Refs = append(r.Refs[:i-1], r.Refs[i:]...) + } else { + // ver[i] < ver[i-1], remove element i + r.Refs = append(r.Refs[:i], r.Refs[i+1:]...) + arch, name, ver = lastArch, lastName, lastVer + } + + // Compensate for the reduced set + i -= 1 + } + + lastArch, lastName, lastVer = arch, name, ver + } + + return +} diff --git a/src/github.com/smira/aptly/deb/reflist_test.go b/src/github.com/smira/aptly/deb/reflist_test.go new file mode 100644 index 00000000..a9781340 --- /dev/null +++ b/src/github.com/smira/aptly/deb/reflist_test.go @@ -0,0 +1,304 @@ +package deb + +import ( + "errors" + "github.com/smira/aptly/database" + . "launchpad.net/gocheck" +) + +type PackageRefListSuite struct { + // Simple list with "real" packages from stanzas + list *PackageList + p1, p2, p3, p4, p5, p6 *Package +} + +var _ = Suite(&PackageRefListSuite{}) + +func toStrSlice(reflist *PackageRefList) (result []string) { + result = make([]string, reflist.Len()) + for i, r := range reflist.Refs { + result[i] = string(r) + } + return +} + +func (s *PackageRefListSuite) SetUpTest(c *C) { + s.list = NewPackageList() + + s.p1 = NewPackageFromControlFile(packageStanza.Copy()) + s.p2 = NewPackageFromControlFile(packageStanza.Copy()) + stanza := packageStanza.Copy() + stanza["Package"] = "mars-invaders" + s.p3 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Size"] = "42" + s.p4 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Package"] = "lonely-strangers" + s.p5 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Version"] = "99.1" + s.p6 = NewPackageFromControlFile(stanza) +} + +func (s *PackageRefListSuite) TestNewPackageListFromRefList(c *C) { + db, _ := database.OpenDB(c.MkDir()) + coll := NewPackageCollection(db) + coll.Update(s.p1) + coll.Update(s.p3) + + s.list.Add(s.p1) + s.list.Add(s.p3) + s.list.Add(s.p5) + s.list.Add(s.p6) + + reflist := NewPackageRefListFromPackageList(s.list) + + _, err := NewPackageListFromRefList(reflist, coll, nil) + c.Assert(err, ErrorMatches, "unable to load package with key.*") + + coll.Update(s.p5) + coll.Update(s.p6) + + list, err := NewPackageListFromRefList(reflist, coll, nil) + c.Assert(err, IsNil) + c.Check(list.Len(), Equals, 4) + c.Check(list.Add(s.p4), ErrorMatches, "conflict in package.*") + + list, err = NewPackageListFromRefList(nil, coll, nil) + c.Assert(err, IsNil) + c.Check(list.Len(), Equals, 0) +} + +func (s *PackageRefListSuite) TestNewPackageRefList(c *C) { + s.list.Add(s.p1) + s.list.Add(s.p3) + s.list.Add(s.p5) + s.list.Add(s.p6) + + reflist := NewPackageRefListFromPackageList(s.list) + c.Assert(reflist.Len(), Equals, 4) + c.Check(reflist.Refs[0], DeepEquals, []byte(s.p1.Key(""))) + c.Check(reflist.Refs[1], DeepEquals, []byte(s.p6.Key(""))) + c.Check(reflist.Refs[2], DeepEquals, []byte(s.p5.Key(""))) + c.Check(reflist.Refs[3], DeepEquals, []byte(s.p3.Key(""))) + + reflist = NewPackageRefList() + c.Check(reflist.Len(), Equals, 0) +} + +func (s *PackageRefListSuite) TestPackageRefListEncodeDecode(c *C) { + s.list.Add(s.p1) + s.list.Add(s.p3) + s.list.Add(s.p5) + s.list.Add(s.p6) + + reflist := NewPackageRefListFromPackageList(s.list) + + reflist2 := &PackageRefList{} + err := reflist2.Decode(reflist.Encode()) + c.Assert(err, IsNil) + c.Check(reflist2.Len(), Equals, reflist.Len()) + c.Check(reflist2.Refs, DeepEquals, reflist.Refs) +} + +func (s *PackageRefListSuite) TestPackageRefListForeach(c *C) { + s.list.Add(s.p1) + s.list.Add(s.p3) + s.list.Add(s.p5) + s.list.Add(s.p6) + + reflist := NewPackageRefListFromPackageList(s.list) + + Len := 0 + err := reflist.ForEach(func([]byte) error { + Len++ + return nil + }) + + c.Check(Len, Equals, 4) + c.Check(err, IsNil) + + e := errors.New("b") + + err = reflist.ForEach(func([]byte) error { + return e + }) + + c.Check(err, Equals, e) +} + +func (s *PackageRefListSuite) TestSubstract(c *C) { + r1 := []byte("r1") + r2 := []byte("r2") + r3 := []byte("r3") + r4 := []byte("r4") + r5 := []byte("r5") + + empty := &PackageRefList{Refs: [][]byte{}} + l1 := &PackageRefList{Refs: [][]byte{r1, r2, r3, r4}} + l2 := &PackageRefList{Refs: [][]byte{r1, r3}} + l3 := &PackageRefList{Refs: [][]byte{r2, r4}} + l4 := &PackageRefList{Refs: [][]byte{r4, r5}} + l5 := &PackageRefList{Refs: [][]byte{r1, r2, r3}} + + c.Check(l1.Substract(empty), DeepEquals, l1) + c.Check(l1.Substract(l2), DeepEquals, l3) + c.Check(l1.Substract(l3), DeepEquals, l2) + c.Check(l1.Substract(l4), DeepEquals, l5) + c.Check(empty.Substract(l1), DeepEquals, empty) + c.Check(l2.Substract(l3), DeepEquals, l2) +} + +func (s *PackageRefListSuite) TestDiff(c *C) { + db, _ := database.OpenDB(c.MkDir()) + coll := NewPackageCollection(db) + + packages := []*Package{ + &Package{Name: "lib", Version: "1.0", Architecture: "i386"}, //0 + &Package{Name: "dpkg", Version: "1.7", Architecture: "i386"}, //1 + &Package{Name: "data", Version: "1.1~bp1", Architecture: "all"}, //2 + &Package{Name: "app", Version: "1.1~bp1", Architecture: "i386"}, //3 + &Package{Name: "app", Version: "1.1~bp2", Architecture: "i386"}, //4 + &Package{Name: "app", Version: "1.1~bp2", Architecture: "amd64"}, //5 + &Package{Name: "xyz", Version: "3.0", Architecture: "sparc"}, //6 + } + + for _, p := range packages { + coll.Update(p) + } + + listA := NewPackageList() + listA.Add(packages[0]) + listA.Add(packages[1]) + listA.Add(packages[2]) + listA.Add(packages[3]) + listA.Add(packages[6]) + + listB := NewPackageList() + listB.Add(packages[0]) + listB.Add(packages[2]) + listB.Add(packages[4]) + listB.Add(packages[5]) + + reflistA := NewPackageRefListFromPackageList(listA) + reflistB := NewPackageRefListFromPackageList(listB) + + diffAA, err := reflistA.Diff(reflistA, coll) + c.Check(err, IsNil) + c.Check(diffAA, HasLen, 0) + + diffAB, err := reflistA.Diff(reflistB, coll) + c.Check(err, IsNil) + c.Check(diffAB, HasLen, 4) + + c.Check(diffAB[0].Left, IsNil) + c.Check(diffAB[0].Right.String(), Equals, "app_1.1~bp2_amd64") + + c.Check(diffAB[1].Left.String(), Equals, "app_1.1~bp1_i386") + c.Check(diffAB[1].Right.String(), Equals, "app_1.1~bp2_i386") + + c.Check(diffAB[2].Left.String(), Equals, "dpkg_1.7_i386") + c.Check(diffAB[2].Right, IsNil) + + c.Check(diffAB[3].Left.String(), Equals, "xyz_3.0_sparc") + c.Check(diffAB[3].Right, IsNil) + + diffBA, err := reflistB.Diff(reflistA, coll) + c.Check(err, IsNil) + c.Check(diffBA, HasLen, 4) + + c.Check(diffBA[0].Right, IsNil) + c.Check(diffBA[0].Left.String(), Equals, "app_1.1~bp2_amd64") + + c.Check(diffBA[1].Right.String(), Equals, "app_1.1~bp1_i386") + c.Check(diffBA[1].Left.String(), Equals, "app_1.1~bp2_i386") + + c.Check(diffBA[2].Right.String(), Equals, "dpkg_1.7_i386") + c.Check(diffBA[2].Left, IsNil) + + c.Check(diffBA[3].Right.String(), Equals, "xyz_3.0_sparc") + c.Check(diffBA[3].Left, IsNil) + +} + +func (s *PackageRefListSuite) TestMerge(c *C) { + db, _ := database.OpenDB(c.MkDir()) + coll := NewPackageCollection(db) + + packages := []*Package{ + &Package{Name: "lib", Version: "1.0", Architecture: "i386"}, //0 + &Package{Name: "dpkg", Version: "1.7", Architecture: "i386"}, //1 + &Package{Name: "data", Version: "1.1~bp1", Architecture: "all"}, //2 + &Package{Name: "app", Version: "1.1~bp1", Architecture: "i386"}, //3 + &Package{Name: "app", Version: "1.1~bp2", Architecture: "i386"}, //4 + &Package{Name: "app", Version: "1.1~bp2", Architecture: "amd64"}, //5 + &Package{Name: "dpkg", Version: "1.0", Architecture: "i386"}, //6 + &Package{Name: "xyz", Version: "1.0", Architecture: "sparc"}, //7 + } + + for _, p := range packages { + coll.Update(p) + } + + listA := NewPackageList() + listA.Add(packages[0]) + listA.Add(packages[1]) + listA.Add(packages[2]) + listA.Add(packages[3]) + listA.Add(packages[7]) + + listB := NewPackageList() + listB.Add(packages[0]) + listB.Add(packages[2]) + listB.Add(packages[4]) + listB.Add(packages[5]) + listB.Add(packages[6]) + + reflistA := NewPackageRefListFromPackageList(listA) + reflistB := NewPackageRefListFromPackageList(listB) + + mergeAB := reflistA.Merge(reflistB, true) + mergeBA := reflistB.Merge(reflistA, true) + + c.Check(toStrSlice(mergeAB), DeepEquals, + []string{"Pall data 1.1~bp1", "Pamd64 app 1.1~bp2", "Pi386 app 1.1~bp2", "Pi386 dpkg 1.0", "Pi386 lib 1.0", "Psparc xyz 1.0"}) + c.Check(toStrSlice(mergeBA), DeepEquals, + []string{"Pall data 1.1~bp1", "Pamd64 app 1.1~bp2", "Pi386 app 1.1~bp1", "Pi386 dpkg 1.7", "Pi386 lib 1.0", "Psparc xyz 1.0"}) + + mergeABall := reflistA.Merge(reflistB, false) + mergeBAall := reflistB.Merge(reflistA, false) + + c.Check(mergeABall, DeepEquals, mergeBAall) + c.Check(toStrSlice(mergeBAall), DeepEquals, + []string{"Pall data 1.1~bp1", "Pamd64 app 1.1~bp2", "Pi386 app 1.1~bp1", "Pi386 app 1.1~bp2", "Pi386 dpkg 1.0", "Pi386 dpkg 1.7", "Pi386 lib 1.0", "Psparc xyz 1.0"}) +} + +func (s *PackageRefListSuite) TestFilterLatestRefs(c *C) { + packages := []*Package{ + &Package{Name: "lib", Version: "1.0", Architecture: "i386"}, + &Package{Name: "lib", Version: "1.2~bp1", Architecture: "i386"}, + &Package{Name: "lib", Version: "1.2", Architecture: "i386"}, + &Package{Name: "dpkg", Version: "1.2", Architecture: "i386"}, + &Package{Name: "dpkg", Version: "1.3", Architecture: "i386"}, + &Package{Name: "dpkg", Version: "1.3~bp2", Architecture: "i386"}, + &Package{Name: "dpkg", Version: "1.5", Architecture: "i386"}, + &Package{Name: "dpkg", Version: "1.6", Architecture: "i386"}, + } + + rl := NewPackageList() + rl.Add(packages[0]) + rl.Add(packages[1]) + rl.Add(packages[2]) + rl.Add(packages[3]) + rl.Add(packages[4]) + rl.Add(packages[5]) + rl.Add(packages[6]) + rl.Add(packages[7]) + + result := NewPackageRefListFromPackageList(rl) + FilterLatestRefs(result) + + c.Check(toStrSlice(result), DeepEquals, + []string{"Pi386 dpkg 1.6", "Pi386 lib 1.2"}) +} diff --git a/src/github.com/smira/aptly/deb/remote.go b/src/github.com/smira/aptly/deb/remote.go new file mode 100644 index 00000000..f2c7ba69 --- /dev/null +++ b/src/github.com/smira/aptly/deb/remote.go @@ -0,0 +1,625 @@ +package deb + +import ( + "bytes" + "code.google.com/p/go-uuid/uuid" + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/database" + "github.com/smira/aptly/http" + "github.com/smira/aptly/utils" + "github.com/ugorji/go/codec" + "log" + "net/url" + "os" + "path" + "strconv" + "strings" + "time" +) + +// RemoteRepo represents remote (fetchable) Debian repository. +// +// Repostitory could be filtered when fetching by components, architectures +type RemoteRepo struct { + // Permanent internal ID + UUID string + // User-assigned name + Name string + // Root of Debian archive, URL + ArchiveRoot string + // Distribution name, e.g. squeeze + Distribution string + // List of components to fetch, if empty, then fetch all components + Components []string + // List of architectures to fetch, if empty, then fetch all architectures + Architectures []string + // Should we download sources? + DownloadSources bool + // Meta-information about repository + Meta Stanza + // Last update date + LastDownloadDate time.Time + // Checksums for release files + ReleaseFiles map[string]utils.ChecksumInfo + // "Snapshot" of current list of packages + packageRefs *PackageRefList + // Parsed archived root + archiveRootURL *url.URL +} + +// NewRemoteRepo creates new instance of Debian remote repository with specified params +func NewRemoteRepo(name string, archiveRoot string, distribution string, components []string, + architectures []string, downloadSources bool) (*RemoteRepo, error) { + result := &RemoteRepo{ + UUID: uuid.New(), + Name: name, + ArchiveRoot: archiveRoot, + Distribution: distribution, + Components: components, + Architectures: architectures, + DownloadSources: downloadSources, + } + + err := result.prepare() + if err != nil { + return nil, err + } + + if result.Distribution == "." || result.Distribution == "./" { + // flat repo + result.Distribution = "" + result.Architectures = nil + if len(result.Components) > 0 { + return nil, fmt.Errorf("components aren't supported for flat repos") + } + result.Components = nil + } + + return result, nil +} + +func (repo *RemoteRepo) prepare() error { + var err error + + // Add final / to URL + if !strings.HasSuffix(repo.ArchiveRoot, "/") { + repo.ArchiveRoot = repo.ArchiveRoot + "/" + } + + repo.archiveRootURL, err = url.Parse(repo.ArchiveRoot) + return err +} + +// String interface +func (repo *RemoteRepo) String() string { + srcFlag := "" + if repo.DownloadSources { + srcFlag = " [src]" + } + distribution := repo.Distribution + if distribution == "" { + distribution = "./" + } + return fmt.Sprintf("[%s]: %s %s%s", repo.Name, repo.ArchiveRoot, distribution, srcFlag) +} + +// IsFlat determines if repository is flat +func (repo *RemoteRepo) IsFlat() bool { + return repo.Distribution == "" +} + +// NumPackages return number of packages retrived from remote repo +func (repo *RemoteRepo) NumPackages() int { + if repo.packageRefs == nil { + return 0 + } + return repo.packageRefs.Len() +} + +// RefList returns package list for repo +func (repo *RemoteRepo) RefList() *PackageRefList { + return repo.packageRefs +} + +// ReleaseURL returns URL to Release* files in repo root +func (repo *RemoteRepo) ReleaseURL(name string) *url.URL { + var path *url.URL + + if !repo.IsFlat() { + path = &url.URL{Path: fmt.Sprintf("dists/%s/%s", repo.Distribution, name)} + } else { + path = &url.URL{Path: name} + } + + return repo.archiveRootURL.ResolveReference(path) +} + +// FlatBinaryURL returns URL to Packages files for flat repo +func (repo *RemoteRepo) FlatBinaryURL() *url.URL { + path := &url.URL{Path: "Packages"} + return repo.archiveRootURL.ResolveReference(path) +} + +// FlatSourcesURL returns URL to Sources files for flat repo +func (repo *RemoteRepo) FlatSourcesURL() *url.URL { + path := &url.URL{Path: "Sources"} + return repo.archiveRootURL.ResolveReference(path) +} + +// BinaryURL returns URL of Packages files for given component and +// architecture +func (repo *RemoteRepo) BinaryURL(component string, architecture string) *url.URL { + path := &url.URL{Path: fmt.Sprintf("dists/%s/%s/binary-%s/Packages", repo.Distribution, component, architecture)} + return repo.archiveRootURL.ResolveReference(path) +} + +// SourcesURL returns URL of Sources files for given component +func (repo *RemoteRepo) SourcesURL(component string) *url.URL { + path := &url.URL{Path: fmt.Sprintf("dists/%s/%s/source/Sources", repo.Distribution, component)} + return repo.archiveRootURL.ResolveReference(path) +} + +// PackageURL returns URL of package file relative to repository root +// architecture +func (repo *RemoteRepo) PackageURL(filename string) *url.URL { + path := &url.URL{Path: filename} + return repo.archiveRootURL.ResolveReference(path) +} + +// Fetch updates information about repository +func (repo *RemoteRepo) Fetch(d aptly.Downloader, verifier utils.Verifier) error { + var ( + release, inrelease, releasesig *os.File + err error + ) + + if verifier == nil { + // 0. Just download release file to temporary URL + release, err = http.DownloadTemp(d, repo.ReleaseURL("Release").String()) + if err != nil { + return err + } + } else { + // 1. try InRelease file + inrelease, err = http.DownloadTemp(d, repo.ReleaseURL("InRelease").String()) + if err != nil { + goto splitsignature + } + defer inrelease.Close() + + err = verifier.VerifyClearsigned(inrelease) + if err != nil { + goto splitsignature + } + + inrelease.Seek(0, 0) + + release, err = verifier.ExtractClearsigned(inrelease) + if err != nil { + goto splitsignature + } + + goto ok + + splitsignature: + // 2. try Release + Release.gpg + release, err = http.DownloadTemp(d, repo.ReleaseURL("Release").String()) + if err != nil { + return err + } + + releasesig, err = http.DownloadTemp(d, repo.ReleaseURL("Release.gpg").String()) + if err != nil { + return err + } + + err = verifier.VerifyDetachedSignature(releasesig, release) + if err != nil { + return err + } + + _, err = release.Seek(0, 0) + if err != nil { + return err + } + } +ok: + + defer release.Close() + + sreader := NewControlFileReader(release) + stanza, err := sreader.ReadStanza() + if err != nil { + return err + } + + if !repo.IsFlat() { + architectures := strings.Split(stanza["Architectures"], " ") + if len(repo.Architectures) == 0 { + repo.Architectures = architectures + } else { + err = utils.StringsIsSubset(repo.Architectures, architectures, + fmt.Sprintf("architecture %%s not available in repo %s", repo)) + if err != nil { + return err + } + } + + components := strings.Split(stanza["Components"], " ") + for i := range components { + components[i] = path.Base(components[i]) + } + if len(repo.Components) == 0 { + repo.Components = components + } else { + err = utils.StringsIsSubset(repo.Components, components, + fmt.Sprintf("component %%s not available in repo %s", repo)) + if err != nil { + return err + } + } + } + + repo.ReleaseFiles = make(map[string]utils.ChecksumInfo) + + parseSums := func(field string, setter func(sum *utils.ChecksumInfo, data string)) error { + for _, line := range strings.Split(stanza[field], "\n") { + line = strings.TrimSpace(line) + if line == "" { + continue + } + parts := strings.Fields(line) + + if len(parts) != 3 { + return fmt.Errorf("unparseable hash sum line: %#v", line) + } + + var size int64 + size, err = strconv.ParseInt(parts[1], 10, 64) + if err != nil { + return fmt.Errorf("unable to parse size: %s", err) + } + + sum := repo.ReleaseFiles[parts[2]] + + sum.Size = size + setter(&sum, parts[0]) + + repo.ReleaseFiles[parts[2]] = sum + } + + delete(stanza, field) + + return nil + } + + err = parseSums("MD5Sum", func(sum *utils.ChecksumInfo, data string) { sum.MD5 = data }) + if err != nil { + return err + } + + err = parseSums("SHA1", func(sum *utils.ChecksumInfo, data string) { sum.SHA1 = data }) + if err != nil { + return err + } + + err = parseSums("SHA256", func(sum *utils.ChecksumInfo, data string) { sum.SHA256 = data }) + if err != nil { + return err + } + + repo.Meta = stanza + + return nil +} + +// Download downloads all repo files +func (repo *RemoteRepo) Download(progress aptly.Progress, d aptly.Downloader, collectionFactory *CollectionFactory, packagePool aptly.PackagePool, ignoreMismatch bool) error { + list := NewPackageList() + + progress.Printf("Downloading & parsing package files...\n") + + // Download and parse all Packages & Source files + packagesURLs := [][]string{} + + if repo.IsFlat() { + packagesURLs = append(packagesURLs, []string{repo.FlatBinaryURL().String(), "binary"}) + if repo.DownloadSources { + packagesURLs = append(packagesURLs, []string{repo.FlatSourcesURL().String(), "source"}) + } + } else { + for _, component := range repo.Components { + for _, architecture := range repo.Architectures { + packagesURLs = append(packagesURLs, []string{repo.BinaryURL(component, architecture).String(), "binary"}) + } + if repo.DownloadSources { + packagesURLs = append(packagesURLs, []string{repo.SourcesURL(component).String(), "source"}) + } + } + } + + for _, info := range packagesURLs { + url, kind := info[0], info[1] + packagesReader, packagesFile, err := http.DownloadTryCompression(d, url, repo.ReleaseFiles, ignoreMismatch) + if err != nil { + return err + } + defer packagesFile.Close() + + stat, _ := packagesFile.Stat() + progress.InitBar(stat.Size(), true) + + sreader := NewControlFileReader(packagesReader) + + for { + stanza, err := sreader.ReadStanza() + if err != nil { + return err + } + if stanza == nil { + break + } + + off, _ := packagesFile.Seek(0, 1) + progress.SetBar(int(off)) + + var p *Package + + if kind == "binary" { + p = NewPackageFromControlFile(stanza) + } else if kind == "source" { + p, err = NewSourcePackageFromControlFile(stanza) + if err != nil { + return err + } + } + err = list.Add(p) + if err != nil { + return err + } + + err = collectionFactory.PackageCollection().Update(p) + if err != nil { + return err + } + } + + progress.ShutdownBar() + } + + progress.Printf("Building download queue...\n") + + // Build download queue + queued := make(map[string]PackageDownloadTask, list.Len()) + count := 0 + downloadSize := int64(0) + + err := list.ForEach(func(p *Package) error { + list, err2 := p.DownloadList(packagePool) + if err2 != nil { + return err2 + } + p.files = nil + + for _, task := range list { + key := task.RepoURI + "-" + task.DestinationPath + _, found := queued[key] + if !found { + count++ + downloadSize += task.Checksums.Size + queued[key] = task + } + } + + return nil + }) + if err != nil { + return fmt.Errorf("unable to build download queue: %s", err) + } + + repo.packageRefs = NewPackageRefListFromPackageList(list) + // free up package list, we don't need it after this point + list = nil + + progress.Printf("Download queue: %d items (%s)\n", count, utils.HumanBytes(downloadSize)) + + progress.InitBar(downloadSize, true) + + // Download all package files + ch := make(chan error, len(queued)) + + for _, task := range queued { + d.DownloadWithChecksum(repo.PackageURL(task.RepoURI).String(), task.DestinationPath, ch, task.Checksums, ignoreMismatch) + } + + // We don't need queued after this point + queued = nil + + // Wait for all downloads to finish + errors := make([]string, 0) + + for count > 0 { + err = <-ch + if err != nil { + errors = append(errors, err.Error()) + } + count-- + } + + progress.ShutdownBar() + + if len(errors) > 0 { + return fmt.Errorf("download errors:\n %s\n", strings.Join(errors, "\n ")) + } + + repo.LastDownloadDate = time.Now() + + return nil +} + +// Encode does msgpack encoding of RemoteRepo +func (repo *RemoteRepo) Encode() []byte { + var buf bytes.Buffer + + encoder := codec.NewEncoder(&buf, &codec.MsgpackHandle{}) + encoder.Encode(repo) + + return buf.Bytes() +} + +// Decode decodes msgpack representation into RemoteRepo +func (repo *RemoteRepo) Decode(input []byte) error { + decoder := codec.NewDecoderBytes(input, &codec.MsgpackHandle{}) + err := decoder.Decode(repo) + if err != nil { + return err + } + return repo.prepare() +} + +// Key is a unique id in DB +func (repo *RemoteRepo) Key() []byte { + return []byte("R" + repo.UUID) +} + +// RefKey is a unique id for package reference list +func (repo *RemoteRepo) RefKey() []byte { + return []byte("E" + repo.UUID) +} + +// RemoteRepoCollection does listing, updating/adding/deleting of RemoteRepos +type RemoteRepoCollection struct { + db database.Storage + list []*RemoteRepo +} + +// NewRemoteRepoCollection loads RemoteRepos from DB and makes up collection +func NewRemoteRepoCollection(db database.Storage) *RemoteRepoCollection { + result := &RemoteRepoCollection{ + db: db, + } + + blobs := db.FetchByPrefix([]byte("R")) + result.list = make([]*RemoteRepo, 0, len(blobs)) + + for _, blob := range blobs { + r := &RemoteRepo{} + if err := r.Decode(blob); err != nil { + log.Printf("Error decoding mirror: %s\n", err) + } else { + result.list = append(result.list, r) + } + } + + return result +} + +// Add appends new repo to collection and saves it +func (collection *RemoteRepoCollection) Add(repo *RemoteRepo) error { + for _, r := range collection.list { + if r.Name == repo.Name { + return fmt.Errorf("mirror with name %s already exists", repo.Name) + } + } + + err := collection.Update(repo) + if err != nil { + return err + } + + collection.list = append(collection.list, repo) + return nil +} + +// Update stores updated information about repo in DB +func (collection *RemoteRepoCollection) Update(repo *RemoteRepo) error { + err := collection.db.Put(repo.Key(), repo.Encode()) + if err != nil { + return err + } + if repo.packageRefs != nil { + err = collection.db.Put(repo.RefKey(), repo.packageRefs.Encode()) + if err != nil { + return err + } + } + return nil +} + +// LoadComplete loads additional information for remote repo +func (collection *RemoteRepoCollection) LoadComplete(repo *RemoteRepo) error { + encoded, err := collection.db.Get(repo.RefKey()) + if err == database.ErrNotFound { + return nil + } + if err != nil { + return err + } + + repo.packageRefs = &PackageRefList{} + return repo.packageRefs.Decode(encoded) +} + +// ByName looks up repository by name +func (collection *RemoteRepoCollection) ByName(name string) (*RemoteRepo, error) { + for _, r := range collection.list { + if r.Name == name { + return r, nil + } + } + return nil, fmt.Errorf("mirror with name %s not found", name) +} + +// ByUUID looks up repository by uuid +func (collection *RemoteRepoCollection) ByUUID(uuid string) (*RemoteRepo, error) { + for _, r := range collection.list { + if r.UUID == uuid { + return r, nil + } + } + return nil, fmt.Errorf("mirror with uuid %s not found", uuid) +} + +// ForEach runs method for each repository +func (collection *RemoteRepoCollection) ForEach(handler func(*RemoteRepo) error) error { + var err error + for _, r := range collection.list { + err = handler(r) + if err != nil { + return err + } + } + return err +} + +// Len returns number of remote repos +func (collection *RemoteRepoCollection) Len() int { + return len(collection.list) +} + +// Drop removes remote repo from collection +func (collection *RemoteRepoCollection) Drop(repo *RemoteRepo) error { + repoPosition := -1 + + for i, r := range collection.list { + if r == repo { + repoPosition = i + break + } + } + + if repoPosition == -1 { + panic("repo not found!") + } + + collection.list[len(collection.list)-1], collection.list[repoPosition], collection.list = + nil, collection.list[len(collection.list)-1], collection.list[:len(collection.list)-1] + + err := collection.db.Delete(repo.Key()) + if err != nil { + return err + } + + return collection.db.Delete(repo.RefKey()) +} diff --git a/src/github.com/smira/aptly/deb/remote_test.go b/src/github.com/smira/aptly/deb/remote_test.go new file mode 100644 index 00000000..3cd7d87c --- /dev/null +++ b/src/github.com/smira/aptly/deb/remote_test.go @@ -0,0 +1,643 @@ +package deb + +import ( + "errors" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/console" + "github.com/smira/aptly/database" + "github.com/smira/aptly/files" + "github.com/smira/aptly/http" + "github.com/smira/aptly/utils" + "io" + "io/ioutil" + . "launchpad.net/gocheck" + "os" +) + +type NullVerifier struct { +} + +func (n *NullVerifier) InitKeyring() error { + return nil +} + +func (n *NullVerifier) AddKeyring(keyring string) { +} + +func (n *NullVerifier) VerifyDetachedSignature(signature, cleartext io.Reader) error { + return nil +} + +func (n *NullVerifier) VerifyClearsigned(clearsigned io.Reader) error { + return nil +} + +func (n *NullVerifier) ExtractClearsigned(clearsigned io.Reader) (text *os.File, err error) { + text, _ = ioutil.TempFile("", "aptly-test") + io.Copy(text, clearsigned) + text.Seek(0, 0) + os.Remove(text.Name()) + + return +} + +type PackageListMixinSuite struct { + p1, p2, p3 *Package + list *PackageList + reflist *PackageRefList +} + +func (s *PackageListMixinSuite) SetUpPackages() { + s.list = NewPackageList() + + s.p1 = NewPackageFromControlFile(packageStanza.Copy()) + stanza := packageStanza.Copy() + stanza["Package"] = "mars-invaders" + s.p2 = NewPackageFromControlFile(stanza) + stanza = packageStanza.Copy() + stanza["Package"] = "lonely-strangers" + s.p3 = NewPackageFromControlFile(stanza) + + s.list.Add(s.p1) + s.list.Add(s.p2) + s.list.Add(s.p3) + + s.reflist = NewPackageRefListFromPackageList(s.list) +} + +type RemoteRepoSuite struct { + PackageListMixinSuite + repo *RemoteRepo + flat *RemoteRepo + downloader *http.FakeDownloader + progress aptly.Progress + db database.Storage + collectionFactory *CollectionFactory + packagePool aptly.PackagePool +} + +var _ = Suite(&RemoteRepoSuite{}) + +func (s *RemoteRepoSuite) SetUpTest(c *C) { + s.repo, _ = NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian", "squeeze", []string{"main"}, []string{}, false) + s.flat, _ = NewRemoteRepo("exp42", "http://repos.express42.com/virool/precise/", "./", []string{}, []string{}, false) + s.downloader = http.NewFakeDownloader().ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/Release", exampleReleaseFile) + s.progress = console.NewProgress() + s.db, _ = database.OpenDB(c.MkDir()) + s.collectionFactory = NewCollectionFactory(s.db) + s.packagePool = files.NewPackagePool(c.MkDir()) + s.SetUpPackages() + s.progress.Start() +} + +func (s *RemoteRepoSuite) TearDownTest(c *C) { + s.progress.Shutdown() + s.db.Close() +} + +func (s *RemoteRepoSuite) TestInvalidURL(c *C) { + _, err := NewRemoteRepo("s", "http://lolo%2", "squeeze", []string{"main"}, []string{}, false) + c.Assert(err, ErrorMatches, ".*hexadecimal escape in host.*") +} + +func (s *RemoteRepoSuite) TestFlatCreation(c *C) { + c.Check(s.flat.Distribution, Equals, "") + c.Check(s.flat.Architectures, IsNil) + c.Check(s.flat.Components, IsNil) + + _, err := NewRemoteRepo("fl", "http://some.repo/", "./", []string{"main"}, []string{}, false) + c.Check(err, ErrorMatches, "components aren't supported for flat repos") +} + +func (s *RemoteRepoSuite) TestString(c *C) { + c.Check(s.repo.String(), Equals, "[yandex]: http://mirror.yandex.ru/debian/ squeeze") + c.Check(s.flat.String(), Equals, "[exp42]: http://repos.express42.com/virool/precise/ ./") + + s.repo.DownloadSources = true + s.flat.DownloadSources = true + c.Check(s.repo.String(), Equals, "[yandex]: http://mirror.yandex.ru/debian/ squeeze [src]") + c.Check(s.flat.String(), Equals, "[exp42]: http://repos.express42.com/virool/precise/ ./ [src]") +} + +func (s *RemoteRepoSuite) TestNumPackages(c *C) { + c.Check(s.repo.NumPackages(), Equals, 0) + s.repo.packageRefs = s.reflist + c.Check(s.repo.NumPackages(), Equals, 3) +} + +func (s *RemoteRepoSuite) TestIsFlat(c *C) { + c.Check(s.repo.IsFlat(), Equals, false) + c.Check(s.flat.IsFlat(), Equals, true) +} + +func (s *RemoteRepoSuite) TestRefList(c *C) { + s.repo.packageRefs = s.reflist + c.Check(s.repo.RefList(), Equals, s.reflist) +} + +func (s *RemoteRepoSuite) TestReleaseURL(c *C) { + c.Assert(s.repo.ReleaseURL("Release").String(), Equals, "http://mirror.yandex.ru/debian/dists/squeeze/Release") + c.Assert(s.repo.ReleaseURL("InRelease").String(), Equals, "http://mirror.yandex.ru/debian/dists/squeeze/InRelease") + + c.Assert(s.flat.ReleaseURL("Release").String(), Equals, "http://repos.express42.com/virool/precise/Release") +} + +func (s *RemoteRepoSuite) TestBinaryURL(c *C) { + c.Assert(s.repo.BinaryURL("main", "amd64").String(), Equals, "http://mirror.yandex.ru/debian/dists/squeeze/main/binary-amd64/Packages") +} + +func (s *RemoteRepoSuite) TestSourcesURL(c *C) { + c.Assert(s.repo.SourcesURL("main").String(), Equals, "http://mirror.yandex.ru/debian/dists/squeeze/main/source/Sources") +} + +func (s *RemoteRepoSuite) TestFlatBinaryURL(c *C) { + c.Assert(s.flat.FlatBinaryURL().String(), Equals, "http://repos.express42.com/virool/precise/Packages") +} + +func (s *RemoteRepoSuite) TestFlatSourcesURL(c *C) { + c.Assert(s.flat.FlatSourcesURL().String(), Equals, "http://repos.express42.com/virool/precise/Sources") +} + +func (s *RemoteRepoSuite) TestPackageURL(c *C) { + c.Assert(s.repo.PackageURL("pool/main/0/0ad/0ad_0~r11863-2_i386.deb").String(), Equals, + "http://mirror.yandex.ru/debian/pool/main/0/0ad/0ad_0~r11863-2_i386.deb") +} + +func (s *RemoteRepoSuite) TestFetch(c *C) { + err := s.repo.Fetch(s.downloader, nil) + c.Assert(err, IsNil) + c.Assert(s.repo.Architectures, DeepEquals, []string{"amd64", "armel", "armhf", "i386", "powerpc"}) + c.Assert(s.repo.Components, DeepEquals, []string{"main"}) + c.Assert(s.downloader.Empty(), Equals, true) + + c.Check(s.repo.ReleaseFiles, HasLen, 39) + c.Check(s.repo.ReleaseFiles["main/binary-i386/Packages.bz2"], DeepEquals, + utils.ChecksumInfo{ + Size: 734, + MD5: "7954ed80936429687122b554620c1b5b", + SHA1: "95a463a0739bf9ff622c8d68f6e4598d400f5248", + SHA256: "377890a26f99db55e117dfc691972dcbbb7d8be1630c8fc8297530c205377f2b"}) +} + +func (s *RemoteRepoSuite) TestFetchNullVerifier1(c *C) { + downloader := http.NewFakeDownloader() + downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/InRelease", errors.New("404")) + downloader.ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/Release", exampleReleaseFile) + downloader.ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/Release.gpg", "GPG") + + err := s.repo.Fetch(downloader, &NullVerifier{}) + c.Assert(err, IsNil) + c.Assert(s.repo.Architectures, DeepEquals, []string{"amd64", "armel", "armhf", "i386", "powerpc"}) + c.Assert(s.repo.Components, DeepEquals, []string{"main"}) + c.Assert(downloader.Empty(), Equals, true) +} + +func (s *RemoteRepoSuite) TestFetchNullVerifier2(c *C) { + downloader := http.NewFakeDownloader() + downloader.ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/InRelease", exampleReleaseFile) + + err := s.repo.Fetch(downloader, &NullVerifier{}) + c.Assert(err, IsNil) + c.Assert(s.repo.Architectures, DeepEquals, []string{"amd64", "armel", "armhf", "i386", "powerpc"}) + c.Assert(s.repo.Components, DeepEquals, []string{"main"}) + c.Assert(downloader.Empty(), Equals, true) +} + +func (s *RemoteRepoSuite) TestFetchWrongArchitecture(c *C) { + s.repo, _ = NewRemoteRepo("s", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{"xyz"}, false) + err := s.repo.Fetch(s.downloader, nil) + c.Assert(err, ErrorMatches, "architecture xyz not available in repo.*") +} + +func (s *RemoteRepoSuite) TestFetchWrongComponent(c *C) { + s.repo, _ = NewRemoteRepo("s", "http://mirror.yandex.ru/debian/", "squeeze", []string{"xyz"}, []string{"i386"}, false) + err := s.repo.Fetch(s.downloader, nil) + c.Assert(err, ErrorMatches, "component xyz not available in repo.*") +} + +func (s *RemoteRepoSuite) TestEncodeDecode(c *C) { + repo := &RemoteRepo{} + err := repo.Decode(s.repo.Encode()) + c.Assert(err, IsNil) + + c.Check(repo.Name, Equals, "yandex") + c.Check(repo.ArchiveRoot, Equals, "http://mirror.yandex.ru/debian/") +} + +func (s *RemoteRepoSuite) TestKey(c *C) { + c.Assert(len(s.repo.Key()), Equals, 37) + c.Assert(s.repo.Key()[0], Equals, byte('R')) +} + +func (s *RemoteRepoSuite) TestRefKey(c *C) { + c.Assert(len(s.repo.RefKey()), Equals, 37) + c.Assert(s.repo.RefKey()[0], Equals, byte('E')) + c.Assert(s.repo.RefKey()[1:], DeepEquals, s.repo.Key()[1:]) +} + +func (s *RemoteRepoSuite) TestDownload(c *C) { + s.repo.Architectures = []string{"i386"} + + err := s.repo.Fetch(s.downloader, nil) + c.Assert(err, IsNil) + + s.downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/main/binary-i386/Packages.bz2", errors.New("HTTP 404")) + s.downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/main/binary-i386/Packages.gz", errors.New("HTTP 404")) + s.downloader.ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/main/binary-i386/Packages", examplePackagesFile) + s.downloader.ExpectResponse("http://mirror.yandex.ru/debian/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb", "xyz") + + err = s.repo.Download(s.progress, s.downloader, s.collectionFactory, s.packagePool, false) + c.Assert(err, IsNil) + c.Assert(s.downloader.Empty(), Equals, true) + c.Assert(s.repo.packageRefs, NotNil) + + pkg, err := s.collectionFactory.PackageCollection().ByKey(s.repo.packageRefs.Refs[0]) + c.Assert(err, IsNil) + + result, err := pkg.VerifyFiles(s.packagePool) + c.Check(result, Equals, true) + c.Check(err, IsNil) + + c.Check(pkg.Name, Equals, "amanda-client") +} + +func (s *RemoteRepoSuite) TestDownloadWithSources(c *C) { + s.repo.Architectures = []string{"i386"} + s.repo.DownloadSources = true + + err := s.repo.Fetch(s.downloader, nil) + c.Assert(err, IsNil) + + s.downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/main/binary-i386/Packages.bz2", errors.New("HTTP 404")) + s.downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/main/binary-i386/Packages.gz", errors.New("HTTP 404")) + s.downloader.ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/main/binary-i386/Packages", examplePackagesFile) + s.downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/main/source/Sources.bz2", errors.New("HTTP 404")) + s.downloader.ExpectError("http://mirror.yandex.ru/debian/dists/squeeze/main/source/Sources.gz", errors.New("HTTP 404")) + s.downloader.ExpectResponse("http://mirror.yandex.ru/debian/dists/squeeze/main/source/Sources", exampleSourcesFile) + s.downloader.AnyExpectResponse("http://mirror.yandex.ru/debian/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb", "xyz") + s.downloader.AnyExpectResponse("http://mirror.yandex.ru/debian/pool/main/a/access-modifier-checker/access-modifier-checker_1.0-4.dsc", "abc") + s.downloader.AnyExpectResponse("http://mirror.yandex.ru/debian/pool/main/a/access-modifier-checker/access-modifier-checker_1.0.orig.tar.gz", "abcd") + s.downloader.AnyExpectResponse("http://mirror.yandex.ru/debian/pool/main/a/access-modifier-checker/access-modifier-checker_1.0-4.debian.tar.gz", "abcde") + + err = s.repo.Download(s.progress, s.downloader, s.collectionFactory, s.packagePool, false) + c.Assert(err, IsNil) + c.Assert(s.downloader.Empty(), Equals, true) + c.Assert(s.repo.packageRefs, NotNil) + + pkg, err := s.collectionFactory.PackageCollection().ByKey(s.repo.packageRefs.Refs[0]) + c.Assert(err, IsNil) + + result, err := pkg.VerifyFiles(s.packagePool) + c.Check(result, Equals, true) + c.Check(err, IsNil) + + c.Check(pkg.Name, Equals, "amanda-client") + + pkg, err = s.collectionFactory.PackageCollection().ByKey(s.repo.packageRefs.Refs[1]) + c.Assert(err, IsNil) + + result, err = pkg.VerifyFiles(s.packagePool) + c.Check(result, Equals, true) + c.Check(err, IsNil) + + c.Check(pkg.Name, Equals, "access-modifier-checker") +} + +func (s *RemoteRepoSuite) TestDownloadFlat(c *C) { + downloader := http.NewFakeDownloader() + downloader.ExpectResponse("http://repos.express42.com/virool/precise/Release", exampleReleaseFile) + downloader.ExpectError("http://repos.express42.com/virool/precise/Packages.bz2", errors.New("HTTP 404")) + downloader.ExpectError("http://repos.express42.com/virool/precise/Packages.gz", errors.New("HTTP 404")) + downloader.ExpectResponse("http://repos.express42.com/virool/precise/Packages", examplePackagesFile) + downloader.ExpectResponse("http://repos.express42.com/virool/precise/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb", "xyz") + + err := s.flat.Fetch(downloader, nil) + c.Assert(err, IsNil) + + err = s.flat.Download(s.progress, downloader, s.collectionFactory, s.packagePool, false) + c.Assert(err, IsNil) + c.Assert(downloader.Empty(), Equals, true) + c.Assert(s.flat.packageRefs, NotNil) + + pkg, err := s.collectionFactory.PackageCollection().ByKey(s.flat.packageRefs.Refs[0]) + c.Assert(err, IsNil) + + result, err := pkg.VerifyFiles(s.packagePool) + c.Check(result, Equals, true) + c.Check(err, IsNil) + + c.Check(pkg.Name, Equals, "amanda-client") +} + +func (s *RemoteRepoSuite) TestDownloadWithSourcesFlat(c *C) { + s.flat.DownloadSources = true + + downloader := http.NewFakeDownloader() + downloader.ExpectResponse("http://repos.express42.com/virool/precise/Release", exampleReleaseFile) + downloader.ExpectError("http://repos.express42.com/virool/precise/Packages.bz2", errors.New("HTTP 404")) + downloader.ExpectError("http://repos.express42.com/virool/precise/Packages.gz", errors.New("HTTP 404")) + downloader.ExpectResponse("http://repos.express42.com/virool/precise/Packages", examplePackagesFile) + downloader.ExpectError("http://repos.express42.com/virool/precise/Sources.bz2", errors.New("HTTP 404")) + downloader.ExpectError("http://repos.express42.com/virool/precise/Sources.gz", errors.New("HTTP 404")) + downloader.ExpectResponse("http://repos.express42.com/virool/precise/Sources", exampleSourcesFile) + downloader.AnyExpectResponse("http://repos.express42.com/virool/precise/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb", "xyz") + downloader.AnyExpectResponse("http://repos.express42.com/virool/precise/pool/main/a/access-modifier-checker/access-modifier-checker_1.0-4.dsc", "abc") + downloader.AnyExpectResponse("http://repos.express42.com/virool/precise/pool/main/a/access-modifier-checker/access-modifier-checker_1.0.orig.tar.gz", "abcd") + downloader.AnyExpectResponse("http://repos.express42.com/virool/precise/pool/main/a/access-modifier-checker/access-modifier-checker_1.0-4.debian.tar.gz", "abcde") + + err := s.flat.Fetch(downloader, nil) + c.Assert(err, IsNil) + + err = s.flat.Download(s.progress, downloader, s.collectionFactory, s.packagePool, false) + c.Assert(err, IsNil) + c.Assert(downloader.Empty(), Equals, true) + c.Assert(s.flat.packageRefs, NotNil) + + pkg, err := s.collectionFactory.PackageCollection().ByKey(s.flat.packageRefs.Refs[0]) + c.Assert(err, IsNil) + + result, err := pkg.VerifyFiles(s.packagePool) + c.Check(result, Equals, true) + c.Check(err, IsNil) + + c.Check(pkg.Name, Equals, "amanda-client") + + pkg, err = s.collectionFactory.PackageCollection().ByKey(s.flat.packageRefs.Refs[1]) + c.Assert(err, IsNil) + + result, err = pkg.VerifyFiles(s.packagePool) + c.Check(result, Equals, true) + c.Check(err, IsNil) + + c.Check(pkg.Name, Equals, "access-modifier-checker") +} + +type RemoteRepoCollectionSuite struct { + PackageListMixinSuite + db database.Storage + collection *RemoteRepoCollection +} + +var _ = Suite(&RemoteRepoCollectionSuite{}) + +func (s *RemoteRepoCollectionSuite) SetUpTest(c *C) { + s.db, _ = database.OpenDB(c.MkDir()) + s.collection = NewRemoteRepoCollection(s.db) + s.SetUpPackages() +} + +func (s *RemoteRepoCollectionSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *RemoteRepoCollectionSuite) TestAddByName(c *C) { + r, err := s.collection.ByName("yandex") + c.Assert(err, ErrorMatches, "*.not found") + + repo, _ := NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + c.Assert(s.collection.Add(repo), IsNil) + c.Assert(s.collection.Add(repo), ErrorMatches, ".*already exists") + + r, err = s.collection.ByName("yandex") + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, repo.String()) + + collection := NewRemoteRepoCollection(s.db) + r, err = collection.ByName("yandex") + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, repo.String()) +} + +func (s *RemoteRepoCollectionSuite) TestByUUID(c *C) { + r, err := s.collection.ByUUID("some-uuid") + c.Assert(err, ErrorMatches, "*.not found") + + repo, _ := NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + c.Assert(s.collection.Add(repo), IsNil) + + r, err = s.collection.ByUUID(repo.UUID) + c.Assert(err, IsNil) + c.Assert(r.String(), Equals, repo.String()) +} + +func (s *RemoteRepoCollectionSuite) TestUpdateLoadComplete(c *C) { + repo, _ := NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + c.Assert(s.collection.Update(repo), IsNil) + + collection := NewRemoteRepoCollection(s.db) + r, err := collection.ByName("yandex") + c.Assert(err, IsNil) + c.Assert(r.packageRefs, IsNil) + + repo.packageRefs = s.reflist + c.Assert(s.collection.Update(repo), IsNil) + + collection = NewRemoteRepoCollection(s.db) + r, err = collection.ByName("yandex") + c.Assert(err, IsNil) + c.Assert(r.packageRefs, IsNil) + c.Assert(r.NumPackages(), Equals, 0) + c.Assert(s.collection.LoadComplete(r), IsNil) + c.Assert(r.NumPackages(), Equals, 3) +} + +func (s *RemoteRepoCollectionSuite) TestForEachAndLen(c *C) { + repo, _ := NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + s.collection.Add(repo) + + count := 0 + err := s.collection.ForEach(func(*RemoteRepo) error { + count++ + return nil + }) + c.Assert(count, Equals, 1) + c.Assert(err, IsNil) + + c.Check(s.collection.Len(), Equals, 1) + + e := errors.New("c") + + err = s.collection.ForEach(func(*RemoteRepo) error { + return e + }) + c.Assert(err, Equals, e) +} + +func (s *RemoteRepoCollectionSuite) TestDrop(c *C) { + repo1, _ := NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + s.collection.Add(repo1) + + repo2, _ := NewRemoteRepo("tyndex", "http://mirror.yandex.ru/debian/", "wheezy", []string{"main"}, []string{}, false) + s.collection.Add(repo2) + + r1, _ := s.collection.ByUUID(repo1.UUID) + c.Check(r1, Equals, repo1) + + err := s.collection.Drop(repo1) + c.Check(err, IsNil) + + _, err = s.collection.ByUUID(repo1.UUID) + c.Check(err, ErrorMatches, "mirror .* not found") + + collection := NewRemoteRepoCollection(s.db) + _, err = collection.ByName("yandex") + c.Check(err, ErrorMatches, "mirror .* not found") + + r2, _ := collection.ByName("tyndex") + c.Check(r2.String(), Equals, repo2.String()) + + c.Check(func() { s.collection.Drop(repo1) }, Panics, "repo not found!") +} + +const exampleReleaseFile = `Origin: LP-PPA-agenda-developers-daily +Label: Agenda Daily Builds +Suite: precise +Version: 12.04 +Codename: precise +Date: Thu, 05 Dec 2013 8:14:32 UTC +Architectures: amd64 armel armhf i386 powerpc +Components: main +Description: Ubuntu Precise 12.04 +MD5Sum: + 6a5fc91b7277021999268e04a8d74d4c 134 main/binary-amd64/Release + 01ff4a18aab39546fde304a35350fc2d 643 main/binary-amd64/Packages.gz + 52ded91eeb8490b02016335aa3343492 1350 main/binary-amd64/Packages + 5216f9ffe55d151cd7ce7b98b7a43bd7 735 main/binary-amd64/Packages.bz2 + d41d8cd98f00b204e9800998ecf8427e 0 main/binary-armel/Packages + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/binary-armel/Packages.bz2 + 7a9de1fb7bf60d416a77d9c9a9716675 134 main/binary-armel/Release + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/binary-armel/Packages.gz + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/binary-armhf/Packages.gz + c63d31e8e3a5650c29a7124e541d6c23 134 main/binary-armhf/Release + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/binary-armhf/Packages.bz2 + d41d8cd98f00b204e9800998ecf8427e 0 main/binary-armhf/Packages + c8d336856df67d509032bb54145c2f89 826 main/binary-i386/Packages + 92262f0668b265401291f0467bc93763 133 main/binary-i386/Release + 7954ed80936429687122b554620c1b5b 734 main/binary-i386/Packages.bz2 + e2eef4fe7d285b12c511adfa3a39069e 641 main/binary-i386/Packages.gz + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/binary-powerpc/Packages.bz2 + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/binary-powerpc/Packages.gz + d41d8cd98f00b204e9800998ecf8427e 0 main/binary-powerpc/Packages + b079563fd3367c11f7be049bc686dd10 136 main/binary-powerpc/Release + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/debian-installer/binary-amd64/Packages.gz + d41d8cd98f00b204e9800998ecf8427e 0 main/debian-installer/binary-amd64/Packages + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/debian-installer/binary-amd64/Packages.bz2 + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/debian-installer/binary-armel/Packages.gz + d41d8cd98f00b204e9800998ecf8427e 0 main/debian-installer/binary-armel/Packages + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/debian-installer/binary-armel/Packages.bz2 + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/debian-installer/binary-armhf/Packages.gz + d41d8cd98f00b204e9800998ecf8427e 0 main/debian-installer/binary-armhf/Packages + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/debian-installer/binary-armhf/Packages.bz2 + d41d8cd98f00b204e9800998ecf8427e 0 main/debian-installer/binary-i386/Packages + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/debian-installer/binary-i386/Packages.gz + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/debian-installer/binary-i386/Packages.bz2 + d41d8cd98f00b204e9800998ecf8427e 0 main/debian-installer/binary-powerpc/Packages + 4059d198768f9f8dc9372dc1c54bc3c3 14 main/debian-installer/binary-powerpc/Packages.bz2 + 9d10bb61e59bd799891ae4fbcf447ec9 29 main/debian-installer/binary-powerpc/Packages.gz + 3481d65651306df1596dca9078c2506a 135 main/source/Release + 0459b7e4512db5479cb982bac6e2f9a1 2003 main/source/Sources + 3d83a489f1bd3c04226aa6520b8a6d07 656 main/source/Sources.bz2 + b062b5b77094aeeb05ca8dbb1ecf68a9 592 main/source/Sources.gz +SHA1: + fb0b7c8935623ed7d8c45044ba62225fd8cbd4ad 134 main/binary-amd64/Release + b5d62bcec4ec18b88d664255e9051645bab7bd01 643 main/binary-amd64/Packages.gz + ed47aae8926d22d529c27b40b61604aed2cb5f2f 1350 main/binary-amd64/Packages + 5b9b171ffcea36e869eba31bcc0e1bfb2a6ad84f 735 main/binary-amd64/Packages.bz2 + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/binary-armel/Packages + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/binary-armel/Packages.bz2 + b89234a7efb74d02f15b88e264b5cd2ae1e5dc2d 134 main/binary-armel/Release + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/binary-armel/Packages.gz + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/binary-armhf/Packages.gz + 585a452e27c2e7e047c49d4b0a7459d8c627aa08 134 main/binary-armhf/Release + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/binary-armhf/Packages.bz2 + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/binary-armhf/Packages + 1d2f0cd7a3c9e687b853eb277e241cd712b6e3b1 826 main/binary-i386/Packages + 16020809662f9bda36eb516d0995658dd94d1ad5 133 main/binary-i386/Release + 95a463a0739bf9ff622c8d68f6e4598d400f5248 734 main/binary-i386/Packages.bz2 + bf8c0dec9665ba78311c97cae1755d4b2e60af76 641 main/binary-i386/Packages.gz + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/binary-powerpc/Packages.bz2 + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/binary-powerpc/Packages.gz + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/binary-powerpc/Packages + cf2ae2d98f535d90209f2c4e5790f95b393d8c2b 136 main/binary-powerpc/Release + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/debian-installer/binary-amd64/Packages.gz + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/debian-installer/binary-amd64/Packages + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/debian-installer/binary-amd64/Packages.bz2 + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/debian-installer/binary-armel/Packages.gz + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/debian-installer/binary-armel/Packages + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/debian-installer/binary-armel/Packages.bz2 + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/debian-installer/binary-armhf/Packages.gz + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/debian-installer/binary-armhf/Packages + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/debian-installer/binary-armhf/Packages.bz2 + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/debian-installer/binary-i386/Packages + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/debian-installer/binary-i386/Packages.gz + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/debian-installer/binary-i386/Packages.bz2 + da39a3ee5e6b4b0d3255bfef95601890afd80709 0 main/debian-installer/binary-powerpc/Packages + 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 main/debian-installer/binary-powerpc/Packages.bz2 + 3df6ca52b6e8ecfb4a8fac6b8e02c777e3c7960d 29 main/debian-installer/binary-powerpc/Packages.gz + 49cfec0c9b1df3a25e983a3ddf29d15b0e376e02 135 main/source/Release + 6b92e0fc84307226172696fde59ca5f33f380b57 2003 main/source/Sources + ecb8afea11030a5df46941cb8ec297ca24c85736 656 main/source/Sources.bz2 + 923e71383969c91146f12fa8cd121397f2467a2e 592 main/source/Sources.gz +SHA256: + 8c0314cfb1b48a8daf47f77420330fd0d78a31897eeb46e05a51964c9f2c02df 134 main/binary-amd64/Release + 81b072773d2fdd8471473e060d3bf73255e4c00d322cf387654736ea196e83b4 643 main/binary-amd64/Packages.gz + c7bb299483277bbf7bf4165042edaf547f5fa18f5782c7d2cd8407a38a327cc8 1350 main/binary-amd64/Packages + d263f735c3830caa33ae6441529bd4f8e382205af597ab2cdfcea73afdaa21ab 735 main/binary-amd64/Packages.bz2 + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/binary-armel/Packages + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/binary-armel/Packages.bz2 + 75ede815b020626c6aa16201d24099ed7e06f03643d0cf38ef194f1029ea648b 134 main/binary-armel/Release + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/binary-armel/Packages.gz + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/binary-armhf/Packages.gz + d25382b633c4a1621f8df6ce86e5c63da2e506a377e05ae9453238bb18191540 134 main/binary-armhf/Release + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/binary-armhf/Packages.bz2 + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/binary-armhf/Packages + b1bb341bb613363ca29440c2eb9c08a9289de5458209990ec502ed27711a83a2 826 main/binary-i386/Packages + e5aaceaac5ecb59143a4b4ed2bf700fe85d6cf08addd10cf2058bde697b7b219 133 main/binary-i386/Release + 377890a26f99db55e117dfc691972dcbbb7d8be1630c8fc8297530c205377f2b 734 main/binary-i386/Packages.bz2 + 6361e8efc67d2e7c1a8db45388aec0311007c0a1bd96698623ddeb5ed0bdc914 641 main/binary-i386/Packages.gz + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/binary-powerpc/Packages.bz2 + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/binary-powerpc/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/binary-powerpc/Packages + 03b5c97a99aa799964eb5a77f8a62ad38a241b93a87eacac6cf75a270a6d417c 136 main/binary-powerpc/Release + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/debian-installer/binary-amd64/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/debian-installer/binary-amd64/Packages + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/debian-installer/binary-amd64/Packages.bz2 + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/debian-installer/binary-armel/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/debian-installer/binary-armel/Packages + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/debian-installer/binary-armel/Packages.bz2 + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/debian-installer/binary-armhf/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/debian-installer/binary-armhf/Packages + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/debian-installer/binary-armhf/Packages.bz2 + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/debian-installer/binary-i386/Packages + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/debian-installer/binary-i386/Packages.gz + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/debian-installer/binary-i386/Packages.bz2 + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/debian-installer/binary-powerpc/Packages + d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 main/debian-installer/binary-powerpc/Packages.bz2 + 825d493158fe0f50ca1acd70367aefa391170563af2e4ee9cedbcbe6796c8384 29 main/debian-installer/binary-powerpc/Packages.gz + d683102993b6f11067ce86d73111f067e36a199e9dc1f4295c8b19c274dc9ef8 135 main/source/Release + 45f868fd5d9efe611d67572ffcf96a00a5b9ec38ea5102753290c38c36b8c282 2003 main/source/Sources + d178f1e310218d9f0f16c37d0780637f1cf3640a94a7fb0e24dc940c51b1e115 656 main/source/Sources.bz2 + 080228b550da407fb8ac73fb30b37323468fd2b2de98dd56a324ee7d701f6103 592 main/source/Sources.gz` + +const examplePackagesFile = `Package: amanda-client +Source: amanda +Version: 1:3.3.1-3~bpo60+1 +Installed-Size: 880 +Maintainer: Bdale Garbee +Architecture: i386 +Replaces: amanda-common (<< 1:2.5.2p1-3) +Depends: libc6 (>= 2.3), libcurl3 (>= 7.16.2-1), libglib2.0-0 (>= 2.12.0), libreadline6 (>= 6.0), libssl0.9.8 (>= 0.9.8m-1), amanda-common (= 1:3.3.1-3~bpo60+1) +Suggests: gnuplot, dump, smbclient +Conflicts: amanda, amanda-common (<< 1:2.5.2p1-3) +Description: Advanced Maryland Automatic Network Disk Archiver (Client) +Description-md5: 21af3684379a64cacc51c39152ab1062 +Section: utils +Priority: optional +Filename: pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb +Size: 3 +MD5sum: d16fb36f0911f878998c136191af705e +SHA1: 66b27417d37e024c46526c2f6d358a754fc552f3 +SHA256: 3608bca1e44ea6c4d268eb6db02260269892c0b42b86bbf1e77a6fa16c3c9282 +` + +const exampleSourcesFile = sourcePackageMeta diff --git a/src/github.com/smira/aptly/deb/snapshot.go b/src/github.com/smira/aptly/deb/snapshot.go new file mode 100644 index 00000000..52bfa7f1 --- /dev/null +++ b/src/github.com/smira/aptly/deb/snapshot.go @@ -0,0 +1,293 @@ +package deb + +import ( + "bytes" + "code.google.com/p/go-uuid/uuid" + "errors" + "fmt" + "github.com/smira/aptly/database" + "github.com/smira/aptly/utils" + "github.com/ugorji/go/codec" + "log" + "time" +) + +// Snapshot is immutable state of repository: list of packages +type Snapshot struct { + // Persisten internal ID + UUID string + // Human-readable name + Name string + // Date of creation + CreatedAt time.Time + + // Source: kind + ID + SourceKind string + SourceIDs []string + // Description of how snapshot was created + Description string + + packageRefs *PackageRefList +} + +// NewSnapshotFromRepository creates snapshot from current state of repository +func NewSnapshotFromRepository(name string, repo *RemoteRepo) (*Snapshot, error) { + if repo.packageRefs == nil { + return nil, errors.New("mirror not updated") + } + + return &Snapshot{ + UUID: uuid.New(), + Name: name, + CreatedAt: time.Now(), + SourceKind: "repo", + SourceIDs: []string{repo.UUID}, + Description: fmt.Sprintf("Snapshot from mirror %s", repo), + packageRefs: repo.packageRefs, + }, nil +} + +// NewSnapshotFromLocalRepo creates snapshot from current state of local repository +func NewSnapshotFromLocalRepo(name string, repo *LocalRepo) (*Snapshot, error) { + if repo.packageRefs == nil { + return nil, errors.New("local repo doesn't have packages") + } + + return &Snapshot{ + UUID: uuid.New(), + Name: name, + CreatedAt: time.Now(), + SourceKind: "local", + SourceIDs: []string{repo.UUID}, + Description: fmt.Sprintf("Snapshot from local repo %s", repo), + packageRefs: repo.packageRefs, + }, nil +} + +// NewSnapshotFromPackageList creates snapshot from PackageList +func NewSnapshotFromPackageList(name string, sources []*Snapshot, list *PackageList, description string) *Snapshot { + return NewSnapshotFromRefList(name, sources, NewPackageRefListFromPackageList(list), description) +} + +// NewSnapshotFromRefList creates snapshot from PackageRefList +func NewSnapshotFromRefList(name string, sources []*Snapshot, list *PackageRefList, description string) *Snapshot { + sourceUUIDs := make([]string, len(sources)) + for i := range sources { + sourceUUIDs[i] = sources[i].UUID + } + + return &Snapshot{ + UUID: uuid.New(), + Name: name, + CreatedAt: time.Now(), + SourceKind: "snapshot", + SourceIDs: sourceUUIDs, + Description: description, + packageRefs: list, + } +} + +// String returns string representation of snapshot +func (s *Snapshot) String() string { + return fmt.Sprintf("[%s]: %s", s.Name, s.Description) +} + +// NumPackages returns number of packages in snapshot +func (s *Snapshot) NumPackages() int { + return s.packageRefs.Len() +} + +// RefList returns list of package refs in snapshot +func (s *Snapshot) RefList() *PackageRefList { + return s.packageRefs +} + +// Key is a unique id in DB +func (s *Snapshot) Key() []byte { + return []byte("S" + s.UUID) +} + +// RefKey is a unique id for package reference list +func (s *Snapshot) RefKey() []byte { + return []byte("E" + s.UUID) +} + +// Encode does msgpack encoding of Snapshot +func (s *Snapshot) Encode() []byte { + var buf bytes.Buffer + + encoder := codec.NewEncoder(&buf, &codec.MsgpackHandle{}) + encoder.Encode(s) + + return buf.Bytes() +} + +// Decode decodes msgpack representation into Snapshot +func (s *Snapshot) Decode(input []byte) error { + decoder := codec.NewDecoderBytes(input, &codec.MsgpackHandle{}) + return decoder.Decode(s) +} + +// SnapshotCollection does listing, updating/adding/deleting of Snapshots +type SnapshotCollection struct { + db database.Storage + list []*Snapshot +} + +// NewSnapshotCollection loads Snapshots from DB and makes up collection +func NewSnapshotCollection(db database.Storage) *SnapshotCollection { + result := &SnapshotCollection{ + db: db, + } + + blobs := db.FetchByPrefix([]byte("S")) + result.list = make([]*Snapshot, 0, len(blobs)) + + for _, blob := range blobs { + s := &Snapshot{} + if err := s.Decode(blob); err != nil { + log.Printf("Error decoding snapshot: %s\n", err) + } else { + result.list = append(result.list, s) + } + } + + return result +} + +// Add appends new repo to collection and saves it +func (collection *SnapshotCollection) Add(snapshot *Snapshot) error { + for _, s := range collection.list { + if s.Name == snapshot.Name { + return fmt.Errorf("snapshot with name %s already exists", snapshot.Name) + } + } + + err := collection.Update(snapshot) + if err != nil { + return err + } + + collection.list = append(collection.list, snapshot) + return nil +} + +// Update stores updated information about repo in DB +func (collection *SnapshotCollection) Update(snapshot *Snapshot) error { + err := collection.db.Put(snapshot.Key(), snapshot.Encode()) + if err != nil { + return err + } + return collection.db.Put(snapshot.RefKey(), snapshot.packageRefs.Encode()) +} + +// LoadComplete loads additional information about snapshot +func (collection *SnapshotCollection) LoadComplete(snapshot *Snapshot) error { + encoded, err := collection.db.Get(snapshot.RefKey()) + if err != nil { + return err + } + + snapshot.packageRefs = &PackageRefList{} + return snapshot.packageRefs.Decode(encoded) +} + +// ByName looks up snapshot by name +func (collection *SnapshotCollection) ByName(name string) (*Snapshot, error) { + for _, s := range collection.list { + if s.Name == name { + return s, nil + } + } + return nil, fmt.Errorf("snapshot with name %s not found", name) +} + +// ByUUID looks up snapshot by UUID +func (collection *SnapshotCollection) ByUUID(uuid string) (*Snapshot, error) { + for _, s := range collection.list { + if s.UUID == uuid { + return s, nil + } + } + return nil, fmt.Errorf("snapshot with uuid %s not found", uuid) +} + +// ByRemoteRepoSource looks up snapshots that have specified RemoteRepo as a source +func (collection *SnapshotCollection) ByRemoteRepoSource(repo *RemoteRepo) []*Snapshot { + result := make([]*Snapshot, 0) + + for _, s := range collection.list { + if s.SourceKind == "repo" && utils.StrSliceHasItem(s.SourceIDs, repo.UUID) { + result = append(result, s) + } + } + return result +} + +// ByLocalRepoSource looks up snapshots that have specified LocalRepo as a source +func (collection *SnapshotCollection) ByLocalRepoSource(repo *LocalRepo) []*Snapshot { + result := make([]*Snapshot, 0) + + for _, s := range collection.list { + if s.SourceKind == "local" && utils.StrSliceHasItem(s.SourceIDs, repo.UUID) { + result = append(result, s) + } + } + return result +} + +// BySnapshotSource looks up snapshots that have specified snapshot as a source +func (collection *SnapshotCollection) BySnapshotSource(snapshot *Snapshot) []*Snapshot { + result := make([]*Snapshot, 0) + + for _, s := range collection.list { + if s.SourceKind == "snapshot" && utils.StrSliceHasItem(s.SourceIDs, snapshot.UUID) { + result = append(result, s) + } + } + return result +} + +// ForEach runs method for each snapshot +func (collection *SnapshotCollection) ForEach(handler func(*Snapshot) error) error { + var err error + for _, s := range collection.list { + err = handler(s) + if err != nil { + return err + } + } + return err +} + +// Len returns number of snapshots in collection +// ForEach runs method for each snapshot +func (collection *SnapshotCollection) Len() int { + return len(collection.list) +} + +// Drop removes snapshot from collection +func (collection *SnapshotCollection) Drop(snapshot *Snapshot) error { + snapshotPosition := -1 + + for i, s := range collection.list { + if s == snapshot { + snapshotPosition = i + break + } + } + + if snapshotPosition == -1 { + panic("snapshot not found!") + } + + collection.list[len(collection.list)-1], collection.list[snapshotPosition], collection.list = + nil, collection.list[len(collection.list)-1], collection.list[:len(collection.list)-1] + + err := collection.db.Delete(snapshot.Key()) + if err != nil { + return err + } + + return collection.db.Delete(snapshot.RefKey()) +} diff --git a/src/github.com/smira/aptly/deb/snapshot_test.go b/src/github.com/smira/aptly/deb/snapshot_test.go new file mode 100644 index 00000000..9d52d713 --- /dev/null +++ b/src/github.com/smira/aptly/deb/snapshot_test.go @@ -0,0 +1,249 @@ +package deb + +import ( + "errors" + "github.com/smira/aptly/database" + . "launchpad.net/gocheck" +) + +type SnapshotSuite struct { + PackageListMixinSuite + repo *RemoteRepo +} + +var _ = Suite(&SnapshotSuite{}) + +func (s *SnapshotSuite) SetUpTest(c *C) { + s.SetUpPackages() + s.repo, _ = NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + s.repo.packageRefs = s.reflist +} + +func (s *SnapshotSuite) TestNewSnapshotFromRepository(c *C) { + snapshot, _ := NewSnapshotFromRepository("snap1", s.repo) + c.Check(snapshot.Name, Equals, "snap1") + c.Check(snapshot.NumPackages(), Equals, 3) + c.Check(snapshot.RefList().Len(), Equals, 3) + c.Check(snapshot.SourceKind, Equals, "repo") + c.Check(snapshot.SourceIDs, DeepEquals, []string{s.repo.UUID}) + + s.repo.packageRefs = nil + _, err := NewSnapshotFromRepository("snap2", s.repo) + c.Check(err, ErrorMatches, ".*not updated") +} + +func (s *SnapshotSuite) TestNewSnapshotFromLocalRepo(c *C) { + localRepo := NewLocalRepo("lala", "hoorah!") + + _, err := NewSnapshotFromLocalRepo("snap2", localRepo) + c.Check(err, ErrorMatches, "local repo doesn't have packages") + + localRepo.UpdateRefList(s.reflist) + snapshot, _ := NewSnapshotFromLocalRepo("snap1", localRepo) + c.Check(snapshot.Name, Equals, "snap1") + c.Check(snapshot.NumPackages(), Equals, 3) + c.Check(snapshot.RefList().Len(), Equals, 3) + c.Check(snapshot.SourceKind, Equals, "local") + c.Check(snapshot.SourceIDs, DeepEquals, []string{localRepo.UUID}) + +} + +func (s *SnapshotSuite) TestNewSnapshotFromPackageList(c *C) { + snap, _ := NewSnapshotFromRepository("snap1", s.repo) + + snapshot := NewSnapshotFromPackageList("snap2", []*Snapshot{snap}, s.list, "Pulled") + c.Check(snapshot.Name, Equals, "snap2") + c.Check(snapshot.NumPackages(), Equals, 3) + c.Check(snapshot.SourceKind, Equals, "snapshot") + c.Check(snapshot.SourceIDs, DeepEquals, []string{snap.UUID}) +} + +func (s *SnapshotSuite) TestNewSnapshotFromRefList(c *C) { + snap, _ := NewSnapshotFromRepository("snap1", s.repo) + + snapshot := NewSnapshotFromRefList("snap2", []*Snapshot{snap}, s.reflist, "Merged") + c.Check(snapshot.Name, Equals, "snap2") + c.Check(snapshot.NumPackages(), Equals, 3) + c.Check(snapshot.SourceKind, Equals, "snapshot") + c.Check(snapshot.SourceIDs, DeepEquals, []string{snap.UUID}) +} + +func (s *SnapshotSuite) TestKey(c *C) { + snapshot, _ := NewSnapshotFromRepository("snap1", s.repo) + c.Assert(len(snapshot.Key()), Equals, 37) + c.Assert(snapshot.Key()[0], Equals, byte('S')) +} + +func (s *SnapshotSuite) TestRefKey(c *C) { + snapshot, _ := NewSnapshotFromRepository("snap1", s.repo) + c.Assert(len(snapshot.RefKey()), Equals, 37) + c.Assert(snapshot.RefKey()[0], Equals, byte('E')) + c.Assert(snapshot.RefKey()[1:], DeepEquals, snapshot.Key()[1:]) +} + +func (s *SnapshotSuite) TestEncodeDecode(c *C) { + snapshot, _ := NewSnapshotFromRepository("snap1", s.repo) + s.repo.packageRefs = s.reflist + + snapshot2 := &Snapshot{} + c.Assert(snapshot2.Decode(snapshot.Encode()), IsNil) + c.Assert(snapshot2.Name, Equals, snapshot.Name) + c.Assert(snapshot2.packageRefs, IsNil) +} + +type SnapshotCollectionSuite struct { + PackageListMixinSuite + db database.Storage + repo1, repo2 *RemoteRepo + lrepo1, lrepo2 *LocalRepo + snapshot1, snapshot2 *Snapshot + snapshot3, snapshot4 *Snapshot + collection *SnapshotCollection +} + +var _ = Suite(&SnapshotCollectionSuite{}) + +func (s *SnapshotCollectionSuite) SetUpTest(c *C) { + s.db, _ = database.OpenDB(c.MkDir()) + s.collection = NewSnapshotCollection(s.db) + s.SetUpPackages() + + s.repo1, _ = NewRemoteRepo("yandex", "http://mirror.yandex.ru/debian/", "squeeze", []string{"main"}, []string{}, false) + s.repo1.packageRefs = s.reflist + s.snapshot1, _ = NewSnapshotFromRepository("snap1", s.repo1) + + s.repo2, _ = NewRemoteRepo("android", "http://mirror.yandex.ru/debian/", "lenny", []string{"main"}, []string{}, false) + s.repo2.packageRefs = s.reflist + s.snapshot2, _ = NewSnapshotFromRepository("snap2", s.repo2) + + s.lrepo1 = NewLocalRepo("local1", "") + s.lrepo1.packageRefs = s.reflist + s.snapshot3, _ = NewSnapshotFromLocalRepo("snap3", s.lrepo1) + + s.lrepo2 = NewLocalRepo("local2", "") + s.lrepo2.packageRefs = s.reflist + s.snapshot4, _ = NewSnapshotFromLocalRepo("snap4", s.lrepo2) +} + +func (s *SnapshotCollectionSuite) TearDownTest(c *C) { + s.db.Close() +} + +func (s *SnapshotCollectionSuite) TestAddByNameByUUID(c *C) { + snapshot, err := s.collection.ByName("snap1") + c.Assert(err, ErrorMatches, "*.not found") + + c.Assert(s.collection.Add(s.snapshot1), IsNil) + c.Assert(s.collection.Add(s.snapshot1), ErrorMatches, ".*already exists") + + c.Assert(s.collection.Add(s.snapshot2), IsNil) + + snapshot, err = s.collection.ByName("snap1") + c.Assert(err, IsNil) + c.Assert(snapshot.String(), Equals, s.snapshot1.String()) + + collection := NewSnapshotCollection(s.db) + snapshot, err = collection.ByName("snap1") + c.Assert(err, IsNil) + c.Assert(snapshot.String(), Equals, s.snapshot1.String()) + + snapshot, err = collection.ByUUID(s.snapshot1.UUID) + c.Assert(err, IsNil) + c.Assert(snapshot.String(), Equals, s.snapshot1.String()) +} + +func (s *SnapshotCollectionSuite) TestUpdateLoadComplete(c *C) { + c.Assert(s.collection.Update(s.snapshot1), IsNil) + + collection := NewSnapshotCollection(s.db) + snapshot, err := collection.ByName("snap1") + c.Assert(err, IsNil) + c.Assert(snapshot.packageRefs, IsNil) + + c.Assert(s.collection.LoadComplete(snapshot), IsNil) + c.Assert(snapshot.NumPackages(), Equals, 3) +} + +func (s *SnapshotCollectionSuite) TestForEachAndLen(c *C) { + s.collection.Add(s.snapshot1) + s.collection.Add(s.snapshot2) + + count := 0 + err := s.collection.ForEach(func(*Snapshot) error { + count++ + return nil + }) + c.Assert(count, Equals, 2) + c.Assert(err, IsNil) + + c.Check(s.collection.Len(), Equals, 2) + + e := errors.New("d") + err = s.collection.ForEach(func(*Snapshot) error { + return e + }) + c.Assert(err, Equals, e) +} + +func (s *SnapshotCollectionSuite) TestFindByRemoteRepoSource(c *C) { + c.Assert(s.collection.Add(s.snapshot1), IsNil) + c.Assert(s.collection.Add(s.snapshot2), IsNil) + + c.Check(s.collection.ByRemoteRepoSource(s.repo1), DeepEquals, []*Snapshot{s.snapshot1}) + c.Check(s.collection.ByRemoteRepoSource(s.repo2), DeepEquals, []*Snapshot{s.snapshot2}) + + repo3, _ := NewRemoteRepo("other", "http://mirror.yandex.ru/debian/", "lenny", []string{"main"}, []string{}, false) + + c.Check(s.collection.ByRemoteRepoSource(repo3), DeepEquals, []*Snapshot{}) +} + +func (s *SnapshotCollectionSuite) TestFindByLocalRepoSource(c *C) { + c.Assert(s.collection.Add(s.snapshot1), IsNil) + c.Assert(s.collection.Add(s.snapshot2), IsNil) + c.Assert(s.collection.Add(s.snapshot3), IsNil) + c.Assert(s.collection.Add(s.snapshot4), IsNil) + + c.Check(s.collection.ByLocalRepoSource(s.lrepo1), DeepEquals, []*Snapshot{s.snapshot3}) + c.Check(s.collection.ByLocalRepoSource(s.lrepo2), DeepEquals, []*Snapshot{s.snapshot4}) + + lrepo3 := NewLocalRepo("other", "") + + c.Check(s.collection.ByLocalRepoSource(lrepo3), DeepEquals, []*Snapshot{}) +} + +func (s *SnapshotCollectionSuite) TestFindSnapshotSource(c *C) { + snapshot3 := NewSnapshotFromRefList("snap3", []*Snapshot{s.snapshot1, s.snapshot2}, s.reflist, "desc1") + snapshot4 := NewSnapshotFromRefList("snap4", []*Snapshot{s.snapshot1}, s.reflist, "desc2") + snapshot5 := NewSnapshotFromRefList("snap5", []*Snapshot{snapshot3}, s.reflist, "desc3") + + c.Assert(s.collection.Add(s.snapshot1), IsNil) + c.Assert(s.collection.Add(s.snapshot2), IsNil) + c.Assert(s.collection.Add(snapshot3), IsNil) + c.Assert(s.collection.Add(snapshot4), IsNil) + c.Assert(s.collection.Add(snapshot5), IsNil) + + c.Check(s.collection.BySnapshotSource(s.snapshot1), DeepEquals, []*Snapshot{snapshot3, snapshot4}) + c.Check(s.collection.BySnapshotSource(s.snapshot2), DeepEquals, []*Snapshot{snapshot3}) + c.Check(s.collection.BySnapshotSource(snapshot5), DeepEquals, []*Snapshot{}) +} + +func (s *SnapshotCollectionSuite) TestDrop(c *C) { + s.collection.Add(s.snapshot1) + s.collection.Add(s.snapshot2) + + snap, _ := s.collection.ByUUID(s.snapshot1.UUID) + c.Check(snap, Equals, s.snapshot1) + + err := s.collection.Drop(s.snapshot1) + c.Check(err, IsNil) + + _, err = s.collection.ByUUID(s.snapshot1.UUID) + c.Check(err, ErrorMatches, "snapshot .* not found") + + collection := NewSnapshotCollection(s.db) + + _, err = collection.ByUUID(s.snapshot1.UUID) + c.Check(err, ErrorMatches, "snapshot .* not found") + + c.Check(func() { s.collection.Drop(s.snapshot1) }, Panics, "snapshot not found!") +} diff --git a/src/github.com/smira/aptly/deb/version.go b/src/github.com/smira/aptly/deb/version.go new file mode 100644 index 00000000..e7b11584 --- /dev/null +++ b/src/github.com/smira/aptly/deb/version.go @@ -0,0 +1,287 @@ +package deb + +import ( + "fmt" + "strconv" + "strings" + "unicode" +) + +// Using documentation from: http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version + +// CompareVersions compares two package versions +func CompareVersions(ver1, ver2 string) int { + e1, u1, d1 := parseVersion(ver1) + e2, u2, d2 := parseVersion(ver2) + + r := compareVersionPart(e1, e2) + if r != 0 { + return r + } + + r = compareVersionPart(u1, u2) + if r != 0 { + return r + } + + return compareVersionPart(d1, d2) +} + +// parseVersions breaks down full version to components (possibly empty) +func parseVersion(ver string) (epoch, upstream, debian string) { + i := strings.LastIndex(ver, "-") + if i != -1 { + debian, ver = ver[i+1:], ver[:i] + } + + i = strings.Index(ver, ":") + if i != -1 { + epoch, ver = ver[:i], ver[i+1:] + } + + upstream = ver + + return +} + +// compareLexicographic compares in "Debian lexicographic" way, see below compareVersionPart for details +func compareLexicographic(s1, s2 string) int { + i := 0 + l1, l2 := len(s1), len(s2) + + for { + if i == l1 && i == l2 { + // s1 equal to s2 + break + } + + if i == l2 { + // s1 is longer than s2 + if s1[i] == '~' { + return -1 // s1 < s2 + } + return 1 // s1 > s2 + } + + if i == l1 { + // s2 is longer than s1 + if s2[i] == '~' { + return 1 // s1 > s2 + } + return -1 // s1 < s2 + } + + if s1[i] == s2[i] { + i++ + continue + } + + if s1[i] == '~' { + return -1 + } + + if s2[i] == '~' { + return 1 + } + + c1, c2 := unicode.IsLetter(rune(s1[i])), unicode.IsLetter(rune(s2[i])) + if c1 && !c2 { + return -1 + } + if !c1 && c2 { + return 1 + } + + if s1[i] < s2[i] { + return -1 + } + return 1 + } + return 0 +} + +// compareVersionPart compares parts of full version +// +// From Debian Policy Manual: +// +// "The strings are compared from left to right. +// +// First the initial part of each string consisting entirely of non-digit characters is +// determined. These two parts (one of which may be empty) are compared lexically. If a +// difference is found it is returned. The lexical comparison is a comparison of ASCII values +// modified so that all the letters sort earlier than all the non-letters and so that a tilde +// sorts before anything, even the end of a part. For example, the following parts are in sorted +// order from earliest to latest: ~~, ~~a, ~, the empty part. +// +// Then the initial part of the remainder of each string which consists entirely of digit +// characters is determined. The numerical values of these two parts are compared, and any difference +// found is returned as the result of the comparison. For these purposes an empty string (which can only occur at +// the end of one or both version strings being compared) counts as zero. + +// These two steps (comparing and removing initial non-digit strings and initial digit strings) are +// repeated until a difference is found or both strings are exhausted." +func compareVersionPart(part1, part2 string) int { + i1, i2 := 0, 0 + l1, l2 := len(part1), len(part2) + + for { + j1, j2 := i1, i2 + for j1 < l1 && !unicode.IsDigit(rune(part1[j1])) { + j1++ + } + + for j2 < l2 && !unicode.IsDigit(rune(part2[j2])) { + j2++ + } + + s1, s2 := part1[i1:j1], part2[i2:j2] + r := compareLexicographic(s1, s2) + if r != 0 { + return r + } + + i1, i2 = j1, j2 + + for j1 < l1 && unicode.IsDigit(rune(part1[j1])) { + j1++ + } + + for j2 < l2 && unicode.IsDigit(rune(part2[j2])) { + j2++ + } + + s1, s2 = part1[i1:j1], part2[i2:j2] + n1, _ := strconv.Atoi(s1) + n2, _ := strconv.Atoi(s2) + + if n1 < n2 { + return -1 + } + if n1 > n2 { + return 1 + } + + i1, i2 = j1, j2 + + if i1 == l1 && i2 == l2 { + break + } + } + return 0 +} + +// Version relations +const ( + VersionDontCare = iota + VersionLess + VersionLessOrEqual + VersionEqual + VersionGreaterOrEqual + VersionGreater +) + +// Dependency is a parsed version of Debian dependency to package +type Dependency struct { + Pkg string + Relation int + Version string + Architecture string +} + +// Hash calculates some predefined unique ID of Dependency +func (d *Dependency) Hash() string { + return fmt.Sprintf("%s:%s:%d:%s", d.Architecture, d.Pkg, d.Relation, d.Version) +} + +// String produces human-readable representation +func (d *Dependency) String() string { + var rel string + switch d.Relation { + case VersionEqual: + rel = "=" + case VersionGreater: + rel = ">>" + case VersionLess: + rel = "<<" + case VersionGreaterOrEqual: + rel = ">=" + case VersionLessOrEqual: + rel = "<=" + case VersionDontCare: + return fmt.Sprintf("%s [%s]", d.Pkg, d.Architecture) + } + return fmt.Sprintf("%s (%s %s) [%s]", d.Pkg, rel, d.Version, d.Architecture) +} + +// ParseDependencyVariants parses dependencies in format "pkg (>= 1.35) | other-package" +func ParseDependencyVariants(variants string) (l []Dependency, err error) { + parts := strings.Split(variants, "|") + l = make([]Dependency, len(parts)) + + for i, part := range parts { + l[i], err = ParseDependency(strings.TrimSpace(part)) + if err != nil { + return nil, err + } + } + + return +} + +// ParseDependency parses dependency in format "pkg (>= 1.35) [arch]" into parts +func ParseDependency(dep string) (d Dependency, err error) { + if strings.HasSuffix(dep, "}") { + i := strings.LastIndex(dep, "{") + if i == -1 { + err = fmt.Errorf("unable to parse dependency: %s", dep) + return + } + d.Architecture = dep[i+1 : len(dep)-1] + + dep = strings.TrimSpace(dep[:i]) + } + + if !strings.HasSuffix(dep, ")") { + d.Pkg = strings.TrimSpace(dep) + d.Relation = VersionDontCare + return + } + + i := strings.Index(dep, "(") + if i == -1 { + err = fmt.Errorf("unable to parse dependency: %s", dep) + return + } + + d.Pkg = strings.TrimSpace(dep[0:i]) + + rel := "" + if dep[i+1] == '>' || dep[i+1] == '<' || dep[i+1] == '=' { + rel += dep[i+1 : i+2] + if dep[i+2] == '>' || dep[i+2] == '<' || dep[i+2] == '=' { + rel += dep[i+2 : i+3] + d.Version = strings.TrimSpace(dep[i+3 : len(dep)-1]) + } else { + d.Version = strings.TrimSpace(dep[i+2 : len(dep)-1]) + } + } else { + d.Version = strings.TrimSpace(dep[i+1 : len(dep)-1]) + } + + switch rel { + case "<", "<=": + d.Relation = VersionLessOrEqual + case ">", ">=": + d.Relation = VersionGreaterOrEqual + case "<<": + d.Relation = VersionLess + case ">>": + d.Relation = VersionGreater + case "", "=": + d.Relation = VersionEqual + default: + err = fmt.Errorf("relation unknown %#v in dependency %s", rel, dep) + } + + return +} diff --git a/src/github.com/smira/aptly/deb/version_test.go b/src/github.com/smira/aptly/deb/version_test.go new file mode 100644 index 00000000..53a47b95 --- /dev/null +++ b/src/github.com/smira/aptly/deb/version_test.go @@ -0,0 +1,219 @@ +package deb + +import ( + . "launchpad.net/gocheck" +) + +type VersionSuite struct { + stanza Stanza +} + +var _ = Suite(&VersionSuite{}) + +func (s *VersionSuite) TestParseVersion(c *C) { + e, u, d := parseVersion("1.3.4") + c.Check([]string{e, u, d}, DeepEquals, []string{"", "1.3.4", ""}) + + e, u, d = parseVersion("4:1.3:4") + c.Check([]string{e, u, d}, DeepEquals, []string{"4", "1.3:4", ""}) + + e, u, d = parseVersion("1.3.4-1") + c.Check([]string{e, u, d}, DeepEquals, []string{"", "1.3.4", "1"}) + + e, u, d = parseVersion("1.3-pre4-1") + c.Check([]string{e, u, d}, DeepEquals, []string{"", "1.3-pre4", "1"}) + + e, u, d = parseVersion("4:1.3-pre4-1") + c.Check([]string{e, u, d}, DeepEquals, []string{"4", "1.3-pre4", "1"}) +} + +func (s *VersionSuite) TestCompareLexicographic(c *C) { + c.Check(compareLexicographic("", ""), Equals, 0) + c.Check(compareLexicographic("pre", "pre"), Equals, 0) + + c.Check(compareLexicographic("pr", "pre"), Equals, -1) + c.Check(compareLexicographic("pre", "pr"), Equals, 1) + + c.Check(compareLexicographic("pra", "prb"), Equals, -1) + c.Check(compareLexicographic("prb", "pra"), Equals, 1) + + c.Check(compareLexicographic("prx", "pr+"), Equals, -1) + c.Check(compareLexicographic("pr+", "prx"), Equals, 1) + + c.Check(compareLexicographic("pr~", "pra"), Equals, -1) + c.Check(compareLexicographic("pra", "pr~"), Equals, 1) + + c.Check(compareLexicographic("~~", "~~a"), Equals, -1) + c.Check(compareLexicographic("~~a", "~"), Equals, -1) + c.Check(compareLexicographic("~", ""), Equals, -1) + + c.Check(compareLexicographic("~~a", "~~"), Equals, 1) + c.Check(compareLexicographic("~", "~~a"), Equals, 1) + c.Check(compareLexicographic("", "~"), Equals, 1) +} + +func (s *VersionSuite) TestCompareVersionPart(c *C) { + c.Check(compareVersionPart("", ""), Equals, 0) + c.Check(compareVersionPart("pre", "pre"), Equals, 0) + c.Check(compareVersionPart("12", "12"), Equals, 0) + c.Check(compareVersionPart("1.3.5", "1.3.5"), Equals, 0) + c.Check(compareVersionPart("1.3.5-pre1", "1.3.5-pre1"), Equals, 0) + + c.Check(compareVersionPart("1.0~beta1~svn1245", "1.0~beta1"), Equals, -1) + c.Check(compareVersionPart("1.0~beta1", "1.0"), Equals, -1) + + c.Check(compareVersionPart("1.0~beta1", "1.0~beta1~svn1245"), Equals, 1) + c.Check(compareVersionPart("1.0", "1.0~beta1"), Equals, 1) + + c.Check(compareVersionPart("1.pr", "1.pre"), Equals, -1) + c.Check(compareVersionPart("1.pre", "1.pr"), Equals, 1) + + c.Check(compareVersionPart("1.pra", "1.prb"), Equals, -1) + c.Check(compareVersionPart("1.prb", "1.pra"), Equals, 1) + + c.Check(compareVersionPart("3.prx", "3.pr+"), Equals, -1) + c.Check(compareVersionPart("3.pr+", "3.prx"), Equals, 1) + + c.Check(compareVersionPart("3.pr~", "3.pra"), Equals, -1) + c.Check(compareVersionPart("3.pra", "3.pr~"), Equals, 1) + + c.Check(compareVersionPart("2~~", "2~~a"), Equals, -1) + c.Check(compareVersionPart("2~~a", "2~"), Equals, -1) + c.Check(compareVersionPart("2~", "2"), Equals, -1) + + c.Check(compareVersionPart("2~~a", "2~~"), Equals, 1) + c.Check(compareVersionPart("2~", "2~~a"), Equals, 1) + c.Check(compareVersionPart("2", "2~"), Equals, 1) +} + +func (s *VersionSuite) TestCompareVersions(c *C) { + c.Check(CompareVersions("3:1.0~beta1~svn1245-1", "3:1.0~beta1~svn1245-1"), Equals, 0) + + c.Check(CompareVersions("1:1.0~beta1~svn1245-1", "3:1.0~beta1~svn1245-1"), Equals, -1) + c.Check(CompareVersions("1:1.0~beta1~svn1245-1", "1.0~beta1~svn1245-1"), Equals, 1) + c.Check(CompareVersions("1.0~beta1~svn1245-1", "1.0~beta1~svn1245-2"), Equals, -1) + c.Check(CompareVersions("3:1.0~beta1~svn1245-1", "3:1.0~beta1-1"), Equals, -1) + + c.Check(CompareVersions("1.0~beta1~svn1245", "1.0~beta1"), Equals, -1) + c.Check(CompareVersions("1.0~beta1", "1.0"), Equals, -1) +} + +func (s *VersionSuite) TestParseDependency(c *C) { + d, e := ParseDependency("dpkg (>= 1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionGreaterOrEqual) + c.Check(d.Version, Equals, "1.6") + c.Check(d.Architecture, Equals, "") + + d, e = ParseDependency("dpkg(>>1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionGreater) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg(1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionEqual) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg ( 1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionEqual) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg (> 1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionGreaterOrEqual) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg (< 1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionLessOrEqual) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg (= 1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionEqual) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg (<< 1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionLess) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg(>>1.6)") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionGreater) + c.Check(d.Version, Equals, "1.6") + + d, e = ParseDependency("dpkg (>>1.6) {i386}") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionGreater) + c.Check(d.Version, Equals, "1.6") + c.Check(d.Architecture, Equals, "i386") + + d, e = ParseDependency("dpkg{i386}") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionDontCare) + c.Check(d.Version, Equals, "") + c.Check(d.Architecture, Equals, "i386") + + d, e = ParseDependency("dpkg ") + c.Check(e, IsNil) + c.Check(d.Pkg, Equals, "dpkg") + c.Check(d.Relation, Equals, VersionDontCare) + c.Check(d.Version, Equals, "") + + d, e = ParseDependency("dpkg(==1.6)") + c.Check(e, ErrorMatches, "relation unknown.*") + + d, e = ParseDependency("dpkg==1.6)") + c.Check(e, ErrorMatches, "unable to parse.*") + + d, e = ParseDependency("dpkg i386}") + c.Check(e, ErrorMatches, "unable to parse.*") + + d, e = ParseDependency("dpkg ) {i386}") + c.Check(e, ErrorMatches, "unable to parse.*") +} + +func (s *VersionSuite) TestParseDependencyVariants(c *C) { + l, e := ParseDependencyVariants("dpkg (>= 1.6)") + c.Check(e, IsNil) + c.Check(l, HasLen, 1) + c.Check(l[0].Pkg, Equals, "dpkg") + c.Check(l[0].Relation, Equals, VersionGreaterOrEqual) + c.Check(l[0].Version, Equals, "1.6") + + l, e = ParseDependencyVariants("dpkg (>= 1.6) | mailer-agent") + c.Check(e, IsNil) + c.Check(l, HasLen, 2) + c.Check(l[0].Pkg, Equals, "dpkg") + c.Check(l[0].Relation, Equals, VersionGreaterOrEqual) + c.Check(l[0].Version, Equals, "1.6") + c.Check(l[1].Pkg, Equals, "mailer-agent") + c.Check(l[1].Relation, Equals, VersionDontCare) + + _, e = ParseDependencyVariants("dpkg(==1.6)") + c.Check(e, ErrorMatches, "relation unknown.*") +} + +func (s *VersionSuite) TestDependencyString(c *C) { + d, _ := ParseDependency("dpkg(>>1.6)") + d.Architecture = "i386" + c.Check(d.String(), Equals, "dpkg (>> 1.6) [i386]") + + d, _ = ParseDependency("dpkg") + d.Architecture = "i386" + c.Check(d.String(), Equals, "dpkg [i386]") +} diff --git a/src/github.com/smira/aptly/files/files.go b/src/github.com/smira/aptly/files/files.go new file mode 100644 index 00000000..70e15913 --- /dev/null +++ b/src/github.com/smira/aptly/files/files.go @@ -0,0 +1,19 @@ +// Package files handles operation on filesystem for both public pool and published files +package files + +// Repository directory structure: +// +// \- pool +// \- ab +// \- ae +// \- package.deb +// \- public +// \- dists +// \- squeeze +// \- Release +// \- main +// \- binary-i386 +// \- Packages.bz2 +// references packages from pool +// \- pool +// contains symlinks to main pool diff --git a/src/github.com/smira/aptly/files/files_test.go b/src/github.com/smira/aptly/files/files_test.go new file mode 100644 index 00000000..523bf714 --- /dev/null +++ b/src/github.com/smira/aptly/files/files_test.go @@ -0,0 +1,11 @@ +package files + +import ( + . "launchpad.net/gocheck" + "testing" +) + +// Launch gocheck tests +func Test(t *testing.T) { + TestingT(t) +} diff --git a/src/github.com/smira/aptly/files/package_pool.go b/src/github.com/smira/aptly/files/package_pool.go new file mode 100644 index 00000000..385ed050 --- /dev/null +++ b/src/github.com/smira/aptly/files/package_pool.go @@ -0,0 +1,154 @@ +package files + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "io" + "io/ioutil" + "os" + "path/filepath" +) + +// PackagePool is deduplicated storage of package files on filesystem +type PackagePool struct { + rootPath string +} + +// Check interface +var ( + _ aptly.PackagePool = (*PackagePool)(nil) +) + +// NewPackagePool creates new instance of PackagePool which specified root +func NewPackagePool(root string) *PackagePool { + return &PackagePool{rootPath: filepath.Join(root, "pool")} +} + +// RelativePath returns path relative to pool's root for package files given MD5 and original filename +func (pool *PackagePool) RelativePath(filename string, hashMD5 string) (string, error) { + filename = filepath.Base(filename) + if filename == "." || filename == "/" { + return "", fmt.Errorf("filename %s is invalid", filename) + } + + if len(hashMD5) < 4 { + return "", fmt.Errorf("unable to compute pool location for filename %v, MD5 is missing", filename) + } + + return filepath.Join(hashMD5[0:2], hashMD5[2:4], filename), nil +} + +// Path returns full path to package file in pool given any name and hash of file contents +func (pool *PackagePool) Path(filename string, hashMD5 string) (string, error) { + relative, err := pool.RelativePath(filename, hashMD5) + if err != nil { + return "", err + } + + return filepath.Join(pool.rootPath, relative), nil +} + +// FilepathList returns file paths of all the files in the pool +func (pool *PackagePool) FilepathList(progress aptly.Progress) ([]string, error) { + dirs, err := ioutil.ReadDir(pool.rootPath) + if err != nil { + if os.IsNotExist(err) { + return nil, nil + } + return nil, err + } + + if len(dirs) == 0 { + return nil, nil + } + + if progress != nil { + progress.InitBar(int64(len(dirs)), false) + defer progress.ShutdownBar() + } + + result := []string{} + + for _, dir := range dirs { + err = filepath.Walk(filepath.Join(pool.rootPath, dir.Name()), func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + if !info.IsDir() { + result = append(result, path[len(pool.rootPath)+1:]) + } + return nil + }) + if err != nil { + return nil, err + } + + if progress != nil { + progress.AddBar(1) + } + } + + return result, nil +} + +// Remove deletes file in package pool returns its size +func (pool *PackagePool) Remove(path string) (size int64, err error) { + path = filepath.Join(pool.rootPath, path) + + info, err := os.Stat(path) + if err != nil { + return 0, err + } + + err = os.Remove(path) + return info.Size(), err +} + +// Import copies file into package pool +func (pool *PackagePool) Import(path string, hashMD5 string) error { + source, err := os.Open(path) + if err != nil { + return err + } + defer source.Close() + + sourceInfo, err := source.Stat() + if err != nil { + return err + } + + poolPath, err := pool.Path(path, hashMD5) + if err != nil { + return err + } + + targetInfo, err := os.Stat(poolPath) + if err != nil { + if !os.IsNotExist(err) { + // unable to stat target location? + return err + } + // file doesn't exist, that's ok + } else { + if targetInfo.Size() != sourceInfo.Size() { + // trying to overwrite file? + return fmt.Errorf("unable to import into pool: file %s already exists", poolPath) + } + } + + // create subdirs as necessary + err = os.MkdirAll(filepath.Dir(poolPath), 0755) + if err != nil { + return err + } + + target, err := os.Create(poolPath) + if err != nil { + return err + } + defer target.Close() + + _, err = io.Copy(target, source) + + return err +} diff --git a/src/github.com/smira/aptly/files/package_pool_test.go b/src/github.com/smira/aptly/files/package_pool_test.go new file mode 100644 index 00000000..9042fee3 --- /dev/null +++ b/src/github.com/smira/aptly/files/package_pool_test.go @@ -0,0 +1,119 @@ +package files + +import ( + "io/ioutil" + . "launchpad.net/gocheck" + "os" + "path/filepath" + "runtime" +) + +type PackagePoolSuite struct { + pool *PackagePool +} + +var _ = Suite(&PackagePoolSuite{}) + +func (s *PackagePoolSuite) SetUpTest(c *C) { + s.pool = NewPackagePool(c.MkDir()) + +} + +func (s *PackagePoolSuite) TestRelativePath(c *C) { + path, err := s.pool.RelativePath("a/b/package.deb", "91b1a1480b90b9e269ca44d897b12575") + c.Assert(err, IsNil) + c.Assert(path, Equals, "91/b1/package.deb") + + _, err = s.pool.RelativePath("/", "91b1a1480b90b9e269ca44d897b12575") + c.Assert(err, ErrorMatches, ".*is invalid") + _, err = s.pool.RelativePath("", "91b1a1480b90b9e269ca44d897b12575") + c.Assert(err, ErrorMatches, ".*is invalid") + _, err = s.pool.RelativePath("a/b/package.deb", "9") + c.Assert(err, ErrorMatches, ".*MD5 is missing") +} + +func (s *PackagePoolSuite) TestPath(c *C) { + path, err := s.pool.Path("a/b/package.deb", "91b1a1480b90b9e269ca44d897b12575") + c.Assert(err, IsNil) + c.Assert(path, Equals, filepath.Join(s.pool.rootPath, "91/b1/package.deb")) + + _, err = s.pool.Path("/", "91b1a1480b90b9e269ca44d897b12575") + c.Assert(err, ErrorMatches, ".*is invalid") +} + +func (s *PackagePoolSuite) TestFilepathList(c *C) { + list, err := s.pool.FilepathList(nil) + c.Check(err, IsNil) + c.Check(list, IsNil) + + os.MkdirAll(filepath.Join(s.pool.rootPath, "bd", "0b"), 0755) + os.MkdirAll(filepath.Join(s.pool.rootPath, "bd", "0a"), 0755) + os.MkdirAll(filepath.Join(s.pool.rootPath, "ae", "0c"), 0755) + + list, err = s.pool.FilepathList(nil) + c.Check(err, IsNil) + c.Check(list, DeepEquals, []string{}) + + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "ae", "0c", "1.deb"), nil, 0644) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "ae", "0c", "2.deb"), nil, 0644) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "bd", "0a", "3.deb"), nil, 0644) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "bd", "0b", "4.deb"), nil, 0644) + + list, err = s.pool.FilepathList(nil) + c.Check(err, IsNil) + c.Check(list, DeepEquals, []string{"ae/0c/1.deb", "ae/0c/2.deb", "bd/0a/3.deb", "bd/0b/4.deb"}) +} + +func (s *PackagePoolSuite) TestRemove(c *C) { + os.MkdirAll(filepath.Join(s.pool.rootPath, "bd", "0b"), 0755) + os.MkdirAll(filepath.Join(s.pool.rootPath, "bd", "0a"), 0755) + os.MkdirAll(filepath.Join(s.pool.rootPath, "ae", "0c"), 0755) + + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "ae", "0c", "1.deb"), []byte("1"), 0644) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "ae", "0c", "2.deb"), []byte("22"), 0644) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "bd", "0a", "3.deb"), []byte("333"), 0644) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "bd", "0b", "4.deb"), []byte("4444"), 0644) + + size, err := s.pool.Remove("ae/0c/2.deb") + c.Check(err, IsNil) + c.Check(size, Equals, int64(2)) + + _, err = s.pool.Remove("ae/0c/2.deb") + c.Check(err, ErrorMatches, ".*no such file or directory") + + list, err := s.pool.FilepathList(nil) + c.Check(err, IsNil) + c.Check(list, DeepEquals, []string{"ae/0c/1.deb", "bd/0a/3.deb", "bd/0b/4.deb"}) +} + +func (s *PackagePoolSuite) TestImportOk(c *C) { + _, _File, _, _ := runtime.Caller(0) + debFile := filepath.Join(filepath.Dir(_File), "../system/files/libboost-program-options-dev_1.49.0.1_i386.deb") + + err := s.pool.Import(debFile, "91b1a1480b90b9e269ca44d897b12575") + c.Check(err, IsNil) + + info, err := os.Stat(filepath.Join(s.pool.rootPath, "91", "b1", "libboost-program-options-dev_1.49.0.1_i386.deb")) + c.Check(err, IsNil) + c.Check(info.Size(), Equals, int64(2738)) + + // double import, should be ok + err = s.pool.Import(debFile, "91b1a1480b90b9e269ca44d897b12575") + c.Check(err, IsNil) +} + +func (s *PackagePoolSuite) TestImportNotExist(c *C) { + err := s.pool.Import("no-such-file", "91b1a1480b90b9e269ca44d897b12575") + c.Check(err, ErrorMatches, ".*no such file or directory") +} + +func (s *PackagePoolSuite) TestImportOverwrite(c *C) { + _, _File, _, _ := runtime.Caller(0) + debFile := filepath.Join(filepath.Dir(_File), "../system/files/libboost-program-options-dev_1.49.0.1_i386.deb") + + os.MkdirAll(filepath.Join(s.pool.rootPath, "91", "b1"), 0755) + ioutil.WriteFile(filepath.Join(s.pool.rootPath, "91", "b1", "libboost-program-options-dev_1.49.0.1_i386.deb"), []byte("1"), 0644) + + err := s.pool.Import(debFile, "91b1a1480b90b9e269ca44d897b12575") + c.Check(err, ErrorMatches, "unable to import into pool.*") +} diff --git a/src/github.com/smira/aptly/files/public.go b/src/github.com/smira/aptly/files/public.go new file mode 100644 index 00000000..4891d793 --- /dev/null +++ b/src/github.com/smira/aptly/files/public.go @@ -0,0 +1,108 @@ +package files + +import ( + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/utils" + "os" + "path/filepath" +) + +// PublishedStorage abstract file system with public dirs (published repos) +type PublishedStorage struct { + rootPath string +} + +// Check interface +var ( + _ aptly.PublishedStorage = (*PublishedStorage)(nil) +) + +// NewPublishedStorage creates new instance of PublishedStorage which specified root +func NewPublishedStorage(root string) *PublishedStorage { + return &PublishedStorage{rootPath: filepath.Join(root, "public")} +} + +// PublicPath returns root of public part +func (storage *PublishedStorage) PublicPath() string { + return storage.rootPath +} + +// MkDir creates directory recursively under public path +func (storage *PublishedStorage) MkDir(path string) error { + return os.MkdirAll(filepath.Join(storage.rootPath, path), 0755) +} + +// CreateFile creates file for writing under public path +func (storage *PublishedStorage) CreateFile(path string) (*os.File, error) { + return os.Create(filepath.Join(storage.rootPath, path)) +} + +// Remove removes single file under public path +func (storage *PublishedStorage) Remove(path string) error { + filepath := filepath.Join(storage.rootPath, path) + return os.Remove(filepath) +} + +// RemoveDirs removes directory structure under public path +func (storage *PublishedStorage) RemoveDirs(path string, progress aptly.Progress) error { + filepath := filepath.Join(storage.rootPath, path) + if progress != nil { + progress.Printf("Removing %s...\n", filepath) + } + return os.RemoveAll(filepath) +} + +// LinkFromPool links package file from pool to dist's pool location +// +// publishedDirectory is desired location in pool (like prefix/pool/component/liba/libav/) +// sourcePool is instance of aptly.PackagePool +// sourcePath is filepath to package file in package pool +// +// LinkFromPool returns relative path for the published file to be included in package index +func (storage *PublishedStorage) LinkFromPool(publishedDirectory string, sourcePool aptly.PackagePool, sourcePath string) error { + // verify that package pool is local pool is filesystem pool + _ = sourcePool.(*PackagePool) + + baseName := filepath.Base(sourcePath) + poolPath := filepath.Join(storage.rootPath, publishedDirectory) + + err := os.MkdirAll(poolPath, 0755) + if err != nil { + return err + } + + _, err = os.Stat(filepath.Join(poolPath, baseName)) + if err == nil { // already exists, skip + return nil + } + + return os.Link(sourcePath, filepath.Join(poolPath, baseName)) +} + +// Filelist returns list of files under prefix +func (storage *PublishedStorage) Filelist(prefix string) ([]string, error) { + root := filepath.Join(storage.rootPath, prefix) + result := []string{} + + err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + if !info.IsDir() { + result = append(result, path[len(root)+1:]) + } + return nil + }) + + return result, err +} + +// ChecksumsForFile proxies requests to utils.ChecksumsForFile, joining public path +func (storage *PublishedStorage) ChecksumsForFile(path string) (utils.ChecksumInfo, error) { + return utils.ChecksumsForFile(filepath.Join(storage.rootPath, path)) +} + +// RenameFile renames (moves) file +func (storage *PublishedStorage) RenameFile(oldName, newName string) error { + return os.Rename(filepath.Join(storage.rootPath, oldName), filepath.Join(storage.rootPath, newName)) +} diff --git a/src/github.com/smira/aptly/files/public_test.go b/src/github.com/smira/aptly/files/public_test.go new file mode 100644 index 00000000..0f70eb96 --- /dev/null +++ b/src/github.com/smira/aptly/files/public_test.go @@ -0,0 +1,167 @@ +package files + +import ( + "io/ioutil" + . "launchpad.net/gocheck" + "os" + "path/filepath" + "syscall" +) + +type PublishedStorageSuite struct { + root string + storage *PublishedStorage +} + +var _ = Suite(&PublishedStorageSuite{}) + +func (s *PublishedStorageSuite) SetUpTest(c *C) { + s.root = c.MkDir() + s.storage = NewPublishedStorage(s.root) +} + +func (s *PublishedStorageSuite) TestPublicPath(c *C) { + c.Assert(s.storage.PublicPath(), Equals, filepath.Join(s.root, "public")) +} + +func (s *PublishedStorageSuite) TestMkDir(c *C) { + err := s.storage.MkDir("ppa/dists/squeeze/") + c.Assert(err, IsNil) + + _, err = os.Stat(filepath.Join(s.storage.rootPath, "ppa/dists/squeeze/")) + c.Assert(err, IsNil) +} + +func (s *PublishedStorageSuite) TestCreateFile(c *C) { + err := s.storage.MkDir("ppa/dists/squeeze/") + c.Assert(err, IsNil) + + file, err := s.storage.CreateFile("ppa/dists/squeeze/Release") + c.Assert(err, IsNil) + defer file.Close() + + _, err = os.Stat(filepath.Join(s.storage.rootPath, "ppa/dists/squeeze/Release")) + c.Assert(err, IsNil) +} + +func (s *PublishedStorageSuite) TestFilelist(c *C) { + err := s.storage.MkDir("ppa/pool/main/a/ab/") + c.Assert(err, IsNil) + + file, err := s.storage.CreateFile("ppa/pool/main/a/ab/a.deb") + c.Assert(err, IsNil) + defer file.Close() + + file2, err := s.storage.CreateFile("ppa/pool/main/a/ab/b.deb") + c.Assert(err, IsNil) + defer file2.Close() + + list, err := s.storage.Filelist("ppa/pool/main/") + c.Check(err, IsNil) + c.Check(list, DeepEquals, []string{"a/ab/a.deb", "a/ab/b.deb"}) +} + +func (s *PublishedStorageSuite) TestRenameFile(c *C) { + err := s.storage.MkDir("ppa/dists/squeeze/") + c.Assert(err, IsNil) + + file, err := s.storage.CreateFile("ppa/dists/squeeze/Release") + c.Assert(err, IsNil) + defer file.Close() + + err = s.storage.RenameFile("ppa/dists/squeeze/Release", "ppa/dists/squeeze/InRelease") + c.Check(err, IsNil) + + _, err = os.Stat(filepath.Join(s.storage.rootPath, "ppa/dists/squeeze/InRelease")) + c.Assert(err, IsNil) +} + +func (s *PublishedStorageSuite) TestRemoveDirs(c *C) { + err := s.storage.MkDir("ppa/dists/squeeze/") + c.Assert(err, IsNil) + + file, err := s.storage.CreateFile("ppa/dists/squeeze/Release") + c.Assert(err, IsNil) + defer file.Close() + + err = s.storage.RemoveDirs("ppa/dists/", nil) + + _, err = os.Stat(filepath.Join(s.storage.rootPath, "ppa/dists/squeeze/Release")) + c.Assert(err, NotNil) + c.Assert(os.IsNotExist(err), Equals, true) +} + +func (s *PublishedStorageSuite) TestRemove(c *C) { + err := s.storage.MkDir("ppa/dists/squeeze/") + c.Assert(err, IsNil) + + file, err := s.storage.CreateFile("ppa/dists/squeeze/Release") + c.Assert(err, IsNil) + defer file.Close() + + err = s.storage.Remove("ppa/dists/squeeze/Release") + + _, err = os.Stat(filepath.Join(s.storage.rootPath, "ppa/dists/squeeze/Release")) + c.Assert(err, NotNil) + c.Assert(os.IsNotExist(err), Equals, true) +} + +func (s *PublishedStorageSuite) TestLinkFromPool(c *C) { + tests := []struct { + prefix string + component string + sourcePath string + poolDirectory string + expectedFilename string + }{ + { // package name regular + prefix: "", + component: "main", + sourcePath: "pool/01/ae/mars-invaders_1.03.deb", + poolDirectory: "m/mars-invaders", + expectedFilename: "pool/main/m/mars-invaders/mars-invaders_1.03.deb", + }, + { // lib-like filename + prefix: "", + component: "main", + sourcePath: "pool/01/ae/libmars-invaders_1.03.deb", + poolDirectory: "libm/libmars-invaders", + expectedFilename: "pool/main/libm/libmars-invaders/libmars-invaders_1.03.deb", + }, + { // duplicate link, shouldn't panic + prefix: "", + component: "main", + sourcePath: "pool/01/ae/mars-invaders_1.03.deb", + poolDirectory: "m/mars-invaders", + expectedFilename: "pool/main/m/mars-invaders/mars-invaders_1.03.deb", + }, + { // prefix & component + prefix: "ppa", + component: "contrib", + sourcePath: "pool/01/ae/libmars-invaders_1.04.deb", + poolDirectory: "libm/libmars-invaders", + expectedFilename: "pool/contrib/libm/libmars-invaders/libmars-invaders_1.04.deb", + }, + } + + pool := NewPackagePool(s.root) + + for _, t := range tests { + t.sourcePath = filepath.Join(s.root, t.sourcePath) + + err := os.MkdirAll(filepath.Dir(t.sourcePath), 0755) + c.Assert(err, IsNil) + + err = ioutil.WriteFile(t.sourcePath, []byte("Contents"), 0644) + c.Assert(err, IsNil) + + err = s.storage.LinkFromPool(filepath.Join(t.prefix, "pool", t.component, t.poolDirectory), pool, t.sourcePath) + c.Assert(err, IsNil) + + st, err := os.Stat(filepath.Join(s.storage.rootPath, t.prefix, t.expectedFilename)) + c.Assert(err, IsNil) + + info := st.Sys().(*syscall.Stat_t) + c.Check(int(info.Nlink), Equals, 2) + } +} diff --git a/src/github.com/smira/aptly/http/download.go b/src/github.com/smira/aptly/http/download.go new file mode 100644 index 00000000..0f5883db --- /dev/null +++ b/src/github.com/smira/aptly/http/download.go @@ -0,0 +1,298 @@ +package http + +import ( + "compress/bzip2" + "compress/gzip" + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/utils" + "io" + "io/ioutil" + "net/http" + "os" + "path/filepath" + "strings" +) + +// Check interface +var ( + _ aptly.Downloader = (*downloaderImpl)(nil) +) + +// downloaderImpl is implementation of Downloader interface +type downloaderImpl struct { + queue chan *downloadTask + stop chan bool + stopped chan bool + pause chan bool + unpause chan bool + progress aptly.Progress + threads int + client *http.Client +} + +// downloadTask represents single item in queue +type downloadTask struct { + url string + destination string + result chan<- error + expected utils.ChecksumInfo + ignoreMismatch bool +} + +// NewDownloader creates new instance of Downloader which specified number +// of threads +func NewDownloader(threads int, progress aptly.Progress) aptly.Downloader { + downloader := &downloaderImpl{ + queue: make(chan *downloadTask, 1000), + stop: make(chan bool), + stopped: make(chan bool), + pause: make(chan bool), + unpause: make(chan bool), + threads: threads, + progress: progress, + client: &http.Client{Transport: &http.Transport{DisableCompression: true}}, + } + + for i := 0; i < downloader.threads; i++ { + go downloader.process() + } + + return downloader +} + +// Shutdown stops downloader after current tasks are finished, +// but doesn't process rest of queue +func (downloader *downloaderImpl) Shutdown() { + for i := 0; i < downloader.threads; i++ { + downloader.stop <- true + } + + for i := 0; i < downloader.threads; i++ { + <-downloader.stopped + } +} + +// Pause pauses task processing +func (downloader *downloaderImpl) Pause() { + for i := 0; i < downloader.threads; i++ { + downloader.pause <- true + } +} + +// Resume resumes task processing +func (downloader *downloaderImpl) Resume() { + for i := 0; i < downloader.threads; i++ { + downloader.unpause <- true + } +} + +// GetProgress returns Progress object +func (downloader *downloaderImpl) GetProgress() aptly.Progress { + return downloader.progress +} + +// Download starts new download task +func (downloader *downloaderImpl) Download(url string, destination string, result chan<- error) { + downloader.DownloadWithChecksum(url, destination, result, utils.ChecksumInfo{Size: -1}, false) +} + +// DownloadWithChecksum starts new download task with checksum verification +func (downloader *downloaderImpl) DownloadWithChecksum(url string, destination string, result chan<- error, + expected utils.ChecksumInfo, ignoreMismatch bool) { + downloader.queue <- &downloadTask{url: url, destination: destination, result: result, expected: expected, ignoreMismatch: ignoreMismatch} +} + +// handleTask processes single download task +func (downloader *downloaderImpl) handleTask(task *downloadTask) { + downloader.progress.Printf("Downloading %s...\n", task.url) + + resp, err := downloader.client.Get(task.url) + if err != nil { + task.result <- err + return + } + defer resp.Body.Close() + + if resp.StatusCode < 200 || resp.StatusCode > 299 { + task.result <- fmt.Errorf("HTTP code %d while fetching %s", resp.StatusCode, task.url) + return + } + + err = os.MkdirAll(filepath.Dir(task.destination), 0755) + if err != nil { + task.result <- err + return + } + + temppath := task.destination + ".down" + + outfile, err := os.Create(temppath) + if err != nil { + task.result <- err + return + } + defer outfile.Close() + + checksummer := utils.NewChecksumWriter() + writers := []io.Writer{outfile, downloader.progress} + + if task.expected.Size != -1 { + writers = append(writers, checksummer) + } + + w := io.MultiWriter(writers...) + + _, err = io.Copy(w, resp.Body) + if err != nil { + os.Remove(temppath) + task.result <- err + return + } + + if task.expected.Size != -1 { + actual := checksummer.Sum() + + if actual.Size != task.expected.Size { + err = fmt.Errorf("%s: size check mismatch %d != %d", task.url, actual.Size, task.expected.Size) + } else if task.expected.MD5 != "" && actual.MD5 != task.expected.MD5 { + err = fmt.Errorf("%s: md5 hash mismatch %#v != %#v", task.url, actual.MD5, task.expected.MD5) + } else if task.expected.SHA1 != "" && actual.SHA1 != task.expected.SHA1 { + err = fmt.Errorf("%s: sha1 hash mismatch %#v != %#v", task.url, actual.SHA1, task.expected.SHA1) + } else if task.expected.SHA256 != "" && actual.SHA256 != task.expected.SHA256 { + err = fmt.Errorf("%s: sha256 hash mismatch %#v != %#v", task.url, actual.SHA256, task.expected.SHA256) + } + + if err != nil { + if task.ignoreMismatch { + downloader.progress.Printf("WARNING: %s\n", err.Error()) + } else { + os.Remove(temppath) + task.result <- err + return + } + } + } + + err = os.Rename(temppath, task.destination) + if err != nil { + os.Remove(temppath) + task.result <- err + return + } + + task.result <- nil +} + +// process implements download thread in goroutine +func (downloader *downloaderImpl) process() { + for { + select { + case <-downloader.stop: + downloader.stopped <- true + return + case <-downloader.pause: + <-downloader.unpause + case task := <-downloader.queue: + downloader.handleTask(task) + } + } +} + +// DownloadTemp starts new download to temporary file and returns File +// +// Temporary file would be already removed, so no need to cleanup +func DownloadTemp(downloader aptly.Downloader, url string) (*os.File, error) { + return DownloadTempWithChecksum(downloader, url, utils.ChecksumInfo{Size: -1}, false) +} + +// DownloadTempWithChecksum is a DownloadTemp with checksum verification +// +// Temporary file would be already removed, so no need to cleanup +func DownloadTempWithChecksum(downloader aptly.Downloader, url string, expected utils.ChecksumInfo, ignoreMismatch bool) (*os.File, error) { + tempdir, err := ioutil.TempDir(os.TempDir(), "aptly") + if err != nil { + return nil, err + } + defer os.RemoveAll(tempdir) + + tempfile := filepath.Join(tempdir, "buffer") + + if expected.Size != -1 && downloader.GetProgress() != nil { + downloader.GetProgress().InitBar(expected.Size, true) + defer downloader.GetProgress().ShutdownBar() + } + + ch := make(chan error, 1) + downloader.DownloadWithChecksum(url, tempfile, ch, expected, ignoreMismatch) + + err = <-ch + + if err != nil { + return nil, err + } + + file, err := os.Open(tempfile) + if err != nil { + return nil, err + } + + return file, nil +} + +// List of extensions + corresponding uncompression support +var compressionMethods = []struct { + extenstion string + transformation func(io.Reader) (io.Reader, error) +}{ + { + extenstion: ".bz2", + transformation: func(r io.Reader) (io.Reader, error) { return bzip2.NewReader(r), nil }, + }, + { + extenstion: ".gz", + transformation: func(r io.Reader) (io.Reader, error) { return gzip.NewReader(r) }, + }, + { + extenstion: "", + transformation: func(r io.Reader) (io.Reader, error) { return r, nil }, + }, +} + +// DownloadTryCompression tries to download from URL .bz2, .gz and raw extension until +// it finds existing file. +func DownloadTryCompression(downloader aptly.Downloader, url string, expectedChecksums map[string]utils.ChecksumInfo, ignoreMismatch bool) (io.Reader, *os.File, error) { + var err error + + for _, method := range compressionMethods { + var file *os.File + + tryURL := url + method.extenstion + foundChecksum := false + + for suffix, expected := range expectedChecksums { + if strings.HasSuffix(tryURL, suffix) { + file, err = DownloadTempWithChecksum(downloader, tryURL, expected, ignoreMismatch) + foundChecksum = true + break + } + } + + if !foundChecksum { + file, err = DownloadTemp(downloader, tryURL) + } + + if err != nil { + continue + } + + var uncompressed io.Reader + uncompressed, err = method.transformation(file) + if err != nil { + continue + } + + return uncompressed, file, err + } + return nil, nil, err +} diff --git a/src/github.com/smira/aptly/http/download_test.go b/src/github.com/smira/aptly/http/download_test.go new file mode 100644 index 00000000..9e6db6ea --- /dev/null +++ b/src/github.com/smira/aptly/http/download_test.go @@ -0,0 +1,286 @@ +package http + +import ( + "errors" + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/console" + "github.com/smira/aptly/utils" + "io" + "io/ioutil" + . "launchpad.net/gocheck" + "net" + "net/http" + "os" + "runtime" + "time" +) + +type DownloaderSuite struct { + tempfile *os.File + l net.Listener + url string + ch chan bool + progress aptly.Progress +} + +var _ = Suite(&DownloaderSuite{}) + +func (s *DownloaderSuite) SetUpTest(c *C) { + s.tempfile, _ = ioutil.TempFile(os.TempDir(), "aptly-test") + s.l, _ = net.ListenTCP("tcp4", &net.TCPAddr{IP: net.IPv4(127, 0, 0, 1)}) + s.url = fmt.Sprintf("http://localhost:%d", s.l.Addr().(*net.TCPAddr).Port) + + mux := http.NewServeMux() + mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) { + fmt.Fprintf(w, "Hello, %s", r.URL.Path) + }) + + s.ch = make(chan bool) + + go func() { + http.Serve(s.l, mux) + s.ch <- true + }() + + s.progress = console.NewProgress() + s.progress.Start() +} + +func (s *DownloaderSuite) TearDownTest(c *C) { + s.progress.Shutdown() + + s.l.Close() + <-s.ch + + os.Remove(s.tempfile.Name()) + s.tempfile.Close() +} + +func (s *DownloaderSuite) TestStartupShutdown(c *C) { + goroutines := runtime.NumGoroutine() + + d := NewDownloader(10, s.progress) + d.Shutdown() + + // wait for goroutines to shutdown + time.Sleep(100 * time.Millisecond) + + if runtime.NumGoroutine()-goroutines > 1 { + c.Errorf("Number of goroutines %d, expected %d", runtime.NumGoroutine(), goroutines) + } +} + +func (s *DownloaderSuite) TestPauseResume(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + + d.Pause() + d.Resume() +} + +func (s *DownloaderSuite) TestDownloadOK(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + ch := make(chan error) + + d.Download(s.url+"/test", s.tempfile.Name(), ch) + res := <-ch + c.Assert(res, IsNil) +} + +func (s *DownloaderSuite) TestDownloadWithChecksum(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + ch := make(chan error) + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{}, false) + res := <-ch + c.Assert(res, ErrorMatches, ".*size check mismatch 12 != 0") + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "abcdef"}, false) + res = <-ch + c.Assert(res, ErrorMatches, ".*md5 hash mismatch \"a1acb0fe91c7db45ec4d775192ec5738\" != \"abcdef\"") + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "abcdef"}, true) + res = <-ch + c.Assert(res, IsNil) + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738"}, false) + res = <-ch + c.Assert(res, IsNil) + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738", SHA1: "abcdef"}, false) + res = <-ch + c.Assert(res, ErrorMatches, ".*sha1 hash mismatch \"921893bae6ad6fd818401875d6779254ef0ff0ec\" != \"abcdef\"") + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738", + SHA1: "921893bae6ad6fd818401875d6779254ef0ff0ec"}, false) + res = <-ch + c.Assert(res, IsNil) + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738", + SHA1: "921893bae6ad6fd818401875d6779254ef0ff0ec", SHA256: "abcdef"}, false) + res = <-ch + c.Assert(res, ErrorMatches, ".*sha256 hash mismatch \"b3c92ee1246176ed35f6e8463cd49074f29442f5bbffc3f8591cde1dcc849dac\" != \"abcdef\"") + + d.DownloadWithChecksum(s.url+"/test", s.tempfile.Name(), ch, utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738", + SHA1: "921893bae6ad6fd818401875d6779254ef0ff0ec", SHA256: "b3c92ee1246176ed35f6e8463cd49074f29442f5bbffc3f8591cde1dcc849dac"}, false) + res = <-ch + c.Assert(res, IsNil) +} + +func (s *DownloaderSuite) TestDownload404(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + ch := make(chan error) + + d.Download(s.url+"/doesntexist", s.tempfile.Name(), ch) + res := <-ch + c.Assert(res, ErrorMatches, "HTTP code 404.*") +} + +func (s *DownloaderSuite) TestDownloadConnectError(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + ch := make(chan error) + + d.Download("http://nosuch.localhost/", s.tempfile.Name(), ch) + res := <-ch + c.Assert(res, ErrorMatches, ".*no such host") +} + +func (s *DownloaderSuite) TestDownloadFileError(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + ch := make(chan error) + + d.Download(s.url+"/test", "/", ch) + res := <-ch + c.Assert(res, ErrorMatches, ".*permission denied") +} + +func (s *DownloaderSuite) TestDownloadTemp(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + + f, err := DownloadTemp(d, s.url+"/test") + c.Assert(err, IsNil) + defer f.Close() + + buf := make([]byte, 1) + + f.Read(buf) + c.Assert(buf, DeepEquals, []byte("H")) + + _, err = os.Stat(f.Name()) + c.Assert(os.IsNotExist(err), Equals, true) +} + +func (s *DownloaderSuite) TestDownloadTempWithChecksum(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + + f, err := DownloadTempWithChecksum(d, s.url+"/test", utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738", + SHA1: "921893bae6ad6fd818401875d6779254ef0ff0ec", SHA256: "b3c92ee1246176ed35f6e8463cd49074f29442f5bbffc3f8591cde1dcc849dac"}, false) + defer f.Close() + c.Assert(err, IsNil) + + _, err = DownloadTempWithChecksum(d, s.url+"/test", utils.ChecksumInfo{Size: 13}, false) + c.Assert(err, ErrorMatches, ".*size check mismatch 12 != 13") +} + +func (s *DownloaderSuite) TestDownloadTempError(c *C) { + d := NewDownloader(2, s.progress) + defer d.Shutdown() + + f, err := DownloadTemp(d, s.url+"/doesntexist") + c.Assert(err, NotNil) + c.Assert(f, IsNil) + c.Assert(err, ErrorMatches, "HTTP code 404.*") +} + +const ( + bzipData = "BZh91AY&SY\xcc\xc3q\xd4\x00\x00\x02A\x80\x00\x10\x02\x00\x0c\x00 \x00!\x9ah3M\x19\x97\x8b\xb9\"\x9c(Hfa\xb8\xea\x00" + gzipData = "\x1f\x8b\x08\x00\xc8j\xb0R\x00\x03+I-.\xe1\x02\x00\xc65\xb9;\x05\x00\x00\x00" + rawData = "test" +) + +func (s *DownloaderSuite) TestDownloadTryCompression(c *C) { + var buf []byte + + expectedChecksums := map[string]utils.ChecksumInfo{ + "file.bz2": utils.ChecksumInfo{Size: int64(len(bzipData))}, + "file.gz": utils.ChecksumInfo{Size: int64(len(gzipData))}, + "file": utils.ChecksumInfo{Size: int64(len(rawData))}, + } + + // bzip2 only available + buf = make([]byte, 4) + d := NewFakeDownloader() + d.ExpectResponse("http://example.com/file.bz2", bzipData) + r, file, err := DownloadTryCompression(d, "http://example.com/file", expectedChecksums, false) + c.Assert(err, IsNil) + defer file.Close() + io.ReadFull(r, buf) + c.Assert(string(buf), Equals, rawData) + c.Assert(d.Empty(), Equals, true) + + // bzip2 not available, but gz is + buf = make([]byte, 4) + d = NewFakeDownloader() + d.ExpectError("http://example.com/file.bz2", errors.New("404")) + d.ExpectResponse("http://example.com/file.gz", gzipData) + r, file, err = DownloadTryCompression(d, "http://example.com/file", expectedChecksums, false) + c.Assert(err, IsNil) + defer file.Close() + io.ReadFull(r, buf) + c.Assert(string(buf), Equals, rawData) + c.Assert(d.Empty(), Equals, true) + + // bzip2 & gzip not available, but raw is + buf = make([]byte, 4) + d = NewFakeDownloader() + d.ExpectError("http://example.com/file.bz2", errors.New("404")) + d.ExpectError("http://example.com/file.gz", errors.New("404")) + d.ExpectResponse("http://example.com/file", rawData) + r, file, err = DownloadTryCompression(d, "http://example.com/file", expectedChecksums, false) + c.Assert(err, IsNil) + defer file.Close() + io.ReadFull(r, buf) + c.Assert(string(buf), Equals, rawData) + c.Assert(d.Empty(), Equals, true) + + // gzip available, but broken + buf = make([]byte, 4) + d = NewFakeDownloader() + d.ExpectError("http://example.com/file.bz2", errors.New("404")) + d.ExpectResponse("http://example.com/file.gz", "x") + d.ExpectResponse("http://example.com/file", "recovered") + r, file, err = DownloadTryCompression(d, "http://example.com/file", nil, false) + c.Assert(err, IsNil) + defer file.Close() + io.ReadFull(r, buf) + c.Assert(string(buf), Equals, "reco") + c.Assert(d.Empty(), Equals, true) +} + +func (s *DownloaderSuite) TestDownloadTryCompressionErrors(c *C) { + d := NewFakeDownloader() + _, _, err := DownloadTryCompression(d, "http://example.com/file", nil, false) + c.Assert(err, ErrorMatches, "unexpected request.*") + + d = NewFakeDownloader() + d.ExpectError("http://example.com/file.bz2", errors.New("404")) + d.ExpectError("http://example.com/file.gz", errors.New("404")) + d.ExpectError("http://example.com/file", errors.New("403")) + _, _, err = DownloadTryCompression(d, "http://example.com/file", nil, false) + c.Assert(err, ErrorMatches, "403") + + d = NewFakeDownloader() + d.ExpectError("http://example.com/file.bz2", errors.New("404")) + d.ExpectError("http://example.com/file.gz", errors.New("404")) + d.ExpectResponse("http://example.com/file", rawData) + _, _, err = DownloadTryCompression(d, "http://example.com/file", map[string]utils.ChecksumInfo{"file": utils.ChecksumInfo{Size: 7}}, false) + c.Assert(err, ErrorMatches, "checksums don't match.*") +} diff --git a/src/github.com/smira/aptly/http/fake.go b/src/github.com/smira/aptly/http/fake.go new file mode 100644 index 00000000..4d256a3f --- /dev/null +++ b/src/github.com/smira/aptly/http/fake.go @@ -0,0 +1,137 @@ +package http + +import ( + "fmt" + "github.com/smira/aptly/aptly" + "github.com/smira/aptly/utils" + "io" + "os" + "path/filepath" +) + +type expectedRequest struct { + URL string + Err error + Response string +} + +// FakeDownloader is like Downloader, but it used in tests +// to stub out results +type FakeDownloader struct { + expected []expectedRequest + anyExpected map[string]expectedRequest +} + +// Check interface +var ( + _ aptly.Downloader = (*FakeDownloader)(nil) +) + +// NewFakeDownloader creates new expected downloader +func NewFakeDownloader() *FakeDownloader { + result := &FakeDownloader{} + result.expected = make([]expectedRequest, 0) + result.anyExpected = make(map[string]expectedRequest) + return result +} + +// ExpectResponse installs expectation on upcoming download with response +func (f *FakeDownloader) ExpectResponse(url string, response string) *FakeDownloader { + f.expected = append(f.expected, expectedRequest{URL: url, Response: response}) + return f +} + +// AnyExpectResponse installs expectation on upcoming download with response in any order (url should be unique) +func (f *FakeDownloader) AnyExpectResponse(url string, response string) *FakeDownloader { + f.anyExpected[url] = expectedRequest{URL: url, Response: response} + return f +} + +// ExpectError installs expectation on upcoming download with error +func (f *FakeDownloader) ExpectError(url string, err error) *FakeDownloader { + f.expected = append(f.expected, expectedRequest{URL: url, Err: err}) + return f +} + +// Empty verifies that are planned downloads have happened +func (f *FakeDownloader) Empty() bool { + return len(f.expected) == 0 +} + +// DownloadWithChecksum performs fake download by matching against first expectation in the queue or any expectation, with cheksum verification +func (f *FakeDownloader) DownloadWithChecksum(url string, filename string, result chan<- error, expected utils.ChecksumInfo, ignoreMismatch bool) { + var expectation expectedRequest + if len(f.expected) > 0 && f.expected[0].URL == url { + expectation, f.expected = f.expected[0], f.expected[1:] + } else if _, ok := f.anyExpected[url]; ok { + expectation = f.anyExpected[url] + delete(f.anyExpected, url) + } else { + result <- fmt.Errorf("unexpected request for %s", url) + return + } + + if expectation.Err != nil { + result <- expectation.Err + return + } + + err := os.MkdirAll(filepath.Dir(filename), 0755) + if err != nil { + result <- err + return + } + + outfile, err := os.Create(filename) + if err != nil { + result <- err + return + } + defer outfile.Close() + + cks := utils.NewChecksumWriter() + w := io.MultiWriter(outfile, cks) + + _, err = w.Write([]byte(expectation.Response)) + if err != nil { + result <- err + return + } + + if expected.Size != -1 { + if expected.Size != cks.Sum().Size || expected.MD5 != "" && expected.MD5 != cks.Sum().MD5 || + expected.SHA1 != "" && expected.SHA1 != cks.Sum().SHA1 || expected.SHA256 != "" && expected.SHA256 != cks.Sum().SHA256 { + if ignoreMismatch { + fmt.Printf("WARNING: checksums don't match: %#v != %#v for %s\n", expected, cks.Sum(), url) + } else { + result <- fmt.Errorf("checksums don't match: %#v != %#v for %s", expected, cks.Sum(), url) + return + } + } + } + + result <- nil + return +} + +// Download performs fake download by matching against first expectation in the queue +func (f *FakeDownloader) Download(url string, filename string, result chan<- error) { + f.DownloadWithChecksum(url, filename, result, utils.ChecksumInfo{Size: -1}, false) +} + +// Shutdown does nothing +func (f *FakeDownloader) Shutdown() { +} + +// Pause does nothing +func (f *FakeDownloader) Pause() { +} + +// Resume does nothing +func (f *FakeDownloader) Resume() { +} + +// GetProgress returns Progress object +func (f *FakeDownloader) GetProgress() aptly.Progress { + return nil +} diff --git a/src/github.com/smira/aptly/http/http.go b/src/github.com/smira/aptly/http/http.go new file mode 100644 index 00000000..f6fb5be4 --- /dev/null +++ b/src/github.com/smira/aptly/http/http.go @@ -0,0 +1,2 @@ +// Package http provides all HTTP-related operations +package http diff --git a/src/github.com/smira/aptly/http/http_test.go b/src/github.com/smira/aptly/http/http_test.go new file mode 100644 index 00000000..c19d909a --- /dev/null +++ b/src/github.com/smira/aptly/http/http_test.go @@ -0,0 +1,11 @@ +package http + +import ( + . "launchpad.net/gocheck" + "testing" +) + +// Launch gocheck tests +func Test(t *testing.T) { + TestingT(t) +} diff --git a/src/github.com/smira/aptly/main.go b/src/github.com/smira/aptly/main.go new file mode 100644 index 00000000..8bb4bc91 --- /dev/null +++ b/src/github.com/smira/aptly/main.go @@ -0,0 +1,38 @@ +package main + +import ( + "fmt" + "github.com/smira/aptly/cmd" + "os" +) + +func main() { + defer func() { + if r := recover(); r != nil { + fatal, ok := r.(*cmd.FatalError) + if !ok { + panic(r) + } + fmt.Println("ERROR:", fatal.Message) + os.Exit(fatal.ReturnCode) + } + }() + + command := cmd.RootCommand() + + flags, args, err := command.ParseFlags(os.Args[1:]) + if err != nil { + cmd.Fatal(err) + } + + err = cmd.InitContext(flags) + if err != nil { + cmd.Fatal(err) + } + defer cmd.ShutdownContext() + + err = command.Dispatch(args) + if err != nil { + cmd.Fatal(err) + } +} diff --git a/src/github.com/smira/aptly/man/aptly.1 b/src/github.com/smira/aptly/man/aptly.1 new file mode 100644 index 00000000..5f029b75 --- /dev/null +++ b/src/github.com/smira/aptly/man/aptly.1 @@ -0,0 +1,985 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "APTLY" "1" "April 2014" "" "" +. +.SH "NAME" +\fBaptly\fR \- Debian repository management tool +. +.SH "SYNOPSIS" +Common command format: +. +.P +\fBaptly\fR [\fIglobal options\fR\|\.\|\.\|\.] \fIcommand\fR \fIsubcommand\fR [\fIoptions\fR\|\.\|\.\|\.] \fIarguments\fR +. +.P +aptly has integrated help that matches contents of this manual page, to get help, prepend \fBhelp\fR to command name: +. +.P +\fBaptly\fR \fBhelp\fR \fBmirror\fR \fBcreate\fR +. +.SH "DESCRIPTION" +aptly is a tool to create partial and full mirrors of remote repositories, manage local repositories, filter them, merge, upgrade individual packages, take snapshots and publish them back as Debian repositories\. +. +.P +aptly\(cqs goal is to establish repeatability and controlled changes in a package\-centric environment\. aptly allows to fix a set of packages in a repository, so that package installation and upgrade becomes deterministic\. At the same time aptly allows to perform controlled, fine\-grained changes in repository contents to transition your package environment to new version\. +. +.SH "CONFIGURATION" +aptly looks for configuration file in \fB/etc/aptly\.conf\fR and \fB~/\.aptly\.conf\fR, if no config file found, new one is created\. If \fB\-config=\fR flag is specified, aptly would use config file at specified location\. Also aptly needs root directory for database, package and published repository storage\. If not specified, directory defaults to \fB~/\.aptly\fR, it will be created if missing\. +. +.P +Configuration file is stored in JSON format (default values shown below): +. +.IP "" 4 +. +.nf + +{ + "rootDir": "$HOME/\.aptly", + "downloadConcurrency": 4, + "architectures": [], + "dependencyFollowSuggests": false, + "dependencyFollowRecommends": false + "dependencyFollowAllVariants": false, + "dependencyFollowSource": false, + "gpgDisableSign": false, + "gpgDisableVerify": false, + "downloadSourcePackages": false, + "ppaDistributorID": "ubuntu", + "ppaCodename": "" +} +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\fBrootDir\fR +is root of directory storage to store database (\fBrootDir\fR/db), downloaded packages (\fBrootDir\fR/pool) and published repositories (\fBrootDir\fR/public) +. +.TP +\fBdownloadConcurrency\fR +is a number of parallel download threads to use when downloading packages +. +.TP +\fBarchitectures\fR +is a list of architectures to process; if left empty defaults to all available architectures; could be overridden with option \fB\-architectures\fR +. +.TP +\fBdependencyFollowSuggests\fR +follow contents of \fBSuggests:\fR field when processing dependencies for the package +. +.TP +\fBdependencyFollowRecommends\fR +follow contents of \fBRecommends:\fR field when processing dependencies for the package +. +.TP +\fBdependencyFollowAllVariants\fR +when dependency looks like \fBpackage\-a | package\-b\fR, follow both variants always +. +.TP +\fBdependencyFollowSource\fR +follow dependency from binary package to source package +. +.TP +\fBgpgDisableSign\fR +don\(cqt sign published repositories with gpg(1), also can be disabled on per\-repo basis using \fB\-skip\-signing\fR flag when publishing +. +.TP +\fBgpgDisableVerify\fR +don\(cqt verify remote mirrors with gpg(1), also can be disabled on per\-mirror basis using \fB\-ignore\-signatures\fR flag when creating and updating mirrors +. +.TP +\fBdownloadSourcePackages\fR +if enabled, all mirrors created would have flag set to download source packages; this setting could be controlled on per\-mirror basis with \fB\-with\-sources\fR flag +. +.TP +\fBppaDistributorID\fR, \fBppaCodename\fR +specifies paramaters for short PPA url expansion, if left blank they default to output of \fBlsb_release\fR command +. +.SH "PACKAGE SPEC" +Some commands accept package specs to identify list of packages to process\. Package spec is a list of following search conditions: +. +.TP +direct package reference +reference to exaclty one package\. Format is identical to the way aptly lists packages in show commands with \fB\-with\-packages\fR flag: \fBname_version_arch\fR, e\.g\.: \fBlibmysqlclient18_5\.5\.35\-rel33\.0\-611\.squeeze_amd64\fR +. +.TP +dependency condition +syntax follows Debian dependency specification: package_name followed by optional version specification and architecture limit\. +. +.P +Examples: +. +.TP +\fBmysql\-client\fR +matches package mysql\-client of any version and architecture (including source) +. +.TP +\fBmysql\-client (>= 3\.6)\fR +matches package mysql\-client with version greater or equal to 3\.6\. Valid operators for version are: \fB>=\fR, \fB<=\fR, \fB=\fR, \fB>>\fR (strictly greater), \fB<<\fR (strictly less)\. +. +.TP +\fBmysql\-client {i386}\fR +matches package \fBmysql\-client\fR on architecture \fBi386\fR, architecture \fBall\fR matches all architectures but source\. +. +.TP +\fBmysql\-client (>= 3\.6) {i386}\fR +version and architecture conditions combined\. +. +.P +When specified on command line, condition may have to be quoted according to shell rules, so that it stays single argument: +. +.P +\fBaptly repo import percona stable \(cqmysql\-client (>= 3\.6)\(cq\fR +. +.SH "GLOBAL OPTIONS" +. +.TP +\-\fBarchitectures\fR= +list of architectures to consider during (comma\-separated), default to all available +. +.TP +\-\fBconfig\fR= +location of configuration file (default locations are /etc/aptly\.conf, ~/\.aptly\.conf) +. +.TP +\-\fBdep\-follow\-all\-variants\fR=false +when processing dependencies, follow a & b if depdency is \(cqa|b\(cq +. +.TP +\-\fBdep\-follow\-recommends\fR=false +when processing dependencies, follow Recommends +. +.TP +\-\fBdep\-follow\-source\fR=false +when processing dependencies, follow from binary to Source packages +. +.TP +\-\fBdep\-follow\-suggests\fR=false +when processing dependencies, follow Suggests +. +.SH "CREATE NEW MIRROR" +\fBaptly\fR \fBmirror\fR \fBcreate\fR \fIname\fR \fIarchive url\fR \fIdistribution\fR [\fIcomponent1\fR \|\.\|\.\|\.] +. +.P +Creates mirror \fIname\fR of remote repository, aptly supports both regular and flat Debian repositories exported via HTTP\. aptly would try download Release file from remote repository and verify its\(cq signature\. +. +.P +PPA urls could specified in short format: +. +.P +$ aptly mirror create \fIname\fR ppa:\fIuser\fR/\fIproject\fR +. +.P +Example: +. +.P +$ aptly mirror create wheezy\-main http://mirror\.yandex\.ru/debian/ wheezy main +. +.P +Options: +. +.TP +\-\fBignore\-signatures\fR=false +disable verification of Release file signatures +. +.TP +\-\fBkeyring\fR= +gpg keyring to use when verifying Release file (could be specified multiple times) +. +.TP +\-\fBwith\-sources\fR=false +download source packages in addition to binary packages +. +.SH "LIST MIRRORS" +\fBaptly\fR \fBmirror\fR \fBlist\fR +. +.P +List shows full list of remote repository mirrors\. +. +.P +Example: +. +.P +$ aptly mirror list +. +.P +Options: +. +.TP +\-\fBraw\fR=false +display list in machine\-readable format +. +.SH "SHOW DETAILS ABOUT MIRROR" +\fBaptly\fR \fBmirror\fR \fBshow\fR \fIname\fR +. +.P +Shows detailed information about the mirror\. +. +.P +Example: +. +.P +$ aptly mirror show wheezy\-main +. +.P +Options: +. +.TP +\-\fBwith\-packages\fR=false +show detailed list of packages and versions stored in the mirror +. +.SH "DELETE MIRROR" +\fBaptly\fR \fBmirror\fR \fBdrop\fR \fIname\fR +. +.P +Drop deletes information about remote repository mirror \fIname\fR\. Package data is not deleted (since it could still be used by other mirrors or snapshots)\. If mirror is used as source to create a snapshot, aptly would refuse to delete such mirror, use flag \-force to override\. +. +.P +Example: +. +.P +$ aptly mirror drop wheezy\-main +. +.P +Options: +. +.TP +\-\fBforce\fR=false +force mirror deletion even if used by snapshots +. +.SH "UPDATE MIRROR" +\fBaptly\fR \fBmirror\fR \fBupdate\fR \fIname\fR +. +.P +Updates remote mirror (downloads package files and meta information)\. When mirror is created, this command should be run for the first time to fetch mirror contents\. This command can be run multiple times to get updated repository contents\. If interrupted, command can be safely restarted\. +. +.P +Example: +. +.P +$ aptly mirror update wheezy\-main +. +.P +Options: +. +.TP +\-\fBignore\-checksums\fR=false +ignore checksum mismatches while downloading package files and metadata +. +.TP +\-\fBignore\-signatures\fR=false +disable verification of Release file signatures +. +.TP +\-\fBkeyring\fR= +gpg keyring to use when verifying Release file (could be specified multiple times) +. +.SH "ADD PACKAGES TO LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBadd\fR \fIname\fR +. +.P +Command adds packages to local repository from \.deb (binary packages) and \.dsc (source packages) files\. When importing from directory aptly would do recursive scan looking for all files matching \fI\.deb or\fR\.dsc patterns\. Every file discovered would be analyzed to extract metadata, package would then be created and added to the database\. Files would be imported to internal package pool\. For source packages, all required files are added automatically as well\. Extra files for source package should be in the same directory as *\.dsc file\. +. +.P +Example: +. +.P +$ aptly repo add testing myapp\-0\.1\.2\.deb incoming/ +. +.P +Options: +. +.TP +\-\fBremove\-files\fR=false +remove files that have been imported successfully into repository +. +.SH "COPY PACKAGES BETWEEN LOCAL REPOSITORIES" +\fBaptly\fR \fBrepo\fR \fBcopy\fR \fIsrc\-name\fR \fIdst\-name\fR \fIpackage\-spec\fR \fB\|\.\|\.\|\.\fR +. +.P +Command copy copies packages matching \fIpackage\-spec\fR from local repo \fIsrc\-name\fR to local repo \fIdst\-name\fR\. +. +.P +Example: +. +.P +$ aptly repo copy testing stable \(cqmyapp (=0\.1\.12)\(cq +. +.P +Options: +. +.TP +\-\fBdry\-run\fR=false +don\(cqt copy, just show what would be copied +. +.TP +\-\fBwith\-deps\fR=false +follow dependencies when processing package\-spec +. +.SH "CREATE LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBcreate\fR \fIname\fR +. +.P +Create local package repository\. Repository would be empty when created, packages could be added from files, copied or moved from another local repository or imported from the mirror\. +. +.P +Example: +. +.P +$ aptly repo create testing +. +.P +Options: +. +.TP +\-\fBcomment\fR= +any text that would be used to described local repository +. +.TP +\-\fBcomponent\fR=main +default component when publishing +. +.TP +\-\fBdistribution\fR= +default distribution when publishing +. +.SH "DELETE LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBdrop\fR \fIname\fR +. +.P +Drop information about deletions from local repo\. Package data is not deleted (since it could be still used by other mirrors or snapshots)\. +. +.P +Example: +. +.P +$ aptly repo drop local\-repo +. +.P +Options: +. +.TP +\-\fBforce\fR=false +force local repo deletion even if used by snapshots +. +.SH "EDIT PROPERTIES OF LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBedit\fR \fIname\fR +. +.P +Command edit allows to change metadata of local repository: comment, default distribution and component\. +. +.P +Example: +. +.P +$ aptly repo edit \-distribution=wheezy testing +. +.P +Options: +. +.TP +\-\fBcomment\fR= +any text that would be used to described local repository +. +.TP +\-\fBcomponent\fR= +default component when publishing +. +.TP +\-\fBdistribution\fR= +default distribution when publishing +. +.SH "IMPORT PACKAGES FROM MIRROR TO LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBimport\fR \fIsrc\-mirror\fR \fIdst\-repo\fR \fIpackage\-spec\fR \fB\|\.\|\.\|\.\fR +. +.P +Command import looks up packages matching \fIpackage\-spec\fR in mirror \fIsrc\-mirror\fR and copies them to local repo \fIdst\-repo\fR\. +. +.P +Example: +. +.P +$ aptly repo import wheezy\-main testing nginx +. +.P +Options: +. +.TP +\-\fBdry\-run\fR=false +don\(cqt import, just show what would be imported +. +.TP +\-\fBwith\-deps\fR=false +follow dependencies when processing package\-spec +. +.SH "LIST LOCAL REPOSITORIES" +\fBaptly\fR \fBrepo\fR \fBlist\fR +. +.P +List command shows full list of local package repositories\. +. +.P +Example: +. +.P +$ aptly repo list +. +.P +Options: +. +.TP +\-\fBraw\fR=false +display list in machine\-readable format +. +.SH "MOVE PACKAGES BETWEEN LOCAL REPOSITORIES" +\fBaptly\fR \fBrepo\fR \fBmove\fR \fIsrc\-name\fR \fIdst\-name\fR \fIpackage\-spec\fR \fB\|\.\|\.\|\.\fR +. +.P +Command move moves packages matching \fIpackage\-spec\fR from local repo \fIsrc\-name\fR to local repo \fIdst\-name\fR\. +. +.P +Example: +. +.P +$ aptly repo move testing stable \(cqmyapp (=0\.1\.12)\(cq +. +.P +Options: +. +.TP +\-\fBdry\-run\fR=false +don\(cqt move, just show what would be moved +. +.TP +\-\fBwith\-deps\fR=false +follow dependencies when processing package\-spec +. +.SH "REMOVE PACKAGES FROM LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBremove\fR \fIname\fR \fIpackage\-spec\fR \fB\|\.\|\.\|\.\fR +. +.P +Commands removes packages matching \fIpackage\-spec\fR from local repository \fIname\fR\. If removed packages are not referenced by other repos or snapshots, they can be removed completely (including files) by running \(cqaptly db cleanup\(cq\. +. +.P +Example: +. +.P +$ aptly repo remove testing \(cqmyapp (=0\.1\.12)\(cq +. +.P +Options: +. +.TP +\-\fBdry\-run\fR=false +don\(cqt remove, just show what would be removed +. +.SH "SHOW DETAILS ABOUT LOCAL REPOSITORY" +\fBaptly\fR \fBrepo\fR \fBshow\fR \fIname\fR +. +.P +Show command shows full information about local package repository\. +. +.P +ex: $ aptly repo show testing +. +.P +Options: +. +.TP +\-\fBwith\-packages\fR=false +show list of packages +. +.SH "CREATES SNAPSHOT OF MIRROR (LOCAL REPOSITORY) CONTENTS" +\fBaptly\fR \fBsnapshot\fR \fBcreate\fR \fIname\fR \fBfrom\fR \fBmirror\fR \fImirror\-name\fR \fB|\fR \fBfrom\fR \fBrepo\fR \fIrepo\-name\fR \fB|\fR \fBempty\fR +. +.P +Command create \fIname\fR from mirror makes persistent immutable snapshot of remote repository mirror\. Snapshot could be published or further modified using merge, pull and other aptly features\. +. +.P +Command create \fIname\fR from repo makes persistent immutable snapshot of local repository\. Snapshot could be processed as mirror snapshots, and mixed with snapshots of remote mirrors\. +. +.P +Command create \fIname\fR empty creates empty snapshot that could be used as a basis for snapshot pull operations, for example\. As snapshots are immutable, creating one empty snapshot should be enough\. +. +.P +Example: +. +.P +$ aptly snapshot create wheezy\-main\-today from mirror wheezy\-main +. +.SH "LIST SNAPSHOTS" +\fBaptly\fR \fBsnapshot\fR \fBlist\fR +. +.P +Command list shows full list of snapshots created\. +. +.P +Example: +. +.P +$ aptly snapshot list +. +.P +Options: +. +.TP +\-\fBraw\fR=false +display list in machine\-readable format +. +.SH "SHOWS DETAILS ABOUT SNAPSHOT" +\fBaptly\fR \fBsnapshot\fR \fBshow\fR \fIname\fR +. +.P +Command show displays full information about a snapshot\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly snapshot show wheezy\-main +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBwith\-packages\fR=false +show list of packages +. +.SH "VERIFY DEPENDENCIES IN SNAPSHOT" +\fBaptly\fR \fBsnapshot\fR \fBverify\fR \fIname\fR [\fIsource\fR \|\.\|\.\|\.] +. +.P +Verify does dependency resolution in snapshot \fIname\fR, possibly using additional snapshots \fIsource\fR as dependency sources\. All unsatisfied dependencies are printed\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly snapshot verify wheezy\-main wheezy\-contrib wheezy\-non\-free +. +.fi +. +.IP "" 0 +. +.SH "PULL PACKAGES FROM ANOTHER SNAPSHOT" +\fBaptly\fR \fBsnapshot\fR \fBpull\fR \fIname\fR \fIsource\fR \fIdestination\fR \fIpackage\-name\fR \fB\|\.\|\.\|\.\fR +. +.P +Command pull pulls new packages along with its\(cq dependencies to snapshot \fIname\fR from snapshot \fIsource\fR\. Pull can upgrade package version in \fIname\fR with versions from \fIsource\fR following dependencies\. New snapshot \fIdestination\fR is created as a result of this process\. Packages could be specified simply as \(cqpackage\-name\(cq or as dependency \(cqpackage\-name (>= version)\(cq\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly snapshot pull wheezy\-main wheezy\-backports wheezy\-new\-xorg xorg\-server\-server +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBdry\-run\fR=false +don\(cqt create destination snapshot, just show what would be pulled +. +.TP +\-\fBno\-deps\fR=false +don\(cqt process dependencies, just pull listed packages +. +.TP +\-\fBno\-remove\fR=false +don\(cqt remove other package versions when pulling package +. +.SH "DIFFERENCE BETWEEN TWO SNAPSHOTS" +\fBaptly\fR \fBsnapshot\fR \fBdiff\fR \fIname\-a\fR \fIname\-b\fR +. +.P +Displays difference in packages between two snapshots\. Snapshot is a list of packages, so difference between snapshots is a difference between package lists\. Package could be either completely missing in one snapshot, or package is present in both snapshots with different versions\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly snapshot diff \-only\-matching wheezy\-main wheezy\-backports +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBonly\-matching\fR=false +display diff only for matching packages (don\(cqt display missing packages) +. +.SH "MERGES SNAPSHOTS" +\fBaptly\fR \fBsnapshot\fR \fBmerge\fR \fIdestination\fR \fIsource\fR [\fIsource\fR\|\.\|\.\|\.] +. +.P +Merge command merges several \fIsource\fR snapshots into one \fIdestination\fR snapshot\. Merge happens from left to right\. By default, packages with the same name\-architecture pair are replaced during merge (package from latest snapshot on the list wins)\. If run with only one source snapshot, merge copies \fIsource\fR into \fIdestination\fR\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly snapshot merge wheezy\-w\-backports wheezy\-main wheezy\-backports +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBlatest\fR=false +use only the latest version of each package +. +.SH "DELETE SNAPSHOT" +\fBaptly\fR \fBsnapshot\fR \fBdrop\fR \fIname\fR +. +.P +Drop removes information about a snapshot\. If snapshot is published, it can\(cqt be dropped\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly snapshot drop wheezy\-main +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBforce\fR=false +remove snapshot even if it was used as source for other snapshots +. +.SH "REMOVE PUBLISHED REPOSITORY" +\fBaptly\fR \fBpublish\fR \fBdrop\fR \fIdistribution\fR [\fIprefix\fR] +. +.P +Command removes whatever has been published under specified \fIprefix\fR and \fIdistribution\fR name\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly publish drop wheezy +. +.fi +. +.IP "" 0 +. +.SH "LIST OF PUBLISHED REPOSITORIES" +\fBaptly\fR \fBpublish\fR \fBlist\fR +. +.P +Display list of currently published snapshots\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly publish list +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBraw\fR=false +display list in machine\-readable format +. +.SH "PUBLISH LOCAL REPOSITORY" +\fBaptly\fR \fBpublish\fR \fBrepo\fR \fIname\fR [\fIprefix\fR] +. +.P +Command publishes current state of local repository ready to be consumed by apt tools\. Published repostiories appear under rootDir/public directory\. Valid GPG key is required for publishing\. +. +.P +It is not recommended to publish local repositories directly unless the repository is for testing purposes and changes happen frequently\. For production usage please take snapshot of repository and publish it using publish snapshot command\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly publish repo testing +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBcomponent\fR= +component name to publish +. +.TP +\-\fBdistribution\fR= +distribution name to publish +. +.TP +\-\fBgpg\-key\fR= +GPG key ID to use when signing the release +. +.TP +\-\fBkeyring\fR= +GPG keyring to use (instead of default) +. +.TP +\-\fBlabel\fR= +label to publish +. +.TP +\-\fBorigin\fR= +origin name to publish +. +.TP +\-\fBsecret\-keyring\fR= +GPG secret keyring to use (instead of default) +. +.TP +\-\fBskip\-signing\fR=false +don\(cqt sign Release files with GPG +. +.SH "PUBLISH SNAPSHOT" +\fBaptly\fR \fBpublish\fR \fBsnapshot\fR \fIname\fR [\fIprefix\fR] +. +.P +Command publishes snapshot as Debian repository ready to be consumed by apt tools\. Published repostiories appear under rootDir/public directory\. Valid GPG key is required for publishing\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly publish snapshot wheezy\-main +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBcomponent\fR= +component name to publish +. +.TP +\-\fBdistribution\fR= +distribution name to publish +. +.TP +\-\fBgpg\-key\fR= +GPG key ID to use when signing the release +. +.TP +\-\fBkeyring\fR= +GPG keyring to use (instead of default) +. +.TP +\-\fBlabel\fR= +label to publish +. +.TP +\-\fBorigin\fR= +origin name to publish +. +.TP +\-\fBsecret\-keyring\fR= +GPG secret keyring to use (instead of default) +. +.TP +\-\fBskip\-signing\fR=false +don\(cqt sign Release files with GPG +. +.SH "UPDATE PUBLISHED REPOSITORY BY SWITCHING TO NEW SNAPSHOT" +\fBaptly\fR \fBpublish\fR \fBswitch\fR \fIdistribution\fR [\fIprefix\fR] \fInew\-snapshot\fR +. +.P +Command switches in\-place published repository with new snapshot contents\. All publishing parameters are preserved (architecture list, distribution, component)\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly publish update wheezy ppa wheezy\-7\.5 +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBgpg\-key\fR= +GPG key ID to use when signing the release +. +.TP +\-\fBkeyring\fR= +GPG keyring to use (instead of default) +. +.TP +\-\fBsecret\-keyring\fR= +GPG secret keyring to use (instead of default) +. +.TP +\-\fBskip\-signing\fR=false +don\(cqt sign Release files with GPG +. +.SH "UPDATE PUBLISHED LOCAL REPOSITORY" +\fBaptly\fR \fBpublish\fR \fBupdate\fR \fIdistribution\fR [\fIprefix\fR] +. +.P +Command re\-publishes (updates) published local repository\. \fIdistribution\fR and \fIprefix\fR should be occupied with local repository published using command aptly publish repo\. Update happens in\-place with minimum possible downtime for published repository\. +. +.P +Example: +. +.IP "" 4 +. +.nf + +$ aptly publish update wheezy ppa +. +.fi +. +.IP "" 0 +. +.P +Options: +. +.TP +\-\fBgpg\-key\fR= +GPG key ID to use when signing the release +. +.TP +\-\fBkeyring\fR= +GPG keyring to use (instead of default) +. +.TP +\-\fBsecret\-keyring\fR= +GPG secret keyring to use (instead of default) +. +.TP +\-\fBskip\-signing\fR=false +don\(cqt sign Release files with GPG +. +.SH "CLEANUP DB AND PACKAGE POOL" +\fBaptly\fR \fBdb\fR \fBcleanup\fR +. +.P +Database cleanup removes information about unreferenced packages and removes files in the package pool that aren\(cqt used by packages anymore +. +.P +Example: +. +.P +$ aptly db cleanup +. +.SH "RECOVER DB AFTER CRASH" +\fBaptly\fR \fBdb\fR \fBrecover\fR +. +.P +Database recover does its\(cq best to recover the database after a crash\. It is recommended to backup the DB before running recover\. +. +.P +Example: +. +.P +$ aptly db recover +. +.SH "HTTP SERVE PUBLISHED REPOSITORIES" +\fBaptly\fR \fBserve\fR +. +.P +Command serve starts embedded HTTP server (not suitable for real production usage) to serve contents of public/ subdirectory of aptly\(cqs root that contains published repositories\. +. +.P +Example: +. +.P +$ aptly serve \-listen=:8080 +. +.P +Options: +. +.TP +\-\fBlisten\fR=:8080 +host:port for HTTP listening +. +.SH "RENDER GRAPH OF RELATIONSHIPS" +\fBaptly\fR \fBgraph\fR +. +.P +Command graph displays relationship between mirrors, local repositories, snapshots and published repositories using graphviz package to render graph as an image\. +. +.P +Example: +. +.P +$ aptly graph +. +.SH "ENVIRONMENT" +If environment variable \fBHTTP_PROXY\fR is set \fBaptly\fR would use its value to proxy all HTTP requests\. +. +.SH "RETURN VALUES" +\fBaptly\fR exists with 0 on success and with 1 on failure\. +. +.SH "AUTHORS" +Andrey Smirnov (me@smira\.ru) diff --git a/src/github.com/smira/aptly/man/aptly.1.ronn.tmpl b/src/github.com/smira/aptly/man/aptly.1.ronn.tmpl new file mode 100644 index 00000000..4fc89565 --- /dev/null +++ b/src/github.com/smira/aptly/man/aptly.1.ronn.tmpl @@ -0,0 +1,176 @@ +{{define "main"}}aptly(1) -- {{.Short}} +============================================= + +## SYNOPSIS + +Common command format: + + `aptly` [...] [...] + +aptly has integrated help that matches contents of this manual page, to get help, prepend +`help` to command name: + + `aptly` `help` `mirror` `create` + +## DESCRIPTION + +{{.Long}} + +## CONFIGURATION + +aptly looks for configuration file in `/etc/aptly.conf` and `~/.aptly.conf`, if no config file +found, new one is created. If `-config=` flag is specified, aptly would use config file at specified +location. Also aptly needs root directory for database, package and published repository storage. +If not specified, directory defaults to `~/.aptly`, it will be created if missing. + +Configuration file is stored in JSON format (default values shown below): + + { + "rootDir": "$HOME/.aptly", + "downloadConcurrency": 4, + "architectures": [], + "dependencyFollowSuggests": false, + "dependencyFollowRecommends": false + "dependencyFollowAllVariants": false, + "dependencyFollowSource": false, + "gpgDisableSign": false, + "gpgDisableVerify": false, + "downloadSourcePackages": false, + "ppaDistributorID": "ubuntu", + "ppaCodename": "" + } + +Options: + + * `rootDir`: + is root of directory storage to store database (`rootDir`/db), downloaded packages (`rootDir`/pool) and + published repositories (`rootDir`/public) + + * `downloadConcurrency`: + is a number of parallel download threads to use when downloading packages + + * `architectures`: + is a list of architectures to process; if left empty defaults to all available architectures; could be + overridden with option `-architectures` + + * `dependencyFollowSuggests`: + follow contents of `Suggests:` field when processing dependencies for the package + + * `dependencyFollowRecommends`: + follow contents of `Recommends:` field when processing dependencies for the package + + * `dependencyFollowAllVariants`: + when dependency looks like `package-a | package-b`, follow both variants always + + * `dependencyFollowSource`: + follow dependency from binary package to source package + + * `gpgDisableSign`: + don't sign published repositories with gpg(1), also can be disabled on + per-repo basis using `-skip-signing` flag when publishing + + * `gpgDisableVerify`: + don't verify remote mirrors with gpg(1), also can be disabled on + per-mirror basis using `-ignore-signatures` flag when creating and updating mirrors + + * `downloadSourcePackages`: + if enabled, all mirrors created would have flag set to download source packages; + this setting could be controlled on per-mirror basis with `-with-sources` flag + + * `ppaDistributorID`, `ppaCodename`: + specifies paramaters for short PPA url expansion, if left blank they default + to output of `lsb_release` command + +## PACKAGE SPEC + +Some commands accept package specs to identify list of packages to process. +Package spec is a list of following search conditions: + + * direct package reference: + reference to exaclty one package. Format is identical to the way aptly lists packages in + show commands with `-with-packages` flag: `name_version_arch`, + e.g.: `libmysqlclient18_5.5.35-rel33.0-611.squeeze_amd64` + + * dependency condition: + syntax follows Debian dependency specification: package_name followed by optional version specification and architecture limit. + +Examples: + + * `mysql-client`: + matches package mysql-client of any version and architecture (including source) + + * `mysql-client (>= 3.6)`: + matches package mysql-client with version greater or equal to 3.6. Valid operators for + version are: `>=`, `<=`, `=`, `>>` (strictly greater), `<<` (strictly less). + + * `mysql-client {i386}`: + matches package `mysql-client` on architecture `i386`, architecture `all` matches all architectures but source. + + * `mysql-client (>= 3.6) {i386}`: + version and architecture conditions combined. + +When specified on command line, condition may have to be quoted according to shell rules, so that it stays single argument: + + `aptly repo import percona stable 'mysql-client (>= 3.6)'` + + +## GLOBAL OPTIONS + +{{template "options" .}} + +{{template "command" findCommand . "mirror"}} + +{{template "command" findCommand . "repo"}} + +{{template "command" findCommand . "snapshot"}} + +{{template "command" findCommand . "publish"}} + +{{template "command" findCommand . "db"}} + +{{template "command" findCommand . "serve"}} + +{{template "command" findCommand . "graph"}} + +## ENVIRONMENT + +If environment variable `HTTP_PROXY` is set `aptly` would use its value +to proxy all HTTP requests. + +## RETURN VALUES + +`aptly` exists with 0 on success and with 1 on failure. + +## AUTHORS + +Andrey Smirnov (me@smira.ru) + +{{end}} + +{{/* command list */}} +{{define "command"}} +{{if .Runnable}} +## {{toUpper .Short}} + +{{capitalize .Parent.FullSpacedName}} {{capitalize .UsageLine}} + +{{.Long}} + +{{if (allFlags .Flag | len) gt 0}} +Options: + +{{template "options" .}} +{{end}} + +{{end}} + +{{range .Subcommands}}{{template "command" .}}{{end}} +{{end}} + +{{/* options layout */}} +{{define "options"}} +{{range allFlags .Flag}} + * -`{{.Name}}`={{.DefValue}}: + {{.Usage}} +{{end}} +{{end}} \ No newline at end of file diff --git a/src/github.com/smira/aptly/man/gen.go b/src/github.com/smira/aptly/man/gen.go new file mode 100644 index 00000000..0bc9e238 --- /dev/null +++ b/src/github.com/smira/aptly/man/gen.go @@ -0,0 +1,88 @@ +package main + +import ( + "fmt" + "github.com/smira/aptly/cmd" + "github.com/smira/commander" + "github.com/smira/flag" + "log" + "os" + "os/exec" + "path/filepath" + "runtime" + "strings" + "text/template" +) + +func allFlags(flags *flag.FlagSet) []*flag.Flag { + result := []*flag.Flag{} + flags.VisitAll(func(f *flag.Flag) { + result = append(result, f) + }) + return result +} + +func findCommand(cmd *commander.Command, name string) (*commander.Command, error) { + for _, c := range cmd.Subcommands { + if c.Name() == name { + return c, nil + } + } + + return nil, fmt.Errorf("command %s not found", name) +} + +func capitalize(s string) string { + parts := strings.Split(s, " ") + for i, part := range parts { + if part[0] != '<' && part[0] != '[' && part[len(part)-1] != '>' && part[len(part)-1] != ']' { + parts[i] = "`" + part + "`" + } + } + + return strings.Join(parts, " ") +} + +func main() { + command := cmd.RootCommand() + command.UsageLine = "aptly" + command.Dispatch(nil) + + _, _File, _, _ := runtime.Caller(0) + _File, _ = filepath.Abs(_File) + + templ := template.New("man").Funcs(template.FuncMap{ + "allFlags": allFlags, + "findCommand": findCommand, + "toUpper": strings.ToUpper, + "capitalize": capitalize, + }) + template.Must(templ.ParseFiles(filepath.Join(filepath.Dir(_File), "aptly.1.ronn.tmpl"))) + + output, err := os.Create(filepath.Join(filepath.Dir(_File), "aptly.1.ronn")) + if err != nil { + log.Fatal(err) + } + + err = templ.ExecuteTemplate(output, "main", command) + if err != nil { + log.Fatal(err) + } + + output.Close() + + out, err := exec.Command("ronn", filepath.Join(filepath.Dir(_File), "aptly.1.ronn")).CombinedOutput() + if err != nil { + os.Stdout.Write(out) + log.Fatal(err) + } + + cmd := exec.Command("man", filepath.Join(filepath.Dir(_File), "aptly.1")) + cmd.Stdin = os.Stdin + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + err = cmd.Run() + if err != nil { + log.Fatal(err) + } +} diff --git a/src/github.com/smira/aptly/mem.gp b/src/github.com/smira/aptly/mem.gp new file mode 100644 index 00000000..357e4a2b --- /dev/null +++ b/src/github.com/smira/aptly/mem.gp @@ -0,0 +1,6 @@ +set output 'mem.png' +set term png +set key box left +set xlabel "Time (msec)" +set ylabel "Mem (MB)" +plot "mem.dat" using 1:($2/1e6) title 'HeapSys' with lines, "mem.dat" using 1:($3/1e6) title 'HeapAlloc' with lines, "mem.dat" using 1:($4/1e6) title 'HeapIdle' with lines \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/README.rst b/src/github.com/smira/aptly/system/README.rst new file mode 100644 index 00000000..ec23ec65 --- /dev/null +++ b/src/github.com/smira/aptly/system/README.rst @@ -0,0 +1 @@ +System test for aptly \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/files/aptly.pub b/src/github.com/smira/aptly/system/files/aptly.pub new file mode 100644 index 00000000..08758e43 Binary files /dev/null and b/src/github.com/smira/aptly/system/files/aptly.pub differ diff --git a/src/github.com/smira/aptly/system/files/aptly.sec b/src/github.com/smira/aptly/system/files/aptly.sec new file mode 100644 index 00000000..f90e1c91 Binary files /dev/null and b/src/github.com/smira/aptly/system/files/aptly.sec differ diff --git a/src/github.com/smira/aptly/system/files/debian-archive-keyring.gpg b/src/github.com/smira/aptly/system/files/debian-archive-keyring.gpg new file mode 100644 index 00000000..46d1f0e2 Binary files /dev/null and b/src/github.com/smira/aptly/system/files/debian-archive-keyring.gpg differ diff --git a/src/github.com/smira/aptly/system/files/flat.key b/src/github.com/smira/aptly/system/files/flat.key new file mode 100644 index 00000000..f40f79eb --- /dev/null +++ b/src/github.com/smira/aptly/system/files/flat.key @@ -0,0 +1,19 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1.4.5 (GNU/Linux) + +mQGiBE9p65cRBACFOL5YS4kW6xieXa98meE+RVu1hfBi1n7ajAy+ZQOfNa2Xb9if +H8WAcwJD4cTZYB19/O/xVxCYf1hnC/T34XGC5PUzMzBDKde86UDqvT4YNHDQA/E1 +I6UUzE0MgLINO4Dt7Mw62koVrlPXklc2Zn83ucZB7YgBzJOIBFUQLghikwCgnubS +n/9lw8Hm8CIsg4nWtHwHGPED/jXIsH7ON3PBx2wIdRsealsx5sPGHQSlq1grRHcN +YT5/glXmVqnexY/+IFhcpjjb3vMMQ5LYq8+bDWGVMQx3GZrJs66rwPbo4kZ92OdC +RTnY/nznJlf5gS86DaFl+NFuO7F1k8ju4CurXXGXPF7nk8cgV6CrYHz1AtNyLVqa +306IA/9j9rdD/MY9SYT16eFMo7C2ieIS0RxxU3q9w0e8EucQKiHWMtjTPJ0Ik0GO +TY5lAPasnD6ZBA15XSiTi2Ck2QoZQZCxdtId/nL7lNG4+vQ8HACNDkxxK4yHJiFa +frMdlWi5cYgAMYzbYPekbhaamDR7Gh4NU7z72QZTPELKyZD/pbRGaG9tZTpEZWVw +RGl2ZXIxOTc1IE9CUyBQcm9qZWN0IDxob21lOkRlZXBEaXZlcjE5NzVAYnVpbGQu +b3BlbnN1c2Uub3JnPohlBBMRAgAmBQJPaeuXAhsDBQkEHrAABgsJCAcDAgQVAggD +BBYCAwECHgECF4AACgkQuCWWGBBIwf+tEgCcDEzTAilZDvOr0OKHHmguuKFXoHMA +ljX7B6nKOYoiHoGpBeOwr8U5ZB6IRgQTEQIABgUCT2nrlwAKCRA7MBG3a51lI7Rt +AJ4mYeomQiHHfd+7c8T0JhbGKUIDlACglHyTlouU5vCpUEHDyLvwrHFylpk= +=b/6f +-----END PGP PUBLIC KEY BLOCK----- diff --git a/src/github.com/smira/aptly/system/files/launchpad.key b/src/github.com/smira/aptly/system/files/launchpad.key new file mode 100644 index 00000000..2a7ba036 --- /dev/null +++ b/src/github.com/smira/aptly/system/files/launchpad.key @@ -0,0 +1,13 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mI0ES+RoaQEEAOQ6QF8zfqHbXJ+ekkXRm3uP5TvVwp0loa7S2u3xYjSDKzRz4nSS +aD6coQ8wVPw4ROZLNnDtkbv9dDK9Mm7Uke5A8QkUXQU4v3/qFgjFT+au64iBYDRO +FqAFFmZZdI0WCRxKJLiLal5H4cWnAoFBe5JdhAR8ZON2lm7vuKndVeg7ABEBAAG0 +DUxhdW5jaHBhZCBzaW2ItgQTAQIAIAUCS+RoaQIbAwYLCQgHAwIEFQIIAwQWAgMB +Ah4BAheAAAoJEKUnmpc7H1bAJAED/0hbSk3nV9D5VdeLrkuyrAINTO801I1AZBdC +lmqtFiFFsYE5jMeAFYk75BLS2aa9c1cbNh5Pwg7Ujg8+4/NOmPjFjvqONn0sRebJ +FVwsedeQx+YTjCvy4vnviZmY+6ieixrgvrqG2+xPncuZmjppeKgMzPenPC178crJ +hXttP13F +=fI+d +-----END PGP PUBLIC KEY BLOCK----- diff --git a/src/github.com/smira/aptly/system/files/libboost-program-options-dev_1.49.0.1_i386.deb b/src/github.com/smira/aptly/system/files/libboost-program-options-dev_1.49.0.1_i386.deb new file mode 100644 index 00000000..a69ba17b Binary files /dev/null and b/src/github.com/smira/aptly/system/files/libboost-program-options-dev_1.49.0.1_i386.deb differ diff --git a/src/github.com/smira/aptly/system/files/pyspi-0.6.1-1.3.stripped.dsc b/src/github.com/smira/aptly/system/files/pyspi-0.6.1-1.3.stripped.dsc new file mode 100644 index 00000000..08fd183b --- /dev/null +++ b/src/github.com/smira/aptly/system/files/pyspi-0.6.1-1.3.stripped.dsc @@ -0,0 +1,19 @@ +Format: 1.0 +Source: pyspi +Binary: python-at-spi +Architecture: any +Version: 0.6.1-1.4 +Maintainer: Jose Carlos Garcia Sogo +Homepage: http://people.redhat.com/zcerza/dogtail +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Checksums-Sha1: + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz + 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz +Checksums-Sha256: + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz + 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz +Files: + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz + 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz diff --git a/src/github.com/smira/aptly/system/files/pyspi_0.6.1-1.3.diff.gz b/src/github.com/smira/aptly/system/files/pyspi_0.6.1-1.3.diff.gz new file mode 100644 index 00000000..f2b1f57e Binary files /dev/null and b/src/github.com/smira/aptly/system/files/pyspi_0.6.1-1.3.diff.gz differ diff --git a/src/github.com/smira/aptly/system/files/pyspi_0.6.1-1.3.dsc b/src/github.com/smira/aptly/system/files/pyspi_0.6.1-1.3.dsc new file mode 100644 index 00000000..063af5f6 --- /dev/null +++ b/src/github.com/smira/aptly/system/files/pyspi_0.6.1-1.3.dsc @@ -0,0 +1,40 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + +Format: 1.0 +Source: pyspi +Binary: python-at-spi +Architecture: any +Version: 0.6.1-1.3 +Maintainer: Jose Carlos Garcia Sogo +Homepage: http://people.redhat.com/zcerza/dogtail +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Checksums-Sha1: + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz + 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz +Checksums-Sha256: + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz + 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz +Files: + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz + 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.10 (GNU/Linux) + +iQIcBAEBCAAGBQJLLl7qAAoJELs6aAGGSaoGMc4P/27jxlQ0J35Bg4yLmYhI4PQD +xPWJvOd8MyrKyDjiw7xlP76tzpyNuysPoCNPKAdQHX4GQoZUPpXVEIE8VaQK9tDL +HmSKT+bMkMairKZUc3c+kKTu+Oc+XMTARu1DwG4kFurnrgujriT62U3GspnT4Xyf +7F9TmDMKOPGYGlLfeEUxfKhFAG4X82/d1b9z43ClhPGCJFDM908tdEyg7b/4uClx +HwdiPsRe1UXa9xITWnFtEiJ7575ZAq4GnAKWmjROQH3esxxxDygiuq8LzRjNGCXH +oG949ekl7DlsKbLn2TbJntk69WT0mbZTgCSpl/maeJVp1jXnhpHW/ZTOvR8WlX/T +H10ICHhoJWXltDOOZuJGzkWheSwkAS2rPrW8xDn8B9zDUkyEEajxqIASUNTGWShD +miq3IHFfkZiVgnrIDFd9BXe2gTmgyJfg61QTjOJ1DWTo8D+U2MqrgsOqAQ27/avK +tl5ZuMRY8rB1hOARx5E6PKzVvdWnw1IptWIwGmUhF5qpme8vFVrST93NbZ7UcT8g +chj3TCz0JdRmFSLeS7WJv06Mb7awFVQf32BhWMdSW7eTPj1cPm4ewnfj1iR5n1ke +I6+/Yr/r2yVh0nMkezUEPkCbXkb175mT5egNpDnyYf5C7+ZF0IZORJDud1B7fFwJ +fHrvmF3nQIUsVsFTCfV9 +=8mVA +-----END PGP SIGNATURE----- diff --git a/src/github.com/smira/aptly/system/files/pyspi_0.6.1.orig.tar.gz b/src/github.com/smira/aptly/system/files/pyspi_0.6.1.orig.tar.gz new file mode 100644 index 00000000..e67950c5 Binary files /dev/null and b/src/github.com/smira/aptly/system/files/pyspi_0.6.1.orig.tar.gz differ diff --git a/src/github.com/smira/aptly/system/fixture.sh b/src/github.com/smira/aptly/system/fixture.sh new file mode 100644 index 00000000..5a4cfb41 --- /dev/null +++ b/src/github.com/smira/aptly/system/fixture.sh @@ -0,0 +1,29 @@ +aptly -architectures=i386,amd64 mirror create wheezy-main http://mirror.yandex.ru/debian/ wheezy main +aptly -architectures=i386,amd64 mirror create wheezy-contrib http://mirror.yandex.ru/debian/ wheezy contrib +aptly -architectures=i386,amd64 mirror create wheezy-non-free http://mirror.yandex.ru/debian/ wheezy non-free +aptly -architectures=i386,amd64 mirror create wheezy-updates http://mirror.yandex.ru/debian/ wheezy-updates +aptly -architectures=i386,amd64 mirror create wheezy-backports http://mirror.yandex.ru/debian/ wheezy-backports + +aptly mirror update wheezy-main +aptly mirror update wheezy-contrib +aptly mirror update wheezy-non-free +aptly mirror update wheezy-updates +aptly mirror update wheezy-backports + +aptly -architectures=i386,amd64 mirror create -with-sources wheezy-main-src http://mirror.yandex.ru/debian/ wheezy main +aptly -architectures=i386,amd64 mirror create -with-sources wheezy-contrib-src http://mirror.yandex.ru/debian/ wheezy contrib +aptly -architectures=i386,amd64 mirror create -with-sources wheezy-non-free-src http://mirror.yandex.ru/debian/ wheezy non-free +aptly -architectures=i386,amd64 mirror create -with-sources wheezy-updates-src http://mirror.yandex.ru/debian/ wheezy-updates +aptly -architectures=i386,amd64 mirror create -with-sources wheezy-backports-src http://mirror.yandex.ru/debian/ wheezy-backports + +aptly mirror update wheezy-main-src +aptly mirror update wheezy-contrib-src +aptly mirror update wheezy-non-free-src +aptly mirror update wheezy-updates-src +aptly mirror update wheezy-backports-src + +aptly mirror create gnuplot-maverick http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +aptly mirror update gnuplot-maverick + +aptly mirror create -with-sources gnuplot-maverick-src http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +aptly mirror update gnuplot-maverick-src diff --git a/src/github.com/smira/aptly/system/gpg-gen-key b/src/github.com/smira/aptly/system/gpg-gen-key new file mode 100644 index 00000000..6af211b9 --- /dev/null +++ b/src/github.com/smira/aptly/system/gpg-gen-key @@ -0,0 +1,13 @@ +Key-Type: DSA +Key-Length: 1024 +Subkey-Type: ELG-E +Subkey-Length: 1024 +Name-Real: Aptly Tester +Name-Comment: don't use it +Name-Email: test@aptly.info +Expire-Date: 0 +%pubring aptly.pub +%secring aptly.sec +# Do a commit here, so that we can later print "done" :-) +%commit +%echo done \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/lib.py b/src/github.com/smira/aptly/system/lib.py new file mode 100644 index 00000000..fe54753b --- /dev/null +++ b/src/github.com/smira/aptly/system/lib.py @@ -0,0 +1,246 @@ +""" +Test library. +""" + +import difflib +import inspect +import json +import subprocess +import os +import posixpath +import shlex +import shutil +import string +import threading +import urllib +#import time +import SocketServer +import SimpleHTTPServer + + +class ThreadedTCPServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): + pass + + +class FileHTTPServerRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): + def translate_path(self, path): + """Translate a /-separated PATH to the local filename syntax. + + Components that mean special things to the local file system + (e.g. drive or directory names) are ignored. (XXX They should + probably be diagnosed.) + + """ + # abandon query parameters + path = path.split('?', 1)[0] + path = path.split('#', 1)[0] + path = posixpath.normpath(urllib.unquote(path)) + words = path.split('/') + words = filter(None, words) + path = self.rootPath + for word in words: + drive, word = os.path.splitdrive(word) + head, word = os.path.split(word) + if word in (os.curdir, os.pardir): + continue + path = os.path.join(path, word) + return path + + def log_message(self, format, *args): + pass + + +class BaseTest(object): + """ + Base class for all tests. + """ + + longTest = False + fixturePool = False + fixturePoolCopy = False + fixtureDB = False + fixtureGpg = False + fixtureWebServer = False + + expectedCode = 0 + configFile = { + "rootDir": "%s/.aptly" % os.environ["HOME"], + "downloadConcurrency": 4, + "architectures": [], + "dependencyFollowSuggests": False, + "dependencyFollowRecommends": False, + "dependencyFollowAllVariants": False, + "dependencyFollowSource": False, + "gpgDisableVerify": False, + "gpgDisableSign": False, + "ppaDistributorID": "ubuntu", + "ppaCodename": "", + } + configOverride = {} + + fixtureDBDir = os.path.join(os.environ["HOME"], "aptly-fixture-db") + fixturePoolDir = os.path.join(os.environ["HOME"], "aptly-fixture-pool") + + outputMatchPrepare = None + + def test(self): + self.prepare() + self.run() + self.check() + + def prepare_remove_all(self): + if os.path.exists(os.path.join(os.environ["HOME"], ".aptly")): + shutil.rmtree(os.path.join(os.environ["HOME"], ".aptly")) + if os.path.exists(os.path.join(os.environ["HOME"], ".aptly.conf")): + os.remove(os.path.join(os.environ["HOME"], ".aptly.conf")) + if os.path.exists(os.path.join(os.environ["HOME"], ".gnupg", "aptlytest.gpg")): + os.remove(os.path.join(os.environ["HOME"], ".gnupg", "aptlytest.gpg")) + + def prepare_default_config(self): + cfg = self.configFile.copy() + cfg.update(**self.configOverride) + f = open(os.path.join(os.environ["HOME"], ".aptly.conf"), "w") + f.write(json.dumps(cfg)) + f.close() + + def fixture_available(self): + if self.fixturePool and not os.path.exists(self.fixturePoolDir): + return False + if self.fixtureDB and not os.path.exists(self.fixtureDBDir): + return False + + return True + + def prepare_fixture(self): + if self.fixturePool: + #start = time.time() + os.makedirs(os.path.join(os.environ["HOME"], ".aptly"), 0755) + os.symlink(self.fixturePoolDir, os.path.join(os.environ["HOME"], ".aptly", "pool")) + #print "FIXTURE POOL: %.2f" % (time.time()-start) + + if self.fixturePoolCopy: + os.makedirs(os.path.join(os.environ["HOME"], ".aptly"), 0755) + shutil.copytree(self.fixturePoolDir, os.path.join(os.environ["HOME"], ".aptly", "pool"), ignore=shutil.ignore_patterns(".git")) + + if self.fixtureDB: + #start = time.time() + shutil.copytree(self.fixtureDBDir, os.path.join(os.environ["HOME"], ".aptly", "db")) + #print "FIXTURE DB: %.2f" % (time.time()-start) + + if self.fixtureWebServer: + self.webServerUrl = self.start_webserver(os.path.join(os.path.dirname(inspect.getsourcefile(self.__class__)), + self.fixtureWebServer)) + + if self.fixtureGpg: + self.run_cmd(["gpg", "--no-default-keyring", "--trust-model", "always", "--batch", "--keyring", "aptlytest.gpg", "--import", + os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "debian-archive-keyring.gpg"), + os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "launchpad.key"), + os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "flat.key")]) + + if hasattr(self, "fixtureCmds"): + for cmd in self.fixtureCmds: + self.run_cmd(cmd) + + def run(self): + self.output = self.output_processor(self.run_cmd(self.runCmd, self.expectedCode)) + + def run_cmd(self, command, expected_code=0): + try: + #start = time.time() + if not hasattr(command, "__iter__"): + params = { + 'files': os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files"), + 'testfiles': os.path.join(os.path.dirname(inspect.getsourcefile(self.__class__)), self.__class__.__name__), + } + if self.fixtureWebServer: + params['url'] = self.webServerUrl + + command = string.Template(command).substitute(params) + + command = shlex.split(command) + environ = os.environ.copy() + environ["LC_ALL"] = "C" + proc = subprocess.Popen(command, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, env=environ) + output, _ = proc.communicate() + #print "CMD %s: %.2f" % (" ".join(command), time.time()-start) + if proc.returncode != expected_code: + raise Exception("exit code %d != %d (output: %s)" % (proc.returncode, expected_code, output)) + return output + except Exception, e: + raise Exception("Running command %s failed: %s" % (command, str(e))) + + def gold_processor(self, gold): + return gold + + def output_processor(self, output): + return output + + def expand_environ(self, gold): + return string.Template(gold).substitute(os.environ) + + def get_gold(self, gold_name="gold"): + gold = os.path.join(os.path.dirname(inspect.getsourcefile(self.__class__)), self.__class__.__name__ + "_" + gold_name) + return self.gold_processor(open(gold, "r").read()) + + def check_output(self): + self.verify_match(self.get_gold(), self.output, match_prepare=self.outputMatchPrepare) + + def check_cmd_output(self, command, gold_name, match_prepare=None, expected_code=0): + self.verify_match(self.get_gold(gold_name), self.run_cmd(command, expected_code=expected_code), match_prepare) + + def read_file(self, path): + with open(os.path.join(os.environ["HOME"], ".aptly", path), "r") as f: + return f.read() + + def delete_file(self, path): + os.unlink(os.path.join(os.environ["HOME"], ".aptly", path)) + + def check_file_contents(self, path, gold_name, match_prepare=None): + contents = self.read_file(path) + + self.verify_match(self.get_gold(gold_name), contents, match_prepare=match_prepare) + + def check_file(self): + self.verify_match(self.get_gold(), open(self.checkedFile, "r").read()) + + def check_exists(self, path): + if not os.path.exists(os.path.join(os.environ["HOME"], ".aptly", path)): + raise Exception("path %s doesn't exist" % (path, )) + + def check_not_exists(self, path): + if os.path.exists(os.path.join(os.environ["HOME"], ".aptly", path)): + raise Exception("path %s exists" % (path, )) + + def verify_match(self, a, b, match_prepare=None): + if match_prepare is not None: + a = match_prepare(a) + b = match_prepare(b) + + if a != b: + diff = "".join(difflib.unified_diff([l + "\n" for l in a.split("\n")], [l + "\n" for l in b.split("\n")])) + + raise Exception("content doesn't match:\n" + diff + "\n") + + check = check_output + + def prepare(self): + self.prepare_remove_all() + self.prepare_default_config() + self.prepare_fixture() + + def start_webserver(self, directory): + FileHTTPServerRequestHandler.rootPath = directory + self.webserver = ThreadedTCPServer(("localhost", 0), FileHTTPServerRequestHandler) + + server_thread = threading.Thread(target=self.webserver.serve_forever) + server_thread.daemon = True + server_thread.start() + + return "http://%s:%d/" % self.webserver.server_address + + def shutdown(self): + if hasattr(self, 'webserver'): + self.shutdown_webserver() + + def shutdown_webserver(self): + self.webserver.shutdown() diff --git a/src/github.com/smira/aptly/system/run.py b/src/github.com/smira/aptly/system/run.py new file mode 100755 index 00000000..6331a300 --- /dev/null +++ b/src/github.com/smira/aptly/system/run.py @@ -0,0 +1,78 @@ +#!/usr/local/bin/python + +import glob +import importlib +import os +import inspect +import sys + +from lib import BaseTest + +try: + from termcolor import colored +except ImportError: + def colored(s, **kwargs): + return s + + +def run(include_long_tests=False, tests=None): + """ + Run system test. + """ + if tests is None: + tests = glob.glob("t*_*") + fails = [] + numTests = numFailed = numSkipped = 0 + + for test in tests: + + testModule = importlib.import_module(test) + + for name in dir(testModule): + o = getattr(testModule, name) + + if not (inspect.isclass(o) and issubclass(o, BaseTest) and o is not BaseTest): + continue + + t = o() + if t.longTest and not include_long_tests or not t.fixture_available(): + numSkipped += 1 + continue + + numTests += 1 + + sys.stdout.write("%s:%s... " % (test, o.__name__)) + + try: + t.test() + except BaseException, e: + numFailed += 1 + fails.append((test, t, e, testModule)) + sys.stdout.write(colored("FAIL\n", color="red")) + else: + sys.stdout.write(colored("OK\n", color="green")) + + t.shutdown() + + print "TESTS: %d SUCCESS: %d FAIL: %d SKIP: %d" % (numTests, numTests - numFailed, numFailed, numSkipped) + + if len(fails) > 0: + print "\nFAILURES (%d):" % (len(fails), ) + + for (test, t, e, testModule) in fails: + print "%s:%s %s" % (test, t.__class__.__name__, testModule.__doc__.strip() + ": " + t.__doc__.strip()) + print "ERROR: %s" % (e, ) + print "=" * 60 + + sys.exit(1) + +if __name__ == "__main__": + os.chdir(os.path.realpath(os.path.dirname(sys.argv[0]))) + include_long_tests = False + tests = None + if len(sys.argv) > 1: + if sys.argv[1] == "--long": + include_long_tests = True + else: + tests = sys.argv[1:] + run(include_long_tests, tests) diff --git a/src/github.com/smira/aptly/system/t01_version/VersionTest_gold b/src/github.com/smira/aptly/system/t01_version/VersionTest_gold new file mode 100644 index 00000000..8dbdddf7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t01_version/VersionTest_gold @@ -0,0 +1 @@ +aptly version: 0.5 diff --git a/src/github.com/smira/aptly/system/t01_version/__init__.py b/src/github.com/smira/aptly/system/t01_version/__init__.py new file mode 100644 index 00000000..ca7276a9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t01_version/__init__.py @@ -0,0 +1,13 @@ +""" +Test aptly version +""" + +from lib import BaseTest + + +class VersionTest(BaseTest): + """ + version should match + """ + + runCmd = "aptly version" diff --git a/src/github.com/smira/aptly/system/t02_config/BadConfigTest_gold b/src/github.com/smira/aptly/system/t02_config/BadConfigTest_gold new file mode 100644 index 00000000..10f5b8ce --- /dev/null +++ b/src/github.com/smira/aptly/system/t02_config/BadConfigTest_gold @@ -0,0 +1 @@ +ERROR: error loading config file ${HOME}/.aptly.conf: invalid character 's' looking for beginning of object key string diff --git a/src/github.com/smira/aptly/system/t02_config/ConfigInFileTest_gold b/src/github.com/smira/aptly/system/t02_config/ConfigInFileTest_gold new file mode 100644 index 00000000..dcd0df02 --- /dev/null +++ b/src/github.com/smira/aptly/system/t02_config/ConfigInFileTest_gold @@ -0,0 +1 @@ +No mirrors found, create one with `aptly mirror create ...`. diff --git a/src/github.com/smira/aptly/system/t02_config/ConfigInMissingFileTest_gold b/src/github.com/smira/aptly/system/t02_config/ConfigInMissingFileTest_gold new file mode 100644 index 00000000..79d5e2dc --- /dev/null +++ b/src/github.com/smira/aptly/system/t02_config/ConfigInMissingFileTest_gold @@ -0,0 +1 @@ +ERROR: open nosuchfile.conf: no such file or directory diff --git a/src/github.com/smira/aptly/system/t02_config/CreateConfigTest_gold b/src/github.com/smira/aptly/system/t02_config/CreateConfigTest_gold new file mode 100644 index 00000000..55f7205f --- /dev/null +++ b/src/github.com/smira/aptly/system/t02_config/CreateConfigTest_gold @@ -0,0 +1,14 @@ +{ + "rootDir": "${HOME}/.aptly", + "downloadConcurrency": 4, + "architectures": [], + "dependencyFollowSuggests": false, + "dependencyFollowRecommends": false, + "dependencyFollowAllVariants": false, + "dependencyFollowSource": false, + "gpgDisableSign": false, + "gpgDisableVerify": false, + "downloadSourcePackages": false, + "ppaDistributorID": "ubuntu", + "ppaCodename": "" +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t02_config/__init__.py b/src/github.com/smira/aptly/system/t02_config/__init__.py new file mode 100644 index 00000000..380b63c2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t02_config/__init__.py @@ -0,0 +1,57 @@ +""" +Test config file +""" + +import os +import re +import inspect +from lib import BaseTest + + +class CreateConfigTest(BaseTest): + """ + new file is generated if missing + """ + runCmd = "aptly mirror list" + checkedFile = os.path.join(os.environ["HOME"], ".aptly.conf") + + check = BaseTest.check_file + gold_processor = BaseTest.expand_environ + prepare = BaseTest.prepare_remove_all + + +class BadConfigTest(BaseTest): + """ + broken config file + """ + runCmd = "aptly mirror list" + expectedCode = 1 + + gold_processor = BaseTest.expand_environ + + def prepare(self): + self.prepare_remove_all() + + f = open(os.path.join(os.environ["HOME"], ".aptly.conf"), "w") + f.write("{some crap") + f.close() + + +class ConfigInFileTest(BaseTest): + """ + config in other file test + """ + runCmd = ["aptly", "mirror", "list", + "-config=%s" % (os.path.join(os.path.dirname(inspect.getsourcefile(BadConfigTest)), "aptly.conf"), )] + prepare = BaseTest.prepare_remove_all + + outputMatchPrepare = lambda _, s: re.sub(r' -(cpuprofile|memprofile|memstats|meminterval)=.*\n', '', s, flags=re.MULTILINE) + + +class ConfigInMissingFileTest(BaseTest): + """ + config in other file test + """ + runCmd = ["aptly", "mirror", "list", "-config=nosuchfile.conf"] + expectedCode = 1 + prepare = BaseTest.prepare_remove_all diff --git a/src/github.com/smira/aptly/system/t02_config/aptly.conf b/src/github.com/smira/aptly/system/t02_config/aptly.conf new file mode 100644 index 00000000..ee8ca35a --- /dev/null +++ b/src/github.com/smira/aptly/system/t02_config/aptly.conf @@ -0,0 +1,10 @@ +{ + "rootDir": "/tmp/aptly", + "downloadConcurrency": 4, + "architectures": [], + "dependencyFollowSuggests": false, + "dependencyFollowRecommends": false, + "dependencyFollowAllVariants": false, + "gpgDisableSign": false, + "gpgDisableVerify": false +} \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t03_help/MainHelpTest_gold b/src/github.com/smira/aptly/system/t03_help/MainHelpTest_gold new file mode 100644 index 00000000..72fa545e --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/MainHelpTest_gold @@ -0,0 +1,20 @@ +aptly is a tool to create partial and full mirrors of remote +repositories, manage local repositories, filter them, merge, +upgrade individual packages, take snapshots and publish them +back as Debian repositories. + +aptly's goal is to establish repeatability and controlled changes +in a package-centric environment. aptly allows to fix a set of packages +in a repository, so that package installation and upgrade becomes +deterministic. At the same time aptly allows to perform controlled, +fine-grained changes in repository contents to transition your +package environment to new version. + +Options: + -architectures="": list of architectures to consider during (comma-separated), default to all available + -config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf) + -dep-follow-all-variants=false: when processing dependencies, follow a & b if depdency is 'a|b' + -dep-follow-recommends=false: when processing dependencies, follow Recommends + -dep-follow-source=false: when processing dependencies, follow from binary to Source packages + -dep-follow-suggests=false: when processing dependencies, follow Suggests + diff --git a/src/github.com/smira/aptly/system/t03_help/MainTest_gold b/src/github.com/smira/aptly/system/t03_help/MainTest_gold new file mode 100644 index 00000000..4f4a20e0 --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/MainTest_gold @@ -0,0 +1,23 @@ +aptly - Debian repository management tool + +Commands: + + db manage aptly's internal database and package pool + graph render graph of relationships + mirror manage mirrors of remote repositories + publish manage published repositories + repo manage local package repositories + serve HTTP serve published repositories + snapshot manage snapshots of repositories + version display version + +Use "aptly help " for more information about a command. + + +Options: + -architectures="": list of architectures to consider during (comma-separated), default to all available + -config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf) + -dep-follow-all-variants=false: when processing dependencies, follow a & b if depdency is 'a|b' + -dep-follow-recommends=false: when processing dependencies, follow Recommends + -dep-follow-source=false: when processing dependencies, follow from binary to Source packages + -dep-follow-suggests=false: when processing dependencies, follow Suggests diff --git a/src/github.com/smira/aptly/system/t03_help/MirrorCreateHelpTest_gold b/src/github.com/smira/aptly/system/t03_help/MirrorCreateHelpTest_gold new file mode 100644 index 00000000..74ea3140 --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/MirrorCreateHelpTest_gold @@ -0,0 +1,24 @@ +Usage: aptly mirror create [ ...] + +Creates mirror of remote repository, aptly supports both regular and flat Debian repositories exported +via HTTP. aptly would try download Release file from remote repository and verify its' signature. + +PPA urls could specified in short format: + + $ aptly mirror create ppa:/ + +Example: + + $ aptly mirror create wheezy-main http://mirror.yandex.ru/debian/ wheezy main + +Options: + -architectures="": list of architectures to consider during (comma-separated), default to all available + -config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf) + -dep-follow-all-variants=false: when processing dependencies, follow a & b if depdency is 'a|b' + -dep-follow-recommends=false: when processing dependencies, follow Recommends + -dep-follow-source=false: when processing dependencies, follow from binary to Source packages + -dep-follow-suggests=false: when processing dependencies, follow Suggests + -ignore-signatures=false: disable verification of Release file signatures + -keyring=: gpg keyring to use when verifying Release file (could be specified multiple times) + -with-sources=false: download source packages in addition to binary packages + diff --git a/src/github.com/smira/aptly/system/t03_help/MirrorCreateTest_gold b/src/github.com/smira/aptly/system/t03_help/MirrorCreateTest_gold new file mode 100644 index 00000000..67815d57 --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/MirrorCreateTest_gold @@ -0,0 +1,15 @@ +Usage: aptly mirror create [ ...] + +aptly mirror create - create new mirror + + +Options: + -architectures="": list of architectures to consider during (comma-separated), default to all available + -config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf) + -dep-follow-all-variants=false: when processing dependencies, follow a & b if depdency is 'a|b' + -dep-follow-recommends=false: when processing dependencies, follow Recommends + -dep-follow-source=false: when processing dependencies, follow from binary to Source packages + -dep-follow-suggests=false: when processing dependencies, follow Suggests + -ignore-signatures=false: disable verification of Release file signatures + -keyring=: gpg keyring to use when verifying Release file (could be specified multiple times) + -with-sources=false: download source packages in addition to binary packages diff --git a/src/github.com/smira/aptly/system/t03_help/MirrorHelpTest_gold b/src/github.com/smira/aptly/system/t03_help/MirrorHelpTest_gold new file mode 100644 index 00000000..fa07508c --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/MirrorHelpTest_gold @@ -0,0 +1,20 @@ +aptly mirror - manage mirrors of remote repositories + +Commands: + + create create new mirror + drop delete mirror + list list mirrors + show show details about mirror + update update mirror + +Use "mirror help " for more information about a command. + + +Options: + -architectures="": list of architectures to consider during (comma-separated), default to all available + -config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf) + -dep-follow-all-variants=false: when processing dependencies, follow a & b if depdency is 'a|b' + -dep-follow-recommends=false: when processing dependencies, follow Recommends + -dep-follow-source=false: when processing dependencies, follow from binary to Source packages + -dep-follow-suggests=false: when processing dependencies, follow Suggests diff --git a/src/github.com/smira/aptly/system/t03_help/MirrorTest_gold b/src/github.com/smira/aptly/system/t03_help/MirrorTest_gold new file mode 100644 index 00000000..fa07508c --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/MirrorTest_gold @@ -0,0 +1,20 @@ +aptly mirror - manage mirrors of remote repositories + +Commands: + + create create new mirror + drop delete mirror + list list mirrors + show show details about mirror + update update mirror + +Use "mirror help " for more information about a command. + + +Options: + -architectures="": list of architectures to consider during (comma-separated), default to all available + -config="": location of configuration file (default locations are /etc/aptly.conf, ~/.aptly.conf) + -dep-follow-all-variants=false: when processing dependencies, follow a & b if depdency is 'a|b' + -dep-follow-recommends=false: when processing dependencies, follow Recommends + -dep-follow-source=false: when processing dependencies, follow from binary to Source packages + -dep-follow-suggests=false: when processing dependencies, follow Suggests diff --git a/src/github.com/smira/aptly/system/t03_help/__init__.py b/src/github.com/smira/aptly/system/t03_help/__init__.py new file mode 100644 index 00000000..37b80f4e --- /dev/null +++ b/src/github.com/smira/aptly/system/t03_help/__init__.py @@ -0,0 +1,52 @@ +""" +Test help screens +""" + +import re +from lib import BaseTest + + +class MainTest(BaseTest): + """ + main + """ + runCmd = "aptly" + + outputMatchPrepare = lambda _, s: re.sub(r' -(cpuprofile|memprofile|memstats|meminterval)=.*\n', '', s, flags=re.MULTILINE) + + +class MirrorTest(BaseTest): + """ + main + """ + runCmd = "aptly mirror" + + +class MirrorCreateTest(BaseTest): + """ + main + """ + runCmd = "aptly mirror create" + + +class MainHelpTest(BaseTest): + """ + main + """ + runCmd = "aptly help" + + outputMatchPrepare = lambda _, s: re.sub(r' -(cpuprofile|memprofile|memstats|meminterval)=.*\n', '', s, flags=re.MULTILINE) + + +class MirrorHelpTest(BaseTest): + """ + main + """ + runCmd = "aptly help mirror" + + +class MirrorCreateHelpTest(BaseTest): + """ + main + """ + runCmd = "aptly help mirror create" diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror10Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror10Test_gold new file mode 100644 index 00000000..c124a0ac --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror10Test_gold @@ -0,0 +1,10 @@ +Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/InRelease... +gpgv: keyblock resource `${HOME}/.gnupg/aptlytest.gpg': file open error +gpgv: RSA key ID 46925553 +gpgv: Can't check signature: public key not found +Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/Release... +Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/Release.gpg... +gpgv: keyblock resource `${HOME}/.gnupg/aptlytest.gpg': file open error +gpgv: RSA key ID 46925553 +gpgv: Can't check signature: public key not found +ERROR: unable to fetch mirror: verification of detached signature failed: exit status 2 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror11Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror11Test_gold new file mode 100644 index 00000000..8b96d2b3 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror11Test_gold @@ -0,0 +1,10 @@ +Downloading http://mirror.yandex.ru/debian/dists/squeeze/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/squeeze/Release... +Downloading http://mirror.yandex.ru/debian/dists/squeeze/Release.gpg... +gpgv: RSA key ID 473041FA +gpgv: Good signature from "Debian Archive Automatic Signing Key (6.0/squeeze) " +gpgv: RSA key ID B98321F9 +gpgv: Good signature from "Squeeze Stable Release Key " + +Mirror [mirror11]: http://mirror.yandex.ru/debian/ squeeze successfully added. +You can run 'aptly mirror update mirror11' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror11Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror11Test_mirror_show new file mode 100644 index 00000000..e8bc18fe --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror11Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror11 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: squeeze +Components: main, contrib, non-free +Architectures: amd64, armel, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc +Codename: squeeze +Components: main contrib non-free +Date: Sat, 15 Feb 2014 10:01:30 UTC +Description: Debian 6.0.9 Released 15 February 2014 + +Label: Debian +Origin: Debian +Suite: oldstable +Version: 6.0.9 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror12Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror12Test_gold new file mode 100644 index 00000000..907fc8b6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror12Test_gold @@ -0,0 +1,9 @@ +Downloading http://mirror.yandex.ru/debian/dists/squeeze/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/squeeze/Release... +Downloading http://mirror.yandex.ru/debian/dists/squeeze/Release.gpg... +gpgv: keyblock resource `${HOME}/.gnupg/aptlytest.gpg': file open error +gpgv: RSA key ID 473041FA +gpgv: Can't check signature: public key not found +gpgv: RSA key ID B98321F9 +gpgv: Can't check signature: public key not found +ERROR: unable to fetch mirror: verification of detached signature failed: exit status 2 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror13Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror13Test_gold new file mode 100644 index 00000000..89457d8b --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror13Test_gold @@ -0,0 +1,4 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... + +Mirror [mirror13]: http://mirror.yandex.ru/debian/ wheezy successfully added. +You can run 'aptly mirror update mirror13' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror13Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror13Test_mirror_show new file mode 100644 index 00000000..57e30a7e --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror13Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror13 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main, contrib, non-free +Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror14Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror14Test_gold new file mode 100644 index 00000000..9022d63a --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror14Test_gold @@ -0,0 +1,8 @@ +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/InRelease... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Release... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Release.gpg... +gpgv: Signature made Tue May 21 23:01:30 2013 MSK using DSA key ID 1048C1FF +gpgv: Good signature from "home:DeepDiver1975 OBS Project " + +Mirror [mirror14]: http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./ successfully added. +You can run 'aptly mirror update mirror14' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror14Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror14Test_mirror_show new file mode 100644 index 00000000..324b6cf2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror14Test_mirror_show @@ -0,0 +1,15 @@ +Name: mirror14 +Archive Root URL: http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ +Distribution: +Components: +Architectures: +Download Sources: no +Last update: never + +Information from release file: +Date: Tue May 21 21:01:30 2013 +Description: Open Build Service home:DeepDiver1975 xUbuntu_10.04 + +Label: DeepDiver1975's Home Project (xUbuntu_10.04) +Origin: Open Build Service home:DeepDiver1975 xUbuntu_10.04 +Version: 0.00 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror15Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror15Test_gold new file mode 100644 index 00000000..d3c67bf5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror15Test_gold @@ -0,0 +1 @@ +ERROR: unable to create mirror: components aren't supported for flat repos diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror16Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror16Test_gold new file mode 100644 index 00000000..5c2d6d64 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror16Test_gold @@ -0,0 +1,2 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +ERROR: unable to fetch mirror: architecture source not available in repo [mirror16]: http://mirror.yandex.ru/debian/ wheezy diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror17Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror17Test_gold new file mode 100644 index 00000000..2aae26c6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror17Test_gold @@ -0,0 +1,4 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... + +Mirror [mirror17]: http://mirror.yandex.ru/debian/ wheezy [src] successfully added. +You can run 'aptly mirror update mirror17' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror17Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror17Test_mirror_show new file mode 100644 index 00000000..d21aa474 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror17Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror17 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main, contrib, non-free +Architectures: i386 +Download Sources: yes +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror18Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror18Test_gold new file mode 100644 index 00000000..ed8365b7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror18Test_gold @@ -0,0 +1,8 @@ +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg... +gpgv: RSA key ID 3B1F56C0 +gpgv: Good signature from "Launchpad sim" + +Mirror [mirror18]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick successfully added. +You can run 'aptly mirror update mirror18' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror18Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror18Test_mirror_show new file mode 100644 index 00000000..abd2a7d1 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror18Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror18 +Archive Root URL: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ +Distribution: maverick +Components: main +Architectures: amd64, armel, i386, powerpc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel i386 powerpc +Codename: maverick +Components: main +Date: Mon, 22 Oct 2012 13:19:50 UTC +Description: Ubuntu Maverick 10.10 + +Label: gnuplot +Origin: LP-PPA-gladky-anton-gnuplot +Suite: maverick +Version: 10.10 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror19Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror19Test_gold new file mode 100644 index 00000000..f250a513 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror19Test_gold @@ -0,0 +1,6 @@ +Downloading http://security.debian.org/dists/wheezy/updates/InRelease... +gpgv: RSA key ID 46925553 +gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " + +Mirror [mirror19]: http://security.debian.org/ wheezy/updates [src] successfully added. +You can run 'aptly mirror update mirror19' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror19Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror19Test_mirror_show new file mode 100644 index 00000000..52bf55df --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror19Test_mirror_show @@ -0,0 +1,20 @@ +Name: mirror19 +Archive Root URL: http://security.debian.org/ +Distribution: wheezy/updates +Components: main +Architectures: i386 +Download Sources: yes +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: updates/main updates/contrib updates/non-free +Date: Tue, 11 Mar 2014 21:11:28 UTC +Description: Debian 7.0 Security Updates + +Label: Debian-Security +Origin: Debian +Suite: stable +Valid-Until: Fri, 21 Mar 2014 21:11:28 UTC +Version: 7.0 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror1Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror1Test_gold new file mode 100644 index 00000000..45014b8a --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror1Test_gold @@ -0,0 +1,4 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... + +Mirror [mirror1]: http://mirror.yandex.ru/debian/ wheezy successfully added. +You can run 'aptly mirror update mirror1' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror1Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror1Test_mirror_show new file mode 100644 index 00000000..ff495d44 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror1Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror1 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main, contrib, non-free +Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror2Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror2Test_gold new file mode 100644 index 00000000..06fc35c5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror2Test_gold @@ -0,0 +1,4 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... + +Mirror [mirror2]: http://mirror.yandex.ru/debian/ wheezy successfully added. +You can run 'aptly mirror update mirror2' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror2Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror2Test_mirror_show new file mode 100644 index 00000000..4ff7265e --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror2Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror2 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main +Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror3Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror3Test_gold new file mode 100644 index 00000000..0a189bb6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror3Test_gold @@ -0,0 +1,4 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... + +Mirror [mirror3]: http://mirror.yandex.ru/debian/ wheezy successfully added. +You can run 'aptly mirror update mirror3' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror3Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror3Test_mirror_show new file mode 100644 index 00000000..f6d15816 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror3Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror3 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main, contrib +Architectures: i386, amd64 +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror4Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror4Test_gold new file mode 100644 index 00000000..815accb2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror4Test_gold @@ -0,0 +1,2 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +ERROR: unable to fetch mirror: component life not available in repo [mirror4]: http://mirror.yandex.ru/debian/ wheezy diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror5Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror5Test_gold new file mode 100644 index 00000000..dfac1c2d --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror5Test_gold @@ -0,0 +1,2 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +ERROR: unable to fetch mirror: architecture nano68 not available in repo [mirror5]: http://mirror.yandex.ru/debian/ wheezy diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror6Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror6Test_gold new file mode 100644 index 00000000..166dcc13 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror6Test_gold @@ -0,0 +1,3 @@ +Downloading http://mirror.yandex.ru/debian/dists/suslik/InRelease... +Downloading http://mirror.yandex.ru/debian/dists/suslik/Release... +ERROR: unable to fetch mirror: HTTP code 404 while fetching http://mirror.yandex.ru/debian/dists/suslik/Release diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror7Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror7Test_gold new file mode 100644 index 00000000..192d8274 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror7Test_gold @@ -0,0 +1,4 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... + +Mirror [mirror7]: http://mirror.yandex.ru/debian/ wheezy successfully added. +You can run 'aptly mirror update mirror7' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror7Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror7Test_mirror_show new file mode 100644 index 00000000..9ec39e29 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror7Test_mirror_show @@ -0,0 +1,19 @@ +Name: mirror7 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main, contrib +Architectures: i386, amd64 +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror8Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror8Test_gold new file mode 100644 index 00000000..e76510ce --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror8Test_gold @@ -0,0 +1,2 @@ +Downloading http://mirror.yandex.ru/debian/dists/wheezy/Release... +ERROR: unable to add mirror: mirror with name mirror8 already exists diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror9Test_gold b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror9Test_gold new file mode 100644 index 00000000..51688044 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror9Test_gold @@ -0,0 +1,6 @@ +Downloading http://mirror.yandex.ru/debian-backports/dists/squeeze-backports/InRelease... +gpgv: Signature made Fri Feb 7 06:56:50 2014 MSK using RSA key ID 46925553 +gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) " + +Mirror [mirror9]: http://mirror.yandex.ru/debian-backports/ squeeze-backports successfully added. +You can run 'aptly mirror update mirror9' to download repository contents. diff --git a/src/github.com/smira/aptly/system/t04_mirror/CreateMirror9Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror9Test_mirror_show new file mode 100644 index 00000000..e6d63aa5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/CreateMirror9Test_mirror_show @@ -0,0 +1,21 @@ +Name: mirror9 +Archive Root URL: http://mirror.yandex.ru/debian-backports/ +Distribution: squeeze-backports +Components: main, contrib, non-free +Architectures: amd64, armel, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc +ButAutomaticUpgrades: yes +Codename: squeeze-backports +Components: main contrib non-free +Date: Fri, 07 Feb 2014 02:56:49 UTC +Description: Backports for the Squeeze Distribution + +Label: Debian Backports +NotAutomatic: yes +Origin: Debian Backports +Suite: squeeze-backports +Valid-Until: Fri, 14 Feb 2014 02:56:49 UTC diff --git a/src/github.com/smira/aptly/system/t04_mirror/DropMirror1Test_gold b/src/github.com/smira/aptly/system/t04_mirror/DropMirror1Test_gold new file mode 100644 index 00000000..4faf1410 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/DropMirror1Test_gold @@ -0,0 +1 @@ +Mirror `mirror1` has been removed. diff --git a/src/github.com/smira/aptly/system/t04_mirror/DropMirror1Test_mirror_show b/src/github.com/smira/aptly/system/t04_mirror/DropMirror1Test_mirror_show new file mode 100644 index 00000000..5e0b449b --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/DropMirror1Test_mirror_show @@ -0,0 +1 @@ +ERROR: unable to show: mirror with name mirror1 not found diff --git a/src/github.com/smira/aptly/system/t04_mirror/DropMirror2Test_gold b/src/github.com/smira/aptly/system/t04_mirror/DropMirror2Test_gold new file mode 100644 index 00000000..cee80be2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/DropMirror2Test_gold @@ -0,0 +1,3 @@ +Mirror `wheezy-main` was used to create following snapshots: + * [wheez]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +ERROR: won't delete mirror with snapshots, use -force to override diff --git a/src/github.com/smira/aptly/system/t04_mirror/DropMirror3Test_gold b/src/github.com/smira/aptly/system/t04_mirror/DropMirror3Test_gold new file mode 100644 index 00000000..15ad42d4 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/DropMirror3Test_gold @@ -0,0 +1 @@ +Mirror `wheezy-main` has been removed. diff --git a/src/github.com/smira/aptly/system/t04_mirror/DropMirror4Test_gold b/src/github.com/smira/aptly/system/t04_mirror/DropMirror4Test_gold new file mode 100644 index 00000000..f93d4ebd --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/DropMirror4Test_gold @@ -0,0 +1 @@ +ERROR: unable to drop: mirror with name mirror1 not found diff --git a/src/github.com/smira/aptly/system/t04_mirror/ListMirror1Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ListMirror1Test_gold new file mode 100644 index 00000000..87670d94 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/ListMirror1Test_gold @@ -0,0 +1,7 @@ +List of mirrors: + * [mirror1]: http://mirror.yandex.ru/debian/ wheezy + * [mirror2]: http://mirror.yandex.ru/debian/ squeeze [src] + * [mirror3]: http://mirror.yandex.ru/debian/ squeeze + * [mirror4]: http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./ + +To get more information about mirror, run `aptly mirror show `. diff --git a/src/github.com/smira/aptly/system/t04_mirror/ListMirror2Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ListMirror2Test_gold new file mode 100644 index 00000000..dcd0df02 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/ListMirror2Test_gold @@ -0,0 +1 @@ +No mirrors found, create one with `aptly mirror create ...`. diff --git a/src/github.com/smira/aptly/system/t04_mirror/ListMirror3Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ListMirror3Test_gold new file mode 100644 index 00000000..3aee199b --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/ListMirror3Test_gold @@ -0,0 +1,12 @@ +gnuplot-maverick +gnuplot-maverick-src +wheezy-backports +wheezy-backports-src +wheezy-contrib +wheezy-contrib-src +wheezy-main +wheezy-main-src +wheezy-non-free +wheezy-non-free-src +wheezy-updates +wheezy-updates-src diff --git a/src/github.com/smira/aptly/system/t04_mirror/ListMirror4Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ListMirror4Test_gold new file mode 100644 index 00000000..e69de29b diff --git a/src/github.com/smira/aptly/system/t04_mirror/ShowMirror1Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ShowMirror1Test_gold new file mode 100644 index 00000000..ff495d44 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/ShowMirror1Test_gold @@ -0,0 +1,19 @@ +Name: mirror1 +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: main, contrib, non-free +Architectures: amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc +Download Sources: no +Last update: never + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 diff --git a/src/github.com/smira/aptly/system/t04_mirror/ShowMirror2Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ShowMirror2Test_gold new file mode 100644 index 00000000..5b1f2811 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/ShowMirror2Test_gold @@ -0,0 +1 @@ +ERROR: unable to show: mirror with name mirror-xx not found diff --git a/src/github.com/smira/aptly/system/t04_mirror/ShowMirror3Test_gold b/src/github.com/smira/aptly/system/t04_mirror/ShowMirror3Test_gold new file mode 100644 index 00000000..bb6b2b64 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/ShowMirror3Test_gold @@ -0,0 +1,346 @@ +Name: wheezy-contrib +Archive Root URL: http://mirror.yandex.ru/debian/ +Distribution: wheezy +Components: contrib +Architectures: i386, amd64 +Download Sources: no +Last update: 2014-02-25 00:21:33 MSK +Number of packages: 325 + +Information from release file: +Architectures: amd64 armel armhf i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 s390x sparc +Codename: wheezy +Components: main contrib non-free +Date: Sat, 08 Feb 2014 10:36:03 UTC +Description: Debian 7.4 Released 08 February 2014 + +Label: Debian +Origin: Debian +Suite: stable +Version: 7.4 +Packages: + bgoffice-dict-downloader_0.09_all + biomaj-watcher_1.2.1-1_all + cicero_0.7.2-2_all + cl-sql-oracle_6.2.0-1_all + cl-umlisp_1:2007ac.2-6_all + cl-umlisp-orf_3.3.2-3_all + cltl_1.0.26_all + crafty-bitmaps_1.0-1_all + crafty-books-medium_1.0.debian1-2_all + crafty-books-medtosmall_1.0.debian1-2_all + crafty-books-small_1.0.debian1-2_all + cytadela-data_1.0.1-2_all + dynagen_0.11.0-6_all + dynare-matlab_4.3.0-2_all + esix_1-2_all + festvox-don_1.4.0-4_all + festvox-en1_1.95-1_all + festvox-rablpc16k_1.4.0-2_all + festvox-rablpc8k_1.4.0-2_all + festvox-us1_1.95-1_all + festvox-us2_1.95-1_all + festvox-us3_1.95-1_all + firmware-b43-installer_1:015-14.1_all + firmware-b43-lpphy-installer_1:015-14.1_all + firmware-b43legacy-installer_1:015-14.1_all + game-data-packager_30_all + geoip-database-contrib_1.8_all + gns3_0.7.4-1_all + gnuvd-gnome_1.0.11-1_all + googleearth-package_0.7.0_all + horae_071~svn536-1_all + hts-voice-nitech-jp-atr503-m001_1.04-1_all + hyperspec_1.30+nmu2_all + ifeffit-doc_2:1.2.11d-8_all + imgtex_0.20050123-8_all + java-package_0.50+nmu2_all + kcemu-common_0.5.1+dfsg-5_all + libgooglecharts-ruby_1.6.8-2_all + libgooglecharts-ruby1.8_1.6.8-2_all + libjlapack-java_0.8~dfsg-1_all + libmtj-java_0.9.14~dfsg-2_all + libmtj-java-doc_0.9.14~dfsg-2_all + libnetlib-java_0.9.3-1_all + libviennacl-dev_1.2.0-2_all + libviennacl-doc_1.2.0-2_all + linux-wlan-ng-firmware_0.2.9+dfsg-5_all + mathematica-fonts_16_all + matlab-gdf_0.1.2-2_all + matlab-support_0.0.18_all + mess-desktop-entries_0.2-2_all + netdisco-mibs-installer_1.7.1_all + opendict-plugins-lingvosoft_0.8-2_all + ora2pg_8.11-1_all + phoronix-test-suite_3.8.0-1_all + playonlinux_4.1.1-1_all + premail_0.46-9_all + python-ldap-doc_2.3-2.2_all + python-pycuda-doc_2012.1-1_all + python-pycuda-headers_2012.1-1_all + python-pyopencl-doc_2012.1.dfsg-1_all + python-pyopencl-headers_2012.1.dfsg-1_all + qmhandle_1.3.2-1_all + quake_2_all + quake-server_2_all + quake3_1.4_all + quake3-server_1.4_all + raccoon_1.0-1_all + ruby-googlecharts_1.6.8-2_all + sabnzbdplus_0.6.15-1_all + sabnzbdplus-theme-classic_0.6.15-1_all + sabnzbdplus-theme-iphone_0.6.15-1_all + sabnzbdplus-theme-mobile_0.6.15-1_all + sabnzbdplus-theme-plush_0.6.15-1_all + sabnzbdplus-theme-smpl_0.6.15-1_all + sapgui-package_0.0.10_all + sauerbraten-wake6_1.0-1.1_all + sdic_2.1.3-22_all + sdic-edict_2.1.3-22_all + sdic-eijiro_2.1.3-22_all + sdic-gene95_2.1.3-22_all + series60-remote_0.4.0+dfsg.1-1_all + sixpack_1:0.68-1_all + sqldeveloper-package_0.2.4_all + sugar-etoys-activity_116-3_all + susv2_1.1_all + susv3_6.1_all + tightvnc-java_1.2.7-8_all + ttf-mathematica4.1_16_all + ttf-mscorefonts-installer_3.4+nmu1_all + ttf-root-installer_5.34.00-2_all + uqm-russian_1.0.2-5_all + vmware-manager_0.2.0-3_all + vnc-java_3.3.3r2-8_all + vusb-analyzer_1.1-3_all + winetricks_0.0+20121030+svn918-1_all + wnn7egg_1.02-8_all + x-pgp-sig-el_1.3.5.1-4.1_all + alien-arena_7.53+dfsg-3_amd64 + alien-arena-server_7.53+dfsg-3_amd64 + alsa-firmware-loaders_1.0.25-2_amd64 + amoeba_1.1-26_amd64 + assaultcube_1.1.0.4+dfsg2-1_amd64 + atari800_2.2.1-2_amd64 + b43-fwcutter_1:015-14.1_amd64 + basilisk2_0.9.20120331-2_amd64 + boinc-nvidia-cuda_7.0.27+dfsg-5_amd64 + cbedic_4.0-3_amd64 + chocolate-doom_1.7.0-3+b1_amd64 + conky-all_1.9.0-2_amd64 + cpp-doc_5:4_amd64 + cytadela_1.0.1-2_amd64 + cytadela-dbg_1.0.1-2_amd64 + dosemu_1.4.0+svn.2080-1_amd64 + e-uae_0.8.29-WIP4-10_amd64 + e-uae-dbg_0.8.29-WIP4-10_amd64 + easyspice_0.6.8-2_amd64 + exult_1.2-15.2_amd64 + exult-studio_1.2-15.2_amd64 + flashplugin-nonfree_1:3.2_amd64 + frogatto_1.2+dfsg-1+b1_amd64 + gcc-doc_5:4_amd64 + gcj-doc_5:4_amd64 + gfortran-doc_5:4_amd64 + glx-alternative-fglrx_0.2.2_amd64 + glx-alternative-mesa_0.2.2_amd64 + glx-alternative-nvidia_0.2.2_amd64 + glx-diversions_0.2.2_amd64 + gnat-doc_5:4_amd64 + gnome-speech-swift_1:0.4.25-5_amd64 + gnome-video-arcade_0.8.3-1_amd64 + gnuboy-sdl_1.0.3-6.1_amd64 + gnuboy-svga_1.0.3-6.1_amd64 + gnuboy-x_1.0.3-6.1_amd64 + gnuvd_1.0.11-1_amd64 + gobi-loader_0.6-1_amd64 + gtktrain_0.9b-13_amd64 + hannah-foo2zjs_1:1_amd64 + ifeffit_2:1.2.11d-8_amd64 + isdnactivecards_1:3.9.20060704-11_amd64 + isight-firmware-tools_1.6-1_amd64 + iucode-tool_0.8.3-1_amd64 + ivtv-utils_1.4.1-2_amd64 + kcemu_0.5.1+dfsg-5_amd64 + libcplgasgano20_6.1.1-2_amd64 + libdbd-oracle-perl_1.44-1_amd64 + libifeffit-perl_2:1.2.11d-8_amd64 + libpgplot-perl_1:2.21-3_amd64 + libsocl-contrib-1.0_1.0.1+dfsg-1_amd64 + libstarpu-contrib-1.0_1.0.1+dfsg-1_amd64 + libstarpu-contrib-dev_1.0.1+dfsg-1_amd64 + libstarpu-contribfft-1.0_1.0.1+dfsg-1_amd64 + libstarpu-contribmpi-1.0_1.0.1+dfsg-1_amd64 + libsuitesparse-metis-3.1.0_3.1.0-2_amd64 + libsuitesparse-metis-dbg_3.1.0-2_amd64 + libsuitesparse-metis-dev_3.1.0-2_amd64 + libtrain-bin_0.9b-11_amd64 + libtrain-dev_0.9b-11_amd64 + libtrain1_0.9b-11_amd64 + libxnvctrl-dev_304.88-1_amd64 + libxnvctrl0_304.88-1_amd64 + libydpdict2_1.0.2-1_amd64 + libydpdict2-dev_1.0.2-1_amd64 + lugaru_0~20110520.1+hge4354+dfsg-3_amd64 + microcode.ctl_1.18~0+nmu2_amd64 + nvidia-installer-cleanup_20120630+3_amd64 + nvidia-kernel-common_20120630+3_amd64 + nvidia-settings_304.88-1_amd64 + nvidia-settings-legacy-173xx_173.14.35-2_amd64 + nvidia-support_20120630+3_amd64 + nvidia-xconfig_304.48-1_amd64 + pidgin-skype_20110407+svn628+dfsg-1_amd64 + pidgin-skype-dbg_20110407+svn628+dfsg-1_amd64 + prism2-usb-firmware-installer_0.2.9+dfsg-5_amd64 + pvpgn_1.8.1-2.1+b1_amd64 + python-ifeffit_2:1.2.11d-8_amd64 + python-pycuda_2012.1-1_amd64 + python-pyopencl_2012.1.dfsg-1_amd64 + python3-pyopencl_2012.1.dfsg-1_amd64 + r-cran-surveillance_1.2-1-3_amd64 + redeclipse_1.2-3_amd64 + redeclipse-dbg_1.2-3_amd64 + redeclipse-server_1.2-3_amd64 + redeclipse-server-dbg_1.2-3_amd64 + reminiscence_0.2.1-1_amd64 + rocksndiamonds_3.3.0.1+dfsg1-2.2_amd64 + rott_1.1.2-1_amd64 + ruby-pgplot_0.1.3-6_amd64 + ruby-pgplot-dbg_0.1.3-6_amd64 + sandboxgamemaker_2.7.1+dfsg-2_amd64 + sauerbraten_0.0.20100728.dfsg+repack-3_amd64 + sauerbraten-dbg_0.0.20100728.dfsg+repack-3_amd64 + sauerbraten-server_0.0.20100728.dfsg+repack-3_amd64 + spectemu-common_0.94a-15_amd64 + spectemu-svga_0.94a-15_amd64 + spectemu-x11_0.94a-15_amd64 + starpu-contrib-examples_1.0.1+dfsg-1_amd64 + starpu-contrib-tools_1.0.1+dfsg-1_amd64 + uae_0.8.29-7_amd64 + uae-dbg_0.8.29-7_amd64 + uqm_0.6.2.dfsg-9_amd64 + vice_2.3.dfsg-4_amd64 + vmware-view-open-client_4.5.0-297975+dfsg-4+b1_amd64 + vor_0.5.5-2_amd64 + wdq2wav_0.8.3-2_amd64 + wolf4sdl_1.7+svn262+dfsg1-1_amd64 + xserver-xorg-video-ivtv_1.1.2-1+b3_amd64 + xserver-xorg-video-ivtv-dbg_1.1.2-1+b3_amd64 + xtrs_4.9c-3.4_amd64 + xvba-va-driver_0.8.0-5_amd64 + ydpdict_1.0.0-2_amd64 + alien-arena_7.53+dfsg-3_i386 + alien-arena-server_7.53+dfsg-3_i386 + alsa-firmware-loaders_1.0.25-2_i386 + amoeba_1.1-26_i386 + assaultcube_1.1.0.4+dfsg2-1_i386 + atari800_2.2.1-2_i386 + b43-fwcutter_1:015-14.1_i386 + basilisk2_0.9.20120331-2_i386 + boinc-nvidia-cuda_7.0.27+dfsg-5_i386 + cbedic_4.0-3_i386 + chocolate-doom_1.7.0-3_i386 + conky-all_1.9.0-2_i386 + cpp-doc_5:4_i386 + cytadela_1.0.1-2_i386 + cytadela-dbg_1.0.1-2_i386 + dosemu_1.4.0+svn.2080-1_i386 + e-uae_0.8.29-WIP4-10_i386 + e-uae-dbg_0.8.29-WIP4-10_i386 + easyspice_0.6.8-2_i386 + exult_1.2-15.2_i386 + exult-studio_1.2-15.2_i386 + flashplugin-nonfree_1:3.2_i386 + flashplugin-nonfree-extrasound_0.0.svn2431-3_i386 + frogatto_1.2+dfsg-1_i386 + gcc-doc_5:4_i386 + gcj-doc_5:4_i386 + gfortran-doc_5:4_i386 + glx-alternative-fglrx_0.2.2_i386 + glx-alternative-mesa_0.2.2_i386 + glx-alternative-nvidia_0.2.2_i386 + glx-diversions_0.2.2_i386 + gnat-doc_5:4_i386 + gnome-speech-dectalk_1:0.4.25-5_i386 + gnome-speech-ibmtts_1:0.4.25-5_i386 + gnome-speech-swift_1:0.4.25-5_i386 + gnome-video-arcade_0.8.3-1_i386 + gnuboy-sdl_1.0.3-6.1_i386 + gnuboy-svga_1.0.3-6.1_i386 + gnuboy-x_1.0.3-6.1_i386 + gnuvd_1.0.11-1_i386 + gobi-loader_0.6-1_i386 + gtktrain_0.9b-13_i386 + hannah-foo2zjs_1:1_i386 + ifeffit_2:1.2.11d-8_i386 + isdnactivecards_1:3.9.20060704-11_i386 + isight-firmware-tools_1.6-1_i386 + iucode-tool_0.8.3-1_i386 + ivtv-utils_1.4.1-2_i386 + kcemu_0.5.1+dfsg-5_i386 + libcplgasgano20_6.1.1-2_i386 + libdbd-oracle-perl_1.44-1_i386 + libifeffit-perl_2:1.2.11d-8_i386 + libpgplot-perl_1:2.21-3_i386 + libsocl-contrib-1.0_1.0.1+dfsg-1_i386 + libstarpu-contrib-1.0_1.0.1+dfsg-1_i386 + libstarpu-contrib-dev_1.0.1+dfsg-1_i386 + libstarpu-contribfft-1.0_1.0.1+dfsg-1_i386 + libstarpu-contribmpi-1.0_1.0.1+dfsg-1_i386 + libsuitesparse-metis-3.1.0_3.1.0-2_i386 + libsuitesparse-metis-dbg_3.1.0-2_i386 + libsuitesparse-metis-dev_3.1.0-2_i386 + libtrain-bin_0.9b-11_i386 + libtrain-dev_0.9b-11_i386 + libtrain1_0.9b-11_i386 + libxnvctrl-dev_304.88-1_i386 + libxnvctrl0_304.88-1_i386 + libydpdict2_1.0.2-1_i386 + libydpdict2-dev_1.0.2-1_i386 + lugaru_0~20110520.1+hge4354+dfsg-3_i386 + microcode.ctl_1.18~0+nmu2_i386 + nvidia-installer-cleanup_20120630+3_i386 + nvidia-kernel-common_20120630+3_i386 + nvidia-settings_304.88-1_i386 + nvidia-settings-legacy-173xx_173.14.35-2_i386 + nvidia-support_20120630+3_i386 + nvidia-xconfig_304.48-1_i386 + pidgin-skype_20110407+svn628+dfsg-1_i386 + pidgin-skype-dbg_20110407+svn628+dfsg-1_i386 + prism2-usb-firmware-installer_0.2.9+dfsg-5_i386 + pvpgn_1.8.1-2.1+b1_i386 + python-ifeffit_2:1.2.11d-8_i386 + python-pycuda_2012.1-1_i386 + python-pyopencl_2012.1.dfsg-1_i386 + python3-pyopencl_2012.1.dfsg-1_i386 + q-tools_0.4-1_i386 + r-cran-surveillance_1.2-1-3_i386 + redeclipse_1.2-3_i386 + redeclipse-dbg_1.2-3_i386 + redeclipse-server_1.2-3_i386 + redeclipse-server-dbg_1.2-3_i386 + reminiscence_0.2.1-1_i386 + rocksndiamonds_3.3.0.1+dfsg1-2.2_i386 + rott_1.1.2-1_i386 + sandboxgamemaker_2.7.1+dfsg-2_i386 + sauerbraten_0.0.20100728.dfsg+repack-3_i386 + sauerbraten-dbg_0.0.20100728.dfsg+repack-3_i386 + sauerbraten-server_0.0.20100728.dfsg+repack-3_i386 + spectemu-common_0.94a-15_i386 + spectemu-svga_0.94a-15_i386 + spectemu-x11_0.94a-15_i386 + starpu-contrib-examples_1.0.1+dfsg-1_i386 + starpu-contrib-tools_1.0.1+dfsg-1_i386 + uae_0.8.29-7_i386 + uae-dbg_0.8.29-7_i386 + uqm_0.6.2.dfsg-9_i386 + vice_2.3.dfsg-4_i386 + vmware-view-open-client_4.5.0-297975+dfsg-4+b1_i386 + vor_0.5.5-2_i386 + wdq2wav_0.8.3-2_i386 + wolf4sdl_1.7+svn262+dfsg1-1_i386 + xserver-xorg-video-ivtv_1.1.2-1+b3_i386 + xserver-xorg-video-ivtv-dbg_1.1.2-1+b3_i386 + xtrs_4.9c-3.4_i386 + xvba-va-driver_0.8.0-5_i386 + ydpdict_1.0.0-2_i386 diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror1Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror1Test_gold new file mode 100644 index 00000000..fb1bcf4b --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror1Test_gold @@ -0,0 +1,37 @@ + + +Building download queue... +Download queue: 28 items (11.04 MiB) +Downloading & parsing package files... +Downloading http://repo.varnish-cache.org/debian/dists/wheezy/Release... +Downloading http://repo.varnish-cache.org/debian/dists/wheezy/varnish-3.0/binary-amd64/Packages.bz2... +Downloading http://repo.varnish-cache.org/debian/dists/wheezy/varnish-3.0/binary-i386/Packages.bz2... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish-agent/varnish-agent_2.2.0~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish-agent/varnish-agent_2.2.0~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi-dev_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi-dev_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi-dev_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi-dev_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi-dev_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi-dev_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi1_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi1_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi1_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi1_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi1_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/libvarnishapi1_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-dbg_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-dbg_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-dbg_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-dbg_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-dbg_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-dbg_3.0.5-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-doc_3.0.4-1~wheezy_all.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish-doc_3.0.5-1~wheezy_all.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish_3.0.3-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish_3.0.3-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish_3.0.4-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish_3.0.4-1~wheezy_i386.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish_3.0.5-1~wheezy_amd64.deb... +Downloading http://repo.varnish-cache.org/debian/pool/varnish-3.0/v/varnish/varnish_3.0.5-1~wheezy_i386.deb... +Mirror `varnish` has been successfully updated. \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror2Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror2Test_gold new file mode 100644 index 00000000..923efa82 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror2Test_gold @@ -0,0 +1 @@ +ERROR: unable to update: mirror with name mirror-xyz not found diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror3Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror3Test_gold new file mode 100644 index 00000000..87b1b576 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror3Test_gold @@ -0,0 +1,6 @@ +Downloading ${url}dists/hardy/Release... +Downloading & parsing package files... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz... +Downloading ${url}dists/hardy/main/binary-amd64/Packages... +ERROR: unable to update: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d" diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror4Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror4Test_gold new file mode 100644 index 00000000..87d17f2a --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror4Test_gold @@ -0,0 +1,7 @@ +Downloading ${url}dists/hardy/Release... +Downloading & parsing package files... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz... +Downloading ${url}dists/hardy/main/binary-amd64/Packages... +WARNING: ${url}dists/hardy/main/binary-amd64/Packages: sha256 hash mismatch "494414ded24da13c451b13b424928821351c78fce49f93d9e1b55f102790c206" != "8a21688ae769f2b4ffcaa366409f679d" +ERROR: unable to update: malformed stanza syntax diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror5Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror5Test_gold new file mode 100644 index 00000000..cfa2c961 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror5Test_gold @@ -0,0 +1,11 @@ +Downloading ${url}dists/hardy/Release... +Downloading & parsing package files... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz... +Downloading ${url}dists/hardy/main/binary-amd64/Packages... +Building download queue... +Download queue: 1 items (30 B) +Downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb... +ERROR: unable to update: download errors: + ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3" + diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror6Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror6Test_gold new file mode 100644 index 00000000..187a151e --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror6Test_gold @@ -0,0 +1,11 @@ +Downloading ${url}dists/hardy/Release... +Downloading & parsing package files... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.bz2... +Downloading ${url}dists/hardy/main/binary-amd64/Packages.gz... +Downloading ${url}dists/hardy/main/binary-amd64/Packages... +Building download queue... +Download queue: 1 items (30 B) +Downloading ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb... +WARNING: ${url}pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb: sha1 hash mismatch "8d3a014000038725d6daf8771b42a0784253688f" != "66b27417d37e024c46526c2f6d358a754fc552f3" + +Mirror `failure` has been successfully updated. diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror7Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror7Test_gold new file mode 100644 index 00000000..21905956 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror7Test_gold @@ -0,0 +1,17 @@ + + +Building download queue... +Download queue: 4 items (58.20 KiB) +Downloading & parsing package files... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/InRelease... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Packages.bz2... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Packages.gz... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Release... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Release.gpg... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/amd64/libiniparser-dev_3.1-1_amd64.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/amd64/libiniparser_3.1-1_amd64.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/i386/libiniparser-dev_3.1-1_i386.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/i386/libiniparser_3.1-1_i386.deb... +Mirror `flat` has been successfully updated. +gpgv: Good signature from "home:DeepDiver1975 OBS Project " +gpgv: Signature made Tue May 21 23:01:30 2013 MSK using DSA key ID 1048C1FF \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror8Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror8Test_gold new file mode 100644 index 00000000..b315ed78 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror8Test_gold @@ -0,0 +1,14 @@ +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/InRelease... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/Release.gpg... +gpgv: RSA key ID 3B1F56C0 +gpgv: Good signature from "Launchpad sim" +Downloading & parsing package files... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-amd64/Packages.bz2... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-armel/Packages.bz2... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-i386/Packages.bz2... +Downloading http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/dists/maverick/main/binary-powerpc/Packages.bz2... +Building download queue... +Download queue: 0 items (0 B) + +Mirror `gnuplot-maverick-src` has been successfully updated. diff --git a/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror9Test_gold b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror9Test_gold new file mode 100644 index 00000000..626ff9e5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/UpdateMirror9Test_gold @@ -0,0 +1,22 @@ + + +Building download queue... +Download queue: 7 items (97.48 KiB) +Downloading & parsing package files... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/InRelease... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Packages.bz2... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Packages.gz... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Release... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Release.gpg... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Sources.bz2... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/Sources.gz... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/amd64/libiniparser-dev_3.1-1_amd64.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/amd64/libiniparser_3.1-1_amd64.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/i386/libiniparser-dev_3.1-1_i386.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/i386/libiniparser_3.1-1_i386.deb... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/libiniparser_3.1-1.diff.gz... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/libiniparser_3.1-1.dsc... +Downloading http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/libiniparser_3.1.orig.tar.gz... +Mirror `flat-src` has been successfully updated. +gpgv: Good signature from "home:DeepDiver1975 OBS Project " +gpgv: DSA key ID 1048C1FF \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t04_mirror/__init__.py b/src/github.com/smira/aptly/system/t04_mirror/__init__.py new file mode 100644 index 00000000..12cb9cb0 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/__init__.py @@ -0,0 +1,9 @@ +""" +Testing mirror management +""" + +from .create import * +from .show import * +from .list import * +from .update import * +from .drop import * diff --git a/src/github.com/smira/aptly/system/t04_mirror/create.py b/src/github.com/smira/aptly/system/t04_mirror/create.py new file mode 100644 index 00000000..fd308d37 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/create.py @@ -0,0 +1,226 @@ +import re + +from lib import BaseTest + + +class CreateMirror1Test(BaseTest): + """ + create mirror: all architectures + all components + """ + runCmd = "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy" + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror1", "mirror_show") + + +class CreateMirror2Test(BaseTest): + """ + create mirror: all architectures and 1 component + """ + runCmd = "aptly mirror create --ignore-signatures mirror2 http://mirror.yandex.ru/debian/ wheezy main" + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror2", "mirror_show") + + +class CreateMirror3Test(BaseTest): + """ + create mirror: some architectures and 2 components + """ + runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror3 http://mirror.yandex.ru/debian/ wheezy main contrib" + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror3", "mirror_show") + + +class CreateMirror4Test(BaseTest): + """ + create mirror: missing component + """ + expectedCode = 1 + + runCmd = "aptly -architectures=i386,amd64 mirror create --ignore-signatures mirror4 http://mirror.yandex.ru/debian/ wheezy life" + + +class CreateMirror5Test(BaseTest): + """ + create mirror: missing architecture + """ + expectedCode = 1 + + runCmd = "aptly -architectures=i386,nano68 mirror create --ignore-signatures mirror5 http://mirror.yandex.ru/debian/ wheezy" + + +class CreateMirror6Test(BaseTest): + """ + create mirror: missing release + """ + expectedCode = 1 + + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror6 http://mirror.yandex.ru/debian/ suslik" + + +class CreateMirror7Test(BaseTest): + """ + create mirror: architectures fixed via config file + """ + runCmd = "aptly mirror create --ignore-signatures mirror7 http://mirror.yandex.ru/debian/ wheezy main contrib" + configOverride = {"architectures": ["i386", "amd64"]} + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror7", "mirror_show") + + +class CreateMirror8Test(BaseTest): + """ + create mirror: already exists + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures mirror8 http://mirror.yandex.ru/debian/ wheezy main contrib" + ] + runCmd = "aptly mirror create --ignore-signatures mirror8 http://mirror.yandex.ru/debian/ wheezy main contrib" + expectedCode = 1 + + +class CreateMirror9Test(BaseTest): + """ + create mirror: repo with InRelease verification + """ + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror9 http://mirror.yandex.ru/debian-backports/ squeeze-backports" + fixtureGpg = True + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using|Warning: using insecure memory!\n', '', s) + + def check(self): + def removeDates(s): + return re.sub(r"(Date|Valid-Until): [,0-9:+A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly mirror show mirror9", "mirror_show", match_prepare=removeDates) + + +class CreateMirror10Test(BaseTest): + """ + create mirror: repo with InRelease verification, failure + """ + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror10 http://mirror.yandex.ru/debian-backports/ squeeze-backports" + fixtureGpg = False + gold_processor = BaseTest.expand_environ + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using|gpgv: keyblock resource .*$|gpgv: Can\'t check signature: .*$', '', s, flags=re.MULTILINE) + expectedCode = 1 + + +class CreateMirror11Test(BaseTest): + """ + create mirror: repo with Release + Release.gpg verification + """ + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror11 http://mirror.yandex.ru/debian/ squeeze" + fixtureGpg = True + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror11", "mirror_show") + + +class CreateMirror12Test(BaseTest): + """ + create mirror: repo with Release+Release.gpg verification, failure + """ + runCmd = "aptly mirror create --keyring=aptlytest.gpg mirror12 http://mirror.yandex.ru/debian/ squeeze" + fixtureGpg = False + gold_processor = BaseTest.expand_environ + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using|gpgv: keyblock resource .*$|gpgv: Can\'t check signature: .*$', '', s, flags=re.MULTILINE) + expectedCode = 1 + + +class CreateMirror13Test(BaseTest): + """ + create mirror: skip verification using config file + """ + runCmd = "aptly mirror create mirror13 http://mirror.yandex.ru/debian/ wheezy" + configOverride = {"gpgDisableVerify": True} + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror13", "mirror_show") + + +class CreateMirror14Test(BaseTest): + """ + create mirror: flat repository + """ + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./" + fixtureGpg = True + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror14", "mirror_show") + + +class CreateMirror15Test(BaseTest): + """ + create mirror: flat repository + components + """ + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror14 http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./ main" + expectedCode = 1 + + +class CreateMirror16Test(BaseTest): + """ + create mirror: there's no "source" architecture + """ + expectedCode = 1 + + runCmd = "aptly -architectures=source mirror create -ignore-signatures mirror16 http://mirror.yandex.ru/debian/ wheezy" + + +class CreateMirror17Test(BaseTest): + """ + create mirror: mirror with sources enabled + """ + runCmd = "aptly -architectures=i386 mirror create -ignore-signatures -with-sources mirror17 http://mirror.yandex.ru/debian/ wheezy" + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror17", "mirror_show") + + +class CreateMirror18Test(BaseTest): + """ + create mirror: mirror with ppa URL + """ + fixtureGpg = True + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + configOverride = { + "ppaDistributorID": "ubuntu", + "ppaCodename": "maverick", + } + + runCmd = "aptly mirror create -keyring=aptlytest.gpg mirror18 ppa:gladky-anton/gnuplot" + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror18", "mirror_show") + + +class CreateMirror19Test(BaseTest): + """ + create mirror: mirror with / in components + """ + fixtureGpg = True + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + runCmd = "aptly -architectures='i386' mirror create -keyring=aptlytest.gpg -with-sources mirror19 http://security.debian.org/ wheezy/updates main" + + def check(self): + def removeDates(s): + return re.sub(r"(Date|Valid-Until): [,0-9:+A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly mirror show mirror19", "mirror_show", match_prepare=removeDates) diff --git a/src/github.com/smira/aptly/system/t04_mirror/drop.py b/src/github.com/smira/aptly/system/t04_mirror/drop.py new file mode 100644 index 00000000..17313612 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/drop.py @@ -0,0 +1,46 @@ +from lib import BaseTest + + +class DropMirror1Test(BaseTest): + """ + drop mirror: regular list + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy", + ] + runCmd = "aptly mirror drop mirror1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror show mirror1", "mirror_show", expected_code=1) + + +class DropMirror2Test(BaseTest): + """ + drop mirror: in use by snapshots + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create wheez from mirror wheezy-main" + ] + runCmd = "aptly mirror drop wheezy-main" + expectedCode = 1 + + +class DropMirror3Test(BaseTest): + """ + drop mirror: force + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create wheez from mirror wheezy-main" + ] + runCmd = "aptly mirror drop --force wheezy-main" + + +class DropMirror4Test(BaseTest): + """ + drop mirror: no such mirror + """ + runCmd = "aptly mirror drop mirror1" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t04_mirror/list.py b/src/github.com/smira/aptly/system/t04_mirror/list.py new file mode 100644 index 00000000..f97759f3 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/list.py @@ -0,0 +1,36 @@ +from lib import BaseTest + + +class ListMirror1Test(BaseTest): + """ + list mirrors: regular list + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy", + "aptly mirror create -with-sources --ignore-signatures mirror2 http://mirror.yandex.ru/debian/ squeeze contrib", + "aptly -architectures=i386 mirror create --ignore-signatures mirror3 http://mirror.yandex.ru/debian/ squeeze non-free", + "aptly mirror create -ignore-signatures mirror4 http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./", + ] + runCmd = "aptly mirror list" + + +class ListMirror2Test(BaseTest): + """ + list mirrors: empty list + """ + runCmd = "aptly mirror list" + + +class ListMirror3Test(BaseTest): + """ + list mirrors: raw list + """ + fixtureDB = True + runCmd = "aptly -raw mirror list" + + +class ListMirror4Test(BaseTest): + """ + list mirrors: raw empty list + """ + runCmd = "aptly -raw mirror list" diff --git a/src/github.com/smira/aptly/system/t04_mirror/show.py b/src/github.com/smira/aptly/system/t04_mirror/show.py new file mode 100644 index 00000000..b945555b --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/show.py @@ -0,0 +1,27 @@ +from lib import BaseTest +import re + + +class ShowMirror1Test(BaseTest): + """ + show mirror: regular mirror + """ + fixtureCmds = ["aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy"] + runCmd = "aptly mirror show mirror1" + + +class ShowMirror2Test(BaseTest): + """ + show mirror: missing mirror + """ + runCmd = "aptly mirror show mirror-xx" + expectedCode = 1 + + +class ShowMirror3Test(BaseTest): + """ + show mirror: regular mirror with packages + """ + fixtureDB = True + runCmd = "aptly mirror show --with-packages wheezy-contrib" + outputMatchPrepare = lambda _, s: re.sub(r"Last update: [0-9:+A-Za-z -]+\n", "", s) diff --git a/src/github.com/smira/aptly/system/t04_mirror/test_release/dists/hardy/Release b/src/github.com/smira/aptly/system/t04_mirror/test_release/dists/hardy/Release new file mode 100644 index 00000000..b9465c15 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/test_release/dists/hardy/Release @@ -0,0 +1,15 @@ +Origin: test +Label: failure +Suite: test +Version: 6.0.8 +Codename: hardy +Date: Sat, 19 Oct 2013 13:54:21 UTC +Architectures: amd64 +Components: main +Description: Debian 6.0.8 Released 19 October 2013 +MD5Sum: + 2e3817293fc275dbee74bd71ce6eb056 4 main/binary-amd64/Packages +SHA1: + 4d13fcc6eda389d4d679602171e11593eadae9b9 4 main/binary-amd64/Packages +SHA256: + 8a21688ae769f2b4ffcaa366409f679d 4 main/binary-amd64/Packages diff --git a/src/github.com/smira/aptly/system/t04_mirror/test_release/dists/hardy/main/binary-amd64/Packages b/src/github.com/smira/aptly/system/t04_mirror/test_release/dists/hardy/main/binary-amd64/Packages new file mode 100644 index 00000000..533805db --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/test_release/dists/hardy/main/binary-amd64/Packages @@ -0,0 +1 @@ +lala \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t04_mirror/test_release2/dists/hardy/Release b/src/github.com/smira/aptly/system/t04_mirror/test_release2/dists/hardy/Release new file mode 100644 index 00000000..a0c428a5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/test_release2/dists/hardy/Release @@ -0,0 +1,11 @@ +Origin: test +Label: failure +Suite: test +Version: 6.0.8 +Codename: hardy +Date: Sat, 19 Oct 2013 13:54:21 UTC +Architectures: amd64 +Components: main +Description: Debian 6.0.8 Released 19 October 2013 +MD5Sum: + 846549680001f5c632b6ee8e0f183825 827 main/binary-amd64/Packages diff --git a/src/github.com/smira/aptly/system/t04_mirror/test_release2/dists/hardy/main/binary-amd64/Packages b/src/github.com/smira/aptly/system/t04_mirror/test_release2/dists/hardy/main/binary-amd64/Packages new file mode 100644 index 00000000..787e64f3 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/test_release2/dists/hardy/main/binary-amd64/Packages @@ -0,0 +1,19 @@ +Package: amanda-client +Source: amanda +Version: 1:3.3.1-3~bpo60+1 +Installed-Size: 880 +Maintainer: Bdale Garbee +Architecture: amd64 +Replaces: amanda-common (<< 1:2.5.2p1-3) +Depends: libc6 (>= 2.3), libcurl3 (>= 7.16.2-1), libglib2.0-0 (>= 2.12.0), libreadline6 (>= 6.0), libssl0.9.8 (>= 0.9.8m-1), amanda-common (= 1:3.3.1-3~bpo60+1) +Suggests: gnuplot, dump, smbclient +Conflicts: amanda, amanda-common (<< 1:2.5.2p1-3) +Description: Advanced Maryland Automatic Network Disk Archiver (Client) +Description-md5: 21af3684379a64cacc51c39152ab1062 +Section: utils +Priority: optional +Filename: pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb +Size: 30 +MD5sum: 4f7223ebadee9fb57b6796570d60638f +SHA1: 66b27417d37e024c46526c2f6d358a754fc552f3 +SHA256: 3608bca1e44ea6c4d268eb6db02260269892c0b42b86bbf1e77a6fa16c3c9282 \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t04_mirror/test_release2/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb b/src/github.com/smira/aptly/system/t04_mirror/test_release2/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb new file mode 100644 index 00000000..6e6e144a --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/test_release2/pool/main/a/amanda/amanda-client_3.3.1-3~bpo60+1_amd64.deb @@ -0,0 +1 @@ +012345678901234567890123456789 \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t04_mirror/update.py b/src/github.com/smira/aptly/system/t04_mirror/update.py new file mode 100644 index 00000000..c4ee86e1 --- /dev/null +++ b/src/github.com/smira/aptly/system/t04_mirror/update.py @@ -0,0 +1,127 @@ +import string +import re +from lib import BaseTest + + +class UpdateMirror1Test(BaseTest): + """ + update mirrors: regular update + """ + longTest = False + fixtureCmds = [ + "aptly -architectures=i386,amd64 mirror create --ignore-signatures varnish http://repo.varnish-cache.org/debian/ wheezy varnish-3.0", + ] + runCmd = "aptly mirror update --ignore-signatures varnish" + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class UpdateMirror2Test(BaseTest): + """ + update mirrors: no such repo + """ + runCmd = "aptly mirror update mirror-xyz" + expectedCode = 1 + + +class UpdateMirror3Test(BaseTest): + """ + update mirrors: wrong checksum in release file + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures failure ${url} hardy main", + ] + fixtureWebServer = "test_release" + runCmd = "aptly mirror update --ignore-signatures failure" + expectedCode = 1 + + def gold_processor(self, gold): + return string.Template(gold).substitute({'url': self.webServerUrl}) + + +class UpdateMirror4Test(BaseTest): + """ + update mirrors: wrong checksum in release file, but ignore + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures failure ${url} hardy main", + ] + fixtureWebServer = "test_release" + runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure" + expectedCode = 1 + + def gold_processor(self, gold): + return string.Template(gold).substitute({'url': self.webServerUrl}) + + +class UpdateMirror5Test(BaseTest): + """ + update mirrors: wrong checksum in package + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures failure ${url} hardy main", + ] + fixtureWebServer = "test_release2" + runCmd = "aptly mirror update --ignore-signatures failure" + expectedCode = 1 + + def gold_processor(self, gold): + return string.Template(gold).substitute({'url': self.webServerUrl}) + + +class UpdateMirror6Test(BaseTest): + """ + update mirrors: wrong checksum in package, but ignore + """ + fixtureCmds = [ + "aptly mirror create --ignore-signatures failure ${url} hardy main", + ] + fixtureWebServer = "test_release2" + runCmd = "aptly mirror update -ignore-checksums --ignore-signatures failure" + + def gold_processor(self, gold): + return string.Template(gold).substitute({'url': self.webServerUrl}) + + +class UpdateMirror7Test(BaseTest): + """ + update mirrors: flat repository + """ + fixtureGpg = True + fixtureCmds = [ + "aptly mirror create --keyring=aptlytest.gpg flat http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./", + ] + runCmd = "aptly mirror update --keyring=aptlytest.gpg flat" + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class UpdateMirror8Test(BaseTest): + """ + update mirrors: with sources (already in pool) + """ + fixtureGpg = True + fixturePool = True + fixtureCmds = [ + "aptly mirror create --keyring=aptlytest.gpg gnuplot-maverick-src http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick", + ] + runCmd = "aptly mirror update --keyring=aptlytest.gpg gnuplot-maverick-src" + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + +class UpdateMirror9Test(BaseTest): + """ + update mirrors: flat repository + sources + """ + fixtureGpg = True + fixtureCmds = [ + "aptly mirror create --keyring=aptlytest.gpg -with-sources flat-src http://download.opensuse.org/repositories/home:/DeepDiver1975/xUbuntu_10.04/ ./", + ] + runCmd = "aptly mirror update --keyring=aptlytest.gpg flat-src" + outputMatchPrepare = lambda _, s: re.sub(r'Signature made .* using', '', s) + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot1Test_gold new file mode 100644 index 00000000..a7d52bb6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot1Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap1 successfully created. +You can run 'aptly publish snapshot snap1' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot1Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot1Test_snapshot_show new file mode 100644 index 00000000..ebc40397 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot1Test_snapshot_show @@ -0,0 +1,56144 @@ +Name: snap1 +Created At: 2014-02-27 12:59:54 MSK +Description: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +Number of packages: 56139 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_5.8.11-3_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_5.8.11-3_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot2Test_gold new file mode 100644 index 00000000..1f98c0bd --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot2Test_gold @@ -0,0 +1 @@ +ERROR: unable to create snapshot: mirror with name no-such-mirror not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot3Test_gold new file mode 100644 index 00000000..3df1d707 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot3Test_gold @@ -0,0 +1 @@ +ERROR: unable to add snapshot: snapshot with name snap1 already exists diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot4Test_gold new file mode 100644 index 00000000..eb356509 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot4Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap4 successfully created. +You can run 'aptly publish snapshot snap4' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot4Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot4Test_snapshot_show new file mode 100644 index 00000000..6ed8581d --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot4Test_snapshot_show @@ -0,0 +1,4 @@ +Name: snap4 +Description: Created as empty +Number of packages: 0 +Packages: diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot5Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot5Test_gold new file mode 100644 index 00000000..43b74e64 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot5Test_gold @@ -0,0 +1 @@ +ERROR: unable to add snapshot: snapshot with name snap5 already exists diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot6Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot6Test_gold new file mode 100644 index 00000000..21cecd00 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot6Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap6 successfully created. +You can run 'aptly publish snapshot snap6' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot6Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot6Test_snapshot_show new file mode 100644 index 00000000..3b1be9b6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot6Test_snapshot_show @@ -0,0 +1,7 @@ +Name: snap6 +Description: Snapshot from local repo [local-repo] +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot7Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot7Test_gold new file mode 100644 index 00000000..d2676525 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot7Test_gold @@ -0,0 +1 @@ +ERROR: unable to create snapshot: local repo with name no-such-repo not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot8Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot8Test_gold new file mode 100644 index 00000000..3cc7f5fe --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot8Test_gold @@ -0,0 +1 @@ +ERROR: unable to add snapshot: snapshot with name snap8 already exists diff --git a/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot9Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot9Test_gold new file mode 100644 index 00000000..4ff183dd --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/CreateSnapshot9Test_gold @@ -0,0 +1 @@ +ERROR: unable to create snapshot: local repo doesn't have packages diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot1Test_gold new file mode 100644 index 00000000..6a365b7f --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot1Test_gold @@ -0,0 +1,6 @@ + Arch | Package | Version in A | Version in B ++ all | init-system-helpers | - | 1.11~bpo70.1 +! amd64 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +! amd64 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +! i386 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot2Test_gold new file mode 100644 index 00000000..9560596b --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot2Test_gold @@ -0,0 +1,57385 @@ + Arch | Package | Version in A | Version in B +! all | 0ad-data | 0~r11863-1 | 0.0.14-1~bpo70+1 ++ all | 0ad-data-common | - | 0.0.14-1~bpo70+1 +- all | 2ping | 2.0-1 | - +- all | 2vcard | 0.5-3 | - +- all | 389-console | 1.1.7-1 | - +- all | 7kaa-data | 2.13-1 | - +- all | a7xpg-data | 0.11.dfsg1-7 | - +- all | abacas | 1.3.1-1 | - +- all | abcde | 2.5.3-1 | - +- all | abe-data | 1.1+dfsg-1 | - +- all | abi-compliance-checker | 1.97.7-1 | - +- all | abicheck | 1.2-5 | - +- all | abinit-doc | 5.3.4.dfsg-3 | - +- all | abiword-common | 2.9.2+svn20120603-8 | - +- all | abntex | 0.9~beta2-5.1 | - +- all | accerciser | 3.4.1-1 | - +- all | accessodf | 0.1-2 | - +- all | acheck | 0.5.1 | - +- all | acheck-rules | 0.3.1 | - +- all | acheck-rules-fr | 0.6 | - +- all | ack-grep | 1.96-2 | - +- all | acl2-books-certs | 4.3-3 | - +- all | acl2-books-source | 4.3-3 | - +- all | acl2-doc | 4.3-3 | - +- all | acl2-emacs | 4.3-3 | - +- all | acl2-infix-source | 4.3-3 | - +- all | acl2-source | 4.3-3 | - +- all | acpi-support | 0.140-5 | - +- all | acpi-support-base | 0.140-5 | - +- all | activemq | 5.6.0+dfsg-1 | - +- all | activity-log-manager | 0.8.0-1 | - +- all | activiz.net-doc | 1:1.0~git20111123-6 | - +- all | activiz.net-examples | 1:1.0~git20111123-6 | - +- all | ada-reference-manual-2005 | 1:2012.1-2 | - +- all | ada-reference-manual-2012 | 1:2012.1-2 | - +- all | addresses.framework | 0.4.7-1 | - +- all | addressview.framework | 0.4.7-1 | - +- all | adduser | 3.113+nmu3 | - ++ all | adequate | - | 0.11.3~bpo70+1 +- all | adlint | 1.10.0-1 | - +- all | adminer | 3.3.3-1 | - +- all | adonthell-data | 0.3.4.cvs.20080529+dfsg-3 | - +- all | advene | 1.0-1 | - +- all | advi-examples | 1.10.2-1 | - +- all | adzapper | 20090301.dfsg.1-0.2 | - +- all | aegis-doc | 4.24.3-3 | - +- all | aegis-tk | 4.24.3-3 | - +- all | aegisub-l10n | 2.1.9-1 | - +- all | aephea | 10.008-2 | - +- all | afnix-doc | 2.2.0-2 | - +- all | aft | 2:5.098-2 | - +- all | afterstep-data | 2.2.11-7 | - +- all | agda | 2.3.0.1-2 | - +- all | agda-mode | 2.3.0.1-2 | - +- all | agda-stdlib | 0.6-2 | - +- all | agda-stdlib-doc | 0.6-2 | - +- all | aglfn | 1.7-1 | - +- all | agtl | 0.8.0.3-1 | - +- all | aide-common | 0.15.1-8 | - +- all | airport-utils | 2-2 | - +- all | airstrike-common | 0.99+1.0pre6a-5 | - +- all | ajaxterm | 0.10-12 | - +- all | akonadi-backend-mysql | 1.7.2-3 | - +- all | akonadi-backend-postgresql | 1.7.2-3 | - +- all | alacarte | 3.5.3-1 | - +- all | alembic | 0.3.4+ds-3 | - +- all | alex4-data | 1.1-5 | - +- all | algotutor | 0.8.6-1 | - +- all | alice | 0.19-1 | - +- all | alien | 8.87 | - +- all | alien-hunter | 1.7-1 | - +- all | alienblaster-data | 1.1.0-7 | - +- all | all-knowing-dns | 1.3-1 | - +- all | allegro4-doc | 2:4.4.2-2.1 | - +- all | alpine-doc | 2.02+dfsg-2 | - +- all | alqalam | 0.2-6 | - +- all | alsa-base | 1.0.25+3~deb7u1 | - +- all | altree-examples | 1.2.1-1 | - +- all | alure-doc | 1.2-6 | - +- all | am-utils-doc | 6.2+rc20110530-3 | - +! all | amarok-common | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! all | amarok-doc | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +- all | amavisd-new | 1:2.7.1-2 | - +- all | amispammer | 3.3-1 | - +- all | amoebax-data | 0.2.1+dfsg-1 | - ++ all | ampache | - | 3.6-git408e713+dfsg-4~bpo70+1 ++ all | ampache-common | - | 3.6-git408e713+dfsg-4~bpo70+1 +- all | ampache-themes | 3.6.1-2 | - +- all | amphetamine-data | 0.8.7-14 | - +- all | amule-common | 2.3.1-9 | - +- all | amule-gnome-support | 2.3.1-9 | - +- all | anarchism | 13.4-1 | - +- all | angband-data | 1:3.3.2-2.1 | - +- all | angband-doc | 3.0.3.5 | - +- all | angrydd | 1.0.1-8 | - +- all | anjuta-common | 2:3.4.3-1 | - +- all | anki | 1.2.11-1 | - +- all | ant | 1.8.2-4 | - +- all | ant-contrib | 1.0~b3+svn177-5 | - +- all | ant-contrib-cpptasks | 1.0~b5-2 | - +- all | ant-doc | 1.8.2-4 | - +- all | ant-optional | 1.8.2-4 | - +- all | anthy-common | 9100h-16 | - +- all | anthy-el | 9100h-16 | - +- all | antlr | 2.7.7+dfsg-4 | - +- all | antlr-doc | 2.7.7+dfsg-4 | - +- all | antlr3 | 3.2-7 | - +- all | antlr3-doc | 3.2-7 | - +- all | antlr3-gunit-maven-plugin | 3.2-7 | - +- all | antlr3-maven-plugin | 3.2-7 | - +- all | anyremote-data | 6.0+dfsg-1 | - +- all | anyremote-doc | 6.0+dfsg-1 | - +- all | anyremote2html | 1.4-1 | - +- all | anything-el | 1.287-2 | - +- all | aolserver4-doc | 4.5.1-15.1 | - +- all | aolserver4-xotcl | 1.6.7-2 | - +- all | apache2-doc | 2.2.22-13+deb7u1 | - +- all | apcalc-common | 2.12.4.4-3 | - +- all | apcupsd-doc | 3.14.10-2 | - +- all | apel | 10.8-2 | - +- all | apf-firewall | 9.7+rev1-3 | - +- all | apgdiff | 2.3-1 | - +- all | aplus-fsf-doc | 4.22.1-6 | - +- all | aplus-fsf-el | 4.22.1-6 | - +- all | apoo | 2.2-2 | - +- all | app-install-data | 2012.06.16.1 | - +- all | apparmor-docs | 2.7.103-4 | - +- all | apparmor-notify | 2.7.103-4 | - +- all | apparmor-profiles | 2.7.103-4 | - +- all | apper-data | 0.7.2-5 | - +- all | apsfilter | 7.2.6-1.3 | - +- all | apt-cacher | 1.7.6 | - +- all | apt-clone | 0.2.2 | - +- all | apt-dater-host | 0.9.0-3+wheezy1 | - +- all | apt-doc | 0.9.7.9+deb7u1 | - +- all | apt-dpkg-ref | 5.3.1 | - +- all | apt-file | 2.5.1 | - +- all | apt-forktracer | 0.4 | - +- all | apt-listbugs | 0.1.8+deb7u1 | - +- all | apt-listchanges | 2.85.11 | - +- all | apt-mirror | 0.4.8-5 | - +- all | apt-offline | 1.2 | - +- all | apt-offline-gui | 1.2 | - +- all | apt-p2p | 0.1.6+nmu1 | - +- all | apt-rdepends | 1.3.0-3 | - +- all | apt-show-source | 0.10 | - +- all | apt-show-versions | 0.20 | - +- all | apt-src | 0.25.1-0.1 | - +- all | apt-transport-spacewalk | 1.0.6-2.1 | - +- all | apt-watch | 0.4.0-2.1 | - +- all | apt-xapian-index | 0.45 | - +- all | apt-zip | 0.18 | - +- all | aptdaemon | 0.45-2 | - +- all | aptdaemon-data | 0.45-2 | - +- all | aptfs | 1:0+git201108031956-38fb8dc-1 | - +- all | apticron | 1.1.55 | - +- all | aptitude-common | 0.6.8.2-1 | - +- all | aptitude-doc-cs | 0.6.8.2-1 | - +- all | aptitude-doc-en | 0.6.8.2-1 | - +- all | aptitude-doc-es | 0.6.8.2-1 | - +- all | aptitude-doc-fi | 0.6.8.2-1 | - +- all | aptitude-doc-fr | 0.6.8.2-1 | - +- all | aptitude-doc-it | 0.6.8.2-1 | - +- all | aptitude-doc-ja | 0.6.8.2-1 | - +- all | aptoncd | 0.1.98+bzr117-1.2 | - +- all | aqsis-examples | 1.8.1-3 | - +- all | arandr | 0.1.6-1 | - +- all | archivemail | 0.9.0-1 | - +- all | archmage | 1:0.2.4-3 | - +- all | archmbox | 4.10.0-2 | - +- all | ardentryst | 1.71-4 | - +- all | arduino | 1:1.0.1+dfsg-7 | - +- all | arduino-core | 1:1.0.1+dfsg-7 | - +- all | arduino-mk | 0.8-5 | - +- all | arename | 4.0-2 | - +- all | ario-common | 1.5.1-1 | - +- all | arista | 0.9.7-4 | - +- all | armagetronad-common | 0.2.8.3.2-1 | - +- all | arno-iptables-firewall | 2.0.1.c-1 | - +- all | aroarfw-dev | 0.1~beta4-5 | - +- all | aroarfw-doc | 0.1~beta4-5 | - +- all | asc-data | 2.4.0.0-3 | - +- all | asc-music | 1.3-2 | - +- all | asciidoc | 8.6.7-1 | - ++ all | asciidoctor | - | 0.1.3-1~bpo70+1 ++ all | asciidoctor-doc | - | 0.1.3-1~bpo70+1 +- all | asciio | 1.02.71-1 | - +- all | asclock-themes | 2.0.12-23 | - +- all | ash | 0.5.7-3 | - +- all | asis-doc | 2010-5 | - +- all | asp.net-examples | 2.10-2.4 | - +- all | aspectj | 1.6.12+dfsg-3 | - +- all | aspectj-doc | 1.6.12+dfsg-3 | - +- all | aspell-am | 0.03-1-4 | - +- all | aspell-ar | 0.0.20060329-4 | - +- all | aspell-ar-large | 1.2-0-2 | - +- all | aspell-bg | 4.1-3 | - +- all | aspell-bn | 1:0.01.1-1-2 | - +- all | aspell-br | 0.50-2-6 | - +- all | aspell-ca | 0.20111230b-4 | - +- all | aspell-cs | 0.51.0-1 | - +- all | aspell-cy | 0.50-3-6 | - +- all | aspell-de | 20120607-1 | - +- all | aspell-de-alt | 1:2-28 | - +- all | aspell-doc | 0.60.7~20110707-1 | - +- all | aspell-el | 0.50-3-6 | - +- all | aspell-en | 7.1-0-1 | - +- all | aspell-eo | 2.1.2000.02.25-45 | - +- all | aspell-eo-cx7 | 2.1.2000.02.25-45 | - +- all | aspell-es | 1.11-4 | - +- all | aspell-et | 1:20030606-20 | - +- all | aspell-eu-es | 0.4.20081029-6 | - +- all | aspell-fa | 0.11-0-2 | - +- all | aspell-fo | 0.4.1-1 | - +- all | aspell-fr | 0.50-3-7 | - +- all | aspell-ga | 0.50-4-4 | - +- all | aspell-gl-minimos | 0.5-35 | - +- all | aspell-gu | 0.03-0-7 | - +- all | aspell-he | 1.0-0-5 | - +- all | aspell-hi | 0.02-5 | - +- all | aspell-hr | 0.51-4 | - +- all | aspell-hsb | 0.02.0-1 | - +- all | aspell-hu | 0.99.4.2-0-3 | - +- all | aspell-hy | 0.10.0-0-2 | - +- all | aspell-is | 0.51-0-4 | - +- all | aspell-it | 2.4-20070901-0-2 | - +- all | aspell-kk | 0.2-1 | - +- all | aspell-kn | 0.01-2-2 | - +- all | aspell-ku | 0.20-0-5 | - +- all | aspell-lt | 1.2.1-3 | - +- all | aspell-lv | 0.9.4-5 | - +- all | aspell-ml | 0.04-1-5 | - +- all | aspell-mr | 0.10-8 | - +- all | aspell-nl | 1:2.10-1 | - +- all | aspell-or | 0.03-1-5 | - +- all | aspell-pa | 0.01-1-4 | - +- all | aspell-pl | 20110901-1 | - +- all | aspell-pt | 1.5 | - +- all | aspell-pt-br | 20110527-2 | - +- all | aspell-pt-pt | 20091013-4 | - +- all | aspell-ro | 3.3.7-1 | - +- all | aspell-ru | 0.99g5-18 | - +- all | aspell-sk | 0.52-0-4 | - +- all | aspell-sl | 0.60-3 | - +- all | aspell-sv | 0.51-0-3 | - +- all | aspell-ta | 20040424-1-1 | - +- all | aspell-te | 0.01-2-5 | - +- all | aspell-tl | 0.4-0-10 | - +- all | aspell-uk | 1.6.5-2 | - +- all | aspell-uz | 0.6.0-1 | - +- all | asql | 1.6-1 | - +- all | asr-manpages | 1.3-6 | - +! all | asterisk-config | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +- all | asterisk-core-sounds-en | 1.4.22-1 | - +- all | asterisk-core-sounds-en-g722 | 1.4.22-1 | - +- all | asterisk-core-sounds-en-gsm | 1.4.22-1 | - +- all | asterisk-core-sounds-en-wav | 1.4.22-1 | - +- all | asterisk-core-sounds-es | 1.4.22-1 | - +- all | asterisk-core-sounds-es-g722 | 1.4.22-1 | - +- all | asterisk-core-sounds-es-gsm | 1.4.22-1 | - +- all | asterisk-core-sounds-es-wav | 1.4.22-1 | - +- all | asterisk-core-sounds-fr | 1.4.22-1 | - +- all | asterisk-core-sounds-fr-g722 | 1.4.22-1 | - +- all | asterisk-core-sounds-fr-gsm | 1.4.22-1 | - +- all | asterisk-core-sounds-fr-wav | 1.4.22-1 | - +- all | asterisk-core-sounds-ru | 1.4.22-1 | - +- all | asterisk-core-sounds-ru-g722 | 1.4.22-1 | - +- all | asterisk-core-sounds-ru-gsm | 1.4.22-1 | - +- all | asterisk-core-sounds-ru-wav | 1.4.22-1 | - +! all | asterisk-dev | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | asterisk-doc | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +- all | asterisk-moh-opsound-g722 | 2.03-1 | - +- all | asterisk-moh-opsound-gsm | 2.03-1 | - +- all | asterisk-moh-opsound-wav | 2.03-1 | - +- all | asterisk-prompt-de | 2.0-1.1 | - +- all | asterisk-prompt-es-co | 0.20070403-1 | - +- all | asterisk-prompt-fr-armelle | 20070613-2 | - +- all | asterisk-prompt-fr-proformatique | 20070706-1.4-2 | - +- all | asterisk-prompt-it | 1:1.4.22+mm20110907-3 | - +- all | asterisk-prompt-it-menardi | 1:1.4.22+mm20110907-3 | - +- all | asterisk-prompt-it-menardi-alaw | 1:1.4.22+mm20110907-3 | - +- all | asterisk-prompt-it-menardi-gsm | 1:1.4.22+mm20110907-3 | - +- all | asterisk-prompt-it-menardi-wav | 1:1.4.22+mm20110907-3 | - +- all | asterisk-prompt-se | 1.045-1 | - ++ all | astromenace-data-src | - | 1.3.2+repack-1~bpo70+1 +- all | asused | 3.72-9 | - +- all | aswiki | 1.0.4-10 | - +- all | asylum-data | 0.3.2-1 | - +- all | asymptote-doc | 2.15-2 | - +- all | at-spi-doc | 1.32.0-2 | - +- all | at-spi2-doc | 2.5.3-2 | - +- all | atanks-data | 5.5+dfsg-0.1 | - +- all | atheist | 0.20110402-2 | - +- all | atlc-examples | 4.6.1-1 | - +- all | atomix-data | 2.14.0-2 | - +- all | atool | 0.39.0-2 | - +- all | ats-lang-anairiats-doc | 0.2.3-1 | - +- all | ats-lang-anairiats-examples | 0.2.3-1 | - +- all | attal-themes-medieval | 1.0~rc2.dfsg1-1 | - +- all | auctex | 11.86-11 | - +- all | audacious-plugins-data | 3.2.4-1 | - +- all | audacity-data | 2.0.1-1 | - +- all | audiolink | 0.05-1.2 | - +- all | augeas-doc | 0.10.0-1 | - +- all | augeas-lenses | 0.10.0-1 | - +- all | aumix-common | 2.9.1-2 | - +- all | auth2db | 0.2.5-2+dfsg-4 | - +- all | auth2db-common | 0.2.5-2+dfsg-4 | - +- all | auth2db-filters | 0.2.5-2+dfsg-4 | - +- all | auth2db-frontend | 0.2.5-2+dfsg-4 | - +- all | auto-complete-el | 1.3.1-2 | - +- all | auto-install-el | 1.53-1 | - +- all | auto-multiple-choice-common | 1.1.1-2 | - +- all | auto-multiple-choice-doc | 1.1.1-2 | - +- all | auto-multiple-choice-doc-pdf | 1.1.1-2 | - +- all | autoconf | 2.69-1 | - +- all | autoconf-archive | 20111221-2 | - +- all | autoconf-dickey | 2.52+20101002-2 | - +- all | autoconf-doc | 2.69-1 | - +- all | autoconf-gl-macros | 20101226-1 | - +- all | autoconf2.13 | 2.13-62 | - +- all | autoconf2.59 | 2.59+dfsg-0.1 | - +- all | autoconf2.64 | 2.64-3 | - +- all | autodia | 2.14-1 | - +- all | autodns-dhcp | 0.8 | - +- all | autodock-getdata | 4.2.3-2 | - +- all | autodock-test | 4.2.3-2 | - +- all | autofs5 | 5.0.7-3 | - +- all | autofs5-hesiod | 5.0.7-3 | - +- all | autofs5-ldap | 5.0.7-3 | - +- all | autogrid-test | 4.2.3-2 | - +- all | autojump | 20-2 | - +- all | autokey-common | 0.90.1-1.1 | - +- all | autokey-gtk | 0.90.1-1.1 | - +- all | autokey-qt | 0.90.1-1.1 | - +- all | automake | 1:1.11.6-1 | - +- all | automake1.10 | 1:1.10.3-3 | - +- all | automake1.4 | 1:1.4-p6-13.1 | - +- all | automake1.9 | 1.9.6+nogfdl-4 | - +- all | automysqlbackup | 2.6+debian.3-1 | - +- all | autopkgtest | 2.2.3+nmu1 | - +- all | autopkgtest-xenlvm | 2.2.3+nmu1 | - +! all | autopoint | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- all | autopostgresqlbackup | 1.0-2 | - +- all | autoproject | 0.20-5 | - +- all | autopsy | 2.24-1 | - +- all | autorenamer | 0.2-1 | - +- all | autotools-dev | 20120608.1 | - +- all | autotrash | 0.1.5-1 | - +- all | avahi-discover | 0.6.31-2 | - +- all | avogadro-data | 1.0.3-5 | - +- all | avr-libc | 1:1.8.0-2 | - +- all | avrdude-doc | 5.11.1-1 | - +- all | awesome-extra | 2012061101 | - +- all | awl-doc | 0.53-1 | - +- all | aws-status | 0.2.3-1 | - +- all | awstats | 7.0~dfsg-7 | - +- all | axel-kapt | 2.4-1 | - +- all | axiom-databases | 20120501-1 | - +- all | axiom-doc | 20120501-1 | - +- all | axiom-graphics-data | 20120501-1 | - +- all | axiom-hypertex-data | 20120501-1 | - +- all | axiom-source | 20120501-1 | - +- all | axiom-test | 20120501-1 | - +- all | axiom-tex | 20120501-1 | - +- all | azureus | 4.3.0.6-5 | - +- all | babel-1.4.0 | 1.4.0.dfsg-8.1 | - +- all | babel-doc | 1.4.0.dfsg-8.1 | - +- all | babiloo | 2.0.11-1 | - +- all | backfire-dkms | 0.83-1+deb7u1 | - +- all | backintime-common | 1.0.10-1 | - +- all | backintime-gnome | 1.0.10-1 | - +- all | backintime-kde | 1.0.10-1 | - +- all | backup-manager | 0.7.10.1-2 | - +- all | backup-manager-doc | 0.7.10.1-2 | - +- all | backup2l | 1.5-6 | - +- all | backupninja | 1.0.1-1 | - +- all | bacula | 5.2.6+dfsg-9 | - +- all | bacula-client | 5.2.6+dfsg-9 | - +- all | bacula-doc | 5.2.6-3 | - +- all | bacula-server | 5.2.6+dfsg-9 | - +- all | balazar3 | 0.1-10 | - +- all | balazar3-2d | 0.1-10 | - +- all | balazar3-3d | 0.1-10 | - +- all | balazar3-common | 0.1-10 | - +- all | balazarbrothers | 1.0~rc1-4.1 | - +- all | balder2d-data | 1.0-1.1 | - +- all | ballz-data | 1.0.2-1 | - +- all | banshee-community-extensions | 2.4.0-1 | - +- all | banshee-extension-alarm | 2.4.0-1 | - +- all | banshee-extension-albumartwriter | 2.4.0-1 | - +- all | banshee-extension-ampache | 2.4.0-1 | - +- all | banshee-extension-awn | 2.4.0-1 | - +- all | banshee-extension-coverwallpaper | 2.4.0-1 | - +- all | banshee-extension-duplicatesongdetector | 2.4.0-1 | - +- all | banshee-extension-foldersync | 2.4.0-1 | - +- all | banshee-extension-jamendo | 2.4.0-1 | - +- all | banshee-extension-karaoke | 2.4.0-1 | - +- all | banshee-extension-lcd | 2.4.0-1 | - +- all | banshee-extension-liveradio | 2.4.0-1 | - +- all | banshee-extension-lyrics | 2.4.0-1 | - +- all | banshee-extension-magnatune | 2.4.0-1 | - +- all | banshee-extension-openvp | 2.4.0-1 | - +- all | banshee-extension-radiostationfetcher | 2.4.0-1 | - +- all | banshee-extension-randombylastfm | 2.4.0-1 | - +- all | banshee-extension-streamrecorder | 2.4.0-1 | - +- all | banshee-extension-telepathy | 2.4.0-1 | - +- all | banshee-extension-zeitgeistdataprovider | 2.4.0-1 | - +- all | banshee-extensions-common | 2.4.0-1 | - +- all | basenji | 0.9.0-1 | - +- all | basex | 7.3-1 | - +- all | bash-completion | 1:2.0-1 | - +- all | bash-doc | 4.2+dfsg-0.1 | - +- all | bashburn | 3.0.1-1 | - +- all | bashdb | 4.2.0.8-1.1 | - +- all | basket-data | 1.81-3 | - +- all | bauble | 0.9.7-2 | - +- all | bbdb | 2.36-3 | - +- all | bcfg2 | 1.2.2-2 | - +- all | bcfg2-server | 1.2.2-2 | - +- all | bcfg2-web | 1.2.2-2 | - +- all | bcron-run | 0.09-13 | - +- all | bdf2psf | 1.88 | - +- all | beancounter | 0.8.10 | - +- all | beast-doc | 0.7.4-5 | - +- all | beets | 1.0~b14-2 | - +- all | beets-doc | 1.0~b14-2 | - +- all | belier | 1.2-2 | - +- all | beneath-a-steel-sky | 0.0372-4 | - +- all | berusky-data | 1.4-1 | - +- all | bf-utf-source | 0.06 | - +- all | bgoffice-computer-terms | 0.0.200909080118-1 | - +- all | bhl | 1.7.3-2 | - +- all | biabam | 0.9.7-7 | - +- all | biber | 0.9.9+release-1 | - +- all | biblatex | 1.7-1 | - +- all | biblatex-dw | 1.4-1 | - +- all | bible-kjv-text | 4.26 | - +- all | bibledit | 4.6-1 | - +- all | bibledit-data | 4.6-1 | - +- all | bibledit-gtk-data | 4.6-1 | - +- all | bibletime-data | 2.9.1-2 | - +- all | bibtex2html | 1.97-2 | - +- all | bibus | 1.5.2-1 | - +- all | bibus-doc-en | 1.5.2-1 | - +- all | bicyclerepair | 0.9-6 | - +- all | big-cursor | 3.8 | - +- all | billard-gl-data | 1.75-11 | - +- all | biloba-data | 0.9.3-4 | - +- all | bind9-doc | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- all | bindgraph | 0.2a-5.1 | - +- all | biniax2-data | 1.30-1 | - +- all | bins | 1.1.29-16 | - +- all | binstats | 1.08-8 | - +- all | binutils-doc | 2.22-8 | - +- all | binutils-mingw-w64 | 2.22-7+2 | - +- all | binutils-source | 2.22-8 | - +- all | biogenesis | 0.8-1 | - +- all | biomaj | 1.2.1-1 | - +- all | biomaj-properties | 1.2.1-1 | - +- all | bioperl | 1.6.901-3 | - +- all | bioperl-run | 1.6.9-1 | - ++ all | bird6 | - | 1.4.0-1~bpo70+1 +- all | bisonc++-doc | 4.01.00-1 | - +- all | bitlbee-common | 3.0.5-1.2 | - +- all | bitlbee-dev | 3.0.5-1.2 | - +- all | bitmap-mule | 8.5+0.20030825.0433-12 | - +- all | bitpim | 1.0.7+dfsg1-3 | - +- all | bittornado | 0.3.18-10 | - +- all | bittornado-gui | 0.3.18-10 | - +- all | bittorrent | 3.4.2-11.4 | - +- all | bittorrent-gui | 3.4.2-11.4 | - +- all | bkchem | 0.13.0-4 | - +- all | blackbox-themes | 0.5 | - +- all | blacs-test-common | 1.1-31 | - +- all | blam | 1.8.9-3 | - +- all | blazeblogger | 1.2.0-3 | - +- all | blcr-dkms | 0.8.5-2 | - +- all | bleachbit | 0.9.2-2 | - +- all | blender-ogrexml | 1.7.4+dfsg1-7 | - +- all | blender-ogrexml-1.8 | 1.8.0+dfsg1-3 | - +- all | blends-common | 0.6.16.2 | - +- all | blends-dev | 0.6.16.2 | - +- all | blends-doc | 0.6.16.2 | - +- all | bless | 0.6.0-4 | - +- all | bley | 0.1.5-2 | - +- all | blhc | 0.03+20120626+git93afe23-1 | - +- all | blobandconquer-data | 1.11-dfsg+20-1 | - +- all | blobby-data | 1.0~rc1-2 | - +- all | blobwars-data | 1.19-2 | - +- all | blocks-of-the-undead-data | 1.0-5 | - +- all | blosxom | 2.1.2-1 | - +- all | blt-demo | 2.4z-4.2 | - +! all | bluefish-data | 2.2.3-4 | 2.2.5-3~bpo70+1 +- all | bluemindo | 0.3-4 | - +- all | blueproximity | 1.2.5-6 | - +- all | bluetooth | 4.99-2 | - +- all | bluewho | 0.1-1 | - +- all | bluez-audio | 4.99-2 | - +- all | bluez-utils | 4.99-2 | - +- all | bmagic | 3.7.0-1.1 | - +- all | bnd | 1.50.0-5 | - +- all | boa-constructor | 0.6.1-12 | - +- all | bochs-doc | 2.4.6-5 | - +- all | bochsbios | 2.4.6-5 | - +- all | bodr | 9-1 | - +- all | bogofilter-common | 1.2.2+dfsg1-2 | - +! all | boinc | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +- all | boinc-cgi-stripchart | 7.0.27+dfsg-5 | - ++ all | boinc-dev | - | 7.0.65+dfsg-3~bpo70+1 +- all | bokken | 1.6-1 | - +- all | bomberclone-data | 0.11.9-4 | - +- all | boo | 0.9.5~git20110729.r1.202a430-2 | - +- all | bookletimposer | 0.2-1 | - +- all | bookview | 3.2.1-1 | - +- all | boot-info-script | 0.61-1 | - +- all | bootcd | 3.28 | - +- all | bootcd-backup | 3.28 | - +- all | bootcd-i386 | 3.28 | - +- all | bootcd-ia64 | 3.28 | - +- all | bootcd-mkinitramfs | 3.28 | - +- all | bootchart | 0.10~svn407-4.1~deb7u1 | - +- all | bootchart-view | 0.10~svn407-4.1~deb7u1 | - ++ all | bosixnet-daemon | - | 1.6-2~bpo70+1 +- all | boswars-data | 2.6.1-2 | - +- all | bouncy | 0.6.20071104-3 | - +- all | bowtie-examples | 0.12.7-3 | - +- all | bowtie2-examples | 2.0.0-beta6-3 | - +- all | bpython | 0.11-1 | - +- all | bpython-gtk | 0.11-1 | - +- all | bpython-urwid | 0.11-1 | - +- all | bpython3 | 0.11-1 | - +- all | brag | 1.4.1-2 | - +- all | brasero-common | 3.4.1-4 | - +- all | brazilian-conjugate | 3.0~beta4-15 | - +- all | brickos-doc | 0.9.0.dfsg-6 | - +- all | briquolo-data | 0.5.7-4 | - +- all | bristol-data | 0.60.10-3 | - +- all | bsfilter | 1:1.0.17-3 | - +- all | bsh | 2.0b4-12 | - +- all | bsh-doc | 2.0b4-12 | - +- all | bsh-src | 2.0b4-12 | - +- all | btanks-data | 0.9.8083-4 | - +- all | bubbros | 1.6-2 | - +- all | bucardo | 4.99.5-1 | - +- all | buffycli | 0.7-1 | - +- all | bugz | 0.9.3-2 | - +- all | buildbot | 0.8.6p1-1 | - +- all | buildbot-slave | 0.8.6p1-1 | - +- all | buildd | 0.63.2-1.1 | - +- all | bum | 2.5.2-1 | - +- all | bumprace-data | 1.5.4-1 | - +- all | bundler | 1.1.4-6 | - ++ all | bup-doc | - | 0.25-1~bpo70+1 +- all | burn | 0.4.6-2 | - +- all | busybox-syslogd | 1:1.20.0-7 | - +- all | buxon | 0.0.5-3 | - +- all | buzztard-data | 0.5.0-4 | - +- all | bwidget | 1.9.5-1 | - +- all | bygfoot-data | 2.3.2-1 | - +- all | byobu | 5.16-1.1 | - +- all | bzflag | 2.0.16.20100405+nmu1 | - +- all | bzflag-data | 2.0.16.20100405+nmu1 | - +- all | bzip2-doc | 1.0.6-4 | - +- all | bzr | 2.6.0~bzr6526-1 | - +- all | bzr-builddeb | 2.8.4 | - +- all | bzr-cvsps-import | 0.0.1~bzr71-1 | - +- all | bzr-dbus | 0.1~bzr52-2 | - +- all | bzr-doc | 2.6.0~bzr6526-1 | - +- all | bzr-email | 0.0.1~bzr57-2 | - +- all | bzr-explorer | 1.3.0~bzr556-1 | - +- all | bzr-fastimport | 0.13.0-2 | - +- all | bzr-git | 0.6.9-1 | - +- all | bzr-grep | 0.4.0+bzr147-1 | - +- all | bzr-gtk | 0.103.0+bzr792-3 | - +- all | bzr-loom | 2.2.0-2 | - +- all | bzr-pipeline | 1.4-3 | - +- all | bzr-rewrite | 0.6.3+bzr256-1 | - +- all | bzr-search | 1.7.0~bzr94-1 | - +- all | bzr-stats | 0.1.0+bzr51-1 | - +- all | bzr-svn | 1.2.1-1 | - +- all | bzr-upload | 1.1.0-2 | - +- all | bzr-xmloutput | 0.8.8+bzr162-3 | - +- all | bzrtools | 2.5+bzr786-2 | - +- all | c++-annotations | 9.4.0-1 | - +- all | c++-annotations-contrib | 9.4.0-1 | - +- all | c++-annotations-dvi | 9.4.0-1 | - +- all | c++-annotations-html | 9.4.0-1 | - +- all | c++-annotations-latex | 9.4.0-1 | - +- all | c++-annotations-pdf | 9.4.0-1 | - +- all | c++-annotations-ps | 9.4.0-1 | - +- all | c++-annotations-txt | 9.4.0-1 | - +- all | c-cpp-reference | 2.0.2-8 | - +- all | c-sig | 3.8-17 | - +- all | c2050 | 0.3b-4 | - +- all | c2esp | 24-2 | - +- all | c2hs-doc | 0.16.3-2 | - +- all | ca-certificates | 20130119 | - +- all | ca-certificates-java | 20121112+nmu2 | - +- all | cacti | 0.8.8a+dfsg-5+deb7u2 | - +- all | cadubi | 1.3-2 | - +- all | cain | 1.9-4 | - +- all | cain-examples | 1.9-4 | - +- all | cairo-dock-plug-in-data | 3.0.0-1 | - +- all | cakephp | 1.3.15-1 | - +- all | cakephp-instaweb | 0.5-1 | - +- all | cakephp-scripts | 1.3.15-1 | - +- all | calamaris | 2.99.4.0-18 | - +! all | calibre | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +- all | calligra | 1:2.4.4-3 | - +- all | calligra-data | 1:2.4.4-3 | - +- all | calligra-l10n-ca | 1:2.4.3-1 | - +- all | calligra-l10n-cavalencia | 1:2.4.3-1 | - +- all | calligra-l10n-cs | 1:2.4.3-1 | - +- all | calligra-l10n-da | 1:2.4.3-1 | - +- all | calligra-l10n-de | 1:2.4.3-1 | - +- all | calligra-l10n-el | 1:2.4.3-1 | - +- all | calligra-l10n-engb | 1:2.4.3-1 | - +- all | calligra-l10n-es | 1:2.4.3-1 | - +- all | calligra-l10n-et | 1:2.4.3-1 | - +- all | calligra-l10n-fi | 1:2.4.3-1 | - +- all | calligra-l10n-fr | 1:2.4.3-1 | - +- all | calligra-l10n-hu | 1:2.4.3-1 | - +- all | calligra-l10n-it | 1:2.4.3-1 | - +- all | calligra-l10n-kk | 1:2.4.3-1 | - +- all | calligra-l10n-nb | 1:2.4.3-1 | - +- all | calligra-l10n-nds | 1:2.4.3-1 | - +- all | calligra-l10n-nl | 1:2.4.3-1 | - +- all | calligra-l10n-pl | 1:2.4.3-1 | - +- all | calligra-l10n-pt | 1:2.4.3-1 | - +- all | calligra-l10n-ptbr | 1:2.4.3-1 | - +- all | calligra-l10n-ru | 1:2.4.3-1 | - +- all | calligra-l10n-sk | 1:2.4.3-1 | - +- all | calligra-l10n-sv | 1:2.4.3-1 | - +- all | calligra-l10n-uk | 1:2.4.3-1 | - +- all | calligra-l10n-zhcn | 1:2.4.3-1 | - +- all | calligra-l10n-zhtw | 1:2.4.3-1 | - +- all | calligraflow-data | 1:2.4.4-3 | - +- all | calligrawords-data | 1:2.4.4-3 | - ++ all | calypso | - | 1.3~bpo70+1 +- all | cameleon-doc | 1.9.21-2 | - +- all | cameramonitor | 0.2-2.1 | - +- all | caml2html | 1.4.1-3 | - +- all | camlidl-doc | 1.04-4 | - +- all | camlmix | 1.3.0-3 | - +- all | camping | 2.1.498-4 | - +- all | canna-shion | 0.0.20010204-11 | - +- all | capistrano | 2.12.0-1 | - +- all | cappuccino | 0.5.1-2.1 | - +- all | cardstories | 1.0.6-1.2 | - +- all | caribou | 0.4.4-1 | - +- all | caribou-antler | 0.4.4-1 | - +- all | carmetal | 3.5.2+dfsg-1 | - +- all | carton | 0.9.7-1 | - +- all | caspar | 20120530-1 | - +- all | caspar-doc | 20120530-1 | - +- all | castle-combat | 0.8.1.dfsg.1-3 | - +- all | catfish | 0.3.2-2 | - +- all | cbflib-doc | 0.7.9.1-3 | - +- all | cbios | 0.25-2 | - +- all | cclib | 1.0.1-2 | - +- all | cd-circleprint | 0.7.0-3 | - +- all | cdbs | 0.4.115+deb7u1 | - +- all | cdlabelgen | 4.1.0-2 | - +- all | cdrkit-doc | 9:1.1.11-2 | - +- all | cecilia | 2.0.5-2.2 | - +- all | cedar-backup2 | 2.21.0-2 | - +- all | cedar-backup2-doc | 2.21.0-2 | - +- all | ceferino-data | 0.97.8-3.1 | - +- all | celestia | 1.6.1+dfsg-2 | - +- all | celestia-common | 1.6.1+dfsg-2 | - +- all | centerim-common | 4.22.10-2 | - +- all | cereal | 0.24-1 | - +- all | cernlib | 20061220+dfsg3-2 | - +- all | cernlib-base | 20061220+dfsg3-2 | - +- all | cernlib-base-dev | 20061220+dfsg3-2 | - +- all | cernlib-core | 20061220+dfsg3-2 | - +- all | cernlib-core-dev | 20061220+dfsg3-2 | - +- all | cernlib-extras | 20061220+dfsg3-2 | - +- all | cernlib-montecarlo | 20061220+dfsg3-2 | - +- all | cfget | 0.18-1 | - +- all | cfi-en | 3.0-8 | - +- all | cfi-sv | 3.0-8 | - +- all | cfortran | 4.4-14 | - +- all | cfv | 1.18.3-2 | - +- all | cgvg | 1.6.2-2.1 | - +- all | chado-utils | 1.22-4 | - +- all | chaksem | 1.7b-5.1 | - +- all | chalow | 1.0-2 | - +- all | chameleon-cursor-theme | 0.5-4 | - +- all | changetrack | 4.7-1 | - +- all | chaosreader | 0.94-3 | - +- all | charactermanaj | 0.98+svn20120311.r42-1 | - +! all | check-mk-doc | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +- all | check-postgres | 2.19.0-1 | - +- all | checkbot | 1.80-2 | - +- all | checkgmail | 1.13+svn43-3 | - +- all | checksecurity | 2.0.14 | - +- all | checkstyle | 5.4-2 | - +- all | checkstyle-doc | 5.4-2 | - +- all | cheese-common | 3.4.2-2 | - +- all | chef | 10.12.0-3 | - +- all | chef-expander | 10.12.0-1 | - +- all | chef-server-api | 10.12.0-1 | - +- all | chef-solr | 10.12.0+dfsg-2 | - +- all | chemical-mime-data | 0.1.94-6 | - +- all | chemical-structures | 2.2.dfsg.0-8 | - +- all | cherrytree | 0.25.4-1 | - +- all | chewmail | 1.2-1 | - +- all | chiark-backup | 4.2.0 | - +- all | chiark-scripts | 4.2.0 | - +- all | childsplay | 1.6-1 | - +- all | childsplay-alphabet-sounds-bg | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-ca | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-de | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-el | 0.9-2 | - +- all | childsplay-alphabet-sounds-en-gb | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-es | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-fr | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-it | 0.9.1-2 | - +- all | childsplay-alphabet-sounds-nb | 0.9.1-1 | - +- all | childsplay-alphabet-sounds-nl | 0.9.1-1 | - +- all | childsplay-alphabet-sounds-pt | 0.9.1-1 | - +- all | childsplay-alphabet-sounds-ro | 0.9.1-1 | - +- all | childsplay-alphabet-sounds-ru | 0.9.1-1 | - +- all | childsplay-alphabet-sounds-sl | 0.9.1-1 | - +- all | childsplay-alphabet-sounds-sv | 0.9.2-1 | - +- all | chirashi | 1.4.0+dfsg-1 | - +- all | chise-db | 0.3.0-2 | - +- all | chkconfig | 11.4-54.60.1-1 | - +- all | chm2pdf | 0.9.1-1.1 | - +- all | chromium-browser | 31.0.1650.63-1~deb7u1 | - +- all | chromium-browser-dbg | 31.0.1650.63-1~deb7u1 | - +- all | chromium-browser-inspector | 31.0.1650.63-1~deb7u1 | - +- all | chromium-browser-l10n | 31.0.1650.63-1~deb7u1 | - +- all | chromium-bsu-data | 0.9.15-1 | - +- all | chromium-inspector | 31.0.1650.63-1~deb7u1 | - +- all | chromium-l10n | 31.0.1650.63-1~deb7u1 | - +- all | chronicle | 4.6-2 | - +- all | cia-clients | 20120903 | - +- all | ciderwebmail | 1.04-1 | - +- all | cil | 0.07.00-6 | - +- all | cimg-dev | 1.4.9-2 | - +- all | cimg-doc | 1.4.9-2 | - +- all | cimg-examples | 1.4.9-2 | - +- all | cipux-cat-web | 3.4.0.3-4.1 | - +- all | cipux-object-tools | 3.4.0.5-2 | - +- all | cipux-passwd | 3.4.0.3-2 | - +- all | cipux-rpc-tools | 3.4.0.9-3 | - +- all | cipux-rpcd | 3.4.0.9-3 | - +- all | cipux-storage-tools | 3.4.0.2-6 | - +- all | cipux-task-tools | 3.4.0.7-4 | - +- all | circos | 0.61-3 | - +- all | circos-tools | 0.16-2 | - +- all | circuslinux-data | 1.0.3-28 | - +- all | citadel-doc | 8.14-2 | - +- all | citadel-suite | 8.14-dfsg-1 | - +- all | cjet | 0.8.9-3 | - +- all | cjk-latex | 4.8.3+git20120621-1 | - +- all | ckeditor | 3.6.1-1 | - +- all | ckport | 0.1~rc0-3 | - +- all | ckport-database | 0.1~rc0-3 | - +- all | cl-acl-compat | 1.2.42+cvs.2010.02.08-dfsg-1.1 | - +- all | cl-alexandria | 0.0.20100217-1 | - +- all | cl-asdf | 2:2.22-1 | - +- all | cl-aserve | 1.2.42+cvs.2010.02.08-dfsg-1.1 | - +- all | cl-awk | 1-3 | - +- all | cl-babel | 0.3.0+20091229-1 | - +- all | cl-base64 | 3.3.3-2 | - +- all | cl-bordeaux-threads | 0.0.2-1 | - +- all | cl-brlapi | 4.4-10+deb7u1 | - +- all | cl-cffi | 20100219-2 | - +- all | cl-closer-mop | 2:0.6-1 | - +- all | cl-cluck | 0.1.3-2 | - +- all | cl-contextl | 1:0.61-1 | - +- all | cl-fftw3 | 1.0-1 | - +- all | cl-flexi-streams | 1.0.7-2 | - +- all | cl-flexichain | 1.5.1.dfsg.1-2 | - +- all | cl-ftp | 1.3.3-2 | - +- all | cl-getopt | 1.2.0-3 | - +- all | cl-htmlgen | 1.2.42+cvs.2010.02.08-dfsg-1.1 | - +- all | cl-hyperobject | 2.12.0-1 | - +- all | cl-irc | 1:0.8.1-dfsg-3.1 | - +- all | cl-irc-logger | 0.9.4-3 | - +- all | cl-kmrcl | 1.106-1 | - +- all | cl-launch | 3.018-1 | - +- all | cl-lexer | 1-4 | - +- all | cl-lml | 2.5.7-4 | - +- all | cl-lml2 | 1.6.6-4 | - +- all | cl-lw-compat | 0.23-1 | - +- all | cl-mcclim | 0.9.6.dfsg.cvs20100315-1 | - +- all | cl-mcclim-doc | 0.9.6.dfsg.cvs20100315-1 | - +- all | cl-mcclim-examples | 0.9.6.dfsg.cvs20100315-1 | - +- all | cl-md5 | 1:1.8.5-1 | - +- all | cl-modlisp | 0.6-7 | - +- all | cl-pg | 1:20061216-5 | - +- all | cl-photo | 0.14-4 | - +- all | cl-pipes | 1.2.1-5 | - +- all | cl-plplot | 0.6.0-3 | - +- all | cl-postoffice | 1.8.2.3-4 | - +- all | cl-ppcre | 2.0.3-1 | - +- all | cl-ptester | 2.1.2-6 | - +- all | cl-pubmed | 2.1.3-5 | - +- all | cl-puri | 1.5.5-1 | - +- all | cl-quicklisp | 1.0-1 | - +- all | cl-regex | 1-3 | - +- all | cl-reversi | 1.0.14-4 | - +- all | cl-rlc | 0.1.3-3 | - +- all | cl-rsm-mod | 1.4 | - +- all | cl-rss | 0.1.1-6 | - +- all | cl-rt | 20040621-4 | - +- all | cl-salza | 0.7.4-1 | - +- all | cl-spatial-trees | 0.2-3 | - +- all | cl-speech-dispatcher | 0.7.1-6.2 | - +- all | cl-split-sequence | 20050802-3 | - +- all | cl-sql | 6.2.0-1 | - +- all | cl-sql-aodbc | 6.2.0-1 | - +- all | cl-sql-odbc | 6.2.0-1 | - +- all | cl-sql-postgresql | 6.2.0-1 | - +- all | cl-sql-postgresql-socket | 6.2.0-1 | - +- all | cl-sql-sqlite | 6.2.0-1 | - +- all | cl-sql-sqlite3 | 6.2.0-1 | - +- all | cl-sql-tests | 6.2.0-1 | - +- all | cl-swank | 1:20120525-1 | - +- all | cl-trivial-features | 0.6-1 | - +- all | cl-trivial-gray-streams | 20091021-1 | - +- all | cl-uffi | 2.1.2-1 | - +- all | cl-usocket | 0.5.5-1 | - +- all | cl-webactions | 1.2.42+cvs.2010.02.08-dfsg-1.1 | - +- all | cl-xlunit | 0.6.3-2 | - +- all | cl-xmls | 1.4.1-1 | - +- all | cl-xptest | 1.2.4-3 | - +- all | cl-zpb-ttf | 0.7-2 | - +- all | clam-networkeditor-examples | 1.4.0-3.1 | - +- all | clamassassin | 1.2.4-1 | - +- all | clamav-base | 0.97.8+dfsg-1 | - +- all | clamav-docs | 0.97.8+dfsg-1 | - +- all | clamav-testfiles | 0.97.8+dfsg-1 | - +! all | clamav-unofficial-sigs | 3.7.1-3 | 3.7.2-1~bpo70+1 +- all | clamtk | 4.41-1 | - +- all | clanlib-doc | 1.0~svn3827-3 | - +! all | claws-mail-doc | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-extra-plugins | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-i18n | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-plugins | 3.8.1-2 | 3.9.3-1~bpo70+1 +- all | claws-mail-themes | 20120129.dfsg-1 | - +! all | claws-mail-tools | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | clawsker | 0.7.8-1 | 0.7.10-1~bpo70+1 +- all | clc-intercal | 1:1.0~4pre1.-94.-2-2 | - +- all | clearlooks-phenix-theme | 2.0.5-1 | - +- all | clfswm | 20111015.git51b0a02-2 | - +- all | clhep-doc | 2.1.2.3-1 | - +- all | cli-common | 0.8.2 | - +- all | cli-common-dev | 0.8.2 | - +- all | clinica-common | 0.2.1~dfsg-1 | - +- all | clipf | 0.4-1 | - +- all | clips-common | 6.24-3 | - +- all | clips-doc | 6.24-2 | - +- all | clirr | 0.6-3 | - +- all | clisp-doc | 1:2.49-8.1 | - +- all | clive | 2.3.3-2 | - +- all | cloc | 1.56-1 | - +- all | clojure-contrib | 1.2.0-2 | - +- all | clojure1.2 | 1.2.1+dfsg-4 | - +- all | clojure1.4 | 1.4.0+dfsg-2 | - +- all | cloop-src | 2.6.39.2-1 | - ++ all | cloud-init | - | 0.7.2-3~bpo70+1 ++ all | cloud-initramfs-dyn-netconf | - | 0.18.debian3~bpo70+1 ++ all | cloud-initramfs-growroot | - | 0.18.debian3~bpo70+1 ++ all | cloud-initramfs-rescuevol | - | 0.18.debian3~bpo70+1 ++ all | cloud-utils | - | 0.26-2~bpo70+1 +- all | clustershell | 1.6-1 | - +- all | clusterssh | 4.01.01-4 | - +- all | cm-super | 0.3.4-7.1 | - +- all | cm-super-minimal | 0.3.4-7.1 | - +- all | cm-super-x11 | 0.3.4-7.1 | - +! all | cmake-data | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! all | cmake-doc | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +- all | cmatrix-xfont | 1.2a-4 | - +- all | cmdtest | 0.3-1 | - +- all | cmigemo-common | 20110227-7 | - +- all | cmigrep | 1.5-9 | - +- all | cminpack-doc | 1.2.2-1 | - +- all | cmip5-cmor-tables | 1.3.12-1 | - +- all | cmucl-docs | 20c-2 | - +- all | cmucl-source | 20c-2 | - +- all | cmuscheme48-el | 1.8+dfsg-1 | - +- all | cobertura | 1.9.4.1+dfsg-3 | - +- all | coccinella | 0.96.20-6 | - +- all | coccinelle-doc | 1.0.0~rc12.deb-5 | - +- all | coco-cs | 20110419-5 | - +- all | coco-doc | 20060919-2 | - +- all | coco-java | 20110419-3 | - +- all | code-saturne-data | 2.1.7-1 | - +- all | code-saturne-doc | 2.1.7-1 | - +- all | code2html | 0.9.1-4 | - +! all | codeblocks-common | 10.05-2.1 | 13.12-1~bpo70+1 +- all | codecgraph | 20120114-1 | - +- all | coderay | 1.0.6-2 | - +- all | codeville | 0.8.0-2 | - ++ all | coffeescript | - | 1.4.0-1~bpo7+1 ++ all | coffeescript-doc | - | 1.4.0-1~bpo7+1 +- all | coinor-csdp-doc | 6.1.1-1 | - +- all | coinor-libcbc-doc | 2.5.0-3 | - +- all | coinor-libcgl-doc | 0.55.0-1.1 | - +- all | coinor-libclp-doc | 1.12.0-2.1 | - +- all | coinor-libcoinutils-doc | 2.6.4-3 | - +- all | coinor-libdylp-doc | 1.6.0-1.1 | - +- all | coinor-libflopc++-doc | 1.0.6-3.1 | - +- all | coinor-libipopt-doc | 3.10.2-1.1 | - +- all | coinor-libosi-doc | 0.103.0-1 | - +- all | coinor-libsymphony-doc | 5.2.4-1.2 | - +- all | coinor-libvol-doc | 1.1.7-1 | - +- all | collabtive | 0.7.6-1 | - +- all | collectd-dev | 5.1.0-3 | - +- all | collectl | 3.6.3-1 | - +- all | collectl-utils | 3.2.1-1 | - ++ all | colobot-common | - | 0.1.2-3~bpo70+2 ++ all | colobot-common-sounds | - | 0.1.2-3~bpo70+2 ++ all | colobot-common-textures | - | 0.1.2-3~bpo70+2 ++ all | colobot-dev-doc | - | 0.1.2-3~bpo70+2 +- all | colordiff | 1.0.10-1 | - +- all | colorgcc | 1.3.2.0-10 | - +- all | colormake | 0.9-1 | - +- all | colorname | 0.4+dfsg.1-3 | - +- all | colortest | 20110624-1 | - +- all | colortest-python | 1.4-2 | - +- all | comix | 4.0.4-1 | - +- all | comixcursors | 0.7.2-2 | - +- all | comixcursors-lefthanded | 0.7.2-2 | - +- all | comixcursors-lefthanded-opaque | 0.7.2-2 | - +- all | comixcursors-righthanded | 0.7.2-2 | - +- all | comixcursors-righthanded-opaque | 0.7.2-2 | - +- all | command-not-found | 0.2.38-1 | - +- all | command-runner-applet | 0.2-2 | - +- all | commit-patch | 2.4-1 | - +- all | common-lisp-controller | 7.10 | - +- all | compass-fancy-buttons-plugin | 1.1.1~20120313-1 | - +- all | compass-h5bp-plugin | 0.0.5-1 | - +- all | compass-layoutgala-plugin | 0.2-1 | - +- all | compass-slickmap-plugin | 0.5.1.1-2 | - +- all | compass-susy-plugin | 0.9-2 | - +- all | compass-yui-plugin | 0~20100724-2 | - +- all | compiz-fusion-bcop | 0.8.4-1 | - +- all | composite-data | 0.006.2+dfsg0-2 | - +- all | comprez | 2.6.1-2 | - +- all | condor-doc | 7.8.2~dfsg.1-1+deb7u1 | - +- all | conduit | 0.3.17-1.1 | - +! all | config-package-dev | 4.13 | 5.1.1~bpo70+1 +- all | configfile-doc | 1:8 | - +- all | configure-debian | 1.0.2-0.1 | - +- all | congruity | 15-1 | - +- all | conkeror | 1.0~~pre+git120527-1 | - +- all | conky | 1.9.0-2 | - +- all | connectomeviewer | 2.1.0-1 | - +- all | connman-doc | 1.0-1.1+wheezy1 | - +- all | cons | 2.3.0.1+2.2.0-1 | - +- all | console-common | 0.7.87 | - +- all | console-cyrillic | 0.9-16.2 | - +- all | console-data | 2:1.12-2 | - +- all | console-log | 1.1-2 | - +- all | console-setup | 1.88 | - +- all | console-setup-freebsd | 1.88 | - +- all | console-setup-linux | 1.88 | - +- all | console-setup-mini | 1.88 | - +- all | context | 2012.05.30.20120611-1 | - +- all | context-modules | 20120611-1 | - +- all | controlaula | 1.8.0-3 | - +- all | convertall | 0.4.2-1 | - +- all | convmv | 1.12-2 | - +- all | cook-doc | 2.33-1 | - +- all | coop-computing-tools-doc | 3.5.1-2 | - +- all | copyright-update | 2010.0307+git23ecad8-2 | - +- all | coq-theories | 8.3.pl4+dfsg-2 | - ++ all | core-network | - | 4.6-2~bpo70+1 +- all | cortado | 0.6.0-1 | - +- all | courier-doc | 0.68.2-1 | - +- all | courier-filter-perl | 0.200+ds-1 | - +- all | couriergraph | 0.25-4.3 | - +- all | covered-doc | 0.7.10-1 | - +- all | cowsay | 3.03+dfsg1-4 | - +- all | cp2k-data | 2.2.426-8 | - +- all | cpan-listchanges | 0.05-1 | - +- all | cpanminus | 1.5015-1 | - +- all | cpio-win32 | 2.11+dfsg-0.1 | - +- all | cplay | 1.49-10 | - +- all | cppo | 0.9.2-1 | - +- all | cpputest | 3.1-2 | - +- all | cpuset | 1.5.6-2 | - +- all | crack-common | 5.0a-9.3 | - +- all | crawl-common | 2:0.10.3-3 | - +- all | cream | 0.43-3 | - +- all | create-resources | 0.1.3-4 | - +! all | createrepo | 0.4.11-1 | 0.9.9-1~bpo7+1 +- all | creepy | 0.1.94-1 | - +- all | crip | 3.9-1 | - +- all | criticalmass-data | 1:1.0.0-1.5 | - +- all | cron-apt | 0.9.1 | - +- all | cron-deja-vu | 0.4-5 | - +- all | cronometer | 0.9.9-2 | - +- all | crossfire-client-images | 1.70.0-1 | - +- all | crossfire-client-sounds | 1.9.1-1 | - +- all | crossfire-common | 1.70.0-1 | - +- all | crossfire-doc | 1.70.0-1 | - +- all | crossfire-maps | 1.70.0-1 | - +- all | crossfire-maps-small | 1.5.0-3 | - +- all | crosshurd | 1.7.44 | - +- all | crypt++el | 2.94-1 | - +- all | crystalcursors | 1.1.1-13 | - +- all | cscope-el | 15.7a-3.6 | - +- all | csmash-data | 0.6.6-6.6 | - +- all | csmash-demosong | 1.4 | - +- all | csound-data | 1:5.17.11~dfsg-3 | - +- all | csound-doc | 1:5.13~dfsg-1 | - +- all | csound-manpages | 1:5.13~dfsg-1 | - +- all | css-mode | 0.11-7 | - +- all | cstocs | 1:3.42-2 | - +- all | ctapi-dev | 1.1 | - +- all | cthumb | 4.2-3 | - +- all | ctioga2 | 0.2-4 | - +- all | ctn-doc | 3.0.6-3 | - +- all | ctsim-doc | 5.2.0-1.1 | - +- all | ctsim-help | 5.2.0-1.1 | - +! all | cucumber | 1.0.2-2 | 1.3.8-1~bpo70+1 +- all | culmus | 0.121-1 | - +- all | culmus-fancy | 0.0.20051018-3 | - +- all | cup | 0.11a+20060608-3 | - +- all | cups-common | 1.5.3-5+deb7u1 | - +- all | cups-driver-gutenprint | 5.2.9-1 | - +- all | cupsddk | 1.5.3-5+deb7u1 | - +- all | customdeb | 0.1 | - +- all | cutter-glib-support | 1.1.7-1.2 | - +- all | cutter-testing-framework-doc | 1.1.7-1.2 | - +- all | cuyo-data | 2.0.0brl1-1 | - +- all | cvc3-el | 2.4.1-4 | - +- all | cvs-autoreleasedeb | 0.12-1 | - +- all | cvs-buildpackage | 5.23 | - +- all | cvs-mailcommit | 1.19-2 | - +- all | cvs-syncmail | 2.3-1 | - +- all | cvs2cl | 2.73-1 | - +- all | cvs2html | 1.98-3 | - +- all | cvs2svn | 2.3.0-3 | - +- all | cvschangelogbuilder | 2.4-1 | - +- all | cvsconnect | 0.1.cvs20001202-2 | - +- all | cvsdelta | 1.7.0-6 | - +- all | cvssuck | 0.3.cvs20060124-2 | - +- all | cvsutils | 0.2.5-1 | - +- all | cvsweb | 3:3.0.6-7 | - +- all | cweb-latex | 1.1.1.debian.1 | - +- all | cxref-doc | 1.6d-6 | - +- all | cxref-emacs | 1.6d-6 | - +- all | cxxtest | 4.0.3-2 | - +- all | cycle | 0.3.1-8 | - +- all | cyrus-admin | 2.4.16-4+deb7u1 | - +- all | cyrus-admin-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-admin-2.4 | 2.4.16-4+deb7u1 | - +- all | cyrus-clients | 2.4.16-4+deb7u1 | - +- all | cyrus-clients-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-common | 2.4.16-4+deb7u1 | - +- all | cyrus-common-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-dev | 2.4.16-4+deb7u1 | - +- all | cyrus-dev-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-doc | 2.4.16-4+deb7u1 | - +- all | cyrus-doc-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-doc-2.4 | 2.4.16-4+deb7u1 | - +- all | cyrus-imapd | 2.4.16-4+deb7u1 | - +- all | cyrus-imapd-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-murder | 2.4.16-4+deb7u1 | - +- all | cyrus-murder-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-nntpd | 2.4.16-4+deb7u1 | - +- all | cyrus-nntpd-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-pop3d | 2.4.16-4+deb7u1 | - +- all | cyrus-pop3d-2.2 | 2.4.16-4+deb7u1 | - +- all | cyrus-replication | 2.4.16-4+deb7u1 | - +- all | cyrus-sasl2-doc | 2.1.25.dfsg1-6+deb7u1 | - ++ all | cython-doc | - | 0.19.1+git34-gac3e3a2-1~bpo70+1 +- all | d-feet | 0.1.14-1 | - +- all | d-push | 2.0-1.1 | - +- all | d-rats | 0.3.3-3 | - +- all | d-shlibs | 0.52 | - +- all | dacco-common | 0.9+20071227-5 | - +- all | dacs-examples | 1.4.27b-2 | - +- all | daemontools-run | 1:0.76-3 | - +- all | dahdi-linux | 1:2.6.1+dfsg2-1 | - +- all | dahdi-source | 1:2.6.1+dfsg2-1 | - +- all | dailystrips | 1.0.28-11 | - +- all | dancer-ircd-doc | 1.0.36-8.1 | - +- all | daptup | 0.12.5.1 | - +- all | dar-docs | 2.4.5.debian.1-1 | - +- all | darcsum | 1.10-4 | - +- all | darcsweb | 1.1-3.1 | - +- all | dasher-data | 4.11-2 | - +- all | davical | 1.1.1-1 | - +- all | davical-doc | 1.1.1-1 | - +- all | db-upgrade-util | 5.1.6 | - +- all | db-util | 5.1.6 | - +- all | db4otool | 8.0.184.15484+dfsg-2 | - +- all | db5.1-doc | 5.1.29-5 | - +- all | dballe-common | 5.18-1 | - +- all | dbconfig-common | 1.8.47+nmu1 | - +- all | dblatex | 0.3.4-2 | - +- all | dbs | 0.47 | - +- all | dbtoepub | 0+svn9150-2 | - +- all | dbus-1-doc | 1.6.8-1+deb7u1 | - +- all | dbus-java-bin | 2.8-4 | - +- all | dcmtk-doc | 3.6.0-12 | - +- all | dctrl2xml | 0.18 | - +- all | ddccontrol-db | 20061014-4 | - +- all | ddclient | 3.8.0-11.5 | - +- all | ddd-doc | 1:3.3.12-4 | - +- all | ddir | 2010.0321+git1685e72-2 | - +- all | ddskk | 14.4-2 | - +- all | ddtc | 0.17.1 | - +- all | debarchiver | 0.9.10 | - +- all | debaux | 0.1.10-1 | - +- all | debaux-debconf | 0.1.10-1 | - +- all | debbugs | 2.4.1 | - +- all | debconf | 1.5.49 | - +- all | debconf-doc | 1.5.49 | - +- all | debconf-i18n | 1.5.49 | - +- all | debconf-utils | 1.5.49 | - +- all | debdelta-doc | 0.50+2 | - +- all | debget | 1.6+nmu1 | - +- all | debhelper | 9.20120909 | - +- all | debian-archive-keyring | 2012.4 | - +- all | debian-builder | 1.8 | - +- all | debian-cd | 3.1.13 | - +- all | debian-edu-archive-keyring | 2013.03.15 | - +- all | debian-edu-artwork | 0.45-1+deb7u1 | - +- all | debian-edu-config | 1.702 | - +- all | debian-edu-doc-da | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-doc-de | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-doc-en | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-doc-es | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-doc-fr | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-doc-it | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-doc-nb | 1.5~20130920~7.1+deb7u1 | - +- all | debian-edu-install | 1.720+deb7u1 | - +- all | debian-el | 35.2+nmu1 | - +- all | debian-faq | 5.0.1 | - +- all | debian-faq-de | 5.0.1 | - +- all | debian-faq-fr | 5.0.1 | - +- all | debian-faq-it | 5.0.1 | - +- all | debian-faq-ru | 5.0.1 | - +- all | debian-faq-zh-cn | 5.0.1 | - +- all | debian-goodies | 0.61 | - +- all | debian-handbook | 7.20140126~deb7u1 | - +- all | debian-history | 2.19~deb7u1 | - +- all | debian-installer-7.0-netboot-amd64 | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-armel | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-armhf | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-i386 | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-ia64 | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-kfreebsd-amd64 | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-kfreebsd-i386 | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-mips | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-mipsel | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-powerpc | 20130613+deb7u1.b2 | - +- all | debian-installer-7.0-netboot-sparc | 20130613+deb7u1.b2 | - +- all | debian-installer-launcher | 17 | - +- all | debian-kernel-handbook | 1.0.15 | - +- all | debian-keyring | 2013.04.21 | - ++ all | debian-lan-config | - | 0.13~bpo70+4 +- all | debian-policy | 3.9.3.1 | - +- all | debian-ports-archive-keyring | 2012.01.08 | - +- all | debian-refcard | 5.0.8 | - +- all | debian-reference | 2.50 | - +- all | debian-reference-common | 2.50 | - +- all | debian-reference-en | 2.50 | - +- all | debian-reference-fr | 2.50 | - +- all | debian-reference-it | 2.50 | - +- all | debian-reference-ja | 2.50 | - +- all | debian-reference-pt | 2.50 | - +- all | debian-timeline | 18 | - +- all | debian-zh-faq-s | 1.13 | - +- all | debian-zh-faq-t | 1.13 | - +- all | debiandoc-sgml | 1.2.27 | - +- all | debiandoc-sgml-doc | 1.1.22 | - +- all | debiandoc-sgml-doc-pt-br | 1.1.11 | - +- all | debichem-abinitio | 0.0.3 | - +- all | debichem-cheminformatics | 0.0.3 | - +- all | debichem-modelling | 0.0.3 | - +- all | debichem-molmech | 0.0.3 | - +- all | debichem-polymer | 0.0.3 | - +- all | debichem-semiempirical | 0.0.3 | - +- all | debichem-tasks | 0.0.3 | - +- all | debichem-view-edit-2d | 0.0.3 | - +- all | debichem-visualisation | 0.0.3 | - +- all | debirf | 0.33 | - +- all | debmirror | 1:2.14 | - +- all | debnest | 0.0.11 | - +- all | debomatic | 0.10-2 | - +! all | debootstrap | 1.0.48+deb7u1 | 1.0.55~bpo70+1 +- all | debpartial-mirror | 0.3.1 | - +- all | debpear | 0.3 | - +- all | debram-data | 1.0.3-0.2 | - +- all | debroster | 1.17 | - +- all | debsecan | 0.4.16+nmu1 | - +- all | debsums | 2.0.52 | - +- all | debtorrent | 0.1.10 | - +- all | debtree | 1.0.10 | - +- all | decibel-audio-player | 1.04-1 | - +- all | deejayd | 0.9.0-4 | - +- all | deejayd-client | 0.9.0-4 | - +- all | deejayd-gstreamer | 0.9.0-4 | - +- all | deejayd-webui | 0.9.0-4 | - +- all | deejayd-webui-extension | 0.9.0-4 | - +- all | deejayd-xine | 0.9.0-4 | - +- all | default-jdk-doc | 0.47 | - +- all | defendguin-data | 0.0.12-4 | - +- all | dejagnu | 1.5-3 | - +- all | deluge | 1.3.3-2+nmu1 | - +- all | deluge-common | 1.3.3-2+nmu1 | - +- all | deluge-console | 1.3.3-2+nmu1 | - +- all | deluge-gtk | 1.3.3-2+nmu1 | - +- all | deluge-torrent | 1.3.3-2+nmu1 | - +- all | deluge-web | 1.3.3-2+nmu1 | - +- all | deluge-webui | 1.3.3-2+nmu1 | - +- all | deluged | 1.3.3-2+nmu1 | - +- all | denemo-data | 0.9.2-3 | - +- all | denemo-doc | 0.9.2-3 | - +- all | denyhosts | 2.6-10+deb7u3 | - +- all | deps-tools-cli | 0.13-1.1 | - +- all | derivations | 0.53.20120414-1.1 | - +- all | desktop-base | 7.0.3 | - +- all | desktop-profiles | 1.4.15+nmu2 | - +- all | devede | 3.22.0-1 | - +- all | develock-el | 0.39-1 | - +- all | developers-reference | 3.4.9 | - +- all | developers-reference-de | 3.4.9 | - +- all | developers-reference-fr | 3.4.9 | - +- all | developers-reference-ja | 3.4.9 | - +- all | devhelp-common | 3.4.1-1 | - +- all | device3dfx-source | 2011.07.03-1 | - +- all | devscripts-el | 35.2+nmu1 | - +- all | dfo | 0.8+svn52-7 | - +- all | dh-apparmor | 2.7.103-4 | - +- all | dh-autoreconf | 7 | - +- all | dh-buildinfo | 0.9+nmu1 | - +- all | dh-consoledata | 0.7.87 | - +- all | dh-di | 3 | - +- all | dh-kpatches | 0.99.36+nmu1 | - +- all | dh-linktree | 0.3 | - +- all | dh-lisp | 0.7.1 | - +- all | dh-lua | 15 | - +- all | dh-make | 0.61 | - +- all | dh-make-drupal | 1.3-1+deb7u1 | - +- all | dh-make-perl | 0.75-1 | - +- all | dh-make-php | 0.3.0 | - +- all | dh-metainit | 0.0.5 | - +- all | dh-ocaml | 1.0.7 | - ++ all | dh-python | - | 1.20131021-1~bpo70+1 ++ all | dh-systemd | - | 1.11~bpo70.1 +- all | dh-xsp | 2.10-2.4 | - +- all | dhelp | 0.6.20+nmu1 | - +- all | di-netboot-assistant | 0.36b | - +- all | dia-common | 0.97.2-8 | - +- all | dia-shapes | 0.3.0-1 | - +- all | diakonos | 0.9.0-1 | - +- all | dialign-tx-data | 1.0.2-2 | - +- all | dibbler-doc | 0.8.2-1 | - +- all | dico-doc | 2.1-3 | - +- all | dico-module-mediawiki | 2.1-3 | - +- all | dicompyler | 0.4.1-1-1 | - +- all | dicoweb | 2.1-3 | - +- all | dict-bouvier | 6.revised-3.2 | - +- all | dict-de-en | 1.7-2 | - +- all | dict-devil | 1.0-12 | - +- all | dict-elements | 20001107-a-6 | - +- all | dict-foldoc | 20120518-1 | - +- all | dict-freedict-afr-deu | 1.3-4 | - +- all | dict-freedict-cro-eng | 1.3-4 | - +- all | dict-freedict-cze-eng | 1.3-4 | - +- all | dict-freedict-dan-eng | 1.3-4 | - +- all | dict-freedict-deu-eng | 1.3-4 | - +- all | dict-freedict-deu-fra | 1.3-4 | - +- all | dict-freedict-deu-ita | 1.3-4 | - +- all | dict-freedict-deu-nld | 1.3-4 | - +- all | dict-freedict-deu-por | 1.3-4 | - +- all | dict-freedict-eng-ara | 1.3-4 | - +- all | dict-freedict-eng-cro | 1.3-4 | - +- all | dict-freedict-eng-cze | 1.3-4 | - +- all | dict-freedict-eng-deu | 1.3-4 | - +- all | dict-freedict-eng-fra | 1.3-4 | - +- all | dict-freedict-eng-hin | 1.3-4 | - +- all | dict-freedict-eng-hun | 1.3-4 | - +- all | dict-freedict-eng-iri | 1.3-4 | - +- all | dict-freedict-eng-ita | 1.3-4 | - +- all | dict-freedict-eng-lat | 1.3-4 | - +- all | dict-freedict-eng-nld | 1.3-4 | - +- all | dict-freedict-eng-por | 1.3-4 | - +- all | dict-freedict-eng-rom | 1.3-4 | - +- all | dict-freedict-eng-rus | 1.3-4 | - +- all | dict-freedict-eng-scr | 1.3-4 | - +- all | dict-freedict-eng-spa | 1.3-4 | - +- all | dict-freedict-eng-swa | 1.3-4 | - +- all | dict-freedict-eng-swe | 1.3-4 | - +- all | dict-freedict-eng-tur | 1.3-4 | - +- all | dict-freedict-eng-wel | 1.3-4 | - +- all | dict-freedict-fra-deu | 1.3-4 | - +- all | dict-freedict-fra-eng | 1.3-4 | - +- all | dict-freedict-fra-nld | 1.3-4 | - +- all | dict-freedict-gla-deu | 1.3-4 | - +- all | dict-freedict-hin-eng | 1.3-4 | - +- all | dict-freedict-hun-eng | 1.3-4 | - +- all | dict-freedict-iri-eng | 1.3-4 | - +- all | dict-freedict-ita-deu | 1.3-4 | - +- all | dict-freedict-ita-eng | 1.3-4 | - +- all | dict-freedict-jpn-deu | 1.3-4 | - +- all | dict-freedict-lat-deu | 1.3-4 | - +- all | dict-freedict-lat-eng | 1.3-4 | - +- all | dict-freedict-nld-deu | 1.3-4 | - +- all | dict-freedict-nld-eng | 1.3-4 | - +- all | dict-freedict-nld-fra | 1.3-4 | - +- all | dict-freedict-por-deu | 1.3-4 | - +- all | dict-freedict-por-eng | 1.3-4 | - +- all | dict-freedict-scr-eng | 1.3-4 | - +- all | dict-freedict-slo-eng | 1.3-4 | - +- all | dict-freedict-spa-eng | 1.3-4 | - +- all | dict-freedict-swa-eng | 1.3-4 | - +- all | dict-freedict-swe-eng | 1.3-4 | - +- all | dict-freedict-tur-deu | 1.3-4 | - +- all | dict-freedict-tur-eng | 1.3-4 | - +- all | dict-freedict-wel-eng | 1.3-4 | - +- all | dict-gazetteer2k | 1.0.0-5.2 | - +- all | dict-gazetteer2k-counties | 1.0.0-5.2 | - +- all | dict-gazetteer2k-places | 1.0.0-5.2 | - +- all | dict-gazetteer2k-zips | 1.0.0-5.2 | - +- all | dict-gcide | 0.48.1 | - +- all | dict-jargon | 4.4.7-2 | - +- all | dict-moby-thesaurus | 1.0-6.2 | - +- all | dict-vera | 1:1.17-6 | - +- all | dict-wn | 1:3.0-29 | - +- all | dictem | 1.0.2-1 | - +- all | dictionaries-common | 1.12.11 | - +- all | dictionaries-common-dev | 1.12.11 | - +- all | dictionary-el | 1.8.7-15 | - +- all | didjvu | 0.2.3-2 | - +- all | diet-doc | 2.8.0-1 | - +- all | dietlibc-doc | 0.33~cvs20120325-4 | - +- all | diffmon | 20020222-2.5 | - +- all | diffuse | 0.4.6-1 | - +- all | diffutils-doc | 1:3.2-6 | - +- all | digikam-data | 4:2.6.0-1 | - +- all | digikam-doc | 4:2.6.0-1 | - +- all | ding | 1.7-2 | - +- all | diploma | 1.2.11 | - +- all | dir2ogg | 0.11.8-1 | - +- all | directoryassistant | 2.0-1.1 | - +- all | dirvish | 1.2.1-1.2 | - +- all | disc-cover | 1.5.6-1 | - +- all | discover-data | 2.2010.10.18 | - +- all | discus | 0.2.9-6 | - +- all | dish | 1.18.3-1 | - +- all | disk-manager | 1.1.1-2 | - +- all | disper | 0.3.0-1 | - +- all | dissy | 9-3 | - +- all | dist | 1:3.5-30-3.2 | - +- all | distro-info-data | 0.17~deb7u1 | - +- all | disulfinder-data | 1.2.11-2 | - +- all | dita-ot | 1.5.3-1 | - +- all | dita-ot-doc | 1.5.3-1 | - +- all | ditaa | 0.9+ds1-3 | - +- all | ditrack | 0.8-1.1 | - +- all | ditz | 0.5-1 | - +- all | diveintopython | 5.4-2 | - +- all | diveintopython-zh | 5.4b-1 | - +- all | diveintopython3 | 20110517+77958af-1 | - +- all | divxcomp | 0.1-7 | - +- all | dizzy | 0.3-1 | - +- all | djagios | 0.1.3+dfsg-1 | - +- all | django-ajax-selects | 1.2.4-1 | - +- all | django-filter | 0.5.3-3 | - +- all | django-tables | 0.10.2-2 | - +- all | djvulibre-desktop | 3.5.25.3-1 | - +- all | djvulibre-plugin | 4.9-2 | - +- all | djvusmooth | 0.2.11-1 | - +- all | dkimproxy | 1.4.1-3 | - +- all | dkms | 2.2.0.3-1.2 | - +- all | dl10n | 3.00 | - +- all | dlint | 1.4.0-7 | - +- all | dlocate | 1.02 | - +- all | dmz-cursor-theme | 0.4.3 | - +- all | dnet-common | 2.60 | - +- all | dns-browse | 1.9-7 | - +- all | dns323-firmware-tools | 0.3-2 | - +- all | dnsmasq | 2.62-3+deb7u1 | - +- all | dnssec-tools | 1.13-1 | - +- all | dnswalk | 2.0.2.dfsg.1-0.1 | - +- all | doc-base | 0.10.4 | - +- all | doc-central | 1.8.2+nmu3 | - +- all | doc-debian | 6.1 | - +- all | doc-debian-es | 2.6 | - +- all | doc-debian-fr | 3.1.3.1 | - +- all | doc-linux-fr-html | 2012.11-1 | - +- all | doc-linux-fr-text | 2012.11-1 | - +- all | doc-linux-hr | 20000416.1 | - +- all | doc-linux-ja-html | 2006.05.25-1.1 | - +- all | doc-linux-ja-text | 2006.05.25-1.1 | - +- all | doc-linux-pl | 2002.06.14-2 | - +- all | doc-linux-pl-html | 2002.06.14-2 | - +- all | docbook | 4.5-5.1 | - +- all | docbook-defguide | 2.0.17+svn9047-1 | - +- all | docbook-dsssl | 1.79-7 | - +- all | docbook-dsssl-doc | 1.79-6 | - +- all | docbook-ebnf | 1.2~cr1-5.1 | - +- all | docbook-html-forms | 1.1.0-4.1 | - +- all | docbook-mathml | 1.1CR1-2 | - +- all | docbook-simple | 1.1-4.2 | - +- all | docbook-slides | 3.4.0-5 | - +- all | docbook-slides-demo | 3.4.0-1 | - +- all | docbook-utils | 0.6.14-3 | - +- all | docbook-website | 2.5.0.0-8 | - +- all | docbook-xml | 4.5-7.2 | - +- all | docbook-xsl | 1.76.1+dfsg-1 | - +- all | docbook-xsl-doc-html | 1.76.1-1 | - +- all | docbook-xsl-doc-pdf | 1.76.1-1 | - +- all | docbook-xsl-doc-text | 1.76.1-1 | - +- all | docbook-xsl-ns | 1.76.1+dfsg-1 | - +- all | docbook-xsl-saxon | 1.00.dfsg.1-5 | - +- all | docbook2odf | 0.244-1.1 | - +- all | docbook5-xml | 5.0-2 | - +- all | docdiff | 0.4.0-2 | - +- all | docky | 2.1.4-1 | - +- all | doclifter | 2.7-1 | - +- all | doconce | 0.7.3-1 | - +- all | doctorj | 5.0.0-5 | - +- all | doctrine | 1.2.4-1 | - +- all | docutils-common | 0.8.1-8 | - +- all | docutils-doc | 0.8.1-8 | - +- all | docvert | 4.0-7 | - +- all | docvert-libreoffice | 4.0-7 | - +- all | docvert-openoffice.org | 1:3.4.0~ooo340m1-7 | - +- all | docx2txt | 1.2-1 | - +- all | dokuwiki | 0.0.20120125b-2 | - +- all | dolfin-bin | 1.0.0-7 | - +- all | dolfin-dev | 1.0.0-7 | - +- all | dolfin-doc | 1.0.0-7 | - +- all | dopewars-data | 1.5.12-13 | - +- all | dosage | 1.6.0-1 | - +- all | dossizola-data | 1.0-8.3 | - +- all | dot2tex | 2.8.7+repack-1 | - +- all | dotlrn | 2.5.0+dfsg-6+wheezy4 | - +- all | dots | 0.0.20100108-3 | - +- all | douf00 | 3.0.0-1 | - +- all | dovecot-common | 1:2.1.7-7 | - +- all | doxygen-doc | 1.8.1.2-2 | - +- all | doxygen-latex | 1.8.1.2-2 | - +- all | doxypy | 0.4.2-1 | - +- all | dozzaqueux-data | 3.21-4 | - +- all | dpatch | 2.0.35 | - +- all | dphys-config | 20100216-1 | - +- all | dphys-swapfile | 20061020-4 | - +- all | dpkg-awk | 1.2 | - +- all | dpkg-cross | 2.6.7 | - +- all | dpkg-dev | 1.16.12 | - +- all | dpkg-dev-el | 35.2+nmu1 | - +- all | dpkg-repack | 1.37 | - +- all | dpkg-ruby | 0.3.8 | - +- all | dpkg-sig | 0.13.1 | - +- all | dpkg-www | 2.54+nmu1 | - +- all | dpsyco | 1.0.36 | - +- all | dpsyco-base | 1.0.36 | - +- all | dpsyco-cfengine | 1.0.36 | - +- all | dpsyco-devel | 1.0.36 | - +- all | dpsyco-lib | 1.0.36 | - +- all | dpsyco-mysql | 1.0.36 | - +- all | dpsyco-patch | 1.0.36 | - +- all | dpsyco-samba | 1.0.36 | - +- all | dpsyco-skel | 1.0.36 | - +- all | dpsyco-ssh | 1.0.36 | - +- all | dpsyco-sudo | 1.0.36 | - +- all | dput | 0.9.6.3+nmu2 | - ++ all | dput-ng | - | 1.7~bpo70+1 ++ all | dput-ng-doc | - | 1.7~bpo70+1 +- all | draai | 20110603-1 | - +- all | dracut | 020-2 | - +- all | dracut-network | 020-2 | - +- all | dragbox | 0.4.0-1 | - +- all | drbdlinks | 1.19-1 | - +- all | drbl | 1.10.90-1 | - +- all | dreamchess-data | 0.2.0-3 | - +- all | dreampie | 1.1.1-2 | - +- all | drgeo-doc | 1.5-7 | - +- all | driconf | 0.9.1-2 | - +- all | drizzle-dev-doc | 1:7.1.36-stable-1 | - +- all | drizzle-doc | 1:7.1.36-stable-1 | - +- all | drobo-utils | 0.6.1+repack-1 | - ++ all | droopy | - | 0.20131121-1~bpo70+1 +- all | drpython | 1:3.11.1-2 | - +- all | drraw | 2.2b2-4 | - +- all | drslib | 0.3.0a3-3 | - +! all | drupal7 | 7.14-2+deb7u2 | 7.26-1~bpo70+1 ++ all | drupal7-mod-libraries | - | 2.1-3~bpo70+1 +- all | drush | 5.4-1 | - +- all | dsc-statistics-presenter | 201203250530-2 | - +- all | dsdp-doc | 5.8-9.1 | - +- all | dspam-doc | 3.10.1+dfsg-11 | - +- all | dspam-webfrontend | 3.10.1+dfsg-11 | - +- all | dssi-dev | 1.1.1~dfsg0-1 | - +- all | dstat | 0.7.2-3 | - +- all | dtc-xen | 0.5.17-1 | - +- all | dtc-xen-firewall | 0.5.17-1 | - +- all | dtdinst | 20091111-5 | - +- all | dtrx | 6.6-1.1 | - +- all | dupload | 2.7.0 | - +- all | duply | 1.5.5.5-1 | - +- all | durep | 0.9-2.3 | - +- all | dvcs-autosync | 0.5 | - +- all | dvdisaster-doc | 0.72.4-1 | - +- all | dvi2ps-fontdata-a2n | 1.0.1-3 | - +- all | dvi2ps-fontdata-ja | 1.0.1-3 | - +- all | dvi2ps-fontdata-n2a | 1.0.1-3 | - +- all | dvi2ps-fontdata-ptexfake | 1.0.1-3 | - +- all | dvi2ps-fontdata-rsp | 1.0.1-3 | - +- all | dvi2ps-fontdata-tbank | 1.0.1-3 | - +- all | dvi2ps-fontdata-three | 1.0.1-3 | - +- all | dvi2ps-fontdesc-morisawa5 | 0.5 | - +- all | dvips-fontdata-n2bk | 0.0.2001.12.12-3 | - +- all | dwoo | 1.1.1-1 | - +- all | dx-doc | 1:4.4.4-4 | - +- all | dxsamples | 4.2.0-1 | - +- all | dynalogin-client-php | 0.9.14-2 | - +- all | dynare-common | 4.3.0-2 | - +- all | dynare-doc | 4.3.0-2 | - +- all | dyndns | 2012.0112-1 | - +- all | e2wm | 1.2+git20120601-1 | - +- all | ears | 1.0.1-2.1 | - +- all | easygit | 0.99-1 | - +- all | easypg | 0.0.16-2.1 | - +- all | eb-doc | 4.4.3-6 | - +- all | eboard-extras-pack1 | 2-3 | - +- all | ecaccess | 4.0.0-3 | - +- all | ecasound-doc | 2.9.0-1 | - +- all | ecasound-el | 2.9.0-1 | - +- all | ecb | 2.40+cvs20110608-3 | - +- all | echolot | 2.1.8-8 | - +- all | ecl-doc | 11.1.1+dfsg1-2 | - +- all | eclipse | 3.8.0~rc4-1 | - +- all | eclipse-anyedit | 2.4.2-1 | - +- all | eclipse-cdt | 8.1.0+dfsg-2 | - +- all | eclipse-cdt-autotools | 8.1.0+dfsg-2 | - +- all | eclipse-cdt-pkg-config | 0.5.4+svn212-1 | - +- all | eclipse-cdt-valgrind | 1.0.0-1 | - +- all | eclipse-cdt-valgrind-remote | 1.0.0-1 | - +- all | eclipse-egit | 2.0.0-1 | - +- all | eclipse-egit-mylyn | 2.0.0-1 | - +- all | eclipse-emf | 2.5.0-2 | - +- all | eclipse-emf-examples | 2.5.0-2 | - +- all | eclipse-emf-sdk | 2.5.0-2 | - +- all | eclipse-gef | 3.7.1-1 | - +- all | eclipse-gef-doc | 3.7.1-1 | - +- all | eclipse-jdt | 3.8.0~rc4-1 | - +- all | eclipse-mercurialeclipse | 1.9.4-2 | - +- all | eclipse-mylyn | 3.8.0-2 | - +- all | eclipse-mylyn-builds-hudson | 3.8.0-2 | - +- all | eclipse-mylyn-context-cdt | 3.8.0-2 | - +- all | eclipse-mylyn-context-jdt | 3.8.0-2 | - +- all | eclipse-mylyn-context-pde | 3.8.0-2 | - +- all | eclipse-mylyn-tasks-bugzilla | 3.8.0-2 | - +- all | eclipse-mylyn-tasks-trac | 3.8.0-2 | - +- all | eclipse-mylyn-versions-cvs | 3.8.0-2 | - +- all | eclipse-mylyn-wikitext | 3.8.0-2 | - +- all | eclipse-platform-data | 3.8.0~rc4-1 | - +- all | eclipse-rse | 3.1.2-1 | - +- all | eclipse-xsd | 2.5.0-2 | - +- all | eclipse-xsd-sdk | 2.5.0-2 | - +- all | edb | 1.31-2 | - +- all | edict | 2012.05.09-1 | - +- all | edict-el | 1.06-9 | - +- all | editmoin | 1.17-1 | - +- all | editra | 0.6.58-1 | - +- all | edos-debcheck | 1.0-9 | - +- all | edos-rpmcheck | 1.0-9 | - +- all | eeepc-acpi-scripts | 1.1.12 | - +- all | eekboek | 2.00.04-1 | - +- all | eekboek-db-postgresql | 2.00.04-1 | - +- all | eekboek-gui | 2.00.04-1 | - +- all | eficas | 6.4.0-1-1.1 | - +- all | efp | 1.4-2 | - +- all | egg | 4.0.6+0.20041122cvs-19 | - +- all | eggdrop-data | 1.6.20-1 | - +- all | eglibc-source | 2.13-38+deb7u1 | - +! all | eiskaltdcpp | 2.2.6-4 | 2.2.9-3~bpo70+1 ++ all | eiskaltdcpp-cli | - | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-common | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-emoticons | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-gtk-data | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-qt-data | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-scripts | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-sounds | 2.2.6-4 | 2.2.9-3~bpo70+1 +- all | ekg2-api-docs | 1:0.3.1-3 | - +- all | el-get | 3.1-1 | - +- all | elastix-doc | 4.5-2 | - +- all | eldav | 0.8.1-5 | - +- all | electric | 8.10-2 | - +- all | elektra-doc | 0.7.1-1 | - +- all | elib | 1.0-11.1 | - +- all | elida | 0.4+nmu1 | - +- all | elinks-data | 0.12~pre5-9 | - +- all | elinks-doc | 0.12~pre5-9 | - +- all | elisa | 1.0.9+bzr1614-1.1 | - +- all | elkdoc | 3.99.8-2 | - +- all | elki | 0.5.0-1 | - +- all | elks-libc | 0.16.17-3.1 | - +- all | elmer-common | 6.1.0.svn.5396.dfsg2-2 | - ++ all | elmer-doc | - | 2014.02.06-1~bpo70+1 +- all | elscreen | 1.4.6-5 | - +- all | elserv | 0.4.0+0.20011203cvs-17.1 | - +- all | elvis-common | 2.2.0-11.1 | - +- all | elyxer | 1.2.3-1 | - +- all | elza | 1.4.3-16 | - +- all | emacs | 45.0 | - +- all | emacs-calfw | 1.3+git20111208-1 | - +- all | emacs-calfw-howm | 1.3+git20111208-1 | - +- all | emacs-chess | 2.0b6-1.1 | - +- all | emacs-goodies-el | 35.2+nmu1 | - +- all | emacs-intl-fonts | 1.2.1-8 | - +- all | emacs-jabber | 0.8.0-3 | - +- all | emacs-window-layout | 1.1-2 | - +- all | emacs23-common | 23.4+1-4 | - +- all | emacs23-el | 23.4+1-4 | - +- all | emacsen-common | 2.0.5 | - +- all | emacspeak | 29.0-9 | - +- all | email-reminder | 0.7.6-5 | - +- all | ember-media | 0.6.2.1-1 | - +- all | emboss-data | 6.4.0-2 | - +- all | emboss-doc | 6.4.0-2 | - +- all | emboss-explorer | 2.2.0-7+deb7u1 | - +- all | emboss-test | 6.4.0-2 | - +- all | emdebian-archive-keyring | 2.0.3 | - +- all | emdebian-crush | 2.2.19 | - +- all | emdebian-grip | 3.0.7 | - +- all | emdebian-grip-server | 3.0.7 | - +- all | emdebian-tdeb | 3.0.7 | - +- all | emelfm2-svg-icons | 20100219-2 | - +- all | emesene | 2.12.5+dfsg-1 | - +- all | emma | 0.6-4 | - +- all | empathy-common | 3.4.2.3-2+deb7u1 | - +- all | enamdict | 2012.05.09-1 | - +- all | enemies-of-carlotta | 1.2.6-4 | - +- all | engauge-digitizer-doc | 5.0-3 | - +- all | enigma-data | 1.10~~pre-alpha+r2236-1 | - +- all | enigma-doc | 1.10~~pre-alpha+r2236-1 | - +- all | enna-theme | 0.4.1~r3557-2.1 | - +- all | ensymble | 0.28-2 | - +- all | entagged | 0.35-4 | - +- all | eog-dev | 3.4.2-1+build1 | - +- all | epic4-help | 1:2.0+20050315-2 | - +- all | epic4-script-lice | 1:4.2.5i-1 | - +- all | epic5-script-lice | 1:5.2.3-1 | - +- all | epigrass | 2.0.4-3 | - +- all | epigrass-doc | 2.0.4-3 | - +- all | epiphany-browser-data | 3.4.2-2.1 | - +- all | epiphany-data | 0.7.0-6 | - +- all | episoder | 0.6.5-1 | - +- all | epoptes | 0.5.6-1 | - +- all | epoptes-client | 0.5.6-1 | - +- all | epson-escpr | 1.1.1-2 | - +- all | ept-cache | 1.0.9 | - +- all | epydoc-doc | 3.0.1+dfsg-1 | - +- all | epylog | 1.0.7-1 | - +- all | eqonomize-doc | 0.6-7 | - +- all | equivs | 2.0.9 | - +- all | erc | 5.3-1 | - +- all | eric | 4.5.3-1 | - +- all | eric-api-files | 4.5.3-1 | - +! all | erlang | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-doc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- all | erlang-esdl-dev | 1.2-2 | - +- all | erlang-esdl-doc | 1.2-2 | - +! all | erlang-examples | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-ic-java | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-jinterface | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-manpages | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-mode | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-nox | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-src | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-x11 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- all | erubis | 2.7.0-2 | - +- all | erubis-doc | 2.7.0-2 | - +- all | esmtp-run | 1.2-10 | - +- all | esound-common | 0.2.41-10 | - +- all | espeak-gui | 0.4-3 | - +- all | ess | 12.04-4-1 | - +- all | etckeeper | 0.63 | - +- all | ethstats | 1.0-5 | - +- all | etktab | 3.2-4 | - +- all | etoolbox | 2.1-1 | - +- all | etw-data | 3.6+svn140-4 | - +- all | euca2ools | 2.0.2-1 | - +- all | euler-doc | 1.61.0-8.1 | - +- all | evernote-mode | 0.41-3 | - +- all | evince-common | 3.4.0-3.1 | - +- all | evolution-common | 3.4.4-3 | - +- all | evolution-data-server-common | 3.4.4-3 | - +- all | evolution-data-server-doc | 3.4.4-3 | - +- all | evolver-doc | 2.30c.dfsg-3 | - +- all | exabgp | 2.0.7-1 | - +! all | exaile | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-contextinfo | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-ipod | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-moodbar | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +- all | exfalso | 2.4-1 | - +- all | exim4 | 4.80-7 | - +- all | exim4-config | 4.80-7 | - +- all | exim4-doc-html | 4.80-2 | - +- all | exim4-doc-info | 4.80-2 | - +- all | exmh | 1:2.8.0~rc1-2 | - +- all | expeyes | 2.0.0-3 | - +- all | expeyes-doc-en | 2.0.0-3 | - +- all | expeyes-doc-fr | 2.0.0-3 | - +- all | expeyes-firmware-dev | 2.0.0-3 | - +- all | extplorer | 2.1.0b6+dfsg.3-4 | - +- all | extra-xdg-menus | 1.0-4 | - +- all | extrema-doc | 4.4.5.dfsg-3 | - +- all | extremetuxracer-data | 0.4-5 | - +- all | extremetuxracer-extras | 0.6-1 | - +- all | extremetuxracer-gimp-dev | 0.4-5 | - +- all | eyed3 | 0.6.18-1 | - +- all | ezgo-accessories | 0.7.1 | - +- all | ezgo-education | 0.7.1 | - +- all | ezgo-games | 0.7.1 | - +- all | ezgo-imaging | 0.7.1 | - +- all | ezgo-multimedia | 0.7.1 | - +- all | ezgo-network | 0.7.1 | - +- all | ezgo-office | 0.7.1 | - +- all | ezgo-tasks | 0.7.1 | - +! all | facter | 1.6.10-1 | 1.7.0-1~bpo70+1 +- all | fadecut | 0.1.1-1 | - +- all | fai-client | 4.0.8~deb7u1 | - +- all | fai-doc | 4.0.8~deb7u1 | - +- all | fai-nfsroot | 4.0.8~deb7u1 | - +- all | fai-quickstart | 4.0.8~deb7u1 | - +- all | fai-server | 4.0.8~deb7u1 | - +- all | fai-setup-storage | 4.0.8~deb7u1 | - +- all | fail2ban | 0.8.6-3wheezy2 | - +- all | fake-hwclock | 0.5 | - +- all | fakechroot | 2.16-1 | - +- all | famfamfam-flag-gif | 0.1-2 | - +- all | famfamfam-flag-png | 0.1-2 | - +- all | fancontrol | 1:3.3.2-2+deb7u1 | - +- all | fastjet-doc | 3.0.2+dfsg-2 | - +- all | fastjet-examples | 3.0.2+dfsg-2 | - +- all | fastlink-doc | 4.1P-fix95-3 | - +- all | fatrat-data | 1.1.3-5 | - +- all | fatrat-dev | 1.1.3-5 | - +- all | faumachine-data | 20110812-1.2 | - +- all | fb-music-high | 0.1.2 | - +- all | fbbdoc | 1:1999-2.1 | - +- all | fccexam | 1.0.3-1 | - +- all | fcheck | 2.7.59-18 | - +! all | fcitx | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-config-common | 0.4.4-1 | 0.4.7-1~bpo70+1 +! all | fcitx-data | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-frontend-all | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-table-all | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- all | fckeditor | 1:2.6.6-3 | - +- all | fcmp | 1.18.20030311-3 | - +! all | fdpowermon | 1.5 | 1.11~bpo70+1 +! all | fdpowermon-icons | 1.5 | 1.11~bpo70+1 +- all | feed2imap | 1.0-2 | - +- all | feed2omb | 0.9.2-1 | - +- all | felix-latin-data | 2.0-3.1 | - +- all | felix-main | 4.0.1-2 | - +- all | fenics | 1:1.0.0-1 | - +- all | fenix-dev | 0.92a.dfsg1-9 | - +- all | ferm | 2.1-5 | - +- all | ferret | 0.6-3 | - +- all | festival-czech | 0.3-2 | - +- all | festival-doc | 1.4.2-8 | - +- all | festival-freebsoft-utils | 0.10-3 | - +- all | festival-hi | 0.1-9 | - +- all | festival-mr | 0.1-9 | - +- all | festival-te | 0.3.3-4 | - +- all | festlex-cmu | 1.4.0-6 | - +- all | festlex-ifd | 2.0+debian0-3 | - +- all | festlex-poslex | 1.4.0-5 | - +- all | festvox-czech-dita | 1.0.0-2 | - +- all | festvox-czech-krb | 1.0.0-2 | - +- all | festvox-czech-machac | 1.0.0-2 | - +- all | festvox-czech-ph | 0.1-3 | - +- all | festvox-hi-nsk | 0.1-9 | - +- all | festvox-italp16k | 2.0+debian0-3 | - +- all | festvox-itapc16k | 2.0+debian0-3 | - +- all | festvox-kallpc16k | 1.4.0-5 | - +- all | festvox-kallpc8k | 1.4.0-4 | - +- all | festvox-kdlpc16k | 1.4.0-5 | - +- all | festvox-kdlpc8k | 1.4.0-5 | - +- all | festvox-mr-nsk | 0.1-9 | - +- all | festvox-ru | 0.5-5 | - +- all | festvox-suopuhe-common | 1.0g-20051204-3 | - +- all | festvox-suopuhe-lj | 1.0g-20051204-3 | - +- all | festvox-suopuhe-mv | 20041119-1 | - +- all | festvox-te-nsk | 0.3.3-4 | - +- all | fetch-crl | 3.0.8-1 | - +- all | fetchmailconf | 6.3.21-4 | - +- all | fetchyahoo | 2.14.7-1 | - +- all | feynmf | 1.08-8 | - +- all | ffado-mixer-qt4 | 2.0.99+svn2171-2 | - +- all | ffdiaporama-data | 1.3-1 | - +- all | ffmpeg-dbg | 6:0.8.9-1 | - +- all | ffmpeg-doc | 6:0.8.9-1 | - +- all | fftw-docs | 2.1.5-1 | - +- all | fgo | 1.3.1-2 | - +- all | fiaif | 1.22.1-1 | - +- all | fig2ps | 1.5-1 | - +- all | figtree | 1.3.1-1 | - +- all | file-rc | 0.8.15 | - +- all | filepp | 1.8.0-3 | - +- all | filetraq | 0.2-14 | - +- all | filezilla-common | 3.5.3-2 | - +- all | filler | 1.02-6.1 | - +- all | fillets-ng-data | 1.0.0-1 | - +- all | fillets-ng-data-cs | 1.0.0-1 | - +- all | fillets-ng-data-nl | 1.0.0-1 | - +! all | finch-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +- all | firebird2.5-common | 2.5.2.26540.ds4-1~deb7u1 | - +- all | firebird2.5-common-doc | 2.5.2.26540.ds4-1~deb7u1 | - +- all | firebird2.5-doc | 2.5.2.26540.ds4-1~deb7u1 | - +- all | firebird2.5-examples | 2.5.2.26540.ds4-1~deb7u1 | - +- all | firefox-sage | 1.4.12-3+deb7u1 | - +- all | firehol | 1.273-1 | - ++ all | firmware-adi | - | 0.40~bpo70+1 ++ all | firmware-atheros | - | 0.40~bpo70+1 ++ all | firmware-bnx2 | - | 0.40~bpo70+1 ++ all | firmware-bnx2x | - | 0.40~bpo70+1 ++ all | firmware-brcm80211 | - | 0.40~bpo70+1 ++ all | firmware-intelwimax | - | 0.40~bpo70+1 ++ all | firmware-ipw2x00 | - | 0.40~bpo70+1 ++ all | firmware-ivtv | - | 0.40~bpo70+1 ++ all | firmware-iwlwifi | - | 0.40~bpo70+1 ++ all | firmware-libertas | - | 0.40~bpo70+1 ++ all | firmware-linux | - | 0.40~bpo70+1 +- all | firmware-linux-free | 3.2 | - ++ all | firmware-linux-nonfree | - | 0.40~bpo70+1 ++ all | firmware-myricom | - | 0.40~bpo70+1 ++ all | firmware-netxen | - | 0.40~bpo70+1 ++ all | firmware-qlogic | - | 0.40~bpo70+1 ++ all | firmware-ralink | - | 0.40~bpo70+1 ++ all | firmware-realtek | - | 0.40~bpo70+1 +- all | fishpoke | 0.1.6-4 | - +- all | fishpolld | 0.1.6-4 | - +- all | fitscheck | 1:3.0.8-2 | - +- all | fizmo | 0.7.2-2 | - +- all | fizmo-common | 0.7.2-2 | - +- all | fizsh | 1.0.2-1 | - +- all | flamethrower | 0.1.8-3 | - +- all | flann-doc | 1.7.1-4 | - +- all | flare-data | 0.15.1-1 | - +- all | flashbake | 0.26.2-4 | - +- all | flashybrid | 0.17 | - +- all | flawfinder | 1.27-3 | - +- all | flex-doc | 2.5.35-10.1 | - +- all | flex-old-doc | 2.5.4a-10 | - +- all | flexbackup | 1.2.1-6.2 | - +- all | flickrbackup | 0.2-3 | - +- all | flickrfs | 1.3.9.1-9.1 | - +- all | flight-of-the-amazon-queen | 1.0.0-7 | - +- all | flim | 1:1.14.9+0.20110516-1 | - +- all | flowscan | 1.006-13.2 | - +- all | flowscan-cuflow | 1.7-6 | - +- all | flowscan-cugrapher | 1.7-6 | - +- all | fltk1.1-doc | 1.1.10-14 | - +- all | fltk1.3-doc | 1.3.0-8 | - +- all | fluid-soundfont-gm | 3.1-5 | - +- all | fluid-soundfont-gs | 3.1-5 | - +- all | focalinux-html | 2010-09-3 | - +- all | focalinux-text | 2010-09-3 | - +- all | fofix | 3.121-3 | - +- all | folks-common | 0.6.9-1 | - +- all | font-hosny-amiri | 0.103-1 | - +- all | fontconfig-config | 2.9.0-7.1 | - +- all | fontforge-doc | 0.0.20100429-1 | - +- all | fonts-aoyagi-kouzan-t | 20051011-9 | - +- all | fonts-aoyagi-soseki | 20070207-8 | - +- all | fonts-arabeyes | 2.1-3 | - +- all | fonts-arphic-bkai00mp | 2.10-11 | - +- all | fonts-arphic-bsmi00lp | 2.10-12 | - +- all | fonts-arphic-gbsn00lp | 2.11-12 | - +- all | fonts-arphic-gkai00mp | 2.11-12 | - +- all | fonts-arphic-ukai | 0.2.20080216.2-3 | - +- all | fonts-arphic-uming | 0.2.20080216.2-4 | - +- all | fonts-baekmuk | 2.2-7 | - +- all | fonts-beng | 2:1.1 | - +- all | fonts-beng-extra | 1.0-2 | - +- all | fonts-beteckna | 0.4-5 | - +- all | fonts-bpg-georgian | 0.5a-6 | - +- all | fonts-breip | 1.0-7 | - +- all | fonts-cabin | 1.5-1 | - +- all | fonts-cabinsketch | 1.02-1 | - +- all | fonts-cantarell | 0.0.9-1 | - +- all | fonts-century-catalogue | 001.001-5 | - +- all | fonts-circos-symbols | 0.61-3 | - +- all | fonts-cmu | 0.7.0-2 | - +- all | fonts-comfortaa | 1.5-2 | - +- all | fonts-cwtex-docs | 1.0-2 | - +- all | fonts-cwtex-fs | 1.0-2 | - +- all | fonts-cwtex-heib | 1.0-2 | - +- all | fonts-cwtex-kai | 1.0-2 | - +- all | fonts-cwtex-ming | 1.0-2 | - +- all | fonts-cwtex-yen | 1.0-2 | - +- all | fonts-dancingscript | 1.1-1 | - +- all | fonts-dejima-mincho | 227-9 | - +- all | fonts-deva | 2:1.1 | - +- all | fonts-deva-extra | 2.0-2 | - +- all | fonts-dkg-handwriting | 0.15-1 | - +- all | fonts-dosis | 1.7-1 | - +- all | fonts-droid | 20111207+git-1 | - +- all | fonts-dustin | 20030517-9 | - +- all | fonts-dzongkha | 0.3-7 | - +- all | fonts-ecolier-court | 1.00-4 | - +- all | fonts-ecolier-lignes-court | 1.00-5 | - +- all | fonts-eeyek | 1.0-1 | - +- all | fonts-evertype-conakry | 0.002+source-2 | - +- all | fonts-f500 | 1.0-3 | - +- all | fonts-fanwood | 1.1-2 | - +- all | fonts-farsiweb | 0.4.dfsg-11 | - ++ all | fonts-font-awesome | - | 3.2.1~dfsg-2~bpo7+1 +- all | fonts-freefarsi | 1.0.0~beta1-6 | - +- all | fonts-freefont-otf | 20120503-1 | - +- all | fonts-freefont-ttf | 20120503-1 | - +- all | fonts-gfs-artemisia | 1.1-4 | - +- all | fonts-gfs-baskerville | 1.1-4 | - +- all | fonts-gfs-bodoni-classic | 1.1-4 | - +- all | fonts-gfs-complutum | 1.1-5 | - +- all | fonts-gfs-didot | 1.1-5 | - +- all | fonts-gfs-didot-classic | 1.1-4 | - +- all | fonts-gfs-gazis | 1.1-4 | - +- all | fonts-gfs-neohellenic | 1.1-4 | - +- all | fonts-gfs-olga | 1.1-3 | - +- all | fonts-gfs-porson | 1.1-5 | - +- all | fonts-gfs-solomos | 1.1-4 | - +- all | fonts-gfs-theokritos | 1.1-4 | - +- all | fonts-gubbi | 1.0-3 | - +- all | fonts-gujr | 2:1.1 | - +- all | fonts-gujr-extra | 1.0-2 | - +- all | fonts-guru | 2:1.1 | - +- all | fonts-guru-extra | 2.0-2 | - +- all | fonts-hanazono | 20120421-1.1 | - +- all | fonts-horai-umefont | 440-3 | - +- all | fonts-hosny-amiri | 0.103-1 | - +- all | fonts-hosny-thabit | 0.02-1 | - +- all | fonts-inconsolata | 001.010-4 | - +- all | fonts-indic | 2:1.1 | - +- all | fonts-ipaexfont | 00103-14.1 | - +- all | fonts-ipaexfont-gothic | 00103-14.1 | - +- all | fonts-ipaexfont-mincho | 00103-14.1 | - +- all | fonts-ipafont | 00303-10.1 | - +- all | fonts-ipafont-gothic | 00303-10.1 | - +- all | fonts-ipafont-mincho | 00303-10.1 | - +- all | fonts-ipamj-mincho | 001.01-3 | - +- all | fonts-johnsmith-induni | 20101012-4 | - +- all | fonts-junicode | 0.7.6-1 | - +- all | fonts-jura | 2.6.1-1 | - +- all | fonts-kacst | 2.01+mry-6 | - +- all | fonts-kacst-one | 5.0+svn11846-6 | - +- all | fonts-kanjistrokeorders | 3.000-dfsg-2 | - +- all | fonts-kaushanscript | 1.02-1 | - +- all | fonts-khmeros | 5.0-5 | - +- all | fonts-kiloji | 1:2.1.0-18 | - +- all | fonts-knda | 2:1.1 | - +- all | fonts-knda-extra | 1.0-2 | - +- all | fonts-komatuna | 20101113-6 | - +- all | fonts-konatu | 26-9 | - +- all | fonts-kouzan-mouhitsu | 20090806-8 | - +- all | fonts-lao | 0.0.20060226-8 | - +- all | fonts-lato | 1.104-2 | - +- all | fonts-levien-museum | 001.002-3 | - +- all | fonts-levien-typoscript | 000.001-3 | - +- all | fonts-lg-aboriginal | 1.0-5 | - +- all | fonts-liberation | 1.07.2-6 | - +- all | fonts-lindenhill | 1.2-2 | - +- all | fonts-linex | 2.2-6 | - +- all | fonts-linuxlibertine | 5.1.3-1 | - +- all | fonts-lklug-sinhala | 0.6-2 | - +- all | fonts-lobster | 2.0-1 | - +- all | fonts-lobstertwo | 2.0-1 | - +- all | fonts-lohit-beng-assamese | 2.5.1-1 | - +- all | fonts-lohit-beng-bengali | 2.5.1-1 | - +- all | fonts-lohit-deva | 2.5.1-1 | - +- all | fonts-lohit-gujr | 2.5.1-1 | - +- all | fonts-lohit-guru | 2.5.1-1 | - +- all | fonts-lohit-knda | 2.5.1-1 | - +- all | fonts-lohit-mlym | 2.5.1-1 | - +- all | fonts-lohit-orya | 2.5.1-1 | - +- all | fonts-lohit-taml | 2.5.1-1 | - +- all | fonts-lohit-telu | 2.5.1-2 | - +- all | fonts-lyx | 2.0.3-3 | - +- all | fonts-manchufont | 2.007.svn0068-2 | - ++ all | fonts-mathjax | - | 2.2-1~bpo70+1 ++ all | fonts-mathjax-extras | - | 2.2-1~bpo70+1 +- all | fonts-mgopen | 1.1-8 | - +- all | fonts-migmix | 20120411-2 | - +- all | fonts-misaki | 11-20080603-13 | - +- all | fonts-mlym | 2:1.1 | - +- all | fonts-mmcedar | 20101113a-2 | - +- all | fonts-mona | 2.90-7 | - +- all | fonts-monapo | 20090423-8 | - +- all | fonts-motoya-l-cedar | 1.00-6 | - +- all | fonts-motoya-l-maruberi | 1.00-5 | - +- all | fonts-mph-2b-damase | 001.000.dfsg.2+ds1-4 | - +- all | fonts-mplus | 049-1 | - +- all | fonts-nafees | 1.2-4 | - +- all | fonts-nakula | 1.0-2 | - +- all | fonts-nanum | 3.020-1 | - +- all | fonts-nanum-coding | 2.0-4 | - +- all | fonts-nanum-eco | 1.000-2 | - +- all | fonts-nanum-extra | 3.020-1 | - +- all | fonts-nanum-gothic-light | 1.000-2 | - +- all | fonts-navilu | 1.1-1 | - ++ all | fonts-noto | - | 2013-04-11-2~bpo70+1 +- all | fonts-ocr-a | 1.0-4 | - +- all | fonts-oflb-asana-math | 000.907-4 | - +- all | fonts-oflb-euterpe | 1.1-4 | - +- all | fonts-okolaks | 0.5-5 | - +- all | fonts-oldstandard | 2.2really-2 | - +- all | fonts-opendin | 0.1-3 | - +! all | fonts-opensymbol | 2:102.2+LibO3.5.4+dfsg2-0+deb7u2 | 2:102.3+LibO4.1.4-2~bpo70+1 +- all | fonts-orya | 2:1.1 | - +- all | fonts-orya-extra | 2.0-2 | - +- all | fonts-pagul | 1.0-5 | - +- all | fonts-paktype | 0.0svn20121225-1 | - +- all | fonts-pecita | 3.3-1 | - +- all | fonts-play | 1.002+20111215.1+ds2-1 | - +- all | fonts-prociono | 2.3-2 | - +- all | fonts-quattrocento | 1.1-1 | - +- all | fonts-rufscript | 010-3 | - +- all | fonts-sahadeva | 1.0-2 | - +- all | fonts-samyak | 1.2.2-3 | - +- all | fonts-samyak-deva | 1.2.2-3 | - +- all | fonts-samyak-gujr | 1.2.2-3 | - +- all | fonts-samyak-mlym | 1.2.2-3 | - +- all | fonts-samyak-orya | 1.2.2-3 | - +- all | fonts-samyak-taml | 1.2.2-3 | - +- all | fonts-sawarabi-gothic | 20120615-1 | - +- all | fonts-sawarabi-mincho | 20110220-5 | - +- all | fonts-senamirmir-washra | 4.1-6 | - +- all | fonts-sil-abyssinica | 1.200-3 | - +- all | fonts-sil-andika | 1.002-2 | - +- all | fonts-sil-charis | 4.106-5 | - +- all | fonts-sil-dai-banna | 2.1-5 | - +- all | fonts-sil-doulos | 4.106-4 | - +- all | fonts-sil-ezra | 2.51-7 | - +- all | fonts-sil-galatia | 2.1-4 | - +- all | fonts-sil-gentium | 20081126:1.02-12 | - +- all | fonts-sil-gentium-basic | 1.1-5 | - +- all | fonts-sil-nuosusil | 2.1.1-7 | - +- all | fonts-sil-padauk | 2.61-4 | - +- all | fonts-sil-scheherazade | 1.001-8 | - +- all | fonts-sil-sophia-nubian | 1.000-5 | - +- all | fonts-sil-zaghawa-beria | 1.000-2 | - +- all | fonts-sipa-arundina | 0.2.0-5 | - +- all | fonts-smc | 5.0.1-2 | - +- all | fonts-stix | 1.1.0-1 | - +- all | fonts-takao | 003.02.01-7.1 | - +- all | fonts-takao-gothic | 003.02.01-7.1 | - +- all | fonts-takao-mincho | 003.02.01-7.1 | - +- all | fonts-taml | 2:1.2 | - +- all | fonts-taml-tamu | 1.0-1 | - +- all | fonts-taml-tscu | 1.0-1 | - +- all | fonts-telu | 2:1.1 | - +- all | fonts-telu-extra | 2.0-2 | - +- all | fonts-thai-tlwg | 1:0.5.0-5 | - +- all | fonts-tibetan-machine | 1.901b-4 | - +- all | fonts-tlwg-garuda | 1:0.5.0-5 | - +- all | fonts-tlwg-kinnari | 1:0.5.0-5 | - +- all | fonts-tlwg-loma | 1:0.5.0-5 | - +- all | fonts-tlwg-mono | 1:0.5.0-5 | - +- all | fonts-tlwg-norasi | 1:0.5.0-5 | - +- all | fonts-tlwg-purisa | 1:0.5.0-5 | - +- all | fonts-tlwg-sawasdee | 1:0.5.0-5 | - +- all | fonts-tlwg-typewriter | 1:0.5.0-5 | - +- all | fonts-tlwg-typist | 1:0.5.0-5 | - +- all | fonts-tlwg-typo | 1:0.5.0-5 | - +- all | fonts-tlwg-umpush | 1:0.5.0-5 | - +- all | fonts-tlwg-waree | 1:0.5.0-5 | - +- all | fonts-tomsontalks | 1.1-3 | - +- all | fonts-tuffy | 20120614-1 | - +- all | fonts-ubuntu-title | 1:0.3-1 | - +- all | fonts-ukij-uyghur | 20110217-2 | - +- all | fonts-umeplus | 20120403-3 | - +- all | fonts-unfonts-core | 1.0.2-080608-6 | - +- all | fonts-unfonts-extra | 1.0.2-080608-5 | - +- all | fonts-unikurdweb | 1.0-4 | - +- all | fonts-uralic | 0.0.20040829-4 | - +- all | fonts-vlgothic | 20120629-2 | - +- all | fonts-vollkorn | 2.1-1 | - +- all | fonts-yanone-kaffeesatz | 0.20100525-4 | - +- all | fonts-yozvox-yozfont | 13.09-dfsg-2 | - +- all | fonts-yozvox-yozfont-antique | 13.09-dfsg-2 | - +- all | fonts-yozvox-yozfont-cute | 13.09-dfsg-2 | - +- all | fonts-yozvox-yozfont-edu | 13.09-dfsg-2 | - +- all | fonts-yozvox-yozfont-new-kana | 13.09-dfsg-2 | - +- all | fonts-yozvox-yozfont-standard-kana | 13.09-dfsg-2 | - +- all | fonttools | 2.3-1 | - +- all | fonty-rg | 0.5 | - +- all | fontypython | 0.4.4-1 | - +- all | foo2zjs | 20120510dfsg0-1 | - +- all | fookebox | 0.6.1-1 | - +- all | foomatic-db | 20120523-1 | - +- all | foomatic-db-compressed-ppds | 20120523-1 | - +- all | foomatic-db-gutenprint | 5.2.9-1 | - +- all | fop | 1:1.0.dfsg2-6 | - +- all | fop-doc | 1:1.0.dfsg2-6 | - +- all | forg | 0.5.1-7 | - +- all | fort77 | 1.15-8 | - +- all | fortunes | 1:1.99.1-4 | - +- all | fortunes-bg | 1.1 | - +- all | fortunes-bofh-excuses | 1.2-2 | - +- all | fortunes-br | 20080530 | - +- all | fortunes-cs | 2.0-1 | - +- all | fortunes-de | 0.30-1 | - +- all | fortunes-debian-hints | 1.99 | - +- all | fortunes-eo | 20020729-4 | - +- all | fortunes-eo-ascii | 20020729-4 | - +- all | fortunes-eo-iso3 | 20020729-4 | - +- all | fortunes-es | 1.32 | - +- all | fortunes-es-off | 1.32 | - +- all | fortunes-fr | 0.65+nmu2 | - +- all | fortunes-ga | 0.8 | - +- all | fortunes-it | 1.99-3 | - +- all | fortunes-it-off | 1.99-3 | - +- all | fortunes-mario | 0.20-7 | - +- all | fortunes-min | 1:1.99.1-4 | - +- all | fortunes-off | 1:1.99.1-4 | - +- all | fortunes-pl | 0.0.20100311-1 | - +- all | fortunes-ru | 1.52-2 | - +- all | foxyproxy | 3.4-1.1~deb7u1 | - +- all | fp-docs | 2.6.0-9 | - +- all | fp-docs-2.6.0 | 2.6.0-9 | - +- all | fpc | 2.6.0-9 | - +- all | fpc-2.6.0 | 2.6.0-9 | - +- all | fpc-source | 2.6.0-9 | - +- all | fpc-source-2.6.0 | 2.6.0-9 | - +- all | fpdns | 0.9.3-4 | - +- all | fprintd-doc | 0.4.1-5-g73edad0-3 | - +- all | fprobe-ng | 1.1-7.3 | - +- all | fragmaster | 1.6-3 | - +- all | freealchemist | 0.5-1 | - +- all | freebirth-data | 0.3.2-8 | - +- all | freebsd-glue | 0.0.4 | - +- all | freebsd-manpages | 8.2-1 | - +- all | freebsd-sendpr | 3.113+8.2-1 | - ++ all | freecad-doc | - | 0.13.2800-dfsg-1~bpo70+1 +! all | freeciv-data | 2.3.2-1 | 2.4.2-1~bpo70+1 +! all | freeciv-sound-standard | 2.3.2-1 | 2.4.2-1~bpo70+1 +- all | freecol | 0.10.5+dfsg-1 | - +- all | freedesktop-sound-theme | 0.7.pristine-2 | - +- all | freediams-doc-en | 0.7.6-1 | - +- all | freediams-doc-fr | 0.7.6-1 | - +- all | freedink | 1.08.20120427-2.1 | - +- all | freedink-data | 1.08.20111016-1 | - +- all | freedm | 0.7-1 | - +- all | freedoom | 0.7-1 | - +- all | freedroid-data | 1.0.2+cvs040112-4 | - +- all | freedroidrpg-data | 0.15.1-1 | - +- all | freefem++-doc | 3.19.1-1 | - +- all | freefem-doc | 3.5.8-5 | - +- all | freefem-examples | 3.5.8-5 | - +- all | freegish-data | 1.53+git20101011+dfsg-2 | - +- all | freeipmi | 1.1.5-3 | - +- all | freeipmi-common | 1.1.5-3 | - +- all | freemat-data | 4.0-5 | - +- all | freemat-help | 4.0-5 | - +- all | freemedforms-common-resources | 0.7.6-1 | - +- all | freemedforms-emr-doc-en | 0.7.6-1 | - +- all | freemedforms-emr-doc-fr | 0.7.6-1 | - +- all | freemedforms-emr-resources | 0.7.6-1 | - +- all | freemedforms-freedata | 0.7.6-1 | - +- all | freemedforms-i18n | 0.7.6-1 | - +- all | freemedforms-project | 0.7.6-1 | - +- all | freemedforms-theme | 0.7.6-1 | - +- all | freemind | 0.9.0+dfsg-2 | - +- all | freemind-browser | 0.9.0+dfsg-2 | - +- all | freemind-doc | 0.9.0+dfsg-2 | - +- all | freemind-plugins-help | 0.9.0+dfsg-2 | - +- all | freemind-plugins-script | 0.9.0+dfsg-2 | - +- all | freemind-plugins-svg | 0.9.0+dfsg-2 | - +- all | freepats | 20060219-1 | - +- all | freeplane | 1.1.3-2 | - +- all | freeplayer | 20070531+dfsg.1-3 | - +- all | freepops-doc | 0.2.9-7 | - +- all | freepwing | 1.5-1 | - +- all | freeradius-common | 2.1.12+dfsg-1.2 | - +- all | freeradius-dialupadmin | 2.1.12+dfsg-1.2 | - +- all | freesci-doc | 0.6.4-7 | - +- all | freespeak | 0.3.0-5 | - +- all | freetable | 2.3-4 | - +- all | freetds-common | 0.91-2+deb7u1 | - +- all | freetennis-common | 0.4.8-9 | - +- all | freetts | 1.2.2-3 | - +- all | freevial | 1.3-2 | - +- all | freevo | 1.9.2b2-4.2 | - +- all | freevo-data | 1.9.2b2-4.2 | - +- all | freevo-doc | 1.9.2b2-4.2 | - +- all | freevo-lirc | 1.9.2b2-4.2 | - +- all | freewnn-common | 1.1.1~a021+cvs20100325-6 | - +- all | frei0r-plugins-doc | 1.1.22git20091109-1.2 | - +- all | frescobaldi | 2.0.5+ds1-1 | - +- all | fretsonfire | 1.3.110.dfsg-3 | - +- all | fretsonfire-game | 1.3.110.dfsg-3 | - +- all | fretsonfire-songs-muldjord | 2.dfsg-1 | - +- all | fretsonfire-songs-sectoid | 1.dfsg-2 | - +- all | fritzing-data | 0.6.3b+dfsg-3.1 | - +- all | frogdata | 0.3-2 | - +- all | frogr-data | 0.7-2 | - +- all | frontaccounting | 2.2.10-3.1 | - +- all | frown-doc | 0.6.1-13 | - +- all | frozen-bubble-data | 2.212-3 | - ++ all | fs-uae-launcher | - | 2.2.3+dfsg-4~bpo70+1 ++ all | fs-uae-netplay-server | - | 2.2.3+dfsg-4~bpo70+1 +- all | fslint | 2.42-2 | - +- all | fso-frameworkd | 0.9.5.9+git20110512-4 | - +- all | fso-sounds-yue-base | 20081031-2 | - +- all | fso-sounds-yue-full | 20081031-2 | - +- all | fso-specs | 2012.05.24.1-1 | - +- all | fsprotect | 1.0.6 | - +- all | fsviewer-icons | 1.0-6 | - +- all | fte-docs | 0.50.2b6-1 | - +- all | ftgl-dev | 2.1.3~rc5-4 | - +- all | ftp-proxy-doc | 1.9.2.4-8 | - +- all | ftp-upload | 1.5 | - +- all | ftphs-doc | 1:8 | - +- all | ftpwatch | 1.21 | - +- all | fts | 1.1-1.1 | - +- all | fts-clacks | 1.1-1.1 | - +- all | fts-fai-ldap | 1.1-1.1 | - +- all | fts-ltsp-ldap | 1.1-1.1 | - +- all | fts-opsi | 1.1-1.1 | - +- all | funcoeszz | 8.3-2 | - +- all | funkload | 1.13.0-1.1 | - +- all | funnelweb-doc | 3.2d-3 | - +- all | funny-manpages | 1.3-5 | - +- all | funnyboat | 1.5-8 | - +- all | furiusisomount | 0.11.3.1~repack1-0.1 | - +- all | fuse-emulator-common | 1.0.0.1a+dfsg1-4 | - +- all | fuse-utils | 2.9.0-2+deb7u1 | - +- all | fuse4bsd-dkms | 0.3.9~pre1.20080208-4 | - +- all | fusil | 1.4-1 | - +- all | fuss-launcher | 0.5-1 | - +- all | fuzzyocr | 3.6.0-7 | - +- all | fvwm-crystal | 3.0.5.dfsg-5 | - +- all | fvwm-icons | 20070101-1 | - +- all | fwanalog | 0.6.9-6.2 | - +- all | fwbuilder-common | 5.1.0-3 | - +- all | fwbuilder-doc | 5.1.0-3 | - +- all | fweb-doc | 1.62-11.1 | - +- all | fwsnort | 1.6.2-1 | - +- all | g++-mingw-w64 | 4.6.3-14+8 | - +- all | g-wrap | 1.9.14-1.1 | - +- all | g2p-sk | 0.4.2-1 | - +- all | gadfly | 1.0.0-15.1 | - +- all | gadmin-tools | 10 | - +- all | gadmintools | 10 | - +- all | gaduhistory | 0.5-2 | - +- all | gaim-extendedprefs | 0.7-2 | - +- all | gaim-hotkeys | 0.2.4-1.2 | - +- all | gaim-librvp | 0.9.5-3 | - +- all | gaim-themes | 0.2-1 | - +- all | gaim-thinklight | 0.11.1-1 | - +- all | gajim | 0.15.1-4.1 | - +- all | galax-doc | 1.1-10 | - +- all | gallery | 1.5.10.dfsg-1.1 | - +- all | gallery-uploader | 2.4-1 | - +- all | galternatives | 0.13.5+nmu2 | - +- all | gambas3 | 3.1.1-2 | - +- all | gambas3-examples | 3.1.1-2 | - +- all | gambas3-gb-chart | 3.1.1-2 | - +- all | gambas3-gb-db-form | 3.1.1-2 | - +- all | gambas3-gb-eval-highlight | 3.1.1-2 | - +- all | gambas3-gb-form | 3.1.1-2 | - +- all | gambas3-gb-form-dialog | 3.1.1-2 | - +- all | gambas3-gb-form-mdi | 3.1.1-2 | - +- all | gambas3-gb-form-stock | 3.1.1-2 | - +- all | gambas3-gb-report | 3.1.1-2 | - +- all | gambas3-gb-settings | 3.1.1-2 | - +- all | gambas3-gb-web | 3.1.1-2 | - +- all | gambas3-ide | 3.1.1-2 | - +- all | gambc-doc | 4.2.8-1.1 | - +- all | gameclock | 4.0-3 | - +- all | gameconqueror | 0.12-2 | - +- all | gamera-doc | 3.3.3-2 | - +- all | gamera-gui | 3.3.3-2 | - +- all | games-thumbnails | 20120227 | - +- all | gamgi-data | 0.15.8-1 | - +- all | gamgi-doc | 0.15.8-1 | - +- all | gamine-data | 1.1-2 | - +- all | gammu-doc | 1.31.90-1 | - ++ all | ganeti | - | 2.9.4-1~bpo70+1 ++ all | ganeti-doc | - | 2.9.4-1~bpo70+1 +! all | ganeti-instance-debootstrap | 0.11-1 | 0.14-1~bpo70+1 +! all | ganeti2 | 2.5.2-1 | 2.9.4-1~bpo70+1 +- all | ganglia-monitor-python | 3.3.8-1+nmu1 | - +- all | ganglia-webfrontend | 3.3.8-1+nmu1 | - +- all | gant | 1.9.7-1 | - +- all | ganyremote | 5.13-1 | - +- all | gap | 4r4p12-2 | - +- all | gap-character-tables | 1r1p3-5 | - +- all | gap-doc | 4r4p12-2 | - +- all | gap-libs | 4r4p12-2 | - +- all | gap-online-help | 4r4p12-2 | - +- all | gap-prim-groups | 4r4p10-1 | - +- all | gap-small-groups | 4r4p10-1 | - +- all | gap-small-groups-extra | 4r4p10-1 | - +- all | gap-table-of-marks | 1r1p4-1 | - +- all | gap-trans-groups | 4r4p10-1 | - +- all | gaphor | 0.17.0-1 | - +- all | garden-of-coloured-lights-data | 1.0.8-1 | - +- all | garlic-doc | 1.6-1 | - +- all | gastables | 0.3-2 | - +- all | gauche-doc | 0.9.1-5.1 | - +- all | gaupol | 0.19.2-1 | - +- all | gausssum | 2.2.5-2 | - +- all | gav-themes | 0.7.3-2 | - +- all | gbackground | 1.3-1 | - +- all | gbirthday | 0.6.6-2 | - +- all | gbonds-data | 2.0.3-2.1 | - +- all | gbrainy | 1:2.1.2-1 | - +- all | gbrowse | 2.48~dfsg-1 | - +- all | gbrowse-data | 2.48~dfsg-1 | - +- all | gcal-common | 3.6.1-2 | - +- all | gcalcli | 2.1-2 | - +- all | gcap | 0.1.1-1 | - +- all | gcc-4.4-locales | 4.4.7-2 | - +- all | gcc-4.4-source | 4.4.7-2 | - +- all | gcc-4.6-locales | 4.6.3-14 | - +- all | gcc-4.6-source | 4.6.3-14 | - +- all | gcc-4.7-locales | 4.7.2-5 | - +- all | gcc-4.7-source | 4.7.2-5 | - +- all | gcc-mingw-w64 | 4.6.3-14+8 | - +- all | gcc-mingw32 | 4.6.3-14+8 | - +- all | gcin-data | 2.7.6.1+dfsg-1 | - +- all | gcin-dev | 2.7.6.1+dfsg-1 | - +- all | gcipher | 1.1-1 | - +- all | gcj-4.6-jre-lib | 4.6.3-1 | - +- all | gcj-4.6-source | 4.6.3-1 | - +- all | gcj-4.7-jre-lib | 4.7.2-3 | - +- all | gcj-4.7-source | 4.7.2-3 | - +- all | gcl-doc | 2.6.7+dfsga-1 | - +- all | gco | 0.5.0-6 | - +- all | gcom | 0.32-2 | - +- all | gcompris-data | 12.01-1 | - +- all | gcompris-sound-af | 12.01-1 | - +- all | gcompris-sound-ar | 12.01-1 | - +- all | gcompris-sound-ast | 12.01-1 | - +- all | gcompris-sound-bg | 12.01-1 | - +- all | gcompris-sound-br | 12.01-1 | - +- all | gcompris-sound-cs | 12.01-1 | - +- all | gcompris-sound-da | 12.01-1 | - +- all | gcompris-sound-de | 12.01-1 | - +- all | gcompris-sound-el | 12.01-1 | - +- all | gcompris-sound-en | 12.01-1 | - +- all | gcompris-sound-eo | 12.01-1 | - +- all | gcompris-sound-es | 12.01-1 | - +- all | gcompris-sound-eu | 12.01-1 | - +- all | gcompris-sound-fi | 12.01-1 | - +- all | gcompris-sound-fr | 12.01-1 | - +- all | gcompris-sound-he | 12.01-1 | - +- all | gcompris-sound-hi | 12.01-1 | - +- all | gcompris-sound-hu | 12.01-1 | - +- all | gcompris-sound-id | 12.01-1 | - +- all | gcompris-sound-it | 12.01-1 | - +- all | gcompris-sound-mr | 12.01-1 | - +- all | gcompris-sound-nb | 12.01-1 | - +- all | gcompris-sound-nl | 12.01-1 | - +- all | gcompris-sound-nn | 12.01-1 | - +- all | gcompris-sound-pa | 12.01-1 | - +- all | gcompris-sound-pt | 12.01-1 | - +- all | gcompris-sound-ptbr | 12.01-1 | - +- all | gcompris-sound-ru | 12.01-1 | - +- all | gcompris-sound-sl | 12.01-1 | - +- all | gcompris-sound-so | 12.01-1 | - +- all | gcompris-sound-sr | 12.01-1 | - +- all | gcompris-sound-sv | 12.01-1 | - +- all | gcompris-sound-th | 12.01-1 | - +- all | gcompris-sound-tr | 12.01-1 | - +- all | gcompris-sound-ur | 12.01-1 | - +- all | gcompris-sound-zhcn | 12.01-1 | - +- all | gconf2-common | 3.2.5-1+build1 | - +- all | gcp | 0.1.3-2 | - +- all | gcstar | 1.6.2-1 | - +- all | gdb-mingw-w64-target | 7.4.1-1.1+5 | - +- all | gdb-source | 7.4.1+dfsg-0.1 | - +- all | gdcm-doc | 2.2.0-14.1 | - +- all | gdebi | 0.8.7 | - +- all | gdebi-core | 0.8.7 | - +- all | gdebi-kde | 0.8.7 | - +- all | gdeskcal | 0.57.1-2.1 | - +- all | gdevilspie | 1:0.5-2 | - +- all | gdis-data | 0.90-4 | - +- all | gdpc-examples | 2.2.5-2 | - +- all | geant321 | 1:3.21.14.dfsg-10 | - +- all | geant321-data | 1:3.21.14.dfsg-10 | - +- all | geant321-doc | 1:3.21.14.dfsg-10 | - +- all | geany-common | 1.22+dfsg-2 | - +- all | geany-plugins | 0.21.1.dfsg-4 | - +- all | geany-plugins-common | 0.21.1.dfsg-4 | - +- all | gearhead-data | 1.100-2 | - +- all | gearhead2-data | 0.628-1 | - +- all | gearman | 0.33-2 | - +- all | gearman-server | 1.11-2 | - +- all | gecrit | 2.8.3-1 | - +- all | geda | 1:1.6.2-4.3 | - +- all | geda-doc | 1:1.6.2-4.3 | - +- all | geda-examples | 1:1.6.2-4.3 | - +- all | geda-symbols | 1:1.6.2-4.3 | - +- all | geda-xgsch2pcb | 0.1.3-2 | - +- all | gedit-common | 3.4.2-1 | - +- all | gedit-dev | 3.4.2-1 | - +- all | gedit-latex-plugin | 3.4.0-1 | - +- all | gedit-r-plugin | 0.7.1.2-Gtk3-1 | - +- all | gedit-source-code-browser-plugin | 3.0.3-2 | - +- all | geeqie-common | 1:1.0-10.1 | - +- all | geiser | 0.1.4-2 | - +- all | gem-dev | 1:0.93.3-5 | - +- all | gem-doc | 1:0.93.3-5 | - +- all | gem2deb | 0.3.0 | - +- all | genbackupdata | 1.6-1 | - +- all | gendarme | 2.10-6 | - +- all | geogebra | 4.0.34.0+dfsg1-1 | - +- all | geogebra-gnome | 4.0.34.0+dfsg1-1 | - +! all | geoip-database | 20130213-1 | 20131007-1~bpo70+1 +- all | geotranz | 3.1-2.1 | - +- all | geotranz-doc | 3.1-2.1 | - +- all | geotranz-help | 3.1-2.1 | - +- all | germinate | 2.10 | - +- all | gespeaker | 0.7-3 | - +- all | get-flash-videos | 1.25~git2012.06.27-1 | - +- all | get-iplayer | 2.82-2+deb7u1 | - +- all | getdata | 0.1-1 | - +- all | getmail4 | 4.32.0-2 | - +! all | gettext-doc | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | gettext-el | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- all | gettext-lint | 0.4-2 | - +- all | geximon | 0.7.7-2 | - +- all | gextractwinicons | 0.3.1-1 | - +- all | gfarm-doc | 2.4.1-1.1 | - +- all | gfax | 0.7.7+ds-2 | - +- all | gff2ps | 0.98d-4 | - +- all | gforth-common | 0.7.0+ds2-0.1 | - +- all | gfortran-mingw-w64 | 4.6.3-14+8 | - +- all | gftp | 2.0.19-4 | - +- all | gfxboot-examples | 4.5.0-67.1-3 | - +- all | gfxboot-themes-kde | 4.5.0-67.1-2 | - +- all | gfxboot-themes-opensuse | 4.5.0-67.1-2 | - +- all | gfxboot-themes-sled | 4.5.0-67.1-2 | - +- all | gfxboot-themes-sles | 4.5.0-67.1-2 | - +- all | gfxboot-themes-upstream | 4.5.0-67.1-2 | - +- all | ghc-doc | 7.4.1-4 | - +- all | ghc6 | 7.4.1-4 | - +- all | ghc6-doc | 7.4.1-4 | - +- all | ghc6-prof | 7.4.1-4 | - +- all | ghextris | 0.9.0-3 | - +- all | ghostscript-doc | 9.05~dfsg-6.3+deb7u1 | - +- all | gimp-data | 2.8.2-2+deb7u1 | - +- all | gimp-data-extras | 1:2.0.1-3 | - +- all | gimp-help-common | 2.6.1-1 | - +- all | gimp-help-de | 2.6.1-1 | - +- all | gimp-help-en | 2.6.1-1 | - +- all | gimp-help-es | 2.6.1-1 | - +- all | gimp-help-fr | 2.6.1-1 | - +- all | gimp-help-it | 2.6.1-1 | - +- all | gimp-help-ko | 2.6.1-1 | - +- all | gimp-help-nl | 2.6.1-1 | - +- all | gimp-help-nn | 2.6.1-1 | - +- all | gimp-help-pl | 2.6.1-1 | - +- all | gimp-help-ru | 2.6.1-1 | - +- all | gimp-help-sv | 2.6.1-1 | - +- all | gimp-resynthesizer | 0.16-3 | - +- all | ginspector | 20050529-3.1 | - +- all | gir1.2-gupnp-dlna-1.0 | 0.6.6-1 | - +- all | gis-data | 0.0.2 | - +- all | gis-gps | 0.0.2 | - +- all | gis-osm | 0.0.2 | - +- all | gis-remotesensing | 0.0.2 | - +- all | gis-statistics | 0.0.2 | - +- all | gis-tasks | 0.0.2 | - +- all | gis-web | 0.0.2 | - +- all | gis-workstation | 0.0.2 | - +! all | git-all | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-arch | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-buildpackage | 0.6.0~git20120601 | 0.6.1~bpo70+1 ++ all | git-bzr | - | 1:1.8.5.3-1~bpo70+1 +- all | git-cola | 1.4.3.5-1 | - +! all | git-core | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-cvs | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-daemon-run | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-daemon-sysvinit | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-doc | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +- all | git-dpm | 0.8.4-1 | - +! all | git-el | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-email | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +- all | git-extras | 1.7.0-1.2 | - +- all | git-flow | 0.4.1-2 | - +- all | git-ftp | 0.7.4+git20120528-1 | - +! all | git-gui | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-man | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 ++ all | git-mediawiki | - | 1:1.8.5.3-1~bpo70+1 ++ all | git-remote-gcrypt | - | 0.20130908-5~bpo70+1 +- all | git-review | 1.17-1 | - +- all | git-sh | 1.1-1 | - +- all | git-stuff | 11-1 | - +! all | git-svn | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +- all | git2cl | 2.0+git200808271242-1 | - +- all | github-cli | 1.0.0-1+nmu1 | - +! all | gitk | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +- all | gitmagic | 20120520-2 | - +- all | gitolite | 2.3-1 | - ++ all | gitolite3 | - | 3.5.2-1~bpo70+1 +- all | gitpkg | 0.23 | - +- all | gitstats | 2012.05.28-1 | - +! all | gitweb | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +- all | giws | 2.0.0-1 | - +- all | giws-doc | 2.0.0-1 | - +- all | gjots2 | 2.3.15-1 | - +- all | gl-117-data | 1.3.2-2.1 | - +- all | glabels-data | 3.0.0-3 | - +- all | glance | 2012.1.1-5 | - +- all | glance-api | 2012.1.1-5 | - +- all | glance-common | 2012.1.1-5 | - +- all | glance-registry | 2012.1.1-5 | - +- all | glark | 1.8.0-1 | - +- all | glassfish-activation | 1:2.1.1-b31g-3 | - +- all | glassfish-appserv | 1:2.1.1-b31g-3 | - +- all | glassfish-javaee | 1:2.1.1-b31g-3 | - +- all | glassfish-jmac-api | 1:2.1.1-b31g-3 | - +- all | glassfish-mail | 1:2.1.1-b31g-3 | - +- all | glassfish-toplink-essentials | 1:2.1.1-b31g-3 | - +- all | gle-doc | 3.1.0-7 | - +- all | glest | 3.6.0.3-1.2 | - +- all | glest-data | 3.6.0.3-1 | - +- all | glib-networking-common | 2.32.3-1 | - +- all | glibc-doc | 2.13-38+deb7u1 | - +- all | glipper | 2.3-3.1 | - +- all | glob2-data | 0.9.4.4-2.1 | - +- all | globus-gram-audit | 3.1-3 | - +- all | globus-gram-job-manager-condor | 1.3-1 | - +- all | globus-gram-job-manager-doc | 13.33-1 | - +- all | globus-gram-job-manager-fork | 1.5-1 | - +- all | globus-gram-job-manager-fork-setup-poll | 1.5-1 | - +- all | globus-gram-job-manager-pbs | 1.5-1 | - +- all | globus-gram-job-manager-pbs-setup-poll | 1.5-1 | - +- all | globus-gram-job-manager-scripts | 4.2-2 | - +- all | globus-gram-job-manager-scripts-doc | 4.2-2 | - +- all | globus-gram-job-manager-sge | 1.5-1 | - +- all | globus-gram-job-manager-sge-setup-poll | 1.5-1 | - +- all | globus-simple-ca | 3.0-2 | - +- all | glpeces-data | 5.0-2 | - +- all | glpi | 0.83.31-1 | - +- all | glpk-doc | 4.45-1 | - +- all | glue-schema | 2.0.8-1 | - +- all | glue-sprite | 0.2.5-3 | - +- all | glusterfs-examples | 3.2.7-3+deb7u1 | - +- all | gmail-notify | 1.6.1.1-2 | - +- all | gmerlin-data | 1.2.0~dfsg+1-1 | - +- all | gmobilemedia | 0.4+dfsg-13 | - +- all | gmpc-data | 11.8.16-6 | - ++ all | gmsh-doc | - | 2.7.0.dfsg-1~bpo70+1 +- all | gmt-coast-low | 1:2.1.1-1 | - +- all | gmt-doc | 4.5.7-2 | - +- all | gmt-doc-pdf | 4.5.7-2 | - +- all | gmt-doc-ps | 3.4.4-1 | - +- all | gmt-examples | 4.5.7-2 | - +- all | gmt-gshhs-full | 2.2.0-2 | - +- all | gmt-gshhs-high | 2.2.0-2 | - +- all | gmt-gshhs-low | 2.2.0-2 | - +- all | gmt-manpages | 3.4.4-1 | - +- all | gmt-tutorial | 3.4-1.1 | - +- all | gmt-tutorial-pdf | 4.5.7-2 | - +- all | gmt-tutorial-ps | 3.4.4-1 | - +- all | gmtkbabel | 0.1-1 | - +- all | gmusicbrowser | 1.1.9-2 | - +! all | gnash-common-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnash-doc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnash-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- all | gnat-gps-common | 5.0-13 | - +- all | gnat-gps-doc | 5.0-13 | - +- all | gnat-mingw-w64 | 4.6.3-14+8 | - +- all | gnokii | 0.6.30+dfsg-1 | - +- all | gnokii-common | 0.6.30+dfsg-1 | - +- all | gnome-accessibility-themes | 3.4.2-2.1 | - +- all | gnome-activity-journal | 0.8.0-2 | - +- all | gnome-api-docs | 1:3.4+7+deb7u1 | - +- all | gnome-applets-data | 3.4.1-3 | - +- all | gnome-audio | 2.22.2-1 | - +- all | gnome-backgrounds | 3.4.2-1 | - +- all | gnome-blog | 0.9.1-5 | - +- all | gnome-brave-icon-theme | 5.5.1-1 | - +- all | gnome-btdownload | 0.0.32-4 | - +- all | gnome-cards-data | 1:3.4.1-1 | - +- all | gnome-codec-install | 0.4.7+nmu1 | - +- all | gnome-colors | 5.5.1-1 | - +- all | gnome-colors-common | 5.5.1-1 | - +- all | gnome-commander-data | 1.2.8.15-3 | - +- all | gnome-common | 3.4.0.1-1 | - +- all | gnome-control-center-data | 1:3.4.3.1-2 | - +- all | gnome-control-center-dev | 1:3.4.3.1-2 | - +- all | gnome-desktop-data | 2.32.1-2 | - +- all | gnome-desktop-environment | 1:3.4+7+deb7u1 | - +- all | gnome-desktop-sharp2 | 2.26.0-8 | - +- all | gnome-desktop3-data | 3.4.2-1 | - +- all | gnome-devel | 1:3.4+7+deb7u1 | - +- all | gnome-devel-docs | 3.4.1-1 | - +- all | gnome-do-plugins | 0.8.4-5 | - +- all | gnome-doc-utils | 0.20.10-1 | - +- all | gnome-dust-icon-theme | 5.5.1-1 | - +- all | gnome-dvb-client | 1:0.2.8-1 | - +- all | gnome-extra-icons | 1.1-2 | - +- all | gnome-games | 1:3.4.2-3 | - +- all | gnome-games-data | 1:3.4.2-3 | - +- all | gnome-games-extra-data | 3.2.0-4 | - +- all | gnome-gmail | 1.8.2-1 | - +- all | gnome-human-icon-theme | 5.5.1-1 | - +- all | gnome-icon-theme | 3.4.0-2 | - +- all | gnome-icon-theme-extras | 3.4.0-1 | - +- all | gnome-icon-theme-gartoon | 0.5-4 | - +- all | gnome-icon-theme-nuovo | 0.5-4.1 | - +- all | gnome-icon-theme-suede | 0.2.5-1 | - +- all | gnome-icon-theme-symbolic | 3.4.0-2 | - +- all | gnome-icon-theme-yasis | 0.4.2-1 | - +- all | gnome-illustrious-icon-theme | 5.5.1-1 | - +- all | gnome-js-common | 0.1.2-1 | - +- all | gnome-mime-data | 2.18.0-1 | - +- all | gnome-noble-icon-theme | 5.5.1-1 | - +- all | gnome-orca | 3.4.2-2 | - +- all | gnome-osd | 0.12.2-1.1 | - +- all | gnome-packagekit-data | 3.4.2-2 | - +- all | gnome-panel-data | 3.4.2.1-4 | - +- all | gnome-pkg-tools | 0.19.3 | - +- all | gnome-rdp | 0.3.0.9-3 | - +- all | gnome-schedule | 2.1.1-4 | - +- all | gnome-screensaver-flags | 0.1-1 | - +- all | gnome-session | 3.4.2.1-4 | - +- all | gnome-session-common | 3.4.2.1-4 | - +- all | gnome-session-fallback | 3.4.2.1-4 | - +- all | gnome-sharp2 | 2.24.2-3 | - +- all | gnome-sharp2-examples | 2.24.2-3 | - +- all | gnome-shell-common | 3.4.2-7+deb7u1 | - ++ all | gnome-shell-extension-weather | - | 0~20130619.gitf74de79-2~bpo70+1 +- all | gnome-shell-extensions | 3.4.0-2 | - +- all | gnome-shell-timer | 0.0.20120615+gitbde3fd2-1 | - +- all | gnome-specimen | 0.4-8 | - +- all | gnome-split | 1.1-1 | - +- all | gnome-sudoku | 1:3.4.2-3 | - +- all | gnome-terminal-data | 3.4.1.1-2 | - +- all | gnome-theme-gilouche | 11.1.2-2 | - +- all | gnome-themes | 2.30.2-1 | - +- all | gnome-themes-extras | 2.22.0-3 | - +- all | gnome-themes-standard-data | 3.4.2-2.1 | - +- all | gnome-tweak-tool | 3.4.0.1-2 | - +- all | gnome-user-guide | 3.4.2-1+build1 | - +- all | gnome-video-effects | 0.4.0-1 | - +- all | gnome-video-effects-dev | 0.4.0-1 | - +- all | gnome-video-effects-frei0r | 0.4.0-1 | - +- all | gnome-wine-icon-theme | 5.5.1-1 | - +- all | gnome-wise-icon-theme | 5.5.1-1 | - +- all | gnomecatalog | 0.3.4.2-1 | - +- all | gnu-smalltalk-common | 3.2.4-2 | - +- all | gnu-smalltalk-doc | 3.2.4-2 | - +- all | gnu-smalltalk-el | 3.2.4-2 | - +- all | gnu-standards | 2010.03.11-1 | - +- all | gnubg-data | 0.90+20120429-1 | - +- all | gnucash-common | 1:2.4.10-6 | - +- all | gnucash-docs | 2.4.1-3 | - +- all | gnuchess-book | 1.02-1 | - +- all | gnuhtml2latex | 0.4-2 | - +- all | gnuift-doc | 0.1.14-12 | - +- all | gnuift-perl | 0.1.14-12 | - +- all | gnujump-data | 1.0.6-4 | - +- all | gnulib | 20120404+stable-1 | - +- all | gnumach-common | 2:1.3.99.dfsg.git20120610-1 | - +- all | gnumed-client | 1.1.17+dfsg-1 | - +- all | gnumed-client-de | 1.1.17+dfsg-1 | - +- all | gnumed-common | 1.1.17+dfsg-1 | - +- all | gnumed-doc | 1.1.17+dfsg-1 | - +- all | gnumed-server | 16.17-1 | - +- all | gnumeric-common | 1.10.17-1.1 | - +- all | gnumeric-doc | 1.10.17-1.1 | - +- all | gnunet | 0.9.3-7 | - +- all | gnupg-doc | 2003.04.06+dak1-1 | - +! all | gnuplot | 4.6.0-8 | 4.6.4-1~bpo70+1 +! all | gnuplot-doc | 4.6.0-8 | 4.6.4-1~bpo70+1 +- all | gnuplot-mode | 1:0.6.0-8 | - +- all | gnupod-tools | 0.99.8-2.1 | - +! all | gnuradio-doc | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +- all | gnus-bonus-el | 35.2+nmu1 | - +- all | gnustep | 7.7 | - +- all | gnustep-back-common | 0.20.1-2.1 | - +- all | gnustep-back0.20 | 0.20.1-2.1 | - +- all | gnustep-base-common | 1.22.1-4 | - +- all | gnustep-base-doc | 1.22.1-4 | - +- all | gnustep-base-examples | 1.22.1-4 | - +- all | gnustep-core-devel | 7.7 | - +- all | gnustep-core-doc | 7.7 | - +- all | gnustep-devel | 7.7 | - +- all | gnustep-games | 7.7 | - +- all | gnustep-gui-common | 0.20.0-3 | - +- all | gnustep-gui-doc | 0.20.0-3 | - +- all | gnustep-icons | 1.0-5 | - +- all | gnustep-make | 2.6.2-2 | - +- all | gnustep-make-doc | 2.6.2-2 | - ++ all | gnutls-doc | - | 3.2.10-2~bpo70+3 +- all | gnutls26-doc | 2.12.20-7 | - +- all | go2 | 1.20120217-1 | - +- all | goban-original-games | 1.1-2 | - +- all | gobby | 0.4.13-2 | - +- all | gobby-infinote | 0.4.94-5 | - +- all | gobjc++-mingw-w64 | 4.6.3-14+8 | - +- all | gobjc-mingw-w64 | 4.6.3-14+8 | - +- all | goby | 1.1-1 | - +- all | gocr-tk | 0.49-1 | - +- all | golang | 2:1.0.2-1.1 | - +- all | golang-doc | 2:1.0.2-1.1 | - +- all | golang-mode | 2:1.0.2-1.1 | - +- all | goldendict-wordnet | 1:3.0-29 | - +- all | google-perftools | 2.0-2 | - +- all | google-sitemapgen | 1.5-3 | - +- all | googlefontdirectory-tools | 20120309.1-1 | - +- all | gosa | 2.7.4-4.3~deb7u1 | - +- all | gosa-desktop | 2.7.4-4.3~deb7u1 | - +- all | gosa-dev | 2.7.4-4.3~deb7u1 | - +- all | gosa-help-de | 2.7.4-4.3~deb7u1 | - +- all | gosa-help-en | 2.7.4-4.3~deb7u1 | - +- all | gosa-help-fr | 2.7.4-4.3~deb7u1 | - +- all | gosa-help-nl | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-connectivity | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-dhcp | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-dhcp-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-dns | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-dns-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-fai | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-fai-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-gofax | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-gofon | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-goto | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-kolab | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-kolab-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-ldapmanager | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-mail | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-mit-krb5 | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-mit-krb5-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-nagios | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-nagios-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-netatalk | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-opengroupware | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-openxchange | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-openxchange-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-opsi | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-phpgw | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-phpgw-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-phpscheduleit | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-phpscheduleit-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-pptp | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-pptp-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-pureftpd | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-pureftpd-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-rolemanagement | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-rsyslog | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-samba | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-scalix | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-squid | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-ssh | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-ssh-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-sudo | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-sudo-schema | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-systems | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-uw-imap | 2.7.4-4.3~deb7u1 | - +- all | gosa-plugin-webdav | 2.7.4-4.3~deb7u1 | - +- all | gosa-schema | 2.7.4-4.3~deb7u1 | - +- all | gotmail | 0.9.0-1 | - +- all | goto-common | 3.1-1 | - +- all | goto-fai | 3.1-1 | - +- all | goto-fai-backend | 3.0-1.1 | - +- all | goto-fai-progress | 3.0-1 | - +- all | gourmet | 0.15.9-1 | - +- all | gozerbot | 0.99.1-2 | - +- all | gozerbot-plugins | 0.9.1.2-4 | - +- all | gpe | 0.2.9-1.1 | - +- all | gpe-icons | 0.25-1 | - +- all | gperf-ace | 6.0.3+dfsg-0.1 | - +- all | gpgv-win32 | 1.4.12-7+deb7u3 | - +- all | gpodder | 2.20.1-1 | - +- all | gprbuild-doc | 2011-2 | - +- all | gprename | 2.6.6-1 | - +- all | gprolog-doc | 1.3.0-6.1 | - +- all | gpsbabel-doc | 1.4.3-1 | - +- all | gpsim-doc | 0.22.0-2 | - +- all | gpsman | 6.4.3-1 | - +- all | gpsprune | 13.4-1 | - +- all | gputils-common | 0.13.7-1 | - +- all | gputils-doc | 0.13.7-1 | - +- all | gpxviewer | 0.4.3-1 | - +- all | gquilt | 0.25-2 | - +- all | gqview | 1:1.0-10.1 | - +- all | gqview-dbg | 1:1.0-10.1 | - +- all | gramadoir | 0.6-4.1 | - +- all | gramps | 3.4.0-1 | - +- all | graph-includes | 0.13-1.1 | - +- all | graphicsmagick-imagemagick-compat | 1.3.16-1.1 | - +- all | graphicsmagick-libmagick-dev-compat | 1.3.16-1.1 | - +- all | graphite-carbon | 0.9.10-3 | - +- all | graphmonkey | 1.7-3 | - +- all | graphviz-dev | 2.26.3-14+deb7u1 | - +- all | graphviz-doc | 2.26.3-14+deb7u1 | - +- all | grass | 6.4.2-2 | - +- all | grass-dev-doc | 6.4.2-2 | - +- all | grass-doc | 6.4.2-2 | - +- all | grc | 1.4 | - +- all | greenwich | 0.8.2-6 | - +- all | gregoriotex | 2.0-1.2 | - +- all | grepmail | 5.3033-5 | - +- all | gretl-common | 1.9.9-1 | - +- all | gretl-data | 1.9.9-1 | - +- all | gretl-doc | 1.9.9-1 | - +- all | greylistd | 0.8.8 | - +- all | grhino-data | 0.16.1-2 | - +- all | gri-el | 2.12.23-2.2 | - +- all | gri-html-doc | 2.12.23-2.2 | - +- all | gri-pdf-doc | 2.12.23-2.2 | - +- all | grid-packaging-tools | 3.6.2-1 | - +- all | gridengine-common | 6.2u5-7.1 | - +- all | gridsite-doc | 1.7.16-1 | - +- all | griffith | 0.13-3 | - +- all | grinder | 0.4.5-1 | - +- all | grisbi-common | 0.8.9-1 | - +- all | grml-debootstrap | 0.54 | - +- all | grml-rescueboot | 0.4.2 | - +- all | grokevt | 0.4.1-7 | - +- all | gromacs-data | 4.5.5-2 | - +- all | groovy | 1.8.6-1 | - +- all | groovy-doc | 1.8.6-1 | - +- all | grub-choose-default | 0.2-6 | - +- all | grub-disk | 0.97-67 | - +- all | grub-doc | 0.97-67 | - +- all | grub-imageboot | 0.6 | - +- all | grub-legacy-doc | 0.97-67 | - +- all | grub-splashimages | 1.2.3 | - +- all | grub2-splashimages | 1.0.1+nmu1 | - +- all | gsalliere | 0.10-1 | - +- all | gscan2pdf | 1.0.4-5 | - +- all | gsettings-desktop-schemas | 3.4.2-3 | - +- all | gsfonts | 1:8.11+urwcyr1.0.7~pre44-4.2 | - +- all | gsfonts-x11 | 0.22 | - +- all | gshare | 0.94-12 | - +- all | gsoap-doc | 2.8.7-2 | - +- all | gss-doc | 1.0.2-1 | - +- all | gss-man | 1.0.2-1 | - +- all | gstreamer0.10-buzztard-doc | 0.5.0-2+deb7u1 | - +- all | gstreamer0.10-doc | 0.10.36-1.2 | - +- all | gstreamer0.10-gnonlin-doc | 0.10.17-2 | - +- all | gstreamer0.10-plugins-bad-doc | 0.10.23-7.1 | - +- all | gstreamer0.10-plugins-base-doc | 0.10.36-1.1 | - +- all | gstreamer0.10-plugins-good-doc | 0.10.31-3+nmu1 | - +- all | gstreamer0.10-plugins-ugly-doc | 0.10.19-2 | - ++ all | gstreamer1.0-doc | - | 1.0.8-1~bpo70+1 ++ all | gstreamer1.0-plugins-bad-doc | - | 1.0.8-1~bpo70+1 ++ all | gstreamer1.0-plugins-base-doc | - | 1.0.8-1~bpo70+1 ++ all | gstreamer1.0-plugins-good-doc | - | 1.0.8-1~bpo70+1 ++ all | gstreamer1.0-plugins-ugly-doc | - | 1.0.8-1~bpo70+1 +- all | gsutil | 3.1-1 | - +- all | gt5 | 1.5.0~20111220+bzr29-1 | - +- all | gtg | 0.2.9-1 | - +- all | gthumb-data | 3:3.0.1-2 | - +- all | gtk-doc-tools | 1.18-2 | - +- all | gtk-recordmydesktop | 0.3.8-4.1 | - +- all | gtk-redshift | 1.7-2 | - +- all | gtk-sharp2 | 2.12.10-5 | - +- all | gtk-sharp2-examples | 2.12.10-5 | - +- all | gtk-smooth-themes | 0.5.8-2.3 | - +- all | gtkhash-common | 0.6.0-4 | - +- all | gtklick | 0.6.4-3 | - +- all | gtkmm-documentation | 3.4.0-3 | - +- all | gtkmorph-example | 1:20090926 | - +- all | gtkorphan | 0.4.4-1.1 | - +- all | gtkpod-data | 2.1.2-1 | - +- all | gtkvncviewer | 0.4-2.2 | - +- all | gtml | 3.5.4-7 | - +- all | guacamole | 0.6.0-1 | - +- all | guacamole-tomcat | 0.6.0-1 | - +- all | gufw | 12.10.0-1 | - +- all | gui-apt-key | 0.4-2 | - +- all | guile-1.6-doc | 1.6.8-10.3 | - +- all | guile-1.6-slib | 1.6.8-10.3 | - +- all | guile-1.8-doc | 1.8.8+1-8 | - +- all | guile-2.0-doc | 2.0.5+1-3 | - +- all | guile-library | 0.2.1-1 | - +- all | guilt | 0.35-1.1 | - +- all | gunicorn | 0.14.5-3+deb7u1 | - +- all | gunroar-data | 0.15.dfsg1-5 | - +- all | gurgitate-mail | 1.10.0-1 | - +- all | gutenprint-doc | 5.2.9-1 | - +- all | gutenprint-locales | 5.2.9-1 | - +- all | gvb | 1.2.1-1 | - +- all | gvfs-common | 1.12.3-4 | - +- all | gvrng | 4.4-1 | - +- all | gw6c | 1:1.2-4 | - +- all | gwakeonlan | 0.5.1-1 | - +- all | gwhois | 20120626 | - +- all | gworkspace-apps-wrappers | 0.8.8-1.1 | - +- all | gwrite | 0.5.1-2 | - +- all | gwyddion-common | 2.28-2 | - +! all | gyoto-doc | 0.0.3-5 | 0.1.0-2~bpo70+1 +! all | gyp | 0.1~svn1395-1 | 0.1~svn1729-3~bpo7+1 +- all | gzip-win32 | 1.5-1.1 | - +- all | haci | 0.97c-2 | - +- all | hal-doc | 0.5.14-8 | - +- all | hal-info | 20091130-1 | - +- all | hamexam | 1.2.0-1 | - +- all | haml-elisp | 1:3.0.15-4 | - +- all | hamradiomenus | 1.2+nmu1 | - +- all | hamster-applet | 2.91.3+git20120514.b9fec3e1-1 | - +- all | handlersocket-doc | 1.1.0-7-g1044a28-1 | - +- all | hannah-data | 1.0-2 | - +! all | hapolicy | 1.32-2 | 1.35-1~bpo70+1 +- all | harden | 0.1.38+nmu1 | - +- all | harden-clients | 0.1.38+nmu1 | - +- all | harden-development | 0.1.38+nmu1 | - +- all | harden-doc | 3.15.1 | - +- all | harden-environment | 0.1.38+nmu1 | - +- all | harden-nids | 0.1.38+nmu1 | - +- all | harden-remoteaudit | 0.1.38+nmu1 | - +- all | harden-servers | 0.1.38+nmu1 | - +- all | harden-surveillance | 0.1.38+nmu1 | - +- all | harden-tools | 0.1.38+nmu1 | - +- all | hardening-includes | 2.2 | - +- all | haskell-agda-doc | 1:8 | - +- all | haskell-convertible-doc | 1:8 | - +- all | haskell-cpphs-doc | 1:8 | - +- all | haskell-devscripts | 0.8.12 | - +- all | haskell-doc | 20061127 | - +- all | haskell-edison-api-doc | 1:8 | - +- all | haskell-edison-core-doc | 1:8 | - +- all | haskell-haskelldb-doc | 1:8 | - +- all | haskell-hdbc-doc | 1:8 | - +- all | haskell-hdbc-odbc-doc | 1:8 | - +- all | haskell-hdbc-postgresql-doc | 1:8 | - +- all | haskell-hdbc-sqlite3-doc | 1:8 | - +- all | haskell-hscurses-doc | 1:8 | - +- all | haskell-hsql-doc | 1:8 | - +- all | haskell-hsql-mysql-doc | 1:8 | - +- all | haskell-hsql-odbc-doc | 1:8 | - +- all | haskell-hsql-postgresql-doc | 1:8 | - +- all | haskell-hsql-sqlite3-doc | 1:8 | - +- all | haskell-http-doc | 1:8 | - +- all | haskell-mode | 2.8.0-2 | - +- all | haskell-pcre-light-doc | 1:8 | - +- all | haskell-platform | 2012.2.0.0 | - +- all | haskell-platform-doc | 2012.2.0.0 | - +- all | haskell-platform-prof | 2012.2.0.0 | - +- all | haskell-regex-base-doc | 1:8 | - +- all | haskell-regex-compat-doc | 1:8 | - +- all | haskell-regex-posix-doc | 1:8 | - +- all | haskell-src-exts-doc | 1:8 | - +- all | haskell-uulib-doc | 1:8 | - +- all | haskell-zlib-doc | 1:8 | - +- all | haskell98-report | 20080907-4 | - +- all | haskell98-tutorial | 200006-2-1.1 | - +- all | haskelldb-doc | 2.1.1-5 | - +- all | hatop | 0.7.7-1 | - +- all | headache | 1.03-22 | - +- all | hearse | 1.5-8.1 | - +! all | hedgewars-data | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +- all | heimdal-docs | 1.6~git20120403+dfsg1-2 | - +- all | hepmc-examples | 2.06.09-1 | - +- all | hepmc-reference-manual | 2.06.09-1 | - +- all | hepmc-user-manual | 2.06.09-1 | - +- all | heroes-data | 1.5-2 | - +- all | heroes-sound-effects | 1.0-4 | - +- all | heroes-sound-tracks | 1.0-4 | - +- all | hevea | 1.10-14 | - +- all | hg-fast-export | 20120618-1 | - +- all | hgsubversion | 1.4-1 | - +- all | hgsvn | 0.1.8-1 | - +! all | hgview | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hgview-common | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hgview-curses | 1.5.0-4 | 1.7.1-2~bpo70+1 +- all | hhsuite-data | 2.0.15-1 | - +- all | hibernate | 2.0+15+g88d54a8-1 | - +- all | hicolor-icon-theme | 0.12-1 | - +- all | highlight-common | 3.9-1 | - +- all | hiki | 0.8.8.1-3 | - +- all | hime-data | 0.9.9+git20120619+dfsg-1 | - +- all | hime-dev | 0.9.9+git20120619+dfsg-1 | - +- all | hitchhiker | 0.01~20091129+bzr41-4 | - +- all | hlbrw | 0.2.4-1 | - +- all | hlins | 0.39-19 | - +- all | hmmer-doc | 3.0-4 | - +- all | ho22bus-data | 0.9.1-2 | - +- all | hobbit-plugins | 20120532 | - +- all | hocr-gtk | 0.10.17-1 | - +- all | hol88-contrib-help | 2.02.19940316-15 | - +- all | hol88-contrib-source | 2.02.19940316-15 | - +- all | hol88-doc | 2.02.19940316-15 | - +- all | hol88-help | 2.02.19940316-15 | - +- all | hol88-library-help | 2.02.19940316-15 | - +- all | hol88-library-source | 2.02.19940316-15 | - +- all | hol88-source | 2.02.19940316-15 | - +- all | holotz-castle-data | 1.3.14-5 | - +- all | homebank-data | 4.4-1 | - +- all | horgand-data | 1.14-5 | - +- all | host | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- all | hotot | 1:0.9.7.32+git20111213.1d89daf-1.1 | - +- all | hotswap | 0.4.0-12 | - +- all | hotwire | 0.721-2 | - ++ all | how-can-i-help | - | 4~bpo70+1 +- all | howm | 1.4.0rc2-2 | - +- all | hp-ppd | 0.9-0.2 | - +- all | hp-search-mac | 0.1.3 | - +- all | hpijs | 3.12.6-3.1+deb7u1 | - +- all | hpijs-ppds | 3.12.6-3.1+deb7u1 | - +- all | hplip-cups | 3.12.6-3.1+deb7u1 | - +- all | hplip-data | 3.12.6-3.1+deb7u1 | - +- all | hplip-doc | 3.12.6-3.1+deb7u1 | - +- all | hplip-gui | 3.12.6-3.1+deb7u1 | - +- all | hsqldb-server | 1.8.0.10+dfsg-0+deb7u1 | - +- all | hsqldb-utils | 1.8.0.10+dfsg-0+deb7u1 | - +- all | htag | 0.0.24-1 | - +- all | htcheck-php | 1:2.0.0~rc1-2 | - +- all | htdig-doc | 1:3.2.0b6-12 | - +- all | html-helper-mode | 3.0.4kilo-2 | - +- all | html2markdown | 3.200.3-2 | - +- all | html2ps | 1.0b7-1 | - +- all | html2wml | 0.4.11-1 | - +- all | htmldoc-common | 1.8.27-8 | - +- all | http-icons | 0~20041010-1 | - +- all | httpcode | 0.5-2 | - ++ all | httpry-daemon | - | 0.1.7-3~bpo70+1 ++ all | httpry-tools | - | 0.1.7-3~bpo70+1 +- all | httrack-doc | 3.46.1-1 | - +! all | hugin-data | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +- all | hunspell-an | 0.2-1 | - +- all | hunspell-ar | 3.1-1 | - +- all | hunspell-be | 0.53-3 | - +- all | hunspell-da | 1:3.3.0-4 | - +- all | hunspell-de-at | 20120607-1 | - +- all | hunspell-de-at-frami | 1:3.3.0-4 | - +- all | hunspell-de-ch | 20120607-1 | - +- all | hunspell-de-ch-frami | 1:3.3.0-4 | - +- all | hunspell-de-de | 20120607-1 | - +- all | hunspell-de-de-frami | 1:3.3.0-4 | - +- all | hunspell-de-med | 20110608-1 | - +- all | hunspell-en-ca | 1:3.3.0-4 | - +- all | hunspell-en-us | 20070829-6 | - +- all | hunspell-eu-es | 0.4.20081029-6 | - +- all | hunspell-fr | 1:3.3.0-4 | - +- all | hunspell-gl-es | 2.2a-10 | - +- all | hunspell-hu | 1:3.3.0-4 | - +- all | hunspell-kk | 1.1-2 | - +- all | hunspell-ko | 0.5.5-1 | - +- all | hunspell-ml | 0.1-2 | - +- all | hunspell-ne | 1:3.3.0-4 | - +- all | hunspell-ro | 1:3.3.0-4 | - +- all | hunspell-ru | 20120501-1 | - +- all | hunspell-se | 1.0~beta6.20081222-1.2 | - +- all | hunspell-sh | 1:3.3.0-4 | - +- all | hunspell-sr | 1:3.3.0-4 | - +- all | hunspell-sv-se | 1.51-1 | - +- all | hunspell-uz | 0.6-3.2 | - +- all | hunspell-vi | 1:3.3.0-4 | - +- all | hv3 | 3.0~fossil20110109-2 | - +- all | hwdata | 0.234-1 | - +- all | hybrid-dev | 1:7.2.2.dfsg.2-10 | - +- all | hyde | 0.8.5a1-4 | - +- all | hydrogen-drumkits | 0.9.3.20070703-3 | - +- all | hyphen-af | 1:3.3.0-4 | - +- all | hyphen-as | 0.7.0-1 | - +- all | hyphen-bn | 0.7.0-2 | - +- all | hyphen-ca | 1:3.3.0-4 | - +- all | hyphen-de | 1:3.3.0-4 | - +- all | hyphen-en-us | 2.8.3-2 | - +- all | hyphen-fr | 1:3.3.0-4 | - +- all | hyphen-gu | 0.7.0-2 | - +- all | hyphen-hi | 0.7.0-3 | - +- all | hyphen-hr | 20060617-2.3 | - +- all | hyphen-hu | 1:3.3.0-4 | - +- all | hyphen-it | 1:3.3.0-4 | - +- all | hyphen-kn | 0.7.0-2 | - +- all | hyphen-mr | 0.7.0-1 | - +- all | hyphen-pa | 0.7.0-1 | - +- all | hyphen-pl | 1:3.0a-4 | - +- all | hyphen-ro | 1:3.3.0-4 | - +- all | hyphen-sh | 1:3.3.0-4 | - +- all | hyphen-sl | 1:3.3.0-4 | - +- all | hyphen-sr | 1:3.3.0-4 | - +- all | hyphen-ta | 0.7.0-1 | - +- all | hyphen-te | 0.7.0-1 | - +- all | hyphen-zu | 1:3.3.0-4 | - ++ all | i18nspector | - | 0.11.1-1~bpo70+1 +- all | iamerican | 3.3.02-6 | - +- all | iamerican-huge | 3.3.02-6 | - +- all | iamerican-insane | 3.3.02-6 | - +- all | iamerican-large | 3.3.02-6 | - +- all | iamerican-small | 3.3.02-6 | - +- all | ibid | 0.1.1+dfsg-4 | - +- all | ibrazilian | 3.0~beta4-15 | - +- all | ibritish | 3.3.02-6 | - +- all | ibritish-huge | 3.3.02-6 | - +- all | ibritish-insane | 3.3.02-6 | - +- all | ibritish-large | 3.3.02-6 | - +- all | ibritish-small | 3.3.02-6 | - +! all | ibus-doc | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- all | ibus-el | 0.3.0-2 | - +! all | ibus-googlepinyin | 0.1.1+hg20111212-1 | 0.1.2-1~bpo70+1 +- all | ibus-pinyin-db-android | 1.4.0-1+deb7u1 | - +- all | ibus-pinyin-db-open-phrase | 1.4.0-1+deb7u1 | - +! all | ibus-table | 1.3.9.20110827-2 | 1.5.0.is.1.4.99.1-1~bpo70+1 +- all | ibus-table-array30 | 1.3.4-1 | - +- all | ibus-table-cangjie | 1.3.4-1 | - +- all | ibus-table-cangjie-big | 1.3.4-1 | - +- all | ibus-table-cangjie3 | 1.3.4-1 | - +- all | ibus-table-cangjie5 | 1.3.4-1 | - +- all | ibus-table-cantonese | 1.3.4-1 | - +- all | ibus-table-cantonhk | 1.3.4-1 | - +- all | ibus-table-cns11643 | 1.3.0.20100528-3 | - +- all | ibus-table-compose | 1.3.0.20100528-3 | - +- all | ibus-table-easy | 1.3.4-1 | - +- all | ibus-table-easy-big | 1.3.4-1 | - +- all | ibus-table-emoji | 1.3.0.20100528-3 | - +- all | ibus-table-erbi | 1.3.4-1 | - +- all | ibus-table-erbi-qs | 1.3.4-1 | - +- all | ibus-table-extraphrase | 1.2.0.20100305-1 | - +- all | ibus-table-ipa-x-sampa | 1.3.0.20100528-3 | - +- all | ibus-table-jyutping | 1.3.4-1 | - +- all | ibus-table-latex | 1.3.0.20100528-3 | - +- all | ibus-table-quick | 1.3.4-1 | - +- all | ibus-table-quick-classic | 1.3.4-1 | - +- all | ibus-table-quick3 | 1.3.4-1 | - +- all | ibus-table-quick5 | 1.3.4-1 | - +- all | ibus-table-rustrad | 1.3.0.20100528-3 | - +- all | ibus-table-scj6 | 1.3.4-1 | - +- all | ibus-table-stroke5 | 1.3.4-1 | - +- all | ibus-table-thai | 1.3.0.20100528-3 | - +- all | ibus-table-translit | 1.3.0.20100528-3 | - +- all | ibus-table-translit-ua | 1.3.0.20100528-3 | - +- all | ibus-table-viqr | 1.3.0.20100528-3 | - +- all | ibus-table-wu | 1.3.4-1 | - +- all | ibus-table-wubi | 1.3.4-1 | - +- all | ibus-table-yawerty | 1.3.0.20100528-3 | - +- all | ibus-table-yong | 1.3.4-1 | - +- all | ibus-xkbc | 1.3.3.20100922-2+deb7u1 | - +- all | icatalan | 0.20111230b-4 | - +- all | icc-profiles-free | 2.0.1+dfsg-1 | - +- all | ice34-slice | 3.4.2-8.2 | - +- all | icecream | 1.3-4 | - +- all | icedove-bidiui | 0.9.6-1 | - +- all | icedove-dispmua | 1.6.8-1 | - +- all | icedove-gcontactsync | 0.3.5-1 | - +- all | icedove-l10n-all | 1:10.0.10-1 | - +- all | icedove-l10n-ar | 1:10.0.10-1 | - +- all | icedove-l10n-ast | 1:10.0.10-1 | - +- all | icedove-l10n-be | 1:10.0.10-1 | - +- all | icedove-l10n-bg | 1:10.0.10-1 | - +- all | icedove-l10n-bn-bd | 1:10.0.10-1 | - +- all | icedove-l10n-br | 1:10.0.10-1 | - +- all | icedove-l10n-ca | 1:10.0.10-1 | - +- all | icedove-l10n-cs | 1:10.0.10-1 | - +- all | icedove-l10n-da | 1:10.0.10-1 | - +- all | icedove-l10n-de | 1:10.0.10-1 | - +- all | icedove-l10n-el | 1:10.0.10-1 | - +- all | icedove-l10n-en-gb | 1:10.0.10-1 | - +- all | icedove-l10n-es-ar | 1:10.0.10-1 | - +- all | icedove-l10n-es-es | 1:10.0.10-1 | - +- all | icedove-l10n-et | 1:10.0.10-1 | - +- all | icedove-l10n-eu | 1:10.0.10-1 | - +- all | icedove-l10n-fi | 1:10.0.10-1 | - +- all | icedove-l10n-fr | 1:10.0.10-1 | - +- all | icedove-l10n-fy-nl | 1:10.0.10-1 | - +- all | icedove-l10n-ga-ie | 1:10.0.10-1 | - +- all | icedove-l10n-gd | 1:10.0.10-1 | - +- all | icedove-l10n-gl | 1:10.0.10-1 | - +- all | icedove-l10n-he | 1:10.0.10-1 | - +- all | icedove-l10n-hu | 1:10.0.10-1 | - +- all | icedove-l10n-id | 1:10.0.10-1 | - +- all | icedove-l10n-is | 1:10.0.10-1 | - +- all | icedove-l10n-it | 1:10.0.10-1 | - +- all | icedove-l10n-ja | 1:10.0.10-1 | - +- all | icedove-l10n-ko | 1:10.0.10-1 | - +- all | icedove-l10n-lt | 1:10.0.10-1 | - +- all | icedove-l10n-nb-no | 1:10.0.10-1 | - +- all | icedove-l10n-nl | 1:10.0.10-1 | - +- all | icedove-l10n-nn-no | 1:10.0.10-1 | - +- all | icedove-l10n-pa-in | 1:10.0.10-1 | - +- all | icedove-l10n-pl | 1:10.0.10-1 | - +- all | icedove-l10n-pt-br | 1:10.0.10-1 | - +- all | icedove-l10n-pt-pt | 1:10.0.10-1 | - +- all | icedove-l10n-rm | 1:10.0.10-1 | - +- all | icedove-l10n-ro | 1:10.0.10-1 | - +- all | icedove-l10n-ru | 1:10.0.10-1 | - +- all | icedove-l10n-si | 1:10.0.10-1 | - +- all | icedove-l10n-sk | 1:10.0.10-1 | - +- all | icedove-l10n-sl | 1:10.0.10-1 | - +- all | icedove-l10n-sq | 1:10.0.10-1 | - +- all | icedove-l10n-sr | 1:10.0.10-1 | - +- all | icedove-l10n-sv-se | 1:10.0.10-1 | - +- all | icedove-l10n-ta-lk | 1:10.0.10-1 | - +- all | icedove-l10n-tr | 1:10.0.10-1 | - +- all | icedove-l10n-uk | 1:10.0.10-1 | - +- all | icedove-l10n-vi | 1:10.0.10-1 | - +- all | icedove-l10n-zh-cn | 1:10.0.10-1 | - +- all | icedove-l10n-zh-tw | 1:10.0.10-1 | - +- all | icedove-quotecolors | 0.3-3 | - +- all | icedtea-netx-common | 1.3.2-1 | - +- all | icedtea-plugin | 1.3.2-1 | - +- all | icedtea6-plugin | 6b21.3.2-1 | - +- all | icee-slice | 1.2.0-6.1 | - +- all | icegrid-gui | 3.4.2-8.2 | - +- all | iceweasel-downthemall | 2.0.13-2 | - +- all | iceweasel-l10n-ach | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-af | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ak | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-all | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ar | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-as | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ast | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-be | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-bg | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-bn-bd | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-bn-in | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-br | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-bs | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ca | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-cs | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-csb | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-cy | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-da | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-de | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-el | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-en-gb | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-en-za | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-eo | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-es-ar | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-es-cl | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-es-es | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-es-mx | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-et | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-eu | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-fa | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ff | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-fi | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-fr | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-fy-nl | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ga-ie | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-gd | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-gl | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-gu-in | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-he | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-hi-in | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-hr | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-hu | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-hy-am | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-id | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-is | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-it | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ja | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-kk | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-km | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-kn | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ko | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ku | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-lg | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-lij | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-lt | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-lv | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-mai | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-mk | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ml | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-mr | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-nb-no | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-nl | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-nn-no | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-nso | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-or | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-pa-in | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-pl | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-pt-br | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-pt-pt | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-rm | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ro | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ru | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-si | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-sk | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-sl | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-son | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-sq | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-sr | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-sv-se | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ta | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-ta-lk | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-te | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-th | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-tr | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-uk | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-vi | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-zh-cn | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-zh-tw | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-l10n-zu | 1:17.0.10esr-1~deb7u1 | - +- all | iceweasel-scrapbook | 1.5.4-1 | - +- all | iceweasel-vimperator | 3.3-2 | - +- all | icicles | 23.0+20110910-2 | - +! all | icinga-common | 1.7.1-6 | 1.9.3-2~bpo70+1 +! all | icinga-doc | 1.7.1-6 | 1.9.3-2~bpo70+1 +! all | icinga-web | 1.7.1+dfsg2-6 | 1.9.2+dfsg1-1~bpo70+1 +! all | icinga-web-pnp | 1.7.1+dfsg2-6 | 1.9.2+dfsg1-1~bpo70+1 +- all | icli | 0.42-1 | - +- all | icmake-doc | 7.18.00-2 | - +- all | icon-ipl | 9.4.3-4.2 | - +- all | icon-naming-utils | 0.8.90-2 | - +- all | icu-doc | 4.8.1.1-12+deb7u1 | - +- all | identicurse | 0.9+dfsg0-1 | - +- all | idl-font-lock-el | 1.5-6 | - +- all | idle | 2.7.3-4+deb7u1 | - +- all | idle-python2.6 | 2.6.8-1.1 | - +- all | idle-python2.7 | 2.7.3-6 | - +- all | idle-python3.2 | 3.2.3-7 | - +- all | idle3 | 3.2.3-6 | - +- all | idutch | 1:2.10-1 | - +- all | idzebra-2.0-common | 2.0.44-3 | - +- all | idzebra-2.0-doc | 2.0.44-3 | - +- all | idzebra-2.0-examples | 2.0.44-3 | - +- all | ienglish-common | 3.3.02-6 | - +- all | iesperanto | 2.1.2000.02.25-45 | - +- all | iestonian | 1:20030606-20 | - +- all | ifaroese | 0.4.1-1 | - +- all | ifetch-tools | 0.15.23b-1 | - +- all | ifmail | 2.14tx8.10-21 | - +- all | ifrench | 1.4-26 | - +- all | ifscheme | 1.7-3 | - +- all | ifupdown-extra | 0.22 | - +- all | ifupdown-scripts-zg2 | 0.6-1 | - +- all | igal2 | 2.1-1 | - +- all | igalician-minimos | 0.5-35 | - +- all | igstk-doc | 4.4.0-2 | - +- all | igstk-examples | 4.4.0-2 | - +- all | iipimage-doc | 0.9.9-2 | - +- all | iisemulator | 0.95-3 | - +! all | ikiwiki | 3.20120629 | 3.20130904.1~bpo70+1 +- all | ikiwiki-hosting-common | 0.20120527 | - +- all | ikiwiki-hosting-dns | 0.20120527 | - +- all | ikvm | 7.0.4335.0+ds-1 | - +- all | ilithuanian | 1.2.1-3 | - +- all | ilohamail | 0.8.14-0rc3sid6.2 | - +- all | im | 1:151-2 | - +- all | im-config | 0.21 | - +- all | im-switch | 1.23 | - +- all | imageindex | 1.1-2.1 | - +- all | imagej | 1.46a-1 | - +- all | imagemagick-common | 8:6.7.7.10-5+deb7u2 | - +- all | imagemagick-doc | 8:6.7.7.10-5+deb7u2 | - +- all | imageshack-uploader-common | 2.2+hg20100408.d802dea89428-5.1 | - +- all | imagetooth | 2.0.1-1.1 | - +- all | imagination-common | 3.0-2 | - +- all | imaprowl | 1.2.1-1 | - +- all | imdb-tools | 0.9-1 | - +- all | imediff2 | 1.1.2-1 | - +- all | imgsizer | 2.7-3 | - +- all | imhangul-common | 1+nmu1 | - +- all | impose+ | 0.2-12 | - +- all | imposm | 2.4.0+dfsg-0.1 | - +- all | impressive | 0.10.3-2 | - +- all | imview-doc | 1.0.1-3 | - +- all | imvirt | 0.9.4-4 | - +- all | indent-doc | 2.2.11-2 | - +- all | infernal-doc | 1.0.2-2 | - +- all | infinoted-0.5 | 0.5.2-6.1 | - +- all | info2man | 1.1-6 | - +- all | info2www | 1.2.2.9-24 | - +- all | infon-devel | 0~r218-1 | - +- all | inform-mode | 1.5.8-3 | - +- all | ingerman | 20120607-1 | - ++ all | init-system-helpers | - | 1.11~bpo70.1 +! all | initramfs-tools | 0.109.1 | 0.115~bpo70+1 +- all | initz | 0.0.11+20030603cvs-17.1 | - +- all | ink-generator | 0.4-2 | - +- all | inosync | 0.2.1-1 | - +- all | insanity-tools | 0.0+git20110920.4750a8e8-2 | - +- all | insanity-web | 0.0+git20110920.4750a8e8-2 | - +- all | insighttoolkit3-examples | 3.20.1+git20120521-3 | - +- all | installation-guide-amd64 | 20130503 | - +- all | installation-guide-armel | 20130503 | - +- all | installation-guide-armhf | 20130503 | - +- all | installation-guide-i386 | 20130503 | - +- all | installation-guide-ia64 | 20130503 | - +- all | installation-guide-kfreebsd-amd64 | 20130503 | - +- all | installation-guide-kfreebsd-i386 | 20130503 | - +- all | installation-guide-mips | 20130503 | - +- all | installation-guide-mipsel | 20130503 | - +- all | installation-guide-powerpc | 20130503 | - +- all | installation-guide-s390 | 20130503 | - +- all | installation-guide-s390x | 20130503 | - +- all | installation-guide-sparc | 20130503 | - +- all | installation-report | 2.49 | - +- all | instead-data | 1.6.0-1 | - +- all | interchange-cat-standard | 5.7.7-2 | - +- all | interchange-ui | 5.7.7-2 | - +- all | intltool | 0.50.2-2 | - +- all | intltool-debian | 0.35.0+20060710.1 | - +- all | inventor-data | 2.1.5-10-16 | - +- all | inventor-doc | 2.1.5-10-16 | - +- all | iog | 1.03-3.6 | - +- all | ion-doc | 3.0.1~dfsg1-1 | - +- all | ip2host | 1.10-2 | - +- all | ipadic-common | 2.7.0+main-3 | - +- all | ipcalc | 0.41-2.1 | - +- all | ipcheck | 0.233-1.1 | - +- all | ipolish | 20120520-1 | - +- all | iportuguese | 20120604-1 | - +- all | iprelay | 0.71-4 | - +- all | iproute-doc | 20120521-3 | - +- all | iptables-persistent | 0.5.7 | - +- all | ipxe | 1.0.0+git-20120202.f6840ba-3 | - +- all | ipxe-qemu | 1.0.0+git-20120202.f6840ba-3 | - +- all | ipython | 0.13.1-2 | - +- all | ipython-doc | 0.13.1-2 | - +- all | ipython-notebook | 0.13.1-2 | - +- all | ipython-notebook-common | 0.13.1-2 | - +- all | ipython-qtconsole | 0.13.1-2 | - +- all | ipython3 | 0.13.1-2 | - +- all | ipython3-notebook | 0.13.1-2 | - +- all | ipython3-qtconsole | 0.13.1-2 | - +- all | irssi-scripts | 20120326 | - +- all | irussian | 0.99g5-18 | - +- all | isag | 10.0.5-1 | - +- all | iscsitarget-dkms | 1.4.20.2-10.1 | - +- all | isdnlog-data | 1:3.25+dfsg1-3.3~deb7u1 | - +- all | isdnutils-doc | 1:3.25+dfsg1-3.3~deb7u1 | - +- all | islamic-menus | 1.0.5-1 | - +- all | iso-codes | 3.41-1 | - +- all | isoquery | 1.7-1 | - +- all | ispanish | 1.11-4 | - +- all | iswiss | 20120607-1 | - +- all | itagalog | 0.3.1-3 | - +- all | itcl3-doc | 3.4.1-1 | - +- all | itk3-doc | 3.3-4 | - +- all | itstool | 1.1.3-1 | - +- all | ivy | 2.2.0-2 | - +- all | ivy-doc | 2.2.0-2 | - +- all | iwatch | 0.2.2-2 | - +- all | iwidgets4 | 4.0.1-6 | - +- all | iwidgets4-doc | 4.0.1-6 | - +- all | jabber-irc | 0.4cvs20080505-1.1 | - +- all | jabber-querybot | 0.1.0-1 | - +- all | jablicator | 1.0.1 | - +- all | jabref | 2.7~beta1+ds-6 | - +- all | jabref-plugin-oo | 0.9+ds-2 | - +- all | jacal | 1b9-2.1 | - +- all | jackd | 5 | - +- all | jacksum | 1.7.0-2 | - +- all | jadetex | 3.13-14 | - +- all | jailer | 0.4-17 | - +- all | jailtool | 1.1-5 | - +- all | jajuk | 1:1.9.6-1 | - +- all | jalview | 2.7.dfsg-2 | - +- all | jaminid | 0.99a-1.1 | - +- all | janino | 2.5.15-1 | - +- all | japi-compliance-checker | 1.1.2-1 | - +- all | japitools | 0.9.7-1 | - +- all | jardiff | 0.2-3 | - +- all | jargon | 4.0.0-5 | - +- all | jargon-text | 4.4.7-4 | - +- all | jarwrapper | 0.43 | - +- all | jasmin-sable | 2.4.0-1 | - +- all | java-common | 0.47 | - ++ all | java-package | - | 0.53~bpo70+1 +- all | java-propose-classpath | 0.43 | - +- all | java-wrappers | 0.1.25 | - +- all | java3ds-fileloader | 1.2+dfsg-1 | - +- all | javacc | 5.0-4 | - +- all | javacc-doc | 5.0-4 | - +- all | javahelp2 | 2.0.05.ds1-6 | - +- all | javahelp2-doc | 2.0.05.ds1-6 | - +- all | javahelper | 0.43 | - +- all | javamorph | 0.0.20100201-1.3 | - +- all | javascript-common | 7 | - +- all | jaxe | 3.5-2 | - +- all | jbibtex-base | 1:2.5-2.1 | - +- all | jblas-doc | 1.2.0-4 | - +- all | jbossas4 | 4.2.3.GA-7 | - +- all | jcadencii | 3.3.9+svn20110818.r1732-2 | - +- all | jclic | 0.2.1.0-1 | - +- all | jconvolver-config-files | 0.9.2-1 | - +- all | jdresolve | 0.6.1-4 | - +- all | jed-common | 1:0.99.19-2.1 | - +- all | jed-extra | 2.5.6-2 | - +- all | jedit | 4.5.2+dfsg-1 | - +- all | jekyll | 0.11.2-1 | - +- all | jemboss | 6.4.0-2 | - +- all | jenkins-crypto-util | 1.1-2 | - +- all | jenkins-crypto-util-doc | 1.1-2 | - +- all | jenkins-executable-war | 1.27-1 | - +- all | jenkins-executable-war-doc | 1.27-1 | - +- all | jenkins-memory-monitor | 1.7-2 | - +- all | jenkins-memory-monitor-doc | 1.7-2 | - +- all | jenkins-task-reactor | 1.3-1 | - +- all | jenkins-task-reactor-doc | 1.3-1 | - +- all | jenkins-test-annotations | 1.0-1 | - +- all | jenkins-test-annotations-doc | 1.0-1 | - +- all | jetring | 0.20 | - +- all | jets3t | 0.8.1+dfsg-1 | - +- all | jetty | 6.1.26-1 | - +- all | jetty8 | 8.1.3-4 | - +- all | jeuclid-cli | 3.1.9-2 | - +- all | jeuclid-mathviewer | 3.1.9-2 | - +- all | jffnms | 0.9.3-3 | - +- all | jflex | 1.4.3-2 | - +- all | jfractionlab | 0.91-2 | - +- all | jftp | 1.52+dfsg-2 | - +- all | jfugue | 4.0.3-3 | - +- all | jgit-cli | 2.0.0-2 | - +- all | jifty | 1.10518+dfsg-2 | - +- all | jigl | 2.0.1+20060126-4 | - +- all | jigzo-data | 0.6.1-6 | - +- all | jiipview | 2.05-1 | - +- all | jing | 20091111-5 | - +- all | jing-trang-doc | 20091111-5 | - +- all | jirc | 1.0-1 | - +- all | jlatex209-base | 2.1-1.1 | - +- all | jlex | 1.2.6-6 | - +- all | jlha-utils | 0.1.6-3 | - +- all | jlint-doc | 3.0-4.5 | - +- all | jmagick6-docs | 6.2.6-0-8 | - +- all | jmeter | 2.5.1-1 | - +- all | jmeter-apidoc | 2.5.1-1 | - +- all | jmeter-ftp | 2.5.1-1 | - +- all | jmeter-help | 2.5.1-1 | - +- all | jmeter-http | 2.5.1-1 | - +- all | jmeter-java | 2.5.1-1 | - +- all | jmeter-jms | 2.5.1-1 | - +- all | jmeter-junit | 2.5.1-1 | - +- all | jmeter-ldap | 2.5.1-1 | - +- all | jmeter-mail | 2.5.1-1 | - +- all | jmeter-tcp | 2.5.1-1 | - +- all | jmol | 12.2.32+dfsg2-1 | - +- all | jmol-applet | 12.2.32+dfsg2-1 | - +- all | jodconverter | 2.2.2-8 | - +- all | jodreports-cli | 2.4.0-3 | - +! all | joe-jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +- all | john-data | 1.7.8-1 | - +- all | jokosher | 0.11.5-5 | - +- all | josm | 0.0.svn5267+dfsg1-2 | - +- all | josm-plugins | 0.0.svn28420+ds2-1 | - +- all | jpoker | 1.0.16-2.1 | - +- all | jquery-alternative-doc | 1.7+dfsg-1 | - +- all | jquery-jplayer-bluemonday | 2.1.0-1 | - +- all | jquery-jplayer-pinkflag | 2.1.0-1 | - +- all | jruby | 1.5.6-5 | - +- all | js2-mode | 0~20090723b-2 | - +- all | jscribble | 1.7.7-1.2 | - +- all | jsdoc-toolkit | 2.4.0+dfsg-3 | - +- all | jsmath | 3.6c-1.1 | - +- all | jsmath-fonts | 1.3-2 | - +- all | jsmath-fonts-sprite | 1.0-2 | - +- all | jsonbot | 0.84.4-1 | - +- all | jsxgraph | 0.83+svn1872~dfsg1-1 | - +- all | jsymphonic | 0.3.0.Ode.To.Freedom+svn387-7 | - +- all | jta | 2.6+dfsg-5 | - +- all | jta-doc | 2.6+dfsg-5 | - +- all | jtb | 1.4.4-2 | - +- all | jtex-base | 2.1-1.1 | - +- all | jtreg | 4.1-2 | - +- all | juman-dic | 5.1-2.1 | - +- all | jumpapplet | 20-2 | - +- all | jumpnbump-levels | 20091107 | - +- all | junior-arcade | 1.20 | - +- all | junior-art | 1.20 | - +- all | junior-config | 1.20 | - +- all | junior-doc | 1.16.1 | - +- all | junior-games-card | 1.20 | - +- all | junior-games-gl | 1.20 | - +- all | junior-games-net | 1.20 | - +- all | junior-games-sim | 1.20 | - +- all | junior-games-text | 1.20 | - +- all | junior-gnome | 1.20 | - +- all | junior-internet | 1.20 | - +- all | junior-kde | 1.20 | - +- all | junior-math | 1.20 | - +- all | junior-programming | 1.20 | - +- all | junior-puzzle | 1.20 | - +- all | junior-sound | 1.20 | - +- all | junior-system | 1.20 | - +- all | junior-tasks | 1.20 | - +- all | junior-toys | 1.20 | - +- all | junior-typing | 1.20 | - +- all | junior-writing | 1.20 | - +- all | junit | 3.8.2-8 | - +- all | junit-doc | 3.8.2-8 | - +- all | junit4 | 4.10-3 | - +- all | junit4-doc | 4.10-3 | - +- all | junkfilter | 20030115-4 | - +- all | jvim-doc | 3.0-2.1b-3 | - +- all | jwchat | 1.0+dfsg-1.1 | - +- all | jxplorer | 3.2.2~rc1+dfsg-3 | - +- all | jython | 2.5.2-1 | - +- all | jython-doc | 2.5.2-1 | - +- all | k3b-data | 2.0.2-6 | - +- all | k3b-extrathemes | 2.0.2-6 | - +- all | k3b-i18n | 2.0.2-6 | - +- all | k3d-data | 0.8.0.2-18 | - +- all | kabikaboo | 1.7-1 | - +- all | kadu-common | 0.11.2-1 | - +- all | kadu-dev | 0.11.2-1 | - +- all | kadu-themes | 0.11.2-1 | - +- all | kajongg | 4:4.8.4-3 | - +- all | kakasi-dic | 2.3.5~pre1+cvs20071101-1 | - +- all | kalzium-data | 4:4.8.4-1 | - +- all | kanadic | 6.5deb2-8 | - +- all | kanif | 1.2.2-1 | - +- all | kanjidic | 2012.05.09-1 | - +- all | kanjidic-xml | 2012.05.09-1 | - ++ all | kanla | - | 1.4-1~bpo70+1 +- all | kannel-docs | 1.4.3-2 | - +- all | kanyremote | 5.13-1 | - +- all | kate-data | 4:4.8.4-1 | - +- all | kate-syntax-go | 2:1.0.2-1.1 | - +- all | kball-data | 0.0.20041216-8 | - +- all | kbd-compat | 1:0.2.3dbs-70 | - +- all | kcachegrind-converters | 4:4.8.4+dfsg-1 | - +- all | kcron | 4:4.8.4-3 | - +- all | kde-baseapps | 4:4.8.4-2 | - +- all | kde-baseapps-data | 4:4.8.4-2 | - +- all | kde-config-touchpad | 0.8.1-1 | - +- all | kde-full | 5:77+deb7u1 | - +- all | kde-icons-mono | 4:4.8.4-5 | - +- all | kde-icons-nuvola | 4:4.8.4-5 | - +- all | kde-l10n-ar | 4:4.8.4-2 | - +- all | kde-l10n-bg | 4:4.8.4-2 | - +- all | kde-l10n-bs | 4:4.8.4-2 | - +- all | kde-l10n-ca | 4:4.8.4-2 | - +- all | kde-l10n-cavalencia | 4:4.8.4-2 | - +- all | kde-l10n-cs | 4:4.8.4-2 | - +- all | kde-l10n-da | 4:4.8.4-2 | - +- all | kde-l10n-de | 4:4.8.4-2 | - +- all | kde-l10n-el | 4:4.8.4-2 | - +- all | kde-l10n-engb | 4:4.8.4-2 | - +- all | kde-l10n-es | 4:4.8.4-2 | - +- all | kde-l10n-et | 4:4.8.4-2 | - +- all | kde-l10n-eu | 4:4.8.4-2 | - +- all | kde-l10n-fa | 4:4.8.4-2 | - +- all | kde-l10n-fi | 4:4.8.4-2 | - +- all | kde-l10n-fr | 4:4.8.4-2 | - +- all | kde-l10n-ga | 4:4.8.4-2 | - +- all | kde-l10n-gl | 4:4.8.4-2 | - +- all | kde-l10n-he | 4:4.8.4-2 | - +- all | kde-l10n-hr | 4:4.8.4-2 | - +- all | kde-l10n-hu | 4:4.8.4-2 | - +- all | kde-l10n-ia | 4:4.8.4-2 | - +- all | kde-l10n-id | 4:4.8.4-2 | - +- all | kde-l10n-is | 4:4.8.4-2 | - +- all | kde-l10n-it | 4:4.8.4-2 | - +- all | kde-l10n-ja | 4:4.8.4-2 | - +- all | kde-l10n-kk | 4:4.8.4-2 | - +- all | kde-l10n-km | 4:4.8.4-2 | - +- all | kde-l10n-ko | 4:4.8.4-2 | - +- all | kde-l10n-lt | 4:4.8.4-2 | - +- all | kde-l10n-lv | 4:4.8.4-2 | - +- all | kde-l10n-nb | 4:4.8.4-2 | - +- all | kde-l10n-nds | 4:4.8.4-2 | - +- all | kde-l10n-nl | 4:4.8.4-2 | - +- all | kde-l10n-nn | 4:4.8.4-2 | - +- all | kde-l10n-pa | 4:4.8.4-2 | - +- all | kde-l10n-pl | 4:4.8.4-2 | - +- all | kde-l10n-pt | 4:4.8.4-2 | - +- all | kde-l10n-ptbr | 4:4.8.4-2 | - +- all | kde-l10n-ro | 4:4.8.4-2 | - +- all | kde-l10n-ru | 4:4.8.4-2 | - +- all | kde-l10n-si | 4:4.8.4-2 | - +- all | kde-l10n-sk | 4:4.8.4-2 | - +- all | kde-l10n-sl | 4:4.8.4-2 | - +- all | kde-l10n-sr | 4:4.8.4-2 | - +- all | kde-l10n-sv | 4:4.8.4-2 | - +- all | kde-l10n-tg | 4:4.8.4-2 | - +- all | kde-l10n-th | 4:4.8.4-2 | - +- all | kde-l10n-tr | 4:4.8.4-2 | - +- all | kde-l10n-ug | 4:4.8.4-2 | - +- all | kde-l10n-uk | 4:4.8.4-2 | - +- all | kde-l10n-vi | 4:4.8.4-2 | - +- all | kde-l10n-wa | 4:4.8.4-2 | - +- all | kde-l10n-zhcn | 4:4.8.4-2 | - +- all | kde-l10n-zhtw | 4:4.8.4-2 | - +- all | kde-runtime-data | 4:4.8.4-2 | - +- all | kde-sc-dev-latest | 4:4.8.4+5.77+deb7u1 | - +- all | kde-standard | 5:77+deb7u1 | - +- all | kde-telepathy | 0.4.0 | - +- all | kde-telepathy-data | 0.4.0-1 | - +- all | kde-telepathy-minimal | 0.4.0 | - +- all | kde-wallpapers | 4:4.8.4-1 | - +- all | kde-wallpapers-default | 4:4.8.4-1 | - +- all | kde-workspace | 4:4.8.4-6 | - +- all | kde-workspace-data | 4:4.8.4-6 | - +- all | kdeaccessibility | 4:4.8.4+5.77+deb7u1 | - +- all | kdeadmin | 4:4.8.4-3 | - +- all | kdeartwork | 4:4.8.4-5 | - +- all | kdeartwork-emoticons | 4:4.8.4-5 | - +- all | kdeartwork-theme-icon | 4:4.8.4-5 | - +- all | kdebase-apps | 4:4.8.4-2 | - +- all | kdebase-bin | 4:4.8.4-2 | - +- all | kdebase-dbg | 4:4.8.4-2 | - +- all | kdebase-runtime | 4:4.8.4-2 | - +- all | kdebase-runtime-dbg | 4:4.8.4-2 | - +- all | kdebase-workspace | 4:4.8.4-6 | - +- all | kdebase-workspace-bin | 4:4.8.4-6 | - +- all | kdebase-workspace-dev | 4:4.8.4-6 | - +- all | kdeedu | 4:4.8.4+5.77+deb7u1 | - +- all | kdeedu-kvtml-data | 4:4.8.4-1 | - +- all | kdegames | 4:4.8.4-3 | - +- all | kdegames-card-data | 4:4.8.4-3 | - +- all | kdegames-mahjongg-data | 4:4.8.4-3 | - +- all | kdegraphics | 4:4.8.4+5.77+deb7u1 | - +- all | kdegraphics-libs-data | 4:4.8.4+5.77+deb7u1 | - +- all | kdegraphics-strigi-plugins | 4:4.8.4+5.77+deb7u1 | - +- all | kdelibs5-data | 4:4.8.4-4 | - +- all | kdelirc | 4:4.8.4-3 | - +- all | kdemultimedia | 4:4.8.4-2 | - +- all | kdenetwork | 4:4.8.4-1 | - +- all | kdenlive-data | 0.9.2-2 | - +- all | kdepim | 4:4.4.11.1+l10n-3 | - +- all | kdeplasma-addons | 4:4.8.4-1 | - +- all | kdesdk | 4:4.8.4+dfsg-1 | - +- all | kdesdk-scripts | 4:4.8.4+dfsg-1 | - +- all | kdesrc-build | 1.15.1-1 | - +- all | kdetoys | 4:4.8.4-1 | - +- all | kdeutils | 4:4.8.4+5.77+deb7u1 | - +- all | kdevelop-data | 4:4.3.1-3 | - +- all | kdevelop-l10n | 4:4.3.1-3 | - +- all | kdevelop-php-docs-l10n | 1.3.1-2 | - +- all | kdevelop-php-l10n | 1.3.1-2 | - +- all | kdevplatform-l10n | 1.3.1-2 | - +- all | kdewallpapers | 4:4.8.4-5 | - +- all | kdewebdev | 4:4.8.4-1 | - +- all | kdiff3-doc | 0.9.96-4 | - +- all | kdirstat | 2.7.3-1 | - +- all | kdm-gdmcompat | 0.13-2 | - +- all | kdm-theme-aperture | 0.r1552-1 | - +- all | kdm-theme-bespin | 0.r1552-1 | - +- all | kdm-theme-tibanna | 0.r1552-1 | - +- all | kdump-tools | 1.4.3-1 | - +- all | kedpm | 0.5.0-4 | - +- all | kedpm-gtk | 0.5.0-4 | - +- all | keepass2 | 2.19+dfsg-2 | - +- all | keepass2-doc | 2.19+dfsg-2 | - +- all | keepnote | 0.7.8-1 | - +- all | kephra | 0.4.3.32+dfsg-2 | - +- all | kernel-package | 12.036+nmu3 | - +- all | kernel-patch-atopacct | 1:1.23-1 | - +- all | kernel-patch-atopcnt | 1:1.23-1 | - +- all | kernel-patch-grsecurity2 | 2.9.1+3.2.21-201206221855-1 | - +- all | kernel-patch-scripts | 0.99.36+nmu1 | - +- all | kernel-patch-viewos | 0.20120115-2 | - +- all | kernel-wedge | 2.85 | - +- all | ketchup | 1.0.1+git20111228+e1c62066-1 | - +- all | ketm-data | 0.0.6-22 | - +- all | keurocalc-data | 1.2.0-1 | - +- all | kexi-plugin-kspread | 1:2.4.3+2 | - +- all | kexi-plugin-mysql | 1:2.4.3+2 | - +- all | kexi-plugin-postgresql | 1:2.4.3+2 | - +- all | kexi-plugin-xbase | 1:2.4.3+2 | - +- all | key-mon | 1.13-1 | - +- all | keyanalyze | 1.1.4-1 | - +- all | keyboard-configuration | 1.88 | - +- all | keyboards-rg | 0.2 | - +- all | keychain | 2.7.1-1 | - +- all | keyjnote | 0.10.3-2 | - +- all | keymapper | 0.5.3-10.1 | - +- all | keystone | 2012.1.1-13+wheezy1 | - +- all | keystone-doc | 2012.1.1-13+wheezy1 | - ++ all | keysync | - | 0.2-2~bpo70+1 +- all | kfreebsd-source-8.3 | 8.3-6+deb7u1 | - +- all | kfreebsd-source-9.0 | 9.0-10+deb70.6 | - +- all | kgb-bot | 1.15-2 | - +- all | kgb-client | 1.15-2 | - +- all | kgb-client-git | 1.15-2 | - +- all | kgeography-data | 4:4.8.4-1 | - +- all | khmerconverter | 1.4-1 | - +- all | kicad-common | 0.20120526+bzr3261-1 | - +- all | kicad-doc-de | 0.20120526+bzr3261-1 | - +- all | kicad-doc-en | 0.20120526+bzr3261-1 | - +- all | kicad-doc-es | 0.20120526+bzr3261-1 | - +- all | kicad-doc-fr | 0.20120526+bzr3261-1 | - +- all | kicad-doc-hu | 0.20120526+bzr3261-1 | - +- all | kicad-doc-it | 0.20120526+bzr3261-1 | - +- all | kicad-doc-pl | 0.20120526+bzr3261-1 | - +- all | kicad-doc-pt | 0.20120526+bzr3261-1 | - +- all | kicad-doc-ru | 0.20120526+bzr3261-1 | - +- all | kicad-doc-zh-cn | 0.20120526+bzr3261-1 | - +- all | kiki | 0.5.6-8 | - +- all | kiki-the-nano-bot-data | 1.0.2+dfsg1-4 | - +- all | kildclient-doc | 2.11.1-1 | - +- all | kile-doc | 1:2.1.0-1 | - +- all | kile-l10n | 1:2.1.0-1 | - +- all | killer | 0.90-8 | - +- all | kimwitu++-doc | 2.3.13-2 | - +- all | kimwitu-doc | 10a+1-2.2 | - +- all | kindleclip | 0.3-3 | - +- all | king | 2.21.120420-2 | - +- all | kinput2-common | 3.1-10.3 | - +- all | kipi-plugins-common | 4:2.6.0-1 | - +! all | klash-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- all | klettres-data | 4:4.8.4-1 | - +- all | klone | 2.1.0~rc1-1 | - +- all | klone-package | 0.3 | - +- all | kmfl-keyboards-mywin | 2.1.1-2 | - +- all | kmymoney-common | 4.6.2-3.2 | - ++ all | knot-doc | - | 1.4.3-2~bpo70+1 +- all | knowledgeroot | 0.9.9.5-6 | - +- all | ko.tex | 0.1.0+20071012-1.1 | - +- all | ko.tex-base | 0.1.0+20071012-1.2 | - +- all | ko.tex-extra | 0.1.0+20071012-1.2 | - +- all | ko.tex-extra-hlfont | 0.1.0-1 | - +- all | kobodeluxe-data | 0.5.1-6 | - +- all | koffice | 1:2.4.3+2 | - +- all | koffice-dbg | 1:2.4.3+2 | - +- all | koffice-l10n-ca | 1:2.4.3+2 | - +- all | koffice-l10n-cavalencia | 1:2.4.3+2 | - +- all | koffice-l10n-da | 1:2.4.3+2 | - +- all | koffice-l10n-de | 1:2.4.3+2 | - +- all | koffice-l10n-el | 1:2.4.3+2 | - +- all | koffice-l10n-engb | 1:2.4.3+2 | - +- all | koffice-l10n-es | 1:2.4.3+2 | - +- all | koffice-l10n-et | 1:2.4.3+2 | - +- all | koffice-l10n-fr | 1:2.4.3+2 | - +- all | koffice-l10n-hu | 1:2.4.3+2 | - +- all | koffice-l10n-it | 1:2.4.3+2 | - +- all | koffice-l10n-kk | 1:2.4.3+2 | - +- all | koffice-l10n-nb | 1:2.4.3+2 | - +- all | koffice-l10n-nds | 1:2.4.3+2 | - +- all | koffice-l10n-nl | 1:2.4.3+2 | - +- all | koffice-l10n-pl | 1:2.4.3+2 | - +- all | koffice-l10n-pt | 1:2.4.3+2 | - +- all | koffice-l10n-ptbr | 1:2.4.3+2 | - +- all | koffice-l10n-ru | 1:2.4.3+2 | - +- all | koffice-l10n-sv | 1:2.4.3+2 | - +- all | koffice-l10n-uk | 1:2.4.3+2 | - +- all | koffice-l10n-zhcn | 1:2.4.3+2 | - +- all | koffice-l10n-zhtw | 1:2.4.3+2 | - +- all | konfont | 0.1-8 | - +- all | konversation-data | 1.4-1 | - +- all | konwert-dev | 1.8-11.2 | - +- all | konwert-filters | 1.8-11.2 | - +- all | korundum | 4:4.8.4-1 | - +- all | korundum4 | 4:4.8.4-1 | - +- all | kplato | 1:2.4.3+2 | - +- all | kpresenter | 1:2.4.3+2 | - +- all | kradio | 4.0.4-1 | - +- all | krank | 0.7+dfsg2-2 | - +- all | kraptor-data | 0.0.20040403-6 | - +- all | krb5-config | 2.3 | - +- all | krb5-doc | 1.10.1+dfsg-5+deb7u1 | - +- all | krb5-locales | 1.10.1+dfsg-5+deb7u1 | - +- all | krecipes-data | 2.0~beta2-3 | - +- all | krecipes-doc | 2.0~beta2-3 | - +- all | krita-data | 1:2.4.4-3 | - +- all | ksame | 4:4.8.4-3 | - +- all | kscreensaver-xsavers-webcollage | 4:4.8.4-5 | - +- all | ksplash-theme-aperture | 0.r1552-1 | - +- all | ksplash-theme-bespin | 0.r1552-1 | - +- all | ksplash-theme-tibanna | 0.r1552-1 | - +- all | kspread | 1:2.4.3+2 | - +- all | kst-data | 2.0.3-1.3 | - +- all | kst-doc | 2.0.3-1.3 | - +- all | kstars-data | 4:4.8.4-1 | - +- all | ktorrent-data | 4.2.1-1 | - +- all | ktouch-data | 4:4.8.4-1 | - +- all | kttsd | 4:4.8.4-2 | - +- all | kunststoff | 2.0.2-5 | - +- all | kup-client | 0.3.2-1 | - +- all | kup-server | 0.3.2-1 | - +- all | kupfer | 0+v208-2 | - +- all | kvirc-data | 4:4.1.3+20111124.svn5988-2 | - +- all | kvpnc-data | 0.9.6a-2.1 | - +- all | kwalify | 0.7.2-2 | - +- all | kword | 1:2.4.3+2 | - +- all | kwwidgets-doc | 1.0.0~cvs20100930-8 | - +- all | kwwidgets-examples | 1.0.0~cvs20100930-8 | - +- all | l7-protocols | 20090528-4 | - +- all | ladder | 0.0.4 | - +- all | laditools | 1.0.1-2 | - +- all | lam-mpidoc | 7.1.4-3 | - +- all | lame-doc | 3.99.5+repack1-3 | - +- all | lammps-doc | 0~20120615.gite442279-1 | - +- all | landell | 0.92.1-1.1 | - +- all | laptop-mode-tools | 1.61-2 | - +- all | lastfmsubmitd | 1.0.6-4 | - +- all | lastmp | 1.0.6-4 | - +- all | lat | 1.2.3-10 | - +- all | late-data | 0.1.0-12 | - +- all | latex-beamer | 3.10-2 | - +- all | latex-cjk-all | 4.8.3+git20120621-1 | - +- all | latex-cjk-chinese-arphic-bkai00mp | 1.22 | - +- all | latex-cjk-chinese-arphic-bsmi00lp | 1.22 | - +- all | latex-cjk-chinese-arphic-gbsn00lp | 1.22 | - +- all | latex-cjk-chinese-arphic-gkai00mp | 1.22 | - +- all | latex-cjk-japanese-wadalab | 0.20050817-16 | - +- all | latex-cjk-korean | 4.8.3+git20120621-1 | - +- all | latex-cjk-thai | 4.8.3+git20120621-1 | - +- all | latex-fonts-sipa-arundina | 0.2.0-5 | - +- all | latex-fonts-thai-tlwg | 1:0.5.0-5 | - +- all | latex-make | 2.1.18-2 | - +- all | latex-mk | 2.1-1.1 | - +- all | latex-xcolor | 2.11-1.1 | - +- all | latex209-base | 25.mar.1992-13 | - +- all | latex209-bin | 25.mar.1992-13 | - +- all | latex209-src | 25.mar.1992-13 | - +- all | latex2html | 2008-debian1-7 | - +- all | latex2rtf-doc | 1.9.19-4.2 | - +- all | latexdiff | 0.5-4 | - +- all | latexdraw | 2.0.8+1-3 | - +- all | latexila-data | 2.4.0-1 | - +- all | latexmk | 1:4.24-1 | - +- all | latexml | 0.7.0-1 | - +- all | launchy-skins | 2.5-1 | - +- all | lazarus | 0.9.30.4-6 | - +- all | lazarus-0.9.30.4 | 0.9.30.4-6 | - +- all | lazarus-doc | 0.9.30.4-6 | - +- all | lazarus-doc-0.9.30.4 | 0.9.30.4-6 | - +- all | lazarus-src | 0.9.30.4-6 | - +- all | lazarus-src-0.9.30.4 | 0.9.30.4-6 | - +- all | lazygal | 0.7.4-1 | - +- all | lbreakout2-data | 2.6.3-1 | - +- all | lcov | 1.9-3 | - +- all | ldap-account-manager | 3.7-2 | - +- all | ldap-account-manager-lamdaemon | 3.7-2 | - +- all | ldap-haskell-doc | 1:8 | - +- all | ldapscripts | 2.0.1-1 | - +- all | ldaptor-doc | 0.0.43+debian1-7 | - +- all | ldaptor-utils | 0.0.43+debian1-7 | - +- all | ldirectord | 1:3.9.2-5+deb7u1 | - +- all | ldm-server | 2:2.2.11-2 | - +- all | ldm-themes | 12.07.1 | - +- all | ldp-docbook-dsssl | 0.0.20040321-2 | - +- all | ldp-docbook-xsl | 0.0.20040321-2 | - +- all | ldtp | 2.3.1-1 | - +- all | ldtp-doc | 2.3.1-1 | - +- all | lebiniou-data | 3.10-1 | - +- all | ledgersmb | 1.3.18-2 | - +- all | ledit | 2.03-1 | - +- all | leds-alix-source | 0.0.1-1.1 | - +- all | legit | 0.1.1-2 | - +- all | leiningen | 1.7.1-1 | - +- all | lemonldap-ng | 1.1.2-5+deb7u1 | - +- all | lemonldap-ng-doc | 1.1.2-5+deb7u1 | - +- all | lesstif-doc | 1:0.95.2-1.1 | - +- all | letodms | 3.3.9+dfsg-1 | - +- all | leveldb-doc | 0+20120530.gitdd0d562-1 | - +- all | lfm | 2.3-1 | - +- all | lhapdf-ccwrap-doc | 5.8.7+repack-1 | - +- all | lhapdf-pdfsets-minimal | 5.8.7+repack-1 | - +- all | libaac-tactics-coq | 0.2.pl2-7 | - +- all | libabstract-ruby | 1.0.0-2.1 | - +- all | libabstract-ruby-doc | 1.0.0-2.1 | - +- all | libabstract-ruby1.8 | 1.0.0-2.1 | - +- all | libabstract-ruby1.9.1 | 1.0.0-2.1 | - +- all | libaccess-bridge-java | 1.26.2-9 | - +- all | libaccess-modifier-checker-java | 1.0-4 | - +- all | libaccess-modifier-checker-java-doc | 1.0-4 | - +- all | libaccessors-perl | 1.01-1 | - +- all | libace-doc | 6.0.3+dfsg-0.1 | - +- all | libacegi-security-java | 1.0.7-3 | - +- all | libacegi-security-java-doc | 1.0.7-3 | - +- all | libacme-bleach-perl | 1.13-1 | - +- all | libacme-brainfck-perl | 1.1.1 | - +- all | libacme-eyedrops-perl | 1.60-1 | - +- all | libacme-poe-knee-perl | 1.10-7 | - +- all | libactionmailer-ruby | 2:2.3.14.2 | - +- all | libactionmailer-ruby1.8 | 2:2.3.14.2 | - +- all | libactionpack-ruby | 2:2.3.14.2 | - +- all | libactionpack-ruby1.8 | 2:2.3.14.2 | - +- all | libactiveldap-ruby | 1.2.4-3 | - +- all | libactiveldap-ruby-doc | 1.2.4-3 | - +- all | libactiveldap-ruby1.8 | 1.2.4-3 | - +- all | libactivemq-activeio-java | 3.1.1-1 | - +- all | libactivemq-activeio-java-doc | 3.1.1-1 | - +- all | libactivemq-java | 5.6.0+dfsg-1 | - +- all | libactivemq-java-doc | 5.6.0+dfsg-1 | - +- all | libactivemq-protobuf-java | 1.1-3 | - +- all | libactivemq-protobuf-java-doc | 1.1-3 | - +- all | libactiverecord-ruby | 2:2.3.14.2 | - +- all | libactiverecord-ruby1.8 | 2:2.3.14.2 | - +- all | libactiverecord-ruby1.9.1 | 2:2.3.14.2 | - +- all | libactiveresource-ruby | 2:2.3.14.2 | - +- all | libactiveresource-ruby1.8 | 2:2.3.14.2 | - +- all | libactivesupport-ruby | 2:2.3.14.2 | - +- all | libactivesupport-ruby1.8 | 2:2.3.14.2 | - +- all | libactivesupport-ruby1.9.1 | 2:2.3.14.2 | - +- all | libaddressable-ruby | 2.2.8-1 | - +- all | libaddressable-ruby1.8 | 2.2.8-1 | - +- all | libaddressable-ruby1.9.1 | 2.2.8-1 | - +- all | libaether-java | 1.13.1-2 | - +- all | libaiksaurus-1.2-data | 1.2.1+dev-0.12-6.1 | - +- all | libajaxtags-java | 1.5.1-1 | - +- all | libakonadi-ruby | 4:4.8.4-1 | - +- all | libakonadi-ruby1.8 | 4:4.8.4-1 | - +- all | libakuma-java | 1.8-1 | - +- all | libakuma-java-doc | 1.8-1 | - +- all | libalgorithm-c3-perl | 0.08-1 | - +- all | libalgorithm-checkdigits-perl | 0.50-1 | - +- all | libalgorithm-dependency-perl | 1.110-1 | - +- all | libalgorithm-diff-perl | 1.19.02-2 | - +- all | libalgorithm-diff-ruby | 0.4-14 | - +- all | libalgorithm-diff-ruby1.8 | 0.4-14 | - +- all | libalgorithm-merge-perl | 0.08-2 | - +- all | libalgorithm-munkres-perl | 0.08-2 | - +- all | libalgorithm-numerical-sample-perl | 2010011201-1 | - +- all | libaliased-perl | 0.30-1 | - +- all | libalien-sdl-dev-perl | 1.430-4 | - +- all | libalien-sdl-perl | 1.430-4 | - +- all | liballegro-doc | 2:4.4.2-2.1 | - +- all | libalzabo-perl | 0.92-2 | - +- all | libamazon-ruby | 0.9.2-1 | - +- all | libamazon-sqs-simple-perl | 1.06-1 | - +- all | libamazonec2-ruby | 0.9.17-2 | - +- all | libamazonec2-ruby-doc | 0.9.17-2 | - +- all | libamazonec2-ruby1.8 | 0.9.17-2 | - +- all | libampsharp-cil-dev | 2.0.4-2 | - +- all | libampsharp2.0-cil | 2.0.4-2 | - +- all | libamrita-ruby1.8 | 1.0.2-10 | - +- all | libamrita2-ruby | 2.0.2+dfsg.1-2 | - +- all | libamrita2-ruby1.8 | 2.0.2+dfsg.1-3 | - +- all | libamrita2-ruby1.9.1 | 2.0.2+dfsg.1-3 | - +- all | libanimal-sniffer-java | 1.7-2 | - +- all | libanimal-sniffer-java-doc | 1.7-2 | - +- all | libannotation-indexer-java | 1.3-1 | - +- all | libannotation-indexer-java-doc | 1.3-1 | - +- all | libantelope-java | 3.5.1-2 | - +- all | libantelope-java-doc | 3.5.1-2 | - +- all | libantlr-java | 2.7.7+dfsg-4 | - +- all | libantlr-maven-plugin-java | 2.1-2 | - +- all | libantlr2.7-cil | 2.7.7+dfsg-4 | - +- all | libantlr3-gunit-java | 3.2-7 | - +- all | libantlr3-gunit-java-doc | 3.2-7 | - +- all | libany-moose-perl | 0.17-1 | - +- all | libany-template-processdir-perl | 0.07-1 | - +- all | libanydata-perl | 0.10-9 | - +- all | libanyevent-aggressiveidle-perl | 0.04-1 | - +- all | libanyevent-callback-perl | 0.06-1 | - +- all | libanyevent-dbd-pg-perl | 0.03-3 | - +- all | libanyevent-dbi-perl | 2.2-1 | - +- all | libanyevent-forkobject-perl | 0.09-1 | - +- all | libanyevent-http-perl | 2.14-1 | - +- all | libanyevent-httpd-perl | 0.93-3 | - +- all | libanyevent-i3-perl | 0.08-1+deb7u1 | - +- all | libanyevent-irc-perl | 0.96-1 | - +- all | libanyevent-redis-perl | 0.23-1 | - +- all | libanyevent-serialize-perl | 0.04-1 | - +- all | libanyevent-tools-perl | 0.12-1 | - +- all | libanyevent-xmpp-perl | 0.52-1 | - +- all | libaopalliance-java | 20070526-5 | - +- all | libaopalliance-java-doc | 20070526-5 | - +- all | libapache-admin-config-perl | 0.94-1.1 | - +- all | libapache-asp-perl | 2.62-1 | - +- all | libapache-authznetldap-perl | 0.07-4 | - +- all | libapache-dbi-perl | 1.11-1 | - +- all | libapache-dbilogger-perl | 0.93-12 | - +- all | libapache-gallery-perl | 1.0.2-1 | - +- all | libapache-htgroup-perl | 1.23-1 | - +- all | libapache-htpasswd-perl | 1.8-1.1 | - +- all | libapache-mime4j-java | 0.6.1-2 | - +- all | libapache-mime4j-java-doc | 0.6.1-2 | - +- all | libapache-mod-jk-doc | 1:1.2.37-1 | - +- all | libapache-mod-security | 2.6.6-6+deb7u1 | - +- all | libapache-poi-java | 3.6+dfsg-2 | - +- all | libapache-poi-java-doc | 3.6+dfsg-2 | - +- all | libapache-pom-java | 10-2 | - +- all | libapache-ruby1.8 | 1.2.6-2 | - +- all | libapache-session-browseable-perl | 0.7-1 | - +- all | libapache-session-ldap-perl | 0.2-1 | - +- all | libapache-session-perl | 1.89-1 | - +- all | libapache-session-wrapper-perl | 0.34-1 | - +- all | libapache-sessionx-perl | 2.01-4 | - +- all | libapache-singleton-perl | 0.15-1 | - +- all | libapache2-authcassimple-perl | 0.10-1 | - +- all | libapache2-authcookie-perl | 3.18-1 | - +- all | libapache2-mod-neko | 1.8.1-6 | - +- all | libapache2-mod-perl2-dev | 2.0.7-3 | - +- all | libapache2-mod-perl2-doc | 2.0.7-3 | - +- all | libapache2-mod-python-doc | 3.3.1-9 | - +- all | libapache2-mod-rivet-doc | 2.0.5-1 | - +- all | libapache2-reload-perl | 0.12-1 | - +- all | libapache2-sitecontrol-perl | 1.05-1 | - +- all | libapp-cache-perl | 0.37-1 | - +- all | libapp-cli-perl | 0.313-1 | - +- all | libapp-cmd-perl | 0.318-1 | - +- all | libapp-control-perl | 1.02-2 | - +- all | libapp-daemon-perl | 0.15-1 | - +- all | libapp-info-perl | 0.56-1 | - +- all | libapp-nopaste-perl | 0.33-1 | - +- all | libapp-options-perl | 1.12-1 | - +- all | libapp-rad-perl | 1.04-1 | - +- all | libapp-repl-perl | 0.012-1 | - +- all | libapp-termcast-perl | 0.12-1 | - +- all | libappconfig-perl | 1.66-1 | - +- all | libappindicator-doc | 0.4.92-2 | - +- all | libappindicator0.1-cil | 0.4.92-2 | - +- all | libappindicator0.1-cil-dev | 0.4.92-2 | - +- all | libapreq2-doc | 2.13-1 | - +- all | libapron-dev | 0.9.10-5.2 | - +- all | libapt-pkg-doc | 0.9.7.9+deb7u1 | - +! all | libaqbanking-data | 5.0.24-3 | 5.1.0beta-1~bpo70+1 ++ all | libaqbanking-data | - | 5.3.5beta-2~bpo70+1 +! all | libaqbanking-doc | 5.0.24-3 | 5.1.0beta-1~bpo70+1 ++ all | libaqbanking-doc | - | 5.3.5beta-2~bpo70+1 +- all | libarc-php | 2~20101006-2 | - +- all | libarch-perl | 0.5.2-1 | - +- all | libarchive-any-perl | 0.0932-1 | - +- all | libarchive-ar-perl | 1.14-1 | - +- all | libarchive-peek-perl | 0.35-1 | - +- all | libarchive-tar-wrapper-perl | 0.16-1 | - +- all | libarchive-zip-perl | 1.30-6 | - +- all | libargs4j-java | 2.0.16-2 | - +- all | libargs4j-java-doc | 2.0.16-2 | - +- all | libargtable2-docs | 12-1 | - +- all | libarray-compare-perl | 2.02-1 | - +- all | libarray-diff-perl | 0.07-1 | - +- all | libarray-printcols-perl | 2.1-9 | - +- all | libarray-unique-perl | 0.08-1 | - +- all | libart2.0-cil | 2.24.2-3 | - +- all | libart2.0-cil-dev | 2.24.2-3 | - +- all | libasa-perl | 0.02-1 | - +- all | libasio-dev | 1.4.1-3.2 | - +- all | libasio-doc | 1.4.1-3.2 | - +- all | libasm-java | 1.5.3-7 | - +- all | libasm-java-doc | 1.5.3-7 | - +- all | libasm2-java | 2.2.3-6 | - +- all | libasm2-java-doc | 2.2.3-6 | - +- all | libasm3-java | 3.3.2-1 | - +- all | libasm3-java-doc | 3.3.2-1 | - +- all | libasound2-doc | 1.0.25-4 | - +- all | libaspect-perl | 1.02-1 | - +- all | libaspectj-java | 1.6.12+dfsg-3 | - +- all | libaspectj-java-doc | 1.6.12+dfsg-3 | - +- all | libassimp-doc | 3.0~dfsg-1 | - +- all | libasterisk-agi-perl | 1.01-2 | - +- all | libastro-fits-header-perl | 3.05-1 | - +- all | libasync-http-client-java | 1.6.5-1 | - +- all | libasync-http-client-java-doc | 1.6.5-1 | - +- all | libasync-mergepoint-perl | 0.04-1 | - +- all | libatinject-jsr330-api-java | 1.0-2 | - +- all | libatinject-jsr330-api-java-doc | 1.0-2 | - +- all | libatk-wrapper-java | 0.30.4-3 | - +- all | libatk1-ruby | 1.1.3-2 | - +- all | libatk1-ruby1.8 | 1.1.3-2 | - +- all | libatk1.0-data | 2.4.0-2 | - +- all | libatk1.0-doc | 2.4.0-2 | - +- all | libatkmm-1.6-doc | 2.22.6-1 | - +- all | libatlas-cpp-doc | 0.6.2-3 | - +- all | libatlas-dev | 3.8.4-9+deb7u1 | - +- all | libatlas-doc | 3.8.4-9+deb7u1 | - +- all | libatlas3gf-base | 3.8.4-9+deb7u1 | - +- all | libatombus-perl | 1.0405-1 | - +- all | libatompub-perl | 0.3.7-1 | - +- all | libaubio-doc | 0.3.2-4.2 | - +- all | libaudio-file-perl | 0.11-3 | - +- all | libaudio-moosic-perl | 0.10-2 | - +- all | libaudio-mpd-common-perl | 1.120881-1 | - +- all | libaudio-mpd-perl | 1.120610-1 | - +- all | libaudio-musepack-perl | 1.0.1-1 | - +- all | libaudio-rpld-perl | 0.004-1 | - +- all | libaudio-scrobbler-perl | 0.01-2.1 | - +- all | libaudio-wav-perl | 0.13-1 | - +- all | libaudio-wma-perl | 1.3-1 | - +- all | libaugeas-ruby | 0.4.1-1.1 | - +- all | libauth-yubikey-decrypter-perl | 0.07-1 | - +- all | libauth-yubikey-webclient-perl | 3.00-1 | - +- all | libauthcas-perl | 1.5-1 | - +- all | libauthen-bitcard-perl | 0.90-1 | - +- all | libauthen-captcha-perl | 1.023-5 | - +- all | libauthen-cas-client-perl | 0.05-1 | - +- all | libauthen-ntlm-perl | 1.09-1 | - +- all | libauthen-oath-perl | 1.0.0-1 | - +- all | libauthen-passphrase-perl | 0.008-1 | - +- all | libauthen-radius-perl | 0.20-1 | - +- all | libauthen-sasl-perl | 2.1500-1 | - +- all | libauthen-simple-cdbi-perl | 0.2-2 | - +- all | libauthen-simple-dbi-perl | 0.2-2 | - +- all | libauthen-simple-dbm-perl | 0.2-2 | - +- all | libauthen-simple-http-perl | 0.2-3 | - +- all | libauthen-simple-kerberos-perl | 0.1-3 | - +- all | libauthen-simple-ldap-perl | 0.3-1 | - +- all | libauthen-simple-net-perl | 0.2-3 | - +- all | libauthen-simple-pam-perl | 0.2-3 | - +- all | libauthen-simple-passwd-perl | 0.6-2 | - +- all | libauthen-simple-perl | 0.5-1 | - +- all | libauthen-simple-radius-perl | 0.1-2 | - +- all | libauthen-simple-smb-perl | 0.1-3 | - +- all | libauthority-shared-perl | 0.006-1 | - +- all | libautobox-core-perl | 1.21-1 | - +- all | libautobox-dump-perl | 20090426.1746-1 | - +- all | libautobox-list-util-perl | 20090629-1 | - +- all | libautodie-perl | 2.12-1 | - +- all | libautomaton-java | 1.11-8-1 | - +- all | libav-doc | 6:0.8.9-1 | - +- all | libav-extra-dbg | 6:0.8.9-1 | - +- all | libavahi-cil-dev | 0.6.19-4.2 | - +- all | libavahi-ui-cil-dev | 0.6.19-4.2 | - +- all | libavahi-ui0.0-cil | 0.6.19-4.2 | - +- all | libavahi1.0-cil | 0.6.19-4.2 | - +- all | libavalon-framework-java | 4.2.0-8 | - +- all | libavalon-framework-java-doc | 4.2.0-8 | - +- all | libavdevice-extra-53 | 6:0.8.9-1 | - +- all | libavfilter-extra-2 | 6:0.8.9-1 | - +- all | libavformat-extra-53 | 6:0.8.9-1 | - +- all | libavifile-0.7-common | 1:0.7.48~20090503.ds-13 | - +- all | libavutil-extra-51 | 6:0.8.9-1 | - +- all | libawl-php | 0.53-1 | - +- all | libaws-doc | 2.10.2-4 | - +- all | libaxiom-java | 1.2.8-1 | - +- all | libaxis-java | 1.4-16.2 | - +- all | libaxis-java-doc | 1.4-16.2 | - +- all | libb-hooks-endofscope-perl | 0.11-1 | - +- all | libb-keywords-perl | 1.12-1 | - +- all | libb-perlreq-perl | 0.80-1 | - +- all | libbabl-doc | 0.1.10-1 | - +- all | libbackport-util-concurrent-java | 3.1-3 | - +- all | libbackport-util-concurrent-java-doc | 3.1-3 | - +- all | libball1.4-data | 1.4.1+20111206-4 | - +- all | libball1.4-doc | 1.4.1+20111206-4 | - +- all | libbamf-doc | 0.2.118-1 | - +- all | libbarby-ruby | 0.5.0-1 | - +- all | libbarby-ruby-doc | 0.5.0-1 | - +- all | libbarby-ruby1.8 | 0.5.0-1 | - +- all | libbarcode-code128-perl | 2.01-2 | - +- all | libbase-java | 1.1.6-2 | - +- all | libbash | 0.9.11-1 | - +- all | libbash-doc | 0.9.11-1 | - +- all | libbasicplayer-java | 3.0-6 | - +- all | libbatik-java | 1.7+dfsg-3 | - +- all | libbatteries-ocaml-doc | 1.4.3-1 | - +- all | libbcel-java | 5.2-9 | - +- all | libbcel-java-doc | 5.2-9 | - +- all | libbcmail-java | 1.44+dfsg-3.1 | - +- all | libbcmail-java-doc | 1.44+dfsg-3.1 | - +- all | libbcpg-java | 1.44+dfsg-3.1 | - +- all | libbcpg-java-doc | 1.44+dfsg-3.1 | - +- all | libbcprov-java | 1.44+dfsg-3.1 | - +- all | libbcprov-java-doc | 1.44+dfsg-3.1 | - +- all | libbctsp-java | 1.44+dfsg-3.1 | - +- all | libbctsp-java-doc | 1.44+dfsg-3.1 | - +- all | libbeansbinding-java | 1.2.1-1 | - +- all | libbeansbinding-java-doc | 1.2.1-1 | - +- all | libbenchmark-apps-perl | 0.04-1 | - +- all | libbenchmark-progressbar-perl | 0.00001-1 | - +- all | libbenchmark-timer-perl | 0.7102-1 | - +- all | libbencode-perl | 1.4-1 | - +- all | libbest-perl | 0.14-1 | - +- all | libbetter-appframework-java | 1.9-3 | - +- all | libbetter-appframework-java-doc | 1.9-3 | - +- all | libbg1-doc | 1.106-1 | - +- all | libbiblio-citation-parser-perl | 1.10+dfsg-1 | - +- all | libbiblio-endnotestyle-perl | 0.05-1 | - +- all | libbiblio-isis-perl | 0.24-1.1 | - +- all | libbind-config-parser-perl | 0.01-1 | - +- all | libbind-confparser-perl | 0.95-3 | - +- all | libbindex-java | 2.2+svn101-1 | - +- all | libbio-asn1-entrezgene-perl | 1.100-1 | - +- all | libbio-chado-schema-perl | 0.10010-1 | - +- all | libbio-das-lite-perl | 2.04-1.1 | - +- all | libbio-graphics-perl | 2.26-1 | - +- all | libbio-mage-perl | 20030502.3-2 | - +- all | libbio-mage-utils-perl | 20030502.0-1 | - +- all | libbio-perl-perl | 1.6.901-3 | - +- all | libbio-perl-run-perl | 1.6.9-1 | - +- all | libbio-primerdesigner-perl | 0.07-1 | - +- all | libbio-ruby | 1.4.2-3 | - +- all | libbio-ruby1.8 | 1.4.2-3 | - +- all | libbiojava-java | 1:1.7.1-2 | - +- all | libbiojava-java-demos | 1:1.7.1-2 | - +- all | libbiojava-java-doc | 1:1.7.1-2 | - +- all | libbiojava1.7-java | 1:1.7.1-2 | - +- all | libbiojava3-java | 3.0.4-1 | - +- all | libbiojava3-java-doc | 3.0.4-1 | - +- all | libbiojava3.0-java | 3.0.4-1 | - +- all | libbit-vector-minimal-perl | 1.3-4 | - +- all | libbitstream-dev | 1.0-1 | - +- all | libblas-doc | 1.2.20110419-5 | - +- all | libblas3gf | 1.2.20110419-5 | - +- all | libblitz-doc | 1:0.9-13 | - +- all | libbloom-filter-perl | 1.0-3 | - +- all | libbluecloth-ruby | 2.2.0-3 | - +- all | libbluecloth-ruby1.8 | 2.2.0-3 | - +- all | libbluray-bdj | 1:0.2.2-1 | - +- all | libbluray-doc | 1:0.2.2-1 | - ++ all | libboinc-app-dev | - | 7.0.65+dfsg-3~bpo70+1 +- all | libbonobo2-common | 2.24.3-1 | - +- all | libbonoboui2-common | 2.24.3-1 | - +- all | libboo-cil-dev | 0.9.5~git20110729.r1.202a430-2 | - +- all | libboo2.0.9-cil | 0.9.5~git20110729.r1.202a430-2 | - +- all | libboolean-perl | 0.28-1 | - +- all | libboost-doc | 1.49.0.1 | - +- all | libboost1.49-doc | 1.49.0-3.2 | - +- all | libbot-basicbot-perl | 0.7-2 | - +- all | libbot-training-perl | 0.04-1 | - +- all | libboulder-perl | 1.30-4 | - +- all | libbrailleutils-java | 1.2~b-2 | - +- all | libbrailleutils-java-doc | 1.2~b-2 | - ++ all | libbread-board-perl | - | 0.29-1~bpo70+1 +- all | libbridge-method-injector-java | 1.4-3 | - +- all | libbridge-method-injector-java-doc | 1.4-3 | - +- all | libbrlapi-java | 4.4-10+deb7u1 | - +- all | libbrowser-open-perl | 0.04-1 | - +- all | libbse-dev | 0.7.4-5 | - +- all | libbsearch-ruby | 1.5-9 | - +- all | libbsearch-ruby1.8 | 1.5-9 | - +- all | libbsf-java | 1:2.4.0-5 | - +- all | libbsf-java-doc | 1:2.4.0-5 | - +- all | libbt | 0.70.1-13 | - +- all | libbtm-java | 2.1.2-1 | - +- all | libbuild-helper-maven-plugin-java | 1.5-2 | - +- all | libbuild-helper-maven-plugin-java-doc | 1.5-2 | - +- all | libbuilder-ruby | 3.0.0-3 | - +- all | libbuilder-ruby1.8 | 3.0.0-3 | - +- all | libbuilder-ruby1.9.1 | 3.0.0-3 | - +- all | libbunny-ruby | 0.7.8-1 | - +- all | libbunny-ruby-doc | 0.7.8-1 | - +- all | libbunny-ruby1.8 | 0.7.8-1 | - +- all | libbunny-ruby1.9.1 | 0.7.8-1 | - +- all | libburn-doc | 1.2.2-2 | - +- all | libbusiness-creditcard-perl | 0.31-1 | - +- all | libbusiness-edi-perl | 0.05-1 | - +- all | libbusiness-isbn-data-perl | 20081208-1 | - +- all | libbusiness-isbn-perl | 2.05-1 | - +- all | libbusiness-issn-perl | 0.91-2 | - +- all | libbusiness-onlinepayment-authorizenet-perl | 3.22-1 | - +- all | libbusiness-onlinepayment-ippay-perl | 0.06-2 | - +- all | libbusiness-onlinepayment-openecho-perl | 0.03-2 | - +- all | libbusiness-onlinepayment-payconnect-perl | 0.02-1 | - +- all | libbusiness-onlinepayment-payflowpro-perl | 1.01-2 | - +- all | libbusiness-onlinepayment-paymentech-perl | 2.04-1 | - +- all | libbusiness-onlinepayment-perl | 3.02-1 | - +- all | libbusiness-onlinepayment-tclink-perl | 1.03-3 | - +- all | libbusiness-onlinepayment-transactioncentral-perl | 0.06-2 | - +- all | libbusiness-onlinepayment-viaklix-perl | 0.01-3 | - +- all | libbusiness-paypal-api-perl | 0.69-2 | - +- all | libbusiness-tax-vat-validation-perl | 1.00-1 | - +- all | libbusiness-us-usps-webtools-perl | 1.11-1 | - +- all | libbytecode-java | 0.92.svn.20090106-1 | - +- all | libbytecode-java-doc | 0.92.svn.20090106-1 | - +- all | libbytelist-java | 1.0.6-1 | - +- all | libc3p0-java | 0.9.1.2-7 | - +- all | libc3p0-java-doc | 0.9.1.2-7 | - +- all | libcache-cache-perl | 1.06-2 | - +- all | libcache-historical-perl | 0.05-1 | - +- all | libcache-memcached-managed-perl | 0.24-1 | - +- all | libcache-memcached-perl | 1.30-1 | - +- all | libcache-perl | 2.04-3 | - +- all | libcache-ref-perl | 0.04-1 | - +- all | libcache-simple-timedexpiry-perl | 0.27-2 | - +- all | libcairo-ruby | 1.12.2-2 | - +- all | libcairo-ruby1.8 | 1.12.2-2 | - +- all | libcairo2-doc | 1.12.2-3 | - +- all | libcairomm-1.0-doc | 1.10.0-1 | - ++ all | libcajun-dev | - | 2.0.3-1~bpo70+1 +- all | libcal-dav-perl | 0.6-2 | - +- all | libcal3d-doc | 0.11.0-4.1 | - +- all | libcalendar-ocaml-doc | 2.03-1 | - +- all | libcalendar-simple-perl | 1.21-1 | - +- all | libcam-pdf-perl | 1.58-2 | - +- all | libcamlimages-ocaml-doc | 1:4.0.1-4 | - +- all | libcamomile-ocaml-data | 0.8.4-2 | - +- all | libcanberra-doc | 0.28-6 | - +- all | libcanberra-gtk-common-dev | 0.28-6 | - +- all | libcaptcha-recaptcha-perl | 0.94-3 | - +- all | libcapture-tiny-perl | 0.18-1 | - +- all | libcaribou-common | 0.4.4-1 | - +- all | libcarp-always-perl | 0.11-1 | - +- all | libcarp-assert-more-perl | 1.12-2 | - +- all | libcarp-assert-perl | 0.20-2 | - +- all | libcarp-clan-perl | 6.04-1 | - +- all | libcarp-clan-share-perl | 0.013-1 | - +- all | libcarp-datum-perl | 1:0.1.3-6 | - +- all | libcastor-anttasks-java | 1.3.2-1 | - +- all | libcastor-codegen-java | 1.3.2-1 | - +- all | libcastor-core-java | 1.3.2-1 | - +- all | libcastor-ddlgen-java | 1.3.2-1 | - +- all | libcastor-java-doc | 1.3.2-1 | - +- all | libcastor-jdo-java | 1.3.2-1 | - +- all | libcastor-xml-java | 1.3.2-1 | - +- all | libcastor-xml-schema-java | 1.3.2-1 | - +- all | libcatalyst-action-rest-perl | 1.04-1 | - +- all | libcatalyst-actionrole-acl-perl | 0.07-1 | - +- all | libcatalyst-authentication-credential-http-perl | 1.014-1 | - +- all | libcatalyst-controller-actionrole-perl | 0.15-1 | - +- all | libcatalyst-devel-perl | 1.37-1 | - +- all | libcatalyst-engine-apache-perl | 1.16-1 | - +- all | libcatalyst-engine-psgi-perl | 0.13+dfsg-1 | - +- all | libcatalyst-manual-perl | 5.9004-1 | - +- all | libcatalyst-model-cdbi-perl | 0.12-1 | - +- all | libcatalyst-modules-extra-perl | 8 | - +- all | libcatalyst-modules-perl | 44 | - +- all | libcatalyst-perl | 5.90015-1 | - +- all | libcatalyst-plugin-log-dispatch-perl | 0.121-1 | - +- all | libcatalyst-plugin-scheduler-perl | 0.10-1 | - +- all | libcatalyst-plugin-smarturi-perl | 0.036-1 | - +- all | libcatalyst-plugin-unicode-encoding-perl | 1.7-1 | - +- all | libcatalyst-view-petal-perl | 0.03-1 | - +- all | libcatalyst-view-tt-perl | 0.38-1 | - +- all | libcatalystx-injectcomponent-perl | 0.024-1 | - +- all | libcatalystx-leakchecker-perl | 0.06-1 | - +- all | libcatalystx-simplelogin-perl | 0.17-1 | - +- all | libccfits-doc | 2.4-1 | - +- all | libccrtp-doc | 2.0.3-4 | - +- all | libccss-doc | 0.5.0-4 | - +- all | libcddb-file-perl | 1.05-1 | - +- all | libcddb-get-perl | 2.28-1 | - +- all | libcddb-perl | 1.220-1 | - +- all | libcdi-api-java | 1.0-1 | - +- all | libcdi-api-java-doc | 1.0-1 | - +- all | libcdk-java | 1:1.2.10-3 | - +- all | libcegui-mk2-doc | 0.7.6-2 | - +- all | libcext-doc | 6.1.1-2 | - +- all | libcfitsio3-doc | 3.300-2 | - +- all | libcgal-demo | 4.0-5 | - +- all | libcgi-ajax-perl | 0.707-1 | - +- all | libcgi-application-basic-plugin-bundle-perl | 0.8 | - +- all | libcgi-application-dispatch-perl | 3.07-2 | - +- all | libcgi-application-extra-plugin-bundle-perl | 0.6 | - +- all | libcgi-application-perl | 4.50-1 | - +- all | libcgi-application-plugin-actiondispatch-perl | 0.98-1 | - +- all | libcgi-application-plugin-ajaxupload-perl | 0.0.3-3 | - +- all | libcgi-application-plugin-anytemplate-perl | 0.18-1 | - +- all | libcgi-application-plugin-authentication-perl | 0.20-1 | - +- all | libcgi-application-plugin-authorization-perl | 0.07-2 | - +- all | libcgi-application-plugin-autorunmode-perl | 0.18-1 | - +- all | libcgi-application-plugin-captcha-perl | 0.04-1 | - +- all | libcgi-application-plugin-config-simple-perl | 1.01-1 | - +- all | libcgi-application-plugin-configauto-perl | 1.33-1 | - +- all | libcgi-application-plugin-dbh-perl | 4.00-1 | - +- all | libcgi-application-plugin-dbiprofile-perl | 0.07-1 | - +- all | libcgi-application-plugin-devpopup-perl | 1.07-1 | - +- all | libcgi-application-plugin-fillinform-perl | 1.15-1 | - +- all | libcgi-application-plugin-formstate-perl | 0.12-1 | - +- all | libcgi-application-plugin-forward-perl | 1.06-1 | - +- all | libcgi-application-plugin-json-perl | 1.02-1 | - +- all | libcgi-application-plugin-linkintegrity-perl | 0.06-1 | - +- all | libcgi-application-plugin-logdispatch-perl | 1.02-1 | - +- all | libcgi-application-plugin-messagestack-perl | 0.34-1 | - +- all | libcgi-application-plugin-protectcsrf-perl | 1.01-1 | - +- all | libcgi-application-plugin-ratelimit-perl | 1.0-2 | - +- all | libcgi-application-plugin-requiressl-perl | 0.04-1 | - +- all | libcgi-application-plugin-session-perl | 1.03-1 | - +- all | libcgi-application-plugin-stream-perl | 2.10-1 | - +- all | libcgi-application-plugin-tt-perl | 1.05-2 | - +- all | libcgi-application-plugin-validaterm-perl | 2.5-1 | - +- all | libcgi-application-plugin-viewcode-perl | 1.02-1 | - +- all | libcgi-application-server-perl | 0.062-1 | - +- all | libcgi-compile-perl | 0.15-1 | - +- all | libcgi-cookie-splitter-perl | 0.02-2 | - +- all | libcgi-emulate-psgi-perl | 0.14-1 | - +- all | libcgi-extratags-perl | 0.03-1 | - +- all | libcgi-fast-perl | 5.14.2-21+deb7u1 | - +- all | libcgi-formalware-perl | 1.13-1 | - +- all | libcgi-formbuilder-perl | 3.08-1 | - +- all | libcgi-formbuilder-source-yaml-perl | 1.0.8-2 | - +- all | libcgi-pm-perl | 3.61-2 | - +- all | libcgi-psgi-perl | 0.15-1 | - +- all | libcgi-session-driver-memcached-perl | 0.04-1 | - +- all | libcgi-session-expiresessions-perl | 1.12-1 | - +- all | libcgi-session-perl | 4.46-1 | - +- all | libcgi-session-serialize-yaml-perl | 4.26-1 | - +- all | libcgi-simple-perl | 1.113-2 | - +- all | libcgi-ssi-parser-perl | 0.01-1 | - +- all | libcgi-ssi-perl | 0.92-3 | - +- all | libcgi-untaint-date-perl | 1.00-2 | - +- all | libcgi-untaint-email-perl | 0.03-2 | - +- all | libcgi-untaint-perl | 1.26-4 | - +- all | libcgi-uploader-perl | 2.17-1 | - +- all | libcgi-validop-perl | 0.56-1 | - +- all | libcgi-xml-perl | 0.1-13 | - +- all | libcgi-xmlapplication-perl | 1.1.3-6 | - +- all | libcgi-xmlform-perl | 0.10-13 | - +- all | libcgicc-doc | 3.2.9-3 | - +- all | libcglib-java | 2.2.2+dfsg-5 | - +- all | libcglib-java-doc | 2.2.2+dfsg-5 | - +- all | libchado-perl | 1.22-4 | - +- all | libchamplain-doc | 0.12.3-1 | - +- all | libchamplain-gtk-doc | 0.12.3-1 | - +- all | libchart-clicker-perl | 2.83-1 | - +- all | libchart-gnuplot-perl | 0.17-1 | - +- all | libchart-perl | 2.4.5-1 | - +- all | libchart-strip-perl | 1.08-1 | - +- all | libcheck-isa-perl | 0.04-1 | - +- all | libcheese-doc | 3.4.2-2 | - +- all | libchef-ruby | 10.12.0-3 | - +- all | libchef-ruby1.8 | 10.12.0-3 | - +- all | libchemistry-elements-perl | 1.07-2 | - +- all | libchemistry-formula-perl | 3.0.1-1 | - +- all | libchi-driver-memcached-perl | 0.14-3 | - +- all | libchi-perl | 0.54-1 | - +- all | libchild-perl | 0.009-1 | - +- all | libchipcard-data | 5.0.3beta-3 | - +- all | libchipcard-libgwenhywfar47-plugins | 5.0.3beta-3 | - +- all | libchronic-ruby | 0.6.7-2 | - +- all | libcipux-cat-web-perl | 3.4.0.3-4.1 | - +- all | libcipux-dog-perl | 3.4.0.0-6 | - +- all | libcipux-object-perl | 3.4.0.5-2 | - +- all | libcipux-passwd-perl | 3.4.0.3-2 | - +- all | libcipux-perl | 3.4.0.13-4 | - +- all | libcipux-rbac-simple-perl | 3.4.0.0-4 | - +- all | libcipux-rpc-client-perl | 3.4.0.7-2 | - +- all | libcipux-rpc-perl | 3.4.0.9-3 | - +- all | libcipux-storage-perl | 3.4.0.2-6 | - +- all | libcipux-task-perl | 3.4.0.7-4 | - +- all | libclalsadrv-dev | 2.0.0-3 | - +- all | libclam-doc | 1.4.0-5.1 | - +- all | libclamav-client-perl | 0.11-2 | - +- all | libclass-accessor-chained-perl | 0.01.1~debian-2.1 | - +- all | libclass-accessor-children-perl | 0.02-1 | - +- all | libclass-accessor-class-perl | 0.501-3 | - +- all | libclass-accessor-classy-perl | 0.9.1-1 | - +- all | libclass-accessor-grouped-perl | 0.10006-1 | - +- all | libclass-accessor-lvalue-perl | 0.11-2 | - +- all | libclass-accessor-named-perl | 0.008-1 | - +- all | libclass-accessor-perl | 0.34-1 | - +- all | libclass-adapter-perl | 1.07-1 | - +- all | libclass-autouse-perl | 2.01-1 | - +- all | libclass-base-perl | 0.05-1 | - +- all | libclass-c3-adopt-next-perl | 0.12-1 | - +- all | libclass-c3-componentised-perl | 1.001000-1 | - +- all | libclass-c3-perl | 0.24-1 | - +- all | libclass-container-perl | 0.12-3 | - +- all | libclass-contract-perl | 1.14-6 | - +- all | libclass-csv-perl | 1.03-2.1 | - +- all | libclass-data-accessor-perl | 0.04004-1 | - +- all | libclass-data-inheritable-perl | 0.08-1 | - +- all | libclass-dbi-abstractsearch-perl | 0.07-3 | - +- all | libclass-dbi-asform-perl | 2.42-6 | - +- all | libclass-dbi-fromcgi-perl | 1.00-4 | - +- all | libclass-dbi-fromform-perl | 0.04-3 | - +- all | libclass-dbi-loader-perl | 0.34-2 | - +- all | libclass-dbi-loader-relationship-perl | 1:1.2-4 | - +- all | libclass-dbi-mysql-perl | 1.00-3 | - +- all | libclass-dbi-pager-perl | 0.08-4 | - +- all | libclass-dbi-perl | 3.0.17-4 | - +- all | libclass-dbi-pg-perl | 0.09-4 | - +- all | libclass-dbi-plugin-abstractcount-perl | 0.08-1 | - +- all | libclass-dbi-plugin-pager-perl | 0.561-4 | - +- all | libclass-dbi-plugin-perl | 0.03-5 | - +- all | libclass-dbi-plugin-retrieveall-perl | 1.04-3 | - +- all | libclass-dbi-plugin-type-perl | 0.02-7 | - +- all | libclass-dbi-sqlite-perl | 0.11-4 | - +- all | libclass-dbi-sweet-perl | 0.10-1 | - +- all | libclass-default-perl | 1.51-2 | - +- all | libclass-delegator-perl | 0.09-1 | - +- all | libclass-errorhandler-perl | 0.01-2 | - +- all | libclass-factory-perl | 1.06-2 | - +- all | libclass-factory-util-perl | 1.7-2 | - +- all | libclass-field-perl | 0.15-3 | - +- all | libclass-gomor-perl | 1.02-1 | - +- all | libclass-handle-perl | 1.07-2 | - +- all | libclass-inner-perl | 0.200001-1 | - +- all | libclass-insideout-perl | 1.10-2 | - +- all | libclass-inspector-perl | 1.27-1 | - +- all | libclass-isa-perl | 0.36-3 | - +- all | libclass-load-perl | 0.17-1 | - +- all | libclass-loader-perl | 2.03-1 | - +- all | libclass-makemethods-perl | 1.01-4 | - +- all | libclass-meta-perl | 0.65-1 | - +- all | libclass-method-modifiers-perl | 1.09-1 | - +- all | libclass-mix-perl | 0.003-1 | - +- all | libclass-mixinfactory-perl | 0.92-2 | - +- all | libclass-multimethods-perl | 1.70-5 | - +- all | libclass-objecttemplate-perl | 0.7-6 | - +- all | libclass-ooorno-perl | 0.011-1 | - +- all | libclass-perl | 1.00-1 | - +- all | libclass-pluggable-perl | 0.022-2 | - +- all | libclass-prototyped-perl | 1.11-3 | - +- all | libclass-returnvalue-perl | 0.55-1 | - +- all | libclass-singleton-perl | 1.4-1 | - +- all | libclass-spiffy-perl | 0.15-3 | - +- all | libclass-std-fast-perl | 0.0.8-1 | - +- all | libclass-std-perl | 0.0.9-2 | - +- all | libclass-std-utils-perl | 0.0.3-1 | - +- all | libclass-throwable-perl | 0.10-2 | - +- all | libclass-trait-perl | 0.31-1 | - +- all | libclass-trigger-perl | 0.14-1 | - +- all | libclass-unload-perl | 0.07-1 | - +- all | libclass-virtual-perl | 0.06-3 | - +- all | libclass-whitehole-perl | 0.04-6 | - +- all | libclassworlds-java | 1.1-final-5 | - +- all | libclassworlds-java-doc | 1.1-final-5 | - +- all | libclaw-doc | 1.7.0-3 | - +- all | libclaw-i18n | 1.7.0-3 | - +- all | libclean-crypto-java | 1-1 | - +- all | libclirr-maven-plugin-java | 2.3-1 | - +- all | libclojure-maven-plugin-java | 1.3.3-3 | - +- all | libclone-pp-perl | 1.02-1 | - +- all | libclucy-clojure | 0.3.0-1 | - +- all | libclustalo-doc | 1.1.0-1 | - +- all | libcluster-glue | 1.0.9+hg2665-1 | - +- all | libcluster-glue-dev | 1.0.9+hg2665-1 | - +- all | libclutter-1.0-common | 1.10.8-2 | - +- all | libclutter-1.0-doc | 1.10.8-2 | - +- all | libclutter-cil | 1.0.0~alpha3~git20090817.r1.349dba6-8 | - +- all | libclutter-cil-dev | 1.0.0~alpha3~git20090817.r1.349dba6-8 | - +- all | libclutter-gst-doc | 1.5.4-1+build0 | - +- all | libclutter-gtk-1.0-doc | 1.2.0-2 | - +- all | libclutter-imcontext-0.1-doc | 0.1.4-3 | - +- all | libcmdparse-ruby | 2.0.5-1 | - +- all | libcmdparse2-ruby | 2.0.5-1 | - +- all | libcmdparse2-ruby1.8 | 2.0.5-1 | - +- all | libcobertura-java | 1.9.4.1+dfsg-3 | - +- all | libcobertura-java-doc | 1.9.4.1+dfsg-3 | - +- all | libcobra-java | 0.98.4-4 | - +- all | libcodemodel-java | 2.1-1 | - +- all | libcodemodel-java-doc | 2.1-1 | - +- all | libcodenarc-groovy-java | 0.13-2 | - +- all | libcodenarc-groovy-java-doc | 0.13-2 | - +- all | libcoderay-ruby | 1.0.6-2 | - +- all | libcoderay-ruby1.8 | 1.0.6-2 | - +- all | libcogl-common | 1.10.2-7 | - +- all | libcogl-doc | 1.10.2-7 | - +- all | libcoin60-doc | 3.1.3-2.2 | - +- all | libcoin60-runtime | 3.1.3-2.2 | - ++ all | libcoin80-doc | - | 3.1.4~abc9f50-3~bpo70+1 ++ all | libcoin80-runtime | - | 3.1.4~abc9f50-3~bpo70+1 +- all | libcollections15-java | 4.01+ds1-1 | - +- all | libcolor-calc-perl | 1.073-1 | - +- all | libcolor-library-perl | 0.021-1 | - +- all | libcolor-palette-perl | 0.100002-1 | - +- all | libcolor-scheme-perl | 1.02-3 | - +- all | libcolor-tools-ruby | 1.4.1-2 | - +- all | libcolor-tools-ruby-doc | 1.4.1-2 | - +- all | libcolor-tools-ruby1.8 | 1.4.1-2 | - +- all | libcolorchooser-java | 1.0+dfsg-1 | - +- all | libcolorchooser-java-doc | 1.0+dfsg-1 | - +- all | libcolorpicker-java | 1.0.0-2 | - +- all | libcolorpicker-java-doc | 1.0.0-2 | - +- all | libcommandline-ruby | 0.7.10-12 | - +- all | libcommandline-ruby-doc | 0.7.10-12 | - +- all | libcommandline-ruby1.8 | 0.7.10-12 | - +- all | libcommon-sense-perl | 3.6-1 | - +- all | libcommoncpp2-doc | 1.8.1-5 | - +- all | libcommons-attributes-java | 2.2-8 | - +- all | libcommons-attributes-java-doc | 2.2-8 | - +- all | libcommons-beanutils-java | 1.8.3-3 | - +- all | libcommons-beanutils-java-doc | 1.8.3-3 | - +- all | libcommons-cli-java | 1.2-3 | - +- all | libcommons-codec-java | 1.6-1 | - +- all | libcommons-codec-java-doc | 1.6-1 | - +- all | libcommons-collections-java | 2.1.1-10 | - +- all | libcommons-collections-java-doc | 2.1.1-10 | - +- all | libcommons-collections3-java | 3.2.1-5 | - +- all | libcommons-collections3-java-doc | 3.2.1-5 | - +- all | libcommons-compress-java | 1.4.1-2 | - +- all | libcommons-configuration-java | 1.7-1 | - +- all | libcommons-configuration-java-doc | 1.7-1 | - +- all | libcommons-csv-java | 0.1-SNAPSHOT+svn678580-3 | - +- all | libcommons-csv-java-doc | 0.1-SNAPSHOT+svn678580-3 | - +- all | libcommons-daemon-java | 1.0.10-3 | - +- all | libcommons-dbcp-java | 1.4-3 | - +- all | libcommons-dbcp-java-doc | 1.4-3 | - +- all | libcommons-digester-java | 1.8.1-3 | - +- all | libcommons-digester-java-doc | 1.8.1-3 | - +- all | libcommons-discovery-java | 0.5-3 | - +- all | libcommons-discovery-java-doc | 0.5-3 | - +- all | libcommons-el-java | 1.0-7 | - +- all | libcommons-exec-java | 1.0.1-1 | - +- all | libcommons-fileupload-java | 1.2.2-1+deb7u1 | - +- all | libcommons-fileupload-java-doc | 1.2.2-1+deb7u1 | - +- all | libcommons-httpclient-java | 3.1-10.2 | - +- all | libcommons-httpclient-java-doc | 3.1-10.2 | - +- all | libcommons-io-java | 1.4-4 | - +- all | libcommons-io-java-doc | 1.4-4 | - +- all | libcommons-javaflow-java | 0.0~svn20060411-5 | - +- all | libcommons-javaflow-java-doc | 0.0~svn20060411-5 | - +- all | libcommons-jci-eclipse-java | 1.0-5 | - +- all | libcommons-jci-groovy-java | 1.0-5 | - +- all | libcommons-jci-janino-java | 1.0-5 | - +- all | libcommons-jci-java | 1.0-5 | - +- all | libcommons-jci-java-doc | 1.0-5 | - +- all | libcommons-jci-rhino-java | 1.0-5 | - +- all | libcommons-jexl-java | 1.1-3 | - +- all | libcommons-jxpath-java | 1.3-5 | - +- all | libcommons-jxpath-java-doc | 1.3-5 | - +- all | libcommons-lang-java | 2.6-3 | - +- all | libcommons-lang-java-doc | 2.6-3 | - +- all | libcommons-lang3-java | 3.1-1 | - +- all | libcommons-lang3-java-doc | 3.1-1 | - +- all | libcommons-launcher-java | 1.1-6 | - +- all | libcommons-logging-java | 1.1.1-9 | - +- all | libcommons-logging-java-doc | 1.1.1-9 | - +- all | libcommons-math-java | 2.2-2 | - +- all | libcommons-math-java-doc | 2.2-2 | - +- all | libcommons-modeler-java | 2.0.1-6 | - +- all | libcommons-modeler-java-doc | 2.0.1-6 | - +- all | libcommons-net-java | 1.4.1-5 | - +- all | libcommons-net1-java | 1.4.1-5 | - +- all | libcommons-net2-java | 2.2-2 | - +- all | libcommons-net2-java-doc | 2.2-2 | - +- all | libcommons-openpgp-java | 0+svn533492-3 | - +- all | libcommons-openpgp-java-doc | 0+svn533492-3 | - +- all | libcommons-parent-java | 22-2 | - +- all | libcommons-pool-java | 1.5.6-1 | - +- all | libcommons-pool-java-doc | 1.5.6-1 | - +- all | libcommons-validator-java | 1:1.3.1-9 | - +- all | libcommons-validator-java-doc | 1:1.3.1-9 | - +- all | libcommons-vfs-java | 2.0-3 | - +- all | libcommons-vfs-java-doc | 2.0-3 | - +- all | libconcurrent-java | 1.3.4-4 | - +- all | libconcurrent-java-doc | 1.3.4-4 | - +- all | libconcurrentlinkedhashmap-java | 1.1~jdk5-1 | - +- all | libconcurrentlinkedhashmap-java-doc | 1.1~jdk5-1 | - +- all | libconfig-any-perl | 0.23-1 | - +- all | libconfig-apacheformat-perl | 1.2-4 | - +- all | libconfig-auto-perl | 0.42-1 | - +- all | libconfig-autoconf-perl | 0.19-1 | - +- all | libconfig-doc | 1.4.8-5 | - +- all | libconfig-file-perl | 1.50-2 | - +- all | libconfig-general-perl | 2.50-1 | - +- all | libconfig-gitlike-perl | 1.08-1 | - +- all | libconfig-grammar-perl | 1.10-1 | - +- all | libconfig-ini-perl | 1:0.019-1 | - +- all | libconfig-inifiles-perl | 2.75-1 | - +- all | libconfig-inihash-perl | 3.01.01-1 | - +- all | libconfig-jfdi-perl | 0.065-1 | - +- all | libconfig-json-perl | 1.5100-1 | - +- all | libconfig-merge-perl | 1.01-1 | - +- all | libconfig-model-approx-perl | 1.004-1 | - +- all | libconfig-model-backend-augeas-perl | 0.112-1 | - +- all | libconfig-model-cursesui-perl | 1.104-1 | - +- all | libconfig-model-itself-perl | 1.232-1 | - +- all | libconfig-model-openssh-perl | 1.225-1 | - +- all | libconfig-model-perl | 2.021-3+deb7u1 | - +- all | libconfig-model-tkui-perl | 1.337-2 | - +- all | libconfig-mvp-perl | 2.200002-1 | - +- all | libconfig-mvp-reader-ini-perl | 2.101461-1 | - +- all | libconfig-pit-perl | 0.04-1 | - +- all | libconfig-record-perl | 1.1.2-1 | - +- all | libconfig-scoped-perl | 0.22-1 | - +- all | libconfig-simple-perl | 4.59-6 | - +- all | libconfig-std-perl | 0.9-1 | - +- all | libconfig-tiny-perl | 2.14-1 | - +- all | libconfig-yaml-perl | 1.42-2 | - +- all | libconfigreader-perl | 0.5-4 | - +- all | libconfigreader-simple-perl | 1.28-3 | - +- all | libconfuse-common | 2.7-4 | - +- all | libconst-fast-perl | 0.011-1 | - +- all | libconstantine-java | 0.7-3 | - +- all | libconstantine-java-doc | 0.7-3 | - +- all | libcontext-preserve-perl | 0.01-1 | - +- all | libcontextual-return-perl | 0.004003-1 | - +- all | libconvert-ascii-armour-perl | 1.4-1 | - +- all | libconvert-asn1-perl | 0.26-1 | - +- all | libconvert-base32-perl | 0.05-1 | - +- all | libconvert-ber-perl | 1.3200-1 | - +- all | libconvert-binhex-perl | 1.119+pristine-3 | - +- all | libconvert-color-perl | 0.08-1 | - +- all | libconvert-nls-date-format-perl | 0.05-1 | - +- all | libconvert-pem-perl | 0.08-1 | - +- all | libconvert-tnef-perl | 0.17-11 | - +- all | libconvert-units-perl | 1:0.43-1 | - +- all | libconvert-ytext-perl | 0.1.2-1 | - +- all | libcore-ocaml-doc | 107.01-5 | - +- all | libcore-renderer-java | 0.0~R8-1 | - +- all | libcore-renderer-java-doc | 0.0~R8-1 | - +- all | libcorelinux-doc | 0.4.32-7.3 | - +- all | libcorelinux-examples | 0.4.32-7.3 | - +- all | libcorosync-dev | 1.4.2-3 | - +- all | libcorosync4 | 1.4.2-3 | - +- all | libcortado-java | 0.6.0-1 | - +- all | libcourriel-perl | 0.29-1 | - +- all | libcoy-perl | 0.06-6 | - +- all | libcpan-changes-perl | 0.19-1 | - +- all | libcpan-checksums-perl | 2.03-1 | - +- all | libcpan-distnameinfo-perl | 0.12-1 | - +- all | libcpan-inject-perl | 1.13-1 | - +- all | libcpan-meta-check-perl | 0.004-1 | - +- all | libcpan-meta-perl | 2.120921-1 | - +- all | libcpan-meta-requirements-perl | 2.122-1 | - +- all | libcpan-meta-yaml-perl | 0.008-1 | - +- all | libcpan-mini-perl | 1.111008-3 | - +- all | libcpan-perl-releases-perl | 0.60-1 | - +- all | libcpan-uploader-perl | 0.103001-1 | - +- all | libcpandb-perl | 0.17-1 | - +- all | libcpl-doc | 6.1.1-2 | - +- all | libcppunit-doc | 1.12.1-4 | - +- all | libcps-perl | 0.15-1 | - +- all | libcql-parser-perl | 1.10-1 | - +- all | libcrimson-java | 1:1.1.3-11 | - +- all | libcrimson-java-doc | 1:1.1.3-11 | - +- all | libcriticism-perl | 1.02-1 | - +- all | libcrypt-cbc-perl | 2.30-1 | - +- all | libcrypt-ciphersaber-perl | 0.61-4 | - +- all | libcrypt-des-ede3-perl | 0.01-1.1 | - +- all | libcrypt-dh-perl | 0.06-3 | - +- all | libcrypt-dsa-perl | 1.17-3 | - +- all | libcrypt-ecb-perl | 1.40-2 | - +- all | libcrypt-generatepassword-perl | 0.03-4 | - +- all | libcrypt-gpg-perl | 1.52-1 | - +- all | libcrypt-hcesha-perl | 0.70-3 | - +- all | libcrypt-passwdmd5-perl | 1.3-10 | - +- all | libcrypt-random-source-perl | 0.07-1 | - +- all | libcrypt-rc4-perl | 2.02-2 | - +- all | libcrypt-saltedhash-perl | 0.06-1 | - +- all | libcrypt-simple-perl | 0.06-6 | - +- all | libcrypt-smbhash-perl | 0.12-3 | - +- all | libcrypt-unixcrypt-perl | 1.0-5 | - +- all | libcrypt-util-perl | 0.11-1 | - +- all | libcrypt-x509-perl | 0.51-1 | - +- all | libcrypto++-doc | 5.6.1-6 | - +- all | libcryptui-doc | 3.2.2-1 | - +- all | libcsfml-doc | 1.6-1 | - +- all | libcsnd-dev | 1:5.17.11~dfsg-3 | - +- all | libcsound64-dev | 1:5.17.11~dfsg-3 | - +- all | libcsound64-doc | 1:5.17.11~dfsg-3 | - +- all | libcsoundac-dev | 1:5.17.11~dfsg-3 | - +- all | libcss-dom-perl | 0.14-1 | - +- all | libcss-minifier-perl | 0.01-1 | - +- all | libcss-packer-perl | 1.002001-1 | - +- all | libcss-perl | 1.08-1+nmu3 | - +- all | libcss-squish-perl | 0.09-1 | - +- all | libcss-tiny-perl | 1.19-1 | - +- all | libcssparser-java | 0.9.5-1 | - +- all | libcssparser-java-doc | 0.9.5-1 | - +- all | libcsv-java | 2.0-12 | - +- all | libcsv-java-doc | 2.0-12 | - +- all | libctl-doc | 3.1.0-5 | - +- all | libctpl-doc | 0.3.3.dfsg-2 | - +- all | libcuba-doc | 3.0+20111124-2 | - +- all | libcunit1-doc | 2.1-0.dfsg-10 | - +- all | libcupt2-doc | 2.5.9 | - ++ all | libcupti-doc | - | 5.0.35-8~bpo70+1 +- all | libcurses-ui-perl | 0.9609-1 | - +- all | libcurses-widgets-perl | 1.997-5 | - +- all | libcvc3-5-java | 2.4.1-4 | - +- all | libcvs-perl | 0.07-4 | - +- all | libcwidget-doc | 0.5.16-3.4 | - +- all | libcyrus-imap-perl | 2.4.16-4+deb7u1 | - +- all | libcyrus-imap-perl22 | 2.4.16-4+deb7u1 | - +- all | libdaemon-control-perl | 0.000009-1 | - +- all | libdaemons-ruby | 1.1.5-2 | - +- all | libdaemons-ruby1.8 | 1.1.5-2 | - +- all | libdancer-logger-psgi-perl | 0.04-2 | - +- all | libdancer-perl | 1.3095+dfsg-1 | - +- all | libdancer-plugin-database-perl | 1.82-1 | - +- all | libdancer-plugin-dbic-perl | 0.1506-1 | - +- all | libdancer-plugin-flashmessage-perl | 0.314-1 | - +- all | libdancer-plugin-rest-perl | 0.07-1 | - +- all | libdancer-session-cookie-perl | 0.15-1 | - +- all | libdancer-session-memcached-perl | 0.2020-1 | - +- all | libdanga-socket-perl | 1.61-1 | - +- all | libdansguardian-perl | 0.6-2 | - +- all | libdap-doc | 3.11.1-11 | - +- all | libdata-amf-perl | 0.09-3 | - +- all | libdata-buffer-perl | 0.04-1.1 | - +- all | libdata-compare-perl | 1.22-0.1 | - +- all | libdata-dump-perl | 1.21-1 | - +- all | libdata-dumper-concise-perl | 2.020-1 | - +- all | libdata-dumper-simple-perl | 0.11-4 | - +- all | libdata-entropy-perl | 0.007-1 | - +- all | libdata-faker-perl | 0.07-3 | - +- all | libdata-float-perl | 0.012-1 | - +- all | libdata-flow-perl | 1.02-1 | - +- all | libdata-format-html-perl | 0.5-2 | - +- all | libdata-formvalidator-constraints-datetime-perl | 1.11-1 | - +- all | libdata-formvalidator-perl | 4.70-1 | - +- all | libdata-guid-perl | 0.046-1 | - +- all | libdata-hexdumper-perl | 3.0001-1 | - +- all | libdata-ical-perl | 0.18+dfsg-1 | - +- all | libdata-integer-perl | 0.004-1 | - +- all | libdata-javascript-anon-perl | 1.03-2 | - +- all | libdata-javascript-perl | 1.13-1 | - +- all | libdata-miscellany-perl | 1.100850-1 | - +- all | libdata-munge-perl | 0.04-1 | - +- all | libdata-objectdriver-perl | 0.09-1 | - +- all | libdata-optlist-perl | 0.107-1 | - +- all | libdata-page-perl | 2.02-1 | - +- all | libdata-pageset-perl | 1.05-2 | - +- all | libdata-parsebinary-perl | 0.31~dfsg-1 | - +- all | libdata-password-perl | 1.07-3 | - +- all | libdata-phrasebook-loader-yaml-perl | 0.09-1 | - +- all | libdata-phrasebook-perl | 0.31-1 | - +- all | libdata-printer-perl | 0.30-1 | - +- all | libdata-random-perl | 0.07-1 | - +- all | libdata-report-perl | 0.10-1 | - +- all | libdata-rmap-perl | 0.62-1 | - +- all | libdata-section-perl | 0.101621-1 | - +- all | libdata-section-simple-perl | 0.03-1 | - +- all | libdata-serializer-perl | 0.59-1 | - +- all | libdata-show-perl | 0.002001-1 | - +- all | libdata-showtable-perl | 3.3-7 | - +- all | libdata-sorting-perl | 0.9-4 | - +- all | libdata-stag-perl | 0.11-2 | - +- all | libdata-stream-bulk-perl | 0.11-1 | - +- all | libdata-transformer-perl | 0.04-1 | - +- all | libdata-treedumper-perl | 0.40-1 | - +- all | libdata-treedumper-renderer-dhtml-perl | 0.09-1 | - +- all | libdata-treedumper-renderer-gtk-perl | 0.02-1 | - +- all | libdata-types-perl | 0.09-1 | - +- all | libdata-validate-domain-perl | 0.10-1 | - +- all | libdata-validate-email-perl | 0.04-1 | - +- all | libdata-validate-ip-perl | 0.14-1 | - +- all | libdata-validate-uri-perl | 0.06-1 | - +- all | libdata-visitor-perl | 0.28-1 | - +- all | libdata-walk-perl | 1.00-1 | - +- all | libdata-yaml-perl | 0.0.6-1 | - +- all | libdataobjects-mysql-ruby | 0.10.8-4 | - +- all | libdataobjects-mysql-ruby1.8 | 0.10.8-4 | - +- all | libdataobjects-mysql-ruby1.9.1 | 0.10.8-4 | - +- all | libdataobjects-postgres-ruby | 0.10.8-2 | - +- all | libdataobjects-postgres-ruby1.8 | 0.10.8-2 | - +- all | libdataobjects-postgres-ruby1.9.1 | 0.10.8-2 | - +- all | libdataobjects-ruby | 0.10.8-4 | - +- all | libdataobjects-ruby1.8 | 0.10.8-4 | - +- all | libdataobjects-ruby1.9.1 | 0.10.8-4 | - +- all | libdataobjects-sqlite3-ruby | 0.10.8-3 | - +- all | libdataobjects-sqlite3-ruby1.8 | 0.10.8-3 | - +- all | libdataobjects-sqlite3-ruby1.9.1 | 0.10.8-3 | - +- all | libdatapager-perl | 0.01-2 | - +- all | libdate-calc-perl | 6.3-1 | - +- all | libdate-convert-perl | 0.16-3 | - +- all | libdate-hijri-perl | 0.02-1 | - +- all | libdate-iso8601-perl | 0.003-1 | - +- all | libdate-jd-perl | 0.003-1 | - +- all | libdate-leapyear-perl | 1.72-1 | - +- all | libdate-manip-perl | 6.32-1 | - +- all | libdatetime-astro-sunrise-perl | 0.01.01-3 | - +- all | libdatetime-calendar-discordian-perl | 1.0-1 | - +- all | libdatetime-event-cron-perl | 0.08-1 | - +- all | libdatetime-event-ical-perl | 0.10-1 | - +- all | libdatetime-event-recurrence-perl | 0.16-1 | - +- all | libdatetime-event-sunrise-perl | 0.0501-1 | - +- all | libdatetime-format-builder-perl | 0.8000-1 | - +- all | libdatetime-format-dateparse-perl | 0.05-1 | - +- all | libdatetime-format-db2-perl | 0.05-2 | - +- all | libdatetime-format-dbi-perl | 0.040-1 | - +- all | libdatetime-format-duration-perl | 1.03a-1 | - +- all | libdatetime-format-epoch-perl | 0.11-1 | - +- all | libdatetime-format-flexible-perl | 0.23-1 | - +- all | libdatetime-format-http-perl | 0.40-1 | - +- all | libdatetime-format-ical-perl | 0.09-1 | - +- all | libdatetime-format-iso8601-perl | 0.08-1 | - +- all | libdatetime-format-mail-perl | 0.3001-1 | - +- all | libdatetime-format-mysql-perl | 0.04-2 | - +- all | libdatetime-format-natural-perl | 1.00-1 | - +- all | libdatetime-format-oracle-perl | 0.06-1 | - +- all | libdatetime-format-pg-perl | 0.16007-1 | - +- all | libdatetime-format-sqlite-perl | 0.11-1 | - +- all | libdatetime-format-strptime-perl | 1.5000-1 | - +- all | libdatetime-format-w3cdtf-perl | 0.06-1 | - +- all | libdatetime-format-xsd-perl | 0.2-1 | - +- all | libdatetime-locale-perl | 1:0.45-1 | - +- all | libdatetime-set-perl | 0.31-1 | - +- all | libdatetime-timezone-perl | 1:1.58-1+2013h | - +- all | libdatetime-timezone-systemv-perl | 0.003-1 | - +- all | libdatetime-timezone-tzfile-perl | 0.002-1 | - +- all | libdatetimex-easy-perl | 0.089-1 | - +- all | libdatrie-doc | 0.2.5-3 | - +- all | libdawgdic-dev | 0.4.3-1 | - +- all | libdb-file-lock-perl | 0.05-3 | - +- all | libdb-java | 5.1.6 | - +- all | libdb-je-java | 3.3.98-1 | - +- all | libdb-ruby1.8 | 0.6.5-7 | - +- all | libdb4.2-ruby1.8 | 0.6.5-7 | - +- all | libdb4.3-ruby1.8 | 0.6.5-7 | - +- all | libdb4.4-ruby1.8 | 0.6.5-7 | - +- all | libdb4o-cil-dev | 8.0.184.15484+dfsg-2 | - +- all | libdb4o-doc | 8.0.184.15484+dfsg-2 | - +- all | libdb4o8.0-cil | 8.0.184.15484+dfsg-2 | - +- all | libdb5.1-java | 5.1.29-5 | - +- all | libdballe-doc | 5.18-1 | - +- all | libdbd-anydata-perl | 0.11-0.1 | - +- all | libdbd-csv-perl | 0.3500-1 | - +- all | libdbd-excel-perl | 0.06-6 | - +- all | libdbd-ldap-perl | 0.20-1 | - +- all | libdbd-mock-perl | 1.43-1 | - +- all | libdbd-mysql-ruby | 0.4.4+gem2deb-1 | - +- all | libdbd-mysql-ruby1.8 | 0.4.4+gem2deb-1 | - +- all | libdbd-mysql-ruby1.9.1 | 0.4.4+gem2deb-1 | - +- all | libdbd-odbc-ruby | 0.2.5+gem2deb-1 | - +- all | libdbd-odbc-ruby1.8 | 0.2.5+gem2deb-1 | - +- all | libdbd-pg-ruby | 0.3.9+gem2deb-1 | - +- all | libdbd-pg-ruby1.8 | 0.3.9+gem2deb-1 | - +- all | libdbd-pg-ruby1.9.1 | 0.3.9+gem2deb-1 | - +- all | libdbd-sqlite3-ruby | 1.2.5+gem2deb-1 | - +- all | libdbd-sqlite3-ruby1.8 | 1.2.5+gem2deb-1 | - +- all | libdbd-sqlite3-ruby1.9.1 | 1.2.5+gem2deb-1 | - +- all | libdbd-xbase-perl | 1:1.03-1 | - +- all | libdbi-doc | 0.8.4-6 | - +- all | libdbi-ruby | 0.4.5-1 | - +- all | libdbi-ruby1.8 | 0.4.5-1 | - +- all | libdbi-ruby1.9.1 | 0.4.5-1 | - +- all | libdbicx-testdatabase-perl | 0.04-1 | - +- all | libdbix-abstract-perl | 1.010-1 | - +- all | libdbix-class-candy-perl | 0.002100-1 | - +- all | libdbix-class-cursor-cached-perl | 1.001002-1 | - +- all | libdbix-class-datetime-epoch-perl | 0.09-1 | - +- all | libdbix-class-dynamicdefault-perl | 0.04-1 | - +- all | libdbix-class-encodedcolumn-perl | 0.00011-1 | - +- all | libdbix-class-helpers-perl | 2.013002-1 | - +- all | libdbix-class-htmlwidget-perl | 0.16-2 | - +- all | libdbix-class-inflatecolumn-ip-perl | 0.02002-1 | - +- all | libdbix-class-introspectablem2m-perl | 0.001001-1 | - +- all | libdbix-class-perl | 0.08196-3 | - +- all | libdbix-class-resultset-recursiveupdate-perl | 0.25-1 | - +- all | libdbix-class-schema-loader-perl | 0.07025-1 | - +- all | libdbix-class-timestamp-perl | 0.14-1 | - +- all | libdbix-class-tree-nestedset-perl | 0.10-1 | - +- all | libdbix-connector-perl | 0.52-1 | - +- all | libdbix-contextualfetch-perl | 1.03-3 | - +- all | libdbix-datasource-perl | 0.02-3 | - +- all | libdbix-dbschema-perl | 0.40-2 | - +- all | libdbix-dbstag-perl | 0.12-1 | - +- all | libdbix-dr-perl | 0.19-1 | - +- all | libdbix-easy-perl | 0.17-1 | - +- all | libdbix-fulltextsearch-perl | 0.73-10 | - +- all | libdbix-oo-perl | 0.0.9-3 | - +- all | libdbix-password-perl | 1.9-1 | - +- all | libdbix-profile-perl | 1.0-3 | - +- all | libdbix-recordset-perl | 0.26-2 | - +- all | libdbix-safe-perl | 1.2.5-1 | - +- all | libdbix-searchbuilder-perl | 1.62-1 | - +- all | libdbix-sequence-perl | 1.5-2 | - +- all | libdbix-simple-perl | 1.32-1 | - +- all | libdbix-xml-rdb-perl | 0.05-11 | - +- all | libdbix-xmlmessage-perl | 0.05-9 | - +- all | libdbm-deep-perl | 2.0008-1 | - +- all | libdbus-c++-doc | 0.9.0-6 | - +- all | libdbus-glib-1-doc | 0.100.2-1 | - +- all | libdbus-glib1.0-cil | 0.5.0-4 | - +- all | libdbus-glib1.0-cil-dev | 0.5.0-4 | - +- all | libdbus-java | 2.8-4 | - +- all | libdbus-java-doc | 2.8-4 | - +- all | libdbus-ruby | 0.7.2-1 | - +- all | libdbus-ruby1.8 | 0.7.2-1 | - +- all | libdbus1.0-cil | 0.7.0-5 | - +- all | libdbus1.0-cil-dev | 0.7.0-5 | - +- all | libdbusmenu-glib-doc | 0.6.2-1 | - +- all | libdbusmenu-gtk-doc | 0.6.2-1 | - +- all | libdc1394-22-doc | 2.2.0-2 | - +- all | libdconf-doc | 0.12.1-3 | - +- all | libdebian-copyright-perl | 0.1-1 | - +- all | libdebian-dpkgcross-perl | 2.6.7 | - +- all | libdebian-package-html-perl | 0.1-2 | - +- all | libdebian-packages-compare-perl | 3.0.7 | - +- all | libdebug-client-perl | 0.20-1 | - +- all | libdebug-trace-perl | 0.04-4 | - +- all | libdee-doc | 1.0.10-3 | - +- all | libdelimmatch-perl | 1.06a-4 | - +- all | libdeprecated-ruby | 3.0.0-1 | - +- all | libdeprecated-ruby1.8 | 3.0.0-1 | - +- all | libdeprecated-ruby1.9.1 | 3.0.0-1 | - +- all | libdeps-perl | 0.13-1.1 | - +- all | libdeps-renderer-dot-perl | 0.13-1.1 | - +- all | libdeps-renderer-tulip-perl | 0.13-1.1 | - +- all | libdesktop-agnostic-doc | 0.3.92+dfsg-1 | - +- all | libdesktop-notify-perl | 0.03-1 | - +- all | libdevel-argnames-perl | 0.03-1 | - +- all | libdevel-backtrace-perl | 0.12-1 | - +- all | libdevel-caller-ignorenamespaces-perl | 1.0-1 | - +- all | libdevel-calltrace-perl | 1.2-1 | - +- all | libdevel-checklib-perl | 0.98-1 | - +- all | libdevel-cycle-perl | 1.11-2 | - +- all | libdevel-dumpvar-perl | 1.06-1 | - +- all | libdevel-ebug-perl | 0.53-1 | - +- all | libdevel-gdb-perl | 2.02-1 | - +- all | libdevel-globaldestruction-perl | 0.06-1 | - +- all | libdevel-hide-perl | 0.0008-1 | - +- all | libdevel-partialdump-perl | 0.15-1 | - +- all | libdevel-patchperl-perl | 0.72-1 | - +- all | libdevel-profile-perl | 1.05-2 | - +- all | libdevel-ptkdb-perl | 1.1091-2 | - +- all | libdevel-refactor-perl | 0.05-1 | - +- all | libdevel-repl-perl | 1.003013-1 | - +- all | libdevel-simpletrace-perl | 0.08-1 | - +- all | libdevel-stacktrace-ashtml-perl | 0.11-1 | - +- all | libdevel-stacktrace-perl | 1.2700-1 | - +- all | libdevel-stacktrace-withlexicals-perl | 0.10-1 | - +- all | libdevel-symdump-perl | 2.08-4 | - +- all | libdevel-trace-perl | 0.12-1 | - +- all | libdevice-gsm-perl | 1.60-1 | - +- all | libdevice-modem-perl | 1.47-2.1 | - +- all | libdifflcs-ruby | 1.1.3-1 | - +- all | libdifflcs-ruby1.8 | 1.1.3-1 | - +- all | libdifflcs-ruby1.9.1 | 1.1.3-1 | - +- all | libdigest-bubblebabble-perl | 0.02-2 | - +- all | libdigest-hmac-perl | 1.03+dfsg-1 | - +- all | libdigest-md5-file-perl | 0.08-1 | - +- all | libdigest-perl | 1.17-1 | - +- all | libdime-dev | 0.20030921-2 | - +- all | libdime-doc | 0.20030921-2 | - +- all | libdir-purge-perl | 1.02-2 | - +- all | libdir-self-perl | 0.10-1 | - +- all | libdirac-doc | 1.0.2-6 | - +- all | libdirectory-scratch-perl | 0.14-1 | - +- all | libdirectory-scratch-structured-perl | 0.04-1 | - +- all | libdist-metadata-perl | 0.923-1 | - +- all | libdist-zilla-perl | 4.300020-1 | - +- all | libdist-zilla-plugin-changelogfromgit-perl | 0.005-1 | - +- all | libdist-zilla-plugin-git-perl | 1.121820-1 | - +- all | libdist-zilla-plugin-podspellingtests-perl | 1.111520-1 | - +- all | libdist-zilla-plugin-podweaver-perl | 3.101641-1 | - +- all | libdist-zilla-plugin-prepender-perl | 1.112280-1 | - +- all | libdist-zilla-plugin-run-perl | 0.013-1 | - +- all | libdist-zilla-plugins-cjm-perl | 4.09-1 | - +- all | libdistro-info-perl | 0.10 | - +- all | libdjconsole-data | 0.1.3-1 | - +- all | libdjvulibre-text | 3.5.25.3-1 | - +- all | libdns-ruby | 1.53-1 | - +- all | libdns-ruby1.8 | 1.53-1 | - +- all | libdns-zoneparse-perl | 1.10-1 | - +- all | libdnsjava-java | 2.0.8-1 | - +- all | libdom4j-java | 1.6.1+dfsg.2-6 | - +- all | libdom4j-java-doc | 1.6.1+dfsg.2-6 | - +- all | libdoxia-java | 1.1.4-2 | - +- all | libdoxia-java-doc | 1.1.4-2 | - +- all | libdoxia-maven-plugin-java | 1.1.4-1 | - +- all | libdoxia-sitetools-java | 1.1.4-1 | - +- all | libdoxia-sitetools-java-doc | 1.1.4-1 | - +- all | libdpkg-log-perl | 1.20-2 | - +- all | libdpkg-perl | 1.16.12 | - +- all | libdpkg-ruby | 0.3.8 | - +- all | libdpkg-ruby1.8 | 0.3.8 | - +- all | libdpkg-ruby1.9.1 | 0.3.8 | - +- all | libdrizzle-dev | 1:7.1.36-stable-1 | - +- all | libdtdinst-java | 20091111-5 | - +- all | libdtdparser-java | 1.21a-5 | - +- all | libdublincore-record-perl | 0.03-1 | - +- all | libdumbster-java | 1.6+debian-2 | - +- all | libdune-common-doc | 2.2.0-1 | - +- all | libdune-geometry-doc | 2.2.0-1 | - +- all | libdune-grid-doc | 2.2.0-1 | - +- all | libdune-istl-dev | 2.2.0-1 | - +- all | libdune-istl-doc | 2.2.0-1 | - +- all | libdune-localfunctions-dev | 2.2.0-1 | - +- all | libdune-localfunctions-doc | 2.2.0-1 | - +- all | libdynalang-java | 0.4-1 | - +- all | libeasyconf-java | 0.9.5-3 | - +- all | libeasyconf-java-doc | 0.9.5-3 | - +- all | libeasymock-java | 2.4+ds1-7 | - +- all | libeasymock-java-doc | 2.4+ds1-7 | - +- all | libeb-ruby1.8 | 2.6-2 | - +- all | libecasound-ruby1.8 | 2.9.0-1 | - +- all | libecasoundc2.2-dev | 2.9.0-1 | - +- all | libecj-java | 3.5.1-3 | - +- all | libeclipselink-java | 2.1.3-2 | - +- all | libeclipselink-java-doc | 2.1.3-2 | - +- all | libecore-doc | 1.2.0-2 | - +- all | libedje-doc | 1.2.0-1 | - +- all | libeet-doc | 1.6.0-1 | - +- all | libefreet-doc | 1.2.0-1 | - +- all | libehcache-java | 2.5.0-1 | - +- all | libeigen2-doc | 2.0.17-1 | - ++ all | libeigen3-dev | - | 3.2.0-6~bpo70+1 +! all | libeigen3-doc | 3.1.0-1 | 3.2.0-6~bpo70+1 +- all | libeigenbase-farrago-java | 0.9.0-1 | - +- all | libeigenbase-resgen-java | 1.3.0.13768-1 | - +- all | libeigenbase-resgen-java-doc | 1.3.0.13768-1 | - +- all | libeina-doc | 1.2.0-2 | - +- all | libelemental-doc | 1.2.0-8 | - +- all | libelementary-data | 0.7.0.55225-1 | - +- all | libeliom-ocaml-doc | 2.2.2-1 | - +- all | libelixirfm-perl | 1.1.976-2 | - +- all | libemail-abstract-perl | 3.004-1 | - +- all | libemail-address-perl | 1.895-1 | - +- all | libemail-date-format-perl | 1.002-1 | - +- all | libemail-date-perl | 1.103-3 | - +- all | libemail-filter-perl | 1.032-1 | - +- all | libemail-find-perl | 0.10-dfsg-1.1 | - +- all | libemail-folder-perl | 0.855-1 | - +- all | libemail-foldertype-perl | 0.813-1 | - +- all | libemail-localdelivery-perl | 0.217-2 | - +- all | libemail-messageid-perl | 1.402-1 | - +- all | libemail-mime-contenttype-perl | 1.014-3 | - +- all | libemail-mime-createhtml-perl | 1.030-1 | - +- all | libemail-mime-encodings-perl | 1.313-1 | - +- all | libemail-mime-perl | 1.910-1 | - +- all | libemail-outlook-message-perl | 0.911-1 | - +- all | libemail-received-perl | 1.00-1 | - +- all | libemail-send-io-perl | 2.200-1 | - +- all | libemail-send-perl | 2.198-4 | - +- all | libemail-sender-perl | 0.110005-1 | - +- all | libemail-sender-transport-smtp-tls-perl | 0.10-1 | - +- all | libemail-simple-perl | 2.101-1 | - +- all | libemail-thread-perl | 0.711-1 | - +- all | libemail-valid-loose-perl | 0.05-3 | - +- all | libemail-valid-perl | 0.190-1 | - +- all | libemboss-acd-perl | 2.2.0-7+deb7u1 | - +- all | libembryo-doc | 1.2.0-1 | - +- all | libemma-java | 2.0.5312+dfsg-4 | - +- all | libencode-arabic-perl | 1.9-1 | - +- all | libencode-imaputf7-perl | 1.05-2 | - +- all | libencode-locale-perl | 1.03-1 | - +- all | libend-perl | 2009040201-1 | - +- all | libenet-doc | 1.3.3-2 | - +- all | libenv-path-perl | 0.18-1 | - +- all | libenv-ps1-perl | 0.06-1 | - +- all | libenv-sanctify-perl | 1.06-1 | - +- all | libepc-common | 0.4.4-1 | - +- all | libepc-doc | 0.4.4-1 | - +- all | libepr-api2-dev | 2.2-2 | - +- all | libequinox-osgi-java | 3.8.0~rc4-1 | - +- all | liberis-doc | 1.3.19-5 | - +- all | liberror-perl | 0.17-1 | - +- all | liberubis-ruby | 2.7.0-2 | - +- all | liberubis-ruby1.8 | 2.7.0-2 | - +- all | liberubis-ruby1.9.1 | 2.7.0-2 | - +- all | libescape-ruby | 0.2-1 | - +- all | libesd-java | 0.0.7-4 | - +- all | libethos-doc | 0.2.2-3 | - +- all | libetpan-doc | 1.0-5 | - +- all | libetsf-io-doc | 1.0.3-4 | - +- all | libev-libevent-dev | 1:4.11-1 | - +- all | libeval-closure-perl | 0.08-1 | - +- all | libeval-context-perl | 0.09.11-1 | - +- all | libevas-doc | 1.2.0-2 | - +- all | libevent-loop-ruby | 0.3-5 | - +- all | libevent-loop-ruby1.8 | 0.3-5 | - +- all | libevent-rpc-perl | 1.01-2 | - +- all | libeventmachine-ruby | 0.12.10-3 | - +- all | libeventmachine-ruby-doc | 0.12.10-3 | - +- all | libeventmachine-ruby1.8 | 0.12.10-3 | - +- all | libexcalibur-logger-java | 2.1-4 | - +- all | libexcalibur-logkit-java | 2.0-9 | - +- all | libexcalibur-logkit-java-doc | 2.0-9 | - +- all | libexcel-template-perl | 0.34-1 | - +- all | libexcel-template-plus-perl | 0.05-1 | - +- all | libexcel-writer-xlsx-perl | 0.47-1 | - +- all | libexception-class-dbi-perl | 1.00-1 | - +- all | libexception-class-perl | 1.32-1 | - +- all | libexception-class-trycatch-perl | 1.12-1 | - +- all | libexception-handler-perl | 1.004-1 | - +- all | libexif-ruby | 0.1.2-20 | - +- all | libexif-ruby1.8 | 0.1.2-20 | - +- all | libexif-ruby1.9.1 | 0.1.2-20 | - +- all | libexiv2-doc | 0.23-1 | - +- all | libexml-java | 0.0.20080703-4 | - +- all | libexo-common | 0.6.2-5 | - +- all | libexpect-perl | 1.21-1 | - +- all | libexpect-simple-perl | 0.04-2 | - +- all | libexporter-easy-perl | 0.16-1 | - +- all | libexporter-lite-perl | 0.02-2 | - +- all | libexporter-renaming-perl | 1.19-1 | - +- all | libexporter-tidy-perl | 0.07-2 | - +- all | libextlib-ruby | 0.9.15-3 | - +- all | libextlib-ruby-doc | 0.9.15-3 | - +- all | libextlib-ruby1.8 | 0.9.15-3 | - +- all | libextlib-ruby1.9.1 | 0.9.15-3 | - +- all | libexttextcat-data | 3.2.0-2 | - +- all | libextutils-autoinstall-perl | 0.63-1 | - +- all | libextutils-cbuilder-perl | 0.280205-1 | - +- all | libextutils-cchecker-perl | 0.08-1 | - +- all | libextutils-depends-perl | 0.304-1 | - +- all | libextutils-f77-perl | 1.17-1 | - +- all | libextutils-libbuilder-perl | 0.04-1 | - +- all | libextutils-parsexs-perl | 3.150000-1 | - +- all | libextutils-pkgconfig-perl | 1.13-1 | - +- all | libextutils-xsbuilder-perl | 0.28-2 | - +- all | libextutils-xspp-perl | 0.1602-3 | - +- all | libezmorph-java | 1.0.6-3 | - +- all | libfacets-ruby | 2.9.2-1 | - +- all | libfacets-ruby-doc | 2.9.2-1 | - +- all | libfacets-ruby1.8 | 2.9.2-1 | - +- all | libfacets-ruby1.9.1 | 2.9.2-1 | - +- all | libfakefs-ruby | 0.4.0-1 | - +- all | libfakefs-ruby1.8 | 0.4.0-1 | - +- all | libfakefs-ruby1.9.1 | 0.4.0-1 | - +- all | libfakekey-doc | 0.1-7 | - +- all | libfam0c102 | 2.7.0-17 | - +- all | libfann-doc | 2.1.0~beta~dfsg-8 | - +- all | libfannj-java | 0.3-1 | - +- all | libfannj-java-doc | 0.3-1 | - +- all | libfarstream-0.1-doc | 0.1.2-1 | - +- all | libfax-hylafax-client-perl | 1.02-1 | - +- all | libfcgi-procmanager-perl | 0.24-1 | - +- all | libfeed-find-perl | 0.07-1 | - +- all | libfeedparser-ruby | 0.7-2 | - +- all | libfeedparser-ruby-doc | 0.7-2 | - +- all | libfeedparser-ruby1.8 | 0.7-2 | - +- all | libfeedtools-ruby | 0.2.29+dfsg1-5 | - +- all | libfeedtools-ruby-doc | 0.2.29+dfsg1-5 | - +- all | libfeedtools-ruby1.8 | 0.2.29+dfsg1-5 | - +- all | libfeedtools-ruby1.9.1 | 0.2.29+dfsg1-5 | - +- all | libfelix-bundlerepository-java | 1.6.6-1 | - +- all | libfelix-bundlerepository-java-doc | 1.6.6-1 | - +- all | libfelix-framework-java | 4.0.1-2 | - +- all | libfelix-framework-java-doc | 4.0.1-2 | - +- all | libfelix-gogo-command-java | 0.12.0-2 | - +- all | libfelix-gogo-command-java-doc | 0.12.0-2 | - +- all | libfelix-gogo-runtime-java | 0.10.0-2 | - +- all | libfelix-gogo-runtime-java-doc | 0.10.0-2 | - +- all | libfelix-gogo-shell-java | 0.10.0-2 | - +- all | libfelix-gogo-shell-java-doc | 0.10.0-2 | - +- all | libfelix-main-java | 4.0.1-2 | - +- all | libfelix-main-java-doc | 4.0.1-2 | - +- all | libfelix-osgi-obr-java | 1.0.2-3 | - +- all | libfelix-osgi-obr-java-doc | 1.0.2-3 | - +- all | libfelix-shell-java | 1.4.2-3 | - +- all | libfelix-shell-java-doc | 1.4.2-3 | - +- all | libfelix-shell-tui-java | 1.4.1-3 | - +- all | libfelix-shell-tui-java-doc | 1.4.1-3 | - +- all | libfelix-utils-java | 1.1.0-3 | - +- all | libfelix-utils-java-doc | 1.1.0-3 | - +- all | libferret-ruby | 0.11.8.4+debian-2 | - +- all | libferret-ruby1.8 | 0.11.8.4+debian-2 | - +- all | libffi-ruby | 1.0.11debian-5 | - +- all | libffi-ruby1.8 | 1.0.11debian-5 | - +- all | libffi-ruby1.9.1 | 1.0.11debian-5 | - +- all | libfftw3-doc | 3.3.2-3.1 | - +- all | libfile-basedir-perl | 0.03-1 | - +- all | libfile-bom-perl | 0.14-1 | - +- all | libfile-cache-perl | 0.16-9 | - +- all | libfile-changenotify-perl | 0.22-1 | - +- all | libfile-chdir-perl | 0.1006-1 | - +- all | libfile-chmod-perl | 0.32-1 | - +- all | libfile-copy-link-perl | 0.113-1 | - +- all | libfile-copy-recursive-perl | 0.38-1 | - +- all | libfile-counterfile-perl | 1.04-4 | - +- all | libfile-countlines-perl | 0.0.3-1 | - +- all | libfile-desktopentry-perl | 0.04-3 | - +- all | libfile-dircompare-perl | 0.6-1 | - +- all | libfile-find-object-perl | 0.2.1-1 | - +- all | libfile-find-object-rule-perl | 0.0301-1 | - +- all | libfile-find-rule-perl | 0.33-1 | - +- all | libfile-find-rule-perl-perl | 1.12-1 | - +- all | libfile-find-rule-vcs-perl | 1.08-1 | - +- all | libfile-find-wanted-perl | 1.00-1 | - +- all | libfile-finder-perl | 0.53-1 | - +- all | libfile-flat-perl | 1.04-3 | - +- all | libfile-flock-perl | 2008.01-1 | - +- all | libfile-fu-perl | 0.0.7-2 | - +- all | libfile-homedir-perl | 0.99-1 | - +- all | libfile-inplace-perl | 0.20-1 | - +- all | libfile-keepass-perl | 0.03-1 | - +- all | libfile-listing-perl | 6.04-1 | - +- all | libfile-localizenewlines-perl | 1.11-1 | - +- all | libfile-mimeinfo-perl | 0.16-1 | - +- all | libfile-mmagic-perl | 1.27-1+deb7u1 | - +- all | libfile-modified-perl | 0.07-2 | - +- all | libfile-ncopy-perl | 0.36-1 | - +- all | libfile-next-perl | 1.10-1 | - +- all | libfile-nfslock-perl | 1.21-1 | - +- all | libfile-path-expand-perl | 1.02-1 | - +- all | libfile-path-tiny-perl | 0.3-1 | - +- all | libfile-pid-perl | 1.01-1 | - +- all | libfile-policy-perl | 1.005-1 | - +- all | libfile-pushd-perl | 1.001-1 | - +- all | libfile-queue-perl | 1.01a-1 | - +- all | libfile-read-perl | 0.0801-2 | - +- all | libfile-readbackwards-perl | 1.05-1 | - +- all | libfile-remove-perl | 1.52-1 | - +- all | libfile-rsync-perl | 0.42-2 | - +- all | libfile-scan-perl | 1.43-2 | - +- all | libfile-searchpath-perl | 0.06-2 | - +- all | libfile-sharedir-install-perl | 0.04-1 | - +- all | libfile-sharedir-par-perl | 0.06-1 | - +- all | libfile-sharedir-perl | 1.00-0.1 | - +- all | libfile-slurp-perl | 9999.19-1 | - +- all | libfile-slurp-unicode-perl | 0.7.1-1 | - +- all | libfile-spec-native-perl | 1.003-1 | - +- all | libfile-tail-perl | 0.99.3-5 | - +- all | libfile-touch-perl | 0.08-1 | - +- all | libfile-type-perl | 0.22-1.1 | - +- all | libfile-type-webimages-perl | 1.01-1 | - +- all | libfile-userconfig-perl | 0.06-2 | - +- all | libfile-util-perl | 3.27-1 | - +- all | libfile-which-perl | 1.09-1 | - +- all | libfile-wildcard-perl | 0.11-1 | - +- all | libfilehandle-unget-perl | 0.1623-1 | - +- all | libfilesys-diskspace-perl | 0.05-15 | - +- all | libfilesys-notify-simple-perl | 0.08-1 | - +- all | libfilter-eof-perl | 0.04-2 | - +- all | libfilter-template-perl | 1.040-1 | - +- all | libfinance-bank-ie-permanenttsb-perl | 0.4-2 | - +- all | libfinance-qif-perl | 3.02-1 | - +- all | libfinance-quote-perl | 1.17+git20120506-1 | - +- all | libfinance-quotehist-perl | 1.19-1 | - +- all | libfinance-streamer-perl | 1.10-2 | - +- all | libfinance-yahooquote-perl | 0.24 | - +- all | libfind-lib-perl | 1.04-1 | - +- all | libfindbin-libs-perl | 1.64-1 | - ++ all | libfko-doc | - | 2.5.1-1~bpo70+1 +- all | libflac-doc | 1.2.1-6 | - +- all | libflamingo-java | 5.0-1 | - +- all | libflamingo-java-doc | 5.0-1 | - +- all | libflexdock-java | 1.1.1-3 | - +- all | libflexdock-java-demo | 1.1.1-3 | - +- all | libflexdock-java-doc | 1.1.1-3 | - +- all | libflexmock-ruby | 0.9.0-1 | - +- all | libflexmock-ruby1.8 | 0.9.0-1 | - +- all | libflexmock-ruby1.9.1 | 0.9.0-1 | - +- all | libflickr-api-perl | 1.01-3 | - +- all | libflickr-upload-perl | 1.32-2 | - +- all | libflickrnet-cil-dev | 1:2.2.0-4 | - +- all | libflickrnet2.2-cil | 1:2.2.0-4 | - +- all | libfloat-coq | 1:8.3pl1-4 | - +- all | libfltk1.3-compat-headers | 1.3.0-8 | - +- all | libflute-java | 1:1.1.6-3 | - +- all | libflute-java-doc | 1:1.1.6-3 | - +! all | libfm-data | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 ++ all | libfm-doc | - | 1.1.2.2-1~bpo70+1 ++ all | libfm-gtk-data | - | 1.1.2.2-1~bpo70+1 +- all | libfont-afm-perl | 1.20-1 | - +- all | libfont-ttf-perl | 0.48-1 | - +- all | libfontbox-java | 1:1.7.0+dfsg-4 | - +- all | libfontbox-java-doc | 1:1.7.0+dfsg-4 | - +- all | libfontchooser-java | 1.0.0-1 | - +- all | libfontchooser-java-doc | 1.0.0-1 | - +- all | libfonts-java | 1.1.6.dfsg-3 | - +- all | libfonts-java-doc | 1.1.6.dfsg-3 | - +- all | libfop-java | 1:1.0.dfsg2-6 | - +- all | libforest-perl | 0.09-1 | - +- all | libformat-human-bytes-perl | 0.05-1 | - +- all | libforms-doc | 1.0.93sp1-2 | - +- all | libformula-java | 1.1.7.dfsg-2 | - +- all | libformula-java-doc | 1.1.7.dfsg-2 | - +- all | libformvalidator-simple-perl | 0.29-1 | - +- all | libfortune-perl | 0.2-8 | - +- all | libfox-1.6-doc | 1.6.45-1 | - +- all | libfpdf-tpl-php | 1.2-2 | - +- all | libfpdi-php | 1.4.1-1 | - +- all | libfreefem-doc | 3.5.8-5 | - +- all | libfreehep-chartableconverter-plugin-java | 2.0-6 | - +- all | libfreehep-export-java | 2.1.1-2 | - +- all | libfreehep-graphics2d-java | 2.1.1-3 | - +- all | libfreehep-graphicsio-emf-java | 2.1.1-emfplus+dfsg1-2 | - +- all | libfreehep-graphicsio-java | 2.1.1-3 | - +- all | libfreehep-graphicsio-java-java | 2.1.1-1 | - +- all | libfreehep-graphicsio-pdf-java | 2.1.1+dfsg-1 | - +- all | libfreehep-graphicsio-ps-java | 2.1.1-1 | - +- all | libfreehep-graphicsio-svg-java | 2.1.1-3 | - +- all | libfreehep-graphicsio-swf-java | 2.1.1+dfsg-1 | - +- all | libfreehep-graphicsio-tests-java | 2.1.1+dfsg1-3 | - +- all | libfreehep-io-java | 2.0.2-4 | - +- all | libfreehep-swing-java | 2.0.3-3 | - +- all | libfreehep-util-java | 2.0.2-5 | - +- all | libfreehep-xml-java | 2.1.2+dfsg1-3 | - +- all | libfreemarker-java | 2.3.18-1 | - +- all | libfreemarker-java-doc | 2.3.18-1 | - +- all | libfreenect-doc | 1:0.1.2+dfsg-6 | - +- all | libfreezethaw-perl | 0.5001-1 | - +- all | libfrontier-rpc-perl | 0.07b4-6 | - +- all | libfssm-ruby | 0.2.9-2 | - +- all | libfssm-ruby1.8 | 0.2.9-2 | - +- all | libfssm-ruby1.9.1 | 0.2.9-2 | - +- all | libfusefs-ruby | 0.7.0-3 | - +- all | libfusefs-ruby1.8 | 0.7.0-3 | - +- all | libfusioninventory-agent-task-deploy-perl | 2.0.2-1 | - +- all | libfusioninventory-agent-task-esx-perl | 2.1.0-1 | - +- all | libg3d-doc | 0.0.8-17 | - +- all | libgadu-doc | 1:1.11.2-1 | - +- all | libgail-3-doc | 3.4.2-7 | - +- all | libgail-doc | 2.24.10-2 | - +- all | libgammu-i18n | 1.31.90-1 | - +- all | libganymed-ssh2-java | 250-2 | - +- all | libgarcon-common | 0.1.12-1 | - +- all | libgavl-doc | 1.4.0-1 | - +- all | libgcj-common | 1:4.6.3-8 | - +- all | libgcj-doc | 4.7.2-3 | - +- all | libgck-1-doc | 3.4.1-3 | - +- all | libgconf2-doc | 3.2.5-1+build1 | - +- all | libgconf2.0-cil | 2.24.2-3 | - +- all | libgconf2.0-cil-dev | 2.24.2-3 | - +- all | libgconfmm-2.6-doc | 2.28.0-1 | - +- all | libgcr-3-common | 3.4.1-3 | - +- all | libgcr-3-doc | 3.4.1-3 | - +- all | libgcrypt11-doc | 1.5.0-5+deb7u1 | - +- all | libgd-barcode-perl | 1.15-5 | - +- all | libgd-graph-perl | 1.44-6 | - +- all | libgd-graph3d-perl | 0.63-8 | - +- all | libgd-ruby | 0.8.0-3 | - +- all | libgd-ruby1.8 | 0.8.0-3 | - +- all | libgd-securityimage-perl | 1.71-1 | - +- all | libgd-svg-perl | 0.33-1 | - +- all | libgd-text-perl | 0.86-8 | - +- all | libgda-5.0-common | 5.0.3-2 | - +- all | libgda-5.0-doc | 5.0.3-2 | - +- all | libgdal-doc | 1.9.0-3.1 | - +- all | libgdal1-dev | 1.9.0-3.1 | - +- all | libgdata-cil-dev | 2.1.0.0-1 | - +- all | libgdata-common | 0.12.0-1 | - +- all | libgdata-doc | 0.12.0-1 | - +- all | libgdata2.1-cil | 2.1.0.0-1 | - +- all | libgdict-common | 3.4.0-2 | - +- all | libgdk-pixbuf2-ruby | 1.1.3-2 | - +- all | libgdk-pixbuf2-ruby1.8 | 1.1.3-2 | - +- all | libgdk-pixbuf2-ruby1.8-dbg | 1.1.3-2 | - +- all | libgdk-pixbuf2.0-common | 2.26.1-1 | - +- all | libgdk-pixbuf2.0-doc | 2.26.1-1 | - +- all | libgdl-3-common | 3.4.2-1 | - +- all | libgdl-3-doc | 3.4.2-1 | - +- all | libgearman-client-perl | 1.11-1 | - +- all | libgearman-doc | 0.33-2 | - +- all | libgecode-doc | 3.7.3-1 | - +- all | libgeda-common | 1:1.6.2-4.3 | - +- all | libgedcom-perl | 1.16-1 | - +- all | libgegl-doc | 0.2.0-2+nmu1 | - +- all | libgentlyweb-utils-java | 1.5-1 | - +- all | libgentlyweb-utils-java-doc | 1.5-1 | - +- all | libgeo-coder-googlev3-perl | 0.11-1 | - +- all | libgeo-coordinates-itm-perl | 0.02-1 | - +- all | libgeo-coordinates-utm-perl | 0.09-1 | - +- all | libgeo-distance-perl | 0.19-1 | - +- all | libgeo-google-mapobject-perl | 0.06-1 | - +- all | libgeo-googleearth-pluggable-perl | 0.14-1 | - +- all | libgeo-helmerttransform-perl | 1.14-1 | - +- all | libgeo-ipfree-perl | 1.121660-1 | - +- all | libgeo-metar-perl | 1.15-1 | - +- all | libgeo-osm-tiles-perl | 0.04-2 | - +- all | libgeo-point-perl | 0.93-1 | - +- all | libgeo-postcode-perl | 0.17+dfsg1-1 | - +- all | libgeocode-glib-doc | 0.99.0-1 | - +- all | libgeography-countries-perl | 2009041301-1 | - +- all | libgeography-nationalgrid-perl | 1.6-10 | - +- all | libgeometry-primitive-perl | 0.22-1 | - +- all | libgeos-doc | 3.3.3-1.1 | - +- all | libgeronimo-activation-1.1-spec-java | 1.0.2-2 | - +- all | libgeronimo-commonj-spec-java | 1.1.1-1 | - +- all | libgeronimo-ejb-3.0-spec-java | 1.0.1-1 | - +- all | libgeronimo-interceptor-3.0-spec-java | 1.0.1-1 | - +- all | libgeronimo-j2ee-connector-1.5-spec-java | 2.0.0-1 | - +- all | libgeronimo-jacc-1.1-spec-java | 1.0.1-1.1 | - +- all | libgeronimo-javamail-1.4-provider-java | 1.8.3-1 | - +- all | libgeronimo-javamail-1.4-spec-java | 1.7.1-2 | - +- all | libgeronimo-jms-1.1-spec-java | 1.1-1.2 | - +- all | libgeronimo-jpa-2.0-spec-java | 1.1-2 | - +- all | libgeronimo-jpa-2.0-spec-java-doc | 1.1-2 | - +- all | libgeronimo-jpa-3.0-spec-java | 1.1.1-1 | - +- all | libgeronimo-jta-1.1-spec-java | 1.1.1-2 | - +- all | libgeronimo-jta-1.1-spec-java-doc | 1.1.1-2 | - +- all | libgeronimo-osgi-support-java | 1.0-2 | - +- all | libgeronimo-osgi-support-java-doc | 1.0-2 | - +- all | libgeronimo-stax-1.2-spec-java | 1.1-1 | - +- all | libgeronimo-validation-1.0-spec-java | 1.1-2 | - +- all | libgeronimo-validation-1.0-spec-java-doc | 1.1-2 | - +- all | libges-0.10-doc | 0.10.1-2 | - +- all | libgetargs-long-perl | 1.1003-2 | - +- all | libgetopt-argvfile-perl | 1.11-1 | - +- all | libgetopt-declare-perl | 1.14-1 | - +- all | libgetopt-euclid-perl | 0.3.5-1 | - +- all | libgetopt-java | 1.0.13-4 | - +- all | libgetopt-java-doc | 1.0.13-4 | - +- all | libgetopt-long-descriptive-perl | 0.091-1 | - +- all | libgetopt-lucid-perl | 1.01-1 | - +- all | libgetopt-mixed-perl | 1.008-10 | - +- all | libgetopt-simple-perl | 1.52-2 | - +- all | libgetopt-tabular-perl | 0.3-1 | - +- all | libgetopt-usaginator-perl | 0.0012-1 | - +- all | libgettext-activerecord-ruby | 2.1.0-5 | - +- all | libgettext-activerecord-ruby-common | 2.1.0-5 | - +- all | libgettext-activerecord-ruby1.8 | 2.1.0-5 | - +- all | libgettext-activerecord-ruby1.9.1 | 2.1.0-5 | - +- all | libgettext-ant-tasks-java | 0.9.7~svn203-2 | - +- all | libgettext-commons-java | 0.9.6-2 | - +- all | libgettext-rails-ruby | 2.1.0-3 | - +- all | libgettext-rails-ruby-doc | 2.1.0-3 | - +- all | libgettext-rails-ruby1.8 | 2.1.0-3 | - +- all | libgettext-ruby | 2.2.1-3 | - +- all | libgettext-ruby1.8 | 2.2.1-3 | - +- all | libgettext-ruby1.9.1 | 2.2.1-3 | - +- all | libgflags-doc | 2.0-1 | - +- all | libghc-acid-state-doc | 0.6.3-1 | - +- all | libghc-active-doc | 0.1.0.1-2 | - +- all | libghc-adjunctions-doc | 2.4.0.2-1 | - +- all | libghc-aeson-doc | 0.6.0.2-1 | - +- all | libghc-agda-doc | 2.3.0.1-2 | - +- all | libghc-algebra-doc | 2.1.1.2-1 | - +- all | libghc-alut-doc | 2.1.0.2-4 | - +- all | libghc-ami-doc | 0.1-1 | - +- all | libghc-ansi-terminal-doc | 0.5.5-3 | - +- all | libghc-ansi-wl-pprint-doc | 0.6.4-1 | - +- all | libghc-arrows-doc | 0.4.4.0-3 | - +- all | libghc-asn1-data-doc | 0.6.1.3-2 | - ++ all | libghc-async-doc | - | 2.0.1.3-1~bpo70+1 +- all | libghc-attempt-doc | 0.4.0-1 | - +- all | libghc-attoparsec-conduit-doc | 0.4.0.1-1 | - +- all | libghc-attoparsec-doc | 0.10.1.1-2 | - +- all | libghc-attoparsec-enumerator-doc | 0.3-3 | - +- all | libghc-augeas-doc | 0.6.1-1 | - +- all | libghc-authenticate-doc | 1.2.1.1-2 | - +- all | libghc-base-unicode-symbols-doc | 0.2.2.3-1 | - +- all | libghc-base16-bytestring-doc | 0.1.1.4-2 | - +- all | libghc-base64-bytestring-doc | 0.1.1.1-2 | - +- all | libghc-bifunctors-doc | 0.1.3.3-1 | - +- all | libghc-binary-shared-doc | 0.8.1-1 | - +- all | libghc-bindings-gpgme-doc | 0.1.4-1 | - +- all | libghc-bindings-libzip-doc | 0.10-2 | - +- all | libghc-bitarray-doc | 0.0.1-2 | - +- all | libghc-blaze-builder-conduit-doc | 0.4.0.2-1 | - +- all | libghc-blaze-builder-doc | 0.3.1.0-1 | - +- all | libghc-blaze-builder-enumerator-doc | 0.2.0.4-1 | - +- all | libghc-blaze-html-doc | 0.4.3.1-3 | - +- all | libghc-blaze-markup-doc | 0.5.1.0-1 | - +- all | libghc-blaze-textual-doc | 0.2.0.6-2 | - +- all | libghc-bloomfilter-doc | 1.2.6.8-1 | - +- all | libghc-boolean-doc | 0.0.1-2 | - +- all | libghc-boomerang-doc | 1.3.1-1 | - +- all | libghc-brainfuck-doc | 0.1-2 | - +- all | libghc-byteorder-doc | 1.0.3-2 | - +- all | libghc-bytestring-lexing-doc | 0.4.0-1 | - +- all | libghc-bytestring-mmap-doc | 0.2.2-2 | - +- all | libghc-bytestring-nums-doc | 0.3.5-2 | - +- all | libghc-bytestring-show-doc | 0.3.5.1-1 | - +- all | libghc-bzlib-doc | 0.5.0.3-2 | - +- all | libghc-cabal-file-th-doc | 0.2.2-1 | - +- all | libghc-cairo-doc | 0.12.3-1 | - +- all | libghc-case-insensitive-doc | 0.4.0.1-2 | - +- all | libghc-categories-doc | 1.0.3-1 | - +- all | libghc-cautious-file-doc | 1.0.1-1 | - +- all | libghc-cereal-conduit-doc | 0.5-1 | - +- all | libghc-cereal-doc | 0.3.5.2-1 | - +- all | libghc-certificate-doc | 1.2.3-2 | - +- all | libghc-cgi-doc | 3001.1.8.2-2 | - +- all | libghc-chart-doc | 0.15-1 | - +- all | libghc-chell-doc | 0.3-1 | - +- all | libghc-citeproc-hs-data | 0.3.4-1 | - +- all | libghc-citeproc-hs-doc | 0.3.4-1 | - +- all | libghc-clientsession-doc | 0.7.5-3 | - +- all | libghc-clock-doc | 0.2.0.0-2 | - +- all | libghc-cmdargs-doc | 0.9.5-1 | - +- all | libghc-colour-doc | 2.3.3-1 | - +- all | libghc-comonad-doc | 1.1.1.5-1 | - +- all | libghc-comonad-transformers-doc | 2.1.1.1-1 | - +- all | libghc-comonads-fd-doc | 2.1.1.2-1 | - +- all | libghc-conduit-doc | 0.4.2-2 | - +- all | libghc-configfile-doc | 1.0.6-4 | - +- all | libghc-configurator-doc | 0.2.0.0-1 | - +- all | libghc-contravariant-doc | 0.2.0.2-1 | - +- all | libghc-convertible-doc | 1.0.11.0-3 | - +- all | libghc-cookie-doc | 0.4.0-1 | - +- all | libghc-cpphs-doc | 1.13.3-2 | - +- all | libghc-cprng-aes-doc | 0.2.3-3 | - +- all | libghc-cpu-doc | 0.1.1-1 | - +- all | libghc-criterion-doc | 0.6.0.1-3 | - +- all | libghc-crypto-api-doc | 0.10.2-1 | - +- all | libghc-crypto-conduit-doc | 0.3.2-1 | - +- all | libghc-crypto-doc | 4.2.4-1 | - +- all | libghc-crypto-pubkey-types-doc | 0.1.1-1 | - +- all | libghc-cryptocipher-doc | 0.3.5-1 | - +- all | libghc-cryptohash-doc | 0.7.5-1 | - +- all | libghc-css-text-doc | 0.1.1-3 | - +- all | libghc-csv-conduit-doc | 0.2-1 | - +- all | libghc-csv-doc | 0.1.2-2 | - +- all | libghc-curl-doc | 1.3.7-1 | - +- all | libghc-darcs-doc | 2.8.1-1 | - +- all | libghc-data-accessor-doc | 0.2.2.2-1 | - +- all | libghc-data-accessor-mtl-doc | 0.2.0.3-1 | - +- all | libghc-data-accessor-template-doc | 0.2.1.9-1 | - +- all | libghc-data-binary-ieee754-doc | 0.4.2.1-3 | - +- all | libghc-data-default-doc | 0.4.0-1 | - +- all | libghc-data-inttrie-doc | 0.0.7-1 | - +- all | libghc-data-lens-doc | 2.10.0-1 | - +- all | libghc-data-memocombinators-doc | 0.4.3-1 | - +- all | libghc-dataenc-doc | 0.14.0.3-1 | - +- all | libghc-datetime-doc | 0.2.1-3 | - +- all | libghc-dbus-doc | 0.10.3-1 | - +- all | libghc-debian-doc | 3.64-3 | - +- all | libghc-diagrams-cairo-doc | 0.5.0.2-1 | - +- all | libghc-diagrams-core-doc | 0.5.0.1-1 | - +- all | libghc-diagrams-dev | 0.5-2 | - +- all | libghc-diagrams-doc | 0.5-2 | - +- all | libghc-diagrams-lib-doc | 0.5-2 | - +- all | libghc-diagrams-prof | 0.5-2 | - +- all | libghc-diff-doc | 0.1.3-1 | - +- all | libghc-digest-doc | 0.0.1.0-1 | - +- all | libghc-dimensional-doc | 0.10.1.2-2 | - +- all | libghc-directory-tree-doc | 0.10.0-2 | - +- all | libghc-distributive-doc | 0.2.2-1 | - +- all | libghc-dlist-doc | 0.5-3 | - ++ all | libghc-doctest-doc | - | 0.9.1-1~bpo70+1 +- all | libghc-download-curl-doc | 0.1.3-3 | - +- all | libghc-dpkg-doc | 0.0.3-1 | - +- all | libghc-dyre-doc | 0.8.7-1 | - +- all | libghc-edison-api-doc | 1.2.1-18 | - +- all | libghc-edison-core-doc | 1.2.1.3-9 | - +- all | libghc-edit-distance-doc | 0.2.1-2 | - +- all | libghc-editline-doc | 0.2.1.0-5 | - +- all | libghc-ekg-data | 0.3.1.0-1 | - +- all | libghc-ekg-doc | 0.3.1.0-1 | - +- all | libghc-email-validate-doc | 0.2.8-1 | - +- all | libghc-entropy-doc | 0.2.1-2 | - +- all | libghc-enumerator-doc | 0.4.19-1 | - +- all | libghc-erf-doc | 2.0.0.0-2 | - +- all | libghc-event-list-doc | 0.1.0.1-1 | - +- all | libghc-exception-transformers-doc | 0.3.0.2-1 | - +- all | libghc-executable-path-doc | 0.0.3-1 | - +- all | libghc-explicit-exception-doc | 0.1.7-1 | - +- all | libghc-failure-doc | 0.2.0.1-1 | - +- all | libghc-fast-logger-doc | 0.0.2-1 | - +- all | libghc-fastcgi-doc | 3001.0.2.3-3 | - +- all | libghc-fclabels-doc | 1.1.3-1 | - +- all | libghc-feed-doc | 0.3.8-3 | - +- all | libghc-fgl-doc | 5.4.2.4-2 | - +- all | libghc-file-embed-doc | 0.0.4.4-1 | - +- all | libghc-filemanip-doc | 0.3.5.2-2 | - +- all | libghc-filestore-data | 0.5-1 | - +- all | libghc-filestore-doc | 0.5-1 | - +- all | libghc-filesystem-conduit-doc | 0.4.0-1 | - +- all | libghc-free-doc | 2.1.1.1-1 | - +- all | libghc-ftphs-doc | 1.0.8-1 | - +- all | libghc-gconf-doc | 0.12.1-1 | - +- all | libghc-gd-doc | 3000.7.3-1 | - ++ all | libghc-generic-deriving-doc | - | 1.4.0-2~bpo70+1 +- all | libghc-ghc-events-doc | 0.4.0.0-2 | - +- all | libghc-ghc-mtl-doc | 1.0.1.1-1 | - +- all | libghc-ghc-paths-doc | 0.1.0.8-2 | - +- all | libghc-ghc-syb-utils-doc | 0.2.1.0-1 | - +- all | libghc-gio-doc | 0.12.3-1 | - +- all | libghc-github-doc | 0.4.0-2 | - +- all | libghc-gitit-doc | 0.10.0.1-1 | - +- all | libghc-glade-doc | 0.12.1-1 | - +- all | libghc-glfw-doc | 0.5.0.1-1 | - +- all | libghc-glib-doc | 0.12.2-1 | - +- all | libghc-glut-doc | 2.1.2.2-1 | - +- all | libghc-gnuidn-doc | 0.2-2 | - +! all | libghc-gnutls-doc | 0.1.2-1 | 0.1.4-3~bpo70+1 +- all | libghc-gsasl-doc | 0.3.4-1 | - +- all | libghc-gstreamer-doc | 0.12.1-1 | - +- all | libghc-gtk-doc | 0.12.3-1 | - +- all | libghc-gtkglext-doc | 0.12.1-1 | - +- all | libghc-gtksourceview2-doc | 0.12.3-1 | - +- all | libghc-haddock-doc | 2.10.0-1 | - +- all | libghc-hakyll-doc | 3.2.7.2-1 | - +- all | libghc-hamlet-doc | 1.0.1.3-1 | - +- all | libghc-happstack-doc | 7.0.0-1 | - +- all | libghc-happstack-server-doc | 7.0.1-1 | - +- all | libghc-harp-doc | 0.4-3 | - +- all | libghc-hashable-doc | 1.1.2.3-1 | - +- all | libghc-hashed-storage-doc | 0.5.9-2 | - +- all | libghc-hashmap-doc | 1.3.0.1-1 | - +- all | libghc-hashtables-doc | 1.0.1.4-1 | - +- all | libghc-haskeline-doc | 0.6.4.7-1 | - +- all | libghc-haskell-lexer-doc | 1.0-3 | - +- all | libghc-haskell-src-doc | 1.0.1.5-1 | - +- all | libghc-haskelldb-doc | 2.1.1-5 | - +- all | libghc-haskelldb-hdbc-doc | 2.1.0-4 | - +- all | libghc-haskelldb-hdbc-odbc-doc | 2.1.0-3 | - +- all | libghc-haskelldb-hdbc-postgresql-doc | 2.1.0-3 | - +- all | libghc-haskelldb-hdbc-sqlite3-doc | 2.1.0-3 | - +- all | libghc-haskore-doc | 0.2.0.3-2 | - +- all | libghc-hastache-doc | 0.3.3-2 | - +- all | libghc-haxml-doc | 1:1.22.5-2 | - +- all | libghc-haxr-doc | 3000.8.5-1 | - +- all | libghc-hcard-doc | 0.0-2 | - +- all | libghc-hcwiid-doc | 0.0.1-3 | - +- all | libghc-hdbc-doc | 2.3.1.1-1 | - +- all | libghc-hdbc-odbc-doc | 2.2.3.0-5 | - +- all | libghc-hdbc-postgresql-doc | 2.3.2.1-1 | - +- all | libghc-hdbc-sqlite3-doc | 2.3.3.0-1 | - +- all | libghc-hfuse-doc | 0.2.4.1-1 | - +- all | libghc-highlighting-kate-doc | 0.5.1-1 | - +- all | libghc-hinotify-doc | 0.3.2-1 | - +- all | libghc-hint-doc | 0.3.3.4-2 | - +- all | libghc-hipmunk-doc | 5.2.0.8-1 | - +- all | libghc-hjavascript-doc | 0.4.7-3 | - +- all | libghc-hjscript-doc | 0.5.0-3 | - +- all | libghc-hjsmin-doc | 0.1.1-1 | - +- all | libghc-hlint-doc | 1.8.28-1 | - +- all | libghc-hoauth-doc | 0.3.4-1 | - +- all | libghc-hostname-doc | 1.0-4 | - +- all | libghc-hs-bibutils-doc | 4.12-5 | - +- all | libghc-hs3-doc | 0.5.6-2 | - +- all | libghc-hscolour-doc | 1.19-3 | - +- all | libghc-hscurses-doc | 1.4.1.0-1 | - +- all | libghc-hsemail-doc | 1.7.1-2 | - +- all | libghc-hslogger-doc | 1.1.4+dfsg1-2 | - +- all | libghc-hsp-doc | 0.6.1-2 | - +- all | libghc-hspec-doc | 1.1.0-1 | - +- all | libghc-hsql-doc | 1.8.1-4 | - +- all | libghc-hsql-mysql-doc | 1.8.1-4 | - +- all | libghc-hsql-odbc-doc | 1.8.1.1-2 | - +- all | libghc-hsql-postgresql-doc | 1.8.1-3 | - +- all | libghc-hsql-sqlite3-doc | 1.8.1-2 | - +- all | libghc-hssyck-doc | 0.50-2 | - +- all | libghc-hstringtemplate-doc | 0.6.8-1 | - +- all | libghc-hsx-doc | 0.9.1-3 | - +- all | libghc-html-conduit-doc | 0.0.1-2 | - +- all | libghc-html-doc | 1.0.1.2-5 | - +- all | libghc-http-conduit-doc | 1.4.1.6-3 | - +- all | libghc-http-date-doc | 0.0.2-1 | - +- all | libghc-http-doc | 1:4000.2.3-1 | - +- all | libghc-http-types-doc | 0.6.11-1 | - +- all | libghc-hunit-doc | 1.2.4.2-2 | - +- all | libghc-hxt-cache-doc | 9.0.2-2 | - +- all | libghc-hxt-charproperties-doc | 9.1.1-2 | - +- all | libghc-hxt-curl-doc | 9.1.1-1 | - +- all | libghc-hxt-doc | 9.2.2-2 | - +- all | libghc-hxt-http-doc | 9.1.4-2 | - +- all | libghc-hxt-regex-xmlschema-doc | 9.0.4-2 | - +- all | libghc-hxt-relaxng-doc | 9.1.4-1 | - +- all | libghc-hxt-tagsoup-doc | 9.1.1-1 | - +- all | libghc-hxt-unicode-doc | 9.0.2-2 | - +- all | libghc-hxt-xpath-doc | 9.1.2-1 | - +- all | libghc-hxt-xslt-doc | 9.1.1-1 | - +- all | libghc-iconv-doc | 0.4.1.0-2 | - +- all | libghc-ieee754-doc | 0.7.3-1 | - +- all | libghc-ifelse-doc | 0.85-4 | - +- all | libghc-io-choice-doc | 0.0.1-1 | - +- all | libghc-io-storage-doc | 0.3-2 | - +- all | libghc-iospec-doc | 0.2.5-1 | - +- all | libghc-irc-doc | 0.5.0.0-1 | - +- all | libghc-iteratee-doc | 0.8.8.2-2 | - +- all | libghc-ixset-doc | 1.0.3-2 | - +- all | libghc-json-doc | 0.5-2 | - +- all | libghc-keys-doc | 2.1.3.2-1 | - +- all | libghc-knob-doc | 0.1.1-1 | - +- all | libghc-lambdabot-utils-doc | 4.2.1-3 | - +- all | libghc-language-c-doc | 0.4.2-2 | - +- all | libghc-language-haskell-extract-doc | 0.2.1-4 | - +- all | libghc-language-javascript-doc | 0.5.4-1 | - +- all | libghc-largeword-doc | 1.0.1-2 | - +- all | libghc-ldap-doc | 0.6.6-4.1 | - +- all | libghc-leksah-server-doc | 0.12.0.4-3 | - +- all | libghc-libtagc-doc | 0.12.0-2 | - +- all | libghc-libxml-sax-doc | 0.7.2-2 | - +- all | libghc-libzip-doc | 0.10-1 | - +- all | libghc-lifted-base-doc | 0.1.1-1 | - +- all | libghc-listlike-doc | 3.1.4-1 | - +- all | libghc-llvm-base-doc | 3.0.1.0-1 | - +- all | libghc-llvm-doc | 3.0.1.0-1 | - +- all | libghc-logict-doc | 0.5.0.1-1 | - +- all | libghc-ltk-doc | 0.12.0.0-2 | - +- all | libghc-maccatcher-doc | 2.1.5-2 | - +- all | libghc-magic-doc | 1.0.8-8 | - +- all | libghc-markov-chain-doc | 0.0.3.2-1 | - +- all | libghc-math-functions-doc | 0.1.1.0-2 | - +- all | libghc-maths-doc | 0.4.3-1 | - +- all | libghc-maybet-doc | 0.1.2-3 | - +- all | libghc-mbox-doc | 0.1-2 | - +- all | libghc-memotrie-doc | 0.5-1 | - +- all | libghc-mersenne-random-doc | 1.0.0.1-2 | - +- all | libghc-midi-doc | 0.2.0.1-1 | - +- all | libghc-mime-mail-doc | 0.4.1.1-2 | - +- all | libghc-missingh-doc | 1.1.0.3-6 | - +- all | libghc-mmap-doc | 0.5.7-2 | - +- all | libghc-monad-control-doc | 0.3.1.3-1 | - +- all | libghc-monad-loops-doc | 0.3.2.0-1 | - +- all | libghc-monad-par-doc | 0.1.0.3-2 | - +- all | libghc-monadcatchio-mtl-doc | 0.3.0.4-2 | - +- all | libghc-monadcatchio-transformers-doc | 0.3.0.0-2 | - +- all | libghc-monadcryptorandom-doc | 0.4.1-1 | - +- all | libghc-monadrandom-doc | 0.1.6-2 | - +- all | libghc-monads-tf-doc | 0.1.0.0-1 | - +- all | libghc-monoid-transformer-doc | 0.0.2-3 | - +- all | libghc-mtl-doc | 2.1.1-1 | - +- all | libghc-mtlparse-doc | 0.1.2-2 | - +- all | libghc-murmur-hash-doc | 0.1.0.5-2 | - +- all | libghc-mwc-random-doc | 0.11.0.0-4 | - +- all | libghc-ncurses-doc | 0.2.1-1 | - +- all | libghc-netwire-doc | 3.1.0-2 | - +- all | libghc-network-conduit-doc | 0.4.0.1-2 | - +- all | libghc-network-doc | 2.3.0.13-1 | - ++ all | libghc-network-info-doc | - | 0.2.0.1-2~bpo70+1 ++ all | libghc-network-multicast-doc | - | 0.0.10-1~bpo70+1 +! all | libghc-network-protocol-xmpp-doc | 0.4.3-1 | 0.4.4-2~bpo70+1 +- all | libghc-newtype-doc | 0.2-1 | - +- all | libghc-non-negative-doc | 0.1-2 | - +- all | libghc-numbers-doc | 2009.8.9-2 | - +- all | libghc-numeric-quest-doc | 0.2-1 | - +- all | libghc-numinstances-doc | 1.0-2 | - +- all | libghc-numtype-doc | 1.0-2 | - +- all | libghc-oeis-doc | 0.3.1-2 | - +- all | libghc-openal-doc | 1.3.1.3-4 | - +- all | libghc-opengl-doc | 2.2.3.1-1 | - +- all | libghc-openpgp-asciiarmor-doc | 0.1-1 | - +- all | libghc-options-doc | 0.1.1-1 | - +- all | libghc-pandoc-doc | 1.9.4.2-2 | - +- all | libghc-pandoc-types-doc | 1.9.1-1 | - +- all | libghc-pango-doc | 0.12.2-1 | - +- all | libghc-parallel-doc | 3.2.0.2-2 | - +- all | libghc-parseargs-doc | 0.1.3.2-2 | - +- all | libghc-parsec2-doc | 2.1.0.1-6 | - +- all | libghc-parsec3-doc | 3.1.2-1 | - +- all | libghc-pastis-doc | 0.1.2-2 | - +- all | libghc-path-pieces-doc | 0.1.0-1 | - +- all | libghc-patience-doc | 0.1.1-1 | - +- all | libghc-pcre-light-doc | 0.4-3 | - +- all | libghc-pem-doc | 0.1.1-1 | - +- all | libghc-persistent-doc | 0.9.0.4-2 | - +- all | libghc-persistent-sqlite-doc | 0.9.0.2-2 | - +- all | libghc-persistent-template-doc | 0.9.0.2-1 | - +- all | libghc-polyparse-doc | 1.7-1 | - +- all | libghc-pool-conduit-doc | 0.1.0.2-1 | - +- all | libghc-postgresql-libpq-doc | 0.8.2-1 | - +- all | libghc-postgresql-simple-doc | 0.1.4.3-1 | - +- all | libghc-pretty-show-doc | 1.1.1-4 | - +- all | libghc-primes-doc | 0.2.1.0-2 | - +- all | libghc-primitive-doc | 0.4.1-1 | - +- all | libghc-psqueue-doc | 1.1-2 | - +- all | libghc-puremd5-doc | 2.1.0.3-2 | - +- all | libghc-pwstore-fast-doc | 2.2-2 | - +- all | libghc-quickcheck1-doc | 1.2.0.1-2 | - +- all | libghc-quickcheck2-doc | 2.4.2-1 | - +- all | libghc-random-doc | 1.0.1.1-1 | - +- all | libghc-random-shuffle-doc | 0.0.3-2 | - +- all | libghc-ranged-sets-doc | 0.3.0-2 | - +- all | libghc-ranges-doc | 0.2.4-2 | - +- all | libghc-reactive-banana-doc | 0.6.0.0-1 | - +- all | libghc-readline-doc | 1.0.1.0-3 | - +- all | libghc-recaptcha-doc | 0.1-4 | - +- all | libghc-regex-base-doc | 0.93.2-2 | - +- all | libghc-regex-compat-doc | 0.95.1-2 | - +- all | libghc-regex-pcre-doc | 0.94.2-2 | - +- all | libghc-regex-posix-doc | 0.95.1-2 | - +- all | libghc-regex-tdfa-doc | 1.1.8-2 | - +- all | libghc-regex-tdfa-utf8-doc | 1.0-5 | - +- all | libghc-regexpr-doc | 0.5.4-2 | - +- all | libghc-representable-functors-doc | 2.4.0.2-1 | - +- all | libghc-representable-tries-doc | 2.4.0.2-1 | - +- all | libghc-resource-pool-doc | 0.2.1.0-2 | - +- all | libghc-resourcet-doc | 0.3.2.1-1 | - +- all | libghc-rsa-doc | 1.2.1.0-1 | - +- all | libghc-safe-doc | 0.3.3-1 | - +- all | libghc-safecopy-doc | 0.6.1-1 | - ++ all | libghc-safesemaphore-doc | - | 0.9.0-1~bpo70+1 +- all | libghc-sdl-doc | 0.6.3-1 | - +- all | libghc-sdl-gfx-doc | 0.6.0-3 | - +- all | libghc-sdl-image-doc | 0.6.1-3 | - +- all | libghc-sdl-mixer-doc | 0.6.1-3 | - +- all | libghc-sdl-ttf-doc | 0.6.1-3 | - +- all | libghc-semigroupoids-doc | 1.3.1.2-1 | - +- all | libghc-semigroups-doc | 0.8.3.2-1 | - +- all | libghc-sendfile-doc | 0.7.6-1 | - +- all | libghc-sha-doc | 1.5.0.1-1 | - +- all | libghc-shakespeare-css-doc | 1.0.1.2-1 | - +- all | libghc-shakespeare-doc | 1.0.0.2-1 | - +- all | libghc-shakespeare-i18n-doc | 1.0.0.2-1 | - +- all | libghc-shakespeare-js-doc | 1.0.0.2-1 | - +- all | libghc-shakespeare-text-doc | 1.0.0.2-1 | - +- all | libghc-shellac-doc | 0.9.5.1-2 | - +- all | libghc-show-doc | 0.4.1.2-1 | - +- all | libghc-silently-doc | 1.1.4-1 | - +- all | libghc-simple-sendfile-doc | 0.2.3-1 | - +- all | libghc-simpleea-doc | 0.1.1-2 | - +- all | libghc-simpleirc-doc | 0.2.1-2 | - +- all | libghc-skein-doc | 0.1.0.7-2 | - +- all | libghc-smallcheck-doc | 0.6-1 | - +- all | libghc-smtpclient-doc | 1.0.4-3 | - +- all | libghc-snap-core-doc | 0.8.1-1 | - +- all | libghc-snap-server-doc | 0.8.1.1-1 | - +- all | libghc-socks-doc | 0.4.1-1 | - +- all | libghc-split-doc | 0.1.4.2-2 | - +- all | libghc-src-exts-doc | 1.11.1-3 | - +- all | libghc-statevar-doc | 1.0.0.0-2 | - +- all | libghc-static-hash-doc | 0.0.1-3 | - +- all | libghc-statistics-doc | 0.10.1.0-2 | - +- all | libghc-stm-doc | 2.3-1 | - +- all | libghc-stream-doc | 0.4.6-1 | - +- all | libghc-strict-concurrency-doc | 0.2.4.1-2 | - +- all | libghc-strict-doc | 0.3.2-2 | - +- all | libghc-strptime-doc | 1.0.6-1 | - +- all | libghc-svgcairo-doc | 0.12.1-1 | - +- all | libghc-syb-doc | 0.3.6.1-1 | - +- all | libghc-syb-with-class-doc | 0.6.1.3-1 | - +- all | libghc-syb-with-class-instances-text-doc | 0.0.1-3 | - +- all | libghc-system-fileio-doc | 0.3.8-1 | - +- all | libghc-system-filepath-doc | 0.4.6-1 | - +- all | libghc-tagged-doc | 0.4.2.1-1 | - +- all | libghc-tagsoup-doc | 0.12.6-1 | - +- all | libghc-tagstream-conduit-doc | 0.3.2-1 | - +- all | libghc-tar-doc | 0.3.2.0-2 | - +- all | libghc-template-doc | 0.2.0.7-1 | - +- all | libghc-temporary-doc | 1.1.2.3-1 | - +- all | libghc-terminfo-doc | 0.3.2.3-1 | - +- all | libghc-test-framework-doc | 0.6-1 | - +- all | libghc-test-framework-hunit-doc | 0.2.7-1 | - +- all | libghc-test-framework-quickcheck2-doc | 0.2.12.1-1 | - +- all | libghc-test-framework-th-doc | 0.2.2-5 | - +- all | libghc-test-framework-th-prime-doc | 0.0.5-1 | - +- all | libghc-testpack-doc | 2.1.1-1 | - +- all | libghc-texmath-doc | 0.6.0.6-1 | - +- all | libghc-text-doc | 0.11.2.0-1 | - +- all | libghc-text-icu-doc | 0.6.3.4-2 | - +- all | libghc-tinyurl-doc | 0.1.0-2 | - +- all | libghc-tls-doc | 0.9.5-1 | - +- all | libghc-tls-extra-doc | 0.4.6.1-2 | - +- all | libghc-tokyocabinet-doc | 0.0.5-5 | - +- all | libghc-transformers-base-doc | 0.4.1-2 | - +- all | libghc-transformers-doc | 0.3.0.0-1 | - +- all | libghc-type-level-doc | 0.2.4-5 | - +- all | libghc-uniplate-doc | 1.6.7-1 | - +- all | libghc-unix-bytestring-doc | 0.3.5-2 | - +- all | libghc-unix-compat-doc | 0.3.0.1-1 | - +- all | libghc-unixutils-doc | 1.50-1 | - +- all | libghc-unlambda-doc | 0.1-2 | - +- all | libghc-unordered-containers-doc | 0.2.1.0-1 | - +- all | libghc-uri-doc | 0.1.6-1 | - +- all | libghc-url-doc | 2.1.2-4 | - +- all | libghc-utf8-light-doc | 0.4.0.1-2 | - +- all | libghc-utf8-string-doc | 0.3.7-1 | - +- all | libghc-utility-ht-doc | 0.0.5.1-3 | - +- all | libghc-uuagc-cabal-doc | 1.0.2.0-1 | - +- all | libghc-uuid-doc | 1.2.3-2 | - +- all | libghc-uulib-doc | 0.9.14-2 | - +- all | libghc-vault-doc | 0.2.0.0-1 | - +- all | libghc-vector-algorithms-doc | 0.5.4-1 | - +- all | libghc-vector-doc | 0.9.1-2 | - +- all | libghc-vector-space-doc | 0.8.1-1 | - +- all | libghc-vector-space-points-doc | 0.1.1.0-1 | - +- all | libghc-void-doc | 0.5.5.1-2 | - +- all | libghc-vte-doc | 0.12.1-1 | - +- all | libghc-vty-doc | 4.7.0.14-1 | - +- all | libghc-wai-app-file-cgi-doc | 0.5.8-1 | - +- all | libghc-wai-app-static-doc | 1.2.0.3-1 | - +- all | libghc-wai-doc | 1.2.0.2-1 | - +- all | libghc-wai-extra-doc | 1.2.0.4-1 | - +- all | libghc-wai-logger-doc | 0.1.4-1 | - +- all | libghc-wai-logger-prefork-doc | 0.1.3-1 | - +- all | libghc-wai-test-doc | 1.2.0.2-1 | - +- all | libghc-warp-doc | 1.2.1.1-1 | - +- all | libghc-warp-tls-doc | 1.2.0.4-1 | - +- all | libghc-web-routes-doc | 0.25.3-2 | - +- all | libghc-webkit-doc | 0.12.3-2 | - +- all | libghc-weighted-regexp-doc | 0.3.1.1-2 | - +- all | libghc-x11-doc | 1.5.0.1-1 | - +- all | libghc-x11-xft-doc | 0.3.1-1 | - +- all | libghc-xdg-basedir-doc | 0.2.1-2 | - +- all | libghc-xhtml-doc | 3000.2.1-1 | - +- all | libghc-xml-conduit-doc | 0.7.0.2-1 | - +- all | libghc-xml-doc | 1.3.12-1 | - ++ all | libghc-xml-hamlet-doc | - | 0.3.0.1-1~bpo70+1 +- all | libghc-xml-types-doc | 0.3.1-2 | - +- all | libghc-xml2html-doc | 0.1.2.3-1 | - +- all | libghc-xmonad-contrib-doc | 0.10-4~deb7u1 | - +- all | libghc-xmonad-doc | 0.10-4 | - +- all | libghc-xss-sanitize-doc | 0.3.2-1 | - +- all | libghc-yaml-doc | 0.7.0.2-1 | - +- all | libghc-yaml-light-doc | 0.1.4-2 | - +- all | libghc-yesod-auth-doc | 1.0.2.1-2 | - +- all | libghc-yesod-core-doc | 1.0.1.2-1 | - +- all | libghc-yesod-default-doc | 1.0.1.1-1 | - +- all | libghc-yesod-doc | 1.0.1.6-2 | - +- all | libghc-yesod-form-doc | 1.0.0.4-1 | - +- all | libghc-yesod-json-doc | 1.0.0.1-1 | - +- all | libghc-yesod-markdown-doc | 0.4.0-1 | - +- all | libghc-yesod-persistent-doc | 1.0.0.1-1 | - +- all | libghc-yesod-routes-doc | 1.0.1.2-1 | - +- all | libghc-yesod-static-doc | 1.0.0.2-1 | - +- all | libghc-yesod-test-doc | 0.2.0.6-1 | - +- all | libghc-zip-archive-doc | 0.1.1.7-3 | - +- all | libghc-zlib-bindings-doc | 0.1.0.1-1 | - +- all | libghc-zlib-conduit-doc | 0.4.0.1-1 | - +- all | libghc-zlib-doc | 0.5.3.3-1 | - +- all | libghc-zlib-enum-doc | 0.2.2.1-1 | - +- all | libghc6-agda-dev | 1:8 | - +- all | libghc6-agda-doc | 1:8 | - +- all | libghc6-alut-dev | 1:8 | - +- all | libghc6-alut-doc | 1:8 | - +- all | libghc6-alut-prof | 1:8 | - +- all | libghc6-arrows-dev | 1:8 | - +- all | libghc6-arrows-doc | 1:8 | - +- all | libghc6-arrows-prof | 1:8 | - +- all | libghc6-binary-dev | 1:8 | - +- all | libghc6-binary-doc | 1:8 | - +- all | libghc6-binary-prof | 1:8 | - +- all | libghc6-binary-shared-dev | 1:8 | - +- all | libghc6-binary-shared-doc | 1:8 | - +- all | libghc6-binary-shared-prof | 1:8 | - +- all | libghc6-bzlib-dev | 1:8 | - +- all | libghc6-bzlib-doc | 1:8 | - +- all | libghc6-bzlib-prof | 1:8 | - +- all | libghc6-cairo-dev | 1:8 | - +- all | libghc6-cairo-doc | 1:8 | - +- all | libghc6-cairo-prof | 1:8 | - +- all | libghc6-cautious-file-dev | 1:8 | - +- all | libghc6-cautious-file-doc | 1:8 | - +- all | libghc6-cautious-file-prof | 1:8 | - +- all | libghc6-cgi-dev | 1:8 | - +- all | libghc6-cgi-doc | 1:8 | - +- all | libghc6-cgi-prof | 1:8 | - +- all | libghc6-colour-dev | 1:8 | - +- all | libghc6-colour-doc | 1:8 | - +- all | libghc6-colour-prof | 1:8 | - +- all | libghc6-configfile-dev | 1:8 | - +- all | libghc6-configfile-doc | 1:8 | - +- all | libghc6-configfile-prof | 1:8 | - +- all | libghc6-convertible-dev | 1:8 | - +- all | libghc6-convertible-doc | 1:8 | - +- all | libghc6-convertible-prof | 1:8 | - +- all | libghc6-cpphs-dev | 1:8 | - +- all | libghc6-cpphs-doc | 1:8 | - +- all | libghc6-cpphs-prof | 1:8 | - +- all | libghc6-criterion-dev | 1:8 | - +- all | libghc6-criterion-doc | 1:8 | - +- all | libghc6-criterion-prof | 1:8 | - +- all | libghc6-csv-dev | 1:8 | - +- all | libghc6-csv-doc | 1:8 | - +- all | libghc6-csv-prof | 1:8 | - +- all | libghc6-curl-dev | 1:8 | - +- all | libghc6-curl-doc | 1:8 | - +- all | libghc6-curl-prof | 1:8 | - +- all | libghc6-data-accessor-dev | 1:8 | - +- all | libghc6-data-accessor-doc | 1:8 | - +- all | libghc6-data-accessor-prof | 1:8 | - +- all | libghc6-dataenc-dev | 1:8 | - +- all | libghc6-dataenc-doc | 1:8 | - +- all | libghc6-dataenc-prof | 1:8 | - +- all | libghc6-datetime-dev | 1:8 | - +- all | libghc6-datetime-doc | 1:8 | - +- all | libghc6-datetime-prof | 1:8 | - +- all | libghc6-debian-dev | 1:8 | - +- all | libghc6-debian-doc | 1:8 | - +- all | libghc6-debian-prof | 1:8 | - +- all | libghc6-deepseq-dev | 1:8 | - +- all | libghc6-deepseq-doc | 1:8 | - +- all | libghc6-deepseq-prof | 1:8 | - +- all | libghc6-diagrams-dev | 1:8 | - +- all | libghc6-diagrams-doc | 1:8 | - +- all | libghc6-diagrams-prof | 1:8 | - +- all | libghc6-diff-dev | 1:8 | - +- all | libghc6-diff-doc | 1:8 | - +- all | libghc6-diff-prof | 1:8 | - +- all | libghc6-digest-dev | 1:8 | - +- all | libghc6-digest-doc | 1:8 | - +- all | libghc6-digest-prof | 1:8 | - +- all | libghc6-edison-api-dev | 1:8 | - +- all | libghc6-edison-api-doc | 1:8 | - +- all | libghc6-edison-api-prof | 1:8 | - +- all | libghc6-edison-core-dev | 1:8 | - +- all | libghc6-edison-core-doc | 1:8 | - +- all | libghc6-edison-core-prof | 1:8 | - +- all | libghc6-editline-dev | 1:8 | - +- all | libghc6-editline-doc | 1:8 | - +- all | libghc6-erf-dev | 1:8 | - +- all | libghc6-erf-doc | 1:8 | - +- all | libghc6-erf-prof | 1:8 | - +- all | libghc6-event-list-dev | 1:8 | - +- all | libghc6-event-list-doc | 1:8 | - +- all | libghc6-event-list-prof | 1:8 | - +- all | libghc6-explicit-exception-dev | 1:8 | - +- all | libghc6-explicit-exception-doc | 1:8 | - +- all | libghc6-explicit-exception-prof | 1:8 | - +- all | libghc6-fastcgi-dev | 1:8 | - +- all | libghc6-fastcgi-doc | 1:8 | - +- all | libghc6-fastcgi-prof | 1:8 | - +- all | libghc6-feed-dev | 1:8 | - +- all | libghc6-feed-doc | 1:8 | - +- all | libghc6-feed-prof | 1:8 | - +- all | libghc6-fgl-dev | 1:8 | - +- all | libghc6-fgl-doc | 1:8 | - +- all | libghc6-fgl-prof | 1:8 | - +- all | libghc6-filemanip-dev | 1:8 | - +- all | libghc6-filemanip-doc | 1:8 | - +- all | libghc6-filemanip-prof | 1:8 | - +- all | libghc6-filestore-data | 1:8 | - +- all | libghc6-filestore-dev | 1:8 | - +- all | libghc6-filestore-doc | 1:8 | - +- all | libghc6-filestore-prof | 1:8 | - +- all | libghc6-ftphs-dev | 1:8 | - +- all | libghc6-ftphs-doc | 1:8 | - +- all | libghc6-gconf-dev | 1:8 | - +- all | libghc6-gconf-doc | 1:8 | - +- all | libghc6-gconf-prof | 1:8 | - +- all | libghc6-ghc-events-dev | 1:8 | - +- all | libghc6-ghc-events-doc | 1:8 | - +- all | libghc6-ghc-events-prof | 1:8 | - +- all | libghc6-ghc-mtl-dev | 1:8 | - +- all | libghc6-ghc-mtl-doc | 1:8 | - +- all | libghc6-ghc-mtl-prof | 1:8 | - +- all | libghc6-ghc-paths-dev | 1:8 | - +- all | libghc6-ghc-paths-doc | 1:8 | - +- all | libghc6-ghc-paths-prof | 1:8 | - +- all | libghc6-gio-dev | 1:8 | - +- all | libghc6-gio-doc | 1:8 | - +- all | libghc6-gio-prof | 1:8 | - +- all | libghc6-gitit-dev | 1:8 | - +- all | libghc6-gitit-doc | 1:8 | - +- all | libghc6-glade-dev | 1:8 | - +- all | libghc6-glade-doc | 1:8 | - +- all | libghc6-glfw-dev | 1:8 | - +- all | libghc6-glfw-doc | 1:8 | - +- all | libghc6-glfw-prof | 1:8 | - +- all | libghc6-glib-dev | 1:8 | - +- all | libghc6-glib-doc | 1:8 | - +- all | libghc6-glib-prof | 1:8 | - +- all | libghc6-glut-dev | 1:8 | - +- all | libghc6-glut-doc | 1:8 | - +- all | libghc6-glut-prof | 1:8 | - +- all | libghc6-gstreamer-dev | 1:8 | - +- all | libghc6-gstreamer-doc | 1:8 | - +- all | libghc6-gstreamer-prof | 1:8 | - +- all | libghc6-gtk-dev | 1:8 | - +- all | libghc6-gtk-doc | 1:8 | - +- all | libghc6-gtkglext-dev | 1:8 | - +- all | libghc6-gtkglext-doc | 1:8 | - +- all | libghc6-gtksourceview2-dev | 1:8 | - +- all | libghc6-gtksourceview2-doc | 1:8 | - +- all | libghc6-haddock-dev | 1:8 | - +- all | libghc6-haddock-doc | 1:8 | - +- all | libghc6-haddock-prof | 1:8 | - +- all | libghc6-happstack-dev | 1:8 | - +- all | libghc6-happstack-doc | 1:8 | - +- all | libghc6-happstack-prof | 1:8 | - +- all | libghc6-happstack-server-dev | 1:8 | - +- all | libghc6-happstack-server-doc | 1:8 | - +- all | libghc6-happstack-server-prof | 1:8 | - +- all | libghc6-harp-dev | 1:8 | - +- all | libghc6-harp-doc | 1:8 | - +- all | libghc6-harp-prof | 1:8 | - +- all | libghc6-hashed-storage-dev | 1:8 | - +- all | libghc6-hashed-storage-doc | 1:8 | - +- all | libghc6-hashed-storage-prof | 1:8 | - +- all | libghc6-haskeline-dev | 1:8 | - +- all | libghc6-haskeline-doc | 1:8 | - +- all | libghc6-haskeline-prof | 1:8 | - +- all | libghc6-haskell-lexer-dev | 1:8 | - +- all | libghc6-haskell-lexer-doc | 1:8 | - +- all | libghc6-haskell-lexer-prof | 1:8 | - +- all | libghc6-haskell-src-dev | 1:8 | - +- all | libghc6-haskell-src-doc | 1:8 | - +- all | libghc6-haskell-src-prof | 1:8 | - +- all | libghc6-haskelldb-dev | 1:8 | - +- all | libghc6-haskelldb-doc | 1:8 | - +- all | libghc6-haskelldb-hdbc-dev | 1:8 | - +- all | libghc6-haskelldb-hdbc-doc | 1:8 | - +- all | libghc6-haskelldb-hdbc-odbc-dev | 1:8 | - +- all | libghc6-haskelldb-hdbc-odbc-doc | 1:8 | - +- all | libghc6-haskelldb-hdbc-postgresql-dev | 1:8 | - +- all | libghc6-haskelldb-hdbc-postgresql-doc | 1:8 | - +- all | libghc6-haskelldb-hdbc-prof | 1:8 | - +- all | libghc6-haskelldb-hdbc-sqlite3-dev | 1:8 | - +- all | libghc6-haskelldb-hdbc-sqlite3-doc | 1:8 | - +- all | libghc6-haskelldb-prof | 1:8 | - +- all | libghc6-haskore-dev | 1:8 | - +- all | libghc6-haskore-doc | 1:8 | - +- all | libghc6-haskore-prof | 1:8 | - +- all | libghc6-haxml-dev | 1:8 | - +- all | libghc6-haxml-prof | 1:8 | - +- all | libghc6-haxr-dev | 1:8 | - +- all | libghc6-haxr-doc | 1:8 | - +- all | libghc6-haxr-prof | 1:8 | - +- all | libghc6-hdbc-dev | 1:8 | - +- all | libghc6-hdbc-doc | 1:8 | - +- all | libghc6-hdbc-odbc-dev | 1:8 | - +- all | libghc6-hdbc-odbc-doc | 1:8 | - +- all | libghc6-hdbc-postgresql-dev | 1:8 | - +- all | libghc6-hdbc-postgresql-doc | 1:8 | - +- all | libghc6-hdbc-prof | 1:8 | - +- all | libghc6-hdbc-sqlite3-dev | 1:8 | - +- all | libghc6-hdbc-sqlite3-doc | 1:8 | - +- all | libghc6-highlighting-kate-dev | 1:8 | - +- all | libghc6-highlighting-kate-doc | 1:8 | - +- all | libghc6-highlighting-kate-prof | 1:8 | - +- all | libghc6-hint-dev | 1:8 | - +- all | libghc6-hint-doc | 1:8 | - +- all | libghc6-hint-prof | 1:8 | - +- all | libghc6-hjavascript-dev | 1:8 | - +- all | libghc6-hjavascript-doc | 1:8 | - +- all | libghc6-hjavascript-prof | 1:8 | - +- all | libghc6-hjscript-dev | 1:8 | - +- all | libghc6-hjscript-doc | 1:8 | - +- all | libghc6-hjscript-prof | 1:8 | - +- all | libghc6-hoauth-dev | 1:8 | - +- all | libghc6-hoauth-doc | 1:8 | - +- all | libghc6-hscolour-dev | 1:8 | - +- all | libghc6-hscolour-doc | 1:8 | - +- all | libghc6-hscolour-prof | 1:8 | - +- all | libghc6-hscurses-dev | 1:8 | - +- all | libghc6-hscurses-doc | 1:8 | - +- all | libghc6-hscurses-prof | 1:8 | - +- all | libghc6-hsemail-dev | 1:8 | - +- all | libghc6-hsemail-doc | 1:8 | - +- all | libghc6-hsemail-prof | 1:8 | - +- all | libghc6-hsh-dev | 1:8 | - +- all | libghc6-hslogger-dev | 1:8 | - +- all | libghc6-hslogger-doc | 1:8 | - +- all | libghc6-hslogger-prof | 1:8 | - +- all | libghc6-hsp-dev | 1:8 | - +- all | libghc6-hsp-doc | 1:8 | - +- all | libghc6-hsp-prof | 1:8 | - +- all | libghc6-hsql-dev | 1:8 | - +- all | libghc6-hsql-doc | 1:8 | - +- all | libghc6-hsql-mysql-dev | 1:8 | - +- all | libghc6-hsql-mysql-doc | 1:8 | - +- all | libghc6-hsql-mysql-prof | 1:8 | - +- all | libghc6-hsql-odbc-dev | 1:8 | - +- all | libghc6-hsql-odbc-doc | 1:8 | - +- all | libghc6-hsql-odbc-prof | 1:8 | - +- all | libghc6-hsql-postgresql-dev | 1:8 | - +- all | libghc6-hsql-postgresql-doc | 1:8 | - +- all | libghc6-hsql-postgresql-prof | 1:8 | - +- all | libghc6-hsql-prof | 1:8 | - +- all | libghc6-hsql-sqlite3-dev | 1:8 | - +- all | libghc6-hsql-sqlite3-doc | 1:8 | - +- all | libghc6-hsql-sqlite3-prof | 1:8 | - +- all | libghc6-hstringtemplate-dev | 1:8 | - +- all | libghc6-hstringtemplate-doc | 1:8 | - +- all | libghc6-hstringtemplate-prof | 1:8 | - +- all | libghc6-hsx-dev | 1:8 | - +- all | libghc6-hsx-doc | 1:8 | - +- all | libghc6-hsx-prof | 1:8 | - +- all | libghc6-html-dev | 1:8 | - +- all | libghc6-html-doc | 1:8 | - +- all | libghc6-html-prof | 1:8 | - +- all | libghc6-http-dev | 1:8 | - +- all | libghc6-http-doc | 1:8 | - +- all | libghc6-http-prof | 1:8 | - +- all | libghc6-hunit-dev | 1:8 | - +- all | libghc6-hunit-doc | 1:8 | - +- all | libghc6-hunit-prof | 1:8 | - +- all | libghc6-hxt-dev | 1:8 | - +- all | libghc6-hxt-doc | 1:8 | - +- all | libghc6-hxt-prof | 1:8 | - +- all | libghc6-ifelse-dev | 1:8 | - +- all | libghc6-ifelse-doc | 1:8 | - +- all | libghc6-ifelse-prof | 1:8 | - +- all | libghc6-irc-dev | 1:8 | - +- all | libghc6-irc-doc | 1:8 | - +- all | libghc6-json-dev | 1:8 | - +- all | libghc6-json-doc | 1:8 | - +- all | libghc6-json-prof | 1:8 | - +- all | libghc6-language-c-dev | 1:8 | - +- all | libghc6-language-c-doc | 1:8 | - +- all | libghc6-language-c-prof | 1:8 | - +- all | libghc6-lazysmallcheck-dev | 1:8 | - +- all | libghc6-lazysmallcheck-prof | 1:8 | - +- all | libghc6-ldap-dev | 1:8 | - +- all | libghc6-ldap-doc | 1:8 | - +- all | libghc6-ldap-prof | 1:8 | - +- all | libghc6-leksah-server-dev | 1:8 | - +- all | libghc6-leksah-server-doc | 1:8 | - +- all | libghc6-llvm-dev | 1:8 | - +- all | libghc6-llvm-doc | 1:8 | - +- all | libghc6-llvm-prof | 1:8 | - +- all | libghc6-ltk-dev | 1:8 | - +- all | libghc6-ltk-doc | 1:8 | - +- all | libghc6-magic-dev | 1:8 | - +- all | libghc6-magic-doc | 1:8 | - +- all | libghc6-magic-prof | 1:8 | - +- all | libghc6-markov-chain-dev | 1:8 | - +- all | libghc6-markov-chain-doc | 1:8 | - +- all | libghc6-markov-chain-prof | 1:8 | - +- all | libghc6-maybet-dev | 1:8 | - +- all | libghc6-maybet-doc | 1:8 | - +- all | libghc6-maybet-prof | 1:8 | - +- all | libghc6-midi-dev | 1:8 | - +- all | libghc6-midi-doc | 1:8 | - +- all | libghc6-midi-prof | 1:8 | - +- all | libghc6-missingh-dev | 1:8 | - +- all | libghc6-missingh-doc | 1:8 | - +- all | libghc6-missingh-prof | 1:8 | - +- all | libghc6-mmap-dev | 1:8 | - +- all | libghc6-mmap-doc | 1:8 | - +- all | libghc6-mmap-prof | 1:8 | - +- all | libghc6-monadcatchio-mtl-dev | 1:8 | - +- all | libghc6-monadcatchio-mtl-doc | 1:8 | - +- all | libghc6-monadcatchio-mtl-prof | 1:8 | - +- all | libghc6-monoid-transformer-dev | 1:8 | - +- all | libghc6-monoid-transformer-doc | 1:8 | - +- all | libghc6-monoid-transformer-prof | 1:8 | - +- all | libghc6-mtl-dev | 1:8 | - +- all | libghc6-mtl-doc | 1:8 | - +- all | libghc6-mtl-prof | 1:8 | - +- all | libghc6-mwc-random-dev | 1:8 | - +- all | libghc6-mwc-random-doc | 1:8 | - +- all | libghc6-mwc-random-prof | 1:8 | - +- all | libghc6-network-dev | 1:8 | - +- all | libghc6-network-doc | 1:8 | - +- all | libghc6-network-prof | 1:8 | - +- all | libghc6-non-negative-dev | 1:8 | - +- all | libghc6-non-negative-doc | 1:8 | - +- all | libghc6-non-negative-prof | 1:8 | - +- all | libghc6-openal-dev | 1:8 | - +- all | libghc6-openal-doc | 1:8 | - +- all | libghc6-openal-prof | 1:8 | - +- all | libghc6-opengl-dev | 1:8 | - +- all | libghc6-opengl-doc | 1:8 | - +- all | libghc6-opengl-prof | 1:8 | - +- all | libghc6-pandoc-dev | 1:8 | - +- all | libghc6-pandoc-doc | 1:8 | - +- all | libghc6-pango-dev | 1:8 | - +- all | libghc6-pango-doc | 1:8 | - +- all | libghc6-pango-prof | 1:8 | - +- all | libghc6-parallel-dev | 1:8 | - +- all | libghc6-parallel-doc | 1:8 | - +- all | libghc6-parallel-prof | 1:8 | - +- all | libghc6-parsec2-dev | 1:8 | - +- all | libghc6-parsec2-doc | 1:8 | - +- all | libghc6-parsec2-prof | 1:8 | - +- all | libghc6-parsec3-dev | 1:8 | - +- all | libghc6-parsec3-doc | 1:8 | - +- all | libghc6-parsec3-prof | 1:8 | - +- all | libghc6-pcre-light-dev | 1:8 | - +- all | libghc6-pcre-light-doc | 1:8 | - +- all | libghc6-pcre-light-prof | 1:8 | - +- all | libghc6-polyparse-dev | 1:8 | - +- all | libghc6-polyparse-doc | 1:8 | - +- all | libghc6-polyparse-prof | 1:8 | - +- all | libghc6-pretty-show-dev | 1:8 | - +- all | libghc6-pretty-show-doc | 1:8 | - +- all | libghc6-pretty-show-prof | 1:8 | - +- all | libghc6-primitive-dev | 1:8 | - +- all | libghc6-primitive-doc | 1:8 | - +- all | libghc6-primitive-prof | 1:8 | - +- all | libghc6-quickcheck1-dev | 1:8 | - +- all | libghc6-quickcheck1-doc | 1:8 | - +- all | libghc6-quickcheck1-prof | 1:8 | - +- all | libghc6-quickcheck2-dev | 1:8 | - +- all | libghc6-quickcheck2-doc | 1:8 | - +- all | libghc6-quickcheck2-prof | 1:8 | - +- all | libghc6-recaptcha-dev | 1:8 | - +- all | libghc6-recaptcha-doc | 1:8 | - +- all | libghc6-recaptcha-prof | 1:8 | - +- all | libghc6-regex-base-dev | 1:8 | - +- all | libghc6-regex-base-doc | 1:8 | - +- all | libghc6-regex-base-prof | 1:8 | - +- all | libghc6-regex-compat-dev | 1:8 | - +- all | libghc6-regex-compat-doc | 1:8 | - +- all | libghc6-regex-compat-prof | 1:8 | - +- all | libghc6-regex-posix-dev | 1:8 | - +- all | libghc6-regex-posix-doc | 1:8 | - +- all | libghc6-regex-posix-prof | 1:8 | - +- all | libghc6-regex-tdfa-dev | 1:8 | - +- all | libghc6-regex-tdfa-doc | 1:8 | - +- all | libghc6-regex-tdfa-prof | 1:8 | - +- all | libghc6-regex-tdfa-utf8-dev | 1:8 | - +- all | libghc6-regex-tdfa-utf8-doc | 1:8 | - +- all | libghc6-regex-tdfa-utf8-prof | 1:8 | - +- all | libghc6-safe-dev | 1:8 | - +- all | libghc6-safe-doc | 1:8 | - +- all | libghc6-safe-prof | 1:8 | - +- all | libghc6-sdl-dev | 1:8 | - +- all | libghc6-sdl-doc | 1:8 | - +- all | libghc6-sdl-gfx-dev | 1:8 | - +- all | libghc6-sdl-gfx-doc | 1:8 | - +- all | libghc6-sdl-gfx-prof | 1:8 | - +- all | libghc6-sdl-image-dev | 1:8 | - +- all | libghc6-sdl-image-doc | 1:8 | - +- all | libghc6-sdl-image-prof | 1:8 | - +- all | libghc6-sdl-mixer-dev | 1:8 | - +- all | libghc6-sdl-mixer-doc | 1:8 | - +- all | libghc6-sdl-mixer-prof | 1:8 | - +- all | libghc6-sdl-prof | 1:8 | - +- all | libghc6-sdl-ttf-dev | 1:8 | - +- all | libghc6-sdl-ttf-doc | 1:8 | - +- all | libghc6-sdl-ttf-prof | 1:8 | - +- all | libghc6-sendfile-dev | 1:8 | - +- all | libghc6-sendfile-doc | 1:8 | - +- all | libghc6-sendfile-prof | 1:8 | - +- all | libghc6-sha-dev | 1:8 | - +- all | libghc6-sha-doc | 1:8 | - +- all | libghc6-sha-prof | 1:8 | - +- all | libghc6-smtpclient-dev | 1:8 | - +- all | libghc6-smtpclient-doc | 1:8 | - +- all | libghc6-smtpclient-prof | 1:8 | - +- all | libghc6-split-dev | 1:8 | - +- all | libghc6-split-doc | 1:8 | - +- all | libghc6-split-prof | 1:8 | - +- all | libghc6-src-exts-dev | 1:8 | - +- all | libghc6-src-exts-doc | 1:8 | - +- all | libghc6-src-exts-prof | 1:8 | - +- all | libghc6-statistics-dev | 1:8 | - +- all | libghc6-statistics-doc | 1:8 | - +- all | libghc6-statistics-prof | 1:8 | - +- all | libghc6-stm-dev | 1:8 | - +- all | libghc6-stm-doc | 1:8 | - +- all | libghc6-stm-prof | 1:8 | - +- all | libghc6-stream-dev | 1:8 | - +- all | libghc6-stream-doc | 1:8 | - +- all | libghc6-stream-prof | 1:8 | - +- all | libghc6-strict-concurrency-dev | 1:8 | - +- all | libghc6-strict-concurrency-doc | 1:8 | - +- all | libghc6-strict-concurrency-prof | 1:8 | - +- all | libghc6-svgcairo-dev | 1:8 | - +- all | libghc6-svgcairo-doc | 1:8 | - +- all | libghc6-syb-with-class-dev | 1:8 | - +- all | libghc6-syb-with-class-doc | 1:8 | - +- all | libghc6-syb-with-class-instances-text-dev | 1:8 | - +- all | libghc6-syb-with-class-instances-text-doc | 1:8 | - +- all | libghc6-syb-with-class-instances-text-prof | 1:8 | - +- all | libghc6-syb-with-class-prof | 1:8 | - +- all | libghc6-tagsoup-dev | 1:8 | - +- all | libghc6-tagsoup-doc | 1:8 | - +- all | libghc6-tagsoup-prof | 1:8 | - +- all | libghc6-tar-dev | 1:8 | - +- all | libghc6-tar-doc | 1:8 | - +- all | libghc6-tar-prof | 1:8 | - +- all | libghc6-terminfo-dev | 1:8 | - +- all | libghc6-terminfo-doc | 1:8 | - +- all | libghc6-terminfo-prof | 1:8 | - +- all | libghc6-testpack-dev | 1:8 | - +- all | libghc6-testpack-doc | 1:8 | - +- all | libghc6-testpack-prof | 1:8 | - +- all | libghc6-texmath-dev | 1:8 | - +- all | libghc6-texmath-doc | 1:8 | - +- all | libghc6-texmath-prof | 1:8 | - +- all | libghc6-text-dev | 1:8 | - +- all | libghc6-text-doc | 1:8 | - +- all | libghc6-text-prof | 1:8 | - +- all | libghc6-tokyocabinet-dev | 1:8 | - +- all | libghc6-tokyocabinet-doc | 1:8 | - +- all | libghc6-tokyocabinet-prof | 1:8 | - +- all | libghc6-transformers-dev | 1:8 | - +- all | libghc6-transformers-doc | 1:8 | - +- all | libghc6-transformers-prof | 1:8 | - +- all | libghc6-type-level-dev | 1:8 | - +- all | libghc6-type-level-doc | 1:8 | - +- all | libghc6-type-level-prof | 1:8 | - +- all | libghc6-uniplate-dev | 1:8 | - +- all | libghc6-uniplate-doc | 1:8 | - +- all | libghc6-uniplate-prof | 1:8 | - +- all | libghc6-unix-compat-dev | 1:8 | - +- all | libghc6-unix-compat-doc | 1:8 | - +- all | libghc6-unix-compat-prof | 1:8 | - +- all | libghc6-unixutils-dev | 1:8 | - +- all | libghc6-unixutils-doc | 1:8 | - +- all | libghc6-unixutils-prof | 1:8 | - +- all | libghc6-url-dev | 1:8 | - +- all | libghc6-url-doc | 1:8 | - +- all | libghc6-url-prof | 1:8 | - +- all | libghc6-utility-ht-dev | 1:8 | - +- all | libghc6-utility-ht-doc | 1:8 | - +- all | libghc6-utility-ht-prof | 1:8 | - +- all | libghc6-uulib-dev | 1:8 | - +- all | libghc6-uulib-doc | 1:8 | - +- all | libghc6-uulib-prof | 1:8 | - +- all | libghc6-vector-algorithms-dev | 1:8 | - +- all | libghc6-vector-algorithms-doc | 1:8 | - +- all | libghc6-vector-algorithms-prof | 1:8 | - +- all | libghc6-vector-dev | 1:8 | - +- all | libghc6-vector-doc | 1:8 | - +- all | libghc6-vector-prof | 1:8 | - +- all | libghc6-vte-dev | 1:8 | - +- all | libghc6-vte-doc | 1:8 | - +- all | libghc6-vty-dev | 1:8 | - +- all | libghc6-vty-doc | 1:8 | - +- all | libghc6-vty-prof | 1:8 | - +- all | libghc6-webkit-dev | 1:8 | - +- all | libghc6-webkit-doc | 1:8 | - +- all | libghc6-x11-dev | 1:8 | - +- all | libghc6-x11-doc | 1:8 | - +- all | libghc6-x11-prof | 1:8 | - +- all | libghc6-x11-xft-dev | 1:8 | - +- all | libghc6-x11-xft-doc | 1:8 | - +- all | libghc6-x11-xft-prof | 1:8 | - +- all | libghc6-xhtml-dev | 1:8 | - +- all | libghc6-xhtml-doc | 1:8 | - +- all | libghc6-xhtml-prof | 1:8 | - +- all | libghc6-xml-dev | 1:8 | - +- all | libghc6-xml-doc | 1:8 | - +- all | libghc6-xml-prof | 1:8 | - +- all | libghc6-xmonad-contrib-dev | 1:8 | - +- all | libghc6-xmonad-contrib-doc | 1:8 | - +- all | libghc6-xmonad-contrib-prof | 1:8 | - +- all | libghc6-xmonad-dev | 1:8 | - +- all | libghc6-xmonad-doc | 1:8 | - +- all | libghc6-xmonad-prof | 1:8 | - +- all | libghc6-zip-archive-dev | 1:8 | - +- all | libghc6-zip-archive-doc | 1:8 | - +- all | libghc6-zip-archive-prof | 1:8 | - +- all | libghc6-zlib-dev | 1:8 | - +- all | libghc6-zlib-doc | 1:8 | - +- all | libghc6-zlib-prof | 1:8 | - +- all | libghemical-data | 3.0.0-2 | - +- all | libgig-doc | 3.3.0-2 | - +- all | libgimp2.0-doc | 2.8.2-2+deb7u1 | - +- all | libgio-cil | 2.22.3-2 | - +- all | libgio2.0-cil-dev | 2.22.3-2 | - +- all | libgirara-doc | 0.1.2-3 | - +- all | libgirepository1.0-doc | 1.32.1-1 | - +- all | libgit-pure-perl | 0.48-2 | - +- all | libgit-repository-perl | 1.25-1 | - +- all | libgit-ruby | 1.2.5-2 | - +- all | libgit-ruby1.8 | 1.2.5-2 | - +- all | libgit-wrapper-perl | 0.023-1 | - +- all | libgkeyfile-cil-dev | 0.1-4 | - +- all | libgkeyfile1.0-cil | 0.1-4 | - +- all | libglademm-2.4-doc | 2.6.7-2 | - +- all | libgladeui-common | 3.12.1-1 | - +- all | libgladeui-doc | 3.12.1-1 | - +- all | libglazedlists-java | 1.8.0.dfsg-4 | - +- all | libglazedlists-java-doc | 1.8.0.dfsg-4 | - +- all | libglib2-ruby | 1.1.3-2 | - +- all | libglib2-ruby1.8 | 1.1.3-2 | - +- all | libglib2-ruby1.8-dbg | 1.1.3-2 | - +- all | libglib2.0-data | 2.33.12+really2.32.4-5 | - +- all | libglib2.0-doc | 2.33.12+really2.32.4-5 | - +- all | libglibmm-2.4-doc | 2.32.1-1 | - +- all | libglm-dev | 0.9.3.3+dfsg-0.1 | - +- all | libglm-doc | 0.9.3.3+dfsg-0.1 | - +- all | libglobalhotkeys-ruby | 0.3.2-3 | - +- all | libglobalhotkeys-ruby1.8 | 0.3.2-3 | - +- all | libglobus-authz-callout-error-doc | 2.2-1 | - +- all | libglobus-authz-doc | 2.2-1 | - +- all | libglobus-callout-doc | 2.2-1 | - +- all | libglobus-common-doc | 14.7-2 | - +- all | libglobus-ftp-client-doc | 7.3-1 | - +- all | libglobus-ftp-control-doc | 4.4-1 | - +- all | libglobus-gass-copy-doc | 8.4-1 | - +- all | libglobus-gass-transfer-doc | 7.2-1 | - +- all | libglobus-gram-client-doc | 12.4-1 | - +- all | libglobus-gram-job-manager-callout-error-doc | 2.1-2 | - +- all | libglobus-gram-protocol-doc | 11.3-1 | - +- all | libglobus-gridmap-callout-error-doc | 1.2-2 | - +- all | libglobus-gsi-callback-doc | 4.2-1 | - +- all | libglobus-gsi-cert-utils-doc | 8.3-1 | - +- all | libglobus-gsi-credential-doc | 5.3-1 | - +- all | libglobus-gsi-openssl-error-doc | 2.1-2 | - +- all | libglobus-gsi-proxy-core-doc | 6.2-1 | - +- all | libglobus-gsi-proxy-ssl-doc | 4.1-2 | - +- all | libglobus-gsi-sysconfig-doc | 5.2-1 | - +- all | libglobus-gss-assist-doc | 8.5-1 | - +- all | libglobus-gssapi-error-doc | 4.1-2 | - +- all | libglobus-gssapi-gsi-doc | 10.6-1 | - +- all | libglobus-openssl-module-doc | 3.2-1 | - +- all | libglobus-rls-client-doc | 5.2-8 | - +- all | libglobus-rsl-doc | 9.1-2 | - +- all | libglobus-scheduler-event-generator-doc | 4.6-1 | - +- all | libglobus-xio-doc | 3.3-1 | - +- all | libglobus-xio-gsi-driver-doc | 2.3-1 | - +- all | libgloox-doc | 1.0-1.1 | - +- all | libgluegen2-build-java | 2.0-rc5-4 | - +- all | libgluegen2-doc | 2.0-rc5-4 | - +- all | libgluegen2-rt-java | 2.0-rc5-4 | - +- all | libgmerlin-avdec-doc | 1.2.0~dfsg-1 | - +- all | libgmetrics-groovy-java | 0.5-1 | - +- all | libgmetrics-groovy-java-doc | 0.5-1 | - +- all | libgmime-2.6-doc | 2.6.10-1 | - +- all | libgmime2.6-cil | 2.6.10-1 | - +- all | libgmime2.6-cil-dev | 2.6.10-1 | - +- all | libgmm++-dev | 4.1.1+dfsg1-11 | - +- all | libgmp10-doc | 2:5.0.5+dfsg-2 | - +- all | libgmtk0-data | 1.0.6-1 | - +- all | libgnome-keyring-common | 3.4.1-1 | - +- all | libgnome-vfs2.0-cil | 2.24.2-3 | - +- all | libgnome-vfs2.0-cil-dev | 2.24.2-3 | - +- all | libgnome-vfsmm-2.6-doc | 2.26.0-1 | - +- all | libgnome2-common | 2.32.1-3 | - +- all | libgnome2-doc | 2.32.1-3 | - +- all | libgnomecanvas2-common | 2.30.3-1.2 | - +- all | libgnomecanvas2-doc | 2.30.3-1.2 | - +- all | libgnomecanvasmm-2.6-doc | 2.26.0-1 | - +- all | libgnomedesktop2.0-cil-dev | 2.26.0-8 | - +- all | libgnomedesktop2.20-cil | 2.26.0-8 | - +- all | libgnomekbd-common | 3.4.0.2-1 | - +- all | libgnomemm-2.6-doc | 2.30.0-1 | - +- all | libgnomeprint2.2-data | 2.18.8-3 | - +- all | libgnomeprint2.2-doc | 2.18.8-3 | - +- all | libgnomeprintui2.2-common | 2.18.6-3 | - +- all | libgnomeprintui2.2-doc | 2.18.6-3 | - +- all | libgnomeui-common | 2.24.5-2 | - +- all | libgnomeui-doc | 2.24.5-2 | - +- all | libgnomeuimm-2.6-doc | 2.28.0-1 | - +- all | libgnomevfs2-common | 1:2.24.4-2 | - +- all | libgnu-regexp-java | 1.1.4-4 | - +- all | libgnuinet-java | 1.1.2-2 | - +- all | libgnujaf-java | 1.1.1-8 | - +- all | libgnujaf-java-doc | 1.1.1-8 | - +- all | libgnumail-java | 1.1.2-7 | - +- all | libgnumail-java-doc | 1.1.2-7 | - +- all | libgnupg-interface-perl | 0.45-1 | - +- all | libgnupg-perl | 0.19-1 | - +- all | libgnuplot-ruby | 2.4.1-2 | - +- all | libgnuplot-ruby1.8 | 2.4.1-2 | - +- all | libgo-perl | 0.13-3 | - +- all | libgoa-1.0-common | 3.4.2-2 | - +- all | libgoa-1.0-doc | 3.4.2-2 | - +- all | libgoffice-0.8-8-common | 0.8.17-1.2 | - +- all | libgoocanvas-common | 0.15-1 | - +- all | libgoocanvas-ruby | 1.1.3-2 | - +- all | libgoocanvas-ruby1.8 | 1.1.3-2 | - +- all | libgoocanvas-ruby1.8-dbg | 1.1.3-2 | - +- all | libgoocanvasmm-doc | 0.15.4-1 | - +- all | libgoogle-collections-java | 1.0-2 | - +- all | libgoogle-gson-java | 2.1-2 | - +- all | libgoogle-gson-java-doc | 2.1-2 | - +- all | libgosa-perl | 0.2-2 | - +- all | libgpars-groovy-java | 0.10-1 | - +- all | libgpars-groovy-java-doc | 0.10-1 | - +- all | libgpewidget-data | 0.117-6 | - +- all | libgpewidget-doc | 0.117-6 | - +- all | libgpgme-ruby | 2.0.0-2 | - +- all | libgpgme-ruby1.8 | 2.0.0-2 | - +- all | libgpgme-ruby1.9.1 | 2.0.0-2 | - +- all | libgphoto2-dev-doc | 2.4.14-2 | - +- all | libgphoto2-l10n | 2.4.14-2 | - +- all | libgpiv3-doc | 0.6.1-4 | - +- all | libgpod-doc | 0.8.2-7 | - +- all | libgps-point-perl | 0.17-1 | - +- all | libgraph-easy-as-svg-perl | 0.23-1 | - +- all | libgraph-easy-perl | 0.71-1 | - +- all | libgraph-perl | 1:0.91-1 | - +- all | libgraph-readwrite-perl | 2.03-1 | - +- all | libgraph-writer-graphviz-perl | 0.11-1 | - +- all | libgraphics-color-perl | 0.29-1 | - +- all | libgraphics-colornames-perl | 2.11-4 | - +- all | libgraphics-colornames-www-perl | 1.12-1 | - +- all | libgraphics-colorobject-perl | 0.5.0-4 | - +- all | libgraphics-gnuplotif-perl | 1.6-1 | - +- all | libgraphics-primitive-driver-cairo-perl | 0.44-1 | - +- all | libgraphics-primitive-perl | 0.61-1 | - +- all | libgraphite2-doc | 1.1.3-1 | - +- all | libgraphviz-perl | 2.10-1 | - +- all | libgravatar-url-perl | 1.06-1 | - +- all | libgrilo-0.1-doc | 0.1.19-1 | - +- all | libgrits-doc | 0.7-1 | - +- all | libgroboutils-java | 5-2 | - +- all | libgroovy1.7.2-java | 1.7.2-1 | - +- all | libgruff-ruby | 0.3.6-6 | - +- all | libgruff-ruby-doc | 0.3.6-6 | - +- all | libgruff-ruby1.8 | 0.3.6-6 | - +- all | libgs9-common | 9.05~dfsg-6.3+deb7u1 | - +- all | libgsf-1-common | 1.14.21-2.1 | - +- all | libgsl-ruby | 1.14.7+dfsg-1 | - +- all | libgsl-ruby-doc | 1.14.7+dfsg-1 | - +- all | libgsl-ruby1.8 | 1.14.7+dfsg-1 | - +- all | libgsl-ruby1.8-dbg | 1.14.7+dfsg-1 | - +- all | libgsl-ruby1.9.1 | 1.14.7+dfsg-1 | - +- all | libgsl-ruby1.9.1-dbg | 1.14.7+dfsg-1 | - +- all | libgssdp-doc | 0.12.2.1-2 | - +- all | libgst-ruby | 1.1.3-2 | - +- all | libgst-ruby1.8 | 1.1.3-2 | - +- all | libgst-ruby1.8-dbg | 1.1.3-2 | - +- all | libgstreamer0.10-cil-dev | 0.9.2-4 | - +- all | libgtk-3-common | 3.4.2-7 | - +- all | libgtk-3-doc | 3.4.2-7 | - +- all | libgtk-sharp-beans-cil | 2.14.1-3 | - +- all | libgtk-sharp-beans2.0-cil-dev | 2.14.1-3 | - +- all | libgtk2-ex-entry-pango-perl | 0.09-1 | - +- all | libgtk2-ex-podviewer-perl | 0.18-1 | - +- all | libgtk2-ex-printdialog-perl | 0.03-3 | - +- all | libgtk2-ex-simple-list-perl | 0.50-2 | - +- all | libgtk2-ex-volumebutton-perl | 0.07-2 | - +- all | libgtk2-gladexml-simple-perl | 0.32-2 | - +- all | libgtk2-perl-doc | 2:1.244-1 | - +- all | libgtk2-ruby | 1.1.3-2 | - +- all | libgtk2-ruby1.8 | 1.1.3-2 | - +- all | libgtk2-ruby1.8-dbg | 1.1.3-2 | - +- all | libgtk2.0-common | 2.24.10-2 | - +- all | libgtk2.0-doc | 2.24.10-2 | - +- all | libgtk3-perl | 0.006-2 | - +- all | libgtkada-doc | 2.24.1-7 | - +- all | libgtkglarea-cil-dev | 0.0.17-6 | - +- all | libgtkglarea-cil-examples | 0.0.17-6 | - +- all | libgtkglarea0.0-cil | 0.0.17-6 | - +- all | libgtkglext1-doc | 1.2.0-2 | - +- all | libgtkglextmm-x11-1.2-doc | 1.2.0-4.1 | - +- all | libgtkhtml-4.0-common | 4.4.4-1 | - +- all | libgtkhtml-editor-3.14-common | 3.32.2-2.1 | - +- all | libgtkmm-2.4-doc | 1:2.24.2-1 | - +- all | libgtkmm-3.0-doc | 3.4.2-1 | - +- all | libgtksourceview-3.0-common | 3.4.2-1 | - +- all | libgtksourceview-3.0-doc | 3.4.2-1 | - +- all | libgtksourceview2-ruby | 1.1.3-2 | - +- all | libgtksourceview2-ruby1.8 | 1.1.3-2 | - +- all | libgtksourceview2-ruby1.8-dbg | 1.1.3-2 | - +- all | libgtksourceview2.0-common | 2.10.4-1 | - +- all | libgtksourceview2.0-doc | 2.10.4-1 | - +- all | libgtksourceviewmm-3.0-doc | 3.2.0-1 | - +- all | libgtop2-common | 2.28.4-3 | - +- all | libgtop2-doc | 2.28.4-3 | - +- all | libgts-doc | 0.7.6+darcs110121-1.1 | - +- all | libguava-java | 11.0.2-1 | - +- all | libguava-java-doc | 11.0.2-1 | - +- all | libgudev1.0-cil | 0.1-3 | - +- all | libgudev1.0-cil-dev | 0.1-3 | - +- all | libguice-java | 3.0-1 | - +- all | libguice-java-doc | 3.0-1 | - +- all | libgupnp-av-doc | 0.10.3-1 | - +- all | libgupnp-dlna-doc | 0.6.6-1 | - +- all | libgupnp-doc | 0.18.4-1 | - +- all | libgupnp-igd-1.0-doc | 0.2.1-2 | - +- all | libgusb-doc | 0.1.3-5 | - +- all | libgutenprint-doc | 5.2.9-1 | - +- all | libgweather-common | 3.4.1-1+build1 | - +! all | libgwenhywfar-data | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! all | libgwenhywfar-doc | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +- all | libgwyddion20-doc | 2.28-2 | - +- all | libgxps-doc | 0.2.2-2 | - +- all | libha-jdbc-java | 2.0.16+rc1-2 | - +- all | libhamcrest-java | 1.2-2 | - +- all | libhamcrest-java-doc | 1.2-2 | - +- all | libhaml-ruby | 3.1.6-1 | - +- all | libhaml-ruby-doc | 3.1.6-1 | - +- all | libhaml-ruby1.8 | 3.1.6-1 | - +- all | libhamlib-doc | 1.2.15.1-1 | - +- all | libhangul-data | 0.1.0-2 | - +- all | libhash-asobject-perl | 0.13-1 | - +- all | libhash-case-perl | 1.020-1 | - +- all | libhash-flatten-perl | 1.19-1 | - +- all | libhash-merge-perl | 0.12-2 | - +- all | libhash-merge-simple-perl | 0.051-1 | - +- all | libhash-moreutils-perl | 0.02-1 | - +- all | libhash-multivalue-perl | 0.12-1 | - +- all | libhash-util-fieldhash-compat-perl | 0.03-2 | - +- all | libhash-withdefaults-perl | 0.05-1 | - +- all | libhawtjni-runtime-java | 1.0~+git0c502e20c4-3 | - +- all | libhd-doc | 16.0-2.2 | - +- all | libhdf4-doc | 4.2r4-13 | - +- all | libhdf4g-dev | 4.2r4-13 | - +- all | libhdf5-doc | 1.8.8-9 | - +- all | libhdfeos5-ruby | 1.0-2 | - +- all | libhdfeos5-ruby-doc | 1.0-2 | - +- all | libheap-perl | 0.80-2 | - +- all | libheckle-ruby | 1.4.3-4 | - +- all | libheckle-ruby1.8 | 1.4.3-4 | - +- all | libhessian-java | 4.0.6-1 | - +- all | libhessian-java-doc | 4.0.6-1 | - +- all | libhibernate-commons-annotations-java | 3.2.0.Final-2 | - +- all | libhibernate-jbosscache-java | 3.6.8-2 | - +- all | libhibernate-validator-java | 4.0.2.GA-7 | - +- all | libhibernate3-java | 3.6.9.Final-2 | - +- all | libhibernate3-java-doc | 3.6.9.Final-2 | - +- all | libhighline-ruby | 1.6.13-2 | - +- all | libhighline-ruby-doc | 1.6.13-2 | - +- all | libhighline-ruby1.8 | 1.6.13-2 | - +- all | libhighline-ruby1.9.1 | 1.6.13-2 | - +- all | libhkl-doc | 4.0.3-4 | - +- all | libhmac-ruby | 0.4.0-3 | - +- all | libhmac-ruby1.8 | 0.4.0-3 | - +- all | libhook-lexwrap-perl | 0.24-1 | - +- all | libhook-wrapsub-perl | 0.03-2 | - +- all | libhpricot-ruby | 0.8.6-3 | - +- all | libhpricot-ruby1.8 | 0.8.6-3 | - +- all | libhpricot-ruby1.9 | 0.8.6-3 | - +- all | libhpricot-ruby1.9.1 | 0.8.6-3 | - +- all | libhsqldb-java | 1.8.0.10+dfsg-0+deb7u1 | - +- all | libhsqldb-java-doc | 1.8.0.10+dfsg-0+deb7u1 | - +- all | libhtml-auto-perl | 0.04-1 | - +- all | libhtml-autopagerize-perl | 0.02-1 | - +- all | libhtml-calendarmonth-perl | 1.26-1 | - +- all | libhtml-calendarmonthsimple-perl | 1.25-1 | - +- all | libhtml-clean-perl | 0.8-11 | - +- all | libhtml-copy-perl | 1.30-1 | - +- all | libhtml-defang-perl | 1.02-1 | - +- all | libhtml-diff-perl | 0.561-1 | - +- all | libhtml-display-perl | 0.39-4 | - +- all | libhtml-element-extended-perl | 1.18-1 | - +- all | libhtml-embedded-turtle-perl | 0.333-1 | - +- all | libhtml-encoding-perl | 0.61-1 | - +- all | libhtml-entities-numbered-perl | 0.04-1 | - +- all | libhtml-fillinform-perl | 2.10-1 | - +- all | libhtml-form-perl | 6.03-1 | - +- all | libhtml-format-perl | 2.10-1 | - +- all | libhtml-formattext-withlinks-andtables-perl | 0.02-1 | - +- all | libhtml-formattext-withlinks-perl | 0.14-1 | - +- all | libhtml-formfu-model-dbic-perl | 0.09002-1 | - +- all | libhtml-formfu-perl | 0.09007-1 | - +- all | libhtml-formhandler-perl | 0.40013-1+deb7u1 | - +- all | libhtml-fromtext-perl | 2.05-5.1 | - +- all | libhtml-highlight-perl | 0.20-6 | - +- all | libhtml-html5-entities-perl | 0.003-2 | - +- all | libhtml-html5-microdata-parser-perl | 0.100-1 | - +- all | libhtml-html5-outline-perl | 0.006-1 | - +- all | libhtml-html5-parser-perl | 0.110-1 | - +- all | libhtml-html5-sanity-perl | 0.103-1 | - +- all | libhtml-html5-writer-perl | 0.201-1 | - +- all | libhtml-htmltokenizer-ruby | 1.0-3 | - +- all | libhtml-linkextractor-perl | 0.130-5 | - +- all | libhtml-lint-perl | 2.20+dfsg-1 | - +- all | libhtml-mason-perl | 1:1.48-1 | - +- all | libhtml-mason-perl-doc | 1:1.48-1 | - +- all | libhtml-mason-psgihandler-perl | 0.52-1 | - +- all | libhtml-microformats-perl | 0.104-1 | - +- all | libhtml-packer-perl | 1.004001-1 | - +- all | libhtml-popuptreeselect-perl | 1.6-7 | - +- all | libhtml-prototype-perl | 1.48-3 | - +- all | libhtml-quoted-perl | 0.03-1 | - +! all | libhtml-rewriteattributes-perl | 0.04-1 | 0.05-1~bpo70+1 +- all | libhtml-scrubber-perl | 0.09-1 | - +- all | libhtml-selector-xpath-perl | 0.14-1 | - +- all | libhtml-simpleparse-perl | 0.12-2 | - +- all | libhtml-stream-perl | 1.60-1 | - +- all | libhtml-stripscripts-parser-perl | 1.03-1 | - +- all | libhtml-stripscripts-perl | 1.05-1 | - +- all | libhtml-table-perl | 2.08a-2 | - +- all | libhtml-tableextract-perl | 2.11-1 | - +- all | libhtml-tableparser-perl | 0.37-1 | - +- all | libhtml-tagcloud-perl | 0.37-1 | - +- all | libhtml-tagfilter-perl | 1.03-3 | - +- all | libhtml-tagset-perl | 3.20-2 | - +- all | libhtml-template-compiled-perl | 0.97-1 | - +- all | libhtml-template-dumper-perl | 0.1-1 | - +- all | libhtml-template-expr-perl | 0.07-2 | - +- all | libhtml-template-perl | 2.91-1 | - +- all | libhtml-template-pluggable-perl | 0.17-1 | - +- all | libhtml-template-ruby | 0.16-2.1 | - +- all | libhtml-tiny-perl | 1.05-2 | - +- all | libhtml-toc-perl | 1.12-1 | - +- all | libhtml-tokeparser-simple-perl | 3.15-1 | - +- all | libhtml-tree-perl | 5.02-1 | - +- all | libhtml-treebuilder-libxml-perl | 0.16-1 | - +- all | libhtml-treebuilder-xpath-perl | 0.14-1 | - +- all | libhtml-widget-perl | 1.11-3 | - +- all | libhtml-widgets-navmenu-perl | 1.0600-1 | - +- all | libhtml-widgets-selectlayers-perl | 0.07-1 | - +- all | libhtml-wikiconverter-dokuwiki-perl | 0.53-2 | - +- all | libhtml-wikiconverter-kwiki-perl | 0.51-1 | - +- all | libhtml-wikiconverter-markdown-perl | 0.02-6 | - +- all | libhtml-wikiconverter-mediawiki-perl | 0.59-1 | - +- all | libhtml-wikiconverter-moinmoin-perl | 0.53-4 | - +- all | libhtml-wikiconverter-oddmuse-perl | 0.52-1 | - +- all | libhtml-wikiconverter-perl | 0.68-1 | - +- all | libhtml-wikiconverter-phpwiki-perl | 0.51-2 | - +- all | libhtml-wikiconverter-pmwiki-perl | 0.51-1 | - +- all | libhtml-wikiconverter-snipsnap-perl | 0.50-1 | - +- all | libhtml-wikiconverter-tikiwiki-perl | 0.50-1 | - +- all | libhtml-wikiconverter-usemod-perl | 0.50-2 | - +- all | libhtml-wikiconverter-wakkawiki-perl | 0.50-1 | - +- all | libhtml-wikiconverter-wikkawiki-perl | 0.50-1 | - +- all | libhtmlentities-ruby | 4.3.1-1 | - +- all | libhtmlentities-ruby1.8 | 4.3.1-1 | - +- all | libhtmlentities-ruby1.9.1 | 4.3.1-1 | - +- all | libhtmlparser-java | 1.6.20060610.dfsg0-3 | - +- all | libhtmlparser-java-doc | 1.6.20060610.dfsg0-3 | - +- all | libhtmlunit-core-js-java | 2.8-1 | - +- all | libhtmlunit-java | 2.8-1 | - +- all | libhtree-ruby1.8 | 0.7-5 | - +- all | libhtree-ruby1.9.1 | 0.7-5 | - +- all | libhttp-access2-ruby | 2.2.4-2 | - +- all | libhttp-access2-ruby1.8 | 2.2.4-2 | - +- all | libhttp-async-perl | 0.10-1 | - +- all | libhttp-body-perl | 1.11-1+deb7u1 | - +- all | libhttp-browserdetect-perl | 1.44-1 | - +- all | libhttp-cache-transparent-perl | 1.0-2 | - +- all | libhttp-cookies-perl | 6.00-2 | - +- all | libhttp-daemon-perl | 6.01-1 | - +- all | libhttp-daemon-ssl-perl | 1.04-3 | - +- all | libhttp-date-perl | 6.02-1 | - +- all | libhttp-dav-perl | 0.38-1 | - +- all | libhttp-exception-perl | 0.04001-1 | - +- all | libhttp-link-parser-perl | 0.103-1 | - +- all | libhttp-lite-perl | 2.3-1 | - +- all | libhttp-lrdd-perl | 0.105-1 | - +- all | libhttp-message-perl | 6.03-1 | - +- all | libhttp-negotiate-perl | 6.00-2 | - +- all | libhttp-oai-perl | 3.27-1 | - +- all | libhttp-parser-perl | 0.06-1 | - +- all | libhttp-proxy-perl | 0.25-1 | - +- all | libhttp-recorder-perl | 0.06-1 | - +- all | libhttp-request-ascgi-perl | 1.2-2 | - +- all | libhttp-request-params-perl | 1.01-6 | - +- all | libhttp-response-encoding-perl | 0.05-2 | - +- all | libhttp-server-simple-authen-perl | 0.04-1 | - +- all | libhttp-server-simple-mason-perl | 0.14-1 | - +- all | libhttp-server-simple-perl | 0.44-1 | - +- all | libhttp-server-simple-psgi-perl | 0.14-1 | - +- all | libhttp-server-simple-recorder-perl | 0.03-1 | - +- all | libhttp-server-simple-static-perl | 0.07-2 | - +- all | libhttp-tiny-perl | 0.022-1 | - +- all | libhttpclient-java | 4.1.1-2 | - +- all | libhttpclient-ruby | 2.2.4-2 | - +- all | libhttpclient-ruby1.8 | 2.2.4-2 | - +- all | libhttpclient-ruby1.9.1 | 2.2.4-2 | - +- all | libhttpcore-java | 4.1.4-2.1 | - +- all | libhttpmime-java | 4.1.1-2 | - +- all | libhttpunit-java | 1.7+dfsg-9 | - +- all | libhttpunit-java-doc | 1.7+dfsg-9 | - +- all | libhwloc-common | 1.4.1-4 | - +- all | libhwloc-doc | 1.4.1-4 | - +- all | libhx-doc | 3.12.1-1 | - +- all | libhyena-cil | 0.5-2 | - +- all | libhyena-cil-dev | 0.5-2 | - +- all | libhypre-dev | 2.8.0b-1 | - +- all | libi18n-acceptlanguage-perl | 1.04-2 | - +- all | libi18n-charset-perl | 1.401-1 | - +- all | libi18n-ruby | 0.6.0-3+deb7u1 | - +- all | libi18n-ruby1.8 | 0.6.0-3+deb7u1 | - +- all | libi18n-ruby1.9.1 | 0.6.0-3+deb7u1 | - +- all | libi2c-dev | 3.1.0-2 | - +- all | libibatis-java | 2.3.4.726-3 | - +- all | libical-parser-html-perl | 1.07-1 | - +- all | libical-parser-perl | 1.16-1 | - +- all | libical-parser-sax-perl | 1.09-2 | - +- all | libice-doc | 2:1.0.8-2 | - +- all | libicee-java | 1.2.0-3 | - +- all | libicon-famfamfam-silk-perl | 0.002001003-1 | - +- all | libics-doc | 1.5.2-3 | - +- all | libicu4j-4.4-java | 4.4.2.2-1 | - +- all | libicu4j-java | 4.2.1.1-1 | - +- all | libid3-doc | 3.8.3-15 | - +- all | libidm-console-framework-java | 1.1.7-1 | - +- all | libidn11-java | 1.25-2 | - +- all | libidna-punycode-perl | 0.03-1 | - +- all | libihelp-ruby | 0.4.5-3 | - +- all | libihelp-ruby1.8 | 0.4.5-3 | - +- all | libima-dbi-perl | 0.35-1 | - +- all | libimage-base-bundle-perl | 1.0.7-3 | - +- all | libimage-exiftool-perl | 8.60-2 | - +- all | libimage-info-perl | 1.28-1 | - +- all | libimage-math-constrain-perl | 1.02-1 | - +- all | libimage-metadata-jpeg-perl | 0.153-1 | - +- all | libimage-science-ruby | 1.2.2-1.1 | - +- all | libimage-science-ruby-doc | 1.2.2-1.1 | - +- all | libimage-science-ruby1.8 | 1.2.2-1.1 | - +- all | libimage-size-perl | 3.232-1 | - +- all | libimage-size-ruby1.8 | 1:0.1.1-5 | - +- all | libimage-size-ruby1.9.1 | 1:0.1.1-5 | - +- all | libimap-admin-perl | 1.6.7-1 | - +- all | libimobiledevice-doc | 1.1.1-4 | - +- all | libimvirt-perl | 0.9.4-4 | - +- all | libindi-data | 0.9.1-2 | - +- all | libindicate-doc | 0.6.92-1 | - +- all | libindicate-gtk0.1-cil | 0.6.92-1 | - +- all | libindicate-gtk0.1-cil-dev | 0.6.92-1 | - +- all | libindicate0.1-cil | 0.6.92-1 | - +- all | libindicate0.1-cil-dev | 0.6.92-1 | - +- all | libindigo-java | 1.0.0-2 | - +- all | libinfinity-0.5-doc | 0.5.2-6.1 | - +- all | libini4j-java | 0.5.2-SNAPSHOT-2 | - +- all | libini4j-java-doc | 0.5.2-SNAPSHOT-2 | - +- all | libinline-files-perl | 0.68-1 | - +- all | libinline-perl | 0.50-1 | - +- all | libinline-ruby | 3.11.2-2 | - +- all | libinline-ruby1.8 | 3.11.2-2 | - +- all | libinnate-ruby | 2012.03-2 | - +- all | libinnate-ruby1.8 | 2012.03-2 | - +- all | libinnate-ruby1.9.1 | 2012.03-2 | - +- all | libinotify-ruby | 0.0.2-6 | - +- all | libinotify-ruby1.8 | 0.0.2-6 | - +- all | libinotify-ruby1.9.1 | 0.0.2-6 | - +- all | libinstpatch-doc | 1.0.0-3 | - +- all | libintl-perl | 1.20-1 | - +- all | libio-all-lwp-perl | 0.14-1 | - +- all | libio-all-perl | 0.44-1 | - +- all | libio-async-loop-epoll-perl | 0.12-1 | - +- all | libio-async-loop-glib-perl | 0.20-3 | - +- all | libio-async-perl | 0.51-4 | - +- all | libio-bufferedselect-perl | 1.0-1 | - +- all | libio-capture-perl | 0.05-2 | - +- all | libio-captureoutput-perl | 1.1102-1 | - +- all | libio-compress-perl | 2.052-1 | - +- all | libio-digest-perl | 0.10-1.1 | - +- all | libio-file-withpath-perl | 0.08-1 | - +- all | libio-handle-util-perl | 0.01-1 | - +- all | libio-html-perl | 0.04-1 | - +- all | libio-interactive-perl | 0.0.6-1 | - +- all | libio-lcdproc-perl | 0.037-1 | - +- all | libio-lockedfile-perl | 0.23+d030220-3 | - +- all | libio-multiplex-perl | 1.13-1 | - +- all | libio-prompt-perl | 0.997001-1+deb7u1 | - +- all | libio-prompter-perl | 0.003000-1 | - +- all | libio-pty-easy-perl | 0.09-1 | - +- all | libio-socket-inet6-perl | 2.69-2 | - +- all | libio-socket-ip-perl | 0.16-2 | - +- all | libio-socket-multicast6-perl | 0.03-2 | - +- all | libio-socket-socks-perl | 0.62-1 | - +- all | libio-socket-ssl-perl | 1.76-2 | - +- all | libio-string-perl | 1.08-2 | - +- all | libio-stringy-perl | 2.110-5 | - +- all | libio-stty-perl | 0.03-1 | - +- all | libio-tee-perl | 0.64-2 | - +- all | libio-tiecombine-perl | 1.002-1 | - +- all | libipc-pubsub-perl | 0.29-1 | - +- all | libipc-run-perl | 0.92-1 | - +- all | libipc-run-safehandles-perl | 0.02-1 | - +- all | libipc-run3-perl | 0.045-1 | - +- all | libipc-shareable-perl | 0.60-8 | - +- all | libipc-sharedcache-perl | 1.3-8 | - +- all | libipc-signal-perl | 1.00-6 | - +- all | libipc-system-simple-perl | 1.21-1 | - +- all | libiptables-chainmgr-perl | 1.2-1 | - +- all | libiptables-parse-perl | 1.1-1 | - +- all | libiptcdata-doc | 1.0.4-3 | - +- all | libirc-formatting-html-perl | 0.29-1 | - +- all | libirc-utils-perl | 0.12-1 | - +- all | libirclib-java | 1.10-2 | - +- all | libirclib-java-doc | 1.10-2 | - +- all | libirrlicht-doc | 1.7.3+dfsg1-4 | - +- all | libiscwt-java | 5.3.20100629-2 | - +- all | libiscwt-java-doc | 5.3.20100629-2 | - +- all | libisfreetype-java | 5.3.20100629-3 | - +- all | libisfreetype-java-doc | 5.3.20100629-3 | - +- all | libisnativec-java | 5.3.20100629+fix-1 | - +- all | libisnativec-java-doc | 5.3.20100629+fix-1 | - +- all | libisoburn-doc | 1.2.2-2 | - +- all | libisofs-doc | 1.2.2-1 | - +- all | libisorelax-java | 20041111-6 | - +- all | libisorelax-java-doc | 20041111-6 | - +- all | libisrt-java | 4.8.20100629-2 | - +- all | libisrt-java-doc | 4.8.20100629-2 | - +- all | libitext-java | 2.1.7-3+deb7u1 | - +- all | libitext-rtf-java | 2.1.7-3+deb7u1 | - +- all | libitext-rups-java | 2.1.7-3+deb7u1 | - +- all | libitext1-java | 1.4-5 | - +- all | libitext5-java | 5.0.6+svn4804-1 | - +- all | libitext5-java-doc | 5.0.6+svn4804-1 | - +- all | libitpp-doc | 4.2-4 | - +- all | libj2ssh-java | 0.2.9-3 | - +- all | libj2ssh-java-doc | 0.2.9-3 | - +- all | libjaba-client-java | 0+dfsg-1 | - +- all | libjackrabbit-java | 2.3.6-1 | - +- all | libjackson-json-java | 1.9.2-1 | - +- all | libjackson-json-java-doc | 1.9.2-1 | - +- all | libjaffl-java | 0.5.4-1.1 | - +- all | libjakarta-ecs-java | 1.4.2-2 | - +- all | libjakarta-taglibs-standard-java | 1.1.2-2 | - +- all | libjam-java | 0.0.r297-1 | - +- all | libjam-java-doc | 0.0.r297-1 | - +- all | libjama-dev | 1.2.4-2 | - +- all | libjama-java | 1.0.2-4 | - +- all | libjama-java-doc | 1.0.2-4 | - +- all | libjamon-java | 2.7-3 | - +- all | libjana-doc | 0.0.0+git20091215.9ec1da8a-2 | - +- all | libjana-ecal-doc | 0.0.0+git20091215.9ec1da8a-2 | - +- all | libjana-gtk-doc | 0.0.0+git20091215.9ec1da8a-2 | - +- all | libjansi-java | 1.4-3 | - +- all | libjansi-native-java | 1.0-3 | - +- all | libjansson-doc | 2.3.1-2 | - +- all | libjargs-java | 1.0.0-3 | - +- all | libjargs-java-doc | 1.0.0-3 | - +- all | libjarjar-java | 1.1-3 | - +- all | libjarjar-java-doc | 1.1-3 | - +- all | libjarjar-maven-plugin-java | 1.5-1 | - +- all | libjarjar-maven-plugin-java-doc | 1.5-1 | - +- all | libjas-java | 2.4.3938-2 | - +- all | libjas-plotter-java | 2.2.6+dfsg1-2 | - +- all | libjasperreports-java | 4.1.3+dfsg-1 | - +- all | libjasperreports-java-doc | 4.1.3+dfsg-1 | - +- all | libjasperreports3.7-java | 3.7.4+dfsg-2 | - +- all | libjasperreports3.7-java-doc | 3.7.4+dfsg-2 | - +- all | libjasypt-java | 1.8-1 | - +- all | libjasypt-java-doc | 1.8-1 | - +- all | libjaudiotagger-java | 2.0.3-1 | - +- all | libjava-gnome-java | 4.1.1-4 | - +- all | libjava-gnome-java-doc | 4.1.1-4 | - +- all | libjava-jdbc-clojure | 0.2.2-1 | - +- all | libjava-xmlbuilder-java | 0.4-2 | - +- all | libjava-xmlbuilder-java-doc | 0.4-2 | - +- all | libjava3d-java | 1.5.2+dfsg-8 | - +- all | libjava3d-java-doc | 1.5.2+dfsg-8 | - +- all | libjavacc-maven-plugin-java | 2.6-2 | - +- all | libjavascript-beautifier-perl | 0.17-1 | - +- all | libjavascript-minifier-perl | 1.05-1 | - +- all | libjavascript-packer-perl | 1.006003-1 | - +- all | libjavascript-rpc-perl | 0.10-1.1 | - +- all | libjavassist-java | 1:3.12.1.ga-2 | - +- all | libjavassist-java-doc | 1:3.12.1.ga-2 | - +- all | libjaxe-java | 3.5-2 | - +- all | libjaxe-java-doc | 3.5-2 | - +- all | libjaxen-java | 1.1.3-1 | - +- all | libjaxen-java-doc | 1.1.3-1 | - +- all | libjaxme-java | 0.5.2+dfsg-6 | - +- all | libjaxme-java-doc | 0.5.2+dfsg-6 | - +- all | libjaxp1.3-java | 1.3.05-2 | - +- all | libjazzy-java | 0.5.2-1 | - +- all | libjbcrypt-java | 0.3-3 | - +- all | libjboss-aop-java | 2.0.1.GA-3 | - +- all | libjboss-aspects-java | 4.2.3.GA-7 | - +- all | libjboss-cache1-java | 1.4.1.SP14-1 | - +- all | libjboss-cache2-java | 2.2.2.GA+ds1-1 | - +- all | libjboss-cache3-java | 3.2.8.GA-1 | - +- all | libjboss-classloader-java | 2.0.6.GA-2 | - +- all | libjboss-cluster-java | 4.2.3.GA-7 | - +- all | libjboss-common-java | 0.0+svn2938-3 | - +- all | libjboss-connector-java | 4.2.3.GA-7 | - +- all | libjboss-deployers-java | 2.0.4.GA-2 | - +- all | libjboss-deployment-java | 4.2.3.GA-7 | - +- all | libjboss-ejb3-java | 4.2.3.GA-7 | - +- all | libjboss-ejb3x-java | 4.2.3.GA-7 | - +- all | libjboss-integration-java | 5.0.3.GA-2 | - +- all | libjboss-j2ee-java | 4.2.3.GA-7 | - +- all | libjboss-jms-java | 4.2.3.GA-7 | - +- all | libjboss-jmx-java | 4.2.3.GA-7 | - +- all | libjboss-managed-java | 2.0.0.CR4+dak1-2 | - +- all | libjboss-management-java | 4.2.3.GA-7 | - +- all | libjboss-marshalling-java | 1.1.3.GA-3 | - +- all | libjboss-messaging-java | 4.2.3.GA-7 | - +- all | libjboss-metadata-java | 2.0.3.GA-1 | - +- all | libjboss-microcontainer-java | 2.0.10.GA-2 | - +- all | libjboss-naming-java | 4.2.3.GA-7 | - +- all | libjboss-profiler-java | 1.0.CR4-2 | - +- all | libjboss-reflect-java | 2.0.3.GA-1 | - +- all | libjboss-remoting-java | 2.5.3.SP1-1 | - +- all | libjboss-security-java | 4.2.3.GA-7 | - +- all | libjboss-serialization-java | 1.0.3.GA+dak1-3 | - +- all | libjboss-server-java | 4.2.3.GA-7 | - +- all | libjboss-system-java | 4.2.3.GA-7 | - +- all | libjboss-test-java | 4.2.3.GA-7 | - +- all | libjboss-transaction-java | 4.2.3.GA-7 | - +- all | libjboss-vfs-java | 2.0.1.GA-2 | - +- all | libjboss-web-services-java | 0.0+svn5660+dak2-3 | - +- all | libjboss-webservices-java | 4.2.3.GA-7 | - +- all | libjboss-xml-binding-java | 2.0.3.GA-2 | - +- all | libjbzip2-java | 0.9.1-3 | - +- all | libjcalendar-java | 1.3.3-3 | - +- all | libjcalendar-java-doc | 1.3.3-3 | - +- all | libjcharts-java | 0.7.5-3 | - +- all | libjcharts-java-doc | 0.7.5-3 | - +- all | libjcifs-java | 1.3.16-1 | - +- all | libjcifs-java-doc | 1.3.16-1 | - +- all | libjcip-annotations-java | 20060626-3 | - +- all | libjcip-annotations-java-doc | 20060626-3 | - +- all | libjcm-java | 1.0-1 | - +- all | libjcm-java-doc | 1.0-1 | - +- all | libjcode-perl | 2.13-2 | - +- all | libjcodings-java | 1.0.4-1 | - +- all | libjcommander-java | 1.26-1 | - +- all | libjcommander-java-doc | 1.26-1 | - +- all | libjcommon-java | 1.0.16-2 | - +- all | libjcommon-java-doc | 1.0.16-2 | - +- all | libjcsp-java | 1.1-rc4-1 | - +- all | libjcsp-java-doc | 1.1-rc4-1 | - +- all | libjdbm-java | 1.0-2 | - +- all | libjdepend-java | 2.9-5 | - +- all | libjdo-api-java | 2.2-1 | - +- all | libjdom1-java | 1.1.2+dfsg-2 | - +- all | libjdom1-java-doc | 1.1.2+dfsg-2 | - +- all | libje-perl | 0.059-1 | - +- all | libjebl2-java | 0.0.r6-1 | - +- all | libjebl2-java-doc | 0.0.r6-1 | - +- all | libjellydoc-java | 1.5-2 | - +- all | libjellydoc-java-doc | 1.5-2 | - +- all | libjemmy2-java | 2.3.1.1-2 | - +- all | libjemmy2-java-doc | 2.3.1.1-2 | - +- all | libjempbox-java | 1:1.7.0+dfsg-4 | - +- all | libjempbox-java-doc | 1:1.7.0+dfsg-4 | - +- all | libjena-iri-java | 0.8-1 | - +- all | libjenkins-commons-jelly-java | 1.1-jenkins-20110627-3 | - +- all | libjenkins-commons-jelly-java-doc | 1.1-jenkins-20110627-3 | - +- all | libjenkins-commons-jexl-java | 1.1-jenkins-20111212-1 | - +- all | libjenkins-commons-jexl-java-doc | 1.1-jenkins-20111212-1 | - +- all | libjenkins-dom4j-java | 1.6.1-hudson-3-1 | - +- all | libjenkins-dom4j-java-doc | 1.6.1-hudson-3-1 | - +- all | libjenkins-htmlunit-core-js-java | 2.6-hudson-1-1 | - +- all | libjenkins-htmlunit-java | 2.6-jenkins-6-1 | - +- all | libjenkins-htmlunit-java-doc | 2.6-jenkins-6-1 | - +- all | libjenkins-json-java | 2.1-rev7-2 | - +- all | libjenkins-json-java-doc | 2.1-rev7-2 | - +- all | libjenkins-remoting-java | 2.11+dfsg-1 | - +- all | libjenkins-remoting-java-doc | 2.11+dfsg-1 | - +- all | libjenkins-trilead-ssh2-java | 212-hudson-6+dfsg-1 | - +- all | libjenkins-trilead-ssh2-java-doc | 212-hudson-6+dfsg-1 | - +- all | libjenkins-winstone-java | 0.9.10-jenkins-37+dfsg-2 | - +- all | libjenkins-winstone-java-doc | 0.9.10-jenkins-37+dfsg-2 | - +- all | libjenkins-xstream-java | 1.3.1-jenkins-9-3 | - +- all | libjenkins-xstream-java-doc | 1.3.1-jenkins-9-3 | - +- all | libjericho-html-java | 3.1-2 | - +- all | libjericho-html-java-doc | 3.1-2 | - +- all | libjets3t-java | 0.8.1+dfsg-1 | - +- all | libjets3t-java-doc | 0.8.1+dfsg-1 | - +- all | libjettison-java | 1.2-3 | - +- all | libjetty-extra-java | 6.1.26-1 | - +- all | libjetty-java | 6.1.26-1 | - +- all | libjetty-java-doc | 6.1.26-1 | - +- all | libjetty8-extra-java | 8.1.3-4 | - +- all | libjetty8-java | 8.1.3-4 | - +- all | libjetty8-java-doc | 8.1.3-4 | - +- all | libjeuclid-core-java | 3.1.9-2 | - +- all | libjeuclid-fop-java | 3.1.9-2 | - +- all | libjexcelapi-java | 2.6.12-2 | - +- all | libjexcelapi-java-doc | 2.6.12-2 | - +- all | libjffi-java | 1.0.2-9 | - +- all | libjfreechart-java | 1.0.13-4 | - +- all | libjfreechart-java-doc | 1.0.13-4 | - +- all | libjfugue-java | 4.0.3-3 | - +- all | libjgit-java | 2.0.0-2 | - +- all | libjgit-java-doc | 2.0.0-2 | - +- all | libjgoodies-animation-java | 1.2.0-5 | - +- all | libjgoodies-binding-java | 2.1.0-1 | - +- all | libjgoodies-common-java | 1.3.0-2 | - +- all | libjgoodies-common-java-doc | 1.3.0-2 | - +- all | libjgoodies-forms-java | 1.3.0-2 | - +- all | libjgoodies-forms-java-doc | 1.3.0-2 | - +- all | libjgoodies-looks-java | 2.5.0-2 | - +- all | libjgoodies-looks-java-doc | 2.5.0-2 | - +- all | libjgraph-java | 5.12.4.2+dfsg-2 | - +- all | libjgraph-java-doc | 5.12.4.2+dfsg-2 | - +- all | libjgrapht0.6-java | 0.6.0-11 | - +- all | libjgrapht0.6-java-doc | 0.6.0-11 | - +- all | libjgrapht0.8-java | 0.8.3-1 | - +- all | libjgrapht0.8-java-doc | 0.8.3-1 | - +- all | libjgraphx-java | 1.4.1.0-3 | - +- all | libjgraphx-java-doc | 1.4.1.0-3 | - +- all | libjgromacs-java | 1.0-1 | - +- all | libjgromacs-java-doc | 1.0-1 | - +- all | libjgroups-java | 2.12.2.Final-2 | - +- all | libjgroups2.6-java | 2.6.15.GA-2 | - +- all | libjhdf-doc | 2.8.0-5 | - +- all | libjhlabs-filters-java | 2.0.235-3 | - +- all | libjibx-java | 1.2.3-2 | - +- all | libjibx1.1-java | 1.1.6a-3 | - +- all | libjibx1.1-java-doc | 1.1.6a-3 | - +- all | libjibx1.2-java | 1.2.3-2 | - +- all | libjibx1.2-java-doc | 1.2.3-2 | - +- all | libjifty-dbi-perl | 0.74-1 | - +- all | libjifty-perl | 1.10518+dfsg-2 | - +- all | libjifty-plugin-authentication-bitcard-perl | 0.053-1 | - +- all | libjifty-plugin-authentication-cas-perl | 1.00-1 | - +- all | libjifty-plugin-authentication-facebook-perl | 0.90000-1 | - +- all | libjifty-plugin-authentication-ldap-perl | 1.01-1 | - +- all | libjifty-plugin-authzldap-perl | 0.90000-1 | - +- all | libjifty-plugin-chart-perl | 1.01+dfsg-2 | - +- all | libjifty-plugin-comment-perl | 1.00-2 | - +- all | libjifty-plugin-googlemap-perl | 1.00-1 | - +- all | libjifty-plugin-oauth-perl | 0.04-2 | - +- all | libjifty-plugin-openid-perl | 1.02-1 | - +- all | libjifty-plugin-sitenews-perl | 0.90000-1 | - +- all | libjifty-plugin-userpic-perl | 0.90000-1 | - +- all | libjifty-plugin-wikitoolbar-perl | 1.00-2 | - +- all | libjing-java | 20091111-5 | - +- all | libjinput-java | 20100502+dfsg-7 | - +- all | libjinput-java-doc | 20100502+dfsg-7 | - +- all | libjira-client-perl | 0.37-1 | - +- all | libjiu-java | 0.14.2+3-4 | - +- all | libjiu-java-doc | 0.14.2+3-4 | - +- all | libjlatexmath-fop-java | 0.9.7-1 | - +- all | libjlatexmath-java | 0.9.7-1 | - +- all | libjlatexmath-java-doc | 0.9.7-1 | - +- all | libjlayer-java | 1.0.1-2 | - +- all | libjlayer-java-doc | 1.0.1-2 | - +- all | libjlha-java | 0.0.20050504-8 | - +- all | libjlha-java-doc-ja | 0.0.20050504-8 | - +- all | libjlibeps-java | 0.1+2-2 | - +- all | libjlibeps-java-doc | 0.1+2-2 | - +- all | libjline-java | 1.0-2 | - +- all | libjline-java-doc | 1.0-2 | - +- all | libjmac-java | 1.74-6 | - +- all | libjmagick6-java | 6.2.6-0-8 | - +- all | libjmdns-java | 3.4.1-2 | - +- all | libjmdns-java-doc | 3.4.1-2 | - +- all | libjmock-java | 1.2.0-1 | - +- all | libjmock-java-doc | 1.2.0-1 | - +- all | libjmock2-java | 2.5.1+dfsg-2 | - +- all | libjmock2-java-doc | 2.5.1+dfsg-2 | - +- all | libjmol-java | 12.2.32+dfsg2-1 | - +- all | libjmol-java-doc | 12.2.32+dfsg2-1 | - +- all | libjna-java-doc | 3.2.7-4 | - +- all | libjna-posix-java | 1.0.1-1 | - +- all | libjna-posix-java-doc | 1.0.1-1 | - +- all | libjnr-netdb-java | 1.0.3-2 | - +- all | libjnr-netdb-java-doc | 1.0.3-2 | - +- all | libjnr-posix-java | 1.1.4~git1.8aa26268b-1 | - +- all | libjnr-posix-java-doc | 1.1.4~git1.8aa26268b-1 | - +- all | libjnr-x86asm-java | 0.1-1 | - +- all | libjoda-convert-java | 1.2-2 | - +- all | libjoda-convert-java-doc | 1.2-2 | - +- all | libjoda-time-java | 2.1-2 | - +- all | libjoda-time-java-doc | 2.1-2 | - +- all | libjodconverter-java | 2.2.2-7 | - +- all | libjodconverter-java-doc | 2.2.2-7 | - +- all | libjodreports-java | 2.4.0-3 | - +- all | libjodreports-java-doc | 2.4.0-3 | - +- all | libjogl-java | 1.1.1+dak1-12 | - +- all | libjogl-java-doc | 1.1.1+dak1-12 | - +- all | libjogl2-java | 2.0-rc5-2 | - +- all | libjogl2-java-doc | 2.0-rc5-2 | - +- all | libjogl2-toolkits | 2.0-rc5-2 | - +- all | libjoptsimple-java | 3.1-4 | - +- all | libjoptsimple-java-doc | 3.1-4 | - +- all | libjorbis-java | 0.0.17-2 | - +- all | libjortho-freeplane-java | 1.1.3-2 | - +- all | libjosql-java | 2.2-1 | - +- all | libjosql-java-doc | 2.2-1 | - +- all | libjpedal-jbig2-java | 20100117-1 | - +- all | libjpf-java | 1.5.1+dfsg-4 | - +- all | libjpfcodegen-java | 0.4+dfsg-4 | - +- all | libjrosetta-java | 1.0.4-4 | - +- all | libjruby-joni-java | 1.1.4-2 | - +- all | libjs-asciimathml | 2.0.2-1 | - +- all | libjs-backbone | 0.5.3-2+deb7u1 | - ++ all | libjs-chosen | - | 0.9.11-1~bpo7+1 +- all | libjs-codemirror | 2.23-1 | - ++ all | libjs-coffeescript | - | 1.4.0-1~bpo7+1 +- all | libjs-cropper | 1.2.2-1 | - +- all | libjs-debugger | 0.5-4 | - +- all | libjs-dojo-core | 1.7.2+dfsg-1 | - +- all | libjs-dojo-dijit | 1.7.2+dfsg-1 | - +- all | libjs-dojo-dojox | 1.7.2+dfsg-1 | - +- all | libjs-edit-area | 0.8.2-1 | - +- all | libjs-excanvas | 0.r3-3 | - +- all | libjs-extjs | 3.0.3+dfsg0-1 | - +- all | libjs-extjs-doc | 3.0.3+dfsg0-1 | - +- all | libjs-flot | 0.7+dfsg-2 | - +- all | libjs-flotr | 0.2.1~r301-1 | - +- all | libjs-gordon | 0~git20101011-2 | - +- all | libjs-jac | 1.3.4+dfsg-1 | - ++ all | libjs-jcrop | - | 0.9.12+dfsg-1~bpo70+1 +- all | libjs-jquery | 1.7.2+dfsg-1 | - +- all | libjs-jquery-cookie | 6-1 | - +- all | libjs-jquery-countdown | 6-1 | - +- all | libjs-jquery-easing | 6-1 | - +- all | libjs-jquery-event-drag | 6-1 | - +- all | libjs-jquery-event-drop | 6-1 | - +- all | libjs-jquery-fancybox | 6-1 | - +- all | libjs-jquery-form | 6-1 | - +- all | libjs-jquery-galleriffic | 6-1 | - +- all | libjs-jquery-history | 6-1 | - +- all | libjs-jquery-jfeed | 6-1 | - +- all | libjs-jquery-jplayer | 2.1.0-2 | - +- all | libjs-jquery-jush | 6-1 | - +- all | libjs-jquery-livequery | 6-1 | - +- all | libjs-jquery-meiomask | 6-1 | - +- all | libjs-jquery-metadata | 6-1 | - ++ all | libjs-jquery-minicolors | - | 1.2.1-1~bpo7+1 +- all | libjs-jquery-mobile | 1.1.0-3 | - +- all | libjs-jquery-mobile-docs | 1.1.0-3 | - +- all | libjs-jquery-mousewheel | 6-1 | - +- all | libjs-jquery-opacityrollover | 6-1 | - +- all | libjs-jquery-tablesorter | 6-1 | - ++ all | libjs-jquery-timepicker | - | 1.2-1~bpo70+1 +- all | libjs-jquery-tipsy | 6-1 | - +- all | libjs-jquery-treetable | 6-1 | - +! all | libjs-jquery-ui | 1.8.ooops.21+dfsg-2 | 1.10.1+dfsg-1~bpo70+1 +! all | libjs-jquery-ui-docs | 1.8.ooops.21+dfsg-2 | 1.10.1+dfsg-1~bpo70+1 +- all | libjs-jquery-ui-theme-base | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-black-tie | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-blitzer | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-cupertino | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-dark-hive | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-dot-luv | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-eggplant | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-excite-bike | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-flick | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-hot-sneaks | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-humanity | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-le-frog | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-mint-choc | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-overcast | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-pepper-grinder | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-redmond | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-smoothness | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-south-street | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-start | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-sunny | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-swanky-purse | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-trontastic | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-ui-darkness | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-ui-lightness | 1.8.21+dfsg-1 | - +- all | libjs-jquery-ui-theme-vader | 1.8.21+dfsg-1 | - +- all | libjs-jshash | 2.2-3 | - ++ all | libjs-less | - | 1.4.2-1~bpo70+1 +! all | libjs-mathjax | 1.1-2 | 2.2-1~bpo70+1 +- all | libjs-mochikit | 1.4.2-4 | - +- all | libjs-mootools | 1.4.5~debian1-2.1 | - +- all | libjs-obrowser | 1.1.1+dfsg-1 | - +- all | libjs-of-ocaml-doc | 1.2-2 | - +- all | libjs-openlayers | 2.11+ds1-1 | - +- all | libjs-openlayers-doc | 2.11+ds1-1 | - ++ all | libjs-pdf | - | 0.8.37+dfsg-1~bpo7+1 +- all | libjs-protoaculous | 4 | - +- all | libjs-prototype | 1.7.0-2 | - +- all | libjs-scriptaculous | 1.9.0-2 | - +- all | libjs-simile-timeline | 2.3.0+dfsg-0.1 | - +- all | libjs-slimbox | 2.04-1 | - +- all | libjs-sphinxdoc | 1.1.3+dfsg-4 | - +- all | libjs-strophe | 1.0.1.dfsg-2 | - +- all | libjs-swfobject | 2.2+dfsg-1 | - +- all | libjs-swfupload | 2.2.0.1+ds1-2 | - ++ all | libjs-twitter-bootstrap | - | 2.0.2+dfsg-4~bpo70+1 ++ all | libjs-twitter-bootstrap-docs | - | 2.0.2+dfsg-4~bpo70+1 +- all | libjs-underscore | 1.1.6-1+deb7u1 | - +- all | libjs-xmlextras | 20060529-1 | - +- all | libjs-yui | 2.9.0.dfsg.0.1-0.1 | - +- all | libjs-yui-doc | 2.9.0.dfsg.0.1-0.1 | - +- all | libjs-yui3-common | 3.5.1-1 | - +- all | libjs-yui3-debug | 3.5.1-1 | - +- all | libjs-yui3-doc | 3.5.1-1 | - +- all | libjs-yui3-full | 3.5.1-1 | - +- all | libjs-yui3-min | 3.5.1-1 | - +- all | libjsch-java | 0.1.42-2 | - +- all | libjsch-java-doc | 0.1.42-2 | - +- all | libjsf-api-java | 2.0.3-2 | - +- all | libjsf-impl-java | 2.0.3-2 | - +- all | libjsf-java-doc | 2.0.3-2 | - +- all | libjsilver-java | 1.0.0.dfsg-1 | - +- all | libjson-any-perl | 1.28-1 | - ++ all | libjson-c-doc | - | 0.11-3~bpo7+1 +- all | libjson-glib-doc | 0.14.2-1 | - +- all | libjson-java | 2.3-2 | - +- all | libjson-perl | 2.53-1 | - +- all | libjson-pp-perl | 2.27200-2 | - +- all | libjson-rpc-perl | 0.96-3 | - +- all | libjson-ruby | 1.7.3-3 | - +- all | libjson-ruby-doc | 1.7.3-3 | - +- all | libjson-ruby1.8 | 1.7.3-3 | - +- all | libjson-simple-doc | 1.1-dfsg1-1 | - +- all | libjson-simple-java | 1.1-dfsg1-1 | - +- all | libjsoup-java | 1.6.2-1 | - +- all | libjsoup-java-doc | 1.6.2-1 | - +- all | libjspeex-java | 0.9.7-3 | - +- all | libjsr107cache-java | 1.0.dfsg.1-4 | - +- all | libjsr166y-java | 0.1.20080107-2 | - +- all | libjsr305-java | 0.1~+svn49-4 | - +- all | libjsr305-java-doc | 0.1~+svn49-4 | - +- all | libjsr311-api-java | 1.1.1-1 | - +- all | libjsr311-api-java-doc | 1.1.1-1 | - +- all | libjstl1.1-java | 1.1.2-2 | - +- all | libjswingreader-java | 0.3-1 | - +- all | libjsyntaxpane-java | 0.9.5~r148-2 | - +- all | libjsyntaxpane-java-doc | 0.9.5~r148-2 | - +- all | libjtds-java | 1.2.5+dfsg-2 | - +- all | libjtharness-java | 4.4.0-MR1-Rel-b19-1 | - +- all | libjtharness-java-doc | 4.4.0-MR1-Rel-b19-1 | - +- all | libjthread-doc | 1.3.1-3 | - +- all | libjtidy-java | 7+svn20110807-4 | - +- all | libjtidy-java-doc | 7+svn20110807-4 | - +- all | libjts-java | 1.11-1 | - +- all | libjts-java-doc | 1.11-1 | - +- all | libjtype-java | 0.1.1-1 | - +- all | libjug-java | 2.0.0-2 | - +- all | libjug-java-doc | 2.0.0-2 | - +- all | libjunitperf-java | 1.9.1-8 | - +- all | libjunitperf-java-doc | 1.9.1-8 | - +- all | libjutils-java | 20100502+dfsg-2 | - +- all | libjutils-java-doc | 20100502+dfsg-2 | - +- all | libjvyamlb-java | 0.2.5-2 | - +- all | libjxgrabkey-doc | 0.3.2-6 | - +- all | libjxgrabkey-java | 0.3.2-6 | - +- all | libjxp-java | 1.6.1-3 | - +- all | libjzlib-java | 1.1.0-1 | - +- all | libkakasi-ruby1.8 | 2002.09.28-3 | - +- all | libkarma-cil | 0.1.2-2.3 | - +- all | libkarma-cil-dev | 0.1.2-2.3 | - +- all | libkdcraw-data | 4:4.8.4-1 | - +- all | libkde4-ruby | 4:4.8.4-1 | - +- all | libkde4-ruby1.8 | 4:4.8.4-1 | - +- all | libkdeedu-data | 4:4.8.4-1 | - +- all | libkdtree++-dev | 0.7.0-2 | - +- all | libkexiv2-data | 4:4.8.4-1 | - +- all | libkiokudb-backend-dbi-perl | 1.21-1 | - +- all | libkiokudb-perl | 0.52-1 | - +- all | libkipi-data | 4:4.8.4-1 | - +- all | libknopflerfish-osgi-framework-java | 2.3.3-2 | - +- all | libknopflerfish-osgi-java-doc | 2.3.3-2 | - +- all | libkohana-php | 3.1.4-2 | - +- all | libkohana2-modules-php | 2.3.4-2 | - +- all | libkohana2-php | 2.3.4-2 | - +- all | libkohana3.1-core-php | 3.1.4-2 | - +- all | libkohana3.1-mod-auth-php | 3.1.4-2 | - +- all | libkohana3.1-mod-cache-php | 3.1.4-2 | - +- all | libkohana3.1-mod-codebench-php | 3.1.4-2 | - +- all | libkohana3.1-mod-database-php | 3.1.4-2 | - +- all | libkohana3.1-mod-image-php | 3.1.4-2 | - +- all | libkohana3.1-mod-orm-php | 3.1.4-2 | - +- all | libkohana3.1-mod-unittest-php | 3.1.4-2 | - +- all | libkohana3.1-mod-userguide-php | 3.1.4-2 | - +- all | libkohana3.1-php | 3.1.4-2 | - +- all | libkohana3.2-core-php | 3.2.0-2 | - +- all | libkohana3.2-mod-auth-php | 3.2.0-2 | - +- all | libkohana3.2-mod-cache-php | 3.2.0-2 | - +- all | libkohana3.2-mod-codebench-php | 3.2.0-2 | - +- all | libkohana3.2-mod-database-php | 3.2.0-2 | - +- all | libkohana3.2-mod-image-php | 3.2.0-2 | - +- all | libkohana3.2-mod-orm-php | 3.2.0-2 | - +- all | libkohana3.2-mod-unittest-php | 3.2.0-2 | - +- all | libkohana3.2-mod-userguide-php | 3.2.0-2 | - +- all | libkohana3.2-php | 3.2.0-2 | - +- all | libkonq5-templates | 4:4.8.4-2 | - +- all | libkrb5-ruby | 0.7-4 | - +- all | libkrb5-ruby-doc | 0.7-4 | - +- all | libkrb5-ruby1.8 | 0.7-4 | - +- all | libkrb5-ruby1.9.1 | 0.7-4 | - +- all | libksane-data | 4:4.8.4-1 | - +- all | libktorrent-l10n | 1.2.1-1 | - +- all | libkvutils2.2-dev | 2.9.0-1 | - +- all | libkwargs-perl | 0.01-1 | - +- all | libkwiki-cache-perl | 0.11-2 | - +- all | libkwiki-perl | 0.39-2 | - +- all | libkxml2-java | 2.3.0+ds1-2 | - +- all | libkxml2-java-doc | 2.3.0+ds1-2 | - +- all | liblablgtk-extras-ocaml-doc | 1.0-1 | - +- all | liblablgtk2-ocaml-doc | 2.14.2+dfsg-3 | - +- all | liblaf-plugin-java | 1.0-2 | - +- all | liblaf-widget-java | 4.3-2 | - +- all | liblaf-widget-java-doc | 4.3-2 | - +- all | liblapack-doc | 3.4.1+dfsg-1+deb70u1 | - +- all | liblapack-doc-man | 3.4.1+dfsg-1+deb70u1 | - +- all | liblapack3gf | 3.4.1+dfsg-1+deb70u1 | - +- all | liblash-compat-dev | 1+dfsg0-3 | - +- all | liblastfm-java | 1:0.1.0-2 | - +- all | liblatex-decode-perl | 0.03-1 | - +- all | liblatex-driver-perl | 0.10-1 | - +- all | liblatex-encode-perl | 0.03-1 | - +- all | liblatex-table-perl | 1.0.6-1 | - +- all | liblatex-tom-perl | 1.00-1 | - +- all | liblayout-java | 0.2.10-2 | - +- all | liblayout-java-doc | 0.2.10-2 | - +- all | liblayout-manager-perl | 0.34-1 | - +- all | libldap-java | 4.18-5 | - +- all | libldap-ruby1.8 | 0.9.12-2 | - +- all | liblein-clojars-clojure | 0.8.0-1 | - +- all | liblemonldap-ng-conf-perl | 1.1.2-5+deb7u1 | - +- all | liblemonldap-ng-handler-perl | 1.1.2-5+deb7u1 | - +- all | liblemonldap-ng-manager-perl | 1.1.2-5+deb7u1 | - +- all | liblemonldap-ng-portal-perl | 1.1.2-5+deb7u1 | - +- all | liblensfun-data | 0.2.5-2 | - +- all | liblensfun-doc | 0.2.5-2 | - +- all | liblexical-persistence-perl | 0.98-1 | - +- all | liblib-abs-perl | 0.92-3 | - +- all | liblibrary-callnumber-lc-perl | 0.22-1 | - +- all | liblicense-icons | 0.8.1-3 | - +- all | liblicense-rdf | 0.8.1-3 | - +- all | liblinebreak2-doc | 2.1-1 | - +- all | liblingua-de-ascii-perl | 0.11-1 | - +- all | liblingua-en-inflect-number-perl | 1.1-5 | - +- all | liblingua-en-inflect-perl | 1.894-1 | - +- all | liblingua-en-inflect-phrase-perl | 0.12-1 | - +- all | liblingua-en-namecase-perl | 1.15-1 | - +- all | liblingua-en-nameparse-perl | 1.30-1 | - +- all | liblingua-en-numbers-ordinate-perl | 1.02-3 | - +- all | liblingua-en-tagger-perl | 0.18-1 | - +- all | liblingua-en-words2nums-perl | 0.18 | - +- all | liblingua-es-numeros-perl | 0.09-1 | - +- all | liblingua-ga-gramadoir-perl | 0.6-4.1 | - +- all | liblingua-identify-perl | 0.51-1 | - +- all | liblingua-ispell-perl | 0.07-5 | - +- all | liblingua-preferred-perl | 0.2.4-3 | - +- all | liblingua-pt-stemmer-perl | 0.01-3 | - +- all | liblingua-stem-perl | 0.84-1 | - +- all | liblingua-stem-snowball-da-perl | 1.01-4 | - +- all | liblingua-stopwords-perl | 0.09-1 | - +- all | liblinux-distribution-packages-perl | 0.05-2 | - +- all | liblinux-distribution-perl | 0.21-1 | - +- all | liblinux-kernelsort-perl | 0.01-2 | - +- all | liblinux-lvm-perl | 0.16-1 | - +- all | liblinux-usermod-perl | 0.69-1 | - +- all | liblist-allutils-perl | 0.03-1 | - +- all | liblist-compare-perl | 0.37-2 | - +- all | liblist-maker-perl | 0.0.5-1 | - +- all | liblist-utilsby-perl | 0.09-1 | - +- all | liblivejournal-perl | 1.3-5 | - +- all | liblivetribe-jsr223-java | 2.0.6-1 | - +- all | libload-perl | 0.23-1 | - +- all | libloader-java | 1.1.6.dfsg-4 | - +- all | libloader-java-doc | 1.1.6.dfsg-4 | - +- all | liblocal-lib-perl | 1.008004-2 | - +- all | liblocale-currency-format-perl | 1.30-1 | - +- all | liblocale-maketext-fuzzy-perl | 0.11-1 | - +- all | liblocale-maketext-gettext-perl | 1.28-1 | - +- all | liblocale-maketext-lexicon-perl | 0.91-1 | - +- all | liblocale-msgfmt-perl | 0.15-1 | - +- all | liblocale-po-perl | 0.21-1 | - +- all | liblocale-rails-ruby | 2.0.5-6 | - +- all | liblocale-rails-ruby1.8 | 2.0.5-6 | - +- all | liblocale-ruby | 2.0.5-6 | - +- all | liblocale-ruby1.8 | 2.0.5-6 | - +- all | liblocale-ruby1.9.1 | 2.0.5-6 | - +- all | liblocale-subcountry-perl | 1.50-1 | - +- all | liblocale-us-perl | 2.112150-1 | - +- all | liblocales-perl | 0.26-1 | - +- all | liblocalizer-java | 1.13-2 | - +- all | liblocalizer-java-doc | 1.13-2 | - +- all | liblockfile-ruby | 2.1.0-2 | - +- all | liblockfile-simple-perl | 0.208-1 | - +- all | liblog-agent-logger-perl | 0.1.1-6 | - +- all | liblog-agent-perl | 0.307-2 | - +- all | liblog-agent-rotate-perl | 0.104-2 | - +- all | liblog-any-adapter-dispatch-perl | 0.06-1 | - +- all | liblog-any-adapter-perl | 0.07-1 | - +- all | liblog-any-perl | 0.11-1 | - +- all | liblog-contextual-perl | 0.00304-1 | - +- all | liblog-dispatch-array-perl | 1.001-1 | - +- all | liblog-dispatch-config-perl | 1.04-1 | - +- all | liblog-dispatch-configurator-any-perl | 1.110690-1 | - +- all | liblog-dispatch-filerotate-perl | 1.19-1 | - +- all | liblog-dispatch-perl | 2.32-1 | - ++ all | liblog-dispatch-perl-perl | - | 0.04-1~bpo70+1 +- all | liblog-dispatchouli-perl | 2.005-1 | - +- all | liblog-handler-perl | 0.75-2 | - +- all | liblog-log4perl-perl | 1.29-1 | - +- all | liblog-loglite-perl | 0.82-7 | - +- all | liblog-report-perl | 0.94-1 | - +- all | liblog-trace-perl | 1.070-2 | - +- all | liblog-tracemessages-perl | 1.4-2 | - +- all | liblog4ada-doc | 1.2-3 | - +- all | liblog4c-doc | 1.2.1-3 | - +- all | liblog4cpp-doc | 1.0-1 | - +- all | liblog4cxx10-doc | 0.10.0-1.2 | - +- all | liblog4j1.2-java | 1.2.16-3 | - +- all | liblog4j1.2-java-doc | 1.2.16-3 | - +- all | liblog4net-cil-dev | 1.2.10+dfsg-6 | - +- all | liblog4net1.2-cil | 1.2.10+dfsg-6 | - +- all | liblog4r-ruby | 1.1.10-2 | - +- all | liblog4r-ruby1.8 | 1.1.10-2 | - +- all | liblog4shib-doc | 1.0.4-1 | - +- all | liblog4tango4-doc | 7.2.6+dfsg-14 | - +- all | liblogback-java | 1:1.0.4-1 | - +- all | liblogback-java-doc | 1:1.0.4-1 | - +- all | liblogfile-rotate-perl | 1.04-4 | - +- all | liblogger-syslog-perl | 1.1-3 | - +- all | libloki-doc | 0.1.7-3 | - +- all | liblouis-data | 2.4.1-1 | - +- all | liblouisutdml-data | 2.2.0-1 | - +- all | liblouisutdml-java | 2.2.0-1 | - +- all | liblouisutdml-java-doc | 2.2.0-1 | - +- all | liblouisxml-data | 2.4.0-3 | - +- all | liblowpan-dev | 0.2.2-2.1 | - +- all | liblscp-doc | 0.5.6-6 | - +- all | libltcsmpte-doc | 0.4.4-1 | - +- all | liblua5.1-apr-dev | 0.23.2-1 | - +- all | liblua5.1-apr1 | 0.23.2-1 | - +- all | liblua5.1-bitop-dev | 1.0.2-1 | - +- all | liblua5.1-bitop0 | 1.0.2-1 | - +- all | liblua5.1-cgi-dev | 5.1.4+dfsg-2 | - +- all | liblua5.1-cgi0 | 5.1.4+dfsg-2 | - +- all | liblua5.1-copas-dev | 1.1.6-5 | - +- all | liblua5.1-copas0 | 1.1.6-5 | - +- all | liblua5.1-cosmo0 | 10.04.06-4 | - +- all | liblua5.1-coxpcall0 | 1.13.0-6 | - +- all | liblua5.1-curl-dev | 0.3.0-7 | - +- all | liblua5.1-curl0 | 0.3.0-7 | - +- all | liblua5.1-cyrussasl-dev | 1.0.0-4 | - +- all | liblua5.1-cyrussasl0 | 1.0.0-4 | - +- all | liblua5.1-doc0 | 3.0.1-5 | - +- all | liblua5.1-event-dev | 0.4.1-2 | - +- all | liblua5.1-event0 | 0.4.1-2 | - +- all | liblua5.1-expat-dev | 1.2.0-5 | - +- all | liblua5.1-expat0 | 1.2.0-5 | - +- all | liblua5.1-filesystem-dev | 1.5.0+16+g84f1af5-1 | - +- all | liblua5.1-filesystem0 | 1.5.0+16+g84f1af5-1 | - +- all | liblua5.1-iconv0 | 7-1 | - +- all | liblua5.1-json | 1.3-1 | - +- all | liblua5.1-leg-dev | 0.1.2-8 | - +- all | liblua5.1-leg0 | 0.1.2-8 | - +- all | liblua5.1-logging | 1.2.0-1 | - +- all | liblua5.1-logging-dev | 1.2.0-1 | - +- all | liblua5.1-lpeg-dev | 0.10.2-5 | - +- all | liblua5.1-lpeg2 | 0.10.2-5 | - +- all | liblua5.1-markdown0 | 0.32-4 | - +- all | liblua5.1-md5-0 | 1.1.2-6 | - +- all | liblua5.1-md5-dev | 1.1.2-6 | - +- all | liblua5.1-orbit-dev | 2.2.0+dfsg1-1 | - +- all | liblua5.1-orbit1 | 2.2.0+dfsg1-1 | - +- all | liblua5.1-posix-dev | 5.1.19-2 | - +- all | liblua5.1-posix1 | 5.1.19-2 | - +- all | liblua5.1-rex-onig-dev | 2.6.0-2 | - +- all | liblua5.1-rex-onig0 | 2.6.0-2 | - +- all | liblua5.1-rex-pcre-dev | 2.6.0-2 | - +- all | liblua5.1-rex-pcre0 | 2.6.0-2 | - +- all | liblua5.1-rex-posix-dev | 2.6.0-2 | - +- all | liblua5.1-rex-posix0 | 2.6.0-2 | - +- all | liblua5.1-rings-dev | 1.2.3-1 | - +- all | liblua5.1-rings0 | 1.2.3-1 | - +- all | liblua5.1-sec-dev | 0.4.1-1 | - +- all | liblua5.1-sec1 | 0.4.1-1 | - +- all | liblua5.1-soap-dev | 3.0-3 | - +- all | liblua5.1-soap0 | 3.0-3 | - +- all | liblua5.1-socket-dev | 2.0.2-8 | - +- all | liblua5.1-socket2 | 2.0.2-8 | - +- all | liblua5.1-sql-mysql-2 | 2.3.0-1+build0 | - +- all | liblua5.1-sql-mysql-dev | 2.3.0-1+build0 | - +- all | liblua5.1-sql-postgres-2 | 2.3.0-1+build0 | - +- all | liblua5.1-sql-postgres-dev | 2.3.0-1+build0 | - +- all | liblua5.1-sql-sqlite3-2 | 2.3.0-1+build0 | - +- all | liblua5.1-sql-sqlite3-dev | 2.3.0-1+build0 | - +- all | liblua5.1-svn-dev | 0.4.0-7 | - +- all | liblua5.1-svn1 | 0.4.0-7 | - +- all | liblua5.1-wsapi-fcgi-1 | 1.5-3 | - +- all | liblua5.1-wsapi-fcgi-dev | 1.5-3 | - +- all | liblua5.1-wsapi1 | 1.5-3 | - +- all | liblua5.1-xmlrpc-dev | 1.2.1-5 | - +- all | liblua5.1-xmlrpc0 | 1.2.1-5 | - +- all | liblua5.1-zip-dev | 1.2.3-11 | - +- all | liblua5.1-zip0 | 1.2.3-11 | - +- all | libluabind-doc | 0.9.1+dfsg-5 | - +- all | libluabind-examples | 0.9.1+dfsg-5 | - +- all | libluabridge-ruby | 0.7.0-1.1 | - +- all | liblucene-queryparser-perl | 1.04-2 | - +- all | liblucene2-java | 2.9.4+ds1-4 | - +- all | liblucene2-java-doc | 2.9.4+ds1-4 | - +- all | liblucene3-contrib-java | 3.6.0+dfsg-1 | - +- all | liblucene3-java | 3.6.0+dfsg-1 | - +- all | liblucene3-java-doc | 3.6.0+dfsg-1 | - +- all | liblunar-1-doc | 2.0.1-2.2 | - +- all | liblunar-date-doc | 2.4.0-1 | - +- all | liblwjgl-java | 2.7.1+dfsg-3 | - +- all | liblwjgl-java-doc | 2.7.1+dfsg-3 | - +- all | liblwp-authen-negotiate-perl | 0.08-1 | - +- all | liblwp-authen-oauth-perl | 1.01-1 | - +- all | liblwp-authen-wsse-perl | 0.05-2 | - +- all | liblwp-mediatypes-perl | 6.02-1 | - +- all | liblwp-online-perl | 1.08-1 | - +- all | liblwp-protocol-http-socketunix-perl | 0.02-2 | - +- all | liblwp-protocol-https-perl | 6.03-1 | - +- all | liblwp-protocol-psgi-perl | 0.02-1 | - +- all | liblwp-protocol-socks-perl | 1.6-1 | - +- all | liblwp-useragent-determined-perl | 1.06-1 | - +- all | liblwpx-paranoidagent-perl | 1.07-1 | - +- all | liblwt-ocaml-doc | 2.3.2-1 | - +- all | liblzma-doc | 5.1.1alpha+20120614-2 | - +- all | libmac-widgets-doc | 0.9.5+svn369-dfsg1-3 | - +- all | libmac-widgets-java | 0.9.5+svn369-dfsg1-3 | - +- all | libmagics++-data | 2.14.11-4 | - +- all | libmail-box-perl | 2.105-1 | - +- all | libmail-bulkmail-perl | 3.12-4 | - +- all | libmail-checkuser-perl | 1.21-2 | - +- all | libmail-deliverystatus-bounceparser-perl | 1.531-1 | - +- all | libmail-dkim-perl | 0.39-1 | - +- all | libmail-field-received-perl | 0.26-1 | - +- all | libmail-gnupg-perl | 0.17-2 | - +- all | libmail-imapclient-perl | 3.31-2 | - +- all | libmail-imaptalk-perl | 2.01-1 | - +- all | libmail-listdetector-perl | 1.03+dfsg-1 | - +- all | libmail-mbox-messageparser-perl | 1.5002-2 | - +- all | libmail-mboxparser-perl | 0.55-3 | - +- all | libmail-milter-perl | 0.06-1.1 | - +- all | libmail-rfc822-address-perl | 0.3-4 | - +- all | libmail-sendeasy-perl | 1.2-2 | - +- all | libmail-sendmail-perl | 0.79.16-1 | - +- all | libmail-spf-perl | 2.8.0-1 | - +- all | libmail-srs-perl | 0.31-5 | - +- all | libmail-thread-perl | 2.55-1 | - +- all | libmail-verify-perl | 0.02-5 | - +- all | libmail-verp-perl | 0.06+dfsg-1 | - +- all | libmailtools-perl | 2.09-1 | - +- all | libmakefile-dom-perl | 0.006-1 | - +- all | libmakefile-parser-perl | 0.215-1 | - +- all | libmapnik-dev | 2.0.0+ds1-3 | - +- all | libmapscript-ruby | 6.0.1-3.2+deb7u2 | - +- all | libmarc-crosswalk-dublincore-perl | 0.02-1 | - +- all | libmarc-lint-perl | 1.44-1 | - +- all | libmarc-perl | 1.07-5 | - +- all | libmarc-record-perl | 2.0.3-1 | - +- all | libmarc-xml-perl | 0.93-1 | - +- all | libmarkdown-php | 1.0.1m-1 | - +- all | libmaruku-ruby | 0.6.0-2 | - +- all | libmaruku-ruby1.8 | 0.6.0-2 | - +- all | libmason-perl | 2.19-2 | - +- all | libmason-plugin-cache-perl | 0.04-1 | - +- all | libmason-plugin-htmlfilters-perl | 0.03-1 | - +- all | libmason-plugin-routersimple-perl | 0.05-1 | - +- all | libmasonx-interp-withcallbacks-perl | 1.19-1 | - +- all | libmasonx-processdir-perl | 0.02-1 | - +- all | libmasonx-request-withapachesession-perl | 0.30-3.1 | - +- all | libmatchbox-doc | 1.9-osso8-3 | - +- all | libmath++-doc | 0.0.4-4 | - +- all | libmath-algebra-symbols-perl | 1.21-1 | - +- all | libmath-base36-perl | 0.09-1 | - +- all | libmath-base85-perl | 0.2+dfsg-1 | - +- all | libmath-basecalc-perl | 1.016-1 | - +- all | libmath-basecnv-perl | 1.8.B59BrZX-1 | - +- all | libmath-bezier-perl | 0.01-1 | - +- all | libmath-bigint-perl | 1.997-1 | - +- all | libmath-calc-units-perl | 1.07-1 | - +- all | libmath-calculus-differentiate-perl | 0.3-1 | - +- all | libmath-calculus-expression-perl | 0.2.2.ds-1 | - +- all | libmath-calculus-newtonraphson-perl | 0.1-1 | - +- all | libmath-combinatorics-perl | 0.09-4 | - +- all | libmath-complex-perl | 1.59-1 | - +- all | libmath-derivative-perl | 0.01-6 | - +- all | libmath-fibonacci-perl | 1.5-4 | - +- all | libmath-gradient-perl | 0.04-1 | - +- all | libmath-nocarry-perl | 1.11-2 | - +- all | libmath-numbercruncher-perl | 5.00-8 | - +- all | libmath-polygon-perl | 1.02-1 | - +- all | libmath-random-isaac-perl | 1.003-1 | - +- all | libmath-random-oo-perl | 0.21-1 | - +- all | libmath-randomorg-perl | 0.04-3 | - +- all | libmath-round-perl | 0.06-3 | - +- all | libmath-sparsematrix-perl | 0.03-1 | - +- all | libmath-sparsevector-perl | 0.04-1 | - +- all | libmath-spline-perl | 0.01-4 | - +- all | libmath-symbolic-perl | 0.606-1 | - +- all | libmath-vec-perl | 1.01-1 | - +- all | libmath-vecstat-perl | 0.08-1 | - +- all | libmath-vector-real-kdtree-perl | 0.04-1 | - +- all | libmath-vector-real-perl | 0.09-1 | - +- all | libmathml-ruby | 0.12.2-2 | - +- all | libmathml-ruby1.8 | 0.12.2-2 | - +- all | libmathml-ruby1.9.1 | 0.12.2-2 | - +- all | libmatio-doc | 1.3.4-4 | - +- all | libmatrixssl1.8-doc | 1.8.8-1 | - +- all | libmatthew-debug-java | 0.7.3-1 | - +- all | libmatthew-io-java | 0.7.3-1 | - +- all | libmatthew-java-doc | 0.7.3-1 | - +- all | libmaven-ant-tasks-java | 2.1.3-2 | - +- all | libmaven-antrun-extended-plugin-java | 1.42-1 | - +- all | libmaven-antrun-extended-plugin-java-doc | 1.42-1 | - +- all | libmaven-antrun-plugin-java | 1.6-2 | - +- all | libmaven-archiver-java | 2.4-4 | - +- all | libmaven-archiver-java-doc | 2.4-4 | - +- all | libmaven-assembly-plugin-java | 2.2~beta5-2 | - +- all | libmaven-bundle-plugin-java | 2.3.5-1 | - +- all | libmaven-bundle-plugin-java-doc | 2.3.5-1 | - +- all | libmaven-clean-plugin-java | 2.3-5 | - +- all | libmaven-clean-plugin-java-doc | 2.3-5 | - +- all | libmaven-cobertura-plugin-java | 2.3+dfsg-2 | - +- all | libmaven-common-artifact-filters-java | 1.2-1 | - +- all | libmaven-common-artifact-filters-java-doc | 1.2-1 | - +- all | libmaven-compiler-plugin-java | 2.0.2-6 | - +- all | libmaven-compiler-plugin-java-doc | 2.0.2-6 | - +- all | libmaven-dependency-analyzer-java | 1.2-1 | - +- all | libmaven-dependency-plugin-java | 2.1-4 | - +- all | libmaven-dependency-plugin-java-doc | 2.1-4 | - +- all | libmaven-dependency-tree-java | 1.2-4 | - +- all | libmaven-dependency-tree-java-doc | 1.2-4 | - +- all | libmaven-docck-plugin-java | 1.0-4 | - +- all | libmaven-doxia-tools-java | 1.2.1-2 | - +- all | libmaven-doxia-tools-java-doc | 1.2.1-2 | - +- all | libmaven-ear-plugin-java | 2.3.2-3 | - +- all | libmaven-ejb-plugin-java | 2.2-2 | - +- all | libmaven-embedder-java | 2.0.4-3 | - +- all | libmaven-embedder-java-doc | 2.0.4-3 | - +- all | libmaven-enforcer-plugin-java | 1.0-1 | - +- all | libmaven-exec-plugin-java | 1.1.1+dfsg-3 | - +- all | libmaven-file-management-java | 1.2.1-3 | - +- all | libmaven-file-management-java-doc | 1.2.1-3 | - +- all | libmaven-filtering-java | 1.0~beta-2-5 | - +- all | libmaven-hpi-plugin-java | 1.79-3 | - +- all | libmaven-hpi-plugin-java-doc | 1.79-3 | - +- all | libmaven-install-plugin-java | 2.3-4 | - +- all | libmaven-install-plugin-java-doc | 2.3-4 | - +- all | libmaven-invoker-java | 2.0.11-1 | - +- all | libmaven-invoker-plugin-java | 1.5-2 | - +- all | libmaven-jar-plugin-java | 2.2-6 | - +- all | libmaven-jar-plugin-java-doc | 2.2-6 | - +- all | libmaven-javadoc-plugin-java | 2.6.1-2 | - +- all | libmaven-parent-java | 21-2 | - +- all | libmaven-plugin-testing-java | 1.2-3 | - +- all | libmaven-plugin-testing-java-doc | 1.2-3 | - +- all | libmaven-plugin-tools-java | 2.8-2 | - +- all | libmaven-project-info-reports-plugin-java | 2.4-1 | - +- all | libmaven-project-info-reports-plugin-java-doc | 2.4-1 | - +- all | libmaven-reporting-impl-java | 2.1-1 | - +- all | libmaven-reporting-impl-java-doc | 2.1-1 | - +- all | libmaven-repository-builder-java | 1.0~alpha2-3 | - +- all | libmaven-repository-builder-java-doc | 1.0~alpha2-3 | - +- all | libmaven-resources-plugin-java | 2.3-7 | - +- all | libmaven-resources-plugin-java-doc | 2.3-7 | - +- all | libmaven-scm-java | 1.3-4 | - +- all | libmaven-scm-java-doc | 1.3-4 | - +- all | libmaven-shade-plugin-java | 1.2.1-4 | - +- all | libmaven-shade-plugin-java-doc | 1.2.1-4 | - +- all | libmaven-shared-io-java | 1.1-4 | - +- all | libmaven-shared-io-java-doc | 1.1-4 | - +- all | libmaven-shared-jar-java | 1.1-1 | - +- all | libmaven-shared-jar-java-doc | 1.1-1 | - +- all | libmaven-site-plugin-java | 2.1-2 | - +- all | libmaven-site-plugin-java-doc | 2.1-2 | - +- all | libmaven-stapler-plugin-java | 1.16-4 | - +- all | libmaven-stapler-plugin-java-doc | 1.16-4 | - +- all | libmaven-verifier-java | 1.2-1 | - +- all | libmaven-verifier-java-doc | 1.2-1 | - +- all | libmaven-war-plugin-java | 2.1.1-1 | - +- all | libmaven-war-plugin-java-doc | 2.1.1-1 | - +- all | libmaven2-core-java | 2.2.1-8 | - +- all | libmaven2-core-java-doc | 2.2.1-8 | - +- all | libmcs-doc | 0.7.2-2.1 | - +- all | libmdds-dev | 0.5.4-1 | - +- all | libmecab-java | 0.99.3-1 | - +- all | libmecab-ruby | 0.99.3-2 | - +- all | libmecab-ruby1.8 | 0.99.3-2 | - +- all | libmecab-ruby1.9.1 | 0.99.3-2 | - +- all | libmed-doc | 3.0.3-3 | - +- all | libmediainfo-doc | 0.7.58-1 | - +- all | libmediawiki-api-perl | 0.39-1 | - +- all | libmemcache-client-ruby | 1.8.5-2 | - +- all | libmemcache-client-ruby1.8 | 1.8.5-2 | - +- all | libmemcache-client-ruby1.9.1 | 1.8.5-2 | - +- all | libmemoize-expirelru-perl | 0.55-1 | - +- all | libmemoize-memcached-perl | 0.03-2 | - +- all | libmemphis-doc | 0.2.3-2 | - +- all | libmerb-assets-ruby | 1.1.3-1 | - +- all | libmerb-assets-ruby1.8 | 1.1.3-1 | - +- all | libmerb-core-ruby | 1.1.3+dfsg-2 | - +- all | libmerb-core-ruby1.8 | 1.1.3+dfsg-2 | - +- all | libmerb-haml-ruby | 1.1.3-2 | - +- all | libmerb-haml-ruby1.8 | 1.1.3-2 | - +- all | libmerb-helpers-ruby | 1.1.3-1 | - +- all | libmerb-helpers-ruby1.8 | 1.1.3-1 | - +- all | libmerb-param-protection-ruby | 1.1.3-1 | - +- all | libmerb-param-protection-ruby1.8 | 1.1.3-1 | - +- all | libmetadata-extractor-java | 2.3.1+dfsg-2 | - +- all | libmetadata-extractor-java-doc | 2.3.1+dfsg-2 | - +- all | libmetaid-ruby | 1.0-7 | - +- all | libmetaid-ruby1.8 | 1.0-7 | - +- all | libmetainf-services-java | 1.4-1 | - +- all | libmetainf-services-java-doc | 1.4-1 | - +- all | libmethod-alias-perl | 1.03-1 | - +- all | libmethod-autoload-perl | 0.02-2 | - +- all | libmethod-signatures-perl | 20120523-1 | - +- all | libmethod-signatures-simple-perl | 1.02-1 | - +- all | libmgl-data | 1.11.2-17 | - +- all | libmicroba-java | 1:0.4.4.3-4 | - +- all | libmicroba-java-doc | 1:0.4.4.3-4 | - +- all | libmidi-perl | 0.80-3 | - +- all | libmiglayout-java | 3.7.4-2 | - +- all | libmime-base32-perl | 1.02a-1 | - +- all | libmime-base64-urlsafe-perl | 0.01-1 | - +- all | libmime-charset-perl | 1.009.2-1 | - +- all | libmime-encwords-perl | 1.012.4-1 | - +- all | libmime-lite-html-perl | 1.23-1.1 | - +- all | libmime-lite-perl | 3.028-1 | - +- all | libmime-tools-perl | 5.503-1 | - +- all | libmime-types-perl | 1.35-1 | - +- all | libmime-types-ruby | 1.19-1 | - +- all | libmimedir-gnome-doc | 0.4.2-5 | - +- all | libmimetic-doc | 0.9.7-3 | - +- all | libmimic-doc | 1.0.4-2.1 | - +- all | libmina-java | 1.1.7.dfsg-10 | - +- all | libmina-java-doc | 1.1.7.dfsg-10 | - +- all | libmina2-java | 2.0.4+dfsg-2 | - +- all | libmina2-java-doc | 2.0.4+dfsg-2 | - +- all | libmission-control-plugins-doc | 1:5.12.3-1 | - +- all | libmixin-extrafields-param-perl | 0.011-2 | - +- all | libmixin-extrafields-perl | 0.008-2 | - +- all | libmixin-linewise-perl | 0.003-1 | - +- all | libmixlib-authentication-ruby | 1.1.4-2 | - +- all | libmixlib-authentication-ruby1.8 | 1.1.4-2 | - +- all | libmixlib-cli-ruby | 1.2.2-2 | - +- all | libmixlib-cli-ruby1.8 | 1.2.2-2 | - +- all | libmixlib-cli-ruby1.9.1 | 1.2.2-2 | - +- all | libmixlib-config-ruby | 1.1.2-3 | - +- all | libmixlib-config-ruby1.8 | 1.1.2-3 | - +- all | libmixlib-log-ruby | 1.4.1-1 | - +- all | libmixlib-log-ruby1.8 | 1.4.1-1 | - +- all | libmkdoc-xml-perl | 0.75-3 | - +- all | libmldbm-perl | 2.04-1 | - +- all | libmldbm-sync-perl | 0.30-3 | - +- all | libmlpost-ocaml-doc | 0.8.1-3 | - +- all | libmlt-data | 0.8.0-4 | - +- all | libmocha-ruby | 0.11.3-3 | - +- all | libmocha-ruby1.8 | 0.11.3-3 | - +- all | libmocked-perl | 0.09-4 | - +- all | libmockito-java | 1.9.0+ds1-2 | - +- all | libmockito-java-doc | 1.9.0+ds1-2 | - +- all | libmockobjects-java | 0.09-4 | - +- all | libmockobjects-java-doc | 0.09-4 | - +- all | libmodello-java | 1.1-2 | - +- all | libmodello-java-doc | 1.1-2 | - +- all | libmodello-maven-plugin-java | 1.1-2 | - +- all | libmodello-maven-plugin-java-doc | 1.1-2 | - +- all | libmodello-maven-plugin1.4-java | 1.4.1-1 | - +- all | libmodello-maven-plugin1.4-java-doc | 1.4.1-1 | - +- all | libmodello1.4-java | 1.4.1-1 | - +- all | libmodello1.4-java-doc | 1.4.1-1 | - +- all | libmodem-vgetty-perl | 0.03-1 | - +- all | libmodern-perl-perl | 1.20120521-1 | - +- all | libmodglue1-dev | 1.17-2.1 | - +- all | libmodplug-dev | 1:0.8.8.4-3+deb7u1+git20130828 | - +- all | libmodule-build-cipux-perl | 0.4.0-7 | - +- all | libmodule-build-perl | 0.400100-2 | - +- all | libmodule-corelist-perl | 2.68-1 | - +- all | libmodule-cpanfile-perl | 0.9007-1 | - +- all | libmodule-cpants-analyse-perl | 0.86+dfsg-1 | - +- all | libmodule-depends-perl | 0.16-1 | - +- all | libmodule-extract-perl | 0.01-1 | - +- all | libmodule-extract-use-perl | 1.01-1 | - +- all | libmodule-extractuse-perl | 0.27-1 | - +- all | libmodule-find-perl | 0.11-1 | - +- all | libmodule-implementation-perl | 0.06-1 | - +- all | libmodule-info-perl | 0.32-1 | - +- all | libmodule-inspector-perl | 1.05-1 | - +- all | libmodule-install-authorrequires-perl | 0.02-1 | - +- all | libmodule-install-autolicense-perl | 0.08-1 | - +- all | libmodule-install-automanifest-perl | 0.003-1 | - +- all | libmodule-install-doap-perl | 0.004-2 | - +- all | libmodule-install-doapchangesets-perl | 0.202-1 | - +- all | libmodule-install-manifestskip-perl | 0.20-1 | - +- all | libmodule-install-perl | 1.06-1 | - +- all | libmodule-install-rdf-perl | 0.004-1 | - +- all | libmodule-install-readmefrompod-perl | 0.18-1 | - +- all | libmodule-install-trustmetayml-perl | 0.001-1 | - +- all | libmodule-install-xsutil-perl | 0.43-1 | - +- all | libmodule-load-conditional-perl | 0.50-1 | - +- all | libmodule-manifest-perl | 0.07-1 | - +- all | libmodule-manifest-skip-perl | 0.16-1 | - +- all | libmodule-math-depends-perl | 0.02-1 | - +- all | libmodule-metadata-perl | 1.000009-1+deb7u1 | - +- all | libmodule-optional-perl | 0.03-1 | - +- all | libmodule-package-perl | 0.30-1 | - +- all | libmodule-packaged-perl | 0.86-3 | - +- all | libmodule-pluggable-fast-perl | 0.19-1 | - +- all | libmodule-pluggable-ordered-perl | 1.5-1 | - +- all | libmodule-refresh-perl | 0.17-1 | - +- all | libmodule-runtime-perl | 0.013-1 | - +- all | libmodule-scandeps-perl | 1.08-1 | - +- all | libmodule-signature-perl | 0.68-1+deb7u1 | - +- all | libmodule-starter-pbp-perl | 0.0.3-1 | - +- all | libmodule-starter-perl | 1.580+dfsg-1 | - +- all | libmodule-starter-plugin-cgiapp-perl | 0.42-1 | - +- all | libmodule-starter-plugin-simplestore-perl | 0.144-1 | - +- all | libmodule-starter-plugin-tt2-perl | 0.125-1 | - +- all | libmodule-starter-smart-perl | 0.0.4-1 | - +- all | libmodule-used-perl | 1.2.0-1 | - +- all | libmodule-util-perl | 1.08-1 | - +- all | libmodule-versions-report-perl | 1.06-1 | - +- all | libmojo-server-fastcgi-perl | 0.2-1 | - +! all | libmojolicious-perl | 2.98+dfsg-2 | 3.97+dfsg-1~bpo70+1 +- all | libmojolicious-plugin-basicauth-perl | 0.06-1 | - +- all | libmojomojo-perl | 1.05+dfsg-3 | - +- all | libmondrian-java | 1:3.4.1-1 | - +- all | libmondrian-java-doc | 1:3.4.1-1 | - +- all | libmoneta-ruby | 0.6.0-4 | - +- all | libmoneta-ruby1.8 | 0.6.0-4 | - +- all | libmongo-client-doc | 0.1.5-1+deb7u1 | - +- all | libmonitoring-availability-perl | 0.38-1 | - +- all | libmonitoring-livestatus-perl | 0.74-1 | - +- all | libmonkey-patch-perl | 0.03-1 | - +- all | libmono-accessibility2.0-cil | 2.10.8.1-8 | - +- all | libmono-accessibility4.0-cil | 2.10.8.1-8 | - +- all | libmono-addins-cil-dev | 0.6.2-2 | - +- all | libmono-addins-gui-cil-dev | 0.6.2-2 | - +- all | libmono-addins-gui0.2-cil | 0.6.2-2 | - +- all | libmono-addins-msbuild-cil-dev | 0.6.2-2 | - +- all | libmono-addins-msbuild0.2-cil | 0.6.2-2 | - +- all | libmono-addins0.2-cil | 0.6.2-2 | - +- all | libmono-c5-1.1-cil | 2.10.8.1-8 | - +- all | libmono-cairo2.0-cil | 2.10.8.1-8 | - +- all | libmono-cairo4.0-cil | 2.10.8.1-8 | - +- all | libmono-cecil-cil | 0.9.5+dfsg-2 | - +- all | libmono-cecil-cil-dev | 0.9.5+dfsg-2 | - +- all | libmono-cecil-flowanalysis-cil | 0.1~vcs20110809.r1.b34edf6-2 | - +- all | libmono-cecil-flowanalysis-cil-dev | 0.1~vcs20110809.r1.b34edf6-2 | - +- all | libmono-cecil-private-cil | 2.10.8.1-8 | - +- all | libmono-cecil-vb0.9-cil | 2.10-2 | - +- all | libmono-cil-dev | 2.10.8.1-8 | - +- all | libmono-codecontracts4.0-cil | 2.10.8.1-8 | - +- all | libmono-compilerservices-symbolwriter4.0-cil | 2.10.8.1-8 | - +- all | libmono-corlib2.0-cil | 2.10.8.1-8 | - +- all | libmono-corlib4.0-cil | 2.10.8.1-8 | - +- all | libmono-cscompmgd8.0-cil | 2.10.8.1-8 | - +- all | libmono-csharp4.0-cil | 2.10.8.1-8 | - +- all | libmono-custommarshalers4.0-cil | 2.10.8.1-8 | - +- all | libmono-data-tds2.0-cil | 2.10.8.1-8 | - +- all | libmono-data-tds4.0-cil | 2.10.8.1-8 | - +- all | libmono-db2-1.0-cil | 2.10.8.1-8 | - +- all | libmono-debugger-soft2.0-cil | 2.10.8.1-8 | - +- all | libmono-debugger-soft4.0-cil | 2.10.8.1-8 | - +- all | libmono-http4.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n-cjk4.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n-mideast4.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n-other4.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n-rare4.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n-west2.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n-west4.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n2.0-cil | 2.10.8.1-8 | - +- all | libmono-i18n4.0-all | 2.10.8.1-8 | - +- all | libmono-i18n4.0-cil | 2.10.8.1-8 | - +- all | libmono-ldap2.0-cil | 2.10.8.1-8 | - +- all | libmono-ldap4.0-cil | 2.10.8.1-8 | - +- all | libmono-management2.0-cil | 2.10.8.1-8 | - +- all | libmono-management4.0-cil | 2.10.8.1-8 | - +- all | libmono-messaging-rabbitmq2.0-cil | 2.10.8.1-8 | - +- all | libmono-messaging-rabbitmq4.0-cil | 2.10.8.1-8 | - +- all | libmono-messaging2.0-cil | 2.10.8.1-8 | - +- all | libmono-messaging4.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-build-engine4.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-build-framework4.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-build-tasks-v4.0-4.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-build-utilities-v4.0-4.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-build2.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-csharp4.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-visualbasic10.0-cil | 2.10-2 | - +- all | libmono-microsoft-visualbasic8.0-cil | 2.10-2 | - +- all | libmono-microsoft-visualc10.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft-web-infrastructure1.0-cil | 2.10.8.1-8 | - +- all | libmono-microsoft8.0-cil | 2.10.8.1-8 | - +- all | libmono-npgsql2.0-cil | 2.10.8.1-8 | - +- all | libmono-npgsql4.0-cil | 2.10.8.1-8 | - +- all | libmono-opensystem-c4.0-cil | 2.10.8.1-8 | - +- all | libmono-oracle2.0-cil | 2.10.8.1-8 | - +- all | libmono-oracle4.0-cil | 2.10.8.1-8 | - +- all | libmono-peapi2.0-cil | 2.10.8.1-8 | - +- all | libmono-peapi4.0-cil | 2.10.8.1-8 | - +- all | libmono-posix2.0-cil | 2.10.8.1-8 | - +- all | libmono-posix4.0-cil | 2.10.8.1-8 | - +- all | libmono-rabbitmq2.0-cil | 2.10.8.1-8 | - +- all | libmono-rabbitmq4.0-cil | 2.10.8.1-8 | - +- all | libmono-reflection-cil | 1.0+git20110407+d2343843-2 | - +- all | libmono-reflection-cil-dev | 1.0+git20110407+d2343843-2 | - +- all | libmono-relaxng2.0-cil | 2.10.8.1-8 | - +- all | libmono-relaxng4.0-cil | 2.10.8.1-8 | - +- all | libmono-security2.0-cil | 2.10.8.1-8 | - +- all | libmono-security4.0-cil | 2.10.8.1-8 | - +- all | libmono-sharpzip2.6-cil | 2.10.8.1-8 | - +- all | libmono-sharpzip2.84-cil | 2.10.8.1-8 | - +- all | libmono-sharpzip4.84-cil | 2.10.8.1-8 | - +- all | libmono-simd2.0-cil | 2.10.8.1-8 | - +- all | libmono-simd4.0-cil | 2.10.8.1-8 | - +- all | libmono-sqlite2.0-cil | 2.10.8.1-8 | - +- all | libmono-sqlite4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-componentmodel-composition4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-componentmodel-dataannotations4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-configuration-install4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-configuration4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-core4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data-datasetextensions4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data-linq2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data-linq4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data-services-client4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data-services4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-data4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-design4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-drawing-design4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-drawing4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-dynamic4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-enterpriseservices4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-identitymodel-selectors4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-identitymodel4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-ldap2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-ldap4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-management4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-messaging2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-messaging4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-net4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-numerics4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-runtime-caching4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-runtime-durableinstancing4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-runtime-serialization-formatters-soap4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-runtime-serialization4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-runtime2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-runtime4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-security4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-servicemodel-discovery4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-servicemodel-routing4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-servicemodel-web4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-servicemodel4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-serviceprocess4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-transactions4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-abstractions4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-applicationservices4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-dynamicdata4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-extensions-design4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-extensions4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-mvc1.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-mvc2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-routing4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web-services4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web2.0-cil | 2.10.8.1-8 | - +- all | libmono-system-web4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-windows-forms-datavisualization4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-windows-forms4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-xaml4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-xml-linq4.0-cil | 2.10.8.1-8 | - +- all | libmono-system-xml4.0-cil | 2.10.8.1-8 | - +- all | libmono-system2.0-cil | 2.10.8.1-8 | - +- all | libmono-system4.0-cil | 2.10.8.1-8 | - +- all | libmono-tasklets2.0-cil | 2.10.8.1-8 | - +- all | libmono-tasklets4.0-cil | 2.10.8.1-8 | - +- all | libmono-uia-cil-dev | 2.1-4 | - +- all | libmono-uia-winforms1.0-cil | 2.1-2 | - +- all | libmono-uia3.0-cil | 2.1-4 | - +- all | libmono-upnp-cil | 0.1.2-1 | - +- all | libmono-upnp-cil-dev | 0.1.2-1 | - +- all | libmono-wcf3.0-cil | 2.10.8.1-8 | - +- all | libmono-web4.0-cil | 2.10.8.1-8 | - +- all | libmono-webbrowser2.0-cil | 2.10.8.1-8 | - +- all | libmono-webbrowser4.0-cil | 2.10.8.1-8 | - +- all | libmono-webmatrix-data4.0-cil | 2.10.8.1-8 | - +- all | libmono-windowsbase3.0-cil | 2.10.8.1-8 | - +- all | libmono-windowsbase4.0-cil | 2.10.8.1-8 | - +- all | libmono-winforms2.0-cil | 2.10.8.1-8 | - +- all | libmono-zeroconf-cil-dev | 0.9.0-4 | - +- all | libmono-zeroconf1.0-cil | 0.9.0-4 | - +- all | libmono2.0-cil | 2.10.8.1-8 | - +- all | libmonogame-cil | 2.5.1+dfsg-3 | - +- all | libmonogame-cil-dev | 2.5.1+dfsg-3 | - +- all | libmoo-perl | 0.091011-1 | - +- all | libmoose-autobox-perl | 0.12-1 | - +- all | libmoosex-aliases-perl | 0.10-1 | - +- all | libmoosex-app-cmd-perl | 0.07-1 | - +- all | libmoosex-async-perl | 0.07-1 | - +- all | libmoosex-attribute-chained-perl | 1.0.1-1 | - +- all | libmoosex-attributehelpers-perl | 0.23-1 | - +- all | libmoosex-attributeshortcuts-perl | 0.010-1 | - +- all | libmoosex-blessed-reconstruct-perl | 0.04-2 | - +- all | libmoosex-clone-perl | 0.05-1 | - +- all | libmoosex-compiletime-traits-perl | 1.102570-1 | - +- all | libmoosex-configfromfile-perl | 0.04-1 | - +- all | libmoosex-daemonize-perl | 0.15-1 | - +- all | libmoosex-declare-perl | 0.35-1 | - +- all | libmoosex-emulate-class-accessor-fast-perl | 0.00903-1 | - +- all | libmoosex-followpbp-perl | 0.05-1 | - +- all | libmoosex-getopt-perl | 0.45-1 | - +- all | libmoosex-has-sugar-perl | 0.05070420-1 | - +- all | libmoosex-hasdefaults-perl | 0.03-1 | - +- all | libmoosex-insideout-perl | 0.106-2 | - +- all | libmoosex-lazyrequire-perl | 0.07-1 | - +- all | libmoosex-log-log4perl-perl | 0.46-1 | - +- all | libmoosex-markasmethods-perl | 0.15-1 | - +- all | libmoosex-meta-typeconstraint-forcecoercion-perl | 0.01-1 | - +- all | libmoosex-method-signatures-perl | 0.43-1 | - +- all | libmoosex-methodattributes-perl | 0.27-1 | - +- all | libmoosex-multiinitarg-perl | 0.01-1 | - +- all | libmoosex-multimethods-perl | 0.10-1 | - +- all | libmoosex-nonmoose-perl | 0.22-1 | - +- all | libmoosex-object-pluggable-perl | 0.0011-2 | - +- all | libmoosex-oneargnew-perl | 0.002-1 | - +- all | libmoosex-param-perl | 0.02-1 | - +- all | libmoosex-params-validate-perl | 0.16-1 | - +- all | libmoosex-poe-perl | 0.215-1 | - +- all | libmoosex-relatedclassroles-perl | 0.004-1 | - +- all | libmoosex-role-parameterized-perl | 1.00-1 | - +- all | libmoosex-role-timer-perl | 0.03-1 | - +- all | libmoosex-semiaffordanceaccessor-perl | 0.09-1 | - +- all | libmoosex-setonce-perl | 0.200001-1 | - +- all | libmoosex-simpleconfig-perl | 0.09-1 | - +- all | libmoosex-singleton-perl | 0.29-1 | - +- all | libmoosex-storage-perl | 0.31-1 | - +- all | libmoosex-strictconstructor-perl | 0.19-1 | - +- all | libmoosex-traits-perl | 0.11-2 | - +- all | libmoosex-traits-pluggable-perl | 0.10-2 | - +- all | libmoosex-types-common-perl | 0.001008-1 | - +- all | libmoosex-types-datetime-morecoercions-perl | 0.09-1 | - +- all | libmoosex-types-datetime-perl | 0.07-1 | - +- all | libmoosex-types-iso8601-perl | 0.11-1 | - +- all | libmoosex-types-json-perl | 0.02-1 | - +- all | libmoosex-types-loadableclass-perl | 0.008-1 | - +- all | libmoosex-types-netaddr-ip-perl | 0.04-1 | - +- all | libmoosex-types-path-class-perl | 0.05-2 | - +- all | libmoosex-types-perl | 0.35-1 | - +- all | libmoosex-types-perl-perl | 0.101341-1 | - +- all | libmoosex-types-set-object-perl | 0.03-1 | - +- all | libmoosex-types-structured-perl | 0.28-1 | - +- all | libmoosex-types-varianttable-perl | 0.04-2 | - +- all | libmoosex-undeftolerant-perl | 0.17-1 | - +- all | libmoosex-yaml-perl | 0.04-1 | - +- all | libmorfologik-stemming-java | 1.2.2-1.1 | - +- all | libmosquitto0-dev | 0.15-2 | - +- all | libmosquittopp0-dev | 0.15-2 | - +- all | libmousex-getopt-perl | 0.34-1 | - +- all | libmousex-nativetraits-perl | 1.07-1 | - +- all | libmousex-strictconstructor-perl | 0.02-1 | - +- all | libmousex-types-path-class-perl | 0.07-1 | - +- all | libmousex-types-perl | 0.06-1 | - +- all | libmp3-info-perl | 1.24-1 | - +- all | libmp3-tag-perl | 1.13-1 | - +- all | libmp3info-ruby1.8 | 0.5-2 | - +- all | libmp3spi-java | 1.9.5-1 | - +- all | libmp3tag-ruby1.8 | 1.0-11 | - +- all | libmp3tag-ruby1.9.1 | 1.0-11 | - +- all | libmp4-info-perl | 1.13-1 | - +- all | libmpdclient-doc | 2.3-1 | - +- all | libmpfr-doc | 3.1.0-5 | - +- all | libmqdb-perl | 0.954-1 | - +- all | libmr-tarantool-perl | 0.0.24-1 | - +- all | libmro-compat-perl | 0.11-1 | - +- all | libmsgpack-ruby1.8 | 0.4.6-4 | - +- all | libmsgpack-ruby1.9.1 | 0.4.6-4 | - +- all | libmsoffice-word-html-writer-perl | 1.01-1 | - +- all | libmsv-java | 2009.1+dfsg1-3 | - +- all | libmtp-common | 1.1.3-35-g0ece104-5 | - +- all | libmtp-doc | 1.1.3-35-g0ece104-5 | - +- all | libmule-java-2.0 | 2.0.1-5 | - +- all | libmultibitnums-ruby | 0.1.4-1 | - +- all | libmultibitnums-ruby1.8 | 0.1.4-1 | - +- all | libmultibitnums-ruby1.8-dbg | 0.1.4-1 | - +- all | libmultibitnums-ruby1.9.1 | 0.1.4-1 | - +- all | libmultibitnums-ruby1.9.1-dbg | 0.1.4-1 | - +- all | libmunge-maven-plugin-java | 1.0-1 | - +- all | libmunge-maven-plugin-java-doc | 1.0-1 | - +- all | libmuparser-doc | 2.1.0-3 | - +- all | libmupen64plus-dev | 1.99.5-6 | - +- all | libmusicbrainz5-doc | 5.0.1-2 | - +- all | libmvel-java | 2.0.18-2 | - +- all | libmvel-java-doc | 2.0.18-2 | - +- all | libmx-common | 1.4.6-1 | - +- all | libmx-doc | 1.4.6-1 | - +- all | libmx4j-java | 3.0.2-12 | - +- all | libmyproxy-doc | 5.6-1 | - +- all | libmysql++-doc | 3.1.0-2 | - +- all | libmysql-cil-dev | 6.4.3-2 | - +- all | libmysql-diff-perl | 0.43-2 | - +- all | libmysql-java | 5.1.16-2 | - +- all | libmysql-ruby | 2.8.2+gem2deb-3 | - +- all | libmysql-ruby1.8 | 2.8.2+gem2deb-3 | - +- all | libmysql-ruby1.9.1 | 2.8.2+gem2deb-3 | - +- all | libmysql6.4-cil | 6.4.3-2 | - +- all | libnacore-doc | 0.4.0-3 | - +- all | libnaga-java | 2.1-3 | - +- all | libnagios-object-perl | 0.21.16-1 | - +- all | libnagios-plugin-perl | 0.36-1 | - +- all | libnamespace-autoclean-perl | 0.13-1 | - +- all | libnamespace-clean-perl | 0.23-1 | - +- all | libnanoxml2-java | 2.2.3.dfsg-4 | - +- all | libnanoxml2-java-doc | 2.2.3.dfsg-4 | - +- all | libnarray-miss-ruby | 1.2.7-2 | - +- all | libnarray-miss-ruby1.8 | 1.2.7-2 | - +- all | libnarray-miss-ruby1.9.1 | 1.2.7-2 | - +- all | libnarray-ruby | 0.6.0.1-1 | - +- all | libnarray-ruby1.8 | 0.6.0.1-1 | - +- all | libnarray-ruby1.8-dbg | 0.6.0.1-1 | - +- all | libnarray-ruby1.9.1 | 0.6.0.1-1 | - +- all | libnarray-ruby1.9.1-dbg | 0.6.0.1-1 | - +- all | libnb-absolutelayout-java | 7.0.1+dfsg1-5 | - +- all | libnb-apisupport3-java | 7.0.1+dfsg1-5 | - +- all | libnb-ide14-java | 7.0.1+dfsg1-5 | - +- all | libnb-java5-java | 7.0.1+dfsg1-5 | - +- all | libnb-javaparser-java | 7.0.1-1 | - +- all | libnb-org-openide-modules-java | 7.0.1+dfsg1-5 | - +- all | libnb-org-openide-util-java | 7.0.1+dfsg1-5 | - +- all | libnb-org-openide-util-lookup-java | 7.0.1+dfsg1-5 | - +- all | libnb-platform-devel-java | 7.0.1+dfsg1-5 | - +- all | libnb-platform13-java | 7.0.1+dfsg1-5 | - +- all | libnb-platform13-java-doc | 7.0.1+dfsg1-5 | - +- all | libncurses-gst | 3.2.4-2 | - +- all | libncurses-ruby | 1.3.1-2 | - +- all | libncurses-ruby1.8 | 1.3.1-2 | - +- all | libncurses-ruby1.9 | 1.3.1-2 | - +- all | libncurses-ruby1.9.1 | 1.3.1-2 | - +- all | libncursesada-doc | 5.9.20110404-7 | - +- all | libndesk-dbus-glib1.0-cil | 0.4.1-4 | - +- all | libndesk-dbus-glib1.0-cil-dev | 0.4.1-4 | - +- all | libndesk-dbus1.0-cil | 0.6.0-6 | - +- all | libndesk-dbus1.0-cil-dev | 0.6.0-6 | - +- all | libneedle-extras-ruby1.8 | 1.0.0-2 | - +- all | libneedle-ruby1.8 | 1.3.0-1 | - +- all | libnekohtml-java | 1.9.15-1 | - +- all | libnekohtml-java-doc | 1.9.15-1 | - +- all | libnet-address-ip-local-perl | 0.1.2-2 | - +- all | libnet-akamai-perl | 0.14-1 | - +- all | libnet-akismet-perl | 0.05-1 | - +- all | libnet-amazon-ec2-perl | 0.18-1 | - +- all | libnet-amazon-perl | 0.61-1 | - +- all | libnet-amazon-s3-perl | 0.56-1 | - +- all | libnet-amazon-s3-tools-perl | 0.08-1 | - +- all | libnet-appliance-session-perl | 3.121640-1 | - +- all | libnet-bonjour-perl | 0.96-1 | - +- all | libnet-cidr-lite-perl | 0.21-1 | - +- all | libnet-cidr-perl | 0.15-1 | - +- all | libnet-citadel-perl | 0.02-1 | - +- all | libnet-cli-interact-perl | 1.121640-1 | - +- all | libnet-daap-dmap-perl | 1.27-1 | - +- all | libnet-daemon-perl | 0.48-1 | - +- all | libnet-dhcp-perl | 0.690+dfsg-1 | - +- all | libnet-dns-async-perl | 1.07-1 | - +- all | libnet-dns-fingerprint-perl | 0.9.3-4 | - +- all | libnet-dns-resolver-programmable-perl | 0.003-2 | - +- all | libnet-dns-sec-perl | 0.16-2 | - +- all | libnet-domain-tld-perl | 1.69-1 | - +- all | libnet-dpap-client-perl | 0.26-2 | - +- all | libnet-dri-perl | 0.96-1 | - +- all | libnet-dropbox-api-perl | 1.8-1 | - +- all | libnet-easytcp-perl | 0.26-2 | - +- all | libnet-epp-perl | 0.19-1 | - +- all | libnet-finger-perl | 1.06-6 | - +- all | libnet-frame-perl | 1.09-1 | - +- all | libnet-github-perl | 0.46-1 | - +- all | libnet-google-authsub-perl | 0.5-1 | - +- all | libnet-google-code-perl | 0.19-2 | - +- all | libnet-gpsd3-perl | 0.18-1 | - +- all | libnet-hiveminder-perl | 0.08-1 | - +- all | libnet-hotline-perl | 0.83-2 | - +- all | libnet-http-perl | 6.03-2 | - +- all | libnet-https-any-perl | 0.10-3 | - +- all | libnet-https-nb-perl | 0.12-1 | - +- all | libnet-httpserver-perl | 1.1.1-1 | - +- all | libnet-ident-perl | 1.23-1 | - +- all | libnet-ifconfig-wrapper-perl | 0.11-1 | - +- all | libnet-imap-client-perl | 0.9501-1 | - +- all | libnet-imap-perl | 0.02-7 | - +- all | libnet-imap-simple-perl | 1.2030-1 | - +- all | libnet-imap-simple-ssl-perl | 1.3-3 | - +- all | libnet-inet6glue-perl | 0.5-1 | - +- all | libnet-ip-minimal-perl | 0.02-1 | - +- all | libnet-ip-perl | 1.25-3 | - +- all | libnet-iptrie-perl | 0.7-1 | - +- all | libnet-ipv6addr-perl | 0.2.dfsg.1-3 | - +- all | libnet-irc-perl | 0.75-8 | - +- all | libnet-irc-ruby | 0.14-5.1 | - +- all | libnet-irr-perl | 0.08-1 | - +- all | libnet-jabber-bot-perl | 2.1.5-1 | - +- all | libnet-jabber-perl | 2.0-5 | - +- all | libnet-jifty-perl | 0.14-1 | - +- all | libnet-ldap-filterbuilder-perl | 1.0004-1 | - +- all | libnet-ldap-perl | 1:0.4400-1 | - +- all | libnet-ldap-server-perl | 0.4-2 | - +- all | libnet-luminis-build-plugin-java | 0.2.0-1 | - +- all | libnet-mac-perl | 2.103622-1 | - +- all | libnet-mac-vendor-perl | 1.18-2+deb7u1 | - +- all | libnet-managesieve-perl | 0.10-1 | - +- all | libnet-nbname-perl | 0.26-1 | - +- all | libnet-netmask-perl | 1.9016-1 | - +- all | libnet-netrc-ruby1.8 | 0.2.2-2 | - +- all | libnet-netrc-ruby1.9.1 | 0.2.2-1 | - +- all | libnet-nslookup-perl | 2.00-1 | - +- all | libnet-ntp-perl | 1.3-1 | - +- all | libnet-oauth-perl | 0.28-1 | - +- all | libnet-openid-common-perl | 1.14-1 | - +- all | libnet-openid-consumer-perl | 1.13-1 | - +- all | libnet-openid-server-perl | 1.09-1 | - +- all | libnet-opensrs-perl | 0.06-1 | - +- all | libnet-openssh-compat-perl | 0.06-1 | - +- all | libnet-openssh-perl | 0.57-1 | - +- all | libnet-ph-perl | 2.21-7 | - +- all | libnet-ping-external-perl | 0.13-1 | - +- all | libnet-proxy-perl | 0.12-5 | - +- all | libnet-rblclient-perl | 0.5-2 | - +- all | libnet-rendezvous-publish-backend-avahi-perl | 0.04-1 | - +- all | libnet-rendezvous-publish-perl | 0.04-2 | - +- all | libnet-scp-expect-perl | 0.16-1 | - +- all | libnet-scp-perl | 0.08-1 | - +- all | libnet-scp-ruby | 1.0.4-2 | - +- all | libnet-scp-ruby1.8 | 1.0.4-2 | - +- all | libnet-scp-ruby1.9.1 | 1.0.4-2 | - +- all | libnet-server-mail-perl | 0.17-1 | - +- all | libnet-server-perl | 2.006-1+deb7u1 | - +- all | libnet-sftp-foreign-perl | 1.73+dfsg-1 | - +- all | libnet-sftp-ruby1.8 | 1:2.0.5-3 | - +- all | libnet-sftp2-ruby | 1:2.0.5-3 | - +- all | libnet-sftp2-ruby1.8 | 1:2.0.5-3 | - +- all | libnet-sftp2-ruby1.9.1 | 1:2.0.5-3 | - +- all | libnet-sieve-perl | 0.09-1 | - +- all | libnet-sieve-script-perl | 0.08-1 | - +- all | libnet-sip-perl | 0.66-1 | - +- all | libnet-smpp-perl | 1.19-1 | - +- all | libnet-smtp-server-perl | 1.1-4 | - +- all | libnet-smtp-ssl-perl | 1.01-3 | - +- all | libnet-smtp-tls-butmaintained-perl | 0.17-1+deb7u1 | - +- all | libnet-smtp-tls-perl | 0.12-1 | - +- all | libnet-smtpauth-perl | 0.08-2 | - +- all | libnet-snmp-perl | 6.0.1-2 | - +- all | libnet-snpp-perl | 1.17-3 | - +- all | libnet-socks-perl | 0.03-13 | - +- all | libnet-ssh-gateway-ruby | 1.1.0-2 | - +- all | libnet-ssh-gateway-ruby1.8 | 1.1.0-2 | - +- all | libnet-ssh-gateway-ruby1.9.1 | 1.1.0-2 | - +- all | libnet-ssh-multi-ruby | 1.1-2 | - +- all | libnet-ssh-multi-ruby1.8 | 1.1-2 | - +- all | libnet-ssh-multi-ruby1.9.1 | 1.1-2 | - +- all | libnet-ssh-perl | 0.09-1 | - +- all | libnet-ssh-ruby1.8 | 1:2.5.2-2 | - +- all | libnet-ssh2-ruby | 1:2.5.2-2 | - +- all | libnet-ssh2-ruby1.8 | 1:2.5.2-2 | - +- all | libnet-ssh2-ruby1.9.1 | 1:2.5.2-2 | - +- all | libnet-sslglue-perl | 1.01-1 | - +- all | libnet-stomp-perl | 0.45-1 | - +- all | libnet-subnets-perl | 1.0-1 | - +- all | libnet-telnet-cisco-perl | 1.10-5 | - +- all | libnet-telnet-perl | 3.03-3 | - +- all | libnet-tftp-perl | 0.19-1 | - +- all | libnet-tftpd-perl | 0.04-2 | - +- all | libnet-trac-perl | 0.16-1 | - +- all | libnet-traceroute-perl | 1.13-1 | - +- all | libnet-traceroute-pureperl-perl | 0.10-1 | - ++ all | libnet-twitter-perl | - | 4.01002-1~bpo70+1 +- all | libnet-upnp-perl | 1.4.2-1 | - +- all | libnet-vnc-perl | 0.40-1 | - +- all | libnet-whois-parser-perl | 0.07-1 | - +- all | libnet-whois-raw-perl | 2.31-1 | - +- all | libnet-whois-ripe-perl | 1.23-1 | - +- all | libnet-write-perl | 1.05-1 | - +- all | libnet-xmpp-perl | 1.02-3 | - +- all | libnet-xwhois-perl | 0.90-3 | - +- all | libnet-z3950-simple2zoom-perl | 1.04-1 | - +- all | libnet1-doc | 1.1.4-2.1 | - +- all | libnetapp-perl | 500.002-1 | - +- all | libnetbeans-cvsclient-java | 6.5-2 | - +- all | libnetdot-client-rest-perl | 1.02-1 | - +- all | libnetpacket-perl | 1.3.0-1 | - +- all | libnetsds-kannel-perl | 1.300-5 | - +- all | libnetsds-perl | 1.301-2 | - +- all | libnetsds-util-perl | 1.044-2 | - +- all | libnetty-java | 1:3.2.6.Final-2 | - +- all | libnetty3.1-java | 3.1.0.CR1-1 | - +- all | libnetwork-ipv4addr-perl | 0.10.ds-2 | - +- all | libnetx-java | 0.5-2 | - +- all | libnews-article-nocem-perl | 0.08-1 | - +- all | libnews-article-perl | 1.27-7 | - +- all | libnews-newsrc-perl | 1.09-3 | - +- all | libnews-nntpclient-perl | 0.37-8 | - +- all | libnews-scan-perl | 0.53-3 | - +- all | libnewtonsoft-json-cil-dev | 4.5r6-1 | - +- all | libnewtonsoft-json4.5-cil | 4.5r6-1 | - +- all | libnfo-doc | 1.0.1-1 | - +- all | libnice-doc | 0.1.2-1 | - +- all | libnifti-doc | 2.0.0-1 | - +- all | libnini-cil-dev | 1.1.0+dfsg.2-4 | - +- all | libnini-doc | 1.1.0+dfsg.2-4 | - +- all | libnini1.1-cil | 1.1.0+dfsg.2-4 | - +- all | libnjb-doc | 2.2.7~dfsg0-3 | - +- all | libnl-3-doc | 3.2.7-4 | - +- all | libnl-doc | 1.1-7 | - +- all | libnm-gtk-common | 0.9.4.1-5 | - +- all | libnmap-parser-perl | 1.05-2 | - +- all | libnokogiri-ruby | 1.5.5-1 | - +- all | libnokogiri-ruby1.8 | 1.5.5-1 | - +- all | libnokogiri-ruby1.9 | 1.5.5-1 | - +- all | libnokogiri-ruby1.9.1 | 1.5.5-1 | - +- all | libnora-ruby1.8 | 1:0.0.20041021-5.1 | - +- all | libnotify-cil-dev | 0.4.0~r3032-6 | - +- all | libnotify-doc | 0.7.5-1 | - +- all | libnotify0.4-cil | 0.4.0~r3032-6 | - +- all | libnumber-bytes-human-perl | 0.07-1 | - +- all | libnumber-compare-perl | 0.03-1 | - +- all | libnumber-format-perl | 1.73-1 | - +- all | libnumber-fraction-perl | 1.14-1 | - +- all | libnumber-range-perl | 0.10-1 | - +- all | libnumber-recordlocator-perl | 0.005-1 | - +- all | libnunit-cil-dev | 2.6.0.12051+dfsg-2 | - +- all | libnunit-doc | 2.6.0.12051+dfsg-2 | - +- all | libnunit2.6-cil | 2.6.0.12051+dfsg-2 | - +- all | libnusoap-php | 0.7.3-5 | - +- all | liboasis-ocaml-doc | 0.2.0-6 | - +- all | liboauth-php | 0~svn622-1 | - +- all | liboauth-ruby1.8 | 0.4.6-2 | - +- all | liboauth-ruby1.9.1 | 0.4.6-2 | - +- all | liboauth-signpost-java | 1.2.1.2-1 | - +- all | libobject-authority-perl | 0.004-1 | - +- all | libobject-declare-perl | 0.22-2 | - +- all | libobject-destroyer-perl | 2.00-1 | - +- all | libobject-event-perl | 1.230-1 | - +- all | libobject-id-perl | 0.1.2-1 | - +- all | libobject-insideout-perl | 3.87-1 | - +- all | libobject-multitype-perl | 0.05-3 | - +- all | libobject-pluggable-perl | 1.29-1 | - +- all | libobject-realize-later-perl | 0.18-2 | - +- all | libobject-role-perl | 0.001-1 | - +- all | libobject-signature-perl | 1.07-1 | - +- all | libobject-tiny-perl | 1.06-1 | - +- all | libobjenesis-java | 1.2+full-3 | - +- all | libobjenesis-java-doc | 1.2+full-3 | - +- all | libocamlgraph-ocaml-doc | 1.8.2-2 | - +- all | libocamlnet-ocaml-doc | 3.5.1-1 | - +- all | libocamlviz-ocaml-doc | 1.01-2 | - +- all | liboce-modeling-dev | 0.9.1-3 | - +- all | liboce-ocaf-dev | 0.9.1-3 | - +- all | liboce-ocaf-lite-dev | 0.9.1-3 | - +- all | liboce-visualization-dev | 0.9.1-3 | - +- all | libocsigen-ocaml-doc | 1.3.4-2 | - +- all | libodbc-ruby | 0.99994-4 | - +- all | libodbc-ruby-doc | 0.99994-4 | - +- all | libodbc-ruby1.8 | 0.99994-4 | - +- all | libodbc-ruby1.8-dbg | 0.99994-4 | - +- all | libodbc-ruby1.9.1 | 0.99994-4 | - +- all | libodbc-ruby1.9.1-dbg | 0.99994-4 | - +- all | libofx-doc | 1:0.9.4-2.1 | - +- all | libogg-vorbis-header-pureperl-perl | 1.0-3 | - +- all | libogginfo-ruby | 0.6.10-1 | - +- all | libogginfo-ruby1.8 | 0.6.10-1 | - +- all | libogginfo-ruby1.9.1 | 0.6.10-1 | - +- all | libognl-java | 2.7.3-4 | - +- all | libognl-java-doc | 2.7.3-4 | - +- all | libohai-ruby | 6.14.0-2 | - +- all | libohai-ruby1.8 | 6.14.0-2 | - +- all | liboil0.3-doc | 0.3.17-2 | - +- all | libokular-ruby | 4:4.8.4-1 | - +- all | libokular-ruby1.8 | 4:4.8.4-1 | - +- all | libolap4j-java | 1.0.1.500-1 | - +- all | libolap4j-java-doc | 1.0.1.500-1 | - +- all | libole-ruby | 1.2.11.3-1 | - +- all | libole-ruby-doc | 1.2.11.3-1 | - +- all | libole-ruby1.8 | 1.2.11.3-1 | - +- all | libole-ruby1.9.1 | 1.2.11.3-1 | - +- all | libole-storage-lite-perl | 0.19-1 | - +- all | libomxil-bellagio-doc | 0.9.3-1 | - +- all | libonemind-commons-invoke-java | 1.1.0+cvs20090227-4 | - +- all | libonemind-commons-java-java | 1.5.5-4 | - +- all | libooolib-perl | 0.1.9-1 | - +- all | liboop-doc | 1.0-9 | - +- all | libopal-doc | 3.10.4~dfsg-3 | - +- all | libopen4-ruby | 1.3.0-1 | - +- all | libopen4-ruby1.8 | 1.3.0-1 | - +- all | libopen4-ruby1.9.1 | 1.3.0-1 | - +- all | libopenal-data | 1:1.14-4 | - +- all | libopenbabel-doc | 2.3.1+dfsg-4 | - +- all | libopendap-java | 2.2-1 | - +- all | libopendap-java-doc | 2.2-1 | - +- all | libopengl-ruby | 0.60.1+dfsg2-1~wheezy1 | - +- all | libopengl-ruby1.8 | 0.60.1+dfsg2-1~wheezy1 | - +- all | libopengl-ruby1.9.1 | 0.60.1+dfsg2-1~wheezy1 | - +- all | libopenid-ruby | 2.1.8debian-6 | - +- all | libopenid-ruby1.8 | 2.1.8debian-6 | - +- all | libopenid4java-java | 0.9.6.662-1 | - +- all | libopenid4java-java-doc | 0.9.6.662-1 | - +- all | libopenjpa-java | 2.0.1-1 | - +- all | libopenjpa-java-doc | 2.0.1-1 | - +- all | libopennebula-java | 3.4.1-3.1 | - +- all | libopennebula-java-doc | 3.4.1-3.1 | - +- all | libopenoffice-oodoc-perl | 2.125-2 | - +- all | libopensrs-perl | 3.0.0-1 | - +- all | libopentk-cil-dev | 1.0.20101006+dfsg1-1 | - +- all | libopentk1.0-cil | 1.0.20101006+dfsg1-1 | - +- all | libopenusb-doc | 1.1.0-2 | - +- all | libopenvrml-doc | 0.18.9-5+deb7u1 | - +- all | libopenwalnut1-doc | 1.2.5-1.1 | - +- all | libopsin-java | 1.2.0-1 | - +- all | liboptions-java | 0.0.20120113-1 | - +- all | liboptions-java-doc | 0.0.20120113-1 | - +! all | libopus-doc | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +- all | liborc-0.4-doc | 1:0.4.16-2 | - +- all | liborlite-migrate-perl | 1.10-1 | - +- all | liborlite-mirror-perl | 1.23-2 | - +- all | liborlite-perl | 1.97-1 | - +- all | liborlite-statistics-perl | 0.03-1 | - +- all | liboro-java | 2.0.8a-8 | - +- all | liboro-java-doc | 2.0.8a-8 | - +- all | liboscache-java | 2.4.1+ds1-3 | - +- all | libosgi-compendium-java | 4.3.0-1 | - +- all | libosgi-compendium-java-doc | 4.3.0-1 | - +- all | libosgi-core-java | 4.3.0-3 | - +- all | libosgi-core-java-doc | 4.3.0-3 | - +- all | libosgi-foundation-ee-java | 4.2.0-1 | - +- all | libosgi-foundation-ee-java-doc | 4.2.0-1 | - +- all | libosl-doc | 0.5.0-1 | - +- all | libosm-gary68-perl | 0.0~svn26727-1 | - +- all | libosmpbf-java | 1.2.1-3 | - +- all | libouch-perl | 0.0401-1 | - +- all | libow-util-ant-tasks-java | 1.3.2-4 | - +- all | libow-util-ant-tasks-java-doc | 1.3.2-4 | - +- all | libowasp-java-html-sanitizer-java | 0.1+r88-1 | - +- all | libowasp-java-html-sanitizer-java-doc | 0.1+r88-1 | - +- all | libowl-directsemantics-perl | 0.001-1 | - +- all | libownet-perl | 2.8p15-1 | - +- all | libownet-php | 2.8p15-1 | - +- all | liboxford-calendar-perl | 2.07-1 | - +- all | libpackage-deprecationmanager-perl | 0.13-1 | - +- all | libpackage-new-perl | 0.07-1 | - +- all | libpackage-pkg-perl | 0.0020-1 | - +- all | libpackage-stash-perl | 0.33-1 | - +- all | libpacket-ruby | 0.1.15-5 | - +- all | libpacket-ruby1.8 | 0.1.15-5 | - +- all | libpacket-ruby1.9.1 | 0.1.15-5 | - +- all | libpadre-plugin-autoformat-perl | 1.22-5 | - +- all | libpadre-plugin-datawalker-perl | 0.04-2 | - +- all | libpadre-plugin-git-perl | 0.03-2 | - +- all | libpadre-plugin-moose-perl | 0.21-2 | - +- all | libpadre-plugin-parsertool-perl | 0.01-1 | - +- all | libpadre-plugin-pdl-perl | 0.05-2 | - +- all | libpadre-plugin-perlcritic-perl | 0.12-2 | - +- all | libpadre-plugin-perltidy-perl | 0.21-1 | - +- all | libpadre-plugin-snippet-perl | 0.01-1 | - +- all | libpadre-plugin-spellcheck-perl | 1.29-1 | - +- all | libpadre-plugin-svn-perl | 0.05-1 | - +- all | libpadre-plugin-yaml-perl | 0.06-1 | - +- all | libpal-java | 1.5.1-2 | - +- all | libpal-java-doc | 1.5.1-2 | - +- all | libpalm-perl | 1:1.012-1 | - +- all | libpam-doc | 1.1.3-7.1 | - +- all | libpam-foreground | 0.7 | - +- all | libpam-mklocaluser | 0.8~deb7u1 | - +- all | libpam-python-doc | 1.0.2-1 | - +- all | libpam-runtime | 1.1.3-7.1 | - +- all | libpam4j-java | 1.4-2 | - +- all | libpam4j-java-doc | 1.4-2 | - +- all | libpanel-applet-4-doc | 3.4.2.1-4 | - +- all | libpango1-ruby | 1.1.3-2 | - +- all | libpango1-ruby1.8 | 1.1.3-2 | - +- all | libpango1-ruby1.8-dbg | 1.1.3-2 | - +- all | libpango1.0-doc | 1.30.0-1 | - +- all | libpangomm-1.4-doc | 2.28.4-1 | - +- all | libpaperclips-java | 1.0.4-1 | - +- all | libpaperclips-java-doc | 1.0.4-1 | - +- all | libpar-dist-perl | 0.48-1 | - +- all | libpar-perl | 1.005-1 | - +- all | libparallel-forkmanager-perl | 0.7.5-2 | - +- all | libparallel-iterator-perl | 1.00-1 | - +- all | libparams-callbackrequest-perl | 1.20-1 | - +- all | libparams-coerce-perl | 0.14-1 | - +- all | libparanoid-perl | 0.34-1 | - +- all | libparse-cpan-meta-perl | 1.4404-1 | - +- all | libparse-cpan-packages-perl | 2.35-1 | - +- all | libparse-debcontrol-perl | 2.005-3 | - +- all | libparse-debian-packages-perl | 0.03-1 | - +- all | libparse-debianchangelog-perl | 1.2.0-1 | - +- all | libparse-dia-sql-perl | 0.20-1 | - +- all | libparse-dmidecode-perl | 0.03-1 | - +- all | libparse-edid-perl | 1.0.1-1 | - +- all | libparse-errorstring-perl-perl | 0.15-1 | - +- all | libparse-fixedlength-perl | 5.37-1 | - +- all | libparse-http-useragent-perl | 0.35-1 | - +- all | libparse-mediawikidump-perl | 1.0.6-1 | - +- all | libparse-method-signatures-perl | 1.003014-1 | - +- all | libparse-plainconfig-perl | 2.06-1 | - +- all | libparse-recdescent-perl | 1.967009+dfsg-1 | - +- all | libparse-syslog-perl | 1.10-2 | - +- all | libparse-win32registry-perl | 1.0-1 | - +- all | libparse-yapp-perl | 1.05-12 | - +- all | libparser++-dev | 0.2.3-2 | - +- all | libparsetree-ruby | 3.0.8-3 | - +- all | libparsetree-ruby1.8 | 3.0.8-3 | - +- all | libparted0-i18n | 2.3-12 | - +- all | libpasswd-unix-perl | 0.621-1 | - +- all | libpasswdqc-dev | 1.2.0-1 | - +- all | libpassword-ruby | 0.5.3-3 | - +- all | libpassword-ruby1.8 | 0.5.3-3 | - +- all | libpath-class-file-stat-perl | 0.03-1 | - +- all | libpath-class-perl | 0.26-1 | - +- all | libpath-dispatcher-declarative-perl | 0.03-1 | - +- all | libpath-dispatcher-perl | 1.04-1 | - +- all | libpcap-dev | 1.3.0-1 | - +- all | libpcap-ruby | 0.7.0-2 | - +- all | libpcap-ruby1.8 | 0.7.0-2 | - +- all | libpdf-api2-perl | 2.019-1 | - +- all | libpdf-api2-simple-perl | 1.1.4u-3 | - +- all | libpdf-create-perl | 1.06-1 | - +- all | libpdf-fdf-simple-perl | 0.10-1 | - +- all | libpdf-report-perl | 1.33-3 | - +- all | libpdf-reuse-barcode-perl | 0.05-1 | - +- all | libpdf-reuse-perl | 0.35-2 | - +- all | libpdf-table-perl | 0.9.5-1 | - +- all | libpdfbox-java | 1:1.7.0+dfsg-4 | - +- all | libpdfbox-java-doc | 1:1.7.0+dfsg-4 | - +- all | libpdfrenderer-java | 0.9.0-1 | - +- all | libpeas-common | 1.4.0-2 | - +- all | libpentaho-reporting-flow-engine-java | 0.9.4-4 | - +- all | libpentaho-reporting-flow-engine-java-doc | 0.9.4-4 | - +- all | libperl-apireference-perl | 0.09-1 | - +- all | libperl-critic-perl | 1.117-2 | - +- all | libperl-metrics-simple-perl | 0.15-1 | - +- all | libperl-minimumversion-perl | 1.28-1 | - +- all | libperl-prereqscanner-perl | 1.012-1 | - +- all | libperl-version-perl | 1.010-1 | - +- all | libperl4-corelibs-perl | 0.003-1 | - +- all | libperl4caml-ocaml-doc | 0.9.5-4 | - +- all | libperl6-caller-perl | 0.100-1 | - +- all | libperl6-export-attrs-perl | 0.0.3-1 | - +- all | libperl6-export-perl | 0.07-10 | - +- all | libperl6-form-perl | 0.04-6 | - +- all | libperl6-junction-perl | 1.40000-1 | - +- all | libperl6-say-perl | 0.12-1.1 | - +- all | libperl6-slurp-perl | 0.051000-1 | - +- all | libperlanet-perl | 0.56-1 | - +- all | libperlbal-perl | 1.80-2 | - +- all | libperldoc-search-perl | 0.01-3 | - +- all | libperlio-via-dynamic-perl | 0.12-1 | - +- all | libperlio-via-symlink-perl | 0.05-1.1 | - +- all | libperlmenu-perl | 4.0-5 | - +- all | libperlspeak-perl | 2.01-1 | - +- all | libperlx-maybe-perl | 0.002-1 | - +- all | libpetal-perl | 2.20-1 | - +- all | libpetal-utils-perl | 0.06-2 | - +- all | libpg-java | 9.1-901-2 | - +- all | libpgp-sign-perl | 0.20-3 | - +- all | libpgsql-ruby | 0.13.2-2 | - +- all | libpgsql-ruby-doc | 0.13.2-2 | - +- all | libpgsql-ruby1.8 | 0.13.2-2 | - +- all | libpgsql-ruby1.9.1 | 0.13.2-2 | - +- all | libphone-ui-common | 1:0.0.1+git20110825-3 | - +- all | libphp-adodb | 5.15-1 | - +- all | libphp-jabber | 0.4.3-4 | - +- all | libphp-jpgraph | 1.5.2-12.1 | - +- all | libphp-jpgraph-examples | 1.5.2-12.1 | - +- all | libphp-magpierss | 0.72-10 | - +- all | libphp-pclzip | 2.8.2-2 | - +- all | libphp-phpmailer | 5.1-1 | - +- all | libphp-serialization-perl | 0.34-1 | - +- all | libphp-simplepie | 1.2.1-3 | - +- all | libphp-snoopy | 1.2.4-2 | - +- all | libphp-swiftmailer | 4.1.5-1 | - +- all | libpion-net-doc | 4.0.7+dfsg-3.1 | - +- all | libpixels-java | 2.1.3+svn.42-2 | - +- all | libpixie-java | 1:1.1.6-3 | - +- all | libplack-middleware-crossorigin-perl | 0.007-1 | - +- all | libplack-middleware-deflater-perl | 0.08-1 | - +- all | libplack-middleware-expires-perl | 0.03-1 | - +- all | libplack-middleware-file-sass-perl | 0.03-2 | - +- all | libplack-middleware-reverseproxy-perl | 0.14-1 | - +- all | libplack-middleware-session-perl | 0.14-1 | - +- all | libplack-middleware-status-perl | 1.101150-1 | - ++ all | libplack-middleware-test-stashwarnings-perl | - | 0.07-1~bpo70+1 +- all | libplack-perl | 0.9989-1 | - +- all | libplack-test-externalserver-perl | 0.01-1 | - +- all | libplasma-ruby | 4:4.8.4-1 | - +- all | libplasma-ruby1.8 | 4:4.8.4-1 | - +- all | libplayer-doc | 2.0.1-2.1 | - +- all | libplexus-active-collections-java | 1.0~beta2-3 | - +- all | libplexus-active-collections-java-doc | 1.0~beta2-3 | - +- all | libplexus-ant-factory-java | 1.0~alpha2.1-3 | - +- all | libplexus-archiver-java | 1.0~alpha12-3 | - +- all | libplexus-bsh-factory-java | 1.0~alpha7-3 | - +- all | libplexus-build-api-java | 0.0.4-5 | - +- all | libplexus-build-api-java-doc | 0.0.4-5 | - +- all | libplexus-cdc-java | 1.0~alpha14-6 | - +- all | libplexus-cipher-java | 1.5-4 | - +- all | libplexus-cipher-java-doc | 1.5-4 | - +- all | libplexus-classworlds-java | 1.5.0-4 | - +- all | libplexus-classworlds-java-doc | 1.5.0-4 | - +- all | libplexus-classworlds2-java | 2.4-1 | - +- all | libplexus-classworlds2-java-doc | 2.4-1 | - +- all | libplexus-cli-java | 1.2-3 | - +- all | libplexus-cli-java-doc | 1.2-3 | - +- all | libplexus-compiler-api-java | 1.6-2 | - +- all | libplexus-compiler-java | 1.6-2 | - +- all | libplexus-compiler-javac-java | 1.6-2 | - +- all | libplexus-compiler-manager-java | 1.6-2 | - +- all | libplexus-component-api-java | 1.0.0~alpha22-3 | - +- all | libplexus-component-api-java-doc | 1.0.0~alpha22-3 | - +- all | libplexus-component-metadata-java | 1.0~beta3.0.7-5 | - +- all | libplexus-container-default-java | 1.0-alpha-9-stable-1-6 | - +- all | libplexus-container-default-java-doc | 1.0-alpha-9-stable-1-6 | - +- all | libplexus-containers-java | 1.0~beta3.0.7-5 | - +- all | libplexus-containers-java-doc | 1.0~beta3.0.7-5 | - +- all | libplexus-containers1.5-java | 1.5.5-2 | - +- all | libplexus-containers1.5-java-doc | 1.5.5-2 | - +- all | libplexus-digest-java | 1.1-3 | - +- all | libplexus-digest-java-doc | 1.1-3 | - +- all | libplexus-i18n-java | 1.0-beta-10-3 | - +- all | libplexus-i18n-java-doc | 1.0-beta-10-3 | - +- all | libplexus-interactivity-api-java | 1.0-alpha-6-7 | - +- all | libplexus-interactivity-api-java-doc | 1.0-alpha-6-7 | - +- all | libplexus-interpolation-java | 1.11-3 | - +- all | libplexus-interpolation-java-doc | 1.11-3 | - +- all | libplexus-io-java | 1.0~alpha5-2 | - +- all | libplexus-maven-plugin-java | 1.3.8-7 | - +- all | libplexus-maven-plugin-java-doc | 1.3.8-7 | - +- all | libplexus-sec-dispatcher-java | 1.3.1-6 | - +- all | libplexus-sec-dispatcher-java-doc | 1.3.1-6 | - +- all | libplexus-utils-java | 1:1.5.15-4 | - +- all | libplexus-utils-java-doc | 1:1.5.15-4 | - +- all | libplexus-utils2-java | 2.0.5-1 | - +- all | libplexus-utils2-java-doc | 2.0.5-1 | - +- all | libplexus-velocity-java | 1.1.7-5 | - +- all | libplexus-velocity-java-doc | 1.1.7-5 | - +- all | libplib-doc | 1:1.8.5-3 | - +- all | libplist-doc | 1.8-1 | - +- all | libplot-perl | 2.2.2-5 | - +- all | libplotmm-doc | 0.1.2-2 | - +- all | libplrpc-perl | 0.2020-2 | - +- all | libplucene-perl | 1.25-3 | - +- all | libpng++-dev | 0.2.5-1 | - +- all | libpng-sixlegs-java | 2.0-1 | - +- all | libpng-sixlegs-java-doc | 2.0-1 | - +- all | libpoco-doc | 1.3.6-1 | - +- all | libpod-2-docbook-perl | 0.03-2 | - +- all | libpod-abstract-perl | 0.20-1 | - +- all | libpod-constants-perl | 0.16-2 | - +- all | libpod-coverage-perl | 0.22-1 | - +- all | libpod-coverage-trustpod-perl | 0.100002-1 | - +- all | libpod-elemental-perl | 0.102362-1 | - +- all | libpod-elemental-perlmunger-perl | 0.093331-1 | - +- all | libpod-eventual-perl | 0.093170-1 | - +- all | libpod-index-perl | 0.14-2 | - +- all | libpod-markdown-perl | 1.320000-1 | - +- all | libpod-plainer-perl | 1.03-1 | - +- all | libpod-pom-perl | 0.27-1 | - +- all | libpod-pseudopod-perl | 0.18-1 | - +- all | libpod-readme-perl | 0.11-1 | - +- all | libpod-sax-perl | 0.14-5 | - +! all | libpod-simple-perl | 3.22-1 | 3.26-1~bpo70+1 +- all | libpod-simple-wiki-perl | 0.11-1 | - +- all | libpod-spell-perl | 1.01-2 | - +- all | libpod-strip-perl | 1.02-1 | - +- all | libpod-tests-perl | 1.19-3 | - +- all | libpod-tree-perl | 1.17-1 | - +- all | libpod-weaver-perl | 3.101637-1 | - +- all | libpod-webserver-perl | 3.05-1 | - +- all | libpod-wordlist-hanekomu-perl | 1.121370-1 | - +- all | libpod-wsdl-perl | 0.061-1 | - +- all | libpod-xhtml-perl | 1.60-1 | - +- all | libpod2-base-perl | 0.043-1 | - +- all | libpoe-api-peek-perl | 2.2000-1 | - +- all | libpoe-component-client-dns-perl | 1:1.051-1 | - +- all | libpoe-component-client-http-perl | 0.947-1 | - +- all | libpoe-component-client-ident-perl | 1.07-2 | - +- all | libpoe-component-client-keepalive-perl | 0.2710-1 | - +- all | libpoe-component-client-mpd-perl | 1.121670-1 | - +- all | libpoe-component-client-ping-perl | 1.171-1 | - +- all | libpoe-component-dbiagent-perl | 0.26-2 | - +- all | libpoe-component-ikc-perl | 0.2302-1 | - +- all | libpoe-component-irc-perl | 6.78+dfsg-1 | - +- all | libpoe-component-jabber-perl | 3.00-2 | - +- all | libpoe-component-jobqueue-perl | 0.5700-1 | - +- all | libpoe-component-pcap-perl | 0.04-2 | - +- all | libpoe-component-pubsub-perl | 0.05-1 | - +- all | libpoe-component-resolver-perl | 0.920-1 | - +- all | libpoe-component-server-http-perl | 0.09-2 | - +- all | libpoe-component-server-simplehttp-perl | 2.14-1 | - +- all | libpoe-component-server-soap-perl | 1.14-1 | - +- all | libpoe-component-sslify-perl | 1.008-1 | - +- all | libpoe-component-syndicator-perl | 0.06-1 | - +- all | libpoe-filter-http-parser-perl | 1.06-1 | - +- all | libpoe-filter-ircd-perl | 2.42-1 | - +- all | libpoe-filter-stomp-perl | 0.04-1 | - +- all | libpoe-filter-xml-perl | 0.38-1 | - +- all | libpoe-loop-event-perl | 1.304-1 | - +- all | libpoe-loop-tk-perl | 1.304-1 | - +- all | libpoe-perl | 2:1.3540-1 | - +- all | libpoe-test-loops-perl | 1.351-1 | - +- all | libpoet-perl | 0.11-1 | - +- all | libpoppler-cil | 0.0.3-2 | - +- all | libpoppler-cil-dev | 0.0.3-2 | - +- all | libpoppler-glib-ruby | 1.1.3-2 | - +- all | libpoppler-glib-ruby1.8 | 1.1.3-2 | - +- all | libpoppler-glib-ruby1.8-dbg | 1.1.3-2 | - +- all | libportaudio-doc | 18.1-7.1 | - +- all | libportlet-api-2.0-spec-java | 1.0-2 | - +- all | libportlet-api-2.0-spec-java-doc | 1.0-2 | - +- all | libposixlock-ruby | 0.0.1-2 | - +- all | libpostfix-parse-mailq-perl | 1.001-1 | - +- all | libpostgis-java | 1.5.3-2 | - +- all | libpostgresql-gst | 3.2.4-2 | - +- all | libpostgresql-jdbc-java | 9.1-901-2 | - +- all | libpostgresql-jdbc-java-doc | 9.1-901-2 | - +- all | libpostproc-extra-52 | 6:0.8.9-1 | - +- all | libpostscript-file-perl | 2.20+dfsg-1 | - +- all | libpostscript-perl | 0.06-2 | - +- all | libpostscript-simple-perl | 0.07-2 | - +- all | libpostscriptbarcode | 20080710-1 | - +- all | libppi-html-perl | 1.08-1 | - +- all | libppi-perl | 1.215-1 | - +- all | libppix-editortools-perl | 0.15-1 | - +- all | libppix-regexp-perl | 0.028-1 | - +- all | libppix-utilities-perl | 1.001000-1 | - +- all | libppl-doc | 0.11.2-8 | - +- all | libpqxx3-doc | 3.1-1.1 | - +- all | libpragmatic-perl | 1.7-2 | - +- all | libprawn-ruby | 1.0.0~rc1+dfsg1-3 | - +- all | libprawn-ruby-common | 1.0.0~rc1+dfsg1-3 | - +- all | libprawn-ruby1.8 | 1.0.0~rc1+dfsg1-3 | - +- all | libprawn-ruby1.9.1 | 1.0.0~rc1+dfsg1-3 | - +- all | libprefork-perl | 1.04-1 | - +- all | libpresage-data | 0.8.8-1 | - +- all | libpresage-doc | 0.8.8-1 | - +- all | libprivileges-drop-perl | 1.03-1 | - +- all | libprobe-perl-perl | 0.01-1 | - +- all | libproc-background-perl | 1.10-1 | - +- all | libproc-daemon-perl | 0.14-1 | - +- all | libproc-fork-perl | 0.71-1 | - +- all | libproc-invokeeditor-perl | 1.06-1 | - +- all | libproc-pid-file-perl | 1.27-1 | - +- all | libproc-reliable-perl | 1.16-1 | - +- all | libproc-simple-perl | 1.30-1 | - +- all | libproc-syncexec-perl | 1.01-1 | - +- all | libproc-waitstat-perl | 1.00-4 | - +- all | libprocessing-core-java | 1.2.1-1 | - +- all | libprogressbar-ruby | 0.11.0-2 | - +- all | libprogressbar-ruby1.8 | 0.11.0-2 | - +- all | libprophet-perl | 0.743-1 | - +- all | libprotobuf-java | 2.4.1-3 | - +- all | libproxool-java | 0.9.1-6 | - +- all | libprpc-perl | 0.1005-21 | - +- all | libpstreams-dev | 0.7.0-2 | - +- all | libpt-doc | 2.10.4~dfsg-1 | - +- all | libpuma-doc | 1:1.1+svn20120529-2 | - +! all | libpurple-bin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | libpurple-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +- all | libqalculate-doc | 0.9.7-8 | - +- all | libqalculate5-data | 0.9.7-8 | - +- all | libqca2-doc | 2.0.3-4 | - +- all | libqdjango-doc | 0.2.5-2 | - +- all | libqdox-java | 1.12-1 | - +- all | libqdox-java-doc | 1.12-1 | - +- all | libqglviewer-dev-common | 2.3.4-4.2 | - +- all | libqhull-doc | 2009.1-3 | - +- all | libqjson0-dbg | 0.7.1-7 | - +- all | libqof-doc | 0.8.6-1 | - +- all | libqofexpensesobjects-data | 0.1.9-2 | - +- all | libqofexpensesobjects-doc | 0.1.9-2 | - +- all | libqscintilla2-dev | 2.6.2-2 | - +- all | libqscintilla2-doc | 2.6.2-2 | - +- all | libqt4-ruby | 4:4.8.4-1 | - +- all | libqt4-ruby1.8 | 4:4.8.4-1 | - +- all | libqtscript4-doc | 0.2.0-1 | - +- all | libquantum-entanglement-perl | 0.32-2 | - +- all | libquantum-superpositions-perl | 2.02-2 | - +- all | libquartz-java | 1:1.7.3-3 | - +- all | libquartz-java-doc | 1:1.7.3-3 | - +- all | libquicktime-doc | 2:1.2.4-3 | - +- all | libquvi-doc | 0.4.1-1 | - +- all | libquvi-scripts | 0.4.19-1~deb7u1 | - +- all | libqwt-doc | 6.0.0-1.2 | - +- all | libqwt5-doc | 5.2.2-3 | - +- all | libqwtplot3d-doc | 0.2.7+svn191-7 | - +- all | libqxmlrpc-doc | 0.0.svn6-2 | - +! all | libqxmpp-doc | 0.4.92-1 | 0.7.6-1~bpo70+1 +- all | libqxt-doc | 0.6.1-6 | - +- all | librack-ruby | 1.4.1-2.1 | - +- all | librack-ruby1.8 | 1.4.1-2.1 | - +- all | librack-ruby1.9.1 | 1.4.1-2.1 | - +- all | libramaze-ruby | 2010.06.18-2 | - +- all | libramaze-ruby1.8 | 2010.06.18-2 | - +- all | libramaze-ruby1.9.1 | 2010.06.18-2 | - +- all | libraptor1-doc | 1.4.21-7.1 | - +- all | libraptor2-doc | 2.0.8-2 | - +- all | libraspell-ruby | 1.2-2 | - +- all | librasqal3-doc | 0.9.29-1 | - +- all | libraul-doc | 0.8.0+dfsg0-0.1 | - +- all | libraw-doc | 0.14.6-2 | - +- all | libraw1394-doc | 2.0.9-1 | - +- all | librb-inotify-ruby | 0.8.8-2 | - +- all | librb-inotify-ruby1.8 | 0.8.8-2 | - +- all | librb-inotify-ruby1.9.1 | 0.8.8-2 | - +- all | librcs-perl | 1.05-4 | - +- all | librd-html-ext-ruby1.8 | 0.6.34-4 | - +- all | librd-ruby1.8 | 0.6.34-4 | - +- all | librdf-acl-perl | 0.102-1 | - +- all | librdf-closure-perl | 0.001-1 | - +- all | librdf-crypt-perl | 0.002-2 | - +- all | librdf-endpoint-perl | 0.05-1 | - +- all | librdf-generator-void-perl | 0.04-1 | - +- all | librdf-helper-perl | 2.0-1 | - +- all | librdf-helper-properties-perl | 0.10-1 | - +- all | librdf-icalendar-perl | 0.003-1 | - +- all | librdf-kml-exporter-perl | 0.003-1 | - +- all | librdf-linkeddata-perl | 0.56-1 | - +- all | librdf-ns-perl | 20120521-1 | - +- all | librdf-prefixes-perl | 0.003-1 | - +- all | librdf-query-client-perl | 0.110-1 | - +- all | librdf-query-perl | 2.908-1 | - +- all | librdf-rdfa-generator-perl | 0.102-1 | - +- all | librdf-rdfa-parser-perl | 1.097-1 | - +- all | librdf-trin3-perl | 0.136-1 | - +- all | librdf-trine-node-literal-xml-perl | 0.16-1 | - +- all | librdf-trine-perl | 1.000-1 | - +- all | librdf-trineshortcuts-perl | 0.104-1 | - +- all | librdf-trinex-functions-perl | 0.002-1 | - +- all | librdf-vcard-perl | 0.010-1 | - +- all | libreadline-java-doc | 0.8.0.1+dfsg-2 | - +- all | libreadonly-perl | 1.03-4 | - +- all | librecad-data | 1.0.2+nolibs-1 | - +- all | libred5-java | 1.0~svn4374-1 | - +- all | libredcloth-ruby | 4.2.9-2 | - +- all | libredcloth-ruby-doc | 4.2.9-2 | - +- all | libredcloth-ruby1.8 | 4.2.9-2 | - +- all | libredcloth-ruby1.9.1 | 4.2.9-2 | - +- all | libredis-perl | 2:1.9510-2 | - +- all | libregexp-assemble-perl | 0.35-7 | - +- all | libregexp-common-email-address-perl | 1.01-4 | - +- all | libregexp-common-net-cidr-perl | 0.02-1 | - +- all | libregexp-common-perl | 2011121001-1 | - +- all | libregexp-common-time-perl | 0.04-1 | - +- all | libregexp-grammars-perl | 1.016-1 | - +- all | libregexp-ipv6-perl | 0.03-1 | - +- all | libregexp-java | 1.5-3 | - +- all | libregexp-java-doc | 1.5-3 | - +- all | libregexp-optimizer-perl | 0.15-3 | - +- all | libregexp-reggrp-perl | 1.002001-1 | - +- all | libregexp-shellish-perl | 0.93-1.1 | - +- all | librelative-perl | 0.04-1 | - +- all | librelaxng-datatype-java | 1.0+ds1-1 | - +! all | libreoffice-common | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-dev-doc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- all | libreoffice-dmaths | 3.4+dfsg1-1 | - +! all | libreoffice-emailmerge | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- all | libreoffice-filter-mobiledev | 1:3.5.4+dfsg2-0+deb7u2 | - +! all | libreoffice-help-ca | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-cs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-da | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-de | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-dz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-el | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-en-gb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-en-us | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-es | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-et | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-eu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-fi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-fr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-gl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-hi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-hu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-it | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ja | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-km | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ko | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-nl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-om | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pt-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ru | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 ++ all | libreoffice-help-tr | - | 1:4.1.4-2~bpo70+1 ++ all | libreoffice-help-vi | - | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-zh-cn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-zh-tw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-java-common | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-af | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ar | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-as | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ast | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-be | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ca | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-cs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-cy | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-da | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-de | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-dz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-el | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-en-gb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-en-za | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-eo | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-es | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-et | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-eu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fa | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ga | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-gl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-gu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-he | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-id | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-in | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-is | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-it | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ja | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ka | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 ++ all | libreoffice-l10n-kk | - | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-km | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ko | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ku | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-lt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-lv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ml | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ne | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nso | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-oc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-om | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-or | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pa-in | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pt-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ro | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ru | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-rw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-si | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ss | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-st | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ta | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-te | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-th | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ts | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ug | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-uk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-uz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ve | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-vi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-xh | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-za | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zh-cn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zh-tw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 ++ all | libreoffice-librelogo | - | 1:4.1.4-2~bpo70+1 +- all | libreoffice-lightproof-en | 0.4.2+1.5~b3-3 | - +- all | libreoffice-lightproof-hu | 1.4.3+1.5~b3-3 | - +- all | libreoffice-lightproof-ru-ru | 0.3.1+1.5~b3-3 | - +- all | libreoffice-nlpsolver | 0.9~beta1-9 | - ++ all | libreoffice-presenter-console | - | 1:4.1.4-2~bpo70+1 +! all | libreoffice-report-builder | 1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-bsh | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-js | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-python | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-crystal | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-galaxy | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-hicontrast | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-oxygen | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-tango | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 ++ all | libreoffice-subsequentcheckbase | - | 1:4.1.4-2~bpo70+1 +! all | libreoffice-wiki-publisher | 1.1.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.1.2+LibO4.1.4-2~bpo70+1 +- all | libreoffice-writer2latex | 1.0.2-8 | - +- all | libreoffice-writer2xhtml | 1.0.2-8 | - +- all | libreoffice-zemberek | 1.0~rc2-10.4 | - +- all | librepository-java | 1.1.6-2 | - +- all | librepository-java-doc | 1.1.6-2 | - +- all | librest-application-perl | 0.992-2 | - +- all | librest-doc | 0.7.12-3 | - +- all | librestclient-ruby | 1.6.7-3 | - +- all | librestclient-ruby1.8 | 1.6.7-3 | - +- all | libreturn-value-perl | 1.666001-1 | - +- all | librevolution-ruby | 0.5-8 | - +- all | librevolution-ruby1.8 | 0.5-8 | - +- all | librfilter-ruby1.8 | 0.12-2 | - +- all | librg-reprof-bundle-perl | 1.0.1-1 | - +- all | librg-utils-perl | 1.0.43-1 | - +- all | librhash-cil-dev | 1.2.9-8+deb7u1 | - +- all | librhash-cil-doc | 1.2.9-8+deb7u1 | - +- all | librhash-java-doc | 1.2.9-8+deb7u1 | - +- all | librhash-ruby | 1.2.9-8+deb7u1 | - +- all | librhash-ruby1.8 | 1.2.9-8+deb7u1 | - +- all | librhash1.0-cil | 1.2.9-8+deb7u1 | - +- all | librhino-java | 1.7R3-5 | - +- all | librhino-java-doc | 1.7R3-5 | - +- all | librivescript-perl | 1.26-1 | - +- all | librmagick-ruby | 2.13.1-6 | - +- all | librmagick-ruby-doc | 2.13.1-6 | - +- all | librmagick-ruby1.8 | 2.13.1-6 | - +- all | librmail-ruby-doc | 1.0.0-1 | - +- all | librmail-ruby1.8 | 1.0.0-1 | - +- all | librobert-hooke-clojure | 1.1.2-1 | - +- all | librobust-http-client-java | 1.2-2 | - +- all | librobust-http-client-java-doc | 1.2-2 | - +- all | librole-hasmessage-perl | 0.005-1 | - +- all | librole-identifiable-perl | 0.005-1 | - +- all | librole-tiny-perl | 1.001003-1 | - +- all | libroman-perl | 1.23-1 | - +- all | libromana-perligata-perl | 0.55-1 | - +- all | librome-java | 1.0-3 | - +- all | librome-java-doc | 1.0-3 | - +- all | libromkan-ruby | 0.4-9 | - +- all | libromkan-ruby1.8 | 0.4-9 | - +- all | libropkg-perl | 0.4-1 | - +- all | librose-datetime-perl | 0.537-1 | - +- all | librose-db-object-perl | 1:0.798-1 | - +- all | librose-db-perl | 0.769-1 | - +- all | librose-object-perl | 0.859-1 | - +- all | librose-uri-perl | 1.00-1 | - +- all | librostlab-blast-doc | 1.0.0-2 | - +- all | librostlab-doc | 1.0.20-1 | - +- all | librouter-simple-perl | 0.09-1 | - +- all | librpc-xml-perl | 0.76-3 | - +- all | librplay-perl | 3.3.2-14 | - +- all | librqrcode-ruby | 0.4.2-1 | - +- all | librqrcode-ruby-doc | 0.4.2-1 | - +- all | librqrcode-ruby1.8 | 0.4.2-1 | - +- all | librqrcode-ruby1.9 | 0.4.2-1 | - +- all | librrd-ruby | 1.4.7-2 | - +- all | librrdp-perl | 1.4.7-2 | - +- all | librrdtool-oo-perl | 0.32-1 | - +- all | librsl-doc | 1.42-2 | - +- all | librspec-ruby | 2.10.0-2 | - +- all | librspec-ruby1.8 | 2.10.0-2 | - +- all | librspec-ruby1.9.1 | 2.10.0-2 | - +- all | librsvg2-2.0-cil-dev | 2.26.0-8 | - +- all | librsvg2-2.18-cil | 2.26.0-8 | - +- all | librsvg2-doc | 2.36.1-2 | - +- all | librsvg2-ruby | 1.1.3-2 | - +- all | librsvg2-ruby1.8 | 1.1.3-2 | - +- all | librsvg2-ruby1.8-dbg | 1.1.3-2 | - +- all | librsyntaxtextarea-java | 1.5.1-2 | - +- all | librsyntaxtextarea-java-doc | 1.5.1-2 | - +- all | librt-client-rest-perl | 1:0.43-1 | - +- all | librt-ruby1.8 | 1.0.3-2 | - +- all | librtf-document-perl | 0.64-10 | - +- all | librtf-writer-perl | 1.11-2 | - +- all | libruby | 1:1.9.3 | - +- all | libruby2ruby-ruby | 1.3.1-1.1 | - +- all | libruby2ruby-ruby1.8 | 1.3.1-1.1 | - +- all | librunapp-perl | 0.13-1 | - +- all | libsac-java | 1.3-6 | - +- all | libsac-java-doc | 1.3-6 | - +- all | libsam-java | 1.46-1 | - +- all | libsamizdat-ruby | 0.7.0-1 | - +- all | libsamizdat-ruby1.8 | 0.7.0-1 | - +! all | libsaml2-doc | 2.4.3-4 | 2.5.3-2~bpo70+1 +- all | libsaxon-java | 1:6.5.5-8 | - +- all | libsaxon-java-doc | 1:6.5.5-8 | - +- all | libsaxonb-java | 9.1.0.8-1 | - +- all | libsaxonb-java-doc | 9.1.0.8-1 | - +- all | libsbuild-doc | 1.6.4-4 | - +- all | libsbuild-perl | 0.63.2-1.1 | - +- all | libsc-data | 2.3.1-14 | - +- all | libsc-doc | 2.3.1-14 | - +- all | libscalar-defer-perl | 0.23-1 | - +- all | libscalar-properties-perl | 0.13-1 | - +- all | libschedule-at-perl | 1.15-1 | - +- all | libschedule-cron-perl | 0.99-1 | - +- all | libschedule-ratelimiter-perl | 0.01-1 | - +- all | libschroedinger-doc | 1.0.11-2 | - +- all | libscirenderer-java | 0.4.9-1 | - +- all | libscirenderer-java-doc | 0.4.9-1 | - +- all | libscope-guard-perl | 0.20-1 | - +- all | libscriptalicious-perl | 1.16-1 | - +- all | libscythestat-dev | 1.0.2-1 | - +- all | libsdl-gfx1.2-doc | 2.0.23-3 | - +- all | libsdl-image-gst | 3.2.4-2 | - +- all | libsdl-mixer-gst | 3.2.4-2 | - +- all | libsdl-ruby | 2.1.2-3 | - +- all | libsdl-ruby1.8 | 2.1.2-3 | - +- all | libsdl-ruby1.9.1 | 2.1.2-3 | - +- all | libsdl-sound-gst | 3.2.4-2 | - +- all | libsdl-ttf-gst | 3.2.4-2 | - +- all | libsdo-api-java | 1.1.1-1 | - +- all | libsdo-api-java-doc | 1.1.1-1 | - +- all | libsearch-estraier-perl | 0.09-5 | - +- all | libsearch-gin-perl | 0.08-1 | - +- all | libsearch-queryparser-perl | 0.94-1 | - +- all | libsegment-java | 1.3.5~svn57+dfsg-1.1 | - +- all | libselinux-ruby1.8 | 2.1.9-5 | - +- all | libsemanage-common | 2.1.6-6 | - +- all | libsemanage-ruby1.8 | 2.1.6-6 | - +- all | libsemweb1.0-cil | 1.05+dfsg-5 | - +- all | libsendmail-pmilter-perl | 1.00-1 | - +- all | libsequel-ruby | 3.36.1-1 | - +- all | libsequel-ruby1.8 | 3.36.1-1 | - +- all | libsequel-ruby1.9.1 | 3.36.1-1 | - +- all | libserd-doc | 0.14.0~dfsg0-2 | - +- all | libserializer-java | 1.1.6-4 | - +- all | libserialport-ruby | 1.1.0-1 | - +- all | libserialport-ruby1.8 | 1.1.0-1 | - +- all | libserp-java | 1.14.1-1 | - +- all | libserp-java-doc | 1.14.1-1 | - ++ all | libserver-starter-perl | - | 0.15-1~bpo70+1 +- all | libservice-wrapper-java | 3.5.3+repack-0+nmu1 | - +- all | libservlet2.4-java | 6.0.35-6+deb7u1 | - +- all | libservlet2.5-java | 6.0.35-6+deb7u1 | - +- all | libservlet2.5-java-doc | 6.0.35-6+deb7u1 | - +- all | libservlet3.0-java | 7.0.28-4 | - +- all | libservlet3.0-java-doc | 7.0.28-4 | - +- all | libset-crontab-perl | 1.02-1 | - +- all | libset-infinite-perl | 0.63-1 | - +- all | libset-intspan-perl | 1.16-1 | - +- all | libset-nestedgroups-perl | 0.01-2 | - +- all | libset-scalar-perl | 1.25-1 | - +- all | libsetools-java | 3.3.7-3 | - +- all | libsetup-ruby1.8 | 3.4.1-5 | - +- all | libsexp-processor-ruby | 3.0.7-1 | - +- all | libsexp-processor-ruby1.8 | 3.0.7-1 | - +- all | libsexp-processor-ruby1.9.1 | 3.0.7-1 | - +- all | libsexy-doc | 0.1.11-2 | - +- all | libsezpoz-java | 1.9-2 | - +- all | libsezpoz-java-doc | 1.9-2 | - +- all | libsfml-doc | 1.6+dfsg2-2 | - +- all | libsgmls-perl | 1.03ii-32 | - +- all | libshadow-ruby1.8 | 2.1.4-2 | - +- all | libshell-command-perl | 0.06-3 | - +- all | libshell-perl | 0.72.01-1 | - +- all | libshell-perl-perl | 0.0022-1 | - +- all | libshell-posix-select-perl | 0.05-2 | - +- all | libshevek-doc | 1.3-1 | - +- all | libshibsp-doc | 2.4.3+dfsg-5 | - +- all | libshoulda-ruby | 3.0.0~beta2-1 | - +- all | libshoulda-ruby1.8 | 3.0.0~beta2-1 | - +- all | libsidl1.4.0-java | 1.4.0.dfsg-8.1 | - +- all | libsidplayfp-doc | 0.3.5-1 | - +- all | libsigc++-2.0-doc | 2.2.10-0.2 | - +- all | libsikuli-script-doc | 1.0~x~rc3.tesseract3-dfsg1-5 | - +- all | libsikuli-script-java | 1.0~x~rc3.tesseract3-dfsg1-5 | - +- all | libsilly-doc | 0.1.0-3 | - +- all | libsimple-validation-java | 0.4-3 | - +- all | libsimple-xml-java | 2.3.2-1 | - +- all | libsimple-xml-java-doc | 2.3.2-1 | - +- all | libsinatra-ruby | 1.3.2-2 | - +- all | libsinatra-ruby-doc | 1.3.2-2 | - +- all | libsinatra-ruby1.8 | 1.3.2-2 | - +- all | libsinatra-ruby1.9.1 | 1.3.2-2 | - ++ all | libsipxtapi-doc | - | 3.3.0~test12-2~bpo70+1 +- all | libsisu-guice-java | 3.1.1-1 | - +- all | libsisu-ioc-java | 2.3.0-3 | - +- all | libsitemesh-java | 2.4.1+dfsg-2 | - +- all | libsitemesh-java-doc | 2.4.1+dfsg-2 | - +- all | libskinlf-java | 6.7-8 | - +- all | libskinlf-java-demo | 6.7-8 | - +- all | libskk-common | 0.0.12-3 | - +- all | libslf4j-java | 1.6.5-1 | - +- all | libsm-doc | 2:1.2.1-2 | - +- all | libsmart-comments-perl | 1.0.4-1 | - +- all | libsmbios-doc | 2.0.3.dfsg-1.1 | - +- all | libsmi2-common | 0.4.8+dfsg2-7 | - +- all | libsms-send-perl | 1.06-1 | - +- all | libsnack2-doc | 2.2.10-dfsg1-12.1 | - +- all | libsnappy-java | 1.0.4.1~dfsg-1 | - +- all | libsnmp-base | 5.4.3~dfsg-2.7 | - +- all | libsnmp-extension-passpersist-perl | 0.06-1 | - +- all | libsnmp-info-perl | 2.06-1 | - +- all | libsnmp-mib-compiler-perl | 0.06-2 | - +- all | libsnmp-multi-perl | 2.1-4 | - +- all | libsnmp-ruby | 1.0.2-1 | - +- all | libsnmp-ruby1.8 | 1.0.2-1 | - +- all | libsnmp-session-perl | 1.13-1 | - +- all | libsnowball-norwegian-perl | 1.2-1 | - +- all | libsnowball-swedish-perl | 1.2-3 | - +- all | libsoap-lite-perl | 0.714-1 | - +- all | libsoap-wsdl-perl | 2.00.10-1 | - +- all | libsocialtext-resting-perl | 0.38-1 | - +- all | libsocialtext-resting-utils-perl | 0.21-2 | - +- all | libsocialweb-client-doc | 0.25.20-2.1 | - +- all | libsocialweb-common | 0.25.20-2.1 | - +- all | libsocialweb-doc | 0.25.20-2.1 | - +- all | libsoftware-license-perl | 0.103004-2 | - +- all | libsoftware-release-perl | 0.02-1 | - +- all | libsolr-java | 3.6.0+dfsg-1 | - +- all | libsoprano-doc | 2.7.6+dfsg.1-2wheezy1 | - +- all | libsoprano-ruby | 4:4.8.4-1 | - +- all | libsoprano-ruby1.8 | 4:4.8.4-1 | - +- all | libsord-doc | 0.8.0~dfsg0-1 | - +- all | libsort-fields-perl | 0.90-2 | - +- all | libsort-naturally-perl | 1.02-1 | - +- all | libsort-versions-perl | 1.5-4 | - +- all | libsoup2.4-doc | 2.38.1-2 | - +- all | libsource-highlight-common | 3.1.6-1.1 | - +- all | libspandsp-doc | 0.0.6~pre20-3.1 | - +- all | libspark-java | 1.2-2 | - +- all | libspark-java-doc | 1.2-2 | - +- all | libsparkline-php | 0.2-5 | - +- all | libsparsehash-dev | 1.10-1 | - +- all | libsphinx-search-perl | 1:0.27.2-2 | - +! all | libspice-protocol-dev | 0.10.1-1 | 0.12.6-1~bpo70+2 +- all | libspiffy-perl | 0.30-1 | - +- all | libspin-java | 1.5+dfsg-5 | - +- all | libspin-java-doc | 1.5+dfsg-5 | - +- all | libspoon-perl | 0.24-2 | - +- all | libspork-perl | 0.20-2 | - +- all | libspreadsheet-parseexcel-perl | 0.5800-1 | - +- all | libspreadsheet-parseexcel-simple-perl | 1.04-2 | - +- all | libspreadsheet-read-perl | 0.41-1 | - +- all | libspreadsheet-ruby | 0.7.3-1 | - +- all | libspreadsheet-ruby-doc | 0.7.3-1 | - +- all | libspreadsheet-ruby1.8 | 0.7.3-1 | - +- all | libspreadsheet-ruby1.9.1 | 0.7.3-1 | - +- all | libspreadsheet-writeexcel-perl | 2.37-1 | - +- all | libspreadsheet-xlsx-perl | 0.13-1 | - +- all | libspring-aop-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-beans-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-build-java | 2.7.0-2 | - +- all | libspring-context-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-context-support-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-core-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-expression-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-instrument-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-jdbc-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-jms-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-js-2.0-java | 2.0.9.RELEASE-4 | - +- all | libspring-ldap-java | 1.3.1.RELEASE-4 | - +- all | libspring-ldap-java-doc | 1.3.1.RELEASE-4 | - +- all | libspring-orm-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-oxm-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-security-2.0-java-doc | 2.0.7.RELEASE-1 | - +- all | libspring-security-acl-2.0-java | 2.0.7.RELEASE-1 | - +- all | libspring-security-core-2.0-java | 2.0.7.RELEASE-1 | - +- all | libspring-security-ntlm-2.0-java | 2.0.7.RELEASE-1 | - +- all | libspring-security-portlet-2.0-java | 2.0.7.RELEASE-1 | - +- all | libspring-security-taglibs-2.0-java | 2.0.7.RELEASE-1 | - +- all | libspring-test-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-transaction-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-web-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-web-portlet-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-web-servlet-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-web-struts-java | 3.0.6.RELEASE-6+deb7u1 | - +- all | libspring-webflow-2.0-java | 2.0.9.RELEASE-4 | - +- all | libspring-webflow-2.0-java-doc | 2.0.9.RELEASE-4 | - +- all | libsprng2-doc | 2.0a-8 | - +- all | libsql-abstract-limit-perl | 2:0.14.1-3 | - +- all | libsql-abstract-perl | 1.72-1 | - +- all | libsql-reservedwords-perl | 0.7-1 | - +- all | libsql-statement-perl | 1.33-1 | - +- all | libsql-translator-perl | 0.11011-1 | - +- all | libsqlite3-ruby | 1.3.6-2 | - +- all | libsqlite3-ruby1.8 | 1.3.6-2 | - +- all | libsqlite3-ruby1.9.1 | 1.3.6-2 | - +- all | libsratom-doc | 0.2.0~dfsg0-1 | - +- all | libsru-perl | 0.99-1 | - +- all | libssh-doc | 0.5.4-1 | - +- all | libssl-doc | 1.0.1e-2+deb7u4 | - +- all | libssreflect-coq | 1.3pl4-1 | - +- all | libstapler-adjunct-codemirror-java | 1.1-1 | - +- all | libstapler-adjunct-timeline-java | 1.3+dfsg-1 | - +- all | libstapler-adjunct-timeline-java-doc | 1.3+dfsg-1 | - +- all | libstapler-java | 1.182-1 | - +- all | libstapler-java-doc | 1.182-1 | - +- all | libstarlink-ast-doc | 7.0.4+dfsg-1 | - +- all | libstarlink-pal-doc | 0.1.0-1 | - +- all | libstat-lsmode-perl | 0.50-6 | - +- all | libstatistics-basic-perl | 1.6607-1 | - +- all | libstatistics-descriptive-perl | 3.0603-1 | - +- all | libstatistics-distributions-perl | 1.02-1 | - +- all | libstatistics-online-perl | 0.02-1 | - +- all | libstatistics-r-perl | 0.24-1 | - +- all | libstatistics-test-randomwalk-perl | 0.02-1 | - +- all | libstatistics-test-sequence-perl | 0.01-1 | - +- all | libstax-java | 1.2.0-3 | - +- all | libstax-java-doc | 1.2.0-3 | - +- all | libstax2-api-java | 3.1.1-1 | - +- all | libstaxutils-java | 20110309+svn238-1 | - +- all | libstaxutils-java-doc | 20110309+svn238-1 | - +- all | libstdc++6-4.4-doc | 4.4.7-2 | - +- all | libstdc++6-4.6-doc | 4.6.3-14 | - +- all | libstdc++6-4.7-doc | 4.7.2-5 | - +- all | libstfl-ruby | 0.22-1 | - +- all | libstomp-ruby | 1.2.2-2 | - +- all | libstomp-ruby-doc | 1.2.2-2 | - +- all | libstomp-ruby1.8 | 1.2.2-2 | - +- all | libstomp-ruby1.9.1 | 1.2.2-2 | - +- all | libstrictures-perl | 1.003001-1 | - +- all | libstring-bufferstack-perl | 1.15-1 | - +- all | libstring-camelcase-perl | 0.02-1 | - +- all | libstring-dirify-perl | 1.02-1 | - +- all | libstring-errf-perl | 0.006-3 | - +- all | libstring-escape-perl | 2010.002-1 | - +- all | libstring-flogger-perl | 1.101242-1 | - +- all | libstring-format-perl | 1.16-1 | - +- all | libstring-formatter-perl | 0.102082-1 | - +- all | libstring-glob-permute-perl | 0.01-1 | - +- all | libstring-koremutake-perl | 0.30-3 | - +- all | libstring-mkpasswd-perl | 0.03-1 | - +- all | libstring-parity-perl | 1.31-1 | - +- all | libstring-random-perl | 1:0.22-3 | - +- all | libstring-rewriteprefix-perl | 0.006-1 | - +- all | libstring-shellquote-perl | 1.03-1 | - +- all | libstring-toidentifier-en-perl | 0.07-1 | - +- all | libstring-tokenizer-perl | 0.05-1 | - +- all | libstring-truncate-perl | 1.100600-1 | - +- all | libstringtemplate-java | 3.2.1-1 | - +- all | libstruct-compare-perl | 1.0.1-3 | - +- all | libstruts1.2-java | 1.2.9-5 | - +- all | libstxxl-doc | 1.3.1-4 | - +- all | libstylebook-java | 1.0~b3~svn20061109-6 | - +- all | libsub-delete-perl | 1.00002-1 | - +- all | libsub-exporter-formethods-perl | 0.091970-1 | - +- all | libsub-exporter-globexporter-perl | 0.002-1 | - +- all | libsub-exporter-perl | 0.984-1 | - +- all | libsub-install-perl | 0.926-1 | - +- all | libsub-override-perl | 0.08-4 | - +- all | libsub-uplevel-perl | 0.2400-1 | - +- all | libsub-wrappackages-perl | 2.0-1 | - +- all | libsublib-cil | 0.9-4 | - +- all | libsubtitles-perl | 1.04-1 | - +- all | libsubunit-perl | 0.0.8+bzr176-1 | - +- all | libsugarext-data | 0.96.1-2 | - +- all | libsuikyo-ruby1.8 | 2.1.0-3 | - +- all | libsuitesparse-doc | 1:3.4.0-3 | - +! all | libsunflow-java | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | libsunflow-java-doc | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +- all | libsuper-perl | 1.17-1 | - +- all | libsurefire-java | 2.10-4 | - +- all | libsvg-graph-perl | 0.02-2 | - +- all | libsvg-graph-ruby | 1.0.5-1 | - +- all | libsvg-graph-ruby-doc | 1.0.5-1 | - +- all | libsvg-graph-ruby1.8 | 1.0.5-1 | - +- all | libsvg-graph-ruby1.9.1 | 1.0.5-1 | - +- all | libsvg-perl | 2.52-1 | - +- all | libsvg-tt-graph-perl | 0.21-1 | - +- all | libsvgsalamander-java | 0~svn95-1 | - +- all | libsvgsalamander-java-doc | 0~svn95-1 | - +- all | libsvm-java | 3.12-1 | - +- all | libsvm3-java | 3.12-1 | - +- all | libsvn-class-perl | 0.17-1 | - +- all | libsvn-doc | 1.6.17dfsg-4+deb7u4 | - +- all | libsvn-dump-perl | 0.05-1 | - +- all | libsvn-hooks-perl | 1.19-1 | - +- all | libsvn-look-perl | 0.38-1 | - +- all | libsvn-notify-mirror-perl | 0.03800-2 | - +- all | libsvn-notify-perl | 2.81-1 | - +- all | libsvn-ruby | 1.6.17dfsg-4+deb7u4 | - +- all | libsvn-svnlook-perl | 0.04-2 | - +- all | libsvn-web-perl | 0.53-4 | - +- all | libsvnclientadapter-java | 0.9.100-2 | - +- all | libsvnclientadapter-java-doc | 0.9.100-2 | - +- all | libsvnkit-java | 1.3.5+dfsg-4 | - +- all | libsvnkit-java-doc | 1.3.5+dfsg-4 | - +- all | libswarmcache-java | 1.0RC2+cvs20071027-6 | - +- all | libswe-doc | 1.77.00.0005-2 | - +- all | libswing-layout-java | 1.0.4-2 | - +- all | libswing-layout-java-doc | 1.0.4-2 | - +- all | libswingx-java | 1:1.6.2-1 | - +- all | libswingx-java-doc | 1:1.6.2-1 | - +- all | libswingx1-java | 1:1.0-1 | - +- all | libswingx1-java-doc | 1:1.0-1 | - +- all | libswish-api-common-perl | 0.03-2 | - +- all | libswiss-perl | 1.67-1 | - +- all | libswitch-perl | 2.16-2 | - +- all | libsword-common | 1.6.2+dfsg-5 | - +- all | libswscale-extra-2 | 6:0.8.9-1 | - +- all | libswtcalendar-java | 0.5-1 | - +- all | libswtchart-java | 0.8.0-1 | - +- all | libswtchart-java-doc | 0.8.0-1 | - +- all | libsyncml-doc | 0.5.4-2.1 | - +- all | libsyntax-highlight-engine-kate-perl | 0.05+dfsg-1 | - +- all | libsyntax-highlight-engine-simple-languages-perl | 1 | - +- all | libsyntax-highlight-engine-simple-perl | 0.09-1 | - +- all | libsyntax-highlight-perl-improved-perl | 1.01-3 | - +- all | libsyntax-keyword-gather-perl | 1.001000-1 | - +- all | libsyntax-perl | 0.004-1 | - +- all | libsys-filesystem-perl | 1.28-1 | - +- all | libsys-hostname-long-perl | 1.4-2 | - +- all | libsys-sigaction-perl | 0.13-1 | - +- all | libsys-statistics-linux-perl | 0.66-1 | - +- all | libsys-syscall-perl | 0.23-1 | - +- all | libsysactivity-doc | 0.6.4-1 | - +- all | libsysadm-install-perl | 0.39-1 | - +- all | libsystem-command-perl | 1.07-1 | - +- all | libsystemu-ruby | 2.5.1-1 | - +- all | libsystemu-ruby-doc | 2.5.1-1 | - +- all | libsystemu-ruby1.8 | 2.5.1-1 | - +- all | libsystemu-ruby1.9.1 | 2.5.1-1 | - +- all | libt1-doc | 5.1.2-3.6 | - +- all | libtablelayout-java | 20090826-2 | - +- all | libtacacs+1-dev | 4.0.4.19-11 | - +! all | libtag1-doc | 1.7.2-1 | 1.9.1-2~bpo70+1 +- all | libtaglib-cil-dev | 2.0.4.0-1 | - +- all | libtaglib2.0-cil | 2.0.4.0-1 | - +- all | libtaktuk-perl | 3.7.4-1 | - +- all | libtango7-doc | 7.2.6+dfsg-14 | - +- all | libtangram-perl | 2.10-1.1 | - +- all | libtaoframework-devil-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-devil1.6-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-ffmpeg-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-ffmpeg0.4-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-freeglut-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-freeglut2.4-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-freetype-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-freetype2.3-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-ftgl-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-ftgl2.1-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-lua-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-lua5.1-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-ode-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-ode0.9-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-openal-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-openal1.1-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-opengl-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-opengl3.0-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-physfs-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-physfs1.0-cil | 2.1.svn20090801-9 | - +- all | libtaoframework-sdl-cil-dev | 2.1.svn20090801-9 | - +- all | libtaoframework-sdl1.2-cil | 2.1.svn20090801-9 | - +- all | libtap-formatter-html-perl | 0.09+dfsg-1 | - +- all | libtap-formatter-junit-perl | 0.09-1 | - +- all | libtap-harness-archive-perl | 0.14-1 | - +- all | libtap-parser-sourcehandler-pgtap-perl | 3.27-2 | - +- all | libtask-weaken-perl | 1.03-1 | - +- all | libtbb-doc | 4.0+r233-1 | - +- all | libtcltk-ruby | 1:1.9.3 | - +- all | libtelepathy-farstream-doc | 0.4.0-3 | - +- all | libtelepathy-glib-doc | 0.18.2-2 | - +- all | libtelepathy-logger-doc | 0.4.0-1 | - +- all | libtelepathy-qt4-doc | 0.9.1-4 | - +- all | libtemplate-alloy-perl | 1.016-1 | - +- all | libtemplate-declare-perl | 0.45-1 | - +- all | libtemplate-multilingual-perl | 1.00-1 | - +- all | libtemplate-perl-doc | 2.24-1 | - +- all | libtemplate-plugin-calendar-simple-perl | 0.02-3 | - +- all | libtemplate-plugin-class-perl | 0.13-3 | - +- all | libtemplate-plugin-clickable-email-perl | 0.01-1 | - +- all | libtemplate-plugin-clickable-perl | 0.06-2 | - +- all | libtemplate-plugin-comma-perl | 0.04-1 | - +- all | libtemplate-plugin-cycle-perl | 1.06-1 | - +- all | libtemplate-plugin-datetime-format-perl | 0.02-1 | - +- all | libtemplate-plugin-dbi-perl | 2.65-2 | - +- all | libtemplate-plugin-gd-perl | 2.66-2 | - +- all | libtemplate-plugin-gravatar-perl | 0.05-1 | - +- all | libtemplate-plugin-javascript-perl | 0.02-1 | - +- all | libtemplate-plugin-json-escape-perl | 0.2-1 | - +- all | libtemplate-plugin-latex-perl | 3.02-1 | - +- all | libtemplate-plugin-number-format-perl | 1.02-1 | - +- all | libtemplate-plugin-textile2-perl | 1.21-3 | - +- all | libtemplate-plugin-utf8decode-perl | 0.01-1 | - +- all | libtemplate-plugin-xml-perl | 2.17-3 | - +- all | libtemplate-plugin-yaml-perl | 1.23-1 | - +- all | libtemplate-provider-encoding-perl | 0.10-2 | - +- all | libtemplate-provider-fromdata-perl | 0.12-1 | - +- all | libtemplate-timer-perl | 1.00-2 | - +- all | libtemplate-tiny-perl | 1.12-1 | - +- all | libtemplates-parser-doc | 11.6-2 | - +- all | libtenjin-perl | 0.070001-1 | - +- all | libterm-ansicolor-ruby | 1.0.7-1 | - +- all | libterm-ansicolor-ruby1.8 | 1.0.7-1 | - +- all | libterm-encoding-perl | 0.02-1 | - +- all | libterm-filter-perl | 0.03-1 | - +- all | libterm-progressbar-perl | 2.13-1 | - +- all | libterm-prompt-perl | 1.04-1 | - +- all | libterm-query-perl | 2.0-9 | - +- all | libterm-readline-perl-perl | 1.0303-1 | - +- all | libterm-readline-zoid-perl | 0.07-2 | - +- all | libterm-readpassword-perl | 0.11-2 | - +- all | libterm-shell-perl | 0.02-3 | - +- all | libterm-shellui-perl | 0.92-1 | - +- all | libterm-size-any-perl | 0.001-1 | - +- all | libterm-sk-perl | 0.11-1 | - +- all | libterm-ttyrec-plus-perl | 0.09-1 | - +- all | libterm-twiddle-perl | 2.71-1 | - +- all | libterm-visual-perl | 0.08-2 | - +- all | libterm-vt102-perl | 0.91-1 | - +- all | libtermios-ruby | 0.9.6-2 | - +- all | libtermios-ruby1.8 | 0.9.6-2 | - +- all | libterralib-doc | 4.0.0-4 | - +- all | libtest-aggregate-perl | 0.364-1 | - +- all | libtest-apocalypse-perl | 0.05-1 | - +- all | libtest-assertions-perl | 1.054-2 | - +- all | libtest-autoloader-perl | 0.03-1 | - +- all | libtest-base-perl | 0.60-1 | - +- all | libtest-bdd-cucumber-perl | 0.11-1 | - +- all | libtest-block-perl | 0.13-1 | - +- all | libtest-carp-perl | 0.2-1 | - +- all | libtest-cgi-multipart-perl | 0.0.3-1 | - +- all | libtest-checkchanges-perl | 0.14-1 | - +- all | libtest-checkdeps-perl | 0.002-1 | - +- all | libtest-checkmanifest-perl | 1.25-1 | - +- all | libtest-class-most-perl | 0.06-1 | - +- all | libtest-class-perl | 0.37-1 | - +- all | libtest-classapi-perl | 1.06-1 | - +- all | libtest-cmd-perl | 1.05-7 | - +- all | libtest-command-perl | 0.08-1 | - +- all | libtest-compile-perl | 0.17-1 | - +- all | libtest-consistentversion-perl | 0.2.3-1 | - +- all | libtest-corpus-audio-mpd-perl | 1.120990-1 | - +- all | libtest-cpan-meta-perl | 0.19-1 | - +- all | libtest-cpan-meta-yaml-perl | 0.20-1 | - +- all | libtest-cukes-perl | 0.10-1 | - +- all | libtest-data-perl | 1.22-1 | - +- all | libtest-database-perl | 1.11-1 | - +- all | libtest-deep-perl | 0.110-1 | - +- all | libtest-dependencies-perl | 0.12-1 | - +- all | libtest-differences-perl | 0.61-1 | - +- all | libtest-dir-perl | 1.013-1 | - +- all | libtest-distmanifest-perl | 1.009-1 | - +- all | libtest-distribution-perl | 2.00-2 | - +- all | libtest-email-perl | 0.07-1 | - +- all | libtest-eol-perl | 1.3-1 | - +- all | libtest-exception-perl | 0.31-1 | - +- all | libtest-exit-perl | 0.03-1 | - +- all | libtest-expect-perl | 0.31-2 | - +- all | libtest-fatal-perl | 0.010-1 | - +- all | libtest-file-contents-perl | 0.20-1 | - +- all | libtest-file-perl | 1.34-1 | - +- all | libtest-file-sharedir-perl | 0.3.1-1 | - +- all | libtest-fixme-perl | 0.04-2 | - +- all | libtest-harness-perl | 3.25-1 | - +- all | libtest-hasversion-perl | 0.012-1 | - +- all | libtest-html-content-perl | 0.08-2 | - +- all | libtest-html-w3c-perl | 0.04-1 | - +- all | libtest-http-server-simple-perl | 0.10-1 | - +- all | libtest-http-server-simple-stashwarnings-perl | 0.04-1 | - +- all | libtest-identity-perl | 0.01-1 | - +- all | libtest-image-gd-perl | 0.03-2 | - +- all | libtest-indistdir-perl | 1.112071-1 | - +- all | libtest-inline-perl | 2.212-1 | - +- all | libtest-inter-perl | 1.02-1 | - +- all | libtest-json-perl | 0.11-1 | - +- all | libtest-kwalitee-perl | 1.01-1 | - +- all | libtest-lectrotest-perl | 0.3600-2 | - +- all | libtest-log-dispatch-perl | 0.03-1 | - +- all | libtest-log4perl-perl | 0.1001-3 | - +- all | libtest-longstring-perl | 0.15-1 | - +- all | libtest-manifest-perl | 1.23-1 | - +- all | libtest-memory-cycle-perl | 1.04-1 | - +- all | libtest-minimumversion-perl | 0.101080-1 | - +- all | libtest-mock-lwp-perl | 0.05-1 | - +- all | libtest-mock-redis-perl | 0.08-1 | - +- all | libtest-mockclass-perl | 1.04-3 | - +- all | libtest-mockmodule-perl | 0.05-2 | - +- all | libtest-mockobject-perl | 1.20120301-1 | - +- all | libtest-mockrandom-perl | 1.00-1 | - +- all | libtest-mocktime-datecalc-perl | 5+ds-1 | - +- all | libtest-mocktime-perl | 0.09-1 | - +- all | libtest-module-used-perl | 0.2.3-1 | - +- all | libtest-most-perl | 0.25-1 | - +- all | libtest-needsdisplay-perl | 1.07-1 | - +- all | libtest-nobreakpoints-perl | 0.15-1 | - +- all | libtest-notabs-perl | 1.3-1 | - +- all | libtest-nowarnings-perl | 1.04-1 | - +- all | libtest-number-delta-perl | 1.03-2 | - +- all | libtest-object-perl | 0.07-1 | - +- all | libtest-output-perl | 1.01-1 | - +- all | libtest-perl-critic-perl | 1.02-1 | - +- all | libtest-pod-content-perl | 0.0.6-1 | - +- all | libtest-pod-coverage-perl | 1.08-3 | - +- all | libtest-pod-no404s-perl | 0.01-1 | - +- all | libtest-pod-perl | 1.44-1 | - +- all | libtest-poe-client-tcp-perl | 1.10-1 | - +- all | libtest-poe-server-tcp-perl | 1.14-1 | - +- all | libtest-portability-files-perl | 0.05-2 | - +- all | libtest-prereq-perl | 1.037-1 | - +- all | libtest-rdf-doap-version-perl | 0.004-1 | - +- all | libtest-rdf-perl | 0.26-1 | - +- all | libtest-refcount-perl | 0.07-1 | - +- all | libtest-regression-perl | 0.05-1 | - +- all | libtest-reporter-perl | 1.58-1 | - +- all | libtest-requires-perl | 0.05-1 | - +- all | libtest-routine-perl | 0.015-1 | - +- all | libtest-script-perl | 1.07-2 | - +- all | libtest-script-run-perl | 0.05-1 | - +- all | libtest-sharedfork-perl | 0.19-1 | - +- all | libtest-signature-perl | 1.10-1 | - +- all | libtest-simple-perl | 0.98-1 | - +- all | libtest-simpleunit-perl | 1.21-5 | - +- all | libtest-spec-perl | 0.45-1 | - +- all | libtest-spelling-perl | 0.15-1 | - +- all | libtest-strict-perl | 0.14-1 | - +- all | libtest-subcalls-perl | 1.09-2 | - +- all | libtest-synopsis-perl | 0.06+ds-1 | - +! all | libtest-tcp-perl | 1.15-1 | 2.00-1~bpo70+1 +- all | libtest-tempdir-perl | 0.05-1 | - +- all | libtest-tester-perl | 0.108-1 | - +- all | libtest-trap-perl | 0.2.2-1 | - +- all | libtest-unit-perl | 0.25-1 | - +- all | libtest-use-ok-perl | 0.02-2 | - +- all | libtest-useallmodules-perl | 0.12-1 | - +- all | libtest-utf8-perl | 1.00-1 | - +- all | libtest-valgrind-perl | 1.13-1 | - +- all | libtest-warn-perl | 0.23-1 | - +- all | libtest-weaken-perl | 3.018000-1 | - +- all | libtest-without-module-perl | 0.17-1 | - +- all | libtest-www-declare-perl | 0.02-2 | - +- all | libtest-www-mechanize-catalyst-perl | 0.57-1 | - +- all | libtest-www-mechanize-cgiapp-perl | 0.05-3 | - +- all | libtest-www-mechanize-mojo-perl | 0.0.10-1 | - +- all | libtest-www-mechanize-perl | 1.42-1 | - +- all | libtest-www-mechanize-psgi-perl | 0.35-1 | - +- all | libtest-www-selenium-perl | 1.33-1 | - +- all | libtest-xml-perl | 0.08-1 | - +- all | libtest-xml-simple-perl | 1.01-1 | - +- all | libtest-xpath-perl | 0.16-1 | - +- all | libtest-yaml-meta-perl | 0.19-1 | - +- all | libtest-yaml-valid-perl | 0.04-1 | - +- all | libtex-encode-perl | 1.3-1 | - +- all | libtext-affixes-perl | 0.07-1 | - +- all | libtext-asciitable-perl | 0.20-1 | - +- all | libtext-autoformat-perl | 1.669002-1 | - +- all | libtext-context-eitherside-perl | 1.4-1 | - +- all | libtext-context-perl | 3.7-1 | - +- all | libtext-csv-encoded-perl | 0.10-2 | - +- all | libtext-csv-perl | 1.21-1 | - +- all | libtext-dhcpleases-perl | 0.9-1 | - +- all | libtext-diff-perl | 1.41-1 | - +- all | libtext-english-perl | 1.605-4 | - +- all | libtext-findindent-perl | 0.10-1 | - +- all | libtext-flow-perl | 0.01-1 | - +- all | libtext-format-perl | 0.56-1 | - +- all | libtext-format-ruby | 1.0.0-3 | - +- all | libtext-format-ruby-doc | 1.0.0-3 | - +- all | libtext-format-ruby1.8 | 1.0.0-3 | - +- all | libtext-formattable-perl | 1.03-1 | - +- all | libtext-german-perl | 0.06-2 | - +- all | libtext-glob-perl | 0.09-1 | - +- all | libtext-greeking-perl | 0.12-1 | - +- all | libtext-header-perl | 1.03-2 | - +- all | libtext-levenshtein-perl | 0.06~01-1 | - +- all | libtext-lorem-perl | 0.3-1 | - +- all | libtext-markdown-perl | 1.0.26-1 | - +- all | libtext-mediawikiformat-perl | 1.0-2 | - +- all | libtext-micromason-perl | 2.13-1 | - +- all | libtext-microtemplate-perl | 0.18-1 | - +- all | libtext-multimarkdown-perl | 1.000034-1 | - +- all | libtext-password-pronounceable-perl | 0.30-1 | - +- all | libtext-patch-perl | 1.8-1 | - +- all | libtext-pdf-perl | 0.29a-1 | - +- all | libtext-quoted-perl | 2.06-1 | - +- all | libtext-recordparser-perl | 1.5.0-1 | - +- all | libtext-reform-perl | 1.20-1 | - +- all | libtext-rewriterules-perl | 0.24-1 | - +- all | libtext-roman-perl | 3.3-4 | - +- all | libtext-sass-perl | 0.95-1 | - +- all | libtext-simpletable-perl | 1.2-1 | - +- all | libtext-tabulardisplay-perl | 1.33-1 | - +- all | libtext-template-perl | 1.45-2 | - +- all | libtext-textile-perl | 2.12-1 | - +- all | libtext-trac-perl | 0.15-1 | - +- all | libtext-trim-perl | 1.02-1 | - +- all | libtext-typography-perl | 0.01-2 | - +- all | libtext-unidecode-perl | 0.04-2 | - +- all | libtext-vcard-perl | 2.10-1 | - +- all | libtext-vfile-asdata-perl | 0.07-1 | - +- all | libtext-wikicreole-perl | 0.07-1 | - +- all | libtext-wikiformat-perl | 0.79-1 | - +- all | libtext-worddiff-perl | 0.05-1 | - +- all | libtext-wrapi18n-perl | 0.06-7 | - +- all | libtext-wrapper-perl | 1.04-1 | - +- all | libtggraphlayout-java | 122-2 | - +- all | libtggraphlayout-java-doc | 122-2 | - +- all | libthai-data | 0.1.18-2 | - +- all | libthai-doc | 0.1.18-2 | - +- all | libtheora-doc | 1.1.1+dfsg.1-3.1 | - +- all | libtheschwartz-perl | 1.07-1 | - +- all | libthread-pool-simple-perl | 0.25-1 | - +- all | libthread-queue-any-perl | 1.12-1 | - +- all | libthread-serialize-perl | 1.00-1 | - +- all | libthrowable-perl | 0.102080-1 | - +- all | libthrust-dev | 1.6.0-1 | - +- all | libthunar-vfs-1-common | 1.2.0-3 | - +- all | libticket-simple-perl | 0.0.2-2 | - +- all | libtidy-ruby | 1.1.2+gem2deb-1 | - +- all | libtidy-ruby1.8 | 1.1.2+gem2deb-1 | - +- all | libtie-array-iterable-perl | 0.03-1 | - +- all | libtie-array-sorted-perl | 1.41-2 | - +- all | libtie-cache-perl | 0.17-4 | - +- all | libtie-cphash-perl | 1.05-1 | - +- all | libtie-dbi-perl | 1.04-1 | - +- all | libtie-dxhash-perl | 0.93-1 | - +- all | libtie-encryptedhash-perl | 1.24-1 | - +- all | libtie-hash-regex-perl | 1.02-1 | - +- all | libtie-ical-perl | 0.15-1 | - +- all | libtie-ixhash-perl | 1.21-2 | - +- all | libtie-persistent-perl | 1.00-1 | - +- all | libtie-refhash-weak-perl | 0.09-1 | - +- all | libtie-shadowhash-perl | 1.00-1 | - +- all | libtie-simple-perl | 1.03-1 | - +- all | libtie-toobject-perl | 0.03-3 | - +- all | libtiff-doc | 4.0.2-6+deb7u2 | - +- all | libtiger-types-java | 1.4-1 | - +- all | libtiger-types-java-doc | 1.4-1 | - +- all | libtiles-java | 2.2.2-3 | - +- all | libtiles-java-doc | 2.2.2-3 | - +- all | libtime-clock-perl | 1.01-1 | - +- all | libtime-duration-parse-perl | 0.06-1 | - +- all | libtime-duration-perl | 1.06-3 | - +- all | libtime-fake-perl | 0.11-2 | - +- all | libtime-format-perl | 1.11-1 | - +- all | libtime-human-perl | 1.03-2 | - +- all | libtime-modules-perl | 2011.0517-1 | - +- all | libtime-period-perl | 1.20-8 | - +- all | libtime-piece-mysql-perl | 0.06-2 | - +- all | libtime-progress-perl | 1.7-1 | - +- all | libtime-stopwatch-perl | 1.00-5 | - +- all | libtimedate-perl | 1.2000-1 | - +- all | libtimingframework-java | 1.0-1 | - +- all | libtimingframework-java-doc | 1.0-1 | - +- all | libtinyxml-doc | 2.6.2-1 | - +- all | libtioga-ruby | 1.14-3 | - +- all | libtioga-ruby-doc | 1.14-3 | - +- all | libtioga-ruby1.8 | 1.14-3 | - +- all | libtioga-ruby1.9.1 | 1.14-3 | - +- all | libtitanium-perl | 1.04-3 | - +- all | libtk-dirselect-perl | 1.12-1 | - +- all | libtk-filedialog-perl | 1.3-4 | - +- all | libtk-gbarr-perl | 2.08-1 | - +- all | libtk-histentry-perl | 0.43-2 | - +- all | libtk-img-doc | 1:1.3-release-12 | - +- all | libtk-objscanner-perl | 2.012-2 | - +- all | libtk-pod-perl | 0.9940-1 | - +- all | libtk-splashscreen-perl | 1.0-3 | - +- all | libtm-perl | 1.56-3 | - +- all | libtmail-ruby-doc | 1.2.7.1-3+deb7u1 | - +- all | libtmail-ruby1.8 | 1.2.7.1-3+deb7u1 | - +- all | libtnt-dev | 1.2.6-1 | - +- all | libtogl-dev | 1.7-12 | - +- all | libtokyocabinet-ruby-doc | 1.31-2 | - +- all | libtokyocabinet-ruby1.8 | 1.31-2 | - +- all | libtokyocabinet-ruby1.9.1 | 1.31-2 | - +- all | libtomcat-maven-plugin-java | 1.1-2 | - +- all | libtomcat6-java | 6.0.35-6+deb7u1 | - +- all | libtomcat7-java | 7.0.28-4 | - +- all | libtommath-docs | 0.42.0-1 | - +- all | libtool-doc | 2.4.2-1.1 | - +- all | libtoolkit-perl | 0.0.2-1 | - +- all | libtools-logging-clojure | 0.2.3-3 | - +- all | libtophide-ocaml-dev | 1.0.0-3 | - +- all | libtorrent-rasterbar-doc | 0.15.10-1 | - +- all | libtorrent-ruby | 0.3-4 | - +- all | libtorrent-ruby1.8 | 0.3-4 | - +- all | libtpl-dev | 1.5-2 | - +- all | libtracker-extract-doc | 0.14.1-3 | - +- all | libtracker-miner-doc | 0.14.1-3 | - +- all | libtracker-sparql-doc | 0.14.1-3 | - +- all | libtrang-java | 20091111-5 | - +- all | libtransaction-simple-ruby | 1.4.0-2 | - +- all | libtransaction-simple-ruby-doc | 1.4.0-2 | - +- all | libtransaction-simple-ruby1.8 | 1.4.0-2 | - +- all | libtravel-routing-de-vrr-perl | 2.01-1 | - +- all | libtree-dagnode-perl | 1.06-1 | - +- all | libtree-multinode-perl | 1.0.10-2 | - +- all | libtree-redblack-perl | 0.5-1 | - +- all | libtree-simple-perl | 1.18-1 | - +- all | libtree-simple-visitorfactory-perl | 0.10-2 | - +- all | libtrident-java | 1.3+dfsg-5 | - +- all | libtrident-java-doc | 1.3+dfsg-5 | - +- all | libtrilead-putty-extension-java | 1.1-2 | - +- all | libtrilead-putty-extension-java-doc | 1.1-2 | - +- all | libtrilead-ssh2-java | 6401-1 | - +- all | libtritonus-java | 20070428-9 | - +- all | libtrollop-ruby | 1.16.2-3 | - +- all | libtrove-java | 2.1.0-2 | - +- all | libtrove-java-doc | 2.1.0-2 | - +- all | libtrove3-java | 3.0.2-1 | - +- all | libtrove3-java-doc | 3.0.2-1 | - +- all | libtry-tiny-perl | 0.11-1 | - +- all | libtut-dev | 0.0.20070706-1 | - +- all | libtwatch-perl | 0.0.7-1 | - +- all | libtwitter-ruby1.8 | 0.7.0-3 | - +- all | libtwitter-ruby1.9.1 | 0.7.0-3 | - +- all | libtxw2-java | 0.1+20070624-1 | - +- all | libtxw2-java-doc | 0.1+20070624-1 | - +- all | libtyxml-ocaml-doc | 2.1-1 | - +- all | libtzinfo-ruby | 0.3.33-3 | - +- all | libtzinfo-ruby1.8 | 0.3.33-3 | - +- all | libtzinfo-ruby1.9.1 | 0.3.33-3 | - +- all | libuconv-ruby1.8 | 0.5.3-2 | - +- all | libuconv-ruby1.9.1 | 0.5.3-2 | - +- all | libuddi4j-java | 2.0.5-2 | - +- all | libuddi4j-java-doc | 2.0.5-2 | - +- all | libui-dialog-perl | 1.08-1.1 | - +- all | libuima-adapter-soap-java | 2.4.0-2 | - +- all | libuima-adapter-vinci-java | 2.4.0-2 | - +- all | libuima-addons-java | 2.3.1-2 | - +- all | libuima-addons-java-doc | 2.3.1-2 | - +- all | libuima-as-java | 2.3.1-3 | - +- all | libuima-as-java-doc | 2.3.1-3 | - +- all | libuima-core-java | 2.4.0-2 | - +- all | libuima-cpe-java | 2.4.0-2 | - +- all | libuima-document-annotation-java | 2.4.0-2 | - +- all | libuima-tools-java | 2.4.0-2 | - +- all | libuima-vinci-java | 2.4.0-2 | - +- all | libunicap-docs | 0.9.12-2 | - +- all | libunicode-escape-perl | 0.0.2-2 | - +- all | libunicode-maputf8-perl | 1.11-2 | - +- all | libunicode-stringprep-perl | 1.104+dfsg-1 | - +- all | libunique-3.0-doc | 3.0.2-1 | - +- all | libunique-doc | 1.1.6-4 | - +- all | libuniversal-can-perl | 1.20110613-1 | - +- all | libuniversal-exports-perl | 0.05-2 | - +- all | libuniversal-isa-perl | 1.20120418-1 | - +- all | libuniversal-moniker-perl | 0.08-6 | - +- all | libuniversal-require-perl | 0.13-1 | - +- all | libupnp-dev | 1:1.6.17-1.2 | - +- all | libupnp4-doc | 1.8.0~svn20100507-1.2 | - +- all | libupnp6-doc | 1:1.6.17-1.2 | - +- all | libups-nut-perl | 2.6.4-2.3+deb7u1 | - +- all | liburi-encode-perl | 0.061-1 | - +- all | liburi-fetch-perl | 0.09-1 | - +- all | liburi-find-delimited-perl | 0.02-6 | - +- all | liburi-find-perl | 20111103-1 | - +- all | liburi-perl | 1.60-1 | - +- all | liburi-query-perl | 0.08-1 | - +- all | liburi-smarturi-perl | 0.031-1 | - +- all | liburi-template-perl | 0.16-1 | - +- all | liburi-todisk-perl | 1.12-1 | - ++ all | libusb-1.0-doc | - | 2:1.0.17-1~bpo70+1 +- all | libusb-ruby | 0.2.1-2 | - +- all | libusb-ruby1.8 | 0.2.1-2 | - +- all | libusb-ruby1.9.1 | 0.2.1-2 | - +- all | libusbhid-common | 9.0+ds1-4 | - +- all | libuser-identity-perl | 0.93-1 | - +- all | libuser-perl | 1.9-1 | - +- all | libuser-simple-perl | 1.43-1 | - +- all | libustr-doc | 1.0.4-3 | - +- all | libutf8-all-perl | 0.004-1 | - +- all | libuuid-tiny-perl | 1.0300-2 | - +- all | libuuidtools-ruby | 2.1.2-2 | - +- all | libuuidtools-ruby-doc | 2.1.2-2 | - +- all | libuuidtools-ruby1.8 | 2.1.2-2 | - +- all | libuuidtools-ruby1.9.1 | 2.1.2-2 | - +- all | libv-perl | 0.13-1 | - +- all | libva-intel-vaapi-driver | 1.0.17-1 | - +- all | libva-intel-vaapi-driver-dbg | 1.0.17-1 | - +- all | libvalhalla-doc | 2.0.0-4 | - +- all | libvalidatable-ruby | 1.6.7-9 | - +- all | libvalidatable-ruby1.8 | 1.6.7-9 | - +- all | libvalidatable-ruby1.9.1 | 1.6.7-9 | - +- all | libvalidate-net-perl | 0.6-1 | - +- all | libvalidation-class-perl | 7.70-1 | - +- all | libvamsas-client-java | 0.2~git2011.10.17+1b42648-1 | - +- all | libvcs-lite-perl | 0.09-1 | - +- all | libvdk2-doc | 2.4.0-5.3 | - +- all | libvdpau-doc | 0.4.1-7 | - +- all | libvecmath-java | 1.5.2-3 | - +- all | libvecmath-java-doc | 1.5.2-3 | - +- all | libvelocity-tools-java | 2.0-2 | - +- all | libvelocity-tools-java-doc | 2.0-2 | - +- all | libvendorlib-perl | 0.10-2 | - +- all | libversion-next-perl | 0.002-1 | - +- all | libvi-quickfix-perl | 1.134-1 | - +- all | libvia-doc | 2.0.4-2 | - +- all | libvideo-fourcc-info-perl | 1.005-1 | - +- all | libvigraimpex-doc | 1.7.1+dfsg1-3 | - +- all | libvips-doc | 7.28.5-1+deb7u1 | - +! all | libvirt-doc | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +- all | libvirt-ruby | 0.4.0-1 | - +- all | libvirt-ruby1.8 | 0.4.0-1 | - +- all | libvisio-doc | 0.0.17-1 | - +- all | libvitacilina-perl | 0.2-1 | - +- all | libvldocking-java | 2.1.4-4 | - +- all | libvmmlib-dev | 1.0-2 | - +- all | libvoms-api-java-java | 2.0.8-2 | - +- all | libvoms-api-java-java-doc | 2.0.8-2 | - +- all | libvorbisspi-java | 1.0.3-3 | - +- all | libvpb-doc | 4.2.55-1 | - +- all | libvpx-doc | 1.1.0-1 | - +- all | libvte-2.90-common | 1:0.32.2-1 | - +- all | libvte-2.90-doc | 1:0.32.2-1 | - +- all | libvte-common | 1:0.28.2-5 | - +- all | libvte-doc | 1:0.28.2-5 | - +- all | libvte-ruby | 1.1.3-2 | - +- all | libvte-ruby1.8 | 1.1.3-2 | - +- all | libvte-ruby1.8-dbg | 1.1.3-2 | - +- all | libwacom-common | 0.6-1 | - +- all | libwagon-java | 1.0.0-2 | - +- all | libwagon-java-doc | 1.0.0-2 | - +- all | libwagon2-java | 2.2-3+nmu1 | - +- all | libwarnings-illegalproto-perl | 0.001000-1 | - +- all | libweather-com-perl | 0.5.3-2 | - +- all | libweb-id-perl | 1.921-3 | - +- all | libweb-scraper-perl | 0.36-1 | - +- all | libweb-simple-perl | 0.016-1 | - +- all | libwebapp-ruby1.8 | 0.4-2.1 | - +- all | libwebinject-perl | 1.74-1 | - +- all | libwebkdc-perl | 4.1.1-2 | - +- all | libwebkit-cil-dev | 0.3-6 | - +- all | libwebkit1.1-cil | 0.3-6 | - +- all | libwebkitgtk-1.0-common | 1.8.1-3.4 | - +- all | libwebkitgtk-3.0-common | 1.8.1-3.4 | - +- all | libwebservice-cia-perl | 1.4-1 | - +- all | libwebservice-musicbrainz-perl | 0.93-1 | - +- all | libwebservice-solr-perl | 0.19-1 | - +- all | libwebservice-validator-css-w3c-perl | 0.2-1 | - +- all | libwebservice-validator-html-w3c-perl | 0.28-1 | - +- all | libwebservice-youtube-perl | 1.0.3-3 | - +- all | libwerken.xpath-java | 0.9.4-14 | - +- all | libwerken.xpath-java-doc | 0.9.4-14 | - +- all | libwfmath-doc | 0.3.12-3 | - +- all | libwhisker2-perl | 2.5-1 | - +- all | libwhy-coq | 2.30+dfsg-5 | - +- all | libwiki-toolkit-formatter-usemod-perl | 0.23-1 | - +- all | libwiki-toolkit-perl | 0.80-1 | - +- all | libwiki-toolkit-plugin-categoriser-perl | 0.08-1 | - +- all | libwiki-toolkit-plugin-diff-perl | 0.12-3 | - +- all | libwiki-toolkit-plugin-json-perl | 0.03-1 | - +- all | libwiki-toolkit-plugin-locator-grid-perl | 0.05-4 | - +- all | libwiki-toolkit-plugin-ping-perl | 0.03-1 | - +- all | libwiki-toolkit-plugin-rss-reader-perl | 1.6-1 | - +- all | libwildmidi-config | 0.2.3.4-2.1 | - +- all | libwill-paginate-ruby | 3.0.3-1 | - +- all | libwill-paginate-ruby-doc | 3.0.3-1 | - +- all | libwill-paginate-ruby1.8 | 3.0.3-1 | - +- all | libwine-gecko-1.4 | 1.4+dfsg1-3 | - +- all | libwine-gecko-dbg-1.4 | 1.4+dfsg1-3 | - +- all | libwirble-ruby | 0.1.3-4 | - +- all | libwirble-ruby-doc | 0.1.3-4 | - +- all | libwirble-ruby1.8 | 0.1.3-4 | - +- all | libwirble-ruby1.9.1 | 0.1.3-4 | - +! all | libwireshark-data | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- all | libwmf-doc | 0.2.8.4-10.3 | - +- all | libwnck-3-common | 3.4.2-1 | - +- all | libwnck-common | 2.30.7-1 | - +- all | libwoodstox-java | 1:4.1.3-1 | - +- all | libwordnet-querydata-perl | 1.48-1 | - +- all | libwpd-doc | 0.9.4-3 | - +- all | libwpg-doc | 0.2.1-1 | - +- all | libwps-doc | 0.2.7-1 | - +- all | libwreport-doc | 2.4-1 | - +- all | libwriter2latex-java | 1.0.2-8 | - +- all | libwriter2latex-java-doc | 1.0.2-8 | - +- all | libws-commons-util-java | 1.0.1-7 | - +- all | libwsdl2c-java | 0.1-1 | - +- all | libwsdl4j-java | 1.6.2-4 | - +- all | libwsdl4j-java-doc | 1.6.2-4 | - +- all | libwsil4j-java | 1.0.0-1 | - +- all | libwsil4j-java-doc | 1.0.0-1 | - +- all | libwss4j-java | 1.5.8+svntag-2 | - +- all | libwt-common | 3.2.1-2 | - +- all | libwt-doc | 3.2.1-2 | - +- all | libwvstreams4.6-doc | 4.6.1-5 | - +- all | libwww-bugzilla-perl | 1.5-1 | - +- all | libwww-cnic-perl | 0.38-1 | - +- all | libwww-facebook-api-perl | 0.4.18-1 | - +- all | libwww-finger-perl | 0.104-1 | - +- all | libwww-freshmeat-perl | 0.22-1 | - +- all | libwww-google-calculator-perl | 0.07-1 | - +- all | libwww-indexparser-perl | 0.91-1 | - +- all | libwww-mechanize-autopager-perl | 0.02-2 | - +- all | libwww-mechanize-formfiller-perl | 0.10-2 | - +- all | libwww-mechanize-gzip-perl | 0.12-1 | - +- all | libwww-mechanize-perl | 1.71-1 | - +- all | libwww-mechanize-ruby | 2.3-2 | - +- all | libwww-mechanize-ruby-doc | 2.3-2 | - +- all | libwww-mechanize-ruby1.8 | 2.3-2 | - +- all | libwww-mechanize-ruby1.9.1 | 2.3-2 | - +- all | libwww-mechanize-shell-perl | 0.52-1 | - +- all | libwww-mechanize-treebuilder-perl | 1.10003-1 | - +- all | libwww-mediawiki-client-perl | 0.31-2 | - +- all | libwww-nicovideo-download-perl | 0.06-1 | - +- all | libwww-opensearch-perl | 0.16-1 | - +- all | libwww-perl | 6.04-1 | - +- all | libwww-robotrules-perl | 6.01-1 | - +- all | libwww-search-perl | 2.50.80-1 | - +- all | libwww-shorten-perl | 3.03-1 | - +- all | libwww-topica-perl | 0.6-4 | - +- all | libwww-wikipedia-perl | 2.00-1 | - +- all | libwwwbrowser-perl | 2.23-2 | - +- all | libwx-perl-datawalker-perl | 0.02-1 | - +- all | libwx-perl-processstream-perl | 0.32-1 | - +- all | libx11-data | 2:1.5.0-1+deb7u1 | - +- all | libx11-doc | 2:1.5.0-1+deb7u1 | - +- all | libx11-freedesktop-desktopentry-perl | 0.04-3 | - +- all | libx11-protocol-perl | 0.56-4 | - +- all | libx500-dn-perl | 0.29-4 | - +- all | libxalan110-doc | 1.10-6 | - +- all | libxalan2-java | 2.7.1-7 | - +- all | libxalan2-java-doc | 2.7.1-7 | - +- all | libxapool-java | 1.5.0-3 | - +- all | libxaw-doc | 2:1.0.10-2 | - +- all | libxbean-java | 3.7-5 | - +- all | libxbean-java-doc | 3.7-5 | - +- all | libxcb-doc | 1.8.1-2+deb7u1 | - +- all | libxerces-c-doc | 3.1.1-3 | - +- all | libxerces-c2-doc | 2.8.0+deb1-3 | - +- all | libxerces2-java | 2.11.0-6 | - +- all | libxerces2-java-doc | 2.11.0-6 | - +- all | libxext-doc | 2:1.3.1-2+deb7u1 | - +- all | libxfce4util-common | 4.8.2-1 | - +- all | libxine1-all-plugins | 1.1.21-1 | - +- all | libxine1-doc | 1.1.21-1 | - +- all | libxine1-plugins | 1.1.21-1 | - +- all | libxine2-all-plugins | 1.2.2-4 | - +- all | libxine2-doc | 1.2.2-4 | - +- all | libxine2-plugins | 1.2.2-4 | - +- all | libxml++2.6-doc | 2.34.2-1 | - +- all | libxml-atom-fromowl-perl | 0.101-1 | - +- all | libxml-atom-microformats-perl | 0.003-3 | - +- all | libxml-atom-owl-perl | 0.103-1 | - +- all | libxml-atom-perl | 0.41-1 | - +- all | libxml-atom-service-perl | 0.16.2-1 | - +- all | libxml-atom-simplefeed-perl | 0.86-1 | - +- all | libxml-autowriter-perl | 0.40-2 | - +- all | libxml-checker-perl | 0.13-5 | - +- all | libxml-commonns-perl | 0.06-1 | - +- all | libxml-commons-external-java | 1.4.01-2 | - +- all | libxml-commons-external-java-doc | 1.4.01-2 | - +- all | libxml-commons-resolver1.1-java | 1.2-7 | - +- all | libxml-commons-resolver1.1-java-doc | 1.2-7 | - +- all | libxml-csv-perl | 0.15-8 | - +- all | libxml-dom-perl | 1.44-1 | - +- all | libxml-dom-xpath-perl | 0.14-1 | - +- all | libxml-dt-perl | 0.62-1 | - +- all | libxml-dtdparser-perl | 2.01-4 | - +- all | libxml-dumper-perl | 0.81-1 | - +- all | libxml-easyobj-perl | 1.12-3 | - +- all | libxml-encoding-perl | 2.08-1 | - +- all | libxml-feed-perl | 0.48+dfsg-1 | - +- all | libxml-feedpp-mediarss-perl | 0.02-1 | - +- all | libxml-feedpp-perl | 0.43-1 | - +- all | libxml-filter-buffertext-perl | 1.01-5 | - +- all | libxml-filter-detectws-perl | 0.01-7 | - +- all | libxml-filter-reindent-perl | 0.03-7 | - +- all | libxml-filter-saxt-perl | 0.01-7 | - +- all | libxml-filter-sort-perl | 1.01-3 | - +- all | libxml-filter-xslt-perl | 0.03-8 | - +- all | libxml-generator-perl | 1.04-1 | - +- all | libxml-grddl-perl | 0.003-1 | - +- all | libxml-grove-perl | 0.46alpha-12 | - +- all | libxml-handler-composer-perl | 0.01-7 | - +- all | libxml-handler-printevents-perl | 0.01-7 | - +- all | libxml-handler-trees-perl | 0.02-6 | - +- all | libxml-handler-yawriter-perl | 0.23-6 | - +- all | libxml-java | 1.1.6.dfsg-3 | - +- all | libxml-libxml-debugging-perl | 0.102-1 | - +- all | libxml-libxml-iterator-perl | 1.04-1 | - +- all | libxml-libxml-lazybuilder-perl | 0.03-1 | - +- all | libxml-libxml-simple-perl | 0.91-1 | - +- all | libxml-mini-perl | 1.38-2 | - +- all | libxml-namespace-perl | 0.02-1 | - +- all | libxml-namespacefactory-perl | 1.00-1 | - +- all | libxml-namespacesupport-perl | 1.09-3 | - +- all | libxml-node-perl | 0.11-7 | - +- all | libxml-nodefilter-perl | 0.01-6 | - +- all | libxml-opml-perl | 0.26-2 | - +- all | libxml-opml-simplegen-perl | 0.06-1 | - +- all | libxml-parser-lite-tree-perl | 0.14-1 | - +- all | libxml-parser-ruby | 0.7.2-2 | - +- all | libxml-parser-ruby1.8 | 0.7.2-2 | - +- all | libxml-parser-ruby1.9.1 | 0.7.2-2 | - +- all | libxml-perl | 0.08-2 | - +- all | libxml-qofqsf-perl | 0.05-1 | - +- all | libxml-regexp-perl | 0.04-1 | - +- all | libxml-rss-feed-perl | 2.212-1 | - +- all | libxml-rss-libxml-perl | 0.3102+dfsg-1 | - +- all | libxml-rss-perl | 1.49-1 | - +- all | libxml-rss-simplegen-perl | 11.11-2 | - +- all | libxml-rsslite-perl | 0.15+dfsg-2 | - +- all | libxml-ruby | 2.3.2-1 | - +- all | libxml-ruby1.8 | 2.3.2-1 | - +- all | libxml-ruby1.9.1 | 2.3.2-1 | - +- all | libxml-sax-base-perl | 1.07-1 | - +- all | libxml-sax-expat-incremental-perl | 0.05-2 | - +- all | libxml-sax-expat-perl | 0.40-2 | - +- all | libxml-sax-machines-perl | 0.42-1 | - +- all | libxml-sax-perl | 0.99+dfsg-2 | - +- all | libxml-sax-writer-perl | 0.53-1 | - +- all | libxml-security-java | 1.4.5-1 | - +- all | libxml-security-java-doc | 1.4.5-1 | - +- all | libxml-semanticdiff-perl | 1.00.00-1 | - +- all | libxml-simple-perl | 2.20-1 | - +- all | libxml-simple-ruby | 1.1.1-1 | - +- all | libxml-simpleobject-enhanced-perl | 0.53-2 | - +- all | libxml-simpleobject-libxml-perl | 0.53-2 | - +- all | libxml-simpleobject-perl | 0.53-2 | - +- all | libxml-smart-perl | 1.6.9-3 | - +- all | libxml-stream-perl | 1.23-2 | - +- all | libxml-tidy-perl | 1.12.B55J2qn-1 | - +- all | libxml-tmx-perl | 0.22-1 | - +- all | libxml-tokeparser-perl | 0.05-3 | - +- all | libxml-treebuilder-perl | 4.0-1 | - +- all | libxml-treepp-perl | 0.39-1 | - +- all | libxml-twig-perl | 1:3.39-1 | - +- all | libxml-um-perl | 0.01-8 | - +- all | libxml-validate-perl | 1.025-2 | - +- all | libxml-validator-schema-perl | 1.10-1 | - +- all | libxml-writer-perl | 0.615-1 | - +- all | libxml-writer-simple-perl | 0.08-1 | - +- all | libxml-writer-string-perl | 0.1-1 | - +- all | libxml-xpath-perl | 1.13-7 | - +- all | libxml-xpathengine-perl | 0.13-1 | - +- all | libxml-xql-perl | 0.68-6 | - +- all | libxml-xslt-perl | 0.48-3 | - +- all | libxml-xupdate-libxml-perl | 0.6.0-1 | - +- all | libxml2-doc | 2.8.0+dfsg1-7+nmu2 | - +- all | libxmlada-doc | 4.1-2 | - +- all | libxmlbeans-java | 2.5.0-4 | - +- all | libxmlbeans-maven-plugin-java | 2.3.3-3 | - +- all | libxmlbeans-maven-plugin-java-doc | 2.3.3-3 | - +- all | libxmlgraphics-commons-java | 1.4.dfsg-4 | - +- all | libxmlrpc-c3-dev | 1.16.33-3.2 | - +- all | libxmlrpc3-client-java | 3.1.3-5 | - +- all | libxmlrpc3-common-java | 3.1.3-5 | - +- all | libxmlrpc3-java-doc | 3.1.3-5 | - +- all | libxmlrpc3-server-java | 3.1.3-5 | - +! all | libxmltooling-doc | 1.4.2-5 | 1.5.3-2~bpo70+1 +- all | libxmltv-perl | 0.5.63-2 | - +- all | libxmlunit-java | 1.3-2 | - +- all | libxmlunit-java-doc | 1.3-2 | - +- all | libxmmsclient-ruby | 0.8+dfsg-4 | - +- all | libxmmsclient-ruby1.8 | 0.8+dfsg-4 | - +- all | libxmu-headers | 2:1.1.1-1 | - +- all | libxom-java | 1.2.1-3 | - +- all | libxom-java-doc | 1.2.1-3 | - +- all | libxpp2-java | 2.1.10-7 | - +- all | libxpp3-java | 1.1.4c-2 | - +- all | libxray-absorption-perl | 3.0.1-1 | - +- all | libxray-scattering-perl | 3.0.1-1 | - +- all | libxray-spacegroup-perl | 0.1.1-2 | - +- all | libxrd-parser-perl | 0.103-1 | - +- all | libxsettings-client-doc | 0.17-6 | - +- all | libxsltc-java | 2.7.1-7 | - +- all | libxslthl-java | 2.0.2-4 | - +- all | libxstream-java | 1.4.2-1 | - +- all | libxstrp4-camlp4-dev | 1.8-3 | - +- all | libxt-doc | 1:1.1.3-1+deb7u1 | - +- all | libxtst-doc | 2:1.2.1-1+deb7u1 | - +- all | libxz-java | 1.0-2 | - +- all | libxz-java-doc | 1.0-2 | - +- all | libyajl-doc | 2.0.4-2 | - +- all | libyaml-appconfig-perl | 0.16-2 | - +- all | libyaml-perl | 0.81-1 | - +- all | libyaml-shell-perl | 0.60-1 | - +- all | libyaml-tiny-perl | 1.51-1 | - +- all | libyanfs-java | 0.0+cvs20070825-4 | - +- all | libyecht-java | 0.0.2-2 | - +- all | libzarith-ocaml-doc | 1.1-2 | - +- all | libzeitgeist-cil-dev | 0.8.0.0-4 | - +- all | libzeitgeist-doc | 0.3.18-1 | - +- all | libzeitgeist0.8-cil | 0.8.0.0-4 | - +- all | libzemberek-java | 2.1.1-8.1 | - +- all | libzemberek-java-doc | 2.1.1-8.1 | - +- all | libzemberek-tk-java | 2.1.1-8.1 | - +- all | libzemberek-tr-java | 2.1.1-8.1 | - +- all | libzen-doc | 0.4.27-2 | - +- all | libzeroc-ice3.4-cil | 3.4.2-8.2 | - +- all | libzeroc-ice3.4-java | 3.4.2-8.2 | - +- all | libzinnia-doc | 0.06-1 | - +- all | libzip-ruby1.8 | 0.9.4-1 | - +- all | libzip-ruby1.9.1 | 0.9.4-1 | - +- all | libzipios++-doc | 0.1.5.9+cvs.2007.04.28-5.1 | - +- all | libzita-resampler-doc | 1.1.0-3 | - +- all | libzlcore-data | 0.12.10dfsg-8 | - +- all | libzltext-data | 0.12.10dfsg-8 | - +- all | libzookeeper-java | 3.3.5+dfsg1-2 | - +- all | libzookeeper-java-doc | 3.3.5+dfsg1-2 | - +- all | libzoom-ruby | 0.4.1-5 | - +- all | libzoom-ruby1.8 | 0.4.1-5 | - +- all | libzvbi-common | 0.2.33-6 | - +- all | libzvbi-doc | 0.2.33-6 | - +- all | licq-dev | 1.6.1-3 | - +- all | licq-plugin-kde | 1.6.1-3 | - +- all | licq-plugin-qt | 1.6.1-3 | - +- all | licq-plugin-qt4-common | 1.6.1-3 | - +- all | liece | 2.0+0.20030527cvs-11 | - +- all | lifelines-doc | 3.0.61-2 | - +- all | lifelines-doc-sv | 3.0.61-2 | - +- all | lifelines-reports | 3.0.61-2 | - +! all | liferea-data | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +- all | lightsquid | 1.8-3 | - +- all | lighttpd-doc | 1.4.31-4+deb7u2 | - +- all | lightyears | 1.4-1 | - +- all | liguidsoap | 1.0.1+repack1-1.1 | - +- all | lilo-doc | 1:23.2-4 | - +- all | lilypond-data | 2.14.2-4 | - +- all | lilypond-doc | 2.14.2-4 | - ++ all | lime-forensics-dkms | - | 1.1-r17+dfsg-2~bpo70+1 +- all | lincity-ng-data | 2.0-2 | - +- all | lincredits | 0.7 | - +- all | link-grammar-dictionaries-en | 4.7.4-2 | - +- all | link-grammar-dictionaries-lt | 4.7.4-2 | - +- all | link-monitor-applet-common | 3.0-8 | - +- all | linkchecker-gui | 7.9-2 | - +- all | linkchecker-web | 7.9-2 | - +- all | linklint | 2.3.5-5 | - +- all | linphone-common | 3.5.2-10 | - +! all | lintian | 2.5.10.4 | 2.5.21~bpo70+1 +- all | linux-base | 3.5 | - +! all | linux-doc | 3.2+46 | 3.12+55~bpo70+1 +- all | linux-doc-2.6 | 1:3.2+46 | - ++ all | linux-doc-3.12 | - | 3.12.9-1~bpo70+1 +- all | linux-doc-3.2 | 3.2.54-2 | - ++ all | linux-manual-3.12 | - | 3.12.9-1~bpo70+1 +- all | linux-manual-3.2 | 3.2.54-2 | - +- all | linux-patch-debianlogo | 1.16 | - +- all | linux-patch-grsecurity2 | 2.9.1+3.2.21-201206221855-1 | - +- all | linux-patch-xenomai | 2.6.0-2 | - +! all | linux-source | 3.2+46 | 3.12+55~bpo70+1 +- all | linux-source-2.6 | 1:3.2+46 | - ++ all | linux-source-3.12 | - | 3.12.9-1~bpo70+1 +- all | linux-source-3.2 | 3.2.54-2 | - ++ all | linux-support-3.12-0.bpo.1 | - | 3.12.9-1~bpo70+1 +- all | linux-support-3.2.0-4 | 3.2.54-2 | - +! all | linux-tools | 3.2+46 | 3.12+55~bpo70+1 +- all | linux-tools-2.6 | 3.2+46 | - +- all | linux-wlan-ng-doc | 0.2.9+dfsg-5 | - +- all | linuxdoc-tools-info | 0.9.68 | - +- all | linuxdoc-tools-latex | 0.9.68 | - +- all | linuxdoc-tools-text | 0.9.68 | - +- all | liquidwar-data | 5.6.4-3 | - +- all | lire | 2:2.1.1-2 | - +- all | lire-devel-doc | 2:2.1.1-2 | - +- all | lire-doc | 2:2.1.1-2 | - +- all | lisaac-common | 1:0.39~rc1-1 | - +- all | lisaac-doc | 1:0.39~rc1-1 | - +- all | lisaac-mode | 1:0.39~rc1-1 | - +- all | listadmin | 2.40-4 | - +- all | littlewizard-data | 1.2.2-1 | - +- all | live-boot | 3.0.1-1 | - +- all | live-boot-doc | 3.0.1-1 | - +- all | live-boot-initramfs-tools | 3.0.1-1 | - +- all | live-build | 3.0.5-1 | - +- all | live-build-cgi | 3.0.5-1 | - +- all | live-config | 3.0.23-1 | - +- all | live-config-doc | 3.0.23-1 | - +- all | live-config-systemd | 3.0.23-1 | - +- all | live-config-sysvinit | 3.0.23-1 | - +- all | live-config-upstart | 3.0.23-1 | - ++ all | live-debconfig | - | 4.0~alpha31-1~bpo70+1 ++ all | live-debconfig-doc | - | 4.0~alpha31-1~bpo70+1 +- all | live-manual | 1:3.0.2-1 | - +- all | live-manual-epub | 1:3.0.2-1 | - +- all | live-manual-html | 1:3.0.2-1 | - +- all | live-manual-odf | 1:3.0.2-1 | - +- all | live-manual-pdf | 1:3.0.2-1 | - +- all | live-manual-txt | 1:3.0.2-1 | - +- all | live-tools | 3.0.20-1 | - +- all | lives-data | 1.6.2~ds1-2 | - +- all | llgal | 0.13.17-2 | - +- all | lltag | 0.14.4-2 | - +- all | llvm-2.9-doc | 2.9+dfsg-7 | - +- all | llvm-2.9-examples | 2.9+dfsg-7 | - +- all | llvm-2.9-source | 2.9+dfsg-7 | - +- all | llvm-3.0-doc | 3.0-10 | - +- all | llvm-3.0-examples | 3.0-10 | - +- all | llvm-3.0-source | 3.0-10 | - +- all | llvm-3.1-doc | 3.1-1 | - +- all | llvm-3.1-examples | 3.1-1 | - +- all | llvm-3.1-source | 3.1-1 | - +- all | lmms-common | 0.4.10-2.3 | - +- all | lmodern | 2.004.2-1 | - +- all | localepurge | 0.6.3+deb7u1 | - +- all | locales | 2.13-38+deb7u1 | - +- all | localization-config | 1.07+nmu1 | - +- all | logcheck | 1.3.15 | - +- all | logcheck-database | 1.3.15 | - +- all | loggerhead | 1.19~bzr461-1 | - +- all | loggerhead-doc | 1.19~bzr461-1 | - +- all | logidee-tools | 1.2.12 | - +- all | logisim | 2.7.1~dfsg-1 | - +- all | logreq | 1.0-1 | - +- all | logtail | 1.3.15 | - +- all | logwatch | 7.4.0+svn20120502rev103-1 | - +- all | lojban-common | 1.5+dfsg-0.1 | - +- all | loki-doc | 2.4.7.4-4 | - +- all | londonlaw | 0.2.1-15.1 | - +- all | lookup-el | 1.4.1-8 | - +- all | lordsawar-data | 0.2.0-2.1 | - +- all | lottanzb | 0.6-1 | - +- all | lout-common | 3.39-1 | - +- all | lout-doc | 3.39-1 | - +- all | love-doc | 0.8.0-1+deb7u1 | - +- all | lp-solve-doc | 5.5.0.13-7 | - +- all | lprng-doc | 3.8.A~rc2-3 | - +- all | lptools | 0.0.1~bzr38-1 | - +- all | lsb | 4.1+Debian8+deb7u1 | - +- all | lsb-base | 4.1+Debian8+deb7u1 | - +- all | lsb-invalid-mta | 4.1+Debian8+deb7u1 | - +- all | lsb-release | 4.1+Debian8+deb7u1 | - +- all | lsdb | 0.11-10 | - +- all | lsh-doc | 2.0.4-dfsg-11 | - +- all | lshell | 0.9.15.1-1 | - +- all | ltsp-controlaula | 1.8.0-3 | - +- all | ltsp-docs | 1.1-1 | - +- all | ltsp-server | 5.4.2-6 | - +- all | ltsp-server-standalone | 5.4.2-6 | - +- all | ltspfsd | 1.1-2 | - +- all | lua-cgi | 5.1.4+dfsg-2 | - +- all | lua-copas | 1.1.6-5 | - +- all | lua-cosmo | 10.04.06-4 | - +- all | lua-coxpcall | 1.13.0-6 | - +- all | lua-dbi-common | 0.5+svn78-4 | - +- all | lua-doc | 3.0.1-5 | - +- all | lua-json | 1.3-1 | - +- all | lua-leg | 0.1.2-8 | - +- all | lua-leg-dev | 0.1.2-8 | - +- all | lua-logging | 1.2.0-1 | - +- all | lua-markdown | 0.32-4 | - +- all | lua-mode | 20110121-1 | - +- all | lua-orbit | 2.2.0+dfsg1-1 | - +- all | lua-penlight | 1.0.2+htmldoc-2 | - +- all | lua-penlight-dev | 1.0.2+htmldoc-2 | - +- all | lua-rex-doc | 2.6.0-2 | - +- all | lua-soap | 3.0-3 | - +- all | lua-sql-doc | 2.3.0-1+build0 | - +- all | lua-wsapi | 1.5-3 | - +- all | lua-wsapi-doc | 1.5-3 | - +- all | lua-xmlrpc | 1.2.1-5 | - +- all | lua5.1-doc | 5.1.5-4 | - +- all | lua5.1-policy | 33 | - +- all | lua5.1-policy-dev | 33 | - +- all | lua5.2-doc | 5.2.1-3 | - +- all | lua50-doc | 5.0.3-6 | - +- all | luadoc | 3.0.1-5 | - +- all | luarocks | 2.0.9-1 | - +- all | luasseq | 2.1-4 | - +- all | luckybackup-data | 0.4.7-2 | - +- all | ludevit | 7 | - +- all | lunch | 0.4.0-1 | - +- all | luola-data | 1.3.2-9 | - +- all | luola-levels | 6.0-5 | - +- all | luola-nostalgy | 1.2-3 | - +- all | lush-library | 1.2.1-9+cvs20110227+nmu1 | - +- all | lutefisk-doc | 1.0.5a.cleaned-1 | - +- all | lv2-c++-tools-doc | 1.0.4-3 | - +- all | lv2core | 6.0+dfsg0-2 | - +- all | lxctl | 0.3.1+debian-2 | - +- all | lxde | 4+nmu1 | - +- all | lxde-common | 0.5.5-6 | - +- all | lxde-core | 4+nmu1 | - +- all | lxde-icon-theme | 0.5.0-1 | - +- all | lxmenu-data | 0.1.2-2 | - +- all | lybniz | 1.3.2-2 | - +- all | lynis | 1.3.0-1 | - +- all | lynx | 2.8.8dev.12-2 | - +- all | lynx-cur-wrapper | 2.8.8dev.12-2 | - +- all | lyskom-elisp-client | 0.48+cvs20100715-3 | - +- all | lyx-common | 2.0.3-3 | - +- all | lzma-dev | 9.22-2 | - +- all | m17n-contrib | 1.1.13-2 | - +- all | m17n-db | 1.6.3-2 | - +- all | m17n-docs | 1.6.2-2 | - +- all | m2300w | 0.51-7 | - +- all | m4-doc | 1.4.16-3 | - +- all | macchanger-gtk | 1.1-4 | - +- all | madbomber-data | 0.2.5-5 | - +- all | madison-lite | 0.15 | - +- all | madlib-doc | 1.3.0-2.1 | - +- all | magic-haskell-doc | 1:8 | - +- all | magicmaze | 1.4.3.2.dfsg-1.1 | - +- all | magicor | 1.1-4 | - +- all | magicor-data | 1.1-4 | - +- all | magit | 1.1.1-2 | - +- all | mail-expire | 0.7 | - +- all | mailcrypt | 3.5.9-5 | - +- all | maildirsync | 1.2-1 | - +- all | mailgraph | 1.14-11 | - +- all | mailping | 0.0.4-2 | - +- all | mailplate | 0.2-1 | - +- all | mailutils-common | 1:2.99.97-3 | - +- all | mailutils-doc | 1:2.99.97-3 | - +- all | maint-guide | 1.2.31 | - +- all | maint-guide-ca | 1.2.31 | - +- all | maint-guide-es | 1.2.31 | - +- all | maint-guide-fr | 1.2.31 | - +- all | maint-guide-it | 1.2.31 | - +- all | maint-guide-ja | 1.2.31 | - +- all | maint-guide-ru | 1.2.31 | - +- all | makedev | 2.3.1-92 | - +- all | makejail | 0.0.5-10 | - +- all | makepasswd | 1.10-8 | - +- all | makepatch | 2.03-1 | - +- all | makeself | 2.1.5-1 | - +- all | malaga-doc | 7.12-4 | - +- all | malaga-mode | 7.12-4 | - +- all | mana-data | 0.6.1-2 | - +- all | manderlbot | 0.9.2-17 | - +- all | mandos | 1.5.5-1 | - +- all | manpages | 3.44-1 | - +- all | manpages-de | 1.2-1 | - +- all | manpages-de-dev | 1.2-1 | - +- all | manpages-dev | 3.44-1 | - +- all | manpages-es | 1.55-10 | - +- all | manpages-es-extra | 0.8a-17 | - +- all | manpages-fr | 3.44d1p1-1 | - +- all | manpages-fr-dev | 3.44d1p1-1 | - +- all | manpages-fr-extra | 20130226 | - +- all | manpages-hu | 20010119-5 | - +- all | manpages-it | 2.80-3 | - +- all | manpages-ja | 0.5.0.0.20120606-1 | - +- all | manpages-ja-dev | 0.5.0.0.20120606-1 | - +- all | manpages-pl | 1:0.3-1 | - +- all | manpages-pl-dev | 1:0.3-1 | - +- all | manpages-pt | 20040726-4 | - +- all | manpages-pt-dev | 20040726-4 | - +- all | manpages-ru | 0.98-4 | - +- all | manpages-tr | 1.0.5.1-2 | - +- all | manpages-zh | 1.5.2-1 | - +- all | mantis | 1.2.11-1.2 | - +- all | mapivi | 0.9.7-1 | - +- all | mapnik-doc | 2.0.0+ds1-3 | - +- all | mapserver-doc | 6.0.1-3.2+deb7u2 | - +- all | maptransfer | 0.3-1 | - +- all | maptransfer-server | 0.3-1 | - +- all | maradns-docs | 1.4.12-5 | - +- all | marble-data | 4:4.8.4-3 | - +- all | maria-doc | 1.3.5-4 | - +- all | markdown | 1.0.1-7 | - +- all | mason | 1.0.0-12.3 | - +- all | massxpert-data | 3.2.3-1 | - +- all | massxpert-doc | 3.2.3-1 | - +- all | mat | 0.3.2-1 | - +- all | matchbox | 1:5 | - +- all | matchbox-common | 0.9.1-5 | - +- all | matchbox-themes-extra | 0.3-3 | - +- all | mathgl-doc-en | 1.11.2-17 | - +- all | mathgl-doc-ru | 1.11.2-17 | - +- all | mathpartir | 1.2.0-3 | - +- all | mathpiper | 0.81f+svn4469+dfsg3-1 | - +- all | matlab-support-dev | 0.0.18 | - +- all | mauve | 20120103-1 | - +- all | maven | 3.0.4-3 | - +- all | maven-ant-helper | 7.7 | - +- all | maven-debian-helper | 1.5.1 | - +- all | maven-repo-helper | 1.7.1 | - +- all | maven2 | 2.2.1-12 | - +- all | maxima-doc | 5.27.0-3 | - +- all | maxima-emacs | 5.27.0-3 | - +- all | maxima-share | 5.27.0-3 | - +- all | maxima-src | 5.27.0-3 | - +- all | maxima-test | 5.27.0-3 | - +- all | mazeofgalious-data | 0.62.dfsg2-3 | - +- all | mb2md | 3.20-4 | - +- all | mbot | 0.3-7 | - +- all | mboxcheck | 0.2.0 | - +- all | mc-data | 3:4.8.3-10 | - +- all | mcl-doc | 1:12-068-1 | - +- all | mcollective | 2.0.0+dfsg-2 | - +- all | mcollective-client | 2.0.0+dfsg-2 | - +- all | mcollective-common | 2.0.0+dfsg-2 | - +- all | mcollective-doc | 2.0.0+dfsg-2 | - +- all | mcomix | 0.98-1 | - +- all | mcpp-doc | 2.7.2-1.1 | - +- all | mcu8051ide | 1.3.7-1 | - +- all | mdbtools-doc | 0.7-1+deb7u1 | - +- all | mecab-ipadic | 2.7.0-20070801+main-1 | - +- all | mecab-ipadic-utf8 | 2.7.0-20070801+main-1 | - +- all | mecab-jumandic | 5.1+20070304-3 | - +- all | mecab-jumandic-utf8 | 5.1+20070304-3 | - +- all | mecab-naist-jdic | 0.6.3.b-20111013-3 | - +- all | mecab-naist-jdic-eucjp | 0.6.3.b-20111013-3 | - +- all | med-bio | 1.13.2 | - +- all | med-bio-dev | 1.13.2 | - +- all | med-cloud | 1.13.2 | - +- all | med-config | 1.13.2 | - +- all | med-data | 1.13.2 | - +- all | med-dental | 1.13.2 | - +- all | med-epi | 1.13.2 | - +- all | med-imaging | 1.13.2 | - +- all | med-imaging-dev | 1.13.2 | - +- all | med-oncology | 1.13.2 | - +- all | med-pharmacy | 1.13.2 | - +- all | med-physics | 1.13.2 | - +- all | med-practice | 1.13.2 | - +- all | med-psychology | 1.13.2 | - +- all | med-rehabilitation | 1.13.2 | - +- all | med-statistics | 1.13.2 | - +- all | med-tasks | 1.13.2 | - +- all | med-tools | 1.13.2 | - +- all | med-typesetting | 1.13.2 | - +- all | media-player-info | 17-1 | - +- all | mediatomb | 0.12.1-4 | - +- all | mediatomb-daemon | 0.12.1-4 | - +- all | mediawiki | 1:1.19.5-1+deb7u1 | - +- all | mediawiki-extensions | 2.11 | - +- all | mediawiki-extensions-base | 2.11 | - +- all | mediawiki-extensions-collection | 2.11 | - +- all | mediawiki-extensions-confirmedit | 2.11 | - +- all | mediawiki-extensions-geshi | 2.11 | - +- all | mediawiki-extensions-graphviz | 2.11 | - +- all | mediawiki-extensions-ldapauth | 2.11 | - +- all | mediawiki-extensions-math | 2:1.0+git20120528-6 | - +- all | mediawiki-extensions-openid | 2.11 | - +- all | megaglest-data | 3.6.0.3-1 | - +- all | melange | 1:2012.1-3 | - +- all | melange-client | 0.1-1.2 | - +- all | meld | 1.6.1-1 | - +- all | melting-gui | 4.3c-2 | - +- all | mencal | 2.3-9 | - +- all | menu-l10n | 0.20120730 | - +- all | menu-xdg | 0.5 | - +- all | merb-core | 1.1.3+dfsg-2 | - +! all | mercurial-common | 2.2.2-3 | 2.8.2-1~bpo70+1 +- all | mercurial-git | 0.3.2-2 | - +- all | mercurial-nested | 0.5-3 | - +- all | mercurial-server | 1.2-2 | - +- all | metacity-common | 1:2.34.3-4 | - +- all | metacity-themes | 1.0.11 | - +- all | metainit | 0.0.5 | - +- all | metche | 1:1.2.2-2 | - +- all | mew | 1:6.4-2 | - +- all | mew-beta | 7.0.50~6.5~rc2+0.20120405-1 | - +- all | mffm-timecode-dev | 1.6-2 | - +- all | mgen-doc | 5.02+dfsg2-3 | - +- all | mgetty-docs | 1.1.36-1.6 | - +- all | mgm | 1.1.svn.20080520-1 | - +- all | mgm-doc | 1.1.svn.20080520-1 | - +- all | mh-book | 200605-1 | - +- all | mh-e | 8.3-1.1 | - +- all | mha4mysql-manager | 0.53-3 | - +- all | mha4mysql-node | 0.53-1 | - +- all | mhc | 0.25.1+20120403-2 | - +- all | mhonarc | 2.6.18-2 | - +- all | micropolis-data | 0.0.20071228-5 | - +- all | midge | 0.2.41-2 | - +- all | mididings | 0~20120419~ds0-1 | - +- all | mididings-doc | 0~20120419~ds0-1 | - +- all | migemo | 20110227-7 | - +- all | migemo-el | 20110227-7 | - +- all | migrationtools | 47-8 | - ++ all | mikutter | - | 0.2.2.1476+dfsg-2~bpo70+1 +- all | mime-construct | 1.11 | - +- all | mime-support | 3.52-1 | - +- all | mimefilter | 1.7+nmu1 | - +- all | mimms | 3.2.2-1 | - +- all | min12xxw | 0.0.9-6 | - +- all | minbar-data | 0.2.1-7 | - +- all | minetest-common | 0.3.1+dfsg-4 | - +- all | ming-fonts-dejavu | 1:0.4.4-1.1 | - +- all | ming-fonts-opensymbol | 1:0.4.4-1.1 | - +- all | mingw-w64 | 2.0.3-1 | - +- all | mingw-w64-dev | 2.0.3-1 | - +- all | mingw-w64-i686-dev | 2.0.3-1 | - +- all | mingw-w64-x86-64-dev | 2.0.3-1 | - +- all | mingw32-ocaml | 3.12.1+debian3 | - +- all | mingw32-runtime | 3.13-1 | - +- all | mini-dinstall | 0.6.29 | - +- all | minirok | 2.1-1 | - +- all | minlog | 4.0.99.20100221-5.2 | - +- all | mipe | 1.1-4 | - +- all | mira-doc | 3.4.0.1-3 | - +- all | mira-examples | 3.4.0.1-3 | - ++ all | mirall-doc | - | 1.5.0+dfsg-4~bpo70+1 ++ all | mirall-l10n | - | 1.5.0+dfsg-4~bpo70+1 +- all | mirmon | 2.6-2 | - +- all | miro-data | 4.0.4-1 | - +- all | mirrormagic-data | 2.0.2.0deb1-11 | - +- all | miscfiles | 1.4.2.dfsg.1-9 | - +- all | missingh-doc | 1:8 | - +- all | mit-scheme-doc | 9.1-1 | - +- all | mixxx-data | 1.10.1~dfsg0-1 | - +- all | mkgmap | 0.0.0+svn1067-1 | - +- all | mkgmapgui | 1.1.ds-2 | - +- all | mklibs | 0.1.34 | - +- all | mktemp | 8.13-3.5 | - +- all | mlmmj-php-web | 1.2.18.0-2 | - +- all | mlmmj-php-web-admin | 1.2.18.0-2 | - +- all | mlton | 20100608-5 | - +- all | mlton-basis | 20100608-5 | - +- all | mlton-doc | 20100608-5 | - +- all | mm-common | 0.9.5-1 | - +- all | mmake | 2.3-5.1 | - +- all | mmass | 5.1.0-2 | - +- all | mmm-mode | 0.4.8-7 | - +- all | mmpong-gl-data | 0.9.1-2.1 | - +- all | mnemosyne | 2.0~RC1-3 | - +- all | mnemosyne-blog | 0.12-2 | - +- all | moap | 0.2.7-1 | - +- all | mobile-atlas-creator | 1.9.7-1 | - +- all | mobile-broadband-provider-info | 20120708-1 | - +- all | moblin-cursor-theme | 0.3-3 | - +- all | moblin-icon-theme | 0.10.0-1 | - +- all | moblin-menus | 0.1.6-1 | - +- all | moblin-sound-theme | 0.3-1 | - +- all | mobyle | 1.0.6~dfsg-1 | - +- all | mobyle-programs | 4.0-1 | - ++ all | mock | - | 1.1.33-1~bpo7+1 +- all | mod-gearman-doc | 1.3.6-1 | - +- all | mod-musicindex-common | 1.3.7-2 | - +- all | model-builder | 0.4.1-6 | - +- all | modsecurity-crs | 2.2.5-2 | - +! all | module-assistant | 0.11.4 | 0.11.6~bpo70+1 +- all | module-init-tools | 9-3 | - +- all | molly-guard | 0.4.5-1 | - +- all | mon-client | 1.2.0-2 | - +- all | monajat | 2.6.3-1 | - +- all | monajat-applet | 2.6.3-1 | - +- all | monajat-data | 2.6.3-1 | - +- all | monajat-mod | 2.6.3-1 | - +- all | monajat-screenlet | 2.6.3-1 | - +- all | monav-data | 0.3-6 | - ++ all | monkeysign | - | 1.1~bpo70+1 +- all | monkeysphere | 0.35-2 | - +- all | monkeystudio-common | 1.9.0.2-2 | - +- all | monkeytail | 0.3.2-3 | - +- all | mono-2.0-gac | 2.10.8.1-8 | - +- all | mono-2.0-service | 2.10.8.1-8 | - +- all | mono-4.0-gac | 2.10.8.1-8 | - +- all | mono-4.0-service | 2.10.8.1-8 | - +- all | mono-addins-utils | 0.6.2-2 | - +- all | mono-apache-server | 2.10-2.4 | - +- all | mono-apache-server2 | 2.10-2.4 | - +- all | mono-apache-server4 | 2.10-2.4 | - +- all | mono-basic-dbg | 2.10-2 | - +- all | mono-csharp-shell | 2.10.8.1-8 | - +- all | mono-dbg | 2.10.8.1-8 | - +- all | mono-devel | 2.10.8.1-8 | - +- all | mono-dmcs | 2.10.8.1-8 | - +- all | mono-fastcgi-server | 2.10-2.4 | - +- all | mono-fastcgi-server2 | 2.10-2.4 | - +- all | mono-fastcgi-server4 | 2.10-2.4 | - +- all | mono-gac | 2.10.8.1-8 | - +- all | mono-gmcs | 2.10.8.1-8 | - +- all | mono-mcs | 2.10.8.1-8 | - +- all | mono-profiler | 2.10-6 | - +- all | mono-tools-devel | 2.10-6 | - +- all | mono-tools-gui | 2.10-6 | - +- all | mono-upnp-bin | 0.1.2-1 | - +- all | mono-vbnc | 2.10-2 | - +- all | mono-winforms-a11y | 2.1-2 | - +- all | mono-xbuild | 2.10.8.1-8 | - +- all | mono-xsp | 2.10-2.4 | - +- all | mono-xsp2 | 2.10-2.4 | - +- all | mono-xsp2-base | 2.10-2.4 | - +- all | mono-xsp4 | 2.10-2.4 | - +- all | mono-xsp4-base | 2.10-2.4 | - +- all | monobristol | 0.60.3-2.1 | - +- all | monodevelop | 3.0.3.2+dfsg-1 | - +- all | monodevelop-database | 3.0.3.2+dfsg-1 | - +- all | monodevelop-debugger-gdb | 3.0.3.2-1 | - +- all | monodevelop-monogame | 2.5.1+dfsg-3 | - +- all | monodevelop-nunit | 3.0.3.2+dfsg-1 | - +- all | monodevelop-versioncontrol | 3.0.3.2+dfsg-1 | - +- all | monodoc-avahi-manual | 0.6.19-4.2 | - +- all | monodoc-banshee-manual | 2.4.1-3 | - +- all | monodoc-base | 2.10.8.1-8 | - +- all | monodoc-browser | 2.10-6 | - +- all | monodoc-clutter-manual | 1.0.0~alpha3~git20090817.r1.349dba6-8 | - +- all | monodoc-db4o-manual | 8.0.184.15484+dfsg-2 | - +- all | monodoc-gdata-manual | 2.1.0.0-1 | - +- all | monodoc-gkeyfile-manual | 0.1-4 | - +- all | monodoc-gmime2.6-manual | 2.6.10-1 | - +- all | monodoc-gnome-keyring-manual | 1.0.0-4 | - +- all | monodoc-gstreamer-manual | 0.9.2-4 | - +- all | monodoc-gtk2.0-manual | 2.12.10-5 | - +- all | monodoc-gudev-manual | 0.1-3 | - +- all | monodoc-http | 2.10-6 | - +- all | monodoc-hyena-manual | 0.5-2 | - +- all | monodoc-manual | 2.10.8.1-8 | - +- all | monodoc-mono-fuse-manual | 0.4.2+dfsg-3 | - +- all | monodoc-mono-upnp-manual | 0.1.2-1 | - +- all | monodoc-mono-zeroconf-manual | 0.9.0-4 | - +- all | monodoc-monogame-manual | 2.5.1+dfsg-3 | - +- all | monodoc-mysql-manual | 6.4.3-2 | - +- all | monodoc-newtonsoft-json-manual | 4.5r6-1 | - +- all | monodoc-notify-sharp-manual | 0.4.0~r3032-6 | - +- all | monodoc-nunit-manual | 2.6.0.12051+dfsg-2 | - +- all | monodoc-opentk-manual | 1.0.20101006+dfsg1-1 | - +- all | monodoc-poppler-manual | 0.0.3-2 | - +- all | monodoc-rhash-manual | 1.2.9-8+deb7u1 | - +- all | monodoc-semweb-manual | 1.05+dfsg-5 | - +- all | monodoc-taglib-manual | 2.0.4.0-1 | - +- all | monodoc-taoframework-manual | 2.1.svn20090801-9 | - +- all | monodoc-webkit-manual | 0.3-6 | - +- all | monodoc-zeitgeist-manual | 0.8.0.0-4 | - +- all | monotone-doc | 1.0-6 | - +- all | monotone-extras | 1.0-6 | - +- all | monotone-server | 1.0-6 | - +- all | monsterz-data | 0.7.1-4 | - +- all | montecarlo-base | 20061220+dfsg3-2 | - +- all | montecarlo-data | 20061220+dfsg3-2 | - +- all | moon-lander-data | 1:1.0-4.1 | - +- all | moosic | 1.5.6-1 | - +- all | moovida | 1.0.9+bzr1614-1.1 | - +- all | moovida-plugins-bad | 1.0.9+bzr1614-1 | - +- all | moovida-plugins-good | 1.0.9+bzr1614-1 | - +- all | moovida-plugins-ugly | 1.0.9+bzr1614-1 | - +- all | morse-simulator-data | 0.5.2-1 | - +- all | morse-simulator-doc | 0.5.2-1 | - +- all | mova | 4.0-4.2 | - +- all | movabletype-opensource | 5.1.4+dfsg-4+deb7u1 | - +- all | movabletype-plugin-core | 5.1.4+dfsg-4+deb7u1 | - +- all | movabletype-plugin-zemanta | 5.1.4+dfsg-4+deb7u1 | - +- all | movixmaker-2 | 0.8.4-2 | - +- all | mozart-doc | 1.4.0-8 | - +- all | mozart-stdlib | 20060615-6 | - +- all | mozc-data | 1.5.1090.102-4+deb7u1 | - +- all | mozilla-biofox | 1.6-1 | - +- all | mozilla-devscripts | 0.32 | - +- all | mozilla-diggler | 0.9-21 | - +- all | mozilla-livehttpheaders | 0.17-3 | - +- all | mozilla-noscript | 2.1.4-1 | - +- all | mozilla-nukeimage | 0.3-12 | - +! all | mozilla-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- all | mozvoikko | 2.0.1-1 | - +- all | mp3burn | 0.4.2-2.1 | - +- all | mp3cd | 1.27.0-2 | - +- all | mp3diags-doc | 1.0.11.076-3 | - +- all | mp3report | 1.0.2-3 | - +- all | mp3roaster | 0.3.0-6 | - +- all | mpb-doc | 1.4.2-18 | - +- all | mpc-ace | 6.0.3+dfsg-0.1 | - +- all | mpd-sima | 0.9.2-2 | - +- all | mpdris | 0.1.2-2 | - +- all | mpdtoys | 0.24 | - +- all | mpg123-el | 1:1.58-1 | - +- all | mpich2-doc | 1.4.1-4.2 | - +- all | mplayer-doc | 2:1.0~rc4.dfsg1+svn34540-1 | - +- all | mplayer-skin-blue | 1.6-2 | - +- all | mpqc-openmpi | 2.3.1-14 | - +- all | mpris-remote | 0.0~1.gpb7c7f5c6-1 | - +- all | mr | 1.12 | - +- all | mrb | 0.1 | - +- all | mrbayes-doc | 3.2.1+dfsg-1 | - +- all | mrename | 1.2-12 | - +- all | mricron-data | 0.20120505.1~dfsg.1-1 | - +- all | mricron-doc | 0.20120505.1~dfsg.1-1 | - +- all | mrmpi-doc | 1.0~20110620.dfsg-2 | - +- all | mrtg-contrib | 2.17.4-2 | - +- all | mrtg-ping-probe | 2.2.0-1 | - +- all | mrtg-rrd | 0.7-5 | - +- all | mrtrix-doc | 0.2.10-2 | - +- all | mrxvt-common | 0.5.4-1.1 | - +- all | mscore | 1.2+dfsg-1 | - +- all | mscore-common | 1.2+dfsg-1 | - +- all | msmtp-mta | 1.4.28-1 | - +- all | msort-gui | 8.52-1.3 | - +- all | msp430mcu | 20120406-2 | - +- all | msva-perl | 0.8.1-2 | - +- all | mtink-doc | 1.0.16-6 | - +- all | mtkbabel | 0.8.3.1-1 | - +- all | mu-cade-data | 0.11.dfsg1-6 | - +- all | mu-cite | 8.1+0.20120227-1 | - +- all | mu4e | 0.9.8.4-3+deb7u1 | - +- all | mucous | 1:0.2+svn20100315.r1208-2 | - +- all | mueller7-dict | 2002.02.27-8 | - +- all | mueller7accent-dict | 2002.02.27-8 | - +- all | multex-base | 1.0-1.1 | - +- all | multiboot | 0.6.96-1.1 | - +- all | multiboot-doc | 0.97-67 | - +- all | multipath-tools-boot | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- all | multistrap | 2.1.20 | - +- all | mumble-django | 2.7-7 | - +- all | mummer-doc | 3.23~dfsg-2 | - +- all | mummy-doc | 1.0.2-5 | - +! all | munin | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-async | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-common | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-doc | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +- all | munin-libvirt-plugins | 0.0.6-1 | - +! all | munin-node | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-core | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-extra | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-java | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +- all | munin-plugins-openstack | 1.20120627-1 | - +- all | mupen64plus | 1.99.5+1 | - +- all | mupen64plus-audio-all | 1.99.5+1 | - +- all | mupen64plus-data | 1.99.5-6 | - +- all | mupen64plus-input-all | 1.99.5+1 | - +- all | mupen64plus-rsp-all | 1.99.5+1 | - +- all | mupen64plus-video-all | 1.99.5+1 | - +- all | murmur | 1:0.2+svn20100315.r1208-2 | - +- all | murrine-themes | 0.98.4 | - +- all | muse-el | 3.20+dfsg-0.1 | - +- all | museekd-tools | 1:0.2+svn20100315.r1208-2 | - +- all | museeq-locales | 1:0.2+svn20100315.r1208-2 | - +- all | musescore-common | 1.2+dfsg-1 | - +- all | musescore-soundfont-gm | 1.2+dfsg-1 | - +- all | musetup-gtk | 1:0.2+svn20100315.r1208-2 | - +- all | music-doc | 1.0.7-1.2 | - +- all | musiclibrarian | 1.6-2.1 | - +- all | mussh | 1.0-1 | - +- all | mustang-testdata | 3.2.1-3 | - +- all | mutter-common | 3.4.1-5 | - +- all | muttprint | 0.73-4 | - +- all | muttprint-manual | 0.73-4 | - +- all | muttprofile | 1.0.1-4 | - +- all | mylvmbackup | 0.13-2 | - +- all | mypaint-data | 1.0.0-1 | - +- all | myspell-af | 1:3.3.0-4 | - +- all | myspell-bg | 4.1-3 | - +- all | myspell-ca | 0.20111230b-4 | - +- all | myspell-cs | 20040229-5.1 | - +- all | myspell-da | 1.6.25-1.1 | - +- all | myspell-de-at | 20120607-1 | - +- all | myspell-de-ch | 20120607-1 | - +- all | myspell-de-de | 20120607-1 | - +- all | myspell-de-de-oldspell | 1:2-28 | - +- all | myspell-el-gr | 0.8-1.1 | - +- all | myspell-en-au | 2.1-5.3 | - +- all | myspell-en-gb | 1:3.3.0-4 | - +- all | myspell-en-us | 1:3.3.0-4 | - +- all | myspell-en-za | 1:3.3.0-4 | - +- all | myspell-eo | 2.1.2000.02.25-45 | - +- all | myspell-es | 1.11-4 | - +- all | myspell-et | 1:20030606-20 | - +- all | myspell-fa | 0.20070816-3 | - +- all | myspell-fi | 0.7-18 | - +- all | myspell-fo | 0.4.1-1 | - +- all | myspell-fr | 1.4-26 | - +- all | myspell-fr-gut | 1:1.0-30 | - +- all | myspell-ga | 2.0-21 | - +- all | myspell-gd | 0.50-8 | - +- all | myspell-gv | 0.50-9.1 | - +- all | myspell-he | 1.1-2 | - +- all | myspell-hr | 20060617-2.3 | - +- all | myspell-hu | 1.2+repack-2 | - +- all | myspell-hy | 0.20.0-2 | - +- all | myspell-it | 1:3.3.0-4 | - +- all | myspell-ku | 0.20.0-2 | - +- all | myspell-lt | 1.2.1-3 | - +- all | myspell-lv | 0.9.4-5 | - +- all | myspell-nb | 2.0.10-5.1 | - +- all | myspell-nl | 1:2.10-1 | - +- all | myspell-nn | 2.0.10-5.1 | - +- all | myspell-pl | 20120520-1 | - +- all | myspell-pt | 20091013-4 | - +- all | myspell-pt-br | 20110527-2 | - +- all | myspell-pt-pt | 20091013-4 | - +- all | myspell-ru | 0.99g5-18 | - +- all | myspell-sk | 0.5.5a-2.3 | - +- all | myspell-sl | 1.0-5 | - +- all | myspell-sv-se | 1.51-1 | - +- all | myspell-sw | 1:3.3.0-4 | - +- all | myspell-th | 1:3.3.0-4 | - +- all | myspell-tl | 0.4-0-10 | - +- all | myspell-uk | 1.6.5-2 | - +- all | mysql-client | 5.5.33+dfsg-0+wheezy1 | - +- all | mysql-common | 5.5.33+dfsg-0+wheezy1 | - +- all | mysql-mmm-agent | 2.2.1-1.1 | - +- all | mysql-mmm-common | 2.2.1-1.1 | - +- all | mysql-mmm-monitor | 2.2.1-1.1 | - +- all | mysql-mmm-tools | 2.2.1-1.1 | - +- all | mysql-server | 5.5.33+dfsg-0+wheezy1 | - +- all | mysql-utilities | 1.0.5-1 | - +- all | mysql-workbench-data | 5.2.40+dfsg-2 | - +- all | mysqltuner | 1.2.0-1 | - +- all | mysqmail | 0.4.9-10 | - +- all | mythes-ca | 1:3.3.0-4 | - +- all | mythes-cs | 1:3.3.0-4 | - +- all | mythes-de | 20120516-2 | - +- all | mythes-de-ch | 20120516-2 | - +- all | mythes-en-au | 2.1-5.3 | - +- all | mythes-en-us | 1:3.3.0-4 | - +- all | mythes-fr | 1:3.3.0-4 | - +- all | mythes-hu | 1:3.3.0-4 | - +- all | mythes-it | 2.0.7.gh.deb1-4.1 | - +- all | mythes-ne | 1:3.3.0-4 | - +- all | mythes-pl | 1.5-4 | - +- all | mythes-ro | 1:3.3.0-4 | - +- all | mythes-ru | 1:3.3.0-4 | - +- all | mythes-sk | 1:3.3.0-4 | - +- all | mythtv-status | 0.10.2-3 | - +- all | mytop | 1.6-6 | - +- all | mzclient | 0.9.0-4 | - +- all | nadoka | 0.7.6-1 | - +- all | nagios-images | 0.7 | - +- all | nagios-plugin-check-multi | 0.26-1 | - +! all | nagios-plugins | 1.4.16-1 | 1.5-1~bpo70+1 +- all | nagios-plugins-openstack | 1.20120627-2 | - +- all | nagios-snmp-plugins | 1.1.1-8 | - +! all | nagios3-common | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! all | nagios3-doc | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +- all | nagstamon | 0.9.9-1 | - +- all | nagvis | 1:1.6.6+dfsg.1-3 | - +- all | nagvis-demos | 1:1.6.6+dfsg.1-3 | - +- all | nagzilla | 1.5.5-1-1 | - +- all | naist-jdic | 1:0.4.3-3.1 | - +- all | naist-jdic-utf8 | 1:0.4.3-3.1 | - +- all | nam-examples | 1.15-1 | - +- all | nama | 1.078-2 | - +- all | namazu2-common | 2.0.21-6 | - +- all | namazu2-index-tools | 2.0.21-6 | - +- all | namebench | 1.3.1+dfsg-2 | - +- all | nanoblogger | 3.4.2-3 | - +- all | nanoblogger-extra | 3.4.2-2 | - +- all | nant | 0.92~rc1+dfsg-2 | - +- all | nas-doc | 1.9.3-5wheezy1 | - +- all | natbraille | 2.0rc3-1 | - +- all | natbraille-doc | 2.0rc3-1 | - +- all | naturaldocs | 1.51-1 | - +- all | nautilus-bzr | 0.103.0+bzr792-3 | - +- all | nautilus-compare | 0.0.4-1 | - +- all | nautilus-data | 3.4.2-1+build1 | - +- all | nautilus-emblems | 0.1.0-2 | - +- all | nautilus-image-manipulator | 1.1-2 | - +- all | nautilus-pastebin | 0.7.1-1 | - +- all | nautilus-scripts-manager | 1.7-1 | - +- all | navi2ch | 2.0.0~git20120331-1 | - +- all | navit-data | 0.5.0~svn5126+dfsg.1-3 | - +- all | nbibtex-doc | 0.9.18-10 | - +- all | ncbi-blast+-legacy | 2.2.26-3 | - +- all | ncbi-data | 6.1.20120620-2 | - +- all | ncbi-rrna-data | 6.1.20120620-2 | - +- all | ncmpc-lyrics | 0.17-1 | - +- all | ncurses-base | 5.9-10 | - +- all | ncurses-doc | 5.9-10 | - +- all | ncurses-term | 5.9-10 | - +- all | ndiswrapper-common | 1.57-1 | - +- all | ndiswrapper-dkms | 1.57-1 | - +- all | ndiswrapper-source | 1.57-1 | - +- all | ndoutils-doc | 1.4b9-1.1 | - +- all | ne-doc | 2.4-1 | - +- all | neko-dev | 1.8.1-6 | - +- all | neobio | 0.0.20030929-1 | - +- all | netbase | 5.0 | - +- all | netbeans | 7.0.1+dfsg1-5 | - +- all | netcat | 1.10-40 | - +- all | netcdf-doc | 1:4.1.3-6 | - +- all | netcdf-ruby | 0.6.6-1 | - +- all | netcdf-ruby1.8 | 0.6.6-1 | - +- all | netcdf-ruby1.8-dbg | 0.6.6-1 | - +- all | netcdf-ruby1.9.1 | 0.6.6-1 | - +- all | netcdf-ruby1.9.1-dbg | 0.6.6-1 | - +- all | netdisco-backend | 1.0-2 | - +- all | netdisco-common | 1.0-2 | - +- all | netdisco-frontend | 1.0-2 | - +- all | netenv | 0.94.3-30 | - +- all | nethack-el | 1:0.9.5-3 | - +- all | nethack-spoilers | 3.4.3+20110109-1 | - +- all | netio230a-gui | 1.0.1-3 | - +- all | netpanzer-data | 0.8.4.debian.1-1.1 | - +- all | netscript-2.4 | 5.2.12 | - +- all | netselect-apt | 0.3.ds1-25 | - +- all | netsurf | 2.9-2 | - +- all | netsurf-common | 2.9-2 | - +- all | netwag | 5.36.0-1.2 | - +- all | netwag-doc | 5.36.0-1.2 | - +- all | network-config | 0.2-1 | - +- all | netwox-doc | 5.36.0-1.2 | - +- all | neverball-common | 1.5.4-5 | - +- all | neverball-data | 1.5.4-5 | - +- all | neverputt-data | 1.5.4-5 | - +- all | newbiedoc | 0.8.0-2 | - +- all | newlib-m68hc1x | 1.18.0-6.2 | - +- all | newlib-source | 1.18.0-6.2 | - +- all | nexuiz | 2.5.2+dp-2 | - +- all | nexuiz-data | 2.5.2-6 | - +- all | nexuiz-music | 2.5.2-6 | - +- all | nexuiz-server | 2.5.2+dp-2 | - +- all | nexuiz-textures | 2.5.2-6 | - +- all | nfoview | 1.9.2-1 | - +- all | ng-common | 1.5~beta1-3 | - +! all | nginx | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-common | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-doc | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-naxsi-ui | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +- all | nglister | 1.0.1+nmu1 | - +- all | ngraph-gtk-addin-import-ps | 6.06.06-1 | - +- all | ngraph-gtk-addin-tex-equation | 6.06.06-1 | - +- all | ngraph-gtk-addins | 6.06.06-1 | - +- all | ngraph-gtk-doc | 6.06.06-1 | - +- all | nicotine | 1.2.16+dfsg-1 | - +- all | nicovideo-dl | 0.0.20120212-1 | - +- all | nigiri | 1.4.0+dfsg-1 | - +- all | nikwi-data | 0.0.20060823-2 | - +- all | nml | 0.2.3-1 | - +- all | node | 0.3.2-7.4 | - ++ all | node-less | - | 1.4.2-1~bpo70+1 ++ all | node-uglify | - | 1.3.4-1~bpo7+1 ++ all | nodejs-legacy | - | 0.10.21~dfsg1-1~bpo7+1 +- all | noiz2sa-data | 0.51a-9 | - +- all | nordugrid-arc-doc | 1.1.2-1 | - +- all | note | 1.3.7-1 | - +! all | notmuch-emacs | 0.13.2-1 | 0.16-1~bpo70+1 +! all | notmuch-mutt | 0.13.2-1 | 0.16-1~bpo70+1 +! all | notmuch-vim | 0.13.2-1 | 0.16-1~bpo70+1 +- all | nova-api | 2012.1.1-18 | - +- all | nova-api-ec2 | 2012.1.1-18 | - +- all | nova-api-metadata | 2012.1.1-18 | - +- all | nova-api-os-compute | 2012.1.1-18 | - +- all | nova-api-os-volume | 2012.1.1-18 | - +- all | nova-cert | 2012.1.1-18 | - +- all | nova-common | 2012.1.1-18 | - +- all | nova-compute | 2012.1.1-18 | - +- all | nova-compute-kvm | 2012.1.1-18 | - +- all | nova-compute-lxc | 2012.1.1-18 | - +- all | nova-compute-qemu | 2012.1.1-18 | - +- all | nova-compute-uml | 2012.1.1-18 | - +- all | nova-compute-xen | 2012.1.1-18 | - +- all | nova-console | 2012.1.1-18 | - +- all | nova-doc | 2012.1.1-18 | - +- all | nova-network | 2012.1.1-18 | - +- all | nova-objectstore | 2012.1.1-18 | - +- all | nova-scheduler | 2012.1.1-18 | - +- all | nova-volume | 2012.1.1-18 | - +- all | nova-xcp-network | 2012.1.1-18 | - +- all | nova-xcp-plugins | 2012.1.1-18 | - +- all | nova-xvpvncproxy | 2012.1.1-18 | - +- all | nowebm | 2.11b-7.1 | - +- all | ns2-doc | 2.35+dfsg-1 | - +- all | ns2-examples | 2.35+dfsg-1 | - +- all | nsd | 3.2.12-3+deb7u1 | - +- all | nsis-common | 2.46-7 | - +- all | nsis-doc | 2.46-7 | - +- all | nsis-pluginapi | 2.46-7 | - +- all | nsscache | 0.21.17-2 | - +- all | nted-doc | 1.10.18-4 | - +- all | ntfsdoc | 0.5-1 | - +- all | ntfsprogs | 1:2012.1.15AR.5-2.1 | - +- all | ntlmaps | 0.9.9.0.1-11.2 | - +- all | ntop-data | 3:4.99.3+ndpi5517+dfsg3-1 | - +- all | ntp-doc | 1:4.2.6.p5+dfsg-2 | - +- all | nuauth-utils | 2.4.3-2.2 | - +- all | nulog | 2.0.dfsg.1-2 | - +- all | num-utils | 0.5-11 | - +- all | nunit | 2.6.0.12051+dfsg-2 | - +- all | nunit-console | 2.6.0.12051+dfsg-2 | - +- all | nunit-gui | 2.6.0.12051+dfsg-2 | - +- all | nut | 2.6.4-2.3+deb7u1 | - +- all | nut-doc | 2.6.4-2.3+deb7u1 | - +- all | nut-monitor | 2.6.4-2.3+deb7u1 | - +- all | nuvola-icon-theme | 4:4.8.4-5 | - +- all | nvi-doc | 1.81.6-8.2 | - ++ all | nvidia-cuda-doc | - | 5.0.35-8~bpo70+1 +- all | nwchem-data | 6.1-6 | - +- all | nyancat-server | 1.0+git20120523.99dc310-1 | - +- all | oaklisp-doc | 1.3.3-5 | - +- all | oar-api | 2.5.2-3 | - +- all | oar-doc | 2.5.2-3 | - +- all | oar-web-status | 2.5.2-3 | - +- all | oasis | 0.2.0-6 | - ++ all | obfsproxy | - | 0.2.6-2~bpo70+1 +- all | oboinus | 2.2-4 | - +- all | obrowser-doc | 1.1.1+dfsg-1 | - +- all | ocaml-batteries-included | 1.4.3-1 | - +- all | ocaml-core | 3.12.0.1 | - +- all | ocaml-libs | 3.12.0.1 | - +- all | ocaml-mode | 3.12.1-4 | - +- all | ocaml-source | 3.12.1-4 | - +- all | ocaml-tools | 20120103-2 | - +- all | ocamlify | 0.0.1-3 | - +- all | ocamlmakefile | 6.36.0-2 | - +- all | ocamlwc | 0.3-10 | - +- all | ocamlweb | 1.38-1 | - +- all | ocrfeeder | 0.7.9-1 | - +- all | ocrodjvu | 0.7.9-1 | - +- all | ocsigen-dev | 1.3.4-2 | - +- all | ocsigenserver-doc | 2.1-1 | - +- all | ocsinventory-agent | 2:2.0.5-1 | - +- all | ocsinventory-reports | 2.0.5-1.1 | - +- all | ocsinventory-server | 2.0.5-1.1 | - +- all | octave-benchmark | 1.1.1-4 | - +- all | octave-common | 3.6.2-5+deb7u1 | - +- all | octave-communications-common | 1.1.1-1 | - +- all | octave-data-smoothing | 1.3.0-2 | - +- all | octave-dataframe | 0.9.1-1 | - +- all | octave-doc | 3.6.2-5+deb7u1 | - +- all | octave-epstk | 2.4-1 | - +- all | octave-financial | 0.4.0-1 | - +- all | octave-fpl | 1.2.0-3 | - +- all | octave-ga | 0.10.0-1 | - +- all | octave-htmldoc | 3.6.2-5+deb7u1 | - +- all | octave-info | 3.6.2-5+deb7u1 | - +- all | octave-mapping | 1.0.7-4 | - +- all | octave-missing-functions | 1.0.2-4 | - +- all | octave-nnet | 0.1.13-2 | - +- all | octave-pkg-dev | 1.0.2 | - +- all | octave-plot | 1.1.0-2 | - +- all | octave-splines | 1.0.7-4 | - +- all | octave-statistics | 1.1.3-1 | - +- all | octave-vrml | 1.0.13-1 | - +- all | octave-zenity | 0.5.7-5 | - +- all | odot | 1.2.0-1 | - +- all | ofed-docs | 1.4.2-1 | - +- all | offlineimap | 6.3.4-1 | - +- all | ofono-dev | 1.6-2 | - +- all | ogamesim-www | 0.33-1 | - +- all | oggconvert | 0.3.3-2 | - +- all | ogre-1.8-doc | 1.8.0+dfsg1-3 | - +- all | ogre-doc | 1.7.4+dfsg1-7 | - +- all | ohai | 6.14.0-2 | - +- all | ohai-doc | 6.14.0-2 | - +- all | ohcount-doc | 3.0.0-6.1 | - +- all | oinkmaster | 2.0-3 | - +- all | olive | 1.3-4 | - +- all | olpc-xo1-hw | 0.3 | - +- all | omake-doc | 0.9.8.5-3-8 | - +- all | omegat | 2.3.0.1+dfsg-3 | - +- all | omegat-plugin-tokenizer | 0.4.2+dfsg-2 | - +- all | omnievents-doc | 1:2.6.2-2 | - +- all | omniidl-python | 3.6-1 | - +- all | omniorb-doc | 4.1.6-2 | - +- all | omniorb-idl | 4.1.6-2 | - +- all | omt | 0.1.16 | - +- all | oneisenough | 0.40-2 | - +- all | oneliner-el | 0.3.6-7.1 | - +- all | oolite-data | 1.76.1-2 | - +- all | oolite-data-sounds | 1.76.1-2 | - +- all | oolite-doc | 1.76.1-2 | - +- all | ooo-thumbnailer | 0.2-5 | - +- all | ooo2dbk | 2.1.0-1 | - +- all | op-panel | 0.30~dfsg-3 | - +- all | opalmod | 0.2.1 | - +! all | open-axiom-databases | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-graphics-data | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-hypertex-data | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-source | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-test | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-tex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +- all | open-font-design-toolkit | 1.2 | - +- all | open-invaders-data | 0.3-3.2 | - +- all | open-jtalk-mecab-naist-jdic | 1.05-1 | - +- all | open-vm-dkms | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +- all | open-vm-tools-dev | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +! all | openafs-doc | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openafs-modules-dkms | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openafs-modules-source | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- all | openarena-081-maps | 0.8.5split-2 | - +- all | openarena-081-misc | 0.8.5split-2 | - +- all | openarena-081-players | 0.8.5split-2 | - +- all | openarena-081-players-mature | 0.8.5split-2 | - +- all | openarena-081-textures | 0.8.5split-2 | - +- all | openarena-085-data | 0.8.5split-2 | - +- all | openarena-088-data | 0.8.8-1 | - +- all | openarena-data | 0.8.5split-2 | - +! all | openbios-ppc | 1.0+svn1060-1 | 1.1+svn1229-1~bpo70+2 +! all | openbios-sparc | 1.0+svn1060-1 | 1.1+svn1229-1~bpo70+2 +- all | openbmap-logger | 0.4.0-6 | - ++ all | openbox-gnome-session | - | 3.5.2-6~bpo70+1 ++ all | openbox-kde-session | - | 3.5.2-6~bpo70+1 +- all | openbox-themes | 1.0.2 | - +- all | openbve | 1.4.0.9-1 | - +- all | openbve-data | 1.4.0.5+dfsg-3 | - +- all | opencity-data | 0.0.6.4stable-1.1 | - +! all | opencl-headers | 1.2-2012.04.18a-1 | 1.2-2013.06.28-2~bpo70+1 +- all | openclipart | 1:0.18+dfsg-14 | - +- all | openclipart-libreoffice | 1:0.18+dfsg-14 | - +- all | openclipart-openoffice.org | 1:3.4.0~ooo340m1-7 | - +- all | openclipart-png | 1:0.18+dfsg-14 | - +- all | openclipart-svg | 1:0.18+dfsg-14 | - +- all | openclipart2 | 2.0+dfsg-1 | - +- all | openclipart2-libreoffice | 2.0+dfsg-1 | - +- all | openclipart2-png | 2.0+dfsg-1 | - +- all | openclipart2-svg | 2.0+dfsg-1 | - +- all | opencubicplayer-doc | 1:0.1.21-1.1 | - +- all | opencv-doc | 2.3.1-11 | - +- all | opendict | 0.6.3-3.1 | - +- all | opendnssec | 1:1.3.9-5 | - +- all | opendnssec-auditor | 1:1.3.9-5 | - +- all | opendnssec-common | 1:1.3.9-5 | - +- all | opendnssec-doc | 1:1.3.9-5 | - +- all | opendnssec-enforcer | 1:1.3.9-5 | - +- all | opengl-4.2-html-doc | 1.0~svn17952-1 | - +- all | opengl-4.2-man-doc | 1.0~svn17952-1 | - +- all | openguides | 0.65-4 | - +- all | openhackware | 0.4.1-6 | - +- all | openhpi | 2.14.1-1.2 | - +- all | openigtlink-doc | 1.9.2~svn7468-1 | - +- all | openigtlink-examples | 1.9.2~svn7468-1 | - +- all | openjdk-6-doc | 6b27-1.12.5-1 | - +- all | openjdk-6-jre-lib | 6b27-1.12.5-1 | - +- all | openjdk-6-source | 6b27-1.12.5-1 | - +- all | openjdk-7-doc | 7u3-2.1.7-1 | - +- all | openjdk-7-jre-lib | 7u3-2.1.7-1 | - +- all | openjdk-7-source | 7u3-2.1.7-1 | - +- all | openlp | 1.9.10-1 | - +- all | openmcdf | 1.5.2-1 | - +- all | openmpi-common | 1.4.5-1 | - +- all | openmpi-doc | 1.4.5-1 | - +- all | openmsx-data | 0.8.2-2.1 | - +- all | opennebula-common | 3.4.1-3.1 | - +- all | opennebula-node | 3.4.1-3.1 | - +- all | opennebula-sunstone | 3.4.1-3.1 | - +- all | opennebula-tools | 3.4.1-3.1 | - +- all | openoffice.org | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-base | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-calc | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-common | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-dmaths | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-draw | 1:3.4.0~ooo340m1-7 | - +! all | openoffice.org-dtd-officedocument1.0 | 2:1.0+LibO3.5.4+dfsg2-0+deb7u2 | 2:1.0+LibO4.1.4-2~bpo70+1 +- all | openoffice.org-emailmerge | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-evolution | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-filter-binfilter | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-filter-mobiledev | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-gnome | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-gtk | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-ca | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-cs | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-da | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-de | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-dz | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-el | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-en-gb | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-en-us | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-es | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-et | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-eu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-fi | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-fr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-gl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-hi-in | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-hu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-it | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-ja | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-km | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-ko | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-nl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-om | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-pl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-pt | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-pt-br | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-ru | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-sl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-sv | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-zh-cn | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-help-zh-tw | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-af | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-ca | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-de | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-en-us | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-fr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-hr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-hu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-it | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-lt | 1.2.1-3 | - +- all | openoffice.org-hyphenation-pl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-ro | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-sh | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-sl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-sr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-hyphenation-zu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-impress | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-java-common | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-kde | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-af | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ar | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-as | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ast | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-be-by | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-bg | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-bn | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-br | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-bs | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ca | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-cs | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-cy | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-da | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-de | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-dz | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-el | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-en-gb | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-en-za | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-eo | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-es | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-et | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-eu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-fa | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-fi | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-fr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ga | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-gl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-gu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-he | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-hi-in | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-hr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-hu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-id | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-in | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-it | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ja | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ka | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-km | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ko | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ku | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-lt | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-lv | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-mk | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ml | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-mn | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-mr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-nb | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ne | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-nl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-nn | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-nr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ns | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-oc | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-om | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-or | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-pa-in | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-pl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-pt | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-pt-br | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ro | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ru | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-rw | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-si | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-sk | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-sl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-sr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ss | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-st | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-sv | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ta | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-te | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-tg | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-th | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-tn | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-tr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ts | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ug | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-uk | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-uz | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-ve | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-vi | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-xh | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-za | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-zh-cn | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-zh-tw | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-l10n-zu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-math | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-mysql-connector | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-officebean | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-ogltrans | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-pdfimport | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-presentation-minimizer | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-presenter-console | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-report-builder | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-sdbc-postgresql | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-style-crystal | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-style-galaxy | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-style-hicontrast | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-style-oxygen | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-style-tango | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-ca | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-cs | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-de | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-de-ch | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-en-au | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-en-us | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-fr | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-hu | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-it | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-ne | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-pl | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-ro | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-ru | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-thesaurus-sk | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-voikko | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-wiki-publisher | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-writer | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-writer2latex | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-writer2xhtml | 1:3.4.0~ooo340m1-7 | - +- all | openoffice.org-zemberek | 1:3.4.0~ooo340m1-7 | - +- all | openprinting-ppds | 20120523-1 | - +- all | openprinting-ppds-extra | 20120523-1 | - +- all | openresolv | 3.5.2-1 | - +! all | openrocket | 12.03-1 | 13.11.1~bpo60+1 +! all | opensaml2-schemas | 2.4.3-4 | 2.5.3-2~bpo70+1 +- all | openscad-testing-data | 2011.12-3 | - +- all | openscenegraph-doc | 3.0.1-4 | - +- all | openscenegraph-examples | 3.0.1-4 | - +- all | opense-basic | 1:3.1.2-1 | - +- all | openshot | 1.4.2-1.1 | - +- all | openshot-doc | 1.4.2-1.1 | - +- all | openslp-doc | 1.2.1-9 | - +- all | openssh-blacklist | 0.4.1+nmu1 | - +- all | openssh-blacklist-extra | 0.4.1+nmu1 | - +- all | openssl-blacklist | 0.5-3 | - +- all | openssl-blacklist-extra | 0.5-3 | - +- all | openssn-data | 1.3-1 | - +- all | openstack-dashboard | 2012.1.1-10 | - +- all | openstack-dashboard-apache | 2012.1.1-10 | - ++ all | openstack-debian-images | - | 0.5~bpo70+1 ++ all | openstack-pkg-tools | - | 8~bpo70+1 +- all | openstereogram | 0.1+20080921-2 | - +- all | openstreetmap-map-icons-classic | 1:0.0.svn27763-1 | - +- all | openstreetmap-map-icons-scalable | 1:0.0.svn27763-1 | - +- all | openstreetmap-map-icons-square | 1:0.0.svn27763-1 | - +- all | openstv | 1.6.1-1 | - +- all | openswan-doc | 1:2.6.37-3 | - +- all | openswan-modules-source | 1:2.6.37-3 | - +- all | openteacher | 2.3-1 | - +- all | openthesaurus-de-text | 20120516-2 | - +- all | openttd-data | 1.2.1-3 | - +- all | openttd-opengfx | 0.4.4-1 | - +- all | openttd-openmsx | 0.3.1-2 | - +- all | openturns-validation | 1.0-4 | - +- all | openuniverse-common | 1.0beta3.1+dfsg-3 | - +- all | openvanilla-imgeneric-data-all | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-ja | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-ko | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-th | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-vi | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-zh-cn | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-zh-hk | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvanilla-imgeneric-data-zh-tw | 0.9.0a1.3+dfsg1-2.1 | - +- all | openvpn-blacklist | 0.5 | - +- all | openvswitch-datapath-dkms | 1.4.2+git20120612-9.1~deb7u1 | - +- all | openvswitch-datapath-source | 1.4.2+git20120612-9.1~deb7u1 | - +- all | openvswitch-pki | 1.4.2+git20120612-9.1~deb7u1 | - +- all | openvswitch-test | 1.4.2+git20120612-9.1~deb7u1 | - +- all | openxenmanager | 0.r80+dfsg-4 | - +- all | opticalraytracer | 3.2-1.1 | - +- all | orbital-eunuchs-sniper-data | 1.30+svn20070601-2 | - +! all | org-mode | 7.8.11-1 | 8.0.7-2~bpo70+1 +- all | origami | 0.7.4-1 | - +- all | osc | 0.134.1-2 | - +- all | osgearth-data | 2.0+dfsg-4 | - +- all | osmosis | 0.40.1+ds1-7 | - +- all | ospics | 0.73-4 | - +- all | oss4-dev | 4.2-build2006-2+deb7u1 | - +- all | otf-freefont | 20120503-1 | - +- all | otf-ipaexfont | 00103-14.1 | - +- all | otf-ipaexfont-gothic | 00103-14.1 | - +- all | otf-ipaexfont-mincho | 00103-14.1 | - +- all | otf-ipafont | 00303-10.1 | - +- all | otf-ipafont-gothic | 00303-10.1 | - +- all | otf-ipafont-mincho | 00303-10.1 | - +- all | otf-stix | 1.1.0-1 | - +- all | otf-symbols-circos | 0.61-3 | - +- all | otf-yozvox-yozfont | 13.09-dfsg-2 | - +- all | otf-yozvox-yozfont-antique | 13.09-dfsg-2 | - +- all | otf-yozvox-yozfont-cute | 13.09-dfsg-2 | - +- all | otf-yozvox-yozfont-edu | 13.09-dfsg-2 | - +- all | otf-yozvox-yozfont-new-kana | 13.09-dfsg-2 | - +- all | otf-yozvox-yozfont-standard-kana | 13.09-dfsg-2 | - +! all | otrs | 3.1.7+dfsg1-8+deb7u3 | 3.2.11-1~bpo70+1 +! all | otrs2 | 3.1.7+dfsg1-8+deb7u3 | 3.2.11-1~bpo70+1 +- all | otrs2-doc-de | 20120224-1 | - +- all | otrs2-doc-en | 20120224-1 | - +- all | overgod-data | 1.0-1.1 | - ++ all | overlayroot | - | 0.18.debian3~bpo70+1 +- all | ovito-doc | 0.9.5-2 | - +- all | ovito-examples | 0.9.5-2 | - +- all | ovsdbmonitor | 1.4.2+git20120612-9.1~deb7u1 | - +- all | owfs | 2.8p15-1 | - +- all | owfs-common | 2.8p15-1 | - +- all | owfs-doc | 2.8p15-1 | - ++ all | owncloud | - | 5.0.14.a+dfsg-1~bpo70+2 ++ all | owncloud-client-doc | - | 1.5.0+dfsg-4~bpo70+1 ++ all | owncloud-client-l10n | - | 1.5.0+dfsg-4~bpo70+1 ++ all | owncloud-doc | - | 0~20131114-1~bpo70+1 ++ all | owncloud-mysql | - | 5.0.14.a+dfsg-1~bpo70+2 ++ all | owncloud-pgsql | - | 5.0.14.a+dfsg-1~bpo70+2 ++ all | owncloud-sqlite | - | 5.0.14.a+dfsg-1~bpo70+2 +- all | oxygen-icon-theme | 4:4.8.4-1 | - +- all | oxygencursors | 0.0.2012-06-kde4.8-2.1 | - +- all | p10cfgd | 1.0-14 | - +- all | pachi-data | 1:1.0-6 | - +- all | packagekit-docs | 0.7.6-3 | - +- all | packaging-dev | 0.4 | - +- all | packaging-tutorial | 0.7 | - +- all | pacpl | 4.0.5-7.1 | - +- all | padre | 0.96+dfsg1-2 | - +- all | page-crunch | 1.0.1-3 | - +- all | palapeli-data | 4:4.8.4-3 | - +- all | pam-dbus-notify | 0.2.1-1 | - +- all | pamusb-tools | 0.5.0-4 | - +- all | pandora-build | 0.98-1.1 | - +- all | pandorafms-agent | 4.0.1-1 | - +- all | pangzero | 1.4-1 | - +- all | papercut | 0.9.13-7 | - +- all | paprass | 2.06-1 | - +- all | parallel | 20120422-1 | - +! all | paraview-doc | 3.14.1-6 | 4.0.1-1~bpo70+1 +- all | parcimonie | 0.7.1-1 | - +- all | paredit-el | 20-2 | - +! all | pari-doc | 2.5.1-2 | 2.5.5-1~bpo70+1 +- all | pari-elldata | 0.20120415-1 | - +- all | pari-extra | 3-1 | - +- all | pari-galdata | 0.20080411-2 | - +- all | pari-galpol | 1.0-1 | - +- all | pari-seadata | 0.20090618-1 | - +- all | parley-data | 4:4.8.4-1 | - +- all | parrot-doc | 4.0.0-3 | - +- all | parsec47-data | 0.2.dfsg1-4 | - +- all | parser3 | 3.4.2-2 | - +- all | parsewiki | 0.4.3-1 | - +- all | parted-doc | 2.3-12 | - +- all | partimage-doc | 20050720-3 | - ++ all | pass | - | 1.4.2-1~bpo70+1 +- all | password-gorilla | 1.5.3.4-1 | - +- all | pastebinit | 1.3-4 | - +- all | patcher | 0.0.20040521-6 | - +- all | pathological | 1.1.3-10 | - +- all | pathological-music | 1:1.1.3-1 | - +- all | pauker | 1.8+dfsg-5 | - +- all | paw-common | 1:2.14.04.dfsg.2-8 | - +- all | paw-demos | 1:2.14.04.dfsg.2-8 | - +- all | pbnj | 2.04-4 | - +- all | pbuilder | 0.213 | - +- all | pcalendar | 3.2.0-2 | - +- all | pcb | 20110918-7 | - +- all | pcb-common | 20110918-7 | - +- all | pct-scanner-scripts | 0.0.4-3 | - +- all | pd-jmmmp | 0.1.1-1 | - +- all | pd-list-abs | 0.1-1 | - +- all | pd-mapping | 0.2-2 | - +- all | pd-pan | 0.1-1 | - +- all | pd-purepd | 0.1.1-1 | - +- all | pdb2pqr-doc | 1.8-1 | - +- all | pdebuild-cross | 2.2.19 | - +- all | pdfjam | 2012.20120611-2 | - +- all | pdfminer-data | 20110515+dfsg-1 | - +- all | pdfmod | 0.9.1-7 | - +- all | pdfmod-dbg | 0.9.1-7 | - +- all | pdfposter | 0.4.4-2 | - +- all | pdfsam | 1.1.4-2 | - +- all | pdfshuffler | 0.6.0-1 | - +! all | pdksh | 40.9.20120630-7 | 49-2~bpo70+1 ++ all | pear-channels | - | 0~20131124-1~bpo70+1 +- all | pear-horde-channel | 5 | - +- all | pear-phpunit-channel | 1.1-1 | - +- all | pear-symfony-project-channel | 1.0-1 | - +- all | pegasus-wms-doc | 4.0.1+dfsg-8 | - +- all | pekwm-themes | 1.0.5-3 | - +- all | pennmush-common | 1.8.2p8-1.1 | - +- all | pennmush-i18n | 1.8.2p8-1.1 | - +- all | pentium-builder | 0.19 | - +- all | pep8 | 1.2-1 | - +- all | percona-toolkit | 2.1.2-1 | - +- all | perl-depends | 2011.0324+git74d587e-1 | - +- all | perl-doc | 5.14.2-21+deb7u1 | - +- all | perl-doc-html | 5.14.0-1 | - +- all | perl-modules | 5.14.2-21+deb7u1 | - +- all | perlbal | 1.80-2 | - +- all | perlbrew | 0.43-1 | - +- all | perlconsole | 0.4-4 | - +- all | perlindex | 1.605-4 | - +- all | perlpanel | 1:0.9.1+cvs20051225-2 | - +- all | perlprimer | 1.1.21-1 | - +- all | perlprimer-doc | 1.1.21-1 | - +- all | perltidy | 20101217-1 | - +- all | perroquet | 1.1.1-3 | - +- all | pescetti | 0.5-1 | - +- all | petit | 1.1.1-1 | - +- all | petsc-dev | 3.2.dfsg-6 | - +- all | petsc3.2-doc | 3.2.dfsg-6 | - +- all | pflogsumm | 1.1.5-1 | - +- all | pfm | 1.5.4-1 | - ++ all | pg-activity | - | 1.1.1-1~bpo70+1 +- all | pgadmin3-data | 1.14.2-2 | - +- all | pgf | 2.10-1 | - +- all | pgfouine | 1.2-3 | - +- all | pgloader | 2.3.3~dev3-1.1 | - +- all | pgsnap | 0.7.0-1 | - +- all | pgstaging | 0.11-1 | - +- all | pgstaging-client | 0.11-1 | - +- all | pgtap | 0.90.0-1 | - +- all | pgtune | 0.9.3-2 | - +- all | pgxnclient | 1.0.3-1 | - +- all | phamm | 0.5.18-3.1 | - +- all | phamm-ldap | 0.5.18-3.1 | - +- all | phamm-ldap-amavis | 0.5.18-3.1 | - +- all | phamm-ldap-vacation | 0.5.18-3.1 | - +- all | phatch | 0.2.7.1-1 | - +- all | phatch-cli | 0.2.7.1-1 | - +- all | phatch-doc | 0.2.7.1-1 | - +- all | phenny | 2~hg28-2 | - +- all | phlipple-data | 0.8.2-1 | - +- all | phonon-backend-xine | 4:4.6.0.0-3 | - +- all | photofilmstrip | 1.9.91+dfsg-1 | - +- all | photon | 0.4.6-3 | - +- all | php-auth | 1.6.2-1 | - +- all | php-auth-http | 2.1.8-1 | - +- all | php-auth-sasl | 1.0.4-1 | - ++ all | php-aws-sdk | - | 1.5.6.2-1~bpo70+1 +- all | php-cache | 1.5.6-1 | - +- all | php-cache-lite | 1.7.4-1 | - +- all | php-cas | 1.3.1-4 | - +- all | php-codecoverage | 1.1.2+dfsg1-3 | - +- all | php-codesniffer | 1.3.4-1 | - +- all | php-compat | 1.6.0a3-2 | - +- all | php-config | 1.10.12-4 | - +- all | php-console-table | 1.1.4-1 | - +- all | php-crypt-blowfish | 1.1.0~RC2-1 | - +- all | php-crypt-cbc | 1.0.1-1 | - +- all | php-date | 1.4.7-1 | - +- all | php-db | 1.7.14-2 | - +- all | php-doc | 20100521-2 | - ++ all | php-dropbox | - | 1.0.0-1~bpo70+1 +- all | php-elisp | 1.5.0-1.1 | - +- all | php-event-dispatcher | 1.1.0-3 | - +- all | php-file | 1.3.0-1 | - +- all | php-file-iterator | 1.3.1-2 | - +- all | php-fpdf | 3:1.7.dfsg-1 | - +- all | php-geshi | 1.0.8.4-2 | - +- all | php-getid3 | 1.9.3-1 | - +- all | php-gettext | 1.0.11-1 | - ++ all | php-google-api-php-client | - | 0.6.2-1~bpo70+1 +- all | php-html-common | 1.2.5-2 | - +- all | php-html-safe | 0.10.1-1 | - +- all | php-html-template-it | 1:1.2.1-3 | - +- all | php-htmlpurifier | 4.4.0+dfsg1-1 | - +- all | php-http | 1.4.1-1 | - +- all | php-http-request | 1.4.4-4 | - +- all | php-http-upload | 1.0.0b2-2 | - +- all | php-http-webdav-server | 1.0.0RC6-1 | - +- all | php-image-text | 0.6.1-1 | - +- all | php-invoker | 1.1.0-1 | - ++ all | php-irods-prods | - | 3.3.0~beta1-1~bpo70+1 +- all | php-letodms-core | 3.3.9-2 | - +- all | php-letodms-lucene | 1.0.1-1 | - +- all | php-log | 1.12.3-1 | - +- all | php-mail | 1.2.0-4 | - +- all | php-mail-mime | 1.8.4-1 | - +- all | php-mail-mimedecode | 1.5.5-1 | - +- all | php-mdb2 | 2.5.0b3-2 | - +- all | php-mdb2-driver-mysql | 1.5.0b2-1 | - +- all | php-mdb2-driver-pgsql | 1.5.0b2-1 | - +- all | php-mdb2-schema | 0.8.5-1 | - +- all | php-mime-type | 1.3.1-1 | - +- all | php-net-checkip | 1.2.1-3 | - +- all | php-net-dime | 0.3-4 | - +- all | php-net-dnsbl | 1.3.3-1 | - +- all | php-net-ftp | 1.4.0a3-1 | - +- all | php-net-imap | 1:1.1.1-1 | - +- all | php-net-ipv4 | 1.3.4-1 | - +- all | php-net-ipv6 | 1.2.2b2-1 | - +- all | php-net-ldap | 1:1.1.5-1 | - +- all | php-net-ldap2 | 2.0.9-1 | - +- all | php-net-lmtp | 1.0.1-1 | - +- all | php-net-nntp | 1.5.0~rc2-1 | - +- all | php-net-portscan | 1.0.3-1 | - +- all | php-net-sieve | 1.3.2-1 | - +- all | php-net-smartirc | 1.0.0-2 | - +- all | php-net-smtp | 1.6.1-1 | - +- all | php-net-socket | 1.0.9-2 | - +- all | php-net-url | 1.0.15-2 | - +- all | php-net-url2 | 2.0.0-1 | - +- all | php-net-whois | 1.0.5-1 | - +- all | php-numbers-words | 0.16.4-1 | - +- all | php-openid | 2.2.2-1.1 | - +- all | php-pager | 2.4.8-2 | - ++ all | php-patchwork-utf8 | - | 1.1.7-1~bpo70+1 +- all | php-pear | 5.4.4-14+deb7u7 | - +- all | php-radius-legacy | 1.2.5-2.3+deb7u1 | - ++ all | php-sabre-dav | - | 1.7.6+dfsg-2~bpo70+1 ++ all | php-sabre-vobject | - | 2.0.7-1~bpo70+1 ++ all | php-sabredav | - | 1.7.6+dfsg-2~bpo70+1 ++ all | php-seclib | - | 0.3.5-2~bpo70+1 +- all | php-services-json | 1.0.3-1 | - +- all | php-services-weather | 1.4.2-3 | - +- all | php-soap | 0.12.0-2.1 | - ++ all | php-symfony-routing | - | 2.0.19-1~bpo70+1 +- all | php-symfony-yaml | 1.0.6-1 | - +- all | php-text-captcha | 0.4.3-1 | - +- all | php-text-figlet | 1.0.2-3 | - +- all | php-text-password | 1.1.1-1 | - +- all | php-text-template | 1.1.1-2 | - +- all | php-text-wiki | 1.2.0-1 | - +- all | php-timer | 1.0.2-2 | - +- all | php-token-stream | 1.1.3-2 | - +- all | php-validate | 0.8.5-2 | - +- all | php-xajax | 0.5-1 | - +- all | php-xml-dtd | 0.5.2+dfsg1-1 | - +- all | php-xml-htmlsax3 | 3.0.0+cvs01112007-2 | - +- all | php-xml-parser | 1.3.4-6 | - +- all | php-xml-rpc | 1.5.5-0.1 | - +- all | php-xml-rpc2 | 1.1.1-1 | - +- all | php-xml-rss | 1.0.2-3 | - +- all | php-xml-serializer | 0.20.2-3 | - +- all | php5 | 5.4.4-14+deb7u7 | - +- all | phpbb3 | 3.0.10-4+deb7u1 | - +- all | phpbb3-l10n | 3.0.10-4+deb7u1 | - +- all | phpldapadmin | 1.2.2-5 | - +- all | phpmyadmin | 4:3.4.11.1-2 | - +- all | phppgadmin | 5.0.4-1 | - +- all | phpreports | 0.4.9-2.1 | - +- all | phpsysinfo | 3.0.17-1 | - +- all | phpunit | 3.6.10-1 | - +- all | phpunit-mock-object | 1.1.1-2 | - +- all | phpunit-selenium | 1.2.6-3 | - +- all | phpunit-story | 1.0.0-3 | - +- all | phpwebcounter | 1.0-1 | - +- all | phpwebcounter-extra | 20071108-1 | - +- all | picard-tools | 1.46-1 | - +! all | pidgin-data | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | pidgin-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +- all | pidgin-lastfm | 0.4a-2 | - +- all | pidgin-openpgp | 0.1-2 | - +- all | pidgin-themes | 0.2-1 | - +- all | piespy | 0.4.0-2.2 | - +- all | pilot-manager | 1.107.0pre108-5 | - +- all | pinball-data | 0.3.1-13.1 | - +- all | pinentry-doc | 0.8.1-1 | - +- all | pingus-data | 0.7.6-1.1 | - +- all | pinta | 1.3-2 | - +- all | pinyin-database | 1.2.99-3 | - +- all | pioneers-console-data | 14.1-1 | - +- all | pioneers-data | 14.1-1 | - +- all | pipenightdreams-data | 0.10.0-13 | - +- all | pisg | 0.72-1 | - +- all | pithos | 0.3.17-1 | - +- all | pitivi | 0.15.2-0.1 | - +! all | piuparts | 0.45 | 0.56~bpo70+1 +! all | piuparts-common | 0.45 | 0.56~bpo70+1 +! all | piuparts-master | 0.45 | 0.56~bpo70+1 +! all | piuparts-slave | 0.45 | 0.56~bpo70+1 +- all | pius | 2.0.7-2 | - +- all | piwi | 0.8+20041206-3 | - +- all | pixbros | 0.6.3-1 | - +- all | pixelmed-java | 20120508-1 | - +- all | pixfrogger | 1.0-2 | - +- all | pkg-components | 0.4 | - +- all | pkg-kde-tools | 0.15.3 | - +- all | pkg-mozilla-archive-keyring | 1.1 | - +! all | pkg-php-tools | 0.8 | 1.9~bpo70+1 +- all | pkgsync | 1.22 | - +- all | pkpgcounter | 3.50-7 | - +- all | plait | 1.6.2-1 | - +- all | planet-venus | 0~bzr116-1 | - +- all | planetpenguin-racer | 0.4-5 | - +- all | planetpenguin-racer-dbg | 0.4-5 | - +- all | planetpenguin-racer-extras | 0.6-1 | - +- all | planetpenguin-racer-gimp-dev | 0.4-5 | - +- all | planets | 0.1.13-13 | - +- all | planner-data | 0.14.6-1 | - +- all | planner-doc | 0.14.6-1 | - +- all | planner-el | 3.42-5.1 | - +- all | plasma-desktopthemes-artwork | 4:4.8.4-5 | - +- all | plasma-scriptengine-python | 4:4.8.4-6 | - +- all | plasma-scriptengine-ruby | 4:4.8.4-6 | - +- all | plasma-scriptengines | 4:4.8.4-6 | - +- all | plasma-widget-veromix | 0.18.3-1 | - +- all | plasmidomics | 0.2.0-2 | - +- all | playitslowly | 1.4.0-1 | - +- all | plee-the-bear-data | 0.6.0-1 | - +- all | pleiades | 1.3.4~I20120531-dfsg-2+deb7u1 | - +- all | ploader | 1.6.0-1.1 | - +- all | ploticus-doc | 2.41-2 | - +- all | plplot-doc | 5.9.9-5 | - +! all | plt-scheme | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | plt-scheme-doc | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +- all | plum | 2.33.1-10 | - +- all | plymouth-themes-all | 0.8.5.1-5 | - +- all | plymouth-themes-fade-in | 0.8.5.1-5 | - +- all | plymouth-themes-glow | 0.8.5.1-5 | - +- all | plymouth-themes-script | 0.8.5.1-5 | - +- all | plymouth-themes-solar | 0.8.5.1-5 | - +- all | plymouth-themes-spinfinity | 0.8.5.1-5 | - +- all | plymouth-themes-spinner | 0.8.5.1-5 | - +- all | plywood | 0.5.11+nmu2 | - +- all | pm-utils | 1.4.1-9 | - +- all | pmailq | 0.5-1 | - +- all | pmtools | 1.10+ds1-2 | - +- all | pmw-doc | 1:4.24-1 | - +- all | png-definitive-guide | 20060430-1 | - +- all | pnm2ppa | 1.13-4 | - +- all | pnopaste | 1.4-5 | - +- all | pnopaste-cli | 1.4-5 | - +- all | pnp4nagios | 0.6.16-2 | - +- all | pnp4nagios-web | 0.6.16-2 | - +- all | po-debconf | 1.0.16+nmu2 | - +- all | po4a | 0.42-1 | - +- all | pocketpc-cab | 1.0.1-2 | - +- all | pod2pdf | 0.42-4 | - +- all | podbrowser | 0.12-2 | - +- all | podget | 0.5.8-1 | - +- all | podracer | 1.4-1.1 | - +! all | pokerth-data | 0.9.5-1 | 1.0.1-2~bpo70+1 +- all | policyd-weight | 0.1.15.2-5 | - +- all | policykit-1-doc | 0.105-3 | - +- all | policyrcd-script-zg2 | 0.1-2 | - +- all | polygen | 1.0.6.ds2-12 | - +- all | polygen-data | 1.0.6.ds2-12 | - +- all | polyorb-doc | 2.8~20110207-5.1 | - +- all | pondus | 0.8.0-1 | - +- all | pop3browser | 0.4.1-4 | - +- all | poppass-cgi | 3-5.1 | - +- all | poppler-data | 0.4.5-10 | - +- all | popularity-contest | 1.56 | - +- all | portaudio19-doc | 19+svn20111121-1 | - +- all | post-el | 1:2.5-2 | - +- all | post-faq | 0.10-18 | - ++ all | postbooks-schema-demo | - | 4.1.0-1~bpo70+1 ++ all | postbooks-schema-empty | - | 4.1.0-1~bpo70+1 ++ all | postbooks-schema-quickstart | - | 4.1.0-1~bpo70+1 +- all | postfix-cluebringer | 2.0.10-1 | - +- all | postfix-cluebringer-mysql | 2.0.10-1 | - +- all | postfix-cluebringer-pgsql | 2.0.10-1 | - +- all | postfix-cluebringer-sqlite3 | 2.0.10-1 | - +- all | postfix-cluebringer-webui | 2.0.10-1 | - +- all | postfix-dev | 2.9.6-2 | - +- all | postfix-doc | 2.9.6-2 | - +- all | postfix-policyd-spf-perl | 2.010-1 | - +- all | postfix-policyd-spf-python | 1.0-2 | - +- all | postfixadmin | 2.3.5-2 | - +! all | postfwd | 1.32-2 | 1.35-1~bpo70+1 +- all | postgresql | 9.1+134wheezy4 | - +- all | postgresql-autodoc | 1.40-3 | - +- all | postgresql-client | 9.1+134wheezy4 | - +- all | postgresql-client-common | 134wheezy4 | - +- all | postgresql-common | 134wheezy4 | - +- all | postgresql-contrib | 9.1+134wheezy4 | - +- all | postgresql-doc | 9.1+134wheezy4 | - +- all | postgresql-doc-9.1 | 9.1.11-0wheezy1 | - +- all | postgresql-server-dev-all | 134wheezy4 | - +- all | postgrey | 1.34-1.1 | - +- all | postnews | 0.5.3-3 | - +- all | postr | 0.12.4-2.1 | - +- all | powermanga-data | 0.90-dfsg-2 | - +- all | ppp-dev | 2.4.5-5.1 | - +- all | pppconfig | 2.3.18+nmu4 | - +- all | pppoeconf | 1.20 | - +- all | prayer-templates | 1.3.4-dfsg1-1 | - +- all | prayer-templates-src | 1.3.4-dfsg1-1 | - +- all | prelude-correlator | 1.0.0-1 | - +- all | prelude-notify | 0.9.1-1 | - +- all | preprocess | 1.1.0+ds-1 | - +- all | presage-dbus | 0.8.8-1 | - +- all | preview-latex-style | 11.86-11 | - +- all | prewikka | 1.0.0-1.2 | - +- all | prey | 0.5.3-7.1 | - +- all | prime | 1.0.0.1-2.2 | - +- all | prime-dict | 1.0.0-2 | - +- all | printer-applet | 4:4.8.4-1 | - +- all | printer-driver-all | 0.20120416 | - +- all | printer-driver-all-enforce | 0.20120416 | - +- all | printer-driver-postscript-hp | 3.12.6-3.1+deb7u1 | - +- all | printer-driver-sag-gdi | 0.1-3 | - +- all | procmail-lib | 1:2009.1202-2 | - +- all | profphd | 1.0.39-1 | - +- all | proftpd-doc | 1.3.4a-5+deb7u1 | - +- all | proguard | 4.4-2 | - +- all | proj-ps-doc | 4.3.3-4 | - +- all | projectm-data | 2.1.0+dfsg-1 | - +- all | prolix | 0.03-1 | - +- all | proll | 18-6 | - +- all | prolog-el | 1.23-1 | - +- all | proofgeneral | 4.2~pre120605-2 | - +- all | proofgeneral-doc | 4.2~pre120605-2 | - +- all | propaganda-debian | 13.5.10 | - +- all | prosper | 1.00.4+cvs.2007.05.01-4 | - +- all | provami | 5.18-1 | - +- all | prover9-doc | 0.0.200902a-1 | - +- all | prover9-mace4 | 0.5.dfsg-2.1 | - +- all | proxychains | 3.1-3 | - +- all | ps-watcher | 1.08-5 | - +- all | psensor-common | 0.6.2.17-2 | - +- all | psgml | 1.3.2-14 | - +! all | psi-plus-common | 0.15.5338-1 | 0.16.285-1~bpo70+1 ++ all | psi-plus-l10n | - | 0.16.285-1~bpo70+1 +! all | psi-plus-skins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | psi-plus-sounds | 0.15.5338-1 | 0.16.285-1~bpo70+1 +- all | psi-translations | 1.11 | - +- all | psrip | 1.3-7 | - +- all | pssh | 2.2.2-1 | - +- all | psychopy | 1.73.06.dfsg-1 | - +- all | psychtoolbox-3-common | 3.0.9+svn2579.dfsg1-1 | - +- all | ptex-base | 1:2.5-2.1 | - +- all | ptex-bin | 2012.20120611-2 | - +- all | ptex-buildsupport | 3.0-3 | - +- all | ptex2tex | 0.4-1 | - +- all | ptouch-driver | 1.3-4 | - +- all | publican | 2.8-3 | - +- all | publican-debian | 0.2 | - +- all | pubtal | 3.5-1 | - +- all | puddletag | 1.0.0~rc1-1 | - +- all | puppet | 2.7.23-1~deb7u3 | - +- all | puppet-common | 2.7.23-1~deb7u3 | - +- all | puppet-el | 2.7.23-1~deb7u3 | - +- all | puppet-lint | 0.1.13-2 | - +- all | puppet-testsuite | 2.7.23-1~deb7u3 | - +- all | puppetmaster | 2.7.23-1~deb7u3 | - +- all | puppetmaster-common | 2.7.23-1~deb7u3 | - +- all | puppetmaster-passenger | 2.7.23-1~deb7u3 | - +- all | pure-ftpd-common | 1.0.36-1.1 | - +- all | puredata | 0.43.2-5 | - +- all | puredata-dev | 0.43.2-5 | - +- all | puredata-doc | 0.43.2-5 | - +- all | puredata-gui | 0.43.2-5 | - +- all | purifyeps | 1.1-2 | - +- all | purity-off | 0-3 | - +- all | putty-doc | 0.62-9+deb7u1 | - ++ all | pv-grub-menu | - | 1.2.1~bpo70+1 +- all | pwman3 | 0.0.8-1 | - +- all | pwrkap | 7.30-5 | - +- all | pwrkap-gui | 7.30-5 | - +- all | pxljr | 1.3+repack0-2 | - +- all | pyaimt | 0.8.0.1-3 | - +- all | pybliographer | 1.2.14-3 | - +- all | pyblosxom | 1.4.3-1 | - +- all | pybootchartgui | 0.14.4-3 | - +- all | pybridge | 0.3.0-7.1 | - +- all | pybridge-common | 0.3.0-7.1 | - +- all | pybridge-server | 0.3.0-7.1 | - +- all | pybtex | 0.15-1 | - +- all | pyca | 20031119-0 | - +- all | pychecker | 0.8.19-5 | - +- all | pychess | 0.10.1-1 | - +- all | pycmail | 0.1.4 | - +- all | pycocuma | 0.4.5-6-7 | - +- all | pydb | 1.26-1 | - +- all | pydf | 10 | - +- all | pyecm | 2.0.1-1 | - +- all | pyew | 2.0-3 | - +- all | pyflakes | 0.5.0-2 | - +- all | pyformex | 0.8.6-4 | - +- all | pyftpd | 0.8.5 | - +- all | pygfarm | 2.0.18.3+nmu2 | - +- all | pygmy | 0.48-3 | - +- all | pygopherd | 2.0.18.3+nmu2 | - +- all | pyicqt | 0.8.1.5-5 | - +- all | pykaraoke | 0.7.5-1 | - +- all | pykaraoke-bin | 0.7.5-1 | - +- all | pyliblo-utils | 0.9.1-2 | - +- all | pylint | 0.25.1-1 | - +- all | pymacs | 0.23-1.1 | - +- all | pymca-data | 4.6.0-2 | - +- all | pymetrics | 0.8.1-6 | - +- all | pymissile | 0.0.20060725-2 | - +- all | pymsnt | 0.11.3-5 | - +- all | pynagram | 1.0.1-1 | - +- all | pynast | 1.1-3 | - +- all | pyneighborhood | 0.5.1-2 | - +- all | pyntor | 0.6-4 | - +- all | pyp | 2.12-1 | - +- all | pypar2 | 1.4-6 | - +- all | pype | 2.9.1-4 | - +- all | pypibrowser | 1.5-2 | - +- all | pyppd | 0.4.9-6 | - +- all | pyprompter | 0.8.8-1 | - +- all | pyracerz | 0.2-5 | - +- all | pyragua | 0.2.5-5 | - +- all | pyrenamer | 0.6.0-1.1 | - +- all | pyrex-mode | 0.9.8.5-2 | - +- all | pyro | 1:3.14-1.1 | - +- all | pyro-doc | 1:3.14-1.1 | - +- all | pyro-examples | 1:3.14-1.1 | - +- all | pyro-gui | 1:3.14-1.1 | - +- all | pyroman | 0.5.0~alpha1-3 | - +- all | pyroom | 0.4.1-6 | - +- all | pyscrabble | 1.6.2-9 | - +- all | pyscrabble-common | 1.6.2-9 | - +- all | pyscrabble-server | 1.6.2-9 | - +- all | pysieved | 1.1-0.2 | - +- all | pysol | 1:2.0-2 | - +- all | pysol-cardsets | 1:2.0+dfsg2-1 | - +- all | pysolfc | 2.0-2 | - +- all | pysolfc-cardsets | 2.0+dfsg2-1 | - +- all | pyspread | 0.2.2-1 | - +- all | pysycache | 3.1-3 | - +- all | pysycache-buttons-beerabbit | 3.1-3 | - +- all | pysycache-buttons-crapaud | 3.1-3 | - +- all | pysycache-buttons-ice | 3.1-3 | - +- all | pysycache-buttons-wolf | 3.1-3 | - +- all | pysycache-click-dinosaurs | 3.1-3 | - +- all | pysycache-click-sea | 3.1-3 | - +- all | pysycache-dblclick-appleandpear | 3.1-3 | - +- all | pysycache-dblclick-butterfly | 3.1-3 | - +- all | pysycache-i18n | 3.1-3 | - +- all | pysycache-images | 3.1-3 | - +- all | pysycache-move-animals | 3.1-3 | - +- all | pysycache-move-food | 3.1-3 | - +- all | pysycache-move-plants | 3.1-3 | - +- all | pysycache-move-sky | 3.1-3 | - +- all | pysycache-move-sports | 3.1-3 | - +- all | pysycache-puzzle-cartoons | 3.1-3 | - +- all | pysycache-puzzle-photos | 3.1-3 | - +- all | pysycache-sounds | 3.1-3 | - +- all | pytagsfs | 0.9.2-6 | - +- all | pythia8-data | 8.1.65-1 | - +- all | pythia8-doc-html | 8.1.65-1 | - +- all | pythia8-doc-worksheet | 8.1.65-1 | - +- all | pythia8-examples | 8.1.65-1 | - +- all | pythia8-root-interface | 8.1.65-1 | - +- all | python | 2.7.3-4+deb7u1 | - +- all | python-aafigure | 0.5-3 | - +- all | python-aalib | 0.2-3 | - +- all | python-acidobasic | 2.2-1 | - +- all | python-acoustid | 0.7-1 | - +- all | python-actdiag | 0.3.3-1 | - +- all | python-adodb | 2.10-1.1 | - +- all | python-aeidon | 0.19.2-1 | - +- all | python-aiml | 0.8.6-2 | - +- all | python-albatross | 1.36-5.4 | - +- all | python-albatross-common | 1.36-5.4 | - +- all | python-albatross-doc | 1.36-5.4 | - +- all | python-all | 2.7.3-4+deb7u1 | - +- all | python-all-dbg | 2.7.3-4+deb7u1 | - +- all | python-all-dev | 2.7.3-4+deb7u1 | - +- all | python-amqplib | 1.0.2-1 | - +- all | python-amqplib-doc | 1.0.2-1 | - +- all | python-antlr | 2.7.7+dfsg-4 | - +- all | python-anyjson | 0.3.1-2 | - +- all | python-apipkg | 1.0-1.1 | - +- all | python-application | 1.3.0-1 | - +- all | python-apptools | 4.0.1-1 | - +- all | python-apsw-doc | 3.7.6.3-r1-1 | - +- all | python-apt-common | 0.8.8.2 | - +- all | python-apt-dev | 0.8.8.2 | - +- all | python-apt-doc | 0.8.8.2 | - +- all | python-aptdaemon | 0.45-2 | - +- all | python-aptdaemon-gtk | 0.45-2 | - +- all | python-aptdaemon.gtk3widgets | 0.45-2 | - +- all | python-aptdaemon.gtkwidgets | 0.45-2 | - +- all | python-aptdaemon.pkcompat | 0.45-2 | - +- all | python-aptdaemon.test | 0.45-2 | - +- all | python-argparse | 1.2.1-2 | - +- all | python-argparse-doc | 1.2.1-2 | - +- all | python-argvalidate | 0.9.0-1 | - +- all | python-ase | 3.6.0.2515-1 | - +- all | python-aspects | 1.3-5 | - +- all | python-asterisk | 0.4-1 | - +- all | python-audioread | 0.6-1 | - +- all | python-augeas | 0.4.0-2.1 | - +- all | python-authkit | 0.4.3-1 | - +- all | python-authres | 0.402-1 | - +- all | python-avc | 0.8.3-1 | - +- all | python-axiom | 0.6.0-3 | - +- all | python-babel | 0.9.6-1 | - +- all | python-beaker | 1.6.3-1.1 | - +- all | python-beautifulsoup | 3.2.1-1 | - +- all | python-biopython-doc | 1.59-1 | - +- all | python-biopython-sql | 1.59-1 | - +- all | python-bitbucket | 0.1-1 | - +- all | python-bjsonrpc | 0.2.0-1 | - +- all | python-blockdiag | 1.1.6-1.1 | - +- all | python-bloomfilter | 1.0.3-2 | - +- all | python-bobo | 0.2.2-3 | - +- all | python-boto | 2.3.0-1 | - +- all | python-bottle | 0.10.11-1 | - +- all | python-bottle-doc | 0.10.11-1 | - +- all | python-box2d-doc | 2.0.2+svn20100109.244-1 | - +- all | python-brian | 1.3.1-1 | - +- all | python-brian-doc | 1.3.1-1 | - +- all | python-bs4 | 4.1.0-1 | - +- all | python-bs4-doc | 4.1.0-1 | - +- all | python-buzhug | 1.6-1 | - +- all | python-byteplay | 0.2-2 | - +- all | python-bzrlib.tests | 2.6.0~bzr6526-1 | - +- all | python-bzutils | 0.2-1 | - +- all | python-cairo-dev | 1.8.8-1 | - +- all | python-cairosvg | 0.4.3-1 | - +- all | python-calabash | 0.0.3-2 | - +- all | python-captcha | 0.4-1 | - +- all | python-carrot | 0.10.7-1 | - +- all | python-catwalk | 2.0.2-5 | - +- all | python-cclib | 1.0.1-2 | - +- all | python-cdd | 0.0.11 | - +- all | python-celery | 2.5.3-4 | - +- all | python-celery-doc | 2.5.3-4 | - +- all | python-central | 0.6.17 | - +- all | python-cerealizer | 0.7-4 | - +- all | python-cfflib | 2.0.5-1 | - +- all | python-chameleon | 2.6.1-1 | - +- all | python-chardet | 2.0.1-2 | - +- all | python-cherrypy | 2.3.0-3 | - +- all | python-cherrypy3 | 3.2.2-2 | - +- all | python-cinfony | 1.1-1 | - +- all | python-circuits | 1.2.1-1 | - +- all | python-cl | 0.0.3-1 | - +- all | python-clamav | 0.4.1-7 | - +- all | python-cliapp | 1.20120630-1 | - +- all | python-clientform | 1:0.2.5-3 | - +- all | python-clint | 0.3.1-1 | - +- all | python-cloudfiles | 1.7.9.2-1 | - +- all | python-cloudservers | 1.1-1.2 | - +- all | python-cluster | 1.1.1b3-1 | - +- all | python-cmd2 | 0.6.4-1 | - +- all | python-cobe | 2.0.2-1 | - +- all | python-coherence | 0.6.6.2-6+deb7u1 | - +- all | python-colorama | 0.2.4-1.1 | - +- all | python-commando | 0.1.2a-3 | - +- all | python-concurrent.futures | 2.1.2-1 | - +- all | python-configglue | 1.0-1 | - +- all | python-configobj | 4.7.2+ds-4 | - ++ all | python-configparser | - | 3.3.0r2-1~bpo70+1 +- all | python-configshell | 1.1-3 | - +- all | python-constraint | 0.4.0-5 | - +- all | python-contract | 1.4-3 | - +- all | python-couchdb | 0.8-1 | - +- all | python-couchdbkit | 0.6.3-1 | - +- all | python-coverage-test-runner | 1.8-1 | - +- all | python-creoleparser | 0.7.4-1 | - +- all | python-crypto-doc | 2.6-4+deb7u3 | - +- all | python-csa | 0.1.0-1.1 | - +! all | python-cssselect | 0.6.1-1 | 0.9.1-1~bpo70+1 +- all | python-cssutils | 0.9.10~b1-1 | - +- all | python-ctypeslib | 0.0.0+svn20100125-4 | - +- all | python-cubictemp | 2.0-1 | - +- all | python-cupshelpers | 1.3.7-4 | - +- all | python-cxx | 6.2.4-3 | - +- all | python-cxx-dev | 6.2.4-3 | - +- all | python-d2to1 | 0.2.7-1 | - +- all | python-daemon | 1.5.5-1 | - +- all | python-dap | 2.2.6.7-1 | - +- all | python-dateutil | 1.5+dfsg-0.1 | - +- all | python-dbf | 0.88.16-1 | - +- all | python-dbf-doc | 0.88.16-1 | - +- all | python-dbg | 2.7.3-4+deb7u1 | - +- all | python-dbus-dev | 1.1.1-1 | - +- all | python-dbus-doc | 1.1.1-1 | - +- all | python-deap | 0.7.1-1 | - +- all | python-deap-doc | 0.7.1-1 | - +! all | python-debian | 0.1.21 | 0.1.21+nmu2~bpo70+1 +- all | python-debianbts | 1.11 | - ++ all | python-debiancontributors | - | 0.6-1~bpo70+2 +- all | python-debtagshw | 1.10.1 | - +- all | python-decorator | 3.3.3-1 | - +- all | python-decoratortools | 1.8-2 | - +- all | python-defer | 1.0.6-2 | - +- all | python-deliciousapi | 1.6.7-1 | - +- all | python-demjson | 1.6-2 | - +- all | python-dev | 2.7.3-4+deb7u1 | - +- all | python-dexml | 0.4.2-2 | - +- all | python-dhm | 0.6-3 | - +- all | python-dialog | 2.7-1 | - +- all | python-dicoclient | 2.1-3 | - +- all | python-dicom | 0.9.6-1 | - +- all | python-dictclient | 1.0.3.1 | - +- all | python-dictdlib | 2.0.4.1 | - +- all | python-dingus | 0.3.4-1 | - +- all | python-dipy | 0.5.0-3 | - +- all | python-dipy-doc | 0.5.0-3 | - ++ all | python-dirspec | - | 4.2.0-1~bpo70+1 +- all | python-distribute-doc | 0.6.24-1 | - +- all | python-distro-info | 0.10 | - +- all | python-distutils-extra | 2.36-1 | - +! all | python-django | 1.4.5-1+deb7u4 | 1.5.2-1~bpo70+1 +- all | python-django-adminaudit | 0.3.2-1 | - +- all | python-django-app-plugins | 0.1.1-1 | - +- all | python-django-auth-ldap | 1.0.19-2 | - +- all | python-django-auth-ldap-doc | 1.0.19-2 | - +- all | python-django-auth-openid | 0.4-1 | - +- all | python-django-authority | 0.4-2 | - +- all | python-django-celery | 2.5.5-2 | - +- all | python-django-celery-doc | 2.5.5-2 | - +- all | python-django-contact-form | 0+hg61-2 | - +- all | python-django-countries | 1.2-1 | - +- all | python-django-dajax | 0.8.4-5 | - +- all | python-django-dajaxice | 0.2-2 | - +- all | python-django-debug-toolbar | 1:0+git201107220111-96e46c6-1 | - +- all | python-django-djapian | 2.3.1-3 | - +! all | python-django-doc | 1.4.5-1+deb7u4 | 1.5.2-1~bpo70+1 +- all | python-django-evolution | 0.6.7-1 | - +- all | python-django-extdirect | 0.7-1 | - +- all | python-django-extra-views | 0.2.4-2 | - +- all | python-django-feincms | 1.6.2-2 | - +- all | python-django-feincms-doc | 1.6.2-2 | - +- all | python-django-floppyforms | 0.4.7-2 | - +- all | python-django-formfieldset | 0+git20090520-621cb58-1 | - +- all | python-django-genshi | 1.1.3-4 | - +- all | python-django-horizon | 2012.1.1-10 | - ++ all | python-django-jsonfield | - | 0.9.12-1~bpo70+1 ++ all | python-django-ldapdb | - | 0.2.0-1~bpo70+2 +- all | python-django-lint | 0.13-2 | - +- all | python-django-localeurl | 1.5-3 | - +- all | python-django-markupfield | 1.0.2-2 | - +- all | python-django-mptt | 0.5.2-1 | - +- all | python-django-mumble | 2.7-7 | - +! all | python-django-nose | 1.1-1 | 1.2-1~bpo70+1 +- all | python-django-notification | 0.1.5-2 | - +- all | python-django-pagination | 1.0.5-1 | - +- all | python-django-picklefield | 0.2.1-2 | - +- all | python-django-registration | 0.8-2 | - +- all | python-django-reversion | 1.6-1 | - +- all | python-django-rosetta | 0.6.6-1 | - +- all | python-django-sekizai | 0.5.0-1 | - +- all | python-django-shorturls | 1.0.1-3 | - +- all | python-django-social-auth | 0.7.0-1 | - +- all | python-django-south | 0.7.5-1 | - +- all | python-django-tagging | 0.3.1-2 | - +- all | python-django-threaded-multihost | 1.3.2-2 | - +- all | python-django-threadedcomments | 0.5.3-4 | - +- all | python-django-tinymce | 1.5-3 | - +- all | python-django-treebeard | 1.61-3 | - +- all | python-django-treebeard-doc | 1.61-3 | - +- all | python-django-uwsgi-admin | 1.2.3+dfsg-5+deb7u1 | - +- all | python-django-voting | 0.1-2 | - +- all | python-django-websocket | 0.3.0-3 | - +- all | python-djvu-doc | 0.3.9-1 | - +- all | python-dkim | 0.5.3-1+deb7u1 | - +- all | python-dns | 2.3.6-1+deb7u1 | - +- all | python-dnspython | 1.10.0-1 | - +- all | python-doc | 2.7.3-4+deb7u1 | - +- all | python-docutils | 0.8.1-8 | - +- all | python-dogtail | 0.6.1-3.2 | - +- all | python-dpkt | 1.6+svn54-1 | - ++ all | python-dput | - | 1.7~bpo70+1 +- all | python-drmaa | 0.5-1 | - +- all | python-dsv | 1.4.1-2 | - +- all | python-easygui | 0.96-3 | - +- all | python-easyzone | 1.2.2-1 | - +- all | python-ecasound | 2.9.0-1 | - +- all | python-ecasound2.2 | 2.9.0-1 | - +- all | python-editobj | 0.5.7-9 | - +- all | python-egenix-mx-base-dev | 3.2.1-1.1 | - +- all | python-egenix-mxbeebase-doc | 3.2.1-1.1 | - +- all | python-egenix-mxdatetime-doc | 3.2.1-1.1 | - +- all | python-egenix-mxproxy-doc | 3.2.1-1.1 | - +- all | python-egenix-mxqueue-doc | 3.2.1-1.1 | - +- all | python-egenix-mxstack-doc | 3.2.1-1.1 | - +- all | python-egenix-mxtexttools-doc | 3.2.1-1.1 | - +- all | python-egenix-mxtools-doc | 3.2.1-1.1 | - +- all | python-egenix-mxuid-doc | 3.2.1-1.1 | - +- all | python-egenix-mxurl-doc | 3.2.1-1.1 | - +- all | python-elements | 0.13+svn20090823.230+dfsg-2 | - +- all | python-elib.intl | 0.0.3~git20110809-2 | - +- all | python-elixir | 0.7.1-1 | - +- all | python-empy | 3.3-6 | - +- all | python-empy-doc | 3.3-6 | - +- all | python-enchant | 1.6.5-2 | - +- all | python-enthoughtbase | 3.1.0-2 | - +- all | python-enum | 0.4.4-2 | - +- all | python-envisage | 4.1.0-2 | - +- all | python-envisagecore | 3.2.0-2 | - +- all | python-envisageplugins | 3.2.0-2 | - +- all | python-epr-doc | 0.6.1-2 | - +- all | python-epsilon | 0.6.0-3 | - +- all | python-epydoc | 3.0.1+dfsg-1 | - +- all | python-etk.docking | 0.2-1 | - +- all | python-eventlet | 0.9.16-3 | - +- all | python-examples | 2.7.3-4+deb7u1 | - +- all | python-excelerator | 0.6.4.1-1 | - +- all | python-execnet | 1.0.9-0.1 | - +- all | python-exif | 1.0.8-3 | - +- all | python-expeyes | 2.0.0-3 | - +- all | python-extractor | 1:0.6-4 | - +- all | python-eyed3 | 0.6.18-1 | - +- all | python-facebook | 0.svn20100209-3 | - +- all | python-fastimport | 0.9.2-1 | - ++ all | python-fedmsg | - | 0.7.1-1~bpo70+1 ++ all | python-fedmsg-doc | - | 0.7.1-1~bpo70+1 +- all | python-feedparser | 5.1.2-1 | - +- all | python-feedvalidator | 0~svn1022-2 | - +- all | python-ferari | 1.0.0-1 | - +- all | python-ffc | 1.0.0-1 | - +- all | python-fiat | 1.0.0-1 | - +- all | python-fibranet | 10-3 | - +- all | python-fixtures | 0.3.6-1.1 | - +- all | python-flask | 0.8-1 | - +- all | python-flaskext.wtf | 0.6-1 | - +- all | python-flexmock | 0.9.6-1 | - +- all | python-flickrapi | 1.2-3 | - +- all | python-fltk-doc | 1.3.0-1 | - +- all | python-flufl.bounce | 2.1.1-1 | - +- all | python-flufl.bounce-doc | 2.1.1-1 | - +- all | python-flufl.enum | 3.3.2-1 | - +- all | python-flufl.enum-doc | 3.3.2-1 | - +- all | python-flufl.i18n | 1.1.1-1 | - +- all | python-flufl.i18n-doc | 1.1.1-1 | - +- all | python-flufl.lock | 2.2.1-2 | - +- all | python-flufl.lock-doc | 2.2.1-2 | - +- all | python-flufl.password | 1.2.1-1 | - +- all | python-flufl.password-doc | 1.2.1-1 | - +- all | python-flup | 1.0.2-2 | - +- all | python-fmcs | 1.0-1 | - +- all | python-foolscap | 0.6.4-1 | - +- all | python-forgethtml | 0.0.20031008-10 | - +- all | python-forgetsql | 0.5.1-12 | - +- all | python-formencode | 1.2.4-2 | - +- all | python-fpconst | 0.7.2-5 | - +- all | python-freevo | 1.9.2b2-4.2 | - +- all | python-freshen | 0.2-2 | - +- all | python-fs | 0.3.0-2 | - +- all | python-fudge | 1.0.3-3 | - +- all | python-fudge-doc | 1.0.3-3 | - +- all | python-funcparserlib | 0.3.5-2 | - +- all | python-gadfly | 1.0.0-15.1 | - +- all | python-galleryremote | 0.6-1.1 | - +- all | python-gamera-dev | 3.3.3-2 | - +- all | python-gamera.toolkits.greekocr | 1.0.1-4 | - +- all | python-gamera.toolkits.ocr | 1.0.6-3 | - +- all | python-gammu-doc | 1.31.90-1 | - ++ all | python-ganeti-rapi | - | 2.9.4-1~bpo70+1 +- all | python-gaphas | 0.7.2-1 | - +- all | python-gasp | 0.3.4-1 | - +- all | python-gastables | 0.3-2 | - +- all | python-gdata | 2.0.17+dfsg-1 | - +- all | python-gdata-doc | 2.0.17+dfsg-1 | - +- all | python-gdchart2-doc | 0.beta1-3.4 | - +- all | python-gearman | 2.0.2-2 | - +- all | python-genetic | 0.1.1b-11 | - +- all | python-genshi-doc | 0.6-3 | - +- all | python-geoclue | 0.1.0-4 | - +- all | python-geopy | 0.94.2-1 | - +- all | python-germinate | 2.10 | - +- all | python-gevent-doc | 0.13.6-1+nmu3 | - +- all | python-gflags | 1.5.1-1 | - +- all | python-gi-dev | 3.2.2-2 | - +- all | python-git | 0.3.2~RC1-1 | - +- all | python-glance | 2012.1.1-5 | - +- all | python-glance-doc | 2012.1.1-5 | - +- all | python-glitch | 0.6-2.1 | - +- all | python-gluon | 1.99.7-1 | - +- all | python-gnatpython-doc | 54-3 | - +- all | python-gnome2-desktop-dev | 2.32.0+dfsg-2 | - +- all | python-gnome2-dev | 2.28.1+dfsg-1 | - +- all | python-gnome2-doc | 2.28.1+dfsg-1 | - +- all | python-gnome2-extras-dev | 2.25.3-12 | - +- all | python-gnupg | 0.3.0-1.1 | - +- all | python-gnupginterface | 0.3.2-9.1 | - +- all | python-gnuplot | 1.8-1.1 | - +- all | python-gobject | 3.2.2-2 | - +- all | python-gobject-2-dev | 2.28.6-10 | - +- all | python-gobject-dbg | 3.2.2-2 | - +- all | python-gobject-dev | 3.2.2-2 | - +- all | python-goopy | 0.1-5 | - +- all | python-graphy | 1.0+dfsg-3 | - +- all | python-greenlet-doc | 0.3.1-2.5 | - +- all | python-gridfs | 2.2-4+deb7u1 | - +- all | python-gtk2-dev | 2.24.0-3 | - +- all | python-gtk2-doc | 2.24.0-3 | - +- all | python-gtk2-tutorial | 2.4-1 | - +- all | python-gtkmvc | 1.99.1-1 | - +- all | python-gtkmvc-doc | 1.99.1-1 | - +- all | python-guidata | 1.4.1-2 | - +- all | python-gvgen | 0.9-2 | - +- all | python-hachoir-core | 1.3.3-3 | - +- all | python-hachoir-metadata | 1.3.3-1 | - +- all | python-hachoir-parser | 1.3.4-1 | - +- all | python-hachoir-regex | 1.0.5-1 | - +- all | python-hachoir-subfile | 0.5.3-2 | - +- all | python-hachoir-urwid | 1.1-2 | - +- all | python-hachoir-wx | 0.3-2 | - +- all | python-hamcrest | 1.6-1 | - +- all | python-hl7 | 0.2.2-1 | - +- all | python-html2text | 3.200.3-2 | - +- all | python-html5lib | 0.95-1 | - +- all | python-htmlgen | 2.2.2-12 | - +- all | python-htmltmpl | 1.22-10 | - +- all | python-httplib2 | 0.7.4-2+deb7u1 | - +! all | python-ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- all | python-id3 | 1.2-6.2 | - +- all | python-imaging-doc | 1.1.7-4 | - +- all | python-imaging-doc-html | 1.1.2-1.1 | - +- all | python-imaging-doc-pdf | 1.1.2-1.1 | - +- all | python-impacket | 0.9.6.0-3 | - +- all | python-impacket-doc | 0.9.6.0-3 | - +- all | python-import-relative | 0.1.0-2 | - +- all | python-importlib | 1.0.2-2 | - +- all | python-indigo | 1.0.0-2 | - +- all | python-iniparse | 0.4-2.1 | - +- all | python-insanity | 0.0+git20110920.4750a8e8-2 | - +- all | python-instant | 1.0.0-1 | - +- all | python-iowait | 0.1-1.1 | - +- all | python-ipaddr | 2.1.10-1 | - +- all | python-ipcalc | 0.3-1 | - +- all | python-ipdb | 0.6.1-1 | - +- all | python-iplib | 1.1-3 | - +- all | python-ipy | 1:0.75-1 | - +- all | python-irclib | 0.4.8-1 | - +- all | python-iso8583 | 1.1-1 | - +- all | python-iso8601 | 0.1.4-2 | - +- all | python-isodate | 0.4.6-1 | - +- all | python-jabber | 0.5.0-1.4 | - +- all | python-jabberbot | 0.15-1 | - +- all | python-jarabe-0.96 | 0.96.1-2.1 | - +- all | python-jaxml | 3.01-6.1 | - +- all | python-jinja2-doc | 2.6-1 | - +- all | python-joblib | 0.6.4-3 | - +- all | python-jpylyzer | 1.5.0-2 | - +- all | python-jsonpickle | 0.4.0-1 | - +- all | python-jsonpipe | 0.0.8-4 | - +- all | python-jsonrpc2 | 0.3.2-3 | - +! all | python-jsonschema | 0.2-1 | 2.0.0-1~bpo70+1 +- all | python-junitxml | 0.6-1 | - +- all | python-kajiki | 0.3.5-1 | - +- all | python-kde4-dev | 4:4.8.4-1 | - +- all | python-kde4-doc | 4:4.8.4-1 | - +- all | python-keyczar | 0.6~b.061709+svn502-1 | - +- all | python-keyring | 0.7.1-1+deb7u1 | - +- all | python-keystone | 2012.1.1-13+wheezy1 | - +- all | python-keystoneclient | 2012.1-3+deb7u1 | - +- all | python-kid | 0.9.6-2 | - ++ all | python-kitchen | - | 1.1.1-1~bpo70+1 +- all | python-kiwi | 1.9.22-2 | - +- all | python-kombu | 2.1.8-1 | - +- all | python-kombu-doc | 2.1.8-1 | - +- all | python-ktoblzcheck | 1.39-1 | - +- all | python-kzorp | 3.9.5-4 | - +- all | python-laditools | 1.0.1-2 | - +- all | python-lamson | 1.0pre11-1 | - +- all | python-landslide | 1.0.1-1 | - +- all | python-larch | 1.20121006-1 | - +- all | python-launchpadlib | 1.9.12-2 | - +- all | python-lazr.restfulclient | 0.12.0-2+deb7u1 | - +- all | python-lazr.uri | 1.0.3-1 | - +- all | python-lazyarray | 0.1.0-1 | - +- all | python-ldaptor | 0.0.43+debian1-7 | - +- all | python-ldtp | 2.3.1-1 | - +- all | python-lepl | 5.1.1-1 | - +- all | python-libcloud | 0.5.0-1.1 | - +- all | python-libconcord | 0.24-1.1 | - +- all | python-liblarch | 0.1.0-1 | - +- all | python-liblarch-gtk | 0.1.0-1 | - +- all | python-liblas | 1.2.1-2 | - +- all | python-libproxy | 0.3.1-6 | - +- all | python-libravatar | 1.5-3 | - ++ all | python-libturpial | - | 1.6.0-1~bpo70+1 +- all | python-libvoikko | 3.5-1.1 | - +- all | python-linaro-image-tools | 2012.06-1 | - +- all | python-llfuse-doc | 0.37.1-2 | - +- all | python-lockfile | 1:0.8-2 | - +- all | python-loggingx | 0.1.3-1.1 | - +- all | python-logilab-astng | 0.23.1-1 | - +- all | python-logilab-common | 0.58.0-1 | - +- all | python-logilab-constraint | 0.4.0-5 | - +- all | python-logsparser | 0.4-1 | - +- all | python-louie | 1.1-1.1 | - +- all | python-lunch | 0.4.0-1 | - +! all | python-lxml-doc | 2.3.2-1 | 3.3.1-1~bpo70+1 +- all | python-macaron | 0.3.1-1 | - +- all | python-mailer | 0.7-1 | - +- all | python-mako | 0.7.0-1.1 | - +- all | python-mako-doc | 0.7.0-1.1 | - +- all | python-markdown | 2.1.1-3 | - +- all | python-markdown-doc | 2.1.1-3 | - +- all | python-matplotlib-data | 1.1.1~rc2-1 | - +- all | python-matplotlib-doc | 1.1.1~rc2-1 | - +- all | python-mdp | 3.3-1 | - +- all | python-mecavideo | 6.0-5 | - +- all | python-mechanize | 1:0.2.5-3 | - +- all | python-medusa | 1:0.5.4-7 | - +- all | python-medusa-doc | 1:0.5.4-7 | - +- all | python-melange | 1:2012.1-3 | - +- all | python-melangeclient | 0.1-1.2 | - +- all | python-memcache | 1.48-1 | - +- all | python-messaging | 0.5.11+debian-1 | - +- all | python-midiutil | 0.87-2 | - +- all | python-migrate | 0.7.2-3 | - +- all | python-milter-doc | 0.9.5-3 | - +- all | python-milter-docs | 0.9.5-3 | - +- all | python-mimeparse | 0.1.3-6 | - +- all | python-minimal | 2.7.3-4+deb7u1 | - +- all | python-minimock | 1.2.7-1 | - +- all | python-mlpy | 2.2.0~dfsg1-2 | - +- all | python-mlpy-doc | 2.2.0~dfsg1-2 | - +- all | python-mock | 0.8.0-3 | - +- all | python-mock-doc | 0.8.0-3 | - +- all | python-mocker | 1.0-2 | - +- all | python-mod-pywebsocket | 0.7.5-1 | - +- all | python-mode | 1:5.1.0-1 | - +- all | python-modestmaps | 1.3.1-1 | - +- all | python-moinmoin | 1.9.4-8+deb7u2 | - ++ all | python-moksha.common | - | 1.2.0-1~bpo70+1 ++ all | python-moksha.hub | - | 1.2.1-1~bpo70+1 +- all | python-monajat | 2.6.3-1 | - +- all | python-mongoengine | 0.6.13-2 | - +- all | python-mongoengine-doc | 0.6.13-2 | - +- all | python-moovida | 1.0.9+bzr1614-1.1 | - +- all | python-mosquitto | 0.15-2 | - +- all | python-mox | 0.5.3-3 | - +- all | python-mpd | 0.3.0-4 | - +- all | python-mpdclient | 0.11.1-2 | - +- all | python-mpi | 2.8-4 | - +- all | python-mpi4py-doc | 1.3+hg20120611-3 | - +- all | python-mpltoolkits.basemap-data | 1.0.3+dfsg-2 | - +- all | python-mpltoolkits.basemap-doc | 1.0.3+dfsg-2 | - +- all | python-mpmath | 0.17-1 | - +- all | python-mpmath-doc | 0.17-1 | - +- all | python-mrjob | 0.3.3.2-1 | - +- all | python-msnlib | 3.8-1 | - +- all | python-multipartposthandler | 0.1.0-2 | - +- all | python-munkres | 1.0.5.4-2 | - +- all | python-musicbrainz2 | 0.7.4-1 | - +- all | python-musicbrainz2-doc | 0.7.4-1 | - +- all | python-musicbrainzngs | 0.2-1 | - +- all | python-mutagen | 1.20-1 | - +- all | python-mvpa | 0.4.8-1 | - +- all | python-mvpa-doc | 0.4.8-1 | - +- all | python-mvpa2 | 2.1.0-1 | - +- all | python-mvpa2-doc | 2.1.0-1 | - +- all | python-myghty | 1.1-5 | - +- all | python-myghtyutils | 0.52-4 | - +- all | python-mygpoclient | 1.4-1 | - +- all | python-mysql.connector | 0.3.2-1 | - +- all | python-neo | 0.2.0-1 | - +- all | python-netaddr | 0.7.7-1 | - +- all | python-netaddr-docs | 0.7.7-1 | - +- all | python-netfilter | 0.5.7-1 | - +- all | python-netio230a | 1.0.1-3 | - +- all | python-networkx | 1.7~rc1-3 | - +- all | python-networkx-doc | 1.7~rc1-3 | - +- all | python-nevow | 0.10.0-4 | - +- all | python-nibabel | 1.2.2-1 | - +- all | python-nibabel-doc | 1.2.2-1 | - +- all | python-nipype | 0.5.3-2wheezy2 | - +- all | python-nipype-doc | 0.5.3-2wheezy2 | - +- all | python-nitime | 0.4-2 | - +- all | python-nitime-doc | 0.4-2 | - +- all | python-nmap | 0.2.4-1 | - +- all | python-nodebox-web | 1.9.4.6-2 | - +- all | python-nose | 1.1.2-3 | - +- all | python-nose-doc | 1.1.2-3 | - +- all | python-nosexcover | 1.0.7-1 | - +- all | python-notify2 | 0.3-2 | - +! all | python-notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +- all | python-nova | 2012.1.1-18 | - +- all | python-novaclient | 1:2012.1-4 | - +- all | python-novnc | 2012.1~e3+dfsg+1-4 | - +- all | python-numm | 0.4-1 | - +- all | python-numpy-doc | 1:1.6.2-1.2 | - +- all | python-nut | 2.6.4-2.3+deb7u1 | - +- all | python-nwdiag | 0.7.0-1 | - +- all | python-nwsclient | 1.6.4-8 | - +- all | python-nwsserver | 2.0.0-2 | - +- all | python-nxt | 2.2.2-1 | - +- all | python-nxt-filer | 2.2.2-1 | - +- all | python-oauth | 1.0.1-3 | - +- all | python-oauth2 | 1.5.211-2 | - +- all | python-oauthlib | 0.1.2-1 | - +- all | python-objgraph | 1.7.1-1 | - +- all | python-objgraph-doc | 1.7.1-1 | - +- all | python-old-doctools | 2.5.5-2.1 | - +- all | python-omniorb-doc | 3.6-1 | - +- all | python-omniorb-omg | 3.6-1 | - +- all | python-ooolib | 0.0.17-2.1 | - +- all | python-opengl | 3.0.1-1 | - +- all | python-openid | 2.2.5-3 | - +- all | python-openid-doc | 2.2.5-3 | - +- all | python-openoffice | 1:0.1+20110209-3 | - +- all | python-openopt | 0.38+svn1589-1 | - +- all | python-openpyxl | 1.5.8-1 | - +- all | python-openssl-doc | 0.13-2+deb7u1 | - +- all | python-openvswitch | 1.4.2+git20120612-9.1~deb7u1 | - +- all | python-opster | 3.7-1 | - +- all | python-optcomplete | 1.2-11.1 | - +- all | python-osd | 0.2.14-5.1 | - +- all | python-ownet | 2.8p15-1 | - +- all | python-packagekit | 0.7.6-3 | - +- all | python-packagekit-gtk | 3.4.2-2 | - ++ all | python-paisley | - | 0.3.1-1~bpo70+1 +- all | python-pandas | 0.8.0-2 | - +- all | python-parallel | 0.2-7 | - +- all | python-paramiko | 1.7.7.1-3.1 | - +- all | python-parsedatetime | 0.8.7-3 | - ++ all | python-parsley | - | 1.2-1~bpo70+1 +- all | python-passlib | 1.5.3-2 | - +- all | python-paste | 1.7.5.1-4.1 | - +- all | python-pastedeploy | 1.5.0-3 | - +- all | python-pastescript | 1.7.5-2 | - +- all | python-pastewebkit | 1.0-7 | - +- all | python-pbs | 0.95-1 | - +- all | python-pcs | 0.5+debian-1.1 | - +- all | python-pdfminer | 20110515+dfsg-1 | - +- all | python-pdfrw | 0+svn136-3 | - +- all | python-pdftools | 0.37-3 | - +- all | python-peak.rules | 0.5a1+r2707-1 | - +- all | python-peak.util | 20110909-1 | - +- all | python-peak.util.decorators | 1.8-2 | - +- all | python-pebl-doc | 1.0.2-2 | - +- all | python-pefile | 1.2.9.1-1 | - +- all | python-pesto | 25-1 | - +- all | python-pexpect | 2.4-1 | - ++ all | python-pgpdump | - | 1.4-1~bpo70+1 +- all | python-pika | 0.9.5-1 | - +- all | python-pip | 1.1-3 | - +- all | python-pipeline | 0.1.3-3 | - +- all | python-pisa | 3.0.32-1 | - +- all | python-pkg-resources | 0.6.24-1 | - +- all | python-plastex | 0.9.2-1 | - +- all | python-plastex-doc | 0.9.2-1 | - +- all | python-plwm | 2.6a+20080530-1.1 | - +- all | python-ply | 3.4-3 | - +- all | python-ply-doc | 3.4-3 | - +- all | python-pmw | 1.3.2-6 | - +- all | python-pmw-doc | 1.3.2-6 | - +- all | python-polib | 1.0.0-2 | - +- all | python-polib-doc | 1.0.0-2 | - +- all | python-popcon | 1.1 | - +- all | python-poster | 0.8.1-0.1 | - ++ all | python-potr | - | 1.0.0-1~bpo70+1 +- all | python-pp | 1.6.2-2 | - +- all | python-prettytable | 0.6.1-1 | - +- all | python-progressbar | 2.2-2 | - +- all | python-protobuf.socketrpc | 1.3.2-2 | - +- all | python-prowlpy | 0+20100211.92df046-1 | - +- all | python-psycopg2-doc | 2.4.5-1 | - +- all | python-ptrace | 0.6.4-2 | - +- all | python-pudb | 2012.1-1 | - +- all | python-py | 1.4.8-1 | - +- all | python-pyamf-doc | 0.6.1+dfsg-3 | - +- all | python-pyasn1 | 0.1.3-1 | - +- all | python-pyassimp | 3.0~dfsg-1 | - +- all | python-pyatspi | 2.5.3+dfsg-3 | - +- all | python-pyatspi2 | 2.5.3+dfsg-3 | - +- all | python-pybabel | 0.9.6-1 | - +- all | python-pycalendar | 2.0~svn188-1 | - +- all | python-pycallgraph | 0.5.1-3 | - +- all | python-pycha | 0.6.0-3 | - +- all | python-pychart | 1.39-7 | - +- all | python-pychart-doc | 1.39-7 | - +- all | python-pyclamd | 0.2.2-1 | - +- all | python-pycountry | 0.14.1+ds1-3 | - +- all | python-pycparser | 2.07+dfsg-1 | - +- all | python-pydhcplib | 0.6.2-3 | - +- all | python-pydirector | 1.0.0-2 | - +- all | python-pydoctor | 0.3+bzr567-1 | - +- all | python-pydot | 1.0.2-1 | - +- all | python-pyds9 | 1.4-1 | - +- all | python-pyentropy | 0.4.1-1 | - +- all | python-pyepl-common | 1.1.0-3.1 | - +- all | python-pyevolve | 0.6~rc1+svn398+dfsg-2 | - +- all | python-pyevolve-doc | 0.6~rc1+svn398+dfsg-2 | - +- all | python-pyexiv2-doc | 0.3.2-5 | - +- all | python-pyface | 4.1.0-1 | - +- all | python-pyfiglet | 0.6+dfsg-1 | - +- all | python-pyftpdlib | 0.7.0-1 | - +- all | python-pygccxml | 1.0.0-4 | - +- all | python-pyglet | 1.1.4.dfsg-2 | - +! all | python-pygments | 1.5+dfsg-1 | 1.6+dfsg-1~bpo70+1 +- all | python-pygooglechart | 0.3.0-1 | - +- all | python-pygrace | 0.4p2-3 | - +- all | python-pygraph | 1.8.1-1 | - +- all | python-pyhsm | 1.0.4-1 | - +- all | python-pyinotify | 0.9.3-1.1 | - +- all | python-pyinotify-doc | 0.9.3-1.1 | - +- all | python-pyip | 0.7-1 | - +- all | python-pyjavaproperties | 0.6-1 | - +- all | python-pyke | 1.1.1-3 | - +- all | python-pyke-doc | 1.1.1-3 | - +- all | python-pykickstart | 1.83-1 | - +- all | python-pylast | 0.5.11-1 | - +- all | python-pylons | 1.0-2 | - +- all | python-pyme-doc | 1:0.8.1-2 | - +- all | python-pymetar | 0.19-1 | - +- all | python-pymodbus | 0.9.0+r175-3 | - +- all | python-pymongo-doc | 2.2-4+deb7u1 | - +! all | python-pymtp | 0.0.4-4 | 0.0.6-1~bpo70+1 +- all | python-pynetsnmp | 0.28.14-1.2 | - +- all | python-pynn | 0.7.4-1 | - +- all | python-pyode-doc | 1.2.0-4+cvs20090320 | - +- all | python-pyoptical | 0.3-1 | - +- all | python-pyorbit-dev | 2.24.0-6 | - +- all | python-pyorbit-omg | 2.24.0-6 | - +- all | python-pyparsing | 1.5.6+dfsg1-2 | - +- all | python-pyparsing-doc | 1.5.6+dfsg1-2 | - +- all | python-pypdf | 1.13-1 | - ++ all | python-pyptlib | - | 0.0.5-1~bpo70+1 +- all | python-pypureomapi | 0.2-1 | - +- all | python-pyquery | 1.2.1-1 | - +- all | python-pyrad | 1.2-1+deb7u2 | - +- all | python-pyramid | 1.2.3+dfsg-1 | - +- all | python-pyramid-beaker | 0.6.1+ds1-1 | - +- all | python-pyramid-tm | 0.4-1 | - +- all | python-pyramid-zcml | 0.9.2-1 | - +- all | python-pyrex | 0.9.8.5-2 | - +- all | python-pyrrd | 0.1.0-1 | - +- all | python-pyrss2gen | 1.0.0-9 | - +- all | python-pyscript | 0.6.1-3 | - +- all | python-pyscript-doc | 0.6.1-3 | - +- all | python-pysearch | 3.1-1.1 | - +- all | python-pyshp | 1.1.4-1 | - +- all | python-pyside | 1.1.1-3 | - +- all | python-pysnmp4 | 4.2.2-1 | - +- all | python-pysnmp4-apps | 0.3.2-1 | - +- all | python-pysnmp4-doc | 4.2.2-1 | - +- all | python-pysnmp4-mibs | 0.1.3-1 | - +- all | python-pysolr | 2.0.15-1 | - +- all | python-pysqlite2-doc | 2.6.3-3 | - +- all | python-pytango-doc | 7.2.3-2 | - +- all | python-pytest | 2.2.4-2 | - +- all | python-pytest-doc | 2.2.4-2 | - +- all | python-pytest-xdist | 1.8-0.1 | - +- all | python-pyth | 0.5.6-3 | - +- all | python-pythoncard | 0.8.2-2 | - +- all | python-pytils | 0.2.3-2 | - +- all | python-pytools | 2011.5-2 | - +- all | python-pyudev | 0.13-1 | - +- all | python-pyvtk | 0.4.74-3 | - +- all | python-pywapi | 0.2.2-1 | - +- all | python-pywbem | 0.7.0-4 | - +- all | python-pyx-doc | 0.11.1-2 | - +- all | python-pyxid | 1.0-1 | - +- all | python-pyxmpp-doc | 1.1.2-1 | - +- all | python-pyxnat | 0.9.0~dev0-1.1 | - +- all | python-qgis-common | 1.7.4+1.7.5~20120320-1.1 | - +- all | python-qpid | 0.16-1 | - +- all | python-qpid-extras-qmf | 0.16-1 | - ++ all | python-qrcode | - | 4.0.1-2~bpo70+1 +- all | python-qrtools | 1.2-2 | - +- all | python-qt4-dev | 4.9.3-4 | - +- all | python-qt4-doc | 4.9.3-4 | - +- all | python-quantities | 0.10.1-1 | - +- all | python-quantum | 2012.1-5+deb70u1 | - +- all | python-quantumclient | 2012.1-1 | - +- all | python-quixote-doc | 2.7~b2-1 | - +- all | python-qwt3d-doc | 0.1.7~cvs20090625-9 | - +- all | python-qwt5-doc | 5.2.1~cvs20091107+dfsg-6 | - +- all | python-radicale | 0.7-1.1 | - +- all | python-rainbow | 0.8.6-1 | - +- all | python-rbtools | 0.3.4-1 | - +- all | python-recaptcha | 1.0.6-1 | - +- all | python-redis | 2.4.13-1 | - +- all | python-relational | 1.1-1 | - +- all | python-relatorio | 0.5.6-2 | - +- all | python-reportbug | 6.4.4 | - +- all | python-reportlab | 2.5-1.1 | - +- all | python-reportlab-doc | 2.5-1.1 | - +- all | python-repoze.lru | 0.5-2 | - +- all | python-repoze.sphinx.autointerface | 0.4-1 | - +- all | python-repoze.tm2 | 1.0b2-1 | - +- all | python-repoze.what | 1.0.9-2 | - +- all | python-repoze.what-plugins | 20090531-2 | - +- all | python-repoze.who | 1.0.18-2 | - +- all | python-repoze.who-plugins | 20090913-1 | - +! all | python-requests | 0.12.1-1 | 2.0.0-1~bpo70+1 +- all | python-restkit | 4.1.3-2 | - +- all | python-rgain | 1.0.1-1 | - +- all | python-rhash | 1.2.9-8+deb7u1 | - +- all | python-rhn | 2.5.52-1 | - +- all | python-roman | 0.8.1-8 | - +- all | python-rope | 0.9.2-1 | - +- all | python-ropemacs | 0.6c2-4 | - +- all | python-routes | 1.13-2 | - +- all | python-rpy-doc | 1.0.3-22 | - +- all | python-rtai | 3.8.1-4 | - +- all | python-rtslib | 2.1-2 | - +- all | python-satellites | 1.0-6 | - +- all | python-scapy | 2.2.0-1 | - +- all | python-scientific | 2.8-4 | - +- all | python-scientific-doc | 2.8-4 | - +- all | python-scikits-learn | 0.11.0-2+deb7u1 | - +- all | python-scikits.statsmodels | 0.4.2-1 | - +- all | python-scitools | 0.9.0-1 | - +- all | python-sclapp | 0.5.3-2 | - +- all | python-scour | 0.26-3 | - +- all | python-scrapy | 0.14.4-1 | - +- all | python-scrapy-doc | 0.14.4-1 | - +- all | python-scriptutil | 1-1 | - +- all | python-sepolgen | 1.1.5-3 | - +- all | python-seqdiag | 0.7.3-1 | - +- all | python-serial | 2.5-2.1 | - +- all | python-sesame | 0.24-1 | - +- all | python-setupdocs | 1.0.5-3 | - +- all | python-setuptools | 0.6.24-1 | - +- all | python-simplegeneric | 0.8.1-1 | - +- all | python-simpleparse | 2.1.0a1-6 | - +- all | python-simpleparse-doc | 2.1.0a1-6 | - +- all | python-simpletal | 4.1-7 | - +- all | python-simpy | 2.3.1-1 | - +- all | python-simpy-doc | 2.3.1-1 | - +- all | python-simpy-gui | 2.3.1-1 | - +- all | python-sip-doc | 4.13.3-2 | - +- all | python-six | 1.1.0-2 | - +- all | python-skimage | 0.6.1-1 | - +- all | python-skimage-doc | 0.6.1-1 | - +- all | python-sklearn | 0.11.0-2+deb7u1 | - +- all | python-sklearn-doc | 0.11.0-2+deb7u1 | - +- all | python-sleekxmpp | 1.0~beta5-2 | - +- all | python-slides | 1.0.1-13 | - +- all | python-slimmer | 0.1.30-6 | - +- all | python-smartypants | 1.6.0.3-2 | - +- all | python-smmap | 0.8.2-1 | - +- all | python-soaplib | 0.8.1-2 | - +- all | python-soappy | 0.12.0-4 | - +- all | python-socketpool | 0.4.1-1 | - +- all | python-socksipy | 1.0-1 | - +- all | python-software-properties | 0.82.7.1debian1 | - +- all | python-sorl-thumbnail | 11.12-4 | - +- all | python-sourcecodegen | 0.6.14-1 | - +- all | python-soya-doc | 0.14-2 | - +- all | python-sparqlwrapper | 1.4.1-1 | - +- all | python-sparse-examples | 1.1-1 | - +- all | python-speechd | 0.7.1-6.2 | - +- all | python-spf | 2.0.7-3 | - +- all | python-sphinx | 1.1.3+dfsg-4 | - +- all | python-sphinx-issuetracker | 0.8-1 | - +- all | python-sphinxcontrib.actdiag | 0.4.2-1 | - +- all | python-sphinxcontrib.blockdiag | 1.1.1-1 | - +- all | python-sphinxcontrib.issuetracker | 0.8-1 | - +- all | python-sphinxcontrib.nwdiag | 0.4.1-1 | - ++ all | python-sphinxcontrib.phpdomain | - | 0.1.4-1~bpo70+1 +- all | python-sphinxcontrib.seqdiag | 0.4.1-1 | - +- all | python-sphinxcontrib.spelling | 1.3-1 | - +- all | python-sponge | 0.3.1-1 | - +- all | python-springpython | 1.2.0+ds-2 | - +- all | python-sprox | 0.6.4-3 | - +- all | python-sptest | 0.2.1-2 | - +- all | python-spyderlib | 2.1.10-2 | - +- all | python-sqlalchemy | 0.7.8-1 | - +- all | python-sqlalchemy-doc | 0.7.8-1 | - +- all | python-sqlkit | 0.9.5-1 | - +- all | python-sqlkit-doc | 0.9.5-1 | - +- all | python-sqlobject | 0.12.4-2.2 | - +- all | python-sqlparse | 0.1.4-1 | - +- all | python-squaremap | 1:1.0.1-1 | - +- all | python-starpy | 1.0.1-1 | - +- all | python-statsmodels | 0.4.2-1 | - +- all | python-statsmodels-doc | 0.4.2-1 | - +- all | python-stdeb | 0.6.0+20100620-2 | - +- all | python-stdnum | 0.7-1 | - +- all | python-stemmer-doc | 1.2.0+dfsg-1 | - +- all | python-stepic | 0.3-4 | - ++ all | python-stomper | - | 0.2.7-1~bpo70+1 +- all | python-stompy | 0.2.9-1 | - +- all | python-strongwind | 0.9-2 | - +- all | python-stsci.distutils | 0.3-1 | - +- all | python-subunit | 0.0.8+bzr176-1 | - +- all | python-suds | 0.4.1-5 | - +- all | python-sunlight | 1.1.5-1 | - +- all | python-sunlight-doc | 1.1.5-1 | - +- all | python-sunpinyin | 2.0.3+git20120607-1 | - +- all | python-support | 1.0.15 | - +- all | python-surfer | 0.3+git15-gae6cbb1-1.1 | - +- all | python-swift | 1.4.8-2+deb7u1 | - +- all | python-symeig | 1.5-2 | - +- all | python-symeig-dbg | 1.5-2 | - +- all | python-sympy | 0.7.1.rc1-3 | - +- all | python-tables-doc | 2.3.1-3 | - +- all | python-tastypie | 0.9.10-2 | - +- all | python-taurus | 3.0.0-2 | - +- all | python-taurus-doc | 3.0.0-2 | - +- all | python-tegaki | 0.3.1-1 | - +- all | python-tegaki-gtk | 0.3.1-1 | - +- all | python-tegakitools | 0.3.1-1 | - +- all | python-telepathy | 0.15.19-2.1 | - +- all | python-tempita | 0.5.1-1 | - +- all | python-templayer | 1.5.1-1 | - +- all | python-testrepository | 0.0.5-1.1 | - +- all | python-testresources | 0.2.4-1 | - +- all | python-testscenarios | 0.2-1 | - +- all | python-testtools | 0.9.14-2 | - +- all | python-textile | 1:2.1.5-1 | - +- all | python-tftpy | 0.6.0-1 | - +- all | python-tg.devtools | 2.0.2-3 | - +- all | python-tgext.admin | 0.2.6-2 | - +- all | python-tidylib | 0.2.1~dfsg-2 | - +- all | python-tksnack | 2.2.10-dfsg1-12.1 | - +- all | python-tlslite | 0.3.8-2 | - +- all | python-tofu | 0.5-5 | - +- all | python-torctl | 20110618git-1 | - +- all | python-tornado | 2.3-2 | - +- all | python-toscawidgets | 0.9.7.2-2 | - +- all | python-tp-client | 0.3.2-2 | - +- all | python-tp-netlib | 0.2.5-3 | - +- all | python-tracer | 0.2.3-1 | - +- all | python-tracing | 0.6-2 | - +- all | python-traitsbackendqt | 3.6.0-2 | - +- all | python-traitsbackendwx | 3.6.0-3 | - +- all | python-traitsgui | 3.6.0-3 | - +- all | python-traitsui | 4.1.0-1 | - +- all | python-transaction | 1.1.1-2 | - +- all | python-translationstring | 1.1-2 | - +- all | python-transmissionrpc | 0.8-1 | - +- all | python-trml2pdf | 1.2-3 | - +- all | python-ttystatus | 0.19-1 | - +- all | python-turbogears2 | 2.1.5-2 | - +- all | python-turbogears2-doc | 2.1.5-1 | - +- all | python-turbojson | 1.3.2-2 | - +- all | python-turbokid | 1.0.5-1 | - +- all | python-tvdb-api | 1.7.1-1 | - +- all | python-tweepy | 1.7.1-2 | - +- all | python-tweepy-doc | 1.7.1-2 | - +- all | python-twill | 0.9-3 | - +! all | python-twisted | 12.0.0-1 | 13.0.0-1~bpo70+1 +- all | python-twisted-conch | 1:12.0.0-1 | - +! all | python-twisted-core | 12.0.0-1 | 13.0.0-1~bpo70+1 +- all | python-twisted-libravatar | 1.1-3 | - +- all | python-twisted-lore | 12.0.0-1 | - +- all | python-twisted-mail | 12.0.0-1 | - +- all | python-twisted-names | 12.0.0-1 | - +- all | python-twisted-news | 12.0.0-1 | - +- all | python-twisted-web | 12.0.0-1 | - +- all | python-twisted-web2 | 8.1.0-3 | - +- all | python-twisted-words | 12.0.0-1 | - +- all | python-txaws | 0.2.3-1 | - +- all | python-txosc | 0.2.0-1 | - ++ all | python-txsocksx | - | 1.13.0.0-1~bpo70+1 ++ all | python-txtorcon | - | 0.9.1-1~bpo70+1 ++ all | python-txws | - | 0.7.1-2~bpo70+1 ++ all | python-txzmq | - | 0.6.2-1~bpo70+1 +- all | python-txzookeeper | 0.9.5-1 | - +- all | python-typogrify | 20111209-2 | - +- all | python-tz | 2012c-1 | - ++ all | python-u1db | - | 0.1.4-2~bpo70+1 +- all | python-ucltip | 0.7.1-1 | - +- all | python-ufl | 1.0.0-1 | - +- all | python-ufl-doc | 1.0.0-1 | - +- all | python-uncertainties | 1.8-1 | - +- all | python-unicodecsv | 0.9.0-1 | - +- all | python-unidecode | 0.04.9-1 | - +- all | python-unipath | 0.2.1+dfsg-1 | - +- all | python-unit | 1.4.1-16 | - +- all | python-unittest2 | 0.5.1-1 | - +- all | python-urlgrabber | 3.9.1-4 | - +! all | python-urllib3 | 1.3-3 | 1.7.1-1~bpo70+1 +- all | python-utidylib | 0.2-8 | - +- all | python-uwsgicc | 1.2.3+dfsg-5+deb7u1 | - +- all | python-uwsgidecorators | 1.2.3+dfsg-5+deb7u1 | - ++ all | python-validictory | - | 0.8.3-2~bpo70+1 ++ all | python-validictory-doc | - | 0.8.3-2~bpo70+1 +- all | python-van.pydeb | 1.3.3-1 | - +- all | python-vatnumber | 1:1.0-2 | - ++ all | python-vcversioner | - | 1.13.0.0-1~bpo70+1 +- all | python-venusian | 1.0a6-1 | - +- all | python-vigra-doc | 1.7.1+dfsg1-3 | - +- all | python-viper | 1.0.0-1 | - +- all | python-virtualenv | 1.7.1.2-2 | - +- all | python-vobject | 0.8.1c-4 | - +- all | python-vsgui | 0.3.3-1 | - +- all | python-w3lib | 1.0-1 | - +- all | python-wader | 0.5.10-1 | - +- all | python-wadllib | 1.3.0-2 | - +- all | python-web2py | 1.99.7-1 | - +- all | python-webcolors | 1.3.1+hg~2c8ac6e0a03d-2 | - +- all | python-webdav | 0.9.8-3 | - +- all | python-weberror | 0.10.3-1 | - +- all | python-webflash | 0.1a9-4 | - +- all | python-webhelpers | 1.3-4 | - +- all | python-webkit-dev | 1.1.8-2 | - +- all | python-weblib | 1.3.9-1 | - +- all | python-weblib-doc | 1.3.9-1 | - +- all | python-webob | 1.1.1-1.1 | - +- all | python-weboob-core | 0.c-4.1 | - +- all | python-webpy | 1:0.37+20120626-1 | - ++ all | python-websocket | - | 0.12.0-1~bpo70+1 +- all | python-webtest | 1.3.4-1 | - +- all | python-webunit | 1:1.3.10-2 | - +- all | python-werkzeug | 0.8.3+dfsg-1 | - +- all | python-whisper | 0.9.10-1 | - +- all | python-whiteboard | 1.0+git20111009-1 | - +- all | python-whois | 0.6.4-2 | - +- all | python-whoosh | 2.3.2-2 | - +- all | python-whoosh-doc | 2.3.2-2 | - +- all | python-wicd | 1.7.2.4-4 | - +- all | python-wit | 2.1-3 | - +- all | python-wokkel | 0.7.0-1 | - +- all | python-wordpresslib | 1.1-1 | - +- all | python-wtforms | 1.0.1-1 | - +- all | python-wxglade | 0.6.5-2 | - +- all | python-wxmpl | 2.0.0-2 | - +- all | python-wxtools | 2.8.12.1-12 | - +- all | python-wxversion | 2.8.12.1-12 | - +- all | python-xappy | 0.5-5 | - +- all | python-xcbgen | 1.7.1-1 | - +- all | python-xdg | 0.19-5 | - +- all | python-xenapi | 1.3.2-15 | - +- all | python-xlib | 0.14+20091101-1 | - +- all | python-xlrd | 0.6.1-2 | - +- all | python-xlwt | 0.7.4+debian1-1 | - +- all | python-xmlmarshaller | 0.9.7+svn39722-2 | - +- all | python-xmlrunner | 1.2-1 | - +- all | python-xmltv | 1.3-1 | - +- all | python-xmpp | 0.4.1-cvs20080505.2 | - +- all | python-yahoo | 3.1-1.1 | - +- all | python-yappy | 1.9.4-1 | - +- all | python-yappy-doc | 1.9.4-1 | - +- all | python-yubico | 1.1.0-2 | - +- all | python-yubico-tools | 1.1.0-2 | - +- all | python-zc.buildout | 1.5.2-1 | - +- all | python-zc.lockfile | 1.0.0-6 | - +- all | python-zconfig | 2.8.0-1 | - +- all | python-zdaemon | 2.0.7-1 | - +- all | python-zeitgeist | 0.9.0.1-1 | - +- all | python-zhpy | 1.7.3.1-1 | - +- all | python-zope.authentication | 3.7.1-3 | - +- all | python-zope.browser | 1.3-2 | - +- all | python-zope.cachedescriptors | 3.5.1-2 | - +- all | python-zope.component | 3.10.0-3 | - +- all | python-zope.component-test | 3.10.0-3 | - +- all | python-zope.component-zcml | 3.10.0-3 | - +- all | python-zope.configuration | 3.7.4-2 | - +- all | python-zope.contenttype | 3.5.3-2 | - +- all | python-zope.copy | 3.5.0-6 | - +- all | python-zope.deprecation | 4.0.0-1 | - +- all | python-zope.dottedname | 3.4.6-5 | - +- all | python-zope.event | 3.5.1-1 | - +- all | python-zope.exceptions | 3.6.1-3 | - +- all | python-zope.i18n | 3.7.4-2 | - +- all | python-zope.location | 3.9.1-2 | - +- all | python-zope.publisher | 3.12.6-2 | - +- all | python-zope.schema | 3.7.1-2 | - +- all | python-zope.sendmail | 3.7.4-2 | - +- all | python-zope.sqlalchemy | 0.6.1-2 | - +- all | python-zope.testbrowser | 4.0.2-1 | - +- all | python-zope.testing | 3.10.2-1 | - +- all | python-zope.testrunner | 4.0.3-3 | - +- all | python-zope.traversing | 3.13.2-2 | - +- all | python-zsi | 2.1~a1-3 | - +- all | python2.6-doc | 2.6.8-1.1 | - +- all | python2.6-examples | 2.6.8-1.1 | - +- all | python2.7-doc | 2.7.3-6 | - +- all | python2.7-examples | 2.7.3-6 | - +- all | python3 | 3.2.3-6 | - +- all | python3-all | 3.2.3-6 | - +- all | python3-all-dbg | 3.2.3-6 | - +- all | python3-all-dev | 3.2.3-6 | - +- all | python3-amqplib | 1.0.2-1 | - +- all | python3-anyjson | 0.3.1-2 | - +- all | python3-authres | 0.402-1 | - +- all | python3-beaker | 1.6.3-1.1 | - +- all | python3-bs4 | 4.1.0-1 | - +- all | python3-cairo-dev | 1.10.0+dfsg-2 | - +- all | python3-cairo-doc | 1.10.0+dfsg-2 | - +- all | python3-cairosvg | 0.4.3-1 | - +- all | python3-chardet | 2.0.1-1 | - +- all | python3-cssutils | 0.9.10~b1-1 | - +- all | python3-cxx | 6.2.4-3 | - +- all | python3-cxx-dev | 6.2.4-3 | - +- all | python3-d2to1 | 0.2.7-1 | - +- all | python3-dateutil | 2.0+dfsg1-1 | - +- all | python3-dbg | 3.2.3-6 | - ++ all | python3-debian | - | 0.1.21+nmu2~bpo70+1 +- all | python3-decorator | 3.3.3-1 | - +- all | python3-defer | 1.0.6-2 | - +- all | python3-dev | 3.2.3-6 | - +- all | python3-dexml | 0.4.2-2 | - ++ all | python3-dirspec | - | 4.2.0-1~bpo70+1 +- all | python3-distro-info | 0.10 | - +- all | python3-distutils-extra | 2.36-1 | - +- all | python3-dkim | 0.5.3-1+deb7u1 | - +- all | python3-dns | 3.0.2-1+deb7u1 | - +- all | python3-dnspython | 1.10.0-1 | - +- all | python3-doc | 3.2.3-6 | - +- all | python3-docutils | 0.8.1-8 | - +- all | python3-easygui | 0.96-3 | - +- all | python3-enchant | 1.6.5-2 | - +- all | python3-examples | 3.2.3-6 | - +- all | python3-flexmock | 0.9.6-1 | - +- all | python3-flufl.bounce | 2.1.1-1 | - +- all | python3-flufl.enum | 3.3.2-1 | - +- all | python3-flufl.i18n | 1.1.1-1 | - +- all | python3-flufl.lock | 2.2.1-2 | - +- all | python3-flufl.password | 1.2.1-1 | - +- all | python3-fudge | 1.0.3-3 | - +- all | python3-germinate | 2.10 | - +- all | python3-gnupg | 0.3.0-1.1 | - +- all | python3-html2text | 3.200.3-2 | - +- all | python3-httplib2 | 0.7.4-2+deb7u1 | - +- all | python3-iowait | 0.1-1.1 | - +- all | python3-ipaddr | 2.1.10-1 | - +- all | python3-ipy | 1:0.75-1 | - +- all | python3-isodate | 0.4.6-1 | - ++ all | python3-jsonschema | - | 2.0.0-1~bpo70+1 +- all | python3-keyring | 0.7.1-1+deb7u1 | - +- all | python3-lazr.uri | 1.0.3-1 | - +- all | python3-lepl | 5.1.1-1 | - ++ all | python3-magic | - | 1:5.14-2~bpo70+1 +- all | python3-mako | 0.7.0-1.1 | - +- all | python3-markdown | 2.1.1-3 | - +- all | python3-mdp | 3.3-1 | - +- all | python3-minimal | 3.2.3-6 | - +- all | python3-mock | 0.8.0-3 | - +- all | python3-netaddr | 0.7.7-1 | - +- all | python3-nose | 1.1.2-3 | - +- all | python3-notify2 | 0.3-2 | - ++ all | python3-notmuch | - | 0.16-1~bpo70+1 +- all | python3-objgraph | 1.7.1-1 | - +- all | python3-pbs | 0.95-1 | - ++ all | python3-pgpdump | - | 1.4-1~bpo70+1 +- all | python3-pip | 1.1-3 | - +- all | python3-pipeline | 0.1.3-3 | - +- all | python3-pkg-resources | 0.6.24-1 | - +- all | python3-ply | 3.4-3 | - +- all | python3-polib | 1.0.0-2 | - ++ all | python3-potr | - | 1.0.0-1~bpo70+1 +- all | python3-prettytable | 0.6.1-1 | - +- all | python3-py | 1.4.8-1 | - +- all | python3-pyatspi | 2.5.3+dfsg-3 | - +- all | python3-pyatspi2 | 2.5.3+dfsg-3 | - +- all | python3-pycparser | 2.07+dfsg-1 | - +! all | python3-pygments | 1.5+dfsg-1 | 1.6+dfsg-1~bpo70+1 +- all | python3-pyinotify | 0.9.3-1.1 | - +- all | python3-pylast | 0.5.11-1 | - +- all | python3-pyparsing | 1.5.6+dfsg1-2 | - +- all | python3-pyshp | 1.1.4-1 | - +- all | python3-pyside | 1.1.1-3 | - +- all | python3-pytest | 2.2.4-2 | - +- all | python3-pytools | 2011.5-2 | - +- all | python3-pyudev | 0.13-1 | - +! all | python3-requests | 0.12.1-1 | 2.0.0-1~bpo70+1 +- all | python3-roman | 0.8.1-8 | - +- all | python3-serial | 2.5-2.1 | - +- all | python3-setuptools | 0.6.24-1 | - +- all | python3-simplegeneric | 0.8.1-1 | - +- all | python3-simpy | 2.3.1-1 | - +- all | python3-six | 1.1.0-2 | - +- all | python3-sleekxmpp | 1.0~beta5-2 | - +- all | python3-slimmer | 0.1.30-6 | - +- all | python3-spf | 2.0.7-3 | - +- all | python3-sphinx | 1.1.3+dfsg-4 | - +- all | python3-sqlalchemy | 0.7.8-1 | - +- all | python3-stdnum | 0.7-1 | - +- all | python3-stsci.distutils | 0.3-1 | - +- all | python3-subunit | 0.0.8+bzr176-1 | - +- all | python3-sunlight | 1.1.5-1 | - +- all | python3-tempita | 0.5.1-1 | - +- all | python3-testtools | 0.9.14-2 | - +- all | python3-tornado | 2.3-2 | - +- all | python3-tz | 2012c-1 | - +- all | python3-unidecode | 0.04.9-1 | - +! all | python3-urllib3 | 1.3-3 | 1.7.1-1~bpo70+1 +- all | python3-uwsgidecorators | 1.2.3+dfsg-5+deb7u1 | - ++ all | python3-validictory | - | 0.8.3-2~bpo70+1 +- all | python3-wadllib | 1.3.0-2 | - +- all | python3-zope.exceptions | 3.6.1-3 | - +- all | python3-zope.fixers | 1.0-1 | - +- all | python3-zope.testrunner | 4.0.3-3 | - +- all | python3.2-doc | 3.2.3-7 | - +- all | python3.2-examples | 3.2.3-7 | - +- all | pythoncad | 0.1.37.0-3 | - +- all | pythoncard | 0.8.2-2 | - +- all | pythoncard-doc | 0.8.2-2 | - +- all | pythoncard-tools | 0.8.2-2 | - +- all | pytimechart | 1.0.0~rc1-3 | - +- all | pytrainer | 1.9.1-2 | - +- all | pyvnc2swf | 0.9.5-5 | - +- all | pyxplot-doc | 0.8.4-5 | - +- all | pyzor | 1:0.5.0-2 | - +- all | qalculate | 0.9.7-3 | - +- all | qastools-common | 0.17.2-2 | - +- all | qbzr | 0.22.2-1 | - +- all | qcad | 2.0.5.0-1+090318.1-2 | - +- all | qct | 1.7-3 | - +- all | qdbm-doc | 1.8.78-2 | - +- all | qelectrotech-data | 0.22+svn897-1 | - +- all | qelectrotech-examples | 0.22+svn897-1 | - +! all | qemu-keymaps | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +- all | qemu-launcher | 1.7.4-1 | - ++ all | qemu-slof | - | 20131015+dfsg-1~bpo70+1 +- all | qemuctl | 0.2-2 | - +- all | qemulator | 0.6.352-1 | - +- all | qgis-api-doc | 1.7.4+1.7.5~20120320-1.1 | - +- all | qgis-common | 1.7.4+1.7.5~20120320-1.1 | - +- all | qgis-plugin-grass-common | 1.7.4+1.7.5~20120320-1.1 | - +- all | qgis-providers-common | 1.7.4+1.7.5~20120320-1.1 | - +- all | qiime-doc | 1.4.0-2 | - +- all | qla-tools | 20090804-1 | - +- all | qmail-run | 2.0.2 | - +- all | qmail-tools | 0.1.0 | - +- all | qmail-uids-gids | 1.06-5 | - +- all | qmf-doc | 1.0.7~2011w23.2-2.1 | - +- all | qmf-doc-html | 1.0.7~2011w23.2-2.1 | - +- all | qmtest | 2.4.1-1 | - +- all | qnapi-gnome | 0.1.5-9 | - +- all | qof-data | 0.8.6-1 | - +- all | qpid-doc | 0.16-6+deb7u1 | - +- all | qpid-specs | 0.16-1 | - +- all | qpid-tools | 0.14-1 | - +- all | qprint-doc | 1.0.dfsg.2-2 | - +- all | qpsmtpd | 0.84-9 | - +- all | qsapecng-doc | 2.0.0-5 | - +- all | qt-at-spi-doc | 0.3.1-3 | - +- all | qt-sdk | 2 | - +- all | qt4-doc | 4:4.8.2+dfsg-11 | - +- all | qt4-doc-html | 4:4.8.2+dfsg-11 | - +- all | qtcreator-doc | 2.5.0-2 | - +- all | qtcurve-i18n | 1.8.12-2 | - +- all | qtgstreamer-doc | 0.10.2-2 | - +- all | qtiplot-doc | 0.9.8.8-5 | - +- all | qtmobility-l10n | 1.2.0-3 | - +- all | qtpfsgui | 2.2.1-3 | - +- all | qtqr | 1.2-2 | - +- all | qtsmbstatus-language | 2.2.1-2 | - +- all | quagga-doc | 0.99.22.4-1+wheezy1 | - +- all | quantlib-refman-html | 1.2-1 | - +- all | quantum-common | 2012.1-1 | - +- all | quantum-espresso-data | 5.0-1 | - +- all | quantum-plugin-cisco | 2012.1-5+deb70u1 | - +- all | quantum-plugin-linuxbridge | 2012.1-5+deb70u1 | - +- all | quantum-plugin-linuxbridge-agent | 2012.1-5+deb70u1 | - +- all | quantum-plugin-nicira | 2012.1-5+deb70u1 | - +- all | quantum-plugin-openvswitch | 2012.1-5+deb70u1 | - +- all | quantum-plugin-openvswitch-agent | 2012.1-5+deb70u1 | - +- all | quantum-plugin-sample | 2012.1-5+deb70u1 | - +- all | quantum-server | 2012.1-5+deb70u1 | - +- all | quassel-data | 0.8.0-1 | - +- all | quassel-data-kde4 | 0.8.0-1 | - +- all | queuegraph | 1.1.1-3 | - +- all | quickml | 0.7-4 | - +- all | quilt | 0.60-2 | - +- all | quilt-el | 0.48.0-1 | - +- all | quodlibet | 2.4-1 | - +- all | quodlibet-plugins | 1:2.4-1 | - +- all | qutecom-data | 2.2.1+dfsg1-3 | - +- all | qweborf | 0.13-3 | - +- all | r-base | 2.15.1-4 | - +- all | r-base-dev | 2.15.1-4 | - +- all | r-base-html | 2.15.1-4 | - +- all | r-bioc-cummerbund | 1.2.0-1 | - +- all | r-bioc-edger | 2.6.1~dfsg-1 | - +- all | r-bioc-qvalue | 1.30.0-1 | - +- all | r-cran-abind | 1.4-0-1 | - +- all | r-cran-amelia | 1.6.1-1 | - +- all | r-cran-boot | 1.3-5-1 | - +- all | r-cran-car | 2.0-12-1 | - +- all | r-cran-coda | 0.14-7-1 | - +- all | r-cran-codetools | 0.2-8-1 | - +- all | r-cran-combinat | 0.0-8-3 | - +- all | r-cran-diagnosismed | 0.2.3-2 | - +- all | r-cran-domc | 1.2.5-1 | - +- all | r-cran-dosnow | 1.0.6-1 | - +- all | r-cran-effects | 2.1.1-1 | - +- all | r-cran-epicalc | 2.14.1.6-1 | - +- all | r-cran-epir | 0.9-38-1 | - +- all | r-cran-epitools | 1:0.5-6-1 | - +- all | r-cran-fexoticoptions | 2110.77-2 | - +- all | r-cran-fextremes | 2100.77-3 | - +- all | r-cran-fimport | 2160.81-1 | - +- all | r-cran-fmultivar | 2100.76-3 | - +- all | r-cran-foreach | 1.4.0-1 | - +- all | r-cran-ftrading | 2100.76-3 | - +- all | r-cran-g.data | 2.0-4 | - +- all | r-cran-gdata | 2.11.0-1 | - +- all | r-cran-genetics | 1.3.6-2 | - +- all | r-cran-ggplot2 | 0.8.9-1 | - +- all | r-cran-gmaps | 0.2-1 | - +- all | r-cran-gmodels | 2.15.3-1 | - +- all | r-cran-gplots | 2.11.0-1 | - +- all | r-cran-gregmisc | 2.1.2-2 | - +- all | r-cran-inline | 0.3.8-1 | - +- all | r-cran-iterators | 1.0.6-1 | - +- all | r-cran-its | 1.1.8-2 | - +- all | r-cran-matchit | 2.4-18-1 | - +- all | r-cran-misc3d | 0.8-2-1 | - +- all | r-cran-multcomp | 1.2-12-1 | - +- all | r-cran-nws | 2.0.0.3-2 | - +- all | r-cran-permute | 0.7-0-1 | - +- all | r-cran-plotrix | 3.2-6-1 | - +- all | r-cran-psy | 1.0-4 | - +- all | r-cran-pvclust | 1.2-2-1 | - +- all | r-cran-rcolorbrewer | 1.0-5-1 | - +- all | r-cran-relimp | 1.0-3-1 | - +- all | r-cran-reshape2 | 1.2.1-1 | - +- all | r-cran-rocr | 1.0-4-3 | - +- all | r-cran-runit | 0.4.26-1 | - +- all | r-cran-sandwich | 2.2-9-1 | - +- all | r-cran-snow | 1:0.3.9-1 | - +- all | r-cran-stabledist | 0.6-4-1 | - +- all | r-cran-stringr | 0.6.0-1 | - +- all | r-cran-strucchange | 1.4-7-1 | - +- all | r-cran-teachingdemos | 2.7-1 | - +- all | r-cran-vcd | 1:1.2-12-1 | - +- all | r-cran-xtable | 1:1.5-6-1 | - +- all | r-cran-zelig | 3.5.5-1 | - +- all | r-doc-html | 2.15.1-4 | - +- all | r-doc-info | 2.15.1-4 | - +- all | r-doc-pdf | 2.15.1-4 | - +- all | r-other-bio3d | 1.1-4-1 | - +- all | r-recommended | 2.15.1-4 | - +- all | r5rs-doc | 20010328-7 | - +- all | rabbit | 1.0.8-2 | - +- all | rabbit-mode | 1.0.8-2 | - +- all | rabbitmq-server | 2.8.4-1 | - +- all | rabbitvcs-cli | 0.15.0.5-3 | - +- all | rabbitvcs-core | 0.15.0.5-3 | - +- all | rabbitvcs-gedit | 0.15.0.5-3 | - +- all | rabbitvcs-nautilus | 0.15.0.5-3 | - +- all | racc | 1.4.8-4 | - +! all | racket-common | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | racket-doc | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +- all | radare2-vala | 0.9-1 | - +- all | radiance-doc | 4R1+20120125-1 | - +- all | radiance-materials | 4R1+20120125-1 | - +- all | radicale | 0.7-1.1 | - +- all | rafkill-data | 1.2.2-3.3 | - +- all | rail | 1.2.6-2 | - +- all | rails | 2:2.3.14.2 | - +- all | rails-doc | 2:2.3.14.2 | - +- all | rails-ruby1.8 | 2:2.3.14.2 | - +- all | rails3 | 3.2.6-1 | - +- all | rainbow | 0.8.6-1 | - +- all | raincat-data | 1.1-3 | - +- all | rake | 0.9.2.2-4 | - +- all | rake-compiler | 0.8.1-1 | - +- all | rancid-cgi | 2.3.8-3 | - +- all | randomplay | 0.60+nmu1 | - +- all | ranger | 1.5.4-1 | - +- all | rant | 0.5.8-8 | - +- all | rapid-photo-downloader | 0.4.5-3 | - +- all | rapid-spring | 0.6.0-1 | - +- all | rasmol-doc | 2.7.5.2-1 | - +- all | raster3d-doc | 3.0-2-4 | - +- all | rastertosag-gdi | 0.1-3 | - +- all | rawdog | 2.13.dfsg.1-1 | - +- all | rawtherapee-data | 4.0.9-4 | - +- all | rbenv | 0.3.0-1 | - +- all | rbot | 0.9.15+post20100705+gitb3aa806-3 | - +- all | rbot-doc | 0.9.15+post20100705+gitb3aa806-3 | - +- all | rcconf | 2.5 | - +- all | rcs-latex | 3.1.debian.1 | - +- all | rdeliver | 0.12-2 | - +- all | rdkit-data | 201203-3 | - +- all | rdkit-doc | 201203-3 | - +- all | rdtool | 0.6.34-4 | - +- all | rdtool-elisp | 0.6.34-4 | - +- all | readline-common | 6.2+dfsg-0.1 | - +- all | readpst | 0.6.54-4.1 | - +- all | realtimebattle-common | 1.0.8-13 | - +- all | rebuildd | 0.4.1.1 | - +- all | recode-doc | 3.6-20 | - +- all | reconf-inetd | 1.120603 | - +- all | red5-doc | 1.0~svn4374-1 | - +- all | red5-server | 1.0~svn4374-1 | - ++ all | redeclipse-data | - | 1.4-2~bpo70+1 +- all | redet | 8.26-1.1 | - +- all | redet-doc | 8.26-1.1 | - +- all | redhat-cluster-source | 3.0.12-3.2+deb7u2 | - +- all | redhat-cluster-suite | 3.0.12-3.2+deb7u2 | - +! all | redmine | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-mysql | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-pgsql | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-sqlite | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +- all | rednotebook | 1.4.0-1 | - +- all | regina-normal-doc | 4.93-1 | - +- all | reinteract | 0.5.0-3 | - +- all | relational | 1.1-1 | - +- all | relational-cli | 1.1-1 | - +- all | remember-el | 1.9-1.1 | - +- all | remmina-common | 1.0.0-4+deb7u1 | - +- all | remotetea | 1.0.7-2 | - +- all | remuco-amarok | 0.9.6-2 | - +- all | remuco-audacious | 0.9.6-2 | - +- all | remuco-banshee | 0.9.6-2 | - +- all | remuco-base | 0.9.6-2 | - +- all | remuco-clementine | 0.9.6-2 | - +- all | remuco-exaile | 0.9.6-2 | - +- all | remuco-gmusicbrowser | 0.9.6-2 | - +- all | remuco-mpd | 0.9.6-2 | - +- all | remuco-mplayer | 0.9.6-2 | - +- all | remuco-okular | 0.9.6-2 | - +- all | remuco-quodlibet | 0.9.6-2 | - +- all | remuco-totem | 0.9.6-2 | - +- all | remuco-tvtime | 0.9.6-2 | - +- all | remuco-vlc | 0.9.6-2 | - +- all | remuco-xmms2 | 0.9.6-2 | - +- all | renaissance-doc | 0.9.0-4 | - +- all | reniced | 1.19-1 | - +- all | renpy | 6.13.12-1 | - +- all | renpy-demo | 6.13.12-1 | - +- all | renpy-doc | 6.13.12-1 | - +- all | renpy-thequestion | 6.13.12-1 | - +- all | renrot | 1.1-2 | - +- all | rep-doc | 0.90.2-1.3 | - +- all | rep-gtk-gnome | 1:0.90.0-2 | - +- all | reportbug | 6.4.4 | - +- all | reportbug-ng | 1.27 | - +- all | reprof | 1.0.1-1 | - +! all | request-tracker4 | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +- all | resolvconf | 1.67 | - +- all | rest2web | 0.5.2~alpha+svn-r248-2 | - +- all | rest2web-doc | 0.5.2~alpha+svn-r248-2 | - +- all | retext | 3.1.0-1 | - +- all | retext-wpgen | 3.1.0-1 | - +- all | rheolef-doc | 6.1-2.1 | - +- all | rhino | 1.7R3-5 | - +- all | rhino-doc | 1.7R3-5 | - +- all | rhinote | 0.7.4-1 | - +- all | rhythmbox-data | 2.97-2.1 | - +- all | rhythmbox-doc | 2.97-2.1 | - +- all | ri | 1:1.9.3 | - +- all | ri-li-data | 2.0.1-2 | - +- all | ri1.8 | 1.8.7.358-7.1+deb7u1 | - +- all | ri1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- all | ricochet | 0.3 | - +- all | riece | 8.0.0-1 | - +- all | rinse | 2.0.1-1 | - +- all | ripit | 3.9.0-2 | - +- all | rivet | 1.8.0-1 | - +- all | rivet-plugins-data | 1.8.0-1 | - +- all | rivet-plugins-dev | 1.8.0-1 | - +- all | rivet-plugins-doc | 1.8.0-1 | - +- all | rivet-reference | 1.8.0-1 | - +- all | rivet-root-converter | 1.8.0-1 | - +- all | rivet-user-manual | 1.8.0-1 | - +- all | rkhunter | 1.4.0-1 | - +- all | rmagic | 2.21-5 | - +- all | rmligs-german | 20120607-1 | - +- all | rnc-mode | 1.0b3-1 | - +- all | roarplaylistd-codechelper-gst | 0.1.1-2 | - +- all | roarplaylistd-dev | 0.1.1-2 | - +- all | roarplaylistd-tools | 0.1.1-2 | - +- all | robocode | 1.6.2+dfsg-3.1 | - +- all | robocode-doc | 1.6.2+dfsg-3.1 | - +- all | robot-player-dev | 3.0.2+dfsg-4 | - +- all | robot-player-doc | 3.0.2+dfsg-4 | - +- all | roffit | 0.7~20100607+git790d154-3 | - +- all | root-macro-fastjet | 3.0.2+dfsg-2 | - +- all | root-system | 5.34.00-2 | - +- all | root-system-common | 5.34.00-2 | - +- all | root-system-doc | 5.34.00-2 | - +! all | roundcube | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-core | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-mysql | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-pgsql | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-plugins | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-plugins-extra | 0.7-20120110 | 0.9.2-20130819~bpo70+1 ++ all | roundcube-sqlite3 | - | 0.9.5-1~bpo70+1 +- all | roundup | 1.4.20-1.1 | - +- all | routeplanner | 0.19 | - +- all | routeplanner-gnome | 0.19 | - +- all | routino-www | 2.2-4+deb7u1 | - +- all | roxterm | 2.6.5-1 | - +- all | roxterm-common | 2.6.5-1 | - +- all | rpl | 1.5.5-1 | - +- all | rpm-i18n | 4.10.0-5+deb7u1 | - +- all | rrootage-data | 0.23a-9 | - +- all | rsnapshot | 1.3.1-3 | - +- all | rss2email | 1:2.71-1 | - +- all | rst2pdf | 0.16-2 | - +! all | rsyslog-doc | 5.8.11-3 | 7.4.4-1~bpo70+1 +! all | rt4-apache2 | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-clients | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-mysql | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-postgresql | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-sqlite | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 ++ all | rt4-doc-html | - | 4.0.19-1~bpo70+1 +- all | rt4-extension-assettracker | 2.0.0~b2-6 | - +! all | rt4-fcgi | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +- all | rtai-doc | 3.8.1-4 | - +- all | rtirq-init | 20120505-1 | - +- all | rtpg-www | 0.2.11-3 | - +- all | rttool | 1.0.3-2 | - +- all | rubber | 1.1+20100306-2 | - +- all | ruby | 1:1.9.3 | - +- all | ruby-actionmailer | 2:2.3.14.2 | - +- all | ruby-actionmailer-2.3 | 2.3.14-3 | - +- all | ruby-actionmailer-3.2 | 3.2.6-2 | - +- all | ruby-actionpack | 2:2.3.14.2 | - +- all | ruby-actionpack-2.3 | 2.3.14-5 | - +- all | ruby-actionpack-3.2 | 3.2.6-6 | - +- all | ruby-activeldap | 1.2.4-3 | - +- all | ruby-activeldap-doc | 1.2.4-3 | - +- all | ruby-activemodel-3.2 | 3.2.6-3 | - +- all | ruby-activerecord | 2:2.3.14.2 | - +- all | ruby-activerecord-2.3 | 2.3.14-6 | - +- all | ruby-activerecord-3.2 | 3.2.6-5 | - +- all | ruby-activeresource | 2:2.3.14.2 | - +- all | ruby-activeresource-2.3 | 2.3.14-3 | - +- all | ruby-activeresource-3.2 | 3.2.6-2 | - +- all | ruby-activesupport | 2:2.3.14.2 | - +- all | ruby-activesupport-2.3 | 2.3.14-7 | - +- all | ruby-activesupport-3.2 | 3.2.6-6 | - +- all | ruby-addressable | 2.2.8-1 | - +- all | ruby-aggregate | 0.2.2-1 | - +- all | ruby-albino | 1.3.3-1 | - +- all | ruby-algorithm-diff | 0.4-14 | - +- all | ruby-amazon-ec2 | 0.9.17-2 | - +- all | ruby-amq-client | 0.9.3-1 | - +- all | ruby-amq-protocol | 0.9.2-1 | - +- all | ruby-amqp | 0.9.5-2 | - +- all | ruby-amrita | 1.0.2-10 | - +- all | ruby-amrita2 | 2.0.2+dfsg.1-3 | - +- all | ruby-archive-tar-minitar | 0.5.2-2 | - +- all | ruby-arel | 3.0.2-2 | - +- all | ruby-ascii85 | 1.0.1-2 | - ++ all | ruby-backports | - | 3.1.1-1~bpo70+1 +- all | ruby-bacon | 1.1.0-2 | - +- all | ruby-barby | 0.5.0-1 | - +- all | ruby-bio | 1.4.2-3 | - +- all | ruby-blankslate | 2.1.2.4-4 | - +- all | ruby-bsearch | 1.5-9 | - +- all | ruby-build | 20120524-1 | - +- all | ruby-builder | 3.0.0-3 | - +- all | ruby-bunny | 0.7.8-1 | - +- all | ruby-capistrano-colors | 0.5.5-1 | - +- all | ruby-cassiopee | 0.1.9-1 | - +- all | ruby-childprocess | 0.3.3-1 | - +- all | ruby-chronic | 0.6.7-2 | - +- all | ruby-chunky-png | 1.2.5-2 | - +- all | ruby-classifier | 1.3.3-1 | - +- all | ruby-cmdparse | 2.0.5-1 | - +- all | ruby-coderay | 1.0.6-2 | - +- all | ruby-color-tools | 1.4.1-2 | - +- all | ruby-commandline | 0.7.10-12 | - +- all | ruby-commandline-doc | 0.7.10-12 | - +- all | ruby-compass | 0.12.2~dfsg-2 | - +- all | ruby-contest | 0.1.3-2 | - ++ all | ruby-creole | - | 0.5.0-1~bpo70+1 +- all | ruby-daemons | 1.1.5-2 | - +- all | ruby-dataobjects | 0.10.8-4 | - +- all | ruby-dbd-mysql | 0.4.4+gem2deb-1 | - +- all | ruby-dbd-odbc | 0.2.5+gem2deb-1 | - +- all | ruby-dbd-pg | 0.3.9+gem2deb-1 | - +- all | ruby-dbd-sqlite3 | 1.2.5+gem2deb-1 | - +- all | ruby-dbi | 0.4.5-1 | - +- all | ruby-dbus | 0.7.2-1 | - +- all | ruby-deprecated | 3.0.0-1 | - +- all | ruby-dev | 1:1.9.3 | - +- all | ruby-diff-lcs | 1.1.3-1 | - +- all | ruby-directory-watcher | 1.4.1-1 | - +- all | ruby-dnsruby | 1.53-1 | - +- all | ruby-domain-name | 0.5.3-1 | - +- all | ruby-dust | 0.1.7-2 | - +- all | ruby-ecasound | 2.9.0-1 | - +- all | ruby-echoe | 4.6.3-1 | - +- all | ruby-eim-xml | 0.0.4-3 | - +- all | ruby-erubis | 2.7.0-2 | - +- all | ruby-event-loop | 0.3-5 | - +- all | ruby-excon | 0.13.4-1 | - +- all | ruby-extlib | 0.9.15-3 | - +- all | ruby-facets | 2.9.2-1 | - +- all | ruby-facets-doc | 2.9.2-1 | - +- all | ruby-fakefs | 0.4.0-1 | - +- all | ruby-fast-gettext | 0.6.8-1 | - +- all | ruby-fastercsv | 1.5.5-1 | - +- all | ruby-feedparser | 0.7-2 | - +- all | ruby-feedtools | 0.2.29+dfsg1-5 | - +- all | ruby-feedtools-doc | 0.2.29+dfsg1-5 | - +- all | ruby-file-tail | 1.0.10-1 | - +- all | ruby-flexmock | 0.9.0-1 | - +- all | ruby-fog | 1.3.1-2 | - +- all | ruby-formatador | 0.2.1-1 | - +- all | ruby-full | 1:1.9.3 | - +- all | ruby-gelf | 1.3.2-2 | - +! all | ruby-gettext | 2.2.1-3 | 3.0.2-2~bpo70+1 +- all | ruby-gettext-activerecord | 2.1.0-5 | - +- all | ruby-gettext-rails | 2.1.0-3 | - +- all | ruby-gir-ffi | 0.3.1-2 | - +- all | ruby-git | 1.2.5-2 | - +- all | ruby-gnome2 | 1.1.3-2 | - +- all | ruby-gnuplot | 2.4.1-2 | - +- all | ruby-graffiti | 2.2-1 | - +- all | ruby-gruff | 0.3.6-6 | - +! all | ruby-haml | 3.1.6-1 | 4.0.3-3~bpo70+1 ++ all | ruby-haml-magic-translations | - | 4.0.0-1~bpo70+1 +- all | ruby-heckle | 1.4.3-4 | - +- all | ruby-hiera | 1.0.0~rc3-1 | - +- all | ruby-hiera-puppet | 1.0.0~rc1-2 | - +- all | ruby-highline | 1.6.13-2 | - +- all | ruby-hike | 1.2.1-2 | - +- all | ruby-hikidoc | 0.0.6-1 | - +- all | ruby-hmac | 0.4.0-3 | - +- all | ruby-hoe | 3.0.3-2 | - +- all | ruby-htmlentities | 4.3.1-1 | - +- all | ruby-httpclient | 2.2.4-2 | - +! all | ruby-i18n | 0.6.0-3+deb7u1 | 0.6.9-1~bpo70+1 +- all | ruby-ihelp | 0.4.5-3 | - +- all | ruby-image-science | 1.2.2-1.1 | - +- all | ruby-imagesize | 1:0.1.1-5 | - +- all | ruby-indentation | 0.0.6-1 | - +- all | ruby-inline | 3.11.2-2 | - +- all | ruby-innate | 2012.03-2 | - +- all | ruby-instantiator | 0.0.6+git9cbbe70-2 | - +- all | ruby-introspection | 0.0.2-2 | - +- all | ruby-ipaddress | 0.8.0-1 | - +- all | ruby-journey | 1.0.3-2 | - +- all | ruby-jquery-rails | 2.0.2-1 | - +- all | ruby-kramdown | 0.13.7-2 | - +- all | ruby-liquid | 2.3.0-2 | - +- all | ruby-locale | 2.0.5-6 | - +- all | ruby-locale-rails | 2.0.5-6 | - +- all | ruby-lockfile | 2.1.0-2 | - +- all | ruby-log4r | 1.1.10-2 | - +- all | ruby-mab | 0.0.1+git20120515.30414e4-2 | - +- all | ruby-magic | 0.2.6-1 | - +- all | ruby-mail | 2.4.4-2 | - +- all | ruby-maruku | 0.6.0-2 | - +- all | ruby-mathml | 0.12.2-2 | - +- all | ruby-mechanize | 2.3-2 | - +- all | ruby-memcache-client | 1.8.5-2 | - ++ all | ruby-memoize | - | 1.3.1-2~bpo70+1 +- all | ruby-merb-assets | 1.1.3-1 | - +- all | ruby-merb-core | 1.1.3+dfsg-2 | - +- all | ruby-merb-haml | 1.1.3-2 | - +- all | ruby-merb-helpers | 1.1.3-1 | - +- all | ruby-merb-param-protection | 1.1.3-1 | - +- all | ruby-metaclass | 0.0.1-2 | - +- all | ruby-metaid | 1.0-7 | - +- all | ruby-method-source | 0.7.1-1 | - +- all | ruby-mime-types | 1.19-1 | - +- all | ruby-minitest | 3.2.0-1 | - +- all | ruby-mixlib-authentication | 1.1.4-2 | - +- all | ruby-mixlib-cli | 1.2.2-2 | - +- all | ruby-mixlib-config | 1.1.2-3 | - +- all | ruby-mixlib-log | 1.4.1-1 | - +- all | ruby-mixlib-shellout | 1.0.0-2 | - +- all | ruby-mkrf | 0.2.3+dfsg-2 | - +- all | ruby-mocha | 0.11.3-3 | - +- all | ruby-mocha-doc | 0.11.3-3 | - +- all | ruby-moneta | 0.6.0-4 | - +- all | ruby-mp3tag | 1.0-11 | - +! all | ruby-multi-json | 1.3.6-1 | 1.8.0-1~bpo70+1 ++ all | ruby-multipart-parser | - | 0.1.1-1~bpo70+1 +- all | ruby-mustache | 0.99.4-3 | - +- all | ruby-narray-miss | 1.2.7-2 | - +- all | ruby-net-http-digest-auth | 1.2-2 | - +- all | ruby-net-http-persistent | 2.7-2 | - +- all | ruby-net-irc | 0.0.9-2 | - +- all | ruby-net-ldap | 0.3.1-2 | - +- all | ruby-net-netrc | 0.2.2-2 | - +- all | ruby-net-scp | 1.0.4-2 | - +- all | ruby-net-sftp | 1:2.0.5-3 | - +- all | ruby-net-ssh | 1:2.5.2-2 | - +- all | ruby-net-ssh-gateway | 1.1.0-2 | - +- all | ruby-net-ssh-multi | 1.1-2 | - +- all | ruby-ntlm | 0.1.1-1 | - +- all | ruby-oauth | 0.4.6-2 | - +- all | ruby-ogginfo | 0.6.10-1 | - +- all | ruby-ole | 1.2.11.3-1 | - +- all | ruby-open4 | 1.3.0-1 | - +- all | ruby-openid | 2.1.8debian-6 | - +- all | ruby-opennebula | 3.4.1-3.1 | - ++ all | ruby-org | - | 0.8.0-1~bpo70+1 +- all | ruby-packet | 0.1.15-5 | - ++ all | ruby-packetfu | - | 1.1.8-1~bpo70+1 +- all | ruby-parser | 2.3.1-2 | - +- all | ruby-parsetree | 3.0.8-3 | - +! all | ruby-passenger-doc | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +- all | ruby-pdf-inspector | 1.0.1-2 | - +- all | ruby-pdf-reader | 1.1.1-2 | - +- all | ruby-peach | 0.4-2 | - +- all | ruby-pkg-config | 1.1.2-1 | - +- all | ruby-pkg-tools | 0.18 | - +- all | ruby-platform | 0.4.0-2 | - +- all | ruby-polyglot | 0.3.3-3 | - +- all | ruby-popen4 | 0.1.4-1 | - +- all | ruby-prawn | 1.0.0~rc1+dfsg1-3 | - +- all | ruby-prawn-doc | 1.0.0~rc1+dfsg1-3 | - +- all | ruby-progressbar | 0.11.0-2 | - +- all | ruby-rack | 1.4.1-2.1 | - +- all | ruby-rack-cache | 1.2-2 | - ++ all | ruby-rack-openid | - | 1.3.1-2~bpo70+1 +! all | ruby-rack-protection | 1.2.0-1 | 1.5.0-2~bpo70+1 +- all | ruby-rack-ssl | 1.3.2-2 | - +- all | ruby-rack-test | 0.6.1-3 | - +- all | ruby-rails-2.3 | 2.3.14-4 | - +- all | ruby-rails-3.2 | 3.2.6-1 | - ++ all | ruby-rails-observers | - | 0.1.1-1~bpo70+1 +- all | ruby-railties-3.2 | 3.2.6-3 | - +- all | ruby-rb-inotify | 0.8.8-2 | - +- all | ruby-rc4 | 0.1.5-2 | - +- all | ruby-rchardet | 1.3-3 | - +- all | ruby-rd | 0.6.34-4 | - +- all | ruby-rest-client | 1.6.7-3 | - +- all | ruby-rmagick-doc | 2.13.1-6 | - +- all | ruby-romkan | 0.4-9 | - +- all | ruby-ronn | 0.7.3-2 | - +- all | ruby-rqrcode | 0.4.2-1 | - +- all | ruby-rr | 1.0.4-1 | - +! all | ruby-rspec | 2.10.0-2 | 2.14.1-1~bpo70+1 +! all | ruby-rspec-core | 2.10.1-2 | 2.14.5-1~bpo70+1 +! all | ruby-rspec-expectations | 2.10.0-2 | 2.14.2-1~bpo70+1 +! all | ruby-rspec-mocks | 2.10.1-2 | 2.14.3-1~bpo70+1 +- all | ruby-ruby2ruby | 1.3.1-1.1 | - +- all | ruby-rubyforge | 2.0.4-1 | - +- all | ruby-rubymail | 1.0.0-1 | - +- all | ruby-rubymail-doc | 1.0.0-1 | - ++ all | ruby-rubypants | - | 0.2.0-1~bpo70+1 ++ all | ruby-rubypants-doc | - | 0.2.0-1~bpo70+1 +- all | ruby-rubytorrent | 0.3-4 | - +- all | ruby-sass | 3.1.19-3 | - +- all | ruby-sass-rails | 3.2.5-1 | - +- all | ruby-sequel | 3.36.1-1 | - +- all | ruby-session | 3.1.0-1 | - +- all | ruby-setup | 3.4.1-5 | - +- all | ruby-sexp-processor | 3.0.7-1 | - +- all | ruby-shoulda | 3.0.0~beta2-1 | - +- all | ruby-shoulda-context | 1.0.0~beta1-1 | - +- all | ruby-shoulda-matchers | 1.0.0~beta2-1 | - +! all | ruby-sinatra | 1.3.2-2 | 1.4.3-1~bpo70+1 ++ all | ruby-sinatra-contrib | - | 1.4.1-1~bpo70+1 ++ all | ruby-slim | - | 2.0.1-1~bpo70+1 +- all | ruby-slop | 2.4.4-1 | - +- all | ruby-sourcify | 0.5.0-2 | - +- all | ruby-spreadsheet | 0.7.3-1 | - +- all | ruby-sprockets | 2.4.3-1 | - +- all | ruby-stomp | 1.2.2-2 | - +- all | ruby-svg-graph | 1.0.5-1 | - +- all | ruby-switch | 0.1.0 | - +- all | ruby-systemu | 2.5.1-1 | - ++ all | ruby-temple | - | 0.6.6-1~bpo70+1 +- all | ruby-term-ansicolor | 1.0.7-1 | - +- all | ruby-test-declarative | 0.0.5-1 | - +- all | ruby-test-spec | 0.10.0-2 | - +! all | ruby-test-unit | 2.5.0-2 | 2.5.5-1~bpo70+1 +- all | ruby-text | 1.0.3-1 | - +- all | ruby-text-format | 1.0.0-3 | - +- all | ruby-thor | 0.15.3-1 | - +- all | ruby-tidy | 1.1.2+gem2deb-1 | - +! all | ruby-tilt | 1.3.3-2 | 1.4.1-1~bpo70+1 +- all | ruby-tioga-doc | 1.14-3 | - +- all | ruby-transaction-simple | 1.4.0-2 | - +- all | ruby-treetop | 1.4.10-5 | - +- all | ruby-trollop | 1.16.2-3 | - +- all | ruby-ttfunk | 1.0.3+dfsg-1 | - +- all | ruby-twitter4r | 0.7.0-3 | - ++ all | ruby-typed-array | - | 0.1.2-1~bpo70+1 +- all | ruby-tzinfo | 0.3.33-3 | - +- all | ruby-unf | 0.0.5-1 | - ++ all | ruby-upr | - | 0.2.0-1~bpo70+1 +- all | ruby-uuidtools | 2.1.2-2 | - +- all | ruby-uuidtools-doc | 2.1.2-2 | - +- all | ruby-validatable | 1.6.7-9 | - +- all | ruby-webrobots | 0.0.13-3 | - +- all | ruby-whitewash | 2.0-1 | - +- all | ruby-will-paginate | 3.0.3-1 | - +- all | ruby-wirble | 0.1.3-4 | - +- all | ruby-xml-simple | 1.1.1-1 | - +- all | ruby-yard-sinatra | 1.0.0-1 | - +- all | ruby1.8-examples | 1.8.7.358-7.1+deb7u1 | - +- all | ruby1.8-full | 1.8.7.358-7.1+deb7u1 | - +- all | ruby1.9.1-examples | 1.9.3.194-8.1+deb7u2 | - +- all | ruby1.9.1-full | 1.9.3.194-8.1+deb7u2 | - +- all | ruby1.9.3 | 1.9.3.194-8.1+deb7u2 | - +- all | rubyfilter-doc | 0.12-2 | - +- all | rubygems | 1.8.24-1 | - +- all | rubygems-doc | 1.8.24-1 | - +- all | rubygems-integration | 1.1 | - +- all | rubygems1.8 | 1.8.24-1 | - +- all | runsnakerun | 2.0.2a1-2 | - +- all | rygel-gst-renderer | 0.14.3-2+deb7u1 | - +- all | s3cmd | 1.1.0~beta3-1 | - +- all | s3d-data | 0.2.2-8 | - +- all | s3d-doc | 0.2.2-8 | - +- all | s5 | 1.1.dfsg.2-5 | - +- all | sa-learn-cyrus | 0.3.5-1.1 | - +- all | sablecc | 3.2-1 | - +- all | safe-rm | 0.8-6 | - +- all | sagan-rules | 10212010-r1-1 | - +- all | sailcut-doc | 1.3.5-2 | - +- all | salliere | 0.10-1 | - ++ all | salt-common | - | 0.16.4-2~bpo70+1 ++ all | salt-doc | - | 0.16.4-2~bpo70+1 ++ all | salt-master | - | 0.16.4-2~bpo70+1 ++ all | salt-minion | - | 0.16.4-2~bpo70+1 ++ all | salt-syndic | - | 0.16.4-2~bpo70+1 +! all | samba-common | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! all | samba-doc | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- all | samba-doc-pdf | 2:3.6.6-6+deb7u2 | - +- all | samidare | 0.7-1 | - +- all | samizdat | 0.7.0-1 | - +- all | sanitizer | 1.76-3 | - +- all | saods9-data | 7.0.1+dfsg-1 | - +- all | saods9-doc | 7.0.1+dfsg-1 | - +- all | sary-doc | 1:1.2.0-2.1 | - +- all | sass-elisp | 3.0.15-2 | - +- all | sat4j | 2.3.1-1 | - +- all | sauce | 0.9.0+nmu2 | - +- all | sawfish-data | 1:1.5.3-2.1 | - +- all | sawfish-lisp-source | 1:1.5.3-2.1 | - +- all | sawfish-merlin-ugliness | 1.3.1-1 | - +- all | sawfish-themes | 0.13 | - +- all | sbcl-doc | 2:1.0.57.0-2 | - +- all | sbcl-source | 2:1.0.57.0-2 | - +- all | sbnc-php-dev | 1.2-26 | - +- all | sbuild | 0.63.2-1.1 | - +- all | scala | 2.9.2+dfsg-1 | - +- all | scala-doc | 2.9.2+dfsg-1 | - +- all | scala-library | 2.9.2+dfsg-1 | - +- all | scala-mode-el | 20111005-2 | - +- all | scalable-cyrfonts-tex | 4.16 | - +- all | scalapack-doc | 1.5-10 | - +- all | scalapack-test-common | 1.8.0-9 | - +- all | scheme2c-doc | 2011.07.26-5 | - +- all | scheme48-doc | 1.8+dfsg-1 | - +- all | schleuder | 2.2.1-2+deb7u1 | - +- all | schroot-common | 1.6.4-4 | - +- all | scid-data | 1:4.3.0.cvs20120311-1 | - +- all | scid-rating-data | 200901-2 | - +- all | scid-spell-data | 200901-2 | - +- all | science-astronomy | 1.0 | - +- all | science-astronomy-dev | 1.0 | - +- all | science-biology | 1.0 | - +- all | science-chemistry | 1.0 | - +- all | science-config | 1.0 | - +- all | science-dataacquisition | 1.0 | - +- all | science-dataacquisition-dev | 1.0 | - +- all | science-distributedcomputing | 1.0 | - +- all | science-electronics | 1.0 | - +- all | science-electrophysiology | 1.0 | - +- all | science-engineering | 1.0 | - +- all | science-engineering-dev | 1.0 | - +- all | science-geography | 1.0 | - +- all | science-highenergy-physics | 1.0 | - +- all | science-highenergy-physics-dev | 1.0 | - +- all | science-imageanalysis | 1.0 | - +- all | science-linguistics | 1.0 | - +- all | science-machine-learning | 1.0 | - +- all | science-mathematics | 1.0 | - +- all | science-mathematics-dev | 1.0 | - +- all | science-meteorology | 1.0 | - +- all | science-meteorology-dev | 1.0 | - +- all | science-nanoscale-physics | 1.0 | - +- all | science-nanoscale-physics-dev | 1.0 | - +- all | science-neuroscience-cognitive | 1.0 | - +- all | science-neuroscience-modeling | 1.0 | - +- all | science-numericalcomputation | 1.0 | - +- all | science-physics | 1.0 | - +- all | science-physics-dev | 1.0 | - +- all | science-psychophysics | 1.0 | - +- all | science-robotics | 1.0 | - +- all | science-simulations | 1.0 | - +- all | science-statistics | 1.0 | - +- all | science-tasks | 1.0 | - +- all | science-typesetting | 1.0 | - +- all | science-viewing | 1.0 | - +- all | scilab | 5.3.3-10 | - +- all | scilab-ann | 0.4.2.4-1 | - +- all | scilab-celestlab | 2.3.0-1-1 | - +- all | scilab-cli | 5.3.3-10 | - +- all | scilab-data | 5.3.3-10 | - +- all | scilab-doc | 5.3.3-10 | - +- all | scilab-doc-fr | 5.3.3-10 | - +- all | scilab-doc-ja | 5.3.3-10 | - +- all | scilab-doc-pt-br | 5.3.3-10 | - +- all | scilab-plotlib | 0.42-1 | - +- all | scilab-test | 5.3.3-10 | - +- all | scim-dev | 1.4.13-5 | - +- all | scim-dev-doc | 1.4.13-5 | - +- all | scim-tables-additional | 0.5.9-2 | - +- all | scim-tables-ja | 0.5.9-2 | - +- all | scim-tables-ko | 0.5.9-2 | - +- all | scim-tables-zh | 0.5.9-2 | - +- all | scmail | 1.3-4 | - +- all | scolasync | 3.1-1 | - +- all | scons | 2.1.0-1 | - +- all | scons-doc | 2.1.0-2 | - +- all | scorched3d-data | 43.2a.dfsg-6.1 | - +- all | scowl | 7.1-1 | - +- all | scratch | 1.4.0.6~dfsg1-4 | - +- all | screenie | 20120406-1 | - +- all | screenlets | 0.1.2-8 | - +- all | screenlets-doc | 0.1.2-8 | - +- all | screenruler | 0.960+bzr41-1 | - +- all | scribble | 1.11-1 | - +- all | scribes | 0.4~r543-2 | - +- all | scribus-ng | 1.4.0.dfsg+r17300-1 | - +- all | scribus-template | 1.2.4.1-2 | - +- all | scrollkeeper | 0.8.1-5 | - +- all | scrotwm | 1.0.0-1 | - +- all | scsh | 0.6.6.3 | - +- all | scsh-0.6-doc | 0.6.7-8 | - +- all | scsh-common-0.6 | 0.6.7-8 | - +- all | scsh-doc | 0.6.6.3 | - +- all | scsh-install-lib | 1.3.0-1 | - +- all | scummvm-data | 1.4.1-1 | - +- all | scuttle | 0.7.4-8.1 | - +- all | sdcc-doc | 3.1.0+dfsg-1 | - +- all | sdcc-libraries | 3.1.0+dfsg-1 | - +- all | sdf | 2.001+1-2 | - +- all | sdf-doc | 2.001+1-2 | - +- all | sdl-ball-data | 1.01-3 | - +! all | seabios | 1.7.0-1 | 1.7.3-3~bpo70+1 +- all | search-ccsb | 0.5-3 | - +- all | search-citeseer | 0.3-1 | - +- all | searchandrescue-common | 1.4.0-2 | - +- all | searchandrescue-data | 1.3.0-1 | - +- all | sec | 2.6.2-1 | - +- all | secpanel | 1:0.6.1-1 | - +- all | secvpn | 2.24 | - +- all | seed-doc | 3.2.0-2 | - +- all | seivot | 1.17-1 | - +- all | select-xface | 0.15-6 | - +- all | selinux-basics | 0.5.0 | - +- all | selinux-policy-default | 2:2.20110726-12 | - +- all | selinux-policy-dev | 2:2.20110726-12 | - +- all | selinux-policy-doc | 2:2.20110726-12 | - +- all | selinux-policy-mls | 2:2.20110726-12 | - +- all | selinux-policy-src | 2:2.20110726-12 | - +- all | semi | 1.14.6+0.20101114-1 | - +- all | sendemail | 1.56-2 | - +- all | sendmail | 8.14.4-4 | - +- all | sendmail-base | 8.14.4-4 | - +- all | sendmail-cf | 8.14.4-4 | - +- all | sendmail-doc | 8.14.4-4 | - +- all | sendpage-client | 1.0.3-1 | - +- all | sendpage-common | 1.0.3-1 | - +- all | sendpage-server | 1.0.3-1 | - +- all | sendxmpp | 1.22-1 | - +- all | sensible-utils | 0.0.7 | - +- all | sepia | 0.992-2 | - +- all | seqan-dev | 1.3.1-1 | - +- all | servefile | 0.4.2-1 | - +- all | serverstats | 0.8.2-10 | - +- all | sfact | 2011.12.18-1 | - +- all | sfc | 1.0.0.dfsg-1 | - +- all | sflphone-data | 1.1.0-2 | - ++ all | sgabios | - | 0.0~svn8-3~bpo70+1 +- all | sgml-base | 1.26+nmu4 | - +- all | sgml-base-doc | 1.99.1 | - +- all | sgml-data | 2.0.8 | - +- all | sgml-spell-checker | 0.0.20040919-3 | - +- all | sgml2x | 1.0.0-11.3 | - +- all | sgmls-doc | 1.03ii-32 | - +- all | sgmlspl | 1.03ii-32 | - +- all | sgmltools-lite | 3.0.3.0.cvs.20010909-16 | - +- all | shake | 1.0.1-7 | - +- all | shanty | 3-4 | - +- all | shared-desktop-ontologies | 0.10.0-1 | - +- all | sharutils-doc | 1:4.11.1-1 | - +- all | shatag | 0.4-2 | - +- all | shedskin | 0.9.2-1 | - +- all | shelldap | 0.5-2 | - +- all | shelr | 0.16.2-1 | - +- all | shibboleth-sp2-schemas | 2.4.3+dfsg-5 | - +- all | shiboken-doc | 1.1.1-1 | - +- all | shiki-brave-theme | 4.6-1 | - +- all | shiki-colors | 4.6-1 | - +- all | shiki-colors-metacity-theme | 4.6-1 | - +- all | shiki-colors-xfwm-theme | 4.6-1 | - +- all | shiki-dust-theme | 4.6-1 | - +- all | shiki-human-theme | 4.6-1 | - +- all | shiki-illustrious-theme | 4.6-1 | - +- all | shiki-noble-theme | 4.6-1 | - +- all | shiki-wine-theme | 4.6-1 | - +- all | shiki-wise-theme | 4.6-1 | - +- all | shinken | 0.6.5-2 | - +- all | shinken-arbiter | 0.6.5-2 | - +- all | shinken-broker | 0.6.5-2 | - +- all | shinken-core | 0.6.5-2 | - +- all | shinken-discovery | 0.6.5-2 | - +- all | shinken-poller | 0.6.5-2 | - +- all | shinken-reactionner | 0.6.5-2 | - +- all | shinken-receiver | 0.6.5-2 | - +- all | shinken-scheduler | 0.6.5-2 | - +- all | shishi-common | 1.0.1-2 | - +- all | shishi-doc | 1.0.1-2 | - +- all | shorewall | 4.5.5.3-3 | - +- all | shorewall-core | 4.5.5.3-3 | - +- all | shorewall-doc | 4.5.5-1 | - +- all | shorewall-init | 4.5.5.3-1 | - +- all | shorewall-lite | 4.5.5.3-1 | - +- all | shorewall6 | 4.5.5.3-2 | - +- all | shorewall6-lite | 4.5.5.3-1 | - +- all | shotwell-common | 0.12.3-2+deb7u1 | - +- all | shr-specs | 2011.03.08.2-1 | - +- all | shrinksafe | 1.7.2-1 | - +- all | shtool | 2.0.8-6 | - +- all | shunit2 | 2.1.6-1 | - +- all | shutdown-at-night | 0.10+deb7u1 | - +- all | shutter | 0.88.3-1 | - +- all | sieve-connect | 0.83-1 | - +- all | signify | 1.14-1 | - +- all | sigrok | 0.2-1 | - +- all | sikuli-ide | 1.0~x~rc3.tesseract3-dfsg1-5 | - +- all | simba | 0.8.4-4.2 | - +- all | simple-cdd | 0.3.14 | - +- all | simple-image-reducer | 1.0.2-1 | - +- all | simpleid | 0.8.1-13 | - +- all | simpleid-ldap | 1.0.0-1 | - +- all | simpleid-store-dynalogin | 0.9.14-2 | - +- all | simplesamlphp | 1.9.2-1 | - +- all | simplyhtml | 0.13.1-3 | - +- all | simplyhtml-doc | 0.13.1-3 | - +- all | simutrans-data | 111.2.2-1 | - +- all | simutrans-pak128.britain | 1.09-1 | - +- all | simutrans-pak64 | 111.2-1 | - +- all | singularity | 0.30c-1 | - +- all | singularity-music | 006-2 | - +- all | sinntp | 1.5-1 | - +- all | sisc | 1.16.6-1.1 | - +- all | siscone-doc-html | 2.0.5-1 | - +- all | siscone-doc-pdf | 2.0.5-1 | - +- all | siscone-examples | 2.0.5-1 | - +- all | sisu | 3.3.2-1 | - +- all | sisu-complete | 3.3.2-1 | - +- all | sisu-pdf | 3.3.2-1 | - +- all | sisu-postgresql | 3.3.2-1 | - +- all | sisu-sqlite | 3.3.2-1 | - +- all | sitesummary | 0.1.8+deb7u1 | - +- all | sitesummary-client | 0.1.8+deb7u1 | - +- all | sitplus-data | 1.0.3-3 | - +- all | skalibs-doc | 0.47-1 | - +- all | skeinforge | 2011.12.18-1 | - +- all | sketch-doc | 1:0.3.7-1 | - +- all | skkdic | 20110529-1 | - +- all | skkdic-cdb | 20110529-1 | - +- all | skkdic-extra | 20110529-1 | - +- all | skrooge-common | 1.3.0-1 | - +- all | sks-ecc-doc | 0.93-2 | - +- all | slack | 0.15.2-5 | - +- all | slang-tess | 0.3.0-6 | - +- all | slashtime | 0.5.13-1 | - +- all | slay | 2.7.0 | - +- all | slbackup | 0.0.12-3 | - +- all | slbackup-php | 0.4.3-2+deb7u1 | - +- all | slepc3.2-doc | 3.2-p5-1 | - +- all | slib | 3b1-3.1 | - +- all | slice | 1.3.8-11 | - +- all | slides-doc | 1.0.1-13 | - +- all | slime | 1:20120525-1 | - +- all | slimevolley-data | 2.4.2+dfsg-1 | - +- all | slimit | 0.7.4-1 | - +- all | slimrat | 1.0-1 | - +- all | slimrat-nox | 1.0-1 | - +- all | slingshot | 0.9-1 | - +- all | sludge-doc | 2.2-1 | - +- all | slugimage | 1:0.0+r104-5 | - +- all | slurm-llnl-doc | 2.3.4-2 | - +- all | slurm-llnl-torque | 2.3.4-2 | - +- all | slv2-doc | 0.6.6+dfsg1-2 | - +- all | smart-notifier | 0.28-5 | - +- all | smartpm | 1.4-2 | - +- all | smarty-gettext | 1.0b1-7 | - +- all | smarty-validate | 3.0.3-2 | - +- all | smarty3 | 3.1.10-2 | - +- all | smb2www | 980804-40 | - +- all | smbldap-tools | 0.9.7-1+deb7u1 | - +- all | smc-data | 1.9+git20120222-1 | - +- all | smc-music | 1.9+git20120222-1 | - +- all | smem | 1.0-1 | - +- all | smistrip | 0.4.8+dfsg2-7 | - +- all | sml-mode | 4.1-2 | - +- all | smokeping | 2.6.8-2 | - +- all | smplayer-themes | 0.1.20+dfsg-1 | - +- all | smplayer-translations | 0.8.0-1+deb7u1 | - +- all | smtm | 1.6.10 | - +- all | smuxi | 0.8.10-3 | - +- all | smuxi-engine | 0.8.10-3 | - +- all | smuxi-engine-irc | 0.8.10-3 | - +- all | smuxi-engine-twitter | 0.8.10-3 | - +- all | smuxi-engine-xmpp | 0.8.10-3 | - +- all | smuxi-frontend | 0.8.10-3 | - +- all | smuxi-frontend-gnome | 0.8.10-3 | - +- all | smuxi-frontend-gnome-irc | 0.8.10-3 | - +- all | smuxi-frontend-stfl | 0.8.10-3 | - +- all | smuxi-server | 0.8.10-3 | - +- all | snacc-doc | 1.3.1-1 | - +- all | snakefood | 1.4-1 | - +- all | snd | 11.7-2 | - +- all | snd-doc | 11.7-2 | - +- all | snd-gtk | 11.7-2 | - +- all | snd-nox-alsa | 11.7-2 | - +- all | snmptt | 1.3-2 | - +- all | snort-common | 2.9.2.2-3 | - +- all | snort-doc | 2.9.2.2-3 | - +- all | snort-rules-default | 2.9.2.2-3 | - +- all | snowballz | 0.9.5.1-4 | - +- all | socklog-run | 2.1.0-8 | - +- all | sofa-data | 1.0~beta4-7 | - +- all | sofa-tutorials | 1.0~beta4-7 | - +- all | sofia-sip-doc | 1.12.11+20110422-1 | - +- all | software-center | 5.1.2debian3.1 | - +- all | software-properties-common | 0.82.7.1debian1 | - +- all | software-properties-gtk | 0.82.7.1debian1 | - +- all | software-properties-kde | 0.82.7.1debian1 | - +! all | sogo-common | 1.3.16-1 | 2.0.5a-1~bpo70+1 +- all | solarwolf | 1.5-2 | - +- all | solfege | 3.20.6-1 | - +- all | solfege-doc | 3.20.6-1 | - +- all | solr-common | 3.6.0+dfsg-1 | - +- all | solr-jetty | 3.6.0+dfsg-1 | - +- all | solr-tomcat | 3.6.0+dfsg-1 | - +- all | sonata | 1.6.2.1-5 | - +- all | songwrite | 0.14-9 | - +- all | sortsmill-tools | 0.4-1 | - +- all | sound-icons | 0.1-3 | - +- all | sound-theme-freedesktop | 0.7.pristine-2 | - +- all | soundconverter | 2.0.1-1 | - +- all | sozi | 12.05-1 | - ++ all | spacefm-common | - | 0.9.3-1~bpo70+1 +- all | spamassassin | 3.3.2-5 | - +- all | spamassassin-heatu | 3.02+20101108-2 | - +- all | spambayes | 1.1a6-1 | - +- all | spampd | 2.30-22 | - +- all | sparkleshare | 0.9.0-2 | - +- all | sparsehash | 1.10-1 | - +- all | spe | 0.8.4.h-2 | - +- all | speakup-doc | 3.1.6.dfsg.1-2 | - +- all | speakup-tools | 1:0.0~git20110720.1-1 | - +- all | spectacle | 0.22-1 | - +- all | specto | 0.2.2-3.2 | - +- all | speech-dispatcher-doc-cs | 0.7.1-6.2 | - +- all | speech-dispatcher-festival | 0.7.1-6.2 | - +- all | speech-tools-doc | 1.4.2-8 | - +- all | speechd-el | 2.5-4 | - +- all | speechd-el-doc-cs | 2.5-4 | - +- all | speedometer | 2.8-1 | - +- all | speex-doc | 1.2~rc1-7 | - +- all | spf-milter-python | 0.8.13-6 | - +- all | spf-tools-perl | 2.8.0-1 | - +- all | spf-tools-python | 2.0.7-3 | - +- all | sphinx-common | 1.1.3+dfsg-4 | - +- all | sphinx-doc | 1.1.3+dfsg-4 | - +- all | spikeproxy | 1.4.8-4.1 | - +- all | spip | 2.1.17-1+deb7u3 | - +- all | splint-data | 3.1.2.dfsg1-2 | - +- all | splint-doc-html | 3.1.2.dfsg1-2 | - +- all | splix | 2.0.0+svn306-2 | - +- all | spooles-doc | 2.2-9 | - +- all | spotweb | 20111002+dfsg-4.1 | - +- all | spring-build-scripts | 2.7.0-2 | - +- all | spring-common | 88.0+dfsg1-1.1 | - +- all | spring-javaai | 88.0+dfsg1-1.1 | - +- all | sputnik | 12.06.27-2 | - +- all | spyder | 2.1.10-2 | - +- all | sql-ledger | 3.0.3-1 | - +- all | sqlgrey | 1:1.8.0-1 | - +- all | sqlite-doc | 2.8.17-7 | - +- all | sqlite3-doc | 3.7.13-1+deb7u1 | - +- all | sqlline | 1.0.2-4 | - +- all | squareness | 2.3.0-5 | - +- all | squid-common | 2.7.STABLE9-4.1 | - ++ all | squid-deb-proxy | - | 0.7.2~bpo70+1 ++ all | squid-deb-proxy-client | - | 0.7.2~bpo70+1 +- all | squid-langpack | 20120616-1 | - +- all | squid-prefetch | 1.1-2.3 | - +- all | squid3-common | 3.1.20-2.2 | - +- all | squidguard-doc | 1.5-1 | - +- all | squidtaild | 2.1a6-6 | - +- all | squirrelmail | 2:1.4.23~svn20120406-2 | - +- all | squirrelmail-compatibility | 2.0.16-1 | - +- all | squirrelmail-decode | 1.2-1 | - +- all | squirrelmail-locales | 1.4.18-20090526-1 | - +- all | squirrelmail-lockout | 1.7-2 | - +- all | squirrelmail-logger | 2.3.1-1 | - +- all | squirrelmail-quicksave | 2.4.5-1 | - +- all | squirrelmail-secure-login | 1.4-3 | - +- all | squirrelmail-sent-confirmation | 1.6-2 | - +- all | squirrelmail-spam-buttons | 2.3.1-1 | - +- all | squirrelmail-viewashtml | 3.8-3 | - +- all | sqwebmail-de | 5.5.1-1 | - +- all | srf-doc | 0.1+dfsg-1 | - +- all | srs | 0.31-5 | - +- all | srtp-docs | 1.4.4+20100615~dfsg-2+deb7u1 | - +- all | ssake | 3.8-2 | - +- all | ssake-examples | 3.8-2 | - +- all | ssft | 0.9.13 | - +! all | ssh | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +- all | ssh-contact | 0.7-1 | - +! all | ssh-krb5 | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +- all | sshfp | 1.2.2-4 | - +- all | sshmenu | 3.18-2 | - +- all | sshuttle | 0.54-2 | - +- all | ssl-cert | 1.0.32 | - +- all | ssl-cert-check | 3.22-1 | - +- all | sslstrip | 0.9-1 | - +- all | stackapplet | 1.4.0-2 | - +- all | stardict | 3.0.1-9.2 | - +- all | stardict-common | 3.0.1-9.2 | - +- all | stardict-czech | 20110701-1 | - +- all | stardict-xmlittre | 1:1.0-1 | - +- all | starfighter-data | 1.2-2 | - +- all | starman | 0.3001-1 | - +- all | startupmanager | 1.9.13-5 | - +- all | starvoyager-data | 0.4.4-5.1 | - +- all | statcvs | 1:0.7.0.dfsg-5 | - +- all | statnews | 2.5 | - +- all | statsvn | 0.7.0.dfsg-6 | - +- all | stda | 1.1.1-1 | - +- all | stealth-doc | 2.10.00-1 | - +- all | stellarium-data | 0.11.3-1+deb7u1 | - +- all | stgit | 0.15-1.1 | - +- all | stgit-contrib | 0.15-1.1 | - +- all | stk-doc | 4.4.3-2 | - +- all | stl-manual | 3.30-13 | - +- all | stompserver | 0.9.9gem-2 | - +- all | stops | 0.3.0-1 | - +- all | stopwatch | 3.5-3 | - +- all | storebackup | 3.2.1-1 | - +- all | stormbaancoureur-data | 2.1.6-1 | - +- all | stow | 2.2.0-2 | - +- all | streamtuner2 | 2.0.8-5 | - +! all | strongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 ++ all | strongswan-ikev1 | - | 5.1.1-2~bpo70+1 ++ all | strongswan-ikev2 | - | 5.1.1-2~bpo70+1 +- all | stumpwm | 1:20110819.gitca08e08-2 | - +- all | stx-btree-dev | 0.8.6-1 | - +- all | stx-btree-doc | 0.8.6-1 | - +- all | stx2any | 1.56-2 | - +- all | styx-doc | 1.8.0-1.1 | - +- all | subcommander-doc | 2.0.0~b5p2-5 | - +- all | substance | 5.3-2 | - +- all | substance-doc | 5.3-2 | - +- all | subunit | 0.0.8+bzr176-1 | - +- all | subversion-tools | 1.6.17dfsg-4+deb7u4 | - +- all | sucrose-0.96 | 0.96.1-2.1 | - +- all | sugar-calculate-activity | 40-2 | - +- all | sugar-connect-activity | 22-1.1 | - +- all | sugar-emulator-0.96 | 0.96.1-2.1 | - +- all | sugar-irc-activity | 8-1.1 | - +- all | sugar-memorize-activity | 35-1 | - +- all | sugar-physics-activity | 7+dfsg-1.1 | - +- all | sugar-pippy-activity | 46~dfsg-2 | - +- all | sugar-presence-service-0.84 | 0.84.3-1 | - +- all | sugar-presence-service-0.88 | 0.88.0-3 | - +- all | sugar-presence-service-0.90 | 0.90.2-1 | - +- all | sugar-record-activity | 82-1.1 | - +- all | sugar-session-0.96 | 0.96.1-2.1 | - +- all | sugar-terminal-activity | 28-1.1 | - +- all | sugar-tools-0.96 | 0.96.1-2.1 | - +- all | sugar-turtleart-activity | 98-1 | - +- all | sugarplum | 0.9.10-17.2 | - +- all | suikyo-elisp | 2.1.0-3 | - +- all | suikyo-table | 2.1.0-3 | - +! all | sumo-doc | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! all | sumo-tools | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +- all | sunclock-maps | 3.57-2 | - +! all | sunflow | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +- all | sup-mail | 0.12.1+git20120407.aaa852f-1+deb7u1 | - +- all | supercollider-common | 1:3.4.5-1wheezy1 | - +- all | supercollider-doc | 1:3.4.5-1wheezy1 | - +- all | supercollider-emacs | 1:3.4.5-1wheezy1 | - +- all | supercollider-vim | 1:3.4.5-1wheezy1 | - +- all | supertransball2-data | 1.5-4 | - +- all | supertux-data | 0.1.3-3 | - +! all | supertuxkart-data | 0.7.3-2 | 0.8.1-2~bpo70+1 +- all | supervisor | 3.0a8-1.1 | - +- all | supybot | 0.83.4.1.ds-2 | - +- all | surfraw | 2.2.8-1 | - +- all | surfraw-extra | 2.2.8-1 | - +- all | survex-svxedit | 1.2.6-4 | - +- all | sushi | 1.4.0+dfsg-1 | - +- all | sushi-plugins | 1.4.0+dfsg-1 | - +- all | sux | 1.0.1-6 | - +- all | svdrpservice-dev | 0.0.4-14 | - +- all | svn-autoreleasedeb | 0.12-1 | - +- all | svn-buildpackage | 0.8.5 | - +- all | svn-load | 1.3-1 | - +- all | svn-workbench | 1.6.2-2 | - +- all | svn2cl | 0.13-2 | - +- all | svnkit | 1.3.5+dfsg-4 | - +- all | svnmailer | 1.0.8-12 | - +- all | svtools | 0.6-2 | - +- all | swaks | 20120320.0-1 | - +- all | swaml | 0.1.1-1 | - +- all | swatch | 3.2.3-1 | - +- all | swe-basic-data | 1.77.00.0005-2 | - +- all | swe-standard-data | 00004-1 | - +- all | sweep-dev | 0.9.3-6 | - +! all | sweethome3d | 3.5+dfsg-1 | 4.3+dfsg-1~bpo70+1 +! all | swfdec-gnome | 1:0.8.11~git20120629-1+deb7u1 | 1:0.8.11~git20140121+dfsg-1~bpo70+1 +! all | swfdec-mozilla | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- all | swi-prolog-doc | 5.6.59-1 | - +- all | swift | 1.4.8-2+deb7u1 | - +- all | swift-account | 1.4.8-2+deb7u1 | - +- all | swift-container | 1.4.8-2+deb7u1 | - +- all | swift-doc | 1.4.8-2+deb7u1 | - +- all | swift-object | 1.4.8-2+deb7u1 | - +- all | swift-proxy | 1.4.8-2+deb7u1 | - +- all | swig-doc | 2.0.7-3 | - +- all | swig-examples | 2.0.7-3 | - +- all | swig2.0-doc | 2.0.7-3 | - +- all | swig2.0-examples | 2.0.7-3 | - +- all | switchconf | 0.0.9-2 | - +- all | sword-comm-mhcc | 1.1-4 | - +- all | sword-comm-scofield | 1.0-3 | - +- all | sword-comm-tdavid | 1.1-3 | - +- all | sword-dict-naves | 1.1-3 | - +- all | sword-dict-strongs-greek | 1.2-3 | - +- all | sword-dict-strongs-hebrew | 1.2-3 | - +- all | sword-text-kjv | 2.3-2 | - +- all | sword-text-sparv | 1.5-1 | - +- all | sword-text-web | 1.4-3 | - +- all | syfi-dev | 1.0.0.dfsg-1 | - +- all | syfi-doc | 1.0.0.dfsg-1 | - +- all | sylpheed-doc | 20120629-1 | - +- all | sylpheed-i18n | 3.2.0-1 | - +- all | sylseg-sk | 0.7-1 | - +- all | syncache | 1.2-1 | - +- all | syncbbdb | 2.3-6.2 | - +- all | syncevolution-common | 1.2.99.1-1.1 | - +- all | syncevolution-http | 1.2.99.1-1.1 | - +- all | synfig-examples | 0.63.05-1 | - +- all | synopsis-doc | 0.12-8 | - +- all | sysadmin-guide | 0.9-1 | - +- all | sysinfo | 0.7-8 | - +- all | syslinux-common | 2:4.05+dfsg-6+deb7u1 | - +- all | syslinux-themes-debian | 11-1.1 | - +- all | syslinux-themes-debian-squeeze | 11-1.1 | - +- all | syslinux-themes-debian-wheezy | 11-1.1 | - +- all | syslog-ng | 3.3.5-4 | - +- all | syslog-summary | 1.14-2 | - +- all | syslogout | 0.3.8 | - +- all | sysprofile | 0.3.8 | - +- all | system-config-cluster | 1.0.53-1 | - +- all | system-config-lvm | 1.1.16-1 | - +- all | system-config-printer | 1.3.7-4 | - +- all | system-config-printer-kde | 4:4.8.4-3 | - +- all | system-tools-backends-dev | 2.10.2-1 | - +- all | systemtap-common | 1.7-1+deb7u1 | - +- all | systemtap-doc | 1.7-1+deb7u1 | - +- all | systraq | 0.0.20081217-3 | - +- all | systune | 0.5.7 | - +- all | sysv-rc | 2.88dsf-41+deb7u1 | - +- all | sysv-rc-conf | 0.99-7 | - +- all | t-code | 2:2.3.1-3 | - +- all | t-coffee-doc | 9.02.r1228-2 | - +- all | t-coffee-examples | 9.02.r1228-2 | - +- all | t-prot | 2.101-2 | - +- all | t1-cyrillic | 4.16 | - +- all | t1-oldslavic | 4.16 | - +- all | t1-teams | 4.16 | - +- all | t2html | 2010.0302+gitbec03e2-2 | - +- all | tachyon-doc | 0.99~b2+dfsg-0.4 | - +- all | tads2-mode | 1.2-2 | - +- all | tagainijisho-common | 0.9.4-1 | - +- all | tagainijisho-dic-de | 0.9.4-1 | - +- all | tagainijisho-dic-en | 0.9.4-1 | - +- all | tagainijisho-dic-es | 0.9.4-1 | - +- all | tagainijisho-dic-fr | 0.9.4-1 | - +- all | tagainijisho-dic-it | 0.9.4-1 | - +- all | tagainijisho-dic-pt | 0.9.4-1 | - +- all | tagainijisho-dic-ru | 0.9.4-1 | - +- all | tagainijisho-dic-th | 0.9.4-1 | - +- all | tagainijisho-dic-tr | 0.9.4-1 | - +- all | tagcloud | 1.4-1.1 | - +- all | taglog | 0.2.3-1 | - +- all | tagua-data | 1.0~alpha2-10 | - +- all | tahoe-lafs | 1.9.2-1 | - +- all | tailor | 0.9.35+darcs20090615-1 | - +- all | taktuk | 3.7.4-1 | - +- all | tango-common | 7.2.6+dfsg-14 | - +- all | tango-icon-theme | 0.8.90-5 | - +- all | taoframework-examples | 2.1.svn20090801-9 | - +- all | tap-plugins-doc | 20040817-2 | - +- all | tarantool-common | 1.4.6+20120629+2158-1 | - +- all | tardiff | 0.1-1 | - +- all | targetcli | 2.0rc1-2 | - +- all | task-albanian-desktop | 3.14.1 | - +- all | task-amharic | 3.14.1 | - +- all | task-amharic-desktop | 3.14.1 | - +- all | task-amharic-kde-desktop | 3.14.1 | - +- all | task-arabic | 3.14.1 | - +- all | task-arabic-desktop | 3.14.1 | - +- all | task-arabic-kde-desktop | 3.14.1 | - +- all | task-asturian | 3.14.1 | - +- all | task-asturian-desktop | 3.14.1 | - +- all | task-basque | 3.14.1 | - +- all | task-basque-desktop | 3.14.1 | - +- all | task-basque-kde-desktop | 3.14.1 | - +- all | task-belarusian | 3.14.1 | - +- all | task-belarusian-desktop | 3.14.1 | - +- all | task-belarusian-kde-desktop | 3.14.1 | - +- all | task-bengali | 3.14.1 | - +- all | task-bengali-desktop | 3.14.1 | - +- all | task-bengali-kde-desktop | 3.14.1 | - +- all | task-bosnian | 3.14.1 | - +- all | task-bosnian-desktop | 3.14.1 | - +- all | task-bosnian-kde-desktop | 3.14.1 | - +- all | task-brazilian-portuguese | 3.14.1 | - +- all | task-brazilian-portuguese-desktop | 3.14.1 | - +- all | task-brazilian-portuguese-kde-desktop | 3.14.1 | - +- all | task-british-desktop | 3.14.1 | - +- all | task-british-kde-desktop | 3.14.1 | - +- all | task-bulgarian | 3.14.1 | - +- all | task-bulgarian-desktop | 3.14.1 | - +- all | task-bulgarian-kde-desktop | 3.14.1 | - +- all | task-catalan | 3.14.1 | - +- all | task-catalan-desktop | 3.14.1 | - +- all | task-catalan-kde-desktop | 3.14.1 | - +- all | task-chinese-s | 3.14.1 | - +- all | task-chinese-s-desktop | 3.14.1 | - +- all | task-chinese-s-kde-desktop | 3.14.1 | - +- all | task-chinese-t | 3.14.1 | - +- all | task-chinese-t-desktop | 3.14.1 | - +- all | task-chinese-t-kde-desktop | 3.14.1 | - +- all | task-croatian | 3.14.1 | - +- all | task-croatian-desktop | 3.14.1 | - +- all | task-croatian-kde-desktop | 3.14.1 | - +- all | task-cyrillic | 3.14.1 | - +- all | task-cyrillic-desktop | 3.14.1 | - +- all | task-cyrillic-kde-desktop | 3.14.1 | - +- all | task-czech | 3.14.1 | - +- all | task-czech-desktop | 3.14.1 | - +- all | task-czech-kde-desktop | 3.14.1 | - +- all | task-danish | 3.14.1 | - +- all | task-danish-desktop | 3.14.1 | - +- all | task-danish-kde-desktop | 3.14.1 | - +- all | task-database-server | 3.14.1 | - +- all | task-desktop | 3.14.1 | - +- all | task-dns-server | 3.14.1 | - +- all | task-dutch | 3.14.1 | - +- all | task-dutch-desktop | 3.14.1 | - +- all | task-dutch-kde-desktop | 3.14.1 | - +- all | task-dzongkha-desktop | 3.14.1 | - +- all | task-dzongkha-kde-desktop | 3.14.1 | - +- all | task-english | 3.14.1 | - +- all | task-esperanto | 3.14.1 | - +- all | task-esperanto-desktop | 3.14.1 | - +- all | task-esperanto-kde-desktop | 3.14.1 | - +- all | task-estonian | 3.14.1 | - +- all | task-estonian-desktop | 3.14.1 | - +- all | task-estonian-kde-desktop | 3.14.1 | - +- all | task-file-server | 3.14.1 | - +- all | task-finnish | 3.14.1 | - +- all | task-finnish-desktop | 3.14.1 | - +- all | task-finnish-kde-desktop | 3.14.1 | - +- all | task-french | 3.14.1 | - +- all | task-french-desktop | 3.14.1 | - +- all | task-french-kde-desktop | 3.14.1 | - +- all | task-galician | 3.14.1 | - +- all | task-galician-desktop | 3.14.1 | - +- all | task-galician-kde-desktop | 3.14.1 | - +- all | task-georgian-desktop | 3.14.1 | - +- all | task-german | 3.14.1 | - +- all | task-german-desktop | 3.14.1 | - +- all | task-german-kde-desktop | 3.14.1 | - +- all | task-gnome-desktop | 3.14.1 | - +- all | task-greek | 3.14.1 | - +- all | task-greek-desktop | 3.14.1 | - +- all | task-greek-kde-desktop | 3.14.1 | - +- all | task-gujarati | 3.14.1 | - +- all | task-gujarati-desktop | 3.14.1 | - +- all | task-gujarati-kde-desktop | 3.14.1 | - +- all | task-hebrew | 3.14.1 | - +- all | task-hebrew-desktop | 3.14.1 | - +- all | task-hebrew-gnome-desktop | 3.14.1 | - +- all | task-hebrew-kde-desktop | 3.14.1 | - +- all | task-hindi | 3.14.1 | - +- all | task-hindi-desktop | 3.14.1 | - +- all | task-hindi-kde-desktop | 3.14.1 | - +- all | task-hungarian | 3.14.1 | - +- all | task-hungarian-desktop | 3.14.1 | - +- all | task-hungarian-kde-desktop | 3.14.1 | - +- all | task-icelandic | 3.14.1 | - +- all | task-icelandic-desktop | 3.14.1 | - +- all | task-icelandic-kde-desktop | 3.14.1 | - +- all | task-indonesian-desktop | 3.14.1 | - +- all | task-indonesian-kde-desktop | 3.14.1 | - +- all | task-irish | 3.14.1 | - +- all | task-irish-desktop | 3.14.1 | - +- all | task-irish-kde-desktop | 3.14.1 | - +- all | task-italian | 3.14.1 | - +- all | task-italian-desktop | 3.14.1 | - +- all | task-italian-kde-desktop | 3.14.1 | - +- all | task-japanese | 3.14.1 | - +- all | task-japanese-desktop | 3.14.1 | - +- all | task-japanese-gnome-desktop | 3.14.1 | - +- all | task-japanese-kde-desktop | 3.14.1 | - +- all | task-kannada-desktop | 3.14.1 | - +- all | task-kannada-kde-desktop | 3.14.1 | - +- all | task-kazakh | 3.14.1 | - +- all | task-kazakh-desktop | 3.14.1 | - +- all | task-kazakh-kde-desktop | 3.14.1 | - +- all | task-kde-desktop | 3.14.1 | - +- all | task-khmer | 3.14.1 | - +- all | task-khmer-desktop | 3.14.1 | - +- all | task-khmer-kde-desktop | 3.14.1 | - +- all | task-korean | 3.14.1 | - +- all | task-korean-desktop | 3.14.1 | - +- all | task-korean-gnome-desktop | 3.14.1 | - +- all | task-korean-kde-desktop | 3.14.1 | - +- all | task-kurdish | 3.14.1 | - +- all | task-kurdish-desktop | 3.14.1 | - +- all | task-kurdish-kde-desktop | 3.14.1 | - +- all | task-laptop | 3.14.1 | - +- all | task-latvian | 3.14.1 | - +- all | task-latvian-desktop | 3.14.1 | - +- all | task-latvian-kde-desktop | 3.14.1 | - +- all | task-lithuanian | 3.14.1 | - +- all | task-lithuanian-desktop | 3.14.1 | - +- all | task-lithuanian-kde-desktop | 3.14.1 | - +- all | task-lxde-desktop | 3.14.1 | - +- all | task-macedonian | 3.14.1 | - +- all | task-macedonian-desktop | 3.14.1 | - +- all | task-macedonian-kde-desktop | 3.14.1 | - +- all | task-mail-server | 3.14.1 | - +- all | task-malayalam | 3.14.1 | - +- all | task-malayalam-desktop | 3.14.1 | - +- all | task-malayalam-gnome-desktop | 3.14.1 | - +- all | task-malayalam-kde-desktop | 3.14.1 | - +- all | task-marathi | 3.14.1 | - +- all | task-marathi-desktop | 3.14.1 | - +- all | task-nepali-desktop | 3.14.1 | - +- all | task-nepali-kde-desktop | 3.14.1 | - +- all | task-northern-sami | 3.14.1 | - +- all | task-northern-sami-desktop | 3.14.1 | - +- all | task-norwegian | 3.14.1 | - +- all | task-norwegian-desktop | 3.14.1 | - +- all | task-norwegian-kde-desktop | 3.14.1 | - +- all | task-persian | 3.14.1 | - +- all | task-persian-desktop | 3.14.1 | - +- all | task-persian-kde-desktop | 3.14.1 | - +- all | task-polish | 3.14.1 | - +- all | task-polish-desktop | 3.14.1 | - +- all | task-polish-kde-desktop | 3.14.1 | - +- all | task-portuguese | 3.14.1 | - +- all | task-portuguese-desktop | 3.14.1 | - +- all | task-portuguese-kde-desktop | 3.14.1 | - +- all | task-print-server | 3.14.1 | - +- all | task-punjabi | 3.14.1 | - +- all | task-punjabi-desktop | 3.14.1 | - +- all | task-punjabi-kde-desktop | 3.14.1 | - +- all | task-romanian | 3.14.1 | - +- all | task-romanian-desktop | 3.14.1 | - +- all | task-romanian-kde-desktop | 3.14.1 | - +- all | task-russian | 3.14.1 | - +- all | task-russian-desktop | 3.14.1 | - +- all | task-russian-kde-desktop | 3.14.1 | - +- all | task-serbian | 3.14.1 | - +- all | task-serbian-desktop | 3.14.1 | - +- all | task-serbian-kde-desktop | 3.14.1 | - +- all | task-sinhala-desktop | 3.14.1 | - +- all | task-sinhala-kde-desktop | 3.14.1 | - +- all | task-slovak | 3.14.1 | - +- all | task-slovak-desktop | 3.14.1 | - +- all | task-slovak-kde-desktop | 3.14.1 | - +- all | task-slovenian | 3.14.1 | - +- all | task-slovenian-desktop | 3.14.1 | - +- all | task-slovenian-kde-desktop | 3.14.1 | - +- all | task-south-african-english-desktop | 3.14.1 | - +- all | task-spanish | 3.14.1 | - +- all | task-spanish-desktop | 3.14.1 | - +- all | task-spanish-kde-desktop | 3.14.1 | - +- all | task-ssh-server | 3.14.1 | - +- all | task-swedish | 3.14.1 | - +- all | task-swedish-desktop | 3.14.1 | - +- all | task-swedish-kde-desktop | 3.14.1 | - +- all | task-tagalog | 3.14.1 | - +- all | task-tamil | 3.14.1 | - +- all | task-tamil-desktop | 3.14.1 | - +- all | task-tamil-gnome-desktop | 3.14.1 | - +- all | task-telugu | 3.14.1 | - +- all | task-telugu-desktop | 3.14.1 | - +- all | task-telugu-gnome-desktop | 3.14.1 | - +- all | task-telugu-kde-desktop | 3.14.1 | - +- all | task-thai | 3.14.1 | - +- all | task-thai-desktop | 3.14.1 | - +- all | task-thai-gnome-desktop | 3.14.1 | - +- all | task-thai-kde-desktop | 3.14.1 | - +- all | task-turkish | 3.14.1 | - +- all | task-turkish-desktop | 3.14.1 | - +- all | task-turkish-kde-desktop | 3.14.1 | - +- all | task-ukrainian | 3.14.1 | - +- all | task-ukrainian-desktop | 3.14.1 | - +- all | task-ukrainian-kde-desktop | 3.14.1 | - +- all | task-uyghur-desktop | 3.14.1 | - +- all | task-uyghur-kde-desktop | 3.14.1 | - +- all | task-vietnamese-desktop | 3.14.1 | - +- all | task-vietnamese-kde-desktop | 3.14.1 | - +- all | task-web-server | 3.14.1 | - +- all | task-welsh | 3.14.1 | - +- all | task-welsh-desktop | 3.14.1 | - +- all | task-xfce-desktop | 3.14.1 | - +- all | task-xhosa-desktop | 3.14.1 | - +- all | task-xhosa-kde-desktop | 3.14.1 | - +- all | tasksel | 3.14.1 | - +- all | tasksel-data | 3.14.1 | - +- all | tasque | 0.1.9-2 | - +- all | tau-examples | 2.16.4-1.4 | - +- all | tau-racy | 2.16.4-1.4 | - +- all | tbb-examples | 4.0+r233-1 | - +- all | tcl | 8.5.0-2.1 | - +- all | tcl-combat | 0.8.1-1 | - +- all | tcl-dev | 8.5.0-2.1 | - +- all | tcl-doc | 8.5.0-2.1 | - +- all | tcl-trf-doc | 2.1.4-dfsg1-1 | - +- all | tcl8.4-doc | 8.4.19-5 | - +- all | tcl8.5-doc | 8.5.11-2 | - +- all | tclcl-dev | 1.20-6 | - +- all | tcllib | 1.14-dfsg-3 | - +- all | tclx8.4-doc | 8.4.0-3 | - +- all | tcm-doc | 2.20+TSQD-4.2 | - +- all | tcpwatch-httpproxy | 1.3b-3 | - +- all | td2planet | 0.2.0-2 | - +- all | tdiary | 3.1.3-3 | - +- all | tdiary-contrib | 3.1.20120506-3 | - +- all | tdiary-mode | 3.1.20120506-3 | - +- all | tdiary-plugin | 3.1.3-3 | - +- all | tdiary-theme | 3.1.3-3 | - +- all | tea-data | 33.1.0-1 | - +- all | tecnoballz-data | 0.92-5 | - +- all | teeworlds-data | 0.6.1+dfsg-1 | - +- all | tegaki-recognize | 0.3.1.2-1 | - +- all | tegaki-train | 0.3.1-1 | - +- all | tegaki-zinnia-japanese | 0.3-1 | - +- all | tegaki-zinnia-simplified-chinese | 0.3-1 | - +- all | tekka | 1.4.0+dfsg-1 | - +- all | telepathy-sofiasip | 0.7.4-1 | - +- all | telepathy-specification | 0.26.0-1 | - +- all | tellico-data | 2.3.5+dfsg.1-4 | - +- all | tellico-scripts | 2.3.5+dfsg.1-4 | - +- all | tenshi | 0.13-2 | - +- all | terminator | 0.95-1 | - +- all | termsaver | 0.1.1-1 | - +- all | terraintool | 1.12a-1 | - +- all | tesseract-ocr-afr | 3.02-2 | - +- all | tesseract-ocr-ara | 3.02-2 | - +- all | tesseract-ocr-aze | 3.02-2 | - +- all | tesseract-ocr-bel | 3.02-2 | - +- all | tesseract-ocr-ben | 3.02-2 | - +- all | tesseract-ocr-bul | 3.02-2 | - +- all | tesseract-ocr-cat | 3.02-2 | - +- all | tesseract-ocr-ces | 3.02-2 | - +- all | tesseract-ocr-chi-sim | 3.02-1 | - +- all | tesseract-ocr-chi-tra | 3.02-1 | - +- all | tesseract-ocr-chr | 3.02-2 | - +- all | tesseract-ocr-dan | 3.02-2 | - +- all | tesseract-ocr-deu | 3.02-2 | - +- all | tesseract-ocr-deu-frak | 3.02-4 | - +- all | tesseract-ocr-dev | 3.02.01-6 | - +- all | tesseract-ocr-ell | 3.02-2 | - +- all | tesseract-ocr-eng | 3.02-2 | - +- all | tesseract-ocr-enm | 3.02-2 | - +- all | tesseract-ocr-epo | 3.02-2 | - +- all | tesseract-ocr-equ | 3.02-2 | - +- all | tesseract-ocr-est | 3.02-2 | - +- all | tesseract-ocr-eus | 3.02-2 | - +- all | tesseract-ocr-fin | 3.02-2 | - +- all | tesseract-ocr-fra | 3.02-2 | - +- all | tesseract-ocr-frk | 3.02-2 | - +- all | tesseract-ocr-frm | 3.02-2 | - +- all | tesseract-ocr-glg | 3.02-2 | - +- all | tesseract-ocr-heb | 3.02-2 | - +- all | tesseract-ocr-hin | 3.02-2 | - +- all | tesseract-ocr-hrv | 3.02-2 | - +- all | tesseract-ocr-hun | 3.02-2 | - +- all | tesseract-ocr-ind | 3.02-2 | - +- all | tesseract-ocr-isl | 3.02-2 | - +- all | tesseract-ocr-ita | 3.02-2 | - +- all | tesseract-ocr-ita-old | 3.02-1 | - +- all | tesseract-ocr-jpn | 3.02-2 | - +- all | tesseract-ocr-kan | 3.02-2 | - +- all | tesseract-ocr-kor | 3.02-2 | - +- all | tesseract-ocr-lav | 3.02-2 | - +- all | tesseract-ocr-lit | 3.02-2 | - +- all | tesseract-ocr-mal | 3.02-2 | - +- all | tesseract-ocr-mkd | 3.02-2 | - +- all | tesseract-ocr-mlt | 3.02-2 | - +- all | tesseract-ocr-msa | 3.02-2 | - +- all | tesseract-ocr-nld | 3.02-2 | - +- all | tesseract-ocr-nor | 3.02-2 | - +- all | tesseract-ocr-osd | 3.02-2 | - +- all | tesseract-ocr-pol | 3.02-2 | - +- all | tesseract-ocr-por | 3.02-2 | - +- all | tesseract-ocr-ron | 3.02-2 | - +- all | tesseract-ocr-rus | 3.02-2 | - +- all | tesseract-ocr-slk | 3.02-2 | - +- all | tesseract-ocr-slk-frak | 3.02-2 | - +- all | tesseract-ocr-slv | 3.02-2 | - +- all | tesseract-ocr-spa | 3.02-2 | - +- all | tesseract-ocr-spa-old | 3.02-1 | - +- all | tesseract-ocr-sqi | 3.02-2 | - +- all | tesseract-ocr-srp | 3.02-2 | - +- all | tesseract-ocr-swa | 3.02-2 | - +- all | tesseract-ocr-swe | 3.02-2 | - +- all | tesseract-ocr-tam | 3.02-2 | - +- all | tesseract-ocr-tel | 3.02-2 | - +- all | tesseract-ocr-tgl | 3.02-2 | - +- all | tesseract-ocr-tha | 3.02-2 | - +- all | tesseract-ocr-tur | 3.02-2 | - +- all | tesseract-ocr-ukr | 3.02-2 | - +- all | tesseract-ocr-vie | 3.02-2 | - +- all | testng | 5.11+dfsg-3 | - +- all | testng-doc | 5.11+dfsg-3 | - +- all | testrepository | 0.0.5-1.1 | - +- all | tetex-brev | 4.22.6+nmu1 | - +- all | tex-common | 3.15 | - +- all | tex-gyre | 2.004.1-4 | - +- all | tex4ht-common | 20090611-1.1 | - +- all | texi2html | 1.82+dfsg1-1 | - +- all | texify | 1.20-2 | - +- all | texlive | 2012.20120611-5 | - +- all | texlive-base | 2012.20120611-5 | - +- all | texlive-bibtex-extra | 2012.20120611-2 | - +- all | texlive-common | 2012.20120611-5 | - +- all | texlive-doc-ar | 2012.20120611-1 | - +- all | texlive-doc-base | 2012.20120611-1 | - +- all | texlive-doc-bg | 2012.20120611-1 | - +- all | texlive-doc-cs+sk | 2012.20120611-1 | - +- all | texlive-doc-de | 2012.20120611-1 | - +- all | texlive-doc-en | 2012.20120611-1 | - +- all | texlive-doc-es | 2012.20120611-1 | - +- all | texlive-doc-fi | 2012.20120611-1 | - +- all | texlive-doc-fr | 2012.20120611-1 | - +- all | texlive-doc-it | 2012.20120611-1 | - +- all | texlive-doc-ja | 2012.20120611-1 | - +- all | texlive-doc-ko | 2012.20120611-1 | - +- all | texlive-doc-mn | 2012.20120611-1 | - +- all | texlive-doc-nl | 2012.20120611-1 | - +- all | texlive-doc-pl | 2012.20120611-1 | - +- all | texlive-doc-pt | 2012.20120611-1 | - +- all | texlive-doc-rs | 2012.20120611-1 | - +- all | texlive-doc-ru | 2012.20120611-1 | - +- all | texlive-doc-si | 2012.20120611-1 | - +- all | texlive-doc-th | 2012.20120611-1 | - +- all | texlive-doc-tr | 2012.20120611-1 | - +- all | texlive-doc-uk | 2012.20120611-1 | - +- all | texlive-doc-vi | 2012.20120611-1 | - +- all | texlive-doc-zh | 2012.20120611-1 | - +- all | texlive-extra-utils | 2012.20120611-2 | - +- all | texlive-font-utils | 2012.20120611-2 | - +- all | texlive-fonts-extra | 2012.20120611-2 | - +- all | texlive-fonts-extra-doc | 2012.20120611-2 | - +- all | texlive-fonts-recommended | 2012.20120611-5 | - +- all | texlive-fonts-recommended-doc | 2012.20120611-5 | - +- all | texlive-formats-extra | 2012.20120611-2 | - +- all | texlive-full | 2012.20120611-5 | - +- all | texlive-games | 2012.20120611-2 | - +- all | texlive-generic-extra | 2012.20120611-2 | - +- all | texlive-generic-recommended | 2012.20120611-5 | - +- all | texlive-humanities | 2012.20120611-2 | - +- all | texlive-humanities-doc | 2012.20120611-2 | - +- all | texlive-lang-african | 2012.20120611-2 | - +- all | texlive-lang-all | 2012.20120611-2 | - +- all | texlive-lang-arabic | 2012.20120611-2 | - +- all | texlive-lang-armenian | 2012.20120611-2 | - +- all | texlive-lang-cjk | 2012.20120611-2 | - +- all | texlive-lang-croatian | 2012.20120611-2 | - +- all | texlive-lang-cyrillic | 2012.20120611-2 | - +- all | texlive-lang-czechslovak | 2012.20120611-2 | - +- all | texlive-lang-danish | 2012.20120611-2 | - +- all | texlive-lang-dutch | 2012.20120611-2 | - +- all | texlive-lang-english | 2012.20120611-2 | - +- all | texlive-lang-finnish | 2012.20120611-2 | - +- all | texlive-lang-french | 2012.20120611-2 | - +- all | texlive-lang-german | 2012.20120611-2 | - +- all | texlive-lang-greek | 2012.20120611-2 | - +- all | texlive-lang-hebrew | 2012.20120611-2 | - +- all | texlive-lang-hungarian | 2012.20120611-2 | - +- all | texlive-lang-indic | 2012.20120611-2 | - +- all | texlive-lang-italian | 2012.20120611-2 | - +- all | texlive-lang-latin | 2012.20120611-2 | - +- all | texlive-lang-latvian | 2012.20120611-2 | - +- all | texlive-lang-lithuanian | 2012.20120611-2 | - +- all | texlive-lang-mongolian | 2012.20120611-2 | - +- all | texlive-lang-norwegian | 2012.20120611-2 | - +- all | texlive-lang-other | 2012.20120611-2 | - +- all | texlive-lang-polish | 2012.20120611-2 | - +- all | texlive-lang-portuguese | 2012.20120611-2 | - +- all | texlive-lang-spanish | 2012.20120611-2 | - +- all | texlive-lang-swedish | 2012.20120611-2 | - +- all | texlive-lang-tibetan | 2012.20120611-2 | - +- all | texlive-lang-vietnamese | 2012.20120611-2 | - +- all | texlive-latex-base | 2012.20120611-5 | - +- all | texlive-latex-base-doc | 2012.20120611-5 | - +- all | texlive-latex-extra | 2012.20120611-2 | - +- all | texlive-latex-extra-doc | 2012.20120611-2 | - +- all | texlive-latex-recommended | 2012.20120611-5 | - +- all | texlive-latex-recommended-doc | 2012.20120611-5 | - +- all | texlive-latex3 | 2012.20120611-2 | - +- all | texlive-luatex | 2012.20120611-5 | - +- all | texlive-math-extra | 2012.20120611-2 | - +- all | texlive-metapost | 2012.20120611-5 | - +- all | texlive-metapost-doc | 2012.20120611-5 | - +- all | texlive-music | 2012.20120611-2 | - +- all | texlive-omega | 2012.20120611-5 | - +- all | texlive-pictures | 2012.20120611-5 | - +- all | texlive-pictures-doc | 2012.20120611-5 | - +- all | texlive-plain-extra | 2012.20120611-2 | - +- all | texlive-pstricks | 2012.20120611-2 | - +- all | texlive-pstricks-doc | 2012.20120611-2 | - +- all | texlive-publishers | 2012.20120611-2 | - +- all | texlive-publishers-doc | 2012.20120611-2 | - +- all | texlive-science | 2012.20120611-2 | - +- all | texlive-science-doc | 2012.20120611-2 | - +- all | texlive-xetex | 2012.20120611-5 | - +- all | texmacs-common | 1:1.0.7.15-2 | - +- all | texmacs-extra-fonts | 0.2 | - +- all | texmaker-data | 3.3.4-1 | - +- all | texpower | 2012.20120611-2 | - +- all | texworks-help-en | 0.5~svn1007-1 | - +- all | thailatex | 0.5.0-3 | - +- all | the-doc | 3.3~rc1-2 | - +- all | themole | 0.3-1 | - +- all | themonospot | 0.7.3.1-6 | - +- all | thepeg-gui | 1.8.0-1 | - +- all | thepeg-reference | 1.8.0-1 | - +- all | therion-doc | 5.3.9-4 | - +- all | thin1.8 | 1.3.1-3 | - +- all | thunar-data | 1.2.3-4 | - +- all | ticgit | 1.0.2.11-2 | - +- all | ticgitweb | 1.0.2.11-2 | - +- all | tictactoe-ng | 0.3.2.1-1 | - +- all | tidy-doc | 20091223cvs-1.2 | - +- all | tidy-proxy | 0.97-4 | - +- all | tilecache | 2.11-2 | - +- all | tilelite | 0.1.5-2 | - +- all | tilestache | 1.31.0-1 | - +- all | tilp | 7.0-1 | - +- all | timidity-daemon | 2.13.2-40.1 | - +- all | timidity-el | 2.13.2-40.1 | - +- all | tinyca | 0.7.5-4 | - +- all | tinymce | 3.4.8+dfsg0-1 | - +- all | tioga | 1.14-3 | - +- all | tipa | 2:1.3-19 | - +- all | tipa-doc | 2:1.3-19 | - +- all | titanion-data | 0.3.dfsg1-4 | - +- all | tk | 8.5.0-2.1 | - +- all | tk-brief | 5.9-1.1 | - +- all | tk-dev | 8.5.0-2.1 | - +- all | tk-doc | 8.5.0-2.1 | - +- all | tk2 | 1.1-9.1 | - +- all | tk5 | 0.6-6.1 | - +- all | tk8.4-doc | 8.4.19-5 | - +- all | tk8.5-doc | 8.5.11-2 | - +- all | tkabber | 0.11.1-3 | - +- all | tkabber-plugins | 0.11.1-1 | - +- all | tkcon | 2:2.5-1 | - +- all | tkcvs | 8.2.3-1 | - +- all | tkgate-data | 1.8.7-4 | - +- all | tkgate-doc | 1.8.7-4 | - +- all | tkinfo | 2.8-4 | - +- all | tkinspect | 5.1.6p10-4 | - +- all | tklib | 0.5-3 | - +- all | tkmib | 5.4.3~dfsg-2.7 | - +- all | tla-doc | 1.3.5+dfsg-18 | - +- all | tmexpand | 0.1.2.0-3 | - +- all | tmw | 20110911-3 | - +- all | tmw-music | 0.3-3 | - +- all | tntnet-doc | 2.1-2+deb7u1 | - +- all | togl-demos | 1.7-12 | - +- all | toilet-fonts | 0.3-1 | - +- all | tokyocabinet-doc | 1.4.47-2 | - +- all | tokyotyrant-doc | 1.1.40-4.1 | - +- all | tomatoes-data | 1.55-5 | - +- all | tomboy-latex | 0.5-4 | - +- all | tomcat6 | 6.0.35-6+deb7u1 | - +- all | tomcat6-admin | 6.0.35-6+deb7u1 | - +- all | tomcat6-common | 6.0.35-6+deb7u1 | - +- all | tomcat6-docs | 6.0.35-6+deb7u1 | - +- all | tomcat6-examples | 6.0.35-6+deb7u1 | - +- all | tomcat6-extras | 6.0.35-6+deb7u1 | - +- all | tomcat6-user | 6.0.35-6+deb7u1 | - +- all | tomcat7 | 7.0.28-4 | - +- all | tomcat7-admin | 7.0.28-4 | - +- all | tomcat7-common | 7.0.28-4 | - +- all | tomcat7-docs | 7.0.28-4 | - +- all | tomcat7-examples | 7.0.28-4 | - +- all | tomcat7-user | 7.0.28-4 | - +- all | tomoe-doc | 0.6.0-1.3 | - +- all | topgit | 0.8-1.1 | - +- all | tor-arm | 1.4.5.0-1 | - +- all | tor-geoipdb | 0.2.3.25-1 | - +- all | torchat | 0.9.9.550-2 | - +- all | torcs-data | 1.3.3+dfsg-0.1 | - +- all | torcs-data-cars | 1.3.3+dfsg-0.1 | - +- all | torcs-data-tracks | 1.3.3+dfsg-0.1 | - +- all | torrentflux | 2.4-5.1 | - +- all | torrus-apache2 | 2.03-2+deb7u1 | - +- all | torrus-common | 2.03-2+deb7u1 | - +- all | tortoisehg | 2.4-2 | - +- all | tortoisehg-nautilus | 2.4-2 | - +- all | torus-trooper-data | 0.22.dfsg1-8 | - +- all | totem-common | 3.0.1-8 | - +- all | totem-plugins-dvb-daemon | 1:0.2.8-1 | - +- all | tourney-manager | 20070820-4 | - +- all | tp-smapi-dkms | 0.41-1 | - +- all | tp-smapi-source | 0.41-1 | - +- all | tpclient-pywx | 0.3.1.1-3.1 | - +! all | trac | 0.12.5-3~deb7u1 | 1.0.1-2~bpo70+1 +- all | trac-accountmanager | 0.2.1+r7731-1 | - +- all | trac-announcer | 0.12.1+r10986-2 | - +- all | trac-authopenid | 0.3.1-1 | - +- all | trac-batchmodify | 0.8.0+r10978-1 | - +- all | trac-bitten | 0.6+final-3 | - +- all | trac-bitten-slave | 0.6+final-3 | - +- all | trac-bzr | 0.4.2+bzr125-2 | - +- all | trac-customfieldadmin | 0.2.6+r10460-1 | - +- all | trac-datefieldplugin | 0.7782-3 | - +- all | trac-diavisview | 0.1+r11124-2 | - +- all | trac-email2trac | 2.4.7-1 | - +- all | trac-git | 0.12.0.5+722342e-1 | - +- all | trac-graphviz | 0.7.5-1 | - +- all | trac-httpauth | 1.1+r6675-1 | - +- all | trac-icalviewplugin | 0.7889-1 | - +- all | trac-ja-resource | 0.12.2.ja1-1 | - +- all | trac-jsgantt | 0.9+r11145-1 | - +- all | trac-mastertickets | 3.0.2+20111224-2 | - +- all | trac-mercurial | 0.12.0.28-1 | - +- all | trac-odtexport | 0.6.0+svn10787-2 | - +- all | trac-privatetickets | 2.0.3-3 | - +- all | trac-privateticketsplugin | 2.0.3-3 | - +- all | trac-roadmap | 0.4.1+r11241-1 | - +- all | trac-sensitivetickets | 0.21-1 | - +- all | trac-subtickets | 0.1.1+253f019-1 | - +- all | trac-tags | 0.6.0+svn11105-1 | - +- all | trac-virtualticketpermissions | 1.0.0+svn4153-1 | - +- all | trac-wikiprint | 1.9.2-1.1 | - +- all | trac-wikitablemacro | 0.7785-1 | - +- all | trac-wysiwyg | 0.12.0.3+r10725-1 | - +- all | trac-xmlrpc | 1.1.2+r10706-1 | - +- all | trackballs-data | 1.1.4-4.1 | - +- all | trackballs-music | 1.3-1 | - +- all | trang | 20091111-5 | - +- all | trans-de-en | 1.7-2 | - +- all | transcode-doc | 3:1.1.7-3 | - +- all | transifex-client | 0.8-2 | - +- all | translate | 0.6-11 | - +- all | translate-docformat | 0.6-5 | - +- all | translate-toolkit | 1.9.0-3 | - +- all | translate-toolkit-dev-doc | 1.9.0-3 | - +- all | transmageddon | 0.20-1 | - +- all | transmission | 2.52-3+nmu1 | - +- all | transmission-common | 2.52-3+nmu1 | - +- all | transmission-remote-cli | 1.3.1-1 | - +- all | trash-cli | 0.12.7-1 | - +- all | tree-puzzle-doc | 5.2-7 | - +- all | treeline | 1.4.1-1 | - +- all | treetop | 1.4.10-5 | - +- all | trigger-rally-data | 0.6.0-1 | - +- all | trimage | 1.0.5-1 | - +- all | triplea | 1.5.2.1-1 | - +- all | tritium | 0.3.8-2 | - +- all | trophy-data | 2.0.2-2 | - +- all | trovacap-data | 0.2.2-1 | - +- all | trscripts | 1.16 | - +- all | tryton-client | 2.2.3-1+deb7u1 | - +- all | tryton-modules-account | 2.2.3-1 | - +- all | tryton-modules-account-be | 2.2.0-2 | - +- all | tryton-modules-account-de-skr03 | 2.2.0-2 | - +- all | tryton-modules-account-invoice | 2.2.2-2 | - +- all | tryton-modules-account-invoice-history | 2.2.0-2 | - +- all | tryton-modules-account-invoice-line-standalone | 2.2.0-2 | - +- all | tryton-modules-account-product | 2.2.0-2 | - +- all | tryton-modules-account-statement | 2.2.1-1 | - +- all | tryton-modules-all | 16 | - +- all | tryton-modules-analytic-account | 2.2.0-2 | - +- all | tryton-modules-analytic-invoice | 1:2.2.0-2 | - +- all | tryton-modules-analytic-purchase | 2.2.0-2 | - +- all | tryton-modules-analytic-sale | 2.2.0-2 | - +- all | tryton-modules-calendar | 2.2.1-1 | - +- all | tryton-modules-calendar-classification | 2.2.1-1 | - +- all | tryton-modules-calendar-scheduling | 2.2.2-1 | - +- all | tryton-modules-calendar-todo | 2.2.1-1 | - +- all | tryton-modules-company | 2.2.1-2 | - +- all | tryton-modules-company-work-time | 2.2.0-2 | - +- all | tryton-modules-country | 2.2.0-2 | - +- all | tryton-modules-currency | 2.2.1-2 | - +- all | tryton-modules-dashboard | 2.2.1-2 | - +- all | tryton-modules-google-maps | 2.2.0-2 | - +- all | tryton-modules-ldap-authentication | 2.2.1-2 | - +- all | tryton-modules-ldap-connection | 2.2.0-2 | - +- all | tryton-modules-party | 2.2.1-2 | - +- all | tryton-modules-party-siret | 2.2.1-2 | - +- all | tryton-modules-party-vcarddav | 2.2.1-1 | - +- all | tryton-modules-product | 2.2.2-1 | - +- all | tryton-modules-product-cost-fifo | 2.2.0-2 | - +- all | tryton-modules-product-cost-history | 2.2.0-2 | - +- all | tryton-modules-product-price-list | 2.2.0-2 | - +- all | tryton-modules-project | 2.2.0-2 | - +- all | tryton-modules-project-plan | 2.2.0-2 | - +- all | tryton-modules-project-revenue | 2.2.1-2 | - +- all | tryton-modules-purchase | 2.2.1-2 | - +- all | tryton-modules-purchase-invoice-line-standalone | 2.2.0-2 | - +- all | tryton-modules-sale | 2.2.2-2 | - +- all | tryton-modules-sale-opportunity | 2.2.1-2 | - +- all | tryton-modules-sale-price-list | 2.2.0-2 | - +- all | tryton-modules-stock | 2.2.3-1 | - +- all | tryton-modules-stock-forecast | 2.2.1-2 | - +- all | tryton-modules-stock-inventory-location | 2.2.0-2 | - +- all | tryton-modules-stock-location-sequence | 2.2.0-2 | - +- all | tryton-modules-stock-product-location | 2.2.0-2 | - +- all | tryton-modules-stock-supply | 2.2.2-1 | - +- all | tryton-modules-stock-supply-day | 2.2.1-2 | - +- all | tryton-modules-timesheet | 2.2.1-1 | - +- all | tryton-neso | 2.2.1-2 | - +- all | tryton-proteus | 2.2.1-1 | - +- all | tryton-server | 2.2.4-1 | - +- all | tsconf | 1.0-11 | - +- all | ttb | 1.0.1+20101115-1 | - +- all | ttf-adf-accanthis | 0.20090423-2 | - +- all | ttf-adf-baskervald | 0.20090423-2 | - +- all | ttf-adf-berenis | 0.20090423-2 | - +- all | ttf-adf-gillius | 0.20090423-2 | - +- all | ttf-adf-ikarius | 0.20090423-2 | - +- all | ttf-adf-irianis | 0.20090423-2 | - +- all | ttf-adf-libris | 0.20090423-2 | - +- all | ttf-adf-mekanus | 0.20090423-2 | - +- all | ttf-adf-oldania | 0.20090423-2 | - +- all | ttf-adf-romande | 0.20090423-2 | - +- all | ttf-adf-switzera | 0.20090423-2 | - +- all | ttf-adf-tribun | 0.20090423-2 | - +- all | ttf-adf-universalis | 0.20090423-2 | - +- all | ttf-adf-verana | 0.20090423-2 | - +- all | ttf-aenigma | 0.0.20080510.dfsg-2 | - +- all | ttf-alee | 12+nmu1 | - +- all | ttf-ancient-fonts | 2.57-1 | - +- all | ttf-anonymous-pro | 1.002-1 | - +- all | ttf-aoyagi-kouzan-t | 20051011-9 | - +- all | ttf-aoyagi-soseki | 20070207-8 | - +- all | ttf-arabeyes | 2.1-3 | - +- all | ttf-arphic-bkai00mp | 2.10-11 | - +- all | ttf-arphic-bsmi00lp | 2.10-12 | - +- all | ttf-arphic-gbsn00lp | 2.11-12 | - +- all | ttf-arphic-gkai00mp | 2.11-12 | - +- all | ttf-arphic-ukai | 0.2.20080216.2-3 | - +- all | ttf-arphic-ukai-mbe | 0.2.20080216.2-3 | - +- all | ttf-arphic-uming | 0.2.20080216.2-4 | - +- all | ttf-atarismall | 2.1-4 | - +- all | ttf-baekmuk | 2.2-7 | - +- all | ttf-bengali-fonts | 2:1.1 | - +- all | ttf-beteckna | 0.4-5 | - +- all | ttf-bitstream-vera | 1.10-8 | - +- all | ttf-bpg-georgian-fonts | 0.5a-6 | - +- all | ttf-breip | 1.0-7 | - +- all | ttf-century-catalogue | 001.001-5 | - +- all | ttf-comfortaa | 1.5-2 | - +- all | ttf-dejavu | 2.33-3 | - +- all | ttf-dejavu-core | 2.33-3 | - +- all | ttf-dejavu-extra | 2.33-3 | - +- all | ttf-dejima-mincho | 227-9 | - +- all | ttf-denemo | 0.9.2-3 | - +- all | ttf-devanagari-fonts | 2:1.1 | - +- all | ttf-droid | 20111207+git-1 | - +- all | ttf-dustin | 20030517-9 | - +- all | ttf-dzongkha | 0.3-7 | - +- all | ttf-ecolier-court | 1.00-4 | - +- all | ttf-ecolier-lignes-court | 1.00-5 | - +- all | ttf-engadget | 1.001-1-1 | - +- all | ttf-essays1743 | 1.0-4.1 | - +- all | ttf-evertype-conakry | 0.002+source-2 | - +- all | ttf-f500 | 1.0-3 | - +- all | ttf-fanwood | 1.1-2 | - +- all | ttf-farsiweb | 0.4.dfsg-11 | - +- all | ttf-femkeklaver | 1.0-1 | - +- all | ttf-fifthhorseman-dkg-handwriting | 0.15-1 | - +- all | ttf-freefarsi | 1.0.0~beta1-6 | - +- all | ttf-freefont | 20120503-1 | - +- all | ttf-georgewilliams | 1.0-5 | - +- all | ttf-gfs-artemisia | 1.1-4 | - +- all | ttf-gfs-baskerville | 1.1-4 | - +- all | ttf-gfs-bodoni-classic | 1.1-4 | - +- all | ttf-gfs-complutum | 1.1-5 | - +- all | ttf-gfs-didot | 1.1-5 | - +- all | ttf-gfs-didot-classic | 1.1-4 | - +- all | ttf-gfs-gazis | 1.1-4 | - +- all | ttf-gfs-neohellenic | 1.1-4 | - +- all | ttf-gfs-olga | 1.1-3 | - +- all | ttf-gfs-porson | 1.1-5 | - +- all | ttf-gfs-solomos | 1.1-4 | - +- all | ttf-gfs-theokritos | 1.1-4 | - +- all | ttf-goudybookletter | 2010.07.03-1 | - +- all | ttf-gujarati-fonts | 2:1.1 | - +- all | ttf-hanazono | 20120421-1.1 | - +- all | ttf-inconsolata | 001.010-4 | - +- all | ttf-indic-fonts | 2:1.1 | - +- all | ttf-isabella | 1.2-2 | - +- all | ttf-jsmath | 0.090709+0-1 | - +- all | ttf-junicode | 0.7.6-1 | - +- all | ttf-jura | 2.6.1-1 | - +- all | ttf-kacst | 2.01+mry-6 | - +- all | ttf-kacst-one | 5.0+svn11846-6 | - +- all | ttf-kanjistrokeorders | 3.000-dfsg-2 | - +- all | ttf-kannada-fonts | 2:1.1 | - +- all | ttf-khmeros | 5.0-5 | - +- all | ttf-kiloji | 1:2.1.0-18 | - +- all | ttf-kochi-gothic | 20030809-15 | - +- all | ttf-kochi-mincho | 20030809-15 | - +- all | ttf-komatuna | 20101113-6 | - +- all | ttf-konatu | 26-9 | - +- all | ttf-kouzan-mouhitsu | 20090806-8 | - +- all | ttf-lao | 0.0.20060226-8 | - +- all | ttf-levien-museum | 001.002-3 | - +- all | ttf-levien-typoscript | 000.001-3 | - +- all | ttf-lg-aboriginal | 1.0-5 | - +- all | ttf-liberation | 1.07.2-6 | - +- all | ttf-lindenhill | 1.2-2 | - +- all | ttf-linex | 2.2-6 | - +- all | ttf-linux-libertine | 5.1.3-1 | - +- all | ttf-lyx | 2.0.3-3 | - +- all | ttf-malayalam-fonts | 2:1.1 | - +- all | ttf-manchufont | 2.007.svn0068-2 | - +- all | ttf-marvosym | 0.1+dfsg-2 | - +- all | ttf-mgopen | 1.1-8 | - +- all | ttf-misaki | 11-20080603-13 | - +- all | ttf-mona | 2.90-7 | - +- all | ttf-monapo | 20090423-8 | - +- all | ttf-motoya-l-cedar | 1.00-6 | - +- all | ttf-motoya-l-maruberi | 1.00-5 | - +- all | ttf-mph-2b-damase | 001.000.dfsg.2+ds1-4 | - +- all | ttf-mplus | 049-1 | - +- all | ttf-nafees | 1.2-4 | - +- all | ttf-nanum | 3.020-1 | - +- all | ttf-nanum-coding | 2.0-4 | - +- all | ttf-nanum-extra | 3.020-1 | - +- all | ttf-ocr-a | 1.0-4 | - +- all | ttf-oflb-asana-math | 000.907-4 | - +- all | ttf-oflb-euterpe | 1.1-4 | - +- all | ttf-okolaks | 0.5-5 | - +- all | ttf-oldstandard | 2.2really-2 | - +- all | ttf-opendin | 0.1-3 | - +- all | ttf-opensymbol | 2:102.2+LibO3.5.4+dfsg2-0+deb7u2 | - +- all | ttf-oriya-fonts | 2:1.1 | - +- all | ttf-paktype | 0.0svn20121225-1 | - +- all | ttf-prociono | 2.3-2 | - +- all | ttf-punjabi-fonts | 2:1.1 | - +- all | ttf-radisnoir | 0.9b-2 | - +- all | ttf-rufscript | 010-3 | - +- all | ttf-sawarabi-gothic | 20120615-1 | - +- all | ttf-sawarabi-mincho | 20110220-5 | - +- all | ttf-sazanami-gothic | 20040629-15 | - +- all | ttf-sazanami-mincho | 20040629-15 | - +- all | ttf-sil-abyssinica | 1.200-3 | - +- all | ttf-sil-andika | 1.002-2 | - +- all | ttf-sil-charis | 4.106-5 | - +- all | ttf-sil-dai-banna | 2.1-5 | - +- all | ttf-sil-doulos | 4.106-4 | - +- all | ttf-sil-ezra | 2.51-7 | - +- all | ttf-sil-galatia | 2.1-4 | - +- all | ttf-sil-gentium | 20081126:1.02-12 | - +- all | ttf-sil-gentium-basic | 1.1-5 | - +- all | ttf-sil-nuosusil | 2.1.1-7 | - +- all | ttf-sil-padauk | 2.61-4 | - +- all | ttf-sil-scheherazade | 1.001-8 | - +- all | ttf-sil-sophia-nubian | 1.000-5 | - +- all | ttf-sil-yi | 2.1.1-7 | - +- all | ttf-sil-zaghawa-beria | 1.000-2 | - +- all | ttf-sinhala-lkmug | 0.6-2 | - +- all | ttf-sjfonts | 2.0.2-1.1 | - +- all | ttf-staypuft | 0.04-6 | - +- all | ttf-summersby | 1.007-3.1 | - +- all | ttf-tagbanwa | 1.004 | - +- all | ttf-takao | 003.02.01-7.1 | - +- all | ttf-takao-gothic | 003.02.01-7.1 | - +- all | ttf-takao-mincho | 003.02.01-7.1 | - +- all | ttf-tamil-fonts | 2:1.2 | - +- all | ttf-telugu-fonts | 2:1.1 | - +- all | ttf-thai-arundina | 0.2.0-5 | - +- all | ttf-thai-tlwg | 1:0.5.0-5 | - +- all | ttf-tiresias | 0.1-2 | - +- all | ttf-tmuni | 1.901b-4 | - +- all | ttf-tomsontalks | 1.1-3 | - +- all | ttf-tuffy | 20120614-1 | - +- all | ttf-ubuntu-title | 1:0.3-1 | - +- all | ttf-umefont | 440-3 | - +- all | ttf-umeplus | 20120403-3 | - +- all | ttf-unfonts-core | 1.0.2-080608-6 | - +- all | ttf-unfonts-extra | 1.0.2-080608-5 | - +- all | ttf-unifont | 1:5.1.20080914-1.3 | - +- all | ttf-unikurdweb | 1.0-4 | - +- all | ttf-uralic | 0.0.20040829-4 | - +- all | ttf-vlgothic | 20120629-2 | - +- all | ttf-wqy-microhei | 0.2.0-beta-1.1 | - +- all | ttf-wqy-zenhei | 0.9.45-4 | - +- all | ttf-yanone-kaffeesatz | 0.20100525-4 | - +- all | tuareg-mode | 1:2.0.6-3 | - +- all | tulip-doc | 3.7.0dfsg-4 | - +- all | tulip-help | 3.7.0dfsg-4 | - +- all | tumbler-common | 0.1.25-1 | - +- all | tumgreyspf | 1.36-4 | - +- all | tumiki-fighters-data | 0.2.dfsg1-5 | - +- all | tunapie | 2.1.17-2.2 | - +- all | tunnelx | 20110801-2.1 | - +- all | tupi-data | 0.1+git12-6 | - +- all | turnin-ng | 1.1-1 | - ++ all | turpial | - | 3.0+dfsg-1~bpo70+1 +- all | turtleart | 98-1 | - +- all | tuxguitar | 1.2-13+deb7u1 | - +- all | tuxguitar-jsa | 1.2-13+deb7u1 | - +- all | tuxpaint-data | 1:0.9.21-1.1 | - +- all | tuxpaint-dev | 1:0.9.21-1.1 | - +- all | tuxpaint-stamps-default | 2009.06.28-1 | - +- all | tuxtype-data | 1.8.1-5 | - +- all | tv-fonts | 1.1-8 | - +- all | tvnamer | 2.2.1-1 | - +- all | twatch | 0.0.7-1 | - +- all | twiggy | 0.1020+dfsg-1 | - +! all | twisted-doc | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | twittering-mode | 2.0.0+git20120325-1 | 3.0.0-1~bpo70+1 +- all | twms | 0.03e-2 | - +- all | twoftpd-run | 1.41-1 | - +- all | tworld-data | 1.3.0-6 | - +- all | txt2html | 2.51-1 | - +- all | txt2man | 1.5.5-4 | - +- all | txt2regex | 0.8-4 | - +- all | txt2tags | 2.6-3 | - +- all | typo3 | 4.5.19+dfsg1-5+wheezy2 | - +- all | typo3-database | 4.5.19+dfsg1-5+wheezy2 | - +- all | typo3-dummy | 4.5.19+dfsg1-5+wheezy2 | - +- all | typo3-src-4.5 | 4.5.19+dfsg1-5+wheezy2 | - +- all | tzdata | 2013i-0wheezy1 | - +- all | tzdata-java | 2013i-0wheezy1 | - +- all | tzwatch | 1.4.4-9 | - +- all | uboot-envtools | 20081215-3+2012.04.01-2 | - +- all | uboot-mkimage | 2012.04.01-2 | - +- all | ubuntu-dev-tools | 0.143 | - +- all | ucf | 3.0025+nmu3 | - +- all | uclibc-source | 0.9.32-1 | - +- all | ucommon-doc | 5.2.2-4 | - +- all | udisks-doc | 1.0.4-7 | - +- all | udo-doc-de | 6.4.1-1 | - +- all | udo-doc-en | 6.4.1-1 | - +- all | ufc | 2.0.5-3 | - +- all | ufc-doc | 2.0.5-3 | - +- all | ufw | 0.31.1-2 | - +- all | uicilibris | 1.8-1 | - +- all | uif | 1.0.6-1.1 | - +- all | uim | 1:1.8.1-4 | - +- all | uim-ajax-ime | 1:1.8.1-4 | - +- all | uim-applet-kde | 1:1.8.1-4 | - +- all | uim-baidu-olime-jp | 1:1.8.1-4 | - +- all | uim-byeoru | 1:1.8.1-4 | - +- all | uim-canna | 1:1.8.1-4 | - +- all | uim-common | 1:1.8.1-4 | - +- all | uim-google-cgiapi-jp | 1:1.8.1-4 | - +- all | uim-hangul | 1:1.8.1-4 | - +- all | uim-ipa-x-sampa | 1:1.8.1-4 | - +- all | uim-latin | 1:1.8.1-4 | - +- all | uim-look | 1:1.8.1-4 | - +- all | uim-pinyin | 1:1.8.1-4 | - +- all | uim-prime | 1:1.8.1-4 | - +- all | uim-qt3 | 1:1.8.1-4 | - +- all | uim-social-ime | 1:1.8.1-4 | - +- all | uim-tcode | 1:1.8.1-4 | - +- all | uim-viqr | 1:1.8.1-4 | - +- all | uim-yahoo-jp | 1:1.8.1-4 | - +- all | uima-doc | 2.4.0-2 | - +- all | uima-examples | 2.4.0-2 | - +- all | uima-utils | 2.4.0-2 | - +- all | ukolovnik | 1.4-1 | - +- all | uligo | 0.3-6 | - +- all | umlet | 11.3-5 | - +- all | unattended-upgrades | 0.79.5 | - +- all | unburden-home-dir | 0.3.1.2 | - +- all | undertaker-el | 1.3b-1 | - +- all | unetbootin-translations | 575-1 | - +- all | unhide.rb | 13-1.1 | - +- all | unicode | 0.9.5 | - +- all | unicode-data | 6.1.0-1 | - +- all | unifont | 1:5.1.20080914-1.3 | - +- all | unison-all | 2.40+1 | - +- all | unison-all-gtk | 2.40+1 | - +! all | unknown-horizons | 2012.1+dfsg1-1 | 2013.2+ds1-2~bpo70+1 +- all | unoconv | 0.5-1 | - +- all | unp | 2.0~pre7+nmu1 | - +- all | update-inetd | 4.43 | - +- all | update-manager-core | 0.200.5-2.1 | - +- all | update-manager-doc | 0.200.5-2.1 | - +- all | update-manager-gnome | 0.200.5-2.1 | - +- all | update-notifier-common | 0.99.3debian11 | - +- all | upgrade-system | 1.6.2.0 | - +- all | upnp-inspector | 0.2.2+dfsg-3 | - +- all | upower-doc | 0.9.17-1 | - +- all | uprecords-cgi | 1:0.3.17-3.1 | - +- all | urlscan | 0.5.6-0.1 | - +- all | urlwatch | 1.11-1 | - +- all | uruk | 20120608.1-1 | - +- all | usb-modeswitch-data | 20120815-2 | - +- all | usbmount | 0.0.22 | - +- all | usemod-wiki | 1.0.5-1+deb7u1 | - +- all | user-he | 1.0.20 | - +- all | user-mode-linux-doc | 20060501-1 | - +- all | user-setup | 1.48 | - +- all | utf8-migration-tool | 0.5.7 | - +- all | uthash-dev | 1.9.5-1 | - +- all | util-linux-locales | 2.20.1-5.3 | - +- all | uvcdynctrl-data | 0.2.2-1 | - +- all | uwsgi-extra | 1.2.3+dfsg-5+deb7u1 | - +- all | v-sim-common | 3.6.0-2 | - +- all | v-sim-doc | 3.6.0-2 | - +- all | v4l2loopback-dkms | 0.6.1-1 | - +- all | v4l2loopback-source | 0.6.1-1 | - +- all | v4l2loopback-utils | 0.6.1-1 | - +- all | vagrant | 1.0.3-1 | - +- all | val-and-rick-data | 0.1a.dfsg1-3 | - +- all | vala-0.14-doc | 0.14.2-2 | - +- all | vala-0.16-doc | 0.16.1-2 | - +- all | valac | 0.16.1-2 | - +- all | valac-0.16-vapi | 0.16.1-2 | - +- all | valknut-translations | 0.4.9-2 | - +- all | vamp-plugin-sdk-doc | 2.1-1 | - +- all | varnish-doc | 3.0.2-2+deb7u1 | - +- all | vbackup | 0.1.9-1 | - +- all | vblade-persist | 0.6-2 | - +- all | vcheck | 1.2.1-7 | - +- all | vclt-tools | 0.1.2-3 | - +! all | vcsh | 1.0-1 | 1.20131214-1~bpo70+1 +- all | vdk-doc | 1.2.4-4 | - +- all | vdk2-tutorial | 1.1-3 | - +- all | vdr-dev | 1.7.28-1 | - +- all | vdr-plugin-svdrpext | 0.1.1-8 | - +- all | vdradmin-am | 3.6.9-2 | - +- all | velocity | 1.7-4 | - +- all | velocity-doc | 1.7-4 | - +- all | velvet-example | 1.2.03~nozlibcopy-1 | - +- all | vera | 1.17-6 | - +- all | verbiste-el | 0.1.34-1 | - +- all | verilog | 0.9.5-1 | - +- all | veromix | 0.18.3-1 | - +- all | veromix-common | 0.18.3-1 | - +- all | veusz | 1.15-1 | - +- all | vflib3-doc | 3.6.14.dfsg-3 | - +- all | vgabios | 0.7a-3 | - +- all | videolan-doc | 20070626-1 | - +- all | viewvc | 1.1.5-1.4 | - +- all | viewvc-query | 1.1.5-1.4 | - +- all | vile-common | 9.8g-2 | - +- all | vim-addon-manager | 0.5.2 | - +- all | vim-conque | 2.3-1 | - +- all | vim-doc | 2:7.3.547-7 | - +- all | vim-gui-common | 2:7.3.547-7 | - ++ all | vim-haproxy | - | 1.4.24-2~bpo70+1 +- all | vim-latexsuite | 20120125.768-2 | - +- all | vim-lesstif | 2:7.3.547-7 | - +- all | vim-migemo | 20110227-7 | - +- all | vim-puppet | 2.7.23-1~deb7u3 | - +- all | vim-rails | 4.5~20110829-1 | - +- all | vim-runtime | 2:7.3.547-7 | - +- all | vim-scripts | 20121007 | - +- all | vim-syntax-go | 2:1.0.2-1.1 | - +- all | vim-syntax-gtk | 20110314-1 | - +- all | vim-vimerl | 1.4.1+git20120509.89111c7-2 | - +- all | vim-vimerl-syntax | 1.4.1+git20120509.89111c7-2 | - +- all | vim-vimoutliner | 0.3.4+pristine-9 | - +- all | vimhelp-de | 7.3.101122-2 | - +- all | vinetto | 0.6.0~alpha-1 | - +- all | viridian | 1.2-3 | - +- all | virt-goodies | 0.4-1 | - +- all | virt-manager | 0.9.1-4 | - +- all | virtaal | 0.7.1-1 | - +- all | virtinst | 0.600.1-3+deb7u1 | - +! all | virtualbox-dkms | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 ++ all | virtualbox-guest-additions-iso | - | 4.2.16-1~bpo70+1 +! all | virtualbox-guest-dkms | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-guest-source | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +- all | virtualbox-ose | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-dbg | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-dkms | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-fuse | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-guest-dkms | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-guest-source | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-guest-utils | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-guest-x11 | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-qt | 4.1.18-dfsg-2+deb7u1 | - +- all | virtualbox-ose-source | 4.1.18-dfsg-2+deb7u1 | - +! all | virtualbox-source | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +- all | virtualbricks | 0.6.352-1 | - +- all | virtualenvwrapper | 3.4-2 | - +- all | virtuoso-minimal | 6.1.4+dfsg1-7 | - +- all | virtuoso-opensource | 6.1.4+dfsg1-7 | - +- all | virtuoso-server | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-bpel | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-conductor | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-demo | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-doc | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-isparql | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-ods | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-rdfmappers | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-sparqldemo | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-syncml | 6.1.4+dfsg1-7 | - +- all | virtuoso-vad-tutorial | 6.1.4+dfsg1-7 | - +- all | virtuoso-vsp-startpage | 6.1.4+dfsg1-7 | - +- all | visolate | 2.1.6~svn8+dfsg1-1 | - +- all | vistrails | 2.0.alpha~1-3 | - +- all | visual-regexp | 3.1-3 | - +- all | vitables | 2.1-1 | - +! all | vlc-data | 2.0.3-5 | 2.1.2-2~bpo70+2 +- all | vlogger | 1.3-3.1 | - +- all | vm | 8.1.0-1 | - +- all | vm-bonus-el | 35.2+nmu1 | - +- all | vmm | 0.6.0-2 | - ++ all | volatility | - | 2.3.1-7~bpo70+1 ++ all | volatility-profiles | - | 20140130-1~bpo70+1 ++ all | volatility-tools | - | 2.3.1-7~bpo70+1 +- all | volti | 0.2.3-5 | - +- all | voms-doc | 2.0.8-1 | - +- all | vpb-driver-source | 4.2.55-1 | - +- all | vpim | 0.695-1 | - +- all | vpnc-scripts | 0.1~git20120602-2 | - +- all | vrms | 1.16 | - +- all | vtk-doc | 5.8.0-13 | - +- all | vtk-examples | 5.8.0-13 | - +- all | vtkdata | 5.8.0-1 | - +- all | vuze | 4.3.0.6-5 | - +- all | vzdump | 1.2.6-3 | - +- all | w2do | 2.3.1-3 | - +- all | w3-dtd-mathml | 2.0.0.0-5 | - +- all | w3af | 1.0-rc3svn3489-1 | - +- all | w3af-console | 1.0-rc3svn3489-1 | - +- all | w3c-dtd-xhtml | 1.2-4 | - +- all | w3c-linkchecker | 4.81-7 | - +- all | w3c-markup-validator | 1.2+dfsg-6 | - +- all | w3c-sgml-lib | 1.2-3 | - +- all | w3m-el | 1.4.4-11 | - +- all | w3m-el-snapshot | 1.4.483+0.20120614-1 | - +- all | wader-core | 0.5.10-1 | - +- all | wajig | 2.7.3 | - +- all | wakeonlan | 0.41-11 | - +- all | wamerican | 7.1-1 | - +- all | wamerican-huge | 7.1-1 | - +- all | wamerican-insane | 7.1-1 | - +- all | wamerican-large | 7.1-1 | - +- all | wamerican-small | 7.1-1 | - +- all | wammu | 0.36-2 | - +- all | wapiti | 1.1.6-4 | - +- all | wapua | 0.06.1-2 | - +- all | warmux-data | 1:11.04.1+repack-4 | - +- all | wavesurfer | 1.8.8p3-1 | - +- all | wbrazilian | 3.0~beta4-15 | - +- all | wbritish | 7.1-1 | - +- all | wbritish-huge | 7.1-1 | - +- all | wbritish-insane | 7.1-1 | - +- all | wbritish-large | 7.1-1 | - +- all | wbritish-small | 7.1-1 | - +- all | wbulgarian | 4.1-3 | - +- all | wcanadian | 7.1-1 | - +- all | wcanadian-huge | 7.1-1 | - +- all | wcanadian-insane | 7.1-1 | - +- all | wcanadian-large | 7.1-1 | - +- all | wcanadian-small | 7.1-1 | - +- all | wcatalan | 0.20111230b-4 | - +- all | wcslib-doc | 4.13.4-1 | - +- all | wdanish | 1.6.25-1.1 | - +- all | wdg-html-validator | 1.6.2-7 | - +- all | wdiff-doc | 1.1.2-1 | - +- all | wdutch | 1:2.10-1 | - +- all | weather-util | 2.0-1 | - +- all | weather-util-data | 2.0-1 | - +- all | weathermap4rrd | 1.1.999+1.2rc3-2 | - +- all | webauth-tests | 4.1.1-2 | - +- all | webauth-weblogin | 4.1.1-2 | - +- all | webcamd | 0.7.6-5 | - +- all | webcheck | 1.10.4 | - +- all | webgen0.4 | 0.4.7-8 | - +- all | webgen0.4-doc | 0.4.7-8 | - +- all | webgen0.5 | 0.5.14+dfsg1-3 | - +- all | webgen0.5-doc | 0.5.14+dfsg1-3 | - +- all | webhttrack-common | 3.46.1-1 | - +- all | webissues-server | 0.8.5-3 | - +- all | weblint-perl | 2.20+dfsg-1 | - +- all | webmagick | 2.02-11 | - +- all | weboob | 0.c-4.1 | - +- all | weboob-qt | 0.c-4.1 | - +- all | weborf-daemon | 0.13-3 | - +- all | websimba | 0.8.4-4.2 | - +- all | websvn | 2.3.3-1.1 | - +! all | weechat | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | weechat-dev | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | weechat-doc | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +- all | weechat-scripts | 20120603-1 | - +- all | weirdx | 1.0.32-6 | - +- all | weka | 3.6.6-1 | - +- all | weka-doc | 3.6.6-1 | - +! all | wesnoth | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10 | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-aoi | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-data | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-did | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-dm | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-dw | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-ei | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-httt | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-l | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-low | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-music | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-nr | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-sof | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-sotbe | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-thot | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-tools | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-trow | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-tsg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-ttb | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-utbs | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-music | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +- all | west-chamber-dkms | 20100405+svn20111107.r124-1 | - +- all | west-chamber-source | 20100405+svn20111107.r124-1 | - +- all | wfaroese | 0.4.1-1 | - +- all | wfinnish | 0.7-18 | - +- all | wfo | 0.1-2 | - +- all | wfrench | 1.2.3-10 | - +- all | wgaelic | 0.50-8 | - +- all | wgalician-minimos | 0.5-35 | - +- all | wgerman-medical | 20110608-1 | - +- all | whatsnewfm | 0.7.2-1 | - +- all | whatweb | 0.4.8~git20120606-1 | - +- all | when | 1.1.29-1 | - +- all | whereami | 0.3.34-0.3 | - +- all | whichwayisup | 0.7.9-2 | - +- all | whiff | 0.001-1 | - +- all | whitedune-docs | 0.30.10-1.1 | - +- all | whizzytex | 1.3.2-1.1 | - +- all | whohas | 0.29-0.3 | - +- all | why-examples | 2.30+dfsg-5 | - +- all | whyteboard | 0.41.1-4 | - +- all | wicd | 1.7.2.4-4 | - +- all | wicd-cli | 1.7.2.4-4 | - +- all | wicd-curses | 1.7.2.4-4 | - +- all | wicd-daemon | 1.7.2.4-4 | - +- all | wicd-gtk | 1.7.2.4-4 | - +- all | widelands-data | 1:17-3 | - +- all | widemargin | 1.0.11-4 | - +- all | wifi-radar | 2.0.s08+dfsg-1.1 | - +- all | wiki2beamer | 0.9.4-1 | - +- all | wikipedia2text | 0.11-2 | - +- all | wikipediafs | 0.4-4 | - +- all | wiliki | 0.6.2-1 | - +- all | wims-help | 4.01-2 | - ++ all | wims-modules | - | 1:4.07a~dfsg1-2~bpo1-1 +- all | win32-loader | 0.7.4.7+deb7u1 | - +- all | windows-el | 2.41-3 | - +- all | wine-doc | 1.0.0-1 | - +- all | winff-doc | 1.4.2-3 | - +- all | wing-data | 0.7-27.1 | - +- all | winpdb | 1.4.8-2 | - +- all | wireless-regdb | 2011.04.28-1 | - +! all | wireshark-doc | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- all | wirish | 2.0-21 | - +- all | wise-doc | 2.4.1-10 | - +- all | witalian | 1.7.5 | - +- all | witty | 3.2.1-2 | - +- all | witty-dbg | 3.2.1-2 | - +- all | witty-dev | 3.2.1-2 | - +- all | witty-doc | 3.2.1-2 | - +- all | wizznic-data | 0.9.2-preview2+dfsg-1.1 | - +- all | wl | 2.14.0-12 | - +- all | wl-beta | 2.15.9+0.20120411-1 | - +- all | wm-icons | 0.4.0-5.1 | - +- all | wmaker-common | 0.95.3-2 | - +- all | wmaker-data | 0.9~3-4 | - +- all | wmanx | 0.50-9.1 | - +- all | wmii-doc | 1:1-14 | - +- all | wngerman | 20120607-1 | - +- all | wnorwegian | 2.0.10-5.1 | - +- all | wogerman | 1:2-28 | - +- all | wondershaper | 1.1a-6 | - +- all | woof | 20091227-2 | - +- all | wordnet-base | 1:3.0-29 | - +- all | wordnet-sense-index | 1:3.0-29 | - +- all | wordpress | 3.6.1+dfsg-1~deb7u1 | - +- all | wordpress-l10n | 3.6.1+dfsg-1~deb7u1 | - +- all | wordpress-openid | 3.3.3-1 | - +- all | wordpress-shibboleth | 1.4-2 | - +- all | wordpress-xrds-simple | 1.0-1 | - +- all | worker-data | 2.19.2-2 | - +- all | workrave-data | 1.9.909+abc941eb70-1 | - +- all | wormux | 1:11.04.1+repack-4 | - +- all | wormux-data | 1:11.04.1+repack-4 | - +- all | wormux-dbg | 1:11.04.1+repack-4 | - +- all | wormux-servers | 1:11.04.1+repack-4 | - +- all | wotsap | 0.7-2 | - +- all | wpolish | 20120520-1 | - +- all | wportuguese | 20120604-1 | - +- all | wpp | 2.13.1.35-3 | - +- all | writer2latex | 1.0.2-8 | - +- all | writer2latex-manual | 1.0.2-8 | - +- all | writetype | 1.2.130+bzr139-1 | - +- all | wspanish | 1.0.26 | - +- all | wswedish | 1.4.5-2.1 | - +- all | wswiss | 20120607-1 | - +- all | wukrainian | 1.6.5-2 | - +- all | wwwconfig-common | 0.2.2 | - +- all | wwwstat | 2.0-7 | - +- all | wx2.8-doc | 2.8.12.1-12 | - +- all | wx2.8-examples | 2.8.12.1-12 | - +- all | wx2.8-i18n | 2.8.12.1-12 | - +- all | wxgeometrie | 0.133.1-1 | - +- all | wxsqlite3-doc | 3.0.0.1~dfsg0-2 | - +- all | wyg | 1.1.3.0.debian.1-5 | - +- all | x-face-el | 1.3.6.24-12 | - +- all | x-tile | 2.2.1-2 | - +- all | x11-common | 1:7.7+3~deb7u1 | - +- all | x11proto-bigreqs-dev | 1:1.1.2-1 | - +- all | x11proto-composite-dev | 1:0.4.2-2 | - +- all | x11proto-core-dev | 7.0.23-1 | - +- all | x11proto-damage-dev | 1:1.2.1-2 | - +- all | x11proto-dmx-dev | 1:2.3.1-2 | - +- all | x11proto-dri2-dev | 2.6-2 | - +- all | x11proto-fixes-dev | 1:5.0-2 | - +- all | x11proto-fonts-dev | 2.1.2-1 | - +- all | x11proto-gl-dev | 1.4.15-1 | - +- all | x11proto-input-dev | 2.2-1 | - +- all | x11proto-kb-dev | 1.0.6-2 | - +- all | x11proto-print-dev | 1.0.5-2 | - +- all | x11proto-randr-dev | 1.3.2-2 | - +- all | x11proto-record-dev | 1.14.2-1 | - +- all | x11proto-render-dev | 2:0.11.1-2 | - +- all | x11proto-resource-dev | 1.2.0-3 | - +- all | x11proto-scrnsaver-dev | 1.2.2-1 | - +- all | x11proto-video-dev | 2.3.1-2 | - +- all | x11proto-xcmisc-dev | 1.2.2-1 | - +- all | x11proto-xext-dev | 7.2.1-1 | - +- all | x11proto-xf86bigfont-dev | 1.2.0-3 | - +- all | x11proto-xf86dga-dev | 2.1-3 | - +- all | x11proto-xf86dri-dev | 2.1.1-2 | - +- all | x11proto-xf86vidmode-dev | 2.3.1-2 | - +- all | x11proto-xinerama-dev | 1.2.1-2 | - +- all | x11vnc-data | 0.9.13-1 | - ++ all | x2goplugin-provider | - | 4.0.1.1-1~bpo7+1 +! all | xapian-doc | 1.2.12-2 | 1.2.16-2~bpo70+1 +- all | xapt | 2.2.19 | - +- all | xavante | 2.2.1-1 | - +- all | xavante-doc | 2.2.1-1 | - +- all | xbase-clients | 1:7.7+3~deb7u1 | - +- all | xbitmaps | 1.1.1-1 | - +- all | xblast | 1:2.10.4-3 | - +- all | xblast-tnt-images | 20050106-2 | - +- all | xblast-tnt-levels | 20050106-2 | - +- all | xblast-tnt-mini | 2.10.4-3 | - +- all | xblast-tnt-models | 20050106-3 | - +- all | xblast-tnt-musics | 20050106-2 | - +- all | xblast-tnt-sounds | 20040429-2 | - +! all | xbmc | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +- all | xbmc-data | 2:11.0~git20120510.82388d5-1 | - +! all | xbmc-eventclients-common | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-dev | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-j2me | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-ps3 | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-xbmc-send | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +- all | xbmc-skin-confluence | 2:11.0~git20120510.82388d5-1 | - +- all | xbmc-standalone | 2:11.0~git20120510.82388d5-1 | - +- all | xbubble-data | 0.5.11.2-3.2 | - +- all | xcb-proto | 1.7.1-1 | - +- all | xchat-common | 2.8.8-7.1 | - +- all | xchat-gnome-common | 1:0.30.0~git20110821.e2a400-0.2 | - +- all | xcite | 1.60-1 | - +- all | xcp-eliloader | 0.1-4 | - +- all | xcrysden-data | 1.5.53-1 | - +- all | xcursor-themes | 1.0.3-1 | - +- all | xdeb | 0.6.6 | - +- all | xdg-utils | 1.1.0~rc1+git20111210-6 | - +- all | xdot | 0.4-2 | - +- all | xen-docs-4.1 | 4.1.4-3+deb7u1 | - +- all | xen-tools | 4.3.1-1 | - +- all | xen-utils-common | 4.1.4-3+deb7u1 | - +- all | xenomai-doc | 2.6.0-2 | - +- all | xfce-keyboard-shortcuts | 4.8.1-1 | - +- all | xfce4 | 4.8.0.3 | - +- all | xfce4-artwork | 0.1.1a~git+20110420-1 | - +- all | xfce4-dbg | 4.8.0.3 | - +- all | xfce4-power-manager-data | 1.0.11-2 | - +- all | xfce4-screenshooter-plugin | 1.8.1-1 | - +- all | xfdesktop4-data | 4.8.3-2 | - +- all | xfe-i18n | 1.32.5-2 | - +- all | xfe-themes | 1.32.5-2 | - +- all | xfig-doc | 1:3.2.5.b-3 | - +- all | xfig-libs | 1:3.2.5.b-3 | - +- all | xflr5-doc | 6.07+svn513-1 | - +- all | xfonts-100dpi | 1:1.0.3 | - +- all | xfonts-100dpi-transcoded | 1:1.0.3 | - +- all | xfonts-75dpi | 1:1.0.3 | - +- all | xfonts-75dpi-transcoded | 1:1.0.3 | - +- all | xfonts-a12k12 | 1-11 | - +- all | xfonts-ayu | 1.7+0a+0debian1-2.1 | - +- all | xfonts-baekmuk | 2.2-5 | - +- all | xfonts-base | 1:1.0.3 | - +- all | xfonts-bitmap-mule | 8.5+0.20030825.0433-12 | - +- all | xfonts-biznet-100dpi | 3.0.0-22 | - +- all | xfonts-biznet-75dpi | 3.0.0-22 | - +- all | xfonts-biznet-base | 3.0.0-22 | - +- all | xfonts-bolkhov-75dpi | 1.1.20001007-6 | - +- all | xfonts-bolkhov-cp1251-75dpi | 1.1.20001007-6 | - +- all | xfonts-bolkhov-cp1251-misc | 1.1.20001007-6 | - +- all | xfonts-bolkhov-isocyr-75dpi | 1.1.20001007-6 | - +- all | xfonts-bolkhov-isocyr-misc | 1.1.20001007-6 | - +- all | xfonts-bolkhov-koi8r-75dpi | 1.1.20001007-6 | - +- all | xfonts-bolkhov-koi8r-misc | 1.1.20001007-6 | - +- all | xfonts-bolkhov-koi8u-75dpi | 1.1.20001007-6 | - +- all | xfonts-bolkhov-koi8u-misc | 1.1.20001007-6 | - +- all | xfonts-bolkhov-misc | 1.1.20001007-6 | - +- all | xfonts-cronyx-100dpi | 2.3.8-6 | - +- all | xfonts-cronyx-75dpi | 2.3.8-6 | - +- all | xfonts-cronyx-cp1251-100dpi | 2.3.8-6 | - +- all | xfonts-cronyx-cp1251-75dpi | 2.3.8-6 | - +- all | xfonts-cronyx-cp1251-misc | 2.3.8-6 | - +- all | xfonts-cronyx-isocyr-100dpi | 2.3.8-6 | - +- all | xfonts-cronyx-isocyr-75dpi | 2.3.8-6 | - +- all | xfonts-cronyx-isocyr-misc | 2.3.8-6 | - +- all | xfonts-cronyx-koi8r-100dpi | 2.3.8-6 | - +- all | xfonts-cronyx-koi8r-75dpi | 2.3.8-6 | - +- all | xfonts-cronyx-koi8r-misc | 2.3.8-6 | - +- all | xfonts-cronyx-koi8u-100dpi | 2.3.8-6 | - +- all | xfonts-cronyx-koi8u-75dpi | 2.3.8-6 | - +- all | xfonts-cronyx-koi8u-misc | 2.3.8-6 | - +- all | xfonts-cronyx-misc | 2.3.8-6 | - +- all | xfonts-cyrillic | 1:1.0.3 | - +- all | xfonts-efont-unicode | 0.4.2-5 | - +- all | xfonts-efont-unicode-ib | 0.4.2-5 | - +- all | xfonts-encodings | 1:1.0.4-1 | - +- all | xfonts-intl-arabic | 1.2.1-8 | - +- all | xfonts-intl-asian | 1.2.1-8 | - +- all | xfonts-intl-chinese | 1.2.1-8 | - +- all | xfonts-intl-chinese-big | 1.2.1-8 | - +- all | xfonts-intl-european | 1.2.1-8 | - +- all | xfonts-intl-japanese | 1.2.1-8 | - +- all | xfonts-intl-japanese-big | 1.2.1-8 | - +- all | xfonts-intl-phonetic | 1.2.1-8 | - +- all | xfonts-jisx0213 | 0+20040511-4 | - +- all | xfonts-jmk | 3.0-19 | - +- all | xfonts-kaname | 1.1-9.1 | - +- all | xfonts-kapl | 4.22.1-6 | - +- all | xfonts-kappa20 | 0.396-3 | - +- all | xfonts-marumoji | 0.2-9 | - +- all | xfonts-mathml | 6 | - +- all | xfonts-mona | 2.90-7 | - +- all | xfonts-mplus | 2.2.4-1 | - +- all | xfonts-nexus | 0.0.2-16 | - +- all | xfonts-scalable | 1:1.0.3-1 | - +- all | xfonts-shinonome | 5-1.1 | - +- all | xfonts-terminus | 4.35-1 | - +- all | xfonts-terminus-dos | 4.35-1 | - +- all | xfonts-terminus-oblique | 4.35-1 | - +- all | xfonts-thai | 1:1.2.5-11 | - +- all | xfonts-thai-etl | 1:1.2.5-11 | - +- all | xfonts-thai-manop | 1:1.2.5-11 | - +- all | xfonts-thai-nectec | 1:1.2.5-11 | - +- all | xfonts-thai-poonlap | 1:1.2.5-11 | - +- all | xfonts-thai-vor | 1:1.2.5-11 | - +- all | xfonts-tipa | 2:1.3-19 | - +- all | xfonts-traditional | 1.6 | - +- all | xfonts-unifont | 1:5.1.20080914-1.3 | - +- all | xfonts-wqy | 0.9.9-5 | - +- all | xfwm4-themes | 4.6.0-3 | - +- all | xgridfit | 2.2a-2 | - +- all | xgridfit-doc | 2.2a-2 | - +- all | xhtml-relaxng | 20091111-5 | - +- all | xhtml2ps | 1.0b7-1 | - +- all | xindy-rules | 2.4-1.1 | - +- all | xiphos-data | 3.1.5+dfsg-1 | - +- all | xkb-data | 2.5.1-3 | - +- all | xlog-data | 2.0.5-2 | - +- all | xmail-doc | 1.27-1.1 | - +- all | xmanpages-ja | 4.1.0.20011224-6 | - +- all | xmds-doc | 0~svn.1884-3.1 | - +- all | xml-core | 0.13+nmu2 | - +- all | xml-twig-tools | 1:3.39-1 | - +- all | xmlbeans | 2.5.0-4 | - +- all | xmldiff-xmlrev | 0.6.10-2 | - +- all | xmltex | 1.9.debian.1-3 | - +- all | xmltoman | 0.4-3 | - +! all | xmltooling-schemas | 1.4.2-5 | 1.5.3-2~bpo70+1 +- all | xmltv | 0.5.63-2 | - +- all | xmltv-gui | 0.5.63-2 | - +- all | xmltv-util | 0.5.63-2 | - +- all | xmms2-dev | 0.8+dfsg-4 | - +- all | xmms2-icon | 0.8+dfsg-4 | - +- all | xmms2tray | 0.5.1-2 | - +- all | xmoto-data | 0.5.10+dfsg-1 | - +- all | xmp-common | 3.4.0-1.1 | - +- all | xnbd-common | 0.1.0-pre-hg20-e75b93a47722-3 | - +- all | xnee | 3.13-1 | - +- all | xnee-doc | 3.13-1 | - +- all | xnetcardconfig | 0.2.1-1 | - +- all | xorg-dev | 1:7.7+3~deb7u1 | - +- all | xorg-docs | 1:1.6-1 | - +- all | xorg-docs-core | 1:1.6-1 | - +- all | xorg-sgml-doctools | 1:1.10-1 | - +- all | xotcl-doc | 1.6.7-2 | - +- all | xpilot-extra | 4.7.2 | - +- all | xpilot-ng | 1:4.7.3-1.4 | - +- all | xpilot-ng-common | 1:4.7.3-1.4 | - +- all | xplanet-images | 1.2.1-4.1 | - +- all | xpn | 1.2.6-5 | - +- all | xracer-tools | 0.96.9.1-6 | - +- all | xrsh | 5.92-8 | - +- all | xsane-common | 0.998-3 | - +- all | xscreensaver-screensaver-dizzy | 0.3-1 | - +- all | xsddiagram | 0.10-1 | - +- all | xserver-common | 2:1.12.4-6+deb7u2 | - +- all | xserver-xorg-input-evdev-dev | 1:2.7.0-1 | - +- all | xserver-xorg-input-joystick-dev | 1:1.6.1-1 | - +- all | xserver-xorg-input-synaptics-dev | 1.6.2-2 | - +- all | xtables-addons-dkms | 1.42-2 | - +- all | xtables-addons-source | 1.42-2 | - +- all | xtalk | 1.3-15.1 | - +- all | xtide-coastline | 20020202-1 | - +- all | xtide-data | 20100529-1 | - +- all | xtitle | 1.0.2-4 | - +- all | xtrans-dev | 1.2.7-1 | - +- all | xtux-common | 0.2.030306-12 | - +- all | xtux-levels | 0.2.030306-12 | - +- all | xul-ext-adblock-plus | 2.1-1+deb7u1 | - +- all | xul-ext-adblock-plus-element-hiding-helper | 1.2.2-1 | - +- all | xul-ext-all-in-one-sidebar | 0.7.16+really-0.7.14-1 | - +- all | xul-ext-autofill-forms | 0.9.8.3-5 | - +- all | xul-ext-automatic-save-folder | 1.0.4-3 | - +- all | xul-ext-certificatepatrol | 2.0.14-3 | - +- all | xul-ext-compactheader | 2.0.5-1 | - +- all | xul-ext-cookie-monster | 1.1.0-5~deb7u1 | - +- all | xul-ext-custom-tab-width | 1.0.1-2 | - +- all | xul-ext-debianbuttons | 1.9-1 | - +- all | xul-ext-dispmua | 1.6.8-1 | - +- all | xul-ext-dom-inspector | 1:2.0.11-1 | - +- all | xul-ext-downthemall | 2.0.13-2 | - +- all | xul-ext-firebug | 1.9.2~b2-1 | - +- all | xul-ext-firecookie | 1.4-1+deb7u1 | - +- all | xul-ext-firegestures | 1.6.16-1 | - +- all | xul-ext-firetray | 0.4.6-1~deb7u1 | - +- all | xul-ext-firexpath | 0.9.7-1 | - +- all | xul-ext-flashblock | 1.5.15-1 | - +- all | xul-ext-flashgot | 1.4.5+dfsg-1 | - +- all | xul-ext-foxyproxy-standard | 3.4-1.1~deb7u1 | - +- all | xul-ext-gcontactsync | 0.3.5-1 | - +- all | xul-ext-googlebookmarks | 1.5-3 | - +- all | xul-ext-greasemonkey | 0.9.20-1 | - ++ all | xul-ext-https-everywhere | - | 3.4.5-1~bpo70+1 ++ all | xul-ext-https-finder | - | 087-2~bpo70+1 +- all | xul-ext-imap-acl | 0.2.2-1 | - +- all | xul-ext-itsalltext | 1.6.4-1 | - +- all | xul-ext-livehttpheaders | 0.17-3 | - +- all | xul-ext-monkeysphere | 0.6.1-1 | - +- all | xul-ext-mozvoikko | 2.0.1-1 | - +! all | xul-ext-noscript | 2.1.4-1 | 2.6.8.4-1~bpo70+1 +- all | xul-ext-nosquint | 2.1.5-1 | - +- all | xul-ext-nostalgy | 0.2.30+svn219-1 | - +- all | xul-ext-openinbrowser | 1.11-6 | - +- all | xul-ext-personasplus | 1.6.2-2 | - +- all | xul-ext-perspectives | 4.3.1-1+deb7u1 | - +- all | xul-ext-pwdhash | 1.7-13 | - +- all | xul-ext-quotecolors | 0.3-3 | - +- all | xul-ext-refcontrol | 0.8.16-2 | - +- all | xul-ext-requestpolicy | 0.5.25-1 | - +- all | xul-ext-sage | 1.4.12-3+deb7u1 | - +- all | xul-ext-scrapbook | 1.5.4-1 | - +- all | xul-ext-searchload-options | 0.6.3-2 | - +- all | xul-ext-sieve | 0.1.14-1 | - +- all | xul-ext-status4evar | 0.2012.04.21.13-1 | - +- all | xul-ext-syncplaces | 4.1.2-2 | - +- all | xul-ext-tabmixplus | 0.4.0.2-1 | - +- all | xul-ext-toggle-proxy | 1.5-2 | - +- all | xul-ext-treestyletab | 0.14.2012050301-1 | - +- all | xul-ext-ubiquity | 0.6.1~pre20111123-1 | - +- all | xul-ext-uppity | 1.5.8-3 | - +- all | xul-ext-useragentswitcher | 0.7.3-1 | - +- all | xul-ext-webdeveloper | 1.1.9-5 | - +- all | xul-ext-wot | 20110704-2 | - +- all | xul-ext-zotero | 3.0.7-1 | - +- all | xutils | 1:7.7+3~deb7u1 | - +- all | xword | 2.0.0~rc2-1 | - +- all | xye-data | 0.12.1+dfsg-4 | - +- all | yabause | 0.9.11.1-1 | - +- all | yabause-common | 0.9.11.1-1 | - +- all | yacas-doc | 1.3.2-1 | - +! all | yade-doc | 0.80.1-2 | 1.05.0-2~bpo70+1 +- all | yafaray-blender2.5-exporter | 0.1.2+really0.1.2~beta5-1 | - +- all | yafaray-exporter | 0.1.2+really0.1.2~beta5-1 | - +- all | yagtd | 0.3.4-1 | - +- all | yahoo2mbox | 0.24-1 | - +- all | yahtzeesharp | 1.1-5 | - +- all | yaml-mode | 0.0.7-1 | - +- all | yample | 0.30-2 | - +- all | yapps2 | 2.1.1-17.2 | - +- all | yapps2-runtime | 2.1.1-17.2 | - +- all | yapra | 0.1.2-7 | - +- all | yard | 0.8.2.1-2 | - +- all | yaret | 2.1.0-5 | - +- all | yarssr | 0.2.2-8 | - +- all | yasat | 526-1 | - +- all | yate-doc | 4.1.0-1~dfsg-3 | - +- all | yatex | 1.76+dfsg1-2 | - +- all | yaws | 1.94-1 | - +- all | yaws-chat | 1.94-1 | - +- all | yaws-doc | 1.94-1 | - +- all | yaws-mail | 1.94-1 | - +- all | yaws-wiki | 1.94-1 | - +- all | yaws-yapp | 1.94-1 | - +- all | yaz-doc | 4.2.30-2 | - +- all | yelp-tools | 3.4.1-1 | - +- all | yelp-xsl | 3.4.2-1 | - +- all | yhsm-docs | 1.0.4-1 | - +- all | yhsm-tools | 1.0.4-1 | - +- all | yhsm-validation-server | 1.0.4-1 | - +- all | yhsm-yubikey-ksm | 1.0.4-1 | - +- all | yocto-reader | 0.9.4 | - +- all | yodl-doc | 3.00.0-6 | - +- all | yokadi | 0.13.0-2 | - +- all | yorick-cubeview | 1.6-2 | - +- all | yorick-data | 2.2.02+dfsg-6 | - +- all | yorick-doc | 2.2.02+dfsg-6 | - +- all | yorick-mira | 0.9.10+dfsg-1 | - +- all | yorick-mpy-common | 2.2.02+dfsg-6 | - +- all | yorick-spydr | 0.8.2-3 | - +- all | yorick-yutils | 1.5.2-1 | - +- all | yoshimi-data | 0.060.12-2 | - +- all | yudit-common | 2.8.1-4 | - +- all | yudit-doc | 2.8.1-4 | - +- all | yui-builder | 1.0.0b1+dfsg-1 | - +- all | yui-compressor | 2.4.7-1 | - +! all | yum | 3.2.25-2 | 3.4.3-2~bpo7+1 ++ all | yum-utils | - | 1.1.31-2~bpo7+1 +- all | yydebug | 1.1.0-2 | - +- all | z88-data | 13.0.0+dfsg2-3 | - +- all | z88-doc | 13.0.0+dfsg2-3 | - +- all | z88dk-data | 1.8.ds1-10 | - +- all | z88dk-doc | 1.8.ds1-10 | - ++ all | zabbix-frontend-php | - | 1:2.0.9+dfsg-1~bpo70+2 +- all | zathura-dev | 0.1.2-4 | - +- all | zaz-data | 1.0.0~dfsg1-1 | - +- all | zec | 0.12-2 | - +- all | zeitgeist | 0.9.0.1-1 | - +- all | zemberek-java-demo | 2.1.1-8.1 | - +- all | zemberek-server | 0.7.1-12.1 | - +- all | zendframework | 1.11.13-1.1 | - +- all | zendframework-bin | 1.11.13-1.1 | - +- all | zendframework-resources | 1.11.13-1.1 | - +- all | zenity-common | 3.4.0-2 | - ++ all | zenmap | - | 6.40-0.1~bpo70+1 +- all | zeroc-ice34 | 3.4.2-8.2 | - +- all | zeroc-icee | 1.2.0-6.1 | - +- all | zeroinstall-injector | 1.9-1 | - +- all | zeya | 0.6-1 | - +- all | zim | 0.56-1 | - +- all | zine | 0.2~20100905-1 | - +- all | zonecheck | 3.0.3-2 | - +- all | zonecheck-cgi | 3.0.3-2 | - +- all | zookeeper | 3.3.5+dfsg1-2 | - +- all | zookeeperd | 3.3.5+dfsg1-2 | - +- all | zoomer | 0.1-1 | - +- all | zope-common | 0.5.52 | - +- all | zope-debhelper | 0.3.15 | - +- all | zope-maildrophost | 2.3-1 | - +- all | zope-mysqlda | 3.1.1-1 | - +- all | zope-quotafolder | 1:0.1.1-1 | - +- all | zope-replacesupport | 1.0.3-6 | - +- all | zope2.12-sandbox | 2.12.26-1 | - +- all | zsh-beta-doc | 4.3.17-dev-0+20120621-1 | - +- all | zsh-doc | 4.3.17-1 | - +- all | zshdb | 0.05+git20101031-2 | - +! amd64 | 0ad | 0~r11863-2 | 0.0.14-3~bpo70+2 +! amd64 | 0ad-dbg | 0~r11863-2 | 0.0.14-3~bpo70+2 +- amd64 | 3dchess | 0.8.1-17 | - +- amd64 | 3depict | 0.0.10-1+b1 | - +- amd64 | 4digits | 1.1.2-1 | - +- amd64 | 4g8 | 1.0-3 | - +- amd64 | 4store | 1.1.4-2 | - +- amd64 | 6tunnel | 0.11rc2-7 | - +- amd64 | 7kaa | 2.14.3-1 | - +- amd64 | 7kaa-dbg | 2.14.3-1 | - +- amd64 | 9base | 1:6-5 | - +- amd64 | 9menu | 1.8-5 | - +- amd64 | 9wm | 1.2-9 | - +- amd64 | a2jmidid | 7+dfsg0-1 | - +- amd64 | a2ps | 1:4.14-1.1 | - +- amd64 | a56 | 1.3-6 | - +- amd64 | a7xpg | 0.11.dfsg1-7 | - +- amd64 | aa3d | 1.0-8 | - +- amd64 | aajm | 0.4-6 | - +- amd64 | aaphoto | 0.41-1.1 | - +- amd64 | abcm2ps | 6.6.17-1 | - +- amd64 | abcmidi | 20070318-2 | - +- amd64 | abcmidi-yaps | 20070318-2 | - +- amd64 | abe | 1.1+dfsg-1 | - +- amd64 | abgate | 1.1.6-1 | - +- amd64 | abinit | 5.3.4.dfsg-3 | - +- amd64 | abiword | 2.9.2+svn20120603-8 | - +- amd64 | abiword-dbg | 2.9.2+svn20120603-8 | - +- amd64 | abiword-plugin-grammar | 2.9.2+svn20120603-8 | - +- amd64 | abiword-plugin-mathview | 2.9.2+svn20120603-8 | - +- amd64 | abook | 0.6.0~pre2-3 | - +- amd64 | abootimg | 0.6-1 | - +- amd64 | abr2gbr | 1:1.0.2-2 | - +- amd64 | abraca | 0.7.0-1 | - +- amd64 | abtransfers | 0.0.3.0-2 | - +- amd64 | accountsservice | 0.6.21-8 | - +- amd64 | acct | 6.5.5-1 | - +- amd64 | ace-gperf | 6.0.3+dfsg-0.1 | - +- amd64 | ace-netsvcs | 6.0.3+dfsg-0.1 | - +- amd64 | ace-of-penguins | 1.3-8 | - +- amd64 | acedb-other | 4.9.39+dfsg.01-5 | - +- amd64 | acedb-other-belvu | 4.9.39+dfsg.01-5 | - +- amd64 | acedb-other-dotter | 4.9.39+dfsg.01-5 | - +- amd64 | aces3 | 3.0.6-7 | - +- amd64 | acetoneiso | 2.3-2 | - +- amd64 | acfax | 981011-14.1 | - +- amd64 | achilles | 2-8 | - +- amd64 | ack | 1.39-12 | - +- amd64 | acl | 2.2.51-8 | - +- amd64 | acl2 | 4.3-3 | - +- amd64 | acl2-books | 4.3-3 | - +- amd64 | acl2-infix | 4.3-3 | - +- amd64 | aclock.app | 0.2.3-4.3 | - +- amd64 | acm | 5.0-28 | - +- amd64 | aconnectgui | 0.9.0rc2-1-9 | - +- amd64 | acorn-fdisk | 3.0.6-8 | - +- amd64 | acoustid-fingerprinter | 0.4-2 | - +- amd64 | acpi | 1.6-1 | - +- amd64 | acpi-fakekey | 0.140-5 | - +- amd64 | acpid | 1:2.0.16-1+deb7u1 | - +- amd64 | acpidump | 20100513-3.1 | - +- amd64 | acpitail | 0.1-4 | - +- amd64 | acpitool | 0.5.1-3 | - +- amd64 | acpitool-dbg | 0.5.1-3 | - +- amd64 | actionaz | 3.4.2-1 | - +- amd64 | adabrowse | 4.0.3-5 | - +- amd64 | adacgi1 | 1.6-17 | - +- amd64 | adacontrol | 1.12r4-3 | - +- amd64 | addresses-goodies-for-gnustep | 0.4.7-1+b5 | - +- amd64 | addressmanager.app | 0.4.7-1+b5 | - +- amd64 | adjtimex | 1.29-2.2 | - +- amd64 | admesh | 0.95-12 | - +- amd64 | adns-tools | 1.4-2 | - +- amd64 | adonthell | 0.3.5-7.1 | - +- amd64 | adplay | 1.6-1.1 | - +- amd64 | adplug-utils | 2.2.1+dfsg3-0.1 | - +- amd64 | adun.app | 0.81-5+b2 | - +- amd64 | advancecomp | 1.15-1 | - +- amd64 | advi | 1.10.2-1 | - +- amd64 | aegis | 4.24.3-3 | - +- amd64 | aegis-web | 4.24.3-3 | - +- amd64 | aegisub | 2.1.9-1 | - +- amd64 | aeolus | 0.8.4-6 | - +- amd64 | aes2501-wy | 0.1-5 | - +- amd64 | aesfix | 1.0.1-2 | - +- amd64 | aeskeyfind | 1:1.0-1 | - +- amd64 | aeskulap | 0.2.2b1-11 | - +- amd64 | aespipe | 2.4c-1 | - +- amd64 | aewan | 1.0.01-3 | - +- amd64 | aewm | 1.3.12-2.1 | - +- amd64 | aewm++ | 1.1.2-5 | - +- amd64 | aewm++-goodies | 1.0-9 | - +- amd64 | affiche.app | 0.6.0-8+b2 | - +- amd64 | afflib-dbg | 3.6.6-1.1 | - +- amd64 | afflib-tools | 3.6.6-1.1 | - +- amd64 | afnix | 2.2.0-2 | - +- amd64 | afterstep | 2.2.11-7 | - +- amd64 | afterstep-dbg | 2.2.11-7 | - +- amd64 | afuse | 0.2-3+b1 | - +- amd64 | agave | 0.4.7-2.1+b1 | - +- amd64 | agda-bin | 2.3.0.1-1 | - +- amd64 | agedu | 8928-1 | - +- amd64 | agenda.app | 0.42.2-1 | - +- amd64 | aggregate | 1.6-7 | - +- amd64 | aghermann | 0.6.0.1-1 | - +- amd64 | aha | 0.4.4-1 | - +- amd64 | ahcpd | 0.53-1 | - +- amd64 | ahven-dbg | 2.1-4 | - +- amd64 | aiccu | 20070115-15.1 | - +- amd64 | aide | 0.15.1-8 | - +- amd64 | aide-dynamic | 0.15.1-8 | - +- amd64 | aide-xen | 0.15.1-8 | - +- amd64 | aiksaurus | 1.2.1+dev-0.12-6.1 | - ++ amd64 | aircrack-ng | - | 1:1.1-6~bpo70+1 +- amd64 | airstrike | 0.99+1.0pre6a-5 | - +- amd64 | aisleriot | 1:3.4.1-1 | - +- amd64 | aj-snapshot | 0.9.6-1 | - +- amd64 | akonadi-backend-sqlite | 1.7.2-3 | - +- amd64 | akonadi-dbg | 1.7.2-3 | - +- amd64 | akonadi-kde-resource-googledata | 1.2.0-1+b2 | - +- amd64 | akonadi-server | 1.7.2-3 | - +- amd64 | akonadiconsole | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | akregator | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | alarm-clock | 1.2.5-1.2 | - +- amd64 | alarm-clock-applet | 0.3.3-1 | - +- amd64 | aldo | 0.7.6-1 | - +- amd64 | ale | 0.9.0.3-1.1 | - +- amd64 | alevt | 1:1.6.2-5 | - +- amd64 | alevtd | 3.102-3 | - +- amd64 | alex | 3.0.1-1 | - +- amd64 | alex4 | 1.1-5+b1 | - ++ amd64 | algobox | - | 0.8+dfsg-2~bpo70+1 +- amd64 | algol68g | 2.4.1-1 | - +- amd64 | alienblaster | 1.1.0-7 | - +- amd64 | aliki | 0.1.0-1 | - +- amd64 | aliki-dbg | 0.1.0-1 | - +- amd64 | alleyoop | 0.9.8-1 | - +- amd64 | alliance | 5.0-20120515-1 | - +- amd64 | alltray | 0.71b-1 | - +- amd64 | almanah | 0.9.1-1 | - +- amd64 | alpine | 2.02+dfsg-2 | - +- amd64 | alpine-dbg | 2.02+dfsg-2 | - +- amd64 | alpine-pico | 2.02+dfsg-2 | - +- amd64 | alsa-oss | 1.0.25-1 | - +- amd64 | alsa-tools | 1.0.25-2 | - +- amd64 | alsa-tools-gui | 1.0.25-2 | - +- amd64 | alsa-utils | 1.0.25-4 | - +- amd64 | alsamixergui | 0.9.0rc2-1-9.1 | - +- amd64 | alsaplayer-alsa | 0.99.80-5.1 | - +- amd64 | alsaplayer-common | 0.99.80-5.1 | - +- amd64 | alsaplayer-daemon | 0.99.80-5.1 | - +- amd64 | alsaplayer-esd | 0.99.80-5.1 | - +- amd64 | alsaplayer-gtk | 0.99.80-5.1 | - +- amd64 | alsaplayer-jack | 0.99.80-5.1 | - +- amd64 | alsaplayer-nas | 0.99.80-5.1 | - +- amd64 | alsaplayer-oss | 0.99.80-5.1 | - +- amd64 | alsaplayer-text | 0.99.80-5.1 | - +- amd64 | alsaplayer-xosd | 0.99.80-5.1 | - +- amd64 | alsoft-conf | 1.4.3-1 | - +- amd64 | alt-ergo | 0.94-2 | - +- amd64 | alt-key | 2.2.5-1 | - +- amd64 | altermime | 0.3.10-7 | - +- amd64 | altree | 1.2.1-1 | - +- amd64 | alure-utils | 1.2-6 | - +- amd64 | am-utils | 6.2+rc20110530-3 | - +- amd64 | amanda-client | 1:3.3.1-4 | - +- amd64 | amanda-common | 1:3.3.1-4 | - +- amd64 | amanda-server | 1:3.3.1-4 | - +- amd64 | amap-align | 2.2-3 | - +! amd64 | amarok | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amarok-dbg | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amarok-utils | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +- amd64 | amavisd-milter | 1.5.0-5 | - +- amd64 | amavisd-milter-dbg | 1.5.0-5 | - +- amd64 | amb-plugins | 0.8.1-3 | - +- amd64 | ambdec | 0.5.1-2 | - ++ amd64 | amd-clinfo | - | 1:13.12-4~bpo70+1 ++ amd64 | amd-libopencl1 | - | 1:13.12-4~bpo70+1 ++ amd64 | amd-opencl-dev | - | 1:13.12-4~bpo70+1 ++ amd64 | amd-opencl-icd | - | 1:13.12-4~bpo70+1 ++ amd64 | amd-opencl-icd-legacy | - | 8.97.100.7-3~bpo70+1 ++ amd64 | amd64-microcode | - | 2.20120910-1~bpo70+1 +- amd64 | amide | 1.0.1-1 | - +- amd64 | amideco | 0.31e-3.1 | - +- amd64 | amiga-fdisk-cross | 0.04-14 | - +- amd64 | amoebax | 0.2.1+dfsg-1 | - +- amd64 | amor | 4:4.8.4-1 | - +- amd64 | amora-applet | 1.2~svn699-1 | - +- amd64 | amora-cli | 1.2~svn699-1 | - +- amd64 | amphetamine | 0.8.10-18 | - +- amd64 | ample | 0.5.7-7 | - +- amd64 | ampliconnoise | 1.25-1 | - +- amd64 | amqp-tools | 0.0.1.hg216-1 | - +- amd64 | ams | 2.0.1-5 | - +- amd64 | amsynth | 1.3.0-2 | - +- amd64 | amtterm | 1.3-1 | - +- amd64 | amule | 2.3.1-9 | - +- amd64 | amule-daemon | 2.3.1-9 | - +- amd64 | amule-emc | 0.5.2-2 | - +- amd64 | amule-utils | 2.3.1-9 | - +- amd64 | amule-utils-gui | 2.3.1-9 | - +- amd64 | an | 1.0-2 | - +- amd64 | anacron | 2.3-19 | - +- amd64 | analog | 2:6.0-19.1 | - +- amd64 | and | 1.2.2-4.1 | - ++ amd64 | android-tools-adb | - | 4.2.2+git20130529-3~bpo70+1 ++ amd64 | android-tools-fastboot | - | 4.2.2+git20130529-3~bpo70+1 ++ amd64 | android-tools-fsutils | - | 4.2.2+git20130529-3~bpo70+1 +- amd64 | angband | 1:3.3.2-2.1 | - +- amd64 | animals | 201007161925-8 | - +- amd64 | animals-dbg | 201007161925-8 | - +- amd64 | anjuta | 2:3.4.3-1 | - +- amd64 | anjuta-dbg | 2:3.4.3-1 | - +- amd64 | anjuta-extras | 3.4.0-1 | - +- amd64 | ann-tools | 1.1.2+doc-3 | - +- amd64 | anon-proxy | 00.05.38+20081230-2.1 | - +- amd64 | ant-gcj | 1.8.2-4 | - +- amd64 | ant-optional-gcj | 1.8.2-4 | - +- amd64 | ant-phone | 0.2.1-2 | - +- amd64 | antennavis | 0.3.1-2 | - +- amd64 | anthy | 9100h-16 | - +- amd64 | antigravitaattori | 0.0.3-5 | - +- amd64 | antiword | 0.37-8 | - +- amd64 | ants | 1.9.2+svn680.dfsg-4 | - +- amd64 | anubis | 4.1.1+dfsg1-3.1 | - +- amd64 | anypaper | 1.4-1 | - +- amd64 | anyremote | 6.0+dfsg-1 | - +- amd64 | anytun | 0.3.4-2 | - +- amd64 | aoetools | 30-3 | - +- amd64 | aoeui | 1.6~dfsg-2 | - +- amd64 | aolserver4-core | 4.5.1-15.1 | - +- amd64 | aolserver4-daemon | 4.5.1-15.1 | - +- amd64 | aolserver4-dev | 4.5.1-15.1 | - +- amd64 | aolserver4-nsldap | 0.8-4+b1 | - +- amd64 | aolserver4-nsmysql | 0.6-9+b3 | - +- amd64 | aolserver4-nsopenssl | 3.0beta26-4+b1 | - +- amd64 | aolserver4-nspostgres | 4.5-3+b1 | - +- amd64 | aolserver4-nssha1 | 0.1-3+b1 | - +- amd64 | aolserver4-nssqlite3 | 0.9-2+b1 | - +- amd64 | aolserver4-nsxml | 1.5-2.1 | - +- amd64 | aosd-cat | 0.2.7-1 | - +- amd64 | ap-utils | 1.5-2 | - +- amd64 | apache2 | 2.2.22-13+deb7u1 | - +- amd64 | apache2-dbg | 2.2.22-13+deb7u1 | - +- amd64 | apache2-mpm-event | 2.2.22-13+deb7u1 | - +- amd64 | apache2-mpm-itk | 2.2.22-13+deb7u1 | - +- amd64 | apache2-mpm-prefork | 2.2.22-13+deb7u1 | - +- amd64 | apache2-mpm-worker | 2.2.22-13+deb7u1 | - +- amd64 | apache2-prefork-dev | 2.2.22-13+deb7u1 | - +- amd64 | apache2-suexec | 2.2.22-13+deb7u1 | - +- amd64 | apache2-suexec-custom | 2.2.22-13+deb7u1 | - +- amd64 | apache2-threaded-dev | 2.2.22-13+deb7u1 | - +- amd64 | apache2-utils | 2.2.22-13+deb7u1 | - +- amd64 | apache2.2-bin | 2.2.22-13+deb7u1 | - +- amd64 | apache2.2-common | 2.2.22-13+deb7u1 | - +- amd64 | apachetop | 0.12.6-16 | - +- amd64 | apbs | 1.3.0-2 | - +- amd64 | apcalc | 2.12.4.4-3 | - +- amd64 | apcalc-dev | 2.12.4.4-3 | - +- amd64 | apcupsd | 3.14.10-2 | - +- amd64 | apcupsd-cgi | 3.14.10-2 | - +- amd64 | apertium | 3.1.0-2 | - +- amd64 | apertium-dbus | 0.1-1.1 | - +- amd64 | apertium-en-ca | 0.8.9-1+b1 | - +- amd64 | apertium-en-es | 0.6.0-1.1+b1 | - +- amd64 | apertium-eo-ca | 0.9.0-1.1+b1 | - +- amd64 | apertium-eo-es | 0.9.0-1.1+b1 | - +- amd64 | apertium-es-ca | 1.1.0-1 | - +- amd64 | apertium-es-gl | 1.0.7-1 | - +- amd64 | apertium-es-pt | 1.0.3-2.1 | - +- amd64 | apertium-es-ro | 0.7.1-2.1 | - +- amd64 | apertium-eu-es | 0.3.1-1+b1 | - +- amd64 | apertium-fr-ca | 1.0.2-1 | - +- amd64 | apertium-fr-es | 0.9.0-1+b1 | - +- amd64 | apertium-oc-ca | 1.0.5-1.1+b1 | - +- amd64 | apertium-oc-es | 1.0.5-1.1+b1 | - +- amd64 | apertium-pt-ca | 0.8.1-1 | - +- amd64 | apertium-pt-gl | 0.9.1-1 | - +- amd64 | apertium-tolk | 0.2-2.2 | - +- amd64 | apf-client | 0.8.4-1+b1 | - +- amd64 | apf-server | 0.8.4-1+b1 | - +- amd64 | apg | 2.2.3.dfsg.1-2 | - +- amd64 | aplus-fsf | 4.22.1-6 | - +- amd64 | aplus-fsf-dev | 4.22.1-6 | - +- amd64 | apmd | 3.2.2-14 | - +- amd64 | apng2gif | 1.5-1 | - +- amd64 | apparix | 07-261-1 | - +- amd64 | apparmor | 2.7.103-4 | - +- amd64 | apparmor-utils | 2.7.103-4 | - +- amd64 | apper | 0.7.2-5 | - +- amd64 | apper-appsetup | 0.7.2-5 | - +- amd64 | apper-dbg | 0.7.2-5 | - +- amd64 | appmenu-qt | 0.2.6-1 | - +- amd64 | approx | 5.3-1 | - +- amd64 | aprsd | 1:2.2.5-13-5.2 | - +- amd64 | aprsdigi | 2.4.4-3.2 | - +- amd64 | apt | 0.9.7.9+deb7u1 | - +- amd64 | apt-build | 0.12.44 | - +! amd64 | apt-cacher-ng | 0.7.11-1 | 0.7.25-1~bpo70+1 +- amd64 | apt-cudf | 3.0.2-3 | - +- amd64 | apt-dater | 0.9.0-3+wheezy1 | - +- amd64 | apt-dater-dbg | 0.9.0-3+wheezy1 | - +- amd64 | apt-move | 4.2.27-3 | - +- amd64 | apt-spy | 3.2.2-1 | - +- amd64 | apt-transport-debtorrent | 0.2.2+b1 | - +- amd64 | apt-transport-https | 0.9.7.9+deb7u1 | - +- amd64 | apt-utils | 0.9.7.9+deb7u1 | - +- amd64 | apt-watch-backend | 0.4.0-2.1 | - +- amd64 | apt-watch-gnome | 0.4.0-2.1 | - +- amd64 | aptitude | 0.6.8.2-1 | - +- amd64 | aptitude-dbg | 0.6.8.2-1 | - +- amd64 | aptsh | 0.0.7+nmu2+b1 | - +- amd64 | apvlv | 0.1.1-1.2+b1 | - +- amd64 | apwal | 0.4.5-1 | - +! amd64 | aqbanking-tools | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +- amd64 | aqemu | 0.8.2-2 | - +- amd64 | aqsis | 1.8.1-3 | - +- amd64 | aqualung | 0.9~beta11-1.2+b1 | - +- amd64 | ara | 1.0.31 | - +- amd64 | aranym | 0.9.13-6 | - +- amd64 | arbtt | 0.6.2-1 | - +- amd64 | arc | 5.21p-1 | - +- amd64 | archivemount | 0.6.1-2+b1 | - +- amd64 | ardesia | 1.0-2 | - +- amd64 | ardour | 1:2.8.14-2 | - +- amd64 | argus-client | 2.0.6.fixes.1-3 | - +- amd64 | argus-server | 1:2.0.6.fixes.1-16.3 | - +- amd64 | argyll | 1.4.0-8 | - +- amd64 | argyll-dbg | 1.4.0-8 | - +- amd64 | aria2 | 1.15.1-1 | - +- amd64 | aribas | 1.64-5 | - +- amd64 | ario | 1.5.1-1+b1 | - +- amd64 | arj | 3.10.22-10 | - +- amd64 | ark | 4:4.8.4-2 | - +- amd64 | ark-dbg | 4:4.8.4-2 | - +- amd64 | armada-backlight | 1.1-6 | - +- amd64 | armagetronad | 0.2.8.3.2-1 | - +- amd64 | armagetronad-dedicated | 0.2.8.3.2-1 | - +- amd64 | arora | 0.11.0-1 | - +- amd64 | arp-scan | 1.8.1-2 | - +- amd64 | arpalert | 2.0.11-7.1 | - +- amd64 | arping | 2.11-1 | - +- amd64 | arpon | 2.0-2.1 | - +- amd64 | arptables | 0.0.3.4-1 | - +- amd64 | arpwatch | 2.1a15-1.2 | - +- amd64 | array-info | 0.15-1 | - +- amd64 | artha | 1.0.2-1 | - +- amd64 | as31 | 2.3.1-6 | - +- amd64 | asc | 2.4.0.0-3 | - +- amd64 | ascd | 0.13.2-5 | - +- amd64 | ascdc | 0.3-14 | - +- amd64 | ascii | 3.11-1 | - +- amd64 | ascii2binary | 2.14-1 | - +- amd64 | asciijump | 1.0.2~beta-6 | - +- amd64 | asclock | 2.0.12-23 | - +- amd64 | asis-programs | 2010-5 | - +- amd64 | asmail | 2.1-3 | - +- amd64 | asmix | 1.5-4.1 | - +- amd64 | asmixer | 0.5-14 | - +- amd64 | asmon | 0.71-5 | - +- amd64 | asp | 1.8-8 | - +- amd64 | aspcud | 2011.03.17.dfsg-6 | - +- amd64 | aspectc++ | 1:1.1+svn20120529-2 | - +- amd64 | aspell | 0.60.7~20110707-1 | - +- amd64 | aspell-da | 1.6.25-1.1 | - +- amd64 | aspell-fi | 0.7-18 | - +- amd64 | aspell-no | 2.0.10-5.1 | - +- amd64 | aspic | 1.05-4 | - +- amd64 | assimp-utils | 3.0~dfsg-1 | - +- amd64 | assogiate | 0.2.1-5 | - +! amd64 | asterisk | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-dahdi | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-dbg | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +- amd64 | asterisk-espeak | 2.1-1+b1 | - +- amd64 | asterisk-flite | 2.1-1.1 | - +! amd64 | asterisk-mobile | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-modules | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mp3 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mysql | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-ooh323 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail-imapstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail-odbcstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 ++ amd64 | asterisk-vpb | - | 1:11.7.0~dfsg-1~bpo70+1 ++ amd64 | astromenace | - | 1.3.2+repack-3~bpo70+1 +- amd64 | astronomical-almanac | 5.6-4 | - +- amd64 | astyle | 2.01-1 | - +- amd64 | asunder | 2.2-1 | - +- amd64 | asylum | 0.3.2-1 | - +- amd64 | asymptote | 2.15-2 | - +- amd64 | at | 3.1.13-2 | - +- amd64 | at-spi | 1.32.0-2 | - +- amd64 | at-spi2-core | 2.5.3-2 | - +- amd64 | at-spi2-core-dbg | 2.5.3-2 | - +- amd64 | atanks | 5.5+dfsg-0.1 | - +- amd64 | aterm | 1.0.1-8 | - +- amd64 | aterm-ml | 1.0.1-8 | - +- amd64 | atfs | 1.4pl6-11 | - +- amd64 | atfs-dev | 1.4pl6-11 | - +- amd64 | atftp | 0.7.dfsg-11 | - +- amd64 | atftpd | 0.7.dfsg-11 | - +- amd64 | athena-jot | 9.0-5 | - +- amd64 | atlc | 4.6.1-1 | - +- amd64 | atm-tools | 1:2.5.1-1.5 | - +- amd64 | atom4 | 4.1-5.1 | - +- amd64 | atomicparsley | 0.9.2~svn110-4 | - +- amd64 | atomix | 2.14.0-2 | - +- amd64 | atop | 1.26-2 | - +- amd64 | atp | 1.2-11 | - +- amd64 | atris | 1.0.7.dfsg.1-8 | - +- amd64 | ats-lang-anairiats | 0.2.3-1+b3 | - +- amd64 | atsar | 1.7-2 | - +- amd64 | attal | 1.0~rc2-2 | - +- amd64 | attr | 1:2.4.46-8 | - +- amd64 | aubio-tools | 0.3.2-4.2+b1 | - +- amd64 | audacious | 3.2.4-1 | - +- amd64 | audacious-dbg | 3.2.4-1 | - +- amd64 | audacious-dev | 3.2.4-1 | - +- amd64 | audacious-dumb | 0.80-1 | - +- amd64 | audacious-plugins | 3.2.4-1 | - +- amd64 | audacious-plugins-dbg | 3.2.4-1 | - +- amd64 | audacity | 2.0.1-1 | - +- amd64 | audacity-dbg | 2.0.1-1 | - +- amd64 | audex | 0.74~b1-1.1 | - +- amd64 | audiofile-tools | 0.3.4-2 | - +- amd64 | audiopreview | 0.6-2 | - +- amd64 | audispd-plugins | 1:1.7.18-1.1 | - +- amd64 | auditd | 1:1.7.18-1.1 | - +- amd64 | audtty | 0.1.12-3 | - +- amd64 | aufs-tools | 1:3.0+20120411-2 | - +- amd64 | aufs-tools-dbg | 1:3.0+20120411-2 | - +- amd64 | augeas-dbg | 0.10.0-1 | - +- amd64 | augeas-tools | 0.10.0-1 | - +- amd64 | aumix | 2.9.1-2 | - +- amd64 | aumix-gtk | 2.9.1-2 | - +- amd64 | auralquiz | 0.8.1-1 | - +- amd64 | authbind | 2.1.1 | - +- amd64 | auto-apt | 0.3.22 | - +- amd64 | auto-multiple-choice | 1.1.1-2 | - +- amd64 | autoclass | 3.3.6.dfsg.1-1 | - +- amd64 | autocutsel | 0.9.0-2 | - +- amd64 | autodir | 0.99.9-7.1 | - +- amd64 | autodock | 4.2.3-2 | - +- amd64 | autodock-vina | 1.1.2-2+b1 | - +- amd64 | autofs | 5.0.7-3 | - +- amd64 | autofs-hesiod | 5.0.7-3 | - +- amd64 | autofs-ldap | 5.0.7-3 | - +- amd64 | autogen | 1:5.12-0.1 | - +- amd64 | autogrid | 4.2.3-2 | - +- amd64 | autolog | 0.40-13.1 | - +- amd64 | automoc | 1.0~version-0.9.88-5 | - +- amd64 | autorun4linuxcd | 0.13 | - +- amd64 | autossh | 1.4c-1 | - +- amd64 | autotalent | 0.2-2 | - +- amd64 | autotrace | 0.31.1-16+b1 | - +- amd64 | avahi-autoipd | 0.6.31-2 | - +- amd64 | avahi-daemon | 0.6.31-2 | - +- amd64 | avahi-dbg | 0.6.31-2 | - +- amd64 | avahi-dnsconfd | 0.6.31-2 | - +- amd64 | avahi-ui-utils | 0.6.31-2 | - +- amd64 | avahi-utils | 0.6.31-2 | - +- amd64 | avarice | 2.11-1 | - +- amd64 | avce00 | 2.0.0-2 | - +- amd64 | avfs | 1.0.0-4 | - +- amd64 | aview | 1.3.0rc1-9 | - +- amd64 | avinfo | 1.0.a15+20090102-1 | - +- amd64 | avogadro | 1.0.3-5 | - +- amd64 | avr-evtd | 1.7.7-2 | - +- amd64 | avra | 1.2.3a-1 | - +- amd64 | avrdude | 5.11.1-1 | - +- amd64 | avrp | 1.0beta3-7 | - +- amd64 | avrprog | 0.2.2-2 | - +- amd64 | awardeco | 0.2-3.1 | - +- amd64 | away | 0.9.5-3 | - +- amd64 | aweather | 0.7-1 | - +- amd64 | awesfx | 0.5.1a-1.1 | - +- amd64 | awesome | 3.4.13-1 | - +- amd64 | awffull | 3.10.2-1 | - +- amd64 | ax25-node | 0.3.2-7.4 | - +- amd64 | ax25-tools | 0.0.10-rc2+cvs20120204-3 | - +- amd64 | ax25-xtools | 0.0.10-rc2+cvs20120204-3 | - +- amd64 | axel | 2.4-1 | - +- amd64 | axel-dbg | 2.4-1 | - +- amd64 | axiom | 20120501-1 | - +- amd64 | axiom-graphics | 20120501-1 | - +- amd64 | axiom-hypertex | 20120501-1 | - +- amd64 | aylet | 0.5-3 | - +- amd64 | aylet-gtk | 0.5-3 | - +- amd64 | ayttm | 0.6.3-3 | - +- amd64 | azr3-jack | 1.2.3-1 | - +- amd64 | babeld | 1.3.1-1 | - +- amd64 | backuppc | 3.2.1-4 | - +- amd64 | bacula-common | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-mysql | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-mysql-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-pgsql | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-pgsql-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-sqlite3 | 5.2.6+dfsg-9 | - +- amd64 | bacula-common-sqlite3-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-console | 5.2.6+dfsg-9 | - +- amd64 | bacula-console-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-console-qt | 5.2.6+dfsg-9 | - +- amd64 | bacula-console-qt-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-common | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-common-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-mysql | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-mysql-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-pgsql | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-pgsql-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-sqlite3 | 5.2.6+dfsg-9 | - +- amd64 | bacula-director-sqlite3-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-fd | 5.2.6+dfsg-9 | - +- amd64 | bacula-fd-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-mysql | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-mysql-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-pgsql | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-pgsql-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-sqlite3 | 5.2.6+dfsg-9 | - +- amd64 | bacula-sd-sqlite3-dbg | 5.2.6+dfsg-9 | - +- amd64 | bacula-traymonitor | 5.2.6+dfsg-9 | - +- amd64 | bacula-traymonitor-dbg | 5.2.6+dfsg-9 | - +- amd64 | balance | 3.42-1 | - +- amd64 | balder2d | 1.0-1.1+b3 | - +- amd64 | ballview | 1.4.1+20111206-4 | - +- amd64 | ballview-dbg | 1.4.1+20111206-4 | - +- amd64 | ballz | 1.0.2-1+b1 | - +- amd64 | ballz-dbg | 1.0.2-1+b1 | - +- amd64 | balsa | 2.4.12-1 | - +- amd64 | balsa-dbg | 2.4.12-1 | - +- amd64 | bam | 0.4.0-3 | - +- amd64 | bamf-dbg | 0.2.118-1 | - +- amd64 | bamfdaemon | 0.2.118-1 | - +- amd64 | bandwidthcalc | 0.2-1 | - +- amd64 | bandwidthd | 2.0.1+cvs20090917-5 | - +- amd64 | bandwidthd-pgsql | 2.0.1+cvs20090917-5 | - +- amd64 | bangarang | 2.1-2 | - +- amd64 | banshee | 2.4.1-3+b1 | - +- amd64 | banshee-dbg | 2.4.1-3+b1 | - +- amd64 | banshee-extension-lastfmfingerprint | 2.4.0-1 | - +- amd64 | banshee-extension-lirc | 2.4.0-1 | - +- amd64 | banshee-extension-mirage | 2.4.0-1 | - +- amd64 | banshee-meego | 2.4.1-3+b1 | - +- amd64 | baobab | 3.4.1-1 | - +- amd64 | bar | 1.11.0+debian-4 | - +- amd64 | barcode | 0.98+debian-9 | - +- amd64 | barcode-dbg | 0.98+debian-9 | - +- amd64 | bareftp | 0.3.9-1+b1 | - +- amd64 | barnowl | 1.6.2-1.1+b1 | - +- amd64 | barrage | 1.0.3-1 | - +- amd64 | barry-util | 0.18.3-5 | - +- amd64 | barry-util-dbg | 0.18.3-5 | - +- amd64 | barrybackup-gui | 0.18.3-5 | - +- amd64 | barrybackup-gui-dbg | 0.18.3-5 | - +- amd64 | barrydesktop | 0.18.3-5 | - +- amd64 | barrydesktop-dbg | 0.18.3-5 | - +- amd64 | base-files | 7.1wheezy4 | - +- amd64 | base-passwd | 3.5.26 | - +- amd64 | bash | 4.2+dfsg-0.1 | - +- amd64 | bash-builtins | 4.2+dfsg-0.1 | - +- amd64 | bash-static | 4.2+dfsg-0.1 | - +- amd64 | basic256 | 0.9.6.69a-1 | - +- amd64 | basket | 1.81-3 | - +- amd64 | bastet | 0.43-2.1+b1 | - +- amd64 | batctl | 2012.1.0-1 | - +- amd64 | batctl-dbg | 2012.1.0-1 | - +- amd64 | batmand | 0.3.2-12 | - +- amd64 | batmand-dbg | 0.3.2-12 | - +- amd64 | batmon.app | 0.6-1 | - +- amd64 | battery-stats | 0.3.6-1 | - +- amd64 | battleball | 2.0-17 | - +- amd64 | baycomepp | 0.10-12.2 | - +- amd64 | baycomusb | 0.10-12.1 | - +- amd64 | bb | 1.3rc1-8.1 | - +- amd64 | bbe | 0.2.2-1 | - +- amd64 | bbmail | 0.8.3-6 | - +- amd64 | bbpager | 0.4.7-3 | - +- amd64 | bbrun | 1.6-6 | - ++ amd64 | bbswitch-dkms | - | 0.7-1~bpo70+1 +- amd64 | bbtime | 0.1.5-12 | - +- amd64 | bc | 1.06.95-2+b1 | - +- amd64 | bcc | 0.16.17-3.1 | - +- amd64 | bchunk | 1.2.0-12 | - +- amd64 | bcpp | 0.0.20050725-2 | - +- amd64 | bcrelay | 1.3.4-5.2 | - +- amd64 | bcron | 0.09-13 | - +- amd64 | bdfresize | 1.5-6 | - +- amd64 | beanstalkd | 1.4.6-5 | - +- amd64 | bear-factory | 0.6.0-1+b1 | - +- amd64 | beast | 0.7.4-5 | - +- amd64 | beav | 1:1.40-18 | - +- amd64 | bedtools | 2.16.1-1 | - +- amd64 | beef | 0.0.6-2 | - +- amd64 | beep | 1.3-3+b1 | - +- amd64 | berusky | 1.4-1 | - +- amd64 | betaradio | 1.4-1 | - +- amd64 | between | 6+dfsg1-2 | - +- amd64 | bfbtester | 2.0.1-7.1 | - +- amd64 | bibclean | 2.11.4.1-4 | - +- amd64 | bibcursed | 2.0.0-6 | - +- amd64 | bible-kjv | 4.26 | - +- amd64 | bibledit-bibletime | 1.1.1-1 | - +- amd64 | bibledit-gtk | 4.6-1 | - +- amd64 | bibledit-xiphos | 1.1.1-1 | - +- amd64 | bibletime | 2.9.1-2 | - +- amd64 | bibtexconv | 0.8.20-1 | - +- amd64 | bibtool | 2.55+ds-1 | - +- amd64 | bibutils | 4.12-5 | - +- amd64 | bidentd | 1.1.4-1.1 | - +- amd64 | bidiv | 1.5-4 | - +- amd64 | biff | 1:0.17.pre20000412-5 | - ++ amd64 | bilibop | - | 0.4.20~bpo70+1 ++ amd64 | bilibop-common | - | 0.4.20~bpo70+1 ++ amd64 | bilibop-lockfs | - | 0.4.20~bpo70+1 ++ amd64 | bilibop-rules | - | 0.4.20~bpo70+1 ++ amd64 | bilibop-udev | - | 0.4.20~bpo70+1 +- amd64 | billard-gl | 1.75-11 | - +- amd64 | biloba | 0.9.3-4 | - +- amd64 | bin86 | 0.16.17-3.1 | - +- amd64 | binclock | 1.5-6 | - +- amd64 | bind9 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | bind9-host | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | bind9utils | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | bindfs | 1.10.3-2 | - +- amd64 | binfmt-support | 2.0.12 | - +- amd64 | binfmtc | 0.17-1 | - +- amd64 | bing | 1.1.3-2 | - +- amd64 | biniax2 | 1.30-1 | - +- amd64 | binkd | 0.9.11-1.1 | - +- amd64 | bino | 1.4.0-1 | - +- amd64 | bino-dbg | 1.4.0-1 | - +- amd64 | binutils | 2.22-8 | - +- amd64 | binutils-avr | 2.20.1-3 | - +- amd64 | binutils-dev | 2.22-8 | - +- amd64 | binutils-gold | 2.22-8 | - +- amd64 | binutils-h8300-hms | 2.16.1-8 | - +- amd64 | binutils-m68hc1x | 1:2.18-3.2 | - +- amd64 | binutils-mingw-w64-i686 | 2.22-8+2+b1 | - +- amd64 | binutils-mingw-w64-x86-64 | 2.22-8+2+b1 | - +- amd64 | binutils-msp430 | 2.22~msp20120406-2 | - +- amd64 | binutils-multiarch | 2.22-8 | - +- amd64 | binutils-z80 | 2.22-3+b1 | - +- amd64 | biosig-tools | 1.3.0-2 | - +- amd64 | biosquid | 1.9g+cvs20050121-2 | - +- amd64 | biosquid-dev | 1.9g+cvs20050121-2 | - +! amd64 | bip | 0.8.8-2 | 0.8.9-1~bpo70+1 ++ amd64 | bip-dbg | - | 0.8.9-1~bpo70+1 +! amd64 | bird | 1.3.7-1 | 1.4.0-1~bpo70+1 ++ amd64 | bird-bgp | - | 1.4.0-1~bpo70+1 ++ amd64 | bird-bgp-dbg | - | 1.4.0-1~bpo70+1 +! amd64 | bird-dbg | 1.3.7-1 | 1.4.0-1~bpo70+1 +- amd64 | bird6 | 1.3.7-1 | - +- amd64 | birthday | 1.6.2-3 | - +- amd64 | bisho | 0.27.2+git20111122.9e68ef3d-1 | - +- amd64 | bison | 1:2.5.dfsg-2.1 | - +- amd64 | bison++ | 1.21.11-3 | - +- amd64 | bisonc++ | 4.01.00-1 | - +- amd64 | bist | 0.5.2-1 | - +- amd64 | bitlbee | 3.0.5-1.2 | - +- amd64 | bitlbee-libpurple | 3.0.5-1.2 | - +- amd64 | bitlbee-plugin-otr | 3.0.5-1.2 | - +- amd64 | bitmeter | 1.2-3 | - +- amd64 | bitpim-lib | 1.0.7+dfsg1-3 | - +- amd64 | bitstormlite | 0.2q-3 | - ++ amd64 | bittwist | - | 2.0-3~bpo70+1 +- amd64 | bkhive | 1.1.1-1 | - +- amd64 | black-box | 1.4.8-2 | - +- amd64 | blackbox | 0.70.1-13 | - +- amd64 | blacs-mpi-test | 1.1-31 | - +- amd64 | blacs-pvm-dev | 1.1-21 | - +- amd64 | blacs-pvm-test | 1.1-21 | - +- amd64 | blacs1-pvm | 1.1-21 | - ++ amd64 | bladerf-host | - | 0.9.0.15.8ba2499-1~bpo70+1 +- amd64 | blahtexml | 0.9-1.1 | - +- amd64 | blast2 | 1:2.2.26.20120620-2 | - +- amd64 | blcr-testsuite | 0.8.5-2 | - +- amd64 | blcr-util | 0.8.5-2 | - +- amd64 | bld | 0.3.4.1-4 | - +- amd64 | bld-postfix | 0.3.4.1-4 | - +- amd64 | bld-tools | 0.3.4.1-4 | - +- amd64 | blender | 2.63a-1 | - +- amd64 | blender-dbg | 2.63a-1 | - +- amd64 | blepvco | 0.1.0-3 | - +- amd64 | blinken | 4:4.8.4-1 | - +- amd64 | bliss | 0.72-4 | - +- amd64 | blktap-dev | 2.0.90-1 | - +- amd64 | blktap-dkms | 2.0.91-1 | - +- amd64 | blktap-utils | 2.0.90-1 | - +- amd64 | blktool | 4-6.1 | - +- amd64 | blktrace | 1.0.1-2.1 | - +- amd64 | blobandconquer | 1.11-dfsg+20-1 | - +- amd64 | blobby | 1.0~rc1-2 | - +- amd64 | blobby-server | 1.0~rc1-2 | - +- amd64 | bloboats | 1.0.1.dsfg-3 | - +- amd64 | blobwars | 1.19-2 | - +- amd64 | blockattack | 1.4.1+ds1-2.1 | - +- amd64 | blockout2 | 2.4+dfsg1-6 | - +- amd64 | blocks-of-the-undead | 1.0-5 | - +- amd64 | blogilo | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | blop | 0.2.8-6 | - +- amd64 | blt | 2.4z-4.2 | - +- amd64 | blt-dev | 2.4z-4.2 | - +- amd64 | bluedevil | 1.2.3-1 | - +! amd64 | bluefish | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | bluefish-dbg | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | bluefish-plugins | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | blueman | 1.23-1 | 1.23-git201312311147-1~bpo70+1 +- amd64 | bluemon | 1.4-6 | - +- amd64 | bluetile | 0.6-1 | - +- amd64 | bluez | 4.99-2 | - +- amd64 | bluez-alsa | 4.99-2 | - +- amd64 | bluez-compat | 4.99-2 | - +- amd64 | bluez-cups | 4.99-2 | - +- amd64 | bluez-dbg | 4.99-2 | - +- amd64 | bluez-gstreamer | 4.99-2 | - +- amd64 | bluez-hcidump | 2.4-1 | - +- amd64 | bluez-pcmcia-support | 4.99-2 | - +- amd64 | bluez-tools | 0.1.38+git662e-3 | - +- amd64 | bmf | 0.9.4-9 | - +- amd64 | bmon | 2.0.1-3 | - +- amd64 | bnfc | 2.4.2.0-2 | - +- amd64 | boa | 0.94.14rc21-3.1 | - +- amd64 | boats | 201204-1 | - +- amd64 | bobot++ | 1:1.97-10.4 | - +- amd64 | bochs | 2.4.6-5 | - +- amd64 | bochs-sdl | 2.4.6-5 | - +- amd64 | bochs-svga | 2.4.6-5 | - +- amd64 | bochs-term | 2.4.6-5 | - +- amd64 | bochs-wx | 2.4.6-5 | - +- amd64 | bochs-x | 2.4.6-5 | - +- amd64 | bogl-bterm | 0.1.18-8+b1 | - +- amd64 | bognor-regis | 0.6.12+git20101007.02c25268-7 | - +- amd64 | bogofilter | 1.2.2+dfsg1-2 | - +- amd64 | bogofilter-bdb | 1.2.2+dfsg1-2 | - +- amd64 | bogofilter-sqlite | 1.2.2+dfsg1-2 | - +- amd64 | bogofilter-tokyocabinet | 1.2.2+dfsg1-2 | - ++ amd64 | boinc-amd-opencl | - | 7.0.65+dfsg-3~bpo70+1 +- amd64 | boinc-app-examples | 7.0.27+dfsg-5 | - +! amd64 | boinc-client | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | boinc-dbg | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +- amd64 | boinc-dev | 7.0.27+dfsg-5 | - +! amd64 | boinc-manager | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 ++ amd64 | boinc-nvidia-cuda | - | 7.0.65+dfsg-3~bpo70+1 +- amd64 | boinc-server-maker | 7.0.27+dfsg-5 | - +- amd64 | bombardier | 0.8.3+nmu1 | - +- amd64 | bomber | 4:4.8.4-3 | - +- amd64 | bomberclone | 0.11.9-4 | - +- amd64 | bomstrip | 9-6 | - +- amd64 | bonnie++ | 1.96 | - +- amd64 | boolector | 1.4.ffc2089.100608-1 | - +- amd64 | boolstuff | 0.1.12-3 | - +- amd64 | boolstuff-dev | 0.1.12-3 | - +- amd64 | bootchart2 | 0.14.4-3 | - +- amd64 | booth | 0.1.0-1 | - +- amd64 | booth-pacemaker | 0.1.0-1 | - +- amd64 | bootlogd | 2.88dsf-41+deb7u1 | - +- amd64 | bootp | 2.4.3-18 | - +- amd64 | bootparamd | 0.17-9 | - +- amd64 | bootpc | 0.64-7 | - +- amd64 | bopm | 3.1.3-3 | - +- amd64 | bosh | 0.6-6 | - ++ amd64 | bosixnet-webui | - | 1.6-2~bpo70+1 +- amd64 | boswars | 2.6.1-2 | - +- amd64 | botan1.10-dbg | 1.10.5-1 | - +- amd64 | bottlerocket | 0.05b3-14.1 | - +- amd64 | bovo | 4:4.8.4-3 | - +- amd64 | bowtie | 0.12.7-3 | - +- amd64 | bowtie2 | 2.0.0-beta6-3 | - +- amd64 | boxbackup-client | 0.11.1~r2837-1 | - +- amd64 | boxbackup-server | 0.11.1~r2837-1 | - +- amd64 | boxes | 1.0.1a-2.3 | - +- amd64 | boxshade | 3.3.1-7+wheezy1 | - +- amd64 | bozohttpd | 20111118-1 | - +- amd64 | bplay | 0.991-10 | - +- amd64 | bppphyview | 0.2.1-1 | - +- amd64 | bppsuite | 0.7.0-1 | - +- amd64 | br2684ctl | 1:2.5.1-1.5 | - +- amd64 | braindump | 1:2.4.4-3 | - +- amd64 | brandy | 1.20~pre5-4 | - +- amd64 | brasero | 3.4.1-4 | - +- amd64 | brasero-cdrkit | 3.4.1-4 | - +- amd64 | brewtarget | 1.2.4+dfsg-1.1 | - +- amd64 | brickos | 0.9.0.dfsg-6 | - +- amd64 | bridge-utils | 1.5-6 | - +- amd64 | brightside | 1.4.0-4.1 | - +- amd64 | briquolo | 0.5.7-4 | - +- amd64 | bristol | 0.60.10-3 | - +- amd64 | brltty | 4.4-10+deb7u1 | - +- amd64 | brltty-dbg | 4.4-10+deb7u1 | - +- amd64 | brltty-espeak | 4.4-10+deb7u1 | - +- amd64 | brltty-flite | 4.4-10+deb7u1 | - +- amd64 | brltty-speechd | 4.4-10+deb7u1 | - +- amd64 | brltty-x11 | 4.4-10+deb7u1 | - +- amd64 | browser-history | 2.8-15 | - +! amd64 | browser-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 ++ amd64 | browser-plugin-libreoffice | - | 1:4.1.4-2~bpo70+1 +- amd64 | browser-plugin-lightspark | 0.6.0.1-2 | - +- amd64 | browser-plugin-packagekit | 0.7.6-3 | - +- amd64 | browser-plugin-vlc | 2.0.0-2 | - +- amd64 | brp-pacu | 2.1.1+git20110314~repack1-2 | - +- amd64 | brp-pacu-dbg | 2.1.1+git20110314~repack1-2 | - +- amd64 | brutalchess | 0.5.2+dfsg-4 | - +- amd64 | brutefir | 1.0k-2 | - +- amd64 | bs2b-ladspa | 0.9.1-3 | - +- amd64 | bsd-mailx | 8.1.2-0.20111106cvs-1 | - +- amd64 | bsdcpio | 3.0.4-3+nmu1 | - +- amd64 | bsdgames | 2.17-21 | - +- amd64 | bsdiff | 4.3-14 | - +- amd64 | bsdmainutils | 9.0.3 | - +- amd64 | bsdtar | 3.0.4-3+nmu1 | - +- amd64 | bsdutils | 1:2.20.1-5.3 | - +- amd64 | bse-alsa | 0.7.4-5 | - +- amd64 | bsh-gcj | 2.0b4-12 | - +- amd64 | bsnes | 0.088-5 | - +- amd64 | btag | 1.1.3-1+b1 | - +- amd64 | btanks | 0.9.8083-4 | - +! amd64 | bti | 032-1 | 034-1~bpo70+1 +- amd64 | btrfs-tools | 0.19+20120328-7.1 | - +- amd64 | btrfs-tools-dbg | 0.19+20120328-7.1 | - +- amd64 | btscanner | 2.1-5.1 | - +- amd64 | btyacc | 3.0-5 | - +- amd64 | bubblefishymon | 0.6.4-5 | - +- amd64 | buffer | 1.19-11 | - +- amd64 | buffy | 1.5-1 | - +- amd64 | bugsquish | 0.0.6-7 | - +- amd64 | buici-clock | 0.4.9.2 | - +- amd64 | build-essential | 11.5 | - +- amd64 | buildapp | 1.4.2-1 | - +- amd64 | buildtorrent | 0.8-4 | - ++ amd64 | bumblebee | - | 3.2.1-4~bpo70+1 ++ amd64 | bumblebee-dbg | - | 3.2.1-4~bpo70+1 ++ amd64 | bumblebee-nvidia | - | 3.2.1-4~bpo70+1 +- amd64 | bumprace | 1.5.4-1 | - +! amd64 | bup | 0.25~git2011.11.04-5.1 | 0.25-1~bpo70+1 +- amd64 | burgerspace | 1.9.0-4 | - +- amd64 | burp | 1.3.8-1 | - +- amd64 | burp-dbg | 1.3.8-1 | - +- amd64 | busybox | 1:1.20.0-7 | - +- amd64 | busybox-static | 1:1.20.0-7 | - +- amd64 | buthead | 1.1-2 | - +- amd64 | buzztard | 0.5.0-4 | - +- amd64 | buzztard-bsl | 0.5.0-2.1 | - +- amd64 | bvi | 1.3.2-2 | - +- amd64 | bwa | 0.6.2-1 | - +- amd64 | bwbar | 1.2.3-2 | - +- amd64 | bwbasic | 2.20pl2-11 | - +- amd64 | bwm-ng | 0.6-3.1 | - +- amd64 | bximage | 2.4.6-5 | - +- amd64 | byacc | 20120115-1 | - +- amd64 | byacc-j | 1.15-1 | - +- amd64 | bygfoot | 2.3.2-1 | - +- amd64 | byzanz | 0.2.2+git22.10.2011-1.3 | - +- amd64 | bzflag-client | 2.0.16.20100405+nmu1 | - +- amd64 | bzflag-server | 2.0.16.20100405+nmu1 | - +- amd64 | bzip2 | 1.0.6-4 | - +- amd64 | c-icap | 1:0.1.6-1.1 | - +- amd64 | c-repl | 0.0.20071223-1 | - +- amd64 | c2hs | 0.16.3-2 | - +- amd64 | cabal-debian | 1.25-1 | - +- amd64 | cabal-install | 0.14.0-2 | - +- amd64 | cabextract | 1.4-3 | - +- amd64 | cableswig | 0.1.0+cvs20111009-1 | - +- amd64 | caca-utils | 0.99.beta18-1 | - +- amd64 | cachefilesd | 0.9-3.1 | - +- amd64 | cacti-spine | 0.8.8a-1 | - +- amd64 | cadabra | 1.29-1 | - +- amd64 | cadaver | 0.23.3-1 | - +- amd64 | cain-solvers | 1.9-4 | - +- amd64 | cairo-5c | 1.8.1 | - +- amd64 | cairo-clock | 0.3.4-2 | - +- amd64 | cairo-dock | 3.0.0-2+deb7u1 | - +- amd64 | cairo-dock-alsamixer-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-animated-icons-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-cairo-penguin-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-clipper-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-clock-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-core | 3.0.0-2+deb7u1 | - +- amd64 | cairo-dock-dbus-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-desklet-rendering-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-dev | 3.0.0-2+deb7u1 | - +- amd64 | cairo-dock-dialog-rendering-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-dnd2share-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-drop-indicator-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-dustbin-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-folders-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-gmenu-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-gnome-integration-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-icon-effect-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-illusion-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-impulse-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-kde-integration-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-keyboard-indicator-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-logout-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-mail-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-messaging-menu-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-motion-blur-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-musicplayer-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-netspeed-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-plug-ins | 3.0.0-1+b1 | - +- amd64 | cairo-dock-powermanager-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-quick-browser-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-recent-events-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-remote-control-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-rendering-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-rssreader-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-shortcuts-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-showdesktop-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-showmouse-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-slider-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-stack-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-switcher-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-system-monitor-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-systray-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-terminal-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-tomboy-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-toons-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-weather-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-weblets-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-wifi-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-xfce-integration-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-dock-xgamma-plug-in | 3.0.0-1+b1 | - +- amd64 | cairo-perf-utils | 1.12.2-3 | - +- amd64 | calcoo | 1.3.18-3 | - +- amd64 | calcurse | 2.9.2-1 | - +- amd64 | calendar-google-provider | 10.0.12-1 | - +- amd64 | calendar-timezones | 10.0.12-1 | - +- amd64 | calendarserver | 3.2+dfsg-4 | - +- amd64 | calf-plugins | 0.0.18.6-5 | - +- amd64 | calgebra | 4:4.8.4-2 | - +! amd64 | calibre-bin | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +- amd64 | calife | 1:3.0.1-4 | - +- amd64 | calligra-dbg | 1:2.4.4-3 | - +- amd64 | calligra-libs | 1:2.4.4-3 | - +- amd64 | calligra-reports-map-element | 1:2.4.4-3 | - +- amd64 | calligra-reports-web-element | 1:2.4.4-3 | - +- amd64 | calligraflow | 1:2.4.4-3 | - +- amd64 | calligramobile | 1:2.4.4-3 | - +- amd64 | calligraplan | 1:2.4.4-3 | - +- amd64 | calligrasheets | 1:2.4.4-3 | - +- amd64 | calligrastage | 1:2.4.4-3 | - +- amd64 | calligrawords | 1:2.4.4-3 | - +- amd64 | cam | 1.05-8 | - +- amd64 | cameleon | 1.9.21-2+b1 | - +- amd64 | camera.app | 0.8.0-9+b2 | - +- amd64 | camlidl | 1.05-14 | - +- amd64 | camlp4 | 3.12.1-4 | - +- amd64 | camlp4-extra | 3.12.1-4 | - +- amd64 | camlp5 | 6.06-1 | - +- amd64 | camorama | 0.19-2.2 | - +- amd64 | canna | 3.7p3-11 | - +- amd64 | canna-utils | 3.7p3-11 | - +- amd64 | canto | 0.7.10-4 | - +- amd64 | cantor | 4:4.8.4-2 | - +- amd64 | cantor-backend-kalgebra | 4:4.8.4-2 | - +- amd64 | cantor-backend-maxima | 4:4.8.4-2 | - +- amd64 | cantor-backend-octave | 4:4.8.4-2 | - +- amd64 | cantor-backend-qalculate | 4:4.8.4-2 | - +- amd64 | cantor-backend-r | 4:4.8.4-2 | - +- amd64 | cantor-backend-sage | 4:4.8.4-2 | - +- amd64 | cantor-backend-scilab | 4:4.8.4-2 | - +- amd64 | cantor-dbg | 4:4.8.4-2 | - +- amd64 | capi4hylafax | 1:01.03.00.99.svn.300-18 | - +- amd64 | capiutils | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | caps | 0.4.2-1 | - +- amd64 | caret | 5.6.4~dfsg.1-3 | - +- amd64 | carettah | 0.1.2-1 | - +- amd64 | catcodec | 1.0.5-1 | - +- amd64 | catdoc | 0.94.4-1.1 | - +- amd64 | catdvi | 0.14-12.1 | - +- amd64 | cavezofphear | 0.5.1-1 | - +- amd64 | cb2bib | 1.4.8-1 | - +- amd64 | cba | 0.3.6-4 | - +- amd64 | cbflib-bin | 0.7.9.1-3 | - +- amd64 | cbm | 0.1-9 | - +- amd64 | cbmc | 4.1-1.2 | - +- amd64 | cbrpager | 0.9.22-1 | - +- amd64 | cc1111 | 2.9.0-2 | - +- amd64 | ccache | 3.1.7-1 | - +- amd64 | ccal | 4.0-3 | - +- amd64 | ccbuild | 2.0.3-1+b1 | - +- amd64 | cccc | 1:3.1.4-4 | - +- amd64 | cccd | 0.3beta4-6.2 | - +- amd64 | ccd2iso | 0.3-3 | - +- amd64 | cciss-vol-status | 1.09-2+deb7u1 | - +- amd64 | cclive | 0.7.9-1 | - +- amd64 | ccontrol | 1.0-1 | - +- amd64 | cconv | 0.6.2-1 | - +- amd64 | ccrypt | 1.9-4 | - +- amd64 | ccze | 0.2.1-2 | - +- amd64 | cd-discid | 1.3.1-1 | - +- amd64 | cd-hit | 4.6-2012-04-25-1 | - +- amd64 | cd5 | 0.1-3 | - +- amd64 | cdargs | 1.35-9 | - +- amd64 | cdbackup | 0.7.0-5 | - +- amd64 | cdcat | 1.8-1 | - +- amd64 | cdcd | 0.6.6-13.1 | - +- amd64 | cdcd-dbg | 0.6.6-13.1 | - +- amd64 | cdck | 0.7.0-5 | - +- amd64 | cdcover | 0.9.1-10 | - +- amd64 | cdde | 0.3.1-1 | - +- amd64 | cde | 0.1-1 | - +- amd64 | cdebconf | 0.182 | - +- amd64 | cdebconf-gtk | 0.182 | - +- amd64 | cdebootstrap | 0.5.9 | - +- amd64 | cdebootstrap-static | 0.5.9 | - +- amd64 | cdecl | 2.5-11 | - +- amd64 | cdo | 1.5.4+dfsg.1-5 | - +- amd64 | cdparanoia | 3.10.2+debian-10.1 | - +- amd64 | cdparanoia-dbg | 3.10.2+debian-10.1 | - +- amd64 | cdpr | 2.4-1 | - +- amd64 | cdrdao | 1:1.2.3-0.3 | - +- amd64 | cdrskin | 1.2.2-2 | - +- amd64 | cdtool | 2.1.8-release-2 | - +- amd64 | cduce | 0.5.5-1 | - +- amd64 | cdw | 0.7.1-1 | - +- amd64 | cec-utils | 1.6.2-1.1 | - +- amd64 | ceferino | 0.97.8-3.1 | - +- amd64 | celestia-glut | 1.6.1+dfsg-2 | - +- amd64 | celestia-gnome | 1.6.1+dfsg-2 | - +- amd64 | cellwriter | 1.3.4-1.1 | - +- amd64 | cenon.app | 3.93-1.2 | - +- amd64 | centerim | 4.22.10-2+b1 | - +- amd64 | centerim-fribidi | 4.22.10-2+b1 | - +- amd64 | centerim-utf8 | 4.22.10-2+b1 | - +- amd64 | certmonger | 0.57-1 | - +- amd64 | cervisia | 4:4.8.4+dfsg-1 | - +- amd64 | ceve | 1.4-2+b2 | - +- amd64 | cfengine2 | 2.2.10-5 | - +- amd64 | cfengine2-dbg | 2.2.10-5 | - +- amd64 | cfengine3 | 3.2.4-2+nmu1 | - +- amd64 | cfengine3-dbg | 3.2.4-2+nmu1 | - +- amd64 | cfingerd | 1.4.3-3.1 | - +- amd64 | cflow | 1:1.4+dfsg1-2 | - +- amd64 | cfourcc | 0.1.2-8 | - +- amd64 | cgdb | 0.6.6-2 | - +- amd64 | cgi-mapserver | 6.0.1-3.2+deb7u2 | - +- amd64 | cgiemail | 1.6-37 | - +- amd64 | cgilib | 0.6-1 | - +- amd64 | cgns-convert | 3.1.3.4-1+b1 | - +- amd64 | cgoban | 1.9.14-17 | - +- amd64 | cgroup-bin | 0.38-1 | - +- amd64 | charmap.app | 0.2-11+b1 | - +- amd64 | charybdis | 3.3.0-7.1 | - +- amd64 | chase | 0.5.2-4 | - +- amd64 | chasen | 2.4.5-6 | - +- amd64 | chasen-dictutils | 2.4.5-6 | - +- amd64 | check | 0.9.8-2 | - +! amd64 | check-mk-agent | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-agent-logwatch | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-config-icinga | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-config-nagios3 | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-livestatus | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-multisite | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-server | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +- amd64 | checkinstall | 1.6.2-4 | - +- amd64 | checkpolicy | 2.1.8-2 | - +- amd64 | checkpw | 1.02-1 | - +- amd64 | cheese | 3.4.2-2 | - +- amd64 | chemeq | 2.9-1 | - +- amd64 | chemtool | 1.6.13-1 | - +- amd64 | chiark-really | 4.2.0 | - +- amd64 | chiark-rwbuffer | 4.2.0 | - +- amd64 | chiark-utils-bin | 4.2.0 | - +- amd64 | chicken-bin | 4.7.0-1 | - +- amd64 | chimera2 | 2.0a19-7 | - +- amd64 | chipmunk-dev | 5.3.4-1 | - +- amd64 | chipw | 2.0.6-1.1 | - +- amd64 | chirp | 0.1.12-1 | - +- amd64 | chkrootkit | 0.49-4.1 | - +- amd64 | chktex | 1.6.4-4 | - +- amd64 | chntpw | 0.99.6-2 | - +- amd64 | choosewm | 0.1.6-3 | - +- amd64 | choqok | 1.3-1 | - +- amd64 | chordii | 4.3+repack-2 | - +- amd64 | chromium | 31.0.1650.63-1~deb7u1 | - +- amd64 | chromium-bsu | 0.9.15-1 | - +- amd64 | chromium-dbg | 31.0.1650.63-1~deb7u1 | - +- amd64 | chrony | 1.24-3.1+deb7u2 | - +- amd64 | chrootuid | 1.3-6 | - +- amd64 | chrpath | 0.13-2 | - +- amd64 | chuck | 1.2.0.8.dfsg-1.4 | - +- amd64 | cifs-utils | 2:5.5-1 | - +- amd64 | circuslinux | 1.0.3-28 | - +- amd64 | citadel-client | 8.14-2 | - +- amd64 | citadel-dbg | 8.14-2 | - +- amd64 | citadel-mta | 8.14-2 | - +- amd64 | citadel-server | 8.14-2 | - +- amd64 | citadel-webcit | 8.14-dfsg-1 | - +- amd64 | ckermit | 302-3 | - +- amd64 | cksfv | 1.3.14-2 | - +- amd64 | cl-clx-sbcl | 0.7.4-5 | - +- amd64 | cl-sql-mysql | 6.2.0-1+b1 | - +- amd64 | cl-sql-uffi | 6.2.0-1+b1 | - +- amd64 | cl-uffi-tests | 2.1.2-1 | - +- amd64 | clam-chordata | 1.0.0-2 | - +- amd64 | clam-networkeditor | 1.4.0-3.1 | - +- amd64 | clamav | 0.97.8+dfsg-1 | - +- amd64 | clamav-daemon | 0.97.8+dfsg-1 | - +- amd64 | clamav-dbg | 0.97.8+dfsg-1 | - +- amd64 | clamav-freshclam | 0.97.8+dfsg-1 | - +- amd64 | clamav-milter | 0.97.8+dfsg-1 | - +- amd64 | clamsmtp | 1.10-10 | - +- amd64 | clamz | 0.5-1 | - +- amd64 | clang | 1:3.0-6.2 | - +- amd64 | clasp | 2.0.6-2 | - +! amd64 | claws-mail | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-acpi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-address-keeper | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-archiver-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-attach-remover | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-attach-warner | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-bogofilter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-bsfilter-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-clamd-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-dbg | 3.8.1-2 | 3.9.3-1~bpo70+1 +- amd64 | claws-mail-extra-plugins-dbg | 3.8.1-2 | - +! amd64 | claws-mail-fancy-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-feeds-reader | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-fetchinfo-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-gdata-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +- amd64 | claws-mail-html2-viewer | 3.8.1-2 | - +! amd64 | claws-mail-mailmbox-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-multi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-newmail-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 ++ amd64 | claws-mail-pdf-viewer | - | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-perl-filter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-pgpinline | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-pgpmime | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-python-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-smime-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-spam-report | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-spamassassin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-tnef-parser | 3.8.1-2 | 3.9.3-1~bpo70+1 +- amd64 | claws-mail-trayicon | 3.8.1-2 | - +! amd64 | claws-mail-vcalendar-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +- amd64 | cldump | 0.11~dfsg-1 | - +- amd64 | clearsilver-dev | 0.10.5-1.3 | - +- amd64 | clementine | 1.0.1+dfsg-2+b1 | - +- amd64 | clex | 3.15-1 | - +- amd64 | clif | 0.93-9 | - +- amd64 | clinica | 0.2.1~dfsg-1 | - +- amd64 | clinica-dev | 0.2.1~dfsg-1 | - +- amd64 | clinica-plugins | 0.2.1~dfsg-1 | - +- amd64 | cliofetion | 2.2.0-1 | - +- amd64 | clipit | 1.4.1-1 | - +- amd64 | clips | 6.24-3 | - +- amd64 | cliquer | 1.21-1 | - +- amd64 | clisp | 1:2.49-8.1 | - +- amd64 | clisp-dev | 1:2.49-8.1 | - +- amd64 | clisp-module-berkeley-db | 1:2.49-8.1 | - +- amd64 | clisp-module-bindings-glibc | 1:2.49-8.1 | - +- amd64 | clisp-module-clx | 1:2.49-8.1 | - +- amd64 | clisp-module-dbus | 1:2.49-8.1 | - +- amd64 | clisp-module-gdbm | 1:2.49-8.1 | - +- amd64 | clisp-module-pcre | 1:2.49-8.1 | - +- amd64 | clisp-module-postgresql | 1:2.49-8.1 | - +- amd64 | clisp-module-rawsock | 1:2.49-8.1 | - +- amd64 | clisp-module-wildcard | 1:2.49-8.1 | - +- amd64 | clisp-module-zlib | 1:2.49-8.1 | - +- amd64 | clonalframe | 1.2-3 | - +- amd64 | cloog-isl | 0.17.0-3 | - +- amd64 | cloog-ppl | 0.15.11-4 | - +- amd64 | cloop-utils | 2.6.39.2-1 | - +- amd64 | clustalo | 1.1.0-1 | - +- amd64 | clustalw | 2.1+lgpl-2 | - +- amd64 | clustalx | 2.1+lgpl-2 | - +- amd64 | cluster-agents | 1:1.0.3-4 | - +- amd64 | cluster-glue | 1.0.9+hg2665-1 | - +- amd64 | cluster-glue-dev | 1.0.9+hg2665-1 | - +- amd64 | clutter-1.0-tests | 1.10.8-2 | - +- amd64 | clvm | 2.02.95-8 | - +- amd64 | clzip | 1.3-2 | - +- amd64 | clzip-dbg | 1.3-2 | - +! amd64 | cmake | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-curses-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-dbg | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-qt-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +- amd64 | cman | 3.0.12-3.2+deb7u2 | - +- amd64 | cmatrix | 1.2a-4 | - +- amd64 | cmigemo | 20110227-7 | - +- amd64 | cmis-client | 0.1.0-1+b1 | - +- amd64 | cmospwd | 5.0+dfsg-2 | - +- amd64 | cmt | 1.16-1 | - +- amd64 | cmtk | 2.2.2-2 | - +- amd64 | cmus | 2.4.3-2 | - +- amd64 | cmus-plugin-ffmpeg | 2.4.3-2 | - +- amd64 | cnee | 3.13-1 | - +- amd64 | cntlm | 0.92.3-1 | - +- amd64 | coala | 1.0.1-5 | - +- amd64 | coccinelle | 1.0.0~rc12.deb-5 | - +- amd64 | coco-cpp | 20120102-1 | - +- amd64 | code-saturne | 2.1.7-1 | - +- amd64 | code-saturne-bin | 2.1.7-1 | - +- amd64 | code-saturne-include | 2.1.7-1 | - +! amd64 | codeblocks | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-contrib | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-contrib-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-dev | 10.05-2.1 | 13.12-1~bpo70+1 +- amd64 | codegroup | 19981025-6 | - +- amd64 | codfis | 0.4.7-2 | - +- amd64 | coinor-csdp | 6.1.1-1 | - +- amd64 | coinor-csdp-dbg | 6.1.1-1 | - +- amd64 | coinor-libcbc-dev | 2.5.0-3 | - +- amd64 | coinor-libcbc0 | 2.5.0-3 | - +- amd64 | coinor-libcbc0-dbg | 2.5.0-3 | - +- amd64 | coinor-libcgl-dev | 0.55.0-1.1 | - +- amd64 | coinor-libcgl0 | 0.55.0-1.1 | - +- amd64 | coinor-libcgl0-dbg | 0.55.0-1.1 | - +- amd64 | coinor-libclp-dev | 1.12.0-2.1 | - +- amd64 | coinor-libclp0 | 1.12.0-2.1 | - +- amd64 | coinor-libclp0-dbg | 1.12.0-2.1 | - +- amd64 | coinor-libcoinutils-dev | 2.6.4-3 | - +- amd64 | coinor-libcoinutils0 | 2.6.4-3 | - +- amd64 | coinor-libcoinutils0-dbg | 2.6.4-3 | - +- amd64 | coinor-libdylp-dev | 1.6.0-1.1 | - +- amd64 | coinor-libdylp0 | 1.6.0-1.1 | - +- amd64 | coinor-libdylp0-dbg | 1.6.0-1.1 | - +- amd64 | coinor-libflopc++-dev | 1.0.6-3.1 | - +- amd64 | coinor-libflopc++0 | 1.0.6-3.1 | - +- amd64 | coinor-libflopc++0-dbg | 1.0.6-3.1 | - +- amd64 | coinor-libipopt-dev | 3.10.2-1.1 | - +- amd64 | coinor-libipopt1 | 3.10.2-1.1 | - +- amd64 | coinor-libipopt1-dbg | 3.10.2-1.1 | - +- amd64 | coinor-libosi-dev | 0.103.0-1 | - +- amd64 | coinor-libosi0 | 0.103.0-1 | - +- amd64 | coinor-libosi0-dbg | 0.103.0-1 | - +- amd64 | coinor-libsymphony-dev | 5.2.4-1.2 | - +- amd64 | coinor-libsymphony0 | 5.2.4-1.2 | - +- amd64 | coinor-libsymphony0-dbg | 5.2.4-1.2 | - +- amd64 | coinor-libvol-dev | 1.1.7-1 | - +- amd64 | coinor-libvol0 | 1.1.7-1 | - +- amd64 | coinor-libvol0-dbg | 1.1.7-1 | - +- amd64 | coinst | 1.01-2 | - +- amd64 | coinst-viewer | 1.01-2 | - +- amd64 | coldfire | 0.2.2-2.3 | - +- amd64 | collatinus | 10.0-3 | - +- amd64 | collectd | 5.1.0-3 | - +- amd64 | collectd-core | 5.1.0-3 | - +- amd64 | collectd-dbg | 5.1.0-3 | - +- amd64 | collectd-utils | 5.1.0-3 | - ++ amd64 | colobot | - | 0.1.2-3~bpo70+2 ++ amd64 | colobot-dbg | - | 0.1.2-3~bpo70+2 +- amd64 | colorcode | 0.7.2-1 | - +- amd64 | colord | 0.1.21-1 | - +- amd64 | colorhug-client | 0.1.10-1 | - +- amd64 | colortail | 0.3.3-1 | - +- amd64 | colrconv | 0.99.3-4 | - +- amd64 | comerr-dev | 2.1-1.42.5-1.1 | - +- amd64 | comgt | 0.32-2 | - +- amd64 | comparepdf | 1.0.1-1 | - +- amd64 | compartment | 1.1.0-4 | - +- amd64 | compface | 1:1.5.2-5 | - +- amd64 | composite | 0.006.2+dfsg0-2 | - +- amd64 | composite-dbg | 0.006.2+dfsg0-2 | - +- amd64 | concalc | 0.9.2-2 | - +- amd64 | concordance | 0.24-1.1 | - +- amd64 | condor | 7.8.2~dfsg.1-1+deb7u1 | - +- amd64 | condor-dbg | 7.8.2~dfsg.1-1+deb7u1 | - +- amd64 | condor-dev | 7.8.2~dfsg.1-1+deb7u1 | - +- amd64 | cone | 0.89-1 | - +- amd64 | confclerk | 0.5.5-1 | - +- amd64 | confget | 1.03-1 | - +- amd64 | config-manager | 0.4-2.1 | - +- amd64 | confluence | 0.10.6-7 | - +- amd64 | conkeror-spawn-process-helper | 1.0~~pre+git120527-1 | - +- amd64 | conky-cli | 1.9.0-2 | - +- amd64 | conky-std | 1.9.0-2 | - +- amd64 | connect-proxy | 1.101-1 | - +- amd64 | connectagram | 1.0.1-1 | - +- amd64 | connman | 1.0-1.1+wheezy1+b1 | - +- amd64 | connman-dev | 1.0-1.1+wheezy1+b1 | - +- amd64 | conntrack | 1:1.2.1-1 | - +- amd64 | conntrackd | 1:1.2.1-1 | - +- amd64 | console-braille | 1.3 | - +- amd64 | console-tools | 1:0.2.3dbs-70 | - +- amd64 | console-tools-dev | 1:0.2.3dbs-70 | - +- amd64 | consolekit | 0.4.5-3.1 | - +- amd64 | conspy | 1.8-2 | - +- amd64 | contacts | 0.9-2+b2 | - +- amd64 | contextfree | 2.2+dfsg1-2.1 | - +- amd64 | convert-pgn | 0.29.6-2 | - +- amd64 | convlit | 1.8-1 | - +- amd64 | cook | 2.33-1 | - +- amd64 | cook-rsh | 2.33-1 | - +- amd64 | cookietool | 2.5-5 | - +- amd64 | coolkey | 1.1.0-12 | - +- amd64 | coolmail | 1.3-11 | - +- amd64 | coop-computing-tools | 3.5.1-2 | - +- amd64 | coop-computing-tools-dev | 3.5.1-2 | - +- amd64 | copyfs | 1.0.1-4 | - +- amd64 | coq | 8.3.pl4+dfsg-2 | - +- amd64 | coqide | 8.3.pl4+dfsg-2 | - ++ amd64 | core-network-daemon | - | 4.6-2~bpo70+1 ++ amd64 | core-network-gui | - | 4.6-2~bpo70+1 ++ amd64 | corekeeper | - | 1.5~bpo70+1 +- amd64 | coreutils | 8.13-3.5 | - +- amd64 | coriander | 2.0.1-1 | - +- amd64 | corkscrew | 2.0-9 | - +- amd64 | corosync | 1.4.2-3 | - +- amd64 | corosync-dbg | 1.4.2-3 | - +- amd64 | corosync-dev | 1.4.2-3 | - +- amd64 | cortina | 0.7.3-1 | - +- amd64 | couchdb | 1.2.0-5 | - +- amd64 | courier-authdaemon | 0.63.0-6+b1 | - +- amd64 | courier-authlib | 0.63.0-6+b1 | - +- amd64 | courier-authlib-dev | 0.63.0-6+b1 | - +- amd64 | courier-authlib-ldap | 0.63.0-6+b1 | - +- amd64 | courier-authlib-mysql | 0.63.0-6+b1 | - +- amd64 | courier-authlib-pipe | 0.63.0-6+b1 | - +- amd64 | courier-authlib-postgresql | 0.63.0-6+b1 | - +- amd64 | courier-authlib-userdb | 0.63.0-6+b1 | - +- amd64 | courier-base | 0.68.2-1 | - +- amd64 | courier-faxmail | 0.68.2-1 | - +- amd64 | courier-imap | 4.10.0-20120615-1 | - +- amd64 | courier-imap-ssl | 4.10.0-20120615-1 | - +- amd64 | courier-ldap | 0.68.2-1 | - +- amd64 | courier-maildrop | 0.68.2-1 | - +- amd64 | courier-mlm | 0.68.2-1 | - +- amd64 | courier-mta | 0.68.2-1 | - +- amd64 | courier-mta-ssl | 0.68.2-1 | - +- amd64 | courier-pcp | 0.68.2-1 | - +- amd64 | courier-pop | 0.68.2-1 | - +- amd64 | courier-pop-ssl | 0.68.2-1 | - +- amd64 | courier-ssl | 0.68.2-1 | - +- amd64 | courier-webadmin | 0.68.2-1 | - +- amd64 | couriergrey | 0.3.2-1 | - +- amd64 | courierpassd | 1.1.2-2 | - +- amd64 | covered | 0.7.10-1 | - +- amd64 | cowbell | 0.2.7.1-7 | - +! amd64 | cowbuilder | 0.70 | 0.73~bpo7+1 +! amd64 | cowdancer | 0.70 | 0.73~bpo7+1 +- amd64 | cp2k | 2.2.426-8 | - +- amd64 | cpio | 2.11+dfsg-0.1 | - +- amd64 | cpipe | 3.0.1-1 | - +- amd64 | cpm | 0.26-1 | - +- amd64 | cpmtools | 2.13-1 | - +- amd64 | cpp | 4:4.7.2-1 | - +- amd64 | cpp-4.4 | 4.4.7-2 | - +- amd64 | cpp-4.6 | 4.6.3-14 | - +- amd64 | cpp-4.7 | 4.7.2-5 | - +- amd64 | cppcheck | 1.54-1 | - +- amd64 | cpphs | 1.13.3-2+b1 | - +- amd64 | cpqarrayd | 2.3-1.3 | - +- amd64 | cproto | 4.7j-5 | - +- amd64 | cpu | 1.4.3-11.3 | - +- amd64 | cpuburn | 1.4a-3 | - +- amd64 | cpufreqd | 2.4.2-2 | - +- amd64 | cpufrequtils | 008-1 | - +- amd64 | cpuid | 3.3-9 | - +- amd64 | cpulimit | 1.7-1 | - +- amd64 | cpushare | 0.48-4 | - +- amd64 | cqrlog | 1.4.1-1 | - +- amd64 | crack | 5.0a-9.3 | - +- amd64 | crack-attack | 1.1.14-9.1 | - +- amd64 | crack-md5 | 5.0a-9.3 | - +- amd64 | cracklib-runtime | 2.8.19-3 | - +- amd64 | cramfsprogs | 1.1-6 | - +- amd64 | cramfsswap | 1.4.1 | - +- amd64 | crash | 6.0.6-1 | - +- amd64 | crashmail | 0.71-4 | - +- amd64 | crashme | 2.4-9 | - +- amd64 | crasm | 1.5-1 | - +- amd64 | crawl | 2:0.10.3-3 | - +- amd64 | crawl-tiles | 2:0.10.3-3 | - +- amd64 | crda | 1.1.2-1 | - +- amd64 | createfp | 3.2.0-2 | - +- amd64 | cricket | 1.0.5-19 | - +- amd64 | crimson | 0.5.2-1 | - +- amd64 | criticalmass | 1:1.0.0-1.5 | - +- amd64 | critterding | 1.0-beta12.1-1.2 | - +- amd64 | crm114 | 20100106-3 | - +- amd64 | cron | 3.0pl1-124 | - +- amd64 | cronolog | 1.6.2+rpk-1 | - +- amd64 | cronutils | 1.2-1 | - +- amd64 | crossfire-client | 1.70.0-1 | - +- amd64 | crossfire-server | 1.70.0-1 | - +- amd64 | crossroads | 2.65-1.1 | - +- amd64 | crtmpserver | 1.0~dfsg-3 | - +- amd64 | crtmpserver-apps | 1.0~dfsg-3 | - +- amd64 | crtmpserver-dev | 1.0~dfsg-3 | - +- amd64 | crtmpserver-libs | 1.0~dfsg-3 | - +- amd64 | cruft | 0.9.16 | - +- amd64 | cryptcat | 20031202-4 | - +- amd64 | cryptkeeper | 0.9.5-5.1 | - +- amd64 | cryptmount | 4.3.1-1 | - +- amd64 | cryptsetup | 2:1.4.3-4 | - +- amd64 | cryptsetup-bin | 2:1.4.3-4 | - +- amd64 | cscope | 15.7a-3.6 | - +- amd64 | csh | 20110502-2 | - +- amd64 | csladspa | 1:5.17.11~dfsg-3 | - +- amd64 | csmash | 0.6.6-6.6 | - +- amd64 | csound | 1:5.17.11~dfsg-3 | - +- amd64 | csound-gui | 1:5.17.11~dfsg-3 | - +- amd64 | csound-utils | 1:5.17.11~dfsg-3 | - +- amd64 | cssc | 1.2.0-2 | - +- amd64 | cssed | 0.4.0-4 | - +- amd64 | csstidy | 1.4-3 | - +- amd64 | cstream | 3.0.0-1 | - +- amd64 | csv2latex | 0.18-2 | - ++ amd64 | csvimp | - | 0.4.7-2~bpo70+1 +- amd64 | csvtool | 1.2.2-1+b1 | - +- amd64 | csync2 | 1.34-2.2+b1 | - +- amd64 | ctdb | 1.12+git20120201-4 | - +- amd64 | ctdb-dbg | 1.12+git20120201-4 | - +- amd64 | ctn | 3.0.6-13+b2 | - +- amd64 | ctn-dev | 3.0.6-13+b2 | - +- amd64 | ctorrent | 1.3.4.dnh3.3.2-4 | - +- amd64 | ctpl | 0.3.3.dfsg-2 | - +- amd64 | ctsim | 5.2.0-1.1 | - +- amd64 | ctwm | 3.7-3.3 | - +- amd64 | cu | 1.07-20 | - +- amd64 | cuba-partview | 3.0+20111124-2 | - +- amd64 | cube2font | 1.2-2 | - +- amd64 | cube2font-dbg | 1.2-2 | - +- amd64 | cudf-tools | 0.6.2-1 | - +- amd64 | cue2toc | 0.4-5 | - +- amd64 | cuetools | 1.3.1-12 | - +- amd64 | cultivation | 9+dfsg1-1 | - +- amd64 | cups | 1.5.3-5+deb7u1 | - +- amd64 | cups-bsd | 1.5.3-5+deb7u1 | - +- amd64 | cups-client | 1.5.3-5+deb7u1 | - +- amd64 | cups-dbg | 1.5.3-5+deb7u1 | - +- amd64 | cups-filters | 1.0.18-2.1 | - +- amd64 | cups-pdf | 2.6.1-6 | - +- amd64 | cups-pk-helper | 0.2.3-3 | - +- amd64 | cups-ppdc | 1.5.3-5+deb7u1 | - +- amd64 | cupt | 2.5.9 | - +- amd64 | curl | 7.26.0-1+wheezy8 | - +- amd64 | curlftpfs | 0.9.2-5 | - +- amd64 | curtain | 0.1-1 | - +- amd64 | curves | 0.8.19 | - +- amd64 | cutecom | 0.22.0-2 | - +- amd64 | cutesdr | 1.0.5-3 | - +- amd64 | cutils | 1.6-3 | - +- amd64 | cutter | 1.03-2 | - +- amd64 | cutter-gtk-support | 1.1.7-1.2 | - +- amd64 | cutter-report-module | 1.1.7-1.2 | - +- amd64 | cutter-testing-framework | 1.1.7-1.2 | - +- amd64 | cutter-testing-framework-bin | 1.1.7-1.2 | - +- amd64 | cutycapt | 0.0~svn6-3 | - +- amd64 | cuyo | 2.0.0brl1-1 | - +- amd64 | cvc3 | 2.4.1-4 | - +- amd64 | cvm | 0.96-1+b1 | - +- amd64 | cvm-mysql | 0.96-1+b1 | - +- amd64 | cvm-pgsql | 0.96-1+b1 | - +- amd64 | cvs | 2:1.12.13+real-9 | - +- amd64 | cvsd | 1.0.24 | - +- amd64 | cvsgraph | 1.7.0-1 | - +- amd64 | cvsps | 2.1-6 | - +- amd64 | cvsservice | 4:4.8.4+dfsg-1 | - +- amd64 | cvstrac | 2.0.1-3 | - +- amd64 | cw | 3.0.2-1 | - +- amd64 | cwcp | 3.0.2-1 | - +- amd64 | cwdaemon | 0.9.5-1 | - +- amd64 | cwebx | 3.04-9 | - +- amd64 | cwiid-dbg | 0.6.00+svn201-3+b1 | - +- amd64 | cwirc | 2.0.0-5 | - +- amd64 | cxref | 1.6d-6 | - +- amd64 | cycfx2prog | 0.47-1 | - +- amd64 | cyclades-serial-client | 0.92 | - +- amd64 | cyclist | 0.1~alpha55-6 | - +- amd64 | cynthiune.app | 0.9.5-14 | - +- amd64 | cyrus-clients-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-common-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-dev-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-imapd-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-imspd | 1.8-3 | - +- amd64 | cyrus-murder-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-nntpd-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-pop3d-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-replication-2.4 | 2.4.16-4+deb7u1 | - +- amd64 | cyrus-sasl2-dbg | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | cyrus-sasl2-heimdal-dbg | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | cyrus-sasl2-mit-dbg | 2.1.25.dfsg1-6+deb7u1 | - +! amd64 | cython | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! amd64 | cython-dbg | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 ++ amd64 | cython3 | - | 0.19.1+git34-gac3e3a2-1~bpo70+1 ++ amd64 | cython3-dbg | - | 0.19.1+git34-gac3e3a2-1~bpo70+1 +- amd64 | d-itg | 2.8.1~rc1-1 | - +- amd64 | d52 | 3.4.1-1.1 | - +- amd64 | daa2iso | 0.1.7e-1 | - +- amd64 | dacs | 1.4.27b-2 | - +- amd64 | dact | 0.8.42-4 | - +- amd64 | dadadodo | 1.04-4 | - +- amd64 | daemon | 0.6.4-1 | - +- amd64 | daemonfs | 1.1-1 | - +- amd64 | daemonlogger | 1.2.1-7 | - +- amd64 | daemontools | 1:0.76-3 | - +- amd64 | dahdi | 1:2.5.0.1-2 | - +- amd64 | daisy-player | 7.1.1-1 | - +- amd64 | daisy-player-dbg | 7.1.1-1 | - +- amd64 | dancer-ircd | 1.0.36-8.1 | - +- amd64 | dancer-xml | 0.8.2.1-3 | - +- amd64 | dangen | 0.5-2 | - +- amd64 | dans-gdal-scripts | 0.18-1.1+b2 | - +- amd64 | dansguardian | 2.10.1.1-5 | - +- amd64 | dante-client | 1.1.19.dfsg-3+b3 | - +- amd64 | dante-server | 1.1.19.dfsg-3+b3 | - +- amd64 | dapl2-utils | 2.0.19-1.1 | - +- amd64 | dar | 2.4.5.debian.1-1 | - +- amd64 | darcs | 2.8.1-1+b1 | - ++ amd64 | darcs-monitor | - | 0.4.2-3~bpo70+1 +- amd64 | dares | 0.6.5-7 | - +- amd64 | darkice | 1.0-1 | - +- amd64 | darkplaces | 0~20110628+svn11619-3 | - +- amd64 | darkplaces-dbg | 0~20110628+svn11619-3 | - +- amd64 | darkplaces-server | 0~20110628+svn11619-3 | - +- amd64 | darksnow | 0.6.1-3 | - +- amd64 | darkstat | 3.0.715-1 | - +! amd64 | darktable | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! amd64 | darktable-dbg | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +- amd64 | darnwdl | 0.5-2 | - +- amd64 | darts | 0.32-11 | - +- amd64 | das-watchdog | 0.9.0-2 | - +- amd64 | dash | 0.5.7-3 | - +- amd64 | dasher | 4.11-2 | - +- amd64 | datapm | 0.10-1.1 | - +- amd64 | datefudge | 1.17 | - +- amd64 | dates | 0.4.8-3+b1 | - +- amd64 | dav-text | 0.8.5-5 | - +- amd64 | davfs2 | 1.4.6-1.1+deb7u1 | - +- amd64 | dawgdic-tools | 0.4.3-1 | - +- amd64 | db4.7-util | 4.7.25-21 | - +- amd64 | db4.8-util | 4.8.30-12 | - +- amd64 | db5.1-sql-util | 5.1.29-5 | - +- amd64 | db5.1-util | 5.1.29-5 | - +- amd64 | dbacl | 1.12-2.1 | - +- amd64 | dballe | 5.18-1 | - +- amd64 | dbar | 0.0.20100524-3 | - +- amd64 | dbeacon | 0.3.9.3-2 | - +- amd64 | dbench | 4.0-2 | - +- amd64 | dbf2mysql | 1.14a-3.1+b2 | - +- amd64 | dbmix | 0.9.8-6.2 | - +- amd64 | dbskkd-cdb | 1:2.00-6 | - +- amd64 | dbus | 1.6.8-1+deb7u1 | - +- amd64 | dbus-1-dbg | 1.6.8-1+deb7u1 | - +- amd64 | dbus-x11 | 1.6.8-1+deb7u1 | - +- amd64 | dbview | 1.0.4-1 | - +- amd64 | dc | 1.06.95-2+b1 | - +- amd64 | dc-qt | 0.2.0.alpha-4.1+b3 | - +- amd64 | dc3dd | 7.1.614-1 | - +- amd64 | dcap | 2.47.6-2 | - +- amd64 | dcap-dbg | 2.47.6-2 | - +- amd64 | dcap-dev | 2.47.6-2 | - +- amd64 | dcap-tunnel-gsi | 2.47.6-2 | - +- amd64 | dcap-tunnel-krb | 2.47.6-2 | - +- amd64 | dcap-tunnel-ssl | 2.47.6-2 | - +- amd64 | dcap-tunnel-telnet | 2.47.6-2 | - +- amd64 | dcfldd | 1.3.4.1-2.1 | - +- amd64 | dchroot | 1.6.4-4 | - +- amd64 | dchroot-dsa | 1.6.4-4 | - +- amd64 | dclock | 2.2.2-6 | - +- amd64 | dcmtk | 3.6.0-12 | - +- amd64 | dcmtk-www | 3.6.0-12 | - +- amd64 | dconf-gsettings-backend | 0.12.1-3 | - +- amd64 | dconf-service | 0.12.1-3 | - +- amd64 | dconf-tools | 0.12.1-3 | - +- amd64 | dcraw | 8.99-1+b2 | - +- amd64 | dctrl-tools | 2.22.2 | - +- amd64 | ddccontrol | 0.4.2-10 | - +- amd64 | ddd | 1:3.3.12-4 | - +- amd64 | ddns3-client | 1.8-12 | - +- amd64 | ddpt | 0.92-1 | - +- amd64 | dds | 2.1.2+ddd105-1 | - +- amd64 | dds2tar | 2.5.2-4 | - +- amd64 | deal | 3.1.9-3 | - +- amd64 | dealer | 0.20040530-4 | - +- amd64 | deb-gview | 0.2.9 | - +- amd64 | debconf-kde-dbg | 0.2-2 | - +- amd64 | debconf-kde-helper | 0.2-2 | - +- amd64 | debdelta | 0.50+2 | - +- amd64 | debfoster | 2.7-1.2 | - +- amd64 | debian-installer | 20130613+deb7u1+b2 | - +- amd64 | debian-xcontrol | 0.0.4-1.1+b2 | - +- amd64 | debianutils | 4.3.2 | - +- amd64 | deborphan | 1.7.28.8 | - +- amd64 | debram | 1.0.3-0.2 | - +- amd64 | debsig-verify | 0.8 | - +- amd64 | debtags | 1.10.1 | - +- amd64 | dee-tools | 1.0.10-3 | - +! amd64 | deets | 0.1.3-1 | 0.2-3~bpo70+1 +- amd64 | default-jdk | 1:1.6-47 | - +- amd64 | default-jre | 1:1.6-47 | - +- amd64 | default-jre-headless | 1:1.6-47 | - +- amd64 | defendguin | 0.0.12-4 | - +- amd64 | deja-dup | 20.2-2.1 | - +- amd64 | deja-dup-dbg | 20.2-2.1 | - +- amd64 | delta | 2006.08.03-3 | - ++ amd64 | deltarpm | - | 3.6+dfsg-1~bpo7+1 +- amd64 | denemo | 0.9.2-3 | - +- amd64 | depqbf | 0.1-1 | - +- amd64 | desklaunch | 1.1.8 | - +- amd64 | deskmenu | 1.4.5 | - +! amd64 | desktop-file-utils | 0.20-0.1 | 0.21-1~bpo70+1 +- amd64 | desktopnova | 0.8.1-1 | - +- amd64 | desktopnova-module-gnome | 0.8.1-1 | - +- amd64 | desktopnova-module-xfce | 0.8.1-1 | - +- amd64 | desktopnova-tray | 0.8.1-1 | - +- amd64 | desmume | 0.9.8-1 | - +- amd64 | desproxy | 0.1.0~pre3-8 | - +- amd64 | detox | 1.2.0-5 | - +- amd64 | deutex | 4.4.902-13 | - +- amd64 | devhelp | 3.4.1-1 | - +- amd64 | device-tree-compiler | 1.3.0-4 | - +- amd64 | devilspie | 0.22-2 | - +! amd64 | devilspie2 | 0.20-1 | 0.32-1~bpo70+1 +- amd64 | devio | 1.2-1+b1 | - +- amd64 | devrplay3 | 3.3.2-14 | - +! amd64 | devscripts | 2.12.6+deb7u2 | 2.13.4~bpo70+1 +- amd64 | devtodo | 0.1.20-6 | - +- amd64 | dfc | 2.5.0-1 | - +- amd64 | dff | 1.2.0+dfsg.1-1 | - +- amd64 | dfu-programmer | 0.5.4-1 | - +- amd64 | dfu-util | 0.5-1 | - +- amd64 | dh-ada-library | 3 | - +- amd64 | dh-exec | 0.4 | - +- amd64 | dhcp-helper | 1.1-1 | - +- amd64 | dhcp-probe | 1.3.0-10 | - +- amd64 | dhcpcd | 1:3.2.3-11 | - +- amd64 | dhcpcd-dbus | 0.6.0-1 | - +- amd64 | dhcpcd-gtk | 0.6.0-1 | - +- amd64 | dhcpcd5 | 5.5.6-1 | - +- amd64 | dhcpdump | 1.8-2 | - +- amd64 | dhcping | 1.2-4 | - +- amd64 | dhex | 0.67-1 | - +- amd64 | dhis-client | 5.5-4 | - +- amd64 | dhis-dns-engine | 5.3-1 | - +- amd64 | dhis-mx-sendmail-engine | 5.0-2 | - +- amd64 | dhis-server | 5.3-2.1 | - +- amd64 | dhis-tools-dns | 5.0-6.1 | - +- amd64 | dhis-tools-genkeys | 5.0-6.1 | - +- amd64 | di | 4.30-1 | - +- amd64 | dia | 0.97.2-8 | - +- amd64 | dia-gnome | 0.97.2-8 | - +- amd64 | dia-libs | 0.97.2-8 | - +- amd64 | dia2code | 0.8.3-4 | - +- amd64 | dialign | 2.2.1-5 | - +- amd64 | dialign-tx | 1.0.2-2 | - +- amd64 | dialog | 1.1-20120215-2 | - +- amd64 | diatheke | 1.6.2+dfsg-5 | - +- amd64 | dibbler-client | 0.8.2-1 | - +- amd64 | dibbler-relay | 0.8.2-1 | - +- amd64 | dibbler-server | 0.8.2-1 | - +- amd64 | dicelab | 0.7-1 | - +- amd64 | dico | 2.1-3+b2 | - +- amd64 | dico-dev | 2.1-3+b2 | - +- amd64 | dico-module-guile | 2.1-3+b2 | - +- amd64 | dico-module-python | 2.1-3+b2 | - +- amd64 | dicod | 2.1-3+b2 | - +- amd64 | dicom3tools | 1.0~20120505-1 | - +- amd64 | dicomnifti | 2.30.0-1 | - +- amd64 | dicomscope | 3.6.0-10 | - +- amd64 | dict | 1.12.0+dfsg-5 | - +- amd64 | dictconv | 0.2-7 | - +- amd64 | dictd | 1.12.0+dfsg-5 | - +- amd64 | dictfmt | 1.12.0+dfsg-5 | - +- amd64 | diction | 1.10~rc4-1 | - +- amd64 | dictionaryreader.app | 0+20080616+dfsg-2+b3 | - +- amd64 | dictzip | 1.12.0+dfsg-5 | - +- amd64 | didiwiki | 0.5-11 | - +- amd64 | dieharder | 3.31.1-4 | - +- amd64 | diet-agent | 2.8.0-1+b1 | - +- amd64 | dietlibc-dev | 0.33~cvs20120325-4 | - +- amd64 | diffpdf | 2.1.1-1 | - +- amd64 | diffstat | 1.55-3 | - +- amd64 | diffutils | 1:3.2-6 | - +- amd64 | digikam | 4:2.6.0-1+b2 | - +- amd64 | digikam-dbg | 4:2.6.0-1+b2 | - +- amd64 | digitemp | 3.5.0ds1-2 | - +- amd64 | dillo | 3.0.2-2 | - +- amd64 | dimbl | 0.11-1 | - +- amd64 | dime | 0.20030921-2 | - +- amd64 | dino | 0.2.8-3 | - +- amd64 | diod | 1.0.13-3 | - +- amd64 | dirac | 1.0.2-6 | - +- amd64 | dircproxy | 1.0.5-5.1 | - +- amd64 | dirdiff | 2.1-5 | - +- amd64 | directvnc | 0.7.7-1 | - +- amd64 | dirmngr | 1.1.0-3 | - +- amd64 | dis51 | 0.5-1.1 | - +- amd64 | discount | 2.1.3-3 | - +- amd64 | discover | 2.1.2-5.2 | - ++ amd64 | diskscan | - | 0.13-1~bpo70+1 +- amd64 | disktype | 9-1 | - +- amd64 | display-dhammapada | 0.23-7 | - +- amd64 | distcc | 3.1-5 | - +- amd64 | distcc-pump | 3.1-5 | - +- amd64 | distccmon-gnome | 3.1-5 | - +- amd64 | distro-info | 0.10 | - +- amd64 | disulfinder | 1.2.11-2+b1 | - +- amd64 | djmount | 0.71-5+b1 | - +- amd64 | djtools | 1.2.7 | - +- amd64 | djview | 3.5.25.3-1 | - +- amd64 | djview-plugin | 4.9-2 | - +- amd64 | djview3 | 3.5.25.3-1 | - +- amd64 | djview4 | 4.9-2 | - +- amd64 | djvulibre-bin | 3.5.25.3-1 | - +- amd64 | djvulibre-dbg | 3.5.25.3-1 | - +- amd64 | djvuserve | 3.5.25.3-1 | - +- amd64 | dkopp | 6.2-1 | - +- amd64 | dlm-pcmk | 3.0.12-3.2+deb7u2 | - +- amd64 | dlz-ldap-enum | 1.0.2-1 | - +- amd64 | dmake | 1:4.12-2 | - +- amd64 | dmeventd | 2:1.02.74-8 | - +- amd64 | dmg2img | 1.6.2-2+b1 | - +- amd64 | dmidecode | 2.11-9 | - +- amd64 | dmidecode-dbg | 2.11-9 | - +- amd64 | dmitry | 1.3a-1 | - +- amd64 | dmraid | 1.0.0.rc16-4.2 | - +- amd64 | dmsetup | 2:1.02.74-8 | - +- amd64 | dmtcp | 1.2.5-1 | - +- amd64 | dmtcp-dbg | 1.2.5-1 | - +- amd64 | dmucs | 0.6.1-2.1 | - +- amd64 | dnet-progs | 2.60 | - +- amd64 | dns-flood-detector | 1.12-7 | - +- amd64 | dns2tcp | 0.5.2-1 | - +- amd64 | dnshistory | 1.3-2+b1 | - +- amd64 | dnsmasq-base | 2.62-3+deb7u1 | - +- amd64 | dnsmasq-utils | 2.62-3+deb7u1 | - +- amd64 | dnsproxy | 1.16-0.1+b1 | - +- amd64 | dnstop | 20120611-2 | - +- amd64 | dnstracer | 1.9-4 | - +- amd64 | dnsutils | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | docbook-to-man | 1:2.0.0-31 | - +- amd64 | docbook-xsl-saxon-gcj | 1.00.dfsg.1-5 | - +- amd64 | docbook2x | 0.8.8-8 | - +- amd64 | docker | 1.4-5 | - +- amd64 | docsis | 0.9.6+git16-g61ee500+dfsg-2 | - ++ amd64 | doctest | - | 0.9.1-1~bpo70+1 +- amd64 | dodgindiamond2 | 0.2.2-1 | - +- amd64 | dolphin | 4:4.8.4-2 | - +- amd64 | donkey | 0.5-19 | - +- amd64 | doodle | 0.7.0-5 | - +- amd64 | doodle-dbg | 0.7.0-5 | - +- amd64 | doodled | 0.7.0-5 | - +- amd64 | doomsday | 1.9.0-beta6.9+dfsg1-2.1 | - +- amd64 | dopewars | 1.5.12-13 | - +- amd64 | dos2unix | 6.0-1 | - +- amd64 | dosbox | 0.74-3 | - +- amd64 | doscan | 0.3.1-3 | - +- amd64 | doschk | 1.1-6 | - +- amd64 | dose-builddebcheck | 3.0.2-3 | - +- amd64 | dose-distcheck | 3.0.2-3 | - +- amd64 | dose-extra | 3.0.2-3 | - +- amd64 | dosfstools | 3.0.13-1 | - +- amd64 | dosfstools-dbg | 3.0.13-1 | - +- amd64 | dossizola | 1.0-8.3 | - +- amd64 | dot-forward | 1:0.71-2 | - +- amd64 | dotmcp | 0.2.2-8 | - +- amd64 | dotur | 1.53-2 | - +- amd64 | dov4l | 0.9-4.1 | - +! amd64 | dovecot-antispam | 2.0+20120225-3 | 2.0+20130822-2~bpo70+1 +! amd64 | dovecot-core | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-dbg | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-dev | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-gssapi | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-imapd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-ldap | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-lmtpd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-managesieved | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-mysql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-pgsql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-pop3d | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-sieve | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-solr | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-sqlite | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +- amd64 | downtimed | 0.5-2 | - +- amd64 | doxygen | 1.8.1.2-2 | - +- amd64 | doxygen-gui | 1.8.1.2-2 | - +- amd64 | doxymacs | 1.8.0-6 | - +- amd64 | dozzaqueux | 3.21-4 | - +- amd64 | dpkg | 1.16.12 | - +- amd64 | dpm | 1.8.2-1+b2 | - +- amd64 | dpm-copy-server-mysql | 1.8.2-1+b2 | - +- amd64 | dpm-copy-server-postgres | 1.8.2-1+b2 | - +- amd64 | dpm-name-server-mysql | 1.8.2-1+b2 | - +- amd64 | dpm-name-server-postgres | 1.8.2-1+b2 | - +- amd64 | dpm-rfio-server | 1.8.2-1+b2 | - +- amd64 | dpm-server-mysql | 1.8.2-1+b2 | - +- amd64 | dpm-server-postgres | 1.8.2-1+b2 | - +- amd64 | dpm-srm-server-mysql | 1.8.2-1+b2 | - +- amd64 | dpm-srm-server-postgres | 1.8.2-1+b2 | - +- amd64 | dpt-i2o-raidutils | 0.0.6-19 | - +- amd64 | drac | 1.12-7.2 | - +- amd64 | drac-dev | 1.12-7.2 | - +- amd64 | dradio | 3.8-2 | - +- amd64 | dragonplayer | 4:4.8.4-2 | - +- amd64 | drawmap | 2.5-3 | - +- amd64 | drawterm | 20110822-1 | - +- amd64 | drawtiming | 0.7.1-5 | - +- amd64 | drawxtl | 5.5-3 | - +! amd64 | drbd8-utils | 2:8.3.13-2 | 2:8.4.4-1~bpo70+1 +- amd64 | drc | 3.2.0~dfsg0-1 | - +- amd64 | dreamchess | 0.2.0-3 | - +- amd64 | drgeo | 1.1.0-10 | - +- amd64 | driftnet | 0.1.6+cvs20040426-3 | - +- amd64 | drivel | 3.0.3-1 | - +- amd64 | drizzle | 1:7.1.36-stable-1 | - +- amd64 | drizzle-client | 1:7.1.36-stable-1 | - +- amd64 | drizzle-dbg | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-auth-file | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-auth-http | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-auth-ldap | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-auth-pam | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-auth-schema | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-debug | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-dev | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-gearman-udf | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-http-functions | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-js | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-json-server | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-logging-gearman | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-logging-query | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-perf-dictionary | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-query-log | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-rabbitmq | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-regex-policy | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-simple-user-policy | 1:7.1.36-stable-1 | - +- amd64 | drizzle-plugin-slave | 1:7.1.36-stable-1 | - +- amd64 | dropbear | 2012.55-1.3 | - +- amd64 | drumstick-tools | 0.5.0-3 | - +- amd64 | dsbltesters | 0.9.5-4 | - +- amd64 | dsc-statistics-collector | 201203250530-2 | - +- amd64 | dsdp | 5.8-9.1 | - +- amd64 | dselect | 1.16.12 | - +- amd64 | dsh | 0.25.10-1 | - +- amd64 | dsniff | 2.4b1+debian-22 | - +- amd64 | dspam | 3.10.1+dfsg-11 | - +- amd64 | dspam-dbg | 3.10.1+dfsg-11 | - +- amd64 | dssi-example-plugins | 1.1.1~dfsg0-1 | - +- amd64 | dssi-host-jack | 1.1.1~dfsg0-1 | - +- amd64 | dssi-utils | 1.1.1~dfsg0-1 | - +- amd64 | dssp | 2.0.4-2 | - +- amd64 | dssp-dbg | 2.0.4-2 | - +- amd64 | dsyslog | 0.6.0+b2 | - +- amd64 | dsyslog-dbg | 0.6.0+b2 | - +- amd64 | dsyslog-module-gnutls | 0.6.0+b2 | - +- amd64 | dsyslog-module-mysql | 0.6.0+b2 | - +- amd64 | dsyslog-module-postgresql | 0.6.0+b2 | - +- amd64 | dtach | 0.8-2.1 | - +- amd64 | dtaus | 0.9-1 | - +- amd64 | duende | 1.4.12-5 | - +- amd64 | duff | 0.5.2-1 | - +- amd64 | duma | 2.5.15-1.1 | - +- amd64 | dump | 0.4b44-1 | - +- amd64 | dumpasn1 | 20120521-1 | - +- amd64 | dumpet | 2.1-4 | - +- amd64 | dunst | 0.2.0-3 | - +- amd64 | duplicity | 0.6.18-3 | - +- amd64 | dv4l | 1.0-5 | - +- amd64 | dvb-apps | 1.1.1+rev1483-1 | - +- amd64 | dvb-tools | 0.8.8-3 | - +- amd64 | dvbackup | 1:0.0.4-7 | - +- amd64 | dvbcut | 0.5.4+svn178-2 | - +- amd64 | dvblast | 2.2-1 | - +- amd64 | dvbsnoop | 1.4.50-4 | - +- amd64 | dvbstream | 0.6+cvs20090621-1 | - +- amd64 | dvbstreamer | 2.1.0-2.3 | - +- amd64 | dvbtune | 0.5.ds-1 | - +- amd64 | dvd+rw-tools | 7.1-10 | - +- amd64 | dvd+rw-tools-dbg | 7.1-10 | - +- amd64 | dvdauthor | 0.7.0-1.1+b2 | - +- amd64 | dvdbackup | 0.4.2-1 | - +- amd64 | dvdbackup-dbg | 0.4.2-1 | - +- amd64 | dvdisaster | 0.72.4-1 | - +- amd64 | dvdtape | 1.6-1 | - +- amd64 | dvgrab | 3.5-2 | - +- amd64 | dvhtool | 1.0.1-5 | - +- amd64 | dvi2dvi | 2.0alpha-9.2 | - +- amd64 | dvi2ps | 5.1j-1+b1 | - +- amd64 | dvidvi | 1.0-8etch2 | - +- amd64 | dvifb | 1:01.03-14.1+b1 | - +- amd64 | dvilx | 1:01.03-14.1+b1 | - +- amd64 | dvipng | 1.14-1+b1 | - +- amd64 | dvipost | 1.1-4 | - +- amd64 | dvipsk-ja | 5.98+p1.7b-1.1 | - +- amd64 | dvorak7min | 1.6.1-13.1 | - +- amd64 | dvsink | 0.8.3.6-1+b2 | - +- amd64 | dvsource | 0.8.3.6-1+b2 | - +- amd64 | dvswitch | 0.8.3.6-1+b2 | - +- amd64 | dvtm | 0.6-1 | - +- amd64 | dwarfdump | 20120410-2 | - +- amd64 | dwarves | 1.10-2 | - +- amd64 | dwb | 20120628hg-1 | - +- amd64 | dwdiff | 2.0.4-1 | - +- amd64 | dwm | 6.0-4 | - +- amd64 | dwww | 1.11.8 | - +- amd64 | dwz | 0.4-1 | - +- amd64 | dx | 1:4.4.4-4+b2 | - +- amd64 | dxpc | 3.9.2-3 | - +- amd64 | dynalogin-server | 0.9.14-2 | - +- amd64 | dynamite | 0.1.1-2 | - +- amd64 | dynare | 4.3.0-2 | - +- amd64 | dzedit | 20061220+dfsg3-2 | - +- amd64 | dzen2 | 0.8.5-4 | - +- amd64 | e00compr | 1.0.1-2 | - +- amd64 | e2fsck-static | 1.42.5-1.1 | - +- amd64 | e2fslibs | 1.42.5-1.1 | - +- amd64 | e2fslibs-dbg | 1.42.5-1.1 | - +- amd64 | e2fslibs-dev | 1.42.5-1.1 | - +- amd64 | e2fsprogs | 1.42.5-1.1 | - +- amd64 | e2fsprogs-dbg | 1.42.5-1.1 | - +- amd64 | e2ps | 4.34-4 | - +- amd64 | e2tools | 0.0.16-6.1 | - +- amd64 | e2undel | 0.82-1.1 | - +- amd64 | e3 | 1:2.71-1 | - +- amd64 | eancheck | 1.0-1.1 | - +- amd64 | easychem | 0.6-7 | - +- amd64 | easyh10 | 1.5-1 | - +- amd64 | easymp3gain-gtk | 0.5.0+svn135-1 | - +- amd64 | easymp3gain-gtk-dbg | 0.5.0+svn135-1 | - +- amd64 | easytag | 2.1.7-2 | - +- amd64 | eatmydata | 26-2 | - +- amd64 | eb-utils | 4.4.3-6 | - +- amd64 | ebhttpd | 1:1.0.dfsg.1-4.3 | - +- amd64 | eblook | 1:1.6.1-12 | - +- amd64 | ebnetd | 1:1.0.dfsg.1-4.3 | - +- amd64 | ebnetd-common | 1:1.0.dfsg.1-4.3 | - +- amd64 | eboard | 1.1.1-5 | - +- amd64 | ebook-speaker | 2.0-3 | - +- amd64 | ebook-speaker-dbg | 2.0-3 | - +- amd64 | ebook-tools-dbg | 0.2.1-2+b1 | - +- amd64 | ebtables | 2.0.10.4-1 | - +- amd64 | ebumeter | 0.1.0~dfsg-2 | - +- amd64 | ebview | 0.3.6.2-1.2 | - +- amd64 | ecasound | 2.9.0-1 | - +- amd64 | ecatools | 2.9.0-1 | - +- amd64 | echoping | 6.0.2-6 | - +- amd64 | ecj | 3.5.1-3 | - +- amd64 | ecj-gcj | 3.5.1-3 | - +- amd64 | ecl | 11.1.1+dfsg1-2 | - +- amd64 | eclipse-cdt-jni | 8.1.0+dfsg-2 | - +- amd64 | eclipse-pde | 3.8.0~rc4-1 | - +- amd64 | eclipse-platform | 3.8.0~rc4-1 | - +- amd64 | eclipse-rcp | 3.8.0~rc4-1 | - +- amd64 | ecm | 1.03-1 | - +- amd64 | ecryptfs-utils | 99-1 | - +- amd64 | ecryptfs-utils-dbg | 99-1 | - +- amd64 | ed | 1.6-2 | - +- amd64 | ed2k-hash | 0.3.3+deb2-1 | - +- amd64 | edac-utils | 0.18-1 | - +- amd64 | edenmath.app | 1.1.1a-7+b5 | - +- amd64 | edfbrowser | 1.48-1 | - +- amd64 | edisplay | 0.8.5-5+deb7u3 | - +- amd64 | edos-distcheck | 1.4.2-13+b1 | - +- amd64 | education-astronomy | 1.713+deb7u1 | - +- amd64 | education-chemistry | 1.713+deb7u1 | - +- amd64 | education-common | 1.713+deb7u1 | - +- amd64 | education-desktop-gnome | 1.713+deb7u1 | - +- amd64 | education-desktop-kde | 1.713+deb7u1 | - +- amd64 | education-desktop-lxde | 1.713+deb7u1 | - +- amd64 | education-desktop-other | 1.713+deb7u1 | - +- amd64 | education-desktop-sugar | 1.713+deb7u1 | - +- amd64 | education-desktop-xfce | 1.713+deb7u1 | - +- amd64 | education-development | 1.713+deb7u1 | - +- amd64 | education-electronics | 1.713+deb7u1 | - +- amd64 | education-geography | 1.713+deb7u1 | - +- amd64 | education-graphics | 1.713+deb7u1 | - +- amd64 | education-language | 1.713+deb7u1 | - +- amd64 | education-laptop | 1.713+deb7u1 | - +- amd64 | education-logic-games | 1.713+deb7u1 | - +- amd64 | education-main-server | 1.713+deb7u1 | - +- amd64 | education-mathematics | 1.713+deb7u1 | - +- amd64 | education-menus | 1.713+deb7u1 | - +- amd64 | education-misc | 1.713+deb7u1 | - +- amd64 | education-music | 1.713+deb7u1 | - +- amd64 | education-networked | 1.713+deb7u1 | - +- amd64 | education-physics | 1.713+deb7u1 | - +- amd64 | education-services | 1.713+deb7u1 | - +- amd64 | education-standalone | 1.713+deb7u1 | - +- amd64 | education-tasks | 1.713+deb7u1 | - +- amd64 | education-thin-client | 1.713+deb7u1 | - +- amd64 | education-thin-client-server | 1.713+deb7u1 | - +- amd64 | education-workstation | 1.713+deb7u1 | - +- amd64 | eegdev-plugins-free | 0.2-3 | - +- amd64 | eep24c | 0.1.2-5 | - +- amd64 | efax | 1:0.9a-19 | - +- amd64 | efax-gtk | 3.2.8-1+b1 | - +- amd64 | efibootmgr | 0.5.4-3 | - +- amd64 | efilinux | 1.0-2 | - +- amd64 | efingerd | 1.6.2.7+nmu1 | - +- amd64 | eflite | 0.4.1-6 | - +- amd64 | efte | 1.1-1 | - +- amd64 | eggdrop | 1.6.20-1 | - +- amd64 | eiciel | 0.9.8.1-3 | - +- amd64 | einstein | 2.0.dfsg.2-9 | - +! amd64 | eiskaltdcpp-daemon | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-daemon-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-gtk | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-gtk-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 ++ amd64 | eiskaltdcpp-gtk3 | - | 2.2.9-3~bpo70+1 ++ amd64 | eiskaltdcpp-gtk3-dbg | - | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-qt | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-qt-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 ++ amd64 | eiskaltdcpp-qt-mini | - | 2.2.9-3~bpo70+1 ++ amd64 | eiskaltdcpp-qt-mini-dbg | - | 2.2.9-3~bpo70+1 +- amd64 | ejabberd | 2.1.10-4+deb7u1 | - +- amd64 | eject | 2.1.5+deb1+cvs20081104-13 | - +- amd64 | ekeyd | 1.1.5-4 | - +- amd64 | ekeyd-egd-linux | 1.1.5-4 | - +- amd64 | ekg | 1:1.9~pre+r2854-1 | - +- amd64 | ekg-gtk | 1:1.9~pre+r2854-1 | - +- amd64 | ekg2 | 1:0.3.1-3 | - +- amd64 | ekg2-core | 1:0.3.1-3 | - +- amd64 | ekg2-dbg | 1:0.3.1-3 | - +- amd64 | ekg2-gnupg | 1:0.3.1-3 | - +- amd64 | ekg2-jabber | 1:0.3.1-3 | - +- amd64 | ekg2-remote | 1:0.3.1-3 | - +- amd64 | ekg2-scripting-perl | 1:0.3.1-3 | - +- amd64 | ekg2-scripting-python | 1:0.3.1-3 | - +- amd64 | ekg2-ui-gtk | 1:0.3.1-3 | - +- amd64 | ekg2-ui-ncurses | 1:0.3.1-3 | - +- amd64 | ekg2-xosd | 1:0.3.1-3 | - +- amd64 | ekiga | 3.2.7-6 | - +- amd64 | ekiga-dbg | 3.2.7-6 | - +- amd64 | elastix | 4.5-2 | - +- amd64 | electric-fence | 2.2.4 | - +- amd64 | electricsheep | 2.7~b12+svn20091224-1.1 | - +- amd64 | eleeye | 0.29.6-2 | - +- amd64 | elektra-bin | 0.7.1-1 | - +- amd64 | elfrc | 0.7-1 | - +- amd64 | elfutils | 0.152-1+wheezy1 | - +- amd64 | elilo | 3.14-2 | - +- amd64 | elinks | 0.12~pre5-9 | - +- amd64 | elinks-lite | 0.12~pre5-9 | - +- amd64 | elk | 3.99.8-2 | - +- amd64 | elmer | 6.1.0.svn.5396.dfsg2-2 | - +- amd64 | elmer-dbg | 6.1.0.svn.5396.dfsg2-2 | - +- amd64 | elvis | 2.2.0-11.1 | - +- amd64 | elvis-console | 2.2.0-11.1 | - +- amd64 | elvis-tiny | 1.4-23 | - +- amd64 | elvis-tools | 2.2.0-11.1 | - +- amd64 | emacs-mozc | 1.5.1090.102-4+deb7u1 | - +- amd64 | emacs-mozc-bin | 1.5.1090.102-4+deb7u1 | - +- amd64 | emacs23 | 23.4+1-4 | - +- amd64 | emacs23-bin-common | 23.4+1-4 | - +- amd64 | emacs23-lucid | 23.4+1-4 | - +- amd64 | emacs23-nox | 23.4+1-4 | - +- amd64 | embassy-domainatrix | 0.1.0+20110714-1 | - +- amd64 | embassy-domalign | 0.1.0+20110714-1 | - +- amd64 | embassy-domsearch | 1:0.1.0+20110714-1 | - +- amd64 | ember | 0.6.2+dfsg-2 | - +- amd64 | emboss | 6.4.0-2 | - +- amd64 | emboss-lib | 6.4.0-2 | - +- amd64 | emerillon | 0.1.90-1 | - +- amd64 | emerillon-dev | 0.1.90-1 | - +- amd64 | emms | 3.0+20110425+1.git298e022-4 | - +- amd64 | empathy | 3.4.2.3-2+deb7u1 | - +- amd64 | empathy-dbg | 3.4.2.3-2+deb7u1 | - +- amd64 | empire | 1.7-3 | - +- amd64 | empire-hub | 1.0.2.1 | - +- amd64 | empire-lafe | 1.1-1 | - +- amd64 | empty-expect | 0.6.18b-3 | - +- amd64 | emu8051 | 1.1.0-1 | - +- amd64 | enblend | 4.0+dfsg-4+b3 | - +- amd64 | enca | 1.13-4 | - +- amd64 | encfs | 1.7.4-2.4+b1 | - +- amd64 | enchant | 1.6.0-7 | - +- amd64 | enemylines3 | 1.2-7 | - +- amd64 | enemylines7 | 0.6-3 | - +- amd64 | enfuse | 4.0+dfsg-4+b3 | - +- amd64 | engauge-digitizer | 5.0-3 | - +- amd64 | enigma | 1.10~~pre-alpha+r2236-1 | - +- amd64 | enigmail | 2:1.4.1-2 | - +- amd64 | enna | 0.4.1~r3557-2.1 | - +- amd64 | enna-dbg | 0.4.1~r3557-2.1 | - +- amd64 | enscribe | 0.1.0-1.1 | - +- amd64 | enscript | 1.6.5.90-2 | - +- amd64 | ent | 1.1debian-2 | - +- amd64 | enum | 1.1-1 | - +- amd64 | environment-modules | 3.2.9c-3 | - +- amd64 | envstore | 2.0.4-1 | - +- amd64 | eog | 3.4.2-1+build1 | - +- amd64 | eog-dbg | 3.4.2-1+build1 | - +- amd64 | eog-plugins | 3.4.1-1 | - +- amd64 | eot-utils | 1.0-1 | - +- amd64 | epdfview | 0.1.8-3 | - +- amd64 | eperl | 2.2.14-18 | - +- amd64 | epic4 | 1:2.10.1-1+b3 | - +- amd64 | epic5 | 1.1.2-2+b3 | - +- amd64 | epiphany | 0.7.0-6 | - +- amd64 | epiphany-browser | 3.4.2-2.1 | - +- amd64 | epiphany-browser-dbg | 3.4.2-2.1 | - +- amd64 | epiphany-browser-dev | 3.4.2-2.1 | - +- amd64 | epiphany-extensions | 3.4.0-2 | - +- amd64 | epix | 1.2.10-1 | - +- amd64 | epm | 4.2-6 | - +- amd64 | epsilon-bin | 0.9.1-2 | - +- amd64 | epstool | 3.08+repack-3 | - +- amd64 | epub-utils | 0.2.1-2+b1 | - +- amd64 | epwutil | 1.1-8.1 | - +- amd64 | eq10q | 1.2-2 | - +- amd64 | eql | 1.2.ds1-3 | - +- amd64 | eqonomize | 0.6-7 | - +! amd64 | erlang-appmon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-asn1 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-base | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-base-hipe | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-common-test | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-corba | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-crypto | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 ++ amd64 | erlang-dbg | - | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-debugger | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-dev | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-dialyzer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-diameter | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-edoc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-eldap | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-erl-docgen | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- amd64 | erlang-esdl | 1.2-2 | - +! amd64 | erlang-et | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-eunit | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-gs | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- amd64 | erlang-guestfs | 1:1.18.1-1+deb7u3 | - +! amd64 | erlang-ic | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-inets | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- amd64 | erlang-inviso | 1:15.b.1-dfsg-4 | - +! amd64 | erlang-megaco | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-mnesia | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-observer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-odbc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-os-mon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-parsetools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-percept | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-pman | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-public-key | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-reltool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-runtime-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-snmp | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ssh | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ssl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-syntax-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-test-server | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-toolbar | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-tv | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-typer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-webtool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-wx | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-xmerl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- amd64 | erlang-yaws | 1.94-1 | - +- amd64 | eruby | 1.0.5-2.1 | - +- amd64 | escputil | 5.2.9-1 | - +- amd64 | esekeyd | 1.2.7-1 | - +- amd64 | esmtp | 1.2-10 | - +! amd64 | esniper | 2.27.0-1 | 2.28.0-1~bpo70+1 +- amd64 | esorex | 3.9.6-1 | - +- amd64 | espctag | 0.3-1 | - +- amd64 | espeak | 1.46.02-2 | - +- amd64 | espeak-data | 1.46.02-2 | - +- amd64 | espeak-dbg | 1.46.02-2 | - +- amd64 | espeakedit | 1.46.02-2 | - +- amd64 | espeakup | 1:0.71-13 | - +- amd64 | esperanza | 0.4.0+git20091017-2+b1 | - +- amd64 | estic | 1.61-20.1 | - +- amd64 | esys-particle | 2.1-4 | - +- amd64 | eterm | 0.9.6-1 | - +- amd64 | etherape | 0.9.12-1 | - +- amd64 | etherpuppet | 0.3-2 | - +- amd64 | etherwake | 1.09-3 | - +- amd64 | ethstatus | 0.4.3 | - +- amd64 | ethtool | 1:3.4.2-1 | - +- amd64 | etl-dev | 0.04.15-1 | - +- amd64 | etsf-io | 1.0.3-4+b1 | - +- amd64 | etw | 3.6+svn140-4 | - +- amd64 | eukleides | 1.5.4-2 | - +- amd64 | euler | 1.61.0-8.1 | - +- amd64 | eurephia | 1.0.1-3+b1 | - +- amd64 | eventstat | 0.01.15-1 | - +- amd64 | evilvte | 0.5.1-1 | - +! amd64 | evilwm | 1.0.0-1 | 1.1.0-3~bpo70+1 +- amd64 | evince | 3.4.0-3.1 | - +- amd64 | evince-dbg | 3.4.0-3.1 | - +- amd64 | evince-gtk | 3.4.0-3.1 | - +- amd64 | evolution | 3.4.4-3 | - +- amd64 | evolution-data-server | 3.4.4-3 | - +- amd64 | evolution-data-server-dbg | 3.4.4-3 | - +- amd64 | evolution-data-server-dev | 3.4.4-3 | - +- amd64 | evolution-dbg | 3.4.4-3 | - +- amd64 | evolution-dev | 3.4.4-3 | - +- amd64 | evolution-ews | 3.4.4-1 | - +- amd64 | evolution-exchange | 3.4.4-1 | - +- amd64 | evolution-exchange-dbg | 3.4.4-1 | - +- amd64 | evolution-mapi | 3.4.4-1 | - +- amd64 | evolution-mapi-dbg | 3.4.4-1 | - +- amd64 | evolution-plugins | 3.4.4-3 | - +- amd64 | evolution-plugins-experimental | 3.4.4-3 | - +- amd64 | evolution-rss | 0.3.91-2 | - +- amd64 | evolution-webcal | 2.32.0-2+b1 | - +- amd64 | evolver | 2.30c.dfsg-3 | - +- amd64 | evolvotron | 0.6.1-1+wheezy1 | - +- amd64 | evtest | 1:1.30-1 | - +- amd64 | eweouz | 0.7+b1 | - +- amd64 | ewf-tools | 20100226-1+b1 | - +- amd64 | ewipe | 1.2.0-8 | - +- amd64 | exactimage | 0.8.5-5+deb7u3 | - +- amd64 | exactimage-dbg | 0.8.5-5+deb7u3 | - +- amd64 | excellent-bifurcation | 0.0.20071015-5 | - +- amd64 | execstack | 0.0.20090925-6 | - +! amd64 | exfat-fuse | 0.9.7-2 | 1.0.1-1~bpo70+1 +! amd64 | exfat-utils | 0.9.7-2 | 1.0.1-1~bpo70+1 +- amd64 | exif | 0.6.20-2 | - +- amd64 | exifprobe | 2.0.1-1 | - +- amd64 | exiftags | 1.01-5 | - +- amd64 | exiftran | 2.07-10+b1 | - +- amd64 | exim4-base | 4.80-7 | - +- amd64 | exim4-daemon-heavy | 4.80-7 | - +- amd64 | exim4-daemon-heavy-dbg | 4.80-7 | - +- amd64 | exim4-daemon-light | 4.80-7 | - +- amd64 | exim4-daemon-light-dbg | 4.80-7 | - +- amd64 | exim4-dbg | 4.80-7 | - +- amd64 | exim4-dev | 4.80-7 | - +- amd64 | eximon4 | 4.80-7 | - +- amd64 | exiv2 | 0.23-1 | - +- amd64 | exo-utils | 0.6.2-5 | - +- amd64 | exo-utils-dbg | 0.6.2-5 | - +- amd64 | exonerate | 2.2.0-6 | - +- amd64 | expat | 2.1.0-1+deb7u1 | - +- amd64 | expect | 5.45-2 | - +- amd64 | expect-dev | 5.45-2 | - +- amd64 | explain | 0.52.D002-1 | - +- amd64 | exrtools | 0.4-1.2 | - +- amd64 | ext3grep | 0.10.1-3.2 | - ++ amd64 | ext4magic | - | 0.3.1-1~bpo70+1 +- amd64 | extace | 1.9.9-6 | - +- amd64 | extlinux | 2:4.05+dfsg-6+deb7u1 | - +- amd64 | extract | 1:0.6.3-5 | - +- amd64 | extrema | 4.4.5.dfsg-3 | - +- amd64 | extremetuxracer | 0.4-5 | - +- amd64 | extremetuxracer-dbg | 0.4-5 | - +- amd64 | extsmail | 1.4-1 | - +- amd64 | extundelete | 0.2.0-2.1 | - +- amd64 | exuberant-ctags | 1:5.9~svn20110310-4 | - +- amd64 | ez-ipupdate | 3.0.11b8-13.4 | - +- amd64 | ezmlm-browse | 0.10-3 | - +- amd64 | ezstream | 0.5.6~dfsg-1 | - +- amd64 | eztrace | 0.7-2-4 | - +- amd64 | f-spot | 0.8.2-5 | - +- amd64 | f2c | 20100827-1 | - ++ amd64 | f3 | - | 2.2-1~bpo70+1 +- amd64 | faad | 2.7-8 | - +- amd64 | faad2-dbg | 2.7-8 | - +- amd64 | fact++ | 1.5.3~dfsg-1 | - +- amd64 | faifa | 0.2~svn82-1 | - +- amd64 | fair | 0.5.3-1 | - +- amd64 | fairymax | 4.8q-2 | - +- amd64 | fake | 1.1.11-1+b1 | - +- amd64 | fakepop | 11 | - +- amd64 | fakeroot | 1.18.4-2 | - +- amd64 | fakeroot-ng | 0.16-1.1 | - +- amd64 | faketime | 0.8-1 | - +- amd64 | falconpl | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-curl | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbg | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbi | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbi-firebird | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbi-mysql | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbi-postgresql | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbi-sqlite3 | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dbus | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dev | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-dmtx | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-gd2 | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-gtk | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-hpdf | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-mongodb | 0.9.6.9-git20120606-2 | - +- amd64 | falconpl-sdl | 0.9.6.9-git20120606-2 | - +- amd64 | falselogin | 0.3-4 | - +- amd64 | fam | 2.7.0-17 | - +- amd64 | fapg | 0.41-1 | - +- amd64 | farpd | 0.2-11 | - +- amd64 | fastdep | 0.16-13 | - +- amd64 | fastdnaml | 1.2.2-10 | - +- amd64 | fastforward | 1:0.51-3 | - +- amd64 | fastjar | 2:0.98-3 | - +- amd64 | fastlink | 4.1P-fix95-3 | - +- amd64 | fasttree | 2.1.4-1 | - +- amd64 | fastx-toolkit | 0.0.13.2-1 | - +- amd64 | fatattr | 1.0.1-9 | - +- amd64 | fatattr-dbg | 1.0.1-9 | - +- amd64 | fatrat | 1.1.3-5 | - +- amd64 | fatrat-czshare | 1.1.3-1 | - +- amd64 | fatrat-opensubtitles | 1.1.3-1 | - +- amd64 | fatresize | 1.0.2-6 | - +- amd64 | fatsort | 0.9.15.245-1 | - +- amd64 | faucc | 20090220-1 | - +- amd64 | fauhdlc | 20110812-1 | - +- amd64 | faumachine | 20110812-1.2 | - +- amd64 | faust | 0.9.46-2 | - +- amd64 | faustworks | 0.3.2~repack0-1 | - +- amd64 | fbautostart | 2.718281828-1 | - +- amd64 | fbb | 7.04j-8.2 | - +- amd64 | fbcat | 0.3-1 | - +- amd64 | fbdesk | 1.4.1-10 | - +- amd64 | fbi | 2.07-10+b1 | - +- amd64 | fbpager | 0.1.5~git20090221.1.8e0927e6-1 | - +- amd64 | fbpanel | 6.1-6 | - +- amd64 | fbreader | 0.12.10dfsg-8 | - +- amd64 | fbset | 2.1-25 | - +- amd64 | fbterm | 1.7-2 | - +- amd64 | fbterm-ucimf | 0.2.9-2 | - +- amd64 | fbtv | 3.102-3 | - +- amd64 | fbx-playlist | 20070531+dfsg.1-3 | - +- amd64 | fbxkb | 0.6-1.1 | - +- amd64 | fcc | 2.7-1 | - +- amd64 | fceu | 0.98.12-4.1 | - +- amd64 | fcgiwrap | 1.0.3-3 | - +! amd64 | fcitx-bin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- amd64 | fcitx-chewing | 0.1.2-2 | - +! amd64 | fcitx-config-gtk | 0.4.4-1 | 0.4.7-1~bpo70+1 +! amd64 | fcitx-config-gtk2 | 0.4.4-1 | 0.4.7-1~bpo70+1 +! amd64 | fcitx-dbg | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- amd64 | fcitx-frontend-fbterm | 0.1.4-1 | - +! amd64 | fcitx-frontend-gtk2 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-gtk3 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-qt4 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-googlepinyin | 0.1.5-2 | 0.1.6-1~bpo70+1 +- amd64 | fcitx-hangul | 0.1.1-1 | - +- amd64 | fcitx-libpinyin | 0.1.1-2 | - +! amd64 | fcitx-libs | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-libs-dev | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 ++ amd64 | fcitx-libs-gclient | - | 1:4.2.8.3-2~bpo70+1 ++ amd64 | fcitx-libs-qt | - | 1:4.2.8.3-2~bpo70+1 +- amd64 | fcitx-m17n | 0.1.2-2 | - +! amd64 | fcitx-module-cloudpinyin | 0.2.2-1+deb7u1 | 0.3.3-1~bpo70+1 +! amd64 | fcitx-module-dbus | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-kimpanel | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-lua | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 ++ amd64 | fcitx-module-quickphrase-editor | - | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-x11 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-modules | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- amd64 | fcitx-mozc | 1.5.1090.102-4+deb7u1 | - +! amd64 | fcitx-pinyin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-qw | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- amd64 | fcitx-sunpinyin | 0.3.7-1 | - +! amd64 | fcitx-table | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-amharic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-arabic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-array30 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-array30-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-bingchan | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-boshiamy | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-cangjie-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cantonese | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cantonhk | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cns11643 | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-compose | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-dianbaoma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-easy-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-emoji | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-erbi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-ipa-x-sampa | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-jyutping | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-latex | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-malayalam-phonetic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-quick-classic | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-quick3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-quick5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-rustrad | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-scj6 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-stroke5 | 0.3.1-1 | 0.3.4-1~bpo70+1 ++ amd64 | fcitx-table-t9 | - | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-tamil-remington | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-thai | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-translit | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-translit-ua | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-viqr | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-wanfeng | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wbpy | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wu | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-wubi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wubi-large | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-yawerty | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-zhengma | 0.3.1-1 | 0.3.4-1~bpo70+1 ++ amd64 | fcitx-table-zhengma-large | - | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-ziranma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-tools | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-ui-classic | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- amd64 | fcitx-ui-light | 0.1.3-2 | - +- amd64 | fcitx-unikey | 0.1.0-1 | - +- amd64 | fcode-utils | 1.0.2-3 | - +- amd64 | fcoe-utils | 1.0.23-1 | - +- amd64 | fcrackzip | 1.0-4 | - +- amd64 | fdclone | 3.00k-1 | - +- amd64 | fdm | 1.6+cvs20111013-2 | - +- amd64 | fdupes | 1.50-PR2-4 | - +- amd64 | fdutils | 5.5-20060227-6 | - +- amd64 | febootstrap | 3.17-1 | - +- amd64 | feh | 2.3-2 | - +- amd64 | felix-latin | 2.0-3.1 | - +- amd64 | fence-agents | 3.1.5-2 | - +- amd64 | festival | 1:2.1~release-5.1 | - +- amd64 | festival-dev | 1:2.1~release-5.1 | - +- amd64 | fet | 5.18.0-1 | - +- amd64 | fetchmail | 6.3.21-4 | - +- amd64 | ffado-dbus-server | 2.0.99+svn2171-2 | - +- amd64 | ffado-tools | 2.0.99+svn2171-2 | - +- amd64 | ffdiaporama | 1.3-1 | - +- amd64 | ffe | 0.2.8-1 | - +- amd64 | ffindex | 0.9.6.1-1 | - +- amd64 | ffindex-dbg | 0.9.6.1-1 | - +- amd64 | ffmpeg | 6:0.8.9-1 | - +- amd64 | ffmpeg2theora | 0.27-2 | - +- amd64 | ffmpegthumbnailer | 2.0.7-2 | - +- amd64 | ffmpegthumbnailer-dbg | 2.0.7-2 | - +- amd64 | ffmpegthumbs | 4:4.8.4-2 | - +- amd64 | ffmsindex | 2.17-1 | - +- amd64 | ffproxy | 1.6-10 | - +- amd64 | ffrenzy | 1.0.2~svn20070530-4 | - +- amd64 | fftw-dev | 2.1.5-1 | - +- amd64 | fftw2 | 2.1.5-1 | - +- amd64 | fgetty | 0.6-5 | - ++ amd64 | fglrx-atieventsd | - | 1:13.12-4~bpo70+1 ++ amd64 | fglrx-control | - | 1:13.12-4~bpo70+1 ++ amd64 | fglrx-driver | - | 1:13.12-4~bpo70+1 ++ amd64 | fglrx-legacy-atieventsd | - | 8.97.100.7-3~bpo70+1 ++ amd64 | fglrx-legacy-control | - | 8.97.100.7-3~bpo70+1 ++ amd64 | fglrx-legacy-driver | - | 8.97.100.7-3~bpo70+1 ++ amd64 | fglrx-legacy-modules-dkms | - | 8.97.100.7-3~bpo70+1 ++ amd64 | fglrx-legacy-source | - | 8.97.100.7-3~bpo70+1 ++ amd64 | fglrx-modules-dkms | - | 1:13.12-4~bpo70+1 ++ amd64 | fglrx-source | - | 1:13.12-4~bpo70+1 +- amd64 | fhist | 1.18-1 | - +- amd64 | fig2sxd | 0.20-1 | - +- amd64 | figlet | 2.2.5-2 | - +- amd64 | figtoipe | 20080517-1 | - +- amd64 | fil-plugins | 0.3.0-3 | - +! amd64 | file | 5.11-2 | 1:5.14-2~bpo70+1 ++ amd64 | file-dbg | - | 1:5.14-2~bpo70+1 +- amd64 | file-kanji | 1.1-16 | - +- amd64 | file-roller | 3.4.2-1 | - +- amd64 | filelight | 4:4.8.4-1 | - +- amd64 | fileschanged | 0.6.5-1.2 | - +- amd64 | filetea | 0.1.12+dfsg1-3 | - +- amd64 | filezilla | 3.5.3-2 | - +- amd64 | fillets-ng | 1.0.1-2 | - +- amd64 | filo | 1.1+2011020401.2 | - +- amd64 | filter | 2.6.3-1 | - +- amd64 | filtergen | 0.12.4-5.1 | - +- amd64 | filters | 2.48 | - +- amd64 | fim | 0.3-beta-prerelease-1.3+b1 | - +! amd64 | finch | 2.10.6-3 | 2.10.7-2~bpo70+1 +- amd64 | findimagedupes | 2.18-4+b2 | - +- amd64 | findutils | 4.4.2-4 | - +- amd64 | finger | 0.17-15 | - +- amd64 | fingerd | 0.17-15 | - +- amd64 | fio | 2.0.8-2 | - +- amd64 | firebird-dev | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-classic | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-classic-common | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-classic-dbg | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-server-common | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-super | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-super-dbg | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firebird2.5-superclassic | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | firedns | 0.9.12+dfsg-3 | - +- amd64 | firestarter | 1.0.3-11 | - +- amd64 | fische | 3.2.2-3 | - +- amd64 | fish | 1.23.1+20120106.git8b407a3-1 | - +- amd64 | fish-dbg | 1.23.1+20120106.git8b407a3-1 | - +- amd64 | fityk | 0.9.8-3+b1 | - +- amd64 | fiu-utils | 0.90-3 | - +- amd64 | fixincludes | 1:4.7.2-5 | - +- amd64 | fizmo-console | 0.7.2-2 | - +- amd64 | fizmo-ncursesw | 0.7.2-2 | - +- amd64 | fl-cow | 0.6-4.1 | - +- amd64 | flac | 1.2.1-6 | - +- amd64 | flactag | 2.0.4-1 | - +- amd64 | flake | 0.11-2 | - +- amd64 | flam3 | 3.0.1-2.1 | - +- amd64 | flamerobin | 0.9.3~svn+2220-1 | - +- amd64 | flare | 0.15.1-1 | - +- amd64 | flashrom | 0.9.5.2+r1546-1 | - +- amd64 | flasm | 1.62-6 | - +- amd64 | flatzinc | 3.7.3-1 | - +- amd64 | fldiff | 1.1+0-2 | - +- amd64 | fldigi | 3.21.48-1 | - +- amd64 | fldigi-dbg | 3.21.48-1 | - +- amd64 | flex | 2.5.35-10.1 | - +- amd64 | flex-old | 2.5.4a-10 | - +- amd64 | flexc++ | 0.98.00-1 | - +- amd64 | flexloader | 0.03-2 | - +- amd64 | flexml | 1.9.2-1 | - +- amd64 | flip | 1.20-1 | - +- amd64 | flite | 1.4-release-6 | - +- amd64 | flite1-dev | 1.4-release-6 | - +- amd64 | floatbg | 1.0-28 | - +- amd64 | flobopuyo | 0.20-5 | - +- amd64 | flog | 1.8-3 | - +- amd64 | floppyd | 4.0.17-1 | - +! amd64 | florence | 0.5.1-1 | 0.6.0-2~bpo70+1 +- amd64 | flow-tools | 1:0.68-12.1+b1 | - +- amd64 | flow-tools-dev | 1:0.68-12.1+b1 | - +- amd64 | flpsed | 0.5.2-1 | - +- amd64 | fltk1.1-games | 1.1.10-14 | - +- amd64 | fltk1.3-games | 1.3.0-8 | - +- amd64 | fluid | 1.3.0-8 | - +- amd64 | fluidsynth | 1.1.5-2 | - +- amd64 | fluidsynth-dssi | 1.0.0-6 | - +- amd64 | flumotion | 0.10.0-3 | - +- amd64 | flush | 0.9.12-3 | - +! amd64 | fluxbox | 1.3.2-4 | 1.3.5-1~bpo70+1 +- amd64 | flvmeta | 1.0.11-1 | - +- amd64 | flvstreamer | 2.1c1-1 | - +- amd64 | flvtool2 | 1.0.6-4 | - +- amd64 | flwm | 1.02+cvs20080422-9 | - +- amd64 | flwm-dbg | 1.02+cvs20080422-9 | - ++ amd64 | flydraw | - | 1:4.07a~dfsg1-2~bpo1-1 +- amd64 | fmit | 0.99.2-1 | - +- amd64 | fmtools | 2.0.5 | - +- amd64 | fntsample | 3.2-1+b1 | - +- amd64 | focuswriter | 1.3.6-1 | - +- amd64 | folks-tools | 0.6.9-1+b1 | - +- amd64 | fondu | 0.0.20060102-4 | - +- amd64 | font-manager | 0.5.7-4 | - +- amd64 | fontconfig | 2.9.0-7.1 | - +- amd64 | fontforge | 0.0.20120101+git-2 | - +- amd64 | fontforge-dbg | 0.0.20120101+git-2 | - +- amd64 | fontforge-extras | 0.3-2 | - +- amd64 | fontforge-nox | 0.0.20120101+git-2 | - +- amd64 | fontmatrix | 0.6.0+svn20110930-1.1 | - +- amd64 | fonts-maitreya | 6.0.5-2 | - +- amd64 | fonttools-eexecop | 2.3-1+b2 | - +- amd64 | foo-yc20 | 1.3.0-5 | - +- amd64 | foobillard | 3.0a-5 | - +- amd64 | fookb-plainx | 3.0-3 | - +- amd64 | fookb-wmaker | 3.0-3 | - +- amd64 | foomatic-db-engine | 4.0.8-3 | - +- amd64 | foomatic-filters | 4.0.17-1 | - +- amd64 | foremost | 1.5.7-4 | - +- amd64 | forked-daapd | 0.19gcd-2.1 | - +- amd64 | formed | 3.3f-1.1 | - +- amd64 | fortune-mod | 1:1.99.1-4 | - +- amd64 | fortune-zh | 1.9 | - +- amd64 | fosfat | 0.4.0-3 | - +- amd64 | fosfat-dbg | 0.4.0-3 | - +- amd64 | fosfat-dev | 0.4.0-3 | - +- amd64 | fossil | 1:1.22.1+dfsg-0.1 | - +- amd64 | fotowall | 0.9-8 | - +- amd64 | fotoxx | 11.11.1-1.1 | - +- amd64 | foundry | 0.0.20100226-1+b1 | - +- amd64 | foxtrotgps | 1.1.1-2 | - +- amd64 | foxtrotgps-dbg | 1.1.1-2 | - +- amd64 | fp-compiler | 2.6.0-9 | - +- amd64 | fp-compiler-2.6.0 | 2.6.0-9 | - +- amd64 | fp-ide | 2.6.0-9 | - +- amd64 | fp-ide-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-base | 2.6.0-9 | - +- amd64 | fp-units-base-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-db | 2.6.0-9 | - +- amd64 | fp-units-db-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-fcl | 2.6.0-9 | - +- amd64 | fp-units-fcl-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-fv | 2.6.0-9 | - +- amd64 | fp-units-fv-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-gfx | 2.6.0-9 | - +- amd64 | fp-units-gfx-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-gnome1 | 2.6.0-9 | - +- amd64 | fp-units-gnome1-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-gtk | 2.6.0-9 | - +- amd64 | fp-units-gtk-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-gtk2 | 2.6.0-9 | - +- amd64 | fp-units-gtk2-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-math | 2.6.0-9 | - +- amd64 | fp-units-math-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-misc | 2.6.0-9 | - +- amd64 | fp-units-misc-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-multimedia | 2.6.0-9 | - +- amd64 | fp-units-multimedia-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-net | 2.6.0-9 | - +- amd64 | fp-units-net-2.6.0 | 2.6.0-9 | - +- amd64 | fp-units-rtl | 2.6.0-9 | - +- amd64 | fp-units-rtl-2.6.0 | 2.6.0-9 | - +- amd64 | fp-utils | 2.6.0-9 | - +- amd64 | fp-utils-2.6.0 | 2.6.0-9 | - +- amd64 | fped | 0.0+r5986-1 | - +- amd64 | fping | 3.2-1 | - +- amd64 | fpm2 | 0.79-3 | - +- amd64 | fprint-demo | 20080303git-5 | - +- amd64 | fprintd | 0.4.1-5-g73edad0-3 | - +- amd64 | fprobe | 1.1-7.3 | - +- amd64 | fprobe-ulog | 1.1-7.3 | - +- amd64 | fqterm | 0.9.6.10-1.1 | - +- amd64 | fracplanet | 0.4.0-3 | - +- amd64 | frama-c | 20111001+nitrogen+dfsg-4 | - +- amd64 | frama-c-base | 20111001+nitrogen+dfsg-4 | - +- amd64 | francine | 0.99.8orig-6 | - +- amd64 | fraqtive | 0.4.5-6 | - +- amd64 | fraqtive-dbg | 0.4.5-6 | - +- amd64 | freeaccount | 0.7.6-1 | - +- amd64 | freebirth | 0.3.2-8 | - +- amd64 | freebsd-buildutils | 9.0-11 | - ++ amd64 | freecad | - | 0.13.2800-dfsg-1~bpo70+1 ++ amd64 | freecad-dev | - | 0.13.2800-dfsg-1~bpo70+1 +- amd64 | freecdb | 0.75 | - +- amd64 | freecell-solver-bin | 3.12.0-1 | - +! amd64 | freeciv-client-extras | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-gtk | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-sdl | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-xaw3d | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-server | 2.3.2-1 | 2.4.2-1~bpo70+1 +- amd64 | freecode-submit | 2.4-1 | - +- amd64 | freecraft | 1:1.20-1.1 | - +- amd64 | freecraft-dbg | 1:1.20-1.1 | - +- amd64 | freediams | 0.7.6-1 | - +- amd64 | freedink-dfarc | 3.10-1.1 | - +- amd64 | freedink-dfarc-dbg | 3.10-1.1 | - +- amd64 | freedink-engine | 1.08.20120427-2.1 | - +- amd64 | freedink-engine-dbg | 1.08.20120427-2.1 | - +- amd64 | freedroid | 1.0.2+cvs040112-4 | - +- amd64 | freedroidrpg | 0.15.1-1 | - +- amd64 | freefem | 3.5.8-5 | - +- amd64 | freefem++ | 3.19.1-1 | - +- amd64 | freefem3d | 1.0pre10-3.1 | - +- amd64 | freegish | 1.53+git20101011+dfsg-2 | - +- amd64 | freegish-dbg | 1.53+git20101011+dfsg-2 | - +- amd64 | freeglut3 | 2.6.0-4 | - +- amd64 | freeglut3-dbg | 2.6.0-4 | - +- amd64 | freeglut3-dev | 2.6.0-4 | - +- amd64 | freehdl | 0.0.7-1.1 | - +- amd64 | freeipmi-bmc-watchdog | 1.1.5-3 | - +- amd64 | freeipmi-ipmidetect | 1.1.5-3 | - +- amd64 | freeipmi-tools | 1.1.5-3 | - +- amd64 | freemat | 4.0-5 | - +- amd64 | freemedforms-emr | 0.7.6-1 | - +- amd64 | freemedforms-libs | 0.7.6-1 | - +- amd64 | freenect | 1:0.1.2+dfsg-6 | - +- amd64 | freepops | 0.2.9-7 | - +- amd64 | freepops-updater-fltk | 0.2.9-7 | - +- amd64 | freepops-updater-gnome | 0.2.9-7 | - +- amd64 | freeradius | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-dbg | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-iodbc | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-krb5 | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-ldap | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-mysql | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-postgresql | 2.1.12+dfsg-1.2 | - +- amd64 | freeradius-utils | 2.1.12+dfsg-1.2 | - +- amd64 | freerdp-dbg | 1.0.1-1.1+deb7u2 | - +- amd64 | freerdp-x11 | 1.0.1-1.1+deb7u2 | - +- amd64 | freesci | 0.6.4-7 | - +- amd64 | freespacenotifier | 4:4.8.4-6 | - +- amd64 | freesweep | 0.90-2 | - +- amd64 | freetalk | 3.2-11 | - +- amd64 | freetds-bin | 0.91-2+deb7u1 | - +- amd64 | freetds-dev | 0.91-2+deb7u1 | - +- amd64 | freetennis | 0.4.8-9 | - +- amd64 | freetuxtv | 0.6.5~dfsg1-1 | - +- amd64 | freetype2-demos | 2.4.9-1.1 | - +- amd64 | freewheeling | 0.6-1.1+b1 | - +- amd64 | freewnn-cserver | 1.1.1~a021+cvs20100325-6 | - +- amd64 | freewnn-jserver | 1.1.1~a021+cvs20100325-6 | - +- amd64 | freewnn-kserver | 1.1.1~a021+cvs20100325-6 | - +- amd64 | frei0r-plugins | 1.1.22git20091109-1.2 | - +- amd64 | frei0r-plugins-dev | 1.1.22git20091109-1.2 | - +- amd64 | freqtweak | 0.7.2-4+b1 | - +- amd64 | fritzing | 0.6.3b+dfsg-3.1 | - +- amd64 | frog | 0.12.15-3 | - +- amd64 | frogr | 0.7-2 | - +- amd64 | frotz | 2.43-4 | - +- amd64 | frown | 0.6.1-13 | - +- amd64 | frozen-bubble | 2.212-3 | - +- amd64 | fruit | 2.1.dfsg-6 | - ++ amd64 | fs-uae | - | 2.2.3+dfsg-4~bpo70+1 +- amd64 | fsarchiver | 0.6.15-1 | - +- amd64 | fsgateway | 0.1.1-3 | - +- amd64 | fsmark | 3.3-1 | - +- amd64 | fso-datad | 0.11.0-1 | - +- amd64 | fso-datad-dbg | 0.11.0-1 | - +- amd64 | fso-deviced | 0.11.4-1+b1 | - +- amd64 | fso-deviced-dbg | 0.11.4-1+b1 | - +- amd64 | fso-deviced-player-canberra | 0.11.4-1+b1 | - +- amd64 | fso-deviced-player-gstreamer | 0.11.4-1+b1 | - +- amd64 | fso-gpsd | 0.8-3.1 | - +- amd64 | fso-gsm0710muxd | 0.9.3.1-3 | - +- amd64 | fso-gsmd | 0.11.3-2 | - +- amd64 | fso-gsmd-dbg | 0.11.3-2 | - +- amd64 | fso-gsmd-ezx | 0.11.3-2 | - +- amd64 | fso-gsmd-gta04 | 0.11.3-2 | - +- amd64 | fso-gsmd-htc | 0.11.3-2 | - +- amd64 | fso-gsmd-openmoko | 0.11.3-2 | - +- amd64 | fso-usaged | 0.11.0-1 | - +- amd64 | fso-usaged-dbg | 0.11.0-1 | - +- amd64 | fspanel | 0.7-13 | - +- amd64 | fspy | 0.1.1-1 | - +- amd64 | fstransform | 0.9.3-1 | - +- amd64 | fstrcmp | 0.4.D001-1+deb7u1 | - +- amd64 | fsvs | 1.2.3-0+nmu1 | - +- amd64 | fswebcam | 20110717-1 | - +- amd64 | ftdi-eeprom | 0.3-2 | - +- amd64 | fte | 0.50.2b6-1 | - +- amd64 | fte-console | 0.50.2b6-1 | - +- amd64 | fte-terminal | 0.50.2b6-1 | - +- amd64 | fte-xwindow | 0.50.2b6-1 | - +- amd64 | fteqcc | 3343+svn3400-3 | - +- amd64 | ftjam | 2.5.2-1.1 | - +- amd64 | ftnchek | 3.3.1-4 | - +- amd64 | ftp | 0.17-27 | - +- amd64 | ftp-proxy | 1.9.2.4-8 | - +- amd64 | ftp-ssl | 0.17.23+0.2-1+b1 | - +- amd64 | ftp.app | 0.3-1 | - +- amd64 | ftpcopy | 0.6.7-3 | - +- amd64 | ftpd | 0.17-34 | - +- amd64 | ftpd-ssl | 0.17.33+0.3-1 | - +- amd64 | ftpgrab | 0.1.5-3 | - +- amd64 | ftplib-dev | 3.1-1-9 | - +- amd64 | ftplib3 | 3.1-1-9 | - +- amd64 | ftpmirror | 1.96+dfsg-13 | - +- amd64 | fullquottel | 0.1.2-2 | - +- amd64 | funnelweb | 3.2-4.2 | - +- amd64 | funtools | 1.4.4-3 | - +- amd64 | fuse | 2.9.0-2+deb7u1 | - +- amd64 | fuse-convmvfs | 0.2.6-2 | - +- amd64 | fuse-dbg | 2.9.0-2+deb7u1 | - +- amd64 | fuse-emulator-gtk | 1.0.0.1a+dfsg1-4 | - +- amd64 | fuse-emulator-sdl | 1.0.0.1a+dfsg1-4 | - +- amd64 | fuse-emulator-utils | 1.0.0-4 | - +- amd64 | fuse-posixovl | 1.2.20120215+gitf5bfe35-1 | - +- amd64 | fusedav | 0.2-3.1 | - +- amd64 | fuseext2 | 0.4-1 | - +- amd64 | fusefat | 0.1a-1 | - +- amd64 | fuseiso | 20070708-3 | - +- amd64 | fuseiso9660 | 0.3-1 | - +- amd64 | fusesmb | 0.8.7-1.2 | - +- amd64 | fusioninventory-agent | 2.2.3-8 | - +- amd64 | fuzz | 0.6-14 | - +! amd64 | fvwm | 1:2.5.30.ds-1.1 | 1:2.6.5.ds-3~bpo70+1 +- amd64 | fvwm1 | 1.24r-55 | - +- amd64 | fwbuilder | 5.1.0-3 | - +- amd64 | fwbuilder-dbg | 5.1.0-3 | - +- amd64 | fweb | 1.62-11.1 | - +! amd64 | fwknop-client | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! amd64 | fwknop-server | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +- amd64 | fwlogwatch | 1.2-2 | - +- amd64 | fxcyberjack | 3.99.5final.sp03-1 | - +- amd64 | fxload | 0.0.20081013-1 | - +- amd64 | fxt-tools | 0.2.6-2 | - +- amd64 | fyre | 1.0.1-4 | - +- amd64 | g++ | 4:4.7.2-1 | - +- amd64 | g++-4.4 | 4.4.7-2 | - +- amd64 | g++-4.4-multilib | 4.4.7-2 | - +- amd64 | g++-4.6 | 4.6.3-14 | - +- amd64 | g++-4.6-multilib | 4.6.3-14 | - +- amd64 | g++-4.7 | 4.7.2-5 | - +- amd64 | g++-4.7-multilib | 4.7.2-5 | - +- amd64 | g++-mingw-w64-i686 | 4.6.3-14+8 | - +- amd64 | g++-mingw-w64-x86-64 | 4.6.3-14+8 | - +- amd64 | g++-multilib | 4:4.7.2-1 | - +- amd64 | g15composer | 3.2-2 | - +- amd64 | g15daemon | 1.9.5.3-8.2 | - +- amd64 | g15macro | 1.0.3-3 | - +- amd64 | g15mpd | 1.2svn.0.svn319-3 | - +- amd64 | g15stats | 1.9.2-2 | - +- amd64 | g2ipmsg | 0.9.6+dfsg-1.1 | - +- amd64 | g3data | 1:1.5.3-2 | - +- amd64 | g3dviewer | 0.2.99.5~svn130-1 | - +- amd64 | g3dviewer-dbg | 0.2.99.5~svn130-1 | - +- amd64 | gabedit | 2.4.2-2 | - +- amd64 | gadmin-bind | 0.2.5-2 | - +- amd64 | gadmin-bind-dbg | 0.2.5-2 | - +- amd64 | gadmin-openvpn-client | 0.1.2-4 | - +- amd64 | gadmin-openvpn-client-dbg | 0.1.2-4 | - +- amd64 | gadmin-openvpn-server | 0.1.5-3.1 | - +- amd64 | gadmin-openvpn-server-dbg | 0.1.5-3.1 | - +- amd64 | gadmin-proftpd | 1:0.4.2-1 | - +- amd64 | gadmin-proftpd-dbg | 1:0.4.2-1 | - +- amd64 | gadmin-rsync | 0.1.7-1 | - +- amd64 | gadmin-rsync-dbg | 0.1.7-1 | - +- amd64 | gadmin-samba | 0.2.9-3 | - +- amd64 | gadmin-samba-dbg | 0.2.9-3 | - +- amd64 | gaffitter | 0.6.0-1 | - +- amd64 | gaiksaurus | 1.2.1+dev-0.12-6.1 | - +- amd64 | galax | 1.1-10+b3 | - +- amd64 | galax-extra | 1.1-10+b3 | - +- amd64 | galaxd | 1.1-10+b3 | - +- amd64 | galculator | 1.3.4-1 | - +- amd64 | galleta | 1.0+20040505-5+b1 | - +- amd64 | gamazons | 0.83-4 | - +- amd64 | gambas3-dev | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-cairo | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-compress | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-compress-bzlib2 | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-compress-zlib | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-crypt | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-db | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-db-mysql | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-db-odbc | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-db-postgresql | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-db-sqlite2 | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-db-sqlite3 | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-dbus | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-desktop | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-gtk | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-gui | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-image | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-image-effect | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-image-imlib | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-image-io | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-mysql | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-net | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-net-curl | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-net-smtp | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-opengl | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-opengl-glsl | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-opengl-glu | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-option | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-pcre | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-pdf | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-qt4 | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-qt4-ext | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-qt4-opengl | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-qt4-webkit | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-sdl | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-sdl-sound | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-signal | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-v4l | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-vb | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-xml | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-xml-rpc | 3.1.1-2+b2 | - +- amd64 | gambas3-gb-xml-xslt | 3.1.1-2+b2 | - +- amd64 | gambas3-runtime | 3.1.1-2+b2 | - +- amd64 | gambas3-script | 3.1.1-2+b2 | - +- amd64 | gambc | 4.2.8-1.1 | - +- amd64 | gambit | 0.2010.09.01-1.1 | - +- amd64 | gamgi | 0.15.8-1 | - +- amd64 | gamin | 0.1.10-4.1 | - +- amd64 | gamine | 1.1-2 | - +- amd64 | gammu | 1.31.90-1+b1 | - +- amd64 | gammu-smsd | 1.31.90-1+b1 | - +- amd64 | gamt | 1.3-1 | - ++ amd64 | ganeti-haskell | - | 2.9.4-1~bpo70+1 +! amd64 | ganeti-htools | 2.5.2-1 | 2.9.4-1~bpo70+1 +- amd64 | ganglia-modules-linux | 1.3.4-6 | - +- amd64 | ganglia-monitor | 3.3.8-1+nmu1 | - ++ amd64 | ganglia-nagios-bridge | - | 1.0.1-1~bpo70+1 +- amd64 | gap-core | 4r4p12-2 | - +- amd64 | gap-dev | 4r4p12-2 | - +- amd64 | gap-guava | 3.6-2 | - +- amd64 | garden-of-coloured-lights | 1.0.8-1+b1 | - +- amd64 | gargoyle-free | 2011.1-2 | - +- amd64 | garlic | 1.6-1.1 | - +- amd64 | garmin-ant-downloader | 0:20110626-1 | - +- amd64 | garmin-forerunner-tools | 0.10-3 | - +- amd64 | gatling | 0.12cvs20120114-4 | - +- amd64 | gauche | 0.9.1-5.1 | - +- amd64 | gauche-c-wrapper | 0.6.1-4.1 | - +- amd64 | gauche-dev | 0.9.1-5.1 | - +- amd64 | gauche-gdbm | 0.9.1-5.1 | - +- amd64 | gauche-gl | 0.4.4-5+b1 | - +- amd64 | gauche-zlib | 0.9.1-5.1 | - +- amd64 | gav | 0.9.0-3 | - +- amd64 | gawk | 1:4.0.1+dfsg-2.1 | - +- amd64 | gbase | 0.5-2.2 | - +- amd64 | gbatnav | 1.0.4cvs20051004-5 | - +- amd64 | gbemol | 0.3.2-2 | - +- amd64 | gbgoffice | 1.4-8 | - +- amd64 | gbonds | 2.0.3-2.1 | - +- amd64 | gbrowse-calign | 2.48~dfsg-1 | - +- amd64 | gbsplay | 0.0.91-1 | - +- amd64 | gcal | 3.6.1-2 | - +- amd64 | gcalctool | 6.4.2.1-3 | - +- amd64 | gcb | 1:1.07-3 | - +- amd64 | gcc | 4:4.7.2-1 | - +- amd64 | gcc-4.4 | 4.4.7-2 | - +- amd64 | gcc-4.4-base | 4.4.7-2 | - +- amd64 | gcc-4.4-multilib | 4.4.7-2 | - +- amd64 | gcc-4.6 | 4.6.3-14 | - +- amd64 | gcc-4.6-base | 4.6.3-14 | - +- amd64 | gcc-4.6-multilib | 4.6.3-14 | - +- amd64 | gcc-4.6-plugin-dev | 4.6.3-14 | - +- amd64 | gcc-4.7 | 4.7.2-5 | - +- amd64 | gcc-4.7-base | 4.7.2-5 | - +- amd64 | gcc-4.7-multilib | 4.7.2-5 | - +- amd64 | gcc-4.7-plugin-dev | 4.7.2-5 | - +- amd64 | gcc-avr | 1:4.7.2-2 | - +- amd64 | gcc-h8300-hms | 1:3.4.6+dfsg-1 | - +- amd64 | gcc-m68hc1x | 1:3.3.6+3.1+dfsg-3 | - +- amd64 | gcc-mingw-w64-base | 4.6.3-14+8 | - +- amd64 | gcc-mingw-w64-i686 | 4.6.3-14+8 | - +- amd64 | gcc-mingw-w64-x86-64 | 4.6.3-14+8 | - +- amd64 | gcc-msp430 | 4.6.3~mspgcc-20120406-3+deb7u2 | - +- amd64 | gcc-multilib | 4:4.7.2-1 | - +- amd64 | gccgo | 4:4.7.2-1 | - +- amd64 | gccgo-4.7 | 4.7.2-5 | - +- amd64 | gccgo-4.7-multilib | 4.7.2-5 | - +- amd64 | gccgo-multilib | 4:4.7.2-1 | - +- amd64 | gccxml | 0.9.0+cvs20120420-4 | - +- amd64 | gcdmaster | 1:1.2.3-0.3 | - +- amd64 | gchempaint | 0.12.12-1 | - +- amd64 | gcin | 2.7.6.1+dfsg-1 | - +- amd64 | gcin-anthy | 2.7.6.1+dfsg-1 | - +- amd64 | gcin-chewing | 2.7.6.1+dfsg-1 | - +- amd64 | gcin-gtk3-immodule | 2.7.6.1+dfsg-1 | - +- amd64 | gcin-qt4-immodule | 2.7.6.1+dfsg-1 | - +- amd64 | gcin-tables | 2.7.6.1+dfsg-1 | - +- amd64 | gcj-4.6-base | 4.6.3-1 | - +- amd64 | gcj-4.6-jdk | 4.6.3-1 | - +- amd64 | gcj-4.6-jre | 4.6.3-1 | - +- amd64 | gcj-4.6-jre-headless | 4.6.3-1 | - +- amd64 | gcj-4.7-base | 4.7.2-3 | - +- amd64 | gcj-4.7-jdk | 4.7.2-3 | - +- amd64 | gcj-4.7-jre | 4.7.2-3 | - +- amd64 | gcj-4.7-jre-headless | 4.7.2-3 | - +- amd64 | gcj-jdk | 4:4.7.2-1 | - +- amd64 | gcj-jre | 4:4.7.2-1 | - +- amd64 | gcj-jre-headless | 4:4.7.2-1 | - +- amd64 | gcj-native-helper | 1:1.6-47 | - +- amd64 | gcl | 2.6.7+dfsga-1 | - +- amd64 | gcolor2 | 0.4-2.1 | - +- amd64 | gcompris | 12.01-1 | - +- amd64 | gcompris-dbg | 12.01-1 | - +- amd64 | gconf-defaults-service | 3.2.5-1+build1 | - +- amd64 | gconf-editor | 3.0.1-1 | - +- amd64 | gconf-gsettings-backend | 3.2.5-1+build1 | - +- amd64 | gconf-service | 3.2.5-1+build1 | - +- amd64 | gconf2 | 3.2.5-1+build1 | - +- amd64 | gconjugue | 0.7.2-1 | - +- amd64 | gcpegg | 5.1-13 | - +- amd64 | gcr | 3.4.1-3 | - +- amd64 | gcrystal | 0.12.12-1 | - +- amd64 | gcu-bin | 0.12.12-1 | - +- amd64 | gcu-plugin | 0.12.12-1 | - +- amd64 | gcx | 1.3-1.1 | - +- amd64 | gdal-bin | 1.9.0-3.1 | - +- amd64 | gdb | 7.4.1+dfsg-0.1 | - +- amd64 | gdb-avr | 7.4-1 | - +- amd64 | gdb-mingw-w64 | 7.4.1-1.1+5 | - +- amd64 | gdb-minimal | 7.4.1+dfsg-0.1 | - +- amd64 | gdb-msp430 | 7.2a~mspgcc-20111205-1 | - +- amd64 | gdb-multiarch | 7.4.1+dfsg-0.1 | - +- amd64 | gdbserver | 7.4.1+dfsg-0.1 | - +- amd64 | gdc | 4.6.3-8 | - +- amd64 | gdc-4.4 | 1.063-4.4.7-1 | - +- amd64 | gdc-4.6 | 0.29.1-4.6.3-2 | - +- amd64 | gdc-v1 | 4.6.3-8 | - +- amd64 | gddccontrol | 0.4.2-10 | - +- amd64 | gddrescue | 1.16-1 | - +- amd64 | gdesklets | 0.36.1-5+b1 | - +- amd64 | gdf-tools | 0.1.2-2 | - +- amd64 | gdigi | 0.2.0+hg20110905r195-1 | - +- amd64 | gdis | 0.90-4 | - +- amd64 | gdisk | 0.8.5-1 | - +- amd64 | gdm3 | 3.4.1-8 | - +- amd64 | gdmap | 0.8.1-2 | - +- amd64 | gdpc | 2.2.5-2 | - +- amd64 | geany | 1.22+dfsg-2 | - +- amd64 | geany-plugin-addons | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-codenav | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-debugger | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-doc | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-extrasel | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-gdb | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-gendoc | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-gproject | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-insertnum | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-latex | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-lipsum | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-lua | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-macro | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-numberedbookmarks | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-pg | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-prettyprinter | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-prj | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-sendmail | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-shiftcolumn | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-spellcheck | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-tableconvert | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-treebrowser | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-updatechecker | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-vc | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-webhelper | 0.21.1.dfsg-4 | - +- amd64 | geany-plugin-xmlsnippets | 0.21.1.dfsg-4 | - +- amd64 | gearhead | 1.100-2 | - +- amd64 | gearhead2 | 0.628-1 | - +- amd64 | gearman-job-server | 0.33-2 | - +- amd64 | gearman-tools | 0.33-2 | - +- amd64 | gecko-mediaplayer | 1.0.6-1 | - +- amd64 | geda-gattrib | 1:1.6.2-4.3 | - +- amd64 | geda-gnetlist | 1:1.6.2-4.3 | - +- amd64 | geda-gschem | 1:1.6.2-4.3 | - +- amd64 | geda-gsymcheck | 1:1.6.2-4.3 | - +- amd64 | geda-utils | 1:1.6.2-4.3 | - +- amd64 | gedit | 3.4.2-1 | - +- amd64 | gedit-plugins | 3.4.0-1 | - +- amd64 | gedit-valatoys-plugin | 0.12.1-3 | - +- amd64 | gedit-valatoys-plugin-dbg | 0.12.1-3 | - +- amd64 | gedit-valencia-plugin | 0.3.0-3.1 | - +- amd64 | geekcode | 1.7.3-5 | - +- amd64 | geeqie | 1:1.0-10.1 | - +- amd64 | geeqie-dbg | 1:1.0-10.1 | - +- amd64 | gegl | 0.2.0-2+nmu1 | - +- amd64 | geki2 | 2.0.3-8 | - +- amd64 | geki3 | 1.0.3-7 | - +- amd64 | gelemental | 1.2.0-8 | - +- amd64 | gem | 1:0.93.3-5 | - +- amd64 | gem-extra | 1:0.93.3-5 | - +- amd64 | gem-plugin-dc1394 | 1:0.93.3-5 | - +- amd64 | gem-plugin-dv4l | 1:0.93.3-5 | - +- amd64 | gem-plugin-gmerlin | 1:0.93.3-5 | - +- amd64 | gem-plugin-jpeg | 1:0.93.3-5 | - +- amd64 | gem-plugin-lqt | 1:0.93.3-5 | - +- amd64 | gem-plugin-magick | 1:0.93.3-5 | - +- amd64 | gem-plugin-mpeg3 | 1:0.93.3-5 | - +- amd64 | gem-plugin-sgi | 1:0.93.3-5 | - +- amd64 | gem-plugin-tiff | 1:0.93.3-5 | - +- amd64 | gem-plugin-unicap | 1:0.93.3-5 | - +- amd64 | gem-plugin-v4l2 | 1:0.93.3-5 | - +- amd64 | gemanx-gtk2 | 0.1.0.3-2 | - +- amd64 | gemdropx | 0.9-6 | - +- amd64 | gems | 1.1.1-2 | - +- amd64 | genders | 1.18-1 | - +- amd64 | geneweb | 6.05.1-1 | - +- amd64 | genext2fs | 1.4.1-4 | - +- amd64 | gengetopt | 2.22.5-1 | - +- amd64 | genisoimage | 9:1.1.11-2 | - +- amd64 | genisovh | 0.1-3 | - +- amd64 | genius | 1.0.14-1 | - +- amd64 | genius-common | 1.0.14-1 | - +- amd64 | genius-dev | 1.0.14-1 | - +- amd64 | genparse | 0.9.1-1 | - +- amd64 | genromfs | 0.5.2-2 | - +- amd64 | gentle | 1.9+cvs20100605+dfsg1-1 | - +- amd64 | gentoo | 0.19.13-2 | - +- amd64 | genus2reduction | 0.3-2.2 | - +- amd64 | geoclue | 0.12.0-4 | - +- amd64 | geoclue-examples | 0.12.0-4 | - +- amd64 | geoclue-geonames | 0.12.0-4 | - +- amd64 | geoclue-gsmloc | 0.12.0-4 | - +- amd64 | geoclue-hostip | 0.12.0-4 | - +- amd64 | geoclue-localnet | 0.12.0-4 | - +- amd64 | geoclue-manual | 0.12.0-4 | - +- amd64 | geoclue-nominatim | 0.12.0-4 | - +- amd64 | geoclue-plazes | 0.12.0-4 | - +- amd64 | geoclue-skyhook | 0.12.0-4 | - +- amd64 | geoclue-yahoo | 0.12.0-4 | - +- amd64 | geogebra-kde | 1.0-1 | - +- amd64 | geographiclib-tools | 1.21-1 | - +! amd64 | geoip-bin | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 ++ amd64 | geoip-dbg | - | 1.5.0-3~bpo70+1 +- amd64 | geomview | 1.9.4-3 | - +- amd64 | geotiff-bin | 1.3.0+dfsg-3 | - +- amd64 | gerbv | 2.6.0-1 | - +- amd64 | gerstensaft | 0.3-4 | - +- amd64 | ges0.10-tools | 0.10.1-2 | - +- amd64 | gesftpserver | 0.1-3 | - +- amd64 | getstream | 20081204-1.1 | - +! amd64 | gettext | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | gettext-base | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- amd64 | gexec | 0.4-1 | - +- amd64 | gfan | 0.3dfsg-1.1 | - +- amd64 | gfarm-client | 2.4.1-1.1 | - +- amd64 | gfarm2fs | 1.2.2-1.1 | - +- amd64 | gff2aplot | 2.0-7 | - +- amd64 | gfm | 1.03-2 | - +- amd64 | gfmd | 2.4.1-1.1 | - +- amd64 | gforth | 0.7.0+ds2-0.1 | - +- amd64 | gforth-lib | 0.7.0+ds2-0.1 | - +- amd64 | gfortran | 4:4.7.2-1 | - +- amd64 | gfortran-4.4 | 4.4.7-2 | - +- amd64 | gfortran-4.4-multilib | 4.4.7-2 | - +- amd64 | gfortran-4.6 | 4.6.3-14 | - +- amd64 | gfortran-4.6-multilib | 4.6.3-14 | - +- amd64 | gfortran-4.7 | 4.7.2-5 | - +- amd64 | gfortran-4.7-multilib | 4.7.2-5 | - +- amd64 | gfortran-mingw-w64-i686 | 4.6.3-14+8 | - +- amd64 | gfortran-mingw-w64-x86-64 | 4.6.3-14+8 | - +- amd64 | gfortran-multilib | 4:4.7.2-1 | - +- amd64 | gfpoken | 0.32-2 | - +- amd64 | gfs-pcmk | 3.0.12-3.2+deb7u2 | - +- amd64 | gfs-tools | 3.0.12-3.2+deb7u2 | - +- amd64 | gfs2-tools | 3.0.12-3.2+deb7u2 | - +- amd64 | gfsd | 2.4.1-1.1 | - +- amd64 | gftp-common | 2.0.19-4 | - +- amd64 | gftp-gtk | 2.0.19-4 | - +- amd64 | gftp-text | 2.0.19-4 | - +- amd64 | gfxboot | 4.5.0-3 | - +- amd64 | gfxboot-dev | 4.5.0-3 | - +- amd64 | ggobi | 2.1.10-4 | - +- amd64 | ghc | 7.4.1-4 | - +- amd64 | ghc-dynamic | 7.4.1-4 | - +- amd64 | ghc-haddock | 7.4.1-4 | - +- amd64 | ghc-mod | 1.10.18-1 | - +- amd64 | ghc-prof | 7.4.1-4 | - +- amd64 | ghc-testsuite | 7.4.1-3 | - +- amd64 | ghemical | 3.0.0-1 | - +- amd64 | ghex | 3.4.1-1 | - +- amd64 | ghkl | 4.0.3-4 | - +- amd64 | ghostess | 20120105-1 | - +- amd64 | ghostscript | 9.05~dfsg-6.3+deb7u1 | - +- amd64 | ghostscript-cups | 9.05~dfsg-6.3+deb7u1 | - +- amd64 | ghostscript-dbg | 9.05~dfsg-6.3+deb7u1 | - +- amd64 | ghostscript-x | 9.05~dfsg-6.3+deb7u1 | - +- amd64 | giblib-dev | 1.2.4-8 | - +- amd64 | giblib1 | 1.2.4-8 | - +- amd64 | giblib1-dbg | 1.2.4-8 | - +- amd64 | gif2apng | 1.7-3 | - +- amd64 | gif2png | 2.5.8-1 | - +- amd64 | giflib-dbg | 4.1.6-10 | - +- amd64 | giflib-tools | 4.1.6-10 | - +- amd64 | gifsicle | 1.67-1 | - +- amd64 | gifti-bin | 1.0.9-1 | - +- amd64 | giftrans | 1.12.2-16 | - +- amd64 | gigedit | 0.2.0-1 | - +- amd64 | giggle | 0.6.1-2+b1 | - +- amd64 | giggle-personal-details-plugin | 0.6.1-2+b1 | - +- amd64 | giggle-terminal-view-plugin | 0.6.1-2+b1 | - +- amd64 | gigolo | 0.4.1+dfsg-1 | - +- amd64 | gigolo-dbg | 0.4.1+dfsg-1 | - +- amd64 | gigtools | 3.3.0-2 | - +- amd64 | gimmix | 0.5.7.1-4 | - +- amd64 | gimp | 2.8.2-2+deb7u1 | - +- amd64 | gimp-cbmplugs | 1.2.2-1 | - +- amd64 | gimp-dbg | 2.8.2-2+deb7u1 | - +- amd64 | gimp-dcraw | 1.31-1.1 | - +- amd64 | gimp-dds | 2.0.9-3 | - +- amd64 | gimp-dimage-color | 1.1.0-3.1 | - +- amd64 | gimp-gap | 2.6.0+dfsg-3 | - +- amd64 | gimp-gluas | 0.1.20-1 | - +- amd64 | gimp-gmic | 1.5.1.6+dfsg-4 | - +- amd64 | gimp-gutenprint | 5.2.9-1 | - +- amd64 | gimp-lensfun | 0.2.1-1+b1 | - +- amd64 | gimp-plugin-registry | 5.20120621 | - +- amd64 | gimp-texturize | 2.1-2 | - +- amd64 | gimp-ufraw | 0.18-2 | - +- amd64 | ginac-tools | 1.6.2-1 | - +- amd64 | ginkgocadx | 2.12.0.4889-1 | - +- amd64 | gip | 1.7.0-1-3 | - +- amd64 | gir1.2-accountsservice-1.0 | 0.6.21-8 | - +- amd64 | gir1.2-anjuta-3.0 | 2:3.4.3-1 | - +- amd64 | gir1.2-appindicator-0.1 | 0.4.92-2 | - +- amd64 | gir1.2-appindicator3-0.1 | 0.4.92-2 | - +- amd64 | gir1.2-atk-1.0 | 2.4.0-2 | - +- amd64 | gir1.2-atspi-2.0 | 2.5.3-2 | - +- amd64 | gir1.2-brasero-3.0 | 3.4.1-4 | - +- amd64 | gir1.2-caribou-1.0 | 0.4.4-1 | - +- amd64 | gir1.2-champlain-0.12 | 0.12.3-1 | - +- amd64 | gir1.2-cheese-3.0 | 3.4.2-2 | - +- amd64 | gir1.2-clinica-0.2 | 0.2.1~dfsg-1 | - +- amd64 | gir1.2-clutter-1.0 | 1.10.8-2 | - +- amd64 | gir1.2-clutter-gst-1.0 | 1.5.4-1+build0 | - +- amd64 | gir1.2-cogl-1.0 | 1.10.2-7 | - +- amd64 | gir1.2-coglpango-1.0 | 1.10.2-7 | - +- amd64 | gir1.2-colord-1.0 | 0.1.21-1 | - +- amd64 | gir1.2-colorhug-1.0 | 0.1.10-1 | - +- amd64 | gir1.2-cryptui-0.0 | 3.2.2-1 | - +- amd64 | gir1.2-dbusmenu-glib-0.4 | 0.6.2-1 | - +- amd64 | gir1.2-dbusmenu-gtk-0.4 | 0.6.2-1 | - +- amd64 | gir1.2-dbusmenu-gtk3-0.4 | 0.6.2-1 | - +- amd64 | gir1.2-dee-1.0 | 1.0.10-3 | - +- amd64 | gir1.2-ebook-1.2 | 3.4.4-3 | - +- amd64 | gir1.2-ecalendar-1.2 | 3.4.4-3 | - +- amd64 | gir1.2-edataserver-1.2 | 3.4.4-3 | - +- amd64 | gir1.2-emerillon-0.2 | 0.1.90-1 | - +- amd64 | gir1.2-epiphany-3.4 | 3.4.2-2.1 | - +- amd64 | gir1.2-evd-0.1 | 0.1.20-2 | - +- amd64 | gir1.2-evince-3.0 | 3.4.0-3.1 | - +- amd64 | gir1.2-farstream-0.1 | 0.1.2-1 | - +! amd64 | gir1.2-fcitx-1.0 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- amd64 | gir1.2-folks-0.6 | 0.6.9-1+b1 | - +- amd64 | gir1.2-freedesktop | 1.32.1-1 | - +- amd64 | gir1.2-ganv-1.0 | 0~svn4468~dfsg0-1 | - +- amd64 | gir1.2-gck-1 | 3.4.1-3 | - +- amd64 | gir1.2-gconf-2.0 | 3.2.5-1+build1 | - +- amd64 | gir1.2-gcr-3 | 3.4.1-3 | - +- amd64 | gir1.2-gda-5.0 | 5.0.3-2 | - +- amd64 | gir1.2-gdata-0.0 | 0.12.0-1 | - +- amd64 | gir1.2-gdesktopenums-3.0 | 3.4.2-3 | - +- amd64 | gir1.2-gdkpixbuf-2.0 | 2.26.1-1 | - +- amd64 | gir1.2-gdl-3 | 3.4.2-1 | - +- amd64 | gir1.2-gee-1.0 | 0.6.4-2 | - +- amd64 | gir1.2-geocodeglib-1.0 | 0.99.0-1 | - +- amd64 | gir1.2-ges-0.10 | 0.10.1-2 | - +- amd64 | gir1.2-gkbd-3.0 | 3.4.0.2-1 | - +- amd64 | gir1.2-gladeui-2.0 | 3.12.1-1 | - +- amd64 | gir1.2-glib-2.0 | 1.32.1-1 | - +- amd64 | gir1.2-gmenu-3.0 | 3.4.2-5 | - +- amd64 | gir1.2-gnomebluetooth-1.0 | 3.4.2-1 | - +- amd64 | gir1.2-gnomedesktop-3.0 | 3.4.2-1 | - +- amd64 | gir1.2-gnomekeyring-1.0 | 3.4.1-1 | - +- amd64 | gir1.2-goa-1.0 | 3.4.2-2 | - +- amd64 | gir1.2-grilo-0.1 | 0.1.19-1 | - +- amd64 | gir1.2-gssdp-1.0 | 0.12.2.1-2 | - +- amd64 | gir1.2-gst-plugins-base-0.10 | 0.10.36-1.1 | - ++ amd64 | gir1.2-gst-plugins-base-1.0 | - | 1.0.8-1~bpo70+1 +- amd64 | gir1.2-gst-rtsp-server-0.10 | 0.10.8-3 | - +- amd64 | gir1.2-gstreamer-0.10 | 0.10.36-1.2 | - ++ amd64 | gir1.2-gstreamer-1.0 | - | 1.0.8-1~bpo70+1 +- amd64 | gir1.2-gtk-2.0 | 2.24.10-2 | - +- amd64 | gir1.2-gtk-3.0 | 3.4.2-7 | - +- amd64 | gir1.2-gtk-vnc-2.0 | 0.5.0-3.1 | - +- amd64 | gir1.2-gtkchamplain-0.12 | 0.12.3-1 | - +- amd64 | gir1.2-gtkclutter-1.0 | 1.2.0-2 | - +- amd64 | gir1.2-gtksource-3.0 | 3.4.2-1 | - +- amd64 | gir1.2-gtop-2.0 | 2.28.4-3 | - +- amd64 | gir1.2-gucharmap-2.90 | 1:3.4.1.1-2.1 | - +- amd64 | gir1.2-gudev-1.0 | 175-7.2 | - +- amd64 | gir1.2-guestfs-1.0 | 1:1.18.1-1+deb7u3 | - +- amd64 | gir1.2-gupnp-1.0 | 0.18.4-1 | - +- amd64 | gir1.2-gupnp-av-1.0 | 0.10.3-1 | - +- amd64 | gir1.2-gupnpdlna-1.0 | 0.6.6-1 | - +- amd64 | gir1.2-gupnpigd-1.0 | 0.2.1-2 | - +- amd64 | gir1.2-gweather-3.0 | 3.4.1-1+build1 | - +- amd64 | gir1.2-gxps-0.1 | 0.2.2-2 | - +! amd64 | gir1.2-ibus-1.0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- amd64 | gir1.2-indicate-0.7 | 0.6.92-1 | - +- amd64 | gir1.2-itl-1.0 | 0.2-1 | - +- amd64 | gir1.2-javascriptcoregtk-1.0 | 1.8.1-3.4 | - +- amd64 | gir1.2-javascriptcoregtk-3.0 | 1.8.1-3.4 | - +- amd64 | gir1.2-json-1.0 | 0.14.2-1 | - +- amd64 | gir1.2-libosinfo-1.0 | 0.1.1-1 | - +- amd64 | gir1.2-libvirt-glib-1.0 | 0.0.8-1 | - +- amd64 | gir1.2-lunar-date-2.0 | 2.4.0-1 | - +- amd64 | gir1.2-mutter-3.0 | 3.4.1-5 | - +- amd64 | gir1.2-mx-1.0 | 1.4.6-1 | - +- amd64 | gir1.2-nautilus-3.0 | 3.4.2-1+build1 | - +- amd64 | gir1.2-networkmanager-1.0 | 0.9.4.0-10 | - +- amd64 | gir1.2-notify-0.7 | 0.7.5-1 | - +- amd64 | gir1.2-packagekitglib-1.0 | 0.7.6-3 | - +- amd64 | gir1.2-panelapplet-4.0 | 3.4.2.1-4 | - +- amd64 | gir1.2-pango-1.0 | 1.30.0-1 | - +- amd64 | gir1.2-peas-1.0 | 1.4.0-2 | - +- amd64 | gir1.2-polkit-1.0 | 0.105-3 | - +- amd64 | gir1.2-poppler-0.18 | 0.18.4-6 | - +- amd64 | gir1.2-rb-3.0 | 2.97-2.1 | - +- amd64 | gir1.2-rest-0.7 | 0.7.12-3 | - +- amd64 | gir1.2-rest-extras-0.7 | 0.7.12-3 | - +- amd64 | gir1.2-rsvg-2.0 | 2.36.1-2 | - +- amd64 | gir1.2-skk-1.0 | 0.0.12-3 | - +- amd64 | gir1.2-socialweb-client | 0.25.20-2.1 | - +- amd64 | gir1.2-soup-2.4 | 2.38.1-2 | - +- amd64 | gir1.2-spice-client-glib-2.0 | 0.12-5 | - +- amd64 | gir1.2-spice-client-gtk-2.0 | 0.12-5 | - +- amd64 | gir1.2-spice-client-gtk-3.0 | 0.12-5 | - +- amd64 | gir1.2-sugarext-1.0 | 0.96.1-2 | - +- amd64 | gir1.2-telepathyglib-0.12 | 0.18.2-2 | - +- amd64 | gir1.2-telepathylogger-0.2 | 0.4.0-1 | - +- amd64 | gir1.2-totem-1.0 | 3.0.1-8 | - +- amd64 | gir1.2-totem-plparser-1.0 | 3.4.2-1 | - +- amd64 | gir1.2-tracker-0.14 | 0.14.1-3 | - +- amd64 | gir1.2-unique-3.0 | 3.0.2-1 | - +- amd64 | gir1.2-upowerglib-1.0 | 0.9.17-1 | - +- amd64 | gir1.2-urfkill-glib0 | 0.3.0-1 | - +- amd64 | gir1.2-v-sim-1.0 | 3.6.0-2+b2 | - +- amd64 | gir1.2-vte-2.90 | 1:0.32.2-1 | - +- amd64 | gir1.2-webkit-1.0 | 1.8.1-3.4 | - +- amd64 | gir1.2-webkit-3.0 | 1.8.1-3.4 | - +- amd64 | gir1.2-wnck-3.0 | 3.4.2-1 | - +- amd64 | gir1.2-xkl-1.0 | 5.2.1-1 | - +! amd64 | git | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! amd64 | git-annex | 3.20120629 | 5.20140210~bpo70+2 +! amd64 | gitg | 0.2.4-1.1+deb7u1 | 0.2.7-1~bpo70+1 +- amd64 | github-backup | 1.20120628.1 | - +- amd64 | gitit | 0.10.0.1-1+b1 | - +- amd64 | gjacktransport | 0.5.3-1 | - +- amd64 | gjay | 0.3.2-1 | - +- amd64 | gjiten | 2.6-2.2 | - +- amd64 | gjs | 1.32.0-5 | - +- amd64 | gkbd-capplet | 3.4.0.2-1 | - +- amd64 | gkdebconf | 1.2.68 | - +- amd64 | gkermit | 1.0-9 | - +- amd64 | gkrellkam | 2.0.0-1.1 | - +- amd64 | gkrellm | 2.3.5-3 | - +- amd64 | gkrellm-bfm | 0.6.4-5 | - ++ amd64 | gkrellm-cpufreq | - | 0.6.4-4~bpo70+1 +- amd64 | gkrellm-gkrellmpc | 0.1~beta10-2 | - +- amd64 | gkrellm-hdplop | 0.9.9-2.1 | - +- amd64 | gkrellm-ibam | 1:0.5.2-2.1 | - +- amd64 | gkrellm-leds | 0.8.0-1.2 | - +- amd64 | gkrellm-mailwatch | 2.4.3-1 | - +- amd64 | gkrellm-mldonkey | 0.9.7-2.1 | - +- amd64 | gkrellm-radio | 2.0.4-1.1 | - +- amd64 | gkrellm-reminder | 2.0.0-3 | - +- amd64 | gkrellm-snmp | 1.0-1.2+b1 | - +- amd64 | gkrellm-thinkbat | 0.2.2-1 | - +- amd64 | gkrellm-volume | 2.1.13-1 | - +- amd64 | gkrellm-x86info | 0.0.2-9 | - +- amd64 | gkrellm-xkb | 1.05-5 | - +- amd64 | gkrellmd | 2.3.5-3 | - +- amd64 | gkrellmitime | 1.0.1-5 | - +- amd64 | gkrellmoon | 0.6-5 | - +- amd64 | gkrellmwireless | 2.0.3-1 | - +- amd64 | gkrellshoot | 0.4.4-1 | - +- amd64 | gkrelltop | 2.2.13-1 | - +- amd64 | gkrelltopd | 2.2.13-1 | - +- amd64 | gkrelluim | 0.3.1-4+b1 | - +- amd64 | gkrellweather | 2.0.8-2 | - +- amd64 | gkrellxmms2 | 0.7.1-2 | - +- amd64 | gksu | 2.0.2-6 | - +- amd64 | gl-117 | 1.3.2-2.1 | - +- amd64 | glabels | 3.0.0-3+b1 | - +- amd64 | glabels-dev | 3.0.0-3+b1 | - +- amd64 | glade | 3.12.1-1 | - +- amd64 | glade-xfce | 4.8.1-1 | - +- amd64 | gladish | 1+dfsg0-3 | - +- amd64 | glam2 | 1064-1 | - +- amd64 | glaurung | 2.2-2 | - +- amd64 | glbsp | 2.24-1 | - +- amd64 | glchess | 1:3.4.2-3 | - +- amd64 | gle-graphics | 4.2.4c-5 | - +- amd64 | glee-dev | 5.4.0-1 | - +- amd64 | glew-utils | 1.7.0-3 | - +- amd64 | glfer | 0.4.2-2 | - +- amd64 | glhack | 1.2-1 | - +- amd64 | glib-networking | 2.32.3-1 | - +- amd64 | glib-networking-dbg | 2.32.3-1 | - +- amd64 | glib-networking-services | 2.32.3-1 | - +- amd64 | glines | 1:3.4.2-3 | - +- amd64 | gliv | 1.9.7-2 | - +- amd64 | glob2 | 0.9.4.4-2.1+b1 | - +- amd64 | global | 5.7.1-2 | - +- amd64 | globs | 0.2.0~svn50-4 | - +- amd64 | globus-authz-callout-error-dbg | 2.2-1 | - +- amd64 | globus-authz-dbg | 2.2-1 | - +- amd64 | globus-callout-dbg | 2.2-1 | - +- amd64 | globus-common-dbg | 14.7-2 | - +- amd64 | globus-common-progs | 14.7-2 | - +- amd64 | globus-core | 8.8-2 | - +- amd64 | globus-ftp-client-dbg | 7.3-1 | - +- amd64 | globus-ftp-control-dbg | 4.4-1 | - +- amd64 | globus-gass-cache-dbg | 8.1-2 | - +- amd64 | globus-gass-cache-program | 5.1-1 | - +- amd64 | globus-gass-cache-program-dbg | 5.1-1 | - +- amd64 | globus-gass-copy-dbg | 8.4-1 | - +- amd64 | globus-gass-copy-progs | 8.4-1 | - +- amd64 | globus-gass-server-ez-dbg | 4.3-1 | - +- amd64 | globus-gass-server-ez-progs | 4.3-1 | - +- amd64 | globus-gass-transfer-dbg | 7.2-1 | - +- amd64 | globus-gatekeeper | 9.11-1 | - +- amd64 | globus-gatekeeper-dbg | 9.11-1 | - +- amd64 | globus-gfork-dbg | 3.2-1 | - +- amd64 | globus-gfork-progs | 3.2-1 | - +- amd64 | globus-gram-client-dbg | 12.4-1 | - +- amd64 | globus-gram-client-tools | 10.3-1 | - +- amd64 | globus-gram-client-tools-dbg | 10.3-1 | - +- amd64 | globus-gram-job-manager | 13.33-1 | - +- amd64 | globus-gram-job-manager-callout-error-dbg | 2.1-2 | - +- amd64 | globus-gram-job-manager-dbg | 13.33-1 | - +- amd64 | globus-gram-job-manager-fork-dbg | 1.5-1 | - +- amd64 | globus-gram-job-manager-fork-setup-seg | 1.5-1 | - +- amd64 | globus-gram-job-manager-pbs-dbg | 1.5-1 | - +- amd64 | globus-gram-job-manager-pbs-setup-seg | 1.5-1 | - +- amd64 | globus-gram-job-manager-sge-dbg | 1.5-1 | - +- amd64 | globus-gram-job-manager-sge-setup-seg | 1.5-1 | - +- amd64 | globus-gram-protocol-dbg | 11.3-1 | - +- amd64 | globus-gridftp-server-control-dbg | 2.5-2 | - +- amd64 | globus-gridftp-server-dbg | 6.10-2 | - +- amd64 | globus-gridftp-server-progs | 6.10-2 | - +- amd64 | globus-gridmap-callout-error-dbg | 1.2-2 | - +- amd64 | globus-gsi-callback-dbg | 4.2-1 | - +- amd64 | globus-gsi-cert-utils-dbg | 8.3-1 | - +- amd64 | globus-gsi-cert-utils-progs | 8.3-1 | - +- amd64 | globus-gsi-credential-dbg | 5.3-1 | - +- amd64 | globus-gsi-openssl-error-dbg | 2.1-2 | - +- amd64 | globus-gsi-proxy-core-dbg | 6.2-1 | - +- amd64 | globus-gsi-proxy-ssl-dbg | 4.1-2 | - +- amd64 | globus-gsi-sysconfig-dbg | 5.2-1 | - +- amd64 | globus-gss-assist-dbg | 8.5-1 | - +- amd64 | globus-gss-assist-progs | 8.5-1 | - +- amd64 | globus-gssapi-error-dbg | 4.1-2 | - +- amd64 | globus-gssapi-gsi-dbg | 10.6-1 | - +- amd64 | globus-io-dbg | 9.3-1 | - +- amd64 | globus-openssl-module-dbg | 3.2-1 | - +- amd64 | globus-openssl-module-progs | 3.2-1 | - +- amd64 | globus-proxy-utils | 5.0-2 | - +- amd64 | globus-proxy-utils-dbg | 5.0-2 | - +- amd64 | globus-rls-client-dbg | 5.2-8 | - +- amd64 | globus-rls-client-progs | 5.2-8 | - +- amd64 | globus-rls-server | 4.9-11 | - +- amd64 | globus-rls-server-dbg | 4.9-11 | - +- amd64 | globus-rsl-dbg | 9.1-2 | - +- amd64 | globus-scheduler-event-generator-dbg | 4.6-1 | - +- amd64 | globus-scheduler-event-generator-progs | 4.6-1 | - +- amd64 | globus-usage-dbg | 3.1-2 | - +- amd64 | globus-xio-dbg | 3.3-1 | - +- amd64 | globus-xio-gsi-driver-dbg | 2.3-1 | - +- amd64 | globus-xio-pipe-driver-dbg | 2.2-1 | - +- amd64 | globus-xio-popen-driver-dbg | 2.3-1 | - +- amd64 | globus-xioperf | 3.1-1 | - +- amd64 | globus-xioperf-dbg | 3.1-1 | - +- amd64 | glogg | 0.9.0-1+b1 | - +- amd64 | glosstex | 0.4.dfsg.1-3 | - +- amd64 | glotski | 0.2-7 | - +- amd64 | glpeces | 5.0-2 | - +- amd64 | glpk | 4.45-1 | - +- amd64 | glpk-utils | 4.45-1 | - +- amd64 | gltron | 0.70final-10 | - +- amd64 | glurp | 0.12.3-1 | - +- amd64 | glusterfs-client | 3.2.7-3+deb7u1 | - +- amd64 | glusterfs-common | 3.2.7-3+deb7u1 | - +- amd64 | glusterfs-dbg | 3.2.7-3+deb7u1 | - +- amd64 | glusterfs-server | 3.2.7-3+deb7u1 | - ++ amd64 | glx-alternative-fglrx | - | 0.4.1~bpo70+1 ++ amd64 | glx-alternative-mesa | - | 0.4.1~bpo70+1 ++ amd64 | glx-alternative-nvidia | - | 0.4.1~bpo70+1 ++ amd64 | glx-diversions | - | 0.4.1~bpo70+1 +- amd64 | gman | 0.9.3-5.2 | - +- amd64 | gmanedit | 0.4.2-5 | - +- amd64 | gmchess | 0.29.6-2 | - +- amd64 | gmediaserver | 0.13.0-8 | - +- amd64 | gmemusage | 0.2-11 | - +- amd64 | gmerlin | 1.2.0~dfsg+1-1 | - +- amd64 | gmerlin-avdecoder-dbg | 1.2.0~dfsg-1+b1 | - +- amd64 | gmerlin-dbg | 1.2.0~dfsg+1-1 | - +- amd64 | gmerlin-encoders-ffmpeg | 1.2.0-2 | - +- amd64 | gmerlin-encoders-good | 1.2.0-2 | - +- amd64 | gmerlin-plugins-avdecoder | 1.2.0~dfsg-1+b1 | - +- amd64 | gmerlin-plugins-base | 1.2.0~dfsg+1-1 | - +- amd64 | gmetad | 3.3.8-1+nmu1 | - +- amd64 | gmfsk | 0.6+0.7pre1-2.3 | - +- amd64 | gmic | 1.5.1.6+dfsg-4 | - +- amd64 | gmic-zart | 1.5.1.6+dfsg-4 | - +- amd64 | gmidimonitor | 3.6+dfsg0-1 | - +- amd64 | gmime-bin | 2.6.10-1 | - +- amd64 | gmlive | 0.22.3-1 | - +- amd64 | gmorgan | 0.40-1 | - +- amd64 | gmotionlive | 1.0-3 | - +- amd64 | gmp-ecm | 6.4.2-1 | - +- amd64 | gmpc | 11.8.16-6 | - +- amd64 | gmpc-dbg | 11.8.16-6 | - +- amd64 | gmpc-dev | 11.8.16-6 | - +- amd64 | gmpc-plugins | 11.8.16-1 | - +- amd64 | gmpc-plugins-dbg | 11.8.16-1 | - +- amd64 | gmrun | 0.9.2-2.1 | - ++ amd64 | gmsh | - | 2.7.0.dfsg-1~bpo70+1 +- amd64 | gmt | 4.5.7-2 | - +- amd64 | gmtp | 1.3.3-1 | - +- amd64 | gmult | 8.0-1 | - +- amd64 | gmysqlcc | 0.3.0-2+b2 | - +- amd64 | gnac | 0.2.4-1 | - +- amd64 | gnarwl | 3.6.dfsg-6.2 | - +! amd64 | gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-common | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-cygnal | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-dbg | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-dev | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-fileio | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-lirc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-mysql | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-tools | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- amd64 | gnat | 4.6 | - +- amd64 | gnat-4.6 | 4.6.3-8 | - +- amd64 | gnat-4.6-base | 4.6.3-8 | - +- amd64 | gnat-4.6-sjlj | 4.6.3-8 | - +- amd64 | gnat-gps | 5.0-13 | - +- amd64 | gnat-gps-dbg | 5.0-13 | - +- amd64 | gnat-mingw-w64-i686 | 4.6.3-14+8 | - +- amd64 | gnat-mingw-w64-x86-64 | 4.6.3-14+8 | - +- amd64 | gnats | 4.1.0-2 | - +- amd64 | gnats-user | 4.1.0-2 | - +- amd64 | gnect | 1:3.4.2-3 | - +- amd64 | gnee | 3.13-1 | - +- amd64 | gngb | 20060309-3 | - +- amd64 | gniall | 0.7.1-7 | - +- amd64 | gnibbles | 1:3.4.2-3 | - +- amd64 | gnobots2 | 1:3.4.2-3 | - +- amd64 | gnoemoe | 2.2.0+dfsg-2.2 | - +- amd64 | gnokii-cli | 0.6.30+dfsg-1+b1 | - +- amd64 | gnokii-smsd | 0.6.30+dfsg-1+b1 | - +- amd64 | gnokii-smsd-mysql | 0.6.30+dfsg-1+b1 | - +- amd64 | gnokii-smsd-pgsql | 0.6.30+dfsg-1+b1 | - +- amd64 | gnomad2 | 2.9.6-4 | - +- amd64 | gnome | 1:3.4+7+deb7u1 | - +- amd64 | gnome-alsamixer | 0.9.7~cvs.20060916.ds.1-3 | - +- amd64 | gnome-applets | 3.4.1-3 | - +- amd64 | gnome-applets-dbg | 3.4.1-3 | - +- amd64 | gnome-bluetooth | 3.4.2-1 | - +- amd64 | gnome-boxes | 3.4.3+dfsg-1 | - +- amd64 | gnome-breakout | 0.5.3-4 | - +- amd64 | gnome-color-chooser | 0.2.5-1 | - +- amd64 | gnome-color-manager | 3.4.2-1 | - +- amd64 | gnome-commander | 1.2.8.15-3+b1 | - +- amd64 | gnome-commander-dbg | 1.2.8.15-3+b1 | - +- amd64 | gnome-contacts | 3.4.1-1+b1 | - +- amd64 | gnome-control-center | 1:3.4.3.1-2 | - +- amd64 | gnome-core | 1:3.4+7+deb7u1 | - +- amd64 | gnome-core-devel | 1:3.4+7+deb7u1 | - +- amd64 | gnome-dbg | 1:3.4+7+deb7u1 | - +- amd64 | gnome-dictionary | 3.4.0-2 | - +- amd64 | gnome-disk-utility | 3.0.2-3 | - +- amd64 | gnome-do | 0.9-1+b1 | - +- amd64 | gnome-documents | 0.4.2-2 | - +- amd64 | gnome-dvb-daemon | 1:0.2.8-1 | - +- amd64 | gnome-font-viewer | 3.4.0-2 | - +- amd64 | gnome-genius | 1.0.14-1 | - +- amd64 | gnome-hearts | 0.3-2.1 | - +- amd64 | gnome-hwp-support | 0.1.4-1 | - +- amd64 | gnome-hwp-support-dbg | 0.1.4-1 | - +- amd64 | gnome-keyring | 3.4.1-5 | - +- amd64 | gnome-mag | 1:0.16.3-1 | - +- amd64 | gnome-mastermind | 0.3.1-2 | - +- amd64 | gnome-media | 3.4.0-1 | - +- amd64 | gnome-media-profiles | 3.0.0-1 | - +- amd64 | gnome-menus | 3.4.2-5 | - +- amd64 | gnome-mplayer | 1.0.6-1 | - +- amd64 | gnome-mplayer-dbg | 1.0.6-1 | - +- amd64 | gnome-mud | 0.11.2-1 | - +- amd64 | gnome-nds-thumbnailer | 3.0.0-1 | - +- amd64 | gnome-nettool | 3.2.0-1 | - +- amd64 | gnome-online-accounts | 3.4.2-2 | - +- amd64 | gnome-packagekit | 3.4.2-2 | - +- amd64 | gnome-paint | 0.4.0-3 | - +- amd64 | gnome-panel | 3.4.2.1-4 | - +! amd64 | gnome-panel-control | 3.5.0-7 | 3.5.2-6~bpo70+1 +- amd64 | gnome-panel-dbg | 3.4.2.1-4 | - +- amd64 | gnome-phone-manager | 0.68-3+b1 | - +- amd64 | gnome-photo-printer | 0.7.0-1.2 | - +- amd64 | gnome-pie | 0.5.3-1 | - +- amd64 | gnome-platform-devel | 1:3.4+7+deb7u1 | - +- amd64 | gnome-power-manager | 3.4.0-2 | - +- amd64 | gnome-ppp | 0.3.23-1.2 | - +- amd64 | gnome-screensaver | 3.4.1-1 | - +- amd64 | gnome-screenshot | 3.4.1-1 | - +- amd64 | gnome-search-tool | 3.4.0-2+b1 | - +- amd64 | gnome-session-bin | 3.4.2.1-4 | - +- amd64 | gnome-session-canberra | 0.28-6 | - +- amd64 | gnome-settings-daemon | 3.4.2+git20121218.7c1322-3+deb7u3 | - +- amd64 | gnome-settings-daemon-dev | 3.4.2+git20121218.7c1322-3+deb7u3 | - +- amd64 | gnome-shell | 3.4.2-7+deb7u1 | - +- amd64 | gnome-shell-dbg | 3.4.2-7+deb7u1 | - +- amd64 | gnome-subtitles | 1.2-4 | - +- amd64 | gnome-sushi | 0.4.1-3 | - +- amd64 | gnome-system-log | 3.4.1-3 | - +- amd64 | gnome-system-monitor | 3.4.1-2+b1 | - +- amd64 | gnome-system-tools | 3.0.0-2 | - +- amd64 | gnome-terminal | 3.4.1.1-2 | - +- amd64 | gnome-themes-standard | 3.4.2-2.1 | - +- amd64 | gnome-u2ps | 0.0.4-4.2 | - +- amd64 | gnome-user-share | 3.0.2-1 | - +- amd64 | gnome-xcf-thumbnailer | 1.0-1.1 | - +- amd64 | gnomekiss | 2.0-4 | - +- amd64 | gnomeradio | 1.8-2 | - +- amd64 | gnomine | 1:3.4.2-3 | - +- amd64 | gnomint | 1.2.1-4 | - +- amd64 | gnote | 0.8.3-1 | - +- amd64 | gnotime | 2.3.1~snapshot20091119-5 | - +- amd64 | gnotravex | 1:3.4.2-3 | - +- amd64 | gnotski | 1:3.4.2-3 | - +- amd64 | gnu-efi | 3.0i-3 | - +- amd64 | gnu-fdisk | 1.2.4-3.1 | - +- amd64 | gnu-smalltalk | 3.2.4-2 | - +- amd64 | gnu-smalltalk-browser | 3.2.4-2 | - +- amd64 | gnubg | 0.90+20120429-1 | - +- amd64 | gnubiff | 2.2.15-1 | - +- amd64 | gnubik | 2.4-3 | - +- amd64 | gnucap | 1:0.36~20091207-2 | - +- amd64 | gnucash | 1:2.4.10-6 | - +- amd64 | gnucash-dbg | 1:2.4.10-6 | - +- amd64 | gnuchess | 6.0.2-1 | - +- amd64 | gnudatalanguage | 0.9.2-4 | - +- amd64 | gnudoq | 0.94-2.1 | - +- amd64 | gnugk | 2:3.0.2-3 | - +- amd64 | gnugo | 3.8-5 | - +- amd64 | gnuift | 0.1.14-12 | - +- amd64 | gnuit | 4.9.5-3 | - +- amd64 | gnujump | 1.0.6-4 | - +- amd64 | gnumeric | 1.10.17-1.1 | - +- amd64 | gnumeric-plugins-extra | 1.10.17-1.1 | - +- amd64 | gnuminishogi | 1.3.2-9 | - +- amd64 | gnunet-client | 0.9.3-7 | - +- amd64 | gnunet-common | 0.9.3-7 | - +- amd64 | gnunet-dbg | 0.9.3-7 | - +- amd64 | gnunet-dev | 0.9.3-7 | - +- amd64 | gnunet-fuse | 0.9.3-2 | - +- amd64 | gnunet-gtk | 0.9.3-1 | - +- amd64 | gnunet-gtk-dbg | 0.9.3-1 | - +- amd64 | gnunet-gtk-dev | 0.9.3-1 | - +- amd64 | gnunet-server | 0.9.3-7 | - +- amd64 | gnupg | 1.4.12-7+deb7u3 | - +- amd64 | gnupg-agent | 2.0.19-2+deb7u1 | - +- amd64 | gnupg-curl | 1.4.12-7+deb7u3 | - +- amd64 | gnupg-pkcs11-scd | 0.7.3-1 | - +- amd64 | gnupg-pkcs11-scd-dbg | 0.7.3-1 | - +- amd64 | gnupg2 | 2.0.19-2+deb7u1 | - +! amd64 | gnuplot-nox | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuplot-qt | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuplot-x11 | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuradio | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | gnuradio-dev | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +- amd64 | gnurobbo | 0.66+dfsg-2 | - +- amd64 | gnurobots | 2:1.2.0-4+b2 | - +- amd64 | gnuserv | 3.12.8-3 | - +- amd64 | gnushogi | 1.3.2-9 | - +- amd64 | gnusim8085 | 1.3.7-1 | - +- amd64 | gnustep-back-dbg | 0.20.1-2.1 | - +- amd64 | gnustep-back0.20-art | 0.20.1-2.1 | - +- amd64 | gnustep-back0.20-cairo | 0.20.1-2.1 | - +- amd64 | gnustep-base-runtime | 1.22.1-4 | - +- amd64 | gnustep-common | 2.6.2-2 | - +- amd64 | gnustep-dl2 | 0.12.0-9+nmu1 | - +- amd64 | gnustep-dl2-postgresql-adaptor | 0.12.0-9+nmu1 | - +- amd64 | gnustep-dl2-sqlite-adaptor | 0.12.0-9+nmu1 | - +- amd64 | gnustep-examples | 1:1.3.0-1 | - +- amd64 | gnustep-gpbs | 0.20.1-2.1 | - +- amd64 | gnustep-gui-runtime | 0.20.0-3+b1 | - +! amd64 | gnutls-bin | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +- amd64 | goaccess | 1:0.5-1 | - +- amd64 | goattracker | 2.72-1 | - +- amd64 | gob2 | 2.0.18-1 | - +- amd64 | goban-ss | 1.1-2 | - +- amd64 | gobby-0.4 | 0.4.13-2 | - +- amd64 | gobby-0.4-dbg | 0.4.13-2 | - +- amd64 | gobby-0.5 | 0.4.94-5 | - +- amd64 | gobby-0.5-dbg | 0.4.94-5 | - +- amd64 | gobjc | 4:4.7.2-1 | - +- amd64 | gobjc++ | 4:4.7.2-1 | - +- amd64 | gobjc++-4.6 | 4.6.3-14 | - +- amd64 | gobjc++-4.6-multilib | 4.6.3-14 | - +- amd64 | gobjc++-4.7 | 4.7.2-5 | - +- amd64 | gobjc++-4.7-multilib | 4.7.2-5 | - +- amd64 | gobjc++-mingw-w64-i686 | 4.6.3-14+8 | - +- amd64 | gobjc++-mingw-w64-x86-64 | 4.6.3-14+8 | - +- amd64 | gobjc++-multilib | 4:4.7.2-1 | - +- amd64 | gobjc-4.6 | 4.6.3-14 | - +- amd64 | gobjc-4.6-multilib | 4.6.3-14 | - +- amd64 | gobjc-4.7 | 4.7.2-5 | - +- amd64 | gobjc-4.7-multilib | 4.7.2-5 | - +- amd64 | gobjc-mingw-w64-i686 | 4.6.3-14+8 | - +- amd64 | gobjc-mingw-w64-x86-64 | 4.6.3-14+8 | - +- amd64 | gobjc-multilib | 4:4.7.2-1 | - +- amd64 | gobject-introspection | 1.32.1-1 | - +- amd64 | gocr | 0.49-1 | - +- amd64 | god | 0.7.18-3 | - +- amd64 | gofigure2 | 0.9.0-1+b2 | - +- amd64 | gogglesmm | 0.12.6-1 | - +- amd64 | gogoc | 1:1.2-4 | - +- amd64 | golang-dbg | 2:1.0.2-1.1 | - +- amd64 | golang-go | 2:1.0.2-1.1 | - +- amd64 | golang-src | 2:1.0.2-1.1 | - +- amd64 | goldencheetah | 2.1-4 | - +- amd64 | goldendict | 1.0.2~git20110906-1.1 | - +- amd64 | golly | 2.3-1 | - +- amd64 | gom | 0.30.2-5.4 | - +- amd64 | gomoku.app | 1.2.9-1+b2 | - +- amd64 | gonzui | 1.2+cvs20070129-3.1 | - +- amd64 | goo | 0.155-12 | - +- amd64 | goobox | 3.0.1-5 | - +- amd64 | google-mock | 1.6.0-1 | - +- amd64 | gopchop | 1.1.8-5 | - +- amd64 | gopher | 3.0.13 | - +- amd64 | goplay | 0.5-1.1 | - +- amd64 | gorm.app | 1.2.16-1 | - +- amd64 | gosmore | 0.0.0.20100711-2.1 | - +- amd64 | gource | 0.38-1 | - +- amd64 | gozer | 0.7.nofont.1-5 | - +- amd64 | gpa | 0.9.0-4 | - +- amd64 | gpac | 0.5.0~dfsg0-1 | - +- amd64 | gpac-dbg | 0.5.0~dfsg0-1 | - +- amd64 | gpac-modules-base | 0.5.0~dfsg0-1 | - +- amd64 | gpaco | 2.0.9-2 | - +- amd64 | gpaint | 0.3.3-6 | - +- amd64 | gpart | 0.1h-11+b1 | - +- amd64 | gparted | 0.12.1-2+b1 | - +- amd64 | gpdftext | 0.1.5-1+b2 | - +- amd64 | gpe-announce | 0.14-2 | - +- amd64 | gpe-appmgr | 2.8-3 | - +- amd64 | gpe-bluetooth | 0.56-3 | - +- amd64 | gpe-calendar | 0.92-4 | - +- amd64 | gpe-clock | 0.27-2 | - +- amd64 | gpe-conf | 0.2.9-1.1 | - +- amd64 | gpe-confd | 0.16-2 | - +- amd64 | gpe-contacts | 0.49-2 | - +- amd64 | gpe-edit | 0.41-1 | - +- amd64 | gpe-expenses | 0.1.9-2 | - +- amd64 | gpe-filemanager | 0.31-2 | - +- amd64 | gpe-gallery | 0.97-4 | - +- amd64 | gpe-go | 0.05-5 | - +- amd64 | gpe-julia | 0.0.6-7 | - +- amd64 | gpe-lights | 0.13-4 | - +- amd64 | gpe-login | 0.95-2 | - +- amd64 | gpe-mininet | 0.7-2 | - +- amd64 | gpe-mixer | 0.50-1 | - +- amd64 | gpe-othello | 0.2-4 | - +- amd64 | gpe-ownerinfo | 0.28-3 | - +- amd64 | gpe-ownerinfo-dev | 0.28-3 | - +- amd64 | gpe-question | 0.04-3 | - +- amd64 | gpe-screenshot | 0.4-4 | - +- amd64 | gpe-shield | 0.31-6 | - +- amd64 | gpe-soundbite | 1.0.6-2 | - +- amd64 | gpe-soundserver | 0.4-3 | - +- amd64 | gpe-su | 0.20-1 | - +- amd64 | gpe-taskmanager | 0.20-9 | - +- amd64 | gpe-tetris | 0.6.4-2 | - +- amd64 | gpe-timesheet | 0.32-2 | - +- amd64 | gpe-todo | 0.58-1 | - +- amd64 | gpe-watch | 0.11-1 | - +- amd64 | gpe-what | 0.43-4 | - +- amd64 | gperf | 3.0.3-1+b1 | - +- amd64 | gperiodic | 2.0.10-7 | - +- amd64 | gpesyncd | 2.0-1 | - +- amd64 | gpgsm | 2.0.19-2+deb7u1 | - +- amd64 | gpgv | 1.4.12-7+deb7u3 | - +- amd64 | gphoto2 | 2.4.14-1 | - +- amd64 | gphotofs | 0.4.0-6 | - +- amd64 | gphpedit | 0.9.98-2 | - +- amd64 | gpick | 0.2.4-1+b1 | - +- amd64 | gpicview | 0.2.3-2 | - +- amd64 | gpicview-dbg | 0.2.3-2 | - +- amd64 | gpiv | 0.6.1-2 | - +- amd64 | gpiv-mpi | 0.6.1-2 | - +- amd64 | gpivtools | 0.6.0-3 | - +- amd64 | gpivtools-mpi | 0.6.0-3 | - +- amd64 | gplanarity | 17906-3 | - +- amd64 | gplcver | 2.12a-1.1 | - +- amd64 | gpm | 1.20.4-6 | - +- amd64 | gpointing-device-settings | 1.5.1-6 | - +- amd64 | gpomme | 1.39~dfsg-2+b1 | - +- amd64 | gpp | 2.24-3 | - +- amd64 | gpr | 0.15deb-2 | - +- amd64 | gprbuild | 2011-2 | - +- amd64 | gpredict | 1.3-2 | - +- amd64 | gprolog | 1.3.0-6.1 | - +- amd64 | gprompter | 0.8.8-1 | - +- amd64 | gprompter-dbg | 0.8.8-1 | - +- amd64 | gpsbabel | 1.4.3-1 | - +- amd64 | gpsbabel-gui | 1.4.3-1 | - +- amd64 | gpscorrelate | 1.6.1-4 | - +- amd64 | gpscorrelate-gui | 1.6.1-4 | - +! amd64 | gpsd | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | gpsd-clients | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | gpsd-dbg | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- amd64 | gpsim | 0.26.1-2.1 | - +- amd64 | gpsim-dev | 0.26.1-2.1 | - +- amd64 | gpsk31 | 0.5-6 | - +- amd64 | gpsmanshp | 1.2.1-1 | - +- amd64 | gpstrans | 0.41-3 | - +- amd64 | gpt | 1.1-2 | - +- amd64 | gptsync | 0.14-2 | - +- amd64 | gputils | 0.13.7-1 | - +- amd64 | gpw | 0.0.19940601-8.1 | - +- amd64 | gpx2shp | 0.69-3.1 | - ++ amd64 | gr-fcdproplus | - | 0.0.1.1.2c80be-3~bpo70+1 ++ amd64 | gr-iqbal | - | 0.37.1.5.d4fd4d-1~bpo70+1 ++ amd64 | gr-osmosdr | - | 0.1.0.55.80c4af-2~bpo70~1 +- amd64 | grabc | 1.1-2 | - +- amd64 | grace | 1:5.1.22-13 | - +- amd64 | gradm2 | 2.9.1~201206091838-1 | - +- amd64 | grads | 2.0.a9-4+b2 | - +- amd64 | grafx2 | 2.3-1.1 | - +- amd64 | gramofile | 1.6-9 | - +- amd64 | gramophone2 | 0.8.13a-1 | - +- amd64 | granatier | 4:4.8.4-3 | - +- amd64 | granule | 1.4.0-7-1 | - +- amd64 | grap | 1.43-2 | - +- amd64 | graphdefang | 2.71-3 | - +- amd64 | graphicsmagick | 1.3.16-1.1 | - +- amd64 | graphicsmagick-dbg | 1.3.16-1.1 | - +- amd64 | graphthing | 1.3.2-3.1 | - +- amd64 | graphviz | 2.26.3-14+deb7u1 | - +- amd64 | grass-core | 6.4.2-2 | - +- amd64 | grass-dev | 6.4.2-2 | - +- amd64 | grass-gui | 6.4.2-2 | - +- amd64 | gravitation | 3+dfsg1-3 | - +- amd64 | gravitywars | 1.102-32 | - +- amd64 | grcm | 0.1.6-1 | - +- amd64 | grcompiler | 4.2-1 | - +- amd64 | grdesktop | 0.23+d040330-3 | - +- amd64 | greed | 3.7-1 | - +- amd64 | gregorio | 2.0-1.2 | - +- amd64 | grep | 2.12-2 | - +- amd64 | grepcidr | 1.3-5 | - +- amd64 | gresolver | 0.0.5-5 | - +- amd64 | gretl | 1.9.9-1 | - +- amd64 | grfcodec | 6.0.0-1 | - +- amd64 | grhino | 0.16.1-2 | - +- amd64 | gri | 2.12.23-2.2 | - +- amd64 | gridengine-client | 6.2u5-7.1 | - +- amd64 | gridengine-drmaa-dev | 6.2u5-7.1 | - +- amd64 | gridengine-drmaa1.0 | 6.2u5-7.1 | - +- amd64 | gridengine-exec | 6.2u5-7.1 | - +- amd64 | gridengine-master | 6.2u5-7.1 | - +- amd64 | gridengine-qmon | 6.2u5-7.1 | - +- amd64 | gridlock.app | 1.10-3.2 | - +- amd64 | gridsite | 1.7.16-1 | - +- amd64 | gridsite-clients | 1.7.16-1 | - +- amd64 | gridsite-dbg | 1.7.16-1 | - +- amd64 | gridsite-gsexec | 1.7.16-1 | - +- amd64 | grig | 0.8.0-1 | - +- amd64 | grilo-plugins-0.1 | 0.1.19-1 | - +- amd64 | gringo | 3.0.4-3 | - +- amd64 | gringotts | 1.2.10~pre3-1 | - +- amd64 | grisbi | 0.8.9-1 | - +- amd64 | grml2usb | 0.12.2 | - +- amd64 | groff | 1.21-9 | - +- amd64 | groff-base | 1.21-9 | - +- amd64 | grok | 1.20110708.1-4 | - +- amd64 | grok-dbg | 1.20110708.1-4 | - +- amd64 | gromacs | 4.5.5-2 | - +- amd64 | gromacs-dev | 4.5.5-2 | - +- amd64 | gromacs-mpich | 4.5.5-2 | - +- amd64 | gromacs-openmpi | 4.5.5-2 | - +- amd64 | gromit | 20041213-9 | - +- amd64 | gross | 1.0.2-3 | - +- amd64 | groundhog | 1.4-9 | - +- amd64 | growisofs | 7.1-10 | - +- amd64 | grpn | 1.1.2-3.1 | - +- amd64 | grr.app | 0.9.0-1 | - +- amd64 | grsync | 1.2.0-1 | - +- amd64 | grub-common | 1.99-27+deb7u2 | - +- amd64 | grub-coreboot | 1.99-27+deb7u2 | - +- amd64 | grub-coreboot-bin | 1.99-27+deb7u2 | - +- amd64 | grub-efi | 1.99-27+deb7u2 | - +- amd64 | grub-efi-amd64 | 1.99-27+deb7u2 | - +- amd64 | grub-efi-amd64-bin | 1.99-27+deb7u2 | - +- amd64 | grub-efi-ia32 | 1.99-27+deb7u2 | - +- amd64 | grub-efi-ia32-bin | 1.99-27+deb7u2 | - +- amd64 | grub-emu | 1.99-27+deb7u2 | - +- amd64 | grub-firmware-qemu | 1.99-27+deb7u2 | - +- amd64 | grub-ieee1275 | 1.99-27+deb7u2 | - +- amd64 | grub-ieee1275-bin | 1.99-27+deb7u2 | - +- amd64 | grub-invaders | 1.0.0-12 | - +- amd64 | grub-legacy | 0.97-67 | - +- amd64 | grub-linuxbios | 1.99-27+deb7u2 | - +- amd64 | grub-pc | 1.99-27+deb7u2 | - +- amd64 | grub-pc-bin | 1.99-27+deb7u2 | - +- amd64 | grub-rescue-pc | 1.99-27+deb7u2 | - +- amd64 | grub2 | 1.99-27+deb7u2 | - +- amd64 | grub2-common | 1.99-27+deb7u2 | - +- amd64 | grun | 0.9.3-1 | - +- amd64 | gsasl | 1.8.0-2 | - +- amd64 | gsasl-dbg | 1.8.0-2 | - +- amd64 | gscanbus | 0.8-1 | - +- amd64 | gsetroot | 1.1-2.2 | - +- amd64 | gsettings-desktop-schemas-dev | 3.4.2-3 | - +- amd64 | gsimplecal | 1.5-1 | - +- amd64 | gsl-bin | 1.15+dfsg.2-2 | - +- amd64 | gsm-utils | 1.10-13.2 | - +- amd64 | gsm0710muxd | 1.13-1+b1 | - +- amd64 | gsmartcontrol | 0.8.6-1.2 | - +- amd64 | gsmc | 1.1-1.1 | - +- amd64 | gsoap | 2.8.7-2 | - +- amd64 | gsoap-dbg | 2.8.7-2 | - +- amd64 | gsoko | 0.4.2-gpe6-3 | - +- amd64 | gsql | 0.2.2-1.2+b1 | - +- amd64 | gsql-mysql-engine | 0.2.2-1.2+b1 | - +- amd64 | gsql-plugins | 0.2.2-1.2+b1 | - +- amd64 | gsql-postgresql-engine | 0.2.2-1.2+b1 | - +- amd64 | gssdp-tools | 0.12.2.1-2 | - +- amd64 | gst123 | 0.3.1-1 | - +- amd64 | gstm | 1.2-8 | - +- amd64 | gstreamer-tools | 0.10.36-1.2 | - +- amd64 | gstreamer0.10-alsa | 0.10.36-1.1 | - +- amd64 | gstreamer0.10-buzztard | 0.5.0-2+deb7u1 | - +- amd64 | gstreamer0.10-chromaprint | 0.1-3 | - +- amd64 | gstreamer0.10-crystalhd | 1:0.0~git20110715.fdd2f19-9 | - +- amd64 | gstreamer0.10-dvswitch | 0.0.1-1 | - +- amd64 | gstreamer0.10-ffmpeg | 0.10.13-5 | - +- amd64 | gstreamer0.10-ffmpeg-dbg | 0.10.13-5 | - +- amd64 | gstreamer0.10-fluendo-mp3 | 0.10.15.debian-1 | - +- amd64 | gstreamer0.10-gconf | 0.10.31-3+nmu1 | - +- amd64 | gstreamer0.10-gnomevfs | 0.10.36-1.1 | - +- amd64 | gstreamer0.10-gnonlin | 0.10.17-2 | - +- amd64 | gstreamer0.10-gnonlin-dbg | 0.10.17-2 | - +- amd64 | gstreamer0.10-hplugins | 0.2.0-2 | - +- amd64 | gstreamer0.10-nice | 0.1.2-1 | - +- amd64 | gstreamer0.10-packagekit | 0.7.6-3 | - +- amd64 | gstreamer0.10-plugins-bad | 0.10.23-7.1 | - +- amd64 | gstreamer0.10-plugins-bad-dbg | 0.10.23-7.1 | - +- amd64 | gstreamer0.10-plugins-base | 0.10.36-1.1 | - +- amd64 | gstreamer0.10-plugins-base-apps | 0.10.36-1.1 | - +- amd64 | gstreamer0.10-plugins-base-dbg | 0.10.36-1.1 | - +- amd64 | gstreamer0.10-plugins-cutter | 1.1.7-1.2 | - +- amd64 | gstreamer0.10-plugins-good | 0.10.31-3+nmu1 | - +- amd64 | gstreamer0.10-plugins-good-dbg | 0.10.31-3+nmu1 | - +- amd64 | gstreamer0.10-plugins-ugly | 0.10.19-2+b2 | - +- amd64 | gstreamer0.10-plugins-ugly-dbg | 0.10.19-2+b2 | - +- amd64 | gstreamer0.10-pulseaudio | 0.10.31-3+nmu1 | - +- amd64 | gstreamer0.10-qapt | 1.3.0-2 | - +- amd64 | gstreamer0.10-tools | 0.10.36-1.2 | - +- amd64 | gstreamer0.10-x | 0.10.36-1.1 | - ++ amd64 | gstreamer1.0-alsa | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-libav | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-libav-dbg | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-bad | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-bad-dbg | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-base | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-base-apps | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-base-dbg | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-good | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-good-dbg | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-ugly | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-plugins-ugly-dbg | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-pulseaudio | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-tools | - | 1.0.8-1~bpo70+1 ++ amd64 | gstreamer1.0-x | - | 1.0.8-1~bpo70+1 +- amd64 | gsynaptics | 1.5.1-6 | - +- amd64 | gtali | 1:3.4.2-3 | - +- amd64 | gtamsanalyzer.app | 0.42-6+b3 | - +- amd64 | gtans | 1.99.0-2 | - +- amd64 | gtetrinet | 0.7.11-3+b2 | - +- amd64 | gthumb | 3:3.0.1-2 | - +- amd64 | gthumb-dbg | 3:3.0.1-2 | - +- amd64 | gthumb-dev | 3:3.0.1-2 | - +- amd64 | gtick | 0.5.1-1 | - +- amd64 | gtimer | 2.0.0-1.1 | - +- amd64 | gtk-3-examples | 3.4.2-7 | - +- amd64 | gtk-chtheme | 0.3.1-5 | - +- amd64 | gtk-gnutella | 0.98.3-1 | - +- amd64 | gtk-im-libthai | 0.2.1-4 | - +- amd64 | gtk-sharp2-gapi | 2.12.10-5 | - +- amd64 | gtk-theme-switch | 2.1.0-2 | - +- amd64 | gtk-vector-screenshot | 0.3.2-1 | - +- amd64 | gtk2-engines | 1:2.20.2-2 | - +- amd64 | gtk2-engines-aurora | 1.5.1-3 | - +- amd64 | gtk2-engines-cleanice | 2.4.1-3 | - +- amd64 | gtk2-engines-magicchicken | 1.1.1-9 | - +- amd64 | gtk2-engines-moblin | 1.1.1-1.1 | - +- amd64 | gtk2-engines-murrine | 0.98.1.1-5 | - +- amd64 | gtk2-engines-nodoka | 0.7.0-1.1 | - +- amd64 | gtk2-engines-oxygen | 1.2.4-1 | - +- amd64 | gtk2-engines-pixbuf | 2.24.10-2 | - +- amd64 | gtk2-engines-qtcurve | 1.8.15-4 | - +- amd64 | gtk2-engines-ubuntulooks | 0.9.12-2 | - +- amd64 | gtk2-engines-wonderland | 1.0-8 | - +- amd64 | gtk2-engines-xfce | 2.8.1-3 | - +- amd64 | gtk2.0-examples | 2.24.10-2 | - +- amd64 | gtk2hs-buildtools | 0.12.3-2 | - +- amd64 | gtk3-engines-oxygen | 1.0.4-1 | - +- amd64 | gtk3-engines-unico | 1.0.2-1 | - +- amd64 | gtk3-im-libthai | 0.2.1-4 | - +- amd64 | gtkam | 0.1.18-1 | - +- amd64 | gtkam-dbg | 0.1.18-1 | - +- amd64 | gtkam-gimp | 0.1.18-1 | - +- amd64 | gtkaml | 0.5.91-1 | - +- amd64 | gtkaml-dbg | 0.5.91-1 | - +- amd64 | gtkatlantic | 0.4.2-3 | - +- amd64 | gtkballs | 3.1.5-9 | - +- amd64 | gtkboard | 0.11pre0+cvs.2003.11.02-5 | - +- amd64 | gtkcookie | 0.4-5 | - +- amd64 | gtkguitune | 0.8-6 | - +- amd64 | gtkhash | 0.6.0-4 | - +- amd64 | gtklp | 1.2.7-2.3 | - +- amd64 | gtkmorph | 1:20090926 | - +- amd64 | gtkperf | 0.40+ds-2 | - +- amd64 | gtkpod | 2.1.2-1 | - +- amd64 | gtkpod-dbg | 2.1.2-1 | - +- amd64 | gtkpool | 0.5.0-9 | - +- amd64 | gtkwave | 3.3.37-1 | - +- amd64 | gtranslator | 2.91.4-1 | - +- amd64 | gtrayicon | 1.1-1 | - +- amd64 | gtrayicon-dbg | 1.1-1 | - +- amd64 | gtypist | 2.9.1-2.1 | - +- amd64 | guacd | 0.6.0-1 | - +- amd64 | guake | 0.4.3-3 | - +- amd64 | guayadeque | 0.3.5~ds0-4 | - +- amd64 | guayadeque-dbg | 0.3.5~ds0-4 | - +- amd64 | gucharmap | 1:3.4.1.1-2.1 | - +- amd64 | guessnet | 0.55 | - +- amd64 | guestfish | 1:1.18.1-1+deb7u3 | - +- amd64 | guestfsd | 1:1.18.1-1+deb7u3 | - +- amd64 | guestmount | 1:1.18.1-1+deb7u3 | - +- amd64 | guile-1.6 | 1.6.8-10.3 | - +- amd64 | guile-1.6-dev | 1.6.8-10.3 | - +- amd64 | guile-1.6-libs | 1.6.8-10.3 | - +- amd64 | guile-1.8 | 1.8.8+1-8 | - +- amd64 | guile-1.8-dev | 1.8.8+1-8 | - +- amd64 | guile-1.8-libs | 1.8.8+1-8 | - +- amd64 | guile-2.0 | 2.0.5+1-3 | - +- amd64 | guile-2.0-dev | 2.0.5+1-3 | - +- amd64 | guile-2.0-libs | 2.0.5+1-3 | - +- amd64 | guile-cairo | 1.4.0-3 | - +- amd64 | guile-cairo-dev | 1.4.0-3 | - +- amd64 | guile-db | 0.1-4.1 | - +- amd64 | guile-g-wrap | 1.9.14-1.1 | - +! amd64 | guile-gnutls | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +- amd64 | guile-pg | 0.16-5 | - +- amd64 | guitarix | 0.22.4-1 | - +- amd64 | gummi | 0.6.3-1.2 | - +- amd64 | gunroar | 0.15.dfsg1-5 | - +- amd64 | gup | 0.5.13 | - +- amd64 | gupnp-dlna-tools | 0.6.6-1 | - +- amd64 | gupnp-tools | 0.8.4-1 | - +- amd64 | gupnp-vala | 0.10.4-1 | - +- amd64 | gurlchecker | 0.13.1-2.1 | - +- amd64 | guvcview | 1.5.3-1 | - +- amd64 | guymager | 0.6.7-3 | - +- amd64 | gv | 1:3.7.3-1 | - +- amd64 | gvfs | 1.12.3-4 | - +- amd64 | gvfs-backends | 1.12.3-4 | - +- amd64 | gvfs-bin | 1.12.3-4 | - +- amd64 | gvfs-daemons | 1.12.3-4 | - +- amd64 | gvfs-dbg | 1.12.3-4 | - +- amd64 | gvfs-fuse | 1.12.3-4 | - +- amd64 | gvfs-libs | 1.12.3-4 | - +- amd64 | gvidm | 0.8-11 | - +- amd64 | gvncviewer | 0.5.0-3.1 | - +- amd64 | gvpe | 2.24-2 | - +- amd64 | gwaei | 3.4.3-1 | - +- amd64 | gwaterfall | 0.1-5 | - +- amd64 | gwc | 0.21.17~dfsg0-2 | - +- amd64 | gwc-dbg | 0.21.17~dfsg0-2 | - +- amd64 | gweled | 0.9.1-2 | - +! amd64 | gwenhywfar-tools | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +- amd64 | gwenview | 4:4.8.4-2 | - +- amd64 | gwenview-dbg | 4:4.8.4-2 | - +- amd64 | gwhere | 0.2.3.dfsg.1-3 | - +- amd64 | gworkspace.app | 0.8.8-1.1 | - +- amd64 | gworldclock | 1.4.4-9 | - +- amd64 | gwsetup | 6.05.1-1 | - +- amd64 | gwtp | 6.05.1-1 | - +- amd64 | gwyddion | 2.28-2 | - +- amd64 | gwyddion-plugins | 2.28-2 | - +- amd64 | gxine | 0.5.907-2+deb7u1 | - +- amd64 | gxineplugin | 0.5.907-2+deb7u1 | - +- amd64 | gxmessage | 2.20.0-1 | - +- amd64 | gxmms2 | 0.7.1-2 | - +- amd64 | gxneur | 0.15.0-2.1 | - +- amd64 | gxtuner | 2.0-2 | - +! amd64 | gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! amd64 | gyoto-dbg | 0.0.3-5 | 0.1.0-2~bpo70+1 +- amd64 | gyrus | 0.3.10-1.1 | - +- amd64 | gzip | 1.5-1.1 | - +- amd64 | gzrt | 0.6+ds1-1 | - +- amd64 | h5utils | 1.12.1-2 | - +- amd64 | ha | 0.999p+dfsg-3 | - ++ amd64 | hackrf | - | 2013.07.1.16.d5cebd-2~bpo70+1 +- amd64 | hal | 0.5.14-8 | - +- amd64 | halevt | 0.1.6.2-2 | - +- amd64 | halibut | 1.0+svn20090906-6 | - +- amd64 | hama-slide-mouse-control | 1.0-2 | - +- amd64 | hamfax | 0.8.1-1+b1 | - +- amd64 | handlersocket-mysql-5.5 | 1.1.0-7-g1044a28-1 | - +- amd64 | hannah | 1.0-2 | - +- amd64 | hapm | 0.7-1 | - +- amd64 | happy | 1.18.9-1 | - ++ amd64 | haproxy | - | 1.4.24-2~bpo70+1 +- amd64 | hardening-wrapper | 2.2 | - +- amd64 | hardinfo | 0.5.1-1.2 | - +- amd64 | hardlink | 0.2.0 | - +- amd64 | harminv | 1.3.1-9 | - +- amd64 | hasciicam | 1.1.2-1 | - +- amd64 | haserl | 0.9.29-3 | - +- amd64 | hashalot | 0.3-5 | - +- amd64 | hashcash | 1.21-1.1 | - +- amd64 | haskell-debian-utils | 3.64-3+b1 | - +- amd64 | hatari | 1.6.2-1 | - +! amd64 | haveged | 1.4-4 | 1.7b-2~bpo70+1 +- amd64 | haxml | 1:1.22.5-2+b2 | - +- amd64 | hdapsd | 1:20090401-2 | - +- amd64 | hdate-applet | 0.15.11-1.1+b2 | - +- amd64 | hddtemp | 0.3-beta15-52 | - +- amd64 | hdf4-tools | 4.2r4-13 | - +- amd64 | hdf5-helpers | 1.8.8-9 | - +- amd64 | hdf5-tools | 1.8.8-9 | - +- amd64 | hdfview | 2.8.0-5 | - +- amd64 | hdhomerun-config | 20120405-1 | - +- amd64 | hdparm | 9.39-1+b1 | - +- amd64 | hdparm-dbg | 9.39-1+b1 | - +- amd64 | hdup | 2.0.14-4 | - +- amd64 | heartbeat | 1:3.0.5-3 | - +- amd64 | heartbeat-dev | 1:3.0.5-3 | - +- amd64 | hebcal | 3.5-2 | - +! amd64 | hedgewars | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +- amd64 | heimdal-clients | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-clients-x | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-dbg | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-dev | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-kcm | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-kdc | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-multidev | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-servers | 1.6~git20120403+dfsg1-2 | - +- amd64 | heimdal-servers-x | 1.6~git20120403+dfsg1-2 | - +- amd64 | heirloom-mailx | 12.5-2 | - +- amd64 | helium | 1.7~pre20090428-3.1 | - +- amd64 | hello | 2.8-2 | - +- amd64 | hello-debhelper | 2.8-1 | - +- amd64 | help2man | 1.40.10 | - +- amd64 | helpviewer.app | 0.3-7+b3 | - +! amd64 | herbstluftwm | 0.3-1 | 0.5.3-1~bpo70+1 +- amd64 | hercules | 3.07-2.2 | - +- amd64 | herculesstudio | 1.3.0-2 | - +- amd64 | heroes-common | 0.21-8.4 | - +- amd64 | heroes-sdl | 0.21-8.4 | - +- amd64 | hesiod | 3.0.2-21 | - +- amd64 | hex-a-hop | 0.0.20070315-8 | - +- amd64 | hexalate | 1.0.1-3 | - +- amd64 | hexcurse | 1.55-2 | - +- amd64 | hexec | 0.2.1-2 | - +- amd64 | hexedit | 1.2.12-4 | - +- amd64 | hexer | 0.1.7-1.1 | - +- amd64 | hexter | 0.6.2-3 | - +- amd64 | hexxagon | 1.0pl1-3.1 | - +- amd64 | hfsplus | 1.0.4-12 | - +- amd64 | hfsprogs | 332.25-10 | - +- amd64 | hfsutils | 3.2.6-11 | - +- amd64 | hfsutils-tcltk | 3.2.6-11 | - +- amd64 | hhsuite | 2.0.15-1 | - +- amd64 | hhsuite-dbg | 2.0.15-1 | - +- amd64 | highlight | 3.9-1 | - +- amd64 | hime | 0.9.9+git20120619+dfsg-1 | - +- amd64 | hime-anthy | 0.9.9+git20120619+dfsg-1 | - +- amd64 | hime-chewing | 0.9.9+git20120619+dfsg-1 | - +- amd64 | hime-gtk3-immodule | 0.9.9+git20120619+dfsg-1 | - +- amd64 | hime-qt4-immodule | 0.9.9+git20120619+dfsg-1 | - +- amd64 | hime-tables | 0.9.9+git20120619+dfsg-1 | - +- amd64 | hitori | 0.3.2-1 | - +- amd64 | hlbr | 1.7.2-2 | - +- amd64 | hlint | 1.8.28-1+b3 | - +- amd64 | hmmer | 3.0-4 | - +- amd64 | hnb | 1.9.18-9 | - +- amd64 | ho22bus | 0.9.1-2 | - +- amd64 | hodie | 1.5-1 | - +- amd64 | hoichess | 0.10.3-6.1 | - +- amd64 | hol-light | 20120602-1 | - +- amd64 | hol88 | 2.02.19940316-15 | - +- amd64 | hol88-library | 2.02.19940316-15 | - +- amd64 | holdingnuts | 0.0.5-4 | - +- amd64 | holdingnuts-server | 0.0.5-4 | - +- amd64 | holotz-castle | 1.3.14-5 | - +- amd64 | holotz-castle-editor | 1.3.14-5 | - +- amd64 | homebank | 4.4-1 | - +- amd64 | horgand | 1.14-5 | - +- amd64 | hostap-utils | 1:0.4.7-1 | - +- amd64 | hostapd | 1:1.0-3+b2 | - +- amd64 | hostname | 3.11 | - +- amd64 | hotkeys | 0.5.7.4-0.3+b1 | - +- amd64 | hotswap-gui | 0.4.0-12 | - +- amd64 | hotswap-text | 0.4.0-12 | - +- amd64 | hoz | 1.65-2 | - +- amd64 | hoz-gui | 1.65-2 | - +- amd64 | hp2xx | 3.4.4-8+b1 | - +- amd64 | hp48cc | 1.3-4 | - +- amd64 | hpanel | 0.3.2-4 | - +- amd64 | hpcc | 1.4.1-2 | - +- amd64 | hping3 | 3.a2.ds2-6 | - +- amd64 | hplip | 3.12.6-3.1+deb7u1 | - +- amd64 | hplip-dbg | 3.12.6-3.1+deb7u1 | - +- amd64 | hpsockd | 0.17+b1 | - +- amd64 | hscolour | 1.19-3+b1 | - +- amd64 | hsetroot | 1.0.2-1 | - +- amd64 | hspell | 1.1-2 | - +- amd64 | hspell-gui | 0.2.6-5.1 | - +- amd64 | ht | 2.0.20-2 | - +- amd64 | htcheck | 1:2.0.0~rc1-2+b1 | - +- amd64 | htdig | 1:3.2.0b6-12 | - +- amd64 | html-xml-utils | 6.1-1 | - +- amd64 | html2text | 1.3.2a-15 | - +- amd64 | htmldoc | 1.8.27-8 | - +- amd64 | htop | 1.0.1-1 | - ++ amd64 | htpdate | - | 1.1.0-1~bpo70+1 +- amd64 | htsengine | 1.06-1 | - +- amd64 | httest | 2.2.6-1 | - +- amd64 | httperf | 0.9.0-2+b1 | - +- amd64 | httpfs2 | 0.1.4-1 | - +- amd64 | httpie | 0.1.6+20120309git-2.1 | - +- amd64 | httping | 1.5.3-1 | - ++ amd64 | httpry | - | 0.1.7-3~bpo70+1 ++ amd64 | httpry-dbg | - | 0.1.7-3~bpo70+1 +- amd64 | httptunnel | 3.3+dfsg-3 | - +- amd64 | httrack | 3.46.1-1 | - +! amd64 | hugin | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! amd64 | hugin-tools | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +- amd64 | hugs | 98.200609.21-5.3 | - +- amd64 | hunspell | 1.3.2-4 | - +- amd64 | hunspell-tools | 1.3.2-4 | - +- amd64 | hunt | 1.5-6 | - +- amd64 | hwinfo | 16.0-2.2 | - +- amd64 | hwloc | 1.4.1-4 | - +- amd64 | hwloc-nox | 1.4.1-4 | - +- amd64 | hyantesite | 1.3.0-1 | - +- amd64 | hydrogen | 0.9.6~beta2-1 | - +- amd64 | hylafax-client | 3:6.0.6-5 | - +- amd64 | hylafax-client-dbg | 3:6.0.6-5 | - +- amd64 | hylafax-server | 3:6.0.6-5 | - +- amd64 | hylafax-server-dbg | 3:6.0.6-5 | - +- amd64 | hyphen-show | 20000425-2 | - +- amd64 | i2c-tools | 3.1.0-2 | - +! amd64 | i3 | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3-wm | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3-wm-dbg | 4.2-2 | 4.7.2-1~bpo70+1 +- amd64 | i3lock | 2.4.1-1 | - +! amd64 | i3status | 2.5.1-1 | 2.8-1~bpo70+1 +- amd64 | i810switch | 0.6.5-7 | - +- amd64 | i8kutils | 1.33 | - +- amd64 | i965-va-driver | 1.0.17-1 | - +- amd64 | i965-va-driver-dbg | 1.0.17-1 | - +- amd64 | ia32-libs | 1:0.4 | - +- amd64 | ia32-libs-gtk | 1:0.1 | - +- amd64 | iagno | 1:3.4.2-3 | - +- amd64 | iasl | 20100528-3 | - +- amd64 | iat | 0.1.3-7 | - +- amd64 | iaxmodem | 1.2.0~dfsg-1 | - +- amd64 | ibam | 1:0.5.2-2.1 | - +- amd64 | ibod | 1.5.0-6 | - +- amd64 | ibsim-utils | 0.5-1.1 | - +- amd64 | ibulgarian | 4.1-3 | - +! amd64 | ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- amd64 | ibus-anthy | 1.2.6-2+deb7u1 | - +- amd64 | ibus-array | 0.0.2-6 | - +- amd64 | ibus-chewing | 1.3.10+clean-3 | - +- amd64 | ibus-clutter | 0.0+git20090728.a936bacf-5 | - +! amd64 | ibus-gtk | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | ibus-gtk3 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- amd64 | ibus-hangul | 1.4.1-1+deb7u1 | - +- amd64 | ibus-input-pad | 1.4.0-2 | - +- amd64 | ibus-m17n | 1.3.4-1+deb7u1 | - +- amd64 | ibus-mozc | 1.5.1090.102-4+deb7u1 | - +- amd64 | ibus-pinyin | 1.4.0-1+deb7u1 | - +- amd64 | ibus-qt4 | 1.3.1-2.1 | - +- amd64 | ibus-skk | 1.4.1-2+deb7u1 | - +- amd64 | ibus-sunpinyin | 2.0.3-4+deb7u1 | - +- amd64 | ibus-tegaki | 0.3.1-1 | - +- amd64 | ibus-unikey | 0.6.1-1 | - +- amd64 | ibutils | 1.2-OFED-1.4.2-1.3 | - +- amd64 | ibverbs-utils | 1.1.6-1 | - +- amd64 | ical2html | 2.0-1 | - +- amd64 | icc-utils | 1.4.0-8 | - +- amd64 | ice34-services | 3.4.2-8.2 | - +- amd64 | ice34-translators | 3.4.2-8.2 | - +- amd64 | icebox | 3.4.2-8.2 | - +- amd64 | icebreaker | 1.21-11 | - +- amd64 | icecast2 | 2.3.2-9+deb7u2 | - +- amd64 | icedax | 9:1.1.11-2 | - +- amd64 | icedove | 10.0.12-1 | - +- amd64 | icedove-dbg | 10.0.12-1 | - +- amd64 | icedove-dev | 10.0.12-1 | - +- amd64 | icedtea-6-jre-cacao | 6b27-1.12.5-1 | - +- amd64 | icedtea-6-jre-jamvm | 6b27-1.12.5-1 | - +- amd64 | icedtea-6-plugin | 1.3.2-1 | - +- amd64 | icedtea-7-jre-cacao | 7u3-2.1.7-1 | - +- amd64 | icedtea-7-jre-jamvm | 7u3-2.1.7-1 | - +- amd64 | icedtea-7-plugin | 1.3.2-1 | - +- amd64 | icedtea-netx | 1.3.2-1 | - +- amd64 | icee-translators | 1.2.0-6 | - +- amd64 | iceowl-extension | 10.0.12-1 | - +- amd64 | ices2 | 2.0.1-13 | - +- amd64 | iceweasel | 17.0.10esr-1~deb7u1 | - +- amd64 | iceweasel-dbg | 17.0.10esr-1~deb7u1 | - +- amd64 | icewm | 1.3.7-4 | - +- amd64 | icewm-common | 1.3.7-4 | - +- amd64 | icewm-experimental | 1.3.7-4 | - +- amd64 | icewm-gnome-support | 1.3.7-4 | - +- amd64 | icewm-lite | 1.3.7-4 | - +- amd64 | icheck | 0.9.7-6.1+b2 | - +! amd64 | icinga | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-cgi | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-core | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-dbg | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-idoutils | 1.7.1-6 | 1.9.3-2~bpo70+1 +- amd64 | icmake | 7.18.00-2 | - +- amd64 | icmpinfo | 1.11-7 | - +- amd64 | icmptx | 0.2-1 | - +- amd64 | icmpush | 2.2-6 | - +- amd64 | icnsutils | 0.8.1-1 | - +- amd64 | icom | 20040912-1.1 | - +- amd64 | icon-slicer | 0.3-6 | - +- amd64 | iconc | 9.4.3-4.2 | - +- amd64 | icont | 9.4.3-4.2 | - +- amd64 | iconx | 9.4.3-4.2 | - +- amd64 | icoutils | 0.29.1-5 | - +- amd64 | iczech | 20040229-5.1 | - +- amd64 | id-utils | 4.5+dfsg-0.1 | - +- amd64 | id3 | 0.15-3 | - +- amd64 | id3ren | 1.1b0-6 | - +- amd64 | id3tool | 1.2a-4 | - +- amd64 | id3v2 | 0.1.12-2 | - +- amd64 | idanish | 1.6.25-1.1 | - +- amd64 | idecrypt | 3.0.19.ds1-7 | - +- amd64 | ident2 | 1.07-1.1 | - +- amd64 | idesk | 0.7.5-4.2 | - +- amd64 | ideviceinstaller | 1.0.0-1.2 | - +- amd64 | ideviceinstaller-dbg | 1.0.0-1.2 | - +- amd64 | idjc | 0.8.7-2 | - +- amd64 | idle3-tools | 0.9.1-1 | - +- amd64 | idn | 1.25-2 | - +- amd64 | idn2 | 0.8-2 | - +- amd64 | idzebra-2.0 | 2.0.44-3 | - +- amd64 | idzebra-2.0-utils | 2.0.44-3 | - +- amd64 | iec16022 | 0.2.4-1 | - +- amd64 | ifcico | 2.14tx8.10-21 | - +- amd64 | ifenslave-2.6 | 1.1.0-20 | - +- amd64 | ifgate | 2.14tx8.10-21 | - +- amd64 | ifhp | 3.5.20-12.1 | - +- amd64 | ifile | 1.3.9-6 | - +- amd64 | ifinnish | 0.7-18 | - +- amd64 | ifinnish-large | 0.7-18 | - +- amd64 | ifinnish-small | 0.7-18 | - +- amd64 | ifmetric | 0.3-2+deb7u1 | - +- amd64 | ifp-line-libifp | 1.0.0.2-5 | - +- amd64 | ifpgui | 1.0.0-3 | - +- amd64 | ifplugd | 0.28-19 | - +- amd64 | ifrename | 30~pre9-8 | - +- amd64 | ifrench-gut | 1:1.0-30 | - +- amd64 | ifrit | 3.3.4-3 | - +- amd64 | ifstat | 1.1-8 | - +- amd64 | iftop | 1.0~pre2-4~deb7u2 | - +- amd64 | iftop-dbg | 1.0~pre2-4~deb7u2 | - +- amd64 | ifupdown | 0.7.8 | - +- amd64 | ifuse | 1.0.0-1+b1 | - +- amd64 | ifuse-dbg | 1.0.0-1+b1 | - +- amd64 | igaelic | 0.50-8 | - +- amd64 | ihungarian | 1.2+repack-2 | - +- amd64 | ii | 1.6-1 | - +- amd64 | ii-esu | 1.0a.dfsg1-4 | - +- amd64 | iipimage-server | 0.9.9-2 | - +- amd64 | iirish | 2.0-21 | - +- amd64 | iitalian | 1:2.3-3 | - +- amd64 | ijsgutenprint | 5.2.9-1 | - +- amd64 | ikarus | 0.0.3+bzr.2010.01.26-2 | - ++ amd64 | ike | - | 2.2.1+dfsg-2~bpo70+1 ++ amd64 | ike-qtgui | - | 2.2.1+dfsg-2~bpo70+1 +- amd64 | ike-scan | 1.9-4+b1 | - +- amd64 | ikiwiki-hosting-web | 0.20120527 | - +- amd64 | imagemagick | 8:6.7.7.10-5+deb7u2 | - +- amd64 | imagemagick-dbg | 8:6.7.7.10-5+deb7u2 | - +- amd64 | imageshack-uploader | 2.2+hg20100408.d802dea89428-5.1 | - +- amd64 | imagevis3d | 2.0.1-5 | - +- amd64 | imagination | 3.0-2 | - +- amd64 | imanx | 0.50-9.1 | - +- amd64 | imapcopy | 1.04-1 | - +- amd64 | imapfilter | 1:2.5.2-2 | - +- amd64 | imapproxy | 1.2.7-1.1 | - +- amd64 | imaptool | 0.9-12 | - +- amd64 | imgvtopgm | 2.0-9 | - +- amd64 | imhangul-gtk2 | 2.1.0-2 | - +- amd64 | imhangul-gtk3 | 3.1.0-2 | - +- amd64 | imms-audacious | 3.1.0~svn301-2 | - +- amd64 | imms-common | 3.1.0~svn301-2 | - +- amd64 | imsniff | 0.04-6 | - +- amd64 | imspector | 0.9-1 | - ++ amd64 | imview | - | 1.1.9c-12~bpo70+1 +- amd64 | imvirt-helper | 0.9.4-4 | - +- amd64 | imwheel | 1.0.0pre12-9 | - +- amd64 | inadyn | 1.96.2-1+b1 | - +- amd64 | incron | 0.5.10-1 | - +- amd64 | indent | 2.2.11-2 | - +- amd64 | indi-bin | 0.9.1-2 | - +- amd64 | indi-dbg | 0.9.1-2 | - +- amd64 | indicator-applet | 0.5.0-1 | - +- amd64 | indicator-applet-appmenu | 0.5.0-1 | - +- amd64 | indicator-applet-complete | 0.5.0-1 | - +- amd64 | indicator-applet-session | 0.5.0-1 | - +- amd64 | indicator-application | 0.5.0-1 | - +- amd64 | indicator-application-gtk2 | 0.5.0-1 | - +- amd64 | indicator-messages | 0.6.0-1 | - +- amd64 | indicator-messages-gtk2 | 0.6.0-1 | - +- amd64 | indicator-session | 0.3.96-1 | - +- amd64 | indicator-session-gtk2 | 0.3.96-1 | - +- amd64 | indicator-status-provider-emesene | 0.6.0-1 | - +- amd64 | indicator-status-provider-mc5 | 0.6.0-1 | - +- amd64 | indicator-status-provider-pidgin | 0.6.0-1 | - +- amd64 | indicator-status-provider-telepathy | 0.6.0-1 | - +- amd64 | indigo-utils | 1.0.0-2 | - +- amd64 | inetutils-ftp | 2:1.9-2 | - +- amd64 | inetutils-ftpd | 2:1.9-2 | - +- amd64 | inetutils-inetd | 2:1.9-2 | - +- amd64 | inetutils-ping | 2:1.9-2 | - +- amd64 | inetutils-syslogd | 2:1.9-2 | - +- amd64 | inetutils-talk | 2:1.9-2 | - +- amd64 | inetutils-talkd | 2:1.9-2 | - +- amd64 | inetutils-telnet | 2:1.9-2 | - +- amd64 | inetutils-telnetd | 2:1.9-2 | - +- amd64 | inetutils-tools | 2:1.9-2 | - +- amd64 | inetutils-traceroute | 2:1.9-2 | - +- amd64 | infernal | 1.0.2-2 | - +- amd64 | infernal-dbg | 1.0.2-2 | - +- amd64 | infiniband-diags | 1.4.4-20090314-1.2 | - +- amd64 | infinoted | 0.5.2-6.1 | - +- amd64 | info | 4.13a.dfsg.1-10 | - +- amd64 | infon-server | 0~r198-8 | - +- amd64 | infon-viewer | 0~r198-8 | - +- amd64 | initscripts | 2.88dsf-41+deb7u1 | - +- amd64 | inkscape | 0.48.3.1-1.3 | - +- amd64 | inn | 1:1.7.2q-41 | - +- amd64 | inn2 | 2.5.3-3 | - +- amd64 | inn2-dev | 2.5.3-3 | - +- amd64 | inn2-inews | 2.5.3-3 | - +- amd64 | innfeed | 0.10.1.7-8 | - +- amd64 | innoextract | 1.2+git20120504-1 | - +- amd64 | inorwegian | 2.0.10-5.1 | - +- amd64 | inotail | 0.5-2 | - +- amd64 | inoticoming | 0.2.3-1 | - +- amd64 | inotify-tools | 3.14-1 | - +- amd64 | input-pad | 1.0.1-2 | - +- amd64 | input-utils | 1.0-1 | - +- amd64 | inputattach | 1:1.4.3-1 | - +- amd64 | inputlirc | 19-1 | - +- amd64 | inspircd | 2.0.5-1+b1 | - +- amd64 | inspircd-dbg | 2.0.5-1+b1 | - +- amd64 | insserv | 1.14.0-5 | - +- amd64 | install-info | 4.13a.dfsg.1-10 | - +- amd64 | instead | 1.6.0-1 | - +- amd64 | integrit | 4.1-1 | - +- amd64 | intel-gpu-tools | 1.2-1 | - ++ amd64 | intel-microcode | - | 2.20140122.1~bpo70+1 +- amd64 | intel2gas | 1.3.3-14 | - +- amd64 | inteltool | 0.0+r4091-1.2 | - +- amd64 | intercal | 29:0.29-2 | - +- amd64 | interchange | 5.7.7-2 | - +- amd64 | intone | 0.77-2 | - +- amd64 | invada-studio-plugins-ladspa | 0.3.1-2 | - +- amd64 | invada-studio-plugins-lv2 | 1.2.0+repack0-4 | - +- amd64 | inventor-clients | 2.1.5-10-16 | - +- amd64 | inventor-demo | 2.1.5-10-16 | - +- amd64 | inventor-dev | 2.1.5-10-16 | - +- amd64 | iodbc | 3.52.7-2+deb7u1 | - +- amd64 | iodine | 0.6.0~rc1-12 | - +- amd64 | iogerman | 1:2-28 | - +- amd64 | iok | 2.1.2-1 | - +- amd64 | ion | 3.0.1~dfsg1-1 | - +- amd64 | ioping | 0.6-1 | - +- amd64 | ioquake3 | 1.36+svn2287-1 | - +- amd64 | ioquake3-dbg | 1.36+svn2287-1 | - +- amd64 | ioquake3-server | 1.36+svn2287-1 | - +- amd64 | iotop | 0.4.4-4 | - +- amd64 | ipadic | 2.7.0+main-3 | - +- amd64 | ipband | 0.8.1-3 | - +- amd64 | ipe | 7.1.2-1 | - +- amd64 | ipe5toxml | 20051114-1 | - +- amd64 | iperf | 2.0.5-3 | - +- amd64 | ipfm | 0.11.5-4.1 | - +- amd64 | ipgrab | 0.9.10-1 | - +- amd64 | ipheth-utils | 1.0-3+b1 | - +- amd64 | ipip | 1.1.9 | - +- amd64 | ipkungfu | 0.6.1-6 | - +- amd64 | ipmitool | 1.8.11-5 | - +- amd64 | ippl | 1.4.14-12.1 | - +- amd64 | ippl-dbg | 1.4.14-12.1 | - +- amd64 | ipppd | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | iprint | 1.3-9 | - +- amd64 | iproute | 20120521-3+b3 | - +- amd64 | iproute-dev | 20120521-3+b3 | - +- amd64 | ips | 4.0-1 | - +- amd64 | ipsec-tools | 1:0.8.0-14 | - +- amd64 | ipset | 6.12.1-1 | - +- amd64 | ipsvd | 1.0.0-2 | - +- amd64 | iptables | 1.4.14-3.1 | - +- amd64 | iptables-dev | 1.4.14-3.1 | - +- amd64 | iptotal | 0.3.3-13 | - +- amd64 | iptraf | 3.0.0-8.1 | - ++ amd64 | iptraf-ng | - | 1.1.3.1-2~bpo70+1 +- amd64 | iptstate | 2.2.5-1 | - +- amd64 | iptux | 0.5.3-1 | - +- amd64 | iputils-arping | 3:20101006-1+b1 | - +- amd64 | iputils-clockdiff | 3:20101006-1+b1 | - +- amd64 | iputils-ping | 3:20101006-1+b1 | - +- amd64 | iputils-tracepath | 3:20101006-1+b1 | - +- amd64 | ipv6calc | 0.93.1-2 | - +- amd64 | ipvsadm | 1:1.26-1 | - +- amd64 | ipwatchd | 1.2.1-1 | - +- amd64 | ipwatchd-gnotify | 1.0.1-1+b1 | - +- amd64 | ipx | 2.2.6-9 | - +- amd64 | ir-keytable | 0.8.8-3 | - +- amd64 | ir.lv2 | 1.3.1~dfsg0-3 | - +- amd64 | ircd-hybrid | 1:7.2.2.dfsg.2-10 | - +- amd64 | ircd-irc2 | 2.11.2p2+dfsg-2 | - +- amd64 | ircd-ircu | 2.10.12.10.dfsg1-1.1 | - +- amd64 | ircd-ratbox | 3.0.7.dfsg-3 | - +- amd64 | ircd-ratbox-dbg | 3.0.7.dfsg-3 | - +- amd64 | ircii | 20060725-1 | - +- amd64 | ircmarkers | 0.14-2 | - +- amd64 | ircp-tray | 0.7.6-1.1 | - +- amd64 | irda-utils | 0.9.18-12 | - +- amd64 | iripdb | 0.1.3b-1.1 | - +- amd64 | iroffer | 1.4.b03-3 | - +! amd64 | irqbalance | 1.0.3-3 | 1.0.6-2~bpo70+1 +- amd64 | irsim | 9.7.75-1 | - +- amd64 | irssi | 0.8.15-5 | - +- amd64 | irssi-dev | 0.8.15-5 | - ++ amd64 | irssi-plugin-otr | - | 1.0.0-1~bpo70+1 ++ amd64 | irssi-plugin-otr-dbg | - | 1.0.0-1~bpo70+1 +- amd64 | irssi-plugin-xmpp | 0.52-1 | - +- amd64 | irssi-plugin-xmpp-dbg | 0.52-1 | - +- amd64 | isakmpd | 20041012-7.2 | - +- amd64 | isatapd | 0.9.6-2 | - +- amd64 | isc-dhcp-client | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-client-dbg | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-common | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-dev | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-relay | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-relay-dbg | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-server | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-server-dbg | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | isc-dhcp-server-ldap | 4.2.2.dfsg.1-5+deb70u6 | - +- amd64 | iscsitarget | 1.4.20.2-10.1 | - +- amd64 | isdnlog | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | isdnutils-base | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | isdnutils-xtools | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | isdnvbox | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | isdnvboxclient | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | isdnvboxserver | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | iselect | 1.4.0-1 | - +- amd64 | isns | 2.1-01+dfsg-3 | - +- amd64 | isns-client | 2.1-01+dfsg-3 | - +- amd64 | isomaster | 1.3.9-1 | - +- amd64 | isomd5sum | 1:1.0.7+git.20110618.6c9cd2f-1 | - +- amd64 | isoqlog | 2.2.1-8 | - +- amd64 | ispell | 3.3.02-6 | - +- amd64 | istanbul | 0.2.2-9 | - +- amd64 | istgt | 0.4~20111008-3 | - +- amd64 | iswedish | 1.4.5-2.1 | - +- amd64 | isync | 1.0.4-2.2 | - +! amd64 | italc-client | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 ++ amd64 | italc-management-console | - | 1:2.0.1-3~bpo7+1 +! amd64 | italc-master | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +- amd64 | itcl3 | 3.4.1-1 | - +- amd64 | itcl3-dev | 3.4.1-1 | - +- amd64 | itk3 | 3.3-4 | - +- amd64 | itk3-dev | 3.3-4 | - +- amd64 | itksnap | 2.2.0-1.1 | - +- amd64 | itools | 1.0-3 | - +- amd64 | itop | 0.1-4 | - ++ amd64 | iucode-tool | - | 1.0-1~bpo70+1 +- amd64 | iukrainian | 1.6.5-2 | - +- amd64 | iverilog | 0.9.5-1 | - +- amd64 | ivtools-bin | 1.2.10a1-1 | - +- amd64 | ivtools-dev | 1.2.10a1-1 | - +- amd64 | iw | 3.4-1 | - +- amd64 | jaaa | 0.6.0-2 | - +- amd64 | jack | 3.1.1+cvs20050801-29 | - +- amd64 | jack-capture | 0.9.67-1 | - +- amd64 | jack-keyboard | 2.7.1-1 | - +- amd64 | jack-mixer | 9-3 | - +- amd64 | jack-rack | 1.4.8~rc1-1 | - +- amd64 | jack-stdio | 1.4-1 | - +- amd64 | jack-tools | 20101210-2 | - +- amd64 | jackd1 | 1:0.121.3+20120418git75e3e20b-2.1 | - +- amd64 | jackd1-firewire | 1:0.121.3+20120418git75e3e20b-2.1 | - +- amd64 | jackd2 | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- amd64 | jackd2-firewire | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- amd64 | jackeq | 0.5.9-2 | - +- amd64 | jackmeter | 0.4-1 | - +- amd64 | jacktrip | 1.0.5.patch2-1 | - +- amd64 | jade | 1.2.1-47.1+b1 | - +- amd64 | jags | 3.2.0-1 | - +- amd64 | jalv | 1.0.0~dfsg0-2 | - +- amd64 | jam | 2.5rel-1 | - +- amd64 | jamin | 0.97.14~cvs~81203-4 | - +- amd64 | japa | 0.6.0-2 | - +- amd64 | java2html | 0.9.2-4 | - +- amd64 | jazip | 0.34-15.1 | - +- amd64 | jbig2dec | 0.11+20120125-1 | - +- amd64 | jbigkit-bin | 2.0-2 | - +- amd64 | jblas | 1.2.0-4 | - +- amd64 | jbofihe | 0.38-5.1 | - +- amd64 | jcal | 0.4.0-1.1 | - +- amd64 | jcc | 2.13-1 | - +- amd64 | jclassinfo | 0.19.1-6 | - +- amd64 | jconvolver | 0.9.2-1 | - +! amd64 | jd | 1:2.8.5~beta120206-3 | 1:2.8.7-140104-1~bpo70+1 +- amd64 | jed | 1:0.99.19-2.1 | - +- amd64 | jeex | 12.0.4-1 | - +- amd64 | jellyfish | 1.1.5-1 | - +- amd64 | jesred | 1.2pl1-17 | - +- amd64 | jester | 1.0-9 | - +- amd64 | jfsutils | 1.1.15-2 | - +- amd64 | jgraph | 83-22 | - +- amd64 | jhbuild | 3.4.0-1 | - +- amd64 | jhead | 1:2.95-1 | - +- amd64 | jigdo-file | 0.7.3-3+b1 | - +- amd64 | jigit | 1.19-1 | - +- amd64 | jigzo | 0.6.1-6 | - +- amd64 | jimsh | 0.73-3 | - +- amd64 | jkmeter | 0.6.1-2 | - +- amd64 | jless | 382-iso262-3 | - +- amd64 | jlint | 3.0-4.5 | - +- amd64 | jmdlx | 0.4-6 | - +- amd64 | jmeters | 0.2.1-2 | - ++ amd64 | jmtpfs | - | 0.5-2~bpo70+1 +- amd64 | jnettop | 0.13.0-1 | - +- amd64 | jnoise | 0.6.0-3 | - +- amd64 | jnoisemeter | 0.1.0-2 | - +- amd64 | jocaml | 3.12.1-1 | - +- amd64 | jocaml-base | 3.12.1-1 | - +- amd64 | joe | 3.7-2.3 | - +- amd64 | john | 1.7.8-1 | - +- amd64 | jove | 4.16.0.73-1 | - +- amd64 | jovie | 4:4.8.4-2 | - +- amd64 | jovie-dbg | 4:4.8.4-2 | - +- amd64 | joy2key | 1.6.3-1 | - +- amd64 | joystick | 1:1.4.3-1 | - +- amd64 | jp2a | 1.0.6-3.2 | - +- amd64 | jparse | 1.4.0-3 | - +- amd64 | jpeginfo | 1.6.0-5 | - +- amd64 | jpegjudge | 0.0.2-2 | - +- amd64 | jpegoptim | 1.2.3-2+b2 | - +- amd64 | jpegpixi | 1.1.1-4.1 | - +- amd64 | jpilot | 1.8.1.2-1 | - +- amd64 | jpilot-backup | 0.60-3 | - +- amd64 | jpilot-plugins | 1.8.1.2-1 | - +- amd64 | jpnevulator | 1.3.1-1 | - +- amd64 | js-of-ocaml | 1.2-2 | - +- amd64 | jstest-gtk | 0.1.1~git20090722-2 | - +- amd64 | jstest-gtk-dbg | 0.1.1~git20090722-2 | - +- amd64 | jsvc | 1.0.10-3 | - +- amd64 | juffed | 0.8.1-1+b2 | - +- amd64 | juk | 4:4.8.4-2 | - +- amd64 | juke | 0.7-4 | - +- amd64 | juman | 5.1-2.1 | - +- amd64 | jumpnbump | 1.50+dfsg1-3 | - +! amd64 | jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +- amd64 | jvim-canna | 3.0-2.1b-3 | - +- amd64 | jwhois | 4.0-2.1 | - +- amd64 | jwm | 2.1.0-3 | - +- amd64 | jzip | 210r20001005d-2 | - +- amd64 | k3b | 2.0.2-6 | - +- amd64 | k3b-dbg | 2.0.2-6 | - +- amd64 | k3d | 0.8.0.2-18 | - +- amd64 | k4dirstat | 2.7.3-1 | - +- amd64 | kaccessible | 4:4.8.4-3 | - +- amd64 | kaccessible-dbg | 4:4.8.4-3 | - +- amd64 | kacpimon | 1:2.0.16-1+deb7u1 | - +- amd64 | kaddressbook | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kadu | 0.11.2-1 | - +- amd64 | kadu-external-modules | 0.11.2-1 | - +- amd64 | kaffeine | 1.2.2-2 | - +- amd64 | kaffeine-dbg | 1.2.2-2 | - +- amd64 | kakasi | 2.3.5~pre1+cvs20071101-1 | - +- amd64 | kalarm | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kalgebra | 4:4.8.4-1 | - +- amd64 | kalgebra-common | 4:4.8.4-1 | - +- amd64 | kalgebra-dbg | 4:4.8.4-1 | - +- amd64 | kalgebramobile | 4:4.8.4-1 | - +- amd64 | kali | 3.1-11 | - +- amd64 | kalign | 1:2.03+20110620-2 | - +- amd64 | kalternatives | 0.13-2 | - +- amd64 | kalzium | 4:4.8.4-1 | - +- amd64 | kalzium-dbg | 4:4.8.4-1 | - +- amd64 | kamera | 4:4.8.4-2 | - +- amd64 | kamera-dbg | 4:4.8.4-2 | - +- amd64 | kamerka | 0.8.1-1 | - +- amd64 | kamoso | 2.0.2-1+b1 | - +- amd64 | kanagram | 4:4.8.4-1 | - +- amd64 | kanatest | 0.4.8-2.1 | - +- amd64 | kanjipad | 2.0.0-6 | - +- amd64 | kannel | 1.4.3-2+b2 | - +- amd64 | kannel-dev | 1.4.3-2+b2 | - +- amd64 | kannel-extras | 1.4.3-2+b2 | - +- amd64 | kannel-sqlbox | 0.7.2-3+b2 | - +- amd64 | kapman | 4:4.8.4-3 | - +- amd64 | kapptemplate | 4:4.8.4+dfsg-1 | - +- amd64 | kaptain | 1:0.73-1 | - +- amd64 | karbon | 1:2.4.4-3 | - +- amd64 | karma-tools | 0.1.2-2.3 | - +- amd64 | kasumi | 2.5-2 | - +- amd64 | kate | 4:4.8.4-1 | - +- amd64 | kate-dbg | 4:4.8.4-1 | - +- amd64 | katepart | 4:4.8.4-1 | - +- amd64 | katomic | 4:4.8.4-3 | - +- amd64 | katoob | 0.5.9.1-3 | - +- amd64 | kawari8 | 8.2.8-7 | - +- amd64 | kaya | 0.4.4-6 | - +- amd64 | kbackup | 0.7.1-3 | - +- amd64 | kball | 0.0.20041216-8+b1 | - +- amd64 | kbattleship | 4:4.8.4-3 | - +- amd64 | kbd | 1.15.3-9 | - +- amd64 | kbdd | 0.6-4 | - +- amd64 | kbibtex | 0.4-4 | - +- amd64 | kblackbox | 4:4.8.4-3 | - +- amd64 | kblocks | 4:4.8.4-3 | - +- amd64 | kbounce | 4:4.8.4-3 | - +- amd64 | kbreakout | 4:4.8.4-3 | - +- amd64 | kbruch | 4:4.8.4-1 | - +- amd64 | kbruch-dbg | 4:4.8.4-1 | - +! amd64 | kbuild | 1:0.1.9998svn2543+dfsg-1 | 1:0.1.9998svn2577+dfsg-3~bpo70+1 +- amd64 | kcachegrind | 4:4.8.4+dfsg-1 | - +- amd64 | kcalc | 4:4.8.4-2 | - +- amd64 | kcc | 2.3-12 | - +- amd64 | kcharselect | 4:4.8.4-2 | - +- amd64 | kcheckers | 0.8.1-3 | - +- amd64 | kchmviewer | 5.3-1 | - +- amd64 | kcollectd | 0.9-2.1+b1 | - +- amd64 | kcolorchooser | 4:4.8.4-1 | - +- amd64 | kcometen4 | 1.0.7-1 | - +- amd64 | kcov | 4-2 | - +- amd64 | kdbg | 2.5.1-1 | - +- amd64 | kdc2tiff | 0.35-8+b1 | - +- amd64 | kde-baseapps-bin | 4:4.8.4-2 | - +- amd64 | kde-baseapps-dbg | 4:4.8.4-2 | - +- amd64 | kde-config-cddb | 4:4.8.4-2 | - +- amd64 | kde-config-cron | 4:4.8.4-3 | - +- amd64 | kde-config-fcitx | 0.3.4-1 | - +! amd64 | kde-config-gtk-style | 3:2.1-1 | 3:2.2.1-1~bpo70+1 ++ amd64 | kde-config-gtk-style-preview | - | 3:2.2.1-1~bpo70+1 +- amd64 | kde-config-tablet | 1.3.6-1 | - +- amd64 | kde-config-telepathy-accounts | 0.4.0-1 | - +- amd64 | kde-config-telepathy-accounts-dbg | 0.4.0-1 | - +- amd64 | kde-notification-colibri | 0.2.2-1 | - +- amd64 | kde-plasma-desktop | 5:77+deb7u1 | - +- amd64 | kde-plasma-netbook | 5:77+deb7u1 | - +- amd64 | kde-runtime | 4:4.8.4-2 | - +- amd64 | kde-runtime-dbg | 4:4.8.4-2 | - +- amd64 | kde-style-bespin | 0.r1552-1 | - +- amd64 | kde-style-oxygen | 4:4.8.4-6 | - +- amd64 | kde-style-polyester | 2.0.0-3 | - +- amd64 | kde-style-qtcurve | 1.8.12-2 | - +- amd64 | kde-telepathy-approver | 0.4.0-1 | - +- amd64 | kde-telepathy-approver-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-auth-handler | 0.4.0-1 | - +- amd64 | kde-telepathy-auth-handler-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-call-ui | 0.4.0-1 | - +- amd64 | kde-telepathy-call-ui-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-contact-list | 0.4.0-1 | - +- amd64 | kde-telepathy-contact-list-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-filetransfer-handler | 0.4.0-1 | - +- amd64 | kde-telepathy-filetransfer-handler-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-integration-module | 0.4.0-1 | - +- amd64 | kde-telepathy-integration-module-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-send-file | 0.4.0-1 | - +- amd64 | kde-telepathy-send-file-dbg | 0.4.0-1 | - +- amd64 | kde-telepathy-text-ui | 0.4.0-1 | - +- amd64 | kde-telepathy-text-ui-dbg | 0.4.0-1 | - +- amd64 | kde-thumbnailer-deb | 1.3.0-2 | - +- amd64 | kde-window-manager | 4:4.8.4-6 | - +- amd64 | kde-workspace-bin | 4:4.8.4-6 | - +- amd64 | kde-workspace-dbg | 4:4.8.4-6 | - +- amd64 | kde-workspace-dev | 4:4.8.4-6 | - +- amd64 | kde-workspace-kgreet-plugins | 4:4.8.4-6 | - +- amd64 | kde-zeroconf | 4:4.8.4-1+b1 | - +- amd64 | kdeadmin-dbg | 4:4.8.4-3 | - +- amd64 | kdeartwork-dbg | 4:4.8.4-5 | - +- amd64 | kdeartwork-style | 4:4.8.4-5 | - +- amd64 | kdeartwork-theme-window | 4:4.8.4-5 | - +- amd64 | kdebase-workspace-dbg | 4:4.8.4-6 | - +- amd64 | kdegames-dbg | 4:4.8.4-3 | - +- amd64 | kdegraphics-mobipocket | 4:4.8.4-1 | - +- amd64 | kdegraphics-strigi-analyzer | 4:4.8.4-1 | - +- amd64 | kdegraphics-thumbnailers | 4:4.8.4-1 | - +- amd64 | kdelibs-bin | 4:4.8.4-4 | - +- amd64 | kdelibs5-dbg | 4:4.8.4-4 | - +- amd64 | kdelibs5-dev | 4:4.8.4-4 | - +- amd64 | kdelibs5-plugins | 4:4.8.4-4 | - +- amd64 | kdemultimedia-dbg | 4:4.8.4-2 | - +- amd64 | kdemultimedia-dev | 4:4.8.4-2 | - +- amd64 | kdemultimedia-kio-plugins | 4:4.8.4-2 | - +- amd64 | kdenetwork-dbg | 4:4.8.4-1+b1 | - +- amd64 | kdenetwork-filesharing | 4:4.8.4-1+b1 | - +- amd64 | kdenlive | 0.9.2-2 | - +- amd64 | kdenlive-dbg | 0.9.2-2 | - +- amd64 | kdepasswd | 4:4.8.4-2 | - +- amd64 | kdepim-dbg | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kdepim-groupware | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kdepim-kresources | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kdepim-runtime | 4:4.4.11.1-6 | - +- amd64 | kdepim-runtime-dbg | 4:4.4.11.1-6 | - +- amd64 | kdepim-strigi-plugins | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kdepim-wizards | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kdepimlibs-dbg | 4:4.8.4-2 | - +- amd64 | kdepimlibs-kio-plugins | 4:4.8.4-2 | - +- amd64 | kdepimlibs5-dev | 4:4.8.4-2 | - +- amd64 | kdeplasma-addons-dbg | 4:4.8.4-1+b2 | - +- amd64 | kdesdk-dbg | 4:4.8.4+dfsg-1 | - +- amd64 | kdesdk-dolphin-plugins | 4:4.8.4+dfsg-1 | - +- amd64 | kdesdk-kio-plugins | 4:4.8.4+dfsg-1 | - +- amd64 | kdesdk-misc | 4:4.8.4+dfsg-1 | - +- amd64 | kdesdk-strigi-plugins | 4:4.8.4+dfsg-1 | - +- amd64 | kdesudo | 3.4.2.4-2 | - +- amd64 | kdesvn | 1.5.5-4.1 | - +- amd64 | kdesvn-dbg | 1.5.5-4.1 | - +- amd64 | kdesvn-kio-plugins | 1.5.5-4.1 | - +- amd64 | kdetoys-dbg | 4:4.8.4-1 | - +- amd64 | kdevelop | 4:4.3.1-3+b1 | - +- amd64 | kdevelop-dbg | 4:4.3.1-3+b1 | - +- amd64 | kdevelop-dev | 4:4.3.1-3+b1 | - +- amd64 | kdevelop-pg-qt | 1.0.0-2 | - +- amd64 | kdevelop-php | 1.3.1-2 | - +- amd64 | kdevelop-php-dbg | 1.3.1-2 | - +- amd64 | kdevelop-php-docs | 1.3.1-2 | - +- amd64 | kdevplatform-dbg | 1.3.1-2 | - +- amd64 | kdevplatform-dev | 1.3.1-2 | - +- amd64 | kdevplatform5-libs | 1.3.1-2 | - +- amd64 | kdewebdev-dbg | 4:4.8.4-1 | - +- amd64 | kdf | 4:4.8.4-1 | - +- amd64 | kdiamond | 4:4.8.4-3 | - +- amd64 | kdiff3 | 0.9.96-4 | - +- amd64 | kdiff3-qt | 0.9.96-4 | - +- amd64 | kdm | 4:4.8.4-6 | - +- amd64 | kdocker | 4.6-2 | - +- amd64 | kdoctools | 4:4.8.4-4 | - +- amd64 | kdrill | 6.5deb2-8 | - +- amd64 | keepalived | 1:1.2.2-3 | - +- amd64 | keepassx | 0.4.3+dfsg-0.1 | - +- amd64 | kelbt | 0.15-1 | - +- amd64 | kerneltop | 0.8-2.1 | - +- amd64 | ketm | 0.0.6-22 | - +- amd64 | keurocalc | 1.2.0-1 | - +! amd64 | kexec-tools | 1:2.0.3-1+deb7u1 | 1:2.0.3-4~bpo70+1 +- amd64 | kexi | 1:2.4.4-3 | - +- amd64 | kexi-calligrasheets-driver | 1:2.4.4-3 | - +- amd64 | kexi-map-form-widget | 1:2.4.4-3 | - +- amd64 | kexi-mysql-driver | 1:2.4.4-3 | - +- amd64 | kexi-postgresql-driver | 1:2.4.4-3 | - +- amd64 | kexi-sybase-driver | 1:2.4.4-3 | - +- amd64 | kexi-web-form-widget | 1:2.4.4-3 | - +- amd64 | kexi-xbase-driver | 1:2.4.4-3 | - +- amd64 | keylaunch | 1.3.9 | - +- amd64 | keynav | 0.20110708.0-1 | - +- amd64 | keytouch-editor | 1:3.2.0~beta-3 | - +- amd64 | keyutils | 1.5.5-3 | - +- amd64 | keyutils-dbg | 1.5.5-3 | - +- amd64 | kfilereplace | 4:4.8.4-1 | - +- amd64 | kfind | 4:4.8.4-2 | - +- amd64 | kfloppy | 4:4.8.4-1 | - +- amd64 | kfourinline | 4:4.8.4-3 | - +- amd64 | kfreebsd-headers-8-amd64 | 8.3-6+deb7u1 | - +- amd64 | kfreebsd-headers-8.3-1 | 8.3-6+deb7u1 | - +- amd64 | kfreebsd-headers-8.3-1-amd64 | 8.3-6+deb7u1 | - +- amd64 | kfreebsd-headers-9-amd64 | 9.0-10+deb70.6 | - +- amd64 | kfreebsd-headers-9.0-2 | 9.0-10+deb70.6 | - +- amd64 | kfreebsd-headers-9.0-2-amd64 | 9.0-10+deb70.6 | - +- amd64 | kfreebsd-headers-amd64 | 9+1 | - +- amd64 | kfreebsd-image-8-amd64 | 8.3-6+deb7u1 | - +- amd64 | kfreebsd-image-8.3-1-amd64 | 8.3-6+deb7u1 | - +- amd64 | kfreebsd-image-9-amd64 | 9.0-10+deb70.6 | - +- amd64 | kfreebsd-image-9.0-2-amd64 | 9.0-10+deb70.6 | - +- amd64 | kfreebsd-image-amd64 | 9+1 | - +- amd64 | kftpgrabber | 0.8.99~svn1214766-1 | - +- amd64 | kgamma | 4:4.8.4-2 | - +- amd64 | kgb | 1.0b4+ds-13.2 | - +- amd64 | kgeography | 4:4.8.4-1 | - +- amd64 | kget | 4:4.8.4-1+b1 | - +- amd64 | kgoldrunner | 4:4.8.4-3 | - +- amd64 | kgpg | 4:4.8.4-4 | - +- amd64 | kgpg-dbg | 4:4.8.4-4 | - +- amd64 | khangman | 4:4.8.4-1 | - +- amd64 | khelpcenter4 | 4:4.8.4-2 | - +- amd64 | kicad | 0.20120526+bzr3261-1 | - +- amd64 | kid3 | 2.1-2 | - +- amd64 | kid3-qt | 2.1-2 | - +- amd64 | kig | 4:4.8.4-1 | - +- amd64 | kigo | 4:4.8.4-3 | - +- amd64 | kiki-the-nano-bot | 1.0.2+dfsg1-4+b1 | - +- amd64 | kildclient | 2.11.1-1+b1 | - +- amd64 | kile | 1:2.1.0-1 | - +- amd64 | killbots | 4:4.8.4-3 | - +- amd64 | kimagemapeditor | 4:4.8.4-1 | - +- amd64 | kimwitu | 4.6.1-7.1 | - +- amd64 | kimwitu++ | 2.3.13-2 | - +- amd64 | kinfocenter | 4:4.8.4-6 | - +- amd64 | kino | 1.3.4-1.3 | - +- amd64 | kinput2-canna | 3.1-10.3 | - +- amd64 | kinput2-canna-wnn | 3.1-10.3 | - +- amd64 | kinput2-wnn | 3.1-10.3 | - +- amd64 | kio-ftps | 0.2+dfsg-2+b1 | - +- amd64 | kio-gopher | 0.1.4-1 | - +- amd64 | kipi-plugins | 4:2.6.0-1+b2 | - +- amd64 | kiriki | 4:4.8.4-3 | - +- amd64 | kism3d | 0.2.2-8 | - ++ amd64 | kismet | - | 2013.03.R1b-2~bpo70+1 ++ amd64 | kismet-plugins | - | 2013.03.R1b-2~bpo70+1 +- amd64 | kiten | 4:4.8.4-1 | - +- amd64 | kiten-dbg | 4:4.8.4-1 | - +- amd64 | kjots | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kjumpingcube | 4:4.8.4-3 | - +! amd64 | klash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- amd64 | klatexformula | 3.2.6-1 | - +- amd64 | klavaro | 1.9.4-2 | - +- amd64 | kleopatra | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | klettres | 4:4.8.4-1 | - +- amd64 | klibc-utils | 2.0.1-3.1 | - +- amd64 | klick | 0.12.2-1+b2 | - +- amd64 | klickety | 4:4.8.4-3 | - +- amd64 | klines | 4:4.8.4-3 | - +- amd64 | klinkstatus | 4:4.8.4-1 | - +- amd64 | klipper | 4:4.8.4-6 | - +- amd64 | klog | 0.5.9-1 | - +- amd64 | kluppe | 0.6.14-1+b2 | - +- amd64 | klustakwik | 2.0.1-1 | - +- amd64 | kmag | 4:4.8.4-3 | - +- amd64 | kmag-dbg | 4:4.8.4-3 | - +- amd64 | kmahjongg | 4:4.8.4-3 | - +- amd64 | kmail | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kmenuedit | 4:4.8.4-6 | - +- amd64 | kmess | 2.0.6.1-3 | - +- amd64 | kmetronome | 0.10.1-1 | - +- amd64 | kmflcomp | 0.9.8-1 | - +- amd64 | kmidimon | 0.7.4-2 | - +- amd64 | kmines | 4:4.8.4-3 | - +- amd64 | kmix | 4:4.8.4-2 | - +- amd64 | kmldonkey | 2.0.5+kde4.3.3-2 | - +- amd64 | kmod | 9-3 | - +- amd64 | kmousetool | 4:4.8.4-3 | - +- amd64 | kmousetool-dbg | 4:4.8.4-3 | - +- amd64 | kmouth | 4:4.8.4-3 | - +- amd64 | kmouth-dbg | 4:4.8.4-3 | - +- amd64 | kmplayer | 1:0.11.3c-1 | - +- amd64 | kmplot | 4:4.8.4-2 | - +- amd64 | kmtrace | 4:4.8.4+dfsg-1 | - +- amd64 | kmymoney | 4.6.2-3.2 | - +- amd64 | kmymoney-dbg | 4.6.2-3.2 | - +- amd64 | kmymoney-dev | 4.6.2-3.2 | - +- amd64 | knemo | 0.7.3-1 | - +- amd64 | knetwalk | 4:4.8.4-3 | - +- amd64 | knews | 1.0b.1-28 | - +- amd64 | knights | 2.3.2-1 | - +- amd64 | knockd | 0.5-3 | - +- amd64 | knocker | 0.7.1-4 | - +- amd64 | knode | 4:4.4.11.1+l10n-3+b1 | - ++ amd64 | knot | - | 1.4.3-2~bpo70+1 ++ amd64 | knot-dbg | - | 1.4.3-2~bpo70+1 ++ amd64 | knot-dnsutils | - | 1.4.3-2~bpo70+1 ++ amd64 | knot-host | - | 1.4.3-2~bpo70+1 +- amd64 | knotes | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | ko.tex-bin | 0.1.0+20071012-1.1 | - +- amd64 | kobodeluxe | 0.5.1-6 | - +- amd64 | kolabadmin | 0.0.20080222-4 | - +- amd64 | kolf | 4:4.8.4-3 | - +- amd64 | kollision | 4:4.8.4-3 | - +- amd64 | kolourpaint4 | 4:4.8.4-1 | - +- amd64 | komi | 1.04-5 | - +- amd64 | kommander | 4:4.8.4-1 | - +- amd64 | komparator | 4:0.6-1 | - +- amd64 | kompare | 4:4.8.4+dfsg-1 | - +- amd64 | kon2 | 0.3.9b-20 | - +- amd64 | konq-plugins | 4:4.8.4-2 | - +- amd64 | konqueror | 4:4.8.4-2 | - +- amd64 | konqueror-nsplugins | 4:4.8.4-2 | - +! amd64 | konqueror-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- amd64 | konquest | 4:4.8.4-3 | - +- amd64 | konsole | 4:4.8.4-2 | - +- amd64 | konsole-dbg | 4:4.8.4-2 | - +- amd64 | konsolekalendar | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kontact | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | konversation | 1.4-1 | - +- amd64 | konversation-dbg | 1.4-1 | - +- amd64 | konwert | 1.8-11.2 | - +- amd64 | kopete | 4:4.8.4-1+b1 | - +- amd64 | korganizer | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | kosd | 0.8.1-1 | - +- amd64 | koules | 1.4-19 | - +- amd64 | kover | 1:4-7+b1 | - +- amd64 | kpart-webkit | 1.3~git20120518.9a111005-3 | - +- amd64 | kpart-webkit-dbg | 1.3~git20120518.9a111005-3 | - +- amd64 | kpartloader | 4:4.8.4+dfsg-1 | - +- amd64 | kpartsplugin | 20120605-1 | - +- amd64 | kpartx | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- amd64 | kpat | 4:4.8.4-3 | - +- amd64 | kphotoalbum | 4.2-1+b1 | - +- amd64 | kplayer | 1:0.7-2.1 | - +- amd64 | kplayer-dbg | 1:0.7-2.1 | - +- amd64 | kppp | 4:4.8.4-1+b1 | - +- amd64 | kradio4 | 4.0.4-1 | - +- amd64 | kraft | 0.45-2 | - +- amd64 | kraptor | 0.0.20040403-6+b1 | - +- amd64 | krb5-admin-server | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krb5-auth-dialog | 3.2.1-1+deb7u1 | - +- amd64 | krb5-clients | 1:1.0.1-4 | - +- amd64 | krb5-ftpd | 1:1.0.1-4 | - +- amd64 | krb5-gss-samples | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krb5-kdc | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krb5-kdc-ldap | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krb5-multidev | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krb5-pkinit | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krb5-rsh-server | 1:1.0.1-4 | - +- amd64 | krb5-sync-plugin | 2.2-3 | - +- amd64 | krb5-sync-tools | 2.2-3 | - +- amd64 | krb5-telnetd | 1:1.0.1-4 | - +- amd64 | krb5-user | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | krdc | 4:4.8.4-1+b1 | - +- amd64 | krecipes | 2.0~beta2-3 | - +- amd64 | krecipes-dbg | 2.0~beta2-3 | - +- amd64 | kredentials | 2.0~pre3-1.1 | - +- amd64 | kremotecontrol | 4:4.8.4-3 | - +- amd64 | kremotecontrol-dbg | 4:4.8.4-3 | - +- amd64 | krename | 4.0.9-1+b1 | - +- amd64 | kreversi | 4:4.8.4-3 | - +- amd64 | krfb | 4:4.8.4-1+b1 | - +- amd64 | krita | 1:2.4.4-3 | - +- amd64 | krosspython | 4:4.8.4-1 | - +- amd64 | kruler | 4:4.8.4-1 | - +- amd64 | krusader | 1:2.3.0~beta1-1+wheezy3 | - +- amd64 | krusader-dbg | 1:2.3.0~beta1-1+wheezy3 | - +- amd64 | ksaneplugin | 4:4.8.4-1 | - +- amd64 | kscd | 4:4.8.4-2 | - +- amd64 | kscope | 1.9.4-2 | - +- amd64 | kscreensaver | 4:4.8.4-5 | - +- amd64 | kscreensaver-xsavers | 4:4.8.4-5 | - +- amd64 | ksh | 93u+-1.2 | - +- amd64 | kshisen | 4:4.8.4-3 | - +- amd64 | kshutdown | 3.0~beta4-1 | - +- amd64 | ksirk | 4:4.8.4-3 | - +- amd64 | ksnapshot | 4:4.8.4-1 | - +- amd64 | kspaceduel | 4:4.8.4-3 | - +- amd64 | ksplice | 0.9.9-4 | - +- amd64 | ksquares | 4:4.8.4-3 | - +- amd64 | ksshaskpass | 0.5.3-1+b1 | - +- amd64 | kst | 2.0.3-1.3 | - +- amd64 | kstars | 4:4.8.4-1 | - +- amd64 | kstart | 4.1-2 | - +- amd64 | ksudoku | 4:4.8.4-3 | - +- amd64 | ksysguard | 4:4.8.4-6 | - +- amd64 | ksysguardd | 4:4.8.4-6 | - +- amd64 | ksystemlog | 4:4.8.4-3 | - +- amd64 | kteatime | 4:4.8.4-1 | - +- amd64 | kterm | 6.2.0-46 | - +- amd64 | kthesaurus | 1:2.4.4-3 | - +- amd64 | ktikz | 0.10-3 | - +- amd64 | ktimer | 4:4.8.4-1 | - +- amd64 | ktimetracker | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | ktoblzcheck | 1.39-1 | - +- amd64 | ktorrent | 4.2.1-1 | - +- amd64 | ktorrent-dbg | 4.2.1-1 | - +- amd64 | ktouch | 4:4.8.4-1 | - +- amd64 | ktron | 4:4.8.4-3 | - +- amd64 | ktuberling | 4:4.8.4-3 | - +- amd64 | kturtle | 4:4.8.4-1 | - +- amd64 | ktux | 4:4.8.4-1 | - +- amd64 | kubrick | 4:4.8.4-3 | - +- amd64 | kuipc | 20061220+dfsg3-2 | - +- amd64 | kuiviewer | 4:4.8.4+dfsg-1 | - +- amd64 | kumofs | 0.4.13-5 | - +- amd64 | kuser | 4:4.8.4-3 | - +- amd64 | kuvert | 2.0.6 | - +- amd64 | kvirc | 4:4.1.3+20111124.svn5988-2 | - +- amd64 | kvirc-dbg | 4:4.1.3+20111124.svn5988-2 | - +- amd64 | kvirc-modules | 4:4.1.3+20111124.svn5988-2 | - +- amd64 | kvkbd | 1:0.6-3 | - +- amd64 | kvm | 1:1.1.2+dfsg-6 | - +- amd64 | kvpm | 0.8.6-2+deb7u1 | - +- amd64 | kvpm-dbg | 0.8.6-2+deb7u1 | - +- amd64 | kvpnc | 0.9.6a-2.1 | - +- amd64 | kvpnc-dbg | 0.9.6a-2.1 | - +- amd64 | kwalletcli | 2.11-2 | - +- amd64 | kwalletmanager | 4:4.8.4-3 | - +- amd64 | kwalletmanager-dbg | 4:4.8.4-3 | - +- amd64 | kwave | 0.8.8-1-3 | - +- amd64 | kwave-dbg | 0.8.8-1-3 | - +- amd64 | kwin-style-crystal | 2.0.5-2 | - +- amd64 | kwin-style-dekorator | 0.5.1-1 | - +- amd64 | kwin-style-qtcurve | 1.8.12-2 | - +- amd64 | kwordquiz | 4:4.8.4-1 | - +- amd64 | kwrite | 4:4.8.4-1 | - +- amd64 | kwstyle | 1.0.0+cvs20120330-3 | - +- amd64 | kxterm | 20061220+dfsg3-2 | - +- amd64 | l2tp-ipsec-vpn | 1.0.9-1 | - +- amd64 | l2tp-ipsec-vpn-daemon | 0.9.9-1 | - +- amd64 | l2tpns | 2.1.21-1.1 | - +- amd64 | l7-filter-userspace | 0.12-beta1-1 | - +- amd64 | labrea | 2.5-stable-3 | - +- amd64 | laby | 0.6.3-1 | - +- amd64 | lacheck | 1.26-14 | - +- amd64 | ladish | 1+dfsg0-3 | - +- amd64 | ladish-dbg | 1+dfsg0-3 | - +- amd64 | ladr4-apps | 0.0.200902a-2.1 | - +- amd64 | ladspa-sdk | 1.13-1 | - +- amd64 | ladvd | 0.9.2-2 | - +- amd64 | laevateinn | 0.088-5 | - +- amd64 | lakai | 0.1-1 | - +- amd64 | lam-runtime | 7.1.4-3 | - +- amd64 | lam4-dev | 7.1.4-3 | - +- amd64 | lambdabot | 4.2.3.2-4 | - +- amd64 | lame | 3.99.5+repack1-3 | - +- amd64 | lammps | 0~20120615.gite442279-1 | - +- amd64 | langdrill | 0.3-7 | - +- amd64 | laptop-detect | 0.13.7 | - +- amd64 | larswm | 7.5.3-6 | - +- amd64 | last-align | 199-1 | - +- amd64 | lastfm | 1:1.5.4.27091+dfsg1-1 | - +- amd64 | latd | 1.32 | - +- amd64 | late | 0.1.0-12 | - +- amd64 | latencytop | 0.5 | - +- amd64 | latex-cjk-chinese | 4.8.3+git20120621-1 | - +- amd64 | latex-cjk-common | 4.8.3+git20120621-1 | - +- amd64 | latex-cjk-japanese | 4.8.3+git20120621-1 | - +- amd64 | latex-sanskrit | 2.2-9 | - +- amd64 | latex2rtf | 1.9.19-4.2 | - +- amd64 | latexila | 2.4.0-1 | - +- amd64 | latrace | 0.5.11-1 | - +- amd64 | launchtool | 0.8-2 | - +- amd64 | launchy | 2.5-1 | - +- amd64 | launchy-plugins | 2.5-1 | - +- amd64 | lazarus-ide | 0.9.30.4-6 | - +- amd64 | lazarus-ide-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lazarus-ide-gtk2 | 0.9.30.4-6 | - +- amd64 | lazarus-ide-gtk2-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lazarus-ide-qt4 | 0.9.30.4-6 | - +- amd64 | lazarus-ide-qt4-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lbcd | 3.3.0-1 | - +- amd64 | lbdb | 0.38 | - +- amd64 | lbreakout2 | 2.6.3-1 | - +- amd64 | lbt | 1.2.2-5 | - +- amd64 | lcab | 1.0b12-5 | - +- amd64 | lcalc | 0.0.20080205-1.2 | - +- amd64 | lcd4linux | 0.11.0~svn1189-1+b1 | - +- amd64 | lcdf-typetools | 2.92+dfsg1-0.1~deb7u1 | - +- amd64 | lcdproc | 0.5.5-2 | - +- amd64 | lcdproc-dbg | 0.5.5-2 | - +- amd64 | lcdproc-extra-drivers | 0.5.5-2 | - +- amd64 | lcgdm-dbg | 1.8.2-1+b2 | - +- amd64 | lcl | 0.9.30.4-6 | - +- amd64 | lcl-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lcl-gtk2 | 0.9.30.4-6 | - +- amd64 | lcl-gtk2-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lcl-nogui | 0.9.30.4-6 | - +- amd64 | lcl-nogui-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lcl-qt4 | 0.9.30.4-6 | - +- amd64 | lcl-qt4-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lcl-units | 0.9.30.4-6 | - +- amd64 | lcl-units-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lcl-utils | 0.9.30.4-6 | - +- amd64 | lcl-utils-0.9.30.4 | 0.9.30.4-6 | - +- amd64 | lcrack | 20040914-1 | - +- amd64 | lcrt | 1.1.2-1 | - +- amd64 | ld10k1 | 1.0.25-2 | - +- amd64 | ldap-utils | 2.4.31-1+nmu2 | - +- amd64 | ldap2dns | 0.3.1-3.1 | - +- amd64 | ldap2zone | 0.2-3.1 | - +- amd64 | ldapvi | 1.7-9 | - +! amd64 | ldb-tools | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +- amd64 | ldm | 2:2.2.11-2 | - +! amd64 | ldnsutils | 1.6.13-1 | 1.6.16-1~bpo70+1 +- amd64 | le | 1.14.3-2 | - +- amd64 | le-dico-de-rene-cougnenc | 1.3-2.1 | - +- amd64 | leafnode | 1.11.8-3 | - +- amd64 | leafpad | 0.8.18.1-3 | - +- amd64 | leaktracer | 2.4-5 | - +- amd64 | leave | 1.12-2.1 | - +- amd64 | lebiniou | 3.18-1 | - +- amd64 | ledger | 2.6.2-3.1 | - +- amd64 | ledmon | 0.32-1 | - +- amd64 | lekhonee-gnome | 0.11-3 | - +- amd64 | leksah | 0.12.0.3-3 | - +- amd64 | leksah-server | 0.12.0.4-3 | - +- amd64 | lemon | 3.7.13-1+deb7u1 | - +- amd64 | leptonica-progs | 1.69-3.1 | - +- amd64 | less | 444-4 | - +- amd64 | lesstif-bin | 1:0.95.2-1.1 | - +- amd64 | lesstif2 | 1:0.95.2-1.1 | - +- amd64 | lesstif2-dbg | 1:0.95.2-1.1 | - +- amd64 | lesstif2-dev | 1:0.95.2-1.1 | - +- amd64 | letterize | 1.3-3 | - +- amd64 | levee | 3.5a-3 | - +- amd64 | lfc | 1.8.2-1+b2 | - +- amd64 | lfc-dli | 1.8.2-1+b2 | - +- amd64 | lfc-server-mysql | 1.8.2-1+b2 | - +- amd64 | lfc-server-postgres | 1.8.2-1+b2 | - +- amd64 | lfhex | 0.42-3.1 | - +- amd64 | lft | 2.2-4 | - +- amd64 | lftp | 4.3.6-1+deb7u2 | - +- amd64 | lhasa | 0.0.7-2 | - +- amd64 | lhs2tex | 1.17-1 | - +- amd64 | lib32asound2 | 1.0.25-4 | - +- amd64 | lib32asound2-dev | 1.0.25-4 | - +- amd64 | lib32bz2-1.0 | 1.0.6-4 | - +- amd64 | lib32bz2-dev | 1.0.6-4 | - +- amd64 | lib32cr0 | 0.8.5-2 | - +- amd64 | lib32ffi-dev | 3.0.10-3 | - +- amd64 | lib32ffi5 | 3.0.10-3 | - +- amd64 | lib32gcc1 | 1:4.7.2-5 | - +- amd64 | lib32gcc1-dbg | 1:4.7.2-5 | - +- amd64 | lib32gfortran3 | 4.7.2-5 | - +- amd64 | lib32gfortran3-dbg | 4.7.2-5 | - +- amd64 | lib32gmp-dev | 2:5.0.5+dfsg-2 | - +- amd64 | lib32gmp10 | 2:5.0.5+dfsg-2 | - +- amd64 | lib32gmpxx4 | 2:5.0.5+dfsg-2 | - +- amd64 | lib32go0 | 4.7.2-5 | - +- amd64 | lib32go0-dbg | 4.7.2-5 | - +- amd64 | lib32gomp1 | 4.7.2-5 | - +- amd64 | lib32gomp1-dbg | 4.7.2-5 | - +- amd64 | lib32itm1 | 4.7.2-5 | - +- amd64 | lib32itm1-dbg | 4.7.2-5 | - +- amd64 | lib32mpfr-dev | 3.1.0-5 | - +- amd64 | lib32mpfr4 | 3.1.0-5 | - +- amd64 | lib32mudflap0 | 4.7.2-5 | - +- amd64 | lib32mudflap0-dbg | 4.7.2-5 | - +- amd64 | lib32ncurses5 | 5.9-10 | - +- amd64 | lib32ncurses5-dev | 5.9-10 | - +- amd64 | lib32ncursesw5 | 5.9-10 | - +- amd64 | lib32ncursesw5-dev | 5.9-10 | - +- amd64 | lib32nss-mdns | 0.10-3.2 | - +- amd64 | lib32objc3 | 4.6.3-14 | - +- amd64 | lib32objc3-dbg | 4.6.3-14 | - +- amd64 | lib32objc4 | 4.7.2-5 | - +- amd64 | lib32objc4-dbg | 4.7.2-5 | - +- amd64 | lib32quadmath0 | 4.7.2-5 | - +- amd64 | lib32quadmath0-dbg | 4.7.2-5 | - +- amd64 | lib32readline-gplv2-dev | 5.2+dfsg-2~deb7u1 | - +- amd64 | lib32readline5 | 5.2+dfsg-2~deb7u1 | - +- amd64 | lib32readline6 | 6.2+dfsg-0.1 | - +- amd64 | lib32readline6-dev | 6.2+dfsg-0.1 | - +- amd64 | lib32stdc++6 | 4.7.2-5 | - +- amd64 | lib32stdc++6-4.4-dbg | 4.4.7-2 | - +- amd64 | lib32stdc++6-4.6-dbg | 4.6.3-14 | - +- amd64 | lib32stdc++6-4.7-dbg | 4.7.2-5 | - +- amd64 | lib32tinfo-dev | 5.9-10 | - +- amd64 | lib32tinfo5 | 5.9-10 | - +- amd64 | lib32v4l-0 | 0.8.8-3 | - +- amd64 | lib32v4l-dev | 0.8.8-3 | - +- amd64 | lib32z1 | 1:1.2.7.dfsg-13 | - +- amd64 | lib32z1-dev | 1:1.2.7.dfsg-13 | - +- amd64 | lib3ds-1-3 | 1.3.0-6 | - +- amd64 | lib3ds-dev | 1.3.0-6 | - +- amd64 | lib4store-dev | 1.1.4-2 | - +- amd64 | lib4store0 | 1.1.4-2 | - +- amd64 | liba52-0.7.4 | 0.7.4-16 | - +- amd64 | liba52-0.7.4-dev | 0.7.4-16 | - +- amd64 | libaa-bin | 1.4p5-40 | - +- amd64 | libaa1 | 1.4p5-40 | - +- amd64 | libaa1-dbg | 1.4p5-40 | - +- amd64 | libaa1-dev | 1.4p5-40 | - +- amd64 | libaac-tactics-ocaml | 0.2.pl2-7 | - +- amd64 | libaac-tactics-ocaml-dev | 0.2.pl2-7 | - +- amd64 | libaacs-dev | 0.4.0-1 | - +- amd64 | libaacs0 | 0.4.0-1 | - +- amd64 | libaal-dev | 1.0.5-5.1 | - +- amd64 | libabiword-2.9 | 2.9.2+svn20120603-8 | - +- amd64 | libabiword-2.9-dev | 2.9.2+svn20120603-8 | - +- amd64 | libaccess-bridge-java-jni | 1.26.2-9 | - +- amd64 | libaccountsservice-dbg | 0.6.21-8 | - +- amd64 | libaccountsservice-dev | 0.6.21-8 | - +- amd64 | libaccountsservice0 | 0.6.21-8 | - +- amd64 | libace-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-flreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-flreactor-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-foxreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-foxreactor-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-htbp-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-htbp-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-inet-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-inet-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-inet-ssl-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-inet-ssl-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-perl | 1.92-2+b2 | - +- amd64 | libace-qtreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-qtreactor-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-rmcast-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-rmcast-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-ssl-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-ssl-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-tkreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-tkreactor-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-tmcast-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-tmcast-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libace-xtreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libace-xtreactor-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libacexml-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libacexml-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libacl1 | 2.2.51-8 | - +- amd64 | libacl1-dev | 2.2.51-8 | - +- amd64 | libacme-damn-perl | 0.05-1 | - +- amd64 | libacpi-dev | 0.2-4 | - +- amd64 | libacpi0 | 0.2-4 | - +- amd64 | libacr38u | 1.7.11-1 | - +- amd64 | libacr38ucontrol-dev | 1.7.11-1 | - +- amd64 | libacr38ucontrol0 | 1.7.11-1 | - +- amd64 | libacsccid1 | 1.0.3-1 | - +- amd64 | libactiviz.net-cil | 1:1.0~git20111123-6 | - +- amd64 | libadasockets4 | 1.8.10-2 | - +- amd64 | libadasockets4-dev | 1.8.10-2 | - +- amd64 | libaddresses-dev | 0.4.7-1+b5 | - +- amd64 | libaddresses0 | 0.4.7-1+b5 | - +- amd64 | libaddressview-dev | 0.4.7-1+b5 | - +- amd64 | libaddressview0 | 0.4.7-1+b5 | - +- amd64 | libadios-dev | 1.3-11 | - +- amd64 | libadminutil-data | 1.1.15-1 | - +- amd64 | libadminutil-dev | 1.1.15-1 | - +- amd64 | libadminutil0 | 1.1.15-1 | - +- amd64 | libadns1 | 1.4-2 | - +- amd64 | libadns1-dev | 1.4-2 | - +- amd64 | libadolc-dev | 2.3.0-1 | - +- amd64 | libadolc2 | 2.3.0-1 | - +- amd64 | libadplug-2.2.1-0 | 2.2.1+dfsg3-0.1 | - +- amd64 | libadplug-dev | 2.2.1+dfsg3-0.1 | - +- amd64 | libafflib-dev | 3.6.6-1.1 | - +- amd64 | libafflib0 | 3.6.6-1.1 | - +- amd64 | libafrodite-0.12-2 | 0.12.1-3 | - +- amd64 | libafrodite-0.12-2-dbg | 0.12.1-3 | - +- amd64 | libafrodite-0.12-dev | 0.12.1-3 | - +! amd64 | libafsauthent1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libafsrpc1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- amd64 | libafterimage-dev | 2.2.11-7 | - +- amd64 | libafterimage0 | 2.2.11-7 | - +- amd64 | libafterstep1 | 2.2.11-7 | - +- amd64 | libagg-dev | 2.5+dfsg1-8 | - +- amd64 | libagrep-ocaml | 1.0-11+b3 | - +- amd64 | libagrep-ocaml-dev | 1.0-11+b3 | - +- amd64 | libahven21.0 | 2.1-4 | - +- amd64 | libahven3-dev | 2.1-4 | - +- amd64 | libai-fann-perl | 0.10-1 | - +- amd64 | libaiksaurus-1.2-0c2a | 1.2.1+dev-0.12-6.1 | - +- amd64 | libaiksaurus-1.2-dev | 1.2.1+dev-0.12-6.1 | - +- amd64 | libaiksaurusgtk-1.2-0c2a | 1.2.1+dev-0.12-6.1 | - +- amd64 | libaiksaurusgtk-1.2-dev | 1.2.1+dev-0.12-6.1 | - +- amd64 | libaio-dev | 0.3.109-3 | - +- amd64 | libaio1 | 0.3.109-3 | - +- amd64 | libaio1-dbg | 0.3.109-3 | - +- amd64 | libakonadi-calendar4 | 4:4.8.4-2 | - +- amd64 | libakonadi-contact4 | 4:4.8.4-2 | - +- amd64 | libakonadi-dev | 1.7.2-3 | - +- amd64 | libakonadi-kabc4 | 4:4.8.4-2 | - +- amd64 | libakonadi-kcal4 | 4:4.8.4-2 | - +- amd64 | libakonadi-kde4 | 4:4.8.4-2 | - +- amd64 | libakonadi-kmime4 | 4:4.8.4-2 | - +- amd64 | libakonadi-notes4 | 4:4.8.4-2 | - +- amd64 | libakonadiprotocolinternals1 | 1.7.2-3 | - +- amd64 | libalberta2 | 2.0.1-5 | - +- amd64 | libalberta2-dbg | 2.0.1-5 | - +- amd64 | libalberta2-dev | 2.0.1-5 | - +- amd64 | libaldmb1 | 1:0.9.3-5.4 | - +- amd64 | libaldmb1-dev | 1:0.9.3-5.4 | - +- amd64 | libalglib-2.6.0 | 2.6.0-6 | - +- amd64 | libalglib-2.6.0-dbg | 2.6.0-6 | - +- amd64 | libalglib-dev | 2.6.0-6 | - +- amd64 | libalgorithm-combinatorics-perl | 0.26-1 | - +- amd64 | libalgorithm-diff-xs-perl | 0.04-2+b1 | - +- amd64 | libalgorithm-permute-perl | 0.12-1+b2 | - +- amd64 | libalias-perl | 2.32-9+b1 | - +- amd64 | libalien-wxwidgets-perl | 0.59+dfsg-1 | - +- amd64 | libalkimia-dev | 4.3.2-1.1 | - +- amd64 | libalkimia4 | 4.3.2-1.1 | - +- amd64 | liballeggl4-dev | 2:4.4.2-2.1 | - +- amd64 | liballeggl4.4 | 2:4.4.2-2.1 | - +- amd64 | liballegro4.2-dev | 2:4.4.2-2.1 | - +- amd64 | liballegro4.4 | 2:4.4.2-2.1 | - +- amd64 | liballegro4.4-plugin-alsa | 2:4.4.2-2.1 | - +- amd64 | libalog0.4.1-base | 0.4.1-2 | - +- amd64 | libalog0.4.1-base-dbg | 0.4.1-2 | - +- amd64 | libalog0.4.1-base-dev | 0.4.1-2 | - +- amd64 | libalog0.4.1-full | 0.4.1-2 | - +- amd64 | libalog0.4.1-full-dbg | 0.4.1-2 | - +- amd64 | libalog0.4.1-full-dev | 0.4.1-2 | - +- amd64 | libalsa-ocaml | 0.2.1-1+b1 | - +- amd64 | libalsa-ocaml-dev | 0.2.1-1+b1 | - +- amd64 | libalsaplayer-dev | 0.99.80-5.1 | - +- amd64 | libalsaplayer0 | 0.99.80-5.1 | - +- amd64 | libalure-dev | 1.2-6 | - +- amd64 | libalure1 | 1.2-6 | - +- amd64 | libalut-dev | 1.1.0-3 | - +- amd64 | libalut0 | 1.1.0-3 | - +- amd64 | libamd2.2.0 | 1:3.4.0-3 | - +- amd64 | libamu-dev | 6.2+rc20110530-3 | - +- amd64 | libamu4 | 6.2+rc20110530-3 | - +- amd64 | libanalitza-dbg | 4:4.8.4-2 | - +- amd64 | libanalitza-dev | 4:4.8.4-2 | - +- amd64 | libanalitza4abi1 | 4:4.8.4-2 | - +- amd64 | libanalitzagui4 | 4:4.8.4-2 | - +- amd64 | libanet0.1 | 0.1-3 | - +- amd64 | libanet0.1-dbg | 0.1-3 | - +- amd64 | libanet0.1-dev | 0.1-3 | - +- amd64 | libanjuta-3-0 | 2:3.4.3-1 | - +- amd64 | libanjuta-dev | 2:3.4.3-1 | - +- amd64 | libann-dev | 1.1.2+doc-3 | - +- amd64 | libann0 | 1.1.2+doc-3 | - +- amd64 | libanthy-dev | 9100h-16 | - +- amd64 | libanthy0 | 9100h-16 | - +- amd64 | libantlr-dev | 2.7.7+dfsg-4 | - +- amd64 | libantlr3c-3.2-0 | 3.2-2 | - +- amd64 | libantlr3c-antlrdbg-3.2-0 | 3.2-2 | - +- amd64 | libantlr3c-dev | 3.2-2 | - +- amd64 | libanyevent-perl | 7.010-1 | - +- amd64 | libao-common | 1.1.0-2 | - +- amd64 | libao-dbg | 1.1.0-2 | - +- amd64 | libao-dev | 1.1.0-2 | - +- amd64 | libao-ocaml | 0.2.0-1+b2 | - +- amd64 | libao-ocaml-dev | 0.2.0-1+b2 | - +- amd64 | libao4 | 1.1.0-2 | - +- amd64 | libaosd-dev | 0.2.7-1 | - +- amd64 | libaosd-text2 | 0.2.7-1 | - +- amd64 | libaosd2 | 0.2.7-1 | - +- amd64 | libapache-authenhook-perl | 2.00-04+pristine-2+b2 | - +- amd64 | libapache-db-perl | 0.14-3+b1 | - +- amd64 | libapache2-authenntlm-perl | 0.02-5+b3 | - +- amd64 | libapache2-mod-apparmor | 2.7.103-4 | - +- amd64 | libapache2-mod-apreq2 | 2.13-1+b2 | - +- amd64 | libapache2-mod-auth-cas | 1.0.9.1-2 | - +- amd64 | libapache2-mod-auth-kerb | 5.4-2 | - +- amd64 | libapache2-mod-auth-memcookie | 1.0.2-5 | - +- amd64 | libapache2-mod-auth-mysql | 4.3.9-13.1+b1 | - +- amd64 | libapache2-mod-auth-ntlm-winbind | 0.0.0.lorikeet+svn+801-1 | - +- amd64 | libapache2-mod-auth-openid | 0.7-0.1 | - +- amd64 | libapache2-mod-auth-pam | 1.1.1-9 | - +- amd64 | libapache2-mod-auth-pgsql | 2.0.3-5 | - +- amd64 | libapache2-mod-auth-plain | 2.0.51 | - +- amd64 | libapache2-mod-auth-pubtkt | 0.7-1 | - +- amd64 | libapache2-mod-auth-radius | 1.5.8-1.1 | - +- amd64 | libapache2-mod-auth-sys-group | 1.1.1-9 | - +- amd64 | libapache2-mod-auth-tkt | 2.1.0-6 | - +- amd64 | libapache2-mod-authn-sasl | 1.2-1 | - +- amd64 | libapache2-mod-authn-webid | 0~20110301-1+b1 | - +- amd64 | libapache2-mod-authn-yubikey | 1.0-1 | - +- amd64 | libapache2-mod-authnz-external | 3.2.4-2.1 | - +- amd64 | libapache2-mod-authz-unixgroup | 1.0.2-1 | - +- amd64 | libapache2-mod-bw | 0.92-6 | - +- amd64 | libapache2-mod-dacs | 1.4.27b-2 | - +- amd64 | libapache2-mod-defensible | 1.4-3 | - +- amd64 | libapache2-mod-dnssd | 0.6-3 | - +- amd64 | libapache2-mod-encoding | 20040616-5.1 | - +- amd64 | libapache2-mod-evasive | 1.10.1-1 | - +- amd64 | libapache2-mod-fcgid | 1:2.3.6-1.2+deb7u1 | - +- amd64 | libapache2-mod-fcgid-dbg | 1:2.3.6-1.2+deb7u1 | - +- amd64 | libapache2-mod-geoip | 1.2.7-1 | - +- amd64 | libapache2-mod-gnutls | 0.5.10-1.1 | - +- amd64 | libapache2-mod-jk | 1:1.2.37-1 | - +- amd64 | libapache2-mod-layout | 5.1-1 | - +- amd64 | libapache2-mod-ldap-userdir | 1.1.19-1 | - +- amd64 | libapache2-mod-ldap-userdir-dbg | 1.1.19-1 | - +- amd64 | libapache2-mod-lisp | 1.3.1-1.2 | - +- amd64 | libapache2-mod-log-sql | 1.100-14.2+b1 | - +- amd64 | libapache2-mod-log-sql-dbi | 1.100-14.2+b1 | - +- amd64 | libapache2-mod-log-sql-mysql | 1.100-14.2+b1 | - +- amd64 | libapache2-mod-log-sql-ssl | 1.100-14.2+b1 | - +- amd64 | libapache2-mod-macro | 1.1.11-2 | - +- amd64 | libapache2-mod-mime-xattr | 0.4-4 | - +- amd64 | libapache2-mod-mono | 2.10-3.2 | - +- amd64 | libapache2-mod-musicindex | 1.3.7-2+b1 | - +- amd64 | libapache2-mod-nss | 1.0.8-2 | - +- amd64 | libapache2-mod-ocamlnet | 3.5.1-1 | - +- amd64 | libapache2-mod-parser3 | 3.4.2-2 | - +! amd64 | libapache2-mod-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +- amd64 | libapache2-mod-perl2 | 2.0.7-3 | - +- amd64 | libapache2-mod-php5 | 5.4.4-14+deb7u7 | - +- amd64 | libapache2-mod-php5filter | 5.4.4-14+deb7u7 | - +- amd64 | libapache2-mod-proxy-html | 3.0.1-1.1 | - +- amd64 | libapache2-mod-python | 3.3.1-9+b3 | - +- amd64 | libapache2-mod-qos | 10.8-1 | - +- amd64 | libapache2-mod-random | 2.1-1 | - +- amd64 | libapache2-mod-removeip | 1.0b-5 | - +- amd64 | libapache2-mod-rivet | 2.0.5-1 | - +- amd64 | libapache2-mod-rpaf | 0.6-7+wheezy1 | - +- amd64 | libapache2-mod-ruby | 1.2.6-2 | - +- amd64 | libapache2-mod-ruid2 | 0.9.7-1 | - +- amd64 | libapache2-mod-ruwsgi | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | libapache2-mod-ruwsgi-dbg | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | libapache2-mod-scgi | 1.13-1+b2 | - +- amd64 | libapache2-mod-shib2 | 2.4.3+dfsg-5+b1 | - +- amd64 | libapache2-mod-spamhaus | 0.7-1 | - +- amd64 | libapache2-mod-speedycgi | 2.22-13+b2 | - +- amd64 | libapache2-mod-suphp | 0.7.1-3 | - +- amd64 | libapache2-mod-upload-progress | 0.1+git20110718-1 | - +- amd64 | libapache2-mod-uwsgi | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | libapache2-mod-uwsgi-dbg | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | libapache2-mod-vhost-hash-alias | 1.0-2 | - +- amd64 | libapache2-mod-vhost-ldap | 2.0.8-1 | - +- amd64 | libapache2-mod-wsgi | 3.3-4 | - +- amd64 | libapache2-mod-wsgi-py3 | 3.3-4 | - +- amd64 | libapache2-mod-xsendfile | 0.12-1 | - +- amd64 | libapache2-modsecurity | 2.6.6-6+deb7u1 | - +- amd64 | libapache2-request-perl | 2.13-1+b2 | - +- amd64 | libapache2-svn | 1.6.17dfsg-4+deb7u4 | - +- amd64 | libapache2-webauth | 4.1.1-2 | - +- amd64 | libapache2-webkdc | 4.1.1-2 | - +- amd64 | libapertium3-3.1-0 | 3.1.0-2 | - +- amd64 | libapertium3-3.1-0-dev | 3.1.0-2 | - +- amd64 | libapm-dev | 3.2.2-14 | - +- amd64 | libapm1 | 3.2.2-14 | - +- amd64 | libapol-dev | 3.3.7-3 | - +- amd64 | libapol4 | 3.3.7-3 | - +- amd64 | libapparmor-dev | 2.7.103-4 | - +- amd64 | libapparmor-perl | 2.7.103-4 | - +- amd64 | libapparmor1 | 2.7.103-4 | - +- amd64 | libappindicator-dev | 0.4.92-2 | - +- amd64 | libappindicator1 | 0.4.92-2 | - +- amd64 | libappindicator3-1 | 0.4.92-2 | - +- amd64 | libappindicator3-dev | 0.4.92-2 | - +- amd64 | libapq-postgresql3.2.0 | 3.2.0-2 | - +- amd64 | libapq-postgresql3.2.0-dbg | 3.2.0-2 | - +- amd64 | libapq-postgresql3.2.0-dev | 3.2.0-2 | - +- amd64 | libapq3.2.0 | 3.2.0-1 | - +- amd64 | libapq3.2.0-dbg | 3.2.0-1 | - +- amd64 | libapq3.2.0-dev | 3.2.0-1 | - +- amd64 | libapr-memcache-dev | 0.7.0-1 | - +- amd64 | libapr-memcache0 | 0.7.0-1 | - +- amd64 | libapr1 | 1.4.6-3+deb7u1 | - +- amd64 | libapr1-dbg | 1.4.6-3+deb7u1 | - +- amd64 | libapr1-dev | 1.4.6-3+deb7u1 | - +- amd64 | libapreq2 | 2.13-1+b2 | - +- amd64 | libapreq2-dev | 2.13-1+b2 | - +- amd64 | libapron | 0.9.10-5.2+b3 | - +- amd64 | libapron-ocaml | 0.9.10-5.2+b3 | - +- amd64 | libapron-ocaml-dev | 0.9.10-5.2+b3 | - +- amd64 | libaprutil1 | 1.4.1-3 | - +- amd64 | libaprutil1-dbd-freetds | 1.4.1-3 | - +- amd64 | libaprutil1-dbd-mysql | 1.4.1-3 | - +- amd64 | libaprutil1-dbd-odbc | 1.4.1-3 | - +- amd64 | libaprutil1-dbd-pgsql | 1.4.1-3 | - +- amd64 | libaprutil1-dbd-sqlite3 | 1.4.1-3 | - +- amd64 | libaprutil1-dbg | 1.4.1-3 | - +- amd64 | libaprutil1-dev | 1.4.1-3 | - +- amd64 | libaprutil1-ldap | 1.4.1-3 | - +- amd64 | libapt-inst1.5 | 0.9.7.9+deb7u1 | - +- amd64 | libapt-pkg-dev | 0.9.7.9+deb7u1 | - +- amd64 | libapt-pkg-perl | 0.1.26+b1 | - +- amd64 | libapt-pkg4.12 | 0.9.7.9+deb7u1 | - +! amd64 | libaqbanking-plugins-libgwenhywfar60 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! amd64 | libaqbanking34 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-dbg | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-dev | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-plugins | 5.0.24-3 | 5.3.5beta-2~bpo70+1 ++ amd64 | libaqebics0 | - | 5.3.5beta-2~bpo70+1 +! amd64 | libaqhbci20 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 ++ amd64 | libaqhbci22 | - | 5.3.5beta-2~bpo70+1 +! amd64 | libaqofxconnect7 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +- amd64 | libaqsis-dev | 1.8.1-3 | - +- amd64 | libaqsis1 | 1.8.1-3 | - +- amd64 | libarchive-dev | 3.0.4-3+nmu1 | - +- amd64 | libarchive12 | 3.0.4-3+nmu1 | - +- amd64 | libargtable2-0 | 12-1 | - +- amd64 | libargtable2-dev | 12-1 | - +! amd64 | libarmadillo-dev | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! amd64 | libarmadillo3 | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +- amd64 | libarpack++2-dev | 2.3-2 | - +- amd64 | libarpack++2c2a | 2.3-2 | - +- amd64 | libarpack2 | 3.1.1-2.1 | - +- amd64 | libarpack2-dbg | 3.1.1-2.1 | - +- amd64 | libarpack2-dev | 3.1.1-2.1 | - +- amd64 | libarray-refelem-perl | 1.00-1.1+b3 | - +- amd64 | libart-2.0-2 | 2.3.21-2 | - +- amd64 | libart-2.0-dev | 2.3.21-2 | - +- amd64 | libasedrive-serial | 3.7-3 | - +- amd64 | libasedrive-usb | 3.7-3 | - +- amd64 | libasis2010 | 2010-5 | - +- amd64 | libasis2010-dbg | 2010-5 | - +- amd64 | libasis2010-dev | 2010-5 | - +- amd64 | libasm-dev | 0.152-1+wheezy1 | - +- amd64 | libasm1 | 0.152-1+wheezy1 | - +- amd64 | libasn1-8-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libasound2 | 1.0.25-4 | - +- amd64 | libasound2-dbg | 1.0.25-4 | - +- amd64 | libasound2-dev | 1.0.25-4 | - +- amd64 | libasound2-plugin-equal | 0.6-4 | - +- amd64 | libasound2-plugins | 1.0.25-2 | - +- amd64 | libaspell-dev | 0.60.7~20110707-1 | - +- amd64 | libaspell15 | 0.60.7~20110707-1 | - ++ amd64 | libasprintf-dev | - | 0.18.3-1~bpo7+1 +! amd64 | libasprintf0c2 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- amd64 | libass-dev | 0.10.0-3 | - +- amd64 | libass4 | 0.10.0-3 | - +- amd64 | libassa3.5-5 | 3.5.1-2 | - +- amd64 | libassa3.5-5-dbg | 3.5.1-2 | - +- amd64 | libassa3.5-5-dev | 3.5.1-2 | - +- amd64 | libassimp-dev | 3.0~dfsg-1 | - +- amd64 | libassimp3 | 3.0~dfsg-1 | - +- amd64 | libassuan-dev | 2.0.3-1 | - +- amd64 | libassuan0 | 2.0.3-1 | - +- amd64 | libassuan0-dbg | 2.0.3-1 | - +- amd64 | libast2 | 0.7-6+b1 | - +- amd64 | libast2-dev | 0.7-6+b1 | - +- amd64 | libastro-fits-cfitsio-perl | 1.08-1 | - +- amd64 | libasync-interrupt-perl | 1.10-1 | - +- amd64 | libasyncns-dev | 0.8-4 | - +- amd64 | libasyncns0 | 0.8-4 | - +- amd64 | libatasmart-bin | 0.19-1 | - +- amd64 | libatasmart-dev | 0.19-1 | - +- amd64 | libatasmart4 | 0.19-1 | - +- amd64 | libatd-ocaml | 1.0.1-1+b1 | - +- amd64 | libatd-ocaml-dev | 1.0.1-1+b1 | - +- amd64 | libatdgen-ocaml | 1.2.2-1+b1 | - +- amd64 | libatdgen-ocaml-dev | 1.2.2-1+b1 | - +- amd64 | libatfs1 | 1.4pl6-11 | - +- amd64 | libatk-adaptor | 2.5.3-2 | - +- amd64 | libatk-adaptor-data | 2.5.3-2 | - +- amd64 | libatk-adaptor-dbg | 2.5.3-2 | - +- amd64 | libatk-bridge2.0-0 | 2.5.3-2 | - +- amd64 | libatk-bridge2.0-0-dbg | 2.5.3-2 | - +- amd64 | libatk-bridge2.0-dev | 2.5.3-2 | - +- amd64 | libatk-wrapper-java-jni | 0.30.4-3 | - +- amd64 | libatk1-ruby1.8-dbg | 1.1.3-2+b1 | - +- amd64 | libatk1.0-0 | 2.4.0-2 | - +- amd64 | libatk1.0-dbg | 2.4.0-2 | - +- amd64 | libatk1.0-dev | 2.4.0-2 | - +- amd64 | libatkmm-1.6-1 | 2.22.6-1 | - +- amd64 | libatkmm-1.6-dbg | 2.22.6-1 | - +- amd64 | libatkmm-1.6-dev | 2.22.6-1 | - +- amd64 | libatlas-base-dev | 3.8.4-9+deb7u1 | - +- amd64 | libatlas-cpp-0.6-1 | 0.6.2-3 | - +- amd64 | libatlas-cpp-0.6-1-dbg | 0.6.2-3 | - +- amd64 | libatlas-cpp-0.6-dev | 0.6.2-3 | - +- amd64 | libatlas-test | 3.8.4-9+deb7u1 | - +- amd64 | libatlas3-base | 3.8.4-9+deb7u1 | - +- amd64 | libatm1 | 1:2.5.1-1.5 | - +- amd64 | libatm1-dev | 1:2.5.1-1.5 | - +- amd64 | libatomic-ops-dev | 7.2~alpha5+cvs20101124-1+deb7u1 | - +- amd64 | libatomicparsley-dev | 2.1.2-1 | - +- amd64 | libatomicparsley0 | 2.1.2-1 | - +- amd64 | libatspi-dbg | 1.32.0-2 | - +- amd64 | libatspi-dev | 1.32.0-2 | - +- amd64 | libatspi1.0-0 | 1.32.0-2 | - +- amd64 | libatspi2.0-0 | 2.5.3-2 | - +- amd64 | libatspi2.0-0-dbg | 2.5.3-2 | - +- amd64 | libatspi2.0-dev | 2.5.3-2 | - +- amd64 | libattica-dev | 0.2.0-1 | - +- amd64 | libattica0 | 0.2.0-1 | - +- amd64 | libattr1 | 1:2.4.46-8 | - +- amd64 | libattr1-dev | 1:2.4.46-8 | - +- amd64 | libaubio-dev | 0.3.2-4.2+b1 | - +- amd64 | libaubio2 | 0.3.2-4.2+b1 | - +- amd64 | libaudclient2 | 3.2.4-1 | - +- amd64 | libaudcore1 | 3.2.4-1 | - +- amd64 | libaudio-cd-perl | 0.05-9+b2 | - +- amd64 | libaudio-dev | 1.9.3-5wheezy1 | - +- amd64 | libaudio-ecasound-perl | 1.01-2+b1 | - +- amd64 | libaudio-flac-decoder-perl | 0.3+dfsg-1+b2 | - +- amd64 | libaudio-flac-header-perl | 2.4-1+b2 | - +- amd64 | libaudio-mixer-perl | 0.7-3+b3 | - +- amd64 | libaudio-scan-perl | 0.93+dfsg-2+b1 | - +- amd64 | libaudio-xmmsclient-perl | 0.8+dfsg-4 | - +- amd64 | libaudio2 | 1.9.3-5wheezy1 | - +- amd64 | libaudiofile-dbg | 0.3.4-2 | - +- amd64 | libaudiofile-dev | 0.3.4-2 | - +- amd64 | libaudiofile1 | 0.3.4-2 | - +- amd64 | libaudiomask-dev | 1.0-2 | - +- amd64 | libaudiomask1 | 1.0-2 | - +- amd64 | libaudit-dev | 1:1.7.18-1.1 | - +- amd64 | libaudit0 | 1:1.7.18-1.1 | - +- amd64 | libaugeas-dev | 0.10.0-1 | - +- amd64 | libaugeas-ruby1.8 | 0.4.1-1.1 | - +- amd64 | libaugeas-ruby1.9.1 | 0.4.1-1.1 | - +- amd64 | libaugeas0 | 0.10.0-1 | - +- amd64 | libaunit-dbg | 1.03-7 | - +- amd64 | libaunit2-dev | 1.03-7 | - +- amd64 | libaunit3 | 1.03-7 | - +- amd64 | libauthen-dechpwd-perl | 2.006-1+b1 | - +- amd64 | libauthen-krb5-admin-perl | 0.13-1 | - +- amd64 | libauthen-krb5-perl | 1.9-3+b2 | - +- amd64 | libauthen-krb5-simple-perl | 0.43-1 | - +- amd64 | libauthen-pam-perl | 0.16-2+b2 | - +- amd64 | libauthen-sasl-cyrus-perl | 0.13-server-8+b2 | - +- amd64 | libauthen-smb-perl | 0.91-4+b2 | - +- amd64 | libauthen-tacacsplus-perl | 0.22-1 | - +- amd64 | libautobox-perl | 2.75-1+b1 | - +- amd64 | libautotrace-dev | 0.31.1-16+b1 | - +- amd64 | libautotrace3 | 0.31.1-16+b1 | - +- amd64 | libautounit-dev | 0.20.1-4 | - +- amd64 | libautounit2 | 0.20.1-4 | - +- amd64 | libautovivification-perl | 0.10-1+b1 | - +! amd64 | libav-dbg | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libav-tools | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- amd64 | libavahi-client-dev | 0.6.31-2 | - +- amd64 | libavahi-client3 | 0.6.31-2 | - +- amd64 | libavahi-common-data | 0.6.31-2 | - +- amd64 | libavahi-common-dev | 0.6.31-2 | - +- amd64 | libavahi-common3 | 0.6.31-2 | - +- amd64 | libavahi-compat-libdnssd-dev | 0.6.31-2 | - +- amd64 | libavahi-compat-libdnssd1 | 0.6.31-2 | - +- amd64 | libavahi-core-dev | 0.6.31-2 | - +- amd64 | libavahi-core7 | 0.6.31-2 | - +- amd64 | libavahi-glib-dev | 0.6.31-2 | - +- amd64 | libavahi-glib1 | 0.6.31-2 | - +- amd64 | libavahi-gobject-dev | 0.6.31-2 | - +- amd64 | libavahi-gobject0 | 0.6.31-2 | - +- amd64 | libavahi-qt4-1 | 0.6.31-2 | - +- amd64 | libavahi-qt4-dev | 0.6.31-2 | - +- amd64 | libavahi-ui-dev | 0.6.31-2 | - +- amd64 | libavahi-ui-gtk3-0 | 0.6.31-2 | - +- amd64 | libavahi-ui-gtk3-dev | 0.6.31-2 | - +- amd64 | libavahi-ui0 | 0.6.31-2 | - +- amd64 | libavbin-dev | 7-1.3 | - +- amd64 | libavbin0 | 7-1.3 | - +- amd64 | libavc1394-0 | 0.5.4-2 | - +- amd64 | libavc1394-dev | 0.5.4-2 | - +- amd64 | libavc1394-tools | 0.5.4-2 | - +! amd64 | libavcodec-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- amd64 | libavcodec-extra-53 | 6:0.8.9-1 | - ++ amd64 | libavcodec-extra-54 | - | 6:9.10-1~bpo70+1 +- amd64 | libavcodec53 | 6:0.8.9-1 | - ++ amd64 | libavcodec54 | - | 6:9.10-1~bpo70+1 +! amd64 | libavdevice-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavdevice53 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavfilter-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- amd64 | libavfilter2 | 6:0.8.9-1 | - ++ amd64 | libavfilter3 | - | 6:9.10-1~bpo70+1 +! amd64 | libavformat-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- amd64 | libavformat53 | 6:0.8.9-1 | - ++ amd64 | libavformat54 | - | 6:9.10-1~bpo70+1 +- amd64 | libavifile-0.7-bin | 1:0.7.48~20090503.ds-13 | - +- amd64 | libavifile-0.7-dev | 1:0.7.48~20090503.ds-13 | - +- amd64 | libavifile-0.7c2 | 1:0.7.48~20090503.ds-13 | - +- amd64 | libavl-dev | 0.3.5-3 | - +- amd64 | libavl1 | 0.3.5-3 | - +- amd64 | libavogadro-dev | 1.0.3-5 | - +- amd64 | libavogadro1 | 1.0.3-5 | - ++ amd64 | libavresample-dev | - | 6:9.10-1~bpo70+1 ++ amd64 | libavresample1 | - | 6:9.10-1~bpo70+1 +! amd64 | libavutil-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- amd64 | libavutil51 | 6:0.8.9-1 | - ++ amd64 | libavutil52 | - | 6:9.10-1~bpo70+1 +- amd64 | libaws-bin | 2.10.2-4 | - +- amd64 | libaws-dbg | 2.10.2-4 | - +- amd64 | libaws2.10.2 | 2.10.2-4 | - +- amd64 | libaws2.10.2-dev | 2.10.2-4 | - +- amd64 | libax25 | 0.0.12-rc2+cvs20120204-2 | - +- amd64 | libax25-dev | 0.0.12-rc2+cvs20120204-2 | - +- amd64 | libb-hooks-op-annotation-perl | 0.44-1+b2 | - +- amd64 | libb-hooks-op-check-entersubforcv-perl | 0.09-1 | - +- amd64 | libb-hooks-op-check-perl | 0.19-1+b1 | - +- amd64 | libb-hooks-op-ppaddr-perl | 0.03-1+b1 | - +- amd64 | libb-hooks-parser-perl | 0.11-1 | - +- amd64 | libb-utils-perl | 0.21-1 | - +- amd64 | libbabl-0.1-0 | 0.1.10-1 | - +- amd64 | libbabl-0.1-0-dbg | 0.1.10-1 | - +- amd64 | libbabl-dev | 0.1.10-1 | - +- amd64 | libball1.4 | 1.4.1+20111206-4 | - +- amd64 | libball1.4-dev | 1.4.1+20111206-4 | - +- amd64 | libballview1.4 | 1.4.1+20111206-4 | - +- amd64 | libballview1.4-dev | 1.4.1+20111206-4 | - +- amd64 | libbam-dev | 0.1.18-1 | - +- amd64 | libbamf-dev | 0.2.118-1 | - +- amd64 | libbamf0 | 0.2.118-1 | - +- amd64 | libbamf3-0 | 0.2.118-1 | - +- amd64 | libbamf3-dev | 0.2.118-1 | - +- amd64 | libbarcode-zbar-perl | 0.10+doc-8 | - +- amd64 | libbareword-filehandles-perl | 0.003-1 | - +- amd64 | libbarry-dev | 0.18.3-5 | - +- amd64 | libbarry18 | 0.18.3-5 | - +- amd64 | libbarry18-dbg | 0.18.3-5 | - +- amd64 | libbatteries-ocaml-dev | 1.4.3-1 | - +- amd64 | libbcmail-java-gcj | 1.44+dfsg-3.1 | - +- amd64 | libbcpg-java-gcj | 1.44+dfsg-3.1 | - +- amd64 | libbcprov-java-gcj | 1.44+dfsg-3.1 | - +- amd64 | libbctsp-java-gcj | 1.44+dfsg-3.1 | - +- amd64 | libbdd-dev | 2.4-8 | - +- amd64 | libbdd0c2 | 2.4-8 | - +- amd64 | libbeecrypt-dev | 4.2.1-4 | - +- amd64 | libbeecrypt7 | 4.2.1-4 | - +- amd64 | libbenchmark-ocaml-dev | 0.9-2+b3 | - +- amd64 | libberkeleydb-perl | 0.51-1 | - +- amd64 | libbfb0 | 0.23-1.1 | - +- amd64 | libbfb0-dev | 0.23-1.1 | - ++ amd64 | libbfio-dbg | - | 20130507-1~bpo70+1 ++ amd64 | libbfio-dev | - | 20130507-1~bpo70+1 ++ amd64 | libbfio1 | - | 20130507-1~bpo70+1 +- amd64 | libbg1 | 1.106-1 | - +- amd64 | libbg1-dev | 1.106-1 | - +- amd64 | libbibutils-dev | 4.12-5 | - +- amd64 | libbibutils2 | 4.12-5 | - +- amd64 | libbin-prot-camlp4-dev | 2.0.7-1 | - +- amd64 | libbind-dev | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | libbind4 | 6.0-1 | - +- amd64 | libbind4-dev | 6.0-1 | - +- amd64 | libbind9-80 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | libbinio-dev | 1.4+dfsg1-1 | - +- amd64 | libbinio1ldbl | 1.4+dfsg1-1 | - +- amd64 | libbiniou-ocaml | 1.0.0-1+b1 | - +- amd64 | libbiniou-ocaml-dev | 1.0.0-1+b1 | - +- amd64 | libbio-samtools-perl | 1.33-1 | - +- amd64 | libbio-scf-perl | 1.03-1+b2 | - +- amd64 | libbio2jack0 | 0.9-2.1 | - +- amd64 | libbio2jack0-dev | 0.9-2.1 | - +- amd64 | libbiococoa-dev | 2.2.2-1+b2 | - +- amd64 | libbiococoa2 | 2.2.2-1+b2 | - +- amd64 | libbiosig-dev | 1.3.0-2 | - +- amd64 | libbiosig1 | 1.3.0-2 | - +- amd64 | libbiosig1-dbg | 1.3.0-2 | - +- amd64 | libbisho-common-dev | 0.27.2+git20111122.9e68ef3d-1 | - +- amd64 | libbisho-common0 | 0.27.2+git20111122.9e68ef3d-1 | - +- amd64 | libbisho-common0-dbg | 0.27.2+git20111122.9e68ef3d-1 | - +- amd64 | libbison-dev | 1:2.5.dfsg-2.1 | - +- amd64 | libbit-vector-perl | 7.2-1 | - +- amd64 | libbitmask-dev | 2.0-2 | - +- amd64 | libbitmask1 | 2.0-2 | - +- amd64 | libbitstring-ocaml | 2.0.2-3+b1 | - +- amd64 | libbitstring-ocaml-dev | 2.0.2-3+b1 | - +- amd64 | libbjack-ocaml | 0.1.3-5+b1 | - +- amd64 | libbjack-ocaml-dev | 0.1.3-5+b1 | - +- amd64 | libblacs-mpi-dev | 1.1-31 | - +- amd64 | libblacs-mpi1 | 1.1-31 | - ++ amd64 | libbladerf-dev | - | 0.9.0.15.8ba2499-1~bpo70+1 ++ amd64 | libbladerf0 | - | 0.9.0.15.8ba2499-1~bpo70+1 +- amd64 | libblas-dev | 1.2.20110419-5 | - +- amd64 | libblas-test | 1.2.20110419-5 | - +- amd64 | libblas3 | 1.2.20110419-5 | - +- amd64 | libbliss-dev | 0.72-4 | - +- amd64 | libbliss1d | 0.72-4 | - +- amd64 | libbliss1d-dbg | 0.72-4 | - +- amd64 | libblitz0-dev | 1:0.9-13 | - +- amd64 | libblitz0ldbl | 1:0.9-13 | - +- amd64 | libblkid-dev | 2.20.1-5.3 | - +- amd64 | libblkid1 | 2.20.1-5.3 | - +- amd64 | libblktapctl0 | 2.0.90-1 | - +- amd64 | libblocksruntime-dev | 0.1-1 | - +- amd64 | libblocksruntime0 | 0.1-1 | - +- amd64 | libbluedevil-dev | 1.9.2-1 | - +- amd64 | libbluedevil1 | 1.9.2-1 | - +- amd64 | libbluetooth-dev | 4.99-2 | - +- amd64 | libbluetooth3 | 4.99-2 | - +- amd64 | libbluetooth3-dbg | 4.99-2 | - +- amd64 | libbluray-dev | 1:0.2.2-1 | - +- amd64 | libbluray1 | 1:0.2.2-1 | - +- amd64 | libbluray1-dbg | 1:0.2.2-1 | - +- amd64 | libbml-dev | 0.6.1-1 | - +- amd64 | libbml0 | 0.6.1-1 | - +- amd64 | libbobcat-dev | 3.01.00-1+b1 | - +- amd64 | libbobcat3 | 3.01.00-1+b1 | - +- amd64 | libbogl-dev | 0.1.18-8+b1 | - +- amd64 | libbogl0 | 0.1.18-8+b1 | - +- amd64 | libbognor-regis-0.6-0 | 0.6.12+git20101007.02c25268-7 | - +- amd64 | libbognor-regis-0.6-0-dbg | 0.6.12+git20101007.02c25268-7 | - +- amd64 | libbognor-regis-dev | 0.6.12+git20101007.02c25268-7 | - ++ amd64 | libboinc-app7 | - | 7.0.65+dfsg-3~bpo70+1 ++ amd64 | libboinc7 | - | 7.0.65+dfsg-3~bpo70+1 +- amd64 | libbonobo2-0 | 2.24.3-1 | - +- amd64 | libbonobo2-bin | 2.24.3-1 | - +- amd64 | libbonobo2-dev | 2.24.3-1 | - +- amd64 | libbonoboui2-0 | 2.24.3-1 | - +- amd64 | libbonoboui2-dev | 2.24.3-1 | - +- amd64 | libboolstuff-0.1-0 | 0.1.12-3 | - +- amd64 | libboolstuff-0.1-0-dbg | 0.1.12-3 | - +- amd64 | libboost-all-dev | 1.49.0.1 | - +- amd64 | libboost-chrono-dev | 1.49.0.1 | - +- amd64 | libboost-chrono1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-chrono1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-date-time-dev | 1.49.0.1 | - +- amd64 | libboost-date-time1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-date-time1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-dbg | 1.49.0.1 | - +- amd64 | libboost-dev | 1.49.0.1 | - +- amd64 | libboost-filesystem-dev | 1.49.0.1 | - +- amd64 | libboost-filesystem1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-filesystem1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-graph-dev | 1.49.0.1 | - +- amd64 | libboost-graph-parallel-dev | 1.49.0.1 | - +- amd64 | libboost-graph-parallel1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-graph-parallel1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-graph1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-graph1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-iostreams-dev | 1.49.0.1 | - +- amd64 | libboost-iostreams1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-iostreams1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-locale-dev | 1.49.0.1 | - +- amd64 | libboost-locale1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-locale1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-math-dev | 1.49.0.1 | - +- amd64 | libboost-math1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-math1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-mpi-dev | 1.49.0.1 | - +- amd64 | libboost-mpi-python-dev | 1.49.0.1 | - +- amd64 | libboost-mpi-python1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-mpi-python1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-mpi1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-mpi1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-program-options-dev | 1.49.0.1 | - +- amd64 | libboost-program-options1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-program-options1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-python-dev | 1.49.0.1 | - +- amd64 | libboost-python1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-python1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-random-dev | 1.49.0.1 | - +- amd64 | libboost-random1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-random1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-regex-dev | 1.49.0.1 | - +- amd64 | libboost-regex1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-regex1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-serialization-dev | 1.49.0.1 | - +- amd64 | libboost-serialization1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-serialization1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-signals-dev | 1.49.0.1 | - +- amd64 | libboost-signals1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-signals1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-system-dev | 1.49.0.1 | - +- amd64 | libboost-system1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-system1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-test-dev | 1.49.0.1 | - +- amd64 | libboost-test1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-test1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-thread-dev | 1.49.0.1 | - +- amd64 | libboost-thread1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-thread1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-timer-dev | 1.49.0.1 | - +- amd64 | libboost-timer1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-timer1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost-wave-dev | 1.49.0.1 | - +- amd64 | libboost-wave1.49-dev | 1.49.0-3.2 | - +- amd64 | libboost-wave1.49.0 | 1.49.0-3.2 | - +- amd64 | libboost1.49-all-dev | 1.49.0-3.2 | - +- amd64 | libboost1.49-dbg | 1.49.0-3.2 | - +- amd64 | libboost1.49-dev | 1.49.0-3.2 | - +- amd64 | libbotan-1.10-0 | 1.10.5-1 | - +- amd64 | libbotan1.10-dev | 1.10.5-1 | - +- amd64 | libbox-dev | 2.5-2 | - +- amd64 | libbox2d-dev | 2.0.1+dfsg1-1 | - +- amd64 | libbox2d0 | 2.0.1+dfsg1-1 | - +- amd64 | libbox2d0-dbg | 2.0.1+dfsg1-1 | - +- amd64 | libbpp-core-dev | 2.0.3-1 | - +- amd64 | libbpp-core2 | 2.0.3-1 | - +- amd64 | libbpp-phyl-dev | 2.0.3-1 | - +- amd64 | libbpp-phyl9 | 2.0.3-1 | - +- amd64 | libbpp-popgen-dev | 2.0.3-1 | - +- amd64 | libbpp-popgen6 | 2.0.3-1 | - +- amd64 | libbpp-qt-dev | 2.0.2-1 | - +- amd64 | libbpp-qt1 | 2.0.2-1 | - +- amd64 | libbpp-raa-dev | 2.0.3-1 | - +- amd64 | libbpp-raa1 | 2.0.3-1 | - +- amd64 | libbpp-seq-dev | 2.0.3-1 | - +- amd64 | libbpp-seq9 | 2.0.3-1 | - +- amd64 | libbrahe-1.3-3 | 1.3.2-3 | - +- amd64 | libbrahe-dev | 1.3.2-3 | - +- amd64 | libbrasero-media3-1 | 3.4.1-4 | - +- amd64 | libbrasero-media3-dev | 3.4.1-4 | - +- amd64 | libbrlapi-dbg | 4.4-10+deb7u1 | - +- amd64 | libbrlapi-dev | 4.4-10+deb7u1 | - +- amd64 | libbrlapi-jni | 4.4-10+deb7u1 | - +- amd64 | libbrlapi0.5 | 4.4-10+deb7u1 | - +- amd64 | libbs2b-dev | 3.1.0+dfsg-2 | - +- amd64 | libbs2b0 | 3.1.0+dfsg-2 | - +- amd64 | libbsd-arc4random-perl | 1.50-5 | - +- amd64 | libbsd-dev | 0.4.2-1 | - +- amd64 | libbsd-resource-perl | 1.2904-1+b2 | - +- amd64 | libbsd0 | 0.4.2-1 | - +- amd64 | libbsd0-dbg | 0.4.2-1 | - +- amd64 | libbse-0.7-4 | 0.7.4-5 | - +- amd64 | libbt-dev | 0.70.1-13 | - +- amd64 | libbt0 | 0.70.1-13 | - +- amd64 | libbtf1.1.0 | 1:3.4.0-3 | - +- amd64 | libbtparse-dev | 0.63-1 | - +- amd64 | libbtparse1 | 0.63-1 | - +- amd64 | libbuffy-dev | 1.7-1 | - +- amd64 | libbuffy-perl | 0.13+b1 | - +- amd64 | libbulletml-dev | 0.0.6-5 | - +- amd64 | libbulletml0d2 | 0.0.6-5 | - +- amd64 | libburn-dbg | 1.2.2-2 | - +- amd64 | libburn-dev | 1.2.2-2 | - +- amd64 | libburn4 | 1.2.2-2 | - +- amd64 | libbuzztard-dev | 0.5.0-4 | - +- amd64 | libbuzztard0 | 0.5.0-4 | - +- amd64 | libbz2-1.0 | 1.0.6-4 | - +- amd64 | libbz2-dev | 1.0.6-4 | - +- amd64 | libbz2-ocaml | 0.6.0-6+b2 | - +- amd64 | libbz2-ocaml-dev | 0.6.0-6+b2 | - +- amd64 | libbz2-ruby1.8 | 0.2.2-2 | - +- amd64 | libc-ares-dev | 1.9.1-3 | - +- amd64 | libc-ares2 | 1.9.1-3 | - +- amd64 | libc-bin | 2.13-38+deb7u1 | - +- amd64 | libc-client2007e | 8:2007f~dfsg-2 | - +- amd64 | libc-client2007e-dev | 8:2007f~dfsg-2 | - +- amd64 | libc-dev-bin | 2.13-38+deb7u1 | - +- amd64 | libc-icap-mod-clamav | 1:0.1.6-1 | - +- amd64 | libc-icap-mod-urlcheck | 1:0.1.6-1 | - +- amd64 | libc6 | 2.13-38+deb7u1 | - +- amd64 | libc6-dbg | 2.13-38+deb7u1 | - +- amd64 | libc6-dev | 2.13-38+deb7u1 | - +- amd64 | libc6-dev-i386 | 2.13-38+deb7u1 | - +- amd64 | libc6-i386 | 2.13-38+deb7u1 | - +- amd64 | libc6-pic | 2.13-38+deb7u1 | - +- amd64 | libc6-prof | 2.13-38+deb7u1 | - +- amd64 | libcableswig-dev | 0.1.0+cvs20111009-1 | - +- amd64 | libcaca-dev | 0.99.beta18-1 | - +- amd64 | libcaca0 | 0.99.beta18-1 | - +- amd64 | libcache-fastmmap-perl | 1.40-1 | - +- amd64 | libcache-memcached-fast-perl | 0.19-2+b1 | - +- amd64 | libcache-mmap-perl | 0.11-1+b3 | - +- amd64 | libcairo-gobject-perl | 1.001-1 | - +- amd64 | libcairo-gobject2 | 1.12.2-3 | - +- amd64 | libcairo-ocaml | 1:1.2.0-2+b1 | - +- amd64 | libcairo-ocaml-dev | 1:1.2.0-2+b1 | - +- amd64 | libcairo-perl | 1.090-2 | - +- amd64 | libcairo-script-interpreter2 | 1.12.2-3 | - +- amd64 | libcairo2 | 1.12.2-3 | - +- amd64 | libcairo2-dbg | 1.12.2-3 | - +- amd64 | libcairo2-dev | 1.12.2-3 | - +- amd64 | libcairo5c-0 | 1.8.1 | - +- amd64 | libcairomm-1.0-1 | 1.10.0-1 | - +- amd64 | libcairomm-1.0-dev | 1.10.0-1 | - +- amd64 | libcal3d12 | 0.11.0-4.1 | - +- amd64 | libcal3d12-dev | 0.11.0-4.1 | - +- amd64 | libcalendar-ocaml | 2.03-1+b2 | - +- amd64 | libcalendar-ocaml-dev | 2.03-1+b2 | - +- amd64 | libcamd2.2.0 | 1:3.4.0-3 | - +- amd64 | libcamel-1.2-33 | 3.4.4-3 | - +- amd64 | libcamel1.2-dev | 3.4.4-3 | - +- amd64 | libcameleon-ocaml-dev | 1.9.21-2+b1 | - +- amd64 | libcaml2html-ocaml | 1.4.1-3 | - +- amd64 | libcaml2html-ocaml-dev | 1.4.1-3 | - +- amd64 | libcamlimages-ocaml | 1:4.0.1-4+b2 | - +- amd64 | libcamlimages-ocaml-dev | 1:4.0.1-4+b2 | - +- amd64 | libcamljava-ocaml-dev | 0.3-1+b3 | - +- amd64 | libcamltemplate-ocaml | 1.0.2-1+b2 | - +- amd64 | libcamltemplate-ocaml-dev | 1.0.2-1+b2 | - +- amd64 | libcamomile-ocaml-dev | 0.8.4-2 | - +- amd64 | libcanberra-dev | 0.28-6 | - +- amd64 | libcanberra-gstreamer | 0.28-6 | - +- amd64 | libcanberra-gstreamer-dbg | 0.28-6 | - +- amd64 | libcanberra-gtk-dev | 0.28-6 | - +- amd64 | libcanberra-gtk-module | 0.28-6 | - +- amd64 | libcanberra-gtk-module-dbg | 0.28-6 | - +- amd64 | libcanberra-gtk0 | 0.28-6 | - +- amd64 | libcanberra-gtk0-dbg | 0.28-6 | - +- amd64 | libcanberra-gtk3-0 | 0.28-6 | - +- amd64 | libcanberra-gtk3-0-dbg | 0.28-6 | - +- amd64 | libcanberra-gtk3-dev | 0.28-6 | - +- amd64 | libcanberra-gtk3-module | 0.28-6 | - +- amd64 | libcanberra-gtk3-module-dbg | 0.28-6 | - +- amd64 | libcanberra-pulse | 0.28-6 | - +- amd64 | libcanberra-pulse-dbg | 0.28-6 | - +- amd64 | libcanberra0 | 0.28-6 | - +- amd64 | libcanberra0-dbg | 0.28-6 | - +- amd64 | libcanlock2 | 2b-6 | - +- amd64 | libcanlock2-dev | 2b-6 | - +- amd64 | libcanna1g | 3.7p3-11 | - +- amd64 | libcanna1g-dev | 3.7p3-11 | - +- amd64 | libcap-dev | 1:2.22-1.2 | - +- amd64 | libcap-ng-dev | 0.6.6-2 | - +- amd64 | libcap-ng-utils | 0.6.6-2 | - +- amd64 | libcap-ng0 | 0.6.6-2 | - +- amd64 | libcap2 | 1:2.22-1.2 | - +- amd64 | libcap2-bin | 1:2.22-1.2 | - +- amd64 | libcapi20-3 | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | libcapi20-dev | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | libcapsinetwork-dev | 0.3.0-7 | - +- amd64 | libcapsinetwork0c2a | 0.3.0-7 | - +- amd64 | libcaribou-dbg | 0.4.4-1 | - +- amd64 | libcaribou-dev | 0.4.4-1 | - +- amd64 | libcaribou-gtk-module | 0.4.4-1 | - +- amd64 | libcaribou-gtk-module-dbg | 0.4.4-1 | - +- amd64 | libcaribou-gtk3-module | 0.4.4-1 | - +- amd64 | libcaribou-gtk3-module-dbg | 0.4.4-1 | - +- amd64 | libcaribou0 | 0.4.4-1 | - +- amd64 | libcbf-dev | 0.7.9.1-3 | - +- amd64 | libcbf0 | 0.7.9.1-3 | - +- amd64 | libccaudio2 | 2.0.5-3 | - +- amd64 | libccaudio2-dev | 2.0.5-3 | - +- amd64 | libccfits-dev | 2.4-1 | - +- amd64 | libccfits0 | 2.4-1 | - +- amd64 | libccgnu2-1.8-0 | 1.8.1-5 | - +- amd64 | libccid | 1.4.7-1 | - +- amd64 | libccolamd2.7.1 | 1:3.4.0-3 | - +- amd64 | libcconv-dev | 0.6.2-1 | - +- amd64 | libcconv0 | 0.6.2-1 | - +- amd64 | libccrtp-dev | 2.0.3-4 | - +- amd64 | libccrtp0 | 2.0.3-4 | - +- amd64 | libccs-dev | 3.0.12-3.2+deb7u2 | - +- amd64 | libccs-perl | 3.0.12-3.2+deb7u2 | - +- amd64 | libccs3 | 3.0.12-3.2+deb7u2 | - +- amd64 | libccscript3-1.1-0 | 1.1.7-2 | - +- amd64 | libccscript3-dev | 1.1.7-2 | - +- amd64 | libccss-1-5 | 0.5.0-4 | - +- amd64 | libccss-1-5-dbg | 0.5.0-4 | - +- amd64 | libccss-dev | 0.5.0-4 | - +- amd64 | libccss-tools | 0.5.0-4 | - +- amd64 | libcdaudio-dbg | 0.99.12p2-12 | - +- amd64 | libcdaudio-dev | 0.99.12p2-12 | - +- amd64 | libcdaudio1 | 0.99.12p2-12 | - +- amd64 | libcdb-dev | 0.78 | - +- amd64 | libcdb-file-perl | 0.97-2 | - +- amd64 | libcdb1 | 0.78 | - +- amd64 | libcdd-dev | 094b.dfsg-4.2 | - +- amd64 | libcdd-test | 094b.dfsg-4.2 | - +- amd64 | libcdd0 | 094b.dfsg-4.2 | - +- amd64 | libcddb2 | 1.3.2-3 | - +- amd64 | libcddb2-dev | 1.3.2-3 | - +- amd64 | libcdi-dev | 1.5.4+dfsg.1-5 | - +- amd64 | libcdi0 | 1.5.4+dfsg.1-5 | - +- amd64 | libcdio-cdda-dev | 0.83-4 | - +- amd64 | libcdio-cdda1 | 0.83-4 | - +- amd64 | libcdio-dev | 0.83-4 | - +- amd64 | libcdio-paranoia-dev | 0.83-4 | - +- amd64 | libcdio-paranoia1 | 0.83-4 | - +- amd64 | libcdio-utils | 0.83-4 | - +- amd64 | libcdio13 | 0.83-4 | - +- amd64 | libcdk-perl | 4.9.10-5+b1 | - +- amd64 | libcdk5 | 5.0.20060507-4 | - +- amd64 | libcdk5-dev | 5.0.20060507-4 | - +- amd64 | libcdparanoia-dev | 3.10.2+debian-10.1 | - +- amd64 | libcdparanoia0 | 3.10.2+debian-10.1 | - +- amd64 | libcdt4 | 2.26.3-14+deb7u1 | - +- amd64 | libcec-dev | 1.6.2-1.1 | - +- amd64 | libcec1 | 1.6.2-1.1 | - +- amd64 | libcegui-mk2-0.7.6 | 0.7.6-2+b1 | - +- amd64 | libcegui-mk2-0.7.6-dbg | 0.7.6-2+b1 | - +- amd64 | libcegui-mk2-dev | 0.7.6-2+b1 | - +- amd64 | libcext-dev | 6.1.1-2 | - +- amd64 | libcext0 | 6.1.1-2 | - +- amd64 | libcf-ocaml | 0.10-3+b3 | - +- amd64 | libcf-ocaml-dev | 0.10-3+b3 | - +- amd64 | libcf0 | 1:4.1.3-6+b1 | - +- amd64 | libcfg-dev | 1.4.2-3 | - +- amd64 | libcfg4 | 1.4.2-3 | - +- amd64 | libcfitsio3 | 3.300-2 | - +- amd64 | libcfitsio3-dbg | 3.300-2 | - +- amd64 | libcfitsio3-dev | 3.300-2 | - +- amd64 | libcflow-perl | 1:0.68-12.1+b1 | - +- amd64 | libcgal-dev | 4.0-5 | - +- amd64 | libcgal-ipelets | 4.0-5 | - +- amd64 | libcgal9 | 4.0-5 | - +- amd64 | libcgi-java | 0.7.3-1 | - +- amd64 | libcgic-dev | 2.05-3 | - +- amd64 | libcgic2 | 2.05-3 | - +- amd64 | libcgicc5 | 3.2.9-3 | - +- amd64 | libcgicc5-dev | 3.2.9-3 | - +- amd64 | libcgns-dev | 3.1.3.4-1+b1 | - +- amd64 | libcgns3.1 | 3.1.3.4-1+b1 | - +- amd64 | libcgns3.1-dbg | 3.1.3.4-1+b1 | - +- amd64 | libcgraph5 | 2.26.3-14+deb7u1 | - +- amd64 | libcgroup-dev | 0.38-1 | - +- amd64 | libcgroup1 | 0.38-1 | - +- amd64 | libcgsi-gsoap-dev | 1.3.5-1 | - +- amd64 | libcgsi-gsoap1 | 1.3.5-1 | - +- amd64 | libchamplain-0.12-0 | 0.12.3-1 | - +- amd64 | libchamplain-0.12-dbg | 0.12.3-1 | - +- amd64 | libchamplain-0.12-dev | 0.12.3-1 | - +- amd64 | libchamplain-gtk-0.12-0 | 0.12.3-1 | - +- amd64 | libchamplain-gtk-0.12-dbg | 0.12.3-1 | - +- amd64 | libchamplain-gtk-0.12-dev | 0.12.3-1 | - +- amd64 | libcharls-dev | 1.0-2 | - +- amd64 | libcharls1 | 1.0-2 | - +- amd64 | libchasen-dev | 2.4.5-6 | - +- amd64 | libchasen2 | 2.4.5-6 | - +- amd64 | libcheese-dev | 3.4.2-2 | - +- amd64 | libcheese-gtk-dev | 3.4.2-2 | - +- amd64 | libcheese-gtk21 | 3.4.2-2 | - +- amd64 | libcheese3 | 3.4.2-2 | - +- amd64 | libchemistry-openbabel-perl | 2.3.1+dfsg-4 | - +- amd64 | libchewing3 | 0.3.3-4 | - +- amd64 | libchewing3-data | 0.3.3-4 | - +- amd64 | libchewing3-dbg | 0.3.3-4 | - +- amd64 | libchewing3-dev | 0.3.3-4 | - +- amd64 | libchicken-dev | 4.7.0-1 | - +- amd64 | libchicken6 | 4.7.0-1 | - +- amd64 | libchipcard-dev | 5.0.3beta-3 | - +- amd64 | libchipcard-libgwenhywfar60-plugins | 5.0.3beta-3 | - +- amd64 | libchipcard-tools | 5.0.3beta-3 | - +- amd64 | libchipcard6 | 5.0.3beta-3 | - +- amd64 | libchipmunk0d1 | 5.3.4-1 | - +- amd64 | libchipmunk0d1-dbg | 5.3.4-1 | - +- amd64 | libchise-dev | 0.3.0-2+b1 | - +- amd64 | libchise1 | 0.3.0-2+b1 | - +- amd64 | libchm-bin | 2:0.40a-2 | - +- amd64 | libchm-dev | 2:0.40a-2 | - +- amd64 | libchm1 | 2:0.40a-2 | - +- amd64 | libcholmod1.7.1 | 1:3.4.0-3 | - +! amd64 | libchromaprint-dev | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libchromaprint-tools | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libchromaprint0 | 0.6-2 | 1.1-1~bpo70+1 +- amd64 | libcib1 | 1.1.7-1 | - +- amd64 | libcib1-dev | 1.1.7-1 | - +- amd64 | libcitadel-dev | 8.14-1 | - +- amd64 | libcitadel3 | 8.14-1 | - +- amd64 | libcitadel3-dbg | 8.14-1 | - +- amd64 | libcitygml0 | 0.14+svn128-1+3p0p1+4 | - +- amd64 | libcitygml0-bin | 0.14+svn128-1+3p0p1+4 | - +- amd64 | libcitygml0-dev | 0.14+svn128-1+3p0p1+4 | - +- amd64 | libck-connector-dev | 0.4.5-3.1 | - +- amd64 | libck-connector0 | 0.4.5-3.1 | - +- amd64 | libckit-smlnj | 110.74-2 | - +- amd64 | libckyapplet1 | 1.1.0-12 | - +- amd64 | libckyapplet1-dev | 1.1.0-12 | - +- amd64 | libclalsadrv2 | 2.0.0-3 | - +- amd64 | libclam-dev | 1.4.0-5.1 | - +- amd64 | libclam-qtmonitors-dev | 1.4.0-3.1 | - +- amd64 | libclam-qtmonitors1.4 | 1.4.0-3.1 | - +- amd64 | libclam1.4 | 1.4.0-5.1 | - +- amd64 | libclamav-dev | 0.97.8+dfsg-1 | - +- amd64 | libclamav6 | 0.97.8+dfsg-1 | - +- amd64 | libclanapp-1.0 | 1.0~svn3827-3 | - +- amd64 | libclang-common-dev | 1:3.0-6.2 | - +- amd64 | libclang-dev | 1:3.0-6.2 | - +- amd64 | libclang1 | 1:3.0-6.2 | - +- amd64 | libclanlib-dev | 1.0~svn3827-3 | - +- amd64 | libclansdl-1.0 | 1.0~svn3827-3 | - +- amd64 | libclass-c3-xs-perl | 0.13-1+b2 | - +- amd64 | libclass-date-perl | 1.1.10-1+b2 | - +- amd64 | libclass-load-xs-perl | 0.04-1 | - +- amd64 | libclass-methodmaker-perl | 2.18-1+b1 | - +- amd64 | libclass-xsaccessor-perl | 1.13-1 | - +- amd64 | libclassad-dev | 7.8.2~dfsg.1-1+deb7u1 | - +- amd64 | libclassad3 | 7.8.2~dfsg.1-1+deb7u1 | - +- amd64 | libclaw-application-dev | 1.7.0-3 | - +- amd64 | libclaw-application1 | 1.7.0-3 | - +- amd64 | libclaw-configuration-file-dev | 1.7.0-3 | - +- amd64 | libclaw-configuration-file1 | 1.7.0-3 | - +- amd64 | libclaw-dev | 1.7.0-3 | - +- amd64 | libclaw-dynamic-library-dev | 1.7.0-3 | - +- amd64 | libclaw-dynamic-library1 | 1.7.0-3 | - +- amd64 | libclaw-graphic-dev | 1.7.0-3 | - +- amd64 | libclaw-graphic1 | 1.7.0-3 | - +- amd64 | libclaw-logger-dev | 1.7.0-3 | - +- amd64 | libclaw-logger1 | 1.7.0-3 | - +- amd64 | libclaw-net-dev | 1.7.0-3 | - +- amd64 | libclaw-net1 | 1.7.0-3 | - +- amd64 | libclaw-tween-dev | 1.7.0-3 | - +- amd64 | libclaw-tween1 | 1.7.0-3 | - +! amd64 | libclaws-mail-dev | 3.8.1-2 | 3.9.3-1~bpo70+1 +- amd64 | libclearsilver-perl | 0.10.5-1.3 | - +- amd64 | libclhep-dev | 2.1.2.3-1 | - +- amd64 | libclhep2.1 | 2.1.2.3-1 | - +- amd64 | libcli-dev | 1.9.6-1 | - +- amd64 | libcli1.9 | 1.9.6-1 | - +- amd64 | libclinica0 | 0.2.1~dfsg-1 | - +- amd64 | libclippoly-dev | 0.11-3 | - +- amd64 | libclippoly0 | 0.11-3 | - +- amd64 | libclips | 6.24-3 | - +- amd64 | libclips-dev | 6.24-3 | - +- amd64 | libcliquer-dev | 1.21-1 | - +- amd64 | libcliquer1 | 1.21-1 | - +- amd64 | libcln-dev | 1.3.2-1.2 | - +- amd64 | libcln6 | 1.3.2-1.2 | - +- amd64 | libclone-fast-perl | 0.96-1 | - +- amd64 | libclone-perl | 0.31-1+b2 | - +- amd64 | libcloog-isl-dev | 0.17.0-3 | - +- amd64 | libcloog-isl3 | 0.17.0-3 | - +- amd64 | libcloog-ppl-dev | 0.15.11-4 | - +- amd64 | libcloog-ppl0 | 0.15.11-4 | - +- amd64 | libclthreads-dev | 2.4.0-4 | - +- amd64 | libclthreads2 | 2.4.0-4 | - +- amd64 | libclucene-dev | 0.9.21b-2+b1 | - +- amd64 | libclucene0ldbl | 0.9.21b-2+b1 | - +- amd64 | libclustalo-dev | 1.1.0-1 | - +- amd64 | libclutter-1.0-0 | 1.10.8-2 | - +- amd64 | libclutter-1.0-dbg | 1.10.8-2 | - +- amd64 | libclutter-1.0-dev | 1.10.8-2 | - +- amd64 | libclutter-gst-1.0-0 | 1.5.4-1+build0 | - +- amd64 | libclutter-gst-1.0-dbg | 1.5.4-1+build0 | - +- amd64 | libclutter-gst-dev | 1.5.4-1+build0 | - +- amd64 | libclutter-gtk-1.0-0 | 1.2.0-2 | - +- amd64 | libclutter-gtk-1.0-dbg | 1.2.0-2 | - +- amd64 | libclutter-gtk-1.0-dev | 1.2.0-2 | - +- amd64 | libclutter-imcontext-0.1-0 | 0.1.4-3 | - +- amd64 | libclutter-imcontext-0.1-0-dbg | 0.1.4-3 | - +- amd64 | libclutter-imcontext-0.1-bin | 0.1.4-3 | - +- amd64 | libclutter-imcontext-0.1-dev | 0.1.4-3 | - +- amd64 | libclutter-perl | 1.110-1 | - +- amd64 | libcluttergesture-0.0.2-0 | 0.0.2.1-7 | - +- amd64 | libcluttergesture-0.0.2-0-dbg | 0.0.2.1-7 | - +- amd64 | libcluttergesture-dev | 0.0.2.1-7 | - +- amd64 | libclxclient-dev | 3.6.1-6 | - +- amd64 | libclxclient3 | 3.6.1-6 | - +- amd64 | libcman-dev | 3.0.12-3.2+deb7u2 | - +- amd64 | libcman3 | 3.0.12-3.2+deb7u2 | - +- amd64 | libcminpack-dev | 1.2.2-1 | - +- amd64 | libcminpack1.0.90 | 1.2.2-1 | - +- amd64 | libcmis-0.2-0 | 0.1.0-1+b1 | - +- amd64 | libcmis-dev | 0.1.0-1+b1 | - +- amd64 | libcml-smlnj | 110.74-2 | - +- amd64 | libcmlutil-smlnj | 110.74-2 | - +- amd64 | libcmor-dev | 2.8.0-2+b1 | - +- amd64 | libcmor2 | 2.8.0-2+b1 | - +- amd64 | libcmph-dev | 0.9-1 | - +- amd64 | libcmph-tools | 0.9-1 | - +- amd64 | libcmph0 | 0.9-1 | - +- amd64 | libcneartree-dev | 3.1.1-1 | - +- amd64 | libcneartree5 | 3.1.1-1 | - +- amd64 | libcnf-dev | 4.0-2 | - +- amd64 | libcob1 | 1.1-1 | - +- amd64 | libcob1-dev | 1.1-1 | - +! amd64 | libcodeblocks0 | 10.05-2.1 | 13.12-1~bpo70+1 +- amd64 | libcogl-dev | 1.10.2-7 | - +- amd64 | libcogl-pango-dev | 1.10.2-7 | - +- amd64 | libcogl-pango0 | 1.10.2-7 | - +- amd64 | libcogl-pango0-dbg | 1.10.2-7 | - +- amd64 | libcogl9 | 1.10.2-7 | - +- amd64 | libcogl9-dbg | 1.10.2-7 | - +- amd64 | libcoin60 | 3.1.3-2.2 | - +- amd64 | libcoin60-dev | 3.1.3-2.2 | - ++ amd64 | libcoin80 | - | 3.1.4~abc9f50-3~bpo70+1 ++ amd64 | libcoin80-dev | - | 3.1.4~abc9f50-3~bpo70+1 +- amd64 | libcojets2-dev | 20061220+dfsg3-2 | - +- amd64 | libcojets2-gfortran | 20061220+dfsg3-2 | - +- amd64 | libcolamd2.7.1 | 1:3.4.0-3 | - +- amd64 | libcollectdclient-dev | 5.1.0-3 | - +- amd64 | libcollectdclient0 | 5.1.0-3 | - +- amd64 | libcollection-dev | 0.1.3-2 | - +- amd64 | libcollection2 | 0.1.3-2 | - +- amd64 | libcolorblind-dev | 0.0.1-1 | - +- amd64 | libcolorblind0 | 0.0.1-1 | - +- amd64 | libcolord-dev | 0.1.21-1 | - +- amd64 | libcolord-gtk-dev | 0.1.21-1 | - +- amd64 | libcolord-gtk1 | 0.1.21-1 | - +- amd64 | libcolord1 | 0.1.21-1 | - +- amd64 | libcolorhug-dev | 0.1.10-1 | - +- amd64 | libcolorhug1 | 0.1.10-1 | - +- amd64 | libcomedi-dev | 0.10.0-3 | - +- amd64 | libcomedi0 | 0.10.0-3 | - +- amd64 | libcomerr2 | 1.42.5-1.1 | - +- amd64 | libcomerr2-dbg | 1.42.5-1.1 | - +- amd64 | libcommoncpp2-dbg | 1.8.1-5 | - +- amd64 | libcommoncpp2-dev | 1.8.1-5 | - +- amd64 | libcompfaceg1 | 1:1.5.2-5 | - +- amd64 | libcompfaceg1-dev | 1:1.5.2-5 | - +- amd64 | libcompress-bzip2-perl | 2.09-2+b2 | - +- amd64 | libcompress-raw-bzip2-perl | 2.052-1 | - +- amd64 | libcompress-raw-zlib-perl | 2.052-1 | - +- amd64 | libconcord-dev | 0.24-1.1 | - +- amd64 | libconcord2 | 0.24-1.1 | - +- amd64 | libconfdb-dev | 1.4.2-3 | - +- amd64 | libconfdb4 | 1.4.2-3 | - +- amd64 | libconfig++-dbg | 1.4.8-5 | - +- amd64 | libconfig++-dev | 1.4.8-5 | - +- amd64 | libconfig++8-dev | 1.4.8-5 | - +- amd64 | libconfig++9 | 1.4.8-5 | - +- amd64 | libconfig-augeas-perl | 0.903-1 | - +- amd64 | libconfig-dbg | 1.4.8-5 | - +- amd64 | libconfig-dev | 1.4.8-5 | - +- amd64 | libconfig-file-ocaml-dev | 1.1-1 | - +- amd64 | libconfig8-dev | 1.4.8-5 | - +- amd64 | libconfig9 | 1.4.8-5 | - +- amd64 | libconfuse-dev | 2.7-4 | - +- amd64 | libconfuse0 | 2.7-4 | - +- amd64 | libconsole | 1:0.2.3dbs-70 | - +- amd64 | libcontactsdb-dev | 0.5-8 | - +- amd64 | libcontactsdb0 | 0.5-8 | - +- amd64 | libcontactsdb0-dbg | 0.5-8 | - +- amd64 | libconvert-binary-c-perl | 0.76-1+b2 | - +- amd64 | libconvert-uulib-perl | 1:1.4~dfsg-1+b1 | - +- amd64 | libcoq-ocaml | 8.3.pl4+dfsg-2 | - +- amd64 | libcoq-ocaml-dev | 8.3.pl4+dfsg-2 | - +- amd64 | libcore-ocaml | 107.01-5 | - +- amd64 | libcore-ocaml-dev | 107.01-5 | - +- amd64 | libcorelinux-dev | 0.4.32-7.3 | - +- amd64 | libcorelinuxc2a | 0.4.32-7.3 | - +- amd64 | libcoro-perl | 6.080-3 | - +- amd64 | libcoroipcc-dev | 1.4.2-3 | - +- amd64 | libcoroipcc4 | 1.4.2-3 | - +- amd64 | libcoroipcs-dev | 1.4.2-3 | - +- amd64 | libcoroipcs4 | 1.4.2-3 | - +- amd64 | libcos4-1 | 4.1.6-2 | - +- amd64 | libcos4-1-dbg | 4.1.6-2 | - +- amd64 | libcos4-dev | 4.1.6-2 | - +- amd64 | libcothreads-ocaml-dev | 0.10-3+b3 | - +- amd64 | libcoyotl-3.1-4 | 3.1.0-5 | - +- amd64 | libcoyotl-dev | 3.1.0-5 | - +- amd64 | libcpg-dev | 1.4.2-3 | - +- amd64 | libcpg4 | 1.4.2-3 | - +- amd64 | libcpl-dev | 6.1.1-2 | - +- amd64 | libcplcore20 | 6.1.1-2 | - +- amd64 | libcpldfs20 | 6.1.1-2 | - +- amd64 | libcpldrs20 | 6.1.1-2 | - +- amd64 | libcplui20 | 6.1.1-2 | - +- amd64 | libcppcutter-dev | 1.1.7-1.2 | - +- amd64 | libcppcutter0 | 1.1.7-1.2 | - +- amd64 | libcppunit-1.12-1 | 1.12.1-4 | - +- amd64 | libcppunit-dev | 1.12.1-4 | - +- amd64 | libcppunit-subunit-dev | 0.0.8+bzr176-1 | - +- amd64 | libcppunit-subunit0 | 0.0.8+bzr176-1 | - +- amd64 | libcpputest-dev | 3.1-2 | - +- amd64 | libcpufreq-dev | 008-1 | - +- amd64 | libcpufreq0 | 008-1 | - +- amd64 | libcpuset-dev | 1.0-3 | - +- amd64 | libcpuset1 | 1.0-3 | - +- amd64 | libcqrlib2 | 1.1.2-1 | - +- amd64 | libcqrlib2-dev | 1.1.2-1 | - +- amd64 | libcr-dbg | 0.8.5-2 | - +- amd64 | libcr-dev | 0.8.5-2 | - +- amd64 | libcr0 | 0.8.5-2 | - +- amd64 | libcrack2 | 2.8.19-3 | - +- amd64 | libcrack2-dev | 2.8.19-3 | - +- amd64 | libcreal-ocaml-dev | 0.7-6+b3 | - +- amd64 | libcrmcluster1 | 1.1.7-1 | - +- amd64 | libcrmcluster1-dev | 1.1.7-1 | - +- amd64 | libcrmcommon2 | 1.1.7-1 | - +- amd64 | libcrmcommon2-dev | 1.1.7-1 | - +- amd64 | libcroco-tools | 0.6.6-2 | - +- amd64 | libcroco3 | 0.6.6-2 | - +- amd64 | libcroco3-dev | 0.6.6-2 | - +- amd64 | libcry-ocaml-dev | 0.2.2-1+b1 | - +- amd64 | libcrypt-blowfish-perl | 2.12-1+b2 | - +- amd64 | libcrypt-cast5-perl | 0.05-1 | - +- amd64 | libcrypt-des-perl | 2.05-2+b3 | - +- amd64 | libcrypt-dh-gmp-perl | 0.00010-1 | - +- amd64 | libcrypt-eksblowfish-perl | 0.008-1+b2 | - +- amd64 | libcrypt-gcrypt-perl | 1.25-1+b1 | - +- amd64 | libcrypt-mysql-perl | 0.04-4+b1 | - +- amd64 | libcrypt-openssl-bignum-perl | 0.04-3 | - +- amd64 | libcrypt-openssl-dsa-perl | 0.13-6 | - +- amd64 | libcrypt-openssl-random-perl | 0.04-1+b4 | - +- amd64 | libcrypt-openssl-rsa-perl | 0.28-1 | - +- amd64 | libcrypt-openssl-x509-perl | 1.8.2-1+b1 | - +- amd64 | libcrypt-rijndael-perl | 1.08-1+b2 | - +- amd64 | libcrypt-smime-perl | 0.10-1+b1 | - +- amd64 | libcrypt-ssleay-perl | 0.58-1 | - +- amd64 | libcrypt-twofish-perl | 2.12-1+b2 | - +- amd64 | libcrypt-unixcrypt-xs-perl | 0.08-1+b3 | - +- amd64 | libcryptgps-ocaml-dev | 0.2.1-7+b3 | - +- amd64 | libcrypto++-dev | 5.6.1-6 | - +- amd64 | libcrypto++-utils | 5.6.1-6 | - +- amd64 | libcrypto++9 | 5.6.1-6 | - +- amd64 | libcrypto++9-dbg | 5.6.1-6 | - +- amd64 | libcryptokit-ocaml | 1.5-1 | - +- amd64 | libcryptokit-ocaml-dev | 1.5-1 | - +- amd64 | libcryptsetup-dev | 2:1.4.3-4 | - +- amd64 | libcryptsetup4 | 2:1.4.3-4 | - +- amd64 | libcryptui-dev | 3.2.2-1 | - +- amd64 | libcryptui0a | 3.2.2-1 | - +- amd64 | libcrystalhd-dev | 1:0.0~git20110715.fdd2f19-9 | - +- amd64 | libcrystalhd3 | 1:0.0~git20110715.fdd2f19-9 | - +- amd64 | libcsfml-audio1.6 | 1.6-1 | - +- amd64 | libcsfml-dev | 1.6-1 | - +- amd64 | libcsfml-graphics1.6 | 1.6-1 | - +- amd64 | libcsfml-network1.6 | 1.6-1 | - +- amd64 | libcsfml-system1.6 | 1.6-1 | - +- amd64 | libcsfml-window1.6 | 1.6-1 | - +- amd64 | libcsfml1.6-dbg | 1.6-1 | - +- amd64 | libcsiro0 | 5.9.9-5 | - +- amd64 | libcsnd-java | 1:5.17.11~dfsg-3 | - +- amd64 | libcsnd5.2 | 1:5.17.11~dfsg-3 | - +- amd64 | libcsoap-dev | 1.1.0-17.1 | - +- amd64 | libcsoap1 | 1.1.0-17.1 | - +- amd64 | libcsoap1-dbg | 1.1.0-17.1 | - +- amd64 | libcsound64-5.2 | 1:5.17.11~dfsg-3 | - +- amd64 | libcsoundac5.2 | 1:5.17.11~dfsg-3 | - +- amd64 | libcsparse2.2.3 | 1:3.4.0-3 | - +- amd64 | libcss-minifier-xs-perl | 0.07-1+b2 | - +- amd64 | libcss-parser-pp0 | 0.85-2 | - +- amd64 | libcss-parser0 | 0.85-2 | - +- amd64 | libcsv-ocaml-dev | 1.2.2-1+b1 | - ++ amd64 | libcsvimp-dev | - | 0.4.7-2~bpo70+1 +- amd64 | libct4 | 0.91-2+deb7u1 | - +- amd64 | libctapimkt0 | 1.0.1-1.1 | - +- amd64 | libctapimkt0-dev | 1.0.1-1.1 | - +- amd64 | libctdb-dev | 1.12+git20120201-4 | - +- amd64 | libctemplate-dev | 2.2-3 | - +- amd64 | libctemplate2 | 2.2-3 | - +- amd64 | libctl-dev | 3.1.0-5 | - +- amd64 | libctl3 | 3.1.0-5 | - +- amd64 | libctpl-dev | 0.3.3.dfsg-2 | - +- amd64 | libctpl2 | 0.3.3.dfsg-2 | - +- amd64 | libcuba3 | 3.0+20111124-2 | - +- amd64 | libcuba3-dbg | 3.0+20111124-2 | - +- amd64 | libcuba3-dev | 3.0+20111124-2 | - ++ amd64 | libcublas5.0 | - | 5.0.35-8~bpo70+1 ++ amd64 | libcuda1 | - | 319.82-1~bpo70+1 ++ amd64 | libcudart5.0 | - | 5.0.35-8~bpo70+1 +- amd64 | libcudf-dev | 0.6.2-1 | - +- amd64 | libcudf-ocaml-dev | 0.6.2-1 | - +- amd64 | libcue-dev | 1.4.0-1 | - +- amd64 | libcue1 | 1.4.0-1 | - ++ amd64 | libcufft5.0 | - | 5.0.35-8~bpo70+1 ++ amd64 | libcuinj64-5.0 | - | 5.0.35-8~bpo70+1 +- amd64 | libcunit1 | 2.1-0.dfsg-10 | - +- amd64 | libcunit1-dev | 2.1-0.dfsg-10 | - +- amd64 | libcunit1-ncurses | 2.1-0.dfsg-10 | - +- amd64 | libcunit1-ncurses-dev | 2.1-0.dfsg-10 | - +- amd64 | libcups2 | 1.5.3-5+deb7u1 | - +- amd64 | libcups2-dev | 1.5.3-5+deb7u1 | - +- amd64 | libcupscgi1 | 1.5.3-5+deb7u1 | - +- amd64 | libcupscgi1-dev | 1.5.3-5+deb7u1 | - +- amd64 | libcupsdriver1 | 1.5.3-5+deb7u1 | - +- amd64 | libcupsdriver1-dev | 1.5.3-5+deb7u1 | - +- amd64 | libcupsfilters-dev | 1.0.18-2.1 | - +- amd64 | libcupsfilters1 | 1.0.18-2.1 | - +- amd64 | libcupsimage2 | 1.5.3-5+deb7u1 | - +- amd64 | libcupsimage2-dev | 1.5.3-5+deb7u1 | - +- amd64 | libcupsmime1 | 1.5.3-5+deb7u1 | - +- amd64 | libcupsmime1-dev | 1.5.3-5+deb7u1 | - +- amd64 | libcupsppdc1 | 1.5.3-5+deb7u1 | - +- amd64 | libcupsppdc1-dev | 1.5.3-5+deb7u1 | - +- amd64 | libcupt2-0 | 2.5.9 | - +- amd64 | libcupt2-0-downloadmethod-curl | 2.5.9 | - +- amd64 | libcupt2-0-downloadmethod-wget | 2.5.9 | - +- amd64 | libcupt2-dev | 2.5.9 | - ++ amd64 | libcupti-dev | - | 5.0.35-8~bpo70+1 ++ amd64 | libcupti5.0 | - | 5.0.35-8~bpo70+1 ++ amd64 | libcurand5.0 | - | 5.0.35-8~bpo70+1 +- amd64 | libcurl-ocaml | 0.5.3-2+b1 | - +- amd64 | libcurl-ocaml-dev | 0.5.3-2+b1 | - +- amd64 | libcurl3 | 7.26.0-1+wheezy8 | - +- amd64 | libcurl3-dbg | 7.26.0-1+wheezy8 | - +- amd64 | libcurl3-gnutls | 7.26.0-1+wheezy8 | - +- amd64 | libcurl3-nss | 7.26.0-1+wheezy8 | - +- amd64 | libcurl4-gnutls-dev | 7.26.0-1+wheezy8 | - +- amd64 | libcurl4-nss-dev | 7.26.0-1+wheezy8 | - +- amd64 | libcurl4-openssl-dev | 7.26.0-1+wheezy8 | - +- amd64 | libcurses-ocaml | 1.0.3-2 | - +- amd64 | libcurses-ocaml-dev | 1.0.3-2 | - +- amd64 | libcurses-perl | 1.28-1+b2 | - ++ amd64 | libcusparse5.0 | - | 5.0.35-8~bpo70+1 +- amd64 | libcutter-dev | 1.1.7-1.2 | - +- amd64 | libcutter0 | 1.1.7-1.2 | - +- amd64 | libcv-dev | 2.3.1-11 | - +- amd64 | libcv2.3 | 2.3.1-11 | - +- amd64 | libcvaux-dev | 2.3.1-11 | - +- amd64 | libcvaux2.3 | 2.3.1-11 | - +- amd64 | libcvc3-5 | 2.4.1-4 | - +- amd64 | libcvc3-5-jni | 2.4.1-4 | - +- amd64 | libcvc3-dev | 2.4.1-4 | - +- amd64 | libcvector2 | 1.0.3-1 | - +- amd64 | libcvector2-dev | 1.0.3-1 | - +- amd64 | libcvm1 | 0.96-1+b1 | - +- amd64 | libcvm1-dev | 0.96-1+b1 | - +- amd64 | libcw3 | 3.0.2-1 | - +- amd64 | libcw3-dev | 3.0.2-1 | - +- amd64 | libcwidget-dev | 0.5.16-3.4 | - +- amd64 | libcwidget3 | 0.5.16-3.4 | - +- amd64 | libcwidget3-dbg | 0.5.16-3.4 | - +- amd64 | libcwiid-dev | 0.6.00+svn201-3+b1 | - +- amd64 | libcwiid1 | 0.6.00+svn201-3+b1 | - +- amd64 | libcwnn-dev | 1.1.1~a021+cvs20100325-6 | - +- amd64 | libcwnn0 | 1.1.1~a021+cvs20100325-6 | - +- amd64 | libcxgb3-1 | 1.3.1-1 | - +- amd64 | libcxgb3-1-dbg | 1.3.1-1 | - +- amd64 | libcxgb3-dev | 1.3.1-1 | - +- amd64 | libcxsparse2.2.3 | 1:3.4.0-3 | - +- amd64 | libcxxtools-dev | 2.1.1-1 | - +- amd64 | libcxxtools8 | 2.1.1-1 | - +- amd64 | libcyrus-imap-perl24 | 2.4.16-4+deb7u1 | - +- amd64 | libdacs-dev | 1.4.27b-2 | - +- amd64 | libdacs1 | 1.4.27b-2 | - +- amd64 | libdaemon-dev | 0.14-2 | - +- amd64 | libdaemon0 | 0.14-2 | - +- amd64 | libdaemon0-dbg | 0.14-2 | - +- amd64 | libdancer-xml0 | 0.8.2.1-3 | - +- amd64 | libdancer-xml0-dev | 0.8.2.1-3 | - +- amd64 | libdap-bin | 3.11.1-11 | - +- amd64 | libdap-dev | 3.11.1-11 | - +- amd64 | libdap11 | 3.11.1-11 | - +- amd64 | libdapclient3 | 3.11.1-11 | - +- amd64 | libdapl-dev | 2.0.19-1.1 | - +- amd64 | libdapl2 | 2.0.19-1.1 | - +- amd64 | libdapserver7 | 3.11.1-11 | - +- amd64 | libdaq-dev | 0.6.2-2 | - +- amd64 | libdaq0 | 0.6.2-2 | - +- amd64 | libdar-dev | 2.4.5.debian.1-1 | - +- amd64 | libdar64-5 | 2.4.5.debian.1-1 | - +- amd64 | libdata-alias-perl | 1.16-1 | - +- amd64 | libdata-clone-perl | 0.003-1 | - +- amd64 | libdata-dump-streamer-perl | 2.34-1 | - +- amd64 | libdata-dumpxml-perl | 1.06-1 | - +- amd64 | libdata-peek-perl | 0.38-1 | - +- amd64 | libdata-streamdeserializer-perl | 0.06-1+b2 | - +- amd64 | libdata-streamserializer-perl | 0.07-1+b2 | - +- amd64 | libdata-structure-util-perl | 0.15-2+b2 | - +- amd64 | libdata-util-perl | 0.59-1 | - +- amd64 | libdata-uuid-libuuid-perl | 0.05-1+b2 | - +- amd64 | libdate-calc-xs-perl | 6.3-1 | - +- amd64 | libdate-pcalc-perl | 6.1-1+b2 | - +- amd64 | libdate-simple-perl | 3.03.03-1+b3 | - +- amd64 | libdatetime-perl | 2:0.7500-1 | - +- amd64 | libdatrie-dev | 0.2.5-3 | - +- amd64 | libdatrie1 | 0.2.5-3 | - +- amd64 | libdatrie1-bin | 0.2.5-3 | - +- amd64 | libdb++-dev | 5.1.6 | - +- amd64 | libdb-dev | 5.1.6 | - +- amd64 | libdb-java-dev | 5.1.6 | - +- amd64 | libdb-sql-dev | 5.1.6 | - +- amd64 | libdb1-compat | 2.1.3-16 | - +- amd64 | libdb5.1 | 5.1.29-5 | - +- amd64 | libdb5.1++ | 5.1.29-5 | - +- amd64 | libdb5.1++-dev | 5.1.29-5 | - +- amd64 | libdb5.1-dbg | 5.1.29-5 | - +- amd64 | libdb5.1-dev | 5.1.29-5 | - +- amd64 | libdb5.1-java-dev | 5.1.29-5 | - +- amd64 | libdb5.1-java-gcj | 5.1.29-5 | - +- amd64 | libdb5.1-java-jni | 5.1.29-5 | - +- amd64 | libdb5.1-sql | 5.1.29-5 | - +- amd64 | libdb5.1-sql-dev | 5.1.29-5 | - +- amd64 | libdb5.1-stl | 5.1.29-5 | - +- amd64 | libdb5.1-stl-dev | 5.1.29-5 | - +- amd64 | libdb5.1-tcl | 5.1.29-5 | - +- amd64 | libdballe-dev | 5.18-1 | - +- amd64 | libdballe5 | 5.18-1 | - +- amd64 | libdballef-dev | 5.18-1 | - +- amd64 | libdballef4 | 5.18-1 | - +- amd64 | libdbaudiolib0 | 0.9.8-6.2 | - +- amd64 | libdbaudiolib0-dev | 0.9.8-6.2 | - +- amd64 | libdbd-firebird-perl | 0.91-2+b1 | - +- amd64 | libdbd-freetds | 0.8.3-1+s-5+b1 | - +- amd64 | libdbd-mysql | 0.8.3-1+s-5+b1 | - +- amd64 | libdbd-mysql-perl | 4.021-1+b1 | - +- amd64 | libdbd-odbc-perl | 1.37-1 | - +- amd64 | libdbd-pg-perl | 2.19.2-2 | - +- amd64 | libdbd-pgsql | 0.8.3-1+s-5+b1 | - +- amd64 | libdbd-sqlite | 0.8.3-1+s-5+b1 | - +- amd64 | libdbd-sqlite2-perl | 2:0.33-9+b2 | - +- amd64 | libdbd-sqlite3 | 0.8.3-1+s-5+b1 | - +- amd64 | libdbd-sqlite3-perl | 1.37-1 | - +- amd64 | libdbd-sybase-perl | 1.14-1 | - +- amd64 | libdbi-dev | 0.8.4-6 | - +- amd64 | libdbi-perl | 1.622-1 | - +- amd64 | libdbi1 | 0.8.4-6 | - +- amd64 | libdbus-1-3 | 1.6.8-1+deb7u1 | - +- amd64 | libdbus-1-dev | 1.6.8-1+deb7u1 | - +- amd64 | libdbus-c++-1-0 | 0.9.0-6 | - +- amd64 | libdbus-c++-bin | 0.9.0-6 | - +- amd64 | libdbus-c++-dbg | 0.9.0-6 | - +- amd64 | libdbus-c++-dev | 0.9.0-6 | - +- amd64 | libdbus-glib-1-2 | 0.100.2-1 | - +- amd64 | libdbus-glib-1-2-dbg | 0.100.2-1 | - +- amd64 | libdbus-glib-1-dev | 0.100.2-1 | - +- amd64 | libdbus-ocaml | 0.29-1+b3 | - +- amd64 | libdbus-ocaml-dev | 0.29-1+b3 | - +- amd64 | libdbusada0.2 | 0.2-2 | - +- amd64 | libdbusada0.2-dbg | 0.2-2 | - +- amd64 | libdbusada0.2-dev | 0.2-2 | - +- amd64 | libdbusmenu-glib-dev | 0.6.2-1 | - +- amd64 | libdbusmenu-glib4 | 0.6.2-1 | - +- amd64 | libdbusmenu-gtk-dev | 0.6.2-1 | - +- amd64 | libdbusmenu-gtk3-4 | 0.6.2-1 | - +- amd64 | libdbusmenu-gtk3-dev | 0.6.2-1 | - +- amd64 | libdbusmenu-gtk4 | 0.6.2-1 | - +- amd64 | libdbusmenu-jsonloader-dev | 0.6.2-1 | - +- amd64 | libdbusmenu-jsonloader4 | 0.6.2-1 | - +- amd64 | libdbusmenu-qt-dev | 0.9.0-1 | - +- amd64 | libdbusmenu-qt2 | 0.9.0-1 | - +- amd64 | libdbusmenu-tools | 0.6.2-1 | - +- amd64 | libdc-dev | 0.3.24~svn3121-2 | - +- amd64 | libdc1394-22 | 2.2.0-2 | - +- amd64 | libdc1394-22-dbg | 2.2.0-2 | - +- amd64 | libdc1394-22-dev | 2.2.0-2 | - +- amd64 | libdc1394-utils | 2.2.0-2 | - +- amd64 | libdc5 | 0.3.24~svn3121-2 | - +- amd64 | libdca-dev | 0.0.5-5 | - +- amd64 | libdca-utils | 0.0.5-5 | - +- amd64 | libdca0 | 0.0.5-5 | - +- amd64 | libdcap1 | 2.47.6-2 | - +- amd64 | libdcerpc-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libdcerpc-server-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libdcerpc-server0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libdcerpc0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libdcmtk2 | 3.6.0-12 | - +- amd64 | libdcmtk2-dev | 3.6.0-12 | - +- amd64 | libdconf-dbg | 0.12.1-3 | - +- amd64 | libdconf-dbus-1-0 | 0.12.1-3 | - +- amd64 | libdconf-dbus-1-dbg | 0.12.1-3 | - +- amd64 | libdconf-dbus-1-dev | 0.12.1-3 | - +- amd64 | libdconf-dev | 0.12.1-3 | - +- amd64 | libdconf0 | 0.12.1-3 | - +- amd64 | libddccontrol-dev | 0.4.2-10 | - +- amd64 | libddccontrol0 | 0.4.2-10 | - +- amd64 | libdds-dev | 2.1.2+ddd105-1 | - +- amd64 | libdebconf-kde-dev | 0.2-2 | - +- amd64 | libdebconf-kde0 | 0.2-2 | - +- amd64 | libdebconfclient0 | 0.182 | - +- amd64 | libdebconfclient0-dev | 0.182 | - +- amd64 | libdebian-installer-extra4 | 0.87 | - +- amd64 | libdebian-installer4 | 0.87 | - +- amd64 | libdebian-installer4-dev | 0.87 | - +- amd64 | libdebug0 | 0.4.4-1.1 | - +- amd64 | libdebug0-dev | 0.4.4-1.1 | - +- amd64 | libdeclarative-connectivity | 1.2.0-3 | - +- amd64 | libdeclarative-contacts | 1.2.0-3 | - +- amd64 | libdeclarative-feedback | 1.2.0-3 | - +- amd64 | libdeclarative-gallery | 1.2.0-3 | - +- amd64 | libdeclarative-location | 1.2.0-3 | - +- amd64 | libdeclarative-messaging | 1.2.0-3 | - +- amd64 | libdeclarative-multimedia | 1.2.0-3 | - +- amd64 | libdeclarative-organizer | 1.2.0-3 | - +- amd64 | libdeclarative-publishsubscribe | 1.2.0-3 | - +- amd64 | libdeclarative-sensors | 1.2.0-3 | - +- amd64 | libdeclarative-serviceframework | 1.2.0-3 | - +- amd64 | libdeclarative-systeminfo | 1.2.0-3 | - +- amd64 | libdecodeqr-dev | 0.9.3-6.2 | - +- amd64 | libdecodeqr-examples | 0.9.3-6.2 | - +- amd64 | libdecodeqr0 | 0.9.3-6.2 | - +- amd64 | libdee-1.0-4 | 1.0.10-3 | - +- amd64 | libdee-1.0-4-dbg | 1.0.10-3 | - +- amd64 | libdee-dev | 1.0.10-3 | - +- amd64 | libderiving-ocaml | 0.1.1a-3+b1 | - +- amd64 | libderiving-ocaml-dev | 0.1.1a-3+b1 | - +- amd64 | libderiving-ocsigen-ocaml | 0.3c-1 | - +- amd64 | libderiving-ocsigen-ocaml-dev | 0.3c-1 | - +- amd64 | libdesktop-agnostic-bin | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-cfg-gconf | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-cfg-keyfile | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-data | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-dev | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-fdo-gio | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-fdo-glib | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-fdo-gnome | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic-vfs-gio | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic0 | 0.3.92+dfsg-1 | - +- amd64 | libdesktop-agnostic0-dbg | 0.3.92+dfsg-1 | - +- amd64 | libdessert0.87 | 0.87.2-1 | - +- amd64 | libdessert0.87-dev | 0.87.2-1 | - +- amd64 | libdevel-beginlift-perl | 0.001003-1 | - +- amd64 | libdevel-bt-perl | 0.05-1+b2 | - +- amd64 | libdevel-caller-perl | 2.05-1+b2 | - +- amd64 | libdevel-cover-perl | 0.89-1 | - +- amd64 | libdevel-declare-perl | 0.006011-1 | - +- amd64 | libdevel-dprof-perl | 20110802.00-1 | - +- amd64 | libdevel-findref-perl | 1.422-1+b2 | - +- amd64 | libdevel-leak-perl | 0.03-2+b1 | - +- amd64 | libdevel-lexalias-perl | 0.04-3+b1 | - +- amd64 | libdevel-nytprof-perl | 4.06-1+b2 | - +- amd64 | libdevel-pragma-perl | 0.54-1 | - +- amd64 | libdevel-refcount-perl | 0.09-1+b2 | - +- amd64 | libdevel-size-perl | 0.77-1+b1 | - +- amd64 | libdevhelp-3-0 | 3.4.1-1 | - +- amd64 | libdevhelp-dev | 3.4.1-1 | - +- amd64 | libdevice-cdio-perl | 0.3.0-1 | - +- amd64 | libdevice-serialport-perl | 1.04-2+b3 | - +- amd64 | libdevice-usb-pcsensor-hidtemper-perl | 0.0201-2 | - +- amd64 | libdevice-usb-perl | 0.35-2+b1 | - +- amd64 | libdevil-dev | 1.7.8-6.1+b1 | - +- amd64 | libdevil1c2 | 1.7.8-6.1+b1 | - +- amd64 | libdevmapper-dev | 2:1.02.74-8 | - +- amd64 | libdevmapper-event1.02.1 | 2:1.02.74-8 | - +- amd64 | libdevmapper1.02.1 | 2:1.02.74-8 | - +- amd64 | libdhash-dev | 0.1.3-2 | - +- amd64 | libdhash1 | 0.1.3-2 | - +- amd64 | libdiagnostics-dev | 0.3.3-1.3 | - +- amd64 | libdiagnostics0 | 0.3.3-1.3 | - +- amd64 | libdianewcanvas2 | 0.6.10-5.4 | - +- amd64 | libdianewcanvas2-dev | 0.6.10-5.4 | - +- amd64 | libdico1 | 2.1-3+b2 | - +- amd64 | libdieharder-dev | 3.31.1-4 | - +- amd64 | libdieharder3 | 3.31.1-4 | - +- amd64 | libdiet-admin2.8 | 2.8.0-1+b1 | - +- amd64 | libdiet-admin2.8-dev | 2.8.0-1+b1 | - +- amd64 | libdiet-client2.8 | 2.8.0-1+b1 | - +- amd64 | libdiet-client2.8-dev | 2.8.0-1+b1 | - +- amd64 | libdiet-dagda2.8 | 2.8.0-1+b1 | - +- amd64 | libdiet-dagda2.8-dev | 2.8.0-1+b1 | - +- amd64 | libdiet-sed2.8 | 2.8.0-1+b1 | - +- amd64 | libdiet-sed2.8-dev | 2.8.0-1+b1 | - +- amd64 | libdigest-crc-perl | 0.18-1+b1 | - +- amd64 | libdigest-jhash-perl | 0.06-1+b2 | - +- amd64 | libdigest-md2-perl | 2.03+dfsg-1+b2 | - +- amd64 | libdigest-md4-perl | 1.5.dfsg-2+b2 | - +- amd64 | libdigest-sha-perl | 5.71-2+deb7u1 | - +- amd64 | libdigest-whirlpool-perl | 1.09-1 | - +- amd64 | libdime | 0.20030921-2 | - +- amd64 | libdirac-decoder0 | 1.0.2-6 | - +- amd64 | libdirac-dev | 1.0.2-6 | - +- amd64 | libdirac-encoder0 | 1.0.2-6 | - +- amd64 | libdirectfb-1.2-9 | 1.2.10.0-5 | - +- amd64 | libdirectfb-1.2-9-dbg | 1.2.10.0-5 | - +- amd64 | libdirectfb-bin | 1.2.10.0-5 | - +- amd64 | libdirectfb-bin-dbg | 1.2.10.0-5 | - +- amd64 | libdirectfb-dev | 1.2.10.0-5 | - +- amd64 | libdirectfb-extra | 1.2.10.0-5 | - +- amd64 | libdirectfb-extra-dbg | 1.2.10.0-5 | - +- amd64 | libdisasm-dev | 0.23-5 | - +- amd64 | libdisasm0 | 0.23-5 | - +- amd64 | libdiscid0 | 0.2.2-3 | - +- amd64 | libdiscid0-dev | 0.2.2-3 | - +- amd64 | libdiscover-dev | 2.1.2-5.2 | - +- amd64 | libdiscover2 | 2.1.2-5.2 | - +- amd64 | libdispatch-dev | 0~svn197-3.1 | - +- amd64 | libdispatch0 | 0~svn197-3.1 | - +- amd64 | libdisplaymigration0 | 0.28-10 | - +- amd64 | libdisplaymigration0-dbg | 0.28-10 | - +- amd64 | libdisplaymigration0-dev | 0.28-10 | - +- amd64 | libdistorm64-1 | 1.7.30-1 | - +- amd64 | libdistorm64-dev | 1.7.30-1 | - +- amd64 | libdivecomputer-dev | 0.1.0-3 | - +- amd64 | libdivecomputer0 | 0.1.0-3 | - +- amd64 | libdjconsole-dev | 0.1.3-1 | - +- amd64 | libdjconsole0 | 0.1.3-1 | - +- amd64 | libdjvulibre-dev | 3.5.25.3-1 | - +- amd64 | libdjvulibre21 | 3.5.25.3-1 | - +- amd64 | libdkim-dev | 1:1.0.21-3 | - +- amd64 | libdkim1d | 1:1.0.21-3 | - +- amd64 | libdkim1d-dbg | 1:1.0.21-3 | - +- amd64 | libdlm-dev | 3.0.12-3.2+deb7u2 | - +- amd64 | libdlm3 | 3.0.12-3.2+deb7u2 | - +- amd64 | libdlmcontrol-dev | 3.0.12-3.2+deb7u2 | - +- amd64 | libdlmcontrol3 | 3.0.12-3.2+deb7u2 | - +- amd64 | libdlrestrictions-dev | 0.15.3 | - +- amd64 | libdlrestrictions1 | 0.15.3 | - +- amd64 | libdm0 | 2.2.10-1 | - +- amd64 | libdm0-dev | 2.2.10-1 | - +- amd64 | libdmalloc-dev | 5.5.2-5 | - +- amd64 | libdmalloc5 | 5.5.2-5 | - +- amd64 | libdmapsharing-3.0-2 | 2.9.15-1 | - +- amd64 | libdmapsharing-3.0-dev | 2.9.15-1 | - +- amd64 | libdmraid-dev | 1.0.0.rc16-4.2 | - +- amd64 | libdmraid1.0.0.rc16 | 1.0.0.rc16-4.2 | - +- amd64 | libdmtcpaware-dev | 1.2.5-1 | - +- amd64 | libdmtcpaware1 | 1.2.5-1 | - +- amd64 | libdmtx-dev | 0.7.2-2+build1 | - +- amd64 | libdmtx-utils | 0.7.2-2+build1 | - +- amd64 | libdmtx0a | 0.7.2-2+build1 | - +- amd64 | libdmx-dev | 1:1.1.2-1+deb7u1 | - +- amd64 | libdmx1 | 1:1.1.2-1+deb7u1 | - +- amd64 | libdmx1-dbg | 1:1.1.2-1+deb7u1 | - +- amd64 | libdnet | 2.60 | - +- amd64 | libdnet-dev | 2.60 | - +- amd64 | libdns88 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | libdockapp-dev | 1:0.5.0-3 | - +- amd64 | libdockapp2 | 1:0.5.0-3 | - +- amd64 | libdolfin1.0 | 1.0.0-7 | - +- amd64 | libdolfin1.0-dbg | 1.0.0-7 | - +- amd64 | libdolfin1.0-dev | 1.0.0-7 | - +- amd64 | libdoodle-dev | 0.7.0-5 | - +- amd64 | libdoodle1 | 0.7.0-5 | - +- amd64 | libdose2-ocaml | 1.4.2-4+b3 | - +- amd64 | libdose2-ocaml-dev | 1.4.2-4+b3 | - +- amd64 | libdose3-ocaml | 3.0.2-3 | - +- amd64 | libdose3-ocaml-dev | 3.0.2-3 | - +- amd64 | libdotconf-dev | 1.0.13-3 | - +- amd64 | libdotconf1.0 | 1.0.13-3 | - +- amd64 | libdpkg-dev | 1.16.12 | - +- amd64 | libdpm-dev | 1.8.2-1+b2 | - +- amd64 | libdpm-perl | 1.8.2-1+b2 | - +- amd64 | libdpm1 | 1.8.2-1+b2 | - +- amd64 | libdr-tarantool-perl | 0.15-1+deb70u1 | - +- amd64 | libdrawtk-dev | 2.0-2 | - +- amd64 | libdrawtk0 | 2.0-2 | - +- amd64 | libdrawtk0-dbg | 2.0-2 | - +- amd64 | libdrizzle-dbg | 1:7.1.36-stable-1 | - +- amd64 | libdrizzle4 | 1:7.1.36-stable-1 | - +- amd64 | libdrizzledmessage-dev | 1:7.1.36-stable-1 | - +- amd64 | libdrizzledmessage0 | 1:7.1.36-stable-1 | - +- amd64 | libdrm-dev | 2.4.40-1~deb7u2 | - +- amd64 | libdrm-intel1 | 2.4.40-1~deb7u2 | - +- amd64 | libdrm-intel1-dbg | 2.4.40-1~deb7u2 | - +- amd64 | libdrm-nouveau1a | 2.4.40-1~deb7u2 | - +- amd64 | libdrm-nouveau1a-dbg | 2.4.40-1~deb7u2 | - +- amd64 | libdrm-radeon1 | 2.4.40-1~deb7u2 | - +- amd64 | libdrm-radeon1-dbg | 2.4.40-1~deb7u2 | - +- amd64 | libdrm2 | 2.4.40-1~deb7u2 | - +- amd64 | libdrm2-dbg | 2.4.40-1~deb7u2 | - +- amd64 | libdrmaa-java | 6.2u5-7.1 | - +- amd64 | libdrumstick-dbg | 0.5.0-3 | - +- amd64 | libdrumstick-dev | 0.5.0-3 | - +- amd64 | libdrumstick0 | 0.5.0-3 | - +- amd64 | libdsdp-5.8gf | 5.8-9.1 | - +- amd64 | libdsdp-dev | 5.8-9.1 | - +- amd64 | libdshconfig1 | 0.20.13-1 | - +- amd64 | libdshconfig1-dev | 0.20.13-1 | - +- amd64 | libdsocksd0 | 1.1.19.dfsg-3+b3 | - +- amd64 | libdspam7 | 3.10.1+dfsg-11 | - +- amd64 | libdspam7-dbg | 3.10.1+dfsg-11 | - +- amd64 | libdspam7-dev | 3.10.1+dfsg-11 | - +- amd64 | libdspam7-drv-hash | 3.10.1+dfsg-11 | - +- amd64 | libdspam7-drv-mysql | 3.10.1+dfsg-11 | - +- amd64 | libdspam7-drv-pgsql | 3.10.1+dfsg-11 | - +- amd64 | libdspam7-drv-sqlite3 | 3.10.1+dfsg-11 | - +- amd64 | libdssi-ocaml | 0.1.0-1+b1 | - +- amd64 | libdssi-ocaml-dev | 0.1.0-1+b1 | - +- amd64 | libdssialsacompat-dev | 1.0.8a-1 | - +- amd64 | libdssialsacompat0 | 1.0.8a-1 | - +- amd64 | libdtools-ocaml-dev | 0.3.0-1 | - +- amd64 | libdts-dev | 0.0.5-5 | - +- amd64 | libdumb1 | 1:0.9.3-5.4 | - +- amd64 | libdumb1-dev | 1:0.9.3-5.4 | - +- amd64 | libdumbnet-dev | 1.12-3.1 | - +- amd64 | libdumbnet1 | 1.12-3.1 | - +- amd64 | libdune-common-2.2.0 | 2.2.0-1 | - +- amd64 | libdune-common-dbg | 2.2.0-1 | - +- amd64 | libdune-common-dev | 2.2.0-1 | - +- amd64 | libdune-geometry-2.2.0 | 2.2.0-1 | - +- amd64 | libdune-geometry-dbg | 2.2.0-1 | - +- amd64 | libdune-geometry-dev | 2.2.0-1 | - +- amd64 | libdune-grid-2.2.0 | 2.2.0-1 | - +- amd64 | libdune-grid-dbg | 2.2.0-1 | - +- amd64 | libdune-grid-dev | 2.2.0-1 | - +- amd64 | libduo-dev | 1.8-1 | - +- amd64 | libduo3 | 1.8-1 | - +- amd64 | libduppy-ocaml | 0.4.2-1+b2 | - +- amd64 | libduppy-ocaml-dev | 0.4.2-1+b2 | - +- amd64 | libdv-bin | 1.0.0-6 | - +- amd64 | libdv4 | 1.0.0-6 | - +- amd64 | libdv4-dev | 1.0.0-6 | - +- amd64 | libdvb-dev | 0.5.5.1-5.1 | - +- amd64 | libdvbcsa-dev | 1.1.0-2 | - +- amd64 | libdvbcsa1 | 1.1.0-2 | - +- amd64 | libdvbpsi-dev | 0.2.2-1 | - +- amd64 | libdvbpsi7 | 0.2.2-1 | - +- amd64 | libdvdnav-dbg | 4.2.0+20120524-2 | - +- amd64 | libdvdnav-dev | 4.2.0+20120524-2 | - +- amd64 | libdvdnav4 | 4.2.0+20120524-2 | - +- amd64 | libdvdread-dbg | 4.2.0+20120521-2 | - +- amd64 | libdvdread-dev | 4.2.0+20120521-2 | - +- amd64 | libdvdread4 | 4.2.0+20120521-2 | - +- amd64 | libdw-dev | 0.152-1+wheezy1 | - +- amd64 | libdw1 | 0.152-1+wheezy1 | - +- amd64 | libdwarf-dev | 20120410-2 | - +- amd64 | libdx4 | 1:4.4.4-4+b2 | - +- amd64 | libdx4-dev | 1:4.4.4-4+b2 | - +- amd64 | libdxflib-2.2.0.0 | 2.2.0.0-8 | - +- amd64 | libdxflib-2.2.0.0-dbg | 2.2.0.0-8 | - +- amd64 | libdxflib-dev | 2.2.0.0-8 | - +- amd64 | libdynalogin-1-0 | 0.9.14-2 | - +- amd64 | libdynamite-dev | 0.1.1-2 | - +- amd64 | libdynamite0 | 0.1.1-2 | - +- amd64 | libeasy-format-ocaml | 1.0.0-1+b2 | - +- amd64 | libeasy-format-ocaml-dev | 1.0.0-1+b2 | - +- amd64 | libeb16 | 4.4.3-6 | - +- amd64 | libeb16-dev | 4.4.3-6 | - +- amd64 | libebackend-1.2-2 | 3.4.4-3 | - +- amd64 | libebackend1.2-dev | 3.4.4-3 | - +- amd64 | libebml-dev | 1.2.2-2 | - +- amd64 | libebml3 | 1.2.2-2 | - +- amd64 | libebook-1.2-13 | 3.4.4-3 | - +- amd64 | libebook-tools-perl | 0.4.9-1 | - +- amd64 | libebook1.2-dev | 3.4.4-3 | - +- amd64 | libecal-1.2-11 | 3.4.4-3 | - +- amd64 | libecal1.2-dev | 3.4.4-3 | - +- amd64 | libecasoundc-dev | 2.9.0-1 | - +- amd64 | libecasoundc1 | 2.9.0-1 | - +- amd64 | libechonest-dbg | 1.2.1-1 | - +- amd64 | libechonest-dev | 1.2.1-1 | - +- amd64 | libechonest1.2 | 1.2.1-1 | - +- amd64 | libecj-java-gcj | 3.5.1-3 | - +- amd64 | libecm-dev | 6.4.2-1 | - +- amd64 | libecm0 | 6.4.2-1 | - +- amd64 | libecore-con1 | 1.2.0-2 | - +- amd64 | libecore-dbg | 1.2.0-2 | - +- amd64 | libecore-dev | 1.2.0-2 | - +- amd64 | libecore-evas1 | 1.2.0-2 | - +- amd64 | libecore-fb1 | 1.2.0-2 | - +- amd64 | libecore-file1 | 1.2.0-2 | - +- amd64 | libecore-imf1 | 1.2.0-2 | - +- amd64 | libecore-input1 | 1.2.0-2 | - +- amd64 | libecore-ipc1 | 1.2.0-2 | - +- amd64 | libecore-x1 | 1.2.0-2 | - +- amd64 | libecore1 | 1.2.0-2 | - +- amd64 | libecpg-compat3 | 9.1.11-0wheezy1 | - +- amd64 | libecpg-dev | 9.1.11-0wheezy1 | - +- amd64 | libecpg6 | 9.1.11-0wheezy1 | - +- amd64 | libecryptfs-dev | 99-1 | - +- amd64 | libecryptfs0 | 99-1 | - +- amd64 | libedac-dev | 0.18-1 | - +- amd64 | libedac1 | 0.18-1 | - +- amd64 | libedac1-dbg | 0.18-1 | - +- amd64 | libedata-book-1.2-13 | 3.4.4-3 | - +- amd64 | libedata-book1.2-dev | 3.4.4-3 | - +- amd64 | libedata-cal-1.2-15 | 3.4.4-3 | - +- amd64 | libedata-cal1.2-dev | 3.4.4-3 | - +- amd64 | libedataserver-1.2-16 | 3.4.4-3 | - +- amd64 | libedataserver1.2-dev | 3.4.4-3 | - +- amd64 | libedataserverui-3.0-1 | 3.4.4-3 | - +- amd64 | libedataserverui-3.0-dev | 3.4.4-3 | - +- amd64 | libedbus-dev | 1.2.0-1 | - +- amd64 | libedbus1 | 1.2.0-1 | - +- amd64 | libedit-dev | 2.11-20080614-5 | - +- amd64 | libedit2 | 2.11-20080614-5 | - +- amd64 | libeditline-dev | 1.12-6 | - +- amd64 | libeditline0 | 1.12-6 | - +- amd64 | libedje-bin | 1.2.0-1 | - +- amd64 | libedje-dbg | 1.2.0-1 | - +- amd64 | libedje-dev | 1.2.0-1 | - +- amd64 | libedje1 | 1.2.0-1 | - +- amd64 | libee-dev | 0.4.1-1 | - +- amd64 | libee0 | 0.4.1-1 | - +- amd64 | libeegdev-dev | 0.2-3 | - +- amd64 | libeegdev0 | 0.2-3 | - +- amd64 | libeegdev0-dbg | 0.2-3 | - +- amd64 | libeet-bin | 1.6.0-1 | - +- amd64 | libeet-dbg | 1.6.0-1 | - +- amd64 | libeet-dev | 1.6.0-1 | - +- amd64 | libeet1 | 1.6.0-1 | - +- amd64 | libefreet-dev | 1.2.0-1 | - +- amd64 | libefreet1 | 1.2.0-1 | - +- amd64 | libegl1-mesa | 8.0.5-4+deb7u2 | - +- amd64 | libegl1-mesa-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libegl1-mesa-dev | 8.0.5-4+deb7u2 | - +- amd64 | libegl1-mesa-drivers | 8.0.5-4+deb7u2 | - +- amd64 | libegl1-mesa-drivers-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libeigen2-dev | 2.0.17-1 | - +- amd64 | libeigen3-dev | 3.1.0-1 | - +- amd64 | libeina-dbg | 1.2.0-2 | - +- amd64 | libeina-dev | 1.2.0-2 | - +- amd64 | libeina1 | 1.2.0-2 | - ++ amd64 | libeiskaltdcpp-dev | - | 2.2.9-3~bpo70+1 +! amd64 | libeiskaltdcpp2.2 | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | libeiskaltdcpp2.2-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +- amd64 | libelektra-cpp-dev | 0.7.1-1 | - +- amd64 | libelektra-cpp0 | 0.7.1-1 | - +- amd64 | libelektra-dev | 0.7.1-1 | - +- amd64 | libelektra3 | 0.7.1-1 | - +- amd64 | libelektratools-dev | 0.7.1-1 | - +- amd64 | libelektratools2 | 0.7.1-1 | - +- amd64 | libelemental-dev | 1.2.0-8 | - +- amd64 | libelemental0 | 1.2.0-8 | - +- amd64 | libelementary-bin | 0.7.0.55225-1 | - +- amd64 | libelementary-dbg | 0.7.0.55225-1 | - +- amd64 | libelementary-dev | 0.7.0.55225-1 | - +- amd64 | libelementary-svn-09 | 0.7.0.55225-1 | - +- amd64 | libelf-dev | 0.152-1+wheezy1 | - +- amd64 | libelf1 | 0.152-1+wheezy1 | - +- amd64 | libelfg0 | 0.8.13-3 | - +- amd64 | libelfg0-dev | 0.8.13-3 | - +- amd64 | libeliom-ocaml | 2.2.2-1 | - +- amd64 | libeliom-ocaml-dev | 2.2.2-1 | - +- amd64 | libelk0 | 3.99.8-2 | - +- amd64 | libelk0-dev | 3.99.8-2 | - +- amd64 | libelmer-dev | 6.1.0.svn.5396.dfsg2-2 | - +- amd64 | libelmersolver-6.1 | 6.1.0.svn.5396.dfsg2-2 | - +- amd64 | libelmersolver-dbg | 6.1.0.svn.5396.dfsg2-2 | - ++ amd64 | libembperl-perl | - | 2.5.0~rc3-1~bpo70+1 +- amd64 | libembryo-bin | 1.2.0-1 | - +- amd64 | libembryo-dbg | 1.2.0-1 | - +- amd64 | libembryo-dev | 1.2.0-1 | - +- amd64 | libembryo1 | 1.2.0-1 | - +- amd64 | libemos-data | 000382+dfsg-2 | - +- amd64 | libemos-dev | 000382+dfsg-2 | - +- amd64 | libemos0d | 000382+dfsg-2 | - +- amd64 | libenca-dbg | 1.13-4 | - +- amd64 | libenca-dev | 1.13-4 | - +- amd64 | libenca0 | 1.13-4 | - +- amd64 | libenchant-dev | 1.6.0-7 | - +- amd64 | libenchant-voikko | 1.6.0-7 | - +- amd64 | libenchant1c2a | 1.6.0-7 | - +- amd64 | libencode-detect-perl | 1.01-2+b2 | - +- amd64 | libencode-eucjpms-perl | 0.07-3 | - +- amd64 | libencode-hanextra-perl | 0.23-2+b2 | - +- amd64 | libencode-jis2k-perl | 0.02-1+b2 | - +- amd64 | libencode-perl | 2.44-1+deb7u1 | - +- amd64 | libenet-dev | 1.3.3-2 | - +- amd64 | libenet1a | 1.3.3-2 | - +- amd64 | libenet1a-dbg | 1.3.3-2 | - +- amd64 | libengine-pkcs11-openssl | 0.1.8-2+b2 | - +- amd64 | libepc-1.0-3 | 0.4.4-1 | - +- amd64 | libepc-dev | 0.4.4-1 | - +- amd64 | libepc-ui-1.0-3 | 0.4.4-1 | - +- amd64 | libepc-ui-dev | 0.4.4-1 | - +- amd64 | libepr-api2 | 2.2-2 | - +- amd64 | libepsilon-dev | 0.9.1-2 | - +- amd64 | libepsilon0 | 0.9.1-2 | - +- amd64 | libept-dev | 1.0.9 | - +- amd64 | libept1.4.12 | 1.0.9 | - +- amd64 | libepub-dev | 0.2.1-2+b1 | - +- amd64 | libepub0 | 0.2.1-2+b1 | - +- amd64 | liberis-1.3-19 | 1.3.19-5 | - +- amd64 | liberis-1.3-19-dbg | 1.3.19-5 | - +- amd64 | liberis-1.3-dev | 1.3.19-5 | - +- amd64 | liberuby | 1.0.5-2.1 | - +- amd64 | liberuby-dev | 1.0.5-2.1 | - +- amd64 | libescpr-dev | 1.1.1-2 | - +- amd64 | libescpr1 | 1.1.1-2 | - +- amd64 | libesd0 | 0.2.41-10+b1 | - +- amd64 | libesd0-dev | 0.2.41-10+b1 | - +- amd64 | libesmtp-dev | 1.0.6-1+b1 | - +- amd64 | libesmtp6 | 1.0.6-1+b1 | - +- amd64 | libespeak-dev | 1.46.02-2 | - +- amd64 | libespeak1 | 1.46.02-2 | - +- amd64 | libestools2.1 | 1:2.1~release-5 | - +- amd64 | libestools2.1-dev | 1:2.1~release-5 | - +! amd64 | libestr-dev | 0.1.1-2 | 0.1.9-1~bpo70+1 +! amd64 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +- amd64 | libethos-1.0-0 | 0.2.2-3 | - +- amd64 | libethos-dev | 0.2.2-3 | - +- amd64 | libethos-ui-1.0-0 | 0.2.2-3 | - +- amd64 | libethos-ui-dev | 0.2.2-3 | - +- amd64 | libetpan-dbg | 1.0-5 | - +- amd64 | libetpan-dev | 1.0-5 | - +- amd64 | libetpan15 | 1.0-5 | - +- amd64 | libetsf-io-dev | 1.0.3-4+b1 | - +- amd64 | libeurodec1-dev | 20061220+dfsg3-2 | - +- amd64 | libeurodec1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libev-dev | 1:4.11-1 | - +- amd64 | libev-perl | 4.11-2 | - +- amd64 | libev4 | 1:4.11-1 | - +- amd64 | libeval0 | 0.29.6-2 | - +- amd64 | libeval0-dev | 0.29.6-2 | - +- amd64 | libevas-dbg | 1.2.0-2 | - +- amd64 | libevas-dev | 1.2.0-2 | - +- amd64 | libevas1 | 1.2.0-2 | - +- amd64 | libevas1-engine-fb | 1.2.0-2 | - +- amd64 | libevas1-engines-core | 1.2.0-2 | - +- amd64 | libevas1-engines-x | 1.2.0-2 | - +- amd64 | libevd-0.1-0 | 0.1.20-2 | - +- amd64 | libevd-0.1-dev | 0.1.20-2 | - +- amd64 | libevdocument3-4 | 3.4.0-3.1 | - +- amd64 | libevent-2.0-5 | 2.0.19-stable-3 | - +- amd64 | libevent-core-2.0-5 | 2.0.19-stable-3 | - +- amd64 | libevent-dbg | 2.0.19-stable-3 | - +- amd64 | libevent-dev | 2.0.19-stable-3 | - +- amd64 | libevent-extra-2.0-5 | 2.0.19-stable-3 | - +- amd64 | libevent-openssl-2.0-5 | 2.0.19-stable-3 | - +- amd64 | libevent-perl | 1.15-1+b1 | - +- amd64 | libevent-pthreads-2.0-5 | 2.0.19-stable-3 | - +- amd64 | libeventdb-dev | 0.90-5 | - +- amd64 | libeventdb2 | 0.90-5 | - +- amd64 | libeventdb2-dbg | 0.90-5 | - +- amd64 | libevince-dev | 3.4.0-3.1 | - +- amd64 | libevocosm-4.0-4 | 4.0.2-2.1 | - +- amd64 | libevocosm-dev | 4.0.2-2.1 | - +- amd64 | libevolution | 3.4.4-3 | - +- amd64 | libevs-dev | 1.4.2-3 | - +- amd64 | libevs4 | 1.4.2-3 | - +- amd64 | libevtlog-dev | 0.2.12-5 | - +- amd64 | libevtlog0 | 0.2.12-5 | - +- amd64 | libevtlog0-dbg | 0.2.12-5 | - +- amd64 | libevview3-3 | 3.4.0-3.1 | - +- amd64 | libewf-dbg | 20100226-1+b1 | - +- amd64 | libewf-dev | 20100226-1+b1 | - +- amd64 | libewf1 | 20100226-1+b1 | - +- amd64 | libexactimage-perl | 0.8.5-5+deb7u3 | - +- amd64 | libexchangemapi-1.0-0 | 3.4.4-1 | - +- amd64 | libexchangemapi-1.0-dev | 3.4.4-1 | - +- amd64 | libexempi-dev | 2.2.0-1 | - +- amd64 | libexempi3 | 2.2.0-1 | - +- amd64 | libexempi3-dbg | 2.2.0-1 | - +- amd64 | libexene-smlnj | 110.74-2 | - +- amd64 | libexif-dev | 0.6.20-3 | - +- amd64 | libexif-gtk-dev | 0.3.5-5 | - +- amd64 | libexif-gtk5 | 0.3.5-5 | - +- amd64 | libexif12 | 0.6.20-3 | - +- amd64 | libexiv2-12 | 0.23-1 | - +- amd64 | libexiv2-dbg | 0.23-1 | - +- amd64 | libexiv2-dev | 0.23-1 | - +- amd64 | libexo-1-0 | 0.6.2-5 | - +- amd64 | libexo-1-0-dbg | 0.6.2-5 | - +- amd64 | libexo-1-dev | 0.6.2-5 | - +- amd64 | libexo-helpers | 0.6.2-5 | - +- amd64 | libexodusii-dev | 5.14.dfsg.1-2+b1 | - +- amd64 | libexodusii5 | 5.14.dfsg.1-2+b1 | - +- amd64 | libexosip2-7 | 3.6.0-4 | - +- amd64 | libexosip2-dev | 3.6.0-4 | - +- amd64 | libexpat-gst | 3.2.4-2 | - +- amd64 | libexpat-ocaml | 0.9.1+debian1-7+b2 | - +- amd64 | libexpat-ocaml-dev | 0.9.1+debian1-7+b2 | - +- amd64 | libexpat1 | 2.1.0-1+deb7u1 | - +- amd64 | libexpat1-dev | 2.1.0-1+deb7u1 | - +- amd64 | libexpect-ocaml | 0.0.2-1+b6 | - +- amd64 | libexpect-ocaml-dev | 0.0.2-1+b6 | - +- amd64 | libexpect-php5 | 0.3.1-1+b1 | - +- amd64 | libexplain-dev | 0.52.D002-1 | - +- amd64 | libexplain30 | 0.52.D002-1 | - +- amd64 | libexplain30-dbg | 0.52.D002-1 | - +- amd64 | libextlib-ocaml | 1.5.2-1+b1 | - +- amd64 | libextlib-ocaml-dev | 1.5.2-1+b1 | - +- amd64 | libextractor-dbg | 1:0.6.3-5 | - +- amd64 | libextractor-dev | 1:0.6.3-5 | - +- amd64 | libextractor-java-dbg | 0.6.0-6 | - +- amd64 | libextractor-java-dev | 0.6.0-6 | - +- amd64 | libextractor-java0 | 0.6.0-6 | - +- amd64 | libextractor-plugins | 1:0.6.3-5 | - +- amd64 | libextractor3 | 1:0.6.3-5 | - +- amd64 | libexttextcat-dev | 3.2.0-2 | - +- amd64 | libexttextcat0 | 3.2.0-2 | - +- amd64 | libextunix-ocaml | 0.0.5-2 | - +- amd64 | libextunix-ocaml-dev | 0.0.5-2 | - +- amd64 | libeztrace-dev | 0.7-2-4 | - +- amd64 | libeztrace0 | 0.7-2-4 | - +- amd64 | libf2c2 | 20090411-2 | - +- amd64 | libf2c2-dev | 20090411-2 | - +- amd64 | libf95getdata2 | 0.7.3-6 | - +- amd64 | libfaad-dev | 2.7-8 | - +- amd64 | libfaad-ocaml | 0.3.0-1+b1 | - +- amd64 | libfaad-ocaml-dev | 0.3.0-1+b1 | - +- amd64 | libfaad2 | 2.7-8 | - +- amd64 | libfacile-ocaml-dev | 1.1-8+b1 | - +- amd64 | libfaifa-dev | 0.2~svn82-1 | - +- amd64 | libfaifa0 | 0.2~svn82-1 | - +- amd64 | libfakechroot | 2.16-1 | - +- amd64 | libfakekey-dev | 0.1-7 | - +- amd64 | libfakekey0 | 0.1-7 | - +- amd64 | libfalcon-engine1 | 0.9.6.9-git20120606-2 | - +- amd64 | libfalcon-engine1-dbg | 0.9.6.9-git20120606-2 | - +- amd64 | libfam-dev | 2.7.0-17 | - +- amd64 | libfam-ruby | 0.2.0-2.1 | - +- amd64 | libfam0 | 2.7.0-17 | - +- amd64 | libfann-dbg | 2.1.0~beta~dfsg-8 | - +- amd64 | libfann-dev | 2.1.0~beta~dfsg-8 | - +- amd64 | libfann2 | 2.1.0~beta~dfsg-8 | - +- amd64 | libfarstream-0.1-0 | 0.1.2-1 | - +- amd64 | libfarstream-0.1-dbg | 0.1.2-1 | - +- amd64 | libfarstream-0.1-dev | 0.1.2-1 | - +- amd64 | libfastjet-dev | 3.0.2+dfsg-2 | - +- amd64 | libfastjet-fortran-dev | 3.0.2+dfsg-2 | - +- amd64 | libfastjet-fortran0 | 3.0.2+dfsg-2 | - +- amd64 | libfastjet0 | 3.0.2+dfsg-2 | - +- amd64 | libfastjetplugins-dev | 3.0.2+dfsg-2 | - +- amd64 | libfastjetplugins0 | 3.0.2+dfsg-2 | - +- amd64 | libfastjettools-dev | 3.0.2+dfsg-2 | - +- amd64 | libfastjettools0 | 3.0.2+dfsg-2 | - +- amd64 | libfauhdli-dev | 20110812-1 | - +- amd64 | libfbclient2 | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | libfbclient2-dbg | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | libfbembed2.5 | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | libfcgi-dev | 2.4.0-8.1 | - +- amd64 | libfcgi-perl | 0.74-1+b1 | - +- amd64 | libfcgi-ruby1.8 | 0.8.8-1 | - +- amd64 | libfcgi-ruby1.9.1 | 0.8.8-1 | - +- amd64 | libfcgi0ldbl | 2.4.0-8.1 | - +- amd64 | libfdt-dev | 1.3.0-4 | - +- amd64 | libfdt1 | 1.3.0-4 | - +- amd64 | libfence-dev | 3.0.12-3.2+deb7u2 | - +- amd64 | libfence4 | 3.0.12-3.2+deb7u2 | - +- amd64 | libffado-dev | 2.0.99+svn2171-2 | - +- amd64 | libffado2 | 2.0.99+svn2171-2 | - +- amd64 | libffcall1 | 1.10+cvs20100619-2 | - +- amd64 | libffcall1-dev | 1.10+cvs20100619-2 | - +- amd64 | libffi-dev | 3.0.10-3 | - +- amd64 | libffi5 | 3.0.10-3 | - +- amd64 | libffi5-dbg | 3.0.10-3 | - +- amd64 | libffindex0 | 0.9.6.1-1 | - +- amd64 | libffindex0-dev | 0.9.6.1-1 | - +- amd64 | libffmpegthumbnailer-dev | 2.0.7-2 | - +- amd64 | libffmpegthumbnailer4 | 2.0.7-2 | - +- amd64 | libffms2-2 | 2.17-1 | - +- amd64 | libffms2-dev | 2.17-1 | - +- amd64 | libfftw3-3 | 3.3.2-3.1 | - +- amd64 | libfftw3-bin | 3.3.2-3.1 | - +- amd64 | libfftw3-dbg | 3.3.2-3.1 | - +- amd64 | libfftw3-dev | 3.3.2-3.1 | - +- amd64 | libfftw3-mpi-dev | 3.3.2-3.1 | - +- amd64 | libfftw3-mpi3 | 3.3.2-3.1 | - +- amd64 | libfgetdata2 | 0.7.3-6 | - ++ amd64 | libfglrx | - | 1:13.12-4~bpo70+1 ++ amd64 | libfglrx-amdxvba1 | - | 1:13.12-4~bpo70+1 ++ amd64 | libfglrx-legacy | - | 8.97.100.7-3~bpo70+1 ++ amd64 | libfglrx-legacy-amdxvba1 | - | 8.97.100.7-3~bpo70+1 +- amd64 | libfields-camlp4-dev | 107.01-1+b2 | - +- amd64 | libfile-fcntllock-perl | 0.14-2 | - +- amd64 | libfile-fnmatch-perl | 0.02-1+b2 | - +- amd64 | libfile-libmagic-perl | 0.96-2 | - +- amd64 | libfile-mmagic-xs-perl | 0.09006-4 | - +- amd64 | libfile-rsyncp-perl | 0.70-1 | - +- amd64 | libfile-spec-perl | 3.3300-1+b2 | - +- amd64 | libfile-sync-perl | 0.11-1 | - +- amd64 | libfilehandle-fmode-perl | 0.11-1+b2 | - +- amd64 | libfilesys-df-perl | 0.92-4+b1 | - +- amd64 | libfilesys-smbclient-perl | 3.1-3+b3 | - +- amd64 | libfilesys-statvfs-perl | 0.82-2+b1 | - +- amd64 | libfilesystem-ruby1.8 | 0.5-3.1 | - +- amd64 | libfilesystem-ruby1.9.1 | 0.5-3.1 | - +- amd64 | libfileutils-ocaml-dev | 0.4.2-1+b2 | - +- amd64 | libfilter-perl | 1.45-1 | - +- amd64 | libfindlib-ocaml | 1.3.1-1 | - +- amd64 | libfindlib-ocaml-dev | 1.3.1-1 | - +- amd64 | libfiredns-dev | 0.9.12+dfsg-3 | - +- amd64 | libfiredns0.9 | 0.9.12+dfsg-3 | - +- amd64 | libfirestring-dev | 0.9.12-8 | - +- amd64 | libfirestring0.9 | 0.9.12-8 | - +- amd64 | libfishsound1 | 1.0.0-1.1 | - +- amd64 | libfishsound1-dbg | 1.0.0-1.1 | - +- amd64 | libfishsound1-dev | 1.0.0-1.1 | - +- amd64 | libfiu-dev | 0.90-3 | - +- amd64 | libfiu0 | 0.90-3 | - +- amd64 | libfixposix-dev | 20110316.git47f17f7-1 | - +- amd64 | libfixposix0 | 20110316.git47f17f7-1 | - ++ amd64 | libfko-perl | - | 2.5.1-1~bpo70+1 ++ amd64 | libfko-python | - | 2.5.1-1~bpo70+1 +- amd64 | libfko0 | 2.0.0rc2-2+deb7u2 | - +- amd64 | libfko0-dbg | 2.0.0rc2-2+deb7u2 | - +- amd64 | libfko0-dev | 2.0.0rc2-2+deb7u2 | - ++ amd64 | libfko2 | - | 2.5.1-1~bpo70+1 ++ amd64 | libfko2-dbg | - | 2.5.1-1~bpo70+1 ++ amd64 | libfko2-dev | - | 2.5.1-1~bpo70+1 +- amd64 | libflac++-dev | 1.2.1-6 | - +- amd64 | libflac++6 | 1.2.1-6 | - +- amd64 | libflac-dev | 1.2.1-6 | - +- amd64 | libflac-ocaml | 0.1.1-1 | - +- amd64 | libflac-ocaml-dev | 0.1.1-1 | - +- amd64 | libflac8 | 1.2.1-6 | - +- amd64 | libflake-dev | 0.11-2 | - +- amd64 | libflann-dev | 1.7.1-4 | - +- amd64 | libflann1.7 | 1.7.1-4 | - +- amd64 | libflatzebra-0.1-2 | 0.1.5-4+b1 | - +- amd64 | libflatzebra-dev | 0.1.5-4+b1 | - +- amd64 | libflite1 | 1.4-release-6 | - +- amd64 | libflorist-dbg | 2011-1 | - +- amd64 | libflorist2011 | 2011-1 | - +- amd64 | libflorist2011-dev | 2011-1 | - +- amd64 | libflowcanvas-dev | 0.7.1+dfsg0-0.2 | - +- amd64 | libflowcanvas5 | 0.7.1+dfsg0-0.2 | - +- amd64 | libfltk-cairo1.3 | 1.3.0-8 | - +- amd64 | libfltk-forms1.3 | 1.3.0-8 | - +- amd64 | libfltk-gl1.3 | 1.3.0-8 | - +- amd64 | libfltk-images1.3 | 1.3.0-8 | - +- amd64 | libfltk1.1 | 1.1.10-14 | - +- amd64 | libfltk1.1-dbg | 1.1.10-14 | - +- amd64 | libfltk1.1-dev | 1.1.10-14 | - +- amd64 | libfltk1.3 | 1.3.0-8 | - +- amd64 | libfltk1.3-dbg | 1.3.0-8 | - +- amd64 | libfltk1.3-dev | 1.3.0-8 | - +- amd64 | libfluidsynth-dev | 1.1.5-2 | - +- amd64 | libfluidsynth1 | 1.1.5-2 | - ++ amd64 | libfm-dbg | - | 1.1.2.2-1~bpo70+1 +! amd64 | libfm-dev | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +- amd64 | libfm-gtk-bin | 0.1.17-2.1 | - ++ amd64 | libfm-gtk-dbg | - | 1.1.2.2-1~bpo70+1 ++ amd64 | libfm-gtk-dev | - | 1.1.2.2-1~bpo70+1 +- amd64 | libfm-gtk1 | 0.1.17-2.1 | - ++ amd64 | libfm-gtk3 | - | 1.1.2.2-1~bpo70+1 ++ amd64 | libfm-tools | - | 1.1.2.2-1~bpo70+1 +- amd64 | libfm1 | 0.1.17-2.1 | - +- amd64 | libfm1-dbg | 0.1.17-2.1 | - ++ amd64 | libfm3 | - | 1.1.2.2-1~bpo70+1 +- amd64 | libfolia1 | 0.9-2 | - +- amd64 | libfolia1-dev | 0.9-2 | - +- amd64 | libfolks-dbg | 0.6.9-1+b1 | - +- amd64 | libfolks-dev | 0.6.9-1+b1 | - +- amd64 | libfolks-eds-dbg | 0.6.9-1+b1 | - +- amd64 | libfolks-eds-dev | 0.6.9-1+b1 | - +- amd64 | libfolks-eds25 | 0.6.9-1+b1 | - +- amd64 | libfolks-telepathy-dbg | 0.6.9-1+b1 | - +- amd64 | libfolks-telepathy-dev | 0.6.9-1+b1 | - +- amd64 | libfolks-telepathy25 | 0.6.9-1+b1 | - +- amd64 | libfolks25 | 0.6.9-1+b1 | - +- amd64 | libfont-freetype-perl | 0.03-1+b2 | - +- amd64 | libfontconfig1 | 2.9.0-7.1 | - +- amd64 | libfontconfig1-dbg | 2.9.0-7.1 | - +- amd64 | libfontconfig1-dev | 2.9.0-7.1 | - +- amd64 | libfontenc-dev | 1:1.1.1-1 | - +- amd64 | libfontenc1 | 1:1.1.1-1 | - +- amd64 | libfontenc1-dbg | 1:1.1.1-1 | - +- amd64 | libfontforge-dev | 0.0.20120101+git-2 | - +- amd64 | libfontforge1 | 0.0.20120101+git-2 | - +- amd64 | libforks-perl | 0.34-1+b2 | - +- amd64 | libforms-bin | 1.0.93sp1-2 | - +- amd64 | libforms-dev | 1.0.93sp1-2 | - +- amd64 | libforms2 | 1.0.93sp1-2 | - +- amd64 | libformsgl-dev | 1.0.93sp1-2 | - +- amd64 | libformsgl2 | 1.0.93sp1-2 | - +- amd64 | libfosfat0 | 0.4.0-3 | - +- amd64 | libfosgra0 | 0.4.0-3 | - +- amd64 | libfox-1.6-0 | 1.6.45-1 | - +- amd64 | libfox-1.6-dev | 1.6.45-1 | - +- amd64 | libfprint-dev | 1:0.4.0-4-gdfff16f-4 | - +- amd64 | libfprint0 | 1:0.4.0-4-gdfff16f-4 | - +- amd64 | libfreecell-solver-dev | 3.12.0-1 | - +- amd64 | libfreecell-solver0 | 3.12.0-1 | - +- amd64 | libfreefem++ | 3.19.1-1 | - +- amd64 | libfreefem++-dev | 3.19.1-1 | - +- amd64 | libfreefem-dev | 3.5.8-5 | - +- amd64 | libfreefem0 | 3.5.8-5 | - +- amd64 | libfreehdl0 | 0.0.7-1.1 | - +- amd64 | libfreehdl0-dev | 0.0.7-1.1 | - +- amd64 | libfreeimage-dev | 3.15.1-1+b1 | - +- amd64 | libfreeimage3 | 3.15.1-1+b1 | - +- amd64 | libfreeimage3-dbg | 3.15.1-1+b1 | - +- amd64 | libfreeipmi-dev | 1.1.5-3 | - +- amd64 | libfreeipmi12 | 1.1.5-3 | - +- amd64 | libfreenect-bin | 1:0.1.2+dfsg-6 | - +- amd64 | libfreenect-demos | 1:0.1.2+dfsg-6 | - +- amd64 | libfreenect-dev | 1:0.1.2+dfsg-6 | - +- amd64 | libfreenect0.1 | 1:0.1.2+dfsg-6 | - ++ amd64 | libfreeradius-client-dev | - | 1.1.6-7~bpo70+1 ++ amd64 | libfreeradius-client2 | - | 1.1.6-7~bpo70+1 +- amd64 | libfreeradius-dev | 2.1.12+dfsg-1.2 | - +- amd64 | libfreeradius2 | 2.1.12+dfsg-1.2 | - +- amd64 | libfreerdp-dev | 1.0.1-1.1+deb7u2 | - +- amd64 | libfreerdp-plugins-standard | 1.0.1-1.1+deb7u2 | - +- amd64 | libfreerdp1 | 1.0.1-1.1+deb7u2 | - +- amd64 | libfreetype6 | 2.4.9-1.1 | - +- amd64 | libfreetype6-dev | 2.4.9-1.1 | - +- amd64 | libfreexl-dev | 1.0.0b-1 | - +- amd64 | libfreexl1 | 1.0.0b-1 | - +- amd64 | libfreexl1-dbg | 1.0.0b-1 | - +- amd64 | libfreeze34 | 3.4.2-8.2 | - +- amd64 | libfribidi-bin | 0.19.2-3 | - +- amd64 | libfribidi-dev | 0.19.2-3 | - +- amd64 | libfribidi0 | 0.19.2-3 | - +- amd64 | libfs-dev | 2:1.0.4-1+deb7u1 | - +- amd64 | libfs6 | 2:1.0.4-1+deb7u1 | - +- amd64 | libfs6-dbg | 2:1.0.4-1+deb7u1 | - +- amd64 | libfso-glib-dbg | 2012.05.24.1-1.1 | - +- amd64 | libfso-glib-dev | 2012.05.24.1-1.1 | - +- amd64 | libfso-glib1 | 2012.05.24.1-1.1 | - +- amd64 | libfsobasics-dbg | 0.11.0-1.1 | - +- amd64 | libfsobasics-dev | 0.11.0-1.1 | - +- amd64 | libfsobasics0 | 0.11.0-1.1 | - +- amd64 | libfsoframework-dbg | 0.11.0-1.1 | - +- amd64 | libfsoframework-dev | 0.11.0-1.1 | - +- amd64 | libfsoframework0 | 0.11.0-1.1 | - +- amd64 | libfsoresource-dbg | 0.11.0-1.1 | - +- amd64 | libfsoresource-dev | 0.11.0-1.1 | - +- amd64 | libfsoresource0 | 0.11.0-1.1 | - +- amd64 | libfsosystem-dbg | 0.11.0-1 | - +- amd64 | libfsosystem-dev | 0.11.0-1 | - +- amd64 | libfsosystem0 | 0.11.0-1 | - +- amd64 | libfsotransport-dbg | 0.11.1-2.1 | - +- amd64 | libfsotransport-dev | 0.11.1-2.1 | - +- amd64 | libfsotransport3 | 0.11.1-2.1 | - +- amd64 | libfsplib-dev | 0.11-2 | - +- amd64 | libfsplib0 | 0.11-2 | - +- amd64 | libfstrcmp-dev | 0.4.D001-1+deb7u1 | - +- amd64 | libfstrcmp0 | 0.4.D001-1+deb7u1 | - +- amd64 | libfstrcmp0-dbg | 0.4.D001-1+deb7u1 | - +- amd64 | libftdi-dev | 0.20-1+b1 | - +- amd64 | libftdi1 | 0.20-1+b1 | - +- amd64 | libftdi1-dbg | 0.20-1+b1 | - +- amd64 | libftdipp-dev | 0.20-1+b1 | - +- amd64 | libftdipp1 | 0.20-1+b1 | - +- amd64 | libftdipp1-dbg | 0.20-1+b1 | - +- amd64 | libftgl-dev | 2.1.3~rc5-4 | - +- amd64 | libftgl2 | 2.1.3~rc5-4 | - +- amd64 | libfuntools-dev | 1.4.4-3 | - +- amd64 | libfuntools1 | 1.4.4-3 | - +- amd64 | libfuse-dev | 2.9.0-2+deb7u1 | - +- amd64 | libfuse-perl | 0.15.1-2 | - +- amd64 | libfuse2 | 2.9.0-2+deb7u1 | - +- amd64 | libfuzzy-dev | 2.7-2 | - +- amd64 | libfuzzy2 | 2.7-2 | - +- amd64 | libfuzzy2-dbg | 2.7-2 | - +- amd64 | libfxt-dev | 0.2.6-2 | - +- amd64 | libfxt0 | 0.2.6-2 | - +- amd64 | libg15-1 | 1.2.7-2 | - +- amd64 | libg15-dev | 1.2.7-2 | - +- amd64 | libg15daemon-client-dev | 1.9.5.3-8.2 | - +- amd64 | libg15daemon-client1 | 1.9.5.3-8.2 | - +- amd64 | libg15render-dev | 1.3.0~svn316-2.2 | - +- amd64 | libg15render1 | 1.3.0~svn316-2.2 | - +- amd64 | libg2-dev | 0.72-2.1 | - +- amd64 | libg20 | 0.72-2.1 | - +- amd64 | libg20-perl | 0.72-2.1 | - +- amd64 | libg3d-dbg | 0.0.8-17 | - +- amd64 | libg3d-dev | 0.0.8-17 | - +- amd64 | libg3d-plugin-gdkpixbuf | 0.0.8-17 | - +- amd64 | libg3d-plugins | 0.0.8-17 | - +- amd64 | libg3d0 | 0.0.8-17 | - +- amd64 | libga-dev | 2.4.7-3 | - +- amd64 | libga2 | 2.4.7-3 | - +- amd64 | libgadap-dev | 2.0-1 | - +- amd64 | libgadu-dev | 1:1.11.2-1 | - +- amd64 | libgadu3 | 1:1.11.2-1 | - +- amd64 | libgadu3-dbg | 1:1.11.2-1 | - +- amd64 | libgail-3-0 | 3.4.2-7 | - +- amd64 | libgail-3-0-dbg | 3.4.2-7 | - +- amd64 | libgail-3-dev | 3.4.2-7 | - +- amd64 | libgail-common | 2.24.10-2 | - +- amd64 | libgail-dbg | 2.24.10-2 | - +- amd64 | libgail-dev | 2.24.10-2 | - +- amd64 | libgail18 | 2.24.10-2 | - +- amd64 | libgalax-ocaml-dev | 1.1-10+b3 | - +- amd64 | libgambc4 | 4.2.8-1.1 | - +- amd64 | libgambc4-dev | 4.2.8-1.1 | - +- amd64 | libgamin-dev | 0.1.10-4.1 | - +- amd64 | libgamin0 | 0.1.10-4.1 | - +- amd64 | libgammu-dbg | 1.31.90-1+b1 | - +- amd64 | libgammu-dev | 1.31.90-1+b1 | - +- amd64 | libgammu7 | 1.31.90-1+b1 | - +- amd64 | libganglia1 | 3.3.8-1+nmu1 | - +- amd64 | libganglia1-dev | 3.3.8-1+nmu1 | - +- amd64 | libganv-1-1 | 0~svn4468~dfsg0-1 | - +- amd64 | libganv-dev | 0~svn4468~dfsg0-1 | - +- amd64 | libgarcon-1-0 | 0.1.12-1 | - +- amd64 | libgarcon-1-0-dbg | 0.1.12-1 | - +- amd64 | libgarcon-1-0-dev | 0.1.12-1 | - +- amd64 | libgarmin-dev | 0~svn320-3 | - +- amd64 | libgarmin0 | 0~svn320-3 | - +- amd64 | libgauche-0.9-0 | 0.9.1-5.1 | - +- amd64 | libgavl-dev | 1.4.0-1 | - +- amd64 | libgavl-ocaml | 0.1.4-1+b1 | - +- amd64 | libgavl-ocaml-dev | 0.1.4-1+b1 | - +- amd64 | libgavl1 | 1.4.0-1 | - +- amd64 | libgavl1-dbg | 1.4.0-1 | - +- amd64 | libgbm-dev | 8.0.5-4+deb7u2 | - +- amd64 | libgbm1 | 8.0.5-4+deb7u2 | - +- amd64 | libgbm1-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgc-dev | 1:7.1-9.1 | - +- amd64 | libgc1c2 | 1:7.1-9.1 | - +- amd64 | libgcal-dev | 0.9.6-3 | - +- amd64 | libgcal0 | 0.9.6-3 | - +- amd64 | libgcc1 | 1:4.7.2-5 | - +- amd64 | libgcc1-dbg | 1:4.7.2-5 | - +- amd64 | libgccxml-dev | 0.9.0+cvs20120420-4 | - +- amd64 | libgcgi-dev | 0.9.5.dfsg-7 | - +- amd64 | libgcgi0 | 0.9.5.dfsg-7 | - +- amd64 | libgcj-bc | 4.7.2-1 | - +- amd64 | libgcj12 | 4.6.3-1 | - +- amd64 | libgcj12-awt | 4.6.3-1 | - +- amd64 | libgcj12-dbg | 4.6.3-1 | - +- amd64 | libgcj12-dev | 4.6.3-1 | - +- amd64 | libgcj13 | 4.7.2-3 | - +- amd64 | libgcj13-awt | 4.7.2-3 | - +- amd64 | libgcj13-dbg | 4.7.2-3 | - +- amd64 | libgcj13-dev | 4.7.2-3 | - +- amd64 | libgck-1-0 | 3.4.1-3 | - +- amd64 | libgck-1-dev | 3.4.1-3 | - +- amd64 | libgconf-2-4 | 3.2.5-1+build1 | - +- amd64 | libgconf-bridge-dev | 0.1-2.2 | - +- amd64 | libgconf-bridge0 | 0.1-2.2 | - +- amd64 | libgconf2-4 | 3.2.5-1+build1 | - +- amd64 | libgconf2-dev | 3.2.5-1+build1 | - +- amd64 | libgconfmm-2.6-1c2 | 2.28.0-1 | - +- amd64 | libgconfmm-2.6-dev | 2.28.0-1 | - +- amd64 | libgcr-3-1 | 3.4.1-3 | - +- amd64 | libgcr-3-dev | 3.4.1-3 | - +- amd64 | libgcr410 | 2.4.0-9.2 | - +- amd64 | libgcroots-dev | 0.8.5-2.1 | - +- amd64 | libgcroots0 | 0.8.5-2.1 | - +- amd64 | libgcrypt11 | 1.5.0-5+deb7u1 | - +- amd64 | libgcrypt11-dbg | 1.5.0-5+deb7u1 | - +- amd64 | libgcrypt11-dev | 1.5.0-5+deb7u1 | - +- amd64 | libgctp-dev | 1.0-1 | - +- amd64 | libgctp0d | 1.0-1 | - +- amd64 | libgcu-dbg | 0.12.12-1 | - +- amd64 | libgcu0 | 0.12.12-1 | - +- amd64 | libgd-gd2-noxpm-ocaml | 1.0~alpha5-5 | - +- amd64 | libgd-gd2-noxpm-ocaml-dev | 1.0~alpha5-5 | - +- amd64 | libgd-gd2-noxpm-perl | 1:2.46-2+b1 | - +- amd64 | libgd-gd2-perl | 1:2.46-3+b1 | - +- amd64 | libgd-tools | 2.0.36~rc1~dfsg-6.1 | - +- amd64 | libgd2-noxpm | 2.0.36~rc1~dfsg-6.1 | - +- amd64 | libgd2-noxpm-dev | 2.0.36~rc1~dfsg-6.1 | - +- amd64 | libgd2-xpm | 2.0.36~rc1~dfsg-6.1 | - +- amd64 | libgd2-xpm-dev | 2.0.36~rc1~dfsg-6.1 | - +- amd64 | libgda-5.0-4 | 5.0.3-2 | - +- amd64 | libgda-5.0-4-dbg | 5.0.3-2 | - +- amd64 | libgda-5.0-bin | 5.0.3-2 | - +- amd64 | libgda-5.0-dev | 5.0.3-2 | - +- amd64 | libgda-5.0-mysql | 5.0.3-2 | - +- amd64 | libgda-5.0-postgres | 5.0.3-2 | - +- amd64 | libgdal-dev | 1.9.0-3.1 | - +- amd64 | libgdal-perl | 1.9.0-3.1 | - +- amd64 | libgdal-ruby | 1.9.0-3.1 | - +- amd64 | libgdal-ruby1.8 | 1.9.0-3.1 | - +- amd64 | libgdal1 | 1.9.0-3.1 | - +- amd64 | libgdal1-1.9.0-grass | 1.9.0-1+b1 | - +- amd64 | libgdata-dev | 0.12.0-1 | - +- amd64 | libgdata13 | 0.12.0-1 | - +- amd64 | libgdb-dev | 7.4.1+dfsg-0.1 | - +- amd64 | libgdbm-dev | 1.8.3-11 | - +- amd64 | libgdbm-gst | 3.2.4-2 | - +- amd64 | libgdbm3 | 1.8.3-11 | - +- amd64 | libgdbussyncevo0 | 1.2.99.1-1.1 | - +- amd64 | libgdchart-gd2-noxpm | 0.11.5-7+b1 | - +- amd64 | libgdchart-gd2-noxpm-dev | 0.11.5-7+b1 | - +- amd64 | libgdchart-gd2-xpm | 0.11.5-7+b1 | - +- amd64 | libgdchart-gd2-xpm-dev | 0.11.5-7+b1 | - +- amd64 | libgdcm-cil | 2.2.0-14.1 | - +- amd64 | libgdcm-java | 2.2.0-14.1 | - +- amd64 | libgdcm-tools | 2.2.0-14.1 | - +- amd64 | libgdcm2-dev | 2.2.0-14.1 | - +- amd64 | libgdcm2.2 | 2.2.0-14.1 | - +- amd64 | libgdcm2.2-dbg | 2.2.0-14.1 | - +- amd64 | libgdf-dev | 0.1.2-2 | - +- amd64 | libgdf0 | 0.1.2-2 | - +- amd64 | libgdf0-dbg | 0.1.2-2 | - +- amd64 | libgdict-1.0-6 | 3.4.0-2 | - +- amd64 | libgdict-1.0-dev | 3.4.0-2 | - +- amd64 | libgdiplus | 2.10-3+b1 | - +- amd64 | libgdk-pixbuf2.0-0 | 2.26.1-1 | - +- amd64 | libgdk-pixbuf2.0-dev | 2.26.1-1 | - +- amd64 | libgdkcutter-pixbuf-dev | 1.1.7-1.2 | - +- amd64 | libgdkcutter-pixbuf0 | 1.1.7-1.2 | - +- amd64 | libgdl-3-2 | 3.4.2-1 | - +- amd64 | libgdl-3-dbg | 3.4.2-1 | - +- amd64 | libgdl-3-dev | 3.4.2-1 | - +- amd64 | libgdome2-0 | 0.8.1+debian-4.1 | - +- amd64 | libgdome2-cpp-smart-dev | 0.2.6-6+b1 | - +- amd64 | libgdome2-cpp-smart0c2a | 0.2.6-6+b1 | - +- amd64 | libgdome2-dev | 0.8.1+debian-4.1 | - +- amd64 | libgdome2-ocaml | 0.2.6-6+b1 | - +- amd64 | libgdome2-ocaml-dev | 0.2.6-6+b1 | - +- amd64 | libgdraw4 | 0.0.20120101+git-2 | - +- amd64 | libgdu-dev | 3.0.2-3 | - +- amd64 | libgdu-gtk-dev | 3.0.2-3 | - +- amd64 | libgdu-gtk0 | 3.0.2-3 | - +- amd64 | libgdu0 | 3.0.2-3 | - +- amd64 | libgeant321-2-dev | 1:3.21.14.dfsg-10 | - +- amd64 | libgeant321-2-gfortran | 1:3.21.14.dfsg-10 | - +- amd64 | libgearman-dbg | 0.33-2 | - +- amd64 | libgearman-dev | 0.33-2 | - +- amd64 | libgearman6 | 0.33-2 | - +- amd64 | libgecode-dev | 3.7.3-1 | - +- amd64 | libgecode32 | 3.7.3-1 | - +- amd64 | libgecodeflatzinc32 | 3.7.3-1 | - +- amd64 | libgecodegist32 | 3.7.3-1 | - +- amd64 | libgeda-dev | 1:1.6.2-4.3 | - +- amd64 | libgeda38 | 1:1.6.2-4.3 | - +- amd64 | libgee-dev | 0.6.4-2 | - +- amd64 | libgee2 | 0.6.4-2 | - +- amd64 | libgee2-dbg | 0.6.4-2 | - +- amd64 | libgegl-0.2-0 | 0.2.0-2+nmu1 | - +- amd64 | libgegl-0.2-0-dbg | 0.2.0-2+nmu1 | - +- amd64 | libgegl-dev | 0.2.0-2+nmu1 | - +- amd64 | libgeier-dev | 0.13-1+b1 | - +- amd64 | libgeier0 | 0.13-1+b1 | - +- amd64 | libgemanx-core0 | 0.1.0.3-2 | - +- amd64 | libgempc410 | 1.0.7-1 | - +- amd64 | libgempc430 | 1.0.7-1 | - +- amd64 | libgenders-perl | 1.18-1 | - +- amd64 | libgenders0 | 1.18-1 | - +- amd64 | libgenders0-dev | 1.18-1 | - +- amd64 | libgenome-1.3-0 | 1.3.1-3 | - +- amd64 | libgenome-1.3-0-dev | 1.3.1-3 | - +- amd64 | libgensec-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libgensec0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libgeo-distance-xs-perl | 0.11-1 | - +- amd64 | libgeo-ip-perl | 1.40-2 | - +- amd64 | libgeo-proj4-perl | 1.03-1 | - +- amd64 | libgeoclue-dev | 0.12.0-4 | - +- amd64 | libgeoclue0 | 0.12.0-4 | - +- amd64 | libgeocode-glib-dbg | 0.99.0-1 | - +- amd64 | libgeocode-glib-dev | 0.99.0-1 | - +- amd64 | libgeocode-glib0 | 0.99.0-1 | - +- amd64 | libgeographiclib-dev | 1.21-1 | - +- amd64 | libgeographiclib9 | 1.21-1 | - +! amd64 | libgeoip-dev | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | libgeoip1 | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +- amd64 | libgeomview-1.9.4 | 1.9.4-3 | - +- amd64 | libgeomview-dev | 1.9.4-3 | - +- amd64 | libgeos++-dev | 3.3.3-1.1 | - +- amd64 | libgeos-3.3.3 | 3.3.3-1.1 | - +- amd64 | libgeos-c1 | 3.3.3-1.1 | - +- amd64 | libgeos-dbg | 3.3.3-1.1 | - +- amd64 | libgeos-dev | 3.3.3-1.1 | - +- amd64 | libgeos-ruby1.8 | 3.3.3-1.1 | - +- amd64 | libgeotiff-dev | 1.3.0+dfsg-3 | - +- amd64 | libgeotiff2 | 1.3.0+dfsg-3 | - +- amd64 | libgeotranz3-dev | 3.1-2.1 | - +- amd64 | libgeotranz3.1 | 3.1-2.1 | - +- amd64 | libges-0.10-0 | 0.10.1-2 | - +- amd64 | libges-0.10-dev | 0.10.1-2 | - +- amd64 | libgetdata++2 | 0.7.3-6 | - +- amd64 | libgetdata-dev | 0.7.3-6 | - +- amd64 | libgetdata-tools | 0.7.3-6 | - +- amd64 | libgetdata4 | 0.7.3-6 | - +- amd64 | libgetfem++-dbg | 4.1.1+dfsg1-11 | - +- amd64 | libgetfem++-dev | 4.1.1+dfsg1-11 | - +- amd64 | libgetfem4++ | 4.1.1+dfsg1-11 | - +- amd64 | libgetopt++-dev | 0.0.2-p22-3 | - +- amd64 | libgetopt++1 | 0.0.2-p22-3 | - +- amd64 | libgetopt-ocaml-dev | 0.0.20040811-10+b3 | - +- amd64 | libgettext-ocaml | 0.3.4-1+b2 | - +- amd64 | libgettext-ocaml-dev | 0.3.4-1+b2 | - ++ amd64 | libgettextpo-dev | - | 0.18.3-1~bpo7+1 +! amd64 | libgettextpo0 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- amd64 | libgexiv2-1 | 0.4.1-3 | - +- amd64 | libgexiv2-1-dbg | 0.4.1-3 | - +- amd64 | libgexiv2-dev | 0.4.1-3 | - +- amd64 | libgfarm-dev | 2.4.1-1.1 | - +- amd64 | libgfarm1 | 2.4.1-1.1 | - +- amd64 | libgflags-dev | 2.0-1 | - +- amd64 | libgflags2 | 2.0-1 | - +- amd64 | libgfortran3 | 4.7.2-5 | - +- amd64 | libgfortran3-dbg | 4.7.2-5 | - +- amd64 | libgfshare-bin | 1.0.5-2 | - +- amd64 | libgfshare-dbg | 1.0.5-2 | - +- amd64 | libgfshare-dev | 1.0.5-2 | - +- amd64 | libgfshare1 | 1.0.5-2 | - +- amd64 | libghc-acid-state-dev | 0.6.3-1+b2 | - +- amd64 | libghc-acid-state-prof | 0.6.3-1+b2 | - +- amd64 | libghc-active-dev | 0.1.0.1-2+b1 | - +- amd64 | libghc-active-prof | 0.1.0.1-2+b1 | - +- amd64 | libghc-adjunctions-dev | 2.4.0.2-1+b1 | - +- amd64 | libghc-adjunctions-prof | 2.4.0.2-1+b1 | - +- amd64 | libghc-aeson-dev | 0.6.0.2-1+b4 | - +- amd64 | libghc-aeson-prof | 0.6.0.2-1+b4 | - +- amd64 | libghc-agda-dev | 2.3.0.1-2+b1 | - +- amd64 | libghc-algebra-dev | 2.1.1.2-1+b1 | - +- amd64 | libghc-algebra-prof | 2.1.1.2-1+b1 | - +- amd64 | libghc-alut-dev | 2.1.0.2-4+b1 | - +- amd64 | libghc-alut-prof | 2.1.0.2-4+b1 | - +- amd64 | libghc-ami-dev | 0.1-1+b5 | - +- amd64 | libghc-ami-prof | 0.1-1+b5 | - +- amd64 | libghc-ansi-terminal-dev | 0.5.5-3+b1 | - +- amd64 | libghc-ansi-terminal-prof | 0.5.5-3+b1 | - +- amd64 | libghc-ansi-wl-pprint-dev | 0.6.4-1+b1 | - +- amd64 | libghc-ansi-wl-pprint-prof | 0.6.4-1+b1 | - +- amd64 | libghc-arrows-dev | 0.4.4.0-3+b1 | - +- amd64 | libghc-arrows-prof | 0.4.4.0-3+b1 | - +- amd64 | libghc-asn1-data-dev | 0.6.1.3-2+b3 | - +- amd64 | libghc-asn1-data-prof | 0.6.1.3-2+b3 | - ++ amd64 | libghc-async-dev | - | 2.0.1.3-1~bpo70+1 ++ amd64 | libghc-async-prof | - | 2.0.1.3-1~bpo70+1 +- amd64 | libghc-attempt-dev | 0.4.0-1+b2 | - +- amd64 | libghc-attempt-prof | 0.4.0-1+b2 | - +- amd64 | libghc-attoparsec-conduit-dev | 0.4.0.1-1+b1 | - +- amd64 | libghc-attoparsec-conduit-prof | 0.4.0.1-1+b1 | - +- amd64 | libghc-attoparsec-dev | 0.10.1.1-2+b1 | - +- amd64 | libghc-attoparsec-enumerator-dev | 0.3-3+b3 | - +- amd64 | libghc-attoparsec-enumerator-prof | 0.3-3+b3 | - +- amd64 | libghc-attoparsec-prof | 0.10.1.1-2+b1 | - +- amd64 | libghc-augeas-dev | 0.6.1-1 | - +- amd64 | libghc-augeas-prof | 0.6.1-1 | - +- amd64 | libghc-authenticate-dev | 1.2.1.1-2+b1 | - +- amd64 | libghc-authenticate-prof | 1.2.1.1-2+b1 | - +- amd64 | libghc-base-unicode-symbols-dev | 0.2.2.3-1+b1 | - +- amd64 | libghc-base-unicode-symbols-prof | 0.2.2.3-1+b1 | - +- amd64 | libghc-base16-bytestring-dev | 0.1.1.4-2+b1 | - +- amd64 | libghc-base16-bytestring-prof | 0.1.1.4-2+b1 | - +- amd64 | libghc-base64-bytestring-dev | 0.1.1.1-2 | - +- amd64 | libghc-base64-bytestring-prof | 0.1.1.1-2 | - +- amd64 | libghc-bifunctors-dev | 0.1.3.3-1+b1 | - +- amd64 | libghc-bifunctors-prof | 0.1.3.3-1+b1 | - +- amd64 | libghc-binary-shared-dev | 0.8.1-1+b1 | - +- amd64 | libghc-binary-shared-prof | 0.8.1-1+b1 | - +- amd64 | libghc-bindings-dsl-dev | 1.0.15-1+b1 | - +- amd64 | libghc-bindings-gpgme-dev | 0.1.4-1 | - +- amd64 | libghc-bindings-gpgme-prof | 0.1.4-1 | - +- amd64 | libghc-bindings-libzip-dev | 0.10-2 | - +- amd64 | libghc-bindings-libzip-prof | 0.10-2 | - +- amd64 | libghc-bitarray-dev | 0.0.1-2+b1 | - +- amd64 | libghc-bitarray-prof | 0.0.1-2+b1 | - +- amd64 | libghc-blaze-builder-conduit-dev | 0.4.0.2-1+b1 | - +- amd64 | libghc-blaze-builder-conduit-prof | 0.4.0.2-1+b1 | - +- amd64 | libghc-blaze-builder-dev | 0.3.1.0-1+b2 | - +- amd64 | libghc-blaze-builder-enumerator-dev | 0.2.0.4-1+b1 | - +- amd64 | libghc-blaze-builder-enumerator-prof | 0.2.0.4-1+b1 | - +- amd64 | libghc-blaze-builder-prof | 0.3.1.0-1+b2 | - +- amd64 | libghc-blaze-html-dev | 0.4.3.1-3+b2 | - +- amd64 | libghc-blaze-html-prof | 0.4.3.1-3+b2 | - +- amd64 | libghc-blaze-markup-dev | 0.5.1.0-1+b1 | - +- amd64 | libghc-blaze-markup-prof | 0.5.1.0-1+b1 | - +- amd64 | libghc-blaze-textual-dev | 0.2.0.6-2+b4 | - +- amd64 | libghc-blaze-textual-prof | 0.2.0.6-2+b4 | - +- amd64 | libghc-bloomfilter-dev | 1.2.6.8-1 | - +- amd64 | libghc-bloomfilter-prof | 1.2.6.8-1 | - +- amd64 | libghc-boolean-dev | 0.0.1-2+b1 | - +- amd64 | libghc-boolean-prof | 0.0.1-2+b1 | - +- amd64 | libghc-boomerang-dev | 1.3.1-1 | - +- amd64 | libghc-boomerang-prof | 1.3.1-1 | - +- amd64 | libghc-brainfuck-dev | 0.1-2+b2 | - +- amd64 | libghc-brainfuck-prof | 0.1-2+b2 | - +- amd64 | libghc-byteorder-dev | 1.0.3-2+b1 | - +- amd64 | libghc-byteorder-prof | 1.0.3-2+b1 | - +- amd64 | libghc-bytestring-lexing-dev | 0.4.0-1+b1 | - +- amd64 | libghc-bytestring-lexing-prof | 0.4.0-1+b1 | - +- amd64 | libghc-bytestring-mmap-dev | 0.2.2-2+b1 | - +- amd64 | libghc-bytestring-mmap-prof | 0.2.2-2+b1 | - +- amd64 | libghc-bytestring-nums-dev | 0.3.5-2+b1 | - +- amd64 | libghc-bytestring-nums-prof | 0.3.5-2+b1 | - +- amd64 | libghc-bytestring-show-dev | 0.3.5.1-1+b1 | - +- amd64 | libghc-bytestring-show-prof | 0.3.5.1-1+b1 | - +- amd64 | libghc-bzlib-dev | 0.5.0.3-2+b1 | - +- amd64 | libghc-bzlib-prof | 0.5.0.3-2+b1 | - +- amd64 | libghc-cabal-file-th-dev | 0.2.2-1 | - +- amd64 | libghc-cabal-file-th-prof | 0.2.2-1 | - +- amd64 | libghc-cairo-dev | 0.12.3-1+b1 | - +- amd64 | libghc-cairo-prof | 0.12.3-1+b1 | - +- amd64 | libghc-case-insensitive-dev | 0.4.0.1-2+b2 | - +- amd64 | libghc-case-insensitive-prof | 0.4.0.1-2+b2 | - +- amd64 | libghc-categories-dev | 1.0.3-1 | - +- amd64 | libghc-categories-prof | 1.0.3-1 | - +- amd64 | libghc-cautious-file-dev | 1.0.1-1 | - +- amd64 | libghc-cautious-file-prof | 1.0.1-1 | - +- amd64 | libghc-cereal-conduit-dev | 0.5-1 | - +- amd64 | libghc-cereal-conduit-prof | 0.5-1 | - +- amd64 | libghc-cereal-dev | 0.3.5.2-1 | - +- amd64 | libghc-cereal-prof | 0.3.5.2-1 | - +- amd64 | libghc-certificate-dev | 1.2.3-2 | - +- amd64 | libghc-certificate-prof | 1.2.3-2 | - +- amd64 | libghc-cgi-dev | 3001.1.8.2-2+b3 | - +- amd64 | libghc-cgi-prof | 3001.1.8.2-2+b3 | - +- amd64 | libghc-chart-dev | 0.15-1+b2 | - +- amd64 | libghc-chart-prof | 0.15-1+b2 | - +- amd64 | libghc-chell-dev | 0.3-1 | - +- amd64 | libghc-chell-prof | 0.3-1 | - +- amd64 | libghc-citeproc-hs-dev | 0.3.4-1+b4 | - +- amd64 | libghc-citeproc-hs-prof | 0.3.4-1+b4 | - +- amd64 | libghc-clientsession-dev | 0.7.5-3+b2 | - +- amd64 | libghc-clientsession-prof | 0.7.5-3+b2 | - +- amd64 | libghc-clock-dev | 0.2.0.0-2+b1 | - +- amd64 | libghc-clock-prof | 0.2.0.0-2+b1 | - +- amd64 | libghc-cmdargs-dev | 0.9.5-1+b1 | - +- amd64 | libghc-cmdargs-prof | 0.9.5-1+b1 | - +- amd64 | libghc-colour-dev | 2.3.3-1+b1 | - +- amd64 | libghc-colour-prof | 2.3.3-1+b1 | - +- amd64 | libghc-comonad-dev | 1.1.1.5-1+b1 | - +- amd64 | libghc-comonad-prof | 1.1.1.5-1+b1 | - +- amd64 | libghc-comonad-transformers-dev | 2.1.1.1-1+b1 | - +- amd64 | libghc-comonad-transformers-prof | 2.1.1.1-1+b1 | - +- amd64 | libghc-comonads-fd-dev | 2.1.1.2-1+b1 | - +- amd64 | libghc-comonads-fd-prof | 2.1.1.2-1+b1 | - +- amd64 | libghc-conduit-dev | 0.4.2-2+b2 | - +- amd64 | libghc-conduit-prof | 0.4.2-2+b2 | - +- amd64 | libghc-configfile-dev | 1.0.6-4+b3 | - +- amd64 | libghc-configfile-prof | 1.0.6-4+b3 | - +- amd64 | libghc-configurator-dev | 0.2.0.0-1+b2 | - +- amd64 | libghc-configurator-prof | 0.2.0.0-1+b2 | - +- amd64 | libghc-contravariant-dev | 0.2.0.2-1+b1 | - +- amd64 | libghc-contravariant-prof | 0.2.0.2-1+b1 | - +- amd64 | libghc-convertible-dev | 1.0.11.0-3+b3 | - +- amd64 | libghc-convertible-prof | 1.0.11.0-3+b3 | - +- amd64 | libghc-cookie-dev | 0.4.0-1+b3 | - +- amd64 | libghc-cookie-prof | 0.4.0-1+b3 | - +- amd64 | libghc-cpphs-dev | 1.13.3-2+b1 | - +- amd64 | libghc-cpphs-prof | 1.13.3-2+b1 | - +- amd64 | libghc-cprng-aes-dev | 0.2.3-3+b4 | - +- amd64 | libghc-cprng-aes-prof | 0.2.3-3+b4 | - +- amd64 | libghc-cpu-dev | 0.1.1-1 | - +- amd64 | libghc-cpu-prof | 0.1.1-1 | - +- amd64 | libghc-criterion-dev | 0.6.0.1-3+b4 | - +- amd64 | libghc-criterion-prof | 0.6.0.1-3+b4 | - +- amd64 | libghc-crypto-api-dev | 0.10.2-1+b2 | - +- amd64 | libghc-crypto-api-prof | 0.10.2-1+b2 | - +- amd64 | libghc-crypto-conduit-dev | 0.3.2-1+b2 | - +- amd64 | libghc-crypto-conduit-prof | 0.3.2-1+b2 | - +- amd64 | libghc-crypto-dev | 4.2.4-1+b1 | - +- amd64 | libghc-crypto-prof | 4.2.4-1+b1 | - +- amd64 | libghc-crypto-pubkey-types-dev | 0.1.1-1+b3 | - +- amd64 | libghc-crypto-pubkey-types-prof | 0.1.1-1+b3 | - +- amd64 | libghc-cryptocipher-dev | 0.3.5-1+b1 | - +- amd64 | libghc-cryptocipher-prof | 0.3.5-1+b1 | - +- amd64 | libghc-cryptohash-dev | 0.7.5-1+b2 | - +- amd64 | libghc-cryptohash-prof | 0.7.5-1+b2 | - +- amd64 | libghc-css-text-dev | 0.1.1-3+b2 | - +- amd64 | libghc-css-text-prof | 0.1.1-3+b2 | - +- amd64 | libghc-csv-conduit-dev | 0.2-1+b1 | - +- amd64 | libghc-csv-conduit-prof | 0.2-1+b1 | - +- amd64 | libghc-csv-dev | 0.1.2-2+b3 | - +- amd64 | libghc-csv-prof | 0.1.2-2+b3 | - +- amd64 | libghc-curl-dev | 1.3.7-1+b1 | - +- amd64 | libghc-curl-prof | 1.3.7-1+b1 | - +- amd64 | libghc-darcs-dev | 2.8.1-1+b1 | - +- amd64 | libghc-darcs-prof | 2.8.1-1+b1 | - +- amd64 | libghc-data-accessor-dev | 0.2.2.2-1+b1 | - +- amd64 | libghc-data-accessor-mtl-dev | 0.2.0.3-1+b1 | - +- amd64 | libghc-data-accessor-mtl-prof | 0.2.0.3-1+b1 | - +- amd64 | libghc-data-accessor-prof | 0.2.2.2-1+b1 | - +- amd64 | libghc-data-accessor-template-dev | 0.2.1.9-1+b2 | - +- amd64 | libghc-data-accessor-template-prof | 0.2.1.9-1+b2 | - +- amd64 | libghc-data-binary-ieee754-dev | 0.4.2.1-3+b1 | - +- amd64 | libghc-data-binary-ieee754-prof | 0.4.2.1-3+b1 | - +- amd64 | libghc-data-default-dev | 0.4.0-1 | - +- amd64 | libghc-data-default-prof | 0.4.0-1 | - +- amd64 | libghc-data-inttrie-dev | 0.0.7-1+b1 | - +- amd64 | libghc-data-inttrie-prof | 0.0.7-1+b1 | - +- amd64 | libghc-data-lens-dev | 2.10.0-1+b1 | - +- amd64 | libghc-data-lens-prof | 2.10.0-1+b1 | - +- amd64 | libghc-data-memocombinators-dev | 0.4.3-1+b1 | - +- amd64 | libghc-data-memocombinators-prof | 0.4.3-1+b1 | - +- amd64 | libghc-dataenc-dev | 0.14.0.3-1+b1 | - +- amd64 | libghc-dataenc-prof | 0.14.0.3-1+b1 | - +- amd64 | libghc-datetime-dev | 0.2.1-3 | - +- amd64 | libghc-datetime-prof | 0.2.1-3 | - +- amd64 | libghc-dbus-dev | 0.10.3-1 | - +- amd64 | libghc-dbus-prof | 0.10.3-1 | - +- amd64 | libghc-debian-dev | 3.64-3+b1 | - +- amd64 | libghc-debian-prof | 3.64-3+b1 | - +- amd64 | libghc-diagrams-cairo-dev | 0.5.0.2-1+b1 | - +- amd64 | libghc-diagrams-cairo-prof | 0.5.0.2-1+b1 | - +- amd64 | libghc-diagrams-core-dev | 0.5.0.1-1+b1 | - +- amd64 | libghc-diagrams-core-prof | 0.5.0.1-1+b1 | - +- amd64 | libghc-diagrams-lib-dev | 0.5-2 | - +- amd64 | libghc-diagrams-lib-prof | 0.5-2 | - +- amd64 | libghc-diff-dev | 0.1.3-1+b1 | - +- amd64 | libghc-diff-prof | 0.1.3-1+b1 | - +- amd64 | libghc-digest-dev | 0.0.1.0-1+b1 | - +- amd64 | libghc-digest-prof | 0.0.1.0-1+b1 | - +- amd64 | libghc-dimensional-dev | 0.10.1.2-2+b1 | - +- amd64 | libghc-dimensional-prof | 0.10.1.2-2+b1 | - +- amd64 | libghc-directory-tree-dev | 0.10.0-2+b1 | - +- amd64 | libghc-directory-tree-prof | 0.10.0-2+b1 | - +- amd64 | libghc-distributive-dev | 0.2.2-1+b1 | - +- amd64 | libghc-distributive-prof | 0.2.2-1+b1 | - +- amd64 | libghc-dlist-dev | 0.5-3+b1 | - +- amd64 | libghc-dlist-prof | 0.5-3+b1 | - ++ amd64 | libghc-doctest-dev | - | 0.9.1-1~bpo70+1 ++ amd64 | libghc-doctest-prof | - | 0.9.1-1~bpo70+1 +- amd64 | libghc-download-curl-dev | 0.1.3-3+b3 | - +- amd64 | libghc-download-curl-prof | 0.1.3-3+b3 | - +- amd64 | libghc-dpkg-dev | 0.0.3-1 | - +- amd64 | libghc-dpkg-prof | 0.0.3-1 | - +- amd64 | libghc-dyre-dev | 0.8.7-1 | - +- amd64 | libghc-dyre-prof | 0.8.7-1 | - +- amd64 | libghc-edison-api-dev | 1.2.1-18+b1 | - +- amd64 | libghc-edison-api-prof | 1.2.1-18+b1 | - +- amd64 | libghc-edison-core-dev | 1.2.1.3-9+b1 | - +- amd64 | libghc-edison-core-prof | 1.2.1.3-9+b1 | - +- amd64 | libghc-edit-distance-dev | 0.2.1-2 | - +- amd64 | libghc-edit-distance-prof | 0.2.1-2 | - +- amd64 | libghc-editline-dev | 0.2.1.0-5+b1 | - +- amd64 | libghc-ekg-dev | 0.3.1.0-1+b3 | - +- amd64 | libghc-ekg-prof | 0.3.1.0-1+b3 | - +- amd64 | libghc-email-validate-dev | 0.2.8-1+b3 | - +- amd64 | libghc-email-validate-prof | 0.2.8-1+b3 | - +- amd64 | libghc-entropy-dev | 0.2.1-2+b1 | - +- amd64 | libghc-entropy-prof | 0.2.1-2+b1 | - +- amd64 | libghc-enumerator-dev | 0.4.19-1+b1 | - +- amd64 | libghc-enumerator-prof | 0.4.19-1+b1 | - +- amd64 | libghc-erf-dev | 2.0.0.0-2+b1 | - +- amd64 | libghc-erf-prof | 2.0.0.0-2+b1 | - +- amd64 | libghc-event-list-dev | 0.1.0.1-1+b1 | - +- amd64 | libghc-event-list-prof | 0.1.0.1-1+b1 | - +- amd64 | libghc-exception-transformers-dev | 0.3.0.2-1+b1 | - +- amd64 | libghc-exception-transformers-prof | 0.3.0.2-1+b1 | - +- amd64 | libghc-executable-path-dev | 0.0.3-1+b1 | - +- amd64 | libghc-executable-path-prof | 0.0.3-1+b1 | - +- amd64 | libghc-explicit-exception-dev | 0.1.7-1+b1 | - +- amd64 | libghc-explicit-exception-prof | 0.1.7-1+b1 | - +- amd64 | libghc-failure-dev | 0.2.0.1-1+b1 | - +- amd64 | libghc-failure-prof | 0.2.0.1-1+b1 | - +- amd64 | libghc-fast-logger-dev | 0.0.2-1+b2 | - +- amd64 | libghc-fast-logger-prof | 0.0.2-1+b2 | - +- amd64 | libghc-fastcgi-dev | 3001.0.2.3-3+b3 | - +- amd64 | libghc-fastcgi-prof | 3001.0.2.3-3+b3 | - +- amd64 | libghc-fclabels-dev | 1.1.3-1+b1 | - +- amd64 | libghc-fclabels-prof | 1.1.3-1+b1 | - +- amd64 | libghc-feed-dev | 0.3.8-3 | - +- amd64 | libghc-feed-prof | 0.3.8-3 | - +- amd64 | libghc-fgl-dev | 5.4.2.4-2+b2 | - +- amd64 | libghc-fgl-prof | 5.4.2.4-2+b2 | - +- amd64 | libghc-file-embed-dev | 0.0.4.4-1 | - +- amd64 | libghc-file-embed-prof | 0.0.4.4-1 | - +- amd64 | libghc-filemanip-dev | 0.3.5.2-2+b2 | - +- amd64 | libghc-filemanip-prof | 0.3.5.2-2+b2 | - +- amd64 | libghc-filestore-dev | 0.5-1 | - +- amd64 | libghc-filestore-prof | 0.5-1 | - +- amd64 | libghc-filesystem-conduit-dev | 0.4.0-1 | - +- amd64 | libghc-filesystem-conduit-prof | 0.4.0-1 | - +- amd64 | libghc-free-dev | 2.1.1.1-1+b1 | - +- amd64 | libghc-free-prof | 2.1.1.1-1+b1 | - +- amd64 | libghc-ftphs-dev | 1.0.8-1+b3 | - +- amd64 | libghc-ftphs-prof | 1.0.8-1+b3 | - +- amd64 | libghc-gconf-dev | 0.12.1-1+b1 | - +- amd64 | libghc-gconf-prof | 0.12.1-1+b1 | - +- amd64 | libghc-gd-dev | 3000.7.3-1 | - +- amd64 | libghc-gd-prof | 3000.7.3-1 | - ++ amd64 | libghc-generic-deriving-dev | - | 1.4.0-2~bpo70+1 ++ amd64 | libghc-generic-deriving-prof | - | 1.4.0-2~bpo70+1 +- amd64 | libghc-ghc-events-dev | 0.4.0.0-2+b1 | - +- amd64 | libghc-ghc-events-prof | 0.4.0.0-2+b1 | - +- amd64 | libghc-ghc-mtl-dev | 1.0.1.1-1+b3 | - +- amd64 | libghc-ghc-mtl-prof | 1.0.1.1-1+b3 | - +- amd64 | libghc-ghc-paths-dev | 0.1.0.8-2+b1 | - +- amd64 | libghc-ghc-paths-prof | 0.1.0.8-2+b1 | - +- amd64 | libghc-ghc-syb-utils-dev | 0.2.1.0-1+b3 | - +- amd64 | libghc-ghc-syb-utils-prof | 0.2.1.0-1+b3 | - +- amd64 | libghc-gio-dev | 0.12.3-1+b1 | - +- amd64 | libghc-gio-prof | 0.12.3-1+b1 | - +- amd64 | libghc-github-dev | 0.4.0-2 | - +- amd64 | libghc-github-prof | 0.4.0-2 | - +- amd64 | libghc-gitit-dev | 0.10.0.1-1+b1 | - +- amd64 | libghc-gitit-prof | 0.10.0.1-1+b1 | - +- amd64 | libghc-glade-dev | 0.12.1-1+b3 | - +- amd64 | libghc-glade-prof | 0.12.1-1+b3 | - +- amd64 | libghc-glfw-dev | 0.5.0.1-1+b1 | - +- amd64 | libghc-glfw-prof | 0.5.0.1-1+b1 | - +- amd64 | libghc-glib-dev | 0.12.2-1+b1 | - +- amd64 | libghc-glib-prof | 0.12.2-1+b1 | - +- amd64 | libghc-glut-dev | 2.1.2.2-1 | - +- amd64 | libghc-glut-prof | 2.1.2.2-1 | - +- amd64 | libghc-gnuidn-dev | 0.2-2+b2 | - +- amd64 | libghc-gnuidn-prof | 0.2-2+b2 | - +! amd64 | libghc-gnutls-dev | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! amd64 | libghc-gnutls-prof | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +- amd64 | libghc-gsasl-dev | 0.3.4-1+b1 | - +- amd64 | libghc-gsasl-prof | 0.3.4-1+b1 | - +- amd64 | libghc-gstreamer-dev | 0.12.1-1+b2 | - +- amd64 | libghc-gstreamer-prof | 0.12.1-1+b2 | - +- amd64 | libghc-gtk-dev | 0.12.3-1+b2 | - +- amd64 | libghc-gtk-prof | 0.12.3-1+b2 | - +- amd64 | libghc-gtkglext-dev | 0.12.1-1+b3 | - +- amd64 | libghc-gtkglext-prof | 0.12.1-1+b3 | - +- amd64 | libghc-gtksourceview2-dev | 0.12.3-1+b3 | - +- amd64 | libghc-gtksourceview2-prof | 0.12.3-1+b3 | - +- amd64 | libghc-haddock-dev | 2.10.0-1+b2 | - +- amd64 | libghc-haddock-prof | 2.10.0-1+b2 | - +- amd64 | libghc-hakyll-dev | 3.2.7.2-1+b6 | - +- amd64 | libghc-hakyll-prof | 3.2.7.2-1+b6 | - +- amd64 | libghc-hamlet-dev | 1.0.1.3-1+b1 | - +- amd64 | libghc-hamlet-prof | 1.0.1.3-1+b1 | - +- amd64 | libghc-happstack-dev | 7.0.0-1+b1 | - +- amd64 | libghc-happstack-prof | 7.0.0-1+b1 | - +- amd64 | libghc-happstack-server-dev | 7.0.1-1+b1 | - +- amd64 | libghc-happstack-server-prof | 7.0.1-1+b1 | - +- amd64 | libghc-harp-dev | 0.4-3+b1 | - +- amd64 | libghc-harp-prof | 0.4-3+b1 | - +- amd64 | libghc-hashable-dev | 1.1.2.3-1+b2 | - +- amd64 | libghc-hashable-prof | 1.1.2.3-1+b2 | - +- amd64 | libghc-hashed-storage-dev | 0.5.9-2+b2 | - +- amd64 | libghc-hashed-storage-prof | 0.5.9-2+b2 | - +- amd64 | libghc-hashmap-dev | 1.3.0.1-1+b2 | - +- amd64 | libghc-hashmap-prof | 1.3.0.1-1+b2 | - +- amd64 | libghc-hashtables-dev | 1.0.1.4-1+b1 | - +- amd64 | libghc-hashtables-prof | 1.0.1.4-1+b1 | - +- amd64 | libghc-haskeline-dev | 0.6.4.7-1+b1 | - +- amd64 | libghc-haskeline-prof | 0.6.4.7-1+b1 | - +- amd64 | libghc-haskell-lexer-dev | 1.0-3+b1 | - +- amd64 | libghc-haskell-lexer-prof | 1.0-3+b1 | - +- amd64 | libghc-haskell-src-dev | 1.0.1.5-1+b2 | - +- amd64 | libghc-haskell-src-prof | 1.0.1.5-1+b2 | - +- amd64 | libghc-haskelldb-dev | 2.1.1-5+b1 | - +- amd64 | libghc-haskelldb-hdbc-dev | 2.1.0-4+b1 | - +- amd64 | libghc-haskelldb-hdbc-odbc-dev | 2.1.0-3 | - +- amd64 | libghc-haskelldb-hdbc-odbc-prof | 2.1.0-3 | - +- amd64 | libghc-haskelldb-hdbc-postgresql-dev | 2.1.0-3 | - +- amd64 | libghc-haskelldb-hdbc-postgresql-prof | 2.1.0-3 | - +- amd64 | libghc-haskelldb-hdbc-prof | 2.1.0-4+b1 | - +- amd64 | libghc-haskelldb-hdbc-sqlite3-dev | 2.1.0-3 | - +- amd64 | libghc-haskelldb-hdbc-sqlite3-prof | 2.1.0-3 | - +- amd64 | libghc-haskelldb-prof | 2.1.1-5+b1 | - +- amd64 | libghc-haskore-dev | 0.2.0.3-2+b1 | - +- amd64 | libghc-haskore-prof | 0.2.0.3-2+b1 | - +- amd64 | libghc-hastache-dev | 0.3.3-2+b3 | - +- amd64 | libghc-hastache-prof | 0.3.3-2+b3 | - +- amd64 | libghc-haxml-dev | 1:1.22.5-2+b2 | - +- amd64 | libghc-haxml-prof | 1:1.22.5-2+b2 | - +- amd64 | libghc-haxr-dev | 3000.8.5-1+b3 | - +- amd64 | libghc-haxr-prof | 3000.8.5-1+b3 | - +- amd64 | libghc-hcard-dev | 0.0-2+b2 | - +- amd64 | libghc-hcard-prof | 0.0-2+b2 | - +- amd64 | libghc-hcwiid-dev | 0.0.1-3+b1 | - +- amd64 | libghc-hcwiid-prof | 0.0.1-3+b1 | - +- amd64 | libghc-hdbc-dev | 2.3.1.1-1+b3 | - +- amd64 | libghc-hdbc-odbc-dev | 2.2.3.0-5+b3 | - +- amd64 | libghc-hdbc-odbc-prof | 2.2.3.0-5+b3 | - +- amd64 | libghc-hdbc-postgresql-dev | 2.3.2.1-1+b3 | - +- amd64 | libghc-hdbc-postgresql-prof | 2.3.2.1-1+b3 | - +- amd64 | libghc-hdbc-prof | 2.3.1.1-1+b3 | - +- amd64 | libghc-hdbc-sqlite3-dev | 2.3.3.0-1+b3 | - +- amd64 | libghc-hdbc-sqlite3-prof | 2.3.3.0-1+b3 | - +- amd64 | libghc-hfuse-dev | 0.2.4.1-1 | - +- amd64 | libghc-hfuse-prof | 0.2.4.1-1 | - +- amd64 | libghc-highlighting-kate-dev | 0.5.1-1 | - +- amd64 | libghc-highlighting-kate-prof | 0.5.1-1 | - +- amd64 | libghc-hinotify-dev | 0.3.2-1+b1 | - +- amd64 | libghc-hinotify-prof | 0.3.2-1+b1 | - +- amd64 | libghc-hint-dev | 0.3.3.4-2+b4 | - +- amd64 | libghc-hint-prof | 0.3.3.4-2+b4 | - +- amd64 | libghc-hipmunk-dev | 5.2.0.8-1+b1 | - +- amd64 | libghc-hipmunk-prof | 5.2.0.8-1+b1 | - +- amd64 | libghc-hjavascript-dev | 0.4.7-3+b1 | - +- amd64 | libghc-hjavascript-prof | 0.4.7-3+b1 | - +- amd64 | libghc-hjscript-dev | 0.5.0-3+b2 | - +- amd64 | libghc-hjscript-prof | 0.5.0-3+b2 | - +- amd64 | libghc-hjsmin-dev | 0.1.1-1+b2 | - +- amd64 | libghc-hjsmin-prof | 0.1.1-1+b2 | - +- amd64 | libghc-hlint-dev | 1.8.28-1+b3 | - +- amd64 | libghc-hlint-prof | 1.8.28-1+b3 | - +- amd64 | libghc-hoauth-dev | 0.3.4-1+b1 | - +- amd64 | libghc-hoauth-prof | 0.3.4-1+b1 | - +- amd64 | libghc-hostname-dev | 1.0-4+b1 | - +- amd64 | libghc-hostname-prof | 1.0-4+b1 | - +- amd64 | libghc-hs-bibutils-dev | 4.12-5+b2 | - +- amd64 | libghc-hs-bibutils-prof | 4.12-5+b2 | - +- amd64 | libghc-hs3-dev | 0.5.6-2+b4 | - +- amd64 | libghc-hs3-prof | 0.5.6-2+b4 | - +- amd64 | libghc-hscolour-dev | 1.19-3+b1 | - +- amd64 | libghc-hscolour-prof | 1.19-3+b1 | - +- amd64 | libghc-hscurses-dev | 1.4.1.0-1+b2 | - +- amd64 | libghc-hscurses-prof | 1.4.1.0-1+b2 | - +- amd64 | libghc-hsemail-dev | 1.7.1-2+b3 | - +- amd64 | libghc-hsemail-prof | 1.7.1-2+b3 | - +- amd64 | libghc-hsh-dev | 2.0.3-6+b3 | - +- amd64 | libghc-hsh-doc | 2.0.3-6+b3 | - +- amd64 | libghc-hsh-prof | 2.0.3-6+b3 | - +- amd64 | libghc-hslogger-dev | 1.1.4+dfsg1-2+b3 | - +- amd64 | libghc-hslogger-prof | 1.1.4+dfsg1-2+b3 | - +- amd64 | libghc-hsp-dev | 0.6.1-2+b3 | - +- amd64 | libghc-hsp-prof | 0.6.1-2+b3 | - +- amd64 | libghc-hspec-dev | 1.1.0-1+b1 | - +- amd64 | libghc-hspec-prof | 1.1.0-1+b1 | - +- amd64 | libghc-hsql-dev | 1.8.1-4 | - +- amd64 | libghc-hsql-mysql-dev | 1.8.1-4+b1 | - +- amd64 | libghc-hsql-mysql-prof | 1.8.1-4+b1 | - +- amd64 | libghc-hsql-odbc-dev | 1.8.1.1-2 | - +- amd64 | libghc-hsql-odbc-prof | 1.8.1.1-2 | - +- amd64 | libghc-hsql-postgresql-dev | 1.8.1-3 | - +- amd64 | libghc-hsql-postgresql-prof | 1.8.1-3 | - +- amd64 | libghc-hsql-prof | 1.8.1-4 | - +- amd64 | libghc-hsql-sqlite3-dev | 1.8.1-2 | - +- amd64 | libghc-hsql-sqlite3-prof | 1.8.1-2 | - +- amd64 | libghc-hssyck-dev | 0.50-2+b2 | - +- amd64 | libghc-hssyck-prof | 0.50-2+b2 | - +- amd64 | libghc-hstringtemplate-dev | 0.6.8-1 | - +- amd64 | libghc-hstringtemplate-prof | 0.6.8-1 | - +- amd64 | libghc-hsx-dev | 0.9.1-3 | - +- amd64 | libghc-hsx-prof | 0.9.1-3 | - +- amd64 | libghc-html-conduit-dev | 0.0.1-2+b1 | - +- amd64 | libghc-html-conduit-prof | 0.0.1-2+b1 | - +- amd64 | libghc-html-dev | 1.0.1.2-5+b1 | - +- amd64 | libghc-html-prof | 1.0.1.2-5+b1 | - +- amd64 | libghc-http-conduit-dev | 1.4.1.6-3 | - +- amd64 | libghc-http-conduit-prof | 1.4.1.6-3 | - +- amd64 | libghc-http-date-dev | 0.0.2-1+b2 | - +- amd64 | libghc-http-date-prof | 0.0.2-1+b2 | - +- amd64 | libghc-http-dev | 1:4000.2.3-1+b2 | - +- amd64 | libghc-http-prof | 1:4000.2.3-1+b2 | - +- amd64 | libghc-http-types-dev | 0.6.11-1 | - +- amd64 | libghc-http-types-prof | 0.6.11-1 | - +- amd64 | libghc-hunit-dev | 1.2.4.2-2+b1 | - +- amd64 | libghc-hunit-prof | 1.2.4.2-2+b1 | - +- amd64 | libghc-hxt-cache-dev | 9.0.2-2+b4 | - +- amd64 | libghc-hxt-cache-prof | 9.0.2-2+b4 | - +- amd64 | libghc-hxt-charproperties-dev | 9.1.1-2+b1 | - +- amd64 | libghc-hxt-charproperties-prof | 9.1.1-2+b1 | - +- amd64 | libghc-hxt-curl-dev | 9.1.1-1+b3 | - +- amd64 | libghc-hxt-curl-prof | 9.1.1-1+b3 | - +- amd64 | libghc-hxt-dev | 9.2.2-2+b3 | - +- amd64 | libghc-hxt-http-dev | 9.1.4-2+b3 | - +- amd64 | libghc-hxt-http-prof | 9.1.4-2+b3 | - +- amd64 | libghc-hxt-prof | 9.2.2-2+b3 | - +- amd64 | libghc-hxt-regex-xmlschema-dev | 9.0.4-2+b3 | - +- amd64 | libghc-hxt-regex-xmlschema-prof | 9.0.4-2+b3 | - +- amd64 | libghc-hxt-relaxng-dev | 9.1.4-1+b3 | - +- amd64 | libghc-hxt-relaxng-prof | 9.1.4-1+b3 | - +- amd64 | libghc-hxt-tagsoup-dev | 9.1.1-1+b3 | - +- amd64 | libghc-hxt-tagsoup-prof | 9.1.1-1+b3 | - +- amd64 | libghc-hxt-unicode-dev | 9.0.2-2+b1 | - +- amd64 | libghc-hxt-unicode-prof | 9.0.2-2+b1 | - +- amd64 | libghc-hxt-xpath-dev | 9.1.2-1+b3 | - +- amd64 | libghc-hxt-xpath-prof | 9.1.2-1+b3 | - +- amd64 | libghc-hxt-xslt-dev | 9.1.1-1+b3 | - +- amd64 | libghc-hxt-xslt-prof | 9.1.1-1+b3 | - +- amd64 | libghc-iconv-dev | 0.4.1.0-2+b1 | - +- amd64 | libghc-iconv-prof | 0.4.1.0-2+b1 | - +- amd64 | libghc-ieee754-dev | 0.7.3-1+b1 | - +- amd64 | libghc-ieee754-prof | 0.7.3-1+b1 | - +- amd64 | libghc-ifelse-dev | 0.85-4+b1 | - +- amd64 | libghc-ifelse-prof | 0.85-4+b1 | - +- amd64 | libghc-io-choice-dev | 0.0.1-1+b3 | - +- amd64 | libghc-io-choice-prof | 0.0.1-1+b3 | - +- amd64 | libghc-io-storage-dev | 0.3-2+b1 | - +- amd64 | libghc-io-storage-prof | 0.3-2+b1 | - +- amd64 | libghc-iospec-dev | 0.2.5-1+b2 | - +- amd64 | libghc-iospec-prof | 0.2.5-1+b2 | - +- amd64 | libghc-irc-dev | 0.5.0.0-1+b3 | - +- amd64 | libghc-iteratee-dev | 0.8.8.2-2+b1 | - +- amd64 | libghc-iteratee-prof | 0.8.8.2-2+b1 | - +- amd64 | libghc-ixset-dev | 1.0.3-2+b1 | - +- amd64 | libghc-ixset-prof | 1.0.3-2+b1 | - +- amd64 | libghc-json-dev | 0.5-2+b2 | - +- amd64 | libghc-json-prof | 0.5-2+b2 | - +- amd64 | libghc-keys-dev | 2.1.3.2-1+b1 | - +- amd64 | libghc-keys-prof | 2.1.3.2-1+b1 | - +- amd64 | libghc-knob-dev | 0.1.1-1+b1 | - +- amd64 | libghc-knob-prof | 0.1.1-1+b1 | - +- amd64 | libghc-lambdabot-utils-dev | 4.2.1-3+b3 | - +- amd64 | libghc-lambdabot-utils-prof | 4.2.1-3+b3 | - +- amd64 | libghc-language-c-dev | 0.4.2-2+b2 | - +- amd64 | libghc-language-c-prof | 0.4.2-2+b2 | - +- amd64 | libghc-language-haskell-extract-dev | 0.2.1-4+b1 | - +- amd64 | libghc-language-haskell-extract-prof | 0.2.1-4+b1 | - +- amd64 | libghc-language-javascript-dev | 0.5.4-1+b2 | - +- amd64 | libghc-language-javascript-prof | 0.5.4-1+b2 | - +- amd64 | libghc-largeword-dev | 1.0.1-2+b1 | - +- amd64 | libghc-largeword-prof | 1.0.1-2+b1 | - +- amd64 | libghc-lazysmallcheck-dev | 0.6-1+b1 | - +- amd64 | libghc-lazysmallcheck-prof | 0.6-1+b1 | - +- amd64 | libghc-ldap-dev | 0.6.6-4.1+b1 | - +- amd64 | libghc-ldap-prof | 0.6.6-4.1+b1 | - +- amd64 | libghc-leksah-server-dev | 0.12.0.4-3 | - +- amd64 | libghc-libtagc-dev | 0.12.0-2+b1 | - +- amd64 | libghc-libtagc-prof | 0.12.0-2+b1 | - +- amd64 | libghc-libxml-sax-dev | 0.7.2-2+b1 | - +- amd64 | libghc-libxml-sax-prof | 0.7.2-2+b1 | - +- amd64 | libghc-libzip-dev | 0.10-1+b2 | - +- amd64 | libghc-libzip-prof | 0.10-1+b2 | - +- amd64 | libghc-lifted-base-dev | 0.1.1-1+b1 | - +- amd64 | libghc-lifted-base-prof | 0.1.1-1+b1 | - +- amd64 | libghc-listlike-dev | 3.1.4-1+b1 | - +- amd64 | libghc-listlike-prof | 3.1.4-1+b1 | - +- amd64 | libghc-llvm-base-dev | 3.0.1.0-1+b1 | - +- amd64 | libghc-llvm-base-prof | 3.0.1.0-1+b1 | - +- amd64 | libghc-llvm-dev | 3.0.1.0-1+b1 | - +- amd64 | libghc-llvm-prof | 3.0.1.0-1+b1 | - +- amd64 | libghc-logict-dev | 0.5.0.1-1+b1 | - +- amd64 | libghc-logict-prof | 0.5.0.1-1+b1 | - +- amd64 | libghc-ltk-dev | 0.12.0.0-2+b1 | - +- amd64 | libghc-maccatcher-dev | 2.1.5-2+b3 | - +- amd64 | libghc-maccatcher-prof | 2.1.5-2+b3 | - +- amd64 | libghc-magic-dev | 1.0.8-8+b1 | - +- amd64 | libghc-magic-prof | 1.0.8-8+b1 | - +- amd64 | libghc-markov-chain-dev | 0.0.3.2-1+b1 | - +- amd64 | libghc-markov-chain-prof | 0.0.3.2-1+b1 | - +- amd64 | libghc-math-functions-dev | 0.1.1.0-2+b2 | - +- amd64 | libghc-math-functions-prof | 0.1.1.0-2+b2 | - +- amd64 | libghc-maths-dev | 0.4.3-1+b1 | - +- amd64 | libghc-maths-prof | 0.4.3-1+b1 | - +- amd64 | libghc-maybet-dev | 0.1.2-3+b2 | - +- amd64 | libghc-maybet-prof | 0.1.2-3+b2 | - +- amd64 | libghc-mbox-dev | 0.1-2+b1 | - +- amd64 | libghc-mbox-prof | 0.1-2+b1 | - +- amd64 | libghc-memotrie-dev | 0.5-1 | - +- amd64 | libghc-memotrie-prof | 0.5-1 | - +- amd64 | libghc-mersenne-random-dev | 1.0.0.1-2+b1 | - +- amd64 | libghc-mersenne-random-prof | 1.0.0.1-2+b1 | - +- amd64 | libghc-midi-dev | 0.2.0.1-1+b1 | - +- amd64 | libghc-midi-prof | 0.2.0.1-1+b1 | - +- amd64 | libghc-mime-mail-dev | 0.4.1.1-2+b3 | - +- amd64 | libghc-mime-mail-prof | 0.4.1.1-2+b3 | - +- amd64 | libghc-missingh-dev | 1.1.0.3-6+b3 | - +- amd64 | libghc-missingh-prof | 1.1.0.3-6+b3 | - +- amd64 | libghc-mmap-dev | 0.5.7-2+b1 | - +- amd64 | libghc-mmap-prof | 0.5.7-2+b1 | - +- amd64 | libghc-monad-control-dev | 0.3.1.3-1+b1 | - +- amd64 | libghc-monad-control-prof | 0.3.1.3-1+b1 | - +- amd64 | libghc-monad-loops-dev | 0.3.2.0-1 | - +- amd64 | libghc-monad-loops-prof | 0.3.2.0-1 | - +- amd64 | libghc-monad-par-dev | 0.1.0.3-2+b1 | - +- amd64 | libghc-monad-par-prof | 0.1.0.3-2+b1 | - +- amd64 | libghc-monadcatchio-mtl-dev | 0.3.0.4-2+b2 | - +- amd64 | libghc-monadcatchio-mtl-prof | 0.3.0.4-2+b2 | - +- amd64 | libghc-monadcatchio-transformers-dev | 0.3.0.0-2+b1 | - +- amd64 | libghc-monadcatchio-transformers-prof | 0.3.0.0-2+b1 | - +- amd64 | libghc-monadcryptorandom-dev | 0.4.1-1+b2 | - +- amd64 | libghc-monadcryptorandom-prof | 0.4.1-1+b2 | - +- amd64 | libghc-monadrandom-dev | 0.1.6-2+b2 | - +- amd64 | libghc-monadrandom-prof | 0.1.6-2+b2 | - +- amd64 | libghc-monads-tf-dev | 0.1.0.0-1+b2 | - +- amd64 | libghc-monads-tf-prof | 0.1.0.0-1+b2 | - +- amd64 | libghc-monoid-transformer-dev | 0.0.2-3+b1 | - +- amd64 | libghc-monoid-transformer-prof | 0.0.2-3+b1 | - +- amd64 | libghc-mtl-dev | 2.1.1-1 | - +- amd64 | libghc-mtl-prof | 2.1.1-1 | - +- amd64 | libghc-mtlparse-dev | 0.1.2-2+b2 | - +- amd64 | libghc-mtlparse-prof | 0.1.2-2+b2 | - +- amd64 | libghc-murmur-hash-dev | 0.1.0.5-2+b1 | - +- amd64 | libghc-murmur-hash-prof | 0.1.0.5-2+b1 | - +- amd64 | libghc-mwc-random-dev | 0.11.0.0-4+b1 | - +- amd64 | libghc-mwc-random-prof | 0.11.0.0-4+b1 | - +- amd64 | libghc-ncurses-dev | 0.2.1-1+b1 | - +- amd64 | libghc-ncurses-prof | 0.2.1-1+b1 | - +- amd64 | libghc-netwire-dev | 3.1.0-2+b4 | - +- amd64 | libghc-netwire-prof | 3.1.0-2+b4 | - +- amd64 | libghc-network-conduit-dev | 0.4.0.1-2 | - +- amd64 | libghc-network-conduit-prof | 0.4.0.1-2 | - +- amd64 | libghc-network-dev | 2.3.0.13-1+b2 | - ++ amd64 | libghc-network-info-dev | - | 0.2.0.1-2~bpo70+1 ++ amd64 | libghc-network-info-prof | - | 0.2.0.1-2~bpo70+1 ++ amd64 | libghc-network-multicast-dev | - | 0.0.10-1~bpo70+1 ++ amd64 | libghc-network-multicast-prof | - | 0.0.10-1~bpo70+1 +- amd64 | libghc-network-prof | 2.3.0.13-1+b2 | - +! amd64 | libghc-network-protocol-xmpp-dev | 0.4.3-1 | 0.4.4-2~bpo70+1 +! amd64 | libghc-network-protocol-xmpp-prof | 0.4.3-1 | 0.4.4-2~bpo70+1 +- amd64 | libghc-newtype-dev | 0.2-1 | - +- amd64 | libghc-newtype-prof | 0.2-1 | - +- amd64 | libghc-non-negative-dev | 0.1-2+b1 | - +- amd64 | libghc-non-negative-prof | 0.1-2+b1 | - +- amd64 | libghc-numbers-dev | 2009.8.9-2+b1 | - +- amd64 | libghc-numbers-prof | 2009.8.9-2+b1 | - +- amd64 | libghc-numeric-quest-dev | 0.2-1+b1 | - +- amd64 | libghc-numeric-quest-prof | 0.2-1+b1 | - +- amd64 | libghc-numinstances-dev | 1.0-2+b1 | - +- amd64 | libghc-numinstances-prof | 1.0-2+b1 | - +- amd64 | libghc-numtype-dev | 1.0-2+b1 | - +- amd64 | libghc-numtype-prof | 1.0-2+b1 | - +- amd64 | libghc-oeis-dev | 0.3.1-2+b3 | - +- amd64 | libghc-oeis-prof | 0.3.1-2+b3 | - +- amd64 | libghc-openal-dev | 1.3.1.3-4+b1 | - +- amd64 | libghc-openal-prof | 1.3.1.3-4+b1 | - +- amd64 | libghc-opengl-dev | 2.2.3.1-1+b1 | - +- amd64 | libghc-opengl-prof | 2.2.3.1-1+b1 | - +- amd64 | libghc-openpgp-asciiarmor-dev | 0.1-1+b2 | - +- amd64 | libghc-openpgp-asciiarmor-prof | 0.1-1+b2 | - +- amd64 | libghc-options-dev | 0.1.1-1 | - +- amd64 | libghc-options-prof | 0.1.1-1 | - +- amd64 | libghc-pandoc-dev | 1.9.4.2-2 | - +- amd64 | libghc-pandoc-prof | 1.9.4.2-2 | - +- amd64 | libghc-pandoc-types-dev | 1.9.1-1+b2 | - +- amd64 | libghc-pandoc-types-prof | 1.9.1-1+b2 | - +- amd64 | libghc-pango-dev | 0.12.2-1+b3 | - +- amd64 | libghc-pango-prof | 0.12.2-1+b3 | - +- amd64 | libghc-parallel-dev | 3.2.0.2-2+b1 | - +- amd64 | libghc-parallel-prof | 3.2.0.2-2+b1 | - +- amd64 | libghc-parseargs-dev | 0.1.3.2-2+b1 | - +- amd64 | libghc-parseargs-prof | 0.1.3.2-2+b1 | - +- amd64 | libghc-parsec2-dev | 2.1.0.1-6+b1 | - +- amd64 | libghc-parsec2-prof | 2.1.0.1-6+b1 | - +- amd64 | libghc-parsec3-dev | 3.1.2-1+b3 | - +- amd64 | libghc-parsec3-prof | 3.1.2-1+b3 | - +- amd64 | libghc-pastis-dev | 0.1.2-2+b3 | - +- amd64 | libghc-pastis-prof | 0.1.2-2+b3 | - +- amd64 | libghc-path-pieces-dev | 0.1.0-1+b2 | - +- amd64 | libghc-path-pieces-prof | 0.1.0-1+b2 | - +- amd64 | libghc-patience-dev | 0.1.1-1 | - +- amd64 | libghc-patience-prof | 0.1.1-1 | - +- amd64 | libghc-pcre-light-dev | 0.4-3+b1 | - +- amd64 | libghc-pcre-light-prof | 0.4-3+b1 | - +- amd64 | libghc-pem-dev | 0.1.1-1+b3 | - +- amd64 | libghc-pem-prof | 0.1.1-1+b3 | - +- amd64 | libghc-persistent-dev | 0.9.0.4-2+b1 | - +- amd64 | libghc-persistent-prof | 0.9.0.4-2+b1 | - +- amd64 | libghc-persistent-sqlite-dev | 0.9.0.2-2 | - +- amd64 | libghc-persistent-sqlite-prof | 0.9.0.2-2 | - +- amd64 | libghc-persistent-template-dev | 0.9.0.2-1+b1 | - +- amd64 | libghc-persistent-template-prof | 0.9.0.2-1+b1 | - +- amd64 | libghc-polyparse-dev | 1.7-1+b2 | - +- amd64 | libghc-polyparse-prof | 1.7-1+b2 | - +- amd64 | libghc-pool-conduit-dev | 0.1.0.2-1+b1 | - +- amd64 | libghc-pool-conduit-prof | 0.1.0.2-1+b1 | - +- amd64 | libghc-postgresql-libpq-dev | 0.8.2-1 | - +- amd64 | libghc-postgresql-libpq-prof | 0.8.2-1 | - +- amd64 | libghc-postgresql-simple-dev | 0.1.4.3-1+b1 | - +- amd64 | libghc-postgresql-simple-prof | 0.1.4.3-1+b1 | - +- amd64 | libghc-pretty-show-dev | 1.1.1-4+b1 | - +- amd64 | libghc-pretty-show-prof | 1.1.1-4+b1 | - +- amd64 | libghc-primes-dev | 0.2.1.0-2+b1 | - +- amd64 | libghc-primes-prof | 0.2.1.0-2+b1 | - +- amd64 | libghc-primitive-dev | 0.4.1-1+b1 | - +- amd64 | libghc-primitive-prof | 0.4.1-1+b1 | - +- amd64 | libghc-psqueue-dev | 1.1-2+b1 | - +- amd64 | libghc-psqueue-prof | 1.1-2+b1 | - +- amd64 | libghc-puremd5-dev | 2.1.0.3-2+b4 | - +- amd64 | libghc-puremd5-prof | 2.1.0.3-2+b4 | - +- amd64 | libghc-pwstore-fast-dev | 2.2-2+b4 | - +- amd64 | libghc-pwstore-fast-prof | 2.2-2+b4 | - +- amd64 | libghc-quickcheck1-dev | 1.2.0.1-2+b1 | - +- amd64 | libghc-quickcheck1-prof | 1.2.0.1-2+b1 | - +- amd64 | libghc-quickcheck2-dev | 2.4.2-1+b1 | - +- amd64 | libghc-quickcheck2-prof | 2.4.2-1+b1 | - +- amd64 | libghc-random-dev | 1.0.1.1-1+b1 | - +- amd64 | libghc-random-prof | 1.0.1.1-1+b1 | - +- amd64 | libghc-random-shuffle-dev | 0.0.3-2+b2 | - +- amd64 | libghc-random-shuffle-prof | 0.0.3-2+b2 | - +- amd64 | libghc-ranged-sets-dev | 0.3.0-2+b1 | - +- amd64 | libghc-ranged-sets-prof | 0.3.0-2+b1 | - +- amd64 | libghc-ranges-dev | 0.2.4-2+b1 | - +- amd64 | libghc-ranges-prof | 0.2.4-2+b1 | - +- amd64 | libghc-reactive-banana-dev | 0.6.0.0-1+b3 | - +- amd64 | libghc-reactive-banana-prof | 0.6.0.0-1+b3 | - +- amd64 | libghc-readline-dev | 1.0.1.0-3+b1 | - +- amd64 | libghc-readline-prof | 1.0.1.0-3+b1 | - +- amd64 | libghc-recaptcha-dev | 0.1-4+b3 | - +- amd64 | libghc-recaptcha-prof | 0.1-4+b3 | - +- amd64 | libghc-regex-base-dev | 0.93.2-2+b2 | - +- amd64 | libghc-regex-base-prof | 0.93.2-2+b2 | - +- amd64 | libghc-regex-compat-dev | 0.95.1-2+b1 | - +- amd64 | libghc-regex-compat-prof | 0.95.1-2+b1 | - +- amd64 | libghc-regex-pcre-dev | 0.94.2-2+b1 | - +- amd64 | libghc-regex-pcre-prof | 0.94.2-2+b1 | - +- amd64 | libghc-regex-posix-dev | 0.95.1-2+b1 | - +- amd64 | libghc-regex-posix-prof | 0.95.1-2+b1 | - +- amd64 | libghc-regex-tdfa-dev | 1.1.8-2+b1 | - +- amd64 | libghc-regex-tdfa-prof | 1.1.8-2+b1 | - +- amd64 | libghc-regex-tdfa-utf8-dev | 1.0-5+b3 | - +- amd64 | libghc-regex-tdfa-utf8-prof | 1.0-5+b3 | - +- amd64 | libghc-regexpr-dev | 0.5.4-2+b2 | - +- amd64 | libghc-regexpr-prof | 0.5.4-2+b2 | - +- amd64 | libghc-representable-functors-dev | 2.4.0.2-1+b1 | - +- amd64 | libghc-representable-functors-prof | 2.4.0.2-1+b1 | - +- amd64 | libghc-representable-tries-dev | 2.4.0.2-1+b1 | - +- amd64 | libghc-representable-tries-prof | 2.4.0.2-1+b1 | - +- amd64 | libghc-resource-pool-dev | 0.2.1.0-2+b4 | - +- amd64 | libghc-resource-pool-prof | 0.2.1.0-2+b4 | - +- amd64 | libghc-resourcet-dev | 0.3.2.1-1+b1 | - +- amd64 | libghc-resourcet-prof | 0.3.2.1-1+b1 | - +- amd64 | libghc-rsa-dev | 1.2.1.0-1+b2 | - +- amd64 | libghc-rsa-prof | 1.2.1.0-1+b2 | - +- amd64 | libghc-safe-dev | 0.3.3-1+b1 | - +- amd64 | libghc-safe-prof | 0.3.3-1+b1 | - +- amd64 | libghc-safecopy-dev | 0.6.1-1+b1 | - +- amd64 | libghc-safecopy-prof | 0.6.1-1+b1 | - ++ amd64 | libghc-safesemaphore-dev | - | 0.9.0-1~bpo70+1 ++ amd64 | libghc-safesemaphore-prof | - | 0.9.0-1~bpo70+1 +- amd64 | libghc-sdl-dev | 0.6.3-1+b1 | - +- amd64 | libghc-sdl-gfx-dev | 0.6.0-3+b1 | - +- amd64 | libghc-sdl-gfx-prof | 0.6.0-3+b1 | - +- amd64 | libghc-sdl-image-dev | 0.6.1-3+b1 | - +- amd64 | libghc-sdl-image-prof | 0.6.1-3+b1 | - +- amd64 | libghc-sdl-mixer-dev | 0.6.1-3+b1 | - +- amd64 | libghc-sdl-mixer-prof | 0.6.1-3+b1 | - +- amd64 | libghc-sdl-prof | 0.6.3-1+b1 | - +- amd64 | libghc-sdl-ttf-dev | 0.6.1-3+b1 | - +- amd64 | libghc-sdl-ttf-prof | 0.6.1-3+b1 | - +- amd64 | libghc-semigroupoids-dev | 1.3.1.2-1+b1 | - +- amd64 | libghc-semigroupoids-prof | 1.3.1.2-1+b1 | - +- amd64 | libghc-semigroups-dev | 0.8.3.2-1 | - +- amd64 | libghc-semigroups-prof | 0.8.3.2-1 | - +- amd64 | libghc-sendfile-dev | 0.7.6-1+b2 | - +- amd64 | libghc-sendfile-prof | 0.7.6-1+b2 | - +- amd64 | libghc-sha-dev | 1.5.0.1-1 | - +- amd64 | libghc-sha-prof | 1.5.0.1-1 | - +- amd64 | libghc-shakespeare-css-dev | 1.0.1.2-1+b1 | - +- amd64 | libghc-shakespeare-css-prof | 1.0.1.2-1+b1 | - +- amd64 | libghc-shakespeare-dev | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-i18n-dev | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-i18n-prof | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-js-dev | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-js-prof | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-prof | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-text-dev | 1.0.0.2-1+b1 | - +- amd64 | libghc-shakespeare-text-prof | 1.0.0.2-1+b1 | - +- amd64 | libghc-shellac-dev | 0.9.5.1-2+b2 | - +- amd64 | libghc-shellac-prof | 0.9.5.1-2+b2 | - +- amd64 | libghc-show-dev | 0.4.1.2-1+b2 | - +- amd64 | libghc-show-prof | 0.4.1.2-1+b2 | - +- amd64 | libghc-silently-dev | 1.1.4-1+b2 | - +- amd64 | libghc-silently-prof | 1.1.4-1+b2 | - +- amd64 | libghc-simple-sendfile-dev | 0.2.3-1+b2 | - +- amd64 | libghc-simple-sendfile-prof | 0.2.3-1+b2 | - +- amd64 | libghc-simpleea-dev | 0.1.1-2+b2 | - +- amd64 | libghc-simpleea-prof | 0.1.1-2+b2 | - +- amd64 | libghc-simpleirc-dev | 0.2.1-2+b3 | - +- amd64 | libghc-simpleirc-prof | 0.2.1-2+b3 | - +- amd64 | libghc-skein-dev | 0.1.0.7-2+b1 | - +- amd64 | libghc-skein-prof | 0.1.0.7-2+b1 | - +- amd64 | libghc-smallcheck-dev | 0.6-1+b1 | - +- amd64 | libghc-smallcheck-prof | 0.6-1+b1 | - +- amd64 | libghc-smtpclient-dev | 1.0.4-3+b3 | - +- amd64 | libghc-smtpclient-prof | 1.0.4-3+b3 | - +- amd64 | libghc-snap-core-dev | 0.8.1-1+b4 | - +- amd64 | libghc-snap-core-prof | 0.8.1-1+b4 | - +- amd64 | libghc-snap-server-dev | 0.8.1.1-1+b1 | - +- amd64 | libghc-snap-server-prof | 0.8.1.1-1+b1 | - +- amd64 | libghc-socks-dev | 0.4.1-1+b4 | - +- amd64 | libghc-socks-prof | 0.4.1-1+b4 | - +- amd64 | libghc-split-dev | 0.1.4.2-2 | - +- amd64 | libghc-split-prof | 0.1.4.2-2 | - +- amd64 | libghc-src-exts-dev | 1.11.1-3+b1 | - +- amd64 | libghc-src-exts-prof | 1.11.1-3+b1 | - +- amd64 | libghc-statevar-dev | 1.0.0.0-2+b1 | - +- amd64 | libghc-statevar-prof | 1.0.0.0-2+b1 | - +- amd64 | libghc-static-hash-dev | 0.0.1-3+b2 | - +- amd64 | libghc-static-hash-prof | 0.0.1-3+b2 | - +- amd64 | libghc-statistics-dev | 0.10.1.0-2+b2 | - +- amd64 | libghc-statistics-prof | 0.10.1.0-2+b2 | - +- amd64 | libghc-stm-dev | 2.3-1 | - +- amd64 | libghc-stm-prof | 2.3-1 | - +- amd64 | libghc-stream-dev | 0.4.6-1+b1 | - +- amd64 | libghc-stream-prof | 0.4.6-1+b1 | - +- amd64 | libghc-strict-concurrency-dev | 0.2.4.1-2+b1 | - +- amd64 | libghc-strict-concurrency-prof | 0.2.4.1-2+b1 | - +- amd64 | libghc-strict-dev | 0.3.2-2+b1 | - +- amd64 | libghc-strict-prof | 0.3.2-2+b1 | - +- amd64 | libghc-strptime-dev | 1.0.6-1 | - +- amd64 | libghc-strptime-prof | 1.0.6-1 | - +- amd64 | libghc-svgcairo-dev | 0.12.1-1+b2 | - +- amd64 | libghc-svgcairo-prof | 0.12.1-1+b2 | - +- amd64 | libghc-syb-dev | 0.3.6.1-1 | - +- amd64 | libghc-syb-prof | 0.3.6.1-1 | - +- amd64 | libghc-syb-with-class-dev | 0.6.1.3-1+b1 | - +- amd64 | libghc-syb-with-class-instances-text-dev | 0.0.1-3+b2 | - +- amd64 | libghc-syb-with-class-instances-text-prof | 0.0.1-3+b2 | - +- amd64 | libghc-syb-with-class-prof | 0.6.1.3-1+b1 | - +- amd64 | libghc-system-fileio-dev | 0.3.8-1 | - +- amd64 | libghc-system-fileio-prof | 0.3.8-1 | - +- amd64 | libghc-system-filepath-dev | 0.4.6-1+b2 | - +- amd64 | libghc-system-filepath-prof | 0.4.6-1+b2 | - +- amd64 | libghc-tagged-dev | 0.4.2.1-1 | - +- amd64 | libghc-tagged-prof | 0.4.2.1-1 | - +- amd64 | libghc-tagsoup-dev | 0.12.6-1+b3 | - +- amd64 | libghc-tagsoup-prof | 0.12.6-1+b3 | - +- amd64 | libghc-tagstream-conduit-dev | 0.3.2-1 | - +- amd64 | libghc-tagstream-conduit-prof | 0.3.2-1 | - +- amd64 | libghc-tar-dev | 0.3.2.0-2+b1 | - +- amd64 | libghc-tar-prof | 0.3.2.0-2+b1 | - +- amd64 | libghc-template-dev | 0.2.0.7-1+b1 | - +- amd64 | libghc-template-prof | 0.2.0.7-1+b1 | - +- amd64 | libghc-temporary-dev | 1.1.2.3-1+b1 | - +- amd64 | libghc-temporary-prof | 1.1.2.3-1+b1 | - +- amd64 | libghc-terminfo-dev | 0.3.2.3-1+b1 | - +- amd64 | libghc-terminfo-prof | 0.3.2.3-1+b1 | - +- amd64 | libghc-test-framework-dev | 0.6-1+b1 | - +- amd64 | libghc-test-framework-hunit-dev | 0.2.7-1+b3 | - +- amd64 | libghc-test-framework-hunit-prof | 0.2.7-1+b3 | - +- amd64 | libghc-test-framework-prof | 0.6-1+b1 | - +- amd64 | libghc-test-framework-quickcheck2-dev | 0.2.12.1-1+b1 | - +- amd64 | libghc-test-framework-quickcheck2-prof | 0.2.12.1-1+b1 | - +- amd64 | libghc-test-framework-th-dev | 0.2.2-5 | - +- amd64 | libghc-test-framework-th-prime-dev | 0.0.5-1 | - +- amd64 | libghc-test-framework-th-prime-prof | 0.0.5-1 | - +- amd64 | libghc-test-framework-th-prof | 0.2.2-5 | - +- amd64 | libghc-testpack-dev | 2.1.1-1+b2 | - +- amd64 | libghc-testpack-prof | 2.1.1-1+b2 | - +- amd64 | libghc-texmath-dev | 0.6.0.6-1+b2 | - +- amd64 | libghc-texmath-prof | 0.6.0.6-1+b2 | - +- amd64 | libghc-text-dev | 0.11.2.0-1 | - +- amd64 | libghc-text-icu-dev | 0.6.3.4-2+b2 | - +- amd64 | libghc-text-icu-prof | 0.6.3.4-2+b2 | - +- amd64 | libghc-text-prof | 0.11.2.0-1 | - +- amd64 | libghc-tinyurl-dev | 0.1.0-2+b3 | - +- amd64 | libghc-tinyurl-prof | 0.1.0-2+b3 | - +- amd64 | libghc-tls-dev | 0.9.5-1+b3 | - +- amd64 | libghc-tls-extra-dev | 0.4.6.1-2 | - +- amd64 | libghc-tls-extra-prof | 0.4.6.1-2 | - +- amd64 | libghc-tls-prof | 0.9.5-1+b3 | - +- amd64 | libghc-tokyocabinet-dev | 0.0.5-5+b3 | - +- amd64 | libghc-tokyocabinet-prof | 0.0.5-5+b3 | - +- amd64 | libghc-transformers-base-dev | 0.4.1-2+b2 | - +- amd64 | libghc-transformers-base-prof | 0.4.1-2+b2 | - +- amd64 | libghc-transformers-dev | 0.3.0.0-1 | - +- amd64 | libghc-transformers-prof | 0.3.0.0-1 | - +- amd64 | libghc-type-level-dev | 0.2.4-5 | - +- amd64 | libghc-type-level-prof | 0.2.4-5 | - +- amd64 | libghc-uniplate-dev | 1.6.7-1+b2 | - +- amd64 | libghc-uniplate-prof | 1.6.7-1+b2 | - +- amd64 | libghc-unix-bytestring-dev | 0.3.5-2+b1 | - +- amd64 | libghc-unix-bytestring-prof | 0.3.5-2+b1 | - +- amd64 | libghc-unix-compat-dev | 0.3.0.1-1+b1 | - +- amd64 | libghc-unix-compat-prof | 0.3.0.1-1+b1 | - +- amd64 | libghc-unixutils-dev | 1.50-1+b2 | - +- amd64 | libghc-unixutils-prof | 1.50-1+b2 | - +- amd64 | libghc-unlambda-dev | 0.1-2+b2 | - +- amd64 | libghc-unlambda-prof | 0.1-2+b2 | - +- amd64 | libghc-unordered-containers-dev | 0.2.1.0-1 | - +- amd64 | libghc-unordered-containers-prof | 0.2.1.0-1 | - +- amd64 | libghc-uri-dev | 0.1.6-1+b2 | - +- amd64 | libghc-uri-prof | 0.1.6-1+b2 | - +- amd64 | libghc-url-dev | 2.1.2-4+b1 | - +- amd64 | libghc-url-prof | 2.1.2-4+b1 | - +- amd64 | libghc-utf8-light-dev | 0.4.0.1-2+b1 | - +- amd64 | libghc-utf8-light-prof | 0.4.0.1-2+b1 | - +- amd64 | libghc-utf8-string-dev | 0.3.7-1+b1 | - +- amd64 | libghc-utf8-string-prof | 0.3.7-1+b1 | - +- amd64 | libghc-utility-ht-dev | 0.0.5.1-3+b1 | - +- amd64 | libghc-utility-ht-prof | 0.0.5.1-3+b1 | - +- amd64 | libghc-uuagc-cabal-dev | 1.0.2.0-1+b1 | - +- amd64 | libghc-uuagc-cabal-prof | 1.0.2.0-1+b1 | - +- amd64 | libghc-uuid-dev | 1.2.3-2+b3 | - +- amd64 | libghc-uuid-prof | 1.2.3-2+b3 | - +- amd64 | libghc-uulib-dev | 0.9.14-2 | - +- amd64 | libghc-uulib-prof | 0.9.14-2 | - +- amd64 | libghc-vault-dev | 0.2.0.0-1+b2 | - +- amd64 | libghc-vault-prof | 0.2.0.0-1+b2 | - +- amd64 | libghc-vector-algorithms-dev | 0.5.4-1+b2 | - +- amd64 | libghc-vector-algorithms-prof | 0.5.4-1+b2 | - +- amd64 | libghc-vector-dev | 0.9.1-2+b1 | - +- amd64 | libghc-vector-prof | 0.9.1-2+b1 | - +- amd64 | libghc-vector-space-dev | 0.8.1-1 | - +- amd64 | libghc-vector-space-points-dev | 0.1.1.0-1+b1 | - +- amd64 | libghc-vector-space-points-prof | 0.1.1.0-1+b1 | - +- amd64 | libghc-vector-space-prof | 0.8.1-1 | - +- amd64 | libghc-void-dev | 0.5.5.1-2 | - +- amd64 | libghc-void-prof | 0.5.5.1-2 | - +- amd64 | libghc-vte-dev | 0.12.1-1+b3 | - +- amd64 | libghc-vte-prof | 0.12.1-1+b3 | - +- amd64 | libghc-vty-dev | 4.7.0.14-1+b1 | - +- amd64 | libghc-vty-prof | 4.7.0.14-1+b1 | - +- amd64 | libghc-wai-app-file-cgi-dev | 0.5.8-1+b4 | - +- amd64 | libghc-wai-app-file-cgi-prof | 0.5.8-1+b4 | - +- amd64 | libghc-wai-app-static-dev | 1.2.0.3-1+b5 | - +- amd64 | libghc-wai-app-static-prof | 1.2.0.3-1+b5 | - +- amd64 | libghc-wai-dev | 1.2.0.2-1+b3 | - +- amd64 | libghc-wai-extra-dev | 1.2.0.4-1+b1 | - +- amd64 | libghc-wai-extra-prof | 1.2.0.4-1+b1 | - +- amd64 | libghc-wai-logger-dev | 0.1.4-1+b6 | - +- amd64 | libghc-wai-logger-prefork-dev | 0.1.3-1+b6 | - +- amd64 | libghc-wai-logger-prefork-prof | 0.1.3-1+b6 | - +- amd64 | libghc-wai-logger-prof | 0.1.4-1+b6 | - +- amd64 | libghc-wai-prof | 1.2.0.2-1+b3 | - +- amd64 | libghc-wai-test-dev | 1.2.0.2-1+b1 | - +- amd64 | libghc-wai-test-prof | 1.2.0.2-1+b1 | - +- amd64 | libghc-warp-dev | 1.2.1.1-1+b1 | - +- amd64 | libghc-warp-prof | 1.2.1.1-1+b1 | - +- amd64 | libghc-warp-tls-dev | 1.2.0.4-1+b4 | - +- amd64 | libghc-warp-tls-prof | 1.2.0.4-1+b4 | - +- amd64 | libghc-web-routes-dev | 0.25.3-2+b3 | - +- amd64 | libghc-web-routes-prof | 0.25.3-2+b3 | - +- amd64 | libghc-webkit-dev | 0.12.3-2+b1 | - +- amd64 | libghc-webkit-prof | 0.12.3-2+b1 | - +- amd64 | libghc-weighted-regexp-dev | 0.3.1.1-2+b1 | - +- amd64 | libghc-weighted-regexp-prof | 0.3.1.1-2+b1 | - +- amd64 | libghc-x11-dev | 1.5.0.1-1+b2 | - +- amd64 | libghc-x11-prof | 1.5.0.1-1+b2 | - +- amd64 | libghc-x11-xft-dev | 0.3.1-1+b2 | - +- amd64 | libghc-x11-xft-prof | 0.3.1-1+b2 | - +- amd64 | libghc-xdg-basedir-dev | 0.2.1-2+b1 | - +- amd64 | libghc-xdg-basedir-prof | 0.2.1-2+b1 | - +- amd64 | libghc-xhtml-dev | 3000.2.1-1 | - +- amd64 | libghc-xhtml-prof | 3000.2.1-1 | - +- amd64 | libghc-xml-conduit-dev | 0.7.0.2-1+b1 | - +- amd64 | libghc-xml-conduit-prof | 0.7.0.2-1+b1 | - +- amd64 | libghc-xml-dev | 1.3.12-1+b2 | - ++ amd64 | libghc-xml-hamlet-dev | - | 0.3.0.1-1~bpo70+1 ++ amd64 | libghc-xml-hamlet-prof | - | 0.3.0.1-1~bpo70+1 +- amd64 | libghc-xml-prof | 1.3.12-1+b2 | - +- amd64 | libghc-xml-types-dev | 0.3.1-2+b2 | - +- amd64 | libghc-xml-types-prof | 0.3.1-2+b2 | - +- amd64 | libghc-xml2html-dev | 0.1.2.3-1+b2 | - +- amd64 | libghc-xml2html-prof | 0.1.2.3-1+b2 | - +- amd64 | libghc-xmonad-contrib-dev | 0.10-4~deb7u1 | - +- amd64 | libghc-xmonad-contrib-prof | 0.10-4~deb7u1 | - +- amd64 | libghc-xmonad-dev | 0.10-4+b2 | - +- amd64 | libghc-xmonad-prof | 0.10-4+b2 | - +- amd64 | libghc-xss-sanitize-dev | 0.3.2-1+b1 | - +- amd64 | libghc-xss-sanitize-prof | 0.3.2-1+b1 | - +- amd64 | libghc-yaml-dev | 0.7.0.2-1+b3 | - +- amd64 | libghc-yaml-light-dev | 0.1.4-2+b2 | - +- amd64 | libghc-yaml-light-prof | 0.1.4-2+b2 | - +- amd64 | libghc-yaml-prof | 0.7.0.2-1+b3 | - +- amd64 | libghc-yesod-auth-dev | 1.0.2.1-2+b2 | - +- amd64 | libghc-yesod-auth-prof | 1.0.2.1-2+b2 | - +- amd64 | libghc-yesod-core-dev | 1.0.1.2-1+b4 | - +- amd64 | libghc-yesod-core-prof | 1.0.1.2-1+b4 | - +- amd64 | libghc-yesod-default-dev | 1.0.1.1-1+b3 | - +- amd64 | libghc-yesod-default-prof | 1.0.1.1-1+b3 | - +- amd64 | libghc-yesod-dev | 1.0.1.6-2+b2 | - +- amd64 | libghc-yesod-form-dev | 1.0.0.4-1+b2 | - +- amd64 | libghc-yesod-form-prof | 1.0.0.4-1+b2 | - +- amd64 | libghc-yesod-json-dev | 1.0.0.1-1+b4 | - +- amd64 | libghc-yesod-json-prof | 1.0.0.1-1+b4 | - +- amd64 | libghc-yesod-markdown-dev | 0.4.0-1+b3 | - +- amd64 | libghc-yesod-markdown-prof | 0.4.0-1+b3 | - +- amd64 | libghc-yesod-persistent-dev | 1.0.0.1-1+b2 | - +- amd64 | libghc-yesod-persistent-prof | 1.0.0.1-1+b2 | - +- amd64 | libghc-yesod-prof | 1.0.1.6-2+b2 | - +- amd64 | libghc-yesod-routes-dev | 1.0.1.2-1 | - +- amd64 | libghc-yesod-routes-prof | 1.0.1.2-1 | - +- amd64 | libghc-yesod-static-dev | 1.0.0.2-1+b4 | - +- amd64 | libghc-yesod-static-prof | 1.0.0.2-1+b4 | - +- amd64 | libghc-yesod-test-dev | 0.2.0.6-1 | - +- amd64 | libghc-yesod-test-prof | 0.2.0.6-1 | - +- amd64 | libghc-zip-archive-dev | 0.1.1.7-3+b2 | - +- amd64 | libghc-zip-archive-prof | 0.1.1.7-3+b2 | - +- amd64 | libghc-zlib-bindings-dev | 0.1.0.1-1 | - +- amd64 | libghc-zlib-bindings-prof | 0.1.0.1-1 | - +- amd64 | libghc-zlib-conduit-dev | 0.4.0.1-1+b1 | - +- amd64 | libghc-zlib-conduit-prof | 0.4.0.1-1+b1 | - +- amd64 | libghc-zlib-dev | 0.5.3.3-1+b1 | - +- amd64 | libghc-zlib-enum-dev | 0.2.2.1-1+b1 | - +- amd64 | libghc-zlib-enum-prof | 0.2.2.1-1+b1 | - +- amd64 | libghc-zlib-prof | 0.5.3.3-1+b1 | - +- amd64 | libghemical-dev | 3.0.0-2 | - +- amd64 | libghemical5 | 3.0.0-2 | - +- amd64 | libgif-dev | 4.1.6-10 | - +- amd64 | libgif4 | 4.1.6-10 | - +- amd64 | libgiftiio-dev | 1.0.9-1 | - +- amd64 | libgiftiio0 | 1.0.9-1 | - +- amd64 | libgig-dev | 3.3.0-2 | - +- amd64 | libgig6 | 3.3.0-2 | - +- amd64 | libgii1 | 1:1.0.2-4.1 | - +- amd64 | libgii1-dev | 1:1.0.2-4.1 | - +- amd64 | libgii1-target-x | 1:1.0.2-4.1 | - +- amd64 | libgimp2.0 | 2.8.2-2+deb7u1 | - +- amd64 | libgimp2.0-dev | 2.8.2-2+deb7u1 | - +- amd64 | libginac-dev | 1.6.2-1 | - +- amd64 | libginac2 | 1.6.2-1 | - +- amd64 | libginac2-dbg | 1.6.2-1 | - +- amd64 | libginspx-dev | 20050529-3.1 | - +- amd64 | libginspx0 | 20050529-3.1 | - +- amd64 | libgirara-dbg | 0.1.2-3 | - +- amd64 | libgirara-dev | 0.1.2-3 | - +- amd64 | libgirara-gtk2-0 | 0.1.2-3 | - +- amd64 | libgirara-gtk3-0 | 0.1.2-3 | - +- amd64 | libgirepository-1.0-1 | 1.32.1-1 | - +- amd64 | libgirepository1.0-dev | 1.32.1-1 | - +- amd64 | libgjs-dev | 1.32.0-5 | - +- amd64 | libgjs0b | 1.32.0-5 | - +- amd64 | libgksu2-0 | 2.0.13~pre1-6 | - +- amd64 | libgksu2-dev | 2.0.13~pre1-6 | - +- amd64 | libgl-gst | 3.2.4-2 | - ++ amd64 | libgl1-fglrx-glx | - | 1:13.12-4~bpo70+1 ++ amd64 | libgl1-fglrx-legacy-glx | - | 8.97.100.7-3~bpo70+1 +- amd64 | libgl1-mesa-dev | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-dri | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-dri-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-dri-experimental | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-dri-experimental-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-glx | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-glx-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-swx11 | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-swx11-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgl1-mesa-swx11-dev | 8.0.5-4+deb7u2 | - ++ amd64 | libgl1-nvidia-glx | - | 319.82-1~bpo70+1 ++ amd64 | libgl1-nvidia-legacy-173xx-glx | - | 173.14.39-1~bpo70+1 ++ amd64 | libgl1-nvidia-legacy-304xx-glx | - | 304.117-1~bpo70+1 ++ amd64 | libgl1-nvidia-legacy-96xx-glx | - | 96.43.23-7~bpo70+1 +- amd64 | libgl2ps-dev | 1.3.6-1 | - +- amd64 | libgl2ps0 | 1.3.6-1 | - +- amd64 | libgl2ps0-dbg | 1.3.6-1 | - +- amd64 | libglacier2-34 | 3.4.2-8.2 | - +- amd64 | libglade2-0 | 1:2.6.4-1 | - +- amd64 | libglade2-dev | 1:2.6.4-1 | - +- amd64 | libglade2.0-cil | 2.12.10-5 | - +- amd64 | libglade2.0-cil-dev | 2.12.10-5 | - +- amd64 | libglademm-2.4-1c2a | 2.6.7-2 | - +- amd64 | libglademm-2.4-dbg | 2.6.7-2 | - +- amd64 | libglademm-2.4-dev | 2.6.7-2 | - +- amd64 | libgladeui-1-9 | 3.6.7-2.1 | - +- amd64 | libgladeui-1-dev | 3.6.7-2.1 | - +- amd64 | libgladeui-2-0 | 3.12.1-1 | - +- amd64 | libgladeui-dev | 3.12.1-1 | - +- amd64 | libglapi-mesa | 8.0.5-4+deb7u2 | - +- amd64 | libglapi-mesa-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libglbsp-dev | 2.24-1 | - +- amd64 | libglbsp3 | 2.24-1 | - +- amd64 | libglc-dev | 0.7.2-5+b1 | - +- amd64 | libglc0 | 0.7.2-5+b1 | - +- amd64 | libgle3 | 3.1.0-7 | - +- amd64 | libgle3-dev | 3.1.0-7 | - +- amd64 | libglee0d1 | 5.4.0-1 | - +- amd64 | libglee0d1-dbg | 5.4.0-1 | - +- amd64 | libgles1-mesa | 8.0.5-4+deb7u2 | - +- amd64 | libgles1-mesa-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgles1-mesa-dev | 8.0.5-4+deb7u2 | - +- amd64 | libgles2-mesa | 8.0.5-4+deb7u2 | - +- amd64 | libgles2-mesa-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libgles2-mesa-dev | 8.0.5-4+deb7u2 | - +- amd64 | libglew-dev | 1.7.0-3 | - +- amd64 | libglew1.7 | 1.7.0-3 | - +- amd64 | libglewmx-dev | 1.7.0-3 | - +- amd64 | libglewmx1.7 | 1.7.0-3 | - +- amd64 | libglfw-dev | 2.7.2-1 | - +- amd64 | libglfw2 | 2.7.2-1 | - +- amd64 | libglib-object-introspection-perl | 0.009-1+deb7u1 | - +- amd64 | libglib-perl | 3:1.260-1 | - +- amd64 | libglib2.0-0 | 2.33.12+really2.32.4-5 | - +- amd64 | libglib2.0-0-dbg | 2.33.12+really2.32.4-5 | - +- amd64 | libglib2.0-0-refdbg | 2.33.12+really2.32.4-5 | - +- amd64 | libglib2.0-bin | 2.33.12+really2.32.4-5 | - +- amd64 | libglib2.0-cil | 2.12.10-5 | - +- amd64 | libglib2.0-cil-dev | 2.12.10-5 | - +- amd64 | libglib2.0-dev | 2.33.12+really2.32.4-5 | - +- amd64 | libglibmm-2.4-1c2a | 2.32.1-1 | - +- amd64 | libglibmm-2.4-dbg | 2.32.1-1 | - +- amd64 | libglibmm-2.4-dev | 2.32.1-1 | - +- amd64 | libglide3 | 2002.04.10ds1-7 | - +- amd64 | libglide3-dev | 2002.04.10ds1-7 | - +- amd64 | libglobus-authz-callout-error-dev | 2.2-1 | - +- amd64 | libglobus-authz-callout-error0 | 2.2-1 | - +- amd64 | libglobus-authz-dev | 2.2-1 | - +- amd64 | libglobus-authz0 | 2.2-1 | - +- amd64 | libglobus-callout-dev | 2.2-1 | - +- amd64 | libglobus-callout0 | 2.2-1 | - +- amd64 | libglobus-common-dev | 14.7-2 | - +- amd64 | libglobus-common0 | 14.7-2 | - +- amd64 | libglobus-ftp-client-dev | 7.3-1 | - +- amd64 | libglobus-ftp-client2 | 7.3-1 | - +- amd64 | libglobus-ftp-control-dev | 4.4-1 | - +- amd64 | libglobus-ftp-control1 | 4.4-1 | - +- amd64 | libglobus-gass-cache-dev | 8.1-2 | - +- amd64 | libglobus-gass-cache5 | 8.1-2 | - +- amd64 | libglobus-gass-copy-dev | 8.4-1 | - +- amd64 | libglobus-gass-copy2 | 8.4-1 | - +- amd64 | libglobus-gass-server-ez-dev | 4.3-1 | - +- amd64 | libglobus-gass-server-ez2 | 4.3-1 | - +- amd64 | libglobus-gass-transfer-dev | 7.2-1 | - +- amd64 | libglobus-gass-transfer2 | 7.2-1 | - +- amd64 | libglobus-gfork-dev | 3.2-1 | - +- amd64 | libglobus-gfork0 | 3.2-1 | - +- amd64 | libglobus-gram-client-dev | 12.4-1 | - +- amd64 | libglobus-gram-client3 | 12.4-1 | - +- amd64 | libglobus-gram-job-manager-callout-error-dev | 2.1-2 | - +- amd64 | libglobus-gram-job-manager-callout-error0 | 2.1-2 | - +- amd64 | libglobus-gram-protocol-dev | 11.3-1 | - +- amd64 | libglobus-gram-protocol3 | 11.3-1 | - +- amd64 | libglobus-gridftp-server-control-dev | 2.5-2 | - +- amd64 | libglobus-gridftp-server-control0 | 2.5-2 | - +- amd64 | libglobus-gridftp-server-dev | 6.10-2 | - +- amd64 | libglobus-gridftp-server6 | 6.10-2 | - +- amd64 | libglobus-gridmap-callout-error-dev | 1.2-2 | - +- amd64 | libglobus-gridmap-callout-error0 | 1.2-2 | - +- amd64 | libglobus-gsi-callback-dev | 4.2-1 | - +- amd64 | libglobus-gsi-callback0 | 4.2-1 | - +- amd64 | libglobus-gsi-cert-utils-dev | 8.3-1 | - +- amd64 | libglobus-gsi-cert-utils0 | 8.3-1 | - +- amd64 | libglobus-gsi-credential-dev | 5.3-1 | - +- amd64 | libglobus-gsi-credential1 | 5.3-1 | - +- amd64 | libglobus-gsi-openssl-error-dev | 2.1-2 | - +- amd64 | libglobus-gsi-openssl-error0 | 2.1-2 | - +- amd64 | libglobus-gsi-proxy-core-dev | 6.2-1 | - +- amd64 | libglobus-gsi-proxy-core0 | 6.2-1 | - +- amd64 | libglobus-gsi-proxy-ssl-dev | 4.1-2 | - +- amd64 | libglobus-gsi-proxy-ssl1 | 4.1-2 | - +- amd64 | libglobus-gsi-sysconfig-dev | 5.2-1 | - +- amd64 | libglobus-gsi-sysconfig1 | 5.2-1 | - +- amd64 | libglobus-gss-assist-dev | 8.5-1 | - +- amd64 | libglobus-gss-assist3 | 8.5-1 | - +- amd64 | libglobus-gssapi-error-dev | 4.1-2 | - +- amd64 | libglobus-gssapi-error2 | 4.1-2 | - +- amd64 | libglobus-gssapi-gsi-dev | 10.6-1 | - +- amd64 | libglobus-gssapi-gsi4 | 10.6-1 | - +- amd64 | libglobus-io-dev | 9.3-1 | - +- amd64 | libglobus-io3 | 9.3-1 | - +- amd64 | libglobus-openssl-module-dev | 3.2-1 | - +- amd64 | libglobus-openssl-module0 | 3.2-1 | - +- amd64 | libglobus-rls-client-dev | 5.2-8 | - +- amd64 | libglobus-rls-client5 | 5.2-8 | - +- amd64 | libglobus-rsl-dev | 9.1-2 | - +- amd64 | libglobus-rsl2 | 9.1-2 | - +- amd64 | libglobus-scheduler-event-generator-dev | 4.6-1 | - +- amd64 | libglobus-scheduler-event-generator0 | 4.6-1 | - +- amd64 | libglobus-usage-dev | 3.1-2 | - +- amd64 | libglobus-usage0 | 3.1-2 | - +- amd64 | libglobus-xio-dev | 3.3-1 | - +- amd64 | libglobus-xio-gsi-driver-dev | 2.3-1 | - +- amd64 | libglobus-xio-gsi-driver0 | 2.3-1 | - +- amd64 | libglobus-xio-pipe-driver-dev | 2.2-1 | - +- amd64 | libglobus-xio-pipe-driver0 | 2.2-1 | - +- amd64 | libglobus-xio-popen-driver-dev | 2.3-1 | - +- amd64 | libglobus-xio-popen-driver0 | 2.3-1 | - +- amd64 | libglobus-xio0 | 3.3-1 | - +- amd64 | libgloox-dbg | 1.0-1.1 | - +- amd64 | libgloox-dev | 1.0-1.1 | - +- amd64 | libgloox8 | 1.0-1.1 | - +- amd64 | libglpk-dev | 4.45-1 | - +- amd64 | libglpk-java | 1.0.18-1 | - +- amd64 | libglpk0 | 4.45-1 | - +- amd64 | libglpk0-dbg | 4.45-1 | - +- amd64 | libglrr-glib-dev | 20050529-3.1 | - +- amd64 | libglrr-glib0 | 20050529-3.1 | - +- amd64 | libglrr-gobject-dev | 20050529-3.1 | - +- amd64 | libglrr-gobject0 | 20050529-3.1 | - +- amd64 | libglrr-gtk-dev | 20050529-3.1 | - +- amd64 | libglrr-gtk0 | 20050529-3.1 | - +- amd64 | libglrr-widgets-dev | 20050529-3.1 | - +- amd64 | libglrr-widgets0 | 20050529-3.1 | - +- amd64 | libglu1-mesa | 8.0.5-4+deb7u2 | - +- amd64 | libglu1-mesa-dev | 8.0.5-4+deb7u2 | - +- amd64 | libgluegen2-jni | 2.0-rc5-4 | - +- amd64 | libglui-dev | 2.36-4 | - +- amd64 | libglui2c2 | 2.36-4 | - +- amd64 | libglw1-mesa | 8.0.0-1 | - +- amd64 | libglw1-mesa-dev | 8.0.0-1 | - +- amd64 | libgme-dev | 0.5.5-2 | - +- amd64 | libgme0 | 0.5.5-2 | - +- amd64 | libgmerlin-avdec-dev | 1.2.0~dfsg-1+b1 | - +- amd64 | libgmerlin-avdec1 | 1.2.0~dfsg-1+b1 | - +- amd64 | libgmerlin-common | 1.2.0~dfsg+1-1 | - +- amd64 | libgmerlin-dev | 1.2.0~dfsg+1-1 | - +- amd64 | libgmerlin0 | 1.2.0~dfsg+1-1 | - +- amd64 | libgmime-2.6-0 | 2.6.10-1 | - +- amd64 | libgmime-2.6-0-dbg | 2.6.10-1 | - +- amd64 | libgmime-2.6-dev | 2.6.10-1 | - +- amd64 | libgmlib-dev | 1.0.6-1 | - +- amd64 | libgmlib0 | 1.0.6-1 | - +- amd64 | libgmlib0-dbg | 1.0.6-1 | - +- amd64 | libgmp-dev | 2:5.0.5+dfsg-2 | - +- amd64 | libgmp-ocaml | 20021123-17+b3 | - +- amd64 | libgmp-ocaml-dev | 20021123-17+b3 | - +- amd64 | libgmp10 | 2:5.0.5+dfsg-2 | - +- amd64 | libgmp3-dev | 2:5.0.5+dfsg-2 | - +- amd64 | libgmpada-dbg | 0.0.20120331-1 | - +- amd64 | libgmpada2 | 0.0.20120331-1 | - +- amd64 | libgmpada3-dev | 0.0.20120331-1 | - +- amd64 | libgmpxx4ldbl | 2:5.0.5+dfsg-2 | - ++ amd64 | libgmsh-dev | - | 2.7.0.dfsg-1~bpo70+1 ++ amd64 | libgmsh2 | - | 2.7.0.dfsg-1~bpo70+1 +- amd64 | libgmt-dev | 4.5.7-2 | - +- amd64 | libgmt4 | 4.5.7-2 | - +- amd64 | libgmtk-dev | 1.0.6-1 | - +- amd64 | libgmtk0 | 1.0.6-1 | - +- amd64 | libgmtk0-dbg | 1.0.6-1 | - +- amd64 | libgnadecommon-dbg | 1.6.2-9 | - +- amd64 | libgnadecommon1 | 1.6.2-9 | - +- amd64 | libgnadecommon2-dev | 1.6.2-9 | - +- amd64 | libgnadeodbc-dbg | 1.6.2-9 | - +- amd64 | libgnadeodbc2 | 1.6.2-9 | - +- amd64 | libgnadeodbc2-dev | 1.6.2-9 | - +- amd64 | libgnadesqlite3-2 | 1.6.2-9 | - +- amd64 | libgnadesqlite3-2-dev | 1.6.2-9 | - +- amd64 | libgnadesqlite3-dbg | 1.6.2-9 | - +- amd64 | libgnat-4.6 | 4.6.3-8 | - +- amd64 | libgnat-4.6-dbg | 4.6.3-8 | - +- amd64 | libgnatprj4.6 | 4.6.3-8 | - +- amd64 | libgnatprj4.6-dbg | 4.6.3-8 | - +- amd64 | libgnatprj4.6-dev | 4.6.3-8 | - +- amd64 | libgnatvsn4.6 | 4.6.3-8 | - +- amd64 | libgnatvsn4.6-dbg | 4.6.3-8 | - +- amd64 | libgnatvsn4.6-dev | 4.6.3-8 | - +- amd64 | libgnelib-dev | 0.75+svn20091130-1+b1 | - +- amd64 | libgnelib-doc | 0.75+svn20091130-1+b1 | - +- amd64 | libgnelib0 | 0.75+svn20091130-1+b1 | - +- amd64 | libgnelib0-dbg | 0.75+svn20091130-1+b1 | - +- amd64 | libgnet-dev | 2.0.8-2.2 | - +- amd64 | libgnet2.0-0 | 2.0.8-2.2 | - +- amd64 | libgnokii-dev | 0.6.30+dfsg-1+b1 | - +- amd64 | libgnokii6 | 0.6.30+dfsg-1+b1 | - +- amd64 | libgnome-bluetooth-dev | 3.4.2-1 | - +- amd64 | libgnome-bluetooth10 | 3.4.2-1 | - +- amd64 | libgnome-desktop-2-17 | 2.32.1-2 | - +- amd64 | libgnome-desktop-3-2 | 3.4.2-1 | - +- amd64 | libgnome-desktop-3-dev | 3.4.2-1 | - +- amd64 | libgnome-desktop-dev | 2.32.1-2 | - +- amd64 | libgnome-keyring-dev | 3.4.1-1 | - +- amd64 | libgnome-keyring0 | 3.4.1-1 | - +- amd64 | libgnome-keyring0-dbg | 3.4.1-1 | - +- amd64 | libgnome-keyring1.0-cil | 1.0.0-4 | - +- amd64 | libgnome-keyring1.0-cil-dev | 1.0.0-4 | - +- amd64 | libgnome-mag-dev | 1:0.16.3-1 | - +- amd64 | libgnome-mag2 | 1:0.16.3-1 | - +- amd64 | libgnome-media-profiles-3.0-0 | 3.0.0-1 | - +- amd64 | libgnome-media-profiles-dev | 3.0.0-1 | - +- amd64 | libgnome-menu-3-0 | 3.4.2-5 | - +- amd64 | libgnome-menu-3-dev | 3.4.2-5 | - +- amd64 | libgnome-menu-dev | 3.0.1-4 | - +- amd64 | libgnome-menu2 | 3.0.1-4 | - +- amd64 | libgnome-speech-dev | 1:0.4.25-5 | - +- amd64 | libgnome-speech7 | 1:0.4.25-5 | - +- amd64 | libgnome-vfsmm-2.6-1c2a | 2.26.0-1 | - +- amd64 | libgnome-vfsmm-2.6-dev | 2.26.0-1 | - +- amd64 | libgnome2-0 | 2.32.1-3 | - +- amd64 | libgnome2-canvas-perl | 1.002-2+b2 | - +- amd64 | libgnome2-dbg | 2.32.1-3 | - +- amd64 | libgnome2-dev | 2.32.1-3 | - +- amd64 | libgnome2-gconf-perl | 1.044-4 | - +- amd64 | libgnome2-perl | 1.042-2+b2 | - +- amd64 | libgnome2-vfs-perl | 1.081-3+b1 | - +- amd64 | libgnome2-wnck-perl | 0.16-2+b2 | - +- amd64 | libgnome2.0-cil-dev | 2.24.2-3 | - +- amd64 | libgnome2.24-cil | 2.24.2-3 | - +- amd64 | libgnomeada-dbg | 2.24.1-7 | - +- amd64 | libgnomeada2.24.1 | 2.24.1-7 | - +- amd64 | libgnomeada2.24.1-dev | 2.24.1-7 | - +- amd64 | libgnomecanvas2-0 | 2.30.3-1.2 | - +- amd64 | libgnomecanvas2-dbg | 2.30.3-1.2 | - +- amd64 | libgnomecanvas2-dev | 2.30.3-1.2 | - +- amd64 | libgnomecanvasmm-2.6-1c2a | 2.26.0-1 | - +- amd64 | libgnomecanvasmm-2.6-dev | 2.26.0-1 | - +- amd64 | libgnomecups1.0-1 | 0.2.3-5 | - +- amd64 | libgnomecups1.0-dev | 0.2.3-5 | - +- amd64 | libgnomekbd-dev | 3.4.0.2-1 | - +- amd64 | libgnomekbd7 | 3.4.0.2-1 | - +- amd64 | libgnomemm-2.6-1c2 | 2.30.0-1 | - +- amd64 | libgnomemm-2.6-dev | 2.30.0-1 | - +- amd64 | libgnomeprint2.2-0 | 2.18.8-3 | - +- amd64 | libgnomeprint2.2-dev | 2.18.8-3 | - +- amd64 | libgnomeprintui2.2-0 | 2.18.6-3 | - +- amd64 | libgnomeprintui2.2-dev | 2.18.6-3 | - +- amd64 | libgnomeui-0 | 2.24.5-2 | - +- amd64 | libgnomeui-0-dbg | 2.24.5-2 | - +- amd64 | libgnomeui-dev | 2.24.5-2 | - +- amd64 | libgnomeuimm-2.6-1c2a | 2.28.0-1 | - +- amd64 | libgnomeuimm-2.6-dev | 2.28.0-1 | - +- amd64 | libgnomevfs2-0 | 1:2.24.4-2 | - +- amd64 | libgnomevfs2-0-dbg | 1:2.24.4-2 | - +- amd64 | libgnomevfs2-bin | 1:2.24.4-2 | - +- amd64 | libgnomevfs2-dev | 1:2.24.4-2 | - +- amd64 | libgnomevfs2-extra | 1:2.24.4-2 | - +- amd64 | libgnuift0-dev | 0.1.14-12 | - +- amd64 | libgnuift0c2a | 0.1.14-12 | - +- amd64 | libgnuplot-ocaml-dev | 0.8.3-3 | - ++ amd64 | libgnuradio-analog3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-atsc3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-atsc3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-audio3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-audio3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-blocks3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-channels3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-comedi3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-comedi3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-core3.5.3.2 | 3.5.3.2-1 | - +- amd64 | libgnuradio-digital3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-digital3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-fcd3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-fcd3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-fcdproplus0 | - | 0.0.1.1.2c80be-3~bpo70+1 ++ amd64 | libgnuradio-fec3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-fft3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-filter3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-iqbalance0 | - | 0.37.1.5.d4fd4d-1~bpo70+1 +- amd64 | libgnuradio-noaa3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-noaa3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-osmosdr0.0.0 | - | 0.1.0.55.80c4af-2~bpo70~1 +- amd64 | libgnuradio-pager3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-pager3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-pmt3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-qtgui3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-qtgui3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-runtime3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-trellis3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-trellis3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-uhd3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-uhd3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-video-sdl3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-video-sdl3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnuradio-vocoder3.5.3.2 | 3.5.3.2-1 | - ++ amd64 | libgnuradio-vocoder3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-wavelet3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ amd64 | libgnuradio-wxgui3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- amd64 | libgnustep-base-dev | 1.22.1-4 | - +- amd64 | libgnustep-base1.22 | 1.22.1-4 | - +- amd64 | libgnustep-base1.22-dbg | 1.22.1-4 | - +- amd64 | libgnustep-dl2-0d | 0.12.0-9+nmu1 | - +- amd64 | libgnustep-dl2-dev | 0.12.0-9+nmu1 | - +- amd64 | libgnustep-gui-dev | 0.20.0-3+b1 | - +- amd64 | libgnustep-gui0.20 | 0.20.0-3+b1 | - +- amd64 | libgnustep-gui0.20-dbg | 0.20.0-3+b1 | - +- amd64 | libgnutls-dev | 2.12.20-7 | - +- amd64 | libgnutls-openssl27 | 2.12.20-7 | - ++ amd64 | libgnutls-xssl0 | - | 3.2.10-2~bpo70+3 +- amd64 | libgnutls26 | 2.12.20-7 | - +- amd64 | libgnutls26-dbg | 2.12.20-7 | - ++ amd64 | libgnutls28 | - | 3.2.10-2~bpo70+3 ++ amd64 | libgnutls28-dbg | - | 3.2.10-2~bpo70+3 ++ amd64 | libgnutls28-dev | - | 3.2.10-2~bpo70+3 +- amd64 | libgnutlsxx27 | 2.12.20-7 | - ++ amd64 | libgnutlsxx28 | - | 3.2.10-2~bpo70+3 +- amd64 | libgo0 | 4.7.2-5 | - +- amd64 | libgo0-dbg | 4.7.2-5 | - +- amd64 | libgoa-1.0-0 | 3.4.2-2 | - +- amd64 | libgoa-1.0-dev | 3.4.2-2 | - +- amd64 | libgoffice-0.8-8 | 0.8.17-1.2 | - +- amd64 | libgoffice-0.8-dev | 0.8.17-1.2 | - +- amd64 | libgoffice-dbg | 0.8.17-1.2 | - +- amd64 | libgofigure-dev | 0.9.0-1+b2 | - +- amd64 | libgofigure0 | 0.9.0-1+b2 | - +- amd64 | libgomp1 | 4.7.2-5 | - +- amd64 | libgomp1-dbg | 4.7.2-5 | - +- amd64 | libgoo-canvas-perl | 0.06-1+b2 | - +- amd64 | libgoocanvas-dev | 0.15-1 | - +- amd64 | libgoocanvas3 | 0.15-1 | - +- amd64 | libgoocanvasmm-1.0-5 | 0.15.4-1 | - +- amd64 | libgoocanvasmm-dev | 0.15.4-1 | - +- amd64 | libgoogle-perftools-dev | 2.0-2 | - +- amd64 | libgoogle-perftools4 | 2.0-2 | - +- amd64 | libgoogle-perftools4-dbg | 2.0-2 | - +- amd64 | libgooglepinyin0 | 0.1.2-1 | - +- amd64 | libgooglepinyin0-dbg | 0.1.2-1 | - +- amd64 | libgooglepinyin0-dev | 0.1.2-1 | - +- amd64 | libgpac-dbg | 0.5.0~dfsg0-1 | - +- amd64 | libgpac-dev | 0.5.0~dfsg0-1 | - +- amd64 | libgpac2 | 0.5.0~dfsg0-1 | - +- amd64 | libgpds-dbg | 1.5.1-6 | - +- amd64 | libgpds-dev | 1.5.1-6 | - +- amd64 | libgpds0 | 1.5.1-6 | - +- amd64 | libgpelaunch-dev | 0.14-6 | - +- amd64 | libgpelaunch0 | 0.14-6 | - +- amd64 | libgpelaunch0-dbg | 0.14-6 | - +- amd64 | libgpepimc-dev | 0.9-4 | - +- amd64 | libgpepimc0 | 0.9-4 | - +- amd64 | libgpepimc0-dbg | 0.9-4 | - +- amd64 | libgpeschedule-dev | 0.17-4 | - +- amd64 | libgpeschedule0 | 0.17-4 | - +- amd64 | libgpeschedule0-dbg | 0.17-4 | - +- amd64 | libgpevtype-dev | 0.50-6 | - +- amd64 | libgpevtype1 | 0.50-6 | - +- amd64 | libgpevtype1-dbg | 0.50-6 | - +- amd64 | libgpewidget-dev | 0.117-6 | - +- amd64 | libgpewidget1 | 0.117-6 | - +- amd64 | libgpewidget1-dbg | 0.117-6 | - +- amd64 | libgpg-error-dev | 1.10-3.1 | - +- amd64 | libgpg-error0 | 1.10-3.1 | - +- amd64 | libgpgme++2 | 4:4.8.4-2 | - +! amd64 | libgpgme11 | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! amd64 | libgpgme11-dev | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +- amd64 | libgphoto2-2 | 2.4.14-2 | - +- amd64 | libgphoto2-2-dev | 2.4.14-2 | - +- amd64 | libgphoto2-port0 | 2.4.14-2 | - +- amd64 | libgpiv-mpi3 | 0.6.1-4 | - +- amd64 | libgpiv3 | 0.6.1-4 | - +- amd64 | libgpiv3-common | 0.6.1-4 | - +- amd64 | libgpiv3-dbg | 0.6.1-4 | - +- amd64 | libgpiv3-dev | 0.6.1-4 | - +- amd64 | libgpm-dev | 1.20.4-6 | - +- amd64 | libgpm2 | 1.20.4-6 | - +- amd64 | libgpod-cil | 0.8.2-7 | - +- amd64 | libgpod-cil-dev | 0.8.2-7 | - +- amd64 | libgpod-common | 0.8.2-7 | - +- amd64 | libgpod-dev | 0.8.2-7 | - +- amd64 | libgpod-nogtk-dev | 0.8.2-7 | - +- amd64 | libgpod4 | 0.8.2-7 | - +- amd64 | libgpod4-nogtk | 0.8.2-7 | - +- amd64 | libgportugol-dev | 1.1-2 | - +- amd64 | libgportugol0 | 1.1-2 | - +! amd64 | libgps-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libgps20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- amd64 | libgraflib1-dev | 20061220+dfsg3-2 | - +- amd64 | libgraflib1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libgrafx11-1-dev | 20061220+dfsg3-2 | - +- amd64 | libgrafx11-1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libgrantlee-core0 | 0.1.4-1 | - +- amd64 | libgrantlee-dev | 0.1.4-1 | - +- amd64 | libgrantlee-gui0 | 0.1.4-1 | - +- amd64 | libgraph4 | 2.26.3-14+deb7u1 | - +- amd64 | libgraphics-libplot-perl | 2.2.2-5+b2 | - +- amd64 | libgraphics-magick-perl | 1.3.16-1.1 | - +- amd64 | libgraphicsmagick++1-dev | 1.3.16-1.1 | - +- amd64 | libgraphicsmagick++3 | 1.3.16-1.1 | - +- amd64 | libgraphicsmagick1-dev | 1.3.16-1.1 | - +- amd64 | libgraphicsmagick3 | 1.3.16-1.1 | - +- amd64 | libgraphite-dev | 1:2.3.1-0.2 | - +- amd64 | libgraphite2-2.0.0 | 1.1.3-1 | - +- amd64 | libgraphite2-2.0.0-dbg | 1.1.3-1 | - +- amd64 | libgraphite2-dev | 1.1.3-1 | - +- amd64 | libgraphite3 | 1:2.3.1-0.2 | - +- amd64 | libgraphite3-dbg | 1:2.3.1-0.2 | - +- amd64 | libgraphviz-dev | 2.26.3-14+deb7u1 | - +- amd64 | libgretl1 | 1.9.9-1 | - +- amd64 | libgretl1-dev | 1.9.9-1 | - +- amd64 | libgrib-api-1.9.16 | 1.9.16-2+b1 | - +- amd64 | libgrib-api-dev | 1.9.16-2+b1 | - +- amd64 | libgrib-api-tools | 1.9.16-2+b1 | - +- amd64 | libgrib2c-dev | 1.2.2-2 | - +- amd64 | libgrib2c0d | 1.2.2-2 | - +- amd64 | libgridsite-dev | 1.7.16-1 | - +- amd64 | libgridsite1.7 | 1.7.16-1 | - +- amd64 | libgrilo-0.1-0 | 0.1.19-1 | - +- amd64 | libgrilo-0.1-bin | 0.1.19-1 | - +- amd64 | libgrilo-0.1-dev | 0.1.19-1 | - +- amd64 | libgringotts-dev | 1.2.10~pre3-1 | - +- amd64 | libgringotts2 | 1.2.10~pre3-1 | - +- amd64 | libgrits-dev | 0.7-1 | - +- amd64 | libgrits4 | 0.7-1 | - +- amd64 | libgrok-dev | 1.20110708.1-4 | - +- amd64 | libgrok1 | 1.20110708.1-4 | - +- amd64 | libgrss-1.0-0 | 0.5.0-1 | - +- amd64 | libgrss-dev | 0.5.0-1 | - +- amd64 | libgruel3.5.3.2 | 3.5.3.2-1 | - +- amd64 | libgs-dev | 9.05~dfsg-6.3+deb7u1 | - +- amd64 | libgs9 | 9.05~dfsg-6.3+deb7u1 | - +- amd64 | libgsasl7 | 1.8.0-2 | - +- amd64 | libgsasl7-dev | 1.8.0-2 | - +- amd64 | libgsecuredelete-dev | 0.2-1 | - +- amd64 | libgsecuredelete0 | 0.2-1 | - +- amd64 | libgsf-1-114 | 1.14.21-2.1 | - +- amd64 | libgsf-1-114-dbg | 1.14.21-2.1 | - +- amd64 | libgsf-1-dev | 1.14.21-2.1 | - +- amd64 | libgsf-bin | 1.14.21-2.1 | - +- amd64 | libgsf-gnome-1-114 | 1.14.21-2.1 | - +- amd64 | libgsf-gnome-1-114-dbg | 1.14.21-2.1 | - +- amd64 | libgsf-gnome-1-dev | 1.14.21-2.1 | - +- amd64 | libgsl0-dbg | 1.15+dfsg.2-2 | - +- amd64 | libgsl0-dev | 1.15+dfsg.2-2 | - +- amd64 | libgsl0ldbl | 1.15+dfsg.2-2 | - +- amd64 | libgsm-tools | 1.0.13-4 | - +- amd64 | libgsm0710-0 | 1.2.2-2 | - +- amd64 | libgsm0710-dbg | 1.2.2-2 | - +- amd64 | libgsm0710-dev | 1.2.2-2 | - +- amd64 | libgsm0710mux-dbg | 0.11.2-1.1 | - +- amd64 | libgsm0710mux-dev | 0.11.2-1.1 | - +- amd64 | libgsm0710mux2 | 0.11.2-1.1 | - +- amd64 | libgsm1 | 1.0.13-4 | - +- amd64 | libgsm1-dbg | 1.0.13-4 | - +- amd64 | libgsm1-dev | 1.0.13-4 | - +- amd64 | libgsmme-dev | 1.10-13.2 | - +- amd64 | libgsmme1c2a | 1.10-13.2 | - +- amd64 | libgsmsd7 | 1.31.90-1+b1 | - +- amd64 | libgsnmp0 | 0.3.0-1.1 | - +- amd64 | libgsnmp0-dbg | 0.3.0-1.1 | - +- amd64 | libgsnmp0-dev | 0.3.0-1.1 | - +- amd64 | libgsoap2 | 2.8.7-2 | - +- amd64 | libgsql-dev | 0.2.2-1.2+b1 | - +- amd64 | libgsql0 | 0.2.2-1.2+b1 | - +- amd64 | libgss-dbg | 1.0.2-1 | - +- amd64 | libgss-dev | 1.0.2-1 | - +- amd64 | libgss3 | 1.0.2-1 | - +- amd64 | libgssapi-krb5-2 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libgssapi-perl | 0.28-2 | - +- amd64 | libgssapi3-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libgssdp-1.0-3 | 0.12.2.1-2 | - +- amd64 | libgssdp-1.0-dbg | 0.12.2.1-2 | - +- amd64 | libgssdp-1.0-dev | 0.12.2.1-2 | - +- amd64 | libgssglue-dev | 0.4-2 | - +- amd64 | libgssglue1 | 0.4-2 | - +- amd64 | libgssrpc4 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libgst-dev | 3.2.4-2 | - +- amd64 | libgst7 | 3.2.4-2 | - +- amd64 | libgstbuzztard-dev | 0.5.0-2+deb7u1 | - +- amd64 | libgstbuzztard0 | 0.5.0-2+deb7u1 | - +- amd64 | libgstreamer-interfaces-perl | 0.06-2 | - +- amd64 | libgstreamer-ocaml | 0.1.0-3+b1 | - +- amd64 | libgstreamer-ocaml-dev | 0.1.0-3+b1 | - +- amd64 | libgstreamer-perl | 0.17-1 | - +- amd64 | libgstreamer-plugins-bad0.10-0 | 0.10.23-7.1 | - +- amd64 | libgstreamer-plugins-bad0.10-dev | 0.10.23-7.1 | - ++ amd64 | libgstreamer-plugins-bad1.0-0 | - | 1.0.8-1~bpo70+1 ++ amd64 | libgstreamer-plugins-bad1.0-dev | - | 1.0.8-1~bpo70+1 +- amd64 | libgstreamer-plugins-base0.10-0 | 0.10.36-1.1 | - +- amd64 | libgstreamer-plugins-base0.10-dev | 0.10.36-1.1 | - ++ amd64 | libgstreamer-plugins-base1.0-0 | - | 1.0.8-1~bpo70+1 ++ amd64 | libgstreamer-plugins-base1.0-dev | - | 1.0.8-1~bpo70+1 +- amd64 | libgstreamer0.10-0 | 0.10.36-1.2 | - +- amd64 | libgstreamer0.10-0-dbg | 0.10.36-1.2 | - +- amd64 | libgstreamer0.10-dev | 0.10.36-1.2 | - +- amd64 | libgstreamer0.9-cil | 0.9.2-4 | - ++ amd64 | libgstreamer1.0-0 | - | 1.0.8-1~bpo70+1 ++ amd64 | libgstreamer1.0-0-dbg | - | 1.0.8-1~bpo70+1 ++ amd64 | libgstreamer1.0-dev | - | 1.0.8-1~bpo70+1 +- amd64 | libgstrtspserver-0.10-0 | 0.10.8-3 | - +- amd64 | libgstrtspserver-0.10-dev | 0.10.8-3 | - +- amd64 | libgtest-dev | 1.6.0-2 | - +- amd64 | libgtextutils-dev | 0.6.2-1 | - +- amd64 | libgtextutils0 | 0.6.2-1 | - +- amd64 | libgtg-dev | 0.2+dfsg-1 | - +- amd64 | libgtg0 | 0.2+dfsg-1 | - +- amd64 | libgtk-3-0 | 3.4.2-7 | - +- amd64 | libgtk-3-0-dbg | 3.4.2-7 | - +- amd64 | libgtk-3-bin | 3.4.2-7 | - +- amd64 | libgtk-3-dev | 3.4.2-7 | - +- amd64 | libgtk-vnc-1.0-0 | 0.5.0-3.1 | - +- amd64 | libgtk-vnc-1.0-0-dbg | 0.5.0-3.1 | - +- amd64 | libgtk-vnc-1.0-dev | 0.5.0-3.1 | - +- amd64 | libgtk-vnc-2.0-0 | 0.5.0-3.1 | - +- amd64 | libgtk-vnc-2.0-0-dbg | 0.5.0-3.1 | - +- amd64 | libgtk-vnc-2.0-dev | 0.5.0-3.1 | - +- amd64 | libgtk2-gladexml-perl | 1.007-1+b2 | - +- amd64 | libgtk2-gst | 3.2.4-2 | - +- amd64 | libgtk2-imageview-perl | 0.05-1+b2 | - +- amd64 | libgtk2-notify-perl | 0.05-3+b1 | - +- amd64 | libgtk2-perl | 2:1.244-1 | - +- amd64 | libgtk2-sourceview2-perl | 0.10-1+b2 | - +- amd64 | libgtk2-spell-perl | 1.04-1 | - +- amd64 | libgtk2-trayicon-perl | 0.06-1+b2 | - +- amd64 | libgtk2-traymanager-perl | 0.05-2+b2 | - +- amd64 | libgtk2-unique-perl | 0.05-1+b2 | - +- amd64 | libgtk2.0-0 | 2.24.10-2 | - +- amd64 | libgtk2.0-0-dbg | 2.24.10-2 | - +- amd64 | libgtk2.0-bin | 2.24.10-2 | - +- amd64 | libgtk2.0-cil | 2.12.10-5 | - +- amd64 | libgtk2.0-cil-dev | 2.12.10-5 | - +- amd64 | libgtk2.0-dev | 2.24.10-2 | - +- amd64 | libgtkada-bin | 2.24.1-7 | - +- amd64 | libgtkada-dbg | 2.24.1-7 | - +- amd64 | libgtkada2.24.1 | 2.24.1-7 | - +- amd64 | libgtkada2.24.1-dev | 2.24.1-7 | - +- amd64 | libgtkdatabox-0.9.1-1 | 1:0.9.1.1-4 | - +- amd64 | libgtkdatabox-0.9.1-1-dev | 1:0.9.1.1-4 | - +- amd64 | libgtkdatabox-0.9.1-1-glade | 1:0.9.1.1-4 | - +- amd64 | libgtkdatabox-0.9.1-1-libglade | 1:0.9.1.1-4 | - +- amd64 | libgtkgl2.0-1 | 2.0.1-2 | - +- amd64 | libgtkgl2.0-dev | 2.0.1-2 | - +- amd64 | libgtkglada-dbg | 2.24.1-7 | - +- amd64 | libgtkglada2.24.1 | 2.24.1-7 | - +- amd64 | libgtkglada2.24.1-dev | 2.24.1-7 | - +- amd64 | libgtkglext1 | 1.2.0-2 | - +- amd64 | libgtkglext1-dbg | 1.2.0-2 | - +- amd64 | libgtkglext1-dev | 1.2.0-2 | - +- amd64 | libgtkglextmm-x11-1.2-0 | 1.2.0-4.1 | - +- amd64 | libgtkglextmm-x11-1.2-dev | 1.2.0-4.1 | - +- amd64 | libgtkhex-3-0 | 3.4.1-1 | - +- amd64 | libgtkhex-3-dev | 3.4.1-1 | - +- amd64 | libgtkhotkey-dev | 0.2.1-3 | - +- amd64 | libgtkhotkey1 | 0.2.1-3 | - +- amd64 | libgtkhtml-4.0-0 | 4.4.4-1 | - +- amd64 | libgtkhtml-4.0-dbg | 4.4.4-1 | - +- amd64 | libgtkhtml-4.0-dev | 4.4.4-1 | - +- amd64 | libgtkhtml-editor-3.14-0 | 3.32.2-2.1 | - +- amd64 | libgtkhtml-editor-3.14-dev | 3.32.2-2.1 | - +- amd64 | libgtkhtml-editor-4.0-0 | 4.4.4-1 | - +- amd64 | libgtkhtml-editor-4.0-dev | 4.4.4-1 | - +- amd64 | libgtkhtml3.14-19 | 3.32.2-2.1 | - +- amd64 | libgtkhtml3.14-cil-dev | 2.26.0-8 | - +- amd64 | libgtkhtml3.14-dbg | 3.32.2-2.1 | - +- amd64 | libgtkhtml3.14-dev | 3.32.2-2.1 | - +- amd64 | libgtkhtml3.16-cil | 2.26.0-8 | - +- amd64 | libgtkimageview-dev | 1.6.4+dfsg-0.1 | - +- amd64 | libgtkimageview0 | 1.6.4+dfsg-0.1 | - +- amd64 | libgtkmathview-bin | 0.8.0-8 | - +- amd64 | libgtkmathview-dev | 0.8.0-8 | - +- amd64 | libgtkmathview0c2a | 0.8.0-8 | - +- amd64 | libgtkmm-2.4-1c2a | 1:2.24.2-1 | - +- amd64 | libgtkmm-2.4-dbg | 1:2.24.2-1 | - +- amd64 | libgtkmm-2.4-dev | 1:2.24.2-1 | - +- amd64 | libgtkmm-3.0-1 | 3.4.2-1 | - +- amd64 | libgtkmm-3.0-dbg | 3.4.2-1 | - +- amd64 | libgtkmm-3.0-dev | 3.4.2-1 | - +- amd64 | libgtkpod-dev | 2.1.2-1 | - +- amd64 | libgtkpod1 | 2.1.2-1 | - +- amd64 | libgtksourceview-3.0-0 | 3.4.2-1 | - +- amd64 | libgtksourceview-3.0-dev | 3.4.2-1 | - +- amd64 | libgtksourceview2-2.0-cil | 2.26.0-8 | - +- amd64 | libgtksourceview2-cil-dev | 2.26.0-8 | - +- amd64 | libgtksourceview2.0-0 | 2.10.4-1 | - +- amd64 | libgtksourceview2.0-dev | 2.10.4-1 | - +- amd64 | libgtksourceviewmm-3.0-0 | 3.2.0-1 | - +- amd64 | libgtksourceviewmm-3.0-dbg | 3.2.0-1 | - +- amd64 | libgtksourceviewmm-3.0-dev | 3.2.0-1 | - +- amd64 | libgtkspell-3-0 | 3.0.0~hg20110814-1 | - +- amd64 | libgtkspell-3-dev | 3.0.0~hg20110814-1 | - +- amd64 | libgtkspell-dev | 2.0.16-1 | - +- amd64 | libgtkspell0 | 2.0.16-1 | - +- amd64 | libgtkstylus | 0.3-2 | - +- amd64 | libgtop2-7 | 2.28.4-3 | - +- amd64 | libgtop2-dev | 2.28.4-3 | - +- amd64 | libgts-0.7-5 | 0.7.6+darcs110121-1.1 | - +- amd64 | libgts-bin | 0.7.6+darcs110121-1.1 | - +- amd64 | libgts-dbg | 0.7.6+darcs110121-1.1 | - +- amd64 | libgts-dev | 0.7.6+darcs110121-1.1 | - +- amd64 | libguac-client-rdp0 | 0.6.0-1 | - +- amd64 | libguac-client-vnc0 | 0.6.0-1 | - +- amd64 | libguac-dev | 0.6.0-2 | - +- amd64 | libguac3 | 0.6.0-2 | - +- amd64 | libguard-perl | 1.022-1+b1 | - +- amd64 | libgucharmap-2-90-7 | 1:3.4.1.1-2.1 | - +- amd64 | libgucharmap-2-90-dev | 1:3.4.1.1-2.1 | - +- amd64 | libgudev-1.0-0 | 175-7.2 | - +- amd64 | libgudev-1.0-dev | 175-7.2 | - +- amd64 | libguess-dev | 1.1-1 | - +- amd64 | libguess1 | 1.1-1 | - +- amd64 | libguestfs-dev | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-gobject-1.0-0 | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-gobject-dev | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-java | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-ocaml | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-ocaml-dev | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-perl | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs-tools | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs0 | 1:1.18.1-1+deb7u3 | - +- amd64 | libguestfs0-dbg | 1:1.18.1-1+deb7u3 | - +- amd64 | libguichan-0.8.1-1 | 0.8.2-10+b1 | - +- amd64 | libguichan-0.8.1-1-dbg | 0.8.2-10+b1 | - +- amd64 | libguichan-allegro-0.8.1-1 | 0.8.2-10+b1 | - +- amd64 | libguichan-dev | 0.8.2-10+b1 | - +- amd64 | libguichan-opengl-0.8.1-1 | 0.8.2-10+b1 | - +- amd64 | libguichan-sdl-0.8.1-1 | 0.8.2-10+b1 | - +- amd64 | libguile-ltdl-1 | 1.6.8-10.3 | - +- amd64 | libgupnp-1.0-4 | 0.18.4-1 | - +- amd64 | libgupnp-1.0-dbg | 0.18.4-1 | - +- amd64 | libgupnp-1.0-dev | 0.18.4-1 | - +- amd64 | libgupnp-av-1.0-2 | 0.10.3-1 | - +- amd64 | libgupnp-av-1.0-dbg | 0.10.3-1 | - +- amd64 | libgupnp-av-1.0-dev | 0.10.3-1 | - +- amd64 | libgupnp-dlna-1.0-2 | 0.6.6-1 | - +- amd64 | libgupnp-dlna-1.0-dbg | 0.6.6-1 | - +- amd64 | libgupnp-dlna-1.0-dev | 0.6.6-1 | - +- amd64 | libgupnp-igd-1.0-4 | 0.2.1-2 | - +- amd64 | libgupnp-igd-1.0-dbg | 0.2.1-2 | - +- amd64 | libgupnp-igd-1.0-dev | 0.2.1-2 | - +- amd64 | libgusb-dev | 0.1.3-5 | - +- amd64 | libgusb2 | 0.1.3-5 | - +- amd64 | libgutenprint-dev | 5.2.9-1 | - +- amd64 | libgutenprint2 | 5.2.9-1 | - +- amd64 | libgutenprintui2-1 | 5.2.9-1 | - +- amd64 | libgutenprintui2-dev | 5.2.9-1 | - +- amd64 | libguytools2 | 2.0.1-1.1 | - +- amd64 | libguytools2-dev | 2.0.1-1.1 | - +- amd64 | libgv-guile | 2.26.3-14+deb7u1 | - +- amd64 | libgv-lua | 2.26.3-14+deb7u1 | - +- amd64 | libgv-perl | 2.26.3-14+deb7u1 | - +- amd64 | libgv-php5 | 2.26.3-14+deb7u1 | - +- amd64 | libgv-python | 2.26.3-14+deb7u1 | - +- amd64 | libgv-ruby | 2.26.3-14+deb7u1 | - +- amd64 | libgv-tcl | 2.26.3-14+deb7u1 | - +- amd64 | libgvc5 | 2.26.3-14+deb7u1 | - +- amd64 | libgvc5-plugins-gtk | 2.26.3-14+deb7u1 | - +- amd64 | libgvnc-1.0-0 | 0.5.0-3.1 | - +- amd64 | libgvnc-1.0-0-dbg | 0.5.0-3.1 | - +- amd64 | libgvnc-1.0-dev | 0.5.0-3.1 | - +- amd64 | libgvpr1 | 2.26.3-14+deb7u1 | - +- amd64 | libgweather-3-0 | 3.4.1-1+build1 | - +- amd64 | libgweather-3-dev | 3.4.1-1+build1 | - ++ amd64 | libgwengui-cpp0 | - | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-fox16-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-gtk2-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-qt4-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60-dbg | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60-dev | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +- amd64 | libgwrap-runtime-dev | 1.9.14-1.1 | - +- amd64 | libgwrap-runtime2 | 1.9.14-1.1 | - +- amd64 | libgwyddion2-0 | 2.28-2 | - +- amd64 | libgwyddion20-dev | 2.28-2 | - +- amd64 | libgxps-dev | 0.2.2-2 | - +- amd64 | libgxps-utils | 0.2.2-2 | - +- amd64 | libgxps2 | 0.2.2-2 | - +- amd64 | libgyoto0 | 0.0.3-5 | - +- amd64 | libgyoto0-dev | 0.0.3-5 | - ++ amd64 | libgyoto1 | - | 0.1.0-2~bpo70+1 ++ amd64 | libgyoto1-dev | - | 0.1.0-2~bpo70+1 +- amd64 | libgzstream-tulip-3.7.0 | 3.7.0dfsg-4 | - +- amd64 | libh323-1.24.0 | 1.24.0~dfsg2-1 | - +- amd64 | libh323-dbg | 1.24.0~dfsg2-1 | - +- amd64 | libh323plus-dev | 1.24.0~dfsg2-1 | - ++ amd64 | libhackrf-dev | - | 2013.07.1.16.d5cebd-2~bpo70+1 ++ amd64 | libhackrf0 | - | 2013.07.1.16.d5cebd-2~bpo70+1 +- amd64 | libhaildb-dbg | 2.3.2-1.2 | - +- amd64 | libhaildb-dev | 2.3.2-1.2 | - +- amd64 | libhaildb6 | 2.3.2-1.2 | - +- amd64 | libhal-dev | 0.5.14-8 | - +- amd64 | libhal-storage-dev | 0.5.14-8 | - +- amd64 | libhal-storage1 | 0.5.14-8 | - +- amd64 | libhal1 | 0.5.14-8 | - +- amd64 | libhamlib++-dev | 1.2.15.1-1 | - +- amd64 | libhamlib-dev | 1.2.15.1-1 | - +- amd64 | libhamlib-utils | 1.2.15.1-1 | - +- amd64 | libhamlib2 | 1.2.15.1-1 | - +- amd64 | libhamlib2++c2 | 1.2.15.1-1 | - +- amd64 | libhamlib2-perl | 1.2.15.1-1 | - +- amd64 | libhamlib2-tcl | 1.2.15.1-1 | - +- amd64 | libhandoff-dev | 0.1-5 | - +- amd64 | libhandoff0 | 0.1-5 | - +- amd64 | libhandoff0-dbg | 0.1-5 | - +- amd64 | libhangul-dev | 0.1.0-2 | - +- amd64 | libhangul1 | 0.1.0-2 | - +- amd64 | libhangul1-dbg | 0.1.0-2 | - +- amd64 | libharminv-dev | 1.3.1-9 | - +- amd64 | libharminv2 | 1.3.1-9 | - +- amd64 | libhash-fieldhash-perl | 0.12-2 | - +- amd64 | libhashkit-dev | 1.0.8-1 | - +- amd64 | libhashkit2 | 1.0.8-1 | - ++ amd64 | libhavege-dev | - | 1.7b-2~bpo70+1 ++ amd64 | libhavege1 | - | 1.7b-2~bpo70+1 ++ amd64 | libhavege1-dbg | - | 1.7b-2~bpo70+1 +- amd64 | libhawknl | 1.6.8+dfsg2-1 | - +- amd64 | libhawknl-dbg | 1.6.8+dfsg2-1 | - +- amd64 | libhawknl-dev | 1.6.8+dfsg2-1 | - +- amd64 | libhbaapi-dev | 2.2.5-1 | - +- amd64 | libhbaapi2 | 2.2.5-1 | - +- amd64 | libhbalinux-dev | 1.0.14-1 | - +- amd64 | libhbalinux2 | 1.0.14-1 | - +- amd64 | libhcrypto4-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libhd-dev | 16.0-2.2 | - +- amd64 | libhd16 | 16.0-2.2 | - +- amd64 | libhdate-dev | 1.6-1 | - +- amd64 | libhdate-perl | 1.6-1 | - +- amd64 | libhdate1 | 1.6-1 | - +- amd64 | libhdb9-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libhdf4-0 | 4.2r4-13 | - +- amd64 | libhdf4-0-alt | 4.2r4-13 | - +- amd64 | libhdf4-alt-dev | 4.2r4-13 | - +- amd64 | libhdf4-dev | 4.2r4-13 | - +- amd64 | libhdf5-7 | 1.8.8-9 | - +- amd64 | libhdf5-7-dbg | 1.8.8-9 | - +- amd64 | libhdf5-dev | 1.8.8-9 | - +- amd64 | libhdf5-mpi-dev | 1.8.8-9 | - +- amd64 | libhdf5-mpich2-7 | 1.8.8-9 | - +- amd64 | libhdf5-mpich2-7-dbg | 1.8.8-9 | - +- amd64 | libhdf5-mpich2-dev | 1.8.8-9 | - +- amd64 | libhdf5-openmpi-7 | 1.8.8-9 | - +- amd64 | libhdf5-openmpi-7-dbg | 1.8.8-9 | - +- amd64 | libhdf5-openmpi-dev | 1.8.8-9 | - +- amd64 | libhdf5-serial-dev | 1.8.8-9 | - +- amd64 | libhdfeos-dev | 2.17v1.00.dfsg.1-3 | - +- amd64 | libhdfeos0 | 2.17v1.00.dfsg.1-3 | - +- amd64 | libhdfeos5-ruby1.8 | 1.0-2+b1 | - +- amd64 | libhdfeos5-ruby1.8-dbg | 1.0-2+b1 | - +- amd64 | libhdfeos5-ruby1.9.1 | 1.0-2+b1 | - +- amd64 | libhdfeos5-ruby1.9.1-dbg | 1.0-2+b1 | - +- amd64 | libhdhomerun-dev | 20120405-1 | - +- amd64 | libhdhomerun1 | 20120405-1 | - +- amd64 | libhe5-hdfeos-dev | 5.1.13.dfsg.1-3 | - +- amd64 | libhe5-hdfeos0 | 5.1.13.dfsg.1-3 | - +- amd64 | libheartbeat2 | 1:3.0.5-3 | - +- amd64 | libheartbeat2-dev | 1:3.0.5-3 | - +- amd64 | libheimbase1-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libheimdal-kadm5-perl | 0.08-4 | - +- amd64 | libheimntlm0-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libhepmc-dev | 2.06.09-1 | - +- amd64 | libhepmc4 | 2.06.09-1 | - +- amd64 | libhepmcfio-dev | 2.06.09-1 | - +- amd64 | libhepmcfio4 | 2.06.09-1 | - +- amd64 | libhepmcinterface8 | 8.1.65-1 | - +- amd64 | libhepmcinterface8-dev | 8.1.65-1 | - +- amd64 | libherwig59-2-dev | 20061220+dfsg3-2 | - +- amd64 | libherwig59-2-gfortran | 20061220+dfsg3-2 | - +- amd64 | libhesiod-dev | 3.0.2-21 | - +- amd64 | libhesiod0 | 3.0.2-21 | - +- amd64 | libhfsp-dev | 1.0.4-12 | - +- amd64 | libhfsp0 | 1.0.4-12 | - +- amd64 | libhighgui-dev | 2.3.1-11 | - +- amd64 | libhighgui2.3 | 2.3.1-11 | - +- amd64 | libhighlight-perl | 3.9-1 | - +- amd64 | libhippocanvas-1-0 | 0.3.1-1.1 | - +- amd64 | libhippocanvas-dev | 0.3.1-1.1 | - +- amd64 | libhiredis-dbg | 0.10.1-7 | - +- amd64 | libhiredis-dev | 0.10.1-7 | - +- amd64 | libhiredis0.10 | 0.10.1-7 | - +! amd64 | libhivex-bin | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-ocaml | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-ocaml-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex0 | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex0-dbg | 1.3.6-2 | 1.3.9-1~bpo70+1 +- amd64 | libhkl-dbg | 4.0.3-4 | - +- amd64 | libhkl-dev | 4.0.3-4 | - +- amd64 | libhkl4 | 4.0.3-4 | - +- amd64 | libhmsbeagle-dev | 1.0-6 | - +- amd64 | libhmsbeagle-java | 1.0-6 | - +- amd64 | libhmsbeagle1 | 1.0-6 | - +- amd64 | libhocr-dev | 0.10.17-1+b2 | - +- amd64 | libhocr-python | 0.10.17-1+b2 | - +- amd64 | libhocr0 | 0.10.17-1+b2 | - +! amd64 | libhogweed2 | 2.4-3 | 2.7.1-1~bpo70+1 +- amd64 | libhpdf-2.2.1 | 2.2.1-1 | - +- amd64 | libhpdf-dev | 2.2.1-1 | - +- amd64 | libhpmud-dev | 3.12.6-3.1+deb7u1 | - +- amd64 | libhpmud0 | 3.12.6-3.1+deb7u1 | - +- amd64 | libhsclient-dev | 1.1.0-7-g1044a28-1 | - +- amd64 | libhsm-bin | 1:1.3.9-5 | - +- amd64 | libhtml-parser-perl | 3.69-2 | - +- amd64 | libhtml-strip-perl | 1.06-1+b2 | - +- amd64 | libhtml-template-pro-perl | 0.9509-1 | - +- amd64 | libhtml-tidy-perl | 1.50-1+b2 | - +- amd64 | libhtmlcxx-dev | 0.85-2 | - +- amd64 | libhtmlcxx3 | 0.85-2 | - +- amd64 | libhtp-dev | 0.2.6-2 | - +- amd64 | libhtp1 | 0.2.6-2 | - +- amd64 | libhtsengine-dev | 1.06-1 | - +- amd64 | libhtsengine1 | 1.06-1 | - +- amd64 | libhttp-ocaml-dev | 0.1.5-1+b2 | - +- amd64 | libhttp-parser-xs-perl | 0.14-1+b1 | - +- amd64 | libhttrack-dev | 3.46.1-1 | - +- amd64 | libhttrack2 | 3.46.1-1 | - +- amd64 | libhugs-alut-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-base-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-cabal-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-fgl-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-glut-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-haskell-src-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-haskell98-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-haxml-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-hgl-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-hunit-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-mtl-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-network-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-openal-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-opengl-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-parsec-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-quickcheck-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-stm-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-time-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-unix-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-x11-bundled | 98.200609.21-5.3 | - +- amd64 | libhugs-xhtml-bundled | 98.200609.21-5.3 | - +- amd64 | libhunspell-1.3-0 | 1.3.2-4 | - +- amd64 | libhunspell-1.3-0-dbg | 1.3.2-4 | - +- amd64 | libhunspell-dev | 1.3.2-4 | - +- amd64 | libhwloc-dev | 1.4.1-4 | - +- amd64 | libhwloc5 | 1.4.1-4 | - +- amd64 | libhx-dev | 3.12.1-1 | - +- amd64 | libhx28 | 3.12.1-1 | - +- amd64 | libhx509-5-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libhyantes-dev | 1.3.0-1 | - +- amd64 | libhyantes0 | 1.3.0-1 | - +- amd64 | libhyphen-dev | 2.8.3-2 | - +- amd64 | libhyphen0 | 2.8.3-2 | - +- amd64 | libhypre-2.8.0b | 2.8.0b-1 | - +- amd64 | libhz-dev | 0.3.16-3 | - +- amd64 | libhz0 | 0.3.16-3 | - +- amd64 | libib-util | 2.5.2.26540.ds4-1~deb7u1 | - +- amd64 | libibcm-dev | 1.0.4-1.1 | - +- amd64 | libibcm1 | 1.0.4-1.1 | - +- amd64 | libibcommon-dev | 1.1.2-20090314-1 | - +- amd64 | libibcommon1 | 1.1.2-20090314-1 | - +- amd64 | libibdm-dev | 1.2-OFED-1.4.2-1.3 | - +- amd64 | libibdm1 | 1.2-OFED-1.4.2-1.3 | - +- amd64 | libibmad-dev | 1.2.3-20090314-1.1 | - +- amd64 | libibmad1 | 1.2.3-20090314-1.1 | - +- amd64 | libibtk-dev | 0.0.14-12 | - +- amd64 | libibtk0 | 0.0.14-12 | - +- amd64 | libibumad-dev | 1.2.3-20090314-1.1 | - +- amd64 | libibumad1 | 1.2.3-20090314-1.1 | - +! amd64 | libibus-1.0-0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | libibus-1.0-dev | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- amd64 | libibus-qt-dev | 1.3.1-2.1 | - +- amd64 | libibus-qt1 | 1.3.1-2.1 | - +- amd64 | libibverbs-dev | 1.1.6-1 | - +- amd64 | libibverbs1 | 1.1.6-1 | - +- amd64 | libibverbs1-dbg | 1.1.6-1 | - +- amd64 | libical-dbg | 0.48-2 | - +- amd64 | libical-dev | 0.48-2 | - +- amd64 | libical0 | 0.48-2 | - +- amd64 | libicapapi-dev | 1:0.1.6-1.1 | - +- amd64 | libicapapi0 | 1:0.1.6-1.1 | - +- amd64 | libicapapi0-dbg | 1:0.1.6-1.1 | - +- amd64 | libicc-dev | 2.12+argyll1.4.0-8 | - +- amd64 | libicc-utils-dev | 1.6.4-1+b1 | - +- amd64 | libicc-utils2 | 1.6.4-1+b1 | - +- amd64 | libicc2 | 2.12+argyll1.4.0-8 | - +- amd64 | libice-dev | 2:1.0.8-2 | - +- amd64 | libice6 | 2:1.0.8-2 | - +- amd64 | libice6-dbg | 2:1.0.8-2 | - +- amd64 | libicebox34 | 3.4.2-8.2 | - +- amd64 | libicedb34 | 3.4.2-8.2 | - +- amd64 | libicee-dev | 1.2.0-6.1 | - +- amd64 | libicee12 | 1.2.0-6.1 | - +- amd64 | libicegrid34 | 3.4.2-8.2 | - +- amd64 | libicepatch2-34 | 3.4.2-8.2 | - +- amd64 | libicessl34 | 3.4.2-8.2 | - +- amd64 | libicestorm34 | 3.4.2-8.2 | - +- amd64 | libiceutil34 | 3.4.2-8.2 | - +- amd64 | libicexml34 | 3.4.2-8.2 | - +- amd64 | libicns-dev | 0.8.1-1 | - +- amd64 | libicns1 | 0.8.1-1 | - +- amd64 | libiconv-hook-dev | 0.0.20021209-10 | - +- amd64 | libiconv-hook1 | 0.0.20021209-10 | - +- amd64 | libics-dev | 1.5.2-3 | - +- amd64 | libics0 | 1.5.2-3 | - +- amd64 | libicu-dev | 4.8.1.1-12+deb7u1 | - +- amd64 | libicu48 | 4.8.1.1-12+deb7u1 | - +- amd64 | libicu48-dbg | 4.8.1.1-12+deb7u1 | - +- amd64 | libid3-3.8.3-dev | 3.8.3-15 | - +- amd64 | libid3-3.8.3c2a | 3.8.3-15 | - +- amd64 | libid3-tools | 3.8.3-15 | - +- amd64 | libid3tag0 | 0.15.1b-10 | - +- amd64 | libid3tag0-dev | 0.15.1b-10 | - +- amd64 | libident | 0.22-3 | - +- amd64 | libident-dev | 0.22-3 | - +- amd64 | libidl-dev | 0.8.14-0.2 | - +- amd64 | libidl0 | 0.8.14-0.2 | - +- amd64 | libidn11 | 1.25-2 | - +- amd64 | libidn11-dev | 1.25-2 | - +- amd64 | libidn2-0 | 0.8-2 | - +- amd64 | libidn2-0-dbg | 0.8-2 | - +- amd64 | libidn2-0-dev | 0.8-2 | - +- amd64 | libido-0.1-0 | 0.3.4-1 | - +- amd64 | libido-0.1-dev | 0.3.4-1 | - +- amd64 | libido3-0.1-0 | 0.3.4-1 | - +- amd64 | libido3-0.1-dev | 0.3.4-1 | - +- amd64 | libidzebra-2.0-0 | 2.0.44-3 | - +- amd64 | libidzebra-2.0-dev | 2.0.44-3 | - +- amd64 | libidzebra-2.0-mod-alvis | 2.0.44-3 | - +- amd64 | libidzebra-2.0-mod-dom | 2.0.44-3 | - +- amd64 | libidzebra-2.0-mod-grs-marc | 2.0.44-3 | - +- amd64 | libidzebra-2.0-mod-grs-regx | 2.0.44-3 | - +- amd64 | libidzebra-2.0-mod-grs-xml | 2.0.44-3 | - +- amd64 | libidzebra-2.0-mod-text | 2.0.44-3 | - +- amd64 | libidzebra-2.0-modules | 2.0.44-3 | - +- amd64 | libiec16022-0 | 0.2.4-1 | - +- amd64 | libiec16022-dev | 0.2.4-1 | - +- amd64 | libiec61883-0 | 1.2.0-0.1 | - +- amd64 | libiec61883-dev | 1.2.0-0.1 | - +- amd64 | libieee1284-3 | 0.2.11-10 | - +- amd64 | libieee1284-3-dev | 0.2.11-10 | - +- amd64 | libifd-cyberjack6 | 3.99.5final.sp03-1 | - +- amd64 | libifp-dev | 1.0.0.2-5 | - +- amd64 | libifp4 | 1.0.0.2-5 | - +- amd64 | libifstat-dev | 1.1-8 | - +- amd64 | libigraph0 | 0.5.4-2 | - +- amd64 | libigraph0-dev | 0.5.4-2 | - +- amd64 | libigstk4 | 4.4.0-2+b1 | - +- amd64 | libigstk4-dbg | 4.4.0-2+b1 | - +- amd64 | libigstk4-dev | 4.4.0-2+b1 | - +- amd64 | libijs-0.35 | 0.35-8 | - +- amd64 | libijs-dev | 0.35-8 | - +- amd64 | libiksemel-dev | 1.2-4 | - +- amd64 | libiksemel-utils | 1.2-4 | - +- amd64 | libiksemel3 | 1.2-4 | - +- amd64 | libikvm-native | 7.0.4335.0+ds-1 | - +- amd64 | libilmbase-dev | 1.0.1-4 | - +- amd64 | libilmbase6 | 1.0.1-4 | - +- amd64 | libimage-exif-perl | 2.01-1 | - +- amd64 | libimage-imlib2-perl | 2.03-1+b1 | - +- amd64 | libimage-librsvg-perl | 0.07-6+b1 | - +- amd64 | libimage-seek-perl | 0.02-1+b2 | - +- amd64 | libimager-perl | 0.91+dfsg-2 | - +- amd64 | libimager-qrcode-perl | 0.033-1+b1 | - +- amd64 | libimdi-dev | 1.4.0-8 | - +- amd64 | libimdi0 | 1.4.0-8 | - +- amd64 | libiml-dev | 1.0.3-4.2 | - +- amd64 | libiml0 | 1.0.3-4.2 | - +- amd64 | libimlib2 | 1.4.5-1 | - +- amd64 | libimlib2-dev | 1.4.5-1 | - +- amd64 | libimlib2-ruby | 0.5.2-2.1 | - +- amd64 | libimobiledevice-dev | 1.1.1-4 | - +- amd64 | libimobiledevice-utils | 1.1.1-4 | - +- amd64 | libimobiledevice2 | 1.1.1-4 | - +- amd64 | libimobiledevice2-dbg | 1.1.1-4 | - +- amd64 | libindi-dev | 0.9.1-2 | - +- amd64 | libindi0b | 0.9.1-2 | - +- amd64 | libindicate-dev | 0.6.92-1 | - +- amd64 | libindicate-gtk-dev | 0.6.92-1 | - +- amd64 | libindicate-gtk3 | 0.6.92-1 | - +- amd64 | libindicate-gtk3-3 | 0.6.92-1 | - +- amd64 | libindicate-gtk3-dev | 0.6.92-1 | - +- amd64 | libindicate-qt-dev | 0.2.5.91-5 | - +- amd64 | libindicate-qt1 | 0.2.5.91-5 | - +- amd64 | libindicate5 | 0.6.92-1 | - +- amd64 | libindicator-dev | 0.5.0-1 | - +- amd64 | libindicator-messages-status-provider-dev | 0.6.0-1 | - +- amd64 | libindicator-messages-status-provider1 | 0.6.0-1 | - +- amd64 | libindicator-tools | 0.5.0-1 | - +- amd64 | libindicator3-7 | 0.5.0-1 | - +- amd64 | libindicator3-dev | 0.5.0-1 | - +- amd64 | libindicator3-tools | 0.5.0-1 | - +- amd64 | libindicator7 | 0.5.0-1 | - +- amd64 | libindigo-dev | 1.0.0-2 | - +- amd64 | libindigo0d | 1.0.0-2 | - +- amd64 | libindirect-perl | 0.26-1+b1 | - +- amd64 | libinfgtk3-0.5-0 | 0.5.2-6.1 | - +- amd64 | libinfinity-0.5-0 | 0.5.2-6.1 | - +- amd64 | libinfinity-0.5-dbg | 0.5.2-6.1 | - +- amd64 | libinfinity-0.5-dev | 0.5.2-6.1 | - +- amd64 | libini-config-dev | 0.1.3-2 | - +- amd64 | libini-config2 | 0.1.3-2 | - +- amd64 | libinifiles-ocaml | 1.2-2+b1 | - +- amd64 | libinifiles-ocaml-dev | 1.2-2+b1 | - +- amd64 | libinnodb-dbg | 1.0.6.6750-1 | - +- amd64 | libinnodb-dev | 1.0.6.6750-1 | - +- amd64 | libinnodb3 | 1.0.6.6750-1 | - +- amd64 | libinotify-ocaml | 1.0-1+b3 | - +- amd64 | libinotify-ocaml-dev | 1.0-1+b3 | - +- amd64 | libinotifytools0 | 3.14-1 | - +- amd64 | libinotifytools0-dev | 3.14-1 | - +- amd64 | libinput-pad-dev | 1.0.1-2 | - +- amd64 | libinput-pad-xtest | 1.0.1-2 | - +- amd64 | libinput-pad1 | 1.0.1-2 | - +- amd64 | libinsighttoolkit3-dev | 3.20.1+git20120521-3 | - +- amd64 | libinsighttoolkit3.20 | 3.20.1+git20120521-3 | - +- amd64 | libinstpatch-1.0-0 | 1.0.0-3 | - +- amd64 | libinstpatch-1.0-0-dbg | 1.0.0-3 | - +- amd64 | libinstpatch-dev | 1.0.0-3 | - +- amd64 | libint-dbg | 1.1.4-1 | - +- amd64 | libint-dev | 1.1.4-1 | - +- amd64 | libint1 | 1.1.4-1 | - +- amd64 | libinternals-perl | 1.1-1+b1 | - +- amd64 | libintl-xs-perl | 1.20-1+b2 | - +- amd64 | libinventor0 | 2.1.5-10-16 | - +- amd64 | libio-aio-perl | 4.15-1 | - +- amd64 | libio-dirent-perl | 0.05-1 | - +- amd64 | libio-epoll-perl | 0.03-1 | - +- amd64 | libio-interface-perl | 1.06-1+b1 | - +- amd64 | libio-pty-perl | 1:1.08-1+b2 | - +- amd64 | libio-socket-multicast-perl | 1.12-1+b2 | - +- amd64 | libiodbc2 | 3.52.7-2+deb7u1 | - +- amd64 | libiodbc2-dev | 3.52.7-2+deb7u1 | - +- amd64 | libion-dev | 3.0.1~dfsg1-1 | - +- amd64 | libion0 | 3.0.1~dfsg1-1 | - +- amd64 | libipa-hbac-dev | 1.8.4-2 | - +- amd64 | libipa-hbac0 | 1.8.4-2 | - +- amd64 | libipathverbs-dev | 1.2-1 | - +- amd64 | libipathverbs1 | 1.2-1 | - +- amd64 | libipathverbs1-dbg | 1.2-1 | - +- amd64 | libipc-sharelite-perl | 0.17-2 | - +- amd64 | libipe-dev | 7.1.2-1 | - +- amd64 | libipe7.1.2 | 7.1.2-1 | - +- amd64 | libipmiconsole-dev | 1.1.5-3 | - +- amd64 | libipmiconsole2 | 1.1.5-3 | - +- amd64 | libipmidetect-dev | 1.1.5-3 | - +- amd64 | libipmidetect0 | 1.1.5-3 | - +- amd64 | libipmimonitoring-dev | 1.1.5-3 | - +- amd64 | libipmimonitoring5 | 1.1.5-3 | - +- amd64 | libipset-dev | 6.12.1-1 | - +- amd64 | libipset2 | 6.12.1-1 | - +- amd64 | libiptables-ipv4-ipqueue-perl | 1.25-3+b2 | - +- amd64 | libiptcdata-bin | 1.0.4-3 | - +- amd64 | libiptcdata0 | 1.0.4-3 | - +- amd64 | libiptcdata0-dbg | 1.0.4-3 | - +- amd64 | libiptcdata0-dev | 1.0.4-3 | - +- amd64 | libircclient-dev | 1.3+dfsg1-3 | - +- amd64 | libircclient1 | 1.3+dfsg1-3 | - +- amd64 | libirman-dev | 0.4.4-2 | - +- amd64 | libirrlicht-dev | 1.7.3+dfsg1-4 | - +- amd64 | libirrlicht1.7a | 1.7.3+dfsg1-4 | - +- amd64 | libirrlicht1.7a-dbg | 1.7.3+dfsg1-4 | - +- amd64 | libisajet758-3-dev | 20061220+dfsg3-2 | - +- amd64 | libisajet758-3-gfortran | 20061220+dfsg3-2 | - +- amd64 | libisc84 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | libisccc80 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | libisccfg82 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | libiscsi-bin | 1.4.0-3 | - +- amd64 | libiscsi-dev | 1.4.0-3 | - +- amd64 | libiscsi1 | 1.4.0-3 | - +- amd64 | libisl-dbg | 0.10-3 | - +- amd64 | libisl-dev | 0.10-3 | - +- amd64 | libisl10 | 0.10-3 | - +- amd64 | libiso9660-8 | 0.83-4 | - +- amd64 | libiso9660-dev | 0.83-4 | - +- amd64 | libisoburn-dbg | 1.2.2-2 | - +- amd64 | libisoburn-dev | 1.2.2-2 | - +- amd64 | libisoburn1 | 1.2.2-2 | - +- amd64 | libisofs-dbg | 1.2.2-1 | - +- amd64 | libisofs-dev | 1.2.2-1 | - +- amd64 | libisofs6 | 1.2.2-1 | - +- amd64 | libitalc | 1:1.0.13-1.4 | - ++ amd64 | libitalccore | - | 1:2.0.1-3~bpo7+1 +- amd64 | libitext-java-gcj | 2.1.7-3+deb7u1 | - +- amd64 | libitl-dev | 0.7.0-3 | - +- amd64 | libitl-gobject-dev | 0.2-1 | - +- amd64 | libitl-gobject0 | 0.2-1 | - +- amd64 | libitl0 | 0.7.0-3 | - +- amd64 | libitm1 | 4.7.2-5 | - +- amd64 | libitm1-dbg | 4.7.2-5 | - +- amd64 | libitpp-dev | 4.2-4 | - +- amd64 | libitpp7 | 4.2-4 | - +- amd64 | libitpp7-dbg | 4.2-4 | - +- amd64 | libitsol-dev | 1.0.0-2 | - +- amd64 | libitsol1 | 1.0.0-2 | - +- amd64 | libiv-unidraw1 | 1.2.10a1-1 | - +- amd64 | libiv1 | 1.2.10a1-1 | - +- amd64 | libivykis-dev | 0.30.1-2 | - +- amd64 | libivykis0 | 0.30.1-2 | - +- amd64 | libivykis0-dbg | 0.30.1-2 | - +- amd64 | libiw-dev | 30~pre9-8 | - +- amd64 | libiw30 | 30~pre9-8 | - +- amd64 | libixp | 0.5-5 | - +- amd64 | libjack-dev | 1:0.121.3+20120418git75e3e20b-2.1 | - +- amd64 | libjack-jackd2-0 | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- amd64 | libjack-jackd2-dev | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- amd64 | libjack0 | 1:0.121.3+20120418git75e3e20b-2.1 | - +- amd64 | libjalali-dev | 0.4.0-1.1 | - +- amd64 | libjalali0 | 0.4.0-1.1 | - +- amd64 | libjana-dev | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana-ecal-dev | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana-ecal0 | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana-examples | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana-gtk-dev | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana-gtk0 | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana-test | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana0 | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjana0-dbg | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- amd64 | libjansson-dbg | 2.3.1-2 | - +- amd64 | libjansson-dev | 2.3.1-2 | - +- amd64 | libjansson4 | 2.3.1-2 | - +- amd64 | libjasper-dev | 1.900.1-13 | - +- amd64 | libjasper-runtime | 1.900.1-13 | - +- amd64 | libjasper1 | 1.900.1-13 | - +- amd64 | libjaula-dev | 1.4.0-3 | - +- amd64 | libjaula-doc | 1.4.0-3 | - +- amd64 | libjaula1 | 1.4.0-3 | - ++ amd64 | libjava-gmsh2 | - | 2.7.0.dfsg-1~bpo70+1 +- amd64 | libjava-gnome-jni | 4.1.1-4 | - +- amd64 | libjava3d-jni | 1.5.2+dfsg-8 | - +- amd64 | libjavascript-minifier-xs-perl | 0.09-1+b2 | - +- amd64 | libjavascriptcoregtk-1.0-0 | 1.8.1-3.4 | - +- amd64 | libjavascriptcoregtk-1.0-0-dbg | 1.8.1-3.4 | - +- amd64 | libjavascriptcoregtk-1.0-dev | 1.8.1-3.4 | - +- amd64 | libjavascriptcoregtk-3.0-0 | 1.8.1-3.4 | - +- amd64 | libjavascriptcoregtk-3.0-0-dbg | 1.8.1-3.4 | - +- amd64 | libjavascriptcoregtk-3.0-dev | 1.8.1-3.4 | - +- amd64 | libjaxp1.3-java-gcj | 1.3.05-2 | - +- amd64 | libjbig-dev | 2.0-2 | - +- amd64 | libjbig0 | 2.0-2 | - +- amd64 | libjbig2dec0 | 0.11+20120125-1 | - +- amd64 | libjbig2dec0-dev | 0.11+20120125-1 | - +- amd64 | libjcode-pm-perl | 2.06-1 | - +- amd64 | libjconv-bin | 2.8-6+b1 | - +- amd64 | libjconv-dev | 2.8-6+b1 | - +- amd64 | libjconv2 | 2.8-6+b1 | - +- amd64 | libjemalloc-dev | 3.0.0-3 | - +- amd64 | libjemalloc1 | 3.0.0-3 | - +- amd64 | libjemalloc1-dbg | 3.0.0-3 | - +- amd64 | libjetty-extra | 6.1.26-1 | - +- amd64 | libjffi-jni | 1.0.2-9 | - +- amd64 | libjhdf4-java | 2.8.0-5 | - +- amd64 | libjhdf4-jni | 2.8.0-5 | - +- amd64 | libjhdf5-java | 2.8.0-5 | - +- amd64 | libjhdf5-jni | 2.8.0-5 | - +- amd64 | libjim-dev | 0.73-3 | - +- amd64 | libjim0debian2 | 0.73-3 | - +- amd64 | libjinput-jni | 20100502+dfsg-7 | - +- amd64 | libjmagick6-jni | 6.2.6-0-8+b2 | - +- amd64 | libjna-java | 3.2.7-4 | - +- amd64 | libjogl-jni | 1.1.1+dak1-12 | - +- amd64 | libjogl2-jni | 2.0-rc5-2 | - +- amd64 | libjpeg-progs | 8d-1 | - +- amd64 | libjpeg62 | 6b1-3 | - +- amd64 | libjpeg62-dbg | 6b1-3 | - +- amd64 | libjpeg62-dev | 6b1-3 | - +- amd64 | libjpeg8 | 8d-1 | - +- amd64 | libjpeg8-dbg | 8d-1 | - +- amd64 | libjpeg8-dev | 8d-1 | - +- amd64 | libjpgalleg4-dev | 2:4.4.2-2.1 | - +- amd64 | libjpgalleg4.4 | 2:4.4.2-2.1 | - +- amd64 | libjs-of-ocaml | 1.2-2 | - +- amd64 | libjs-of-ocaml-dev | 1.2-2 | - ++ amd64 | libjson-c-dev | - | 0.11-3~bpo7+1 ++ amd64 | libjson-c2 | - | 0.11-3~bpo7+1 ++ amd64 | libjson-c2-dbg | - | 0.11-3~bpo7+1 +- amd64 | libjson-glib-1.0-0 | 0.14.2-1 | - +- amd64 | libjson-glib-1.0-0-dbg | 0.14.2-1 | - +- amd64 | libjson-glib-dev | 0.14.2-1 | - +- amd64 | libjson-spirit-dev | 4.04-1+b1 | - +- amd64 | libjson-static-camlp4-dev | 0.9.8-1+b5 | - +- amd64 | libjson-wheel-ocaml-dev | 1.0.6-2+b8 | - +- amd64 | libjson-xs-perl | 2.320-1+b1 | - +! amd64 | libjson0 | 0.10-1.2 | 0.11-3~bpo7+1 +- amd64 | libjson0-dbg | 0.10-1.2 | - +! amd64 | libjson0-dev | 0.10-1.2 | 0.11-3~bpo7+1 +- amd64 | libjsoncpp-dev | 0.6.0~rc2-3 | - +- amd64 | libjsoncpp0 | 0.6.0~rc2-3 | - +- amd64 | libjss-java | 4.3.1-4 | - +- amd64 | libjte-dev | 1.19-1 | - +- amd64 | libjte1 | 1.19-1 | - +- amd64 | libjthread-dbg | 1.3.1-3 | - +- amd64 | libjthread-dev | 1.3.1-3 | - +- amd64 | libjthread1.3.1 | 1.3.1-3 | - +- amd64 | libjudy-dev | 1.0.5-1 | - +- amd64 | libjudydebian1 | 1.0.5-1 | - +- amd64 | libjuman-dev | 5.1-2.1 | - +- amd64 | libjuman4 | 5.1-2.1 | - +- amd64 | libjxgrabkey-jni | 0.3.2-6 | - +- amd64 | libk3b-dev | 2.0.2-6 | - +- amd64 | libk3b6 | 2.0.2-6 | - +- amd64 | libk3b6-extracodecs | 2.0.2-6 | - +- amd64 | libk5crypto3 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkabc4 | 4:4.8.4-2 | - +- amd64 | libkactivities-bin | 4:4.8.4-1 | - +- amd64 | libkactivities-dbg | 4:4.8.4-1 | - +- amd64 | libkactivities-dev | 4:4.8.4-1 | - +- amd64 | libkactivities6 | 4:4.8.4-1 | - +- amd64 | libkadm5clnt-mit8 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkadm5clnt7-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libkadm5srv-mit8 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkadm5srv8-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libkafs0-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libkakasi2 | 2.3.5~pre1+cvs20071101-1 | - +- amd64 | libkakasi2-dev | 2.3.5~pre1+cvs20071101-1 | - +- amd64 | libkal-dev | 0.9.0-1 | - +- amd64 | libkalarmcal2 | 4:4.8.4-2 | - +- amd64 | libkarma-dev | 0.1.2-2.3 | - +- amd64 | libkarma0 | 0.1.2-2.3 | - +- amd64 | libkasten1controllers1 | 4:4.8.4+dfsg-1 | - +- amd64 | libkasten1core1 | 4:4.8.4+dfsg-1 | - +- amd64 | libkasten1gui1 | 4:4.8.4+dfsg-1 | - +- amd64 | libkasten1okteta1controllers1 | 4:4.8.4+dfsg-1 | - +- amd64 | libkasten1okteta1core1 | 4:4.8.4+dfsg-1 | - +- amd64 | libkasten1okteta1gui1 | 4:4.8.4+dfsg-1 | - +- amd64 | libkate-dev | 0.4.1-1 | - +- amd64 | libkate-tools | 0.4.1-1 | - +- amd64 | libkate1 | 0.4.1-1 | - +- amd64 | libkate1-dbg | 0.4.1-1 | - +- amd64 | libkateinterfaces4 | 4:4.8.4-1 | - +- amd64 | libkatepartinterfaces4 | 4:4.8.4-1 | - +- amd64 | libkaya-gd-dev | 0.4.4-6 | - +- amd64 | libkaya-gl-dev | 0.4.4-6 | - +- amd64 | libkaya-mysql-dev | 0.4.4-6 | - +- amd64 | libkaya-ncurses-dev | 0.4.4-6 | - +- amd64 | libkaya-ncursesw-dev | 0.4.4-6 | - +- amd64 | libkaya-pgsql-dev | 0.4.4-6 | - +- amd64 | libkaya-sdl-dev | 0.4.4-6 | - +- amd64 | libkaya-sqlite3-dev | 0.4.4-6 | - +- amd64 | libkblog4 | 4:4.8.4-2 | - +- amd64 | libkcal4 | 4:4.8.4-2 | - +- amd64 | libkcalcore4 | 4:4.8.4-2 | - +- amd64 | libkcalutils4 | 4:4.8.4-2 | - +- amd64 | libkcddb-dev | 4:4.8.4-2 | - +- amd64 | libkcddb4 | 4:4.8.4-2 | - +- amd64 | libkcmutils4 | 4:4.8.4-4 | - +- amd64 | libkdb5-6 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkdc2-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libkdcraw-dev | 4:4.8.4-1 | - +- amd64 | libkdcraw20 | 4:4.8.4-1 | - +- amd64 | libkdcraw20-dbg | 4:4.8.4-1 | - +- amd64 | libkde3support4 | 4:4.8.4-4 | - +- amd64 | libkdeclarative5 | 4:4.8.4-4 | - +- amd64 | libkdecorations4 | 4:4.8.4-6 | - +- amd64 | libkdecore5 | 4:4.8.4-4 | - +- amd64 | libkdeedu-dbg | 4:4.8.4-1 | - +- amd64 | libkdeedu-dev | 4:4.8.4-1 | - +- amd64 | libkdegames-dev | 4:4.8.4-3 | - +- amd64 | libkdegames5a | 4:4.8.4-3 | - +- amd64 | libkdepim4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libkdesu5 | 4:4.8.4-4 | - +- amd64 | libkdeui5 | 4:4.8.4-4 | - +- amd64 | libkdewebkit5 | 4:4.8.4-4 | - +- amd64 | libkdnssd4 | 4:4.8.4-4 | - +- amd64 | libkeduvocdocument4 | 4:4.8.4-1 | - +- amd64 | libkemoticons4 | 4:4.8.4-4 | - +- amd64 | libkephal4abi1 | 4:4.8.4-6 | - +- amd64 | libkernlib1-dev | 20061220+dfsg3-2 | - +- amd64 | libkernlib1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libkexiv2-10 | 4:4.8.4-1 | - +- amd64 | libkexiv2-dbg | 4:4.8.4-1 | - +- amd64 | libkexiv2-dev | 4:4.8.4-1 | - +- amd64 | libkeybinder-dev | 0.2.2-4 | - +- amd64 | libkeybinder0 | 0.2.2-4 | - +- amd64 | libkeyutils-dev | 1.5.5-3 | - +- amd64 | libkeyutils1 | 1.5.5-3 | - +- amd64 | libkfile4 | 4:4.8.4-4 | - +- amd64 | libkggzgames4 | 4:4.8.4-3 | - +- amd64 | libkggzmod4 | 4:4.8.4-3 | - +- amd64 | libkggznet4 | 4:4.8.4-3 | - +- amd64 | libkholidays4 | 4:4.8.4-2 | - +- amd64 | libkhtml5 | 4:4.8.4-4 | - +- amd64 | libkibi-dbg | 0.1-1 | - +- amd64 | libkibi-dev | 0.1-1 | - +- amd64 | libkibi0 | 0.1-1 | - +- amd64 | libkidletime4 | 4:4.8.4-4 | - +- amd64 | libkimap4 | 4:4.8.4-2 | - +- amd64 | libkimproxy4 | 4:4.8.4-4 | - +- amd64 | libkinosearch1-perl | 1.00-1+b2 | - +- amd64 | libkio5 | 4:4.8.4-4 | - +- amd64 | libkipi-dbg | 4:4.8.4-1 | - +- amd64 | libkipi-dev | 4:4.8.4-1 | - +- amd64 | libkipi8 | 4:4.8.4-1 | - +- amd64 | libkiten-dev | 4:4.8.4-1 | - +- amd64 | libkiten4abi1 | 4:4.8.4-1 | - +- amd64 | libkitware-mummy-runtime1.0-cil | 1.0.2-5 | - +- amd64 | libkjsapi4 | 4:4.8.4-4 | - +- amd64 | libkjsembed4 | 4:4.8.4-4 | - +- amd64 | libklatexformula3 | 3.2.6-1 | - +- amd64 | libklatexformula3-dev | 3.2.6-1 | - +- amd64 | libkldap4 | 4:4.8.4-2 | - +- amd64 | libkleo4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libklibc | 2.0.1-3.1 | - +- amd64 | libklibc-dev | 2.0.1-3.1 | - +- amd64 | libklu1.1.0 | 1:3.4.0-3 | - +- amd64 | libkmahjongglib4 | 4:4.8.4-3 | - +- amd64 | libkmbox4 | 4:4.8.4-2 | - +- amd64 | libkmediaplayer4 | 4:4.8.4-4 | - +- amd64 | libkmfl-dev | 0.9.8-1 | - +- amd64 | libkmfl0 | 0.9.8-1 | - +- amd64 | libkmflcomp-dev | 0.9.8-1 | - +- amd64 | libkmflcomp0 | 0.9.8-1 | - +- amd64 | libkmime4 | 4:4.8.4-2 | - +- amd64 | libkml-dev | 1.3.0~r863-4.1 | - +- amd64 | libkml-java | 1.3.0~r863-4.1 | - +- amd64 | libkml0 | 1.3.0~r863-4.1 | - +- amd64 | libkmlframework-java | 0.0.20090718-1 | - +- amd64 | libkmod-dev | 9-3 | - +- amd64 | libkmod2 | 9-3 | - +- amd64 | libkms1 | 2.4.40-1~deb7u2 | - +- amd64 | libkms1-dbg | 2.4.40-1~deb7u2 | - +- amd64 | libknewstuff2-4 | 4:4.8.4-4 | - +- amd64 | libknewstuff3-4 | 4:4.8.4-4 | - +- amd64 | libknotifyconfig4 | 4:4.8.4-4 | - +- amd64 | libkntlm4 | 4:4.8.4-4 | - +- amd64 | libkokyu-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libkokyu-dev | 6.0.3+dfsg-0.1 | - +- amd64 | libkonq-common | 4:4.8.4-2 | - +- amd64 | libkonq5-dev | 4:4.8.4-2 | - +- amd64 | libkonq5abi1 | 4:4.8.4-2 | - +- amd64 | libkonqsidebarplugin-dev | 4:4.8.4-2 | - +- amd64 | libkonqsidebarplugin4a | 4:4.8.4-2 | - +- amd64 | libkontactinterface4 | 4:4.8.4-2 | - +! amd64 | libkopenafs1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- amd64 | libkopete-dev | 4:4.8.4-1+b1 | - +- amd64 | libkopete4 | 4:4.8.4-1+b1 | - +- amd64 | libkosd2 | 0.8.1-1 | - +- amd64 | libkosd2-dev | 0.8.1-1 | - +- amd64 | libkparts4 | 4:4.8.4-4 | - +- amd64 | libkpathsea-dev | 2012.20120628-4 | - +- amd64 | libkpathsea6 | 2012.20120628-4 | - +- amd64 | libkpgp4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libkpimidentities4 | 4:4.8.4-2 | - +- amd64 | libkpimtextedit4 | 4:4.8.4-2 | - +- amd64 | libkpimutils4 | 4:4.8.4-2 | - +- amd64 | libkprintutils4 | 4:4.8.4-4 | - +- amd64 | libkpty4 | 4:4.8.4-4 | - +- amd64 | libkqueue-dev | 1.0.4-2 | - +- amd64 | libkqueue0 | 1.0.4-2 | - +- amd64 | libkrb5-26-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libkrb5-3 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkrb5-dbg | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkrb5-dev | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkrb5support0 | 1.10.1+dfsg-5+deb7u1 | - +- amd64 | libkresources4 | 4:4.8.4-2 | - +- amd64 | libkrosscore4 | 4:4.8.4-4 | - +- amd64 | libkrossui4 | 4:4.8.4-4 | - +- amd64 | libksane-dbg | 4:4.8.4-1 | - +- amd64 | libksane-dev | 4:4.8.4-1 | - +- amd64 | libksane0 | 4:4.8.4-1 | - +- amd64 | libksba-dev | 1.2.0-2 | - +- amd64 | libksba8 | 1.2.0-2 | - +- amd64 | libkscreensaver5 | 4:4.8.4-6 | - +- amd64 | libksgrd4 | 4:4.8.4-6 | - +- amd64 | libksieve4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libksignalplotter4 | 4:4.8.4-6 | - +- amd64 | libkst2core2 | 2.0.3-1.3 | - +- amd64 | libkst2math2 | 2.0.3-1.3 | - +- amd64 | libkst2widgets2 | 2.0.3-1.3 | - +- amd64 | libktexteditor4 | 4:4.8.4-4 | - +- amd64 | libktnef4 | 4:4.8.4-2 | - +- amd64 | libktoblzcheck-dbg | 1.39-1 | - +- amd64 | libktoblzcheck1-dev | 1.39-1 | - +- amd64 | libktoblzcheck1c2a | 1.39-1 | - +- amd64 | libktorrent-dbg | 1.2.1-1 | - +- amd64 | libktorrent-dev | 1.2.1-1 | - +- amd64 | libktorrent4 | 1.2.1-1 | - +- amd64 | libktpchat0 | 0.4.0-1 | - +- amd64 | libktpcommoninternalsprivate-dbg | 0.4.0-1 | - +- amd64 | libktpcommoninternalsprivate-dev | 0.4.0-1 | - +- amd64 | libktpcommoninternalsprivate1 | 0.4.0-1 | - +- amd64 | libkunitconversion4 | 4:4.8.4-4 | - +- amd64 | libkutils4 | 4:4.8.4-4 | - +- amd64 | libkvilib4 | 4:4.1.3+20111124.svn5988-2 | - +- amd64 | libkvutils-dev | 2.9.0-1 | - +- amd64 | libkvutils10 | 2.9.0-1 | - +- amd64 | libkwineffects1abi3 | 4:4.8.4-6 | - +- amd64 | libkwinglutils1 | 4:4.8.4-6 | - +- amd64 | libkwnn-dev | 1.1.1~a021+cvs20100325-6 | - +- amd64 | libkwnn0 | 1.1.1~a021+cvs20100325-6 | - +- amd64 | libkworkspace4abi1 | 4:4.8.4-6 | - +- amd64 | libkwwidgets1-dev | 1.0.0~cvs20100930-8 | - +- amd64 | libkwwidgets1.0.1009 | 1.0.0~cvs20100930-8 | - +- amd64 | libkxl0 | 1.1.7-16 | - +- amd64 | libkxl0-dev | 1.1.7-16 | - +- amd64 | libkxmlrpcclient4 | 4:4.8.4-2 | - +- amd64 | liblablgl-ocaml | 1.04-5+b3 | - +- amd64 | liblablgl-ocaml-dev | 1.04-5+b3 | - +- amd64 | liblablgtk-extras-ocaml-dev | 1.0-1+b2 | - +- amd64 | liblablgtk2-gl-ocaml | 2.14.2+dfsg-3 | - +- amd64 | liblablgtk2-gl-ocaml-dev | 2.14.2+dfsg-3 | - +- amd64 | liblablgtk2-gnome-ocaml | 2.14.2+dfsg-3 | - +- amd64 | liblablgtk2-gnome-ocaml-dev | 2.14.2+dfsg-3 | - +- amd64 | liblablgtk2-ocaml | 2.14.2+dfsg-3 | - +- amd64 | liblablgtk2-ocaml-dev | 2.14.2+dfsg-3 | - +- amd64 | liblablgtkmathview-ocaml | 0.7.8-6+b1 | - +- amd64 | liblablgtkmathview-ocaml-dev | 0.7.8-6+b1 | - +- amd64 | liblablgtksourceview2-ocaml | 2.14.2+dfsg-3 | - +- amd64 | liblablgtksourceview2-ocaml-dev | 2.14.2+dfsg-3 | - +- amd64 | libladr-dev | 0.0.200902a-2.1 | - +- amd64 | libladr4 | 0.0.200902a-2.1 | - +- amd64 | libladspa-ocaml | 0.1.4-1+b1 | - +- amd64 | libladspa-ocaml-dev | 0.1.4-1+b1 | - +- amd64 | liblam4 | 7.1.4-3 | - +- amd64 | liblangscan-ruby | 1.2+cvs20070125-1.1 | - +- amd64 | liblapack-dev | 3.4.1+dfsg-1+deb70u1 | - +- amd64 | liblapack-pic | 3.4.1+dfsg-1+deb70u1 | - +- amd64 | liblapack-test | 3.4.1+dfsg-1+deb70u1 | - +- amd64 | liblapack3 | 3.4.1+dfsg-1+deb70u1 | - +- amd64 | liblapacke | 3.4.1+dfsg-1+deb70u1 | - +- amd64 | liblapacke-dev | 3.4.1+dfsg-1+deb70u1 | - +- amd64 | liblas-bin | 1.2.1-5+b1 | - +- amd64 | liblas-dev | 1.2.1-5+b1 | - +- amd64 | liblas1 | 1.2.1-5+b1 | - +- amd64 | liblash-compat-1debian0 | 1+dfsg0-3 | - +- amd64 | liblasi-dev | 1.1.0-1 | - +- amd64 | liblasi0 | 1.1.0-1 | - +- amd64 | liblasso-perl | 2.3.6-2 | - +- amd64 | liblasso3 | 2.3.6-2 | - +- amd64 | liblasso3-dev | 2.3.6-2 | - +- amd64 | liblastfm-dbg | 0.4.0~git20090710-2 | - +- amd64 | liblastfm-dev | 0.4.0~git20090710-2 | - +- amd64 | liblastfm-fingerprint0 | 0.4.0~git20090710-2 | - +- amd64 | liblastfm-ocaml-dev | 0.3.0-2+b6 | - +- amd64 | liblastfm0 | 0.4.0~git20090710-2 | - +- amd64 | liblcgdm-dev | 1.8.2-1+b2 | - +- amd64 | liblcgdm1 | 1.8.2-1+b2 | - +- amd64 | liblchown-perl | 1.01-1+b2 | - +- amd64 | liblcms-utils | 1.19.dfsg-1.2 | - +- amd64 | liblcms1 | 1.19.dfsg-1.2 | - +- amd64 | liblcms1-dev | 1.19.dfsg-1.2 | - +- amd64 | liblcms2-2 | 2.2+git20110628-2.2 | - +- amd64 | liblcms2-dev | 2.2+git20110628-2.2 | - +- amd64 | liblcms2-utils | 2.2+git20110628-2.2 | - +- amd64 | libldap-2.4-2 | 2.4.31-1+nmu2 | - +- amd64 | libldap-2.4-2-dbg | 2.4.31-1+nmu2 | - +- amd64 | libldap-ocaml-dev | 2.1.8-8+b9 | - +- amd64 | libldap2-dev | 2.4.31-1+nmu2 | - +! amd64 | libldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldb1 | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldb1-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +- amd64 | libldl2.0.1 | 1:3.4.0-3 | - +! amd64 | libldns-dev | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libldns1 | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libldns1-dbg | 1.6.13-1 | 1.6.16-1~bpo70+1 +- amd64 | libledit-ocaml-dev | 2.03-1+b2 | - +- amd64 | liblensfun-dev | 0.2.5-2 | - +- amd64 | liblensfun0 | 0.2.5-2 | - +- amd64 | liblept3 | 1.69-3.1 | - +- amd64 | libleptonica-dev | 1.69-3.1 | - +- amd64 | libleveldb-dev | 0+20120530.gitdd0d562-1 | - +- amd64 | libleveldb1 | 0+20120530.gitdd0d562-1 | - +- amd64 | liblexical-sealrequirehints-perl | 0.007-1 | - +- amd64 | liblfc-dev | 1.8.2-1+b2 | - +- amd64 | liblfc-perl | 1.8.2-1+b2 | - +- amd64 | liblfc1 | 1.8.2-1+b2 | - +- amd64 | liblhapdf-dev | 5.8.7+repack-1 | - +- amd64 | liblhapdf0 | 5.8.7+repack-1 | - +- amd64 | liblhasa-dev | 0.0.7-2 | - +- amd64 | liblhasa0 | 0.0.7-2 | - +- amd64 | liblicense-cli | 0.8.1-3 | - +- amd64 | liblicense-dev | 0.8.1-3 | - +- amd64 | liblicense3 | 0.8.1-3 | - +- amd64 | liblightdm-gobject-1-0 | 1.2.2-4 | - +- amd64 | liblightdm-gobject-dev | 1.2.2-4 | - +- amd64 | liblightdm-qt-2-0 | 1.2.2-4 | - +- amd64 | liblightdm-qt-dev | 1.2.2-4 | - +- amd64 | liblilv-0-0 | 0.14.2~dfsg0-4 | - +- amd64 | liblilv-dev | 0.14.2~dfsg0-4 | - +- amd64 | liblinear-dbg | 1.8+dfsg-1 | - +- amd64 | liblinear-dev | 1.8+dfsg-1 | - +- amd64 | liblinear-tools | 1.8+dfsg-1 | - +- amd64 | liblinear1 | 1.8+dfsg-1 | - +- amd64 | liblinebreak2 | 2.1-1 | - +- amd64 | liblinebreak2-dev | 2.1-1 | - +- amd64 | liblingua-stem-snowball-perl | 0.952-2+b2 | - +- amd64 | liblink-grammar4 | 4.7.4-2 | - +- amd64 | liblink-grammar4-dev | 4.7.4-2 | - +- amd64 | liblink-grammar4-java | 4.7.4-2 | - +- amd64 | liblinphone-dev | 3.5.2-10 | - +- amd64 | liblinphone4 | 3.5.2-10 | - +- amd64 | liblinux-dvb-perl | 1.01-2+b2 | - +- amd64 | liblinux-inotify2-perl | 1:1.22-0.2+b1 | - +- amd64 | liblip-dev | 2.0.0-1.1 | - +- amd64 | liblip2 | 2.0.0-1.1 | - +- amd64 | liblircclient-dev | 0.9.0~pre1-1 | - +- amd64 | liblircclient0 | 0.9.0~pre1-1 | - +- amd64 | liblist-moreutils-perl | 0.33-1+b1 | - +- amd64 | liblistaller-glib-dev | 0.5.5-2 | - +- amd64 | liblistaller-glib0 | 0.5.5-2 | - +- amd64 | liblivemedia-dev | 2012.05.17-1 | - ++ amd64 | liblldpctl-dev | - | 0.7.7-1~bpo70+1 +- amd64 | libllvm-2.9-ocaml-dev | 2.9+dfsg-7 | - +- amd64 | libllvm-3.0-ocaml-dev | 3.0-10 | - +- amd64 | libllvm-3.1-ocaml-dev | 3.1-1 | - +- amd64 | libllvm-ocaml-dev | 1:3.0-14+nmu2 | - +- amd64 | libllvm2.9 | 2.9+dfsg-7 | - +- amd64 | libllvm3.0 | 3.0-10 | - +- amd64 | libllvm3.1 | 3.1-1 | - +- amd64 | liblo-dev | 0.26~repack-7 | - +- amd64 | liblo-ocaml | 0.1.0-1+b1 | - +- amd64 | liblo-ocaml-dev | 0.1.0-1+b1 | - +- amd64 | liblo-tools | 0.26~repack-7 | - +- amd64 | liblo10k1-0 | 1.0.25-2 | - +- amd64 | liblo10k1-dev | 1.0.25-2 | - +- amd64 | liblo7 | 0.26~repack-7 | - +- amd64 | libloadpng4-dev | 2:4.4.2-2.1 | - +- amd64 | libloadpng4.4 | 2:4.4.2-2.1 | - +- amd64 | liblocale-gettext-perl | 1.05-7+b1 | - +- amd64 | liblocale-hebrew-perl | 1.04-1+b2 | - +- amd64 | liblockdev1 | 1.0.3-1.5 | - +- amd64 | liblockdev1-dbg | 1.0.3-1.5 | - +- amd64 | liblockdev1-dev | 1.0.3-1.5 | - +- amd64 | liblockdev1-perl | 1.0.3-1.5 | - +- amd64 | liblockfile-bin | 1.09-5 | - +- amd64 | liblockfile-dev | 1.09-5 | - +- amd64 | liblockfile1 | 1.09-5 | - +- amd64 | liblodo3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | liblodo3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | liblog4ada-dbg | 1.2-3 | - +- amd64 | liblog4ada1 | 1.2-3 | - +- amd64 | liblog4ada2-dev | 1.2-3 | - +- amd64 | liblog4c-dev | 1.2.1-3 | - +- amd64 | liblog4c3 | 1.2.1-3 | - +- amd64 | liblog4cplus-1.0-4 | 1.0.4-1 | - +- amd64 | liblog4cplus-dbg | 1.0.4-1 | - +- amd64 | liblog4cplus-dev | 1.0.4-1 | - +- amd64 | liblog4cpp5 | 1.0-4 | - +- amd64 | liblog4cpp5-dev | 1.0-4 | - +- amd64 | liblog4cxx10 | 0.10.0-1.2 | - +- amd64 | liblog4cxx10-dev | 0.10.0-1.2 | - +- amd64 | liblog4shib-dev | 1.0.4-1 | - +- amd64 | liblog4shib1 | 1.0.4-1 | - +- amd64 | liblog4tango4 | 7.2.6+dfsg-14 | - +- amd64 | liblog4tango4-dbg | 7.2.6+dfsg-14 | - +- amd64 | liblog4tango4-dev | 7.2.6+dfsg-14 | - +- amd64 | liblogforwarderutils2 | 2.7-1 | - +- amd64 | liblogforwarderutils2-dev | 2.7-1 | - +- amd64 | liblognorm-dev | 0.3.4-1 | - +- amd64 | liblognorm0 | 0.3.4-1 | - +- amd64 | liblogservicecomponentbase2 | 2.7-1 | - +- amd64 | liblogservicecomponentbase2-dev | 2.7-1 | - +- amd64 | liblogservicetoolbase2 | 2.7-1 | - +- amd64 | liblogservicetoolbase2-dev | 2.7-1 | - +- amd64 | liblogsys-dev | 1.4.2-3 | - +- amd64 | liblogsys4 | 1.4.2-3 | - +- amd64 | liblogthread-dev | 3.0.12-3.2+deb7u2 | - +- amd64 | liblogthread3 | 3.0.12-3.2+deb7u2 | - +- amd64 | libloki-dev | 0.1.7-3 | - +- amd64 | libloki0.1.7 | 0.1.7-3 | - +- amd64 | libloki0.1.7-dbg | 0.1.7-3 | - +- amd64 | libloudmouth1-0 | 1.4.3-9 | - +- amd64 | libloudmouth1-0-dbg | 1.4.3-9 | - +- amd64 | libloudmouth1-dev | 1.4.3-9 | - +- amd64 | liblouis-bin | 2.4.1-1 | - +- amd64 | liblouis-dev | 2.4.1-1 | - +- amd64 | liblouis2 | 2.4.1-1 | - +- amd64 | liblouisutdml-bin | 2.2.0-1 | - +- amd64 | liblouisutdml-dev | 2.2.0-1 | - +- amd64 | liblouisutdml6 | 2.2.0-1 | - +- amd64 | liblouisxml-bin | 2.4.0-3 | - +- amd64 | liblouisxml-dev | 2.4.0-3 | - +- amd64 | liblouisxml1 | 2.4.0-3 | - +- amd64 | liblpsolve55-dev | 5.5.0.13-7 | - +- amd64 | liblqr-1-0 | 0.4.1-2 | - +- amd64 | liblqr-1-0-dbg | 0.4.1-2 | - +- amd64 | liblqr-1-0-dev | 0.4.1-2 | - +- amd64 | liblrdf0 | 0.4.0-5 | - +- amd64 | liblrdf0-dev | 0.4.0-5 | - +- amd64 | liblrm2 | 1.0.9+hg2665-1 | - +- amd64 | liblrm2-dev | 1.0.9+hg2665-1 | - +- amd64 | liblrs-dev | 0.42c-1+b1 | - +- amd64 | liblrs0d | 0.42c-1+b1 | - +- amd64 | liblscp-dbg | 0.5.6-6 | - +- amd64 | liblscp-dev | 0.5.6-6 | - +- amd64 | liblscp6 | 0.5.6-6 | - +- amd64 | liblsofui4 | 4:4.8.4-6 | - +- amd64 | libltcsmpte-dev | 0.4.4-1 | - +- amd64 | libltcsmpte1 | 0.4.4-1 | - +- amd64 | libltdl-dev | 2.4.2-1.1 | - +- amd64 | libltdl7 | 2.4.2-1.1 | - +- amd64 | liblttctl-dev | 0.89-05122011-1 | - +- amd64 | liblttctl0 | 0.89-05122011-1 | - +- amd64 | liblttd-dev | 0.89-05122011-1 | - +- amd64 | liblttd0 | 0.89-05122011-1 | - +- amd64 | liblttng-ust-dev | 2.0.4-1 | - +- amd64 | liblttng-ust0 | 2.0.4-1 | - +- amd64 | liblttoolbox3-3.1-0 | 3.1.0-1.1 | - +- amd64 | liblttoolbox3-3.1-0-dev | 3.1.0-1.1 | - +- amd64 | liblttvtraceread-2.6 | 0.12.38-21032011-1+b1 | - +- amd64 | liblttvtraceread-2.6-dev | 0.12.38-21032011-1+b1 | - +- amd64 | liblttvtraceread-loader-2.6 | 0.12.38-21032011-1+b1 | - +- amd64 | liblua5.1-0 | 5.1.5-4 | - +- amd64 | liblua5.1-0-dbg | 5.1.5-4 | - +- amd64 | liblua5.1-0-dev | 5.1.5-4 | - +- amd64 | liblua5.1-luacsnd5.2 | 1:5.17.11~dfsg-3 | - +- amd64 | liblua5.1-oocairo-dev | 1.4-1.2 | - +- amd64 | liblua5.1-oocairo0 | 1.4-1.2 | - +- amd64 | liblua5.1-oopango-dev | 1.1-1 | - +- amd64 | liblua5.1-oopango0 | 1.1-1 | - +- amd64 | liblua5.1-rrd-dev | 1.4.7-2 | - +- amd64 | liblua5.1-rrd0 | 1.4.7-2 | - +- amd64 | liblua5.2-0 | 5.2.1-3 | - +- amd64 | liblua5.2-0-dbg | 5.2.1-3 | - +- amd64 | liblua5.2-dev | 5.2.1-3 | - +- amd64 | liblua50 | 5.0.3-6 | - +- amd64 | liblua50-dev | 5.0.3-6 | - +- amd64 | libluabind-dbg | 0.9.1+dfsg-5 | - +- amd64 | libluabind-dev | 0.9.1+dfsg-5 | - +- amd64 | libluabind0.9.1 | 0.9.1+dfsg-5 | - +- amd64 | libluabridge-ruby1.8 | 0.7.0-1.1 | - +- amd64 | liblualib50 | 5.0.3-6 | - +- amd64 | liblualib50-dev | 5.0.3-6 | - +- amd64 | liblunar-1-0 | 2.0.1-2.2 | - +- amd64 | liblunar-1-0-dbg | 2.0.1-2.2 | - +- amd64 | liblunar-1-dev | 2.0.1-2.2 | - +- amd64 | liblunar-date-2.0-0 | 2.4.0-1 | - +- amd64 | liblunar-date-dbg | 2.4.0-1 | - +- amd64 | liblunar-date-dev | 2.4.0-1 | - +- amd64 | liblv2dynparam1-dev | 2-5 | - +- amd64 | liblv2dynparamhost1-1 | 2-5 | - +- amd64 | liblv2dynparamplugin1-0 | 2-5 | - +- amd64 | liblvm2-dev | 2.02.95-8 | - +- amd64 | liblvm2app2.2 | 2.02.95-8 | - +- amd64 | liblvm2cmd2.02 | 2.02.95-8 | - +- amd64 | liblwipv6-2 | 1.5a-2 | - +- amd64 | liblwipv6-dev | 1.5a-2 | - +- amd64 | liblwjgl-java-jni | 2.7.1+dfsg-3 | - +- amd64 | liblwres80 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | liblwt-glib-ocaml | 2.3.2-1+b3 | - +- amd64 | liblwt-glib-ocaml-dev | 2.3.2-1+b3 | - +- amd64 | liblwt-ocaml | 2.3.2-1+b3 | - +- amd64 | liblwt-ocaml-dev | 2.3.2-1+b3 | - +- amd64 | liblwt-ssl-ocaml | 2.3.2-1+b3 | - +- amd64 | liblwt-ssl-ocaml-dev | 2.3.2-1+b3 | - +- amd64 | liblz-dbg | 1.3-2 | - +- amd64 | liblz-dev | 1.3-2 | - +- amd64 | liblz1 | 1.3-2 | - +- amd64 | liblzma-dev | 5.1.1alpha+20120614-2 | - +- amd64 | liblzma5 | 5.1.1alpha+20120614-2 | - +- amd64 | liblzo2-2 | 2.06-1 | - +- amd64 | liblzo2-dev | 2.06-1 | - +- amd64 | libm17n-0 | 1.6.3-2 | - +- amd64 | libm17n-0-dbg | 1.6.3-2 | - +- amd64 | libm17n-dev | 1.6.3-2 | - +- amd64 | libm17n-im-config-dev | 0.9.0-3 | - +- amd64 | libm17n-im-config0 | 0.9.0-3 | - +- amd64 | libm4ri-0.0.20080521 | 0.0.20080521-2 | - +- amd64 | libm4ri-dev | 0.0.20080521-2 | - +- amd64 | libmaa-dev | 1.3.1-1 | - +- amd64 | libmaa3 | 1.3.1-1 | - +- amd64 | libmad-ocaml | 0.4.4-1+b1 | - +- amd64 | libmad-ocaml-dev | 0.4.4-1+b1 | - +- amd64 | libmad0 | 0.15.1b-7 | - +- amd64 | libmad0-dev | 0.15.1b-7 | - +- amd64 | libmadlib | 1.3.0-2.1 | - +- amd64 | libmadlib-dbg | 1.3.0-2.1 | - +- amd64 | libmadlib-dev | 1.3.0-2.1 | - +! amd64 | libmagic-dev | 5.11-2 | 1:5.14-2~bpo70+1 +- amd64 | libmagic-ocaml | 0.7.3-5+b3 | - +- amd64 | libmagic-ocaml-dev | 0.7.3-5+b3 | - +! amd64 | libmagic1 | 5.11-2 | 1:5.14-2~bpo70+1 +- amd64 | libmagick++-dev | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagick++5 | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagickcore-dev | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagickcore5 | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagickcore5-extra | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagickwand-dev | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagickwand5 | 8:6.7.7.10-5+deb7u2 | - +- amd64 | libmagics++-dev | 2.14.11-4 | - +- amd64 | libmagplus3 | 2.14.11-4 | - +- amd64 | libmail-cclient-perl | 1.12-11+b1 | - +- amd64 | libmail-pop3client-perl | 2.17-1 | - +- amd64 | libmailtransport4 | 4:4.8.4-2 | - +- amd64 | libmailutils-dev | 1:2.99.97-3 | - +- amd64 | libmailutils4 | 1:2.99.97-3 | - +- amd64 | libmalaga-dev | 7.12-4 | - +- amd64 | libmalaga7 | 7.12-4 | - +- amd64 | libmaloc-dev | 0.2-2.3 | - +- amd64 | libmaloc1 | 0.2-2.3 | - +- amd64 | libmapi-dev | 1:1.0-3 | - +- amd64 | libmapi0 | 1:1.0-3 | - +- amd64 | libmapiadmin-dev | 1:1.0-3 | - +- amd64 | libmapiadmin0 | 1:1.0-3 | - +- amd64 | libmapipp-dev | 1:1.0-3 | - +- amd64 | libmapipp0 | 1:1.0-3 | - +- amd64 | libmapiproxy-dev | 1:1.0-3 | - +- amd64 | libmapiproxy0 | 1:1.0-3 | - +- amd64 | libmapistore-dev | 1:1.0-3 | - +- amd64 | libmapistore0 | 1:1.0-3 | - +- amd64 | libmapnik2-2.0 | 2.0.0+ds1-3+b4 | - +- amd64 | libmapnik2-dev | 2.0.0+ds1-3+b4 | - +- amd64 | libmapscript-perl | 6.0.1-3.2+deb7u2 | - +- amd64 | libmapscript-ruby1.8 | 6.0.1-3.2+deb7u2 | - +- amd64 | libmapscript-ruby1.9.1 | 6.0.1-3.2+deb7u2 | - +- amd64 | libmarble-dev | 4:4.8.4-3 | - +- amd64 | libmarblewidget13 | 4:4.8.4-3 | - +- amd64 | libmarc-charset-perl | 1.33-1 | - +- amd64 | libmarkdown2 | 2.1.3-3 | - +- amd64 | libmarkdown2-dbg | 2.1.3-3 | - +- amd64 | libmarkdown2-dev | 2.1.3-3 | - +- amd64 | libmatchbox-dev | 1.9-osso8-3 | - +- amd64 | libmatchbox1 | 1.9-osso8-3 | - +- amd64 | libmath++-dev | 0.0.4-4 | - +- amd64 | libmath++0c2a | 0.0.4-4 | - +- amd64 | libmath-bigint-gmp-perl | 1.37-1+b1 | - +- amd64 | libmath-gmp-perl | 2.06-1+b2 | - +- amd64 | libmath-random-isaac-xs-perl | 1.003-1+b2 | - +- amd64 | libmath-random-mt-perl | 1.15-2 | - +- amd64 | libmath-random-tt800-perl | 1.01-2+b2 | - +- amd64 | libmath-tamuanova-perl | 1.0.2-1 | - +- amd64 | libmatheval-dev | 1.1.8-1 | - +- amd64 | libmatheval1 | 1.1.8-1 | - +- amd64 | libmathlib2-dev | 20061220+dfsg3-2 | - +- amd64 | libmathlib2-gfortran | 20061220+dfsg3-2 | - +- amd64 | libmatio-dev | 1.3.4-4 | - +- amd64 | libmatio0 | 1.3.4-4 | - +- amd64 | libmatio0-dbg | 1.3.4-4 | - +- amd64 | libmatrixssl1.8 | 1.8.8-1 | - +- amd64 | libmatrixssl1.8-dev | 1.8.8-1 | - +- amd64 | libmatroska-dev | 1.3.0-2 | - +- amd64 | libmatroska5 | 1.3.0-2 | - +- amd64 | libmbt0 | 3.2.8-1 | - +- amd64 | libmbt0-dev | 3.2.8-1 | - +- amd64 | libmcpp-dev | 2.7.2-1.1 | - +- amd64 | libmcpp0 | 2.7.2-1.1 | - +- amd64 | libmcrypt-dev | 2.5.8-3.1 | - +- amd64 | libmcrypt4 | 2.5.8-3.1 | - +- amd64 | libmcs-backend-gconf | 0.7.2-2.1 | - +- amd64 | libmcs-dev | 0.7.2-2.1 | - +- amd64 | libmcs-utils | 0.7.2-2.1 | - +- amd64 | libmcs1 | 0.7.2-2.1 | - +- amd64 | libmd3-1 | 0.1.92-4 | - +- amd64 | libmd3-dev | 0.1.92-4 | - +- amd64 | libmdb2 | 0.7-1+deb7u1 | - +- amd64 | libmdbodbc1 | 0.7-1+deb7u1 | - +- amd64 | libmdbsql2 | 0.7-1+deb7u1 | - +- amd64 | libmdc2 | 0.10.7-1+b2 | - +- amd64 | libmdc2-dev | 0.10.7-1+b2 | - +- amd64 | libmdsp-dev | 0.11-10 | - +- amd64 | libmeanwhile-dev | 1.0.2-4 | - +- amd64 | libmeanwhile1 | 1.0.2-4 | - +- amd64 | libmecab-dev | 0.99.3-3 | - +- amd64 | libmecab-jni | 0.99.3-1 | - +- amd64 | libmecab-perl | 0.99.3-1 | - +- amd64 | libmecab2 | 0.99.3-3 | - +- amd64 | libmed-dev | 3.0.3-3 | - +- amd64 | libmed-tools | 3.0.3-3 | - +- amd64 | libmed1 | 3.0.3-3 | - +- amd64 | libmedc-dev | 3.0.3-3 | - +- amd64 | libmedc1 | 3.0.3-3 | - +- amd64 | libmediainfo-dev | 0.7.58-1 | - +- amd64 | libmediainfo0 | 0.7.58-1 | - +- amd64 | libmediastreamer-dev | 3.5.2-10 | - +- amd64 | libmediastreamer1 | 3.5.2-10 | - +- amd64 | libmedimport-dev | 3.0.3-3 | - +- amd64 | libmedimport0 | 3.0.3-3 | - +- amd64 | libmeep-dev | 1.1.1-8 | - +- amd64 | libmeep-lam4-6 | 1.1.1-10~deb7u1 | - +- amd64 | libmeep-lam4-dev | 1.1.1-10~deb7u1 | - +- amd64 | libmeep-mpi-default-dev | 1.1.1-10~deb7u1 | - +- amd64 | libmeep-mpi-default6 | 1.1.1-10~deb7u1 | - +- amd64 | libmeep-mpich2-6 | 1.1.1-10~deb7u1 | - +- amd64 | libmeep-mpich2-dev | 1.1.1-10~deb7u1 | - +- amd64 | libmeep-openmpi-dev | 1.1.1-9~deb7u1 | - +- amd64 | libmeep-openmpi6 | 1.1.1-9~deb7u1 | - +- amd64 | libmeep6 | 1.1.1-8 | - +- amd64 | libmelt-ocaml-dev | 1.4.0-1 | - +- amd64 | libmemcache-dev | 1.4.0.rc2-1 | - +- amd64 | libmemcache0 | 1.4.0.rc2-1 | - +- amd64 | libmemcached-dbg | 1.0.8-1 | - +- amd64 | libmemcached-dev | 1.0.8-1 | - +- amd64 | libmemcached-tools | 1.0.8-1 | - +- amd64 | libmemcached10 | 1.0.8-1 | - +- amd64 | libmemcachedprotocol0 | 1.0.8-1 | - +- amd64 | libmemcachedutil2 | 1.0.8-1 | - +- amd64 | libmemphis-0.2-0 | 0.2.3-2 | - +- amd64 | libmemphis-0.2-dbg | 0.2.3-2 | - +- amd64 | libmemphis-0.2-dev | 0.2.3-2 | - +- amd64 | libmenhir-ocaml-dev | 20120123.dfsg-1 | - +- amd64 | libmenu-cache1 | 0.3.3-1 | - +- amd64 | libmenu-cache1-dev | 0.3.3-1 | - +- amd64 | libmercator-0.3-1 | 0.3.0-2 | - +- amd64 | libmercator-0.3-1-dbg | 0.3.0-2 | - +- amd64 | libmercator-0.3-dev | 0.3.0-2 | - +- amd64 | libmeschach-dev | 1.2b-13 | - +- amd64 | libmeschach1.2 | 1.2b-13 | - +- amd64 | libmessagecore4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libmessagelist4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libmessageviewer0 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libmetacity-dev | 1:2.34.3-4 | - +- amd64 | libmetacity-private0a | 1:2.34.3-4 | - +- amd64 | libmgl-dev | 1.11.2-17 | - +- amd64 | libmgl-fltk5 | 1.11.2-17 | - +- amd64 | libmgl-glut5 | 1.11.2-17 | - +- amd64 | libmgl-qt5 | 1.11.2-17 | - +- amd64 | libmgl-wx5 | 1.11.2-17 | - +- amd64 | libmgl5 | 1.11.2-17 | - +- amd64 | libmhash-dev | 0.9.9.9-1.1 | - +- amd64 | libmhash2 | 0.9.9.9-1.1 | - +- amd64 | libmicroblog4 | 4:4.8.4-2 | - +- amd64 | libmicrohttpd-dbg | 0.9.20-1+deb7u1 | - +- amd64 | libmicrohttpd-dev | 0.9.20-1+deb7u1 | - +- amd64 | libmicrohttpd10 | 0.9.20-1+deb7u1 | - +- amd64 | libmigemo-dbg | 20110227-7 | - +- amd64 | libmigemo-dev | 20110227-7 | - +- amd64 | libmigemo1 | 20110227-7 | - +- amd64 | libmikmatch-ocaml | 1.0.4-1+b1 | - +- amd64 | libmikmatch-ocaml-dev | 1.0.4-1+b1 | - +- amd64 | libmikmod2 | 3.1.12-5 | - +- amd64 | libmikmod2-dev | 3.1.12-5 | - +- amd64 | libmilter-dev | 8.14.4-4 | - +- amd64 | libmilter1.0.1 | 8.14.4-4 | - +- amd64 | libmilter1.0.1-dbg | 8.14.4-4 | - +- amd64 | libmime-explode-perl | 0.39-2+b1 | - +- amd64 | libmimedir-dev | 0.5.1-4 | - +- amd64 | libmimedir-gnome-dev | 0.4.2-5 | - +- amd64 | libmimedir-gnome0.4 | 0.4.2-5 | - +- amd64 | libmimedir0 | 0.5.1-4 | - +- amd64 | libmimelib1-dev | 5:1.1.4-2 | - +- amd64 | libmimelib1c2a | 5:1.1.4-2 | - +- amd64 | libmimelib4 | 4:4.4.11.1+l10n-3+b1 | - +- amd64 | libmimetic-dev | 0.9.7-3 | - +- amd64 | libmimetic0 | 0.9.7-3 | - +- amd64 | libmimetic0-dbg | 0.9.7-3 | - +- amd64 | libmimic-dev | 1.0.4-2.1 | - +- amd64 | libmimic0 | 1.0.4-2.1 | - +- amd64 | libminc-dev | 2.1.10-1+b1 | - +- amd64 | libminc2-1 | 2.1.10-1+b1 | - +- amd64 | libming-dev | 1:0.4.4-1.1 | - +- amd64 | libming-util | 1:0.4.4-1.1 | - +- amd64 | libming1 | 1:0.4.4-1.1 | - +- amd64 | libmini18n-dev | 0.2.1-1 | - +- amd64 | libmini18n1 | 0.2.1-1 | - +- amd64 | libmini18n1-dbg | 0.2.1-1 | - +- amd64 | libminidjvu-dev | 0.8.svn.2010.05.06+dfsg-0.2 | - +- amd64 | libminidjvu0 | 0.8.svn.2010.05.06+dfsg-0.2 | - +- amd64 | libminiupnpc-dev | 1.5-2 | - +- amd64 | libminiupnpc5 | 1.5-2 | - +- amd64 | libminpack1 | 19961126+dfsg1-1 | - +- amd64 | libmission-control-plugins-dev | 1:5.12.3-1 | - +- amd64 | libmission-control-plugins0 | 1:5.12.3-1 | - +- amd64 | libmkv-dev | 0.6.5.1-1 | - +- amd64 | libmkv0 | 0.6.5.1-1 | - +- amd64 | libmlnlffi-smlnj | 110.74-2 | - +- amd64 | libmlpcap-ocaml | 0.9-16 | - +- amd64 | libmlpcap-ocaml-dev | 0.9-16 | - +- amd64 | libmlpost-ocaml-dev | 0.8.1-3 | - +- amd64 | libmlrisctools-smlnj | 110.74-2 | - +- amd64 | libmlt++-dev | 0.8.0-4 | - +- amd64 | libmlt++3 | 0.8.0-4 | - +- amd64 | libmlt-dbg | 0.8.0-4 | - +- amd64 | libmlt-dev | 0.8.0-4 | - +- amd64 | libmlt5 | 0.8.0-4 | - +- amd64 | libmlx4-1 | 1.0.4-1 | - +- amd64 | libmlx4-1-dbg | 1.0.4-1 | - +- amd64 | libmlx4-dev | 1.0.4-1 | - +- amd64 | libmm-dbg | 1.4.2-4 | - +- amd64 | libmm-dev | 1.4.2-4 | - +- amd64 | libmm-ocaml | 0.2.0-1+b1 | - +- amd64 | libmm-ocaml-dev | 0.2.0-1+b1 | - +- amd64 | libmm14 | 1.4.2-4 | - +- amd64 | libmmpong0.9 | 0.9.1-2.1 | - +- amd64 | libmmpong0.9-dev | 0.9.1-2.1 | - +- amd64 | libmms-dev | 0.6.2-3 | - +- amd64 | libmms0 | 0.6.2-3 | - +- amd64 | libmng-dev | 1.0.10-3 | - +- amd64 | libmng1 | 1.0.10-3 | - +- amd64 | libmnl-dev | 1.0.3-3 | - +- amd64 | libmnl0 | 1.0.3-3 | - +- amd64 | libmodbus-dev | 3.0.3-1 | - +- amd64 | libmodbus5 | 3.0.3-1 | - +- amd64 | libmodglue1 | 1.17-2.1 | - +- amd64 | libmodplug1 | 1:0.8.8.4-3+deb7u1+git20130828 | - +- amd64 | libmoe-dev | 1.5.8-1 | - +- amd64 | libmoe1.5 | 1.5.8-1 | - +- amd64 | libmongo-client-dev | 0.1.5-1+deb7u1 | - +- amd64 | libmongo-client0 | 0.1.5-1+deb7u1 | - +- amd64 | libmongo-client0-dbg | 0.1.5-1+deb7u1 | - +- amd64 | libmongodb-perl | 0.45-1+b1 | - +- amd64 | libmono-2.0-1 | 2.10.8.1-8 | - +- amd64 | libmono-2.0-1-dbg | 2.10.8.1-8 | - +- amd64 | libmono-2.0-dev | 2.10.8.1-8 | - +- amd64 | libmono-fuse-cil | 0.4.2+dfsg-3+b1 | - +- amd64 | libmono-profiler | 2.10.8.1-8 | - +- amd64 | libmono-uia-atkbridge1.0-cil | 2.1-2 | - +- amd64 | libmoose-perl | 2.0603-1 | - +- amd64 | libmoosex-role-withoverloading-perl | 0.09-1+b2 | - +- amd64 | libmopac7-1gf | 1.15-5 | - +- amd64 | libmopac7-dev | 1.15-5 | - +- amd64 | libmorph | 1:20090926 | - +- amd64 | libmorph-dev | 1:20090926 | - +- amd64 | libmosquitto0 | 0.15-2 | - +- amd64 | libmosquittopp0 | 0.15-2 | - +- amd64 | libmount-dev | 2.20.1-5.3 | - +- amd64 | libmount1 | 2.20.1-5.3 | - +- amd64 | libmouse-perl | 0.99-1 | - +- amd64 | libmowgli-dev | 1.0.0-1 | - +- amd64 | libmowgli2 | 1.0.0-1 | - +- amd64 | libmowgli2-dbg | 1.0.0-1 | - +- amd64 | libmozilla-ldap-perl | 1.5.3-1 | - +- amd64 | libmozjs-dev | 17.0.10esr-1~deb7u1 | - +- amd64 | libmozjs10d | 10.0.12esr-1 | - +- amd64 | libmozjs10d-dbg | 10.0.12esr-1 | - +- amd64 | libmozjs17d | 17.0.10esr-1~deb7u1 | - +- amd64 | libmozjs17d-dbg | 17.0.10esr-1~deb7u1 | - +- amd64 | libmozjs185-1.0 | 1.8.5-1.0.0+dfsg-4 | - +- amd64 | libmozjs185-dev | 1.8.5-1.0.0+dfsg-4 | - +- amd64 | libmp3lame-dev | 3.99.5+repack1-3 | - +- amd64 | libmp3lame-ocaml | 0.3.1-1+b1 | - +- amd64 | libmp3lame-ocaml-dev | 0.3.1-1+b1 | - +- amd64 | libmp3lame0 | 3.99.5+repack1-3 | - +- amd64 | libmp3splt-dev | 0.7.2-2 | - +- amd64 | libmp3splt0 | 0.7.2-2 | - +- amd64 | libmp3splt0-mp3 | 0.7.2-2 | - +- amd64 | libmp3splt0-ogg | 0.7.2-2 | - +- amd64 | libmp4v2-2 | 2.0.0~dfsg0-1 | - +- amd64 | libmp4v2-dev | 2.0.0~dfsg0-1 | - +- amd64 | libmpc-dev | 0.9-4 | - +- amd64 | libmpc2 | 0.9-4 | - +- amd64 | libmpcdec-dev | 2:0.1~r459-4 | - +- amd64 | libmpcdec6 | 2:0.1~r459-4 | - +- amd64 | libmpd-dev | 0.20.0-1.1 | - +- amd64 | libmpd1 | 0.20.0-1.1 | - +- amd64 | libmpd1-dbg | 0.20.0-1.1 | - +- amd64 | libmpdclient-dev | 2.3-1 | - +- amd64 | libmpdclient2 | 2.3-1 | - +- amd64 | libmpdclient2-dbg | 2.3-1 | - +- amd64 | libmpeg2-4 | 0.4.1-3 | - +- amd64 | libmpeg2-4-dev | 0.4.1-3 | - +- amd64 | libmpeg3-1 | 1.5.4-5 | - +- amd64 | libmpeg3-dev | 1.5.4-5 | - +- amd64 | libmpfi-dev | 1.5.1-1 | - +- amd64 | libmpfi0 | 1.5.1-1 | - +- amd64 | libmpfr-dev | 3.1.0-5 | - +- amd64 | libmpfr4 | 3.1.0-5 | - +- amd64 | libmpfr4-dbg | 3.1.0-5 | - +- amd64 | libmpg123-0 | 1.14.4-1 | - +- amd64 | libmpg123-dev | 1.14.4-1 | - +- amd64 | libmpich2-3 | 1.4.1-4.2 | - +- amd64 | libmpich2-dev | 1.4.1-4.2 | - +- amd64 | libmpikmeans-dbg | 1.5-1+b1 | - +- amd64 | libmpikmeans-dev | 1.5-1+b1 | - +- amd64 | libmpikmeans1 | 1.5-1+b1 | - +- amd64 | libmpj-java | 0.38~dfsg-1 | - +- amd64 | libmrml1-dev | 0.1.14-12 | - +- amd64 | libmrml1c2a | 0.1.14-12 | - +- amd64 | libmrmpi-dev | 1.0~20110620.dfsg-2 | - +- amd64 | libmrmpi1 | 1.0~20110620.dfsg-2 | - +- amd64 | libmrss0 | 0.19.2-3 | - +- amd64 | libmrss0-dbg | 0.19.2-3 | - +- amd64 | libmrss0-dev | 0.19.2-3 | - +- amd64 | libmsgcat-perl | 1.03-5+b2 | - +- amd64 | libmsgpack-dev | 0.5.7-2 | - +- amd64 | libmsgpack3 | 0.5.7-2 | - +- amd64 | libmsgpackc2 | 0.5.7-2 | - +- amd64 | libmsn-dev | 4.2-2 | - +- amd64 | libmsn0.3 | 4.2-2 | - +- amd64 | libmsn0.3-dbg | 4.2-2 | - +! amd64 | libmsv-dev | 0.0.0-1 | 1.0-1~bpo70+1 +- amd64 | libmsv0 | 0.0.0-1 | - ++ amd64 | libmsv1 | - | 1.0-1~bpo70+1 +- amd64 | libmtbl-dev | 0.2-1 | - +- amd64 | libmtbl0 | 0.2-1 | - +- amd64 | libmtbl0-dbg | 0.2-1 | - +- amd64 | libmtcp-dev | 1.2.5-1 | - +- amd64 | libmtcp1 | 1.2.5-1 | - +- amd64 | libmtdev-dev | 1.1.2-1 | - +- amd64 | libmtdev1 | 1.1.2-1 | - +- amd64 | libmthca-dev | 1.0.6-1 | - +- amd64 | libmthca1 | 1.0.6-1 | - +- amd64 | libmthca1-dbg | 1.0.6-1 | - +- amd64 | libmtp-dbg | 1.1.3-35-g0ece104-5 | - +- amd64 | libmtp-dev | 1.1.3-35-g0ece104-5 | - +- amd64 | libmtp-runtime | 1.1.3-35-g0ece104-5 | - +- amd64 | libmtp9 | 1.1.3-35-g0ece104-5 | - +- amd64 | libmudflap0 | 4.7.2-5 | - +- amd64 | libmudflap0-4.4-dev | 4.4.7-2 | - +- amd64 | libmudflap0-4.6-dev | 4.6.3-14 | - +- amd64 | libmudflap0-4.7-dev | 4.7.2-5 | - +- amd64 | libmudflap0-dbg | 4.7.2-5 | - +- amd64 | libmulticobex1 | 0.23-1.1 | - +- amd64 | libmulticobex1-dev | 0.23-1.1 | - +- amd64 | libmultidimensional-perl | 0.010-1 | - +- amd64 | libmumps-4.10.0 | 4.10.0.dfsg-3 | - +- amd64 | libmumps-dev | 4.10.0.dfsg-3 | - +- amd64 | libmumps-ptscotch-4.10.0 | 4.10.0.dfsg-3 | - +- amd64 | libmumps-ptscotch-dev | 4.10.0.dfsg-3 | - +- amd64 | libmumps-scotch-4.10.0 | 4.10.0.dfsg-3 | - +- amd64 | libmumps-scotch-dev | 4.10.0.dfsg-3 | - +- amd64 | libmumps-seq-4.10.0 | 4.10.0.dfsg-3 | - +- amd64 | libmumps-seq-dev | 4.10.0.dfsg-3 | - +- amd64 | libmunge-dev | 0.5.10-1 | - +- amd64 | libmunge2 | 0.5.10-1 | - +- amd64 | libmuparser-dev | 2.1.0-3 | - +- amd64 | libmuparser2 | 2.1.0-3 | - +- amd64 | libmupdf-dev | 0.9-2 | - +- amd64 | libmupen64plus2 | 1.99.5-6 | - +- amd64 | libmupen64plus2-dbg | 1.99.5-6 | - +- amd64 | libmuroar-dev | 0.1.8-2 | - +- amd64 | libmuroar0 | 0.1.8-2 | - +- amd64 | libmuroar0-dbg | 0.1.8-2 | - +- amd64 | libmuroard3 | 0.1.10-2 | - +- amd64 | libmusic-dev | 1.0.7-1.2 | - +- amd64 | libmusic1 | 1.0.7-1.2 | - +- amd64 | libmusicbrainz-discid-perl | 0.03-1+b2 | - +- amd64 | libmusicbrainz3-6 | 3.0.2-2.1 | - +- amd64 | libmusicbrainz3-dev | 3.0.2-2.1 | - +- amd64 | libmusicbrainz5-0 | 5.0.1-2 | - +- amd64 | libmusicbrainz5-dev | 5.0.1-2 | - +- amd64 | libmutter-dev | 3.4.1-5 | - +- amd64 | libmutter0 | 3.4.1-5 | - +- amd64 | libmx-1.0-2 | 1.4.6-1 | - +- amd64 | libmx-1.0-2-dbg | 1.4.6-1 | - +- amd64 | libmx-bin | 1.4.6-1 | - +- amd64 | libmx-dev | 1.4.6-1 | - +- amd64 | libmxml-dev | 2.6-2 | - +- amd64 | libmxml1 | 2.6-2 | - +- amd64 | libmyodbc | 5.1.10-2+deb7u1 | - +- amd64 | libmyproxy-dev | 5.6-1 | - +- amd64 | libmyproxy5 | 5.6-1 | - +- amd64 | libmysql++-dev | 3.1.0-2+b1 | - +- amd64 | libmysql++3 | 3.1.0-2+b1 | - +- amd64 | libmysql-ocaml | 1.1.1-1+b1 | - +- amd64 | libmysql-ocaml-dev | 1.1.1-1+b1 | - +- amd64 | libmysqlclient-dev | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | libmysqlclient18 | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | libmysqlcppconn-dev | 1.1.0-4+b1 | - +- amd64 | libmysqlcppconn5 | 1.1.0-4+b1 | - +- amd64 | libmysqld-dev | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | libmysqld-pic | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | libmythes-1.2-0 | 2:1.2.2-1 | - +- amd64 | libmythes-dev | 2:1.2.2-1 | - +- amd64 | libnabrit-dbg | 0.4.1-1 | - +- amd64 | libnabrit-dev | 0.4.1-1 | - +- amd64 | libnabrit3 | 0.4.1-1 | - +- amd64 | libnacl-dev | 20110221-4 | - +- amd64 | libnacore-dev | 0.4.0-3 | - +- amd64 | libnacore5 | 0.4.0-3 | - +- amd64 | libnanohttp-dev | 1.1.0-17.1 | - +- amd64 | libnanohttp1 | 1.1.0-17.1 | - +- amd64 | libnanohttp1-dbg | 1.1.0-17.1 | - +- amd64 | libnatpmp-dev | 20110808-3 | - +- amd64 | libnatpmp1 | 20110808-3 | - +- amd64 | libnautilus-extension-dev | 3.4.2-1+build1 | - +- amd64 | libnautilus-extension1a | 3.4.2-1+build1 | - +- amd64 | libnbio-dev | 0.30-1 | - +- amd64 | libnbio0 | 0.30-1 | - +- amd64 | libncap-dev | 1.9.2-1+b2 | - +- amd64 | libncap44 | 1.9.2-1+b2 | - +- amd64 | libncbi6 | 6.1.20120620-2 | - +- amd64 | libncbi6-dbg | 6.1.20120620-2 | - +- amd64 | libncbi6-dev | 6.1.20120620-2 | - +- amd64 | libncp | 2.2.6-9 | - +- amd64 | libncp-dev | 2.2.6-9 | - +- amd64 | libncurses5 | 5.9-10 | - +- amd64 | libncurses5-dbg | 5.9-10 | - +- amd64 | libncurses5-dev | 5.9-10 | - +- amd64 | libncursesada-dbg | 5.9.20110404-7 | - +- amd64 | libncursesada2 | 5.9.20110404-7 | - +- amd64 | libncursesada2-dev | 5.9.20110404-7 | - +- amd64 | libncursesw5 | 5.9-10 | - +- amd64 | libncursesw5-dbg | 5.9-10 | - +- amd64 | libncursesw5-dev | 5.9-10 | - +- amd64 | libndr-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libndr-standard-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libndr-standard0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libndr0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libnecpp-dev | 1.5.0+cvs20101003-2.1 | - +- amd64 | libnecpp0 | 1.5.0+cvs20101003-2.1 | - +- amd64 | libneko0 | 1.8.1-6+b1 | - +- amd64 | libnemesis3 | 5.14.dfsg.1-2+b1 | - +- amd64 | libneon27 | 0.29.6-3 | - +- amd64 | libneon27-dbg | 0.29.6-3 | - +- amd64 | libneon27-dev | 0.29.6-3 | - +- amd64 | libneon27-gnutls | 0.29.6-3 | - +- amd64 | libneon27-gnutls-dbg | 0.29.6-3 | - +- amd64 | libneon27-gnutls-dev | 0.29.6-3 | - +- amd64 | libnepomuk4 | 4:4.8.4-4 | - +- amd64 | libnepomukquery4a | 4:4.8.4-4 | - +- amd64 | libnepomukutils4 | 4:4.8.4-4 | - +- amd64 | libnes-dev | 1.1.3-1 | - +- amd64 | libnes1 | 1.1.3-1 | - +- amd64 | libnes1-dbg | 1.1.3-1 | - +- amd64 | libnet-arp-perl | 1.0.4-1+b2 | - +- amd64 | libnet-bluetooth-perl | 0.40-2+b4 | - +- amd64 | libnet-cups-perl | 0.60-1+b2 | - +- amd64 | libnet-dbus-glib-perl | 0.33.0-1+b2 | - +- amd64 | libnet-dbus-perl | 1.0.0-1+b1 | - +- amd64 | libnet-dns-perl | 0.66-2+b2 | - +- amd64 | libnet-freedb-perl | 0.08-2+b1 | - +- amd64 | libnet-handlersocket-perl | 1.1.0-7-g1044a28-1 | - +- amd64 | libnet-jabber-loudmouth-perl | 0.07-2+b2 | - +- amd64 | libnet-ldapapi-perl | 3.0.3-7+b2 | - +- amd64 | libnet-libdnet-perl | 0.96-1 | - +- amd64 | libnet-libidn-perl | 0.12.ds-1+b3 | - +- amd64 | libnet-nis-perl | 0.43-1+b3 | - +- amd64 | libnet-oping-perl | 1.6.2-1.21-1 | - +- amd64 | libnet-patricia-perl | 1.19-1+b2 | - +- amd64 | libnet-pcap-perl | 0.16-3+b1 | - +- amd64 | libnet-rawip-perl | 0.25-1+b2 | - +! amd64 | libnet-remctl-perl | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | libnet-ssh2-perl | 0.44-1 | - +- amd64 | libnet-ssleay-perl | 1.48-1+b1 | - +- amd64 | libnet-tclink-perl | 3.4.0-5+b3 | - +- amd64 | libnet-z3950-simpleserver-perl | 1.15-1 | - +- amd64 | libnet-z3950-zoom-perl | 1.26-1+b2 | - +- amd64 | libnet1 | 1.1.4-2.1 | - +- amd64 | libnet1-dbg | 1.1.4-2.1 | - +- amd64 | libnet1-dev | 1.1.4-2.1 | - +- amd64 | libnet6-1.3-0 | 1:1.3.14-1 | - +- amd64 | libnet6-1.3-0-dbg | 1:1.3.14-1 | - +- amd64 | libnet6-1.3-dev | 1:1.3.14-1 | - +- amd64 | libnetaddr-ip-perl | 4.062+dfsg-1 | - +- amd64 | libnetcdf-dev | 1:4.1.3-6+b1 | - +- amd64 | libnetcdfc++4 | 1:4.1.3-6+b1 | - +- amd64 | libnetcdfc7 | 1:4.1.3-6+b1 | - +- amd64 | libnetcdff5 | 1:4.1.3-6+b1 | - +- amd64 | libnetcf-dev | 0.1.9-2 | - +- amd64 | libnetcf1 | 0.1.9-2 | - +- amd64 | libnetcf1-dbg | 0.1.9-2 | - +- amd64 | libnetclasses-dev | 1.06.dfsg-5+b3 | - +- amd64 | libnetclasses0 | 1.06.dfsg-5+b3 | - +- amd64 | libnetfilter-conntrack-dev | 1.0.1-1 | - +- amd64 | libnetfilter-conntrack3 | 1.0.1-1 | - +- amd64 | libnetfilter-conntrack3-dbg | 1.0.1-1 | - +- amd64 | libnetfilter-cttimeout-dev | 1.0.0-1 | - +- amd64 | libnetfilter-cttimeout1 | 1.0.0-1 | - +- amd64 | libnetfilter-cttimeout1-dbg | 1.0.0-1 | - +- amd64 | libnetfilter-log-dev | 1.0.0-1 | - +- amd64 | libnetfilter-log1 | 1.0.0-1 | - +- amd64 | libnetfilter-log1-dbg | 1.0.0-1 | - +- amd64 | libnetfilter-queue-dev | 0.0.17-1 | - +- amd64 | libnetfilter-queue1 | 0.0.17-1 | - +- amd64 | libnetfilter-queue1-dbg | 0.0.17-1 | - +- amd64 | libnethttpd-ocaml-dev | 3.5.1-1 | - +- amd64 | libnetpbm10 | 2:10.0-15+b1 | - +- amd64 | libnetpbm10-dev | 2:10.0-15+b1 | - +- amd64 | libnetpbm9 | 2:10.0-15+b1 | - +- amd64 | libnetpbm9-dev | 2:10.0-15+b1 | - +- amd64 | libnetsvcs-6.0.3 | 6.0.3+dfsg-0.1 | - +- amd64 | libnetsvcs-dev | 6.0.3+dfsg-0.1 | - +! amd64 | libnettle4 | 2.4-3 | 2.7.1-1~bpo70+1 +- amd64 | libnewmat10-dev | 1.10.4-5 | - +- amd64 | libnewmat10ldbl | 1.10.4-5 | - +- amd64 | libnewt-dev | 0.52.14-11.1 | - +- amd64 | libnewt-pic | 0.52.14-11.1 | - +- amd64 | libnewt0.52 | 0.52.14-11.1 | - +- amd64 | libnexus0 | 4.2.1-svn1614-1+b2 | - +- amd64 | libnexus0-dev | 4.2.1-svn1614-1+b2 | - +- amd64 | libnexus0-java | 4.2.1-svn1614-1+b2 | - +- amd64 | libnexus0-python | 4.2.1-svn1614-1+b2 | - +- amd64 | libnflog-perl | 0.2-3 | - +- amd64 | libnfnetlink-dev | 1.0.0-1.1 | - +- amd64 | libnfnetlink0 | 1.0.0-1.1 | - +- amd64 | libnfnetlink0-dbg | 1.0.0-1.1 | - +- amd64 | libnfo-dev | 1.0.1-1 | - +- amd64 | libnfo1 | 1.0.1-1 | - +- amd64 | libnfo1-bin | 1.0.1-1 | - +- amd64 | libnfo1-dbg | 1.0.1-1 | - +- amd64 | libnfqueue-perl | 0.4-3 | - +- amd64 | libnfs-dev | 1.3.0-2 | - +- amd64 | libnfs1 | 1.3.0-2 | - +- amd64 | libnfsidmap-dev | 0.25-4 | - +- amd64 | libnfsidmap2 | 0.25-4 | - +- amd64 | libnice-dbg | 0.1.2-1 | - +- amd64 | libnice-dev | 0.1.2-1 | - +- amd64 | libnice10 | 0.1.2-1 | - +- amd64 | libnids-dev | 1.23-2 | - +- amd64 | libnids1.21 | 1.23-2 | - +- amd64 | libnifti-dev | 2.0.0-1 | - +- amd64 | libnifti2 | 2.0.0-1 | - +- amd64 | libnih-dbus-dev | 1.0.3-4.1 | - +- amd64 | libnih-dbus1 | 1.0.3-4.1 | - +- amd64 | libnih-dev | 1.0.3-4.1 | - +- amd64 | libnih1 | 1.0.3-4.1 | - +- amd64 | libnjb-dev | 2.2.7~dfsg0-3 | - +- amd64 | libnjb-tools | 2.2.7~dfsg0-3 | - +- amd64 | libnjb5 | 2.2.7~dfsg0-3 | - +- amd64 | libnkf-perl | 2.12-1 | - +- amd64 | libnl-3-200 | 3.2.7-4 | - +- amd64 | libnl-3-200-dbg | 3.2.7-4 | - +- amd64 | libnl-3-dev | 3.2.7-4 | - +- amd64 | libnl-cli-3-200 | 3.2.7-4 | - +- amd64 | libnl-cli-3-dev | 3.2.7-4 | - +- amd64 | libnl-dev | 1.1-7 | - +- amd64 | libnl-genl-3-200 | 3.2.7-4 | - +- amd64 | libnl-genl-3-dev | 3.2.7-4 | - +- amd64 | libnl-nf-3-200 | 3.2.7-4 | - +- amd64 | libnl-nf-3-dev | 3.2.7-4 | - +- amd64 | libnl-route-3-200 | 3.2.7-4 | - +- amd64 | libnl-route-3-dev | 3.2.7-4 | - +- amd64 | libnl-utils | 3.2.7-4 | - +- amd64 | libnl1 | 1.1-7 | - +- amd64 | libnm-glib-dev | 0.9.4.0-10 | - +- amd64 | libnm-glib-vpn-dev | 0.9.4.0-10 | - +- amd64 | libnm-glib-vpn1 | 0.9.4.0-10 | - +- amd64 | libnm-glib4 | 0.9.4.0-10 | - +- amd64 | libnm-gtk-dev | 0.9.4.1-5 | - +- amd64 | libnm-gtk0 | 0.9.4.1-5 | - +- amd64 | libnm-util-dev | 0.9.4.0-10 | - +- amd64 | libnm-util2 | 0.9.4.0-10 | - +- amd64 | libnmz7 | 2.0.21-6 | - +- amd64 | libnmz7-dev | 2.0.21-6 | - +- amd64 | libnoise-dev | 1.0.0+nmu1 | - +- amd64 | libnoise0 | 1.0.0+nmu1 | - +- amd64 | libnotify-bin | 0.7.5-1 | - +- amd64 | libnotify-dev | 0.7.5-1 | - +- amd64 | libnotify4 | 0.7.5-1 | - +! amd64 | libnotmuch-dev | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | libnotmuch3 | 0.13.2-1 | 0.16-1~bpo70+1 +- amd64 | libnova-0.14-0 | 0.14.0-2 | - +- amd64 | libnova-dev | 0.14.0-2 | - ++ amd64 | libnpp5.0 | - | 5.0.35-8~bpo70+1 +- amd64 | libnpth0 | 0.90-2 | - +- amd64 | libnpth0-dbg | 0.90-2 | - +- amd64 | libnpth0-dev | 0.90-2 | - +- amd64 | libnsbmp0 | 0.0.1-1.1 | - +- amd64 | libnsbmp0-dbg | 0.0.1-1.1 | - +- amd64 | libnsbmp0-dev | 0.0.1-1.1 | - +- amd64 | libnsgif0 | 0.0.1-1.1 | - +- amd64 | libnsgif0-dbg | 0.0.1-1.1 | - +- amd64 | libnsgif0-dev | 0.0.1-1.1 | - +- amd64 | libnspr4 | 2:4.9.2-1+deb7u1 | - +- amd64 | libnspr4-0d | 2:4.9.2-1+deb7u1 | - +- amd64 | libnspr4-dbg | 2:4.9.2-1+deb7u1 | - +- amd64 | libnspr4-dev | 2:4.9.2-1+deb7u1 | - +- amd64 | libnss-cache | 0.10.2-1 | - +- amd64 | libnss-db | 2.2.3pre1-4 | - +- amd64 | libnss-extrausers | 0.6-3 | - +- amd64 | libnss-gw-name | 0.2.1-1 | - +- amd64 | libnss-ldap | 264-2.5 | - +- amd64 | libnss-ldapd | 0.8.10-4 | - +- amd64 | libnss-lwres | 0.93-7 | - +- amd64 | libnss-mdns | 0.10-3.2 | - +- amd64 | libnss-myhostname | 0.3-5~deb7u1 | - +- amd64 | libnss-mysql-bg | 1.5-3+b1 | - +- amd64 | libnss-pgsql2 | 1.4.0debian-5 | - +- amd64 | libnss-rainbow2 | 0.8.6-1 | - +- amd64 | libnss-sss | 1.8.4-2 | - +! amd64 | libnss-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | libnss3 | 2:3.14.5-1 | - +- amd64 | libnss3-1d | 2:3.14.5-1 | - +- amd64 | libnss3-dbg | 2:3.14.5-1 | - +- amd64 | libnss3-dev | 2:3.14.5-1 | - +- amd64 | libnss3-tools | 2:3.14.5-1 | - ++ amd64 | libntdb-dev | - | 1.0-2~bpo70+1 ++ amd64 | libntdb1 | - | 1.0-2~bpo70+1 ++ amd64 | libntdb1-dbg | - | 1.0-2~bpo70+1 +- amd64 | libntfs-dev | 2.0.0-1+b1 | - +- amd64 | libntfs-gnomevfs | 2.0.0-1+b1 | - +- amd64 | libntfs10 | 2.0.0-1+b1 | - +- amd64 | libntl-dev | 5.5.2-2 | - +- amd64 | libntl0 | 5.5.2-2 | - +- amd64 | libntlm0 | 1.2-1 | - +- amd64 | libntlm0-dev | 1.2-1 | - +- amd64 | libntrack-dev | 016-1.1 | - +- amd64 | libntrack-glib-dev | 016-1.1 | - +- amd64 | libntrack-glib2 | 016-1.1 | - +- amd64 | libntrack-gobject-dev | 016-1.1 | - +- amd64 | libntrack-gobject1 | 016-1.1 | - +- amd64 | libntrack-qt4-1 | 016-1.1 | - +- amd64 | libntrack-qt4-dev | 016-1.1 | - +- amd64 | libntrack0 | 016-1.1 | - +- amd64 | libnuclient-dev | 2.4.3-2.2 | - +- amd64 | libnuclient4 | 2.4.3-2.2 | - +- amd64 | libnuma-dbg | 2.0.8~rc4-1 | - +- amd64 | libnuma-dev | 2.0.8~rc4-1 | - +- amd64 | libnuma1 | 2.0.8~rc4-1 | - +- amd64 | libnussl-dev | 2.4.3-2.2 | - +- amd64 | libnussl1 | 2.4.3-2.2 | - ++ amd64 | libnvcuvid1 | - | 319.82-1~bpo70+1 ++ amd64 | libnvidia-compiler | - | 319.82-1~bpo70+1 ++ amd64 | libnvidia-encode1 | - | 319.82-1~bpo70+1 ++ amd64 | libnvidia-ifr1 | - | 319.82-1~bpo70+1 ++ amd64 | libnvidia-ml1 | - | 319.82-1~bpo70+1 ++ amd64 | libnvtoolsext5.0 | - | 5.0.35-8~bpo70+1 +! amd64 | libnvtt-bin | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libnvtt-dev | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libnvtt2 | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +- amd64 | libnxcl-bin | 0.9-3.1 | - +- amd64 | libnxcl-dev | 0.9-3.1 | - +- amd64 | libnxcl1 | 0.9-3.1 | - +- amd64 | libnxml0 | 0.18.3-4 | - +- amd64 | libnxml0-dbg | 0.18.3-4 | - +- amd64 | libnxml0-dev | 0.18.3-4 | - +- amd64 | libnzb-dev | 0.0.20050629-6.1 | - +- amd64 | libnzb0c2a | 0.0.20050629-6.1 | - +- amd64 | liboar-perl | 2.5.2-3 | - +- amd64 | liboasis-ocaml | 0.2.0-6 | - +- amd64 | liboasis-ocaml-dev | 0.2.0-6 | - +- amd64 | liboasis3-0d | 3.3.beta.dfsg.1-8+b1 | - +- amd64 | liboasis3-dev | 3.3.beta.dfsg.1-8+b1 | - +- amd64 | liboath-dev | 1.12.4-1 | - +- amd64 | liboath0 | 1.12.4-1 | - +- amd64 | liboauth-dev | 0.9.4-3.1 | - +- amd64 | liboauth0 | 0.9.4-3.1 | - +- amd64 | libobby-0.4-1 | 0.4.8-1 | - +- amd64 | libobby-0.4-1-dbg | 0.4.8-1 | - +- amd64 | libobby-0.4-dev | 0.4.8-1 | - +- amd64 | libobexftp-perl | 0.23-1.1 | - +- amd64 | libobexftp-ruby | 0.23-1.1 | - +- amd64 | libobexftp0 | 0.23-1.1 | - +- amd64 | libobexftp0-dev | 0.23-1.1 | - +- amd64 | libobjc3 | 4.6.3-14 | - +- amd64 | libobjc3-dbg | 4.6.3-14 | - +- amd64 | libobjc4 | 4.7.2-5 | - +- amd64 | libobjc4-dbg | 4.7.2-5 | - +- amd64 | libobrender27 | 3.5.0-7 | - ++ amd64 | libobrender29 | - | 3.5.2-6~bpo70+1 +- amd64 | libobrowser-ocaml-dev | 1.1.1+dfsg-1+b9 | - +- amd64 | libobt0 | 3.5.0-7 | - ++ amd64 | libobt2 | - | 3.5.2-6~bpo70+1 +- amd64 | libobus-ocaml | 1.1.3-1+b8 | - +- amd64 | libobus-ocaml-bin | 1.1.3-1+b8 | - +- amd64 | libobus-ocaml-dev | 1.1.3-1+b8 | - +! amd64 | libocamlbricks-ocaml-dev | 0.50.1-4+b5 | 0.90+bzr367-1~bpo70+1 +- amd64 | libocamlgraph-ocaml-dev | 1.8.2-2 | - +- amd64 | libocamlgraph-viewer-ocaml-dev | 1.8.2-2 | - +- amd64 | libocamlgsl-ocaml | 0.6.0-7+b2 | - +- amd64 | libocamlgsl-ocaml-dev | 0.6.0-7+b2 | - +- amd64 | libocamlnet-gtk2-ocaml-dev | 3.5.1-1 | - +- amd64 | libocamlnet-ocaml | 3.5.1-1 | - +- amd64 | libocamlnet-ocaml-bin | 3.5.1-1 | - +- amd64 | libocamlnet-ocaml-dev | 3.5.1-1 | - +- amd64 | libocamlnet-ssl-ocaml | 3.5.1-1 | - +- amd64 | libocamlnet-ssl-ocaml-dev | 3.5.1-1 | - +- amd64 | libocamlodbc-ocaml-dev | 2.15-5+b3 | - +- amd64 | libocamlviz-ocaml-dev | 1.01-2+b2 | - +- amd64 | libocas-dbg | 0.93-1 | - +- amd64 | libocas-dev | 0.93-1 | - +- amd64 | libocas-tools | 0.93-1 | - +- amd64 | libocas0 | 0.93-1 | - +- amd64 | liboce-foundation-dev | 0.9.1-3 | - +- amd64 | liboce-foundation2 | 0.9.1-3 | - +- amd64 | liboce-modeling2 | 0.9.1-3 | - +- amd64 | liboce-ocaf-lite2 | 0.9.1-3 | - +- amd64 | liboce-ocaf2 | 0.9.1-3 | - +- amd64 | liboce-visualization2 | 0.9.1-3 | - +- amd64 | libocpf-dev | 1:1.0-3 | - +- amd64 | libocpf0 | 1:1.0-3 | - +- amd64 | libocrad-dev | 0.22~rc1-2 | - +- amd64 | libocsigen-ocaml | 1.3.4-2+b12 | - +- amd64 | libocsigen-ocaml-dev | 1.3.4-2+b12 | - +- amd64 | libocsigen-xhtml-ocaml-dev | 1.3.4-2+b12 | - +- amd64 | libocsigenserver-ocaml | 2.1-1 | - +- amd64 | libocsigenserver-ocaml-dev | 2.1-1 | - ++ amd64 | libocsync-dev | - | 0.91.4-1~bpo70+1 ++ amd64 | libocsync0 | - | 0.91.4-1~bpo70+1 +- amd64 | liboctave-dev | 3.6.2-5+deb7u1 | - +- amd64 | liboctave1 | 3.6.2-5+deb7u1 | - +- amd64 | libodbc1 | 2.2.14p2-5 | - +- amd64 | libodbcinstq4-1 | 2.3.0-3 | - +- amd64 | libode-dev | 2:0.11.1-4 | - +- amd64 | libode-sp-dev | 2:0.11.1-4 | - +- amd64 | libode1 | 2:0.11.1-4 | - +- amd64 | libode1sp | 2:0.11.1-4 | - +- amd64 | libodin-dev | 1.8.5-2 | - +- amd64 | libodn-ocaml | 0.0.8-1 | - +- amd64 | libodn-ocaml-dev | 0.0.8-1 | - +- amd64 | libofa0 | 0.9.3-5 | - +- amd64 | libofa0-dev | 0.9.3-5 | - +- amd64 | libofapi-dev | 0git20070620-6 | - +- amd64 | libofapi0 | 0git20070620-6 | - +- amd64 | libofdt-dev | 1.3.6-1 | - +- amd64 | libofdt1 | 1.3.6-1 | - +- amd64 | libofetion-dev | 2.2.2-1 | - +- amd64 | libofetion1 | 2.2.2-1 | - +- amd64 | libofx-dev | 1:0.9.4-2.1 | - +- amd64 | libofx4 | 1:0.9.4-2.1 | - +- amd64 | libofx4-dbg | 1:0.9.4-2.1 | - +- amd64 | libogdf-tulip-3.7.0 | 3.7.0dfsg-4 | - +- amd64 | libogdi3.2 | 3.2.0~beta2-7 | - +- amd64 | libogdi3.2-dev | 3.2.0~beta2-7 | - +- amd64 | libogg-dbg | 1.3.0-4 | - +- amd64 | libogg-dev | 1.3.0-4 | - +- amd64 | libogg-ocaml | 0.4.3-1+b1 | - +- amd64 | libogg-ocaml-dev | 0.4.3-1+b1 | - +- amd64 | libogg-vorbis-decoder-perl | 0.9-1+b2 | - +- amd64 | libogg0 | 1.3.0-4 | - +- amd64 | liboggkate-dev | 0.4.1-1 | - +- amd64 | liboggkate1 | 0.4.1-1 | - +- amd64 | liboggplay1 | 0.2.1~git20091227-1.2 | - +- amd64 | liboggplay1-dbg | 0.2.1~git20091227-1.2 | - +- amd64 | liboggplay1-dev | 0.2.1~git20091227-1.2 | - +- amd64 | liboggz2 | 1.1.1-1 | - +- amd64 | liboggz2-dbg | 1.1.1-1 | - +- amd64 | liboggz2-dev | 1.1.1-1 | - +- amd64 | liboglappth-dev | 1.0.0-2 | - +- amd64 | liboglappth2 | 1.0.0-2 | - +- amd64 | libogre-1.7.4 | 1.7.4+dfsg1-7 | - +- amd64 | libogre-1.7.4-dbg | 1.7.4+dfsg1-7 | - +- amd64 | libogre-1.8-dev | 1.8.0+dfsg1-3 | - +- amd64 | libogre-1.8.0 | 1.8.0+dfsg1-3 | - +- amd64 | libogre-1.8.0-dbg | 1.8.0+dfsg1-3 | - +- amd64 | libogre-dev | 1.7.4+dfsg1-7 | - +- amd64 | libogre-perl | 0.50-2+b2 | - +- amd64 | liboil0.3 | 0.3.17-2 | - +- amd64 | liboil0.3-dbg | 0.3.17-2 | - +- amd64 | liboil0.3-dev | 0.3.17-2 | - +- amd64 | libois-1.3.0 | 1.3.0+dfsg0-5 | - +- amd64 | libois-dev | 1.3.0+dfsg0-5 | - +- amd64 | libois-perl | 0.05-3 | - +- amd64 | libokteta1core1 | 4:4.8.4+dfsg-1 | - +- amd64 | libokteta1gui1 | 4:4.8.4+dfsg-1 | - +- amd64 | libokularcore1 | 4:4.8.4-3+b1 | - +- amd64 | libomhacks-dev | 0.16-1 | - +- amd64 | libomhacks0 | 0.16-1 | - +- amd64 | libomnievents-dbg | 1:2.6.2-2 | - +- amd64 | libomnievents-dev | 1:2.6.2-2 | - +- amd64 | libomnievents2 | 1:2.6.2-2 | - +- amd64 | libomniorb4-1 | 4.1.6-2 | - +- amd64 | libomniorb4-1-dbg | 4.1.6-2 | - +- amd64 | libomniorb4-dev | 4.1.6-2 | - +- amd64 | libomnithread3-dev | 4.1.6-2 | - +- amd64 | libomnithread3c2 | 4.1.6-2 | - +- amd64 | libomnithread3c2-dbg | 4.1.6-2 | - +- amd64 | libomxil-bellagio-dev | 0.9.3-1+b1 | - +- amd64 | libomxil-bellagio0 | 0.9.3-1+b1 | - +- amd64 | libomxil-bellagio0-components-alsa | 0.1-2 | - +- amd64 | libomxil-bellagio0-components-base | 0.9.3-1+b1 | - +- amd64 | libomxil-bellagio0-components-base-dbg | 0.9.3-1+b1 | - +- amd64 | libomxil-bellagio0-components-camera | 0.1-2 | - +- amd64 | libomxil-bellagio0-components-fbdevsink | 0.1-2 | - +- amd64 | libomxil-bellagio0-components-mad | 0.1-1 | - +- amd64 | libomxil-bellagio0-components-videosrc | 0.1-1 | - +- amd64 | libomxil-bellagio0-components-vorbis | 0.1-3 | - +- amd64 | libomxil-bellagio0-components-xvideo | 0.1-2 | - +- amd64 | libomxil-bellagio0-dbg | 0.9.3-1+b1 | - +- amd64 | libonig-dev | 5.9.1-1 | - +- amd64 | libonig2 | 5.9.1-1 | - +- amd64 | libonig2-dbg | 5.9.1-1 | - +- amd64 | liboobs-1-5 | 3.0.0-1 | - +- amd64 | liboobs-1-5-dbg | 3.0.0-1 | - +- amd64 | liboobs-1-dev | 3.0.0-1 | - +- amd64 | liboop-dbg | 1.0-9 | - +- amd64 | liboop-dev | 1.0-9 | - +- amd64 | liboop4 | 1.0-9 | - +- amd64 | libooptools-dev | 2.7-1 | - +- amd64 | libopal-dbg | 3.10.4~dfsg-3 | - +- amd64 | libopal-dev | 3.10.4~dfsg-3 | - +- amd64 | libopal3.10.4 | 3.10.4~dfsg-3 | - +! amd64 | libopenafs-dev | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- amd64 | libopenais-dev | 1.1.4-4.1 | - +- amd64 | libopenais3 | 1.1.4-4.1 | - +- amd64 | libopenal-dev | 1:1.14-4 | - +- amd64 | libopenal1 | 1:1.14-4 | - +- amd64 | libopenbabel-dev | 2.3.1+dfsg-4 | - +- amd64 | libopenbabel4 | 2.3.1+dfsg-4 | - +- amd64 | libopenblas-base | 0.1.1-6+deb7u2 | - +- amd64 | libopenblas-dev | 0.1.1-6+deb7u2 | - +- amd64 | libopencc-dbg | 0.3.0-3 | - +- amd64 | libopencc-dev | 0.3.0-3 | - +- amd64 | libopencc1 | 0.3.0-3 | - +- amd64 | libopenconnect-dev | 3.20-4 | - +- amd64 | libopenconnect1 | 3.20-4 | - +- amd64 | libopencore-amrnb-dev | 0.1.3-2 | - +- amd64 | libopencore-amrnb0 | 0.1.3-2 | - +- amd64 | libopencore-amrnb0-dbg | 0.1.3-2 | - +- amd64 | libopencore-amrwb-dev | 0.1.3-2 | - +- amd64 | libopencore-amrwb0 | 0.1.3-2 | - +- amd64 | libopencore-amrwb0-dbg | 0.1.3-2 | - +- amd64 | libopencryptoki-dev | 2.3.1+dfsg-3 | - +- amd64 | libopencryptoki0 | 2.3.1+dfsg-3 | - +- amd64 | libopencsg-dev | 1.3.2-2 | - +- amd64 | libopencsg-example | 1.3.2-2 | - +- amd64 | libopencsg1 | 1.3.2-2 | - +- amd64 | libopencsg1-dbg | 1.3.2-2 | - +- amd64 | libopenct1 | 0.6.20-1.2 | - +- amd64 | libopenct1-dbg | 0.6.20-1.2 | - +- amd64 | libopenct1-dev | 0.6.20-1.2 | - +- amd64 | libopencv-calib3d-dev | 2.3.1-11 | - +- amd64 | libopencv-calib3d2.3 | 2.3.1-11 | - +- amd64 | libopencv-contrib-dev | 2.3.1-11 | - +- amd64 | libopencv-contrib2.3 | 2.3.1-11 | - +- amd64 | libopencv-core-dev | 2.3.1-11 | - +- amd64 | libopencv-core2.3 | 2.3.1-11 | - +- amd64 | libopencv-dev | 2.3.1-11 | - +- amd64 | libopencv-features2d-dev | 2.3.1-11 | - +- amd64 | libopencv-features2d2.3 | 2.3.1-11 | - +- amd64 | libopencv-flann-dev | 2.3.1-11 | - +- amd64 | libopencv-flann2.3 | 2.3.1-11 | - +- amd64 | libopencv-gpu-dev | 2.3.1-11 | - +- amd64 | libopencv-gpu2.3 | 2.3.1-11 | - +- amd64 | libopencv-highgui-dev | 2.3.1-11 | - +- amd64 | libopencv-highgui2.3 | 2.3.1-11 | - +- amd64 | libopencv-imgproc-dev | 2.3.1-11 | - +- amd64 | libopencv-imgproc2.3 | 2.3.1-11 | - +- amd64 | libopencv-legacy-dev | 2.3.1-11 | - +- amd64 | libopencv-legacy2.3 | 2.3.1-11 | - +- amd64 | libopencv-ml-dev | 2.3.1-11 | - +- amd64 | libopencv-ml2.3 | 2.3.1-11 | - +- amd64 | libopencv-objdetect-dev | 2.3.1-11 | - +- amd64 | libopencv-objdetect2.3 | 2.3.1-11 | - +- amd64 | libopencv-video-dev | 2.3.1-11 | - +- amd64 | libopencv-video2.3 | 2.3.1-11 | - +- amd64 | libopendkim-dev | 2.6.8-4 | - +- amd64 | libopendkim7 | 2.6.8-4 | - +- amd64 | libopenexr-dev | 1.6.1-6 | - +- amd64 | libopenexr6 | 1.6.1-6 | - +- amd64 | libopengl-perl | 0.66+dfsg-1 | - +- amd64 | libopengl-xscreensaver-perl | 0.04-1+b2 | - +- amd64 | libopenhpi-dev | 2.14.1-1.2 | - +- amd64 | libopenhpi2 | 2.14.1-1.2 | - +- amd64 | libopenigtlink1-dev | 1.9.2~svn7468-1 | - +- amd64 | libopenigtlink1.9 | 1.9.2~svn7468-1 | - +- amd64 | libopenigtlink1.9-dbg | 1.9.2~svn7468-1 | - +- amd64 | libopenimageio-dev | 1.0.5+dfsg0-1 | - +- amd64 | libopenimageio1.0 | 1.0.5+dfsg0-1 | - +- amd64 | libopenipmi-dev | 2.0.16-1.3 | - +- amd64 | libopenipmi0 | 2.0.16-1.3 | - +- amd64 | libopenjpeg-dev | 1.3+dfsg-4.7 | - +- amd64 | libopenjpeg2 | 1.3+dfsg-4.7 | - +- amd64 | libopenjpeg2-dbg | 1.3+dfsg-4.7 | - +- amd64 | libopenmeeg-dev | 2.0.0.dfsg-5 | - +- amd64 | libopenmeeg1 | 2.0.0.dfsg-5 | - +- amd64 | libopenmpi-dbg | 1.4.5-1 | - +- amd64 | libopenmpi-dev | 1.4.5-1 | - +- amd64 | libopenmpi1.3 | 1.4.5-1 | - +- amd64 | libopenobex1 | 1.5-2 | - +- amd64 | libopenobex1-dev | 1.5-2 | - +- amd64 | libopenr2-3 | 1.3.2-1.1 | - +- amd64 | libopenr2-bin | 1.3.2-1.1 | - +- amd64 | libopenr2-dev | 1.3.2-1.1 | - +- amd64 | libopenraw-dev | 0.0.9-3+b1 | - +- amd64 | libopenraw1 | 0.0.9-3+b1 | - +- amd64 | libopenraw1-dbg | 0.0.9-3+b1 | - +- amd64 | libopenrawgnome-dev | 0.0.9-3+b1 | - +- amd64 | libopenrawgnome1 | 0.0.9-3+b1 | - ++ amd64 | libopenrpt-dev | - | 3.3.4-6~bpo70+1 ++ amd64 | libopenrpt1 | - | 3.3.4-6~bpo70+1 +- amd64 | libopenscap-dev | 0.8.0-4+b1 | - +- amd64 | libopenscap-perl | 0.8.0-4+b1 | - +- amd64 | libopenscap1 | 0.8.0-4+b1 | - +- amd64 | libopenscap1-dbg | 0.8.0-4+b1 | - +- amd64 | libopenscenegraph-dev | 3.0.1-4 | - +- amd64 | libopenscenegraph80 | 3.0.1-4 | - +- amd64 | libopenslide-dev | 3.2.6-2 | - +- amd64 | libopenslide0 | 3.2.6-2 | - +- amd64 | libopensm2 | 3.2.6-20090317-2.1 | - +- amd64 | libopensm2-dev | 3.2.6-20090317-2.1 | - +- amd64 | libopenthreads-dev | 3.0.1-4 | - +- amd64 | libopenthreads14 | 3.0.1-4 | - +- amd64 | libopentoken-dbg | 4.0b-3 | - +- amd64 | libopentoken3-dev | 4.0b-3 | - +- amd64 | libopentoken6 | 4.0b-3 | - +- amd64 | libopenturns-dbg | 1.0-4 | - +- amd64 | libopenturns-dev | 1.0-4 | - +- amd64 | libopenturns0.1 | 1.0-4 | - +- amd64 | libopenusb-dev | 1.1.0-2 | - +- amd64 | libopenusb0 | 1.1.0-2 | - +- amd64 | libopenvg1-mesa | 8.0.5-4+deb7u2 | - +- amd64 | libopenvg1-mesa-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libopenvg1-mesa-dev | 8.0.5-4+deb7u2 | - +- amd64 | libopenvrml-dev | 0.18.9-5+deb7u1 | - +- amd64 | libopenvrml9 | 0.18.9-5+deb7u1 | - +- amd64 | libopenwalnut1 | 1.2.5-1.1+b1 | - +- amd64 | libopenwalnut1-dev | 1.2.5-1.1+b1 | - +- amd64 | liboping-dev | 1.6.2-1 | - +- amd64 | liboping0 | 1.6.2-1 | - +- amd64 | libopkele-dev | 2.0.4-5.3 | - +- amd64 | libopkele3 | 2.0.4-5.3 | - +- amd64 | libopts25 | 1:5.12-0.1 | - +- amd64 | libopts25-dev | 1:5.12-0.1 | - +! amd64 | libopus-dbg | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libopus-dev | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libopus0 | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +- amd64 | liborange-dev | 0.4-2 | - +- amd64 | liborange0 | 0.4-2 | - +- amd64 | liborbit2 | 1:2.14.19-0.1 | - +- amd64 | liborbit2-dev | 1:2.14.19-0.1 | - +- amd64 | liborc-0.4-0 | 1:0.4.16-2 | - +- amd64 | liborc-0.4-0-dbg | 1:0.4.16-2 | - +- amd64 | liborc-0.4-dev | 1:0.4.16-2 | - +- amd64 | liborigin-dev | 20080225-2.1 | - +- amd64 | liborigin0 | 20080225-2.1 | - +- amd64 | liborigin2-1 | 2:20110117-1+b2 | - +- amd64 | liborigin2-dev | 2:20110117-1+b2 | - +- amd64 | libortp-dev | 3.5.2-10 | - +- amd64 | libortp8 | 3.5.2-10 | - +- amd64 | liboscpack-dbg | 1.0.2-1 | - +- amd64 | liboscpack-dev | 1.0.2-1 | - +- amd64 | liboscpack1 | 1.0.2-1 | - +- amd64 | libosgearth-dev | 2.0+dfsg-4+b3 | - +- amd64 | libosgearth1 | 2.0+dfsg-4+b3 | - +- amd64 | libosinfo-1.0-0 | 0.1.1-1 | - +- amd64 | libosinfo-1.0-0-dbg | 0.1.1-1 | - +- amd64 | libosinfo-1.0-dev | 0.1.1-1 | - +- amd64 | libosinfo-bin | 0.1.1-1 | - +- amd64 | libosip2-7 | 3.6.0-4 | - +- amd64 | libosip2-dev | 3.6.0-4 | - +- amd64 | libosl-dev | 0.5.0-1 | - +- amd64 | libosl1 | 0.5.0-1 | - +- amd64 | libosl1-dbg | 0.5.0-1 | - +- amd64 | libosmesa6 | 8.0.5-4+deb7u2 | - +- amd64 | libosmesa6-dev | 8.0.5-4+deb7u2 | - +- amd64 | libosmgpsmap-dev | 0.7.3-3 | - +- amd64 | libosmgpsmap2 | 0.7.3-3 | - +- amd64 | libosmgpsmap2-dbg | 0.7.3-3 | - +- amd64 | libosmium-dev | 0.0~20111213-g7f3500a-3+b2 | - ++ amd64 | libosmosdr-dev | - | 0.1.7.cd37e9-2~bpo70+1 ++ amd64 | libosmosdr0 | - | 0.1.7.cd37e9-2~bpo70+1 +- amd64 | libosmpbf-dev | 1.2.1-3 | - +- amd64 | libosp-dev | 1.5.2-10 | - +- amd64 | libosp5 | 1.5.2-10 | - +- amd64 | libosptk3 | 3.4.2-1+b1 | - +- amd64 | libosptk3-dbg | 3.4.2-1+b1 | - +- amd64 | libosptk3-dev | 3.4.2-1+b1 | - +- amd64 | liboss4-salsa-asound2 | 4.2-build2006-2+deb7u1 | - +- amd64 | liboss4-salsa2 | 4.2-build2006-2+deb7u1 | - +- amd64 | libossim-dev | 1.7.21-4 | - +- amd64 | libossim1 | 1.7.21-4 | - +- amd64 | libossp-sa-dev | 1.2.6-1 | - +- amd64 | libossp-sa12 | 1.2.6-1 | - +- amd64 | libossp-uuid-dev | 1.6.2-1.3 | - +- amd64 | libossp-uuid-perl | 1.6.2-1.3 | - +- amd64 | libossp-uuid16 | 1.6.2-1.3 | - +- amd64 | libostyle-dev | 1.4devel1-20.1+b1 | - +- amd64 | libostyle1c2 | 1.4devel1-20.1+b1 | - +- amd64 | libotcl1 | 1.14+dfsg-2 | - +- amd64 | libotcl1-dev | 1.14+dfsg-2 | - +- amd64 | libotf-bin | 0.9.12-2 | - +- amd64 | libotf-dev | 0.9.12-2 | - +- amd64 | libotf-trace-dev | 1.10.2+dfsg-2 | - +- amd64 | libotf-trace1 | 1.10.2+dfsg-2 | - +- amd64 | libotf0 | 0.9.12-2 | - +- amd64 | libotf0-dbg | 0.9.12-2 | - +- amd64 | libotfaux0 | 1.10.2+dfsg-2 | - +- amd64 | libotp0-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libotpw-dev | 1.3-2 | - +- amd64 | libotr2 | 3.2.1-1+deb7u1 | - +- amd64 | libotr2-bin | 3.2.1-1+deb7u1 | - +- amd64 | libotr2-dev | 3.2.1-1+deb7u1 | - ++ amd64 | libotr5 | - | 4.0.0-2.2~bpo70+1 ++ amd64 | libotr5-bin | - | 4.0.0-2.2~bpo70+1 ++ amd64 | libotr5-dev | - | 4.0.0-2.2~bpo70+1 +- amd64 | libots-dev | 0.5.0-2.1 | - +- amd64 | libots0 | 0.5.0-2.1 | - +- amd64 | libounit-ocaml-dev | 1.1.1-1 | - +- amd64 | libow-2.8-15 | 2.8p15-1 | - +- amd64 | libow-dev | 2.8p15-1 | - +- amd64 | libow-perl | 2.8p15-1 | - +- amd64 | libow-php5 | 2.8p15-1 | - +- amd64 | libow-tcl | 2.8p15-1 | - +- amd64 | libowcapi-2.8-15 | 2.8p15-1 | - +- amd64 | libowfat-dev | 0.28-6 | - +- amd64 | libowfat-dietlibc-dev | 0.28-6 | - +- amd64 | libowfat0 | 0.28-6 | - ++ amd64 | libowncloudsync0 | - | 1.5.0+dfsg-4~bpo70+1 +- amd64 | libownet-2.8-15 | 2.8p15-1 | - +- amd64 | libownet-dev | 2.8p15-1 | - +- amd64 | libp11-2 | 0.2.8-2 | - +- amd64 | libp11-2-dbg | 0.2.8-2 | - +- amd64 | libp11-dev | 0.2.8-2 | - +! amd64 | libp11-kit-dev | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | libp11-kit0 | 0.12-3 | 0.20.2-1~bpo70+1 ++ amd64 | libp11-kit0-dbg | - | 0.20.2-1~bpo70+1 +- amd64 | libpackage-stash-xs-perl | 0.24-1+b1 | - +- amd64 | libpackagekit-glib2-14 | 0.7.6-3 | - +- amd64 | libpackagekit-glib2-dev | 0.7.6-3 | - +- amd64 | libpackagekit-qt2-2 | 0.7.6-3 | - +- amd64 | libpackagekit-qt2-dev | 0.7.6-3 | - +- amd64 | libpacketdump3 | 3.0.14-1 | - +- amd64 | libpacketdump3-dev | 3.0.14-1 | - +- amd64 | libpacklib-lesstif1-dev | 20061220+dfsg3-2 | - +- amd64 | libpacklib-lesstif1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libpacklib1-dev | 20061220+dfsg3-2 | - +- amd64 | libpacklib1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libpacparser-dev | 1.3.0-2 | - +- amd64 | libpacparser1 | 1.3.0-2 | - +- amd64 | libpadwalker-perl | 1.94-1 | - +- amd64 | libpam-abl | 0.4.3-1 | - +- amd64 | libpam-afs-session | 2.5-2 | - +- amd64 | libpam-alreadyloggedin | 0.3-4 | - +- amd64 | libpam-apparmor | 2.7.103-4 | - +- amd64 | libpam-barada | 0.5-3.1 | - +- amd64 | libpam-blue | 0.9.0-3 | - +- amd64 | libpam-cap | 1:2.22-1.2 | - +- amd64 | libpam-ccreds | 10-5+b1 | - +- amd64 | libpam-cgroup | 0.38-1 | - +- amd64 | libpam-chroot | 0.9-4.1 | - +- amd64 | libpam-ck-connector | 0.4.5-3.1 | - +- amd64 | libpam-cracklib | 1.1.3-7.1 | - +- amd64 | libpam-dbus | 0.2.1-1 | - +- amd64 | libpam-duo | 1.8-1 | - +- amd64 | libpam-encfs | 0.1.4.4-6 | - +- amd64 | libpam-fprintd | 0.4.1-5-g73edad0-3 | - +- amd64 | libpam-gnome-keyring | 3.4.1-5 | - +- amd64 | libpam-heimdal | 4.6-1 | - +- amd64 | libpam-krb5 | 4.6-1 | - +- amd64 | libpam-krb5-migrate-heimdal | 0.0.10-1 | - +- amd64 | libpam-ldap | 184-8.6 | - +- amd64 | libpam-ldapd | 0.8.10-4 | - +- amd64 | libpam-modules | 1.1.3-7.1 | - +- amd64 | libpam-modules-bin | 1.1.3-7.1 | - +- amd64 | libpam-mount | 2.14~git+d1d6f871-1 | - +- amd64 | libpam-mysql | 0.7~RC1-4+b3 | - +- amd64 | libpam-ncp | 2.2.6-9 | - +- amd64 | libpam-nufw | 2.4.3-2.2 | - +- amd64 | libpam-oath | 1.12.4-1 | - +- amd64 | libpam-ocaml | 1.1-4+b3 | - +- amd64 | libpam-ocaml-dev | 1.1-4+b3 | - +! amd64 | libpam-openafs-kaserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- amd64 | libpam-otpw | 1.3-2 | - +- amd64 | libpam-p11 | 0.1.5-2 | - +- amd64 | libpam-passwdqc | 1.2.0-1 | - +- amd64 | libpam-pgsql | 0.7.3.1-4 | - +- amd64 | libpam-pkcs11 | 0.6.8-1 | - +- amd64 | libpam-poldi | 0.4.1-2.1 | - +- amd64 | libpam-pwdfile | 0.99-5 | - +- amd64 | libpam-python | 1.0.2-1 | - +- amd64 | libpam-radius-auth | 1.3.16-4.4 | - +- amd64 | libpam-script | 1.1.5-1 | - +- amd64 | libpam-shield | 0.9.2-3.3 | - +- amd64 | libpam-shishi | 1.0.1-2 | - +- amd64 | libpam-slurm | 2.3.4-2+b1 | - +! amd64 | libpam-smbpass | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpam-ssh | 1.92-15 | 1.98-2~bpo70+1 +- amd64 | libpam-sss | 1.8.4-2 | - +- amd64 | libpam-systemd | 44-11+deb7u4 | - +- amd64 | libpam-tacplus | 1.3.6-1 | - +- amd64 | libpam-tmpdir | 0.09 | - +- amd64 | libpam-unix2 | 1:2.4.1-6 | - +- amd64 | libpam-usb | 0.5.0-4 | - +! amd64 | libpam-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | libpam-yubico | 2.12-1 | - +- amd64 | libpam0g | 1.1.3-7.1 | - +- amd64 | libpam0g-dev | 1.1.3-7.1 | - +- amd64 | libpanel-applet-4-0 | 3.4.2.1-4 | - +- amd64 | libpanel-applet-4-dev | 3.4.2.1-4 | - +- amd64 | libpango-perl | 1.222-1+b1 | - +- amd64 | libpango1.0-0 | 1.30.0-1 | - +- amd64 | libpango1.0-0-dbg | 1.30.0-1 | - +- amd64 | libpango1.0-dev | 1.30.0-1 | - +- amd64 | libpangomm-1.4-1 | 2.28.4-1 | - +- amd64 | libpangomm-1.4-dbg | 2.28.4-1 | - +- amd64 | libpangomm-1.4-dev | 2.28.4-1 | - +- amd64 | libpano13-2 | 2.9.18+dfsg-5 | - +- amd64 | libpano13-bin | 2.9.18+dfsg-5 | - +- amd64 | libpano13-dev | 2.9.18+dfsg-5 | - +- amd64 | libpantomime1.2 | 1.2.0~pre3+snap20071004+dfsg-4+b1 | - +- amd64 | libpantomime1.2-dev | 1.2.0~pre3+snap20071004+dfsg-4+b1 | - +- amd64 | libpaper-dev | 1.1.24+nmu2 | - +- amd64 | libpaper-utils | 1.1.24+nmu2 | - +- amd64 | libpaper1 | 1.1.24+nmu2 | - +- amd64 | libpaps-dev | 0.6.8-6 | - +- amd64 | libpaps0 | 0.6.8-6 | - +- amd64 | libpaq-dev | 1.0.4-3+b1 | - +- amd64 | libpaq0 | 1.0.4-3+b1 | - +- amd64 | libpar-packer-perl | 1.012-1 | - +- amd64 | libpar2-0 | 0.2.1-1 | - +- amd64 | libpar2-0-dbg | 0.2.1-1 | - +- amd64 | libpar2-0-dev | 0.2.1-1 | - +- amd64 | libparams-classify-perl | 0.013-4 | - +- amd64 | libparams-util-perl | 1.07-1 | - +- amd64 | libparams-validate-perl | 1.06-1 | - +! amd64 | libpari-dbg | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libpari-dev | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libpari-gmp3 | 2.5.1-2 | 2.5.5-1~bpo70+1 +- amd64 | libparpack2 | 3.1.1-2.1 | - +- amd64 | libparpack2-dbg | 3.1.1-2.1 | - +- amd64 | libparpack2-dev | 3.1.1-2.1 | - +- amd64 | libparrot-dev | 4.0.0-3 | - +- amd64 | libparrot4.0.0 | 4.0.0-3 | - +- amd64 | libparse-exuberantctags-perl | 1.01-1+b2 | - +! amd64 | libparse-pidl-perl | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | libparted0 | 2.3-12 | - +- amd64 | libparted0-dev | 2.3-12 | - +- amd64 | libparted0debian1 | 2.3-12 | - +- amd64 | libparted0debian1-dbg | 2.3-12 | - +- amd64 | libpasswdqc0 | 1.2.0-1 | - +- amd64 | libpath-utils-dev | 0.1.3-2 | - +- amd64 | libpath-utils1 | 0.1.3-2 | - +- amd64 | libpathfinder-dev | 1.1.3-0.4+b1 | - +- amd64 | libpathfinder-nss-1 | 1.1.3-0.4+b1 | - +- amd64 | libpathfinder-openssl-1 | 1.1.3-0.4+b1 | - +- amd64 | libpathplan4 | 2.26.3-14+deb7u1 | - +- amd64 | libpawlib-lesstif3-dev | 1:2.14.04.dfsg.2-8 | - +- amd64 | libpawlib-lesstif3-gfortran | 1:2.14.04.dfsg.2-8 | - +- amd64 | libpawlib2-dev | 1:2.14.04.dfsg.2-8 | - +- amd64 | libpawlib2-gfortran | 1:2.14.04.dfsg.2-8 | - +- amd64 | libpcap0.8 | 1.3.0-1 | - +- amd64 | libpcap0.8-dbg | 1.3.0-1 | - +- amd64 | libpcap0.8-dev | 1.3.0-1 | - +- amd64 | libpcapnav0 | 0.8-1 | - +- amd64 | libpcapnav0-dev | 0.8-1 | - +- amd64 | libpci-dev | 1:3.1.9-6 | - +- amd64 | libpci3 | 1:3.1.9-6 | - +- amd64 | libpciaccess-dev | 0.13.1-2 | - +- amd64 | libpciaccess0 | 0.13.1-2 | - +- amd64 | libpcl1 | 1.6-1 | - +- amd64 | libpcl1-dev | 1.6-1 | - +- amd64 | libpcre++-dev | 0.9.5-5.1 | - +- amd64 | libpcre++0 | 0.9.5-5.1 | - +- amd64 | libpcre-ocaml | 6.2.5-1 | - +- amd64 | libpcre-ocaml-dev | 6.2.5-1 | - +- amd64 | libpcre3 | 1:8.30-5 | - +- amd64 | libpcre3-dbg | 1:8.30-5 | - +- amd64 | libpcre3-dev | 1:8.30-5 | - +- amd64 | libpcrecpp0 | 1:8.30-5 | - +- amd64 | libpcsc-perl | 1.4.12-1+b2 | - +- amd64 | libpcscada0.7.1 | 0.7.1-4 | - +- amd64 | libpcscada2-dev | 0.7.1-4 | - +- amd64 | libpcsclite-dbg | 1.8.4-1+deb7u1 | - +- amd64 | libpcsclite-dev | 1.8.4-1+deb7u1 | - +- amd64 | libpcsclite1 | 1.8.4-1+deb7u1 | - +- amd64 | libpda-pilot-perl | 0.12.5-5 | - +- amd64 | libpdflib804-2-dev | 20061220+dfsg3-2 | - +- amd64 | libpdflib804-2-gfortran | 20061220+dfsg3-2 | - +- amd64 | libpdl-io-hdf5-perl | 0.63-3 | - +- amd64 | libpdl-netcdf-perl | 4.16-3 | - +- amd64 | libpdl-stats-perl | 0.6.2-1 | - +- amd64 | libpe-rules2 | 1.1.7-1 | - +- amd64 | libpe-rules2-dev | 1.1.7-1 | - +- amd64 | libpe-status3 | 1.1.7-1 | - +- amd64 | libpe-status3-dev | 1.1.7-1 | - +- amd64 | libpeas-1.0-0 | 1.4.0-2 | - +- amd64 | libpeas-dev | 1.4.0-2 | - +- amd64 | libpeas-doc | 1.4.0-2 | - +- amd64 | libpengine3 | 1.1.7-1 | - +- amd64 | libpengine3-dev | 1.1.7-1 | - +- amd64 | libperl-destruct-level-perl | 0.02-1+b2 | - +- amd64 | libperl-dev | 5.14.2-21+deb7u1 | - +- amd64 | libperl4caml-ocaml | 0.9.5-4+b4 | - +- amd64 | libperl4caml-ocaml-dev | 0.9.5-4+b4 | - +- amd64 | libperl5.14 | 5.14.2-21+deb7u1 | - +- amd64 | libperl5i-perl | 2.9.1-2 | - +- amd64 | libperlbal-xs-httpheaders-perl | 0.20-2 | - +- amd64 | libperlio-eol-perl | 0.14-1+b3 | - +- amd64 | libperlio-gzip-perl | 0.18-1+b2 | - +- amd64 | libpetsc3.2 | 3.2.dfsg-6 | - +- amd64 | libpetsc3.2-dbg | 3.2.dfsg-6 | - +- amd64 | libpetsc3.2-dev | 3.2.dfsg-6 | - +- amd64 | libpfqueue-dev | 0.5.6-8 | - +- amd64 | libpfqueue0 | 0.5.6-8 | - +- amd64 | libpfs-1.2-0 | 1.8.5-1 | - +- amd64 | libpfs-dev | 1.8.5-1 | - +- amd64 | libpg-perl | 1:2.1.1-4+b2 | - +- amd64 | libpgapack-mpi1 | 1.1.1-3 | - +- amd64 | libpgapack-serial1 | 1.1.1-3 | - +- amd64 | libpgm-5.1-0 | 5.1.118-1~dfsg-0.1 | - +- amd64 | libpgm-dbg | 5.1.118-1~dfsg-0.1 | - +- amd64 | libpgm-dev | 5.1.118-1~dfsg-0.1 | - +- amd64 | libpgocaml-ocaml | 1.5-2 | - +- amd64 | libpgocaml-ocaml-dev | 1.5-2 | - +- amd64 | libpgpool-dev | 3.1.3-5 | - +- amd64 | libpgpool0 | 3.1.3-5 | - +- amd64 | libpgraphutil-smlnj | 110.74-2 | - +- amd64 | libpgtcl-dev | 1:1.5-6 | - +- amd64 | libpgtcl1.5 | 1:1.5-6 | - +- amd64 | libpgtypes3 | 9.1.11-0wheezy1 | - +- amd64 | libphash0 | 0.9.4-1.2 | - +- amd64 | libphash0-dev | 0.9.4-1.2 | - +- amd64 | libphat-dev | 0.4.1-5 | - +- amd64 | libphat-tools | 0.4.1-5 | - +- amd64 | libphat0 | 0.4.1-5 | - +- amd64 | libphobos-4.4-dev | 1.063-4.4.7-1 | - +- amd64 | libphobos2-4.6-dev | 0.29.1-4.6.3-2 | - +- amd64 | libphone-ui-20110825 | 1:0.0.1+git20110825-3 | - +- amd64 | libphone-ui-20110825-dbg | 1:0.0.1+git20110825-3 | - +- amd64 | libphone-ui-dev | 1:0.0.1+git20110825-3 | - +- amd64 | libphone-ui-shr | 0.1+git20110827-3+b1 | - +- amd64 | libphone-ui-shr-data | 0.1+git20110827-3+b1 | - +- amd64 | libphone-ui-shr-dbg | 0.1+git20110827-3+b1 | - +- amd64 | libphone-utils-dev | 0.1+git20110523-2.1 | - +- amd64 | libphone-utils0 | 0.1+git20110523-2.1 | - +- amd64 | libphone-utils0-dbg | 0.1+git20110523-2.1 | - +- amd64 | libphonon-dev | 4:4.6.0.0-3 | - +- amd64 | libphonon4 | 4:4.6.0.0-3 | - +- amd64 | libphononexperimental-dev | 4:4.6.0.0-3 | - +- amd64 | libphononexperimental4 | 4:4.6.0.0-3 | - +- amd64 | libphotos202-1-gfortran | 20061220+dfsg3-2 | - +- amd64 | libphotos202-dev | 20061220+dfsg3-2 | - +- amd64 | libphp5-embed | 5.4.4-14+deb7u7 | - +- amd64 | libphtools2-dev | 20061220+dfsg3-2 | - +- amd64 | libphtools2-gfortran | 20061220+dfsg3-2 | - +- amd64 | libphysfs-dev | 2.0.2-6 | - +- amd64 | libphysfs1 | 2.0.2-6 | - +- amd64 | libphysfs1-dbg | 2.0.2-6 | - +- amd64 | libpiano-dev | 2012.05.06-2 | - +- amd64 | libpiano0 | 2012.05.06-2 | - +- amd64 | libpigment-dbg | 0.3.17-1 | - +- amd64 | libpigment0.3-11 | 0.3.17-1 | - +- amd64 | libpigment0.3-dev | 0.3.17-1 | - +- amd64 | libpils2 | 1.0.9+hg2665-1 | - +- amd64 | libpils2-dev | 1.0.9+hg2665-1 | - +- amd64 | libpinyin-dbg | 0.6.91-1 | - +- amd64 | libpinyin-utils | 0.6.91-1 | - +- amd64 | libpinyin0 | 0.6.91-1 | - +- amd64 | libpinyin0-dev | 0.6.91-1 | - +- amd64 | libpion-common-4.0 | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-common-4.0-dbg | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-common-dev | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-net-4.0 | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-net-4.0-dbg | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-net-dev | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-net-plugins | 4.0.7+dfsg-3.1 | - +- amd64 | libpion-net-plugins-dbg | 4.0.7+dfsg-3.1 | - +- amd64 | libpipeline-dev | 1.2.1-1 | - +- amd64 | libpipeline1 | 1.2.1-1 | - +- amd64 | libpisock-dev | 0.12.5-5 | - +- amd64 | libpisock9 | 0.12.5-5 | - +- amd64 | libpisync1 | 0.12.5-5 | - +- amd64 | libpixman-1-0 | 0.26.0-4+deb7u1 | - +- amd64 | libpixman-1-0-dbg | 0.26.0-4+deb7u1 | - +- amd64 | libpixman-1-dev | 0.26.0-4+deb7u1 | - ++ amd64 | libpj2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjlib-util2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjmedia-audiodev2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjmedia-codec2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjmedia-videodev2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjmedia2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjnath2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjproject-dev | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjsip-simple2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjsip-ua2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjsip2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ amd64 | libpjsua2 | - | 2.1.0.0.ast20130823-1~bpo70+1 +- amd64 | libpkcs11-helper1 | 1.09-1 | - +- amd64 | libpkcs11-helper1-dev | 1.09-1 | - +- amd64 | libplasma-geolocation-interface4 | 4:4.8.4-6 | - +- amd64 | libplasma3 | 4:4.8.4-4 | - +- amd64 | libplasmaclock4abi3 | 4:4.8.4-6 | - +- amd64 | libplasmagenericshell4 | 4:4.8.4-6 | - +- amd64 | libplayer-bin | 2.0.1-2.1 | - +- amd64 | libplayer-dev | 2.0.1-2.1 | - +- amd64 | libplayer2 | 2.0.1-2.1 | - +- amd64 | libplayer2-dbg | 2.0.1-2.1 | - +- amd64 | libplayerc++3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerc++3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerc3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerc3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayercommon3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayercommon3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayercore3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayercore3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerdrivers3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerdrivers3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerinterface3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerinterface3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerjpeg3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerjpeg3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayertcp3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayertcp3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerwkb3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libplayerwkb3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libplib-dev | 1.8.5-6 | - +- amd64 | libplib1 | 1.8.5-6 | - +- amd64 | libplist++-dev | 1.8-1 | - +- amd64 | libplist++1 | 1.8-1 | - +- amd64 | libplist-dbg | 1.8-1 | - +- amd64 | libplist-dev | 1.8-1 | - +- amd64 | libplist-utils | 1.8-1 | - +- amd64 | libplist1 | 1.8-1 | - +- amd64 | libpload-dev | 1.4.2-3 | - +- amd64 | libpload4 | 1.4.2-3 | - +- amd64 | libplot-dev | 2.6-3 | - +- amd64 | libplot2c2 | 2.6-3 | - +- amd64 | libploticus0 | 2.41-5 | - +- amd64 | libploticus0-dev | 2.41-5 | - +- amd64 | libplotmm-dbg | 0.1.2-2 | - +- amd64 | libplotmm-dev | 0.1.2-2 | - +- amd64 | libplotmm0 | 0.1.2-2 | - +- amd64 | libplplot-ada0 | 5.9.9-5 | - +- amd64 | libplplot-ada0-dev | 5.9.9-5 | - +- amd64 | libplplot-c++10 | 5.9.9-5 | - +- amd64 | libplplot-d | 5.9.9-5 | - +- amd64 | libplplot-dev | 5.9.9-5 | - +- amd64 | libplplot-fortran9 | 5.9.9-5 | - +- amd64 | libplplot-java | 5.9.9-5 | - +- amd64 | libplplot-lua | 5.9.9-5 | - +- amd64 | libplplot-ocaml | 5.9.9-5 | - +- amd64 | libplplot11 | 5.9.9-5 | - +- amd64 | libplumb2 | 1.0.9+hg2665-1 | - +- amd64 | libplumb2-dev | 1.0.9+hg2665-1 | - +- amd64 | libplumbgpl2 | 1.0.9+hg2665-1 | - +- amd64 | libplumbgpl2-dev | 1.0.9+hg2665-1 | - +- amd64 | libpmap3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libpmap3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libpmi0 | 2.3.4-2+b1 | - +- amd64 | libpmi0-dev | 2.3.4-2+b1 | - +- amd64 | libpmount-dev | 0.0.16 | - +- amd64 | libpmount0.0 | 0.0.16 | - +- amd64 | libpng12-0 | 1.2.49-1 | - +- amd64 | libpng12-dev | 1.2.49-1 | - +- amd64 | libpng3 | 1.2.49-1 | - +- amd64 | libpnglite-dev | 0.1.17-1 | - +- amd64 | libpoco-dev | 1.3.6p1-4 | - +- amd64 | libpococrypto9 | 1.3.6p1-4 | - +- amd64 | libpococrypto9-dbg | 1.3.6p1-4 | - +- amd64 | libpocodata9 | 1.3.6p1-4 | - +- amd64 | libpocodata9-dbg | 1.3.6p1-4 | - +- amd64 | libpocofoundation9 | 1.3.6p1-4 | - +- amd64 | libpocofoundation9-dbg | 1.3.6p1-4 | - +- amd64 | libpocomysql9 | 1.3.6p1-4 | - +- amd64 | libpocomysql9-dbg | 1.3.6p1-4 | - +- amd64 | libpoconet9 | 1.3.6p1-4 | - +- amd64 | libpoconet9-dbg | 1.3.6p1-4 | - +- amd64 | libpoconetssl9 | 1.3.6p1-4 | - +- amd64 | libpoconetssl9-dbg | 1.3.6p1-4 | - +- amd64 | libpocoodbc9 | 1.3.6p1-4 | - +- amd64 | libpocoodbc9-dbg | 1.3.6p1-4 | - +- amd64 | libpocosqlite9 | 1.3.6p1-4 | - +- amd64 | libpocosqlite9-dbg | 1.3.6p1-4 | - +- amd64 | libpocoutil9 | 1.3.6p1-4 | - +- amd64 | libpocoutil9-dbg | 1.3.6p1-4 | - +- amd64 | libpocoxml9 | 1.3.6p1-4 | - +- amd64 | libpocoxml9-dbg | 1.3.6p1-4 | - +- amd64 | libpocozip9 | 1.3.6p1-4 | - +- amd64 | libpocozip9-dbg | 1.3.6p1-4 | - +- amd64 | libpodofo-dev | 0.9.0-1.1+b1 | - +- amd64 | libpodofo-utils | 0.9.0-1.1+b1 | - +- amd64 | libpodofo0.9.0 | 0.9.0-1.1+b1 | - +- amd64 | libpoker-eval | 138.0-1 | - +- amd64 | libpoker-eval-dev | 138.0-1 | - +- amd64 | libpolarssl-dev | 1.2.9-1~deb7u1 | - +- amd64 | libpolarssl-runtime | 1.2.9-1~deb7u1 | - +- amd64 | libpolarssl0 | 1.2.9-1~deb7u1 | - +- amd64 | libpoldiff-dev | 3.3.7-3 | - +- amd64 | libpoldiff1 | 3.3.7-3 | - +- amd64 | libpolkit-agent-1-0 | 0.105-3 | - +- amd64 | libpolkit-agent-1-dev | 0.105-3 | - +- amd64 | libpolkit-backend-1-0 | 0.105-3 | - +- amd64 | libpolkit-backend-1-dev | 0.105-3 | - +- amd64 | libpolkit-gobject-1-0 | 0.105-3 | - +- amd64 | libpolkit-gobject-1-dev | 0.105-3 | - +- amd64 | libpolkit-qt-1-1 | 0.103.0-1 | - +- amd64 | libpolkit-qt-1-dev | 0.103.0-1 | - +- amd64 | libpolybori-0.5.0-0 | 0.5~rc1-2.2 | - +- amd64 | libpolybori-dev | 0.5~rc1-2.2 | - +- amd64 | libpolylib64-8 | 5.22.5-3+dfsg | - +- amd64 | libpolylib64-8-dbg | 5.22.5-3+dfsg | - +- amd64 | libpolylib64-dev | 5.22.5-3+dfsg | - +- amd64 | libpolyml-dev | 5.2.1-1.1 | - +- amd64 | libpolyml1 | 5.2.1-1.1 | - +- amd64 | libpolyorb-dbg | 2.8~20110207-5.1 | - +- amd64 | libpolyorb2-dev | 2.8~20110207-5.1 | - +- amd64 | libpolyorb3 | 2.8~20110207-5.1 | - +- amd64 | libpomp-dev | 1.1+dfsg-2 | - +- amd64 | libpomp0 | 1.1+dfsg-2 | - +- amd64 | libpoppler-cpp-dev | 0.18.4-6 | - +- amd64 | libpoppler-cpp0 | 0.18.4-6 | - +- amd64 | libpoppler-dev | 0.18.4-6 | - +- amd64 | libpoppler-glib-dev | 0.18.4-6 | - +- amd64 | libpoppler-glib8 | 0.18.4-6 | - +- amd64 | libpoppler-private-dev | 0.18.4-6 | - +- amd64 | libpoppler-qt4-3 | 0.18.4-6 | - +- amd64 | libpoppler-qt4-dev | 0.18.4-6 | - +- amd64 | libpoppler19 | 0.18.4-6 | - +- amd64 | libpopplerkit-dev | 0.0.20051227svn-7+b1 | - +- amd64 | libpopplerkit0 | 0.0.20051227svn-7+b1 | - +- amd64 | libpopt-dev | 1.16-7 | - +- amd64 | libpopt0 | 1.16-7 | - +- amd64 | libportaudio-dev | 18.1-7.1 | - +- amd64 | libportaudio-ocaml | 0.2.0-1+b1 | - +- amd64 | libportaudio-ocaml-dev | 0.2.0-1+b1 | - +- amd64 | libportaudio0 | 18.1-7.1 | - +- amd64 | libportaudio2 | 19+svn20111121-1 | - +- amd64 | libportaudiocpp0 | 19+svn20111121-1 | - +- amd64 | libportmidi-dev | 1:184-2.1 | - +- amd64 | libportmidi0 | 1:184-2.1 | - +- amd64 | libportsmf-dev | 0.1~svn20101010-3 | - +- amd64 | libportsmf0 | 0.1~svn20101010-3 | - +- amd64 | libposix-strptime-perl | 0.10-1+b2 | - +- amd64 | libposixlock-ruby1.8 | 0.0.1-2 | - +- amd64 | libpostgresql-ocaml | 1.18.0-1 | - +- amd64 | libpostgresql-ocaml-dev | 1.18.0-1 | - +! amd64 | libpostproc-dev | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! amd64 | libpostproc52 | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +- amd64 | libpotrace-dev | 1.10-1 | - +- amd64 | libpotrace0 | 1.10-1 | - +- amd64 | libpowerman0 | 2.3.5-1 | - +- amd64 | libpowerman0-dev | 2.3.5-1 | - +- amd64 | libppd-dev | 2:0.10-7.1 | - +- amd64 | libppd0 | 2:0.10-7.1 | - +- amd64 | libppi-xs-perl | 0.901-1+b2 | - +- amd64 | libppl-c4 | 0.11.2-8 | - +- amd64 | libppl-swi | 0.11.2-8 | - +- amd64 | libppl0.11-dev | 0.11.2-8 | - +- amd64 | libppl9 | 0.11.2-8 | - +- amd64 | libpq-dev | 9.1.11-0wheezy1 | - +- amd64 | libpq5 | 9.1.11-0wheezy1 | - +- amd64 | libpqxx-3.1 | 3.1-1.1 | - +- amd64 | libpqxx-3.1-dbg | 3.1-1.1 | - +- amd64 | libpqxx3-dev | 3.1-1.1 | - +- amd64 | libprelude-dev | 1.0.0-9 | - +- amd64 | libprelude-perl | 1.0.0-9 | - +- amd64 | libprelude2 | 1.0.0-9 | - +- amd64 | libprelude2-dbg | 1.0.0-9 | - +- amd64 | libpreludedb-dev | 1.0.0-1.1+b2 | - +- amd64 | libpreludedb-perl | 1.0.0-1.1+b2 | - +- amd64 | libpreludedb0 | 1.0.0-1.1+b2 | - +- amd64 | libpresage-dev | 0.8.8-1 | - +- amd64 | libpresage1 | 0.8.8-1 | - +- amd64 | libpresage1-dbg | 0.8.8-1 | - +- amd64 | libpri-dev | 1.4.12-2 | - +- amd64 | libpri1.4 | 1.4.12-2 | - +- amd64 | libprima-perl | 1.28-1.1+b1 | - +- amd64 | libprinterconf-dev | 0.5-12 | - +- amd64 | libprinterconf0c2a | 0.5-12 | - +- amd64 | libprintsys | 0.6-13 | - +- amd64 | libprintsys-dev | 0.6-13 | - +- amd64 | libprison-dbg | 1.0+dfsg-1 | - +- amd64 | libprison-dev | 1.0+dfsg-1 | - +- amd64 | libprison0 | 1.0+dfsg-1 | - +- amd64 | libproc-processtable-perl | 0.45-6 | - ++ amd64 | libproc-wait3-perl | - | 0.4-1~bpo70+1 +- amd64 | libprocesscore4abi1 | 4:4.8.4-6 | - +- amd64 | libprocessui4a | 4:4.8.4-6 | - +- amd64 | libprocps0 | 1:3.3.3-3 | - +- amd64 | libprocps0-dev | 1:3.3.3-3 | - +- amd64 | libproj-dev | 4.7.0-2 | - +- amd64 | libproj0 | 4.7.0-2 | - +- amd64 | libprojectm-dev | 2.1.0+dfsg-1 | - +- amd64 | libprojectm-qt-dev | 2.1.0+dfsg-1 | - +- amd64 | libprojectm-qt1 | 2.1.0+dfsg-1 | - +- amd64 | libprojectm2 | 2.1.0+dfsg-1 | - +- amd64 | libprotobuf-c0 | 0.14-1+b1 | - +- amd64 | libprotobuf-c0-dev | 0.14-1+b1 | - +- amd64 | libprotobuf-dev | 2.4.1-3 | - +- amd64 | libprotobuf-lite7 | 2.4.1-3 | - +- amd64 | libprotobuf7 | 2.4.1-3 | - +- amd64 | libprotoc-dev | 2.4.1-3 | - +- amd64 | libprotoc7 | 2.4.1-3 | - +- amd64 | libproxy-dev | 0.3.1-6 | - +- amd64 | libproxy-tools | 0.3.1-6 | - +- amd64 | libproxy0 | 0.3.1-6 | - +- amd64 | libproxychains-dev | 3.1-3 | - +- amd64 | libproxychains3 | 3.1-3 | - +- amd64 | libpspell-dev | 0.60.7~20110707-1 | - +- amd64 | libpst-dev | 0.6.54-4.1 | - +- amd64 | libpst4 | 0.6.54-4.1 | - +- amd64 | libpst4-dbg | 0.6.54-4.1 | - +- amd64 | libpstoedit-dev | 3.60-2+b1 | - +- amd64 | libpstoedit0c2a | 3.60-2+b1 | - +- amd64 | libpt-dbg | 2.10.4~dfsg-1 | - +- amd64 | libpt-dev | 2.10.4~dfsg-1 | - +- amd64 | libpt2.10.4 | 2.10.4~dfsg-1 | - +- amd64 | libptexenc-dev | 2012.20120628-4 | - +- amd64 | libptexenc1 | 2012.20120628-4 | - +- amd64 | libpth-dev | 2.0.7-16 | - +- amd64 | libpth20 | 2.0.7-16 | - +- amd64 | libpthread-stubs0 | 0.3-3 | - +- amd64 | libpthread-stubs0-dev | 0.3-3 | - +- amd64 | libpthread-workqueue-dev | 0.8.2-1 | - +- amd64 | libpthread-workqueue0 | 0.8.2-1 | - +- amd64 | libptscotch-5.1 | 5.1.12b.dfsg-1.2 | - +- amd64 | libptscotch-dbg | 5.1.12b.dfsg-1.2 | - +- amd64 | libptscotch-dev | 5.1.12b.dfsg-1.2 | - +- amd64 | libpugl-0-0 | 0~svn32+dfsg0-1 | - +- amd64 | libpugl-dbg | 0~svn32+dfsg0-1 | - +- amd64 | libpugl-dev | 0~svn32+dfsg0-1 | - +! amd64 | libpulse-dev | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse-mainloop-glib0 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse-mainloop-glib0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +- amd64 | libpulse-ocaml | 0.1.2-1+b1 | - +- amd64 | libpulse-ocaml-dev | 0.1.2-1+b1 | - +! amd64 | libpulse0 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 ++ amd64 | libpulsedsp | - | 4.0-6~bpo7+1 ++ amd64 | libpulsedsp-dbg | - | 4.0-6~bpo7+1 +- amd64 | libpuma-dev | 1:1.1+svn20120529-2 | - +- amd64 | libpurelibc-dev | 0.4.1-1 | - +- amd64 | libpurelibc1 | 0.4.1-1 | - +! amd64 | libpurple0 | 2.10.6-3 | 2.10.7-2~bpo70+1 +- amd64 | libpuzzle-bin | 0.9-5 | - +- amd64 | libpuzzle-dev | 0.9-5 | - +- amd64 | libpuzzle-php | 0.9-5 | - +- amd64 | libpuzzle1 | 0.9-5 | - +- amd64 | libpvm3 | 3.4.5-12.5 | - +- amd64 | libpwl-dev | 0.11.2-8 | - +- amd64 | libpwl5 | 0.11.2-8 | - +- amd64 | libpxp-ocaml-dev | 1.2.2-1+b4 | - +- amd64 | libpycaml-ocaml | 0.82-14+b2 | - +- amd64 | libpycaml-ocaml-dev | 0.82-14+b2 | - +- amd64 | libpyside-dev | 1.1.1-3 | - +- amd64 | libpyside-py3-1.1 | 1.1.1-3 | - +- amd64 | libpyside1.1 | 1.1.1-3 | - +- amd64 | libpythia8 | 8.1.65-1 | - +- amd64 | libpythia8-dev | 8.1.65-1 | - +- amd64 | libpython2.6 | 2.6.8-1.1 | - +- amd64 | libpython2.7 | 2.7.3-6 | - +- amd64 | libpython3.2 | 3.2.3-7 | - +- amd64 | libpythonqt2-dev | 2.0.1-1.1 | - +- amd64 | libpythonqt2.0 | 2.0.1-1.1 | - +- amd64 | libqalculate-dev | 0.9.7-8 | - +- amd64 | libqalculate5 | 0.9.7-8 | - +- amd64 | libqapt-dev | 1.3.0-2 | - +- amd64 | libqapt-runtime | 1.3.0-2 | - +- amd64 | libqapt1 | 1.3.0-2 | - +- amd64 | libqb-dev | 0.11.1-2 | - +- amd64 | libqb0 | 0.11.1-2 | - +- amd64 | libqca2 | 2.0.3-4 | - +- amd64 | libqca2-dbg | 2.0.3-4 | - +- amd64 | libqca2-dev | 2.0.3-4 | - +- amd64 | libqca2-plugin-cyrus-sasl | 2.0.0-beta3-2 | - +- amd64 | libqca2-plugin-gnupg | 2.0.0~beta3-2 | - +- amd64 | libqca2-plugin-ossl | 2.0.0~beta3-2 | - +- amd64 | libqd-dev | 2.3.11.dfsg-2.1 | - +- amd64 | libqd0 | 2.3.11.dfsg-2.1 | - +- amd64 | libqdaccolib-dev | 0.8.2-1 | - +- amd64 | libqdaccolib0.7 | 0.8.2-1 | - +- amd64 | libqdbm++-dev | 1.8.78-2 | - +- amd64 | libqdbm-dev | 1.8.78-2 | - +- amd64 | libqdbm-java | 1.8.78-2 | - +- amd64 | libqdbm-perl | 1.8.78-2 | - +- amd64 | libqdbm-ruby1.8 | 1.8.78-2 | - +- amd64 | libqdbm-ruby1.9.1 | 1.8.78-2 | - +- amd64 | libqdbm14 | 1.8.78-2 | - +- amd64 | libqdbm3++c2 | 1.8.78-2 | - +- amd64 | libqdjango-db0 | 0.2.5-2 | - +- amd64 | libqdjango-dev | 0.2.5-2 | - +- amd64 | libqdjango-http0 | 0.2.5-2 | - +- amd64 | libqdjango-script0 | 0.2.5-2 | - +- amd64 | libqedje-dev | 0.4.0+lgpl-3 | - +- amd64 | libqedje0a | 0.4.0+lgpl-3 | - +- amd64 | libqfits-dev | 6.2.0-5 | - +- amd64 | libqfits0 | 6.2.0-5 | - +- amd64 | libqgis-dev | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | libqgis1.7.5 | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | libqglviewer-qt4-2 | 2.3.4-4.2 | - +- amd64 | libqglviewer-qt4-dev | 2.3.4-4.2 | - +- amd64 | libqgpgme1 | 4:4.8.4-2 | - +! amd64 | libqgpsmm-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libqgpsmm20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- amd64 | libqhull-dev | 2009.1-3 | - +- amd64 | libqhull5 | 2009.1-3 | - +- amd64 | libqimageblitz-dbg | 1:0.0.6-4 | - +- amd64 | libqimageblitz-dev | 1:0.0.6-4 | - +- amd64 | libqimageblitz4 | 1:0.0.6-4 | - +- amd64 | libqjson-dbg | 0.7.1-7 | - +- amd64 | libqjson-dev | 0.7.1-7 | - +- amd64 | libqjson0 | 0.7.1-7 | - +- amd64 | libqmf-dev | 0.16-6+deb7u1 | - +- amd64 | libqmf1 | 0.16-6+deb7u1 | - +- amd64 | libqmf2-1 | 0.16-6+deb7u1 | - +- amd64 | libqmf2-dev | 0.16-6+deb7u1 | - +- amd64 | libqmfclient1 | 1.0.7~2011w23.2-2.1 | - +- amd64 | libqmfconsole2 | 0.16-6+deb7u1 | - +- amd64 | libqmfconsole2-dev | 0.16-6+deb7u1 | - +- amd64 | libqmfengine1 | 0.16-6+deb7u1 | - +- amd64 | libqmfengine1-dev | 0.16-6+deb7u1 | - +- amd64 | libqmfmessageserver1 | 1.0.7~2011w23.2-2.1 | - +- amd64 | libqmfutil1 | 1.0.7~2011w23.2-2.1 | - +- amd64 | libqmmp-dev | 0.5.5-1+b1 | - +- amd64 | libqmmp-misc | 0.5.5-1+b1 | - +- amd64 | libqmmp0 | 0.5.5-1+b1 | - +- amd64 | libqmmpui-dev | 0.5.5-1+b1 | - +- amd64 | libqmmpui0 | 0.5.5-1+b1 | - +- amd64 | libqoauth-dev | 1.0.1-1 | - +- amd64 | libqoauth1 | 1.0.1-1 | - +- amd64 | libqof-dev | 0.8.6-1 | - +- amd64 | libqof2 | 0.8.6-1 | - +- amd64 | libqof2-backend-qsf | 0.8.6-1 | - +- amd64 | libqof2-backend-sqlite | 0.8.6-1 | - +- amd64 | libqof2-dbg | 0.8.6-1 | - +- amd64 | libqofexpensesobjects-dev | 0.1.9-2 | - +- amd64 | libqofexpensesobjects1 | 0.1.9-2 | - +- amd64 | libqofexpensesobjects1-dbg | 0.1.9-2 | - +- amd64 | libqpdf-dev | 2.3.1-4 | - +- amd64 | libqpdf3 | 2.3.1-4 | - +- amd64 | libqpid-perl | 0.16-6+deb7u1 | - +- amd64 | libqpid-ruby1.8 | 0.16-6+deb7u1 | - +- amd64 | libqpidbroker2 | 0.16-6+deb7u1 | - +- amd64 | libqpidbroker2-dev | 0.16-6+deb7u1 | - +- amd64 | libqpidclient2 | 0.16-6+deb7u1 | - +- amd64 | libqpidclient2-dev | 0.16-6+deb7u1 | - +- amd64 | libqpidcommon2 | 0.16-6+deb7u1 | - +- amd64 | libqpidcommon2-dev | 0.16-6+deb7u1 | - +- amd64 | libqpidmessaging2 | 0.16-6+deb7u1 | - +- amd64 | libqpidmessaging2-dev | 0.16-6+deb7u1 | - +- amd64 | libqpidtypes1 | 0.16-6+deb7u1 | - +- amd64 | libqpidtypes1-dev | 0.16-6+deb7u1 | - +- amd64 | libqpol-dev | 3.3.7-3 | - +- amd64 | libqpol1 | 3.3.7-3 | - +- amd64 | libqpx-dev | 0.7.1.002-5 | - +- amd64 | libqpx0 | 0.7.1.002-5 | - +- amd64 | libqrencode-dev | 3.3.0-2 | - +- amd64 | libqrencode3 | 3.3.0-2 | - +- amd64 | libqrupdate-dev | 1.1.1-1 | - +- amd64 | libqrupdate1 | 1.1.1-1 | - +- amd64 | libqsastime-dev | 5.9.9-5 | - +- amd64 | libqsastime0 | 5.9.9-5 | - +- amd64 | libqscintilla2-8 | 2.6.2-2 | - +- amd64 | libqscintilla2-designer | 2.6.2-2 | - +- amd64 | libqt4-assistant | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-core | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-dbus | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-declarative | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-declarative-folderlistmodel | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-declarative-gestures | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-declarative-particles | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-declarative-shaders | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-designer | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-designer-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-dev | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-dev-bin | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-gui | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-help | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-network | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-opengl | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-opengl-dev | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-phonon | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-private-dev | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-qt3support | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-qt3support-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-script | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-script-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-scripttools | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-ibase | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-mysql | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-odbc | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-psql | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-sqlite | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-sqlite2 | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-sql-tds | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-svg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-test | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-webkit | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-webkit-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-xml | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-xmlpatterns | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4-xmlpatterns-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | libqt4pas-dev | 2.5-6 | - +- amd64 | libqt4pas5 | 2.5-6 | - +- amd64 | libqtassistantclient-dev | 4.6.3-4 | - +- amd64 | libqtassistantclient4 | 4.6.3-4 | - +- amd64 | libqtconnectivity1 | 1.2.0-3 | - +- amd64 | libqtcontacts1 | 1.2.0-3 | - +- amd64 | libqtcore4 | 4:4.8.2+dfsg-11 | - +- amd64 | libqtcore4-perl | 4.8.4-1 | - +- amd64 | libqtdbus4 | 4:4.8.2+dfsg-11 | - +- amd64 | libqtexengine-dev | 0.3-3 | - +- amd64 | libqtexengine1 | 0.3-3 | - +- amd64 | libqtfeedback1 | 1.2.0-3 | - +- amd64 | libqtgallery1 | 1.2.0-3 | - +- amd64 | libqtglib-2.0-0 | 0.10.2-2 | - +- amd64 | libqtgstreamer-0.10-0 | 0.10.2-2 | - +- amd64 | libqtgstreamer-dev | 0.10.2-2 | - +- amd64 | libqtgstreamerui-0.10-0 | 0.10.2-2 | - +- amd64 | libqtgstreamerutils-0.10-0 | 0.10.2-2 | - +- amd64 | libqtgui4 | 4:4.8.2+dfsg-11 | - +- amd64 | libqtgui4-perl | 4.8.4-1 | - +- amd64 | libqthreads-12 | 1.6.8-10.3 | - ++ amd64 | libqtkeychain0 | - | 0.1.0-2~bpo70+1 +- amd64 | libqtlocation1 | 1.2.0-3 | - +- amd64 | libqtmessaging1 | 1.2.0-3 | - +- amd64 | libqtmultimediakit1 | 1.2.0-3 | - +- amd64 | libqtnetwork4-perl | 4.8.4-1 | - +- amd64 | libqtorganizer1 | 1.2.0-3 | - +- amd64 | libqtpublishsubscribe1 | 1.2.0-3 | - +- amd64 | libqtruby4shared-dev | 4:4.8.4-1 | - +- amd64 | libqtruby4shared2 | 4:4.8.4-1 | - +- amd64 | libqtscript4-core | 0.2.0-1 | - +- amd64 | libqtscript4-gui | 0.2.0-1 | - +- amd64 | libqtscript4-network | 0.2.0-1 | - +- amd64 | libqtscript4-opengl | 0.2.0-1 | - +- amd64 | libqtscript4-phonon | 0.2.0-1 | - +- amd64 | libqtscript4-qtbindings | 0.2.0-1 | - +- amd64 | libqtscript4-sql | 0.2.0-1 | - +- amd64 | libqtscript4-svg | 0.2.0-1 | - +- amd64 | libqtscript4-uitools | 0.2.0-1 | - +- amd64 | libqtscript4-webkit | 0.2.0-1 | - +- amd64 | libqtscript4-xml | 0.2.0-1 | - +- amd64 | libqtscript4-xmlpatterns | 0.2.0-1 | - +- amd64 | libqtsensors1 | 1.2.0-3 | - +- amd64 | libqtserviceframework1 | 1.2.0-3 | - +- amd64 | libqtsysteminfo1 | 1.2.0-3 | - +- amd64 | libqttest4-perl | 4.8.4-1 | - +- amd64 | libqtversit1 | 1.2.0-3 | - +- amd64 | libqtversitorganizer1 | 1.2.0-3 | - +- amd64 | libqtwebkit-dev | 2.2.1-5 | - +- amd64 | libqtwebkit-qmlwebkitplugin | 2.2.1-5 | - +- amd64 | libqtwebkit4 | 2.2.1-5 | - +- amd64 | libqtwebkit4-dbg | 2.2.1-5 | - +- amd64 | libqtxml4-perl | 4.8.4-1 | - +- amd64 | libquadmath0 | 4.7.2-5 | - +- amd64 | libquadmath0-dbg | 4.7.2-5 | - +- amd64 | libquantlib-1.2 | 1.2-2+b1 | - +- amd64 | libquantlib0-dev | 1.2-2+b1 | - +- amd64 | libquantum-dev | 1.1.0-3 | - +- amd64 | libquantum7 | 1.1.0-3 | - +- amd64 | libquicktime-dev | 2:1.2.4-3 | - +- amd64 | libquicktime2 | 2:1.2.4-3 | - +- amd64 | libquorum-dev | 1.4.2-3 | - +- amd64 | libquorum4 | 1.4.2-3 | - +- amd64 | libquota-perl | 1.6.6+dfsg-2+b1 | - +- amd64 | libquvi-dev | 0.4.1-1 | - +- amd64 | libquvi7 | 0.4.1-1 | - +- amd64 | libqwt-dev | 6.0.0-1.2 | - +- amd64 | libqwt5-qt4 | 5.2.2-3 | - +- amd64 | libqwt5-qt4-dev | 5.2.2-3 | - +- amd64 | libqwt6 | 6.0.0-1.2 | - +- amd64 | libqwtplot3d-qt4-0 | 0.2.7+svn191-7 | - +- amd64 | libqwtplot3d-qt4-dev | 0.2.7+svn191-7 | - +- amd64 | libqxmlrpc-dev | 0.0.svn6-2 | - +- amd64 | libqxmlrpc1 | 0.0.svn6-2 | - +! amd64 | libqxmpp-dev | 0.4.92-1 | 0.7.6-1~bpo70+1 +! amd64 | libqxmpp0 | 0.4.92-1 | 0.7.6-1~bpo70+1 ++ amd64 | libqxmpp0-dbg | - | 0.7.6-1~bpo70+1 +- amd64 | libqxt-berkeley0 | 0.6.1-6 | - +- amd64 | libqxt-core0 | 0.6.1-6 | - +- amd64 | libqxt-designer0 | 0.6.1-6 | - +- amd64 | libqxt-dev | 0.6.1-6 | - +- amd64 | libqxt-gui0 | 0.6.1-6 | - +- amd64 | libqxt-network0 | 0.6.1-6 | - +- amd64 | libqxt-sql0 | 0.6.1-6 | - +- amd64 | libqxt-web0 | 0.6.1-6 | - +- amd64 | libqxt-zeroconf0 | 0.6.1-6 | - +- amd64 | libqzeitgeist-dbg | 0.7.0-1+b1 | - +- amd64 | libqzeitgeist-dev | 0.7.0-1+b1 | - +- amd64 | libqzeitgeist0 | 0.7.0-1+b1 | - +- amd64 | libqzion-dev | 0.4.0+lgpl-4 | - +- amd64 | libqzion0a | 0.4.0+lgpl-4 | - +- amd64 | librabbitmq-dbg | 0.0.1.hg216-1 | - +- amd64 | librabbitmq-dev | 0.0.1.hg216-1 | - +- amd64 | librabbitmq0 | 0.0.1.hg216-1 | - +- amd64 | libradare2-0.9 | 0.9-3 | - +- amd64 | libradare2-0.9-dbg | 0.9-3 | - +- amd64 | libradare2-dev | 0.9-3 | - +- amd64 | libradius1 | 0.3.2-14 | - +- amd64 | libradius1-dev | 0.3.2-14 | - +- amd64 | libradiusclient-ng-dev | 0.5.6-1.1 | - +- amd64 | libradiusclient-ng2 | 0.5.6-1.1 | - +- amd64 | libranlip-dev | 1.0-4.1 | - +- amd64 | libranlip1c2 | 1.0-4.1 | - +- amd64 | librapi2 | 0.15-2.1 | - +- amd64 | librapi2-dbg | 0.15-2.1 | - +- amd64 | librapi2-dev | 0.15-2.1 | - +- amd64 | librapi2-tools | 0.15-2.1 | - +- amd64 | libraptor1 | 1.4.21-7.1 | - +- amd64 | libraptor1-dbg | 1.4.21-7.1 | - +- amd64 | libraptor1-dev | 1.4.21-7.1 | - +- amd64 | libraptor2-0 | 2.0.8-2 | - +- amd64 | libraptor2-0-dbg | 2.0.8-2 | - +- amd64 | libraptor2-dev | 2.0.8-2 | - +- amd64 | librarian-dev | 0.8.1-5 | - +- amd64 | librarian0 | 0.8.1-5 | - +- amd64 | libraspell-ruby1.8 | 1.2-2 | - +- amd64 | libraspell-ruby1.9.1 | 1.2-2 | - +- amd64 | librasqal3 | 0.9.29-1 | - +- amd64 | librasqal3-dbg | 0.9.29-1 | - +- amd64 | librasqal3-dev | 0.9.29-1 | - +- amd64 | librasterlite-dev | 1.1~svn11-2 | - +- amd64 | librasterlite1 | 1.1~svn11-2 | - +- amd64 | libraul-dev | 0.8.0+dfsg0-0.1+b1 | - +- amd64 | libraul10 | 0.8.0+dfsg0-0.1+b1 | - +- amd64 | libraw-bin | 0.14.6-2 | - +- amd64 | libraw-dev | 0.14.6-2 | - +- amd64 | libraw1394-11 | 2.0.9-1 | - +- amd64 | libraw1394-dev | 2.0.9-1 | - +- amd64 | libraw1394-tools | 2.0.9-1 | - +- amd64 | libraw5 | 0.14.6-2 | - +- amd64 | librcc-dev | 0.2.9-3 | - +- amd64 | librcc0 | 0.2.9-3 | - +- amd64 | librccgtk2-0 | 0.2.9-3 | - +- amd64 | librcd-dev | 0.1.13-3 | - +- amd64 | librcd0 | 0.1.13-3 | - +- amd64 | librdf-perl | 1.0.14.1-1 | - +- amd64 | librdf-ruby | 1.0.14.1-1 | - +- amd64 | librdf-storage-mysql | 1.0.15-1+b1 | - +- amd64 | librdf-storage-postgresql | 1.0.15-1+b1 | - +- amd64 | librdf-storage-sqlite | 1.0.15-1+b1 | - +- amd64 | librdf0 | 1.0.15-1+b1 | - +- amd64 | librdf0-dev | 1.0.15-1+b1 | - +- amd64 | librdkit-dev | 201203-3 | - +- amd64 | librdkit1 | 201203-3 | - +- amd64 | librdmacm-dev | 1.0.15-1+deb7u1 | - +- amd64 | librdmacm1 | 1.0.15-1+deb7u1 | - +- amd64 | librdmacm1-dbg | 1.0.15-1+deb7u1 | - +- amd64 | librdmawrap2 | 0.16-6+deb7u1 | - +- amd64 | librdmawrap2-dev | 0.16-6+deb7u1 | - +- amd64 | libreact-ocaml | 0.9.3-1 | - +- amd64 | libreact-ocaml-dev | 0.9.3-1 | - +- amd64 | libreadline-dev | 6.2+dfsg-0.1 | - +- amd64 | libreadline-gplv2-dev | 5.2+dfsg-2~deb7u1 | - +- amd64 | libreadline-java | 0.8.0.1+dfsg-2+b1 | - +- amd64 | libreadline5 | 5.2+dfsg-2~deb7u1 | - +- amd64 | libreadline5-dbg | 5.2+dfsg-2~deb7u1 | - +- amd64 | libreadline6 | 6.2+dfsg-0.1 | - +- amd64 | libreadline6-dbg | 6.2+dfsg-0.1 | - +- amd64 | libreadline6-dev | 6.2+dfsg-0.1 | - +- amd64 | libreadonly-xs-perl | 1.04-2+b3 | - +- amd64 | librec-dev | 1.5-1 | - +- amd64 | librec0 | 1.5-1 | - +- amd64 | librecad | 1.0.2+nolibs-1 | - +- amd64 | librecode-dev | 3.6-20 | - +- amd64 | librecode0 | 3.6-20 | - +- amd64 | libref-array-dev | 0.1.3-2 | - +- amd64 | libref-array1 | 0.1.3-2 | - +- amd64 | libregina3 | 3.6-2 | - +- amd64 | libregina3-dev | 3.6-2 | - +- amd64 | libregistry-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libregistry0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libreins-ocaml-dev | 0.1a-4+b1 | - +- amd64 | libreiser4-dev | 1.0.7-6.3 | - +! amd64 | librelp-dev | 1.0.0-1 | 1.2.0-1~bpo70+1 +! amd64 | librelp0 | 1.0.0-1 | 1.2.0-1~bpo70+1 +! amd64 | libremctl-dev | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | libremctl-ruby | 3.2-4 | - +- amd64 | libremctl-ruby1.8 | 3.2-4 | - +- amd64 | libremctl-ruby1.9.1 | 3.2-4 | - +! amd64 | libremctl1 | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | librenaissance0 | 0.9.0-4+b3 | - +- amd64 | librenaissance0-dev | 0.9.0-4+b3 | - +! amd64 | libreoffice | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-base | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-base-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-calc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-dbg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-dev | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-draw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-evolution | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- amd64 | libreoffice-filter-binfilter | 1:3.5.4+dfsg2-0+deb7u2 | - +! amd64 | libreoffice-gnome | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gtk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gtk3 | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-impress | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-kde | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-math | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-mysql-connector | 1.0.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.2+LibO4.1.4-2~bpo70+1 +! amd64 | libreoffice-officebean | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-ogltrans | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-pdfimport | 1.0.5+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-presentation-minimizer | 1.0.3+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.4+LibO4.1.4-2~bpo70+1 +- amd64 | libreoffice-presenter-console | 1.1.0+LibO3.5.4+dfsg2-0+deb7u2 | - +! amd64 | libreoffice-report-builder-bin | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-sdbc-postgresql | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- amd64 | libreoffice-voikko | 3.3-3 | - +! amd64 | libreoffice-writer | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- amd64 | librep-dbg | 0.90.2-1.3 | - +- amd64 | librep-dev | 0.90.2-1.3 | - +- amd64 | librep9 | 0.90.2-1.3 | - +- amd64 | libreplaygain-dev | 1.0~r475-1 | - +- amd64 | libreplaygain1 | 1.0~r475-1 | - +- amd64 | libres-ocaml-dev | 3.2.0-2+b3 | - +- amd64 | libresample1 | 0.1.3-4 | - +- amd64 | libresample1-dev | 0.1.3-4 | - +- amd64 | libresid-builder-dev | 2.1.1-14 | - +- amd64 | libresid-builder0c2a | 2.1.1-14 | - +- amd64 | libresiprocate-1.8 | 1.8.5-4 | - +- amd64 | libresiprocate-1.8-dev | 1.8.5-4 | - +- amd64 | libresiprocate-turn-client-1.8 | 1.8.5-4 | - +- amd64 | libresiprocate-turn-client-1.8-dev | 1.8.5-4 | - +- amd64 | librest-0.7-0 | 0.7.12-3 | - +- amd64 | librest-0.7-0-dbg | 0.7.12-3 | - +- amd64 | librest-dev | 0.7.12-3 | - +- amd64 | librest-extras-0.7-0 | 0.7.12-3 | - +- amd64 | librest-extras-dev | 0.7.12-3 | - +- amd64 | librg-blast-parser-perl | 0.02-2 | - ++ amd64 | librgxg-dev | - | 0.1-1~bpo70+1 ++ amd64 | librgxg0 | - | 0.1-1~bpo70+1 ++ amd64 | librgxg0-dbg | - | 0.1-1~bpo70+1 +- amd64 | librhash-dev | 1.2.9-8+deb7u1 | - +- amd64 | librhash-java | 1.2.9-8+deb7u1 | - +- amd64 | librhash-perl | 1.2.9-8+deb7u1 | - +- amd64 | librhash0 | 1.2.9-8+deb7u1 | - +- amd64 | librhash0-dbg | 1.2.9-8+deb7u1 | - +- amd64 | librheolef-dev | 6.1-2.1 | - +- amd64 | librheolef1 | 6.1-2.1 | - +- amd64 | librhythmbox-core6 | 2.97-2.1 | - +- amd64 | librivet-dev | 1.8.0-1 | - +- amd64 | librivet11 | 1.8.0-1 | - +- amd64 | librlog-dev | 1.4-2 | - +- amd64 | librlog5 | 1.4-2 | - +- amd64 | libroar-compat2 | 1.0~beta2-3 | - +- amd64 | libroar-dev | 1.0~beta2-3 | - +- amd64 | libroar-plugins-universal | 1.0~beta2-3 | - +- amd64 | libroar2 | 1.0~beta2-3 | - +- amd64 | libroken18-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libroot-bindings-python-dev | 5.34.00-2 | - +- amd64 | libroot-bindings-python5.34 | 5.34.00-2 | - +- amd64 | libroot-bindings-ruby-dev | 5.34.00-2 | - +- amd64 | libroot-bindings-ruby5.34 | 5.34.00-2 | - +- amd64 | libroot-core-dev | 5.34.00-2 | - +- amd64 | libroot-core5.34 | 5.34.00-2 | - +- amd64 | libroot-geom-dev | 5.34.00-2 | - +- amd64 | libroot-geom5.34 | 5.34.00-2 | - +- amd64 | libroot-graf2d-gpad-dev | 5.34.00-2 | - +- amd64 | libroot-graf2d-gpad5.34 | 5.34.00-2 | - +- amd64 | libroot-graf2d-graf-dev | 5.34.00-2 | - +- amd64 | libroot-graf2d-graf5.34 | 5.34.00-2 | - +- amd64 | libroot-graf2d-postscript-dev | 5.34.00-2 | - +- amd64 | libroot-graf2d-postscript5.34 | 5.34.00-2 | - +- amd64 | libroot-graf3d-eve-dev | 5.34.00-2 | - +- amd64 | libroot-graf3d-eve5.34 | 5.34.00-2 | - +- amd64 | libroot-graf3d-g3d-dev | 5.34.00-2 | - +- amd64 | libroot-graf3d-g3d5.34 | 5.34.00-2 | - +- amd64 | libroot-graf3d-gl-dev | 5.34.00-2 | - +- amd64 | libroot-graf3d-gl5.34 | 5.34.00-2 | - +- amd64 | libroot-gui-dev | 5.34.00-2 | - +- amd64 | libroot-gui-ged-dev | 5.34.00-2 | - +- amd64 | libroot-gui-ged5.34 | 5.34.00-2 | - +- amd64 | libroot-gui5.34 | 5.34.00-2 | - +- amd64 | libroot-hist-dev | 5.34.00-2 | - +- amd64 | libroot-hist-spectrum-dev | 5.34.00-2 | - +- amd64 | libroot-hist-spectrum5.34 | 5.34.00-2 | - +- amd64 | libroot-hist5.34 | 5.34.00-2 | - +- amd64 | libroot-html-dev | 5.34.00-2 | - +- amd64 | libroot-html5.34 | 5.34.00-2 | - +- amd64 | libroot-io-dev | 5.34.00-2 | - +- amd64 | libroot-io-xmlparser-dev | 5.34.00-2 | - +- amd64 | libroot-io-xmlparser5.34 | 5.34.00-2 | - +- amd64 | libroot-io5.34 | 5.34.00-2 | - +- amd64 | libroot-math-foam-dev | 5.34.00-2 | - +- amd64 | libroot-math-foam5.34 | 5.34.00-2 | - +- amd64 | libroot-math-genvector-dev | 5.34.00-2 | - +- amd64 | libroot-math-genvector5.34 | 5.34.00-2 | - +- amd64 | libroot-math-mathcore-dev | 5.34.00-2 | - +- amd64 | libroot-math-mathcore5.34 | 5.34.00-2 | - +- amd64 | libroot-math-mathmore-dev | 5.34.00-2 | - +- amd64 | libroot-math-mathmore5.34 | 5.34.00-2 | - +- amd64 | libroot-math-matrix-dev | 5.34.00-2 | - +- amd64 | libroot-math-matrix5.34 | 5.34.00-2 | - +- amd64 | libroot-math-minuit-dev | 5.34.00-2 | - +- amd64 | libroot-math-minuit5.34 | 5.34.00-2 | - +- amd64 | libroot-math-mlp-dev | 5.34.00-2 | - +- amd64 | libroot-math-mlp5.34 | 5.34.00-2 | - +- amd64 | libroot-math-physics-dev | 5.34.00-2 | - +- amd64 | libroot-math-physics5.34 | 5.34.00-2 | - +- amd64 | libroot-math-quadp-dev | 5.34.00-2 | - +- amd64 | libroot-math-quadp5.34 | 5.34.00-2 | - +- amd64 | libroot-math-smatrix-dev | 5.34.00-2 | - +- amd64 | libroot-math-smatrix5.34 | 5.34.00-2 | - +- amd64 | libroot-math-splot-dev | 5.34.00-2 | - +- amd64 | libroot-math-splot5.34 | 5.34.00-2 | - +- amd64 | libroot-math-unuran-dev | 5.34.00-2 | - +- amd64 | libroot-math-unuran5.34 | 5.34.00-2 | - +- amd64 | libroot-misc-memstat-dev | 5.34.00-2 | - +- amd64 | libroot-misc-memstat5.34 | 5.34.00-2 | - +- amd64 | libroot-misc-minicern-dev | 5.34.00-2 | - +- amd64 | libroot-misc-minicern5.34 | 5.34.00-2 | - +- amd64 | libroot-misc-table-dev | 5.34.00-2 | - +- amd64 | libroot-misc-table5.34 | 5.34.00-2 | - +- amd64 | libroot-montecarlo-eg-dev | 5.34.00-2 | - +- amd64 | libroot-montecarlo-eg5.34 | 5.34.00-2 | - +- amd64 | libroot-montecarlo-vmc-dev | 5.34.00-2 | - +- amd64 | libroot-montecarlo-vmc5.34 | 5.34.00-2 | - +- amd64 | libroot-net-auth-dev | 5.34.00-2 | - +- amd64 | libroot-net-auth5.34 | 5.34.00-2 | - +- amd64 | libroot-net-bonjour-dev | 5.34.00-2 | - +- amd64 | libroot-net-bonjour5.34 | 5.34.00-2 | - +- amd64 | libroot-net-dev | 5.34.00-2 | - +- amd64 | libroot-net-ldap-dev | 5.34.00-2 | - +- amd64 | libroot-net-ldap5.34 | 5.34.00-2 | - +- amd64 | libroot-net5.34 | 5.34.00-2 | - +- amd64 | libroot-proof-clarens-dev | 5.34.00-2 | - +- amd64 | libroot-proof-clarens5.34 | 5.34.00-2 | - +- amd64 | libroot-proof-dev | 5.34.00-2 | - +- amd64 | libroot-proof-proofplayer-dev | 5.34.00-2 | - +- amd64 | libroot-proof-proofplayer5.34 | 5.34.00-2 | - +- amd64 | libroot-proof5.34 | 5.34.00-2 | - +- amd64 | libroot-roofit-dev | 5.34.00-2 | - +- amd64 | libroot-roofit5.34 | 5.34.00-2 | - +- amd64 | libroot-static | 5.34.00-2 | - +- amd64 | libroot-tmva-dev | 5.34.00-2 | - +- amd64 | libroot-tmva5.34 | 5.34.00-2 | - +- amd64 | libroot-tree-dev | 5.34.00-2 | - +- amd64 | libroot-tree-treeplayer-dev | 5.34.00-2 | - +- amd64 | libroot-tree-treeplayer5.34 | 5.34.00-2 | - +- amd64 | libroot-tree5.34 | 5.34.00-2 | - +- amd64 | librostlab-blast0 | 1.0.0-2 | - +- amd64 | librostlab-blast0-dbg | 1.0.0-2 | - +- amd64 | librostlab-blast0-dev | 1.0.0-2 | - +- amd64 | librostlab3 | 1.0.20-1 | - +- amd64 | librostlab3-dbg | 1.0.20-1 | - +- amd64 | librostlab3-dev | 1.0.20-1 | - +- amd64 | librpcsecgss-dev | 0.19-5 | - +- amd64 | librpcsecgss3 | 0.19-5 | - +- amd64 | librplay3 | 3.3.2-14 | - +- amd64 | librplay3-dev | 3.3.2-14 | - +- amd64 | librpm-dbg | 4.10.0-5+deb7u1 | - +- amd64 | librpm-dev | 4.10.0-5+deb7u1 | - +- amd64 | librpm3 | 4.10.0-5+deb7u1 | - +- amd64 | librpmbuild3 | 4.10.0-5+deb7u1 | - +- amd64 | librpmio3 | 4.10.0-5+deb7u1 | - +- amd64 | librpmsign1 | 4.10.0-5+deb7u1 | - +- amd64 | librra-dbg | 0.14-1.2 | - +- amd64 | librra-dev | 0.14-1.2 | - +- amd64 | librra-tools | 0.14-1.2 | - +- amd64 | librra0 | 0.14-1.2 | - +- amd64 | librrd-dev | 1.4.7-2 | - +- amd64 | librrd-ruby1.8 | 1.4.7-2 | - +- amd64 | librrd-ruby1.9.1 | 1.4.7-2 | - +- amd64 | librrd4 | 1.4.7-2 | - +- amd64 | librrds-perl | 1.4.7-2 | - +- amd64 | librsl-dev | 1.42-2 | - +- amd64 | librsl1 | 1.42-2 | - +- amd64 | librsskit-dev | 0.3-2 | - +- amd64 | librsskit0 | 0.3-2 | - +- amd64 | librsskit0-dbg | 0.3-2 | - +- amd64 | librsvg2-2 | 2.36.1-2 | - +- amd64 | librsvg2-bin | 2.36.1-2 | - +- amd64 | librsvg2-common | 2.36.1-2 | - +- amd64 | librsvg2-dbg | 2.36.1-2 | - +- amd64 | librsvg2-dev | 2.36.1-2 | - +- amd64 | librsync-dbg | 0.9.7-9 | - +- amd64 | librsync-dev | 0.9.7-9 | - +- amd64 | librsync1 | 0.9.7-9 | - +- amd64 | librtai-dev | 3.8.1-4 | - +- amd64 | librtai1 | 3.8.1-4 | - +- amd64 | librtas-dev | 1.3.6-1 | - +- amd64 | librtas1 | 1.3.6-1 | - +- amd64 | librtasevent-dev | 1.3.6-1 | - +- amd64 | librtasevent1 | 1.3.6-1 | - +- amd64 | librtaudio-dbg | 4.0.10~ds0-2 | - +- amd64 | librtaudio-dev | 4.0.10~ds0-2 | - +- amd64 | librtaudio4 | 4.0.10~ds0-2 | - +- amd64 | librtfcomp-dbg | 1.1-5+b1 | - +- amd64 | librtfcomp-dev | 1.1-5+b1 | - +- amd64 | librtfcomp0 | 1.1-5+b1 | - +- amd64 | librtfilter-dev | 1.1-4 | - +- amd64 | librtfilter1 | 1.1-4 | - +- amd64 | librtfilter1-dbg | 1.1-4 | - ++ amd64 | librtlsdr-dev | - | 0.5.2.7.3ab6-1~bpo70+1 ++ amd64 | librtlsdr0 | - | 0.5.2.7.3ab6-1~bpo70+1 +- amd64 | librtmidi-dbg | 1.0.15~ds0-2 | - +- amd64 | librtmidi-dev | 1.0.15~ds0-2 | - +- amd64 | librtmidi1 | 1.0.15~ds0-2 | - +- amd64 | librtmp-dev | 2.4+20111222.git4e06e21-1 | - +- amd64 | librtmp0 | 2.4+20111222.git4e06e21-1 | - +- amd64 | librubberband-dev | 1.3-1.3 | - +- amd64 | librubberband2 | 1.3-1.3 | - +- amd64 | libruby1.8 | 1.8.7.358-7.1+deb7u1 | - +- amd64 | libruby1.8-dbg | 1.8.7.358-7.1+deb7u1 | - +- amd64 | libruby1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- amd64 | libruby1.9.1-dbg | 1.9.3.194-8.1+deb7u2 | - +- amd64 | librudecgi-dev | 5.0.0-1 | - +- amd64 | librudecgi5 | 5.0.0-1 | - +- amd64 | libruli-bin | 0.33-1.1 | - +- amd64 | libruli4 | 0.33-1.1 | - +- amd64 | libruli4-dev | 0.33-1.1 | - +- amd64 | librxp-dev | 1.5.0-1 | - +- amd64 | librxp0 | 1.5.0-1 | - +- amd64 | librxtx-java | 2.2pre2-11 | - +- amd64 | librxtx-java-dbg | 2.2pre2-11 | - +- amd64 | libs3-2 | 2.0-1 | - +- amd64 | libs3-dev | 2.0-1 | - +- amd64 | libs3d-dev | 0.2.2-8 | - +- amd64 | libs3d2 | 0.2.2-8 | - +- amd64 | libs3dw-dev | 0.2.2-8 | - +- amd64 | libs3dw2 | 0.2.2-8 | - +- amd64 | libsaamf3 | 1.1.4-4.1 | - +- amd64 | libsaamf3-dev | 1.1.4-4.1 | - +- amd64 | libsac-java-gcj | 1.3-6 | - +- amd64 | libsackpt3 | 1.1.4-4.1 | - +- amd64 | libsackpt3-dev | 1.1.4-4.1 | - +- amd64 | libsaclm3 | 1.1.4-4.1 | - +- amd64 | libsaclm3-dev | 1.1.4-4.1 | - +- amd64 | libsaevt3 | 1.1.4-4.1 | - +- amd64 | libsaevt3-dev | 1.1.4-4.1 | - +- amd64 | libsafe-hole-perl | 0.13-1+b1 | - +- amd64 | libsage-dev | 0.2.0-4.1 | - +- amd64 | libsage2 | 0.2.0-4.1 | - +- amd64 | libsalck3 | 1.1.4-4.1 | - +- amd64 | libsalck3-dev | 1.1.4-4.1 | - +- amd64 | libsam-dev | 1.4.2-3 | - +- amd64 | libsam4 | 1.4.2-3 | - +- amd64 | libsamba-credentials-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-credentials0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-hostconfig-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-hostconfig0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-policy-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-policy0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-util-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamba-util0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamdb-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsamdb0 | 4.0.0~beta2+dfsg1-3.2 | - +! amd64 | libsaml2-dev | 2.4.3-4 | 2.5.3-2~bpo70+1 +- amd64 | libsaml7 | 2.4.3-4 | - ++ amd64 | libsaml8 | - | 2.5.3-2~bpo70+1 +- amd64 | libsampleicc-dev | 1.6.4-1+b1 | - +- amd64 | libsampleicc2 | 1.6.4-1+b1 | - +- amd64 | libsamplerate-ocaml | 0.1.1-1+b3 | - +- amd64 | libsamplerate-ocaml-dev | 0.1.1-1+b3 | - +- amd64 | libsamplerate0 | 0.1.8-5 | - +- amd64 | libsamplerate0-dev | 0.1.8-5 | - +- amd64 | libsamsg4 | 1.1.4-4.1 | - +- amd64 | libsamsg4-dev | 1.1.4-4.1 | - +- amd64 | libsane | 1.0.22-7.4 | - +- amd64 | libsane-common | 1.0.22-7.4 | - +- amd64 | libsane-dbg | 1.0.22-7.4 | - +- amd64 | libsane-dev | 1.0.22-7.4 | - +- amd64 | libsane-extras | 1.0.22.2 | - +- amd64 | libsane-extras-common | 1.0.22.2 | - +- amd64 | libsane-extras-dbg | 1.0.22.2 | - +- amd64 | libsane-extras-dev | 1.0.22.2 | - +- amd64 | libsane-hpaio | 3.12.6-3.1+deb7u1 | - +- amd64 | libsane-perl | 0.05-2 | - +- amd64 | libsanlock-client1 | 2.2-2 | - +- amd64 | libsanlock-dev | 2.2-2 | - +- amd64 | libsary-dev | 1:1.2.0-2.1 | - +- amd64 | libsary-ruby1.8 | 1.2.0-3.1 | - +- amd64 | libsary10 | 1:1.2.0-2.1 | - +- amd64 | libsasl2-2 | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-dev | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-modules | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-modules-gssapi-heimdal | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-modules-gssapi-mit | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-modules-ldap | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-modules-otp | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsasl2-modules-sql | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | libsatmr3 | 1.1.4-4.1 | - +- amd64 | libsatmr3-dev | 1.1.4-4.1 | - +- amd64 | libsaxon-java-gcj | 1:6.5.5-8 | - +- amd64 | libsb2 | 2.2.4-1debian1 | - ++ amd64 | libsbc-dev | - | 1.1-2~bpo7+1 ++ amd64 | libsbc1 | - | 1.1-2~bpo7+1 +- amd64 | libsbjson-dev | 2.3.2-2 | - +- amd64 | libsbjson2.3 | 2.3.2-2 | - +- amd64 | libsbsms-dev | 2.0.1-1 | - +- amd64 | libsbsms10 | 2.0.1-1 | - +- amd64 | libsbuf-dev | 9.0+ds1-4 | - +- amd64 | libsbuf6 | 9.0+ds1-4 | - +- amd64 | libsbuild-dev | 1.6.4-4 | - +- amd64 | libsc-dev | 2.3.1-14 | - +- amd64 | libsc7 | 2.3.1-14 | - +- amd64 | libscalapack-mpi-dev | 1.8.0-9 | - +- amd64 | libscalapack-mpi1 | 1.8.0-9 | - +- amd64 | libscalapack-pvm-dev | 1.8.0-9 | - +- amd64 | libscalapack-pvm1 | 1.8.0-9 | - +- amd64 | libscalar-list-utils-perl | 1:1.25-1 | - +- amd64 | libscalar-number-perl | 0.006-1+b2 | - +- amd64 | libscalar-string-perl | 0.002-1+b2 | - +- amd64 | libscalar-util-numeric-perl | 0.22-1+b2 | - +- amd64 | libscalc-dev | 0.2.4-1 | - +- amd64 | libscalc0 | 0.2.4-1 | - +- amd64 | libscamperfile0 | 20111202b-1 | - +- amd64 | libscamperfile0-dev | 20111202b-1 | - +- amd64 | libschroedinger-1.0-0 | 1.0.11-2 | - +- amd64 | libschroedinger-dev | 1.0.11-2 | - +- amd64 | libschroedinger-ocaml | 0.1.0-1+b3 | - +- amd64 | libschroedinger-ocaml-dev | 0.1.0-1+b3 | - +- amd64 | libscilab-java | 5.3.3-10 | - +- amd64 | libscilab2-java | 5.3.3-10 | - +- amd64 | libscim-dev | 1.4.13-5 | - +- amd64 | libscim8c2a | 1.4.13-5 | - +- amd64 | libsclang1 | 1:3.4.5-1wheezy1 | - +- amd64 | libscm-dev | 5e5-3.2 | - +- amd64 | libscope-upper-perl | 0.18-1+b1 | - +- amd64 | libscotch-5.1 | 5.1.12b.dfsg-1.2 | - +- amd64 | libscotch-dbg | 5.1.12b.dfsg-1.2 | - +- amd64 | libscotch-dev | 5.1.12b.dfsg-1.2 | - +- amd64 | libscotchmetis-dev | 5.1.12b.dfsg-1.2 | - +- amd64 | libscotchparmetis-dev | 5.1.12b.dfsg-1.2 | - +- amd64 | libscsynth1 | 1:3.4.5-1wheezy1 | - +- amd64 | libsctp-dev | 1.0.11+dfsg-2 | - +- amd64 | libsctp1 | 1.0.11+dfsg-2 | - +- amd64 | libsdl-console | 2.1-3 | - +- amd64 | libsdl-console-dev | 2.1-3 | - +- amd64 | libsdl-gfx1.2-4 | 2.0.23-3 | - +- amd64 | libsdl-gfx1.2-dev | 2.0.23-3 | - +- amd64 | libsdl-gst | 3.2.4-2 | - +- amd64 | libsdl-image1.2 | 1.2.12-2 | - +- amd64 | libsdl-image1.2-dev | 1.2.12-2 | - +- amd64 | libsdl-mixer1.2 | 1.2.12-3 | - +- amd64 | libsdl-mixer1.2-dev | 1.2.12-3 | - +- amd64 | libsdl-net1.2 | 1.2.8-2 | - +- amd64 | libsdl-net1.2-dev | 1.2.8-2 | - +- amd64 | libsdl-ocaml | 0.9.0-1 | - +- amd64 | libsdl-ocaml-dev | 0.9.0-1 | - +- amd64 | libsdl-pango-dev | 0.1.2-6 | - +- amd64 | libsdl-pango1 | 0.1.2-6 | - +- amd64 | libsdl-perl | 2.540-1 | - +- amd64 | libsdl-sge | 030809dfsg-3 | - +- amd64 | libsdl-sge-dev | 030809dfsg-3 | - +- amd64 | libsdl-sound1.2 | 1.0.3-6 | - +- amd64 | libsdl-sound1.2-dev | 1.0.3-6 | - +- amd64 | libsdl-stretch-0-3 | 0.3.1-3 | - +- amd64 | libsdl-stretch-dev | 0.3.1-3 | - +- amd64 | libsdl-ttf2.0-0 | 2.0.11-2 | - +- amd64 | libsdl-ttf2.0-dev | 2.0.11-2 | - +- amd64 | libsdl1.2-dbg | 1.2.15-5 | - +- amd64 | libsdl1.2-dev | 1.2.15-5 | - +- amd64 | libsdl1.2debian | 1.2.15-5 | - ++ amd64 | libsdl2-2.0-0 | - | 2.0.0+dfsg1-2~bpo70+1 ++ amd64 | libsdl2-dbg | - | 2.0.0+dfsg1-2~bpo70+1 ++ amd64 | libsdl2-dev | - | 2.0.0+dfsg1-2~bpo70+1 +- amd64 | libsdp1 | 1.1.99-2.1 | - +- amd64 | libsdpa-dev | 7.3.8+dfsg-1 | - +- amd64 | libsearch-xapian-perl | 1.2.10.0-1 | - +- amd64 | libsearchclient-dev | 0.7.7-3 | - +- amd64 | libsearchclient0 | 0.7.7-3 | - +- amd64 | libseaudit-dev | 3.3.7-3 | - +- amd64 | libseaudit4 | 3.3.7-3 | - +- amd64 | libseed-gtk3-0 | 3.2.0-2 | - +- amd64 | libseed-gtk3-dev | 3.2.0-2 | - +- amd64 | libsefs-dev | 3.3.7-3 | - +- amd64 | libsefs4 | 3.3.7-3 | - +- amd64 | libselinux1 | 2.1.9-5 | - +- amd64 | libselinux1-dev | 2.1.9-5 | - +- amd64 | libsemanage1 | 2.1.6-6 | - +- amd64 | libsemanage1-dev | 2.1.6-6 | - +- amd64 | libsendmail-milter-perl | 0.18-7+b5 | - +- amd64 | libsensors-applet-plugin-dev | 3.0.0-0.2 | - +- amd64 | libsensors-applet-plugin0 | 3.0.0-0.2 | - +- amd64 | libsensors4 | 1:3.3.2-2+deb7u1 | - +- amd64 | libsensors4-dev | 1:3.3.2-2+deb7u1 | - +- amd64 | libsepol1 | 2.1.4-3 | - +- amd64 | libsepol1-dev | 2.1.4-3 | - +- amd64 | libserd-0-0 | 0.14.0~dfsg0-2 | - +- amd64 | libserd-dev | 0.14.0~dfsg0-2 | - +- amd64 | libserf-dev | 1.1.0-2 | - +- amd64 | libserf1 | 1.1.0-2 | - +- amd64 | libserf1-dbg | 1.1.0-2 | - +- amd64 | libservice-wrapper-jni | 3.5.3+repack-0+nmu1 | - +- amd64 | libset-object-perl | 1.27-1+b2 | - +- amd64 | libsetools-jni | 3.3.7-3 | - +- amd64 | libsetools-tcl | 3.3.7-3 | - +- amd64 | libsexplib-camlp4-dev | 7.0.4-2 | - +- amd64 | libsexy-dev | 0.1.11-2+b1 | - +- amd64 | libsexy2 | 0.1.11-2+b1 | - +- amd64 | libsfml-audio1.6 | 1.6+dfsg2-2 | - +- amd64 | libsfml-dev | 1.6+dfsg2-2 | - +- amd64 | libsfml-graphics1.6 | 1.6+dfsg2-2 | - +- amd64 | libsfml-network1.6 | 1.6+dfsg2-2 | - +- amd64 | libsfml-system1.6 | 1.6+dfsg2-2 | - +- amd64 | libsfml-window1.6 | 1.6+dfsg2-2 | - +- amd64 | libsfml1.6-dbg | 1.6+dfsg2-2 | - +- amd64 | libsfst1-1.2-0 | 1.2.0-1.2 | - +- amd64 | libsfst1-1.2-0-dev | 1.2.0-1.2 | - +- amd64 | libsgml-parser-opensp-perl | 0.994-2+b1 | - +- amd64 | libsgutils2-2 | 1.33-1 | - +- amd64 | libsgutils2-dev | 1.33-1 | - +- amd64 | libsha-ocaml | 1.7-2+b2 | - +- amd64 | libsha-ocaml-dev | 1.7-2+b2 | - +- amd64 | libshairport-dev | 1.2.1~git20120110.aeb4987-2 | - +- amd64 | libshairport1 | 1.2.1~git20120110.aeb4987-2 | - +- amd64 | libshevek-dev | 1.3-1 | - +- amd64 | libshevek0 | 1.3-1 | - +- amd64 | libshhmsg1 | 1.4.1-4.1 | - +- amd64 | libshhmsg1-dev | 1.4.1-4.1 | - +- amd64 | libshhopt1 | 1.1.7-2.1 | - +- amd64 | libshhopt1-dev | 1.1.7-2.1 | - +- amd64 | libshiboken-dev | 1.1.1-1 | - +- amd64 | libshiboken-py3-1.1 | 1.1.1-1 | - +- amd64 | libshiboken1.1 | 1.1.1-1 | - +- amd64 | libshibsp-dev | 2.4.3+dfsg-5+b1 | - +- amd64 | libshibsp5 | 2.4.3+dfsg-5+b1 | - +- amd64 | libshisa-dev | 1.0.1-2 | - +- amd64 | libshisa0 | 1.0.1-2 | - +- amd64 | libshishi-dev | 1.0.1-2 | - +- amd64 | libshishi0 | 1.0.1-2 | - +- amd64 | libshout-ocaml | 0.2.7-1+b3 | - +- amd64 | libshout-ocaml-dev | 0.2.7-1+b3 | - +- amd64 | libshout3 | 2.2.2-8 | - +- amd64 | libshout3-dev | 2.2.2-8 | - +- amd64 | libshp-dev | 1.2.10-7 | - +- amd64 | libshp1 | 1.2.10-7 | - +- amd64 | libshr-glib-dbg | 2011.03.08.2~git20110930-2 | - +- amd64 | libshr-glib-dev | 2011.03.08.2~git20110930-2 | - +- amd64 | libshr-glib0 | 2011.03.08.2~git20110930-2 | - +- amd64 | libsidl-1.4.0 | 1.4.0.dfsg-8.1 | - +- amd64 | libsidl-dev | 1.4.0.dfsg-8.1 | - +- amd64 | libsidplay1 | 1.36.59-5 | - +- amd64 | libsidplay1-dev | 1.36.59-5 | - +- amd64 | libsidplay2 | 2.1.1-14 | - +- amd64 | libsidplay2-dev | 2.1.1-14 | - +- amd64 | libsidplayfp | 0.3.5-1 | - +- amd64 | libsidplayfp-dbg | 0.3.5-1 | - +- amd64 | libsidplayfp-dev | 0.3.5-1 | - +- amd64 | libsidutils-dev | 2.1.1-14 | - +- amd64 | libsidutils0 | 2.1.1-14 | - +- amd64 | libsieve2-1 | 2.2.6-1.1 | - +- amd64 | libsieve2-dev | 2.2.6-1.1 | - +- amd64 | libsigc++-1.2-5c2 | 1.2.7-2 | - +- amd64 | libsigc++-1.2-dev | 1.2.7-2 | - +- amd64 | libsigc++-2.0-0c2a | 2.2.10-0.2 | - +- amd64 | libsigc++-2.0-dev | 2.2.10-0.2 | - +- amd64 | libsigc++-dev | 1.0.4-9.4 | - +- amd64 | libsigc++0c2 | 1.0.4-9.4 | - +- amd64 | libsignatures-perl | 0.06-1 | - +- amd64 | libsigrok0 | 0.1.0-2 | - +- amd64 | libsigrok0-dev | 0.1.0-2 | - +- amd64 | libsigrokdecode0 | 0.1.0-2 | - +- amd64 | libsigrokdecode0-dev | 0.1.0-2 | - +- amd64 | libsigsegv-dev | 2.9-4 | - +- amd64 | libsigsegv2 | 2.9-4 | - +- amd64 | libsikuli-script-jni | 1.0~x~rc3.tesseract3-dfsg1-5 | - +- amd64 | libsilly | 0.1.0-3 | - +- amd64 | libsilly-dev | 0.1.0-3 | - +- amd64 | libsilo-bin | 4.8-13 | - +- amd64 | libsilo-dev | 4.8-13 | - +- amd64 | libsiloh5-0 | 4.8-13 | - +- amd64 | libsimage-dev | 1.7.0-1.1+b1 | - +- amd64 | libsimage20 | 1.7.0-1.1+b1 | - +- amd64 | libsimplelist0 | 0.3.4-2 | - +- amd64 | libsimplelist0-dev | 0.3.4-2 | - +- amd64 | libsipwitch-dev | 1.2.4-1 | - +- amd64 | libsipwitch1 | 1.2.4-1 | - +- amd64 | libsipwitch1-dbg | 1.2.4-1 | - ++ amd64 | libsipxtapi | - | 3.3.0~test12-2~bpo70+1 ++ amd64 | libsipxtapi-dev | - | 3.3.0~test12-2~bpo70+1 +- amd64 | libsiscone-dev | 2.0.5-1 | - +- amd64 | libsiscone-spherical-dev | 2.0.5-1 | - +- amd64 | libsiscone-spherical0 | 2.0.5-1 | - +- amd64 | libsiscone0 | 2.0.5-1 | - +- amd64 | libskk-dbg | 0.0.12-3 | - +- amd64 | libskk-dev | 0.0.12-3 | - +- amd64 | libskk0 | 0.0.12-3 | - +- amd64 | libskstream-0.3-6 | 0.3.8-1 | - +- amd64 | libskstream-0.3-6-dbg | 0.3.8-1 | - +- amd64 | libskstream-0.3-dev | 0.3.8-1 | - +- amd64 | libsl0-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libslang2 | 2.2.4-15 | - +- amd64 | libslang2-dev | 2.2.4-15 | - +- amd64 | libslang2-modules | 2.2.4-15 | - +- amd64 | libslang2-pic | 2.2.4-15 | - +- amd64 | libslepc3.2 | 3.2-p5-1 | - +- amd64 | libslepc3.2-dbg | 3.2-p5-1 | - +- amd64 | libslepc3.2-dev | 3.2-p5-1 | - +- amd64 | libslice34 | 3.4.2-8.2 | - +- amd64 | libslp-dev | 1.2.1-9 | - +- amd64 | libslp1 | 1.2.1-9 | - +- amd64 | libslurm-dev | 2.3.4-2+b1 | - +- amd64 | libslurm-perl | 2.3.4-2+b1 | - +- amd64 | libslurm23 | 2.3.4-2+b1 | - +- amd64 | libslurmdb-dev | 2.3.4-2+b1 | - +- amd64 | libslurmdb-perl | 2.3.4-2+b1 | - +- amd64 | libslurmdb23 | 2.3.4-2+b1 | - +- amd64 | libslv2-9 | 0.6.6+dfsg1-2 | - +- amd64 | libslv2-dev | 0.6.6+dfsg1-2 | - +- amd64 | libsm-dev | 2:1.2.1-2 | - +- amd64 | libsm6 | 2:1.2.1-2 | - +- amd64 | libsm6-dbg | 2:1.2.1-2 | - +! amd64 | libsmbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libsmbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | libsmbclient-raw-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsmbclient-raw0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libsmbios-bin | 2.0.3.dfsg-1.1 | - +- amd64 | libsmbios-dev | 2.0.3.dfsg-1.1 | - +- amd64 | libsmbios2 | 2.0.3.dfsg-1.1 | - ++ amd64 | libsmbsharemodes-dev | - | 2:4.1.5+dfsg-1~bpo70+1 ++ amd64 | libsmbsharemodes0 | - | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | libsmf-dev | 1.3-2 | - +- amd64 | libsmf0 | 1.3-2 | - +- amd64 | libsmi2-dbg | 0.4.8+dfsg2-7 | - +- amd64 | libsmi2-dev | 0.4.8+dfsg2-7 | - +- amd64 | libsmi2ldbl | 0.4.8+dfsg2-7 | - +- amd64 | libsmlnj-smlnj | 110.74-2 | - +- amd64 | libsmltk0 | 3.4.0.16.7-1 | - +- amd64 | libsmokeakonadi3 | 4:4.8.4-1 | - +- amd64 | libsmokeattica3 | 4:4.8.4-1 | - +- amd64 | libsmokebase3 | 4:4.8.4-1 | - +- amd64 | libsmokekde-dev | 4:4.8.4-1 | - +- amd64 | libsmokekde4-dbg | 4:4.8.4-1 | - +- amd64 | libsmokekdecore4-3 | 4:4.8.4-1 | - +- amd64 | libsmokekdeui4-3 | 4:4.8.4-1 | - +- amd64 | libsmokekfile3 | 4:4.8.4-1 | - +- amd64 | libsmokekhtml3 | 4:4.8.4-1 | - +- amd64 | libsmokekio3 | 4:4.8.4-1 | - +- amd64 | libsmokeknewstuff2-3 | 4:4.8.4-1 | - +- amd64 | libsmokeknewstuff3-3 | 4:4.8.4-1 | - +- amd64 | libsmokekparts3 | 4:4.8.4-1 | - +- amd64 | libsmokektexteditor3 | 4:4.8.4-1 | - +- amd64 | libsmokekutils3 | 4:4.8.4-1 | - +- amd64 | libsmokenepomuk3 | 4:4.8.4-1 | - +- amd64 | libsmokenepomukquery3 | 4:4.8.4-1 | - +- amd64 | libsmokeokular3 | 4:4.8.4-1 | - +- amd64 | libsmokephonon3 | 4:4.8.4-1 | - +- amd64 | libsmokeplasma3 | 4:4.8.4-1 | - +- amd64 | libsmokeqimageblitz3 | 4:4.8.4-1 | - +- amd64 | libsmokeqsci3 | 4:4.8.4-1 | - +- amd64 | libsmokeqt3support4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqt4-dbg | 4:4.8.4-1 | - +- amd64 | libsmokeqt4-dev | 4:4.8.4-1 | - +- amd64 | libsmokeqtcore4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtdbus4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtdeclarative4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtgui4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqthelp4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtnetwork4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtopengl4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtscript4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtsql4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtsvg4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqttest4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtuitools4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtwebkit4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtxml4-3 | 4:4.8.4-1 | - +- amd64 | libsmokeqtxmlpatterns4-3 | 4:4.8.4-1 | - +- amd64 | libsmokesolid3 | 4:4.8.4-1 | - +- amd64 | libsmokesoprano3 | 4:4.8.4-1 | - +- amd64 | libsmokesopranoclient3 | 4:4.8.4-1 | - +- amd64 | libsmokesopranoserver3 | 4:4.8.4-1 | - +- amd64 | libsmpeg-dev | 0.4.5+cvs20030824-5 | - +- amd64 | libsmpeg0 | 0.4.5+cvs20030824-5 | - +- amd64 | libsnacc-dev | 1.3.1-1 | - +- amd64 | libsnacc0c2 | 1.3.1-1 | - +- amd64 | libsnack2 | 2.2.10-dfsg1-12.1 | - +- amd64 | libsnack2-alsa | 2.2.10-dfsg1-12.1 | - +- amd64 | libsnack2-dev | 2.2.10-dfsg1-12.1 | - +- amd64 | libsnappy-dev | 1.0.5-2 | - +- amd64 | libsnappy1 | 1.0.5-2 | - +- amd64 | libsndfile1 | 1.0.25-5 | - +- amd64 | libsndfile1-dev | 1.0.25-5 | - +- amd64 | libsndobj-dev | 2.6.6.1-3 | - +- amd64 | libsndobj2c2 | 2.6.6.1-3 | - +- amd64 | libsnmp-dev | 5.4.3~dfsg-2.7 | - +- amd64 | libsnmp-perl | 5.4.3~dfsg-2.7 | - +- amd64 | libsnmp-python | 5.4.3~dfsg-2.7 | - +- amd64 | libsnmp15 | 5.4.3~dfsg-2.7 | - +- amd64 | libsnmp15-dbg | 5.4.3~dfsg-2.7 | - +- amd64 | libsnmpkit-dev | 0.9-16 | - +- amd64 | libsnmpkit2c2a | 0.9-16 | - +- amd64 | libsocialweb-client-dev | 0.25.20-2.1 | - +- amd64 | libsocialweb-client2 | 0.25.20-2.1 | - +- amd64 | libsocialweb-client2-dbg | 0.25.20-2.1 | - +- amd64 | libsocialweb-dev | 0.25.20-2.1 | - +- amd64 | libsocialweb-service | 0.25.20-2.1 | - +- amd64 | libsocialweb0 | 0.25.20-2.1 | - +- amd64 | libsocialweb0-dbg | 0.25.20-2.1 | - +- amd64 | libsocket-getaddrinfo-perl | 0.22-1 | - +- amd64 | libsocket-linux-perl | 0.01-1+b1 | - +- amd64 | libsocket-multicast6-perl | 0.04-1+b2 | - +- amd64 | libsocket-perl | 2.002-1 | - +- amd64 | libsocket6-perl | 0.23-1+b2 | - +- amd64 | libsocks4 | 4.3.beta2-18 | - +- amd64 | libsocksd0 | 1.1.19.dfsg-3+b3 | - +- amd64 | libsocksd0-dev | 1.1.19.dfsg-3+b3 | - +- amd64 | libsofa-c-dev | 2012.03.01-1 | - +- amd64 | libsofa-c0 | 2012.03.01-1 | - +- amd64 | libsofa1 | 1.0~beta4-7 | - +- amd64 | libsofa1-dev | 1.0~beta4-7 | - +- amd64 | libsofia-sip-ua-dev | 1.12.11+20110422-1 | - +- amd64 | libsofia-sip-ua-glib-dev | 1.12.11+20110422-1 | - +- amd64 | libsofia-sip-ua-glib3 | 1.12.11+20110422-1 | - +- amd64 | libsofia-sip-ua0 | 1.12.11+20110422-1 | - +- amd64 | libsofthsm | 1.3.3-2 | - +- amd64 | libsofthsm-dev | 1.3.3-2 | - +- amd64 | libsoil-dev | 1.07~20080707.dfsg-2 | - +- amd64 | libsoil1 | 1.07~20080707.dfsg-2 | - +- amd64 | libsoil1-dbg | 1.07~20080707.dfsg-2 | - +- amd64 | libsolid4 | 4:4.8.4-4 | - +- amd64 | libsolidcontrol4abi2 | 4:4.8.4-6 | - +- amd64 | libsolidcontrolifaces4abi2 | 4:4.8.4-6 | - +- amd64 | libsombok-dev | 2.2.1-1 | - +- amd64 | libsombok3 | 2.2.1-1 | - +- amd64 | libsonic-dev | 0.1.17-1.1 | - +- amd64 | libsonic0 | 0.1.17-1.1 | - +! amd64 | libsope-dev | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsope1 | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsope1-dbg | 1.3.16-1 | 2.0.5-1~bpo70+1 +- amd64 | libsoprano-dbg | 2.7.6+dfsg.1-2wheezy1 | - +- amd64 | libsoprano-dev | 2.7.6+dfsg.1-2wheezy1 | - +- amd64 | libsoprano4 | 2.7.6+dfsg.1-2wheezy1 | - +! amd64 | libsoqt-dev-common | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libsoqt4-20 | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libsoqt4-dev | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +- amd64 | libsord-0-0 | 0.8.0~dfsg0-1 | - +- amd64 | libsord-dev | 0.8.0~dfsg0-1 | - +- amd64 | libsort-key-perl | 1.32-1 | - +- amd64 | libsort-key-top-perl | 0.06-1 | - +- amd64 | libsoundgen-dbg | 0.6-4 | - +- amd64 | libsoundgen-dev | 0.6-4 | - +- amd64 | libsoundgen0 | 0.6-4 | - +- amd64 | libsoundtouch-dev | 1.6.0-3 | - +- amd64 | libsoundtouch-ocaml | 0.1.7-1+b1 | - +- amd64 | libsoundtouch-ocaml-dev | 0.1.7-1+b1 | - +- amd64 | libsoundtouch0 | 1.6.0-3 | - +- amd64 | libsoundtouch0-dbg | 1.6.0-3 | - +- amd64 | libsoup-gnome2.4-1 | 2.38.1-2 | - +- amd64 | libsoup-gnome2.4-dev | 2.38.1-2 | - +- amd64 | libsoup2.4-1 | 2.38.1-2 | - +- amd64 | libsoup2.4-dbg | 2.38.1-2 | - +- amd64 | libsoup2.4-dev | 2.38.1-2 | - +- amd64 | libsoupcutter-dev | 1.1.7-1.2 | - +- amd64 | libsoupcutter0 | 1.1.7-1.2 | - +- amd64 | libsource-highlight-dev | 3.1.6-1.1 | - +- amd64 | libsource-highlight4 | 3.1.6-1.1 | - +- amd64 | libsox-dev | 14.4.0-3 | - +- amd64 | libsox-fmt-all | 14.4.0-3 | - +- amd64 | libsox-fmt-alsa | 14.4.0-3 | - +- amd64 | libsox-fmt-ao | 14.4.0-3 | - +- amd64 | libsox-fmt-base | 14.4.0-3 | - +- amd64 | libsox-fmt-ffmpeg | 14.4.0-3 | - +- amd64 | libsox-fmt-mp3 | 14.4.0-3 | - +- amd64 | libsox-fmt-oss | 14.4.0-3 | - +- amd64 | libsox-fmt-pulse | 14.4.0-3 | - +- amd64 | libsox2 | 14.4.0-3 | - +- amd64 | libsp-gxmlcpp-dev | 1.0.20040603-5 | - +- amd64 | libsp-gxmlcpp1 | 1.0.20040603-5 | - +- amd64 | libsp1-dev | 1.3.4-1.2.1-47.1+b1 | - +- amd64 | libsp1c2 | 1.3.4-1.2.1-47.1+b1 | - +- amd64 | libspandsp-dev | 0.0.6~pre20-3.1 | - +- amd64 | libspandsp2 | 0.0.6~pre20-3.1 | - +- amd64 | libsparskit-dev | 2.0.0-2 | - +- amd64 | libsparskit2.0 | 2.0.0-2 | - +- amd64 | libspatialindex-dev | 1.7.0-1 | - +- amd64 | libspatialindex1 | 1.7.0-1 | - +- amd64 | libspatialite-dev | 3.0.0~beta20110817-3+deb7u1 | - +- amd64 | libspatialite3 | 3.0.0~beta20110817-3+deb7u1 | - +- amd64 | libspctag-dev | 0.2-1 | - +- amd64 | libspctag1 | 0.2-1 | - +- amd64 | libspectre-dev | 0.2.7-2 | - +- amd64 | libspectre1 | 0.2.7-2 | - +- amd64 | libspectre1-dbg | 0.2.7-2 | - +- amd64 | libspectrum-dev | 1.0.0-3 | - +- amd64 | libspectrum8 | 1.0.0-3 | - +- amd64 | libspeechd-dev | 0.7.1-6.2 | - +- amd64 | libspeechd2 | 0.7.1-6.2 | - +- amd64 | libspeex-dbg | 1.2~rc1-7 | - +- amd64 | libspeex-dev | 1.2~rc1-7 | - +- amd64 | libspeex-ocaml | 0.2.0-1+b3 | - +- amd64 | libspeex-ocaml-dev | 0.2.0-1+b3 | - +- amd64 | libspeex1 | 1.2~rc1-7 | - +- amd64 | libspeexdsp-dev | 1.2~rc1-7 | - +- amd64 | libspeexdsp1 | 1.2~rc1-7 | - +- amd64 | libspf2-2 | 1.2.9-7 | - +- amd64 | libspf2-2-dbg | 1.2.9-7 | - +- amd64 | libspf2-dev | 1.2.9-7 | - +- amd64 | libsphere-dev | 3.2-4 | - +- amd64 | libsphere0d | 3.2-4 | - +- amd64 | libspice-client-glib-2.0-1 | 0.12-5 | - +- amd64 | libspice-client-glib-2.0-dev | 0.12-5 | - +- amd64 | libspice-client-gtk-2.0-1 | 0.12-5 | - +- amd64 | libspice-client-gtk-2.0-dev | 0.12-5 | - +- amd64 | libspice-client-gtk-3.0-1 | 0.12-5 | - +- amd64 | libspice-client-gtk-3.0-dev | 0.12-5 | - +! amd64 | libspice-server-dev | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | libspice-server1 | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +- amd64 | libspiro-dev | 20071029-2 | - +- amd64 | libspiro0 | 20071029-2 | - +- amd64 | libspiro0-dbg | 20071029-2 | - +- amd64 | libspnav-dev | 0.2.2-1 | - +- amd64 | libspnav0 | 0.2.2-1 | - +- amd64 | libspooles-dev | 2.2-9 | - +- amd64 | libspooles2.2 | 2.2-9 | - +- amd64 | libsprng2 | 2.0a-8 | - +- amd64 | libsprng2-dev | 2.0a-8 | - ++ amd64 | libsqlcipher-dev | - | 2.2.1-2~bpo70+1 ++ amd64 | libsqlcipher0 | - | 2.2.1-2~bpo70+1 ++ amd64 | libsqlcipher0-dbg | - | 2.2.1-2~bpo70+1 +- amd64 | libsqlexpr-ocaml | 0.4.1-1+b5 | - +- amd64 | libsqlexpr-ocaml-dev | 0.4.1-1+b5 | - +- amd64 | libsqlheavy-dev | 0.1.1-1 | - +- amd64 | libsqlheavy0.1-0 | 0.1.1-1 | - +- amd64 | libsqlheavy0.1-dbg | 0.1.1-1 | - +- amd64 | libsqlheavygtk-dev | 0.1.1-1 | - +- amd64 | libsqlheavygtk0.1-0 | 0.1.1-1 | - +- amd64 | libsqlite-tcl | 2.8.17-7 | - +- amd64 | libsqlite0 | 2.8.17-7 | - +- amd64 | libsqlite0-dev | 2.8.17-7 | - +- amd64 | libsqlite3-0 | 3.7.13-1+deb7u1 | - +- amd64 | libsqlite3-0-dbg | 3.7.13-1+deb7u1 | - +- amd64 | libsqlite3-dev | 3.7.13-1+deb7u1 | - +- amd64 | libsqlite3-gst | 3.2.4-2 | - +- amd64 | libsqlite3-mod-blobtoxy | 0.91-3 | - +- amd64 | libsqlite3-mod-impexp | 0.91-3 | - +- amd64 | libsqlite3-ocaml | 1.6.1-1+b1 | - +- amd64 | libsqlite3-ocaml-dev | 1.6.1-1+b1 | - +- amd64 | libsqlite3-tcl | 3.7.13-1+deb7u1 | - +- amd64 | libsqliteodbc | 0.91-3 | - +- amd64 | libsquizz | 0.99a-2 | - +- amd64 | libsquizz-dev | 0.99a-2 | - +- amd64 | libsratom-0-0 | 0.2.0~dfsg0-1 | - +- amd64 | libsratom-dev | 0.2.0~dfsg0-1 | - +- amd64 | libsrecord-dev | 1.58-1+b1 | - +- amd64 | libsrecord0 | 1.58-1+b1 | - +- amd64 | libsrecord0-dbg | 1.58-1+b1 | - +- amd64 | libsrf-dev | 0.1+dfsg-1 | - +- amd64 | libsrtp0 | 1.4.4+20100615~dfsg-2+deb7u1 | - +- amd64 | libsrtp0-dev | 1.4.4+20100615~dfsg-2+deb7u1 | - +- amd64 | libss2 | 1.42.5-1.1 | - +- amd64 | libss2-dbg | 1.42.5-1.1 | - +- amd64 | libss7-1 | 1.0.2-3 | - +- amd64 | libss7-dbg | 1.0.2-3 | - +- amd64 | libss7-dev | 1.0.2-3 | - +- amd64 | libsscm-dev | 0.8.5-2.1 | - +- amd64 | libsscm3 | 0.8.5-2.1 | - +- amd64 | libssh-4 | 0.5.4-1 | - +- amd64 | libssh-dbg | 0.5.4-1 | - +- amd64 | libssh-dev | 0.5.4-1 | - +- amd64 | libssh2-1 | 1.4.2-1.1 | - +- amd64 | libssh2-1-dbg | 1.4.2-1.1 | - +- amd64 | libssh2-1-dev | 1.4.2-1.1 | - +- amd64 | libssh2-php | 0.11.3-0.1+b2 | - +- amd64 | libssl-dev | 1.0.1e-2+deb7u4 | - +- amd64 | libssl-ocaml | 0.4.6-1 | - +- amd64 | libssl-ocaml-dev | 0.4.6-1 | - +- amd64 | libssl1.0.0 | 1.0.1e-2+deb7u4 | - +- amd64 | libssl1.0.0-dbg | 1.0.1e-2+deb7u4 | - +- amd64 | libsslcommon2 | 0.16-6+deb7u1 | - +- amd64 | libsslcommon2-dev | 0.16-6+deb7u1 | - +- amd64 | libssreflect-ocaml | 1.3pl4-1 | - +- amd64 | libssreflect-ocaml-dev | 1.3pl4-1 | - +- amd64 | libsss-sudo-dev | 1.8.4-2 | - +- amd64 | libsss-sudo0 | 1.8.4-2 | - +- amd64 | libst-dev | 1.9-3 | - +- amd64 | libst1 | 1.9-3 | - +- amd64 | libstaden-read-dev | 1.12.4-1 | - +- amd64 | libstaden-read1 | 1.12.4-1 | - +- amd64 | libstarlink-ast-dev | 7.0.4+dfsg-1 | - +- amd64 | libstarlink-ast-err0 | 7.0.4+dfsg-1 | - +- amd64 | libstarlink-ast-grf3d0 | 7.0.4+dfsg-1 | - +- amd64 | libstarlink-ast0 | 7.0.4+dfsg-1 | - +- amd64 | libstarlink-pal-dev | 0.1.0-1 | - +- amd64 | libstarlink-pal0 | 0.1.0-1 | - +- amd64 | libstarpu-1.0 | 1.0.1+dfsg-1 | - +- amd64 | libstarpu-dev | 1.0.1+dfsg-1 | - +- amd64 | libstarpufft-1.0 | 1.0.1+dfsg-1 | - +- amd64 | libstarpumpi-1.0 | 1.0.1+dfsg-1 | - +- amd64 | libstartup-notification0 | 0.12-1 | - +- amd64 | libstartup-notification0-dev | 0.12-1 | - +- amd64 | libstatgrab-dev | 0.17-1 | - +- amd64 | libstatgrab6 | 0.17-1 | - +- amd64 | libstdc++5 | 1:3.3.6-25 | - +- amd64 | libstdc++6 | 4.7.2-5 | - +- amd64 | libstdc++6-4.4-dbg | 4.4.7-2 | - +- amd64 | libstdc++6-4.4-dev | 4.4.7-2 | - +- amd64 | libstdc++6-4.4-pic | 4.4.7-2 | - +- amd64 | libstdc++6-4.6-dbg | 4.6.3-14 | - +- amd64 | libstdc++6-4.6-dev | 4.6.3-14 | - +- amd64 | libstdc++6-4.6-pic | 4.6.3-14 | - +- amd64 | libstdc++6-4.7-dbg | 4.7.2-5 | - +- amd64 | libstdc++6-4.7-dev | 4.7.2-5 | - +- amd64 | libstdc++6-4.7-pic | 4.7.2-5 | - +- amd64 | libstemmer-dev | 0+svn546-2 | - +- amd64 | libstemmer-tools | 0+svn546-2 | - +- amd64 | libstemmer0d | 0+svn546-2 | - +- amd64 | libstemmer0d-dbg | 0+svn546-2 | - +- amd64 | libsteptalk-dev | 0.10.0-5+b1 | - +- amd64 | libsteptalk0 | 0.10.0-5+b1 | - +- amd64 | libstfl-dev | 0.22-1+b1 | - +- amd64 | libstfl-perl | 0.22-1+b1 | - +- amd64 | libstfl-ruby1.8 | 0.22-1+b1 | - +- amd64 | libstfl-ruby1.9.1 | 0.22-1+b1 | - +- amd64 | libstfl-spl | 0.22-1+b1 | - +- amd64 | libstfl0 | 0.22-1+b1 | - +- amd64 | libstk0-dev | 4.4.3-2 | - +- amd64 | libstk0c2a | 4.4.3-2 | - +- amd64 | libstonith1 | 1.0.9+hg2665-1 | - +- amd64 | libstonith1-dev | 1.0.9+hg2665-1 | - +- amd64 | libstonithd1 | 1.1.7-1 | - +- amd64 | libstonithd1-dev | 1.1.7-1 | - +- amd64 | libstreamanalyzer-dev | 0.7.7-3 | - +- amd64 | libstreamanalyzer0 | 0.7.7-3 | - +- amd64 | libstreams-dev | 0.7.7-3 | - +- amd64 | libstreams0 | 0.7.7-3 | - +- amd64 | libstrigihtmlgui-dev | 0.7.7-3 | - +- amd64 | libstrigihtmlgui0 | 0.7.7-3 | - +- amd64 | libstrigiqtdbusclient-dev | 0.7.7-3 | - +- amd64 | libstrigiqtdbusclient0 | 0.7.7-3 | - +- amd64 | libstring-approx-perl | 3.26-1+b2 | - ++ amd64 | libstring-compare-constanttime-perl | - | 0.300-1~bpo70+1 +- amd64 | libstring-crc32-perl | 1.4-2+b3 | - +- amd64 | libstring-similarity-perl | 1.04-1 | - +- amd64 | libstroke0 | 0.5.1-6 | - +- amd64 | libstroke0-dev | 0.5.1-6 | - +! amd64 | libstrongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +- amd64 | libstxxl-dev | 1.3.1-4 | - +- amd64 | libstxxl1 | 1.3.1-4 | - +- amd64 | libstxxl1-dbg | 1.3.1-4 | - +- amd64 | libstyx2 | 1.8.0-1.1 | - +- amd64 | libsub-current-perl | 0.02-1+b2 | - +- amd64 | libsub-identify-perl | 0.04-1+b2 | - +- amd64 | libsub-name-perl | 0.05-1+b2 | - +- amd64 | libsub-prototype-perl | 0.02-1+b2 | - +- amd64 | libsublime-dev | 1.3.1-2 | - +- amd64 | libsublime5 | 1.3.1-2 | - +- amd64 | libsubtitleeditor-dev | 0.33.0-1 | - +- amd64 | libsubtitleeditor0 | 0.33.0-1 | - +- amd64 | libsubunit-dev | 0.0.8+bzr176-1 | - +- amd64 | libsubunit0 | 0.0.8+bzr176-1 | - +- amd64 | libsugarext-dbg | 0.96.1-2 | - +- amd64 | libsugarext-dev | 0.96.1-2 | - +- amd64 | libsugarext0 | 0.96.1-2 | - +- amd64 | libsuil-0-0 | 0.6.4~dfsg0-3 | - +- amd64 | libsuil-dev | 0.6.4~dfsg0-3 | - +- amd64 | libsuitesparse-dbg | 1:3.4.0-3 | - +- amd64 | libsuitesparse-dev | 1:3.4.0-3 | - +- amd64 | libsundials-cvode1 | 2.5.0-3 | - +- amd64 | libsundials-cvodes2 | 2.5.0-3 | - +- amd64 | libsundials-ida2 | 2.5.0-3 | - +- amd64 | libsundials-idas0 | 2.5.0-3 | - +- amd64 | libsundials-kinsol1 | 2.5.0-3 | - +- amd64 | libsundials-nvecserial0 | 2.5.0-3 | - +- amd64 | libsundials-serial | 2.5.0-3 | - +- amd64 | libsundials-serial-dev | 2.5.0-3 | - +- amd64 | libsunpinyin-dev | 2.0.3+git20120607-1 | - +- amd64 | libsunpinyin3 | 2.0.3+git20120607-1 | - +- amd64 | libsunpinyin3-dbg | 2.0.3+git20120607-1 | - +- amd64 | libsuperlu3 | 3.0+20070106-3 | - +- amd64 | libsuperlu3-dev | 3.0+20070106-3 | - +- amd64 | libsvga1 | 1:1.4.3-33 | - +- amd64 | libsvga1-dev | 1:1.4.3-33 | - +- amd64 | libsvm-dev | 3.12-1 | - +- amd64 | libsvm-tools | 3.12-1 | - +- amd64 | libsvm3 | 3.12-1 | - +- amd64 | libsvn-dev | 1.6.17dfsg-4+deb7u4 | - +- amd64 | libsvn-java | 1.6.17dfsg-4+deb7u4 | - +- amd64 | libsvn-perl | 1.6.17dfsg-4+deb7u4 | - +- amd64 | libsvn-ruby1.8 | 1.6.17dfsg-4+deb7u4 | - +- amd64 | libsvn1 | 1.6.17dfsg-4+deb7u4 | - +- amd64 | libsvncpp-dev | 0.12.0dfsg-6 | - +- amd64 | libsvncpp3 | 0.12.0dfsg-6 | - +- amd64 | libsvnqt-dev | 1.5.5-4.1 | - +- amd64 | libsvnqt6 | 1.5.5-4.1 | - +- amd64 | libsvrcore-dev | 1:4.0.4-15 | - +- amd64 | libsvrcore0 | 1:4.0.4-15 | - +- amd64 | libsvrcore0-dbg | 1:4.0.4-15 | - +- amd64 | libswami-dev | 2.0.0+svn389-2 | - +- amd64 | libswami0 | 2.0.0+svn389-2 | - +- amd64 | libswe-dev | 1.77.00.0005-2 | - +- amd64 | libswe0 | 1.77.00.0005-2 | - +- amd64 | libswf-perl | 1:0.4.4-1.1 | - +- amd64 | libswiften-dev | 2.0~beta1+dev47-1 | - +- amd64 | libswiften2 | 2.0~beta1+dev47-1 | - +- amd64 | libsword-dbg | 1.6.2+dfsg-5 | - +- amd64 | libsword-dev | 1.6.2+dfsg-5 | - +- amd64 | libsword-utils | 1.6.2+dfsg-5 | - +- amd64 | libsword9 | 1.6.2+dfsg-5 | - +! amd64 | libswscale-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libswscale2 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- amd64 | libswt-cairo-gtk-3-jni | 3.8.0~rc4-1 | - +- amd64 | libswt-glx-gtk-3-jni | 3.8.0~rc4-1 | - +- amd64 | libswt-gnome-gtk-3-jni | 3.8.0~rc4-1 | - +- amd64 | libswt-gtk-3-java | 3.8.0~rc4-1 | - +- amd64 | libswt-gtk-3-java-gcj | 3.8.0~rc4-1 | - +- amd64 | libswt-gtk-3-jni | 3.8.0~rc4-1 | - +- amd64 | libswt-webkit-gtk-3-jni | 3.8.0~rc4-1 | - +- amd64 | libsx-dev | 2.05-3 | - +- amd64 | libsx0 | 2.05-3 | - +- amd64 | libsybdb5 | 0.91-2+deb7u1 | - +- amd64 | libsyfi1.0 | 1.0.0.dfsg-1 | - +- amd64 | libsyfi1.0-dbg | 1.0.0.dfsg-1 | - +- amd64 | libsyfi1.0-dev | 1.0.0.dfsg-1 | - +- amd64 | libsylph-dev | 1.1.0-8 | - +- amd64 | libsylph1 | 1.1.0-8 | - +- amd64 | libsymmetrica-2.0 | 2.0-1 | - +- amd64 | libsymmetrica-dev | 2.0-1 | - +- amd64 | libsynce-dbg | 0.15-1.1 | - +- amd64 | libsynce0 | 0.15-1.1 | - +- amd64 | libsynce0-dev | 0.15-1.1 | - +- amd64 | libsyncevo-dbus0 | 1.2.99.1-1.1 | - +- amd64 | libsyncevolution0 | 1.2.99.1-1.1 | - +- amd64 | libsyncml-dev | 0.5.4-2.1 | - +- amd64 | libsyncml-utils | 0.5.4-2.1 | - +- amd64 | libsyncml2 | 0.5.4-2.1 | - +- amd64 | libsyncml2-dbg | 0.5.4-2.1 | - +- amd64 | libsyndication4 | 4:4.8.4-2 | - +- amd64 | libsynfig-dev | 0.63.05-1 | - +- amd64 | libsynfig0 | 0.63.05-1 | - +- amd64 | libsynopsis0.12 | 0.12-8 | - +- amd64 | libsynopsis0.12-dev | 0.12-8 | - +- amd64 | libsynthesis-dbg | 3.4.0.16.7-1 | - +- amd64 | libsynthesis-dev | 3.4.0.16.7-1 | - +- amd64 | libsynthesis0 | 3.4.0.16.7-1 | - +- amd64 | libsys-cpu-perl | 0.52-3 | - +- amd64 | libsys-cpuload-perl | 0.03-6+b3 | - +- amd64 | libsys-gamin-perl | 0.1-1+b2 | - +- amd64 | libsys-mmap-perl | 0.16-1+b1 | - +- amd64 | libsys-syslog-perl | 0.29-1+b2 | - +- amd64 | libsys-utmp-perl | 1.6-4+b3 | - +- amd64 | libsys-virt-perl | 0.9.12-2 | - +- amd64 | libsysactivity-dev | 0.6.4-1 | - +- amd64 | libsysactivity1 | 0.6.4-1 | - +- amd64 | libsysactivity1-dbg | 0.6.4-1 | - +- amd64 | libsysfs-dev | 2.1.0+repack-2 | - +- amd64 | libsysfs2 | 2.1.0+repack-2 | - +- amd64 | libsyslog-ng-3.3.5 | 3.3.5-4 | - +- amd64 | libsyslog-ng-dev | 3.3.5-4 | - +- amd64 | libsyslog-ocaml | 1.4-6+b2 | - +- amd64 | libsyslog-ocaml-dev | 1.4-6+b2 | - +- amd64 | libsystemd-daemon-dev | 44-11+deb7u4 | - +- amd64 | libsystemd-daemon0 | 44-11+deb7u4 | - +- amd64 | libsystemd-id128-0 | 44-11+deb7u4 | - +- amd64 | libsystemd-id128-dev | 44-11+deb7u4 | - +- amd64 | libsystemd-journal-dev | 44-11+deb7u4 | - +- amd64 | libsystemd-journal0 | 44-11+deb7u4 | - +- amd64 | libsystemd-login-dev | 44-11+deb7u4 | - +- amd64 | libsystemd-login0 | 44-11+deb7u4 | - +- amd64 | libt1-5 | 5.1.2-3.6 | - +- amd64 | libt1-5-dbg | 5.1.2-3.6 | - +- amd64 | libt1-dev | 5.1.2-3.6 | - +- amd64 | libtacacs+1 | 4.0.4.19-11 | - +- amd64 | libtachyon-0.99 | 0.99~b2+dfsg-0.4 | - +- amd64 | libtachyon-dev | 0.99~b2+dfsg-0.4 | - +- amd64 | libtag-extras-dev | 1.0.1-3 | - +- amd64 | libtag-extras1 | 1.0.1-3 | - +! amd64 | libtag1-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +- amd64 | libtag1-rusxmms | 1.7.2-1 | - +! amd64 | libtag1-vanilla | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtag1c2a | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtagc0 | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtagc0-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +- amd64 | libtagcoll2-dev | 2.0.13-1.1 | - +- amd64 | libtaglib-ocaml | 0.2.0-1+b1 | - +- amd64 | libtaglib-ocaml-dev | 0.2.0-1+b1 | - +- amd64 | libtaint-util-perl | 0.08-1+b2 | - +- amd64 | libtaktuk-1-dev | 3.7.4-1 | - +- amd64 | libtaktuk3 | 3.7.4-1 | - +! amd64 | libtalloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtalloc2 | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtalloc2-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +- amd64 | libtamuanova-0.2 | 0.2-2 | - +- amd64 | libtamuanova-dev | 0.2-2 | - +- amd64 | libtango-tools | 7.2.6+dfsg-14 | - +- amd64 | libtango7 | 7.2.6+dfsg-14 | - +- amd64 | libtango7-dbg | 7.2.6+dfsg-14 | - +- amd64 | libtango7-dev | 7.2.6+dfsg-14 | - +- amd64 | libtaningia-dev | 0.2.2-1 | - +- amd64 | libtaningia0 | 0.2.2-1 | - +- amd64 | libtar-dev | 1.2.16-1+deb7u1 | - +- amd64 | libtar0 | 1.2.16-1+deb7u1 | - +- amd64 | libtarantool-dev | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantool1 | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantool1-dbg | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantoolnet1 | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantoolnet1-dbg | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantoolrpl1 | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantoolrpl1-dbg | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantoolsql1 | 1.4.6+20120629+2158-1 | - +- amd64 | libtarantoolsql1-dbg | 1.4.6+20120629+2158-1 | - +- amd64 | libtaskmanager4abi3 | 4:4.8.4-6 | - +- amd64 | libtasn1-3 | 2.13-2 | - +- amd64 | libtasn1-3-bin | 2.13-2 | - +- amd64 | libtasn1-3-dbg | 2.13-2 | - +- amd64 | libtasn1-3-dev | 2.13-2 | - ++ amd64 | libtasn1-6 | - | 3.4-2~bpo70+1 ++ amd64 | libtasn1-6-dbg | - | 3.4-2~bpo70+1 ++ amd64 | libtasn1-6-dev | - | 3.4-2~bpo70+1 ++ amd64 | libtasn1-bin | - | 3.4-2~bpo70+1 +- amd64 | libtbb-dev | 4.0+r233-1 | - +- amd64 | libtbb2 | 4.0+r233-1 | - +- amd64 | libtbb2-dbg | 4.0+r233-1 | - +- amd64 | libtcc-dev | 0.9.26~git20120612.ad5f375-6 | - +- amd64 | libtcd-dev | 2.2.2-1 | - +- amd64 | libtcd0 | 2.2.2-1 | - +- amd64 | libtcl-chiark-1 | 1.1.1 | - +- amd64 | libtclap-dev | 1.2.1-1 | - +- amd64 | libtclcl1 | 1.20-6 | - +- amd64 | libtclcl1-dev | 1.20-6 | - +- amd64 | libtcltk-ruby1.8 | 1.8.7.358-7.1+deb7u1 | - +- amd64 | libtcltk-ruby1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- amd64 | libtcmalloc-minimal4 | 2.0-2 | - +- amd64 | libtcmalloc-minimal4-dbg | 2.0-2 | - +- amd64 | libtcnative-1 | 1.1.24-1 | - ++ amd64 | libtcplay | - | 1.1-1~bpo70+1 ++ amd64 | libtcplay-dev | - | 1.1-1~bpo70+1 +! amd64 | libtdb-dev | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtdb1 | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtdb1-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +- amd64 | libtecla1 | 1.6.1-5 | - +- amd64 | libtecla1-dev | 1.6.1-5 | - +- amd64 | libteem-dev | 1.11.0~svn5226-1 | - +- amd64 | libteem2 | 1.11.0~svn5226-1 | - +- amd64 | libteem2-dbg | 1.11.0~svn5226-1 | - +- amd64 | libtelepathy-farstream-dev | 0.4.0-3 | - +- amd64 | libtelepathy-farstream2 | 0.4.0-3 | - +- amd64 | libtelepathy-farstream2-dbg | 0.4.0-3 | - +- amd64 | libtelepathy-glib-dev | 0.18.2-2 | - +- amd64 | libtelepathy-glib0 | 0.18.2-2 | - +- amd64 | libtelepathy-glib0-dbg | 0.18.2-2 | - +- amd64 | libtelepathy-logger-dev | 0.4.0-1 | - +- amd64 | libtelepathy-logger-qt4-1 | 0.4.0-1 | - +- amd64 | libtelepathy-logger-qt4-1-dbg | 0.4.0-1 | - +- amd64 | libtelepathy-logger-qt4-dev | 0.4.0-1 | - +- amd64 | libtelepathy-logger2 | 0.4.0-1 | - +- amd64 | libtelepathy-logger2-dbg | 0.4.0-1 | - +- amd64 | libtelepathy-qt4-2 | 0.9.1-4 | - +- amd64 | libtelepathy-qt4-dbg | 0.9.1-4 | - +- amd64 | libtelepathy-qt4-dev | 0.9.1-4 | - +- amd64 | libtelepathy-qt4-farstream2 | 0.9.1-4 | - +- amd64 | libtelnet-dev | 0.21-1 | - +- amd64 | libtelnet-utils | 0.21-1 | - +- amd64 | libtelnet2 | 0.21-1 | - +- amd64 | libtemplate-perl | 2.24-1 | - +- amd64 | libtemplates-parser11.6 | 11.6-2 | - +- amd64 | libtemplates-parser11.6-dbg | 11.6-2 | - +- amd64 | libtemplates-parser11.6-dev | 11.6-2 | - +- amd64 | libterm-readkey-perl | 2.30-4+b2 | - +- amd64 | libterm-readline-gnu-perl | 1.20-2+b1 | - +- amd64 | libterm-size-perl | 0.207-1 | - +- amd64 | libterm-size-perl-perl | 0.029-1 | - +- amd64 | libterm-slang-perl | 0.07-11+b3 | - +- amd64 | libterralib | 4.0.0-4 | - +- amd64 | libterralib-dev | 4.0.0-4 | - +- amd64 | libtesseract-dev | 3.02.01-6 | - +- amd64 | libtesseract3 | 3.02.01-6 | - +- amd64 | libtest-leaktrace-perl | 0.14-1+b1 | - +- amd64 | libtest-taint-perl | 1.04-1+b2 | - +! amd64 | libtevent-dev | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtevent0 | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtevent0-dbg | 0.9.16-1 | 0.9.19-1~bpo70+1 +- amd64 | libtext-aligner-perl | 0.07-1 | - +- amd64 | libtext-aspell-perl | 0.09-1+b2 | - +- amd64 | libtext-bibtex-perl | 0.63-1 | - +- amd64 | libtext-bidi-perl | 0.03-5+b2 | - +- amd64 | libtext-charwidth-perl | 0.04-7+b1 | - +- amd64 | libtext-chasen-perl | 1.04-3+b4 | - +- amd64 | libtext-csv-xs-perl | 0.90-1 | - +- amd64 | libtext-hunspell-perl | 2.03-1 | - +- amd64 | libtext-iconv-perl | 1.7-5 | - +- amd64 | libtext-kakasi-perl | 2.04-1+b3 | - +- amd64 | libtext-levenshteinxs-perl | 0.03-3+b2 | - +- amd64 | libtext-markdown-discount-perl | 0.02-1 | - +- amd64 | libtext-mecab-perl | 0.20013-2 | - +- amd64 | libtext-ngram-perl | 0.14-1 | - +- amd64 | libtext-ocaml | 0.5-1+b2 | - +- amd64 | libtext-ocaml-dev | 0.5-1+b2 | - +- amd64 | libtext-qrcode-perl | 0.01-1+b2 | - +- amd64 | libtext-reflow-perl | 1.09-1+b2 | - +- amd64 | libtext-table-perl | 1.123-1 | - +- amd64 | libtext-unaccent-perl | 1.08-1+b3 | - +- amd64 | libtext-vimcolor-perl | 0.11-2 | - +- amd64 | libtextwrap-dev | 0.1-13 | - +- amd64 | libtextwrap1 | 0.1-13 | - +- amd64 | libtfbs-perl | 0.5.svn.20100421-1+b1 | - +- amd64 | libthai-dev | 0.1.18-2 | - +- amd64 | libthai0 | 0.1.18-2 | - +- amd64 | libtheora-bin | 1.1.1+dfsg.1-3.1 | - +- amd64 | libtheora-dbg | 1.1.1+dfsg.1-3.1 | - +- amd64 | libtheora-dev | 1.1.1+dfsg.1-3.1 | - +- amd64 | libtheora-ocaml | 0.3.0-1+b3 | - +- amd64 | libtheora-ocaml-dev | 0.3.0-1+b3 | - +- amd64 | libtheora0 | 1.1.1+dfsg.1-3.1 | - +- amd64 | libthepeg-dev | 1.8.0-1 | - +- amd64 | libthepeg15 | 1.8.0-1 | - +- amd64 | libthreads-perl | 1.85-1+b1 | - +- amd64 | libthreads-shared-perl | 1.40-1+b1 | - +- amd64 | libthreadweaver4 | 4:4.8.4-4 | - +- amd64 | libthunar-vfs-1-2 | 1.2.0-3+b1 | - +- amd64 | libthunar-vfs-1-2-dbg | 1.2.0-3+b1 | - +- amd64 | libthunar-vfs-1-dev | 1.2.0-3+b1 | - +- amd64 | libthunarx-2-0 | 1.2.3-4+b1 | - +- amd64 | libthunarx-2-dev | 1.2.3-4+b1 | - +- amd64 | libticables-dev | 1.2.0-2 | - +- amd64 | libticables2-1 | 1.2.0-2 | - +- amd64 | libticalcs-dev | 1.1.3+dfsg1-1 | - +- amd64 | libticalcs2-7 | 1.1.3+dfsg1-1 | - +- amd64 | libticonv-dev | 1.1.0-1.1 | - +- amd64 | libticonv3 | 1.1.0-1.1 | - +- amd64 | libtidy-0.99-0 | 20091223cvs-1.2 | - +- amd64 | libtidy-dev | 20091223cvs-1.2 | - +- amd64 | libtiff-opengl | 4.0.2-6+deb7u2 | - +- amd64 | libtiff-tools | 4.0.2-6+deb7u2 | - +- amd64 | libtiff4 | 3.9.6-11 | - +- amd64 | libtiff4-dev | 3.9.6-11 | - +- amd64 | libtiff5 | 4.0.2-6+deb7u2 | - +- amd64 | libtiff5-alt-dev | 4.0.2-6+deb7u2 | - +- amd64 | libtiff5-dev | 4.0.2-6+deb7u2 | - +- amd64 | libtiffxx0c2 | 3.9.6-11 | - +- amd64 | libtiffxx5 | 4.0.2-6+deb7u2 | - +- amd64 | libtifiles-dev | 1.1.1-1 | - +- amd64 | libtifiles2-5 | 1.1.1-1 | - +- amd64 | libtimbl3 | 6.4.2-1 | - +- amd64 | libtimbl3-dev | 6.4.2-1 | - +- amd64 | libtimblserver2 | 1.4-2 | - +- amd64 | libtimblserver2-dev | 1.4-2 | - +- amd64 | libtime-warp-perl | 0.5-1+b2 | - +- amd64 | libtime-y2038-perl | 20100403-2+b2 | - +- amd64 | libtinfo-dev | 5.9-10 | - +- amd64 | libtinfo5 | 5.9-10 | - +- amd64 | libtinfo5-dbg | 5.9-10 | - +- amd64 | libtinyxml-dev | 2.6.2-1 | - +- amd64 | libtinyxml2-0.0.0 | 0~git20120518.1.a2ae54e-1 | - +- amd64 | libtinyxml2-dev | 0~git20120518.1.a2ae54e-1 | - +- amd64 | libtinyxml2.6.2 | 2.6.2-1 | - +- amd64 | libtinyxml2.6.2-dbg | 2.6.2-1 | - +- amd64 | libtirpc-dev | 0.2.2-5 | - +- amd64 | libtirpc1 | 0.2.2-5 | - +- amd64 | libtk-img | 1:1.3-release-12 | - +- amd64 | libtk-img-dev | 1:1.3-release-12 | - +- amd64 | libtk-tablematrix-perl | 1.23-6+b1 | - +- amd64 | libtntdb-dev | 1.2-2+b1 | - +- amd64 | libtntdb3 | 1.2-2+b1 | - +- amd64 | libtntnet-dev | 2.1-2+deb7u1 | - +- amd64 | libtntnet10 | 2.1-2+deb7u1 | - +- amd64 | libtododb-dev | 0.11-3 | - +- amd64 | libtododb0 | 0.11-3 | - +- amd64 | libtododb0-dbg | 0.11-3 | - +- amd64 | libtogl1 | 1.7-12 | - +- amd64 | libtokyocabinet-dbg | 1.4.47-2 | - +- amd64 | libtokyocabinet-dev | 1.4.47-2 | - +- amd64 | libtokyocabinet-perl | 1.34-1+b3 | - +- amd64 | libtokyocabinet9 | 1.4.47-2 | - +- amd64 | libtokyotyrant-dev | 1.1.40-4.1+b1 | - +- amd64 | libtokyotyrant3 | 1.1.40-4.1+b1 | - +- amd64 | libtolua++5.1-dev | 1.0.93-3 | - +- amd64 | libtolua-dev | 5.2.0-1 | - +- amd64 | libtomcatjss-java | 6.0.1-1 | - +- amd64 | libtomcrypt-dev | 1.17-3.2 | - +- amd64 | libtomcrypt0 | 1.17-3.2 | - +- amd64 | libtommath-dev | 0.42.0-1 | - +- amd64 | libtommath0 | 0.42.0-1 | - +- amd64 | libtomoe-dev | 0.6.0-1.3 | - +- amd64 | libtomoe0 | 0.6.0-1.3 | - +- amd64 | libtomoyotools3 | 2.5.0-20120414-2 | - +- amd64 | libtonezone-dev | 1:2.5.0.1-2 | - +- amd64 | libtonezone2.0 | 1:2.5.0.1-2 | - +- amd64 | libtool | 2.4.2-1.1 | - +- amd64 | libtorch3-dev | 3.1-2.1 | - +- amd64 | libtorch3c2 | 3.1-2.1 | - +- amd64 | libtorque2 | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | libtorque2-dev | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | libtorrent-dev | 0.13.2-1 | - +- amd64 | libtorrent-rasterbar-dbg | 0.15.10-1+b1 | - +- amd64 | libtorrent-rasterbar-dev | 0.15.10-1+b1 | - +- amd64 | libtorrent-rasterbar6 | 0.15.10-1+b1 | - +- amd64 | libtorrent14 | 0.13.2-1 | - +- amd64 | libtorture-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libtorture0 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | libtotem-dev | 3.0.1-8 | - +- amd64 | libtotem-pg-dev | 1.4.2-3 | - +- amd64 | libtotem-pg4 | 1.4.2-3 | - +- amd64 | libtotem-plparser-dbg | 3.4.2-1 | - +- amd64 | libtotem-plparser-dev | 3.4.2-1 | - +- amd64 | libtotem-plparser17 | 3.4.2-1 | - +- amd64 | libtotem0 | 3.0.1-8 | - +- amd64 | libtowitoko-dev | 2.0.7-8.3 | - +- amd64 | libtowitoko2 | 2.0.7-8.3 | - +- amd64 | libtpl0 | 1.5-2 | - +- amd64 | libtpm-unseal-dev | 1.3.7-1 | - +- amd64 | libtpm-unseal1 | 1.3.7-1 | - +- amd64 | libtqsllib1 | 2.2-5 | - +- amd64 | libtrace-tools | 3.0.14-1 | - +- amd64 | libtrace3 | 3.0.14-1 | - +- amd64 | libtrace3-dev | 3.0.14-1 | - +- amd64 | libtracker-extract-0.14-0 | 0.14.1-3 | - +- amd64 | libtracker-extract-0.14-dev | 0.14.1-3 | - +- amd64 | libtracker-miner-0.14-0 | 0.14.1-3 | - +- amd64 | libtracker-miner-0.14-dev | 0.14.1-3 | - +- amd64 | libtracker-sparql-0.14-0 | 0.14.1-3 | - +- amd64 | libtracker-sparql-0.14-dev | 0.14.1-3 | - +- amd64 | libtransitioner1 | 1.1.7-1 | - +- amd64 | libtransitioner1-dev | 1.1.7-1 | - +- amd64 | libtre-dev | 0.8.0-3 | - +- amd64 | libtre5 | 0.8.0-3 | - +- amd64 | libtreil-dev | 1.8-1.1 | - +- amd64 | libtreil0 | 1.8-1.1 | - +- amd64 | libtritonus-jni | 20070428-9 | - +- amd64 | libtrue-perl | 0.18-1+b2 | - +- amd64 | libtrycatch-perl | 1.003000-1+b1 | - +- amd64 | libts-0.0-0 | 1.0-11 | - +- amd64 | libts-0.0-0-dbg | 1.0-11 | - +- amd64 | libts-bin | 1.0-11 | - +- amd64 | libts-dev | 1.0-11 | - +- amd64 | libtse3-0.3.1c2a | 0.3.1-4.3 | - +- amd64 | libtse3-dev | 0.3.1-4.3 | - +! amd64 | libtsk-dev | 3.2.3-2 | 4.1.2-2~bpo70+1 ++ amd64 | libtsk10 | - | 4.1.2-2~bpo70+1 +- amd64 | libtsk3-3 | 3.2.3-2 | - +- amd64 | libtsk3-3-dbg | 3.2.3-2 | - +- amd64 | libtspi-dev | 0.3.9-3+wheezy1 | - +- amd64 | libtspi1 | 0.3.9-3+wheezy1 | - +- amd64 | libtulip-3.7 | 3.7.0dfsg-4 | - +- amd64 | libtulip-dev | 3.7.0dfsg-4 | - +- amd64 | libtulip-ogdf-3.7 | 3.7.0dfsg-4 | - +- amd64 | libtulip-ogl-3.7 | 3.7.0dfsg-4 | - +- amd64 | libtulip-qt4-3.7 | 3.7.0dfsg-4 | - +- amd64 | libtumbler-1-0 | 0.1.25-1+b1 | - +- amd64 | libtumbler-1-dbg | 0.1.25-1+b1 | - +- amd64 | libtumbler-1-dev | 0.1.25-1+b1 | - +- amd64 | libtuxcap-dev | 1.4.0.dfsg2-2.1 | - +- amd64 | libtuxcap4.0 | 1.4.0.dfsg2-2.1 | - +- amd64 | libtuxcap4.0-dbg | 1.4.0.dfsg2-2.1 | - +- amd64 | libtwin-dev | 12.04.13.17.57-g130ee5f-2 | - +- amd64 | libtwin0 | 12.04.13.17.57-g130ee5f-2 | - +- amd64 | libtwofish-dev | 0.3-3 | - +- amd64 | libtwofish0 | 0.3-3 | - +- amd64 | libtwolame-dev | 0.3.13-1 | - +- amd64 | libtwolame0 | 0.3.13-1 | - +- amd64 | libtxc-dxtn-s2tc-bin | 0~git20110809-3 | - +- amd64 | libtxc-dxtn-s2tc-dev | 0~git20110809-3 | - +- amd64 | libtxc-dxtn-s2tc0 | 0~git20110809-3 | - +- amd64 | libtype-conv-camlp4-dev | 3.0.4-1 | - +- amd64 | libtyxml-ocaml | 2.1-1 | - +- amd64 | libtyxml-ocaml-dev | 2.1-1 | - ++ amd64 | libu1db-dev | - | 0.1.4-2~bpo70+1 ++ amd64 | libu1db1 | - | 0.1.4-2~bpo70+1 +- amd64 | libuchardet-dev | 0.0.1-1 | - +- amd64 | libuchardet0 | 0.0.1-1 | - +- amd64 | libucimf-dev | 2.3.8-4 | - +- amd64 | libucimf0 | 2.3.8-4 | - +- amd64 | libucl-dev | 1.03-5 | - +- amd64 | libucl1 | 1.03-5 | - +- amd64 | libuclmmbase1 | 1.2.16.0-1 | - +- amd64 | libuclmmbase1-dev | 1.2.16.0-1 | - +- amd64 | libucommon-dev | 5.2.2-4 | - +- amd64 | libucommon5 | 5.2.2-4 | - +- amd64 | libucommon5-dbg | 5.2.2-4 | - +- amd64 | libucto1 | 0.5.2-2 | - +- amd64 | libucto1-dev | 0.5.2-2 | - +- amd64 | libudev-dev | 175-7.2 | - +- amd64 | libudev0 | 175-7.2 | - +- amd64 | libudf-dev | 0.83-4 | - +- amd64 | libudf0 | 0.83-4 | - +- amd64 | libudp-tcl | 1.0.8-6 | - +- amd64 | libudt-dev | 4.10+dfsg-1 | - +- amd64 | libudt0 | 4.10+dfsg-1 | - +- amd64 | libudunits2-0 | 2.1.23-3 | - +- amd64 | libudunits2-dev | 2.1.23-3 | - +! amd64 | libuhd-dev | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | libuhd003 | 3.4.2-1 | 3.5.5-1~bpo70+1 +- amd64 | libuim-custom2 | 1:1.8.1-4 | - +- amd64 | libuim-data | 1:1.8.1-4 | - +- amd64 | libuim-dev | 1:1.8.1-4 | - +- amd64 | libuim-scm0 | 1:1.8.1-4 | - +- amd64 | libuim8 | 1:1.8.1-4 | - +- amd64 | libumad2sim0 | 0.5-1.1 | - +- amd64 | libumfpack5.4.0 | 1:3.4.0-3 | - +- amd64 | libumlib-dev | 0.8.2-1 | - +- amd64 | libumlib0 | 0.8.2-1 | - +- amd64 | libunac1 | 1.8.0-6 | - +- amd64 | libunac1-dev | 1.8.0-6 | - +! amd64 | libunbound-dev | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | libunbound2 | 1.4.17-3 | 1.4.21-1~bpo70+1 +- amd64 | libunicap2 | 0.9.12-2 | - +- amd64 | libunicap2-dev | 0.9.12-2 | - +- amd64 | libunicode-collate-perl | 0.89-1 | - +- amd64 | libunicode-japanese-perl | 0.47-1+b2 | - +- amd64 | libunicode-linebreak-perl | 0.0.20120401-1 | - +- amd64 | libunicode-map-perl | 0.112-10+b3 | - +- amd64 | libunicode-map8-perl | 0.13+dfsg-3+b2 | - +- amd64 | libunicode-string-perl | 2.09-5 | - +- amd64 | libuniconf4.6 | 4.6.1-5 | - +- amd64 | libuninameslist-dev | 0.0.20091231-1.1 | - +- amd64 | libuninameslist0 | 0.0.20091231-1.1 | - +- amd64 | libuninum-dev | 2.7-1.1 | - +- amd64 | libuninum5 | 2.7-1.1 | - +- amd64 | libunique-1.0-0 | 1.1.6-4 | - +- amd64 | libunique-3.0-0 | 3.0.2-1 | - +- amd64 | libunique-3.0-dev | 3.0.2-1 | - +- amd64 | libunique-dev | 1.1.6-4 | - +- amd64 | libunistring-dev | 0.9.3-5 | - +- amd64 | libunistring0 | 0.9.3-5 | - +- amd64 | libunittest++-dev | 1.4.0-3 | - +- amd64 | libunix-mknod-perl | 0.04-1+b1 | - +- amd64 | libunix-syslog-perl | 1.1-2+b2 | - +- amd64 | libunixsocket-java | 0.7.3-1 | - +- amd64 | libunshield-dev | 0.6-3 | - +- amd64 | libunshield0 | 0.6-3 | - +- amd64 | libunwind-setjmp0 | 0.99-0.3 | - +- amd64 | libunwind-setjmp0-dev | 0.99-0.3 | - +- amd64 | libunwind7 | 0.99-0.3 | - +- amd64 | libunwind7-dev | 0.99-0.3 | - +- amd64 | libupnp4 | 1.8.0~svn20100507-1.2 | - +- amd64 | libupnp4-dbg | 1.8.0~svn20100507-1.2 | - +- amd64 | libupnp4-dev | 1.8.0~svn20100507-1.2 | - +- amd64 | libupnp6 | 1:1.6.17-1.2 | - +- amd64 | libupnp6-dbg | 1:1.6.17-1.2 | - +- amd64 | libupnp6-dev | 1:1.6.17-1.2 | - +- amd64 | libupower-glib-dev | 0.9.17-1 | - +- amd64 | libupower-glib1 | 0.9.17-1 | - +- amd64 | libupsclient1 | 2.6.4-2.3+deb7u1 | - +- amd64 | libupsclient1-dev | 2.6.4-2.3+deb7u1 | - +- amd64 | libupse-dev | 1.0.0-1 | - +- amd64 | libupse2 | 1.0.0-1 | - +- amd64 | libuptimed-dev | 1:0.3.17-3.1 | - +- amd64 | libuptimed0 | 1:0.3.17-3.1 | - +- amd64 | liburcu-dev | 0.6.7-2 | - +- amd64 | liburcu1 | 0.6.7-2 | - +- amd64 | liburfkill-glib-dev | 0.3.0-1 | - +- amd64 | liburfkill-glib0 | 0.3.0-1 | - +- amd64 | liburfkill-glib0-dbg | 0.3.0-1 | - +- amd64 | liburg0 | 0.8.12-4 | - +- amd64 | liburg0-dev | 0.8.12-4 | - +- amd64 | liburiparser-dev | 0.7.5-1 | - +- amd64 | liburiparser1 | 0.7.5-1 | - +- amd64 | libusb++-0.1-4c2 | 2:0.1.12-20+nmu1 | - +- amd64 | libusb++-dev | 2:0.1.12-20+nmu1 | - +- amd64 | libusb-0.1-4 | 2:0.1.12-20+nmu1 | - +! amd64 | libusb-1.0-0 | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 ++ amd64 | libusb-1.0-0-dbg | - | 2:1.0.17-1~bpo70+1 +! amd64 | libusb-1.0-0-dev | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +- amd64 | libusb-dev | 2:0.1.12-20+nmu1 | - +- amd64 | libusb-ocaml | 1.2.0-2+b7 | - +- amd64 | libusb-ocaml-dev | 1.2.0-2+b7 | - +! amd64 | libusbip-dev | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +- amd64 | libusbmuxd-dev | 1.0.7-2 | - +- amd64 | libusbmuxd1 | 1.0.7-2 | - +- amd64 | libusbmuxd1-dbg | 1.0.7-2 | - +- amd64 | libusbprog-dev | 0.2.0-2 | - +- amd64 | libusbprog0 | 0.2.0-2 | - +! amd64 | libusbredirhost-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libusbredirhost1 | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libusbredirparser-dev | 0.4.3-2 | 0.6-2~bpo70+1 +- amd64 | libusbredirparser0 | 0.4.3-2 | - ++ amd64 | libusbredirparser1 | - | 0.6-2~bpo70+1 +- amd64 | libusbtc08-1 | 1.7.2-1 | - +- amd64 | libusbtc08-dev | 1.7.2-1 | - +- amd64 | libuser | 1:0.56.9.dfsg.1-1.2 | - +- amd64 | libuser1 | 1:0.56.9.dfsg.1-1.2 | - +- amd64 | libuser1-dev | 1:0.56.9.dfsg.1-1.2 | - +- amd64 | libust-dev | 2.0.4-1 | - +- amd64 | libust0 | 2.0.4-1 | - +- amd64 | libustr-1.0-1 | 1.0.4-3 | - +- amd64 | libustr-1.0-1-dbg | 1.0.4-3 | - +- amd64 | libustr-dev | 1.0.4-3 | - +- amd64 | libutempter-dev | 1.1.5-4 | - +- amd64 | libutempter0 | 1.1.5-4 | - +- amd64 | libuu-dev | 0.5.20-3.3 | - +- amd64 | libuu0 | 0.5.20-3.3 | - +- amd64 | libuuid-perl | 0.02-5 | - +- amd64 | libuuid1 | 2.20.1-5.3 | - +- amd64 | libuuidm-ocaml-dev | 0.9.4-1 | - +- amd64 | libv4l-0 | 0.8.8-3 | - +- amd64 | libv4l-dev | 0.8.8-3 | - +- amd64 | libv4lconvert0 | 0.8.8-3 | - ++ amd64 | libv8-3.14-dbg | - | 3.14.5.8-4~bpo7+1 ++ amd64 | libv8-3.14-dev | - | 3.14.5.8-4~bpo7+1 ++ amd64 | libv8-3.14.5 | - | 3.14.5.8-4~bpo7+1 +- amd64 | libv8-3.8.9.20 | 3.8.9.20-2 | - +- amd64 | libv8-dbg | 3.8.9.20-2 | - +! amd64 | libv8-dev | 3.8.9.20-2 | 3.14.5.8-4~bpo7+1 +- amd64 | libv8-i18n-dev | 0~0.svn7-3 | - +- amd64 | libv8-i18n0.0.0 | 0~0.svn7-3 | - +- amd64 | libv8-i18n0.0.0-dbg | 0~0.svn7-3 | - +- amd64 | libva-dev | 1.0.15-4 | - +- amd64 | libva-egl1 | 1.0.15-4 | - +- amd64 | libva-glx1 | 1.0.15-4 | - +- amd64 | libva-tpi1 | 1.0.15-4 | - +- amd64 | libva-x11-1 | 1.0.15-4 | - +- amd64 | libva1 | 1.0.15-4 | - +- amd64 | libvala-0.14-0 | 0.14.2-2 | - +- amd64 | libvala-0.14-0-dbg | 0.14.2-2 | - +- amd64 | libvala-0.14-dev | 0.14.2-2 | - +- amd64 | libvala-0.16-0 | 0.16.1-2 | - +- amd64 | libvala-0.16-0-dbg | 0.16.1-2 | - +- amd64 | libvala-0.16-dev | 0.16.1-2 | - +- amd64 | libvaladoc-dev | 0.3.2~git20120227-1 | - +- amd64 | libvaladoc1 | 0.3.2~git20120227-1 | - +- amd64 | libvalhalla-bin | 2.0.0-4+b1 | - +- amd64 | libvalhalla-dev | 2.0.0-4+b1 | - +- amd64 | libvalhalla2 | 2.0.0-4+b1 | - +- amd64 | libvalhalla2-dbg | 2.0.0-4+b1 | - +- amd64 | libvamp-hostsdk3 | 2.1-1 | - +- amd64 | libvamp-sdk2 | 2.1-1 | - +- amd64 | libvanessa-adt-dev | 0.0.9-1 | - +- amd64 | libvanessa-adt1 | 0.0.9-1 | - +- amd64 | libvanessa-logger-dev | 0.0.10-1.1 | - +- amd64 | libvanessa-logger-sample | 0.0.10-1.1 | - +- amd64 | libvanessa-logger0 | 0.0.10-1.1 | - +- amd64 | libvanessa-socket-dev | 0.0.12-1 | - +- amd64 | libvanessa-socket-pipe | 0.0.12-1 | - +- amd64 | libvanessa-socket2 | 0.0.12-1 | - +- amd64 | libvarconf-1.0-7 | 0.6.7-2 | - +- amd64 | libvarconf-1.0-7-dbg | 0.6.7-2 | - +- amd64 | libvarconf-dev | 0.6.7-2 | - +- amd64 | libvariable-magic-perl | 0.50-1 | - +- amd64 | libvarnishapi-dev | 3.0.2-2+deb7u1 | - +- amd64 | libvarnishapi1 | 3.0.2-2+deb7u1 | - +- amd64 | libvbr-dev | 2.6.8-4 | - +- amd64 | libvbr2 | 2.6.8-4 | - +- amd64 | libvc-dev | 003.dfsg.1-12 | - +- amd64 | libvc0 | 003.dfsg.1-12 | - +- amd64 | libvcdinfo-dev | 0.7.24+dfsg-0.1 | - +- amd64 | libvcdinfo0 | 0.7.24+dfsg-0.1 | - +- amd64 | libvde-dev | 2.3.2-4 | - +- amd64 | libvde0 | 2.3.2-4 | - +- amd64 | libvdeplug-dev | 2.3.2-4 | - +- amd64 | libvdeplug2 | 2.3.2-4 | - +- amd64 | libvdk2-2c2 | 2.4.0-5.3 | - +- amd64 | libvdk2-dbg | 2.4.0-5.3 | - +- amd64 | libvdk2-dev | 2.4.0-5.3 | - +- amd64 | libvdkbuilder2-dev | 2.4.0-4.3 | - +- amd64 | libvdkbuilder2c2 | 2.4.0-4.3 | - +- amd64 | libvdkxdb2-2c2 | 2.4.0-3.4 | - +- amd64 | libvdkxdb2-dev | 2.4.0-3.4 | - +- amd64 | libvdpau-dev | 0.4.1-7 | - +- amd64 | libvdpau1 | 0.4.1-7 | - +- amd64 | libventrilo-dev | 1.2.4-1 | - +- amd64 | libventrilo3-0 | 1.2.4-1 | - +- amd64 | libverbiste-0.1-0 | 0.1.34-1 | - +- amd64 | libverbiste-dev | 0.1.34-1 | - +- amd64 | libverilog-perl | 3.315-1 | - +- amd64 | libversion-perl | 1:0.9900-1 | - +- amd64 | libverto-dev | 0.2.2-1 | - +- amd64 | libverto-glib1 | 0.2.2-1 | - +- amd64 | libverto-libev1 | 0.2.2-1 | - +- amd64 | libverto1 | 0.2.2-1 | - +- amd64 | libvformat-dev | 1.13-10 | - +- amd64 | libvformat0 | 1.13-10 | - +- amd64 | libvhd0 | 2.0.90-1 | - +- amd64 | libvhdio-2.0.90 | 2.0.90-1 | - +- amd64 | libvia-dev | 2.0.4-2 | - +- amd64 | libvia2 | 2.0.4-2 | - +- amd64 | libvibrant6-dev | 6.1.20120620-2 | - +- amd64 | libvibrant6a | 6.1.20120620-2 | - +- amd64 | libvibrant6a-dbg | 6.1.20120620-2 | - +- amd64 | libvideo-capture-v4l-perl | 0.902-3+b2 | - +- amd64 | libvideo-ivtv-perl | 0.13-7 | - +- amd64 | libview-dev | 0.6.6-2.1 | - +- amd64 | libview2 | 0.6.6-2.1 | - +- amd64 | libview2-dbg | 0.6.6-2.1 | - +- amd64 | libvigraimpex-dev | 1.7.1+dfsg1-3 | - +- amd64 | libvigraimpex3 | 1.7.1+dfsg1-3 | - +- amd64 | libvips-dev | 7.28.5-1+deb7u1 | - +- amd64 | libvips-tools | 7.28.5-1+deb7u1 | - +- amd64 | libvips15 | 7.28.5-1+deb7u1 | - +! amd64 | libvirt-bin | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt-dev | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +- amd64 | libvirt-glib-1.0-0 | 0.0.8-1 | - +- amd64 | libvirt-glib-1.0-0-dbg | 0.0.8-1 | - +- amd64 | libvirt-glib-1.0-dev | 0.0.8-1 | - +- amd64 | libvirt-ocaml | 0.6.1.2-1 | - +- amd64 | libvirt-ocaml-dev | 0.6.1.2-1 | - ++ amd64 | libvirt-sanlock | - | 1.2.1-1~bpo70+1 +! amd64 | libvirt0 | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt0-dbg | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +- amd64 | libvirtodbc0 | 6.1.4+dfsg1-7 | - +- amd64 | libvirtuoso5.5-cil | 6.1.4+dfsg1-7 | - +- amd64 | libvisca-dev | 1.0.1-1 | - +- amd64 | libvisca0 | 1.0.1-1 | - +- amd64 | libvisio-0.0-0 | 0.0.17-1 | - +- amd64 | libvisio-dev | 0.0.17-1 | - +- amd64 | libvisio-tools | 0.0.17-1 | - +- amd64 | libvisual-0.4-0 | 0.4.0-5 | - +- amd64 | libvisual-0.4-dev | 0.4.0-5 | - +- amd64 | libvisual-0.4-plugins | 0.4.0.dfsg.1-7 | - +- amd64 | libvisual-projectm | 2.1.0+dfsg-1 | - +! amd64 | libvlc-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvlc5 | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvlccore-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +- amd64 | libvlccore5 | 2.0.3-5 | - ++ amd64 | libvlccore7 | - | 2.1.2-2~bpo70+2 +- amd64 | libvncserver-config | 0.9.9+dfsg-1 | - +- amd64 | libvncserver-dev | 0.9.9+dfsg-1 | - +- amd64 | libvncserver0 | 0.9.9+dfsg-1 | - +- amd64 | libvncserver0-dbg | 0.9.9+dfsg-1 | - +- amd64 | libvo-aacenc-dev | 0.1.2-1 | - +- amd64 | libvo-aacenc0 | 0.1.2-1 | - +- amd64 | libvo-amrwbenc-dev | 0.1.2-1 | - +- amd64 | libvo-amrwbenc0 | 0.1.2-1 | - +- amd64 | libvoaacenc-ocaml | 0.1.0-1+b1 | - +- amd64 | libvoaacenc-ocaml-dev | 0.1.0-1+b1 | - +- amd64 | libvoikko-dev | 3.5-1.1 | - +- amd64 | libvoikko1 | 3.5-1.1 | - +! amd64 | libvolk0.0.0 | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +- amd64 | libvolpack1 | 1.0b3-3 | - +- amd64 | libvolpack1-dev | 1.0b3-3 | - +- amd64 | libvomsapi1 | 2.0.8-1 | - +- amd64 | libvorbis-dbg | 1.3.2-1.3 | - +- amd64 | libvorbis-dev | 1.3.2-1.3 | - +- amd64 | libvorbis-ocaml | 0.6.1-1+b1 | - +- amd64 | libvorbis-ocaml-dev | 0.6.1-1+b1 | - +- amd64 | libvorbis0a | 1.3.2-1.3 | - +- amd64 | libvorbisenc2 | 1.3.2-1.3 | - +- amd64 | libvorbisfile-ruby | 0.2-8.1 | - +- amd64 | libvorbisfile-ruby1.8 | 0.2-8.1 | - +- amd64 | libvorbisfile3 | 1.3.2-1.3 | - +- amd64 | libvorbisidec-dev | 1.0.2+svn18153-0.2 | - +- amd64 | libvorbisidec1 | 1.0.2+svn18153-0.2 | - +- amd64 | libvotequorum-dev | 1.4.2-3 | - +- amd64 | libvotequorum4 | 1.4.2-3 | - +- amd64 | libvpb-dbg | 4.2.55-1 | - +- amd64 | libvpb-dev | 4.2.55-1 | - +- amd64 | libvpb0 | 4.2.55-1 | - +- amd64 | libvpx-dev | 1.1.0-1 | - +- amd64 | libvpx1 | 1.1.0-1 | - +- amd64 | libvpx1-dbg | 1.1.0-1 | - +- amd64 | libvrb0 | 0.5.1-5.1 | - +- amd64 | libvrb0-dev | 0.5.1-5.1 | - +- amd64 | libvte-2.90-9 | 1:0.32.2-1 | - +- amd64 | libvte-2.90-dev | 1:0.32.2-1 | - +- amd64 | libvte-dev | 1:0.28.2-5 | - +- amd64 | libvte0.16-cil | 2.26.0-8 | - +- amd64 | libvte0.16-cil-dev | 2.26.0-8 | - +- amd64 | libvte9 | 1:0.28.2-5 | - +- amd64 | libvtk-java | 5.8.0-13+b1 | - +- amd64 | libvtk5-dev | 5.8.0-13+b1 | - +- amd64 | libvtk5-qt4-dev | 5.8.0-13+b1 | - +- amd64 | libvtk5.8 | 5.8.0-13+b1 | - +- amd64 | libvtk5.8-qt4 | 5.8.0-13+b1 | - +- amd64 | libvtkedge | 0.2.0~20110819-2 | - +- amd64 | libvtkedge-dev | 0.2.0~20110819-2 | - +- amd64 | libvtkgdcm-cil | 2.2.0-14.1 | - +- amd64 | libvtkgdcm-java | 2.2.0-14.1 | - +- amd64 | libvtkgdcm-tools | 2.2.0-14.1 | - +- amd64 | libvtkgdcm2-dev | 2.2.0-14.1 | - +- amd64 | libvtkgdcm2.2 | 2.2.0-14.1 | - +- amd64 | libvxl1-dev | 1.14.0-18 | - +- amd64 | libvxl1.14 | 1.14.0-18 | - +- amd64 | libwacom-dev | 0.6-1 | - +- amd64 | libwacom2 | 0.6-1 | - +- amd64 | libwacom2-dbg | 0.6-1 | - +- amd64 | libwaei-dev | 3.4.3-1 | - +- amd64 | libwaei2 | 3.4.3-1 | - +- amd64 | libwaili-dev | 19990723-20 | - +- amd64 | libwaili1c2 | 19990723-20 | - +- amd64 | libwant-perl | 0.21-1 | - +- amd64 | libwavefront-standalone3.0 | 3.0.2+dfsg-4+b1 | - +- amd64 | libwavefront-standalone3.0-dev | 3.0.2+dfsg-4+b1 | - +- amd64 | libwavpack-dev | 4.60.1-3 | - +- amd64 | libwavpack1 | 4.60.1-3 | - +- amd64 | libwayland-dev | 0.85.0-2 | - +- amd64 | libwayland0 | 0.85.0-2 | - +- amd64 | libwayland0-dbg | 0.85.0-2 | - +! amd64 | libwbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libwbclient0 | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | libwbxml2-0 | 0.10.7-1 | - +- amd64 | libwbxml2-0-dbg | 0.10.7-1 | - +- amd64 | libwbxml2-dev | 0.10.7-1 | - +- amd64 | libwbxml2-utils | 0.10.7-1 | - +- amd64 | libwcs4 | 4.13.4-1 | - +- amd64 | libwcstools-dev | 3.8.5-1 | - +- amd64 | libwcstools0 | 3.8.5-1 | - +- amd64 | libweather-ion6 | 4:4.8.4-6 | - +- amd64 | libwebauth-dev | 4.1.1-2 | - +- amd64 | libwebauth-perl | 4.1.1-2 | - +- amd64 | libwebauth6 | 4.1.1-2 | - +- amd64 | libwebcam0 | 0.2.2-1 | - +- amd64 | libwebcam0-dbg | 0.2.2-1 | - +- amd64 | libwebcam0-dev | 0.2.2-1 | - +- amd64 | libwebkit-dev | 1.8.1-3.4 | - +- amd64 | libwebkitgtk-1.0-0 | 1.8.1-3.4 | - +- amd64 | libwebkitgtk-1.0-0-dbg | 1.8.1-3.4 | - +- amd64 | libwebkitgtk-3.0-0 | 1.8.1-3.4 | - +- amd64 | libwebkitgtk-3.0-0-dbg | 1.8.1-3.4 | - +- amd64 | libwebkitgtk-3.0-dev | 1.8.1-3.4 | - +- amd64 | libwebkitgtk-dev | 1.8.1-3.4 | - +- amd64 | libwebp-dev | 0.1.3-3+nmu1 | - +- amd64 | libwebp2 | 0.1.3-3+nmu1 | - +- amd64 | libwebrtc-audio-processing-0 | 0.1-2 | - +- amd64 | libwebrtc-audio-processing-dev | 0.1-2 | - +- amd64 | libweed-dbg | 1.6.2~ds1-2 | - +- amd64 | libweed-dev | 1.6.2~ds1-2 | - +- amd64 | libweed0 | 1.6.2~ds1-2 | - +- amd64 | libwfmath-0.3-6 | 0.3.12-3 | - +- amd64 | libwfmath-0.3-6-dbg | 0.3.12-3 | - +- amd64 | libwfmath-0.3-dev | 0.3.12-3 | - +- amd64 | libwfut-0.2-1 | 0.2.1-2 | - +- amd64 | libwfut-0.2-1-dbg | 0.2.1-2 | - +- amd64 | libwfut-0.2-dev | 0.2.1-2 | - +- amd64 | libwibble-dev | 0.1.28-1.1 | - +- amd64 | libwildmidi-dev | 0.2.3.4-2.1 | - +- amd64 | libwildmidi1 | 0.2.3.4-2.1 | - +! amd64 | libwin-hivex-perl | 1.3.6-2 | 1.3.9-1~bpo70+1 +- amd64 | libwind0-heimdal | 1.6~git20120403+dfsg1-2 | - +- amd64 | libwings-dev | 0.95.3-2 | - +- amd64 | libwings2 | 0.95.3-2 | - +! amd64 | libwireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- amd64 | libwireshark2 | 1.8.2-5wheezy9 | - ++ amd64 | libwireshark3 | - | 1.10.5-1~bpo70+1 +! amd64 | libwiretap-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- amd64 | libwiretap2 | 1.8.2-5wheezy9 | - ++ amd64 | libwiretap3 | - | 1.10.5-1~bpo70+1 +- amd64 | libwmf-bin | 0.2.8.4-10.3 | - +- amd64 | libwmf-dev | 0.2.8.4-10.3 | - +- amd64 | libwmf0.2-7 | 0.2.8.4-10.3 | - +- amd64 | libwnck-3-0 | 3.4.2-1 | - +- amd64 | libwnck-3-dev | 3.4.2-1 | - +- amd64 | libwnck-dev | 2.30.7-1 | - +- amd64 | libwnck1.0-cil-dev | 2.26.0-8 | - +- amd64 | libwnck2.20-cil | 2.26.0-8 | - +- amd64 | libwnck22 | 2.30.7-1 | - +- amd64 | libwnn-dev | 1.1.1~a021+cvs20100325-6 | - +- amd64 | libwnn0 | 1.1.1~a021+cvs20100325-6 | - +- amd64 | libwnn6-1 | 1.0.0-14.2+b1 | - +- amd64 | libwnn6-dev | 1.0.0-14.2+b1 | - +- amd64 | libwpd-0.9-9 | 0.9.4-3 | - +- amd64 | libwpd-dev | 0.9.4-3 | - +- amd64 | libwpd-tools | 0.9.4-3 | - +- amd64 | libwpg-0.2-2 | 0.2.1-1 | - +- amd64 | libwpg-dev | 0.2.1-1 | - +- amd64 | libwpg-tools | 0.2.1-1 | - +- amd64 | libwps-0.2-2 | 0.2.7-1 | - +- amd64 | libwps-dev | 0.2.7-1 | - +- amd64 | libwps-tools | 0.2.7-1 | - +- amd64 | libwrap-ruby1.8 | 0.6-3 | - +- amd64 | libwrap0 | 7.6.q-24 | - +- amd64 | libwrap0-dev | 7.6.q-24 | - +- amd64 | libwraster3 | 0.95.3-2 | - +- amd64 | libwraster3-dev | 0.95.3-2 | - +- amd64 | libwreport-dev | 2.4-1 | - +- amd64 | libwreport2 | 2.4-1 | - +! amd64 | libwsutil-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- amd64 | libwsutil2 | 1.8.2-5wheezy9 | - ++ amd64 | libwsutil3 | - | 1.10.5-1~bpo70+1 +- amd64 | libwt-dbg | 3.2.1-2 | - +- amd64 | libwt-dev | 3.2.1-2 | - +- amd64 | libwt32 | 3.2.1-2 | - +- amd64 | libwtdbo-dev | 3.2.1-2 | - +- amd64 | libwtdbo32 | 3.2.1-2 | - +- amd64 | libwtdbofirebird-dev | 3.2.1-2 | - +- amd64 | libwtdbofirebird32 | 3.2.1-2 | - +- amd64 | libwtdbopostgres-dev | 3.2.1-2 | - +- amd64 | libwtdbopostgres32 | 3.2.1-2 | - +- amd64 | libwtdbosqlite-dev | 3.2.1-2 | - +- amd64 | libwtdbosqlite32 | 3.2.1-2 | - +- amd64 | libwtext-dev | 3.2.1-2 | - +- amd64 | libwtext32 | 3.2.1-2 | - +- amd64 | libwtfcgi-dev | 3.2.1-2 | - +- amd64 | libwtfcgi32 | 3.2.1-2 | - +- amd64 | libwthttp-dev | 3.2.1-2 | - +- amd64 | libwthttp32 | 3.2.1-2 | - +- amd64 | libwttest-dev | 3.2.1-2 | - +- amd64 | libwttest2 | 3.2.1-2 | - +- amd64 | libwutil2 | 0.95.3-2 | - +- amd64 | libwv-1.2-4 | 1.2.9-3 | - +- amd64 | libwv-dev | 1.2.9-3 | - +- amd64 | libwv2-4 | 0.4.2.dfsg.2-1~deb7u1 | - +- amd64 | libwv2-dev | 0.4.2.dfsg.2-1~deb7u1 | - +- amd64 | libwvstreams-dev | 4.6.1-5 | - +- amd64 | libwvstreams4.6-base | 4.6.1-5 | - +- amd64 | libwvstreams4.6-extras | 4.6.1-5 | - +- amd64 | libwww-curl-perl | 4.15-1+b2 | - +- amd64 | libwx-perl | 1:0.9909-1 | - +- amd64 | libwx-scintilla-perl | 0.38-1 | - +- amd64 | libwxbase2.8-0 | 2.8.12.1-12 | - +- amd64 | libwxbase2.8-dbg | 2.8.12.1-12 | - +- amd64 | libwxbase2.8-dev | 2.8.12.1-12 | - +- amd64 | libwxgtk2.8-0 | 2.8.12.1-12 | - +- amd64 | libwxgtk2.8-dbg | 2.8.12.1-12 | - +- amd64 | libwxgtk2.8-dev | 2.8.12.1-12 | - +! amd64 | libwxsmithlib-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libwxsmithlib0 | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libwxsmithlib0-dev | 10.05-2.1 | 13.12-1~bpo70+1 +- amd64 | libwxsqlite3-2.8-0 | 3.0.0.1~dfsg0-2 | - +- amd64 | libwxsqlite3-2.8-dev | 3.0.0.1~dfsg0-2 | - +- amd64 | libwxsvg-dbg | 2:1.1.8~dfsg0-2 | - +- amd64 | libwxsvg-dev | 2:1.1.8~dfsg0-2 | - +- amd64 | libwxsvg0 | 2:1.1.8~dfsg0-2 | - +- amd64 | libx11-6 | 2:1.5.0-1+deb7u1 | - +- amd64 | libx11-6-dbg | 2:1.5.0-1+deb7u1 | - +- amd64 | libx11-dev | 2:1.5.0-1+deb7u1 | - +- amd64 | libx11-guitest-perl | 0.25-2 | - +- amd64 | libx11-xcb-dev | 2:1.5.0-1+deb7u1 | - +- amd64 | libx11-xcb1 | 2:1.5.0-1+deb7u1 | - +- amd64 | libx11-xcb1-dbg | 2:1.5.0-1+deb7u1 | - +- amd64 | libx264-123 | 2:0.123.2189+git35cf912-1 | - +- amd64 | libx264-dev | 2:0.123.2189+git35cf912-1 | - +- amd64 | libx52pro-dev | 0.1.1-2.1 | - +- amd64 | libx52pro0 | 0.1.1-2.1 | - +- amd64 | libx86-1 | 1.1+ds1-10 | - +- amd64 | libx86-dbg | 1.1+ds1-10 | - +- amd64 | libx86-dev | 1.1+ds1-10 | - +- amd64 | libxalan110 | 1.10-6 | - +- amd64 | libxalan110-dev | 1.10-6 | - +! amd64 | libxapian-dev | 1.2.12-2 | 1.2.16-2~bpo70+1 +- amd64 | libxapian-ruby1.8 | 1.2.12-2 | - +- amd64 | libxapian-ruby1.9.1 | 1.2.12-2 | - +! amd64 | libxapian22 | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxapian22-dbg | 1.2.12-2 | 1.2.16-2~bpo70+1 +- amd64 | libxatracker-dev | 8.0.5-4+deb7u2 | - +- amd64 | libxatracker1 | 8.0.5-4+deb7u2 | - +- amd64 | libxatracker1-dbg | 8.0.5-4+deb7u2 | - +- amd64 | libxau-dev | 1:1.0.7-1 | - +- amd64 | libxau6 | 1:1.0.7-1 | - +- amd64 | libxau6-dbg | 1:1.0.7-1 | - +- amd64 | libxaw3dxft6 | 2.9.1.4-3+b2 | - +- amd64 | libxaw7 | 2:1.0.10-2 | - +- amd64 | libxaw7-dbg | 2:1.0.10-2 | - +- amd64 | libxaw7-dev | 2:1.0.10-2 | - +- amd64 | libxbae-dev | 4.60.4-3 | - +- amd64 | libxbae4 | 4.60.4-3 | - +- amd64 | libxbase2.0-0 | 2.0.0-8.5 | - +- amd64 | libxbase2.0-bin | 2.0.0-8.5 | - +- amd64 | libxbase2.0-dev | 2.0.0-8.5 | - +- amd64 | libxcb-composite0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-composite0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-composite0-dev | 1.8.1-2+deb7u1 | - ++ amd64 | libxcb-cursor-dev | - | 0.1.1-2~bpo70+1 ++ amd64 | libxcb-cursor0 | - | 0.1.1-2~bpo70+1 +- amd64 | libxcb-damage0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-damage0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-damage0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-dpms0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-dpms0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-dpms0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-dri2-0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-dri2-0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-dri2-0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-ewmh-dev | 0.3.9-2 | - +- amd64 | libxcb-ewmh2 | 0.3.9-2 | - +- amd64 | libxcb-glx0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-glx0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-glx0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-icccm4 | 0.3.9-2 | - +- amd64 | libxcb-icccm4-dev | 0.3.9-2 | - +- amd64 | libxcb-image0 | 0.3.9-1 | - +- amd64 | libxcb-image0-dev | 0.3.9-1 | - +- amd64 | libxcb-keysyms1 | 0.3.9-1 | - +- amd64 | libxcb-keysyms1-dev | 0.3.9-1 | - +- amd64 | libxcb-randr0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-randr0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-randr0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-record0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-record0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-record0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-render-util0 | 0.3.8-1.1 | - +- amd64 | libxcb-render-util0-dev | 0.3.8-1.1 | - +- amd64 | libxcb-render0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-render0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-render0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-res0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-res0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-res0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-screensaver0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-screensaver0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-screensaver0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-shape0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-shape0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-shape0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-shm0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-shm0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-shm0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-sync0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-sync0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-sync0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-util0 | 0.3.8-2 | - +- amd64 | libxcb-util0-dev | 0.3.8-2 | - +- amd64 | libxcb-xevie0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xevie0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xevie0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xf86dri0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xf86dri0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xf86dri0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xfixes0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xfixes0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xfixes0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xinerama0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xinerama0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xinerama0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xprint0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xprint0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xprint0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xtest0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xtest0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xtest0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xv0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xv0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xv0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xvmc0 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xvmc0-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb-xvmc0-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcb1 | 1.8.1-2+deb7u1 | - +- amd64 | libxcb1-dbg | 1.8.1-2+deb7u1 | - +- amd64 | libxcb1-dev | 1.8.1-2+deb7u1 | - +- amd64 | libxcomp-dev | 3.5.0.12-1 | - +- amd64 | libxcomp3 | 3.5.0.12-1 | - +- amd64 | libxcomposite-dev | 1:0.4.3-2 | - +- amd64 | libxcomposite1 | 1:0.4.3-2 | - +- amd64 | libxcomposite1-dbg | 1:0.4.3-2 | - +- amd64 | libxcp-ocaml | 0.5.2-3+b1 | - +- amd64 | libxcp-ocaml-dev | 0.5.2-3+b1 | - +- amd64 | libxcrypt-dev | 1:2.4-3 | - +- amd64 | libxcrypt1 | 1:2.4-3 | - +- amd64 | libxcursor-dev | 1:1.1.13-1+deb7u1 | - +- amd64 | libxcursor1 | 1:1.1.13-1+deb7u1 | - +- amd64 | libxcursor1-dbg | 1:1.1.13-1+deb7u1 | - +- amd64 | libxdamage-dev | 1:1.1.3-2 | - +- amd64 | libxdamage1 | 1:1.1.3-2 | - +- amd64 | libxdamage1-dbg | 1:1.1.3-2 | - +- amd64 | libxdb-dev | 1.2.0-7.2 | - +- amd64 | libxdb1 | 1.2.0-7.2 | - +- amd64 | libxdelta2 | 1.1.3-9 | - +- amd64 | libxdelta2-dev | 1.1.3-9 | - +- amd64 | libxdffileio-dev | 0.3-1 | - +- amd64 | libxdffileio0 | 0.3-1 | - +- amd64 | libxdffileio0-dbg | 0.3-1 | - +- amd64 | libxdg-basedir-dev | 1.1.1-2 | - +- amd64 | libxdg-basedir1 | 1.1.1-2 | - +- amd64 | libxdg-basedir1-dbg | 1.1.1-2 | - +- amd64 | libxdmcp-dev | 1:1.1.1-1 | - +- amd64 | libxdmcp6 | 1:1.1.1-1 | - +- amd64 | libxdmcp6-dbg | 1:1.1.1-1 | - +- amd64 | libxdmf-dev | 2.1.dfsg.1-5 | - +- amd64 | libxdmf2 | 2.1.dfsg.1-5 | - +- amd64 | libxdo-dev | 1:2.20100701.2961-3+deb7u3 | - +- amd64 | libxdo2 | 1:2.20100701.2961-3+deb7u3 | - +- amd64 | libxdot4 | 2.26.3-14+deb7u1 | - +- amd64 | libxen-4.1 | 4.1.4-3+deb7u1 | - +- amd64 | libxen-dev | 4.1.4-3+deb7u1 | - +- amd64 | libxen-ocaml | 4.1.4-3+deb7u1 | - +- amd64 | libxen-ocaml-dev | 4.1.4-3+deb7u1 | - +- amd64 | libxenapi-ocaml-dev | 1.3.2-15 | - +- amd64 | libxenomai-dev | 2.6.0-2 | - +- amd64 | libxenomai1 | 2.6.0-2 | - +- amd64 | libxenstore3.0 | 4.1.4-3+deb7u1 | - +- amd64 | libxerces-c-dev | 3.1.1-3 | - +- amd64 | libxerces-c-samples | 3.1.1-3 | - +- amd64 | libxerces-c2-dev | 2.8.0+deb1-3 | - +- amd64 | libxerces-c28 | 2.8.0+deb1-3 | - +- amd64 | libxerces-c3.1 | 3.1.1-3 | - +- amd64 | libxerces2-java-gcj | 2.11.0-6 | - +- amd64 | libxext-dev | 2:1.3.1-2+deb7u1 | - +- amd64 | libxext6 | 2:1.3.1-2+deb7u1 | - +- amd64 | libxext6-dbg | 2:1.3.1-2+deb7u1 | - +- amd64 | libxfce4menu-0.1-0 | 4.6.2-1 | - +- amd64 | libxfce4menu-0.1-dbg | 4.6.2-1 | - +- amd64 | libxfce4menu-0.1-dev | 4.6.2-1 | - +- amd64 | libxfce4ui-1-0 | 4.8.1-1 | - +- amd64 | libxfce4ui-1-dbg | 4.8.1-1 | - +- amd64 | libxfce4ui-1-dev | 4.8.1-1 | - +- amd64 | libxfce4util-bin | 4.8.2-1 | - +- amd64 | libxfce4util-dev | 4.8.2-1 | - +- amd64 | libxfce4util4 | 4.8.2-1 | - +- amd64 | libxfce4util4-dbg | 4.8.2-1 | - +- amd64 | libxfcegui4-4 | 4.8.1-5 | - +- amd64 | libxfcegui4-4-dbg | 4.8.1-5 | - +- amd64 | libxfcegui4-dev | 4.8.1-5 | - +- amd64 | libxfconf-0-2 | 4.8.1-1 | - +- amd64 | libxfconf-0-2-dbg | 4.8.1-1 | - +- amd64 | libxfconf-0-dev | 4.8.1-1 | - +- amd64 | libxfixes-dev | 1:5.0-4+deb7u1 | - +- amd64 | libxfixes3 | 1:5.0-4+deb7u1 | - +- amd64 | libxfixes3-dbg | 1:5.0-4+deb7u1 | - +- amd64 | libxfont-dev | 1:1.4.5-3 | - +- amd64 | libxfont1 | 1:1.4.5-3 | - +- amd64 | libxfont1-dbg | 1:1.4.5-3 | - +- amd64 | libxft-dev | 2.3.1-1 | - +- amd64 | libxft2 | 2.3.1-1 | - +- amd64 | libxft2-dbg | 2.3.1-1 | - +- amd64 | libxi-dev | 2:1.6.1-1+deb7u1 | - +- amd64 | libxi6 | 2:1.6.1-1+deb7u1 | - +- amd64 | libxi6-dbg | 2:1.6.1-1+deb7u1 | - +- amd64 | libxine-dev | 1.1.21-1+b1 | - +- amd64 | libxine1 | 1.1.21-1+b1 | - +- amd64 | libxine1-bin | 1.1.21-1+b1 | - +- amd64 | libxine1-console | 1.1.21-1+b1 | - +- amd64 | libxine1-dbg | 1.1.21-1+b1 | - +- amd64 | libxine1-ffmpeg | 1.1.21-1+b1 | - +- amd64 | libxine1-gnome | 1.1.21-1+b1 | - +- amd64 | libxine1-misc-plugins | 1.1.21-1+b1 | - +- amd64 | libxine1-x | 1.1.21-1+b1 | - +- amd64 | libxine2 | 1.2.2-4 | - +- amd64 | libxine2-bin | 1.2.2-4 | - +- amd64 | libxine2-console | 1.2.2-4 | - +- amd64 | libxine2-dbg | 1.2.2-4 | - +- amd64 | libxine2-dev | 1.2.2-4 | - +- amd64 | libxine2-ffmpeg | 1.2.2-4 | - +- amd64 | libxine2-gnome | 1.2.2-4 | - +- amd64 | libxine2-misc-plugins | 1.2.2-4 | - +- amd64 | libxine2-vdr | 1.2.2-4 | - +- amd64 | libxine2-x | 1.2.2-4 | - +- amd64 | libxine2-xvdr | 1.0.7+cvs20120609.1902-1 | - +- amd64 | libxineliboutput-fbfe | 1.0.7+cvs20120609.1902-1 | - +- amd64 | libxineliboutput-sxfe | 1.0.7+cvs20120609.1902-1 | - +- amd64 | libxinerama-dev | 2:1.1.2-1+deb7u1 | - +- amd64 | libxinerama1 | 2:1.1.2-1+deb7u1 | - +- amd64 | libxinerama1-dbg | 2:1.1.2-1+deb7u1 | - +- amd64 | libxkbfile-dev | 1:1.0.8-1 | - +- amd64 | libxkbfile1 | 1:1.0.8-1 | - +- amd64 | libxkbfile1-dbg | 1:1.0.8-1 | - +- amd64 | libxklavier-dev | 5.2.1-1 | - +- amd64 | libxklavier16 | 5.2.1-1 | - +- amd64 | libxml++2.6-2 | 2.34.2-1 | - +- amd64 | libxml++2.6-dbg | 2.34.2-1 | - +- amd64 | libxml++2.6-dev | 2.34.2-1 | - +- amd64 | libxml-bare-perl | 0.47-1 | - +- amd64 | libxml-commons-resolver1.1-java-gcj | 1.2-7 | - +- amd64 | libxml-easy-perl | 0.009-1+b1 | - +- amd64 | libxml-libxml-perl | 2.0001+dfsg-1 | - +- amd64 | libxml-libxslt-perl | 1.77-1 | - +- amd64 | libxml-light-ocaml | 2.2-15 | - +- amd64 | libxml-light-ocaml-dev | 2.2-15 | - +- amd64 | libxml-parser-perl | 2.41-1+b1 | - +- amd64 | libxml-quote-perl | 1.02-2+b2 | - +- amd64 | libxml-sax-expatxs-perl | 1.32-1+b2 | - +! amd64 | libxml-security-c-dev | 1.6.1-5+deb7u2 | 1.7.2-2~bpo70+1 +- amd64 | libxml-security-c16 | 1.6.1-5+deb7u2 | - ++ amd64 | libxml-security-c17 | - | 1.7.2-2~bpo70+1 +- amd64 | libxml-xerces-perl | 2.7.0-0+deb1-3 | - +- amd64 | libxml2 | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | libxml2-dbg | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | libxml2-dev | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | libxml2-utils | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | libxml2-utils-dbg | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | libxmlada4.1 | 4.1-2 | - +- amd64 | libxmlada4.1-dbg | 4.1-2 | - +- amd64 | libxmlada4.1-dev | 4.1-2 | - +- amd64 | libxmlezout-dbg | 1.06.1-5 | - +- amd64 | libxmlezout1 | 1.06.1-5 | - +- amd64 | libxmlezout2-dev | 1.06.1-5 | - +- amd64 | libxmlm-ocaml-dev | 1.1.0-1 | - +- amd64 | libxmlplaylist-ocaml-dev | 0.1.3-1+b2 | - +- amd64 | libxmlrpc-c++4 | 1.16.33-3.2 | - +- amd64 | libxmlrpc-c++4-dev | 1.16.33-3.2 | - +- amd64 | libxmlrpc-core-c3 | 1.16.33-3.2 | - +- amd64 | libxmlrpc-core-c3-dev | 1.16.33-3.2 | - +- amd64 | libxmlrpc-epi-dev | 0.54.2-1 | - +- amd64 | libxmlrpc-epi0 | 0.54.2-1 | - +- amd64 | libxmlrpc-epi0-dbg | 0.54.2-1 | - +- amd64 | libxmlrpc-light-ocaml-dev | 0.6.1-3+b5 | - +- amd64 | libxmlsec1 | 1.2.18-2 | - +- amd64 | libxmlsec1-dev | 1.2.18-2 | - +- amd64 | libxmlsec1-gcrypt | 1.2.18-2 | - +- amd64 | libxmlsec1-gnutls | 1.2.18-2 | - +- amd64 | libxmlsec1-nss | 1.2.18-2 | - +- amd64 | libxmlsec1-openssl | 1.2.18-2 | - +- amd64 | libxmltok1 | 1.2-3 | - +- amd64 | libxmltok1-dev | 1.2-3 | - +! amd64 | libxmltooling-dev | 1.4.2-5 | 1.5.3-2~bpo70+1 +- amd64 | libxmltooling5 | 1.4.2-5 | - ++ amd64 | libxmltooling6 | - | 1.5.3-2~bpo70+1 +- amd64 | libxmmsclient++-dev | 0.8+dfsg-4 | - +- amd64 | libxmmsclient++-glib-dev | 0.8+dfsg-4 | - +- amd64 | libxmmsclient++-glib1 | 0.8+dfsg-4 | - +- amd64 | libxmmsclient++4 | 0.8+dfsg-4 | - +- amd64 | libxmmsclient-dev | 0.8+dfsg-4 | - +- amd64 | libxmmsclient-glib-dev | 0.8+dfsg-4 | - +- amd64 | libxmmsclient-glib1 | 0.8+dfsg-4 | - +- amd64 | libxmmsclient6 | 0.8+dfsg-4 | - +- amd64 | libxmpi4 | 2.2.3b8-13 | - +- amd64 | libxmpi4-dev | 2.2.3b8-13 | - +- amd64 | libxmu-dev | 2:1.1.1-1 | - +- amd64 | libxmu6 | 2:1.1.1-1 | - +- amd64 | libxmu6-dbg | 2:1.1.1-1 | - +- amd64 | libxmuu-dev | 2:1.1.1-1 | - +- amd64 | libxmuu1 | 2:1.1.1-1 | - +- amd64 | libxmuu1-dbg | 2:1.1.1-1 | - +- amd64 | libxnee-dbg | 3.13-1 | - +- amd64 | libxnee-dev | 3.13-1 | - +- amd64 | libxnee0 | 3.13-1 | - +- amd64 | libxneur | 0.15.0-1.1 | - +- amd64 | libxneur-dev | 0.15.0-1.1 | - ++ amd64 | libxnvctrl-dev | - | 319.72-1~bpo70+1 ++ amd64 | libxnvctrl0 | - | 319.72-1~bpo70+1 +- amd64 | libxosd-dev | 2.2.14-2 | - +- amd64 | libxosd2 | 2.2.14-2 | - +- amd64 | libxp-dev | 1:1.0.1-2+deb7u1 | - +- amd64 | libxp6 | 1:1.0.1-2+deb7u1 | - +- amd64 | libxp6-dbg | 1:1.0.1-2+deb7u1 | - +- amd64 | libxpa-dev | 2.1.14-2 | - +- amd64 | libxpa1 | 2.1.14-2 | - +- amd64 | libxplc0.3.13 | 0.3.13-3 | - +- amd64 | libxplc0.3.13-dev | 0.3.13-3 | - +- amd64 | libxpm-dev | 1:3.5.10-1 | - +- amd64 | libxpm4 | 1:3.5.10-1 | - +- amd64 | libxpm4-dbg | 1:3.5.10-1 | - +- amd64 | libxqdbm-dev | 1.8.78-2 | - +- amd64 | libxqdbm3c2 | 1.8.78-2 | - +- amd64 | libxqilla-dev | 2.3.0-1 | - +- amd64 | libxqilla6 | 2.3.0-1 | - +- amd64 | libxr1 | 1.0-2.1 | - +- amd64 | libxr1-dbg | 1.0-2.1 | - +- amd64 | libxr1-dev | 1.0-2.1 | - +- amd64 | libxrandr-dev | 2:1.3.2-2+deb7u1 | - +- amd64 | libxrandr2 | 2:1.3.2-2+deb7u1 | - +- amd64 | libxrandr2-dbg | 2:1.3.2-2+deb7u1 | - +- amd64 | libxrender-dev | 1:0.9.7-1+deb7u1 | - +- amd64 | libxrender1 | 1:0.9.7-1+deb7u1 | - +- amd64 | libxrender1-dbg | 1:0.9.7-1+deb7u1 | - +- amd64 | libxres-dev | 2:1.0.6-1+deb7u1 | - +- amd64 | libxres1 | 2:1.0.6-1+deb7u1 | - +- amd64 | libxres1-dbg | 2:1.0.6-1+deb7u1 | - +- amd64 | libxsettings-client-dev | 0.17-6 | - +- amd64 | libxsettings-client0 | 0.17-6 | - +- amd64 | libxsettings-client0-dbg | 0.17-6 | - +- amd64 | libxsettings-dev | 0.11-3 | - +- amd64 | libxsettings0 | 0.11-3 | - +- amd64 | libxsettings0-dbg | 0.11-3 | - +- amd64 | libxslt1-dbg | 1.1.26-14.1 | - +- amd64 | libxslt1-dev | 1.1.26-14.1 | - +- amd64 | libxslt1.1 | 1.1.26-14.1 | - +- amd64 | libxss-dev | 1:1.2.2-1 | - +- amd64 | libxss1 | 1:1.2.2-1 | - +- amd64 | libxss1-dbg | 1:1.2.2-1 | - +- amd64 | libxstr-ocaml-dev | 0.2.1-21+b3 | - +- amd64 | libxt-dev | 1:1.1.3-1+deb7u1 | - +- amd64 | libxt6 | 1:1.1.3-1+deb7u1 | - +- amd64 | libxt6-dbg | 1:1.1.3-1+deb7u1 | - +- amd64 | libxtst-dev | 2:1.2.1-1+deb7u1 | - +- amd64 | libxtst6 | 2:1.2.1-1+deb7u1 | - +- amd64 | libxtst6-dbg | 2:1.2.1-1+deb7u1 | - ++ amd64 | libxtuplecommon-dev | - | 4.1.0-3~bpo70+1 ++ amd64 | libxtuplecommon1 | - | 4.1.0-3~bpo70+1 +- amd64 | libxv-dev | 2:1.0.7-1+deb7u1 | - +- amd64 | libxv1 | 2:1.0.7-1+deb7u1 | - +- amd64 | libxv1-dbg | 2:1.0.7-1+deb7u1 | - ++ amd64 | libxvbaw-dev | - | 1:13.12-4~bpo70+1 +- amd64 | libxvidcore-dev | 2:1.3.2-9 | - +- amd64 | libxvidcore4 | 2:1.3.2-9 | - +- amd64 | libxvmc-dev | 2:1.0.7-1+deb7u2 | - +- amd64 | libxvmc1 | 2:1.0.7-1+deb7u2 | - +- amd64 | libxvmc1-dbg | 2:1.0.7-1+deb7u2 | - +- amd64 | libxxf86dga-dev | 2:1.1.3-2+deb7u1 | - +- amd64 | libxxf86dga1 | 2:1.1.3-2+deb7u1 | - +- amd64 | libxxf86dga1-dbg | 2:1.1.3-2+deb7u1 | - +- amd64 | libxxf86vm-dev | 1:1.1.2-1+deb7u1 | - +- amd64 | libxxf86vm1 | 1:1.1.2-1+deb7u1 | - +- amd64 | libxxf86vm1-dbg | 1:1.1.2-1+deb7u1 | - +- amd64 | libxy-bin | 0.8-1+b1 | - +- amd64 | libxy-dev | 0.8-1+b1 | - +- amd64 | libxy3 | 0.8-1+b1 | - ++ amd64 | libyade | - | 1.05.0-2~bpo70+1 +- amd64 | libyahoo2-11 | 1.0.1-1 | - +- amd64 | libyahoo2-dev | 1.0.1-1 | - +- amd64 | libyajl-dev | 2.0.4-2 | - +- amd64 | libyajl2 | 2.0.4-2 | - +- amd64 | libyajl2-dbg | 2.0.4-2 | - +- amd64 | libyaml-0-2 | 0.1.4-2+deb7u2 | - +- amd64 | libyaml-0-2-dbg | 0.1.4-2+deb7u2 | - +- amd64 | libyaml-cpp-dev | 0.3.0-1 | - +- amd64 | libyaml-cpp0.3 | 0.3.0-1 | - +- amd64 | libyaml-dev | 0.1.4-2+deb7u2 | - +- amd64 | libyaml-libyaml-perl | 0.38-3 | - +- amd64 | libyaml-syck-perl | 1.20-1 | - ++ amd64 | libyara-dev | - | 2.0.0-2~bpo70+1 ++ amd64 | libyara2 | - | 2.0.0-2~bpo70+1 +- amd64 | libyate4.1.0 | 4.1.0-1~dfsg-3 | - +- amd64 | libyaz4 | 4.2.30-2 | - +- amd64 | libyaz4-dev | 4.2.30-2 | - +- amd64 | libyelp-dev | 3.4.2-1+b1 | - +- amd64 | libyelp0 | 3.4.2-1+b1 | - +- amd64 | libygl4 | 4.2e-4 | - +- amd64 | libygl4-dev | 4.2e-4 | - +- amd64 | libykclient-dev | 2.6-1 | - +- amd64 | libykclient3 | 2.6-1 | - +- amd64 | libykpers-1-1 | 1.7.0-1 | - +- amd64 | libykpers-1-dev | 1.7.0-1 | - +- amd64 | libyojson-ocaml | 1.0.3-1 | - +- amd64 | libyojson-ocaml-dev | 1.0.3-1 | - +- amd64 | libytnef0 | 1.5-4 | - +- amd64 | libytnef0-dev | 1.5-4 | - +- amd64 | libyubikey-dev | 1.8-1 | - +- amd64 | libyubikey0 | 1.8-1 | - +- amd64 | libz80ex-dev | 1.1.19-3 | - +- amd64 | libz80ex1 | 1.1.19-3 | - +- amd64 | libzarith-ocaml | 1.1-2 | - +- amd64 | libzarith-ocaml-dev | 1.1-2 | - +- amd64 | libzbar-dev | 0.10+doc-8 | - +- amd64 | libzbar0 | 0.10+doc-8 | - +- amd64 | libzbargtk-dev | 0.10+doc-8 | - +- amd64 | libzbargtk0 | 0.10+doc-8 | - +- amd64 | libzbarqt-dev | 0.10+doc-8 | - +- amd64 | libzbarqt0 | 0.10+doc-8 | - +- amd64 | libzeep-dev | 2.9.0-2 | - +- amd64 | libzeep2.9 | 2.9.0-2 | - +- amd64 | libzeitgeist-1.0-1 | 0.3.18-1 | - +- amd64 | libzeitgeist-1.0-1-dbg | 0.3.18-1 | - +- amd64 | libzeitgeist-dev | 0.3.18-1 | - +- amd64 | libzen-dev | 0.4.27-2 | - +- amd64 | libzen0 | 0.4.27-2 | - +- amd64 | libzephyr-dev | 3.0.2-2 | - +- amd64 | libzephyr4 | 3.0.2-2 | - +- amd64 | libzephyr4-krb5 | 3.0.2-2 | - +- amd64 | libzerg-perl | 1.0.4-2+b1 | - +- amd64 | libzerg0 | 1.0.7-3 | - +- amd64 | libzerg0-dbg | 1.0.7-3 | - +- amd64 | libzerg0-dev | 1.0.7-3 | - +- amd64 | libzeroc-ice-ruby1.8 | 3.4.2-8.2 | - +- amd64 | libzeroc-ice34 | 3.4.2-8.2 | - +- amd64 | libzeroc-ice34-dbg | 3.4.2-8.2 | - +- amd64 | libzeroc-ice34-dev | 3.4.2-8.2 | - +- amd64 | libzinnia-dev | 0.06-1+b1 | - +- amd64 | libzinnia0 | 0.06-1+b1 | - +- amd64 | libzinnia0-dbg | 0.06-1+b1 | - +- amd64 | libzip-dev | 0.10.1-1.1 | - +- amd64 | libzip-ocaml | 1.04-6+b3 | - +- amd64 | libzip-ocaml-dev | 1.04-6+b3 | - +- amd64 | libzip2 | 0.10.1-1.1 | - +- amd64 | libzipios++-dev | 0.1.5.9+cvs.2007.04.28-5.1 | - +- amd64 | libzipios++0c2a | 0.1.5.9+cvs.2007.04.28-5.1 | - +- amd64 | libzita-alsa-pcmi-dev | 0.2.0-1 | - +- amd64 | libzita-alsa-pcmi0 | 0.2.0-1 | - +- amd64 | libzita-convolver-dev | 3.1.0-2 | - +- amd64 | libzita-convolver3 | 3.1.0-2 | - +- amd64 | libzita-resampler-dev | 1.1.0-3 | - +- amd64 | libzita-resampler1 | 1.1.0-3 | - +- amd64 | libzlcore-dev | 0.12.10dfsg-8 | - +- amd64 | libzlcore0.12 | 0.12.10dfsg-8 | - +- amd64 | libzltext-dev | 0.12.10dfsg-8 | - +- amd64 | libzltext0.12 | 0.12.10dfsg-8 | - +- amd64 | libzlui-gtk | 0.12.10dfsg-8 | - +- amd64 | libzlui-qt4 | 0.12.10dfsg-8 | - +- amd64 | libzmq-dbg | 2.2.0+dfsg-2 | - +- amd64 | libzmq-dev | 2.2.0+dfsg-2 | - +- amd64 | libzmq1 | 2.2.0+dfsg-2 | - ++ amd64 | libzmq3 | - | 3.2.3+dfsg-2~bpo70+1 ++ amd64 | libzmq3-dbg | - | 3.2.3+dfsg-2~bpo70+1 ++ amd64 | libzmq3-dev | - | 3.2.3+dfsg-2~bpo70+1 +- amd64 | libzn-poly-0.8 | 0.8-1.1 | - +- amd64 | libzn-poly-dev | 0.8-1.1 | - +- amd64 | libzookeeper-mt-dev | 3.3.5+dfsg1-2 | - +- amd64 | libzookeeper-mt2 | 3.3.5+dfsg1-2 | - +- amd64 | libzookeeper-st-dev | 3.3.5+dfsg1-2 | - +- amd64 | libzookeeper-st2 | 3.3.5+dfsg1-2 | - +- amd64 | libzookeeper2 | 3.3.5+dfsg1-2 | - +- amd64 | libzorp-dev | 3.9.5-4 | - +- amd64 | libzorp3.9 | 3.9.5-4 | - +- amd64 | libzorpll-dev | 3.9.1.3-1 | - +- amd64 | libzorpll3.9-1 | 3.9.1.3-1 | - +- amd64 | libzorpll3.9-1-dbg | 3.9.1.3-1 | - +- amd64 | libzorpll3.9-1-memtrace | 3.9.1.3-1 | - +- amd64 | libzrtpcpp-dev | 2.0.0-3 | - +- amd64 | libzrtpcpp2 | 2.0.0-3 | - +- amd64 | libzthread-2.3-2 | 2.3.2-7 | - +- amd64 | libzthread-dev | 2.3.2-7 | - +- amd64 | libzvbi-dev | 0.2.33-6 | - +- amd64 | libzvbi0 | 0.2.33-6 | - +- amd64 | libzzip-0-13 | 0.13.56-1.1 | - +- amd64 | libzzip-dev | 0.13.56-1.1 | - +- amd64 | licq | 1.6.1-3 | - +- amd64 | licq-plugin-autoreply | 1.6.1-3 | - +- amd64 | licq-plugin-console | 1.6.1-3 | - +- amd64 | licq-plugin-forwarder | 1.6.1-3 | - +- amd64 | licq-plugin-jabber | 1.6.1-3 | - +- amd64 | licq-plugin-kde4 | 1.6.1-3 | - +- amd64 | licq-plugin-msn | 1.6.1-3 | - +- amd64 | licq-plugin-osd | 1.6.1-3 | - +- amd64 | licq-plugin-qt4 | 1.6.1-3 | - +- amd64 | licq-plugin-rms | 1.6.1-3 | - +- amd64 | lie | 2.2.2+dfsg-2 | - +- amd64 | liece-dcc | 2.0+0.20030527cvs-11 | - +- amd64 | lifelines | 3.0.61-2 | - +- amd64 | lifeograph | 0.8.2.dfsg-1 | - +! amd64 | liferea | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! amd64 | liferea-dbg | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +- amd64 | liggghts | 1.5.3-1 | - +- amd64 | lightdm | 1.2.2-4 | - +- amd64 | lightdm-gtk-greeter | 1.1.6-2 | - +- amd64 | lightdm-vala | 1.2.2-4 | - +- amd64 | lightsoff | 1:3.4.2-3 | - +- amd64 | lightspark | 0.6.0.1-2 | - +- amd64 | lightspark-common | 0.6.0.1-2 | - +- amd64 | lightspark-dbg | 0.6.0.1-2 | - +- amd64 | lightspeed | 1.2a-8+b1 | - +- amd64 | lighttpd | 1.4.31-4+deb7u2 | - +- amd64 | lighttpd-mod-cml | 1.4.31-4+deb7u2 | - +- amd64 | lighttpd-mod-magnet | 1.4.31-4+deb7u2 | - +- amd64 | lighttpd-mod-mysql-vhost | 1.4.31-4+deb7u2 | - +- amd64 | lighttpd-mod-trigger-b4-dl | 1.4.31-4+deb7u2 | - +- amd64 | lighttpd-mod-webdav | 1.4.31-4+deb7u2 | - +- amd64 | lilo | 1:23.2-4 | - +- amd64 | lilv-utils | 0.14.2~dfsg0-4 | - +- amd64 | lilypond | 2.14.2-4 | - +- amd64 | linaro-image-tools | 2012.06-1 | - +- amd64 | lincity | 1.13.1-11 | - +- amd64 | lincity-ng | 2.0-2+b2 | - +- amd64 | lingot | 0.9.1-2 | - +- amd64 | link-grammar | 4.7.4-2 | - +- amd64 | link-monitor-applet | 3.0-8 | - +- amd64 | link-monitor-applet-dbg | 3.0-8 | - +- amd64 | linkchecker | 7.9-2 | - +- amd64 | links | 2.7-1+deb7u1 | - +- amd64 | links2 | 2.7-1+deb7u1 | - +- amd64 | linphone | 3.5.2-10 | - +- amd64 | linphone-dbg | 3.5.2-10 | - +- amd64 | linphone-nogtk | 3.5.2-10 | - +- amd64 | linpsk | 1.1-1.1 | - +- amd64 | linsmith | 0.99.21-1 | - +- amd64 | lintex | 1.11-1 | - +- amd64 | linthesia | 0.4.2-3 | - ++ amd64 | linux-compiler-gcc-4.6-x86 | - | 3.12.9-1~bpo70+1 +- amd64 | linux-headers-2.6-amd64 | 3.2+46 | - ++ amd64 | linux-headers-3.12-0.bpo.1-all | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-headers-3.12-0.bpo.1-all-amd64 | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-headers-3.12-0.bpo.1-amd64 | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-headers-3.12-0.bpo.1-common | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-headers-3.12-0.bpo.1-common-rt | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-headers-3.12-0.bpo.1-rt-amd64 | - | 3.12.9-1~bpo70+1 +- amd64 | linux-headers-3.2.0-4-all | 3.2.54-2 | - +- amd64 | linux-headers-3.2.0-4-all-amd64 | 3.2.54-2 | - +- amd64 | linux-headers-3.2.0-4-amd64 | 3.2.54-2 | - +- amd64 | linux-headers-3.2.0-4-common | 3.2.54-2 | - +- amd64 | linux-headers-3.2.0-4-common-rt | 3.2.54-2 | - +- amd64 | linux-headers-3.2.0-4-rt-amd64 | 3.2.54-2 | - +! amd64 | linux-headers-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-headers-rt-amd64 | 3.2+46 | 3.12+55~bpo70+1 +- amd64 | linux-igd | 1.0+cvs20070630-4 | - +- amd64 | linux-image-2.6-amd64 | 3.2+46 | - ++ amd64 | linux-image-3.12-0.bpo.1-amd64 | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-image-3.12-0.bpo.1-amd64-dbg | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-image-3.12-0.bpo.1-rt-amd64 | - | 3.12.9-1~bpo70+1 ++ amd64 | linux-image-3.12-0.bpo.1-rt-amd64-dbg | - | 3.12.9-1~bpo70+1 +- amd64 | linux-image-3.2.0-4-amd64 | 3.2.54-2 | - +- amd64 | linux-image-3.2.0-4-amd64-dbg | 3.2.54-2 | - +- amd64 | linux-image-3.2.0-4-rt-amd64 | 3.2.54-2 | - +- amd64 | linux-image-3.2.0-4-rt-amd64-dbg | 3.2.54-2 | - +! amd64 | linux-image-amd64 | 3.2+46 | 3.12+55~bpo70+1 ++ amd64 | linux-image-amd64-dbg | - | 3.12+55~bpo70+1 +! amd64 | linux-image-rt-amd64 | 3.2+46 | 3.12+55~bpo70+1 ++ amd64 | linux-image-rt-amd64-dbg | - | 3.12+55~bpo70+1 ++ amd64 | linux-kbuild-3.12 | - | 3.12.6-1~bpo70+1 +- amd64 | linux-kbuild-3.2 | 3.2.17-1 | - +! amd64 | linux-libc-dev | 3.2.54-2 | 3.12.9-1~bpo70+1 ++ amd64 | linux-tools-3.12 | - | 3.12.6-1~bpo70+1 +- amd64 | linux-tools-3.2 | 3.2.17-1 | - +- amd64 | linux-wlan-ng | 0.2.9+dfsg-5 | - +- amd64 | linuxdcpp | 1.1.0-1+b2 | - +- amd64 | linuxdoc-tools | 0.9.68 | - +- amd64 | linuxinfo | 1.1.8-39 | - +- amd64 | linuxlogo | 5.11-1 | - +- amd64 | linuxvnc | 0.9.9+dfsg-1 | - +- amd64 | lio-utils | 3.1+git2.fd0b34fd-2 | - +- amd64 | liquidsoap | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-all | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-alsa | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-ao | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-camlimages | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-dssi | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-faad | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-flac | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-gavl | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-gd | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-graphics | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-gstreamer | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-icecast | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-jack | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-ladspa | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-lame | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-lastfm | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-lo | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-mad | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-ogg | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-oss | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-portaudio | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-pulseaudio | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-samplerate | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-schroedinger | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-sdl | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-soundtouch | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-speex | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-taglib | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-theora | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-voaacenc | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-vorbis | 1.0.1+repack1-1.1 | - +- amd64 | liquidsoap-plugin-xmlplaylist | 1.0.1+repack1-1.1 | - +- amd64 | liquidwar | 5.6.4-3+b1 | - +- amd64 | liquidwar-server | 5.6.4-3+b1 | - +- amd64 | lirc | 0.9.0~pre1-1 | - +- amd64 | lirc-x | 0.9.0~pre1-1 | - +- amd64 | listaller | 0.5.5-2 | - +- amd64 | listaller-devtools | 0.5.5-2 | - +- amd64 | listaller-libuild | 0.5.5-2 | - +- amd64 | literki | 0.0.0+20100113.git1da40724-1 | - +- amd64 | littler | 0.1.5-1 | - +- amd64 | littlewizard | 1.2.2-1 | - +- amd64 | live-f1 | 0.2.10-1 | - +- amd64 | livemedia-utils | 2012.05.17-1 | - +- amd64 | lives | 1.6.2~ds1-2 | - +- amd64 | lives-dbg | 1.6.2~ds1-2 | - +- amd64 | liwc | 1.21-1 | - +- amd64 | lksctp-tools | 1.0.11+dfsg-2 | - +- amd64 | ll-scope | 0.2.1-3 | - +- amd64 | lldpad | 0.9.44-1 | - +- amd64 | lldpad-dev | 0.9.44-1 | - +! amd64 | lldpd | 0.5.7-2 | 0.7.7-1~bpo70+1 +- amd64 | llvm | 1:3.0-14+nmu2 | - +- amd64 | llvm-2.9 | 2.9+dfsg-7 | - +- amd64 | llvm-2.9-dev | 2.9+dfsg-7 | - +- amd64 | llvm-2.9-runtime | 2.9+dfsg-7 | - +- amd64 | llvm-3.0 | 3.0-10 | - +- amd64 | llvm-3.0-dev | 3.0-10 | - +- amd64 | llvm-3.0-runtime | 3.0-10 | - +- amd64 | llvm-3.1 | 3.1-1 | - +- amd64 | llvm-3.1-dev | 3.1-1 | - +- amd64 | llvm-3.1-runtime | 3.1-1 | - +- amd64 | llvm-dev | 1:3.0-14+nmu2 | - +- amd64 | llvm-runtime | 1:3.0-14+nmu2 | - +- amd64 | lm-sensors | 1:3.3.2-2+deb7u1 | - +- amd64 | lmarbles | 1.0.7-1.1 | - +- amd64 | lmemory | 0.6c-6 | - +- amd64 | lmms | 0.4.10-2.3 | - +- amd64 | lnpd | 0.9.0-7 | - +- amd64 | loadlin | 1.6f-1 | - +- amd64 | loadmeter | 1.20-6 | - +- amd64 | loadwatch | 1.0+1.1alpha1-5 | - +- amd64 | locales-all | 2.13-38+deb7u1 | - +- amd64 | locate | 4.4.2-4 | - +- amd64 | lockfile-progs | 0.1.17 | - +- amd64 | lockout | 0.2.3-2 | - +- amd64 | logapp | 0.15-1 | - +- amd64 | logcentral | 2.7-1 | - +- amd64 | logcentral-tools | 2.7-1 | - +- amd64 | logfs-tools | 20110927-1 | - +- amd64 | logfs-tools-dbg | 20110927-1 | - +- amd64 | login | 1:4.1.5.1-1 | - +- amd64 | login-duo | 1.8-1 | - +- amd64 | logjam | 4.6.2-1 | - +- amd64 | logrotate | 3.8.1-4 | - +- amd64 | logstalgia | 1.0.3-3 | - +- amd64 | logtool | 1.2.8-8 | - +- amd64 | logtools | 0.13d | - +- amd64 | logtop | 0.4.3-1 | - +- amd64 | lokalize | 4:4.8.4+dfsg-1 | - +- amd64 | loki | 2.4.7.4-4 | - +- amd64 | longomatch | 0.16.8+git20110626-1+b2 | - +- amd64 | lookup | 1.08b-11 | - +- amd64 | looptools | 2.7-1 | - +- amd64 | loqui | 0.5.3-3 | - +- amd64 | lordsawar | 0.2.0-2.1 | - +- amd64 | lostirc | 0.4.6-4 | - +- amd64 | lout | 3.39-1 | - +- amd64 | love | 0.8.0-1+deb7u1 | - +- amd64 | love-dbg | 0.8.0-1+deb7u1 | - +- amd64 | lowpan-test-tools | 0.2.2-2.1 | - +- amd64 | lowpan-tools | 0.2.2-2.1 | - +- amd64 | lp-solve | 5.5.0.13-7 | - +- amd64 | lpe | 1.2.6.13-0.1 | - +- amd64 | lpr | 1:2008.05.17+nmu1 | - +- amd64 | lprng | 3.8.B-2 | - +- amd64 | lrslib | 0.42c-1+b1 | - +- amd64 | lrzip | 0.608-2 | - +- amd64 | lrzsz | 0.12.21-5 | - +- amd64 | lsat | 0.9.7.1-2 | - +- amd64 | lsb-core | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-cxx | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-desktop | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-graphics | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-languages | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-multimedia | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-printing | 4.1+Debian8+deb7u1 | - +- amd64 | lsb-security | 4.1+Debian8+deb7u1 | - +- amd64 | lsdvd | 0.16-3+b1 | - +- amd64 | lsh-client | 2.0.4-dfsg-11 | - +- amd64 | lsh-server | 2.0.4-dfsg-11 | - +- amd64 | lsh-utils | 2.0.4-dfsg-11 | - +- amd64 | lshw | 02.16-1 | - +- amd64 | lshw-gtk | 02.16-1 | - +- amd64 | lskat | 4:4.8.4-3 | - +- amd64 | lsmbox | 2.1.2-1 | - +- amd64 | lsof | 4.86+dfsg-1 | - +- amd64 | lsscsi | 0.26-2 | - +- amd64 | lswm | 0.6.00+svn201-3+b1 | - +- amd64 | lsyncd | 2.0.7-3 | - +- amd64 | ltpanel | 0.2-5 | - +- amd64 | ltrace | 0.5.3-2.1 | - +- amd64 | ltris | 1.0.18-1 | - +- amd64 | ltsp-client | 5.4.2-6 | - +- amd64 | ltsp-client-core | 5.4.2-6 | - +- amd64 | ltspfs | 1.1-2 | - +- amd64 | ltspfsd-core | 1.1-2 | - +- amd64 | ltt-bin | 0.89-05122011-1 | - +- amd64 | lttoolbox | 3.1.0-1.1 | - +- amd64 | lttv | 0.12.38-21032011-1+b1 | - +- amd64 | lttv-dev | 0.12.38-21032011-1+b1 | - +- amd64 | lua-apr | 0.23.2-1 | - +- amd64 | lua-apr-dev | 0.23.2-1 | - ++ amd64 | lua-augeas | - | 0.1.1-3~bpo70+1 +- amd64 | lua-bitop | 1.0.2-1 | - +- amd64 | lua-bitop-dev | 1.0.2-1 | - +- amd64 | lua-curl | 0.3.0-7 | - +- amd64 | lua-curl-dev | 0.3.0-7 | - +- amd64 | lua-curses | 5.1.19-2 | - +- amd64 | lua-curses-dev | 5.1.19-2 | - +- amd64 | lua-cyrussasl | 1.0.0-4 | - +- amd64 | lua-cyrussasl-dev | 1.0.0-4 | - +- amd64 | lua-dbi-mysql | 0.5+svn78-4 | - +- amd64 | lua-dbi-mysql-dev | 0.5+svn78-4 | - +- amd64 | lua-dbi-postgresql | 0.5+svn78-4 | - +- amd64 | lua-dbi-postgresql-dev | 0.5+svn78-4 | - +- amd64 | lua-dbi-sqlite3 | 0.5+svn78-4 | - +- amd64 | lua-dbi-sqlite3-dev | 0.5+svn78-4 | - +- amd64 | lua-event | 0.4.1-2 | - +- amd64 | lua-event-dev | 0.4.1-2 | - +- amd64 | lua-expat | 1.2.0-5 | - +- amd64 | lua-expat-dev | 1.2.0-5 | - +- amd64 | lua-filesystem | 1.5.0+16+g84f1af5-1 | - +- amd64 | lua-filesystem-dev | 1.5.0+16+g84f1af5-1 | - +- amd64 | lua-iconv | 7-1 | - +- amd64 | lua-iconv-dev | 7-1 | - +- amd64 | lua-ldap | 1.1.0-1-geeac494-3 | - +- amd64 | lua-ldap-dev | 1.1.0-1-geeac494-3 | - +- amd64 | lua-lgi | 0.6.2-1 | - +- amd64 | lua-lgi-dbg | 0.6.2-1 | - +- amd64 | lua-lgi-dev | 0.6.2-1 | - +- amd64 | lua-lpeg | 0.10.2-5 | - +- amd64 | lua-lpeg-dev | 0.10.2-5 | - +- amd64 | lua-md5 | 1.1.2-6 | - +- amd64 | lua-md5-dev | 1.1.2-6 | - +- amd64 | lua-posix | 5.1.19-2 | - +- amd64 | lua-posix-dev | 5.1.19-2 | - +- amd64 | lua-rex-onig | 2.6.0-2 | - +- amd64 | lua-rex-onig-dev | 2.6.0-2 | - +- amd64 | lua-rex-pcre | 2.6.0-2 | - +- amd64 | lua-rex-pcre-dev | 2.6.0-2 | - +- amd64 | lua-rex-posix | 2.6.0-2 | - +- amd64 | lua-rex-posix-dev | 2.6.0-2 | - +- amd64 | lua-rex-tre | 2.6.0-2 | - +- amd64 | lua-rex-tre-dev | 2.6.0-2 | - +- amd64 | lua-rings | 1.2.3-1 | - +- amd64 | lua-rings-dev | 1.2.3-1 | - +! amd64 | lua-sec | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! amd64 | lua-sec-dev | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! amd64 | lua-socket | 2.0.2-8 | 3.0~rc1-3~bpo70+1+b1 +! amd64 | lua-socket-dev | 2.0.2-8 | 3.0~rc1-3~bpo70+1+b1 +- amd64 | lua-sql-mysql | 2.3.0-1+build0 | - +- amd64 | lua-sql-mysql-dev | 2.3.0-1+build0 | - +- amd64 | lua-sql-postgres | 2.3.0-1+build0 | - +- amd64 | lua-sql-postgres-dev | 2.3.0-1+build0 | - +- amd64 | lua-sql-sqlite3 | 2.3.0-1+build0 | - +- amd64 | lua-sql-sqlite3-dev | 2.3.0-1+build0 | - +- amd64 | lua-svn | 0.4.0-7 | - +- amd64 | lua-svn-dev | 0.4.0-7 | - +- amd64 | lua-wsapi-fcgi | 1.5-3 | - +- amd64 | lua-wsapi-fcgi-dev | 1.5-3 | - +- amd64 | lua-zip | 1.2.3-11 | - +- amd64 | lua-zip-dev | 1.2.3-11 | - +- amd64 | lua-zlib | 0.2-1 | - +- amd64 | lua-zlib-dev | 0.2-1 | - +- amd64 | lua5.1 | 5.1.5-4 | - +- amd64 | lua5.2 | 5.2.1-3 | - +- amd64 | lua50 | 5.0.3-6 | - +- amd64 | luakit | 2012.03.25-1 | - +- amd64 | luatex | 0.70.1.20120524-3 | - +- amd64 | luckybackup | 0.4.7-2 | - +- amd64 | luminance-hdr | 2.2.1-3 | - +- amd64 | lunar | 2.2-3.1 | - +- amd64 | lunzip | 1.1-2 | - +- amd64 | lunzip-dbg | 1.1-2 | - +- amd64 | luola | 1.3.2-9 | - +- amd64 | lurker | 2.3-3 | - +- amd64 | lusernet.app | 0.4.2-6+b2 | - +- amd64 | lush | 1.2.1-9+cvs20110227+nmu1 | - +- amd64 | lutefisk | 1.0.5a.cleaned-1 | - +- amd64 | luvcview | 1:0.2.6-6 | - +- amd64 | lv | 4.51-2 | - +- amd64 | lv2-c++-tools | 1.0.4-3+b1 | - +- amd64 | lv2-dev | 1.0.0~dfsg2-2 | - +- amd64 | lv2-examples | 1.0.0~dfsg2-2 | - +- amd64 | lv2fil | 2.0+20100312.git18130f5a+dfsg0-2 | - +- amd64 | lv2file | 0.83-1 | - +- amd64 | lv2proc | 0.4.0-4 | - +- amd64 | lv2vocoder | 1-3 | - +- amd64 | lvm2 | 2.02.95-8 | - +- amd64 | lwatch | 0.6-1 | - +- amd64 | lwm | 1.2.2-4 | - +- amd64 | lwresd | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- amd64 | lx-gdb | 1.03-14 | - +- amd64 | lxappearance | 0.5.2-1 | - +- amd64 | lxappearance-dbg | 0.5.2-1 | - +- amd64 | lxappearance-obconf | 0.2.0-4 | - +- amd64 | lxappearance-obconf-dbg | 0.2.0-4 | - +- amd64 | lxc | 0.8.0~rc1-8+deb7u2 | - +- amd64 | lxc-dbg | 0.8.0~rc1-8+deb7u2 | - +- amd64 | lxc-dev | 0.8.0~rc1-8+deb7u2 | - +- amd64 | lxinput | 0.3.2-1 | - +- amd64 | lxinput-dbg | 0.3.2-1 | - +- amd64 | lxlauncher | 0.2.2-3 | - +- amd64 | lxlauncher-dbg | 0.2.2-3 | - +- amd64 | lxmms2 | 0.1.3-1 | - +- amd64 | lxmusic | 0.4.4+git20100802-3 | - +- amd64 | lxpanel | 0.5.10-1 | - +- amd64 | lxpanel-dbg | 0.5.10-1 | - +- amd64 | lxpolkit | 0.1.0-4 | - +- amd64 | lxpolkit-dbg | 0.1.0-4 | - +- amd64 | lxrandr | 0.1.2-3 | - +- amd64 | lxrandr-dbg | 0.1.2-3 | - +- amd64 | lxsession | 0.4.6.1-4 | - +- amd64 | lxsession-dbg | 0.4.6.1-4 | - +- amd64 | lxsession-edit | 0.2.0-3 | - +- amd64 | lxsession-edit-dbg | 0.2.0-3 | - +- amd64 | lxshortcut | 0.1.2-3 | - +- amd64 | lxshortcut-dbg | 0.1.2-3 | - +- amd64 | lxtask | 0.1.4-3 | - +- amd64 | lxtask-dbg | 0.1.4-3 | - +- amd64 | lxterminal | 0.1.11-4 | - +- amd64 | lxterminal-dbg | 0.1.11-4 | - +- amd64 | lynkeos.app | 1.2-6+b2 | - +- amd64 | lynx-cur | 2.8.8dev.12-2 | - +- amd64 | lyskom-server | 2.1.2-13 | - +- amd64 | lyx | 2.0.3-3 | - +- amd64 | lyx-dbg | 2.0.3-3 | - +- amd64 | lzip | 1.13-3 | - +- amd64 | lzip-dbg | 1.13-3 | - +- amd64 | lziprecover | 1.13-2 | - +- amd64 | lziprecover-dbg | 1.13-2 | - +- amd64 | lzma | 9.22-2 | - +- amd64 | lzma-alone | 9.22-2 | - +- amd64 | lzop | 1.03-3 | - +- amd64 | m-tx | 0.60d-5 | - +- amd64 | m16c-flash | 0.1-1.1 | - +- amd64 | m17n-im-config | 0.9.0-3 | - +- amd64 | m17n-lib-bin | 1.6.3-2 | - +- amd64 | m17n-lib-mimx | 1.6.3-2 | - +- amd64 | m2vrequantiser | 1.1-1 | - +- amd64 | m4 | 1.4.16-3 | - ++ amd64 | mac-robber | - | 1.02-1~bpo70+1 +- amd64 | macchanger | 1.5.0-9 | - +- amd64 | mace2 | 3.3f-1.1 | - +- amd64 | mach | 0.9.1-3.1 | - +- amd64 | macopix-gtk2 | 1.7.4-4 | - +- amd64 | mactelnet-client | 0.3.4-1 | - +- amd64 | mactelnet-server | 0.3.4-1 | - +- amd64 | macutils | 2.0b3-16 | - +- amd64 | madbomber | 0.2.5-5 | - +- amd64 | madplay | 0.15.2b-8 | - +- amd64 | madwimax | 0.1.1-1 | - +- amd64 | maelstrom | 1.4.3-L3.0.6+main-2 | - +- amd64 | mafft | 6.864-1 | - +- amd64 | magic | 7.5.220-1 | - +- amd64 | magicfilter | 1.2-64 | - +- amd64 | magicrescue | 1.1.8-1 | - +- amd64 | magics++ | 2.14.11-4 | - +- amd64 | mah-jong | 1.11-2 | - +- amd64 | mahjongg | 1:3.4.2-3 | - +- amd64 | mail-notification | 5.4.dfsg.1-6+b1 | - +- amd64 | mail-notification-evolution | 5.4.dfsg.1-6+b1 | - +- amd64 | mailagent | 1:3.1-74-0.2 | - +- amd64 | mailavenger | 0.8.3rc1-1 | - +- amd64 | mailcheck | 1.91.2-2 | - +- amd64 | maildir-filter | 1.20-3 | - +- amd64 | maildir-utils | 0.9.8.4-3+deb7u1 | - +- amd64 | maildir-utils-extra | 0.9.8.4-3+deb7u1 | - +- amd64 | maildrop | 2.5.5-2 | - +- amd64 | mailfilter | 0.8.2-4 | - +- amd64 | mailfront | 1.16-1 | - +- amd64 | mailman | 1:2.1.15-1 | - +- amd64 | mailsync | 5.2.2-3 | - +- amd64 | mailtextbody | 0.1.2-1 | - +- amd64 | mailto | 1.3.2-3 | - +- amd64 | mailutils | 1:2.99.97-3 | - +- amd64 | mailutils-comsatd | 1:2.99.97-3 | - +- amd64 | mailutils-dbg | 1:2.99.97-3 | - +- amd64 | mailutils-guile | 1:2.99.97-3 | - +- amd64 | mailutils-imap4d | 1:2.99.97-3 | - +- amd64 | mailutils-mh | 1:2.99.97-3 | - +- amd64 | mailutils-pop3d | 1:2.99.97-3 | - +- amd64 | mairix | 0.22-1 | - +- amd64 | maitreya | 6.0.5-2 | - +- amd64 | make | 3.81-8.2 | - +- amd64 | makebootfat | 1.4-5 | - +- amd64 | makedic | 6.5deb2-8 | - +- amd64 | makedumpfile | 1.4.3-1 | - +- amd64 | makefs | 20100306-3 | - +- amd64 | makejvf | 1.1a+0-2 | - +- amd64 | makexvpics | 1.0.1-2 | - +- amd64 | maki | 1.4.0+dfsg-1 | - +- amd64 | maki-plugins | 1.4.0+dfsg-1 | - +- amd64 | malaga-bin | 7.12-4 | - +- amd64 | man-db | 2.6.2-1 | - +- amd64 | man2html | 1.6g-6 | - +- amd64 | man2html-base | 1.6g-6 | - +- amd64 | mana | 0.6.1-2 | - +- amd64 | mana-dbg | 0.6.1-2 | - +- amd64 | mancala | 1.0.1-4 | - +- amd64 | mandelbulber | 1:1.11-1 | - +- amd64 | mandos-client | 1.5.5-1 | - +- amd64 | mangler | 1.2.4-1 | - +- amd64 | mango-lassi | 001+dfsg-5 | - +- amd64 | mapnik-utils | 2.0.0+ds1-3+b4 | - +- amd64 | mapserver-bin | 6.0.1-3.2+deb7u2 | - +- amd64 | maptool | 0.5.0~svn5126+dfsg.1-3 | - +- amd64 | maq | 0.7.1-5 | - +- amd64 | maqview | 0.2.5-4 | - +- amd64 | maradns | 1.4.12-5 | - +- amd64 | maradns-zoneserver | 1.4.12-5 | - +- amd64 | marble | 4:4.8.4-3 | - +- amd64 | marble-dbg | 4:4.8.4-3 | - +- amd64 | marble-plugins | 4:4.8.4-3 | - +- amd64 | maria | 1.3.5-4 | - +- amd64 | masqmail | 0.2.30-1 | - +- amd64 | massxpert | 3.2.3-1 | - +- amd64 | massxpert-dbg | 3.2.3-1 | - +- amd64 | matanza | 0.13+ds1-1 | - +- amd64 | matchbox-desktop | 2.0-4 | - +- amd64 | matchbox-keyboard | 0.1+svn20080916-9+b1 | - +- amd64 | matchbox-keyboard-im | 0.1+svn20080916-9+b1 | - +- amd64 | matchbox-panel | 0.9.3-8 | - +- amd64 | matchbox-panel-manager | 0.1-6 | - +- amd64 | matchbox-window-manager | 1.2-osso21-1+b1 | - +- amd64 | mathgl | 1.11.2-17 | - +- amd64 | mathomatic | 15.8.2-2 | - +- amd64 | mathomatic-primes | 15.8.2-2 | - +- amd64 | mathtex | 1.03-1 | - +- amd64 | mathwar | 0.2.5-2+b1 | - +- amd64 | matita | 0.99.1-1 | - +- amd64 | matroxset | 0.4-8 | - +- amd64 | maude | 2.6-2 | - +- amd64 | mawk | 1.3.3-17 | - +- amd64 | maxima | 5.27.0-3 | - +- amd64 | maximus | 0.4.14-3 | - +- amd64 | mayavi2 | 4.1.0-1 | - +- amd64 | mazeofgalious | 0.62.dfsg2-3 | - +- amd64 | mbmon | 2.05-6 | - +- amd64 | mboxgrep | 0.7.9-1 | - +- amd64 | mbr | 1.1.11-5+b1 | - +- amd64 | mbt | 3.2.8-1 | - +- amd64 | mbtserver | 0.5-2 | - +- amd64 | mbuffer | 20110119-2 | - +- amd64 | mbw | 1.2.2-1 | - +- amd64 | mc | 3:4.8.3-10 | - +- amd64 | mc-dbg | 3:4.8.3-10 | - +- amd64 | mcabber | 0.10.1-3 | - +- amd64 | mccs | 1:1.1-2 | - +- amd64 | mcdp | 0.4-5 | - +- amd64 | mcelog | 1.0~pre3-72-gcbd4da4-1 | - +- amd64 | mcl | 1:12-068-1 | - +- amd64 | mcp-plugins | 0.4.0-2 | - +- amd64 | mcpp | 2.7.2-1.1 | - +- amd64 | mcrl2 | 201202.0-2+b1 | - +- amd64 | mcron | 1.0.6-1+b1 | - +- amd64 | mcrypt | 2.6.8-1.3 | - +- amd64 | md5deep | 4.2-1 | - +- amd64 | mda-lv2 | 1.0.0~dfsg0-1 | - +- amd64 | mdadm | 3.2.5-5 | - +- amd64 | mdbtools | 0.7-1+deb7u1 | - +- amd64 | mdbtools-dbg | 0.7-1+deb7u1 | - +- amd64 | mdbtools-dev | 0.7-1+deb7u1 | - +- amd64 | mdbtools-gmdb | 0.7-1+deb7u1 | - +- amd64 | mdbus2 | 2.3.0-1 | - +- amd64 | mdetect | 0.5.2.3 | - +- amd64 | mdf2iso | 0.3.0-2 | - +- amd64 | mdk | 1.2.6+dfsg-1 | - +- amd64 | mdm | 0.1.3-2 | - +- amd64 | mdns-scan | 0.5-1 | - +- amd64 | me-tv | 1.3.7-0.2 | - +- amd64 | mecab | 0.99.3-3 | - +- amd64 | mecab-utils | 0.99.3-3 | - +- amd64 | medcon | 0.10.7-1+b2 | - +- amd64 | mediainfo | 0.7.58-1 | - +- amd64 | mediainfo-gui | 0.7.58-1 | - +- amd64 | mediatomb-common | 0.12.1-4+b1 | - +- amd64 | mediatomb-dbg | 0.12.1-4+b1 | - +- amd64 | mediawiki-math | 2:1.0+git20120528-6 | - +- amd64 | mediawiki-math-texvc | 2:1.0+git20120528-6 | - +- amd64 | medit | 1.0.93-1 | - +- amd64 | mednafen | 0.8.D.3-6 | - +- amd64 | medusa | 2.0-3.1 | - +- amd64 | meep | 1.1.1-8 | - +- amd64 | meep-lam4 | 1.1.1-10~deb7u1 | - +- amd64 | meep-mpi-default | 1.1.1-10~deb7u1 | - +- amd64 | meep-mpich2 | 1.1.1-10~deb7u1 | - +- amd64 | meep-openmpi | 1.1.1-9~deb7u1 | - +- amd64 | megaglest | 3.6.0.3-1.2 | - +- amd64 | megaglest-dbg | 3.6.0.3-1.2 | - +- amd64 | melt | 0.8.0-4 | - +- amd64 | melting | 4.3c-2 | - +- amd64 | members | 20080128-5 | - +- amd64 | memcached | 1.4.13-0.2+deb7u1 | - +- amd64 | memcachedb | 1.2.0-9 | - +- amd64 | memdump | 1.01-6.1 | - +- amd64 | memlockd | 1.1.1 | - +- amd64 | memstat | 0.9 | - +- amd64 | memtest86 | 4.0s-1 | - +- amd64 | memtest86+ | 4.20-1.1 | - +- amd64 | memtester | 4.2.2-1 | - +- amd64 | mencoder | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- amd64 | mendexk | 2.6e-3.2 | - +- amd64 | menhir | 20120123.dfsg-1 | - +- amd64 | mensis | 0.0.080507-3 | - +- amd64 | menu | 2.1.46 | - +! amd64 | mercurial | 2.2.2-3 | 2.8.2-1~bpo70+1 +- amd64 | mergelog | 4.5.1-9 | - +- amd64 | merkaartor | 0.18.1-3 | - +- amd64 | mesa-common-dev | 8.0.5-4+deb7u2 | - +- amd64 | mesa-utils | 8.0.1-2+b3 | - +- amd64 | meshlab | 1.3.0a+dfsg1-3 | - +- amd64 | meshs3d | 0.2.2-8 | - +- amd64 | metacam | 1.2-5 | - +- amd64 | metacity | 1:2.34.3-4 | - +- amd64 | metalink | 0.3.6-2+b1 | - +- amd64 | metapixel | 1.0.2-7.1 | - +- amd64 | metar | 20061030.1-2+b3 | - +- amd64 | metastore | 1+20080623+debian-3 | - +- amd64 | meterbridge | 0.9.2-11 | - +- amd64 | meterec | 0.8~ds0-1+b1 | - +- amd64 | mew-beta-bin | 7.0.50~6.5~rc2+0.20120405-1 | - +- amd64 | mew-bin | 1:6.4-2 | - +- amd64 | mffm-fftw-dev | 1.7-3 | - +- amd64 | mffm-fftw1 | 1.7-3 | - +- amd64 | mftrace | 1.2.17-1 | - +- amd64 | mg | 20110905-1.1 | - +- amd64 | mga-vid-common | 2.6.32-1 | - +- amd64 | mga-vid-source | 2.6.32-1 | - +- amd64 | mgdiff | 1.0-29 | - +- amd64 | mgen | 5.02+dfsg2-3 | - +- amd64 | mgetty | 1.1.36-1.6 | - +- amd64 | mgetty-fax | 1.1.36-1.6 | - +- amd64 | mgetty-pvftools | 1.1.36-1.6 | - +- amd64 | mgetty-viewfax | 1.1.36-1.6 | - +- amd64 | mgetty-voice | 1.1.36-1.6 | - +- amd64 | mgp | 1.13a+upstream20090219-6 | - +- amd64 | mgt | 2.31-6 | - +- amd64 | mhc-utils | 0.25.1+20120403-2 | - +- amd64 | mhddfs | 0.1.39 | - +- amd64 | mhwaveedit | 1.4.21-2 | - +- amd64 | mic2 | 0.24.12-1 | - +- amd64 | micro-httpd | 20051212-15 | - +- amd64 | micro-inetd | 20050629-5 | - +- amd64 | micro-proxy | 20021030+debian-5 | - +- amd64 | microcom | 2012.06.0-2 | - +- amd64 | microdc2 | 0.15.6-2 | - +- amd64 | micropolis | 0.0.20071228-5 | - +- amd64 | midish | 1.0.4-1.1 | - +- amd64 | midori | 0.4.3+dfsg-0.1 | - +- amd64 | midori-dbg | 0.4.3+dfsg-0.1 | - +- amd64 | mii-diag | 2.11-3+b1 | - +- amd64 | mikmod | 3.2.1-4 | - +- amd64 | milkytracker | 0.90.85+dfsg-2.2 | - +- amd64 | milter-greylist | 4.3.9-1 | - +- amd64 | mimedefang | 2.71-3 | - +- amd64 | mimetex | 1.73-2 | - +- amd64 | minbar | 0.2.1-7 | - +- amd64 | minbif | 1:1.0.5+git20120508-2.1 | - +- amd64 | minbif-common | 1:1.0.5+git20120508-2.1 | - +- amd64 | minbif-dbg | 1:1.0.5+git20120508-2.1 | - +- amd64 | minc-tools | 2.1.10-1+b1 | - +- amd64 | minetest | 0.3.1+dfsg-4 | - +- amd64 | minetest-dbg | 0.3.1+dfsg-4 | - +- amd64 | minetest-server | 0.3.1+dfsg-4 | - +- amd64 | mingetty | 1.08-2 | - +- amd64 | mingw-ocaml | 3.12.1+debian3 | - +- amd64 | mingw-w64-tools | 2.0.3-1 | - +- amd64 | mingw32 | 4.2.1.dfsg-2 | - +- amd64 | mingw32-binutils | 2.20-0.2 | - +- amd64 | mini-httpd | 1.19-9.3 | - +- amd64 | minicom | 2.6.1-1 | - +- amd64 | minidjvu | 0.8.svn.2010.05.06+dfsg-0.2 | - +- amd64 | minidlna | 1.0.24+dfsg-1 | - +- amd64 | minimodem | 0.8.1-1 | - +- amd64 | minisapserver | 0.3.6-1 | - +- amd64 | minisat | 1:2.2.1-3 | - +- amd64 | minisat+ | 1.0-2 | - +- amd64 | minisat2 | 1:2.2.1-3 | - +- amd64 | minissdpd | 1.1.20120121-1 | - +- amd64 | ministat | 20100628-1 | - +- amd64 | minit | 0.10-5 | - +- amd64 | miniupnpc | 1.5-2 | - +- amd64 | minpack-dev | 19961126+dfsg1-1 | - +- amd64 | mira-assembler | 3.4.0.1-3 | - +- amd64 | mirage | 0.9.5.1-1.1+b1 | - +- amd64 | miredo | 1.2.3-1.1 | - +- amd64 | miredo-server | 1.2.3-1.1 | - +- amd64 | miro | 4.0.4-1 | - +- amd64 | mirrormagic | 2.0.2.0deb1-11 | - +- amd64 | misery | 0.2-1 | - +- amd64 | missidentify | 1.0-6 | - +- amd64 | mistelix | 0.33-3+b1 | - +- amd64 | mitmproxy | 0.8-2 | - +- amd64 | mitools | 1.8.5-2 | - +- amd64 | miwm | 1.1-3 | - +- amd64 | mixal | 1.08-11 | - +- amd64 | mixer.app | 1.8.0-5 | - +- amd64 | mixmaster | 3.0.0-6 | - +- amd64 | mixxx | 1.10.1~dfsg0-1 | - +- amd64 | mkcue | 1-2.1 | - +- amd64 | mkelfimage | 2.7-7 | - +- amd64 | mklibs-copy | 0.1.34 | - +- amd64 | mknbi | 1.4.4-9 | - +- amd64 | mknfonts.tool | 0.5-11+b3 | - +! amd64 | mksh | 40.9.20120630-7 | 49-2~bpo70+1 +- amd64 | mktorrent | 1.0-4 | - +- amd64 | mkvtoolnix | 5.6.0-1 | - +- amd64 | mkvtoolnix-gui | 5.6.0-1 | - +- amd64 | ml-burg | 110.74-2 | - +- amd64 | ml-lex | 110.74-2 | - +- amd64 | ml-lpt | 110.74-2 | - +- amd64 | ml-nlffigen | 110.74-2 | - +- amd64 | ml-yacc | 110.74-2 | - +- amd64 | mldonkey-gui | 3.1.2-1 | - +- amd64 | mldonkey-server | 3.1.2-1 | - +- amd64 | mlmmj | 1.2.18.0-2 | - +- amd64 | mlocate | 0.23.1-1 | - +- amd64 | mlock | 8:2007f~dfsg-2 | - +- amd64 | mlpost | 0.8.1-3 | - +- amd64 | mlterm | 3.1.2-1.3 | - +- amd64 | mlterm-common | 3.1.2-1.3 | - +- amd64 | mlterm-im-ibus | 3.1.2-1.3 | - +- amd64 | mlterm-im-m17nlib | 3.1.2-1.3 | - +- amd64 | mlterm-im-scim | 3.1.2-1.3 | - +- amd64 | mlterm-im-uim | 3.1.2-1.3 | - +- amd64 | mlterm-tiny | 3.1.2-1.3 | - +- amd64 | mlterm-tools | 3.1.2-1.3 | - +- amd64 | mlton-compiler | 20100608-5 | - +- amd64 | mlton-runtime-native | 20100608-5 | - +- amd64 | mlton-runtime-x86-64-linux-gnu | 20100608-5 | - +- amd64 | mlton-tools | 20100608-5 | - +- amd64 | mlv-smile | 1.47-3 | - +- amd64 | mm3d | 1.3.7-1.4 | - +- amd64 | mmass-modules | 5.1.0-2 | - +- amd64 | mmorph | 2.3.4.2-12.1 | - +- amd64 | mmpong-caca | 0.9.1-2.1 | - +- amd64 | mmpong-gl | 0.9.1-2.1 | - +- amd64 | mmpongd | 0.9.1-2.1 | - +- amd64 | mmv | 1.01b-15 | - +- amd64 | mobyle-utils | 1.0.6~dfsg-1 | - +- amd64 | moc | 1:2.5.0~alpha4+svn20120224-1 | - +- amd64 | moc-ffmpeg-plugin | 1:2.5.0~alpha4+svn20120224-1 | - +- amd64 | mod-gearman-module | 1.3.6-1 | - +- amd64 | mod-gearman-tools | 1.3.6-1 | - +- amd64 | mod-gearman-worker | 1.3.6-1 | - +- amd64 | modem-cmd | 0.0.2 | - +- amd64 | modemmanager | 0.5.2.0-2 | - +- amd64 | modemmanager-dbg | 0.5.2.0-2 | - +- amd64 | modplug-tools | 0.5.3-1 | - +- amd64 | mokomaze | 0.5.5+git8+dfsg0-3 | - +- amd64 | mon | 1.2.0-6 | - +- amd64 | mon-contrib | 1.0+dfsg-2 | - +- amd64 | mona | 1.4-13-3 | - +- amd64 | monav | 0.3-6+b1 | - +- amd64 | monav-client | 0.3-6+b1 | - +- amd64 | monav-preprocessor | 0.3-6+b1 | - +- amd64 | monav-routing-daemon | 0.3-6+b1 | - +! amd64 | mongodb | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-clients | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-dev | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-server | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | monit | 1:5.4-2 | 1:5.6-1~bpo70+1 +- amd64 | monkeystudio | 1.9.0.2-2 | - +- amd64 | monkeystudio-dbg | 1.9.0.2-2 | - +- amd64 | mono-complete | 2.10.8.1-8 | - +- amd64 | mono-jay | 2.10.8.1-8 | - +- amd64 | mono-runtime | 2.10.8.1-8 | - +- amd64 | mono-runtime-dbg | 2.10.8.1-8 | - +- amd64 | mono-runtime-sgen | 2.10.8.1-8 | - +- amd64 | mono-utils | 2.10.8.1-8 | - +- amd64 | monopd | 0.9.3-6 | - +- amd64 | monotone | 1.0-6 | - +- amd64 | monotone-viz | 1.0.2-2+b2 | - +- amd64 | monster-masher | 1.8.1-6 | - +- amd64 | monsterz | 0.7.1-4 | - +- amd64 | moodbar | 0.1.2-3 | - +- amd64 | moon-buggy | 1.0.51-9.1 | - +- amd64 | moon-buggy-esd | 1.0.51-9.1 | - +- amd64 | moon-lander | 1:1.0-4.1 | - +- amd64 | mooproxy | 1.0.0-1 | - +- amd64 | mopac7-bin | 1.15-5 | - +- amd64 | mopd | 1:2.5.3-21 | - +- amd64 | moreutils | 0.47 | - +- amd64 | moria | 5.6-2 | - +- amd64 | morla | 0.16.1-1.1 | - +- amd64 | morse | 2.4-2 | - +- amd64 | morse-simulator | 0.5.2-1 | - +- amd64 | morsegen | 0.2.1-1 | - +! amd64 | mosh | 1.2.3-1 | 1.2.4a-1~bpo70+1 +- amd64 | mosquitto | 0.15-2 | - +- amd64 | mosquitto-clients | 0.15-2 | - +- amd64 | most | 5.0.0a-2.1 | - +- amd64 | mothur | 1.24.1-1 | - +- amd64 | motion | 3.2.12-3.4 | - +- amd64 | mount | 2.20.1-5.3 | - +- amd64 | mountall | 2.46 | - +- amd64 | mountpy | 0.8.1 | - +- amd64 | mouseemu | 0.15-9 | - +- amd64 | mousepad | 0.2.16-6 | - +- amd64 | mousetrap | 0.9-2.2 | - +- amd64 | mousetweaks | 3.4.2-1 | - +- amd64 | mozc-server | 1.5.1090.102-4+deb7u1 | - +- amd64 | mozc-utils-gui | 1.5.1090.102-4+deb7u1 | - +- amd64 | mozilla-gtk-vnc | 0.5.0-3.1 | - +- amd64 | mozilla-plugin-vlc | 2.0.0-2 | - +- amd64 | mp | 3.7.1-11 | - +- amd64 | mp3blaster | 1:3.2.5-3 | - +- amd64 | mp3check | 0.8.7-1 | - +- amd64 | mp3diags | 1.0.11.076-3 | - +- amd64 | mp3fs | 0.31-28-g7b30a54-1 | - +- amd64 | mp3gain | 1.5.2-r2-2 | - +- amd64 | mp3info | 0.8.5a-1 | - +- amd64 | mp3info-gtk | 0.8.5a-1 | - +- amd64 | mp3rename | 0.6-9 | - +- amd64 | mp3splt | 2.4.2-2 | - +- amd64 | mp3splt-gtk | 0.7.2-2 | - +- amd64 | mp3val | 0.1.8-1 | - +- amd64 | mp3wrap | 0.5-3 | - +- amd64 | mp4h | 1.3.1-6 | - +- amd64 | mp4v2-dbg | 2.0.0~dfsg0-1 | - +- amd64 | mp4v2-utils | 2.0.0~dfsg0-1 | - +- amd64 | mpack | 1.6-8 | - +- amd64 | mpage | 2.5.6-1 | - +- amd64 | mpb | 1.4.2-18 | - +- amd64 | mpb-mpi | 1.4.2-18 | - +- amd64 | mpc | 0.22-1 | - +- amd64 | mpc123 | 0.2.4-2 | - +! amd64 | mpd | 0.16.7-2+b1 | 0.17.6-1~bpo70+1 +! amd64 | mpd-dbg | 0.16.7-2+b1 | 0.17.6-1~bpo70+1 +- amd64 | mpdcon.app | 1.1.99-5+b3 | - +- amd64 | mpdcron | 0.3+git20110303-3 | - +- amd64 | mpdscribble | 0.22-3 | - +- amd64 | mpdscribble-dbg | 0.22-3 | - +- amd64 | mpeg2dec | 0.4.1-3 | - +- amd64 | mpeg3-utils | 1.5.4-5 | - +- amd64 | mpegdemux | 0.1.4-3 | - +- amd64 | mpg123 | 1.14.4-1 | - +- amd64 | mpg321 | 0.3.2-1.1 | - +- amd64 | mpgtx | 1.3.1-5 | - +- amd64 | mpi-default-bin | 1.0.1 | - +- amd64 | mpi-default-dev | 1.0.1 | - +- amd64 | mpich2 | 1.4.1-4.2 | - +- amd64 | mpich2python | 2.8-4 | - +- amd64 | mpikmeans-tools | 1.5-1+b1 | - +- amd64 | mplayer | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- amd64 | mplayer-dbg | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- amd64 | mplayer-gui | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- amd64 | mplayer2 | 2.0-554-gf63dbad-1+b1 | - +- amd64 | mplayer2-dbg | 2.0-554-gf63dbad-1+b1 | - +- amd64 | mplayerthumbs | 4:4.8.4-2 | - +- amd64 | mpop | 1.0.27-1 | - +- amd64 | mpop-gnome | 1.0.27-1 | - +- amd64 | mppenc | 1.16-1.1 | - +- amd64 | mpqc | 2.3.1-14 | - +- amd64 | mpqc-support | 2.3.1-14 | - +- amd64 | mpt-status | 1.2.0-7 | - +- amd64 | mrbayes | 3.2.1+dfsg-1 | - +- amd64 | mrbayes-dbg | 3.2.1+dfsg-1 | - +- amd64 | mrbayes-mpi | 3.2.1+dfsg-1 | - +- amd64 | mrd6 | 0.9.6-10 | - +- amd64 | mriconvert | 2.0.235-1 | - +- amd64 | mricron | 0.20120505.1~dfsg.1-1 | - +- amd64 | mrtg | 2.17.4-2 | - +- amd64 | mrtgutils | 0.8.1 | - +- amd64 | mrtgutils-sensors | 0.8.1 | - +- amd64 | mrtrix | 0.2.10-2 | - +- amd64 | mrxvt | 0.5.4-1.1 | - +- amd64 | mrxvt-cjk | 0.5.4-1.1 | - +- amd64 | mrxvt-mini | 0.5.4-1.1 | - +- amd64 | mscgen | 0.20-2 | - +- amd64 | mscompress | 0.3-4 | - +- amd64 | msgpack-python | 0.1.10-1 | - +- amd64 | msmtp | 1.4.28-1 | - +- amd64 | msmtp-gnome | 1.4.28-1 | - +- amd64 | msn-pecan | 0.1.3-1 | - +- amd64 | msn-pecan-dbg | 0.1.3-1 | - +- amd64 | msort | 8.52-1.3+b1 | - +- amd64 | msp430-libc | 20120224-1 | - +- amd64 | mspdebug | 0.19-1 | - +- amd64 | msr-tools | 1.2-3 | - +- amd64 | msrtool | 0.0+r4091-1 | - +- amd64 | mssh | 1.2-1.1+b1 | - +- amd64 | mstflint | 1.4-OFED-1.4.2-1 | - +- amd64 | mswatch | 1.2.0-2.1 | - +- amd64 | mt-st | 1.1-4 | - +- amd64 | mtasc | 1.14-2 | - +- amd64 | mtbl-bin | 0.2-1 | - +- amd64 | mtd-utils | 1:1.5.0-1 | - +- amd64 | mtdev-tools | 1.1.2-1 | - +- amd64 | mtink | 1.0.16-6 | - +- amd64 | mtools | 4.0.17-1 | - +- amd64 | mtp-tools | 1.1.3-35-g0ece104-5 | - +- amd64 | mtpaint | 3.40-1+b1 | - +- amd64 | mtr | 0.82-3 | - +- amd64 | mtr-tiny | 0.82-3 | - +- amd64 | mtx | 1.3.12-4 | - +- amd64 | mu-cade | 0.11.dfsg1-6 | - +- amd64 | muddleftpd | 1.3.13.1-4.3 | - +- amd64 | mudita24 | 1.0.3+svn13-4 | - +- amd64 | mudita24-dbg | 1.0.3+svn13-4 | - +- amd64 | mudlet | 2.0-rc12-3 | - +- amd64 | multiarch-support | 2.13-38+deb7u1 | - +- amd64 | multicat | 2.0-3 | - +- amd64 | multiget | 1.2.0-3 | - +- amd64 | multimail | 0.49-2 | - +- amd64 | multimon | 1.0-5 | - +- amd64 | multipath-tools | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- amd64 | multipath-tools-dbg | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- amd64 | multitail | 5.2.9-1 | - +- amd64 | multitee | 3.0-4 | - +- amd64 | multiwatch | 1.0.0-rc1-2 | - +- amd64 | mumble | 1.2.3-349-g315b5f5-2.2 | - +- amd64 | mumble-dbg | 1.2.3-349-g315b5f5-2.2 | - +- amd64 | mumble-server | 1.2.3-349-g315b5f5-2.2 | - +- amd64 | mummer | 3.23~dfsg-2 | - +- amd64 | mummy | 1.0.2-5 | - +- amd64 | mumps-test | 4.10.0.dfsg-3 | - +- amd64 | mumudvb | 1.7.1-1 | - +- amd64 | munge | 0.5.10-1 | - +- amd64 | mupdf | 0.9-2 | - +- amd64 | mupdf-tools | 0.9-2 | - +- amd64 | mupen64plus-audio-sdl | 1.99.5-2 | - +- amd64 | mupen64plus-audio-sdl-dbg | 1.99.5-2 | - +- amd64 | mupen64plus-input-sdl | 1.99.5-2 | - +- amd64 | mupen64plus-input-sdl-dbg | 1.99.5-2 | - +- amd64 | mupen64plus-rsp-hle | 1.99.5-3 | - +- amd64 | mupen64plus-rsp-hle-dbg | 1.99.5-3 | - +- amd64 | mupen64plus-rsp-z64 | 1.99.4+31+1374ffc147ad-4 | - +- amd64 | mupen64plus-rsp-z64-dbg | 1.99.4+31+1374ffc147ad-4 | - +- amd64 | mupen64plus-ui-console | 1.99.5-3 | - +- amd64 | mupen64plus-ui-console-dbg | 1.99.5-3 | - +- amd64 | mupen64plus-video-arachnoid | 1.99.4+39+ada2d63714fd-3 | - +- amd64 | mupen64plus-video-arachnoid-dbg | 1.99.4+39+ada2d63714fd-3 | - +- amd64 | mupen64plus-video-glide64 | 1.99.4+37+a1c35b79de0d-3 | - +- amd64 | mupen64plus-video-glide64-dbg | 1.99.4+37+a1c35b79de0d-3 | - +- amd64 | mupen64plus-video-rice | 1.99.5-3 | - +- amd64 | mupen64plus-video-rice-dbg | 1.99.5-3 | - +- amd64 | mupen64plus-video-z64 | 1.99.4+30+daa3f1b2fe76-3 | - +- amd64 | mupen64plus-video-z64-dbg | 1.99.4+30+daa3f1b2fe76-3 | - +- amd64 | muroard | 0.1.10-2 | - +- amd64 | muroard-dbg | 0.1.10-2 | - +- amd64 | muroard-dev | 0.1.10-2 | - +- amd64 | muscle | 1:3.8.31-1 | - +- amd64 | muse | 2.0-1 | - +- amd64 | museekd | 1:0.2+svn20100315.r1208-2 | - +- amd64 | museeq | 1:0.2+svn20100315.r1208-2 | - +- amd64 | musepack-tools | 2:0.1~r459-4 | - +- amd64 | musescore | 1.2+dfsg-1 | - +- amd64 | music-bin | 1.0.7-1.2 | - +- amd64 | music123 | 16.3-3 | - +- amd64 | musique | 1.1-2.1 | - +- amd64 | musixtex | 1:0.115-4 | - +- amd64 | mustang | 3.2.1-3 | - +- amd64 | mustang-plug | 1.1-2 | - +- amd64 | mutextrace | 0.1-1 | - +- amd64 | mutrace | 0.2.0-2 | - +- amd64 | mutt | 1.5.21-6.2+deb7u1 | - +- amd64 | mutt-dbg | 1.5.21-6.2+deb7u1 | - +- amd64 | mutt-patched | 1.5.21-6.2+deb7u1 | - +- amd64 | mutter | 3.4.1-5 | - +- amd64 | mutter-dbg | 3.4.1-5 | - +- amd64 | mwrap | 0.33-1 | - +- amd64 | mxallowd | 1.9-1 | - +- amd64 | mydumper | 0.5.1-3 | - +- amd64 | mypaint | 1.0.0-1 | - +- amd64 | myproxy | 5.6-1 | - +- amd64 | myproxy-admin | 5.6-1 | - +- amd64 | myproxy-dbg | 5.6-1 | - +- amd64 | myproxy-server | 5.6-1 | - +- amd64 | myrescue | 0.9.4-5+b1 | - +- amd64 | myspell-tools | 1:3.1-24 | - +- amd64 | mysql-client-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | mysql-proxy | 0.8.1-1.1+b1 | - +- amd64 | mysql-server-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | mysql-server-core-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | mysql-source-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | mysql-testsuite-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- amd64 | mysql-workbench | 5.2.40+dfsg-2 | - +- amd64 | mysqltcl | 3.051-1+b1 | - +- amd64 | mysqmail-courier-logger | 0.4.9-10 | - +- amd64 | mysqmail-dovecot-logger | 0.4.9-10 | - +- amd64 | mysqmail-postfix-logger | 0.4.9-10 | - +- amd64 | mysqmail-pure-ftpd-logger | 0.4.9-10 | - +- amd64 | mythtvfs | 0.6.1-3 | - +- amd64 | mz | 0.40-1 | - +- amd64 | n2n | 1.3.1~svn3789-1 | - +- amd64 | nabi | 0.99.11-2 | - +- amd64 | nacl-tools | 20110221-4 | - +- amd64 | nagios-nrpe-plugin | 2.13-3 | - +- amd64 | nagios-nrpe-server | 2.13-3 | - +! amd64 | nagios-plugins-basic | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios-plugins-common | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios-plugins-contrib | 4.20120702 | 9.20140106~bpo70+1 +! amd64 | nagios-plugins-standard | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios3 | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-cgi | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-core | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-dbg | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +- amd64 | nagiosgrapher | 1.7.1-4 | - +- amd64 | nagircbot | 0.0.33-2 | - +- amd64 | nailgun | 0.7.1-3 | - +- amd64 | nam | 1.15-1 | - +- amd64 | nam-dbg | 1.15-1 | - +- amd64 | namazu2 | 2.0.21-6 | - +- amd64 | nana | 2.5-12 | - +- amd64 | nano | 2.2.6-1+b1 | - +- amd64 | nano-tiny | 2.2.6-1+b1 | - +- amd64 | nap | 1.5.4-7.1 | - +- amd64 | nas | 1.9.3-5wheezy1 | - +- amd64 | nas-bin | 1.9.3-5wheezy1 | - +- amd64 | nasm | 2.10.01-1 | - +- amd64 | naspro-bridges | 0.4.1-1 | - +- amd64 | nast | 0.2.0-6 | - +- amd64 | nasty | 0.6-2 | - +- amd64 | natpmp-utils | 20110808-3 | - +- amd64 | nautilus | 3.4.2-1+build1 | - +- amd64 | nautilus-actions | 3.2.2-1 | - +- amd64 | nautilus-dbg | 3.4.2-1+build1 | - +- amd64 | nautilus-filename-repairer | 0.1.1-2 | - +- amd64 | nautilus-gtkhash | 0.6.0-4 | - +- amd64 | nautilus-image-converter | 0.3.1~git20110416-1 | - +- amd64 | nautilus-open-terminal | 0.19-2+b1 | - +- amd64 | nautilus-sendto | 3.0.3-2+b1 | - +- amd64 | nautilus-sendto-empathy | 3.4.2.3-2+deb7u1 | - +- amd64 | nautilus-share | 0.7.3-1+b1 | - +- amd64 | nautilus-wipe | 0.1.1-3 | - +- amd64 | navit | 0.5.0~svn5126+dfsg.1-3 | - +- amd64 | navit-graphics-gtk-drawing-area | 0.5.0~svn5126+dfsg.1-3 | - +- amd64 | navit-graphics-qt-qpainter | 0.5.0~svn5126+dfsg.1-3 | - +- amd64 | navit-gui-gtk | 0.5.0~svn5126+dfsg.1-3 | - +- amd64 | navit-gui-internal | 0.5.0~svn5126+dfsg.1-3 | - +- amd64 | nbd-client | 1:3.2-4~deb7u4 | - +- amd64 | nbd-server | 1:3.2-4~deb7u4 | - +- amd64 | nbibtex | 0.9.18-10 | - +- amd64 | nbtscan | 1.5.1-6 | - +- amd64 | ncaptool | 1.9.2-1+b2 | - +- amd64 | ncbi-blast+ | 2.2.26-3 | - +- amd64 | ncbi-epcr | 2.3.12-1-1 | - +- amd64 | ncbi-tools-bin | 6.1.20120620-2 | - +- amd64 | ncbi-tools-x11 | 6.1.20120620-2 | - +- amd64 | ncc | 2.8-1 | - +- amd64 | ncdt | 2.1-3 | - +- amd64 | ncdu | 1.8-1 | - +- amd64 | ncftp | 2:3.2.5-1.1 | - +- amd64 | ncmpc | 0.17-1 | - +- amd64 | ncmpcpp | 0.5.10-1.1 | - +- amd64 | nco | 4.0.9-1+b1 | - +- amd64 | ncoils | 2002-3 | - +- amd64 | ncompress | 4.2.4.4-5 | - +- amd64 | ncpfs | 2.2.6-9 | - +- amd64 | ncurses-bin | 5.9-10 | - +- amd64 | ncurses-examples | 5.9-10 | - +- amd64 | ncurses-hexedit | 0.9.7-14.1 | - +- amd64 | ncview | 1.93g-1+b2 | - +- amd64 | nd | 0.8.2-6 | - +- amd64 | ndisc6 | 1.0.1-1+b1 | - +- amd64 | ndisgtk | 0.8.5-1 | - +- amd64 | ndiswrapper-utils-1.9 | 1.57-1 | - +- amd64 | ndoutils-common | 1.4b9-1.1+b1 | - +- amd64 | ndoutils-nagios3-mysql | 1.4b9-1.1+b1 | - +- amd64 | ndpmon | 1.4.0-2 | - +- amd64 | ndtpd | 1:1.0.dfsg.1-4.3 | - +- amd64 | ne | 2.4-1 | - +- amd64 | nec | 2-16 | - +- amd64 | nec2c | 0.8-3 | - +- amd64 | necpp | 1.5.0+cvs20101003-2.1 | - +- amd64 | nedit | 1:5.6~cvs20081118-7 | - +- amd64 | nedit-dbg | 1:5.6~cvs20081118-7 | - +- amd64 | neko | 1.8.1-6+b1 | - +- amd64 | nekobee | 0.1.7-3 | - +- amd64 | nemiver | 0.9.2-1 | - +- amd64 | net-acct | 0.71-9 | - +- amd64 | net-tools | 1.60-24.2 | - +- amd64 | netanim | 3.100-1 | - +- amd64 | netatalk | 2.2.2-1 | - +- amd64 | netcat-openbsd | 1.105-7 | - +- amd64 | netcat-traditional | 1.10-40 | - +- amd64 | netcat6 | 1.0-8 | - +- amd64 | netcdf-bin | 1:4.1.3-6+b1 | - +- amd64 | netcdf-dbg | 1:4.1.3-6+b1 | - +- amd64 | netcf | 0.1.9-2 | - +- amd64 | netdiag | 1.1-1 | - +- amd64 | netdiscover | 0.3beta6+20080409-5 | - +- amd64 | netdiscover-dbg | 0.3beta6+20080409-5 | - +- amd64 | netemul | 1.0.0-2 | - +- amd64 | netexpect | 0.20-3 | - +- amd64 | nethack-common | 3.4.3-14 | - +- amd64 | nethack-console | 3.4.3-14 | - +- amd64 | nethack-lisp | 3.4.3-14 | - +- amd64 | nethack-x11 | 3.4.3-14 | - +- amd64 | nethogs | 0.8.0-1 | - +- amd64 | netmask | 2.3.12 | - ++ amd64 | netmate | - | 0.2.0-3~bpo70+1 +- amd64 | netmaze | 0.81+jpg0.82-14 | - +- amd64 | netmrg | 0.20-6.1 | - +- amd64 | netpanzer | 0.8.4.debian.1-1.1 | - +- amd64 | netpanzer-dbg | 0.8.4.debian.1-1.1 | - +- amd64 | netpbm | 2:10.0-15+b1 | - +- amd64 | netperfmeter | 1.1.7-1.1 | - +- amd64 | netpipe-lam | 3.7.2-7 | - +- amd64 | netpipe-mpich2 | 3.7.2-7 | - +- amd64 | netpipe-openmpi | 3.7.2-7 | - +- amd64 | netpipe-pvm | 3.7.2-7 | - +- amd64 | netpipe-tcp | 3.7.2-7 | - +- amd64 | netpipes | 4.2-6 | - +- amd64 | netplan | 1.10.1-2 | - +- amd64 | netplug | 1.2.9.2-1 | - +- amd64 | netrek-client-cow | 3.3.0-3 | - +- amd64 | netrik | 1.16.1-1.1 | - +- amd64 | netris | 0.52-9 | - +- amd64 | netrw | 1.3.2-2 | - +- amd64 | netsed | 1.00b-2.1 | - +- amd64 | netselect | 0.3.ds1-25 | - +- amd64 | netsend | 0.0~svnr250-1.1 | - +- amd64 | netsniff-ng | 0.5.7-1 | - +- amd64 | netspeed | 0.16-3 | - +- amd64 | netstat-nat | 1.4.10-2 | - +- amd64 | netsurf-fb | 2.9-2 | - +- amd64 | netsurf-gtk | 2.9-2 | - +! amd64 | nettle-bin | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nettle-dbg | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nettle-dev | 2.4-3 | 2.7.1-1~bpo70+1 +- amd64 | nettoe | 1.3.2-1 | - +- amd64 | network-manager | 0.9.4.0-10 | - +- amd64 | network-manager-dbg | 0.9.4.0-10 | - +- amd64 | network-manager-dev | 0.9.4.0-10 | - +- amd64 | network-manager-gnome | 0.9.4.1-5 | - +- amd64 | network-manager-iodine | 0.0.3-1 | - +- amd64 | network-manager-iodine-gnome | 0.0.3-1 | - +- amd64 | network-manager-kde | 1:0.9.0.3-1 | - +- amd64 | network-manager-openconnect | 0.9.4.0-8 | - +- amd64 | network-manager-openconnect-gnome | 0.9.4.0-8 | - +- amd64 | network-manager-openvpn | 0.9.4.0-1 | - +- amd64 | network-manager-openvpn-gnome | 0.9.4.0-1 | - +- amd64 | network-manager-pptp | 0.9.4.0-2 | - +- amd64 | network-manager-pptp-gnome | 0.9.4.0-2 | - +- amd64 | network-manager-strongswan | 1.3.0-1 | - +- amd64 | network-manager-vpnc | 0.9.4.0-1 | - +- amd64 | network-manager-vpnc-gnome | 0.9.4.0-1 | - +- amd64 | netwox | 5.36.0-1.2 | - +- amd64 | neverball | 1.5.4-5 | - +- amd64 | neverball-dbg | 1.5.4-5 | - +- amd64 | neverputt | 1.5.4-5 | - +- amd64 | newmail | 0.5-2 | - +- amd64 | newsbeuter | 2.5-2 | - +- amd64 | newt-tcl | 0.52.14-11.1 | - +- amd64 | nexus-tools | 4.2.1-svn1614-1+b2 | - +- amd64 | nfdump | 1.6.6-1 | - +- amd64 | nfdump-dbg | 1.6.6-1 | - +- amd64 | nfdump-flow-tools | 1.6.6-1 | - +- amd64 | nfdump-sflow | 1.6.6-1 | - +- amd64 | nfqueue-bindings-perl | 0.4-3 | - +- amd64 | nfqueue-bindings-python | 0.4-3 | - +- amd64 | nfs-common | 1:1.2.6-4 | - +- amd64 | nfs-kernel-server | 1:1.2.6-4 | - +- amd64 | nfs4-acl-tools | 0.3.3-2 | - +- amd64 | nfswatch | 4.99.11-2 | - +- amd64 | ng-cjk | 1.5~beta1-3 | - +- amd64 | ng-cjk-canna | 1.5~beta1-3 | - +- amd64 | ng-latin | 1.5~beta1-3 | - +- amd64 | ng-utils | 0.7-1 | - +- amd64 | nget | 0.27.1-11 | - +- amd64 | ngetty | 1.0-1 | - +! amd64 | nginx-extras | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-extras-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-full | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-full-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-light | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-light-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-naxsi | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-naxsi-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +- amd64 | ngircd | 19.2-2 | - +- amd64 | ngorca | 1.0.2-2+b1 | - +- amd64 | ngraph-gtk | 6.06.06-1 | - +- amd64 | ngraph-gtk-addins-base | 6.06.06-1 | - +- amd64 | ngrep | 1.45.ds2-12 | - +- amd64 | nickle | 2.76-1 | - +- amd64 | nictools-pci | 1.3.8-1.2 | - +- amd64 | nifti-bin | 2.0.0-1 | - +- amd64 | nih-dbus-tool | 1.0.3-4.1 | - +- amd64 | nikwi | 0.0.20060823-2 | - +- amd64 | nilfs-tools | 2.1.3-1 | - +- amd64 | nilfs-tools-dbg | 2.1.3-1 | - +- amd64 | ninix-aya | 4.3.9-1 | - +- amd64 | ninja | 0.1.3-2 | - +- amd64 | ninvaders | 0.1.1-3 | - +- amd64 | nip2 | 7.28.4-1 | - +- amd64 | nis | 3.17-32 | - +- amd64 | nitpic | 0.1-13 | - +- amd64 | nitrogen | 1.5.2-1 | - +- amd64 | njam | 1.25-5.2 | - +- amd64 | njplot | 2.4-1 | - +- amd64 | nkf | 2.12-1 | - +- amd64 | nlkt | 0.3.2.2-1 | - +- amd64 | nload | 0.7.4-1 | - +! amd64 | nmap | 6.00-0.3+deb7u1 | 6.40-0.1~bpo70+1 +- amd64 | nmapsi4 | 0.3.1-1 | - +- amd64 | nmh | 1.5-release-0.2 | - +- amd64 | nmon | 13g+debian-1 | - +- amd64 | nmzmail | 1.1-1 | - +- amd64 | nn | 6.7.3-8 | - ++ amd64 | nocache | - | 0.9-1~bpo70+1 +- amd64 | nodau | 0.3~rc6-1 | - ++ amd64 | nodejs | - | 0.10.21~dfsg1-1~bpo7+1 ++ amd64 | nodejs-dbg | - | 0.10.21~dfsg1-1~bpo7+1 ++ amd64 | nodejs-dev | - | 0.10.21~dfsg1-1~bpo7+1 +- amd64 | nodm | 0.11-1.3 | - +- amd64 | noiz2sa | 0.51a-9+b1 | - +- amd64 | nomarch | 1.4-3 | - +- amd64 | nomnom | 0.3.1-1 | - +- amd64 | normalize-audio | 0.7.7-11 | - +- amd64 | notebook-gtk2 | 0.2rel-2.2 | - +- amd64 | notification-daemon | 0.7.6-1 | - +- amd64 | notify-osd | 0.9.34-2 | - +! amd64 | notmuch | 0.13.2-1 | 0.16-1~bpo70+1 ++ amd64 | notmuch-dbg | - | 0.16-1~bpo70+1 +- amd64 | novnc | 2012.1~e3+dfsg+1-4 | - +- amd64 | noweb | 2.11b-7.1 | - +- amd64 | nowhere | 110.74-2 | - +- amd64 | nqc | 3.1.r6-1 | - +- amd64 | nqp | 0.1~2012.01-5 | - +- amd64 | nrg2iso | 0.4-4 | - +- amd64 | nrss | 0.3.9-1 | - +- amd64 | ns2 | 2.35+dfsg-1 | - +- amd64 | ns2-dbg | 2.35+dfsg-1 | - +- amd64 | nsca | 2.9.1-2 | - +- amd64 | nsca-client | 2.9.1-2 | - +- amd64 | nscd | 2.13-38+deb7u1 | - +- amd64 | nsd3 | 3.2.12-3+deb7u1 | - +- amd64 | nsis | 2.46-7 | - +- amd64 | nslcd | 0.8.10-4 | - +- amd64 | nslint | 3.0a2-1.1 | - +- amd64 | nss-passwords | 0.1.1-1 | - +- amd64 | nss-updatedb | 10-2+b1 | - +- amd64 | nstreams | 1.0.3-2+b1 | - ++ amd64 | ntdb-tools | - | 1.0-2~bpo70+1 +- amd64 | nted | 1.10.18-4 | - +- amd64 | ntfs-3g | 1:2012.1.15AR.5-2.1 | - +- amd64 | ntfs-3g-dbg | 1:2012.1.15AR.5-2.1 | - +- amd64 | ntfs-3g-dev | 1:2012.1.15AR.5-2.1 | - +- amd64 | ntfs-config | 1.0.1-10 | - +- amd64 | ntop | 3:4.99.3+ndpi5517+dfsg3-1 | - +- amd64 | ntop-dbg | 3:4.99.3+ndpi5517+dfsg3-1 | - +- amd64 | ntp | 1:4.2.6.p5+dfsg-2 | - +- amd64 | ntpdate | 1:4.2.6.p5+dfsg-2 | - +- amd64 | ntrack-module-libnl-0 | 016-1.1 | - +- amd64 | ntrack-module-rtnetlink-0 | 016-1.1 | - +- amd64 | nuapplet | 2.3.0-2 | - +- amd64 | nuauth | 2.4.3-2.2 | - +- amd64 | nuauth-extra | 2.4.3-2.2 | - +- amd64 | nuauth-log-mysql | 2.4.3-2.2 | - +- amd64 | nuauth-log-pgsql | 2.4.3-2.2 | - +- amd64 | nufw | 2.4.3-2.2 | - +- amd64 | nullidentd | 1.0-5 | - +- amd64 | nullmailer | 1:1.11-2 | - +- amd64 | numactl | 2.0.8~rc4-1 | - +- amd64 | numconv | 2.7-1.1 | - +- amd64 | numdiff | 5.6.0-1 | - +- amd64 | numlockx | 1.2-4 | - +- amd64 | numptyphysics | 0.2+svn156-1.1 | - +- amd64 | nurpawiki | 1.2.3-5+b17 | - +- amd64 | nut-cgi | 2.6.4-2.3+deb7u1 | - +- amd64 | nut-client | 2.6.4-2.3+deb7u1 | - +- amd64 | nut-nutrition | 15.5-1 | - +- amd64 | nut-powerman-pdu | 2.6.4-2.3+deb7u1 | - +- amd64 | nut-server | 2.6.4-2.3+deb7u1 | - +- amd64 | nut-snmp | 2.6.4-2.3+deb7u1 | - +- amd64 | nut-xml | 2.6.4-2.3+deb7u1 | - +- amd64 | nutcpc | 2.4.3-2.2 | - +- amd64 | nuttcp | 6.1.2-4 | - +- amd64 | nvclock | 0.8b4+cvs20100914-4 | - +- amd64 | nvclock-gtk | 0.8b4+cvs20100914-4 | - +- amd64 | nvclock-qt | 0.8b4+cvs20100914-4 | - +- amd64 | nvi | 1.81.6-8.2 | - ++ amd64 | nvidia-alternative | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-alternative-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-alternative-legacy-96xx | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-cuda-dev | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-cuda-gdb | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-cuda-mps | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-cuda-toolkit | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-detect | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-driver | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-glx | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-glx-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-glx-legacy-96xx | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-installer-cleanup | - | 20131102+1~bpo70+1 ++ amd64 | nvidia-kernel-3.12-0.bpo.1-amd64 | - | 319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1 ++ amd64 | nvidia-kernel-amd64 | - | 319.82+3.12+1~bpo70+1 ++ amd64 | nvidia-kernel-common | - | 20131102+1~bpo70+1 ++ amd64 | nvidia-kernel-dkms | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-kernel-legacy-173xx-dkms | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-kernel-legacy-173xx-source | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-kernel-legacy-96xx-dkms | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-kernel-legacy-96xx-source | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-kernel-source | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-legacy-173xx-driver | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-legacy-173xx-kernel-dkms | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-legacy-173xx-kernel-source | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-legacy-304xx-alternative | - | 304.117-1~bpo70+1 ++ amd64 | nvidia-legacy-304xx-driver | - | 304.117-1~bpo70+1 ++ amd64 | nvidia-legacy-304xx-kernel-dkms | - | 304.117-1~bpo70+1 ++ amd64 | nvidia-legacy-304xx-kernel-source | - | 304.117-1~bpo70+1 ++ amd64 | nvidia-legacy-96xx-driver | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-legacy-96xx-kernel-dkms | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-legacy-96xx-kernel-source | - | 96.43.23-7~bpo70+1 ++ amd64 | nvidia-libopencl1 | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-nsight | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-opencl-common | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-opencl-dev | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-opencl-icd | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-profiler | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-settings | - | 319.72-1~bpo70+1 ++ amd64 | nvidia-settings-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ amd64 | nvidia-settings-legacy-304xx | - | 304.116-1~bpo70+1 ++ amd64 | nvidia-settings-legacy-96xx | - | 96.43.20-2~bpo70+1 ++ amd64 | nvidia-smi | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-support | - | 20131102+1~bpo70+1 ++ amd64 | nvidia-vdpau-driver | - | 319.82-1~bpo70+1 ++ amd64 | nvidia-visual-profiler | - | 5.0.35-8~bpo70+1 ++ amd64 | nvidia-xconfig | - | 319.72-1~bpo70+1 +- amd64 | nvram-wakeup | 1.1-1 | - +- amd64 | nvramtool | 0.0+r3669-2.2 | - +- amd64 | nvtv | 0.4.7-7 | - +- amd64 | nwall | 1.32+debian-4.1 | - +- amd64 | nwchem | 6.1-6 | - +- amd64 | nwrite | 1.9.2-20.1 | - +- amd64 | nxproxy | 3.5.0.12-1 | - +- amd64 | nyancat | 1.0+git20120523.99dc310-1 | - +- amd64 | nypatchy | 20061220+dfsg3-2 | - +- amd64 | nzb | 0.2-1 | - +- amd64 | nzbget | 0.7.0-2 | - +- amd64 | oar-admin | 2.5.2-3 | - +- amd64 | oar-common | 2.5.2-3 | - +- amd64 | oar-node | 2.5.2-3 | - +- amd64 | oar-restful-api | 2.5.2-3 | - +- amd64 | oar-server | 2.5.2-3 | - +- amd64 | oar-server-mysql | 2.5.2-3 | - +- amd64 | oar-server-pgsql | 2.5.2-3 | - +- amd64 | oar-user | 2.5.2-3 | - +- amd64 | oar-user-mysql | 2.5.2-3 | - +- amd64 | oar-user-pgsql | 2.5.2-3 | - +- amd64 | oasis3 | 3.3.beta.dfsg.1-8+b1 | - +- amd64 | oasis3-examples | 3.3.beta.dfsg.1-8+b1 | - +- amd64 | oath-dbg | 1.12.4-1 | - +- amd64 | oathtool | 1.12.4-1 | - +- amd64 | obconf | 1:2.0.3+20110805+debian-1 | - +- amd64 | obdgpslogger | 0.16-1.2 | - +- amd64 | obex-data-server | 0.4.5-1+b3 | - +- amd64 | obexd-client | 0.46-1+b1 | - +- amd64 | obexd-server | 0.46-1+b1 | - +- amd64 | obexfs | 0.11-1 | - +- amd64 | obexftp | 0.23-1.1 | - +- amd64 | obexpushd | 0.11.2-1 | - +- amd64 | obfsproxy | 0.1.4-2 | - +- amd64 | objcryst-fox | 1.9.6.0-2 | - +- amd64 | obmenu | 1.0-2+nmu1 | - +- amd64 | obnam | 1.1-1.1 | - +- amd64 | ocaml | 3.12.1-4 | - +- amd64 | ocaml-base | 3.12.1-4 | - +- amd64 | ocaml-base-nox | 3.12.1-4 | - +- amd64 | ocaml-compiler-libs | 3.12.1-4 | - +- amd64 | ocaml-findlib | 1.3.1-1 | - +- amd64 | ocaml-findlib-wizard | 1.3.1-1 | - +- amd64 | ocaml-interp | 3.12.1-4 | - +- amd64 | ocaml-melt | 1.4.0-1 | - +- amd64 | ocaml-native-compilers | 3.12.1-4 | - +- amd64 | ocaml-nox | 3.12.1-4 | - +- amd64 | ocaml-ulex | 1.1-2+b2 | - +- amd64 | ocaml-ulex08 | 0.8-10+b2 | - +- amd64 | ocamldsort | 0.15.0-2 | - +- amd64 | ocamlduce | 3.12.1.0-1 | - +- amd64 | ocamlduce-base | 3.12.1.0-1 | - +- amd64 | ocamlgraph-editor | 1.8.2-2 | - +- amd64 | ocamlmod | 0.0.2-3 | - +- amd64 | ocamlviz | 1.01-2+b2 | - +- amd64 | oce-draw | 0.9.1-3 | - +- amd64 | ocfs2-tools | 1.6.4-1+deb7u1 | - +- amd64 | ocfs2-tools-cman | 1.6.4-1+deb7u1 | - +- amd64 | ocfs2-tools-dev | 1.6.4-1+deb7u1 | - +- amd64 | ocfs2-tools-pacemaker | 1.6.4-1+deb7u1 | - +- amd64 | ocfs2console | 1.6.4-1+deb7u1 | - +- amd64 | ocl-icd-dev | 1.3-3 | - +- amd64 | ocl-icd-libopencl1 | 1.3-3 | - +- amd64 | ocl-icd-opencl-dev | 1.3-3 | - +- amd64 | ocrad | 0.22~rc1-2 | - +- amd64 | ocsigen | 1.3.4-2+b12 | - +- amd64 | ocsigenserver | 2.1-1 | - +- amd64 | octave | 3.6.2-5+deb7u1 | - +- amd64 | octave-audio | 1.1.4-4 | - +- amd64 | octave-biosig | 1.3.0-2 | - +- amd64 | octave-communications | 1.1.1-1 | - +- amd64 | octave-control | 2.3.52-1 | - +- amd64 | octave-dbg | 3.6.2-5+deb7u1 | - +- amd64 | octave-econometrics | 1:1.0.8-6 | - +- amd64 | octave-fixed | 0.7.10-5 | - +- amd64 | octave-gdf | 0.1.2-2 | - +- amd64 | octave-general | 1.3.1-1 | - +- amd64 | octave-geometry | 1.5.0-1 | - +- amd64 | octave-gsl | 1.0.8-5 | - +- amd64 | octave-image | 1.0.15-1 | - +- amd64 | octave-io | 1.0.19-1 | - +- amd64 | octave-java | 1.2.8-6 | - +- amd64 | octave-lhapdf | 5.8.7+repack-1 | - +- amd64 | octave-linear-algebra | 2.2.0-1 | - +- amd64 | octave-miscellaneous | 1.1.0-1 | - +- amd64 | octave-nan | 2.5.5-2 | - +- amd64 | octave-nurbs | 1.3.6-1 | - +- amd64 | octave-ocs | 0.1.3-1 | - +- amd64 | octave-octcdf | 1.1.4-2 | - +- amd64 | octave-octgpr | 1.2.0-3 | - +- amd64 | octave-odepkg | 0.8.2-2 | - +- amd64 | octave-openmpi-ext | 1.0.2-1 | - +- amd64 | octave-optim | 1.2.0-1 | - +- amd64 | octave-optiminterp | 0.3.3-2 | - +- amd64 | octave-pfstools | 1.8.5-1 | - +- amd64 | octave-plplot | 5.9.9-5 | - +- amd64 | octave-psychtoolbox-3 | 3.0.9+svn2579.dfsg1-1 | - +- amd64 | octave-quaternion | 2.0.0-1 | - +- amd64 | octave-secs1d | 0.0.8-4 | - +- amd64 | octave-secs2d | 0.0.8-4 | - +- amd64 | octave-signal | 1.1.3-1 | - +- amd64 | octave-sockets | 1.0.8-1 | - +- amd64 | octave-specfun | 1.1.0-1 | - +- amd64 | octave-strings | 1.1.0-1 | - +- amd64 | octave-struct | 1.0.10-1 | - +- amd64 | octave-sundials | 2.5.0-3 | - +- amd64 | octave-symbolic | 1.1.0-1 | - +- amd64 | octave-tsa | 4.2.4-1 | - +- amd64 | odbc-postgresql | 1:09.01.0100-1+deb7u1 | - +- amd64 | odbc-postgresql-dbg | 1:09.01.0100-1+deb7u1 | - +- amd64 | odbcinst | 2.2.14p2-5 | - +- amd64 | odbcinst1debian2 | 2.2.14p2-5 | - +- amd64 | odin | 1.8.5-2 | - +- amd64 | odt2txt | 0.4+git20100620-1+b1 | - +- amd64 | ofono | 1.6-2 | - +- amd64 | ofono-dbg | 1.6-2 | - +- amd64 | ofono-phonesim | 1.17-1 | - +- amd64 | ofx | 1:0.9.4-2.1 | - +- amd64 | ogamesim | 1.17-1 | - +- amd64 | ogdi-bin | 3.2.0~beta2-7 | - +- amd64 | oggfwd | 0.2-6 | - +- amd64 | oggvideotools | 0.8a-1 | - +- amd64 | oggvideotools-dbg | 0.8a-1 | - +- amd64 | oggz-tools | 1.1.1-1 | - +- amd64 | ogmtools | 1:1.5-3+b1 | - +- amd64 | ogre-1.8-tools | 1.8.0+dfsg1-3 | - +- amd64 | ogre-tools | 1.7.4+dfsg1-7 | - +- amd64 | ohcount | 3.0.0-6.1 | - +- amd64 | oidentd | 2.0.8-5 | - +- amd64 | oidua | 0.16.1-7 | - +- amd64 | okteta | 4:4.8.4+dfsg-1 | - +- amd64 | okteta-dev | 4:4.8.4+dfsg-1 | - +- amd64 | okular | 4:4.8.4-3+b1 | - +- amd64 | okular-backend-odp | 1:2.4.4-3 | - +- amd64 | okular-dbg | 4:4.8.4-3+b1 | - +- amd64 | okular-dev | 4:4.8.4-3+b1 | - +- amd64 | okular-extra-backends | 4:4.8.4-3+b1 | - +- amd64 | olpc-kbdshim | 27-1 | - +- amd64 | olpc-powerd | 23-2 | - +- amd64 | olsrd | 0.6.2-2.1 | - +- amd64 | olsrd-gui | 0.6.2-2.1 | - +- amd64 | olsrd-plugins | 0.6.2-2.1 | - +- amd64 | olvwm | 4.4.3.2p1.4-28.1 | - +- amd64 | olwm | 3.2p1.4-28.1 | - +- amd64 | omake | 0.9.8.5-3-8 | - +- amd64 | omega-rpg | 1:0.90-pa9-15 | - +- amd64 | omhacks | 0.16-1 | - +- amd64 | omins | 0.2.0-7.1 | - +- amd64 | omnievents | 1:2.6.2-2 | - +- amd64 | omniidl | 4.1.6-2 | - +- amd64 | omniorb | 4.1.6-2 | - +- amd64 | omniorb-nameserver | 4.1.6-2 | - +- amd64 | onak | 0.4.1-1 | - +- amd64 | oneko | 1.2.sakura.6-8 | - +- amd64 | onesixtyone | 0.3.2-1 | - +- amd64 | onetime | 1.122-1 | - +- amd64 | onioncat | 0.2.2+svn553-3 | - +- amd64 | onscripter | 20120531-2 | - +- amd64 | ontv | 3.2.0-1 | - +- amd64 | oolite | 1.76.1-2 | - +- amd64 | opari | 1.1+dfsg-2 | - +! amd64 | open-axiom | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | open-axiom-graphics | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | open-axiom-hypertex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +- amd64 | open-cobol | 1.1-1 | - +- amd64 | open-invaders | 0.3-3.2 | - +- amd64 | open-iscsi | 2.0.873-3 | - +- amd64 | open-jtalk | 1.05-1 | - +- amd64 | open-vm-toolbox | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +- amd64 | open-vm-tools | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +- amd64 | open-vm-tools-dbg | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +! amd64 | openafs-client | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-dbg | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-dbserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-fileserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-fuse | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-kpasswd | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-krb5 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- amd64 | openais | 1.1.4-4.1 | - +- amd64 | openais-dbg | 1.1.4-4.1 | - +- amd64 | openais-dev | 1.1.4-4.1 | - +- amd64 | openam | 1.4.0-1+b2 | - +- amd64 | openarena | 0.8.8-5+deb7u2 | - +- amd64 | openarena-dbg | 0.8.8-5+deb7u2 | - +- amd64 | openarena-server | 0.8.8-5+deb7u2 | - +- amd64 | openbabel | 2.3.1+dfsg-4 | - +- amd64 | openbabel-gui | 2.3.1+dfsg-4 | - +! amd64 | openbox | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | openbox-dev | 3.5.0-7 | 3.5.2-6~bpo70+1 +- amd64 | openbsd-inetd | 0.20091229-2 | - +- amd64 | opencc | 0.3.0-3 | - +- amd64 | openchangeclient | 1:1.0-3 | - +- amd64 | openchangeproxy | 1:1.0-3 | - +- amd64 | openchangeserver | 1:1.0-3 | - +- amd64 | openchangeserver-dev | 1:1.0-3 | - +- amd64 | opencity | 0.0.6.4stable-1.1 | - +- amd64 | openconnect | 3.20-4 | - +- amd64 | opencryptoki | 2.3.1+dfsg-3 | - +- amd64 | opencryptoki-dbg | 2.3.1+dfsg-3 | - +- amd64 | openct | 0.6.20-1.2 | - +- amd64 | opencubicplayer | 1:0.1.21-1.1 | - +- amd64 | opendkim | 2.6.8-4 | - +- amd64 | opendkim-tools | 2.6.8-4 | - +- amd64 | opendnssec-dbg-mysql | 1:1.3.9-5 | - +- amd64 | opendnssec-dbg-sqlite3 | 1:1.3.9-5 | - +- amd64 | opendnssec-enforcer-mysql | 1:1.3.9-5 | - +- amd64 | opendnssec-enforcer-sqlite3 | 1:1.3.9-5 | - +- amd64 | opendnssec-signer | 1:1.3.9-5 | - +- amd64 | openexr | 1.6.1-6 | - +- amd64 | openexr-viewers | 1.0.1-6 | - +- amd64 | openfetion | 2.2.1-3.2 | - +- amd64 | openhpi-clients | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-ilo2-ribcl | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-ipmi | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-ipmidirect | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-oa-soap | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-snmp-bc | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-sysfs | 2.14.1-1.2 | - +- amd64 | openhpi-plugin-watchdog | 2.14.1-1.2 | - +- amd64 | openhpid | 2.14.1-1.2 | - +- amd64 | openimageio-tools | 1.0.5+dfsg0-1 | - +- amd64 | openipmi | 2.0.16-1.3 | - +- amd64 | openjade | 1.4devel1-20.1+b1 | - +- amd64 | openjade1.3 | 1.3.2-11.1+b1 | - +- amd64 | openjdk-6-dbg | 6b27-1.12.5-1 | - +- amd64 | openjdk-6-demo | 6b27-1.12.5-1 | - +- amd64 | openjdk-6-jdk | 6b27-1.12.5-1 | - +- amd64 | openjdk-6-jre | 6b27-1.12.5-1 | - +- amd64 | openjdk-6-jre-headless | 6b27-1.12.5-1 | - +- amd64 | openjdk-6-jre-zero | 6b27-1.12.5-1 | - +- amd64 | openjdk-7-dbg | 7u3-2.1.7-1 | - +- amd64 | openjdk-7-demo | 7u3-2.1.7-1 | - +- amd64 | openjdk-7-jdk | 7u3-2.1.7-1 | - +- amd64 | openjdk-7-jre | 7u3-2.1.7-1 | - +- amd64 | openjdk-7-jre-headless | 7u3-2.1.7-1 | - +- amd64 | openjdk-7-jre-zero | 7u3-2.1.7-1 | - +- amd64 | openjpeg-tools | 1.3+dfsg-4.7 | - +- amd64 | openload | 0.1.2-2 | - +- amd64 | openmeeg-tools | 2.0.0.dfsg-5 | - +- amd64 | openmpi-bin | 1.4.5-1 | - +- amd64 | openmpi-checkpoint | 1.4.5-1 | - +- amd64 | openmpipython | 2.8-4 | - +- amd64 | openmsx | 0.8.2-2.1 | - +- amd64 | openmsx-catapult | 0.8.2-1 | - +- amd64 | openmsx-debugger | 0.0.0.svn20110306-3 | - +- amd64 | openmx | 3.5-1 | - +- amd64 | opennebula | 3.4.1-3.1 | - +- amd64 | openntpd | 20080406p-4 | - +- amd64 | openobex-apps | 1.5-2 | - +- amd64 | openocd | 0.5.0-1 | - +- amd64 | openpref | 0.1.3-1 | - ++ amd64 | openrpt | - | 3.3.4-6~bpo70+1 +! amd64 | opensaml2-tools | 2.4.3-4 | 2.5.3-2~bpo70+1 +- amd64 | opensc | 0.12.2-3 | - +- amd64 | openscad | 2011.12-3 | - +- amd64 | openscad-dbg | 2011.12-3 | - +- amd64 | openscad-testing | 2011.12-3 | - +- amd64 | openscenegraph | 3.0.1-4 | - +- amd64 | openscenegraph-plugin-citygml-shared | 0.14+svn128-1+3p0p1+4 | - +- amd64 | openscenegraph-plugin-citygml-static | 0.14+svn128-1+3p0p1+4 | - +- amd64 | openslide-tools | 3.2.6-2 | - +- amd64 | opensm | 3.2.6-20090317-2.1 | - +- amd64 | opensm-doc | 3.2.6-20090317-2.1 | - +- amd64 | opensp | 1.5.2-10 | - +! amd64 | openssh-client | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | openssh-server | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +- amd64 | openssl | 1.0.1e-2+deb7u4 | - +- amd64 | openssn | 1.3-1 | - +- amd64 | openssn-dbg | 1.3-1 | - +- amd64 | openswan | 1:2.6.37-3 | - +- amd64 | openswan-dbg | 1:2.6.37-3 | - +- amd64 | openswan-modules-dkms | 1:2.6.37-3 | - +- amd64 | openttd | 1.2.1-3 | - +- amd64 | openttd-dbg | 1.2.1-3 | - +- amd64 | openturns-examples | 1.0-4 | - +- amd64 | openuniverse | 1.0beta3.1+dfsg-3 | - +- amd64 | openvanilla-imgeneric | 0.9.0a1.3+dfsg1-2.1 | - +! amd64 | openvpn | 2.2.1-8+deb7u2 | 2.3.2-7~bpo70+1 +- amd64 | openvpn-auth-ldap | 2.0.3-5.1 | - +- amd64 | openvpn-auth-radius | 2.1-4 | - +- amd64 | openvpn-auth-radius-dbg | 2.1-4 | - +- amd64 | openvrml-lookat | 0.18.9-5+deb7u1 | - +- amd64 | openvswitch-brcompat | 1.4.2+git20120612-9.1~deb7u1 | - +- amd64 | openvswitch-common | 1.4.2+git20120612-9.1~deb7u1 | - +- amd64 | openvswitch-controller | 1.4.2+git20120612-9.1~deb7u1 | - +- amd64 | openvswitch-dbg | 1.4.2+git20120612-9.1~deb7u1 | - +- amd64 | openvswitch-ipsec | 1.4.2+git20120612-9.1~deb7u1 | - +- amd64 | openvswitch-switch | 1.4.2+git20120612-9.1~deb7u1 | - +- amd64 | openwalnut-modules | 1.2.5-1.1+b1 | - +- amd64 | openwalnut-qt4 | 1.2.5-1.1+b1 | - +- amd64 | openwince-include | 0.3.2-3.1 | - +- amd64 | openwince-jtag | 0.5.1-6 | - +- amd64 | openyahtzee | 1.9.1-1+b1 | - +- amd64 | ophcrack | 3.4.0-2 | - +- amd64 | ophcrack-cli | 3.4.0-2 | - +- amd64 | oping | 1.6.2-1 | - +- amd64 | opj2dat | 20080225-2.1 | - +- amd64 | opt | 3.19-1.1 | - +- amd64 | optgeo | 2.11-3 | - +- amd64 | optipng | 0.6.4-1 | - +- amd64 | opus-tools | 0.1.2-1 | - +- amd64 | opus-tools-dbg | 0.1.2-1 | - +- amd64 | orage | 4.8.3-2 | - +- amd64 | orange | 0.4-2 | - +- amd64 | orbit2 | 1:2.14.19-0.1 | - +- amd64 | orbit2-nameserver | 1:2.14.19-0.1 | - +- amd64 | orbital-eunuchs-sniper | 1.30+svn20070601-2 | - +- amd64 | oregano | 0.70-1 | - +- amd64 | original-awk | 2011-08-10-2 | - +- amd64 | oroborus | 2.0.20 | - +- amd64 | orpie | 1.5.1-10 | - +- amd64 | orville-write | 2.55-2.3 | - +- amd64 | os-prober | 1.58 | - +- amd64 | osdclock | 0.5-23 | - +- amd64 | osdsh | 0.7.0-10 | - +- amd64 | osgearth | 2.0+dfsg-4+b3 | - +- amd64 | osm2pgsql | 0.80.0+r27899-4 | - +- amd64 | osmjs | 0.0~20111213-g7f3500a-3+b2 | - +- amd64 | osmo | 0.2.10+svn922-2+b1 | - +- amd64 | osmo-dbg | 0.2.10+svn922-2+b1 | - ++ amd64 | osmo-sdr | - | 0.1.7.cd37e9-2~bpo70+1 +- amd64 | osmpbf-bin | 1.2.1-3 | - +- amd64 | osptoolkit | 3.4.2-1+b1 | - +- amd64 | oss-compat | 2 | - +- amd64 | oss-preserve | 1.1-6 | - +- amd64 | oss4-base | 4.2-build2006-2+deb7u1 | - +- amd64 | oss4-dkms | 4.2-build2006-2+deb7u1 | - +- amd64 | oss4-gtk | 4.2-build2006-2+deb7u1 | - +- amd64 | oss4-source | 4.2-build2006-2+deb7u1 | - +- amd64 | ossim-core | 1.7.21-4 | - +- amd64 | otags | 3.12.5-1 | - +- amd64 | otcl-dbg | 1.14+dfsg-2 | - +- amd64 | otcl-shells | 1.14+dfsg-2 | - +- amd64 | otf-trace | 1.10.2+dfsg-2 | - +- amd64 | otf2bdf | 3.1-2 | - +- amd64 | otp | 1:1.2.1-1 | - +- amd64 | otpw-bin | 1.3-2 | - +- amd64 | otter | 3.3f-1.1 | - +- amd64 | outguess | 1:0.2-7 | - +- amd64 | overgod | 1.0-1.1+b1 | - +- amd64 | ovito | 0.9.5-2 | - +- amd64 | ow-shell | 2.8p15-1 | - +- amd64 | owfs-dbg | 2.8p15-1 | - +- amd64 | owfs-fuse | 2.8p15-1 | - +- amd64 | owftpd | 2.8p15-1 | - +- amd64 | owhttpd | 2.8p15-1 | - +- amd64 | owl | 2.2.2-1.1+b3 | - ++ amd64 | owncloud-client | - | 1.5.0+dfsg-4~bpo70+1 ++ amd64 | owncloud-client-cmd | - | 1.5.0+dfsg-4~bpo70+1 +- amd64 | owserver | 2.8p15-1 | - +- amd64 | owx | 0~20110415-3.1 | - +- amd64 | oxref | 0.90.10-1 | - +- amd64 | p0f | 2.0.8-2 | - +! amd64 | p11-kit | 0.12-3 | 0.20.2-1~bpo70+1 +- amd64 | p3scan | 2:2.3.2-8 | - +- amd64 | p7zip | 9.20.1~dfsg.1-4 | - +- amd64 | p7zip-full | 9.20.1~dfsg.1-4 | - +- amd64 | p910nd | 0.95-1 | - +- amd64 | pacemaker | 1.1.7-1 | - +- amd64 | pacemaker-dev | 1.1.7-1 | - +- amd64 | pachi | 1:1.0-6 | - +- amd64 | packagekit | 0.7.6-3 | - +- amd64 | packagekit-backend-aptcc | 0.7.6-3 | - +- amd64 | packagekit-backend-smart | 0.7.6-3 | - +- amd64 | packagekit-dbg | 0.7.6-3 | - +- amd64 | packagekit-gtk3-module | 0.7.6-3 | - +- amd64 | packagekit-tools | 0.7.6-3 | - +- amd64 | packagesearch | 2.7.3 | - +- amd64 | packeth | 1.6.5-2 | - +- amd64 | packit | 1.0-2 | - +- amd64 | packup | 0.6-1 | - +- amd64 | pacman | 10-17 | - +- amd64 | pacman4console | 1.2-2 | - +- amd64 | paco | 2.0.9-2 | - +- amd64 | pads | 1.2-11 | - +- amd64 | paje.app | 1.98-1+b1 | - +- amd64 | pal | 0.4.3-8 | - +- amd64 | palapeli | 4:4.8.4-3 | - +- amd64 | palbart | 2.4-7 | - +- amd64 | palp | 1.1-1.2 | - +- amd64 | pam-pkcs11-dbg | 0.6.8-1 | - +- amd64 | paman | 0.9.4-1 | - +- amd64 | pamusb-common | 0.5.0-4 | - +- amd64 | pan | 0.139-2 | - +- amd64 | pandoc | 1.9.4.2-2 | - +- amd64 | pango-graphite | 0.9.3-0.2 | - +- amd64 | pango-graphite-dbg | 0.9.3-0.2 | - +- amd64 | paperkey | 1.2-1 | - +- amd64 | paprefs | 0.9.10-1 | - +- amd64 | paps | 0.6.8-6 | - +- amd64 | par | 1.52-3 | - +- amd64 | par2 | 0.4-11 | - +! amd64 | paraview | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | paraview-dev | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | paraview-python | 3.14.1-6 | 4.0.1-1~bpo70+1 +- amd64 | parcellite | 1.0.2~rc5-1 | - +- amd64 | parchive | 1.1-4 | - +! amd64 | pari-gp | 2.5.1-2 | 2.5.5-1~bpo70+1 +- amd64 | pari-gp2c | 0.0.7pl3-1 | - +- amd64 | paris-traceroute | 0.92-dev-2 | - +- amd64 | parley | 4:4.8.4-1 | - +- amd64 | parole | 0.2.0.6-1+b1 | - +- amd64 | parole-dev | 0.2.0.6-1+b1 | - +- amd64 | parprouted | 0.70-1 | - +- amd64 | parrot | 4.0.0-3 | - +- amd64 | parrot-devel | 4.0.0-3 | - +- amd64 | parrot-minimal | 4.0.0-3 | - +- amd64 | parsec47 | 0.2.dfsg1-4 | - +- amd64 | parser3-cgi | 3.4.2-2 | - +- amd64 | parser3-common | 3.4.2-2 | - +- amd64 | parser3-dev | 3.4.2-2 | - +- amd64 | parser3-mysql | 10.4-1 | - +- amd64 | partclone | 0.2.48-1 | - +- amd64 | parted | 2.3-12 | - +- amd64 | partimage | 0.6.8-2.2 | - +- amd64 | partimage-server | 0.6.8-2.2 | - +- amd64 | partitionmanager | 1.0.2-1 | - +- amd64 | pasco | 1.0+20040505-5+b1 | - +- amd64 | pasmo | 0.5.3-6 | - +- amd64 | passage | 4+dfsg1-1 | - +- amd64 | passepartout | 0.7.1-1 | - +- amd64 | passwd | 1:4.1.5.1-1 | - +- amd64 | passwdqc | 1.2.0-1 | - +- amd64 | passwordmaker-cli | 1.5+dfsg-3 | - +- amd64 | patch | 2.6.1-3 | - +- amd64 | patchage | 0.5.0+dfsg0-0.1+b1 | - +- amd64 | patchutils | 0.3.2-1.1 | - +- amd64 | pathfinder-utils | 1.1.3-0.4+b1 | - +- amd64 | pathfinderd | 1.1.3-0.4+b1 | - +- amd64 | pathogen | 1.1.1-3 | - +- amd64 | paulstretch | 2.2-2-2 | - +- amd64 | pavucontrol | 1.0-1 | - +- amd64 | pavuk | 0.9.35-2.3 | - +- amd64 | pavumeter | 0.9.3-4 | - +- amd64 | paw | 1:2.14.04.dfsg.2-8 | - +- amd64 | paw++ | 1:2.14.04.dfsg.2-8 | - +- amd64 | pawserv | 20061220+dfsg3-2 | - +- amd64 | pax | 1:20120606-2 | - +- amd64 | pax-utils | 0.2.3-2 | - +- amd64 | paxctl | 0.7-1 | - +- amd64 | pbs-drmaa-dev | 1.0.10-3 | - +- amd64 | pbs-drmaa1 | 1.0.10-3 | - +- amd64 | pbuilder-uml | 0.213 | - +- amd64 | pbzip2 | 1.1.8-1 | - +- amd64 | pcal | 4.11.0-3 | - ++ amd64 | pcapfix | - | 1.0.2-2~bpo70+1 +- amd64 | pcaputils | 0.8-1 | - +- amd64 | pcb-gtk | 20110918-7 | - +- amd64 | pcb-lesstif | 20110918-7 | - +- amd64 | pcb2gcode | 1.1.4-git20110915-1+b1 | - +- amd64 | pcb2gcode-dbg | 1.1.4-git20110915-1+b1 | - +- amd64 | pccts | 1.33MR33-6 | - +- amd64 | pcf2bdf | 1.04-4 | - +- amd64 | pchar | 1.5-1 | - +- amd64 | pciutils | 1:3.1.9-6 | - +- amd64 | pclock | 0.13.1-6 | - +! amd64 | pcmanfm | 0.9.10-3 | 1.1.2-1~bpo70+1 +! amd64 | pcmanfm-dbg | 0.9.10-3 | 1.1.2-1~bpo70+1 +- amd64 | pcmanx-gtk2 | 1.1-2 | - +- amd64 | pcmciautils | 018-8 | - +- amd64 | pconf-detect | 0.5-12 | - +- amd64 | pconsole | 1.0-9 | - +- amd64 | pcregrep | 1:8.30-5 | - +- amd64 | pcsc-tools | 1.4.20-1 | - +- amd64 | pcscada-dbg | 0.7.1-4 | - +- amd64 | pcscd | 1.8.4-1+deb7u1 | - +- amd64 | pcsxr | 1.9.92-4 | - +- amd64 | pcsxr-dbg | 1.9.92-4 | - +- amd64 | pd-arraysize | 0.1-1 | - +- amd64 | pd-aubio | 0.3.2-4.2+b1 | - +- amd64 | pd-bassemu | 0.3-3 | - +- amd64 | pd-beatpipe | 0.1-3 | - +- amd64 | pd-boids | 1.1.1-2 | - +- amd64 | pd-bsaylor | 0.1-2 | - +- amd64 | pd-comport | 0.1-3 | - +- amd64 | pd-csound | 1:5.17.11~dfsg-3 | - +- amd64 | pd-cxc | 0.5.1-2 | - +- amd64 | pd-cyclone | 0.1~alpha55-6 | - +- amd64 | pd-earplug | 0.2-3 | - +- amd64 | pd-ekext | 0.1.1-2 | - +- amd64 | pd-ext13 | 0.17.1-2 | - +- amd64 | pd-flite | 0.02.3-1 | - +- amd64 | pd-freeverb | 1.2-3 | - +- amd64 | pd-ggee | 0.26-3 | - +- amd64 | pd-hcs | 0.1-2 | - +- amd64 | pd-hid | 0.7-1 | - +- amd64 | pd-iemambi | 0.1-2 | - +- amd64 | pd-iemmatrix | 0.2-1 | - +- amd64 | pd-iemnet | 0.1-3 | - +- amd64 | pd-libdir | 1.9-3 | - +- amd64 | pd-markex | 0.85-2 | - +- amd64 | pd-maxlib | 1.5.4-1 | - +- amd64 | pd-mjlib | 0.1.1-3 | - +- amd64 | pd-moonlib | 0.2-2 | - +- amd64 | pd-motex | 1.1.4-3 | - +- amd64 | pd-osc | 0.1-2 | - +- amd64 | pd-pddp | 0.2-1 | - +- amd64 | pd-pdogg | 0.25.1-1 | - +- amd64 | pd-pdp | 1:0.12.5-2 | - +- amd64 | pd-plugin | 0.2.1-3 | - +- amd64 | pd-pmpd | 0.9-4 | - +- amd64 | pd-readanysf | 0.42-1 | - +- amd64 | pd-sigpack | 0.0.4.2-2 | - +- amd64 | pd-smlib | 0.12.1-2 | - +- amd64 | pd-vbap | 1.0.3.2-1 | - +- amd64 | pd-wiimote | 0.3.2-2 | - +- amd64 | pd-windowing | 0.1-2 | - +- amd64 | pd-zexy | 2.2.5-1 | - +- amd64 | pdb2pqr | 1.8-1 | - +- amd64 | pdf-presenter-console | 3.1-1 | - +- amd64 | pdf2djvu | 0.7.12-2+b1 | - +- amd64 | pdf2svg | 0.2.1-2+b3 | - +- amd64 | pdfchain | 1:0.3.3-2 | - +- amd64 | pdfcrack | 0.11-1 | - +- amd64 | pdfcube | 0.0.4-2+b1 | - +- amd64 | pdfcube-dbg | 0.0.4-2+b1 | - +- amd64 | pdfgrep | 1.3.0-1 | - +- amd64 | pdfresurrect | 0.11-1 | - +- amd64 | pdftk | 1.44-7 | - +- amd64 | pdftoipe | 20110916-3+b1 | - +- amd64 | pdl | 1:2.4.11-4 | - +- amd64 | pdlzip | 1.3-2 | - +- amd64 | pdlzip-dbg | 1.3-2 | - +- amd64 | pdmenu | 1.3.2 | - +- amd64 | pdns-backend-geo | 3.1-4.1 | - +- amd64 | pdns-backend-ldap | 3.1-4.1 | - +- amd64 | pdns-backend-lua | 3.1-4.1 | - +- amd64 | pdns-backend-mysql | 3.1-4.1 | - +- amd64 | pdns-backend-pgsql | 3.1-4.1 | - +- amd64 | pdns-backend-pipe | 3.1-4.1 | - +- amd64 | pdns-backend-sqlite | 3.1-4.1 | - +- amd64 | pdns-backend-sqlite3 | 3.1-4.1 | - +- amd64 | pdns-recursor | 3.3-3 | - +- amd64 | pdns-recursor-dbg | 3.3-3 | - +- amd64 | pdns-server | 3.1-4.1 | - +- amd64 | pdns-server-dbg | 3.1-4.1 | - +- amd64 | pdnsd | 1.2.8-par-3 | - +- amd64 | pdsh | 2.27-2 | - +- amd64 | pearpc | 0.4.0-5 | - +- amd64 | pecomato | 0.0.15-4 | - +- amd64 | peg-e | 1.1.0-1 | - +- amd64 | peg-solitaire | 1.2-1 | - +- amd64 | pegasus-wms | 4.0.1+dfsg-8 | - +- amd64 | pegsolitaire | 0.0.4-1 | - +- amd64 | pekwm | 0.1.14-2 | - +- amd64 | pen | 0.18.0-1 | - +- amd64 | penguin-command | 1.6.11-1 | - +- amd64 | pennmush | 1.8.2p8-1.1+b1 | - +- amd64 | pennmush-mysql | 1.8.2p8-1.1+b1 | - +- amd64 | pente | 2.2.5-7 | - +- amd64 | pentobi | 1.1-1+b1 | - ++ amd64 | pepper | - | 0.3.2-2~bpo70+1 ++ amd64 | pepperflashplugin-nonfree | - | 1.2~bpo70+1 +- amd64 | perceptualdiff | 1.1.1-1 | - +- amd64 | perdition | 1.19~rc5-1+b1 | - +- amd64 | perdition-ldap | 1.19~rc5-1+b1 | - +- amd64 | perdition-mysql | 1.19~rc5-1+b1 | - +- amd64 | perdition-odbc | 1.19~rc5-1+b1 | - +- amd64 | perdition-postgresql | 1.19~rc5-1+b1 | - +- amd64 | perforate | 1.2-5 | - +- amd64 | performous | 0.6.1-6 | - +- amd64 | performous-dbg | 0.6.1-6 | - +- amd64 | performous-tools | 0.6.1-6 | - +- amd64 | perftest | 1.2-OFED-1.4.2-2 | - +- amd64 | perl | 5.14.2-21+deb7u1 | - +- amd64 | perl-base | 5.14.2-21+deb7u1 | - +- amd64 | perl-byacc | 2.0-7 | - +- amd64 | perl-debug | 5.14.2-21+deb7u1 | - +- amd64 | perl-tk | 1:804.030-1 | - +- amd64 | perlmagick | 8:6.7.7.10-5+deb7u2 | - +- amd64 | petitboot | 12.03.29.20.47-g45e2534-2 | - +- amd64 | petitboot-twin | 12.03.29.20.47-g45e2534-2 | - +- amd64 | petri-foo | 0.1.5-1 | - +- amd64 | petri-foo-dbg | 0.1.5-1 | - +- amd64 | petris | 1.0.1-8 | - +- amd64 | pev | 0.40-1 | - +- amd64 | pexec | 1.0~rc8-2 | - +- amd64 | pfb2t1c2pfb | 0.3-9 | - +- amd64 | pfqueue | 0.5.6-8 | - +- amd64 | pfqueue-dbg | 0.5.6-8 | - +- amd64 | pfsglview | 1.8.5-1 | - +- amd64 | pfstmo | 1.4-1 | - +- amd64 | pfstools | 1.8.5-1 | - +- amd64 | pfstools-dbg | 1.8.5-1 | - +- amd64 | pfsview | 1.8.5-1 | - +- amd64 | pgadmin3 | 1.14.2-2 | - +- amd64 | pgadmin3-dbg | 1.14.2-2 | - +- amd64 | pgagent | 3.2.1-1 | - +- amd64 | pgapack | 1.1.1-3 | - +- amd64 | pgbouncer | 1.5.2-4 | - +- amd64 | pgdbf | 0.5.5-1 | - +- amd64 | pgn-extract | 16.7-2 | - +- amd64 | pgn2web | 0.4-1 | - +- amd64 | pgpdump | 0.27-1 | - +- amd64 | pgpgpg | 0.13-9 | - +- amd64 | pgpool2 | 3.1.3-5 | - +- amd64 | phalanx | 22+d051004-13.1 | - +- amd64 | phasex | 0.12.0+m1-6 | - +- amd64 | phasex-dbg | 0.12.0+m1-6 | - +- amd64 | phlipple | 0.8.2-1+b1 | - +- amd64 | phlipple-dbg | 0.8.2-1+b1 | - +- amd64 | phnxdeco | 0.33-3 | - +- amd64 | phonefsod | 0.1+git20110827-3 | - +- amd64 | phoneui-apps | 0.1+git20111214-2 | - +- amd64 | phoneuid | 0.1+git20110506-2+b1 | - +- amd64 | phonon | 4:4.6.0.0-3 | - +- amd64 | phonon-backend-gstreamer | 4:4.6.0.0-2 | - +- amd64 | phonon-backend-gstreamer-dbg | 4:4.6.0.0-2 | - +- amd64 | phonon-backend-null | 4:4.6.0.0-3 | - +- amd64 | phonon-backend-vlc | 0.6.0-1 | - +- amd64 | phonon-backend-vlc-dbg | 0.6.0-1 | - +- amd64 | phonon-dbg | 4:4.6.0.0-3 | - +- amd64 | photopc | 3.05-6 | - +- amd64 | photoprint | 0.4.2~pre2-2+b1 | - +- amd64 | php-apc | 3.1.13-1 | - +- amd64 | php-imlib | 0.7-4.1 | - +- amd64 | php-wikidiff2 | 0.0.1+svn109581-1 | - +- amd64 | php-zeroc-ice | 3.4.2-8.2 | - +- amd64 | php5-adodb | 5.04-7+b1 | - +- amd64 | php5-cgi | 5.4.4-14+deb7u7 | - +- amd64 | php5-cli | 5.4.4-14+deb7u7 | - +- amd64 | php5-common | 5.4.4-14+deb7u7 | - +- amd64 | php5-curl | 5.4.4-14+deb7u7 | - +- amd64 | php5-dbg | 5.4.4-14+deb7u7 | - +- amd64 | php5-dev | 5.4.4-14+deb7u7 | - +- amd64 | php5-enchant | 5.4.4-14+deb7u7 | - +- amd64 | php5-exactimage | 0.8.5-5+deb7u3 | - +- amd64 | php5-ffmpeg | 0.6.0-2.2 | - +- amd64 | php5-fpm | 5.4.4-14+deb7u7 | - +- amd64 | php5-gd | 5.4.4-14+deb7u7 | - +- amd64 | php5-gdcm | 2.2.0-14.1 | - +- amd64 | php5-geoip | 1.0.7-8 | - +- amd64 | php5-gmp | 5.4.4-14+deb7u7 | - +- amd64 | php5-imagick | 3.1.0~rc1-1+b2 | - +- amd64 | php5-imap | 5.4.4-14+deb7u7 | - +- amd64 | php5-interbase | 5.4.4-14+deb7u7 | - +- amd64 | php5-intl | 5.4.4-14+deb7u7 | - +- amd64 | php5-lasso | 2.3.6-2 | - +- amd64 | php5-ldap | 5.4.4-14+deb7u7 | - +- amd64 | php5-librdf | 1.0.14.1-1 | - +- amd64 | php5-mapscript | 6.0.1-3.2+deb7u2 | - +- amd64 | php5-mcrypt | 5.4.4-14+deb7u7 | - +- amd64 | php5-memcache | 3.0.6-6 | - +- amd64 | php5-memcached | 2.0.1-6 | - +- amd64 | php5-ming | 1:0.4.4-1.1 | - ++ amd64 | php5-mongo | - | 1.4.5-1~bpo70+1 +- amd64 | php5-mysql | 5.4.4-14+deb7u7 | - +- amd64 | php5-mysqlnd | 5.4.4-14+deb7u7 | - +- amd64 | php5-odbc | 5.4.4-14+deb7u7 | - +- amd64 | php5-pgsql | 5.4.4-14+deb7u7 | - +- amd64 | php5-ps | 1.3.7-1 | - +- amd64 | php5-pspell | 5.4.4-14+deb7u7 | - +- amd64 | php5-radius | 1.2.5-2.3+deb7u1 | - +- amd64 | php5-recode | 5.4.4-14+deb7u7 | - +! amd64 | php5-remctl | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | php5-rrd | 1.1.0-1 | - +- amd64 | php5-sasl | 0.1.0-1.2+b1 | - +- amd64 | php5-snmp | 5.4.4-14+deb7u7 | - +- amd64 | php5-sqlite | 5.4.4-14+deb7u7 | - +- amd64 | php5-svn | 1.0.1-1.2 | - +- amd64 | php5-sybase | 5.4.4-14+deb7u7 | - +- amd64 | php5-tidy | 5.4.4-14+deb7u7 | - +- amd64 | php5-tokyo-tyrant | 0.6.0-2+b1 | - +- amd64 | php5-vtkgdcm | 2.2.0-14.1 | - +- amd64 | php5-xcache | 2.0.0-4 | - +- amd64 | php5-xdebug | 2.2.1-2 | - +- amd64 | php5-xmlrpc | 5.4.4-14+deb7u7 | - +- amd64 | php5-xsl | 5.4.4-14+deb7u7 | - +- amd64 | phyml | 2:20110919-1 | - +- amd64 | pi | 1.3.2-1.2 | - +- amd64 | pia | 3.102-3 | - +- amd64 | pianobar | 2012.05.06-2 | - +- amd64 | pianobooster | 0.6.4-3.1 | - +- amd64 | pianobooster-dbg | 0.6.4-3.1 | - +- amd64 | picard | 1.0-1 | - +- amd64 | picocom | 1.7-1 | - +- amd64 | picolisp | 3.1.0.7-1 | - +- amd64 | picosat | 936-4 | - +- amd64 | picprog | 1.9.1-2 | - +- amd64 | picviz | 0.5-1+b1 | - +- amd64 | pida | 0.5.1-6 | - +- amd64 | pidentd | 3.0.19.ds1-7 | - +! amd64 | pidgin | 2.10.6-3 | 2.10.7-2~bpo70+1 +- amd64 | pidgin-audacious | 2.0.0-3 | - +- amd64 | pidgin-awayonlock | 0.5.2-1 | - +- amd64 | pidgin-blinklight | 0.11.1-1 | - +! amd64 | pidgin-dbg | 2.10.6-3 | 2.10.7-2~bpo70+1 +- amd64 | pidgin-encryption | 3.1-1 | - +- amd64 | pidgin-extprefs | 0.7-2 | - +- amd64 | pidgin-festival | 2.4-2 | - +- amd64 | pidgin-gmchess | 0.02-1 | - +- amd64 | pidgin-guifications | 2.16-2 | - +- amd64 | pidgin-hotkeys | 0.2.4-1.2 | - +- amd64 | pidgin-latex | 1.4.4-2 | - +- amd64 | pidgin-librvp | 0.9.7-2 | - +- amd64 | pidgin-microblog | 0.3.0-3 | - +- amd64 | pidgin-microblog-dbg | 0.3.0-3 | - +- amd64 | pidgin-mpris | 0.2.3-2 | - +- amd64 | pidgin-mra | 20100304-1 | - +- amd64 | pidgin-mra-dbg | 20100304-1 | - +- amd64 | pidgin-musictracker | 0.4.22-2 | - +- amd64 | pidgin-nateon | 0.0.0.svn147-1 | - +- amd64 | pidgin-nateon-dbg | 0.0.0.svn147-1 | - +- amd64 | pidgin-openfetion | 0.3-1 | - +! amd64 | pidgin-otr | 3.2.1-3+deb7u1 | 4.0.0-2~bpo70+1 +- amd64 | pidgin-plugin-pack | 2.6.3-2 | - +- amd64 | pidgin-privacy-please | 0.7.1-1 | - +- amd64 | pidgin-sipe | 1.13.1-2 | - +- amd64 | pidgin-twitter | 0.9.2.1-3 | - +- amd64 | pigz | 2.2.4-3 | - +- amd64 | pilot | 2.02+dfsg-2 | - +- amd64 | pilot-link | 0.12.5-5 | - +- amd64 | pimd | 2.1.8-2 | - +- amd64 | pinball | 0.3.1-13.1 | - +- amd64 | pinball-dev | 0.3.1-13.1 | - +- amd64 | pinentry-curses | 0.8.1-1 | - +- amd64 | pinentry-gtk2 | 0.8.1-1 | - +- amd64 | pinentry-qt4 | 0.8.1-1 | - +- amd64 | pinfo | 0.6.9-5.1 | - +- amd64 | pingus | 0.7.6-1.1 | - +- amd64 | pinot | 1.0-1 | - +- amd64 | pinpoint | 1:0.1.5~20120318-1+b1 | - +- amd64 | pioneers | 14.1-1 | - +- amd64 | pioneers-console | 14.1-1 | - +- amd64 | pioneers-meta-server | 14.1-1 | - +- amd64 | pipebench | 0.40-3+b1 | - +- amd64 | pipemeter | 1.1.3-1 | - +- amd64 | pipenightdreams | 0.10.0-13 | - +- amd64 | pipewalker | 0.9.4-1 | - +- amd64 | pixelize | 1.0.0-1 | - +- amd64 | pixmap | 2.6pl4-18 | - +- amd64 | pkcs11-data | 0.7.4-1 | - +- amd64 | pkcs11-dump | 0.3.4-1 | - +- amd64 | pkg-config | 0.26-1 | - +- amd64 | pkglab | 1.4.2-13+b1 | - +- amd64 | pktstat | 1.8.5-3 | - +- amd64 | plan | 1.10.1-2 | - +- amd64 | planner | 0.14.6-1 | - +- amd64 | planner-dev | 0.14.6-1 | - +- amd64 | plasma-containments-addons | 4:4.8.4-1+b2 | - +- amd64 | plasma-dataengines-addons | 4:4.8.4-1+b2 | - +- amd64 | plasma-dataengines-workspace | 4:4.8.4-6 | - +- amd64 | plasma-dataengines-yawp | 0.4.2-1 | - +- amd64 | plasma-desktop | 4:4.8.4-6 | - +- amd64 | plasma-netbook | 4:4.8.4-6 | - +- amd64 | plasma-runner-installer | 1.3.0-2 | - +- amd64 | plasma-runners-addons | 4:4.8.4-1+b2 | - +- amd64 | plasma-scriptengine-javascript | 4:4.8.4-2 | - +- amd64 | plasma-scriptengine-superkaramba | 4:4.8.4-3 | - +- amd64 | plasma-scriptengine-webkit | 4:4.8.4-6 | - +- amd64 | plasma-wallpapers-addons | 4:4.8.4-1+b2 | - +- amd64 | plasma-widget-adjustableclock | 2.6.1-1+b2 | - +- amd64 | plasma-widget-amule | 2.3.1-9 | - +! amd64 | plasma-widget-cwp | 1.6.11-1 | 1.10.0-1~bpo70+1 +- amd64 | plasma-widget-fastuserswitch | 0.2.1-1+b1 | - +- amd64 | plasma-widget-folderview | 4:4.8.4-2 | - +- amd64 | plasma-widget-kimpanel | 4:4.8.4-1+b2 | - +- amd64 | plasma-widget-ktorrent | 4.2.1-1 | - +- amd64 | plasma-widget-lancelot | 4:4.8.4-1+b2 | - +- amd64 | plasma-widget-menubar | 0.1.17-1 | - +- amd64 | plasma-widget-message-indicator | 0.5.8-3 | - +- amd64 | plasma-widget-networkmanagement | 0.9.0.3-1 | - +- amd64 | plasma-widget-networkmanagement-dbg | 0.9.0.3-1 | - +- amd64 | plasma-widget-smooth-tasks | 1flupp0~hg20120610-2 | - +- amd64 | plasma-widget-telepathy-chat | 0.4.0-1 | - +- amd64 | plasma-widget-telepathy-presence | 0.4.0-1 | - +- amd64 | plasma-widget-telepathy-presence-dbg | 0.4.0-1 | - +- amd64 | plasma-widget-translatoid | 1.30+svn1226145-1 | - +- amd64 | plasma-widget-uim | 1:1.8.1-4 | - +- amd64 | plasma-widget-yawp | 0.4.2-1 | - +- amd64 | plasma-widget-yawp-dbg | 0.4.2-1 | - +- amd64 | plasma-widgets-addons | 4:4.8.4-1+b2 | - +- amd64 | plasma-widgets-workspace | 4:4.8.4-6 | - +- amd64 | plastimatch | 1.5.11+dfsg0-1 | - +- amd64 | playmidi | 2.4debian-9.2 | - +- amd64 | plee-the-bear | 0.6.0-1+b1 | - +- amd64 | plink | 1.07-3 | - +- amd64 | plopfolio.app | 0.1.0-6+b3 | - +- amd64 | plotdrop | 0.5.2-3 | - +- amd64 | ploticus | 2.41-5 | - +- amd64 | plotmm-examples | 0.1.2-2 | - +- amd64 | plotutils | 2.6-3 | - +- amd64 | plplot-tcl | 5.9.9-5 | - +- amd64 | plplot-tcl-dev | 5.9.9-5 | - +- amd64 | plplot11-driver-cairo | 5.9.9-5 | - +- amd64 | plplot11-driver-gd | 5.9.9-5 | - +- amd64 | plplot11-driver-qt | 5.9.9-5 | - +- amd64 | plplot11-driver-wxwidgets | 5.9.9-5 | - +- amd64 | plplot11-driver-xwin | 5.9.9-5 | - +- amd64 | plptools | 1.0.9-2.4 | - +- amd64 | plptools-dev | 1.0.9-2.4 | - +- amd64 | plucker | 1.8-34 | - +- amd64 | plymouth | 0.8.5.1-5 | - +- amd64 | plymouth-dev | 0.8.5.1-5 | - +- amd64 | plymouth-drm | 0.8.5.1-5 | - +- amd64 | plymouth-x11 | 0.8.5.1-5 | - +- amd64 | plzip | 0.9-2 | - +- amd64 | plzip-dbg | 0.9-2 | - +- amd64 | pmacct | 0.14.0-1.1 | - +- amd64 | pmake | 1.111-3.2 | - +- amd64 | pmccabe | 2.6 | - +- amd64 | pmidi | 1.6.0-5 | - +- amd64 | pmk | 0.10.4-1 | - +- amd64 | pmount | 0.9.23-2 | - +- amd64 | pms | 0.41-1 | - +- amd64 | pmw | 1:4.24-1 | - +- amd64 | pmx | 2.6.18-2 | - +- amd64 | png23d | 1.10-1 | - +- amd64 | png2html | 1.1-5 | - +- amd64 | pngcheck | 2.3.0-5 | - +- amd64 | pngcrush | 1.7.9-1 | - +- amd64 | pngmeta | 1.11-6 | - +- amd64 | pngnq | 1.0-2 | - +- amd64 | pngphoon | 1.1-2 | - +- amd64 | pngquant | 1.0-4.1 | - +- amd64 | pngtools | 0.4-1 | - +- amd64 | pnp4nagios-bin | 0.6.16-2 | - +- amd64 | pnscan | 1.11-6 | - +- amd64 | poa | 2.0+20060928-3 | - +- amd64 | poc-streamer | 0.4.2-3 | - +- amd64 | poe.app | 0.5.1-5+b3 | - +! amd64 | poedit | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! amd64 | poedit-dbg | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! amd64 | pokerth | 0.9.5-1 | 1.0.1-2~bpo70+1 +! amd64 | pokerth-server | 0.9.5-1 | 1.0.1-2~bpo70+1 +- amd64 | policycoreutils | 2.1.10-9 | - +- amd64 | policykit-1 | 0.105-3 | - +- amd64 | policykit-1-gnome | 0.105-2 | - +- amd64 | polipo | 1.0.4.1-1.2 | - +- amd64 | polkit-kde-1 | 0.99.0-3 | - +- amd64 | polyglot | 1.4.67b-1 | - +- amd64 | polygraph | 4.3.2-1.1 | - +- amd64 | polylib-utils | 5.22.5-3+dfsg | - +- amd64 | polyml | 5.2.1-1.1 | - +- amd64 | polyorb-servers | 2.8~20110207-5.1 | - +- amd64 | pommed | 1.39~dfsg-2+b1 | - +- amd64 | pong2 | 0.1.3-1+b1 | - +- amd64 | popa3d | 1.0.2-7 | - +- amd64 | poppassd | 1.8.5-4 | - +- amd64 | poppler-dbg | 0.18.4-6 | - +- amd64 | poppler-utils | 0.18.4-6 | - +- amd64 | populations | 1.2.33+svn0120106-2.1 | - +- amd64 | pork | 0.99.8.1-2.1 | - +- amd64 | portabase | 2.0+git20110117-1 | - +- amd64 | portaudio19-dev | 19+svn20111121-1 | - +- amd64 | portreserve | 0.0.4-1 | - +- amd64 | portsentry | 1.2-13 | - +- amd64 | portslave | 2010.04.19.1 | - +- amd64 | posh | 0.10.2 | - +- amd64 | posixtestsuite | 1.5.2-4 | - +- amd64 | postal | 0.73 | - ++ amd64 | postbooks | - | 4.1.0-3~bpo70+1 ++ amd64 | postbooks-updater | - | 2.2.5-4~bpo70+1 +- amd64 | poster | 1:20050907-1 | - +- amd64 | posterazor | 1.5.1-2 | - +- amd64 | postfix | 2.9.6-2 | - +- amd64 | postfix-cdb | 2.9.6-2 | - +- amd64 | postfix-gld | 1.7-3+b1 | - +- amd64 | postfix-ldap | 2.9.6-2 | - +- amd64 | postfix-mysql | 2.9.6-2 | - +- amd64 | postfix-pcre | 2.9.6-2 | - +- amd64 | postfix-pgsql | 2.9.6-2 | - +- amd64 | postgis | 1.5.3-2 | - +- amd64 | postgresql-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-9.1-dbg | 9.1.11-0wheezy1 | - +- amd64 | postgresql-9.1-debversion | 1.0.6-1+b1 | - +- amd64 | postgresql-9.1-ip4r | 1.05-0.1 | - +- amd64 | postgresql-9.1-orafce | 3.0.4-1 | - +- amd64 | postgresql-9.1-pgfincore | 1.1-1 | - +- amd64 | postgresql-9.1-pgmemcache | 2.0.6-1.1+b1 | - +- amd64 | postgresql-9.1-pgmp | 1.0.0-4 | - +- amd64 | postgresql-9.1-pgpool2 | 3.1.3-5 | - +- amd64 | postgresql-9.1-pljava-gcj | 1.4.3-2 | - +- amd64 | postgresql-9.1-pllua | 1:0.3.2-4 | - +- amd64 | postgresql-9.1-plproxy | 2.4-1 | - +- amd64 | postgresql-9.1-plr | 1:8.3.0.13-1 | - +- amd64 | postgresql-9.1-plsh | 1.3-5 | - +- amd64 | postgresql-9.1-postgis | 1.5.3-2 | - +- amd64 | postgresql-9.1-prefix | 1.1.1-1 | - +- amd64 | postgresql-9.1-preprepare | 0.5-1 | - +- amd64 | postgresql-client-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-contrib-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-filedump | 9.1.0-1 | - +- amd64 | postgresql-plperl-8.4 | 8.4.19-0wheezy1 | - +- amd64 | postgresql-plperl-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-plpython-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-plpython3-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-pltcl-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postgresql-server-dev-9.1 | 9.1.11-0wheezy1 | - +- amd64 | postmark | 1.51-7 | - +- amd64 | postpone | 0.2 | - +- amd64 | potool | 0.12-1 | - +- amd64 | potrace | 1.10-1 | - +- amd64 | pound | 2.6-2 | - +- amd64 | powerman | 2.3.5-1 | - +- amd64 | powermanga | 0.90-dfsg-2 | - +- amd64 | powermgmt-base | 1.31 | - +- amd64 | powertop | 2.0-0.3 | - +- amd64 | powstatd | 1.5.1-9.1 | - +- amd64 | poxml | 4:4.8.4+dfsg-1 | - +- amd64 | pp-popularity-contest | 1.0.5-1 | - +- amd64 | pp-popularity-contest-dbg | 1.0.5-1 | - +- amd64 | ppdfilt | 2:0.10-7.1 | - +- amd64 | pperl | 0.25-6+b1 | - +- amd64 | ppl-dev | 0.11.2-8 | - +- amd64 | ppmd | 10.1-5 | - +- amd64 | ppp | 2.4.5-5.1+b1 | - +- amd64 | pppdcapiplugin | 1:3.25+dfsg1-3.3~deb7u1 | - +- amd64 | pppoe | 3.8-3 | - +- amd64 | pps-tools | 0.20120406+g0deb9c7e-2 | - +- amd64 | ppsh | 1.1.1-4+b1 | - +- amd64 | ppthtml | 0.5.1-6 | - +- amd64 | pptp-linux | 1.7.2-7 | - +- amd64 | pptpd | 1.3.4-5.2 | - +- amd64 | pqiv | 0.12-1 | - +- amd64 | praat | 5.3.16-1 | - +- amd64 | prads | 0.3.0-1 | - +- amd64 | prayer | 1.3.4-dfsg1-1 | - +- amd64 | prayer-accountd | 1.3.4-dfsg1-1 | - +- amd64 | prayer-templates-dev | 1.3.4-dfsg1-1 | - +- amd64 | prboom | 2:2.5.0+dfsg1-6 | - +- amd64 | predict | 2.2.3-3.1 | - +- amd64 | predict-gsat | 2.2.3-3.1 | - +- amd64 | prelink | 0.0.20090925-6 | - +- amd64 | preload | 0.6.4-2 | - +- amd64 | prelude-lml | 1.0.0-4 | - +- amd64 | prelude-manager | 1.0.1-4 | - +- amd64 | premake | 3.7-1 | - +- amd64 | prerex | 6.4.0-3 | - +- amd64 | presage | 0.8.8-1 | - +- amd64 | presage-dbg | 0.8.8-1 | - +- amd64 | pretzel | 2.0n-2-0.3 | - +- amd64 | preview.app | 0.8.5-9 | - +- amd64 | price.app | 1.1.0-1 | - +- amd64 | primaxscan | 0.93beta3-10+b1 | - +- amd64 | primer3 | 2.2.3-1 | - +- amd64 | primrose | 6+dfsg1-2 | - ++ amd64 | primus | - | 0~20130904-1~bpo70+1 ++ amd64 | primus-libs | - | 0~20130904-1~bpo70+1 ++ amd64 | primus-libs-dbg | - | 0~20130904-1~bpo70+1 +- amd64 | printer-driver-c2050 | 0.3b-4 | - +- amd64 | printer-driver-c2esp | 24-2 | - +- amd64 | printer-driver-cjet | 0.8.9-3 | - +- amd64 | printer-driver-escpr | 1.1.1-2 | - +- amd64 | printer-driver-foo2zjs | 20120510dfsg0-1 | - +- amd64 | printer-driver-gutenprint | 5.2.9-1 | - +- amd64 | printer-driver-hpcups | 3.12.6-3.1+deb7u1 | - +- amd64 | printer-driver-hpijs | 3.12.6-3.1+deb7u1 | - +- amd64 | printer-driver-m2300w | 0.51-7 | - +- amd64 | printer-driver-min12xxw | 0.0.9-6 | - +- amd64 | printer-driver-pnm2ppa | 1.13-4 | - +- amd64 | printer-driver-ptouch | 1.3-4 | - +- amd64 | printer-driver-pxljr | 1.3+repack0-2 | - +- amd64 | printer-driver-splix | 2.0.0+svn306-2 | - +- amd64 | printfilters-ppd | 2.13-11.1 | - +- amd64 | prips | 0.9.9-1 | - +- amd64 | pristine-tar | 1.25+deb7u1 | - +- amd64 | privbind | 1.2-1.1 | - +- amd64 | privoxy | 3.0.19-2 | - +- amd64 | probalign | 1.4-2 | - +- amd64 | probcons | 1.12-9 | - +- amd64 | probcons-extra | 1.12-9 | - +- amd64 | procinfo | 1:2.0.304-1 | - +- amd64 | procmail | 3.22-20 | - +- amd64 | procmeter3 | 3.5d-1 | - +- amd64 | procps | 1:3.3.3-3 | - +- amd64 | procserv | 2.6.0-1 | - +- amd64 | proda | 1.0-8 | - +- amd64 | profnet-bval | 1.0.21-1+wheezy1 | - +- amd64 | profnet-chop | 1.0.21-1+wheezy1 | - +- amd64 | profnet-con | 1.0.21-1+wheezy1 | - +- amd64 | profnet-dbg | 1.0.21-1+wheezy1 | - +- amd64 | profnet-isis | 1.0.21-1+wheezy1 | - +- amd64 | profnet-md | 1.0.21-1+wheezy1 | - +- amd64 | profnet-norsnet | 1.0.21-1+wheezy1 | - +- amd64 | profnet-prof | 1.0.21-1+wheezy1 | - +- amd64 | profnet-snapfun | 1.0.21-1+wheezy1 | - +- amd64 | profphd-net | 1.0.21-1+wheezy1 | - +- amd64 | profphd-utils | 1.0.9-1 | - +- amd64 | proftmb | 1.1.10-1 | - +- amd64 | proftpd-basic | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-dev | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-mod-autohost | 0.4-1+b1 | - +- amd64 | proftpd-mod-case | 0.7-1 | - +- amd64 | proftpd-mod-clamav | 0.10-1+b1 | - +- amd64 | proftpd-mod-dnsbl | 0.1.5-3+b2 | - +- amd64 | proftpd-mod-fsync | 0.2-1+b1 | - +- amd64 | proftpd-mod-geoip | 0.3-1+b1 | - +- amd64 | proftpd-mod-ldap | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-mod-msg | 0.4.1-1.1 | - +- amd64 | proftpd-mod-mysql | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-mod-odbc | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-mod-pgsql | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-mod-sqlite | 1.3.4a-5+deb7u1 | - +- amd64 | proftpd-mod-tar | 0.3.3-1+b1 | - +- amd64 | proftpd-mod-vroot | 0.9.2-2+b2 | - +- amd64 | proj-bin | 4.7.0-2 | - +- amd64 | proj-data | 4.7.0-2 | - +- amd64 | projectcenter.app | 0.6.0-2 | - +- amd64 | projectl | 1.001.dfsg1-4 | - +- amd64 | projectm-dbg | 2.1.0+dfsg-1 | - +- amd64 | projectm-jack | 2.1.0+dfsg-1 | - +- amd64 | projectm-pulseaudio | 2.1.0+dfsg-1 | - +- amd64 | promoe | 0.1.1-3+b1 | - +! amd64 | prosody | 0.8.2-4 | 0.9.1-1~bpo70+1 +- amd64 | protobuf-c-compiler | 0.14-1+b1 | - +- amd64 | protobuf-compiler | 2.4.1-3 | - +- amd64 | protoize | 1:4.4.7-2 | - +- amd64 | prover9 | 0.0.200902a-2.1 | - +- amd64 | proxsmtp | 1.10-1 | - +- amd64 | proxycheck | 0.49a-4 | - +- amd64 | proxytrack | 3.46.1-1 | - +- amd64 | proxytunnel | 1.9.0-5 | - +- amd64 | ps2eps | 1.68-1 | - +- amd64 | psad | 2.2-3.1 | - +- amd64 | pscan | 1.2-9 | - +- amd64 | psensor | 0.6.2.17-2+b1 | - +- amd64 | psensor-server | 0.6.2.17-2+b1 | - +- amd64 | psi | 0.14-3 | - +! amd64 | psi-plus | 0.15.5338-1 | 0.16.285-1~bpo70+1 +- amd64 | psi-plus-content-downloader | 0.15.5338-1 | - +! amd64 | psi-plus-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-plugin-psimedia | 1.0.3-git20120506-fb54b6e-1 | 1.0.3-git20131023-ea487d3-1~bpo70+1 +! amd64 | psi-plus-plugins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-plugins-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-webkit | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-webkit-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +- amd64 | psi3 | 3.4.0-4 | - +- amd64 | psignifit | 2.5.6-3 | - +- amd64 | pslib-dev | 0.4.5-3 | - +- amd64 | pslib1 | 0.4.5-3 | - +- amd64 | pslib1-dbg | 0.4.5-3 | - +- amd64 | pslist | 1.3-2 | - +- amd64 | psmisc | 22.19-1+deb7u1 | - +- amd64 | pspp | 0.7.9+git20120620-1.1 | - +- amd64 | pspresent | 1.3-4 | - +- amd64 | pst-utils | 0.6.54-4.1 | - +- amd64 | pstack | 1.3.1-1 | - +- amd64 | pstoedit | 3.60-2+b1 | - +- amd64 | pstotext | 1.9-6 | - +- amd64 | psutils | 1.17.dfsg-1 | - +- amd64 | psychtoolbox-3-dbg | 3.0.9+svn2579.dfsg1-1 | - +- amd64 | psychtoolbox-3-lib | 3.0.9+svn2579.dfsg1-1 | - +- amd64 | pterm | 0.62-9+deb7u1 | - +- amd64 | pth-dbg | 2.0.7-16 | - +- amd64 | ptop | 3.6.2-5 | - +- amd64 | ptpd | 2.1.0-debian1-2 | - +- amd64 | ptscotch | 5.1.12b.dfsg-1.2 | - +- amd64 | ptscotch-dbg | 5.1.12b.dfsg-1.2 | - +- amd64 | ptunnel | 0.71-2 | - +- amd64 | publib-dev | 0.40-1 | - +- amd64 | puf | 1.0.0-7 | - +! amd64 | pulseaudio | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-esound-compat | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-esound-compat-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-bluetooth | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-bluetooth-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-gconf | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-gconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-jack | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-jack-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-lirc | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-lirc-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-raop | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-raop-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-x11 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-x11-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-zeroconf | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-zeroconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-utils | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-utils-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +- amd64 | pump | 0.8.24-7 | - +- amd64 | pure-ftpd | 1.0.36-1.1 | - +- amd64 | pure-ftpd-ldap | 1.0.36-1.1 | - +- amd64 | pure-ftpd-mysql | 1.0.36-1.1 | - +- amd64 | pure-ftpd-postgresql | 1.0.36-1.1 | - +- amd64 | puredata-core | 0.43.2-5 | - +- amd64 | puredata-extra | 0.43.2-5 | - +- amd64 | puredata-import | 1.3-3 | - +- amd64 | puredata-utils | 0.43.2-5 | - +- amd64 | purity | 1-18 | - +- amd64 | purity-ng | 0.2.0-2 | - +- amd64 | putty | 0.62-9+deb7u1 | - +- amd64 | putty-tools | 0.62-9+deb7u1 | - +- amd64 | pv | 1.2.0-1 | - +- amd64 | pvm | 3.4.5-12.5 | - +- amd64 | pvm-dev | 3.4.5-12.5 | - +- amd64 | pvm-examples | 3.4.5-12.5 | - +- amd64 | pvrg-jpeg | 1.2.1+dfsg1-2 | - +- amd64 | pwauth | 2.3.8-1 | - +- amd64 | pwgen | 2.06-1+b2 | - +- amd64 | pwget | 2010.1012+git5feaa59-1 | - +- amd64 | pxe | 1.4.2-7 | - +- amd64 | pxe-kexec | 0.2.4-3 | - +- amd64 | pxfw | 0.7.1.002-5 | - +- amd64 | pxlib-dev | 0.6.5-1 | - +- amd64 | pxlib1 | 0.6.5-1 | - +- amd64 | pxsl-tools | 1.0-5 | - +- amd64 | pybik | 0.5-1 | - +- amd64 | pyfai | 0.3.5-1 | - +- amd64 | pyformex-lib | 0.8.6-4 | - +- amd64 | pyg | 0.9.7+b2 | - +- amd64 | pylucene | 3.5.0-1.1 | - +- amd64 | pymca | 4.6.0-2 | - +- amd64 | pymol | 1.5.0.1-2 | - +- amd64 | pyqt4-dev-tools | 4.9.3-4 | - +- amd64 | pyrit | 0.4.0-2 | - +- amd64 | pyrite-publisher | 2.1.1-7.1 | - +- amd64 | pyside-tools | 0.2.13-3 | - +- amd64 | python-adns | 1.2.1-5+b1 | - +- amd64 | python-alsaaudio | 0.5+svn36-1+b2 | - +- amd64 | python-appindicator | 0.4.92-2 | - +- amd64 | python-apsw | 3.7.6.3-r1-1 | - +- amd64 | python-apsw-dbg | 3.7.6.3-r1-1 | - +- amd64 | python-apt | 0.8.8.2 | - +- amd64 | python-apt-dbg | 0.8.8.2 | - +- amd64 | python-async | 0.6.1-1 | - +- amd64 | python-at-spi | 0.6.1-1.3+b2 | - +- amd64 | python-aubio | 0.3.2-4.2+b1 | - +- amd64 | python-audit | 1:1.7.18-1.1 | - +- amd64 | python-avahi | 0.6.31-2 | - +- amd64 | python-avogadro | 1.0.3-5 | - +- amd64 | python-ball | 1.4.1+20111206-4 | - +- amd64 | python-ballview | 1.4.1+20111206-4 | - +- amd64 | python-bibtex | 1.2.5-1+b1 | - +- amd64 | python-biopython | 1.59-1 | - +- amd64 | python-biosig | 1.3.0-2 | - +- amd64 | python-bitarray | 0.8.0-2 | - +- amd64 | python-blist | 1.3.4-2 | - +- amd64 | python-bluez | 0.18-2 | - +- amd64 | python-box2d | 2.0.2+svn20100109.244-1+b1 | - +- amd64 | python-brian-lib | 1.3.1-1+b1 | - +- amd64 | python-brlapi | 4.4-10+deb7u1 | - +- amd64 | python-bsddb3 | 5.2.0-1+b1 | - +- amd64 | python-bsddb3-dbg | 5.2.0-1+b1 | - +- amd64 | python-bson | 2.2-4+deb7u1 | - +- amd64 | python-bson-ext | 2.2-4+deb7u1 | - +- amd64 | python-buffy | 0.13+b1 | - +- amd64 | python-bzrlib | 2.6.0~bzr6526-1 | - +- amd64 | python-bzrlib-dbg | 2.6.0~bzr6526-1 | - +- amd64 | python-cairo | 1.8.8-1+b2 | - +- amd64 | python-cairo-dbg | 1.8.8-1+b2 | - +- amd64 | python-cap-ng | 0.6.6-2 | - +- amd64 | python-carquinyol-0.84 | 0.84.1-3+b1 | - +- amd64 | python-carquinyol-0.88 | 0.88.0-3+b1 | - +- amd64 | python-carquinyol-0.96 | 0.96.0-1 | - +- amd64 | python-cddb | 1.4-5.1+b3 | - +- amd64 | python-chaco | 4.1.0-1 | - +- amd64 | python-cheetah | 2.4.4-3 | - +- amd64 | python-chemfp | 1.0-1 | - +- amd64 | python-chm | 0.8.4-1+b2 | - +- amd64 | python-cjson | 1.0.5-4+b1 | - +- amd64 | python-cjson-dbg | 1.0.5-4+b1 | - +- amd64 | python-ckanclient | 0.9-1 | - +- amd64 | python-clearsilver | 0.10.5-1.3 | - +- amd64 | python-cmor | 2.8.0-2+b1 | - +- amd64 | python-cogent | 1.5.1-2 | - +- amd64 | python-cogent-dbg | 1.5.1-2 | - +- amd64 | python-comedilib | 0.10.0-3 | - +- amd64 | python-coverage | 3.4-3 | - +- amd64 | python-coverage-dbg | 3.4-3 | - +- amd64 | python-cpl | 0.3.6-1 | - +- amd64 | python-cqmf2 | 0.16-6+deb7u1 | - +- amd64 | python-cqpid | 0.16-6+deb7u1 | - +- amd64 | python-cracklib | 2.8.19-3 | - +- amd64 | python-crypto | 2.6-4+deb7u3 | - +- amd64 | python-crypto-dbg | 2.6-4+deb7u3 | - +- amd64 | python-csound | 1:5.17.11~dfsg-3 | - +- amd64 | python-csoundac | 1:5.17.11~dfsg-3 | - +- amd64 | python-cups | 1.9.48-1.1 | - +- amd64 | python-cvxopt | 1.1.4-1 | - +- amd64 | python-cwiid | 0.6.00+svn201-3+b1 | - +- amd64 | python-daap | 0.7.1-3+b2 | - +- amd64 | python-dballe | 5.18-1 | - +- amd64 | python-dbus | 1.1.1-1 | - +- amd64 | python-dbus-dbg | 1.1.1-1 | - ++ amd64 | python-deltarpm | - | 3.6+dfsg-1~bpo7+1 +- amd64 | python-demgengeo | 0.99~bzr106-1+b1 | - +- amd64 | python-desktop-agnostic | 0.3.92+dfsg-1 | - +- amd64 | python-dipy-lib | 0.5.0-3 | - +- amd64 | python-django-classy-tags | 0.3.4.1-1 | - +- amd64 | python-djvu | 0.3.9-1 | - +- amd64 | python-djvu-dbg | 0.3.9-1 | - +- amd64 | python-dmidecode | 3.10.13-1.1 | - +- amd64 | python-dmidecode-dbg | 3.10.13-1.1 | - +- amd64 | python-dolfin | 1.0.0-7 | - +- amd64 | python-dpm | 1.8.2-1+b2 | - +- amd64 | python-drizzle | 1.0-3.1 | - +- amd64 | python-drizzle-dbg | 1.0-3.1 | - +- amd64 | python-drslib | 0.3.0a3-3 | - +- amd64 | python-dulwich | 0.8.5-2 | - +- amd64 | python-dulwich-dbg | 0.8.5-2 | - +- amd64 | python-dumbnet | 1.12-3.1 | - +- amd64 | python-ecryptfs | 99-1 | - +- amd64 | python-edbus | 0.5.0+r49577-1+b2 | - +- amd64 | python-egenix-mx-base-dbg | 3.2.1-1.1 | - +- amd64 | python-egenix-mxbeebase | 3.2.1-1.1 | - +- amd64 | python-egenix-mxdatetime | 3.2.1-1.1 | - +- amd64 | python-egenix-mxproxy | 3.2.1-1.1 | - +- amd64 | python-egenix-mxqueue | 3.2.1-1.1 | - +- amd64 | python-egenix-mxstack | 3.2.1-1.1 | - +- amd64 | python-egenix-mxtexttools | 3.2.1-1.1 | - +- amd64 | python-egenix-mxtools | 3.2.1-1.1 | - +- amd64 | python-egenix-mxuid | 3.2.1-1.1 | - +- amd64 | python-egenix-mxurl | 3.2.1-1.1 | - +- amd64 | python-eggtrayicon | 2.25.3-12 | - +- amd64 | python-elementtidy | 1.0-7+b2 | - +- amd64 | python-enable | 4.1.0-1 | - +- amd64 | python-enet | 0.0~svn24-1 | - +- amd64 | python-epr | 0.6.1-2 | - +- amd64 | python-epr-dbg | 0.6.1-2 | - +- amd64 | python-espeak | 0.4-1 | - +- amd64 | python-ethos | 0.2.2-3 | - +- amd64 | python-ethtool | 0.7-1.1 | - +- amd64 | python-evolution | 2.32.0+dfsg-2+b1 | - +- amd64 | python-exactimage | 0.8.5-5+deb7u3 | - +- amd64 | python-fabio | 0.0.8-1 | - +- amd64 | python-factory-boy | 1.1.3-1 | - +- amd64 | python-farstream | 0.1.2-1 | - +- amd64 | python-faulthandler | 2.0-1 | - +- amd64 | python-fdsend | 0.2.1-2 | - +- amd64 | python-fftw | 0.2.2-1 | - +! amd64 | python-fife | 0.3.3+r3-3 | 0.3.5-1~bpo70+1 +- amd64 | python-fiu | 0.90-3 | - +- amd64 | python-fltk | 1.3.0-1 | - +- amd64 | python-fltk-dbg | 1.3.0-1 | - +- amd64 | python-fontforge | 0.0.20120101+git-2 | - +- amd64 | python-formalchemy | 1.4.2-1 | - +- amd64 | python-freenect | 1:0.1.2+dfsg-6 | - +- amd64 | python-ftdi | 0.20-1+b1 | - +- amd64 | python-fuse | 2:0.2.1-7 | - +- amd64 | python-gamera | 3.3.3-2 | - +- amd64 | python-gamera-dbg | 3.3.3-2 | - +- amd64 | python-gamin | 0.1.10-4.1 | - +- amd64 | python-gammu | 1.31.90-1+b1 | - +- amd64 | python-gammu-dbg | 1.31.90-1+b1 | - +- amd64 | python-gconf | 2.28.1+dfsg-1 | - +- amd64 | python-gd | 0.56+dfsg-3 | - +- amd64 | python-gd-dbg | 0.56+dfsg-3 | - +- amd64 | python-gdal | 1.9.0-3.1 | - +- amd64 | python-gdbm | 2.7.3-1 | - +- amd64 | python-gdbm-dbg | 2.7.3-1 | - +- amd64 | python-gdchart2 | 0.beta1-3.4+b4 | - +- amd64 | python-gdcm | 2.2.0-14.1 | - +- amd64 | python-gearman.libgearman | 0.13.2-2.1 | - +- amd64 | python-genshi | 0.6-3 | - +- amd64 | python-geographiclib | 1.21-1 | - +- amd64 | python-geohash | 0.8.3-1+b1 | - +- amd64 | python-geohash-dbg | 0.8.3-1+b1 | - +- amd64 | python-geoip | 1.2.4-2+b2 | - +- amd64 | python-getfem++ | 4.1.1+dfsg1-11 | - +- amd64 | python-gevent | 0.13.6-1+nmu3 | - +- amd64 | python-gevent-dbg | 0.13.6-1+nmu3 | - +- amd64 | python-gi | 3.2.2-2 | - +- amd64 | python-gi-cairo | 3.2.2-2 | - +- amd64 | python-gi-dbg | 3.2.2-2 | - +- amd64 | python-gitdb | 0.5.4-1 | - +- amd64 | python-glade2 | 2.24.0-3+b1 | - +- amd64 | python-glpk | 0.4.45-1+b1 | - +- amd64 | python-gmenu | 3.0.1-4 | - +- amd64 | python-gmpy | 1.15-1 | - ++ amd64 | python-gmsh | - | 2.7.0.dfsg-1~bpo70+1 +- amd64 | python-gnatpython | 54-3 | - +- amd64 | python-gnome2 | 2.28.1+dfsg-1 | - +- amd64 | python-gnomedesktop | 2.32.0+dfsg-2+b1 | - +- amd64 | python-gnomekeyring | 2.32.0+dfsg-2+b1 | - +- amd64 | python-gnucash | 1:2.4.10-6 | - +- amd64 | python-gnutls | 1.2.4-1 | - +- amd64 | python-gobject-2 | 2.28.6-10 | - +- amd64 | python-gobject-2-dbg | 2.28.6-10 | - +- amd64 | python-gpgme | 0.2-3 | - +- amd64 | python-gpgme-dbg | 0.2-3 | - +- amd64 | python-gpiv | 2.0.0-4.1 | - +- amd64 | python-gpod | 0.8.2-7 | - +! amd64 | python-gps | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- amd64 | python-greenlet | 0.3.1-2.5 | - +- amd64 | python-greenlet-dbg | 0.3.1-2.5 | - +- amd64 | python-greenlet-dev | 0.3.1-2.5 | - +- amd64 | python-grib | 1.9.3-1 | - +- amd64 | python-gst0.10 | 0.10.22-3 | - +- amd64 | python-gst0.10-dbg | 0.10.22-3 | - +- amd64 | python-gst0.10-dev | 0.10.22-3 | - +- amd64 | python-gst0.10-rtsp | 0.10.8-3 | - +! amd64 | python-gtk-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- amd64 | python-gtk-vnc | 0.5.0-3.1 | - +- amd64 | python-gtk2 | 2.24.0-3+b1 | - +- amd64 | python-gtk2-dbg | 2.24.0-3+b1 | - +- amd64 | python-gtkglext1 | 1.1.0-9.1 | - +- amd64 | python-gtksourceview2 | 2.10.1-2 | - +- amd64 | python-gtkspell | 2.25.3-12 | - +- amd64 | python-gudev | 147.2-3 | - +- amd64 | python-guestfs | 1:1.18.1-1+deb7u3 | - +- amd64 | python-guiqwt | 2.1.6-4 | - +- amd64 | python-gupnp-igd | 0.2.1-2 | - +- amd64 | python-h5py | 2.0.1-2+b1 | - +- amd64 | python-hdate | 1.6-1 | - +- amd64 | python-hippocanvas | 0.3.1-1.1 | - +! amd64 | python-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +- amd64 | python-http-parser | 0.7.5-1 | - +- amd64 | python-ieee1284 | 0.2.11-10 | - +- amd64 | python-igraph | 0.5.4-2 | - +- amd64 | python-imaging | 1.1.7-4 | - +- amd64 | python-imaging-dbg | 1.1.7-4 | - +- amd64 | python-imaging-sane | 1.1.7-4 | - +- amd64 | python-imaging-sane-dbg | 1.1.7-4 | - +- amd64 | python-imaging-tk | 1.1.7-4 | - +- amd64 | python-imaging-tk-dbg | 1.1.7-4 | - +- amd64 | python-imdbpy | 4.9-1 | - +- amd64 | python-imobiledevice | 1.1.1-4 | - +- amd64 | python-imposm | 2.4.0+dfsg-0.1 | - +- amd64 | python-imposm-parser | 1.0.3-1 | - +- amd64 | python-indicate | 0.6.92-1 | - +- amd64 | python-initgroups | 2.13.0-1+b1 | - +- amd64 | python-inotifyx | 0.2.0-1 | - +- amd64 | python-input-pad | 1.0.1-2 | - +- amd64 | python-iptcdata | 1.0.4-3 | - +- amd64 | python-jinja2 | 2.6-1 | - +- amd64 | python-jinja2-dbg | 2.6-1 | - +- amd64 | python-jpype | 0.5.4.2-2 | - +- amd64 | python-jswebkit | 0.0.3-2 | - +- amd64 | python-kaa-base | 0.6.0+svn4596-1 | - +- amd64 | python-kaa-imlib2 | 0.2.3+svn4596-2 | - +- amd64 | python-kaa-metadata | 0.7.7+svn4596-4 | - +- amd64 | python-kde4 | 4:4.8.4-1 | - +- amd64 | python-kde4-dbg | 4:4.8.4-1 | - +- amd64 | python-kerberos | 1.1+svn4895-1+b2 | - +- amd64 | python-keybinder | 0.2.2-4 | - +- amd64 | python-kinterbasdb | 3.3.0-3 | - +- amd64 | python-kinterbasdb-dbg | 3.3.0-3 | - +- amd64 | python-kjbuckets | 1:1.0.0-15.1 | - +- amd64 | python-kml | 1.3.0~r863-4.1 | - +- amd64 | python-krbv | 1.0.90-1 | - +- amd64 | python-kwwidgets | 1.0.0~cvs20100930-8 | - +- amd64 | python-lasso | 2.3.6-2 | - +- amd64 | python-ldap | 2.4.10-1 | - +- amd64 | python-ldap-dbg | 2.4.10-1 | - +! amd64 | python-ldb | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldb-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldns | 1.6.13-1 | 1.6.16-1~bpo70+1 +- amd64 | python-leveldb | 0~svn51-1 | - +- amd64 | python-levenshtein | 0.10.1-2 | - +- amd64 | python-levenshtein-dbg | 0.10.1-2 | - +- amd64 | python-lfc | 1.8.2-1+b2 | - +- amd64 | python-lhapdf | 5.8.7+repack-1 | - +- amd64 | python-libapparmor | 2.7.103-4 | - +- amd64 | python-libavg | 1.7.1-1 | - +- amd64 | python-libhamlib2 | 1.2.15.1-1 | - +- amd64 | python-libipa-hbac | 1.8.4-2 | - +- amd64 | python-liblcms | 1.19.dfsg-1.2 | - +- amd64 | python-liblicense | 0.8.1-3 | - +- amd64 | python-liblinear | 1.8+dfsg-1 | - +- amd64 | python-liblo | 0.9.1-2+b1 | - +- amd64 | python-libmimic | 1.0.4-2.1 | - +- amd64 | python-libpcap | 0.6.2-0.2 | - +- amd64 | python-librdf | 1.0.14.1-1 | - +- amd64 | python-libssh2 | 1.0.0-1.1 | - +- amd64 | python-libsvm | 3.12-1 | - +- amd64 | python-libtorrent | 0.15.10-1+b1 | - +- amd64 | python-libtorrent-dbg | 0.15.10-1+b1 | - +- amd64 | python-libuser | 1:0.56.9.dfsg.1-1.2 | - +! amd64 | python-libvirt | 0.9.12.3-1 | 1.2.1-1~bpo70+2 +- amd64 | python-libxml2 | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | python-libxml2-dbg | 2.8.0+dfsg1-7+nmu2 | - +- amd64 | python-libxslt1 | 1.1.26-14.1 | - +- amd64 | python-libxslt1-dbg | 1.1.26-14.1 | - +- amd64 | python-lightblue | 0.3.2-1+b3 | - +- amd64 | python-lilv | 0.14.2~dfsg0-4 | - +- amd64 | python-llfuse | 0.37.1-2 | - +- amd64 | python-llfuse-dbg | 0.37.1-2 | - +- amd64 | python-llvm | 0.6+svn105-2 | - +- amd64 | python-llvm-dbg | 0.6+svn105-2 | - +- amd64 | python-louis | 2.4.1-1 | - +- amd64 | python-lucene | 3.5.0-1.1 | - +- amd64 | python-lucene-dbg | 3.5.0-1.1 | - +- amd64 | python-lunar | 2.0.1-2.2 | - +! amd64 | python-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +- amd64 | python-lzma | 0.5.3-2+b1 | - +- amd64 | python-lzma-dbg | 0.5.3-2+b1 | - +- amd64 | python-lzo | 1.08-1 | - +- amd64 | python-m2crypto | 0.21.1-2 | - ++ amd64 | python-m2ext | - | 0.1-1~bpo70+1 +! amd64 | python-magic | 5.11-2 | 1:5.14-2~bpo70+1 +- amd64 | python-magic-dbg | 5.11-2 | - +- amd64 | python-magics++ | 2.14.11-4 | - +- amd64 | python-mailutils | 1:2.99.97-3 | - +- amd64 | python-mapnik2 | 2.0.0+ds1-3+b4 | - +- amd64 | python-mapscript | 6.0.1-3.2+deb7u2 | - +- amd64 | python-markupsafe | 0.15-1 | - +- amd64 | python-markupsafe-dbg | 0.15-1 | - +- amd64 | python-mathgl | 1.11.2-17 | - +- amd64 | python-matplotlib | 1.1.1~rc2-1 | - +- amd64 | python-matplotlib-dbg | 1.1.1~rc2-1 | - +- amd64 | python-mecab | 0.99.3-1 | - +- amd64 | python-meld3 | 0.6.5-3.1 | - +- amd64 | python-meliae | 0.4.0-1 | - +- amd64 | python-meliae-dbg | 0.4.0-1 | - +- amd64 | python-metaconfig | 0.1.4a1-1 | - +- amd64 | python-mhash | 1.4-1+b2 | - +- amd64 | python-mhash-dbg | 1.4-1+b2 | - +- amd64 | python-mididings | 0~20120419~ds0-1 | - +- amd64 | python-milter | 0.9.5-3 | - +- amd64 | python-ming | 1:0.4.4-1.1 | - +- amd64 | python-mlpy-lib | 2.2.0~dfsg1-2+b1 | - +- amd64 | python-mlt5 | 0.8.0-4 | - +- amd64 | python-mmkeys | 1.6.2.1-5 | - +- amd64 | python-mpi4py | 1.3+hg20120611-3 | - +- amd64 | python-mpi4py-dbg | 1.3+hg20120611-3 | - +- amd64 | python-mpikmeans | 1.5-1+b1 | - +- amd64 | python-mpltoolkits.basemap | 1.0.3+dfsg-2 | - ++ amd64 | python-msgpack | - | 0.3.0-1~bpo70+2 +- amd64 | python-mtbl | 0.1-2 | - +- amd64 | python-museek | 1:0.2+svn20100315.r1208-2 | - +- amd64 | python-mvpa-lib | 0.4.8-1 | - +- amd64 | python-mvpa2-lib | 2.1.0-1 | - +- amd64 | python-mysqldb | 1.2.3-2 | - +- amd64 | python-mysqldb-dbg | 1.2.3-2 | - +- amd64 | python-nautilus | 1.1-3 | - +- amd64 | python-ncap | 1.9.2-1+b2 | - +- amd64 | python-necpp | 1.5.0+cvs20101003-2.1 | - +- amd64 | python-netcdf | 2.8-4 | - +- amd64 | python-netifaces | 0.8-1 | - +- amd64 | python-netifaces-dbg | 0.8-1 | - +- amd64 | python-neuroshare | 0.8.5-1 | - +- amd64 | python-newt | 0.52.14-11.1 | - +- amd64 | python-newt-dbg | 0.52.14-11.1 | - +- amd64 | python-nflog | 0.2-3 | - +- amd64 | python-nfqueue | 0.4-3 | - +- amd64 | python-nids | 0.6.1-1+b1 | - +- amd64 | python-nifti | 0.20100607.1-4 | - +- amd64 | python-notify | 0.1.1-3 | - +- amd64 | python-nss | 0.12-1 | - ++ amd64 | python-ntdb | - | 1.0-2~bpo70+1 ++ amd64 | python-ntdb-dbg | - | 1.0-2~bpo70+1 +- amd64 | python-numexpr | 2.0.1-3 | - +- amd64 | python-numexpr-dbg | 2.0.1-3 | - +- amd64 | python-numpy | 1:1.6.2-1.2 | - +- amd64 | python-numpy-dbg | 1:1.6.2-1.2 | - +- amd64 | python-obexftp | 0.23-1.1 | - +- amd64 | python-ogg | 1.3+repack-5+b2 | - +- amd64 | python-ogg-dbg | 1.3+repack-5+b2 | - +- amd64 | python-omniorb | 3.6-1 | - +- amd64 | python-omniorb-dbg | 3.6-1 | - +- amd64 | python-openbabel | 2.3.1+dfsg-4 | - +- amd64 | python-opencv | 2.3.1-11 | - +- amd64 | python-openmeeg | 2.0.0.dfsg-5 | - +- amd64 | python-openscap | 0.8.0-4+b1 | - +- amd64 | python-openssl | 0.13-2+deb7u1 | - +- amd64 | python-openssl-dbg | 0.13-2+deb7u1 | - +- amd64 | python-openstack-common | 0.1+git20120203-1 | - +- amd64 | python-openturns | 1.0-4 | - +- amd64 | python-openturns-dev | 1.0-4 | - +- amd64 | python-osmgpsmap | 0.7.3-3 | - +- amd64 | python-otr | 0.2.1-1+b2 | - +- amd64 | python-otr-dbg | 0.2.1-1+b2 | - +- amd64 | python-ow | 2.8p15-1 | - +- amd64 | python-pacparser | 1.3.0-2 | - +- amd64 | python-pam | 0.4.2-13 | - +- amd64 | python-pandas-lib | 0.8.0-2 | - +- amd64 | python-parted | 3.6-6 | - +- amd64 | python-parted-dbg | 3.6-6 | - +- amd64 | python-passfd | 0.2-1 | - +- amd64 | python-pcapy | 0.10.8-1 | - +- amd64 | python-pebl | 1.0.2-2 | - +- amd64 | python-pebl-dbg | 1.0.2-2 | - +- amd64 | python-pgm | 0.3.12-2+b4 | - +- amd64 | python-pgmagick | 0.5.1-1+b1 | - +- amd64 | python-phoneutils | 0.1+git20100219-1+b1 | - +- amd64 | python-pisock | 0.12.5-5 | - +- amd64 | python-pisock-dbg | 0.12.5-5 | - +! amd64 | python-pivy | 0.5.0~v609hg-1 | 0.5.0~v609hg-3~bpo70+1 +- amd64 | python-playerc | 3.0.2+dfsg-4+b1 | - +- amd64 | python-plist | 1.8-1 | - +- amd64 | python-plplot | 5.9.9-5 | - +- amd64 | python-plplot-qt | 5.9.9-5 | - +- amd64 | python-polybori | 0.5~rc1-2.2 | - +- amd64 | python-poppler | 0.12.1-8+b1 | - +- amd64 | python-poppler-dbg | 0.12.1-8+b1 | - +- amd64 | python-poppler-qt4 | 0.16.2-2 | - +- amd64 | python-pqueue | 0.2-7.1+b2 | - +- amd64 | python-prctl | 1.1.1-1.1 | - +- amd64 | python-prelude | 1.0.0-9 | - +- amd64 | python-preludedb | 1.0.0-1.1+b2 | - +- amd64 | python-presage | 0.8.8-1 | - +- amd64 | python-presage-dbg | 0.8.8-1 | - +- amd64 | python-protobuf | 2.4.1-3 | - +- amd64 | python-protocols | 1.0a.svn20070625-5+b2 | - +- amd64 | python-psutil | 0.5.1-1 | - +- amd64 | python-psycopg2 | 2.4.5-1 | - +- amd64 | python-psycopg2-dbg | 2.4.5-1 | - +- amd64 | python-py++ | 1.0.0-1 | - +- amd64 | python-pyalsa | 1.0.25-1 | - +- amd64 | python-pyamf | 0.6.1+dfsg-3 | - +- amd64 | python-pyamf-dbg | 0.6.1+dfsg-3 | - +- amd64 | python-pyao | 0.82-5 | - +- amd64 | python-pyao-dbg | 0.82-5 | - +- amd64 | python-pyaudio | 0.2.4-2+b1 | - +- amd64 | python-pybiggles | 1.6.6-1+b1 | - +- amd64 | python-pyclamav | 0.4.1-7 | - +- amd64 | python-pycryptopp | 0.5.29-1 | - +- amd64 | python-pycryptopp-dbg | 0.5.29-1 | - +- amd64 | python-pycurl | 7.19.0-5 | - +- amd64 | python-pycurl-dbg | 7.19.0-5 | - +- amd64 | python-pydds | 2.1.2+ddd105-1 | - +- amd64 | python-pyepl | 1.1.0-3.1 | - +- amd64 | python-pyexiv2 | 0.3.2-5 | - +- amd64 | python-pyfann | 2.1.0~beta~dfsg-8 | - +- amd64 | python-pyfann-dbg | 2.1.0~beta~dfsg-8 | - +- amd64 | python-pyfits | 1:3.0.8-2 | - +- amd64 | python-pyfribidi | 0.11.0+repack-1 | - +- amd64 | python-pyfribidi-dbg | 0.11.0+repack-1 | - +- amd64 | python-pygame | 1.9.1release+dfsg-8 | - +- amd64 | python-pygetdata | 0.7.3-6 | - +- amd64 | python-pygoocanvas | 0.14.1-1+b3 | - +- amd64 | python-pygraphviz | 1.1-2 | - +- amd64 | python-pygraphviz-dbg | 1.1-2 | - +- amd64 | python-pygresql | 1:4.0-3 | - +- amd64 | python-pygresql-dbg | 1:4.0-3 | - +- amd64 | python-pyicu | 1.4-1 | - +- amd64 | python-pyicu-dbg | 1.4-1 | - +- amd64 | python-pyisomd5sum | 1:1.0.7+git.20110618.6c9cd2f-1 | - +- amd64 | python-pykaraoke | 0.7.5-1 | - +- amd64 | python-pykcs11 | 1.2.4-1 | - +- amd64 | python-pylibacl | 0.5.1-1.1 | - +- amd64 | python-pylibacl-dbg | 0.5.1-1.1 | - +- amd64 | python-pylibmc | 1.2.2-1+b2 | - +- amd64 | python-pylibmc-dbg | 1.2.2-1+b2 | - +- amd64 | python-pylirc | 0.0.5-3 | - +- amd64 | python-pymad | 0.6-1.2+b1 | - +- amd64 | python-pyme | 1:0.8.1-2 | - +- amd64 | python-pymongo | 2.2-4+deb7u1 | - +- amd64 | python-pymongo-ext | 2.2-4+deb7u1 | - +- amd64 | python-pymssql | 1.0.2+dfsg-1+b3 | - +- amd64 | python-pyo | 0.6.1-1 | - +- amd64 | python-pyodbc | 2.1.7-1+b1 | - +- amd64 | python-pyodbc-dbg | 2.1.7-1+b1 | - +- amd64 | python-pyode | 1.2.0-4+cvs20090320+b2 | - +- amd64 | python-pyorbit | 2.24.0-6+b1 | - +- amd64 | python-pyosd | 0.2.14-5.1 | - +- amd64 | python-pypcap | 1.1.2+debian-2.2 | - +- amd64 | python-pypm | 0.0.7-7 | - +- amd64 | python-pyproj | 1.8.9-1+b1 | - +- amd64 | python-pypsignifit | 3.0~beta.20120611.1-1 | - +- amd64 | python-pyscard | 1.6.12.1-3 | - +- amd64 | python-pyside.phonon | 1.1.1-3 | - +- amd64 | python-pyside.qtcore | 1.1.1-3 | - +- amd64 | python-pyside.qtdeclarative | 1.1.1-3 | - +- amd64 | python-pyside.qtgui | 1.1.1-3 | - +- amd64 | python-pyside.qthelp | 1.1.1-3 | - +- amd64 | python-pyside.qtnetwork | 1.1.1-3 | - +- amd64 | python-pyside.qtopengl | 1.1.1-3 | - +- amd64 | python-pyside.qtscript | 1.1.1-3 | - +- amd64 | python-pyside.qtsql | 1.1.1-3 | - +- amd64 | python-pyside.qtsvg | 1.1.1-3 | - +- amd64 | python-pyside.qttest | 1.1.1-3 | - +- amd64 | python-pyside.qtuitools | 1.1.1-3 | - +- amd64 | python-pyside.qtwebkit | 1.1.1-3 | - +- amd64 | python-pyside.qtxml | 1.1.1-3 | - +- amd64 | python-pyspatialite | 3.0.1-2 | - +- amd64 | python-pysqlite1.1 | 1.1.8a-6 | - +- amd64 | python-pysqlite1.1-dbg | 1.1.8a-6 | - +- amd64 | python-pysqlite2 | 2.6.3-3 | - +- amd64 | python-pysqlite2-dbg | 2.6.3-3 | - +- amd64 | python-pytango | 7.2.3-2 | - +- amd64 | python-pytc | 0.8-1+b2 | - +- amd64 | python-pytc-dbg | 0.8-1+b2 | - +- amd64 | python-pythonmagick | 0.9.7-2+b1 | - +- amd64 | python-pytyrant | 1.1.17-1 | - +- amd64 | python-pyvorbis | 1.5-1 | - +- amd64 | python-pyvorbis-dbg | 1.5-1 | - +- amd64 | python-pywcs | 1.11-1 | - +- amd64 | python-pywt | 0.2.0-5 | - +- amd64 | python-pyx | 0.11.1-2+b1 | - +- amd64 | python-pyxattr | 0.5.1-1.1 | - +- amd64 | python-pyxattr-dbg | 0.5.1-1.1 | - +- amd64 | python-pyxine | 0.1alpha2-7+b1 | - +- amd64 | python-pyxine-dbg | 0.1alpha2-7+b1 | - +- amd64 | python-pyxmpp | 1.1.2-1 | - +- amd64 | python-qgis | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | python-qmf | 0.16-6+deb7u1 | - +- amd64 | python-qmf2 | 0.16-6+deb7u1 | - +- amd64 | python-qrencode | 1.01-2+b1 | - +- amd64 | python-qscintilla2 | 2.6.2-2 | - +- amd64 | python-qt4 | 4.9.3-4 | - +- amd64 | python-qt4-dbg | 4.9.3-4 | - +- amd64 | python-qt4-dbus | 4.9.3-4 | - +- amd64 | python-qt4-dbus-dbg | 4.9.3-4 | - +- amd64 | python-qt4-gl | 4.9.3-4 | - +- amd64 | python-qt4-gl-dbg | 4.9.3-4 | - +- amd64 | python-qt4-phonon | 4.9.3-4 | - +- amd64 | python-qt4-phonon-dbg | 4.9.3-4 | - +- amd64 | python-qt4-sql | 4.9.3-4 | - +- amd64 | python-qt4-sql-dbg | 4.9.3-4 | - +- amd64 | python-quixote | 2.7~b2-1+b2 | - +- amd64 | python-quixote1 | 1.2-4.1+b2 | - +- amd64 | python-qwt3d-qt4 | 0.1.7~cvs20090625-9 | - +- amd64 | python-qwt5-qt4 | 5.2.1~cvs20091107+dfsg-6+b2 | - +- amd64 | python-rabbyt | 0.8.1-1+b2 | - +- amd64 | python-radare2 | 0.9-1 | - +- amd64 | python-radix | 0.5-3 | - +- amd64 | python-rapi2 | 0.15-2.1 | - +- amd64 | python-rdflib | 2.4.2-1+b2 | - +- amd64 | python-rdkit | 201203-3 | - +- amd64 | python-recoll | 1.17.3-2 | - +- amd64 | python-regex | 0.1.20120613-1 | - +- amd64 | python-regex-dbg | 0.1.20120613-1 | - +! amd64 | python-remctl | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | python-renderpm | 2.5-1.1 | - +- amd64 | python-renderpm-dbg | 2.5-1.1 | - +- amd64 | python-renpy | 6.13.12-1 | - +- amd64 | python-reportlab-accel | 2.5-1.1 | - +- amd64 | python-reportlab-accel-dbg | 2.5-1.1 | - +- amd64 | python-rfoo | 1.3.0-2 | - +- amd64 | python-rivet | 1.8.0-1 | - +- amd64 | python-rpm | 4.10.0-5+deb7u1 | - +- amd64 | python-rpy | 1.0.3-22 | - +- amd64 | python-rpy2 | 2.2.6-1 | - +- amd64 | python-rra | 0.14-1.2 | - +- amd64 | python-rrdtool | 1.4.7-2 | - +- amd64 | python-rsvg | 2.32.0+dfsg-2+b1 | - +- amd64 | python-rtfcomp | 1.1-5+b1 | - +! amd64 | python-samba | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | python-scgi | 1.13-1+b2 | - +- amd64 | python-scipy | 0.10.1+dfsg2-1 | - +- amd64 | python-scipy-dbg | 0.10.1+dfsg2-1 | - +- amd64 | python-sciscipy | 0.3.0-3 | - +- amd64 | python-selinux | 2.1.9-5 | - +- amd64 | python-semanage | 2.1.6-6 | - +- amd64 | python-sendfile | 1.2.4-1+b2 | - +- amd64 | python-sendfile-dbg | 1.2.4-1+b2 | - +- amd64 | python-setools | 3.3.7-3 | - +- amd64 | python-setproctitle | 1.0.1-1+b1 | - +- amd64 | python-setproctitle-dbg | 1.0.1-1+b1 | - +- amd64 | python-sfml | 1.5-2+b1 | - +- amd64 | python-shapely | 1.2.14-1 | - +- amd64 | python-sidl | 1.4.0.dfsg-8.1 | - +- amd64 | python-sigmask | 2.4.1-1+b3 | - +- amd64 | python-silo | 4.8-13 | - +- amd64 | python-simplejson | 2.5.2-1 | - +- amd64 | python-simpleparse-mxtexttools | 2.1.0a1-6 | - +- amd64 | python-sip | 4.13.3-2 | - +- amd64 | python-sip-dbg | 4.13.3-2 | - +- amd64 | python-sip-dev | 4.13.3-2 | - +- amd64 | python-skimage-lib | 0.6.1-1 | - +- amd64 | python-sklearn-lib | 0.11.0-2+deb7u1 | - +- amd64 | python-smartpm | 1.4-2 | - +- amd64 | python-smbc | 1.0.6-1+b1 | - +- amd64 | python-smbpasswd | 1.0.1-1.2+b2 | - +- amd64 | python-smbus | 3.1.0-2 | - +- amd64 | python-snappy | 0.4-1 | - +- amd64 | python-soya | 0.15~rc1-8 | - +- amd64 | python-soya-dbg | 0.15~rc1-8 | - +- amd64 | python-sparse | 1.1-1+b2 | - +- amd64 | python-sphere | 3.2-4 | - +- amd64 | python-spice-client-gtk | 0.12-5 | - +- amd64 | python-sqlalchemy-ext | 0.7.8-1 | - +- amd64 | python-sqlite | 1.0.1-9 | - +- amd64 | python-sqlite-dbg | 1.0.1-9 | - +- amd64 | python-sqlitecachec | 1.1.2-1+b2 | - +- amd64 | python-sss | 1.8.4-2 | - +- amd64 | python-statgrab | 0.5-4 | - +- amd64 | python-statsmodels-lib | 0.4.2-1 | - +- amd64 | python-stemmer | 1.2.0+dfsg-1 | - +- amd64 | python-stemmer-dbg | 1.2.0+dfsg-1 | - +- amd64 | python-stfio | 0.10.18-1.1+b1 | - +- amd64 | python-stfl | 0.22-1+b1 | - +- amd64 | python-storm | 0.19-1 | - +- amd64 | python-storm-dbg | 0.19-1 | - +- amd64 | python-subnettree | 0.12-4+b1 | - +- amd64 | python-subversion | 1.6.17dfsg-4+deb7u4 | - +- amd64 | python-subvertpy | 0.8.10-2 | - +- amd64 | python-subvertpy-dbg | 0.8.10-2 | - +- amd64 | python-sugar-0.84 | 0.84.2-4 | - +- amd64 | python-sugar-0.88 | 0.88.0-4 | - +- amd64 | python-sugar-0.96 | 0.96.0-1 | - +- amd64 | python-sugar-toolkit-0.84 | 0.84.17-1 | - +- amd64 | python-sugar-toolkit-0.88 | 0.88.1-3+b1 | - +- amd64 | python-sugar-toolkit-0.96 | 0.96.1-1 | - +- amd64 | python-sugar3 | 0.96.1-2 | - +- amd64 | python-svipc | 0.14-2 | - +- amd64 | python-svn | 1.7.5-1.1 | - +- amd64 | python-svn-dbg | 1.7.5-1.1 | - +- amd64 | python-swiginac | 1.5.1.1-1+b2 | - +- amd64 | python-syfi | 1.0.0.dfsg-1 | - +- amd64 | python-tables | 2.3.1-3 | - +- amd64 | python-tables-dbg | 2.3.1-3 | - +- amd64 | python-tagpy | 0.94.8-4 | - +! amd64 | python-talloc | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-talloc-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-talloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +- amd64 | python-tau | 2.16.4-1.4+b1 | - +- amd64 | python-tcpwrap | 0.2-2.1+b3 | - +! amd64 | python-tdb | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | python-tdb-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +- amd64 | python-tk | 2.7.3-1 | - +- amd64 | python-tk-dbg | 2.7.3-1 | - +- amd64 | python-tomoe | 0.6.0-1.3 | - +- amd64 | python-traits | 4.1.0-1 | - +! amd64 | python-twisted-bin | 12.0.0-1 | 13.0.0-1~bpo70+1 +! amd64 | python-twisted-bin-dbg | 12.0.0-1 | 13.0.0-1~bpo70+1 +- amd64 | python-twisted-runner | 12.0.0-1 | - +- amd64 | python-twisted-runner-dbg | 12.0.0-1 | - +- amd64 | python-ufc | 2.0.5-3 | - +- amd64 | python-unac | 1.7.0-1+b2 | - +! amd64 | python-unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +- amd64 | python-uniconvertor | 1.1.4-1+b2 | - +- amd64 | python-uniconvertor-dbg | 1.1.4-1+b2 | - +! amd64 | python-uno | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- amd64 | python-unshare | 0.1-2 | - +- amd64 | python-urwid | 1.0.1-2 | - +- amd64 | python-usb | 0.4.3-1 | - +- amd64 | python-usbtc08 | 0.1.1-2 | - +- amd64 | python-utmp | 0.8+nmu1+b1 | - +- amd64 | python-vigra | 1.7.1+dfsg1-3 | - +- amd64 | python-vipscc | 7.28.5-1+deb7u1 | - +- amd64 | python-visual | 1:5.12-1.5 | - +- amd64 | python-vte | 1:0.28.2-5 | - +- amd64 | python-vtk | 5.8.0-13+b1 | - +- amd64 | python-vtkgdcm | 2.2.0-14.1 | - +- amd64 | python-webkit | 1.1.8-2 | - +! amd64 | python-wimpiggy | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +- amd64 | python-wnck | 2.32.0+dfsg-2+b1 | - +- amd64 | python-workqueue | 3.5.1-2 | - +- amd64 | python-wxgtk2.8 | 2.8.12.1-12 | - +- amd64 | python-wxgtk2.8-dbg | 2.8.12.1-12 | - +- amd64 | python-xapian | 1.2.12-2 | - +- amd64 | python-xattr | 0.6.4-2 | - +- amd64 | python-xdelta3 | 3.0.0.dfsg-1 | - +- amd64 | python-xklavier | 0.4-4 | - +- amd64 | python-xmmsclient | 0.8+dfsg-4 | - +- amd64 | python-xpyb | 1.3.1-1 | - ++ amd64 | python-yade | - | 1.05.0-2~bpo70+1 +- amd64 | python-yaml | 3.10-4 | - +- amd64 | python-yaml-dbg | 3.10-4 | - ++ amd64 | python-yara | - | 2.0.0-2~bpo70+1 +- amd64 | python-yenc | 0.3+debian-2+b2 | - +- amd64 | python-zbar | 0.10+doc-8 | - +- amd64 | python-zbarpygtk | 0.10+doc-8 | - +- amd64 | python-zeroc-ice | 3.4.2-8.2 | - +- amd64 | python-zfec | 1.4.5-2 | - +- amd64 | python-zinnia | 0.06-1+b1 | - +! amd64 | python-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +- amd64 | python-zodb | 1:3.9.7-2 | - +- amd64 | python-zookeeper | 3.3.5+dfsg1-2 | - +- amd64 | python-zope.hookable | 3.4.1-8 | - +- amd64 | python-zope.i18nmessageid | 3.5.3-2 | - +- amd64 | python-zope.interface | 3.6.1-3 | - +- amd64 | python-zope.interface-dbg | 3.6.1-3 | - +- amd64 | python-zope.proxy | 3.6.1-2 | - +- amd64 | python-zope.security | 3.8.3-2 | - +- amd64 | python2.6 | 2.6.8-1.1 | - +- amd64 | python2.6-dbg | 2.6.8-1.1 | - +- amd64 | python2.6-dev | 2.6.8-1.1 | - +- amd64 | python2.6-minimal | 2.6.8-1.1 | - +- amd64 | python2.7 | 2.7.3-6 | - +- amd64 | python2.7-dbg | 2.7.3-6 | - +- amd64 | python2.7-dev | 2.7.3-6 | - +- amd64 | python2.7-minimal | 2.7.3-6 | - +- amd64 | python3-apt | 0.8.8.2 | - +- amd64 | python3-apt-dbg | 0.8.8.2 | - +- amd64 | python3-bitarray | 0.8.0-2 | - +- amd64 | python3-bsddb3 | 5.2.0-1+b1 | - +- amd64 | python3-bsddb3-dbg | 5.2.0-1+b1 | - +- amd64 | python3-cairo | 1.10.0+dfsg-2 | - +- amd64 | python3-cracklib | 2.8.19-3 | - +- amd64 | python3-crypto | 2.6-4+deb7u3 | - +- amd64 | python3-crypto-dbg | 2.6-4+deb7u3 | - +- amd64 | python3-dbus | 1.1.1-1 | - +- amd64 | python3-dbus-dbg | 1.1.1-1 | - +- amd64 | python3-dbus.mainloop.qt | 4.9.3-4 | - +- amd64 | python3-dbus.mainloop.qt-dbg | 4.9.3-4 | - ++ amd64 | python3-deltarpm | - | 3.6+dfsg-1~bpo7+1 +- amd64 | python3-drizzle | 1.0-3.1 | - +- amd64 | python3-drizzle-dbg | 1.0-3.1 | - +- amd64 | python3-epr | 0.6.1-2 | - +- amd64 | python3-epr-dbg | 0.6.1-2 | - +- amd64 | python3-gdbm | 3.2.3-1 | - +- amd64 | python3-gdbm-dbg | 3.2.3-1 | - +- amd64 | python3-gearman.libgearman | 0.13.2-2.1 | - +- amd64 | python3-gi | 3.2.2-2 | - +- amd64 | python3-gi-cairo | 3.2.2-2 | - +- amd64 | python3-gi-dbg | 3.2.2-2 | - ++ amd64 | python3-hivex | - | 1.3.9-1~bpo70+1 +- amd64 | python3-jinja2 | 2.6-1 | - +- amd64 | python3-jinja2-dbg | 2.6-1 | - +- amd64 | python3-leveldb | 0~svn51-1 | - +- amd64 | python3-llfuse | 0.37.1-2 | - +- amd64 | python3-llfuse-dbg | 0.37.1-2 | - +! amd64 | python3-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python3-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +- amd64 | python3-markupsafe | 0.15-1 | - +- amd64 | python3-markupsafe-dbg | 0.15-1 | - +- amd64 | python3-mpi4py | 1.3+hg20120611-3 | - +- amd64 | python3-mpi4py-dbg | 1.3+hg20120611-3 | - ++ amd64 | python3-msgpack | - | 0.3.0-1~bpo70+2 +- amd64 | python3-numpy | 1:1.6.2-1.2 | - +- amd64 | python3-numpy-dbg | 1:1.6.2-1.2 | - +- amd64 | python3-openssl | 0.13-2+deb7u1 | - +- amd64 | python3-openssl-dbg | 0.13-2+deb7u1 | - +- amd64 | python3-postgresql | 1.0.2-1+b1 | - +- amd64 | python3-psycopg2 | 2.4.5-1 | - +- amd64 | python3-psycopg2-dbg | 2.4.5-1 | - +- amd64 | python3-pyfits | 1:3.0.8-2 | - +- amd64 | python3-pykde4 | 4:4.8.4-1 | - +- amd64 | python3-pykde4-dbg | 4:4.8.4-1 | - +- amd64 | python3-pylibacl | 0.5.1-1.1 | - +- amd64 | python3-pylibacl-dbg | 0.5.1-1.1 | - +- amd64 | python3-pyqt4 | 4.9.3-4 | - +- amd64 | python3-pyqt4-dbg | 4.9.3-4 | - +- amd64 | python3-pyqt4.phonon | 4.9.3-4 | - +- amd64 | python3-pyqt4.phonon-dbg | 4.9.3-4 | - +- amd64 | python3-pyqt4.qsci | 2.6.2-2 | - +- amd64 | python3-pyqt4.qtopengl | 4.9.3-4 | - +- amd64 | python3-pyqt4.qtopengl-dbg | 4.9.3-4 | - +- amd64 | python3-pyqt4.qtsql | 4.9.3-4 | - +- amd64 | python3-pyqt4.qtsql-dbg | 4.9.3-4 | - +- amd64 | python3-pyside.phonon | 1.1.1-3 | - +- amd64 | python3-pyside.qtcore | 1.1.1-3 | - +- amd64 | python3-pyside.qtdeclarative | 1.1.1-3 | - +- amd64 | python3-pyside.qtgui | 1.1.1-3 | - +- amd64 | python3-pyside.qthelp | 1.1.1-3 | - +- amd64 | python3-pyside.qtnetwork | 1.1.1-3 | - +- amd64 | python3-pyside.qtopengl | 1.1.1-3 | - +- amd64 | python3-pyside.qtscript | 1.1.1-3 | - +- amd64 | python3-pyside.qtsql | 1.1.1-3 | - +- amd64 | python3-pyside.qtsvg | 1.1.1-3 | - +- amd64 | python3-pyside.qttest | 1.1.1-3 | - +- amd64 | python3-pyside.qtuitools | 1.1.1-3 | - +- amd64 | python3-pyside.qtwebkit | 1.1.1-3 | - +- amd64 | python3-pyside.qtxml | 1.1.1-3 | - +- amd64 | python3-pyxattr | 0.5.1-1.1 | - +- amd64 | python3-pyxattr-dbg | 0.5.1-1.1 | - +- amd64 | python3-regex | 0.1.20120613-1 | - +- amd64 | python3-regex-dbg | 0.1.20120613-1 | - +- amd64 | python3-scipy | 0.10.1+dfsg2-1 | - +- amd64 | python3-scipy-dbg | 0.10.1+dfsg2-1 | - +- amd64 | python3-sip | 4.13.3-2 | - +- amd64 | python3-sip-dbg | 4.13.3-2 | - +- amd64 | python3-sip-dev | 4.13.3-2 | - +- amd64 | python3-stemmer | 1.2.0+dfsg-1 | - +- amd64 | python3-stemmer-dbg | 1.2.0+dfsg-1 | - +- amd64 | python3-svipc | 0.14-2 | - +- amd64 | python3-tk | 3.2.3-1 | - +- amd64 | python3-tk-dbg | 3.2.3-1 | - +- amd64 | python3-uno | 1:3.5.4+dfsg2-0+deb7u2 | - +- amd64 | python3-urwid | 1.0.1-2 | - +- amd64 | python3-yaml | 3.10-4 | - +- amd64 | python3-yaml-dbg | 3.10-4 | - ++ amd64 | python3-yara | - | 2.0.0-2~bpo70+1 +! amd64 | python3-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python3-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +- amd64 | python3-zope.interface | 3.6.1-3 | - +- amd64 | python3-zope.interface-dbg | 3.6.1-3 | - +- amd64 | python3.2 | 3.2.3-7 | - +- amd64 | python3.2-dbg | 3.2.3-7 | - +- amd64 | python3.2-dev | 3.2.3-7 | - +- amd64 | python3.2-minimal | 3.2.3-7 | - +- amd64 | pythontracer | 8.10.16-1.1 | - +- amd64 | pytone | 3.0.0-1+b4 | - +- amd64 | pyxplot | 0.8.4-5+b1 | - +! amd64 | q4wine | 0.121-4 | 1.1-r2-1~bpo70+1 +- amd64 | qalc | 0.9.7-8 | - +- amd64 | qalculate-gtk | 0.9.7-3 | - +- amd64 | qantenna | 0.2.3-2 | - +- amd64 | qapt-batch | 1.3.0-2 | - +- amd64 | qapt-dbg | 1.3.0-2 | - +- amd64 | qapt-deb-installer | 1.3.0-2 | - +- amd64 | qapt-utils | 1.3.0-2 | - +- amd64 | qasconfig | 0.17.2-2 | - +- amd64 | qashctl | 0.17.2-2 | - +- amd64 | qasmixer | 0.17.2-2 | - +- amd64 | qbankmanager | 0.9.55beta-3 | - +- amd64 | qbittorrent | 2.9.8-1 | - +- amd64 | qbittorrent-dbg | 2.9.8-1 | - +- amd64 | qbittorrent-nox | 2.9.8-1 | - +- amd64 | qbrew | 0.4.1-3 | - +- amd64 | qca2-utils | 2.0.3-4 | - +- amd64 | qcomicbook | 0.8.2-1 | - +! amd64 | qconf | 1.4-3 | 1.5-1~bpo70+1 +- amd64 | qdacco | 0.8.2-1 | - +- amd64 | qdbm-cgi | 1.8.78-2 | - +- amd64 | qdbm-util | 1.8.78-2 | - +- amd64 | qdbus | 4:4.8.2+dfsg-11 | - +- amd64 | qelectrotech | 0.22+svn897-1 | - +! amd64 | qemu | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-guest-agent | - | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-kvm | 1.1.2+dfsg-6 | 1.7.0+dfsg-2~bpo70+2 +- amd64 | qemu-kvm-dbg | 1.1.2+dfsg-6 | - +! amd64 | qemu-system | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-arm | - | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-common | - | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-mips | - | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-misc | - | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-ppc | - | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-sparc | - | 1.7.0+dfsg-2~bpo70+2 ++ amd64 | qemu-system-x86 | - | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-user | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-user-static | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-utils | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemubuilder | 0.70 | 0.73~bpo7+1 +- amd64 | qfits-tools | 6.2.0-5 | - +- amd64 | qgis | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | qgis-mapserver | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | qgis-plugin-grass | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | qgis-providers | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | qgis-sqlanywhere1.7.5 | 1.7.4+1.7.5~20120320-1.1+b1 | - +- amd64 | qgit | 2.4-1 | - +- amd64 | qgo | 2~svn764-1 | - +- amd64 | qhull-bin | 2009.1-3 | - +- amd64 | qiime | 1.4.0-2 | - +- amd64 | qimhangul-qt4 | 0.2.0-2 | - +- amd64 | qingy | 0.9.7-2 | - +- amd64 | qiv | 2.2.4-1 | - +- amd64 | qjackctl | 0.3.9-2 | - +- amd64 | qjackrcd | 1.0.6~ds0-1 | - +- amd64 | qlandkartegt | 1.5.0~dfsg1-1 | - +- amd64 | qlandkartegt-garmin | 0.3.4-2 | - +- amd64 | qliss3d | 1.4-1 | - +- amd64 | qlvnictools | 0.0.1-1 | - +- amd64 | qmail | 1.06-5 | - +- amd64 | qmc | 0.94-3 | - +- amd64 | qmf-dbg | 1.0.7~2011w23.2-2.1 | - +- amd64 | qmf-dev | 1.0.7~2011w23.2-2.1 | - +- amd64 | qmf-examples | 1.0.7~2011w23.2-2.1 | - +- amd64 | qmf-tests | 1.0.7~2011w23.2-2.1 | - +- amd64 | qmfgen | 0.16-6+deb7u1 | - +- amd64 | qmidiarp | 0.5.0-1 | - +- amd64 | qmidiarp-dbg | 0.5.0-1 | - +- amd64 | qmidinet | 0.1.2-1 | - +- amd64 | qmidinet-dbg | 0.1.2-1 | - +- amd64 | qmidiroute | 0.3.0-1 | - +- amd64 | qmmp | 0.5.5-1+b1 | - +- amd64 | qmmp-plugin-projectm | 0.5.5-1+b1 | - +- amd64 | qmpdclient | 1.2.2-2 | - +- amd64 | qnapi | 0.1.5-9 | - +- amd64 | qonk | 0.3.1-3.1+b1 | - +- amd64 | qpdf | 2.3.1-4 | - +- amd64 | qpdfview | 0.3.1-1 | - +- amd64 | qpid-client | 0.16-6+deb7u1 | - +- amd64 | qpidd | 0.16-6+deb7u1 | - +- amd64 | qprint | 1.0.dfsg.2-2 | - +- amd64 | qprogram-starter | 1.6.4-1 | - +- amd64 | qpxtool | 0.7.1.002-5 | - +- amd64 | qrencode | 3.3.0-2 | - +- amd64 | qrfcview | 0.62-5.1 | - +- amd64 | qrq | 0.3.0-2 | - +- amd64 | qsampler | 0.2.2-5 | - +- amd64 | qsapecng | 2.0.0-5 | - +- amd64 | qsf | 1.2.7-1+b2 | - +- amd64 | qshutdown | 1.6.4-1 | - +- amd64 | qsstv | 7.1.7-3 | - +- amd64 | qstardict | 0.12.9-1.1 | - +- amd64 | qstat | 2.11-3 | - +- amd64 | qsynth | 0.3.6-2 | - +- amd64 | qt-assistant-compat | 4.6.3-4 | - +- amd64 | qt-at-spi | 0.3.1-3 | - +- amd64 | qt4-bin-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-demos | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-demos-dbg | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-designer | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-dev-tools | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-linguist-tools | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-qmake | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-qmlviewer | 4:4.8.2+dfsg-11 | - +- amd64 | qt4-qtconfig | 4:4.8.2+dfsg-11 | - +- amd64 | qtads | 2.1.3-1 | - +- amd64 | qtcreator | 2.5.0-2 | - +- amd64 | qtcreator-dbg | 2.5.0-2 | - +- amd64 | qtcurve | 1.8.12-2 | - +- amd64 | qtemu | 1.0.5-2 | - +- amd64 | qterm | 1:0.5.12-1.1 | - +- amd64 | qtgstreamer-dbg | 0.10.2-2 | - +- amd64 | qtgstreamer-declarative | 0.10.2-2 | - +- amd64 | qtgstreamer-plugins | 0.10.2-2 | - +- amd64 | qthid-fcd-controller | 3.1-5 | - +- amd64 | qtikz | 0.10-3 | - +- amd64 | qtiplot | 0.9.8.8-5+b1 | - ++ amd64 | qtkeychain-dev | - | 0.1.0-2~bpo70+1 +- amd64 | qtm | 1.3.6-1 | - +- amd64 | qtmobility-dbg | 1.2.0-3 | - +- amd64 | qtmobility-dev | 1.2.0-3 | - +- amd64 | qtmobility-examples | 1.2.0-3 | - +- amd64 | qtoctave | 0.10.1-3 | - +- amd64 | qtractor | 0.5.5-1 | - +- amd64 | qtractor-dbg | 0.5.5-1 | - +- amd64 | qtscript-tools | 0.2.0-1 | - +- amd64 | qtscrob | 0.10-4 | - +- amd64 | qtsmbstatus-client | 2.2.1-2 | - +- amd64 | qtsmbstatus-light | 2.2.1-2 | - +- amd64 | qtsmbstatus-server | 2.2.1-2 | - +- amd64 | quadrapassel | 1:3.4.2-3 | - +- amd64 | quagga | 0.99.22.4-1+wheezy1 | - +- amd64 | quagga-dbg | 0.99.22.4-1+wheezy1 | - +- amd64 | quakespasm | 0.85.7-1 | - +- amd64 | quakespasm-dbg | 0.85.7-1 | - +- amd64 | quantlib-examples | 1.2-2+b1 | - +- amd64 | quantlib-python | 1.2-2 | - +- amd64 | quantum-espresso | 5.0-1 | - +- amd64 | quarry | 0.2.0.dfsg.1-4 | - +- amd64 | quassel | 0.8.0-1 | - +- amd64 | quassel-client | 0.8.0-1 | - +- amd64 | quassel-client-kde4 | 0.8.0-1 | - +- amd64 | quassel-core | 0.8.0-1 | - +- amd64 | quassel-kde4 | 0.8.0-1 | - +- amd64 | quelcom | 0.4.0-13 | - +- amd64 | quickplot | 0.10.3-1 | - +- amd64 | quicksynergy | 0.9-1 | - +- amd64 | quicktime-utils | 2:1.2.4-3 | - +- amd64 | quicktime-x11utils | 2:1.2.4-3 | - +- amd64 | quisk | 3.6.2-1 | - +- amd64 | quitcount | 2.0-1 | - +- amd64 | quixote1-doc | 1.2-4.1+b2 | - +- amd64 | quota | 4.00-4+deb7u1 | - +- amd64 | quotatool | 1.4.12-1 | - +- amd64 | qutecom | 2.2.1+dfsg1-3+b1 | - +- amd64 | qutecom-dbg | 2.2.1+dfsg1-3+b1 | - +- amd64 | qutecsound | 0.6.1-2 | - +- amd64 | qutemol | 0.4.1~cvs20081111-2+b2 | - +- amd64 | quvi | 0.4.2-1 | - +- amd64 | qv4l2 | 0.8.8-3 | - +- amd64 | qviaggiatreno | 2010.11.1-1 | - +- amd64 | qwbfsmanager | 1.1.0-1.1 | - +- amd64 | qwo | 0.5-2+b1 | - +- amd64 | qxw | 20110923-1 | - +- amd64 | r-base-core | 2.15.1-4 | - +- amd64 | r-base-core-dbg | 2.15.1-4 | - +- amd64 | r-bioc-biobase | 2.14.0-1 | - +- amd64 | r-bioc-biocgenerics | 0.2.0-1 | - +- amd64 | r-bioc-hilbertvis | 1.14.0-1 | - +- amd64 | r-bioc-limma | 3.12.0~dfsg-1 | - +- amd64 | r-cran-amore | 0.2-12-2 | - +- amd64 | r-cran-bayesm | 2.2-4-1 | - +- amd64 | r-cran-bitops | 1.0-4.1-2 | - +- amd64 | r-cran-cairodevice | 2.19-1 | - +- amd64 | r-cran-catools | 1.12-2 | - +- amd64 | r-cran-chron | 2.3-42-1 | - +- amd64 | r-cran-class | 7.3-4-1 | - +- amd64 | r-cran-cluster | 1.14.2-1 | - +- amd64 | r-cran-colorspace | 1.0.1-1+b1 | - +- amd64 | r-cran-date | 1.2.32-1 | - +- amd64 | r-cran-dbi | 0.2-5-2 | - +- amd64 | r-cran-deal | 1.2.34-1 | - +- amd64 | r-cran-digest | 0.5.2-1 | - +- amd64 | r-cran-eco | 3.1-4-2 | - +- amd64 | r-cran-epi | 1.1.33-1 | - +- amd64 | r-cran-epibasix | 1.1-3 | - +- amd64 | r-cran-erm | 0.14-0-2 | - +- amd64 | r-cran-evd | 2.2-4-2 | - +- amd64 | r-cran-fasianoptions | 2160.77-1 | - +- amd64 | r-cran-fassets | 2100.78-3 | - +- amd64 | r-cran-fbasics | 2160.81-2 | - +- amd64 | r-cran-fbonds | 2100.75-3 | - +- amd64 | r-cran-fcopulae | 2110.78-1 | - +- amd64 | r-cran-fgarch | 2110.80.1-1 | - +- amd64 | r-cran-fnonlinear | 2100.76-4 | - +- amd64 | r-cran-foptions | 2160.81-1 | - +- amd64 | r-cran-foreign | 0.8.50-1 | - +- amd64 | r-cran-fportfolio | 2130.80-1 | - +- amd64 | r-cran-fregression | 2100.76-4 | - +- amd64 | r-cran-funitroots | 2100.76-3 | - +- amd64 | r-cran-gam | 1.06.2-1 | - +- amd64 | r-cran-genabel | 1.7-0-3 | - +- amd64 | r-cran-getopt | 1.17-1 | - +- amd64 | r-cran-gtools | 2.7.0-1 | - +- amd64 | r-cran-haplo.stats | 1.5.5-1 | - +- amd64 | r-cran-hdf5 | 1.6.10-1+b1 | - +- amd64 | r-cran-hmisc | 3.9-3-1 | - +- amd64 | r-cran-int64 | 1.1.2-1 | - +- amd64 | r-cran-kernsmooth | 2.23-8-1 | - +- amd64 | r-cran-lattice | 0.20-6-1 | - +- amd64 | r-cran-latticeextra | 0.6-19-1 | - +- amd64 | r-cran-lme4 | 0.999999-0-1 | - +- amd64 | r-cran-lmtest | 0.9.30-1 | - +- amd64 | r-cran-lpsolve | 5.6.6-1 | - +- amd64 | r-cran-mapdata | 2.2-1-1 | - +- amd64 | r-cran-mapproj | 1.1-8.3-2 | - +- amd64 | r-cran-maps | 2.2-5-1 | - +- amd64 | r-cran-mass | 7.3-19-1 | - +- amd64 | r-cran-matrix | 1.0-6-1 | - +- amd64 | r-cran-mcmcpack | 1.2-3-1 | - +- amd64 | r-cran-medadherence | 1.02-1 | - +- amd64 | r-cran-mgcv | 1.7-13-1 | - +- amd64 | r-cran-mnormt | 1.4-5-1 | - +- amd64 | r-cran-mnp | 2.6-2-1 | - +- amd64 | r-cran-msm | 1.1-1 | - +- amd64 | r-cran-multicore | 0.1-7-1 | - +- amd64 | r-cran-mvtnorm | 0.9-9992-1 | - +- amd64 | r-cran-nlme | 3.1.104-1 | - +- amd64 | r-cran-nnet | 7.3-4-1 | - +- amd64 | r-cran-plyr | 1.7.1-1 | - +- amd64 | r-cran-polspline | 1.1.5-5 | - +- amd64 | r-cran-proto | 0.3-9.2-1 | - +- amd64 | r-cran-pscl | 1.03.5-1+deb70u1 | - +- amd64 | r-cran-qtl | 1.23-16-1 | - +- amd64 | r-cran-quadprog | 1.5-4-1 | - +- amd64 | r-cran-randomforest | 4.6-6-1 | - +- amd64 | r-cran-raschsampler | 0.8-5-1 | - +- amd64 | r-cran-rcmdr | 1.8-4-1 | - +- amd64 | r-cran-rcpp | 0.9.13-1 | - +- amd64 | r-cran-reshape | 0.8.4-1 | - +- amd64 | r-cran-rggobi | 2.1.17-1 | - +- amd64 | r-cran-rgl | 0.92.798-1+deb7u1 | - +- amd64 | r-cran-rglpk | 0.3-8-1 | - +- amd64 | r-cran-rgtk2 | 2.20.24-1 | - +- amd64 | r-cran-rjags | 3.3-1 | - +- amd64 | r-cran-rjava | 0.9-3-1 | - +- amd64 | r-cran-rmpi | 0.5-9-3 | - +- amd64 | r-cran-rms | 3.5-0-1 | - +- amd64 | r-cran-rmysql | 0.9-3-1+b1 | - +- amd64 | r-cran-robustbase | 0.8-1-1-1 | - +- amd64 | r-cran-rodbc | 1.3-6-1 | - +- amd64 | r-cran-rpart | 3.1.54-1 | - +- amd64 | r-cran-rquantlib | 0.3.8-2 | - +- amd64 | r-cran-rserve | 0.6-8-1 | - +- amd64 | r-cran-rsprng | 1.0-2 | - +- amd64 | r-cran-rsqlite | 0.11.1-1 | - +- amd64 | r-cran-rsymphony | 0.1-14-1 | - +- amd64 | r-cran-scatterplot3d | 0.3-33-1 | - +- amd64 | r-cran-slam | 0.1-24-1 | - +- amd64 | r-cran-sm | 2.2-4.1-1 | - +- amd64 | r-cran-sn | 0.4-17-1 | - +- amd64 | r-cran-sp | 1:0.9-81-1 | - +- amd64 | r-cran-spatial | 7.3-4-1 | - +- amd64 | r-cran-spc | 1:0.4.1-1 | - +- amd64 | r-cran-survival | 2.36-14-1 | - +- amd64 | r-cran-timedate | 2160.95-1 | - +- amd64 | r-cran-timeseries | 2160.94-1 | - +- amd64 | r-cran-tkrplot | 0.0.23-1 | - +- amd64 | r-cran-tseries | 0.10-28-1 | - +- amd64 | r-cran-urca | 1.2-6-1 | - +- amd64 | r-cran-vegan | 2.0-3-1 | - +- amd64 | r-cran-vgam | 0.8-7-1 | - +- amd64 | r-cran-xml | 3.9-4-1 | - +- amd64 | r-cran-zoo | 1.7-7-1 | - +- amd64 | r-mathlib | 2.15.1-4 | - +- amd64 | r-other-mott-happy | 2.1-7 | - +- amd64 | r-other-rot | 1.0-4 | - +- amd64 | rabbitsign | 2.1+dmca1-1+b1 | - +! amd64 | racket | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +- amd64 | racoon | 1:0.8.0-14 | - +- amd64 | radare2 | 0.9-3 | - +- amd64 | radeontool | 1.6.2-1.1 | - ++ amd64 | radeontop | - | 0.7-1~bpo70+1 +- amd64 | radiance | 4R1+20120125-1+b1 | - +- amd64 | radio | 3.102-3 | - +- amd64 | radioclk | 1.0.ds1-12 | - +- amd64 | radiotray | 0.7.2-1 | - +- amd64 | radiusclient1 | 0.3.2-14 | - +- amd64 | radiusd-livingston | 2.1-20 | - +- amd64 | radsecproxy | 1.6.2-1 | - +- amd64 | radvd | 1:1.8.5-1 | - +- amd64 | rafkill | 1.2.2-3.3+b1 | - +- amd64 | ragel | 6.7-1.1 | - +- amd64 | raidutils | 0.0.6-19 | - +- amd64 | raincat | 1.1-3 | - +- amd64 | raincat-dbg | 1.1-3 | - +- amd64 | rakarrack | 0.6.1-4 | - +- amd64 | rakudo | 0.1~2012.01-1 | - +- amd64 | ramond | 0.5-4 | - +- amd64 | rancid | 2.3.8-3 | - +- amd64 | randomize-lines | 0.2.7 | - +- amd64 | randomsound | 0.2-5 | - +- amd64 | randtype | 1.13-10 | - +- amd64 | rapidsvn | 0.12.0dfsg-6 | - +- amd64 | raptor-utils | 1.4.21-7.1 | - +- amd64 | raptor2-utils | 2.0.8-2 | - +- amd64 | rarian-compat | 0.8.1-5 | - +- amd64 | rarpd | 0.981107-8 | - +- amd64 | rasmol | 2.7.5.2-1 | - +- amd64 | rasqal-utils | 0.9.29-1 | - +- amd64 | raster3d | 3.0-2-4 | - +- amd64 | rasterlite-bin | 1.1~svn11-2 | - +- amd64 | rasterlite-dbg | 1.1~svn11-2 | - +- amd64 | rat | 4.2.22-2.1 | - +- amd64 | ratbox-services-common | 1.2.4-2+b1 | - +- amd64 | ratbox-services-mysql | 1.2.4-2+b1 | - +- amd64 | ratbox-services-pgsql | 1.2.4-2+b1 | - +- amd64 | ratbox-services-sqlite | 1.2.4-2+b1 | - +- amd64 | ratfor | 1.0-15 | - +- amd64 | ratmenu | 2.3.20 | - +- amd64 | ratpoison | 1.4.5-4 | - +- amd64 | ratproxy | 1.58+dfsg-3+b1 | - +- amd64 | rats | 2.3-1 | - +- amd64 | rawstudio | 2.0-1.1 | - +- amd64 | rawstudio-dbg | 2.0-1.1 | - +- amd64 | rawtherapee | 4.0.9-4 | - +- amd64 | raxml | 7.2.8-2 | - +- amd64 | razor | 1:2.85-4+b1 | - +- amd64 | rblcheck | 20020316-7 | - +- amd64 | rbldnsd | 0.996b | - +- amd64 | rbootd | 2.0-10 | - +- amd64 | rc | 1.7.1-4 | - +- amd64 | rcov | 1.0-2 | - +- amd64 | rcs | 5.8.1-1 | - +- amd64 | rcs-blame | 1.3.1-2 | - +- amd64 | rdate | 1:1.2-5 | - +- amd64 | rdd | 2.0.7-2+b1 | - +- amd64 | rdesktop | 1.7.1-1 | - +- amd64 | rdfind | 1.3.1-1 | - +- amd64 | rdiff | 0.9.7-9 | - +- amd64 | rdiff-backup | 1.2.8-7 | - +- amd64 | rdiff-backup-fs | 1.0.0-4 | - +- amd64 | rdist | 6.1.5-18 | - +- amd64 | rdmacm-utils | 1.0.15-1+deb7u1 | - +- amd64 | rdnssd | 1.0.1-1+b1 | - +- amd64 | rds-tools | 1.4.1-OFED-1.4.2-1 | - +- amd64 | rdup | 1.1.11-1+b1 | - +- amd64 | re | 0.1-5 | - +- amd64 | re2c | 0.13.5-1 | - +- amd64 | read-edid | 2.0.0-3.1 | - +- amd64 | readahead-fedora | 2:1.5.6-4 | - +- amd64 | readseq | 1-9 | - +- amd64 | realpath | 1.18 | - +- amd64 | realtimebattle | 1.0.8-13 | - +- amd64 | reaver | 1.4-2 | - ++ amd64 | rebar | - | 2.0.0-5~bpo70+1 +- amd64 | recite | 1.0-8.2 | - +- amd64 | recode | 3.6-20 | - +- amd64 | recoll | 1.17.3-2 | - +- amd64 | recordmydesktop | 0.3.8.1+svn602-1+b1 | - +- amd64 | recover | 1.3c-11 | - +- amd64 | recoverdm | 0.20-2+b1 | - +- amd64 | recoverjpeg | 2.0-3.1 | - +- amd64 | recutils | 1.5-1 | - ++ amd64 | redeclipse | - | 1.4-5~bpo70+1 ++ amd64 | redeclipse-dbg | - | 1.4-5~bpo70+1 ++ amd64 | redeclipse-server | - | 1.4-5~bpo70+1 ++ amd64 | redeclipse-server-dbg | - | 1.4-5~bpo70+1 +- amd64 | redir | 2.2.1-10 | - +! amd64 | redis-server | 2:2.4.14-1 | 2:2.8.6-1~bpo70+1 ++ amd64 | redis-tools | - | 2:2.8.6-1~bpo70+1 +- amd64 | redland-utils | 1.0.15-1+b1 | - +- amd64 | redmine-plugin-botsfilter | 1.02-2 | - +- amd64 | redshift | 1.7-2 | - +- amd64 | redsocks | 0.4+dfsg-1 | - +- amd64 | ree | 1.3-2.1 | - +- amd64 | referencer | 1.1.6-2+b4 | - +- amd64 | refit | 0.14-2 | - +- amd64 | regexxer | 0.9-2.1 | - +- amd64 | regina-normal | 4.93-1 | - +- amd64 | regina-normal-dev | 4.93-1 | - +- amd64 | regina-normal-mpi | 4.93-1 | - +- amd64 | regina-rexx | 3.6-2 | - +- amd64 | regionset | 0.1-3 | - +! amd64 | registry-tools | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | reglookup | 0.12.0-1 | - +- amd64 | reiser4progs | 1.0.7-6.3 | - +- amd64 | reiserfsprogs | 1:3.6.21-1 | - +- amd64 | rekonq | 0.9.2-1 | - +- amd64 | rekonq-dbg | 0.9.2-1 | - +- amd64 | remake | 3.81+dbg0.2~dfsg.1-1 | - +! amd64 | remctl-client | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | remctl-server | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | remembrance-agent | 2.12-7 | - +- amd64 | remind | 03.01.12-1 | - +- amd64 | remmina | 1.0.0-4+deb7u1 | - +- amd64 | remmina-plugin-gnome | 1.0.0-4+deb7u1 | - +- amd64 | remmina-plugin-nx | 1.0.0-4+deb7u1 | - +- amd64 | remmina-plugin-rdp | 1.0.0-4+deb7u1 | - +- amd64 | remmina-plugin-telepathy | 1.0.0-4+deb7u1 | - +- amd64 | remmina-plugin-vnc | 1.0.0-4+deb7u1 | - +- amd64 | remmina-plugin-xdmcp | 1.0.0-4+deb7u1 | - +- amd64 | remote-tty | 4.0-13 | - +- amd64 | renameutils | 0.12.0-1 | - +- amd64 | renattach | 1.2.4-3 | - +- amd64 | rep | 0.90.2-1.3 | - +- amd64 | rep-gtk | 1:0.90.0-2 | - +- amd64 | rephrase | 0.1-3 | - +! amd64 | reprepro | 4.12.5-1 | 4.13.1-1~bpo70+1 +- amd64 | repro | 1.8.5-4 | - +- amd64 | reptyr | 0.3-2 | - +- amd64 | resample | 1.8.1-1 | - +- amd64 | resiprocate-turn-server | 1.8.5-4 | - +- amd64 | resource-agents | 1:3.9.2-5+deb7u1 | - +- amd64 | resource-agents-dev | 1:3.9.2-5+deb7u1 | - +- amd64 | restartd | 0.2.2 | - +- amd64 | rev-plugins | 0.3.1-2 | - +- amd64 | revelation | 0.4.13-1.2 | - +- amd64 | rexima | 1.4-7 | - +- amd64 | rfdump | 1.6-2 | - +- amd64 | rfkill | 0.4-1 | - +- amd64 | rgbpaint | 0.8.7-3 | - +- amd64 | rgmanager | 3.0.12-3.2+deb7u2 | - ++ amd64 | rgxg | - | 0.1-1~bpo70+1 +- amd64 | rhash | 1.2.9-8+deb7u1 | - +- amd64 | rheolef | 6.1-2.1 | - +- amd64 | rhn-client-tools | 1.8.9-3 | - +- amd64 | rhythmbox | 2.97-2.1 | - +- amd64 | rhythmbox-dbg | 2.97-2.1 | - +- amd64 | rhythmbox-dev | 2.97-2.1 | - +- amd64 | rhythmbox-plugin-cdrecorder | 2.97-2.1 | - +- amd64 | rhythmbox-plugins | 2.97-2.1 | - +- amd64 | ri-li | 2.0.1-2 | - +- amd64 | rifiuti | 1.0+20040505-4+b1 | - +- amd64 | rifiuti2 | 0.5.1-3+b1 | - +- amd64 | rig | 1.11-1 | - +- amd64 | rinetd | 0.62-5.1 | - +- amd64 | ripole | 0.2.0+20081101.0215-1 | - +- amd64 | ripperx | 2.7.3-1 | - +- amd64 | ristretto | 0.3.7-1 | - +- amd64 | rivet-plugins | 1.8.0-1 | - +- amd64 | rkward | 0.5.7-2+deb7u1 | - +- amd64 | rlfe | 6.2+dfsg-0.1 | - +- amd64 | rlinetd | 0.8.2-2 | - +- amd64 | rlplot | 1.5-2 | - +- amd64 | rlpr | 2.05-4 | - +- amd64 | rlvm | 0.12-4 | - +- amd64 | rlwrap | 0.37-3 | - +- amd64 | rmail | 8.14.4-4 | - +- amd64 | rman | 3.2-6 | - +- amd64 | rnahybrid | 2.1.1-1 | - +- amd64 | rng-tools | 2-unofficial-mt.14-1 | - +- amd64 | roaraudio | 1.0~beta2-3 | - +- amd64 | roaraudio-dbg | 1.0~beta2-3 | - +- amd64 | roarclients | 1.0~beta2-3 | - +- amd64 | roarplaylistd | 0.1.1-2 | - +- amd64 | roarplaylistd-dbg | 0.1.1-2 | - +- amd64 | robocut | 1.0.8-1 | - +- amd64 | robojournal | 0.2.1-1 | - +- amd64 | robot-player | 3.0.2+dfsg-4+b1 | - +- amd64 | robotfindskitten | 1.7320508.406-3 | - +- amd64 | rockdodger | 0.6.0a-7 | - +- amd64 | rocs | 4:4.8.4-1 | - +- amd64 | rofs | 2006.11.28-2.1 | - +- amd64 | rolldice | 1.10-5 | - +- amd64 | root-plugin-geom-gdml | 5.34.00-2 | - +- amd64 | root-plugin-geom-geombuilder | 5.34.00-2 | - +- amd64 | root-plugin-geom-geompainter | 5.34.00-2 | - +- amd64 | root-plugin-graf2d-asimage | 5.34.00-2 | - +- amd64 | root-plugin-graf2d-qt | 5.34.00-2 | - +- amd64 | root-plugin-graf2d-x11 | 5.34.00-2 | - +- amd64 | root-plugin-graf3d-x3d | 5.34.00-2 | - +- amd64 | root-plugin-gui-fitpanel | 5.34.00-2 | - +- amd64 | root-plugin-gui-guibuilder | 5.34.00-2 | - +- amd64 | root-plugin-gui-qt | 5.34.00-2 | - +- amd64 | root-plugin-gui-sessionviewer | 5.34.00-2 | - +- amd64 | root-plugin-hist-hbook | 5.34.00-2 | - +- amd64 | root-plugin-hist-histpainter | 5.34.00-2 | - +- amd64 | root-plugin-hist-spectrumpainter | 5.34.00-2 | - +- amd64 | root-plugin-io-sql | 5.34.00-2 | - +- amd64 | root-plugin-io-xml | 5.34.00-2 | - +- amd64 | root-plugin-math-fftw3 | 5.34.00-2 | - +- amd64 | root-plugin-math-fumili | 5.34.00-2 | - +- amd64 | root-plugin-math-minuit2 | 5.34.00-2 | - +- amd64 | root-plugin-montecarlo-pythia8 | 5.34.00-2 | - +- amd64 | root-plugin-net-globus | 5.34.00-2 | - +- amd64 | root-plugin-net-krb5 | 5.34.00-2 | - +- amd64 | root-plugin-proof-peac | 5.34.00-2 | - +- amd64 | root-plugin-sql-mysql | 5.34.00-2 | - +- amd64 | root-plugin-sql-odbc | 5.34.00-2 | - +- amd64 | root-plugin-sql-pgsql | 5.34.00-2 | - +- amd64 | root-plugin-tree-treeviewer | 5.34.00-2 | - +- amd64 | root-system-bin | 5.34.00-2 | - +- amd64 | root-system-proofd | 5.34.00-2 | - +- amd64 | root-system-rootd | 5.34.00-2 | - +- amd64 | root-tail | 1.2-3 | - +- amd64 | rootstrap | 0.3.25-1 | - +- amd64 | rosegarden | 1:12.04-1 | - +- amd64 | rosegarden-dbg | 1:12.04-1 | - +- amd64 | rotix | 0.83-4 | - +- amd64 | rotter | 0.9-3 | - +- amd64 | routino | 2.2-4+deb7u1 | - +- amd64 | rovclock | 0.6e-7 | - +- amd64 | rox-filer | 2.10-3 | - +- amd64 | roxterm-gtk2 | 2.6.5-1 | - +- amd64 | roxterm-gtk3 | 2.6.5-1 | - +- amd64 | rpcbind | 0.2.0-8 | - +- amd64 | rplay-client | 3.3.2-14 | - +- amd64 | rplay-contrib | 3.3.2-14 | - +- amd64 | rplay-server | 3.3.2-14 | - +- amd64 | rpm | 4.10.0-5+deb7u1 | - +- amd64 | rpm-common | 4.10.0-5+deb7u1 | - +- amd64 | rpm2cpio | 4.10.0-5+deb7u1 | - +- amd64 | rpm2html | 1.11.2-3 | - +- amd64 | rrdcached | 1.4.7-2 | - +- amd64 | rrdcollect | 0.2.10-2 | - +- amd64 | rrdcollect-dbg | 0.2.10-2 | - +- amd64 | rrdtool | 1.4.7-2 | - +- amd64 | rrdtool-dbg | 1.4.7-2 | - +- amd64 | rrdtool-tcl | 1.4.7-2 | - +- amd64 | rrep | 1.3.3-2 | - +- amd64 | rrootage | 0.23a-9 | - +- amd64 | rs | 20120414-1 | - +- amd64 | rsakeyfind | 1:1.0-2.1 | - +- amd64 | rsh-client | 0.17-15 | - +- amd64 | rsh-redone-client | 85-1 | - +- amd64 | rsh-redone-server | 85-1 | - +- amd64 | rsh-server | 0.17-15 | - +- amd64 | rsibreak | 4:0.11-2 | - +- amd64 | rsrce | 0.2.2 | - +- amd64 | rss-glx | 0.9.1-5+b4 | - +- amd64 | rss2irc | 0.4.2-4 | - +- amd64 | rssh | 2.3.3-6 | - +- amd64 | rsstail | 1.8-1 | - +- amd64 | rstat-client | 4.0.1-8 | - +- amd64 | rstatd | 4.0.1-8 | - +- amd64 | rsync | 3.0.9-4 | - +- amd64 | rsyncrypto | 1.12-1+b1 | - +! amd64 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-gnutls | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-gssapi | 5.8.11-3 | 7.4.4-1~bpo70+1 ++ amd64 | rsyslog-mongodb | - | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-mysql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-pgsql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-relp | 5.8.11-3 | 7.4.4-1~bpo70+1 +- amd64 | rt-tests | 0.83-1+deb7u1 | - +- amd64 | rt4-extension-authenexternalauth | 0.10-4 | - +- amd64 | rtai | 3.8.1-4 | - +- amd64 | rtai-source | 3.8.1-4 | - +- amd64 | rtgui | 0.2.81-4 | - +- amd64 | rtkit | 0.10-2+wheezy1 | - ++ amd64 | rtl-sdr | - | 0.5.2.7.3ab6-1~bpo70+1 +- amd64 | rtmpdump | 2.4+20111222.git4e06e21-1 | - +- amd64 | rtorrent | 0.9.2-1 | - +- amd64 | rtpproxy | 1.2.1-1.1 | - +- amd64 | rubberband-cli | 1.3-1.3 | - +- amd64 | rubberband-ladspa | 1.3-1.3 | - +- amd64 | rubberband-vamp | 1.3-1.3 | - +- amd64 | rubrica | 2.0-1.3 | - +- amd64 | ruby-akonadi | 4:4.8.4-1 | - +- amd64 | ruby-atk | 1.1.3-2+b1 | - +- amd64 | ruby-atk-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-bcrypt | 3.0.1-2 | - +- amd64 | ruby-bdb | 0.6.5-7 | - +- amd64 | ruby-bluecloth | 2.2.0-3 | - +- amd64 | ruby-cairo | 1.12.2-2 | - +- amd64 | ruby-dataobjects-mysql | 0.10.8-4 | - +- amd64 | ruby-dataobjects-postgres | 0.10.8-2 | - +- amd64 | ruby-dataobjects-sqlite3 | 0.10.8-3 | - +- amd64 | ruby-debian | 0.3.8+b1 | - +- amd64 | ruby-dep-selector | 0.0.8-1 | - +- amd64 | ruby-eb | 2.6-2 | - +- amd64 | ruby-em-http-request | 0.3.0-1 | - +- amd64 | ruby-escape-utils | 0.2.4-3 | - +- amd64 | ruby-eventmachine | 0.12.10-3 | - +- amd64 | ruby-exif | 0.1.2-20 | - +- amd64 | ruby-fast-stemmer | 1.0.1-1 | - +- amd64 | ruby-fast-xs | 0.8.0-3 | - +- amd64 | ruby-ferret | 0.11.8.4+debian-2 | - +- amd64 | ruby-ffi | 1.0.11debian-5 | - +- amd64 | ruby-fftw3 | 0.4-4 | - +- amd64 | ruby-fftw3-dbg | 0.4-4 | - +- amd64 | ruby-fssm | 0.2.9-2 | - +- amd64 | ruby-fusefs | 0.7.0-3 | - +- amd64 | ruby-gd | 0.8.0-3 | - +- amd64 | ruby-gdk-pixbuf2 | 1.1.3-2+b1 | - +- amd64 | ruby-gdk-pixbuf2-dbg | 1.1.3-2+b1 | - +! amd64 | ruby-gherkin | 2.4.6-1 | 2.12.1-1~bpo70+1 +- amd64 | ruby-gio2 | 1.1.3-2+b1 | - +- amd64 | ruby-gio2-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-glib2 | 1.1.3-2+b1 | - +- amd64 | ruby-glib2-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-globalhotkeys | 0.3.2-3 | - +- amd64 | ruby-gnome2-dev | 1.1.3-2+b1 | - +- amd64 | ruby-god | 0.12.1-1 | - +- amd64 | ruby-goocanvas | 1.1.3-2+b1 | - +- amd64 | ruby-goocanvas-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-gpgme | 2.0.0-2 | - +- amd64 | ruby-grib | 0.2.2-3 | - +- amd64 | ruby-grib-dbg | 0.2.2-3 | - +- amd64 | ruby-gsl | 1.14.7+dfsg-1 | - +- amd64 | ruby-gsl-dbg | 1.14.7+dfsg-1 | - +- amd64 | ruby-gstreamer | 1.1.3-2+b1 | - +- amd64 | ruby-gstreamer-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-gtk2 | 1.1.3-2+b1 | - +- amd64 | ruby-gtk2-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-gtksourceview2 | 1.1.3-2+b1 | - +- amd64 | ruby-gtksourceview2-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-guestfs | 1:1.18.1-1+deb7u3 | - +! amd64 | ruby-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +- amd64 | ruby-hpricot | 0.8.6-3 | - +- amd64 | ruby-inotify | 0.0.2-6 | - +- amd64 | ruby-json | 1.7.3-3 | - +- amd64 | ruby-kakasi | 2002.09.28-3 | - +- amd64 | ruby-kde4 | 4:4.8.4-1 | - +- amd64 | ruby-kde4-dbg | 4:4.8.4-1 | - +- amd64 | ruby-kgio | 2.7.3-1 | - +- amd64 | ruby-krb5-auth | 0.7-4 | - +- amd64 | ruby-lapack | 1.5-1 | - +- amd64 | ruby-lapack-dbg | 1.5-1 | - +- amd64 | ruby-ldap | 0.9.12-2 | - +- amd64 | ruby-libvirt | 0.4.0-1 | - +- amd64 | ruby-libxml | 2.3.2-1 | - +- amd64 | ruby-mecab | 0.99.3-2 | - +- amd64 | ruby-msgpack | 0.4.6-4 | - +- amd64 | ruby-multibitnums | 0.1.4-1 | - +- amd64 | ruby-multibitnums-dbg | 0.1.4-1 | - +- amd64 | ruby-mysql | 2.8.2+gem2deb-3 | - +- amd64 | ruby-narray | 0.6.0.1-1 | - +- amd64 | ruby-narray-dbg | 0.6.0.1-1 | - +- amd64 | ruby-ncurses | 1.3.1-2 | - +- amd64 | ruby-netcdf | 0.6.6-1 | - +- amd64 | ruby-netcdf-dbg | 0.6.6-1 | - +- amd64 | ruby-nokogiri | 1.5.5-1 | - +- amd64 | ruby-nora | 1:0.0.20041021-5.1 | - ++ amd64 | ruby-notmuch | - | 0.16-1~bpo70+1 +- amd64 | ruby-odbc | 0.99994-4 | - +- amd64 | ruby-odbc-dbg | 0.99994-4 | - +- amd64 | ruby-oily-png | 1.0.2-2 | - ++ amd64 | ruby-oj | - | 2.0.10-1~bpo70+1 +- amd64 | ruby-okular | 4:4.8.4-1 | - +- amd64 | ruby-opengl | 0.60.1+dfsg2-1~wheezy1 | - +- amd64 | ruby-pango | 1.1.3-2+b1 | - +- amd64 | ruby-pango-dbg | 1.1.3-2+b1 | - +! amd64 | ruby-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! amd64 | ruby-password | 0.5.3-3 | 0.5.3-4~bpo70+1 +- amd64 | ruby-pcap | 0.7.0-2 | - ++ amd64 | ruby-pcaprub | - | 0.11.3-1~bpo70+1 +- amd64 | ruby-pg | 0.13.2-2 | - +- amd64 | ruby-phonon | 4:4.8.4-1 | - +- amd64 | ruby-plasma | 4:4.8.4-1 | - +- amd64 | ruby-playerc | 3.0.2+dfsg-4+b1 | - +- amd64 | ruby-poppler | 1.1.3-2+b1 | - +- amd64 | ruby-poppler-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-posix-spawn | 0.3.6-1 | - +- amd64 | ruby-prof | 0.7.3-1.1 | - +- amd64 | ruby-qdbm | 1.8.78-2 | - +- amd64 | ruby-qpid | 0.16-6+deb7u1 | - +- amd64 | ruby-qscintilla2 | 4:4.8.4-1 | - +- amd64 | ruby-qt4 | 4:4.8.4-1 | - +- amd64 | ruby-qt4-dbg | 4:4.8.4-1 | - +- amd64 | ruby-qt4-declarative | 4:4.8.4-1 | - +- amd64 | ruby-qt4-script | 4:4.8.4-1 | - +- amd64 | ruby-qt4-test | 4:4.8.4-1 | - +- amd64 | ruby-qt4-uitools | 4:4.8.4-1 | - +- amd64 | ruby-qt4-webkit | 4:4.8.4-1 | - +- amd64 | ruby-raindrops | 0.9.0-1 | - +- amd64 | ruby-rdiscount | 1.6.8-3 | - +- amd64 | ruby-redcarpet | 2.1.1-3 | - +- amd64 | ruby-redcloth | 4.2.9-2 | - +! amd64 | ruby-remctl | 3.2-4 | 3.8-1~bpo70+1 +- amd64 | ruby-revolution | 0.5-8 | - +- amd64 | ruby-rhash | 1.2.9-8+deb7u1 | - ++ amd64 | ruby-rjb | - | 1.4.8-1~bpo70+1 +- amd64 | ruby-rmagick | 2.13.1-6 | - +- amd64 | ruby-rsvg2 | 1.1.3-2+b1 | - +- amd64 | ruby-rsvg2-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-sdl | 2.1.2-3 | - +- amd64 | ruby-sdl-dbg | 2.1.2-3 | - +- amd64 | ruby-selinux | 2.1.9-5 | - +- amd64 | ruby-semanage | 2.1.6-6 | - +- amd64 | ruby-sequel-pg | 1.4.0-1 | - +- amd64 | ruby-serialport | 1.1.0-1 | - +- amd64 | ruby-shadow | 2.1.4-2 | - +- amd64 | ruby-sigar | 0.7.2-1 | - +- amd64 | ruby-soprano | 4:4.8.4-1 | - +- amd64 | ruby-sqlite3 | 1.3.6-2 | - +- amd64 | ruby-systemtimer | 1.2.3-1 | - +- amd64 | ruby-taglib2 | 0.1.3-1 | - +! amd64 | ruby-termios | 0.9.6-2 | 1.0.0-1~bpo70+1 +- amd64 | ruby-tioga | 1.14-3 | - +- amd64 | ruby-tmail | 1.2.7.1-3+deb7u1 | - +- amd64 | ruby-tokyocabinet | 1.31-2+b1 | - +- amd64 | ruby-tomoe | 0.6.0-1.3 | - +- amd64 | ruby-uconv | 0.5.3-2 | - +- amd64 | ruby-unf-ext | 0.0.5-2 | - +- amd64 | ruby-usb | 0.2.1-2 | - +- amd64 | ruby-vte | 1.1.3-2+b1 | - +- amd64 | ruby-vte-dbg | 1.1.3-2+b1 | - +- amd64 | ruby-xmlparser | 0.7.2-2 | - +- amd64 | ruby-xmmsclient | 0.8+dfsg-4 | - +- amd64 | ruby-yajl | 1.1.0-2 | - +- amd64 | ruby-zoom | 0.4.1-5 | - +- amd64 | ruby1.8 | 1.8.7.358-7.1+deb7u1 | - +- amd64 | ruby1.8-dev | 1.8.7.358-7.1+deb7u1 | - +- amd64 | ruby1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- amd64 | ruby1.9.1-dev | 1.9.3.194-8.1+deb7u2 | - +- amd64 | rumor | 1.0.5-1 | - +- amd64 | rungetty | 1.2-15 | - +- amd64 | runit | 2.1.1-6.2 | - +- amd64 | runlim | 1.7-1 | - +- amd64 | rusers | 0.17-8 | - +- amd64 | rusersd | 0.17-8 | - +- amd64 | rush | 1.7+dfsg-1+deb7u1 | - +- amd64 | rwall | 0.17-7 | - +- amd64 | rwalld | 0.17-7 | - +- amd64 | rwho | 0.17-12 | - +- amd64 | rwhod | 0.17-12 | - +- amd64 | rxp | 1.5.0-1 | - +- amd64 | rxvt | 1:2.6.4-14 | - +- amd64 | rxvt-beta | 2.7.10-6 | - +- amd64 | rxvt-ml | 1:2.6.4-14 | - +- amd64 | rxvt-unicode | 9.15-2 | - +- amd64 | rxvt-unicode-256color | 9.15-2 | - +- amd64 | rxvt-unicode-lite | 9.15-2 | - +- amd64 | rxvt-unicode-ml | 9.15-2 | - +- amd64 | rygel | 0.14.3-2+deb7u1 | - +- amd64 | rygel-1.0-dev | 0.14.3-2+deb7u1 | - +- amd64 | rygel-dbg | 0.14.3-2+deb7u1 | - +- amd64 | rygel-gst-launch | 0.14.3-2+deb7u1 | - +- amd64 | rygel-mediathek | 0.14.3-2+deb7u1 | - +- amd64 | rygel-playbin | 0.14.3-2+deb7u1 | - +- amd64 | rygel-preferences | 0.14.3-2+deb7u1 | - +- amd64 | rygel-tracker | 0.14.3-2+deb7u1 | - +- amd64 | rzip | 2.1-1 | - +- amd64 | s3d | 0.2.2-8 | - +- amd64 | s3d-dbg | 0.2.2-8 | - +- amd64 | s3dfm | 0.2.2-8 | - +- amd64 | s3dosm | 0.2.2-8 | - +- amd64 | s3dvt | 0.2.2-8 | - +- amd64 | s3dx11gate | 0.2.2-8 | - +- amd64 | s3ql | 1.11.1-3 | - +- amd64 | s3ql-dbg | 1.11.1-3 | - +- amd64 | s51dude | 0.2.0-1.1 | - +- amd64 | sa-exim | 4.2.1-14 | - +- amd64 | sac | 1.9b5-3 | - +- amd64 | safecat | 1.13-2 | - +- amd64 | safecopy | 1.6-1 | - +- amd64 | sagan | 0.2.1.r1-1+b1 | - +- amd64 | sagasu | 2.0.10-1 | - +- amd64 | saidar | 0.17-1 | - +- amd64 | sailcut | 1.3.5-2 | - +- amd64 | saint | 2.3.3-1 | - +- amd64 | sakura | 3.0.4-2 | - +- amd64 | sam2p | 0.49.1-1 | - +! amd64 | samba | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-common-bin | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-dbg | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 ++ amd64 | samba-dev | - | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-dsdb-modules | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 ++ amd64 | samba-libs | - | 2:4.1.5+dfsg-1~bpo70+1 ++ amd64 | samba-testsuite | - | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | samba-tools | 2:3.6.6-6+deb7u2 | - ++ amd64 | samba-vfs-modules | - | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | samba4 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | samba4-clients | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | samba4-common-bin | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | samba4-dev | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | samba4-testsuite | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | samdump2 | 1.1.1-1.1 | - +- amd64 | samhain | 2.8.3a-1+deb7u1 | - +- amd64 | sampleicc-tools | 1.6.4-1+b1 | - +- amd64 | samplerate-programs | 0.1.8-5 | - +- amd64 | samtools | 0.1.18-1 | - +- amd64 | sanduhr | 1.93-4 | - +- amd64 | sane | 1.0.14-9 | - +- amd64 | sane-utils | 1.0.22-7.4 | - +- amd64 | sanlock | 2.2-2 | - +- amd64 | saods9 | 7.0.1+dfsg-1 | - +- amd64 | saods9-blt | 7.0.1+dfsg-1 | - +- amd64 | sapphire | 0.15.8-9 | - +- amd64 | sarg | 2.3.2-2 | - +- amd64 | sary | 1:1.2.0-2.1 | - +- amd64 | sash | 3.7-12 | - +- amd64 | sasl2-bin | 2.1.25.dfsg1-6+deb7u1 | - +- amd64 | savi | 1.4.5-4 | - +- amd64 | sawfish | 1:1.5.3-2.1+b1 | - +- amd64 | sawfish-dbg | 1:1.5.3-2.1+b1 | - +- amd64 | saytime | 1.0-24 | - ++ amd64 | sbc-tools | - | 1.1-2~bpo7+1 +- amd64 | sbcl | 2:1.0.57.0-2 | - +- amd64 | sbnc | 1.2-26 | - +- amd64 | sbnc-dbg | 1.2-26 | - +- amd64 | sbnc-mysql | 1.2-26 | - +- amd64 | sbnc-tcl | 1.2-26 | - +- amd64 | sbox-dtc | 1.11.6-1 | - +- amd64 | sbrsh | 7.6.1 | - +- amd64 | sbrshd | 7.6.1 | - +- amd64 | sc | 7.16-3 | - +- amd64 | scalapack-mpi-test | 1.8.0-9 | - +- amd64 | scalapack-pvm-test | 1.8.0-9 | - +- amd64 | scalpel | 1.60-1 | - +- amd64 | scamper | 20111202b-1 | - +- amd64 | scanbuttond | 0.2.3.cvs20090713-8 | - +- amd64 | scanlogd | 2.2.5-3.1 | - +- amd64 | scanmem | 0.12-2 | - +- amd64 | scanssh | 2.0-4+b3 | - +- amd64 | scantool | 1.21+dfsg-3 | - +- amd64 | scantv | 3.102-3 | - +- amd64 | scdaemon | 2.0.19-2+deb7u1 | - +- amd64 | schedtool | 1.3.0-1 | - +- amd64 | scheme2c | 2011.07.26-5 | - +- amd64 | scheme48 | 1.8+dfsg-1 | - +- amd64 | scheme9 | 2010.11.13-2 | - +- amd64 | schism | 2:0+20110101-1 | - +- amd64 | schroot | 1.6.4-4 | - +- amd64 | schroot-dbg | 1.6.4-4 | - +- amd64 | scid | 1:4.3.0.cvs20120311-1 | - +- amd64 | scidavis | 0.2.4-3.3 | - +- amd64 | scilab-full-bin | 5.3.3-10 | - +- amd64 | scilab-full-bin-dbg | 5.3.3-10 | - +- amd64 | scilab-getfem++ | 4.1.1+dfsg1-11 | - +- amd64 | scilab-include | 5.3.3-10 | - +- amd64 | scilab-jims | 1.0-1 | - +- amd64 | scilab-minimal-bin | 5.3.3-10 | - +- amd64 | scilab-minimal-bin-dbg | 5.3.3-10 | - +- amd64 | scilab-scimysql | 0.1.1-5 | - +- amd64 | scim | 1.4.13-5 | - +- amd64 | scim-canna | 1.0.0-4.2 | - +- amd64 | scim-chewing | 0.3.4-1.2 | - +- amd64 | scim-gtk-immodule | 1.4.13-5 | - +- amd64 | scim-kmfl-imengine | 0.9.8-1.1 | - +- amd64 | scim-m17n | 0.2.3-3 | - +- amd64 | scim-modules-socket | 1.4.13-5 | - +- amd64 | scim-modules-table | 0.5.9-2 | - +- amd64 | scim-mozc | 1.5.1090.102-4+deb7u1 | - +- amd64 | scim-skk | 0.5.2-7.2 | - +- amd64 | scim-thai | 0.1.3-1 | - +- amd64 | scim-unikey | 0.3.1+debian-3.1 | - +- amd64 | sciplot-dev | 1.36-15 | - +- amd64 | sciplot1 | 1.36-15 | - +- amd64 | scite | 3.0.2-3 | - +- amd64 | sciteproj | 0.7.05-2 | - +- amd64 | scli | 0.4.0-2 | - +- amd64 | scm | 5e5-3.2 | - +- amd64 | scmxx | 0.9.0-2.3 | - +- amd64 | scorched3d | 43.2a.dfsg-6.1 | - +- amd64 | scorched3d-dbg | 43.2a.dfsg-6.1 | - +- amd64 | scotch | 5.1.12b.dfsg-1.2 | - +- amd64 | scotch-dbg | 5.1.12b.dfsg-1.2 | - +- amd64 | scottfree | 1.14-9 | - +- amd64 | scratchbox2 | 2.2.4-1debian1 | - +- amd64 | screader | 1.8-7 | - +- amd64 | screen | 4.1.0~20120320gitdb59704-7 | - +- amd64 | screenie-qt | 0.0~git20100701-1 | - +- amd64 | screentest | 2.0-2.1 | - +- amd64 | scribus | 1.4.0.dfsg+r17300-1.1 | - +- amd64 | scrobble-cli | 0.10-4 | - +- amd64 | scrollz | 2.1-1.1 | - +- amd64 | scrot | 0.8-13 | - +- amd64 | scrounge-ntfs | 0.9-6 | - +- amd64 | scrub | 2.4.1-1 | - +- amd64 | scrypt | 1.1.6-3 | - +- amd64 | scsitools | 0.12-2.1 | - +- amd64 | scummvm | 1.4.1-1 | - +- amd64 | scute | 1.4.0-4 | - +- amd64 | sdate | 0.3.1+nmu1 | - +- amd64 | sdcc | 3.1.0+dfsg-1 | - +- amd64 | sdcc-ucsim | 3.1.0+dfsg-1 | - +- amd64 | sdcv | 0.4.2-16 | - +- amd64 | sdl-ball | 1.01-3 | - +- amd64 | sdlbasic | 0.0.20070714-4 | - +- amd64 | sdlbasic-dbg | 0.0.20070714-4 | - +- amd64 | sdlbrt | 0.0.20070714-4 | - +- amd64 | sdop | 0.71-1 | - +- amd64 | sdpa | 7.3.8+dfsg-1 | - +- amd64 | sdpam | 7.3.8+dfsg-1 | - +- amd64 | sdparm | 1.07-1 | - +- amd64 | sdpnetstat | 1.60-1 | - +- amd64 | seahorse | 3.4.1-2 | - +- amd64 | seahorse-daemon | 3.2.2-1 | - ++ amd64 | seahorse-nautilus | - | 3.8.0-1~bpo70+1 +- amd64 | searchandrescue | 1.4.0-2 | - +- amd64 | searchmonkey | 0.8.1-8 | - +- amd64 | seccure | 0.3-3 | - +- amd64 | secure-delete | 3.1-5 | - +- amd64 | sed | 4.2.1-10 | - +- amd64 | seed | 3.2.0-2 | - +- amd64 | seesat5 | 0.90.10-1.1 | - +- amd64 | seetxt | 0.72-4 | - +- amd64 | selinux-utils | 2.1.9-5 | - +- amd64 | sendfile | 2.1b.20080616-5.2 | - +- amd64 | sendip | 2.5-5 | - +- amd64 | sendmail-bin | 8.14.4-4 | - +- amd64 | sensible-mda | 8.14.4-4 | - +- amd64 | sensord | 1:3.3.2-2+deb7u1 | - +- amd64 | sensors-applet | 3.0.0-0.2 | - +- amd64 | sentinella | 0.9.0-3 | - +- amd64 | sepol-utils | 2.1.4-3 | - +- amd64 | seq24 | 0.9.2-2 | - +- amd64 | seqan-apps | 1.3.1-1 | - +- amd64 | ser2net | 2.6-1 | - +- amd64 | serd-dbg | 0.14.0~dfsg0-2 | - +- amd64 | serdi | 0.14.0~dfsg0-2 | - +- amd64 | service-wrapper | 3.5.3+repack-0+nmu1 | - +- amd64 | servicefw | 1.2.0-3 | - +- amd64 | setcd | 1.5-6 | - +- amd64 | setools | 3.3.7-3 | - +- amd64 | setpwc | 1.2-3.1 | - +- amd64 | setserial | 2.17-47 | - +- amd64 | sextractor | 2.8.6+dfsg-1 | - +- amd64 | seyon | 2.20c-31 | - +- amd64 | sfftobmp | 3.1.3-1+b1 | - +- amd64 | sfftw-dev | 2.1.5-1 | - +- amd64 | sfftw2 | 2.1.5-1 | - +- amd64 | sffview | 0.4.1-2+b1 | - +- amd64 | sflphone-daemon | 1.1.0-2+b1 | - +- amd64 | sflphone-evolution | 1.1.0-2+b1 | - +- amd64 | sflphone-gnome | 1.1.0-2+b1 | - +- amd64 | sfront | 0.98-1 | - +- amd64 | sfst | 1.2.0-1.2 | - +- amd64 | sg3-utils | 1.33-1 | - +- amd64 | sgf2dg | 4.026-10 | - +- amd64 | sgrep | 1.94a-4 | - +- amd64 | sgt-puzzles | 9411-1 | - +- amd64 | shapelib | 1.2.10-7 | - +- amd64 | shaperd | 0.2.1-5.2 | - +- amd64 | shapetools | 1.4pl6-11 | - +- amd64 | shared-mime-info | 1.0-1+b1 | - +- amd64 | sharutils | 1:4.11.1-1 | - +- amd64 | shed | 1.15-2 | - +- amd64 | shell-fm | 0.7+git20100414-1 | - +- amd64 | shellinabox | 2.14-1 | - +- amd64 | shelltestrunner | 1.2.1-3 | - +- amd64 | shelxle | 1.0.564-1 | - +- amd64 | shiboken | 1.1.1-1 | - +- amd64 | shiboken-dbg | 1.1.1-1 | - +- amd64 | shisa | 1.0.1-2 | - +- amd64 | shisen.app | 1.2.1-1+b5 | - +- amd64 | shishi | 1.0.1-2 | - +- amd64 | shishi-dbg | 1.0.1-2 | - +- amd64 | shishi-kdc | 1.0.1-2 | - +- amd64 | shntool | 3.0.7-1 | - +- amd64 | shoes | 0.r396-5.3 | - +- amd64 | shotdetect | 1.0.86-1 | - +- amd64 | shotwell | 0.12.3-2+deb7u1 | - +- amd64 | shotwell-dbg | 0.12.3-2+deb7u1 | - +- amd64 | showfoto | 4:2.6.0-1+b2 | - +- amd64 | showq | 0.4.1+git20090622+dfsg0-1+b1 | - +- amd64 | showq-dbg | 0.4.1+git20090622+dfsg0-1+b1 | - +- amd64 | shush | 1.2.3-2 | - +- amd64 | sibsim4 | 0.20-1 | - +- amd64 | sic | 1.1-5 | - +- amd64 | sidplay | 2.0.9-6 | - +- amd64 | sidplay-base | 1.0.9-6 | - +- amd64 | sidplayfp | 0.3.1-1 | - +- amd64 | siege | 2.70-3 | - +- amd64 | siggen | 2.3.10-5 | - +- amd64 | sigma-align | 1.1.3-3 | - +- amd64 | signing-party | 1.1.4-1 | - +- amd64 | sigrok-cli | 0.3.0-2 | - +- amd64 | sigscheme | 0.8.5-2.1 | - +- amd64 | sigviewer | 0.5.1+svn556-1+b2 | - +- amd64 | silentjack | 0.3-2 | - +- amd64 | sim4 | 0.0.20030921-3 | - +- amd64 | simgrid | 3.7.1-1 | - +- amd64 | simh | 3.8.1-5 | - +- amd64 | simhash | 0.0.20110213-1 | - +- amd64 | similarity-tester | 2.62-1 | - +- amd64 | simple-scan | 3.4.2-1 | - +- amd64 | simpleopal | 3.10.4~dfsg-3 | - +- amd64 | simpleproxy | 3.4-5 | - +- amd64 | simulavr | 0.1.2.2-6.2 | - +- amd64 | simulpic | 1:2005-1-28-8 | - +- amd64 | simutrans | 111.2.2-1 | - +- amd64 | simutrans-makeobj | 111.2.2-1 | - +- amd64 | since | 1.1-2 | - +- amd64 | sineshaper | 0.4.2-7 | - +- amd64 | sinfo | 0.0.46-2 | - +- amd64 | sip-tester | 1:3.2-1 | - +- amd64 | sipcalc | 1.1.5-1 | - +- amd64 | sipcrack | 0.2-2+b1 | - +- amd64 | sipdialer | 1.8.5-4 | - +- amd64 | siproxd | 1:0.8.1-3+b1 | - +- amd64 | sipsak | 0.9.6-2.1+b1 | - +- amd64 | sipwitch | 1.2.4-1 | - +- amd64 | sipwitch-cgi | 1.2.4-1 | - +- amd64 | sispmctl | 3.1-1 | - +- amd64 | sitecopy | 1:0.16.6-4 | - +- amd64 | sitplus | 1.0.3-3 | - +- amd64 | sjeng | 11.2-8 | - +- amd64 | skalibs-dev | 0.47-1 | - +- amd64 | skanlite | 0.8-2 | - +- amd64 | skanlite-dbg | 0.8-2 | - +- amd64 | sketch | 1:0.3.7-1 | - +- amd64 | skipfish | 2.05b-1 | - +- amd64 | skksearch | 0.0-21 | - +- amd64 | skktools | 1.3.2-3 | - +- amd64 | skrooge | 1.3.0-1 | - +! amd64 | sks | 1.1.3-2 | 1.1.4-2~bpo70+1 +- amd64 | sks-ecc | 0.93-2 | - +- amd64 | skyeye | 1.2.5-2.1 | - +- amd64 | skytools | 2.1.13-2 | - +- amd64 | skytools-modules-9.1 | 2.1.13-2 | - +- amd64 | sl | 3.03-17 | - +- amd64 | slang-cfitsio | 0.3.8+nosvn-4.1 | - +- amd64 | slang-curl | 0.2.1-4.2 | - +- amd64 | slang-expat | 0.5.0-2 | - +- amd64 | slang-gdbm | 1.7.1-4 | - +- amd64 | slang-gsl | 0.7.0-5.1 | - +- amd64 | slang-histogram | 0.3.2a-3.1 | - +- amd64 | slang-pvm | 0.1.5-12.1 | - +- amd64 | slang-sqlite | 0.4.0-3.1 | - +- amd64 | slang-wildcard | 0.5.0-2 | - +- amd64 | slang-xfig | 0.2.0~.35-1.1 | - +- amd64 | slapd | 2.4.31-1+nmu2 | - +- amd64 | slapd-dbg | 2.4.31-1+nmu2 | - +- amd64 | slapd-smbk5pwd | 2.4.31-1+nmu2 | - +- amd64 | slashem | 0.0.7E7F3-6 | - +- amd64 | slashem-common | 0.0.7E7F3-6 | - +- amd64 | slashem-gtk | 0.0.7E7F3-6 | - +- amd64 | slashem-sdl | 0.0.7E7F3-6 | - +- amd64 | slashem-x11 | 0.0.7E7F3-6 | - +- amd64 | sleepd | 2.04 | - +- amd64 | sleepenh | 1.3-1 | - +! amd64 | sleuthkit | 3.2.3-2 | 4.1.2-2~bpo70+1 +- amd64 | slim | 1.3.4-2 | - +- amd64 | slimevolley | 2.4.2+dfsg-1 | - +- amd64 | slirp | 1:1.0.17-6 | - +- amd64 | slmon | 0.5.13-2.2 | - +- amd64 | sloccount | 2.26-5 | - +- amd64 | slpd | 1.2.1-9 | - +- amd64 | slptool | 1.2.1-9 | - +- amd64 | slrn | 1.0.0~pre18-1.3 | - +- amd64 | slrnface | 2.1.1-6 | - +- amd64 | slrnpull | 1.0.0~pre18-1.3 | - +- amd64 | slsh | 2.2.4-15 | - +- amd64 | sludge-compiler | 2.2-1 | - +- amd64 | sludge-devkit | 2.2-1 | - +- amd64 | sludge-engine | 2.2-1 | - +- amd64 | slurm | 0.4.0-1 | - +- amd64 | slurm-drmaa-dev | 1.0.4-3 | - +- amd64 | slurm-drmaa1 | 1.0.4-3 | - +- amd64 | slurm-llnl | 2.3.4-2+b1 | - +- amd64 | slurm-llnl-basic-plugins | 2.3.4-2+b1 | - +- amd64 | slurm-llnl-basic-plugins-dev | 2.3.4-2+b1 | - +- amd64 | slurm-llnl-slurmdbd | 2.3.4-2+b1 | - +- amd64 | slurm-llnl-sview | 2.3.4-2+b1 | - +- amd64 | slv2-jack | 0.6.6+dfsg1-2 | - +- amd64 | sm | 0.19-1 | - +- amd64 | sm-archive | 1.7-1 | - +- amd64 | sma | 1.4-2 | - +- amd64 | smartdimmer | 0.8b4+cvs20100914-4 | - +- amd64 | smartlist | 3.15-22 | - +- amd64 | smartmontools | 5.41+svn3365-1 | - +- amd64 | smartpm-core | 1.4-2 | - +- amd64 | smb-nat | 1:1.0-4 | - +- amd64 | smb4k | 1.0.1-1 | - +- amd64 | smbc | 1.2.2-3 | - +! amd64 | smbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | smbnetfs | 0.5.3a-1 | - +- amd64 | smc | 1.9+git20120222-1+b1 | - +- amd64 | smcroute | 0.95-1+deb7u1 | - +- amd64 | smf-utils | 1.3-2 | - +- amd64 | smitools | 0.4.8+dfsg2-7 | - +- amd64 | smlnj | 110.74-2 | - +- amd64 | smlnj-runtime | 110.74-2 | - +- amd64 | smoke-dev-tools | 4:4.8.4-1 | - +- amd64 | smokegen-dbg | 4:4.8.4-1 | - +- amd64 | smp-utils | 0.96-1 | - +- amd64 | smpeg-gtv | 0.4.5+cvs20030824-5 | - +- amd64 | smpeg-plaympeg | 0.4.5+cvs20030824-5 | - +- amd64 | smplayer | 0.8.0-1+deb7u1 | - +- amd64 | smsclient | 2.0.8z-10 | - +- amd64 | smstools | 3.1.14-1.2 | - +- amd64 | sn | 0.3.8-10.1 | - +- amd64 | snacc | 1.3.1-1 | - +- amd64 | snake4 | 1.0.12-14 | - +- amd64 | snappea | 3.0d3-22 | - +- amd64 | snappea-dev | 3.0d3-22 | - +- amd64 | snappy | 0.2-1 | - +- amd64 | snarf | 7.0-5 | - +- amd64 | snd-gtk-jack | 11.7-2 | - +- amd64 | snd-gtk-pulse | 11.7-2 | - +- amd64 | snd-nox | 11.7-2 | - +- amd64 | sndfile-programs | 1.0.25-5 | - +- amd64 | sndfile-tools | 1.03-2+b1 | - +- amd64 | sng | 1.0.2-7 | - +- amd64 | sniffit | 0.3.7.beta-16.1 | - +- amd64 | snimpy | 0.6.3-1 | - +- amd64 | snmp | 5.4.3~dfsg-2.7 | - +- amd64 | snmpd | 5.4.3~dfsg-2.7 | - +- amd64 | snmptrapfmt | 1.14+nmu1 | - +- amd64 | snooper | 19991202-7.1 | - +- amd64 | snoopy | 1.8.0-5 | - +- amd64 | snort | 2.9.2.2-3 | - +- amd64 | snort-common-libraries | 2.9.2.2-3 | - +- amd64 | snort-mysql | 2.9.2.2-3 | - +- amd64 | snort-pgsql | 2.9.2.2-3 | - +- amd64 | snowdrop | 0.02b-10 | - +- amd64 | sntop | 1.4.3-4 | - +- amd64 | so-synth-lv2 | 1.4-2 | - +- amd64 | sobby | 0.4.8-1 | - +- amd64 | socat | 1.7.1.3-1.4 | - +- amd64 | socket | 1.1-10 | - +- amd64 | socklog | 2.1.0-8 | - +- amd64 | socks4-clients | 4.3.beta2-18 | - +- amd64 | socks4-server | 4.3.beta2-18 | - +- amd64 | sockstat | 0.3-1.1 | - +- amd64 | socnetv | 0.90-3 | - +- amd64 | sofa-apps | 1.0~beta4-7 | - +- amd64 | sofia-sip-bin | 1.12.11+20110422-1 | - +- amd64 | softflowd | 0.9.9-1 | - +- amd64 | softhsm | 1.3.3-2 | - +- amd64 | softhsm-common | 1.3.3-2 | - +- amd64 | softhsm-dbg | 1.3.3-2 | - +! amd64 | sogo | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! amd64 | sogo-dbg | 1.3.16-1 | 2.0.5a-1~bpo70+1 +- amd64 | solarpowerlog | 0.23a-2 | - +- amd64 | solfege-oss | 3.20.6-1 | - +- amd64 | solid-pop3d | 0.15-26 | - +- amd64 | sonic | 0.1.17-1.1 | - +- amd64 | sooperlooper | 1.6.18~dfsg0-1 | - +- amd64 | soprano-daemon | 2.7.6+dfsg.1-2wheezy1 | - +- amd64 | sopwith | 1.7.4-6 | - +- amd64 | sord-dbg | 0.8.0~dfsg0-1 | - +- amd64 | sordi | 0.8.0~dfsg0-1 | - +- amd64 | sortmail | 1:2.4-1 | - +- amd64 | sound-juicer | 3.4.0-3 | - +- amd64 | soundkonverter | 1.5.0-1 | - +- amd64 | soundmodem | 0.16-1+b1 | - +- amd64 | soundstretch | 1.6.0-3 | - +- amd64 | soundstretch-dbg | 1.6.0-3 | - +- amd64 | source-highlight | 3.1.6-1.1 | - +- amd64 | sox | 14.4.0-3 | - +- amd64 | sp | 1.3.4-1.2.1-47.1+b1 | - +- amd64 | spacearyarya | 1.0.2-7 | - ++ amd64 | spacefm | - | 0.9.3-1~bpo70+1 ++ amd64 | spacefm-gtk3 | - | 0.9.3-1~bpo70+1 +- amd64 | spacenavd | 0.5-1 | - +- amd64 | spacezero | 0.80.06-1 | - +- amd64 | spamass-milter | 0.3.2-1 | - +- amd64 | spamc | 3.3.2-5 | - +- amd64 | spamoracle | 1.4-14 | - +- amd64 | spamprobe | 1.4d-11 | - +- amd64 | spark | 2011.0.deb-5 | - +- amd64 | spass | 3.7-3 | - +- amd64 | spatialite-bin | 3.0.0~beta20110817-3+deb7u1 | - +- amd64 | spawn-fcgi | 1.6.3-1 | - +- amd64 | spd | 1.3.0-1 | - +- amd64 | specimen | 0.5.2rc3-5 | - +- amd64 | spectools | 201108r1-2 | - +- amd64 | spectrwm | 1.0.0-1 | - +- amd64 | speech-dispatcher | 0.7.1-6.2 | - +- amd64 | speech-dispatcher-dbg | 0.7.1-6.2 | - +- amd64 | speech-tools | 1:2.1~release-5 | - +- amd64 | speechd-up | 0.5~20110719-2 | - +- amd64 | speedcrunch | 0.10.1-4 | - +- amd64 | speedy-cgi-perl | 2.22-13+b2 | - +- amd64 | speex | 1.2~rc1-7 | - +- amd64 | spek | 0.7-3 | - +- amd64 | spell | 1.0-24 | - +- amd64 | spellutils | 0.7-5 | - +- amd64 | spew | 1.0.8-1 | - +- amd64 | spfquery | 1.2.9-7 | - +- amd64 | sphinxsearch | 2.0.4-1.1 | - +! amd64 | spice-client | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +- amd64 | spice-client-gtk | 0.12-5 | - +- amd64 | spice-vdagent | 0.10.1-1 | - +- amd64 | spidermonkey-bin | 17.0.10esr-1~deb7u1 | - +- amd64 | spim | 8.0+dfsg-5.1 | - +- amd64 | spinner | 1.2.4-3 | - +- amd64 | spl-core | 1.0~pre6-3.1+b1 | - +- amd64 | spl-curl | 1.0~pre6-3.1+b1 | - +- amd64 | spl-dev | 1.0~pre6-3.1+b1 | - +- amd64 | spl-mysql | 1.0~pre6-3.1+b1 | - +- amd64 | spl-postgres | 1.0~pre6-3.1+b1 | - +- amd64 | spl-sdl | 1.0~pre6-3.1+b1 | - +- amd64 | spl-sqlite | 1.0~pre6-3.1+b1 | - +- amd64 | spl-webspl | 1.0~pre6-3.1+b1 | - +- amd64 | spl-xml | 1.0~pre6-3.1+b1 | - +- amd64 | splat | 1.4.0-2 | - +- amd64 | splay | 0.9.5.2-13 | - +- amd64 | spline | 1.2-1 | - +- amd64 | splint | 3.1.2.dfsg1-2 | - +- amd64 | splitvt | 1.6.6-11 | - +- amd64 | spotlighter | 0.1-1 | - +- amd64 | spout | 1.3-2 | - +- amd64 | spring | 88.0+dfsg1-1.1 | - +- amd64 | spring-dbg | 88.0+dfsg1-1.1 | - +- amd64 | springlobby | 0.147-1 | - +- amd64 | springlobby-dbg | 0.147-1 | - +- amd64 | sqcwa | 0.3-3.1 | - ++ amd64 | sqlcipher | - | 2.2.1-2~bpo70+1 +- amd64 | sqlheavy-utils | 0.1.1-1 | - +- amd64 | sqlite | 2.8.17-7 | - +- amd64 | sqlite3 | 3.7.13-1+deb7u1 | - +- amd64 | sqlitebrowser | 2.0.0~beta1+ds.1-3 | - +- amd64 | sqsh | 2.1.7-1 | - +- amd64 | squashfs-tools | 1:4.2-5 | - +- amd64 | squashfs-tools-dbg | 1:4.2-5 | - +- amd64 | squeak-plugins-scratch | 1.4.0.2~svn.r83-1 | - +- amd64 | squeak-plugins-scratch-dbg | 1.4.0.2~svn.r83-1 | - +- amd64 | squeak-vm | 1:4.4.7.2357-1.1 | - +- amd64 | squeeze | 0.2.3-12 | - +- amd64 | squid | 2.7.STABLE9-4.1 | - +- amd64 | squid-cgi | 3.1.20-2.2 | - +- amd64 | squid3 | 3.1.20-2.2 | - +- amd64 | squid3-dbg | 3.1.20-2.2 | - +- amd64 | squidclient | 3.1.20-2.2 | - +- amd64 | squidguard | 1.5-1 | - +- amd64 | squidview | 0.79-2 | - +- amd64 | squizz | 0.99a-2 | - +- amd64 | sqwebmail | 0.68.2-1 | - +- amd64 | sra-toolkit | 2.1.7a-1 | - +- amd64 | sra-toolkit-libs-dev | 2.1.7a-1 | - +- amd64 | sra-toolkit-libs0 | 2.1.7a-1 | - +- amd64 | src2tex | 2.12h-8 | - +- amd64 | srecord | 1.58-1+b1 | - +- amd64 | sredird | 2.2.1-1.1 | - +- amd64 | srg | 1.3.6-1 | - +- amd64 | srptools | 0.0.4-1.2 | - +- amd64 | srtp-utils | 1.4.4+20100615~dfsg-2+deb7u1 | - +- amd64 | ss-dev | 2.0-1.42.5-1.1 | - +- amd64 | ssdeep | 2.7-2 | - +- amd64 | ssed | 3.62-7 | - ++ amd64 | ssh-agent-filter | - | 0.3-1~bpo70+1 +- amd64 | ssh-askpass | 1:1.2.4.1-9 | - +- amd64 | ssh-askpass-fullscreen | 0.3-3.1 | - +! amd64 | ssh-askpass-gnome | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +- amd64 | ssh-contact-client | 0.7-1 | - +- amd64 | ssh-contact-service | 0.7-1 | - +- amd64 | sshfs | 2.4-1 | - +- amd64 | sshfs-dbg | 2.4-1 | - +- amd64 | sshguard | 1.5-5 | - +- amd64 | sshpass | 1.05-1 | - +- amd64 | ssldump | 0.9b3-4.1 | - +- amd64 | sslh | 1.13b-3.2 | - +- amd64 | sslscan | 1.8.2-2 | - +- amd64 | sslsniff | 0.8-3+b1 | - +- amd64 | ssmping | 0.9.1-3 | - +- amd64 | ssmtp | 2.64-7 | - +- amd64 | sssd | 1.8.4-2 | - +- amd64 | sssd-tools | 1.8.4-2 | - +- amd64 | ssss | 0.5-2+b1 | - +- amd64 | ssvnc | 1.0.29-2 | - +- amd64 | staden-io-lib-utils | 1.12.4-1 | - +- amd64 | stalin | 0.11-5 | - +- amd64 | stalonetray | 0.8.1-1 | - +- amd64 | stardata-common | 0.8 | - +- amd64 | stardict-gnome | 3.0.1-9.2 | - +- amd64 | stardict-gtk | 3.0.1-9.2 | - +- amd64 | stardict-plugin | 3.0.1-9.2 | - +- amd64 | stardict-plugin-espeak | 3.0.1-9.2 | - +- amd64 | stardict-plugin-festival | 3.0.1-9.2 | - +- amd64 | stardict-plugin-spell | 3.0.1-9.2 | - +- amd64 | stardict-tools | 3.0.2-3+b1 | - +- amd64 | starfighter | 1.2-2 | - +- amd64 | starplot | 0.95.5-4 | - +- amd64 | starpu-examples | 1.0.1+dfsg-1 | - +- amd64 | starpu-tools | 1.0.1+dfsg-1 | - +- amd64 | starpu-top | 1.0.1+dfsg-1 | - +- amd64 | starvoyager | 0.4.4-5.1 | - +- amd64 | statgrab | 0.17-1 | - +- amd64 | statserial | 1.1-22 | - +- amd64 | stax | 1.0-13+b1 | - +- amd64 | steadyflow | 0.2.0-1 | - +- amd64 | stealth | 2.10.00-1 | - +- amd64 | steghide | 0.5.1-9+b2 | - +- amd64 | stella | 3.7.2-1 | - +- amd64 | stellarium | 0.11.3-1+deb7u1+b1 | - +- amd64 | step | 4:4.8.4-1 | - +- amd64 | stepbill.app | 2.4-5+b5 | - +- amd64 | steptalk | 0.10.0-5+b1 | - +- amd64 | stimfit | 0.10.18-1.1+b1 | - +- amd64 | stimfit-dbg | 0.10.18-1.1+b1 | - +- amd64 | stk | 4.4.3-2 | - +- amd64 | stockfish | 2.1.1+git20111006-2 | - +- amd64 | stone | 2.3.e-2+b1 | - +- amd64 | stopmotion | 0.6.2+git.1.10d2ea43-1.1 | - +- amd64 | stormbaancoureur | 2.1.6-1 | - +- amd64 | strace | 4.5.20-2.3 | - +- amd64 | streamer | 3.102-3 | - +- amd64 | streamripper | 1.64.6-1 | - +- amd64 | stress | 1.0.1-1 | - +- amd64 | stressapptest | 1.0.4-2 | - +- amd64 | stretchplayer | 0.503-2 | - +- amd64 | stretchplayer-dbg | 0.503-2 | - +- amd64 | strigi-client | 0.7.7-3 | - +- amd64 | strigi-daemon | 0.7.7-3 | - +- amd64 | strigi-dbg | 0.7.7-3 | - +- amd64 | strigi-utils | 0.7.7-3 | - +! amd64 | strongswan-dbg | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 ++ amd64 | strongswan-ike | - | 5.1.1-2~bpo70+1 +- amd64 | strongswan-ikev1 | 4.5.2-1.5+deb7u2 | - +- amd64 | strongswan-ikev2 | 4.5.2-1.5+deb7u2 | - +! amd64 | strongswan-nm | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | strongswan-starter | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +- amd64 | structure-synth | 1.5.0-1.1 | - +- amd64 | structure-synth-dbg | 1.5.0-1.1 | - +- amd64 | stterm | 0.0~20120124+hg226-2 | - +- amd64 | stud | 0.3-3 | - +- amd64 | stun | 0.96.dfsg-6 | - +- amd64 | stunnel4 | 3:4.53-1.1 | - +- amd64 | stx-btree-demo | 0.8.6-1 | - +- amd64 | stymulator | 0.21a~dfsg-1 | - +- amd64 | styx | 1.8.0-1.1 | - +- amd64 | styx-dev | 1.8.0-1.1 | - +- amd64 | subcommander | 2.0.0~b5p2-5 | - +- amd64 | subnetcalc | 2.1.3-1 | - +- amd64 | subsurface | 1.2-1 | - +- amd64 | subtitlecomposer | 0.5.3-3+b1 | - +- amd64 | subtitleeditor | 0.33.0-1 | - +- amd64 | subtle | 0.11.3224-xi-1 | - +- amd64 | subversion | 1.6.17dfsg-4+deb7u4 | - +- amd64 | suck | 4.3.2-11 | - +- amd64 | suckless-tools | 38-2 | - +- amd64 | sucrack | 1.2.3-0.9 | - +- amd64 | sudo | 1.8.5p2-1+nmu1 | - +- amd64 | sudo-ldap | 1.8.5p2-1+nmu1 | - +- amd64 | sudoku | 1.0.1-4 | - +- amd64 | sugar-artwork-0.84 | 0.84.4-3 | - +- amd64 | sugar-artwork-0.88 | 0.88.1-4 | - +- amd64 | sugar-artwork-0.96 | 0.96.2-1 | - +- amd64 | suil-dbg | 0.6.4~dfsg0-3 | - +- amd64 | summain | 0.14-1 | - +! amd64 | sumo | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +- amd64 | sunclock | 3.57-2 | - +- amd64 | sunpinyin-data | 0.1.22+20120112-1 | - +- amd64 | sunpinyin-utils | 2.0.3+git20120607-1 | - +- amd64 | sup | 20100519-1 | - +- amd64 | super | 3.30.0-6 | - +- amd64 | supercat | 0.5.5-4 | - +- amd64 | supercollider | 1:3.4.5-1wheezy1 | - +- amd64 | supercollider-dev | 1:3.4.5-1wheezy1 | - +- amd64 | supercollider-server | 1:3.4.5-1wheezy1 | - +- amd64 | superiotool | 0.0+r6637-1 | - +- amd64 | supertransball2 | 1.5-4 | - +- amd64 | supertux | 0.1.3-3 | - +! amd64 | supertuxkart | 0.7.3-2+b1 | 0.8.1-2~bpo70+1 ++ amd64 | supertuxkart-dbg | - | 0.8.1-2~bpo70+1 +- amd64 | suphp-common | 0.7.1-3 | - +- amd64 | surf | 0.4.1-8 | - +- amd64 | suricata | 1.2.1-2 | - +- amd64 | survex | 1.2.6-4 | - +- amd64 | survex-aven | 1.2.6-4 | - +- amd64 | svgalib-bin | 1:1.4.3-33 | - +- amd64 | svgpart | 4:4.8.4-1 | - +- amd64 | svgtoipe | 20100608-1 | - +- amd64 | svn-all-fast-export | 1.0.5-1 | - +- amd64 | swac-explore | 0.2-1.2 | - +- amd64 | swac-get | 0.3-2.1 | - +- amd64 | swami | 2.0.0+svn389-2 | - +- amd64 | swami-dbg | 2.0.0+svn389-2 | - +- amd64 | swapspace | 1.10-4 | - +- amd64 | swat | 2:3.6.6-6+deb7u2 | - +- amd64 | swath | 0.4.3-3 | - +- amd64 | sweep | 0.9.3-6 | - +- amd64 | sweeper | 4:4.8.4-1 | - +- amd64 | swell-foop | 1:3.4.2-3 | - +- amd64 | swfmill | 0.3.2-1 | - +- amd64 | swftools | 0.9.2+ds1-3 | - +- amd64 | swh-lv2 | 1.0.15+20111107.gitec6b85e-1 | - +- amd64 | swh-plugins | 0.4.15+1-6 | - +- amd64 | swi-prolog | 5.10.4-5 | - +- amd64 | swi-prolog-java | 5.10.4-5 | - +- amd64 | swi-prolog-nox | 5.10.4-5 | - +- amd64 | swi-prolog-odbc | 5.10.4-5 | - +- amd64 | swi-prolog-x | 5.10.4-5 | - +- amd64 | swift-im | 2.0~beta1+dev47-1 | - +- amd64 | swift-im-dbg | 2.0~beta1+dev47-1 | - +- amd64 | swig | 2.0.7-3 | - +- amd64 | swig2.0 | 2.0.7-3 | - +- amd64 | swish++ | 6.1.5-2.2 | - +- amd64 | swish-e | 2.4.7-3 | - +- amd64 | swish-e-dev | 2.4.7-3 | - +- amd64 | swisswatch | 0.6-14 | - +- amd64 | switchsh | 0~20070801-3 | - +- amd64 | sxid | 4.2-1 | - +- amd64 | sxiv | 1.0-1 | - +- amd64 | sylph-searcher | 1.2.0-7 | - +- amd64 | sylpheed | 3.2.0-1 | - +- amd64 | sylpheed-dbg | 3.2.0-1 | - +- amd64 | sylpheed-plugins | 3.2.0-1 | - +- amd64 | symlinks | 1.4-1 | - +- amd64 | sympa | 6.1.11~dfsg-5 | - +- amd64 | sympow | 1.019-4 | - +- amd64 | synaesthesia | 2.4-3 | - +- amd64 | synapse | 0.2.10-2 | - +- amd64 | synapse-dbg | 0.2.10-2 | - +- amd64 | synaptic | 0.75.13 | - +- amd64 | sync-ui | 1.2.99.1-1.1 | - +- amd64 | synce-gnomevfs | 0.13-2.1 | - +- amd64 | synce-hal | 0.15-1.1 | - +- amd64 | synce-hal-bluetooth | 0.15-1.1 | - +- amd64 | synce-serial | 0.11-5.3 | - +- amd64 | synce-trayicon | 0.15-1.2 | - +- amd64 | syncevolution | 1.2.99.1-1.1 | - +- amd64 | syncevolution-dbg | 1.2.99.1-1.1 | - +- amd64 | syncevolution-dbus | 1.2.99.1-1.1 | - +- amd64 | syncevolution-libs | 1.2.99.1-1.1 | - +- amd64 | syncmaildir | 1.2.5-1 | - +- amd64 | syncmaildir-applet | 1.2.5-1 | - +- amd64 | synergy | 1.3.8-2 | - +- amd64 | synfig | 0.63.05-1 | - +- amd64 | synfig-dbg | 0.63.05-1 | - +- amd64 | synfigstudio | 0.63.05-1 | - +- amd64 | synfigstudio-dbg | 0.63.05-1 | - +- amd64 | synopsis | 0.12-8 | - +- amd64 | synopsis-idl | 0.12-8 | - +- amd64 | syrep | 0.9-4.1 | - +- amd64 | syrthes | 3.4.3-dfsg1-6 | - +- amd64 | sysbench | 0.4.12-1+b1 | - +- amd64 | sysconftool | 0.16-1 | - +- amd64 | sysfsutils | 2.1.0+repack-2 | - +- amd64 | syslinux | 2:4.05+dfsg-6+deb7u1 | - +- amd64 | syslog-ng-core | 3.3.5-4 | - +- amd64 | syslog-ng-dbg | 3.3.5-4 | - +- amd64 | syslog-ng-mod-json | 3.3.5-4 | - +- amd64 | syslog-ng-mod-mongodb | 3.3.5-4 | - +- amd64 | syslog-ng-mod-sql | 3.3.5-4 | - +- amd64 | sysnews | 0.9-17 | - +- amd64 | sysprof | 1.1.8-2 | - +- amd64 | sysrqd | 14-1 | - +- amd64 | sysstat | 10.0.5-1 | - +- amd64 | system-config-audit | 1:1.7.18-1.1 | - +- amd64 | system-config-printer-udev | 1.3.7-4 | - +- amd64 | system-tools-backends | 2.10.2-1 | - +- amd64 | systemd | 44-11+deb7u4 | - +- amd64 | systemd-gui | 44-11+deb7u4 | - +- amd64 | systemd-sysv | 44-11+deb7u4 | - +- amd64 | systempreferences.app | 1.1.0-2+b3 | - +- amd64 | systemsettings | 4:4.8.4-6 | - +- amd64 | systemtap | 1.7-1+deb7u1 | - +- amd64 | systemtap-client | 1.7-1+deb7u1 | - +- amd64 | systemtap-grapher | 1.7-1+deb7u1 | - +- amd64 | systemtap-runtime | 1.7-1+deb7u1 | - +- amd64 | systemtap-sdt-dev | 1.7-1+deb7u1 | - +- amd64 | systemtap-server | 1.7-1+deb7u1 | - +- amd64 | sysvbanner | 1.0.15 | - +- amd64 | sysvinit | 2.88dsf-41+deb7u1 | - +- amd64 | sysvinit-utils | 2.88dsf-41+deb7u1 | - +- amd64 | t-coffee | 9.02.r1228-2 | - +- amd64 | t1lib-bin | 5.1.2-3.6 | - +- amd64 | t1utils | 1.37-1 | - +- amd64 | t38modem | 2.0.0-3 | - +- amd64 | tabble | 0.43-1 | - +- amd64 | tabix | 0.2.6-1 | - +- amd64 | tableau-parm | 0.2.0-1 | - +- amd64 | tablix2 | 0.3.5-2 | - +- amd64 | tacacs+ | 4.0.4.19-11 | - +- amd64 | tachyon | 0.99~b2+dfsg-0.4 | - +- amd64 | tack | 1.07-1 | - +- amd64 | tack-dbg | 1.07-1 | - +- amd64 | tagainijisho | 0.9.4-1 | - +- amd64 | tagcoll | 2.0.13-1.1 | - +- amd64 | taggrepper | 0.03.1-3 | - +- amd64 | tagtool | 0.12.3-8.1 | - +- amd64 | tagua | 1.0~alpha2-10 | - +- amd64 | talk | 0.17-15 | - +- amd64 | talkd | 0.17-15 | - +- amd64 | talksoup.app | 1.0alpha-32-g55b4d4e-1.2+b1 | - +- amd64 | tamil-gtk2im | 2.2-4.4 | - +- amd64 | tangerine | 0.3.4-3 | - +- amd64 | tangerine-dbg | 0.3.4-3 | - +- amd64 | tanglet | 1.1.1-1.1 | - +- amd64 | tango-accesscontrol | 7.2.6+dfsg-14 | - +- amd64 | tango-accesscontrol-dbg | 7.2.6+dfsg-14 | - +- amd64 | tango-db | 7.2.6+dfsg-14 | - +- amd64 | tango-db-dbg | 7.2.6+dfsg-14 | - +- amd64 | tango-starter | 7.2.6+dfsg-14 | - +- amd64 | tango-starter-dbg | 7.2.6+dfsg-14 | - +- amd64 | tango-test | 7.2.6+dfsg-14 | - +- amd64 | tango-test-dbg | 7.2.6+dfsg-14 | - +- amd64 | tap-plugins | 0.7.2-1 | - +- amd64 | tapecalc | 20070214-2 | - +- amd64 | tar | 1.26+dfsg-0.1 | - +- amd64 | tarantool | 1.4.6+20120629+2158-1 | - +- amd64 | tarantool-client | 1.4.6+20120629+2158-1 | - +- amd64 | tarantool-client-dbg | 1.4.6+20120629+2158-1 | - +- amd64 | tarantool-dbg | 1.4.6+20120629+2158-1 | - +- amd64 | tardy | 1.25-1 | - +- amd64 | tart | 3.09-1 | - +! amd64 | task | 2.0.0-1 | 2.2.0-3~bpo70+1 +- amd64 | task-spooler | 0.7.3-1 | - +- amd64 | tasks | 0.20-1+b2 | - +- amd64 | tatan | 1.0.dfsg1-3 | - +- amd64 | tau | 2.16.4-1.4+b1 | - +- amd64 | tayga | 0.9.2-4 | - +- amd64 | tcc | 0.9.26~git20120612.ad5f375-6 | - +- amd64 | tcd-utils | 20061127-2 | - +- amd64 | tcl-funtools | 1.4.4-3 | - +- amd64 | tcl-memchan | 2.3-2 | - +- amd64 | tcl-memchan-dev | 2.3-2 | - +- amd64 | tcl-signal | 1.4-1 | - +- amd64 | tcl-tclreadline | 2.1.0-12 | - +- amd64 | tcl-tls | 1.6+dfsg-3 | - +- amd64 | tcl-trf | 2.1.4-dfsg1-1 | - +- amd64 | tcl-trf-dev | 2.1.4-dfsg1-1 | - +- amd64 | tcl-vfs | 1.3-20080503-3 | - +- amd64 | tcl-vtk | 5.8.0-13+b1 | - +- amd64 | tcl-xpa | 2.1.14-2 | - +- amd64 | tcl8.4 | 8.4.19-5 | - +- amd64 | tcl8.4-dev | 8.4.19-5 | - +- amd64 | tcl8.5 | 8.5.11-2 | - +- amd64 | tcl8.5-dev | 8.5.11-2 | - +- amd64 | tcl8.5-kwwidgets | 1.0.0~cvs20100930-8 | - +- amd64 | tclcl | 1.20-6 | - +- amd64 | tclcl-dbg | 1.20-6 | - +- amd64 | tclcsound | 1:5.17.11~dfsg-3 | - +- amd64 | tclcurl | 7.22.0-1 | - +- amd64 | tclex | 1.2a1-15 | - +- amd64 | tclgeoip | 0.2-1 | - +- amd64 | tclodbc | 2.5.1-1.1 | - +- amd64 | tclthread | 1:2.6.7-1 | - +- amd64 | tclx8.4 | 8.4.0-3 | - +- amd64 | tclx8.4-dev | 8.4.0-3 | - +- amd64 | tclxapian | 1.2.12-2 | - +- amd64 | tclxml | 3.3~svn11-2 | - +- amd64 | tclxml-dev | 3.3~svn11-2 | - +- amd64 | tcm | 2.20+TSQD-4.2 | - +- amd64 | tcng | 10b-4 | - +- amd64 | tcpd | 7.6.q-24 | - +- amd64 | tcpdump | 4.3.0-1 | - +- amd64 | tcpflow | 0.21.ds1-7 | - +- amd64 | tcpick | 0.2.1-6 | - ++ amd64 | tcplay | - | 1.1-1~bpo70+1 +- amd64 | tcpreen | 1.4.4-2 | - +- amd64 | tcpreplay | 3.4.3-2+wheezy1 | - +- amd64 | tcpser | 1.0rc12-1 | - +- amd64 | tcpslice | 1.2a3-4 | - +- amd64 | tcpspy | 1.7d-4 | - +- amd64 | tcpstat | 1.5-7 | - +- amd64 | tcptrace | 6.6.7-4.1 | - +- amd64 | tcptraceroute | 1.5beta7+debian-4 | - +- amd64 | tcptrack | 1.4.2-1 | - +- amd64 | tcputils | 0.6.2-9 | - +- amd64 | tcpxtract | 1.0.1-8 | - +- amd64 | tcs | 1-11 | - +- amd64 | tcsh | 6.18.01-2 | - +! amd64 | tdb-tools | 1.2.10-2 | 1.2.12-1~bpo70+1 +- amd64 | tdc | 1.2-1 | - +- amd64 | tdfsb | 0.0.10-1.1 | - +- amd64 | tdl | 1.5.2-3.1 | - +- amd64 | tdom | 0.8.3~20080525-3+nmu2 | - +- amd64 | tdom-dev | 0.8.3~20080525-3+nmu2 | - +- amd64 | tdsodbc | 0.91-2+deb7u1 | - +- amd64 | tea | 33.1.0-1 | - +- amd64 | tecnoballz | 0.92-5 | - +- amd64 | teem-apps | 1.11.0~svn5226-1 | - +- amd64 | teeworlds | 0.6.1+dfsg-1 | - +- amd64 | teeworlds-server | 0.6.1+dfsg-1 | - +- amd64 | teg | 0.11.2+debian-3 | - +- amd64 | telak | 0.6-1 | - +- amd64 | telegnome | 0.1.1-5 | - +- amd64 | telepathy-gabble | 0.16.7-0+deb7u1 | - +- amd64 | telepathy-gabble-dbg | 0.16.7-0+deb7u1 | - +- amd64 | telepathy-haze | 0.6.0-1 | - +! amd64 | telepathy-idle | 0.1.11-2+deb7u1 | 0.1.16-1~bpo70+1 +- amd64 | telepathy-logger | 0.4.0-1 | - +- amd64 | telepathy-mission-control-5 | 1:5.12.3-1 | - +- amd64 | telepathy-mission-control-5-dbg | 1:5.12.3-1 | - +- amd64 | telepathy-rakia | 0.7.4-1 | - +- amd64 | telepathy-salut | 0.8.1-1 | - +- amd64 | teleport | 0.34-7 | - +- amd64 | tellico | 2.3.5+dfsg.1-4 | - +- amd64 | telnet | 0.17-36 | - +- amd64 | telnet-ssl | 0.17.24+0.1-23 | - +- amd64 | telnetd | 0.17-36 | - +- amd64 | telnetd-ssl | 0.17.24+0.1-23 | - +- amd64 | tempest-for-eliza | 1.0.5-1 | - +- amd64 | tenace | 0.12-1 | - +- amd64 | tenmado | 0.10-1 | - +- amd64 | tennix | 1.1-2 | - +- amd64 | terminal.app | 0.9.4+cvs20051125-6.1+b2 | - +- amd64 | terminatorx | 3.84-2 | - +- amd64 | termit | 2.9.4-2 | - +- amd64 | teseq | 1.0.0-2.1 | - +- amd64 | tessa | 0.3.1-6+b1 | - +- amd64 | tessa-mpi | 0.3.1-6+b1 | - +- amd64 | tesseract-ocr | 3.02.01-6 | - +- amd64 | testdisk | 6.13-1 | - +- amd64 | testdisk-dbg | 6.13-1 | - +- amd64 | tetradraw | 2.0.3-8.2 | - +- amd64 | tetraproc | 0.8.2-2 | - +- amd64 | tetrinet-client | 0.11+CVS20070911-1 | - +- amd64 | tetrinet-server | 0.11+CVS20070911-1 | - +- amd64 | tetrinetx | 1.13.16-14 | - +- amd64 | tetzle | 2.0.1-1 | - +- amd64 | tex4ht | 20090611-1.1+b1 | - +- amd64 | texinfo | 4.13a.dfsg.1-10 | - +- amd64 | texlive-binaries | 2012.20120628-4 | - +- amd64 | texmacs | 1:1.0.7.15-2 | - +- amd64 | texmaker | 3.3.4-1 | - +- amd64 | texstudio | 2.3+debian-3 | - +- amd64 | texstudio-dbg | 2.3+debian-3 | - +- amd64 | textdraw | 0.2-2 | - +- amd64 | textedit.app | 4.0+20061029-3.4 | - +- amd64 | texworks | 0.5~svn1007-1 | - +- amd64 | texworks-scripting-lua | 0.5~svn1007-1 | - +- amd64 | texworks-scripting-python | 0.5~svn1007-1 | - +- amd64 | tf | 1:4.0s1-17 | - +- amd64 | tf5 | 5.0beta8-4+b1 | - +- amd64 | tfdocgen | 1.0-1 | - +- amd64 | tftp | 0.17-18 | - +- amd64 | tftp-hpa | 5.2-4 | - +- amd64 | tftpd | 0.17-18 | - +- amd64 | tftpd-hpa | 5.2-4 | - +- amd64 | tgif | 1:4.2.5-1.2 | - +- amd64 | tgn | 0.20-3 | - +- amd64 | tgt | 1:1.0.17-1 | - +- amd64 | the | 3.3~rc1-2 | - +- amd64 | thepeg | 1.8.0-1 | - +- amd64 | therion | 5.3.9-4 | - +- amd64 | therion-viewer | 5.3.9-4 | - +- amd64 | theseus | 1.6.2-2 | - +- amd64 | thewidgetfactory | 0.2.1-2 | - +- amd64 | thin | 1.3.1-3 | - +- amd64 | thinkfan | 0.8.1-1 | - +- amd64 | threadscope | 0.2.1-1 | - +- amd64 | thrust | 0.89c-3.5 | - +- amd64 | thuban | 1.2.2-3+b1 | - +- amd64 | thunar | 1.2.3-4+b1 | - +- amd64 | thunar-archive-plugin | 0.3.0-4 | - +- amd64 | thunar-dbg | 1.2.3-4+b1 | - +- amd64 | thunar-gtkhash | 0.6.0-4 | - +- amd64 | thunar-media-tags-plugin | 0.2.0-1 | - +- amd64 | thunar-vcs-plugin | 0.1.4-1 | - +- amd64 | thunar-volman | 0.6.1-1 | - +- amd64 | ticker | 1.9 | - +- amd64 | tickr | 0.6.1-1 | - +- amd64 | tidy | 20091223cvs-1.2 | - +- amd64 | tiemu | 3.02-1.2 | - +- amd64 | tiemu-skinedit | 1.27-2 | - +- amd64 | tifffile | 20120421-1 | - +- amd64 | tig | 1.0-2 | - +- amd64 | tiger | 1:3.2.3-10 | - +- amd64 | tiger-otheros | 1:3.2.3-10 | - +- amd64 | tightvncserver | 1.3.9-6.4 | - +- amd64 | tigr-glimmer | 3.02-2 | - +- amd64 | tilda | 0.09.6-2 | - +- amd64 | tiled | 0.8.1-1 | - +- amd64 | tilp2 | 1.12-1 | - +- amd64 | timbl | 6.4.2-1 | - +- amd64 | timblserver | 1.4-2 | - +- amd64 | time | 1.7-24 | - +- amd64 | timelimit | 1.8-1 | - +- amd64 | timemachine | 0.3.3-1 | - +- amd64 | timemon.app | 4.1-2+b3 | - +- amd64 | timidity | 2.13.2-40.1 | - +- amd64 | timidity-interfaces-extra | 2.13.2-40.1 | - +- amd64 | timps | 0.25-4 | - +- amd64 | tin | 1:2.1.1-1 | - +- amd64 | tina | 0.1.11-3 | - +! amd64 | tinc | 1.0.19-3 | 1.0.23-1~bpo70+1 +- amd64 | tint | 0.04+nmu1 | - +- amd64 | tint2 | 0.11+svn20111022-3 | - +- amd64 | tint2-dbg | 0.11+svn20111022-3 | - +- amd64 | tintii | 2.6.1-1 | - +- amd64 | tintin++ | 2.00.8-1 | - +- amd64 | tinycdb | 0.78 | - +- amd64 | tinydyndns | 0.4.2.debian1-1 | - +- amd64 | tinyeartrainer | 0.1.0-2 | - +- amd64 | tinyhoneypot | 0.4.6-9 | - +- amd64 | tinyirc | 1:1.1.dfsg.1-2 | - +- amd64 | tinymux | 2.6.5.28-1 | - +- amd64 | tinyproxy | 1.8.3-3 | - +- amd64 | tinyscheme | 1.37-3.1 | - +- amd64 | tinywm | 1.3-9 | - +- amd64 | tiobench | 0.3.3-5 | - +- amd64 | titanion | 0.3.dfsg1-4 | - +- amd64 | tix | 8.4.3-4 | - +- amd64 | tix-dev | 8.4.3-4 | - +- amd64 | tk-html3 | 3.0~fossil20110109-2 | - +- amd64 | tk-table | 2.10-1 | - +- amd64 | tk-tktray | 1.3.9-2 | - +- amd64 | tk707 | 0.7.21-9.1 | - +- amd64 | tk8.4 | 8.4.19-5 | - +- amd64 | tk8.4-dev | 8.4.19-5 | - +- amd64 | tk8.5 | 8.5.11-2 | - +- amd64 | tk8.5-dev | 8.5.11-2 | - +- amd64 | tkdesk | 2.0-9.1 | - +- amd64 | tkgate | 1.8.7-4 | - +- amd64 | tkpng | 0.9-1 | - +- amd64 | tkremind | 03.01.12-1 | - +- amd64 | tktreectrl | 2.2.8-1 | - +- amd64 | tla | 1.3.5+dfsg-18 | - +- amd64 | tm-align | 20120507-1 | - +- amd64 | tmake | 1.8-1.1 | - +- amd64 | tmispell-voikko | 0.7.1-3 | - +- amd64 | tmpreaper | 1.6.13+nmu1 | - +! amd64 | tmux | 1.6-2 | 1.8-5~bpo70+1 +- amd64 | tnat64 | 0.05-1 | - +- amd64 | tnef | 1.4.9-1 | - +- amd64 | tnftp | 20100108-3 | - +- amd64 | tntdb-mysql3 | 1.2-2+b1 | - +- amd64 | tntdb-postgresql3 | 1.2-2+b1 | - +- amd64 | tntdb-sqlite3 | 1.2-2+b1 | - +- amd64 | tntnet | 2.1-2+deb7u1 | - +- amd64 | tntnet-demos | 2.1-2+deb7u1 | - +- amd64 | tntnet-runtime | 2.1-2+deb7u1 | - +- amd64 | tofrodos | 1.7.9.debian.1-1 | - +- amd64 | toga2 | 1.4.1.1SE1-4 | - +- amd64 | toilet | 0.3-1 | - +- amd64 | tokyocabinet-bin | 1.4.47-2 | - +- amd64 | tokyotyrant | 1.1.40-4.1+b1 | - +- amd64 | tokyotyrant-dbg | 1.1.40-4.1+b1 | - +- amd64 | tokyotyrant-utils | 1.1.40-4.1+b1 | - +- amd64 | tomatoes | 1.55-5 | - +- amd64 | tomboy | 1.10.0-2 | - +- amd64 | tomoyo-tools | 2.5.0-20120414-2 | - +- amd64 | toonloop | 2.2.0-1+b1 | - +- amd64 | topal | 75-1 | - +- amd64 | toppler | 1.1.5-2 | - +- amd64 | tor | 0.2.3.25-1 | - +- amd64 | tor-dbg | 0.2.3.25-1 | - +- amd64 | tora | 2.1.3-2 | - +- amd64 | tora-dbg | 2.1.3-2 | - +- amd64 | torcs | 1.3.3+dfsg-0.1 | - +- amd64 | torque-client | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torque-client-x11 | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torque-common | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torque-mom | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torque-pam | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torque-scheduler | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torque-server | 2.4.16+dfsg-1+deb7u2 | - +- amd64 | torsocks | 1.2-3 | - +- amd64 | torus-trooper | 0.22.dfsg1-8 | - +- amd64 | torus-trooper-pure | 0.22.dfsg1-8 | - +- amd64 | toshset | 1.76-4 | - +- amd64 | totem | 3.0.1-8 | - +- amd64 | totem-dbg | 3.0.1-8 | - +- amd64 | totem-mozilla | 3.0.1-8 | - +- amd64 | totem-plugin-arte | 3.1.2-1 | - +- amd64 | totem-plugins | 3.0.1-8 | - +- amd64 | tpb | 0.6.4-8 | - +- amd64 | tpconfig | 3.1.3-15 | - +- amd64 | tpm-tools | 1.3.7-1 | - +- amd64 | tpm-tools-dbg | 1.3.7-1 | - +- amd64 | tqsllib-dev | 2.2-5 | - +- amd64 | traceroute | 1:2.0.18-3 | - +- amd64 | trackballs | 1.1.4-4.1 | - +- amd64 | trackballs-dbg | 1.1.4-4.1 | - +- amd64 | tracker | 0.14.1-3 | - +- amd64 | tracker-dbg | 0.14.1-3 | - +- amd64 | tracker-explorer | 0.14.1-3 | - +- amd64 | tracker-extract | 0.14.1-3 | - +- amd64 | tracker-gui | 0.14.1-3 | - +- amd64 | tracker-miner-fs | 0.14.1-3 | - +- amd64 | tracker-utils | 0.14.1-3 | - +- amd64 | trafficserver | 3.0.5-1 | - +- amd64 | trafficserver-dev | 3.0.5-1 | - +- amd64 | trafficserver-plugin-conf-remap | 3.0.5-1 | - +- amd64 | tralics | 2.14.4-2 | - +- amd64 | transcalc | 0.14-5 | - +- amd64 | transcend | 0.3.dfsg2-2 | - +- amd64 | transcode | 3:1.1.7-3 | - +- amd64 | transcode-dbg | 3:1.1.7-3 | - +- amd64 | transfermii | 1:0.6.1-2.1 | - +- amd64 | transfermii-gui | 1:0.6.1-2.1 | - +- amd64 | transfig | 1:3.2.5.d-3 | - +- amd64 | transgui | 4.0.3-2 | - +- amd64 | transmission-cli | 2.52-3+nmu1 | - +- amd64 | transmission-daemon | 2.52-3+nmu1 | - +- amd64 | transmission-dbg | 2.52-3+nmu1 | - +- amd64 | transmission-gtk | 2.52-3+nmu1 | - +- amd64 | transmission-qt | 2.52-3+nmu1 | - +- amd64 | transtermhp | 2.09-1 | - +- amd64 | traverso | 0.49.2-5 | - +- amd64 | trayer | 1.1.4-2 | - +- amd64 | tre-agrep | 0.8.0-3 | - +- amd64 | tree | 1.6.0-1 | - +- amd64 | tree-ppuzzle | 5.2-7 | - +- amd64 | tree-puzzle | 5.2-7 | - +- amd64 | treeviewx | 0.5.1+20100823-1 | - +- amd64 | treil | 1.8-1.1 | - +- amd64 | trend | 1.2-1 | - +- amd64 | trickle | 1.07-9+b1 | - +- amd64 | trigger-rally | 0.6.0-1+b2 | - +- amd64 | triggerhappy | 0.3.4-2 | - +- amd64 | triplane | 1.0.7-1 | - +- amd64 | tripwire | 2.4.2.2-2 | - +- amd64 | troffcvt | 1.04-21 | - +- amd64 | trophy | 2.0.2-2 | - +- amd64 | trophy-dbg | 2.0.2-2 | - +- amd64 | trousers | 0.3.9-3+wheezy1 | - +- amd64 | trousers-dbg | 0.3.9-3+wheezy1 | - +- amd64 | trovacap | 0.2.2-1 | - +- amd64 | trueprint | 5.3-4 | - +- amd64 | trustedqsl | 1.13-3 | - +- amd64 | tsdecrypt | 8.1-1 | - +- amd64 | tse3play | 0.3.1-4.3 | - +! amd64 | tshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- amd64 | tsocks | 1.8beta5-9.2 | - +- amd64 | tstools | 1.11-1 | - +- amd64 | tsung | 1.4.2-1.1 | - +- amd64 | ttf2ufm | 3.4.4~r2-1 | - +- amd64 | ttfautohint | 0.9-1 | - +- amd64 | tth | 4.03+ds-2 | - +- amd64 | tth-common | 4.03+ds-2 | - +- amd64 | tthsum | 1.1.0-1 | - +- amd64 | ttm | 4.03+ds-2 | - +- amd64 | ttt | 1.7-3.3 | - +- amd64 | tttprobe | 1.7-3.3 | - +- amd64 | tttview | 1.7-3.3 | - +- amd64 | ttv | 3.102-3 | - +- amd64 | tty-clock | 1.1-1 | - +- amd64 | ttyload | 0.5-7 | - +- amd64 | ttylog | 0.1.d-2 | - +- amd64 | ttylog-dbg | 0.1.d-2 | - +- amd64 | ttyrec | 1.0.8-5 | - +- amd64 | ttysnoop | 0.12d-5 | - +- amd64 | tua | 4.3-11 | - +- amd64 | tucnak2 | 2.47-2+deb7u1 | - +- amd64 | tudu | 0.8.1-1 | - +- amd64 | tulip | 3.7.0dfsg-4 | - +- amd64 | tumbler | 0.1.25-1+b1 | - +- amd64 | tumbler-plugins-extra | 0.1.25-1+b1 | - +- amd64 | tumiki-fighters | 0.2.dfsg1-5 | - +- amd64 | tupi | 0.1+git12-6 | - +- amd64 | tupi-dbg | 0.1+git12-6 | - +- amd64 | tuxcmd | 0.6.70+dfsg-1 | - +- amd64 | tuxcmd-modules | 0.6.70+ds-4 | - +- amd64 | tuxfootball | 0.3.1-2 | - +- amd64 | tuxguitar-alsa | 1.2-13+deb7u1 | - +- amd64 | tuxguitar-fluidsynth | 1.2-13+deb7u1 | - +- amd64 | tuxguitar-jack | 1.2-13+deb7u1 | - +- amd64 | tuxguitar-oss | 1.2-13+deb7u1 | - +- amd64 | tuxmath | 1.8.0-4 | - +- amd64 | tuxonice-userui | 1.1-1 | - +- amd64 | tuxpaint | 1:0.9.21-1.1 | - +- amd64 | tuxpaint-config | 0.0.12-3 | - +- amd64 | tuxpaint-plugins-default | 1:0.9.21-1.1 | - +- amd64 | tuxpuck | 0.8.2-2.2 | - +- amd64 | tuxtype | 1.8.1-5 | - +- amd64 | tvflash | 0.9.0-1 | - +- amd64 | tvtime | 1.0.2-10 | - +- amd64 | twclock | 3.1-1 | - +- amd64 | tweak | 3.01-8 | - +- amd64 | twm | 1:1.0.6-1 | - +- amd64 | twoftpd | 1.41-1 | - +- amd64 | twolame | 0.3.13-1 | - +- amd64 | tworld | 1.3.0-6 | - +- amd64 | twpsk | 4.0-1 | - +- amd64 | txt2pdbdoc | 1.4.4-6 | - +- amd64 | txtreader | 0.6.5-1 | - +- amd64 | typespeed | 0.6.5-1.1 | - +- amd64 | tzc | 2.6.15-5.2 | - +- amd64 | u-boot | 2012.04.01-2 | - +- amd64 | u-boot-tools | 2012.04.01-2 | - ++ amd64 | u1db-tools | - | 0.1.4-2~bpo70+1 +- amd64 | u3-tool | 0.3-1.1 | - +- amd64 | uanytun | 0.3.3-1 | - +- amd64 | uapevent | 1.4-2 | - +- amd64 | uaputl | 1.12-2 | - +- amd64 | ucarp | 1.5.2-1+nmu1 | - +- amd64 | ucblogo | 5.5-2.1 | - +- amd64 | uchardet | 0.0.1-1 | - +- amd64 | ucimf | 2.3.8-4 | - +- amd64 | ucimf-chewing | 0.3-1+build1 | - +- amd64 | ucimf-openvanilla | 2.10.11-2 | - +- amd64 | ucimf-sunpinyin | 0.4-2 | - +- amd64 | ucommon-utils | 5.2.2-4 | - +- amd64 | ucspi-proxy | 0.98-1 | - +- amd64 | ucspi-tcp | 1:0.88-3 | - +- amd64 | ucspi-tcp-ipv6 | 1:0.88-3 | - +- amd64 | ucspi-unix | 0.36-4 | - +- amd64 | ucto | 0.5.2-2 | - +- amd64 | udav | 0.7.1.2-3+b1 | - +- amd64 | udev | 175-7.2 | - ++ amd64 | udevil | - | 0.4.3-1~bpo70+1 +- amd64 | udftools | 1.0.0b3-14.2 | - +- amd64 | udhcpc | 1:1.20.0-7 | - +- amd64 | udhcpd | 1:1.20.0-7 | - +- amd64 | udisks | 1.0.4-7 | - +- amd64 | udisks-glue | 1.3.4-1 | - +- amd64 | udo | 6.4.1-1 | - +- amd64 | udpcast | 20100130-3 | - +- amd64 | udptunnel | 1.1-4 | - +- amd64 | udunits-bin | 2.1.23-3 | - +- amd64 | ufiformat | 0.9.8-1 | - +- amd64 | ufraw | 0.18-2 | - +- amd64 | ufraw-batch | 0.18-2 | - +- amd64 | ufsutils | 8.2-3 | - +- amd64 | uget | 1.8.2-1 | - +! amd64 | uhd-host | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | uhub | 0.3.2-1 | 0.4.1-3~bpo70+1 +- amd64 | uif2iso | 0.1.7a-1 | - +- amd64 | uim-anthy | 1:1.8.1-4 | - +- amd64 | uim-applet-gnome | 1:1.8.1-4 | - +- amd64 | uim-chewing | 0.1.0-3 | - +- amd64 | uim-dbg | 1:1.8.1-4 | - +- amd64 | uim-dict-gtk | 1:1.8.1-4 | - +- amd64 | uim-dict-gtk3 | 1:1.8.1-4 | - +- amd64 | uim-el | 1:1.8.1-4 | - +- amd64 | uim-fep | 1:1.8.1-4 | - +- amd64 | uim-gtk2.0 | 1:1.8.1-4 | - +- amd64 | uim-gtk3 | 1:1.8.1-4 | - +- amd64 | uim-m17nlib | 1:1.8.1-4 | - +- amd64 | uim-mozc | 1.5.1090.102-4+deb7u1 | - +- amd64 | uim-qt | 1:1.8.1-4 | - +- amd64 | uim-skk | 1:1.8.1-4 | - +- amd64 | uim-utils | 1:1.8.1-4 | - +- amd64 | uim-xim | 1:1.8.1-4 | - +- amd64 | uisp | 20050207-4.2 | - +- amd64 | ukopp | 4.4-1 | - +- amd64 | ulatency | 0.5.0-7 | - +- amd64 | ulatencyd | 0.5.0-7 | - +- amd64 | ulogd | 1.24-3.3 | - +- amd64 | ulogd-mysql | 1.24-3.3 | - +- amd64 | ulogd-pcap | 1.24-3.3 | - +- amd64 | ulogd-pgsql | 1.24-3.3 | - +- amd64 | ulogd-sqlite3 | 1.24-3.3 | - +- amd64 | umbrello | 4:4.8.4+dfsg-1 | - +- amd64 | uml-utilities | 20070815-1.3 | - +- amd64 | umview | 0.8.2-1 | - +- amd64 | umview-mod-umdevtap | 0.8.2-1 | - +- amd64 | umview-mod-umfuseext2 | 0.4-1 | - +- amd64 | umview-mod-umfusefat | 0.1a-1 | - +- amd64 | umview-mod-umfuseiso9660 | 0.3-1 | - +- amd64 | umview-mod-umlwip | 0.8.2-1 | - +- amd64 | umview-mod-viewfs | 0.8.2-1 | - +- amd64 | unaccent | 1.8.0-6 | - +- amd64 | unace | 1.2b-10 | - +- amd64 | unadf | 0.7.11a-3 | - +- amd64 | unagi | 0.3.3-2 | - +- amd64 | unagi-dbg | 0.3.3-2 | - +- amd64 | unagi-dev | 0.3.3-2 | - +- amd64 | unalz | 0.65-3 | - +- amd64 | unar | 1.1-2 | - +! amd64 | unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | unbound-anchor | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | unbound-host | 1.4.17-3 | 1.4.21-1~bpo70+1 +- amd64 | unclutter | 8-18 | - +- amd64 | uncrustify | 0.59-2 | - +- amd64 | undbx | 0.20-1 | - +- amd64 | undertaker | 1.3b-1 | - +- amd64 | unetbootin | 575-1 | - +- amd64 | unhide | 20110113-4 | - +- amd64 | unhtml | 2.3.9-3 | - +- amd64 | uni2ascii | 4.18-2 | - +- amd64 | unicode-screensaver | 0.4-1 | - +- amd64 | unicon-imc2 | 3.0.4-13 | - +- amd64 | uniconf-tools | 4.6.1-5 | - +- amd64 | uniconfd | 4.6.1-5 | - +- amd64 | unicorn | 4.3.1-4 | - +- amd64 | unifdef | 2.6-1 | - +- amd64 | unifont-bin | 1:5.1.20080914-1.3 | - +- amd64 | unionfs-fuse | 0.24-2.2 | - +- amd64 | unison | 2.40.65-2 | - +- amd64 | unison-gtk | 2.40.65-2 | - +- amd64 | unison2.27.57 | 2.27.57-7 | - +- amd64 | unison2.27.57-gtk | 2.27.57-7 | - +- amd64 | unison2.32.52 | 2.32.52-6 | - +- amd64 | unison2.32.52-gtk | 2.32.52-6 | - +- amd64 | units | 1.88-1 | - +- amd64 | units-filter | 3.5-2 | - +- amd64 | uniutils | 2.27-1 | - +- amd64 | universalindentgui | 1.2.0-1 | - +- amd64 | unixodbc | 2.2.14p2-5 | - +- amd64 | unixodbc-bin | 2.3.0-3 | - +- amd64 | unixodbc-dev | 2.2.14p2-5 | - +- amd64 | unmass | 0.9-3 | - +- amd64 | unmo3 | 0.6-1 | - +! amd64 | uno-libs3 | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | uno-libs3-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +- amd64 | unpaper | 0.4.2-1 | - +- amd64 | unrar-free | 1:0.0.1+cvs20071127-2 | - +- amd64 | unrtf | 0.19.3-1.1+b1 | - +- amd64 | unscd | 0.48-2 | - +- amd64 | unshield | 0.6-3 | - +- amd64 | unsort | 1.1.2-1 | - +- amd64 | untex | 1:1.2-4 | - +- amd64 | unworkable | 0.53-3 | - +- amd64 | unzip | 6.0-8 | - +- amd64 | update-notifier | 0.99.3debian11 | - +- amd64 | update-notifier-kde | 1.2.4 | - +- amd64 | uphpmvault | 0.8 | - +- amd64 | upnp-router-control | 0.2-1+b1 | - +- amd64 | upower | 0.9.17-1 | - +- amd64 | upse123 | 1.0.0-1 | - +- amd64 | upslug2 | 11-3 | - +- amd64 | upstart | 1.6.1-1 | - +- amd64 | uptimed | 1:0.3.17-3.1 | - +- amd64 | upx-ucl | 3.08-2 | - +- amd64 | uqwk | 2.21-15 | - +- amd64 | uqwk-spool | 2.21-15 | - +! amd64 | ure | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | ure-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +- amd64 | urfkill | 0.3.0-1 | - +- amd64 | urg-utils | 0.8.12-4 | - +- amd64 | urjtag | 0.10+r2007-1 | - +- amd64 | urlview | 0.9-19 | - +- amd64 | usb-modeswitch | 1.2.3+repack0-1 | - +! amd64 | usbip | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +- amd64 | usbmuxd | 1.0.7-2 | - +- amd64 | usbprog | 0.2.0-2 | - +- amd64 | usbprog-gui | 0.2.0-2 | - +! amd64 | usbredirserver | 0.4.3-2 | 0.6-2~bpo70+1 +- amd64 | usbutils | 1:005-3 | - +- amd64 | usbview | 1.1-1 | - +- amd64 | usepackage | 1.8-1 | - +- amd64 | user-mode-linux | 3.2-2um-1+deb7u2+b2 | - +- amd64 | userinfo | 2.2-3 | - +- amd64 | usermode | 1.109-1 | - +- amd64 | userv | 1.1.1 | - +- amd64 | ussp-push | 0.11-1 | - +- amd64 | ust-bin | 2.0.4-1 | - +- amd64 | uswsusp | 1.0+20110509-3 | - +- amd64 | utalk | 1.0.1.beta-7 | - +- amd64 | util-linux | 2.20.1-5.3 | - +- amd64 | uuagc | 0.9.40.3-2 | - +- amd64 | uucp | 1.07-20 | - +- amd64 | uucpsend | 1.1-4 | - +- amd64 | uudeview | 0.5.20-3.3 | - +- amd64 | uuid | 1.6.2-1.3 | - +- amd64 | uuid-dev | 2.20.1-5.3 | - +- amd64 | uuid-runtime | 2.20.1-5.3 | - +- amd64 | uuidcdef | 0.3.13-3 | - +- amd64 | uvccapture | 0.5-2 | - +- amd64 | uvcdynctrl | 0.2.2-1 | - +- amd64 | uvcdynctrl-dbg | 0.2.2-1 | - +- amd64 | uw-mailutils | 8:2007f~dfsg-2 | - +- amd64 | uwsgi | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-app-integration-plugins | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-core | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-dbg | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-infrastructure-plugins | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-admin | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-cache | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-carbon | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-cgi | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-echo | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-erlang | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-fastrouter | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-fiber | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-graylog2 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-greenlet-python | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-http | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-jvm-openjdk-6 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-jwsgi-openjdk-6 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-logsocket | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-lua5.1 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-nagios | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-ping | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-probeconnect | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-probepg | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-psgi | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-pyerl-python | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-pyerl-python3 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-python | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-python3 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-rack-ruby1.8 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-rack-ruby1.9.1 | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-rpc | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-rrdtool | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-rsyslog | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-signal | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-symcall | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-syslog | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugin-ugreen | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uwsgi-plugins-all | 1.2.3+dfsg-5+deb7u1 | - +- amd64 | uzbl | 0.0.0~git.20120514-1.1 | - +- amd64 | v-sim | 3.6.0-2+b2 | - +- amd64 | v-sim-plugins | 3.6.0-2+b2 | - +- amd64 | v4l-conf | 3.102-3 | - +- amd64 | v4l-utils | 0.8.8-3 | - +- amd64 | v4l2ucp | 2.0.2-4 | - +- amd64 | v86d | 0.1.10-1 | - +- amd64 | vacation | 3.3.0-0.4 | - +- amd64 | vagalume | 0.8.5-4 | - +- amd64 | vainfo | 1.0.15-4 | - +- amd64 | val-and-rick | 0.1a.dfsg1-3 | - +- amd64 | vala-dbus-binding-tool | 0.3.3~git20110523-2 | - +- amd64 | vala-gen-project | 0.12.1-3 | - +- amd64 | vala-gen-project-dbg | 0.12.1-3 | - +- amd64 | vala-terminal | 1.3-3 | - +- amd64 | valabind | 0.6.4-1 | - +- amd64 | valac-0.14 | 0.14.2-2 | - +- amd64 | valac-0.14-dbg | 0.14.2-2 | - +- amd64 | valac-0.16 | 0.16.1-2 | - +- amd64 | valac-0.16-dbg | 0.16.1-2 | - +- amd64 | valadoc | 0.3.2~git20120227-1 | - +- amd64 | valgrind | 1:3.7.0-6 | - +- amd64 | valgrind-dbg | 1:3.7.0-6 | - +- amd64 | valgrind-mpi | 1:3.7.0-6 | - +- amd64 | valknut | 0.4.9-2 | - +- amd64 | valkyrie | 2.0.0-1 | - +- amd64 | vamp-examples | 2.1-1 | - +- amd64 | vamp-plugin-sdk | 2.1-1 | - +- amd64 | vamps | 0.99.2-4 | - +- amd64 | varmon | 1.2.1-1 | - +- amd64 | varnish | 3.0.2-2+deb7u1 | - +- amd64 | varnish-dbg | 3.0.2-2+deb7u1 | - +- amd64 | vavoom | 1.33-4 | - +- amd64 | vbetool | 1.1-2 | - +- amd64 | vbindiff | 3.0-beta3-1 | - +- amd64 | vblade | 20-1 | - +- amd64 | vbrfix | 0.24-7 | - +- amd64 | vbuf | 0.5.1-5.1 | - +- amd64 | vcdimager | 0.7.24+dfsg-0.1 | - +- amd64 | vcftools | 0.1.9-1 | - +- amd64 | vco-plugins | 0.3.0-2 | - +- amd64 | vde2 | 2.3.2-4 | - +- amd64 | vde2-cryptcab | 2.3.2-4 | - +- amd64 | vdesk | 1.2-3.1 | - +- amd64 | vdetelweb | 1.2.1-1 | - +- amd64 | vdkbuilder2 | 2.4.0-4.3 | - +- amd64 | vdmfec | 1.0-2 | - +- amd64 | vdpau-va-driver | 0.7.3-2 | - +- amd64 | vdpauinfo | 0.0.6-1 | - +- amd64 | vdr | 1.7.28-1 | - +- amd64 | vdr-dbg | 1.7.28-1 | - +- amd64 | vdr-plugin-dvbhddevice | 1.7.28-1 | - +- amd64 | vdr-plugin-dvbsddevice | 1.7.28-1 | - +- amd64 | vdr-plugin-dvd | 0.3.6~b03+cvs20090426.0013-14 | - +- amd64 | vdr-plugin-epgsearch | 1.0.0+git20120325-4 | - +- amd64 | vdr-plugin-epgsync | 0.0.4-12 | - +- amd64 | vdr-plugin-examples | 1.7.28-1 | - +- amd64 | vdr-plugin-femon | 1.7.17-3 | - +- amd64 | vdr-plugin-fritzbox | 1.4.3-2 | - +- amd64 | vdr-plugin-games | 0.6.3-39 | - +- amd64 | vdr-plugin-infosatepg | 0.0.11-10 | - +- amd64 | vdr-plugin-live | 0.2.0+git20120428-3 | - +- amd64 | vdr-plugin-mp3 | 0.10.2-14 | - +- amd64 | vdr-plugin-mplayer | 0.10.2-14 | - +- amd64 | vdr-plugin-osdserver | 0.1.3-7 | - +- amd64 | vdr-plugin-osdteletext | 0.9.3-2 | - +- amd64 | vdr-plugin-prefermenu | 0.6.6-37 | - +- amd64 | vdr-plugin-remote | 0.4.0-31 | - +- amd64 | vdr-plugin-remoteosd | 0.1.1-5 | - +- amd64 | vdr-plugin-skinenigmang | 0.1.2+git20120628-1 | - +- amd64 | vdr-plugin-spider | 0.2.2-14 | - +- amd64 | vdr-plugin-streamdev-client | 0.6.0-2 | - +- amd64 | vdr-plugin-streamdev-server | 0.6.0-2 | - +- amd64 | vdr-plugin-sudoku | 0.3.5-12 | - +- amd64 | vdr-plugin-svdrposd | 0.1.1-8 | - +- amd64 | vdr-plugin-svdrpservice | 0.0.4-14 | - +- amd64 | vdr-plugin-vcd | 0.9-22 | - +- amd64 | vdr-plugin-weather | 0.2.1e-63 | - +- amd64 | vdr-plugin-xine | 0.9.4-7 | - +- amd64 | vdr-plugin-xineliboutput | 1.0.7+cvs20120609.1902-1 | - +- amd64 | vectoroids | 1.1.0-11 | - +- amd64 | velvet | 1.2.03~nozlibcopy-1 | - +- amd64 | verbiste | 0.1.34-1 | - +- amd64 | verbiste-gnome | 0.1.34-1 | - +- amd64 | verilator | 3.833-1 | - +- amd64 | verse | 0.22.6 | - +- amd64 | veusz-helpers | 1.15-1+b1 | - +- amd64 | veusz-helpers-dbg | 1.15-1+b1 | - +- amd64 | vflib3 | 3.6.14.dfsg-3+b1 | - +- amd64 | vflib3-bin | 3.6.14.dfsg-3+b1 | - +- amd64 | vflib3-dev | 3.6.14.dfsg-3+b1 | - +- amd64 | vftool | 2.0alpha-4.1 | - +- amd64 | vfu | 4.10-1.1 | - +- amd64 | vgrabbj | 0.9.6-5.1 | - +- amd64 | via-bin | 2.0.4-2 | - +- amd64 | vidalia | 0.2.20-2 | - +- amd64 | videocut | 0.2.0-11 | - +- amd64 | videogen | 0.32-5 | - +- amd64 | viewmol | 2.4.1-18 | - +- amd64 | viewpdf.app | 1:0.2dfsg1-4 | - +- amd64 | vifm | 0.4-1 | - +- amd64 | vigor | 0.016-19 | - +- amd64 | viking | 1.3-1 | - +- amd64 | vile | 9.8g-2 | - +- amd64 | vile-filters | 9.8g-2 | - +- amd64 | vilistextum | 2.6.9-1.1 | - +- amd64 | vim | 2:7.3.547-7 | - +- amd64 | vim-athena | 2:7.3.547-7 | - +- amd64 | vim-common | 2:7.3.547-7 | - +- amd64 | vim-dbg | 2:7.3.547-7 | - +- amd64 | vim-gnome | 2:7.3.547-7 | - +- amd64 | vim-gtk | 2:7.3.547-7 | - +- amd64 | vim-nox | 2:7.3.547-7 | - +- amd64 | vim-tiny | 2:7.3.547-7 | - +- amd64 | vinagre | 3.4.2-2 | - +- amd64 | vino | 3.4.2-1+b1 | - +- amd64 | virt-top | 1.0.7-1+b1 | - +- amd64 | virt-viewer | 0.5.3-1 | - +- amd64 | virt-what | 1.12-1 | - +! amd64 | virtualbox | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-dbg | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +- amd64 | virtualbox-fuse | 4.1.18-dfsg-2+deb7u1 | - +! amd64 | virtualbox-guest-utils | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-guest-x11 | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-qt | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +- amd64 | virtuoso-opensource-6.1 | 6.1.4+dfsg1-7 | - +- amd64 | virtuoso-opensource-6.1-bin | 6.1.4+dfsg1-7 | - +- amd64 | virtuoso-opensource-6.1-common | 6.1.4+dfsg1-7 | - +- amd64 | viruskiller | 1.03-1+dfsg1-1 | - +- amd64 | visitors | 0.7-9 | - +- amd64 | visualboyadvance | 1.8.0.dfsg-1 | - +- amd64 | visualboyadvance-gtk | 1.8.0.dfsg-1 | - +- amd64 | vite | 1.2+svn1347-3 | - +- amd64 | vkeybd | 1:0.1.18d-2 | - +- amd64 | vlan | 1.9-3 | - +! amd64 | vlc | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-dbg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-nox | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-fluidsynth | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-jack | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-notify | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-pulse | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-sdl | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-svg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-zvbi | 2.0.3-5 | 2.1.2-2~bpo70+2 +- amd64 | vlock | 2.2.2-3 | - ++ amd64 | vmdebootstrap | - | 0.2-1~bpo70+1 +- amd64 | vmfs-tools | 0.2.5-1 | - +- amd64 | vmpk | 0.4.0-3 | - +- amd64 | vnc4server | 4.1.1+X4.3.0-37.1 | - +- amd64 | vncsnapshot | 1.2a-5.1 | - +- amd64 | vnstat | 1.11-1 | - +- amd64 | vnstati | 1.11-1 | - +- amd64 | vo-aacenc-dbg | 0.1.2-1 | - +- amd64 | vo-amrwbenc-dbg | 0.1.2-1 | - +- amd64 | vobcopy | 1.2.0-2 | - +- amd64 | vocproc | 0.2-3 | - +- amd64 | vodovod | 1.10-2 | - +- amd64 | voikko-fi | 1.12-1 | - ++ amd64 | vokoscreen | - | 1.9.6-1~bpo70+1 +- amd64 | volumecontrol.app | 0.5-3.1+b1 | - +- amd64 | volumeicon-alsa | 0.4.6-1 | - +- amd64 | volview | 3.4-3 | - +- amd64 | voms-clients | 2.0.8-1 | - +- amd64 | voms-dbg | 2.0.8-1 | - +- amd64 | voms-dev | 2.0.8-1 | - +- amd64 | voms-mysql-plugin | 3.1.6-1+b1 | - +- amd64 | voms-mysql-plugin-dbg | 3.1.6-1+b1 | - +- amd64 | voms-server | 2.0.8-1 | - +- amd64 | vorbis-tools | 1.4.0-1 | - +- amd64 | vorbis-tools-dbg | 1.4.0-1 | - +- amd64 | vorbisgain | 0.37-2 | - +- amd64 | vowpal-wabbit | 6.1-1 | - +- amd64 | voxbo | 1.8.5~svn1246-1+b1 | - +- amd64 | vpb-utils | 4.2.55-1 | - +- amd64 | vpnc | 0.5.3r512-2 | - +- amd64 | vprerex | 6.4.0-3 | - +- amd64 | vpx-tools | 1.1.0-1 | - +- amd64 | vrfy | 990522-8 | - +- amd64 | vrrpd | 1.0-2 | - +- amd64 | vsd2odg | 0.8.1-4 | - +- amd64 | vsdump | 0.0.45-1 | - +- amd64 | vsftpd | 2.3.5-3 | - +- amd64 | vstream-client | 1.2-6.1 | - +- amd64 | vstream-client-dev | 1.2-6.1 | - +- amd64 | vtgrab | 0.1.8-3 | - +- amd64 | vtprint | 2.0.2-12 | - +- amd64 | vttest | 2.7+20120603-1 | - +- amd64 | vtun | 3.0.2-4+b1 | - +- amd64 | vtwm | 5.4.7-2.2 | - +- amd64 | vym | 2.2.0-1 | - +- amd64 | vzctl | 3.0.30.2-4 | - +- amd64 | vzquota | 3.0.12-3 | - +- amd64 | w-scan | 20120605-1 | - +- amd64 | w3cam | 0.7.2-6.2 | - +- amd64 | w3m | 0.5.3-8 | - +- amd64 | w3m-img | 0.5.3-8 | - +- amd64 | w9wm | 0.4.2-7 | - +- amd64 | wah-plugins | 0.0.2-2 | - +- amd64 | warmux | 1:11.04.1+repack-4 | - +- amd64 | warmux-dbg | 1:11.04.1+repack-4 | - +- amd64 | warmux-servers | 1:11.04.1+repack-4 | - +- amd64 | watch-maildirs | 1.2.0-2.1 | - +- amd64 | watchdog | 5.12-1 | - +- amd64 | wav2cdr | 2.3.4-1 | - +- amd64 | wavbreaker | 0.11-1 | - +- amd64 | wavemon | 0.7.5-3 | - +- amd64 | wavpack | 4.60.1-3 | - +- amd64 | wayv | 0.3-5 | - +- amd64 | wbar | 1.3.3+dfsg2-1 | - +- amd64 | wbox | 5-1 | - +- amd64 | wcalc | 2.4-1.1 | - +- amd64 | wcd | 5.2.1-2 | - +- amd64 | wcslib-dev | 4.13.4-1 | - +- amd64 | wcslib-tools | 4.13.4-1 | - +- amd64 | wcstools | 3.8.5-1 | - +- amd64 | wdiff | 1.1.2-1 | - +- amd64 | wdm | 1.28-13+deb7u1 | - +- amd64 | webalizer | 2.23.05-1 | - +- amd64 | webauth-utils | 4.1.1-2 | - +- amd64 | webcam | 3.102-3 | - +- amd64 | webcit-dbg | 8.14-dfsg-1 | - +- amd64 | webdruid | 0.5.4-12.1 | - +- amd64 | webfs | 1.21+ds1-8.1 | - +- amd64 | webhttrack | 3.46.1-1 | - +- amd64 | webissues | 1.0.2-1 | - +- amd64 | webissues-dbg | 1.0.2-1 | - +- amd64 | webkit-image-gtk | 0.0.svn25399-3 | - +- amd64 | webkit-image-qt | 0.0.svn25399-3 | - +- amd64 | webkit2pdf | 0.2-4 | - +- amd64 | weborf | 0.13-3 | - +- amd64 | webp | 0.1.3-3+nmu1 | - +! amd64 | weechat-core | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-curses | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-dbg | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-plugins | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +- amd64 | weex | 2.6.1-8 | - +- amd64 | welcome2l | 3.04-25 | - +- amd64 | weplab | 0.1.5-2 | - +! amd64 | wesnoth-1.10-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | wesnoth-1.10-dbg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | wesnoth-1.10-server | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +- amd64 | west-chamber-common | 20100405+svn20111107.r124-1 | - +- amd64 | wfut | 0.2.1-2 | - +- amd64 | wget | 1.13.4-3+deb7u1 | - +- amd64 | whichman | 2.4-7 | - +- amd64 | whiptail | 0.52.14-11.1 | - +- amd64 | whitedune | 0.30.10-1.1 | - +- amd64 | whois | 5.1.1~deb7u1 | - +- amd64 | whowatch | 1.6.0a-2 | - +- amd64 | why | 2.30+dfsg-5+b1 | - +- amd64 | whysynth | 20090403-1.2 | - +- amd64 | wicd-kde | 0.3.0-2 | - +- amd64 | wide-dhcpv6-client | 20080615-11.1 | - +- amd64 | wide-dhcpv6-relay | 20080615-11.1 | - +- amd64 | wide-dhcpv6-server | 20080615-11.1 | - +- amd64 | widelands | 1:17-3 | - +- amd64 | widelands-dbg | 1:17-3 | - +- amd64 | wiggle | 0.8+dfsg1-1 | - +- amd64 | wiipdf | 1.4-2 | - +- amd64 | wildmidi | 0.2.3.4-2.1 | - +- amd64 | wily | 0.13.41-7.2 | - ++ amd64 | wims | - | 1:4.07a~dfsg1-2~bpo1-1 ++ amd64 | wims-java-applets | - | 1:4.07a~dfsg1-2~bpo1-1 +! amd64 | winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- amd64 | winbind4 | 4.0.0~beta2+dfsg1-3.2 | - +- amd64 | windowlab | 1.40-1 | - +- amd64 | wine | 1.4.1-4 | - +- amd64 | wine64-bin | 1.4.1-4 | - +- amd64 | winff | 1.4.2-3 | - +- amd64 | winff-dbg | 1.4.2-3 | - +- amd64 | wing | 0.7-27.1+b1 | - +- amd64 | wings3d | 1.4.1-4 | - +- amd64 | wininfo | 0.7-5 | - +- amd64 | winwrangler | 0.2.4-3 | - +- amd64 | wipe | 0.22-1 | - +- amd64 | wireless-tools | 30~pre9-8 | - +! amd64 | wireshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-common | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-dbg | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- amd64 | wise | 2.4.1-10 | - +- amd64 | witty-examples | 3.2.1-2 | - +- amd64 | wizznic | 0.9.2-preview2+dfsg-1.1 | - +- amd64 | wkhtmltopdf | 0.9.9-4 | - +- amd64 | wm2 | 4+svn20090216-2 | - +- amd64 | wmacpi | 2.2~rc5-1 | - +- amd64 | wmail | 2.0-3 | - +- amd64 | wmaker | 0.95.3-2 | - +- amd64 | wmaker-dbg | 0.95.3-2 | - +- amd64 | wmaloader | 0.1-5.1+b1 | - +- amd64 | wmanager | 0.2.1-11 | - +- amd64 | wmauda | 0.8-2 | - +- amd64 | wmbattery | 2.41 | - +- amd64 | wmbiff | 0.4.27-2.1 | - +- amd64 | wmbubble | 1.46-3 | - +- amd64 | wmbutton | 0.6.1-3.1 | - +- amd64 | wmcalclock | 1.25-15 | - +- amd64 | wmcdplay | 1.0beta1-10 | - +- amd64 | wmclock | 1.0.14-1 | - +- amd64 | wmclockmon | 0.8.1-2 | - +- amd64 | wmcoincoin | 2.5.1e-1 | - +- amd64 | wmcpu | 1.4-4 | - +- amd64 | wmcpuload | 1.0.1-3.2 | - +- amd64 | wmctrl | 1.07-7 | - +- amd64 | wmdate | 0.7-4 | - +- amd64 | wmdiskmon | 0.0.2-2 | - +- amd64 | wmdrawer | 0.10.5-1.1 | - +- amd64 | wmf | 1.0.5-6 | - +- amd64 | wmforkplop | 0.9.3-2 | - +- amd64 | wmfrog | 0.2.0-4 | - +- amd64 | wmgui | 0.6.00+svn201-3+b1 | - +- amd64 | wmhdplop | 0.9.9-2.1 | - +- amd64 | wmifinfo | 0.09-5 | - +- amd64 | wmifs | 1.3b1-20 | - +- amd64 | wmii | 3.9.2+debian-4 | - +- amd64 | wminput | 0.6.00+svn201-3+b1 | - +- amd64 | wmitime | 0.3-11 | - +- amd64 | wmix | 3.1-5 | - +- amd64 | wml | 2.0.12ds1-3 | - +- amd64 | wmlongrun | 0.3.0-pre1-4.2 | - +- amd64 | wmmatrix | 0.2-12 | - +- amd64 | wmmemload | 0.1.6-7 | - +- amd64 | wmmixer | 1.7-1 | - +- amd64 | wmmon | 1.1+20120402-1 | - +- amd64 | wmmoonclock | 1.28-1 | - +- amd64 | wmnd | 0.4.16-1.1 | - +- amd64 | wmnd-snmp | 0.4.16-1.1 | - +- amd64 | wmnet | 1.06-1 | - +- amd64 | wmnut | 0.64-1 | - +- amd64 | wmpinboard | 1.0-11 | - +- amd64 | wmpomme | 1.39~dfsg-2+b1 | - +- amd64 | wmppp.app | 1.3.0-8 | - +- amd64 | wmpuzzle | 0.5.1-1 | - +- amd64 | wmrack | 1.4-2 | - +- amd64 | wmressel | 0.8-5 | - +- amd64 | wmshutdown | 0.2-9 | - +- amd64 | wmtemp | 0.0.6-3.3 | - +- amd64 | wmtime | 1.0b2-10 | - +- amd64 | wmtv | 0.6.5-16.1 | - +- amd64 | wmwave | 0.4-9+b1 | - +- amd64 | wmweather | 2.4.5-1 | - +- amd64 | wmweather+ | 2.13-1 | - +- amd64 | wmwork | 0.2.5-4 | - +- amd64 | wmxmms2 | 0.6-6 | - +- amd64 | wmxres | 1.2-10 | - +- amd64 | wodim | 9:1.1.11-2 | - +- amd64 | wordgrinder | 0.3.3-1 | - +- amd64 | wordnet | 1:3.0-29 | - +- amd64 | wordnet-dev | 1:3.0-29 | - +- amd64 | wordnet-grind | 1:3.0-29 | - +- amd64 | wordnet-gui | 1:3.0-29 | - +- amd64 | wordplay | 7.22-17 | - +- amd64 | worker | 2.19.2-2 | - +- amd64 | worklog | 1.8-6 | - +- amd64 | workrave | 1.9.909+abc941eb70-1 | - +- amd64 | wp2x | 2.5-mhi-10.1 | - +- amd64 | wpagui | 1.0-3+b2 | - +- amd64 | wpasupplicant | 1.0-3+b2 | - +- amd64 | wpd2odt | 0.8.1-4 | - +- amd64 | wpg2odg | 0.8.1-4 | - +- amd64 | wps2odt | 0.8.1-4 | - +- amd64 | wput | 0.6.2-3 | - +- amd64 | wraplinux | 1.7-7 | - +- amd64 | wraplinux-dbg | 1.7-7 | - +- amd64 | wrapperfactory.app | 0.1.0-4+b3 | - +- amd64 | wrapsrv | 0.2-1 | - +- amd64 | wreport-common | 2.4-1 | - +- amd64 | wsjt | 5.9.7.r383-1.6 | - +- amd64 | wsynth-dssi | 0.1.3-4 | - +- amd64 | wuzzah | 0.53-2 | - +- amd64 | wv | 1.2.9-3 | - +- amd64 | wvdial | 1.61-4.1 | - +- amd64 | wwl | 1.3+db-1.1 | - +- amd64 | wx-common | 2.8.12.1-12 | - +- amd64 | wx2.8-headers | 2.8.12.1-12 | - +- amd64 | wxmaxima | 12.04.0-1 | - +- amd64 | wxsqlite3-2.8-dbg | 3.0.0.1~dfsg0-2 | - +- amd64 | wyrd | 1.4.4-1 | - +- amd64 | wysihtml-el | 0.13-5.1 | - +- amd64 | wzdftpd | 0.8.3-6.2 | - +- amd64 | wzdftpd-back-mysql | 0.8.3-6.2 | - +- amd64 | wzdftpd-back-pgsql | 0.8.3-6.2 | - +- amd64 | wzdftpd-dev | 0.8.3-6.2 | - +- amd64 | wzdftpd-mod-avahi | 0.8.3-6.2 | - +- amd64 | wzdftpd-mod-perl | 0.8.3-6.2 | - +- amd64 | wzdftpd-mod-tcl | 0.8.3-6.2 | - +- amd64 | wzip | 1.1.3 | - +- amd64 | x11-apps | 7.7~2 | - +- amd64 | x11-session-utils | 7.6+2 | - +- amd64 | x11-utils | 7.7~1 | - +- amd64 | x11-xfs-utils | 7.7~1 | - +- amd64 | x11-xkb-utils | 7.7~1 | - +- amd64 | x11-xserver-utils | 7.7~3 | - +- amd64 | x11vnc | 0.9.13-1 | - +- amd64 | x2 | 1.1.0-1 | - +- amd64 | x264 | 2:0.123.2189+git35cf912-1 | - +! amd64 | x2goclient | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 ++ amd64 | x2goclient-dbg | - | 4.0.1.1-1~bpo7+1 +! amd64 | x2goplugin | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +- amd64 | x2vnc | 1.7.2-5 | - +- amd64 | x2x | 1.27.svn.20060501-4 | - +- amd64 | x86dis | 0.23-5 | - +- amd64 | x86info | 1.30-2 | - +- amd64 | xa65 | 2.3.5-1 | - +- amd64 | xabacus | 7.6.8-3 | - +- amd64 | xacobeo | 0.13-2+b1 | - +- amd64 | xalan | 1.10-6 | - +- amd64 | xaos | 3.5+ds1-1 | - +! amd64 | xapian-examples | 1.2.12-2 | 1.2.16-2~bpo70+1 +- amd64 | xapian-omega | 1.2.12-1 | - +! amd64 | xapian-tools | 1.2.12-2 | 1.2.16-2~bpo70+1 +- amd64 | xapm | 3.2.2-14 | - +- amd64 | xara-gtk | 1.0.31 | - +- amd64 | xarchiver | 1:0.5.2+20090319+dfsg-4.1 | - +- amd64 | xarclock | 1.0-13 | - +- amd64 | xauth | 1:1.0.7-1 | - +- amd64 | xautolock | 1:2.2-3 | - +- amd64 | xautomation | 1.03-1.1 | - +- amd64 | xaw3dg | 1.5+E-18.2 | - +- amd64 | xaw3dg-dev | 1.5+E-18.2 | - +- amd64 | xawtv | 3.102-3 | - +- amd64 | xawtv-plugin-qt | 3.102-3 | - +- amd64 | xawtv-plugins | 3.102-3 | - +- amd64 | xawtv-tools | 3.102-3 | - +- amd64 | xbacklight | 1.1.2-1 | - +- amd64 | xball | 3.0.1-1.1 | - +- amd64 | xbattbar | 1.4.3-1 | - +- amd64 | xbattle | 5.4.1-15 | - +- amd64 | xbill | 2.1-8 | - +- amd64 | xbindkeys | 1.8.5-1 | - +- amd64 | xbindkeys-config | 0.1.3-2 | - +- amd64 | xblast-tnt | 2.10.4-3 | - +! amd64 | xbmc-bin | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! amd64 | xbmc-eventclients-wiiremote | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +- amd64 | xboard | 4.6.2-1 | - +- amd64 | xboing | 2.4-31 | - +- amd64 | xbomb | 2.2a-1 | - +- amd64 | xboxdrv | 0.8.4-1 | - +- amd64 | xbrlapi | 4.4-10+deb7u1 | - +- amd64 | xbs | 0-8 | - +- amd64 | xbubble | 0.5.11.2-3.2 | - +- amd64 | xbuffy | 3.3.bl.3.dfsg-8 | - +- amd64 | xca | 0.9.3-1 | - +- amd64 | xcal | 4.1-19 | - +- amd64 | xcalib | 0.8.dfsg1-2 | - +- amd64 | xcb | 2.4-4.3 | - +- amd64 | xcfa | 4.3.1-1 | - +- amd64 | xcfa-dbg | 4.3.1-1 | - +- amd64 | xcftools | 1.0.7-4 | - +- amd64 | xchain | 1.0.1-6 | - +- amd64 | xchat | 2.8.8-7.1 | - +- amd64 | xchat-gnome | 1:0.30.0~git20110821.e2a400-0.2+b2 | - +- amd64 | xchat-guile | 0.3-2 | - +- amd64 | xchat-xsys | 2.2.0-2+b1 | - +- amd64 | xchm | 2:1.20-1 | - +- amd64 | xcircuit | 3.7.40.dfsg-1 | - +- amd64 | xclip | 0.12+svn84-2 | - +- amd64 | xcolmix | 1.07-10 | - +- amd64 | xcolors | 1.5a-7 | - +- amd64 | xcolorsel | 1.1a-17 | - +- amd64 | xcompmgr | 1.1.5-1 | - +- amd64 | xcowsay | 1.2-1 | - +- amd64 | xcp-fe | 0.5.2-3+b1 | - +- amd64 | xcp-guest-templates | 0.1-4 | - +- amd64 | xcp-networkd | 1.3.2-15 | - +- amd64 | xcp-squeezed | 1.3.2-15 | - +- amd64 | xcp-storage-managers | 0.1.1-3 | - +- amd64 | xcp-v6d | 1.3.2-15 | - +- amd64 | xcp-vncterm | 0.1-2 | - +- amd64 | xcp-xapi | 1.3.2-15 | - +- amd64 | xcp-xapi-debug | 1.3.2-15 | - +- amd64 | xcp-xe | 1.3.2-15 | - +- amd64 | xcrysden | 1.5.53-1 | - +- amd64 | xcwcp | 3.0.2-1 | - +- amd64 | xd | 3.22.04-1 | - +- amd64 | xdaliclock | 2.36+debian-1 | - +- amd64 | xdelta | 1.1.3-9 | - +- amd64 | xdelta3 | 3.0.0.dfsg-1 | - +- amd64 | xdemineur | 2.1.1-17 | - +- amd64 | xdemorse | 1.3-6 | - +- amd64 | xdesktopwaves | 1.3-3 | - +- amd64 | xdeview | 0.5.20-3.3 | - +- amd64 | xdg-user-dirs | 0.14-1 | - +- amd64 | xdg-user-dirs-gtk | 0.9-1 | - +- amd64 | xdiskusage | 1.48-10.1 | - +- amd64 | xdm | 1:1.1.11-1 | - +- amd64 | xdms | 1.3.2-4 | - +- amd64 | xdmx | 2:1.12.4-6+deb7u2 | - +- amd64 | xdmx-tools | 2:1.12.4-6+deb7u2 | - +- amd64 | xdotool | 1:2.20100701.2961-3+deb7u3 | - +- amd64 | xdrawchem | 2.0-2 | - +- amd64 | xdu | 3.0-18 | - +- amd64 | xdvik-ja | 22.84.16-j1.40+t1lib-1 | - +- amd64 | xen-hypervisor-4.1-amd64 | 4.1.4-3+deb7u1 | - +- amd64 | xen-linux-system-2.6-xen-amd64 | 3.2+46 | - ++ amd64 | xen-linux-system-3.12-0.bpo.1-amd64 | - | 3.12.9-1~bpo70+1 +- amd64 | xen-linux-system-3.2.0-4-amd64 | 3.2.54-2 | - +! amd64 | xen-linux-system-amd64 | 3.2+46 | 3.12+55~bpo70+1 +- amd64 | xen-system-amd64 | 4.1.4-3+deb7u1 | - +- amd64 | xen-utils-4.1 | 4.1.4-3+deb7u1 | - +- amd64 | xenomai-runtime | 2.6.0-2 | - +- amd64 | xenstore-utils | 4.1.4-3+deb7u1 | - +- amd64 | xenwatch | 0.5.4-3 | - +- amd64 | xevil | 2.02r2-10 | - +- amd64 | xfaces | 3.3-28 | - +- amd64 | xfburn | 0.4.3-5 | - +- amd64 | xfce4-appfinder | 4.8.0-3 | - +- amd64 | xfce4-battery-plugin | 1.0.5-1+b1 | - +- amd64 | xfce4-cellmodem-plugin | 0.0.5-3+b1 | - +- amd64 | xfce4-clipman | 2:1.2.3-1+b1 | - +- amd64 | xfce4-clipman-plugin | 2:1.2.3-1+b1 | - +- amd64 | xfce4-cpufreq-plugin | 1.0.0-4+b1 | - +- amd64 | xfce4-cpugraph-plugin | 1.0.3-1+b1 | - +- amd64 | xfce4-datetime-plugin | 0.6.1-3+b1 | - +- amd64 | xfce4-dev-tools | 4.10.0-2 | - +- amd64 | xfce4-dict | 0.6.0-5+b1 | - +- amd64 | xfce4-diskperf-plugin | 2.5.4-1+b1 | - +- amd64 | xfce4-fsguard-plugin | 1.0.1-1+b1 | - +- amd64 | xfce4-genmon-plugin | 3.4.0-1+b1 | - +- amd64 | xfce4-goodies | 4.8.2 | - +- amd64 | xfce4-hdaps | 0.0.9-1+b1 | - +- amd64 | xfce4-indicator-plugin | 0.5.0-1+b2 | - +- amd64 | xfce4-linelight-plugin | 0.1.7-2+b1 | - +- amd64 | xfce4-mailwatch-plugin | 1.1.0-5+b1 | - +- amd64 | xfce4-messenger-plugin | 0.1.0-5+b1 | - +- amd64 | xfce4-mixer | 4.8.0-3+b1 | - +- amd64 | xfce4-mount-plugin | 0.6.4-1+b1 | - +- amd64 | xfce4-mpc-plugin | 0.4.4-1+b1 | - +- amd64 | xfce4-netload-plugin | 1.1.0-1+b1 | - +- amd64 | xfce4-notes | 1.7.7-2+b1 | - +- amd64 | xfce4-notes-plugin | 1.7.7-2+b1 | - +- amd64 | xfce4-notifyd | 0.2.2-2 | - +- amd64 | xfce4-panel | 4.8.6-4 | - +- amd64 | xfce4-panel-dbg | 4.8.6-4 | - +- amd64 | xfce4-panel-dev | 4.8.6-4 | - +- amd64 | xfce4-places-plugin | 1.3.0-1+b1 | - +- amd64 | xfce4-power-manager | 1.0.11-2+b1 | - +- amd64 | xfce4-power-manager-plugins | 1.0.11-2+b1 | - +- amd64 | xfce4-quicklauncher-plugin | 1.9.4-9+b1 | - +- amd64 | xfce4-radio-plugin | 0.5.1-1+b1 | - +- amd64 | xfce4-screenshooter | 1.8.1-1+b1 | - +- amd64 | xfce4-sensors-plugin | 1.2.5-1+b1 | - +- amd64 | xfce4-session | 4.8.3-3 | - +- amd64 | xfce4-session-dbg | 4.8.3-3 | - +- amd64 | xfce4-settings | 4.8.3-2 | - +- amd64 | xfce4-smartbookmark-plugin | 0.4.4-1+b1 | - +- amd64 | xfce4-systemload-plugin | 1.1.1-1+b1 | - +- amd64 | xfce4-taskmanager | 1.0.0-2 | - +- amd64 | xfce4-terminal | 0.4.8-1+b1 | - +- amd64 | xfce4-terminal-dbg | 0.4.8-1+b1 | - +- amd64 | xfce4-timer-plugin | 0.6.3-1+b1 | - +- amd64 | xfce4-utils | 4.8.3-2 | - +- amd64 | xfce4-verve-plugin | 1.0.0-1+b1 | - +- amd64 | xfce4-volumed | 0.1.13-3 | - +- amd64 | xfce4-wavelan-plugin | 0.5.11-1+b1 | - +- amd64 | xfce4-weather-plugin | 0.7.4-5 | - +- amd64 | xfce4-wmdock-plugin | 0.3.4-1+b1 | - +- amd64 | xfce4-xkb-plugin | 0.5.4.3-1+b1 | - +- amd64 | xfconf | 4.8.1-1 | - +- amd64 | xfdesktop4 | 4.8.3-2 | - +- amd64 | xfdesktop4-dbg | 4.8.3-2 | - +- amd64 | xfe | 1.32.5-2 | - +- amd64 | xfig | 1:3.2.5.b-3 | - +- amd64 | xfingerd | 0.6-5.1 | - +- amd64 | xfireworks | 1.3-8 | - +- amd64 | xfishtank | 2.2-26 | - +- amd64 | xflip | 1.01-25 | - +- amd64 | xflr5 | 6.07+svn513-1 | - +- amd64 | xfm | 1.5.4-3 | - +- amd64 | xfmpc | 0.2.2-1 | - +- amd64 | xfoil | 6.97.dfsg-5 | - +- amd64 | xfonts-utils | 1:7.7~1 | - +- amd64 | xfprint4 | 4.6.1-3 | - +- amd64 | xfpt | 0.09-1 | - +- amd64 | xfrisk | 1.2-3 | - +- amd64 | xfs | 1:1.0.8-7 | - +- amd64 | xfsdump | 3.0.6 | - +- amd64 | xfslibs-dev | 3.1.7+b1 | - +- amd64 | xfsprogs | 3.1.7+b1 | - +- amd64 | xfstt | 1.9-2 | - +- amd64 | xfswitch-plugin | 0.0.1-3+b1 | - +- amd64 | xfwm4 | 4.8.3-2 | - +- amd64 | xfwm4-dbg | 4.8.3-2 | - +- amd64 | xgalaga | 2.1.1.0-4 | - +- amd64 | xgalaga++ | 0.8.3-1 | - +- amd64 | xgammon | 0.99.1128-3 | - +- amd64 | xgnokii | 0.6.30+dfsg-1+b1 | - +- amd64 | xgraph | 12.1-16 | - +- amd64 | xicc | 0.2-3 | - +- amd64 | xindy | 2.4-1.1 | - +- amd64 | xine-console | 0.99.7-1 | - +- amd64 | xine-dbg | 0.99.7-1 | - +- amd64 | xine-plugin | 1.0.2-4 | - +- amd64 | xine-ui | 0.99.7-1 | - +- amd64 | xineliboutput-fbfe | 1.0.7+cvs20120609.1902-1 | - +- amd64 | xineliboutput-sxfe | 1.0.7+cvs20120609.1902-1 | - +- amd64 | xinetd | 1:2.3.14-7.1+deb7u1 | - +- amd64 | xinit | 1.3.2-1 | - +- amd64 | xinput | 1.6.0-1 | - +- amd64 | xinv3d | 1.3.6-6 | - +- amd64 | xiphos | 3.1.5+dfsg-1+b2 | - +- amd64 | xiphos-dbg | 3.1.5+dfsg-1+b2 | - +- amd64 | xipmsg | 0.8088-2.1 | - +- amd64 | xiterm+thai | 1.10-2 | - +- amd64 | xjadeo | 0.6.4-1 | - +- amd64 | xjdic | 24-8 | - +- amd64 | xjed | 1:0.99.19-2.1 | - +- amd64 | xjig | 2.4-13+b2 | - +- amd64 | xjobs | 20110730-1 | - +- amd64 | xjokes | 1.0-13 | - +- amd64 | xjump | 2.7.5-6.1 | - +- amd64 | xkbind | 2010.05.20-1 | - +- amd64 | xkbset | 0.5-5.1 | - +- amd64 | xkeycaps | 2.47-4 | - +- amd64 | xl2tpd | 1.3.1+dfsg-1 | - +- amd64 | xlassie | 1.8-21 | - +- amd64 | xlbiff | 4.1-7 | - +- amd64 | xless | 1.7-14.1 | - +- amd64 | xletters | 1.1.1-4.1 | - +- amd64 | xlhtml | 0.5.1-6 | - +- amd64 | xli | 1.17.0+20061110-4 | - +- amd64 | xloadimage | 4.1-19 | - +- amd64 | xlog | 2.0.5-2 | - +- amd64 | xmabacus | 7.6.8-3 | - +- amd64 | xmacro | 0.3pre-20000911-6 | - +- amd64 | xmahjongg | 3.7-3 | - +- amd64 | xmail | 1.27-1.1+b1 | - +- amd64 | xmakemol | 5.16-6 | - +- amd64 | xmakemol-gl | 5.16-6 | - +- amd64 | xmaxima | 5.27.0-3 | - +- amd64 | xmbmon | 2.05-6 | - +- amd64 | xmds | 1.6.6-7 | - +- amd64 | xmedcon | 0.10.7-1+b2 | - +- amd64 | xmem | 1.20-27.2 | - +- amd64 | xmhtml1 | 1.1.7-18 | - +- amd64 | xmhtml1-dev | 1.1.7-18 | - +- amd64 | xmille | 2.0-13 | - +- amd64 | xmix | 2.1-6 | - ++ amd64 | xml-security-c-utils | - | 1.7.2-2~bpo70+1 +- amd64 | xml2 | 0.4-3.1 | - +- amd64 | xmlcopyeditor | 1.2.0.6-2+b1 | - +- amd64 | xmlcopyeditor-dbg | 1.2.0.6-2+b1 | - +- amd64 | xmldiff | 0.6.10-2+b1 | - +- amd64 | xmlindent | 0.2.17-2 | - +- amd64 | xmlroff | 0.6.2-1.1 | - +- amd64 | xmlrpc-api-utils | 1.16.33-3.2 | - +- amd64 | xmlsec1 | 1.2.18-2 | - +- amd64 | xmlstarlet | 1.3.1-3 | - +- amd64 | xmlto | 0.0.25-2 | - +- amd64 | xmms2 | 0.8+dfsg-4 | - +- amd64 | xmms2-client-avahi | 0.8+dfsg-4 | - +- amd64 | xmms2-client-cli | 0.8+dfsg-4 | - +- amd64 | xmms2-client-medialib-updater | 0.8+dfsg-4 | - +- amd64 | xmms2-client-nycli | 0.8+dfsg-4 | - +- amd64 | xmms2-core | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-airplay | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-all | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-alsa | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-ao | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-apefile | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-asf | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-asx | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-avcodec | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-cdda | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-cue | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-curl | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-daap | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-faad | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-flac | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-flv | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-gme | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-gvfs | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-html | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-ices | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-icymetaint | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-id3v2 | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-jack | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-karaoke | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-m3u | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-mad | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-mms | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-modplug | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-mp4 | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-mpg123 | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-musepack | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-normalize | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-ofa | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-oss | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-pls | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-pulse | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-rss | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-sid | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-smb | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-sndfile | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-speex | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-tta | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-vocoder | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-vorbis | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-wavpack | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-xml | 0.8+dfsg-4 | - +- amd64 | xmms2-plugin-xspf | 0.8+dfsg-4 | - +- amd64 | xmms2-scrobbler | 0.4.0-3 | - +- amd64 | xmobar | 0.14-4 | - +- amd64 | xmonad | 0.10-4+b2 | - +- amd64 | xmorph | 1:20090926 | - +- amd64 | xmotd | 1.17.3b-5 | - +- amd64 | xmoto | 0.5.10+dfsg-1 | - +- amd64 | xmount | 0.5.0-2 | - +- amd64 | xmountains | 2.9-2 | - +- amd64 | xmp | 3.4.0-1.1 | - +- amd64 | xmp-audacious | 3.4.0-1.1 | - +- amd64 | xmpi | 2.2.3b8-13 | - +- amd64 | xmpuzzles | 7.6.3-1+b1 | - +- amd64 | xnbd-client | 0.1.0-pre-hg20-e75b93a47722-3 | - +- amd64 | xnbd-server | 0.1.0-pre-hg20-e75b93a47722-3 | - +- amd64 | xnec2c | 1:1.4-1 | - +- amd64 | xnecview | 1.35-7.1 | - +- amd64 | xnest | 2:1.12.4-6+deb7u2 | - +- amd64 | xneur | 0.15.0-1.1 | - +- amd64 | xneur-dbg | 0.15.0-1.1 | - +- amd64 | xonix | 1.4-29 | - +- amd64 | xoo | 0.8-1.1 | - +- amd64 | xorg | 1:7.7+3~deb7u1 | - +- amd64 | xorp | 1.8.5-1.1 | - +- amd64 | xorriso | 1.2.2-2 | - +- amd64 | xoscope | 2.0-3.2 | - +- amd64 | xosd-bin | 2.2.14-2 | - +- amd64 | xosview | 1.9.3-3 | - +- amd64 | xotcl | 1.6.7-2 | - +- amd64 | xotcl-dev | 1.6.7-2 | - +- amd64 | xotcl-shells | 1.6.7-2 | - +- amd64 | xournal | 0.4.6~pre20110721-1+b1 | - +- amd64 | xpa-tools | 2.1.14-2 | - +- amd64 | xpad | 4.1-1 | - +- amd64 | xpaint | 2.9.1.4-3+b2 | - +- amd64 | xpaint-dev | 2.9.1.4-3+b2 | - +- amd64 | xpat2 | 1.07-18 | - +- amd64 | xpdf | 3.03-10 | - +- amd64 | xpenguins | 2.2-8 | - +- amd64 | xphoon | 20000613+0-1 | - +- amd64 | xpilot-ng-client-sdl | 1:4.7.3-1.4 | - +- amd64 | xpilot-ng-client-x11 | 1:4.7.3-1.4 | - +- amd64 | xpilot-ng-server | 1:4.7.3-1.4 | - +- amd64 | xpilot-ng-utils | 1:4.7.3-1.4 | - +- amd64 | xplanet | 1.2.1-4.1+b1 | - +- amd64 | xplot | 1.19-9 | - +- amd64 | xplot-xplot.org | 0.90.7.1-2 | - +- amd64 | xpmutils | 1:3.5.10-1 | - +- amd64 | xpp | 1.5-cvs20050828-1.2 | - +- amd64 | xppaut | 6.11b+1.dfsg-1 | - +! amd64 | xpra | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +- amd64 | xprintidle | 0.2-5 | - +- amd64 | xprobe | 0.3-1.1 | - +- amd64 | xpuzzles | 7.6.3-1+b1 | - +- amd64 | xqf | 1.0.5-2 | - +- amd64 | xqilla | 2.3.0-1 | - +- amd64 | xracer | 0.96.9.1-6 | - +- amd64 | xrdp | 0.5.0-2 | - +- amd64 | xresprobe | 0.4.23debian1-1 | - +- amd64 | xrestop | 0.4-7 | - +- amd64 | xringd | 1.20-25.2 | - +- amd64 | xrootconsole | 1:0.6-2 | - +- amd64 | xsane | 0.998-3+b1 | - +- amd64 | xscavenger | 1.4.4-8 | - +- amd64 | xscorch | 0.2.1-1 | - +- amd64 | xscreensaver | 5.15-3 | - +- amd64 | xscreensaver-data | 5.15-3 | - +- amd64 | xscreensaver-data-extra | 5.15-3 | - +- amd64 | xscreensaver-gl | 5.15-3 | - +- amd64 | xscreensaver-gl-extra | 5.15-3 | - +- amd64 | xscreensaver-screensaver-bsod | 5.15-3 | - +- amd64 | xscreensaver-screensaver-webcollage | 5.15-3 | - +- amd64 | xsdcxx | 3.3.0.1-1.3 | - +- amd64 | xsel | 1.2.0-1 | - +- amd64 | xsensors | 0.70-2 | - +- amd64 | xserver-xephyr | 2:1.12.4-6+deb7u2 | - +- amd64 | xserver-xfbdev | 2:1.12.4-6+deb7u2 | - +- amd64 | xserver-xorg | 1:7.7+3~deb7u1 | - +- amd64 | xserver-xorg-core | 2:1.12.4-6+deb7u2 | - +- amd64 | xserver-xorg-core-dbg | 2:1.12.4-6+deb7u2 | - +- amd64 | xserver-xorg-dev | 2:1.12.4-6+deb7u2 | - +- amd64 | xserver-xorg-input-acecad | 1:1.5.0-1+b2 | - +- amd64 | xserver-xorg-input-aiptek | 1:1.4.1-1+b2 | - +- amd64 | xserver-xorg-input-all | 1:7.7+3~deb7u1 | - +- amd64 | xserver-xorg-input-elographics | 1:1.4.1-1 | - +- amd64 | xserver-xorg-input-evdev | 1:2.7.0-1+b1 | - +- amd64 | xserver-xorg-input-joystick | 1:1.6.1-1+b1 | - +- amd64 | xserver-xorg-input-kbd | 1:1.6.1-1+b1 | - +- amd64 | xserver-xorg-input-mouse | 1:1.7.2-3 | - +- amd64 | xserver-xorg-input-mtrack | 0.2.0-3 | - +- amd64 | xserver-xorg-input-multitouch | 1.0~rc2+git20110312-2+b1 | - +- amd64 | xserver-xorg-input-mutouch | 1:1.3.0-1+b2 | - +- amd64 | xserver-xorg-input-synaptics | 1.6.2-2 | - +- amd64 | xserver-xorg-input-vmmouse | 1:12.9.0-1 | - +- amd64 | xserver-xorg-input-void | 1:1.4.0-1+b1 | - +- amd64 | xserver-xorg-input-wacom | 0.15.0+20120515-2 | - +- amd64 | xserver-xorg-video-all | 1:7.7+3~deb7u1 | - +- amd64 | xserver-xorg-video-apm | 1:1.2.3-3 | - +- amd64 | xserver-xorg-video-ark | 1:0.7.4-1+b1 | - +- amd64 | xserver-xorg-video-ati | 1:6.14.4-8 | - +- amd64 | xserver-xorg-video-ati-dbg | 1:6.14.4-8 | - +- amd64 | xserver-xorg-video-chips | 1:1.2.4-2 | - +- amd64 | xserver-xorg-video-cirrus | 1:1.4.0-2 | - +- amd64 | xserver-xorg-video-dummy | 1:0.3.5-2+b1 | - +- amd64 | xserver-xorg-video-fbdev | 1:0.4.2-4+b3 | - +- amd64 | xserver-xorg-video-glamo | 0.0.0+20100630.git16af3c00-3.1 | - +- amd64 | xserver-xorg-video-glide | 1.2.0-1+b1 | - +- amd64 | xserver-xorg-video-glint | 1:1.2.7-1+b1 | - +- amd64 | xserver-xorg-video-i128 | 1:1.3.5-1+b1 | - +- amd64 | xserver-xorg-video-i740 | 1:1.3.2-4+b3 | - +- amd64 | xserver-xorg-video-intel | 2:2.19.0-6 | - +- amd64 | xserver-xorg-video-intel-dbg | 2:2.19.0-6 | - +- amd64 | xserver-xorg-video-mach64 | 6.9.1-2 | - +- amd64 | xserver-xorg-video-mach64-dbg | 6.9.1-2 | - +- amd64 | xserver-xorg-video-mga | 1:1.5.0-3 | - +- amd64 | xserver-xorg-video-modesetting | 0.3.0-1 | - +- amd64 | xserver-xorg-video-modesetting-dbg | 0.3.0-1 | - +- amd64 | xserver-xorg-video-neomagic | 1:1.2.6-1 | - +- amd64 | xserver-xorg-video-nouveau | 1:1.0.1-5 | - +- amd64 | xserver-xorg-video-nouveau-dbg | 1:1.0.1-5 | - ++ amd64 | xserver-xorg-video-nvidia | - | 319.82-1~bpo70+1 ++ amd64 | xserver-xorg-video-nvidia-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ amd64 | xserver-xorg-video-nvidia-legacy-304xx | - | 304.117-1~bpo70+1 ++ amd64 | xserver-xorg-video-nvidia-legacy-96xx | - | 96.43.23-7~bpo70+1 +- amd64 | xserver-xorg-video-openchrome | 1:0.2.906-2+deb7u1 | - +- amd64 | xserver-xorg-video-openchrome-dbg | 1:0.2.906-2+deb7u1 | - +- amd64 | xserver-xorg-video-qxl | 0.0.17-2+b1 | - +- amd64 | xserver-xorg-video-qxl-dbg | 0.0.17-2+b1 | - +- amd64 | xserver-xorg-video-r128 | 6.8.2-1 | - +- amd64 | xserver-xorg-video-r128-dbg | 6.8.2-1 | - +- amd64 | xserver-xorg-video-radeon | 1:6.14.4-8 | - +- amd64 | xserver-xorg-video-radeon-dbg | 1:6.14.4-8 | - +- amd64 | xserver-xorg-video-rendition | 1:4.2.4-3 | - +- amd64 | xserver-xorg-video-s3 | 1:0.6.3-5 | - +- amd64 | xserver-xorg-video-s3virge | 1:1.10.4-5 | - +- amd64 | xserver-xorg-video-savage | 1:2.3.4-1 | - +- amd64 | xserver-xorg-video-siliconmotion | 1:1.7.6-1 | - +- amd64 | xserver-xorg-video-sis | 1:0.10.4-1 | - +- amd64 | xserver-xorg-video-sisusb | 1:0.9.4-3 | - +- amd64 | xserver-xorg-video-tdfx | 1:1.4.4-1 | - +- amd64 | xserver-xorg-video-tga | 1:1.2.1-4+b3 | - +- amd64 | xserver-xorg-video-trident | 1:1.3.5-1 | - +- amd64 | xserver-xorg-video-tseng | 1:1.2.4-3 | - +- amd64 | xserver-xorg-video-vesa | 1:2.3.1-1+b1 | - +- amd64 | xserver-xorg-video-vmware | 1:12.0.2-1+b1 | - +- amd64 | xserver-xorg-video-voodoo | 1:1.2.4-2+b3 | - +- amd64 | xserver-xspice | 0.0.17-2+b1 | - +- amd64 | xsettings-kde | 0.9-2 | - +- amd64 | xshisen | 1:1.51-3.3 | - +- amd64 | xshogi | 1.3.2-9 | - +- amd64 | xskat | 4.0-5 | - +- amd64 | xsltproc | 1.1.26-14.1 | - +- amd64 | xsmc-calc | 1.0.0-6.1 | - +- amd64 | xsok | 1.02-17 | - +- amd64 | xsol | 0.31-9 | - +- amd64 | xsoldier | 1:1.8-2 | - +- amd64 | xstarfish | 1.1-11 | - +- amd64 | xstow | 1.0.0-2 | - +- amd64 | xsunpinyin | 2.0.3-4 | - +- amd64 | xsynth-dssi | 0.9.4-2 | - +- amd64 | xsysinfo | 1.7-9 | - +- amd64 | xsystem35 | 1.7.3-pre5-5 | - +- amd64 | xtables-addons-common | 1.42-2+b1 | - +- amd64 | xtail | 2.1-5 | - +- amd64 | xteddy | 2.2-2 | - +- amd64 | xtel | 3.3.0-14 | - +- amd64 | xtell | 2.10.7 | - +- amd64 | xterm | 278-4 | - +- amd64 | xtermcontrol | 2.10-1 | - +- amd64 | xtermset | 0.5.2-5 | - +- amd64 | xtide | 2.11-1 | - +- amd64 | xtightvncviewer | 1.3.9-6.4 | - +- amd64 | xtrace | 1.3.1-1 | - +- amd64 | xtrkcad | 1:4.0.2-2+b1 | - +- amd64 | xtrlock | 2.2 | - +- amd64 | xtron | 1.1a-14 | - +- amd64 | xttitle | 1.0-5 | - +- amd64 | xtux | 0.2.030306-12 | - +- amd64 | xtux-client | 0.2.030306-12 | - +- amd64 | xtux-server | 0.2.030306-12 | - +- amd64 | xtv | 1.1-12 | - +- amd64 | xul-ext-zarafa-drag-n-drop | 1.2-1 | - +- amd64 | xulrunner-10.0 | 10.0.12esr-1 | - +- amd64 | xulrunner-10.0-dbg | 10.0.12esr-1 | - +- amd64 | xulrunner-17.0 | 17.0.10esr-1~deb7u1 | - +- amd64 | xulrunner-17.0-dbg | 17.0.10esr-1~deb7u1 | - +- amd64 | xulrunner-dev | 17.0.10esr-1~deb7u1 | - +- amd64 | xutils-dev | 1:7.7~1 | - +- amd64 | xvfb | 2:1.12.4-6+deb7u2 | - +- amd64 | xvier | 1.0-7.5 | - +- amd64 | xview-clients | 3.2p1.4-28.1 | - +- amd64 | xview-examples | 3.2p1.4-28.1 | - +- amd64 | xviewg | 3.2p1.4-28.1 | - +- amd64 | xviewg-dev | 3.2p1.4-28.1 | - +- amd64 | xvile | 9.8g-2 | - +- amd64 | xvkbd | 3.0-1 | - +- amd64 | xvnc4viewer | 4.1.1+X4.3.0-37.1 | - +- amd64 | xvt | 2.1-20.1 | - +- amd64 | xwatch | 2.11-15 | - +- amd64 | xwax | 0.9-2 | - +- amd64 | xwelltris | 1.0.1-14 | - +- amd64 | xwit | 3.4-14 | - +- amd64 | xwpe | 1.5.30a-2.1 | - +- amd64 | xwrits | 2.21-6.1 | - +- amd64 | xxgdb | 1.12-17 | - +- amd64 | xxkb | 1.11-2.1 | - +- amd64 | xxxterm | 1:1.11.3-1 | - +- amd64 | xye | 0.12.1+dfsg-4 | - +- amd64 | xymon | 4.3.0~beta2.dfsg-9.1 | - +- amd64 | xymon-client | 4.3.0~beta2.dfsg-9.1 | - +- amd64 | xyscan | 3.31-3 | - +- amd64 | xz-utils | 5.1.1alpha+20120614-2 | - +- amd64 | xzdec | 5.1.1alpha+20120614-2 | - +- amd64 | xzgv | 0.9+svn40-1 | - +- amd64 | xzip | 1:1.8.2-3 | - +- amd64 | xzoom | 0.3-23 | - +- amd64 | yabause-gtk | 0.9.11.1-1 | - +- amd64 | yabause-qt | 0.9.11.1-1 | - +- amd64 | yacas | 1.3.2-1 | - +- amd64 | yacpi | 3.0-2 | - +! amd64 | yade | 0.80.1-2 | 1.05.0-2~bpo70+1 +- amd64 | yafaray | 0.1.2+really0.1.2~beta5-2 | - +- amd64 | yafc | 1.1.3-2 | - +! amd64 | yagf | 0.9.1-3 | 0.9.2.1-1~bpo70+1 +- amd64 | yagiuda | 1.19-8 | - +- amd64 | yajl-tools | 2.0.4-2 | - +- amd64 | yakuake | 2.9.8-1 | - +- amd64 | yamdi | 1.4-2 | - +- amd64 | yap | 5.1.3-6 | - +- amd64 | yapet | 0.8~pre2-2 | - ++ amd64 | yara | - | 2.0.0-2~bpo70+1 +- amd64 | yardradius | 1.1.2-4 | - +- amd64 | yash | 2.30-2 | - +- amd64 | yaskkserv | 0.5.2-3 | - +- amd64 | yasm | 1.1.0-1 | - +- amd64 | yasnippet | 0.6.1c-1 | - +- amd64 | yasr | 0.6.9-3 | - +- amd64 | yate | 4.1.0-1~dfsg-3 | - +- amd64 | yate-alsa | 4.1.0-1~dfsg-3 | - +- amd64 | yate-core | 4.1.0-1~dfsg-3 | - +- amd64 | yate-dahdi | 4.1.0-1~dfsg-3 | - +- amd64 | yate-dev | 4.1.0-1~dfsg-3 | - +- amd64 | yate-mysql | 4.1.0-1~dfsg-3 | - +- amd64 | yate-pgsql | 4.1.0-1~dfsg-3 | - +- amd64 | yate-qt4 | 4.1.0-1~dfsg-3 | - +- amd64 | yate-scripts | 4.1.0-1~dfsg-3 | - +- amd64 | yate-sctp | 4.1.0-1~dfsg-3 | - +- amd64 | yatm | 0.6-1+b2 | - +- amd64 | yauap | 0.2.4-3 | - +- amd64 | yauap-dbg | 0.2.4-3 | - +- amd64 | yaz | 4.2.30-2 | - +- amd64 | yaz-icu | 4.2.30-2 | - +- amd64 | yaz-illclient | 4.2.30-2 | - +- amd64 | yc-el | 5.0.0-1 | - +- amd64 | yeahconsole | 0.3.4-2.1 | - +- amd64 | yelp | 3.4.2-1+b1 | - +- amd64 | yersinia | 0.7.1-1.1 | - +- amd64 | yesod | 1.0.1.6-2+b2 | - +- amd64 | ygraph | 0.16~cvs20090218-1.1+b1 | - +- amd64 | yics | 0.1.2-3 | - +- amd64 | yiyantang | 0.7.0-3.1 | - +- amd64 | yodl | 3.00.0-6 | - +- amd64 | yorick | 2.2.02+dfsg-6 | - +- amd64 | yorick-av | 0.0.1-2 | - +- amd64 | yorick-curses | 0.1-6 | - +- amd64 | yorick-dbg | 2.2.02+dfsg-6 | - +- amd64 | yorick-dev | 2.2.02+dfsg-6 | - +- amd64 | yorick-full | 2.2.02+dfsg-6 | - +- amd64 | yorick-gl | 1.1+cvs20070922+dfsg-6 | - ++ amd64 | yorick-gy | - | 0.0.5-1~bpo70+1 +! amd64 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +- amd64 | yorick-hdf5 | 0.8.0-4 | - +- amd64 | yorick-imutil | 0.5.7-3 | - +- amd64 | yorick-ml4 | 0.6.0-3 | - +- amd64 | yorick-mpeg | 0.1-2 | - +- amd64 | yorick-mpy-mpich2 | 2.2.02+dfsg-6 | - +- amd64 | yorick-mpy-openmpi | 2.2.02+dfsg-6 | - +- amd64 | yorick-optimpack | 1.3.2+dfsg-1 | - +- amd64 | yorick-soy | 1.4.0-3 | - +- amd64 | yorick-svipc | 0.14-2 | - +- amd64 | yorick-yao | 4.9.1-2 | - +- amd64 | yorick-yeti | 6.3.2-3 | - +- amd64 | yorick-yeti-fftw | 6.3.2-3 | - +- amd64 | yorick-yeti-gsl | 6.3.2-3 | - +- amd64 | yorick-yeti-regex | 6.3.2-3 | - +- amd64 | yorick-yeti-tiff | 6.3.2-3 | - ++ amd64 | yorick-ygsl | - | 1.1.1-1~bpo70+1 +- amd64 | yorick-z | 1.2.0+cvs20080115-5 | - +- amd64 | yoshimi | 0.060.12-2 | - +- amd64 | yoshimi-dbg | 0.060.12-2 | - +- amd64 | ytalk | 3.3.0-5 | - +- amd64 | ytree | 1.94-1.1 | - +- amd64 | yubikey-personalization | 1.7.0-1 | - +- amd64 | yubikey-personalization-gui | 3.0.6-1 | - +- amd64 | yubikey-server-c | 0.5-1+b1 | - +- amd64 | yubiserver | 0.2-2 | - +- amd64 | yudit | 2.8.1-4 | - +- amd64 | z80asm | 1.8-1 | - +- amd64 | z80dasm | 1.1.3-1 | - +- amd64 | z8530-utils2 | 3.0-1-6.1 | - +- amd64 | z88 | 13.0.0+dfsg2-3 | - +- amd64 | z88dk | 1.8.ds1-10 | - +- amd64 | z88dk-bin | 1.8.ds1-10 | - ++ amd64 | zabbix-agent | - | 1:2.0.9+dfsg-1~bpo70+2 ++ amd64 | zabbix-proxy-mysql | - | 1:2.0.9+dfsg-1~bpo70+2 ++ amd64 | zabbix-proxy-pgsql | - | 1:2.0.9+dfsg-1~bpo70+2 ++ amd64 | zabbix-proxy-sqlite3 | - | 1:2.0.9+dfsg-1~bpo70+2 ++ amd64 | zabbix-server-mysql | - | 1:2.0.9+dfsg-1~bpo70+2 ++ amd64 | zabbix-server-pgsql | - | 1:2.0.9+dfsg-1~bpo70+2 +- amd64 | zanshin | 0.2.1-1+b1 | - +- amd64 | zapping | 0.10~cvs6-8 | - +- amd64 | zapping-dbg | 0.10~cvs6-8 | - +- amd64 | zatacka | 0.1.8-2 | - +- amd64 | zathura | 0.1.2-4 | - +- amd64 | zathura-djvu | 0.1-1 | - +- amd64 | zathura-ps | 0.1-1 | - +- amd64 | zaz | 1.0.0~dfsg1-1 | - +- amd64 | zaz-dbg | 1.0.0~dfsg1-1 | - +- amd64 | zbar-dbg | 0.10+doc-8 | - +- amd64 | zbar-tools | 0.10+doc-8 | - +- amd64 | zeitgeist-core | 0.9.0.1-1 | - +- amd64 | zeitgeist-datahub | 0.8.2-1 | - +- amd64 | zenity | 3.4.0-2 | - +- amd64 | zenmap | 6.00-0.3+deb7u1 | - +- amd64 | zephyr-clients | 3.0.2-2 | - +- amd64 | zephyr-server | 3.0.2-2 | - +- amd64 | zephyr-server-krb5 | 3.0.2-2 | - +- amd64 | zerofree | 1.0.2-1 | - +- amd64 | zfs-fuse | 0.7.0-8 | - +- amd64 | zftp | 20061220+dfsg3-2 | - +- amd64 | zgv | 5.9-4+b1 | - +- amd64 | zh-autoconvert | 0.3.16-3 | - +- amd64 | zhcon | 1:0.2.6-10 | - +- amd64 | zile | 2.3.21-1 | - +- amd64 | zimpl | 3.2.0+dfsg-2 | - +- amd64 | zinnia-utils | 0.06-1+b1 | - +- amd64 | zip | 3.0-6 | - +- amd64 | zipcmp | 0.10.1-1.1 | - +- amd64 | zipmerge | 0.10.1-1.1 | - +- amd64 | zipper.app | 1.3-2.1 | - +- amd64 | ziproxy | 3.2.0-2 | - +- amd64 | ziptorrent | 0.10.1-1.1 | - +- amd64 | zita-ajbridge | 0.2.2-1 | - +- amd64 | zita-alsa-pcmi-utils | 0.2.0-1 | - +- amd64 | zita-at1 | 0.2.3-2 | - +- amd64 | zita-lrx | 0.1.0-1 | - +- amd64 | zita-resampler | 1.1.0-3 | - +- amd64 | zita-resampler-dbg | 1.1.0-3 | - +- amd64 | zita-rev1 | 0.2.1-2 | - +- amd64 | zivot | 20013101-3+b1 | - +- amd64 | zlib-bin | 1:1.2.7.dfsg-13 | - +- amd64 | zlib-gst | 3.2.4-2 | - +- amd64 | zlib1g | 1:1.2.7.dfsg-13 | - +- amd64 | zlib1g-dbg | 1:1.2.7.dfsg-13 | - +- amd64 | zlib1g-dev | 1:1.2.7.dfsg-13 | - +- amd64 | zlibc | 0.9k-4.1 | - +- amd64 | zmakebas | 1.2-1.1 | - +- amd64 | znc | 0.206-2 | - +- amd64 | znc-dbg | 0.206-2 | - +- amd64 | znc-dev | 0.206-2 | - +- amd64 | znc-extra | 0.206-2 | - +- amd64 | znc-perl | 0.206-2 | - +- amd64 | znc-python | 0.206-2 | - +- amd64 | znc-tcl | 0.206-2 | - +- amd64 | zoem | 11-166-1 | - +- amd64 | zomg | 0.5.14-2 | - +- amd64 | zoneminder | 1.25.0-4 | - +- amd64 | zoo | 2.10-27 | - +- amd64 | zookeeper-bin | 3.3.5+dfsg1-2 | - +- amd64 | zope2.12 | 2.12.26-1 | - +- amd64 | zorp | 3.9.5-4 | - +- amd64 | zorp-dbg | 3.9.5-4 | - +- amd64 | zorp-modules | 3.9.5-4 | - +- amd64 | zorp-modules-dbg | 3.9.5-4 | - +- amd64 | zp | 1.0-1 | - +- amd64 | zpaq | 1.10-1 | - +- amd64 | zpspell | 0.4.3-4.1 | - +- amd64 | zsh | 4.3.17-1 | - +- amd64 | zsh-beta | 4.3.17-dev-0+20120621-1 | - +- amd64 | zsh-dbg | 4.3.17-1 | - +- amd64 | zsh-dev | 4.3.17-1 | - +- amd64 | zsh-static | 4.3.17-1 | - +- amd64 | zssh | 1.5c.debian.1-3.1 | - +- amd64 | zsync | 0.6.2-1 | - +- amd64 | zutils | 0.9-6 | - +- amd64 | zutils-dbg | 0.9-6 | - +- amd64 | zvbi | 0.2.33-6 | - +- amd64 | zynadd | 1+git.20100609+dfsg0-2 | - +- amd64 | zynaddsubfx | 2.4.0-2 | - +- amd64 | zynjacku | 6-4 | - +- amd64 | zziplib-bin | 0.13.56-1.1 | - +- amd64 | zzuf | 0.13.svn20100215-4 | - +! i386 | 0ad | 0~r11863-2 | 0.0.14-3~bpo70+2 +! i386 | 0ad-dbg | 0~r11863-2 | 0.0.14-3~bpo70+2 +- i386 | 3dchess | 0.8.1-17 | - +- i386 | 3depict | 0.0.10-1 | - +- i386 | 4digits | 1.1.2-1 | - +- i386 | 4g8 | 1.0-3 | - +- i386 | 4store | 1.1.4-2 | - +- i386 | 6tunnel | 0.11rc2-7 | - +- i386 | 7kaa | 2.14.3-1 | - +- i386 | 7kaa-dbg | 2.14.3-1 | - +- i386 | 9base | 1:6-5 | - +- i386 | 9menu | 1.8-5 | - +- i386 | 9wm | 1.2-9 | - +- i386 | a2jmidid | 7+dfsg0-1 | - +- i386 | a2ps | 1:4.14-1.1 | - +- i386 | a56 | 1.3-6 | - +- i386 | a7xpg | 0.11.dfsg1-7 | - +- i386 | aa3d | 1.0-8 | - +- i386 | aajm | 0.4-6 | - +- i386 | aaphoto | 0.41-1.1 | - +- i386 | abcm2ps | 6.6.17-1 | - +- i386 | abcmidi | 20070318-2 | - +- i386 | abcmidi-yaps | 20070318-2 | - +- i386 | abe | 1.1+dfsg-1 | - +- i386 | abgate | 1.1.6-1 | - +- i386 | abinit | 5.3.4.dfsg-3 | - +- i386 | abiword | 2.9.2+svn20120603-8 | - +- i386 | abiword-dbg | 2.9.2+svn20120603-8 | - +- i386 | abiword-plugin-grammar | 2.9.2+svn20120603-8 | - +- i386 | abiword-plugin-mathview | 2.9.2+svn20120603-8 | - +- i386 | abook | 0.6.0~pre2-3 | - +- i386 | abootimg | 0.6-1 | - +- i386 | abr2gbr | 1:1.0.2-2 | - +- i386 | abraca | 0.7.0-1 | - +- i386 | abtransfers | 0.0.3.0-2 | - +- i386 | accountsservice | 0.6.21-8 | - +- i386 | acct | 6.5.5-1 | - +- i386 | ace-gperf | 6.0.3+dfsg-0.1 | - +- i386 | ace-netsvcs | 6.0.3+dfsg-0.1 | - +- i386 | ace-of-penguins | 1.3-8 | - +- i386 | acedb-other | 4.9.39+dfsg.01-5 | - +- i386 | acedb-other-belvu | 4.9.39+dfsg.01-5 | - +- i386 | acedb-other-dotter | 4.9.39+dfsg.01-5 | - +- i386 | aces3 | 3.0.6-7 | - +- i386 | acetoneiso | 2.3-2 | - +- i386 | acfax | 981011-14.1 | - +- i386 | achilles | 2-8 | - +- i386 | ack | 1.39-12 | - +- i386 | acl | 2.2.51-8 | - +- i386 | acl2 | 4.3-3 | - +- i386 | acl2-books | 4.3-3 | - +- i386 | acl2-infix | 4.3-3 | - +- i386 | aclock.app | 0.2.3-4.3 | - +- i386 | acm | 5.0-28 | - +- i386 | aconnectgui | 0.9.0rc2-1-9 | - +- i386 | acorn-fdisk | 3.0.6-8 | - +- i386 | acoustid-fingerprinter | 0.4-2 | - +- i386 | acpi | 1.6-1 | - +- i386 | acpi-fakekey | 0.140-5 | - +- i386 | acpid | 1:2.0.16-1+deb7u1 | - +- i386 | acpidump | 20100513-3.1 | - +- i386 | acpitail | 0.1-4 | - +- i386 | acpitool | 0.5.1-3 | - +- i386 | acpitool-dbg | 0.5.1-3 | - +- i386 | actionaz | 3.4.2-1 | - +- i386 | adabrowse | 4.0.3-5 | - +- i386 | adacgi1 | 1.6-17 | - +- i386 | adacontrol | 1.12r4-3 | - +- i386 | addresses-goodies-for-gnustep | 0.4.7-1+b5 | - +- i386 | addressmanager.app | 0.4.7-1+b5 | - +- i386 | adjtimex | 1.29-2.2 | - +- i386 | admesh | 0.95-12 | - +- i386 | adns-tools | 1.4-2 | - +- i386 | adonthell | 0.3.5-7.1 | - +- i386 | adplay | 1.6-1.1 | - +- i386 | adplug-utils | 2.2.1+dfsg3-0.1 | - +- i386 | adun.app | 0.81-5+b2 | - +- i386 | advancecomp | 1.15-1 | - +- i386 | advi | 1.10.2-1 | - +- i386 | aegis | 4.24.3-3 | - +- i386 | aegis-web | 4.24.3-3 | - +- i386 | aegisub | 2.1.9-1 | - +- i386 | aeolus | 0.8.4-6 | - +- i386 | aes2501-wy | 0.1-5 | - +- i386 | aesfix | 1.0.1-2 | - +- i386 | aeskeyfind | 1:1.0-1 | - +- i386 | aeskulap | 0.2.2b1-11 | - +- i386 | aespipe | 2.4c-1 | - +- i386 | aewan | 1.0.01-3 | - +- i386 | aewm | 1.3.12-2.1 | - +- i386 | aewm++ | 1.1.2-5 | - +- i386 | aewm++-goodies | 1.0-9 | - +- i386 | affiche.app | 0.6.0-8+b2 | - +- i386 | afflib-dbg | 3.6.6-1.1+b1 | - +- i386 | afflib-tools | 3.6.6-1.1+b1 | - +- i386 | afnix | 2.2.0-2 | - +- i386 | afterstep | 2.2.11-7 | - +- i386 | afterstep-dbg | 2.2.11-7 | - +- i386 | afuse | 0.2-3+b1 | - +- i386 | agave | 0.4.7-2.1+b1 | - +- i386 | agda-bin | 2.3.0.1-1 | - +- i386 | agedu | 8928-1 | - +- i386 | agenda.app | 0.42.2-1 | - +- i386 | aggregate | 1.6-7 | - +- i386 | aghermann | 0.6.0.1-1 | - +- i386 | aha | 0.4.4-1 | - +- i386 | ahcpd | 0.53-1 | - +- i386 | ahven-dbg | 2.1-4 | - +- i386 | aiccu | 20070115-15.1 | - +- i386 | aide | 0.15.1-8 | - +- i386 | aide-dynamic | 0.15.1-8 | - +- i386 | aide-xen | 0.15.1-8 | - +- i386 | aiksaurus | 1.2.1+dev-0.12-6.1 | - ++ i386 | aircrack-ng | - | 1:1.1-6~bpo70+1 +- i386 | airstrike | 0.99+1.0pre6a-5 | - +- i386 | aisleriot | 1:3.4.1-1 | - +- i386 | aj-snapshot | 0.9.6-1 | - +- i386 | akonadi-backend-sqlite | 1.7.2-3 | - +- i386 | akonadi-dbg | 1.7.2-3 | - +- i386 | akonadi-kde-resource-googledata | 1.2.0-1+b2 | - +- i386 | akonadi-server | 1.7.2-3 | - +- i386 | akonadiconsole | 4:4.4.11.1+l10n-3+b1 | - +- i386 | akregator | 4:4.4.11.1+l10n-3+b1 | - +- i386 | alarm-clock | 1.2.5-1.2 | - +- i386 | alarm-clock-applet | 0.3.3-1 | - +- i386 | aldo | 0.7.6-1 | - +- i386 | ale | 0.9.0.3-1.1 | - +- i386 | alevt | 1:1.6.2-5 | - +- i386 | alevtd | 3.102-3 | - +- i386 | alex | 3.0.1-1 | - +- i386 | alex4 | 1.1-5+b1 | - ++ i386 | algobox | - | 0.8+dfsg-2~bpo70+1 +- i386 | algol68g | 2.4.1-1 | - +- i386 | alienblaster | 1.1.0-7 | - +- i386 | aliki | 0.1.0-1 | - +- i386 | aliki-dbg | 0.1.0-1 | - +- i386 | alleyoop | 0.9.8-1 | - +- i386 | alliance | 5.0-20120515-1 | - +- i386 | alltray | 0.71b-1 | - +- i386 | almanah | 0.9.1-1 | - +- i386 | alpine | 2.02+dfsg-2 | - +- i386 | alpine-dbg | 2.02+dfsg-2 | - +- i386 | alpine-pico | 2.02+dfsg-2 | - +- i386 | alsa-oss | 1.0.25-1 | - +- i386 | alsa-tools | 1.0.25-2 | - +- i386 | alsa-tools-gui | 1.0.25-2 | - +- i386 | alsa-utils | 1.0.25-4 | - +- i386 | alsamixergui | 0.9.0rc2-1-9.1 | - +- i386 | alsaplayer-alsa | 0.99.80-5.1 | - +- i386 | alsaplayer-common | 0.99.80-5.1 | - +- i386 | alsaplayer-daemon | 0.99.80-5.1 | - +- i386 | alsaplayer-esd | 0.99.80-5.1 | - +- i386 | alsaplayer-gtk | 0.99.80-5.1 | - +- i386 | alsaplayer-jack | 0.99.80-5.1 | - +- i386 | alsaplayer-nas | 0.99.80-5.1 | - +- i386 | alsaplayer-oss | 0.99.80-5.1 | - +- i386 | alsaplayer-text | 0.99.80-5.1 | - +- i386 | alsaplayer-xosd | 0.99.80-5.1 | - +- i386 | alsoft-conf | 1.4.3-1 | - +- i386 | alt-ergo | 0.94-2 | - +- i386 | alt-key | 2.2.5-1 | - +- i386 | altermime | 0.3.10-7 | - +- i386 | altree | 1.2.1-1 | - +- i386 | alure-utils | 1.2-6 | - +- i386 | am-utils | 6.2+rc20110530-3 | - +- i386 | amanda-client | 1:3.3.1-4 | - +- i386 | amanda-common | 1:3.3.1-4 | - +- i386 | amanda-server | 1:3.3.1-4 | - +- i386 | amap-align | 2.2-3 | - +! i386 | amarok | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amarok-dbg | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amarok-utils | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +- i386 | amavisd-milter | 1.5.0-5 | - +- i386 | amavisd-milter-dbg | 1.5.0-5 | - +- i386 | amb-plugins | 0.8.1-3 | - +- i386 | ambdec | 0.5.1-2 | - ++ i386 | amd-clinfo | - | 1:13.12-4~bpo70+1 ++ i386 | amd-libopencl1 | - | 1:13.12-4~bpo70+1 ++ i386 | amd-opencl-dev | - | 1:13.12-4~bpo70+1 ++ i386 | amd-opencl-icd | - | 1:13.12-4~bpo70+1 ++ i386 | amd-opencl-icd-legacy | - | 8.97.100.7-3~bpo70+1 ++ i386 | amd64-microcode | - | 2.20120910-1~bpo70+1 +- i386 | amide | 1.0.1-1 | - +- i386 | amideco | 0.31e-3.1 | - +- i386 | amiga-fdisk-cross | 0.04-14 | - +- i386 | amoebax | 0.2.1+dfsg-1 | - +- i386 | amor | 4:4.8.4-1 | - +- i386 | amora-applet | 1.2~svn699-1 | - +- i386 | amora-cli | 1.2~svn699-1 | - +- i386 | amphetamine | 0.8.10-18 | - +- i386 | ample | 0.5.7-7 | - +- i386 | ampliconnoise | 1.25-1 | - +- i386 | amqp-tools | 0.0.1.hg216-1 | - +- i386 | ams | 2.0.1-5 | - +- i386 | amsynth | 1.3.0-2 | - +- i386 | amtterm | 1.3-1 | - +- i386 | amule | 2.3.1-9 | - +- i386 | amule-daemon | 2.3.1-9 | - +- i386 | amule-emc | 0.5.2-2 | - +- i386 | amule-utils | 2.3.1-9 | - +- i386 | amule-utils-gui | 2.3.1-9 | - +- i386 | an | 1.0-2 | - +- i386 | anacron | 2.3-19 | - +- i386 | analog | 2:6.0-19.1 | - +- i386 | and | 1.2.2-4.1 | - ++ i386 | android-tools-adb | - | 4.2.2+git20130529-3~bpo70+1 ++ i386 | android-tools-fastboot | - | 4.2.2+git20130529-3~bpo70+1 ++ i386 | android-tools-fsutils | - | 4.2.2+git20130529-3~bpo70+1 +- i386 | angband | 1:3.3.2-2.1 | - +- i386 | animals | 201007161925-8 | - +- i386 | animals-dbg | 201007161925-8 | - +- i386 | anjuta | 2:3.4.3-1 | - +- i386 | anjuta-dbg | 2:3.4.3-1 | - +- i386 | anjuta-extras | 3.4.0-1 | - +- i386 | ann-tools | 1.1.2+doc-3 | - +- i386 | anon-proxy | 00.05.38+20081230-2.1 | - +- i386 | ant-gcj | 1.8.2-4 | - +- i386 | ant-optional-gcj | 1.8.2-4 | - +- i386 | ant-phone | 0.2.1-2 | - +- i386 | antennavis | 0.3.1-2 | - +- i386 | anthy | 9100h-16 | - +- i386 | antigravitaattori | 0.0.3-5 | - +- i386 | antiword | 0.37-8 | - +- i386 | ants | 1.9.2+svn680.dfsg-4 | - +- i386 | anubis | 4.1.1+dfsg1-3.1 | - +- i386 | anypaper | 1.4-1 | - +- i386 | anyremote | 6.0+dfsg-1 | - +- i386 | anytun | 0.3.4-2 | - +- i386 | aoetools | 30-3 | - +- i386 | aoeui | 1.6~dfsg-2 | - +- i386 | aolserver4-core | 4.5.1-15.1 | - +- i386 | aolserver4-daemon | 4.5.1-15.1 | - +- i386 | aolserver4-dev | 4.5.1-15.1 | - +- i386 | aolserver4-nsldap | 0.8-4+b1 | - +- i386 | aolserver4-nsmysql | 0.6-9+b3 | - +- i386 | aolserver4-nsopenssl | 3.0beta26-4+b1 | - +- i386 | aolserver4-nspostgres | 4.5-3+b1 | - +- i386 | aolserver4-nssha1 | 0.1-3+b1 | - +- i386 | aolserver4-nssqlite3 | 0.9-2+b1 | - +- i386 | aolserver4-nsxml | 1.5-2.1 | - +- i386 | aosd-cat | 0.2.7-1 | - +- i386 | ap-utils | 1.5-2 | - +- i386 | apache2 | 2.2.22-13+deb7u1 | - +- i386 | apache2-dbg | 2.2.22-13+deb7u1 | - +- i386 | apache2-mpm-event | 2.2.22-13+deb7u1 | - +- i386 | apache2-mpm-itk | 2.2.22-13+deb7u1 | - +- i386 | apache2-mpm-prefork | 2.2.22-13+deb7u1 | - +- i386 | apache2-mpm-worker | 2.2.22-13+deb7u1 | - +- i386 | apache2-prefork-dev | 2.2.22-13+deb7u1 | - +- i386 | apache2-suexec | 2.2.22-13+deb7u1 | - +- i386 | apache2-suexec-custom | 2.2.22-13+deb7u1 | - +- i386 | apache2-threaded-dev | 2.2.22-13+deb7u1 | - +- i386 | apache2-utils | 2.2.22-13+deb7u1 | - +- i386 | apache2.2-bin | 2.2.22-13+deb7u1 | - +- i386 | apache2.2-common | 2.2.22-13+deb7u1 | - +- i386 | apachetop | 0.12.6-16 | - +- i386 | apbs | 1.3.0-2 | - +- i386 | apcalc | 2.12.4.4-3 | - +- i386 | apcalc-dev | 2.12.4.4-3 | - +- i386 | apcupsd | 3.14.10-2 | - +- i386 | apcupsd-cgi | 3.14.10-2 | - +- i386 | apertium | 3.1.0-2 | - +- i386 | apertium-dbus | 0.1-1.1 | - +- i386 | apertium-en-ca | 0.8.9-1+b1 | - +- i386 | apertium-en-es | 0.6.0-1.1+b1 | - +- i386 | apertium-eo-ca | 0.9.0-1.1+b1 | - +- i386 | apertium-eo-es | 0.9.0-1.1+b1 | - +- i386 | apertium-es-ca | 1.1.0-1 | - +- i386 | apertium-es-gl | 1.0.7-1 | - +- i386 | apertium-es-pt | 1.0.3-2.1 | - +- i386 | apertium-es-ro | 0.7.1-2.1 | - +- i386 | apertium-eu-es | 0.3.1-1+b1 | - +- i386 | apertium-fr-ca | 1.0.2-1 | - +- i386 | apertium-fr-es | 0.9.0-1+b1 | - +- i386 | apertium-oc-ca | 1.0.5-1.1+b1 | - +- i386 | apertium-oc-es | 1.0.5-1.1+b1 | - +- i386 | apertium-pt-ca | 0.8.1-1 | - +- i386 | apertium-pt-gl | 0.9.1-1 | - +- i386 | apertium-tolk | 0.2-2.2 | - +- i386 | apf-client | 0.8.4-1+b1 | - +- i386 | apf-server | 0.8.4-1+b1 | - +- i386 | apg | 2.2.3.dfsg.1-2 | - +- i386 | aplus-fsf | 4.22.1-6 | - +- i386 | aplus-fsf-dev | 4.22.1-6 | - +- i386 | apmd | 3.2.2-14 | - +- i386 | apng2gif | 1.5-1 | - +- i386 | apparix | 07-261-1 | - +- i386 | apparmor | 2.7.103-4 | - +- i386 | apparmor-utils | 2.7.103-4 | - +- i386 | apper | 0.7.2-5 | - +- i386 | apper-appsetup | 0.7.2-5 | - +- i386 | apper-dbg | 0.7.2-5 | - +- i386 | appmenu-qt | 0.2.6-1 | - +- i386 | approx | 5.3-1 | - +- i386 | aprsd | 1:2.2.5-13-5.2 | - +- i386 | aprsdigi | 2.4.4-3.2 | - +- i386 | apt | 0.9.7.9+deb7u1 | - +- i386 | apt-build | 0.12.44 | - +! i386 | apt-cacher-ng | 0.7.11-1 | 0.7.25-1~bpo70+1 +- i386 | apt-cudf | 3.0.2-3 | - +- i386 | apt-dater | 0.9.0-3+wheezy1 | - +- i386 | apt-dater-dbg | 0.9.0-3+wheezy1 | - +- i386 | apt-move | 4.2.27-3 | - +- i386 | apt-spy | 3.2.2-1 | - +- i386 | apt-transport-debtorrent | 0.2.2+b1 | - +- i386 | apt-transport-https | 0.9.7.9+deb7u1 | - +- i386 | apt-utils | 0.9.7.9+deb7u1 | - +- i386 | apt-watch-backend | 0.4.0-2.1 | - +- i386 | apt-watch-gnome | 0.4.0-2.1 | - +- i386 | aptitude | 0.6.8.2-1 | - +- i386 | aptitude-dbg | 0.6.8.2-1 | - +- i386 | aptsh | 0.0.7+nmu2+b1 | - +- i386 | apvlv | 0.1.1-1.2+b1 | - +- i386 | apwal | 0.4.5-1 | - +! i386 | aqbanking-tools | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +- i386 | aqemu | 0.8.2-2 | - +- i386 | aqsis | 1.8.1-3 | - +- i386 | aqualung | 0.9~beta11-1.2+b1 | - +- i386 | ara | 1.0.31 | - +- i386 | aranym | 0.9.13-6 | - +- i386 | arbtt | 0.6.2-1 | - +- i386 | arc | 5.21p-1 | - +- i386 | archivemount | 0.6.1-2+b1 | - +- i386 | ardesia | 1.0-2 | - +- i386 | ardour | 1:2.8.14-2 | - +- i386 | ardour-i686 | 1:2.8.14-2 | - +- i386 | argus-client | 2.0.6.fixes.1-3 | - +- i386 | argus-server | 1:2.0.6.fixes.1-16.3 | - +- i386 | argyll | 1.4.0-8 | - +- i386 | argyll-dbg | 1.4.0-8 | - +- i386 | aria2 | 1.15.1-1 | - +- i386 | aribas | 1.64-5 | - +- i386 | ario | 1.5.1-1+b1 | - +- i386 | arj | 3.10.22-10 | - +- i386 | ark | 4:4.8.4-2 | - +- i386 | ark-dbg | 4:4.8.4-2 | - +- i386 | armada-backlight | 1.1-6 | - +- i386 | armagetronad | 0.2.8.3.2-1 | - +- i386 | armagetronad-dedicated | 0.2.8.3.2-1 | - +- i386 | arora | 0.11.0-1 | - +- i386 | arp-scan | 1.8.1-2 | - +- i386 | arpalert | 2.0.11-7.1 | - +- i386 | arping | 2.11-1 | - +- i386 | arpon | 2.0-2.1 | - +- i386 | arptables | 0.0.3.4-1 | - +- i386 | arpwatch | 2.1a15-1.2 | - +- i386 | array-info | 0.15-1 | - +- i386 | artha | 1.0.2-1 | - +- i386 | as31 | 2.3.1-6 | - +- i386 | asc | 2.4.0.0-3 | - +- i386 | ascd | 0.13.2-5 | - +- i386 | ascdc | 0.3-14 | - +- i386 | ascii | 3.11-1 | - +- i386 | ascii2binary | 2.14-1 | - +- i386 | asciijump | 1.0.2~beta-6 | - +- i386 | asclock | 2.0.12-23 | - +- i386 | asis-programs | 2010-5 | - +- i386 | asmail | 2.1-3 | - +- i386 | asmix | 1.5-4.1 | - +- i386 | asmixer | 0.5-14 | - +- i386 | asmon | 0.71-5 | - +- i386 | asp | 1.8-8 | - +- i386 | aspcud | 2011.03.17.dfsg-6 | - +- i386 | aspectc++ | 1:1.1+svn20120529-2 | - +- i386 | aspell | 0.60.7~20110707-1 | - +- i386 | aspell-da | 1.6.25-1.1 | - +- i386 | aspell-fi | 0.7-18 | - +- i386 | aspell-no | 2.0.10-5.1 | - +- i386 | aspic | 1.05-4 | - +- i386 | assimp-utils | 3.0~dfsg-1 | - +- i386 | assogiate | 0.2.1-5 | - +! i386 | asterisk | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-dahdi | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-dbg | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +- i386 | asterisk-espeak | 2.1-1+b1 | - +- i386 | asterisk-flite | 2.1-1.1 | - +! i386 | asterisk-mobile | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-modules | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mp3 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mysql | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-ooh323 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail-imapstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail-odbcstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 ++ i386 | asterisk-vpb | - | 1:11.7.0~dfsg-1~bpo70+1 ++ i386 | astromenace | - | 1.3.2+repack-3~bpo70+1 +- i386 | astronomical-almanac | 5.6-4 | - +- i386 | astyle | 2.01-1 | - +- i386 | asunder | 2.2-1 | - +- i386 | asylum | 0.3.2-1 | - +- i386 | asymptote | 2.15-2 | - +- i386 | at | 3.1.13-2 | - +- i386 | at-spi | 1.32.0-2 | - +- i386 | at-spi2-core | 2.5.3-2 | - +- i386 | at-spi2-core-dbg | 2.5.3-2 | - +- i386 | atanks | 5.5+dfsg-0.1 | - +- i386 | aterm | 1.0.1-8 | - +- i386 | aterm-ml | 1.0.1-8 | - +- i386 | atfs | 1.4pl6-11 | - +- i386 | atfs-dev | 1.4pl6-11 | - +- i386 | atftp | 0.7.dfsg-11 | - +- i386 | atftpd | 0.7.dfsg-11 | - +- i386 | athcool | 0.3.12-3 | - +- i386 | athena-jot | 9.0-5 | - +- i386 | atitvout | 0.4-13 | - +- i386 | atlc | 4.6.1-1 | - +- i386 | atm-tools | 1:2.5.1-1.5 | - +- i386 | atom4 | 4.1-5.1 | - +- i386 | atomicparsley | 0.9.2~svn110-4 | - +- i386 | atomix | 2.14.0-2 | - +- i386 | atop | 1.26-2 | - +- i386 | atp | 1.2-11 | - +- i386 | atris | 1.0.7.dfsg.1-8 | - +- i386 | ats-lang-anairiats | 0.2.3-1+b3 | - +- i386 | atsar | 1.7-2 | - +- i386 | attal | 1.0~rc2-2 | - +- i386 | attr | 1:2.4.46-8 | - +- i386 | aubio-tools | 0.3.2-4.2+b1 | - +- i386 | audacious | 3.2.4-1 | - +- i386 | audacious-dbg | 3.2.4-1 | - +- i386 | audacious-dev | 3.2.4-1 | - +- i386 | audacious-dumb | 0.80-1 | - +- i386 | audacious-plugins | 3.2.4-1 | - +- i386 | audacious-plugins-dbg | 3.2.4-1 | - +- i386 | audacity | 2.0.1-1 | - +- i386 | audacity-dbg | 2.0.1-1 | - +- i386 | audex | 0.74~b1-1.1 | - +- i386 | audiofile-tools | 0.3.4-2 | - +- i386 | audiopreview | 0.6-2 | - +- i386 | audispd-plugins | 1:1.7.18-1.1 | - +- i386 | auditd | 1:1.7.18-1.1 | - +- i386 | audtty | 0.1.12-3 | - +- i386 | aufs-tools | 1:3.0+20120411-2 | - +- i386 | aufs-tools-dbg | 1:3.0+20120411-2 | - +- i386 | augeas-dbg | 0.10.0-1 | - +- i386 | augeas-tools | 0.10.0-1 | - +- i386 | aumix | 2.9.1-2 | - +- i386 | aumix-gtk | 2.9.1-2 | - +- i386 | auralquiz | 0.8.1-1 | - +- i386 | authbind | 2.1.1 | - +- i386 | auto-apt | 0.3.22 | - +- i386 | auto-multiple-choice | 1.1.1-2 | - +- i386 | autoclass | 3.3.6.dfsg.1-1 | - +- i386 | autocutsel | 0.9.0-2 | - +- i386 | autodir | 0.99.9-7.1 | - +- i386 | autodock | 4.2.3-2 | - +- i386 | autodock-vina | 1.1.2-2+b1 | - +- i386 | autofs | 5.0.7-3 | - +- i386 | autofs-hesiod | 5.0.7-3 | - +- i386 | autofs-ldap | 5.0.7-3 | - +- i386 | autogen | 1:5.12-0.1 | - +- i386 | autogrid | 4.2.3-2 | - +- i386 | autolog | 0.40-13.1 | - +- i386 | automoc | 1.0~version-0.9.88-5 | - +- i386 | autorun4linuxcd | 0.13 | - +- i386 | autossh | 1.4c-1 | - +- i386 | autotalent | 0.2-2 | - +- i386 | autotrace | 0.31.1-16+b1 | - +- i386 | avahi-autoipd | 0.6.31-2 | - +- i386 | avahi-daemon | 0.6.31-2 | - +- i386 | avahi-dbg | 0.6.31-2 | - +- i386 | avahi-dnsconfd | 0.6.31-2 | - +- i386 | avahi-ui-utils | 0.6.31-2 | - +- i386 | avahi-utils | 0.6.31-2 | - +- i386 | avarice | 2.11-1 | - +- i386 | avce00 | 2.0.0-2 | - +- i386 | avfs | 1.0.0-4 | - +- i386 | aview | 1.3.0rc1-9 | - +- i386 | avinfo | 1.0.a15+20090102-1 | - +- i386 | avogadro | 1.0.3-5 | - +- i386 | avr-evtd | 1.7.7-2 | - +- i386 | avra | 1.2.3a-1 | - +- i386 | avrdude | 5.11.1-1 | - +- i386 | avrp | 1.0beta3-7 | - +- i386 | avrprog | 0.2.2-2 | - +- i386 | awardeco | 0.2-3.1 | - +- i386 | away | 0.9.5-3 | - +- i386 | aweather | 0.7-1 | - +- i386 | awesfx | 0.5.1a-1.1 | - +- i386 | awesome | 3.4.13-1 | - +- i386 | awffull | 3.10.2-1 | - +- i386 | ax25-node | 0.3.2-7.4 | - +- i386 | ax25-tools | 0.0.10-rc2+cvs20120204-3 | - +- i386 | ax25-xtools | 0.0.10-rc2+cvs20120204-3 | - +- i386 | axel | 2.4-1 | - +- i386 | axel-dbg | 2.4-1 | - +- i386 | axiom | 20120501-1 | - +- i386 | axiom-graphics | 20120501-1 | - +- i386 | axiom-hypertex | 20120501-1 | - +- i386 | aylet | 0.5-3 | - +- i386 | aylet-gtk | 0.5-3 | - +- i386 | ayttm | 0.6.3-3 | - +- i386 | azr3-jack | 1.2.3-1 | - +- i386 | babeld | 1.3.1-1 | - +- i386 | backuppc | 3.2.1-4 | - +- i386 | bacula-common | 5.2.6+dfsg-9 | - +- i386 | bacula-common-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-common-mysql | 5.2.6+dfsg-9 | - +- i386 | bacula-common-mysql-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-common-pgsql | 5.2.6+dfsg-9 | - +- i386 | bacula-common-pgsql-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-common-sqlite3 | 5.2.6+dfsg-9 | - +- i386 | bacula-common-sqlite3-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-console | 5.2.6+dfsg-9 | - +- i386 | bacula-console-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-console-qt | 5.2.6+dfsg-9 | - +- i386 | bacula-console-qt-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-director-common | 5.2.6+dfsg-9 | - +- i386 | bacula-director-common-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-director-mysql | 5.2.6+dfsg-9 | - +- i386 | bacula-director-mysql-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-director-pgsql | 5.2.6+dfsg-9 | - +- i386 | bacula-director-pgsql-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-director-sqlite3 | 5.2.6+dfsg-9 | - +- i386 | bacula-director-sqlite3-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-fd | 5.2.6+dfsg-9 | - +- i386 | bacula-fd-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-sd | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-mysql | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-mysql-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-pgsql | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-pgsql-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-sqlite3 | 5.2.6+dfsg-9 | - +- i386 | bacula-sd-sqlite3-dbg | 5.2.6+dfsg-9 | - +- i386 | bacula-traymonitor | 5.2.6+dfsg-9 | - +- i386 | bacula-traymonitor-dbg | 5.2.6+dfsg-9 | - +- i386 | balance | 3.42-1 | - +- i386 | balder2d | 1.0-1.1+b3 | - +- i386 | ballview | 1.4.1+20111206-4 | - +- i386 | ballview-dbg | 1.4.1+20111206-4 | - +- i386 | ballz | 1.0.2-1+b1 | - +- i386 | ballz-dbg | 1.0.2-1+b1 | - +- i386 | balsa | 2.4.12-1 | - +- i386 | balsa-dbg | 2.4.12-1 | - +- i386 | bam | 0.4.0-3 | - +- i386 | bamf-dbg | 0.2.118-1 | - +- i386 | bamfdaemon | 0.2.118-1 | - +- i386 | bandwidthcalc | 0.2-1 | - +- i386 | bandwidthd | 2.0.1+cvs20090917-5 | - +- i386 | bandwidthd-pgsql | 2.0.1+cvs20090917-5 | - +- i386 | bangarang | 2.1-2 | - +- i386 | banshee | 2.4.1-3+b1 | - +- i386 | banshee-dbg | 2.4.1-3+b1 | - +- i386 | banshee-extension-lastfmfingerprint | 2.4.0-1 | - +- i386 | banshee-extension-lirc | 2.4.0-1 | - +- i386 | banshee-extension-mirage | 2.4.0-1 | - +- i386 | banshee-meego | 2.4.1-3+b1 | - +- i386 | baobab | 3.4.1-1 | - +- i386 | bar | 1.11.0+debian-4 | - +- i386 | barcode | 0.98+debian-9 | - +- i386 | barcode-dbg | 0.98+debian-9 | - +- i386 | bareftp | 0.3.9-1+b1 | - +- i386 | barnowl | 1.6.2-1.1+b1 | - +- i386 | barrage | 1.0.3-1 | - +- i386 | barry-util | 0.18.3-5 | - +- i386 | barry-util-dbg | 0.18.3-5 | - +- i386 | barrybackup-gui | 0.18.3-5 | - +- i386 | barrybackup-gui-dbg | 0.18.3-5 | - +- i386 | barrydesktop | 0.18.3-5 | - +- i386 | barrydesktop-dbg | 0.18.3-5 | - +- i386 | base-files | 7.1wheezy4 | - +- i386 | base-passwd | 3.5.26 | - +- i386 | bash | 4.2+dfsg-0.1 | - +- i386 | bash-builtins | 4.2+dfsg-0.1 | - +- i386 | bash-static | 4.2+dfsg-0.1 | - +- i386 | basic256 | 0.9.6.69a-1 | - +- i386 | basket | 1.81-3 | - +- i386 | bastet | 0.43-2.1+b1 | - +- i386 | batctl | 2012.1.0-1 | - +- i386 | batctl-dbg | 2012.1.0-1 | - +- i386 | batmand | 0.3.2-12 | - +- i386 | batmand-dbg | 0.3.2-12 | - +- i386 | batmon.app | 0.6-1 | - +- i386 | battery-stats | 0.3.6-1 | - +- i386 | battleball | 2.0-17 | - +- i386 | baycomepp | 0.10-12.2 | - +- i386 | baycomusb | 0.10-12.1 | - +- i386 | bb | 1.3rc1-8.1 | - +- i386 | bbe | 0.2.2-1 | - +- i386 | bbmail | 0.8.3-6 | - +- i386 | bbpager | 0.4.7-3 | - +- i386 | bbrun | 1.6-6 | - ++ i386 | bbswitch-dkms | - | 0.7-1~bpo70+1 +- i386 | bbtime | 0.1.5-12 | - +- i386 | bc | 1.06.95-2 | - +- i386 | bcc | 0.16.17-3.1 | - +- i386 | bchunk | 1.2.0-12 | - +- i386 | bcpp | 0.0.20050725-2 | - +- i386 | bcrelay | 1.3.4-5.2 | - +- i386 | bcron | 0.09-13 | - +- i386 | bdfresize | 1.5-6 | - +- i386 | beanstalkd | 1.4.6-5 | - +- i386 | bear-factory | 0.6.0-1+b1 | - +- i386 | beast | 0.7.4-5 | - +- i386 | beav | 1:1.40-18 | - +- i386 | bedtools | 2.16.1-1 | - +- i386 | beef | 0.0.6-2 | - +- i386 | beep | 1.3-3+b1 | - +- i386 | berusky | 1.4-1 | - +- i386 | betaradio | 1.4-1 | - +- i386 | between | 6+dfsg1-2 | - +- i386 | bfbtester | 2.0.1-7.1 | - +- i386 | bibclean | 2.11.4.1-4 | - +- i386 | bibcursed | 2.0.0-6 | - +- i386 | bible-kjv | 4.26 | - +- i386 | bibledit-bibletime | 1.1.1-1 | - +- i386 | bibledit-gtk | 4.6-1 | - +- i386 | bibledit-xiphos | 1.1.1-1 | - +- i386 | bibletime | 2.9.1-2 | - +- i386 | bibtexconv | 0.8.20-1 | - +- i386 | bibtool | 2.55+ds-1 | - +- i386 | bibutils | 4.12-5 | - +- i386 | bidentd | 1.1.4-1.1 | - +- i386 | bidiv | 1.5-4 | - +- i386 | biff | 1:0.17.pre20000412-5 | - ++ i386 | bilibop | - | 0.4.20~bpo70+1 ++ i386 | bilibop-common | - | 0.4.20~bpo70+1 ++ i386 | bilibop-lockfs | - | 0.4.20~bpo70+1 ++ i386 | bilibop-rules | - | 0.4.20~bpo70+1 ++ i386 | bilibop-udev | - | 0.4.20~bpo70+1 +- i386 | billard-gl | 1.75-11 | - +- i386 | biloba | 0.9.3-4 | - +- i386 | bin86 | 0.16.17-3.1 | - +- i386 | binclock | 1.5-6 | - +- i386 | bind9 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | bind9-host | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | bind9utils | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | bindfs | 1.10.3-2 | - +- i386 | binfmt-support | 2.0.12 | - +- i386 | binfmtc | 0.17-1 | - +- i386 | bing | 1.1.3-2 | - +- i386 | biniax2 | 1.30-1 | - +- i386 | binkd | 0.9.11-1.1 | - +- i386 | bino | 1.4.0-1 | - +- i386 | bino-dbg | 1.4.0-1 | - +- i386 | binutils | 2.22-8 | - +- i386 | binutils-avr | 2.20.1-3 | - +- i386 | binutils-dev | 2.22-8 | - +- i386 | binutils-gold | 2.22-8 | - +- i386 | binutils-h8300-hms | 2.16.1-8 | - +- i386 | binutils-m68hc1x | 1:2.18-3.2 | - +- i386 | binutils-mingw-w64-i686 | 2.22-8+2+b1 | - +- i386 | binutils-mingw-w64-x86-64 | 2.22-8+2+b1 | - +- i386 | binutils-msp430 | 2.22~msp20120406-2 | - +- i386 | binutils-multiarch | 2.22-8 | - +- i386 | binutils-z80 | 2.22-3+b1 | - +- i386 | biosig-tools | 1.3.0-2 | - +- i386 | biosquid | 1.9g+cvs20050121-2 | - +- i386 | biosquid-dev | 1.9g+cvs20050121-2 | - +! i386 | bip | 0.8.8-2 | 0.8.9-1~bpo70+1 ++ i386 | bip-dbg | - | 0.8.9-1~bpo70+1 +! i386 | bird | 1.3.7-1 | 1.4.0-1~bpo70+1 ++ i386 | bird-bgp | - | 1.4.0-1~bpo70+1 ++ i386 | bird-bgp-dbg | - | 1.4.0-1~bpo70+1 +! i386 | bird-dbg | 1.3.7-1 | 1.4.0-1~bpo70+1 +- i386 | bird6 | 1.3.7-1 | - +- i386 | birthday | 1.6.2-3 | - +- i386 | bisho | 0.27.2+git20111122.9e68ef3d-1 | - +- i386 | bison | 1:2.5.dfsg-2.1 | - +- i386 | bison++ | 1.21.11-3 | - +- i386 | bisonc++ | 4.01.00-1 | - +- i386 | bist | 0.5.2-1 | - +- i386 | bitlbee | 3.0.5-1.2 | - +- i386 | bitlbee-libpurple | 3.0.5-1.2 | - +- i386 | bitlbee-plugin-otr | 3.0.5-1.2 | - +- i386 | bitmeter | 1.2-3 | - +- i386 | bitpim-lib | 1.0.7+dfsg1-3 | - +- i386 | bitstormlite | 0.2q-3 | - ++ i386 | bittwist | - | 2.0-3~bpo70+1 +- i386 | bkhive | 1.1.1-1 | - +- i386 | black-box | 1.4.8-2 | - +- i386 | blackbox | 0.70.1-13 | - +- i386 | blacs-mpi-test | 1.1-31 | - +- i386 | blacs-pvm-dev | 1.1-21 | - +- i386 | blacs-pvm-test | 1.1-21 | - +- i386 | blacs1-pvm | 1.1-21 | - ++ i386 | bladerf-host | - | 0.9.0.15.8ba2499-1~bpo70+1 +- i386 | blahtexml | 0.9-1.1 | - +- i386 | blast2 | 1:2.2.26.20120620-2 | - +- i386 | blcr-testsuite | 0.8.5-2 | - +- i386 | blcr-util | 0.8.5-2 | - +- i386 | bld | 0.3.4.1-4 | - +- i386 | bld-postfix | 0.3.4.1-4 | - +- i386 | bld-tools | 0.3.4.1-4 | - +- i386 | blender | 2.63a-1 | - +- i386 | blender-dbg | 2.63a-1 | - +- i386 | blepvco | 0.1.0-3 | - +- i386 | blinken | 4:4.8.4-1 | - +- i386 | bliss | 0.72-4 | - +- i386 | blktap-dev | 2.0.90-1 | - +- i386 | blktap-dkms | 2.0.91-1 | - +- i386 | blktap-utils | 2.0.90-1 | - +- i386 | blktool | 4-6.1 | - +- i386 | blktrace | 1.0.1-2.1 | - +- i386 | blobandconquer | 1.11-dfsg+20-1 | - +- i386 | blobby | 1.0~rc1-2 | - +- i386 | blobby-server | 1.0~rc1-2 | - +- i386 | bloboats | 1.0.1.dsfg-3 | - +- i386 | blobwars | 1.19-2 | - +- i386 | blockattack | 1.4.1+ds1-2.1 | - +- i386 | blockout2 | 2.4+dfsg1-6 | - +- i386 | blocks-of-the-undead | 1.0-5 | - +- i386 | blogilo | 4:4.4.11.1+l10n-3+b1 | - +- i386 | blop | 0.2.8-6 | - +- i386 | blt | 2.4z-4.2 | - +- i386 | blt-dev | 2.4z-4.2 | - +- i386 | bluedevil | 1.2.3-1 | - +! i386 | bluefish | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | bluefish-dbg | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | bluefish-plugins | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | blueman | 1.23-1 | 1.23-git201312311147-1~bpo70+1 +- i386 | bluemon | 1.4-6 | - +- i386 | bluetile | 0.6-1 | - +- i386 | bluez | 4.99-2 | - +- i386 | bluez-alsa | 4.99-2 | - +- i386 | bluez-compat | 4.99-2 | - +- i386 | bluez-cups | 4.99-2 | - +- i386 | bluez-dbg | 4.99-2 | - +- i386 | bluez-gstreamer | 4.99-2 | - +- i386 | bluez-hcidump | 2.4-1 | - +- i386 | bluez-pcmcia-support | 4.99-2 | - +- i386 | bluez-tools | 0.1.38+git662e-3 | - +- i386 | bmf | 0.9.4-9 | - +- i386 | bmon | 2.0.1-3 | - +- i386 | bnfc | 2.4.2.0-2 | - +- i386 | boa | 0.94.14rc21-3.1 | - +- i386 | boats | 201204-1 | - +- i386 | bobot++ | 1:1.97-10.4 | - +- i386 | bochs | 2.4.6-5 | - +- i386 | bochs-sdl | 2.4.6-5 | - +- i386 | bochs-svga | 2.4.6-5 | - +- i386 | bochs-term | 2.4.6-5 | - +- i386 | bochs-wx | 2.4.6-5 | - +- i386 | bochs-x | 2.4.6-5 | - +- i386 | bogl-bterm | 0.1.18-8+b1 | - +- i386 | bognor-regis | 0.6.12+git20101007.02c25268-7 | - +- i386 | bogofilter | 1.2.2+dfsg1-2 | - +- i386 | bogofilter-bdb | 1.2.2+dfsg1-2 | - +- i386 | bogofilter-sqlite | 1.2.2+dfsg1-2 | - +- i386 | bogofilter-tokyocabinet | 1.2.2+dfsg1-2 | - ++ i386 | boinc-amd-opencl | - | 7.0.65+dfsg-3~bpo70+1 +- i386 | boinc-app-examples | 7.0.27+dfsg-5 | - +! i386 | boinc-client | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | boinc-dbg | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +- i386 | boinc-dev | 7.0.27+dfsg-5 | - +! i386 | boinc-manager | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 ++ i386 | boinc-nvidia-cuda | - | 7.0.65+dfsg-3~bpo70+1 +- i386 | boinc-server-maker | 7.0.27+dfsg-5 | - +- i386 | bombardier | 0.8.3+nmu1 | - +- i386 | bomber | 4:4.8.4-3 | - +- i386 | bomberclone | 0.11.9-4 | - +- i386 | bomstrip | 9-6 | - +- i386 | bonnie++ | 1.96 | - +- i386 | boolector | 1.4.ffc2089.100608-1 | - +- i386 | boolstuff | 0.1.12-3 | - +- i386 | boolstuff-dev | 0.1.12-3 | - +- i386 | bootchart2 | 0.14.4-3 | - +- i386 | booth | 0.1.0-1 | - +- i386 | booth-pacemaker | 0.1.0-1 | - +- i386 | bootlogd | 2.88dsf-41+deb7u1 | - +- i386 | bootp | 2.4.3-18 | - +- i386 | bootparamd | 0.17-9 | - +- i386 | bootpc | 0.64-7 | - +- i386 | bopm | 3.1.3-3 | - +- i386 | bosh | 0.6-6 | - ++ i386 | bosixnet-webui | - | 1.6-2~bpo70+1 +- i386 | boswars | 2.6.1-2 | - +- i386 | botan1.10-dbg | 1.10.5-1 | - +- i386 | bottlerocket | 0.05b3-14.1 | - +- i386 | bovo | 4:4.8.4-3 | - +- i386 | bowtie | 0.12.7-3 | - +- i386 | bowtie2 | 2.0.0-beta6-3 | - +- i386 | boxbackup-client | 0.11.1~r2837-1 | - +- i386 | boxbackup-server | 0.11.1~r2837-1 | - +- i386 | boxes | 1.0.1a-2.3 | - +- i386 | boxshade | 3.3.1-7+wheezy1 | - +- i386 | bozohttpd | 20111118-1 | - +- i386 | bplay | 0.991-10 | - +- i386 | bppphyview | 0.2.1-1 | - +- i386 | bppsuite | 0.7.0-1 | - +- i386 | br2684ctl | 1:2.5.1-1.5 | - +- i386 | braindump | 1:2.4.4-3 | - +- i386 | brandy | 1.20~pre5-4 | - +- i386 | brasero | 3.4.1-4 | - +- i386 | brasero-cdrkit | 3.4.1-4 | - +- i386 | brewtarget | 1.2.4+dfsg-1.1 | - +- i386 | brickos | 0.9.0.dfsg-6 | - +- i386 | bridge-utils | 1.5-6 | - +- i386 | brightside | 1.4.0-4.1 | - +- i386 | briquolo | 0.5.7-4 | - +- i386 | bristol | 0.60.10-3 | - +- i386 | brltty | 4.4-10+deb7u1 | - +- i386 | brltty-dbg | 4.4-10+deb7u1 | - +- i386 | brltty-espeak | 4.4-10+deb7u1 | - +- i386 | brltty-flite | 4.4-10+deb7u1 | - +- i386 | brltty-speechd | 4.4-10+deb7u1 | - +- i386 | brltty-x11 | 4.4-10+deb7u1 | - +- i386 | browser-history | 2.8-15 | - +! i386 | browser-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 ++ i386 | browser-plugin-libreoffice | - | 1:4.1.4-2~bpo70+1 +- i386 | browser-plugin-lightspark | 0.6.0.1-2 | - +- i386 | browser-plugin-packagekit | 0.7.6-3 | - +- i386 | browser-plugin-vlc | 2.0.0-2 | - +- i386 | brp-pacu | 2.1.1+git20110314~repack1-2 | - +- i386 | brp-pacu-dbg | 2.1.1+git20110314~repack1-2 | - +- i386 | brutalchess | 0.5.2+dfsg-4 | - +- i386 | brutefir | 1.0k-2 | - +- i386 | bs2b-ladspa | 0.9.1-3 | - +- i386 | bsd-mailx | 8.1.2-0.20111106cvs-1 | - +- i386 | bsdcpio | 3.0.4-3+nmu1 | - +- i386 | bsdgames | 2.17-21 | - +- i386 | bsdiff | 4.3-14 | - +- i386 | bsdmainutils | 9.0.3 | - +- i386 | bsdtar | 3.0.4-3+nmu1 | - +- i386 | bsdutils | 1:2.20.1-5.3 | - +- i386 | bse-alsa | 0.7.4-5 | - +- i386 | bsh-gcj | 2.0b4-12 | - +- i386 | bsign | 0.4.5 | - +- i386 | bsnes | 0.088-5 | - +- i386 | btag | 1.1.3-1+b1 | - +- i386 | btanks | 0.9.8083-4 | - +! i386 | bti | 032-1 | 034-1~bpo70+1 +- i386 | btrfs-tools | 0.19+20120328-7.1 | - +- i386 | btrfs-tools-dbg | 0.19+20120328-7.1 | - +- i386 | btscanner | 2.1-5.1 | - +- i386 | btyacc | 3.0-5 | - +- i386 | bubblefishymon | 0.6.4-5 | - +- i386 | buffer | 1.19-11 | - +- i386 | buffy | 1.5-1 | - +- i386 | bugsquish | 0.0.6-7 | - +- i386 | buici-clock | 0.4.9.2 | - +- i386 | build-essential | 11.5 | - +- i386 | buildapp | 1.4.2-1 | - +- i386 | buildtorrent | 0.8-4 | - ++ i386 | bumblebee | - | 3.2.1-4~bpo70+1 ++ i386 | bumblebee-dbg | - | 3.2.1-4~bpo70+1 ++ i386 | bumblebee-nvidia | - | 3.2.1-4~bpo70+1 +- i386 | bumprace | 1.5.4-1 | - +! i386 | bup | 0.25~git2011.11.04-5.1 | 0.25-1~bpo70+1 +- i386 | burgerspace | 1.9.0-4 | - +- i386 | burp | 1.3.8-1 | - +- i386 | burp-dbg | 1.3.8-1 | - +- i386 | busybox | 1:1.20.0-7 | - +- i386 | busybox-static | 1:1.20.0-7 | - +- i386 | buthead | 1.1-2 | - +- i386 | buzztard | 0.5.0-4 | - +- i386 | buzztard-bsl | 0.5.0-2.1 | - +- i386 | bvi | 1.3.2-2 | - +- i386 | bwa | 0.6.2-1 | - +- i386 | bwbar | 1.2.3-2 | - +- i386 | bwbasic | 2.20pl2-11 | - +- i386 | bwm-ng | 0.6-3.1 | - +- i386 | bximage | 2.4.6-5 | - +- i386 | byacc | 20120115-1 | - +- i386 | byacc-j | 1.15-1 | - +- i386 | bygfoot | 2.3.2-1 | - +- i386 | byzanz | 0.2.2+git22.10.2011-1.3 | - +- i386 | bzflag-client | 2.0.16.20100405+nmu1 | - +- i386 | bzflag-server | 2.0.16.20100405+nmu1 | - +- i386 | bzip2 | 1.0.6-4 | - +- i386 | c-icap | 1:0.1.6-1.1 | - +- i386 | c-repl | 0.0.20071223-1 | - +- i386 | c2hs | 0.16.3-2 | - +- i386 | cabal-debian | 1.25-1 | - +- i386 | cabal-install | 0.14.0-2 | - +- i386 | cabextract | 1.4-3 | - +- i386 | cableswig | 0.1.0+cvs20111009-1 | - +- i386 | caca-utils | 0.99.beta18-1 | - +- i386 | cachefilesd | 0.9-3.1 | - +- i386 | cacti-spine | 0.8.8a-1 | - +- i386 | cadabra | 1.29-1 | - +- i386 | cadaver | 0.23.3-1 | - +- i386 | cain-solvers | 1.9-4 | - +- i386 | cairo-5c | 1.8.1 | - +- i386 | cairo-clock | 0.3.4-2 | - +- i386 | cairo-dock | 3.0.0-2+deb7u1 | - +- i386 | cairo-dock-alsamixer-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-animated-icons-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-cairo-penguin-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-clipper-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-clock-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-core | 3.0.0-2+deb7u1 | - +- i386 | cairo-dock-dbus-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-desklet-rendering-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-dev | 3.0.0-2+deb7u1 | - +- i386 | cairo-dock-dialog-rendering-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-dnd2share-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-drop-indicator-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-dustbin-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-folders-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-gmenu-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-gnome-integration-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-icon-effect-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-illusion-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-impulse-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-kde-integration-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-keyboard-indicator-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-logout-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-mail-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-messaging-menu-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-motion-blur-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-musicplayer-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-netspeed-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-plug-ins | 3.0.0-1 | - +- i386 | cairo-dock-powermanager-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-quick-browser-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-recent-events-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-remote-control-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-rendering-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-rssreader-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-shortcuts-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-showdesktop-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-showmouse-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-slider-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-stack-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-switcher-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-system-monitor-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-systray-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-terminal-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-tomboy-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-toons-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-weather-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-weblets-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-wifi-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-xfce-integration-plug-in | 3.0.0-1 | - +- i386 | cairo-dock-xgamma-plug-in | 3.0.0-1 | - +- i386 | cairo-perf-utils | 1.12.2-3 | - +- i386 | calcoo | 1.3.18-3 | - +- i386 | calcurse | 2.9.2-1 | - +- i386 | calendar-google-provider | 10.0.12-1 | - +- i386 | calendar-timezones | 10.0.12-1 | - +- i386 | calendarserver | 3.2+dfsg-4 | - +- i386 | calf-plugins | 0.0.18.6-5 | - +- i386 | calgebra | 4:4.8.4-2 | - +! i386 | calibre-bin | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +- i386 | calife | 1:3.0.1-4 | - +- i386 | calligra-dbg | 1:2.4.4-3 | - +- i386 | calligra-libs | 1:2.4.4-3 | - +- i386 | calligra-reports-map-element | 1:2.4.4-3 | - +- i386 | calligra-reports-web-element | 1:2.4.4-3 | - +- i386 | calligraflow | 1:2.4.4-3 | - +- i386 | calligramobile | 1:2.4.4-3 | - +- i386 | calligraplan | 1:2.4.4-3 | - +- i386 | calligrasheets | 1:2.4.4-3 | - +- i386 | calligrastage | 1:2.4.4-3 | - +- i386 | calligrawords | 1:2.4.4-3 | - +- i386 | cam | 1.05-8 | - +- i386 | cameleon | 1.9.21-2+b1 | - +- i386 | camera.app | 0.8.0-9+b2 | - +- i386 | camlidl | 1.05-14 | - +- i386 | camlp4 | 3.12.1-4 | - +- i386 | camlp4-extra | 3.12.1-4 | - +- i386 | camlp5 | 6.06-1 | - +- i386 | camorama | 0.19-2.2 | - +- i386 | canna | 3.7p3-11 | - +- i386 | canna-utils | 3.7p3-11 | - +- i386 | canto | 0.7.10-4 | - +- i386 | cantor | 4:4.8.4-2 | - +- i386 | cantor-backend-kalgebra | 4:4.8.4-2 | - +- i386 | cantor-backend-maxima | 4:4.8.4-2 | - +- i386 | cantor-backend-octave | 4:4.8.4-2 | - +- i386 | cantor-backend-qalculate | 4:4.8.4-2 | - +- i386 | cantor-backend-r | 4:4.8.4-2 | - +- i386 | cantor-backend-sage | 4:4.8.4-2 | - +- i386 | cantor-backend-scilab | 4:4.8.4-2 | - +- i386 | cantor-dbg | 4:4.8.4-2 | - +- i386 | capi4hylafax | 1:01.03.00.99.svn.300-18 | - +- i386 | capiutils | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | caps | 0.4.2-1 | - +- i386 | caret | 5.6.4~dfsg.1-3 | - +- i386 | carettah | 0.1.2-1 | - +- i386 | catcodec | 1.0.5-1 | - +- i386 | catdoc | 0.94.4-1.1 | - +- i386 | catdvi | 0.14-12.1 | - +- i386 | cavezofphear | 0.5.1-1 | - +- i386 | cb2bib | 1.4.8-1 | - +- i386 | cba | 0.3.6-4 | - +- i386 | cbflib-bin | 0.7.9.1-3 | - +- i386 | cbm | 0.1-9 | - +- i386 | cbmc | 4.1-1.2 | - +- i386 | cbrpager | 0.9.22-1 | - +- i386 | cc1111 | 2.9.0-2 | - +- i386 | ccache | 3.1.7-1 | - +- i386 | ccal | 4.0-3 | - +- i386 | ccbuild | 2.0.3-1+b1 | - +- i386 | cccc | 1:3.1.4-4 | - +- i386 | cccd | 0.3beta4-6.2 | - +- i386 | ccd2iso | 0.3-3 | - +- i386 | cciss-vol-status | 1.09-2+deb7u1 | - +- i386 | cclive | 0.7.9-1 | - +- i386 | ccontrol | 1.0-1 | - +- i386 | cconv | 0.6.2-1 | - +- i386 | ccrypt | 1.9-4 | - +- i386 | ccze | 0.2.1-2 | - +- i386 | cd-discid | 1.3.1-1 | - +- i386 | cd-hit | 4.6-2012-04-25-1 | - +- i386 | cd5 | 0.1-3 | - +- i386 | cdargs | 1.35-9 | - +- i386 | cdbackup | 0.7.0-5 | - +- i386 | cdcat | 1.8-1 | - +- i386 | cdcd | 0.6.6-13.1 | - +- i386 | cdcd-dbg | 0.6.6-13.1 | - +- i386 | cdck | 0.7.0-5 | - +- i386 | cdcover | 0.9.1-10 | - +- i386 | cdde | 0.3.1-1 | - +- i386 | cde | 0.1-1 | - +- i386 | cdebconf | 0.182 | - +- i386 | cdebconf-gtk | 0.182 | - +- i386 | cdebootstrap | 0.5.9 | - +- i386 | cdebootstrap-static | 0.5.9 | - +- i386 | cdecl | 2.5-11+b1 | - +- i386 | cdo | 1.5.4+dfsg.1-5 | - +- i386 | cdparanoia | 3.10.2+debian-10.1 | - +- i386 | cdparanoia-dbg | 3.10.2+debian-10.1 | - +- i386 | cdpr | 2.4-1 | - +- i386 | cdrdao | 1:1.2.3-0.3 | - +- i386 | cdrskin | 1.2.2-2 | - +- i386 | cdtool | 2.1.8-release-2 | - +- i386 | cduce | 0.5.5-1 | - +- i386 | cdw | 0.7.1-1 | - +- i386 | cec-utils | 1.6.2-1.1 | - +- i386 | ceferino | 0.97.8-3.1 | - +- i386 | celestia-glut | 1.6.1+dfsg-2 | - +- i386 | celestia-gnome | 1.6.1+dfsg-2 | - +- i386 | cellwriter | 1.3.4-1.1 | - +- i386 | cenon.app | 3.93-1.2 | - +- i386 | centerim | 4.22.10-2 | - +- i386 | centerim-fribidi | 4.22.10-2 | - +- i386 | centerim-utf8 | 4.22.10-2 | - +- i386 | certmonger | 0.57-1 | - +- i386 | cervisia | 4:4.8.4+dfsg-1 | - +- i386 | ceve | 1.4-2+b2 | - +- i386 | cfengine2 | 2.2.10-5 | - +- i386 | cfengine2-dbg | 2.2.10-5 | - +- i386 | cfengine3 | 3.2.4-2+nmu1 | - +- i386 | cfengine3-dbg | 3.2.4-2+nmu1 | - +- i386 | cfingerd | 1.4.3-3.1 | - +- i386 | cflow | 1:1.4+dfsg1-2 | - +- i386 | cfourcc | 0.1.2-8 | - +- i386 | cgdb | 0.6.6-2 | - +- i386 | cgi-mapserver | 6.0.1-3.2+deb7u2 | - +- i386 | cgiemail | 1.6-37 | - +- i386 | cgilib | 0.6-1 | - +- i386 | cgns-convert | 3.1.3.4-1+b1 | - +- i386 | cgoban | 1.9.14-17 | - +- i386 | cgroup-bin | 0.38-1 | - +- i386 | charmap.app | 0.2-11+b1 | - +- i386 | charybdis | 3.3.0-7.1 | - +- i386 | chase | 0.5.2-4 | - +- i386 | chasen | 2.4.5-6 | - +- i386 | chasen-dictutils | 2.4.5-6 | - +- i386 | check | 0.9.8-2 | - +! i386 | check-mk-agent | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-agent-logwatch | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-config-icinga | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-config-nagios3 | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-livestatus | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-multisite | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-server | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +- i386 | checkinstall | 1.6.2-4 | - +- i386 | checkpolicy | 2.1.8-2 | - +- i386 | checkpw | 1.02-1 | - +- i386 | cheese | 3.4.2-2 | - +- i386 | chemeq | 2.9-1 | - +- i386 | chemtool | 1.6.13-1 | - +- i386 | chiark-really | 4.2.0 | - +- i386 | chiark-rwbuffer | 4.2.0 | - +- i386 | chiark-utils-bin | 4.2.0 | - +- i386 | chicken-bin | 4.7.0-1 | - +- i386 | chimera2 | 2.0a19-7 | - +- i386 | chipmunk-dev | 5.3.4-1 | - +- i386 | chipw | 2.0.6-1.1 | - +- i386 | chirp | 0.1.12-1 | - +- i386 | chkrootkit | 0.49-4.1 | - +- i386 | chktex | 1.6.4-4 | - +- i386 | chntpw | 0.99.6-2 | - +- i386 | choosewm | 0.1.6-3 | - +- i386 | choqok | 1.3-1 | - +- i386 | chordii | 4.3+repack-2 | - +- i386 | chromium | 31.0.1650.63-1~deb7u1 | - +- i386 | chromium-bsu | 0.9.15-1 | - +- i386 | chromium-dbg | 31.0.1650.63-1~deb7u1 | - +- i386 | chrony | 1.24-3.1+deb7u2 | - +- i386 | chrootuid | 1.3-6 | - +- i386 | chrpath | 0.13-2 | - +- i386 | chuck | 1.2.0.8.dfsg-1.4 | - +- i386 | cifs-utils | 2:5.5-1 | - +- i386 | circuslinux | 1.0.3-28 | - +- i386 | citadel-client | 8.14-2 | - +- i386 | citadel-dbg | 8.14-2 | - +- i386 | citadel-mta | 8.14-2 | - +- i386 | citadel-server | 8.14-2 | - +- i386 | citadel-webcit | 8.14-dfsg-1 | - +- i386 | ckermit | 302-3 | - +- i386 | cksfv | 1.3.14-2 | - +- i386 | cl-clx-sbcl | 0.7.4-5 | - +- i386 | cl-sql-mysql | 6.2.0-1+b1 | - +- i386 | cl-sql-uffi | 6.2.0-1+b1 | - +- i386 | cl-uffi-tests | 2.1.2-1 | - +- i386 | clam-chordata | 1.0.0-2 | - +- i386 | clam-networkeditor | 1.4.0-3.1 | - +- i386 | clamav | 0.97.8+dfsg-1 | - +- i386 | clamav-daemon | 0.97.8+dfsg-1 | - +- i386 | clamav-dbg | 0.97.8+dfsg-1 | - +- i386 | clamav-freshclam | 0.97.8+dfsg-1 | - +- i386 | clamav-milter | 0.97.8+dfsg-1 | - +- i386 | clamsmtp | 1.10-10 | - +- i386 | clamz | 0.5-1 | - +- i386 | clang | 1:3.0-6.2 | - +- i386 | clasp | 2.0.6-2 | - +! i386 | claws-mail | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-acpi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-address-keeper | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-archiver-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-attach-remover | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-attach-warner | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-bogofilter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-bsfilter-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-clamd-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-dbg | 3.8.1-2 | 3.9.3-1~bpo70+1 +- i386 | claws-mail-extra-plugins-dbg | 3.8.1-2 | - +! i386 | claws-mail-fancy-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-feeds-reader | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-fetchinfo-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-gdata-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +- i386 | claws-mail-html2-viewer | 3.8.1-2 | - +! i386 | claws-mail-mailmbox-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-multi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-newmail-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 ++ i386 | claws-mail-pdf-viewer | - | 3.9.3-1~bpo70+1 +! i386 | claws-mail-perl-filter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-pgpinline | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-pgpmime | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-python-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-smime-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-spam-report | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-spamassassin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-tnef-parser | 3.8.1-2 | 3.9.3-1~bpo70+1 +- i386 | claws-mail-trayicon | 3.8.1-2 | - +! i386 | claws-mail-vcalendar-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +- i386 | cldump | 0.11~dfsg-1 | - +- i386 | clearsilver-dev | 0.10.5-1.3 | - +- i386 | clementine | 1.0.1+dfsg-2+b1 | - +- i386 | clex | 3.15-1 | - +- i386 | clif | 0.93-9 | - +- i386 | clinica | 0.2.1~dfsg-1 | - +- i386 | clinica-dev | 0.2.1~dfsg-1 | - +- i386 | clinica-plugins | 0.2.1~dfsg-1 | - +- i386 | cliofetion | 2.2.0-1 | - +- i386 | clipit | 1.4.1-1 | - +- i386 | clips | 6.24-3 | - +- i386 | cliquer | 1.21-1 | - +- i386 | clisp | 1:2.49-8.1 | - +- i386 | clisp-dev | 1:2.49-8.1 | - +- i386 | clisp-module-berkeley-db | 1:2.49-8.1 | - +- i386 | clisp-module-bindings-glibc | 1:2.49-8.1 | - +- i386 | clisp-module-clx | 1:2.49-8.1 | - +- i386 | clisp-module-dbus | 1:2.49-8.1 | - +- i386 | clisp-module-gdbm | 1:2.49-8.1 | - +- i386 | clisp-module-pcre | 1:2.49-8.1 | - +- i386 | clisp-module-postgresql | 1:2.49-8.1 | - +- i386 | clisp-module-rawsock | 1:2.49-8.1 | - +- i386 | clisp-module-wildcard | 1:2.49-8.1 | - +- i386 | clisp-module-zlib | 1:2.49-8.1 | - +- i386 | clonalframe | 1.2-3 | - +- i386 | cloog-isl | 0.17.0-3 | - +- i386 | cloog-ppl | 0.15.11-4 | - +- i386 | cloop-utils | 2.6.39.2-1 | - +- i386 | clustalo | 1.1.0-1 | - +- i386 | clustalw | 2.1+lgpl-2 | - +- i386 | clustalx | 2.1+lgpl-2 | - +- i386 | cluster-agents | 1:1.0.3-4 | - +- i386 | cluster-glue | 1.0.9+hg2665-1 | - +- i386 | cluster-glue-dev | 1.0.9+hg2665-1 | - +- i386 | clutter-1.0-tests | 1.10.8-2 | - +- i386 | clvm | 2.02.95-8 | - +- i386 | clzip | 1.3-2 | - +- i386 | clzip-dbg | 1.3-2 | - +! i386 | cmake | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-curses-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-dbg | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-qt-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +- i386 | cman | 3.0.12-3.2+deb7u2 | - +- i386 | cmatrix | 1.2a-4 | - +- i386 | cmigemo | 20110227-7 | - +- i386 | cmis-client | 0.1.0-1+b1 | - +- i386 | cmospwd | 5.0+dfsg-2 | - +- i386 | cmt | 1.16-1 | - +- i386 | cmtk | 2.2.2-2 | - +- i386 | cmucl | 20c-2 | - +- i386 | cmucl-clm | 20c-2 | - +- i386 | cmus | 2.4.3-2 | - +- i386 | cmus-plugin-ffmpeg | 2.4.3-2 | - +- i386 | cnee | 3.13-1 | - +- i386 | cntlm | 0.92.3-1 | - +- i386 | coala | 1.0.1-5 | - +- i386 | cobalt-panel-utils | 1.0.2-3 | - +- i386 | coccinelle | 1.0.0~rc12.deb-5 | - +- i386 | coco-cpp | 20120102-1 | - +- i386 | code-saturne | 2.1.7-1 | - +- i386 | code-saturne-bin | 2.1.7-1 | - +- i386 | code-saturne-include | 2.1.7-1 | - +! i386 | codeblocks | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-contrib | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-contrib-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-dev | 10.05-2.1 | 13.12-1~bpo70+1 +- i386 | codegroup | 19981025-6 | - +- i386 | codfis | 0.4.7-2 | - +- i386 | coinor-csdp | 6.1.1-1 | - +- i386 | coinor-csdp-dbg | 6.1.1-1 | - +- i386 | coinor-libcbc-dev | 2.5.0-3 | - +- i386 | coinor-libcbc0 | 2.5.0-3 | - +- i386 | coinor-libcbc0-dbg | 2.5.0-3 | - +- i386 | coinor-libcgl-dev | 0.55.0-1.1 | - +- i386 | coinor-libcgl0 | 0.55.0-1.1 | - +- i386 | coinor-libcgl0-dbg | 0.55.0-1.1 | - +- i386 | coinor-libclp-dev | 1.12.0-2.1 | - +- i386 | coinor-libclp0 | 1.12.0-2.1 | - +- i386 | coinor-libclp0-dbg | 1.12.0-2.1 | - +- i386 | coinor-libcoinutils-dev | 2.6.4-3 | - +- i386 | coinor-libcoinutils0 | 2.6.4-3 | - +- i386 | coinor-libcoinutils0-dbg | 2.6.4-3 | - +- i386 | coinor-libdylp-dev | 1.6.0-1.1 | - +- i386 | coinor-libdylp0 | 1.6.0-1.1 | - +- i386 | coinor-libdylp0-dbg | 1.6.0-1.1 | - +- i386 | coinor-libflopc++-dev | 1.0.6-3.1 | - +- i386 | coinor-libflopc++0 | 1.0.6-3.1 | - +- i386 | coinor-libflopc++0-dbg | 1.0.6-3.1 | - +- i386 | coinor-libipopt-dev | 3.10.2-1.1 | - +- i386 | coinor-libipopt1 | 3.10.2-1.1 | - +- i386 | coinor-libipopt1-dbg | 3.10.2-1.1 | - +- i386 | coinor-libosi-dev | 0.103.0-1 | - +- i386 | coinor-libosi0 | 0.103.0-1 | - +- i386 | coinor-libosi0-dbg | 0.103.0-1 | - +- i386 | coinor-libsymphony-dev | 5.2.4-1.2 | - +- i386 | coinor-libsymphony0 | 5.2.4-1.2 | - +- i386 | coinor-libsymphony0-dbg | 5.2.4-1.2 | - +- i386 | coinor-libvol-dev | 1.1.7-1 | - +- i386 | coinor-libvol0 | 1.1.7-1 | - +- i386 | coinor-libvol0-dbg | 1.1.7-1 | - +- i386 | coinst | 1.01-2 | - +- i386 | coinst-viewer | 1.01-2 | - +- i386 | coldfire | 0.2.2-2.3 | - +- i386 | collatinus | 10.0-3 | - +- i386 | collectd | 5.1.0-3 | - +- i386 | collectd-core | 5.1.0-3 | - +- i386 | collectd-dbg | 5.1.0-3 | - +- i386 | collectd-utils | 5.1.0-3 | - ++ i386 | colobot | - | 0.1.2-3~bpo70+2 ++ i386 | colobot-dbg | - | 0.1.2-3~bpo70+2 +- i386 | colorcode | 0.7.2-1 | - +- i386 | colord | 0.1.21-1 | - +- i386 | colorhug-client | 0.1.10-1 | - +- i386 | colortail | 0.3.3-1 | - +- i386 | colrconv | 0.99.3-4 | - +- i386 | comerr-dev | 2.1-1.42.5-1.1 | - +- i386 | comgt | 0.32-2 | - +- i386 | comparepdf | 1.0.1-1 | - +- i386 | compartment | 1.1.0-4 | - +- i386 | compface | 1:1.5.2-5 | - +- i386 | composite | 0.006.2+dfsg0-2 | - +- i386 | composite-dbg | 0.006.2+dfsg0-2 | - +- i386 | concalc | 0.9.2-2 | - +- i386 | concordance | 0.24-1.1 | - +- i386 | condor | 7.8.2~dfsg.1-1+deb7u1 | - +- i386 | condor-dbg | 7.8.2~dfsg.1-1+deb7u1 | - +- i386 | condor-dev | 7.8.2~dfsg.1-1+deb7u1 | - +- i386 | cone | 0.89-1 | - +- i386 | confclerk | 0.5.5-1 | - +- i386 | confget | 1.03-1 | - +- i386 | config-manager | 0.4-2.1 | - +- i386 | confluence | 0.10.6-7 | - +- i386 | conkeror-spawn-process-helper | 1.0~~pre+git120527-1 | - +- i386 | conky-cli | 1.9.0-2 | - +- i386 | conky-std | 1.9.0-2 | - +- i386 | connect-proxy | 1.101-1 | - +- i386 | connectagram | 1.0.1-1 | - +- i386 | connman | 1.0-1.1+wheezy1+b1 | - +- i386 | connman-dev | 1.0-1.1+wheezy1+b1 | - +- i386 | conntrack | 1:1.2.1-1 | - +- i386 | conntrackd | 1:1.2.1-1 | - +- i386 | console-braille | 1.3 | - +- i386 | console-tools | 1:0.2.3dbs-70 | - +- i386 | console-tools-dev | 1:0.2.3dbs-70 | - +- i386 | consolekit | 0.4.5-3.1 | - +- i386 | conspy | 1.8-2 | - +- i386 | contacts | 0.9-2+b2 | - +- i386 | contextfree | 2.2+dfsg1-2.1 | - +- i386 | convert-pgn | 0.29.6-2 | - +- i386 | convlit | 1.8-1 | - +- i386 | cook | 2.33-1 | - +- i386 | cook-rsh | 2.33-1 | - +- i386 | cookietool | 2.5-5 | - +- i386 | coolkey | 1.1.0-12 | - +- i386 | coolmail | 1.3-11 | - +- i386 | coop-computing-tools | 3.5.1-2 | - +- i386 | coop-computing-tools-dev | 3.5.1-2 | - +- i386 | copyfs | 1.0.1-4 | - +- i386 | coq | 8.3.pl4+dfsg-2 | - +- i386 | coqide | 8.3.pl4+dfsg-2 | - ++ i386 | core-network-daemon | - | 4.6-2~bpo70+1 ++ i386 | core-network-gui | - | 4.6-2~bpo70+1 ++ i386 | corekeeper | - | 1.5~bpo70+1 +- i386 | coreutils | 8.13-3.5 | - +- i386 | coriander | 2.0.1-1 | - +- i386 | corkscrew | 2.0-9 | - +- i386 | corosync | 1.4.2-3 | - +- i386 | corosync-dbg | 1.4.2-3 | - +- i386 | corosync-dev | 1.4.2-3 | - +- i386 | cortina | 0.7.3-1 | - +- i386 | couchdb | 1.2.0-5 | - +- i386 | courier-authdaemon | 0.63.0-6+b1 | - +- i386 | courier-authlib | 0.63.0-6+b1 | - +- i386 | courier-authlib-dev | 0.63.0-6+b1 | - +- i386 | courier-authlib-ldap | 0.63.0-6+b1 | - +- i386 | courier-authlib-mysql | 0.63.0-6+b1 | - +- i386 | courier-authlib-pipe | 0.63.0-6+b1 | - +- i386 | courier-authlib-postgresql | 0.63.0-6+b1 | - +- i386 | courier-authlib-userdb | 0.63.0-6+b1 | - +- i386 | courier-base | 0.68.2-1 | - +- i386 | courier-faxmail | 0.68.2-1 | - +- i386 | courier-imap | 4.10.0-20120615-1 | - +- i386 | courier-imap-ssl | 4.10.0-20120615-1 | - +- i386 | courier-ldap | 0.68.2-1 | - +- i386 | courier-maildrop | 0.68.2-1 | - +- i386 | courier-mlm | 0.68.2-1 | - +- i386 | courier-mta | 0.68.2-1 | - +- i386 | courier-mta-ssl | 0.68.2-1 | - +- i386 | courier-pcp | 0.68.2-1 | - +- i386 | courier-pop | 0.68.2-1 | - +- i386 | courier-pop-ssl | 0.68.2-1 | - +- i386 | courier-ssl | 0.68.2-1 | - +- i386 | courier-webadmin | 0.68.2-1 | - +- i386 | couriergrey | 0.3.2-1 | - +- i386 | courierpassd | 1.1.2-2 | - +- i386 | covered | 0.7.10-1 | - +- i386 | cowbell | 0.2.7.1-7 | - +! i386 | cowbuilder | 0.70 | 0.73~bpo7+1 +! i386 | cowdancer | 0.70 | 0.73~bpo7+1 +- i386 | cp2k | 2.2.426-8 | - +- i386 | cpio | 2.11+dfsg-0.1 | - +- i386 | cpipe | 3.0.1-1 | - +- i386 | cpm | 0.26-1 | - +- i386 | cpmtools | 2.13-1 | - +- i386 | cpp | 4:4.7.2-1 | - +- i386 | cpp-4.4 | 4.4.7-2 | - +- i386 | cpp-4.6 | 4.6.3-14 | - +- i386 | cpp-4.7 | 4.7.2-5 | - +- i386 | cppcheck | 1.54-1 | - +- i386 | cpphs | 1.13.3-2+b1 | - +- i386 | cpqarrayd | 2.3-1.3 | - +- i386 | cproto | 4.7j-5 | - +- i386 | cpu | 1.4.3-11.3 | - +- i386 | cpuburn | 1.4a-3 | - +- i386 | cpufreqd | 2.4.2-2 | - +- i386 | cpufrequtils | 008-1 | - +- i386 | cpuid | 3.3-9 | - +- i386 | cpulimit | 1.7-1 | - +- i386 | cpushare | 0.48-4 | - +- i386 | cqrlog | 1.4.1-1 | - +- i386 | crack | 5.0a-9.3 | - +- i386 | crack-attack | 1.1.14-9.1 | - +- i386 | crack-md5 | 5.0a-9.3 | - +- i386 | cracklib-runtime | 2.8.19-3 | - +- i386 | cramfsprogs | 1.1-6 | - +- i386 | cramfsswap | 1.4.1 | - +- i386 | crash | 6.0.6-1 | - +- i386 | crashmail | 0.71-4 | - +- i386 | crashme | 2.4-9 | - +- i386 | crasm | 1.5-1 | - +- i386 | crawl | 2:0.10.3-3 | - +- i386 | crawl-tiles | 2:0.10.3-3 | - +- i386 | crda | 1.1.2-1 | - +- i386 | createfp | 3.2.0-2 | - +- i386 | cricket | 1.0.5-19 | - +- i386 | crimson | 0.5.2-1 | - +- i386 | criticalmass | 1:1.0.0-1.5 | - +- i386 | critterding | 1.0-beta12.1-1.2 | - +- i386 | crm114 | 20100106-3 | - +- i386 | cron | 3.0pl1-124 | - +- i386 | cronolog | 1.6.2+rpk-1 | - +- i386 | cronutils | 1.2-1 | - +- i386 | crossfire-client | 1.70.0-1 | - +- i386 | crossfire-server | 1.70.0-1 | - +- i386 | crossroads | 2.65-1.1 | - +- i386 | crtmpserver | 1.0~dfsg-3 | - +- i386 | crtmpserver-apps | 1.0~dfsg-3 | - +- i386 | crtmpserver-dev | 1.0~dfsg-3 | - +- i386 | crtmpserver-libs | 1.0~dfsg-3 | - +- i386 | cruft | 0.9.16 | - +- i386 | cryptcat | 20031202-4 | - +- i386 | cryptkeeper | 0.9.5-5.1 | - +- i386 | cryptmount | 4.3.1-1 | - +- i386 | cryptsetup | 2:1.4.3-4 | - +- i386 | cryptsetup-bin | 2:1.4.3-4 | - +- i386 | cscope | 15.7a-3.6 | - +- i386 | csh | 20110502-2 | - +- i386 | csladspa | 1:5.17.11~dfsg-3 | - +- i386 | csmash | 0.6.6-6.6 | - +- i386 | csound | 1:5.17.11~dfsg-3 | - +- i386 | csound-gui | 1:5.17.11~dfsg-3 | - +- i386 | csound-utils | 1:5.17.11~dfsg-3 | - +- i386 | cssc | 1.2.0-2 | - +- i386 | cssed | 0.4.0-4 | - +- i386 | csstidy | 1.4-3 | - +- i386 | cstream | 3.0.0-1 | - +- i386 | csv2latex | 0.18-2 | - ++ i386 | csvimp | - | 0.4.7-2~bpo70+1 +- i386 | csvtool | 1.2.2-1+b1 | - +- i386 | csync2 | 1.34-2.2+b1 | - +- i386 | ctdb | 1.12+git20120201-4 | - +- i386 | ctdb-dbg | 1.12+git20120201-4 | - +- i386 | ctn | 3.0.6-13+b2 | - +- i386 | ctn-dev | 3.0.6-13+b2 | - +- i386 | ctorrent | 1.3.4.dnh3.3.2-4 | - +- i386 | ctpl | 0.3.3.dfsg-2 | - +- i386 | ctsim | 5.2.0-1.1 | - +- i386 | ctwm | 3.7-3.3 | - +- i386 | cu | 1.07-20 | - +- i386 | cuba-partview | 3.0+20111124-2 | - +- i386 | cube2font | 1.2-2 | - +- i386 | cube2font-dbg | 1.2-2 | - +- i386 | cudf-tools | 0.6.2-1 | - +- i386 | cue2toc | 0.4-5 | - +- i386 | cuetools | 1.3.1-12 | - +- i386 | cultivation | 9+dfsg1-1 | - +- i386 | cups | 1.5.3-5+deb7u1 | - +- i386 | cups-bsd | 1.5.3-5+deb7u1 | - +- i386 | cups-client | 1.5.3-5+deb7u1 | - +- i386 | cups-dbg | 1.5.3-5+deb7u1 | - +- i386 | cups-filters | 1.0.18-2.1 | - +- i386 | cups-pdf | 2.6.1-6 | - +- i386 | cups-pk-helper | 0.2.3-3 | - +- i386 | cups-ppdc | 1.5.3-5+deb7u1 | - +- i386 | cupt | 2.5.9 | - +- i386 | curl | 7.26.0-1+wheezy8 | - +- i386 | curlftpfs | 0.9.2-5 | - +- i386 | curtain | 0.1-1 | - +- i386 | curves | 0.8.19+b2 | - +- i386 | cutecom | 0.22.0-2 | - +- i386 | cutesdr | 1.0.5-3 | - +- i386 | cutils | 1.6-3 | - +- i386 | cutter | 1.03-2 | - +- i386 | cutter-gtk-support | 1.1.7-1.2 | - +- i386 | cutter-report-module | 1.1.7-1.2 | - +- i386 | cutter-testing-framework | 1.1.7-1.2 | - +- i386 | cutter-testing-framework-bin | 1.1.7-1.2 | - +- i386 | cutycapt | 0.0~svn6-3 | - +- i386 | cuyo | 2.0.0brl1-1 | - +- i386 | cvc3 | 2.4.1-4 | - +- i386 | cvm | 0.96-1+b1 | - +- i386 | cvm-mysql | 0.96-1+b1 | - +- i386 | cvm-pgsql | 0.96-1+b1 | - +- i386 | cvs | 2:1.12.13+real-9 | - +- i386 | cvsd | 1.0.24 | - +- i386 | cvsgraph | 1.7.0-1 | - +- i386 | cvsps | 2.1-6 | - +- i386 | cvsservice | 4:4.8.4+dfsg-1 | - +- i386 | cvstrac | 2.0.1-3 | - +- i386 | cw | 3.0.2-1 | - +- i386 | cwcp | 3.0.2-1 | - +- i386 | cwdaemon | 0.9.5-1 | - +- i386 | cwebx | 3.04-9 | - +- i386 | cwiid-dbg | 0.6.00+svn201-3+b1 | - +- i386 | cwirc | 2.0.0-5 | - +- i386 | cxref | 1.6d-6 | - +- i386 | cycfx2prog | 0.47-1 | - +- i386 | cyclades-serial-client | 0.92 | - +- i386 | cyclist | 0.1~alpha55-6 | - +- i386 | cynthiune.app | 0.9.5-14 | - +- i386 | cyrus-clients-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-common-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-dev-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-imapd-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-imspd | 1.8-3 | - +- i386 | cyrus-murder-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-nntpd-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-pop3d-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-replication-2.4 | 2.4.16-4+deb7u1 | - +- i386 | cyrus-sasl2-dbg | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | cyrus-sasl2-heimdal-dbg | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | cyrus-sasl2-mit-dbg | 2.1.25.dfsg1-6+deb7u1 | - +! i386 | cython | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! i386 | cython-dbg | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 ++ i386 | cython3 | - | 0.19.1+git34-gac3e3a2-1~bpo70+1 ++ i386 | cython3-dbg | - | 0.19.1+git34-gac3e3a2-1~bpo70+1 +- i386 | d-itg | 2.8.1~rc1-1 | - +- i386 | d52 | 3.4.1-1.1 | - +- i386 | daa2iso | 0.1.7e-1 | - +- i386 | dacs | 1.4.27b-2 | - +- i386 | dact | 0.8.42-4 | - +- i386 | dadadodo | 1.04-4 | - +- i386 | daemon | 0.6.4-1 | - +- i386 | daemonfs | 1.1-1 | - +- i386 | daemonlogger | 1.2.1-7 | - +- i386 | daemontools | 1:0.76-3 | - +- i386 | dahdi | 1:2.5.0.1-2 | - +- i386 | daisy-player | 7.1.1-1 | - +- i386 | daisy-player-dbg | 7.1.1-1 | - +- i386 | dancer-ircd | 1.0.36-8.1 | - +- i386 | dancer-xml | 0.8.2.1-3 | - +- i386 | dangen | 0.5-2 | - +- i386 | dans-gdal-scripts | 0.18-1.1+b2 | - +- i386 | dansguardian | 2.10.1.1-5 | - +- i386 | dante-client | 1.1.19.dfsg-3+b3 | - +- i386 | dante-server | 1.1.19.dfsg-3+b3 | - +- i386 | dapl2-utils | 2.0.19-1.1 | - +- i386 | dar | 2.4.5.debian.1-1 | - +- i386 | darcs | 2.8.1-1+b1 | - ++ i386 | darcs-monitor | - | 0.4.2-3~bpo70+1 +- i386 | dares | 0.6.5-7 | - +- i386 | darkice | 1.0-1 | - +- i386 | darkplaces | 0~20110628+svn11619-3 | - +- i386 | darkplaces-dbg | 0~20110628+svn11619-3 | - +- i386 | darkplaces-server | 0~20110628+svn11619-3 | - +- i386 | darksnow | 0.6.1-3 | - +- i386 | darkstat | 3.0.715-1 | - +! i386 | darktable | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! i386 | darktable-dbg | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +- i386 | darnwdl | 0.5-2 | - +- i386 | darts | 0.32-11 | - +- i386 | das-watchdog | 0.9.0-2 | - +- i386 | dash | 0.5.7-3 | - +- i386 | dasher | 4.11-2 | - +- i386 | datapm | 0.10-1.1 | - +- i386 | datefudge | 1.17 | - +- i386 | dates | 0.4.8-3+b1 | - +- i386 | dav-text | 0.8.5-5 | - +- i386 | davfs2 | 1.4.6-1.1+deb7u1 | - +- i386 | dawgdic-tools | 0.4.3-1 | - +- i386 | db4.7-util | 4.7.25-21 | - +- i386 | db4.8-util | 4.8.30-12 | - +- i386 | db5.1-sql-util | 5.1.29-5 | - +- i386 | db5.1-util | 5.1.29-5 | - +- i386 | dbacl | 1.12-2.1 | - +- i386 | dballe | 5.18-1 | - +- i386 | dbar | 0.0.20100524-3 | - +- i386 | dbeacon | 0.3.9.3-2 | - +- i386 | dbench | 4.0-2 | - +- i386 | dbf2mysql | 1.14a-3.1+b4 | - +- i386 | dbmix | 0.9.8-6.2 | - +- i386 | dbskkd-cdb | 1:2.00-6 | - +- i386 | dbus | 1.6.8-1+deb7u1 | - +- i386 | dbus-1-dbg | 1.6.8-1+deb7u1 | - +- i386 | dbus-x11 | 1.6.8-1+deb7u1 | - +- i386 | dbview | 1.0.4-1 | - +- i386 | dc | 1.06.95-2 | - +- i386 | dc-qt | 0.2.0.alpha-4.1+b3 | - +- i386 | dc3dd | 7.1.614-1 | - +- i386 | dcap | 2.47.6-2 | - +- i386 | dcap-dbg | 2.47.6-2 | - +- i386 | dcap-dev | 2.47.6-2 | - +- i386 | dcap-tunnel-gsi | 2.47.6-2 | - +- i386 | dcap-tunnel-krb | 2.47.6-2 | - +- i386 | dcap-tunnel-ssl | 2.47.6-2 | - +- i386 | dcap-tunnel-telnet | 2.47.6-2 | - +- i386 | dcfldd | 1.3.4.1-2.1 | - +- i386 | dchroot | 1.6.4-4 | - +- i386 | dchroot-dsa | 1.6.4-4 | - +- i386 | dclock | 2.2.2-6 | - +- i386 | dcmtk | 3.6.0-12 | - +- i386 | dcmtk-www | 3.6.0-12 | - +- i386 | dconf-gsettings-backend | 0.12.1-3 | - +- i386 | dconf-service | 0.12.1-3 | - +- i386 | dconf-tools | 0.12.1-3 | - +- i386 | dcraw | 8.99-1+b2 | - +- i386 | dctrl-tools | 2.22.2 | - +- i386 | ddccontrol | 0.4.2-10 | - +- i386 | ddd | 1:3.3.12-4 | - +- i386 | ddns3-client | 1.8-12 | - +- i386 | ddpt | 0.92-1 | - +- i386 | dds | 2.1.2+ddd105-1 | - +- i386 | dds2tar | 2.5.2-4 | - +- i386 | deal | 3.1.9-3 | - +- i386 | dealer | 0.20040530-4 | - +- i386 | deb-gview | 0.2.9 | - +- i386 | debconf-kde-dbg | 0.2-2 | - +- i386 | debconf-kde-helper | 0.2-2 | - +- i386 | debdelta | 0.50+2 | - +- i386 | debfoster | 2.7-1.2 | - +- i386 | debian-installer | 20130613+deb7u1+b2 | - +- i386 | debian-xcontrol | 0.0.4-1.1+b3 | - +- i386 | debianutils | 4.3.2 | - +- i386 | deborphan | 1.7.28.8 | - +- i386 | debram | 1.0.3-0.2 | - +- i386 | debsig-verify | 0.8 | - +- i386 | debtags | 1.10.1 | - +- i386 | dee-tools | 1.0.10-3 | - +! i386 | deets | 0.1.3-1 | 0.2-3~bpo70+1 +- i386 | default-jdk | 1:1.6-47 | - +- i386 | default-jre | 1:1.6-47 | - +- i386 | default-jre-headless | 1:1.6-47 | - +- i386 | defendguin | 0.0.12-4 | - +- i386 | deja-dup | 20.2-2.1 | - +- i386 | deja-dup-dbg | 20.2-2.1 | - +- i386 | delta | 2006.08.03-3 | - ++ i386 | deltarpm | - | 3.6+dfsg-1~bpo7+1 +- i386 | denemo | 0.9.2-3 | - +- i386 | depqbf | 0.1-1 | - +- i386 | desklaunch | 1.1.8 | - +- i386 | deskmenu | 1.4.5 | - +! i386 | desktop-file-utils | 0.20-0.1 | 0.21-1~bpo70+1 +- i386 | desktopnova | 0.8.1-1 | - +- i386 | desktopnova-module-gnome | 0.8.1-1 | - +- i386 | desktopnova-module-xfce | 0.8.1-1 | - +- i386 | desktopnova-tray | 0.8.1-1 | - +- i386 | desmume | 0.9.8-1 | - +- i386 | desproxy | 0.1.0~pre3-8 | - +- i386 | detox | 1.2.0-5 | - +- i386 | deutex | 4.4.902-13 | - +- i386 | devhelp | 3.4.1-1 | - +- i386 | device-tree-compiler | 1.3.0-4 | - +- i386 | devilspie | 0.22-2 | - +! i386 | devilspie2 | 0.20-1 | 0.32-1~bpo70+1 +- i386 | devio | 1.2-1+b1 | - +- i386 | devrplay3 | 3.3.2-14 | - +! i386 | devscripts | 2.12.6+deb7u2 | 2.13.4~bpo70+1 +- i386 | devtodo | 0.1.20-6 | - +- i386 | dfc | 2.5.0-1 | - +- i386 | dff | 1.2.0+dfsg.1-1 | - +- i386 | dfu-programmer | 0.5.4-1 | - +- i386 | dfu-util | 0.5-1 | - +- i386 | dh-ada-library | 3 | - +- i386 | dh-exec | 0.4 | - +- i386 | dhcp-helper | 1.1-1 | - +- i386 | dhcp-probe | 1.3.0-10 | - +- i386 | dhcpcd | 1:3.2.3-11 | - +- i386 | dhcpcd-dbus | 0.6.0-1 | - +- i386 | dhcpcd-gtk | 0.6.0-1 | - +- i386 | dhcpcd5 | 5.5.6-1 | - +- i386 | dhcpdump | 1.8-2 | - +- i386 | dhcping | 1.2-4 | - +- i386 | dhex | 0.67-1 | - +- i386 | dhis-client | 5.5-4 | - +- i386 | dhis-dns-engine | 5.3-1 | - +- i386 | dhis-mx-sendmail-engine | 5.0-2 | - +- i386 | dhis-server | 5.3-2.1 | - +- i386 | dhis-tools-dns | 5.0-6.1 | - +- i386 | dhis-tools-genkeys | 5.0-6.1 | - +- i386 | di | 4.30-1 | - +- i386 | dia | 0.97.2-8 | - +- i386 | dia-gnome | 0.97.2-8 | - +- i386 | dia-libs | 0.97.2-8 | - +- i386 | dia2code | 0.8.3-4 | - +- i386 | dialign | 2.2.1-5 | - +- i386 | dialign-tx | 1.0.2-2 | - +- i386 | dialog | 1.1-20120215-2 | - +- i386 | diatheke | 1.6.2+dfsg-5 | - +- i386 | dibbler-client | 0.8.2-1 | - +- i386 | dibbler-relay | 0.8.2-1 | - +- i386 | dibbler-server | 0.8.2-1 | - +- i386 | dicelab | 0.7-1 | - +- i386 | dico | 2.1-3+b2 | - +- i386 | dico-dev | 2.1-3+b2 | - +- i386 | dico-module-guile | 2.1-3+b2 | - +- i386 | dico-module-python | 2.1-3+b2 | - +- i386 | dicod | 2.1-3+b2 | - +- i386 | dicom3tools | 1.0~20120505-1 | - +- i386 | dicomnifti | 2.30.0-1 | - +- i386 | dicomscope | 3.6.0-10 | - +- i386 | dict | 1.12.0+dfsg-5 | - +- i386 | dictconv | 0.2-7 | - +- i386 | dictd | 1.12.0+dfsg-5 | - +- i386 | dictfmt | 1.12.0+dfsg-5 | - +- i386 | diction | 1.10~rc4-1 | - +- i386 | dictionaryreader.app | 0+20080616+dfsg-2+b3 | - +- i386 | dictzip | 1.12.0+dfsg-5 | - +- i386 | didiwiki | 0.5-11 | - +- i386 | dieharder | 3.31.1-4 | - +- i386 | diet-agent | 2.8.0-1+b1 | - +- i386 | dietlibc-dev | 0.33~cvs20120325-4 | - +- i386 | diffpdf | 2.1.1-1 | - +- i386 | diffstat | 1.55-3 | - +- i386 | diffutils | 1:3.2-6 | - +- i386 | digikam | 4:2.6.0-1+b2 | - +- i386 | digikam-dbg | 4:2.6.0-1+b2 | - +- i386 | digitemp | 3.5.0ds1-2 | - +- i386 | digitools | 1.03-1.1 | - +- i386 | dillo | 3.0.2-2 | - +- i386 | dimbl | 0.11-1 | - +- i386 | dime | 0.20030921-2 | - +- i386 | dino | 0.2.8-3 | - +- i386 | diod | 1.0.13-3 | - +- i386 | dirac | 1.0.2-6 | - +- i386 | dircproxy | 1.0.5-5.1 | - +- i386 | dirdiff | 2.1-5 | - +- i386 | directvnc | 0.7.7-1 | - +- i386 | dirmngr | 1.1.0-3 | - +- i386 | dis51 | 0.5-1.1 | - +- i386 | discount | 2.1.3-3 | - +- i386 | discover | 2.1.2-5.2 | - ++ i386 | diskscan | - | 0.13-1~bpo70+1 +- i386 | disktype | 9-1 | - +- i386 | display-dhammapada | 0.23-7 | - +- i386 | distcc | 3.1-5 | - +- i386 | distcc-pump | 3.1-5 | - +- i386 | distccmon-gnome | 3.1-5 | - +- i386 | distro-info | 0.10 | - +- i386 | disulfinder | 1.2.11-2+b1 | - +- i386 | djmount | 0.71-5+b1 | - +- i386 | djtools | 1.2.7 | - +- i386 | djview | 3.5.25.3-1 | - +- i386 | djview-plugin | 4.9-2 | - +- i386 | djview3 | 3.5.25.3-1 | - +- i386 | djview4 | 4.9-2 | - +- i386 | djvulibre-bin | 3.5.25.3-1 | - +- i386 | djvulibre-dbg | 3.5.25.3-1 | - +- i386 | djvuserve | 3.5.25.3-1 | - +- i386 | dkopp | 6.2-1 | - +- i386 | dlm-pcmk | 3.0.12-3.2+deb7u2 | - +- i386 | dlz-ldap-enum | 1.0.2-1 | - +- i386 | dmake | 1:4.12-2 | - +- i386 | dmeventd | 2:1.02.74-8 | - +- i386 | dmg2img | 1.6.2-2+b1 | - +- i386 | dmidecode | 2.11-9 | - +- i386 | dmidecode-dbg | 2.11-9 | - +- i386 | dmitry | 1.3a-1 | - +- i386 | dmraid | 1.0.0.rc16-4.2 | - +- i386 | dmsetup | 2:1.02.74-8 | - +- i386 | dmtcp | 1.2.5-1 | - +- i386 | dmtcp-dbg | 1.2.5-1 | - +- i386 | dmucs | 0.6.1-2.1 | - +- i386 | dnet-progs | 2.60 | - +- i386 | dns-flood-detector | 1.12-7 | - +- i386 | dns2tcp | 0.5.2-1 | - +- i386 | dnshistory | 1.3-2+b1 | - +- i386 | dnsmasq-base | 2.62-3+deb7u1 | - +- i386 | dnsmasq-utils | 2.62-3+deb7u1 | - +- i386 | dnsproxy | 1.16-0.1+b1 | - +- i386 | dnstop | 20120611-2 | - +- i386 | dnstracer | 1.9-4 | - +- i386 | dnsutils | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | docbook-to-man | 1:2.0.0-31 | - +- i386 | docbook-xsl-saxon-gcj | 1.00.dfsg.1-5 | - +- i386 | docbook2x | 0.8.8-8 | - +- i386 | docker | 1.4-5 | - +- i386 | docsis | 0.9.6+git16-g61ee500+dfsg-2 | - ++ i386 | doctest | - | 0.9.1-1~bpo70+1 +- i386 | dodgindiamond2 | 0.2.2-1 | - +- i386 | dolphin | 4:4.8.4-2 | - +- i386 | donkey | 0.5-19 | - +- i386 | doodle | 0.7.0-5 | - +- i386 | doodle-dbg | 0.7.0-5 | - +- i386 | doodled | 0.7.0-5 | - +- i386 | doomsday | 1.9.0-beta6.9+dfsg1-2.1 | - +- i386 | dopewars | 1.5.12-13 | - +- i386 | dos2unix | 6.0-1 | - +- i386 | dosbox | 0.74-3 | - +- i386 | doscan | 0.3.1-3 | - +- i386 | doschk | 1.1-6 | - +- i386 | dose-builddebcheck | 3.0.2-3 | - +- i386 | dose-distcheck | 3.0.2-3 | - +- i386 | dose-extra | 3.0.2-3 | - +- i386 | dosfstools | 3.0.13-1 | - +- i386 | dosfstools-dbg | 3.0.13-1 | - +- i386 | dossizola | 1.0-8.3 | - +- i386 | dot-forward | 1:0.71-2 | - +- i386 | dotmcp | 0.2.2-8 | - +- i386 | dotur | 1.53-2 | - +- i386 | dov4l | 0.9-4.1 | - +! i386 | dovecot-antispam | 2.0+20120225-3 | 2.0+20130822-2~bpo70+1 +! i386 | dovecot-core | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-dbg | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-dev | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-gssapi | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-imapd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-ldap | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-lmtpd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-managesieved | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-mysql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-pgsql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-pop3d | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-sieve | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-solr | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-sqlite | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +- i386 | downtimed | 0.5-2 | - +- i386 | doxygen | 1.8.1.2-2 | - +- i386 | doxygen-gui | 1.8.1.2-2 | - +- i386 | doxymacs | 1.8.0-6 | - +- i386 | dozzaqueux | 3.21-4 | - +- i386 | dpkg | 1.16.12 | - +- i386 | dpm | 1.8.2-1+b2 | - +- i386 | dpm-copy-server-mysql | 1.8.2-1+b2 | - +- i386 | dpm-copy-server-postgres | 1.8.2-1+b2 | - +- i386 | dpm-name-server-mysql | 1.8.2-1+b2 | - +- i386 | dpm-name-server-postgres | 1.8.2-1+b2 | - +- i386 | dpm-rfio-server | 1.8.2-1+b2 | - +- i386 | dpm-server-mysql | 1.8.2-1+b2 | - +- i386 | dpm-server-postgres | 1.8.2-1+b2 | - +- i386 | dpm-srm-server-mysql | 1.8.2-1+b2 | - +- i386 | dpm-srm-server-postgres | 1.8.2-1+b2 | - +- i386 | dpt-i2o-raidutils | 0.0.6-19 | - +- i386 | drac | 1.12-7.2 | - +- i386 | drac-dev | 1.12-7.2 | - +- i386 | dradio | 3.8-2 | - +- i386 | dragonplayer | 4:4.8.4-2 | - +- i386 | drawmap | 2.5-3 | - +- i386 | drawterm | 20110822-1 | - +- i386 | drawtiming | 0.7.1-5 | - +- i386 | drawxtl | 5.5-3 | - +! i386 | drbd8-utils | 2:8.3.13-2 | 2:8.4.4-1~bpo70+1 +- i386 | drc | 3.2.0~dfsg0-1 | - +- i386 | dreamchess | 0.2.0-3 | - +- i386 | drgeo | 1.1.0-10 | - +- i386 | driftnet | 0.1.6+cvs20040426-3 | - +- i386 | drivel | 3.0.3-1 | - +- i386 | drizzle | 1:7.1.36-stable-1 | - +- i386 | drizzle-client | 1:7.1.36-stable-1 | - +- i386 | drizzle-dbg | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-auth-file | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-auth-http | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-auth-ldap | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-auth-pam | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-auth-schema | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-debug | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-dev | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-gearman-udf | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-http-functions | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-js | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-json-server | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-logging-gearman | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-logging-query | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-perf-dictionary | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-query-log | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-rabbitmq | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-regex-policy | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-simple-user-policy | 1:7.1.36-stable-1 | - +- i386 | drizzle-plugin-slave | 1:7.1.36-stable-1 | - +- i386 | dropbear | 2012.55-1.3 | - +- i386 | drumstick-tools | 0.5.0-3 | - +- i386 | dsbltesters | 0.9.5-4 | - +- i386 | dsc-statistics-collector | 201203250530-2 | - +- i386 | dsdp | 5.8-9.1 | - +- i386 | dselect | 1.16.12 | - +- i386 | dsh | 0.25.10-1 | - +- i386 | dsniff | 2.4b1+debian-22 | - +- i386 | dspam | 3.10.1+dfsg-11 | - +- i386 | dspam-dbg | 3.10.1+dfsg-11 | - +- i386 | dssi-example-plugins | 1.1.1~dfsg0-1 | - +- i386 | dssi-host-jack | 1.1.1~dfsg0-1 | - +- i386 | dssi-utils | 1.1.1~dfsg0-1 | - +- i386 | dssp | 2.0.4-2 | - +- i386 | dssp-dbg | 2.0.4-2 | - +- i386 | dsyslog | 0.6.0+b2 | - +- i386 | dsyslog-dbg | 0.6.0+b2 | - +- i386 | dsyslog-module-gnutls | 0.6.0+b2 | - +- i386 | dsyslog-module-mysql | 0.6.0+b2 | - +- i386 | dsyslog-module-postgresql | 0.6.0+b2 | - +- i386 | dtach | 0.8-2.1 | - +- i386 | dtaus | 0.9-1 | - +- i386 | duende | 1.4.12-5 | - +- i386 | duff | 0.5.2-1 | - +- i386 | duma | 2.5.15-1.1 | - +- i386 | dump | 0.4b44-1 | - +- i386 | dumpasn1 | 20120521-1 | - +- i386 | dumpet | 2.1-4 | - +- i386 | dunst | 0.2.0-3 | - +- i386 | duplicity | 0.6.18-3 | - +- i386 | dv4l | 1.0-5 | - +- i386 | dvb-apps | 1.1.1+rev1483-1 | - +- i386 | dvb-tools | 0.8.8-3 | - +- i386 | dvbackup | 1:0.0.4-7 | - +- i386 | dvbcut | 0.5.4+svn178-2 | - +- i386 | dvblast | 2.2-1 | - +- i386 | dvbsnoop | 1.4.50-4 | - +- i386 | dvbstream | 0.6+cvs20090621-1 | - +- i386 | dvbstreamer | 2.1.0-2.3 | - +- i386 | dvbtune | 0.5.ds-1 | - +- i386 | dvd+rw-tools | 7.1-10 | - +- i386 | dvd+rw-tools-dbg | 7.1-10 | - +- i386 | dvdauthor | 0.7.0-1.1+b2 | - +- i386 | dvdbackup | 0.4.2-1 | - +- i386 | dvdbackup-dbg | 0.4.2-1 | - +- i386 | dvdisaster | 0.72.4-1 | - +- i386 | dvdtape | 1.6-1 | - +- i386 | dvgrab | 3.5-2 | - +- i386 | dvhtool | 1.0.1-5 | - +- i386 | dvi2dvi | 2.0alpha-9.2 | - +- i386 | dvi2ps | 5.1j-1 | - +- i386 | dvidvi | 1.0-8etch2 | - +- i386 | dvifb | 1:01.03-14.1+b1 | - +- i386 | dvilx | 1:01.03-14.1+b1 | - +- i386 | dvipng | 1.14-1+b1 | - +- i386 | dvipost | 1.1-4 | - +- i386 | dvipsk-ja | 5.98+p1.7b-1.1 | - +- i386 | dvisvga | 1:01.03-14.1+b1 | - +- i386 | dvorak7min | 1.6.1-13.1 | - +- i386 | dvsink | 0.8.3.6-1+b2 | - +- i386 | dvsource | 0.8.3.6-1+b2 | - +- i386 | dvswitch | 0.8.3.6-1+b2 | - +- i386 | dvtm | 0.6-1 | - +- i386 | dwarfdump | 20120410-2 | - +- i386 | dwarves | 1.10-2 | - +- i386 | dwb | 20120628hg-1 | - +- i386 | dwdiff | 2.0.4-1 | - +- i386 | dwm | 6.0-4 | - +- i386 | dwww | 1.11.8 | - +- i386 | dwz | 0.4-1 | - +- i386 | dx | 1:4.4.4-4+b2 | - +- i386 | dxpc | 3.9.2-3 | - +- i386 | dynalogin-server | 0.9.14-2 | - +- i386 | dynamite | 0.1.1-2 | - +- i386 | dynare | 4.3.0-2 | - +- i386 | dzedit | 20061220+dfsg3-2 | - +- i386 | dzen2 | 0.8.5-4 | - +- i386 | e00compr | 1.0.1-2 | - +- i386 | e2fsck-static | 1.42.5-1.1 | - +- i386 | e2fslibs | 1.42.5-1.1 | - +- i386 | e2fslibs-dbg | 1.42.5-1.1 | - +- i386 | e2fslibs-dev | 1.42.5-1.1 | - +- i386 | e2fsprogs | 1.42.5-1.1 | - +- i386 | e2fsprogs-dbg | 1.42.5-1.1 | - +- i386 | e2ps | 4.34-4 | - +- i386 | e2tools | 0.0.16-6.1 | - +- i386 | e2undel | 0.82-1.1 | - +- i386 | e3 | 1:2.71-1 | - +- i386 | eancheck | 1.0-1.1 | - +- i386 | easychem | 0.6-7 | - +- i386 | easyh10 | 1.5-1 | - +- i386 | easymp3gain-gtk | 0.5.0+svn135-1 | - +- i386 | easymp3gain-gtk-dbg | 0.5.0+svn135-1 | - +- i386 | easytag | 2.1.7-2 | - +- i386 | eatmydata | 26-2 | - +- i386 | eb-utils | 4.4.3-6 | - +- i386 | ebhttpd | 1:1.0.dfsg.1-4.3 | - +- i386 | eblook | 1:1.6.1-12 | - +- i386 | ebnetd | 1:1.0.dfsg.1-4.3 | - +- i386 | ebnetd-common | 1:1.0.dfsg.1-4.3 | - +- i386 | eboard | 1.1.1-5 | - +- i386 | ebook-speaker | 2.0-3 | - +- i386 | ebook-speaker-dbg | 2.0-3 | - +- i386 | ebook-tools-dbg | 0.2.1-2+b1 | - +- i386 | ebtables | 2.0.10.4-1 | - +- i386 | ebumeter | 0.1.0~dfsg-2 | - +- i386 | ebview | 0.3.6.2-1.2 | - +- i386 | ecasound | 2.9.0-1 | - +- i386 | ecatools | 2.9.0-1 | - +- i386 | echoping | 6.0.2-6 | - +- i386 | ecj | 3.5.1-3 | - +- i386 | ecj-gcj | 3.5.1-3 | - +- i386 | ecl | 11.1.1+dfsg1-2 | - +- i386 | eclipse-cdt-jni | 8.1.0+dfsg-2 | - +- i386 | eclipse-pde | 3.8.0~rc4-1 | - +- i386 | eclipse-platform | 3.8.0~rc4-1 | - +- i386 | eclipse-rcp | 3.8.0~rc4-1 | - +- i386 | ecm | 1.03-1 | - +- i386 | ecryptfs-utils | 99-1 | - +- i386 | ecryptfs-utils-dbg | 99-1 | - +- i386 | ed | 1.6-2 | - +- i386 | ed2k-hash | 0.3.3+deb2-1 | - +- i386 | edac-utils | 0.18-1 | - +- i386 | edenmath.app | 1.1.1a-7+b5 | - +- i386 | edfbrowser | 1.48-1 | - +- i386 | edisplay | 0.8.5-5+deb7u3 | - +- i386 | edos-distcheck | 1.4.2-13+b1 | - +- i386 | education-astronomy | 1.713+deb7u1 | - +- i386 | education-chemistry | 1.713+deb7u1 | - +- i386 | education-common | 1.713+deb7u1 | - +- i386 | education-desktop-gnome | 1.713+deb7u1 | - +- i386 | education-desktop-kde | 1.713+deb7u1 | - +- i386 | education-desktop-lxde | 1.713+deb7u1 | - +- i386 | education-desktop-other | 1.713+deb7u1 | - +- i386 | education-desktop-sugar | 1.713+deb7u1 | - +- i386 | education-desktop-xfce | 1.713+deb7u1 | - +- i386 | education-development | 1.713+deb7u1 | - +- i386 | education-electronics | 1.713+deb7u1 | - +- i386 | education-geography | 1.713+deb7u1 | - +- i386 | education-graphics | 1.713+deb7u1 | - +- i386 | education-language | 1.713+deb7u1 | - +- i386 | education-laptop | 1.713+deb7u1 | - +- i386 | education-logic-games | 1.713+deb7u1 | - +- i386 | education-main-server | 1.713+deb7u1 | - +- i386 | education-mathematics | 1.713+deb7u1 | - +- i386 | education-menus | 1.713+deb7u1 | - +- i386 | education-misc | 1.713+deb7u1 | - +- i386 | education-music | 1.713+deb7u1 | - +- i386 | education-networked | 1.713+deb7u1 | - +- i386 | education-physics | 1.713+deb7u1 | - +- i386 | education-services | 1.713+deb7u1 | - +- i386 | education-standalone | 1.713+deb7u1 | - +- i386 | education-tasks | 1.713+deb7u1 | - +- i386 | education-thin-client | 1.713+deb7u1 | - +- i386 | education-thin-client-server | 1.713+deb7u1 | - +- i386 | education-workstation | 1.713+deb7u1 | - +- i386 | eegdev-plugins-free | 0.2-3 | - +- i386 | eep24c | 0.1.2-5 | - +- i386 | efax | 1:0.9a-19 | - +- i386 | efax-gtk | 3.2.8-1+b1 | - +- i386 | efibootmgr | 0.5.4-3 | - +- i386 | efilinux | 1.0-2 | - +- i386 | efingerd | 1.6.2.7+nmu1 | - +- i386 | eflite | 0.4.1-6 | - +- i386 | efte | 1.1-1 | - +- i386 | eggdrop | 1.6.20-1 | - +- i386 | eiciel | 0.9.8.1-3 | - +- i386 | einstein | 2.0.dfsg.2-9 | - +! i386 | eiskaltdcpp-daemon | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-daemon-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-gtk | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-gtk-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 ++ i386 | eiskaltdcpp-gtk3 | - | 2.2.9-3~bpo70+1 ++ i386 | eiskaltdcpp-gtk3-dbg | - | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-qt | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-qt-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 ++ i386 | eiskaltdcpp-qt-mini | - | 2.2.9-3~bpo70+1 ++ i386 | eiskaltdcpp-qt-mini-dbg | - | 2.2.9-3~bpo70+1 +- i386 | ejabberd | 2.1.10-4+deb7u1 | - +- i386 | eject | 2.1.5+deb1+cvs20081104-13 | - +- i386 | ekeyd | 1.1.5-4 | - +- i386 | ekeyd-egd-linux | 1.1.5-4 | - +- i386 | ekg | 1:1.9~pre+r2854-1 | - +- i386 | ekg-gtk | 1:1.9~pre+r2854-1 | - +- i386 | ekg2 | 1:0.3.1-3 | - +- i386 | ekg2-core | 1:0.3.1-3 | - +- i386 | ekg2-dbg | 1:0.3.1-3 | - +- i386 | ekg2-gnupg | 1:0.3.1-3 | - +- i386 | ekg2-jabber | 1:0.3.1-3 | - +- i386 | ekg2-remote | 1:0.3.1-3 | - +- i386 | ekg2-scripting-perl | 1:0.3.1-3 | - +- i386 | ekg2-scripting-python | 1:0.3.1-3 | - +- i386 | ekg2-ui-gtk | 1:0.3.1-3 | - +- i386 | ekg2-ui-ncurses | 1:0.3.1-3 | - +- i386 | ekg2-xosd | 1:0.3.1-3 | - +- i386 | ekiga | 3.2.7-6 | - +- i386 | ekiga-dbg | 3.2.7-6 | - +- i386 | elastix | 4.5-2 | - +- i386 | electric-fence | 2.2.4 | - +- i386 | electricsheep | 2.7~b12+svn20091224-1.1 | - +- i386 | eleeye | 0.29.6-2 | - +- i386 | elektra-bin | 0.7.1-1 | - +- i386 | elfrc | 0.7-1 | - +- i386 | elfutils | 0.152-1+wheezy1 | - +- i386 | elilo | 3.14-2 | - +- i386 | elinks | 0.12~pre5-9 | - +- i386 | elinks-lite | 0.12~pre5-9 | - +- i386 | elk | 3.99.8-2 | - +- i386 | elmer | 6.1.0.svn.5396.dfsg2-2 | - +- i386 | elmer-dbg | 6.1.0.svn.5396.dfsg2-2 | - +- i386 | elvis | 2.2.0-11.1 | - +- i386 | elvis-console | 2.2.0-11.1 | - +- i386 | elvis-tiny | 1.4-23 | - +- i386 | elvis-tools | 2.2.0-11.1 | - +- i386 | emacs-mozc | 1.5.1090.102-4+deb7u1 | - +- i386 | emacs-mozc-bin | 1.5.1090.102-4+deb7u1 | - +- i386 | emacs23 | 23.4+1-4 | - +- i386 | emacs23-bin-common | 23.4+1-4 | - +- i386 | emacs23-lucid | 23.4+1-4 | - +- i386 | emacs23-nox | 23.4+1-4 | - +- i386 | embassy-domainatrix | 0.1.0+20110714-1 | - +- i386 | embassy-domalign | 0.1.0+20110714-1 | - +- i386 | embassy-domsearch | 1:0.1.0+20110714-1 | - +- i386 | ember | 0.6.2+dfsg-2 | - +- i386 | emboss | 6.4.0-2 | - +- i386 | emboss-lib | 6.4.0-2 | - +- i386 | emerillon | 0.1.90-1 | - +- i386 | emerillon-dev | 0.1.90-1 | - +- i386 | emms | 3.0+20110425+1.git298e022-4 | - +- i386 | empathy | 3.4.2.3-2+deb7u1 | - +- i386 | empathy-dbg | 3.4.2.3-2+deb7u1 | - +- i386 | empire | 1.7-3 | - +- i386 | empire-hub | 1.0.2.1 | - +- i386 | empire-lafe | 1.1-1 | - +- i386 | empty-expect | 0.6.18b-3 | - +- i386 | emu8051 | 1.1.0-1 | - +- i386 | enblend | 4.0+dfsg-4+b3 | - +- i386 | enca | 1.13-4 | - +- i386 | encfs | 1.7.4-2.4+b1 | - +- i386 | enchant | 1.6.0-7 | - +- i386 | enemylines3 | 1.2-7 | - +- i386 | enemylines7 | 0.6-3 | - +- i386 | enfuse | 4.0+dfsg-4+b3 | - +- i386 | engauge-digitizer | 5.0-3 | - +- i386 | enigma | 1.10~~pre-alpha+r2236-1 | - +- i386 | enigmail | 2:1.4.1-2 | - +- i386 | enna | 0.4.1~r3557-2.1 | - +- i386 | enna-dbg | 0.4.1~r3557-2.1 | - +- i386 | enscribe | 0.1.0-1.1 | - +- i386 | enscript | 1.6.5.90-2 | - +- i386 | ent | 1.1debian-2 | - +- i386 | enum | 1.1-1 | - +- i386 | environment-modules | 3.2.9c-3 | - +- i386 | envstore | 2.0.4-1 | - +- i386 | eog | 3.4.2-1+build1 | - +- i386 | eog-dbg | 3.4.2-1+build1 | - +- i386 | eog-plugins | 3.4.1-1 | - +- i386 | eot-utils | 1.0-1 | - +- i386 | epdfview | 0.1.8-3 | - +- i386 | eperl | 2.2.14-18 | - +- i386 | epic4 | 1:2.10.1-1+b3 | - +- i386 | epic5 | 1.1.2-2+b3 | - +- i386 | epiphany | 0.7.0-6 | - +- i386 | epiphany-browser | 3.4.2-2.1 | - +- i386 | epiphany-browser-dbg | 3.4.2-2.1 | - +- i386 | epiphany-browser-dev | 3.4.2-2.1 | - +- i386 | epiphany-extensions | 3.4.0-2 | - +- i386 | epix | 1.2.10-1 | - +- i386 | epm | 4.2-6 | - +- i386 | epsilon-bin | 0.9.1-2 | - +- i386 | epstool | 3.08+repack-3 | - +- i386 | epub-utils | 0.2.1-2+b1 | - +- i386 | epwutil | 1.1-8.1 | - +- i386 | eq10q | 1.2-2 | - +- i386 | eql | 1.2.ds1-3 | - +- i386 | eqonomize | 0.6-7 | - +! i386 | erlang-appmon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-asn1 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-base | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-base-hipe | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-common-test | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-corba | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-crypto | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 ++ i386 | erlang-dbg | - | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-debugger | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-dev | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-dialyzer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-diameter | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-edoc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-eldap | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-erl-docgen | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- i386 | erlang-esdl | 1.2-2 | - +! i386 | erlang-et | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-eunit | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-gs | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- i386 | erlang-guestfs | 1:1.18.1-1+deb7u3 | - +! i386 | erlang-ic | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-inets | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- i386 | erlang-inviso | 1:15.b.1-dfsg-4 | - +! i386 | erlang-megaco | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-mnesia | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-observer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-odbc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-os-mon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-parsetools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-percept | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-pman | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-public-key | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-reltool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-runtime-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-snmp | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ssh | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ssl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-syntax-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-test-server | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-toolbar | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-tv | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-typer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-webtool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-wx | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-xmerl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +- i386 | erlang-yaws | 1.94-1 | - +- i386 | eruby | 1.0.5-2.1 | - +- i386 | escputil | 5.2.9-1 | - +- i386 | esekeyd | 1.2.7-1 | - +- i386 | esmtp | 1.2-10 | - +! i386 | esniper | 2.27.0-1 | 2.28.0-1~bpo70+1 +- i386 | esorex | 3.9.6-1 | - +- i386 | espctag | 0.3-1 | - +- i386 | espeak | 1.46.02-2 | - +- i386 | espeak-data | 1.46.02-2 | - +- i386 | espeak-dbg | 1.46.02-2 | - +- i386 | espeakedit | 1.46.02-2 | - +- i386 | espeakup | 1:0.71-13 | - +- i386 | esperanza | 0.4.0+git20091017-2+b1 | - +- i386 | estic | 1.61-20.1 | - +- i386 | esys-particle | 2.1-4 | - +- i386 | eterm | 0.9.6-1 | - +- i386 | etherape | 0.9.12-1 | - +- i386 | etherpuppet | 0.3-2 | - +- i386 | etherwake | 1.09-3 | - +- i386 | ethstatus | 0.4.3 | - +- i386 | ethtool | 1:3.4.2-1 | - +- i386 | etl-dev | 0.04.15-1 | - +- i386 | etsf-io | 1.0.3-4+b1 | - +- i386 | etw | 3.6+svn140-4 | - +- i386 | eukleides | 1.5.4-2 | - +- i386 | euler | 1.61.0-8.1 | - +- i386 | eurephia | 1.0.1-3+b1 | - +- i386 | eventstat | 0.01.15-1 | - +- i386 | evilvte | 0.5.1-1 | - +! i386 | evilwm | 1.0.0-1 | 1.1.0-3~bpo70+1 +- i386 | evince | 3.4.0-3.1 | - +- i386 | evince-dbg | 3.4.0-3.1 | - +- i386 | evince-gtk | 3.4.0-3.1 | - +- i386 | evolution | 3.4.4-3 | - +- i386 | evolution-data-server | 3.4.4-3 | - +- i386 | evolution-data-server-dbg | 3.4.4-3 | - +- i386 | evolution-data-server-dev | 3.4.4-3 | - +- i386 | evolution-dbg | 3.4.4-3 | - +- i386 | evolution-dev | 3.4.4-3 | - +- i386 | evolution-ews | 3.4.4-1 | - +- i386 | evolution-exchange | 3.4.4-1 | - +- i386 | evolution-exchange-dbg | 3.4.4-1 | - +- i386 | evolution-mapi | 3.4.4-1 | - +- i386 | evolution-mapi-dbg | 3.4.4-1 | - +- i386 | evolution-plugins | 3.4.4-3 | - +- i386 | evolution-plugins-experimental | 3.4.4-3 | - +- i386 | evolution-rss | 0.3.91-2 | - +- i386 | evolution-webcal | 2.32.0-2+b2 | - +- i386 | evolver | 2.30c.dfsg-3 | - +- i386 | evolvotron | 0.6.1-1+wheezy1 | - +- i386 | evtest | 1:1.30-1 | - +- i386 | eweouz | 0.7+b1 | - +- i386 | ewf-tools | 20100226-1+b1 | - +- i386 | ewipe | 1.2.0-8 | - +- i386 | exactimage | 0.8.5-5+deb7u3 | - +- i386 | exactimage-dbg | 0.8.5-5+deb7u3 | - +- i386 | excellent-bifurcation | 0.0.20071015-5 | - +- i386 | execstack | 0.0.20090925-6 | - +! i386 | exfat-fuse | 0.9.7-2 | 1.0.1-1~bpo70+1 +! i386 | exfat-utils | 0.9.7-2 | 1.0.1-1~bpo70+1 +- i386 | exif | 0.6.20-2 | - +- i386 | exifprobe | 2.0.1-1 | - +- i386 | exiftags | 1.01-5 | - +- i386 | exiftran | 2.07-10 | - +- i386 | exim4-base | 4.80-7 | - +- i386 | exim4-daemon-heavy | 4.80-7 | - +- i386 | exim4-daemon-heavy-dbg | 4.80-7 | - +- i386 | exim4-daemon-light | 4.80-7 | - +- i386 | exim4-daemon-light-dbg | 4.80-7 | - +- i386 | exim4-dbg | 4.80-7 | - +- i386 | exim4-dev | 4.80-7 | - +- i386 | eximon4 | 4.80-7 | - +- i386 | exiv2 | 0.23-1 | - +- i386 | exo-utils | 0.6.2-5 | - +- i386 | exo-utils-dbg | 0.6.2-5 | - +- i386 | exonerate | 2.2.0-6 | - +- i386 | expat | 2.1.0-1+deb7u1 | - +- i386 | expect | 5.45-2 | - +- i386 | expect-dev | 5.45-2 | - +- i386 | explain | 0.52.D002-1 | - +- i386 | exrtools | 0.4-1.2 | - +- i386 | ext3grep | 0.10.1-3.2 | - ++ i386 | ext4magic | - | 0.3.1-1~bpo70+1 +- i386 | extace | 1.9.9-6 | - +- i386 | extlinux | 2:4.05+dfsg-6+deb7u1 | - +- i386 | extract | 1:0.6.3-5 | - +- i386 | extrema | 4.4.5.dfsg-3 | - +- i386 | extremetuxracer | 0.4-5 | - +- i386 | extremetuxracer-dbg | 0.4-5 | - +- i386 | extsmail | 1.4-1 | - +- i386 | extundelete | 0.2.0-2.1 | - +- i386 | exuberant-ctags | 1:5.9~svn20110310-4 | - +- i386 | ez-ipupdate | 3.0.11b8-13.4 | - +- i386 | ezmlm-browse | 0.10-3 | - +- i386 | ezstream | 0.5.6~dfsg-1 | - +- i386 | eztrace | 0.7-2-4 | - +- i386 | f-spot | 0.8.2-5 | - +- i386 | f2c | 20100827-1 | - ++ i386 | f3 | - | 2.2-1~bpo70+1 +- i386 | faad | 2.7-8 | - +- i386 | faad2-dbg | 2.7-8 | - +- i386 | fact++ | 1.5.3~dfsg-1 | - +- i386 | faifa | 0.2~svn82-1 | - +- i386 | fair | 0.5.3-1 | - +- i386 | fairymax | 4.8q-2 | - +- i386 | fake | 1.1.11-1+b1 | - +- i386 | fakepop | 11 | - +- i386 | fakeroot | 1.18.4-2 | - +- i386 | fakeroot-ng | 0.16-1.1 | - +- i386 | faketime | 0.8-1 | - +- i386 | falconpl | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-curl | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbg | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbi | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbi-firebird | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbi-mysql | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbi-postgresql | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbi-sqlite3 | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dbus | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dev | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-dmtx | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-gd2 | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-gtk | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-hpdf | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-mongodb | 0.9.6.9-git20120606-2 | - +- i386 | falconpl-sdl | 0.9.6.9-git20120606-2 | - +- i386 | falselogin | 0.3-4 | - +- i386 | fam | 2.7.0-17 | - +- i386 | fapg | 0.41-1 | - +- i386 | farpd | 0.2-11 | - +- i386 | fastdep | 0.16-13 | - +- i386 | fastdnaml | 1.2.2-10 | - +- i386 | fastforward | 1:0.51-3 | - +- i386 | fastjar | 2:0.98-3 | - +- i386 | fastlink | 4.1P-fix95-3 | - +- i386 | fasttree | 2.1.4-1 | - +- i386 | fastx-toolkit | 0.0.13.2-1 | - +- i386 | fatattr | 1.0.1-9 | - +- i386 | fatattr-dbg | 1.0.1-9 | - +- i386 | fatrat | 1.1.3-5 | - +- i386 | fatrat-czshare | 1.1.3-1 | - +- i386 | fatrat-opensubtitles | 1.1.3-1 | - +- i386 | fatresize | 1.0.2-6 | - +- i386 | fatsort | 0.9.15.245-1 | - +- i386 | faucc | 20090220-1 | - +- i386 | fauhdlc | 20110812-1 | - +- i386 | faumachine | 20110812-1.2 | - +- i386 | faust | 0.9.46-2 | - +- i386 | faustworks | 0.3.2~repack0-1 | - +- i386 | fbautostart | 2.718281828-1 | - +- i386 | fbb | 7.04j-8.2 | - +- i386 | fbcat | 0.3-1 | - +- i386 | fbdesk | 1.4.1-10 | - +- i386 | fbi | 2.07-10 | - +- i386 | fbpager | 0.1.5~git20090221.1.8e0927e6-1 | - +- i386 | fbpanel | 6.1-6 | - +- i386 | fbreader | 0.12.10dfsg-8 | - +- i386 | fbset | 2.1-25 | - +- i386 | fbterm | 1.7-2 | - +- i386 | fbterm-ucimf | 0.2.9-2 | - +- i386 | fbtv | 3.102-3 | - +- i386 | fbx-playlist | 20070531+dfsg.1-3 | - +- i386 | fbxkb | 0.6-1.1 | - +- i386 | fcc | 2.7-1 | - +- i386 | fceu | 0.98.12-4.1 | - +- i386 | fcgiwrap | 1.0.3-3 | - +! i386 | fcitx-bin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- i386 | fcitx-chewing | 0.1.2-2 | - +! i386 | fcitx-config-gtk | 0.4.4-1 | 0.4.7-1~bpo70+1 +! i386 | fcitx-config-gtk2 | 0.4.4-1 | 0.4.7-1~bpo70+1 +! i386 | fcitx-dbg | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- i386 | fcitx-frontend-fbterm | 0.1.4-1 | - +! i386 | fcitx-frontend-gtk2 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-gtk3 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-qt4 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-googlepinyin | 0.1.5-2 | 0.1.6-1~bpo70+1 +- i386 | fcitx-hangul | 0.1.1-1 | - +- i386 | fcitx-libpinyin | 0.1.1-2 | - +! i386 | fcitx-libs | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-libs-dev | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 ++ i386 | fcitx-libs-gclient | - | 1:4.2.8.3-2~bpo70+1 ++ i386 | fcitx-libs-qt | - | 1:4.2.8.3-2~bpo70+1 +- i386 | fcitx-m17n | 0.1.2-2 | - +! i386 | fcitx-module-cloudpinyin | 0.2.2-1+deb7u1 | 0.3.2-1~bpo70+1 +! i386 | fcitx-module-dbus | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-kimpanel | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-lua | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 ++ i386 | fcitx-module-quickphrase-editor | - | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-x11 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-modules | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- i386 | fcitx-mozc | 1.5.1090.102-4+deb7u1 | - +! i386 | fcitx-pinyin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-qw | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-sunpinyin | 0.3.7-1 | 0.4.1-1~bpo70+1 +! i386 | fcitx-table | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-amharic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-arabic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-array30 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-array30-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-bingchan | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-boshiamy | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-cangjie-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cantonese | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cantonhk | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cns11643 | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-compose | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-dianbaoma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-easy-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-emoji | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-erbi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-ipa-x-sampa | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-jyutping | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-latex | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-malayalam-phonetic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-quick-classic | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-quick3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-quick5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-rustrad | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-scj6 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-stroke5 | 0.3.1-1 | 0.3.4-1~bpo70+1 ++ i386 | fcitx-table-t9 | - | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-tamil-remington | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-thai | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-translit | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-translit-ua | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-viqr | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-wanfeng | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wbpy | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wu | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-wubi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wubi-large | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-yawerty | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-zhengma | 0.3.1-1 | 0.3.4-1~bpo70+1 ++ i386 | fcitx-table-zhengma-large | - | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-ziranma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-tools | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-ui-classic | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- i386 | fcitx-ui-light | 0.1.3-2 | - +- i386 | fcitx-unikey | 0.1.0-1 | - +- i386 | fcode-utils | 1.0.2-3 | - +- i386 | fcoe-utils | 1.0.23-1 | - +- i386 | fcrackzip | 1.0-4 | - +- i386 | fdclone | 3.00k-1 | - +- i386 | fdflush | 1.0.1.3 | - +- i386 | fdm | 1.6+cvs20111013-2 | - +- i386 | fdupes | 1.50-PR2-4 | - +- i386 | fdutils | 5.5-20060227-6 | - +- i386 | febootstrap | 3.17-1 | - +- i386 | feh | 2.3-2 | - +- i386 | felix-latin | 2.0-3.1 | - +- i386 | fence-agents | 3.1.5-2 | - +- i386 | fenix | 0.92a.dfsg1-9 | - +- i386 | fenix-plugin-mpeg | 0.0.20070803-5 | - +- i386 | fenix-plugins | 0.0.20070803-5 | - +- i386 | fenix-plugins-system | 0.0.20070803-5 | - +- i386 | festival | 1:2.1~release-5.1 | - +- i386 | festival-dev | 1:2.1~release-5.1 | - +- i386 | fet | 5.18.0-1 | - +- i386 | fetchmail | 6.3.21-4 | - +- i386 | ffado-dbus-server | 2.0.99+svn2171-2 | - +- i386 | ffado-tools | 2.0.99+svn2171-2 | - +- i386 | ffdiaporama | 1.3-1 | - +- i386 | ffe | 0.2.8-1 | - +- i386 | ffindex | 0.9.6.1-1 | - +- i386 | ffindex-dbg | 0.9.6.1-1 | - +- i386 | ffmpeg | 6:0.8.9-1 | - +- i386 | ffmpeg2theora | 0.27-2 | - +- i386 | ffmpegthumbnailer | 2.0.7-2 | - +- i386 | ffmpegthumbnailer-dbg | 2.0.7-2 | - +- i386 | ffmpegthumbs | 4:4.8.4-2 | - +- i386 | ffmsindex | 2.17-1 | - +- i386 | ffproxy | 1.6-10 | - +- i386 | ffrenzy | 1.0.2~svn20070530-4 | - +- i386 | fftw-dev | 2.1.5-1 | - +- i386 | fftw2 | 2.1.5-1 | - +- i386 | fgetty | 0.6-5 | - ++ i386 | fglrx-atieventsd | - | 1:13.12-4~bpo70+1 ++ i386 | fglrx-control | - | 1:13.12-4~bpo70+1 ++ i386 | fglrx-driver | - | 1:13.12-4~bpo70+1 ++ i386 | fglrx-legacy-atieventsd | - | 8.97.100.7-3~bpo70+1 ++ i386 | fglrx-legacy-control | - | 8.97.100.7-3~bpo70+1 ++ i386 | fglrx-legacy-driver | - | 8.97.100.7-3~bpo70+1 ++ i386 | fglrx-legacy-modules-dkms | - | 8.97.100.7-3~bpo70+1 ++ i386 | fglrx-legacy-source | - | 8.97.100.7-3~bpo70+1 ++ i386 | fglrx-modules-dkms | - | 1:13.12-4~bpo70+1 ++ i386 | fglrx-source | - | 1:13.12-4~bpo70+1 +- i386 | fhist | 1.18-1 | - +- i386 | fig2sxd | 0.20-1 | - +- i386 | figlet | 2.2.5-2 | - +- i386 | figtoipe | 20080517-1 | - +- i386 | fil-plugins | 0.3.0-3 | - +! i386 | file | 5.11-2 | 1:5.14-2~bpo70+1 ++ i386 | file-dbg | - | 1:5.14-2~bpo70+1 +- i386 | file-kanji | 1.1-16 | - +- i386 | file-roller | 3.4.2-1 | - +- i386 | filelight | 4:4.8.4-1 | - +- i386 | fileschanged | 0.6.5-1.2 | - +- i386 | filetea | 0.1.12+dfsg1-3 | - +- i386 | filezilla | 3.5.3-2 | - +- i386 | fillets-ng | 1.0.1-2 | - +- i386 | filo | 1.1+2011020401.2 | - +- i386 | filter | 2.6.3-1 | - +- i386 | filtergen | 0.12.4-5.1 | - +- i386 | filters | 2.48 | - +- i386 | fim | 0.3-beta-prerelease-1.3+b1 | - +! i386 | finch | 2.10.6-3 | 2.10.7-2~bpo70+1 +- i386 | findimagedupes | 2.18-4+b2 | - +- i386 | findutils | 4.4.2-4 | - +- i386 | finger | 0.17-15 | - +- i386 | fingerd | 0.17-15 | - +- i386 | fio | 2.0.8-2 | - +- i386 | firebird-dev | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-classic | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-classic-common | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-classic-dbg | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-server-common | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-super | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-super-dbg | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firebird2.5-superclassic | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | firedns | 0.9.12+dfsg-3 | - +- i386 | firestarter | 1.0.3-11 | - +- i386 | fische | 3.2.2-3 | - +- i386 | fish | 1.23.1+20120106.git8b407a3-1 | - +- i386 | fish-dbg | 1.23.1+20120106.git8b407a3-1 | - +- i386 | fityk | 0.9.8-3+b1 | - +- i386 | fiu-utils | 0.90-3 | - +- i386 | fixincludes | 1:4.7.2-5 | - +- i386 | fizmo-console | 0.7.2-2 | - +- i386 | fizmo-ncursesw | 0.7.2-2 | - +- i386 | fl-cow | 0.6-4.1 | - +- i386 | flac | 1.2.1-6 | - +- i386 | flactag | 2.0.4-1 | - +- i386 | flake | 0.11-2 | - +- i386 | flam3 | 3.0.1-2.1 | - +- i386 | flamerobin | 0.9.3~svn+2220-1 | - +- i386 | flare | 0.15.1-1 | - +- i386 | flashrom | 0.9.5.2+r1546-1 | - +- i386 | flasm | 1.62-6 | - +- i386 | flatzinc | 3.7.3-1 | - +- i386 | fldiff | 1.1+0-2 | - +- i386 | fldigi | 3.21.48-1 | - +- i386 | fldigi-dbg | 3.21.48-1 | - +- i386 | flex | 2.5.35-10.1 | - +- i386 | flex-old | 2.5.4a-10 | - +- i386 | flexc++ | 0.98.00-1 | - +- i386 | flexloader | 0.03-2 | - +- i386 | flexml | 1.9.2-1 | - +- i386 | flip | 1.20-1 | - +- i386 | flite | 1.4-release-6 | - +- i386 | flite1-dev | 1.4-release-6 | - +- i386 | floatbg | 1.0-28 | - +- i386 | flobopuyo | 0.20-5 | - +- i386 | flog | 1.8-3 | - +- i386 | floppyd | 4.0.17-1 | - +! i386 | florence | 0.5.1-1 | 0.6.0-2~bpo70+1 +- i386 | flow-tools | 1:0.68-12.1+b1 | - +- i386 | flow-tools-dev | 1:0.68-12.1+b1 | - +- i386 | flpsed | 0.5.2-1 | - +- i386 | fltk1.1-games | 1.1.10-14 | - +- i386 | fltk1.3-games | 1.3.0-8 | - +- i386 | fluid | 1.3.0-8 | - +- i386 | fluidsynth | 1.1.5-2 | - +- i386 | fluidsynth-dssi | 1.0.0-6 | - +- i386 | flumotion | 0.10.0-3 | - +- i386 | flush | 0.9.12-3 | - +! i386 | fluxbox | 1.3.2-4 | 1.3.5-1~bpo70+1 +- i386 | flvmeta | 1.0.11-1 | - +- i386 | flvstreamer | 2.1c1-1 | - +- i386 | flvtool2 | 1.0.6-4 | - +- i386 | flwm | 1.02+cvs20080422-9 | - +- i386 | flwm-dbg | 1.02+cvs20080422-9 | - ++ i386 | flydraw | - | 1:4.07a~dfsg1-2~bpo1-1 +- i386 | fmit | 0.99.2-1 | - +- i386 | fmtools | 2.0.5 | - +- i386 | fnfx-client | 0.3-14 | - +- i386 | fnfxd | 0.3-14 | - +- i386 | fntsample | 3.2-1+b1 | - +- i386 | focuswriter | 1.3.6-1 | - +- i386 | folks-tools | 0.6.9-1+b1 | - +- i386 | fondu | 0.0.20060102-4 | - +- i386 | font-manager | 0.5.7-4 | - +- i386 | fontconfig | 2.9.0-7.1 | - +- i386 | fontforge | 0.0.20120101+git-2 | - +- i386 | fontforge-dbg | 0.0.20120101+git-2 | - +- i386 | fontforge-extras | 0.3-2 | - +- i386 | fontforge-nox | 0.0.20120101+git-2 | - +- i386 | fontmatrix | 0.6.0+svn20110930-1.1 | - +- i386 | fonts-maitreya | 6.0.5-2 | - +- i386 | fonttools-eexecop | 2.3-1+b2 | - +- i386 | foo-yc20 | 1.3.0-5 | - +- i386 | foobillard | 3.0a-5 | - +- i386 | fookb-plainx | 3.0-3 | - +- i386 | fookb-wmaker | 3.0-3 | - +- i386 | foomatic-db-engine | 4.0.8-3 | - +- i386 | foomatic-filters | 4.0.17-1 | - +- i386 | foremost | 1.5.7-4 | - +- i386 | forked-daapd | 0.19gcd-2.1 | - +- i386 | formed | 3.3f-1.1 | - +- i386 | fortune-mod | 1:1.99.1-4 | - +- i386 | fortune-zh | 1.9 | - +- i386 | fosfat | 0.4.0-3 | - +- i386 | fosfat-dbg | 0.4.0-3 | - +- i386 | fosfat-dev | 0.4.0-3 | - +- i386 | fossil | 1:1.22.1+dfsg-0.1 | - +- i386 | fotowall | 0.9-8 | - +- i386 | fotoxx | 11.11.1-1.1 | - +- i386 | foundry | 0.0.20100226-1+b1 | - +- i386 | foxtrotgps | 1.1.1-2 | - +- i386 | foxtrotgps-dbg | 1.1.1-2 | - +- i386 | fp-compiler | 2.6.0-9 | - +- i386 | fp-compiler-2.6.0 | 2.6.0-9 | - +- i386 | fp-ide | 2.6.0-9 | - +- i386 | fp-ide-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-base | 2.6.0-9 | - +- i386 | fp-units-base-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-db | 2.6.0-9 | - +- i386 | fp-units-db-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-fcl | 2.6.0-9 | - +- i386 | fp-units-fcl-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-fv | 2.6.0-9 | - +- i386 | fp-units-fv-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-gfx | 2.6.0-9 | - +- i386 | fp-units-gfx-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-gnome1 | 2.6.0-9 | - +- i386 | fp-units-gnome1-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-gtk | 2.6.0-9 | - +- i386 | fp-units-gtk-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-gtk2 | 2.6.0-9 | - +- i386 | fp-units-gtk2-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-i386 | 2.6.0-9 | - +- i386 | fp-units-i386-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-math | 2.6.0-9 | - +- i386 | fp-units-math-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-misc | 2.6.0-9 | - +- i386 | fp-units-misc-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-multimedia | 2.6.0-9 | - +- i386 | fp-units-multimedia-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-net | 2.6.0-9 | - +- i386 | fp-units-net-2.6.0 | 2.6.0-9 | - +- i386 | fp-units-rtl | 2.6.0-9 | - +- i386 | fp-units-rtl-2.6.0 | 2.6.0-9 | - +- i386 | fp-utils | 2.6.0-9 | - +- i386 | fp-utils-2.6.0 | 2.6.0-9 | - +- i386 | fped | 0.0+r5986-1 | - +- i386 | fping | 3.2-1 | - +- i386 | fpm2 | 0.79-3 | - +- i386 | fprint-demo | 20080303git-5 | - +- i386 | fprintd | 0.4.1-5-g73edad0-3 | - +- i386 | fprobe | 1.1-7.3 | - +- i386 | fprobe-ulog | 1.1-7.3 | - +- i386 | fqterm | 0.9.6.10-1.1 | - +- i386 | fracplanet | 0.4.0-3 | - +- i386 | frama-c | 20111001+nitrogen+dfsg-4 | - +- i386 | frama-c-base | 20111001+nitrogen+dfsg-4 | - +- i386 | francine | 0.99.8orig-6 | - +- i386 | fraqtive | 0.4.5-6 | - +- i386 | fraqtive-dbg | 0.4.5-6 | - +- i386 | freeaccount | 0.7.6-1 | - +- i386 | freebirth | 0.3.2-8 | - +- i386 | freebsd-buildutils | 9.0-11 | - ++ i386 | freecad | - | 0.13.2800-dfsg-1~bpo70+1 ++ i386 | freecad-dev | - | 0.13.2800-dfsg-1~bpo70+1 +- i386 | freecdb | 0.75 | - +- i386 | freecell-solver-bin | 3.12.0-1 | - +! i386 | freeciv-client-extras | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-gtk | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-sdl | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-xaw3d | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-server | 2.3.2-1 | 2.4.2-1~bpo70+1 +- i386 | freecode-submit | 2.4-1 | - +- i386 | freecraft | 1:1.20-1.1 | - +- i386 | freecraft-dbg | 1:1.20-1.1 | - +- i386 | freediams | 0.7.6-1 | - +- i386 | freedink-dfarc | 3.10-1.1 | - +- i386 | freedink-dfarc-dbg | 3.10-1.1 | - +- i386 | freedink-engine | 1.08.20120427-2.1 | - +- i386 | freedink-engine-dbg | 1.08.20120427-2.1 | - +- i386 | freedroid | 1.0.2+cvs040112-4 | - +- i386 | freedroidrpg | 0.15.1-1 | - +- i386 | freefem | 3.5.8-5 | - +- i386 | freefem++ | 3.19.1-1 | - +- i386 | freefem3d | 1.0pre10-3.1 | - +- i386 | freegish | 1.53+git20101011+dfsg-2 | - +- i386 | freegish-dbg | 1.53+git20101011+dfsg-2 | - +- i386 | freeglut3 | 2.6.0-4 | - +- i386 | freeglut3-dbg | 2.6.0-4 | - +- i386 | freeglut3-dev | 2.6.0-4 | - +- i386 | freehdl | 0.0.7-1.1 | - +- i386 | freeipmi-bmc-watchdog | 1.1.5-3 | - +- i386 | freeipmi-ipmidetect | 1.1.5-3 | - +- i386 | freeipmi-tools | 1.1.5-3 | - +- i386 | freemat | 4.0-5 | - +- i386 | freemedforms-emr | 0.7.6-1 | - +- i386 | freemedforms-libs | 0.7.6-1 | - +- i386 | freenect | 1:0.1.2+dfsg-6 | - +- i386 | freepops | 0.2.9-7 | - +- i386 | freepops-updater-fltk | 0.2.9-7 | - +- i386 | freepops-updater-gnome | 0.2.9-7 | - +- i386 | freeradius | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-dbg | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-iodbc | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-krb5 | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-ldap | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-mysql | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-postgresql | 2.1.12+dfsg-1.2 | - +- i386 | freeradius-utils | 2.1.12+dfsg-1.2 | - +- i386 | freerdp-dbg | 1.0.1-1.1+deb7u2 | - +- i386 | freerdp-x11 | 1.0.1-1.1+deb7u2 | - +- i386 | freesci | 0.6.4-7 | - +- i386 | freespacenotifier | 4:4.8.4-6 | - +- i386 | freesweep | 0.90-2 | - +- i386 | freetalk | 3.2-11 | - +- i386 | freetds-bin | 0.91-2+deb7u1 | - +- i386 | freetds-dev | 0.91-2+deb7u1 | - +- i386 | freetennis | 0.4.8-9 | - +- i386 | freetuxtv | 0.6.5~dfsg1-1 | - +- i386 | freetype2-demos | 2.4.9-1.1 | - +- i386 | freewheeling | 0.6-1.1+b1 | - +- i386 | freewnn-cserver | 1.1.1~a021+cvs20100325-6 | - +- i386 | freewnn-jserver | 1.1.1~a021+cvs20100325-6 | - +- i386 | freewnn-kserver | 1.1.1~a021+cvs20100325-6 | - +- i386 | frei0r-plugins | 1.1.22git20091109-1.2 | - +- i386 | frei0r-plugins-dev | 1.1.22git20091109-1.2 | - +- i386 | freqtweak | 0.7.2-4+b1 | - +- i386 | fritzing | 0.6.3b+dfsg-3.1 | - +- i386 | frog | 0.12.15-3 | - +- i386 | frogr | 0.7-2 | - +- i386 | frotz | 2.43-4 | - +- i386 | frown | 0.6.1-13 | - +- i386 | frozen-bubble | 2.212-3 | - +- i386 | fruit | 2.1.dfsg-6 | - ++ i386 | fs-uae | - | 2.2.3+dfsg-4~bpo70+1 +- i386 | fsarchiver | 0.6.15-1 | - +- i386 | fsgateway | 0.1.1-3 | - +- i386 | fsmark | 3.3-1 | - +- i386 | fso-datad | 0.11.0-1 | - +- i386 | fso-datad-dbg | 0.11.0-1 | - +- i386 | fso-deviced | 0.11.4-1+b1 | - +- i386 | fso-deviced-dbg | 0.11.4-1+b1 | - +- i386 | fso-deviced-player-canberra | 0.11.4-1+b1 | - +- i386 | fso-deviced-player-gstreamer | 0.11.4-1+b1 | - +- i386 | fso-gpsd | 0.8-3.1 | - +- i386 | fso-gsm0710muxd | 0.9.3.1-3 | - +- i386 | fso-gsmd | 0.11.3-2 | - +- i386 | fso-gsmd-dbg | 0.11.3-2 | - +- i386 | fso-gsmd-ezx | 0.11.3-2 | - +- i386 | fso-gsmd-gta04 | 0.11.3-2 | - +- i386 | fso-gsmd-htc | 0.11.3-2 | - +- i386 | fso-gsmd-openmoko | 0.11.3-2 | - +- i386 | fso-usaged | 0.11.0-1 | - +- i386 | fso-usaged-dbg | 0.11.0-1 | - +- i386 | fspanel | 0.7-13 | - +- i386 | fspy | 0.1.1-1 | - +- i386 | fstransform | 0.9.3-1 | - +- i386 | fstrcmp | 0.4.D001-1+deb7u1 | - +- i386 | fsvs | 1.2.3-0+nmu1 | - +- i386 | fswebcam | 20110717-1 | - +- i386 | ftdi-eeprom | 0.3-2 | - +- i386 | fte | 0.50.2b6-1 | - +- i386 | fte-console | 0.50.2b6-1 | - +- i386 | fte-terminal | 0.50.2b6-1 | - +- i386 | fte-xwindow | 0.50.2b6-1 | - +- i386 | fteqcc | 3343+svn3400-3 | - +- i386 | ftjam | 2.5.2-1.1 | - +- i386 | ftnchek | 3.3.1-4 | - +- i386 | ftp | 0.17-27 | - +- i386 | ftp-proxy | 1.9.2.4-8 | - +- i386 | ftp-ssl | 0.17.23+0.2-1+b1 | - +- i386 | ftp.app | 0.3-1 | - +- i386 | ftpcopy | 0.6.7-3 | - +- i386 | ftpd | 0.17-34 | - +- i386 | ftpd-ssl | 0.17.33+0.3-1 | - +- i386 | ftpgrab | 0.1.5-3 | - +- i386 | ftplib-dev | 3.1-1-9 | - +- i386 | ftplib3 | 3.1-1-9 | - +- i386 | ftpmirror | 1.96+dfsg-13 | - +- i386 | fullquottel | 0.1.2-2 | - +- i386 | funnelweb | 3.2-4.2 | - +- i386 | funtools | 1.4.4-3 | - +- i386 | fuse | 2.9.0-2+deb7u1 | - +- i386 | fuse-convmvfs | 0.2.6-2 | - +- i386 | fuse-dbg | 2.9.0-2+deb7u1 | - +- i386 | fuse-emulator-gtk | 1.0.0.1a+dfsg1-4 | - +- i386 | fuse-emulator-sdl | 1.0.0.1a+dfsg1-4 | - +- i386 | fuse-emulator-utils | 1.0.0-4 | - +- i386 | fuse-posixovl | 1.2.20120215+gitf5bfe35-1 | - +- i386 | fusedav | 0.2-3.1 | - +- i386 | fuseext2 | 0.4-1 | - +- i386 | fusefat | 0.1a-1 | - +- i386 | fuseiso | 20070708-3 | - +- i386 | fuseiso9660 | 0.3-1 | - +- i386 | fusesmb | 0.8.7-1.2 | - +- i386 | fusioninventory-agent | 2.2.3-8 | - +- i386 | fuzz | 0.6-14 | - +! i386 | fvwm | 1:2.5.30.ds-1.1 | 1:2.6.5.ds-3~bpo70+1 +- i386 | fvwm1 | 1.24r-55 | - +- i386 | fwbuilder | 5.1.0-3 | - +- i386 | fwbuilder-dbg | 5.1.0-3 | - +- i386 | fweb | 1.62-11.1 | - +! i386 | fwknop-client | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! i386 | fwknop-server | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +- i386 | fwlogwatch | 1.2-2 | - +- i386 | fxcyberjack | 3.99.5final.sp03-1 | - +- i386 | fxload | 0.0.20081013-1 | - +- i386 | fxt-tools | 0.2.6-2 | - +- i386 | fyre | 1.0.1-4 | - +- i386 | g++ | 4:4.7.2-1 | - +- i386 | g++-4.4 | 4.4.7-2 | - +- i386 | g++-4.4-multilib | 4.4.7-2 | - +- i386 | g++-4.6 | 4.6.3-14 | - +- i386 | g++-4.6-multilib | 4.6.3-14 | - +- i386 | g++-4.7 | 4.7.2-5 | - +- i386 | g++-4.7-multilib | 4.7.2-5 | - +- i386 | g++-mingw-w64-i686 | 4.6.3-14+8 | - +- i386 | g++-mingw-w64-x86-64 | 4.6.3-14+8 | - +- i386 | g++-multilib | 4:4.7.2-1 | - +- i386 | g15composer | 3.2-2 | - +- i386 | g15daemon | 1.9.5.3-8.2 | - +- i386 | g15macro | 1.0.3-3 | - +- i386 | g15mpd | 1.2svn.0.svn319-3 | - +- i386 | g15stats | 1.9.2-2 | - +- i386 | g2ipmsg | 0.9.6+dfsg-1.1 | - +- i386 | g3data | 1:1.5.3-2 | - +- i386 | g3dviewer | 0.2.99.5~svn130-1 | - +- i386 | g3dviewer-dbg | 0.2.99.5~svn130-1 | - +- i386 | gabedit | 2.4.2-2 | - +- i386 | gadmin-bind | 0.2.5-2 | - +- i386 | gadmin-bind-dbg | 0.2.5-2 | - +- i386 | gadmin-openvpn-client | 0.1.2-4 | - +- i386 | gadmin-openvpn-client-dbg | 0.1.2-4 | - +- i386 | gadmin-openvpn-server | 0.1.5-3.1 | - +- i386 | gadmin-openvpn-server-dbg | 0.1.5-3.1 | - +- i386 | gadmin-proftpd | 1:0.4.2-1 | - +- i386 | gadmin-proftpd-dbg | 1:0.4.2-1 | - +- i386 | gadmin-rsync | 0.1.7-1 | - +- i386 | gadmin-rsync-dbg | 0.1.7-1 | - +- i386 | gadmin-samba | 0.2.9-3 | - +- i386 | gadmin-samba-dbg | 0.2.9-3 | - +- i386 | gaffitter | 0.6.0-1 | - +- i386 | gaiksaurus | 1.2.1+dev-0.12-6.1 | - +- i386 | galax | 1.1-10+b3 | - +- i386 | galax-extra | 1.1-10+b3 | - +- i386 | galaxd | 1.1-10+b3 | - +- i386 | galculator | 1.3.4-1 | - +- i386 | galleta | 1.0+20040505-5+b1 | - +- i386 | gamazons | 0.83-4 | - +- i386 | gambas3-dev | 3.1.1-2+b1 | - +- i386 | gambas3-gb-cairo | 3.1.1-2+b1 | - +- i386 | gambas3-gb-compress | 3.1.1-2+b1 | - +- i386 | gambas3-gb-compress-bzlib2 | 3.1.1-2+b1 | - +- i386 | gambas3-gb-compress-zlib | 3.1.1-2+b1 | - +- i386 | gambas3-gb-crypt | 3.1.1-2+b1 | - +- i386 | gambas3-gb-db | 3.1.1-2+b1 | - +- i386 | gambas3-gb-db-mysql | 3.1.1-2+b1 | - +- i386 | gambas3-gb-db-odbc | 3.1.1-2+b1 | - +- i386 | gambas3-gb-db-postgresql | 3.1.1-2+b1 | - +- i386 | gambas3-gb-db-sqlite2 | 3.1.1-2+b1 | - +- i386 | gambas3-gb-db-sqlite3 | 3.1.1-2+b1 | - +- i386 | gambas3-gb-dbus | 3.1.1-2+b1 | - +- i386 | gambas3-gb-desktop | 3.1.1-2+b1 | - +- i386 | gambas3-gb-gtk | 3.1.1-2+b1 | - +- i386 | gambas3-gb-gui | 3.1.1-2+b1 | - +- i386 | gambas3-gb-image | 3.1.1-2+b1 | - +- i386 | gambas3-gb-image-effect | 3.1.1-2+b1 | - +- i386 | gambas3-gb-image-imlib | 3.1.1-2+b1 | - +- i386 | gambas3-gb-image-io | 3.1.1-2+b1 | - +- i386 | gambas3-gb-mysql | 3.1.1-2+b1 | - +- i386 | gambas3-gb-net | 3.1.1-2+b1 | - +- i386 | gambas3-gb-net-curl | 3.1.1-2+b1 | - +- i386 | gambas3-gb-net-smtp | 3.1.1-2+b1 | - +- i386 | gambas3-gb-opengl | 3.1.1-2+b1 | - +- i386 | gambas3-gb-opengl-glsl | 3.1.1-2+b1 | - +- i386 | gambas3-gb-opengl-glu | 3.1.1-2+b1 | - +- i386 | gambas3-gb-option | 3.1.1-2+b1 | - +- i386 | gambas3-gb-pcre | 3.1.1-2+b1 | - +- i386 | gambas3-gb-pdf | 3.1.1-2+b1 | - +- i386 | gambas3-gb-qt4 | 3.1.1-2+b1 | - +- i386 | gambas3-gb-qt4-ext | 3.1.1-2+b1 | - +- i386 | gambas3-gb-qt4-opengl | 3.1.1-2+b1 | - +- i386 | gambas3-gb-qt4-webkit | 3.1.1-2+b1 | - +- i386 | gambas3-gb-sdl | 3.1.1-2+b1 | - +- i386 | gambas3-gb-sdl-sound | 3.1.1-2+b1 | - +- i386 | gambas3-gb-signal | 3.1.1-2+b1 | - +- i386 | gambas3-gb-v4l | 3.1.1-2+b1 | - +- i386 | gambas3-gb-vb | 3.1.1-2+b1 | - +- i386 | gambas3-gb-xml | 3.1.1-2+b1 | - +- i386 | gambas3-gb-xml-rpc | 3.1.1-2+b1 | - +- i386 | gambas3-gb-xml-xslt | 3.1.1-2+b1 | - +- i386 | gambas3-runtime | 3.1.1-2+b1 | - +- i386 | gambas3-script | 3.1.1-2+b1 | - +- i386 | gambc | 4.2.8-1.1 | - +- i386 | gambit | 0.2010.09.01-1.1 | - +- i386 | gamgi | 0.15.8-1 | - +- i386 | gamin | 0.1.10-4.1 | - +- i386 | gamine | 1.1-2 | - +- i386 | gammu | 1.31.90-1+b1 | - +- i386 | gammu-smsd | 1.31.90-1+b1 | - +- i386 | gamt | 1.3-1 | - ++ i386 | ganeti-haskell | - | 2.9.4-1~bpo70+1 +! i386 | ganeti-htools | 2.5.2-1 | 2.9.4-1~bpo70+1 +- i386 | ganglia-modules-linux | 1.3.4-6 | - +- i386 | ganglia-monitor | 3.3.8-1+nmu1 | - ++ i386 | ganglia-nagios-bridge | - | 1.0.1-1~bpo70+1 +- i386 | gap-core | 4r4p12-2 | - +- i386 | gap-dev | 4r4p12-2 | - +- i386 | gap-guava | 3.6-2 | - +- i386 | garden-of-coloured-lights | 1.0.8-1+b1 | - +- i386 | gargoyle-free | 2011.1-2 | - +- i386 | garlic | 1.6-1.1 | - +- i386 | garmin-ant-downloader | 0:20110626-1 | - +- i386 | garmin-forerunner-tools | 0.10-3 | - +- i386 | gatling | 0.12cvs20120114-4 | - +- i386 | gatos | 0.0.5-19 | - +- i386 | gauche | 0.9.1-5.1 | - +- i386 | gauche-c-wrapper | 0.6.1-4.1 | - +- i386 | gauche-dev | 0.9.1-5.1 | - +- i386 | gauche-gdbm | 0.9.1-5.1 | - +- i386 | gauche-gl | 0.4.4-5+b1 | - +- i386 | gauche-zlib | 0.9.1-5.1 | - +- i386 | gav | 0.9.0-3 | - +- i386 | gawk | 1:4.0.1+dfsg-2.1 | - +- i386 | gbase | 0.5-2.2 | - +- i386 | gbatnav | 1.0.4cvs20051004-5 | - +- i386 | gbemol | 0.3.2-2 | - +- i386 | gbgoffice | 1.4-8 | - +- i386 | gbonds | 2.0.3-2.1 | - +- i386 | gbrowse-calign | 2.48~dfsg-1 | - +- i386 | gbsplay | 0.0.91-1 | - +- i386 | gcal | 3.6.1-2 | - +- i386 | gcalctool | 6.4.2.1-3 | - +- i386 | gcb | 1:1.07-3 | - +- i386 | gcc | 4:4.7.2-1 | - +- i386 | gcc-4.4 | 4.4.7-2 | - +- i386 | gcc-4.4-base | 4.4.7-2 | - +- i386 | gcc-4.4-multilib | 4.4.7-2 | - +- i386 | gcc-4.6 | 4.6.3-14 | - +- i386 | gcc-4.6-base | 4.6.3-14 | - +- i386 | gcc-4.6-multilib | 4.6.3-14 | - +- i386 | gcc-4.6-plugin-dev | 4.6.3-14 | - +- i386 | gcc-4.7 | 4.7.2-5 | - +- i386 | gcc-4.7-base | 4.7.2-5 | - +- i386 | gcc-4.7-multilib | 4.7.2-5 | - +- i386 | gcc-4.7-plugin-dev | 4.7.2-5 | - +- i386 | gcc-avr | 1:4.7.2-2 | - +- i386 | gcc-h8300-hms | 1:3.4.6+dfsg-1 | - +- i386 | gcc-m68hc1x | 1:3.3.6+3.1+dfsg-3 | - +- i386 | gcc-mingw-w64-base | 4.6.3-14+8 | - +- i386 | gcc-mingw-w64-i686 | 4.6.3-14+8 | - +- i386 | gcc-mingw-w64-x86-64 | 4.6.3-14+8 | - +- i386 | gcc-msp430 | 4.6.3~mspgcc-20120406-3+deb7u2 | - +- i386 | gcc-multilib | 4:4.7.2-1 | - +- i386 | gccgo | 4:4.7.2-1 | - +- i386 | gccgo-4.7 | 4.7.2-5 | - +- i386 | gccgo-4.7-multilib | 4.7.2-5 | - +- i386 | gccgo-multilib | 4:4.7.2-1 | - +- i386 | gccxml | 0.9.0+cvs20120420-4 | - +- i386 | gcdmaster | 1:1.2.3-0.3 | - +- i386 | gchempaint | 0.12.12-1 | - +- i386 | gcin | 2.7.6.1+dfsg-1 | - +- i386 | gcin-anthy | 2.7.6.1+dfsg-1 | - +- i386 | gcin-chewing | 2.7.6.1+dfsg-1 | - +- i386 | gcin-gtk3-immodule | 2.7.6.1+dfsg-1 | - +- i386 | gcin-qt4-immodule | 2.7.6.1+dfsg-1 | - +- i386 | gcin-tables | 2.7.6.1+dfsg-1 | - +- i386 | gcj-4.6-base | 4.6.3-1 | - +- i386 | gcj-4.6-jdk | 4.6.3-1 | - +- i386 | gcj-4.6-jre | 4.6.3-1 | - +- i386 | gcj-4.6-jre-headless | 4.6.3-1 | - +- i386 | gcj-4.7-base | 4.7.2-3 | - +- i386 | gcj-4.7-jdk | 4.7.2-3 | - +- i386 | gcj-4.7-jre | 4.7.2-3 | - +- i386 | gcj-4.7-jre-headless | 4.7.2-3 | - +- i386 | gcj-jdk | 4:4.7.2-1 | - +- i386 | gcj-jre | 4:4.7.2-1 | - +- i386 | gcj-jre-headless | 4:4.7.2-1 | - +- i386 | gcj-native-helper | 1:1.6-47 | - +- i386 | gcl | 2.6.7+dfsga-1 | - +- i386 | gcolor2 | 0.4-2.1 | - +- i386 | gcompris | 12.01-1 | - +- i386 | gcompris-dbg | 12.01-1 | - +- i386 | gconf-defaults-service | 3.2.5-1+build1 | - +- i386 | gconf-editor | 3.0.1-1 | - +- i386 | gconf-gsettings-backend | 3.2.5-1+build1 | - +- i386 | gconf-service | 3.2.5-1+build1 | - +- i386 | gconf2 | 3.2.5-1+build1 | - +- i386 | gconjugue | 0.7.2-1 | - +- i386 | gcpegg | 5.1-13 | - +- i386 | gcr | 3.4.1-3 | - +- i386 | gcrystal | 0.12.12-1 | - +- i386 | gcu-bin | 0.12.12-1 | - +- i386 | gcu-plugin | 0.12.12-1 | - +- i386 | gcx | 1.3-1.1 | - +- i386 | gdal-bin | 1.9.0-3.1 | - +- i386 | gdb | 7.4.1+dfsg-0.1 | - +- i386 | gdb-avr | 7.4-1 | - +- i386 | gdb-mingw-w64 | 7.4.1-1.1+5 | - +- i386 | gdb-minimal | 7.4.1+dfsg-0.1 | - +- i386 | gdb-msp430 | 7.2a~mspgcc-20111205-1 | - +- i386 | gdb-multiarch | 7.4.1+dfsg-0.1 | - +- i386 | gdb64 | 7.4.1+dfsg-0.1 | - +- i386 | gdbserver | 7.4.1+dfsg-0.1 | - +- i386 | gdc | 4.6.3-8 | - +- i386 | gdc-4.4 | 1.063-4.4.7-1 | - +- i386 | gdc-4.6 | 0.29.1-4.6.3-2 | - +- i386 | gdc-v1 | 4.6.3-8 | - +- i386 | gddccontrol | 0.4.2-10 | - +- i386 | gddrescue | 1.16-1 | - +- i386 | gdesklets | 0.36.1-5+b1 | - +- i386 | gdf-tools | 0.1.2-2 | - +- i386 | gdigi | 0.2.0+hg20110905r195-1 | - +- i386 | gdis | 0.90-4 | - +- i386 | gdisk | 0.8.5-1 | - +- i386 | gdm3 | 3.4.1-8 | - +- i386 | gdmap | 0.8.1-2 | - +- i386 | gdpc | 2.2.5-2 | - +- i386 | geany | 1.22+dfsg-2 | - +- i386 | geany-plugin-addons | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-codenav | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-debugger | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-doc | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-extrasel | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-gdb | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-gendoc | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-gproject | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-insertnum | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-latex | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-lipsum | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-lua | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-macro | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-numberedbookmarks | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-pg | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-prettyprinter | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-prj | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-sendmail | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-shiftcolumn | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-spellcheck | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-tableconvert | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-treebrowser | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-updatechecker | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-vc | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-webhelper | 0.21.1.dfsg-4 | - +- i386 | geany-plugin-xmlsnippets | 0.21.1.dfsg-4 | - +- i386 | gearhead | 1.100-2 | - +- i386 | gearhead2 | 0.628-1 | - +- i386 | gearman-job-server | 0.33-2 | - +- i386 | gearman-tools | 0.33-2 | - +- i386 | gecko-mediaplayer | 1.0.6-1 | - +- i386 | geda-gattrib | 1:1.6.2-4.3 | - +- i386 | geda-gnetlist | 1:1.6.2-4.3 | - +- i386 | geda-gschem | 1:1.6.2-4.3 | - +- i386 | geda-gsymcheck | 1:1.6.2-4.3 | - +- i386 | geda-utils | 1:1.6.2-4.3 | - +- i386 | gedit | 3.4.2-1 | - +- i386 | gedit-plugins | 3.4.0-1 | - +- i386 | gedit-valatoys-plugin | 0.12.1-3 | - +- i386 | gedit-valatoys-plugin-dbg | 0.12.1-3 | - +- i386 | gedit-valencia-plugin | 0.3.0-3.1 | - +- i386 | geekcode | 1.7.3-5 | - +- i386 | geeqie | 1:1.0-10.1 | - +- i386 | geeqie-dbg | 1:1.0-10.1 | - +- i386 | gegl | 0.2.0-2+nmu1 | - +- i386 | geki2 | 2.0.3-8 | - +- i386 | geki3 | 1.0.3-7 | - +- i386 | gelemental | 1.2.0-8 | - +- i386 | gem | 1:0.93.3-5 | - +- i386 | gem-extra | 1:0.93.3-5 | - +- i386 | gem-plugin-dc1394 | 1:0.93.3-5 | - +- i386 | gem-plugin-dv4l | 1:0.93.3-5 | - +- i386 | gem-plugin-gmerlin | 1:0.93.3-5 | - +- i386 | gem-plugin-jpeg | 1:0.93.3-5 | - +- i386 | gem-plugin-lqt | 1:0.93.3-5 | - +- i386 | gem-plugin-magick | 1:0.93.3-5 | - +- i386 | gem-plugin-mpeg3 | 1:0.93.3-5 | - +- i386 | gem-plugin-sgi | 1:0.93.3-5 | - +- i386 | gem-plugin-tiff | 1:0.93.3-5 | - +- i386 | gem-plugin-unicap | 1:0.93.3-5 | - +- i386 | gem-plugin-v4l2 | 1:0.93.3-5 | - +- i386 | gemanx-gtk2 | 0.1.0.3-2 | - +- i386 | gemdropx | 0.9-6 | - +- i386 | gems | 1.1.1-2 | - +- i386 | genders | 1.18-1 | - +- i386 | geneweb | 6.05.1-1 | - +- i386 | genext2fs | 1.4.1-4 | - +- i386 | gengetopt | 2.22.5-1 | - +- i386 | genisoimage | 9:1.1.11-2 | - +- i386 | genisovh | 0.1-3 | - +- i386 | genius | 1.0.14-1 | - +- i386 | genius-common | 1.0.14-1 | - +- i386 | genius-dev | 1.0.14-1 | - +- i386 | genparse | 0.9.1-1 | - +- i386 | genromfs | 0.5.2-2 | - +- i386 | gentle | 1.9+cvs20100605+dfsg1-1 | - +- i386 | gentoo | 0.19.13-2 | - +- i386 | genus2reduction | 0.3-2.2 | - +- i386 | geoclue | 0.12.0-4 | - +- i386 | geoclue-examples | 0.12.0-4 | - +- i386 | geoclue-geonames | 0.12.0-4 | - +- i386 | geoclue-gsmloc | 0.12.0-4 | - +- i386 | geoclue-hostip | 0.12.0-4 | - +- i386 | geoclue-localnet | 0.12.0-4 | - +- i386 | geoclue-manual | 0.12.0-4 | - +- i386 | geoclue-nominatim | 0.12.0-4 | - +- i386 | geoclue-plazes | 0.12.0-4 | - +- i386 | geoclue-skyhook | 0.12.0-4 | - +- i386 | geoclue-yahoo | 0.12.0-4 | - +- i386 | geogebra-kde | 1.0-1 | - +- i386 | geographiclib-tools | 1.21-1 | - +! i386 | geoip-bin | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 ++ i386 | geoip-dbg | - | 1.5.0-3~bpo70+1 +- i386 | geomview | 1.9.4-3 | - +- i386 | geotiff-bin | 1.3.0+dfsg-3 | - +- i386 | gerbv | 2.6.0-1 | - +- i386 | gerstensaft | 0.3-4 | - +- i386 | ges0.10-tools | 0.10.1-2 | - +- i386 | gesftpserver | 0.1-3 | - +- i386 | getstream | 20081204-1.1 | - +! i386 | gettext | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | gettext-base | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- i386 | gexec | 0.4-1 | - +- i386 | gfan | 0.3dfsg-1.1 | - +- i386 | gfarm-client | 2.4.1-1.1 | - +- i386 | gfarm2fs | 1.2.2-1.1 | - +- i386 | gff2aplot | 2.0-7 | - +- i386 | gfm | 1.03-2 | - +- i386 | gfmd | 2.4.1-1.1 | - +- i386 | gforth | 0.7.0+ds2-0.1 | - +- i386 | gforth-lib | 0.7.0+ds2-0.1 | - +- i386 | gfortran | 4:4.7.2-1 | - +- i386 | gfortran-4.4 | 4.4.7-2 | - +- i386 | gfortran-4.4-multilib | 4.4.7-2 | - +- i386 | gfortran-4.6 | 4.6.3-14 | - +- i386 | gfortran-4.6-multilib | 4.6.3-14 | - +- i386 | gfortran-4.7 | 4.7.2-5 | - +- i386 | gfortran-4.7-multilib | 4.7.2-5 | - +- i386 | gfortran-mingw-w64-i686 | 4.6.3-14+8 | - +- i386 | gfortran-mingw-w64-x86-64 | 4.6.3-14+8 | - +- i386 | gfortran-multilib | 4:4.7.2-1 | - +- i386 | gfpoken | 0.32-2 | - +- i386 | gfs-pcmk | 3.0.12-3.2+deb7u2 | - +- i386 | gfs-tools | 3.0.12-3.2+deb7u2 | - +- i386 | gfs2-tools | 3.0.12-3.2+deb7u2 | - +- i386 | gfsd | 2.4.1-1.1 | - +- i386 | gftp-common | 2.0.19-4 | - +- i386 | gftp-gtk | 2.0.19-4 | - +- i386 | gftp-text | 2.0.19-4 | - +- i386 | gfxboot | 4.5.0-3 | - +- i386 | gfxboot-dev | 4.5.0-3 | - +- i386 | ggcov | 0.8.4-2 | - +- i386 | ggobi | 2.1.10-4 | - +- i386 | ghc | 7.4.1-4 | - +- i386 | ghc-dynamic | 7.4.1-4 | - +- i386 | ghc-haddock | 7.4.1-4 | - +- i386 | ghc-mod | 1.10.18-1 | - +- i386 | ghc-prof | 7.4.1-4 | - +- i386 | ghc-testsuite | 7.4.1-3 | - +- i386 | ghemical | 3.0.0-1 | - +- i386 | ghex | 3.4.1-1 | - +- i386 | ghkl | 4.0.3-4 | - +- i386 | ghostess | 20120105-1 | - +- i386 | ghostscript | 9.05~dfsg-6.3+deb7u1 | - +- i386 | ghostscript-cups | 9.05~dfsg-6.3+deb7u1 | - +- i386 | ghostscript-dbg | 9.05~dfsg-6.3+deb7u1 | - +- i386 | ghostscript-x | 9.05~dfsg-6.3+deb7u1 | - +- i386 | giblib-dev | 1.2.4-8 | - +- i386 | giblib1 | 1.2.4-8 | - +- i386 | giblib1-dbg | 1.2.4-8 | - +- i386 | gif2apng | 1.7-3 | - +- i386 | gif2png | 2.5.8-1 | - +- i386 | giflib-dbg | 4.1.6-10 | - +- i386 | giflib-tools | 4.1.6-10 | - +- i386 | gifsicle | 1.67-1 | - +- i386 | gifti-bin | 1.0.9-1 | - +- i386 | giftrans | 1.12.2-16 | - +- i386 | gigedit | 0.2.0-1 | - +- i386 | giggle | 0.6.1-2+b1 | - +- i386 | giggle-personal-details-plugin | 0.6.1-2+b1 | - +- i386 | giggle-terminal-view-plugin | 0.6.1-2+b1 | - +- i386 | gigolo | 0.4.1+dfsg-1 | - +- i386 | gigolo-dbg | 0.4.1+dfsg-1 | - +- i386 | gigtools | 3.3.0-2 | - +- i386 | gimmix | 0.5.7.1-4 | - +- i386 | gimp | 2.8.2-2+deb7u1 | - +- i386 | gimp-cbmplugs | 1.2.2-1 | - +- i386 | gimp-dbg | 2.8.2-2+deb7u1 | - +- i386 | gimp-dcraw | 1.31-1.1 | - +- i386 | gimp-dds | 2.0.9-3 | - +- i386 | gimp-dimage-color | 1.1.0-3.1 | - +- i386 | gimp-gap | 2.6.0+dfsg-3 | - +- i386 | gimp-gluas | 0.1.20-1 | - +- i386 | gimp-gmic | 1.5.1.6+dfsg-4 | - +- i386 | gimp-gutenprint | 5.2.9-1 | - +- i386 | gimp-lensfun | 0.2.1-1+b1 | - +- i386 | gimp-plugin-registry | 5.20120621 | - +- i386 | gimp-texturize | 2.1-2 | - +- i386 | gimp-ufraw | 0.18-2 | - +- i386 | ginac-tools | 1.6.2-1 | - +- i386 | ginkgocadx | 2.12.0.4889-1 | - +- i386 | gip | 1.7.0-1-3 | - +- i386 | gir1.2-accountsservice-1.0 | 0.6.21-8 | - +- i386 | gir1.2-anjuta-3.0 | 2:3.4.3-1 | - +- i386 | gir1.2-appindicator-0.1 | 0.4.92-2 | - +- i386 | gir1.2-appindicator3-0.1 | 0.4.92-2 | - +- i386 | gir1.2-atk-1.0 | 2.4.0-2 | - +- i386 | gir1.2-atspi-2.0 | 2.5.3-2 | - +- i386 | gir1.2-brasero-3.0 | 3.4.1-4 | - +- i386 | gir1.2-caribou-1.0 | 0.4.4-1 | - +- i386 | gir1.2-champlain-0.12 | 0.12.3-1 | - +- i386 | gir1.2-cheese-3.0 | 3.4.2-2 | - +- i386 | gir1.2-clinica-0.2 | 0.2.1~dfsg-1 | - +- i386 | gir1.2-clutter-1.0 | 1.10.8-2 | - +- i386 | gir1.2-clutter-gst-1.0 | 1.5.4-1+build0 | - +- i386 | gir1.2-cogl-1.0 | 1.10.2-7 | - +- i386 | gir1.2-coglpango-1.0 | 1.10.2-7 | - +- i386 | gir1.2-colord-1.0 | 0.1.21-1 | - +- i386 | gir1.2-colorhug-1.0 | 0.1.10-1 | - +- i386 | gir1.2-cryptui-0.0 | 3.2.2-1 | - +- i386 | gir1.2-dbusmenu-glib-0.4 | 0.6.2-1 | - +- i386 | gir1.2-dbusmenu-gtk-0.4 | 0.6.2-1 | - +- i386 | gir1.2-dbusmenu-gtk3-0.4 | 0.6.2-1 | - +- i386 | gir1.2-dee-1.0 | 1.0.10-3 | - +- i386 | gir1.2-ebook-1.2 | 3.4.4-3 | - +- i386 | gir1.2-ecalendar-1.2 | 3.4.4-3 | - +- i386 | gir1.2-edataserver-1.2 | 3.4.4-3 | - +- i386 | gir1.2-emerillon-0.2 | 0.1.90-1 | - +- i386 | gir1.2-epiphany-3.4 | 3.4.2-2.1 | - +- i386 | gir1.2-evd-0.1 | 0.1.20-2 | - +- i386 | gir1.2-evince-3.0 | 3.4.0-3.1 | - +- i386 | gir1.2-farstream-0.1 | 0.1.2-1 | - +! i386 | gir1.2-fcitx-1.0 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +- i386 | gir1.2-folks-0.6 | 0.6.9-1+b1 | - +- i386 | gir1.2-freedesktop | 1.32.1-1 | - +- i386 | gir1.2-ganv-1.0 | 0~svn4468~dfsg0-1 | - +- i386 | gir1.2-gck-1 | 3.4.1-3 | - +- i386 | gir1.2-gconf-2.0 | 3.2.5-1+build1 | - +- i386 | gir1.2-gcr-3 | 3.4.1-3 | - +- i386 | gir1.2-gda-5.0 | 5.0.3-2 | - +- i386 | gir1.2-gdata-0.0 | 0.12.0-1 | - +- i386 | gir1.2-gdesktopenums-3.0 | 3.4.2-3 | - +- i386 | gir1.2-gdkpixbuf-2.0 | 2.26.1-1 | - +- i386 | gir1.2-gdl-3 | 3.4.2-1 | - +- i386 | gir1.2-gee-1.0 | 0.6.4-2 | - +- i386 | gir1.2-geocodeglib-1.0 | 0.99.0-1 | - +- i386 | gir1.2-ges-0.10 | 0.10.1-2 | - +- i386 | gir1.2-gkbd-3.0 | 3.4.0.2-1 | - +- i386 | gir1.2-gladeui-2.0 | 3.12.1-1 | - +- i386 | gir1.2-glib-2.0 | 1.32.1-1 | - +- i386 | gir1.2-gmenu-3.0 | 3.4.2-5 | - +- i386 | gir1.2-gnomebluetooth-1.0 | 3.4.2-1 | - +- i386 | gir1.2-gnomedesktop-3.0 | 3.4.2-1 | - +- i386 | gir1.2-gnomekeyring-1.0 | 3.4.1-1 | - +- i386 | gir1.2-goa-1.0 | 3.4.2-2 | - +- i386 | gir1.2-grilo-0.1 | 0.1.19-1 | - +- i386 | gir1.2-gssdp-1.0 | 0.12.2.1-2 | - +- i386 | gir1.2-gst-plugins-base-0.10 | 0.10.36-1.1 | - ++ i386 | gir1.2-gst-plugins-base-1.0 | - | 1.0.8-1~bpo70+1 +- i386 | gir1.2-gst-rtsp-server-0.10 | 0.10.8-3 | - +- i386 | gir1.2-gstreamer-0.10 | 0.10.36-1.2 | - ++ i386 | gir1.2-gstreamer-1.0 | - | 1.0.8-1~bpo70+1 +- i386 | gir1.2-gtk-2.0 | 2.24.10-2 | - +- i386 | gir1.2-gtk-3.0 | 3.4.2-7 | - +- i386 | gir1.2-gtk-vnc-2.0 | 0.5.0-3.1 | - +- i386 | gir1.2-gtkchamplain-0.12 | 0.12.3-1 | - +- i386 | gir1.2-gtkclutter-1.0 | 1.2.0-2 | - +- i386 | gir1.2-gtksource-3.0 | 3.4.2-1 | - +- i386 | gir1.2-gtop-2.0 | 2.28.4-3 | - +- i386 | gir1.2-gucharmap-2.90 | 1:3.4.1.1-2.1 | - +- i386 | gir1.2-gudev-1.0 | 175-7.2 | - +- i386 | gir1.2-guestfs-1.0 | 1:1.18.1-1+deb7u3 | - +- i386 | gir1.2-gupnp-1.0 | 0.18.4-1 | - +- i386 | gir1.2-gupnp-av-1.0 | 0.10.3-1 | - +- i386 | gir1.2-gupnpdlna-1.0 | 0.6.6-1 | - +- i386 | gir1.2-gupnpigd-1.0 | 0.2.1-2 | - +- i386 | gir1.2-gweather-3.0 | 3.4.1-1+build1 | - +- i386 | gir1.2-gxps-0.1 | 0.2.2-2 | - +! i386 | gir1.2-ibus-1.0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- i386 | gir1.2-indicate-0.7 | 0.6.92-1 | - +- i386 | gir1.2-itl-1.0 | 0.2-1 | - +- i386 | gir1.2-javascriptcoregtk-1.0 | 1.8.1-3.4 | - +- i386 | gir1.2-javascriptcoregtk-3.0 | 1.8.1-3.4 | - +- i386 | gir1.2-json-1.0 | 0.14.2-1 | - +- i386 | gir1.2-libosinfo-1.0 | 0.1.1-1 | - +- i386 | gir1.2-libvirt-glib-1.0 | 0.0.8-1 | - +- i386 | gir1.2-lunar-date-2.0 | 2.4.0-1 | - +- i386 | gir1.2-mutter-3.0 | 3.4.1-5 | - +- i386 | gir1.2-mx-1.0 | 1.4.6-1 | - +- i386 | gir1.2-nautilus-3.0 | 3.4.2-1+build1 | - +- i386 | gir1.2-networkmanager-1.0 | 0.9.4.0-10 | - +- i386 | gir1.2-notify-0.7 | 0.7.5-1 | - +- i386 | gir1.2-packagekitglib-1.0 | 0.7.6-3 | - +- i386 | gir1.2-panelapplet-4.0 | 3.4.2.1-4 | - +- i386 | gir1.2-pango-1.0 | 1.30.0-1 | - +- i386 | gir1.2-peas-1.0 | 1.4.0-2 | - +- i386 | gir1.2-polkit-1.0 | 0.105-3 | - +- i386 | gir1.2-poppler-0.18 | 0.18.4-6 | - +- i386 | gir1.2-rb-3.0 | 2.97-2.1 | - +- i386 | gir1.2-rest-0.7 | 0.7.12-3 | - +- i386 | gir1.2-rest-extras-0.7 | 0.7.12-3 | - +- i386 | gir1.2-rsvg-2.0 | 2.36.1-2 | - +- i386 | gir1.2-skk-1.0 | 0.0.12-3 | - +- i386 | gir1.2-socialweb-client | 0.25.20-2.1 | - +- i386 | gir1.2-soup-2.4 | 2.38.1-2 | - +- i386 | gir1.2-spice-client-glib-2.0 | 0.12-5 | - +- i386 | gir1.2-spice-client-gtk-2.0 | 0.12-5 | - +- i386 | gir1.2-spice-client-gtk-3.0 | 0.12-5 | - +- i386 | gir1.2-sugarext-1.0 | 0.96.1-2 | - +- i386 | gir1.2-telepathyglib-0.12 | 0.18.2-2 | - +- i386 | gir1.2-telepathylogger-0.2 | 0.4.0-1 | - +- i386 | gir1.2-totem-1.0 | 3.0.1-8 | - +- i386 | gir1.2-totem-plparser-1.0 | 3.4.2-1 | - +- i386 | gir1.2-tracker-0.14 | 0.14.1-3 | - +- i386 | gir1.2-unique-3.0 | 3.0.2-1 | - +- i386 | gir1.2-upowerglib-1.0 | 0.9.17-1 | - +- i386 | gir1.2-urfkill-glib0 | 0.3.0-1 | - +- i386 | gir1.2-v-sim-1.0 | 3.6.0-2+b2 | - +- i386 | gir1.2-vte-2.90 | 1:0.32.2-1 | - +- i386 | gir1.2-webkit-1.0 | 1.8.1-3.4 | - +- i386 | gir1.2-webkit-3.0 | 1.8.1-3.4 | - +- i386 | gir1.2-wnck-3.0 | 3.4.2-1 | - +- i386 | gir1.2-xkl-1.0 | 5.2.1-1 | - +! i386 | git | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! i386 | git-annex | 3.20120629 | 5.20140210~bpo70+2 +! i386 | gitg | 0.2.4-1.1+deb7u1 | 0.2.7-1~bpo70+1 +- i386 | github-backup | 1.20120628.1 | - +- i386 | gitit | 0.10.0.1-1+b1 | - +- i386 | gjacktransport | 0.5.3-1 | - +- i386 | gjay | 0.3.2-1 | - +- i386 | gjiten | 2.6-2.2 | - +- i386 | gjs | 1.32.0-5 | - +- i386 | gkbd-capplet | 3.4.0.2-1 | - +- i386 | gkdebconf | 1.2.68 | - +- i386 | gkermit | 1.0-9 | - +- i386 | gkrellkam | 2.0.0-1.1 | - +- i386 | gkrellm | 2.3.5-3 | - +- i386 | gkrellm-bfm | 0.6.4-5 | - ++ i386 | gkrellm-cpufreq | - | 0.6.4-4~bpo70+1 +- i386 | gkrellm-gkrellmpc | 0.1~beta10-2 | - +- i386 | gkrellm-hdplop | 0.9.9-2.1 | - +- i386 | gkrellm-ibam | 1:0.5.2-2.1 | - +- i386 | gkrellm-leds | 0.8.0-1.2 | - +- i386 | gkrellm-mailwatch | 2.4.3-1 | - +- i386 | gkrellm-mldonkey | 0.9.7-2.1 | - +- i386 | gkrellm-radio | 2.0.4-1.1 | - +- i386 | gkrellm-reminder | 2.0.0-3 | - +- i386 | gkrellm-snmp | 1.0-1.2+b1 | - +- i386 | gkrellm-thinkbat | 0.2.2-1 | - +- i386 | gkrellm-volume | 2.1.13-1 | - +- i386 | gkrellm-x86info | 0.0.2-9 | - +- i386 | gkrellm-xkb | 1.05-5 | - +- i386 | gkrellmd | 2.3.5-3 | - +- i386 | gkrellmitime | 1.0.1-5 | - +- i386 | gkrellmoon | 0.6-5 | - +- i386 | gkrellmwireless | 2.0.3-1 | - +- i386 | gkrellshoot | 0.4.4-1 | - +- i386 | gkrelltop | 2.2.13-1 | - +- i386 | gkrelltopd | 2.2.13-1 | - +- i386 | gkrelluim | 0.3.1-4+b1 | - +- i386 | gkrellweather | 2.0.8-2 | - +- i386 | gkrellxmms2 | 0.7.1-2 | - +- i386 | gksu | 2.0.2-6 | - +- i386 | gl-117 | 1.3.2-2.1 | - +- i386 | glabels | 3.0.0-3+b1 | - +- i386 | glabels-dev | 3.0.0-3+b1 | - +- i386 | glade | 3.12.1-1 | - +- i386 | glade-xfce | 4.8.1-1 | - +- i386 | gladish | 1+dfsg0-3 | - +- i386 | glam2 | 1064-1 | - +- i386 | glaurung | 2.2-2 | - +- i386 | glbsp | 2.24-1 | - +- i386 | glchess | 1:3.4.2-3 | - +- i386 | gle-graphics | 4.2.4c-5 | - +- i386 | glee-dev | 5.4.0-1 | - +- i386 | glew-utils | 1.7.0-3 | - +- i386 | glfer | 0.4.2-2 | - +- i386 | glhack | 1.2-1 | - +- i386 | glib-networking | 2.32.3-1 | - +- i386 | glib-networking-dbg | 2.32.3-1 | - +- i386 | glib-networking-services | 2.32.3-1 | - +- i386 | glide2-bin | 2002.04.10ds1-7 | - +- i386 | glines | 1:3.4.2-3 | - +- i386 | gliv | 1.9.7-2 | - +- i386 | glob2 | 0.9.4.4-2.1+b1 | - +- i386 | global | 5.7.1-2 | - +- i386 | globs | 0.2.0~svn50-4 | - +- i386 | globus-authz-callout-error-dbg | 2.2-1 | - +- i386 | globus-authz-dbg | 2.2-1 | - +- i386 | globus-callout-dbg | 2.2-1 | - +- i386 | globus-common-dbg | 14.7-2 | - +- i386 | globus-common-progs | 14.7-2 | - +- i386 | globus-core | 8.8-2 | - +- i386 | globus-ftp-client-dbg | 7.3-1 | - +- i386 | globus-ftp-control-dbg | 4.4-1 | - +- i386 | globus-gass-cache-dbg | 8.1-2 | - +- i386 | globus-gass-cache-program | 5.1-1 | - +- i386 | globus-gass-cache-program-dbg | 5.1-1 | - +- i386 | globus-gass-copy-dbg | 8.4-1 | - +- i386 | globus-gass-copy-progs | 8.4-1 | - +- i386 | globus-gass-server-ez-dbg | 4.3-1 | - +- i386 | globus-gass-server-ez-progs | 4.3-1 | - +- i386 | globus-gass-transfer-dbg | 7.2-1 | - +- i386 | globus-gatekeeper | 9.11-1 | - +- i386 | globus-gatekeeper-dbg | 9.11-1 | - +- i386 | globus-gfork-dbg | 3.2-1 | - +- i386 | globus-gfork-progs | 3.2-1 | - +- i386 | globus-gram-client-dbg | 12.4-1 | - +- i386 | globus-gram-client-tools | 10.3-1 | - +- i386 | globus-gram-client-tools-dbg | 10.3-1 | - +- i386 | globus-gram-job-manager | 13.33-1 | - +- i386 | globus-gram-job-manager-callout-error-dbg | 2.1-2 | - +- i386 | globus-gram-job-manager-dbg | 13.33-1 | - +- i386 | globus-gram-job-manager-fork-dbg | 1.5-1 | - +- i386 | globus-gram-job-manager-fork-setup-seg | 1.5-1 | - +- i386 | globus-gram-job-manager-pbs-dbg | 1.5-1 | - +- i386 | globus-gram-job-manager-pbs-setup-seg | 1.5-1 | - +- i386 | globus-gram-job-manager-sge-dbg | 1.5-1 | - +- i386 | globus-gram-job-manager-sge-setup-seg | 1.5-1 | - +- i386 | globus-gram-protocol-dbg | 11.3-1 | - +- i386 | globus-gridftp-server-control-dbg | 2.5-2 | - +- i386 | globus-gridftp-server-dbg | 6.10-2 | - +- i386 | globus-gridftp-server-progs | 6.10-2 | - +- i386 | globus-gridmap-callout-error-dbg | 1.2-2 | - +- i386 | globus-gsi-callback-dbg | 4.2-1 | - +- i386 | globus-gsi-cert-utils-dbg | 8.3-1 | - +- i386 | globus-gsi-cert-utils-progs | 8.3-1 | - +- i386 | globus-gsi-credential-dbg | 5.3-1 | - +- i386 | globus-gsi-openssl-error-dbg | 2.1-2 | - +- i386 | globus-gsi-proxy-core-dbg | 6.2-1 | - +- i386 | globus-gsi-proxy-ssl-dbg | 4.1-2 | - +- i386 | globus-gsi-sysconfig-dbg | 5.2-1 | - +- i386 | globus-gss-assist-dbg | 8.5-1 | - +- i386 | globus-gss-assist-progs | 8.5-1 | - +- i386 | globus-gssapi-error-dbg | 4.1-2 | - +- i386 | globus-gssapi-gsi-dbg | 10.6-1 | - +- i386 | globus-io-dbg | 9.3-1 | - +- i386 | globus-openssl-module-dbg | 3.2-1 | - +- i386 | globus-openssl-module-progs | 3.2-1 | - +- i386 | globus-proxy-utils | 5.0-2 | - +- i386 | globus-proxy-utils-dbg | 5.0-2 | - +- i386 | globus-rls-client-dbg | 5.2-8 | - +- i386 | globus-rls-client-progs | 5.2-8 | - +- i386 | globus-rls-server | 4.9-11 | - +- i386 | globus-rls-server-dbg | 4.9-11 | - +- i386 | globus-rsl-dbg | 9.1-2 | - +- i386 | globus-scheduler-event-generator-dbg | 4.6-1 | - +- i386 | globus-scheduler-event-generator-progs | 4.6-1 | - +- i386 | globus-usage-dbg | 3.1-2 | - +- i386 | globus-xio-dbg | 3.3-1 | - +- i386 | globus-xio-gsi-driver-dbg | 2.3-1 | - +- i386 | globus-xio-pipe-driver-dbg | 2.2-1 | - +- i386 | globus-xio-popen-driver-dbg | 2.3-1 | - +- i386 | globus-xioperf | 3.1-1 | - +- i386 | globus-xioperf-dbg | 3.1-1 | - +- i386 | glogg | 0.9.0-1+b1 | - +- i386 | glosstex | 0.4.dfsg.1-3 | - +- i386 | glotski | 0.2-7 | - +- i386 | glpeces | 5.0-2 | - +- i386 | glpk | 4.45-1 | - +- i386 | glpk-utils | 4.45-1 | - +- i386 | gltron | 0.70final-10 | - +- i386 | glurp | 0.12.3-1 | - +- i386 | glusterfs-client | 3.2.7-3+deb7u1 | - +- i386 | glusterfs-common | 3.2.7-3+deb7u1 | - +- i386 | glusterfs-dbg | 3.2.7-3+deb7u1 | - +- i386 | glusterfs-server | 3.2.7-3+deb7u1 | - ++ i386 | glx-alternative-fglrx | - | 0.4.1~bpo70+1 ++ i386 | glx-alternative-mesa | - | 0.4.1~bpo70+1 ++ i386 | glx-alternative-nvidia | - | 0.4.1~bpo70+1 ++ i386 | glx-diversions | - | 0.4.1~bpo70+1 +- i386 | gman | 0.9.3-5.2 | - +- i386 | gmanedit | 0.4.2-5 | - +- i386 | gmchess | 0.29.6-2 | - +- i386 | gmediaserver | 0.13.0-8 | - +- i386 | gmemusage | 0.2-11 | - +- i386 | gmerlin | 1.2.0~dfsg+1-1 | - +- i386 | gmerlin-avdecoder-dbg | 1.2.0~dfsg-1+b1 | - +- i386 | gmerlin-dbg | 1.2.0~dfsg+1-1 | - +- i386 | gmerlin-encoders-ffmpeg | 1.2.0-2 | - +- i386 | gmerlin-encoders-good | 1.2.0-2 | - +- i386 | gmerlin-plugins-avdecoder | 1.2.0~dfsg-1+b1 | - +- i386 | gmerlin-plugins-base | 1.2.0~dfsg+1-1 | - +- i386 | gmetad | 3.3.8-1+nmu1 | - +- i386 | gmfsk | 0.6+0.7pre1-2.3 | - +- i386 | gmic | 1.5.1.6+dfsg-4 | - +- i386 | gmic-zart | 1.5.1.6+dfsg-4 | - +- i386 | gmidimonitor | 3.6+dfsg0-1 | - +- i386 | gmime-bin | 2.6.10-1 | - +- i386 | gmlive | 0.22.3-1 | - +- i386 | gmod | 3.1-14 | - +- i386 | gmorgan | 0.40-1 | - +- i386 | gmotionlive | 1.0-3 | - +- i386 | gmp-ecm | 6.4.2-1 | - +- i386 | gmpc | 11.8.16-6 | - +- i386 | gmpc-dbg | 11.8.16-6 | - +- i386 | gmpc-dev | 11.8.16-6 | - +- i386 | gmpc-plugins | 11.8.16-1 | - +- i386 | gmpc-plugins-dbg | 11.8.16-1 | - +- i386 | gmrun | 0.9.2-2.1 | - ++ i386 | gmsh | - | 2.7.0.dfsg-1~bpo70+1 +- i386 | gmt | 4.5.7-2 | - +- i386 | gmtp | 1.3.3-1 | - +- i386 | gmult | 8.0-1 | - +- i386 | gmysqlcc | 0.3.0-2+b2 | - +- i386 | gnac | 0.2.4-1 | - +- i386 | gnarwl | 3.6.dfsg-6.2 | - +! i386 | gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-common | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-cygnal | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-dbg | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-dev | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-fileio | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-lirc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-mysql | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-tools | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- i386 | gnat | 4.6 | - +- i386 | gnat-4.6 | 4.6.3-8 | - +- i386 | gnat-4.6-base | 4.6.3-8 | - +- i386 | gnat-4.6-sjlj | 4.6.3-8 | - +- i386 | gnat-gps | 5.0-13 | - +- i386 | gnat-gps-dbg | 5.0-13 | - +- i386 | gnat-mingw-w64-i686 | 4.6.3-14+8 | - +- i386 | gnat-mingw-w64-x86-64 | 4.6.3-14+8 | - +- i386 | gnats | 4.1.0-2 | - +- i386 | gnats-user | 4.1.0-2 | - +- i386 | gnect | 1:3.4.2-3 | - +- i386 | gnee | 3.13-1 | - +- i386 | gngb | 20060309-3 | - +- i386 | gniall | 0.7.1-7 | - +- i386 | gnibbles | 1:3.4.2-3 | - +- i386 | gnobots2 | 1:3.4.2-3 | - +- i386 | gnoemoe | 2.2.0+dfsg-2.2 | - +- i386 | gnokii-cli | 0.6.30+dfsg-1+b1 | - +- i386 | gnokii-smsd | 0.6.30+dfsg-1+b1 | - +- i386 | gnokii-smsd-mysql | 0.6.30+dfsg-1+b1 | - +- i386 | gnokii-smsd-pgsql | 0.6.30+dfsg-1+b1 | - +- i386 | gnomad2 | 2.9.6-4 | - +- i386 | gnome | 1:3.4+7+deb7u1 | - +- i386 | gnome-alsamixer | 0.9.7~cvs.20060916.ds.1-3 | - +- i386 | gnome-applets | 3.4.1-3 | - +- i386 | gnome-applets-dbg | 3.4.1-3 | - +- i386 | gnome-bluetooth | 3.4.2-1 | - +- i386 | gnome-boxes | 3.4.3+dfsg-1 | - +- i386 | gnome-breakout | 0.5.3-4 | - +- i386 | gnome-color-chooser | 0.2.5-1 | - +- i386 | gnome-color-manager | 3.4.2-1 | - +- i386 | gnome-commander | 1.2.8.15-3+b1 | - +- i386 | gnome-commander-dbg | 1.2.8.15-3+b1 | - +- i386 | gnome-contacts | 3.4.1-1+b1 | - +- i386 | gnome-control-center | 1:3.4.3.1-2 | - +- i386 | gnome-core | 1:3.4+7+deb7u1 | - +- i386 | gnome-core-devel | 1:3.4+7+deb7u1 | - +- i386 | gnome-dbg | 1:3.4+7+deb7u1 | - +- i386 | gnome-dictionary | 3.4.0-2 | - +- i386 | gnome-disk-utility | 3.0.2-3 | - +- i386 | gnome-do | 0.9-1+b1 | - +- i386 | gnome-documents | 0.4.2-2 | - +- i386 | gnome-dvb-daemon | 1:0.2.8-1 | - +- i386 | gnome-font-viewer | 3.4.0-2 | - +- i386 | gnome-genius | 1.0.14-1 | - +- i386 | gnome-hearts | 0.3-2.1 | - +- i386 | gnome-hwp-support | 0.1.4-1 | - +- i386 | gnome-hwp-support-dbg | 0.1.4-1 | - +- i386 | gnome-keyring | 3.4.1-5 | - +- i386 | gnome-mag | 1:0.16.3-1 | - +- i386 | gnome-mastermind | 0.3.1-2 | - +- i386 | gnome-media | 3.4.0-1 | - +- i386 | gnome-media-profiles | 3.0.0-1 | - +- i386 | gnome-menus | 3.4.2-5 | - +- i386 | gnome-mplayer | 1.0.6-1 | - +- i386 | gnome-mplayer-dbg | 1.0.6-1 | - +- i386 | gnome-mud | 0.11.2-1 | - +- i386 | gnome-nds-thumbnailer | 3.0.0-1 | - +- i386 | gnome-nettool | 3.2.0-1 | - +- i386 | gnome-online-accounts | 3.4.2-2 | - +- i386 | gnome-packagekit | 3.4.2-2 | - +- i386 | gnome-paint | 0.4.0-3 | - +- i386 | gnome-panel | 3.4.2.1-4 | - +! i386 | gnome-panel-control | 3.5.0-7 | 3.5.2-6~bpo70+1 +- i386 | gnome-panel-dbg | 3.4.2.1-4 | - +- i386 | gnome-phone-manager | 0.68-3+b1 | - +- i386 | gnome-photo-printer | 0.7.0-1.2 | - +- i386 | gnome-pie | 0.5.3-1 | - +- i386 | gnome-platform-devel | 1:3.4+7+deb7u1 | - +- i386 | gnome-power-manager | 3.4.0-2 | - +- i386 | gnome-ppp | 0.3.23-1.2 | - +- i386 | gnome-screensaver | 3.4.1-1 | - +- i386 | gnome-screenshot | 3.4.1-1 | - +- i386 | gnome-search-tool | 3.4.0-2+b1 | - +- i386 | gnome-session-bin | 3.4.2.1-4 | - +- i386 | gnome-session-canberra | 0.28-6 | - +- i386 | gnome-settings-daemon | 3.4.2+git20121218.7c1322-3+deb7u3 | - +- i386 | gnome-settings-daemon-dev | 3.4.2+git20121218.7c1322-3+deb7u3 | - +- i386 | gnome-shell | 3.4.2-7+deb7u1 | - +- i386 | gnome-shell-dbg | 3.4.2-7+deb7u1 | - +- i386 | gnome-subtitles | 1.2-4 | - +- i386 | gnome-sushi | 0.4.1-3 | - +- i386 | gnome-system-log | 3.4.1-3 | - +- i386 | gnome-system-monitor | 3.4.1-2+b1 | - +- i386 | gnome-system-tools | 3.0.0-2 | - +- i386 | gnome-terminal | 3.4.1.1-2 | - +- i386 | gnome-themes-standard | 3.4.2-2.1 | - +- i386 | gnome-u2ps | 0.0.4-4.2 | - +- i386 | gnome-user-share | 3.0.2-1 | - +- i386 | gnome-xcf-thumbnailer | 1.0-1.1 | - +- i386 | gnomekiss | 2.0-4 | - +- i386 | gnomeradio | 1.8-2 | - +- i386 | gnomine | 1:3.4.2-3 | - +- i386 | gnomint | 1.2.1-4 | - +- i386 | gnote | 0.8.3-1 | - +- i386 | gnotime | 2.3.1~snapshot20091119-5 | - +- i386 | gnotravex | 1:3.4.2-3 | - +- i386 | gnotski | 1:3.4.2-3 | - +- i386 | gnu-efi | 3.0i-3 | - +- i386 | gnu-fdisk | 1.2.4-3.1 | - +- i386 | gnu-smalltalk | 3.2.4-2 | - +- i386 | gnu-smalltalk-browser | 3.2.4-2 | - +- i386 | gnubg | 0.90+20120429-1 | - +- i386 | gnubiff | 2.2.15-1 | - +- i386 | gnubik | 2.4-3 | - +- i386 | gnucap | 1:0.36~20091207-2 | - +- i386 | gnucash | 1:2.4.10-6 | - +- i386 | gnucash-dbg | 1:2.4.10-6 | - +- i386 | gnuchess | 6.0.2-1 | - +- i386 | gnudatalanguage | 0.9.2-4 | - +- i386 | gnudoq | 0.94-2.1 | - +- i386 | gnugk | 2:3.0.2-3 | - +- i386 | gnugo | 3.8-5 | - +- i386 | gnuift | 0.1.14-12 | - +- i386 | gnuit | 4.9.5-3 | - +- i386 | gnujump | 1.0.6-4 | - +- i386 | gnumach | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-dbg | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-dev | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-image-1-486 | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-image-1-xen-486 | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-image-1.3.99-486 | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-image-1.3.99-486-dbg | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-image-1.3.99-xen-486 | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumach-image-1.3.99-xen-486-dbg | 2:1.3.99.dfsg.git20120610-1 | - +- i386 | gnumeric | 1.10.17-1.1 | - +- i386 | gnumeric-plugins-extra | 1.10.17-1.1 | - +- i386 | gnuminishogi | 1.3.2-9 | - +- i386 | gnunet-client | 0.9.3-7 | - +- i386 | gnunet-common | 0.9.3-7 | - +- i386 | gnunet-dbg | 0.9.3-7 | - +- i386 | gnunet-dev | 0.9.3-7 | - +- i386 | gnunet-fuse | 0.9.3-2 | - +- i386 | gnunet-gtk | 0.9.3-1 | - +- i386 | gnunet-gtk-dbg | 0.9.3-1 | - +- i386 | gnunet-gtk-dev | 0.9.3-1 | - +- i386 | gnunet-server | 0.9.3-7 | - +- i386 | gnupg | 1.4.12-7+deb7u3 | - +- i386 | gnupg-agent | 2.0.19-2+deb7u1 | - +- i386 | gnupg-curl | 1.4.12-7+deb7u3 | - +- i386 | gnupg-pkcs11-scd | 0.7.3-1 | - +- i386 | gnupg-pkcs11-scd-dbg | 0.7.3-1 | - +- i386 | gnupg2 | 2.0.19-2+deb7u1 | - +! i386 | gnuplot-nox | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuplot-qt | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuplot-x11 | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuradio | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | gnuradio-dev | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +- i386 | gnurobbo | 0.66+dfsg-2 | - +- i386 | gnurobots | 2:1.2.0-4+b2 | - +- i386 | gnuserv | 3.12.8-3 | - +- i386 | gnushogi | 1.3.2-9 | - +- i386 | gnusim8085 | 1.3.7-1 | - +- i386 | gnustep-back-dbg | 0.20.1-2.1 | - +- i386 | gnustep-back0.20-art | 0.20.1-2.1 | - +- i386 | gnustep-back0.20-cairo | 0.20.1-2.1 | - +- i386 | gnustep-base-runtime | 1.22.1-4 | - +- i386 | gnustep-common | 2.6.2-2 | - +- i386 | gnustep-dl2 | 0.12.0-9+nmu1 | - +- i386 | gnustep-dl2-postgresql-adaptor | 0.12.0-9+nmu1 | - +- i386 | gnustep-dl2-sqlite-adaptor | 0.12.0-9+nmu1 | - +- i386 | gnustep-examples | 1:1.3.0-1 | - +- i386 | gnustep-gpbs | 0.20.1-2.1 | - +- i386 | gnustep-gui-runtime | 0.20.0-3 | - +! i386 | gnutls-bin | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +- i386 | goaccess | 1:0.5-1 | - +- i386 | goattracker | 2.72-1 | - +- i386 | gob2 | 2.0.18-1 | - +- i386 | goban-ss | 1.1-2 | - +- i386 | gobby-0.4 | 0.4.13-2 | - +- i386 | gobby-0.4-dbg | 0.4.13-2 | - +- i386 | gobby-0.5 | 0.4.94-5 | - +- i386 | gobby-0.5-dbg | 0.4.94-5 | - +- i386 | gobjc | 4:4.7.2-1 | - +- i386 | gobjc++ | 4:4.7.2-1 | - +- i386 | gobjc++-4.6 | 4.6.3-14 | - +- i386 | gobjc++-4.6-multilib | 4.6.3-14 | - +- i386 | gobjc++-4.7 | 4.7.2-5 | - +- i386 | gobjc++-4.7-multilib | 4.7.2-5 | - +- i386 | gobjc++-mingw-w64-i686 | 4.6.3-14+8 | - +- i386 | gobjc++-mingw-w64-x86-64 | 4.6.3-14+8 | - +- i386 | gobjc++-multilib | 4:4.7.2-1 | - +- i386 | gobjc-4.6 | 4.6.3-14 | - +- i386 | gobjc-4.6-multilib | 4.6.3-14 | - +- i386 | gobjc-4.7 | 4.7.2-5 | - +- i386 | gobjc-4.7-multilib | 4.7.2-5 | - +- i386 | gobjc-mingw-w64-i686 | 4.6.3-14+8 | - +- i386 | gobjc-mingw-w64-x86-64 | 4.6.3-14+8 | - +- i386 | gobjc-multilib | 4:4.7.2-1 | - +- i386 | gobject-introspection | 1.32.1-1 | - +- i386 | gocr | 0.49-1 | - +- i386 | god | 0.7.18-3 | - +- i386 | gofigure2 | 0.9.0-1+b2 | - +- i386 | gogglesmm | 0.12.6-1 | - +- i386 | gogoc | 1:1.2-4 | - +- i386 | golang-dbg | 2:1.0.2-1.1 | - +- i386 | golang-go | 2:1.0.2-1.1 | - +- i386 | golang-src | 2:1.0.2-1.1 | - +- i386 | goldencheetah | 2.1-4 | - +- i386 | goldendict | 1.0.2~git20110906-1.1 | - +- i386 | golly | 2.3-1 | - +- i386 | gom | 0.30.2-5.4 | - +- i386 | gomoku.app | 1.2.9-1+b2 | - +- i386 | gonzui | 1.2+cvs20070129-3.1 | - +- i386 | goo | 0.155-12 | - +- i386 | goobox | 3.0.1-5 | - +- i386 | google-mock | 1.6.0-1 | - +- i386 | gopchop | 1.1.8-5 | - +- i386 | gopher | 3.0.13 | - +- i386 | goplay | 0.5-1.1 | - +- i386 | gorm.app | 1.2.16-1 | - +- i386 | gosmore | 0.0.0.20100711-2.1 | - +- i386 | gource | 0.38-1 | - +- i386 | gozer | 0.7.nofont.1-5 | - +- i386 | gpa | 0.9.0-4 | - +- i386 | gpac | 0.5.0~dfsg0-1 | - +- i386 | gpac-dbg | 0.5.0~dfsg0-1 | - +- i386 | gpac-modules-base | 0.5.0~dfsg0-1 | - +- i386 | gpaco | 2.0.9-2 | - +- i386 | gpaint | 0.3.3-6 | - +- i386 | gpart | 0.1h-11+b1 | - +- i386 | gparted | 0.12.1-2 | - +- i386 | gpdftext | 0.1.5-1+b2 | - +- i386 | gpe-announce | 0.14-2 | - +- i386 | gpe-appmgr | 2.8-3 | - +- i386 | gpe-bluetooth | 0.56-3 | - +- i386 | gpe-calendar | 0.92-4 | - +- i386 | gpe-clock | 0.27-2 | - +- i386 | gpe-conf | 0.2.9-1.1 | - +- i386 | gpe-confd | 0.16-2 | - +- i386 | gpe-contacts | 0.49-2 | - +- i386 | gpe-edit | 0.41-1 | - +- i386 | gpe-expenses | 0.1.9-2 | - +- i386 | gpe-filemanager | 0.31-2 | - +- i386 | gpe-gallery | 0.97-4 | - +- i386 | gpe-go | 0.05-5 | - +- i386 | gpe-julia | 0.0.6-7 | - +- i386 | gpe-lights | 0.13-4 | - +- i386 | gpe-login | 0.95-2 | - +- i386 | gpe-mininet | 0.7-2 | - +- i386 | gpe-mixer | 0.50-1 | - +- i386 | gpe-othello | 0.2-4 | - +- i386 | gpe-ownerinfo | 0.28-3 | - +- i386 | gpe-ownerinfo-dev | 0.28-3 | - +- i386 | gpe-question | 0.04-3 | - +- i386 | gpe-screenshot | 0.4-4 | - +- i386 | gpe-shield | 0.31-6 | - +- i386 | gpe-soundbite | 1.0.6-2 | - +- i386 | gpe-soundserver | 0.4-3 | - +- i386 | gpe-su | 0.20-1 | - +- i386 | gpe-taskmanager | 0.20-9 | - +- i386 | gpe-tetris | 0.6.4-2 | - +- i386 | gpe-timesheet | 0.32-2 | - +- i386 | gpe-todo | 0.58-1 | - +- i386 | gpe-watch | 0.11-1 | - +- i386 | gpe-what | 0.43-4 | - +- i386 | gperf | 3.0.3-1+b1 | - +- i386 | gperiodic | 2.0.10-7 | - +- i386 | gpesyncd | 2.0-1 | - +- i386 | gpgsm | 2.0.19-2+deb7u1 | - +- i386 | gpgv | 1.4.12-7+deb7u3 | - +- i386 | gphoto2 | 2.4.14-1 | - +- i386 | gphotofs | 0.4.0-6 | - +- i386 | gphpedit | 0.9.98-2 | - +- i386 | gpick | 0.2.4-1+b1 | - +- i386 | gpicview | 0.2.3-2 | - +- i386 | gpicview-dbg | 0.2.3-2 | - +- i386 | gpiv | 0.6.1-2 | - +- i386 | gpiv-mpi | 0.6.1-2 | - +- i386 | gpivtools | 0.6.0-3 | - +- i386 | gpivtools-mpi | 0.6.0-3 | - +- i386 | gplanarity | 17906-3 | - +- i386 | gplcver | 2.12a-1.1 | - +- i386 | gpm | 1.20.4-6 | - +- i386 | gpointing-device-settings | 1.5.1-6 | - +- i386 | gpomme | 1.39~dfsg-2+b1 | - +- i386 | gpp | 2.24-3 | - +- i386 | gpr | 0.15deb-2 | - +- i386 | gprbuild | 2011-2 | - +- i386 | gpredict | 1.3-2 | - +- i386 | gprolog | 1.3.0-6.1 | - +- i386 | gprompter | 0.8.8-1 | - +- i386 | gprompter-dbg | 0.8.8-1 | - +- i386 | gpsbabel | 1.4.3-1 | - +- i386 | gpsbabel-gui | 1.4.3-1 | - +- i386 | gpscorrelate | 1.6.1-4 | - +- i386 | gpscorrelate-gui | 1.6.1-4 | - +! i386 | gpsd | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | gpsd-clients | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | gpsd-dbg | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- i386 | gpsim | 0.26.1-2.1 | - +- i386 | gpsim-dev | 0.26.1-2.1 | - +- i386 | gpsk31 | 0.5-6 | - +- i386 | gpsmanshp | 1.2.1-1 | - +- i386 | gpstrans | 0.41-3 | - +- i386 | gpt | 1.1-2 | - +- i386 | gptsync | 0.14-2 | - +- i386 | gputils | 0.13.7-1 | - +- i386 | gpw | 0.0.19940601-8.1 | - +- i386 | gpx2shp | 0.69-3.1 | - ++ i386 | gr-fcdproplus | - | 0.0.1.1.2c80be-3~bpo70+1 ++ i386 | gr-iqbal | - | 0.37.1.5.d4fd4d-1~bpo70+1 ++ i386 | gr-osmosdr | - | 0.1.0.55.80c4af-2~bpo70~1 +- i386 | grabc | 1.1-2 | - +- i386 | grace | 1:5.1.22-13 | - +- i386 | gradm2 | 2.9.1~201206091838-1 | - +- i386 | grads | 2.0.a9-4+b2 | - +- i386 | grafx2 | 2.3-1.1 | - +- i386 | gramofile | 1.6-9 | - +- i386 | gramophone2 | 0.8.13a-1 | - +- i386 | granatier | 4:4.8.4-3 | - +- i386 | granule | 1.4.0-7-1 | - +- i386 | grap | 1.43-2 | - +- i386 | graphdefang | 2.71-3 | - +- i386 | graphicsmagick | 1.3.16-1.1 | - +- i386 | graphicsmagick-dbg | 1.3.16-1.1 | - +- i386 | graphthing | 1.3.2-3.1 | - +- i386 | graphviz | 2.26.3-14+deb7u1 | - +- i386 | grass-core | 6.4.2-2 | - +- i386 | grass-dev | 6.4.2-2 | - +- i386 | grass-gui | 6.4.2-2 | - +- i386 | gravitation | 3+dfsg1-3 | - +- i386 | gravitywars | 1.102-32 | - +- i386 | grcm | 0.1.6-1 | - +- i386 | grcompiler | 4.2-1 | - +- i386 | grdesktop | 0.23+d040330-3 | - +- i386 | greed | 3.7-1 | - +- i386 | gregorio | 2.0-1.2 | - +- i386 | grep | 2.12-2 | - +- i386 | grepcidr | 1.3-5 | - +- i386 | gresolver | 0.0.5-5 | - +- i386 | gretl | 1.9.9-1 | - +- i386 | grfcodec | 6.0.0-1 | - +- i386 | grhino | 0.16.1-2 | - +- i386 | gri | 2.12.23-2.2 | - +- i386 | gridengine-client | 6.2u5-7.1 | - +- i386 | gridengine-drmaa-dev | 6.2u5-7.1 | - +- i386 | gridengine-drmaa1.0 | 6.2u5-7.1 | - +- i386 | gridengine-exec | 6.2u5-7.1 | - +- i386 | gridengine-master | 6.2u5-7.1 | - +- i386 | gridengine-qmon | 6.2u5-7.1 | - +- i386 | gridlock.app | 1.10-3.2 | - +- i386 | gridsite | 1.7.16-1 | - +- i386 | gridsite-clients | 1.7.16-1 | - +- i386 | gridsite-dbg | 1.7.16-1 | - +- i386 | gridsite-gsexec | 1.7.16-1 | - +- i386 | grig | 0.8.0-1 | - +- i386 | grilo-plugins-0.1 | 0.1.19-1 | - +- i386 | gringo | 3.0.4-3 | - +- i386 | gringotts | 1.2.10~pre3-1 | - +- i386 | grisbi | 0.8.9-1 | - +- i386 | grml2usb | 0.12.2 | - +- i386 | groff | 1.21-9 | - +- i386 | groff-base | 1.21-9 | - +- i386 | grok | 1.20110708.1-4 | - +- i386 | grok-dbg | 1.20110708.1-4 | - +- i386 | gromacs | 4.5.5-2 | - +- i386 | gromacs-dev | 4.5.5-2 | - +- i386 | gromacs-mpich | 4.5.5-2 | - +- i386 | gromacs-openmpi | 4.5.5-2 | - +- i386 | gromit | 20041213-9 | - +- i386 | gross | 1.0.2-3 | - +- i386 | groundhog | 1.4-9 | - +- i386 | growisofs | 7.1-10 | - +- i386 | grpn | 1.1.2-3.1 | - +- i386 | grr.app | 0.9.0-1 | - +- i386 | grsync | 1.2.0-1 | - +- i386 | grub-common | 1.99-27+deb7u2 | - +- i386 | grub-coreboot | 1.99-27+deb7u2 | - +- i386 | grub-coreboot-bin | 1.99-27+deb7u2 | - +- i386 | grub-efi | 1.99-27+deb7u2 | - +- i386 | grub-efi-amd64 | 1.99-27+deb7u2 | - +- i386 | grub-efi-amd64-bin | 1.99-27+deb7u2 | - +- i386 | grub-efi-ia32 | 1.99-27+deb7u2 | - +- i386 | grub-efi-ia32-bin | 1.99-27+deb7u2 | - +- i386 | grub-emu | 1.99-27+deb7u2 | - +- i386 | grub-firmware-qemu | 1.99-27+deb7u2 | - +- i386 | grub-ieee1275 | 1.99-27+deb7u2 | - +- i386 | grub-ieee1275-bin | 1.99-27+deb7u2 | - +- i386 | grub-invaders | 1.0.0-12 | - +- i386 | grub-legacy | 0.97-67 | - +- i386 | grub-linuxbios | 1.99-27+deb7u2 | - +- i386 | grub-pc | 1.99-27+deb7u2 | - +- i386 | grub-pc-bin | 1.99-27+deb7u2 | - +- i386 | grub-rescue-pc | 1.99-27+deb7u2 | - +- i386 | grub2 | 1.99-27+deb7u2 | - +- i386 | grub2-common | 1.99-27+deb7u2 | - +- i386 | grun | 0.9.3-1 | - +- i386 | gsasl | 1.8.0-2 | - +- i386 | gsasl-dbg | 1.8.0-2 | - +- i386 | gscanbus | 0.8-1 | - +- i386 | gsetroot | 1.1-2.2 | - +- i386 | gsettings-desktop-schemas-dev | 3.4.2-3 | - +- i386 | gsimplecal | 1.5-1 | - +- i386 | gsl-bin | 1.15+dfsg.2-2 | - +- i386 | gsm-utils | 1.10-13.2 | - +- i386 | gsm0710muxd | 1.13-1 | - +- i386 | gsmartcontrol | 0.8.6-1.2 | - +- i386 | gsmc | 1.1-1.1 | - +- i386 | gsoap | 2.8.7-2 | - +- i386 | gsoap-dbg | 2.8.7-2 | - +- i386 | gsoko | 0.4.2-gpe6-3 | - +- i386 | gsql | 0.2.2-1.2+b1 | - +- i386 | gsql-mysql-engine | 0.2.2-1.2+b1 | - +- i386 | gsql-plugins | 0.2.2-1.2+b1 | - +- i386 | gsql-postgresql-engine | 0.2.2-1.2+b1 | - +- i386 | gssdp-tools | 0.12.2.1-2 | - +- i386 | gst123 | 0.3.1-1 | - +- i386 | gstm | 1.2-8 | - +- i386 | gstreamer-tools | 0.10.36-1.2 | - +- i386 | gstreamer0.10-alsa | 0.10.36-1.1 | - +- i386 | gstreamer0.10-buzztard | 0.5.0-2+deb7u1 | - +- i386 | gstreamer0.10-chromaprint | 0.1-3 | - +- i386 | gstreamer0.10-crystalhd | 1:0.0~git20110715.fdd2f19-9 | - +- i386 | gstreamer0.10-dvswitch | 0.0.1-1 | - +- i386 | gstreamer0.10-ffmpeg | 0.10.13-5 | - +- i386 | gstreamer0.10-ffmpeg-dbg | 0.10.13-5 | - +- i386 | gstreamer0.10-fluendo-mp3 | 0.10.15.debian-1 | - +- i386 | gstreamer0.10-gconf | 0.10.31-3+nmu1 | - +- i386 | gstreamer0.10-gnomevfs | 0.10.36-1.1 | - +- i386 | gstreamer0.10-gnonlin | 0.10.17-2 | - +- i386 | gstreamer0.10-gnonlin-dbg | 0.10.17-2 | - +- i386 | gstreamer0.10-hplugins | 0.2.0-2 | - +- i386 | gstreamer0.10-nice | 0.1.2-1 | - +- i386 | gstreamer0.10-packagekit | 0.7.6-3 | - +- i386 | gstreamer0.10-plugins-bad | 0.10.23-7.1 | - +- i386 | gstreamer0.10-plugins-bad-dbg | 0.10.23-7.1 | - +- i386 | gstreamer0.10-plugins-base | 0.10.36-1.1 | - +- i386 | gstreamer0.10-plugins-base-apps | 0.10.36-1.1 | - +- i386 | gstreamer0.10-plugins-base-dbg | 0.10.36-1.1 | - +- i386 | gstreamer0.10-plugins-cutter | 1.1.7-1.2 | - +- i386 | gstreamer0.10-plugins-good | 0.10.31-3+nmu1 | - +- i386 | gstreamer0.10-plugins-good-dbg | 0.10.31-3+nmu1 | - +- i386 | gstreamer0.10-plugins-ugly | 0.10.19-2+b2 | - +- i386 | gstreamer0.10-plugins-ugly-dbg | 0.10.19-2+b2 | - +- i386 | gstreamer0.10-pulseaudio | 0.10.31-3+nmu1 | - +- i386 | gstreamer0.10-qapt | 1.3.0-2 | - +- i386 | gstreamer0.10-tools | 0.10.36-1.2 | - +- i386 | gstreamer0.10-x | 0.10.36-1.1 | - ++ i386 | gstreamer1.0-alsa | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-libav | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-libav-dbg | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-bad | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-bad-dbg | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-base | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-base-apps | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-base-dbg | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-good | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-good-dbg | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-ugly | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-plugins-ugly-dbg | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-pulseaudio | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-tools | - | 1.0.8-1~bpo70+1 ++ i386 | gstreamer1.0-x | - | 1.0.8-1~bpo70+1 +- i386 | gsynaptics | 1.5.1-6 | - +- i386 | gtali | 1:3.4.2-3 | - +- i386 | gtamsanalyzer.app | 0.42-6+b3 | - +- i386 | gtans | 1.99.0-2 | - +- i386 | gtetrinet | 0.7.11-3+b2 | - +- i386 | gthumb | 3:3.0.1-2 | - +- i386 | gthumb-dbg | 3:3.0.1-2 | - +- i386 | gthumb-dev | 3:3.0.1-2 | - +- i386 | gtick | 0.5.1-1 | - +- i386 | gtimer | 2.0.0-1.1 | - +- i386 | gtk-3-examples | 3.4.2-7 | - +- i386 | gtk-chtheme | 0.3.1-5 | - +- i386 | gtk-gnutella | 0.98.3-1 | - +- i386 | gtk-im-libthai | 0.2.1-4 | - +- i386 | gtk-sharp2-gapi | 2.12.10-5 | - +- i386 | gtk-theme-switch | 2.1.0-2 | - +- i386 | gtk-vector-screenshot | 0.3.2-1 | - +- i386 | gtk2-engines | 1:2.20.2-2 | - +- i386 | gtk2-engines-aurora | 1.5.1-3 | - +- i386 | gtk2-engines-cleanice | 2.4.1-3 | - +- i386 | gtk2-engines-magicchicken | 1.1.1-9 | - +- i386 | gtk2-engines-moblin | 1.1.1-1.1 | - +- i386 | gtk2-engines-murrine | 0.98.1.1-5 | - +- i386 | gtk2-engines-nodoka | 0.7.0-1.1 | - +- i386 | gtk2-engines-oxygen | 1.2.4-1 | - +- i386 | gtk2-engines-pixbuf | 2.24.10-2 | - +- i386 | gtk2-engines-qtcurve | 1.8.15-4 | - +- i386 | gtk2-engines-ubuntulooks | 0.9.12-2 | - +- i386 | gtk2-engines-wonderland | 1.0-8 | - +- i386 | gtk2-engines-xfce | 2.8.1-3 | - +- i386 | gtk2.0-examples | 2.24.10-2 | - +- i386 | gtk2hs-buildtools | 0.12.3-2 | - +- i386 | gtk3-engines-oxygen | 1.0.4-1 | - +- i386 | gtk3-engines-unico | 1.0.2-1 | - +- i386 | gtk3-im-libthai | 0.2.1-4 | - +- i386 | gtkam | 0.1.18-1 | - +- i386 | gtkam-dbg | 0.1.18-1 | - +- i386 | gtkam-gimp | 0.1.18-1 | - +- i386 | gtkaml | 0.5.91-1 | - +- i386 | gtkaml-dbg | 0.5.91-1 | - +- i386 | gtkatlantic | 0.4.2-3 | - +- i386 | gtkballs | 3.1.5-9 | - +- i386 | gtkboard | 0.11pre0+cvs.2003.11.02-5 | - +- i386 | gtkcookie | 0.4-5 | - +- i386 | gtkguitune | 0.8-6 | - +- i386 | gtkhash | 0.6.0-4 | - +- i386 | gtklp | 1.2.7-2.3 | - +- i386 | gtkmorph | 1:20090926 | - +- i386 | gtkperf | 0.40+ds-2 | - +- i386 | gtkpod | 2.1.2-1 | - +- i386 | gtkpod-dbg | 2.1.2-1 | - +- i386 | gtkpool | 0.5.0-9 | - +- i386 | gtkwave | 3.3.37-1 | - +- i386 | gtranslator | 2.91.4-1 | - +- i386 | gtrayicon | 1.1-1 | - +- i386 | gtrayicon-dbg | 1.1-1 | - +- i386 | gtypist | 2.9.1-2.1 | - +- i386 | guacd | 0.6.0-1 | - +- i386 | guake | 0.4.3-3 | - +- i386 | guayadeque | 0.3.5~ds0-4 | - +- i386 | guayadeque-dbg | 0.3.5~ds0-4 | - +- i386 | gucharmap | 1:3.4.1.1-2.1 | - +- i386 | guessnet | 0.55 | - +- i386 | guestfish | 1:1.18.1-1+deb7u3 | - +- i386 | guestfsd | 1:1.18.1-1+deb7u3 | - +- i386 | guestmount | 1:1.18.1-1+deb7u3 | - +- i386 | guile-1.6 | 1.6.8-10.3 | - +- i386 | guile-1.6-dev | 1.6.8-10.3 | - +- i386 | guile-1.6-libs | 1.6.8-10.3 | - +- i386 | guile-1.8 | 1.8.8+1-8 | - +- i386 | guile-1.8-dev | 1.8.8+1-8 | - +- i386 | guile-1.8-libs | 1.8.8+1-8 | - +- i386 | guile-2.0 | 2.0.5+1-3 | - +- i386 | guile-2.0-dev | 2.0.5+1-3 | - +- i386 | guile-2.0-libs | 2.0.5+1-3 | - +- i386 | guile-cairo | 1.4.0-3 | - +- i386 | guile-cairo-dev | 1.4.0-3 | - +- i386 | guile-db | 0.1-4.1 | - +- i386 | guile-g-wrap | 1.9.14-1.1 | - +! i386 | guile-gnutls | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +- i386 | guile-pg | 0.16-5 | - +- i386 | guitarix | 0.22.4-1 | - +- i386 | gummi | 0.6.3-1.2 | - +- i386 | gunroar | 0.15.dfsg1-5 | - +- i386 | gup | 0.5.13 | - +- i386 | gupnp-dlna-tools | 0.6.6-1 | - +- i386 | gupnp-tools | 0.8.4-1+b1 | - +- i386 | gupnp-vala | 0.10.4-1 | - +- i386 | gurlchecker | 0.13.1-2.1 | - +- i386 | guvcview | 1.5.3-1 | - +- i386 | guymager | 0.6.7-3 | - +- i386 | gv | 1:3.7.3-1 | - +- i386 | gvfs | 1.12.3-4 | - +- i386 | gvfs-backends | 1.12.3-4 | - +- i386 | gvfs-bin | 1.12.3-4 | - +- i386 | gvfs-daemons | 1.12.3-4 | - +- i386 | gvfs-dbg | 1.12.3-4 | - +- i386 | gvfs-fuse | 1.12.3-4 | - +- i386 | gvfs-libs | 1.12.3-4 | - +- i386 | gvidm | 0.8-11 | - +- i386 | gvncviewer | 0.5.0-3.1 | - +- i386 | gvpe | 2.24-2 | - +- i386 | gwaei | 3.4.3-1 | - +- i386 | gwaterfall | 0.1-5 | - +- i386 | gwc | 0.21.17~dfsg0-2 | - +- i386 | gwc-dbg | 0.21.17~dfsg0-2 | - +- i386 | gweled | 0.9.1-2 | - +! i386 | gwenhywfar-tools | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +- i386 | gwenview | 4:4.8.4-2 | - +- i386 | gwenview-dbg | 4:4.8.4-2 | - +- i386 | gwhere | 0.2.3.dfsg.1-3 | - +- i386 | gworkspace.app | 0.8.8-1.1 | - +- i386 | gworldclock | 1.4.4-9 | - +- i386 | gwsetup | 6.05.1-1 | - +- i386 | gwtp | 6.05.1-1 | - +- i386 | gwyddion | 2.28-2 | - +- i386 | gwyddion-plugins | 2.28-2 | - +- i386 | gxine | 0.5.907-2+deb7u1 | - +- i386 | gxineplugin | 0.5.907-2+deb7u1 | - +- i386 | gxmessage | 2.20.0-1 | - +- i386 | gxmms2 | 0.7.1-2 | - +- i386 | gxneur | 0.15.0-2.1 | - +- i386 | gxtuner | 2.0-2 | - +! i386 | gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | gyoto-dbg | 0.0.3-5 | 0.1.0-2~bpo70+1 +- i386 | gyrus | 0.3.10-1.1 | - +- i386 | gzip | 1.5-1.1 | - +- i386 | gzrt | 0.6+ds1-1 | - +- i386 | h5utils | 1.12.1-2 | - +- i386 | ha | 0.999p+dfsg-3 | - ++ i386 | hackrf | - | 2013.07.1.16.d5cebd-2~bpo70+1 +- i386 | hal | 0.5.14-8 | - +- i386 | halevt | 0.1.6.2-2 | - +- i386 | halibut | 1.0+svn20090906-6 | - +- i386 | hama-slide-mouse-control | 1.0-2 | - +- i386 | hamfax | 0.8.1-1+b1 | - +- i386 | handlersocket-mysql-5.5 | 1.1.0-7-g1044a28-1 | - +- i386 | hannah | 1.0-2 | - +- i386 | hapm | 0.7-1 | - +- i386 | happy | 1.18.9-1 | - ++ i386 | haproxy | - | 1.4.24-2~bpo70+1 +- i386 | hardening-wrapper | 2.2 | - +- i386 | hardinfo | 0.5.1-1.2 | - +- i386 | hardlink | 0.2.0 | - +- i386 | harminv | 1.3.1-9 | - +- i386 | hasciicam | 1.1.2-1 | - +- i386 | haserl | 0.9.29-3 | - +- i386 | hashalot | 0.3-5 | - +- i386 | hashcash | 1.21-1.1 | - +- i386 | haskell-debian-utils | 3.64-3 | - +- i386 | hatari | 1.6.2-1 | - +! i386 | haveged | 1.4-4 | 1.7b-2~bpo70+1 +- i386 | haxml | 1:1.22.5-2+b2 | - +- i386 | hdapsd | 1:20090401-2 | - +- i386 | hdate-applet | 0.15.11-1.1+b2 | - +- i386 | hddtemp | 0.3-beta15-52 | - +- i386 | hdf4-tools | 4.2r4-13 | - +- i386 | hdf5-helpers | 1.8.8-9 | - +- i386 | hdf5-tools | 1.8.8-9 | - +- i386 | hdfview | 2.8.0-5 | - +- i386 | hdhomerun-config | 20120405-1 | - +- i386 | hdparm | 9.39-1+b1 | - +- i386 | hdparm-dbg | 9.39-1+b1 | - +- i386 | hdup | 2.0.14-4 | - +- i386 | heartbeat | 1:3.0.5-3 | - +- i386 | heartbeat-dev | 1:3.0.5-3 | - +- i386 | hebcal | 3.5-2 | - +! i386 | hedgewars | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +- i386 | heimdal-clients | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-clients-x | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-dbg | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-dev | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-kcm | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-kdc | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-multidev | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-servers | 1.6~git20120403+dfsg1-2 | - +- i386 | heimdal-servers-x | 1.6~git20120403+dfsg1-2 | - +- i386 | heirloom-mailx | 12.5-2 | - +- i386 | helium | 1.7~pre20090428-3.1 | - +- i386 | hello | 2.8-2 | - +- i386 | hello-debhelper | 2.8-1 | - +- i386 | help2man | 1.40.10 | - +- i386 | helpviewer.app | 0.3-7+b3 | - +! i386 | herbstluftwm | 0.3-1 | 0.5.3-1~bpo70+1 +- i386 | hercules | 3.07-2.2 | - +- i386 | herculesstudio | 1.3.0-2 | - +- i386 | heroes-common | 0.21-8.4 | - +- i386 | heroes-sdl | 0.21-8.4 | - +- i386 | hesiod | 3.0.2-21 | - +- i386 | hex-a-hop | 0.0.20070315-8 | - +- i386 | hexalate | 1.0.1-3 | - +- i386 | hexcurse | 1.55-2 | - +- i386 | hexec | 0.2.1-2 | - +- i386 | hexedit | 1.2.12-4 | - +- i386 | hexer | 0.1.7-1.1 | - +- i386 | hexter | 0.6.2-3 | - +- i386 | hexxagon | 1.0pl1-3.1 | - +- i386 | hfsplus | 1.0.4-12 | - +- i386 | hfsprogs | 332.25-10 | - +- i386 | hfsutils | 3.2.6-11 | - +- i386 | hfsutils-tcltk | 3.2.6-11 | - +- i386 | highlight | 3.9-1 | - +- i386 | hime | 0.9.9+git20120619+dfsg-1 | - +- i386 | hime-anthy | 0.9.9+git20120619+dfsg-1 | - +- i386 | hime-chewing | 0.9.9+git20120619+dfsg-1 | - +- i386 | hime-gtk3-immodule | 0.9.9+git20120619+dfsg-1 | - +- i386 | hime-qt4-immodule | 0.9.9+git20120619+dfsg-1 | - +- i386 | hime-tables | 0.9.9+git20120619+dfsg-1 | - +- i386 | hitori | 0.3.2-1 | - +- i386 | hlbr | 1.7.2-2 | - +- i386 | hlint | 1.8.28-1+b3 | - +- i386 | hmmer | 3.0-4 | - +- i386 | hnb | 1.9.18-9 | - +- i386 | ho22bus | 0.9.1-2 | - +- i386 | hodie | 1.5-1 | - +- i386 | hoichess | 0.10.3-6.1 | - +- i386 | hol-light | 20120602-1 | - +- i386 | hol88 | 2.02.19940316-15 | - +- i386 | hol88-library | 2.02.19940316-15 | - +- i386 | holdingnuts | 0.0.5-4 | - +- i386 | holdingnuts-server | 0.0.5-4 | - +- i386 | holotz-castle | 1.3.14-5 | - +- i386 | holotz-castle-editor | 1.3.14-5 | - +- i386 | homebank | 4.4-1 | - +- i386 | horgand | 1.14-5 | - +- i386 | hostap-utils | 1:0.4.7-1 | - +- i386 | hostapd | 1:1.0-3+b1 | - +- i386 | hostname | 3.11 | - +- i386 | hotkeys | 0.5.7.4-0.3+b1 | - +- i386 | hotswap-gui | 0.4.0-12 | - +- i386 | hotswap-text | 0.4.0-12 | - +- i386 | hoz | 1.65-2 | - +- i386 | hoz-gui | 1.65-2 | - +- i386 | hp2xx | 3.4.4-8+b1 | - +- i386 | hp48cc | 1.3-4 | - +- i386 | hpanel | 0.3.2-4 | - +- i386 | hpcc | 1.4.1-2 | - +- i386 | hping3 | 3.a2.ds2-6 | - +- i386 | hplip | 3.12.6-3.1+deb7u1 | - +- i386 | hplip-dbg | 3.12.6-3.1+deb7u1 | - +- i386 | hpsockd | 0.17+b1 | - +- i386 | hscolour | 1.19-3+b1 | - +- i386 | hsetroot | 1.0.2-1 | - +- i386 | hspell | 1.1-2 | - +- i386 | hspell-gui | 0.2.6-5.1 | - +- i386 | ht | 2.0.20-2 | - +- i386 | htcheck | 1:2.0.0~rc1-2+b1 | - +- i386 | htdig | 1:3.2.0b6-12 | - +- i386 | html-xml-utils | 6.1-1 | - +- i386 | html2text | 1.3.2a-15 | - +- i386 | htmldoc | 1.8.27-8 | - +- i386 | htop | 1.0.1-1 | - ++ i386 | htpdate | - | 1.1.0-1~bpo70+1 +- i386 | htsengine | 1.06-1 | - +- i386 | httest | 2.2.6-1 | - +- i386 | httperf | 0.9.0-2+b1 | - +- i386 | httpfs2 | 0.1.4-1 | - +- i386 | httpie | 0.1.6+20120309git-2.1 | - +- i386 | httping | 1.5.3-1 | - ++ i386 | httpry | - | 0.1.7-3~bpo70+1 ++ i386 | httpry-dbg | - | 0.1.7-3~bpo70+1 +- i386 | httptunnel | 3.3+dfsg-3 | - +- i386 | httrack | 3.46.1-1 | - +! i386 | hugin | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! i386 | hugin-tools | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +- i386 | hugs | 98.200609.21-5.3 | - +- i386 | hunspell | 1.3.2-4 | - +- i386 | hunspell-tools | 1.3.2-4 | - +- i386 | hunt | 1.5-6 | - +- i386 | hwinfo | 16.0-2.2 | - +- i386 | hwloc | 1.4.1-4 | - +- i386 | hwloc-nox | 1.4.1-4 | - +- i386 | hyantesite | 1.3.0-1 | - +- i386 | hydrogen | 0.9.6~beta2-1 | - +- i386 | hylafax-client | 3:6.0.6-5 | - +- i386 | hylafax-client-dbg | 3:6.0.6-5 | - +- i386 | hylafax-server | 3:6.0.6-5 | - +- i386 | hylafax-server-dbg | 3:6.0.6-5 | - +- i386 | hyphen-show | 20000425-2 | - +- i386 | i2c-tools | 3.1.0-2 | - +! i386 | i3 | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3-wm | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3-wm-dbg | 4.2-2 | 4.7.2-1~bpo70+1 +- i386 | i3lock | 2.4.1-1 | - +! i386 | i3status | 2.5.1-1 | 2.8-1~bpo70+1 +- i386 | i810switch | 0.6.5-7 | - +- i386 | i8kutils | 1.33 | - +- i386 | i965-va-driver | 1.0.17-1 | - +- i386 | i965-va-driver-dbg | 1.0.17-1 | - +- i386 | ia32-libs-gtk-i386 | 1:0.1 | - +- i386 | ia32-libs-i386 | 1:0.4 | - +- i386 | iagno | 1:3.4.2-3 | - +- i386 | iasl | 20100528-3 | - +- i386 | iat | 0.1.3-7 | - +- i386 | iaxmodem | 1.2.0~dfsg-1 | - +- i386 | ibam | 1:0.5.2-2.1 | - +- i386 | ibod | 1.5.0-6 | - +- i386 | ibsim-utils | 0.5-1.1 | - +- i386 | ibulgarian | 4.1-3 | - +! i386 | ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- i386 | ibus-anthy | 1.2.6-2+deb7u1 | - +- i386 | ibus-array | 0.0.2-6 | - +- i386 | ibus-chewing | 1.3.10+clean-3+b1 | - +- i386 | ibus-clutter | 0.0+git20090728.a936bacf-5 | - +! i386 | ibus-gtk | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | ibus-gtk3 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- i386 | ibus-hangul | 1.4.1-1+deb7u1 | - +- i386 | ibus-input-pad | 1.4.0-2 | - +- i386 | ibus-m17n | 1.3.4-1+deb7u1 | - +- i386 | ibus-mozc | 1.5.1090.102-4+deb7u1 | - +- i386 | ibus-pinyin | 1.4.0-1+deb7u1 | - +- i386 | ibus-qt4 | 1.3.1-2.1 | - +- i386 | ibus-skk | 1.4.1-2+deb7u1 | - +- i386 | ibus-sunpinyin | 2.0.3-4+deb7u1 | - +- i386 | ibus-tegaki | 0.3.1-1 | - +- i386 | ibus-unikey | 0.6.1-1 | - +- i386 | ibutils | 1.2-OFED-1.4.2-1.3 | - +- i386 | ibverbs-utils | 1.1.6-1 | - +- i386 | ical2html | 2.0-1 | - +- i386 | icc-utils | 1.4.0-8 | - +- i386 | ice34-services | 3.4.2-8.2 | - +- i386 | ice34-translators | 3.4.2-8.2 | - +- i386 | icebox | 3.4.2-8.2 | - +- i386 | icebreaker | 1.21-11 | - +- i386 | icecast2 | 2.3.2-9+deb7u2 | - +- i386 | icedax | 9:1.1.11-2 | - +- i386 | icedove | 10.0.12-1 | - +- i386 | icedove-dbg | 10.0.12-1 | - +- i386 | icedove-dev | 10.0.12-1 | - +- i386 | icedtea-6-jre-cacao | 6b27-1.12.5-1 | - +- i386 | icedtea-6-jre-jamvm | 6b27-1.12.5-1 | - +- i386 | icedtea-6-plugin | 1.3.2-1 | - +- i386 | icedtea-7-jre-cacao | 7u3-2.1.7-1 | - +- i386 | icedtea-7-jre-jamvm | 7u3-2.1.7-1 | - +- i386 | icedtea-7-plugin | 1.3.2-1 | - +- i386 | icedtea-netx | 1.3.2-1 | - +- i386 | icee-translators | 1.2.0-6 | - +- i386 | iceowl-extension | 10.0.12-1 | - +- i386 | ices2 | 2.0.1-13 | - +- i386 | iceweasel | 17.0.10esr-1~deb7u1 | - +- i386 | iceweasel-dbg | 17.0.10esr-1~deb7u1 | - +- i386 | icewm | 1.3.7-4 | - +- i386 | icewm-common | 1.3.7-4 | - +- i386 | icewm-experimental | 1.3.7-4 | - +- i386 | icewm-gnome-support | 1.3.7-4 | - +- i386 | icewm-lite | 1.3.7-4 | - +- i386 | icheck | 0.9.7-6.1+b2 | - +! i386 | icinga | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-cgi | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-core | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-dbg | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-idoutils | 1.7.1-6 | 1.9.3-2~bpo70+1 +- i386 | icmake | 7.18.00-2 | - +- i386 | icmpinfo | 1.11-7 | - +- i386 | icmptx | 0.2-1 | - +- i386 | icmpush | 2.2-6 | - +- i386 | icnsutils | 0.8.1-1 | - +- i386 | icom | 20040912-1.1 | - +- i386 | icon-slicer | 0.3-6 | - +- i386 | iconc | 9.4.3-4.2 | - +- i386 | icont | 9.4.3-4.2 | - +- i386 | iconx | 9.4.3-4.2 | - +- i386 | icoutils | 0.29.1-5 | - +- i386 | iczech | 20040229-5.1 | - +- i386 | id-utils | 4.5+dfsg-0.1 | - +- i386 | id3 | 0.15-3 | - +- i386 | id3ren | 1.1b0-6 | - +- i386 | id3tool | 1.2a-4 | - +- i386 | id3v2 | 0.1.12-2 | - +- i386 | idanish | 1.6.25-1.1 | - +- i386 | idecrypt | 3.0.19.ds1-7 | - +- i386 | ident2 | 1.07-1.1 | - +- i386 | idesk | 0.7.5-4.2 | - +- i386 | ideviceinstaller | 1.0.0-1.2 | - +- i386 | ideviceinstaller-dbg | 1.0.0-1.2 | - +- i386 | idjc | 0.8.7-2 | - +- i386 | idle3-tools | 0.9.1-1 | - +- i386 | idn | 1.25-2 | - +- i386 | idn2 | 0.8-2 | - +- i386 | idzebra-2.0 | 2.0.44-3 | - +- i386 | idzebra-2.0-utils | 2.0.44-3 | - +- i386 | iec16022 | 0.2.4-1 | - +- i386 | ifcico | 2.14tx8.10-21 | - +- i386 | ifenslave-2.6 | 1.1.0-20 | - +- i386 | ifgate | 2.14tx8.10-21 | - +- i386 | ifhp | 3.5.20-12.1 | - +- i386 | ifile | 1.3.9-6 | - +- i386 | ifinnish | 0.7-18 | - +- i386 | ifinnish-large | 0.7-18 | - +- i386 | ifinnish-small | 0.7-18 | - +- i386 | ifmetric | 0.3-2+deb7u1 | - +- i386 | ifp-line-libifp | 1.0.0.2-5 | - +- i386 | ifpgui | 1.0.0-3 | - +- i386 | ifplugd | 0.28-19 | - +- i386 | ifrename | 30~pre9-8 | - +- i386 | ifrench-gut | 1:1.0-30 | - +- i386 | ifrit | 3.3.4-3 | - +- i386 | ifstat | 1.1-8 | - +- i386 | iftop | 1.0~pre2-4~deb7u2 | - +- i386 | iftop-dbg | 1.0~pre2-4~deb7u2 | - +- i386 | ifupdown | 0.7.8 | - +- i386 | ifuse | 1.0.0-1+b1 | - +- i386 | ifuse-dbg | 1.0.0-1+b1 | - +- i386 | igaelic | 0.50-8 | - +- i386 | ihungarian | 1.2+repack-2 | - +- i386 | ii | 1.6-1 | - +- i386 | ii-esu | 1.0a.dfsg1-4 | - +- i386 | iipimage-server | 0.9.9-2 | - +- i386 | iirish | 2.0-21 | - +- i386 | iitalian | 1:2.3-3 | - +- i386 | ijsgutenprint | 5.2.9-1 | - +- i386 | ikarus | 0.0.3+bzr.2010.01.26-2 | - ++ i386 | ike | - | 2.2.1+dfsg-2~bpo70+1 ++ i386 | ike-qtgui | - | 2.2.1+dfsg-2~bpo70+1 +- i386 | ike-scan | 1.9-4+b1 | - +- i386 | ikiwiki-hosting-web | 0.20120527 | - +- i386 | imagemagick | 8:6.7.7.10-5+deb7u2 | - +- i386 | imagemagick-dbg | 8:6.7.7.10-5+deb7u2 | - +- i386 | imageshack-uploader | 2.2+hg20100408.d802dea89428-5.1 | - +- i386 | imagevis3d | 2.0.1-5 | - +- i386 | imagination | 3.0-2 | - +- i386 | imanx | 0.50-9.1 | - +- i386 | imapcopy | 1.04-1 | - +- i386 | imapfilter | 1:2.5.2-2 | - +- i386 | imapproxy | 1.2.7-1.1 | - +- i386 | imaptool | 0.9-12 | - +- i386 | imgvtopgm | 2.0-9 | - +- i386 | imhangul-gtk2 | 2.1.0-2 | - +- i386 | imhangul-gtk3 | 3.1.0-2 | - +- i386 | imms-audacious | 3.1.0~svn301-2 | - +- i386 | imms-common | 3.1.0~svn301-2 | - +- i386 | imsniff | 0.04-6 | - +- i386 | imspector | 0.9-1 | - ++ i386 | imview | - | 1.1.9c-12~bpo70+1 +- i386 | imvirt-helper | 0.9.4-4 | - +- i386 | imwheel | 1.0.0pre12-9 | - +- i386 | inadyn | 1.96.2-1+b1 | - +- i386 | incron | 0.5.10-1 | - +- i386 | indent | 2.2.11-2 | - +- i386 | indi-bin | 0.9.1-2 | - +- i386 | indi-dbg | 0.9.1-2 | - +- i386 | indicator-applet | 0.5.0-1 | - +- i386 | indicator-applet-appmenu | 0.5.0-1 | - +- i386 | indicator-applet-complete | 0.5.0-1 | - +- i386 | indicator-applet-session | 0.5.0-1 | - +- i386 | indicator-application | 0.5.0-1 | - +- i386 | indicator-application-gtk2 | 0.5.0-1 | - +- i386 | indicator-messages | 0.6.0-1 | - +- i386 | indicator-messages-gtk2 | 0.6.0-1 | - +- i386 | indicator-session | 0.3.96-1 | - +- i386 | indicator-session-gtk2 | 0.3.96-1 | - +- i386 | indicator-status-provider-emesene | 0.6.0-1 | - +- i386 | indicator-status-provider-mc5 | 0.6.0-1 | - +- i386 | indicator-status-provider-pidgin | 0.6.0-1 | - +- i386 | indicator-status-provider-telepathy | 0.6.0-1 | - +- i386 | indigo-utils | 1.0.0-2 | - +- i386 | inetutils-ftp | 2:1.9-2 | - +- i386 | inetutils-ftpd | 2:1.9-2 | - +- i386 | inetutils-inetd | 2:1.9-2 | - +- i386 | inetutils-ping | 2:1.9-2 | - +- i386 | inetutils-syslogd | 2:1.9-2 | - +- i386 | inetutils-talk | 2:1.9-2 | - +- i386 | inetutils-talkd | 2:1.9-2 | - +- i386 | inetutils-telnet | 2:1.9-2 | - +- i386 | inetutils-telnetd | 2:1.9-2 | - +- i386 | inetutils-tools | 2:1.9-2 | - +- i386 | inetutils-traceroute | 2:1.9-2 | - +- i386 | infernal | 1.0.2-2 | - +- i386 | infernal-dbg | 1.0.2-2 | - +- i386 | infiniband-diags | 1.4.4-20090314-1.2 | - +- i386 | infinoted | 0.5.2-6.1 | - +- i386 | info | 4.13a.dfsg.1-10 | - +- i386 | infon-server | 0~r198-8 | - +- i386 | infon-viewer | 0~r198-8 | - +- i386 | initscripts | 2.88dsf-41+deb7u1 | - +- i386 | inkscape | 0.48.3.1-1.3 | - +- i386 | inn | 1:1.7.2q-41 | - +- i386 | inn2 | 2.5.3-3 | - +- i386 | inn2-dev | 2.5.3-3 | - +- i386 | inn2-inews | 2.5.3-3 | - +- i386 | inn2-lfs | 2.5.3-3 | - +- i386 | innfeed | 0.10.1.7-8 | - +- i386 | innoextract | 1.2+git20120504-1 | - +- i386 | inorwegian | 2.0.10-5.1 | - +- i386 | inotail | 0.5-2 | - +- i386 | inoticoming | 0.2.3-1 | - +- i386 | inotify-tools | 3.14-1 | - +- i386 | input-pad | 1.0.1-2 | - +- i386 | input-utils | 1.0-1 | - +- i386 | inputattach | 1:1.4.3-1 | - +- i386 | inputlirc | 19-1 | - +- i386 | inspircd | 2.0.5-1+b1 | - +- i386 | inspircd-dbg | 2.0.5-1+b1 | - +- i386 | insserv | 1.14.0-5 | - +- i386 | install-info | 4.13a.dfsg.1-10 | - +- i386 | instead | 1.6.0-1 | - +- i386 | integrit | 4.1-1 | - +- i386 | intel-gpu-tools | 1.2-1 | - ++ i386 | intel-microcode | - | 2.20140122.1~bpo70+1 +- i386 | intel2gas | 1.3.3-14 | - +- i386 | inteltool | 0.0+r4091-1.2 | - +- i386 | intercal | 29:0.29-2 | - +- i386 | interchange | 5.7.7-2 | - +- i386 | intone | 0.77-2 | - +- i386 | invada-studio-plugins-ladspa | 0.3.1-2 | - +- i386 | invada-studio-plugins-lv2 | 1.2.0+repack0-4 | - +- i386 | inventor-clients | 2.1.5-10-16 | - +- i386 | inventor-demo | 2.1.5-10-16 | - +- i386 | inventor-dev | 2.1.5-10-16 | - +- i386 | iodbc | 3.52.7-2+deb7u1 | - +- i386 | iodine | 0.6.0~rc1-12 | - +- i386 | iogerman | 1:2-28 | - +- i386 | iok | 2.1.2-1 | - +- i386 | ion | 3.0.1~dfsg1-1 | - +- i386 | ioping | 0.6-1 | - +- i386 | ioquake3 | 1.36+svn2287-1 | - +- i386 | ioquake3-dbg | 1.36+svn2287-1 | - +- i386 | ioquake3-server | 1.36+svn2287-1 | - +- i386 | iotop | 0.4.4-4 | - +- i386 | ipadic | 2.7.0+main-3 | - +- i386 | ipband | 0.8.1-3 | - +- i386 | ipe | 7.1.2-1 | - +- i386 | ipe5toxml | 20051114-1 | - +- i386 | iperf | 2.0.5-3 | - +- i386 | ipfm | 0.11.5-4.1 | - +- i386 | ipgrab | 0.9.10-1 | - +- i386 | ipheth-utils | 1.0-3+b1 | - +- i386 | ipip | 1.1.9 | - +- i386 | ipkungfu | 0.6.1-6 | - +- i386 | ipmitool | 1.8.11-5 | - +- i386 | ippl | 1.4.14-12.1 | - +- i386 | ippl-dbg | 1.4.14-12.1 | - +- i386 | ipppd | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | iprint | 1.3-9 | - +- i386 | iproute | 20120521-3+b3 | - +- i386 | iproute-dev | 20120521-3+b3 | - +- i386 | ips | 4.0-1 | - +- i386 | ipsec-tools | 1:0.8.0-14 | - +- i386 | ipset | 6.12.1-1 | - +- i386 | ipsvd | 1.0.0-2 | - +- i386 | iptables | 1.4.14-3.1 | - +- i386 | iptables-dev | 1.4.14-3.1 | - +- i386 | iptotal | 0.3.3-13 | - +- i386 | iptraf | 3.0.0-8.1 | - ++ i386 | iptraf-ng | - | 1.1.3.1-2~bpo70+1 +- i386 | iptstate | 2.2.5-1 | - +- i386 | iptux | 0.5.3-1 | - +- i386 | iputils-arping | 3:20101006-1+b1 | - +- i386 | iputils-clockdiff | 3:20101006-1+b1 | - +- i386 | iputils-ping | 3:20101006-1+b1 | - +- i386 | iputils-tracepath | 3:20101006-1+b1 | - +- i386 | ipv6calc | 0.93.1-2 | - +- i386 | ipvsadm | 1:1.26-1 | - +- i386 | ipwatchd | 1.2.1-1 | - +- i386 | ipwatchd-gnotify | 1.0.1-1+b1 | - +- i386 | ipx | 2.2.6-9 | - +- i386 | ir-keytable | 0.8.8-3 | - +- i386 | ir.lv2 | 1.3.1~dfsg0-3 | - +- i386 | ircd-hybrid | 1:7.2.2.dfsg.2-10 | - +- i386 | ircd-irc2 | 2.11.2p2+dfsg-2 | - +- i386 | ircd-ircu | 2.10.12.10.dfsg1-1.1 | - +- i386 | ircd-ratbox | 3.0.7.dfsg-3 | - +- i386 | ircd-ratbox-dbg | 3.0.7.dfsg-3 | - +- i386 | ircii | 20060725-1 | - +- i386 | ircmarkers | 0.14-2 | - +- i386 | ircp-tray | 0.7.6-1.1 | - +- i386 | irda-utils | 0.9.18-12 | - +- i386 | iripdb | 0.1.3b-1.1 | - +- i386 | iroffer | 1.4.b03-3 | - +! i386 | irqbalance | 1.0.3-3 | 1.0.6-2~bpo70+1 +- i386 | irsim | 9.7.75-1 | - +- i386 | irssi | 0.8.15-5 | - +- i386 | irssi-dev | 0.8.15-5 | - ++ i386 | irssi-plugin-otr | - | 1.0.0-1~bpo70+1 ++ i386 | irssi-plugin-otr-dbg | - | 1.0.0-1~bpo70+1 +- i386 | irssi-plugin-xmpp | 0.52-1 | - +- i386 | irssi-plugin-xmpp-dbg | 0.52-1 | - +- i386 | isakmpd | 20041012-7.2 | - +- i386 | isatapd | 0.9.6-2 | - +- i386 | isc-dhcp-client | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-client-dbg | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-common | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-dev | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-relay | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-relay-dbg | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-server | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-server-dbg | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | isc-dhcp-server-ldap | 4.2.2.dfsg.1-5+deb70u6 | - +- i386 | iscsitarget | 1.4.20.2-10.1 | - +- i386 | isdnlog | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | isdnutils-base | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | isdnutils-xtools | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | isdnvbox | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | isdnvboxclient | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | isdnvboxserver | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | iselect | 1.4.0-1 | - +- i386 | isns | 2.1-01+dfsg-3 | - +- i386 | isns-client | 2.1-01+dfsg-3 | - +- i386 | isomaster | 1.3.9-1 | - +- i386 | isomd5sum | 1:1.0.7+git.20110618.6c9cd2f-1 | - +- i386 | isoqlog | 2.2.1-8 | - +- i386 | ispell | 3.3.02-6 | - +- i386 | istanbul | 0.2.2-9 | - +- i386 | istgt | 0.4~20111008-3 | - +- i386 | iswedish | 1.4.5-2.1 | - +- i386 | isync | 1.0.4-2.2 | - +! i386 | italc-client | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 ++ i386 | italc-management-console | - | 1:2.0.1-3~bpo7+1 +! i386 | italc-master | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +- i386 | itcl3 | 3.4.1-1 | - +- i386 | itcl3-dev | 3.4.1-1 | - +- i386 | itk3 | 3.3-4 | - +- i386 | itk3-dev | 3.3-4 | - +- i386 | itksnap | 2.2.0-1.1 | - +- i386 | itools | 1.0-3 | - +- i386 | itop | 0.1-4 | - ++ i386 | iucode-tool | - | 1.0-1~bpo70+1 +- i386 | iukrainian | 1.6.5-2 | - +- i386 | iverilog | 0.9.5-1 | - +- i386 | ivtools-bin | 1.2.10a1-1 | - +- i386 | ivtools-dev | 1.2.10a1-1 | - +- i386 | iw | 3.4-1 | - +- i386 | jaaa | 0.6.0-2 | - +- i386 | jack | 3.1.1+cvs20050801-29 | - +- i386 | jack-capture | 0.9.67-1 | - +- i386 | jack-keyboard | 2.7.1-1 | - +- i386 | jack-mixer | 9-3 | - +- i386 | jack-rack | 1.4.8~rc1-1 | - +- i386 | jack-stdio | 1.4-1 | - +- i386 | jack-tools | 20101210-2 | - +- i386 | jackd1 | 1:0.121.3+20120418git75e3e20b-2.1 | - +- i386 | jackd1-firewire | 1:0.121.3+20120418git75e3e20b-2.1 | - +- i386 | jackd2 | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- i386 | jackd2-firewire | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- i386 | jackeq | 0.5.9-2 | - +- i386 | jackmeter | 0.4-1 | - +- i386 | jacktrip | 1.0.5.patch2-1 | - +- i386 | jade | 1.2.1-47.1+b1 | - +- i386 | jags | 3.2.0-1 | - +- i386 | jalv | 1.0.0~dfsg0-2 | - +- i386 | jam | 2.5rel-1 | - +- i386 | jamin | 0.97.14~cvs~81203-4 | - +- i386 | japa | 0.6.0-2 | - +- i386 | java2html | 0.9.2-4 | - +- i386 | jazip | 0.34-15.1 | - +- i386 | jbig2dec | 0.11+20120125-1 | - +- i386 | jbigkit-bin | 2.0-2 | - +- i386 | jblas | 1.2.0-4 | - +- i386 | jbofihe | 0.38-5.1 | - +- i386 | jcal | 0.4.0-1.1 | - +- i386 | jcc | 2.13-1 | - +- i386 | jclassinfo | 0.19.1-6 | - +- i386 | jconvolver | 0.9.2-1 | - +! i386 | jd | 1:2.8.5~beta120206-3 | 1:2.8.7-140104-1~bpo70+1 +- i386 | jed | 1:0.99.19-2.1 | - +- i386 | jeex | 12.0.4-1 | - +- i386 | jesred | 1.2pl1-17 | - +- i386 | jester | 1.0-9 | - +- i386 | jfsutils | 1.1.15-2 | - +- i386 | jgraph | 83-22 | - +- i386 | jhbuild | 3.4.0-1 | - +- i386 | jhead | 1:2.95-1 | - +- i386 | jigdo-file | 0.7.3-3+b1 | - +- i386 | jigit | 1.19-1 | - +- i386 | jigzo | 0.6.1-6 | - +- i386 | jimsh | 0.73-3 | - +- i386 | jkmeter | 0.6.1-2 | - +- i386 | jless | 382-iso262-3 | - +- i386 | jlint | 3.0-4.5 | - +- i386 | jmdlx | 0.4-6 | - +- i386 | jmeters | 0.2.1-2 | - ++ i386 | jmtpfs | - | 0.5-2~bpo70+1 +- i386 | jnettop | 0.13.0-1 | - +- i386 | jnoise | 0.6.0-3 | - +- i386 | jnoisemeter | 0.1.0-2 | - +- i386 | jocaml | 3.12.1-1 | - +- i386 | jocaml-base | 3.12.1-1 | - +- i386 | joe | 3.7-2.3 | - +- i386 | john | 1.7.8-1 | - +- i386 | jove | 4.16.0.73-1 | - +- i386 | jovie | 4:4.8.4-2 | - +- i386 | jovie-dbg | 4:4.8.4-2 | - +- i386 | joy2key | 1.6.3-1 | - +- i386 | joystick | 1:1.4.3-1 | - +- i386 | jp2a | 1.0.6-3.2 | - +- i386 | jparse | 1.4.0-3 | - +- i386 | jpeginfo | 1.6.0-5+b1 | - +- i386 | jpegjudge | 0.0.2-2 | - +- i386 | jpegoptim | 1.2.3-2+b2 | - +- i386 | jpegpixi | 1.1.1-4.1 | - +- i386 | jpilot | 1.8.1.2-1 | - +- i386 | jpilot-backup | 0.60-3 | - +- i386 | jpilot-plugins | 1.8.1.2-1 | - +- i386 | jpnevulator | 1.3.1-1 | - +- i386 | js-of-ocaml | 1.2-2 | - +- i386 | jstest-gtk | 0.1.1~git20090722-2 | - +- i386 | jstest-gtk-dbg | 0.1.1~git20090722-2 | - +- i386 | jsvc | 1.0.10-3 | - +- i386 | juffed | 0.8.1-1+b2 | - +- i386 | juk | 4:4.8.4-2 | - +- i386 | juke | 0.7-4 | - +- i386 | juman | 5.1-2.1 | - +- i386 | jumpnbump | 1.50+dfsg1-3 | - +! i386 | jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +- i386 | jvim-canna | 3.0-2.1b-3 | - +- i386 | jwhois | 4.0-2.1 | - +- i386 | jwm | 2.1.0-3 | - +- i386 | jzip | 210r20001005d-2 | - +- i386 | k3b | 2.0.2-6 | - +- i386 | k3b-dbg | 2.0.2-6 | - +- i386 | k3d | 0.8.0.2-18 | - +- i386 | k4dirstat | 2.7.3-1 | - +- i386 | kaccessible | 4:4.8.4-3 | - +- i386 | kaccessible-dbg | 4:4.8.4-3 | - +- i386 | kacpimon | 1:2.0.16-1+deb7u1 | - +- i386 | kaddressbook | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kadu | 0.11.2-1 | - +- i386 | kadu-external-modules | 0.11.2-1 | - +- i386 | kaffeine | 1.2.2-2 | - +- i386 | kaffeine-dbg | 1.2.2-2 | - +- i386 | kakasi | 2.3.5~pre1+cvs20071101-1 | - +- i386 | kalarm | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kalgebra | 4:4.8.4-1 | - +- i386 | kalgebra-common | 4:4.8.4-1 | - +- i386 | kalgebra-dbg | 4:4.8.4-1 | - +- i386 | kalgebramobile | 4:4.8.4-1 | - +- i386 | kali | 3.1-11 | - +- i386 | kalign | 1:2.03+20110620-2 | - +- i386 | kalternatives | 0.13-2 | - +- i386 | kalzium | 4:4.8.4-1 | - +- i386 | kalzium-dbg | 4:4.8.4-1 | - +- i386 | kamera | 4:4.8.4-2 | - +- i386 | kamera-dbg | 4:4.8.4-2 | - +- i386 | kamerka | 0.8.1-1 | - +- i386 | kamoso | 2.0.2-1+b1 | - +- i386 | kanagram | 4:4.8.4-1 | - +- i386 | kanatest | 0.4.8-2.1 | - +- i386 | kanjipad | 2.0.0-6 | - +- i386 | kannel | 1.4.3-2+b2 | - +- i386 | kannel-dev | 1.4.3-2+b2 | - +- i386 | kannel-extras | 1.4.3-2+b2 | - +- i386 | kannel-sqlbox | 0.7.2-3+b2 | - +- i386 | kapman | 4:4.8.4-3 | - +- i386 | kapptemplate | 4:4.8.4+dfsg-1 | - +- i386 | kaptain | 1:0.73-1 | - +- i386 | karbon | 1:2.4.4-3 | - +- i386 | karma-tools | 0.1.2-2.3 | - +- i386 | kasumi | 2.5-2 | - +- i386 | kate | 4:4.8.4-1 | - +- i386 | kate-dbg | 4:4.8.4-1 | - +- i386 | katepart | 4:4.8.4-1 | - +- i386 | katomic | 4:4.8.4-3 | - +- i386 | katoob | 0.5.9.1-3 | - +- i386 | kawari8 | 8.2.8-7 | - +- i386 | kaya | 0.4.4-6 | - +- i386 | kbackup | 0.7.1-3 | - +- i386 | kball | 0.0.20041216-8+b1 | - +- i386 | kbattleship | 4:4.8.4-3 | - +- i386 | kbd | 1.15.3-9 | - +- i386 | kbdd | 0.6-4 | - +- i386 | kbibtex | 0.4-4 | - +- i386 | kblackbox | 4:4.8.4-3 | - +- i386 | kblocks | 4:4.8.4-3 | - +- i386 | kbounce | 4:4.8.4-3 | - +- i386 | kbreakout | 4:4.8.4-3 | - +- i386 | kbruch | 4:4.8.4-1 | - +- i386 | kbruch-dbg | 4:4.8.4-1 | - +! i386 | kbuild | 1:0.1.9998svn2543+dfsg-1 | 1:0.1.9998svn2577+dfsg-3~bpo70+1 +- i386 | kcachegrind | 4:4.8.4+dfsg-1 | - +- i386 | kcalc | 4:4.8.4-2 | - +- i386 | kcc | 2.3-12 | - +- i386 | kcharselect | 4:4.8.4-2 | - +- i386 | kcheckers | 0.8.1-3 | - +- i386 | kchmviewer | 5.3-1 | - +- i386 | kcollectd | 0.9-2.1+b1 | - +- i386 | kcolorchooser | 4:4.8.4-1 | - +- i386 | kcometen4 | 1.0.7-1 | - +- i386 | kcov | 4-2 | - +- i386 | kdbg | 2.5.1-1 | - +- i386 | kdc2tiff | 0.35-8+b1 | - +- i386 | kde-baseapps-bin | 4:4.8.4-2 | - +- i386 | kde-baseapps-dbg | 4:4.8.4-2 | - +- i386 | kde-config-cddb | 4:4.8.4-2 | - +- i386 | kde-config-cron | 4:4.8.4-3 | - +! i386 | kde-config-fcitx | 0.3.4-1 | 0.4.3-1~bpo70+1 +! i386 | kde-config-gtk-style | 3:2.1-1 | 3:2.2.1-1~bpo70+1 ++ i386 | kde-config-gtk-style-preview | - | 3:2.2.1-1~bpo70+1 +- i386 | kde-config-tablet | 1.3.6-1 | - +- i386 | kde-config-telepathy-accounts | 0.4.0-1 | - +- i386 | kde-config-telepathy-accounts-dbg | 0.4.0-1 | - +- i386 | kde-notification-colibri | 0.2.2-1 | - +- i386 | kde-plasma-desktop | 5:77+deb7u1 | - +- i386 | kde-plasma-netbook | 5:77+deb7u1 | - +- i386 | kde-runtime | 4:4.8.4-2 | - +- i386 | kde-runtime-dbg | 4:4.8.4-2 | - +- i386 | kde-style-bespin | 0.r1552-1 | - +- i386 | kde-style-oxygen | 4:4.8.4-6 | - +- i386 | kde-style-polyester | 2.0.0-3 | - +- i386 | kde-style-qtcurve | 1.8.12-2 | - +- i386 | kde-telepathy-approver | 0.4.0-1 | - +- i386 | kde-telepathy-approver-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-auth-handler | 0.4.0-1 | - +- i386 | kde-telepathy-auth-handler-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-call-ui | 0.4.0-1 | - +- i386 | kde-telepathy-call-ui-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-contact-list | 0.4.0-1 | - +- i386 | kde-telepathy-contact-list-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-filetransfer-handler | 0.4.0-1 | - +- i386 | kde-telepathy-filetransfer-handler-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-integration-module | 0.4.0-1 | - +- i386 | kde-telepathy-integration-module-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-send-file | 0.4.0-1 | - +- i386 | kde-telepathy-send-file-dbg | 0.4.0-1 | - +- i386 | kde-telepathy-text-ui | 0.4.0-1 | - +- i386 | kde-telepathy-text-ui-dbg | 0.4.0-1 | - +- i386 | kde-thumbnailer-deb | 1.3.0-2 | - +- i386 | kde-window-manager | 4:4.8.4-6 | - +- i386 | kde-workspace-bin | 4:4.8.4-6 | - +- i386 | kde-workspace-dbg | 4:4.8.4-6 | - +- i386 | kde-workspace-dev | 4:4.8.4-6 | - +- i386 | kde-workspace-kgreet-plugins | 4:4.8.4-6 | - +- i386 | kde-zeroconf | 4:4.8.4-1+b1 | - +- i386 | kdeadmin-dbg | 4:4.8.4-3 | - +- i386 | kdeartwork-dbg | 4:4.8.4-5 | - +- i386 | kdeartwork-style | 4:4.8.4-5 | - +- i386 | kdeartwork-theme-window | 4:4.8.4-5 | - +- i386 | kdebase-workspace-dbg | 4:4.8.4-6 | - +- i386 | kdegames-dbg | 4:4.8.4-3 | - +- i386 | kdegraphics-mobipocket | 4:4.8.4-1 | - +- i386 | kdegraphics-strigi-analyzer | 4:4.8.4-1 | - +- i386 | kdegraphics-thumbnailers | 4:4.8.4-1 | - +- i386 | kdelibs-bin | 4:4.8.4-4 | - +- i386 | kdelibs5-dbg | 4:4.8.4-4 | - +- i386 | kdelibs5-dev | 4:4.8.4-4 | - +- i386 | kdelibs5-plugins | 4:4.8.4-4 | - +- i386 | kdemultimedia-dbg | 4:4.8.4-2 | - +- i386 | kdemultimedia-dev | 4:4.8.4-2 | - +- i386 | kdemultimedia-kio-plugins | 4:4.8.4-2 | - +- i386 | kdenetwork-dbg | 4:4.8.4-1+b1 | - +- i386 | kdenetwork-filesharing | 4:4.8.4-1+b1 | - +- i386 | kdenlive | 0.9.2-2 | - +- i386 | kdenlive-dbg | 0.9.2-2 | - +- i386 | kdepasswd | 4:4.8.4-2 | - +- i386 | kdepim-dbg | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kdepim-groupware | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kdepim-kresources | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kdepim-runtime | 4:4.4.11.1-6 | - +- i386 | kdepim-runtime-dbg | 4:4.4.11.1-6 | - +- i386 | kdepim-strigi-plugins | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kdepim-wizards | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kdepimlibs-dbg | 4:4.8.4-2 | - +- i386 | kdepimlibs-kio-plugins | 4:4.8.4-2 | - +- i386 | kdepimlibs5-dev | 4:4.8.4-2 | - +- i386 | kdeplasma-addons-dbg | 4:4.8.4-1+b2 | - +- i386 | kdesdk-dbg | 4:4.8.4+dfsg-1 | - +- i386 | kdesdk-dolphin-plugins | 4:4.8.4+dfsg-1 | - +- i386 | kdesdk-kio-plugins | 4:4.8.4+dfsg-1 | - +- i386 | kdesdk-misc | 4:4.8.4+dfsg-1 | - +- i386 | kdesdk-strigi-plugins | 4:4.8.4+dfsg-1 | - +- i386 | kdesudo | 3.4.2.4-2 | - +- i386 | kdesvn | 1.5.5-4.1 | - +- i386 | kdesvn-dbg | 1.5.5-4.1 | - +- i386 | kdesvn-kio-plugins | 1.5.5-4.1 | - +- i386 | kdetoys-dbg | 4:4.8.4-1 | - +- i386 | kdevelop | 4:4.3.1-3+b1 | - +- i386 | kdevelop-dbg | 4:4.3.1-3+b1 | - +- i386 | kdevelop-dev | 4:4.3.1-3+b1 | - +- i386 | kdevelop-pg-qt | 1.0.0-2 | - +- i386 | kdevelop-php | 1.3.1-2 | - +- i386 | kdevelop-php-dbg | 1.3.1-2 | - +- i386 | kdevelop-php-docs | 1.3.1-2 | - +- i386 | kdevplatform-dbg | 1.3.1-2 | - +- i386 | kdevplatform-dev | 1.3.1-2 | - +- i386 | kdevplatform5-libs | 1.3.1-2 | - +- i386 | kdewebdev-dbg | 4:4.8.4-1 | - +- i386 | kdf | 4:4.8.4-1 | - +- i386 | kdiamond | 4:4.8.4-3 | - +- i386 | kdiff3 | 0.9.96-4 | - +- i386 | kdiff3-qt | 0.9.96-4 | - +- i386 | kdm | 4:4.8.4-6 | - +- i386 | kdocker | 4.6-2 | - +- i386 | kdoctools | 4:4.8.4-4 | - +- i386 | kdrill | 6.5deb2-8 | - +- i386 | keepalived | 1:1.2.2-3 | - +- i386 | keepassx | 0.4.3+dfsg-0.1 | - +- i386 | kelbt | 0.15-1 | - +- i386 | kerneltop | 0.8-2.1 | - +- i386 | ketm | 0.0.6-22 | - +- i386 | keurocalc | 1.2.0-1 | - +! i386 | kexec-tools | 1:2.0.3-1+deb7u1 | 1:2.0.3-4~bpo70+1 +- i386 | kexi | 1:2.4.4-3 | - +- i386 | kexi-calligrasheets-driver | 1:2.4.4-3 | - +- i386 | kexi-map-form-widget | 1:2.4.4-3 | - +- i386 | kexi-mysql-driver | 1:2.4.4-3 | - +- i386 | kexi-postgresql-driver | 1:2.4.4-3 | - +- i386 | kexi-sybase-driver | 1:2.4.4-3 | - +- i386 | kexi-web-form-widget | 1:2.4.4-3 | - +- i386 | kexi-xbase-driver | 1:2.4.4-3 | - +- i386 | keylaunch | 1.3.9 | - +- i386 | keynav | 0.20110708.0-1 | - +- i386 | keytouch-editor | 1:3.2.0~beta-3 | - +- i386 | keyutils | 1.5.5-3 | - +- i386 | keyutils-dbg | 1.5.5-3 | - +- i386 | kfilereplace | 4:4.8.4-1 | - +- i386 | kfind | 4:4.8.4-2 | - +- i386 | kfloppy | 4:4.8.4-1 | - +- i386 | kfourinline | 4:4.8.4-3 | - +- i386 | kfreebsd-headers-486 | 9+1 | - +- i386 | kfreebsd-headers-686 | 9+1 | - +- i386 | kfreebsd-headers-8-486 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8-686 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8-686-smp | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8-xen | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8.3-1 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8.3-1-486 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8.3-1-686 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8.3-1-686-smp | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-8.3-1-xen | 8.3-6+deb7u1 | - +- i386 | kfreebsd-headers-9-486 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9-686 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9-686-smp | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9-xen | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9.0-2 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9.0-2-486 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9.0-2-686 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9.0-2-686-smp | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-9.0-2-xen | 9.0-10+deb70.6 | - +- i386 | kfreebsd-headers-xen | 9+1 | - +- i386 | kfreebsd-image-486 | 9+1 | - +- i386 | kfreebsd-image-686 | 9+1 | - +- i386 | kfreebsd-image-8-486 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8-686 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8-686-smp | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8-xen | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8.3-1-486 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8.3-1-686 | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8.3-1-686-smp | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-8.3-1-xen | 8.3-6+deb7u1 | - +- i386 | kfreebsd-image-9-486 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9-686 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9-686-smp | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9-xen | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9.0-2-486 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9.0-2-686 | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9.0-2-686-smp | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-9.0-2-xen | 9.0-10+deb70.6 | - +- i386 | kfreebsd-image-xen | 9+1 | - +- i386 | kftpgrabber | 0.8.99~svn1214766-1 | - +- i386 | kgamma | 4:4.8.4-2 | - +- i386 | kgb | 1.0b4+ds-13.2 | - +- i386 | kgeography | 4:4.8.4-1 | - +- i386 | kget | 4:4.8.4-1+b1 | - +- i386 | kgoldrunner | 4:4.8.4-3 | - +- i386 | kgpg | 4:4.8.4-4 | - +- i386 | kgpg-dbg | 4:4.8.4-4 | - +- i386 | khangman | 4:4.8.4-1 | - +- i386 | khelpcenter4 | 4:4.8.4-2 | - +- i386 | kicad | 0.20120526+bzr3261-1 | - +- i386 | kid3 | 2.1-2 | - +- i386 | kid3-qt | 2.1-2 | - +- i386 | kig | 4:4.8.4-1 | - +- i386 | kigo | 4:4.8.4-3 | - +- i386 | kiki-the-nano-bot | 1.0.2+dfsg1-4+b1 | - +- i386 | kildclient | 2.11.1-1+b1 | - +- i386 | kile | 1:2.1.0-1 | - +- i386 | killbots | 4:4.8.4-3 | - +- i386 | kimagemapeditor | 4:4.8.4-1 | - +- i386 | kimwitu | 4.6.1-7.1 | - +- i386 | kimwitu++ | 2.3.13-2 | - +- i386 | kinfocenter | 4:4.8.4-6 | - +- i386 | kino | 1.3.4-1.3 | - +- i386 | kinput2-canna | 3.1-10.3 | - +- i386 | kinput2-canna-wnn | 3.1-10.3 | - +- i386 | kinput2-wnn | 3.1-10.3 | - +- i386 | kio-ftps | 0.2+dfsg-2+b1 | - +- i386 | kio-gopher | 0.1.4-1 | - +- i386 | kipi-plugins | 4:2.6.0-1+b2 | - +- i386 | kiriki | 4:4.8.4-3 | - +- i386 | kism3d | 0.2.2-8 | - ++ i386 | kismet | - | 2013.03.R1b-2~bpo70+1 ++ i386 | kismet-plugins | - | 2013.03.R1b-2~bpo70+1 +- i386 | kiten | 4:4.8.4-1 | - +- i386 | kiten-dbg | 4:4.8.4-1 | - +- i386 | kjots | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kjumpingcube | 4:4.8.4-3 | - +! i386 | klash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- i386 | klatexformula | 3.2.6-1 | - +- i386 | klavaro | 1.9.4-2 | - +- i386 | kleopatra | 4:4.4.11.1+l10n-3+b1 | - +- i386 | klettres | 4:4.8.4-1 | - +- i386 | klibc-utils | 2.0.1-3.1 | - +- i386 | klick | 0.12.2-1+b2 | - +- i386 | klickety | 4:4.8.4-3 | - +- i386 | klines | 4:4.8.4-3 | - +- i386 | klinkstatus | 4:4.8.4-1 | - +- i386 | klipper | 4:4.8.4-6 | - +- i386 | klog | 0.5.9-1 | - +- i386 | kluppe | 0.6.14-1+b2 | - +- i386 | klustakwik | 2.0.1-1 | - +- i386 | kmag | 4:4.8.4-3 | - +- i386 | kmag-dbg | 4:4.8.4-3 | - +- i386 | kmahjongg | 4:4.8.4-3 | - +- i386 | kmail | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kmenuedit | 4:4.8.4-6 | - +- i386 | kmess | 2.0.6.1-3 | - +- i386 | kmetronome | 0.10.1-1 | - +- i386 | kmflcomp | 0.9.8-1 | - +- i386 | kmidimon | 0.7.4-2 | - +- i386 | kmines | 4:4.8.4-3 | - +- i386 | kmix | 4:4.8.4-2 | - +- i386 | kmldonkey | 2.0.5+kde4.3.3-2 | - +- i386 | kmod | 9-3 | - +- i386 | kmousetool | 4:4.8.4-3 | - +- i386 | kmousetool-dbg | 4:4.8.4-3 | - +- i386 | kmouth | 4:4.8.4-3 | - +- i386 | kmouth-dbg | 4:4.8.4-3 | - +- i386 | kmplayer | 1:0.11.3c-1 | - +- i386 | kmplot | 4:4.8.4-2 | - +- i386 | kmtrace | 4:4.8.4+dfsg-1 | - +- i386 | kmymoney | 4.6.2-3.2 | - +- i386 | kmymoney-dbg | 4.6.2-3.2 | - +- i386 | kmymoney-dev | 4.6.2-3.2 | - +- i386 | knemo | 0.7.3-1 | - +- i386 | knetwalk | 4:4.8.4-3 | - +- i386 | knews | 1.0b.1-28 | - +- i386 | knights | 2.3.2-1 | - +- i386 | knockd | 0.5-3 | - +- i386 | knocker | 0.7.1-4 | - +- i386 | knode | 4:4.4.11.1+l10n-3+b1 | - ++ i386 | knot | - | 1.4.3-2~bpo70+1 ++ i386 | knot-dbg | - | 1.4.3-2~bpo70+1 ++ i386 | knot-dnsutils | - | 1.4.3-2~bpo70+1 ++ i386 | knot-host | - | 1.4.3-2~bpo70+1 +- i386 | knotes | 4:4.4.11.1+l10n-3+b1 | - +- i386 | ko.tex-bin | 0.1.0+20071012-1.1 | - +- i386 | kobodeluxe | 0.5.1-6 | - +- i386 | kolabadmin | 0.0.20080222-4 | - +- i386 | kolf | 4:4.8.4-3 | - +- i386 | kollision | 4:4.8.4-3 | - +- i386 | kolourpaint4 | 4:4.8.4-1 | - +- i386 | komi | 1.04-5 | - +- i386 | kommander | 4:4.8.4-1 | - +- i386 | komparator | 4:0.6-1 | - +- i386 | kompare | 4:4.8.4+dfsg-1 | - +- i386 | kon2 | 0.3.9b-20 | - +- i386 | konq-plugins | 4:4.8.4-2 | - +- i386 | konqueror | 4:4.8.4-2 | - +- i386 | konqueror-nsplugins | 4:4.8.4-2 | - +! i386 | konqueror-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- i386 | konquest | 4:4.8.4-3 | - +- i386 | konsole | 4:4.8.4-2 | - +- i386 | konsole-dbg | 4:4.8.4-2 | - +- i386 | konsolekalendar | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kontact | 4:4.4.11.1+l10n-3+b1 | - +- i386 | konversation | 1.4-1 | - +- i386 | konversation-dbg | 1.4-1 | - +- i386 | konwert | 1.8-11.2 | - +- i386 | kopete | 4:4.8.4-1+b1 | - +- i386 | korganizer | 4:4.4.11.1+l10n-3+b1 | - +- i386 | kosd | 0.8.1-1 | - +- i386 | koules | 1.4-19 | - +- i386 | kover | 1:4-7+b1 | - +- i386 | kpart-webkit | 1.3~git20120518.9a111005-3 | - +- i386 | kpart-webkit-dbg | 1.3~git20120518.9a111005-3 | - +- i386 | kpartloader | 4:4.8.4+dfsg-1 | - +- i386 | kpartsplugin | 20120605-1 | - +- i386 | kpartx | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- i386 | kpat | 4:4.8.4-3 | - +- i386 | kphotoalbum | 4.2-1+b1 | - +- i386 | kplayer | 1:0.7-2.1 | - +- i386 | kplayer-dbg | 1:0.7-2.1 | - +- i386 | kppp | 4:4.8.4-1+b1 | - +- i386 | kradio4 | 4.0.4-1 | - +- i386 | kraft | 0.45-2 | - +- i386 | kraptor | 0.0.20040403-6+b1 | - +- i386 | krb5-admin-server | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krb5-auth-dialog | 3.2.1-1+deb7u1 | - +- i386 | krb5-clients | 1:1.0.1-4 | - +- i386 | krb5-ftpd | 1:1.0.1-4 | - +- i386 | krb5-gss-samples | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krb5-kdc | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krb5-kdc-ldap | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krb5-multidev | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krb5-pkinit | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krb5-rsh-server | 1:1.0.1-4 | - +- i386 | krb5-sync-plugin | 2.2-3 | - +- i386 | krb5-sync-tools | 2.2-3 | - +- i386 | krb5-telnetd | 1:1.0.1-4 | - +- i386 | krb5-user | 1.10.1+dfsg-5+deb7u1 | - +- i386 | krdc | 4:4.8.4-1+b1 | - +- i386 | krecipes | 2.0~beta2-3 | - +- i386 | krecipes-dbg | 2.0~beta2-3 | - +- i386 | kredentials | 2.0~pre3-1.1 | - +- i386 | kremotecontrol | 4:4.8.4-3 | - +- i386 | kremotecontrol-dbg | 4:4.8.4-3 | - +- i386 | krename | 4.0.9-1+b1 | - +- i386 | kreversi | 4:4.8.4-3 | - +- i386 | krfb | 4:4.8.4-1+b1 | - +- i386 | krita | 1:2.4.4-3 | - +- i386 | krosspython | 4:4.8.4-1 | - +- i386 | kruler | 4:4.8.4-1 | - +- i386 | krusader | 1:2.3.0~beta1-1+wheezy3 | - +- i386 | krusader-dbg | 1:2.3.0~beta1-1+wheezy3 | - +- i386 | ksaneplugin | 4:4.8.4-1 | - +- i386 | kscd | 4:4.8.4-2 | - +- i386 | kscope | 1.9.4-2 | - +- i386 | kscreensaver | 4:4.8.4-5 | - +- i386 | kscreensaver-xsavers | 4:4.8.4-5 | - +- i386 | ksh | 93u+-1.2 | - +- i386 | kshisen | 4:4.8.4-3 | - +- i386 | kshutdown | 3.0~beta4-1 | - +- i386 | ksirk | 4:4.8.4-3 | - +- i386 | ksnapshot | 4:4.8.4-1 | - +- i386 | kspaceduel | 4:4.8.4-3 | - +- i386 | ksplice | 0.9.9-4 | - +- i386 | ksquares | 4:4.8.4-3 | - +- i386 | ksshaskpass | 0.5.3-1+b1 | - +- i386 | kst | 2.0.3-1.3 | - +- i386 | kstars | 4:4.8.4-1 | - +- i386 | kstart | 4.1-2 | - +- i386 | ksudoku | 4:4.8.4-3 | - +- i386 | ksysguard | 4:4.8.4-6 | - +- i386 | ksysguardd | 4:4.8.4-6 | - +- i386 | ksystemlog | 4:4.8.4-3 | - +- i386 | kteatime | 4:4.8.4-1 | - +- i386 | kterm | 6.2.0-46 | - +- i386 | kthesaurus | 1:2.4.4-3 | - +- i386 | ktikz | 0.10-3 | - +- i386 | ktimer | 4:4.8.4-1 | - +- i386 | ktimetracker | 4:4.4.11.1+l10n-3+b1 | - +- i386 | ktoblzcheck | 1.39-1 | - +- i386 | ktorrent | 4.2.1-1 | - +- i386 | ktorrent-dbg | 4.2.1-1 | - +- i386 | ktouch | 4:4.8.4-1 | - +- i386 | ktron | 4:4.8.4-3 | - +- i386 | ktuberling | 4:4.8.4-3 | - +- i386 | kturtle | 4:4.8.4-1 | - +- i386 | ktux | 4:4.8.4-1 | - +- i386 | kubrick | 4:4.8.4-3 | - +- i386 | kuipc | 20061220+dfsg3-2 | - +- i386 | kuiviewer | 4:4.8.4+dfsg-1 | - +- i386 | kumofs | 0.4.13-5 | - +- i386 | kuser | 4:4.8.4-3 | - +- i386 | kuvert | 2.0.6 | - +- i386 | kvirc | 4:4.1.3+20111124.svn5988-2 | - +- i386 | kvirc-dbg | 4:4.1.3+20111124.svn5988-2 | - +- i386 | kvirc-modules | 4:4.1.3+20111124.svn5988-2 | - +- i386 | kvkbd | 1:0.6-3 | - +- i386 | kvm | 1:1.1.2+dfsg-6 | - +- i386 | kvpm | 0.8.6-2+deb7u1 | - +- i386 | kvpm-dbg | 0.8.6-2+deb7u1 | - +- i386 | kvpnc | 0.9.6a-2.1 | - +- i386 | kvpnc-dbg | 0.9.6a-2.1 | - +- i386 | kwalletcli | 2.11-2 | - +- i386 | kwalletmanager | 4:4.8.4-3 | - +- i386 | kwalletmanager-dbg | 4:4.8.4-3 | - +- i386 | kwave | 0.8.8-1-3 | - +- i386 | kwave-dbg | 0.8.8-1-3 | - +- i386 | kwin-style-crystal | 2.0.5-2 | - +- i386 | kwin-style-dekorator | 0.5.1-1 | - +- i386 | kwin-style-qtcurve | 1.8.12-2 | - +- i386 | kwordquiz | 4:4.8.4-1 | - +- i386 | kwrite | 4:4.8.4-1 | - +- i386 | kwstyle | 1.0.0+cvs20120330-3 | - +- i386 | kxterm | 20061220+dfsg3-2 | - +- i386 | l2tp-ipsec-vpn | 1.0.9-1 | - +- i386 | l2tp-ipsec-vpn-daemon | 0.9.9-1 | - +- i386 | l2tpns | 2.1.21-1.1 | - +- i386 | l7-filter-userspace | 0.12-beta1-1 | - +- i386 | labrea | 2.5-stable-3 | - +- i386 | laby | 0.6.3-1 | - +- i386 | lacheck | 1.26-14 | - +- i386 | ladish | 1+dfsg0-3 | - +- i386 | ladish-dbg | 1+dfsg0-3 | - +- i386 | ladr4-apps | 0.0.200902a-2.1 | - +- i386 | ladspa-sdk | 1.13-1 | - +- i386 | ladvd | 0.9.2-2 | - +- i386 | laevateinn | 0.088-5 | - +- i386 | lakai | 0.1-1 | - +- i386 | lam-runtime | 7.1.4-3 | - +- i386 | lam4-dev | 7.1.4-3 | - +- i386 | lambdabot | 4.2.3.2-4 | - +- i386 | lame | 3.99.5+repack1-3 | - +- i386 | lammps | 0~20120615.gite442279-1 | - +- i386 | langdrill | 0.3-7 | - +- i386 | laptop-detect | 0.13.7 | - +- i386 | larswm | 7.5.3-6 | - +- i386 | last-align | 199-1 | - +- i386 | lastfm | 1:1.5.4.27091+dfsg1-1 | - +- i386 | latd | 1.32 | - +- i386 | late | 0.1.0-12 | - +- i386 | latencytop | 0.5 | - +- i386 | latex-cjk-chinese | 4.8.3+git20120621-1 | - +- i386 | latex-cjk-common | 4.8.3+git20120621-1 | - +- i386 | latex-cjk-japanese | 4.8.3+git20120621-1 | - +- i386 | latex-sanskrit | 2.2-9 | - +- i386 | latex2rtf | 1.9.19-4.2 | - +- i386 | latexila | 2.4.0-1 | - +- i386 | latrace | 0.5.11-1 | - +- i386 | launchtool | 0.8-2 | - +- i386 | launchy | 2.5-1 | - +- i386 | launchy-plugins | 2.5-1 | - +- i386 | lazarus-ide | 0.9.30.4-6 | - +- i386 | lazarus-ide-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lazarus-ide-gtk2 | 0.9.30.4-6 | - +- i386 | lazarus-ide-gtk2-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lazarus-ide-qt4 | 0.9.30.4-6 | - +- i386 | lazarus-ide-qt4-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lbcd | 3.3.0-1 | - +- i386 | lbdb | 0.38 | - +- i386 | lbreakout2 | 2.6.3-1 | - +- i386 | lbt | 1.2.2-5 | - +- i386 | lcab | 1.0b12-5 | - +- i386 | lcalc | 0.0.20080205-1.2 | - +- i386 | lcd4linux | 0.11.0~svn1189-1+b1 | - +- i386 | lcdf-typetools | 2.92+dfsg1-0.1~deb7u1 | - +- i386 | lcdproc | 0.5.5-2 | - +- i386 | lcdproc-dbg | 0.5.5-2 | - +- i386 | lcdproc-extra-drivers | 0.5.5-2 | - +- i386 | lcgdm-dbg | 1.8.2-1+b2 | - +- i386 | lcl | 0.9.30.4-6 | - +- i386 | lcl-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lcl-gtk2 | 0.9.30.4-6 | - +- i386 | lcl-gtk2-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lcl-nogui | 0.9.30.4-6 | - +- i386 | lcl-nogui-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lcl-qt4 | 0.9.30.4-6 | - +- i386 | lcl-qt4-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lcl-units | 0.9.30.4-6 | - +- i386 | lcl-units-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lcl-utils | 0.9.30.4-6 | - +- i386 | lcl-utils-0.9.30.4 | 0.9.30.4-6 | - +- i386 | lcrack | 20040914-1 | - +- i386 | lcrt | 1.1.2-1 | - +- i386 | ld10k1 | 1.0.25-2 | - +- i386 | ldap-utils | 2.4.31-1+nmu2 | - +- i386 | ldap2dns | 0.3.1-3.1 | - +- i386 | ldap2zone | 0.2-3.1 | - +- i386 | ldapvi | 1.7-9 | - +! i386 | ldb-tools | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +- i386 | ldm | 2:2.2.11-2 | - +! i386 | ldnsutils | 1.6.13-1 | 1.6.16-1~bpo70+1 +- i386 | le | 1.14.3-2 | - +- i386 | le-dico-de-rene-cougnenc | 1.3-2.1 | - +- i386 | leafnode | 1.11.8-3 | - +- i386 | leafpad | 0.8.18.1-3 | - +- i386 | leaktracer | 2.4-5 | - +- i386 | leave | 1.12-2.1 | - +- i386 | lebiniou | 3.18-1 | - +- i386 | ledger | 2.6.2-3.1 | - +- i386 | ledmon | 0.32-1 | - +- i386 | lekhonee-gnome | 0.11-3 | - +- i386 | leksah | 0.12.0.3-3 | - +- i386 | leksah-server | 0.12.0.4-3 | - +- i386 | lemon | 3.7.13-1+deb7u1 | - +- i386 | leptonica-progs | 1.69-3.1 | - +- i386 | less | 444-4 | - +- i386 | lesstif-bin | 1:0.95.2-1.1 | - +- i386 | lesstif2 | 1:0.95.2-1.1 | - +- i386 | lesstif2-dbg | 1:0.95.2-1.1 | - +- i386 | lesstif2-dev | 1:0.95.2-1.1 | - +- i386 | letterize | 1.3-3 | - +- i386 | levee | 3.5a-3 | - +- i386 | lfc | 1.8.2-1+b2 | - +- i386 | lfc-dli | 1.8.2-1+b2 | - +- i386 | lfc-server-mysql | 1.8.2-1+b2 | - +- i386 | lfc-server-postgres | 1.8.2-1+b2 | - +- i386 | lfhex | 0.42-3.1 | - +- i386 | lft | 2.2-4 | - +- i386 | lftp | 4.3.6-1+deb7u2 | - +- i386 | lhasa | 0.0.7-2 | - +- i386 | lhs2tex | 1.17-1 | - +- i386 | lib3ds-1-3 | 1.3.0-6 | - +- i386 | lib3ds-dev | 1.3.0-6 | - +- i386 | lib4store-dev | 1.1.4-2 | - +- i386 | lib4store0 | 1.1.4-2 | - +- i386 | lib64bz2-1.0 | 1.0.6-4 | - +- i386 | lib64bz2-dev | 1.0.6-4 | - +- i386 | lib64expat1 | 2.1.0-1+deb7u1 | - +- i386 | lib64expat1-dev | 2.1.0-1+deb7u1 | - +- i386 | lib64ffi-dev | 3.0.10-3 | - +- i386 | lib64ffi5 | 3.0.10-3 | - +- i386 | lib64gcc1 | 1:4.7.2-5 | - +- i386 | lib64gcc1-dbg | 1:4.7.2-5 | - +- i386 | lib64gfortran3 | 4.7.2-5 | - +- i386 | lib64gfortran3-dbg | 4.7.2-5 | - +- i386 | lib64go0 | 4.7.2-5 | - +- i386 | lib64go0-dbg | 4.7.2-5 | - +- i386 | lib64gomp1 | 4.7.2-5 | - +- i386 | lib64gomp1-dbg | 4.7.2-5 | - +- i386 | lib64itm1 | 4.7.2-5 | - +- i386 | lib64itm1-dbg | 4.7.2-5 | - +- i386 | lib64mudflap0 | 4.7.2-5 | - +- i386 | lib64mudflap0-dbg | 4.7.2-5 | - +- i386 | lib64ncurses5 | 5.9-10 | - +- i386 | lib64ncurses5-dev | 5.9-10 | - +- i386 | lib64objc3 | 4.6.3-14 | - +- i386 | lib64objc3-dbg | 4.6.3-14 | - +- i386 | lib64objc4 | 4.7.2-5 | - +- i386 | lib64objc4-dbg | 4.7.2-5 | - +- i386 | lib64quadmath0 | 4.7.2-5 | - +- i386 | lib64quadmath0-dbg | 4.7.2-5 | - +- i386 | lib64readline-gplv2-dev | 5.2+dfsg-2~deb7u1 | - +- i386 | lib64readline5 | 5.2+dfsg-2~deb7u1 | - +- i386 | lib64readline6 | 6.2+dfsg-0.1 | - +- i386 | lib64readline6-dev | 6.2+dfsg-0.1 | - +- i386 | lib64stdc++6 | 4.7.2-5 | - +- i386 | lib64stdc++6-4.4-dbg | 4.4.7-2 | - +- i386 | lib64stdc++6-4.6-dbg | 4.6.3-14 | - +- i386 | lib64stdc++6-4.7-dbg | 4.7.2-5 | - +- i386 | lib64tinfo5 | 5.9-10 | - +- i386 | lib64z1 | 1:1.2.7.dfsg-13 | - +- i386 | lib64z1-dev | 1:1.2.7.dfsg-13 | - +- i386 | liba52-0.7.4 | 0.7.4-16 | - +- i386 | liba52-0.7.4-dev | 0.7.4-16 | - +- i386 | libaa-bin | 1.4p5-40 | - +- i386 | libaa1 | 1.4p5-40 | - +- i386 | libaa1-dbg | 1.4p5-40 | - +- i386 | libaa1-dev | 1.4p5-40 | - +- i386 | libaac-tactics-ocaml | 0.2.pl2-7 | - +- i386 | libaac-tactics-ocaml-dev | 0.2.pl2-7 | - +- i386 | libaacs-dev | 0.4.0-1 | - +- i386 | libaacs0 | 0.4.0-1 | - +- i386 | libaal-dev | 1.0.5-5.1 | - +- i386 | libabiword-2.9 | 2.9.2+svn20120603-8 | - +- i386 | libabiword-2.9-dev | 2.9.2+svn20120603-8 | - +- i386 | libaccess-bridge-java-jni | 1.26.2-9 | - +- i386 | libaccountsservice-dbg | 0.6.21-8 | - +- i386 | libaccountsservice-dev | 0.6.21-8 | - +- i386 | libaccountsservice0 | 0.6.21-8 | - +- i386 | libace-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-flreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-flreactor-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-foxreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-foxreactor-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-htbp-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-htbp-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-inet-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-inet-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-inet-ssl-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-inet-ssl-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-perl | 1.92-2+b2 | - +- i386 | libace-qtreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-qtreactor-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-rmcast-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-rmcast-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-ssl-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-ssl-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-tkreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-tkreactor-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-tmcast-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-tmcast-dev | 6.0.3+dfsg-0.1 | - +- i386 | libace-xtreactor-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libace-xtreactor-dev | 6.0.3+dfsg-0.1 | - +- i386 | libacexml-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libacexml-dev | 6.0.3+dfsg-0.1 | - +- i386 | libacl1 | 2.2.51-8 | - +- i386 | libacl1-dev | 2.2.51-8 | - +- i386 | libacme-damn-perl | 0.05-1 | - +- i386 | libacpi-dev | 0.2-4 | - +- i386 | libacpi0 | 0.2-4 | - +- i386 | libacr38u | 1.7.11-1 | - +- i386 | libacr38ucontrol-dev | 1.7.11-1 | - +- i386 | libacr38ucontrol0 | 1.7.11-1 | - +- i386 | libacsccid1 | 1.0.3-1 | - +- i386 | libactiviz.net-cil | 1:1.0~git20111123-6 | - +- i386 | libadasockets4 | 1.8.10-2 | - +- i386 | libadasockets4-dev | 1.8.10-2 | - +- i386 | libaddresses-dev | 0.4.7-1+b5 | - +- i386 | libaddresses0 | 0.4.7-1+b5 | - +- i386 | libaddressview-dev | 0.4.7-1+b5 | - +- i386 | libaddressview0 | 0.4.7-1+b5 | - +- i386 | libadios-dev | 1.3-11 | - +- i386 | libadminutil-data | 1.1.15-1 | - +- i386 | libadminutil-dev | 1.1.15-1 | - +- i386 | libadminutil0 | 1.1.15-1 | - +- i386 | libadns1 | 1.4-2 | - +- i386 | libadns1-dev | 1.4-2 | - +- i386 | libadolc-dev | 2.3.0-1 | - +- i386 | libadolc2 | 2.3.0-1 | - +- i386 | libadplug-2.2.1-0 | 2.2.1+dfsg3-0.1 | - +- i386 | libadplug-dev | 2.2.1+dfsg3-0.1 | - +- i386 | libafflib-dev | 3.6.6-1.1+b1 | - +- i386 | libafflib0 | 3.6.6-1.1+b1 | - +- i386 | libafrodite-0.12-2 | 0.12.1-3 | - +- i386 | libafrodite-0.12-2-dbg | 0.12.1-3 | - +- i386 | libafrodite-0.12-dev | 0.12.1-3 | - +! i386 | libafsauthent1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libafsrpc1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- i386 | libafterimage-dev | 2.2.11-7 | - +- i386 | libafterimage0 | 2.2.11-7 | - +- i386 | libafterstep1 | 2.2.11-7 | - +- i386 | libagg-dev | 2.5+dfsg1-8 | - +- i386 | libagrep-ocaml | 1.0-11+b3 | - +- i386 | libagrep-ocaml-dev | 1.0-11+b3 | - +- i386 | libahven21.0 | 2.1-4 | - +- i386 | libahven3-dev | 2.1-4 | - +- i386 | libai-fann-perl | 0.10-1 | - +- i386 | libaiksaurus-1.2-0c2a | 1.2.1+dev-0.12-6.1 | - +- i386 | libaiksaurus-1.2-dev | 1.2.1+dev-0.12-6.1 | - +- i386 | libaiksaurusgtk-1.2-0c2a | 1.2.1+dev-0.12-6.1 | - +- i386 | libaiksaurusgtk-1.2-dev | 1.2.1+dev-0.12-6.1 | - +- i386 | libaio-dev | 0.3.109-3 | - +- i386 | libaio1 | 0.3.109-3 | - +- i386 | libaio1-dbg | 0.3.109-3 | - +- i386 | libakonadi-calendar4 | 4:4.8.4-2 | - +- i386 | libakonadi-contact4 | 4:4.8.4-2 | - +- i386 | libakonadi-dev | 1.7.2-3 | - +- i386 | libakonadi-kabc4 | 4:4.8.4-2 | - +- i386 | libakonadi-kcal4 | 4:4.8.4-2 | - +- i386 | libakonadi-kde4 | 4:4.8.4-2 | - +- i386 | libakonadi-kmime4 | 4:4.8.4-2 | - +- i386 | libakonadi-notes4 | 4:4.8.4-2 | - +- i386 | libakonadiprotocolinternals1 | 1.7.2-3 | - +- i386 | libalberta2 | 2.0.1-5 | - +- i386 | libalberta2-dbg | 2.0.1-5 | - +- i386 | libalberta2-dev | 2.0.1-5 | - +- i386 | libaldmb1 | 1:0.9.3-5.4 | - +- i386 | libaldmb1-dev | 1:0.9.3-5.4 | - +- i386 | libalglib-2.6.0 | 2.6.0-6 | - +- i386 | libalglib-2.6.0-dbg | 2.6.0-6 | - +- i386 | libalglib-dev | 2.6.0-6 | - +- i386 | libalgorithm-combinatorics-perl | 0.26-1 | - +- i386 | libalgorithm-diff-xs-perl | 0.04-2+b1 | - +- i386 | libalgorithm-permute-perl | 0.12-1+b2 | - +- i386 | libalias-perl | 2.32-9+b1 | - +- i386 | libalien-wxwidgets-perl | 0.59+dfsg-1 | - +- i386 | libalkimia-dev | 4.3.2-1.1 | - +- i386 | libalkimia4 | 4.3.2-1.1 | - +- i386 | liballeggl4-dev | 2:4.4.2-2.1 | - +- i386 | liballeggl4.4 | 2:4.4.2-2.1 | - +- i386 | liballegro4.2-dev | 2:4.4.2-2.1 | - +- i386 | liballegro4.4 | 2:4.4.2-2.1 | - +- i386 | liballegro4.4-plugin-alsa | 2:4.4.2-2.1 | - +- i386 | libalog0.4.1-base | 0.4.1-2 | - +- i386 | libalog0.4.1-base-dbg | 0.4.1-2 | - +- i386 | libalog0.4.1-base-dev | 0.4.1-2 | - +- i386 | libalog0.4.1-full | 0.4.1-2 | - +- i386 | libalog0.4.1-full-dbg | 0.4.1-2 | - +- i386 | libalog0.4.1-full-dev | 0.4.1-2 | - +- i386 | libalsa-ocaml | 0.2.1-1+b1 | - +- i386 | libalsa-ocaml-dev | 0.2.1-1+b1 | - +- i386 | libalsaplayer-dev | 0.99.80-5.1 | - +- i386 | libalsaplayer0 | 0.99.80-5.1 | - +- i386 | libalure-dev | 1.2-6 | - +- i386 | libalure1 | 1.2-6 | - +- i386 | libalut-dev | 1.1.0-3 | - +- i386 | libalut0 | 1.1.0-3 | - +- i386 | libamd2.2.0 | 1:3.4.0-3 | - +- i386 | libamu-dev | 6.2+rc20110530-3 | - +- i386 | libamu4 | 6.2+rc20110530-3 | - +- i386 | libanalitza-dbg | 4:4.8.4-2 | - +- i386 | libanalitza-dev | 4:4.8.4-2 | - +- i386 | libanalitza4abi1 | 4:4.8.4-2 | - +- i386 | libanalitzagui4 | 4:4.8.4-2 | - +- i386 | libanet0.1 | 0.1-3 | - +- i386 | libanet0.1-dbg | 0.1-3 | - +- i386 | libanet0.1-dev | 0.1-3 | - +- i386 | libanjuta-3-0 | 2:3.4.3-1 | - +- i386 | libanjuta-dev | 2:3.4.3-1 | - +- i386 | libann-dev | 1.1.2+doc-3 | - +- i386 | libann0 | 1.1.2+doc-3 | - +- i386 | libanthy-dev | 9100h-16 | - +- i386 | libanthy0 | 9100h-16 | - +- i386 | libantlr-dev | 2.7.7+dfsg-4 | - +- i386 | libantlr3c-3.2-0 | 3.2-2 | - +- i386 | libantlr3c-antlrdbg-3.2-0 | 3.2-2 | - +- i386 | libantlr3c-dev | 3.2-2 | - +- i386 | libanyevent-perl | 7.010-1 | - +- i386 | libao-common | 1.1.0-2 | - +- i386 | libao-dbg | 1.1.0-2 | - +- i386 | libao-dev | 1.1.0-2 | - +- i386 | libao-ocaml | 0.2.0-1+b2 | - +- i386 | libao-ocaml-dev | 0.2.0-1+b2 | - +- i386 | libao4 | 1.1.0-2 | - +- i386 | libaosd-dev | 0.2.7-1 | - +- i386 | libaosd-text2 | 0.2.7-1 | - +- i386 | libaosd2 | 0.2.7-1 | - +- i386 | libapache-authenhook-perl | 2.00-04+pristine-2+b2 | - +- i386 | libapache-db-perl | 0.14-3+b1 | - +- i386 | libapache2-authenntlm-perl | 0.02-5+b3 | - +- i386 | libapache2-mod-apparmor | 2.7.103-4 | - +- i386 | libapache2-mod-apreq2 | 2.13-1+b2 | - +- i386 | libapache2-mod-auth-cas | 1.0.9.1-2 | - +- i386 | libapache2-mod-auth-kerb | 5.4-2 | - +- i386 | libapache2-mod-auth-memcookie | 1.0.2-5 | - +- i386 | libapache2-mod-auth-mysql | 4.3.9-13.1+b1 | - +- i386 | libapache2-mod-auth-ntlm-winbind | 0.0.0.lorikeet+svn+801-1 | - +- i386 | libapache2-mod-auth-openid | 0.7-0.1 | - +- i386 | libapache2-mod-auth-pam | 1.1.1-9 | - +- i386 | libapache2-mod-auth-pgsql | 2.0.3-5 | - +- i386 | libapache2-mod-auth-plain | 2.0.51 | - +- i386 | libapache2-mod-auth-pubtkt | 0.7-1 | - +- i386 | libapache2-mod-auth-radius | 1.5.8-1.1 | - +- i386 | libapache2-mod-auth-sys-group | 1.1.1-9 | - +- i386 | libapache2-mod-auth-tkt | 2.1.0-6 | - +- i386 | libapache2-mod-authn-sasl | 1.2-1 | - +- i386 | libapache2-mod-authn-webid | 0~20110301-1 | - +- i386 | libapache2-mod-authn-yubikey | 1.0-1 | - +- i386 | libapache2-mod-authnz-external | 3.2.4-2.1 | - +- i386 | libapache2-mod-authz-unixgroup | 1.0.2-1 | - +- i386 | libapache2-mod-bw | 0.92-6 | - +- i386 | libapache2-mod-dacs | 1.4.27b-2 | - +- i386 | libapache2-mod-defensible | 1.4-3 | - +- i386 | libapache2-mod-dnssd | 0.6-3 | - +- i386 | libapache2-mod-encoding | 20040616-5.1 | - +- i386 | libapache2-mod-evasive | 1.10.1-1 | - +- i386 | libapache2-mod-fcgid | 1:2.3.6-1.2+deb7u1 | - +- i386 | libapache2-mod-fcgid-dbg | 1:2.3.6-1.2+deb7u1 | - +- i386 | libapache2-mod-geoip | 1.2.7-1 | - +- i386 | libapache2-mod-gnutls | 0.5.10-1.1 | - +- i386 | libapache2-mod-jk | 1:1.2.37-1 | - +- i386 | libapache2-mod-layout | 5.1-1 | - +- i386 | libapache2-mod-ldap-userdir | 1.1.19-1 | - +- i386 | libapache2-mod-ldap-userdir-dbg | 1.1.19-1 | - +- i386 | libapache2-mod-lisp | 1.3.1-1.2 | - +- i386 | libapache2-mod-log-sql | 1.100-14.2+b1 | - +- i386 | libapache2-mod-log-sql-dbi | 1.100-14.2+b1 | - +- i386 | libapache2-mod-log-sql-mysql | 1.100-14.2+b1 | - +- i386 | libapache2-mod-log-sql-ssl | 1.100-14.2+b1 | - +- i386 | libapache2-mod-macro | 1.1.11-2 | - +- i386 | libapache2-mod-mime-xattr | 0.4-4 | - +- i386 | libapache2-mod-mono | 2.10-3.2 | - +- i386 | libapache2-mod-musicindex | 1.3.7-2+b1 | - +- i386 | libapache2-mod-nss | 1.0.8-2 | - +- i386 | libapache2-mod-ocamlnet | 3.5.1-1 | - +- i386 | libapache2-mod-parser3 | 3.4.2-2 | - +! i386 | libapache2-mod-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +- i386 | libapache2-mod-perl2 | 2.0.7-3 | - +- i386 | libapache2-mod-php5 | 5.4.4-14+deb7u7 | - +- i386 | libapache2-mod-php5filter | 5.4.4-14+deb7u7 | - +- i386 | libapache2-mod-proxy-html | 3.0.1-1.1 | - +- i386 | libapache2-mod-python | 3.3.1-9+b3 | - +- i386 | libapache2-mod-qos | 10.8-1 | - +- i386 | libapache2-mod-random | 2.1-1 | - +- i386 | libapache2-mod-removeip | 1.0b-5 | - +- i386 | libapache2-mod-rivet | 2.0.5-1 | - +- i386 | libapache2-mod-rpaf | 0.6-7+wheezy1 | - +- i386 | libapache2-mod-ruby | 1.2.6-2 | - +- i386 | libapache2-mod-ruid2 | 0.9.7-1 | - +- i386 | libapache2-mod-ruwsgi | 1.2.3+dfsg-5+deb7u1 | - +- i386 | libapache2-mod-ruwsgi-dbg | 1.2.3+dfsg-5+deb7u1 | - +- i386 | libapache2-mod-scgi | 1.13-1+b2 | - +- i386 | libapache2-mod-shib2 | 2.4.3+dfsg-5+b1 | - +- i386 | libapache2-mod-spamhaus | 0.7-1 | - +- i386 | libapache2-mod-speedycgi | 2.22-13+b2 | - +- i386 | libapache2-mod-suphp | 0.7.1-3 | - +- i386 | libapache2-mod-upload-progress | 0.1+git20110718-1 | - +- i386 | libapache2-mod-uwsgi | 1.2.3+dfsg-5+deb7u1 | - +- i386 | libapache2-mod-uwsgi-dbg | 1.2.3+dfsg-5+deb7u1 | - +- i386 | libapache2-mod-vhost-hash-alias | 1.0-2 | - +- i386 | libapache2-mod-vhost-ldap | 2.0.8-1 | - +- i386 | libapache2-mod-wsgi | 3.3-4 | - +- i386 | libapache2-mod-wsgi-py3 | 3.3-4 | - +- i386 | libapache2-mod-xsendfile | 0.12-1 | - +- i386 | libapache2-modsecurity | 2.6.6-6+deb7u1 | - +- i386 | libapache2-request-perl | 2.13-1+b2 | - +- i386 | libapache2-svn | 1.6.17dfsg-4+deb7u4 | - +- i386 | libapache2-webauth | 4.1.1-2 | - +- i386 | libapache2-webkdc | 4.1.1-2 | - +- i386 | libapertium3-3.1-0 | 3.1.0-2 | - +- i386 | libapertium3-3.1-0-dev | 3.1.0-2 | - +- i386 | libapm-dev | 3.2.2-14 | - +- i386 | libapm1 | 3.2.2-14 | - +- i386 | libapol-dev | 3.3.7-3 | - +- i386 | libapol4 | 3.3.7-3 | - +- i386 | libapparmor-dev | 2.7.103-4 | - +- i386 | libapparmor-perl | 2.7.103-4 | - +- i386 | libapparmor1 | 2.7.103-4 | - +- i386 | libappindicator-dev | 0.4.92-2 | - +- i386 | libappindicator1 | 0.4.92-2 | - +- i386 | libappindicator3-1 | 0.4.92-2 | - +- i386 | libappindicator3-dev | 0.4.92-2 | - +- i386 | libapq-postgresql3.2.0 | 3.2.0-2 | - +- i386 | libapq-postgresql3.2.0-dbg | 3.2.0-2 | - +- i386 | libapq-postgresql3.2.0-dev | 3.2.0-2 | - +- i386 | libapq3.2.0 | 3.2.0-1 | - +- i386 | libapq3.2.0-dbg | 3.2.0-1 | - +- i386 | libapq3.2.0-dev | 3.2.0-1 | - +- i386 | libapr-memcache-dev | 0.7.0-1 | - +- i386 | libapr-memcache0 | 0.7.0-1 | - +- i386 | libapr1 | 1.4.6-3+deb7u1 | - +- i386 | libapr1-dbg | 1.4.6-3+deb7u1 | - +- i386 | libapr1-dev | 1.4.6-3+deb7u1 | - +- i386 | libapreq2 | 2.13-1+b2 | - +- i386 | libapreq2-dev | 2.13-1+b2 | - +- i386 | libapron | 0.9.10-5.2+b3 | - +- i386 | libapron-ocaml | 0.9.10-5.2+b3 | - +- i386 | libapron-ocaml-dev | 0.9.10-5.2+b3 | - +- i386 | libaprutil1 | 1.4.1-3 | - +- i386 | libaprutil1-dbd-freetds | 1.4.1-3 | - +- i386 | libaprutil1-dbd-mysql | 1.4.1-3 | - +- i386 | libaprutil1-dbd-odbc | 1.4.1-3 | - +- i386 | libaprutil1-dbd-pgsql | 1.4.1-3 | - +- i386 | libaprutil1-dbd-sqlite3 | 1.4.1-3 | - +- i386 | libaprutil1-dbg | 1.4.1-3 | - +- i386 | libaprutil1-dev | 1.4.1-3 | - +- i386 | libaprutil1-ldap | 1.4.1-3 | - +- i386 | libapt-inst1.5 | 0.9.7.9+deb7u1 | - +- i386 | libapt-pkg-dev | 0.9.7.9+deb7u1 | - +- i386 | libapt-pkg-perl | 0.1.26+b1 | - +- i386 | libapt-pkg4.12 | 0.9.7.9+deb7u1 | - +! i386 | libaqbanking-plugins-libgwenhywfar60 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! i386 | libaqbanking34 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-dbg | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-dev | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-plugins | 5.0.24-3 | 5.3.5beta-2~bpo70+1 ++ i386 | libaqebics0 | - | 5.3.5beta-2~bpo70+1 +! i386 | libaqhbci20 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 ++ i386 | libaqhbci22 | - | 5.3.5beta-2~bpo70+1 +! i386 | libaqofxconnect7 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +- i386 | libaqsis-dev | 1.8.1-3 | - +- i386 | libaqsis1 | 1.8.1-3 | - +- i386 | libarchive-dev | 3.0.4-3+nmu1 | - +- i386 | libarchive12 | 3.0.4-3+nmu1 | - +- i386 | libargtable2-0 | 12-1 | - +- i386 | libargtable2-dev | 12-1 | - +! i386 | libarmadillo-dev | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! i386 | libarmadillo3 | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +- i386 | libarpack++2-dev | 2.3-2 | - +- i386 | libarpack++2c2a | 2.3-2 | - +- i386 | libarpack2 | 3.1.1-2.1 | - +- i386 | libarpack2-dbg | 3.1.1-2.1 | - +- i386 | libarpack2-dev | 3.1.1-2.1 | - +- i386 | libarray-refelem-perl | 1.00-1.1+b3 | - +- i386 | libart-2.0-2 | 2.3.21-2 | - +- i386 | libart-2.0-dev | 2.3.21-2 | - +- i386 | libasedrive-serial | 3.7-3 | - +- i386 | libasedrive-usb | 3.7-3 | - +- i386 | libasis2010 | 2010-5 | - +- i386 | libasis2010-dbg | 2010-5 | - +- i386 | libasis2010-dev | 2010-5 | - +- i386 | libasm-dev | 0.152-1+wheezy1 | - +- i386 | libasm1 | 0.152-1+wheezy1 | - +- i386 | libasn1-8-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libasound2 | 1.0.25-4 | - +- i386 | libasound2-dbg | 1.0.25-4 | - +- i386 | libasound2-dev | 1.0.25-4 | - +- i386 | libasound2-plugin-equal | 0.6-4 | - +- i386 | libasound2-plugins | 1.0.25-2 | - +- i386 | libaspell-dev | 0.60.7~20110707-1 | - +- i386 | libaspell15 | 0.60.7~20110707-1 | - ++ i386 | libasprintf-dev | - | 0.18.3-1~bpo7+1 +! i386 | libasprintf0c2 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- i386 | libass-dev | 0.10.0-3 | - +- i386 | libass4 | 0.10.0-3 | - +- i386 | libassa3.5-5 | 3.5.1-2 | - +- i386 | libassa3.5-5-dbg | 3.5.1-2 | - +- i386 | libassa3.5-5-dev | 3.5.1-2 | - +- i386 | libassimp-dev | 3.0~dfsg-1 | - +- i386 | libassimp3 | 3.0~dfsg-1 | - +- i386 | libassuan-dev | 2.0.3-1 | - +- i386 | libassuan0 | 2.0.3-1 | - +- i386 | libassuan0-dbg | 2.0.3-1 | - +- i386 | libast2 | 0.7-6+b1 | - +- i386 | libast2-dev | 0.7-6+b1 | - +- i386 | libastro-fits-cfitsio-perl | 1.08-1 | - +- i386 | libasync-interrupt-perl | 1.10-1 | - +- i386 | libasyncns-dev | 0.8-4 | - +- i386 | libasyncns0 | 0.8-4 | - +- i386 | libatasmart-bin | 0.19-1 | - +- i386 | libatasmart-dev | 0.19-1 | - +- i386 | libatasmart4 | 0.19-1 | - +- i386 | libatd-ocaml | 1.0.1-1+b1 | - +- i386 | libatd-ocaml-dev | 1.0.1-1+b1 | - +- i386 | libatdgen-ocaml | 1.2.2-1+b1 | - +- i386 | libatdgen-ocaml-dev | 1.2.2-1+b1 | - +- i386 | libatfs1 | 1.4pl6-11 | - +- i386 | libatk-adaptor | 2.5.3-2 | - +- i386 | libatk-adaptor-data | 2.5.3-2 | - +- i386 | libatk-adaptor-dbg | 2.5.3-2 | - +- i386 | libatk-bridge2.0-0 | 2.5.3-2 | - +- i386 | libatk-bridge2.0-0-dbg | 2.5.3-2 | - +- i386 | libatk-bridge2.0-dev | 2.5.3-2 | - +- i386 | libatk-wrapper-java-jni | 0.30.4-3 | - +- i386 | libatk1-ruby1.8-dbg | 1.1.3-2+b1 | - +- i386 | libatk1.0-0 | 2.4.0-2 | - +- i386 | libatk1.0-dbg | 2.4.0-2 | - +- i386 | libatk1.0-dev | 2.4.0-2 | - +- i386 | libatkmm-1.6-1 | 2.22.6-1 | - +- i386 | libatkmm-1.6-dbg | 2.22.6-1 | - +- i386 | libatkmm-1.6-dev | 2.22.6-1 | - +- i386 | libatlas-base-dev | 3.8.4-9+deb7u1 | - +- i386 | libatlas-cpp-0.6-1 | 0.6.2-3 | - +- i386 | libatlas-cpp-0.6-1-dbg | 0.6.2-3 | - +- i386 | libatlas-cpp-0.6-dev | 0.6.2-3 | - +- i386 | libatlas-test | 3.8.4-9+deb7u1 | - +- i386 | libatlas3-base | 3.8.4-9+deb7u1 | - +- i386 | libatm1 | 1:2.5.1-1.5 | - +- i386 | libatm1-dev | 1:2.5.1-1.5 | - +- i386 | libatomic-ops-dev | 7.2~alpha5+cvs20101124-1+deb7u1 | - +- i386 | libatomicparsley-dev | 2.1.2-1 | - +- i386 | libatomicparsley0 | 2.1.2-1 | - +- i386 | libatspi-dbg | 1.32.0-2 | - +- i386 | libatspi-dev | 1.32.0-2 | - +- i386 | libatspi1.0-0 | 1.32.0-2 | - +- i386 | libatspi2.0-0 | 2.5.3-2 | - +- i386 | libatspi2.0-0-dbg | 2.5.3-2 | - +- i386 | libatspi2.0-dev | 2.5.3-2 | - +- i386 | libattica-dev | 0.2.0-1 | - +- i386 | libattica0 | 0.2.0-1 | - +- i386 | libattr1 | 1:2.4.46-8 | - +- i386 | libattr1-dev | 1:2.4.46-8 | - +- i386 | libaubio-dev | 0.3.2-4.2+b1 | - +- i386 | libaubio2 | 0.3.2-4.2+b1 | - +- i386 | libaudclient2 | 3.2.4-1 | - +- i386 | libaudcore1 | 3.2.4-1 | - +- i386 | libaudio-cd-perl | 0.05-9+b2 | - +- i386 | libaudio-dev | 1.9.3-5wheezy1 | - +- i386 | libaudio-ecasound-perl | 1.01-2+b1 | - +- i386 | libaudio-flac-decoder-perl | 0.3+dfsg-1+b2 | - +- i386 | libaudio-flac-header-perl | 2.4-1+b2 | - +- i386 | libaudio-mixer-perl | 0.7-3+b3 | - +- i386 | libaudio-scan-perl | 0.93+dfsg-2+b1 | - +- i386 | libaudio-xmmsclient-perl | 0.8+dfsg-4 | - +- i386 | libaudio2 | 1.9.3-5wheezy1 | - +- i386 | libaudiofile-dbg | 0.3.4-2 | - +- i386 | libaudiofile-dev | 0.3.4-2 | - +- i386 | libaudiofile1 | 0.3.4-2 | - +- i386 | libaudiomask-dev | 1.0-2 | - +- i386 | libaudiomask1 | 1.0-2 | - +- i386 | libaudit-dev | 1:1.7.18-1.1 | - +- i386 | libaudit0 | 1:1.7.18-1.1 | - +- i386 | libaugeas-dev | 0.10.0-1 | - +- i386 | libaugeas-ruby1.8 | 0.4.1-1.1 | - +- i386 | libaugeas-ruby1.9.1 | 0.4.1-1.1 | - +- i386 | libaugeas0 | 0.10.0-1 | - +- i386 | libaunit-dbg | 1.03-7 | - +- i386 | libaunit2-dev | 1.03-7 | - +- i386 | libaunit3 | 1.03-7 | - +- i386 | libauthen-dechpwd-perl | 2.006-1+b1 | - +- i386 | libauthen-krb5-admin-perl | 0.13-1 | - +- i386 | libauthen-krb5-perl | 1.9-3+b2 | - +- i386 | libauthen-krb5-simple-perl | 0.43-1 | - +- i386 | libauthen-pam-perl | 0.16-2+b2 | - +- i386 | libauthen-sasl-cyrus-perl | 0.13-server-8+b2 | - +- i386 | libauthen-smb-perl | 0.91-4+b2 | - +- i386 | libauthen-tacacsplus-perl | 0.22-1 | - +- i386 | libautobox-perl | 2.75-1+b1 | - +- i386 | libautotrace-dev | 0.31.1-16+b1 | - +- i386 | libautotrace3 | 0.31.1-16+b1 | - +- i386 | libautounit-dev | 0.20.1-4 | - +- i386 | libautounit2 | 0.20.1-4 | - +- i386 | libautovivification-perl | 0.10-1+b1 | - +! i386 | libav-dbg | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libav-tools | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- i386 | libavahi-client-dev | 0.6.31-2 | - +- i386 | libavahi-client3 | 0.6.31-2 | - +- i386 | libavahi-common-data | 0.6.31-2 | - +- i386 | libavahi-common-dev | 0.6.31-2 | - +- i386 | libavahi-common3 | 0.6.31-2 | - +- i386 | libavahi-compat-libdnssd-dev | 0.6.31-2 | - +- i386 | libavahi-compat-libdnssd1 | 0.6.31-2 | - +- i386 | libavahi-core-dev | 0.6.31-2 | - +- i386 | libavahi-core7 | 0.6.31-2 | - +- i386 | libavahi-glib-dev | 0.6.31-2 | - +- i386 | libavahi-glib1 | 0.6.31-2 | - +- i386 | libavahi-gobject-dev | 0.6.31-2 | - +- i386 | libavahi-gobject0 | 0.6.31-2 | - +- i386 | libavahi-qt4-1 | 0.6.31-2 | - +- i386 | libavahi-qt4-dev | 0.6.31-2 | - +- i386 | libavahi-ui-dev | 0.6.31-2 | - +- i386 | libavahi-ui-gtk3-0 | 0.6.31-2 | - +- i386 | libavahi-ui-gtk3-dev | 0.6.31-2 | - +- i386 | libavahi-ui0 | 0.6.31-2 | - +- i386 | libavbin-dev | 7-1.3 | - +- i386 | libavbin0 | 7-1.3 | - +- i386 | libavc1394-0 | 0.5.4-2 | - +- i386 | libavc1394-dev | 0.5.4-2 | - +- i386 | libavc1394-tools | 0.5.4-2 | - +! i386 | libavcodec-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- i386 | libavcodec-extra-53 | 6:0.8.9-1 | - ++ i386 | libavcodec-extra-54 | - | 6:9.10-1~bpo70+1 +- i386 | libavcodec53 | 6:0.8.9-1 | - ++ i386 | libavcodec54 | - | 6:9.10-1~bpo70+1 +! i386 | libavdevice-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavdevice53 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavfilter-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- i386 | libavfilter2 | 6:0.8.9-1 | - ++ i386 | libavfilter3 | - | 6:9.10-1~bpo70+1 +! i386 | libavformat-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- i386 | libavformat53 | 6:0.8.9-1 | - ++ i386 | libavformat54 | - | 6:9.10-1~bpo70+1 +- i386 | libavifile-0.7-bin | 1:0.7.48~20090503.ds-13 | - +- i386 | libavifile-0.7-dev | 1:0.7.48~20090503.ds-13 | - +- i386 | libavifile-0.7c2 | 1:0.7.48~20090503.ds-13 | - +- i386 | libavl-dev | 0.3.5-3 | - +- i386 | libavl1 | 0.3.5-3 | - +- i386 | libavogadro-dev | 1.0.3-5 | - +- i386 | libavogadro1 | 1.0.3-5 | - ++ i386 | libavresample-dev | - | 6:9.10-1~bpo70+1 ++ i386 | libavresample1 | - | 6:9.10-1~bpo70+1 +! i386 | libavutil-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- i386 | libavutil51 | 6:0.8.9-1 | - ++ i386 | libavutil52 | - | 6:9.10-1~bpo70+1 +- i386 | libaws-bin | 2.10.2-4 | - +- i386 | libaws-dbg | 2.10.2-4 | - +- i386 | libaws2.10.2 | 2.10.2-4 | - +- i386 | libaws2.10.2-dev | 2.10.2-4 | - +- i386 | libax25 | 0.0.12-rc2+cvs20120204-2 | - +- i386 | libax25-dev | 0.0.12-rc2+cvs20120204-2 | - +- i386 | libb-hooks-op-annotation-perl | 0.44-1+b2 | - +- i386 | libb-hooks-op-check-entersubforcv-perl | 0.09-1 | - +- i386 | libb-hooks-op-check-perl | 0.19-1+b1 | - +- i386 | libb-hooks-op-ppaddr-perl | 0.03-1+b1 | - +- i386 | libb-hooks-parser-perl | 0.11-1 | - +- i386 | libb-utils-perl | 0.21-1 | - +- i386 | libbabl-0.1-0 | 0.1.10-1 | - +- i386 | libbabl-0.1-0-dbg | 0.1.10-1 | - +- i386 | libbabl-dev | 0.1.10-1 | - +- i386 | libball1.4 | 1.4.1+20111206-4 | - +- i386 | libball1.4-dev | 1.4.1+20111206-4 | - +- i386 | libballview1.4 | 1.4.1+20111206-4 | - +- i386 | libballview1.4-dev | 1.4.1+20111206-4 | - +- i386 | libbam-dev | 0.1.18-1 | - +- i386 | libbamf-dev | 0.2.118-1 | - +- i386 | libbamf0 | 0.2.118-1 | - +- i386 | libbamf3-0 | 0.2.118-1 | - +- i386 | libbamf3-dev | 0.2.118-1 | - +- i386 | libbarcode-zbar-perl | 0.10+doc-8 | - +- i386 | libbareword-filehandles-perl | 0.003-1 | - +- i386 | libbarry-dev | 0.18.3-5 | - +- i386 | libbarry18 | 0.18.3-5 | - +- i386 | libbarry18-dbg | 0.18.3-5 | - +- i386 | libbatteries-ocaml-dev | 1.4.3-1 | - +- i386 | libbcmail-java-gcj | 1.44+dfsg-3.1 | - +- i386 | libbcpg-java-gcj | 1.44+dfsg-3.1 | - +- i386 | libbcprov-java-gcj | 1.44+dfsg-3.1 | - +- i386 | libbctsp-java-gcj | 1.44+dfsg-3.1 | - +- i386 | libbdd-dev | 2.4-8 | - +- i386 | libbdd0c2 | 2.4-8 | - +- i386 | libbeecrypt-dev | 4.2.1-4 | - +- i386 | libbeecrypt7 | 4.2.1-4 | - +- i386 | libbenchmark-ocaml-dev | 0.9-2+b3 | - +- i386 | libberkeleydb-perl | 0.51-1 | - +- i386 | libbfb0 | 0.23-1.1 | - +- i386 | libbfb0-dev | 0.23-1.1 | - ++ i386 | libbfio-dbg | - | 20130507-1~bpo70+1 ++ i386 | libbfio-dev | - | 20130507-1~bpo70+1 ++ i386 | libbfio1 | - | 20130507-1~bpo70+1 +- i386 | libbg1 | 1.106-1 | - +- i386 | libbg1-dev | 1.106-1 | - +- i386 | libbibutils-dev | 4.12-5 | - +- i386 | libbibutils2 | 4.12-5 | - +- i386 | libbin-prot-camlp4-dev | 2.0.7-1 | - +- i386 | libbind-dev | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | libbind4 | 6.0-1 | - +- i386 | libbind4-dev | 6.0-1 | - +- i386 | libbind9-80 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | libbinio-dev | 1.4+dfsg1-1 | - +- i386 | libbinio1ldbl | 1.4+dfsg1-1 | - +- i386 | libbiniou-ocaml | 1.0.0-1+b1 | - +- i386 | libbiniou-ocaml-dev | 1.0.0-1+b1 | - +- i386 | libbio-samtools-perl | 1.33-1 | - +- i386 | libbio-scf-perl | 1.03-1+b2 | - +- i386 | libbio2jack0 | 0.9-2.1 | - +- i386 | libbio2jack0-dev | 0.9-2.1 | - +- i386 | libbiococoa-dev | 2.2.2-1+b2 | - +- i386 | libbiococoa2 | 2.2.2-1+b2 | - +- i386 | libbiosig-dev | 1.3.0-2 | - +- i386 | libbiosig1 | 1.3.0-2 | - +- i386 | libbiosig1-dbg | 1.3.0-2 | - +- i386 | libbisho-common-dev | 0.27.2+git20111122.9e68ef3d-1 | - +- i386 | libbisho-common0 | 0.27.2+git20111122.9e68ef3d-1 | - +- i386 | libbisho-common0-dbg | 0.27.2+git20111122.9e68ef3d-1 | - +- i386 | libbison-dev | 1:2.5.dfsg-2.1 | - +- i386 | libbit-vector-perl | 7.2-1 | - +- i386 | libbitmask-dev | 2.0-2 | - +- i386 | libbitmask1 | 2.0-2 | - +- i386 | libbitstring-ocaml | 2.0.2-3+b1 | - +- i386 | libbitstring-ocaml-dev | 2.0.2-3+b1 | - +- i386 | libbjack-ocaml | 0.1.3-5+b1 | - +- i386 | libbjack-ocaml-dev | 0.1.3-5+b1 | - +- i386 | libblacs-mpi-dev | 1.1-31 | - +- i386 | libblacs-mpi1 | 1.1-31 | - ++ i386 | libbladerf-dev | - | 0.9.0.15.8ba2499-1~bpo70+1 ++ i386 | libbladerf0 | - | 0.9.0.15.8ba2499-1~bpo70+1 +- i386 | libblas-dev | 1.2.20110419-5 | - +- i386 | libblas-test | 1.2.20110419-5 | - +- i386 | libblas3 | 1.2.20110419-5 | - +- i386 | libbliss-dev | 0.72-4 | - +- i386 | libbliss1d | 0.72-4 | - +- i386 | libbliss1d-dbg | 0.72-4 | - +- i386 | libblitz0-dev | 1:0.9-13 | - +- i386 | libblitz0ldbl | 1:0.9-13 | - +- i386 | libblkid-dev | 2.20.1-5.3 | - +- i386 | libblkid1 | 2.20.1-5.3 | - +- i386 | libblktapctl0 | 2.0.90-1 | - +- i386 | libblocksruntime-dev | 0.1-1 | - +- i386 | libblocksruntime0 | 0.1-1 | - +- i386 | libbluedevil-dev | 1.9.2-1 | - +- i386 | libbluedevil1 | 1.9.2-1 | - +- i386 | libbluetooth-dev | 4.99-2 | - +- i386 | libbluetooth3 | 4.99-2 | - +- i386 | libbluetooth3-dbg | 4.99-2 | - +- i386 | libbluray-dev | 1:0.2.2-1 | - +- i386 | libbluray1 | 1:0.2.2-1 | - +- i386 | libbluray1-dbg | 1:0.2.2-1 | - +- i386 | libbml-dev | 0.6.1-1 | - +- i386 | libbml0 | 0.6.1-1 | - +- i386 | libbobcat-dev | 3.01.00-1+b1 | - +- i386 | libbobcat3 | 3.01.00-1+b1 | - +- i386 | libbogl-dev | 0.1.18-8+b1 | - +- i386 | libbogl0 | 0.1.18-8+b1 | - +- i386 | libbognor-regis-0.6-0 | 0.6.12+git20101007.02c25268-7 | - +- i386 | libbognor-regis-0.6-0-dbg | 0.6.12+git20101007.02c25268-7 | - +- i386 | libbognor-regis-dev | 0.6.12+git20101007.02c25268-7 | - ++ i386 | libboinc-app7 | - | 7.0.65+dfsg-3~bpo70+1 ++ i386 | libboinc7 | - | 7.0.65+dfsg-3~bpo70+1 +- i386 | libbonobo2-0 | 2.24.3-1 | - +- i386 | libbonobo2-bin | 2.24.3-1 | - +- i386 | libbonobo2-dev | 2.24.3-1 | - +- i386 | libbonoboui2-0 | 2.24.3-1 | - +- i386 | libbonoboui2-dev | 2.24.3-1 | - +- i386 | libboolstuff-0.1-0 | 0.1.12-3 | - +- i386 | libboolstuff-0.1-0-dbg | 0.1.12-3 | - +- i386 | libboost-all-dev | 1.49.0.1 | - +- i386 | libboost-chrono-dev | 1.49.0.1 | - +- i386 | libboost-chrono1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-chrono1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-date-time-dev | 1.49.0.1 | - +- i386 | libboost-date-time1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-date-time1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-dbg | 1.49.0.1 | - +- i386 | libboost-dev | 1.49.0.1 | - +- i386 | libboost-filesystem-dev | 1.49.0.1 | - +- i386 | libboost-filesystem1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-filesystem1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-graph-dev | 1.49.0.1 | - +- i386 | libboost-graph-parallel-dev | 1.49.0.1 | - +- i386 | libboost-graph-parallel1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-graph-parallel1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-graph1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-graph1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-iostreams-dev | 1.49.0.1 | - +- i386 | libboost-iostreams1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-iostreams1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-locale-dev | 1.49.0.1 | - +- i386 | libboost-locale1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-locale1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-math-dev | 1.49.0.1 | - +- i386 | libboost-math1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-math1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-mpi-dev | 1.49.0.1 | - +- i386 | libboost-mpi-python-dev | 1.49.0.1 | - +- i386 | libboost-mpi-python1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-mpi-python1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-mpi1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-mpi1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-program-options-dev | 1.49.0.1 | - +- i386 | libboost-program-options1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-program-options1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-python-dev | 1.49.0.1 | - +- i386 | libboost-python1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-python1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-random-dev | 1.49.0.1 | - +- i386 | libboost-random1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-random1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-regex-dev | 1.49.0.1 | - +- i386 | libboost-regex1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-regex1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-serialization-dev | 1.49.0.1 | - +- i386 | libboost-serialization1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-serialization1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-signals-dev | 1.49.0.1 | - +- i386 | libboost-signals1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-signals1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-system-dev | 1.49.0.1 | - +- i386 | libboost-system1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-system1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-test-dev | 1.49.0.1 | - +- i386 | libboost-test1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-test1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-thread-dev | 1.49.0.1 | - +- i386 | libboost-thread1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-thread1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-timer-dev | 1.49.0.1 | - +- i386 | libboost-timer1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-timer1.49.0 | 1.49.0-3.2 | - +- i386 | libboost-wave-dev | 1.49.0.1 | - +- i386 | libboost-wave1.49-dev | 1.49.0-3.2 | - +- i386 | libboost-wave1.49.0 | 1.49.0-3.2 | - +- i386 | libboost1.49-all-dev | 1.49.0-3.2 | - +- i386 | libboost1.49-dbg | 1.49.0-3.2 | - +- i386 | libboost1.49-dev | 1.49.0-3.2 | - +- i386 | libbotan-1.10-0 | 1.10.5-1 | - +- i386 | libbotan1.10-dev | 1.10.5-1 | - +- i386 | libbox-dev | 2.5-2 | - +- i386 | libbox2d-dev | 2.0.1+dfsg1-1 | - +- i386 | libbox2d0 | 2.0.1+dfsg1-1 | - +- i386 | libbox2d0-dbg | 2.0.1+dfsg1-1 | - +- i386 | libbpp-core-dev | 2.0.3-1 | - +- i386 | libbpp-core2 | 2.0.3-1 | - +- i386 | libbpp-phyl-dev | 2.0.3-1 | - +- i386 | libbpp-phyl9 | 2.0.3-1 | - +- i386 | libbpp-popgen-dev | 2.0.3-1 | - +- i386 | libbpp-popgen6 | 2.0.3-1 | - +- i386 | libbpp-qt-dev | 2.0.2-1 | - +- i386 | libbpp-qt1 | 2.0.2-1 | - +- i386 | libbpp-raa-dev | 2.0.3-1 | - +- i386 | libbpp-raa1 | 2.0.3-1 | - +- i386 | libbpp-seq-dev | 2.0.3-1 | - +- i386 | libbpp-seq9 | 2.0.3-1 | - +- i386 | libbrahe-1.3-3 | 1.3.2-3 | - +- i386 | libbrahe-dev | 1.3.2-3 | - +- i386 | libbrasero-media3-1 | 3.4.1-4 | - +- i386 | libbrasero-media3-dev | 3.4.1-4 | - +- i386 | libbrlapi-dbg | 4.4-10+deb7u1 | - +- i386 | libbrlapi-dev | 4.4-10+deb7u1 | - +- i386 | libbrlapi-jni | 4.4-10+deb7u1 | - +- i386 | libbrlapi0.5 | 4.4-10+deb7u1 | - +- i386 | libbs2b-dev | 3.1.0+dfsg-2 | - +- i386 | libbs2b0 | 3.1.0+dfsg-2 | - +- i386 | libbsd-arc4random-perl | 1.50-5 | - +- i386 | libbsd-dev | 0.4.2-1 | - +- i386 | libbsd-resource-perl | 1.2904-1+b2 | - +- i386 | libbsd0 | 0.4.2-1 | - +- i386 | libbsd0-dbg | 0.4.2-1 | - +- i386 | libbse-0.7-4 | 0.7.4-5 | - +- i386 | libbt-dev | 0.70.1-13 | - +- i386 | libbt0 | 0.70.1-13 | - +- i386 | libbtf1.1.0 | 1:3.4.0-3 | - +- i386 | libbtparse-dev | 0.63-1 | - +- i386 | libbtparse1 | 0.63-1 | - +- i386 | libbuffy-dev | 1.7-1 | - +- i386 | libbuffy-perl | 0.13+b1 | - +- i386 | libbulletml-dev | 0.0.6-5 | - +- i386 | libbulletml0d2 | 0.0.6-5 | - +- i386 | libburn-dbg | 1.2.2-2 | - +- i386 | libburn-dev | 1.2.2-2 | - +- i386 | libburn4 | 1.2.2-2 | - +- i386 | libbuzztard-dev | 0.5.0-4 | - +- i386 | libbuzztard0 | 0.5.0-4 | - +- i386 | libbz2-1.0 | 1.0.6-4 | - +- i386 | libbz2-dev | 1.0.6-4 | - +- i386 | libbz2-ocaml | 0.6.0-6+b2 | - +- i386 | libbz2-ocaml-dev | 0.6.0-6+b2 | - +- i386 | libbz2-ruby1.8 | 0.2.2-2 | - +- i386 | libc-ares-dev | 1.9.1-3 | - +- i386 | libc-ares2 | 1.9.1-3 | - +- i386 | libc-bin | 2.13-38+deb7u1 | - +- i386 | libc-client2007e | 8:2007f~dfsg-2 | - +- i386 | libc-client2007e-dev | 8:2007f~dfsg-2 | - +- i386 | libc-dev-bin | 2.13-38+deb7u1 | - +- i386 | libc-icap-mod-clamav | 1:0.1.6-1 | - +- i386 | libc-icap-mod-urlcheck | 1:0.1.6-1 | - +- i386 | libc6 | 2.13-38+deb7u1 | - +- i386 | libc6-amd64 | 2.13-38+deb7u1 | - +- i386 | libc6-dbg | 2.13-38+deb7u1 | - +- i386 | libc6-dev | 2.13-38+deb7u1 | - +- i386 | libc6-dev-amd64 | 2.13-38+deb7u1 | - +- i386 | libc6-i686 | 2.13-38+deb7u1 | - +- i386 | libc6-pic | 2.13-38+deb7u1 | - +- i386 | libc6-prof | 2.13-38+deb7u1 | - +- i386 | libc6-xen | 2.13-38+deb7u1 | - +- i386 | libcableswig-dev | 0.1.0+cvs20111009-1 | - +- i386 | libcaca-dev | 0.99.beta18-1 | - +- i386 | libcaca0 | 0.99.beta18-1 | - +- i386 | libcache-fastmmap-perl | 1.40-1 | - +- i386 | libcache-memcached-fast-perl | 0.19-2+b1 | - +- i386 | libcache-mmap-perl | 0.11-1+b3 | - +- i386 | libcairo-gobject-perl | 1.001-1 | - +- i386 | libcairo-gobject2 | 1.12.2-3 | - +- i386 | libcairo-ocaml | 1:1.2.0-2+b1 | - +- i386 | libcairo-ocaml-dev | 1:1.2.0-2+b1 | - +- i386 | libcairo-perl | 1.090-2 | - +- i386 | libcairo-script-interpreter2 | 1.12.2-3 | - +- i386 | libcairo2 | 1.12.2-3 | - +- i386 | libcairo2-dbg | 1.12.2-3 | - +- i386 | libcairo2-dev | 1.12.2-3 | - +- i386 | libcairo5c-0 | 1.8.1 | - +- i386 | libcairomm-1.0-1 | 1.10.0-1 | - +- i386 | libcairomm-1.0-dev | 1.10.0-1 | - +- i386 | libcal3d12 | 0.11.0-4.1 | - +- i386 | libcal3d12-dev | 0.11.0-4.1 | - +- i386 | libcalendar-ocaml | 2.03-1+b2 | - +- i386 | libcalendar-ocaml-dev | 2.03-1+b2 | - +- i386 | libcamd2.2.0 | 1:3.4.0-3 | - +- i386 | libcamel-1.2-33 | 3.4.4-3 | - +- i386 | libcamel1.2-dev | 3.4.4-3 | - +- i386 | libcameleon-ocaml-dev | 1.9.21-2+b1 | - +- i386 | libcaml2html-ocaml | 1.4.1-3 | - +- i386 | libcaml2html-ocaml-dev | 1.4.1-3 | - +- i386 | libcamlimages-ocaml | 1:4.0.1-4+b2 | - +- i386 | libcamlimages-ocaml-dev | 1:4.0.1-4+b2 | - +- i386 | libcamljava-ocaml-dev | 0.3-1+b3 | - +- i386 | libcamltemplate-ocaml | 1.0.2-1+b2 | - +- i386 | libcamltemplate-ocaml-dev | 1.0.2-1+b2 | - +- i386 | libcamomile-ocaml-dev | 0.8.4-2 | - +- i386 | libcanberra-dev | 0.28-6 | - +- i386 | libcanberra-gstreamer | 0.28-6 | - +- i386 | libcanberra-gstreamer-dbg | 0.28-6 | - +- i386 | libcanberra-gtk-dev | 0.28-6 | - +- i386 | libcanberra-gtk-module | 0.28-6 | - +- i386 | libcanberra-gtk-module-dbg | 0.28-6 | - +- i386 | libcanberra-gtk0 | 0.28-6 | - +- i386 | libcanberra-gtk0-dbg | 0.28-6 | - +- i386 | libcanberra-gtk3-0 | 0.28-6 | - +- i386 | libcanberra-gtk3-0-dbg | 0.28-6 | - +- i386 | libcanberra-gtk3-dev | 0.28-6 | - +- i386 | libcanberra-gtk3-module | 0.28-6 | - +- i386 | libcanberra-gtk3-module-dbg | 0.28-6 | - +- i386 | libcanberra-pulse | 0.28-6 | - +- i386 | libcanberra-pulse-dbg | 0.28-6 | - +- i386 | libcanberra0 | 0.28-6 | - +- i386 | libcanberra0-dbg | 0.28-6 | - +- i386 | libcanlock2 | 2b-6 | - +- i386 | libcanlock2-dev | 2b-6 | - +- i386 | libcanna1g | 3.7p3-11 | - +- i386 | libcanna1g-dev | 3.7p3-11 | - +- i386 | libcap-dev | 1:2.22-1.2 | - +- i386 | libcap-ng-dev | 0.6.6-2 | - +- i386 | libcap-ng-utils | 0.6.6-2 | - +- i386 | libcap-ng0 | 0.6.6-2 | - +- i386 | libcap2 | 1:2.22-1.2 | - +- i386 | libcap2-bin | 1:2.22-1.2 | - +- i386 | libcapi20-3 | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | libcapi20-dev | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | libcapsinetwork-dev | 0.3.0-7 | - +- i386 | libcapsinetwork0c2a | 0.3.0-7 | - +- i386 | libcaribou-dbg | 0.4.4-1 | - +- i386 | libcaribou-dev | 0.4.4-1 | - +- i386 | libcaribou-gtk-module | 0.4.4-1 | - +- i386 | libcaribou-gtk-module-dbg | 0.4.4-1 | - +- i386 | libcaribou-gtk3-module | 0.4.4-1 | - +- i386 | libcaribou-gtk3-module-dbg | 0.4.4-1 | - +- i386 | libcaribou0 | 0.4.4-1 | - +- i386 | libcbf-dev | 0.7.9.1-3 | - +- i386 | libcbf0 | 0.7.9.1-3 | - +- i386 | libccaudio2 | 2.0.5-3 | - +- i386 | libccaudio2-dev | 2.0.5-3 | - +- i386 | libccfits-dev | 2.4-1 | - +- i386 | libccfits0 | 2.4-1 | - +- i386 | libccgnu2-1.8-0 | 1.8.1-5 | - +- i386 | libccid | 1.4.7-1 | - +- i386 | libccolamd2.7.1 | 1:3.4.0-3 | - +- i386 | libcconv-dev | 0.6.2-1 | - +- i386 | libcconv0 | 0.6.2-1 | - +- i386 | libccrtp-dev | 2.0.3-4 | - +- i386 | libccrtp0 | 2.0.3-4 | - +- i386 | libccs-dev | 3.0.12-3.2+deb7u2 | - +- i386 | libccs-perl | 3.0.12-3.2+deb7u2 | - +- i386 | libccs3 | 3.0.12-3.2+deb7u2 | - +- i386 | libccscript3-1.1-0 | 1.1.7-2 | - +- i386 | libccscript3-dev | 1.1.7-2 | - +- i386 | libccss-1-5 | 0.5.0-4 | - +- i386 | libccss-1-5-dbg | 0.5.0-4 | - +- i386 | libccss-dev | 0.5.0-4 | - +- i386 | libccss-tools | 0.5.0-4 | - +- i386 | libcdaudio-dbg | 0.99.12p2-12 | - +- i386 | libcdaudio-dev | 0.99.12p2-12 | - +- i386 | libcdaudio1 | 0.99.12p2-12 | - +- i386 | libcdb-dev | 0.78 | - +- i386 | libcdb-file-perl | 0.97-2 | - +- i386 | libcdb1 | 0.78 | - +- i386 | libcdd-dev | 094b.dfsg-4.2 | - +- i386 | libcdd-test | 094b.dfsg-4.2 | - +- i386 | libcdd0 | 094b.dfsg-4.2 | - +- i386 | libcddb2 | 1.3.2-3 | - +- i386 | libcddb2-dev | 1.3.2-3 | - +- i386 | libcdi-dev | 1.5.4+dfsg.1-5 | - +- i386 | libcdi0 | 1.5.4+dfsg.1-5 | - +- i386 | libcdio-cdda-dev | 0.83-4 | - +- i386 | libcdio-cdda1 | 0.83-4 | - +- i386 | libcdio-dev | 0.83-4 | - +- i386 | libcdio-paranoia-dev | 0.83-4 | - +- i386 | libcdio-paranoia1 | 0.83-4 | - +- i386 | libcdio-utils | 0.83-4 | - +- i386 | libcdio13 | 0.83-4 | - +- i386 | libcdk-perl | 4.9.10-5+b1 | - +- i386 | libcdk5 | 5.0.20060507-4 | - +- i386 | libcdk5-dev | 5.0.20060507-4 | - +- i386 | libcdparanoia-dev | 3.10.2+debian-10.1 | - +- i386 | libcdparanoia0 | 3.10.2+debian-10.1 | - +- i386 | libcdt4 | 2.26.3-14+deb7u1 | - +- i386 | libcec-dev | 1.6.2-1.1 | - +- i386 | libcec1 | 1.6.2-1.1 | - +- i386 | libcegui-mk2-0.7.6 | 0.7.6-2+b1 | - +- i386 | libcegui-mk2-0.7.6-dbg | 0.7.6-2+b1 | - +- i386 | libcegui-mk2-dev | 0.7.6-2+b1 | - +- i386 | libcext-dev | 6.1.1-2 | - +- i386 | libcext0 | 6.1.1-2 | - +- i386 | libcf-ocaml | 0.10-3+b3 | - +- i386 | libcf-ocaml-dev | 0.10-3+b3 | - +- i386 | libcf0 | 1:4.1.3-6+b1 | - +- i386 | libcfg-dev | 1.4.2-3 | - +- i386 | libcfg4 | 1.4.2-3 | - +- i386 | libcfitsio3 | 3.300-2 | - +- i386 | libcfitsio3-dbg | 3.300-2 | - +- i386 | libcfitsio3-dev | 3.300-2 | - +- i386 | libcflow-perl | 1:0.68-12.1+b1 | - +- i386 | libcgal-dev | 4.0-5 | - +- i386 | libcgal-ipelets | 4.0-5 | - +- i386 | libcgal9 | 4.0-5 | - +- i386 | libcgi-java | 0.7.3-1 | - +- i386 | libcgic-dev | 2.05-3 | - +- i386 | libcgic2 | 2.05-3 | - +- i386 | libcgicc5 | 3.2.9-3 | - +- i386 | libcgicc5-dev | 3.2.9-3 | - +- i386 | libcgns-dev | 3.1.3.4-1+b1 | - +- i386 | libcgns3.1 | 3.1.3.4-1+b1 | - +- i386 | libcgns3.1-dbg | 3.1.3.4-1+b1 | - +- i386 | libcgraph5 | 2.26.3-14+deb7u1 | - +- i386 | libcgroup-dev | 0.38-1 | - +- i386 | libcgroup1 | 0.38-1 | - +- i386 | libcgsi-gsoap-dev | 1.3.5-1 | - +- i386 | libcgsi-gsoap1 | 1.3.5-1 | - +- i386 | libchamplain-0.12-0 | 0.12.3-1 | - +- i386 | libchamplain-0.12-dbg | 0.12.3-1 | - +- i386 | libchamplain-0.12-dev | 0.12.3-1 | - +- i386 | libchamplain-gtk-0.12-0 | 0.12.3-1 | - +- i386 | libchamplain-gtk-0.12-dbg | 0.12.3-1 | - +- i386 | libchamplain-gtk-0.12-dev | 0.12.3-1 | - +- i386 | libcharls-dev | 1.0-2 | - +- i386 | libcharls1 | 1.0-2 | - +- i386 | libchasen-dev | 2.4.5-6 | - +- i386 | libchasen2 | 2.4.5-6 | - +- i386 | libcheese-dev | 3.4.2-2 | - +- i386 | libcheese-gtk-dev | 3.4.2-2 | - +- i386 | libcheese-gtk21 | 3.4.2-2 | - +- i386 | libcheese3 | 3.4.2-2 | - +- i386 | libchemistry-openbabel-perl | 2.3.1+dfsg-4 | - +- i386 | libchewing3 | 0.3.3-4 | - +- i386 | libchewing3-data | 0.3.3-4 | - +- i386 | libchewing3-dbg | 0.3.3-4 | - +- i386 | libchewing3-dev | 0.3.3-4 | - +- i386 | libchicken-dev | 4.7.0-1 | - +- i386 | libchicken6 | 4.7.0-1 | - +- i386 | libchipcard-dev | 5.0.3beta-3 | - +- i386 | libchipcard-libgwenhywfar60-plugins | 5.0.3beta-3 | - +- i386 | libchipcard-tools | 5.0.3beta-3 | - +- i386 | libchipcard6 | 5.0.3beta-3 | - +- i386 | libchipmunk0d1 | 5.3.4-1 | - +- i386 | libchipmunk0d1-dbg | 5.3.4-1 | - +- i386 | libchise-dev | 0.3.0-2+b1 | - +- i386 | libchise1 | 0.3.0-2+b1 | - +- i386 | libchm-bin | 2:0.40a-2 | - +- i386 | libchm-dev | 2:0.40a-2 | - +- i386 | libchm1 | 2:0.40a-2 | - +- i386 | libcholmod1.7.1 | 1:3.4.0-3 | - +! i386 | libchromaprint-dev | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libchromaprint-tools | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libchromaprint0 | 0.6-2 | 1.1-1~bpo70+1 +- i386 | libcib1 | 1.1.7-1 | - +- i386 | libcib1-dev | 1.1.7-1 | - +- i386 | libcitadel-dev | 8.14-1 | - +- i386 | libcitadel3 | 8.14-1 | - +- i386 | libcitadel3-dbg | 8.14-1 | - +- i386 | libcitygml0 | 0.14+svn128-1+3p0p1+4 | - +- i386 | libcitygml0-bin | 0.14+svn128-1+3p0p1+4 | - +- i386 | libcitygml0-dev | 0.14+svn128-1+3p0p1+4 | - +- i386 | libck-connector-dev | 0.4.5-3.1 | - +- i386 | libck-connector0 | 0.4.5-3.1 | - +- i386 | libckit-smlnj | 110.74-2 | - +- i386 | libckyapplet1 | 1.1.0-12 | - +- i386 | libckyapplet1-dev | 1.1.0-12 | - +- i386 | libclalsadrv2 | 2.0.0-3 | - +- i386 | libclam-dev | 1.4.0-5.1 | - +- i386 | libclam-qtmonitors-dev | 1.4.0-3.1 | - +- i386 | libclam-qtmonitors1.4 | 1.4.0-3.1 | - +- i386 | libclam1.4 | 1.4.0-5.1 | - +- i386 | libclamav-dev | 0.97.8+dfsg-1 | - +- i386 | libclamav6 | 0.97.8+dfsg-1 | - +- i386 | libclanapp-1.0 | 1.0~svn3827-3 | - +- i386 | libclang-common-dev | 1:3.0-6.2 | - +- i386 | libclang-dev | 1:3.0-6.2 | - +- i386 | libclang1 | 1:3.0-6.2 | - +- i386 | libclanlib-dev | 1.0~svn3827-3 | - +- i386 | libclansdl-1.0 | 1.0~svn3827-3 | - +- i386 | libclass-c3-xs-perl | 0.13-1+b2 | - +- i386 | libclass-date-perl | 1.1.10-1+b2 | - +- i386 | libclass-load-xs-perl | 0.04-1 | - +- i386 | libclass-methodmaker-perl | 2.18-1+b1 | - +- i386 | libclass-xsaccessor-perl | 1.13-1 | - +- i386 | libclassad-dev | 7.8.2~dfsg.1-1+deb7u1 | - +- i386 | libclassad3 | 7.8.2~dfsg.1-1+deb7u1 | - +- i386 | libclaw-application-dev | 1.7.0-3 | - +- i386 | libclaw-application1 | 1.7.0-3 | - +- i386 | libclaw-configuration-file-dev | 1.7.0-3 | - +- i386 | libclaw-configuration-file1 | 1.7.0-3 | - +- i386 | libclaw-dev | 1.7.0-3 | - +- i386 | libclaw-dynamic-library-dev | 1.7.0-3 | - +- i386 | libclaw-dynamic-library1 | 1.7.0-3 | - +- i386 | libclaw-graphic-dev | 1.7.0-3 | - +- i386 | libclaw-graphic1 | 1.7.0-3 | - +- i386 | libclaw-logger-dev | 1.7.0-3 | - +- i386 | libclaw-logger1 | 1.7.0-3 | - +- i386 | libclaw-net-dev | 1.7.0-3 | - +- i386 | libclaw-net1 | 1.7.0-3 | - +- i386 | libclaw-tween-dev | 1.7.0-3 | - +- i386 | libclaw-tween1 | 1.7.0-3 | - +! i386 | libclaws-mail-dev | 3.8.1-2 | 3.9.3-1~bpo70+1 +- i386 | libclearsilver-perl | 0.10.5-1.3 | - +- i386 | libclhep-dev | 2.1.2.3-1 | - +- i386 | libclhep2.1 | 2.1.2.3-1 | - +- i386 | libcli-dev | 1.9.6-1 | - +- i386 | libcli1.9 | 1.9.6-1 | - +- i386 | libclinica0 | 0.2.1~dfsg-1 | - +- i386 | libclippoly-dev | 0.11-3 | - +- i386 | libclippoly0 | 0.11-3 | - +- i386 | libclips | 6.24-3 | - +- i386 | libclips-dev | 6.24-3 | - +- i386 | libcliquer-dev | 1.21-1 | - +- i386 | libcliquer1 | 1.21-1 | - +- i386 | libcln-dev | 1.3.2-1.2 | - +- i386 | libcln6 | 1.3.2-1.2 | - +- i386 | libclone-fast-perl | 0.96-1 | - +- i386 | libclone-perl | 0.31-1+b2 | - +- i386 | libcloog-isl-dev | 0.17.0-3 | - +- i386 | libcloog-isl3 | 0.17.0-3 | - +- i386 | libcloog-ppl-dev | 0.15.11-4 | - +- i386 | libcloog-ppl0 | 0.15.11-4 | - +- i386 | libclthreads-dev | 2.4.0-4 | - +- i386 | libclthreads2 | 2.4.0-4 | - +- i386 | libclucene-dev | 0.9.21b-2+b1 | - +- i386 | libclucene0ldbl | 0.9.21b-2+b1 | - +- i386 | libclustalo-dev | 1.1.0-1 | - +- i386 | libclutter-1.0-0 | 1.10.8-2 | - +- i386 | libclutter-1.0-dbg | 1.10.8-2 | - +- i386 | libclutter-1.0-dev | 1.10.8-2 | - +- i386 | libclutter-gst-1.0-0 | 1.5.4-1+build0 | - +- i386 | libclutter-gst-1.0-dbg | 1.5.4-1+build0 | - +- i386 | libclutter-gst-dev | 1.5.4-1+build0 | - +- i386 | libclutter-gtk-1.0-0 | 1.2.0-2 | - +- i386 | libclutter-gtk-1.0-dbg | 1.2.0-2 | - +- i386 | libclutter-gtk-1.0-dev | 1.2.0-2 | - +- i386 | libclutter-imcontext-0.1-0 | 0.1.4-3 | - +- i386 | libclutter-imcontext-0.1-0-dbg | 0.1.4-3 | - +- i386 | libclutter-imcontext-0.1-bin | 0.1.4-3 | - +- i386 | libclutter-imcontext-0.1-dev | 0.1.4-3 | - +- i386 | libclutter-perl | 1.110-1 | - +- i386 | libcluttergesture-0.0.2-0 | 0.0.2.1-7 | - +- i386 | libcluttergesture-0.0.2-0-dbg | 0.0.2.1-7 | - +- i386 | libcluttergesture-dev | 0.0.2.1-7 | - +- i386 | libclxclient-dev | 3.6.1-6 | - +- i386 | libclxclient3 | 3.6.1-6 | - +- i386 | libcman-dev | 3.0.12-3.2+deb7u2 | - +- i386 | libcman3 | 3.0.12-3.2+deb7u2 | - +- i386 | libcminpack-dev | 1.2.2-1 | - +- i386 | libcminpack1.0.90 | 1.2.2-1 | - +- i386 | libcmis-0.2-0 | 0.1.0-1+b1 | - +- i386 | libcmis-dev | 0.1.0-1+b1 | - +- i386 | libcml-smlnj | 110.74-2 | - +- i386 | libcmlutil-smlnj | 110.74-2 | - +- i386 | libcmor-dev | 2.8.0-2+b1 | - +- i386 | libcmor2 | 2.8.0-2+b1 | - +- i386 | libcmph-dev | 0.9-1 | - +- i386 | libcmph-tools | 0.9-1 | - +- i386 | libcmph0 | 0.9-1 | - +- i386 | libcneartree-dev | 3.1.1-1 | - +- i386 | libcneartree5 | 3.1.1-1 | - +- i386 | libcnf-dev | 4.0-2 | - +- i386 | libcob1 | 1.1-1 | - +- i386 | libcob1-dev | 1.1-1 | - +! i386 | libcodeblocks0 | 10.05-2.1 | 13.12-1~bpo70+1 +- i386 | libcogl-dev | 1.10.2-7 | - +- i386 | libcogl-pango-dev | 1.10.2-7 | - +- i386 | libcogl-pango0 | 1.10.2-7 | - +- i386 | libcogl-pango0-dbg | 1.10.2-7 | - +- i386 | libcogl9 | 1.10.2-7 | - +- i386 | libcogl9-dbg | 1.10.2-7 | - +- i386 | libcoin60 | 3.1.3-2.2 | - +- i386 | libcoin60-dev | 3.1.3-2.2 | - ++ i386 | libcoin80 | - | 3.1.4~abc9f50-3~bpo70+1 ++ i386 | libcoin80-dev | - | 3.1.4~abc9f50-3~bpo70+1 +- i386 | libcojets2-dev | 20061220+dfsg3-2 | - +- i386 | libcojets2-gfortran | 20061220+dfsg3-2 | - +- i386 | libcolamd2.7.1 | 1:3.4.0-3 | - +- i386 | libcollectdclient-dev | 5.1.0-3 | - +- i386 | libcollectdclient0 | 5.1.0-3 | - +- i386 | libcollection-dev | 0.1.3-2 | - +- i386 | libcollection2 | 0.1.3-2 | - +- i386 | libcolorblind-dev | 0.0.1-1 | - +- i386 | libcolorblind0 | 0.0.1-1 | - +- i386 | libcolord-dev | 0.1.21-1 | - +- i386 | libcolord-gtk-dev | 0.1.21-1 | - +- i386 | libcolord-gtk1 | 0.1.21-1 | - +- i386 | libcolord1 | 0.1.21-1 | - +- i386 | libcolorhug-dev | 0.1.10-1 | - +- i386 | libcolorhug1 | 0.1.10-1 | - +- i386 | libcomedi-dev | 0.10.0-3 | - +- i386 | libcomedi0 | 0.10.0-3 | - +- i386 | libcomerr2 | 1.42.5-1.1 | - +- i386 | libcomerr2-dbg | 1.42.5-1.1 | - +- i386 | libcommoncpp2-dbg | 1.8.1-5 | - +- i386 | libcommoncpp2-dev | 1.8.1-5 | - +- i386 | libcompfaceg1 | 1:1.5.2-5 | - +- i386 | libcompfaceg1-dev | 1:1.5.2-5 | - +- i386 | libcompress-bzip2-perl | 2.09-2+b2 | - +- i386 | libcompress-raw-bzip2-perl | 2.052-1 | - +- i386 | libcompress-raw-zlib-perl | 2.052-1 | - +- i386 | libconcord-dev | 0.24-1.1 | - +- i386 | libconcord2 | 0.24-1.1 | - +- i386 | libconfdb-dev | 1.4.2-3 | - +- i386 | libconfdb4 | 1.4.2-3 | - +- i386 | libconfig++-dbg | 1.4.8-5 | - +- i386 | libconfig++-dev | 1.4.8-5 | - +- i386 | libconfig++8-dev | 1.4.8-5 | - +- i386 | libconfig++9 | 1.4.8-5 | - +- i386 | libconfig-augeas-perl | 0.903-1 | - +- i386 | libconfig-dbg | 1.4.8-5 | - +- i386 | libconfig-dev | 1.4.8-5 | - +- i386 | libconfig-file-ocaml-dev | 1.1-1 | - +- i386 | libconfig8-dev | 1.4.8-5 | - +- i386 | libconfig9 | 1.4.8-5 | - +- i386 | libconfuse-dev | 2.7-4 | - +- i386 | libconfuse0 | 2.7-4 | - +- i386 | libconsole | 1:0.2.3dbs-70 | - +- i386 | libcontactsdb-dev | 0.5-8 | - +- i386 | libcontactsdb0 | 0.5-8 | - +- i386 | libcontactsdb0-dbg | 0.5-8 | - +- i386 | libconvert-binary-c-perl | 0.76-1+b2 | - +- i386 | libconvert-uulib-perl | 1:1.4~dfsg-1+b1 | - +- i386 | libcoq-ocaml | 8.3.pl4+dfsg-2 | - +- i386 | libcoq-ocaml-dev | 8.3.pl4+dfsg-2 | - +- i386 | libcore-ocaml | 107.01-5 | - +- i386 | libcore-ocaml-dev | 107.01-5 | - +- i386 | libcorelinux-dev | 0.4.32-7.3 | - +- i386 | libcorelinuxc2a | 0.4.32-7.3 | - +- i386 | libcoro-perl | 6.080-3 | - +- i386 | libcoroipcc-dev | 1.4.2-3 | - +- i386 | libcoroipcc4 | 1.4.2-3 | - +- i386 | libcoroipcs-dev | 1.4.2-3 | - +- i386 | libcoroipcs4 | 1.4.2-3 | - +- i386 | libcos4-1 | 4.1.6-2 | - +- i386 | libcos4-1-dbg | 4.1.6-2 | - +- i386 | libcos4-dev | 4.1.6-2 | - +- i386 | libcothreads-ocaml-dev | 0.10-3+b3 | - +- i386 | libcoyotl-3.1-4 | 3.1.0-5 | - +- i386 | libcoyotl-dev | 3.1.0-5 | - +- i386 | libcpg-dev | 1.4.2-3 | - +- i386 | libcpg4 | 1.4.2-3 | - +- i386 | libcpl-dev | 6.1.1-2 | - +- i386 | libcplcore20 | 6.1.1-2 | - +- i386 | libcpldfs20 | 6.1.1-2 | - +- i386 | libcpldrs20 | 6.1.1-2 | - +- i386 | libcplui20 | 6.1.1-2 | - +- i386 | libcppcutter-dev | 1.1.7-1.2 | - +- i386 | libcppcutter0 | 1.1.7-1.2 | - +- i386 | libcppunit-1.12-1 | 1.12.1-4 | - +- i386 | libcppunit-dev | 1.12.1-4 | - +- i386 | libcppunit-subunit-dev | 0.0.8+bzr176-1 | - +- i386 | libcppunit-subunit0 | 0.0.8+bzr176-1 | - +- i386 | libcpputest-dev | 3.1-2 | - +- i386 | libcpufreq-dev | 008-1 | - +- i386 | libcpufreq0 | 008-1 | - +- i386 | libcpuset-dev | 1.0-3 | - +- i386 | libcpuset1 | 1.0-3 | - +- i386 | libcqrlib2 | 1.1.2-1 | - +- i386 | libcqrlib2-dev | 1.1.2-1 | - +- i386 | libcr-dbg | 0.8.5-2 | - +- i386 | libcr-dev | 0.8.5-2 | - +- i386 | libcr0 | 0.8.5-2 | - +- i386 | libcrack2 | 2.8.19-3 | - +- i386 | libcrack2-dev | 2.8.19-3 | - +- i386 | libcreal-ocaml-dev | 0.7-6+b3 | - +- i386 | libcrmcluster1 | 1.1.7-1 | - +- i386 | libcrmcluster1-dev | 1.1.7-1 | - +- i386 | libcrmcommon2 | 1.1.7-1 | - +- i386 | libcrmcommon2-dev | 1.1.7-1 | - +- i386 | libcroco-tools | 0.6.6-2 | - +- i386 | libcroco3 | 0.6.6-2 | - +- i386 | libcroco3-dev | 0.6.6-2 | - +- i386 | libcry-ocaml-dev | 0.2.2-1+b1 | - +- i386 | libcrypt-blowfish-perl | 2.12-1+b2 | - +- i386 | libcrypt-cast5-perl | 0.05-1 | - +- i386 | libcrypt-des-perl | 2.05-2+b3 | - +- i386 | libcrypt-dh-gmp-perl | 0.00010-1 | - +- i386 | libcrypt-eksblowfish-perl | 0.008-1+b2 | - +- i386 | libcrypt-gcrypt-perl | 1.25-1+b1 | - +- i386 | libcrypt-mysql-perl | 0.04-4+b1 | - +- i386 | libcrypt-openssl-bignum-perl | 0.04-3 | - +- i386 | libcrypt-openssl-dsa-perl | 0.13-6 | - +- i386 | libcrypt-openssl-random-perl | 0.04-1+b4 | - +- i386 | libcrypt-openssl-rsa-perl | 0.28-1 | - +- i386 | libcrypt-openssl-x509-perl | 1.8.2-1+b1 | - +- i386 | libcrypt-rijndael-perl | 1.08-1+b2 | - +- i386 | libcrypt-smime-perl | 0.10-1+b1 | - +- i386 | libcrypt-ssleay-perl | 0.58-1 | - +- i386 | libcrypt-twofish-perl | 2.12-1+b2 | - +- i386 | libcrypt-unixcrypt-xs-perl | 0.08-1+b3 | - +- i386 | libcryptgps-ocaml-dev | 0.2.1-7+b3 | - +- i386 | libcrypto++-dev | 5.6.1-6 | - +- i386 | libcrypto++-utils | 5.6.1-6 | - +- i386 | libcrypto++9 | 5.6.1-6 | - +- i386 | libcrypto++9-dbg | 5.6.1-6 | - +- i386 | libcryptokit-ocaml | 1.5-1 | - +- i386 | libcryptokit-ocaml-dev | 1.5-1 | - +- i386 | libcryptsetup-dev | 2:1.4.3-4 | - +- i386 | libcryptsetup4 | 2:1.4.3-4 | - +- i386 | libcryptui-dev | 3.2.2-1 | - +- i386 | libcryptui0a | 3.2.2-1 | - +- i386 | libcrystalhd-dev | 1:0.0~git20110715.fdd2f19-9 | - +- i386 | libcrystalhd3 | 1:0.0~git20110715.fdd2f19-9 | - +- i386 | libcsfml-audio1.6 | 1.6-1 | - +- i386 | libcsfml-dev | 1.6-1 | - +- i386 | libcsfml-graphics1.6 | 1.6-1 | - +- i386 | libcsfml-network1.6 | 1.6-1 | - +- i386 | libcsfml-system1.6 | 1.6-1 | - +- i386 | libcsfml-window1.6 | 1.6-1 | - +- i386 | libcsfml1.6-dbg | 1.6-1 | - +- i386 | libcsiro0 | 5.9.9-5 | - +- i386 | libcsnd-java | 1:5.17.11~dfsg-3 | - +- i386 | libcsnd5.2 | 1:5.17.11~dfsg-3 | - +- i386 | libcsoap-dev | 1.1.0-17.1 | - +- i386 | libcsoap1 | 1.1.0-17.1 | - +- i386 | libcsoap1-dbg | 1.1.0-17.1 | - +- i386 | libcsound64-5.2 | 1:5.17.11~dfsg-3 | - +- i386 | libcsoundac5.2 | 1:5.17.11~dfsg-3 | - +- i386 | libcsparse2.2.3 | 1:3.4.0-3 | - +- i386 | libcss-minifier-xs-perl | 0.07-1+b2 | - +- i386 | libcss-parser-pp0 | 0.85-2 | - +- i386 | libcss-parser0 | 0.85-2 | - +- i386 | libcsv-ocaml-dev | 1.2.2-1+b1 | - ++ i386 | libcsvimp-dev | - | 0.4.7-2~bpo70+1 +- i386 | libct4 | 0.91-2+deb7u1 | - +- i386 | libctapimkt0 | 1.0.1-1.1 | - +- i386 | libctapimkt0-dev | 1.0.1-1.1 | - +- i386 | libctdb-dev | 1.12+git20120201-4 | - +- i386 | libctemplate-dev | 2.2-3 | - +- i386 | libctemplate2 | 2.2-3 | - +- i386 | libctl-dev | 3.1.0-5 | - +- i386 | libctl3 | 3.1.0-5 | - +- i386 | libctpl-dev | 0.3.3.dfsg-2 | - +- i386 | libctpl2 | 0.3.3.dfsg-2 | - +- i386 | libcuba3 | 3.0+20111124-2 | - +- i386 | libcuba3-dbg | 3.0+20111124-2 | - +- i386 | libcuba3-dev | 3.0+20111124-2 | - ++ i386 | libcublas5.0 | - | 5.0.35-8~bpo70+1 ++ i386 | libcuda1 | - | 319.82-1~bpo70+1 ++ i386 | libcuda1-i386 | - | 319.82-1~bpo70+1 ++ i386 | libcudart5.0 | - | 5.0.35-8~bpo70+1 +- i386 | libcudf-dev | 0.6.2-1 | - +- i386 | libcudf-ocaml-dev | 0.6.2-1 | - +- i386 | libcue-dev | 1.4.0-1 | - +- i386 | libcue1 | 1.4.0-1 | - ++ i386 | libcufft5.0 | - | 5.0.35-8~bpo70+1 ++ i386 | libcuinj32-5.0 | - | 5.0.35-8~bpo70+1 +- i386 | libcunit1 | 2.1-0.dfsg-10 | - +- i386 | libcunit1-dev | 2.1-0.dfsg-10 | - +- i386 | libcunit1-ncurses | 2.1-0.dfsg-10 | - +- i386 | libcunit1-ncurses-dev | 2.1-0.dfsg-10 | - +- i386 | libcups2 | 1.5.3-5+deb7u1 | - +- i386 | libcups2-dev | 1.5.3-5+deb7u1 | - +- i386 | libcupscgi1 | 1.5.3-5+deb7u1 | - +- i386 | libcupscgi1-dev | 1.5.3-5+deb7u1 | - +- i386 | libcupsdriver1 | 1.5.3-5+deb7u1 | - +- i386 | libcupsdriver1-dev | 1.5.3-5+deb7u1 | - +- i386 | libcupsfilters-dev | 1.0.18-2.1 | - +- i386 | libcupsfilters1 | 1.0.18-2.1 | - +- i386 | libcupsimage2 | 1.5.3-5+deb7u1 | - +- i386 | libcupsimage2-dev | 1.5.3-5+deb7u1 | - +- i386 | libcupsmime1 | 1.5.3-5+deb7u1 | - +- i386 | libcupsmime1-dev | 1.5.3-5+deb7u1 | - +- i386 | libcupsppdc1 | 1.5.3-5+deb7u1 | - +- i386 | libcupsppdc1-dev | 1.5.3-5+deb7u1 | - +- i386 | libcupt2-0 | 2.5.9 | - +- i386 | libcupt2-0-downloadmethod-curl | 2.5.9 | - +- i386 | libcupt2-0-downloadmethod-wget | 2.5.9 | - +- i386 | libcupt2-dev | 2.5.9 | - ++ i386 | libcupti-dev | - | 5.0.35-8~bpo70+1 ++ i386 | libcupti5.0 | - | 5.0.35-8~bpo70+1 ++ i386 | libcurand5.0 | - | 5.0.35-8~bpo70+1 +- i386 | libcurl-ocaml | 0.5.3-2+b1 | - +- i386 | libcurl-ocaml-dev | 0.5.3-2+b1 | - +- i386 | libcurl3 | 7.26.0-1+wheezy8 | - +- i386 | libcurl3-dbg | 7.26.0-1+wheezy8 | - +- i386 | libcurl3-gnutls | 7.26.0-1+wheezy8 | - +- i386 | libcurl3-nss | 7.26.0-1+wheezy8 | - +- i386 | libcurl4-gnutls-dev | 7.26.0-1+wheezy8 | - +- i386 | libcurl4-nss-dev | 7.26.0-1+wheezy8 | - +- i386 | libcurl4-openssl-dev | 7.26.0-1+wheezy8 | - +- i386 | libcurses-ocaml | 1.0.3-2 | - +- i386 | libcurses-ocaml-dev | 1.0.3-2 | - +- i386 | libcurses-perl | 1.28-1+b2 | - ++ i386 | libcusparse5.0 | - | 5.0.35-8~bpo70+1 +- i386 | libcutter-dev | 1.1.7-1.2 | - +- i386 | libcutter0 | 1.1.7-1.2 | - +- i386 | libcv-dev | 2.3.1-11 | - +- i386 | libcv2.3 | 2.3.1-11 | - +- i386 | libcvaux-dev | 2.3.1-11 | - +- i386 | libcvaux2.3 | 2.3.1-11 | - +- i386 | libcvc3-5 | 2.4.1-4 | - +- i386 | libcvc3-5-jni | 2.4.1-4 | - +- i386 | libcvc3-dev | 2.4.1-4 | - +- i386 | libcvector2 | 1.0.3-1 | - +- i386 | libcvector2-dev | 1.0.3-1 | - +- i386 | libcvm1 | 0.96-1+b1 | - +- i386 | libcvm1-dev | 0.96-1+b1 | - +- i386 | libcw3 | 3.0.2-1 | - +- i386 | libcw3-dev | 3.0.2-1 | - +- i386 | libcwidget-dev | 0.5.16-3.4 | - +- i386 | libcwidget3 | 0.5.16-3.4 | - +- i386 | libcwidget3-dbg | 0.5.16-3.4 | - +- i386 | libcwiid-dev | 0.6.00+svn201-3+b1 | - +- i386 | libcwiid1 | 0.6.00+svn201-3+b1 | - +- i386 | libcwnn-dev | 1.1.1~a021+cvs20100325-6 | - +- i386 | libcwnn0 | 1.1.1~a021+cvs20100325-6 | - +- i386 | libcxgb3-1 | 1.3.1-1 | - +- i386 | libcxgb3-1-dbg | 1.3.1-1 | - +- i386 | libcxgb3-dev | 1.3.1-1 | - +- i386 | libcxsparse2.2.3 | 1:3.4.0-3 | - +- i386 | libcxxtools-dev | 2.1.1-1 | - +- i386 | libcxxtools8 | 2.1.1-1 | - +- i386 | libcyrus-imap-perl24 | 2.4.16-4+deb7u1 | - +- i386 | libdacs-dev | 1.4.27b-2 | - +- i386 | libdacs1 | 1.4.27b-2 | - +- i386 | libdaemon-dev | 0.14-2 | - +- i386 | libdaemon0 | 0.14-2 | - +- i386 | libdaemon0-dbg | 0.14-2 | - +- i386 | libdancer-xml0 | 0.8.2.1-3 | - +- i386 | libdancer-xml0-dev | 0.8.2.1-3 | - +- i386 | libdap-bin | 3.11.1-11 | - +- i386 | libdap-dev | 3.11.1-11 | - +- i386 | libdap11 | 3.11.1-11 | - +- i386 | libdapclient3 | 3.11.1-11 | - +- i386 | libdapl-dev | 2.0.19-1.1 | - +- i386 | libdapl2 | 2.0.19-1.1 | - +- i386 | libdapserver7 | 3.11.1-11 | - +- i386 | libdaq-dev | 0.6.2-2 | - +- i386 | libdaq0 | 0.6.2-2 | - +- i386 | libdar-dev | 2.4.5.debian.1-1 | - +- i386 | libdar64-5 | 2.4.5.debian.1-1 | - +- i386 | libdata-alias-perl | 1.16-1 | - +- i386 | libdata-clone-perl | 0.003-1 | - +- i386 | libdata-dump-streamer-perl | 2.34-1 | - +- i386 | libdata-dumpxml-perl | 1.06-1 | - +- i386 | libdata-peek-perl | 0.38-1 | - +- i386 | libdata-streamdeserializer-perl | 0.06-1+b2 | - +- i386 | libdata-streamserializer-perl | 0.07-1+b2 | - +- i386 | libdata-structure-util-perl | 0.15-2+b2 | - +- i386 | libdata-util-perl | 0.59-1 | - +- i386 | libdata-uuid-libuuid-perl | 0.05-1+b2 | - +- i386 | libdate-calc-xs-perl | 6.3-1 | - +- i386 | libdate-pcalc-perl | 6.1-1+b2 | - +- i386 | libdate-simple-perl | 3.03.03-1+b3 | - +- i386 | libdatetime-perl | 2:0.7500-1 | - +- i386 | libdatrie-dev | 0.2.5-3 | - +- i386 | libdatrie1 | 0.2.5-3 | - +- i386 | libdatrie1-bin | 0.2.5-3 | - +- i386 | libdb++-dev | 5.1.6 | - +- i386 | libdb-dev | 5.1.6 | - +- i386 | libdb-java-dev | 5.1.6 | - +- i386 | libdb-sql-dev | 5.1.6 | - +- i386 | libdb1-compat | 2.1.3-16 | - +- i386 | libdb5.1 | 5.1.29-5 | - +- i386 | libdb5.1++ | 5.1.29-5 | - +- i386 | libdb5.1++-dev | 5.1.29-5 | - +- i386 | libdb5.1-dbg | 5.1.29-5 | - +- i386 | libdb5.1-dev | 5.1.29-5 | - +- i386 | libdb5.1-java-dev | 5.1.29-5 | - +- i386 | libdb5.1-java-gcj | 5.1.29-5 | - +- i386 | libdb5.1-java-jni | 5.1.29-5 | - +- i386 | libdb5.1-sql | 5.1.29-5 | - +- i386 | libdb5.1-sql-dev | 5.1.29-5 | - +- i386 | libdb5.1-stl | 5.1.29-5 | - +- i386 | libdb5.1-stl-dev | 5.1.29-5 | - +- i386 | libdb5.1-tcl | 5.1.29-5 | - +- i386 | libdballe-dev | 5.18-1 | - +- i386 | libdballe5 | 5.18-1 | - +- i386 | libdballef-dev | 5.18-1 | - +- i386 | libdballef4 | 5.18-1 | - +- i386 | libdbaudiolib0 | 0.9.8-6.2 | - +- i386 | libdbaudiolib0-dev | 0.9.8-6.2 | - +- i386 | libdbd-firebird-perl | 0.91-2+b1 | - +- i386 | libdbd-freetds | 0.8.3-1+s-5+b1 | - +- i386 | libdbd-mysql | 0.8.3-1+s-5+b1 | - +- i386 | libdbd-mysql-perl | 4.021-1+b1 | - +- i386 | libdbd-odbc-perl | 1.37-1 | - +- i386 | libdbd-pg-perl | 2.19.2-2 | - +- i386 | libdbd-pgsql | 0.8.3-1+s-5+b1 | - +- i386 | libdbd-sqlite | 0.8.3-1+s-5+b1 | - +- i386 | libdbd-sqlite2-perl | 2:0.33-9+b2 | - +- i386 | libdbd-sqlite3 | 0.8.3-1+s-5+b1 | - +- i386 | libdbd-sqlite3-perl | 1.37-1 | - +- i386 | libdbd-sybase-perl | 1.14-1 | - +- i386 | libdbi-dev | 0.8.4-6 | - +- i386 | libdbi-perl | 1.622-1 | - +- i386 | libdbi1 | 0.8.4-6 | - +- i386 | libdbus-1-3 | 1.6.8-1+deb7u1 | - +- i386 | libdbus-1-dev | 1.6.8-1+deb7u1 | - +- i386 | libdbus-c++-1-0 | 0.9.0-6 | - +- i386 | libdbus-c++-bin | 0.9.0-6 | - +- i386 | libdbus-c++-dbg | 0.9.0-6 | - +- i386 | libdbus-c++-dev | 0.9.0-6 | - +- i386 | libdbus-glib-1-2 | 0.100.2-1 | - +- i386 | libdbus-glib-1-2-dbg | 0.100.2-1 | - +- i386 | libdbus-glib-1-dev | 0.100.2-1 | - +- i386 | libdbus-ocaml | 0.29-1+b3 | - +- i386 | libdbus-ocaml-dev | 0.29-1+b3 | - +- i386 | libdbusada0.2 | 0.2-2 | - +- i386 | libdbusada0.2-dbg | 0.2-2 | - +- i386 | libdbusada0.2-dev | 0.2-2 | - +- i386 | libdbusmenu-glib-dev | 0.6.2-1 | - +- i386 | libdbusmenu-glib4 | 0.6.2-1 | - +- i386 | libdbusmenu-gtk-dev | 0.6.2-1 | - +- i386 | libdbusmenu-gtk3-4 | 0.6.2-1 | - +- i386 | libdbusmenu-gtk3-dev | 0.6.2-1 | - +- i386 | libdbusmenu-gtk4 | 0.6.2-1 | - +- i386 | libdbusmenu-jsonloader-dev | 0.6.2-1 | - +- i386 | libdbusmenu-jsonloader4 | 0.6.2-1 | - +- i386 | libdbusmenu-qt-dev | 0.9.0-1 | - +- i386 | libdbusmenu-qt2 | 0.9.0-1 | - +- i386 | libdbusmenu-tools | 0.6.2-1 | - +- i386 | libdc-dev | 0.3.24~svn3121-2 | - +- i386 | libdc1394-22 | 2.2.0-2 | - +- i386 | libdc1394-22-dbg | 2.2.0-2 | - +- i386 | libdc1394-22-dev | 2.2.0-2 | - +- i386 | libdc1394-utils | 2.2.0-2 | - +- i386 | libdc5 | 0.3.24~svn3121-2 | - +- i386 | libdca-dev | 0.0.5-5 | - +- i386 | libdca-utils | 0.0.5-5 | - +- i386 | libdca0 | 0.0.5-5 | - +- i386 | libdcap1 | 2.47.6-2 | - +- i386 | libdcerpc-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libdcerpc-server-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libdcerpc-server0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libdcerpc0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libdcmtk2 | 3.6.0-12 | - +- i386 | libdcmtk2-dev | 3.6.0-12 | - +- i386 | libdconf-dbg | 0.12.1-3 | - +- i386 | libdconf-dbus-1-0 | 0.12.1-3 | - +- i386 | libdconf-dbus-1-dbg | 0.12.1-3 | - +- i386 | libdconf-dbus-1-dev | 0.12.1-3 | - +- i386 | libdconf-dev | 0.12.1-3 | - +- i386 | libdconf0 | 0.12.1-3 | - +- i386 | libddccontrol-dev | 0.4.2-10 | - +- i386 | libddccontrol0 | 0.4.2-10 | - +- i386 | libdds-dev | 2.1.2+ddd105-1 | - +- i386 | libdebconf-kde-dev | 0.2-2 | - +- i386 | libdebconf-kde0 | 0.2-2 | - +- i386 | libdebconfclient0 | 0.182 | - +- i386 | libdebconfclient0-dev | 0.182 | - +- i386 | libdebian-installer-extra4 | 0.87 | - +- i386 | libdebian-installer4 | 0.87 | - +- i386 | libdebian-installer4-dev | 0.87 | - +- i386 | libdebug0 | 0.4.4-1.1 | - +- i386 | libdebug0-dev | 0.4.4-1.1 | - +- i386 | libdeclarative-connectivity | 1.2.0-3 | - +- i386 | libdeclarative-contacts | 1.2.0-3 | - +- i386 | libdeclarative-feedback | 1.2.0-3 | - +- i386 | libdeclarative-gallery | 1.2.0-3 | - +- i386 | libdeclarative-location | 1.2.0-3 | - +- i386 | libdeclarative-messaging | 1.2.0-3 | - +- i386 | libdeclarative-multimedia | 1.2.0-3 | - +- i386 | libdeclarative-organizer | 1.2.0-3 | - +- i386 | libdeclarative-publishsubscribe | 1.2.0-3 | - +- i386 | libdeclarative-sensors | 1.2.0-3 | - +- i386 | libdeclarative-serviceframework | 1.2.0-3 | - +- i386 | libdeclarative-systeminfo | 1.2.0-3 | - +- i386 | libdecodeqr-dev | 0.9.3-6.2 | - +- i386 | libdecodeqr-examples | 0.9.3-6.2 | - +- i386 | libdecodeqr0 | 0.9.3-6.2 | - +- i386 | libdee-1.0-4 | 1.0.10-3 | - +- i386 | libdee-1.0-4-dbg | 1.0.10-3 | - +- i386 | libdee-dev | 1.0.10-3 | - +- i386 | libderiving-ocaml | 0.1.1a-3+b1 | - +- i386 | libderiving-ocaml-dev | 0.1.1a-3+b1 | - +- i386 | libderiving-ocsigen-ocaml | 0.3c-1 | - +- i386 | libderiving-ocsigen-ocaml-dev | 0.3c-1 | - +- i386 | libdesktop-agnostic-bin | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-cfg-gconf | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-cfg-keyfile | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-data | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-dev | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-fdo-gio | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-fdo-glib | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-fdo-gnome | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic-vfs-gio | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic0 | 0.3.92+dfsg-1 | - +- i386 | libdesktop-agnostic0-dbg | 0.3.92+dfsg-1 | - +- i386 | libdessert0.87 | 0.87.2-1 | - +- i386 | libdessert0.87-dev | 0.87.2-1 | - +- i386 | libdevel-beginlift-perl | 0.001003-1 | - +- i386 | libdevel-bt-perl | 0.05-1+b2 | - +- i386 | libdevel-caller-perl | 2.05-1+b2 | - +- i386 | libdevel-cover-perl | 0.89-1 | - +- i386 | libdevel-declare-perl | 0.006011-1 | - +- i386 | libdevel-dprof-perl | 20110802.00-1 | - +- i386 | libdevel-findref-perl | 1.422-1+b2 | - +- i386 | libdevel-leak-perl | 0.03-2+b1 | - +- i386 | libdevel-lexalias-perl | 0.04-3+b1 | - +- i386 | libdevel-nytprof-perl | 4.06-1+b2 | - +- i386 | libdevel-pragma-perl | 0.54-1 | - +- i386 | libdevel-refcount-perl | 0.09-1+b2 | - +- i386 | libdevel-size-perl | 0.77-1+b1 | - +- i386 | libdevhelp-3-0 | 3.4.1-1 | - +- i386 | libdevhelp-dev | 3.4.1-1 | - +- i386 | libdevice-cdio-perl | 0.3.0-1 | - +- i386 | libdevice-serialport-perl | 1.04-2+b3 | - +- i386 | libdevice-usb-pcsensor-hidtemper-perl | 0.0201-2 | - +- i386 | libdevice-usb-perl | 0.35-2+b1 | - +- i386 | libdevil-dev | 1.7.8-6.1+b1 | - +- i386 | libdevil1c2 | 1.7.8-6.1+b1 | - +- i386 | libdevmapper-dev | 2:1.02.74-8 | - +- i386 | libdevmapper-event1.02.1 | 2:1.02.74-8 | - +- i386 | libdevmapper1.02.1 | 2:1.02.74-8 | - +- i386 | libdhash-dev | 0.1.3-2 | - +- i386 | libdhash1 | 0.1.3-2 | - +- i386 | libdiagnostics-dev | 0.3.3-1.3 | - +- i386 | libdiagnostics0 | 0.3.3-1.3 | - +- i386 | libdianewcanvas2 | 0.6.10-5.4 | - +- i386 | libdianewcanvas2-dev | 0.6.10-5.4 | - +- i386 | libdico1 | 2.1-3+b2 | - +- i386 | libdieharder-dev | 3.31.1-4 | - +- i386 | libdieharder3 | 3.31.1-4 | - +- i386 | libdiet-admin2.8 | 2.8.0-1+b1 | - +- i386 | libdiet-admin2.8-dev | 2.8.0-1+b1 | - +- i386 | libdiet-client2.8 | 2.8.0-1+b1 | - +- i386 | libdiet-client2.8-dev | 2.8.0-1+b1 | - +- i386 | libdiet-dagda2.8 | 2.8.0-1+b1 | - +- i386 | libdiet-dagda2.8-dev | 2.8.0-1+b1 | - +- i386 | libdiet-sed2.8 | 2.8.0-1+b1 | - +- i386 | libdiet-sed2.8-dev | 2.8.0-1+b1 | - +- i386 | libdigest-crc-perl | 0.18-1+b1 | - +- i386 | libdigest-jhash-perl | 0.06-1+b2 | - +- i386 | libdigest-md2-perl | 2.03+dfsg-1+b2 | - +- i386 | libdigest-md4-perl | 1.5.dfsg-2+b2 | - +- i386 | libdigest-sha-perl | 5.71-2+deb7u1 | - +- i386 | libdigest-whirlpool-perl | 1.09-1+b1 | - +- i386 | libdime | 0.20030921-2 | - +- i386 | libdirac-decoder0 | 1.0.2-6 | - +- i386 | libdirac-dev | 1.0.2-6 | - +- i386 | libdirac-encoder0 | 1.0.2-6 | - +- i386 | libdirectfb-1.2-9 | 1.2.10.0-5 | - +- i386 | libdirectfb-1.2-9-dbg | 1.2.10.0-5 | - +- i386 | libdirectfb-bin | 1.2.10.0-5 | - +- i386 | libdirectfb-bin-dbg | 1.2.10.0-5 | - +- i386 | libdirectfb-dev | 1.2.10.0-5 | - +- i386 | libdirectfb-extra | 1.2.10.0-5 | - +- i386 | libdirectfb-extra-dbg | 1.2.10.0-5 | - +- i386 | libdisasm-dev | 0.23-5 | - +- i386 | libdisasm0 | 0.23-5 | - +- i386 | libdiscid0 | 0.2.2-3 | - +- i386 | libdiscid0-dev | 0.2.2-3 | - +- i386 | libdiscover-dev | 2.1.2-5.2 | - +- i386 | libdiscover2 | 2.1.2-5.2 | - +- i386 | libdispatch-dev | 0~svn197-3.1 | - +- i386 | libdispatch0 | 0~svn197-3.1 | - +- i386 | libdisplaymigration0 | 0.28-10 | - +- i386 | libdisplaymigration0-dbg | 0.28-10 | - +- i386 | libdisplaymigration0-dev | 0.28-10 | - +- i386 | libdistorm64-1 | 1.7.30-1 | - +- i386 | libdistorm64-dev | 1.7.30-1 | - +- i386 | libdivecomputer-dev | 0.1.0-3 | - +- i386 | libdivecomputer0 | 0.1.0-3 | - +- i386 | libdjconsole-dev | 0.1.3-1 | - +- i386 | libdjconsole0 | 0.1.3-1 | - +- i386 | libdjvulibre-dev | 3.5.25.3-1 | - +- i386 | libdjvulibre21 | 3.5.25.3-1 | - +- i386 | libdkim-dev | 1:1.0.21-3 | - +- i386 | libdkim1d | 1:1.0.21-3 | - +- i386 | libdkim1d-dbg | 1:1.0.21-3 | - +- i386 | libdlm-dev | 3.0.12-3.2+deb7u2 | - +- i386 | libdlm3 | 3.0.12-3.2+deb7u2 | - +- i386 | libdlmcontrol-dev | 3.0.12-3.2+deb7u2 | - +- i386 | libdlmcontrol3 | 3.0.12-3.2+deb7u2 | - +- i386 | libdlrestrictions-dev | 0.15.3 | - +- i386 | libdlrestrictions1 | 0.15.3 | - +- i386 | libdm0 | 2.2.10-1 | - +- i386 | libdm0-dev | 2.2.10-1 | - +- i386 | libdmalloc-dev | 5.5.2-5 | - +- i386 | libdmalloc5 | 5.5.2-5 | - +- i386 | libdmapsharing-3.0-2 | 2.9.15-1 | - +- i386 | libdmapsharing-3.0-dev | 2.9.15-1 | - +- i386 | libdmraid-dev | 1.0.0.rc16-4.2 | - +- i386 | libdmraid1.0.0.rc16 | 1.0.0.rc16-4.2 | - +- i386 | libdmtcpaware-dev | 1.2.5-1 | - +- i386 | libdmtcpaware1 | 1.2.5-1 | - +- i386 | libdmtx-dev | 0.7.2-2+build1 | - +- i386 | libdmtx-utils | 0.7.2-2+build1 | - +- i386 | libdmtx0a | 0.7.2-2+build1 | - +- i386 | libdmx-dev | 1:1.1.2-1+deb7u1 | - +- i386 | libdmx1 | 1:1.1.2-1+deb7u1 | - +- i386 | libdmx1-dbg | 1:1.1.2-1+deb7u1 | - +- i386 | libdnet | 2.60 | - +- i386 | libdnet-dev | 2.60 | - +- i386 | libdns88 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | libdockapp-dev | 1:0.5.0-3 | - +- i386 | libdockapp2 | 1:0.5.0-3 | - +- i386 | libdolfin1.0 | 1.0.0-7 | - +- i386 | libdolfin1.0-dbg | 1.0.0-7 | - +- i386 | libdolfin1.0-dev | 1.0.0-7 | - +- i386 | libdoodle-dev | 0.7.0-5 | - +- i386 | libdoodle1 | 0.7.0-5 | - +- i386 | libdose2-ocaml | 1.4.2-4+b3 | - +- i386 | libdose2-ocaml-dev | 1.4.2-4+b3 | - +- i386 | libdose3-ocaml | 3.0.2-3 | - +- i386 | libdose3-ocaml-dev | 3.0.2-3 | - +- i386 | libdotconf-dev | 1.0.13-3 | - +- i386 | libdotconf1.0 | 1.0.13-3 | - +- i386 | libdpkg-dev | 1.16.12 | - +- i386 | libdpm-dev | 1.8.2-1+b2 | - +- i386 | libdpm-perl | 1.8.2-1+b2 | - +- i386 | libdpm1 | 1.8.2-1+b2 | - +- i386 | libdr-tarantool-perl | 0.15-1+deb70u1 | - +- i386 | libdrawtk-dev | 2.0-2 | - +- i386 | libdrawtk0 | 2.0-2 | - +- i386 | libdrawtk0-dbg | 2.0-2 | - +- i386 | libdrizzle-dbg | 1:7.1.36-stable-1 | - +- i386 | libdrizzle4 | 1:7.1.36-stable-1 | - +- i386 | libdrizzledmessage-dev | 1:7.1.36-stable-1 | - +- i386 | libdrizzledmessage0 | 1:7.1.36-stable-1 | - +- i386 | libdrm-dev | 2.4.40-1~deb7u2 | - +- i386 | libdrm-intel1 | 2.4.40-1~deb7u2 | - +- i386 | libdrm-intel1-dbg | 2.4.40-1~deb7u2 | - +- i386 | libdrm-nouveau1a | 2.4.40-1~deb7u2 | - +- i386 | libdrm-nouveau1a-dbg | 2.4.40-1~deb7u2 | - +- i386 | libdrm-radeon1 | 2.4.40-1~deb7u2 | - +- i386 | libdrm-radeon1-dbg | 2.4.40-1~deb7u2 | - +- i386 | libdrm2 | 2.4.40-1~deb7u2 | - +- i386 | libdrm2-dbg | 2.4.40-1~deb7u2 | - +- i386 | libdrmaa-java | 6.2u5-7.1 | - +- i386 | libdrumstick-dbg | 0.5.0-3 | - +- i386 | libdrumstick-dev | 0.5.0-3 | - +- i386 | libdrumstick0 | 0.5.0-3 | - +- i386 | libdsdp-5.8gf | 5.8-9.1 | - +- i386 | libdsdp-dev | 5.8-9.1 | - +- i386 | libdshconfig1 | 0.20.13-1 | - +- i386 | libdshconfig1-dev | 0.20.13-1 | - +- i386 | libdsocksd0 | 1.1.19.dfsg-3+b3 | - +- i386 | libdspam7 | 3.10.1+dfsg-11 | - +- i386 | libdspam7-dbg | 3.10.1+dfsg-11 | - +- i386 | libdspam7-dev | 3.10.1+dfsg-11 | - +- i386 | libdspam7-drv-hash | 3.10.1+dfsg-11 | - +- i386 | libdspam7-drv-mysql | 3.10.1+dfsg-11 | - +- i386 | libdspam7-drv-pgsql | 3.10.1+dfsg-11 | - +- i386 | libdspam7-drv-sqlite3 | 3.10.1+dfsg-11 | - +- i386 | libdssi-ocaml | 0.1.0-1+b1 | - +- i386 | libdssi-ocaml-dev | 0.1.0-1+b1 | - +- i386 | libdssialsacompat-dev | 1.0.8a-1 | - +- i386 | libdssialsacompat0 | 1.0.8a-1 | - +- i386 | libdtools-ocaml-dev | 0.3.0-1 | - +- i386 | libdts-dev | 0.0.5-5 | - +- i386 | libdumb1 | 1:0.9.3-5.4 | - +- i386 | libdumb1-dev | 1:0.9.3-5.4 | - +- i386 | libdumbnet-dev | 1.12-3.1 | - +- i386 | libdumbnet1 | 1.12-3.1 | - +- i386 | libdune-common-2.2.0 | 2.2.0-1 | - +- i386 | libdune-common-dbg | 2.2.0-1 | - +- i386 | libdune-common-dev | 2.2.0-1 | - +- i386 | libdune-geometry-2.2.0 | 2.2.0-1 | - +- i386 | libdune-geometry-dbg | 2.2.0-1 | - +- i386 | libdune-geometry-dev | 2.2.0-1 | - +- i386 | libdune-grid-2.2.0 | 2.2.0-1 | - +- i386 | libdune-grid-dbg | 2.2.0-1 | - +- i386 | libdune-grid-dev | 2.2.0-1 | - +- i386 | libduo-dev | 1.8-1 | - +- i386 | libduo3 | 1.8-1 | - +- i386 | libduppy-ocaml | 0.4.2-1+b2 | - +- i386 | libduppy-ocaml-dev | 0.4.2-1+b2 | - +- i386 | libdv-bin | 1.0.0-6 | - +- i386 | libdv4 | 1.0.0-6 | - +- i386 | libdv4-dev | 1.0.0-6 | - +- i386 | libdvb-dev | 0.5.5.1-5.1 | - +- i386 | libdvbcsa-dev | 1.1.0-2 | - +- i386 | libdvbcsa1 | 1.1.0-2 | - +- i386 | libdvbpsi-dev | 0.2.2-1 | - +- i386 | libdvbpsi7 | 0.2.2-1 | - +- i386 | libdvdnav-dbg | 4.2.0+20120524-2 | - +- i386 | libdvdnav-dev | 4.2.0+20120524-2 | - +- i386 | libdvdnav4 | 4.2.0+20120524-2 | - +- i386 | libdvdread-dbg | 4.2.0+20120521-2 | - +- i386 | libdvdread-dev | 4.2.0+20120521-2 | - +- i386 | libdvdread4 | 4.2.0+20120521-2 | - +- i386 | libdw-dev | 0.152-1+wheezy1 | - +- i386 | libdw1 | 0.152-1+wheezy1 | - +- i386 | libdwarf-dev | 20120410-2 | - +- i386 | libdx4 | 1:4.4.4-4+b2 | - +- i386 | libdx4-dev | 1:4.4.4-4+b2 | - +- i386 | libdxflib-2.2.0.0 | 2.2.0.0-8 | - +- i386 | libdxflib-2.2.0.0-dbg | 2.2.0.0-8 | - +- i386 | libdxflib-dev | 2.2.0.0-8 | - +- i386 | libdynalogin-1-0 | 0.9.14-2 | - +- i386 | libdynamite-dev | 0.1.1-2 | - +- i386 | libdynamite0 | 0.1.1-2 | - +- i386 | libeasy-format-ocaml | 1.0.0-1+b2 | - +- i386 | libeasy-format-ocaml-dev | 1.0.0-1+b2 | - +- i386 | libeb16 | 4.4.3-6 | - +- i386 | libeb16-dev | 4.4.3-6 | - +- i386 | libebackend-1.2-2 | 3.4.4-3 | - +- i386 | libebackend1.2-dev | 3.4.4-3 | - +- i386 | libebml-dev | 1.2.2-2 | - +- i386 | libebml3 | 1.2.2-2 | - +- i386 | libebook-1.2-13 | 3.4.4-3 | - +- i386 | libebook-tools-perl | 0.4.9-1 | - +- i386 | libebook1.2-dev | 3.4.4-3 | - +- i386 | libecal-1.2-11 | 3.4.4-3 | - +- i386 | libecal1.2-dev | 3.4.4-3 | - +- i386 | libecasoundc-dev | 2.9.0-1 | - +- i386 | libecasoundc1 | 2.9.0-1 | - +- i386 | libechonest-dbg | 1.2.1-1 | - +- i386 | libechonest-dev | 1.2.1-1 | - +- i386 | libechonest1.2 | 1.2.1-1 | - +- i386 | libecj-java-gcj | 3.5.1-3 | - +- i386 | libecm-dev | 6.4.2-1 | - +- i386 | libecm0 | 6.4.2-1 | - +- i386 | libecore-con1 | 1.2.0-2 | - +- i386 | libecore-dbg | 1.2.0-2 | - +- i386 | libecore-dev | 1.2.0-2 | - +- i386 | libecore-evas1 | 1.2.0-2 | - +- i386 | libecore-fb1 | 1.2.0-2 | - +- i386 | libecore-file1 | 1.2.0-2 | - +- i386 | libecore-imf1 | 1.2.0-2 | - +- i386 | libecore-input1 | 1.2.0-2 | - +- i386 | libecore-ipc1 | 1.2.0-2 | - +- i386 | libecore-x1 | 1.2.0-2 | - +- i386 | libecore1 | 1.2.0-2 | - +- i386 | libecpg-compat3 | 9.1.11-0wheezy1 | - +- i386 | libecpg-dev | 9.1.11-0wheezy1 | - +- i386 | libecpg6 | 9.1.11-0wheezy1 | - +- i386 | libecryptfs-dev | 99-1 | - +- i386 | libecryptfs0 | 99-1 | - +- i386 | libedac-dev | 0.18-1 | - +- i386 | libedac1 | 0.18-1 | - +- i386 | libedac1-dbg | 0.18-1 | - +- i386 | libedata-book-1.2-13 | 3.4.4-3 | - +- i386 | libedata-book1.2-dev | 3.4.4-3 | - +- i386 | libedata-cal-1.2-15 | 3.4.4-3 | - +- i386 | libedata-cal1.2-dev | 3.4.4-3 | - +- i386 | libedataserver-1.2-16 | 3.4.4-3 | - +- i386 | libedataserver1.2-dev | 3.4.4-3 | - +- i386 | libedataserverui-3.0-1 | 3.4.4-3 | - +- i386 | libedataserverui-3.0-dev | 3.4.4-3 | - +- i386 | libedbus-dev | 1.2.0-1 | - +- i386 | libedbus1 | 1.2.0-1 | - +- i386 | libedit-dev | 2.11-20080614-5 | - +- i386 | libedit2 | 2.11-20080614-5 | - +- i386 | libeditline-dev | 1.12-6 | - +- i386 | libeditline0 | 1.12-6 | - +- i386 | libedje-bin | 1.2.0-1 | - +- i386 | libedje-dbg | 1.2.0-1 | - +- i386 | libedje-dev | 1.2.0-1 | - +- i386 | libedje1 | 1.2.0-1 | - +- i386 | libee-dev | 0.4.1-1 | - +- i386 | libee0 | 0.4.1-1 | - +- i386 | libeegdev-dev | 0.2-3 | - +- i386 | libeegdev0 | 0.2-3 | - +- i386 | libeegdev0-dbg | 0.2-3 | - +- i386 | libeet-bin | 1.6.0-1 | - +- i386 | libeet-dbg | 1.6.0-1 | - +- i386 | libeet-dev | 1.6.0-1 | - +- i386 | libeet1 | 1.6.0-1 | - +- i386 | libefreet-dev | 1.2.0-1 | - +- i386 | libefreet1 | 1.2.0-1 | - +- i386 | libegl1-mesa | 8.0.5-4+deb7u2 | - +- i386 | libegl1-mesa-dbg | 8.0.5-4+deb7u2 | - +- i386 | libegl1-mesa-dev | 8.0.5-4+deb7u2 | - +- i386 | libegl1-mesa-drivers | 8.0.5-4+deb7u2 | - +- i386 | libegl1-mesa-drivers-dbg | 8.0.5-4+deb7u2 | - +- i386 | libeigen2-dev | 2.0.17-1 | - +- i386 | libeigen3-dev | 3.1.0-1 | - +- i386 | libeina-dbg | 1.2.0-2 | - +- i386 | libeina-dev | 1.2.0-2 | - +- i386 | libeina1 | 1.2.0-2 | - ++ i386 | libeiskaltdcpp-dev | - | 2.2.9-3~bpo70+1 +! i386 | libeiskaltdcpp2.2 | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | libeiskaltdcpp2.2-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +- i386 | libelektra-cpp-dev | 0.7.1-1 | - +- i386 | libelektra-cpp0 | 0.7.1-1 | - +- i386 | libelektra-dev | 0.7.1-1 | - +- i386 | libelektra3 | 0.7.1-1 | - +- i386 | libelektratools-dev | 0.7.1-1 | - +- i386 | libelektratools2 | 0.7.1-1 | - +- i386 | libelemental-dev | 1.2.0-8 | - +- i386 | libelemental0 | 1.2.0-8 | - +- i386 | libelementary-bin | 0.7.0.55225-1 | - +- i386 | libelementary-dbg | 0.7.0.55225-1 | - +- i386 | libelementary-dev | 0.7.0.55225-1 | - +- i386 | libelementary-svn-09 | 0.7.0.55225-1 | - +- i386 | libelf-dev | 0.152-1+wheezy1 | - +- i386 | libelf1 | 0.152-1+wheezy1 | - +- i386 | libelfg0 | 0.8.13-3 | - +- i386 | libelfg0-dev | 0.8.13-3 | - +- i386 | libeliom-ocaml | 2.2.2-1 | - +- i386 | libeliom-ocaml-dev | 2.2.2-1 | - +- i386 | libelk0 | 3.99.8-2 | - +- i386 | libelk0-dev | 3.99.8-2 | - +- i386 | libelmer-dev | 6.1.0.svn.5396.dfsg2-2 | - +- i386 | libelmersolver-6.1 | 6.1.0.svn.5396.dfsg2-2 | - +- i386 | libelmersolver-dbg | 6.1.0.svn.5396.dfsg2-2 | - ++ i386 | libembperl-perl | - | 2.5.0~rc3-1~bpo70+1 +- i386 | libembryo-bin | 1.2.0-1 | - +- i386 | libembryo-dbg | 1.2.0-1 | - +- i386 | libembryo-dev | 1.2.0-1 | - +- i386 | libembryo1 | 1.2.0-1 | - +- i386 | libemos-data | 000382+dfsg-2 | - +- i386 | libemos-dev | 000382+dfsg-2 | - +- i386 | libemos0d | 000382+dfsg-2 | - +- i386 | libenca-dbg | 1.13-4 | - +- i386 | libenca-dev | 1.13-4 | - +- i386 | libenca0 | 1.13-4 | - +- i386 | libenchant-dev | 1.6.0-7 | - +- i386 | libenchant-voikko | 1.6.0-7 | - +- i386 | libenchant1c2a | 1.6.0-7 | - +- i386 | libencode-detect-perl | 1.01-2+b2 | - +- i386 | libencode-eucjpms-perl | 0.07-3 | - +- i386 | libencode-hanextra-perl | 0.23-2+b2 | - +- i386 | libencode-jis2k-perl | 0.02-1+b2 | - +- i386 | libencode-perl | 2.44-1+deb7u1 | - +- i386 | libenet-dev | 1.3.3-2 | - +- i386 | libenet1a | 1.3.3-2 | - +- i386 | libenet1a-dbg | 1.3.3-2 | - +- i386 | libengine-pkcs11-openssl | 0.1.8-2+b2 | - +- i386 | libepc-1.0-3 | 0.4.4-1 | - +- i386 | libepc-dev | 0.4.4-1 | - +- i386 | libepc-ui-1.0-3 | 0.4.4-1 | - +- i386 | libepc-ui-dev | 0.4.4-1 | - +- i386 | libepr-api2 | 2.2-2 | - +- i386 | libepsilon-dev | 0.9.1-2 | - +- i386 | libepsilon0 | 0.9.1-2 | - +- i386 | libept-dev | 1.0.9 | - +- i386 | libept1.4.12 | 1.0.9 | - +- i386 | libepub-dev | 0.2.1-2+b1 | - +- i386 | libepub0 | 0.2.1-2+b1 | - +- i386 | liberis-1.3-19 | 1.3.19-5 | - +- i386 | liberis-1.3-19-dbg | 1.3.19-5 | - +- i386 | liberis-1.3-dev | 1.3.19-5 | - +- i386 | liberuby | 1.0.5-2.1 | - +- i386 | liberuby-dev | 1.0.5-2.1 | - +- i386 | libescpr-dev | 1.1.1-2 | - +- i386 | libescpr1 | 1.1.1-2 | - +- i386 | libesd0 | 0.2.41-10+b1 | - +- i386 | libesd0-dev | 0.2.41-10+b1 | - +- i386 | libesmtp-dev | 1.0.6-1+b1 | - +- i386 | libesmtp6 | 1.0.6-1+b1 | - +- i386 | libespeak-dev | 1.46.02-2 | - +- i386 | libespeak1 | 1.46.02-2 | - +- i386 | libestools2.1 | 1:2.1~release-5 | - +- i386 | libestools2.1-dev | 1:2.1~release-5 | - +! i386 | libestr-dev | 0.1.1-2 | 0.1.9-1~bpo70+1 +! i386 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +- i386 | libethos-1.0-0 | 0.2.2-3 | - +- i386 | libethos-dev | 0.2.2-3 | - +- i386 | libethos-ui-1.0-0 | 0.2.2-3 | - +- i386 | libethos-ui-dev | 0.2.2-3 | - +- i386 | libetpan-dbg | 1.0-5 | - +- i386 | libetpan-dev | 1.0-5 | - +- i386 | libetpan15 | 1.0-5 | - +- i386 | libetsf-io-dev | 1.0.3-4+b1 | - +- i386 | libeurodec1-dev | 20061220+dfsg3-2 | - +- i386 | libeurodec1-gfortran | 20061220+dfsg3-2 | - +- i386 | libev-dev | 1:4.11-1 | - +- i386 | libev-perl | 4.11-2 | - +- i386 | libev4 | 1:4.11-1 | - +- i386 | libeval0 | 0.29.6-2 | - +- i386 | libeval0-dev | 0.29.6-2 | - +- i386 | libevas-dbg | 1.2.0-2 | - +- i386 | libevas-dev | 1.2.0-2 | - +- i386 | libevas1 | 1.2.0-2 | - +- i386 | libevas1-engine-fb | 1.2.0-2 | - +- i386 | libevas1-engines-core | 1.2.0-2 | - +- i386 | libevas1-engines-x | 1.2.0-2 | - +- i386 | libevd-0.1-0 | 0.1.20-2 | - +- i386 | libevd-0.1-dev | 0.1.20-2 | - +- i386 | libevdocument3-4 | 3.4.0-3.1 | - +- i386 | libevent-2.0-5 | 2.0.19-stable-3 | - +- i386 | libevent-core-2.0-5 | 2.0.19-stable-3 | - +- i386 | libevent-dbg | 2.0.19-stable-3 | - +- i386 | libevent-dev | 2.0.19-stable-3 | - +- i386 | libevent-extra-2.0-5 | 2.0.19-stable-3 | - +- i386 | libevent-openssl-2.0-5 | 2.0.19-stable-3 | - +- i386 | libevent-perl | 1.15-1+b1 | - +- i386 | libevent-pthreads-2.0-5 | 2.0.19-stable-3 | - +- i386 | libeventdb-dev | 0.90-5 | - +- i386 | libeventdb2 | 0.90-5 | - +- i386 | libeventdb2-dbg | 0.90-5 | - +- i386 | libevince-dev | 3.4.0-3.1 | - +- i386 | libevocosm-4.0-4 | 4.0.2-2.1 | - +- i386 | libevocosm-dev | 4.0.2-2.1 | - +- i386 | libevolution | 3.4.4-3 | - +- i386 | libevs-dev | 1.4.2-3 | - +- i386 | libevs4 | 1.4.2-3 | - +- i386 | libevtlog-dev | 0.2.12-5 | - +- i386 | libevtlog0 | 0.2.12-5 | - +- i386 | libevtlog0-dbg | 0.2.12-5 | - +- i386 | libevview3-3 | 3.4.0-3.1 | - +- i386 | libewf-dbg | 20100226-1+b1 | - +- i386 | libewf-dev | 20100226-1+b1 | - +- i386 | libewf1 | 20100226-1+b1 | - +- i386 | libexactimage-perl | 0.8.5-5+deb7u3 | - +- i386 | libexchangemapi-1.0-0 | 3.4.4-1 | - +- i386 | libexchangemapi-1.0-dev | 3.4.4-1 | - +- i386 | libexempi-dev | 2.2.0-1 | - +- i386 | libexempi3 | 2.2.0-1 | - +- i386 | libexempi3-dbg | 2.2.0-1 | - +- i386 | libexene-smlnj | 110.74-2 | - +- i386 | libexif-dev | 0.6.20-3 | - +- i386 | libexif-gtk-dev | 0.3.5-5 | - +- i386 | libexif-gtk5 | 0.3.5-5 | - +- i386 | libexif12 | 0.6.20-3 | - +- i386 | libexiv2-12 | 0.23-1 | - +- i386 | libexiv2-dbg | 0.23-1 | - +- i386 | libexiv2-dev | 0.23-1 | - +- i386 | libexo-1-0 | 0.6.2-5 | - +- i386 | libexo-1-0-dbg | 0.6.2-5 | - +- i386 | libexo-1-dev | 0.6.2-5 | - +- i386 | libexo-helpers | 0.6.2-5 | - +- i386 | libexodusii-dev | 5.14.dfsg.1-2+b1 | - +- i386 | libexodusii5 | 5.14.dfsg.1-2+b1 | - +- i386 | libexosip2-7 | 3.6.0-4 | - +- i386 | libexosip2-dev | 3.6.0-4 | - +- i386 | libexpat-gst | 3.2.4-2 | - +- i386 | libexpat-ocaml | 0.9.1+debian1-7+b2 | - +- i386 | libexpat-ocaml-dev | 0.9.1+debian1-7+b2 | - +- i386 | libexpat1 | 2.1.0-1+deb7u1 | - +- i386 | libexpat1-dev | 2.1.0-1+deb7u1 | - +- i386 | libexpect-ocaml | 0.0.2-1+b6 | - +- i386 | libexpect-ocaml-dev | 0.0.2-1+b6 | - +- i386 | libexpect-php5 | 0.3.1-1+b1 | - +- i386 | libexplain-dev | 0.52.D002-1 | - +- i386 | libexplain30 | 0.52.D002-1 | - +- i386 | libexplain30-dbg | 0.52.D002-1 | - +- i386 | libextlib-ocaml | 1.5.2-1+b1 | - +- i386 | libextlib-ocaml-dev | 1.5.2-1+b1 | - +- i386 | libextractor-dbg | 1:0.6.3-5 | - +- i386 | libextractor-dev | 1:0.6.3-5 | - +- i386 | libextractor-java-dbg | 0.6.0-6 | - +- i386 | libextractor-java-dev | 0.6.0-6 | - +- i386 | libextractor-java0 | 0.6.0-6 | - +- i386 | libextractor-plugins | 1:0.6.3-5 | - +- i386 | libextractor3 | 1:0.6.3-5 | - +- i386 | libexttextcat-dev | 3.2.0-2 | - +- i386 | libexttextcat0 | 3.2.0-2 | - +- i386 | libextunix-ocaml | 0.0.5-2 | - +- i386 | libextunix-ocaml-dev | 0.0.5-2 | - +- i386 | libeztrace-dev | 0.7-2-4 | - +- i386 | libeztrace0 | 0.7-2-4 | - +- i386 | libf2c2 | 20090411-2 | - +- i386 | libf2c2-dev | 20090411-2 | - +- i386 | libf95getdata2 | 0.7.3-6 | - +- i386 | libfaad-dev | 2.7-8 | - +- i386 | libfaad-ocaml | 0.3.0-1+b1 | - +- i386 | libfaad-ocaml-dev | 0.3.0-1+b1 | - +- i386 | libfaad2 | 2.7-8 | - +- i386 | libfacile-ocaml-dev | 1.1-8+b1 | - +- i386 | libfaifa-dev | 0.2~svn82-1 | - +- i386 | libfaifa0 | 0.2~svn82-1 | - +- i386 | libfakechroot | 2.16-1 | - +- i386 | libfakekey-dev | 0.1-7 | - +- i386 | libfakekey0 | 0.1-7 | - +- i386 | libfalcon-engine1 | 0.9.6.9-git20120606-2 | - +- i386 | libfalcon-engine1-dbg | 0.9.6.9-git20120606-2 | - +- i386 | libfam-dev | 2.7.0-17 | - +- i386 | libfam-ruby | 0.2.0-2.1 | - +- i386 | libfam0 | 2.7.0-17 | - +- i386 | libfann-dbg | 2.1.0~beta~dfsg-8 | - +- i386 | libfann-dev | 2.1.0~beta~dfsg-8 | - +- i386 | libfann2 | 2.1.0~beta~dfsg-8 | - +- i386 | libfarstream-0.1-0 | 0.1.2-1 | - +- i386 | libfarstream-0.1-dbg | 0.1.2-1 | - +- i386 | libfarstream-0.1-dev | 0.1.2-1 | - +- i386 | libfastjet-dev | 3.0.2+dfsg-2 | - +- i386 | libfastjet-fortran-dev | 3.0.2+dfsg-2 | - +- i386 | libfastjet-fortran0 | 3.0.2+dfsg-2 | - +- i386 | libfastjet0 | 3.0.2+dfsg-2 | - +- i386 | libfastjetplugins-dev | 3.0.2+dfsg-2 | - +- i386 | libfastjetplugins0 | 3.0.2+dfsg-2 | - +- i386 | libfastjettools-dev | 3.0.2+dfsg-2 | - +- i386 | libfastjettools0 | 3.0.2+dfsg-2 | - +- i386 | libfauhdli-dev | 20110812-1 | - +- i386 | libfbclient2 | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | libfbclient2-dbg | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | libfbembed2.5 | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | libfcgi-dev | 2.4.0-8.1 | - +- i386 | libfcgi-perl | 0.74-1+b1 | - +- i386 | libfcgi-ruby1.8 | 0.8.8-1 | - +- i386 | libfcgi-ruby1.9.1 | 0.8.8-1 | - +- i386 | libfcgi0ldbl | 2.4.0-8.1 | - +- i386 | libfdt-dev | 1.3.0-4 | - +- i386 | libfdt1 | 1.3.0-4 | - +- i386 | libfence-dev | 3.0.12-3.2+deb7u2 | - +- i386 | libfence4 | 3.0.12-3.2+deb7u2 | - +- i386 | libffado-dev | 2.0.99+svn2171-2 | - +- i386 | libffado2 | 2.0.99+svn2171-2 | - +- i386 | libffcall1 | 1.10+cvs20100619-2 | - +- i386 | libffcall1-dev | 1.10+cvs20100619-2 | - +- i386 | libffi-dev | 3.0.10-3 | - +- i386 | libffi5 | 3.0.10-3 | - +- i386 | libffi5-dbg | 3.0.10-3 | - +- i386 | libffindex0 | 0.9.6.1-1 | - +- i386 | libffindex0-dev | 0.9.6.1-1 | - +- i386 | libffmpegthumbnailer-dev | 2.0.7-2 | - +- i386 | libffmpegthumbnailer4 | 2.0.7-2 | - +- i386 | libffms2-2 | 2.17-1 | - +- i386 | libffms2-dev | 2.17-1 | - +- i386 | libfftw3-3 | 3.3.2-3.1 | - +- i386 | libfftw3-bin | 3.3.2-3.1 | - +- i386 | libfftw3-dbg | 3.3.2-3.1 | - +- i386 | libfftw3-dev | 3.3.2-3.1 | - +- i386 | libfftw3-mpi-dev | 3.3.2-3.1 | - +- i386 | libfftw3-mpi3 | 3.3.2-3.1 | - +- i386 | libfgetdata2 | 0.7.3-6 | - ++ i386 | libfglrx | - | 1:13.12-4~bpo70+1 ++ i386 | libfglrx-amdxvba1 | - | 1:13.12-4~bpo70+1 ++ i386 | libfglrx-legacy | - | 8.97.100.7-3~bpo70+1 ++ i386 | libfglrx-legacy-amdxvba1 | - | 8.97.100.7-3~bpo70+1 +- i386 | libfields-camlp4-dev | 107.01-1+b2 | - +- i386 | libfile-fcntllock-perl | 0.14-2 | - +- i386 | libfile-fnmatch-perl | 0.02-1+b2 | - +- i386 | libfile-libmagic-perl | 0.96-2 | - +- i386 | libfile-mmagic-xs-perl | 0.09006-4 | - +- i386 | libfile-rsyncp-perl | 0.70-1 | - +- i386 | libfile-spec-perl | 3.3300-1+b2 | - +- i386 | libfile-sync-perl | 0.11-1 | - +- i386 | libfilehandle-fmode-perl | 0.11-1+b2 | - +- i386 | libfilesys-df-perl | 0.92-4+b1 | - +- i386 | libfilesys-smbclient-perl | 3.1-3+b3 | - +- i386 | libfilesys-statvfs-perl | 0.82-2+b1 | - +- i386 | libfilesystem-ruby1.8 | 0.5-3.1 | - +- i386 | libfilesystem-ruby1.9.1 | 0.5-3.1 | - +- i386 | libfileutils-ocaml-dev | 0.4.2-1+b2 | - +- i386 | libfilter-perl | 1.45-1 | - +- i386 | libfindlib-ocaml | 1.3.1-1 | - +- i386 | libfindlib-ocaml-dev | 1.3.1-1 | - +- i386 | libfiredns-dev | 0.9.12+dfsg-3 | - +- i386 | libfiredns0.9 | 0.9.12+dfsg-3 | - +- i386 | libfirestring-dev | 0.9.12-8 | - +- i386 | libfirestring0.9 | 0.9.12-8 | - +- i386 | libfishsound1 | 1.0.0-1.1 | - +- i386 | libfishsound1-dbg | 1.0.0-1.1 | - +- i386 | libfishsound1-dev | 1.0.0-1.1 | - +- i386 | libfiu-dev | 0.90-3 | - +- i386 | libfiu0 | 0.90-3 | - +- i386 | libfixposix-dev | 20110316.git47f17f7-1 | - +- i386 | libfixposix0 | 20110316.git47f17f7-1 | - ++ i386 | libfko-perl | - | 2.5.1-1~bpo70+1 ++ i386 | libfko-python | - | 2.5.1-1~bpo70+1 +- i386 | libfko0 | 2.0.0rc2-2+deb7u2 | - +- i386 | libfko0-dbg | 2.0.0rc2-2+deb7u2 | - +- i386 | libfko0-dev | 2.0.0rc2-2+deb7u2 | - ++ i386 | libfko2 | - | 2.5.1-1~bpo70+1 ++ i386 | libfko2-dbg | - | 2.5.1-1~bpo70+1 ++ i386 | libfko2-dev | - | 2.5.1-1~bpo70+1 +- i386 | libflac++-dev | 1.2.1-6 | - +- i386 | libflac++6 | 1.2.1-6 | - +- i386 | libflac-dev | 1.2.1-6 | - +- i386 | libflac-ocaml | 0.1.1-1 | - +- i386 | libflac-ocaml-dev | 0.1.1-1 | - +- i386 | libflac8 | 1.2.1-6 | - +- i386 | libflake-dev | 0.11-2 | - +- i386 | libflann-dev | 1.7.1-4 | - +- i386 | libflann1.7 | 1.7.1-4 | - +- i386 | libflatzebra-0.1-2 | 0.1.5-4+b1 | - +- i386 | libflatzebra-dev | 0.1.5-4+b1 | - +- i386 | libflite1 | 1.4-release-6 | - +- i386 | libflorist-dbg | 2011-1 | - +- i386 | libflorist2011 | 2011-1 | - +- i386 | libflorist2011-dev | 2011-1 | - +- i386 | libflowcanvas-dev | 0.7.1+dfsg0-0.2 | - +- i386 | libflowcanvas5 | 0.7.1+dfsg0-0.2 | - +- i386 | libfltk-cairo1.3 | 1.3.0-8 | - +- i386 | libfltk-forms1.3 | 1.3.0-8 | - +- i386 | libfltk-gl1.3 | 1.3.0-8 | - +- i386 | libfltk-images1.3 | 1.3.0-8 | - +- i386 | libfltk1.1 | 1.1.10-14 | - +- i386 | libfltk1.1-dbg | 1.1.10-14 | - +- i386 | libfltk1.1-dev | 1.1.10-14 | - +- i386 | libfltk1.3 | 1.3.0-8 | - +- i386 | libfltk1.3-dbg | 1.3.0-8 | - +- i386 | libfltk1.3-dev | 1.3.0-8 | - +- i386 | libfluidsynth-dev | 1.1.5-2 | - +- i386 | libfluidsynth1 | 1.1.5-2 | - ++ i386 | libfm-dbg | - | 1.1.2.2-1~bpo70+1 +! i386 | libfm-dev | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +- i386 | libfm-gtk-bin | 0.1.17-2.1 | - ++ i386 | libfm-gtk-dbg | - | 1.1.2.2-1~bpo70+1 ++ i386 | libfm-gtk-dev | - | 1.1.2.2-1~bpo70+1 +- i386 | libfm-gtk1 | 0.1.17-2.1 | - ++ i386 | libfm-gtk3 | - | 1.1.2.2-1~bpo70+1 ++ i386 | libfm-tools | - | 1.1.2.2-1~bpo70+1 +- i386 | libfm1 | 0.1.17-2.1 | - +- i386 | libfm1-dbg | 0.1.17-2.1 | - ++ i386 | libfm3 | - | 1.1.2.2-1~bpo70+1 +- i386 | libfolia1 | 0.9-2 | - +- i386 | libfolia1-dev | 0.9-2 | - +- i386 | libfolks-dbg | 0.6.9-1+b1 | - +- i386 | libfolks-dev | 0.6.9-1+b1 | - +- i386 | libfolks-eds-dbg | 0.6.9-1+b1 | - +- i386 | libfolks-eds-dev | 0.6.9-1+b1 | - +- i386 | libfolks-eds25 | 0.6.9-1+b1 | - +- i386 | libfolks-telepathy-dbg | 0.6.9-1+b1 | - +- i386 | libfolks-telepathy-dev | 0.6.9-1+b1 | - +- i386 | libfolks-telepathy25 | 0.6.9-1+b1 | - +- i386 | libfolks25 | 0.6.9-1+b1 | - +- i386 | libfont-freetype-perl | 0.03-1+b2 | - +- i386 | libfontconfig1 | 2.9.0-7.1 | - +- i386 | libfontconfig1-dbg | 2.9.0-7.1 | - +- i386 | libfontconfig1-dev | 2.9.0-7.1 | - +- i386 | libfontenc-dev | 1:1.1.1-1 | - +- i386 | libfontenc1 | 1:1.1.1-1 | - +- i386 | libfontenc1-dbg | 1:1.1.1-1 | - +- i386 | libfontforge-dev | 0.0.20120101+git-2 | - +- i386 | libfontforge1 | 0.0.20120101+git-2 | - +- i386 | libforks-perl | 0.34-1+b2 | - +- i386 | libforms-bin | 1.0.93sp1-2 | - +- i386 | libforms-dev | 1.0.93sp1-2 | - +- i386 | libforms2 | 1.0.93sp1-2 | - +- i386 | libformsgl-dev | 1.0.93sp1-2 | - +- i386 | libformsgl2 | 1.0.93sp1-2 | - +- i386 | libfosfat0 | 0.4.0-3 | - +- i386 | libfosgra0 | 0.4.0-3 | - +- i386 | libfox-1.6-0 | 1.6.45-1 | - +- i386 | libfox-1.6-dev | 1.6.45-1 | - +- i386 | libfprint-dev | 1:0.4.0-4-gdfff16f-4 | - +- i386 | libfprint0 | 1:0.4.0-4-gdfff16f-4 | - +- i386 | libfreecell-solver-dev | 3.12.0-1 | - +- i386 | libfreecell-solver0 | 3.12.0-1 | - +- i386 | libfreefem++ | 3.19.1-1 | - +- i386 | libfreefem++-dev | 3.19.1-1 | - +- i386 | libfreefem-dev | 3.5.8-5 | - +- i386 | libfreefem0 | 3.5.8-5 | - +- i386 | libfreehdl0 | 0.0.7-1.1 | - +- i386 | libfreehdl0-dev | 0.0.7-1.1 | - +- i386 | libfreeimage-dev | 3.15.1-1+b1 | - +- i386 | libfreeimage3 | 3.15.1-1+b1 | - +- i386 | libfreeimage3-dbg | 3.15.1-1+b1 | - +- i386 | libfreeipmi-dev | 1.1.5-3 | - +- i386 | libfreeipmi12 | 1.1.5-3 | - +- i386 | libfreenect-bin | 1:0.1.2+dfsg-6 | - +- i386 | libfreenect-demos | 1:0.1.2+dfsg-6 | - +- i386 | libfreenect-dev | 1:0.1.2+dfsg-6 | - +- i386 | libfreenect0.1 | 1:0.1.2+dfsg-6 | - ++ i386 | libfreeradius-client-dev | - | 1.1.6-7~bpo70+1 ++ i386 | libfreeradius-client2 | - | 1.1.6-7~bpo70+1 +- i386 | libfreeradius-dev | 2.1.12+dfsg-1.2 | - +- i386 | libfreeradius2 | 2.1.12+dfsg-1.2 | - +- i386 | libfreerdp-dev | 1.0.1-1.1+deb7u2 | - +- i386 | libfreerdp-plugins-standard | 1.0.1-1.1+deb7u2 | - +- i386 | libfreerdp1 | 1.0.1-1.1+deb7u2 | - +- i386 | libfreetype6 | 2.4.9-1.1 | - +- i386 | libfreetype6-dev | 2.4.9-1.1 | - +- i386 | libfreexl-dev | 1.0.0b-1 | - +- i386 | libfreexl1 | 1.0.0b-1 | - +- i386 | libfreexl1-dbg | 1.0.0b-1 | - +- i386 | libfreeze34 | 3.4.2-8.2 | - +- i386 | libfribidi-bin | 0.19.2-3 | - +- i386 | libfribidi-dev | 0.19.2-3 | - +- i386 | libfribidi0 | 0.19.2-3 | - +- i386 | libfs-dev | 2:1.0.4-1+deb7u1 | - +- i386 | libfs6 | 2:1.0.4-1+deb7u1 | - +- i386 | libfs6-dbg | 2:1.0.4-1+deb7u1 | - +- i386 | libfso-glib-dbg | 2012.05.24.1-1.1 | - +- i386 | libfso-glib-dev | 2012.05.24.1-1.1 | - +- i386 | libfso-glib1 | 2012.05.24.1-1.1 | - +- i386 | libfsobasics-dbg | 0.11.0-1.1 | - +- i386 | libfsobasics-dev | 0.11.0-1.1 | - +- i386 | libfsobasics0 | 0.11.0-1.1 | - +- i386 | libfsoframework-dbg | 0.11.0-1.1 | - +- i386 | libfsoframework-dev | 0.11.0-1.1 | - +- i386 | libfsoframework0 | 0.11.0-1.1 | - +- i386 | libfsoresource-dbg | 0.11.0-1.1 | - +- i386 | libfsoresource-dev | 0.11.0-1.1 | - +- i386 | libfsoresource0 | 0.11.0-1.1 | - +- i386 | libfsosystem-dbg | 0.11.0-1 | - +- i386 | libfsosystem-dev | 0.11.0-1 | - +- i386 | libfsosystem0 | 0.11.0-1 | - +- i386 | libfsotransport-dbg | 0.11.1-2.1 | - +- i386 | libfsotransport-dev | 0.11.1-2.1 | - +- i386 | libfsotransport3 | 0.11.1-2.1 | - +- i386 | libfsplib-dev | 0.11-2 | - +- i386 | libfsplib0 | 0.11-2 | - +- i386 | libfstrcmp-dev | 0.4.D001-1+deb7u1 | - +- i386 | libfstrcmp0 | 0.4.D001-1+deb7u1 | - +- i386 | libfstrcmp0-dbg | 0.4.D001-1+deb7u1 | - +- i386 | libftdi-dev | 0.20-1+b1 | - +- i386 | libftdi1 | 0.20-1+b1 | - +- i386 | libftdi1-dbg | 0.20-1+b1 | - +- i386 | libftdipp-dev | 0.20-1+b1 | - +- i386 | libftdipp1 | 0.20-1+b1 | - +- i386 | libftdipp1-dbg | 0.20-1+b1 | - +- i386 | libftgl-dev | 2.1.3~rc5-4 | - +- i386 | libftgl2 | 2.1.3~rc5-4 | - +- i386 | libfuntools-dev | 1.4.4-3 | - +- i386 | libfuntools1 | 1.4.4-3 | - +- i386 | libfuse-dev | 2.9.0-2+deb7u1 | - +- i386 | libfuse-perl | 0.15.1-2 | - +- i386 | libfuse2 | 2.9.0-2+deb7u1 | - +- i386 | libfuzzy-dev | 2.7-2 | - +- i386 | libfuzzy2 | 2.7-2 | - +- i386 | libfuzzy2-dbg | 2.7-2 | - +- i386 | libfxt-dev | 0.2.6-2 | - +- i386 | libfxt0 | 0.2.6-2 | - +- i386 | libg15-1 | 1.2.7-2 | - +- i386 | libg15-dev | 1.2.7-2 | - +- i386 | libg15daemon-client-dev | 1.9.5.3-8.2 | - +- i386 | libg15daemon-client1 | 1.9.5.3-8.2 | - +- i386 | libg15render-dev | 1.3.0~svn316-2.2 | - +- i386 | libg15render1 | 1.3.0~svn316-2.2 | - +- i386 | libg2-dev | 0.72-2.1 | - +- i386 | libg20 | 0.72-2.1 | - +- i386 | libg20-perl | 0.72-2.1 | - +- i386 | libg3d-dbg | 0.0.8-17 | - +- i386 | libg3d-dev | 0.0.8-17 | - +- i386 | libg3d-plugin-gdkpixbuf | 0.0.8-17 | - +- i386 | libg3d-plugins | 0.0.8-17 | - +- i386 | libg3d0 | 0.0.8-17 | - +- i386 | libga-dev | 2.4.7-3 | - +- i386 | libga2 | 2.4.7-3 | - +- i386 | libgadap-dev | 2.0-1 | - +- i386 | libgadu-dev | 1:1.11.2-1 | - +- i386 | libgadu3 | 1:1.11.2-1 | - +- i386 | libgadu3-dbg | 1:1.11.2-1 | - +- i386 | libgail-3-0 | 3.4.2-7 | - +- i386 | libgail-3-0-dbg | 3.4.2-7 | - +- i386 | libgail-3-dev | 3.4.2-7 | - +- i386 | libgail-common | 2.24.10-2 | - +- i386 | libgail-dbg | 2.24.10-2 | - +- i386 | libgail-dev | 2.24.10-2 | - +- i386 | libgail18 | 2.24.10-2 | - +- i386 | libgalax-ocaml-dev | 1.1-10+b3 | - +- i386 | libgambc4 | 4.2.8-1.1 | - +- i386 | libgambc4-dev | 4.2.8-1.1 | - +- i386 | libgamin-dev | 0.1.10-4.1 | - +- i386 | libgamin0 | 0.1.10-4.1 | - +- i386 | libgammu-dbg | 1.31.90-1+b1 | - +- i386 | libgammu-dev | 1.31.90-1+b1 | - +- i386 | libgammu7 | 1.31.90-1+b1 | - +- i386 | libganglia1 | 3.3.8-1+nmu1 | - +- i386 | libganglia1-dev | 3.3.8-1+nmu1 | - +- i386 | libganv-1-1 | 0~svn4468~dfsg0-1 | - +- i386 | libganv-dev | 0~svn4468~dfsg0-1 | - +- i386 | libgarcon-1-0 | 0.1.12-1 | - +- i386 | libgarcon-1-0-dbg | 0.1.12-1 | - +- i386 | libgarcon-1-0-dev | 0.1.12-1 | - +- i386 | libgarmin-dev | 0~svn320-3 | - +- i386 | libgarmin0 | 0~svn320-3 | - +- i386 | libgatos-dev | 0.0.5-19 | - +- i386 | libgatos0 | 0.0.5-19 | - +- i386 | libgauche-0.9-0 | 0.9.1-5.1 | - +- i386 | libgavl-dev | 1.4.0-1 | - +- i386 | libgavl-ocaml | 0.1.4-1+b1 | - +- i386 | libgavl-ocaml-dev | 0.1.4-1+b1 | - +- i386 | libgavl1 | 1.4.0-1 | - +- i386 | libgavl1-dbg | 1.4.0-1 | - +- i386 | libgbm-dev | 8.0.5-4+deb7u2 | - +- i386 | libgbm1 | 8.0.5-4+deb7u2 | - +- i386 | libgbm1-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgc-dev | 1:7.1-9.1 | - +- i386 | libgc1c2 | 1:7.1-9.1 | - +- i386 | libgcal-dev | 0.9.6-3 | - +- i386 | libgcal0 | 0.9.6-3 | - +- i386 | libgcc1 | 1:4.7.2-5 | - +- i386 | libgcc1-dbg | 1:4.7.2-5 | - +- i386 | libgccxml-dev | 0.9.0+cvs20120420-4 | - +- i386 | libgcgi-dev | 0.9.5.dfsg-7 | - +- i386 | libgcgi0 | 0.9.5.dfsg-7 | - +- i386 | libgcj-bc | 4.7.2-1 | - +- i386 | libgcj12 | 4.6.3-1 | - +- i386 | libgcj12-awt | 4.6.3-1 | - +- i386 | libgcj12-dbg | 4.6.3-1 | - +- i386 | libgcj12-dev | 4.6.3-1 | - +- i386 | libgcj13 | 4.7.2-3 | - +- i386 | libgcj13-awt | 4.7.2-3 | - +- i386 | libgcj13-dbg | 4.7.2-3 | - +- i386 | libgcj13-dev | 4.7.2-3 | - +- i386 | libgck-1-0 | 3.4.1-3 | - +- i386 | libgck-1-dev | 3.4.1-3 | - +- i386 | libgconf-2-4 | 3.2.5-1+build1 | - +- i386 | libgconf-bridge-dev | 0.1-2.2 | - +- i386 | libgconf-bridge0 | 0.1-2.2 | - +- i386 | libgconf2-4 | 3.2.5-1+build1 | - +- i386 | libgconf2-dev | 3.2.5-1+build1 | - +- i386 | libgconfmm-2.6-1c2 | 2.28.0-1 | - +- i386 | libgconfmm-2.6-dev | 2.28.0-1 | - +- i386 | libgcr-3-1 | 3.4.1-3 | - +- i386 | libgcr-3-dev | 3.4.1-3 | - +- i386 | libgcr410 | 2.4.0-9.2 | - +- i386 | libgcroots-dev | 0.8.5-2.1 | - +- i386 | libgcroots0 | 0.8.5-2.1 | - +- i386 | libgcrypt11 | 1.5.0-5+deb7u1 | - +- i386 | libgcrypt11-dbg | 1.5.0-5+deb7u1 | - +- i386 | libgcrypt11-dev | 1.5.0-5+deb7u1 | - +- i386 | libgctp-dev | 1.0-1 | - +- i386 | libgctp0d | 1.0-1 | - +- i386 | libgcu-dbg | 0.12.12-1 | - +- i386 | libgcu0 | 0.12.12-1 | - +- i386 | libgd-gd2-noxpm-ocaml | 1.0~alpha5-5 | - +- i386 | libgd-gd2-noxpm-ocaml-dev | 1.0~alpha5-5 | - +- i386 | libgd-gd2-noxpm-perl | 1:2.46-2+b1 | - +- i386 | libgd-gd2-perl | 1:2.46-3+b1 | - +- i386 | libgd-tools | 2.0.36~rc1~dfsg-6.1 | - +- i386 | libgd2-noxpm | 2.0.36~rc1~dfsg-6.1 | - +- i386 | libgd2-noxpm-dev | 2.0.36~rc1~dfsg-6.1 | - +- i386 | libgd2-xpm | 2.0.36~rc1~dfsg-6.1 | - +- i386 | libgd2-xpm-dev | 2.0.36~rc1~dfsg-6.1 | - +- i386 | libgda-5.0-4 | 5.0.3-2 | - +- i386 | libgda-5.0-4-dbg | 5.0.3-2 | - +- i386 | libgda-5.0-bin | 5.0.3-2 | - +- i386 | libgda-5.0-dev | 5.0.3-2 | - +- i386 | libgda-5.0-mysql | 5.0.3-2 | - +- i386 | libgda-5.0-postgres | 5.0.3-2 | - +- i386 | libgdal-dev | 1.9.0-3.1 | - +- i386 | libgdal-perl | 1.9.0-3.1 | - +- i386 | libgdal-ruby | 1.9.0-3.1 | - +- i386 | libgdal-ruby1.8 | 1.9.0-3.1 | - +- i386 | libgdal1 | 1.9.0-3.1 | - +- i386 | libgdal1-1.9.0-grass | 1.9.0-1+b2 | - +- i386 | libgdata-dev | 0.12.0-1 | - +- i386 | libgdata13 | 0.12.0-1 | - +- i386 | libgdb-dev | 7.4.1+dfsg-0.1 | - +- i386 | libgdbm-dev | 1.8.3-11 | - +- i386 | libgdbm-gst | 3.2.4-2 | - +- i386 | libgdbm3 | 1.8.3-11 | - +- i386 | libgdbussyncevo0 | 1.2.99.1-1.1 | - +- i386 | libgdchart-gd2-noxpm | 0.11.5-7+b1 | - +- i386 | libgdchart-gd2-noxpm-dev | 0.11.5-7+b1 | - +- i386 | libgdchart-gd2-xpm | 0.11.5-7+b1 | - +- i386 | libgdchart-gd2-xpm-dev | 0.11.5-7+b1 | - +- i386 | libgdcm-cil | 2.2.0-14.1 | - +- i386 | libgdcm-java | 2.2.0-14.1 | - +- i386 | libgdcm-tools | 2.2.0-14.1 | - +- i386 | libgdcm2-dev | 2.2.0-14.1 | - +- i386 | libgdcm2.2 | 2.2.0-14.1 | - +- i386 | libgdcm2.2-dbg | 2.2.0-14.1 | - +- i386 | libgdf-dev | 0.1.2-2 | - +- i386 | libgdf0 | 0.1.2-2 | - +- i386 | libgdf0-dbg | 0.1.2-2 | - +- i386 | libgdict-1.0-6 | 3.4.0-2 | - +- i386 | libgdict-1.0-dev | 3.4.0-2 | - +- i386 | libgdiplus | 2.10-3+b1 | - +- i386 | libgdk-pixbuf2.0-0 | 2.26.1-1 | - +- i386 | libgdk-pixbuf2.0-dev | 2.26.1-1 | - +- i386 | libgdkcutter-pixbuf-dev | 1.1.7-1.2 | - +- i386 | libgdkcutter-pixbuf0 | 1.1.7-1.2 | - +- i386 | libgdl-3-2 | 3.4.2-1 | - +- i386 | libgdl-3-dbg | 3.4.2-1 | - +- i386 | libgdl-3-dev | 3.4.2-1 | - +- i386 | libgdome2-0 | 0.8.1+debian-4.1 | - +- i386 | libgdome2-cpp-smart-dev | 0.2.6-6+b1 | - +- i386 | libgdome2-cpp-smart0c2a | 0.2.6-6+b1 | - +- i386 | libgdome2-dev | 0.8.1+debian-4.1 | - +- i386 | libgdome2-ocaml | 0.2.6-6+b1 | - +- i386 | libgdome2-ocaml-dev | 0.2.6-6+b1 | - +- i386 | libgdraw4 | 0.0.20120101+git-2 | - +- i386 | libgdu-dev | 3.0.2-3 | - +- i386 | libgdu-gtk-dev | 3.0.2-3 | - +- i386 | libgdu-gtk0 | 3.0.2-3 | - +- i386 | libgdu0 | 3.0.2-3 | - +- i386 | libgeant321-2-dev | 1:3.21.14.dfsg-10 | - +- i386 | libgeant321-2-gfortran | 1:3.21.14.dfsg-10 | - +- i386 | libgearman-dbg | 0.33-2 | - +- i386 | libgearman-dev | 0.33-2 | - +- i386 | libgearman6 | 0.33-2 | - +- i386 | libgecode-dev | 3.7.3-1 | - +- i386 | libgecode32 | 3.7.3-1 | - +- i386 | libgecodeflatzinc32 | 3.7.3-1 | - +- i386 | libgecodegist32 | 3.7.3-1 | - +- i386 | libgeda-dev | 1:1.6.2-4.3 | - +- i386 | libgeda38 | 1:1.6.2-4.3 | - +- i386 | libgee-dev | 0.6.4-2 | - +- i386 | libgee2 | 0.6.4-2 | - +- i386 | libgee2-dbg | 0.6.4-2 | - +- i386 | libgegl-0.2-0 | 0.2.0-2+nmu1 | - +- i386 | libgegl-0.2-0-dbg | 0.2.0-2+nmu1 | - +- i386 | libgegl-dev | 0.2.0-2+nmu1 | - +- i386 | libgeier-dev | 0.13-1+b1 | - +- i386 | libgeier0 | 0.13-1+b1 | - +- i386 | libgemanx-core0 | 0.1.0.3-2 | - +- i386 | libgempc410 | 1.0.7-1 | - +- i386 | libgempc430 | 1.0.7-1 | - +- i386 | libgenders-perl | 1.18-1 | - +- i386 | libgenders0 | 1.18-1 | - +- i386 | libgenders0-dev | 1.18-1 | - +- i386 | libgenome-1.3-0 | 1.3.1-3 | - +- i386 | libgenome-1.3-0-dev | 1.3.1-3 | - +- i386 | libgensec-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libgensec0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libgeo-distance-xs-perl | 0.11-1 | - +- i386 | libgeo-ip-perl | 1.40-2 | - +- i386 | libgeo-proj4-perl | 1.03-1 | - +- i386 | libgeoclue-dev | 0.12.0-4 | - +- i386 | libgeoclue0 | 0.12.0-4 | - +- i386 | libgeocode-glib-dbg | 0.99.0-1 | - +- i386 | libgeocode-glib-dev | 0.99.0-1 | - +- i386 | libgeocode-glib0 | 0.99.0-1 | - +- i386 | libgeographiclib-dev | 1.21-1 | - +- i386 | libgeographiclib9 | 1.21-1 | - +! i386 | libgeoip-dev | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | libgeoip1 | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +- i386 | libgeomview-1.9.4 | 1.9.4-3 | - +- i386 | libgeomview-dev | 1.9.4-3 | - +- i386 | libgeos++-dev | 3.3.3-1.1 | - +- i386 | libgeos-3.3.3 | 3.3.3-1.1 | - +- i386 | libgeos-c1 | 3.3.3-1.1 | - +- i386 | libgeos-dbg | 3.3.3-1.1 | - +- i386 | libgeos-dev | 3.3.3-1.1 | - +- i386 | libgeos-ruby1.8 | 3.3.3-1.1 | - +- i386 | libgeotiff-dev | 1.3.0+dfsg-3 | - +- i386 | libgeotiff2 | 1.3.0+dfsg-3 | - +- i386 | libgeotranz3-dev | 3.1-2.1 | - +- i386 | libgeotranz3.1 | 3.1-2.1 | - +- i386 | libges-0.10-0 | 0.10.1-2 | - +- i386 | libges-0.10-dev | 0.10.1-2 | - +- i386 | libgetdata++2 | 0.7.3-6 | - +- i386 | libgetdata-dev | 0.7.3-6 | - +- i386 | libgetdata-tools | 0.7.3-6 | - +- i386 | libgetdata4 | 0.7.3-6 | - +- i386 | libgetfem++-dbg | 4.1.1+dfsg1-11 | - +- i386 | libgetfem++-dev | 4.1.1+dfsg1-11 | - +- i386 | libgetfem4++ | 4.1.1+dfsg1-11 | - +- i386 | libgetopt++-dev | 0.0.2-p22-3 | - +- i386 | libgetopt++1 | 0.0.2-p22-3 | - +- i386 | libgetopt-ocaml-dev | 0.0.20040811-10+b3 | - +- i386 | libgettext-ocaml | 0.3.4-1+b2 | - +- i386 | libgettext-ocaml-dev | 0.3.4-1+b2 | - ++ i386 | libgettextpo-dev | - | 0.18.3-1~bpo7+1 +! i386 | libgettextpo0 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +- i386 | libgexiv2-1 | 0.4.1-3 | - +- i386 | libgexiv2-1-dbg | 0.4.1-3 | - +- i386 | libgexiv2-dev | 0.4.1-3 | - +- i386 | libgfarm-dev | 2.4.1-1.1 | - +- i386 | libgfarm1 | 2.4.1-1.1 | - +- i386 | libgflags-dev | 2.0-1 | - +- i386 | libgflags2 | 2.0-1 | - +- i386 | libgfortran3 | 4.7.2-5 | - +- i386 | libgfortran3-dbg | 4.7.2-5 | - +- i386 | libgfshare-bin | 1.0.5-2 | - +- i386 | libgfshare-dbg | 1.0.5-2 | - +- i386 | libgfshare-dev | 1.0.5-2 | - +- i386 | libgfshare1 | 1.0.5-2 | - +- i386 | libghc-acid-state-dev | 0.6.3-1+b2 | - +- i386 | libghc-acid-state-prof | 0.6.3-1+b2 | - +- i386 | libghc-active-dev | 0.1.0.1-2+b2 | - +- i386 | libghc-active-prof | 0.1.0.1-2+b2 | - +- i386 | libghc-adjunctions-dev | 2.4.0.2-1 | - +- i386 | libghc-adjunctions-prof | 2.4.0.2-1 | - +- i386 | libghc-aeson-dev | 0.6.0.2-1+b4 | - +- i386 | libghc-aeson-prof | 0.6.0.2-1+b4 | - +- i386 | libghc-agda-dev | 2.3.0.1-2 | - +- i386 | libghc-algebra-dev | 2.1.1.2-1 | - +- i386 | libghc-algebra-prof | 2.1.1.2-1 | - +- i386 | libghc-alut-dev | 2.1.0.2-4+b1 | - +- i386 | libghc-alut-prof | 2.1.0.2-4+b1 | - +- i386 | libghc-ami-dev | 0.1-1+b5 | - +- i386 | libghc-ami-prof | 0.1-1+b5 | - +- i386 | libghc-ansi-terminal-dev | 0.5.5-3+b1 | - +- i386 | libghc-ansi-terminal-prof | 0.5.5-3+b1 | - +- i386 | libghc-ansi-wl-pprint-dev | 0.6.4-1+b1 | - +- i386 | libghc-ansi-wl-pprint-prof | 0.6.4-1+b1 | - +- i386 | libghc-arrows-dev | 0.4.4.0-3+b1 | - +- i386 | libghc-arrows-prof | 0.4.4.0-3+b1 | - +- i386 | libghc-asn1-data-dev | 0.6.1.3-2+b3 | - +- i386 | libghc-asn1-data-prof | 0.6.1.3-2+b3 | - ++ i386 | libghc-async-dev | - | 2.0.1.3-1~bpo70+1 ++ i386 | libghc-async-prof | - | 2.0.1.3-1~bpo70+1 +- i386 | libghc-attempt-dev | 0.4.0-1+b2 | - +- i386 | libghc-attempt-prof | 0.4.0-1+b2 | - +- i386 | libghc-attoparsec-conduit-dev | 0.4.0.1-1 | - +- i386 | libghc-attoparsec-conduit-prof | 0.4.0.1-1 | - +- i386 | libghc-attoparsec-dev | 0.10.1.1-2+b1 | - +- i386 | libghc-attoparsec-enumerator-dev | 0.3-3+b3 | - +- i386 | libghc-attoparsec-enumerator-prof | 0.3-3+b3 | - +- i386 | libghc-attoparsec-prof | 0.10.1.1-2+b1 | - +- i386 | libghc-augeas-dev | 0.6.1-1 | - +- i386 | libghc-augeas-prof | 0.6.1-1 | - +- i386 | libghc-authenticate-dev | 1.2.1.1-2+b1 | - +- i386 | libghc-authenticate-prof | 1.2.1.1-2+b1 | - +- i386 | libghc-base-unicode-symbols-dev | 0.2.2.3-1+b1 | - +- i386 | libghc-base-unicode-symbols-prof | 0.2.2.3-1+b1 | - +- i386 | libghc-base16-bytestring-dev | 0.1.1.4-2+b1 | - +- i386 | libghc-base16-bytestring-prof | 0.1.1.4-2+b1 | - +- i386 | libghc-base64-bytestring-dev | 0.1.1.1-2 | - +- i386 | libghc-base64-bytestring-prof | 0.1.1.1-2 | - +- i386 | libghc-bifunctors-dev | 0.1.3.3-1+b1 | - +- i386 | libghc-bifunctors-prof | 0.1.3.3-1+b1 | - +- i386 | libghc-binary-shared-dev | 0.8.1-1+b1 | - +- i386 | libghc-binary-shared-prof | 0.8.1-1+b1 | - +- i386 | libghc-bindings-dsl-dev | 1.0.15-1+b1 | - +- i386 | libghc-bindings-gpgme-dev | 0.1.4-1 | - +- i386 | libghc-bindings-gpgme-prof | 0.1.4-1 | - +- i386 | libghc-bindings-libzip-dev | 0.10-2 | - +- i386 | libghc-bindings-libzip-prof | 0.10-2 | - +- i386 | libghc-bitarray-dev | 0.0.1-2+b1 | - +- i386 | libghc-bitarray-prof | 0.0.1-2+b1 | - +- i386 | libghc-blaze-builder-conduit-dev | 0.4.0.2-1 | - +- i386 | libghc-blaze-builder-conduit-prof | 0.4.0.2-1 | - +- i386 | libghc-blaze-builder-dev | 0.3.1.0-1+b2 | - +- i386 | libghc-blaze-builder-enumerator-dev | 0.2.0.4-1+b1 | - +- i386 | libghc-blaze-builder-enumerator-prof | 0.2.0.4-1+b1 | - +- i386 | libghc-blaze-builder-prof | 0.3.1.0-1+b2 | - +- i386 | libghc-blaze-html-dev | 0.4.3.1-3+b2 | - +- i386 | libghc-blaze-html-prof | 0.4.3.1-3+b2 | - +- i386 | libghc-blaze-markup-dev | 0.5.1.0-1 | - +- i386 | libghc-blaze-markup-prof | 0.5.1.0-1 | - +- i386 | libghc-blaze-textual-dev | 0.2.0.6-2+b2 | - +- i386 | libghc-blaze-textual-prof | 0.2.0.6-2+b2 | - +- i386 | libghc-bloomfilter-dev | 1.2.6.8-1 | - +- i386 | libghc-bloomfilter-prof | 1.2.6.8-1 | - +- i386 | libghc-boolean-dev | 0.0.1-2+b1 | - +- i386 | libghc-boolean-prof | 0.0.1-2+b1 | - +- i386 | libghc-boomerang-dev | 1.3.1-1 | - +- i386 | libghc-boomerang-prof | 1.3.1-1 | - +- i386 | libghc-brainfuck-dev | 0.1-2+b2 | - +- i386 | libghc-brainfuck-prof | 0.1-2+b2 | - +- i386 | libghc-byteorder-dev | 1.0.3-2+b1 | - +- i386 | libghc-byteorder-prof | 1.0.3-2+b1 | - +- i386 | libghc-bytestring-lexing-dev | 0.4.0-1+b1 | - +- i386 | libghc-bytestring-lexing-prof | 0.4.0-1+b1 | - +- i386 | libghc-bytestring-mmap-dev | 0.2.2-2+b1 | - +- i386 | libghc-bytestring-mmap-prof | 0.2.2-2+b1 | - +- i386 | libghc-bytestring-nums-dev | 0.3.5-2+b1 | - +- i386 | libghc-bytestring-nums-prof | 0.3.5-2+b1 | - +- i386 | libghc-bytestring-show-dev | 0.3.5.1-1+b1 | - +- i386 | libghc-bytestring-show-prof | 0.3.5.1-1+b1 | - +- i386 | libghc-bzlib-dev | 0.5.0.3-2+b1 | - +- i386 | libghc-bzlib-prof | 0.5.0.3-2+b1 | - +- i386 | libghc-cabal-file-th-dev | 0.2.2-1 | - +- i386 | libghc-cabal-file-th-prof | 0.2.2-1 | - +- i386 | libghc-cairo-dev | 0.12.3-1+b1 | - +- i386 | libghc-cairo-prof | 0.12.3-1+b1 | - +- i386 | libghc-case-insensitive-dev | 0.4.0.1-2+b2 | - +- i386 | libghc-case-insensitive-prof | 0.4.0.1-2+b2 | - +- i386 | libghc-categories-dev | 1.0.3-1+b1 | - +- i386 | libghc-categories-prof | 1.0.3-1+b1 | - +- i386 | libghc-cautious-file-dev | 1.0.1-1 | - +- i386 | libghc-cautious-file-prof | 1.0.1-1 | - +- i386 | libghc-cereal-conduit-dev | 0.5-1+b1 | - +- i386 | libghc-cereal-conduit-prof | 0.5-1+b1 | - +- i386 | libghc-cereal-dev | 0.3.5.2-1 | - +- i386 | libghc-cereal-prof | 0.3.5.2-1 | - +- i386 | libghc-certificate-dev | 1.2.3-2 | - +- i386 | libghc-certificate-prof | 1.2.3-2 | - +- i386 | libghc-cgi-dev | 3001.1.8.2-2+b3 | - +- i386 | libghc-cgi-prof | 3001.1.8.2-2+b3 | - +- i386 | libghc-chart-dev | 0.15-1+b2 | - +- i386 | libghc-chart-prof | 0.15-1+b2 | - +- i386 | libghc-chell-dev | 0.3-1 | - +- i386 | libghc-chell-prof | 0.3-1 | - +- i386 | libghc-citeproc-hs-dev | 0.3.4-1+b4 | - +- i386 | libghc-citeproc-hs-prof | 0.3.4-1+b4 | - +- i386 | libghc-clientsession-dev | 0.7.5-3+b1 | - +- i386 | libghc-clientsession-prof | 0.7.5-3+b1 | - +- i386 | libghc-clock-dev | 0.2.0.0-2+b1 | - +- i386 | libghc-clock-prof | 0.2.0.0-2+b1 | - +- i386 | libghc-cmdargs-dev | 0.9.5-1+b1 | - +- i386 | libghc-cmdargs-prof | 0.9.5-1+b1 | - +- i386 | libghc-colour-dev | 2.3.3-1+b1 | - +- i386 | libghc-colour-prof | 2.3.3-1+b1 | - +- i386 | libghc-comonad-dev | 1.1.1.5-1+b1 | - +- i386 | libghc-comonad-prof | 1.1.1.5-1+b1 | - +- i386 | libghc-comonad-transformers-dev | 2.1.1.1-1+b1 | - +- i386 | libghc-comonad-transformers-prof | 2.1.1.1-1+b1 | - +- i386 | libghc-comonads-fd-dev | 2.1.1.2-1+b1 | - +- i386 | libghc-comonads-fd-prof | 2.1.1.2-1+b1 | - +- i386 | libghc-conduit-dev | 0.4.2-2 | - +- i386 | libghc-conduit-prof | 0.4.2-2 | - +- i386 | libghc-configfile-dev | 1.0.6-4+b3 | - +- i386 | libghc-configfile-prof | 1.0.6-4+b3 | - +- i386 | libghc-configurator-dev | 0.2.0.0-1+b2 | - +- i386 | libghc-configurator-prof | 0.2.0.0-1+b2 | - +- i386 | libghc-contravariant-dev | 0.2.0.2-1+b1 | - +- i386 | libghc-contravariant-prof | 0.2.0.2-1+b1 | - +- i386 | libghc-convertible-dev | 1.0.11.0-3+b3 | - +- i386 | libghc-convertible-prof | 1.0.11.0-3+b3 | - +- i386 | libghc-cookie-dev | 0.4.0-1+b3 | - +- i386 | libghc-cookie-prof | 0.4.0-1+b3 | - +- i386 | libghc-cpphs-dev | 1.13.3-2+b1 | - +- i386 | libghc-cpphs-prof | 1.13.3-2+b1 | - +- i386 | libghc-cprng-aes-dev | 0.2.3-3+b4 | - +- i386 | libghc-cprng-aes-prof | 0.2.3-3+b4 | - +- i386 | libghc-cpu-dev | 0.1.1-1 | - +- i386 | libghc-cpu-prof | 0.1.1-1 | - +- i386 | libghc-criterion-dev | 0.6.0.1-3+b4 | - +- i386 | libghc-criterion-prof | 0.6.0.1-3+b4 | - +- i386 | libghc-crypto-api-dev | 0.10.2-1+b2 | - +- i386 | libghc-crypto-api-prof | 0.10.2-1+b2 | - +- i386 | libghc-crypto-conduit-dev | 0.3.2-1+b1 | - +- i386 | libghc-crypto-conduit-prof | 0.3.2-1+b1 | - +- i386 | libghc-crypto-dev | 4.2.4-1+b1 | - +- i386 | libghc-crypto-prof | 4.2.4-1+b1 | - +- i386 | libghc-crypto-pubkey-types-dev | 0.1.1-1+b3 | - +- i386 | libghc-crypto-pubkey-types-prof | 0.1.1-1+b3 | - +- i386 | libghc-cryptocipher-dev | 0.3.5-1+b1 | - +- i386 | libghc-cryptocipher-prof | 0.3.5-1+b1 | - +- i386 | libghc-cryptohash-dev | 0.7.5-1+b2 | - +- i386 | libghc-cryptohash-prof | 0.7.5-1+b2 | - +- i386 | libghc-css-text-dev | 0.1.1-3+b2 | - +- i386 | libghc-css-text-prof | 0.1.1-3+b2 | - +- i386 | libghc-csv-conduit-dev | 0.2-1 | - +- i386 | libghc-csv-conduit-prof | 0.2-1 | - +- i386 | libghc-csv-dev | 0.1.2-2+b3 | - +- i386 | libghc-csv-prof | 0.1.2-2+b3 | - +- i386 | libghc-curl-dev | 1.3.7-1+b1 | - +- i386 | libghc-curl-prof | 1.3.7-1+b1 | - +- i386 | libghc-darcs-dev | 2.8.1-1+b1 | - +- i386 | libghc-darcs-prof | 2.8.1-1+b1 | - +- i386 | libghc-data-accessor-dev | 0.2.2.2-1+b1 | - +- i386 | libghc-data-accessor-mtl-dev | 0.2.0.3-1+b1 | - +- i386 | libghc-data-accessor-mtl-prof | 0.2.0.3-1+b1 | - +- i386 | libghc-data-accessor-prof | 0.2.2.2-1+b1 | - +- i386 | libghc-data-accessor-template-dev | 0.2.1.9-1+b2 | - +- i386 | libghc-data-accessor-template-prof | 0.2.1.9-1+b2 | - +- i386 | libghc-data-binary-ieee754-dev | 0.4.2.1-3+b1 | - +- i386 | libghc-data-binary-ieee754-prof | 0.4.2.1-3+b1 | - +- i386 | libghc-data-default-dev | 0.4.0-1 | - +- i386 | libghc-data-default-prof | 0.4.0-1 | - +- i386 | libghc-data-inttrie-dev | 0.0.7-1+b1 | - +- i386 | libghc-data-inttrie-prof | 0.0.7-1+b1 | - +- i386 | libghc-data-lens-dev | 2.10.0-1+b1 | - +- i386 | libghc-data-lens-prof | 2.10.0-1+b1 | - +- i386 | libghc-data-memocombinators-dev | 0.4.3-1+b1 | - +- i386 | libghc-data-memocombinators-prof | 0.4.3-1+b1 | - +- i386 | libghc-dataenc-dev | 0.14.0.3-1+b1 | - +- i386 | libghc-dataenc-prof | 0.14.0.3-1+b1 | - +- i386 | libghc-datetime-dev | 0.2.1-3 | - +- i386 | libghc-datetime-prof | 0.2.1-3 | - +- i386 | libghc-dbus-dev | 0.10.3-1 | - +- i386 | libghc-dbus-prof | 0.10.3-1 | - +- i386 | libghc-debian-dev | 3.64-3 | - +- i386 | libghc-debian-prof | 3.64-3 | - +- i386 | libghc-diagrams-cairo-dev | 0.5.0.2-1 | - +- i386 | libghc-diagrams-cairo-prof | 0.5.0.2-1 | - +- i386 | libghc-diagrams-core-dev | 0.5.0.1-1+b1 | - +- i386 | libghc-diagrams-core-prof | 0.5.0.1-1+b1 | - +- i386 | libghc-diagrams-lib-dev | 0.5-2 | - +- i386 | libghc-diagrams-lib-prof | 0.5-2 | - +- i386 | libghc-diff-dev | 0.1.3-1+b1 | - +- i386 | libghc-diff-prof | 0.1.3-1+b1 | - +- i386 | libghc-digest-dev | 0.0.1.0-1+b1 | - +- i386 | libghc-digest-prof | 0.0.1.0-1+b1 | - +- i386 | libghc-dimensional-dev | 0.10.1.2-2+b1 | - +- i386 | libghc-dimensional-prof | 0.10.1.2-2+b1 | - +- i386 | libghc-directory-tree-dev | 0.10.0-2+b1 | - +- i386 | libghc-directory-tree-prof | 0.10.0-2+b1 | - +- i386 | libghc-distributive-dev | 0.2.2-1+b1 | - +- i386 | libghc-distributive-prof | 0.2.2-1+b1 | - +- i386 | libghc-dlist-dev | 0.5-3+b1 | - +- i386 | libghc-dlist-prof | 0.5-3+b1 | - ++ i386 | libghc-doctest-dev | - | 0.9.1-1~bpo70+1 ++ i386 | libghc-doctest-prof | - | 0.9.1-1~bpo70+1 +- i386 | libghc-download-curl-dev | 0.1.3-3+b3 | - +- i386 | libghc-download-curl-prof | 0.1.3-3+b3 | - +- i386 | libghc-dpkg-dev | 0.0.3-1 | - +- i386 | libghc-dpkg-prof | 0.0.3-1 | - +- i386 | libghc-dyre-dev | 0.8.7-1 | - +- i386 | libghc-dyre-prof | 0.8.7-1 | - +- i386 | libghc-edison-api-dev | 1.2.1-18+b1 | - +- i386 | libghc-edison-api-prof | 1.2.1-18+b1 | - +- i386 | libghc-edison-core-dev | 1.2.1.3-9+b1 | - +- i386 | libghc-edison-core-prof | 1.2.1.3-9+b1 | - +- i386 | libghc-edit-distance-dev | 0.2.1-2 | - +- i386 | libghc-edit-distance-prof | 0.2.1-2 | - +- i386 | libghc-editline-dev | 0.2.1.0-5+b1 | - +- i386 | libghc-ekg-dev | 0.3.1.0-1+b2 | - +- i386 | libghc-ekg-prof | 0.3.1.0-1+b2 | - +- i386 | libghc-email-validate-dev | 0.2.8-1+b3 | - +- i386 | libghc-email-validate-prof | 0.2.8-1+b3 | - +- i386 | libghc-entropy-dev | 0.2.1-2+b1 | - +- i386 | libghc-entropy-prof | 0.2.1-2+b1 | - +- i386 | libghc-enumerator-dev | 0.4.19-1+b1 | - +- i386 | libghc-enumerator-prof | 0.4.19-1+b1 | - +- i386 | libghc-erf-dev | 2.0.0.0-2+b1 | - +- i386 | libghc-erf-prof | 2.0.0.0-2+b1 | - +- i386 | libghc-event-list-dev | 0.1.0.1-1+b1 | - +- i386 | libghc-event-list-prof | 0.1.0.1-1+b1 | - +- i386 | libghc-exception-transformers-dev | 0.3.0.2-1+b1 | - +- i386 | libghc-exception-transformers-prof | 0.3.0.2-1+b1 | - +- i386 | libghc-executable-path-dev | 0.0.3-1+b1 | - +- i386 | libghc-executable-path-prof | 0.0.3-1+b1 | - +- i386 | libghc-explicit-exception-dev | 0.1.7-1+b1 | - +- i386 | libghc-explicit-exception-prof | 0.1.7-1+b1 | - +- i386 | libghc-failure-dev | 0.2.0.1-1+b1 | - +- i386 | libghc-failure-prof | 0.2.0.1-1+b1 | - +- i386 | libghc-fast-logger-dev | 0.0.2-1+b2 | - +- i386 | libghc-fast-logger-prof | 0.0.2-1+b2 | - +- i386 | libghc-fastcgi-dev | 3001.0.2.3-3+b3 | - +- i386 | libghc-fastcgi-prof | 3001.0.2.3-3+b3 | - +- i386 | libghc-fclabels-dev | 1.1.3-1+b1 | - +- i386 | libghc-fclabels-prof | 1.1.3-1+b1 | - +- i386 | libghc-feed-dev | 0.3.8-3 | - +- i386 | libghc-feed-prof | 0.3.8-3 | - +- i386 | libghc-fgl-dev | 5.4.2.4-2+b2 | - +- i386 | libghc-fgl-prof | 5.4.2.4-2+b2 | - +- i386 | libghc-file-embed-dev | 0.0.4.4-1 | - +- i386 | libghc-file-embed-prof | 0.0.4.4-1 | - +- i386 | libghc-filemanip-dev | 0.3.5.2-2+b2 | - +- i386 | libghc-filemanip-prof | 0.3.5.2-2+b2 | - +- i386 | libghc-filestore-dev | 0.5-1 | - +- i386 | libghc-filestore-prof | 0.5-1 | - +- i386 | libghc-filesystem-conduit-dev | 0.4.0-1 | - +- i386 | libghc-filesystem-conduit-prof | 0.4.0-1 | - +- i386 | libghc-free-dev | 2.1.1.1-1+b1 | - +- i386 | libghc-free-prof | 2.1.1.1-1+b1 | - +- i386 | libghc-ftphs-dev | 1.0.8-1+b3 | - +- i386 | libghc-ftphs-prof | 1.0.8-1+b3 | - +- i386 | libghc-gconf-dev | 0.12.1-1+b1 | - +- i386 | libghc-gconf-prof | 0.12.1-1+b1 | - +- i386 | libghc-gd-dev | 3000.7.3-1 | - +- i386 | libghc-gd-prof | 3000.7.3-1 | - ++ i386 | libghc-generic-deriving-dev | - | 1.4.0-2~bpo70+1 ++ i386 | libghc-generic-deriving-prof | - | 1.4.0-2~bpo70+1 +- i386 | libghc-ghc-events-dev | 0.4.0.0-2+b1 | - +- i386 | libghc-ghc-events-prof | 0.4.0.0-2+b1 | - +- i386 | libghc-ghc-mtl-dev | 1.0.1.1-1+b3 | - +- i386 | libghc-ghc-mtl-prof | 1.0.1.1-1+b3 | - +- i386 | libghc-ghc-paths-dev | 0.1.0.8-2+b1 | - +- i386 | libghc-ghc-paths-prof | 0.1.0.8-2+b1 | - +- i386 | libghc-ghc-syb-utils-dev | 0.2.1.0-1+b3 | - +- i386 | libghc-ghc-syb-utils-prof | 0.2.1.0-1+b3 | - +- i386 | libghc-gio-dev | 0.12.3-1+b1 | - +- i386 | libghc-gio-prof | 0.12.3-1+b1 | - +- i386 | libghc-github-dev | 0.4.0-2 | - +- i386 | libghc-github-prof | 0.4.0-2 | - +- i386 | libghc-gitit-dev | 0.10.0.1-1+b1 | - +- i386 | libghc-gitit-prof | 0.10.0.1-1+b1 | - +- i386 | libghc-glade-dev | 0.12.1-1+b3 | - +- i386 | libghc-glade-prof | 0.12.1-1+b3 | - +- i386 | libghc-glfw-dev | 0.5.0.1-1+b1 | - +- i386 | libghc-glfw-prof | 0.5.0.1-1+b1 | - +- i386 | libghc-glib-dev | 0.12.2-1+b1 | - +- i386 | libghc-glib-prof | 0.12.2-1+b1 | - +- i386 | libghc-glut-dev | 2.1.2.2-1 | - +- i386 | libghc-glut-prof | 2.1.2.2-1 | - +- i386 | libghc-gnuidn-dev | 0.2-2+b2 | - +- i386 | libghc-gnuidn-prof | 0.2-2+b2 | - +! i386 | libghc-gnutls-dev | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! i386 | libghc-gnutls-prof | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +- i386 | libghc-gsasl-dev | 0.3.4-1+b1 | - +- i386 | libghc-gsasl-prof | 0.3.4-1+b1 | - +- i386 | libghc-gstreamer-dev | 0.12.1-1+b2 | - +- i386 | libghc-gstreamer-prof | 0.12.1-1+b2 | - +- i386 | libghc-gtk-dev | 0.12.3-1+b2 | - +- i386 | libghc-gtk-prof | 0.12.3-1+b2 | - +- i386 | libghc-gtkglext-dev | 0.12.1-1+b3 | - +- i386 | libghc-gtkglext-prof | 0.12.1-1+b3 | - +- i386 | libghc-gtksourceview2-dev | 0.12.3-1+b3 | - +- i386 | libghc-gtksourceview2-prof | 0.12.3-1+b3 | - +- i386 | libghc-haddock-dev | 2.10.0-1+b2 | - +- i386 | libghc-haddock-prof | 2.10.0-1+b2 | - +- i386 | libghc-hakyll-dev | 3.2.7.2-1+b5 | - +- i386 | libghc-hakyll-prof | 3.2.7.2-1+b5 | - +- i386 | libghc-hamlet-dev | 1.0.1.3-1+b1 | - +- i386 | libghc-hamlet-prof | 1.0.1.3-1+b1 | - +- i386 | libghc-happstack-dev | 7.0.0-1+b1 | - +- i386 | libghc-happstack-prof | 7.0.0-1+b1 | - +- i386 | libghc-happstack-server-dev | 7.0.1-1+b1 | - +- i386 | libghc-happstack-server-prof | 7.0.1-1+b1 | - +- i386 | libghc-harp-dev | 0.4-3+b1 | - +- i386 | libghc-harp-prof | 0.4-3+b1 | - +- i386 | libghc-hashable-dev | 1.1.2.3-1+b2 | - +- i386 | libghc-hashable-prof | 1.1.2.3-1+b2 | - +- i386 | libghc-hashed-storage-dev | 0.5.9-2+b2 | - +- i386 | libghc-hashed-storage-prof | 0.5.9-2+b2 | - +- i386 | libghc-hashmap-dev | 1.3.0.1-1+b2 | - +- i386 | libghc-hashmap-prof | 1.3.0.1-1+b2 | - +- i386 | libghc-hashtables-dev | 1.0.1.4-1+b1 | - +- i386 | libghc-hashtables-prof | 1.0.1.4-1+b1 | - +- i386 | libghc-haskeline-dev | 0.6.4.7-1+b1 | - +- i386 | libghc-haskeline-prof | 0.6.4.7-1+b1 | - +- i386 | libghc-haskell-lexer-dev | 1.0-3+b1 | - +- i386 | libghc-haskell-lexer-prof | 1.0-3+b1 | - +- i386 | libghc-haskell-src-dev | 1.0.1.5-1+b2 | - +- i386 | libghc-haskell-src-prof | 1.0.1.5-1+b2 | - +- i386 | libghc-haskelldb-dev | 2.1.1-5+b1 | - +- i386 | libghc-haskelldb-hdbc-dev | 2.1.0-4 | - +- i386 | libghc-haskelldb-hdbc-odbc-dev | 2.1.0-3 | - +- i386 | libghc-haskelldb-hdbc-odbc-prof | 2.1.0-3 | - +- i386 | libghc-haskelldb-hdbc-postgresql-dev | 2.1.0-3 | - +- i386 | libghc-haskelldb-hdbc-postgresql-prof | 2.1.0-3 | - +- i386 | libghc-haskelldb-hdbc-prof | 2.1.0-4 | - +- i386 | libghc-haskelldb-hdbc-sqlite3-dev | 2.1.0-3 | - +- i386 | libghc-haskelldb-hdbc-sqlite3-prof | 2.1.0-3 | - +- i386 | libghc-haskelldb-prof | 2.1.1-5+b1 | - +- i386 | libghc-haskore-dev | 0.2.0.3-2 | - +- i386 | libghc-haskore-prof | 0.2.0.3-2 | - +- i386 | libghc-hastache-dev | 0.3.3-2+b3 | - +- i386 | libghc-hastache-prof | 0.3.3-2+b3 | - +- i386 | libghc-haxml-dev | 1:1.22.5-2+b2 | - +- i386 | libghc-haxml-prof | 1:1.22.5-2+b2 | - +- i386 | libghc-haxr-dev | 3000.8.5-1+b3 | - +- i386 | libghc-haxr-prof | 3000.8.5-1+b3 | - +- i386 | libghc-hcard-dev | 0.0-2+b2 | - +- i386 | libghc-hcard-prof | 0.0-2+b2 | - +- i386 | libghc-hcwiid-dev | 0.0.1-3+b1 | - +- i386 | libghc-hcwiid-prof | 0.0.1-3+b1 | - +- i386 | libghc-hdbc-dev | 2.3.1.1-1+b3 | - +- i386 | libghc-hdbc-odbc-dev | 2.2.3.0-5+b3 | - +- i386 | libghc-hdbc-odbc-prof | 2.2.3.0-5+b3 | - +- i386 | libghc-hdbc-postgresql-dev | 2.3.2.1-1+b3 | - +- i386 | libghc-hdbc-postgresql-prof | 2.3.2.1-1+b3 | - +- i386 | libghc-hdbc-prof | 2.3.1.1-1+b3 | - +- i386 | libghc-hdbc-sqlite3-dev | 2.3.3.0-1+b3 | - +- i386 | libghc-hdbc-sqlite3-prof | 2.3.3.0-1+b3 | - +- i386 | libghc-hfuse-dev | 0.2.4.1-1 | - +- i386 | libghc-hfuse-prof | 0.2.4.1-1 | - +- i386 | libghc-highlighting-kate-dev | 0.5.1-1 | - +- i386 | libghc-highlighting-kate-prof | 0.5.1-1 | - +- i386 | libghc-hinotify-dev | 0.3.2-1+b1 | - +- i386 | libghc-hinotify-prof | 0.3.2-1+b1 | - +- i386 | libghc-hint-dev | 0.3.3.4-2+b4 | - +- i386 | libghc-hint-prof | 0.3.3.4-2+b4 | - +- i386 | libghc-hipmunk-dev | 5.2.0.8-1+b1 | - +- i386 | libghc-hipmunk-prof | 5.2.0.8-1+b1 | - +- i386 | libghc-hjavascript-dev | 0.4.7-3+b1 | - +- i386 | libghc-hjavascript-prof | 0.4.7-3+b1 | - +- i386 | libghc-hjscript-dev | 0.5.0-3+b2 | - +- i386 | libghc-hjscript-prof | 0.5.0-3+b2 | - +- i386 | libghc-hjsmin-dev | 0.1.1-1+b2 | - +- i386 | libghc-hjsmin-prof | 0.1.1-1+b2 | - +- i386 | libghc-hlint-dev | 1.8.28-1+b3 | - +- i386 | libghc-hlint-prof | 1.8.28-1+b3 | - +- i386 | libghc-hoauth-dev | 0.3.4-1+b1 | - +- i386 | libghc-hoauth-prof | 0.3.4-1+b1 | - +- i386 | libghc-hostname-dev | 1.0-4+b1 | - +- i386 | libghc-hostname-prof | 1.0-4+b1 | - +- i386 | libghc-hs-bibutils-dev | 4.12-5+b2 | - +- i386 | libghc-hs-bibutils-prof | 4.12-5+b2 | - +- i386 | libghc-hs3-dev | 0.5.6-2+b4 | - +- i386 | libghc-hs3-prof | 0.5.6-2+b4 | - +- i386 | libghc-hscolour-dev | 1.19-3+b1 | - +- i386 | libghc-hscolour-prof | 1.19-3+b1 | - +- i386 | libghc-hscurses-dev | 1.4.1.0-1+b2 | - +- i386 | libghc-hscurses-prof | 1.4.1.0-1+b2 | - +- i386 | libghc-hsemail-dev | 1.7.1-2+b3 | - +- i386 | libghc-hsemail-prof | 1.7.1-2+b3 | - +- i386 | libghc-hsh-dev | 2.0.3-6+b3 | - +- i386 | libghc-hsh-doc | 2.0.3-6+b3 | - +- i386 | libghc-hsh-prof | 2.0.3-6+b3 | - +- i386 | libghc-hslogger-dev | 1.1.4+dfsg1-2+b3 | - +- i386 | libghc-hslogger-prof | 1.1.4+dfsg1-2+b3 | - +- i386 | libghc-hsp-dev | 0.6.1-2+b3 | - +- i386 | libghc-hsp-prof | 0.6.1-2+b3 | - +- i386 | libghc-hspec-dev | 1.1.0-1+b1 | - +- i386 | libghc-hspec-prof | 1.1.0-1+b1 | - +- i386 | libghc-hsql-dev | 1.8.1-4 | - +- i386 | libghc-hsql-mysql-dev | 1.8.1-4+b1 | - +- i386 | libghc-hsql-mysql-prof | 1.8.1-4+b1 | - +- i386 | libghc-hsql-odbc-dev | 1.8.1.1-2 | - +- i386 | libghc-hsql-odbc-prof | 1.8.1.1-2 | - +- i386 | libghc-hsql-postgresql-dev | 1.8.1-3 | - +- i386 | libghc-hsql-postgresql-prof | 1.8.1-3 | - +- i386 | libghc-hsql-prof | 1.8.1-4 | - +- i386 | libghc-hsql-sqlite3-dev | 1.8.1-2 | - +- i386 | libghc-hsql-sqlite3-prof | 1.8.1-2 | - +- i386 | libghc-hssyck-dev | 0.50-2+b2 | - +- i386 | libghc-hssyck-prof | 0.50-2+b2 | - +- i386 | libghc-hstringtemplate-dev | 0.6.8-1 | - +- i386 | libghc-hstringtemplate-prof | 0.6.8-1 | - +- i386 | libghc-hsx-dev | 0.9.1-3 | - +- i386 | libghc-hsx-prof | 0.9.1-3 | - +- i386 | libghc-html-conduit-dev | 0.0.1-2 | - +- i386 | libghc-html-conduit-prof | 0.0.1-2 | - +- i386 | libghc-html-dev | 1.0.1.2-5+b1 | - +- i386 | libghc-html-prof | 1.0.1.2-5+b1 | - +- i386 | libghc-http-conduit-dev | 1.4.1.6-3 | - +- i386 | libghc-http-conduit-prof | 1.4.1.6-3 | - +- i386 | libghc-http-date-dev | 0.0.2-1+b2 | - +- i386 | libghc-http-date-prof | 0.0.2-1+b2 | - +- i386 | libghc-http-dev | 1:4000.2.3-1+b2 | - +- i386 | libghc-http-prof | 1:4000.2.3-1+b2 | - +- i386 | libghc-http-types-dev | 0.6.11-1 | - +- i386 | libghc-http-types-prof | 0.6.11-1 | - +- i386 | libghc-hunit-dev | 1.2.4.2-2+b1 | - +- i386 | libghc-hunit-prof | 1.2.4.2-2+b1 | - +- i386 | libghc-hxt-cache-dev | 9.0.2-2+b3 | - +- i386 | libghc-hxt-cache-prof | 9.0.2-2+b3 | - +- i386 | libghc-hxt-charproperties-dev | 9.1.1-2+b1 | - +- i386 | libghc-hxt-charproperties-prof | 9.1.1-2+b1 | - +- i386 | libghc-hxt-curl-dev | 9.1.1-1+b4 | - +- i386 | libghc-hxt-curl-prof | 9.1.1-1+b4 | - +- i386 | libghc-hxt-dev | 9.2.2-2+b3 | - +- i386 | libghc-hxt-http-dev | 9.1.4-2+b3 | - +- i386 | libghc-hxt-http-prof | 9.1.4-2+b3 | - +- i386 | libghc-hxt-prof | 9.2.2-2+b3 | - +- i386 | libghc-hxt-regex-xmlschema-dev | 9.0.4-2+b3 | - +- i386 | libghc-hxt-regex-xmlschema-prof | 9.0.4-2+b3 | - +- i386 | libghc-hxt-relaxng-dev | 9.1.4-1+b3 | - +- i386 | libghc-hxt-relaxng-prof | 9.1.4-1+b3 | - +- i386 | libghc-hxt-tagsoup-dev | 9.1.1-1+b4 | - +- i386 | libghc-hxt-tagsoup-prof | 9.1.1-1+b4 | - +- i386 | libghc-hxt-unicode-dev | 9.0.2-2+b1 | - +- i386 | libghc-hxt-unicode-prof | 9.0.2-2+b1 | - +- i386 | libghc-hxt-xpath-dev | 9.1.2-1+b4 | - +- i386 | libghc-hxt-xpath-prof | 9.1.2-1+b4 | - +- i386 | libghc-hxt-xslt-dev | 9.1.1-1+b3 | - +- i386 | libghc-hxt-xslt-prof | 9.1.1-1+b3 | - +- i386 | libghc-iconv-dev | 0.4.1.0-2+b1 | - +- i386 | libghc-iconv-prof | 0.4.1.0-2+b1 | - +- i386 | libghc-ieee754-dev | 0.7.3-1+b1 | - +- i386 | libghc-ieee754-prof | 0.7.3-1+b1 | - +- i386 | libghc-ifelse-dev | 0.85-4+b1 | - +- i386 | libghc-ifelse-prof | 0.85-4+b1 | - +- i386 | libghc-io-choice-dev | 0.0.1-1+b3 | - +- i386 | libghc-io-choice-prof | 0.0.1-1+b3 | - +- i386 | libghc-io-storage-dev | 0.3-2+b1 | - +- i386 | libghc-io-storage-prof | 0.3-2+b1 | - +- i386 | libghc-iospec-dev | 0.2.5-1+b2 | - +- i386 | libghc-iospec-prof | 0.2.5-1+b2 | - +- i386 | libghc-irc-dev | 0.5.0.0-1+b3 | - +- i386 | libghc-iteratee-dev | 0.8.8.2-2+b1 | - +- i386 | libghc-iteratee-prof | 0.8.8.2-2+b1 | - +- i386 | libghc-ixset-dev | 1.0.3-2+b1 | - +- i386 | libghc-ixset-prof | 1.0.3-2+b1 | - +- i386 | libghc-json-dev | 0.5-2+b2 | - +- i386 | libghc-json-prof | 0.5-2+b2 | - +- i386 | libghc-keys-dev | 2.1.3.2-1+b1 | - +- i386 | libghc-keys-prof | 2.1.3.2-1+b1 | - +- i386 | libghc-knob-dev | 0.1.1-1 | - +- i386 | libghc-knob-prof | 0.1.1-1 | - +- i386 | libghc-lambdabot-utils-dev | 4.2.1-3+b3 | - +- i386 | libghc-lambdabot-utils-prof | 4.2.1-3+b3 | - +- i386 | libghc-language-c-dev | 0.4.2-2+b2 | - +- i386 | libghc-language-c-prof | 0.4.2-2+b2 | - +- i386 | libghc-language-haskell-extract-dev | 0.2.1-4+b1 | - +- i386 | libghc-language-haskell-extract-prof | 0.2.1-4+b1 | - +- i386 | libghc-language-javascript-dev | 0.5.4-1+b2 | - +- i386 | libghc-language-javascript-prof | 0.5.4-1+b2 | - +- i386 | libghc-largeword-dev | 1.0.1-2+b1 | - +- i386 | libghc-largeword-prof | 1.0.1-2+b1 | - +- i386 | libghc-lazysmallcheck-dev | 0.6-1+b1 | - +- i386 | libghc-lazysmallcheck-prof | 0.6-1+b1 | - +- i386 | libghc-ldap-dev | 0.6.6-4.1+b1 | - +- i386 | libghc-ldap-prof | 0.6.6-4.1+b1 | - +- i386 | libghc-leksah-server-dev | 0.12.0.4-3 | - +- i386 | libghc-libtagc-dev | 0.12.0-2+b1 | - +- i386 | libghc-libtagc-prof | 0.12.0-2+b1 | - +- i386 | libghc-libxml-sax-dev | 0.7.2-2+b1 | - +- i386 | libghc-libxml-sax-prof | 0.7.2-2+b1 | - +- i386 | libghc-libzip-dev | 0.10-1+b2 | - +- i386 | libghc-libzip-prof | 0.10-1+b2 | - +- i386 | libghc-lifted-base-dev | 0.1.1-1+b1 | - +- i386 | libghc-lifted-base-prof | 0.1.1-1+b1 | - +- i386 | libghc-listlike-dev | 3.1.4-1+b1 | - +- i386 | libghc-listlike-prof | 3.1.4-1+b1 | - +- i386 | libghc-llvm-base-dev | 3.0.1.0-1 | - +- i386 | libghc-llvm-base-prof | 3.0.1.0-1 | - +- i386 | libghc-llvm-dev | 3.0.1.0-1+b1 | - +- i386 | libghc-llvm-prof | 3.0.1.0-1+b1 | - +- i386 | libghc-logict-dev | 0.5.0.1-1+b1 | - +- i386 | libghc-logict-prof | 0.5.0.1-1+b1 | - +- i386 | libghc-ltk-dev | 0.12.0.0-2+b1 | - +- i386 | libghc-maccatcher-dev | 2.1.5-2+b3 | - +- i386 | libghc-maccatcher-prof | 2.1.5-2+b3 | - +- i386 | libghc-magic-dev | 1.0.8-8+b1 | - +- i386 | libghc-magic-prof | 1.0.8-8+b1 | - +- i386 | libghc-markov-chain-dev | 0.0.3.2-1+b1 | - +- i386 | libghc-markov-chain-prof | 0.0.3.2-1+b1 | - +- i386 | libghc-math-functions-dev | 0.1.1.0-2+b2 | - +- i386 | libghc-math-functions-prof | 0.1.1.0-2+b2 | - +- i386 | libghc-maths-dev | 0.4.3-1+b1 | - +- i386 | libghc-maths-prof | 0.4.3-1+b1 | - +- i386 | libghc-maybet-dev | 0.1.2-3+b2 | - +- i386 | libghc-maybet-prof | 0.1.2-3+b2 | - +- i386 | libghc-mbox-dev | 0.1-2+b1 | - +- i386 | libghc-mbox-prof | 0.1-2+b1 | - +- i386 | libghc-memotrie-dev | 0.5-1 | - +- i386 | libghc-memotrie-prof | 0.5-1 | - +- i386 | libghc-mersenne-random-dev | 1.0.0.1-2+b1 | - +- i386 | libghc-mersenne-random-prof | 1.0.0.1-2+b1 | - +- i386 | libghc-midi-dev | 0.2.0.1-1+b1 | - +- i386 | libghc-midi-prof | 0.2.0.1-1+b1 | - +- i386 | libghc-mime-mail-dev | 0.4.1.1-2+b3 | - +- i386 | libghc-mime-mail-prof | 0.4.1.1-2+b3 | - +- i386 | libghc-missingh-dev | 1.1.0.3-6+b3 | - +- i386 | libghc-missingh-prof | 1.1.0.3-6+b3 | - +- i386 | libghc-mmap-dev | 0.5.7-2+b1 | - +- i386 | libghc-mmap-prof | 0.5.7-2+b1 | - +- i386 | libghc-monad-control-dev | 0.3.1.3-1+b1 | - +- i386 | libghc-monad-control-prof | 0.3.1.3-1+b1 | - +- i386 | libghc-monad-loops-dev | 0.3.2.0-1 | - +- i386 | libghc-monad-loops-prof | 0.3.2.0-1 | - +- i386 | libghc-monad-par-dev | 0.1.0.3-2+b1 | - +- i386 | libghc-monad-par-prof | 0.1.0.3-2+b1 | - +- i386 | libghc-monadcatchio-mtl-dev | 0.3.0.4-2+b2 | - +- i386 | libghc-monadcatchio-mtl-prof | 0.3.0.4-2+b2 | - +- i386 | libghc-monadcatchio-transformers-dev | 0.3.0.0-2+b1 | - +- i386 | libghc-monadcatchio-transformers-prof | 0.3.0.0-2+b1 | - +- i386 | libghc-monadcryptorandom-dev | 0.4.1-1+b2 | - +- i386 | libghc-monadcryptorandom-prof | 0.4.1-1+b2 | - +- i386 | libghc-monadrandom-dev | 0.1.6-2+b2 | - +- i386 | libghc-monadrandom-prof | 0.1.6-2+b2 | - +- i386 | libghc-monads-tf-dev | 0.1.0.0-1+b2 | - +- i386 | libghc-monads-tf-prof | 0.1.0.0-1+b2 | - +- i386 | libghc-monoid-transformer-dev | 0.0.2-3+b1 | - +- i386 | libghc-monoid-transformer-prof | 0.0.2-3+b1 | - +- i386 | libghc-mtl-dev | 2.1.1-1 | - +- i386 | libghc-mtl-prof | 2.1.1-1 | - +- i386 | libghc-mtlparse-dev | 0.1.2-2+b2 | - +- i386 | libghc-mtlparse-prof | 0.1.2-2+b2 | - +- i386 | libghc-murmur-hash-dev | 0.1.0.5-2+b1 | - +- i386 | libghc-murmur-hash-prof | 0.1.0.5-2+b1 | - +- i386 | libghc-mwc-random-dev | 0.11.0.0-4+b1 | - +- i386 | libghc-mwc-random-prof | 0.11.0.0-4+b1 | - +- i386 | libghc-ncurses-dev | 0.2.1-1+b1 | - +- i386 | libghc-ncurses-prof | 0.2.1-1+b1 | - +- i386 | libghc-netwire-dev | 3.1.0-2+b5 | - +- i386 | libghc-netwire-prof | 3.1.0-2+b5 | - +- i386 | libghc-network-conduit-dev | 0.4.0.1-2 | - +- i386 | libghc-network-conduit-prof | 0.4.0.1-2 | - +- i386 | libghc-network-dev | 2.3.0.13-1+b2 | - ++ i386 | libghc-network-info-dev | - | 0.2.0.1-2~bpo70+1 ++ i386 | libghc-network-info-prof | - | 0.2.0.1-2~bpo70+1 ++ i386 | libghc-network-multicast-dev | - | 0.0.10-1~bpo70+1 ++ i386 | libghc-network-multicast-prof | - | 0.0.10-1~bpo70+1 +- i386 | libghc-network-prof | 2.3.0.13-1+b2 | - +! i386 | libghc-network-protocol-xmpp-dev | 0.4.3-1 | 0.4.4-2~bpo70+1 +! i386 | libghc-network-protocol-xmpp-prof | 0.4.3-1 | 0.4.4-2~bpo70+1 +- i386 | libghc-newtype-dev | 0.2-1 | - +- i386 | libghc-newtype-prof | 0.2-1 | - +- i386 | libghc-non-negative-dev | 0.1-2+b1 | - +- i386 | libghc-non-negative-prof | 0.1-2+b1 | - +- i386 | libghc-numbers-dev | 2009.8.9-2+b1 | - +- i386 | libghc-numbers-prof | 2009.8.9-2+b1 | - +- i386 | libghc-numeric-quest-dev | 0.2-1+b1 | - +- i386 | libghc-numeric-quest-prof | 0.2-1+b1 | - +- i386 | libghc-numinstances-dev | 1.0-2+b1 | - +- i386 | libghc-numinstances-prof | 1.0-2+b1 | - +- i386 | libghc-numtype-dev | 1.0-2+b1 | - +- i386 | libghc-numtype-prof | 1.0-2+b1 | - +- i386 | libghc-oeis-dev | 0.3.1-2+b3 | - +- i386 | libghc-oeis-prof | 0.3.1-2+b3 | - +- i386 | libghc-openal-dev | 1.3.1.3-4+b1 | - +- i386 | libghc-openal-prof | 1.3.1.3-4+b1 | - +- i386 | libghc-opengl-dev | 2.2.3.1-1+b1 | - +- i386 | libghc-opengl-prof | 2.2.3.1-1+b1 | - +- i386 | libghc-openpgp-asciiarmor-dev | 0.1-1+b2 | - +- i386 | libghc-openpgp-asciiarmor-prof | 0.1-1+b2 | - +- i386 | libghc-options-dev | 0.1.1-1 | - +- i386 | libghc-options-prof | 0.1.1-1 | - +- i386 | libghc-pandoc-dev | 1.9.4.2-2 | - +- i386 | libghc-pandoc-prof | 1.9.4.2-2 | - +- i386 | libghc-pandoc-types-dev | 1.9.1-1+b2 | - +- i386 | libghc-pandoc-types-prof | 1.9.1-1+b2 | - +- i386 | libghc-pango-dev | 0.12.2-1+b2 | - +- i386 | libghc-pango-prof | 0.12.2-1+b2 | - +- i386 | libghc-parallel-dev | 3.2.0.2-2+b1 | - +- i386 | libghc-parallel-prof | 3.2.0.2-2+b1 | - +- i386 | libghc-parseargs-dev | 0.1.3.2-2+b1 | - +- i386 | libghc-parseargs-prof | 0.1.3.2-2+b1 | - +- i386 | libghc-parsec2-dev | 2.1.0.1-6+b1 | - +- i386 | libghc-parsec2-prof | 2.1.0.1-6+b1 | - +- i386 | libghc-parsec3-dev | 3.1.2-1+b3 | - +- i386 | libghc-parsec3-prof | 3.1.2-1+b3 | - +- i386 | libghc-pastis-dev | 0.1.2-2+b3 | - +- i386 | libghc-pastis-prof | 0.1.2-2+b3 | - +- i386 | libghc-path-pieces-dev | 0.1.0-1+b2 | - +- i386 | libghc-path-pieces-prof | 0.1.0-1+b2 | - +- i386 | libghc-patience-dev | 0.1.1-1 | - +- i386 | libghc-patience-prof | 0.1.1-1 | - +- i386 | libghc-pcre-light-dev | 0.4-3+b1 | - +- i386 | libghc-pcre-light-prof | 0.4-3+b1 | - +- i386 | libghc-pem-dev | 0.1.1-1+b3 | - +- i386 | libghc-pem-prof | 0.1.1-1+b3 | - +- i386 | libghc-persistent-dev | 0.9.0.4-2 | - +- i386 | libghc-persistent-prof | 0.9.0.4-2 | - +- i386 | libghc-persistent-sqlite-dev | 0.9.0.2-2 | - +- i386 | libghc-persistent-sqlite-prof | 0.9.0.2-2 | - +- i386 | libghc-persistent-template-dev | 0.9.0.2-1 | - +- i386 | libghc-persistent-template-prof | 0.9.0.2-1 | - +- i386 | libghc-polyparse-dev | 1.7-1+b2 | - +- i386 | libghc-polyparse-prof | 1.7-1+b2 | - +- i386 | libghc-pool-conduit-dev | 0.1.0.2-1 | - +- i386 | libghc-pool-conduit-prof | 0.1.0.2-1 | - +- i386 | libghc-postgresql-libpq-dev | 0.8.2-1 | - +- i386 | libghc-postgresql-libpq-prof | 0.8.2-1 | - +- i386 | libghc-postgresql-simple-dev | 0.1.4.3-1 | - +- i386 | libghc-postgresql-simple-prof | 0.1.4.3-1 | - +- i386 | libghc-pretty-show-dev | 1.1.1-4+b1 | - +- i386 | libghc-pretty-show-prof | 1.1.1-4+b1 | - +- i386 | libghc-primes-dev | 0.2.1.0-2+b1 | - +- i386 | libghc-primes-prof | 0.2.1.0-2+b1 | - +- i386 | libghc-primitive-dev | 0.4.1-1+b1 | - +- i386 | libghc-primitive-prof | 0.4.1-1+b1 | - +- i386 | libghc-psqueue-dev | 1.1-2+b1 | - +- i386 | libghc-psqueue-prof | 1.1-2+b1 | - +- i386 | libghc-puremd5-dev | 2.1.0.3-2+b4 | - +- i386 | libghc-puremd5-prof | 2.1.0.3-2+b4 | - +- i386 | libghc-pwstore-fast-dev | 2.2-2+b4 | - +- i386 | libghc-pwstore-fast-prof | 2.2-2+b4 | - +- i386 | libghc-quickcheck1-dev | 1.2.0.1-2+b1 | - +- i386 | libghc-quickcheck1-prof | 1.2.0.1-2+b1 | - +- i386 | libghc-quickcheck2-dev | 2.4.2-1+b1 | - +- i386 | libghc-quickcheck2-prof | 2.4.2-1+b1 | - +- i386 | libghc-random-dev | 1.0.1.1-1+b1 | - +- i386 | libghc-random-prof | 1.0.1.1-1+b1 | - +- i386 | libghc-random-shuffle-dev | 0.0.3-2+b2 | - +- i386 | libghc-random-shuffle-prof | 0.0.3-2+b2 | - +- i386 | libghc-ranged-sets-dev | 0.3.0-2+b1 | - +- i386 | libghc-ranged-sets-prof | 0.3.0-2+b1 | - +- i386 | libghc-ranges-dev | 0.2.4-2+b1 | - +- i386 | libghc-ranges-prof | 0.2.4-2+b1 | - +- i386 | libghc-reactive-banana-dev | 0.6.0.0-1+b3 | - +- i386 | libghc-reactive-banana-prof | 0.6.0.0-1+b3 | - +- i386 | libghc-readline-dev | 1.0.1.0-3+b1 | - +- i386 | libghc-readline-prof | 1.0.1.0-3+b1 | - +- i386 | libghc-recaptcha-dev | 0.1-4+b3 | - +- i386 | libghc-recaptcha-prof | 0.1-4+b3 | - +- i386 | libghc-regex-base-dev | 0.93.2-2+b2 | - +- i386 | libghc-regex-base-prof | 0.93.2-2+b2 | - +- i386 | libghc-regex-compat-dev | 0.95.1-2+b1 | - +- i386 | libghc-regex-compat-prof | 0.95.1-2+b1 | - +- i386 | libghc-regex-pcre-dev | 0.94.2-2+b1 | - +- i386 | libghc-regex-pcre-prof | 0.94.2-2+b1 | - +- i386 | libghc-regex-posix-dev | 0.95.1-2+b1 | - +- i386 | libghc-regex-posix-prof | 0.95.1-2+b1 | - +- i386 | libghc-regex-tdfa-dev | 1.1.8-2+b1 | - +- i386 | libghc-regex-tdfa-prof | 1.1.8-2+b1 | - +- i386 | libghc-regex-tdfa-utf8-dev | 1.0-5+b3 | - +- i386 | libghc-regex-tdfa-utf8-prof | 1.0-5+b3 | - +- i386 | libghc-regexpr-dev | 0.5.4-2+b2 | - +- i386 | libghc-regexpr-prof | 0.5.4-2+b2 | - +- i386 | libghc-representable-functors-dev | 2.4.0.2-1+b1 | - +- i386 | libghc-representable-functors-prof | 2.4.0.2-1+b1 | - +- i386 | libghc-representable-tries-dev | 2.4.0.2-1 | - +- i386 | libghc-representable-tries-prof | 2.4.0.2-1 | - +- i386 | libghc-resource-pool-dev | 0.2.1.0-2+b4 | - +- i386 | libghc-resource-pool-prof | 0.2.1.0-2+b4 | - +- i386 | libghc-resourcet-dev | 0.3.2.1-1+b1 | - +- i386 | libghc-resourcet-prof | 0.3.2.1-1+b1 | - +- i386 | libghc-rsa-dev | 1.2.1.0-1+b1 | - +- i386 | libghc-rsa-prof | 1.2.1.0-1+b1 | - +- i386 | libghc-safe-dev | 0.3.3-1+b1 | - +- i386 | libghc-safe-prof | 0.3.3-1+b1 | - +- i386 | libghc-safecopy-dev | 0.6.1-1+b1 | - +- i386 | libghc-safecopy-prof | 0.6.1-1+b1 | - ++ i386 | libghc-safesemaphore-dev | - | 0.9.0-1~bpo70+1 ++ i386 | libghc-safesemaphore-prof | - | 0.9.0-1~bpo70+1 +- i386 | libghc-sdl-dev | 0.6.3-1+b1 | - +- i386 | libghc-sdl-gfx-dev | 0.6.0-3+b1 | - +- i386 | libghc-sdl-gfx-prof | 0.6.0-3+b1 | - +- i386 | libghc-sdl-image-dev | 0.6.1-3+b1 | - +- i386 | libghc-sdl-image-prof | 0.6.1-3+b1 | - +- i386 | libghc-sdl-mixer-dev | 0.6.1-3+b1 | - +- i386 | libghc-sdl-mixer-prof | 0.6.1-3+b1 | - +- i386 | libghc-sdl-prof | 0.6.3-1+b1 | - +- i386 | libghc-sdl-ttf-dev | 0.6.1-3+b1 | - +- i386 | libghc-sdl-ttf-prof | 0.6.1-3+b1 | - +- i386 | libghc-semigroupoids-dev | 1.3.1.2-1+b1 | - +- i386 | libghc-semigroupoids-prof | 1.3.1.2-1+b1 | - +- i386 | libghc-semigroups-dev | 0.8.3.2-1 | - +- i386 | libghc-semigroups-prof | 0.8.3.2-1 | - +- i386 | libghc-sendfile-dev | 0.7.6-1+b2 | - +- i386 | libghc-sendfile-prof | 0.7.6-1+b2 | - +- i386 | libghc-sha-dev | 1.5.0.1-1 | - +- i386 | libghc-sha-prof | 1.5.0.1-1 | - +- i386 | libghc-shakespeare-css-dev | 1.0.1.2-1+b1 | - +- i386 | libghc-shakespeare-css-prof | 1.0.1.2-1+b1 | - +- i386 | libghc-shakespeare-dev | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-i18n-dev | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-i18n-prof | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-js-dev | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-js-prof | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-prof | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-text-dev | 1.0.0.2-1+b1 | - +- i386 | libghc-shakespeare-text-prof | 1.0.0.2-1+b1 | - +- i386 | libghc-shellac-dev | 0.9.5.1-2+b2 | - +- i386 | libghc-shellac-prof | 0.9.5.1-2+b2 | - +- i386 | libghc-show-dev | 0.4.1.2-1+b2 | - +- i386 | libghc-show-prof | 0.4.1.2-1+b2 | - +- i386 | libghc-silently-dev | 1.1.4-1+b2 | - +- i386 | libghc-silently-prof | 1.1.4-1+b2 | - +- i386 | libghc-simple-sendfile-dev | 0.2.3-1+b2 | - +- i386 | libghc-simple-sendfile-prof | 0.2.3-1+b2 | - +- i386 | libghc-simpleea-dev | 0.1.1-2+b2 | - +- i386 | libghc-simpleea-prof | 0.1.1-2+b2 | - +- i386 | libghc-simpleirc-dev | 0.2.1-2+b3 | - +- i386 | libghc-simpleirc-prof | 0.2.1-2+b3 | - +- i386 | libghc-skein-dev | 0.1.0.7-2+b1 | - +- i386 | libghc-skein-prof | 0.1.0.7-2+b1 | - +- i386 | libghc-smallcheck-dev | 0.6-1+b1 | - +- i386 | libghc-smallcheck-prof | 0.6-1+b1 | - +- i386 | libghc-smtpclient-dev | 1.0.4-3+b3 | - +- i386 | libghc-smtpclient-prof | 1.0.4-3+b3 | - +- i386 | libghc-snap-core-dev | 0.8.1-1+b4 | - +- i386 | libghc-snap-core-prof | 0.8.1-1+b4 | - +- i386 | libghc-snap-server-dev | 0.8.1.1-1 | - +- i386 | libghc-snap-server-prof | 0.8.1.1-1 | - +- i386 | libghc-socks-dev | 0.4.1-1+b4 | - +- i386 | libghc-socks-prof | 0.4.1-1+b4 | - +- i386 | libghc-split-dev | 0.1.4.2-2 | - +- i386 | libghc-split-prof | 0.1.4.2-2 | - +- i386 | libghc-src-exts-dev | 1.11.1-3+b1 | - +- i386 | libghc-src-exts-prof | 1.11.1-3+b1 | - +- i386 | libghc-statevar-dev | 1.0.0.0-2+b1 | - +- i386 | libghc-statevar-prof | 1.0.0.0-2+b1 | - +- i386 | libghc-static-hash-dev | 0.0.1-3+b2 | - +- i386 | libghc-static-hash-prof | 0.0.1-3+b2 | - +- i386 | libghc-statistics-dev | 0.10.1.0-2+b1 | - +- i386 | libghc-statistics-prof | 0.10.1.0-2+b1 | - +- i386 | libghc-stm-dev | 2.3-1 | - +- i386 | libghc-stm-prof | 2.3-1 | - +- i386 | libghc-stream-dev | 0.4.6-1+b1 | - +- i386 | libghc-stream-prof | 0.4.6-1+b1 | - +- i386 | libghc-strict-concurrency-dev | 0.2.4.1-2+b1 | - +- i386 | libghc-strict-concurrency-prof | 0.2.4.1-2+b1 | - +- i386 | libghc-strict-dev | 0.3.2-2+b1 | - +- i386 | libghc-strict-prof | 0.3.2-2+b1 | - +- i386 | libghc-strptime-dev | 1.0.6-1 | - +- i386 | libghc-strptime-prof | 1.0.6-1 | - +- i386 | libghc-svgcairo-dev | 0.12.1-1+b2 | - +- i386 | libghc-svgcairo-prof | 0.12.1-1+b2 | - +- i386 | libghc-syb-dev | 0.3.6.1-1 | - +- i386 | libghc-syb-prof | 0.3.6.1-1 | - +- i386 | libghc-syb-with-class-dev | 0.6.1.3-1+b1 | - +- i386 | libghc-syb-with-class-instances-text-dev | 0.0.1-3+b2 | - +- i386 | libghc-syb-with-class-instances-text-prof | 0.0.1-3+b2 | - +- i386 | libghc-syb-with-class-prof | 0.6.1.3-1+b1 | - +- i386 | libghc-system-fileio-dev | 0.3.8-1 | - +- i386 | libghc-system-fileio-prof | 0.3.8-1 | - +- i386 | libghc-system-filepath-dev | 0.4.6-1+b2 | - +- i386 | libghc-system-filepath-prof | 0.4.6-1+b2 | - +- i386 | libghc-tagged-dev | 0.4.2.1-1 | - +- i386 | libghc-tagged-prof | 0.4.2.1-1 | - +- i386 | libghc-tagsoup-dev | 0.12.6-1+b3 | - +- i386 | libghc-tagsoup-prof | 0.12.6-1+b3 | - +- i386 | libghc-tagstream-conduit-dev | 0.3.2-1 | - +- i386 | libghc-tagstream-conduit-prof | 0.3.2-1 | - +- i386 | libghc-tar-dev | 0.3.2.0-2+b1 | - +- i386 | libghc-tar-prof | 0.3.2.0-2+b1 | - +- i386 | libghc-template-dev | 0.2.0.7-1+b1 | - +- i386 | libghc-template-prof | 0.2.0.7-1+b1 | - +- i386 | libghc-temporary-dev | 1.1.2.3-1+b1 | - +- i386 | libghc-temporary-prof | 1.1.2.3-1+b1 | - +- i386 | libghc-terminfo-dev | 0.3.2.3-1+b1 | - +- i386 | libghc-terminfo-prof | 0.3.2.3-1+b1 | - +- i386 | libghc-test-framework-dev | 0.6-1+b1 | - +- i386 | libghc-test-framework-hunit-dev | 0.2.7-1+b3 | - +- i386 | libghc-test-framework-hunit-prof | 0.2.7-1+b3 | - +- i386 | libghc-test-framework-prof | 0.6-1+b1 | - +- i386 | libghc-test-framework-quickcheck2-dev | 0.2.12.1-1+b1 | - +- i386 | libghc-test-framework-quickcheck2-prof | 0.2.12.1-1+b1 | - +- i386 | libghc-test-framework-th-dev | 0.2.2-5 | - +- i386 | libghc-test-framework-th-prime-dev | 0.0.5-1 | - +- i386 | libghc-test-framework-th-prime-prof | 0.0.5-1 | - +- i386 | libghc-test-framework-th-prof | 0.2.2-5 | - +- i386 | libghc-testpack-dev | 2.1.1-1+b2 | - +- i386 | libghc-testpack-prof | 2.1.1-1+b2 | - +- i386 | libghc-texmath-dev | 0.6.0.6-1+b2 | - +- i386 | libghc-texmath-prof | 0.6.0.6-1+b2 | - +- i386 | libghc-text-dev | 0.11.2.0-1 | - +- i386 | libghc-text-icu-dev | 0.6.3.4-2+b2 | - +- i386 | libghc-text-icu-prof | 0.6.3.4-2+b2 | - +- i386 | libghc-text-prof | 0.11.2.0-1 | - +- i386 | libghc-tinyurl-dev | 0.1.0-2+b3 | - +- i386 | libghc-tinyurl-prof | 0.1.0-2+b3 | - +- i386 | libghc-tls-dev | 0.9.5-1+b4 | - +- i386 | libghc-tls-extra-dev | 0.4.6.1-2 | - +- i386 | libghc-tls-extra-prof | 0.4.6.1-2 | - +- i386 | libghc-tls-prof | 0.9.5-1+b4 | - +- i386 | libghc-tokyocabinet-dev | 0.0.5-5+b3 | - +- i386 | libghc-tokyocabinet-prof | 0.0.5-5+b3 | - +- i386 | libghc-transformers-base-dev | 0.4.1-2+b2 | - +- i386 | libghc-transformers-base-prof | 0.4.1-2+b2 | - +- i386 | libghc-transformers-dev | 0.3.0.0-1 | - +- i386 | libghc-transformers-prof | 0.3.0.0-1 | - +- i386 | libghc-type-level-dev | 0.2.4-5 | - +- i386 | libghc-type-level-prof | 0.2.4-5 | - +- i386 | libghc-uniplate-dev | 1.6.7-1+b2 | - +- i386 | libghc-uniplate-prof | 1.6.7-1+b2 | - +- i386 | libghc-unix-bytestring-dev | 0.3.5-2+b1 | - +- i386 | libghc-unix-bytestring-prof | 0.3.5-2+b1 | - +- i386 | libghc-unix-compat-dev | 0.3.0.1-1+b1 | - +- i386 | libghc-unix-compat-prof | 0.3.0.1-1+b1 | - +- i386 | libghc-unixutils-dev | 1.50-1+b1 | - +- i386 | libghc-unixutils-prof | 1.50-1+b1 | - +- i386 | libghc-unlambda-dev | 0.1-2+b2 | - +- i386 | libghc-unlambda-prof | 0.1-2+b2 | - +- i386 | libghc-unordered-containers-dev | 0.2.1.0-1 | - +- i386 | libghc-unordered-containers-prof | 0.2.1.0-1 | - +- i386 | libghc-uri-dev | 0.1.6-1+b2 | - +- i386 | libghc-uri-prof | 0.1.6-1+b2 | - +- i386 | libghc-url-dev | 2.1.2-4+b1 | - +- i386 | libghc-url-prof | 2.1.2-4+b1 | - +- i386 | libghc-utf8-light-dev | 0.4.0.1-2+b1 | - +- i386 | libghc-utf8-light-prof | 0.4.0.1-2+b1 | - +- i386 | libghc-utf8-string-dev | 0.3.7-1+b1 | - +- i386 | libghc-utf8-string-prof | 0.3.7-1+b1 | - +- i386 | libghc-utility-ht-dev | 0.0.5.1-3+b1 | - +- i386 | libghc-utility-ht-prof | 0.0.5.1-3+b1 | - +- i386 | libghc-uuagc-cabal-dev | 1.0.2.0-1+b1 | - +- i386 | libghc-uuagc-cabal-prof | 1.0.2.0-1+b1 | - +- i386 | libghc-uuid-dev | 1.2.3-2+b4 | - +- i386 | libghc-uuid-prof | 1.2.3-2+b4 | - +- i386 | libghc-uulib-dev | 0.9.14-2 | - +- i386 | libghc-uulib-prof | 0.9.14-2 | - +- i386 | libghc-vault-dev | 0.2.0.0-1+b2 | - +- i386 | libghc-vault-prof | 0.2.0.0-1+b2 | - +- i386 | libghc-vector-algorithms-dev | 0.5.4-1+b2 | - +- i386 | libghc-vector-algorithms-prof | 0.5.4-1+b2 | - +- i386 | libghc-vector-dev | 0.9.1-2+b1 | - +- i386 | libghc-vector-prof | 0.9.1-2+b1 | - +- i386 | libghc-vector-space-dev | 0.8.1-1 | - +- i386 | libghc-vector-space-points-dev | 0.1.1.0-1+b1 | - +- i386 | libghc-vector-space-points-prof | 0.1.1.0-1+b1 | - +- i386 | libghc-vector-space-prof | 0.8.1-1 | - +- i386 | libghc-void-dev | 0.5.5.1-2+b1 | - +- i386 | libghc-void-prof | 0.5.5.1-2+b1 | - +- i386 | libghc-vte-dev | 0.12.1-1+b3 | - +- i386 | libghc-vte-prof | 0.12.1-1+b3 | - +- i386 | libghc-vty-dev | 4.7.0.14-1+b1 | - +- i386 | libghc-vty-prof | 4.7.0.14-1+b1 | - +- i386 | libghc-wai-app-file-cgi-dev | 0.5.8-1+b4 | - +- i386 | libghc-wai-app-file-cgi-prof | 0.5.8-1+b4 | - +- i386 | libghc-wai-app-static-dev | 1.2.0.3-1+b3 | - +- i386 | libghc-wai-app-static-prof | 1.2.0.3-1+b3 | - +- i386 | libghc-wai-dev | 1.2.0.2-1+b2 | - +- i386 | libghc-wai-extra-dev | 1.2.0.4-1 | - +- i386 | libghc-wai-extra-prof | 1.2.0.4-1 | - +- i386 | libghc-wai-logger-dev | 0.1.4-1+b6 | - +- i386 | libghc-wai-logger-prefork-dev | 0.1.3-1+b6 | - +- i386 | libghc-wai-logger-prefork-prof | 0.1.3-1+b6 | - +- i386 | libghc-wai-logger-prof | 0.1.4-1+b6 | - +- i386 | libghc-wai-prof | 1.2.0.2-1+b2 | - +- i386 | libghc-wai-test-dev | 1.2.0.2-1 | - +- i386 | libghc-wai-test-prof | 1.2.0.2-1 | - +- i386 | libghc-warp-dev | 1.2.1.1-1 | - +- i386 | libghc-warp-prof | 1.2.1.1-1 | - +- i386 | libghc-warp-tls-dev | 1.2.0.4-1+b4 | - +- i386 | libghc-warp-tls-prof | 1.2.0.4-1+b4 | - +- i386 | libghc-web-routes-dev | 0.25.3-2+b3 | - +- i386 | libghc-web-routes-prof | 0.25.3-2+b3 | - +- i386 | libghc-webkit-dev | 0.12.3-2+b1 | - +- i386 | libghc-webkit-prof | 0.12.3-2+b1 | - +- i386 | libghc-weighted-regexp-dev | 0.3.1.1-2+b1 | - +- i386 | libghc-weighted-regexp-prof | 0.3.1.1-2+b1 | - +- i386 | libghc-x11-dev | 1.5.0.1-1+b2 | - +- i386 | libghc-x11-prof | 1.5.0.1-1+b2 | - +- i386 | libghc-x11-xft-dev | 0.3.1-1+b3 | - +- i386 | libghc-x11-xft-prof | 0.3.1-1+b3 | - +- i386 | libghc-xdg-basedir-dev | 0.2.1-2+b1 | - +- i386 | libghc-xdg-basedir-prof | 0.2.1-2+b1 | - +- i386 | libghc-xhtml-dev | 3000.2.1-1 | - +- i386 | libghc-xhtml-prof | 3000.2.1-1 | - +- i386 | libghc-xml-conduit-dev | 0.7.0.2-1 | - +- i386 | libghc-xml-conduit-prof | 0.7.0.2-1 | - +- i386 | libghc-xml-dev | 1.3.12-1+b2 | - ++ i386 | libghc-xml-hamlet-dev | - | 0.3.0.1-1~bpo70+1 ++ i386 | libghc-xml-hamlet-prof | - | 0.3.0.1-1~bpo70+1 +- i386 | libghc-xml-prof | 1.3.12-1+b2 | - +- i386 | libghc-xml-types-dev | 0.3.1-2+b2 | - +- i386 | libghc-xml-types-prof | 0.3.1-2+b2 | - +- i386 | libghc-xml2html-dev | 0.1.2.3-1 | - +- i386 | libghc-xml2html-prof | 0.1.2.3-1 | - +- i386 | libghc-xmonad-contrib-dev | 0.10-4~deb7u1 | - +- i386 | libghc-xmonad-contrib-prof | 0.10-4~deb7u1 | - +- i386 | libghc-xmonad-dev | 0.10-4+b2 | - +- i386 | libghc-xmonad-prof | 0.10-4+b2 | - +- i386 | libghc-xss-sanitize-dev | 0.3.2-1+b1 | - +- i386 | libghc-xss-sanitize-prof | 0.3.2-1+b1 | - +- i386 | libghc-yaml-dev | 0.7.0.2-1+b2 | - +- i386 | libghc-yaml-light-dev | 0.1.4-2+b2 | - +- i386 | libghc-yaml-light-prof | 0.1.4-2+b2 | - +- i386 | libghc-yaml-prof | 0.7.0.2-1+b2 | - +- i386 | libghc-yesod-auth-dev | 1.0.2.1-2+b2 | - +- i386 | libghc-yesod-auth-prof | 1.0.2.1-2+b2 | - +- i386 | libghc-yesod-core-dev | 1.0.1.2-1+b3 | - +- i386 | libghc-yesod-core-prof | 1.0.1.2-1+b3 | - +- i386 | libghc-yesod-default-dev | 1.0.1.1-1+b1 | - +- i386 | libghc-yesod-default-prof | 1.0.1.1-1+b1 | - +- i386 | libghc-yesod-dev | 1.0.1.6-2+b3 | - +- i386 | libghc-yesod-form-dev | 1.0.0.4-1+b1 | - +- i386 | libghc-yesod-form-prof | 1.0.0.4-1+b1 | - +- i386 | libghc-yesod-json-dev | 1.0.0.1-1+b3 | - +- i386 | libghc-yesod-json-prof | 1.0.0.1-1+b3 | - +- i386 | libghc-yesod-markdown-dev | 0.4.0-1+b3 | - +- i386 | libghc-yesod-markdown-prof | 0.4.0-1+b3 | - +- i386 | libghc-yesod-persistent-dev | 1.0.0.1-1+b1 | - +- i386 | libghc-yesod-persistent-prof | 1.0.0.1-1+b1 | - +- i386 | libghc-yesod-prof | 1.0.1.6-2+b3 | - +- i386 | libghc-yesod-routes-dev | 1.0.1.2-1 | - +- i386 | libghc-yesod-routes-prof | 1.0.1.2-1 | - +- i386 | libghc-yesod-static-dev | 1.0.0.2-1+b3 | - +- i386 | libghc-yesod-static-prof | 1.0.0.2-1+b3 | - +- i386 | libghc-yesod-test-dev | 0.2.0.6-1 | - +- i386 | libghc-yesod-test-prof | 0.2.0.6-1 | - +- i386 | libghc-zip-archive-dev | 0.1.1.7-3+b2 | - +- i386 | libghc-zip-archive-prof | 0.1.1.7-3+b2 | - +- i386 | libghc-zlib-bindings-dev | 0.1.0.1-1 | - +- i386 | libghc-zlib-bindings-prof | 0.1.0.1-1 | - +- i386 | libghc-zlib-conduit-dev | 0.4.0.1-1 | - +- i386 | libghc-zlib-conduit-prof | 0.4.0.1-1 | - +- i386 | libghc-zlib-dev | 0.5.3.3-1+b1 | - +- i386 | libghc-zlib-enum-dev | 0.2.2.1-1+b1 | - +- i386 | libghc-zlib-enum-prof | 0.2.2.1-1+b1 | - +- i386 | libghc-zlib-prof | 0.5.3.3-1+b1 | - +- i386 | libghemical-dev | 3.0.0-2 | - +- i386 | libghemical5 | 3.0.0-2 | - +- i386 | libgif-dev | 4.1.6-10 | - +- i386 | libgif4 | 4.1.6-10 | - +- i386 | libgiftiio-dev | 1.0.9-1 | - +- i386 | libgiftiio0 | 1.0.9-1 | - +- i386 | libgig-dev | 3.3.0-2 | - +- i386 | libgig6 | 3.3.0-2 | - +- i386 | libgii1 | 1:1.0.2-4.1 | - +- i386 | libgii1-dev | 1:1.0.2-4.1 | - +- i386 | libgii1-target-x | 1:1.0.2-4.1 | - +- i386 | libgimp2.0 | 2.8.2-2+deb7u1 | - +- i386 | libgimp2.0-dev | 2.8.2-2+deb7u1 | - +- i386 | libginac-dev | 1.6.2-1 | - +- i386 | libginac2 | 1.6.2-1 | - +- i386 | libginac2-dbg | 1.6.2-1 | - +- i386 | libginspx-dev | 20050529-3.1 | - +- i386 | libginspx0 | 20050529-3.1 | - +- i386 | libgirara-dbg | 0.1.2-3 | - +- i386 | libgirara-dev | 0.1.2-3 | - +- i386 | libgirara-gtk2-0 | 0.1.2-3 | - +- i386 | libgirara-gtk3-0 | 0.1.2-3 | - +- i386 | libgirepository-1.0-1 | 1.32.1-1 | - +- i386 | libgirepository1.0-dev | 1.32.1-1 | - +- i386 | libgjs-dev | 1.32.0-5 | - +- i386 | libgjs0b | 1.32.0-5 | - +- i386 | libgksu2-0 | 2.0.13~pre1-6 | - +- i386 | libgksu2-dev | 2.0.13~pre1-6 | - +- i386 | libgl-gst | 3.2.4-2 | - ++ i386 | libgl1-fglrx-glx | - | 1:13.12-4~bpo70+1 ++ i386 | libgl1-fglrx-glx-i386 | - | 1:13.12-4~bpo70+1 ++ i386 | libgl1-fglrx-legacy-glx | - | 8.97.100.7-3~bpo70+1 +- i386 | libgl1-mesa-dev | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-dri | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-dri-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-dri-experimental | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-dri-experimental-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-glx | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-glx-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-swx11 | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-swx11-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-swx11-dev | 8.0.5-4+deb7u2 | - +- i386 | libgl1-mesa-swx11-i686 | 8.0.5-4+deb7u2 | - ++ i386 | libgl1-nvidia-glx | - | 319.82-1~bpo70+1 ++ i386 | libgl1-nvidia-glx-i386 | - | 319.82-1~bpo70+1 ++ i386 | libgl1-nvidia-legacy-173xx-glx | - | 173.14.39-1~bpo70+1 ++ i386 | libgl1-nvidia-legacy-173xx-glx-i386 | - | 173.14.39-1~bpo70+1 ++ i386 | libgl1-nvidia-legacy-304xx-glx | - | 304.117-1~bpo70+1 ++ i386 | libgl1-nvidia-legacy-304xx-glx-i386 | - | 304.117-1~bpo70+1 ++ i386 | libgl1-nvidia-legacy-96xx-glx | - | 96.43.23-7~bpo70+1 +- i386 | libgl2ps-dev | 1.3.6-1 | - +- i386 | libgl2ps0 | 1.3.6-1 | - +- i386 | libgl2ps0-dbg | 1.3.6-1 | - +- i386 | libglacier2-34 | 3.4.2-8.2 | - +- i386 | libglade2-0 | 1:2.6.4-1 | - +- i386 | libglade2-dev | 1:2.6.4-1 | - +- i386 | libglade2.0-cil | 2.12.10-5 | - +- i386 | libglade2.0-cil-dev | 2.12.10-5 | - +- i386 | libglademm-2.4-1c2a | 2.6.7-2 | - +- i386 | libglademm-2.4-dbg | 2.6.7-2 | - +- i386 | libglademm-2.4-dev | 2.6.7-2 | - +- i386 | libgladeui-1-9 | 3.6.7-2.1 | - +- i386 | libgladeui-1-dev | 3.6.7-2.1 | - +- i386 | libgladeui-2-0 | 3.12.1-1 | - +- i386 | libgladeui-dev | 3.12.1-1 | - +- i386 | libglapi-mesa | 8.0.5-4+deb7u2 | - +- i386 | libglapi-mesa-dbg | 8.0.5-4+deb7u2 | - +- i386 | libglbsp-dev | 2.24-1 | - +- i386 | libglbsp3 | 2.24-1 | - +- i386 | libglc-dev | 0.7.2-5+b1 | - +- i386 | libglc0 | 0.7.2-5+b1 | - +- i386 | libgle3 | 3.1.0-7 | - +- i386 | libgle3-dev | 3.1.0-7 | - +- i386 | libglee0d1 | 5.4.0-1 | - +- i386 | libglee0d1-dbg | 5.4.0-1 | - +- i386 | libgles1-mesa | 8.0.5-4+deb7u2 | - +- i386 | libgles1-mesa-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgles1-mesa-dev | 8.0.5-4+deb7u2 | - +- i386 | libgles2-mesa | 8.0.5-4+deb7u2 | - +- i386 | libgles2-mesa-dbg | 8.0.5-4+deb7u2 | - +- i386 | libgles2-mesa-dev | 8.0.5-4+deb7u2 | - +- i386 | libglew-dev | 1.7.0-3 | - +- i386 | libglew1.7 | 1.7.0-3 | - +- i386 | libglewmx-dev | 1.7.0-3 | - +- i386 | libglewmx1.7 | 1.7.0-3 | - +- i386 | libglfw-dev | 2.7.2-1 | - +- i386 | libglfw2 | 2.7.2-1 | - +- i386 | libglib-object-introspection-perl | 0.009-1+deb7u1 | - +- i386 | libglib-perl | 3:1.260-1 | - +- i386 | libglib2.0-0 | 2.33.12+really2.32.4-5 | - +- i386 | libglib2.0-0-dbg | 2.33.12+really2.32.4-5 | - +- i386 | libglib2.0-0-refdbg | 2.33.12+really2.32.4-5 | - +- i386 | libglib2.0-bin | 2.33.12+really2.32.4-5 | - +- i386 | libglib2.0-cil | 2.12.10-5 | - +- i386 | libglib2.0-cil-dev | 2.12.10-5 | - +- i386 | libglib2.0-dev | 2.33.12+really2.32.4-5 | - +- i386 | libglibmm-2.4-1c2a | 2.32.1-1 | - +- i386 | libglibmm-2.4-dbg | 2.32.1-1 | - +- i386 | libglibmm-2.4-dev | 2.32.1-1 | - +- i386 | libglide2 | 2002.04.10ds1-7 | - +- i386 | libglide2-dev | 2002.04.10ds1-7 | - +- i386 | libglide3 | 2002.04.10ds1-7 | - +- i386 | libglide3-dev | 2002.04.10ds1-7 | - +- i386 | libglobus-authz-callout-error-dev | 2.2-1 | - +- i386 | libglobus-authz-callout-error0 | 2.2-1 | - +- i386 | libglobus-authz-dev | 2.2-1 | - +- i386 | libglobus-authz0 | 2.2-1 | - +- i386 | libglobus-callout-dev | 2.2-1 | - +- i386 | libglobus-callout0 | 2.2-1 | - +- i386 | libglobus-common-dev | 14.7-2 | - +- i386 | libglobus-common0 | 14.7-2 | - +- i386 | libglobus-ftp-client-dev | 7.3-1 | - +- i386 | libglobus-ftp-client2 | 7.3-1 | - +- i386 | libglobus-ftp-control-dev | 4.4-1 | - +- i386 | libglobus-ftp-control1 | 4.4-1 | - +- i386 | libglobus-gass-cache-dev | 8.1-2 | - +- i386 | libglobus-gass-cache5 | 8.1-2 | - +- i386 | libglobus-gass-copy-dev | 8.4-1 | - +- i386 | libglobus-gass-copy2 | 8.4-1 | - +- i386 | libglobus-gass-server-ez-dev | 4.3-1 | - +- i386 | libglobus-gass-server-ez2 | 4.3-1 | - +- i386 | libglobus-gass-transfer-dev | 7.2-1 | - +- i386 | libglobus-gass-transfer2 | 7.2-1 | - +- i386 | libglobus-gfork-dev | 3.2-1 | - +- i386 | libglobus-gfork0 | 3.2-1 | - +- i386 | libglobus-gram-client-dev | 12.4-1 | - +- i386 | libglobus-gram-client3 | 12.4-1 | - +- i386 | libglobus-gram-job-manager-callout-error-dev | 2.1-2 | - +- i386 | libglobus-gram-job-manager-callout-error0 | 2.1-2 | - +- i386 | libglobus-gram-protocol-dev | 11.3-1 | - +- i386 | libglobus-gram-protocol3 | 11.3-1 | - +- i386 | libglobus-gridftp-server-control-dev | 2.5-2 | - +- i386 | libglobus-gridftp-server-control0 | 2.5-2 | - +- i386 | libglobus-gridftp-server-dev | 6.10-2 | - +- i386 | libglobus-gridftp-server6 | 6.10-2 | - +- i386 | libglobus-gridmap-callout-error-dev | 1.2-2 | - +- i386 | libglobus-gridmap-callout-error0 | 1.2-2 | - +- i386 | libglobus-gsi-callback-dev | 4.2-1 | - +- i386 | libglobus-gsi-callback0 | 4.2-1 | - +- i386 | libglobus-gsi-cert-utils-dev | 8.3-1 | - +- i386 | libglobus-gsi-cert-utils0 | 8.3-1 | - +- i386 | libglobus-gsi-credential-dev | 5.3-1 | - +- i386 | libglobus-gsi-credential1 | 5.3-1 | - +- i386 | libglobus-gsi-openssl-error-dev | 2.1-2 | - +- i386 | libglobus-gsi-openssl-error0 | 2.1-2 | - +- i386 | libglobus-gsi-proxy-core-dev | 6.2-1 | - +- i386 | libglobus-gsi-proxy-core0 | 6.2-1 | - +- i386 | libglobus-gsi-proxy-ssl-dev | 4.1-2 | - +- i386 | libglobus-gsi-proxy-ssl1 | 4.1-2 | - +- i386 | libglobus-gsi-sysconfig-dev | 5.2-1 | - +- i386 | libglobus-gsi-sysconfig1 | 5.2-1 | - +- i386 | libglobus-gss-assist-dev | 8.5-1 | - +- i386 | libglobus-gss-assist3 | 8.5-1 | - +- i386 | libglobus-gssapi-error-dev | 4.1-2 | - +- i386 | libglobus-gssapi-error2 | 4.1-2 | - +- i386 | libglobus-gssapi-gsi-dev | 10.6-1 | - +- i386 | libglobus-gssapi-gsi4 | 10.6-1 | - +- i386 | libglobus-io-dev | 9.3-1 | - +- i386 | libglobus-io3 | 9.3-1 | - +- i386 | libglobus-openssl-module-dev | 3.2-1 | - +- i386 | libglobus-openssl-module0 | 3.2-1 | - +- i386 | libglobus-rls-client-dev | 5.2-8 | - +- i386 | libglobus-rls-client5 | 5.2-8 | - +- i386 | libglobus-rsl-dev | 9.1-2 | - +- i386 | libglobus-rsl2 | 9.1-2 | - +- i386 | libglobus-scheduler-event-generator-dev | 4.6-1 | - +- i386 | libglobus-scheduler-event-generator0 | 4.6-1 | - +- i386 | libglobus-usage-dev | 3.1-2 | - +- i386 | libglobus-usage0 | 3.1-2 | - +- i386 | libglobus-xio-dev | 3.3-1 | - +- i386 | libglobus-xio-gsi-driver-dev | 2.3-1 | - +- i386 | libglobus-xio-gsi-driver0 | 2.3-1 | - +- i386 | libglobus-xio-pipe-driver-dev | 2.2-1 | - +- i386 | libglobus-xio-pipe-driver0 | 2.2-1 | - +- i386 | libglobus-xio-popen-driver-dev | 2.3-1 | - +- i386 | libglobus-xio-popen-driver0 | 2.3-1 | - +- i386 | libglobus-xio0 | 3.3-1 | - +- i386 | libgloox-dbg | 1.0-1.1 | - +- i386 | libgloox-dev | 1.0-1.1 | - +- i386 | libgloox8 | 1.0-1.1 | - +- i386 | libglpk-dev | 4.45-1 | - +- i386 | libglpk-java | 1.0.18-1 | - +- i386 | libglpk0 | 4.45-1 | - +- i386 | libglpk0-dbg | 4.45-1 | - +- i386 | libglrr-glib-dev | 20050529-3.1 | - +- i386 | libglrr-glib0 | 20050529-3.1 | - +- i386 | libglrr-gobject-dev | 20050529-3.1 | - +- i386 | libglrr-gobject0 | 20050529-3.1 | - +- i386 | libglrr-gtk-dev | 20050529-3.1 | - +- i386 | libglrr-gtk0 | 20050529-3.1 | - +- i386 | libglrr-widgets-dev | 20050529-3.1 | - +- i386 | libglrr-widgets0 | 20050529-3.1 | - +- i386 | libglu1-mesa | 8.0.5-4+deb7u2 | - +- i386 | libglu1-mesa-dev | 8.0.5-4+deb7u2 | - +- i386 | libgluegen2-jni | 2.0-rc5-4 | - +- i386 | libglui-dev | 2.36-4 | - +- i386 | libglui2c2 | 2.36-4 | - +- i386 | libglw1-mesa | 8.0.0-1 | - +- i386 | libglw1-mesa-dev | 8.0.0-1 | - +- i386 | libgme-dev | 0.5.5-2 | - +- i386 | libgme0 | 0.5.5-2 | - +- i386 | libgmerlin-avdec-dev | 1.2.0~dfsg-1+b1 | - +- i386 | libgmerlin-avdec1 | 1.2.0~dfsg-1+b1 | - +- i386 | libgmerlin-common | 1.2.0~dfsg+1-1 | - +- i386 | libgmerlin-dev | 1.2.0~dfsg+1-1 | - +- i386 | libgmerlin0 | 1.2.0~dfsg+1-1 | - +- i386 | libgmime-2.6-0 | 2.6.10-1 | - +- i386 | libgmime-2.6-0-dbg | 2.6.10-1 | - +- i386 | libgmime-2.6-dev | 2.6.10-1 | - +- i386 | libgmlib-dev | 1.0.6-1 | - +- i386 | libgmlib0 | 1.0.6-1 | - +- i386 | libgmlib0-dbg | 1.0.6-1 | - +- i386 | libgmp-dev | 2:5.0.5+dfsg-2 | - +- i386 | libgmp-ocaml | 20021123-17+b3 | - +- i386 | libgmp-ocaml-dev | 20021123-17+b3 | - +- i386 | libgmp10 | 2:5.0.5+dfsg-2 | - +- i386 | libgmp3-dev | 2:5.0.5+dfsg-2 | - +- i386 | libgmpada-dbg | 0.0.20120331-1 | - +- i386 | libgmpada2 | 0.0.20120331-1 | - +- i386 | libgmpada3-dev | 0.0.20120331-1 | - +- i386 | libgmpxx4ldbl | 2:5.0.5+dfsg-2 | - ++ i386 | libgmsh-dev | - | 2.7.0.dfsg-1~bpo70+1 ++ i386 | libgmsh2 | - | 2.7.0.dfsg-1~bpo70+1 +- i386 | libgmt-dev | 4.5.7-2 | - +- i386 | libgmt4 | 4.5.7-2 | - +- i386 | libgmtk-dev | 1.0.6-1 | - +- i386 | libgmtk0 | 1.0.6-1 | - +- i386 | libgmtk0-dbg | 1.0.6-1 | - +- i386 | libgnadecommon-dbg | 1.6.2-9 | - +- i386 | libgnadecommon1 | 1.6.2-9 | - +- i386 | libgnadecommon2-dev | 1.6.2-9 | - +- i386 | libgnadeodbc-dbg | 1.6.2-9 | - +- i386 | libgnadeodbc2 | 1.6.2-9 | - +- i386 | libgnadeodbc2-dev | 1.6.2-9 | - +- i386 | libgnadesqlite3-2 | 1.6.2-9 | - +- i386 | libgnadesqlite3-2-dev | 1.6.2-9 | - +- i386 | libgnadesqlite3-dbg | 1.6.2-9 | - +- i386 | libgnat-4.6 | 4.6.3-8 | - +- i386 | libgnat-4.6-dbg | 4.6.3-8 | - +- i386 | libgnatprj4.6 | 4.6.3-8 | - +- i386 | libgnatprj4.6-dbg | 4.6.3-8 | - +- i386 | libgnatprj4.6-dev | 4.6.3-8 | - +- i386 | libgnatvsn4.6 | 4.6.3-8 | - +- i386 | libgnatvsn4.6-dbg | 4.6.3-8 | - +- i386 | libgnatvsn4.6-dev | 4.6.3-8 | - +- i386 | libgnelib-dev | 0.75+svn20091130-1+b1 | - +- i386 | libgnelib-doc | 0.75+svn20091130-1+b1 | - +- i386 | libgnelib0 | 0.75+svn20091130-1+b1 | - +- i386 | libgnelib0-dbg | 0.75+svn20091130-1+b1 | - +- i386 | libgnet-dev | 2.0.8-2.2 | - +- i386 | libgnet2.0-0 | 2.0.8-2.2 | - +- i386 | libgnokii-dev | 0.6.30+dfsg-1+b1 | - +- i386 | libgnokii6 | 0.6.30+dfsg-1+b1 | - +- i386 | libgnome-bluetooth-dev | 3.4.2-1 | - +- i386 | libgnome-bluetooth10 | 3.4.2-1 | - +- i386 | libgnome-desktop-2-17 | 2.32.1-2 | - +- i386 | libgnome-desktop-3-2 | 3.4.2-1 | - +- i386 | libgnome-desktop-3-dev | 3.4.2-1 | - +- i386 | libgnome-desktop-dev | 2.32.1-2 | - +- i386 | libgnome-keyring-dev | 3.4.1-1 | - +- i386 | libgnome-keyring0 | 3.4.1-1 | - +- i386 | libgnome-keyring0-dbg | 3.4.1-1 | - +- i386 | libgnome-keyring1.0-cil | 1.0.0-4 | - +- i386 | libgnome-keyring1.0-cil-dev | 1.0.0-4 | - +- i386 | libgnome-mag-dev | 1:0.16.3-1 | - +- i386 | libgnome-mag2 | 1:0.16.3-1 | - +- i386 | libgnome-media-profiles-3.0-0 | 3.0.0-1 | - +- i386 | libgnome-media-profiles-dev | 3.0.0-1 | - +- i386 | libgnome-menu-3-0 | 3.4.2-5 | - +- i386 | libgnome-menu-3-dev | 3.4.2-5 | - +- i386 | libgnome-menu-dev | 3.0.1-4 | - +- i386 | libgnome-menu2 | 3.0.1-4 | - +- i386 | libgnome-speech-dev | 1:0.4.25-5 | - +- i386 | libgnome-speech7 | 1:0.4.25-5 | - +- i386 | libgnome-vfsmm-2.6-1c2a | 2.26.0-1 | - +- i386 | libgnome-vfsmm-2.6-dev | 2.26.0-1 | - +- i386 | libgnome2-0 | 2.32.1-3 | - +- i386 | libgnome2-canvas-perl | 1.002-2+b2 | - +- i386 | libgnome2-dbg | 2.32.1-3 | - +- i386 | libgnome2-dev | 2.32.1-3 | - +- i386 | libgnome2-gconf-perl | 1.044-4 | - +- i386 | libgnome2-perl | 1.042-2+b2 | - +- i386 | libgnome2-vfs-perl | 1.081-3+b1 | - +- i386 | libgnome2-wnck-perl | 0.16-2+b2 | - +- i386 | libgnome2.0-cil-dev | 2.24.2-3 | - +- i386 | libgnome2.24-cil | 2.24.2-3 | - +- i386 | libgnomeada-dbg | 2.24.1-7 | - +- i386 | libgnomeada2.24.1 | 2.24.1-7 | - +- i386 | libgnomeada2.24.1-dev | 2.24.1-7 | - +- i386 | libgnomecanvas2-0 | 2.30.3-1.2 | - +- i386 | libgnomecanvas2-dbg | 2.30.3-1.2 | - +- i386 | libgnomecanvas2-dev | 2.30.3-1.2 | - +- i386 | libgnomecanvasmm-2.6-1c2a | 2.26.0-1 | - +- i386 | libgnomecanvasmm-2.6-dev | 2.26.0-1 | - +- i386 | libgnomecups1.0-1 | 0.2.3-5 | - +- i386 | libgnomecups1.0-dev | 0.2.3-5 | - +- i386 | libgnomekbd-dev | 3.4.0.2-1 | - +- i386 | libgnomekbd7 | 3.4.0.2-1 | - +- i386 | libgnomemm-2.6-1c2 | 2.30.0-1 | - +- i386 | libgnomemm-2.6-dev | 2.30.0-1 | - +- i386 | libgnomeprint2.2-0 | 2.18.8-3 | - +- i386 | libgnomeprint2.2-dev | 2.18.8-3 | - +- i386 | libgnomeprintui2.2-0 | 2.18.6-3 | - +- i386 | libgnomeprintui2.2-dev | 2.18.6-3 | - +- i386 | libgnomeui-0 | 2.24.5-2 | - +- i386 | libgnomeui-0-dbg | 2.24.5-2 | - +- i386 | libgnomeui-dev | 2.24.5-2 | - +- i386 | libgnomeuimm-2.6-1c2a | 2.28.0-1 | - +- i386 | libgnomeuimm-2.6-dev | 2.28.0-1 | - +- i386 | libgnomevfs2-0 | 1:2.24.4-2 | - +- i386 | libgnomevfs2-0-dbg | 1:2.24.4-2 | - +- i386 | libgnomevfs2-bin | 1:2.24.4-2 | - +- i386 | libgnomevfs2-dev | 1:2.24.4-2 | - +- i386 | libgnomevfs2-extra | 1:2.24.4-2 | - +- i386 | libgnuift0-dev | 0.1.14-12 | - +- i386 | libgnuift0c2a | 0.1.14-12 | - +- i386 | libgnuplot-ocaml-dev | 0.8.3-3 | - ++ i386 | libgnuradio-analog3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-atsc3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-atsc3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-audio3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-audio3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-blocks3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-channels3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-comedi3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-comedi3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-core3.5.3.2 | 3.5.3.2-1 | - +- i386 | libgnuradio-digital3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-digital3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-fcd3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-fcd3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-fcdproplus0 | - | 0.0.1.1.2c80be-3~bpo70+1 ++ i386 | libgnuradio-fec3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-fft3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-filter3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-iqbalance0 | - | 0.37.1.5.d4fd4d-1~bpo70+1 +- i386 | libgnuradio-noaa3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-noaa3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-osmosdr0.0.0 | - | 0.1.0.55.80c4af-2~bpo70~1 +- i386 | libgnuradio-pager3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-pager3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-pmt3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-qtgui3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-qtgui3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-runtime3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-trellis3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-trellis3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-uhd3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-uhd3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-video-sdl3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-video-sdl3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnuradio-vocoder3.5.3.2 | 3.5.3.2-1 | - ++ i386 | libgnuradio-vocoder3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-wavelet3.7.2.1 | - | 3.7.2.1-5~bpo70+1 ++ i386 | libgnuradio-wxgui3.7.2.1 | - | 3.7.2.1-5~bpo70+1 +- i386 | libgnustep-base-dev | 1.22.1-4 | - +- i386 | libgnustep-base1.22 | 1.22.1-4 | - +- i386 | libgnustep-base1.22-dbg | 1.22.1-4 | - +- i386 | libgnustep-dl2-0d | 0.12.0-9+nmu1 | - +- i386 | libgnustep-dl2-dev | 0.12.0-9+nmu1 | - +- i386 | libgnustep-gui-dev | 0.20.0-3 | - +- i386 | libgnustep-gui0.20 | 0.20.0-3 | - +- i386 | libgnustep-gui0.20-dbg | 0.20.0-3 | - +- i386 | libgnutls-dev | 2.12.20-7 | - +- i386 | libgnutls-openssl27 | 2.12.20-7 | - ++ i386 | libgnutls-xssl0 | - | 3.2.10-2~bpo70+3 +- i386 | libgnutls26 | 2.12.20-7 | - +- i386 | libgnutls26-dbg | 2.12.20-7 | - ++ i386 | libgnutls28 | - | 3.2.10-2~bpo70+3 ++ i386 | libgnutls28-dbg | - | 3.2.10-2~bpo70+3 ++ i386 | libgnutls28-dev | - | 3.2.10-2~bpo70+3 +- i386 | libgnutlsxx27 | 2.12.20-7 | - ++ i386 | libgnutlsxx28 | - | 3.2.10-2~bpo70+3 +- i386 | libgo0 | 4.7.2-5 | - +- i386 | libgo0-dbg | 4.7.2-5 | - +- i386 | libgoa-1.0-0 | 3.4.2-2 | - +- i386 | libgoa-1.0-dev | 3.4.2-2 | - +- i386 | libgoffice-0.8-8 | 0.8.17-1.2 | - +- i386 | libgoffice-0.8-dev | 0.8.17-1.2 | - +- i386 | libgoffice-dbg | 0.8.17-1.2 | - +- i386 | libgofigure-dev | 0.9.0-1+b2 | - +- i386 | libgofigure0 | 0.9.0-1+b2 | - +- i386 | libgomp1 | 4.7.2-5 | - +- i386 | libgomp1-dbg | 4.7.2-5 | - +- i386 | libgoo-canvas-perl | 0.06-1+b2 | - +- i386 | libgoocanvas-dev | 0.15-1 | - +- i386 | libgoocanvas3 | 0.15-1 | - +- i386 | libgoocanvasmm-1.0-5 | 0.15.4-1 | - +- i386 | libgoocanvasmm-dev | 0.15.4-1 | - +- i386 | libgoogle-perftools-dev | 2.0-2 | - +- i386 | libgoogle-perftools4 | 2.0-2 | - +- i386 | libgoogle-perftools4-dbg | 2.0-2 | - +- i386 | libgooglepinyin0 | 0.1.2-1 | - +- i386 | libgooglepinyin0-dbg | 0.1.2-1 | - +- i386 | libgooglepinyin0-dev | 0.1.2-1 | - +- i386 | libgpac-dbg | 0.5.0~dfsg0-1 | - +- i386 | libgpac-dev | 0.5.0~dfsg0-1 | - +- i386 | libgpac2 | 0.5.0~dfsg0-1 | - +- i386 | libgpds-dbg | 1.5.1-6 | - +- i386 | libgpds-dev | 1.5.1-6 | - +- i386 | libgpds0 | 1.5.1-6 | - +- i386 | libgpelaunch-dev | 0.14-6 | - +- i386 | libgpelaunch0 | 0.14-6 | - +- i386 | libgpelaunch0-dbg | 0.14-6 | - +- i386 | libgpepimc-dev | 0.9-4 | - +- i386 | libgpepimc0 | 0.9-4 | - +- i386 | libgpepimc0-dbg | 0.9-4 | - +- i386 | libgpeschedule-dev | 0.17-4 | - +- i386 | libgpeschedule0 | 0.17-4 | - +- i386 | libgpeschedule0-dbg | 0.17-4 | - +- i386 | libgpevtype-dev | 0.50-6 | - +- i386 | libgpevtype1 | 0.50-6 | - +- i386 | libgpevtype1-dbg | 0.50-6 | - +- i386 | libgpewidget-dev | 0.117-6 | - +- i386 | libgpewidget1 | 0.117-6 | - +- i386 | libgpewidget1-dbg | 0.117-6 | - +- i386 | libgpg-error-dev | 1.10-3.1 | - +- i386 | libgpg-error0 | 1.10-3.1 | - +- i386 | libgpgme++2 | 4:4.8.4-2 | - +! i386 | libgpgme11 | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! i386 | libgpgme11-dev | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +- i386 | libgphoto2-2 | 2.4.14-2 | - +- i386 | libgphoto2-2-dev | 2.4.14-2 | - +- i386 | libgphoto2-port0 | 2.4.14-2 | - +- i386 | libgpiv-mpi3 | 0.6.1-4 | - +- i386 | libgpiv3 | 0.6.1-4 | - +- i386 | libgpiv3-common | 0.6.1-4 | - +- i386 | libgpiv3-dbg | 0.6.1-4 | - +- i386 | libgpiv3-dev | 0.6.1-4 | - +- i386 | libgpm-dev | 1.20.4-6 | - +- i386 | libgpm2 | 1.20.4-6 | - +- i386 | libgpod-cil | 0.8.2-7 | - +- i386 | libgpod-cil-dev | 0.8.2-7 | - +- i386 | libgpod-common | 0.8.2-7 | - +- i386 | libgpod-dev | 0.8.2-7 | - +- i386 | libgpod-nogtk-dev | 0.8.2-7 | - +- i386 | libgpod4 | 0.8.2-7 | - +- i386 | libgpod4-nogtk | 0.8.2-7 | - +- i386 | libgportugol-dev | 1.1-2 | - +- i386 | libgportugol0 | 1.1-2 | - +! i386 | libgps-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libgps20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- i386 | libgraflib1-dev | 20061220+dfsg3-2 | - +- i386 | libgraflib1-gfortran | 20061220+dfsg3-2 | - +- i386 | libgrafx11-1-dev | 20061220+dfsg3-2 | - +- i386 | libgrafx11-1-gfortran | 20061220+dfsg3-2 | - +- i386 | libgrantlee-core0 | 0.1.4-1 | - +- i386 | libgrantlee-dev | 0.1.4-1 | - +- i386 | libgrantlee-gui0 | 0.1.4-1 | - +- i386 | libgraph4 | 2.26.3-14+deb7u1 | - +- i386 | libgraphics-libplot-perl | 2.2.2-5+b2 | - +- i386 | libgraphics-magick-perl | 1.3.16-1.1 | - +- i386 | libgraphicsmagick++1-dev | 1.3.16-1.1 | - +- i386 | libgraphicsmagick++3 | 1.3.16-1.1 | - +- i386 | libgraphicsmagick1-dev | 1.3.16-1.1 | - +- i386 | libgraphicsmagick3 | 1.3.16-1.1 | - +- i386 | libgraphite-dev | 1:2.3.1-0.2 | - +- i386 | libgraphite2-2.0.0 | 1.1.3-1 | - +- i386 | libgraphite2-2.0.0-dbg | 1.1.3-1 | - +- i386 | libgraphite2-dev | 1.1.3-1 | - +- i386 | libgraphite3 | 1:2.3.1-0.2 | - +- i386 | libgraphite3-dbg | 1:2.3.1-0.2 | - +- i386 | libgraphviz-dev | 2.26.3-14+deb7u1 | - +- i386 | libgretl1 | 1.9.9-1 | - +- i386 | libgretl1-dev | 1.9.9-1 | - +- i386 | libgrib-api-1.9.16 | 1.9.16-2+b1 | - +- i386 | libgrib-api-dev | 1.9.16-2+b1 | - +- i386 | libgrib-api-tools | 1.9.16-2+b1 | - +- i386 | libgrib2c-dev | 1.2.2-2+b1 | - +- i386 | libgrib2c0d | 1.2.2-2+b1 | - +- i386 | libgridsite-dev | 1.7.16-1 | - +- i386 | libgridsite1.7 | 1.7.16-1 | - +- i386 | libgrilo-0.1-0 | 0.1.19-1 | - +- i386 | libgrilo-0.1-bin | 0.1.19-1 | - +- i386 | libgrilo-0.1-dev | 0.1.19-1 | - +- i386 | libgringotts-dev | 1.2.10~pre3-1 | - +- i386 | libgringotts2 | 1.2.10~pre3-1 | - +- i386 | libgrits-dev | 0.7-1 | - +- i386 | libgrits4 | 0.7-1 | - +- i386 | libgrok-dev | 1.20110708.1-4 | - +- i386 | libgrok1 | 1.20110708.1-4 | - +- i386 | libgrss-1.0-0 | 0.5.0-1 | - +- i386 | libgrss-dev | 0.5.0-1 | - +- i386 | libgruel3.5.3.2 | 3.5.3.2-1 | - +- i386 | libgs-dev | 9.05~dfsg-6.3+deb7u1 | - +- i386 | libgs9 | 9.05~dfsg-6.3+deb7u1 | - +- i386 | libgsasl7 | 1.8.0-2 | - +- i386 | libgsasl7-dev | 1.8.0-2 | - +- i386 | libgsecuredelete-dev | 0.2-1 | - +- i386 | libgsecuredelete0 | 0.2-1 | - +- i386 | libgsf-1-114 | 1.14.21-2.1 | - +- i386 | libgsf-1-114-dbg | 1.14.21-2.1 | - +- i386 | libgsf-1-dev | 1.14.21-2.1 | - +- i386 | libgsf-bin | 1.14.21-2.1 | - +- i386 | libgsf-gnome-1-114 | 1.14.21-2.1 | - +- i386 | libgsf-gnome-1-114-dbg | 1.14.21-2.1 | - +- i386 | libgsf-gnome-1-dev | 1.14.21-2.1 | - +- i386 | libgsl0-dbg | 1.15+dfsg.2-2 | - +- i386 | libgsl0-dev | 1.15+dfsg.2-2 | - +- i386 | libgsl0ldbl | 1.15+dfsg.2-2 | - +- i386 | libgsm-tools | 1.0.13-4 | - +- i386 | libgsm0710-0 | 1.2.2-2 | - +- i386 | libgsm0710-dbg | 1.2.2-2 | - +- i386 | libgsm0710-dev | 1.2.2-2 | - +- i386 | libgsm0710mux-dbg | 0.11.2-1.1 | - +- i386 | libgsm0710mux-dev | 0.11.2-1.1 | - +- i386 | libgsm0710mux2 | 0.11.2-1.1 | - +- i386 | libgsm1 | 1.0.13-4 | - +- i386 | libgsm1-dbg | 1.0.13-4 | - +- i386 | libgsm1-dev | 1.0.13-4 | - +- i386 | libgsmme-dev | 1.10-13.2 | - +- i386 | libgsmme1c2a | 1.10-13.2 | - +- i386 | libgsmsd7 | 1.31.90-1+b1 | - +- i386 | libgsnmp0 | 0.3.0-1.1 | - +- i386 | libgsnmp0-dbg | 0.3.0-1.1 | - +- i386 | libgsnmp0-dev | 0.3.0-1.1 | - +- i386 | libgsoap2 | 2.8.7-2 | - +- i386 | libgsql-dev | 0.2.2-1.2+b1 | - +- i386 | libgsql0 | 0.2.2-1.2+b1 | - +- i386 | libgss-dbg | 1.0.2-1 | - +- i386 | libgss-dev | 1.0.2-1 | - +- i386 | libgss3 | 1.0.2-1 | - +- i386 | libgssapi-krb5-2 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libgssapi-perl | 0.28-2 | - +- i386 | libgssapi3-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libgssdp-1.0-3 | 0.12.2.1-2 | - +- i386 | libgssdp-1.0-dbg | 0.12.2.1-2 | - +- i386 | libgssdp-1.0-dev | 0.12.2.1-2 | - +- i386 | libgssglue-dev | 0.4-2 | - +- i386 | libgssglue1 | 0.4-2 | - +- i386 | libgssrpc4 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libgst-dev | 3.2.4-2 | - +- i386 | libgst7 | 3.2.4-2 | - +- i386 | libgstbuzztard-dev | 0.5.0-2+deb7u1 | - +- i386 | libgstbuzztard0 | 0.5.0-2+deb7u1 | - +- i386 | libgstreamer-interfaces-perl | 0.06-2 | - +- i386 | libgstreamer-ocaml | 0.1.0-3+b1 | - +- i386 | libgstreamer-ocaml-dev | 0.1.0-3+b1 | - +- i386 | libgstreamer-perl | 0.17-1 | - +- i386 | libgstreamer-plugins-bad0.10-0 | 0.10.23-7.1 | - +- i386 | libgstreamer-plugins-bad0.10-dev | 0.10.23-7.1 | - ++ i386 | libgstreamer-plugins-bad1.0-0 | - | 1.0.8-1~bpo70+1 ++ i386 | libgstreamer-plugins-bad1.0-dev | - | 1.0.8-1~bpo70+1 +- i386 | libgstreamer-plugins-base0.10-0 | 0.10.36-1.1 | - +- i386 | libgstreamer-plugins-base0.10-dev | 0.10.36-1.1 | - ++ i386 | libgstreamer-plugins-base1.0-0 | - | 1.0.8-1~bpo70+1 ++ i386 | libgstreamer-plugins-base1.0-dev | - | 1.0.8-1~bpo70+1 +- i386 | libgstreamer0.10-0 | 0.10.36-1.2 | - +- i386 | libgstreamer0.10-0-dbg | 0.10.36-1.2 | - +- i386 | libgstreamer0.10-dev | 0.10.36-1.2 | - +- i386 | libgstreamer0.9-cil | 0.9.2-4 | - ++ i386 | libgstreamer1.0-0 | - | 1.0.8-1~bpo70+1 ++ i386 | libgstreamer1.0-0-dbg | - | 1.0.8-1~bpo70+1 ++ i386 | libgstreamer1.0-dev | - | 1.0.8-1~bpo70+1 +- i386 | libgstrtspserver-0.10-0 | 0.10.8-3 | - +- i386 | libgstrtspserver-0.10-dev | 0.10.8-3 | - +- i386 | libgtest-dev | 1.6.0-2 | - +- i386 | libgtextutils-dev | 0.6.2-1 | - +- i386 | libgtextutils0 | 0.6.2-1 | - +- i386 | libgtg-dev | 0.2+dfsg-1 | - +- i386 | libgtg0 | 0.2+dfsg-1 | - +- i386 | libgtk-3-0 | 3.4.2-7 | - +- i386 | libgtk-3-0-dbg | 3.4.2-7 | - +- i386 | libgtk-3-bin | 3.4.2-7 | - +- i386 | libgtk-3-dev | 3.4.2-7 | - +- i386 | libgtk-vnc-1.0-0 | 0.5.0-3.1 | - +- i386 | libgtk-vnc-1.0-0-dbg | 0.5.0-3.1 | - +- i386 | libgtk-vnc-1.0-dev | 0.5.0-3.1 | - +- i386 | libgtk-vnc-2.0-0 | 0.5.0-3.1 | - +- i386 | libgtk-vnc-2.0-0-dbg | 0.5.0-3.1 | - +- i386 | libgtk-vnc-2.0-dev | 0.5.0-3.1 | - +- i386 | libgtk2-gladexml-perl | 1.007-1+b2 | - +- i386 | libgtk2-gst | 3.2.4-2 | - +- i386 | libgtk2-imageview-perl | 0.05-1+b2 | - +- i386 | libgtk2-notify-perl | 0.05-3+b1 | - +- i386 | libgtk2-perl | 2:1.244-1 | - +- i386 | libgtk2-sourceview2-perl | 0.10-1+b2 | - +- i386 | libgtk2-spell-perl | 1.04-1 | - +- i386 | libgtk2-trayicon-perl | 0.06-1+b2 | - +- i386 | libgtk2-traymanager-perl | 0.05-2+b2 | - +- i386 | libgtk2-unique-perl | 0.05-1+b2 | - +- i386 | libgtk2.0-0 | 2.24.10-2 | - +- i386 | libgtk2.0-0-dbg | 2.24.10-2 | - +- i386 | libgtk2.0-bin | 2.24.10-2 | - +- i386 | libgtk2.0-cil | 2.12.10-5 | - +- i386 | libgtk2.0-cil-dev | 2.12.10-5 | - +- i386 | libgtk2.0-dev | 2.24.10-2 | - +- i386 | libgtkada-bin | 2.24.1-7 | - +- i386 | libgtkada-dbg | 2.24.1-7 | - +- i386 | libgtkada2.24.1 | 2.24.1-7 | - +- i386 | libgtkada2.24.1-dev | 2.24.1-7 | - +- i386 | libgtkdatabox-0.9.1-1 | 1:0.9.1.1-4 | - +- i386 | libgtkdatabox-0.9.1-1-dev | 1:0.9.1.1-4 | - +- i386 | libgtkdatabox-0.9.1-1-glade | 1:0.9.1.1-4 | - +- i386 | libgtkdatabox-0.9.1-1-libglade | 1:0.9.1.1-4 | - +- i386 | libgtkgl2.0-1 | 2.0.1-2 | - +- i386 | libgtkgl2.0-dev | 2.0.1-2 | - +- i386 | libgtkglada-dbg | 2.24.1-7 | - +- i386 | libgtkglada2.24.1 | 2.24.1-7 | - +- i386 | libgtkglada2.24.1-dev | 2.24.1-7 | - +- i386 | libgtkglext1 | 1.2.0-2 | - +- i386 | libgtkglext1-dbg | 1.2.0-2 | - +- i386 | libgtkglext1-dev | 1.2.0-2 | - +- i386 | libgtkglextmm-x11-1.2-0 | 1.2.0-4.1 | - +- i386 | libgtkglextmm-x11-1.2-dev | 1.2.0-4.1 | - +- i386 | libgtkhex-3-0 | 3.4.1-1 | - +- i386 | libgtkhex-3-dev | 3.4.1-1 | - +- i386 | libgtkhotkey-dev | 0.2.1-3 | - +- i386 | libgtkhotkey1 | 0.2.1-3 | - +- i386 | libgtkhtml-4.0-0 | 4.4.4-1 | - +- i386 | libgtkhtml-4.0-dbg | 4.4.4-1 | - +- i386 | libgtkhtml-4.0-dev | 4.4.4-1 | - +- i386 | libgtkhtml-editor-3.14-0 | 3.32.2-2.1 | - +- i386 | libgtkhtml-editor-3.14-dev | 3.32.2-2.1 | - +- i386 | libgtkhtml-editor-4.0-0 | 4.4.4-1 | - +- i386 | libgtkhtml-editor-4.0-dev | 4.4.4-1 | - +- i386 | libgtkhtml3.14-19 | 3.32.2-2.1 | - +- i386 | libgtkhtml3.14-cil-dev | 2.26.0-8 | - +- i386 | libgtkhtml3.14-dbg | 3.32.2-2.1 | - +- i386 | libgtkhtml3.14-dev | 3.32.2-2.1 | - +- i386 | libgtkhtml3.16-cil | 2.26.0-8 | - +- i386 | libgtkimageview-dev | 1.6.4+dfsg-0.1 | - +- i386 | libgtkimageview0 | 1.6.4+dfsg-0.1 | - +- i386 | libgtkmathview-bin | 0.8.0-8 | - +- i386 | libgtkmathview-dev | 0.8.0-8 | - +- i386 | libgtkmathview0c2a | 0.8.0-8 | - +- i386 | libgtkmm-2.4-1c2a | 1:2.24.2-1 | - +- i386 | libgtkmm-2.4-dbg | 1:2.24.2-1 | - +- i386 | libgtkmm-2.4-dev | 1:2.24.2-1 | - +- i386 | libgtkmm-3.0-1 | 3.4.2-1 | - +- i386 | libgtkmm-3.0-dbg | 3.4.2-1 | - +- i386 | libgtkmm-3.0-dev | 3.4.2-1 | - +- i386 | libgtkpod-dev | 2.1.2-1 | - +- i386 | libgtkpod1 | 2.1.2-1 | - +- i386 | libgtksourceview-3.0-0 | 3.4.2-1 | - +- i386 | libgtksourceview-3.0-dev | 3.4.2-1 | - +- i386 | libgtksourceview2-2.0-cil | 2.26.0-8 | - +- i386 | libgtksourceview2-cil-dev | 2.26.0-8 | - +- i386 | libgtksourceview2.0-0 | 2.10.4-1 | - +- i386 | libgtksourceview2.0-dev | 2.10.4-1 | - +- i386 | libgtksourceviewmm-3.0-0 | 3.2.0-1 | - +- i386 | libgtksourceviewmm-3.0-dbg | 3.2.0-1 | - +- i386 | libgtksourceviewmm-3.0-dev | 3.2.0-1 | - +- i386 | libgtkspell-3-0 | 3.0.0~hg20110814-1 | - +- i386 | libgtkspell-3-dev | 3.0.0~hg20110814-1 | - +- i386 | libgtkspell-dev | 2.0.16-1 | - +- i386 | libgtkspell0 | 2.0.16-1 | - +- i386 | libgtkstylus | 0.3-2 | - +- i386 | libgtop2-7 | 2.28.4-3 | - +- i386 | libgtop2-dev | 2.28.4-3 | - +- i386 | libgts-0.7-5 | 0.7.6+darcs110121-1.1 | - +- i386 | libgts-bin | 0.7.6+darcs110121-1.1 | - +- i386 | libgts-dbg | 0.7.6+darcs110121-1.1 | - +- i386 | libgts-dev | 0.7.6+darcs110121-1.1 | - +- i386 | libguac-client-rdp0 | 0.6.0-1 | - +- i386 | libguac-client-vnc0 | 0.6.0-1 | - +- i386 | libguac-dev | 0.6.0-2 | - +- i386 | libguac3 | 0.6.0-2 | - +- i386 | libguard-perl | 1.022-1+b1 | - +- i386 | libgucharmap-2-90-7 | 1:3.4.1.1-2.1 | - +- i386 | libgucharmap-2-90-dev | 1:3.4.1.1-2.1 | - +- i386 | libgudev-1.0-0 | 175-7.2 | - +- i386 | libgudev-1.0-dev | 175-7.2 | - +- i386 | libguess-dev | 1.1-1 | - +- i386 | libguess1 | 1.1-1 | - +- i386 | libguestfs-dev | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-gobject-1.0-0 | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-gobject-dev | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-java | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-ocaml | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-ocaml-dev | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-perl | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs-tools | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs0 | 1:1.18.1-1+deb7u3 | - +- i386 | libguestfs0-dbg | 1:1.18.1-1+deb7u3 | - +- i386 | libguichan-0.8.1-1 | 0.8.2-10+b1 | - +- i386 | libguichan-0.8.1-1-dbg | 0.8.2-10+b1 | - +- i386 | libguichan-allegro-0.8.1-1 | 0.8.2-10+b1 | - +- i386 | libguichan-dev | 0.8.2-10+b1 | - +- i386 | libguichan-opengl-0.8.1-1 | 0.8.2-10+b1 | - +- i386 | libguichan-sdl-0.8.1-1 | 0.8.2-10+b1 | - +- i386 | libguile-ltdl-1 | 1.6.8-10.3 | - +- i386 | libgupnp-1.0-4 | 0.18.4-1 | - +- i386 | libgupnp-1.0-dbg | 0.18.4-1 | - +- i386 | libgupnp-1.0-dev | 0.18.4-1 | - +- i386 | libgupnp-av-1.0-2 | 0.10.3-1 | - +- i386 | libgupnp-av-1.0-dbg | 0.10.3-1 | - +- i386 | libgupnp-av-1.0-dev | 0.10.3-1 | - +- i386 | libgupnp-dlna-1.0-2 | 0.6.6-1 | - +- i386 | libgupnp-dlna-1.0-dbg | 0.6.6-1 | - +- i386 | libgupnp-dlna-1.0-dev | 0.6.6-1 | - +- i386 | libgupnp-igd-1.0-4 | 0.2.1-2 | - +- i386 | libgupnp-igd-1.0-dbg | 0.2.1-2 | - +- i386 | libgupnp-igd-1.0-dev | 0.2.1-2 | - +- i386 | libgusb-dev | 0.1.3-5 | - +- i386 | libgusb2 | 0.1.3-5 | - +- i386 | libgutenprint-dev | 5.2.9-1 | - +- i386 | libgutenprint2 | 5.2.9-1 | - +- i386 | libgutenprintui2-1 | 5.2.9-1 | - +- i386 | libgutenprintui2-dev | 5.2.9-1 | - +- i386 | libguytools2 | 2.0.1-1.1 | - +- i386 | libguytools2-dev | 2.0.1-1.1 | - +- i386 | libgv-guile | 2.26.3-14+deb7u1 | - +- i386 | libgv-lua | 2.26.3-14+deb7u1 | - +- i386 | libgv-perl | 2.26.3-14+deb7u1 | - +- i386 | libgv-php5 | 2.26.3-14+deb7u1 | - +- i386 | libgv-python | 2.26.3-14+deb7u1 | - +- i386 | libgv-ruby | 2.26.3-14+deb7u1 | - +- i386 | libgv-tcl | 2.26.3-14+deb7u1 | - +- i386 | libgvc5 | 2.26.3-14+deb7u1 | - +- i386 | libgvc5-plugins-gtk | 2.26.3-14+deb7u1 | - +- i386 | libgvnc-1.0-0 | 0.5.0-3.1 | - +- i386 | libgvnc-1.0-0-dbg | 0.5.0-3.1 | - +- i386 | libgvnc-1.0-dev | 0.5.0-3.1 | - +- i386 | libgvpr1 | 2.26.3-14+deb7u1 | - +- i386 | libgweather-3-0 | 3.4.1-1+build1 | - +- i386 | libgweather-3-dev | 3.4.1-1+build1 | - ++ i386 | libgwengui-cpp0 | - | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-fox16-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-gtk2-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-qt4-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60-dbg | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60-dev | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +- i386 | libgwrap-runtime-dev | 1.9.14-1.1 | - +- i386 | libgwrap-runtime2 | 1.9.14-1.1 | - +- i386 | libgwyddion2-0 | 2.28-2 | - +- i386 | libgwyddion20-dev | 2.28-2 | - +- i386 | libgxps-dev | 0.2.2-2 | - +- i386 | libgxps-utils | 0.2.2-2 | - +- i386 | libgxps2 | 0.2.2-2 | - +- i386 | libgyoto0 | 0.0.3-5 | - +- i386 | libgyoto0-dev | 0.0.3-5 | - ++ i386 | libgyoto1 | - | 0.1.0-2~bpo70+1 ++ i386 | libgyoto1-dev | - | 0.1.0-2~bpo70+1 +- i386 | libgzstream-tulip-3.7.0 | 3.7.0dfsg-4 | - +- i386 | libh323-1.24.0 | 1.24.0~dfsg2-1 | - +- i386 | libh323-dbg | 1.24.0~dfsg2-1 | - +- i386 | libh323plus-dev | 1.24.0~dfsg2-1 | - ++ i386 | libhackrf-dev | - | 2013.07.1.16.d5cebd-2~bpo70+1 ++ i386 | libhackrf0 | - | 2013.07.1.16.d5cebd-2~bpo70+1 +- i386 | libhaildb-dbg | 2.3.2-1.2 | - +- i386 | libhaildb-dev | 2.3.2-1.2 | - +- i386 | libhaildb6 | 2.3.2-1.2 | - +- i386 | libhal-dev | 0.5.14-8 | - +- i386 | libhal-storage-dev | 0.5.14-8 | - +- i386 | libhal-storage1 | 0.5.14-8 | - +- i386 | libhal1 | 0.5.14-8 | - +- i386 | libhamlib++-dev | 1.2.15.1-1 | - +- i386 | libhamlib-dev | 1.2.15.1-1 | - +- i386 | libhamlib-utils | 1.2.15.1-1 | - +- i386 | libhamlib2 | 1.2.15.1-1 | - +- i386 | libhamlib2++c2 | 1.2.15.1-1 | - +- i386 | libhamlib2-perl | 1.2.15.1-1 | - +- i386 | libhamlib2-tcl | 1.2.15.1-1 | - +- i386 | libhandoff-dev | 0.1-5 | - +- i386 | libhandoff0 | 0.1-5 | - +- i386 | libhandoff0-dbg | 0.1-5 | - +- i386 | libhangul-dev | 0.1.0-2 | - +- i386 | libhangul1 | 0.1.0-2 | - +- i386 | libhangul1-dbg | 0.1.0-2 | - +- i386 | libharminv-dev | 1.3.1-9 | - +- i386 | libharminv2 | 1.3.1-9 | - +- i386 | libhash-fieldhash-perl | 0.12-2 | - +- i386 | libhashkit-dev | 1.0.8-1 | - +- i386 | libhashkit2 | 1.0.8-1 | - ++ i386 | libhavege-dev | - | 1.7b-2~bpo70+1 ++ i386 | libhavege1 | - | 1.7b-2~bpo70+1 ++ i386 | libhavege1-dbg | - | 1.7b-2~bpo70+1 +- i386 | libhawknl | 1.6.8+dfsg2-1 | - +- i386 | libhawknl-dbg | 1.6.8+dfsg2-1 | - +- i386 | libhawknl-dev | 1.6.8+dfsg2-1 | - +- i386 | libhbaapi-dev | 2.2.5-1 | - +- i386 | libhbaapi2 | 2.2.5-1 | - +- i386 | libhbalinux-dev | 1.0.14-1 | - +- i386 | libhbalinux2 | 1.0.14-1 | - +- i386 | libhcrypto4-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libhd-dev | 16.0-2.2 | - +- i386 | libhd16 | 16.0-2.2 | - +- i386 | libhdate-dev | 1.6-1 | - +- i386 | libhdate-perl | 1.6-1 | - +- i386 | libhdate1 | 1.6-1 | - +- i386 | libhdb9-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libhdf4-0 | 4.2r4-13 | - +- i386 | libhdf4-0-alt | 4.2r4-13 | - +- i386 | libhdf4-alt-dev | 4.2r4-13 | - +- i386 | libhdf4-dev | 4.2r4-13 | - +- i386 | libhdf5-7 | 1.8.8-9 | - +- i386 | libhdf5-7-dbg | 1.8.8-9 | - +- i386 | libhdf5-dev | 1.8.8-9 | - +- i386 | libhdf5-mpi-dev | 1.8.8-9 | - +- i386 | libhdf5-mpich2-7 | 1.8.8-9 | - +- i386 | libhdf5-mpich2-7-dbg | 1.8.8-9 | - +- i386 | libhdf5-mpich2-dev | 1.8.8-9 | - +- i386 | libhdf5-openmpi-7 | 1.8.8-9 | - +- i386 | libhdf5-openmpi-7-dbg | 1.8.8-9 | - +- i386 | libhdf5-openmpi-dev | 1.8.8-9 | - +- i386 | libhdf5-serial-dev | 1.8.8-9 | - +- i386 | libhdfeos-dev | 2.17v1.00.dfsg.1-3 | - +- i386 | libhdfeos0 | 2.17v1.00.dfsg.1-3 | - +- i386 | libhdfeos5-ruby1.8 | 1.0-2+b1 | - +- i386 | libhdfeos5-ruby1.8-dbg | 1.0-2+b1 | - +- i386 | libhdfeos5-ruby1.9.1 | 1.0-2+b1 | - +- i386 | libhdfeos5-ruby1.9.1-dbg | 1.0-2+b1 | - +- i386 | libhdhomerun-dev | 20120405-1 | - +- i386 | libhdhomerun1 | 20120405-1 | - +- i386 | libhe5-hdfeos-dev | 5.1.13.dfsg.1-3 | - +- i386 | libhe5-hdfeos0 | 5.1.13.dfsg.1-3 | - +- i386 | libheartbeat2 | 1:3.0.5-3 | - +- i386 | libheartbeat2-dev | 1:3.0.5-3 | - +- i386 | libheimbase1-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libheimdal-kadm5-perl | 0.08-4 | - +- i386 | libheimntlm0-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libhepmc-dev | 2.06.09-1 | - +- i386 | libhepmc4 | 2.06.09-1 | - +- i386 | libhepmcfio-dev | 2.06.09-1 | - +- i386 | libhepmcfio4 | 2.06.09-1 | - +- i386 | libhepmcinterface8 | 8.1.65-1 | - +- i386 | libhepmcinterface8-dev | 8.1.65-1 | - +- i386 | libherwig59-2-dev | 20061220+dfsg3-2 | - +- i386 | libherwig59-2-gfortran | 20061220+dfsg3-2 | - +- i386 | libhesiod-dev | 3.0.2-21 | - +- i386 | libhesiod0 | 3.0.2-21 | - +- i386 | libhfsp-dev | 1.0.4-12 | - +- i386 | libhfsp0 | 1.0.4-12 | - +- i386 | libhighgui-dev | 2.3.1-11 | - +- i386 | libhighgui2.3 | 2.3.1-11 | - +- i386 | libhighlight-perl | 3.9-1 | - +- i386 | libhippocanvas-1-0 | 0.3.1-1.1 | - +- i386 | libhippocanvas-dev | 0.3.1-1.1 | - +- i386 | libhiredis-dbg | 0.10.1-7 | - +- i386 | libhiredis-dev | 0.10.1-7 | - +- i386 | libhiredis0.10 | 0.10.1-7 | - +! i386 | libhivex-bin | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-ocaml | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-ocaml-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex0 | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex0-dbg | 1.3.6-2 | 1.3.9-1~bpo70+1 +- i386 | libhkl-dbg | 4.0.3-4 | - +- i386 | libhkl-dev | 4.0.3-4 | - +- i386 | libhkl4 | 4.0.3-4 | - +- i386 | libhmsbeagle-dev | 1.0-6 | - +- i386 | libhmsbeagle-java | 1.0-6 | - +- i386 | libhmsbeagle1 | 1.0-6 | - +- i386 | libhocr-dev | 0.10.17-1+b2 | - +- i386 | libhocr-python | 0.10.17-1+b2 | - +- i386 | libhocr0 | 0.10.17-1+b2 | - +! i386 | libhogweed2 | 2.4-3 | 2.7.1-1~bpo70+1 +- i386 | libhpdf-2.2.1 | 2.2.1-1 | - +- i386 | libhpdf-dev | 2.2.1-1 | - +- i386 | libhpmud-dev | 3.12.6-3.1+deb7u1 | - +- i386 | libhpmud0 | 3.12.6-3.1+deb7u1 | - +- i386 | libhsclient-dev | 1.1.0-7-g1044a28-1 | - +- i386 | libhsm-bin | 1:1.3.9-5 | - +- i386 | libhtml-parser-perl | 3.69-2 | - +- i386 | libhtml-strip-perl | 1.06-1+b2 | - +- i386 | libhtml-template-pro-perl | 0.9509-1 | - +- i386 | libhtml-tidy-perl | 1.50-1+b2 | - +- i386 | libhtmlcxx-dev | 0.85-2 | - +- i386 | libhtmlcxx3 | 0.85-2 | - +- i386 | libhtp-dev | 0.2.6-2 | - +- i386 | libhtp1 | 0.2.6-2 | - +- i386 | libhtsengine-dev | 1.06-1 | - +- i386 | libhtsengine1 | 1.06-1 | - +- i386 | libhttp-ocaml-dev | 0.1.5-1+b2 | - +- i386 | libhttp-parser-xs-perl | 0.14-1+b1 | - +- i386 | libhttrack-dev | 3.46.1-1 | - +- i386 | libhttrack2 | 3.46.1-1 | - +- i386 | libhugs-alut-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-base-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-cabal-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-fgl-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-glut-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-haskell-src-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-haskell98-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-haxml-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-hgl-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-hunit-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-mtl-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-network-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-openal-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-opengl-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-parsec-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-quickcheck-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-stm-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-time-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-unix-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-x11-bundled | 98.200609.21-5.3 | - +- i386 | libhugs-xhtml-bundled | 98.200609.21-5.3 | - +- i386 | libhunspell-1.3-0 | 1.3.2-4 | - +- i386 | libhunspell-1.3-0-dbg | 1.3.2-4 | - +- i386 | libhunspell-dev | 1.3.2-4 | - +- i386 | libhwloc-dev | 1.4.1-4 | - +- i386 | libhwloc5 | 1.4.1-4 | - +- i386 | libhx-dev | 3.12.1-1 | - +- i386 | libhx28 | 3.12.1-1 | - +- i386 | libhx509-5-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libhyantes-dev | 1.3.0-1 | - +- i386 | libhyantes0 | 1.3.0-1 | - +- i386 | libhyphen-dev | 2.8.3-2 | - +- i386 | libhyphen0 | 2.8.3-2 | - +- i386 | libhypre-2.8.0b | 2.8.0b-1 | - +- i386 | libhz-dev | 0.3.16-3 | - +- i386 | libhz0 | 0.3.16-3 | - +- i386 | libib-util | 2.5.2.26540.ds4-1~deb7u1 | - +- i386 | libibcm-dev | 1.0.4-1.1 | - +- i386 | libibcm1 | 1.0.4-1.1 | - +- i386 | libibcommon-dev | 1.1.2-20090314-1 | - +- i386 | libibcommon1 | 1.1.2-20090314-1 | - +- i386 | libibdm-dev | 1.2-OFED-1.4.2-1.3 | - +- i386 | libibdm1 | 1.2-OFED-1.4.2-1.3 | - +- i386 | libibmad-dev | 1.2.3-20090314-1.1 | - +- i386 | libibmad1 | 1.2.3-20090314-1.1 | - +- i386 | libibtk-dev | 0.0.14-12 | - +- i386 | libibtk0 | 0.0.14-12 | - +- i386 | libibumad-dev | 1.2.3-20090314-1.1 | - +- i386 | libibumad1 | 1.2.3-20090314-1.1 | - +! i386 | libibus-1.0-0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | libibus-1.0-dev | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +- i386 | libibus-qt-dev | 1.3.1-2.1 | - +- i386 | libibus-qt1 | 1.3.1-2.1 | - +- i386 | libibverbs-dev | 1.1.6-1 | - +- i386 | libibverbs1 | 1.1.6-1 | - +- i386 | libibverbs1-dbg | 1.1.6-1 | - +- i386 | libical-dbg | 0.48-2 | - +- i386 | libical-dev | 0.48-2 | - +- i386 | libical0 | 0.48-2 | - +- i386 | libicapapi-dev | 1:0.1.6-1.1 | - +- i386 | libicapapi0 | 1:0.1.6-1.1 | - +- i386 | libicapapi0-dbg | 1:0.1.6-1.1 | - +- i386 | libicc-dev | 2.12+argyll1.4.0-8 | - +- i386 | libicc-utils-dev | 1.6.4-1+b1 | - +- i386 | libicc-utils2 | 1.6.4-1+b1 | - +- i386 | libicc2 | 2.12+argyll1.4.0-8 | - +- i386 | libice-dev | 2:1.0.8-2 | - +- i386 | libice6 | 2:1.0.8-2 | - +- i386 | libice6-dbg | 2:1.0.8-2 | - +- i386 | libicebox34 | 3.4.2-8.2 | - +- i386 | libicedb34 | 3.4.2-8.2 | - +- i386 | libicee-dev | 1.2.0-6.1 | - +- i386 | libicee12 | 1.2.0-6.1 | - +- i386 | libicegrid34 | 3.4.2-8.2 | - +- i386 | libicepatch2-34 | 3.4.2-8.2 | - +- i386 | libicessl34 | 3.4.2-8.2 | - +- i386 | libicestorm34 | 3.4.2-8.2 | - +- i386 | libiceutil34 | 3.4.2-8.2 | - +- i386 | libicexml34 | 3.4.2-8.2 | - +- i386 | libicns-dev | 0.8.1-1 | - +- i386 | libicns1 | 0.8.1-1 | - +- i386 | libiconv-hook-dev | 0.0.20021209-10 | - +- i386 | libiconv-hook1 | 0.0.20021209-10 | - +- i386 | libics-dev | 1.5.2-3 | - +- i386 | libics0 | 1.5.2-3 | - +- i386 | libicu-dev | 4.8.1.1-12+deb7u1 | - +- i386 | libicu48 | 4.8.1.1-12+deb7u1 | - +- i386 | libicu48-dbg | 4.8.1.1-12+deb7u1 | - +- i386 | libid3-3.8.3-dev | 3.8.3-15 | - +- i386 | libid3-3.8.3c2a | 3.8.3-15 | - +- i386 | libid3-tools | 3.8.3-15 | - +- i386 | libid3tag0 | 0.15.1b-10 | - +- i386 | libid3tag0-dev | 0.15.1b-10 | - +- i386 | libident | 0.22-3 | - +- i386 | libident-dev | 0.22-3 | - +- i386 | libidl-dev | 0.8.14-0.2 | - +- i386 | libidl0 | 0.8.14-0.2 | - +- i386 | libidn11 | 1.25-2 | - +- i386 | libidn11-dev | 1.25-2 | - +- i386 | libidn2-0 | 0.8-2 | - +- i386 | libidn2-0-dbg | 0.8-2 | - +- i386 | libidn2-0-dev | 0.8-2 | - +- i386 | libido-0.1-0 | 0.3.4-1 | - +- i386 | libido-0.1-dev | 0.3.4-1 | - +- i386 | libido3-0.1-0 | 0.3.4-1 | - +- i386 | libido3-0.1-dev | 0.3.4-1 | - +- i386 | libidzebra-2.0-0 | 2.0.44-3 | - +- i386 | libidzebra-2.0-dev | 2.0.44-3 | - +- i386 | libidzebra-2.0-mod-alvis | 2.0.44-3 | - +- i386 | libidzebra-2.0-mod-dom | 2.0.44-3 | - +- i386 | libidzebra-2.0-mod-grs-marc | 2.0.44-3 | - +- i386 | libidzebra-2.0-mod-grs-regx | 2.0.44-3 | - +- i386 | libidzebra-2.0-mod-grs-xml | 2.0.44-3 | - +- i386 | libidzebra-2.0-mod-text | 2.0.44-3 | - +- i386 | libidzebra-2.0-modules | 2.0.44-3 | - +- i386 | libiec16022-0 | 0.2.4-1 | - +- i386 | libiec16022-dev | 0.2.4-1 | - +- i386 | libiec61883-0 | 1.2.0-0.1 | - +- i386 | libiec61883-dev | 1.2.0-0.1 | - +- i386 | libieee1284-3 | 0.2.11-10 | - +- i386 | libieee1284-3-dev | 0.2.11-10 | - +- i386 | libifd-cyberjack6 | 3.99.5final.sp03-1 | - +- i386 | libifp-dev | 1.0.0.2-5 | - +- i386 | libifp4 | 1.0.0.2-5 | - +- i386 | libifstat-dev | 1.1-8 | - +- i386 | libigraph0 | 0.5.4-2 | - +- i386 | libigraph0-dev | 0.5.4-2 | - +- i386 | libigstk4 | 4.4.0-2+b1 | - +- i386 | libigstk4-dbg | 4.4.0-2+b1 | - +- i386 | libigstk4-dev | 4.4.0-2+b1 | - +- i386 | libijs-0.35 | 0.35-8 | - +- i386 | libijs-dev | 0.35-8 | - +- i386 | libiksemel-dev | 1.2-4 | - +- i386 | libiksemel-utils | 1.2-4 | - +- i386 | libiksemel3 | 1.2-4 | - +- i386 | libikvm-native | 7.0.4335.0+ds-1 | - +- i386 | libilmbase-dev | 1.0.1-4 | - +- i386 | libilmbase6 | 1.0.1-4 | - +- i386 | libimage-exif-perl | 2.01-1 | - +- i386 | libimage-imlib2-perl | 2.03-1+b1 | - +- i386 | libimage-librsvg-perl | 0.07-6+b1 | - +- i386 | libimage-seek-perl | 0.02-1+b2 | - +- i386 | libimager-perl | 0.91+dfsg-2 | - +- i386 | libimager-qrcode-perl | 0.033-1+b1 | - +- i386 | libimdi-dev | 1.4.0-8 | - +- i386 | libimdi0 | 1.4.0-8 | - +- i386 | libiml-dev | 1.0.3-4.2 | - +- i386 | libiml0 | 1.0.3-4.2 | - +- i386 | libimlib2 | 1.4.5-1 | - +- i386 | libimlib2-dev | 1.4.5-1 | - +- i386 | libimlib2-ruby | 0.5.2-2.1 | - +- i386 | libimobiledevice-dev | 1.1.1-4 | - +- i386 | libimobiledevice-utils | 1.1.1-4 | - +- i386 | libimobiledevice2 | 1.1.1-4 | - +- i386 | libimobiledevice2-dbg | 1.1.1-4 | - +- i386 | libindi-dev | 0.9.1-2 | - +- i386 | libindi0b | 0.9.1-2 | - +- i386 | libindicate-dev | 0.6.92-1 | - +- i386 | libindicate-gtk-dev | 0.6.92-1 | - +- i386 | libindicate-gtk3 | 0.6.92-1 | - +- i386 | libindicate-gtk3-3 | 0.6.92-1 | - +- i386 | libindicate-gtk3-dev | 0.6.92-1 | - +- i386 | libindicate-qt-dev | 0.2.5.91-5 | - +- i386 | libindicate-qt1 | 0.2.5.91-5 | - +- i386 | libindicate5 | 0.6.92-1 | - +- i386 | libindicator-dev | 0.5.0-1 | - +- i386 | libindicator-messages-status-provider-dev | 0.6.0-1 | - +- i386 | libindicator-messages-status-provider1 | 0.6.0-1 | - +- i386 | libindicator-tools | 0.5.0-1 | - +- i386 | libindicator3-7 | 0.5.0-1 | - +- i386 | libindicator3-dev | 0.5.0-1 | - +- i386 | libindicator3-tools | 0.5.0-1 | - +- i386 | libindicator7 | 0.5.0-1 | - +- i386 | libindigo-dev | 1.0.0-2 | - +- i386 | libindigo0d | 1.0.0-2 | - +- i386 | libindirect-perl | 0.26-1+b1 | - +- i386 | libinfgtk3-0.5-0 | 0.5.2-6.1 | - +- i386 | libinfinity-0.5-0 | 0.5.2-6.1 | - +- i386 | libinfinity-0.5-dbg | 0.5.2-6.1 | - +- i386 | libinfinity-0.5-dev | 0.5.2-6.1 | - +- i386 | libini-config-dev | 0.1.3-2 | - +- i386 | libini-config2 | 0.1.3-2 | - +- i386 | libinifiles-ocaml | 1.2-2 | - +- i386 | libinifiles-ocaml-dev | 1.2-2 | - +- i386 | libinnodb-dbg | 1.0.6.6750-1 | - +- i386 | libinnodb-dev | 1.0.6.6750-1 | - +- i386 | libinnodb3 | 1.0.6.6750-1 | - +- i386 | libinotify-ocaml | 1.0-1+b3 | - +- i386 | libinotify-ocaml-dev | 1.0-1+b3 | - +- i386 | libinotifytools0 | 3.14-1 | - +- i386 | libinotifytools0-dev | 3.14-1 | - +- i386 | libinput-pad-dev | 1.0.1-2 | - +- i386 | libinput-pad-xtest | 1.0.1-2 | - +- i386 | libinput-pad1 | 1.0.1-2 | - +- i386 | libinsighttoolkit3-dev | 3.20.1+git20120521-3 | - +- i386 | libinsighttoolkit3.20 | 3.20.1+git20120521-3 | - +- i386 | libinstpatch-1.0-0 | 1.0.0-3 | - +- i386 | libinstpatch-1.0-0-dbg | 1.0.0-3 | - +- i386 | libinstpatch-dev | 1.0.0-3 | - +- i386 | libint-dbg | 1.1.4-1 | - +- i386 | libint-dev | 1.1.4-1 | - +- i386 | libint1 | 1.1.4-1 | - +- i386 | libinternals-perl | 1.1-1+b1 | - +- i386 | libintl-xs-perl | 1.20-1+b2 | - +- i386 | libinventor0 | 2.1.5-10-16 | - +- i386 | libio-aio-perl | 4.15-1 | - +- i386 | libio-dirent-perl | 0.05-1 | - +- i386 | libio-epoll-perl | 0.03-1 | - +- i386 | libio-interface-perl | 1.06-1+b1 | - +- i386 | libio-pty-perl | 1:1.08-1+b2 | - +- i386 | libio-socket-multicast-perl | 1.12-1+b2 | - +- i386 | libiodbc2 | 3.52.7-2+deb7u1 | - +- i386 | libiodbc2-dev | 3.52.7-2+deb7u1 | - +- i386 | libion-dev | 3.0.1~dfsg1-1 | - +- i386 | libion0 | 3.0.1~dfsg1-1 | - +- i386 | libipa-hbac-dev | 1.8.4-2 | - +- i386 | libipa-hbac0 | 1.8.4-2 | - +- i386 | libipathverbs-dev | 1.2-1 | - +- i386 | libipathverbs1 | 1.2-1 | - +- i386 | libipathverbs1-dbg | 1.2-1 | - +- i386 | libipc-sharelite-perl | 0.17-2 | - +- i386 | libipe-dev | 7.1.2-1 | - +- i386 | libipe7.1.2 | 7.1.2-1 | - +- i386 | libipmiconsole-dev | 1.1.5-3 | - +- i386 | libipmiconsole2 | 1.1.5-3 | - +- i386 | libipmidetect-dev | 1.1.5-3 | - +- i386 | libipmidetect0 | 1.1.5-3 | - +- i386 | libipmimonitoring-dev | 1.1.5-3 | - +- i386 | libipmimonitoring5 | 1.1.5-3 | - +- i386 | libipset-dev | 6.12.1-1 | - +- i386 | libipset2 | 6.12.1-1 | - +- i386 | libiptables-ipv4-ipqueue-perl | 1.25-3+b2 | - +- i386 | libiptcdata-bin | 1.0.4-3 | - +- i386 | libiptcdata0 | 1.0.4-3 | - +- i386 | libiptcdata0-dbg | 1.0.4-3 | - +- i386 | libiptcdata0-dev | 1.0.4-3 | - +- i386 | libircclient-dev | 1.3+dfsg1-3 | - +- i386 | libircclient1 | 1.3+dfsg1-3 | - +- i386 | libirman-dev | 0.4.4-2 | - +- i386 | libirrlicht-dev | 1.7.3+dfsg1-4 | - +- i386 | libirrlicht1.7a | 1.7.3+dfsg1-4 | - +- i386 | libirrlicht1.7a-dbg | 1.7.3+dfsg1-4 | - +- i386 | libisajet758-3-dev | 20061220+dfsg3-2 | - +- i386 | libisajet758-3-gfortran | 20061220+dfsg3-2 | - +- i386 | libisc84 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | libisccc80 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | libisccfg82 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | libiscsi-bin | 1.4.0-3 | - +- i386 | libiscsi-dev | 1.4.0-3 | - +- i386 | libiscsi1 | 1.4.0-3 | - +- i386 | libisl-dbg | 0.10-3 | - +- i386 | libisl-dev | 0.10-3 | - +- i386 | libisl10 | 0.10-3 | - +- i386 | libiso9660-8 | 0.83-4 | - +- i386 | libiso9660-dev | 0.83-4 | - +- i386 | libisoburn-dbg | 1.2.2-2 | - +- i386 | libisoburn-dev | 1.2.2-2 | - +- i386 | libisoburn1 | 1.2.2-2 | - +- i386 | libisofs-dbg | 1.2.2-1 | - +- i386 | libisofs-dev | 1.2.2-1 | - +- i386 | libisofs6 | 1.2.2-1 | - +- i386 | libitalc | 1:1.0.13-1.4 | - ++ i386 | libitalccore | - | 1:2.0.1-3~bpo7+1 +- i386 | libitext-java-gcj | 2.1.7-3+deb7u1 | - +- i386 | libitl-dev | 0.7.0-3 | - +- i386 | libitl-gobject-dev | 0.2-1 | - +- i386 | libitl-gobject0 | 0.2-1 | - +- i386 | libitl0 | 0.7.0-3 | - +- i386 | libitm1 | 4.7.2-5 | - +- i386 | libitm1-dbg | 4.7.2-5 | - +- i386 | libitpp-dev | 4.2-4 | - +- i386 | libitpp7 | 4.2-4 | - +- i386 | libitpp7-dbg | 4.2-4 | - +- i386 | libitsol-dev | 1.0.0-2 | - +- i386 | libitsol1 | 1.0.0-2 | - +- i386 | libiv-unidraw1 | 1.2.10a1-1 | - +- i386 | libiv1 | 1.2.10a1-1 | - +- i386 | libivykis-dev | 0.30.1-2 | - +- i386 | libivykis0 | 0.30.1-2 | - +- i386 | libivykis0-dbg | 0.30.1-2 | - +- i386 | libiw-dev | 30~pre9-8 | - +- i386 | libiw30 | 30~pre9-8 | - +- i386 | libixp | 0.5-5 | - +- i386 | libjack-dev | 1:0.121.3+20120418git75e3e20b-2.1 | - +- i386 | libjack-jackd2-0 | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- i386 | libjack-jackd2-dev | 1.9.8~dfsg.4+20120529git007cdc37-5 | - +- i386 | libjack0 | 1:0.121.3+20120418git75e3e20b-2.1 | - +- i386 | libjalali-dev | 0.4.0-1.1 | - +- i386 | libjalali0 | 0.4.0-1.1 | - +- i386 | libjana-dev | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana-ecal-dev | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana-ecal0 | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana-examples | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana-gtk-dev | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana-gtk0 | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana-test | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana0 | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjana0-dbg | 0.0.0+git20091215.9ec1da8a-2+b4 | - +- i386 | libjansson-dbg | 2.3.1-2 | - +- i386 | libjansson-dev | 2.3.1-2 | - +- i386 | libjansson4 | 2.3.1-2 | - +- i386 | libjasper-dev | 1.900.1-13 | - +- i386 | libjasper-runtime | 1.900.1-13 | - +- i386 | libjasper1 | 1.900.1-13 | - +- i386 | libjaula-dev | 1.4.0-3 | - +- i386 | libjaula-doc | 1.4.0-3 | - +- i386 | libjaula1 | 1.4.0-3 | - ++ i386 | libjava-gmsh2 | - | 2.7.0.dfsg-1~bpo70+1 +- i386 | libjava-gnome-jni | 4.1.1-4 | - +- i386 | libjava3d-jni | 1.5.2+dfsg-8 | - +- i386 | libjavascript-minifier-xs-perl | 0.09-1+b2 | - +- i386 | libjavascriptcoregtk-1.0-0 | 1.8.1-3.4 | - +- i386 | libjavascriptcoregtk-1.0-0-dbg | 1.8.1-3.4 | - +- i386 | libjavascriptcoregtk-1.0-dev | 1.8.1-3.4 | - +- i386 | libjavascriptcoregtk-3.0-0 | 1.8.1-3.4 | - +- i386 | libjavascriptcoregtk-3.0-0-dbg | 1.8.1-3.4 | - +- i386 | libjavascriptcoregtk-3.0-dev | 1.8.1-3.4 | - +- i386 | libjaxp1.3-java-gcj | 1.3.05-2 | - +- i386 | libjbig-dev | 2.0-2 | - +- i386 | libjbig0 | 2.0-2 | - +- i386 | libjbig2dec0 | 0.11+20120125-1 | - +- i386 | libjbig2dec0-dev | 0.11+20120125-1 | - +- i386 | libjcode-pm-perl | 2.06-1 | - +- i386 | libjconv-bin | 2.8-6+b1 | - +- i386 | libjconv-dev | 2.8-6+b1 | - +- i386 | libjconv2 | 2.8-6+b1 | - +- i386 | libjemalloc-dev | 3.0.0-3 | - +- i386 | libjemalloc1 | 3.0.0-3 | - +- i386 | libjemalloc1-dbg | 3.0.0-3 | - +- i386 | libjetty-extra | 6.1.26-1 | - +- i386 | libjffi-jni | 1.0.2-9 | - +- i386 | libjhdf4-java | 2.8.0-5 | - +- i386 | libjhdf4-jni | 2.8.0-5 | - +- i386 | libjhdf5-java | 2.8.0-5 | - +- i386 | libjhdf5-jni | 2.8.0-5 | - +- i386 | libjim-dev | 0.73-3 | - +- i386 | libjim0debian2 | 0.73-3 | - +- i386 | libjinput-jni | 20100502+dfsg-7 | - +- i386 | libjmagick6-jni | 6.2.6-0-8+b2 | - +- i386 | libjna-java | 3.2.7-4 | - +- i386 | libjogl-jni | 1.1.1+dak1-12 | - +- i386 | libjogl2-jni | 2.0-rc5-2 | - +- i386 | libjpeg-progs | 8d-1 | - +- i386 | libjpeg62 | 6b1-3 | - +- i386 | libjpeg62-dbg | 6b1-3 | - +- i386 | libjpeg62-dev | 6b1-3 | - +- i386 | libjpeg8 | 8d-1 | - +- i386 | libjpeg8-dbg | 8d-1 | - +- i386 | libjpeg8-dev | 8d-1 | - +- i386 | libjpgalleg4-dev | 2:4.4.2-2.1 | - +- i386 | libjpgalleg4.4 | 2:4.4.2-2.1 | - +- i386 | libjs-of-ocaml | 1.2-2 | - +- i386 | libjs-of-ocaml-dev | 1.2-2 | - ++ i386 | libjson-c-dev | - | 0.11-3~bpo7+1 ++ i386 | libjson-c2 | - | 0.11-3~bpo7+1 ++ i386 | libjson-c2-dbg | - | 0.11-3~bpo7+1 +- i386 | libjson-glib-1.0-0 | 0.14.2-1 | - +- i386 | libjson-glib-1.0-0-dbg | 0.14.2-1 | - +- i386 | libjson-glib-dev | 0.14.2-1 | - +- i386 | libjson-spirit-dev | 4.04-1+b1 | - +- i386 | libjson-static-camlp4-dev | 0.9.8-1+b5 | - +- i386 | libjson-wheel-ocaml-dev | 1.0.6-2+b8 | - +- i386 | libjson-xs-perl | 2.320-1+b1 | - +! i386 | libjson0 | 0.10-1.2 | 0.11-3~bpo7+1 +- i386 | libjson0-dbg | 0.10-1.2 | - +! i386 | libjson0-dev | 0.10-1.2 | 0.11-3~bpo7+1 +- i386 | libjsoncpp-dev | 0.6.0~rc2-3 | - +- i386 | libjsoncpp0 | 0.6.0~rc2-3 | - +- i386 | libjss-java | 4.3.1-4 | - +- i386 | libjte-dev | 1.19-1 | - +- i386 | libjte1 | 1.19-1 | - +- i386 | libjthread-dbg | 1.3.1-3 | - +- i386 | libjthread-dev | 1.3.1-3 | - +- i386 | libjthread1.3.1 | 1.3.1-3 | - +- i386 | libjudy-dev | 1.0.5-1 | - +- i386 | libjudydebian1 | 1.0.5-1 | - +- i386 | libjuman-dev | 5.1-2.1 | - +- i386 | libjuman4 | 5.1-2.1 | - +- i386 | libjxgrabkey-jni | 0.3.2-6 | - +- i386 | libk3b-dev | 2.0.2-6 | - +- i386 | libk3b6 | 2.0.2-6 | - +- i386 | libk3b6-extracodecs | 2.0.2-6 | - +- i386 | libk5crypto3 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkabc4 | 4:4.8.4-2 | - +- i386 | libkactivities-bin | 4:4.8.4-1 | - +- i386 | libkactivities-dbg | 4:4.8.4-1 | - +- i386 | libkactivities-dev | 4:4.8.4-1 | - +- i386 | libkactivities6 | 4:4.8.4-1 | - +- i386 | libkadm5clnt-mit8 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkadm5clnt7-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libkadm5srv-mit8 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkadm5srv8-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libkafs0-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libkakasi2 | 2.3.5~pre1+cvs20071101-1 | - +- i386 | libkakasi2-dev | 2.3.5~pre1+cvs20071101-1 | - +- i386 | libkal-dev | 0.9.0-1 | - +- i386 | libkalarmcal2 | 4:4.8.4-2 | - +- i386 | libkarma-dev | 0.1.2-2.3 | - +- i386 | libkarma0 | 0.1.2-2.3 | - +- i386 | libkasten1controllers1 | 4:4.8.4+dfsg-1 | - +- i386 | libkasten1core1 | 4:4.8.4+dfsg-1 | - +- i386 | libkasten1gui1 | 4:4.8.4+dfsg-1 | - +- i386 | libkasten1okteta1controllers1 | 4:4.8.4+dfsg-1 | - +- i386 | libkasten1okteta1core1 | 4:4.8.4+dfsg-1 | - +- i386 | libkasten1okteta1gui1 | 4:4.8.4+dfsg-1 | - +- i386 | libkate-dev | 0.4.1-1 | - +- i386 | libkate-tools | 0.4.1-1 | - +- i386 | libkate1 | 0.4.1-1 | - +- i386 | libkate1-dbg | 0.4.1-1 | - +- i386 | libkateinterfaces4 | 4:4.8.4-1 | - +- i386 | libkatepartinterfaces4 | 4:4.8.4-1 | - +- i386 | libkaya-gd-dev | 0.4.4-6 | - +- i386 | libkaya-gl-dev | 0.4.4-6 | - +- i386 | libkaya-mysql-dev | 0.4.4-6 | - +- i386 | libkaya-ncurses-dev | 0.4.4-6 | - +- i386 | libkaya-ncursesw-dev | 0.4.4-6 | - +- i386 | libkaya-pgsql-dev | 0.4.4-6 | - +- i386 | libkaya-sdl-dev | 0.4.4-6 | - +- i386 | libkaya-sqlite3-dev | 0.4.4-6 | - +- i386 | libkblog4 | 4:4.8.4-2 | - +- i386 | libkcal4 | 4:4.8.4-2 | - +- i386 | libkcalcore4 | 4:4.8.4-2 | - +- i386 | libkcalutils4 | 4:4.8.4-2 | - +- i386 | libkcddb-dev | 4:4.8.4-2 | - +- i386 | libkcddb4 | 4:4.8.4-2 | - +- i386 | libkcmutils4 | 4:4.8.4-4 | - +- i386 | libkdb5-6 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkdc2-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libkdcraw-dev | 4:4.8.4-1 | - +- i386 | libkdcraw20 | 4:4.8.4-1 | - +- i386 | libkdcraw20-dbg | 4:4.8.4-1 | - +- i386 | libkde3support4 | 4:4.8.4-4 | - +- i386 | libkdeclarative5 | 4:4.8.4-4 | - +- i386 | libkdecorations4 | 4:4.8.4-6 | - +- i386 | libkdecore5 | 4:4.8.4-4 | - +- i386 | libkdeedu-dbg | 4:4.8.4-1 | - +- i386 | libkdeedu-dev | 4:4.8.4-1 | - +- i386 | libkdegames-dev | 4:4.8.4-3 | - +- i386 | libkdegames5a | 4:4.8.4-3 | - +- i386 | libkdepim4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libkdesu5 | 4:4.8.4-4 | - +- i386 | libkdeui5 | 4:4.8.4-4 | - +- i386 | libkdewebkit5 | 4:4.8.4-4 | - +- i386 | libkdnssd4 | 4:4.8.4-4 | - +- i386 | libkeduvocdocument4 | 4:4.8.4-1 | - +- i386 | libkemoticons4 | 4:4.8.4-4 | - +- i386 | libkephal4abi1 | 4:4.8.4-6 | - +- i386 | libkernlib1-dev | 20061220+dfsg3-2 | - +- i386 | libkernlib1-gfortran | 20061220+dfsg3-2 | - +- i386 | libkexiv2-10 | 4:4.8.4-1 | - +- i386 | libkexiv2-dbg | 4:4.8.4-1 | - +- i386 | libkexiv2-dev | 4:4.8.4-1 | - +- i386 | libkeybinder-dev | 0.2.2-4 | - +- i386 | libkeybinder0 | 0.2.2-4 | - +- i386 | libkeyutils-dev | 1.5.5-3 | - +- i386 | libkeyutils1 | 1.5.5-3 | - +- i386 | libkfile4 | 4:4.8.4-4 | - +- i386 | libkggzgames4 | 4:4.8.4-3 | - +- i386 | libkggzmod4 | 4:4.8.4-3 | - +- i386 | libkggznet4 | 4:4.8.4-3 | - +- i386 | libkholidays4 | 4:4.8.4-2 | - +- i386 | libkhtml5 | 4:4.8.4-4 | - +- i386 | libkibi-dbg | 0.1-1 | - +- i386 | libkibi-dev | 0.1-1 | - +- i386 | libkibi0 | 0.1-1 | - +- i386 | libkidletime4 | 4:4.8.4-4 | - +- i386 | libkimap4 | 4:4.8.4-2 | - +- i386 | libkimproxy4 | 4:4.8.4-4 | - +- i386 | libkinosearch1-perl | 1.00-1+b2 | - +- i386 | libkio5 | 4:4.8.4-4 | - +- i386 | libkipi-dbg | 4:4.8.4-1 | - +- i386 | libkipi-dev | 4:4.8.4-1 | - +- i386 | libkipi8 | 4:4.8.4-1 | - +- i386 | libkiten-dev | 4:4.8.4-1 | - +- i386 | libkiten4abi1 | 4:4.8.4-1 | - +- i386 | libkitware-mummy-runtime1.0-cil | 1.0.2-5 | - +- i386 | libkjsapi4 | 4:4.8.4-4 | - +- i386 | libkjsembed4 | 4:4.8.4-4 | - +- i386 | libklatexformula3 | 3.2.6-1 | - +- i386 | libklatexformula3-dev | 3.2.6-1 | - +- i386 | libkldap4 | 4:4.8.4-2 | - +- i386 | libkleo4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libklibc | 2.0.1-3.1 | - +- i386 | libklibc-dev | 2.0.1-3.1 | - +- i386 | libklu1.1.0 | 1:3.4.0-3 | - +- i386 | libkmahjongglib4 | 4:4.8.4-3 | - +- i386 | libkmbox4 | 4:4.8.4-2 | - +- i386 | libkmediaplayer4 | 4:4.8.4-4 | - +- i386 | libkmfl-dev | 0.9.8-1 | - +- i386 | libkmfl0 | 0.9.8-1 | - +- i386 | libkmflcomp-dev | 0.9.8-1 | - +- i386 | libkmflcomp0 | 0.9.8-1 | - +- i386 | libkmime4 | 4:4.8.4-2 | - +- i386 | libkml-dev | 1.3.0~r863-4.1 | - +- i386 | libkml-java | 1.3.0~r863-4.1 | - +- i386 | libkml0 | 1.3.0~r863-4.1 | - +- i386 | libkmlframework-java | 0.0.20090718-1 | - +- i386 | libkmod-dev | 9-3 | - +- i386 | libkmod2 | 9-3 | - +- i386 | libkms1 | 2.4.40-1~deb7u2 | - +- i386 | libkms1-dbg | 2.4.40-1~deb7u2 | - +- i386 | libknewstuff2-4 | 4:4.8.4-4 | - +- i386 | libknewstuff3-4 | 4:4.8.4-4 | - +- i386 | libknotifyconfig4 | 4:4.8.4-4 | - +- i386 | libkntlm4 | 4:4.8.4-4 | - +- i386 | libkokyu-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libkokyu-dev | 6.0.3+dfsg-0.1 | - +- i386 | libkonq-common | 4:4.8.4-2 | - +- i386 | libkonq5-dev | 4:4.8.4-2 | - +- i386 | libkonq5abi1 | 4:4.8.4-2 | - +- i386 | libkonqsidebarplugin-dev | 4:4.8.4-2 | - +- i386 | libkonqsidebarplugin4a | 4:4.8.4-2 | - +- i386 | libkontactinterface4 | 4:4.8.4-2 | - +! i386 | libkopenafs1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- i386 | libkopete-dev | 4:4.8.4-1+b1 | - +- i386 | libkopete4 | 4:4.8.4-1+b1 | - +- i386 | libkosd2 | 0.8.1-1 | - +- i386 | libkosd2-dev | 0.8.1-1 | - +- i386 | libkparts4 | 4:4.8.4-4 | - +- i386 | libkpathsea-dev | 2012.20120628-4 | - +- i386 | libkpathsea6 | 2012.20120628-4 | - +- i386 | libkpgp4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libkpimidentities4 | 4:4.8.4-2 | - +- i386 | libkpimtextedit4 | 4:4.8.4-2 | - +- i386 | libkpimutils4 | 4:4.8.4-2 | - +- i386 | libkprintutils4 | 4:4.8.4-4 | - +- i386 | libkpty4 | 4:4.8.4-4 | - +- i386 | libkqueue-dev | 1.0.4-2 | - +- i386 | libkqueue0 | 1.0.4-2 | - +- i386 | libkrb5-26-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libkrb5-3 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkrb5-dbg | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkrb5-dev | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkrb5support0 | 1.10.1+dfsg-5+deb7u1 | - +- i386 | libkresources4 | 4:4.8.4-2 | - +- i386 | libkrosscore4 | 4:4.8.4-4 | - +- i386 | libkrossui4 | 4:4.8.4-4 | - +- i386 | libksane-dbg | 4:4.8.4-1 | - +- i386 | libksane-dev | 4:4.8.4-1 | - +- i386 | libksane0 | 4:4.8.4-1 | - +- i386 | libksba-dev | 1.2.0-2 | - +- i386 | libksba8 | 1.2.0-2 | - +- i386 | libkscreensaver5 | 4:4.8.4-6 | - +- i386 | libksgrd4 | 4:4.8.4-6 | - +- i386 | libksieve4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libksignalplotter4 | 4:4.8.4-6 | - +- i386 | libkst2core2 | 2.0.3-1.3 | - +- i386 | libkst2math2 | 2.0.3-1.3 | - +- i386 | libkst2widgets2 | 2.0.3-1.3 | - +- i386 | libktexteditor4 | 4:4.8.4-4 | - +- i386 | libktnef4 | 4:4.8.4-2 | - +- i386 | libktoblzcheck-dbg | 1.39-1 | - +- i386 | libktoblzcheck1-dev | 1.39-1 | - +- i386 | libktoblzcheck1c2a | 1.39-1 | - +- i386 | libktorrent-dbg | 1.2.1-1 | - +- i386 | libktorrent-dev | 1.2.1-1 | - +- i386 | libktorrent4 | 1.2.1-1 | - +- i386 | libktpchat0 | 0.4.0-1 | - +- i386 | libktpcommoninternalsprivate-dbg | 0.4.0-1 | - +- i386 | libktpcommoninternalsprivate-dev | 0.4.0-1 | - +- i386 | libktpcommoninternalsprivate1 | 0.4.0-1 | - +- i386 | libkunitconversion4 | 4:4.8.4-4 | - +- i386 | libkutils4 | 4:4.8.4-4 | - +- i386 | libkvilib4 | 4:4.1.3+20111124.svn5988-2 | - +- i386 | libkvutils-dev | 2.9.0-1 | - +- i386 | libkvutils10 | 2.9.0-1 | - +- i386 | libkwineffects1abi3 | 4:4.8.4-6 | - +- i386 | libkwinglutils1 | 4:4.8.4-6 | - +- i386 | libkwnn-dev | 1.1.1~a021+cvs20100325-6 | - +- i386 | libkwnn0 | 1.1.1~a021+cvs20100325-6 | - +- i386 | libkworkspace4abi1 | 4:4.8.4-6 | - +- i386 | libkwwidgets1-dev | 1.0.0~cvs20100930-8 | - +- i386 | libkwwidgets1.0.1009 | 1.0.0~cvs20100930-8 | - +- i386 | libkxl0 | 1.1.7-16 | - +- i386 | libkxl0-dev | 1.1.7-16 | - +- i386 | libkxmlrpcclient4 | 4:4.8.4-2 | - +- i386 | liblablgl-ocaml | 1.04-5+b3 | - +- i386 | liblablgl-ocaml-dev | 1.04-5+b3 | - +- i386 | liblablgtk-extras-ocaml-dev | 1.0-1+b2 | - +- i386 | liblablgtk2-gl-ocaml | 2.14.2+dfsg-3 | - +- i386 | liblablgtk2-gl-ocaml-dev | 2.14.2+dfsg-3 | - +- i386 | liblablgtk2-gnome-ocaml | 2.14.2+dfsg-3 | - +- i386 | liblablgtk2-gnome-ocaml-dev | 2.14.2+dfsg-3 | - +- i386 | liblablgtk2-ocaml | 2.14.2+dfsg-3 | - +- i386 | liblablgtk2-ocaml-dev | 2.14.2+dfsg-3 | - +- i386 | liblablgtkmathview-ocaml | 0.7.8-6+b1 | - +- i386 | liblablgtkmathview-ocaml-dev | 0.7.8-6+b1 | - +- i386 | liblablgtksourceview2-ocaml | 2.14.2+dfsg-3 | - +- i386 | liblablgtksourceview2-ocaml-dev | 2.14.2+dfsg-3 | - +- i386 | libladr-dev | 0.0.200902a-2.1 | - +- i386 | libladr4 | 0.0.200902a-2.1 | - +- i386 | libladspa-ocaml | 0.1.4-1+b1 | - +- i386 | libladspa-ocaml-dev | 0.1.4-1+b1 | - +- i386 | liblam4 | 7.1.4-3 | - +- i386 | liblangscan-ruby | 1.2+cvs20070125-1.1 | - +- i386 | liblapack-dev | 3.4.1+dfsg-1+deb70u1 | - +- i386 | liblapack-pic | 3.4.1+dfsg-1+deb70u1 | - +- i386 | liblapack-test | 3.4.1+dfsg-1+deb70u1 | - +- i386 | liblapack3 | 3.4.1+dfsg-1+deb70u1 | - +- i386 | liblapacke | 3.4.1+dfsg-1+deb70u1 | - +- i386 | liblapacke-dev | 3.4.1+dfsg-1+deb70u1 | - +- i386 | liblas-bin | 1.2.1-5+b1 | - +- i386 | liblas-dev | 1.2.1-5+b1 | - +- i386 | liblas1 | 1.2.1-5+b1 | - +- i386 | liblash-compat-1debian0 | 1+dfsg0-3 | - +- i386 | liblasi-dev | 1.1.0-1 | - +- i386 | liblasi0 | 1.1.0-1 | - +- i386 | liblasso-perl | 2.3.6-2 | - +- i386 | liblasso3 | 2.3.6-2 | - +- i386 | liblasso3-dev | 2.3.6-2 | - +- i386 | liblastfm-dbg | 0.4.0~git20090710-2 | - +- i386 | liblastfm-dev | 0.4.0~git20090710-2 | - +- i386 | liblastfm-fingerprint0 | 0.4.0~git20090710-2 | - +- i386 | liblastfm-ocaml-dev | 0.3.0-2+b6 | - +- i386 | liblastfm0 | 0.4.0~git20090710-2 | - +- i386 | liblcgdm-dev | 1.8.2-1+b2 | - +- i386 | liblcgdm1 | 1.8.2-1+b2 | - +- i386 | liblchown-perl | 1.01-1+b2 | - +- i386 | liblcms-utils | 1.19.dfsg-1.2 | - +- i386 | liblcms1 | 1.19.dfsg-1.2 | - +- i386 | liblcms1-dev | 1.19.dfsg-1.2 | - +- i386 | liblcms2-2 | 2.2+git20110628-2.2 | - +- i386 | liblcms2-dev | 2.2+git20110628-2.2 | - +- i386 | liblcms2-utils | 2.2+git20110628-2.2 | - +- i386 | libldap-2.4-2 | 2.4.31-1+nmu2 | - +- i386 | libldap-2.4-2-dbg | 2.4.31-1+nmu2 | - +- i386 | libldap-ocaml-dev | 2.1.8-8+b9 | - +- i386 | libldap2-dev | 2.4.31-1+nmu2 | - +! i386 | libldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldb1 | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldb1-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +- i386 | libldl2.0.1 | 1:3.4.0-3 | - +! i386 | libldns-dev | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libldns1 | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libldns1-dbg | 1.6.13-1 | 1.6.16-1~bpo70+1 +- i386 | libledit-ocaml-dev | 2.03-1+b2 | - +- i386 | liblensfun-dev | 0.2.5-2 | - +- i386 | liblensfun0 | 0.2.5-2 | - +- i386 | liblept3 | 1.69-3.1 | - +- i386 | libleptonica-dev | 1.69-3.1 | - +- i386 | libleveldb-dev | 0+20120530.gitdd0d562-1 | - +- i386 | libleveldb1 | 0+20120530.gitdd0d562-1 | - +- i386 | liblexical-sealrequirehints-perl | 0.007-1 | - +- i386 | liblfc-dev | 1.8.2-1+b2 | - +- i386 | liblfc-perl | 1.8.2-1+b2 | - +- i386 | liblfc1 | 1.8.2-1+b2 | - +- i386 | liblhapdf-dev | 5.8.7+repack-1 | - +- i386 | liblhapdf0 | 5.8.7+repack-1 | - +- i386 | liblhasa-dev | 0.0.7-2 | - +- i386 | liblhasa0 | 0.0.7-2 | - +- i386 | liblicense-cli | 0.8.1-3 | - +- i386 | liblicense-dev | 0.8.1-3 | - +- i386 | liblicense3 | 0.8.1-3 | - +- i386 | liblightdm-gobject-1-0 | 1.2.2-4 | - +- i386 | liblightdm-gobject-dev | 1.2.2-4 | - +- i386 | liblightdm-qt-2-0 | 1.2.2-4 | - +- i386 | liblightdm-qt-dev | 1.2.2-4 | - +- i386 | liblilv-0-0 | 0.14.2~dfsg0-4 | - +- i386 | liblilv-dev | 0.14.2~dfsg0-4 | - +- i386 | liblinear-dbg | 1.8+dfsg-1 | - +- i386 | liblinear-dev | 1.8+dfsg-1 | - +- i386 | liblinear-tools | 1.8+dfsg-1 | - +- i386 | liblinear1 | 1.8+dfsg-1 | - +- i386 | liblinebreak2 | 2.1-1 | - +- i386 | liblinebreak2-dev | 2.1-1 | - +- i386 | liblingua-stem-snowball-perl | 0.952-2+b2 | - +- i386 | liblink-grammar4 | 4.7.4-2 | - +- i386 | liblink-grammar4-dev | 4.7.4-2 | - +- i386 | liblink-grammar4-java | 4.7.4-2 | - +- i386 | liblinphone-dev | 3.5.2-10 | - +- i386 | liblinphone4 | 3.5.2-10 | - +- i386 | liblinux-dvb-perl | 1.01-2+b2 | - +- i386 | liblinux-inotify2-perl | 1:1.22-0.2+b1 | - +- i386 | liblip-dev | 2.0.0-1.1 | - +- i386 | liblip2 | 2.0.0-1.1 | - +- i386 | liblircclient-dev | 0.9.0~pre1-1 | - +- i386 | liblircclient0 | 0.9.0~pre1-1 | - +- i386 | liblist-moreutils-perl | 0.33-1+b1 | - +- i386 | liblistaller-glib-dev | 0.5.5-2 | - +- i386 | liblistaller-glib0 | 0.5.5-2 | - +- i386 | liblivemedia-dev | 2012.05.17-1 | - ++ i386 | liblldpctl-dev | - | 0.7.7-1~bpo70+1 +- i386 | libllvm-2.9-ocaml-dev | 2.9+dfsg-7 | - +- i386 | libllvm-3.0-ocaml-dev | 3.0-10 | - +- i386 | libllvm-3.1-ocaml-dev | 3.1-1 | - +- i386 | libllvm-ocaml-dev | 1:3.0-14+nmu2 | - +- i386 | libllvm2.9 | 2.9+dfsg-7 | - +- i386 | libllvm3.0 | 3.0-10 | - +- i386 | libllvm3.1 | 3.1-1 | - +- i386 | liblo-dev | 0.26~repack-7 | - +- i386 | liblo-ocaml | 0.1.0-1+b1 | - +- i386 | liblo-ocaml-dev | 0.1.0-1+b1 | - +- i386 | liblo-tools | 0.26~repack-7 | - +- i386 | liblo10k1-0 | 1.0.25-2 | - +- i386 | liblo10k1-dev | 1.0.25-2 | - +- i386 | liblo7 | 0.26~repack-7 | - +- i386 | libloadpng4-dev | 2:4.4.2-2.1 | - +- i386 | libloadpng4.4 | 2:4.4.2-2.1 | - +- i386 | liblocale-gettext-perl | 1.05-7+b1 | - +- i386 | liblocale-hebrew-perl | 1.04-1+b2 | - +- i386 | liblockdev1 | 1.0.3-1.5 | - +- i386 | liblockdev1-dbg | 1.0.3-1.5 | - +- i386 | liblockdev1-dev | 1.0.3-1.5 | - +- i386 | liblockdev1-perl | 1.0.3-1.5 | - +- i386 | liblockfile-bin | 1.09-5 | - +- i386 | liblockfile-dev | 1.09-5 | - +- i386 | liblockfile1 | 1.09-5 | - +- i386 | liblodo3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | liblodo3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | liblog4ada-dbg | 1.2-3 | - +- i386 | liblog4ada1 | 1.2-3 | - +- i386 | liblog4ada2-dev | 1.2-3 | - +- i386 | liblog4c-dev | 1.2.1-3 | - +- i386 | liblog4c3 | 1.2.1-3 | - +- i386 | liblog4cplus-1.0-4 | 1.0.4-1 | - +- i386 | liblog4cplus-dbg | 1.0.4-1 | - +- i386 | liblog4cplus-dev | 1.0.4-1 | - +- i386 | liblog4cpp5 | 1.0-4 | - +- i386 | liblog4cpp5-dev | 1.0-4 | - +- i386 | liblog4cxx10 | 0.10.0-1.2 | - +- i386 | liblog4cxx10-dev | 0.10.0-1.2 | - +- i386 | liblog4shib-dev | 1.0.4-1 | - +- i386 | liblog4shib1 | 1.0.4-1 | - +- i386 | liblog4tango4 | 7.2.6+dfsg-14 | - +- i386 | liblog4tango4-dbg | 7.2.6+dfsg-14 | - +- i386 | liblog4tango4-dev | 7.2.6+dfsg-14 | - +- i386 | liblogforwarderutils2 | 2.7-1 | - +- i386 | liblogforwarderutils2-dev | 2.7-1 | - +- i386 | liblognorm-dev | 0.3.4-1 | - +- i386 | liblognorm0 | 0.3.4-1 | - +- i386 | liblogservicecomponentbase2 | 2.7-1 | - +- i386 | liblogservicecomponentbase2-dev | 2.7-1 | - +- i386 | liblogservicetoolbase2 | 2.7-1 | - +- i386 | liblogservicetoolbase2-dev | 2.7-1 | - +- i386 | liblogsys-dev | 1.4.2-3 | - +- i386 | liblogsys4 | 1.4.2-3 | - +- i386 | liblogthread-dev | 3.0.12-3.2+deb7u2 | - +- i386 | liblogthread3 | 3.0.12-3.2+deb7u2 | - +- i386 | libloki-dev | 0.1.7-3 | - +- i386 | libloki0.1.7 | 0.1.7-3 | - +- i386 | libloki0.1.7-dbg | 0.1.7-3 | - +- i386 | libloudmouth1-0 | 1.4.3-9 | - +- i386 | libloudmouth1-0-dbg | 1.4.3-9 | - +- i386 | libloudmouth1-dev | 1.4.3-9 | - +- i386 | liblouis-bin | 2.4.1-1 | - +- i386 | liblouis-dev | 2.4.1-1 | - +- i386 | liblouis2 | 2.4.1-1 | - +- i386 | liblouisutdml-bin | 2.2.0-1 | - +- i386 | liblouisutdml-dev | 2.2.0-1 | - +- i386 | liblouisutdml6 | 2.2.0-1 | - +- i386 | liblouisxml-bin | 2.4.0-3 | - +- i386 | liblouisxml-dev | 2.4.0-3 | - +- i386 | liblouisxml1 | 2.4.0-3 | - +- i386 | liblpsolve55-dev | 5.5.0.13-7 | - +- i386 | liblqr-1-0 | 0.4.1-2 | - +- i386 | liblqr-1-0-dbg | 0.4.1-2 | - +- i386 | liblqr-1-0-dev | 0.4.1-2 | - +- i386 | liblrdf0 | 0.4.0-5 | - +- i386 | liblrdf0-dev | 0.4.0-5 | - +- i386 | liblrm2 | 1.0.9+hg2665-1 | - +- i386 | liblrm2-dev | 1.0.9+hg2665-1 | - +- i386 | liblrs-dev | 0.42c-1+b1 | - +- i386 | liblrs0d | 0.42c-1+b1 | - +- i386 | liblscp-dbg | 0.5.6-6 | - +- i386 | liblscp-dev | 0.5.6-6 | - +- i386 | liblscp6 | 0.5.6-6 | - +- i386 | liblsofui4 | 4:4.8.4-6 | - +- i386 | libltcsmpte-dev | 0.4.4-1 | - +- i386 | libltcsmpte1 | 0.4.4-1 | - +- i386 | libltdl-dev | 2.4.2-1.1 | - +- i386 | libltdl7 | 2.4.2-1.1 | - +- i386 | liblttctl-dev | 0.89-05122011-1 | - +- i386 | liblttctl0 | 0.89-05122011-1 | - +- i386 | liblttd-dev | 0.89-05122011-1 | - +- i386 | liblttd0 | 0.89-05122011-1 | - +- i386 | liblttng-ust-dev | 2.0.4-1 | - +- i386 | liblttng-ust0 | 2.0.4-1 | - +- i386 | liblttoolbox3-3.1-0 | 3.1.0-1.1 | - +- i386 | liblttoolbox3-3.1-0-dev | 3.1.0-1.1 | - +- i386 | liblttvtraceread-2.6 | 0.12.38-21032011-1+b1 | - +- i386 | liblttvtraceread-2.6-dev | 0.12.38-21032011-1+b1 | - +- i386 | liblttvtraceread-loader-2.6 | 0.12.38-21032011-1+b1 | - +- i386 | liblua5.1-0 | 5.1.5-4 | - +- i386 | liblua5.1-0-dbg | 5.1.5-4 | - +- i386 | liblua5.1-0-dev | 5.1.5-4 | - +- i386 | liblua5.1-luacsnd5.2 | 1:5.17.11~dfsg-3 | - +- i386 | liblua5.1-oocairo-dev | 1.4-1.2 | - +- i386 | liblua5.1-oocairo0 | 1.4-1.2 | - +- i386 | liblua5.1-oopango-dev | 1.1-1 | - +- i386 | liblua5.1-oopango0 | 1.1-1 | - +- i386 | liblua5.1-rrd-dev | 1.4.7-2 | - +- i386 | liblua5.1-rrd0 | 1.4.7-2 | - +- i386 | liblua5.2-0 | 5.2.1-3 | - +- i386 | liblua5.2-0-dbg | 5.2.1-3 | - +- i386 | liblua5.2-dev | 5.2.1-3 | - +- i386 | liblua50 | 5.0.3-6 | - +- i386 | liblua50-dev | 5.0.3-6 | - +- i386 | libluabind-dbg | 0.9.1+dfsg-5 | - +- i386 | libluabind-dev | 0.9.1+dfsg-5 | - +- i386 | libluabind0.9.1 | 0.9.1+dfsg-5 | - +- i386 | libluabridge-ruby1.8 | 0.7.0-1.1 | - +- i386 | liblualib50 | 5.0.3-6 | - +- i386 | liblualib50-dev | 5.0.3-6 | - +- i386 | liblunar-1-0 | 2.0.1-2.2 | - +- i386 | liblunar-1-0-dbg | 2.0.1-2.2 | - +- i386 | liblunar-1-dev | 2.0.1-2.2 | - +- i386 | liblunar-date-2.0-0 | 2.4.0-1 | - +- i386 | liblunar-date-dbg | 2.4.0-1 | - +- i386 | liblunar-date-dev | 2.4.0-1 | - +- i386 | liblv2dynparam1-dev | 2-5 | - +- i386 | liblv2dynparamhost1-1 | 2-5 | - +- i386 | liblv2dynparamplugin1-0 | 2-5 | - +- i386 | liblvm2-dev | 2.02.95-8 | - +- i386 | liblvm2app2.2 | 2.02.95-8 | - +- i386 | liblvm2cmd2.02 | 2.02.95-8 | - +- i386 | liblwipv6-2 | 1.5a-2 | - +- i386 | liblwipv6-dev | 1.5a-2 | - +- i386 | liblwjgl-java-jni | 2.7.1+dfsg-3 | - +- i386 | liblwres80 | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | liblwt-glib-ocaml | 2.3.2-1+b3 | - +- i386 | liblwt-glib-ocaml-dev | 2.3.2-1+b3 | - +- i386 | liblwt-ocaml | 2.3.2-1+b3 | - +- i386 | liblwt-ocaml-dev | 2.3.2-1+b3 | - +- i386 | liblwt-ssl-ocaml | 2.3.2-1+b3 | - +- i386 | liblwt-ssl-ocaml-dev | 2.3.2-1+b3 | - +- i386 | liblz-dbg | 1.3-2 | - +- i386 | liblz-dev | 1.3-2 | - +- i386 | liblz1 | 1.3-2 | - +- i386 | liblzma-dev | 5.1.1alpha+20120614-2 | - +- i386 | liblzma5 | 5.1.1alpha+20120614-2 | - +- i386 | liblzo2-2 | 2.06-1 | - +- i386 | liblzo2-dev | 2.06-1 | - +- i386 | libm17n-0 | 1.6.3-2 | - +- i386 | libm17n-0-dbg | 1.6.3-2 | - +- i386 | libm17n-dev | 1.6.3-2 | - +- i386 | libm17n-im-config-dev | 0.9.0-3 | - +- i386 | libm17n-im-config0 | 0.9.0-3 | - +- i386 | libm4ri-0.0.20080521 | 0.0.20080521-2 | - +- i386 | libm4ri-dev | 0.0.20080521-2 | - +- i386 | libmaa-dev | 1.3.1-1 | - +- i386 | libmaa3 | 1.3.1-1 | - +- i386 | libmad-ocaml | 0.4.4-1+b1 | - +- i386 | libmad-ocaml-dev | 0.4.4-1+b1 | - +- i386 | libmad0 | 0.15.1b-7 | - +- i386 | libmad0-dev | 0.15.1b-7 | - +- i386 | libmadlib | 1.3.0-2.1 | - +- i386 | libmadlib-dbg | 1.3.0-2.1 | - +- i386 | libmadlib-dev | 1.3.0-2.1 | - +! i386 | libmagic-dev | 5.11-2 | 1:5.14-2~bpo70+1 +- i386 | libmagic-ocaml | 0.7.3-5+b3 | - +- i386 | libmagic-ocaml-dev | 0.7.3-5+b3 | - +! i386 | libmagic1 | 5.11-2 | 1:5.14-2~bpo70+1 +- i386 | libmagick++-dev | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagick++5 | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagickcore-dev | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagickcore5 | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagickcore5-extra | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagickwand-dev | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagickwand5 | 8:6.7.7.10-5+deb7u2 | - +- i386 | libmagics++-dev | 2.14.11-4 | - +- i386 | libmagplus3 | 2.14.11-4 | - +- i386 | libmail-cclient-perl | 1.12-11+b1 | - +- i386 | libmail-pop3client-perl | 2.17-1 | - +- i386 | libmailtransport4 | 4:4.8.4-2 | - +- i386 | libmailutils-dev | 1:2.99.97-3 | - +- i386 | libmailutils4 | 1:2.99.97-3 | - +- i386 | libmalaga-dev | 7.12-4 | - +- i386 | libmalaga7 | 7.12-4 | - +- i386 | libmaloc-dev | 0.2-2.3 | - +- i386 | libmaloc1 | 0.2-2.3 | - +- i386 | libmapi-dev | 1:1.0-3 | - +- i386 | libmapi0 | 1:1.0-3 | - +- i386 | libmapiadmin-dev | 1:1.0-3 | - +- i386 | libmapiadmin0 | 1:1.0-3 | - +- i386 | libmapipp-dev | 1:1.0-3 | - +- i386 | libmapipp0 | 1:1.0-3 | - +- i386 | libmapiproxy-dev | 1:1.0-3 | - +- i386 | libmapiproxy0 | 1:1.0-3 | - +- i386 | libmapistore-dev | 1:1.0-3 | - +- i386 | libmapistore0 | 1:1.0-3 | - +- i386 | libmapnik2-2.0 | 2.0.0+ds1-3+b4 | - +- i386 | libmapnik2-dev | 2.0.0+ds1-3+b4 | - +- i386 | libmapscript-perl | 6.0.1-3.2+deb7u2 | - +- i386 | libmapscript-ruby1.8 | 6.0.1-3.2+deb7u2 | - +- i386 | libmapscript-ruby1.9.1 | 6.0.1-3.2+deb7u2 | - +- i386 | libmarble-dev | 4:4.8.4-3 | - +- i386 | libmarblewidget13 | 4:4.8.4-3 | - +- i386 | libmarc-charset-perl | 1.33-1 | - +- i386 | libmarkdown2 | 2.1.3-3 | - +- i386 | libmarkdown2-dbg | 2.1.3-3 | - +- i386 | libmarkdown2-dev | 2.1.3-3 | - +- i386 | libmatchbox-dev | 1.9-osso8-3 | - +- i386 | libmatchbox1 | 1.9-osso8-3 | - +- i386 | libmath++-dev | 0.0.4-4 | - +- i386 | libmath++0c2a | 0.0.4-4 | - +- i386 | libmath-bigint-gmp-perl | 1.37-1+b1 | - +- i386 | libmath-gmp-perl | 2.06-1+b2 | - +- i386 | libmath-random-isaac-xs-perl | 1.003-1+b2 | - +- i386 | libmath-random-mt-perl | 1.15-2 | - +- i386 | libmath-random-tt800-perl | 1.01-2+b2 | - +- i386 | libmath-tamuanova-perl | 1.0.2-1 | - +- i386 | libmatheval-dev | 1.1.8-1 | - +- i386 | libmatheval1 | 1.1.8-1 | - +- i386 | libmathlib2-dev | 20061220+dfsg3-2 | - +- i386 | libmathlib2-gfortran | 20061220+dfsg3-2 | - +- i386 | libmatio-dev | 1.3.4-4 | - +- i386 | libmatio0 | 1.3.4-4 | - +- i386 | libmatio0-dbg | 1.3.4-4 | - +- i386 | libmatrixssl1.8 | 1.8.8-1 | - +- i386 | libmatrixssl1.8-dev | 1.8.8-1 | - +- i386 | libmatroska-dev | 1.3.0-2 | - +- i386 | libmatroska5 | 1.3.0-2 | - +- i386 | libmbt0 | 3.2.8-1 | - +- i386 | libmbt0-dev | 3.2.8-1 | - +- i386 | libmcpp-dev | 2.7.2-1.1 | - +- i386 | libmcpp0 | 2.7.2-1.1 | - +- i386 | libmcrypt-dev | 2.5.8-3.1 | - +- i386 | libmcrypt4 | 2.5.8-3.1 | - +- i386 | libmcs-backend-gconf | 0.7.2-2.1 | - +- i386 | libmcs-dev | 0.7.2-2.1 | - +- i386 | libmcs-utils | 0.7.2-2.1 | - +- i386 | libmcs1 | 0.7.2-2.1 | - +- i386 | libmd3-1 | 0.1.92-4 | - +- i386 | libmd3-dev | 0.1.92-4 | - +- i386 | libmdb2 | 0.7-1+deb7u1 | - +- i386 | libmdbodbc1 | 0.7-1+deb7u1 | - +- i386 | libmdbsql2 | 0.7-1+deb7u1 | - +- i386 | libmdc2 | 0.10.7-1+b2 | - +- i386 | libmdc2-dev | 0.10.7-1+b2 | - +- i386 | libmdsp-dev | 0.11-10 | - +- i386 | libmeanwhile-dev | 1.0.2-4 | - +- i386 | libmeanwhile1 | 1.0.2-4 | - +- i386 | libmecab-dev | 0.99.3-3 | - +- i386 | libmecab-jni | 0.99.3-1 | - +- i386 | libmecab-perl | 0.99.3-1 | - +- i386 | libmecab2 | 0.99.3-3 | - +- i386 | libmed-dev | 3.0.3-3 | - +- i386 | libmed-tools | 3.0.3-3 | - +- i386 | libmed1 | 3.0.3-3 | - +- i386 | libmedc-dev | 3.0.3-3 | - +- i386 | libmedc1 | 3.0.3-3 | - +- i386 | libmediainfo-dev | 0.7.58-1 | - +- i386 | libmediainfo0 | 0.7.58-1 | - +- i386 | libmediastreamer-dev | 3.5.2-10 | - +- i386 | libmediastreamer1 | 3.5.2-10 | - +- i386 | libmedimport-dev | 3.0.3-3 | - +- i386 | libmedimport0 | 3.0.3-3 | - +- i386 | libmeep-dev | 1.1.1-8 | - +- i386 | libmeep-lam4-6 | 1.1.1-10~deb7u1 | - +- i386 | libmeep-lam4-dev | 1.1.1-10~deb7u1 | - +- i386 | libmeep-mpi-default-dev | 1.1.1-10~deb7u1 | - +- i386 | libmeep-mpi-default6 | 1.1.1-10~deb7u1 | - +- i386 | libmeep-mpich2-6 | 1.1.1-10~deb7u1 | - +- i386 | libmeep-mpich2-dev | 1.1.1-10~deb7u1 | - +- i386 | libmeep-openmpi-dev | 1.1.1-9~deb7u1 | - +- i386 | libmeep-openmpi6 | 1.1.1-9~deb7u1 | - +- i386 | libmeep6 | 1.1.1-8 | - +- i386 | libmelt-ocaml-dev | 1.4.0-1 | - +- i386 | libmemcache-dev | 1.4.0.rc2-1 | - +- i386 | libmemcache0 | 1.4.0.rc2-1 | - +- i386 | libmemcached-dbg | 1.0.8-1 | - +- i386 | libmemcached-dev | 1.0.8-1 | - +- i386 | libmemcached-tools | 1.0.8-1 | - +- i386 | libmemcached10 | 1.0.8-1 | - +- i386 | libmemcachedprotocol0 | 1.0.8-1 | - +- i386 | libmemcachedutil2 | 1.0.8-1 | - +- i386 | libmemphis-0.2-0 | 0.2.3-2 | - +- i386 | libmemphis-0.2-dbg | 0.2.3-2 | - +- i386 | libmemphis-0.2-dev | 0.2.3-2 | - +- i386 | libmenhir-ocaml-dev | 20120123.dfsg-1 | - +- i386 | libmenu-cache1 | 0.3.3-1 | - +- i386 | libmenu-cache1-dev | 0.3.3-1 | - +- i386 | libmercator-0.3-1 | 0.3.0-2 | - +- i386 | libmercator-0.3-1-dbg | 0.3.0-2 | - +- i386 | libmercator-0.3-dev | 0.3.0-2 | - +- i386 | libmeschach-dev | 1.2b-13 | - +- i386 | libmeschach1.2 | 1.2b-13 | - +- i386 | libmessagecore4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libmessagelist4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libmessageviewer0 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libmetacity-dev | 1:2.34.3-4 | - +- i386 | libmetacity-private0a | 1:2.34.3-4 | - +- i386 | libmgl-dev | 1.11.2-17 | - +- i386 | libmgl-fltk5 | 1.11.2-17 | - +- i386 | libmgl-glut5 | 1.11.2-17 | - +- i386 | libmgl-qt5 | 1.11.2-17 | - +- i386 | libmgl-wx5 | 1.11.2-17 | - +- i386 | libmgl5 | 1.11.2-17 | - +- i386 | libmhash-dev | 0.9.9.9-1.1 | - +- i386 | libmhash2 | 0.9.9.9-1.1 | - +- i386 | libmicroblog4 | 4:4.8.4-2 | - +- i386 | libmicrohttpd-dbg | 0.9.20-1+deb7u1 | - +- i386 | libmicrohttpd-dev | 0.9.20-1+deb7u1 | - +- i386 | libmicrohttpd10 | 0.9.20-1+deb7u1 | - +- i386 | libmigemo-dbg | 20110227-7 | - +- i386 | libmigemo-dev | 20110227-7 | - +- i386 | libmigemo1 | 20110227-7 | - +- i386 | libmikmatch-ocaml | 1.0.4-1+b1 | - +- i386 | libmikmatch-ocaml-dev | 1.0.4-1+b1 | - +- i386 | libmikmod2 | 3.1.12-5 | - +- i386 | libmikmod2-dev | 3.1.12-5 | - +- i386 | libmilter-dev | 8.14.4-4 | - +- i386 | libmilter1.0.1 | 8.14.4-4 | - +- i386 | libmilter1.0.1-dbg | 8.14.4-4 | - +- i386 | libmime-explode-perl | 0.39-2+b1 | - +- i386 | libmimedir-dev | 0.5.1-4 | - +- i386 | libmimedir-gnome-dev | 0.4.2-5 | - +- i386 | libmimedir-gnome0.4 | 0.4.2-5 | - +- i386 | libmimedir0 | 0.5.1-4 | - +- i386 | libmimelib1-dev | 5:1.1.4-2 | - +- i386 | libmimelib1c2a | 5:1.1.4-2 | - +- i386 | libmimelib4 | 4:4.4.11.1+l10n-3+b1 | - +- i386 | libmimetic-dev | 0.9.7-3 | - +- i386 | libmimetic0 | 0.9.7-3 | - +- i386 | libmimetic0-dbg | 0.9.7-3 | - +- i386 | libmimic-dev | 1.0.4-2.1 | - +- i386 | libmimic0 | 1.0.4-2.1 | - +- i386 | libminc-dev | 2.1.10-1+b1 | - +- i386 | libminc2-1 | 2.1.10-1+b1 | - +- i386 | libming-dev | 1:0.4.4-1.1 | - +- i386 | libming-util | 1:0.4.4-1.1 | - +- i386 | libming1 | 1:0.4.4-1.1 | - +- i386 | libmini18n-dev | 0.2.1-1 | - +- i386 | libmini18n1 | 0.2.1-1 | - +- i386 | libmini18n1-dbg | 0.2.1-1 | - +- i386 | libminidjvu-dev | 0.8.svn.2010.05.06+dfsg-0.2 | - +- i386 | libminidjvu0 | 0.8.svn.2010.05.06+dfsg-0.2 | - +- i386 | libminiupnpc-dev | 1.5-2 | - +- i386 | libminiupnpc5 | 1.5-2 | - +- i386 | libminpack1 | 19961126+dfsg1-1 | - +- i386 | libmission-control-plugins-dev | 1:5.12.3-1 | - +- i386 | libmission-control-plugins0 | 1:5.12.3-1 | - +- i386 | libmkv-dev | 0.6.5.1-1 | - +- i386 | libmkv0 | 0.6.5.1-1 | - +- i386 | libmlnlffi-smlnj | 110.74-2 | - +- i386 | libmlpcap-ocaml | 0.9-16 | - +- i386 | libmlpcap-ocaml-dev | 0.9-16 | - +- i386 | libmlpost-ocaml-dev | 0.8.1-3 | - +- i386 | libmlrisctools-smlnj | 110.74-2 | - +- i386 | libmlt++-dev | 0.8.0-4 | - +- i386 | libmlt++3 | 0.8.0-4 | - +- i386 | libmlt-dbg | 0.8.0-4 | - +- i386 | libmlt-dev | 0.8.0-4 | - +- i386 | libmlt5 | 0.8.0-4 | - +- i386 | libmlx4-1 | 1.0.4-1 | - +- i386 | libmlx4-1-dbg | 1.0.4-1 | - +- i386 | libmlx4-dev | 1.0.4-1 | - +- i386 | libmm-dbg | 1.4.2-4 | - +- i386 | libmm-dev | 1.4.2-4 | - +- i386 | libmm-ocaml | 0.2.0-1+b1 | - +- i386 | libmm-ocaml-dev | 0.2.0-1+b1 | - +- i386 | libmm14 | 1.4.2-4 | - +- i386 | libmmpong0.9 | 0.9.1-2.1 | - +- i386 | libmmpong0.9-dev | 0.9.1-2.1 | - +- i386 | libmms-dev | 0.6.2-3 | - +- i386 | libmms0 | 0.6.2-3 | - +- i386 | libmng-dev | 1.0.10-3 | - +- i386 | libmng1 | 1.0.10-3 | - +- i386 | libmnl-dev | 1.0.3-3 | - +- i386 | libmnl0 | 1.0.3-3 | - +- i386 | libmodbus-dev | 3.0.3-1 | - +- i386 | libmodbus5 | 3.0.3-1 | - +- i386 | libmodglue1 | 1.17-2.1 | - +- i386 | libmodplug1 | 1:0.8.8.4-3+deb7u1+git20130828 | - +- i386 | libmoe-dev | 1.5.8-1 | - +- i386 | libmoe1.5 | 1.5.8-1 | - +- i386 | libmongo-client-dev | 0.1.5-1+deb7u1 | - +- i386 | libmongo-client0 | 0.1.5-1+deb7u1 | - +- i386 | libmongo-client0-dbg | 0.1.5-1+deb7u1 | - +- i386 | libmongodb-perl | 0.45-1+b1 | - +- i386 | libmono-2.0-1 | 2.10.8.1-8 | - +- i386 | libmono-2.0-1-dbg | 2.10.8.1-8 | - +- i386 | libmono-2.0-dev | 2.10.8.1-8 | - +- i386 | libmono-fuse-cil | 0.4.2+dfsg-3+b1 | - +- i386 | libmono-profiler | 2.10.8.1-8 | - +- i386 | libmono-uia-atkbridge1.0-cil | 2.1-2 | - +- i386 | libmoose-perl | 2.0603-1 | - +- i386 | libmoosex-role-withoverloading-perl | 0.09-1+b2 | - +- i386 | libmopac7-1gf | 1.15-5 | - +- i386 | libmopac7-dev | 1.15-5 | - +- i386 | libmorph | 1:20090926 | - +- i386 | libmorph-dev | 1:20090926 | - +- i386 | libmosquitto0 | 0.15-2 | - +- i386 | libmosquittopp0 | 0.15-2 | - +- i386 | libmount-dev | 2.20.1-5.3 | - +- i386 | libmount1 | 2.20.1-5.3 | - +- i386 | libmouse-perl | 0.99-1 | - +- i386 | libmowgli-dev | 1.0.0-1 | - +- i386 | libmowgli2 | 1.0.0-1 | - +- i386 | libmowgli2-dbg | 1.0.0-1 | - +- i386 | libmozilla-ldap-perl | 1.5.3-1 | - +- i386 | libmozjs-dev | 17.0.10esr-1~deb7u1 | - +- i386 | libmozjs10d | 10.0.12esr-1 | - +- i386 | libmozjs10d-dbg | 10.0.12esr-1 | - +- i386 | libmozjs17d | 17.0.10esr-1~deb7u1 | - +- i386 | libmozjs17d-dbg | 17.0.10esr-1~deb7u1 | - +- i386 | libmozjs185-1.0 | 1.8.5-1.0.0+dfsg-4 | - +- i386 | libmozjs185-dev | 1.8.5-1.0.0+dfsg-4 | - +- i386 | libmp3lame-dev | 3.99.5+repack1-3 | - +- i386 | libmp3lame-ocaml | 0.3.1-1+b1 | - +- i386 | libmp3lame-ocaml-dev | 0.3.1-1+b1 | - +- i386 | libmp3lame0 | 3.99.5+repack1-3 | - +- i386 | libmp3splt-dev | 0.7.2-2 | - +- i386 | libmp3splt0 | 0.7.2-2 | - +- i386 | libmp3splt0-mp3 | 0.7.2-2 | - +- i386 | libmp3splt0-ogg | 0.7.2-2 | - +- i386 | libmp4v2-2 | 2.0.0~dfsg0-1 | - +- i386 | libmp4v2-dev | 2.0.0~dfsg0-1 | - +- i386 | libmpc-dev | 0.9-4 | - +- i386 | libmpc2 | 0.9-4 | - +- i386 | libmpcdec-dev | 2:0.1~r459-4 | - +- i386 | libmpcdec6 | 2:0.1~r459-4 | - +- i386 | libmpd-dev | 0.20.0-1.1 | - +- i386 | libmpd1 | 0.20.0-1.1 | - +- i386 | libmpd1-dbg | 0.20.0-1.1 | - +- i386 | libmpdclient-dev | 2.3-1 | - +- i386 | libmpdclient2 | 2.3-1 | - +- i386 | libmpdclient2-dbg | 2.3-1 | - +- i386 | libmpeg2-4 | 0.4.1-3 | - +- i386 | libmpeg2-4-dev | 0.4.1-3 | - +- i386 | libmpeg3-1 | 1.5.4-5 | - +- i386 | libmpeg3-dev | 1.5.4-5 | - +- i386 | libmpfi-dev | 1.5.1-1 | - +- i386 | libmpfi0 | 1.5.1-1 | - +- i386 | libmpfr-dev | 3.1.0-5 | - +- i386 | libmpfr4 | 3.1.0-5 | - +- i386 | libmpfr4-dbg | 3.1.0-5 | - +- i386 | libmpg123-0 | 1.14.4-1 | - +- i386 | libmpg123-dev | 1.14.4-1 | - +- i386 | libmpich2-3 | 1.4.1-4.2 | - +- i386 | libmpich2-dev | 1.4.1-4.2 | - +- i386 | libmpikmeans-dbg | 1.5-1+b1 | - +- i386 | libmpikmeans-dev | 1.5-1+b1 | - +- i386 | libmpikmeans1 | 1.5-1+b1 | - +- i386 | libmpj-java | 0.38~dfsg-1 | - +- i386 | libmrml1-dev | 0.1.14-12 | - +- i386 | libmrml1c2a | 0.1.14-12 | - +- i386 | libmrmpi-dev | 1.0~20110620.dfsg-2 | - +- i386 | libmrmpi1 | 1.0~20110620.dfsg-2 | - +- i386 | libmrss0 | 0.19.2-3 | - +- i386 | libmrss0-dbg | 0.19.2-3 | - +- i386 | libmrss0-dev | 0.19.2-3 | - +- i386 | libmsgcat-perl | 1.03-5+b2 | - +- i386 | libmsgpack-dev | 0.5.7-2 | - +- i386 | libmsgpack3 | 0.5.7-2 | - +- i386 | libmsgpackc2 | 0.5.7-2 | - +- i386 | libmsn-dev | 4.2-2 | - +- i386 | libmsn0.3 | 4.2-2 | - +- i386 | libmsn0.3-dbg | 4.2-2 | - +! i386 | libmsv-dev | 0.0.0-1 | 1.0-1~bpo70+1 +- i386 | libmsv0 | 0.0.0-1 | - ++ i386 | libmsv1 | - | 1.0-1~bpo70+1 +- i386 | libmtbl-dev | 0.2-1 | - +- i386 | libmtbl0 | 0.2-1 | - +- i386 | libmtbl0-dbg | 0.2-1 | - +- i386 | libmtcp-dev | 1.2.5-1 | - +- i386 | libmtcp1 | 1.2.5-1 | - +- i386 | libmtdev-dev | 1.1.2-1 | - +- i386 | libmtdev1 | 1.1.2-1 | - +- i386 | libmthca-dev | 1.0.6-1 | - +- i386 | libmthca1 | 1.0.6-1 | - +- i386 | libmthca1-dbg | 1.0.6-1 | - +- i386 | libmtp-dbg | 1.1.3-35-g0ece104-5 | - +- i386 | libmtp-dev | 1.1.3-35-g0ece104-5 | - +- i386 | libmtp-runtime | 1.1.3-35-g0ece104-5 | - +- i386 | libmtp9 | 1.1.3-35-g0ece104-5 | - +- i386 | libmudflap0 | 4.7.2-5 | - +- i386 | libmudflap0-4.4-dev | 4.4.7-2 | - +- i386 | libmudflap0-4.6-dev | 4.6.3-14 | - +- i386 | libmudflap0-4.7-dev | 4.7.2-5 | - +- i386 | libmudflap0-dbg | 4.7.2-5 | - +- i386 | libmulticobex1 | 0.23-1.1 | - +- i386 | libmulticobex1-dev | 0.23-1.1 | - +- i386 | libmultidimensional-perl | 0.010-1 | - +- i386 | libmumps-4.10.0 | 4.10.0.dfsg-3 | - +- i386 | libmumps-dev | 4.10.0.dfsg-3 | - +- i386 | libmumps-ptscotch-4.10.0 | 4.10.0.dfsg-3 | - +- i386 | libmumps-ptscotch-dev | 4.10.0.dfsg-3 | - +- i386 | libmumps-scotch-4.10.0 | 4.10.0.dfsg-3 | - +- i386 | libmumps-scotch-dev | 4.10.0.dfsg-3 | - +- i386 | libmumps-seq-4.10.0 | 4.10.0.dfsg-3 | - +- i386 | libmumps-seq-dev | 4.10.0.dfsg-3 | - +- i386 | libmunge-dev | 0.5.10-1 | - +- i386 | libmunge2 | 0.5.10-1 | - +- i386 | libmuparser-dev | 2.1.0-3 | - +- i386 | libmuparser2 | 2.1.0-3 | - +- i386 | libmupdf-dev | 0.9-2 | - +- i386 | libmupen64plus2 | 1.99.5-6 | - +- i386 | libmupen64plus2-dbg | 1.99.5-6 | - +- i386 | libmuroar-dev | 0.1.8-2 | - +- i386 | libmuroar0 | 0.1.8-2 | - +- i386 | libmuroar0-dbg | 0.1.8-2 | - +- i386 | libmuroard3 | 0.1.10-2 | - +- i386 | libmusic-dev | 1.0.7-1.2 | - +- i386 | libmusic1 | 1.0.7-1.2 | - +- i386 | libmusicbrainz-discid-perl | 0.03-1+b2 | - +- i386 | libmusicbrainz3-6 | 3.0.2-2.1 | - +- i386 | libmusicbrainz3-dev | 3.0.2-2.1 | - +- i386 | libmusicbrainz5-0 | 5.0.1-2 | - +- i386 | libmusicbrainz5-dev | 5.0.1-2 | - +- i386 | libmutter-dev | 3.4.1-5 | - +- i386 | libmutter0 | 3.4.1-5 | - +- i386 | libmx-1.0-2 | 1.4.6-1 | - +- i386 | libmx-1.0-2-dbg | 1.4.6-1 | - +- i386 | libmx-bin | 1.4.6-1 | - +- i386 | libmx-dev | 1.4.6-1 | - +- i386 | libmxml-dev | 2.6-2 | - +- i386 | libmxml1 | 2.6-2 | - +- i386 | libmyodbc | 5.1.10-2+deb7u1 | - +- i386 | libmyproxy-dev | 5.6-1 | - +- i386 | libmyproxy5 | 5.6-1 | - +- i386 | libmysql++-dev | 3.1.0-2+b1 | - +- i386 | libmysql++3 | 3.1.0-2+b1 | - +- i386 | libmysql-ocaml | 1.1.1-1 | - +- i386 | libmysql-ocaml-dev | 1.1.1-1 | - +- i386 | libmysqlclient-dev | 5.5.33+dfsg-0+wheezy1 | - +- i386 | libmysqlclient18 | 5.5.33+dfsg-0+wheezy1 | - +- i386 | libmysqlcppconn-dev | 1.1.0-4+b1 | - +- i386 | libmysqlcppconn5 | 1.1.0-4+b1 | - +- i386 | libmysqld-dev | 5.5.33+dfsg-0+wheezy1 | - +- i386 | libmysqld-pic | 5.5.33+dfsg-0+wheezy1 | - +- i386 | libmythes-1.2-0 | 2:1.2.2-1 | - +- i386 | libmythes-dev | 2:1.2.2-1 | - +- i386 | libnabrit-dbg | 0.4.1-1 | - +- i386 | libnabrit-dev | 0.4.1-1 | - +- i386 | libnabrit3 | 0.4.1-1 | - +- i386 | libnacl-dev | 20110221-4 | - +- i386 | libnacore-dev | 0.4.0-3 | - +- i386 | libnacore5 | 0.4.0-3 | - +- i386 | libnanohttp-dev | 1.1.0-17.1 | - +- i386 | libnanohttp1 | 1.1.0-17.1 | - +- i386 | libnanohttp1-dbg | 1.1.0-17.1 | - +- i386 | libnatpmp-dev | 20110808-3 | - +- i386 | libnatpmp1 | 20110808-3 | - +- i386 | libnautilus-extension-dev | 3.4.2-1+build1 | - +- i386 | libnautilus-extension1a | 3.4.2-1+build1 | - +- i386 | libnbio-dev | 0.30-1 | - +- i386 | libnbio0 | 0.30-1 | - +- i386 | libncap-dev | 1.9.2-1+b2 | - +- i386 | libncap44 | 1.9.2-1+b2 | - +- i386 | libncbi6 | 6.1.20120620-2 | - +- i386 | libncbi6-dbg | 6.1.20120620-2 | - +- i386 | libncbi6-dev | 6.1.20120620-2 | - +- i386 | libncp | 2.2.6-9 | - +- i386 | libncp-dev | 2.2.6-9 | - +- i386 | libncurses5 | 5.9-10 | - +- i386 | libncurses5-dbg | 5.9-10 | - +- i386 | libncurses5-dev | 5.9-10 | - +- i386 | libncursesada-dbg | 5.9.20110404-7 | - +- i386 | libncursesada2 | 5.9.20110404-7 | - +- i386 | libncursesada2-dev | 5.9.20110404-7 | - +- i386 | libncursesw5 | 5.9-10 | - +- i386 | libncursesw5-dbg | 5.9-10 | - +- i386 | libncursesw5-dev | 5.9-10 | - +- i386 | libndr-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libndr-standard-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libndr-standard0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libndr0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libnecpp-dev | 1.5.0+cvs20101003-2.1 | - +- i386 | libnecpp0 | 1.5.0+cvs20101003-2.1 | - +- i386 | libneko0 | 1.8.1-6+b1 | - +- i386 | libnemesis3 | 5.14.dfsg.1-2+b1 | - +- i386 | libneon27 | 0.29.6-3 | - +- i386 | libneon27-dbg | 0.29.6-3 | - +- i386 | libneon27-dev | 0.29.6-3 | - +- i386 | libneon27-gnutls | 0.29.6-3 | - +- i386 | libneon27-gnutls-dbg | 0.29.6-3 | - +- i386 | libneon27-gnutls-dev | 0.29.6-3 | - +- i386 | libnepomuk4 | 4:4.8.4-4 | - +- i386 | libnepomukquery4a | 4:4.8.4-4 | - +- i386 | libnepomukutils4 | 4:4.8.4-4 | - +- i386 | libnes-dev | 1.1.3-1 | - +- i386 | libnes1 | 1.1.3-1 | - +- i386 | libnes1-dbg | 1.1.3-1 | - +- i386 | libnet-arp-perl | 1.0.4-1+b2 | - +- i386 | libnet-bluetooth-perl | 0.40-2+b4 | - +- i386 | libnet-cups-perl | 0.60-1+b2 | - +- i386 | libnet-dbus-glib-perl | 0.33.0-1+b2 | - +- i386 | libnet-dbus-perl | 1.0.0-1+b1 | - +- i386 | libnet-dns-perl | 0.66-2+b2 | - +- i386 | libnet-freedb-perl | 0.08-2+b1 | - +- i386 | libnet-handlersocket-perl | 1.1.0-7-g1044a28-1 | - +- i386 | libnet-jabber-loudmouth-perl | 0.07-2+b2 | - +- i386 | libnet-ldapapi-perl | 3.0.3-7+b2 | - +- i386 | libnet-libdnet-perl | 0.96-1 | - +- i386 | libnet-libidn-perl | 0.12.ds-1+b3 | - +- i386 | libnet-nis-perl | 0.43-1+b3 | - +- i386 | libnet-oping-perl | 1.6.2-1.21-1 | - +- i386 | libnet-patricia-perl | 1.19-1+b2 | - +- i386 | libnet-pcap-perl | 0.16-3+b1 | - +- i386 | libnet-rawip-perl | 0.25-1+b2 | - +! i386 | libnet-remctl-perl | 3.2-4 | 3.8-1~bpo70+1 +- i386 | libnet-ssh2-perl | 0.44-1 | - +- i386 | libnet-ssleay-perl | 1.48-1+b1 | - +- i386 | libnet-tclink-perl | 3.4.0-5+b3 | - +- i386 | libnet-z3950-simpleserver-perl | 1.15-1 | - +- i386 | libnet-z3950-zoom-perl | 1.26-1+b2 | - +- i386 | libnet1 | 1.1.4-2.1 | - +- i386 | libnet1-dbg | 1.1.4-2.1 | - +- i386 | libnet1-dev | 1.1.4-2.1 | - +- i386 | libnet6-1.3-0 | 1:1.3.14-1 | - +- i386 | libnet6-1.3-0-dbg | 1:1.3.14-1 | - +- i386 | libnet6-1.3-dev | 1:1.3.14-1 | - +- i386 | libnetaddr-ip-perl | 4.062+dfsg-1 | - +- i386 | libnetcdf-dev | 1:4.1.3-6+b1 | - +- i386 | libnetcdfc++4 | 1:4.1.3-6+b1 | - +- i386 | libnetcdfc7 | 1:4.1.3-6+b1 | - +- i386 | libnetcdff5 | 1:4.1.3-6+b1 | - +- i386 | libnetcf-dev | 0.1.9-2 | - +- i386 | libnetcf1 | 0.1.9-2 | - +- i386 | libnetcf1-dbg | 0.1.9-2 | - +- i386 | libnetclasses-dev | 1.06.dfsg-5+b3 | - +- i386 | libnetclasses0 | 1.06.dfsg-5+b3 | - +- i386 | libnetfilter-conntrack-dev | 1.0.1-1 | - +- i386 | libnetfilter-conntrack3 | 1.0.1-1 | - +- i386 | libnetfilter-conntrack3-dbg | 1.0.1-1 | - +- i386 | libnetfilter-cttimeout-dev | 1.0.0-1 | - +- i386 | libnetfilter-cttimeout1 | 1.0.0-1 | - +- i386 | libnetfilter-cttimeout1-dbg | 1.0.0-1 | - +- i386 | libnetfilter-log-dev | 1.0.0-1 | - +- i386 | libnetfilter-log1 | 1.0.0-1 | - +- i386 | libnetfilter-log1-dbg | 1.0.0-1 | - +- i386 | libnetfilter-queue-dev | 0.0.17-1 | - +- i386 | libnetfilter-queue1 | 0.0.17-1 | - +- i386 | libnetfilter-queue1-dbg | 0.0.17-1 | - +- i386 | libnethttpd-ocaml-dev | 3.5.1-1 | - +- i386 | libnetpbm10 | 2:10.0-15+b1 | - +- i386 | libnetpbm10-dev | 2:10.0-15+b1 | - +- i386 | libnetpbm9 | 2:10.0-15+b1 | - +- i386 | libnetpbm9-dev | 2:10.0-15+b1 | - +- i386 | libnetsvcs-6.0.3 | 6.0.3+dfsg-0.1 | - +- i386 | libnetsvcs-dev | 6.0.3+dfsg-0.1 | - +! i386 | libnettle4 | 2.4-3 | 2.7.1-1~bpo70+1 +- i386 | libnewlib-dev | 1.18.0-6.2 | - +- i386 | libnewlib0 | 1.18.0-6.2 | - +- i386 | libnewmat10-dev | 1.10.4-5 | - +- i386 | libnewmat10ldbl | 1.10.4-5 | - +- i386 | libnewt-dev | 0.52.14-11.1 | - +- i386 | libnewt-pic | 0.52.14-11.1 | - +- i386 | libnewt0.52 | 0.52.14-11.1 | - +- i386 | libnexus0 | 4.2.1-svn1614-1+b2 | - +- i386 | libnexus0-dev | 4.2.1-svn1614-1+b2 | - +- i386 | libnexus0-java | 4.2.1-svn1614-1+b2 | - +- i386 | libnexus0-python | 4.2.1-svn1614-1+b2 | - +- i386 | libnflog-perl | 0.2-3 | - +- i386 | libnfnetlink-dev | 1.0.0-1.1 | - +- i386 | libnfnetlink0 | 1.0.0-1.1 | - +- i386 | libnfnetlink0-dbg | 1.0.0-1.1 | - +- i386 | libnfo-dev | 1.0.1-1 | - +- i386 | libnfo1 | 1.0.1-1 | - +- i386 | libnfo1-bin | 1.0.1-1 | - +- i386 | libnfo1-dbg | 1.0.1-1 | - +- i386 | libnfqueue-perl | 0.4-3 | - +- i386 | libnfs-dev | 1.3.0-2 | - +- i386 | libnfs1 | 1.3.0-2 | - +- i386 | libnfsidmap-dev | 0.25-4 | - +- i386 | libnfsidmap2 | 0.25-4 | - +- i386 | libnice-dbg | 0.1.2-1 | - +- i386 | libnice-dev | 0.1.2-1 | - +- i386 | libnice10 | 0.1.2-1 | - +- i386 | libnids-dev | 1.23-2 | - +- i386 | libnids1.21 | 1.23-2 | - +- i386 | libnifti-dev | 2.0.0-1 | - +- i386 | libnifti2 | 2.0.0-1 | - +- i386 | libnih-dbus-dev | 1.0.3-4.1 | - +- i386 | libnih-dbus1 | 1.0.3-4.1 | - +- i386 | libnih-dev | 1.0.3-4.1 | - +- i386 | libnih1 | 1.0.3-4.1 | - +- i386 | libnjb-dev | 2.2.7~dfsg0-3 | - +- i386 | libnjb-tools | 2.2.7~dfsg0-3 | - +- i386 | libnjb5 | 2.2.7~dfsg0-3 | - +- i386 | libnkf-perl | 2.12-1 | - +- i386 | libnl-3-200 | 3.2.7-4 | - +- i386 | libnl-3-200-dbg | 3.2.7-4 | - +- i386 | libnl-3-dev | 3.2.7-4 | - +- i386 | libnl-cli-3-200 | 3.2.7-4 | - +- i386 | libnl-cli-3-dev | 3.2.7-4 | - +- i386 | libnl-dev | 1.1-7 | - +- i386 | libnl-genl-3-200 | 3.2.7-4 | - +- i386 | libnl-genl-3-dev | 3.2.7-4 | - +- i386 | libnl-nf-3-200 | 3.2.7-4 | - +- i386 | libnl-nf-3-dev | 3.2.7-4 | - +- i386 | libnl-route-3-200 | 3.2.7-4 | - +- i386 | libnl-route-3-dev | 3.2.7-4 | - +- i386 | libnl-utils | 3.2.7-4 | - +- i386 | libnl1 | 1.1-7 | - +- i386 | libnm-glib-dev | 0.9.4.0-10 | - +- i386 | libnm-glib-vpn-dev | 0.9.4.0-10 | - +- i386 | libnm-glib-vpn1 | 0.9.4.0-10 | - +- i386 | libnm-glib4 | 0.9.4.0-10 | - +- i386 | libnm-gtk-dev | 0.9.4.1-5 | - +- i386 | libnm-gtk0 | 0.9.4.1-5 | - +- i386 | libnm-util-dev | 0.9.4.0-10 | - +- i386 | libnm-util2 | 0.9.4.0-10 | - +- i386 | libnmz7 | 2.0.21-6 | - +- i386 | libnmz7-dev | 2.0.21-6 | - +- i386 | libnoise-dev | 1.0.0+nmu1 | - +- i386 | libnoise0 | 1.0.0+nmu1 | - +- i386 | libnotify-bin | 0.7.5-1 | - +- i386 | libnotify-dev | 0.7.5-1 | - +- i386 | libnotify4 | 0.7.5-1 | - +! i386 | libnotmuch-dev | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | libnotmuch3 | 0.13.2-1 | 0.16-1~bpo70+1 +- i386 | libnova-0.14-0 | 0.14.0-2 | - +- i386 | libnova-dev | 0.14.0-2 | - ++ i386 | libnpp5.0 | - | 5.0.35-8~bpo70+1 +- i386 | libnpth0 | 0.90-2 | - +- i386 | libnpth0-dbg | 0.90-2 | - +- i386 | libnpth0-dev | 0.90-2 | - +- i386 | libnsbmp0 | 0.0.1-1.1 | - +- i386 | libnsbmp0-dbg | 0.0.1-1.1 | - +- i386 | libnsbmp0-dev | 0.0.1-1.1 | - +- i386 | libnsgif0 | 0.0.1-1.1 | - +- i386 | libnsgif0-dbg | 0.0.1-1.1 | - +- i386 | libnsgif0-dev | 0.0.1-1.1 | - +- i386 | libnspr4 | 2:4.9.2-1+deb7u1 | - +- i386 | libnspr4-0d | 2:4.9.2-1+deb7u1 | - +- i386 | libnspr4-dbg | 2:4.9.2-1+deb7u1 | - +- i386 | libnspr4-dev | 2:4.9.2-1+deb7u1 | - +- i386 | libnss-cache | 0.10.2-1 | - +- i386 | libnss-db | 2.2.3pre1-4 | - +- i386 | libnss-extrausers | 0.6-3 | - +- i386 | libnss-gw-name | 0.2.1-1 | - +- i386 | libnss-ldap | 264-2.5 | - +- i386 | libnss-ldapd | 0.8.10-4 | - +- i386 | libnss-lwres | 0.93-7 | - +- i386 | libnss-mdns | 0.10-3.2 | - +- i386 | libnss-myhostname | 0.3-5~deb7u1 | - +- i386 | libnss-mysql-bg | 1.5-3+b1 | - +- i386 | libnss-pgsql2 | 1.4.0debian-5 | - +- i386 | libnss-rainbow2 | 0.8.6-1 | - +- i386 | libnss-sss | 1.8.4-2 | - +! i386 | libnss-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | libnss3 | 2:3.14.5-1 | - +- i386 | libnss3-1d | 2:3.14.5-1 | - +- i386 | libnss3-dbg | 2:3.14.5-1 | - +- i386 | libnss3-dev | 2:3.14.5-1 | - +- i386 | libnss3-tools | 2:3.14.5-1 | - ++ i386 | libntdb-dev | - | 1.0-2~bpo70+1 ++ i386 | libntdb1 | - | 1.0-2~bpo70+1 ++ i386 | libntdb1-dbg | - | 1.0-2~bpo70+1 +- i386 | libntfs-dev | 2.0.0-1+b1 | - +- i386 | libntfs-gnomevfs | 2.0.0-1+b1 | - +- i386 | libntfs10 | 2.0.0-1+b1 | - +- i386 | libntl-dev | 5.5.2-2 | - +- i386 | libntl0 | 5.5.2-2 | - +- i386 | libntlm0 | 1.2-1 | - +- i386 | libntlm0-dev | 1.2-1 | - +- i386 | libntrack-dev | 016-1.1 | - +- i386 | libntrack-glib-dev | 016-1.1 | - +- i386 | libntrack-glib2 | 016-1.1 | - +- i386 | libntrack-gobject-dev | 016-1.1 | - +- i386 | libntrack-gobject1 | 016-1.1 | - +- i386 | libntrack-qt4-1 | 016-1.1 | - +- i386 | libntrack-qt4-dev | 016-1.1 | - +- i386 | libntrack0 | 016-1.1 | - +- i386 | libnuclient-dev | 2.4.3-2.2 | - +- i386 | libnuclient4 | 2.4.3-2.2 | - +- i386 | libnuma-dbg | 2.0.8~rc4-1 | - +- i386 | libnuma-dev | 2.0.8~rc4-1 | - +- i386 | libnuma1 | 2.0.8~rc4-1 | - +- i386 | libnussl-dev | 2.4.3-2.2 | - +- i386 | libnussl1 | 2.4.3-2.2 | - ++ i386 | libnvcuvid1 | - | 319.82-1~bpo70+1 ++ i386 | libnvidia-compiler | - | 319.82-1~bpo70+1 ++ i386 | libnvidia-encode1 | - | 319.82-1~bpo70+1 ++ i386 | libnvidia-ifr1 | - | 319.82-1~bpo70+1 ++ i386 | libnvidia-ml1 | - | 319.82-1~bpo70+1 ++ i386 | libnvtoolsext5.0 | - | 5.0.35-8~bpo70+1 +! i386 | libnvtt-bin | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libnvtt-dev | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libnvtt2 | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +- i386 | libnxcl-bin | 0.9-3.1 | - +- i386 | libnxcl-dev | 0.9-3.1 | - +- i386 | libnxcl1 | 0.9-3.1 | - +- i386 | libnxml0 | 0.18.3-4 | - +- i386 | libnxml0-dbg | 0.18.3-4 | - +- i386 | libnxml0-dev | 0.18.3-4 | - +- i386 | libnzb-dev | 0.0.20050629-6.1 | - +- i386 | libnzb0c2a | 0.0.20050629-6.1 | - +- i386 | liboar-perl | 2.5.2-3 | - +- i386 | liboasis-ocaml | 0.2.0-6 | - +- i386 | liboasis-ocaml-dev | 0.2.0-6 | - +- i386 | liboasis3-0d | 3.3.beta.dfsg.1-8+b1 | - +- i386 | liboasis3-dev | 3.3.beta.dfsg.1-8+b1 | - +- i386 | liboath-dev | 1.12.4-1 | - +- i386 | liboath0 | 1.12.4-1 | - +- i386 | liboauth-dev | 0.9.4-3.1 | - +- i386 | liboauth0 | 0.9.4-3.1 | - +- i386 | libobby-0.4-1 | 0.4.8-1 | - +- i386 | libobby-0.4-1-dbg | 0.4.8-1 | - +- i386 | libobby-0.4-dev | 0.4.8-1 | - +- i386 | libobexftp-perl | 0.23-1.1 | - +- i386 | libobexftp-ruby | 0.23-1.1 | - +- i386 | libobexftp0 | 0.23-1.1 | - +- i386 | libobexftp0-dev | 0.23-1.1 | - +- i386 | libobjc3 | 4.6.3-14 | - +- i386 | libobjc3-dbg | 4.6.3-14 | - +- i386 | libobjc4 | 4.7.2-5 | - +- i386 | libobjc4-dbg | 4.7.2-5 | - +- i386 | libobrender27 | 3.5.0-7 | - ++ i386 | libobrender29 | - | 3.5.2-6~bpo70+1 +- i386 | libobrowser-ocaml-dev | 1.1.1+dfsg-1+b9 | - +- i386 | libobt0 | 3.5.0-7 | - ++ i386 | libobt2 | - | 3.5.2-6~bpo70+1 +- i386 | libobus-ocaml | 1.1.3-1+b8 | - +- i386 | libobus-ocaml-bin | 1.1.3-1+b8 | - +- i386 | libobus-ocaml-dev | 1.1.3-1+b8 | - +! i386 | libocamlbricks-ocaml-dev | 0.50.1-4+b5 | 0.90+bzr367-1~bpo70+1 +- i386 | libocamlgraph-ocaml-dev | 1.8.2-2 | - +- i386 | libocamlgraph-viewer-ocaml-dev | 1.8.2-2 | - +- i386 | libocamlgsl-ocaml | 0.6.0-7+b2 | - +- i386 | libocamlgsl-ocaml-dev | 0.6.0-7+b2 | - +- i386 | libocamlnet-gtk2-ocaml-dev | 3.5.1-1 | - +- i386 | libocamlnet-ocaml | 3.5.1-1 | - +- i386 | libocamlnet-ocaml-bin | 3.5.1-1 | - +- i386 | libocamlnet-ocaml-dev | 3.5.1-1 | - +- i386 | libocamlnet-ssl-ocaml | 3.5.1-1 | - +- i386 | libocamlnet-ssl-ocaml-dev | 3.5.1-1 | - +- i386 | libocamlodbc-ocaml-dev | 2.15-5+b3 | - +- i386 | libocamlviz-ocaml-dev | 1.01-2+b2 | - +- i386 | libocas-dbg | 0.93-1 | - +- i386 | libocas-dev | 0.93-1 | - +- i386 | libocas-tools | 0.93-1 | - +- i386 | libocas0 | 0.93-1 | - +- i386 | liboce-foundation-dev | 0.9.1-3 | - +- i386 | liboce-foundation2 | 0.9.1-3 | - +- i386 | liboce-modeling2 | 0.9.1-3 | - +- i386 | liboce-ocaf-lite2 | 0.9.1-3 | - +- i386 | liboce-ocaf2 | 0.9.1-3 | - +- i386 | liboce-visualization2 | 0.9.1-3 | - +- i386 | libocpf-dev | 1:1.0-3 | - +- i386 | libocpf0 | 1:1.0-3 | - +- i386 | libocrad-dev | 0.22~rc1-2 | - +- i386 | libocsigen-ocaml | 1.3.4-2+b12 | - +- i386 | libocsigen-ocaml-dev | 1.3.4-2+b12 | - +- i386 | libocsigen-xhtml-ocaml-dev | 1.3.4-2+b12 | - +- i386 | libocsigenserver-ocaml | 2.1-1 | - +- i386 | libocsigenserver-ocaml-dev | 2.1-1 | - ++ i386 | libocsync-dev | - | 0.91.4-1~bpo70+1 ++ i386 | libocsync0 | - | 0.91.4-1~bpo70+1 +- i386 | liboctave-dev | 3.6.2-5+deb7u1 | - +- i386 | liboctave1 | 3.6.2-5+deb7u1 | - +- i386 | libodbc1 | 2.2.14p2-5 | - +- i386 | libodbcinstq4-1 | 2.3.0-3 | - +- i386 | libode-dev | 2:0.11.1-4 | - +- i386 | libode-sp-dev | 2:0.11.1-4 | - +- i386 | libode1 | 2:0.11.1-4 | - +- i386 | libode1sp | 2:0.11.1-4 | - +- i386 | libodin-dev | 1.8.5-2 | - +- i386 | libodn-ocaml | 0.0.8-1 | - +- i386 | libodn-ocaml-dev | 0.0.8-1 | - +- i386 | libofa0 | 0.9.3-5 | - +- i386 | libofa0-dev | 0.9.3-5 | - +- i386 | libofapi-dev | 0git20070620-6 | - +- i386 | libofapi0 | 0git20070620-6 | - +- i386 | libofdt-dev | 1.3.6-1 | - +- i386 | libofdt1 | 1.3.6-1 | - +- i386 | libofetion-dev | 2.2.2-1 | - +- i386 | libofetion1 | 2.2.2-1 | - +- i386 | libofx-dev | 1:0.9.4-2.1 | - +- i386 | libofx4 | 1:0.9.4-2.1 | - +- i386 | libofx4-dbg | 1:0.9.4-2.1 | - +- i386 | libogdf-tulip-3.7.0 | 3.7.0dfsg-4 | - +- i386 | libogdi3.2 | 3.2.0~beta2-7 | - +- i386 | libogdi3.2-dev | 3.2.0~beta2-7 | - +- i386 | libogg-dbg | 1.3.0-4 | - +- i386 | libogg-dev | 1.3.0-4 | - +- i386 | libogg-ocaml | 0.4.3-1+b1 | - +- i386 | libogg-ocaml-dev | 0.4.3-1+b1 | - +- i386 | libogg-vorbis-decoder-perl | 0.9-1+b2 | - +- i386 | libogg0 | 1.3.0-4 | - +- i386 | liboggkate-dev | 0.4.1-1 | - +- i386 | liboggkate1 | 0.4.1-1 | - +- i386 | liboggplay1 | 0.2.1~git20091227-1.2 | - +- i386 | liboggplay1-dbg | 0.2.1~git20091227-1.2 | - +- i386 | liboggplay1-dev | 0.2.1~git20091227-1.2 | - +- i386 | liboggz2 | 1.1.1-1 | - +- i386 | liboggz2-dbg | 1.1.1-1 | - +- i386 | liboggz2-dev | 1.1.1-1 | - +- i386 | liboglappth-dev | 1.0.0-2 | - +- i386 | liboglappth2 | 1.0.0-2 | - +- i386 | libogre-1.7.4 | 1.7.4+dfsg1-7 | - +- i386 | libogre-1.7.4-dbg | 1.7.4+dfsg1-7 | - +- i386 | libogre-1.8-dev | 1.8.0+dfsg1-3 | - +- i386 | libogre-1.8.0 | 1.8.0+dfsg1-3 | - +- i386 | libogre-1.8.0-dbg | 1.8.0+dfsg1-3 | - +- i386 | libogre-dev | 1.7.4+dfsg1-7 | - +- i386 | libogre-perl | 0.50-2+b2 | - +- i386 | liboil0.3 | 0.3.17-2 | - +- i386 | liboil0.3-dbg | 0.3.17-2 | - +- i386 | liboil0.3-dev | 0.3.17-2 | - +- i386 | libois-1.3.0 | 1.3.0+dfsg0-5 | - +- i386 | libois-dev | 1.3.0+dfsg0-5 | - +- i386 | libois-perl | 0.05-3 | - +- i386 | libokteta1core1 | 4:4.8.4+dfsg-1 | - +- i386 | libokteta1gui1 | 4:4.8.4+dfsg-1 | - +- i386 | libokularcore1 | 4:4.8.4-3 | - +- i386 | libomhacks-dev | 0.16-1 | - +- i386 | libomhacks0 | 0.16-1 | - +- i386 | libomnievents-dbg | 1:2.6.2-2 | - +- i386 | libomnievents-dev | 1:2.6.2-2 | - +- i386 | libomnievents2 | 1:2.6.2-2 | - +- i386 | libomniorb4-1 | 4.1.6-2 | - +- i386 | libomniorb4-1-dbg | 4.1.6-2 | - +- i386 | libomniorb4-dev | 4.1.6-2 | - +- i386 | libomnithread3-dev | 4.1.6-2 | - +- i386 | libomnithread3c2 | 4.1.6-2 | - +- i386 | libomnithread3c2-dbg | 4.1.6-2 | - +- i386 | libomxil-bellagio-dev | 0.9.3-1+b1 | - +- i386 | libomxil-bellagio0 | 0.9.3-1+b1 | - +- i386 | libomxil-bellagio0-components-alsa | 0.1-2 | - +- i386 | libomxil-bellagio0-components-base | 0.9.3-1+b1 | - +- i386 | libomxil-bellagio0-components-base-dbg | 0.9.3-1+b1 | - +- i386 | libomxil-bellagio0-components-camera | 0.1-2 | - +- i386 | libomxil-bellagio0-components-fbdevsink | 0.1-2 | - +- i386 | libomxil-bellagio0-components-mad | 0.1-1 | - +- i386 | libomxil-bellagio0-components-videosrc | 0.1-1 | - +- i386 | libomxil-bellagio0-components-vorbis | 0.1-3 | - +- i386 | libomxil-bellagio0-components-xvideo | 0.1-2 | - +- i386 | libomxil-bellagio0-dbg | 0.9.3-1+b1 | - +- i386 | libonig-dev | 5.9.1-1 | - +- i386 | libonig2 | 5.9.1-1 | - +- i386 | libonig2-dbg | 5.9.1-1 | - +- i386 | liboobs-1-5 | 3.0.0-1 | - +- i386 | liboobs-1-5-dbg | 3.0.0-1 | - +- i386 | liboobs-1-dev | 3.0.0-1 | - +- i386 | liboop-dbg | 1.0-9 | - +- i386 | liboop-dev | 1.0-9 | - +- i386 | liboop4 | 1.0-9 | - +- i386 | libooptools-dev | 2.7-1 | - +- i386 | libopal-dbg | 3.10.4~dfsg-3 | - +- i386 | libopal-dev | 3.10.4~dfsg-3 | - +- i386 | libopal3.10.4 | 3.10.4~dfsg-3 | - +! i386 | libopenafs-dev | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- i386 | libopenais-dev | 1.1.4-4.1 | - +- i386 | libopenais3 | 1.1.4-4.1 | - +- i386 | libopenal-dev | 1:1.14-4 | - +- i386 | libopenal1 | 1:1.14-4 | - +- i386 | libopenbabel-dev | 2.3.1+dfsg-4 | - +- i386 | libopenbabel4 | 2.3.1+dfsg-4 | - +- i386 | libopenblas-base | 0.1.1-6+deb7u2 | - +- i386 | libopenblas-dev | 0.1.1-6+deb7u2 | - +- i386 | libopencc-dbg | 0.3.0-3 | - +- i386 | libopencc-dev | 0.3.0-3 | - +- i386 | libopencc1 | 0.3.0-3 | - +- i386 | libopenconnect-dev | 3.20-4 | - +- i386 | libopenconnect1 | 3.20-4 | - +- i386 | libopencore-amrnb-dev | 0.1.3-2 | - +- i386 | libopencore-amrnb0 | 0.1.3-2 | - +- i386 | libopencore-amrnb0-dbg | 0.1.3-2 | - +- i386 | libopencore-amrwb-dev | 0.1.3-2 | - +- i386 | libopencore-amrwb0 | 0.1.3-2 | - +- i386 | libopencore-amrwb0-dbg | 0.1.3-2 | - +- i386 | libopencryptoki-dev | 2.3.1+dfsg-3 | - +- i386 | libopencryptoki0 | 2.3.1+dfsg-3 | - +- i386 | libopencsg-dev | 1.3.2-2 | - +- i386 | libopencsg-example | 1.3.2-2 | - +- i386 | libopencsg1 | 1.3.2-2 | - +- i386 | libopencsg1-dbg | 1.3.2-2 | - +- i386 | libopenct1 | 0.6.20-1.2 | - +- i386 | libopenct1-dbg | 0.6.20-1.2 | - +- i386 | libopenct1-dev | 0.6.20-1.2 | - +- i386 | libopencv-calib3d-dev | 2.3.1-11 | - +- i386 | libopencv-calib3d2.3 | 2.3.1-11 | - +- i386 | libopencv-contrib-dev | 2.3.1-11 | - +- i386 | libopencv-contrib2.3 | 2.3.1-11 | - +- i386 | libopencv-core-dev | 2.3.1-11 | - +- i386 | libopencv-core2.3 | 2.3.1-11 | - +- i386 | libopencv-dev | 2.3.1-11 | - +- i386 | libopencv-features2d-dev | 2.3.1-11 | - +- i386 | libopencv-features2d2.3 | 2.3.1-11 | - +- i386 | libopencv-flann-dev | 2.3.1-11 | - +- i386 | libopencv-flann2.3 | 2.3.1-11 | - +- i386 | libopencv-gpu-dev | 2.3.1-11 | - +- i386 | libopencv-gpu2.3 | 2.3.1-11 | - +- i386 | libopencv-highgui-dev | 2.3.1-11 | - +- i386 | libopencv-highgui2.3 | 2.3.1-11 | - +- i386 | libopencv-imgproc-dev | 2.3.1-11 | - +- i386 | libopencv-imgproc2.3 | 2.3.1-11 | - +- i386 | libopencv-legacy-dev | 2.3.1-11 | - +- i386 | libopencv-legacy2.3 | 2.3.1-11 | - +- i386 | libopencv-ml-dev | 2.3.1-11 | - +- i386 | libopencv-ml2.3 | 2.3.1-11 | - +- i386 | libopencv-objdetect-dev | 2.3.1-11 | - +- i386 | libopencv-objdetect2.3 | 2.3.1-11 | - +- i386 | libopencv-video-dev | 2.3.1-11 | - +- i386 | libopencv-video2.3 | 2.3.1-11 | - +- i386 | libopendkim-dev | 2.6.8-4 | - +- i386 | libopendkim7 | 2.6.8-4 | - +- i386 | libopenexr-dev | 1.6.1-6 | - +- i386 | libopenexr6 | 1.6.1-6 | - +- i386 | libopengl-perl | 0.66+dfsg-1 | - +- i386 | libopengl-xscreensaver-perl | 0.04-1+b2 | - +- i386 | libopenhpi-dev | 2.14.1-1.2 | - +- i386 | libopenhpi2 | 2.14.1-1.2 | - +- i386 | libopenigtlink1-dev | 1.9.2~svn7468-1 | - +- i386 | libopenigtlink1.9 | 1.9.2~svn7468-1 | - +- i386 | libopenigtlink1.9-dbg | 1.9.2~svn7468-1 | - +- i386 | libopenimageio-dev | 1.0.5+dfsg0-1 | - +- i386 | libopenimageio1.0 | 1.0.5+dfsg0-1 | - +- i386 | libopenipmi-dev | 2.0.16-1.3 | - +- i386 | libopenipmi0 | 2.0.16-1.3 | - +- i386 | libopenjpeg-dev | 1.3+dfsg-4.7 | - +- i386 | libopenjpeg2 | 1.3+dfsg-4.7 | - +- i386 | libopenjpeg2-dbg | 1.3+dfsg-4.7 | - +- i386 | libopenmeeg-dev | 2.0.0.dfsg-5 | - +- i386 | libopenmeeg1 | 2.0.0.dfsg-5 | - +- i386 | libopenmpi-dbg | 1.4.5-1 | - +- i386 | libopenmpi-dev | 1.4.5-1 | - +- i386 | libopenmpi1.3 | 1.4.5-1 | - +- i386 | libopenobex1 | 1.5-2 | - +- i386 | libopenobex1-dev | 1.5-2 | - +- i386 | libopenr2-3 | 1.3.2-1.1 | - +- i386 | libopenr2-bin | 1.3.2-1.1 | - +- i386 | libopenr2-dev | 1.3.2-1.1 | - +- i386 | libopenraw-dev | 0.0.9-3+b1 | - +- i386 | libopenraw1 | 0.0.9-3+b1 | - +- i386 | libopenraw1-dbg | 0.0.9-3+b1 | - +- i386 | libopenrawgnome-dev | 0.0.9-3+b1 | - +- i386 | libopenrawgnome1 | 0.0.9-3+b1 | - ++ i386 | libopenrpt-dev | - | 3.3.4-6~bpo70+1 ++ i386 | libopenrpt1 | - | 3.3.4-6~bpo70+1 +- i386 | libopenscap-dev | 0.8.0-4+b1 | - +- i386 | libopenscap-perl | 0.8.0-4+b1 | - +- i386 | libopenscap1 | 0.8.0-4+b1 | - +- i386 | libopenscap1-dbg | 0.8.0-4+b1 | - +- i386 | libopenscenegraph-dev | 3.0.1-4 | - +- i386 | libopenscenegraph80 | 3.0.1-4 | - +- i386 | libopenslide-dev | 3.2.6-2 | - +- i386 | libopenslide0 | 3.2.6-2 | - +- i386 | libopensm2 | 3.2.6-20090317-2.1 | - +- i386 | libopensm2-dev | 3.2.6-20090317-2.1 | - +- i386 | libopenthreads-dev | 3.0.1-4 | - +- i386 | libopenthreads14 | 3.0.1-4 | - +- i386 | libopentoken-dbg | 4.0b-3 | - +- i386 | libopentoken3-dev | 4.0b-3 | - +- i386 | libopentoken6 | 4.0b-3 | - +- i386 | libopenturns-dbg | 1.0-4 | - +- i386 | libopenturns-dev | 1.0-4 | - +- i386 | libopenturns0.1 | 1.0-4 | - +- i386 | libopenusb-dev | 1.1.0-2 | - +- i386 | libopenusb0 | 1.1.0-2 | - +- i386 | libopenvg1-mesa | 8.0.5-4+deb7u2 | - +- i386 | libopenvg1-mesa-dbg | 8.0.5-4+deb7u2 | - +- i386 | libopenvg1-mesa-dev | 8.0.5-4+deb7u2 | - +- i386 | libopenvrml-dev | 0.18.9-5+deb7u1 | - +- i386 | libopenvrml9 | 0.18.9-5+deb7u1 | - +- i386 | libopenwalnut1 | 1.2.5-1.1+b1 | - +- i386 | libopenwalnut1-dev | 1.2.5-1.1+b1 | - +- i386 | liboping-dev | 1.6.2-1 | - +- i386 | liboping0 | 1.6.2-1 | - +- i386 | libopkele-dev | 2.0.4-5.3 | - +- i386 | libopkele3 | 2.0.4-5.3 | - +- i386 | libopts25 | 1:5.12-0.1 | - +- i386 | libopts25-dev | 1:5.12-0.1 | - +! i386 | libopus-dbg | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libopus-dev | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libopus0 | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +- i386 | liborange-dev | 0.4-2 | - +- i386 | liborange0 | 0.4-2 | - +- i386 | liborbit2 | 1:2.14.19-0.1 | - +- i386 | liborbit2-dev | 1:2.14.19-0.1 | - +- i386 | liborc-0.4-0 | 1:0.4.16-2 | - +- i386 | liborc-0.4-0-dbg | 1:0.4.16-2 | - +- i386 | liborc-0.4-dev | 1:0.4.16-2 | - +- i386 | liborigin-dev | 20080225-2.1 | - +- i386 | liborigin0 | 20080225-2.1 | - +- i386 | liborigin2-1 | 2:20110117-1+b2 | - +- i386 | liborigin2-dev | 2:20110117-1+b2 | - +- i386 | libortp-dev | 3.5.2-10 | - +- i386 | libortp8 | 3.5.2-10 | - +- i386 | liboscpack-dbg | 1.0.2-1 | - +- i386 | liboscpack-dev | 1.0.2-1 | - +- i386 | liboscpack1 | 1.0.2-1 | - +- i386 | libosgearth-dev | 2.0+dfsg-4+b3 | - +- i386 | libosgearth1 | 2.0+dfsg-4+b3 | - +- i386 | libosinfo-1.0-0 | 0.1.1-1 | - +- i386 | libosinfo-1.0-0-dbg | 0.1.1-1 | - +- i386 | libosinfo-1.0-dev | 0.1.1-1 | - +- i386 | libosinfo-bin | 0.1.1-1 | - +- i386 | libosip2-7 | 3.6.0-4 | - +- i386 | libosip2-dev | 3.6.0-4 | - +- i386 | libosl-dev | 0.5.0-1 | - +- i386 | libosl1 | 0.5.0-1 | - +- i386 | libosl1-dbg | 0.5.0-1 | - +- i386 | libosmesa6 | 8.0.5-4+deb7u2 | - +- i386 | libosmesa6-dev | 8.0.5-4+deb7u2 | - +- i386 | libosmgpsmap-dev | 0.7.3-3 | - +- i386 | libosmgpsmap2 | 0.7.3-3 | - +- i386 | libosmgpsmap2-dbg | 0.7.3-3 | - +- i386 | libosmium-dev | 0.0~20111213-g7f3500a-3+b2 | - ++ i386 | libosmosdr-dev | - | 0.1.7.cd37e9-2~bpo70+1 ++ i386 | libosmosdr0 | - | 0.1.7.cd37e9-2~bpo70+1 +- i386 | libosmpbf-dev | 1.2.1-3 | - +- i386 | libosp-dev | 1.5.2-10 | - +- i386 | libosp5 | 1.5.2-10 | - +- i386 | libosptk3 | 3.4.2-1+b1 | - +- i386 | libosptk3-dbg | 3.4.2-1+b1 | - +- i386 | libosptk3-dev | 3.4.2-1+b1 | - +- i386 | liboss4-salsa-asound2 | 4.2-build2006-2+deb7u1 | - +- i386 | liboss4-salsa2 | 4.2-build2006-2+deb7u1 | - +- i386 | libossim-dev | 1.7.21-4 | - +- i386 | libossim1 | 1.7.21-4 | - +- i386 | libossp-sa-dev | 1.2.6-1 | - +- i386 | libossp-sa12 | 1.2.6-1 | - +- i386 | libossp-uuid-dev | 1.6.2-1.3 | - +- i386 | libossp-uuid-perl | 1.6.2-1.3 | - +- i386 | libossp-uuid16 | 1.6.2-1.3 | - +- i386 | libostyle-dev | 1.4devel1-20.1+b1 | - +- i386 | libostyle1c2 | 1.4devel1-20.1+b1 | - +- i386 | libotcl1 | 1.14+dfsg-2 | - +- i386 | libotcl1-dev | 1.14+dfsg-2 | - +- i386 | libotf-bin | 0.9.12-2 | - +- i386 | libotf-dev | 0.9.12-2 | - +- i386 | libotf-trace-dev | 1.10.2+dfsg-2 | - +- i386 | libotf-trace1 | 1.10.2+dfsg-2 | - +- i386 | libotf0 | 0.9.12-2 | - +- i386 | libotf0-dbg | 0.9.12-2 | - +- i386 | libotfaux0 | 1.10.2+dfsg-2 | - +- i386 | libotp0-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libotpw-dev | 1.3-2 | - +- i386 | libotr2 | 3.2.1-1+deb7u1 | - +- i386 | libotr2-bin | 3.2.1-1+deb7u1 | - +- i386 | libotr2-dev | 3.2.1-1+deb7u1 | - ++ i386 | libotr5 | - | 4.0.0-2.2~bpo70+1 ++ i386 | libotr5-bin | - | 4.0.0-2.2~bpo70+1 ++ i386 | libotr5-dev | - | 4.0.0-2.2~bpo70+1 +- i386 | libots-dev | 0.5.0-2.1 | - +- i386 | libots0 | 0.5.0-2.1 | - +- i386 | libounit-ocaml-dev | 1.1.1-1 | - +- i386 | libow-2.8-15 | 2.8p15-1 | - +- i386 | libow-dev | 2.8p15-1 | - +- i386 | libow-perl | 2.8p15-1 | - +- i386 | libow-php5 | 2.8p15-1 | - +- i386 | libow-tcl | 2.8p15-1 | - +- i386 | libowcapi-2.8-15 | 2.8p15-1 | - +- i386 | libowfat-dev | 0.28-6 | - +- i386 | libowfat-dietlibc-dev | 0.28-6 | - +- i386 | libowfat0 | 0.28-6 | - ++ i386 | libowncloudsync0 | - | 1.5.0+dfsg-4~bpo70+1 +- i386 | libownet-2.8-15 | 2.8p15-1 | - +- i386 | libownet-dev | 2.8p15-1 | - +- i386 | libp11-2 | 0.2.8-2 | - +- i386 | libp11-2-dbg | 0.2.8-2 | - +- i386 | libp11-dev | 0.2.8-2 | - +! i386 | libp11-kit-dev | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | libp11-kit0 | 0.12-3 | 0.20.2-1~bpo70+1 ++ i386 | libp11-kit0-dbg | - | 0.20.2-1~bpo70+1 +- i386 | libpackage-stash-xs-perl | 0.24-1+b1 | - +- i386 | libpackagekit-glib2-14 | 0.7.6-3 | - +- i386 | libpackagekit-glib2-dev | 0.7.6-3 | - +- i386 | libpackagekit-qt2-2 | 0.7.6-3 | - +- i386 | libpackagekit-qt2-dev | 0.7.6-3 | - +- i386 | libpacketdump3 | 3.0.14-1 | - +- i386 | libpacketdump3-dev | 3.0.14-1 | - +- i386 | libpacklib-lesstif1-dev | 20061220+dfsg3-2 | - +- i386 | libpacklib-lesstif1-gfortran | 20061220+dfsg3-2 | - +- i386 | libpacklib1-dev | 20061220+dfsg3-2 | - +- i386 | libpacklib1-gfortran | 20061220+dfsg3-2 | - +- i386 | libpacparser-dev | 1.3.0-2 | - +- i386 | libpacparser1 | 1.3.0-2 | - +- i386 | libpadwalker-perl | 1.94-1 | - +- i386 | libpam-abl | 0.4.3-1 | - +- i386 | libpam-afs-session | 2.5-2 | - +- i386 | libpam-alreadyloggedin | 0.3-4 | - +- i386 | libpam-apparmor | 2.7.103-4 | - +- i386 | libpam-barada | 0.5-3.1 | - +- i386 | libpam-blue | 0.9.0-3 | - +- i386 | libpam-cap | 1:2.22-1.2 | - +- i386 | libpam-ccreds | 10-5+b1 | - +- i386 | libpam-cgroup | 0.38-1 | - +- i386 | libpam-chroot | 0.9-4.1 | - +- i386 | libpam-ck-connector | 0.4.5-3.1 | - +- i386 | libpam-cracklib | 1.1.3-7.1 | - +- i386 | libpam-dbus | 0.2.1-1 | - +- i386 | libpam-duo | 1.8-1 | - +- i386 | libpam-encfs | 0.1.4.4-6 | - +- i386 | libpam-fprintd | 0.4.1-5-g73edad0-3 | - +- i386 | libpam-gnome-keyring | 3.4.1-5 | - +- i386 | libpam-heimdal | 4.6-1 | - +- i386 | libpam-krb5 | 4.6-1 | - +- i386 | libpam-krb5-migrate-heimdal | 0.0.10-1 | - +- i386 | libpam-ldap | 184-8.6 | - +- i386 | libpam-ldapd | 0.8.10-4 | - +- i386 | libpam-modules | 1.1.3-7.1 | - +- i386 | libpam-modules-bin | 1.1.3-7.1 | - +- i386 | libpam-mount | 2.14~git+d1d6f871-1 | - +- i386 | libpam-mysql | 0.7~RC1-4+b3 | - +- i386 | libpam-ncp | 2.2.6-9 | - +- i386 | libpam-nufw | 2.4.3-2.2 | - +- i386 | libpam-oath | 1.12.4-1 | - +- i386 | libpam-ocaml | 1.1-4+b3 | - +- i386 | libpam-ocaml-dev | 1.1-4+b3 | - +! i386 | libpam-openafs-kaserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- i386 | libpam-otpw | 1.3-2 | - +- i386 | libpam-p11 | 0.1.5-2 | - +- i386 | libpam-passwdqc | 1.2.0-1 | - +- i386 | libpam-pgsql | 0.7.3.1-4 | - +- i386 | libpam-pkcs11 | 0.6.8-1 | - +- i386 | libpam-poldi | 0.4.1-2.1 | - +- i386 | libpam-pwdfile | 0.99-5 | - +- i386 | libpam-python | 1.0.2-1 | - +- i386 | libpam-radius-auth | 1.3.16-4.4 | - +- i386 | libpam-script | 1.1.5-1 | - +- i386 | libpam-shield | 0.9.2-3.3 | - +- i386 | libpam-shishi | 1.0.1-2 | - +- i386 | libpam-slurm | 2.3.4-2+b1 | - +! i386 | libpam-smbpass | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpam-ssh | 1.92-15 | 1.98-2~bpo70+1 +- i386 | libpam-sss | 1.8.4-2 | - +- i386 | libpam-systemd | 44-11+deb7u4 | - +- i386 | libpam-tacplus | 1.3.6-1 | - +- i386 | libpam-tmpdir | 0.09 | - +- i386 | libpam-unix2 | 1:2.4.1-6 | - +- i386 | libpam-usb | 0.5.0-4 | - +! i386 | libpam-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | libpam-yubico | 2.12-1 | - +- i386 | libpam0g | 1.1.3-7.1 | - +- i386 | libpam0g-dev | 1.1.3-7.1 | - +- i386 | libpanel-applet-4-0 | 3.4.2.1-4 | - +- i386 | libpanel-applet-4-dev | 3.4.2.1-4 | - +- i386 | libpango-perl | 1.222-1+b1 | - +- i386 | libpango1.0-0 | 1.30.0-1 | - +- i386 | libpango1.0-0-dbg | 1.30.0-1 | - +- i386 | libpango1.0-dev | 1.30.0-1 | - +- i386 | libpangomm-1.4-1 | 2.28.4-1 | - +- i386 | libpangomm-1.4-dbg | 2.28.4-1 | - +- i386 | libpangomm-1.4-dev | 2.28.4-1 | - +- i386 | libpano13-2 | 2.9.18+dfsg-5 | - +- i386 | libpano13-bin | 2.9.18+dfsg-5 | - +- i386 | libpano13-dev | 2.9.18+dfsg-5 | - +- i386 | libpantomime1.2 | 1.2.0~pre3+snap20071004+dfsg-4+b1 | - +- i386 | libpantomime1.2-dev | 1.2.0~pre3+snap20071004+dfsg-4+b1 | - +- i386 | libpaper-dev | 1.1.24+nmu2 | - +- i386 | libpaper-utils | 1.1.24+nmu2 | - +- i386 | libpaper1 | 1.1.24+nmu2 | - +- i386 | libpaps-dev | 0.6.8-6 | - +- i386 | libpaps0 | 0.6.8-6 | - +- i386 | libpaq-dev | 1.0.4-3+b1 | - +- i386 | libpaq0 | 1.0.4-3+b1 | - +- i386 | libpar-packer-perl | 1.012-1 | - +- i386 | libpar2-0 | 0.2.1-1 | - +- i386 | libpar2-0-dbg | 0.2.1-1 | - +- i386 | libpar2-0-dev | 0.2.1-1 | - +- i386 | libparams-classify-perl | 0.013-4 | - +- i386 | libparams-util-perl | 1.07-1 | - +- i386 | libparams-validate-perl | 1.06-1 | - +! i386 | libpari-dbg | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libpari-dev | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libpari-gmp3 | 2.5.1-2 | 2.5.5-1~bpo70+1 +- i386 | libparpack2 | 3.1.1-2.1 | - +- i386 | libparpack2-dbg | 3.1.1-2.1 | - +- i386 | libparpack2-dev | 3.1.1-2.1 | - +- i386 | libparrot-dev | 4.0.0-3 | - +- i386 | libparrot4.0.0 | 4.0.0-3 | - +- i386 | libparse-exuberantctags-perl | 1.01-1+b2 | - +! i386 | libparse-pidl-perl | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | libparted0 | 2.3-12 | - +- i386 | libparted0-dev | 2.3-12 | - +- i386 | libparted0debian1 | 2.3-12 | - +- i386 | libparted0debian1-dbg | 2.3-12 | - +- i386 | libpasswdqc0 | 1.2.0-1 | - +- i386 | libpath-utils-dev | 0.1.3-2 | - +- i386 | libpath-utils1 | 0.1.3-2 | - +- i386 | libpathfinder-dev | 1.1.3-0.4+b1 | - +- i386 | libpathfinder-nss-1 | 1.1.3-0.4+b1 | - +- i386 | libpathfinder-openssl-1 | 1.1.3-0.4+b1 | - +- i386 | libpathplan4 | 2.26.3-14+deb7u1 | - +- i386 | libpawlib-lesstif3-dev | 1:2.14.04.dfsg.2-8 | - +- i386 | libpawlib-lesstif3-gfortran | 1:2.14.04.dfsg.2-8 | - +- i386 | libpawlib2-dev | 1:2.14.04.dfsg.2-8 | - +- i386 | libpawlib2-gfortran | 1:2.14.04.dfsg.2-8 | - +- i386 | libpcap0.8 | 1.3.0-1 | - +- i386 | libpcap0.8-dbg | 1.3.0-1 | - +- i386 | libpcap0.8-dev | 1.3.0-1 | - +- i386 | libpcapnav0 | 0.8-1 | - +- i386 | libpcapnav0-dev | 0.8-1 | - +- i386 | libpci-dev | 1:3.1.9-6 | - +- i386 | libpci3 | 1:3.1.9-6 | - +- i386 | libpciaccess-dev | 0.13.1-2 | - +- i386 | libpciaccess0 | 0.13.1-2 | - +- i386 | libpcl1 | 1.6-1 | - +- i386 | libpcl1-dev | 1.6-1 | - +- i386 | libpcre++-dev | 0.9.5-5.1 | - +- i386 | libpcre++0 | 0.9.5-5.1 | - +- i386 | libpcre-ocaml | 6.2.5-1 | - +- i386 | libpcre-ocaml-dev | 6.2.5-1 | - +- i386 | libpcre3 | 1:8.30-5 | - +- i386 | libpcre3-dbg | 1:8.30-5 | - +- i386 | libpcre3-dev | 1:8.30-5 | - +- i386 | libpcrecpp0 | 1:8.30-5 | - +- i386 | libpcsc-perl | 1.4.12-1+b2 | - +- i386 | libpcscada0.7.1 | 0.7.1-4 | - +- i386 | libpcscada2-dev | 0.7.1-4 | - +- i386 | libpcsclite-dbg | 1.8.4-1+deb7u1 | - +- i386 | libpcsclite-dev | 1.8.4-1+deb7u1 | - +- i386 | libpcsclite1 | 1.8.4-1+deb7u1 | - +- i386 | libpda-pilot-perl | 0.12.5-5 | - +- i386 | libpdflib804-2-dev | 20061220+dfsg3-2 | - +- i386 | libpdflib804-2-gfortran | 20061220+dfsg3-2 | - +- i386 | libpdl-io-hdf5-perl | 0.63-3 | - +- i386 | libpdl-netcdf-perl | 4.16-3 | - +- i386 | libpdl-stats-perl | 0.6.2-1 | - +- i386 | libpe-rules2 | 1.1.7-1 | - +- i386 | libpe-rules2-dev | 1.1.7-1 | - +- i386 | libpe-status3 | 1.1.7-1 | - +- i386 | libpe-status3-dev | 1.1.7-1 | - +- i386 | libpeas-1.0-0 | 1.4.0-2 | - +- i386 | libpeas-dev | 1.4.0-2 | - +- i386 | libpeas-doc | 1.4.0-2 | - +- i386 | libpengine3 | 1.1.7-1 | - +- i386 | libpengine3-dev | 1.1.7-1 | - +- i386 | libperl-destruct-level-perl | 0.02-1+b2 | - +- i386 | libperl-dev | 5.14.2-21+deb7u1 | - +- i386 | libperl4caml-ocaml | 0.9.5-4+b4 | - +- i386 | libperl4caml-ocaml-dev | 0.9.5-4+b4 | - +- i386 | libperl5.14 | 5.14.2-21+deb7u1 | - +- i386 | libperl5i-perl | 2.9.1-2 | - +- i386 | libperlbal-xs-httpheaders-perl | 0.20-2 | - +- i386 | libperlio-eol-perl | 0.14-1+b3 | - +- i386 | libperlio-gzip-perl | 0.18-1+b2 | - +- i386 | libpetsc3.2 | 3.2.dfsg-6 | - +- i386 | libpetsc3.2-dbg | 3.2.dfsg-6 | - +- i386 | libpetsc3.2-dev | 3.2.dfsg-6 | - +- i386 | libpfqueue-dev | 0.5.6-8 | - +- i386 | libpfqueue0 | 0.5.6-8 | - +- i386 | libpfs-1.2-0 | 1.8.5-1 | - +- i386 | libpfs-dev | 1.8.5-1 | - +- i386 | libpg-perl | 1:2.1.1-4+b2 | - +- i386 | libpgapack-mpi1 | 1.1.1-3 | - +- i386 | libpgapack-serial1 | 1.1.1-3 | - +- i386 | libpgm-5.1-0 | 5.1.118-1~dfsg-0.1 | - +- i386 | libpgm-dbg | 5.1.118-1~dfsg-0.1 | - +- i386 | libpgm-dev | 5.1.118-1~dfsg-0.1 | - +- i386 | libpgocaml-ocaml | 1.5-2 | - +- i386 | libpgocaml-ocaml-dev | 1.5-2 | - +- i386 | libpgpool-dev | 3.1.3-5 | - +- i386 | libpgpool0 | 3.1.3-5 | - +- i386 | libpgraphutil-smlnj | 110.74-2 | - +- i386 | libpgtcl-dev | 1:1.5-6 | - +- i386 | libpgtcl1.5 | 1:1.5-6 | - +- i386 | libpgtypes3 | 9.1.11-0wheezy1 | - +- i386 | libphash0 | 0.9.4-1.2 | - +- i386 | libphash0-dev | 0.9.4-1.2 | - +- i386 | libphat-dev | 0.4.1-5 | - +- i386 | libphat-tools | 0.4.1-5 | - +- i386 | libphat0 | 0.4.1-5 | - +- i386 | libphobos-4.4-dev | 1.063-4.4.7-1 | - +- i386 | libphobos2-4.6-dev | 0.29.1-4.6.3-2 | - +- i386 | libphone-ui-20110825 | 1:0.0.1+git20110825-3 | - +- i386 | libphone-ui-20110825-dbg | 1:0.0.1+git20110825-3 | - +- i386 | libphone-ui-dev | 1:0.0.1+git20110825-3 | - +- i386 | libphone-ui-shr | 0.1+git20110827-3+b1 | - +- i386 | libphone-ui-shr-data | 0.1+git20110827-3+b1 | - +- i386 | libphone-ui-shr-dbg | 0.1+git20110827-3+b1 | - +- i386 | libphone-utils-dev | 0.1+git20110523-2.1 | - +- i386 | libphone-utils0 | 0.1+git20110523-2.1 | - +- i386 | libphone-utils0-dbg | 0.1+git20110523-2.1 | - +- i386 | libphonon-dev | 4:4.6.0.0-3 | - +- i386 | libphonon4 | 4:4.6.0.0-3 | - +- i386 | libphononexperimental-dev | 4:4.6.0.0-3 | - +- i386 | libphononexperimental4 | 4:4.6.0.0-3 | - +- i386 | libphotos202-1-gfortran | 20061220+dfsg3-2 | - +- i386 | libphotos202-dev | 20061220+dfsg3-2 | - +- i386 | libphp5-embed | 5.4.4-14+deb7u7 | - +- i386 | libphtools2-dev | 20061220+dfsg3-2 | - +- i386 | libphtools2-gfortran | 20061220+dfsg3-2 | - +- i386 | libphysfs-dev | 2.0.2-6 | - +- i386 | libphysfs1 | 2.0.2-6 | - +- i386 | libphysfs1-dbg | 2.0.2-6 | - +- i386 | libpiano-dev | 2012.05.06-2 | - +- i386 | libpiano0 | 2012.05.06-2 | - +- i386 | libpigment-dbg | 0.3.17-1 | - +- i386 | libpigment0.3-11 | 0.3.17-1 | - +- i386 | libpigment0.3-dev | 0.3.17-1 | - +- i386 | libpils2 | 1.0.9+hg2665-1 | - +- i386 | libpils2-dev | 1.0.9+hg2665-1 | - +- i386 | libpinyin-dbg | 0.6.91-1 | - +- i386 | libpinyin-utils | 0.6.91-1 | - +- i386 | libpinyin0 | 0.6.91-1 | - +- i386 | libpinyin0-dev | 0.6.91-1 | - +- i386 | libpion-common-4.0 | 4.0.7+dfsg-3.1 | - +- i386 | libpion-common-4.0-dbg | 4.0.7+dfsg-3.1 | - +- i386 | libpion-common-dev | 4.0.7+dfsg-3.1 | - +- i386 | libpion-net-4.0 | 4.0.7+dfsg-3.1 | - +- i386 | libpion-net-4.0-dbg | 4.0.7+dfsg-3.1 | - +- i386 | libpion-net-dev | 4.0.7+dfsg-3.1 | - +- i386 | libpion-net-plugins | 4.0.7+dfsg-3.1 | - +- i386 | libpion-net-plugins-dbg | 4.0.7+dfsg-3.1 | - +- i386 | libpipeline-dev | 1.2.1-1 | - +- i386 | libpipeline1 | 1.2.1-1 | - +- i386 | libpisock-dev | 0.12.5-5 | - +- i386 | libpisock9 | 0.12.5-5 | - +- i386 | libpisync1 | 0.12.5-5 | - +- i386 | libpixman-1-0 | 0.26.0-4+deb7u1 | - +- i386 | libpixman-1-0-dbg | 0.26.0-4+deb7u1 | - +- i386 | libpixman-1-dev | 0.26.0-4+deb7u1 | - ++ i386 | libpj2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjlib-util2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjmedia-audiodev2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjmedia-codec2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjmedia-videodev2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjmedia2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjnath2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjproject-dev | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjsip-simple2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjsip-ua2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjsip2 | - | 2.1.0.0.ast20130823-1~bpo70+1 ++ i386 | libpjsua2 | - | 2.1.0.0.ast20130823-1~bpo70+1 +- i386 | libpkcs11-helper1 | 1.09-1 | - +- i386 | libpkcs11-helper1-dev | 1.09-1 | - +- i386 | libplasma-geolocation-interface4 | 4:4.8.4-6 | - +- i386 | libplasma3 | 4:4.8.4-4 | - +- i386 | libplasmaclock4abi3 | 4:4.8.4-6 | - +- i386 | libplasmagenericshell4 | 4:4.8.4-6 | - +- i386 | libplayer-bin | 2.0.1-2.1 | - +- i386 | libplayer-dev | 2.0.1-2.1 | - +- i386 | libplayer2 | 2.0.1-2.1 | - +- i386 | libplayer2-dbg | 2.0.1-2.1 | - +- i386 | libplayerc++3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerc++3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerc3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerc3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayercommon3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayercommon3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayercore3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayercore3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerdrivers3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerdrivers3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerinterface3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerinterface3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerjpeg3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerjpeg3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayertcp3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayertcp3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerwkb3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libplayerwkb3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libplib-dev | 1.8.5-6 | - +- i386 | libplib1 | 1.8.5-6 | - +- i386 | libplist++-dev | 1.8-1 | - +- i386 | libplist++1 | 1.8-1 | - +- i386 | libplist-dbg | 1.8-1 | - +- i386 | libplist-dev | 1.8-1 | - +- i386 | libplist-utils | 1.8-1 | - +- i386 | libplist1 | 1.8-1 | - +- i386 | libpload-dev | 1.4.2-3 | - +- i386 | libpload4 | 1.4.2-3 | - +- i386 | libplot-dev | 2.6-3 | - +- i386 | libplot2c2 | 2.6-3 | - +- i386 | libploticus0 | 2.41-5 | - +- i386 | libploticus0-dev | 2.41-5 | - +- i386 | libplotmm-dbg | 0.1.2-2 | - +- i386 | libplotmm-dev | 0.1.2-2 | - +- i386 | libplotmm0 | 0.1.2-2 | - +- i386 | libplplot-ada0 | 5.9.9-5 | - +- i386 | libplplot-ada0-dev | 5.9.9-5 | - +- i386 | libplplot-c++10 | 5.9.9-5 | - +- i386 | libplplot-d | 5.9.9-5 | - +- i386 | libplplot-dev | 5.9.9-5 | - +- i386 | libplplot-fortran9 | 5.9.9-5 | - +- i386 | libplplot-java | 5.9.9-5 | - +- i386 | libplplot-lua | 5.9.9-5 | - +- i386 | libplplot-ocaml | 5.9.9-5 | - +- i386 | libplplot11 | 5.9.9-5 | - +- i386 | libplumb2 | 1.0.9+hg2665-1 | - +- i386 | libplumb2-dev | 1.0.9+hg2665-1 | - +- i386 | libplumbgpl2 | 1.0.9+hg2665-1 | - +- i386 | libplumbgpl2-dev | 1.0.9+hg2665-1 | - +- i386 | libpmap3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libpmap3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libpmi0 | 2.3.4-2+b1 | - +- i386 | libpmi0-dev | 2.3.4-2+b1 | - +- i386 | libpmount-dev | 0.0.16 | - +- i386 | libpmount0.0 | 0.0.16 | - +- i386 | libpng12-0 | 1.2.49-1 | - +- i386 | libpng12-dev | 1.2.49-1 | - +- i386 | libpng3 | 1.2.49-1 | - +- i386 | libpnglite-dev | 0.1.17-1 | - +- i386 | libpoco-dev | 1.3.6p1-4 | - +- i386 | libpococrypto9 | 1.3.6p1-4 | - +- i386 | libpococrypto9-dbg | 1.3.6p1-4 | - +- i386 | libpocodata9 | 1.3.6p1-4 | - +- i386 | libpocodata9-dbg | 1.3.6p1-4 | - +- i386 | libpocofoundation9 | 1.3.6p1-4 | - +- i386 | libpocofoundation9-dbg | 1.3.6p1-4 | - +- i386 | libpocomysql9 | 1.3.6p1-4 | - +- i386 | libpocomysql9-dbg | 1.3.6p1-4 | - +- i386 | libpoconet9 | 1.3.6p1-4 | - +- i386 | libpoconet9-dbg | 1.3.6p1-4 | - +- i386 | libpoconetssl9 | 1.3.6p1-4 | - +- i386 | libpoconetssl9-dbg | 1.3.6p1-4 | - +- i386 | libpocoodbc9 | 1.3.6p1-4 | - +- i386 | libpocoodbc9-dbg | 1.3.6p1-4 | - +- i386 | libpocosqlite9 | 1.3.6p1-4 | - +- i386 | libpocosqlite9-dbg | 1.3.6p1-4 | - +- i386 | libpocoutil9 | 1.3.6p1-4 | - +- i386 | libpocoutil9-dbg | 1.3.6p1-4 | - +- i386 | libpocoxml9 | 1.3.6p1-4 | - +- i386 | libpocoxml9-dbg | 1.3.6p1-4 | - +- i386 | libpocozip9 | 1.3.6p1-4 | - +- i386 | libpocozip9-dbg | 1.3.6p1-4 | - +- i386 | libpodofo-dev | 0.9.0-1.1+b1 | - +- i386 | libpodofo-utils | 0.9.0-1.1+b1 | - +- i386 | libpodofo0.9.0 | 0.9.0-1.1+b1 | - +- i386 | libpoker-eval | 138.0-1 | - +- i386 | libpoker-eval-dev | 138.0-1 | - +- i386 | libpolarssl-dev | 1.2.9-1~deb7u1 | - +- i386 | libpolarssl-runtime | 1.2.9-1~deb7u1 | - +- i386 | libpolarssl0 | 1.2.9-1~deb7u1 | - +- i386 | libpoldiff-dev | 3.3.7-3 | - +- i386 | libpoldiff1 | 3.3.7-3 | - +- i386 | libpolkit-agent-1-0 | 0.105-3 | - +- i386 | libpolkit-agent-1-dev | 0.105-3 | - +- i386 | libpolkit-backend-1-0 | 0.105-3 | - +- i386 | libpolkit-backend-1-dev | 0.105-3 | - +- i386 | libpolkit-gobject-1-0 | 0.105-3 | - +- i386 | libpolkit-gobject-1-dev | 0.105-3 | - +- i386 | libpolkit-qt-1-1 | 0.103.0-1 | - +- i386 | libpolkit-qt-1-dev | 0.103.0-1 | - +- i386 | libpolybori-0.5.0-0 | 0.5~rc1-2.2 | - +- i386 | libpolybori-dev | 0.5~rc1-2.2 | - +- i386 | libpolylib64-8 | 5.22.5-3+dfsg | - +- i386 | libpolylib64-8-dbg | 5.22.5-3+dfsg | - +- i386 | libpolylib64-dev | 5.22.5-3+dfsg | - +- i386 | libpolyml-dev | 5.2.1-1.1 | - +- i386 | libpolyml1 | 5.2.1-1.1 | - +- i386 | libpolyorb-dbg | 2.8~20110207-5.1 | - +- i386 | libpolyorb2-dev | 2.8~20110207-5.1 | - +- i386 | libpolyorb3 | 2.8~20110207-5.1 | - +- i386 | libpomp-dev | 1.1+dfsg-2 | - +- i386 | libpomp0 | 1.1+dfsg-2 | - +- i386 | libpoppler-cpp-dev | 0.18.4-6 | - +- i386 | libpoppler-cpp0 | 0.18.4-6 | - +- i386 | libpoppler-dev | 0.18.4-6 | - +- i386 | libpoppler-glib-dev | 0.18.4-6 | - +- i386 | libpoppler-glib8 | 0.18.4-6 | - +- i386 | libpoppler-private-dev | 0.18.4-6 | - +- i386 | libpoppler-qt4-3 | 0.18.4-6 | - +- i386 | libpoppler-qt4-dev | 0.18.4-6 | - +- i386 | libpoppler19 | 0.18.4-6 | - +- i386 | libpopplerkit-dev | 0.0.20051227svn-7+b1 | - +- i386 | libpopplerkit0 | 0.0.20051227svn-7+b1 | - +- i386 | libpopt-dev | 1.16-7 | - +- i386 | libpopt0 | 1.16-7 | - +- i386 | libportaudio-dev | 18.1-7.1 | - +- i386 | libportaudio-ocaml | 0.2.0-1+b1 | - +- i386 | libportaudio-ocaml-dev | 0.2.0-1+b1 | - +- i386 | libportaudio0 | 18.1-7.1 | - +- i386 | libportaudio2 | 19+svn20111121-1 | - +- i386 | libportaudiocpp0 | 19+svn20111121-1 | - +- i386 | libportmidi-dev | 1:184-2.1 | - +- i386 | libportmidi0 | 1:184-2.1 | - +- i386 | libportsmf-dev | 0.1~svn20101010-3 | - +- i386 | libportsmf0 | 0.1~svn20101010-3 | - +- i386 | libposix-strptime-perl | 0.10-1+b2 | - +- i386 | libposixlock-ruby1.8 | 0.0.1-2 | - +- i386 | libpostgresql-ocaml | 1.18.0-1 | - +- i386 | libpostgresql-ocaml-dev | 1.18.0-1 | - +! i386 | libpostproc-dev | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! i386 | libpostproc52 | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +- i386 | libpotrace-dev | 1.10-1 | - +- i386 | libpotrace0 | 1.10-1 | - +- i386 | libpowerman0 | 2.3.5-1 | - +- i386 | libpowerman0-dev | 2.3.5-1 | - +- i386 | libppd-dev | 2:0.10-7.1 | - +- i386 | libppd0 | 2:0.10-7.1 | - +- i386 | libppi-xs-perl | 0.901-1+b2 | - +- i386 | libppl-c4 | 0.11.2-8 | - +- i386 | libppl-swi | 0.11.2-8 | - +- i386 | libppl0.11-dev | 0.11.2-8 | - +- i386 | libppl9 | 0.11.2-8 | - +- i386 | libpq-dev | 9.1.11-0wheezy1 | - +- i386 | libpq5 | 9.1.11-0wheezy1 | - +- i386 | libpqxx-3.1 | 3.1-1.1 | - +- i386 | libpqxx-3.1-dbg | 3.1-1.1 | - +- i386 | libpqxx3-dev | 3.1-1.1 | - +- i386 | libprelude-dev | 1.0.0-9 | - +- i386 | libprelude-perl | 1.0.0-9 | - +- i386 | libprelude2 | 1.0.0-9 | - +- i386 | libprelude2-dbg | 1.0.0-9 | - +- i386 | libpreludedb-dev | 1.0.0-1.1+b2 | - +- i386 | libpreludedb-perl | 1.0.0-1.1+b2 | - +- i386 | libpreludedb0 | 1.0.0-1.1+b2 | - +- i386 | libpresage-dev | 0.8.8-1 | - +- i386 | libpresage1 | 0.8.8-1 | - +- i386 | libpresage1-dbg | 0.8.8-1 | - +- i386 | libpri-dev | 1.4.12-2 | - +- i386 | libpri1.4 | 1.4.12-2 | - +- i386 | libprima-perl | 1.28-1.1+b1 | - +- i386 | libprinterconf-dev | 0.5-12 | - +- i386 | libprinterconf0c2a | 0.5-12 | - +- i386 | libprintsys | 0.6-13 | - +- i386 | libprintsys-dev | 0.6-13 | - +- i386 | libprison-dbg | 1.0+dfsg-1 | - +- i386 | libprison-dev | 1.0+dfsg-1 | - +- i386 | libprison0 | 1.0+dfsg-1 | - +- i386 | libproc-processtable-perl | 0.45-6 | - ++ i386 | libproc-wait3-perl | - | 0.4-1~bpo70+1 +- i386 | libprocesscore4abi1 | 4:4.8.4-6 | - +- i386 | libprocessui4a | 4:4.8.4-6 | - +- i386 | libprocps0 | 1:3.3.3-3 | - +- i386 | libprocps0-dev | 1:3.3.3-3 | - +- i386 | libproj-dev | 4.7.0-2 | - +- i386 | libproj0 | 4.7.0-2 | - +- i386 | libprojectm-dev | 2.1.0+dfsg-1 | - +- i386 | libprojectm-qt-dev | 2.1.0+dfsg-1 | - +- i386 | libprojectm-qt1 | 2.1.0+dfsg-1 | - +- i386 | libprojectm2 | 2.1.0+dfsg-1 | - +- i386 | libprotobuf-c0 | 0.14-1+b1 | - +- i386 | libprotobuf-c0-dev | 0.14-1+b1 | - +- i386 | libprotobuf-dev | 2.4.1-3 | - +- i386 | libprotobuf-lite7 | 2.4.1-3 | - +- i386 | libprotobuf7 | 2.4.1-3 | - +- i386 | libprotoc-dev | 2.4.1-3 | - +- i386 | libprotoc7 | 2.4.1-3 | - +- i386 | libproxy-dev | 0.3.1-6 | - +- i386 | libproxy-tools | 0.3.1-6 | - +- i386 | libproxy0 | 0.3.1-6 | - +- i386 | libproxychains-dev | 3.1-3 | - +- i386 | libproxychains3 | 3.1-3 | - +- i386 | libpspell-dev | 0.60.7~20110707-1 | - +- i386 | libpst-dev | 0.6.54-4.1 | - +- i386 | libpst4 | 0.6.54-4.1 | - +- i386 | libpst4-dbg | 0.6.54-4.1 | - +- i386 | libpstoedit-dev | 3.60-2+b1 | - +- i386 | libpstoedit0c2a | 3.60-2+b1 | - +- i386 | libpt-dbg | 2.10.4~dfsg-1 | - +- i386 | libpt-dev | 2.10.4~dfsg-1 | - +- i386 | libpt2.10.4 | 2.10.4~dfsg-1 | - +- i386 | libptexenc-dev | 2012.20120628-4 | - +- i386 | libptexenc1 | 2012.20120628-4 | - +- i386 | libpth-dev | 2.0.7-16 | - +- i386 | libpth20 | 2.0.7-16 | - +- i386 | libpthread-stubs0 | 0.3-3 | - +- i386 | libpthread-stubs0-dev | 0.3-3 | - +- i386 | libpthread-workqueue-dev | 0.8.2-1 | - +- i386 | libpthread-workqueue0 | 0.8.2-1 | - +- i386 | libptscotch-5.1 | 5.1.12b.dfsg-1.2 | - +- i386 | libptscotch-dbg | 5.1.12b.dfsg-1.2 | - +- i386 | libptscotch-dev | 5.1.12b.dfsg-1.2 | - +- i386 | libpugl-0-0 | 0~svn32+dfsg0-1 | - +- i386 | libpugl-dbg | 0~svn32+dfsg0-1 | - +- i386 | libpugl-dev | 0~svn32+dfsg0-1 | - +! i386 | libpulse-dev | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse-mainloop-glib0 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse-mainloop-glib0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +- i386 | libpulse-ocaml | 0.1.2-1+b1 | - +- i386 | libpulse-ocaml-dev | 0.1.2-1+b1 | - +! i386 | libpulse0 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 ++ i386 | libpulsedsp | - | 4.0-6~bpo7+1 ++ i386 | libpulsedsp-dbg | - | 4.0-6~bpo7+1 +- i386 | libpuma-dev | 1:1.1+svn20120529-2 | - +- i386 | libpurelibc-dev | 0.4.1-1 | - +- i386 | libpurelibc1 | 0.4.1-1 | - +! i386 | libpurple0 | 2.10.6-3 | 2.10.7-2~bpo70+1 +- i386 | libpuzzle-bin | 0.9-5 | - +- i386 | libpuzzle-dev | 0.9-5 | - +- i386 | libpuzzle-php | 0.9-5 | - +- i386 | libpuzzle1 | 0.9-5 | - +- i386 | libpvm3 | 3.4.5-12.5 | - +- i386 | libpwl-dev | 0.11.2-8 | - +- i386 | libpwl5 | 0.11.2-8 | - +- i386 | libpxp-ocaml-dev | 1.2.2-1+b4 | - +- i386 | libpycaml-ocaml | 0.82-14+b2 | - +- i386 | libpycaml-ocaml-dev | 0.82-14+b2 | - +- i386 | libpyside-dev | 1.1.1-3 | - +- i386 | libpyside-py3-1.1 | 1.1.1-3 | - +- i386 | libpyside1.1 | 1.1.1-3 | - +- i386 | libpythia8 | 8.1.65-1 | - +- i386 | libpythia8-dev | 8.1.65-1 | - +- i386 | libpython2.6 | 2.6.8-1.1 | - +- i386 | libpython2.7 | 2.7.3-6 | - +- i386 | libpython3.2 | 3.2.3-7 | - +- i386 | libpythonqt2-dev | 2.0.1-1.1 | - +- i386 | libpythonqt2.0 | 2.0.1-1.1 | - +- i386 | libqalculate-dev | 0.9.7-8 | - +- i386 | libqalculate5 | 0.9.7-8 | - +- i386 | libqapt-dev | 1.3.0-2 | - +- i386 | libqapt-runtime | 1.3.0-2 | - +- i386 | libqapt1 | 1.3.0-2 | - +- i386 | libqb-dev | 0.11.1-2 | - +- i386 | libqb0 | 0.11.1-2 | - +- i386 | libqca2 | 2.0.3-4 | - +- i386 | libqca2-dbg | 2.0.3-4 | - +- i386 | libqca2-dev | 2.0.3-4 | - +- i386 | libqca2-plugin-cyrus-sasl | 2.0.0-beta3-2 | - +- i386 | libqca2-plugin-gnupg | 2.0.0~beta3-2 | - +- i386 | libqca2-plugin-ossl | 2.0.0~beta3-2 | - +- i386 | libqd-dev | 2.3.11.dfsg-2.1 | - +- i386 | libqd0 | 2.3.11.dfsg-2.1 | - +- i386 | libqdaccolib-dev | 0.8.2-1 | - +- i386 | libqdaccolib0.7 | 0.8.2-1 | - +- i386 | libqdbm++-dev | 1.8.78-2 | - +- i386 | libqdbm-dev | 1.8.78-2 | - +- i386 | libqdbm-java | 1.8.78-2 | - +- i386 | libqdbm-perl | 1.8.78-2 | - +- i386 | libqdbm-ruby1.8 | 1.8.78-2 | - +- i386 | libqdbm-ruby1.9.1 | 1.8.78-2 | - +- i386 | libqdbm14 | 1.8.78-2 | - +- i386 | libqdbm3++c2 | 1.8.78-2 | - +- i386 | libqdjango-db0 | 0.2.5-2 | - +- i386 | libqdjango-dev | 0.2.5-2 | - +- i386 | libqdjango-http0 | 0.2.5-2 | - +- i386 | libqdjango-script0 | 0.2.5-2 | - +- i386 | libqedje-dev | 0.4.0+lgpl-3 | - +- i386 | libqedje0a | 0.4.0+lgpl-3 | - +- i386 | libqfits-dev | 6.2.0-5 | - +- i386 | libqfits0 | 6.2.0-5 | - +- i386 | libqgis-dev | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | libqgis1.7.5 | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | libqglviewer-qt4-2 | 2.3.4-4.2 | - +- i386 | libqglviewer-qt4-dev | 2.3.4-4.2 | - +- i386 | libqgpgme1 | 4:4.8.4-2 | - +! i386 | libqgpsmm-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libqgpsmm20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- i386 | libqhull-dev | 2009.1-3 | - +- i386 | libqhull5 | 2009.1-3 | - +- i386 | libqimageblitz-dbg | 1:0.0.6-4 | - +- i386 | libqimageblitz-dev | 1:0.0.6-4 | - +- i386 | libqimageblitz4 | 1:0.0.6-4 | - +- i386 | libqjson-dbg | 0.7.1-7 | - +- i386 | libqjson-dev | 0.7.1-7 | - +- i386 | libqjson0 | 0.7.1-7 | - +- i386 | libqmf-dev | 0.16-6+deb7u1 | - +- i386 | libqmf1 | 0.16-6+deb7u1 | - +- i386 | libqmf2-1 | 0.16-6+deb7u1 | - +- i386 | libqmf2-dev | 0.16-6+deb7u1 | - +- i386 | libqmfclient1 | 1.0.7~2011w23.2-2.1 | - +- i386 | libqmfconsole2 | 0.16-6+deb7u1 | - +- i386 | libqmfconsole2-dev | 0.16-6+deb7u1 | - +- i386 | libqmfengine1 | 0.16-6+deb7u1 | - +- i386 | libqmfengine1-dev | 0.16-6+deb7u1 | - +- i386 | libqmfmessageserver1 | 1.0.7~2011w23.2-2.1 | - +- i386 | libqmfutil1 | 1.0.7~2011w23.2-2.1 | - +- i386 | libqmmp-dev | 0.5.5-1+b1 | - +- i386 | libqmmp-misc | 0.5.5-1+b1 | - +- i386 | libqmmp0 | 0.5.5-1+b1 | - +- i386 | libqmmpui-dev | 0.5.5-1+b1 | - +- i386 | libqmmpui0 | 0.5.5-1+b1 | - +- i386 | libqoauth-dev | 1.0.1-1 | - +- i386 | libqoauth1 | 1.0.1-1 | - +- i386 | libqof-dev | 0.8.6-1 | - +- i386 | libqof2 | 0.8.6-1 | - +- i386 | libqof2-backend-qsf | 0.8.6-1 | - +- i386 | libqof2-backend-sqlite | 0.8.6-1 | - +- i386 | libqof2-dbg | 0.8.6-1 | - +- i386 | libqofexpensesobjects-dev | 0.1.9-2 | - +- i386 | libqofexpensesobjects1 | 0.1.9-2 | - +- i386 | libqofexpensesobjects1-dbg | 0.1.9-2 | - +- i386 | libqpdf-dev | 2.3.1-4 | - +- i386 | libqpdf3 | 2.3.1-4 | - +- i386 | libqpid-perl | 0.16-6+deb7u1 | - +- i386 | libqpid-ruby1.8 | 0.16-6+deb7u1 | - +- i386 | libqpidbroker2 | 0.16-6+deb7u1 | - +- i386 | libqpidbroker2-dev | 0.16-6+deb7u1 | - +- i386 | libqpidclient2 | 0.16-6+deb7u1 | - +- i386 | libqpidclient2-dev | 0.16-6+deb7u1 | - +- i386 | libqpidcommon2 | 0.16-6+deb7u1 | - +- i386 | libqpidcommon2-dev | 0.16-6+deb7u1 | - +- i386 | libqpidmessaging2 | 0.16-6+deb7u1 | - +- i386 | libqpidmessaging2-dev | 0.16-6+deb7u1 | - +- i386 | libqpidtypes1 | 0.16-6+deb7u1 | - +- i386 | libqpidtypes1-dev | 0.16-6+deb7u1 | - +- i386 | libqpol-dev | 3.3.7-3 | - +- i386 | libqpol1 | 3.3.7-3 | - +- i386 | libqpx-dev | 0.7.1.002-5 | - +- i386 | libqpx0 | 0.7.1.002-5 | - +- i386 | libqrencode-dev | 3.3.0-2 | - +- i386 | libqrencode3 | 3.3.0-2 | - +- i386 | libqrupdate-dev | 1.1.1-1 | - +- i386 | libqrupdate1 | 1.1.1-1 | - +- i386 | libqsastime-dev | 5.9.9-5 | - +- i386 | libqsastime0 | 5.9.9-5 | - +- i386 | libqscintilla2-8 | 2.6.2-2 | - +- i386 | libqscintilla2-designer | 2.6.2-2 | - +- i386 | libqt4-assistant | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-core | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-dbg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-dbus | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-declarative | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-declarative-folderlistmodel | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-declarative-gestures | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-declarative-particles | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-declarative-shaders | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-designer | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-designer-dbg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-dev | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-dev-bin | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-gui | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-help | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-network | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-opengl | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-opengl-dev | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-phonon | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-private-dev | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-qt3support | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-qt3support-dbg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-script | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-script-dbg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-scripttools | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-ibase | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-mysql | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-odbc | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-psql | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-sqlite | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-sqlite2 | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-sql-tds | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-svg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-test | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-webkit | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-webkit-dbg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-xml | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-xmlpatterns | 4:4.8.2+dfsg-11 | - +- i386 | libqt4-xmlpatterns-dbg | 4:4.8.2+dfsg-11 | - +- i386 | libqt4pas-dev | 2.5-6 | - +- i386 | libqt4pas5 | 2.5-6 | - +- i386 | libqtassistantclient-dev | 4.6.3-4 | - +- i386 | libqtassistantclient4 | 4.6.3-4 | - +- i386 | libqtconnectivity1 | 1.2.0-3 | - +- i386 | libqtcontacts1 | 1.2.0-3 | - +- i386 | libqtcore4 | 4:4.8.2+dfsg-11 | - +- i386 | libqtcore4-perl | 4.8.4-1 | - +- i386 | libqtdbus4 | 4:4.8.2+dfsg-11 | - +- i386 | libqtexengine-dev | 0.3-3 | - +- i386 | libqtexengine1 | 0.3-3 | - +- i386 | libqtfeedback1 | 1.2.0-3 | - +- i386 | libqtgallery1 | 1.2.0-3 | - +- i386 | libqtglib-2.0-0 | 0.10.2-2 | - +- i386 | libqtgstreamer-0.10-0 | 0.10.2-2 | - +- i386 | libqtgstreamer-dev | 0.10.2-2 | - +- i386 | libqtgstreamerui-0.10-0 | 0.10.2-2 | - +- i386 | libqtgstreamerutils-0.10-0 | 0.10.2-2 | - +- i386 | libqtgui4 | 4:4.8.2+dfsg-11 | - +- i386 | libqtgui4-perl | 4.8.4-1 | - +- i386 | libqthreads-12 | 1.6.8-10.3 | - ++ i386 | libqtkeychain0 | - | 0.1.0-2~bpo70+1 +- i386 | libqtlocation1 | 1.2.0-3 | - +- i386 | libqtmessaging1 | 1.2.0-3 | - +- i386 | libqtmultimediakit1 | 1.2.0-3 | - +- i386 | libqtnetwork4-perl | 4.8.4-1 | - +- i386 | libqtorganizer1 | 1.2.0-3 | - +- i386 | libqtpublishsubscribe1 | 1.2.0-3 | - +- i386 | libqtruby4shared-dev | 4:4.8.4-1 | - +- i386 | libqtruby4shared2 | 4:4.8.4-1 | - +- i386 | libqtscript4-core | 0.2.0-1 | - +- i386 | libqtscript4-gui | 0.2.0-1 | - +- i386 | libqtscript4-network | 0.2.0-1 | - +- i386 | libqtscript4-opengl | 0.2.0-1 | - +- i386 | libqtscript4-phonon | 0.2.0-1 | - +- i386 | libqtscript4-qtbindings | 0.2.0-1 | - +- i386 | libqtscript4-sql | 0.2.0-1 | - +- i386 | libqtscript4-svg | 0.2.0-1 | - +- i386 | libqtscript4-uitools | 0.2.0-1 | - +- i386 | libqtscript4-webkit | 0.2.0-1 | - +- i386 | libqtscript4-xml | 0.2.0-1 | - +- i386 | libqtscript4-xmlpatterns | 0.2.0-1 | - +- i386 | libqtsensors1 | 1.2.0-3 | - +- i386 | libqtserviceframework1 | 1.2.0-3 | - +- i386 | libqtsysteminfo1 | 1.2.0-3 | - +- i386 | libqttest4-perl | 4.8.4-1 | - +- i386 | libqtversit1 | 1.2.0-3 | - +- i386 | libqtversitorganizer1 | 1.2.0-3 | - +- i386 | libqtwebkit-dev | 2.2.1-5 | - +- i386 | libqtwebkit-qmlwebkitplugin | 2.2.1-5 | - +- i386 | libqtwebkit4 | 2.2.1-5 | - +- i386 | libqtwebkit4-dbg | 2.2.1-5 | - +- i386 | libqtxml4-perl | 4.8.4-1 | - +- i386 | libquadmath0 | 4.7.2-5 | - +- i386 | libquadmath0-dbg | 4.7.2-5 | - +- i386 | libquantlib-1.2 | 1.2-2+b1 | - +- i386 | libquantlib0-dev | 1.2-2+b1 | - +- i386 | libquantum-dev | 1.1.0-3 | - +- i386 | libquantum7 | 1.1.0-3 | - +- i386 | libquicktime-dev | 2:1.2.4-3 | - +- i386 | libquicktime2 | 2:1.2.4-3 | - +- i386 | libquorum-dev | 1.4.2-3 | - +- i386 | libquorum4 | 1.4.2-3 | - +- i386 | libquota-perl | 1.6.6+dfsg-2+b1 | - +- i386 | libquvi-dev | 0.4.1-1 | - +- i386 | libquvi7 | 0.4.1-1 | - +- i386 | libqwt-dev | 6.0.0-1.2 | - +- i386 | libqwt5-qt4 | 5.2.2-3 | - +- i386 | libqwt5-qt4-dev | 5.2.2-3 | - +- i386 | libqwt6 | 6.0.0-1.2 | - +- i386 | libqwtplot3d-qt4-0 | 0.2.7+svn191-7 | - +- i386 | libqwtplot3d-qt4-dev | 0.2.7+svn191-7 | - +- i386 | libqxmlrpc-dev | 0.0.svn6-2 | - +- i386 | libqxmlrpc1 | 0.0.svn6-2 | - +! i386 | libqxmpp-dev | 0.4.92-1 | 0.7.6-1~bpo70+1 +! i386 | libqxmpp0 | 0.4.92-1 | 0.7.6-1~bpo70+1 ++ i386 | libqxmpp0-dbg | - | 0.7.6-1~bpo70+1 +- i386 | libqxt-berkeley0 | 0.6.1-6 | - +- i386 | libqxt-core0 | 0.6.1-6 | - +- i386 | libqxt-designer0 | 0.6.1-6 | - +- i386 | libqxt-dev | 0.6.1-6 | - +- i386 | libqxt-gui0 | 0.6.1-6 | - +- i386 | libqxt-network0 | 0.6.1-6 | - +- i386 | libqxt-sql0 | 0.6.1-6 | - +- i386 | libqxt-web0 | 0.6.1-6 | - +- i386 | libqxt-zeroconf0 | 0.6.1-6 | - +- i386 | libqzeitgeist-dbg | 0.7.0-1+b1 | - +- i386 | libqzeitgeist-dev | 0.7.0-1+b1 | - +- i386 | libqzeitgeist0 | 0.7.0-1+b1 | - +- i386 | libqzion-dev | 0.4.0+lgpl-4 | - +- i386 | libqzion0a | 0.4.0+lgpl-4 | - +- i386 | librabbitmq-dbg | 0.0.1.hg216-1 | - +- i386 | librabbitmq-dev | 0.0.1.hg216-1 | - +- i386 | librabbitmq0 | 0.0.1.hg216-1 | - +- i386 | libradare2-0.9 | 0.9-3 | - +- i386 | libradare2-0.9-dbg | 0.9-3 | - +- i386 | libradare2-dev | 0.9-3 | - +- i386 | libradius1 | 0.3.2-14 | - +- i386 | libradius1-dev | 0.3.2-14 | - +- i386 | libradiusclient-ng-dev | 0.5.6-1.1 | - +- i386 | libradiusclient-ng2 | 0.5.6-1.1 | - +- i386 | libranlip-dev | 1.0-4.1 | - +- i386 | libranlip1c2 | 1.0-4.1 | - +- i386 | librapi2 | 0.15-2.1 | - +- i386 | librapi2-dbg | 0.15-2.1 | - +- i386 | librapi2-dev | 0.15-2.1 | - +- i386 | librapi2-tools | 0.15-2.1 | - +- i386 | libraptor1 | 1.4.21-7.1 | - +- i386 | libraptor1-dbg | 1.4.21-7.1 | - +- i386 | libraptor1-dev | 1.4.21-7.1 | - +- i386 | libraptor2-0 | 2.0.8-2 | - +- i386 | libraptor2-0-dbg | 2.0.8-2 | - +- i386 | libraptor2-dev | 2.0.8-2 | - +- i386 | librarian-dev | 0.8.1-5 | - +- i386 | librarian0 | 0.8.1-5 | - +- i386 | libraspell-ruby1.8 | 1.2-2 | - +- i386 | libraspell-ruby1.9.1 | 1.2-2 | - +- i386 | librasqal3 | 0.9.29-1 | - +- i386 | librasqal3-dbg | 0.9.29-1 | - +- i386 | librasqal3-dev | 0.9.29-1 | - +- i386 | librasterlite-dev | 1.1~svn11-2 | - +- i386 | librasterlite1 | 1.1~svn11-2 | - +- i386 | libraul-dev | 0.8.0+dfsg0-0.1+b1 | - +- i386 | libraul10 | 0.8.0+dfsg0-0.1+b1 | - +- i386 | libraw-bin | 0.14.6-2 | - +- i386 | libraw-dev | 0.14.6-2 | - +- i386 | libraw1394-11 | 2.0.9-1 | - +- i386 | libraw1394-dev | 2.0.9-1 | - +- i386 | libraw1394-tools | 2.0.9-1 | - +- i386 | libraw5 | 0.14.6-2 | - +- i386 | librcc-dev | 0.2.9-3 | - +- i386 | librcc0 | 0.2.9-3 | - +- i386 | librccgtk2-0 | 0.2.9-3 | - +- i386 | librcd-dev | 0.1.13-3 | - +- i386 | librcd0 | 0.1.13-3 | - +- i386 | librdf-perl | 1.0.14.1-1 | - +- i386 | librdf-ruby | 1.0.14.1-1 | - +- i386 | librdf-storage-mysql | 1.0.15-1+b1 | - +- i386 | librdf-storage-postgresql | 1.0.15-1+b1 | - +- i386 | librdf-storage-sqlite | 1.0.15-1+b1 | - +- i386 | librdf0 | 1.0.15-1+b1 | - +- i386 | librdf0-dev | 1.0.15-1+b1 | - +- i386 | librdkit-dev | 201203-3 | - +- i386 | librdkit1 | 201203-3 | - +- i386 | librdmacm-dev | 1.0.15-1+deb7u1 | - +- i386 | librdmacm1 | 1.0.15-1+deb7u1 | - +- i386 | librdmacm1-dbg | 1.0.15-1+deb7u1 | - +- i386 | librdmawrap2 | 0.16-6+deb7u1 | - +- i386 | librdmawrap2-dev | 0.16-6+deb7u1 | - +- i386 | libreact-ocaml | 0.9.3-1 | - +- i386 | libreact-ocaml-dev | 0.9.3-1 | - +- i386 | libreadline-dev | 6.2+dfsg-0.1 | - +- i386 | libreadline-gplv2-dev | 5.2+dfsg-2~deb7u1 | - +- i386 | libreadline-java | 0.8.0.1+dfsg-2+b1 | - +- i386 | libreadline5 | 5.2+dfsg-2~deb7u1 | - +- i386 | libreadline5-dbg | 5.2+dfsg-2~deb7u1 | - +- i386 | libreadline6 | 6.2+dfsg-0.1 | - +- i386 | libreadline6-dbg | 6.2+dfsg-0.1 | - +- i386 | libreadline6-dev | 6.2+dfsg-0.1 | - +- i386 | libreadonly-xs-perl | 1.04-2+b3 | - +- i386 | librec-dev | 1.5-1 | - +- i386 | librec0 | 1.5-1 | - +- i386 | librecad | 1.0.2+nolibs-1 | - +- i386 | librecode-dev | 3.6-20 | - +- i386 | librecode0 | 3.6-20 | - +- i386 | libref-array-dev | 0.1.3-2 | - +- i386 | libref-array1 | 0.1.3-2 | - +- i386 | libregina3 | 3.6-2 | - +- i386 | libregina3-dev | 3.6-2 | - +- i386 | libregistry-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libregistry0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libreins-ocaml-dev | 0.1a-4+b1 | - +- i386 | libreiser4-dev | 1.0.7-6.3 | - +! i386 | librelp-dev | 1.0.0-1 | 1.2.0-1~bpo70+1 +! i386 | librelp0 | 1.0.0-1 | 1.2.0-1~bpo70+1 +! i386 | libremctl-dev | 3.2-4 | 3.8-1~bpo70+1 +- i386 | libremctl-ruby | 3.2-4 | - +- i386 | libremctl-ruby1.8 | 3.2-4 | - +- i386 | libremctl-ruby1.9.1 | 3.2-4 | - +! i386 | libremctl1 | 3.2-4 | 3.8-1~bpo70+1 +- i386 | librenaissance0 | 0.9.0-4+b3 | - +- i386 | librenaissance0-dev | 0.9.0-4+b3 | - +! i386 | libreoffice | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-base | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-base-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-calc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-dbg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-dev | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-draw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-evolution | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- i386 | libreoffice-filter-binfilter | 1:3.5.4+dfsg2-0+deb7u2 | - +! i386 | libreoffice-gnome | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gtk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gtk3 | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-impress | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-kde | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-math | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-mysql-connector | 1.0.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.2+LibO4.1.4-2~bpo70+1 +! i386 | libreoffice-officebean | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-ogltrans | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-pdfimport | 1.0.5+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-presentation-minimizer | 1.0.3+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.4+LibO4.1.4-2~bpo70+1 +- i386 | libreoffice-presenter-console | 1.1.0+LibO3.5.4+dfsg2-0+deb7u2 | - +! i386 | libreoffice-report-builder-bin | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-sdbc-postgresql | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- i386 | libreoffice-voikko | 3.3-3 | - +! i386 | libreoffice-writer | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- i386 | librep-dbg | 0.90.2-1.3 | - +- i386 | librep-dev | 0.90.2-1.3 | - +- i386 | librep9 | 0.90.2-1.3 | - +- i386 | libreplaygain-dev | 1.0~r475-1 | - +- i386 | libreplaygain1 | 1.0~r475-1 | - +- i386 | libres-ocaml-dev | 3.2.0-2+b3 | - +- i386 | libresample1 | 0.1.3-4 | - +- i386 | libresample1-dev | 0.1.3-4 | - +- i386 | libresid-builder-dev | 2.1.1-14 | - +- i386 | libresid-builder0c2a | 2.1.1-14 | - +- i386 | libresiprocate-1.8 | 1.8.5-4 | - +- i386 | libresiprocate-1.8-dev | 1.8.5-4 | - +- i386 | libresiprocate-turn-client-1.8 | 1.8.5-4 | - +- i386 | libresiprocate-turn-client-1.8-dev | 1.8.5-4 | - +- i386 | librest-0.7-0 | 0.7.12-3 | - +- i386 | librest-0.7-0-dbg | 0.7.12-3 | - +- i386 | librest-dev | 0.7.12-3 | - +- i386 | librest-extras-0.7-0 | 0.7.12-3 | - +- i386 | librest-extras-dev | 0.7.12-3 | - +- i386 | librg-blast-parser-perl | 0.02-2 | - ++ i386 | librgxg-dev | - | 0.1-1~bpo70+1 ++ i386 | librgxg0 | - | 0.1-1~bpo70+1 ++ i386 | librgxg0-dbg | - | 0.1-1~bpo70+1 +- i386 | librhash-dev | 1.2.9-8+deb7u1 | - +- i386 | librhash-java | 1.2.9-8+deb7u1 | - +- i386 | librhash-perl | 1.2.9-8+deb7u1 | - +- i386 | librhash0 | 1.2.9-8+deb7u1 | - +- i386 | librhash0-dbg | 1.2.9-8+deb7u1 | - +- i386 | librheolef-dev | 6.1-2.1 | - +- i386 | librheolef1 | 6.1-2.1 | - +- i386 | librhythmbox-core6 | 2.97-2.1 | - +- i386 | librivet-dev | 1.8.0-1 | - +- i386 | librivet11 | 1.8.0-1 | - +- i386 | librlog-dev | 1.4-2 | - +- i386 | librlog5 | 1.4-2 | - +- i386 | libroar-compat2 | 1.0~beta2-3 | - +- i386 | libroar-dev | 1.0~beta2-3 | - +- i386 | libroar-plugins-universal | 1.0~beta2-3 | - +- i386 | libroar2 | 1.0~beta2-3 | - +- i386 | libroken18-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libroot-bindings-python-dev | 5.34.00-2 | - +- i386 | libroot-bindings-python5.34 | 5.34.00-2 | - +- i386 | libroot-bindings-ruby-dev | 5.34.00-2 | - +- i386 | libroot-bindings-ruby5.34 | 5.34.00-2 | - +- i386 | libroot-core-dev | 5.34.00-2 | - +- i386 | libroot-core5.34 | 5.34.00-2 | - +- i386 | libroot-geom-dev | 5.34.00-2 | - +- i386 | libroot-geom5.34 | 5.34.00-2 | - +- i386 | libroot-graf2d-gpad-dev | 5.34.00-2 | - +- i386 | libroot-graf2d-gpad5.34 | 5.34.00-2 | - +- i386 | libroot-graf2d-graf-dev | 5.34.00-2 | - +- i386 | libroot-graf2d-graf5.34 | 5.34.00-2 | - +- i386 | libroot-graf2d-postscript-dev | 5.34.00-2 | - +- i386 | libroot-graf2d-postscript5.34 | 5.34.00-2 | - +- i386 | libroot-graf3d-eve-dev | 5.34.00-2 | - +- i386 | libroot-graf3d-eve5.34 | 5.34.00-2 | - +- i386 | libroot-graf3d-g3d-dev | 5.34.00-2 | - +- i386 | libroot-graf3d-g3d5.34 | 5.34.00-2 | - +- i386 | libroot-graf3d-gl-dev | 5.34.00-2 | - +- i386 | libroot-graf3d-gl5.34 | 5.34.00-2 | - +- i386 | libroot-gui-dev | 5.34.00-2 | - +- i386 | libroot-gui-ged-dev | 5.34.00-2 | - +- i386 | libroot-gui-ged5.34 | 5.34.00-2 | - +- i386 | libroot-gui5.34 | 5.34.00-2 | - +- i386 | libroot-hist-dev | 5.34.00-2 | - +- i386 | libroot-hist-spectrum-dev | 5.34.00-2 | - +- i386 | libroot-hist-spectrum5.34 | 5.34.00-2 | - +- i386 | libroot-hist5.34 | 5.34.00-2 | - +- i386 | libroot-html-dev | 5.34.00-2 | - +- i386 | libroot-html5.34 | 5.34.00-2 | - +- i386 | libroot-io-dev | 5.34.00-2 | - +- i386 | libroot-io-xmlparser-dev | 5.34.00-2 | - +- i386 | libroot-io-xmlparser5.34 | 5.34.00-2 | - +- i386 | libroot-io5.34 | 5.34.00-2 | - +- i386 | libroot-math-foam-dev | 5.34.00-2 | - +- i386 | libroot-math-foam5.34 | 5.34.00-2 | - +- i386 | libroot-math-genvector-dev | 5.34.00-2 | - +- i386 | libroot-math-genvector5.34 | 5.34.00-2 | - +- i386 | libroot-math-mathcore-dev | 5.34.00-2 | - +- i386 | libroot-math-mathcore5.34 | 5.34.00-2 | - +- i386 | libroot-math-mathmore-dev | 5.34.00-2 | - +- i386 | libroot-math-mathmore5.34 | 5.34.00-2 | - +- i386 | libroot-math-matrix-dev | 5.34.00-2 | - +- i386 | libroot-math-matrix5.34 | 5.34.00-2 | - +- i386 | libroot-math-minuit-dev | 5.34.00-2 | - +- i386 | libroot-math-minuit5.34 | 5.34.00-2 | - +- i386 | libroot-math-mlp-dev | 5.34.00-2 | - +- i386 | libroot-math-mlp5.34 | 5.34.00-2 | - +- i386 | libroot-math-physics-dev | 5.34.00-2 | - +- i386 | libroot-math-physics5.34 | 5.34.00-2 | - +- i386 | libroot-math-quadp-dev | 5.34.00-2 | - +- i386 | libroot-math-quadp5.34 | 5.34.00-2 | - +- i386 | libroot-math-smatrix-dev | 5.34.00-2 | - +- i386 | libroot-math-smatrix5.34 | 5.34.00-2 | - +- i386 | libroot-math-splot-dev | 5.34.00-2 | - +- i386 | libroot-math-splot5.34 | 5.34.00-2 | - +- i386 | libroot-math-unuran-dev | 5.34.00-2 | - +- i386 | libroot-math-unuran5.34 | 5.34.00-2 | - +- i386 | libroot-misc-memstat-dev | 5.34.00-2 | - +- i386 | libroot-misc-memstat5.34 | 5.34.00-2 | - +- i386 | libroot-misc-minicern-dev | 5.34.00-2 | - +- i386 | libroot-misc-minicern5.34 | 5.34.00-2 | - +- i386 | libroot-misc-table-dev | 5.34.00-2 | - +- i386 | libroot-misc-table5.34 | 5.34.00-2 | - +- i386 | libroot-montecarlo-eg-dev | 5.34.00-2 | - +- i386 | libroot-montecarlo-eg5.34 | 5.34.00-2 | - +- i386 | libroot-montecarlo-vmc-dev | 5.34.00-2 | - +- i386 | libroot-montecarlo-vmc5.34 | 5.34.00-2 | - +- i386 | libroot-net-auth-dev | 5.34.00-2 | - +- i386 | libroot-net-auth5.34 | 5.34.00-2 | - +- i386 | libroot-net-bonjour-dev | 5.34.00-2 | - +- i386 | libroot-net-bonjour5.34 | 5.34.00-2 | - +- i386 | libroot-net-dev | 5.34.00-2 | - +- i386 | libroot-net-ldap-dev | 5.34.00-2 | - +- i386 | libroot-net-ldap5.34 | 5.34.00-2 | - +- i386 | libroot-net5.34 | 5.34.00-2 | - +- i386 | libroot-proof-clarens-dev | 5.34.00-2 | - +- i386 | libroot-proof-clarens5.34 | 5.34.00-2 | - +- i386 | libroot-proof-dev | 5.34.00-2 | - +- i386 | libroot-proof-proofplayer-dev | 5.34.00-2 | - +- i386 | libroot-proof-proofplayer5.34 | 5.34.00-2 | - +- i386 | libroot-proof5.34 | 5.34.00-2 | - +- i386 | libroot-roofit-dev | 5.34.00-2 | - +- i386 | libroot-roofit5.34 | 5.34.00-2 | - +- i386 | libroot-static | 5.34.00-2 | - +- i386 | libroot-tmva-dev | 5.34.00-2 | - +- i386 | libroot-tmva5.34 | 5.34.00-2 | - +- i386 | libroot-tree-dev | 5.34.00-2 | - +- i386 | libroot-tree-treeplayer-dev | 5.34.00-2 | - +- i386 | libroot-tree-treeplayer5.34 | 5.34.00-2 | - +- i386 | libroot-tree5.34 | 5.34.00-2 | - +- i386 | librostlab-blast0 | 1.0.0-2 | - +- i386 | librostlab-blast0-dbg | 1.0.0-2 | - +- i386 | librostlab-blast0-dev | 1.0.0-2 | - +- i386 | librostlab3 | 1.0.20-1 | - +- i386 | librostlab3-dbg | 1.0.20-1 | - +- i386 | librostlab3-dev | 1.0.20-1 | - +- i386 | librpcsecgss-dev | 0.19-5 | - +- i386 | librpcsecgss3 | 0.19-5 | - +- i386 | librplay3 | 3.3.2-14 | - +- i386 | librplay3-dev | 3.3.2-14 | - +- i386 | librpm-dbg | 4.10.0-5+deb7u1 | - +- i386 | librpm-dev | 4.10.0-5+deb7u1 | - +- i386 | librpm3 | 4.10.0-5+deb7u1 | - +- i386 | librpmbuild3 | 4.10.0-5+deb7u1 | - +- i386 | librpmio3 | 4.10.0-5+deb7u1 | - +- i386 | librpmsign1 | 4.10.0-5+deb7u1 | - +- i386 | librra-dbg | 0.14-1.2 | - +- i386 | librra-dev | 0.14-1.2 | - +- i386 | librra-tools | 0.14-1.2 | - +- i386 | librra0 | 0.14-1.2 | - +- i386 | librrd-dev | 1.4.7-2 | - +- i386 | librrd-ruby1.8 | 1.4.7-2 | - +- i386 | librrd-ruby1.9.1 | 1.4.7-2 | - +- i386 | librrd4 | 1.4.7-2 | - +- i386 | librrds-perl | 1.4.7-2 | - +- i386 | librsl-dev | 1.42-2 | - +- i386 | librsl1 | 1.42-2 | - +- i386 | librsskit-dev | 0.3-2 | - +- i386 | librsskit0 | 0.3-2 | - +- i386 | librsskit0-dbg | 0.3-2 | - +- i386 | librsvg2-2 | 2.36.1-2 | - +- i386 | librsvg2-bin | 2.36.1-2 | - +- i386 | librsvg2-common | 2.36.1-2 | - +- i386 | librsvg2-dbg | 2.36.1-2 | - +- i386 | librsvg2-dev | 2.36.1-2 | - +- i386 | librsync-dbg | 0.9.7-9 | - +- i386 | librsync-dev | 0.9.7-9 | - +- i386 | librsync1 | 0.9.7-9 | - +- i386 | librtai-dev | 3.8.1-4 | - +- i386 | librtai1 | 3.8.1-4 | - +- i386 | librtas-dev | 1.3.6-1 | - +- i386 | librtas1 | 1.3.6-1 | - +- i386 | librtasevent-dev | 1.3.6-1 | - +- i386 | librtasevent1 | 1.3.6-1 | - +- i386 | librtaudio-dbg | 4.0.10~ds0-2 | - +- i386 | librtaudio-dev | 4.0.10~ds0-2 | - +- i386 | librtaudio4 | 4.0.10~ds0-2 | - +- i386 | librtfcomp-dbg | 1.1-5+b1 | - +- i386 | librtfcomp-dev | 1.1-5+b1 | - +- i386 | librtfcomp0 | 1.1-5+b1 | - +- i386 | librtfilter-dev | 1.1-4 | - +- i386 | librtfilter1 | 1.1-4 | - +- i386 | librtfilter1-dbg | 1.1-4 | - ++ i386 | librtlsdr-dev | - | 0.5.2.7.3ab6-1~bpo70+1 ++ i386 | librtlsdr0 | - | 0.5.2.7.3ab6-1~bpo70+1 +- i386 | librtmidi-dbg | 1.0.15~ds0-2 | - +- i386 | librtmidi-dev | 1.0.15~ds0-2 | - +- i386 | librtmidi1 | 1.0.15~ds0-2 | - +- i386 | librtmp-dev | 2.4+20111222.git4e06e21-1 | - +- i386 | librtmp0 | 2.4+20111222.git4e06e21-1 | - +- i386 | librubberband-dev | 1.3-1.3 | - +- i386 | librubberband2 | 1.3-1.3 | - +- i386 | libruby1.8 | 1.8.7.358-7.1+deb7u1 | - +- i386 | libruby1.8-dbg | 1.8.7.358-7.1+deb7u1 | - +- i386 | libruby1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- i386 | libruby1.9.1-dbg | 1.9.3.194-8.1+deb7u2 | - +- i386 | librudecgi-dev | 5.0.0-1 | - +- i386 | librudecgi5 | 5.0.0-1 | - +- i386 | libruli-bin | 0.33-1.1 | - +- i386 | libruli4 | 0.33-1.1 | - +- i386 | libruli4-dev | 0.33-1.1 | - +- i386 | librxp-dev | 1.5.0-1 | - +- i386 | librxp0 | 1.5.0-1 | - +- i386 | librxtx-java | 2.2pre2-11 | - +- i386 | librxtx-java-dbg | 2.2pre2-11 | - +- i386 | libs3-2 | 2.0-1 | - +- i386 | libs3-dev | 2.0-1 | - +- i386 | libs3d-dev | 0.2.2-8 | - +- i386 | libs3d2 | 0.2.2-8 | - +- i386 | libs3dw-dev | 0.2.2-8 | - +- i386 | libs3dw2 | 0.2.2-8 | - +- i386 | libsaamf3 | 1.1.4-4.1 | - +- i386 | libsaamf3-dev | 1.1.4-4.1 | - +- i386 | libsac-java-gcj | 1.3-6 | - +- i386 | libsackpt3 | 1.1.4-4.1 | - +- i386 | libsackpt3-dev | 1.1.4-4.1 | - +- i386 | libsaclm3 | 1.1.4-4.1 | - +- i386 | libsaclm3-dev | 1.1.4-4.1 | - +- i386 | libsaevt3 | 1.1.4-4.1 | - +- i386 | libsaevt3-dev | 1.1.4-4.1 | - +- i386 | libsafe-hole-perl | 0.13-1+b1 | - +- i386 | libsage-dev | 0.2.0-4.1 | - +- i386 | libsage2 | 0.2.0-4.1 | - +- i386 | libsalck3 | 1.1.4-4.1 | - +- i386 | libsalck3-dev | 1.1.4-4.1 | - +- i386 | libsam-dev | 1.4.2-3 | - +- i386 | libsam4 | 1.4.2-3 | - +- i386 | libsamba-credentials-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-credentials0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-hostconfig-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-hostconfig0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-policy-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-policy0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-util-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamba-util0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamdb-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsamdb0 | 4.0.0~beta2+dfsg1-3.2 | - +! i386 | libsaml2-dev | 2.4.3-4 | 2.5.3-2~bpo70+1 +- i386 | libsaml7 | 2.4.3-4 | - ++ i386 | libsaml8 | - | 2.5.3-2~bpo70+1 +- i386 | libsampleicc-dev | 1.6.4-1+b1 | - +- i386 | libsampleicc2 | 1.6.4-1+b1 | - +- i386 | libsamplerate-ocaml | 0.1.1-1+b3 | - +- i386 | libsamplerate-ocaml-dev | 0.1.1-1+b3 | - +- i386 | libsamplerate0 | 0.1.8-5 | - +- i386 | libsamplerate0-dev | 0.1.8-5 | - +- i386 | libsamsg4 | 1.1.4-4.1 | - +- i386 | libsamsg4-dev | 1.1.4-4.1 | - +- i386 | libsane | 1.0.22-7.4 | - +- i386 | libsane-common | 1.0.22-7.4 | - +- i386 | libsane-dbg | 1.0.22-7.4 | - +- i386 | libsane-dev | 1.0.22-7.4 | - +- i386 | libsane-extras | 1.0.22.2 | - +- i386 | libsane-extras-common | 1.0.22.2 | - +- i386 | libsane-extras-dbg | 1.0.22.2 | - +- i386 | libsane-extras-dev | 1.0.22.2 | - +- i386 | libsane-hpaio | 3.12.6-3.1+deb7u1 | - +- i386 | libsane-perl | 0.05-2 | - +- i386 | libsanlock-client1 | 2.2-2 | - +- i386 | libsanlock-dev | 2.2-2 | - +- i386 | libsary-dev | 1:1.2.0-2.1 | - +- i386 | libsary-ruby1.8 | 1.2.0-3.1 | - +- i386 | libsary10 | 1:1.2.0-2.1 | - +- i386 | libsasl2-2 | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-dev | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-modules | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-modules-gssapi-heimdal | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-modules-gssapi-mit | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-modules-ldap | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-modules-otp | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsasl2-modules-sql | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | libsatmr3 | 1.1.4-4.1 | - +- i386 | libsatmr3-dev | 1.1.4-4.1 | - +- i386 | libsaxon-java-gcj | 1:6.5.5-8 | - +- i386 | libsb2 | 2.2.4-1debian1 | - ++ i386 | libsbc-dev | - | 1.1-2~bpo7+1 ++ i386 | libsbc1 | - | 1.1-2~bpo7+1 +- i386 | libsbjson-dev | 2.3.2-2 | - +- i386 | libsbjson2.3 | 2.3.2-2 | - +- i386 | libsbsms-dev | 2.0.1-1 | - +- i386 | libsbsms10 | 2.0.1-1 | - +- i386 | libsbuf-dev | 9.0+ds1-4 | - +- i386 | libsbuf6 | 9.0+ds1-4 | - +- i386 | libsbuild-dev | 1.6.4-4 | - +- i386 | libsc-dev | 2.3.1-14 | - +- i386 | libsc7 | 2.3.1-14 | - +- i386 | libscalapack-mpi-dev | 1.8.0-9 | - +- i386 | libscalapack-mpi1 | 1.8.0-9 | - +- i386 | libscalapack-pvm-dev | 1.8.0-9 | - +- i386 | libscalapack-pvm1 | 1.8.0-9 | - +- i386 | libscalar-list-utils-perl | 1:1.25-1 | - +- i386 | libscalar-number-perl | 0.006-1+b2 | - +- i386 | libscalar-string-perl | 0.002-1+b2 | - +- i386 | libscalar-util-numeric-perl | 0.22-1+b2 | - +- i386 | libscalc-dev | 0.2.4-1 | - +- i386 | libscalc0 | 0.2.4-1 | - +- i386 | libscamperfile0 | 20111202b-1 | - +- i386 | libscamperfile0-dev | 20111202b-1 | - +- i386 | libschroedinger-1.0-0 | 1.0.11-2 | - +- i386 | libschroedinger-dev | 1.0.11-2 | - +- i386 | libschroedinger-ocaml | 0.1.0-1+b3 | - +- i386 | libschroedinger-ocaml-dev | 0.1.0-1+b3 | - +- i386 | libscilab-java | 5.3.3-10 | - +- i386 | libscilab2-java | 5.3.3-10 | - +- i386 | libscim-dev | 1.4.13-5 | - +- i386 | libscim8c2a | 1.4.13-5 | - +- i386 | libsclang1 | 1:3.4.5-1wheezy1 | - +- i386 | libscm-dev | 5e5-3.2 | - +- i386 | libscope-upper-perl | 0.18-1+b1 | - +- i386 | libscotch-5.1 | 5.1.12b.dfsg-1.2 | - +- i386 | libscotch-dbg | 5.1.12b.dfsg-1.2 | - +- i386 | libscotch-dev | 5.1.12b.dfsg-1.2 | - +- i386 | libscotchmetis-dev | 5.1.12b.dfsg-1.2 | - +- i386 | libscotchparmetis-dev | 5.1.12b.dfsg-1.2 | - +- i386 | libscsynth1 | 1:3.4.5-1wheezy1 | - +- i386 | libsctp-dev | 1.0.11+dfsg-2 | - +- i386 | libsctp1 | 1.0.11+dfsg-2 | - +- i386 | libsdl-console | 2.1-3 | - +- i386 | libsdl-console-dev | 2.1-3 | - +- i386 | libsdl-gfx1.2-4 | 2.0.23-3 | - +- i386 | libsdl-gfx1.2-dev | 2.0.23-3 | - +- i386 | libsdl-gst | 3.2.4-2 | - +- i386 | libsdl-image1.2 | 1.2.12-2 | - +- i386 | libsdl-image1.2-dev | 1.2.12-2 | - +- i386 | libsdl-mixer1.2 | 1.2.12-3 | - +- i386 | libsdl-mixer1.2-dev | 1.2.12-3 | - +- i386 | libsdl-net1.2 | 1.2.8-2 | - +- i386 | libsdl-net1.2-dev | 1.2.8-2 | - +- i386 | libsdl-ocaml | 0.9.0-1 | - +- i386 | libsdl-ocaml-dev | 0.9.0-1 | - +- i386 | libsdl-pango-dev | 0.1.2-6 | - +- i386 | libsdl-pango1 | 0.1.2-6 | - +- i386 | libsdl-perl | 2.540-1 | - +- i386 | libsdl-sge | 030809dfsg-3 | - +- i386 | libsdl-sge-dev | 030809dfsg-3 | - +- i386 | libsdl-sound1.2 | 1.0.3-6 | - +- i386 | libsdl-sound1.2-dev | 1.0.3-6 | - +- i386 | libsdl-stretch-0-3 | 0.3.1-3 | - +- i386 | libsdl-stretch-dev | 0.3.1-3 | - +- i386 | libsdl-ttf2.0-0 | 2.0.11-2 | - +- i386 | libsdl-ttf2.0-dev | 2.0.11-2 | - +- i386 | libsdl1.2-dbg | 1.2.15-5 | - +- i386 | libsdl1.2-dev | 1.2.15-5 | - +- i386 | libsdl1.2debian | 1.2.15-5 | - ++ i386 | libsdl2-2.0-0 | - | 2.0.0+dfsg1-2~bpo70+1 ++ i386 | libsdl2-dbg | - | 2.0.0+dfsg1-2~bpo70+1 ++ i386 | libsdl2-dev | - | 2.0.0+dfsg1-2~bpo70+1 +- i386 | libsdp1 | 1.1.99-2.1 | - +- i386 | libsdpa-dev | 7.3.8+dfsg-1 | - +- i386 | libsearch-xapian-perl | 1.2.10.0-1 | - +- i386 | libsearchclient-dev | 0.7.7-3 | - +- i386 | libsearchclient0 | 0.7.7-3 | - +- i386 | libseaudit-dev | 3.3.7-3 | - +- i386 | libseaudit4 | 3.3.7-3 | - +- i386 | libseed-gtk3-0 | 3.2.0-2 | - +- i386 | libseed-gtk3-dev | 3.2.0-2 | - +- i386 | libsefs-dev | 3.3.7-3 | - +- i386 | libsefs4 | 3.3.7-3 | - +- i386 | libselinux1 | 2.1.9-5 | - +- i386 | libselinux1-dev | 2.1.9-5 | - +- i386 | libsemanage1 | 2.1.6-6 | - +- i386 | libsemanage1-dev | 2.1.6-6 | - +- i386 | libsendmail-milter-perl | 0.18-7+b4 | - +- i386 | libsensors-applet-plugin-dev | 3.0.0-0.2 | - +- i386 | libsensors-applet-plugin0 | 3.0.0-0.2 | - +- i386 | libsensors4 | 1:3.3.2-2+deb7u1 | - +- i386 | libsensors4-dev | 1:3.3.2-2+deb7u1 | - +- i386 | libsepol1 | 2.1.4-3 | - +- i386 | libsepol1-dev | 2.1.4-3 | - +- i386 | libserd-0-0 | 0.14.0~dfsg0-2 | - +- i386 | libserd-dev | 0.14.0~dfsg0-2 | - +- i386 | libserf-dev | 1.1.0-2 | - +- i386 | libserf1 | 1.1.0-2 | - +- i386 | libserf1-dbg | 1.1.0-2 | - +- i386 | libservice-wrapper-jni | 3.5.3+repack-0+nmu1 | - +- i386 | libset-object-perl | 1.27-1+b2 | - +- i386 | libsetools-jni | 3.3.7-3 | - +- i386 | libsetools-tcl | 3.3.7-3 | - +- i386 | libsexplib-camlp4-dev | 7.0.4-2 | - +- i386 | libsexy-dev | 0.1.11-2+b1 | - +- i386 | libsexy2 | 0.1.11-2+b1 | - +- i386 | libsfml-audio1.6 | 1.6+dfsg2-2 | - +- i386 | libsfml-dev | 1.6+dfsg2-2 | - +- i386 | libsfml-graphics1.6 | 1.6+dfsg2-2 | - +- i386 | libsfml-network1.6 | 1.6+dfsg2-2 | - +- i386 | libsfml-system1.6 | 1.6+dfsg2-2 | - +- i386 | libsfml-window1.6 | 1.6+dfsg2-2 | - +- i386 | libsfml1.6-dbg | 1.6+dfsg2-2 | - +- i386 | libsfst1-1.2-0 | 1.2.0-1.2 | - +- i386 | libsfst1-1.2-0-dev | 1.2.0-1.2 | - +- i386 | libsgml-parser-opensp-perl | 0.994-2+b1 | - +- i386 | libsgutils2-2 | 1.33-1 | - +- i386 | libsgutils2-dev | 1.33-1 | - +- i386 | libsha-ocaml | 1.7-2+b2 | - +- i386 | libsha-ocaml-dev | 1.7-2+b2 | - +- i386 | libshairport-dev | 1.2.1~git20120110.aeb4987-2 | - +- i386 | libshairport1 | 1.2.1~git20120110.aeb4987-2 | - +- i386 | libshevek-dev | 1.3-1 | - +- i386 | libshevek0 | 1.3-1 | - +- i386 | libshhmsg1 | 1.4.1-4.1 | - +- i386 | libshhmsg1-dev | 1.4.1-4.1 | - +- i386 | libshhopt1 | 1.1.7-2.1 | - +- i386 | libshhopt1-dev | 1.1.7-2.1 | - +- i386 | libshiboken-dev | 1.1.1-1 | - +- i386 | libshiboken-py3-1.1 | 1.1.1-1 | - +- i386 | libshiboken1.1 | 1.1.1-1 | - +- i386 | libshibsp-dev | 2.4.3+dfsg-5+b1 | - +- i386 | libshibsp5 | 2.4.3+dfsg-5+b1 | - +- i386 | libshisa-dev | 1.0.1-2 | - +- i386 | libshisa0 | 1.0.1-2 | - +- i386 | libshishi-dev | 1.0.1-2 | - +- i386 | libshishi0 | 1.0.1-2 | - +- i386 | libshout-ocaml | 0.2.7-1+b3 | - +- i386 | libshout-ocaml-dev | 0.2.7-1+b3 | - +- i386 | libshout3 | 2.2.2-8 | - +- i386 | libshout3-dev | 2.2.2-8 | - +- i386 | libshp-dev | 1.2.10-7 | - +- i386 | libshp1 | 1.2.10-7 | - +- i386 | libshr-glib-dbg | 2011.03.08.2~git20110930-2 | - +- i386 | libshr-glib-dev | 2011.03.08.2~git20110930-2 | - +- i386 | libshr-glib0 | 2011.03.08.2~git20110930-2 | - +- i386 | libsidl-1.4.0 | 1.4.0.dfsg-8.1 | - +- i386 | libsidl-dev | 1.4.0.dfsg-8.1 | - +- i386 | libsidplay1 | 1.36.59-5 | - +- i386 | libsidplay1-dev | 1.36.59-5 | - +- i386 | libsidplay2 | 2.1.1-14 | - +- i386 | libsidplay2-dev | 2.1.1-14 | - +- i386 | libsidplayfp | 0.3.5-1 | - +- i386 | libsidplayfp-dbg | 0.3.5-1 | - +- i386 | libsidplayfp-dev | 0.3.5-1 | - +- i386 | libsidutils-dev | 2.1.1-14 | - +- i386 | libsidutils0 | 2.1.1-14 | - +- i386 | libsieve2-1 | 2.2.6-1.1 | - +- i386 | libsieve2-dev | 2.2.6-1.1 | - +- i386 | libsigc++-1.2-5c2 | 1.2.7-2 | - +- i386 | libsigc++-1.2-dev | 1.2.7-2 | - +- i386 | libsigc++-2.0-0c2a | 2.2.10-0.2 | - +- i386 | libsigc++-2.0-dev | 2.2.10-0.2 | - +- i386 | libsigc++-dev | 1.0.4-9.4 | - +- i386 | libsigc++0c2 | 1.0.4-9.4 | - +- i386 | libsignatures-perl | 0.06-1 | - +- i386 | libsigrok0 | 0.1.0-2 | - +- i386 | libsigrok0-dev | 0.1.0-2 | - +- i386 | libsigrokdecode0 | 0.1.0-2 | - +- i386 | libsigrokdecode0-dev | 0.1.0-2 | - +- i386 | libsigsegv-dev | 2.9-4 | - +- i386 | libsigsegv2 | 2.9-4 | - +- i386 | libsikuli-script-jni | 1.0~x~rc3.tesseract3-dfsg1-5 | - +- i386 | libsilly | 0.1.0-3 | - +- i386 | libsilly-dev | 0.1.0-3 | - +- i386 | libsilo-bin | 4.8-13 | - +- i386 | libsilo-dev | 4.8-13 | - +- i386 | libsiloh5-0 | 4.8-13 | - +- i386 | libsimage-dev | 1.7.0-1.1+b1 | - +- i386 | libsimage20 | 1.7.0-1.1+b1 | - +- i386 | libsimplelist0 | 0.3.4-2 | - +- i386 | libsimplelist0-dev | 0.3.4-2 | - +- i386 | libsipwitch-dev | 1.2.4-1 | - +- i386 | libsipwitch1 | 1.2.4-1 | - +- i386 | libsipwitch1-dbg | 1.2.4-1 | - ++ i386 | libsipxtapi | - | 3.3.0~test12-2~bpo70+1 ++ i386 | libsipxtapi-dev | - | 3.3.0~test12-2~bpo70+1 +- i386 | libsiscone-dev | 2.0.5-1 | - +- i386 | libsiscone-spherical-dev | 2.0.5-1 | - +- i386 | libsiscone-spherical0 | 2.0.5-1 | - +- i386 | libsiscone0 | 2.0.5-1 | - +- i386 | libskk-dbg | 0.0.12-3 | - +- i386 | libskk-dev | 0.0.12-3 | - +- i386 | libskk0 | 0.0.12-3 | - +- i386 | libskstream-0.3-6 | 0.3.8-1 | - +- i386 | libskstream-0.3-6-dbg | 0.3.8-1 | - +- i386 | libskstream-0.3-dev | 0.3.8-1 | - +- i386 | libsl0-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libslang2 | 2.2.4-15 | - +- i386 | libslang2-dev | 2.2.4-15 | - +- i386 | libslang2-modules | 2.2.4-15 | - +- i386 | libslang2-pic | 2.2.4-15 | - +- i386 | libslepc3.2 | 3.2-p5-1 | - +- i386 | libslepc3.2-dbg | 3.2-p5-1 | - +- i386 | libslepc3.2-dev | 3.2-p5-1 | - +- i386 | libslice34 | 3.4.2-8.2 | - +- i386 | libslp-dev | 1.2.1-9 | - +- i386 | libslp1 | 1.2.1-9 | - +- i386 | libslurm-dev | 2.3.4-2+b1 | - +- i386 | libslurm-perl | 2.3.4-2+b1 | - +- i386 | libslurm23 | 2.3.4-2+b1 | - +- i386 | libslurmdb-dev | 2.3.4-2+b1 | - +- i386 | libslurmdb-perl | 2.3.4-2+b1 | - +- i386 | libslurmdb23 | 2.3.4-2+b1 | - +- i386 | libslv2-9 | 0.6.6+dfsg1-2 | - +- i386 | libslv2-dev | 0.6.6+dfsg1-2 | - +- i386 | libsm-dev | 2:1.2.1-2 | - +- i386 | libsm6 | 2:1.2.1-2 | - +- i386 | libsm6-dbg | 2:1.2.1-2 | - +! i386 | libsmbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libsmbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | libsmbclient-raw-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsmbclient-raw0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libsmbios-bin | 2.0.3.dfsg-1.1 | - +- i386 | libsmbios-dev | 2.0.3.dfsg-1.1 | - +- i386 | libsmbios2 | 2.0.3.dfsg-1.1 | - ++ i386 | libsmbsharemodes-dev | - | 2:4.1.5+dfsg-1~bpo70+1 ++ i386 | libsmbsharemodes0 | - | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | libsmf-dev | 1.3-2 | - +- i386 | libsmf0 | 1.3-2 | - +- i386 | libsmi2-dbg | 0.4.8+dfsg2-7 | - +- i386 | libsmi2-dev | 0.4.8+dfsg2-7 | - +- i386 | libsmi2ldbl | 0.4.8+dfsg2-7 | - +- i386 | libsmlnj-smlnj | 110.74-2 | - +- i386 | libsmltk0 | 3.4.0.16.7-1 | - +- i386 | libsmokeakonadi3 | 4:4.8.4-1 | - +- i386 | libsmokeattica3 | 4:4.8.4-1 | - +- i386 | libsmokebase3 | 4:4.8.4-1 | - +- i386 | libsmokekde-dev | 4:4.8.4-1 | - +- i386 | libsmokekde4-dbg | 4:4.8.4-1 | - +- i386 | libsmokekdecore4-3 | 4:4.8.4-1 | - +- i386 | libsmokekdeui4-3 | 4:4.8.4-1 | - +- i386 | libsmokekfile3 | 4:4.8.4-1 | - +- i386 | libsmokekhtml3 | 4:4.8.4-1 | - +- i386 | libsmokekio3 | 4:4.8.4-1 | - +- i386 | libsmokeknewstuff2-3 | 4:4.8.4-1 | - +- i386 | libsmokeknewstuff3-3 | 4:4.8.4-1 | - +- i386 | libsmokekparts3 | 4:4.8.4-1 | - +- i386 | libsmokektexteditor3 | 4:4.8.4-1 | - +- i386 | libsmokekutils3 | 4:4.8.4-1 | - +- i386 | libsmokenepomuk3 | 4:4.8.4-1 | - +- i386 | libsmokenepomukquery3 | 4:4.8.4-1 | - +- i386 | libsmokeokular3 | 4:4.8.4-1 | - +- i386 | libsmokephonon3 | 4:4.8.4-1 | - +- i386 | libsmokeplasma3 | 4:4.8.4-1 | - +- i386 | libsmokeqimageblitz3 | 4:4.8.4-1 | - +- i386 | libsmokeqsci3 | 4:4.8.4-1 | - +- i386 | libsmokeqt3support4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqt4-dbg | 4:4.8.4-1 | - +- i386 | libsmokeqt4-dev | 4:4.8.4-1 | - +- i386 | libsmokeqtcore4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtdbus4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtdeclarative4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtgui4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqthelp4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtnetwork4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtopengl4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtscript4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtsql4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtsvg4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqttest4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtuitools4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtwebkit4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtxml4-3 | 4:4.8.4-1 | - +- i386 | libsmokeqtxmlpatterns4-3 | 4:4.8.4-1 | - +- i386 | libsmokesolid3 | 4:4.8.4-1 | - +- i386 | libsmokesoprano3 | 4:4.8.4-1 | - +- i386 | libsmokesopranoclient3 | 4:4.8.4-1 | - +- i386 | libsmokesopranoserver3 | 4:4.8.4-1 | - +- i386 | libsmpeg-dev | 0.4.5+cvs20030824-5 | - +- i386 | libsmpeg0 | 0.4.5+cvs20030824-5 | - +- i386 | libsnacc-dev | 1.3.1-1 | - +- i386 | libsnacc0c2 | 1.3.1-1 | - +- i386 | libsnack2 | 2.2.10-dfsg1-12.1 | - +- i386 | libsnack2-alsa | 2.2.10-dfsg1-12.1 | - +- i386 | libsnack2-dev | 2.2.10-dfsg1-12.1 | - +- i386 | libsnappy-dev | 1.0.5-2 | - +- i386 | libsnappy1 | 1.0.5-2 | - +- i386 | libsndfile1 | 1.0.25-5 | - +- i386 | libsndfile1-dev | 1.0.25-5 | - +- i386 | libsndobj-dev | 2.6.6.1-3 | - +- i386 | libsndobj2c2 | 2.6.6.1-3 | - +- i386 | libsnmp-dev | 5.4.3~dfsg-2.7 | - +- i386 | libsnmp-perl | 5.4.3~dfsg-2.7 | - +- i386 | libsnmp-python | 5.4.3~dfsg-2.7 | - +- i386 | libsnmp15 | 5.4.3~dfsg-2.7 | - +- i386 | libsnmp15-dbg | 5.4.3~dfsg-2.7 | - +- i386 | libsnmpkit-dev | 0.9-16 | - +- i386 | libsnmpkit2c2a | 0.9-16 | - +- i386 | libsocialweb-client-dev | 0.25.20-2.1 | - +- i386 | libsocialweb-client2 | 0.25.20-2.1 | - +- i386 | libsocialweb-client2-dbg | 0.25.20-2.1 | - +- i386 | libsocialweb-dev | 0.25.20-2.1 | - +- i386 | libsocialweb-service | 0.25.20-2.1 | - +- i386 | libsocialweb0 | 0.25.20-2.1 | - +- i386 | libsocialweb0-dbg | 0.25.20-2.1 | - +- i386 | libsocket-getaddrinfo-perl | 0.22-1 | - +- i386 | libsocket-linux-perl | 0.01-1+b1 | - +- i386 | libsocket-multicast6-perl | 0.04-1+b2 | - +- i386 | libsocket-perl | 2.002-1 | - +- i386 | libsocket6-perl | 0.23-1+b2 | - +- i386 | libsocks4 | 4.3.beta2-18 | - +- i386 | libsocksd0 | 1.1.19.dfsg-3+b3 | - +- i386 | libsocksd0-dev | 1.1.19.dfsg-3+b3 | - +- i386 | libsofa-c-dev | 2012.03.01-1 | - +- i386 | libsofa-c0 | 2012.03.01-1 | - +- i386 | libsofa1 | 1.0~beta4-7 | - +- i386 | libsofa1-dev | 1.0~beta4-7 | - +- i386 | libsofia-sip-ua-dev | 1.12.11+20110422-1 | - +- i386 | libsofia-sip-ua-glib-dev | 1.12.11+20110422-1 | - +- i386 | libsofia-sip-ua-glib3 | 1.12.11+20110422-1 | - +- i386 | libsofia-sip-ua0 | 1.12.11+20110422-1 | - +- i386 | libsofthsm | 1.3.3-2 | - +- i386 | libsofthsm-dev | 1.3.3-2 | - +- i386 | libsoil-dev | 1.07~20080707.dfsg-2 | - +- i386 | libsoil1 | 1.07~20080707.dfsg-2 | - +- i386 | libsoil1-dbg | 1.07~20080707.dfsg-2 | - +- i386 | libsolid4 | 4:4.8.4-4 | - +- i386 | libsolidcontrol4abi2 | 4:4.8.4-6 | - +- i386 | libsolidcontrolifaces4abi2 | 4:4.8.4-6 | - +- i386 | libsombok-dev | 2.2.1-1 | - +- i386 | libsombok3 | 2.2.1-1 | - +- i386 | libsonic-dev | 0.1.17-1.1 | - +- i386 | libsonic0 | 0.1.17-1.1 | - +! i386 | libsope-dev | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsope1 | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsope1-dbg | 1.3.16-1 | 2.0.5-1~bpo70+1 +- i386 | libsoprano-dbg | 2.7.6+dfsg.1-2wheezy1 | - +- i386 | libsoprano-dev | 2.7.6+dfsg.1-2wheezy1 | - +- i386 | libsoprano4 | 2.7.6+dfsg.1-2wheezy1 | - +! i386 | libsoqt-dev-common | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libsoqt4-20 | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libsoqt4-dev | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +- i386 | libsord-0-0 | 0.8.0~dfsg0-1 | - +- i386 | libsord-dev | 0.8.0~dfsg0-1 | - +- i386 | libsort-key-perl | 1.32-1 | - +- i386 | libsort-key-top-perl | 0.06-1 | - +- i386 | libsoundgen-dbg | 0.6-4 | - +- i386 | libsoundgen-dev | 0.6-4 | - +- i386 | libsoundgen0 | 0.6-4 | - +- i386 | libsoundtouch-dev | 1.6.0-3 | - +- i386 | libsoundtouch-ocaml | 0.1.7-1+b1 | - +- i386 | libsoundtouch-ocaml-dev | 0.1.7-1+b1 | - +- i386 | libsoundtouch0 | 1.6.0-3 | - +- i386 | libsoundtouch0-dbg | 1.6.0-3 | - +- i386 | libsoup-gnome2.4-1 | 2.38.1-2 | - +- i386 | libsoup-gnome2.4-dev | 2.38.1-2 | - +- i386 | libsoup2.4-1 | 2.38.1-2 | - +- i386 | libsoup2.4-dbg | 2.38.1-2 | - +- i386 | libsoup2.4-dev | 2.38.1-2 | - +- i386 | libsoupcutter-dev | 1.1.7-1.2 | - +- i386 | libsoupcutter0 | 1.1.7-1.2 | - +- i386 | libsource-highlight-dev | 3.1.6-1.1 | - +- i386 | libsource-highlight4 | 3.1.6-1.1 | - +- i386 | libsox-dev | 14.4.0-3 | - +- i386 | libsox-fmt-all | 14.4.0-3 | - +- i386 | libsox-fmt-alsa | 14.4.0-3 | - +- i386 | libsox-fmt-ao | 14.4.0-3 | - +- i386 | libsox-fmt-base | 14.4.0-3 | - +- i386 | libsox-fmt-ffmpeg | 14.4.0-3 | - +- i386 | libsox-fmt-mp3 | 14.4.0-3 | - +- i386 | libsox-fmt-oss | 14.4.0-3 | - +- i386 | libsox-fmt-pulse | 14.4.0-3 | - +- i386 | libsox2 | 14.4.0-3 | - +- i386 | libsp-gxmlcpp-dev | 1.0.20040603-5 | - +- i386 | libsp-gxmlcpp1 | 1.0.20040603-5 | - +- i386 | libsp1-dev | 1.3.4-1.2.1-47.1+b1 | - +- i386 | libsp1c2 | 1.3.4-1.2.1-47.1+b1 | - +- i386 | libspandsp-dev | 0.0.6~pre20-3.1 | - +- i386 | libspandsp2 | 0.0.6~pre20-3.1 | - +- i386 | libsparskit-dev | 2.0.0-2 | - +- i386 | libsparskit2.0 | 2.0.0-2 | - +- i386 | libspatialindex-dev | 1.7.0-1 | - +- i386 | libspatialindex1 | 1.7.0-1 | - +- i386 | libspatialite-dev | 3.0.0~beta20110817-3+deb7u1 | - +- i386 | libspatialite3 | 3.0.0~beta20110817-3+deb7u1 | - +- i386 | libspctag-dev | 0.2-1 | - +- i386 | libspctag1 | 0.2-1 | - +- i386 | libspectre-dev | 0.2.7-2 | - +- i386 | libspectre1 | 0.2.7-2 | - +- i386 | libspectre1-dbg | 0.2.7-2 | - +- i386 | libspectrum-dev | 1.0.0-3 | - +- i386 | libspectrum8 | 1.0.0-3 | - +- i386 | libspeechd-dev | 0.7.1-6.2 | - +- i386 | libspeechd2 | 0.7.1-6.2 | - +- i386 | libspeex-dbg | 1.2~rc1-7 | - +- i386 | libspeex-dev | 1.2~rc1-7 | - +- i386 | libspeex-ocaml | 0.2.0-1+b3 | - +- i386 | libspeex-ocaml-dev | 0.2.0-1+b3 | - +- i386 | libspeex1 | 1.2~rc1-7 | - +- i386 | libspeexdsp-dev | 1.2~rc1-7 | - +- i386 | libspeexdsp1 | 1.2~rc1-7 | - +- i386 | libspf2-2 | 1.2.9-7 | - +- i386 | libspf2-2-dbg | 1.2.9-7 | - +- i386 | libspf2-dev | 1.2.9-7 | - +- i386 | libsphere-dev | 3.2-4 | - +- i386 | libsphere0d | 3.2-4 | - +- i386 | libspice-client-glib-2.0-1 | 0.12-5 | - +- i386 | libspice-client-glib-2.0-dev | 0.12-5 | - +- i386 | libspice-client-gtk-2.0-1 | 0.12-5 | - +- i386 | libspice-client-gtk-2.0-dev | 0.12-5 | - +- i386 | libspice-client-gtk-3.0-1 | 0.12-5 | - +- i386 | libspice-client-gtk-3.0-dev | 0.12-5 | - +! i386 | libspice-server-dev | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | libspice-server1 | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +- i386 | libspiro-dev | 20071029-2 | - +- i386 | libspiro0 | 20071029-2 | - +- i386 | libspiro0-dbg | 20071029-2 | - +- i386 | libspnav-dev | 0.2.2-1 | - +- i386 | libspnav0 | 0.2.2-1 | - +- i386 | libspooles-dev | 2.2-9 | - +- i386 | libspooles2.2 | 2.2-9 | - +- i386 | libsprng2 | 2.0a-8 | - +- i386 | libsprng2-dev | 2.0a-8 | - ++ i386 | libsqlcipher-dev | - | 2.2.1-2~bpo70+1 ++ i386 | libsqlcipher0 | - | 2.2.1-2~bpo70+1 ++ i386 | libsqlcipher0-dbg | - | 2.2.1-2~bpo70+1 +- i386 | libsqlexpr-ocaml | 0.4.1-1+b5 | - +- i386 | libsqlexpr-ocaml-dev | 0.4.1-1+b5 | - +- i386 | libsqlheavy-dev | 0.1.1-1 | - +- i386 | libsqlheavy0.1-0 | 0.1.1-1 | - +- i386 | libsqlheavy0.1-dbg | 0.1.1-1 | - +- i386 | libsqlheavygtk-dev | 0.1.1-1 | - +- i386 | libsqlheavygtk0.1-0 | 0.1.1-1 | - +- i386 | libsqlite-tcl | 2.8.17-7 | - +- i386 | libsqlite0 | 2.8.17-7 | - +- i386 | libsqlite0-dev | 2.8.17-7 | - +- i386 | libsqlite3-0 | 3.7.13-1+deb7u1 | - +- i386 | libsqlite3-0-dbg | 3.7.13-1+deb7u1 | - +- i386 | libsqlite3-dev | 3.7.13-1+deb7u1 | - +- i386 | libsqlite3-gst | 3.2.4-2 | - +- i386 | libsqlite3-mod-blobtoxy | 0.91-3 | - +- i386 | libsqlite3-mod-impexp | 0.91-3 | - +- i386 | libsqlite3-ocaml | 1.6.1-1+b1 | - +- i386 | libsqlite3-ocaml-dev | 1.6.1-1+b1 | - +- i386 | libsqlite3-tcl | 3.7.13-1+deb7u1 | - +- i386 | libsqliteodbc | 0.91-3 | - +- i386 | libsquizz | 0.99a-2 | - +- i386 | libsquizz-dev | 0.99a-2 | - +- i386 | libsratom-0-0 | 0.2.0~dfsg0-1 | - +- i386 | libsratom-dev | 0.2.0~dfsg0-1 | - +- i386 | libsrecord-dev | 1.58-1+b1 | - +- i386 | libsrecord0 | 1.58-1+b1 | - +- i386 | libsrecord0-dbg | 1.58-1+b1 | - +- i386 | libsrf-dev | 0.1+dfsg-1 | - +- i386 | libsrtp0 | 1.4.4+20100615~dfsg-2+deb7u1 | - +- i386 | libsrtp0-dev | 1.4.4+20100615~dfsg-2+deb7u1 | - +- i386 | libss2 | 1.42.5-1.1 | - +- i386 | libss2-dbg | 1.42.5-1.1 | - +- i386 | libss7-1 | 1.0.2-3 | - +- i386 | libss7-dbg | 1.0.2-3 | - +- i386 | libss7-dev | 1.0.2-3 | - +- i386 | libsscm-dev | 0.8.5-2.1 | - +- i386 | libsscm3 | 0.8.5-2.1 | - +- i386 | libssh-4 | 0.5.4-1 | - +- i386 | libssh-dbg | 0.5.4-1 | - +- i386 | libssh-dev | 0.5.4-1 | - +- i386 | libssh2-1 | 1.4.2-1.1 | - +- i386 | libssh2-1-dbg | 1.4.2-1.1 | - +- i386 | libssh2-1-dev | 1.4.2-1.1 | - +- i386 | libssh2-php | 0.11.3-0.1+b2 | - +- i386 | libssl-dev | 1.0.1e-2+deb7u4 | - +- i386 | libssl-ocaml | 0.4.6-1 | - +- i386 | libssl-ocaml-dev | 0.4.6-1 | - +- i386 | libssl1.0.0 | 1.0.1e-2+deb7u4 | - +- i386 | libssl1.0.0-dbg | 1.0.1e-2+deb7u4 | - +- i386 | libsslcommon2 | 0.16-6+deb7u1 | - +- i386 | libsslcommon2-dev | 0.16-6+deb7u1 | - +- i386 | libssreflect-ocaml | 1.3pl4-1 | - +- i386 | libssreflect-ocaml-dev | 1.3pl4-1 | - +- i386 | libsss-sudo-dev | 1.8.4-2 | - +- i386 | libsss-sudo0 | 1.8.4-2 | - +- i386 | libst-dev | 1.9-3 | - +- i386 | libst1 | 1.9-3 | - +- i386 | libstaden-read-dev | 1.12.4-1 | - +- i386 | libstaden-read1 | 1.12.4-1 | - +- i386 | libstarlink-ast-dev | 7.0.4+dfsg-1 | - +- i386 | libstarlink-ast-err0 | 7.0.4+dfsg-1 | - +- i386 | libstarlink-ast-grf3d0 | 7.0.4+dfsg-1 | - +- i386 | libstarlink-ast0 | 7.0.4+dfsg-1 | - +- i386 | libstarlink-pal-dev | 0.1.0-1 | - +- i386 | libstarlink-pal0 | 0.1.0-1 | - +- i386 | libstarpu-1.0 | 1.0.1+dfsg-1 | - +- i386 | libstarpu-dev | 1.0.1+dfsg-1 | - +- i386 | libstarpufft-1.0 | 1.0.1+dfsg-1 | - +- i386 | libstarpumpi-1.0 | 1.0.1+dfsg-1 | - +- i386 | libstartup-notification0 | 0.12-1 | - +- i386 | libstartup-notification0-dev | 0.12-1 | - +- i386 | libstatgrab-dev | 0.17-1 | - +- i386 | libstatgrab6 | 0.17-1 | - +- i386 | libstdc++5 | 1:3.3.6-25 | - +- i386 | libstdc++6 | 4.7.2-5 | - +- i386 | libstdc++6-4.4-dbg | 4.4.7-2 | - +- i386 | libstdc++6-4.4-dev | 4.4.7-2 | - +- i386 | libstdc++6-4.4-pic | 4.4.7-2 | - +- i386 | libstdc++6-4.6-dbg | 4.6.3-14 | - +- i386 | libstdc++6-4.6-dev | 4.6.3-14 | - +- i386 | libstdc++6-4.6-pic | 4.6.3-14 | - +- i386 | libstdc++6-4.7-dbg | 4.7.2-5 | - +- i386 | libstdc++6-4.7-dev | 4.7.2-5 | - +- i386 | libstdc++6-4.7-pic | 4.7.2-5 | - +- i386 | libstemmer-dev | 0+svn546-2 | - +- i386 | libstemmer-tools | 0+svn546-2 | - +- i386 | libstemmer0d | 0+svn546-2 | - +- i386 | libstemmer0d-dbg | 0+svn546-2 | - +- i386 | libsteptalk-dev | 0.10.0-5+b1 | - +- i386 | libsteptalk0 | 0.10.0-5+b1 | - +- i386 | libstfl-dev | 0.22-1+b1 | - +- i386 | libstfl-perl | 0.22-1+b1 | - +- i386 | libstfl-ruby1.8 | 0.22-1+b1 | - +- i386 | libstfl-ruby1.9.1 | 0.22-1+b1 | - +- i386 | libstfl-spl | 0.22-1+b1 | - +- i386 | libstfl0 | 0.22-1+b1 | - +- i386 | libstk0-dev | 4.4.3-2 | - +- i386 | libstk0c2a | 4.4.3-2 | - +- i386 | libstlport4.6-dev | 4.6.2-7 | - +- i386 | libstlport4.6ldbl | 4.6.2-7 | - +- i386 | libstonith1 | 1.0.9+hg2665-1 | - +- i386 | libstonith1-dev | 1.0.9+hg2665-1 | - +- i386 | libstonithd1 | 1.1.7-1 | - +- i386 | libstonithd1-dev | 1.1.7-1 | - +- i386 | libstreamanalyzer-dev | 0.7.7-3 | - +- i386 | libstreamanalyzer0 | 0.7.7-3 | - +- i386 | libstreams-dev | 0.7.7-3 | - +- i386 | libstreams0 | 0.7.7-3 | - +- i386 | libstrigihtmlgui-dev | 0.7.7-3 | - +- i386 | libstrigihtmlgui0 | 0.7.7-3 | - +- i386 | libstrigiqtdbusclient-dev | 0.7.7-3 | - +- i386 | libstrigiqtdbusclient0 | 0.7.7-3 | - +- i386 | libstring-approx-perl | 3.26-1+b2 | - ++ i386 | libstring-compare-constanttime-perl | - | 0.300-1~bpo70+1 +- i386 | libstring-crc32-perl | 1.4-2+b3 | - +- i386 | libstring-similarity-perl | 1.04-1 | - +- i386 | libstroke0 | 0.5.1-6 | - +- i386 | libstroke0-dev | 0.5.1-6 | - +! i386 | libstrongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +- i386 | libstxxl-dev | 1.3.1-4 | - +- i386 | libstxxl1 | 1.3.1-4 | - +- i386 | libstxxl1-dbg | 1.3.1-4 | - +- i386 | libstyx2 | 1.8.0-1.1 | - +- i386 | libsub-current-perl | 0.02-1+b2 | - +- i386 | libsub-identify-perl | 0.04-1+b2 | - +- i386 | libsub-name-perl | 0.05-1+b2 | - +- i386 | libsub-prototype-perl | 0.02-1+b2 | - +- i386 | libsublime-dev | 1.3.1-2 | - +- i386 | libsublime5 | 1.3.1-2 | - +- i386 | libsubtitleeditor-dev | 0.33.0-1 | - +- i386 | libsubtitleeditor0 | 0.33.0-1 | - +- i386 | libsubunit-dev | 0.0.8+bzr176-1 | - +- i386 | libsubunit0 | 0.0.8+bzr176-1 | - +- i386 | libsugarext-dbg | 0.96.1-2 | - +- i386 | libsugarext-dev | 0.96.1-2 | - +- i386 | libsugarext0 | 0.96.1-2 | - +- i386 | libsuil-0-0 | 0.6.4~dfsg0-3 | - +- i386 | libsuil-dev | 0.6.4~dfsg0-3 | - +- i386 | libsuitesparse-dbg | 1:3.4.0-3 | - +- i386 | libsuitesparse-dev | 1:3.4.0-3 | - +- i386 | libsundials-cvode1 | 2.5.0-3 | - +- i386 | libsundials-cvodes2 | 2.5.0-3 | - +- i386 | libsundials-ida2 | 2.5.0-3 | - +- i386 | libsundials-idas0 | 2.5.0-3 | - +- i386 | libsundials-kinsol1 | 2.5.0-3 | - +- i386 | libsundials-nvecserial0 | 2.5.0-3 | - +- i386 | libsundials-serial | 2.5.0-3 | - +- i386 | libsundials-serial-dev | 2.5.0-3 | - +- i386 | libsunpinyin-dev | 2.0.3+git20120607-1 | - +- i386 | libsunpinyin3 | 2.0.3+git20120607-1 | - +- i386 | libsunpinyin3-dbg | 2.0.3+git20120607-1 | - +- i386 | libsuperlu3 | 3.0+20070106-3 | - +- i386 | libsuperlu3-dev | 3.0+20070106-3 | - +- i386 | libsvga1 | 1:1.4.3-33 | - +- i386 | libsvga1-dev | 1:1.4.3-33 | - +- i386 | libsvm-dev | 3.12-1 | - +- i386 | libsvm-tools | 3.12-1 | - +- i386 | libsvm3 | 3.12-1 | - +- i386 | libsvn-dev | 1.6.17dfsg-4+deb7u4 | - +- i386 | libsvn-java | 1.6.17dfsg-4+deb7u4 | - +- i386 | libsvn-perl | 1.6.17dfsg-4+deb7u4 | - +- i386 | libsvn-ruby1.8 | 1.6.17dfsg-4+deb7u4 | - +- i386 | libsvn1 | 1.6.17dfsg-4+deb7u4 | - +- i386 | libsvncpp-dev | 0.12.0dfsg-6 | - +- i386 | libsvncpp3 | 0.12.0dfsg-6 | - +- i386 | libsvnqt-dev | 1.5.5-4.1 | - +- i386 | libsvnqt6 | 1.5.5-4.1 | - +- i386 | libsvrcore-dev | 1:4.0.4-15 | - +- i386 | libsvrcore0 | 1:4.0.4-15 | - +- i386 | libsvrcore0-dbg | 1:4.0.4-15 | - +- i386 | libswami-dev | 2.0.0+svn389-2 | - +- i386 | libswami0 | 2.0.0+svn389-2 | - +- i386 | libswe-dev | 1.77.00.0005-2 | - +- i386 | libswe0 | 1.77.00.0005-2 | - +- i386 | libswf-perl | 1:0.4.4-1.1 | - +- i386 | libswiften-dev | 2.0~beta1+dev47-1 | - +- i386 | libswiften2 | 2.0~beta1+dev47-1 | - +- i386 | libsword-dbg | 1.6.2+dfsg-5 | - +- i386 | libsword-dev | 1.6.2+dfsg-5 | - +- i386 | libsword-utils | 1.6.2+dfsg-5 | - +- i386 | libsword9 | 1.6.2+dfsg-5 | - +! i386 | libswscale-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libswscale2 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +- i386 | libswt-cairo-gtk-3-jni | 3.8.0~rc4-1 | - +- i386 | libswt-glx-gtk-3-jni | 3.8.0~rc4-1 | - +- i386 | libswt-gnome-gtk-3-jni | 3.8.0~rc4-1 | - +- i386 | libswt-gtk-3-java | 3.8.0~rc4-1 | - +- i386 | libswt-gtk-3-java-gcj | 3.8.0~rc4-1 | - +- i386 | libswt-gtk-3-jni | 3.8.0~rc4-1 | - +- i386 | libswt-webkit-gtk-3-jni | 3.8.0~rc4-1 | - +- i386 | libsx-dev | 2.05-3 | - +- i386 | libsx0 | 2.05-3 | - +- i386 | libsybdb5 | 0.91-2+deb7u1 | - +- i386 | libsyfi1.0 | 1.0.0.dfsg-1 | - +- i386 | libsyfi1.0-dbg | 1.0.0.dfsg-1 | - +- i386 | libsyfi1.0-dev | 1.0.0.dfsg-1 | - +- i386 | libsylph-dev | 1.1.0-8 | - +- i386 | libsylph1 | 1.1.0-8 | - +- i386 | libsymmetrica-2.0 | 2.0-1 | - +- i386 | libsymmetrica-dev | 2.0-1 | - +- i386 | libsynce-dbg | 0.15-1.1 | - +- i386 | libsynce0 | 0.15-1.1 | - +- i386 | libsynce0-dev | 0.15-1.1 | - +- i386 | libsyncevo-dbus0 | 1.2.99.1-1.1 | - +- i386 | libsyncevolution0 | 1.2.99.1-1.1 | - +- i386 | libsyncml-dev | 0.5.4-2.1 | - +- i386 | libsyncml-utils | 0.5.4-2.1 | - +- i386 | libsyncml2 | 0.5.4-2.1 | - +- i386 | libsyncml2-dbg | 0.5.4-2.1 | - +- i386 | libsyndication4 | 4:4.8.4-2 | - +- i386 | libsynfig-dev | 0.63.05-1 | - +- i386 | libsynfig0 | 0.63.05-1 | - +- i386 | libsynopsis0.12 | 0.12-8 | - +- i386 | libsynopsis0.12-dev | 0.12-8 | - +- i386 | libsynthesis-dbg | 3.4.0.16.7-1 | - +- i386 | libsynthesis-dev | 3.4.0.16.7-1 | - +- i386 | libsynthesis0 | 3.4.0.16.7-1 | - +- i386 | libsys-cpu-perl | 0.52-3 | - +- i386 | libsys-cpuload-perl | 0.03-6+b3 | - +- i386 | libsys-gamin-perl | 0.1-1+b2 | - +- i386 | libsys-mmap-perl | 0.16-1+b1 | - +- i386 | libsys-syslog-perl | 0.29-1+b2 | - +- i386 | libsys-utmp-perl | 1.6-4+b3 | - +- i386 | libsys-virt-perl | 0.9.12-2 | - +- i386 | libsysactivity-dev | 0.6.4-1 | - +- i386 | libsysactivity1 | 0.6.4-1 | - +- i386 | libsysactivity1-dbg | 0.6.4-1 | - +- i386 | libsysfs-dev | 2.1.0+repack-2 | - +- i386 | libsysfs2 | 2.1.0+repack-2 | - +- i386 | libsyslog-ng-3.3.5 | 3.3.5-4 | - +- i386 | libsyslog-ng-dev | 3.3.5-4 | - +- i386 | libsyslog-ocaml | 1.4-6+b2 | - +- i386 | libsyslog-ocaml-dev | 1.4-6+b2 | - +- i386 | libsystemd-daemon-dev | 44-11+deb7u4 | - +- i386 | libsystemd-daemon0 | 44-11+deb7u4 | - +- i386 | libsystemd-id128-0 | 44-11+deb7u4 | - +- i386 | libsystemd-id128-dev | 44-11+deb7u4 | - +- i386 | libsystemd-journal-dev | 44-11+deb7u4 | - +- i386 | libsystemd-journal0 | 44-11+deb7u4 | - +- i386 | libsystemd-login-dev | 44-11+deb7u4 | - +- i386 | libsystemd-login0 | 44-11+deb7u4 | - +- i386 | libt1-5 | 5.1.2-3.6 | - +- i386 | libt1-5-dbg | 5.1.2-3.6 | - +- i386 | libt1-dev | 5.1.2-3.6 | - +- i386 | libtacacs+1 | 4.0.4.19-11 | - +- i386 | libtachyon-0.99 | 0.99~b2+dfsg-0.4 | - +- i386 | libtachyon-dev | 0.99~b2+dfsg-0.4 | - +- i386 | libtag-extras-dev | 1.0.1-3 | - +- i386 | libtag-extras1 | 1.0.1-3 | - +! i386 | libtag1-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +- i386 | libtag1-rusxmms | 1.7.2-1 | - +! i386 | libtag1-vanilla | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtag1c2a | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtagc0 | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtagc0-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +- i386 | libtagcoll2-dev | 2.0.13-1.1 | - +- i386 | libtaglib-ocaml | 0.2.0-1+b1 | - +- i386 | libtaglib-ocaml-dev | 0.2.0-1+b1 | - +- i386 | libtaint-util-perl | 0.08-1+b2 | - +- i386 | libtaktuk-1-dev | 3.7.4-1 | - +- i386 | libtaktuk3 | 3.7.4-1 | - +! i386 | libtalloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtalloc2 | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtalloc2-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +- i386 | libtamuanova-0.2 | 0.2-2 | - +- i386 | libtamuanova-dev | 0.2-2 | - +- i386 | libtango-tools | 7.2.6+dfsg-14 | - +- i386 | libtango7 | 7.2.6+dfsg-14 | - +- i386 | libtango7-dbg | 7.2.6+dfsg-14 | - +- i386 | libtango7-dev | 7.2.6+dfsg-14 | - +- i386 | libtaningia-dev | 0.2.2-1 | - +- i386 | libtaningia0 | 0.2.2-1 | - +- i386 | libtar-dev | 1.2.16-1+deb7u1 | - +- i386 | libtar0 | 1.2.16-1+deb7u1 | - +- i386 | libtarantool-dev | 1.4.6+20120629+2158-1 | - +- i386 | libtarantool1 | 1.4.6+20120629+2158-1 | - +- i386 | libtarantool1-dbg | 1.4.6+20120629+2158-1 | - +- i386 | libtarantoolnet1 | 1.4.6+20120629+2158-1 | - +- i386 | libtarantoolnet1-dbg | 1.4.6+20120629+2158-1 | - +- i386 | libtarantoolrpl1 | 1.4.6+20120629+2158-1 | - +- i386 | libtarantoolrpl1-dbg | 1.4.6+20120629+2158-1 | - +- i386 | libtarantoolsql1 | 1.4.6+20120629+2158-1 | - +- i386 | libtarantoolsql1-dbg | 1.4.6+20120629+2158-1 | - +- i386 | libtaskmanager4abi3 | 4:4.8.4-6 | - +- i386 | libtasn1-3 | 2.13-2 | - +- i386 | libtasn1-3-bin | 2.13-2 | - +- i386 | libtasn1-3-dbg | 2.13-2 | - +- i386 | libtasn1-3-dev | 2.13-2 | - ++ i386 | libtasn1-6 | - | 3.4-2~bpo70+1 ++ i386 | libtasn1-6-dbg | - | 3.4-2~bpo70+1 ++ i386 | libtasn1-6-dev | - | 3.4-2~bpo70+1 ++ i386 | libtasn1-bin | - | 3.4-2~bpo70+1 +- i386 | libtbb-dev | 4.0+r233-1 | - +- i386 | libtbb2 | 4.0+r233-1 | - +- i386 | libtbb2-dbg | 4.0+r233-1 | - +- i386 | libtcc-dev | 0.9.26~git20120612.ad5f375-6 | - +- i386 | libtcd-dev | 2.2.2-1 | - +- i386 | libtcd0 | 2.2.2-1 | - +- i386 | libtcl-chiark-1 | 1.1.1 | - +- i386 | libtclap-dev | 1.2.1-1 | - +- i386 | libtclcl1 | 1.20-6 | - +- i386 | libtclcl1-dev | 1.20-6 | - +- i386 | libtcltk-ruby1.8 | 1.8.7.358-7.1+deb7u1 | - +- i386 | libtcltk-ruby1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- i386 | libtcmalloc-minimal4 | 2.0-2 | - +- i386 | libtcmalloc-minimal4-dbg | 2.0-2 | - +- i386 | libtcnative-1 | 1.1.24-1 | - ++ i386 | libtcplay | - | 1.1-1~bpo70+1 ++ i386 | libtcplay-dev | - | 1.1-1~bpo70+1 +! i386 | libtdb-dev | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtdb1 | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtdb1-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +- i386 | libtecla1 | 1.6.1-5 | - +- i386 | libtecla1-dev | 1.6.1-5 | - +- i386 | libteem-dev | 1.11.0~svn5226-1 | - +- i386 | libteem2 | 1.11.0~svn5226-1 | - +- i386 | libteem2-dbg | 1.11.0~svn5226-1 | - +- i386 | libtelepathy-farstream-dev | 0.4.0-3 | - +- i386 | libtelepathy-farstream2 | 0.4.0-3 | - +- i386 | libtelepathy-farstream2-dbg | 0.4.0-3 | - +- i386 | libtelepathy-glib-dev | 0.18.2-2 | - +- i386 | libtelepathy-glib0 | 0.18.2-2 | - +- i386 | libtelepathy-glib0-dbg | 0.18.2-2 | - +- i386 | libtelepathy-logger-dev | 0.4.0-1 | - +- i386 | libtelepathy-logger-qt4-1 | 0.4.0-1 | - +- i386 | libtelepathy-logger-qt4-1-dbg | 0.4.0-1 | - +- i386 | libtelepathy-logger-qt4-dev | 0.4.0-1 | - +- i386 | libtelepathy-logger2 | 0.4.0-1 | - +- i386 | libtelepathy-logger2-dbg | 0.4.0-1 | - +- i386 | libtelepathy-qt4-2 | 0.9.1-4 | - +- i386 | libtelepathy-qt4-dbg | 0.9.1-4 | - +- i386 | libtelepathy-qt4-dev | 0.9.1-4 | - +- i386 | libtelepathy-qt4-farstream2 | 0.9.1-4 | - +- i386 | libtelnet-dev | 0.21-1 | - +- i386 | libtelnet-utils | 0.21-1 | - +- i386 | libtelnet2 | 0.21-1 | - +- i386 | libtemplate-perl | 2.24-1 | - +- i386 | libtemplates-parser11.6 | 11.6-2 | - +- i386 | libtemplates-parser11.6-dbg | 11.6-2 | - +- i386 | libtemplates-parser11.6-dev | 11.6-2 | - +- i386 | libterm-readkey-perl | 2.30-4+b2 | - +- i386 | libterm-readline-gnu-perl | 1.20-2+b1 | - +- i386 | libterm-size-perl | 0.207-1 | - +- i386 | libterm-size-perl-perl | 0.029-1 | - +- i386 | libterm-slang-perl | 0.07-11+b3 | - +- i386 | libterralib | 4.0.0-4 | - +- i386 | libterralib-dev | 4.0.0-4 | - +- i386 | libtesseract-dev | 3.02.01-6 | - +- i386 | libtesseract3 | 3.02.01-6 | - +- i386 | libtest-leaktrace-perl | 0.14-1+b1 | - +- i386 | libtest-taint-perl | 1.04-1+b2 | - +! i386 | libtevent-dev | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libtevent0 | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libtevent0-dbg | 0.9.16-1 | 0.9.19-1~bpo70+1 +- i386 | libtext-aligner-perl | 0.07-1 | - +- i386 | libtext-aspell-perl | 0.09-1+b2 | - +- i386 | libtext-bibtex-perl | 0.63-1 | - +- i386 | libtext-bidi-perl | 0.03-5+b2 | - +- i386 | libtext-charwidth-perl | 0.04-7+b1 | - +- i386 | libtext-chasen-perl | 1.04-3+b5 | - +- i386 | libtext-csv-xs-perl | 0.90-1 | - +- i386 | libtext-hunspell-perl | 2.03-1 | - +- i386 | libtext-iconv-perl | 1.7-5 | - +- i386 | libtext-kakasi-perl | 2.04-1+b3 | - +- i386 | libtext-levenshteinxs-perl | 0.03-3+b2 | - +- i386 | libtext-markdown-discount-perl | 0.02-1 | - +- i386 | libtext-mecab-perl | 0.20013-2 | - +- i386 | libtext-ngram-perl | 0.14-1 | - +- i386 | libtext-ocaml | 0.5-1+b2 | - +- i386 | libtext-ocaml-dev | 0.5-1+b2 | - +- i386 | libtext-qrcode-perl | 0.01-1+b2 | - +- i386 | libtext-reflow-perl | 1.09-1+b2 | - +- i386 | libtext-table-perl | 1.123-1 | - +- i386 | libtext-unaccent-perl | 1.08-1+b3 | - +- i386 | libtext-vimcolor-perl | 0.11-2 | - +- i386 | libtextwrap-dev | 0.1-13 | - +- i386 | libtextwrap1 | 0.1-13 | - +- i386 | libtfbs-perl | 0.5.svn.20100421-1+b1 | - +- i386 | libthai-dev | 0.1.18-2 | - +- i386 | libthai0 | 0.1.18-2 | - +- i386 | libtheora-bin | 1.1.1+dfsg.1-3.1 | - +- i386 | libtheora-dbg | 1.1.1+dfsg.1-3.1 | - +- i386 | libtheora-dev | 1.1.1+dfsg.1-3.1 | - +- i386 | libtheora-ocaml | 0.3.0-1+b3 | - +- i386 | libtheora-ocaml-dev | 0.3.0-1+b3 | - +- i386 | libtheora0 | 1.1.1+dfsg.1-3.1 | - +- i386 | libthepeg-dev | 1.8.0-1 | - +- i386 | libthepeg15 | 1.8.0-1 | - +- i386 | libthreads-perl | 1.85-1+b1 | - +- i386 | libthreads-shared-perl | 1.40-1+b1 | - +- i386 | libthreadweaver4 | 4:4.8.4-4 | - +- i386 | libthunar-vfs-1-2 | 1.2.0-3+b1 | - +- i386 | libthunar-vfs-1-2-dbg | 1.2.0-3+b1 | - +- i386 | libthunar-vfs-1-dev | 1.2.0-3+b1 | - +- i386 | libthunarx-2-0 | 1.2.3-4+b1 | - +- i386 | libthunarx-2-dev | 1.2.3-4+b1 | - +- i386 | libticables-dev | 1.2.0-2 | - +- i386 | libticables2-1 | 1.2.0-2 | - +- i386 | libticalcs-dev | 1.1.3+dfsg1-1 | - +- i386 | libticalcs2-7 | 1.1.3+dfsg1-1 | - +- i386 | libticonv-dev | 1.1.0-1.1 | - +- i386 | libticonv3 | 1.1.0-1.1 | - +- i386 | libtidy-0.99-0 | 20091223cvs-1.2 | - +- i386 | libtidy-dev | 20091223cvs-1.2 | - +- i386 | libtiff-opengl | 4.0.2-6+deb7u2 | - +- i386 | libtiff-tools | 4.0.2-6+deb7u2 | - +- i386 | libtiff4 | 3.9.6-11 | - +- i386 | libtiff4-dev | 3.9.6-11 | - +- i386 | libtiff5 | 4.0.2-6+deb7u2 | - +- i386 | libtiff5-alt-dev | 4.0.2-6+deb7u2 | - +- i386 | libtiff5-dev | 4.0.2-6+deb7u2 | - +- i386 | libtiffxx0c2 | 3.9.6-11 | - +- i386 | libtiffxx5 | 4.0.2-6+deb7u2 | - +- i386 | libtifiles-dev | 1.1.1-1 | - +- i386 | libtifiles2-5 | 1.1.1-1 | - +- i386 | libtimbl3 | 6.4.2-1 | - +- i386 | libtimbl3-dev | 6.4.2-1 | - +- i386 | libtimblserver2 | 1.4-2 | - +- i386 | libtimblserver2-dev | 1.4-2 | - +- i386 | libtime-warp-perl | 0.5-1+b2 | - +- i386 | libtime-y2038-perl | 20100403-2+b2 | - +- i386 | libtinfo-dev | 5.9-10 | - +- i386 | libtinfo5 | 5.9-10 | - +- i386 | libtinfo5-dbg | 5.9-10 | - +- i386 | libtinyxml-dev | 2.6.2-1 | - +- i386 | libtinyxml2-0.0.0 | 0~git20120518.1.a2ae54e-1 | - +- i386 | libtinyxml2-dev | 0~git20120518.1.a2ae54e-1 | - +- i386 | libtinyxml2.6.2 | 2.6.2-1 | - +- i386 | libtinyxml2.6.2-dbg | 2.6.2-1 | - +- i386 | libtirpc-dev | 0.2.2-5 | - +- i386 | libtirpc1 | 0.2.2-5 | - +- i386 | libtk-img | 1:1.3-release-12 | - +- i386 | libtk-img-dev | 1:1.3-release-12 | - +- i386 | libtk-tablematrix-perl | 1.23-6+b1 | - +- i386 | libtntdb-dev | 1.2-2+b1 | - +- i386 | libtntdb3 | 1.2-2+b1 | - +- i386 | libtntnet-dev | 2.1-2+deb7u1 | - +- i386 | libtntnet10 | 2.1-2+deb7u1 | - +- i386 | libtododb-dev | 0.11-3 | - +- i386 | libtododb0 | 0.11-3 | - +- i386 | libtododb0-dbg | 0.11-3 | - +- i386 | libtogl1 | 1.7-12 | - +- i386 | libtokyocabinet-dbg | 1.4.47-2 | - +- i386 | libtokyocabinet-dev | 1.4.47-2 | - +- i386 | libtokyocabinet-perl | 1.34-1+b3 | - +- i386 | libtokyocabinet9 | 1.4.47-2 | - +- i386 | libtokyotyrant-dev | 1.1.40-4.1+b1 | - +- i386 | libtokyotyrant3 | 1.1.40-4.1+b1 | - +- i386 | libtolua++5.1-dev | 1.0.93-3 | - +- i386 | libtolua-dev | 5.2.0-1 | - +- i386 | libtomcatjss-java | 6.0.1-1 | - +- i386 | libtomcrypt-dev | 1.17-3.2 | - +- i386 | libtomcrypt0 | 1.17-3.2 | - +- i386 | libtommath-dev | 0.42.0-1 | - +- i386 | libtommath0 | 0.42.0-1 | - +- i386 | libtomoe-dev | 0.6.0-1.3 | - +- i386 | libtomoe0 | 0.6.0-1.3 | - +- i386 | libtomoyotools3 | 2.5.0-20120414-2 | - +- i386 | libtonezone-dev | 1:2.5.0.1-2 | - +- i386 | libtonezone2.0 | 1:2.5.0.1-2 | - +- i386 | libtool | 2.4.2-1.1 | - +- i386 | libtorch3-dev | 3.1-2.1 | - +- i386 | libtorch3c2 | 3.1-2.1 | - +- i386 | libtorque2 | 2.4.16+dfsg-1+deb7u2 | - +- i386 | libtorque2-dev | 2.4.16+dfsg-1+deb7u2 | - +- i386 | libtorrent-dev | 0.13.2-1 | - +- i386 | libtorrent-rasterbar-dbg | 0.15.10-1+b1 | - +- i386 | libtorrent-rasterbar-dev | 0.15.10-1+b1 | - +- i386 | libtorrent-rasterbar6 | 0.15.10-1+b1 | - +- i386 | libtorrent14 | 0.13.2-1 | - +- i386 | libtorture-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libtorture0 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | libtotem-dev | 3.0.1-8 | - +- i386 | libtotem-pg-dev | 1.4.2-3 | - +- i386 | libtotem-pg4 | 1.4.2-3 | - +- i386 | libtotem-plparser-dbg | 3.4.2-1 | - +- i386 | libtotem-plparser-dev | 3.4.2-1 | - +- i386 | libtotem-plparser17 | 3.4.2-1 | - +- i386 | libtotem0 | 3.0.1-8 | - +- i386 | libtowitoko-dev | 2.0.7-8.3 | - +- i386 | libtowitoko2 | 2.0.7-8.3 | - +- i386 | libtpl0 | 1.5-2 | - +- i386 | libtpm-unseal-dev | 1.3.7-1 | - +- i386 | libtpm-unseal1 | 1.3.7-1 | - +- i386 | libtqsllib1 | 2.2-5 | - +- i386 | libtrace-tools | 3.0.14-1 | - +- i386 | libtrace3 | 3.0.14-1 | - +- i386 | libtrace3-dev | 3.0.14-1 | - +- i386 | libtracker-extract-0.14-0 | 0.14.1-3 | - +- i386 | libtracker-extract-0.14-dev | 0.14.1-3 | - +- i386 | libtracker-miner-0.14-0 | 0.14.1-3 | - +- i386 | libtracker-miner-0.14-dev | 0.14.1-3 | - +- i386 | libtracker-sparql-0.14-0 | 0.14.1-3 | - +- i386 | libtracker-sparql-0.14-dev | 0.14.1-3 | - +- i386 | libtransitioner1 | 1.1.7-1 | - +- i386 | libtransitioner1-dev | 1.1.7-1 | - +- i386 | libtre-dev | 0.8.0-3 | - +- i386 | libtre5 | 0.8.0-3 | - +- i386 | libtreil-dev | 1.8-1.1 | - +- i386 | libtreil0 | 1.8-1.1 | - +- i386 | libtritonus-jni | 20070428-9 | - +- i386 | libtrue-perl | 0.18-1+b2 | - +- i386 | libtrycatch-perl | 1.003000-1+b1 | - +- i386 | libts-0.0-0 | 1.0-11 | - +- i386 | libts-0.0-0-dbg | 1.0-11 | - +- i386 | libts-bin | 1.0-11 | - +- i386 | libts-dev | 1.0-11 | - +- i386 | libtse3-0.3.1c2a | 0.3.1-4.3 | - +- i386 | libtse3-dev | 0.3.1-4.3 | - +- i386 | libtsk-dev | 3.2.3-2 | - +- i386 | libtsk3-3 | 3.2.3-2 | - +- i386 | libtsk3-3-dbg | 3.2.3-2 | - +- i386 | libtspi-dev | 0.3.9-3+wheezy1 | - +- i386 | libtspi1 | 0.3.9-3+wheezy1 | - +- i386 | libtulip-3.7 | 3.7.0dfsg-4 | - +- i386 | libtulip-dev | 3.7.0dfsg-4 | - +- i386 | libtulip-ogdf-3.7 | 3.7.0dfsg-4 | - +- i386 | libtulip-ogl-3.7 | 3.7.0dfsg-4 | - +- i386 | libtulip-qt4-3.7 | 3.7.0dfsg-4 | - +- i386 | libtumbler-1-0 | 0.1.25-1+b1 | - +- i386 | libtumbler-1-dbg | 0.1.25-1+b1 | - +- i386 | libtumbler-1-dev | 0.1.25-1+b1 | - +- i386 | libtuxcap-dev | 1.4.0.dfsg2-2.1 | - +- i386 | libtuxcap4.0 | 1.4.0.dfsg2-2.1 | - +- i386 | libtuxcap4.0-dbg | 1.4.0.dfsg2-2.1 | - +- i386 | libtwin-dev | 12.04.13.17.57-g130ee5f-2 | - +- i386 | libtwin0 | 12.04.13.17.57-g130ee5f-2 | - +- i386 | libtwofish-dev | 0.3-3 | - +- i386 | libtwofish0 | 0.3-3 | - +- i386 | libtwolame-dev | 0.3.13-1 | - +- i386 | libtwolame0 | 0.3.13-1 | - +- i386 | libtxc-dxtn-s2tc-bin | 0~git20110809-3 | - +- i386 | libtxc-dxtn-s2tc-dev | 0~git20110809-3 | - +- i386 | libtxc-dxtn-s2tc0 | 0~git20110809-3 | - +- i386 | libtype-conv-camlp4-dev | 3.0.4-1 | - +- i386 | libtyxml-ocaml | 2.1-1 | - +- i386 | libtyxml-ocaml-dev | 2.1-1 | - ++ i386 | libu1db-dev | - | 0.1.4-2~bpo70+1 ++ i386 | libu1db1 | - | 0.1.4-2~bpo70+1 +- i386 | libuchardet-dev | 0.0.1-1 | - +- i386 | libuchardet0 | 0.0.1-1 | - +- i386 | libucimf-dev | 2.3.8-4 | - +- i386 | libucimf0 | 2.3.8-4 | - +- i386 | libucl-dev | 1.03-5 | - +- i386 | libucl1 | 1.03-5 | - +- i386 | libuclmmbase1 | 1.2.16.0-1 | - +- i386 | libuclmmbase1-dev | 1.2.16.0-1 | - +- i386 | libucommon-dev | 5.2.2-4 | - +- i386 | libucommon5 | 5.2.2-4 | - +- i386 | libucommon5-dbg | 5.2.2-4 | - +- i386 | libucto1 | 0.5.2-2 | - +- i386 | libucto1-dev | 0.5.2-2 | - +- i386 | libudev-dev | 175-7.2 | - +- i386 | libudev0 | 175-7.2 | - +- i386 | libudf-dev | 0.83-4 | - +- i386 | libudf0 | 0.83-4 | - +- i386 | libudp-tcl | 1.0.8-6 | - +- i386 | libudt-dev | 4.10+dfsg-1 | - +- i386 | libudt0 | 4.10+dfsg-1 | - +- i386 | libudunits2-0 | 2.1.23-3 | - +- i386 | libudunits2-dev | 2.1.23-3 | - +! i386 | libuhd-dev | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | libuhd003 | 3.4.2-1 | 3.5.5-1~bpo70+1 +- i386 | libuim-custom2 | 1:1.8.1-4 | - +- i386 | libuim-data | 1:1.8.1-4 | - +- i386 | libuim-dev | 1:1.8.1-4 | - +- i386 | libuim-scm0 | 1:1.8.1-4 | - +- i386 | libuim8 | 1:1.8.1-4 | - +- i386 | libumad2sim0 | 0.5-1.1 | - +- i386 | libumfpack5.4.0 | 1:3.4.0-3 | - +- i386 | libumlib-dev | 0.8.2-1 | - +- i386 | libumlib0 | 0.8.2-1 | - +- i386 | libunac1 | 1.8.0-6 | - +- i386 | libunac1-dev | 1.8.0-6 | - +! i386 | libunbound-dev | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | libunbound2 | 1.4.17-3 | 1.4.21-1~bpo70+1 +- i386 | libunicap2 | 0.9.12-2 | - +- i386 | libunicap2-dev | 0.9.12-2 | - +- i386 | libunicode-collate-perl | 0.89-1 | - +- i386 | libunicode-japanese-perl | 0.47-1+b2 | - +- i386 | libunicode-linebreak-perl | 0.0.20120401-1 | - +- i386 | libunicode-map-perl | 0.112-10+b3 | - +- i386 | libunicode-map8-perl | 0.13+dfsg-3+b2 | - +- i386 | libunicode-string-perl | 2.09-5 | - +- i386 | libuniconf4.6 | 4.6.1-5 | - +- i386 | libuninameslist-dev | 0.0.20091231-1.1 | - +- i386 | libuninameslist0 | 0.0.20091231-1.1 | - +- i386 | libuninum-dev | 2.7-1.1 | - +- i386 | libuninum5 | 2.7-1.1 | - +- i386 | libunique-1.0-0 | 1.1.6-4 | - +- i386 | libunique-3.0-0 | 3.0.2-1 | - +- i386 | libunique-3.0-dev | 3.0.2-1 | - +- i386 | libunique-dev | 1.1.6-4 | - +- i386 | libunistring-dev | 0.9.3-5 | - +- i386 | libunistring0 | 0.9.3-5 | - +- i386 | libunittest++-dev | 1.4.0-3 | - +- i386 | libunix-mknod-perl | 0.04-1+b1 | - +- i386 | libunix-syslog-perl | 1.1-2+b2 | - +- i386 | libunixsocket-java | 0.7.3-1 | - +- i386 | libunshield-dev | 0.6-3 | - +- i386 | libunshield0 | 0.6-3 | - +- i386 | libunwind-setjmp0 | 0.99-0.3 | - +- i386 | libunwind-setjmp0-dev | 0.99-0.3 | - +- i386 | libunwind7 | 0.99-0.3 | - +- i386 | libunwind7-dev | 0.99-0.3 | - +- i386 | libupnp4 | 1.8.0~svn20100507-1.2 | - +- i386 | libupnp4-dbg | 1.8.0~svn20100507-1.2 | - +- i386 | libupnp4-dev | 1.8.0~svn20100507-1.2 | - +- i386 | libupnp6 | 1:1.6.17-1.2 | - +- i386 | libupnp6-dbg | 1:1.6.17-1.2 | - +- i386 | libupnp6-dev | 1:1.6.17-1.2 | - +- i386 | libupower-glib-dev | 0.9.17-1 | - +- i386 | libupower-glib1 | 0.9.17-1 | - +- i386 | libupsclient1 | 2.6.4-2.3+deb7u1 | - +- i386 | libupsclient1-dev | 2.6.4-2.3+deb7u1 | - +- i386 | libupse-dev | 1.0.0-1 | - +- i386 | libupse2 | 1.0.0-1 | - +- i386 | libuptimed-dev | 1:0.3.17-3.1 | - +- i386 | libuptimed0 | 1:0.3.17-3.1 | - +- i386 | liburcu-dev | 0.6.7-2 | - +- i386 | liburcu1 | 0.6.7-2 | - +- i386 | liburfkill-glib-dev | 0.3.0-1 | - +- i386 | liburfkill-glib0 | 0.3.0-1 | - +- i386 | liburfkill-glib0-dbg | 0.3.0-1 | - +- i386 | liburg0 | 0.8.12-4 | - +- i386 | liburg0-dev | 0.8.12-4 | - +- i386 | liburiparser-dev | 0.7.5-1 | - +- i386 | liburiparser1 | 0.7.5-1 | - +- i386 | libusb++-0.1-4c2 | 2:0.1.12-20+nmu1 | - +- i386 | libusb++-dev | 2:0.1.12-20+nmu1 | - +- i386 | libusb-0.1-4 | 2:0.1.12-20+nmu1 | - +! i386 | libusb-1.0-0 | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 ++ i386 | libusb-1.0-0-dbg | - | 2:1.0.17-1~bpo70+1 +! i386 | libusb-1.0-0-dev | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +- i386 | libusb-dev | 2:0.1.12-20+nmu1 | - +- i386 | libusb-ocaml | 1.2.0-2+b7 | - +- i386 | libusb-ocaml-dev | 1.2.0-2+b7 | - +! i386 | libusbip-dev | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +- i386 | libusbmuxd-dev | 1.0.7-2 | - +- i386 | libusbmuxd1 | 1.0.7-2 | - +- i386 | libusbmuxd1-dbg | 1.0.7-2 | - +- i386 | libusbprog-dev | 0.2.0-2 | - +- i386 | libusbprog0 | 0.2.0-2 | - +! i386 | libusbredirhost-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libusbredirhost1 | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libusbredirparser-dev | 0.4.3-2 | 0.6-2~bpo70+1 +- i386 | libusbredirparser0 | 0.4.3-2 | - ++ i386 | libusbredirparser1 | - | 0.6-2~bpo70+1 +- i386 | libusbtc08-1 | 1.7.2-1 | - +- i386 | libusbtc08-dev | 1.7.2-1 | - +- i386 | libuser | 1:0.56.9.dfsg.1-1.2 | - +- i386 | libuser1 | 1:0.56.9.dfsg.1-1.2 | - +- i386 | libuser1-dev | 1:0.56.9.dfsg.1-1.2 | - +- i386 | libust-dev | 2.0.4-1 | - +- i386 | libust0 | 2.0.4-1 | - +- i386 | libustr-1.0-1 | 1.0.4-3 | - +- i386 | libustr-1.0-1-dbg | 1.0.4-3 | - +- i386 | libustr-dev | 1.0.4-3 | - +- i386 | libutempter-dev | 1.1.5-4 | - +- i386 | libutempter0 | 1.1.5-4 | - +- i386 | libuu-dev | 0.5.20-3.3 | - +- i386 | libuu0 | 0.5.20-3.3 | - +- i386 | libuuid-perl | 0.02-5 | - +- i386 | libuuid1 | 2.20.1-5.3 | - +- i386 | libuuidm-ocaml-dev | 0.9.4-1 | - +- i386 | libv4l-0 | 0.8.8-3 | - +- i386 | libv4l-dev | 0.8.8-3 | - +- i386 | libv4lconvert0 | 0.8.8-3 | - ++ i386 | libv8-3.14-dbg | - | 3.14.5.8-4~bpo7+1 ++ i386 | libv8-3.14-dev | - | 3.14.5.8-4~bpo7+1 ++ i386 | libv8-3.14.5 | - | 3.14.5.8-4~bpo7+1 +- i386 | libv8-3.8.9.20 | 3.8.9.20-2 | - +- i386 | libv8-dbg | 3.8.9.20-2 | - +! i386 | libv8-dev | 3.8.9.20-2 | 3.14.5.8-4~bpo7+1 +- i386 | libv8-i18n-dev | 0~0.svn7-3 | - +- i386 | libv8-i18n0.0.0 | 0~0.svn7-3 | - +- i386 | libv8-i18n0.0.0-dbg | 0~0.svn7-3 | - +- i386 | libva-dev | 1.0.15-4 | - +- i386 | libva-egl1 | 1.0.15-4 | - +- i386 | libva-glx1 | 1.0.15-4 | - +- i386 | libva-tpi1 | 1.0.15-4 | - +- i386 | libva-x11-1 | 1.0.15-4 | - +- i386 | libva1 | 1.0.15-4 | - +- i386 | libvala-0.14-0 | 0.14.2-2 | - +- i386 | libvala-0.14-0-dbg | 0.14.2-2 | - +- i386 | libvala-0.14-dev | 0.14.2-2 | - +- i386 | libvala-0.16-0 | 0.16.1-2 | - +- i386 | libvala-0.16-0-dbg | 0.16.1-2 | - +- i386 | libvala-0.16-dev | 0.16.1-2 | - +- i386 | libvaladoc-dev | 0.3.2~git20120227-1 | - +- i386 | libvaladoc1 | 0.3.2~git20120227-1 | - +- i386 | libvalhalla-bin | 2.0.0-4+b1 | - +- i386 | libvalhalla-dev | 2.0.0-4+b1 | - +- i386 | libvalhalla2 | 2.0.0-4+b1 | - +- i386 | libvalhalla2-dbg | 2.0.0-4+b1 | - +- i386 | libvamp-hostsdk3 | 2.1-1 | - +- i386 | libvamp-sdk2 | 2.1-1 | - +- i386 | libvanessa-adt-dev | 0.0.9-1 | - +- i386 | libvanessa-adt1 | 0.0.9-1 | - +- i386 | libvanessa-logger-dev | 0.0.10-1.1 | - +- i386 | libvanessa-logger-sample | 0.0.10-1.1 | - +- i386 | libvanessa-logger0 | 0.0.10-1.1 | - +- i386 | libvanessa-socket-dev | 0.0.12-1 | - +- i386 | libvanessa-socket-pipe | 0.0.12-1 | - +- i386 | libvanessa-socket2 | 0.0.12-1 | - +- i386 | libvarconf-1.0-7 | 0.6.7-2 | - +- i386 | libvarconf-1.0-7-dbg | 0.6.7-2 | - +- i386 | libvarconf-dev | 0.6.7-2 | - +- i386 | libvariable-magic-perl | 0.50-1 | - +- i386 | libvarnishapi-dev | 3.0.2-2+deb7u1 | - +- i386 | libvarnishapi1 | 3.0.2-2+deb7u1 | - +- i386 | libvbr-dev | 2.6.8-4 | - +- i386 | libvbr2 | 2.6.8-4 | - +- i386 | libvc-dev | 003.dfsg.1-12 | - +- i386 | libvc0 | 003.dfsg.1-12 | - +- i386 | libvcdinfo-dev | 0.7.24+dfsg-0.1 | - +- i386 | libvcdinfo0 | 0.7.24+dfsg-0.1 | - +- i386 | libvde-dev | 2.3.2-4 | - +- i386 | libvde0 | 2.3.2-4 | - +- i386 | libvdeplug-dev | 2.3.2-4 | - +- i386 | libvdeplug2 | 2.3.2-4 | - +- i386 | libvdk2-2c2 | 2.4.0-5.3 | - +- i386 | libvdk2-dbg | 2.4.0-5.3 | - +- i386 | libvdk2-dev | 2.4.0-5.3 | - +- i386 | libvdkbuilder2-dev | 2.4.0-4.3 | - +- i386 | libvdkbuilder2c2 | 2.4.0-4.3 | - +- i386 | libvdkxdb2-2c2 | 2.4.0-3.4 | - +- i386 | libvdkxdb2-dev | 2.4.0-3.4 | - +- i386 | libvdpau-dev | 0.4.1-7 | - +- i386 | libvdpau1 | 0.4.1-7 | - +- i386 | libventrilo-dev | 1.2.4-1 | - +- i386 | libventrilo3-0 | 1.2.4-1 | - +- i386 | libverbiste-0.1-0 | 0.1.34-1 | - +- i386 | libverbiste-dev | 0.1.34-1 | - +- i386 | libverilog-perl | 3.315-1 | - +- i386 | libversion-perl | 1:0.9900-1 | - +- i386 | libverto-dev | 0.2.2-1 | - +- i386 | libverto-glib1 | 0.2.2-1 | - +- i386 | libverto-libev1 | 0.2.2-1 | - +- i386 | libverto1 | 0.2.2-1 | - +- i386 | libvformat-dev | 1.13-10 | - +- i386 | libvformat0 | 1.13-10 | - +- i386 | libvhd0 | 2.0.90-1 | - +- i386 | libvhdio-2.0.90 | 2.0.90-1 | - +- i386 | libvia-dev | 2.0.4-2 | - +- i386 | libvia2 | 2.0.4-2 | - +- i386 | libvibrant6-dev | 6.1.20120620-2 | - +- i386 | libvibrant6a | 6.1.20120620-2 | - +- i386 | libvibrant6a-dbg | 6.1.20120620-2 | - +- i386 | libvideo-capture-v4l-perl | 0.902-3+b2 | - +- i386 | libvideo-ivtv-perl | 0.13-7 | - +- i386 | libview-dev | 0.6.6-2.1 | - +- i386 | libview2 | 0.6.6-2.1 | - +- i386 | libview2-dbg | 0.6.6-2.1 | - +- i386 | libvigraimpex-dev | 1.7.1+dfsg1-3 | - +- i386 | libvigraimpex3 | 1.7.1+dfsg1-3 | - +- i386 | libvips-dev | 7.28.5-1+deb7u1 | - +- i386 | libvips-tools | 7.28.5-1+deb7u1 | - +- i386 | libvips15 | 7.28.5-1+deb7u1 | - +! i386 | libvirt-bin | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt-dev | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +- i386 | libvirt-glib-1.0-0 | 0.0.8-1 | - +- i386 | libvirt-glib-1.0-0-dbg | 0.0.8-1 | - +- i386 | libvirt-glib-1.0-dev | 0.0.8-1 | - +- i386 | libvirt-ocaml | 0.6.1.2-1 | - +- i386 | libvirt-ocaml-dev | 0.6.1.2-1 | - ++ i386 | libvirt-sanlock | - | 1.2.1-1~bpo70+1 +! i386 | libvirt0 | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt0-dbg | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +- i386 | libvirtodbc0 | 6.1.4+dfsg1-7 | - +- i386 | libvirtuoso5.5-cil | 6.1.4+dfsg1-7 | - +- i386 | libvisca-dev | 1.0.1-1 | - +- i386 | libvisca0 | 1.0.1-1 | - +- i386 | libvisio-0.0-0 | 0.0.17-1 | - +- i386 | libvisio-dev | 0.0.17-1 | - +- i386 | libvisio-tools | 0.0.17-1 | - +- i386 | libvisual-0.4-0 | 0.4.0-5 | - +- i386 | libvisual-0.4-dev | 0.4.0-5 | - +- i386 | libvisual-0.4-plugins | 0.4.0.dfsg.1-7 | - +- i386 | libvisual-projectm | 2.1.0+dfsg-1 | - +! i386 | libvlc-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvlc5 | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvlccore-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +- i386 | libvlccore5 | 2.0.3-5 | - ++ i386 | libvlccore7 | - | 2.1.2-2~bpo70+2 +- i386 | libvncserver-config | 0.9.9+dfsg-1 | - +- i386 | libvncserver-dev | 0.9.9+dfsg-1 | - +- i386 | libvncserver0 | 0.9.9+dfsg-1 | - +- i386 | libvncserver0-dbg | 0.9.9+dfsg-1 | - +- i386 | libvo-aacenc-dev | 0.1.2-1 | - +- i386 | libvo-aacenc0 | 0.1.2-1 | - +- i386 | libvo-amrwbenc-dev | 0.1.2-1 | - +- i386 | libvo-amrwbenc0 | 0.1.2-1 | - +- i386 | libvoaacenc-ocaml | 0.1.0-1+b1 | - +- i386 | libvoaacenc-ocaml-dev | 0.1.0-1+b1 | - +- i386 | libvoikko-dev | 3.5-1.1 | - +- i386 | libvoikko1 | 3.5-1.1 | - +! i386 | libvolk0.0.0 | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +- i386 | libvolpack1 | 1.0b3-3 | - +- i386 | libvolpack1-dev | 1.0b3-3 | - +- i386 | libvomsapi1 | 2.0.8-1 | - +- i386 | libvorbis-dbg | 1.3.2-1.3 | - +- i386 | libvorbis-dev | 1.3.2-1.3 | - +- i386 | libvorbis-ocaml | 0.6.1-1+b1 | - +- i386 | libvorbis-ocaml-dev | 0.6.1-1+b1 | - +- i386 | libvorbis0a | 1.3.2-1.3 | - +- i386 | libvorbisenc2 | 1.3.2-1.3 | - +- i386 | libvorbisfile-ruby | 0.2-8.1 | - +- i386 | libvorbisfile-ruby1.8 | 0.2-8.1 | - +- i386 | libvorbisfile3 | 1.3.2-1.3 | - +- i386 | libvorbisidec-dev | 1.0.2+svn18153-0.2 | - +- i386 | libvorbisidec1 | 1.0.2+svn18153-0.2 | - +- i386 | libvotequorum-dev | 1.4.2-3 | - +- i386 | libvotequorum4 | 1.4.2-3 | - +- i386 | libvpb-dbg | 4.2.55-1 | - +- i386 | libvpb-dev | 4.2.55-1 | - +- i386 | libvpb0 | 4.2.55-1 | - +- i386 | libvpx-dev | 1.1.0-1 | - +- i386 | libvpx1 | 1.1.0-1 | - +- i386 | libvpx1-dbg | 1.1.0-1 | - +- i386 | libvrb0 | 0.5.1-5.1 | - +- i386 | libvrb0-dev | 0.5.1-5.1 | - +- i386 | libvte-2.90-9 | 1:0.32.2-1 | - +- i386 | libvte-2.90-dev | 1:0.32.2-1 | - +- i386 | libvte-dev | 1:0.28.2-5 | - +- i386 | libvte0.16-cil | 2.26.0-8 | - +- i386 | libvte0.16-cil-dev | 2.26.0-8 | - +- i386 | libvte9 | 1:0.28.2-5 | - +- i386 | libvtk-java | 5.8.0-13+b1 | - +- i386 | libvtk5-dev | 5.8.0-13+b1 | - +- i386 | libvtk5-qt4-dev | 5.8.0-13+b1 | - +- i386 | libvtk5.8 | 5.8.0-13+b1 | - +- i386 | libvtk5.8-qt4 | 5.8.0-13+b1 | - +- i386 | libvtkedge | 0.2.0~20110819-2 | - +- i386 | libvtkedge-dev | 0.2.0~20110819-2 | - +- i386 | libvtkgdcm-cil | 2.2.0-14.1 | - +- i386 | libvtkgdcm-java | 2.2.0-14.1 | - +- i386 | libvtkgdcm-tools | 2.2.0-14.1 | - +- i386 | libvtkgdcm2-dev | 2.2.0-14.1 | - +- i386 | libvtkgdcm2.2 | 2.2.0-14.1 | - +- i386 | libvxl1-dev | 1.14.0-18 | - +- i386 | libvxl1.14 | 1.14.0-18 | - +- i386 | libwacom-dev | 0.6-1 | - +- i386 | libwacom2 | 0.6-1 | - +- i386 | libwacom2-dbg | 0.6-1 | - +- i386 | libwaei-dev | 3.4.3-1 | - +- i386 | libwaei2 | 3.4.3-1 | - +- i386 | libwaili-dev | 19990723-20 | - +- i386 | libwaili1c2 | 19990723-20 | - +- i386 | libwant-perl | 0.21-1 | - +- i386 | libwavefront-standalone3.0 | 3.0.2+dfsg-4+b1 | - +- i386 | libwavefront-standalone3.0-dev | 3.0.2+dfsg-4+b1 | - +- i386 | libwavpack-dev | 4.60.1-3 | - +- i386 | libwavpack1 | 4.60.1-3 | - +- i386 | libwayland-dev | 0.85.0-2 | - +- i386 | libwayland0 | 0.85.0-2 | - +- i386 | libwayland0-dbg | 0.85.0-2 | - +! i386 | libwbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libwbclient0 | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | libwbxml2-0 | 0.10.7-1 | - +- i386 | libwbxml2-0-dbg | 0.10.7-1 | - +- i386 | libwbxml2-dev | 0.10.7-1 | - +- i386 | libwbxml2-utils | 0.10.7-1 | - +- i386 | libwcs4 | 4.13.4-1 | - +- i386 | libwcstools-dev | 3.8.5-1 | - +- i386 | libwcstools0 | 3.8.5-1 | - +- i386 | libweather-ion6 | 4:4.8.4-6 | - +- i386 | libwebauth-dev | 4.1.1-2 | - +- i386 | libwebauth-perl | 4.1.1-2 | - +- i386 | libwebauth6 | 4.1.1-2 | - +- i386 | libwebcam0 | 0.2.2-1 | - +- i386 | libwebcam0-dbg | 0.2.2-1 | - +- i386 | libwebcam0-dev | 0.2.2-1 | - +- i386 | libwebkit-dev | 1.8.1-3.4 | - +- i386 | libwebkitgtk-1.0-0 | 1.8.1-3.4 | - +- i386 | libwebkitgtk-1.0-0-dbg | 1.8.1-3.4 | - +- i386 | libwebkitgtk-3.0-0 | 1.8.1-3.4 | - +- i386 | libwebkitgtk-3.0-0-dbg | 1.8.1-3.4 | - +- i386 | libwebkitgtk-3.0-dev | 1.8.1-3.4 | - +- i386 | libwebkitgtk-dev | 1.8.1-3.4 | - +- i386 | libwebp-dev | 0.1.3-3+nmu1 | - +- i386 | libwebp2 | 0.1.3-3+nmu1 | - +- i386 | libwebrtc-audio-processing-0 | 0.1-2 | - +- i386 | libwebrtc-audio-processing-dev | 0.1-2 | - +- i386 | libweed-dbg | 1.6.2~ds1-2 | - +- i386 | libweed-dev | 1.6.2~ds1-2 | - +- i386 | libweed0 | 1.6.2~ds1-2 | - +- i386 | libwfmath-0.3-6 | 0.3.12-3 | - +- i386 | libwfmath-0.3-6-dbg | 0.3.12-3 | - +- i386 | libwfmath-0.3-dev | 0.3.12-3 | - +- i386 | libwfut-0.2-1 | 0.2.1-2 | - +- i386 | libwfut-0.2-1-dbg | 0.2.1-2 | - +- i386 | libwfut-0.2-dev | 0.2.1-2 | - +- i386 | libwibble-dev | 0.1.28-1.1 | - +- i386 | libwildmidi-dev | 0.2.3.4-2.1 | - +- i386 | libwildmidi1 | 0.2.3.4-2.1 | - +! i386 | libwin-hivex-perl | 1.3.6-2 | 1.3.9-1~bpo70+1 +- i386 | libwind0-heimdal | 1.6~git20120403+dfsg1-2 | - +- i386 | libwine | 1.4.1-4 | - +- i386 | libwine-alsa | 1.4.1-4 | - +- i386 | libwine-bin | 1.4.1-4 | - +- i386 | libwine-capi | 1.4.1-4 | - +- i386 | libwine-cms | 1.4.1-4 | - +- i386 | libwine-dbg | 1.4.1-4 | - +- i386 | libwine-dev | 1.4.1-4 | - +- i386 | libwine-gl | 1.4.1-4 | - +- i386 | libwine-gphoto2 | 1.4.1-4 | - +- i386 | libwine-ldap | 1.4.1-4 | - +- i386 | libwine-openal | 1.4.1-4 | - +- i386 | libwine-oss | 1.4.1-4 | - +- i386 | libwine-print | 1.4.1-4 | - +- i386 | libwine-sane | 1.4.1-4 | - +- i386 | libwings-dev | 0.95.3-2 | - +- i386 | libwings2 | 0.95.3-2 | - +! i386 | libwireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- i386 | libwireshark2 | 1.8.2-5wheezy9 | - ++ i386 | libwireshark3 | - | 1.10.5-1~bpo70+1 +! i386 | libwiretap-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- i386 | libwiretap2 | 1.8.2-5wheezy9 | - ++ i386 | libwiretap3 | - | 1.10.5-1~bpo70+1 +- i386 | libwmf-bin | 0.2.8.4-10.3 | - +- i386 | libwmf-dev | 0.2.8.4-10.3 | - +- i386 | libwmf0.2-7 | 0.2.8.4-10.3 | - +- i386 | libwnck-3-0 | 3.4.2-1 | - +- i386 | libwnck-3-dev | 3.4.2-1 | - +- i386 | libwnck-dev | 2.30.7-1 | - +- i386 | libwnck1.0-cil-dev | 2.26.0-8 | - +- i386 | libwnck2.20-cil | 2.26.0-8 | - +- i386 | libwnck22 | 2.30.7-1 | - +- i386 | libwnn-dev | 1.1.1~a021+cvs20100325-6 | - +- i386 | libwnn0 | 1.1.1~a021+cvs20100325-6 | - +- i386 | libwnn6-1 | 1.0.0-14.2+b1 | - +- i386 | libwnn6-dev | 1.0.0-14.2+b1 | - +- i386 | libwpd-0.9-9 | 0.9.4-3 | - +- i386 | libwpd-dev | 0.9.4-3 | - +- i386 | libwpd-tools | 0.9.4-3 | - +- i386 | libwpg-0.2-2 | 0.2.1-1 | - +- i386 | libwpg-dev | 0.2.1-1 | - +- i386 | libwpg-tools | 0.2.1-1 | - +- i386 | libwps-0.2-2 | 0.2.7-1 | - +- i386 | libwps-dev | 0.2.7-1 | - +- i386 | libwps-tools | 0.2.7-1 | - +- i386 | libwrap-ruby1.8 | 0.6-3 | - +- i386 | libwrap0 | 7.6.q-24 | - +- i386 | libwrap0-dev | 7.6.q-24 | - +- i386 | libwraster3 | 0.95.3-2 | - +- i386 | libwraster3-dev | 0.95.3-2 | - +- i386 | libwreport-dev | 2.4-1 | - +- i386 | libwreport2 | 2.4-1 | - +! i386 | libwsutil-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- i386 | libwsutil2 | 1.8.2-5wheezy9 | - ++ i386 | libwsutil3 | - | 1.10.5-1~bpo70+1 +- i386 | libwt-dbg | 3.2.1-2 | - +- i386 | libwt-dev | 3.2.1-2 | - +- i386 | libwt32 | 3.2.1-2 | - +- i386 | libwtdbo-dev | 3.2.1-2 | - +- i386 | libwtdbo32 | 3.2.1-2 | - +- i386 | libwtdbofirebird-dev | 3.2.1-2 | - +- i386 | libwtdbofirebird32 | 3.2.1-2 | - +- i386 | libwtdbopostgres-dev | 3.2.1-2 | - +- i386 | libwtdbopostgres32 | 3.2.1-2 | - +- i386 | libwtdbosqlite-dev | 3.2.1-2 | - +- i386 | libwtdbosqlite32 | 3.2.1-2 | - +- i386 | libwtext-dev | 3.2.1-2 | - +- i386 | libwtext32 | 3.2.1-2 | - +- i386 | libwtfcgi-dev | 3.2.1-2 | - +- i386 | libwtfcgi32 | 3.2.1-2 | - +- i386 | libwthttp-dev | 3.2.1-2 | - +- i386 | libwthttp32 | 3.2.1-2 | - +- i386 | libwttest-dev | 3.2.1-2 | - +- i386 | libwttest2 | 3.2.1-2 | - +- i386 | libwutil2 | 0.95.3-2 | - +- i386 | libwv-1.2-4 | 1.2.9-3 | - +- i386 | libwv-dev | 1.2.9-3 | - +- i386 | libwv2-4 | 0.4.2.dfsg.2-1~deb7u1 | - +- i386 | libwv2-dev | 0.4.2.dfsg.2-1~deb7u1 | - +- i386 | libwvstreams-dev | 4.6.1-5 | - +- i386 | libwvstreams4.6-base | 4.6.1-5 | - +- i386 | libwvstreams4.6-extras | 4.6.1-5 | - +- i386 | libwww-curl-perl | 4.15-1+b2 | - +- i386 | libwx-perl | 1:0.9909-1 | - +- i386 | libwx-scintilla-perl | 0.38-1 | - +- i386 | libwxbase2.8-0 | 2.8.12.1-12 | - +- i386 | libwxbase2.8-dbg | 2.8.12.1-12 | - +- i386 | libwxbase2.8-dev | 2.8.12.1-12 | - +- i386 | libwxgtk2.8-0 | 2.8.12.1-12 | - +- i386 | libwxgtk2.8-dbg | 2.8.12.1-12 | - +- i386 | libwxgtk2.8-dev | 2.8.12.1-12 | - +! i386 | libwxsmithlib-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libwxsmithlib0 | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libwxsmithlib0-dev | 10.05-2.1 | 13.12-1~bpo70+1 +- i386 | libwxsqlite3-2.8-0 | 3.0.0.1~dfsg0-2 | - +- i386 | libwxsqlite3-2.8-dev | 3.0.0.1~dfsg0-2 | - +- i386 | libwxsvg-dbg | 2:1.1.8~dfsg0-2 | - +- i386 | libwxsvg-dev | 2:1.1.8~dfsg0-2 | - +- i386 | libwxsvg0 | 2:1.1.8~dfsg0-2 | - +- i386 | libx11-6 | 2:1.5.0-1+deb7u1 | - +- i386 | libx11-6-dbg | 2:1.5.0-1+deb7u1 | - +- i386 | libx11-dev | 2:1.5.0-1+deb7u1 | - +- i386 | libx11-guitest-perl | 0.25-2 | - +- i386 | libx11-xcb-dev | 2:1.5.0-1+deb7u1 | - +- i386 | libx11-xcb1 | 2:1.5.0-1+deb7u1 | - +- i386 | libx11-xcb1-dbg | 2:1.5.0-1+deb7u1 | - +- i386 | libx264-123 | 2:0.123.2189+git35cf912-1 | - +- i386 | libx264-dev | 2:0.123.2189+git35cf912-1 | - +- i386 | libx52pro-dev | 0.1.1-2.1 | - +- i386 | libx52pro0 | 0.1.1-2.1 | - +- i386 | libx86-1 | 1.1+ds1-10 | - +- i386 | libx86-dbg | 1.1+ds1-10 | - +- i386 | libx86-dev | 1.1+ds1-10 | - +- i386 | libxalan110 | 1.10-6 | - +- i386 | libxalan110-dev | 1.10-6 | - +! i386 | libxapian-dev | 1.2.12-2 | 1.2.16-2~bpo70+1 +- i386 | libxapian-ruby1.8 | 1.2.12-2 | - +- i386 | libxapian-ruby1.9.1 | 1.2.12-2 | - +! i386 | libxapian22 | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxapian22-dbg | 1.2.12-2 | 1.2.16-2~bpo70+1 +- i386 | libxatracker-dev | 8.0.5-4+deb7u2 | - +- i386 | libxatracker1 | 8.0.5-4+deb7u2 | - +- i386 | libxatracker1-dbg | 8.0.5-4+deb7u2 | - +- i386 | libxau-dev | 1:1.0.7-1 | - +- i386 | libxau6 | 1:1.0.7-1 | - +- i386 | libxau6-dbg | 1:1.0.7-1 | - +- i386 | libxaw3dxft6 | 2.9.1.4-3+b2 | - +- i386 | libxaw7 | 2:1.0.10-2 | - +- i386 | libxaw7-dbg | 2:1.0.10-2 | - +- i386 | libxaw7-dev | 2:1.0.10-2 | - +- i386 | libxbae-dev | 4.60.4-3 | - +- i386 | libxbae4 | 4.60.4-3 | - +- i386 | libxbase2.0-0 | 2.0.0-8.5 | - +- i386 | libxbase2.0-bin | 2.0.0-8.5 | - +- i386 | libxbase2.0-dev | 2.0.0-8.5 | - +- i386 | libxcb-composite0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-composite0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-composite0-dev | 1.8.1-2+deb7u1 | - ++ i386 | libxcb-cursor-dev | - | 0.1.1-2~bpo70+1 ++ i386 | libxcb-cursor0 | - | 0.1.1-2~bpo70+1 +- i386 | libxcb-damage0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-damage0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-damage0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-dpms0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-dpms0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-dpms0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-dri2-0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-dri2-0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-dri2-0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-ewmh-dev | 0.3.9-2 | - +- i386 | libxcb-ewmh2 | 0.3.9-2 | - +- i386 | libxcb-glx0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-glx0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-glx0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-icccm4 | 0.3.9-2 | - +- i386 | libxcb-icccm4-dev | 0.3.9-2 | - +- i386 | libxcb-image0 | 0.3.9-1 | - +- i386 | libxcb-image0-dev | 0.3.9-1 | - +- i386 | libxcb-keysyms1 | 0.3.9-1 | - +- i386 | libxcb-keysyms1-dev | 0.3.9-1 | - +- i386 | libxcb-randr0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-randr0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-randr0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-record0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-record0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-record0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-render-util0 | 0.3.8-1.1 | - +- i386 | libxcb-render-util0-dev | 0.3.8-1.1 | - +- i386 | libxcb-render0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-render0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-render0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-res0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-res0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-res0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-screensaver0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-screensaver0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-screensaver0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-shape0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-shape0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-shape0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-shm0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-shm0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-shm0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-sync0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-sync0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-sync0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-util0 | 0.3.8-2 | - +- i386 | libxcb-util0-dev | 0.3.8-2 | - +- i386 | libxcb-xevie0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xevie0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xevie0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xf86dri0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xf86dri0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xf86dri0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xfixes0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xfixes0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xfixes0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xinerama0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xinerama0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xinerama0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xprint0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xprint0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xprint0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xtest0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xtest0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xtest0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xv0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xv0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xv0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xvmc0 | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xvmc0-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb-xvmc0-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcb1 | 1.8.1-2+deb7u1 | - +- i386 | libxcb1-dbg | 1.8.1-2+deb7u1 | - +- i386 | libxcb1-dev | 1.8.1-2+deb7u1 | - +- i386 | libxcomp-dev | 3.5.0.12-1+b1 | - +- i386 | libxcomp3 | 3.5.0.12-1+b1 | - +- i386 | libxcomposite-dev | 1:0.4.3-2 | - +- i386 | libxcomposite1 | 1:0.4.3-2 | - +- i386 | libxcomposite1-dbg | 1:0.4.3-2 | - +- i386 | libxcp-ocaml | 0.5.2-3+b1 | - +- i386 | libxcp-ocaml-dev | 0.5.2-3+b1 | - +- i386 | libxcrypt-dev | 1:2.4-3 | - +- i386 | libxcrypt1 | 1:2.4-3 | - +- i386 | libxcursor-dev | 1:1.1.13-1+deb7u1 | - +- i386 | libxcursor1 | 1:1.1.13-1+deb7u1 | - +- i386 | libxcursor1-dbg | 1:1.1.13-1+deb7u1 | - +- i386 | libxdamage-dev | 1:1.1.3-2 | - +- i386 | libxdamage1 | 1:1.1.3-2 | - +- i386 | libxdamage1-dbg | 1:1.1.3-2 | - +- i386 | libxdb-dev | 1.2.0-7.2 | - +- i386 | libxdb1 | 1.2.0-7.2 | - +- i386 | libxdelta2 | 1.1.3-9 | - +- i386 | libxdelta2-dev | 1.1.3-9 | - +- i386 | libxdffileio-dev | 0.3-1 | - +- i386 | libxdffileio0 | 0.3-1 | - +- i386 | libxdffileio0-dbg | 0.3-1 | - +- i386 | libxdg-basedir-dev | 1.1.1-2 | - +- i386 | libxdg-basedir1 | 1.1.1-2 | - +- i386 | libxdg-basedir1-dbg | 1.1.1-2 | - +- i386 | libxdmcp-dev | 1:1.1.1-1 | - +- i386 | libxdmcp6 | 1:1.1.1-1 | - +- i386 | libxdmcp6-dbg | 1:1.1.1-1 | - +- i386 | libxdmf-dev | 2.1.dfsg.1-5 | - +- i386 | libxdmf2 | 2.1.dfsg.1-5 | - +- i386 | libxdo-dev | 1:2.20100701.2961-3+deb7u3 | - +- i386 | libxdo2 | 1:2.20100701.2961-3+deb7u3 | - +- i386 | libxdot4 | 2.26.3-14+deb7u1 | - +- i386 | libxen-4.1 | 4.1.4-3+deb7u1 | - +- i386 | libxen-dev | 4.1.4-3+deb7u1 | - +- i386 | libxen-ocaml | 4.1.4-3+deb7u1 | - +- i386 | libxen-ocaml-dev | 4.1.4-3+deb7u1 | - +- i386 | libxenapi-ocaml-dev | 1.3.2-15 | - +- i386 | libxenomai-dev | 2.6.0-2 | - +- i386 | libxenomai1 | 2.6.0-2 | - +- i386 | libxenstore3.0 | 4.1.4-3+deb7u1 | - +- i386 | libxerces-c-dev | 3.1.1-3 | - +- i386 | libxerces-c-samples | 3.1.1-3 | - +- i386 | libxerces-c2-dev | 2.8.0+deb1-3 | - +- i386 | libxerces-c28 | 2.8.0+deb1-3 | - +- i386 | libxerces-c3.1 | 3.1.1-3 | - +- i386 | libxerces2-java-gcj | 2.11.0-6 | - +- i386 | libxext-dev | 2:1.3.1-2+deb7u1 | - +- i386 | libxext6 | 2:1.3.1-2+deb7u1 | - +- i386 | libxext6-dbg | 2:1.3.1-2+deb7u1 | - +- i386 | libxfce4menu-0.1-0 | 4.6.2-1 | - +- i386 | libxfce4menu-0.1-dbg | 4.6.2-1 | - +- i386 | libxfce4menu-0.1-dev | 4.6.2-1 | - +- i386 | libxfce4ui-1-0 | 4.8.1-1 | - +- i386 | libxfce4ui-1-dbg | 4.8.1-1 | - +- i386 | libxfce4ui-1-dev | 4.8.1-1 | - +- i386 | libxfce4util-bin | 4.8.2-1 | - +- i386 | libxfce4util-dev | 4.8.2-1 | - +- i386 | libxfce4util4 | 4.8.2-1 | - +- i386 | libxfce4util4-dbg | 4.8.2-1 | - +- i386 | libxfcegui4-4 | 4.8.1-5 | - +- i386 | libxfcegui4-4-dbg | 4.8.1-5 | - +- i386 | libxfcegui4-dev | 4.8.1-5 | - +- i386 | libxfconf-0-2 | 4.8.1-1 | - +- i386 | libxfconf-0-2-dbg | 4.8.1-1 | - +- i386 | libxfconf-0-dev | 4.8.1-1 | - +- i386 | libxfixes-dev | 1:5.0-4+deb7u1 | - +- i386 | libxfixes3 | 1:5.0-4+deb7u1 | - +- i386 | libxfixes3-dbg | 1:5.0-4+deb7u1 | - +- i386 | libxfont-dev | 1:1.4.5-3 | - +- i386 | libxfont1 | 1:1.4.5-3 | - +- i386 | libxfont1-dbg | 1:1.4.5-3 | - +- i386 | libxft-dev | 2.3.1-1 | - +- i386 | libxft2 | 2.3.1-1 | - +- i386 | libxft2-dbg | 2.3.1-1 | - +- i386 | libxi-dev | 2:1.6.1-1+deb7u1 | - +- i386 | libxi6 | 2:1.6.1-1+deb7u1 | - +- i386 | libxi6-dbg | 2:1.6.1-1+deb7u1 | - +- i386 | libxine-dev | 1.1.21-1+b1 | - +- i386 | libxine1 | 1.1.21-1+b1 | - +- i386 | libxine1-bin | 1.1.21-1+b1 | - +- i386 | libxine1-console | 1.1.21-1+b1 | - +- i386 | libxine1-dbg | 1.1.21-1+b1 | - +- i386 | libxine1-ffmpeg | 1.1.21-1+b1 | - +- i386 | libxine1-gnome | 1.1.21-1+b1 | - +- i386 | libxine1-misc-plugins | 1.1.21-1+b1 | - +- i386 | libxine1-x | 1.1.21-1+b1 | - +- i386 | libxine2 | 1.2.2-4 | - +- i386 | libxine2-bin | 1.2.2-4 | - +- i386 | libxine2-console | 1.2.2-4 | - +- i386 | libxine2-dbg | 1.2.2-4 | - +- i386 | libxine2-dev | 1.2.2-4 | - +- i386 | libxine2-ffmpeg | 1.2.2-4 | - +- i386 | libxine2-gnome | 1.2.2-4 | - +- i386 | libxine2-misc-plugins | 1.2.2-4 | - +- i386 | libxine2-vdr | 1.2.2-4 | - +- i386 | libxine2-x | 1.2.2-4 | - +- i386 | libxine2-xvdr | 1.0.7+cvs20120609.1902-1 | - +- i386 | libxineliboutput-fbfe | 1.0.7+cvs20120609.1902-1 | - +- i386 | libxineliboutput-sxfe | 1.0.7+cvs20120609.1902-1 | - +- i386 | libxinerama-dev | 2:1.1.2-1+deb7u1 | - +- i386 | libxinerama1 | 2:1.1.2-1+deb7u1 | - +- i386 | libxinerama1-dbg | 2:1.1.2-1+deb7u1 | - +- i386 | libxkbfile-dev | 1:1.0.8-1 | - +- i386 | libxkbfile1 | 1:1.0.8-1 | - +- i386 | libxkbfile1-dbg | 1:1.0.8-1 | - +- i386 | libxklavier-dev | 5.2.1-1 | - +- i386 | libxklavier16 | 5.2.1-1 | - +- i386 | libxml++2.6-2 | 2.34.2-1 | - +- i386 | libxml++2.6-dbg | 2.34.2-1 | - +- i386 | libxml++2.6-dev | 2.34.2-1 | - +- i386 | libxml-bare-perl | 0.47-1 | - +- i386 | libxml-commons-resolver1.1-java-gcj | 1.2-7 | - +- i386 | libxml-easy-perl | 0.009-1+b1 | - +- i386 | libxml-libxml-perl | 2.0001+dfsg-1 | - +- i386 | libxml-libxslt-perl | 1.77-1 | - +- i386 | libxml-light-ocaml | 2.2-15 | - +- i386 | libxml-light-ocaml-dev | 2.2-15 | - +- i386 | libxml-parser-perl | 2.41-1+b1 | - +- i386 | libxml-quote-perl | 1.02-2+b2 | - +- i386 | libxml-sax-expatxs-perl | 1.32-1+b2 | - +! i386 | libxml-security-c-dev | 1.6.1-5+deb7u2 | 1.7.2-2~bpo70+1 +- i386 | libxml-security-c16 | 1.6.1-5+deb7u2 | - ++ i386 | libxml-security-c17 | - | 1.7.2-2~bpo70+1 +- i386 | libxml-xerces-perl | 2.7.0-0+deb1-3 | - +- i386 | libxml2 | 2.8.0+dfsg1-7+nmu2 | - +- i386 | libxml2-dbg | 2.8.0+dfsg1-7+nmu2 | - +- i386 | libxml2-dev | 2.8.0+dfsg1-7+nmu2 | - +- i386 | libxml2-utils | 2.8.0+dfsg1-7+nmu2 | - +- i386 | libxml2-utils-dbg | 2.8.0+dfsg1-7+nmu2 | - +- i386 | libxmlada4.1 | 4.1-2 | - +- i386 | libxmlada4.1-dbg | 4.1-2 | - +- i386 | libxmlada4.1-dev | 4.1-2 | - +- i386 | libxmlezout-dbg | 1.06.1-5 | - +- i386 | libxmlezout1 | 1.06.1-5 | - +- i386 | libxmlezout2-dev | 1.06.1-5 | - +- i386 | libxmlm-ocaml-dev | 1.1.0-1 | - +- i386 | libxmlplaylist-ocaml-dev | 0.1.3-1+b2 | - +- i386 | libxmlrpc-c++4 | 1.16.33-3.2 | - +- i386 | libxmlrpc-c++4-dev | 1.16.33-3.2 | - +- i386 | libxmlrpc-core-c3 | 1.16.33-3.2 | - +- i386 | libxmlrpc-core-c3-dev | 1.16.33-3.2 | - +- i386 | libxmlrpc-epi-dev | 0.54.2-1 | - +- i386 | libxmlrpc-epi0 | 0.54.2-1 | - +- i386 | libxmlrpc-epi0-dbg | 0.54.2-1 | - +- i386 | libxmlrpc-light-ocaml-dev | 0.6.1-3+b5 | - +- i386 | libxmlsec1 | 1.2.18-2 | - +- i386 | libxmlsec1-dev | 1.2.18-2 | - +- i386 | libxmlsec1-gcrypt | 1.2.18-2 | - +- i386 | libxmlsec1-gnutls | 1.2.18-2 | - +- i386 | libxmlsec1-nss | 1.2.18-2 | - +- i386 | libxmlsec1-openssl | 1.2.18-2 | - +- i386 | libxmltok1 | 1.2-3 | - +- i386 | libxmltok1-dev | 1.2-3 | - +! i386 | libxmltooling-dev | 1.4.2-5 | 1.5.3-2~bpo70+1 +- i386 | libxmltooling5 | 1.4.2-5 | - ++ i386 | libxmltooling6 | - | 1.5.3-2~bpo70+1 +- i386 | libxmmsclient++-dev | 0.8+dfsg-4 | - +- i386 | libxmmsclient++-glib-dev | 0.8+dfsg-4 | - +- i386 | libxmmsclient++-glib1 | 0.8+dfsg-4 | - +- i386 | libxmmsclient++4 | 0.8+dfsg-4 | - +- i386 | libxmmsclient-dev | 0.8+dfsg-4 | - +- i386 | libxmmsclient-glib-dev | 0.8+dfsg-4 | - +- i386 | libxmmsclient-glib1 | 0.8+dfsg-4 | - +- i386 | libxmmsclient6 | 0.8+dfsg-4 | - +- i386 | libxmpi4 | 2.2.3b8-13 | - +- i386 | libxmpi4-dev | 2.2.3b8-13 | - +- i386 | libxmu-dev | 2:1.1.1-1 | - +- i386 | libxmu6 | 2:1.1.1-1 | - +- i386 | libxmu6-dbg | 2:1.1.1-1 | - +- i386 | libxmuu-dev | 2:1.1.1-1 | - +- i386 | libxmuu1 | 2:1.1.1-1 | - +- i386 | libxmuu1-dbg | 2:1.1.1-1 | - +- i386 | libxnee-dbg | 3.13-1 | - +- i386 | libxnee-dev | 3.13-1 | - +- i386 | libxnee0 | 3.13-1 | - +- i386 | libxneur | 0.15.0-1.1 | - +- i386 | libxneur-dev | 0.15.0-1.1 | - ++ i386 | libxnvctrl-dev | - | 319.72-1~bpo70+1 ++ i386 | libxnvctrl0 | - | 319.72-1~bpo70+1 +- i386 | libxosd-dev | 2.2.14-2 | - +- i386 | libxosd2 | 2.2.14-2 | - +- i386 | libxp-dev | 1:1.0.1-2+deb7u1 | - +- i386 | libxp6 | 1:1.0.1-2+deb7u1 | - +- i386 | libxp6-dbg | 1:1.0.1-2+deb7u1 | - +- i386 | libxpa-dev | 2.1.14-2 | - +- i386 | libxpa1 | 2.1.14-2 | - +- i386 | libxplc0.3.13 | 0.3.13-3 | - +- i386 | libxplc0.3.13-dev | 0.3.13-3 | - +- i386 | libxpm-dev | 1:3.5.10-1 | - +- i386 | libxpm4 | 1:3.5.10-1 | - +- i386 | libxpm4-dbg | 1:3.5.10-1 | - +- i386 | libxqdbm-dev | 1.8.78-2 | - +- i386 | libxqdbm3c2 | 1.8.78-2 | - +- i386 | libxqilla-dev | 2.3.0-1 | - +- i386 | libxqilla6 | 2.3.0-1 | - +- i386 | libxr1 | 1.0-2.1 | - +- i386 | libxr1-dbg | 1.0-2.1 | - +- i386 | libxr1-dev | 1.0-2.1 | - +- i386 | libxrandr-dev | 2:1.3.2-2+deb7u1 | - +- i386 | libxrandr2 | 2:1.3.2-2+deb7u1 | - +- i386 | libxrandr2-dbg | 2:1.3.2-2+deb7u1 | - +- i386 | libxrender-dev | 1:0.9.7-1+deb7u1 | - +- i386 | libxrender1 | 1:0.9.7-1+deb7u1 | - +- i386 | libxrender1-dbg | 1:0.9.7-1+deb7u1 | - +- i386 | libxres-dev | 2:1.0.6-1+deb7u1 | - +- i386 | libxres1 | 2:1.0.6-1+deb7u1 | - +- i386 | libxres1-dbg | 2:1.0.6-1+deb7u1 | - +- i386 | libxsettings-client-dev | 0.17-6 | - +- i386 | libxsettings-client0 | 0.17-6 | - +- i386 | libxsettings-client0-dbg | 0.17-6 | - +- i386 | libxsettings-dev | 0.11-3 | - +- i386 | libxsettings0 | 0.11-3 | - +- i386 | libxsettings0-dbg | 0.11-3 | - +- i386 | libxslt1-dbg | 1.1.26-14.1 | - +- i386 | libxslt1-dev | 1.1.26-14.1 | - +- i386 | libxslt1.1 | 1.1.26-14.1 | - +- i386 | libxss-dev | 1:1.2.2-1 | - +- i386 | libxss1 | 1:1.2.2-1 | - +- i386 | libxss1-dbg | 1:1.2.2-1 | - +- i386 | libxstr-ocaml-dev | 0.2.1-21+b3 | - +- i386 | libxt-dev | 1:1.1.3-1+deb7u1 | - +- i386 | libxt6 | 1:1.1.3-1+deb7u1 | - +- i386 | libxt6-dbg | 1:1.1.3-1+deb7u1 | - +- i386 | libxtst-dev | 2:1.2.1-1+deb7u1 | - +- i386 | libxtst6 | 2:1.2.1-1+deb7u1 | - +- i386 | libxtst6-dbg | 2:1.2.1-1+deb7u1 | - ++ i386 | libxtuplecommon-dev | - | 4.1.0-3~bpo70+1 ++ i386 | libxtuplecommon1 | - | 4.1.0-3~bpo70+1 +- i386 | libxv-dev | 2:1.0.7-1+deb7u1 | - +- i386 | libxv1 | 2:1.0.7-1+deb7u1 | - +- i386 | libxv1-dbg | 2:1.0.7-1+deb7u1 | - ++ i386 | libxvbaw-dev | - | 1:13.12-4~bpo70+1 +- i386 | libxvidcore-dev | 2:1.3.2-9 | - +- i386 | libxvidcore4 | 2:1.3.2-9 | - +- i386 | libxvmc-dev | 2:1.0.7-1+deb7u2 | - +- i386 | libxvmc1 | 2:1.0.7-1+deb7u2 | - +- i386 | libxvmc1-dbg | 2:1.0.7-1+deb7u2 | - +- i386 | libxxf86dga-dev | 2:1.1.3-2+deb7u1 | - +- i386 | libxxf86dga1 | 2:1.1.3-2+deb7u1 | - +- i386 | libxxf86dga1-dbg | 2:1.1.3-2+deb7u1 | - +- i386 | libxxf86vm-dev | 1:1.1.2-1+deb7u1 | - +- i386 | libxxf86vm1 | 1:1.1.2-1+deb7u1 | - +- i386 | libxxf86vm1-dbg | 1:1.1.2-1+deb7u1 | - +- i386 | libxy-bin | 0.8-1+b1 | - +- i386 | libxy-dev | 0.8-1+b1 | - +- i386 | libxy3 | 0.8-1+b1 | - ++ i386 | libyade | - | 1.05.0-2~bpo70+1 +- i386 | libyahoo2-11 | 1.0.1-1 | - +- i386 | libyahoo2-dev | 1.0.1-1 | - +- i386 | libyajl-dev | 2.0.4-2 | - +- i386 | libyajl2 | 2.0.4-2 | - +- i386 | libyajl2-dbg | 2.0.4-2 | - +- i386 | libyaml-0-2 | 0.1.4-2+deb7u2 | - +- i386 | libyaml-0-2-dbg | 0.1.4-2+deb7u2 | - +- i386 | libyaml-cpp-dev | 0.3.0-1 | - +- i386 | libyaml-cpp0.3 | 0.3.0-1 | - +- i386 | libyaml-dev | 0.1.4-2+deb7u2 | - +- i386 | libyaml-libyaml-perl | 0.38-3 | - +- i386 | libyaml-syck-perl | 1.20-1 | - ++ i386 | libyara-dev | - | 2.0.0-2~bpo70+1 ++ i386 | libyara2 | - | 2.0.0-2~bpo70+1 +- i386 | libyate4.1.0 | 4.1.0-1~dfsg-3 | - +- i386 | libyaz4 | 4.2.30-2 | - +- i386 | libyaz4-dev | 4.2.30-2 | - +- i386 | libyelp-dev | 3.4.2-1+b1 | - +- i386 | libyelp0 | 3.4.2-1+b1 | - +- i386 | libygl4 | 4.2e-4 | - +- i386 | libygl4-dev | 4.2e-4 | - +- i386 | libykclient-dev | 2.6-1 | - +- i386 | libykclient3 | 2.6-1 | - +- i386 | libykpers-1-1 | 1.7.0-1 | - +- i386 | libykpers-1-dev | 1.7.0-1 | - +- i386 | libyojson-ocaml | 1.0.3-1 | - +- i386 | libyojson-ocaml-dev | 1.0.3-1 | - +- i386 | libytnef0 | 1.5-4 | - +- i386 | libytnef0-dev | 1.5-4 | - +- i386 | libyubikey-dev | 1.8-1 | - +- i386 | libyubikey0 | 1.8-1 | - +- i386 | libz80ex-dev | 1.1.19-3 | - +- i386 | libz80ex1 | 1.1.19-3 | - +- i386 | libzarith-ocaml | 1.1-2 | - +- i386 | libzarith-ocaml-dev | 1.1-2 | - +- i386 | libzbar-dev | 0.10+doc-8 | - +- i386 | libzbar0 | 0.10+doc-8 | - +- i386 | libzbargtk-dev | 0.10+doc-8 | - +- i386 | libzbargtk0 | 0.10+doc-8 | - +- i386 | libzbarqt-dev | 0.10+doc-8 | - +- i386 | libzbarqt0 | 0.10+doc-8 | - +- i386 | libzeep-dev | 2.9.0-2 | - +- i386 | libzeep2.9 | 2.9.0-2 | - +- i386 | libzeitgeist-1.0-1 | 0.3.18-1 | - +- i386 | libzeitgeist-1.0-1-dbg | 0.3.18-1 | - +- i386 | libzeitgeist-dev | 0.3.18-1 | - +- i386 | libzen-dev | 0.4.27-2 | - +- i386 | libzen0 | 0.4.27-2 | - +- i386 | libzephyr-dev | 3.0.2-2 | - +- i386 | libzephyr4 | 3.0.2-2 | - +- i386 | libzephyr4-krb5 | 3.0.2-2 | - +- i386 | libzerg-perl | 1.0.4-2+b1 | - +- i386 | libzerg0 | 1.0.7-3 | - +- i386 | libzerg0-dbg | 1.0.7-3 | - +- i386 | libzerg0-dev | 1.0.7-3 | - +- i386 | libzeroc-ice-ruby1.8 | 3.4.2-8.2 | - +- i386 | libzeroc-ice34 | 3.4.2-8.2 | - +- i386 | libzeroc-ice34-dbg | 3.4.2-8.2 | - +- i386 | libzeroc-ice34-dev | 3.4.2-8.2 | - +- i386 | libzinnia-dev | 0.06-1+b1 | - +- i386 | libzinnia0 | 0.06-1+b1 | - +- i386 | libzinnia0-dbg | 0.06-1+b1 | - +- i386 | libzip-dev | 0.10.1-1.1 | - +- i386 | libzip-ocaml | 1.04-6+b3 | - +- i386 | libzip-ocaml-dev | 1.04-6+b3 | - +- i386 | libzip2 | 0.10.1-1.1 | - +- i386 | libzipios++-dev | 0.1.5.9+cvs.2007.04.28-5.1 | - +- i386 | libzipios++0c2a | 0.1.5.9+cvs.2007.04.28-5.1 | - +- i386 | libzita-alsa-pcmi-dev | 0.2.0-1 | - +- i386 | libzita-alsa-pcmi0 | 0.2.0-1 | - +- i386 | libzita-convolver-dev | 3.1.0-2 | - +- i386 | libzita-convolver3 | 3.1.0-2 | - +- i386 | libzita-resampler-dev | 1.1.0-3 | - +- i386 | libzita-resampler1 | 1.1.0-3 | - +- i386 | libzlcore-dev | 0.12.10dfsg-8 | - +- i386 | libzlcore0.12 | 0.12.10dfsg-8 | - +- i386 | libzltext-dev | 0.12.10dfsg-8 | - +- i386 | libzltext0.12 | 0.12.10dfsg-8 | - +- i386 | libzlui-gtk | 0.12.10dfsg-8 | - +- i386 | libzlui-qt4 | 0.12.10dfsg-8 | - +- i386 | libzmq-dbg | 2.2.0+dfsg-2 | - +- i386 | libzmq-dev | 2.2.0+dfsg-2 | - +- i386 | libzmq1 | 2.2.0+dfsg-2 | - ++ i386 | libzmq3 | - | 3.2.3+dfsg-2~bpo70+1 ++ i386 | libzmq3-dbg | - | 3.2.3+dfsg-2~bpo70+1 ++ i386 | libzmq3-dev | - | 3.2.3+dfsg-2~bpo70+1 +- i386 | libzn-poly-0.8 | 0.8-1.1 | - +- i386 | libzn-poly-dev | 0.8-1.1 | - +- i386 | libzookeeper-mt-dev | 3.3.5+dfsg1-2 | - +- i386 | libzookeeper-mt2 | 3.3.5+dfsg1-2 | - +- i386 | libzookeeper-st-dev | 3.3.5+dfsg1-2 | - +- i386 | libzookeeper-st2 | 3.3.5+dfsg1-2 | - +- i386 | libzookeeper2 | 3.3.5+dfsg1-2 | - +- i386 | libzorp-dev | 3.9.5-4 | - +- i386 | libzorp3.9 | 3.9.5-4 | - +- i386 | libzorpll-dev | 3.9.1.3-1 | - +- i386 | libzorpll3.9-1 | 3.9.1.3-1 | - +- i386 | libzorpll3.9-1-dbg | 3.9.1.3-1 | - +- i386 | libzorpll3.9-1-memtrace | 3.9.1.3-1 | - +- i386 | libzrtpcpp-dev | 2.0.0-3 | - +- i386 | libzrtpcpp2 | 2.0.0-3 | - +- i386 | libzthread-2.3-2 | 2.3.2-7 | - +- i386 | libzthread-dev | 2.3.2-7 | - +- i386 | libzvbi-dev | 0.2.33-6 | - +- i386 | libzvbi0 | 0.2.33-6 | - +- i386 | libzzip-0-13 | 0.13.56-1.1 | - +- i386 | libzzip-dev | 0.13.56-1.1 | - +- i386 | licq | 1.6.1-3 | - +- i386 | licq-plugin-autoreply | 1.6.1-3 | - +- i386 | licq-plugin-console | 1.6.1-3 | - +- i386 | licq-plugin-forwarder | 1.6.1-3 | - +- i386 | licq-plugin-jabber | 1.6.1-3 | - +- i386 | licq-plugin-kde4 | 1.6.1-3 | - +- i386 | licq-plugin-msn | 1.6.1-3 | - +- i386 | licq-plugin-osd | 1.6.1-3 | - +- i386 | licq-plugin-qt4 | 1.6.1-3 | - +- i386 | licq-plugin-rms | 1.6.1-3 | - +- i386 | lie | 2.2.2+dfsg-2 | - +- i386 | liece-dcc | 2.0+0.20030527cvs-11 | - +- i386 | lifelines | 3.0.61-2 | - +- i386 | lifeograph | 0.8.2.dfsg-1 | - +! i386 | liferea | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! i386 | liferea-dbg | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +- i386 | liggghts | 1.5.3-1 | - +- i386 | lightdm | 1.2.2-4 | - +- i386 | lightdm-gtk-greeter | 1.1.6-2 | - +- i386 | lightdm-vala | 1.2.2-4 | - +- i386 | lightsoff | 1:3.4.2-3 | - +- i386 | lightspark | 0.6.0.1-2 | - +- i386 | lightspark-common | 0.6.0.1-2 | - +- i386 | lightspark-dbg | 0.6.0.1-2 | - +- i386 | lightspeed | 1.2a-8+b1 | - +- i386 | lighttpd | 1.4.31-4+deb7u2 | - +- i386 | lighttpd-mod-cml | 1.4.31-4+deb7u2 | - +- i386 | lighttpd-mod-magnet | 1.4.31-4+deb7u2 | - +- i386 | lighttpd-mod-mysql-vhost | 1.4.31-4+deb7u2 | - +- i386 | lighttpd-mod-trigger-b4-dl | 1.4.31-4+deb7u2 | - +- i386 | lighttpd-mod-webdav | 1.4.31-4+deb7u2 | - +- i386 | lilo | 1:23.2-4 | - +- i386 | lilv-utils | 0.14.2~dfsg0-4 | - +- i386 | lilypond | 2.14.2-4 | - +- i386 | linaro-image-tools | 2012.06-1 | - +- i386 | lincity | 1.13.1-11 | - +- i386 | lincity-ng | 2.0-2+b2 | - +- i386 | lingot | 0.9.1-2 | - +- i386 | link-grammar | 4.7.4-2 | - +- i386 | link-monitor-applet | 3.0-8 | - +- i386 | link-monitor-applet-dbg | 3.0-8 | - +- i386 | linkchecker | 7.9-2 | - +- i386 | links | 2.7-1+deb7u1 | - +- i386 | links2 | 2.7-1+deb7u1 | - +- i386 | linphone | 3.5.2-10 | - +- i386 | linphone-dbg | 3.5.2-10 | - +- i386 | linphone-nogtk | 3.5.2-10 | - +- i386 | linpsk | 1.1-1.1 | - +- i386 | linsmith | 0.99.21-1 | - +- i386 | lintex | 1.11-1 | - +- i386 | linthesia | 0.4.2-3 | - ++ i386 | linux-compiler-gcc-4.6-x86 | - | 3.12.9-1~bpo70+1 +- i386 | linux-headers-2.6-486 | 3.2+46 | - +- i386 | linux-headers-2.6-686-pae | 3.2+46 | - +- i386 | linux-headers-2.6-amd64 | 3.2+46 | - ++ i386 | linux-headers-3.12-0.bpo.1-486 | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-686-pae | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-all | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-all-i386 | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-amd64 | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-common | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-common-rt | - | 3.12.9-1~bpo70+1 ++ i386 | linux-headers-3.12-0.bpo.1-rt-686-pae | - | 3.12.9-1~bpo70+1 +- i386 | linux-headers-3.2.0-4-486 | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-686-pae | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-all | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-all-i386 | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-amd64 | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-common | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-common-rt | 3.2.54-2 | - +- i386 | linux-headers-3.2.0-4-rt-686-pae | 3.2.54-2 | - +! i386 | linux-headers-486 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-rt-686-pae | 3.2+46 | 3.12+55~bpo70+1 +- i386 | linux-igd | 1.0+cvs20070630-4 | - +- i386 | linux-image-2.6-486 | 3.2+46 | - +- i386 | linux-image-2.6-686 | 3.2+46 | - +- i386 | linux-image-2.6-686-bigmem | 3.2+46 | - +- i386 | linux-image-2.6-686-pae | 3.2+46 | - +- i386 | linux-image-2.6-amd64 | 3.2+46 | - ++ i386 | linux-image-3.12-0.bpo.1-486 | - | 3.12.9-1~bpo70+1 ++ i386 | linux-image-3.12-0.bpo.1-686-pae | - | 3.12.9-1~bpo70+1 ++ i386 | linux-image-3.12-0.bpo.1-686-pae-dbg | - | 3.12.9-1~bpo70+1 ++ i386 | linux-image-3.12-0.bpo.1-amd64 | - | 3.12.9-1~bpo70+1 ++ i386 | linux-image-3.12-0.bpo.1-rt-686-pae | - | 3.12.9-1~bpo70+1 ++ i386 | linux-image-3.12-0.bpo.1-rt-686-pae-dbg | - | 3.12.9-1~bpo70+1 +- i386 | linux-image-3.2.0-4-486 | 3.2.54-2 | - +- i386 | linux-image-3.2.0-4-686-pae | 3.2.54-2 | - +- i386 | linux-image-3.2.0-4-686-pae-dbg | 3.2.54-2 | - +- i386 | linux-image-3.2.0-4-amd64 | 3.2.54-2 | - +- i386 | linux-image-3.2.0-4-rt-686-pae | 3.2.54-2 | - +- i386 | linux-image-3.2.0-4-rt-686-pae-dbg | 3.2.54-2 | - +! i386 | linux-image-486 | 3.2+46 | 3.12+55~bpo70+1 +- i386 | linux-image-686 | 3.2+46 | - +- i386 | linux-image-686-bigmem | 3.2+46 | - +! i386 | linux-image-686-pae | 3.2+46 | 3.12+55~bpo70+1 ++ i386 | linux-image-686-pae-dbg | - | 3.12+55~bpo70+1 +! i386 | linux-image-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-rt-686-pae | 3.2+46 | 3.12+55~bpo70+1 ++ i386 | linux-image-rt-686-pae-dbg | - | 3.12+55~bpo70+1 ++ i386 | linux-kbuild-3.12 | - | 3.12.6-1~bpo70+1 +- i386 | linux-kbuild-3.2 | 3.2.17-1 | - +! i386 | linux-libc-dev | 3.2.54-2 | 3.12.9-1~bpo70+1 ++ i386 | linux-tools-3.12 | - | 3.12.6-1~bpo70+1 +- i386 | linux-tools-3.2 | 3.2.17-1 | - +- i386 | linux-wlan-ng | 0.2.9+dfsg-5 | - +- i386 | linuxdcpp | 1.1.0-1+b2 | - +- i386 | linuxdoc-tools | 0.9.68+b1 | - +- i386 | linuxinfo | 1.1.8-39 | - +- i386 | linuxlogo | 5.11-1 | - +- i386 | linuxvnc | 0.9.9+dfsg-1 | - +- i386 | lio-utils | 3.1+git2.fd0b34fd-2 | - +- i386 | liquidsoap | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-all | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-alsa | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-ao | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-camlimages | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-dssi | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-faad | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-flac | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-gavl | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-gd | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-graphics | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-gstreamer | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-icecast | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-jack | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-ladspa | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-lame | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-lastfm | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-lo | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-mad | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-ogg | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-oss | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-portaudio | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-pulseaudio | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-samplerate | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-schroedinger | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-sdl | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-soundtouch | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-speex | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-taglib | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-theora | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-voaacenc | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-vorbis | 1.0.1+repack1-1.1 | - +- i386 | liquidsoap-plugin-xmlplaylist | 1.0.1+repack1-1.1 | - +- i386 | liquidwar | 5.6.4-3+b1 | - +- i386 | liquidwar-server | 5.6.4-3+b1 | - +- i386 | lirc | 0.9.0~pre1-1 | - +- i386 | lirc-x | 0.9.0~pre1-1 | - +- i386 | lisaac | 1:0.39~rc1-1 | - +- i386 | listaller | 0.5.5-2 | - +- i386 | listaller-devtools | 0.5.5-2 | - +- i386 | listaller-libuild | 0.5.5-2 | - +- i386 | literki | 0.0.0+20100113.git1da40724-1 | - +- i386 | littler | 0.1.5-1 | - +- i386 | littlewizard | 1.2.2-1 | - +- i386 | live-f1 | 0.2.10-1 | - +- i386 | livemedia-utils | 2012.05.17-1 | - +- i386 | lives | 1.6.2~ds1-2 | - +- i386 | lives-dbg | 1.6.2~ds1-2 | - +- i386 | liwc | 1.21-1 | - +- i386 | lksctp-tools | 1.0.11+dfsg-2 | - +- i386 | ll-scope | 0.2.1-3 | - +- i386 | lldpad | 0.9.44-1 | - +- i386 | lldpad-dev | 0.9.44-1 | - +! i386 | lldpd | 0.5.7-2 | 0.7.7-1~bpo70+1 +- i386 | llvm | 1:3.0-14+nmu2 | - +- i386 | llvm-2.9 | 2.9+dfsg-7 | - +- i386 | llvm-2.9-dev | 2.9+dfsg-7 | - +- i386 | llvm-2.9-runtime | 2.9+dfsg-7 | - +- i386 | llvm-3.0 | 3.0-10 | - +- i386 | llvm-3.0-dev | 3.0-10 | - +- i386 | llvm-3.0-runtime | 3.0-10 | - +- i386 | llvm-3.1 | 3.1-1 | - +- i386 | llvm-3.1-dev | 3.1-1 | - +- i386 | llvm-3.1-runtime | 3.1-1 | - +- i386 | llvm-dev | 1:3.0-14+nmu2 | - +- i386 | llvm-runtime | 1:3.0-14+nmu2 | - +- i386 | lm-sensors | 1:3.3.2-2+deb7u1 | - +- i386 | lmarbles | 1.0.7-1.1 | - +- i386 | lmemory | 0.6c-6 | - +- i386 | lmms | 0.4.10-2.3 | - +- i386 | lnpd | 0.9.0-7 | - +- i386 | loadlin | 1.6f-1 | - +- i386 | loadmeter | 1.20-6 | - +- i386 | loadwatch | 1.0+1.1alpha1-5 | - +- i386 | locales-all | 2.13-38+deb7u1 | - +- i386 | locate | 4.4.2-4 | - +- i386 | lockfile-progs | 0.1.17 | - +- i386 | lockout | 0.2.3-2 | - +- i386 | logapp | 0.15-1 | - +- i386 | logcentral | 2.7-1 | - +- i386 | logcentral-tools | 2.7-1 | - +- i386 | logfs-tools | 20110927-1 | - +- i386 | logfs-tools-dbg | 20110927-1 | - +- i386 | login | 1:4.1.5.1-1 | - +- i386 | login-duo | 1.8-1 | - +- i386 | logjam | 4.6.2-1 | - +- i386 | logrotate | 3.8.1-4 | - +- i386 | logstalgia | 1.0.3-3 | - +- i386 | logtool | 1.2.8-8 | - +- i386 | logtools | 0.13d | - +- i386 | logtop | 0.4.3-1 | - +- i386 | lokalize | 4:4.8.4+dfsg-1 | - +- i386 | loki | 2.4.7.4-4 | - +- i386 | longomatch | 0.16.8+git20110626-1+b2 | - +- i386 | longrun | 0.9-22 | - +- i386 | lookup | 1.08b-11 | - +- i386 | looptools | 2.7-1 | - +- i386 | loqui | 0.5.3-3 | - +- i386 | lordsawar | 0.2.0-2.1 | - +- i386 | lostirc | 0.4.6-4 | - +- i386 | lout | 3.39-1 | - +- i386 | love | 0.8.0-1+deb7u1 | - +- i386 | love-dbg | 0.8.0-1+deb7u1 | - +- i386 | lowpan-test-tools | 0.2.2-2.1 | - +- i386 | lowpan-tools | 0.2.2-2.1 | - +- i386 | lp-solve | 5.5.0.13-7 | - +- i386 | lpe | 1.2.6.13-0.1 | - +- i386 | lphdisk | 0.9.1.ds1-1 | - +- i386 | lpr | 1:2008.05.17+nmu1 | - +- i386 | lprng | 3.8.B-2 | - +- i386 | lrslib | 0.42c-1+b1 | - +- i386 | lrzip | 0.608-2 | - +- i386 | lrzsz | 0.12.21-5 | - +- i386 | lsat | 0.9.7.1-2 | - +- i386 | lsb-core | 4.1+Debian8+deb7u1 | - +- i386 | lsb-cxx | 4.1+Debian8+deb7u1 | - +- i386 | lsb-desktop | 4.1+Debian8+deb7u1 | - +- i386 | lsb-graphics | 4.1+Debian8+deb7u1 | - +- i386 | lsb-languages | 4.1+Debian8+deb7u1 | - +- i386 | lsb-multimedia | 4.1+Debian8+deb7u1 | - +- i386 | lsb-printing | 4.1+Debian8+deb7u1 | - +- i386 | lsb-security | 4.1+Debian8+deb7u1 | - +- i386 | lsdvd | 0.16-3+b1 | - +- i386 | lsh-client | 2.0.4-dfsg-11 | - +- i386 | lsh-server | 2.0.4-dfsg-11 | - +- i386 | lsh-utils | 2.0.4-dfsg-11 | - +- i386 | lshw | 02.16-1 | - +- i386 | lshw-gtk | 02.16-1 | - +- i386 | lskat | 4:4.8.4-3 | - +- i386 | lsmbox | 2.1.2-1 | - +- i386 | lsof | 4.86+dfsg-1 | - +- i386 | lsscsi | 0.26-2 | - +- i386 | lswm | 0.6.00+svn201-3+b1 | - +- i386 | lsyncd | 2.0.7-3 | - +- i386 | ltpanel | 0.2-5 | - +- i386 | ltrace | 0.5.3-2.1 | - +- i386 | ltris | 1.0.18-1 | - +- i386 | ltsp-client | 5.4.2-6 | - +- i386 | ltsp-client-core | 5.4.2-6 | - +- i386 | ltspfs | 1.1-2 | - +- i386 | ltspfsd-core | 1.1-2 | - +- i386 | ltt-bin | 0.89-05122011-1 | - +- i386 | lttoolbox | 3.1.0-1.1 | - +- i386 | lttv | 0.12.38-21032011-1+b1 | - +- i386 | lttv-dev | 0.12.38-21032011-1+b1 | - +- i386 | lua-apr | 0.23.2-1 | - +- i386 | lua-apr-dev | 0.23.2-1 | - ++ i386 | lua-augeas | - | 0.1.1-3~bpo70+1 +- i386 | lua-bitop | 1.0.2-1 | - +- i386 | lua-bitop-dev | 1.0.2-1 | - +- i386 | lua-curl | 0.3.0-7 | - +- i386 | lua-curl-dev | 0.3.0-7 | - +- i386 | lua-curses | 5.1.19-2 | - +- i386 | lua-curses-dev | 5.1.19-2 | - +- i386 | lua-cyrussasl | 1.0.0-4 | - +- i386 | lua-cyrussasl-dev | 1.0.0-4 | - +- i386 | lua-dbi-mysql | 0.5+svn78-4 | - +- i386 | lua-dbi-mysql-dev | 0.5+svn78-4 | - +- i386 | lua-dbi-postgresql | 0.5+svn78-4 | - +- i386 | lua-dbi-postgresql-dev | 0.5+svn78-4 | - +- i386 | lua-dbi-sqlite3 | 0.5+svn78-4 | - +- i386 | lua-dbi-sqlite3-dev | 0.5+svn78-4 | - +- i386 | lua-event | 0.4.1-2 | - +- i386 | lua-event-dev | 0.4.1-2 | - +- i386 | lua-expat | 1.2.0-5 | - +- i386 | lua-expat-dev | 1.2.0-5 | - +- i386 | lua-filesystem | 1.5.0+16+g84f1af5-1 | - +- i386 | lua-filesystem-dev | 1.5.0+16+g84f1af5-1 | - +- i386 | lua-iconv | 7-1 | - +- i386 | lua-iconv-dev | 7-1 | - +- i386 | lua-ldap | 1.1.0-1-geeac494-3 | - +- i386 | lua-ldap-dev | 1.1.0-1-geeac494-3 | - +- i386 | lua-lgi | 0.6.2-1 | - +- i386 | lua-lgi-dbg | 0.6.2-1 | - +- i386 | lua-lgi-dev | 0.6.2-1 | - +- i386 | lua-lpeg | 0.10.2-5 | - +- i386 | lua-lpeg-dev | 0.10.2-5 | - +- i386 | lua-md5 | 1.1.2-6 | - +- i386 | lua-md5-dev | 1.1.2-6 | - +- i386 | lua-posix | 5.1.19-2 | - +- i386 | lua-posix-dev | 5.1.19-2 | - +- i386 | lua-rex-onig | 2.6.0-2 | - +- i386 | lua-rex-onig-dev | 2.6.0-2 | - +- i386 | lua-rex-pcre | 2.6.0-2 | - +- i386 | lua-rex-pcre-dev | 2.6.0-2 | - +- i386 | lua-rex-posix | 2.6.0-2 | - +- i386 | lua-rex-posix-dev | 2.6.0-2 | - +- i386 | lua-rex-tre | 2.6.0-2 | - +- i386 | lua-rex-tre-dev | 2.6.0-2 | - +- i386 | lua-rings | 1.2.3-1 | - +- i386 | lua-rings-dev | 1.2.3-1 | - +! i386 | lua-sec | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! i386 | lua-sec-dev | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! i386 | lua-socket | 2.0.2-8 | 3.0~rc1-3~bpo70+1 +! i386 | lua-socket-dev | 2.0.2-8 | 3.0~rc1-3~bpo70+1 +- i386 | lua-sql-mysql | 2.3.0-1+build0 | - +- i386 | lua-sql-mysql-dev | 2.3.0-1+build0 | - +- i386 | lua-sql-postgres | 2.3.0-1+build0 | - +- i386 | lua-sql-postgres-dev | 2.3.0-1+build0 | - +- i386 | lua-sql-sqlite3 | 2.3.0-1+build0 | - +- i386 | lua-sql-sqlite3-dev | 2.3.0-1+build0 | - +- i386 | lua-svn | 0.4.0-7 | - +- i386 | lua-svn-dev | 0.4.0-7 | - +- i386 | lua-wsapi-fcgi | 1.5-3 | - +- i386 | lua-wsapi-fcgi-dev | 1.5-3 | - +- i386 | lua-zip | 1.2.3-11 | - +- i386 | lua-zip-dev | 1.2.3-11 | - +- i386 | lua-zlib | 0.2-1 | - +- i386 | lua-zlib-dev | 0.2-1 | - +- i386 | lua5.1 | 5.1.5-4 | - +- i386 | lua5.2 | 5.2.1-3 | - +- i386 | lua50 | 5.0.3-6 | - +- i386 | luakit | 2012.03.25-1 | - +- i386 | luatex | 0.70.1.20120524-3 | - +- i386 | luckybackup | 0.4.7-2 | - +- i386 | luminance-hdr | 2.2.1-3 | - +- i386 | lunar | 2.2-3.1 | - +- i386 | lunzip | 1.1-2 | - +- i386 | lunzip-dbg | 1.1-2 | - +- i386 | luola | 1.3.2-9 | - +- i386 | lurker | 2.3-3 | - +- i386 | lusernet.app | 0.4.2-6+b2 | - +- i386 | lush | 1.2.1-9+cvs20110227+nmu1 | - +- i386 | lutefisk | 1.0.5a.cleaned-1 | - +- i386 | luvcview | 1:0.2.6-6 | - +- i386 | lv | 4.51-2 | - +- i386 | lv2-c++-tools | 1.0.4-3+b1 | - +- i386 | lv2-dev | 1.0.0~dfsg2-2 | - +- i386 | lv2-examples | 1.0.0~dfsg2-2 | - +- i386 | lv2fil | 2.0+20100312.git18130f5a+dfsg0-2 | - +- i386 | lv2file | 0.83-1 | - +- i386 | lv2proc | 0.4.0-4 | - +- i386 | lv2vocoder | 1-3 | - +- i386 | lvm2 | 2.02.95-8 | - +- i386 | lwatch | 0.6-1 | - +- i386 | lwm | 1.2.2-4 | - +- i386 | lwresd | 1:9.8.4.dfsg.P1-6+nmu2+deb7u1 | - +- i386 | lx-gdb | 1.03-14 | - +- i386 | lxappearance | 0.5.2-1 | - +- i386 | lxappearance-dbg | 0.5.2-1 | - +- i386 | lxappearance-obconf | 0.2.0-4 | - +- i386 | lxappearance-obconf-dbg | 0.2.0-4 | - +- i386 | lxc | 0.8.0~rc1-8+deb7u2 | - +- i386 | lxc-dbg | 0.8.0~rc1-8+deb7u2 | - +- i386 | lxc-dev | 0.8.0~rc1-8+deb7u2 | - +- i386 | lxinput | 0.3.2-1 | - +- i386 | lxinput-dbg | 0.3.2-1 | - +- i386 | lxlauncher | 0.2.2-3 | - +- i386 | lxlauncher-dbg | 0.2.2-3 | - +- i386 | lxmms2 | 0.1.3-1 | - +- i386 | lxmusic | 0.4.4+git20100802-3 | - +- i386 | lxpanel | 0.5.10-1 | - +- i386 | lxpanel-dbg | 0.5.10-1 | - +- i386 | lxpolkit | 0.1.0-4 | - +- i386 | lxpolkit-dbg | 0.1.0-4 | - +- i386 | lxrandr | 0.1.2-3 | - +- i386 | lxrandr-dbg | 0.1.2-3 | - +- i386 | lxsession | 0.4.6.1-4 | - +- i386 | lxsession-dbg | 0.4.6.1-4 | - +- i386 | lxsession-edit | 0.2.0-3 | - +- i386 | lxsession-edit-dbg | 0.2.0-3 | - +- i386 | lxshortcut | 0.1.2-3 | - +- i386 | lxshortcut-dbg | 0.1.2-3 | - +- i386 | lxtask | 0.1.4-3 | - +- i386 | lxtask-dbg | 0.1.4-3 | - +- i386 | lxterminal | 0.1.11-4 | - +- i386 | lxterminal-dbg | 0.1.11-4 | - +- i386 | lynkeos.app | 1.2-6+b2 | - +- i386 | lynx-cur | 2.8.8dev.12-2 | - +- i386 | lyskom-server | 2.1.2-13 | - +- i386 | lyx | 2.0.3-3 | - +- i386 | lyx-dbg | 2.0.3-3 | - +- i386 | lzip | 1.13-3 | - +- i386 | lzip-dbg | 1.13-3 | - +- i386 | lziprecover | 1.13-2 | - +- i386 | lziprecover-dbg | 1.13-2 | - +- i386 | lzma | 9.22-2 | - +- i386 | lzma-alone | 9.22-2 | - +- i386 | lzop | 1.03-3 | - +- i386 | m-tx | 0.60d-5 | - +- i386 | m16c-flash | 0.1-1.1 | - +- i386 | m17n-im-config | 0.9.0-3 | - +- i386 | m17n-lib-bin | 1.6.3-2 | - +- i386 | m17n-lib-mimx | 1.6.3-2 | - +- i386 | m2vrequantiser | 1.1-1 | - +- i386 | m4 | 1.4.16-3 | - ++ i386 | mac-robber | - | 1.02-1~bpo70+1 +- i386 | macchanger | 1.5.0-9 | - +- i386 | mace2 | 3.3f-1.1 | - +- i386 | mach | 0.9.1-3.1 | - +- i386 | macopix-gtk2 | 1.7.4-4 | - +- i386 | mactelnet-client | 0.3.4-1 | - +- i386 | mactelnet-server | 0.3.4-1 | - +- i386 | macutils | 2.0b3-16 | - +- i386 | madbomber | 0.2.5-5 | - +- i386 | madplay | 0.15.2b-8 | - +- i386 | madwimax | 0.1.1-1 | - +- i386 | maelstrom | 1.4.3-L3.0.6+main-2 | - +- i386 | mafft | 6.864-1 | - +- i386 | magic | 7.5.220-1 | - +- i386 | magicfilter | 1.2-64 | - +- i386 | magicrescue | 1.1.8-1 | - +- i386 | magics++ | 2.14.11-4 | - +- i386 | mah-jong | 1.11-2 | - +- i386 | mahjongg | 1:3.4.2-3 | - +- i386 | mail-notification | 5.4.dfsg.1-6+b1 | - +- i386 | mail-notification-evolution | 5.4.dfsg.1-6+b1 | - +- i386 | mailagent | 1:3.1-74-0.2 | - +- i386 | mailavenger | 0.8.3rc1-1 | - +- i386 | mailcheck | 1.91.2-2 | - +- i386 | maildir-filter | 1.20-3 | - +- i386 | maildir-utils | 0.9.8.4-3+deb7u1 | - +- i386 | maildir-utils-extra | 0.9.8.4-3+deb7u1 | - +- i386 | maildrop | 2.5.5-2 | - +- i386 | mailfilter | 0.8.2-4 | - +- i386 | mailfront | 1.16-1 | - +- i386 | mailman | 1:2.1.15-1 | - +- i386 | mailsync | 5.2.2-3 | - +- i386 | mailtextbody | 0.1.2-1 | - +- i386 | mailto | 1.3.2-3 | - +- i386 | mailutils | 1:2.99.97-3 | - +- i386 | mailutils-comsatd | 1:2.99.97-3 | - +- i386 | mailutils-dbg | 1:2.99.97-3 | - +- i386 | mailutils-guile | 1:2.99.97-3 | - +- i386 | mailutils-imap4d | 1:2.99.97-3 | - +- i386 | mailutils-mh | 1:2.99.97-3 | - +- i386 | mailutils-pop3d | 1:2.99.97-3 | - +- i386 | mairix | 0.22-1 | - +- i386 | maitreya | 6.0.5-2 | - +- i386 | make | 3.81-8.2 | - +- i386 | makebootfat | 1.4-5 | - +- i386 | makedic | 6.5deb2-8 | - +- i386 | makedumpfile | 1.4.3-1 | - +- i386 | makefs | 20100306-3 | - +- i386 | makejvf | 1.1a+0-2 | - +- i386 | makexvpics | 1.0.1-2 | - +- i386 | maki | 1.4.0+dfsg-1 | - +- i386 | maki-plugins | 1.4.0+dfsg-1 | - +- i386 | malaga-bin | 7.12-4 | - +- i386 | man-db | 2.6.2-1 | - +- i386 | man2html | 1.6g-6 | - +- i386 | man2html-base | 1.6g-6 | - +- i386 | mana | 0.6.1-2 | - +- i386 | mana-dbg | 0.6.1-2 | - +- i386 | mancala | 1.0.1-4 | - +- i386 | mandelbulber | 1:1.11-1 | - +- i386 | mandos-client | 1.5.5-1 | - +- i386 | mangler | 1.2.4-1 | - +- i386 | mango-lassi | 001+dfsg-5 | - +- i386 | mapnik-utils | 2.0.0+ds1-3+b4 | - +- i386 | mapserver-bin | 6.0.1-3.2+deb7u2 | - +- i386 | maptool | 0.5.0~svn5126+dfsg.1-3 | - +- i386 | maq | 0.7.1-5 | - +- i386 | maqview | 0.2.5-4 | - +- i386 | maradns | 1.4.12-5 | - +- i386 | maradns-zoneserver | 1.4.12-5 | - +- i386 | marble | 4:4.8.4-3 | - +- i386 | marble-dbg | 4:4.8.4-3 | - +- i386 | marble-plugins | 4:4.8.4-3 | - +- i386 | maria | 1.3.5-4 | - +- i386 | masqmail | 0.2.30-1 | - +- i386 | massxpert | 3.2.3-1 | - +- i386 | massxpert-dbg | 3.2.3-1 | - +- i386 | matanza | 0.13+ds1-1 | - +- i386 | matchbox-desktop | 2.0-4 | - +- i386 | matchbox-keyboard | 0.1+svn20080916-9+b1 | - +- i386 | matchbox-keyboard-im | 0.1+svn20080916-9+b1 | - +- i386 | matchbox-panel | 0.9.3-8 | - +- i386 | matchbox-panel-manager | 0.1-6 | - +- i386 | matchbox-window-manager | 1.2-osso21-1+b1 | - +- i386 | mathgl | 1.11.2-17 | - +- i386 | mathomatic | 15.8.2-2 | - +- i386 | mathomatic-primes | 15.8.2-2 | - +- i386 | mathtex | 1.03-1 | - +- i386 | mathwar | 0.2.5-2+b1 | - +- i386 | matita | 0.99.1-1 | - +- i386 | matroxset | 0.4-8 | - +- i386 | maude | 2.6-2 | - +- i386 | mawk | 1.3.3-17 | - +- i386 | maxima | 5.27.0-3 | - +- i386 | maximus | 0.4.14-3 | - +- i386 | mayavi2 | 4.1.0-1 | - +- i386 | mazeofgalious | 0.62.dfsg2-3 | - +- i386 | mbmon | 2.05-6 | - +- i386 | mboxgrep | 0.7.9-1 | - +- i386 | mbr | 1.1.11-5+b1 | - +- i386 | mbt | 3.2.8-1 | - +- i386 | mbtserver | 0.5-2 | - +- i386 | mbuffer | 20110119-2 | - +- i386 | mbw | 1.2.2-1 | - +- i386 | mc | 3:4.8.3-10 | - +- i386 | mc-dbg | 3:4.8.3-10 | - +- i386 | mcabber | 0.10.1-3 | - +- i386 | mccs | 1:1.1-2 | - +- i386 | mcdp | 0.4-5 | - +- i386 | mcelog | 1.0~pre3-72-gcbd4da4-1 | - +- i386 | mcl | 1:12-068-1 | - +- i386 | mcp-plugins | 0.4.0-2 | - +- i386 | mcpp | 2.7.2-1.1 | - +- i386 | mcrl2 | 201202.0-2+b1 | - +- i386 | mcron | 1.0.6-1+b1 | - +- i386 | mcrypt | 2.6.8-1.3 | - +- i386 | md5deep | 4.2-1 | - +- i386 | mda-lv2 | 1.0.0~dfsg0-1 | - +- i386 | mdadm | 3.2.5-5 | - +- i386 | mdbtools | 0.7-1+deb7u1 | - +- i386 | mdbtools-dbg | 0.7-1+deb7u1 | - +- i386 | mdbtools-dev | 0.7-1+deb7u1 | - +- i386 | mdbtools-gmdb | 0.7-1+deb7u1 | - +- i386 | mdbus2 | 2.3.0-1 | - +- i386 | mdetect | 0.5.2.3 | - +- i386 | mdf2iso | 0.3.0-2 | - +- i386 | mdk | 1.2.6+dfsg-1 | - +- i386 | mdm | 0.1.3-2 | - +- i386 | mdns-scan | 0.5-1 | - +- i386 | me-tv | 1.3.7-0.2 | - +- i386 | mecab | 0.99.3-3 | - +- i386 | mecab-utils | 0.99.3-3 | - +- i386 | medcon | 0.10.7-1+b2 | - +- i386 | mediainfo | 0.7.58-1 | - +- i386 | mediainfo-gui | 0.7.58-1 | - +- i386 | mediatomb-common | 0.12.1-4+b1 | - +- i386 | mediatomb-dbg | 0.12.1-4+b1 | - +- i386 | mediawiki-math | 2:1.0+git20120528-6 | - +- i386 | mediawiki-math-texvc | 2:1.0+git20120528-6 | - +- i386 | medit | 1.0.93-1 | - +- i386 | mednafen | 0.8.D.3-6 | - +- i386 | medusa | 2.0-3.1 | - +- i386 | meep | 1.1.1-8 | - +- i386 | meep-lam4 | 1.1.1-10~deb7u1 | - +- i386 | meep-mpi-default | 1.1.1-10~deb7u1 | - +- i386 | meep-mpich2 | 1.1.1-10~deb7u1 | - +- i386 | meep-openmpi | 1.1.1-9~deb7u1 | - +- i386 | megaglest | 3.6.0.3-1.2 | - +- i386 | megaglest-dbg | 3.6.0.3-1.2 | - +- i386 | melt | 0.8.0-4 | - +- i386 | melting | 4.3c-2 | - +- i386 | members | 20080128-5 | - +- i386 | memcached | 1.4.13-0.2+deb7u1 | - +- i386 | memcachedb | 1.2.0-9 | - +- i386 | memdump | 1.01-6.1 | - +- i386 | memlockd | 1.1.1 | - +- i386 | memstat | 0.9 | - +- i386 | memtest86 | 4.0s-1 | - +- i386 | memtest86+ | 4.20-1.1 | - +- i386 | memtester | 4.2.2-1 | - +- i386 | mencoder | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- i386 | mendexk | 2.6e-3.2 | - +- i386 | menhir | 20120123.dfsg-1 | - +- i386 | mensis | 0.0.080507-3 | - +- i386 | menu | 2.1.46 | - +! i386 | mercurial | 2.2.2-3 | 2.8.2-1~bpo70+1 +- i386 | mergelog | 4.5.1-9 | - +- i386 | merkaartor | 0.18.1-3 | - +- i386 | mesa-common-dev | 8.0.5-4+deb7u2 | - +- i386 | mesa-utils | 8.0.1-2+b3 | - +- i386 | meshlab | 1.3.0a+dfsg1-3 | - +- i386 | meshs3d | 0.2.2-8 | - +- i386 | metacam | 1.2-5 | - +- i386 | metacity | 1:2.34.3-4 | - +- i386 | metalink | 0.3.6-2+b1 | - +- i386 | metapixel | 1.0.2-7.1 | - +- i386 | metar | 20061030.1-2+b3 | - +- i386 | metastore | 1+20080623+debian-3 | - +- i386 | meterbridge | 0.9.2-11 | - +- i386 | meterec | 0.8~ds0-1+b1 | - +- i386 | mew-beta-bin | 7.0.50~6.5~rc2+0.20120405-1 | - +- i386 | mew-bin | 1:6.4-2 | - +- i386 | mffm-fftw-dev | 1.7-3 | - +- i386 | mffm-fftw1 | 1.7-3 | - +- i386 | mftrace | 1.2.17-1 | - +- i386 | mg | 20110905-1.1 | - +- i386 | mga-vid-common | 2.6.32-1 | - +- i386 | mga-vid-source | 2.6.32-1 | - +- i386 | mgdiff | 1.0-29 | - +- i386 | mgen | 5.02+dfsg2-3 | - +- i386 | mgetty | 1.1.36-1.6 | - +- i386 | mgetty-fax | 1.1.36-1.6 | - +- i386 | mgetty-pvftools | 1.1.36-1.6 | - +- i386 | mgetty-viewfax | 1.1.36-1.6 | - +- i386 | mgetty-voice | 1.1.36-1.6 | - +- i386 | mgp | 1.13a+upstream20090219-6 | - +- i386 | mgt | 2.31-6 | - +- i386 | mhc-utils | 0.25.1+20120403-2 | - +- i386 | mhddfs | 0.1.39 | - +- i386 | mhwaveedit | 1.4.21-2 | - +- i386 | mic2 | 0.24.12-1 | - +- i386 | micro-httpd | 20051212-15 | - +- i386 | micro-inetd | 20050629-5 | - +- i386 | micro-proxy | 20021030+debian-5 | - +- i386 | microcom | 2012.06.0-2 | - +- i386 | microdc2 | 0.15.6-2 | - +- i386 | micropolis | 0.0.20071228-5 | - +- i386 | midish | 1.0.4-1.1 | - +- i386 | midori | 0.4.3+dfsg-0.1 | - +- i386 | midori-dbg | 0.4.3+dfsg-0.1 | - +- i386 | mig | 1.3.1.99.git20120630-1 | - +- i386 | mii-diag | 2.11-3+b1 | - +- i386 | mikmod | 3.2.1-4 | - +- i386 | milkytracker | 0.90.85+dfsg-2.2 | - +- i386 | milter-greylist | 4.3.9-1 | - +- i386 | mimedefang | 2.71-3 | - +- i386 | mimetex | 1.73-2 | - +- i386 | minbar | 0.2.1-7 | - +- i386 | minbif | 1:1.0.5+git20120508-2.1 | - +- i386 | minbif-common | 1:1.0.5+git20120508-2.1 | - +- i386 | minbif-dbg | 1:1.0.5+git20120508-2.1 | - +- i386 | minc-tools | 2.1.10-1+b1 | - +- i386 | minetest | 0.3.1+dfsg-4 | - +- i386 | minetest-dbg | 0.3.1+dfsg-4 | - +- i386 | minetest-server | 0.3.1+dfsg-4 | - +- i386 | mingetty | 1.08-2 | - +- i386 | mingw-ocaml | 3.12.1+debian3 | - +- i386 | mingw-w64-tools | 2.0.3-1 | - +- i386 | mingw32 | 4.2.1.dfsg-2 | - +- i386 | mingw32-binutils | 2.20-0.2 | - +- i386 | mini-httpd | 1.19-9.3 | - +- i386 | minicom | 2.6.1-1 | - +- i386 | minidjvu | 0.8.svn.2010.05.06+dfsg-0.2 | - +- i386 | minidlna | 1.0.24+dfsg-1 | - +- i386 | minimodem | 0.8.1-1 | - +- i386 | minisapserver | 0.3.6-1 | - +- i386 | minisat | 1:2.2.1-3 | - +- i386 | minisat+ | 1.0-2 | - +- i386 | minisat2 | 1:2.2.1-3 | - +- i386 | minissdpd | 1.1.20120121-1 | - +- i386 | ministat | 20100628-1 | - +- i386 | minit | 0.10-5 | - +- i386 | miniupnpc | 1.5-2 | - +- i386 | minpack-dev | 19961126+dfsg1-1 | - +- i386 | mira-assembler | 3.4.0.1-3 | - +- i386 | mirage | 0.9.5.1-1.1+b1 | - +- i386 | miredo | 1.2.3-1.1 | - +- i386 | miredo-server | 1.2.3-1.1 | - +- i386 | miro | 4.0.4-1 | - +- i386 | mirrormagic | 2.0.2.0deb1-11 | - +- i386 | misery | 0.2-1 | - +- i386 | missidentify | 1.0-6 | - +- i386 | mistelix | 0.33-3+b1 | - +- i386 | mit-scheme | 9.1-1 | - +- i386 | mit-scheme-dbg | 9.1-1 | - +- i386 | mitmproxy | 0.8-2 | - +- i386 | mitools | 1.8.5-2 | - +- i386 | miwm | 1.1-3 | - +- i386 | mixal | 1.08-11 | - +- i386 | mixer.app | 1.8.0-5 | - +- i386 | mixmaster | 3.0.0-6 | - +- i386 | mixxx | 1.10.1~dfsg0-1 | - +- i386 | mkcue | 1-2.1 | - +- i386 | mkelfimage | 2.7-7 | - +- i386 | mklibs-copy | 0.1.34 | - +- i386 | mknbi | 1.4.4-9 | - +- i386 | mknfonts.tool | 0.5-11+b3 | - +! i386 | mksh | 40.9.20120630-7 | 49-2~bpo70+1 +- i386 | mktorrent | 1.0-4 | - +- i386 | mkvtoolnix | 5.6.0-1 | - +- i386 | mkvtoolnix-gui | 5.6.0-1 | - +- i386 | ml-burg | 110.74-2 | - +- i386 | ml-lex | 110.74-2 | - +- i386 | ml-lpt | 110.74-2 | - +- i386 | ml-nlffigen | 110.74-2 | - +- i386 | ml-yacc | 110.74-2 | - +- i386 | mldonkey-gui | 3.1.2-1 | - +- i386 | mldonkey-server | 3.1.2-1 | - +- i386 | mlmmj | 1.2.18.0-2 | - +- i386 | mlocate | 0.23.1-1 | - +- i386 | mlock | 8:2007f~dfsg-2 | - +- i386 | mlpost | 0.8.1-3 | - +- i386 | mlterm | 3.1.2-1.3 | - +- i386 | mlterm-common | 3.1.2-1.3 | - +- i386 | mlterm-im-ibus | 3.1.2-1.3 | - +- i386 | mlterm-im-m17nlib | 3.1.2-1.3 | - +- i386 | mlterm-im-scim | 3.1.2-1.3 | - +- i386 | mlterm-im-uim | 3.1.2-1.3 | - +- i386 | mlterm-tiny | 3.1.2-1.3 | - +- i386 | mlterm-tools | 3.1.2-1.3 | - +- i386 | mlton-compiler | 20100608-5 | - +- i386 | mlton-runtime-i486-linux-gnu | 20100608-5 | - +- i386 | mlton-runtime-native | 20100608-5 | - +- i386 | mlton-tools | 20100608-5 | - +- i386 | mlv-smile | 1.47-3 | - +- i386 | mm3d | 1.3.7-1.4 | - +- i386 | mmass-modules | 5.1.0-2 | - +- i386 | mmorph | 2.3.4.2-12.1 | - +- i386 | mmpong-caca | 0.9.1-2.1 | - +- i386 | mmpong-gl | 0.9.1-2.1 | - +- i386 | mmpongd | 0.9.1-2.1 | - +- i386 | mmv | 1.01b-15 | - +- i386 | mobyle-utils | 1.0.6~dfsg-1 | - +- i386 | moc | 1:2.5.0~alpha4+svn20120224-1 | - +- i386 | moc-ffmpeg-plugin | 1:2.5.0~alpha4+svn20120224-1 | - +- i386 | mod-gearman-module | 1.3.6-1 | - +- i386 | mod-gearman-tools | 1.3.6-1 | - +- i386 | mod-gearman-worker | 1.3.6-1 | - +- i386 | modem-cmd | 0.0.2 | - +- i386 | modemmanager | 0.5.2.0-2 | - +- i386 | modemmanager-dbg | 0.5.2.0-2 | - +- i386 | modplug-tools | 0.5.3-1 | - +- i386 | mokomaze | 0.5.5+git8+dfsg0-3 | - +- i386 | mon | 1.2.0-6 | - +- i386 | mon-contrib | 1.0+dfsg-2 | - +- i386 | mona | 1.4-13-3 | - +- i386 | monav | 0.3-6+b1 | - +- i386 | monav-client | 0.3-6+b1 | - +- i386 | monav-preprocessor | 0.3-6+b1 | - +- i386 | monav-routing-daemon | 0.3-6+b1 | - +! i386 | mongodb | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-clients | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-dev | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-server | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | monit | 1:5.4-2 | 1:5.6-1~bpo70+1 +- i386 | monkeystudio | 1.9.0.2-2 | - +- i386 | monkeystudio-dbg | 1.9.0.2-2 | - +- i386 | mono-complete | 2.10.8.1-8 | - +- i386 | mono-jay | 2.10.8.1-8 | - +- i386 | mono-runtime | 2.10.8.1-8 | - +- i386 | mono-runtime-dbg | 2.10.8.1-8 | - +- i386 | mono-runtime-sgen | 2.10.8.1-8 | - +- i386 | mono-utils | 2.10.8.1-8 | - +- i386 | monopd | 0.9.3-6 | - +- i386 | monotone | 1.0-6 | - +- i386 | monotone-viz | 1.0.2-2+b2 | - +- i386 | monster-masher | 1.8.1-6 | - +- i386 | monsterz | 0.7.1-4 | - +- i386 | moodbar | 0.1.2-3 | - +- i386 | moon-buggy | 1.0.51-9.1 | - +- i386 | moon-buggy-esd | 1.0.51-9.1 | - +- i386 | moon-lander | 1:1.0-4.1 | - +- i386 | mooproxy | 1.0.0-1 | - +- i386 | mopac7-bin | 1.15-5 | - +- i386 | mopd | 1:2.5.3-21 | - +- i386 | moreutils | 0.47 | - +- i386 | moria | 5.6-2 | - +- i386 | morla | 0.16.1-1.1 | - +- i386 | morse | 2.4-2 | - +- i386 | morse-simulator | 0.5.2-1 | - +- i386 | morsegen | 0.2.1-1 | - +! i386 | mosh | 1.2.3-1 | 1.2.4a-1~bpo70+1 +- i386 | mosquitto | 0.15-2 | - +- i386 | mosquitto-clients | 0.15-2 | - +- i386 | most | 5.0.0a-2.1 | - +- i386 | mothur | 1.24.1-1 | - +- i386 | motion | 3.2.12-3.4 | - +- i386 | mount | 2.20.1-5.3 | - +- i386 | mountall | 2.46 | - +- i386 | mountpy | 0.8.1 | - +- i386 | mouseemu | 0.15-9 | - +- i386 | mousepad | 0.2.16-6 | - +- i386 | mousetrap | 0.9-2.2 | - +- i386 | mousetweaks | 3.4.2-1 | - +- i386 | mozart | 1.4.0-8 | - +- i386 | mozc-server | 1.5.1090.102-4+deb7u1 | - +- i386 | mozc-utils-gui | 1.5.1090.102-4+deb7u1 | - +- i386 | mozilla-gtk-vnc | 0.5.0-3.1 | - +- i386 | mozilla-plugin-vlc | 2.0.0-2 | - +- i386 | mp | 3.7.1-11 | - +- i386 | mp3blaster | 1:3.2.5-3 | - +- i386 | mp3check | 0.8.7-1 | - +- i386 | mp3diags | 1.0.11.076-3 | - +- i386 | mp3fs | 0.31-28-g7b30a54-1 | - +- i386 | mp3gain | 1.5.2-r2-2 | - +- i386 | mp3info | 0.8.5a-1 | - +- i386 | mp3info-gtk | 0.8.5a-1 | - +- i386 | mp3rename | 0.6-9 | - +- i386 | mp3splt | 2.4.2-2 | - +- i386 | mp3splt-gtk | 0.7.2-2 | - +- i386 | mp3val | 0.1.8-1 | - +- i386 | mp3wrap | 0.5-3 | - +- i386 | mp4h | 1.3.1-6 | - +- i386 | mp4v2-dbg | 2.0.0~dfsg0-1 | - +- i386 | mp4v2-utils | 2.0.0~dfsg0-1 | - +- i386 | mpack | 1.6-8 | - +- i386 | mpage | 2.5.6-1 | - +- i386 | mpb | 1.4.2-18 | - +- i386 | mpb-mpi | 1.4.2-18 | - +- i386 | mpc | 0.22-1 | - +- i386 | mpc123 | 0.2.4-2 | - +! i386 | mpd | 0.16.7-2 | 0.17.6-1~bpo70+1 +! i386 | mpd-dbg | 0.16.7-2 | 0.17.6-1~bpo70+1 +- i386 | mpdcon.app | 1.1.99-5+b3 | - +- i386 | mpdcron | 0.3+git20110303-3 | - +- i386 | mpdscribble | 0.22-3 | - +- i386 | mpdscribble-dbg | 0.22-3 | - +- i386 | mpeg2dec | 0.4.1-3 | - +- i386 | mpeg3-utils | 1.5.4-5 | - +- i386 | mpegdemux | 0.1.4-3 | - +- i386 | mpg123 | 1.14.4-1 | - +- i386 | mpg321 | 0.3.2-1.1 | - +- i386 | mpgtx | 1.3.1-5 | - +- i386 | mpi-default-bin | 1.0.1 | - +- i386 | mpi-default-dev | 1.0.1 | - +- i386 | mpich2 | 1.4.1-4.2 | - +- i386 | mpich2python | 2.8-4 | - +- i386 | mpikmeans-tools | 1.5-1+b1 | - +- i386 | mplayer | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- i386 | mplayer-dbg | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- i386 | mplayer-gui | 2:1.0~rc4.dfsg1+svn34540-1+b2 | - +- i386 | mplayer2 | 2.0-554-gf63dbad-1+b1 | - +- i386 | mplayer2-dbg | 2.0-554-gf63dbad-1+b1 | - +- i386 | mplayerthumbs | 4:4.8.4-2 | - +- i386 | mpop | 1.0.27-1 | - +- i386 | mpop-gnome | 1.0.27-1 | - +- i386 | mppenc | 1.16-1.1 | - +- i386 | mpqc | 2.3.1-14 | - +- i386 | mpqc-support | 2.3.1-14 | - +- i386 | mpt-status | 1.2.0-7 | - +- i386 | mrbayes | 3.2.1+dfsg-1 | - +- i386 | mrbayes-dbg | 3.2.1+dfsg-1 | - +- i386 | mrbayes-mpi | 3.2.1+dfsg-1 | - +- i386 | mrd6 | 0.9.6-10 | - +- i386 | mriconvert | 2.0.235-1 | - +- i386 | mricron | 0.20120505.1~dfsg.1-1 | - +- i386 | mrtg | 2.17.4-2 | - +- i386 | mrtgutils | 0.8.1 | - +- i386 | mrtgutils-sensors | 0.8.1 | - +- i386 | mrtrix | 0.2.10-2 | - +- i386 | mrxvt | 0.5.4-1.1 | - +- i386 | mrxvt-cjk | 0.5.4-1.1 | - +- i386 | mrxvt-mini | 0.5.4-1.1 | - +- i386 | mscgen | 0.20-2 | - +- i386 | mscompress | 0.3-4 | - +- i386 | msgpack-python | 0.1.10-1 | - +- i386 | msmtp | 1.4.28-1 | - +- i386 | msmtp-gnome | 1.4.28-1 | - +- i386 | msn-pecan | 0.1.3-1 | - +- i386 | msn-pecan-dbg | 0.1.3-1 | - +- i386 | msort | 8.52-1.3+b1 | - +- i386 | msp430-libc | 20120224-1 | - +- i386 | mspdebug | 0.19-1 | - +- i386 | msr-tools | 1.2-3 | - +- i386 | msrtool | 0.0+r4091-1 | - +- i386 | mssh | 1.2-1.1+b1 | - +- i386 | mstflint | 1.4-OFED-1.4.2-1 | - +- i386 | mswatch | 1.2.0-2.1 | - +- i386 | mt-st | 1.1-4 | - +- i386 | mtasc | 1.14-2 | - +- i386 | mtbl-bin | 0.2-1 | - +- i386 | mtd-utils | 1:1.5.0-1 | - +- i386 | mtdev-tools | 1.1.2-1 | - +- i386 | mtink | 1.0.16-6 | - +- i386 | mtools | 4.0.17-1 | - +- i386 | mtp-tools | 1.1.3-35-g0ece104-5 | - +- i386 | mtpaint | 3.40-1+b1 | - +- i386 | mtr | 0.82-3 | - +- i386 | mtr-tiny | 0.82-3 | - +- i386 | mtx | 1.3.12-4 | - +- i386 | mu-cade | 0.11.dfsg1-6 | - +- i386 | muddleftpd | 1.3.13.1-4.3 | - +- i386 | mudita24 | 1.0.3+svn13-4 | - +- i386 | mudita24-dbg | 1.0.3+svn13-4 | - +- i386 | mudlet | 2.0-rc12-3 | - +- i386 | multiarch-support | 2.13-38+deb7u1 | - +- i386 | multicat | 2.0-3 | - +- i386 | multiget | 1.2.0-3 | - +- i386 | multimail | 0.49-2 | - +- i386 | multimon | 1.0-5 | - +- i386 | multipath-tools | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- i386 | multipath-tools-dbg | 0.4.9+git0.4dfdaf2b-7~deb7u2 | - +- i386 | multitail | 5.2.9-1 | - +- i386 | multitee | 3.0-4 | - +- i386 | multiwatch | 1.0.0-rc1-2 | - +- i386 | mumble | 1.2.3-349-g315b5f5-2.2 | - +- i386 | mumble-dbg | 1.2.3-349-g315b5f5-2.2 | - +- i386 | mumble-server | 1.2.3-349-g315b5f5-2.2 | - +- i386 | mummer | 3.23~dfsg-2 | - +- i386 | mummy | 1.0.2-5 | - +- i386 | mumps-test | 4.10.0.dfsg-3 | - +- i386 | mumudvb | 1.7.1-1 | - +- i386 | munge | 0.5.10-1 | - +- i386 | mupdf | 0.9-2 | - +- i386 | mupdf-tools | 0.9-2 | - +- i386 | mupen64plus-audio-sdl | 1.99.5-2 | - +- i386 | mupen64plus-audio-sdl-dbg | 1.99.5-2 | - +- i386 | mupen64plus-input-sdl | 1.99.5-2 | - +- i386 | mupen64plus-input-sdl-dbg | 1.99.5-2 | - +- i386 | mupen64plus-rsp-hle | 1.99.5-3 | - +- i386 | mupen64plus-rsp-hle-dbg | 1.99.5-3 | - +- i386 | mupen64plus-rsp-z64 | 1.99.4+31+1374ffc147ad-4 | - +- i386 | mupen64plus-rsp-z64-dbg | 1.99.4+31+1374ffc147ad-4 | - +- i386 | mupen64plus-ui-console | 1.99.5-3 | - +- i386 | mupen64plus-ui-console-dbg | 1.99.5-3 | - +- i386 | mupen64plus-video-arachnoid | 1.99.4+39+ada2d63714fd-3 | - +- i386 | mupen64plus-video-arachnoid-dbg | 1.99.4+39+ada2d63714fd-3 | - +- i386 | mupen64plus-video-glide64 | 1.99.4+37+a1c35b79de0d-3 | - +- i386 | mupen64plus-video-glide64-dbg | 1.99.4+37+a1c35b79de0d-3 | - +- i386 | mupen64plus-video-rice | 1.99.5-3 | - +- i386 | mupen64plus-video-rice-dbg | 1.99.5-3 | - +- i386 | mupen64plus-video-z64 | 1.99.4+30+daa3f1b2fe76-3 | - +- i386 | mupen64plus-video-z64-dbg | 1.99.4+30+daa3f1b2fe76-3 | - +- i386 | muroard | 0.1.10-2 | - +- i386 | muroard-dbg | 0.1.10-2 | - +- i386 | muroard-dev | 0.1.10-2 | - +- i386 | muscle | 1:3.8.31-1 | - +- i386 | muse | 2.0-1 | - +- i386 | museekd | 1:0.2+svn20100315.r1208-2 | - +- i386 | museeq | 1:0.2+svn20100315.r1208-2 | - +- i386 | musepack-tools | 2:0.1~r459-4 | - +- i386 | musescore | 1.2+dfsg-1 | - +- i386 | music-bin | 1.0.7-1.2 | - +- i386 | music123 | 16.3-3 | - +- i386 | musique | 1.1-2.1 | - +- i386 | musixtex | 1:0.115-4 | - +- i386 | mustang | 3.2.1-3 | - +- i386 | mustang-plug | 1.1-2 | - +- i386 | mutextrace | 0.1-1 | - +- i386 | mutrace | 0.2.0-2 | - +- i386 | mutt | 1.5.21-6.2+deb7u1 | - +- i386 | mutt-dbg | 1.5.21-6.2+deb7u1 | - +- i386 | mutt-patched | 1.5.21-6.2+deb7u1 | - +- i386 | mutter | 3.4.1-5 | - +- i386 | mutter-dbg | 3.4.1-5 | - +- i386 | mwrap | 0.33-1 | - +- i386 | mxallowd | 1.9-1 | - +- i386 | mydumper | 0.5.1-3 | - +- i386 | mypaint | 1.0.0-1 | - +- i386 | myproxy | 5.6-1 | - +- i386 | myproxy-admin | 5.6-1 | - +- i386 | myproxy-dbg | 5.6-1 | - +- i386 | myproxy-server | 5.6-1 | - +- i386 | myrescue | 0.9.4-5+b1 | - +- i386 | myspell-tools | 1:3.1-24 | - +- i386 | mysql-client-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- i386 | mysql-proxy | 0.8.1-1.1+b1 | - +- i386 | mysql-server-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- i386 | mysql-server-core-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- i386 | mysql-source-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- i386 | mysql-testsuite-5.5 | 5.5.33+dfsg-0+wheezy1 | - +- i386 | mysql-workbench | 5.2.40+dfsg-2 | - +- i386 | mysqltcl | 3.051-1+b1 | - +- i386 | mysqmail-courier-logger | 0.4.9-10 | - +- i386 | mysqmail-dovecot-logger | 0.4.9-10 | - +- i386 | mysqmail-postfix-logger | 0.4.9-10 | - +- i386 | mysqmail-pure-ftpd-logger | 0.4.9-10 | - +- i386 | mythtvfs | 0.6.1-3 | - +- i386 | mz | 0.40-1 | - +- i386 | n2n | 1.3.1~svn3789-1 | - +- i386 | nabi | 0.99.11-2 | - +- i386 | nacl-tools | 20110221-4 | - +- i386 | nagios-nrpe-plugin | 2.13-3 | - +- i386 | nagios-nrpe-server | 2.13-3 | - +! i386 | nagios-plugins-basic | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios-plugins-common | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios-plugins-contrib | 4.20120702 | 9.20140106~bpo70+1 +! i386 | nagios-plugins-standard | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios3 | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-cgi | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-core | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-dbg | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +- i386 | nagiosgrapher | 1.7.1-4 | - +- i386 | nagircbot | 0.0.33-2 | - +- i386 | nailgun | 0.7.1-3 | - +- i386 | nam | 1.15-1 | - +- i386 | nam-dbg | 1.15-1 | - +- i386 | namazu2 | 2.0.21-6 | - +- i386 | nana | 2.5-12 | - +- i386 | nano | 2.2.6-1+b1 | - +- i386 | nano-tiny | 2.2.6-1+b1 | - +- i386 | nap | 1.5.4-7.1 | - +- i386 | nas | 1.9.3-5wheezy1 | - +- i386 | nas-bin | 1.9.3-5wheezy1 | - +- i386 | nasm | 2.10.01-1 | - +- i386 | naspro-bridges | 0.4.1-1 | - +- i386 | nast | 0.2.0-6 | - +- i386 | nasty | 0.6-2 | - +- i386 | natpmp-utils | 20110808-3 | - +- i386 | nautilus | 3.4.2-1+build1 | - +- i386 | nautilus-actions | 3.2.2-1 | - +- i386 | nautilus-dbg | 3.4.2-1+build1 | - +- i386 | nautilus-filename-repairer | 0.1.1-2 | - +- i386 | nautilus-gtkhash | 0.6.0-4 | - +- i386 | nautilus-image-converter | 0.3.1~git20110416-1 | - +- i386 | nautilus-open-terminal | 0.19-2+b1 | - +- i386 | nautilus-sendto | 3.0.3-2+b1 | - +- i386 | nautilus-sendto-empathy | 3.4.2.3-2+deb7u1 | - +- i386 | nautilus-share | 0.7.3-1+b1 | - +- i386 | nautilus-wipe | 0.1.1-3 | - +- i386 | navit | 0.5.0~svn5126+dfsg.1-3 | - +- i386 | navit-graphics-gtk-drawing-area | 0.5.0~svn5126+dfsg.1-3 | - +- i386 | navit-graphics-qt-qpainter | 0.5.0~svn5126+dfsg.1-3 | - +- i386 | navit-gui-gtk | 0.5.0~svn5126+dfsg.1-3 | - +- i386 | navit-gui-internal | 0.5.0~svn5126+dfsg.1-3 | - +- i386 | nbd-client | 1:3.2-4~deb7u4 | - +- i386 | nbd-server | 1:3.2-4~deb7u4 | - +- i386 | nbibtex | 0.9.18-10 | - +- i386 | nbtscan | 1.5.1-6 | - +- i386 | ncaptool | 1.9.2-1+b2 | - +- i386 | ncbi-blast+ | 2.2.26-3 | - +- i386 | ncbi-epcr | 2.3.12-1-1 | - +- i386 | ncbi-tools-bin | 6.1.20120620-2 | - +- i386 | ncbi-tools-x11 | 6.1.20120620-2 | - +- i386 | ncc | 2.8-1 | - +- i386 | ncdt | 2.1-3 | - +- i386 | ncdu | 1.8-1 | - +- i386 | ncftp | 2:3.2.5-1.1 | - +- i386 | ncmpc | 0.17-1 | - +- i386 | ncmpcpp | 0.5.10-1.1 | - +- i386 | nco | 4.0.9-1+b1 | - +- i386 | ncoils | 2002-3 | - +- i386 | ncompress | 4.2.4.4-5 | - +- i386 | ncpfs | 2.2.6-9 | - +- i386 | ncurses-bin | 5.9-10 | - +- i386 | ncurses-examples | 5.9-10 | - +- i386 | ncurses-hexedit | 0.9.7-14.1 | - +- i386 | ncview | 1.93g-1+b3 | - +- i386 | nd | 0.8.2-6 | - +- i386 | ndisc6 | 1.0.1-1+b1 | - +- i386 | ndisgtk | 0.8.5-1 | - +- i386 | ndiswrapper-utils-1.9 | 1.57-1 | - +- i386 | ndoutils-common | 1.4b9-1.1+b1 | - +- i386 | ndoutils-nagios3-mysql | 1.4b9-1.1+b1 | - +- i386 | ndpmon | 1.4.0-2 | - +- i386 | ndtpd | 1:1.0.dfsg.1-4.3 | - +- i386 | ne | 2.4-1 | - +- i386 | nec | 2-16 | - +- i386 | nec2c | 0.8-3 | - +- i386 | necpp | 1.5.0+cvs20101003-2.1 | - +- i386 | nedit | 1:5.6~cvs20081118-7 | - +- i386 | nedit-dbg | 1:5.6~cvs20081118-7 | - +- i386 | neko | 1.8.1-6+b1 | - +- i386 | nekobee | 0.1.7-3 | - +- i386 | nemiver | 0.9.2-1 | - +- i386 | net-acct | 0.71-9 | - +- i386 | net-tools | 1.60-24.2 | - +- i386 | netanim | 3.100-1 | - +- i386 | netatalk | 2.2.2-1 | - +- i386 | netcat-openbsd | 1.105-7 | - +- i386 | netcat-traditional | 1.10-40 | - +- i386 | netcat6 | 1.0-8 | - +- i386 | netcdf-bin | 1:4.1.3-6+b1 | - +- i386 | netcdf-dbg | 1:4.1.3-6+b1 | - +- i386 | netcf | 0.1.9-2 | - +- i386 | netdiag | 1.1-1 | - +- i386 | netdiscover | 0.3beta6+20080409-5 | - +- i386 | netdiscover-dbg | 0.3beta6+20080409-5 | - +- i386 | netemul | 1.0.0-2 | - +- i386 | netexpect | 0.20-3 | - +- i386 | nethack-common | 3.4.3-14 | - +- i386 | nethack-console | 3.4.3-14 | - +- i386 | nethack-lisp | 3.4.3-14 | - +- i386 | nethack-x11 | 3.4.3-14 | - +- i386 | nethogs | 0.8.0-1 | - +- i386 | netmask | 2.3.12 | - ++ i386 | netmate | - | 0.2.0-3~bpo70+1 +- i386 | netmaze | 0.81+jpg0.82-14 | - +- i386 | netmrg | 0.20-6.1 | - +- i386 | netpanzer | 0.8.4.debian.1-1.1 | - +- i386 | netpanzer-dbg | 0.8.4.debian.1-1.1 | - +- i386 | netpbm | 2:10.0-15+b1 | - +- i386 | netperfmeter | 1.1.7-1.1 | - +- i386 | netpipe-lam | 3.7.2-7 | - +- i386 | netpipe-mpich2 | 3.7.2-7 | - +- i386 | netpipe-openmpi | 3.7.2-7 | - +- i386 | netpipe-pvm | 3.7.2-7 | - +- i386 | netpipe-tcp | 3.7.2-7 | - +- i386 | netpipes | 4.2-6 | - +- i386 | netplan | 1.10.1-2 | - +- i386 | netplug | 1.2.9.2-1 | - +- i386 | netrek-client-cow | 3.3.0-3 | - +- i386 | netrik | 1.16.1-1.1 | - +- i386 | netris | 0.52-9 | - +- i386 | netrw | 1.3.2-2 | - +- i386 | netsed | 1.00b-2.1 | - +- i386 | netselect | 0.3.ds1-25 | - +- i386 | netsend | 0.0~svnr250-1.1 | - +- i386 | netsniff-ng | 0.5.7-1 | - +- i386 | netspeed | 0.16-3 | - +- i386 | netstat-nat | 1.4.10-2 | - +- i386 | netsurf-fb | 2.9-2 | - +- i386 | netsurf-gtk | 2.9-2 | - +! i386 | nettle-bin | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nettle-dbg | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nettle-dev | 2.4-3 | 2.7.1-1~bpo70+1 +- i386 | nettoe | 1.3.2-1 | - +- i386 | network-manager | 0.9.4.0-10 | - +- i386 | network-manager-dbg | 0.9.4.0-10 | - +- i386 | network-manager-dev | 0.9.4.0-10 | - +- i386 | network-manager-gnome | 0.9.4.1-5 | - +- i386 | network-manager-iodine | 0.0.3-1 | - +- i386 | network-manager-iodine-gnome | 0.0.3-1 | - +- i386 | network-manager-kde | 1:0.9.0.3-1 | - +- i386 | network-manager-openconnect | 0.9.4.0-8 | - +- i386 | network-manager-openconnect-gnome | 0.9.4.0-8 | - +- i386 | network-manager-openvpn | 0.9.4.0-1 | - +- i386 | network-manager-openvpn-gnome | 0.9.4.0-1 | - +- i386 | network-manager-pptp | 0.9.4.0-2 | - +- i386 | network-manager-pptp-gnome | 0.9.4.0-2 | - +- i386 | network-manager-strongswan | 1.3.0-1 | - +- i386 | network-manager-vpnc | 0.9.4.0-1 | - +- i386 | network-manager-vpnc-gnome | 0.9.4.0-1 | - +- i386 | netwox | 5.36.0-1.2 | - +- i386 | neverball | 1.5.4-5 | - +- i386 | neverball-dbg | 1.5.4-5 | - +- i386 | neverputt | 1.5.4-5 | - +- i386 | newmail | 0.5-2 | - +- i386 | newsbeuter | 2.5-2 | - +- i386 | newt-tcl | 0.52.14-11.1 | - +- i386 | nexus-tools | 4.2.1-svn1614-1+b2 | - +- i386 | nfdump | 1.6.6-1 | - +- i386 | nfdump-dbg | 1.6.6-1 | - +- i386 | nfdump-flow-tools | 1.6.6-1 | - +- i386 | nfdump-sflow | 1.6.6-1 | - +- i386 | nfqueue-bindings-perl | 0.4-3 | - +- i386 | nfqueue-bindings-python | 0.4-3 | - +- i386 | nfs-common | 1:1.2.6-4 | - +- i386 | nfs-kernel-server | 1:1.2.6-4 | - +- i386 | nfs4-acl-tools | 0.3.3-2 | - +- i386 | nfswatch | 4.99.11-2 | - +- i386 | ng-cjk | 1.5~beta1-3 | - +- i386 | ng-cjk-canna | 1.5~beta1-3 | - +- i386 | ng-latin | 1.5~beta1-3 | - +- i386 | ng-utils | 0.7-1 | - +- i386 | nget | 0.27.1-11 | - +- i386 | ngetty | 1.0-1 | - +! i386 | nginx-extras | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-extras-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-full | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-full-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-light | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-light-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-naxsi | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-naxsi-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +- i386 | ngircd | 19.2-2 | - +- i386 | ngorca | 1.0.2-2+b1 | - +- i386 | ngraph-gtk | 6.06.06-1 | - +- i386 | ngraph-gtk-addins-base | 6.06.06-1 | - +- i386 | ngrep | 1.45.ds2-12 | - +- i386 | nickle | 2.76-1 | - +- i386 | nictools-pci | 1.3.8-1.2 | - +- i386 | nifti-bin | 2.0.0-1 | - +- i386 | nih-dbus-tool | 1.0.3-4.1 | - +- i386 | nikwi | 0.0.20060823-2 | - +- i386 | nilfs-tools | 2.1.3-1 | - +- i386 | nilfs-tools-dbg | 2.1.3-1 | - +- i386 | ninix-aya | 4.3.9-1 | - +- i386 | ninja | 0.1.3-2 | - +- i386 | ninvaders | 0.1.1-3 | - +- i386 | nip2 | 7.28.4-1 | - +- i386 | nis | 3.17-32 | - +- i386 | nitpic | 0.1-13 | - +- i386 | nitrogen | 1.5.2-1 | - +- i386 | njam | 1.25-5.2 | - +- i386 | njplot | 2.4-1 | - +- i386 | nkf | 2.12-1 | - +- i386 | nlkt | 0.3.2.2-1 | - +- i386 | nload | 0.7.4-1 | - +! i386 | nmap | 6.00-0.3+deb7u1 | 6.40-0.1~bpo70+1 +- i386 | nmapsi4 | 0.3.1-1 | - +- i386 | nmh | 1.5-release-0.2 | - +- i386 | nmon | 13g+debian-1 | - +- i386 | nmzmail | 1.1-1 | - +- i386 | nn | 6.7.3-8 | - +- i386 | nodau | 0.3~rc6-1 | - ++ i386 | nodejs | - | 0.10.21~dfsg1-1~bpo7+1 ++ i386 | nodejs-dbg | - | 0.10.21~dfsg1-1~bpo7+1 ++ i386 | nodejs-dev | - | 0.10.21~dfsg1-1~bpo7+1 +- i386 | nodm | 0.11-1.3 | - +- i386 | noiz2sa | 0.51a-9+b1 | - +- i386 | nomarch | 1.4-3 | - +- i386 | nomnom | 0.3.1-1 | - +- i386 | normalize-audio | 0.7.7-11 | - +- i386 | notebook-gtk2 | 0.2rel-2.2 | - +- i386 | notification-daemon | 0.7.6-1 | - +- i386 | notify-osd | 0.9.34-2 | - +! i386 | notmuch | 0.13.2-1 | 0.16-1~bpo70+1 ++ i386 | notmuch-dbg | - | 0.16-1~bpo70+1 +- i386 | novnc | 2012.1~e3+dfsg+1-4 | - +- i386 | noweb | 2.11b-7.1 | - +- i386 | nowhere | 110.74-2 | - +- i386 | nqc | 3.1.r6-1 | - +- i386 | nqp | 0.1~2012.01-5 | - +- i386 | nrg2iso | 0.4-4 | - +- i386 | nrss | 0.3.9-1 | - +- i386 | ns2 | 2.35+dfsg-1 | - +- i386 | ns2-dbg | 2.35+dfsg-1 | - +- i386 | nsca | 2.9.1-2 | - +- i386 | nsca-client | 2.9.1-2 | - +- i386 | nscd | 2.13-38+deb7u1 | - +- i386 | nsd3 | 3.2.12-3+deb7u1 | - +- i386 | nsis | 2.46-7 | - +- i386 | nslcd | 0.8.10-4 | - +- i386 | nslint | 3.0a2-1.1 | - +- i386 | nss-passwords | 0.1.1-1 | - +- i386 | nss-updatedb | 10-2+b1 | - +- i386 | nstreams | 1.0.3-2+b1 | - ++ i386 | ntdb-tools | - | 1.0-2~bpo70+1 +- i386 | nted | 1.10.18-4 | - +- i386 | ntfs-3g | 1:2012.1.15AR.5-2.1 | - +- i386 | ntfs-3g-dbg | 1:2012.1.15AR.5-2.1 | - +- i386 | ntfs-3g-dev | 1:2012.1.15AR.5-2.1 | - +- i386 | ntfs-config | 1.0.1-10 | - +- i386 | ntop | 3:4.99.3+ndpi5517+dfsg3-1 | - +- i386 | ntop-dbg | 3:4.99.3+ndpi5517+dfsg3-1 | - +- i386 | ntp | 1:4.2.6.p5+dfsg-2 | - +- i386 | ntpdate | 1:4.2.6.p5+dfsg-2 | - +- i386 | ntrack-module-libnl-0 | 016-1.1 | - +- i386 | ntrack-module-rtnetlink-0 | 016-1.1 | - +- i386 | nuapplet | 2.3.0-2 | - +- i386 | nuauth | 2.4.3-2.2 | - +- i386 | nuauth-extra | 2.4.3-2.2 | - +- i386 | nuauth-log-mysql | 2.4.3-2.2 | - +- i386 | nuauth-log-pgsql | 2.4.3-2.2 | - +- i386 | nufw | 2.4.3-2.2 | - +- i386 | nullidentd | 1.0-5 | - +- i386 | nullmailer | 1:1.11-2 | - +- i386 | numactl | 2.0.8~rc4-1 | - +- i386 | numconv | 2.7-1.1 | - +- i386 | numdiff | 5.6.0-1 | - +- i386 | numlockx | 1.2-4 | - +- i386 | numptyphysics | 0.2+svn156-1.1 | - +- i386 | nurpawiki | 1.2.3-5+b17 | - +- i386 | nut-cgi | 2.6.4-2.3+deb7u1 | - +- i386 | nut-client | 2.6.4-2.3+deb7u1 | - +- i386 | nut-nutrition | 15.5-1 | - +- i386 | nut-powerman-pdu | 2.6.4-2.3+deb7u1 | - +- i386 | nut-server | 2.6.4-2.3+deb7u1 | - +- i386 | nut-snmp | 2.6.4-2.3+deb7u1 | - +- i386 | nut-xml | 2.6.4-2.3+deb7u1 | - +- i386 | nutcpc | 2.4.3-2.2 | - +- i386 | nuttcp | 6.1.2-4 | - +- i386 | nvclock | 0.8b4+cvs20100914-4 | - +- i386 | nvclock-gtk | 0.8b4+cvs20100914-4 | - +- i386 | nvclock-qt | 0.8b4+cvs20100914-4 | - +- i386 | nvi | 1.81.6-8.2 | - ++ i386 | nvidia-alternative | - | 319.82-1~bpo70+1 ++ i386 | nvidia-alternative-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-alternative-legacy-96xx | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-cuda-dev | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-cuda-gdb | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-cuda-mps | - | 319.82-1~bpo70+1 ++ i386 | nvidia-cuda-toolkit | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-detect | - | 319.82-1~bpo70+1 ++ i386 | nvidia-driver | - | 319.82-1~bpo70+1 ++ i386 | nvidia-glx | - | 319.82-1~bpo70+1 ++ i386 | nvidia-glx-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-glx-legacy-96xx | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-installer-cleanup | - | 20131102+1~bpo70+1 ++ i386 | nvidia-kernel-3.12-0.bpo.1-486 | - | 319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1 ++ i386 | nvidia-kernel-3.12-0.bpo.1-686-pae | - | 319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1 ++ i386 | nvidia-kernel-3.12-0.bpo.1-amd64 | - | 319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1 ++ i386 | nvidia-kernel-486 | - | 319.82+3.12+1~bpo70+1 ++ i386 | nvidia-kernel-686-pae | - | 319.82+3.12+1~bpo70+1 ++ i386 | nvidia-kernel-amd64 | - | 319.82+3.12+1~bpo70+1 ++ i386 | nvidia-kernel-common | - | 20131102+1~bpo70+1 ++ i386 | nvidia-kernel-dkms | - | 319.82-1~bpo70+1 ++ i386 | nvidia-kernel-legacy-173xx-dkms | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-kernel-legacy-173xx-source | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-kernel-legacy-96xx-dkms | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-kernel-legacy-96xx-source | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-kernel-source | - | 319.82-1~bpo70+1 ++ i386 | nvidia-legacy-173xx-driver | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-legacy-173xx-kernel-dkms | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-legacy-173xx-kernel-source | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-legacy-304xx-alternative | - | 304.117-1~bpo70+1 ++ i386 | nvidia-legacy-304xx-driver | - | 304.117-1~bpo70+1 ++ i386 | nvidia-legacy-304xx-kernel-dkms | - | 304.117-1~bpo70+1 ++ i386 | nvidia-legacy-304xx-kernel-source | - | 304.117-1~bpo70+1 ++ i386 | nvidia-legacy-96xx-driver | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-legacy-96xx-kernel-dkms | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-legacy-96xx-kernel-source | - | 96.43.23-7~bpo70+1 ++ i386 | nvidia-libopencl1 | - | 319.82-1~bpo70+1 ++ i386 | nvidia-nsight | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-opencl-common | - | 319.82-1~bpo70+1 ++ i386 | nvidia-opencl-dev | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-opencl-icd | - | 319.82-1~bpo70+1 ++ i386 | nvidia-profiler | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-settings | - | 319.72-1~bpo70+1 ++ i386 | nvidia-settings-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ i386 | nvidia-settings-legacy-304xx | - | 304.116-1~bpo70+1 ++ i386 | nvidia-settings-legacy-96xx | - | 96.43.20-2~bpo70+1 ++ i386 | nvidia-smi | - | 319.82-1~bpo70+1 ++ i386 | nvidia-support | - | 20131102+1~bpo70+1 ++ i386 | nvidia-vdpau-driver | - | 319.82-1~bpo70+1 ++ i386 | nvidia-visual-profiler | - | 5.0.35-8~bpo70+1 ++ i386 | nvidia-xconfig | - | 319.72-1~bpo70+1 +- i386 | nvram-wakeup | 1.1-1 | - +- i386 | nvramtool | 0.0+r3669-2.2 | - +- i386 | nvtv | 0.4.7-7 | - +- i386 | nwall | 1.32+debian-4.1 | - +- i386 | nwchem | 6.1-6 | - +- i386 | nwrite | 1.9.2-20.1 | - +- i386 | nxproxy | 3.5.0.12-1+b1 | - +- i386 | nyancat | 1.0+git20120523.99dc310-1 | - +- i386 | nypatchy | 20061220+dfsg3-2 | - +- i386 | nyquist | 3.05-2 | - +- i386 | nzb | 0.2-1 | - +- i386 | nzbget | 0.7.0-2 | - +- i386 | oaklisp | 1.3.3-5 | - +- i386 | oar-admin | 2.5.2-3 | - +- i386 | oar-common | 2.5.2-3 | - +- i386 | oar-node | 2.5.2-3 | - +- i386 | oar-restful-api | 2.5.2-3 | - +- i386 | oar-server | 2.5.2-3 | - +- i386 | oar-server-mysql | 2.5.2-3 | - +- i386 | oar-server-pgsql | 2.5.2-3 | - +- i386 | oar-user | 2.5.2-3 | - +- i386 | oar-user-mysql | 2.5.2-3 | - +- i386 | oar-user-pgsql | 2.5.2-3 | - +- i386 | oasis3 | 3.3.beta.dfsg.1-8+b1 | - +- i386 | oasis3-examples | 3.3.beta.dfsg.1-8+b1 | - +- i386 | oath-dbg | 1.12.4-1 | - +- i386 | oathtool | 1.12.4-1 | - +- i386 | obconf | 1:2.0.3+20110805+debian-1 | - +- i386 | obdgpslogger | 0.16-1.2 | - +- i386 | obex-data-server | 0.4.5-1+b3 | - +- i386 | obexd-client | 0.46-1+b1 | - +- i386 | obexd-server | 0.46-1+b1 | - +- i386 | obexfs | 0.11-1 | - +- i386 | obexftp | 0.23-1.1 | - +- i386 | obexpushd | 0.11.2-1 | - +- i386 | obfsproxy | 0.1.4-2 | - +- i386 | objcryst-fox | 1.9.6.0-2 | - +- i386 | obmenu | 1.0-2+nmu1 | - +- i386 | obnam | 1.1-1.1 | - +- i386 | ocaml | 3.12.1-4 | - +- i386 | ocaml-base | 3.12.1-4 | - +- i386 | ocaml-base-nox | 3.12.1-4 | - +- i386 | ocaml-compiler-libs | 3.12.1-4 | - +- i386 | ocaml-findlib | 1.3.1-1 | - +- i386 | ocaml-findlib-wizard | 1.3.1-1 | - +- i386 | ocaml-interp | 3.12.1-4 | - +- i386 | ocaml-melt | 1.4.0-1 | - +- i386 | ocaml-native-compilers | 3.12.1-4 | - +- i386 | ocaml-nox | 3.12.1-4 | - +- i386 | ocaml-ulex | 1.1-2+b2 | - +- i386 | ocaml-ulex08 | 0.8-10+b2 | - +- i386 | ocamldsort | 0.15.0-2 | - +- i386 | ocamlduce | 3.12.1.0-1 | - +- i386 | ocamlduce-base | 3.12.1.0-1 | - +- i386 | ocamlgraph-editor | 1.8.2-2 | - +- i386 | ocamlmod | 0.0.2-3 | - +- i386 | ocamlviz | 1.01-2+b2 | - +- i386 | oce-draw | 0.9.1-3 | - +- i386 | ocfs2-tools | 1.6.4-1+deb7u1 | - +- i386 | ocfs2-tools-cman | 1.6.4-1+deb7u1 | - +- i386 | ocfs2-tools-dev | 1.6.4-1+deb7u1 | - +- i386 | ocfs2-tools-pacemaker | 1.6.4-1+deb7u1 | - +- i386 | ocfs2console | 1.6.4-1+deb7u1 | - +- i386 | ocl-icd-dev | 1.3-3 | - +- i386 | ocl-icd-libopencl1 | 1.3-3 | - +- i386 | ocl-icd-opencl-dev | 1.3-3 | - +- i386 | ocrad | 0.22~rc1-2 | - +- i386 | ocsigen | 1.3.4-2+b12 | - +- i386 | ocsigenserver | 2.1-1 | - +- i386 | octave | 3.6.2-5+deb7u1 | - +- i386 | octave-audio | 1.1.4-4 | - +- i386 | octave-biosig | 1.3.0-2 | - +- i386 | octave-communications | 1.1.1-1 | - +- i386 | octave-control | 2.3.52-1 | - +- i386 | octave-dbg | 3.6.2-5+deb7u1 | - +- i386 | octave-econometrics | 1:1.0.8-6 | - +- i386 | octave-fixed | 0.7.10-5 | - +- i386 | octave-gdf | 0.1.2-2 | - +- i386 | octave-general | 1.3.1-1 | - +- i386 | octave-geometry | 1.5.0-1 | - +- i386 | octave-gsl | 1.0.8-5 | - +- i386 | octave-image | 1.0.15-1 | - +- i386 | octave-io | 1.0.19-1 | - +- i386 | octave-java | 1.2.8-6 | - +- i386 | octave-lhapdf | 5.8.7+repack-1 | - +- i386 | octave-linear-algebra | 2.2.0-1 | - +- i386 | octave-miscellaneous | 1.1.0-1 | - +- i386 | octave-nan | 2.5.5-2 | - +- i386 | octave-nurbs | 1.3.6-1 | - +- i386 | octave-ocs | 0.1.3-1 | - +- i386 | octave-octcdf | 1.1.4-2 | - +- i386 | octave-octgpr | 1.2.0-3 | - +- i386 | octave-odepkg | 0.8.2-2 | - +- i386 | octave-openmpi-ext | 1.0.2-1 | - +- i386 | octave-optim | 1.2.0-1 | - +- i386 | octave-optiminterp | 0.3.3-2 | - +- i386 | octave-pfstools | 1.8.5-1 | - +- i386 | octave-plplot | 5.9.9-5 | - +- i386 | octave-psychtoolbox-3 | 3.0.9+svn2579.dfsg1-1 | - +- i386 | octave-quaternion | 2.0.0-1 | - +- i386 | octave-secs1d | 0.0.8-4 | - +- i386 | octave-secs2d | 0.0.8-4 | - +- i386 | octave-signal | 1.1.3-1 | - +- i386 | octave-sockets | 1.0.8-1 | - +- i386 | octave-specfun | 1.1.0-1 | - +- i386 | octave-strings | 1.1.0-1 | - +- i386 | octave-struct | 1.0.10-1 | - +- i386 | octave-sundials | 2.5.0-3 | - +- i386 | octave-symbolic | 1.1.0-1 | - +- i386 | octave-tsa | 4.2.4-1 | - +- i386 | odbc-postgresql | 1:09.01.0100-1+deb7u1 | - +- i386 | odbc-postgresql-dbg | 1:09.01.0100-1+deb7u1 | - +- i386 | odbcinst | 2.2.14p2-5 | - +- i386 | odbcinst1debian2 | 2.2.14p2-5 | - +- i386 | odin | 1.8.5-2 | - +- i386 | odt2txt | 0.4+git20100620-1+b1 | - +- i386 | ofono | 1.6-2 | - +- i386 | ofono-dbg | 1.6-2 | - +- i386 | ofono-phonesim | 1.17-1 | - +- i386 | ofx | 1:0.9.4-2.1 | - +- i386 | ogamesim | 1.17-1 | - +- i386 | ogdi-bin | 3.2.0~beta2-7 | - +- i386 | oggfwd | 0.2-6 | - +- i386 | oggvideotools | 0.8a-1 | - +- i386 | oggvideotools-dbg | 0.8a-1 | - +- i386 | oggz-tools | 1.1.1-1 | - +- i386 | ogmtools | 1:1.5-3+b1 | - +- i386 | ogre-1.8-tools | 1.8.0+dfsg1-3 | - +- i386 | ogre-tools | 1.7.4+dfsg1-7 | - +- i386 | ohcount | 3.0.0-6.1 | - +- i386 | oidentd | 2.0.8-5 | - +- i386 | oidua | 0.16.1-7 | - +- i386 | okteta | 4:4.8.4+dfsg-1 | - +- i386 | okteta-dev | 4:4.8.4+dfsg-1 | - +- i386 | okular | 4:4.8.4-3 | - +- i386 | okular-backend-odp | 1:2.4.4-3 | - +- i386 | okular-dbg | 4:4.8.4-3 | - +- i386 | okular-dev | 4:4.8.4-3 | - +- i386 | okular-extra-backends | 4:4.8.4-3 | - +- i386 | olpc-kbdshim | 27-1 | - +- i386 | olpc-powerd | 23-2 | - +- i386 | olsrd | 0.6.2-2.1 | - +- i386 | olsrd-gui | 0.6.2-2.1 | - +- i386 | olsrd-plugins | 0.6.2-2.1 | - +- i386 | olvwm | 4.4.3.2p1.4-28.1 | - +- i386 | olwm | 3.2p1.4-28.1 | - +- i386 | omake | 0.9.8.5-3-8 | - +- i386 | omega-rpg | 1:0.90-pa9-15 | - +- i386 | omhacks | 0.16-1 | - +- i386 | omins | 0.2.0-7.1 | - +- i386 | omnievents | 1:2.6.2-2 | - +- i386 | omniidl | 4.1.6-2 | - +- i386 | omniorb | 4.1.6-2 | - +- i386 | omniorb-nameserver | 4.1.6-2 | - +- i386 | onak | 0.4.1-1 | - +- i386 | oneko | 1.2.sakura.6-8 | - +- i386 | onesixtyone | 0.3.2-1 | - +- i386 | onetime | 1.122-1 | - +- i386 | onioncat | 0.2.2+svn553-3 | - +- i386 | onscripter | 20120531-2 | - +- i386 | ontv | 3.2.0-1 | - +- i386 | oolite | 1.76.1-2 | - +- i386 | opari | 1.1+dfsg-2 | - +! i386 | open-axiom | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | open-axiom-graphics | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | open-axiom-hypertex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +- i386 | open-cobol | 1.1-1 | - +- i386 | open-invaders | 0.3-3.2 | - +- i386 | open-iscsi | 2.0.873-3 | - +- i386 | open-jtalk | 1.05-1 | - +- i386 | open-vm-toolbox | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +- i386 | open-vm-tools | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +- i386 | open-vm-tools-dbg | 2:8.8.0+2012.05.21-724730-1+nmu2 | - +! i386 | openafs-client | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-dbg | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-dbserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-fileserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-fuse | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-kpasswd | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-krb5 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +- i386 | openais | 1.1.4-4.1 | - +- i386 | openais-dbg | 1.1.4-4.1 | - +- i386 | openais-dev | 1.1.4-4.1 | - +- i386 | openam | 1.4.0-1+b2 | - +- i386 | openarena | 0.8.8-5+deb7u2 | - +- i386 | openarena-dbg | 0.8.8-5+deb7u2 | - +- i386 | openarena-server | 0.8.8-5+deb7u2 | - +- i386 | openbabel | 2.3.1+dfsg-4 | - +- i386 | openbabel-gui | 2.3.1+dfsg-4 | - +! i386 | openbox | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | openbox-dev | 3.5.0-7 | 3.5.2-6~bpo70+1 +- i386 | openbsd-inetd | 0.20091229-2 | - +- i386 | opencc | 0.3.0-3 | - +- i386 | openchangeclient | 1:1.0-3 | - +- i386 | openchangeproxy | 1:1.0-3 | - +- i386 | openchangeserver | 1:1.0-3 | - +- i386 | openchangeserver-dev | 1:1.0-3 | - +- i386 | opencity | 0.0.6.4stable-1.1 | - +- i386 | openconnect | 3.20-4 | - +- i386 | opencryptoki | 2.3.1+dfsg-3 | - +- i386 | opencryptoki-dbg | 2.3.1+dfsg-3 | - +- i386 | openct | 0.6.20-1.2 | - +- i386 | opencubicplayer | 1:0.1.21-1.1 | - +- i386 | opendkim | 2.6.8-4 | - +- i386 | opendkim-tools | 2.6.8-4 | - +- i386 | opendnssec-dbg-mysql | 1:1.3.9-5 | - +- i386 | opendnssec-dbg-sqlite3 | 1:1.3.9-5 | - +- i386 | opendnssec-enforcer-mysql | 1:1.3.9-5 | - +- i386 | opendnssec-enforcer-sqlite3 | 1:1.3.9-5 | - +- i386 | opendnssec-signer | 1:1.3.9-5 | - +- i386 | openexr | 1.6.1-6 | - +- i386 | openexr-viewers | 1.0.1-6 | - +- i386 | openfetion | 2.2.1-3.2 | - +- i386 | openhpi-clients | 2.14.1-1.2 | - +- i386 | openhpi-plugin-ilo2-ribcl | 2.14.1-1.2 | - +- i386 | openhpi-plugin-ipmi | 2.14.1-1.2 | - +- i386 | openhpi-plugin-ipmidirect | 2.14.1-1.2 | - +- i386 | openhpi-plugin-oa-soap | 2.14.1-1.2 | - +- i386 | openhpi-plugin-snmp-bc | 2.14.1-1.2 | - +- i386 | openhpi-plugin-sysfs | 2.14.1-1.2 | - +- i386 | openhpi-plugin-watchdog | 2.14.1-1.2 | - +- i386 | openhpid | 2.14.1-1.2 | - +- i386 | openimageio-tools | 1.0.5+dfsg0-1 | - +- i386 | openipmi | 2.0.16-1.3 | - +- i386 | openjade | 1.4devel1-20.1+b1 | - +- i386 | openjade1.3 | 1.3.2-11.1+b1 | - +- i386 | openjdk-6-dbg | 6b27-1.12.5-1 | - +- i386 | openjdk-6-demo | 6b27-1.12.5-1 | - +- i386 | openjdk-6-jdk | 6b27-1.12.5-1 | - +- i386 | openjdk-6-jre | 6b27-1.12.5-1 | - +- i386 | openjdk-6-jre-headless | 6b27-1.12.5-1 | - +- i386 | openjdk-6-jre-zero | 6b27-1.12.5-1 | - +- i386 | openjdk-7-dbg | 7u3-2.1.7-1 | - +- i386 | openjdk-7-demo | 7u3-2.1.7-1 | - +- i386 | openjdk-7-jdk | 7u3-2.1.7-1 | - +- i386 | openjdk-7-jre | 7u3-2.1.7-1 | - +- i386 | openjdk-7-jre-headless | 7u3-2.1.7-1 | - +- i386 | openjdk-7-jre-zero | 7u3-2.1.7-1 | - +- i386 | openjpeg-tools | 1.3+dfsg-4.7 | - +- i386 | openload | 0.1.2-2 | - +- i386 | openmeeg-tools | 2.0.0.dfsg-5 | - +- i386 | openmpi-bin | 1.4.5-1 | - +- i386 | openmpi-checkpoint | 1.4.5-1 | - +- i386 | openmpipython | 2.8-4 | - +- i386 | openmsx | 0.8.2-2.1 | - +- i386 | openmsx-catapult | 0.8.2-1 | - +- i386 | openmsx-debugger | 0.0.0.svn20110306-3 | - +- i386 | openmx | 3.5-1 | - +- i386 | opennebula | 3.4.1-3.1 | - +- i386 | openntpd | 20080406p-4 | - +- i386 | openobex-apps | 1.5-2 | - +- i386 | openocd | 0.5.0-1 | - +- i386 | openpref | 0.1.3-1 | - ++ i386 | openrpt | - | 3.3.4-6~bpo70+1 +! i386 | opensaml2-tools | 2.4.3-4 | 2.5.3-2~bpo70+1 +- i386 | opensc | 0.12.2-3 | - +- i386 | openscad | 2011.12-3 | - +- i386 | openscad-dbg | 2011.12-3 | - +- i386 | openscad-testing | 2011.12-3 | - +- i386 | openscenegraph | 3.0.1-4 | - +- i386 | openscenegraph-plugin-citygml-shared | 0.14+svn128-1+3p0p1+4 | - +- i386 | openscenegraph-plugin-citygml-static | 0.14+svn128-1+3p0p1+4 | - +- i386 | openslide-tools | 3.2.6-2 | - +- i386 | opensm | 3.2.6-20090317-2.1 | - +- i386 | opensm-doc | 3.2.6-20090317-2.1 | - +- i386 | opensp | 1.5.2-10 | - +! i386 | openssh-client | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | openssh-server | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +- i386 | openssl | 1.0.1e-2+deb7u4 | - +- i386 | openssn | 1.3-1 | - +- i386 | openssn-dbg | 1.3-1 | - +- i386 | openswan | 1:2.6.37-3 | - +- i386 | openswan-dbg | 1:2.6.37-3 | - +- i386 | openswan-modules-dkms | 1:2.6.37-3 | - +- i386 | openttd | 1.2.1-3 | - +- i386 | openttd-dbg | 1.2.1-3 | - +- i386 | openturns-examples | 1.0-4 | - +- i386 | openuniverse | 1.0beta3.1+dfsg-3 | - +- i386 | openvanilla-imgeneric | 0.9.0a1.3+dfsg1-2.1 | - +! i386 | openvpn | 2.2.1-8+deb7u2 | 2.3.2-7~bpo70+1 +- i386 | openvpn-auth-ldap | 2.0.3-5.1 | - +- i386 | openvpn-auth-radius | 2.1-4 | - +- i386 | openvpn-auth-radius-dbg | 2.1-4 | - +- i386 | openvrml-lookat | 0.18.9-5+deb7u1 | - +- i386 | openvswitch-brcompat | 1.4.2+git20120612-9.1~deb7u1 | - +- i386 | openvswitch-common | 1.4.2+git20120612-9.1~deb7u1 | - +- i386 | openvswitch-controller | 1.4.2+git20120612-9.1~deb7u1 | - +- i386 | openvswitch-dbg | 1.4.2+git20120612-9.1~deb7u1 | - +- i386 | openvswitch-ipsec | 1.4.2+git20120612-9.1~deb7u1 | - +- i386 | openvswitch-switch | 1.4.2+git20120612-9.1~deb7u1 | - +- i386 | openwalnut-modules | 1.2.5-1.1+b1 | - +- i386 | openwalnut-qt4 | 1.2.5-1.1+b1 | - +- i386 | openwince-include | 0.3.2-3.1 | - +- i386 | openwince-jtag | 0.5.1-6 | - +- i386 | openyahtzee | 1.9.1-1+b1 | - +- i386 | ophcrack | 3.4.0-2 | - +- i386 | ophcrack-cli | 3.4.0-2 | - +- i386 | oping | 1.6.2-1 | - +- i386 | opj2dat | 20080225-2.1 | - +- i386 | opt | 3.19-1.1 | - +- i386 | optgeo | 2.11-3 | - +- i386 | optipng | 0.6.4-1 | - +- i386 | opus-tools | 0.1.2-1 | - +- i386 | opus-tools-dbg | 0.1.2-1 | - +- i386 | orage | 4.8.3-2 | - +- i386 | orange | 0.4-2 | - +- i386 | orbit2 | 1:2.14.19-0.1 | - +- i386 | orbit2-nameserver | 1:2.14.19-0.1 | - +- i386 | orbital-eunuchs-sniper | 1.30+svn20070601-2 | - +- i386 | oregano | 0.70-1 | - +- i386 | original-awk | 2011-08-10-2 | - +- i386 | oroborus | 2.0.20 | - +- i386 | orpie | 1.5.1-10 | - +- i386 | orville-write | 2.55-2.3 | - +- i386 | os-prober | 1.58 | - +- i386 | osdclock | 0.5-23 | - +- i386 | osdsh | 0.7.0-10 | - +- i386 | osgearth | 2.0+dfsg-4+b3 | - +- i386 | osm2pgsql | 0.80.0+r27899-4 | - +- i386 | osmjs | 0.0~20111213-g7f3500a-3+b2 | - +- i386 | osmo | 0.2.10+svn922-2+b1 | - +- i386 | osmo-dbg | 0.2.10+svn922-2+b1 | - ++ i386 | osmo-sdr | - | 0.1.7.cd37e9-2~bpo70+1 +- i386 | osmpbf-bin | 1.2.1-3 | - +- i386 | osptoolkit | 3.4.2-1+b1 | - +- i386 | oss-compat | 2 | - +- i386 | oss-preserve | 1.1-6 | - +- i386 | oss4-base | 4.2-build2006-2+deb7u1 | - +- i386 | oss4-dkms | 4.2-build2006-2+deb7u1 | - +- i386 | oss4-gtk | 4.2-build2006-2+deb7u1 | - +- i386 | oss4-source | 4.2-build2006-2+deb7u1 | - +- i386 | ossim-core | 1.7.21-4 | - +- i386 | otags | 3.12.5-1 | - +- i386 | otcl-dbg | 1.14+dfsg-2 | - +- i386 | otcl-shells | 1.14+dfsg-2 | - +- i386 | otf-trace | 1.10.2+dfsg-2 | - +- i386 | otf2bdf | 3.1-2 | - +- i386 | otp | 1:1.2.1-1 | - +- i386 | otpw-bin | 1.3-2 | - +- i386 | otter | 3.3f-1.1 | - +- i386 | outguess | 1:0.2-7 | - +- i386 | overgod | 1.0-1.1+b1 | - +- i386 | ovito | 0.9.5-2 | - +- i386 | ow-shell | 2.8p15-1 | - +- i386 | owfs-dbg | 2.8p15-1 | - +- i386 | owfs-fuse | 2.8p15-1 | - +- i386 | owftpd | 2.8p15-1 | - +- i386 | owhttpd | 2.8p15-1 | - +- i386 | owl | 2.2.2-1.1+b3 | - ++ i386 | owncloud-client | - | 1.5.0+dfsg-4~bpo70+1 ++ i386 | owncloud-client-cmd | - | 1.5.0+dfsg-4~bpo70+1 +- i386 | owserver | 2.8p15-1 | - +- i386 | owx | 0~20110415-3.1 | - +- i386 | oxref | 0.90.10-1 | - +- i386 | p0f | 2.0.8-2 | - +! i386 | p11-kit | 0.12-3 | 0.20.2-1~bpo70+1 +- i386 | p3scan | 2:2.3.2-8 | - +- i386 | p7zip | 9.20.1~dfsg.1-4 | - +- i386 | p7zip-full | 9.20.1~dfsg.1-4 | - +- i386 | p910nd | 0.95-1 | - +- i386 | pacemaker | 1.1.7-1 | - +- i386 | pacemaker-dev | 1.1.7-1 | - +- i386 | pachi | 1:1.0-6 | - +- i386 | packagekit | 0.7.6-3 | - +- i386 | packagekit-backend-aptcc | 0.7.6-3 | - +- i386 | packagekit-backend-smart | 0.7.6-3 | - +- i386 | packagekit-dbg | 0.7.6-3 | - +- i386 | packagekit-gtk3-module | 0.7.6-3 | - +- i386 | packagekit-tools | 0.7.6-3 | - +- i386 | packagesearch | 2.7.3 | - +- i386 | packeth | 1.6.5-2 | - +- i386 | packit | 1.0-2 | - +- i386 | packup | 0.6-1 | - +- i386 | pacman | 10-17 | - +- i386 | pacman4console | 1.2-2 | - +- i386 | paco | 2.0.9-2 | - +- i386 | pads | 1.2-11 | - +- i386 | paje.app | 1.98-1+b1 | - +- i386 | pal | 0.4.3-8 | - +- i386 | palapeli | 4:4.8.4-3 | - +- i386 | palbart | 2.4-7 | - +- i386 | palp | 1.1-1.2 | - +- i386 | pam-pkcs11-dbg | 0.6.8-1 | - +- i386 | paman | 0.9.4-1 | - +- i386 | pamusb-common | 0.5.0-4 | - +- i386 | pan | 0.139-2 | - +- i386 | pandoc | 1.9.4.2-2 | - +- i386 | pango-graphite | 0.9.3-0.2 | - +- i386 | pango-graphite-dbg | 0.9.3-0.2 | - +- i386 | paperkey | 1.2-1 | - +- i386 | paprefs | 0.9.10-1 | - +- i386 | paps | 0.6.8-6 | - +- i386 | par | 1.52-3 | - +- i386 | par2 | 0.4-11 | - +! i386 | paraview | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | paraview-dev | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | paraview-python | 3.14.1-6 | 4.0.1-1~bpo70+1 +- i386 | parcellite | 1.0.2~rc5-1 | - +- i386 | parchive | 1.1-4 | - +! i386 | pari-gp | 2.5.1-2 | 2.5.5-1~bpo70+1 +- i386 | pari-gp2c | 0.0.7pl3-1 | - +- i386 | paris-traceroute | 0.92-dev-2 | - +- i386 | parley | 4:4.8.4-1 | - +- i386 | parole | 0.2.0.6-1+b1 | - +- i386 | parole-dev | 0.2.0.6-1+b1 | - +- i386 | parprouted | 0.70-1 | - +- i386 | parrot | 4.0.0-3 | - +- i386 | parrot-devel | 4.0.0-3 | - +- i386 | parrot-minimal | 4.0.0-3 | - +- i386 | parsec47 | 0.2.dfsg1-4 | - +- i386 | parser3-cgi | 3.4.2-2 | - +- i386 | parser3-common | 3.4.2-2 | - +- i386 | parser3-dev | 3.4.2-2 | - +- i386 | parser3-mysql | 10.4-1 | - +- i386 | partclone | 0.2.48-1 | - +- i386 | parted | 2.3-12 | - +- i386 | partimage | 0.6.8-2.2 | - +- i386 | partimage-server | 0.6.8-2.2 | - +- i386 | partitionmanager | 1.0.2-1 | - +- i386 | pasco | 1.0+20040505-5+b1 | - +- i386 | pasmo | 0.5.3-6 | - +- i386 | passage | 4+dfsg1-1 | - +- i386 | passepartout | 0.7.1-1 | - +- i386 | passwd | 1:4.1.5.1-1 | - +- i386 | passwdqc | 1.2.0-1 | - +- i386 | passwordmaker-cli | 1.5+dfsg-3 | - +- i386 | patch | 2.6.1-3 | - +- i386 | patchage | 0.5.0+dfsg0-0.1+b1 | - +- i386 | patchutils | 0.3.2-1.1 | - +- i386 | pathfinder-utils | 1.1.3-0.4+b1 | - +- i386 | pathfinderd | 1.1.3-0.4+b1 | - +- i386 | pathogen | 1.1.1-3 | - +- i386 | paulstretch | 2.2-2-2 | - +- i386 | pavucontrol | 1.0-1 | - +- i386 | pavuk | 0.9.35-2.3 | - +- i386 | pavumeter | 0.9.3-4 | - +- i386 | paw | 1:2.14.04.dfsg.2-8 | - +- i386 | paw++ | 1:2.14.04.dfsg.2-8 | - +- i386 | pawserv | 20061220+dfsg3-2 | - +- i386 | pax | 1:20120606-2 | - +- i386 | pax-utils | 0.2.3-2 | - +- i386 | paxctl | 0.7-1 | - +- i386 | paxtest | 1:0.9.9-1 | - +- i386 | pbs-drmaa-dev | 1.0.10-3 | - +- i386 | pbs-drmaa1 | 1.0.10-3 | - +- i386 | pbuilder-uml | 0.213 | - +- i386 | pbzip2 | 1.1.8-1 | - +- i386 | pcal | 4.11.0-3 | - ++ i386 | pcapfix | - | 1.0.2-2~bpo70+1 +- i386 | pcaputils | 0.8-1 | - +- i386 | pcb-gtk | 20110918-7 | - +- i386 | pcb-lesstif | 20110918-7 | - +- i386 | pcb2gcode | 1.1.4-git20110915-1+b1 | - +- i386 | pcb2gcode-dbg | 1.1.4-git20110915-1+b1 | - +- i386 | pccts | 1.33MR33-6 | - +- i386 | pcf2bdf | 1.04-4 | - +- i386 | pchar | 1.5-1 | - +- i386 | pciutils | 1:3.1.9-6 | - +- i386 | pclock | 0.13.1-6 | - +! i386 | pcmanfm | 0.9.10-3 | 1.1.2-1~bpo70+1 +! i386 | pcmanfm-dbg | 0.9.10-3 | 1.1.2-1~bpo70+1 +- i386 | pcmanx-gtk2 | 1.1-2 | - +- i386 | pcmciautils | 018-8 | - +- i386 | pconf-detect | 0.5-12 | - +- i386 | pconsole | 1.0-9 | - +- i386 | pcregrep | 1:8.30-5 | - +- i386 | pcsc-tools | 1.4.20-1 | - +- i386 | pcscada-dbg | 0.7.1-4 | - +- i386 | pcscd | 1.8.4-1+deb7u1 | - +- i386 | pcsxr | 1.9.92-4 | - +- i386 | pcsxr-dbg | 1.9.92-4 | - +- i386 | pd-arraysize | 0.1-1 | - +- i386 | pd-aubio | 0.3.2-4.2+b1 | - +- i386 | pd-bassemu | 0.3-3 | - +- i386 | pd-beatpipe | 0.1-3 | - +- i386 | pd-boids | 1.1.1-2 | - +- i386 | pd-bsaylor | 0.1-2 | - +- i386 | pd-comport | 0.1-3 | - +- i386 | pd-csound | 1:5.17.11~dfsg-3 | - +- i386 | pd-cxc | 0.5.1-2 | - +- i386 | pd-cyclone | 0.1~alpha55-6 | - +- i386 | pd-earplug | 0.2-3 | - +- i386 | pd-ekext | 0.1.1-2 | - +- i386 | pd-ext13 | 0.17.1-2 | - +- i386 | pd-flite | 0.02.3-1 | - +- i386 | pd-freeverb | 1.2-3 | - +- i386 | pd-ggee | 0.26-3 | - +- i386 | pd-hcs | 0.1-2 | - +- i386 | pd-hid | 0.7-1 | - +- i386 | pd-iemambi | 0.1-2 | - +- i386 | pd-iemmatrix | 0.2-1 | - +- i386 | pd-iemnet | 0.1-3 | - +- i386 | pd-libdir | 1.9-3 | - +- i386 | pd-markex | 0.85-2 | - +- i386 | pd-maxlib | 1.5.4-1 | - +- i386 | pd-mjlib | 0.1.1-3 | - +- i386 | pd-moonlib | 0.2-2 | - +- i386 | pd-motex | 1.1.4-3 | - +- i386 | pd-osc | 0.1-2 | - +- i386 | pd-pddp | 0.2-1 | - +- i386 | pd-pdogg | 0.25.1-1 | - +- i386 | pd-pdp | 1:0.12.5-2 | - +- i386 | pd-plugin | 0.2.1-3 | - +- i386 | pd-pmpd | 0.9-4 | - +- i386 | pd-readanysf | 0.42-1 | - +- i386 | pd-sigpack | 0.0.4.2-2 | - +- i386 | pd-smlib | 0.12.1-2 | - +- i386 | pd-vbap | 1.0.3.2-1 | - +- i386 | pd-wiimote | 0.3.2-2 | - +- i386 | pd-windowing | 0.1-2 | - +- i386 | pd-zexy | 2.2.5-1 | - +- i386 | pdb2pqr | 1.8-1 | - +- i386 | pdf-presenter-console | 3.1-1 | - +- i386 | pdf2djvu | 0.7.12-2+b1 | - +- i386 | pdf2svg | 0.2.1-2+b3 | - +- i386 | pdfchain | 1:0.3.3-2 | - +- i386 | pdfcrack | 0.11-1 | - +- i386 | pdfcube | 0.0.4-2+b1 | - +- i386 | pdfcube-dbg | 0.0.4-2+b1 | - +- i386 | pdfgrep | 1.3.0-1 | - +- i386 | pdfresurrect | 0.11-1 | - +- i386 | pdftk | 1.44-7 | - +- i386 | pdftoipe | 20110916-3+b1 | - +- i386 | pdl | 1:2.4.11-4 | - +- i386 | pdlzip | 1.3-2 | - +- i386 | pdlzip-dbg | 1.3-2 | - +- i386 | pdmenu | 1.3.2 | - +- i386 | pdns-backend-geo | 3.1-4.1 | - +- i386 | pdns-backend-ldap | 3.1-4.1 | - +- i386 | pdns-backend-lua | 3.1-4.1 | - +- i386 | pdns-backend-mysql | 3.1-4.1 | - +- i386 | pdns-backend-pgsql | 3.1-4.1 | - +- i386 | pdns-backend-pipe | 3.1-4.1 | - +- i386 | pdns-backend-sqlite | 3.1-4.1 | - +- i386 | pdns-backend-sqlite3 | 3.1-4.1 | - +- i386 | pdns-recursor | 3.3-3 | - +- i386 | pdns-recursor-dbg | 3.3-3 | - +- i386 | pdns-server | 3.1-4.1 | - +- i386 | pdns-server-dbg | 3.1-4.1 | - +- i386 | pdnsd | 1.2.8-par-3 | - +- i386 | pdsh | 2.27-2 | - +- i386 | pearpc | 0.4.0-5 | - +- i386 | pecomato | 0.0.15-4 | - +- i386 | peg-e | 1.1.0-1 | - +- i386 | peg-solitaire | 1.2-1 | - +- i386 | pegasus-wms | 4.0.1+dfsg-8 | - +- i386 | pegsolitaire | 0.0.4-1 | - +- i386 | pekwm | 0.1.14-2 | - +- i386 | pen | 0.18.0-1 | - +- i386 | penguin-command | 1.6.11-1 | - +- i386 | pennmush | 1.8.2p8-1.1+b1 | - +- i386 | pennmush-mysql | 1.8.2p8-1.1+b1 | - +- i386 | pente | 2.2.5-7 | - +- i386 | pentobi | 1.1-1+b1 | - ++ i386 | pepper | - | 0.3.2-2~bpo70+1 ++ i386 | pepperflashplugin-nonfree | - | 1.2~bpo70+1 +- i386 | perceptualdiff | 1.1.1-1 | - +- i386 | perdition | 1.19~rc5-1+b1 | - +- i386 | perdition-ldap | 1.19~rc5-1+b1 | - +- i386 | perdition-mysql | 1.19~rc5-1+b1 | - +- i386 | perdition-odbc | 1.19~rc5-1+b1 | - +- i386 | perdition-postgresql | 1.19~rc5-1+b1 | - +- i386 | perforate | 1.2-5 | - +- i386 | performous | 0.6.1-6 | - +- i386 | performous-dbg | 0.6.1-6 | - +- i386 | performous-tools | 0.6.1-6 | - +- i386 | perftest | 1.2-OFED-1.4.2-2 | - +- i386 | perl | 5.14.2-21+deb7u1 | - +- i386 | perl-base | 5.14.2-21+deb7u1 | - +- i386 | perl-byacc | 2.0-7 | - +- i386 | perl-debug | 5.14.2-21+deb7u1 | - +- i386 | perl-tk | 1:804.030-1 | - +- i386 | perlmagick | 8:6.7.7.10-5+deb7u2 | - +- i386 | petitboot | 12.03.29.20.47-g45e2534-2 | - +- i386 | petitboot-twin | 12.03.29.20.47-g45e2534-2 | - +- i386 | petri-foo | 0.1.5-1 | - +- i386 | petri-foo-dbg | 0.1.5-1 | - +- i386 | petris | 1.0.1-8 | - +- i386 | pev | 0.40-1 | - +- i386 | pexec | 1.0~rc8-2 | - +- i386 | pfb2t1c2pfb | 0.3-9 | - +- i386 | pforth | 21-11 | - +- i386 | pfqueue | 0.5.6-8 | - +- i386 | pfqueue-dbg | 0.5.6-8 | - +- i386 | pfsglview | 1.8.5-1 | - +- i386 | pfstmo | 1.4-1 | - +- i386 | pfstools | 1.8.5-1 | - +- i386 | pfstools-dbg | 1.8.5-1 | - +- i386 | pfsview | 1.8.5-1 | - +- i386 | pgadmin3 | 1.14.2-2 | - +- i386 | pgadmin3-dbg | 1.14.2-2 | - +- i386 | pgagent | 3.2.1-1 | - +- i386 | pgapack | 1.1.1-3 | - +- i386 | pgbouncer | 1.5.2-4 | - +- i386 | pgdbf | 0.5.5-1 | - +- i386 | pgn-extract | 16.7-2 | - +- i386 | pgn2web | 0.4-1 | - +- i386 | pgpdump | 0.27-1 | - +- i386 | pgpgpg | 0.13-9 | - +- i386 | pgpool2 | 3.1.3-5 | - +- i386 | phalanx | 22+d051004-13.1 | - +- i386 | phasex | 0.12.0+m1-6 | - +- i386 | phasex-dbg | 0.12.0+m1-6 | - +- i386 | phlipple | 0.8.2-1+b1 | - +- i386 | phlipple-dbg | 0.8.2-1+b1 | - +- i386 | phnxdeco | 0.33-3 | - +- i386 | phonefsod | 0.1+git20110827-3 | - +- i386 | phoneui-apps | 0.1+git20111214-2 | - +- i386 | phoneuid | 0.1+git20110506-2+b1 | - +- i386 | phonon | 4:4.6.0.0-3 | - +- i386 | phonon-backend-gstreamer | 4:4.6.0.0-2 | - +- i386 | phonon-backend-gstreamer-dbg | 4:4.6.0.0-2 | - +- i386 | phonon-backend-null | 4:4.6.0.0-3 | - +- i386 | phonon-backend-vlc | 0.6.0-1 | - +- i386 | phonon-backend-vlc-dbg | 0.6.0-1 | - +- i386 | phonon-dbg | 4:4.6.0.0-3 | - +- i386 | photopc | 3.05-6 | - +- i386 | photoprint | 0.4.2~pre2-2+b1 | - +- i386 | php-apc | 3.1.13-1 | - +- i386 | php-imlib | 0.7-4.1 | - +- i386 | php-wikidiff2 | 0.0.1+svn109581-1 | - +- i386 | php-zeroc-ice | 3.4.2-8.2 | - +- i386 | php5-adodb | 5.04-7+b1 | - +- i386 | php5-cgi | 5.4.4-14+deb7u7 | - +- i386 | php5-cli | 5.4.4-14+deb7u7 | - +- i386 | php5-common | 5.4.4-14+deb7u7 | - +- i386 | php5-curl | 5.4.4-14+deb7u7 | - +- i386 | php5-dbg | 5.4.4-14+deb7u7 | - +- i386 | php5-dev | 5.4.4-14+deb7u7 | - +- i386 | php5-enchant | 5.4.4-14+deb7u7 | - +- i386 | php5-exactimage | 0.8.5-5+deb7u3 | - +- i386 | php5-ffmpeg | 0.6.0-2.2 | - +- i386 | php5-fpm | 5.4.4-14+deb7u7 | - +- i386 | php5-gd | 5.4.4-14+deb7u7 | - +- i386 | php5-gdcm | 2.2.0-14.1 | - +- i386 | php5-geoip | 1.0.7-8 | - +- i386 | php5-gmp | 5.4.4-14+deb7u7 | - +- i386 | php5-imagick | 3.1.0~rc1-1+b2 | - +- i386 | php5-imap | 5.4.4-14+deb7u7 | - +- i386 | php5-interbase | 5.4.4-14+deb7u7 | - +- i386 | php5-intl | 5.4.4-14+deb7u7 | - +- i386 | php5-lasso | 2.3.6-2 | - +- i386 | php5-ldap | 5.4.4-14+deb7u7 | - +- i386 | php5-librdf | 1.0.14.1-1 | - +- i386 | php5-mapscript | 6.0.1-3.2+deb7u2 | - +- i386 | php5-mcrypt | 5.4.4-14+deb7u7 | - +- i386 | php5-memcache | 3.0.6-6 | - +- i386 | php5-memcached | 2.0.1-6 | - +- i386 | php5-ming | 1:0.4.4-1.1 | - ++ i386 | php5-mongo | - | 1.4.5-1~bpo70+1 +- i386 | php5-mysql | 5.4.4-14+deb7u7 | - +- i386 | php5-mysqlnd | 5.4.4-14+deb7u7 | - +- i386 | php5-odbc | 5.4.4-14+deb7u7 | - +- i386 | php5-pgsql | 5.4.4-14+deb7u7 | - +- i386 | php5-ps | 1.3.7-1 | - +- i386 | php5-pspell | 5.4.4-14+deb7u7 | - +- i386 | php5-radius | 1.2.5-2.3+deb7u1 | - +- i386 | php5-recode | 5.4.4-14+deb7u7 | - +! i386 | php5-remctl | 3.2-4 | 3.8-1~bpo70+1 +- i386 | php5-rrd | 1.1.0-1 | - +- i386 | php5-sasl | 0.1.0-1.2+b1 | - +- i386 | php5-snmp | 5.4.4-14+deb7u7 | - +- i386 | php5-sqlite | 5.4.4-14+deb7u7 | - +- i386 | php5-svn | 1.0.1-1.2 | - +- i386 | php5-sybase | 5.4.4-14+deb7u7 | - +- i386 | php5-tidy | 5.4.4-14+deb7u7 | - +- i386 | php5-tokyo-tyrant | 0.6.0-2+b1 | - +- i386 | php5-vtkgdcm | 2.2.0-14.1 | - +- i386 | php5-xcache | 2.0.0-4 | - +- i386 | php5-xdebug | 2.2.1-2 | - +- i386 | php5-xmlrpc | 5.4.4-14+deb7u7 | - +- i386 | php5-xsl | 5.4.4-14+deb7u7 | - +- i386 | phyml | 2:20110919-1 | - +- i386 | pi | 1.3.2-1.2 | - +- i386 | pia | 3.102-3 | - +- i386 | pianobar | 2012.05.06-2 | - +- i386 | pianobooster | 0.6.4-3.1 | - +- i386 | pianobooster-dbg | 0.6.4-3.1 | - +- i386 | picard | 1.0-1 | - +- i386 | picocom | 1.7-1 | - +- i386 | picolisp | 3.1.0.7-1 | - +- i386 | picosat | 936-4 | - +- i386 | picprog | 1.9.1-2 | - +- i386 | picviz | 0.5-1+b1 | - +- i386 | pida | 0.5.1-6 | - +- i386 | pidentd | 3.0.19.ds1-7 | - +! i386 | pidgin | 2.10.6-3 | 2.10.7-2~bpo70+1 +- i386 | pidgin-audacious | 2.0.0-3 | - +- i386 | pidgin-awayonlock | 0.5.2-1 | - +- i386 | pidgin-blinklight | 0.11.1-1 | - +! i386 | pidgin-dbg | 2.10.6-3 | 2.10.7-2~bpo70+1 +- i386 | pidgin-encryption | 3.1-1 | - +- i386 | pidgin-extprefs | 0.7-2 | - +- i386 | pidgin-festival | 2.4-2 | - +- i386 | pidgin-gmchess | 0.02-1 | - +- i386 | pidgin-guifications | 2.16-2 | - +- i386 | pidgin-hotkeys | 0.2.4-1.2 | - +- i386 | pidgin-latex | 1.4.4-2 | - +- i386 | pidgin-librvp | 0.9.7-2 | - +- i386 | pidgin-microblog | 0.3.0-3 | - +- i386 | pidgin-microblog-dbg | 0.3.0-3 | - +- i386 | pidgin-mpris | 0.2.3-2 | - +- i386 | pidgin-mra | 20100304-1 | - +- i386 | pidgin-mra-dbg | 20100304-1 | - +- i386 | pidgin-musictracker | 0.4.22-2 | - +- i386 | pidgin-nateon | 0.0.0.svn147-1 | - +- i386 | pidgin-nateon-dbg | 0.0.0.svn147-1 | - +- i386 | pidgin-openfetion | 0.3-1 | - +! i386 | pidgin-otr | 3.2.1-3+deb7u1 | 4.0.0-2~bpo70+1 +- i386 | pidgin-plugin-pack | 2.6.3-2 | - +- i386 | pidgin-privacy-please | 0.7.1-1 | - +- i386 | pidgin-sipe | 1.13.1-2 | - +- i386 | pidgin-twitter | 0.9.2.1-3 | - +- i386 | pigz | 2.2.4-3 | - +- i386 | pilot | 2.02+dfsg-2 | - +- i386 | pilot-link | 0.12.5-5 | - +- i386 | pimd | 2.1.8-2 | - +- i386 | pinball | 0.3.1-13.1 | - +- i386 | pinball-dev | 0.3.1-13.1 | - +- i386 | pinentry-curses | 0.8.1-1 | - +- i386 | pinentry-gtk2 | 0.8.1-1 | - +- i386 | pinentry-qt4 | 0.8.1-1 | - +- i386 | pinfo | 0.6.9-5.1 | - +- i386 | pingus | 0.7.6-1.1 | - +- i386 | pinot | 1.0-1 | - +- i386 | pinpoint | 1:0.1.5~20120318-1+b1 | - +- i386 | pioneers | 14.1-1 | - +- i386 | pioneers-console | 14.1-1 | - +- i386 | pioneers-meta-server | 14.1-1 | - +- i386 | pipebench | 0.40-3+b1 | - +- i386 | pipemeter | 1.1.3-1 | - +- i386 | pipenightdreams | 0.10.0-13 | - +- i386 | pipewalker | 0.9.4-1 | - +- i386 | pixelize | 1.0.0-1 | - +- i386 | pixmap | 2.6pl4-18 | - +- i386 | pkcs11-data | 0.7.4-1 | - +- i386 | pkcs11-dump | 0.3.4-1 | - +- i386 | pkg-config | 0.26-1 | - +- i386 | pkglab | 1.4.2-13+b1 | - +- i386 | pktstat | 1.8.5-3 | - +- i386 | plan | 1.10.1-2 | - +- i386 | planner | 0.14.6-1 | - +- i386 | planner-dev | 0.14.6-1 | - +- i386 | plasma-containments-addons | 4:4.8.4-1+b2 | - +- i386 | plasma-dataengines-addons | 4:4.8.4-1+b2 | - +- i386 | plasma-dataengines-workspace | 4:4.8.4-6 | - +- i386 | plasma-dataengines-yawp | 0.4.2-1 | - +- i386 | plasma-desktop | 4:4.8.4-6 | - +- i386 | plasma-netbook | 4:4.8.4-6 | - +- i386 | plasma-runner-installer | 1.3.0-2 | - +- i386 | plasma-runners-addons | 4:4.8.4-1+b2 | - +- i386 | plasma-scriptengine-javascript | 4:4.8.4-2 | - +- i386 | plasma-scriptengine-superkaramba | 4:4.8.4-3 | - +- i386 | plasma-scriptengine-webkit | 4:4.8.4-6 | - +- i386 | plasma-wallpapers-addons | 4:4.8.4-1+b2 | - +- i386 | plasma-widget-adjustableclock | 2.6.1-1+b2 | - +- i386 | plasma-widget-amule | 2.3.1-9 | - +! i386 | plasma-widget-cwp | 1.6.11-1 | 1.10.0-1~bpo70+1 +- i386 | plasma-widget-fastuserswitch | 0.2.1-1+b1 | - +- i386 | plasma-widget-folderview | 4:4.8.4-2 | - +- i386 | plasma-widget-kimpanel | 4:4.8.4-1+b2 | - +- i386 | plasma-widget-ktorrent | 4.2.1-1 | - +- i386 | plasma-widget-lancelot | 4:4.8.4-1+b2 | - +- i386 | plasma-widget-menubar | 0.1.17-1 | - +- i386 | plasma-widget-message-indicator | 0.5.8-3 | - +- i386 | plasma-widget-networkmanagement | 0.9.0.3-1 | - +- i386 | plasma-widget-networkmanagement-dbg | 0.9.0.3-1 | - +- i386 | plasma-widget-smooth-tasks | 1flupp0~hg20120610-2 | - +- i386 | plasma-widget-telepathy-chat | 0.4.0-1 | - +- i386 | plasma-widget-telepathy-presence | 0.4.0-1 | - +- i386 | plasma-widget-telepathy-presence-dbg | 0.4.0-1 | - +- i386 | plasma-widget-translatoid | 1.30+svn1226145-1 | - +- i386 | plasma-widget-uim | 1:1.8.1-4 | - +- i386 | plasma-widget-yawp | 0.4.2-1 | - +- i386 | plasma-widget-yawp-dbg | 0.4.2-1 | - +- i386 | plasma-widgets-addons | 4:4.8.4-1+b2 | - +- i386 | plasma-widgets-workspace | 4:4.8.4-6 | - +- i386 | plastimatch | 1.5.11+dfsg0-1 | - +- i386 | playmidi | 2.4debian-9.2 | - +- i386 | plee-the-bear | 0.6.0-1+b1 | - +- i386 | plink | 1.07-3 | - +- i386 | plopfolio.app | 0.1.0-6+b3 | - +- i386 | plotdrop | 0.5.2-3 | - +- i386 | ploticus | 2.41-5 | - +- i386 | plotmm-examples | 0.1.2-2 | - +- i386 | plotutils | 2.6-3 | - +- i386 | plplot-tcl | 5.9.9-5 | - +- i386 | plplot-tcl-dev | 5.9.9-5 | - +- i386 | plplot11-driver-cairo | 5.9.9-5 | - +- i386 | plplot11-driver-gd | 5.9.9-5 | - +- i386 | plplot11-driver-qt | 5.9.9-5 | - +- i386 | plplot11-driver-wxwidgets | 5.9.9-5 | - +- i386 | plplot11-driver-xwin | 5.9.9-5 | - +- i386 | plptools | 1.0.9-2.4 | - +- i386 | plptools-dev | 1.0.9-2.4 | - +- i386 | plucker | 1.8-34 | - +- i386 | plymouth | 0.8.5.1-5 | - +- i386 | plymouth-dev | 0.8.5.1-5 | - +- i386 | plymouth-drm | 0.8.5.1-5 | - +- i386 | plymouth-x11 | 0.8.5.1-5 | - +- i386 | plzip | 0.9-2 | - +- i386 | plzip-dbg | 0.9-2 | - +- i386 | pmacct | 0.14.0-1.1 | - +- i386 | pmake | 1.111-3.2 | - +- i386 | pmccabe | 2.6 | - +- i386 | pmidi | 1.6.0-5 | - +- i386 | pmk | 0.10.4-1 | - +- i386 | pmount | 0.9.23-2 | - +- i386 | pms | 0.41-1 | - +- i386 | pmw | 1:4.24-1 | - +- i386 | pmx | 2.6.18-2 | - +- i386 | png23d | 1.10-1 | - +- i386 | png2html | 1.1-5 | - +- i386 | pngcheck | 2.3.0-5 | - +- i386 | pngcrush | 1.7.9-1 | - +- i386 | pngmeta | 1.11-6 | - +- i386 | pngnq | 1.0-2 | - +- i386 | pngphoon | 1.1-2 | - +- i386 | pngquant | 1.0-4.1 | - +- i386 | pngtools | 0.4-1 | - +- i386 | pnp4nagios-bin | 0.6.16-2 | - +- i386 | pnscan | 1.11-6 | - +- i386 | poa | 2.0+20060928-3 | - +- i386 | poc-streamer | 0.4.2-3 | - +- i386 | poe.app | 0.5.1-5+b3 | - +! i386 | poedit | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! i386 | poedit-dbg | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! i386 | pokerth | 0.9.5-1 | 1.0.1-2~bpo70+1 +! i386 | pokerth-server | 0.9.5-1 | 1.0.1-2~bpo70+1 +- i386 | policycoreutils | 2.1.10-9 | - +- i386 | policykit-1 | 0.105-3 | - +- i386 | policykit-1-gnome | 0.105-2 | - +- i386 | polipo | 1.0.4.1-1.2 | - +- i386 | polkit-kde-1 | 0.99.0-3 | - +- i386 | polyglot | 1.4.67b-1 | - +- i386 | polygraph | 4.3.2-1.1 | - +- i386 | polylib-utils | 5.22.5-3+dfsg | - +- i386 | polyml | 5.2.1-1.1 | - +- i386 | polyorb-servers | 2.8~20110207-5.1 | - +- i386 | pommed | 1.39~dfsg-2+b1 | - +- i386 | pong2 | 0.1.3-1 | - +- i386 | popa3d | 1.0.2-7 | - +- i386 | poppassd | 1.8.5-4 | - +- i386 | poppler-dbg | 0.18.4-6 | - +- i386 | poppler-utils | 0.18.4-6 | - +- i386 | populations | 1.2.33+svn0120106-2.1 | - +- i386 | pork | 0.99.8.1-2.1 | - +- i386 | portabase | 2.0+git20110117-1 | - +- i386 | portaudio19-dev | 19+svn20111121-1 | - +- i386 | portreserve | 0.0.4-1 | - +- i386 | portsentry | 1.2-13 | - +- i386 | portslave | 2010.04.19.1 | - +- i386 | posh | 0.10.2 | - +- i386 | posixtestsuite | 1.5.2-4 | - +- i386 | postal | 0.73 | - ++ i386 | postbooks | - | 4.1.0-3~bpo70+1 +- i386 | poster | 1:20050907-1 | - +- i386 | posterazor | 1.5.1-2 | - +- i386 | postfix | 2.9.6-2 | - +- i386 | postfix-cdb | 2.9.6-2 | - +- i386 | postfix-gld | 1.7-3+b1 | - +- i386 | postfix-ldap | 2.9.6-2 | - +- i386 | postfix-mysql | 2.9.6-2 | - +- i386 | postfix-pcre | 2.9.6-2 | - +- i386 | postfix-pgsql | 2.9.6-2 | - +- i386 | postgis | 1.5.3-2 | - +- i386 | postgresql-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-9.1-dbg | 9.1.11-0wheezy1 | - +- i386 | postgresql-9.1-debversion | 1.0.6-1+b1 | - +- i386 | postgresql-9.1-ip4r | 1.05-0.1 | - +- i386 | postgresql-9.1-orafce | 3.0.4-1 | - +- i386 | postgresql-9.1-pgfincore | 1.1-1 | - +- i386 | postgresql-9.1-pgmemcache | 2.0.6-1.1+b1 | - +- i386 | postgresql-9.1-pgmp | 1.0.0-4 | - +- i386 | postgresql-9.1-pgpool2 | 3.1.3-5 | - +- i386 | postgresql-9.1-pljava-gcj | 1.4.3-2 | - +- i386 | postgresql-9.1-pllua | 1:0.3.2-4 | - +- i386 | postgresql-9.1-plproxy | 2.4-1 | - +- i386 | postgresql-9.1-plr | 1:8.3.0.13-1 | - +- i386 | postgresql-9.1-plsh | 1.3-5 | - +- i386 | postgresql-9.1-postgis | 1.5.3-2 | - +- i386 | postgresql-9.1-prefix | 1.1.1-1 | - +- i386 | postgresql-9.1-preprepare | 0.5-1 | - +- i386 | postgresql-client-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-contrib-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-filedump | 9.1.0-1 | - +- i386 | postgresql-plperl-8.4 | 8.4.19-0wheezy1 | - +- i386 | postgresql-plperl-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-plpython-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-plpython3-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-pltcl-9.1 | 9.1.11-0wheezy1 | - +- i386 | postgresql-server-dev-9.1 | 9.1.11-0wheezy1 | - +- i386 | postmark | 1.51-7 | - +- i386 | postpone | 0.2 | - +- i386 | potool | 0.12-1 | - +- i386 | potrace | 1.10-1 | - +- i386 | pound | 2.6-2 | - +- i386 | powerman | 2.3.5-1 | - +- i386 | powermanga | 0.90-dfsg-2 | - +- i386 | powermgmt-base | 1.31 | - +- i386 | powertop | 2.0-0.3 | - +- i386 | powstatd | 1.5.1-9.1 | - +- i386 | poxml | 4:4.8.4+dfsg-1 | - +- i386 | pp-popularity-contest | 1.0.5-1 | - +- i386 | pp-popularity-contest-dbg | 1.0.5-1 | - +- i386 | ppdfilt | 2:0.10-7.1 | - +- i386 | pperl | 0.25-6+b1 | - +- i386 | ppl-dev | 0.11.2-8 | - +- i386 | ppmd | 10.1-5 | - +- i386 | ppp | 2.4.5-5.1+b1 | - +- i386 | pppdcapiplugin | 1:3.25+dfsg1-3.3~deb7u1 | - +- i386 | pppoe | 3.8-3 | - +- i386 | pps-tools | 0.20120406+g0deb9c7e-2 | - +- i386 | ppsh | 1.1.1-4+b1 | - +- i386 | ppthtml | 0.5.1-6 | - +- i386 | pptp-linux | 1.7.2-7 | - +- i386 | pptpd | 1.3.4-5.2 | - +- i386 | pqiv | 0.12-1 | - +- i386 | praat | 5.3.16-1 | - +- i386 | prads | 0.3.0-1 | - +- i386 | prayer | 1.3.4-dfsg1-1 | - +- i386 | prayer-accountd | 1.3.4-dfsg1-1 | - +- i386 | prayer-templates-dev | 1.3.4-dfsg1-1 | - +- i386 | prboom | 2:2.5.0+dfsg1-6 | - +- i386 | predict | 2.2.3-3.1 | - +- i386 | predict-gsat | 2.2.3-3.1 | - +- i386 | prelink | 0.0.20090925-6 | - +- i386 | preload | 0.6.4-2 | - +- i386 | prelude-lml | 1.0.0-4 | - +- i386 | prelude-manager | 1.0.1-4 | - +- i386 | premake | 3.7-1 | - +- i386 | prerex | 6.4.0-3 | - +- i386 | presage | 0.8.8-1 | - +- i386 | presage-dbg | 0.8.8-1 | - +- i386 | pretzel | 2.0n-2-0.3 | - +- i386 | preview.app | 0.8.5-9 | - +- i386 | price.app | 1.1.0-1 | - +- i386 | primaxscan | 0.93beta3-10+b1 | - +- i386 | primer3 | 2.2.3-1 | - +- i386 | primrose | 6+dfsg1-2 | - ++ i386 | primus | - | 0~20130904-1~bpo70+1 ++ i386 | primus-libs | - | 0~20130904-1~bpo70+1 ++ i386 | primus-libs-dbg | - | 0~20130904-1~bpo70+1 ++ i386 | primus-libs-ia32 | - | 0~20130904-1~bpo70+1 +- i386 | printer-driver-c2050 | 0.3b-4 | - +- i386 | printer-driver-c2esp | 24-2 | - +- i386 | printer-driver-cjet | 0.8.9-3 | - +- i386 | printer-driver-escpr | 1.1.1-2 | - +- i386 | printer-driver-foo2zjs | 20120510dfsg0-1 | - +- i386 | printer-driver-gutenprint | 5.2.9-1 | - +- i386 | printer-driver-hpcups | 3.12.6-3.1+deb7u1 | - +- i386 | printer-driver-hpijs | 3.12.6-3.1+deb7u1 | - +- i386 | printer-driver-m2300w | 0.51-7 | - +- i386 | printer-driver-min12xxw | 0.0.9-6 | - +- i386 | printer-driver-pnm2ppa | 1.13-4 | - +- i386 | printer-driver-ptouch | 1.3-4 | - +- i386 | printer-driver-pxljr | 1.3+repack0-2 | - +- i386 | printer-driver-splix | 2.0.0+svn306-2 | - +- i386 | printfilters-ppd | 2.13-11.1 | - +- i386 | prips | 0.9.9-1 | - +- i386 | pristine-tar | 1.25+deb7u1 | - +- i386 | privbind | 1.2-1.1 | - +- i386 | privoxy | 3.0.19-2 | - +- i386 | probalign | 1.4-2 | - +- i386 | probcons | 1.12-9 | - +- i386 | probcons-extra | 1.12-9 | - +- i386 | procinfo | 1:2.0.304-1 | - +- i386 | procmail | 3.22-20 | - +- i386 | procmeter3 | 3.5d-1 | - +- i386 | procps | 1:3.3.3-3 | - +- i386 | procserv | 2.6.0-1 | - +- i386 | proda | 1.0-8 | - +- i386 | profnet-bval | 1.0.21-1+wheezy1 | - +- i386 | profnet-chop | 1.0.21-1+wheezy1 | - +- i386 | profnet-con | 1.0.21-1+wheezy1 | - +- i386 | profnet-dbg | 1.0.21-1+wheezy1 | - +- i386 | profnet-isis | 1.0.21-1+wheezy1 | - +- i386 | profnet-md | 1.0.21-1+wheezy1 | - +- i386 | profnet-norsnet | 1.0.21-1+wheezy1 | - +- i386 | profnet-prof | 1.0.21-1+wheezy1 | - +- i386 | profnet-snapfun | 1.0.21-1+wheezy1 | - +- i386 | profphd-net | 1.0.21-1+wheezy1 | - +- i386 | profphd-utils | 1.0.9-1 | - +- i386 | proftmb | 1.1.10-1 | - +- i386 | proftpd-basic | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-dev | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-mod-autohost | 0.4-1+b1 | - +- i386 | proftpd-mod-case | 0.7-1 | - +- i386 | proftpd-mod-clamav | 0.10-1+b1 | - +- i386 | proftpd-mod-dnsbl | 0.1.5-3+b2 | - +- i386 | proftpd-mod-fsync | 0.2-1+b1 | - +- i386 | proftpd-mod-geoip | 0.3-1+b1 | - +- i386 | proftpd-mod-ldap | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-mod-msg | 0.4.1-1.1 | - +- i386 | proftpd-mod-mysql | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-mod-odbc | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-mod-pgsql | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-mod-sqlite | 1.3.4a-5+deb7u1 | - +- i386 | proftpd-mod-tar | 0.3.3-1+b1 | - +- i386 | proftpd-mod-vroot | 0.9.2-2+b2 | - +- i386 | proj-bin | 4.7.0-2 | - +- i386 | proj-data | 4.7.0-2 | - +- i386 | projectcenter.app | 0.6.0-2 | - +- i386 | projectl | 1.001.dfsg1-4 | - +- i386 | projectm-dbg | 2.1.0+dfsg-1 | - +- i386 | projectm-jack | 2.1.0+dfsg-1 | - +- i386 | projectm-pulseaudio | 2.1.0+dfsg-1 | - +- i386 | promoe | 0.1.1-3+b1 | - +! i386 | prosody | 0.8.2-4 | 0.9.1-1~bpo70+1 +- i386 | protobuf-c-compiler | 0.14-1+b1 | - +- i386 | protobuf-compiler | 2.4.1-3 | - +- i386 | protoize | 1:4.4.7-2 | - +- i386 | prover9 | 0.0.200902a-2.1 | - +- i386 | proxsmtp | 1.10-1 | - +- i386 | proxycheck | 0.49a-4 | - +- i386 | proxytrack | 3.46.1-1 | - +- i386 | proxytunnel | 1.9.0-5 | - +- i386 | ps2eps | 1.68-1 | - +- i386 | psad | 2.2-3.1 | - +- i386 | pscan | 1.2-9 | - +- i386 | psensor | 0.6.2.17-2+b1 | - +- i386 | psensor-server | 0.6.2.17-2+b1 | - +- i386 | psi | 0.14-3 | - +! i386 | psi-plus | 0.15.5338-1 | 0.16.285-1~bpo70+1 +- i386 | psi-plus-content-downloader | 0.15.5338-1 | - +! i386 | psi-plus-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-plugin-psimedia | 1.0.3-git20120506-fb54b6e-1 | 1.0.3-git20131023-ea487d3-1~bpo70+1 +! i386 | psi-plus-plugins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-plugins-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-webkit | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-webkit-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +- i386 | psi3 | 3.4.0-4 | - +- i386 | psignifit | 2.5.6-3 | - +- i386 | pslib-dev | 0.4.5-3 | - +- i386 | pslib1 | 0.4.5-3 | - +- i386 | pslib1-dbg | 0.4.5-3 | - +- i386 | pslist | 1.3-2 | - +- i386 | psmisc | 22.19-1+deb7u1 | - +- i386 | pspp | 0.7.9+git20120620-1.1 | - +- i386 | pspresent | 1.3-4 | - +- i386 | pst-utils | 0.6.54-4.1 | - +- i386 | pstack | 1.3.1-1 | - +- i386 | pstoedit | 3.60-2+b1 | - +- i386 | pstotext | 1.9-6 | - +- i386 | psutils | 1.17.dfsg-1 | - +- i386 | psychtoolbox-3-dbg | 3.0.9+svn2579.dfsg1-1 | - +- i386 | psychtoolbox-3-lib | 3.0.9+svn2579.dfsg1-1 | - +- i386 | pterm | 0.62-9+deb7u1 | - +- i386 | pth-dbg | 2.0.7-16 | - +- i386 | ptop | 3.6.2-5 | - +- i386 | ptpd | 2.1.0-debian1-2 | - +- i386 | ptscotch | 5.1.12b.dfsg-1.2 | - +- i386 | ptscotch-dbg | 5.1.12b.dfsg-1.2 | - +- i386 | ptunnel | 0.71-2 | - +- i386 | publib-dev | 0.40-1 | - +- i386 | puf | 1.0.0-7 | - +! i386 | pulseaudio | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-esound-compat | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-esound-compat-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-bluetooth | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-bluetooth-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-gconf | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-gconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-jack | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-jack-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-lirc | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-lirc-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-raop | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-raop-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-x11 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-x11-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-zeroconf | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-zeroconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-utils | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-utils-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +- i386 | pump | 0.8.24-7 | - +- i386 | pure-ftpd | 1.0.36-1.1 | - +- i386 | pure-ftpd-ldap | 1.0.36-1.1 | - +- i386 | pure-ftpd-mysql | 1.0.36-1.1 | - +- i386 | pure-ftpd-postgresql | 1.0.36-1.1 | - +- i386 | puredata-core | 0.43.2-5 | - +- i386 | puredata-extra | 0.43.2-5 | - +- i386 | puredata-import | 1.3-3 | - +- i386 | puredata-utils | 0.43.2-5 | - +- i386 | purity | 1-18 | - +- i386 | purity-ng | 0.2.0-2 | - +- i386 | putty | 0.62-9+deb7u1 | - +- i386 | putty-tools | 0.62-9+deb7u1 | - +- i386 | pv | 1.2.0-1 | - +- i386 | pvm | 3.4.5-12.5 | - +- i386 | pvm-dev | 3.4.5-12.5 | - +- i386 | pvm-examples | 3.4.5-12.5 | - +- i386 | pvrg-jpeg | 1.2.1+dfsg1-2 | - +- i386 | pwauth | 2.3.8-1 | - +- i386 | pwgen | 2.06-1+b2 | - +- i386 | pwget | 2010.1012+git5feaa59-1 | - +- i386 | pxe | 1.4.2-7 | - +- i386 | pxe-kexec | 0.2.4-3 | - +- i386 | pxfw | 0.7.1.002-5 | - +- i386 | pxlib-dev | 0.6.5-1 | - +- i386 | pxlib1 | 0.6.5-1 | - +- i386 | pxsl-tools | 1.0-5 | - +- i386 | pybik | 0.5-1 | - +- i386 | pyfai | 0.3.5-1 | - +- i386 | pyformex-lib | 0.8.6-4 | - +- i386 | pyg | 0.9.7+b2 | - +- i386 | pylucene | 3.5.0-1.1 | - +- i386 | pymca | 4.6.0-2 | - +- i386 | pymol | 1.5.0.1-2 | - +- i386 | pyqt4-dev-tools | 4.9.3-4 | - +- i386 | pyrit | 0.4.0-2 | - +- i386 | pyrite-publisher | 2.1.1-7.1 | - +- i386 | pyside-tools | 0.2.13-3 | - +- i386 | python-adns | 1.2.1-5+b1 | - +- i386 | python-alsaaudio | 0.5+svn36-1+b2 | - +- i386 | python-appindicator | 0.4.92-2 | - +- i386 | python-apsw | 3.7.6.3-r1-1 | - +- i386 | python-apsw-dbg | 3.7.6.3-r1-1 | - +- i386 | python-apt | 0.8.8.2 | - +- i386 | python-apt-dbg | 0.8.8.2 | - +- i386 | python-async | 0.6.1-1 | - +- i386 | python-at-spi | 0.6.1-1.3+b2 | - +- i386 | python-aubio | 0.3.2-4.2+b1 | - +- i386 | python-audit | 1:1.7.18-1.1 | - +- i386 | python-avahi | 0.6.31-2 | - +- i386 | python-avogadro | 1.0.3-5 | - +- i386 | python-ball | 1.4.1+20111206-4 | - +- i386 | python-ballview | 1.4.1+20111206-4 | - +- i386 | python-bibtex | 1.2.5-1+b1 | - +- i386 | python-biopython | 1.59-1 | - +- i386 | python-biosig | 1.3.0-2 | - +- i386 | python-bitarray | 0.8.0-2 | - +- i386 | python-blist | 1.3.4-2 | - +- i386 | python-bluez | 0.18-2 | - +- i386 | python-box2d | 2.0.2+svn20100109.244-1+b1 | - +- i386 | python-brian-lib | 1.3.1-1+b1 | - +- i386 | python-brlapi | 4.4-10+deb7u1 | - +- i386 | python-bsddb3 | 5.2.0-1+b1 | - +- i386 | python-bsddb3-dbg | 5.2.0-1+b1 | - +- i386 | python-bson | 2.2-4+deb7u1 | - +- i386 | python-bson-ext | 2.2-4+deb7u1 | - +- i386 | python-buffy | 0.13+b1 | - +- i386 | python-bzrlib | 2.6.0~bzr6526-1 | - +- i386 | python-bzrlib-dbg | 2.6.0~bzr6526-1 | - +- i386 | python-cairo | 1.8.8-1+b2 | - +- i386 | python-cairo-dbg | 1.8.8-1+b2 | - +- i386 | python-cap-ng | 0.6.6-2 | - +- i386 | python-carquinyol-0.84 | 0.84.1-3+b1 | - +- i386 | python-carquinyol-0.88 | 0.88.0-3+b1 | - +- i386 | python-carquinyol-0.96 | 0.96.0-1 | - +- i386 | python-cddb | 1.4-5.1+b3 | - +- i386 | python-chaco | 4.1.0-1 | - +- i386 | python-cheetah | 2.4.4-3 | - +- i386 | python-chemfp | 1.0-1 | - +- i386 | python-chm | 0.8.4-1+b2 | - +- i386 | python-cjson | 1.0.5-4+b1 | - +- i386 | python-cjson-dbg | 1.0.5-4+b1 | - +- i386 | python-ckanclient | 0.9-1 | - +- i386 | python-clearsilver | 0.10.5-1.3 | - +- i386 | python-cmor | 2.8.0-2+b1 | - +- i386 | python-cogent | 1.5.1-2 | - +- i386 | python-cogent-dbg | 1.5.1-2 | - +- i386 | python-comedilib | 0.10.0-3 | - +- i386 | python-coverage | 3.4-3 | - +- i386 | python-coverage-dbg | 3.4-3 | - +- i386 | python-cpl | 0.3.6-1 | - +- i386 | python-cqmf2 | 0.16-6+deb7u1 | - +- i386 | python-cqpid | 0.16-6+deb7u1 | - +- i386 | python-cracklib | 2.8.19-3 | - +- i386 | python-crypto | 2.6-4+deb7u3 | - +- i386 | python-crypto-dbg | 2.6-4+deb7u3 | - +- i386 | python-csound | 1:5.17.11~dfsg-3 | - +- i386 | python-csoundac | 1:5.17.11~dfsg-3 | - +- i386 | python-cups | 1.9.48-1.1 | - +- i386 | python-cvxopt | 1.1.4-1 | - +- i386 | python-cwiid | 0.6.00+svn201-3+b1 | - +- i386 | python-daap | 0.7.1-3+b2 | - +- i386 | python-dballe | 5.18-1 | - +- i386 | python-dbus | 1.1.1-1 | - +- i386 | python-dbus-dbg | 1.1.1-1 | - ++ i386 | python-deltarpm | - | 3.6+dfsg-1~bpo7+1 +- i386 | python-demgengeo | 0.99~bzr106-1+b1 | - +- i386 | python-desktop-agnostic | 0.3.92+dfsg-1 | - +- i386 | python-dipy-lib | 0.5.0-3 | - +- i386 | python-django-classy-tags | 0.3.4.1-1 | - +- i386 | python-djvu | 0.3.9-1 | - +- i386 | python-djvu-dbg | 0.3.9-1 | - +- i386 | python-dmidecode | 3.10.13-1.1 | - +- i386 | python-dmidecode-dbg | 3.10.13-1.1 | - +- i386 | python-dolfin | 1.0.0-7 | - +- i386 | python-dpm | 1.8.2-1+b2 | - +- i386 | python-drizzle | 1.0-3.1 | - +- i386 | python-drizzle-dbg | 1.0-3.1 | - +- i386 | python-drslib | 0.3.0a3-3 | - +- i386 | python-dulwich | 0.8.5-2 | - +- i386 | python-dulwich-dbg | 0.8.5-2 | - +- i386 | python-dumbnet | 1.12-3.1 | - +- i386 | python-ecryptfs | 99-1 | - +- i386 | python-edbus | 0.5.0+r49577-1+b2 | - +- i386 | python-egenix-mx-base-dbg | 3.2.1-1.1 | - +- i386 | python-egenix-mxbeebase | 3.2.1-1.1 | - +- i386 | python-egenix-mxdatetime | 3.2.1-1.1 | - +- i386 | python-egenix-mxproxy | 3.2.1-1.1 | - +- i386 | python-egenix-mxqueue | 3.2.1-1.1 | - +- i386 | python-egenix-mxstack | 3.2.1-1.1 | - +- i386 | python-egenix-mxtexttools | 3.2.1-1.1 | - +- i386 | python-egenix-mxtools | 3.2.1-1.1 | - +- i386 | python-egenix-mxuid | 3.2.1-1.1 | - +- i386 | python-egenix-mxurl | 3.2.1-1.1 | - +- i386 | python-eggtrayicon | 2.25.3-12 | - +- i386 | python-elementtidy | 1.0-7+b2 | - +- i386 | python-enable | 4.1.0-1 | - +- i386 | python-enet | 0.0~svn24-1 | - +- i386 | python-epr | 0.6.1-2 | - +- i386 | python-epr-dbg | 0.6.1-2 | - +- i386 | python-espeak | 0.4-1 | - +- i386 | python-ethos | 0.2.2-3 | - +- i386 | python-ethtool | 0.7-1.1 | - +- i386 | python-evolution | 2.32.0+dfsg-2+b1 | - +- i386 | python-exactimage | 0.8.5-5+deb7u3 | - +- i386 | python-fabio | 0.0.8-1 | - +- i386 | python-factory-boy | 1.1.3-1 | - +- i386 | python-farstream | 0.1.2-1 | - +- i386 | python-faulthandler | 2.0-1 | - +- i386 | python-fdsend | 0.2.1-2 | - +- i386 | python-fftw | 0.2.2-1 | - +! i386 | python-fife | 0.3.3+r3-3 | 0.3.5-1~bpo70+1 +- i386 | python-fiu | 0.90-3 | - +- i386 | python-fltk | 1.3.0-1 | - +- i386 | python-fltk-dbg | 1.3.0-1 | - +- i386 | python-fontforge | 0.0.20120101+git-2 | - +- i386 | python-formalchemy | 1.4.2-1 | - +- i386 | python-freenect | 1:0.1.2+dfsg-6 | - +- i386 | python-ftdi | 0.20-1+b1 | - +- i386 | python-fuse | 2:0.2.1-7 | - +- i386 | python-gamera | 3.3.3-2 | - +- i386 | python-gamera-dbg | 3.3.3-2 | - +- i386 | python-gamin | 0.1.10-4.1 | - +- i386 | python-gammu | 1.31.90-1+b1 | - +- i386 | python-gammu-dbg | 1.31.90-1+b1 | - +- i386 | python-gconf | 2.28.1+dfsg-1 | - +- i386 | python-gd | 0.56+dfsg-3 | - +- i386 | python-gd-dbg | 0.56+dfsg-3 | - +- i386 | python-gdal | 1.9.0-3.1 | - +- i386 | python-gdbm | 2.7.3-1 | - +- i386 | python-gdbm-dbg | 2.7.3-1 | - +- i386 | python-gdchart2 | 0.beta1-3.4+b4 | - +- i386 | python-gdcm | 2.2.0-14.1 | - +- i386 | python-gearman.libgearman | 0.13.2-2.1 | - +- i386 | python-genshi | 0.6-3 | - +- i386 | python-geographiclib | 1.21-1 | - +- i386 | python-geohash | 0.8.3-1+b1 | - +- i386 | python-geohash-dbg | 0.8.3-1+b1 | - +- i386 | python-geoip | 1.2.4-2+b2 | - +- i386 | python-getfem++ | 4.1.1+dfsg1-11 | - +- i386 | python-gevent | 0.13.6-1+nmu3 | - +- i386 | python-gevent-dbg | 0.13.6-1+nmu3 | - +- i386 | python-gi | 3.2.2-2 | - +- i386 | python-gi-cairo | 3.2.2-2 | - +- i386 | python-gi-dbg | 3.2.2-2 | - +- i386 | python-gitdb | 0.5.4-1 | - +- i386 | python-glade2 | 2.24.0-3+b1 | - +- i386 | python-glpk | 0.4.45-1 | - +- i386 | python-gmenu | 3.0.1-4 | - +- i386 | python-gmpy | 1.15-1 | - ++ i386 | python-gmsh | - | 2.7.0.dfsg-1~bpo70+1 +- i386 | python-gnatpython | 54-3 | - +- i386 | python-gnome2 | 2.28.1+dfsg-1 | - +- i386 | python-gnomedesktop | 2.32.0+dfsg-2+b1 | - +- i386 | python-gnomekeyring | 2.32.0+dfsg-2+b1 | - +- i386 | python-gnucash | 1:2.4.10-6 | - +- i386 | python-gnutls | 1.2.4-1 | - +- i386 | python-gobject-2 | 2.28.6-10 | - +- i386 | python-gobject-2-dbg | 2.28.6-10 | - +- i386 | python-gpgme | 0.2-3 | - +- i386 | python-gpgme-dbg | 0.2-3 | - +- i386 | python-gpiv | 2.0.0-4.1 | - +- i386 | python-gpod | 0.8.2-7 | - +! i386 | python-gps | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +- i386 | python-greenlet | 0.3.1-2.5 | - +- i386 | python-greenlet-dbg | 0.3.1-2.5 | - +- i386 | python-greenlet-dev | 0.3.1-2.5 | - +- i386 | python-grib | 1.9.3-1 | - +- i386 | python-gst0.10 | 0.10.22-3 | - +- i386 | python-gst0.10-dbg | 0.10.22-3 | - +- i386 | python-gst0.10-dev | 0.10.22-3 | - +- i386 | python-gst0.10-rtsp | 0.10.8-3 | - +! i386 | python-gtk-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +- i386 | python-gtk-vnc | 0.5.0-3.1 | - +- i386 | python-gtk2 | 2.24.0-3+b1 | - +- i386 | python-gtk2-dbg | 2.24.0-3+b1 | - +- i386 | python-gtkglext1 | 1.1.0-9.1 | - +- i386 | python-gtksourceview2 | 2.10.1-2 | - +- i386 | python-gtkspell | 2.25.3-12 | - +- i386 | python-gudev | 147.2-3 | - +- i386 | python-guestfs | 1:1.18.1-1+deb7u3 | - +- i386 | python-guiqwt | 2.1.6-4 | - +- i386 | python-gupnp-igd | 0.2.1-2 | - +- i386 | python-h5py | 2.0.1-2+b1 | - +- i386 | python-hdate | 1.6-1 | - +- i386 | python-hippocanvas | 0.3.1-1.1 | - +! i386 | python-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +- i386 | python-http-parser | 0.7.5-1 | - +- i386 | python-ieee1284 | 0.2.11-10 | - +- i386 | python-igraph | 0.5.4-2 | - +- i386 | python-imaging | 1.1.7-4 | - +- i386 | python-imaging-dbg | 1.1.7-4 | - +- i386 | python-imaging-sane | 1.1.7-4 | - +- i386 | python-imaging-sane-dbg | 1.1.7-4 | - +- i386 | python-imaging-tk | 1.1.7-4 | - +- i386 | python-imaging-tk-dbg | 1.1.7-4 | - +- i386 | python-imdbpy | 4.9-1 | - +- i386 | python-imobiledevice | 1.1.1-4 | - +- i386 | python-imposm | 2.4.0+dfsg-0.1 | - +- i386 | python-imposm-parser | 1.0.3-1 | - +- i386 | python-indicate | 0.6.92-1 | - +- i386 | python-initgroups | 2.13.0-1+b1 | - +- i386 | python-inotifyx | 0.2.0-1 | - +- i386 | python-input-pad | 1.0.1-2 | - +- i386 | python-iptcdata | 1.0.4-3 | - +- i386 | python-jinja2 | 2.6-1 | - +- i386 | python-jinja2-dbg | 2.6-1 | - +- i386 | python-jpype | 0.5.4.2-2 | - +- i386 | python-jswebkit | 0.0.3-2 | - +- i386 | python-kaa-base | 0.6.0+svn4596-1 | - +- i386 | python-kaa-imlib2 | 0.2.3+svn4596-2 | - +- i386 | python-kaa-metadata | 0.7.7+svn4596-4 | - +- i386 | python-kde4 | 4:4.8.4-1 | - +- i386 | python-kde4-dbg | 4:4.8.4-1 | - +- i386 | python-kerberos | 1.1+svn4895-1+b2 | - +- i386 | python-keybinder | 0.2.2-4 | - +- i386 | python-kinterbasdb | 3.3.0-3 | - +- i386 | python-kinterbasdb-dbg | 3.3.0-3 | - +- i386 | python-kjbuckets | 1:1.0.0-15.1 | - +- i386 | python-kml | 1.3.0~r863-4.1 | - +- i386 | python-krbv | 1.0.90-1 | - +- i386 | python-kwwidgets | 1.0.0~cvs20100930-8 | - +- i386 | python-lasso | 2.3.6-2 | - +- i386 | python-ldap | 2.4.10-1 | - +- i386 | python-ldap-dbg | 2.4.10-1 | - +! i386 | python-ldb | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldb-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldns | 1.6.13-1 | 1.6.16-1~bpo70+1 +- i386 | python-leveldb | 0~svn51-1 | - +- i386 | python-levenshtein | 0.10.1-2 | - +- i386 | python-levenshtein-dbg | 0.10.1-2 | - +- i386 | python-lfc | 1.8.2-1+b2 | - +- i386 | python-lhapdf | 5.8.7+repack-1 | - +- i386 | python-libapparmor | 2.7.103-4 | - +- i386 | python-libavg | 1.7.1-1 | - +- i386 | python-libhamlib2 | 1.2.15.1-1 | - +- i386 | python-libipa-hbac | 1.8.4-2 | - +- i386 | python-liblcms | 1.19.dfsg-1.2 | - +- i386 | python-liblicense | 0.8.1-3 | - +- i386 | python-liblinear | 1.8+dfsg-1 | - +- i386 | python-liblo | 0.9.1-2+b1 | - +- i386 | python-libmimic | 1.0.4-2.1 | - +- i386 | python-libpcap | 0.6.2-0.2 | - +- i386 | python-librdf | 1.0.14.1-1 | - +- i386 | python-libssh2 | 1.0.0-1.1 | - +- i386 | python-libsvm | 3.12-1 | - +- i386 | python-libtorrent | 0.15.10-1+b1 | - +- i386 | python-libtorrent-dbg | 0.15.10-1+b1 | - +- i386 | python-libuser | 1:0.56.9.dfsg.1-1.2 | - +! i386 | python-libvirt | 0.9.12.3-1 | 1.2.1-1~bpo70+2 +- i386 | python-libxml2 | 2.8.0+dfsg1-7+nmu2 | - +- i386 | python-libxml2-dbg | 2.8.0+dfsg1-7+nmu2 | - +- i386 | python-libxslt1 | 1.1.26-14.1 | - +- i386 | python-libxslt1-dbg | 1.1.26-14.1 | - +- i386 | python-lightblue | 0.3.2-1+b3 | - +- i386 | python-lilv | 0.14.2~dfsg0-4 | - +- i386 | python-llfuse | 0.37.1-2 | - +- i386 | python-llfuse-dbg | 0.37.1-2 | - +- i386 | python-llvm | 0.6+svn105-2 | - +- i386 | python-llvm-dbg | 0.6+svn105-2 | - +- i386 | python-louis | 2.4.1-1 | - +- i386 | python-lucene | 3.5.0-1.1 | - +- i386 | python-lucene-dbg | 3.5.0-1.1 | - +- i386 | python-lunar | 2.0.1-2.2 | - +! i386 | python-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +- i386 | python-lzma | 0.5.3-2+b1 | - +- i386 | python-lzma-dbg | 0.5.3-2+b1 | - +- i386 | python-lzo | 1.08-1 | - +- i386 | python-m2crypto | 0.21.1-2 | - ++ i386 | python-m2ext | - | 0.1-1~bpo70+1 +! i386 | python-magic | 5.11-2 | 1:5.14-2~bpo70+1 +- i386 | python-magic-dbg | 5.11-2 | - +- i386 | python-magics++ | 2.14.11-4 | - +- i386 | python-mailutils | 1:2.99.97-3 | - +- i386 | python-mapnik2 | 2.0.0+ds1-3+b4 | - +- i386 | python-mapscript | 6.0.1-3.2+deb7u2 | - +- i386 | python-markupsafe | 0.15-1 | - +- i386 | python-markupsafe-dbg | 0.15-1 | - +- i386 | python-mathgl | 1.11.2-17 | - +- i386 | python-matplotlib | 1.1.1~rc2-1 | - +- i386 | python-matplotlib-dbg | 1.1.1~rc2-1 | - +- i386 | python-mecab | 0.99.3-1 | - +- i386 | python-meld3 | 0.6.5-3.1 | - +- i386 | python-meliae | 0.4.0-1 | - +- i386 | python-meliae-dbg | 0.4.0-1 | - +- i386 | python-metaconfig | 0.1.4a1-1 | - +- i386 | python-mhash | 1.4-1+b2 | - +- i386 | python-mhash-dbg | 1.4-1+b2 | - +- i386 | python-mididings | 0~20120419~ds0-1 | - +- i386 | python-milter | 0.9.5-3 | - +- i386 | python-ming | 1:0.4.4-1.1 | - +- i386 | python-mlpy-lib | 2.2.0~dfsg1-2+b1 | - +- i386 | python-mlt5 | 0.8.0-4 | - +- i386 | python-mmkeys | 1.6.2.1-5 | - +- i386 | python-mpi4py | 1.3+hg20120611-3 | - +- i386 | python-mpi4py-dbg | 1.3+hg20120611-3 | - +- i386 | python-mpikmeans | 1.5-1+b1 | - +- i386 | python-mpltoolkits.basemap | 1.0.3+dfsg-2 | - ++ i386 | python-msgpack | - | 0.3.0-1~bpo70+2 +- i386 | python-mtbl | 0.1-2 | - +- i386 | python-museek | 1:0.2+svn20100315.r1208-2 | - +- i386 | python-mvpa-lib | 0.4.8-1 | - +- i386 | python-mvpa2-lib | 2.1.0-1 | - +- i386 | python-mysqldb | 1.2.3-2 | - +- i386 | python-mysqldb-dbg | 1.2.3-2 | - +- i386 | python-nautilus | 1.1-3 | - +- i386 | python-ncap | 1.9.2-1+b2 | - +- i386 | python-necpp | 1.5.0+cvs20101003-2.1 | - +- i386 | python-netcdf | 2.8-4 | - +- i386 | python-netifaces | 0.8-1 | - +- i386 | python-netifaces-dbg | 0.8-1 | - +- i386 | python-neuroshare | 0.8.5-1 | - +- i386 | python-newt | 0.52.14-11.1 | - +- i386 | python-newt-dbg | 0.52.14-11.1 | - +- i386 | python-nflog | 0.2-3 | - +- i386 | python-nfqueue | 0.4-3 | - +- i386 | python-nids | 0.6.1-1+b1 | - +- i386 | python-nifti | 0.20100607.1-4 | - +- i386 | python-notify | 0.1.1-3 | - +- i386 | python-nss | 0.12-1 | - ++ i386 | python-ntdb | - | 1.0-2~bpo70+1 ++ i386 | python-ntdb-dbg | - | 1.0-2~bpo70+1 +- i386 | python-numexpr | 2.0.1-3 | - +- i386 | python-numexpr-dbg | 2.0.1-3 | - +- i386 | python-numpy | 1:1.6.2-1.2 | - +- i386 | python-numpy-dbg | 1:1.6.2-1.2 | - +- i386 | python-obexftp | 0.23-1.1 | - +- i386 | python-ogg | 1.3+repack-5+b2 | - +- i386 | python-ogg-dbg | 1.3+repack-5+b2 | - +- i386 | python-omniorb | 3.6-1 | - +- i386 | python-omniorb-dbg | 3.6-1 | - +- i386 | python-openbabel | 2.3.1+dfsg-4 | - +- i386 | python-opencv | 2.3.1-11 | - +- i386 | python-openmeeg | 2.0.0.dfsg-5 | - +- i386 | python-openscap | 0.8.0-4+b1 | - +- i386 | python-openssl | 0.13-2+deb7u1 | - +- i386 | python-openssl-dbg | 0.13-2+deb7u1 | - +- i386 | python-openstack-common | 0.1+git20120203-1 | - +- i386 | python-openturns | 1.0-4 | - +- i386 | python-openturns-dev | 1.0-4 | - +- i386 | python-osmgpsmap | 0.7.3-3 | - +- i386 | python-otr | 0.2.1-1+b2 | - +- i386 | python-otr-dbg | 0.2.1-1+b2 | - +- i386 | python-ow | 2.8p15-1 | - +- i386 | python-pacparser | 1.3.0-2 | - +- i386 | python-pam | 0.4.2-13 | - +- i386 | python-pandas-lib | 0.8.0-2 | - +- i386 | python-parted | 3.6-6 | - +- i386 | python-parted-dbg | 3.6-6 | - +- i386 | python-passfd | 0.2-1 | - +- i386 | python-pcapy | 0.10.8-1 | - +- i386 | python-pebl | 1.0.2-2 | - +- i386 | python-pebl-dbg | 1.0.2-2 | - +- i386 | python-pgm | 0.3.12-2+b4 | - +- i386 | python-pgmagick | 0.5.1-1+b1 | - +- i386 | python-phoneutils | 0.1+git20100219-1+b1 | - +- i386 | python-pisock | 0.12.5-5 | - +- i386 | python-pisock-dbg | 0.12.5-5 | - +! i386 | python-pivy | 0.5.0~v609hg-1 | 0.5.0~v609hg-3~bpo70+1 +- i386 | python-playerc | 3.0.2+dfsg-4+b1 | - +- i386 | python-plist | 1.8-1 | - +- i386 | python-plplot | 5.9.9-5 | - +- i386 | python-plplot-qt | 5.9.9-5 | - +- i386 | python-polybori | 0.5~rc1-2.2 | - +- i386 | python-poppler | 0.12.1-8+b1 | - +- i386 | python-poppler-dbg | 0.12.1-8+b1 | - +- i386 | python-poppler-qt4 | 0.16.2-2 | - +- i386 | python-pqueue | 0.2-7.1+b2 | - +- i386 | python-prctl | 1.1.1-1.1 | - +- i386 | python-prelude | 1.0.0-9 | - +- i386 | python-preludedb | 1.0.0-1.1+b2 | - +- i386 | python-presage | 0.8.8-1 | - +- i386 | python-presage-dbg | 0.8.8-1 | - +- i386 | python-protobuf | 2.4.1-3 | - +- i386 | python-protocols | 1.0a.svn20070625-5+b2 | - +- i386 | python-psutil | 0.5.1-1 | - +- i386 | python-psycopg2 | 2.4.5-1 | - +- i386 | python-psycopg2-dbg | 2.4.5-1 | - +- i386 | python-py++ | 1.0.0-1 | - +- i386 | python-pyalsa | 1.0.25-1 | - +- i386 | python-pyamf | 0.6.1+dfsg-3 | - +- i386 | python-pyamf-dbg | 0.6.1+dfsg-3 | - +- i386 | python-pyao | 0.82-5 | - +- i386 | python-pyao-dbg | 0.82-5 | - +- i386 | python-pyaudio | 0.2.4-2+b1 | - +- i386 | python-pybiggles | 1.6.6-1+b1 | - +- i386 | python-pyclamav | 0.4.1-7 | - +- i386 | python-pycryptopp | 0.5.29-1 | - +- i386 | python-pycryptopp-dbg | 0.5.29-1 | - +- i386 | python-pycurl | 7.19.0-5 | - +- i386 | python-pycurl-dbg | 7.19.0-5 | - +- i386 | python-pydds | 2.1.2+ddd105-1 | - +- i386 | python-pyepl | 1.1.0-3.1 | - +- i386 | python-pyexiv2 | 0.3.2-5 | - +- i386 | python-pyfann | 2.1.0~beta~dfsg-8 | - +- i386 | python-pyfann-dbg | 2.1.0~beta~dfsg-8 | - +- i386 | python-pyfits | 1:3.0.8-2 | - +- i386 | python-pyfribidi | 0.11.0+repack-1 | - +- i386 | python-pyfribidi-dbg | 0.11.0+repack-1 | - +- i386 | python-pygame | 1.9.1release+dfsg-8 | - +- i386 | python-pygetdata | 0.7.3-6 | - +- i386 | python-pygoocanvas | 0.14.1-1+b3 | - +- i386 | python-pygraphviz | 1.1-2 | - +- i386 | python-pygraphviz-dbg | 1.1-2 | - +- i386 | python-pygresql | 1:4.0-3 | - +- i386 | python-pygresql-dbg | 1:4.0-3 | - +- i386 | python-pyicu | 1.4-1 | - +- i386 | python-pyicu-dbg | 1.4-1 | - +- i386 | python-pyisomd5sum | 1:1.0.7+git.20110618.6c9cd2f-1 | - +- i386 | python-pykaraoke | 0.7.5-1 | - +- i386 | python-pykcs11 | 1.2.4-1 | - +- i386 | python-pylibacl | 0.5.1-1.1 | - +- i386 | python-pylibacl-dbg | 0.5.1-1.1 | - +- i386 | python-pylibmc | 1.2.2-1+b2 | - +- i386 | python-pylibmc-dbg | 1.2.2-1+b2 | - +- i386 | python-pylirc | 0.0.5-3 | - +- i386 | python-pymad | 0.6-1.2+b1 | - +- i386 | python-pyme | 1:0.8.1-2 | - +- i386 | python-pymongo | 2.2-4+deb7u1 | - +- i386 | python-pymongo-ext | 2.2-4+deb7u1 | - +- i386 | python-pymssql | 1.0.2+dfsg-1+b2 | - +- i386 | python-pyo | 0.6.1-1 | - +- i386 | python-pyodbc | 2.1.7-1+b1 | - +- i386 | python-pyodbc-dbg | 2.1.7-1+b1 | - +- i386 | python-pyode | 1.2.0-4+cvs20090320+b2 | - +- i386 | python-pyorbit | 2.24.0-6+b1 | - +- i386 | python-pyosd | 0.2.14-5.1 | - +- i386 | python-pypcap | 1.1.2+debian-2.2 | - +- i386 | python-pypm | 0.0.7-7 | - +- i386 | python-pyproj | 1.8.9-1+b1 | - +- i386 | python-pypsignifit | 3.0~beta.20120611.1-1 | - +- i386 | python-pyscard | 1.6.12.1-3 | - +- i386 | python-pyside.phonon | 1.1.1-3 | - +- i386 | python-pyside.qtcore | 1.1.1-3 | - +- i386 | python-pyside.qtdeclarative | 1.1.1-3 | - +- i386 | python-pyside.qtgui | 1.1.1-3 | - +- i386 | python-pyside.qthelp | 1.1.1-3 | - +- i386 | python-pyside.qtnetwork | 1.1.1-3 | - +- i386 | python-pyside.qtopengl | 1.1.1-3 | - +- i386 | python-pyside.qtscript | 1.1.1-3 | - +- i386 | python-pyside.qtsql | 1.1.1-3 | - +- i386 | python-pyside.qtsvg | 1.1.1-3 | - +- i386 | python-pyside.qttest | 1.1.1-3 | - +- i386 | python-pyside.qtuitools | 1.1.1-3 | - +- i386 | python-pyside.qtwebkit | 1.1.1-3 | - +- i386 | python-pyside.qtxml | 1.1.1-3 | - +- i386 | python-pyspatialite | 3.0.1-2 | - +- i386 | python-pysqlite1.1 | 1.1.8a-6 | - +- i386 | python-pysqlite1.1-dbg | 1.1.8a-6 | - +- i386 | python-pysqlite2 | 2.6.3-3 | - +- i386 | python-pysqlite2-dbg | 2.6.3-3 | - +- i386 | python-pytango | 7.2.3-2 | - +- i386 | python-pytc | 0.8-1+b2 | - +- i386 | python-pytc-dbg | 0.8-1+b2 | - +- i386 | python-pythonmagick | 0.9.7-2+b1 | - +- i386 | python-pytyrant | 1.1.17-1 | - +- i386 | python-pyvorbis | 1.5-1 | - +- i386 | python-pyvorbis-dbg | 1.5-1 | - +- i386 | python-pywcs | 1.11-1 | - +- i386 | python-pywt | 0.2.0-5 | - +- i386 | python-pyx | 0.11.1-2+b1 | - +- i386 | python-pyxattr | 0.5.1-1.1 | - +- i386 | python-pyxattr-dbg | 0.5.1-1.1 | - +- i386 | python-pyxine | 0.1alpha2-7+b1 | - +- i386 | python-pyxine-dbg | 0.1alpha2-7+b1 | - +- i386 | python-pyxmpp | 1.1.2-1 | - +- i386 | python-qgis | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | python-qmf | 0.16-6+deb7u1 | - +- i386 | python-qmf2 | 0.16-6+deb7u1 | - +- i386 | python-qrencode | 1.01-2+b1 | - +- i386 | python-qscintilla2 | 2.6.2-2 | - +- i386 | python-qt4 | 4.9.3-4 | - +- i386 | python-qt4-dbg | 4.9.3-4 | - +- i386 | python-qt4-dbus | 4.9.3-4 | - +- i386 | python-qt4-dbus-dbg | 4.9.3-4 | - +- i386 | python-qt4-gl | 4.9.3-4 | - +- i386 | python-qt4-gl-dbg | 4.9.3-4 | - +- i386 | python-qt4-phonon | 4.9.3-4 | - +- i386 | python-qt4-phonon-dbg | 4.9.3-4 | - +- i386 | python-qt4-sql | 4.9.3-4 | - +- i386 | python-qt4-sql-dbg | 4.9.3-4 | - +- i386 | python-quixote | 2.7~b2-1+b2 | - +- i386 | python-quixote1 | 1.2-4.1+b2 | - +- i386 | python-qwt3d-qt4 | 0.1.7~cvs20090625-9 | - +- i386 | python-qwt5-qt4 | 5.2.1~cvs20091107+dfsg-6+b2 | - +- i386 | python-rabbyt | 0.8.1-1+b2 | - +- i386 | python-radare2 | 0.9-1 | - +- i386 | python-radix | 0.5-3 | - +- i386 | python-rapi2 | 0.15-2.1 | - +- i386 | python-rdflib | 2.4.2-1+b2 | - +- i386 | python-rdkit | 201203-3 | - +- i386 | python-recoll | 1.17.3-2 | - +- i386 | python-regex | 0.1.20120613-1 | - +- i386 | python-regex-dbg | 0.1.20120613-1 | - +! i386 | python-remctl | 3.2-4 | 3.8-1~bpo70+1 +- i386 | python-renderpm | 2.5-1.1 | - +- i386 | python-renderpm-dbg | 2.5-1.1 | - +- i386 | python-renpy | 6.13.12-1 | - +- i386 | python-reportlab-accel | 2.5-1.1 | - +- i386 | python-reportlab-accel-dbg | 2.5-1.1 | - +- i386 | python-rfoo | 1.3.0-2 | - +- i386 | python-rivet | 1.8.0-1 | - +- i386 | python-rpm | 4.10.0-5+deb7u1 | - +- i386 | python-rpy | 1.0.3-22 | - +- i386 | python-rpy2 | 2.2.6-1 | - +- i386 | python-rra | 0.14-1.2 | - +- i386 | python-rrdtool | 1.4.7-2 | - +- i386 | python-rsvg | 2.32.0+dfsg-2+b1 | - +- i386 | python-rtfcomp | 1.1-5+b1 | - +! i386 | python-samba | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | python-scgi | 1.13-1+b2 | - +- i386 | python-scipy | 0.10.1+dfsg2-1 | - +- i386 | python-scipy-dbg | 0.10.1+dfsg2-1 | - +- i386 | python-sciscipy | 0.3.0-3 | - +- i386 | python-selinux | 2.1.9-5 | - +- i386 | python-semanage | 2.1.6-6 | - +- i386 | python-sendfile | 1.2.4-1+b2 | - +- i386 | python-sendfile-dbg | 1.2.4-1+b2 | - +- i386 | python-setools | 3.3.7-3 | - +- i386 | python-setproctitle | 1.0.1-1+b1 | - +- i386 | python-setproctitle-dbg | 1.0.1-1+b1 | - +- i386 | python-sfml | 1.5-2+b1 | - +- i386 | python-shapely | 1.2.14-1 | - +- i386 | python-sidl | 1.4.0.dfsg-8.1 | - +- i386 | python-sigmask | 2.4.1-1+b2 | - +- i386 | python-silo | 4.8-13 | - +- i386 | python-simplejson | 2.5.2-1 | - +- i386 | python-simpleparse-mxtexttools | 2.1.0a1-6 | - +- i386 | python-sip | 4.13.3-2 | - +- i386 | python-sip-dbg | 4.13.3-2 | - +- i386 | python-sip-dev | 4.13.3-2 | - +- i386 | python-skimage-lib | 0.6.1-1 | - +- i386 | python-sklearn-lib | 0.11.0-2+deb7u1 | - +- i386 | python-smartpm | 1.4-2 | - +- i386 | python-smbc | 1.0.6-1+b1 | - +- i386 | python-smbpasswd | 1.0.1-1.2+b2 | - +- i386 | python-smbus | 3.1.0-2 | - +- i386 | python-snappy | 0.4-1 | - +- i386 | python-soya | 0.15~rc1-8 | - +- i386 | python-soya-dbg | 0.15~rc1-8 | - +- i386 | python-sparse | 1.1-1+b2 | - +- i386 | python-sphere | 3.2-4 | - +- i386 | python-spice-client-gtk | 0.12-5 | - +- i386 | python-sqlalchemy-ext | 0.7.8-1 | - +- i386 | python-sqlite | 1.0.1-9 | - +- i386 | python-sqlite-dbg | 1.0.1-9 | - +- i386 | python-sqlitecachec | 1.1.2-1+b2 | - +- i386 | python-sss | 1.8.4-2 | - +- i386 | python-statgrab | 0.5-4 | - +- i386 | python-statsmodels-lib | 0.4.2-1 | - +- i386 | python-stemmer | 1.2.0+dfsg-1 | - +- i386 | python-stemmer-dbg | 1.2.0+dfsg-1 | - +- i386 | python-stfio | 0.10.18-1.1+b1 | - +- i386 | python-stfl | 0.22-1+b1 | - +- i386 | python-storm | 0.19-1 | - +- i386 | python-storm-dbg | 0.19-1 | - +- i386 | python-subnettree | 0.12-4+b1 | - +- i386 | python-subversion | 1.6.17dfsg-4+deb7u4 | - +- i386 | python-subvertpy | 0.8.10-2 | - +- i386 | python-subvertpy-dbg | 0.8.10-2 | - +- i386 | python-sugar-0.84 | 0.84.2-4 | - +- i386 | python-sugar-0.88 | 0.88.0-4 | - +- i386 | python-sugar-0.96 | 0.96.0-1 | - +- i386 | python-sugar-toolkit-0.84 | 0.84.17-1 | - +- i386 | python-sugar-toolkit-0.88 | 0.88.1-3+b1 | - +- i386 | python-sugar-toolkit-0.96 | 0.96.1-1 | - +- i386 | python-sugar3 | 0.96.1-2 | - +- i386 | python-svipc | 0.14-2 | - +- i386 | python-svn | 1.7.5-1.1 | - +- i386 | python-svn-dbg | 1.7.5-1.1 | - +- i386 | python-swiginac | 1.5.1.1-1+b2 | - +- i386 | python-syfi | 1.0.0.dfsg-1 | - +- i386 | python-tables | 2.3.1-3 | - +- i386 | python-tables-dbg | 2.3.1-3 | - +- i386 | python-tagpy | 0.94.8-4 | - +! i386 | python-talloc | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-talloc-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-talloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +- i386 | python-tau | 2.16.4-1.4+b1 | - +- i386 | python-tcpwrap | 0.2-2.1+b3 | - +! i386 | python-tdb | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | python-tdb-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +- i386 | python-tk | 2.7.3-1 | - +- i386 | python-tk-dbg | 2.7.3-1 | - +- i386 | python-tomoe | 0.6.0-1.3 | - +- i386 | python-traits | 4.1.0-1 | - +! i386 | python-twisted-bin | 12.0.0-1 | 13.0.0-1~bpo70+1 +! i386 | python-twisted-bin-dbg | 12.0.0-1 | 13.0.0-1~bpo70+1 +- i386 | python-twisted-runner | 12.0.0-1 | - +- i386 | python-twisted-runner-dbg | 12.0.0-1 | - +- i386 | python-ufc | 2.0.5-3 | - +- i386 | python-unac | 1.7.0-1+b2 | - +! i386 | python-unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +- i386 | python-uniconvertor | 1.1.4-1+b2 | - +- i386 | python-uniconvertor-dbg | 1.1.4-1+b2 | - +! i386 | python-uno | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +- i386 | python-unshare | 0.1-2 | - +- i386 | python-urwid | 1.0.1-2 | - +- i386 | python-usb | 0.4.3-1 | - +- i386 | python-usbtc08 | 0.1.1-2 | - +- i386 | python-utmp | 0.8+nmu1+b1 | - +- i386 | python-vigra | 1.7.1+dfsg1-3 | - +- i386 | python-vipscc | 7.28.5-1+deb7u1 | - +- i386 | python-visual | 1:5.12-1.5 | - +- i386 | python-vte | 1:0.28.2-5 | - +- i386 | python-vtk | 5.8.0-13+b1 | - +- i386 | python-vtkgdcm | 2.2.0-14.1 | - +- i386 | python-webkit | 1.1.8-2 | - +! i386 | python-wimpiggy | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +- i386 | python-wnck | 2.32.0+dfsg-2+b1 | - +- i386 | python-workqueue | 3.5.1-2 | - +- i386 | python-wxgtk2.8 | 2.8.12.1-12 | - +- i386 | python-wxgtk2.8-dbg | 2.8.12.1-12 | - +- i386 | python-xapian | 1.2.12-2 | - +- i386 | python-xattr | 0.6.4-2 | - +- i386 | python-xdelta3 | 3.0.0.dfsg-1 | - +- i386 | python-xklavier | 0.4-4 | - +- i386 | python-xmmsclient | 0.8+dfsg-4 | - +- i386 | python-xpyb | 1.3.1-1 | - ++ i386 | python-yade | - | 1.05.0-2~bpo70+1 +- i386 | python-yaml | 3.10-4 | - +- i386 | python-yaml-dbg | 3.10-4 | - ++ i386 | python-yara | - | 2.0.0-2~bpo70+1 +- i386 | python-yenc | 0.3+debian-2+b2 | - +- i386 | python-zbar | 0.10+doc-8 | - +- i386 | python-zbarpygtk | 0.10+doc-8 | - +- i386 | python-zeroc-ice | 3.4.2-8.2 | - +- i386 | python-zfec | 1.4.5-2 | - +- i386 | python-zinnia | 0.06-1+b1 | - +! i386 | python-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +- i386 | python-zodb | 1:3.9.7-2 | - +- i386 | python-zookeeper | 3.3.5+dfsg1-2 | - +- i386 | python-zope.hookable | 3.4.1-8 | - +- i386 | python-zope.i18nmessageid | 3.5.3-2 | - +- i386 | python-zope.interface | 3.6.1-3 | - +- i386 | python-zope.interface-dbg | 3.6.1-3 | - +- i386 | python-zope.proxy | 3.6.1-2 | - +- i386 | python-zope.security | 3.8.3-2 | - +- i386 | python2.6 | 2.6.8-1.1 | - +- i386 | python2.6-dbg | 2.6.8-1.1 | - +- i386 | python2.6-dev | 2.6.8-1.1 | - +- i386 | python2.6-minimal | 2.6.8-1.1 | - +- i386 | python2.7 | 2.7.3-6 | - +- i386 | python2.7-dbg | 2.7.3-6 | - +- i386 | python2.7-dev | 2.7.3-6 | - +- i386 | python2.7-minimal | 2.7.3-6 | - +- i386 | python3-apt | 0.8.8.2 | - +- i386 | python3-apt-dbg | 0.8.8.2 | - +- i386 | python3-bitarray | 0.8.0-2 | - +- i386 | python3-bsddb3 | 5.2.0-1+b1 | - +- i386 | python3-bsddb3-dbg | 5.2.0-1+b1 | - +- i386 | python3-cairo | 1.10.0+dfsg-2 | - +- i386 | python3-cracklib | 2.8.19-3 | - +- i386 | python3-crypto | 2.6-4+deb7u3 | - +- i386 | python3-crypto-dbg | 2.6-4+deb7u3 | - +- i386 | python3-dbus | 1.1.1-1 | - +- i386 | python3-dbus-dbg | 1.1.1-1 | - +- i386 | python3-dbus.mainloop.qt | 4.9.3-4 | - +- i386 | python3-dbus.mainloop.qt-dbg | 4.9.3-4 | - ++ i386 | python3-deltarpm | - | 3.6+dfsg-1~bpo7+1 +- i386 | python3-drizzle | 1.0-3.1 | - +- i386 | python3-drizzle-dbg | 1.0-3.1 | - +- i386 | python3-epr | 0.6.1-2 | - +- i386 | python3-epr-dbg | 0.6.1-2 | - +- i386 | python3-gdbm | 3.2.3-1 | - +- i386 | python3-gdbm-dbg | 3.2.3-1 | - +- i386 | python3-gearman.libgearman | 0.13.2-2.1 | - +- i386 | python3-gi | 3.2.2-2 | - +- i386 | python3-gi-cairo | 3.2.2-2 | - +- i386 | python3-gi-dbg | 3.2.2-2 | - ++ i386 | python3-hivex | - | 1.3.9-1~bpo70+1 +- i386 | python3-jinja2 | 2.6-1 | - +- i386 | python3-jinja2-dbg | 2.6-1 | - +- i386 | python3-leveldb | 0~svn51-1 | - +- i386 | python3-llfuse | 0.37.1-2 | - +- i386 | python3-llfuse-dbg | 0.37.1-2 | - +! i386 | python3-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python3-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +- i386 | python3-markupsafe | 0.15-1 | - +- i386 | python3-markupsafe-dbg | 0.15-1 | - +- i386 | python3-mpi4py | 1.3+hg20120611-3 | - +- i386 | python3-mpi4py-dbg | 1.3+hg20120611-3 | - ++ i386 | python3-msgpack | - | 0.3.0-1~bpo70+2 +- i386 | python3-numpy | 1:1.6.2-1.2 | - +- i386 | python3-numpy-dbg | 1:1.6.2-1.2 | - +- i386 | python3-openssl | 0.13-2+deb7u1 | - +- i386 | python3-openssl-dbg | 0.13-2+deb7u1 | - +- i386 | python3-postgresql | 1.0.2-1+b1 | - +- i386 | python3-psycopg2 | 2.4.5-1 | - +- i386 | python3-psycopg2-dbg | 2.4.5-1 | - +- i386 | python3-pyfits | 1:3.0.8-2 | - +- i386 | python3-pykde4 | 4:4.8.4-1 | - +- i386 | python3-pykde4-dbg | 4:4.8.4-1 | - +- i386 | python3-pylibacl | 0.5.1-1.1 | - +- i386 | python3-pylibacl-dbg | 0.5.1-1.1 | - +- i386 | python3-pyqt4 | 4.9.3-4 | - +- i386 | python3-pyqt4-dbg | 4.9.3-4 | - +- i386 | python3-pyqt4.phonon | 4.9.3-4 | - +- i386 | python3-pyqt4.phonon-dbg | 4.9.3-4 | - +- i386 | python3-pyqt4.qsci | 2.6.2-2 | - +- i386 | python3-pyqt4.qtopengl | 4.9.3-4 | - +- i386 | python3-pyqt4.qtopengl-dbg | 4.9.3-4 | - +- i386 | python3-pyqt4.qtsql | 4.9.3-4 | - +- i386 | python3-pyqt4.qtsql-dbg | 4.9.3-4 | - +- i386 | python3-pyside.phonon | 1.1.1-3 | - +- i386 | python3-pyside.qtcore | 1.1.1-3 | - +- i386 | python3-pyside.qtdeclarative | 1.1.1-3 | - +- i386 | python3-pyside.qtgui | 1.1.1-3 | - +- i386 | python3-pyside.qthelp | 1.1.1-3 | - +- i386 | python3-pyside.qtnetwork | 1.1.1-3 | - +- i386 | python3-pyside.qtopengl | 1.1.1-3 | - +- i386 | python3-pyside.qtscript | 1.1.1-3 | - +- i386 | python3-pyside.qtsql | 1.1.1-3 | - +- i386 | python3-pyside.qtsvg | 1.1.1-3 | - +- i386 | python3-pyside.qttest | 1.1.1-3 | - +- i386 | python3-pyside.qtuitools | 1.1.1-3 | - +- i386 | python3-pyside.qtwebkit | 1.1.1-3 | - +- i386 | python3-pyside.qtxml | 1.1.1-3 | - +- i386 | python3-pyxattr | 0.5.1-1.1 | - +- i386 | python3-pyxattr-dbg | 0.5.1-1.1 | - +- i386 | python3-regex | 0.1.20120613-1 | - +- i386 | python3-regex-dbg | 0.1.20120613-1 | - +- i386 | python3-scipy | 0.10.1+dfsg2-1 | - +- i386 | python3-scipy-dbg | 0.10.1+dfsg2-1 | - +- i386 | python3-sip | 4.13.3-2 | - +- i386 | python3-sip-dbg | 4.13.3-2 | - +- i386 | python3-sip-dev | 4.13.3-2 | - +- i386 | python3-stemmer | 1.2.0+dfsg-1 | - +- i386 | python3-stemmer-dbg | 1.2.0+dfsg-1 | - +- i386 | python3-svipc | 0.14-2 | - +- i386 | python3-tk | 3.2.3-1 | - +- i386 | python3-tk-dbg | 3.2.3-1 | - +- i386 | python3-uno | 1:3.5.4+dfsg2-0+deb7u2 | - +- i386 | python3-urwid | 1.0.1-2 | - +- i386 | python3-yaml | 3.10-4 | - +- i386 | python3-yaml-dbg | 3.10-4 | - ++ i386 | python3-yara | - | 2.0.0-2~bpo70+1 +! i386 | python3-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python3-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +- i386 | python3-zope.interface | 3.6.1-3 | - +- i386 | python3-zope.interface-dbg | 3.6.1-3 | - +- i386 | python3.2 | 3.2.3-7 | - +- i386 | python3.2-dbg | 3.2.3-7 | - +- i386 | python3.2-dev | 3.2.3-7 | - +- i386 | python3.2-minimal | 3.2.3-7 | - +- i386 | pythontracer | 8.10.16-1.1 | - +- i386 | pytone | 3.0.0-1+b4 | - +- i386 | pyxplot | 0.8.4-5+b1 | - +! i386 | q4wine | 0.121-4 | 1.1-r2-1~bpo70+1 +- i386 | qalc | 0.9.7-8 | - +- i386 | qalculate-gtk | 0.9.7-3 | - +- i386 | qantenna | 0.2.3-2 | - +- i386 | qapt-batch | 1.3.0-2 | - +- i386 | qapt-dbg | 1.3.0-2 | - +- i386 | qapt-deb-installer | 1.3.0-2 | - +- i386 | qapt-utils | 1.3.0-2 | - +- i386 | qasconfig | 0.17.2-2 | - +- i386 | qashctl | 0.17.2-2 | - +- i386 | qasmixer | 0.17.2-2 | - +- i386 | qbankmanager | 0.9.55beta-3 | - +- i386 | qbittorrent | 2.9.8-1 | - +- i386 | qbittorrent-dbg | 2.9.8-1 | - +- i386 | qbittorrent-nox | 2.9.8-1 | - +- i386 | qbrew | 0.4.1-3 | - +- i386 | qca2-utils | 2.0.3-4 | - +- i386 | qcomicbook | 0.8.2-1 | - +! i386 | qconf | 1.4-3 | 1.5-1~bpo70+1 +- i386 | qdacco | 0.8.2-1 | - +- i386 | qdbm-cgi | 1.8.78-2 | - +- i386 | qdbm-util | 1.8.78-2 | - +- i386 | qdbus | 4:4.8.2+dfsg-11 | - +- i386 | qelectrotech | 0.22+svn897-1 | - +! i386 | qemu | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-guest-agent | - | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-kvm | 1.1.2+dfsg-6 | 1.7.0+dfsg-2~bpo70+2 +- i386 | qemu-kvm-dbg | 1.1.2+dfsg-6 | - +! i386 | qemu-system | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-arm | - | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-common | - | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-mips | - | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-misc | - | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-ppc | - | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-sparc | - | 1.7.0+dfsg-2~bpo70+2 ++ i386 | qemu-system-x86 | - | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-user | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-user-static | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-utils | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemubuilder | 0.70 | 0.73~bpo7+1 +- i386 | qfits-tools | 6.2.0-5 | - +- i386 | qgis | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | qgis-mapserver | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | qgis-plugin-grass | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | qgis-providers | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | qgis-sqlanywhere1.7.5 | 1.7.4+1.7.5~20120320-1.1+b1 | - +- i386 | qgit | 2.4-1 | - +- i386 | qgo | 2~svn764-1 | - +- i386 | qhull-bin | 2009.1-3 | - +- i386 | qiime | 1.4.0-2 | - +- i386 | qimhangul-qt4 | 0.2.0-2 | - +- i386 | qingy | 0.9.7-2 | - +- i386 | qiv | 2.2.4-1 | - +- i386 | qjackctl | 0.3.9-2 | - +- i386 | qjackrcd | 1.0.6~ds0-1 | - +- i386 | qlandkartegt | 1.5.0~dfsg1-1 | - +- i386 | qlandkartegt-garmin | 0.3.4-2 | - +- i386 | qliss3d | 1.4-1 | - +- i386 | qlvnictools | 0.0.1-1 | - +- i386 | qmail | 1.06-5 | - +- i386 | qmc | 0.94-3+b1 | - +- i386 | qmf-dbg | 1.0.7~2011w23.2-2.1 | - +- i386 | qmf-dev | 1.0.7~2011w23.2-2.1 | - +- i386 | qmf-examples | 1.0.7~2011w23.2-2.1 | - +- i386 | qmf-tests | 1.0.7~2011w23.2-2.1 | - +- i386 | qmfgen | 0.16-6+deb7u1 | - +- i386 | qmidiarp | 0.5.0-1 | - +- i386 | qmidiarp-dbg | 0.5.0-1 | - +- i386 | qmidinet | 0.1.2-1 | - +- i386 | qmidinet-dbg | 0.1.2-1 | - +- i386 | qmidiroute | 0.3.0-1 | - +- i386 | qmmp | 0.5.5-1+b1 | - +- i386 | qmmp-plugin-projectm | 0.5.5-1+b1 | - +- i386 | qmpdclient | 1.2.2-2 | - +- i386 | qnapi | 0.1.5-9 | - +- i386 | qonk | 0.3.1-3.1+b1 | - +- i386 | qpdf | 2.3.1-4 | - +- i386 | qpdfview | 0.3.1-1 | - +- i386 | qpid-client | 0.16-6+deb7u1 | - +- i386 | qpidd | 0.16-6+deb7u1 | - +- i386 | qprint | 1.0.dfsg.2-2 | - +- i386 | qprogram-starter | 1.6.4-1 | - +- i386 | qpxtool | 0.7.1.002-5 | - +- i386 | qrencode | 3.3.0-2 | - +- i386 | qrfcview | 0.62-5.1 | - +- i386 | qrq | 0.3.0-2 | - +- i386 | qsampler | 0.2.2-5 | - +- i386 | qsapecng | 2.0.0-5 | - +- i386 | qsf | 1.2.7-1+b2 | - +- i386 | qshutdown | 1.6.4-1 | - +- i386 | qsstv | 7.1.7-3 | - +- i386 | qstardict | 0.12.9-1.1 | - +- i386 | qstat | 2.11-3 | - +- i386 | qsynth | 0.3.6-2 | - +- i386 | qt-assistant-compat | 4.6.3-4 | - +- i386 | qt-at-spi | 0.3.1-3 | - +- i386 | qt4-bin-dbg | 4:4.8.2+dfsg-11 | - +- i386 | qt4-demos | 4:4.8.2+dfsg-11 | - +- i386 | qt4-demos-dbg | 4:4.8.2+dfsg-11 | - +- i386 | qt4-designer | 4:4.8.2+dfsg-11 | - +- i386 | qt4-dev-tools | 4:4.8.2+dfsg-11 | - +- i386 | qt4-linguist-tools | 4:4.8.2+dfsg-11 | - +- i386 | qt4-qmake | 4:4.8.2+dfsg-11 | - +- i386 | qt4-qmlviewer | 4:4.8.2+dfsg-11 | - +- i386 | qt4-qtconfig | 4:4.8.2+dfsg-11 | - +- i386 | qtads | 2.1.3-1 | - +- i386 | qtcreator | 2.5.0-2 | - +- i386 | qtcreator-dbg | 2.5.0-2 | - +- i386 | qtcurve | 1.8.12-2 | - +- i386 | qtemu | 1.0.5-2 | - +- i386 | qterm | 1:0.5.12-1.1 | - +- i386 | qtgstreamer-dbg | 0.10.2-2 | - +- i386 | qtgstreamer-declarative | 0.10.2-2 | - +- i386 | qtgstreamer-plugins | 0.10.2-2 | - +- i386 | qthid-fcd-controller | 3.1-5 | - +- i386 | qtikz | 0.10-3 | - +- i386 | qtiplot | 0.9.8.8-5+b1 | - ++ i386 | qtkeychain-dev | - | 0.1.0-2~bpo70+1 +- i386 | qtm | 1.3.6-1 | - +- i386 | qtmobility-dbg | 1.2.0-3 | - +- i386 | qtmobility-dev | 1.2.0-3 | - +- i386 | qtmobility-examples | 1.2.0-3 | - +- i386 | qtoctave | 0.10.1-3 | - +- i386 | qtractor | 0.5.5-1 | - +- i386 | qtractor-dbg | 0.5.5-1 | - +- i386 | qtscript-tools | 0.2.0-1 | - +- i386 | qtscrob | 0.10-4 | - +- i386 | qtsmbstatus-client | 2.2.1-2 | - +- i386 | qtsmbstatus-light | 2.2.1-2 | - +- i386 | qtsmbstatus-server | 2.2.1-2 | - +- i386 | quadrapassel | 1:3.4.2-3 | - +- i386 | quagga | 0.99.22.4-1+wheezy1 | - +- i386 | quagga-dbg | 0.99.22.4-1+wheezy1 | - +- i386 | quakespasm | 0.85.7-1 | - +- i386 | quakespasm-dbg | 0.85.7-1 | - +- i386 | quantlib-examples | 1.2-2+b1 | - +- i386 | quantlib-python | 1.2-2 | - +- i386 | quantum-espresso | 5.0-1 | - +- i386 | quarry | 0.2.0.dfsg.1-4 | - +- i386 | quassel | 0.8.0-1 | - +- i386 | quassel-client | 0.8.0-1 | - +- i386 | quassel-client-kde4 | 0.8.0-1 | - +- i386 | quassel-core | 0.8.0-1 | - +- i386 | quassel-kde4 | 0.8.0-1 | - +- i386 | quelcom | 0.4.0-13 | - +- i386 | quickplot | 0.10.3-1 | - +- i386 | quicksynergy | 0.9-1 | - +- i386 | quicktime-utils | 2:1.2.4-3 | - +- i386 | quicktime-x11utils | 2:1.2.4-3 | - +- i386 | quisk | 3.6.2-1 | - +- i386 | quitcount | 2.0-1 | - +- i386 | quixote1-doc | 1.2-4.1+b2 | - +- i386 | quota | 4.00-4+deb7u1 | - +- i386 | quotatool | 1.4.12-1 | - +- i386 | qutecom | 2.2.1+dfsg1-3+b1 | - +- i386 | qutecom-dbg | 2.2.1+dfsg1-3+b1 | - +- i386 | qutecsound | 0.6.1-2 | - +- i386 | qutemol | 0.4.1~cvs20081111-2+b2 | - +- i386 | quvi | 0.4.2-1 | - +- i386 | qv4l2 | 0.8.8-3 | - +- i386 | qviaggiatreno | 2010.11.1-1 | - +- i386 | qwbfsmanager | 1.1.0-1.1 | - +- i386 | qwo | 0.5-2+b1 | - +- i386 | qxw | 20110923-1 | - +- i386 | r-base-core | 2.15.1-4 | - +- i386 | r-base-core-dbg | 2.15.1-4 | - +- i386 | r-bioc-biobase | 2.14.0-1 | - +- i386 | r-bioc-biocgenerics | 0.2.0-1 | - +- i386 | r-bioc-hilbertvis | 1.14.0-1 | - +- i386 | r-bioc-limma | 3.12.0~dfsg-1 | - +- i386 | r-cran-amore | 0.2-12-2 | - +- i386 | r-cran-bayesm | 2.2-4-1 | - +- i386 | r-cran-bitops | 1.0-4.1-2 | - +- i386 | r-cran-cairodevice | 2.19-1 | - +- i386 | r-cran-catools | 1.12-2 | - +- i386 | r-cran-chron | 2.3-42-1 | - +- i386 | r-cran-class | 7.3-4-1 | - +- i386 | r-cran-cluster | 1.14.2-1 | - +- i386 | r-cran-colorspace | 1.0.1-1+b1 | - +- i386 | r-cran-date | 1.2.32-1 | - +- i386 | r-cran-dbi | 0.2-5-2 | - +- i386 | r-cran-deal | 1.2.34-1 | - +- i386 | r-cran-digest | 0.5.2-1 | - +- i386 | r-cran-eco | 3.1-4-2 | - +- i386 | r-cran-epi | 1.1.33-1 | - +- i386 | r-cran-epibasix | 1.1-3 | - +- i386 | r-cran-erm | 0.14-0-2 | - +- i386 | r-cran-evd | 2.2-4-2 | - +- i386 | r-cran-fasianoptions | 2160.77-1 | - +- i386 | r-cran-fassets | 2100.78-3 | - +- i386 | r-cran-fbasics | 2160.81-2 | - +- i386 | r-cran-fbonds | 2100.75-3 | - +- i386 | r-cran-fcopulae | 2110.78-1 | - +- i386 | r-cran-fgarch | 2110.80.1-1 | - +- i386 | r-cran-fnonlinear | 2100.76-4 | - +- i386 | r-cran-foptions | 2160.81-1 | - +- i386 | r-cran-foreign | 0.8.50-1 | - +- i386 | r-cran-fportfolio | 2130.80-1 | - +- i386 | r-cran-fregression | 2100.76-4 | - +- i386 | r-cran-funitroots | 2100.76-3 | - +- i386 | r-cran-gam | 1.06.2-1 | - +- i386 | r-cran-genabel | 1.7-0-3 | - +- i386 | r-cran-getopt | 1.17-1 | - +- i386 | r-cran-gtools | 2.7.0-1 | - +- i386 | r-cran-haplo.stats | 1.5.5-1 | - +- i386 | r-cran-hdf5 | 1.6.10-1+b1 | - +- i386 | r-cran-hmisc | 3.9-3-1 | - +- i386 | r-cran-int64 | 1.1.2-1 | - +- i386 | r-cran-kernsmooth | 2.23-8-1 | - +- i386 | r-cran-lattice | 0.20-6-1 | - +- i386 | r-cran-latticeextra | 0.6-19-1 | - +- i386 | r-cran-lme4 | 0.999999-0-1 | - +- i386 | r-cran-lmtest | 0.9.30-1 | - +- i386 | r-cran-lpsolve | 5.6.6-1 | - +- i386 | r-cran-mapdata | 2.2-1-1 | - +- i386 | r-cran-mapproj | 1.1-8.3-2 | - +- i386 | r-cran-maps | 2.2-5-1 | - +- i386 | r-cran-mass | 7.3-19-1 | - +- i386 | r-cran-matrix | 1.0-6-1 | - +- i386 | r-cran-mcmcpack | 1.2-3-1 | - +- i386 | r-cran-medadherence | 1.02-1 | - +- i386 | r-cran-mgcv | 1.7-13-1 | - +- i386 | r-cran-mnormt | 1.4-5-1 | - +- i386 | r-cran-mnp | 2.6-2-1 | - +- i386 | r-cran-msm | 1.1-1 | - +- i386 | r-cran-multicore | 0.1-7-1 | - +- i386 | r-cran-mvtnorm | 0.9-9992-1 | - +- i386 | r-cran-nlme | 3.1.104-1 | - +- i386 | r-cran-nnet | 7.3-4-1 | - +- i386 | r-cran-plyr | 1.7.1-1 | - +- i386 | r-cran-polspline | 1.1.5-5 | - +- i386 | r-cran-proto | 0.3-9.2-1 | - +- i386 | r-cran-pscl | 1.03.5-1+deb70u1 | - +- i386 | r-cran-qtl | 1.23-16-1 | - +- i386 | r-cran-quadprog | 1.5-4-1 | - +- i386 | r-cran-randomforest | 4.6-6-1 | - +- i386 | r-cran-raschsampler | 0.8-5-1 | - +- i386 | r-cran-rcmdr | 1.8-4-1 | - +- i386 | r-cran-rcpp | 0.9.13-1 | - +- i386 | r-cran-reshape | 0.8.4-1 | - +- i386 | r-cran-rggobi | 2.1.17-1 | - +- i386 | r-cran-rgl | 0.92.798-1+deb7u1 | - +- i386 | r-cran-rglpk | 0.3-8-1 | - +- i386 | r-cran-rgtk2 | 2.20.24-1 | - +- i386 | r-cran-rjags | 3.3-1 | - +- i386 | r-cran-rjava | 0.9-3-1 | - +- i386 | r-cran-rmpi | 0.5-9-3 | - +- i386 | r-cran-rms | 3.5-0-1 | - +- i386 | r-cran-rmysql | 0.9-3-1+b1 | - +- i386 | r-cran-robustbase | 0.8-1-1-1 | - +- i386 | r-cran-rodbc | 1.3-6-1 | - +- i386 | r-cran-rpart | 3.1.54-1 | - +- i386 | r-cran-rquantlib | 0.3.8-2 | - +- i386 | r-cran-rserve | 0.6-8-1 | - +- i386 | r-cran-rsprng | 1.0-2 | - +- i386 | r-cran-rsqlite | 0.11.1-1 | - +- i386 | r-cran-rsymphony | 0.1-14-1 | - +- i386 | r-cran-scatterplot3d | 0.3-33-1 | - +- i386 | r-cran-slam | 0.1-24-1 | - +- i386 | r-cran-sm | 2.2-4.1-1 | - +- i386 | r-cran-sn | 0.4-17-1 | - +- i386 | r-cran-sp | 1:0.9-81-1 | - +- i386 | r-cran-spatial | 7.3-4-1 | - +- i386 | r-cran-spc | 1:0.4.1-1 | - +- i386 | r-cran-survival | 2.36-14-1 | - +- i386 | r-cran-timedate | 2160.95-1 | - +- i386 | r-cran-timeseries | 2160.94-1 | - +- i386 | r-cran-tkrplot | 0.0.23-1 | - +- i386 | r-cran-tseries | 0.10-28-1 | - +- i386 | r-cran-urca | 1.2-6-1 | - +- i386 | r-cran-vegan | 2.0-3-1 | - +- i386 | r-cran-vgam | 0.8-7-1 | - +- i386 | r-cran-xml | 3.9-4-1 | - +- i386 | r-cran-zoo | 1.7-7-1 | - +- i386 | r-mathlib | 2.15.1-4 | - +- i386 | r-other-mott-happy | 2.1-7 | - +- i386 | r-other-rot | 1.0-4 | - +- i386 | rabbitsign | 2.1+dmca1-1+b1 | - +! i386 | racket | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +- i386 | racoon | 1:0.8.0-14 | - +- i386 | radare2 | 0.9-3 | - +- i386 | radeontool | 1.6.2-1.1 | - ++ i386 | radeontop | - | 0.7-1~bpo70+1 +- i386 | radiance | 4R1+20120125-1+b1 | - +- i386 | radiance-sse3 | 4R1+20120125-1+b1 | - +- i386 | radio | 3.102-3 | - +- i386 | radioclk | 1.0.ds1-12 | - +- i386 | radiotray | 0.7.2-1 | - +- i386 | radiusclient1 | 0.3.2-14 | - +- i386 | radiusd-livingston | 2.1-20 | - +- i386 | radsecproxy | 1.6.2-1 | - +- i386 | radvd | 1:1.8.5-1 | - +- i386 | rafkill | 1.2.2-3.3+b1 | - +- i386 | ragel | 6.7-1.1 | - +- i386 | raidutils | 0.0.6-19 | - +- i386 | raincat | 1.1-3 | - +- i386 | raincat-dbg | 1.1-3 | - +- i386 | rakarrack | 0.6.1-4 | - +- i386 | rakudo | 0.1~2012.01-1 | - +- i386 | ramond | 0.5-4 | - +- i386 | rancid | 2.3.8-3 | - +- i386 | randomize-lines | 0.2.7 | - +- i386 | randomsound | 0.2-5 | - +- i386 | randtype | 1.13-10 | - +- i386 | rapidsvn | 0.12.0dfsg-6 | - +- i386 | raptor-utils | 1.4.21-7.1 | - +- i386 | raptor2-utils | 2.0.8-2 | - +- i386 | rarian-compat | 0.8.1-5 | - +- i386 | rarpd | 0.981107-8 | - +- i386 | rasmol | 2.7.5.2-1 | - +- i386 | rasqal-utils | 0.9.29-1 | - +- i386 | raster3d | 3.0-2-4 | - +- i386 | rasterlite-bin | 1.1~svn11-2 | - +- i386 | rasterlite-dbg | 1.1~svn11-2 | - +- i386 | rat | 4.2.22-2.1 | - +- i386 | ratbox-services-common | 1.2.4-2+b1 | - +- i386 | ratbox-services-mysql | 1.2.4-2+b1 | - +- i386 | ratbox-services-pgsql | 1.2.4-2+b1 | - +- i386 | ratbox-services-sqlite | 1.2.4-2+b1 | - +- i386 | ratfor | 1.0-15 | - +- i386 | ratmenu | 2.3.20 | - +- i386 | ratpoison | 1.4.5-4 | - +- i386 | ratproxy | 1.58+dfsg-3+b1 | - +- i386 | rats | 2.3-1 | - +- i386 | rawstudio | 2.0-1.1 | - +- i386 | rawstudio-dbg | 2.0-1.1 | - +- i386 | rawtherapee | 4.0.9-4 | - +- i386 | raxml | 7.2.8-2 | - +- i386 | razor | 1:2.85-4+b1 | - +- i386 | rblcheck | 20020316-7 | - +- i386 | rbldnsd | 0.996b | - +- i386 | rbootd | 2.0-10 | - +- i386 | rc | 1.7.1-4 | - +- i386 | rcov | 1.0-2 | - +- i386 | rcs | 5.8.1-1 | - +- i386 | rcs-blame | 1.3.1-2 | - +- i386 | rdate | 1:1.2-5 | - +- i386 | rdd | 2.0.7-2+b1 | - +- i386 | rdesktop | 1.7.1-1 | - +- i386 | rdfind | 1.3.1-1 | - +- i386 | rdiff | 0.9.7-9 | - +- i386 | rdiff-backup | 1.2.8-7 | - +- i386 | rdiff-backup-fs | 1.0.0-4 | - +- i386 | rdist | 6.1.5-18 | - +- i386 | rdmacm-utils | 1.0.15-1+deb7u1 | - +- i386 | rdnssd | 1.0.1-1+b1 | - +- i386 | rds-tools | 1.4.1-OFED-1.4.2-1 | - +- i386 | rdup | 1.1.11-1+b1 | - +- i386 | re | 0.1-5+b1 | - +- i386 | re2c | 0.13.5-1 | - +- i386 | read-edid | 2.0.0-3.1 | - +- i386 | readahead-fedora | 2:1.5.6-4 | - +- i386 | readseq | 1-9 | - +- i386 | realpath | 1.18 | - +- i386 | realtimebattle | 1.0.8-13 | - +- i386 | reaver | 1.4-2 | - ++ i386 | rebar | - | 2.0.0-5~bpo70+1 +- i386 | recite | 1.0-8.2 | - +- i386 | recode | 3.6-20 | - +- i386 | recoll | 1.17.3-2 | - +- i386 | recordmydesktop | 0.3.8.1+svn602-1+b1 | - +- i386 | recover | 1.3c-11 | - +- i386 | recoverdm | 0.20-2+b1 | - +- i386 | recoverjpeg | 2.0-3.1 | - +- i386 | recutils | 1.5-1 | - ++ i386 | redeclipse | - | 1.4-5~bpo70+1 ++ i386 | redeclipse-dbg | - | 1.4-5~bpo70+1 ++ i386 | redeclipse-server | - | 1.4-5~bpo70+1 ++ i386 | redeclipse-server-dbg | - | 1.4-5~bpo70+1 +- i386 | redir | 2.2.1-10 | - +! i386 | redis-server | 2:2.4.14-1 | 2:2.8.6-1~bpo70+1 ++ i386 | redis-tools | - | 2:2.8.6-1~bpo70+1 +- i386 | redland-utils | 1.0.15-1+b1 | - +- i386 | redmine-plugin-botsfilter | 1.02-2 | - +- i386 | redshift | 1.7-2 | - +- i386 | redsocks | 0.4+dfsg-1 | - +- i386 | ree | 1.3-2.1 | - +- i386 | referencer | 1.1.6-2+b4 | - +- i386 | refit | 0.14-2 | - +- i386 | regexxer | 0.9-2.1 | - +- i386 | regina-normal | 4.93-1 | - +- i386 | regina-normal-dev | 4.93-1 | - +- i386 | regina-normal-mpi | 4.93-1 | - +- i386 | regina-rexx | 3.6-2 | - +- i386 | regionset | 0.1-3 | - +! i386 | registry-tools | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | reglookup | 0.12.0-1 | - +- i386 | reiser4progs | 1.0.7-6.3 | - +- i386 | reiserfsprogs | 1:3.6.21-1 | - +- i386 | rekonq | 0.9.2-1 | - +- i386 | rekonq-dbg | 0.9.2-1 | - +- i386 | remake | 3.81+dbg0.2~dfsg.1-1 | - +! i386 | remctl-client | 3.2-4 | 3.8-1~bpo70+1 +! i386 | remctl-server | 3.2-4 | 3.8-1~bpo70+1 +- i386 | remembrance-agent | 2.12-7 | - +- i386 | remind | 03.01.12-1 | - +- i386 | remmina | 1.0.0-4+deb7u1 | - +- i386 | remmina-plugin-gnome | 1.0.0-4+deb7u1 | - +- i386 | remmina-plugin-nx | 1.0.0-4+deb7u1 | - +- i386 | remmina-plugin-rdp | 1.0.0-4+deb7u1 | - +- i386 | remmina-plugin-telepathy | 1.0.0-4+deb7u1 | - +- i386 | remmina-plugin-vnc | 1.0.0-4+deb7u1 | - +- i386 | remmina-plugin-xdmcp | 1.0.0-4+deb7u1 | - +- i386 | remote-tty | 4.0-13 | - +- i386 | renameutils | 0.12.0-1 | - +- i386 | renattach | 1.2.4-3 | - +- i386 | rep | 0.90.2-1.3 | - +- i386 | rep-gtk | 1:0.90.0-2 | - +- i386 | rephrase | 0.1-3 | - +! i386 | reprepro | 4.12.5-1 | 4.13.1-1~bpo70+1 +- i386 | repro | 1.8.5-4 | - +- i386 | reptyr | 0.3-2 | - +- i386 | resample | 1.8.1-1 | - +- i386 | resiprocate-turn-server | 1.8.5-4 | - +- i386 | resource-agents | 1:3.9.2-5+deb7u1 | - +- i386 | resource-agents-dev | 1:3.9.2-5+deb7u1 | - +- i386 | restartd | 0.2.2 | - +- i386 | retty | 1.0-2 | - +- i386 | rev-plugins | 0.3.1-2 | - +- i386 | revelation | 0.4.13-1.2 | - +- i386 | rexima | 1.4-7 | - +- i386 | rfdump | 1.6-2 | - +- i386 | rfkill | 0.4-1 | - +- i386 | rgbpaint | 0.8.7-3 | - +- i386 | rgmanager | 3.0.12-3.2+deb7u2 | - ++ i386 | rgxg | - | 0.1-1~bpo70+1 +- i386 | rhash | 1.2.9-8+deb7u1 | - +- i386 | rheolef | 6.1-2.1 | - +- i386 | rhn-client-tools | 1.8.9-3 | - +- i386 | rhythmbox | 2.97-2.1 | - +- i386 | rhythmbox-dbg | 2.97-2.1 | - +- i386 | rhythmbox-dev | 2.97-2.1 | - +- i386 | rhythmbox-plugin-cdrecorder | 2.97-2.1 | - +- i386 | rhythmbox-plugins | 2.97-2.1 | - +- i386 | ri-li | 2.0.1-2 | - +- i386 | rifiuti | 1.0+20040505-4+b1 | - +- i386 | rifiuti2 | 0.5.1-3+b1 | - +- i386 | rig | 1.11-1 | - +- i386 | rinetd | 0.62-5.1 | - +- i386 | rio | 1.07-11.1 | - +- i386 | ripole | 0.2.0+20081101.0215-1 | - +- i386 | ripperx | 2.7.3-1 | - +- i386 | ristretto | 0.3.7-1 | - +- i386 | rivet-plugins | 1.8.0-1 | - +- i386 | rkward | 0.5.7-2+deb7u1 | - +- i386 | rlfe | 6.2+dfsg-0.1 | - +- i386 | rlinetd | 0.8.2-2 | - +- i386 | rlplot | 1.5-2 | - +- i386 | rlpr | 2.05-4 | - +- i386 | rlvm | 0.12-4 | - +- i386 | rlwrap | 0.37-3 | - +- i386 | rmail | 8.14.4-4 | - +- i386 | rman | 3.2-6 | - +- i386 | rnahybrid | 2.1.1-1 | - +- i386 | rng-tools | 2-unofficial-mt.14-1 | - +- i386 | roaraudio | 1.0~beta2-3 | - +- i386 | roaraudio-dbg | 1.0~beta2-3 | - +- i386 | roarclients | 1.0~beta2-3 | - +- i386 | roarplaylistd | 0.1.1-2 | - +- i386 | roarplaylistd-dbg | 0.1.1-2 | - +- i386 | robocut | 1.0.8-1 | - +- i386 | robojournal | 0.2.1-1 | - +- i386 | robot-player | 3.0.2+dfsg-4+b1 | - +- i386 | robotfindskitten | 1.7320508.406-3 | - +- i386 | rockdodger | 0.6.0a-7 | - +- i386 | rocs | 4:4.8.4-1 | - +- i386 | rofs | 2006.11.28-2.1 | - +- i386 | rolldice | 1.10-5 | - +- i386 | root-plugin-geom-gdml | 5.34.00-2 | - +- i386 | root-plugin-geom-geombuilder | 5.34.00-2 | - +- i386 | root-plugin-geom-geompainter | 5.34.00-2 | - +- i386 | root-plugin-graf2d-asimage | 5.34.00-2 | - +- i386 | root-plugin-graf2d-qt | 5.34.00-2 | - +- i386 | root-plugin-graf2d-x11 | 5.34.00-2 | - +- i386 | root-plugin-graf3d-x3d | 5.34.00-2 | - +- i386 | root-plugin-gui-fitpanel | 5.34.00-2 | - +- i386 | root-plugin-gui-guibuilder | 5.34.00-2 | - +- i386 | root-plugin-gui-qt | 5.34.00-2 | - +- i386 | root-plugin-gui-sessionviewer | 5.34.00-2 | - +- i386 | root-plugin-hist-hbook | 5.34.00-2 | - +- i386 | root-plugin-hist-histpainter | 5.34.00-2 | - +- i386 | root-plugin-hist-spectrumpainter | 5.34.00-2 | - +- i386 | root-plugin-io-sql | 5.34.00-2 | - +- i386 | root-plugin-io-xml | 5.34.00-2 | - +- i386 | root-plugin-math-fftw3 | 5.34.00-2 | - +- i386 | root-plugin-math-fumili | 5.34.00-2 | - +- i386 | root-plugin-math-minuit2 | 5.34.00-2 | - +- i386 | root-plugin-montecarlo-pythia8 | 5.34.00-2 | - +- i386 | root-plugin-net-globus | 5.34.00-2 | - +- i386 | root-plugin-net-krb5 | 5.34.00-2 | - +- i386 | root-plugin-proof-peac | 5.34.00-2 | - +- i386 | root-plugin-sql-mysql | 5.34.00-2 | - +- i386 | root-plugin-sql-odbc | 5.34.00-2 | - +- i386 | root-plugin-sql-pgsql | 5.34.00-2 | - +- i386 | root-plugin-tree-treeviewer | 5.34.00-2 | - +- i386 | root-system-bin | 5.34.00-2 | - +- i386 | root-system-proofd | 5.34.00-2 | - +- i386 | root-system-rootd | 5.34.00-2 | - +- i386 | root-tail | 1.2-3 | - +- i386 | rootstrap | 0.3.25-1 | - +- i386 | rosegarden | 1:12.04-1 | - +- i386 | rosegarden-dbg | 1:12.04-1 | - +- i386 | rotix | 0.83-4 | - +- i386 | rotter | 0.9-3 | - +- i386 | routino | 2.2-4+deb7u1 | - +- i386 | rovclock | 0.6e-7 | - +- i386 | rox-filer | 2.10-3 | - +- i386 | roxterm-gtk2 | 2.6.5-1 | - +- i386 | roxterm-gtk3 | 2.6.5-1 | - +- i386 | rpcbind | 0.2.0-8 | - +- i386 | rplay-client | 3.3.2-14 | - +- i386 | rplay-contrib | 3.3.2-14 | - +- i386 | rplay-server | 3.3.2-14 | - +- i386 | rpm | 4.10.0-5+deb7u1 | - +- i386 | rpm-common | 4.10.0-5+deb7u1 | - +- i386 | rpm2cpio | 4.10.0-5+deb7u1 | - +- i386 | rpm2html | 1.11.2-3 | - +- i386 | rrdcached | 1.4.7-2 | - +- i386 | rrdcollect | 0.2.10-2 | - +- i386 | rrdcollect-dbg | 0.2.10-2 | - +- i386 | rrdtool | 1.4.7-2 | - +- i386 | rrdtool-dbg | 1.4.7-2 | - +- i386 | rrdtool-tcl | 1.4.7-2 | - +- i386 | rrep | 1.3.3-2 | - +- i386 | rrootage | 0.23a-9 | - +- i386 | rs | 20120414-1 | - +- i386 | rsakeyfind | 1:1.0-2.1 | - +- i386 | rsh-client | 0.17-15 | - +- i386 | rsh-redone-client | 85-1 | - +- i386 | rsh-redone-server | 85-1 | - +- i386 | rsh-server | 0.17-15 | - +- i386 | rsibreak | 4:0.11-2 | - +- i386 | rsrce | 0.2.2 | - +- i386 | rss-glx | 0.9.1-5+b3 | - +- i386 | rss2irc | 0.4.2-4 | - +- i386 | rssh | 2.3.3-6 | - +- i386 | rsstail | 1.8-1 | - +- i386 | rstat-client | 4.0.1-8 | - +- i386 | rstatd | 4.0.1-8 | - +- i386 | rsync | 3.0.9-4 | - +- i386 | rsyncrypto | 1.12-1+b1 | - +! i386 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-gnutls | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-gssapi | 5.8.11-3 | 7.4.4-1~bpo70+1 ++ i386 | rsyslog-mongodb | - | 7.4.4-1~bpo70+1 +! i386 | rsyslog-mysql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-pgsql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-relp | 5.8.11-3 | 7.4.4-1~bpo70+1 +- i386 | rt-tests | 0.83-1+deb7u1 | - +- i386 | rt4-extension-authenexternalauth | 0.10-4 | - +- i386 | rtai | 3.8.1-4 | - +- i386 | rtai-source | 3.8.1-4 | - +- i386 | rtgui | 0.2.81-4 | - +- i386 | rtkit | 0.10-2+wheezy1 | - ++ i386 | rtl-sdr | - | 0.5.2.7.3ab6-1~bpo70+1 +- i386 | rtmpdump | 2.4+20111222.git4e06e21-1 | - +- i386 | rtorrent | 0.9.2-1 | - +- i386 | rtpproxy | 1.2.1-1.1 | - +- i386 | rubberband-cli | 1.3-1.3 | - +- i386 | rubberband-ladspa | 1.3-1.3 | - +- i386 | rubberband-vamp | 1.3-1.3 | - +- i386 | rubrica | 2.0-1.3 | - +- i386 | ruby-akonadi | 4:4.8.4-1 | - +- i386 | ruby-atk | 1.1.3-2+b1 | - +- i386 | ruby-atk-dbg | 1.1.3-2+b1 | - +- i386 | ruby-bcrypt | 3.0.1-2 | - +- i386 | ruby-bdb | 0.6.5-7 | - +- i386 | ruby-bluecloth | 2.2.0-3 | - +- i386 | ruby-cairo | 1.12.2-2 | - +- i386 | ruby-dataobjects-mysql | 0.10.8-4 | - +- i386 | ruby-dataobjects-postgres | 0.10.8-2 | - +- i386 | ruby-dataobjects-sqlite3 | 0.10.8-3 | - +- i386 | ruby-debian | 0.3.8+b1 | - +- i386 | ruby-dep-selector | 0.0.8-1 | - +- i386 | ruby-eb | 2.6-2 | - +- i386 | ruby-em-http-request | 0.3.0-1 | - +- i386 | ruby-escape-utils | 0.2.4-3 | - +- i386 | ruby-eventmachine | 0.12.10-3 | - +- i386 | ruby-exif | 0.1.2-20 | - +- i386 | ruby-fast-stemmer | 1.0.1-1 | - +- i386 | ruby-fast-xs | 0.8.0-3 | - +- i386 | ruby-ferret | 0.11.8.4+debian-2 | - +- i386 | ruby-ffi | 1.0.11debian-5 | - +- i386 | ruby-fftw3 | 0.4-4 | - +- i386 | ruby-fftw3-dbg | 0.4-4 | - +- i386 | ruby-fssm | 0.2.9-2 | - +- i386 | ruby-fusefs | 0.7.0-3 | - +- i386 | ruby-gd | 0.8.0-3 | - +- i386 | ruby-gdk-pixbuf2 | 1.1.3-2+b1 | - +- i386 | ruby-gdk-pixbuf2-dbg | 1.1.3-2+b1 | - +! i386 | ruby-gherkin | 2.4.6-1 | 2.12.1-1~bpo70+1 +- i386 | ruby-gio2 | 1.1.3-2+b1 | - +- i386 | ruby-gio2-dbg | 1.1.3-2+b1 | - +- i386 | ruby-glib2 | 1.1.3-2+b1 | - +- i386 | ruby-glib2-dbg | 1.1.3-2+b1 | - +- i386 | ruby-globalhotkeys | 0.3.2-3 | - +- i386 | ruby-gnome2-dev | 1.1.3-2+b1 | - +- i386 | ruby-god | 0.12.1-1 | - +- i386 | ruby-goocanvas | 1.1.3-2+b1 | - +- i386 | ruby-goocanvas-dbg | 1.1.3-2+b1 | - +- i386 | ruby-gpgme | 2.0.0-2 | - +- i386 | ruby-grib | 0.2.2-3 | - +- i386 | ruby-grib-dbg | 0.2.2-3 | - +- i386 | ruby-gsl | 1.14.7+dfsg-1 | - +- i386 | ruby-gsl-dbg | 1.14.7+dfsg-1 | - +- i386 | ruby-gstreamer | 1.1.3-2+b1 | - +- i386 | ruby-gstreamer-dbg | 1.1.3-2+b1 | - +- i386 | ruby-gtk2 | 1.1.3-2+b1 | - +- i386 | ruby-gtk2-dbg | 1.1.3-2+b1 | - +- i386 | ruby-gtksourceview2 | 1.1.3-2+b1 | - +- i386 | ruby-gtksourceview2-dbg | 1.1.3-2+b1 | - +- i386 | ruby-guestfs | 1:1.18.1-1+deb7u3 | - +! i386 | ruby-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +- i386 | ruby-hpricot | 0.8.6-3 | - +- i386 | ruby-inotify | 0.0.2-6 | - +- i386 | ruby-json | 1.7.3-3 | - +- i386 | ruby-kakasi | 2002.09.28-3 | - +- i386 | ruby-kde4 | 4:4.8.4-1 | - +- i386 | ruby-kde4-dbg | 4:4.8.4-1 | - +- i386 | ruby-kgio | 2.7.3-1 | - +- i386 | ruby-krb5-auth | 0.7-4 | - +- i386 | ruby-lapack | 1.5-1 | - +- i386 | ruby-lapack-dbg | 1.5-1 | - +- i386 | ruby-ldap | 0.9.12-2 | - +- i386 | ruby-libvirt | 0.4.0-1 | - +- i386 | ruby-libxml | 2.3.2-1 | - +- i386 | ruby-mecab | 0.99.3-2 | - +- i386 | ruby-msgpack | 0.4.6-4 | - +- i386 | ruby-multibitnums | 0.1.4-1 | - +- i386 | ruby-multibitnums-dbg | 0.1.4-1 | - +- i386 | ruby-mysql | 2.8.2+gem2deb-3 | - +- i386 | ruby-narray | 0.6.0.1-1 | - +- i386 | ruby-narray-dbg | 0.6.0.1-1 | - +- i386 | ruby-ncurses | 1.3.1-2 | - +- i386 | ruby-netcdf | 0.6.6-1 | - +- i386 | ruby-netcdf-dbg | 0.6.6-1 | - +- i386 | ruby-nokogiri | 1.5.5-1 | - +- i386 | ruby-nora | 1:0.0.20041021-5.1 | - ++ i386 | ruby-notmuch | - | 0.16-1~bpo70+1 +- i386 | ruby-odbc | 0.99994-4 | - +- i386 | ruby-odbc-dbg | 0.99994-4 | - +- i386 | ruby-oily-png | 1.0.2-2 | - ++ i386 | ruby-oj | - | 2.0.10-1~bpo70+1 +- i386 | ruby-okular | 4:4.8.4-1 | - +- i386 | ruby-opengl | 0.60.1+dfsg2-1~wheezy1 | - +- i386 | ruby-pango | 1.1.3-2+b1 | - +- i386 | ruby-pango-dbg | 1.1.3-2+b1 | - +! i386 | ruby-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! i386 | ruby-password | 0.5.3-3 | 0.5.3-4~bpo70+1 +- i386 | ruby-pcap | 0.7.0-2 | - ++ i386 | ruby-pcaprub | - | 0.11.3-1~bpo70+1 +- i386 | ruby-pg | 0.13.2-2 | - +- i386 | ruby-phonon | 4:4.8.4-1 | - +- i386 | ruby-plasma | 4:4.8.4-1 | - +- i386 | ruby-playerc | 3.0.2+dfsg-4+b1 | - +- i386 | ruby-poppler | 1.1.3-2+b1 | - +- i386 | ruby-poppler-dbg | 1.1.3-2+b1 | - +- i386 | ruby-posix-spawn | 0.3.6-1 | - +- i386 | ruby-prof | 0.7.3-1.1 | - +- i386 | ruby-qdbm | 1.8.78-2 | - +- i386 | ruby-qpid | 0.16-6+deb7u1 | - +- i386 | ruby-qscintilla2 | 4:4.8.4-1 | - +- i386 | ruby-qt4 | 4:4.8.4-1 | - +- i386 | ruby-qt4-dbg | 4:4.8.4-1 | - +- i386 | ruby-qt4-declarative | 4:4.8.4-1 | - +- i386 | ruby-qt4-script | 4:4.8.4-1 | - +- i386 | ruby-qt4-test | 4:4.8.4-1 | - +- i386 | ruby-qt4-uitools | 4:4.8.4-1 | - +- i386 | ruby-qt4-webkit | 4:4.8.4-1 | - +- i386 | ruby-raindrops | 0.9.0-1 | - +- i386 | ruby-rdiscount | 1.6.8-3 | - +- i386 | ruby-redcarpet | 2.1.1-3 | - +- i386 | ruby-redcloth | 4.2.9-2 | - +! i386 | ruby-remctl | 3.2-4 | 3.8-1~bpo70+1 +- i386 | ruby-revolution | 0.5-8 | - +- i386 | ruby-rhash | 1.2.9-8+deb7u1 | - ++ i386 | ruby-rjb | - | 1.4.8-1~bpo70+1 +- i386 | ruby-rmagick | 2.13.1-6 | - +- i386 | ruby-rsvg2 | 1.1.3-2+b1 | - +- i386 | ruby-rsvg2-dbg | 1.1.3-2+b1 | - +- i386 | ruby-sdl | 2.1.2-3 | - +- i386 | ruby-sdl-dbg | 2.1.2-3 | - +- i386 | ruby-selinux | 2.1.9-5 | - +- i386 | ruby-semanage | 2.1.6-6 | - +- i386 | ruby-sequel-pg | 1.4.0-1 | - +- i386 | ruby-serialport | 1.1.0-1 | - +- i386 | ruby-shadow | 2.1.4-2 | - +- i386 | ruby-sigar | 0.7.2-1 | - +- i386 | ruby-soprano | 4:4.8.4-1 | - +- i386 | ruby-sqlite3 | 1.3.6-2 | - +- i386 | ruby-systemtimer | 1.2.3-1 | - +- i386 | ruby-taglib2 | 0.1.3-1 | - +! i386 | ruby-termios | 0.9.6-2 | 1.0.0-1~bpo70+1 +- i386 | ruby-tioga | 1.14-3 | - +- i386 | ruby-tmail | 1.2.7.1-3+deb7u1 | - +- i386 | ruby-tokyocabinet | 1.31-2+b1 | - +- i386 | ruby-tomoe | 0.6.0-1.3 | - +- i386 | ruby-uconv | 0.5.3-2 | - +- i386 | ruby-unf-ext | 0.0.5-2 | - +- i386 | ruby-usb | 0.2.1-2 | - +- i386 | ruby-vte | 1.1.3-2+b1 | - +- i386 | ruby-vte-dbg | 1.1.3-2+b1 | - +- i386 | ruby-xmlparser | 0.7.2-2 | - +- i386 | ruby-xmmsclient | 0.8+dfsg-4 | - +- i386 | ruby-yajl | 1.1.0-2 | - +- i386 | ruby-zoom | 0.4.1-5 | - +- i386 | ruby1.8 | 1.8.7.358-7.1+deb7u1 | - +- i386 | ruby1.8-dev | 1.8.7.358-7.1+deb7u1 | - +- i386 | ruby1.9.1 | 1.9.3.194-8.1+deb7u2 | - +- i386 | ruby1.9.1-dev | 1.9.3.194-8.1+deb7u2 | - +- i386 | rumor | 1.0.5-1 | - +- i386 | rungetty | 1.2-15 | - +- i386 | runit | 2.1.1-6.2 | - +- i386 | runlim | 1.7-1 | - +- i386 | rusers | 0.17-8 | - +- i386 | rusersd | 0.17-8 | - +- i386 | rush | 1.7+dfsg-1+deb7u1 | - +- i386 | rwall | 0.17-7 | - +- i386 | rwalld | 0.17-7 | - +- i386 | rwho | 0.17-12 | - +- i386 | rwhod | 0.17-12 | - +- i386 | rxp | 1.5.0-1 | - +- i386 | rxvt | 1:2.6.4-14 | - +- i386 | rxvt-beta | 2.7.10-6 | - +- i386 | rxvt-ml | 1:2.6.4-14 | - +- i386 | rxvt-unicode | 9.15-2 | - +- i386 | rxvt-unicode-256color | 9.15-2 | - +- i386 | rxvt-unicode-lite | 9.15-2 | - +- i386 | rxvt-unicode-ml | 9.15-2 | - +- i386 | rygel | 0.14.3-2+deb7u1 | - +- i386 | rygel-1.0-dev | 0.14.3-2+deb7u1 | - +- i386 | rygel-dbg | 0.14.3-2+deb7u1 | - +- i386 | rygel-gst-launch | 0.14.3-2+deb7u1 | - +- i386 | rygel-mediathek | 0.14.3-2+deb7u1 | - +- i386 | rygel-playbin | 0.14.3-2+deb7u1 | - +- i386 | rygel-preferences | 0.14.3-2+deb7u1 | - +- i386 | rygel-tracker | 0.14.3-2+deb7u1 | - +- i386 | rzip | 2.1-1 | - +- i386 | s3d | 0.2.2-8 | - +- i386 | s3d-dbg | 0.2.2-8 | - +- i386 | s3dfm | 0.2.2-8 | - +- i386 | s3dosm | 0.2.2-8 | - +- i386 | s3dvt | 0.2.2-8 | - +- i386 | s3dx11gate | 0.2.2-8 | - +- i386 | s3ql | 1.11.1-3 | - +- i386 | s3ql-dbg | 1.11.1-3 | - +- i386 | s3switch | 0.1-1 | - +- i386 | s51dude | 0.2.0-1.1 | - +- i386 | sa-exim | 4.2.1-14 | - +- i386 | sac | 1.9b5-3 | - +- i386 | safecat | 1.13-2 | - +- i386 | safecopy | 1.6-1 | - +- i386 | sagan | 0.2.1.r1-1+b1 | - +- i386 | sagasu | 2.0.10-1 | - +- i386 | saidar | 0.17-1 | - +- i386 | sailcut | 1.3.5-2 | - +- i386 | saint | 2.3.3-1 | - +- i386 | sakura | 3.0.4-2 | - +- i386 | sam2p | 0.49.1-1 | - +! i386 | samba | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-common-bin | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-dbg | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 ++ i386 | samba-dev | - | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-dsdb-modules | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 ++ i386 | samba-libs | - | 2:4.1.5+dfsg-1~bpo70+1 ++ i386 | samba-testsuite | - | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | samba-tools | 2:3.6.6-6+deb7u2 | - ++ i386 | samba-vfs-modules | - | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | samba4 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | samba4-clients | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | samba4-common-bin | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | samba4-dev | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | samba4-testsuite | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | samdump2 | 1.1.1-1.1 | - +- i386 | samhain | 2.8.3a-1+deb7u1 | - +- i386 | sampleicc-tools | 1.6.4-1+b1 | - +- i386 | samplerate-programs | 0.1.8-5 | - +- i386 | samtools | 0.1.18-1 | - +- i386 | sanduhr | 1.93-4 | - +- i386 | sane | 1.0.14-9 | - +- i386 | sane-utils | 1.0.22-7.4 | - +- i386 | sanlock | 2.2-2 | - +- i386 | saods9 | 7.0.1+dfsg-1 | - +- i386 | saods9-blt | 7.0.1+dfsg-1 | - +- i386 | sapphire | 0.15.8-9 | - +- i386 | sarg | 2.3.2-2 | - +- i386 | sary | 1:1.2.0-2.1 | - +- i386 | sash | 3.7-12 | - +- i386 | sasl2-bin | 2.1.25.dfsg1-6+deb7u1 | - +- i386 | savi | 1.4.5-4 | - +- i386 | sawfish | 1:1.5.3-2.1+b1 | - +- i386 | sawfish-dbg | 1:1.5.3-2.1+b1 | - +- i386 | saytime | 1.0-24 | - +- i386 | sb16ctrl-bochs | 2.4.6-5 | - ++ i386 | sbc-tools | - | 1.1-2~bpo7+1 +- i386 | sbcl | 2:1.0.57.0-2 | - +- i386 | sbnc | 1.2-26 | - +- i386 | sbnc-dbg | 1.2-26 | - +- i386 | sbnc-mysql | 1.2-26 | - +- i386 | sbnc-tcl | 1.2-26 | - +- i386 | sbox-dtc | 1.11.6-1 | - +- i386 | sbrsh | 7.6.1 | - +- i386 | sbrshd | 7.6.1 | - +- i386 | sc | 7.16-3 | - +- i386 | scalapack-mpi-test | 1.8.0-9 | - +- i386 | scalapack-pvm-test | 1.8.0-9 | - +- i386 | scalpel | 1.60-1 | - +- i386 | scamper | 20111202b-1 | - +- i386 | scanbuttond | 0.2.3.cvs20090713-8 | - +- i386 | scanlogd | 2.2.5-3.1 | - +- i386 | scanmem | 0.12-2 | - +- i386 | scanssh | 2.0-4+b3 | - +- i386 | scantool | 1.21+dfsg-3 | - +- i386 | scantv | 3.102-3 | - +- i386 | scdaemon | 2.0.19-2+deb7u1 | - +- i386 | schedtool | 1.3.0-1 | - +- i386 | scheme2c | 2011.07.26-5 | - +- i386 | scheme48 | 1.8+dfsg-1 | - +- i386 | scheme9 | 2010.11.13-2 | - +- i386 | schism | 2:0+20110101-1 | - +- i386 | schroot | 1.6.4-4 | - +- i386 | schroot-dbg | 1.6.4-4 | - +- i386 | scid | 1:4.3.0.cvs20120311-1 | - +- i386 | scidavis | 0.2.4-3.3 | - +- i386 | scilab-full-bin | 5.3.3-10 | - +- i386 | scilab-full-bin-dbg | 5.3.3-10 | - +- i386 | scilab-getfem++ | 4.1.1+dfsg1-11 | - +- i386 | scilab-include | 5.3.3-10 | - +- i386 | scilab-jims | 1.0-1 | - +- i386 | scilab-minimal-bin | 5.3.3-10 | - +- i386 | scilab-minimal-bin-dbg | 5.3.3-10 | - +- i386 | scilab-scimysql | 0.1.1-5 | - +- i386 | scim | 1.4.13-5 | - +- i386 | scim-canna | 1.0.0-4.2 | - +- i386 | scim-chewing | 0.3.4-1.2 | - +- i386 | scim-gtk-immodule | 1.4.13-5 | - +- i386 | scim-kmfl-imengine | 0.9.8-1.1 | - +- i386 | scim-m17n | 0.2.3-3 | - +- i386 | scim-modules-socket | 1.4.13-5 | - +- i386 | scim-modules-table | 0.5.9-2 | - +- i386 | scim-mozc | 1.5.1090.102-4+deb7u1 | - +- i386 | scim-skk | 0.5.2-7.2 | - +- i386 | scim-thai | 0.1.3-1 | - +- i386 | scim-unikey | 0.3.1+debian-3.1 | - +- i386 | sciplot-dev | 1.36-15 | - +- i386 | sciplot1 | 1.36-15 | - +- i386 | scite | 3.0.2-3 | - +- i386 | sciteproj | 0.7.05-2 | - +- i386 | scli | 0.4.0-2 | - +- i386 | scm | 5e5-3.2 | - +- i386 | scmxx | 0.9.0-2.3 | - +- i386 | scorched3d | 43.2a.dfsg-6.1 | - +- i386 | scorched3d-dbg | 43.2a.dfsg-6.1 | - +- i386 | scotch | 5.1.12b.dfsg-1.2 | - +- i386 | scotch-dbg | 5.1.12b.dfsg-1.2 | - +- i386 | scottfree | 1.14-9 | - +- i386 | scratchbox2 | 2.2.4-1debian1 | - +- i386 | screader | 1.8-7 | - +- i386 | screen | 4.1.0~20120320gitdb59704-7 | - +- i386 | screenie-qt | 0.0~git20100701-1 | - +- i386 | screentest | 2.0-2.1 | - +- i386 | scribus | 1.4.0.dfsg+r17300-1.1 | - +- i386 | scrobble-cli | 0.10-4 | - +- i386 | scrollz | 2.1-1.1 | - +- i386 | scrot | 0.8-13 | - +- i386 | scrounge-ntfs | 0.9-6+b1 | - +- i386 | scrub | 2.4.1-1 | - +- i386 | scrypt | 1.1.6-3 | - +- i386 | scsh-0.6 | 0.6.7-8 | - +- i386 | scsitools | 0.12-2.1 | - +- i386 | scummvm | 1.4.1-1 | - +- i386 | scute | 1.4.0-4 | - +- i386 | sdate | 0.3.1+nmu1 | - +- i386 | sdcc | 3.1.0+dfsg-1 | - +- i386 | sdcc-ucsim | 3.1.0+dfsg-1 | - +- i386 | sdcv | 0.4.2-16 | - +- i386 | sdl-ball | 1.01-3 | - +- i386 | sdlbasic | 0.0.20070714-4 | - +- i386 | sdlbasic-dbg | 0.0.20070714-4 | - +- i386 | sdlbrt | 0.0.20070714-4 | - +- i386 | sdop | 0.71-1 | - +- i386 | sdpa | 7.3.8+dfsg-1 | - +- i386 | sdpam | 7.3.8+dfsg-1 | - +- i386 | sdparm | 1.07-1 | - +- i386 | sdpnetstat | 1.60-1 | - +- i386 | seahorse | 3.4.1-2 | - +- i386 | seahorse-daemon | 3.2.2-1 | - ++ i386 | seahorse-nautilus | - | 3.8.0-1~bpo70+1 +- i386 | searchandrescue | 1.4.0-2 | - +- i386 | searchmonkey | 0.8.1-8 | - +- i386 | seccure | 0.3-3 | - +- i386 | secure-delete | 3.1-5 | - +- i386 | sed | 4.2.1-10 | - +- i386 | seed | 3.2.0-2 | - +- i386 | seesat5 | 0.90.10-1.1 | - +- i386 | seetxt | 0.72-4 | - +- i386 | selinux-utils | 2.1.9-5 | - +- i386 | sendfile | 2.1b.20080616-5.2 | - +- i386 | sendip | 2.5-5 | - +- i386 | sendmail-bin | 8.14.4-4 | - +- i386 | sensible-mda | 8.14.4-4 | - +- i386 | sensord | 1:3.3.2-2+deb7u1 | - +- i386 | sensors-applet | 3.0.0-0.2 | - +- i386 | sentinella | 0.9.0-3 | - +- i386 | sepol-utils | 2.1.4-3 | - +- i386 | seq24 | 0.9.2-2 | - +- i386 | seqan-apps | 1.3.1-1 | - +- i386 | ser2net | 2.6-1 | - +- i386 | serd-dbg | 0.14.0~dfsg0-2 | - +- i386 | serdi | 0.14.0~dfsg0-2 | - +- i386 | service-wrapper | 3.5.3+repack-0+nmu1 | - +- i386 | servicefw | 1.2.0-3 | - +- i386 | set6x86 | 1.5-14 | - +- i386 | setcd | 1.5-6 | - +- i386 | setools | 3.3.7-3 | - +- i386 | setpwc | 1.2-3.1 | - +- i386 | setserial | 2.17-47 | - +- i386 | sextractor | 2.8.6+dfsg-1 | - +- i386 | seyon | 2.20c-31 | - +- i386 | sfftobmp | 3.1.3-1+b1 | - +- i386 | sfftw-dev | 2.1.5-1 | - +- i386 | sfftw2 | 2.1.5-1 | - +- i386 | sffview | 0.4.1-2+b1 | - +- i386 | sflphone-daemon | 1.1.0-2+b1 | - +- i386 | sflphone-evolution | 1.1.0-2+b1 | - +- i386 | sflphone-gnome | 1.1.0-2+b1 | - +- i386 | sfront | 0.98-1 | - +- i386 | sfst | 1.2.0-1.2 | - +- i386 | sg3-utils | 1.33-1 | - +- i386 | sgf2dg | 4.026-10 | - +- i386 | sgrep | 1.94a-4 | - +- i386 | sgt-puzzles | 9411-1 | - +- i386 | shapelib | 1.2.10-7 | - +- i386 | shaperd | 0.2.1-5.2 | - +- i386 | shapetools | 1.4pl6-11 | - +- i386 | shared-mime-info | 1.0-1+b1 | - +- i386 | sharutils | 1:4.11.1-1 | - +- i386 | shed | 1.15-2+b1 | - +- i386 | shell-fm | 0.7+git20100414-1 | - +- i386 | shellinabox | 2.14-1 | - +- i386 | shelltestrunner | 1.2.1-3 | - +- i386 | shelxle | 1.0.564-1 | - +- i386 | shiboken | 1.1.1-1 | - +- i386 | shiboken-dbg | 1.1.1-1 | - +- i386 | shisa | 1.0.1-2 | - +- i386 | shisen.app | 1.2.1-1+b5 | - +- i386 | shishi | 1.0.1-2 | - +- i386 | shishi-dbg | 1.0.1-2 | - +- i386 | shishi-kdc | 1.0.1-2 | - +- i386 | shntool | 3.0.7-1 | - +- i386 | shoes | 0.r396-5.3 | - +- i386 | shotdetect | 1.0.86-1 | - +- i386 | shotwell | 0.12.3-2+deb7u1 | - +- i386 | shotwell-dbg | 0.12.3-2+deb7u1 | - +- i386 | showfoto | 4:2.6.0-1+b2 | - +- i386 | showq | 0.4.1+git20090622+dfsg0-1+b1 | - +- i386 | showq-dbg | 0.4.1+git20090622+dfsg0-1+b1 | - +- i386 | shush | 1.2.3-2 | - +- i386 | sibsim4 | 0.20-1 | - +- i386 | sic | 1.1-5 | - +- i386 | sidplay | 2.0.9-6 | - +- i386 | sidplay-base | 1.0.9-6 | - +- i386 | sidplayfp | 0.3.1-1 | - +- i386 | siege | 2.70-3 | - +- i386 | siggen | 2.3.10-5 | - +- i386 | sigma-align | 1.1.3-3 | - +- i386 | signing-party | 1.1.4-1 | - +- i386 | sigrok-cli | 0.3.0-2 | - +- i386 | sigscheme | 0.8.5-2.1 | - +- i386 | sigviewer | 0.5.1+svn556-1+b2 | - +- i386 | silentjack | 0.3-2 | - +- i386 | sim4 | 0.0.20030921-3 | - +- i386 | simgrid | 3.7.1-1 | - +- i386 | simh | 3.8.1-5 | - +- i386 | simhash | 0.0.20110213-1 | - +- i386 | similarity-tester | 2.62-1 | - +- i386 | simple-scan | 3.4.2-1 | - +- i386 | simpleopal | 3.10.4~dfsg-3 | - +- i386 | simpleproxy | 3.4-5 | - +- i386 | simulavr | 0.1.2.2-6.2 | - +- i386 | simulpic | 1:2005-1-28-8 | - +- i386 | simutrans | 111.2.2-1 | - +- i386 | simutrans-makeobj | 111.2.2-1 | - +- i386 | since | 1.1-2 | - +- i386 | sineshaper | 0.4.2-7 | - +- i386 | sinfo | 0.0.46-2 | - +- i386 | sip-tester | 1:3.2-1 | - +- i386 | sipcalc | 1.1.5-1 | - +- i386 | sipcrack | 0.2-2+b1 | - +- i386 | sipdialer | 1.8.5-4 | - +- i386 | siproxd | 1:0.8.1-3+b1 | - +- i386 | sipsak | 0.9.6-2.1+b1 | - +- i386 | sipwitch | 1.2.4-1 | - +- i386 | sipwitch-cgi | 1.2.4-1 | - +- i386 | sispmctl | 3.1-1 | - +- i386 | sitecopy | 1:0.16.6-4 | - +- i386 | sitplus | 1.0.3-3 | - +- i386 | sjeng | 11.2-8 | - +- i386 | skalibs-dev | 0.47-1 | - +- i386 | skanlite | 0.8-2 | - +- i386 | skanlite-dbg | 0.8-2 | - +- i386 | sketch | 1:0.3.7-1 | - +- i386 | skipfish | 2.05b-1 | - +- i386 | skksearch | 0.0-21 | - +- i386 | skktools | 1.3.2-3 | - +- i386 | skrooge | 1.3.0-1 | - +! i386 | sks | 1.1.3-2 | 1.1.4-2~bpo70+1 +- i386 | sks-ecc | 0.93-2 | - +- i386 | skyeye | 1.2.5-2.1 | - +- i386 | skytools | 2.1.13-2 | - +- i386 | skytools-modules-9.1 | 2.1.13-2 | - +- i386 | sl | 3.03-17 | - +- i386 | slang-cfitsio | 0.3.8+nosvn-4.1 | - +- i386 | slang-curl | 0.2.1-4.2 | - +- i386 | slang-expat | 0.5.0-2 | - +- i386 | slang-gdbm | 1.7.1-4 | - +- i386 | slang-gsl | 0.7.0-5.1 | - +- i386 | slang-histogram | 0.3.2a-3.1 | - +- i386 | slang-pvm | 0.1.5-12.1 | - +- i386 | slang-sqlite | 0.4.0-3.1 | - +- i386 | slang-wildcard | 0.5.0-2 | - +- i386 | slang-xfig | 0.2.0~.35-1.1 | - +- i386 | slapd | 2.4.31-1+nmu2 | - +- i386 | slapd-dbg | 2.4.31-1+nmu2 | - +- i386 | slapd-smbk5pwd | 2.4.31-1+nmu2 | - +- i386 | slashem | 0.0.7E7F3-6 | - +- i386 | slashem-common | 0.0.7E7F3-6 | - +- i386 | slashem-gtk | 0.0.7E7F3-6 | - +- i386 | slashem-sdl | 0.0.7E7F3-6 | - +- i386 | slashem-x11 | 0.0.7E7F3-6 | - +- i386 | sleepd | 2.04 | - +- i386 | sleepenh | 1.3-1 | - +- i386 | sleuthkit | 3.2.3-2 | - +- i386 | slim | 1.3.4-2 | - +- i386 | slimevolley | 2.4.2+dfsg-1 | - +- i386 | slirp | 1:1.0.17-6 | - +- i386 | slmon | 0.5.13-2.2 | - +- i386 | sloccount | 2.26-5 | - +- i386 | slpd | 1.2.1-9 | - +- i386 | slptool | 1.2.1-9 | - +- i386 | slrn | 1.0.0~pre18-1.3 | - +- i386 | slrnface | 2.1.1-6 | - +- i386 | slrnpull | 1.0.0~pre18-1.3 | - +- i386 | slsh | 2.2.4-15 | - +- i386 | sludge-compiler | 2.2-1 | - +- i386 | sludge-devkit | 2.2-1 | - +- i386 | sludge-engine | 2.2-1 | - +- i386 | slurm | 0.4.0-1 | - +- i386 | slurm-drmaa-dev | 1.0.4-3 | - +- i386 | slurm-drmaa1 | 1.0.4-3 | - +- i386 | slurm-llnl | 2.3.4-2+b1 | - +- i386 | slurm-llnl-basic-plugins | 2.3.4-2+b1 | - +- i386 | slurm-llnl-basic-plugins-dev | 2.3.4-2+b1 | - +- i386 | slurm-llnl-slurmdbd | 2.3.4-2+b1 | - +- i386 | slurm-llnl-sview | 2.3.4-2+b1 | - +- i386 | slv2-jack | 0.6.6+dfsg1-2 | - +- i386 | sm | 0.19-1 | - +- i386 | sm-archive | 1.7-1 | - +- i386 | sma | 1.4-2 | - +- i386 | smartdimmer | 0.8b4+cvs20100914-4 | - +- i386 | smartlist | 3.15-22 | - +- i386 | smartmontools | 5.41+svn3365-1 | - +- i386 | smartpm-core | 1.4-2 | - +- i386 | smb-nat | 1:1.0-4 | - +- i386 | smb4k | 1.0.1-1 | - +- i386 | smbc | 1.2.2-3 | - +! i386 | smbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | smbnetfs | 0.5.3a-1 | - +- i386 | smc | 1.9+git20120222-1+b1 | - +- i386 | smcroute | 0.95-1+deb7u1 | - +- i386 | smf-utils | 1.3-2 | - +- i386 | smitools | 0.4.8+dfsg2-7 | - +- i386 | smlnj | 110.74-2 | - +- i386 | smlnj-runtime | 110.74-2 | - +- i386 | smoke-dev-tools | 4:4.8.4-1 | - +- i386 | smokegen-dbg | 4:4.8.4-1 | - +- i386 | smp-utils | 0.96-1 | - +- i386 | smpeg-gtv | 0.4.5+cvs20030824-5 | - +- i386 | smpeg-plaympeg | 0.4.5+cvs20030824-5 | - +- i386 | smplayer | 0.8.0-1+deb7u1 | - +- i386 | smsclient | 2.0.8z-10 | - +- i386 | smstools | 3.1.14-1.2 | - +- i386 | sn | 0.3.8-10.1 | - +- i386 | snacc | 1.3.1-1 | - +- i386 | snake4 | 1.0.12-14 | - +- i386 | snappea | 3.0d3-22 | - +- i386 | snappea-dev | 3.0d3-22 | - +- i386 | snappy | 0.2-1 | - +- i386 | snarf | 7.0-5 | - +- i386 | snd-gtk-jack | 11.7-2 | - +- i386 | snd-gtk-pulse | 11.7-2 | - +- i386 | snd-nox | 11.7-2 | - +- i386 | sndfile-programs | 1.0.25-5 | - +- i386 | sndfile-tools | 1.03-2+b1 | - +- i386 | sng | 1.0.2-7 | - +- i386 | sniffit | 0.3.7.beta-16.1 | - +- i386 | snimpy | 0.6.3-1 | - +- i386 | snmp | 5.4.3~dfsg-2.7 | - +- i386 | snmpd | 5.4.3~dfsg-2.7 | - +- i386 | snmptrapfmt | 1.14+nmu1 | - +- i386 | snooper | 19991202-7.1 | - +- i386 | snoopy | 1.8.0-5 | - +- i386 | snort | 2.9.2.2-3 | - +- i386 | snort-common-libraries | 2.9.2.2-3 | - +- i386 | snort-mysql | 2.9.2.2-3 | - +- i386 | snort-pgsql | 2.9.2.2-3 | - +- i386 | snowdrop | 0.02b-10 | - +- i386 | sntop | 1.4.3-4 | - +- i386 | so-synth-lv2 | 1.4-2 | - +- i386 | sobby | 0.4.8-1 | - +- i386 | socat | 1.7.1.3-1.4 | - +- i386 | socket | 1.1-10 | - +- i386 | socklog | 2.1.0-8 | - +- i386 | socks4-clients | 4.3.beta2-18 | - +- i386 | socks4-server | 4.3.beta2-18 | - +- i386 | sockstat | 0.3-1.1 | - +- i386 | socnetv | 0.90-3 | - +- i386 | sofa-apps | 1.0~beta4-7 | - +- i386 | sofia-sip-bin | 1.12.11+20110422-1 | - +- i386 | softflowd | 0.9.9-1 | - +- i386 | softhsm | 1.3.3-2 | - +- i386 | softhsm-common | 1.3.3-2 | - +- i386 | softhsm-dbg | 1.3.3-2 | - +! i386 | sogo | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! i386 | sogo-dbg | 1.3.16-1 | 2.0.5a-1~bpo70+1 +- i386 | solarpowerlog | 0.23a-2 | - +- i386 | solfege-oss | 3.20.6-1 | - +- i386 | solid-pop3d | 0.15-26 | - +- i386 | sonic | 0.1.17-1.1 | - +- i386 | sooperlooper | 1.6.18~dfsg0-1 | - +- i386 | soprano-daemon | 2.7.6+dfsg.1-2wheezy1 | - +- i386 | sopwith | 1.7.4-6 | - +- i386 | sord-dbg | 0.8.0~dfsg0-1 | - +- i386 | sordi | 0.8.0~dfsg0-1 | - +- i386 | sortmail | 1:2.4-1 | - +- i386 | sound-juicer | 3.4.0-3 | - +- i386 | soundkonverter | 1.5.0-1 | - +- i386 | soundmodem | 0.16-1+b1 | - +- i386 | soundstretch | 1.6.0-3 | - +- i386 | soundstretch-dbg | 1.6.0-3 | - +- i386 | source-highlight | 3.1.6-1.1 | - +- i386 | sox | 14.4.0-3 | - +- i386 | sp | 1.3.4-1.2.1-47.1+b1 | - +- i386 | spacearyarya | 1.0.2-7 | - ++ i386 | spacefm | - | 0.9.3-1~bpo70+1 ++ i386 | spacefm-gtk3 | - | 0.9.3-1~bpo70+1 +- i386 | spacenavd | 0.5-1 | - +- i386 | spacezero | 0.80.06-1 | - +- i386 | spamass-milter | 0.3.2-1 | - +- i386 | spamc | 3.3.2-5 | - +- i386 | spamoracle | 1.4-14 | - +- i386 | spamprobe | 1.4d-11 | - +- i386 | spark | 2011.0.deb-5 | - +- i386 | spass | 3.7-3 | - +- i386 | spatialite-bin | 3.0.0~beta20110817-3+deb7u1 | - +- i386 | spawn-fcgi | 1.6.3-1 | - +- i386 | spd | 1.3.0-1 | - +- i386 | specimen | 0.5.2rc3-5 | - +- i386 | spectools | 201108r1-2 | - +- i386 | spectrwm | 1.0.0-1 | - +- i386 | speech-dispatcher | 0.7.1-6.2 | - +- i386 | speech-dispatcher-dbg | 0.7.1-6.2 | - +- i386 | speech-tools | 1:2.1~release-5 | - +- i386 | speechd-up | 0.5~20110719-2 | - +- i386 | speedcrunch | 0.10.1-4 | - +- i386 | speedy-cgi-perl | 2.22-13+b2 | - +- i386 | speex | 1.2~rc1-7 | - +- i386 | spek | 0.7-3 | - +- i386 | spell | 1.0-24 | - +- i386 | spellutils | 0.7-5 | - +- i386 | spew | 1.0.8-1 | - +- i386 | spfquery | 1.2.9-7 | - +- i386 | sphinxsearch | 2.0.4-1.1 | - +! i386 | spice-client | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +- i386 | spice-client-gtk | 0.12-5 | - +- i386 | spice-vdagent | 0.10.1-1 | - +- i386 | spidermonkey-bin | 17.0.10esr-1~deb7u1 | - +- i386 | spim | 8.0+dfsg-5.1 | - +- i386 | spinner | 1.2.4-3 | - +- i386 | spl-core | 1.0~pre6-3.1+b1 | - +- i386 | spl-curl | 1.0~pre6-3.1+b1 | - +- i386 | spl-dev | 1.0~pre6-3.1+b1 | - +- i386 | spl-mysql | 1.0~pre6-3.1+b1 | - +- i386 | spl-postgres | 1.0~pre6-3.1+b1 | - +- i386 | spl-sdl | 1.0~pre6-3.1+b1 | - +- i386 | spl-sqlite | 1.0~pre6-3.1+b1 | - +- i386 | spl-webspl | 1.0~pre6-3.1+b1 | - +- i386 | spl-xml | 1.0~pre6-3.1+b1 | - +- i386 | splat | 1.4.0-2 | - +- i386 | splay | 0.9.5.2-13 | - +- i386 | spline | 1.2-1 | - +- i386 | splint | 3.1.2.dfsg1-2 | - +- i386 | splitvt | 1.6.6-11 | - +- i386 | spotlighter | 0.1-1 | - +- i386 | spout | 1.3-2 | - +- i386 | spring | 88.0+dfsg1-1.1 | - +- i386 | spring-dbg | 88.0+dfsg1-1.1 | - +- i386 | springlobby | 0.147-1 | - +- i386 | springlobby-dbg | 0.147-1 | - +- i386 | sqcwa | 0.3-3.1 | - ++ i386 | sqlcipher | - | 2.2.1-2~bpo70+1 +- i386 | sqlheavy-utils | 0.1.1-1 | - +- i386 | sqlite | 2.8.17-7 | - +- i386 | sqlite3 | 3.7.13-1+deb7u1 | - +- i386 | sqlitebrowser | 2.0.0~beta1+ds.1-3 | - +- i386 | sqsh | 2.1.7-1 | - +- i386 | squashfs-tools | 1:4.2-5 | - +- i386 | squashfs-tools-dbg | 1:4.2-5 | - +- i386 | squeak-plugins-scratch | 1.4.0.2~svn.r83-1 | - +- i386 | squeak-plugins-scratch-dbg | 1.4.0.2~svn.r83-1 | - +- i386 | squeak-vm | 1:4.4.7.2357-1.1 | - +- i386 | squeeze | 0.2.3-12 | - +- i386 | squid | 2.7.STABLE9-4.1 | - +- i386 | squid-cgi | 3.1.20-2.2 | - +- i386 | squid3 | 3.1.20-2.2 | - +- i386 | squid3-dbg | 3.1.20-2.2 | - +- i386 | squidclient | 3.1.20-2.2 | - +- i386 | squidguard | 1.5-1 | - +- i386 | squidview | 0.79-2 | - +- i386 | squizz | 0.99a-2 | - +- i386 | sqwebmail | 0.68.2-1 | - +- i386 | sra-toolkit | 2.1.7a-1 | - +- i386 | sra-toolkit-libs-dev | 2.1.7a-1 | - +- i386 | sra-toolkit-libs0 | 2.1.7a-1 | - +- i386 | src2tex | 2.12h-8 | - +- i386 | srecord | 1.58-1+b1 | - +- i386 | sredird | 2.2.1-1.1 | - +- i386 | srg | 1.3.6-1 | - +- i386 | srptools | 0.0.4-1.2 | - +- i386 | srtp-utils | 1.4.4+20100615~dfsg-2+deb7u1 | - +- i386 | ss-dev | 2.0-1.42.5-1.1 | - +- i386 | ssdeep | 2.7-2 | - +- i386 | ssed | 3.62-7 | - ++ i386 | ssh-agent-filter | - | 0.3-1~bpo70+1 +- i386 | ssh-askpass | 1:1.2.4.1-9 | - +- i386 | ssh-askpass-fullscreen | 0.3-3.1 | - +! i386 | ssh-askpass-gnome | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +- i386 | ssh-contact-client | 0.7-1 | - +- i386 | ssh-contact-service | 0.7-1 | - +- i386 | sshfs | 2.4-1 | - +- i386 | sshfs-dbg | 2.4-1 | - +- i386 | sshguard | 1.5-5 | - +- i386 | sshpass | 1.05-1 | - +- i386 | ssldump | 0.9b3-4.1 | - +- i386 | sslh | 1.13b-3.2 | - +- i386 | sslscan | 1.8.2-2 | - +- i386 | sslsniff | 0.8-3+b1 | - +- i386 | ssmping | 0.9.1-3 | - +- i386 | ssmtp | 2.64-7 | - +- i386 | sssd | 1.8.4-2 | - +- i386 | sssd-tools | 1.8.4-2 | - +- i386 | ssss | 0.5-2+b1 | - +- i386 | ssvnc | 1.0.29-2 | - +- i386 | staden-io-lib-utils | 1.12.4-1 | - +- i386 | stalin | 0.11-5 | - +- i386 | stalonetray | 0.8.1-1 | - +- i386 | stardata-common | 0.8 | - +- i386 | stardict-gnome | 3.0.1-9.2 | - +- i386 | stardict-gtk | 3.0.1-9.2 | - +- i386 | stardict-plugin | 3.0.1-9.2 | - +- i386 | stardict-plugin-espeak | 3.0.1-9.2 | - +- i386 | stardict-plugin-festival | 3.0.1-9.2 | - +- i386 | stardict-plugin-spell | 3.0.1-9.2 | - +- i386 | stardict-tools | 3.0.2-3+b1 | - +- i386 | starfighter | 1.2-2 | - +- i386 | starplot | 0.95.5-4 | - +- i386 | starpu-examples | 1.0.1+dfsg-1 | - +- i386 | starpu-tools | 1.0.1+dfsg-1 | - +- i386 | starpu-top | 1.0.1+dfsg-1 | - +- i386 | starvoyager | 0.4.4-5.1 | - +- i386 | statgrab | 0.17-1 | - +- i386 | statserial | 1.1-22 | - +- i386 | stax | 1.0-13+b1 | - +- i386 | steadyflow | 0.2.0-1 | - +- i386 | stealth | 2.10.00-1 | - +- i386 | steghide | 0.5.1-9+b2 | - +- i386 | stella | 3.7.2-1 | - +- i386 | stellarium | 0.11.3-1+deb7u1 | - +- i386 | step | 4:4.8.4-1 | - +- i386 | stepbill.app | 2.4-5+b5 | - +- i386 | steptalk | 0.10.0-5+b1 | - +- i386 | stimfit | 0.10.18-1.1+b1 | - +- i386 | stimfit-dbg | 0.10.18-1.1+b1 | - +- i386 | stk | 4.4.3-2 | - +- i386 | stockfish | 2.1.1+git20111006-2 | - +- i386 | stone | 2.3.e-2+b1 | - +- i386 | stopmotion | 0.6.2+git.1.10d2ea43-1.1 | - +- i386 | stormbaancoureur | 2.1.6-1 | - +- i386 | strace | 4.5.20-2.3 | - +- i386 | strace64 | 4.5.20-2.3 | - +- i386 | streamer | 3.102-3 | - +- i386 | streamripper | 1.64.6-1 | - +- i386 | stress | 1.0.1-1 | - +- i386 | stressapptest | 1.0.4-2 | - +- i386 | stretchplayer | 0.503-2 | - +- i386 | stretchplayer-dbg | 0.503-2 | - +- i386 | strigi-client | 0.7.7-3 | - +- i386 | strigi-daemon | 0.7.7-3 | - +- i386 | strigi-dbg | 0.7.7-3 | - +- i386 | strigi-utils | 0.7.7-3 | - +! i386 | strongswan-dbg | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 ++ i386 | strongswan-ike | - | 5.1.1-2~bpo70+1 +- i386 | strongswan-ikev1 | 4.5.2-1.5+deb7u2 | - +- i386 | strongswan-ikev2 | 4.5.2-1.5+deb7u2 | - +! i386 | strongswan-nm | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | strongswan-starter | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +- i386 | structure-synth | 1.5.0-1.1 | - +- i386 | structure-synth-dbg | 1.5.0-1.1 | - +- i386 | stterm | 0.0~20120124+hg226-2 | - +- i386 | stud | 0.3-3 | - +- i386 | stun | 0.96.dfsg-6 | - +- i386 | stunnel4 | 3:4.53-1.1 | - +- i386 | stx-btree-demo | 0.8.6-1 | - +- i386 | stymulator | 0.21a~dfsg-1 | - +- i386 | styx | 1.8.0-1.1 | - +- i386 | styx-dev | 1.8.0-1.1 | - +- i386 | subcommander | 2.0.0~b5p2-5 | - +- i386 | subnetcalc | 2.1.3-1 | - +- i386 | subsurface | 1.2-1 | - +- i386 | subtitlecomposer | 0.5.3-3+b1 | - +- i386 | subtitleeditor | 0.33.0-1 | - +- i386 | subtle | 0.11.3224-xi-1 | - +- i386 | subversion | 1.6.17dfsg-4+deb7u4 | - +- i386 | suck | 4.3.2-11 | - +- i386 | suckless-tools | 38-2 | - +- i386 | sucrack | 1.2.3-0.9 | - +- i386 | sudo | 1.8.5p2-1+nmu1 | - +- i386 | sudo-ldap | 1.8.5p2-1+nmu1 | - +- i386 | sudoku | 1.0.1-4 | - +- i386 | sugar-artwork-0.84 | 0.84.4-3 | - +- i386 | sugar-artwork-0.88 | 0.88.1-4 | - +- i386 | sugar-artwork-0.96 | 0.96.2-1 | - +- i386 | suil-dbg | 0.6.4~dfsg0-3 | - +- i386 | summain | 0.14-1 | - +! i386 | sumo | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +- i386 | sunclock | 3.57-2 | - +- i386 | sunpinyin-data | 0.1.22+20120112-1 | - +- i386 | sunpinyin-utils | 2.0.3+git20120607-1 | - +- i386 | sup | 20100519-1 | - +- i386 | super | 3.30.0-6 | - +- i386 | supercat | 0.5.5-4 | - +- i386 | supercollider | 1:3.4.5-1wheezy1 | - +- i386 | supercollider-dev | 1:3.4.5-1wheezy1 | - +- i386 | supercollider-server | 1:3.4.5-1wheezy1 | - +- i386 | superiotool | 0.0+r6637-1 | - +- i386 | supertransball2 | 1.5-4 | - +- i386 | supertux | 0.1.3-3 | - +! i386 | supertuxkart | 0.7.3-2+b1 | 0.8.1-2~bpo70+1 ++ i386 | supertuxkart-dbg | - | 0.8.1-2~bpo70+1 +- i386 | suphp-common | 0.7.1-3 | - +- i386 | surf | 0.4.1-8 | - +- i386 | suricata | 1.2.1-2 | - +- i386 | survex | 1.2.6-4 | - +- i386 | survex-aven | 1.2.6-4 | - +- i386 | svgalib-bin | 1:1.4.3-33 | - +- i386 | svgpart | 4:4.8.4-1 | - +- i386 | svgtoipe | 20100608-1 | - +- i386 | svn-all-fast-export | 1.0.5-1 | - +- i386 | swac-explore | 0.2-1.2 | - +- i386 | swac-get | 0.3-2.1 | - +- i386 | swami | 2.0.0+svn389-2 | - +- i386 | swami-dbg | 2.0.0+svn389-2 | - +- i386 | swapspace | 1.10-4 | - +- i386 | swat | 2:3.6.6-6+deb7u2 | - +- i386 | swath | 0.4.3-3 | - +- i386 | sweep | 0.9.3-6 | - +- i386 | sweeper | 4:4.8.4-1 | - +- i386 | swell-foop | 1:3.4.2-3 | - +- i386 | swfmill | 0.3.2-1 | - +- i386 | swftools | 0.9.2+ds1-3 | - +- i386 | swh-lv2 | 1.0.15+20111107.gitec6b85e-1 | - +- i386 | swh-plugins | 0.4.15+1-6 | - +- i386 | swi-prolog | 5.10.4-5 | - +- i386 | swi-prolog-java | 5.10.4-5 | - +- i386 | swi-prolog-nox | 5.10.4-5 | - +- i386 | swi-prolog-odbc | 5.10.4-5 | - +- i386 | swi-prolog-x | 5.10.4-5 | - +- i386 | swift-im | 2.0~beta1+dev47-1 | - +- i386 | swift-im-dbg | 2.0~beta1+dev47-1 | - +- i386 | swig | 2.0.7-3 | - +- i386 | swig2.0 | 2.0.7-3 | - +- i386 | swish++ | 6.1.5-2.2 | - +- i386 | swish-e | 2.4.7-3 | - +- i386 | swish-e-dev | 2.4.7-3 | - +- i386 | swisswatch | 0.6-14 | - +- i386 | switchsh | 0~20070801-3 | - +- i386 | sxid | 4.2-1 | - +- i386 | sxiv | 1.0-1 | - +- i386 | sylph-searcher | 1.2.0-7 | - +- i386 | sylpheed | 3.2.0-1 | - +- i386 | sylpheed-dbg | 3.2.0-1 | - +- i386 | sylpheed-plugins | 3.2.0-1 | - +- i386 | symlinks | 1.4-1 | - +- i386 | sympa | 6.1.11~dfsg-5 | - +- i386 | sympow | 1.019-4 | - +- i386 | synaesthesia | 2.4-3 | - +- i386 | synapse | 0.2.10-2 | - +- i386 | synapse-dbg | 0.2.10-2 | - +- i386 | synaptic | 0.75.13 | - +- i386 | sync-ui | 1.2.99.1-1.1 | - +- i386 | synce-gnomevfs | 0.13-2.1 | - +- i386 | synce-hal | 0.15-1.1 | - +- i386 | synce-hal-bluetooth | 0.15-1.1 | - +- i386 | synce-serial | 0.11-5.3 | - +- i386 | synce-trayicon | 0.15-1.2 | - +- i386 | syncevolution | 1.2.99.1-1.1 | - +- i386 | syncevolution-dbg | 1.2.99.1-1.1 | - +- i386 | syncevolution-dbus | 1.2.99.1-1.1 | - +- i386 | syncevolution-libs | 1.2.99.1-1.1 | - +- i386 | syncmaildir | 1.2.5-1 | - +- i386 | syncmaildir-applet | 1.2.5-1 | - +- i386 | synergy | 1.3.8-2 | - +- i386 | synfig | 0.63.05-1 | - +- i386 | synfig-dbg | 0.63.05-1 | - +- i386 | synfigstudio | 0.63.05-1 | - +- i386 | synfigstudio-dbg | 0.63.05-1 | - +- i386 | synopsis | 0.12-8 | - +- i386 | synopsis-idl | 0.12-8 | - +- i386 | syrep | 0.9-4.1 | - +- i386 | syrthes | 3.4.3-dfsg1-6 | - +- i386 | sysbench | 0.4.12-1+b1 | - +- i386 | sysconftool | 0.16-1 | - +- i386 | sysfsutils | 2.1.0+repack-2 | - +- i386 | syslinux | 2:4.05+dfsg-6+deb7u1 | - +- i386 | syslog-ng-core | 3.3.5-4 | - +- i386 | syslog-ng-dbg | 3.3.5-4 | - +- i386 | syslog-ng-mod-json | 3.3.5-4 | - +- i386 | syslog-ng-mod-mongodb | 3.3.5-4 | - +- i386 | syslog-ng-mod-sql | 3.3.5-4 | - +- i386 | sysnews | 0.9-17 | - +- i386 | sysprof | 1.1.8-2 | - +- i386 | sysrqd | 14-1 | - +- i386 | sysstat | 10.0.5-1 | - +- i386 | system-config-audit | 1:1.7.18-1.1 | - +- i386 | system-config-printer-udev | 1.3.7-4 | - +- i386 | system-tools-backends | 2.10.2-1 | - +- i386 | systemd | 44-11+deb7u4 | - +- i386 | systemd-gui | 44-11+deb7u4 | - +- i386 | systemd-sysv | 44-11+deb7u4 | - +- i386 | systempreferences.app | 1.1.0-2+b3 | - +- i386 | systemsettings | 4:4.8.4-6 | - +- i386 | systemtap | 1.7-1+deb7u1 | - +- i386 | systemtap-client | 1.7-1+deb7u1 | - +- i386 | systemtap-grapher | 1.7-1+deb7u1 | - +- i386 | systemtap-runtime | 1.7-1+deb7u1 | - +- i386 | systemtap-sdt-dev | 1.7-1+deb7u1 | - +- i386 | systemtap-server | 1.7-1+deb7u1 | - +- i386 | sysvbanner | 1.0.15 | - +- i386 | sysvinit | 2.88dsf-41+deb7u1 | - +- i386 | sysvinit-utils | 2.88dsf-41+deb7u1 | - +- i386 | t-coffee | 9.02.r1228-2 | - +- i386 | t1lib-bin | 5.1.2-3.6 | - +- i386 | t1utils | 1.37-1 | - +- i386 | t38modem | 2.0.0-3 | - +- i386 | tabble | 0.43-1 | - +- i386 | tabix | 0.2.6-1 | - +- i386 | tableau-parm | 0.2.0-1 | - +- i386 | tablix2 | 0.3.5-2 | - +- i386 | tacacs+ | 4.0.4.19-11 | - +- i386 | tachyon | 0.99~b2+dfsg-0.4 | - +- i386 | tack | 1.07-1 | - +- i386 | tack-dbg | 1.07-1 | - +- i386 | tagainijisho | 0.9.4-1 | - +- i386 | tagcoll | 2.0.13-1.1 | - +- i386 | taggrepper | 0.03.1-3 | - +- i386 | tagtool | 0.12.3-8.1 | - +- i386 | tagua | 1.0~alpha2-10 | - +- i386 | talk | 0.17-15 | - +- i386 | talkd | 0.17-15 | - +- i386 | talksoup.app | 1.0alpha-32-g55b4d4e-1.2+b1 | - +- i386 | tamil-gtk2im | 2.2-4.4 | - +- i386 | tangerine | 0.3.4-3 | - +- i386 | tangerine-dbg | 0.3.4-3 | - +- i386 | tanglet | 1.1.1-1.1 | - +- i386 | tango-accesscontrol | 7.2.6+dfsg-14 | - +- i386 | tango-accesscontrol-dbg | 7.2.6+dfsg-14 | - +- i386 | tango-db | 7.2.6+dfsg-14 | - +- i386 | tango-db-dbg | 7.2.6+dfsg-14 | - +- i386 | tango-starter | 7.2.6+dfsg-14 | - +- i386 | tango-starter-dbg | 7.2.6+dfsg-14 | - +- i386 | tango-test | 7.2.6+dfsg-14 | - +- i386 | tango-test-dbg | 7.2.6+dfsg-14 | - +- i386 | tap-plugins | 0.7.2-1 | - +- i386 | tapecalc | 20070214-2 | - +- i386 | tar | 1.26+dfsg-0.1 | - +- i386 | tarantool | 1.4.6+20120629+2158-1 | - +- i386 | tarantool-client | 1.4.6+20120629+2158-1 | - +- i386 | tarantool-client-dbg | 1.4.6+20120629+2158-1 | - +- i386 | tarantool-dbg | 1.4.6+20120629+2158-1 | - +- i386 | tardy | 1.25-1 | - +- i386 | tart | 3.09-1 | - +! i386 | task | 2.0.0-1 | 2.2.0-3~bpo70+1 +- i386 | task-spooler | 0.7.3-1 | - +- i386 | tasks | 0.20-1+b2 | - +- i386 | tatan | 1.0.dfsg1-3 | - +- i386 | tau | 2.16.4-1.4+b1 | - +- i386 | tayga | 0.9.2-4 | - +- i386 | tcc | 0.9.26~git20120612.ad5f375-6 | - +- i386 | tcd-utils | 20061127-2 | - +- i386 | tcl-funtools | 1.4.4-3 | - +- i386 | tcl-memchan | 2.3-2 | - +- i386 | tcl-memchan-dev | 2.3-2 | - +- i386 | tcl-signal | 1.4-1 | - +- i386 | tcl-tclreadline | 2.1.0-12 | - +- i386 | tcl-tls | 1.6+dfsg-3 | - +- i386 | tcl-trf | 2.1.4-dfsg1-1 | - +- i386 | tcl-trf-dev | 2.1.4-dfsg1-1 | - +- i386 | tcl-vfs | 1.3-20080503-3 | - +- i386 | tcl-vtk | 5.8.0-13+b1 | - +- i386 | tcl-xpa | 2.1.14-2 | - +- i386 | tcl8.4 | 8.4.19-5 | - +- i386 | tcl8.4-dev | 8.4.19-5 | - +- i386 | tcl8.5 | 8.5.11-2 | - +- i386 | tcl8.5-dev | 8.5.11-2 | - +- i386 | tcl8.5-kwwidgets | 1.0.0~cvs20100930-8 | - +- i386 | tclcl | 1.20-6 | - +- i386 | tclcl-dbg | 1.20-6 | - +- i386 | tclcsound | 1:5.17.11~dfsg-3 | - +- i386 | tclcurl | 7.22.0-1 | - +- i386 | tclex | 1.2a1-15 | - +- i386 | tclgeoip | 0.2-1 | - +- i386 | tclodbc | 2.5.1-1.1 | - +- i386 | tclthread | 1:2.6.7-1 | - +- i386 | tclx8.4 | 8.4.0-3 | - +- i386 | tclx8.4-dev | 8.4.0-3 | - +- i386 | tclxapian | 1.2.12-2 | - +- i386 | tclxml | 3.3~svn11-2 | - +- i386 | tclxml-dev | 3.3~svn11-2 | - +- i386 | tcm | 2.20+TSQD-4.2 | - +- i386 | tcng | 10b-4 | - +- i386 | tcpd | 7.6.q-24 | - +- i386 | tcpdump | 4.3.0-1 | - +- i386 | tcpflow | 0.21.ds1-7 | - +- i386 | tcpick | 0.2.1-6 | - ++ i386 | tcplay | - | 1.1-1~bpo70+1 +- i386 | tcpreen | 1.4.4-2 | - +- i386 | tcpreplay | 3.4.3-2+wheezy1 | - +- i386 | tcpser | 1.0rc12-1 | - +- i386 | tcpslice | 1.2a3-4 | - +- i386 | tcpspy | 1.7d-4 | - +- i386 | tcpstat | 1.5-7 | - +- i386 | tcptrace | 6.6.7-4.1 | - +- i386 | tcptraceroute | 1.5beta7+debian-4 | - +- i386 | tcptrack | 1.4.2-1 | - +- i386 | tcputils | 0.6.2-9 | - +- i386 | tcpxtract | 1.0.1-8 | - +- i386 | tcs | 1-11 | - +- i386 | tcsh | 6.18.01-2 | - +! i386 | tdb-tools | 1.2.10-2 | 1.2.12-1~bpo70+1 +- i386 | tdc | 1.2-1 | - +- i386 | tdfsb | 0.0.10-1.1 | - +- i386 | tdl | 1.5.2-3.1 | - +- i386 | tdom | 0.8.3~20080525-3+nmu2 | - +- i386 | tdom-dev | 0.8.3~20080525-3+nmu2 | - +- i386 | tdsodbc | 0.91-2+deb7u1 | - +- i386 | tea | 33.1.0-1 | - +- i386 | tecnoballz | 0.92-5 | - +- i386 | teem-apps | 1.11.0~svn5226-1 | - +- i386 | teeworlds | 0.6.1+dfsg-1 | - +- i386 | teeworlds-server | 0.6.1+dfsg-1 | - +- i386 | teg | 0.11.2+debian-3 | - +- i386 | telak | 0.6-1 | - +- i386 | telegnome | 0.1.1-5 | - +- i386 | telepathy-gabble | 0.16.7-0+deb7u1 | - +- i386 | telepathy-gabble-dbg | 0.16.7-0+deb7u1 | - +- i386 | telepathy-haze | 0.6.0-1 | - +! i386 | telepathy-idle | 0.1.11-2+deb7u1 | 0.1.16-1~bpo70+1 +- i386 | telepathy-logger | 0.4.0-1 | - +- i386 | telepathy-mission-control-5 | 1:5.12.3-1 | - +- i386 | telepathy-mission-control-5-dbg | 1:5.12.3-1 | - +- i386 | telepathy-rakia | 0.7.4-1 | - +- i386 | telepathy-salut | 0.8.1-1 | - +- i386 | teleport | 0.34-7 | - +- i386 | tellico | 2.3.5+dfsg.1-4 | - +- i386 | telnet | 0.17-36 | - +- i386 | telnet-ssl | 0.17.24+0.1-23 | - +- i386 | telnetd | 0.17-36 | - +- i386 | telnetd-ssl | 0.17.24+0.1-23 | - +- i386 | tempest-for-eliza | 1.0.5-1 | - +- i386 | tenace | 0.12-1 | - +- i386 | tenmado | 0.10-1 | - +- i386 | tennix | 1.1-2 | - +- i386 | terminal.app | 0.9.4+cvs20051125-6.1+b2 | - +- i386 | terminatorx | 3.84-2 | - +- i386 | termit | 2.9.4-2 | - +- i386 | teseq | 1.0.0-2.1 | - +- i386 | tessa | 0.3.1-6+b1 | - +- i386 | tessa-mpi | 0.3.1-6+b1 | - +- i386 | tesseract-ocr | 3.02.01-6 | - +- i386 | testdisk | 6.13-1 | - +- i386 | testdisk-dbg | 6.13-1 | - +- i386 | tetradraw | 2.0.3-8.2 | - +- i386 | tetraproc | 0.8.2-2 | - +- i386 | tetrinet-client | 0.11+CVS20070911-1 | - +- i386 | tetrinet-server | 0.11+CVS20070911-1 | - +- i386 | tetrinetx | 1.13.16-14 | - +- i386 | tetzle | 2.0.1-1 | - +- i386 | tex4ht | 20090611-1.1+b1 | - +- i386 | texinfo | 4.13a.dfsg.1-10 | - +- i386 | texlive-binaries | 2012.20120628-4 | - +- i386 | texmacs | 1:1.0.7.15-2 | - +- i386 | texmaker | 3.3.4-1 | - +- i386 | texstudio | 2.3+debian-3 | - +- i386 | texstudio-dbg | 2.3+debian-3 | - +- i386 | textdraw | 0.2-2 | - +- i386 | textedit.app | 4.0+20061029-3.4 | - +- i386 | texworks | 0.5~svn1007-1 | - +- i386 | texworks-scripting-lua | 0.5~svn1007-1 | - +- i386 | texworks-scripting-python | 0.5~svn1007-1 | - +- i386 | tf | 1:4.0s1-17 | - +- i386 | tf5 | 5.0beta8-4+b1 | - +- i386 | tfdocgen | 1.0-1 | - +- i386 | tftp | 0.17-18 | - +- i386 | tftp-hpa | 5.2-4 | - +- i386 | tftpd | 0.17-18 | - +- i386 | tftpd-hpa | 5.2-4 | - +- i386 | tgif | 1:4.2.5-1.2 | - +- i386 | tgn | 0.20-3 | - +- i386 | tgt | 1:1.0.17-1 | - +- i386 | the | 3.3~rc1-2 | - +- i386 | thepeg | 1.8.0-1 | - +- i386 | therion | 5.3.9-4 | - +- i386 | therion-viewer | 5.3.9-4 | - +- i386 | theseus | 1.6.2-2 | - +- i386 | thewidgetfactory | 0.2.1-2 | - +- i386 | thin | 1.3.1-3 | - +- i386 | thinkfan | 0.8.1-1 | - +- i386 | threadscope | 0.2.1-1 | - +- i386 | thrust | 0.89c-3.5 | - +- i386 | thuban | 1.2.2-3+b1 | - +- i386 | thunar | 1.2.3-4+b1 | - +- i386 | thunar-archive-plugin | 0.3.0-4 | - +- i386 | thunar-dbg | 1.2.3-4+b1 | - +- i386 | thunar-gtkhash | 0.6.0-4 | - +- i386 | thunar-media-tags-plugin | 0.2.0-1 | - +- i386 | thunar-vcs-plugin | 0.1.4-1 | - +- i386 | thunar-volman | 0.6.1-1 | - +- i386 | ticker | 1.9 | - +- i386 | tickr | 0.6.1-1 | - +- i386 | tidy | 20091223cvs-1.2 | - +- i386 | tiemu | 3.02-1.2 | - +- i386 | tiemu-skinedit | 1.27-2 | - +- i386 | tifffile | 20120421-1 | - +- i386 | tig | 1.0-2 | - +- i386 | tiger | 1:3.2.3-10 | - +- i386 | tiger-otheros | 1:3.2.3-10 | - +- i386 | tightvncserver | 1.3.9-6.4 | - +- i386 | tigr-glimmer | 3.02-2 | - +- i386 | tilda | 0.09.6-2 | - +- i386 | tiled | 0.8.1-1 | - +- i386 | tilp2 | 1.12-1 | - +- i386 | timbl | 6.4.2-1 | - +- i386 | timblserver | 1.4-2 | - +- i386 | time | 1.7-24 | - +- i386 | timelimit | 1.8-1 | - +- i386 | timemachine | 0.3.3-1 | - +- i386 | timemon.app | 4.1-2+b3 | - +- i386 | timidity | 2.13.2-40.1 | - +- i386 | timidity-interfaces-extra | 2.13.2-40.1 | - +- i386 | timps | 0.25-4 | - +- i386 | tin | 1:2.1.1-1 | - +- i386 | tina | 0.1.11-3 | - +! i386 | tinc | 1.0.19-3 | 1.0.23-1~bpo70+1 +- i386 | tint | 0.04+nmu1 | - +- i386 | tint2 | 0.11+svn20111022-3 | - +- i386 | tint2-dbg | 0.11+svn20111022-3 | - +- i386 | tintii | 2.6.1-1 | - +- i386 | tintin++ | 2.00.8-1 | - +- i386 | tinycdb | 0.78 | - +- i386 | tinydyndns | 0.4.2.debian1-1 | - +- i386 | tinyeartrainer | 0.1.0-2 | - +- i386 | tinyhoneypot | 0.4.6-9 | - +- i386 | tinyirc | 1:1.1.dfsg.1-2 | - +- i386 | tinymux | 2.6.5.28-1 | - +- i386 | tinyproxy | 1.8.3-3 | - +- i386 | tinyscheme | 1.37-3.1 | - +- i386 | tinywm | 1.3-9 | - +- i386 | tiobench | 0.3.3-5 | - +- i386 | titanion | 0.3.dfsg1-4 | - +- i386 | tix | 8.4.3-4 | - +- i386 | tix-dev | 8.4.3-4 | - +- i386 | tk-html3 | 3.0~fossil20110109-2 | - +- i386 | tk-table | 2.10-1 | - +- i386 | tk-tktray | 1.3.9-2 | - +- i386 | tk707 | 0.7.21-9.1 | - +- i386 | tk8.4 | 8.4.19-5 | - +- i386 | tk8.4-dev | 8.4.19-5 | - +- i386 | tk8.5 | 8.5.11-2 | - +- i386 | tk8.5-dev | 8.5.11-2 | - +- i386 | tkdesk | 2.0-9.1 | - +- i386 | tkgate | 1.8.7-4 | - +- i386 | tkpng | 0.9-1 | - +- i386 | tkremind | 03.01.12-1 | - +- i386 | tktreectrl | 2.2.8-1 | - +- i386 | tla | 1.3.5+dfsg-18 | - +- i386 | tm-align | 20120507-1 | - +- i386 | tmake | 1.8-1.1 | - +- i386 | tmispell-voikko | 0.7.1-3 | - +- i386 | tmpreaper | 1.6.13+nmu1 | - +! i386 | tmux | 1.6-2 | 1.8-5~bpo70+1 +- i386 | tnat64 | 0.05-1 | - +- i386 | tnef | 1.4.9-1 | - +- i386 | tnftp | 20100108-3 | - +- i386 | tntdb-mysql3 | 1.2-2+b1 | - +- i386 | tntdb-postgresql3 | 1.2-2+b1 | - +- i386 | tntdb-sqlite3 | 1.2-2+b1 | - +- i386 | tntnet | 2.1-2+deb7u1 | - +- i386 | tntnet-demos | 2.1-2+deb7u1 | - +- i386 | tntnet-runtime | 2.1-2+deb7u1 | - +- i386 | tofrodos | 1.7.9.debian.1-1 | - +- i386 | toga2 | 1.4.1.1SE1-4 | - +- i386 | toilet | 0.3-1 | - +- i386 | tokyocabinet-bin | 1.4.47-2 | - +- i386 | tokyotyrant | 1.1.40-4.1+b1 | - +- i386 | tokyotyrant-dbg | 1.1.40-4.1+b1 | - +- i386 | tokyotyrant-utils | 1.1.40-4.1+b1 | - +- i386 | tomatoes | 1.55-5 | - +- i386 | tomboy | 1.10.0-2 | - +- i386 | tomoyo-tools | 2.5.0-20120414-2 | - +- i386 | toonloop | 2.2.0-1+b1 | - +- i386 | topal | 75-1 | - +- i386 | toppler | 1.1.5-2 | - +- i386 | tor | 0.2.3.25-1 | - +- i386 | tor-dbg | 0.2.3.25-1 | - +- i386 | tora | 2.1.3-2 | - +- i386 | tora-dbg | 2.1.3-2 | - +- i386 | torcs | 1.3.3+dfsg-0.1 | - +- i386 | torque-client | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torque-client-x11 | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torque-common | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torque-mom | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torque-pam | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torque-scheduler | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torque-server | 2.4.16+dfsg-1+deb7u2 | - +- i386 | torsocks | 1.2-3 | - +- i386 | torus-trooper | 0.22.dfsg1-8 | - +- i386 | torus-trooper-pure | 0.22.dfsg1-8 | - +- i386 | toshset | 1.76-4 | - +- i386 | totem | 3.0.1-8 | - +- i386 | totem-dbg | 3.0.1-8 | - +- i386 | totem-mozilla | 3.0.1-8 | - +- i386 | totem-plugin-arte | 3.1.2-1 | - +- i386 | totem-plugins | 3.0.1-8 | - +- i386 | tpb | 0.6.4-8 | - +- i386 | tpconfig | 3.1.3-15 | - +- i386 | tpm-tools | 1.3.7-1 | - +- i386 | tpm-tools-dbg | 1.3.7-1 | - +- i386 | tqsllib-dev | 2.2-5 | - +- i386 | traceroute | 1:2.0.18-3 | - +- i386 | trackballs | 1.1.4-4.1 | - +- i386 | trackballs-dbg | 1.1.4-4.1 | - +- i386 | tracker | 0.14.1-3 | - +- i386 | tracker-dbg | 0.14.1-3 | - +- i386 | tracker-explorer | 0.14.1-3 | - +- i386 | tracker-extract | 0.14.1-3 | - +- i386 | tracker-gui | 0.14.1-3 | - +- i386 | tracker-miner-fs | 0.14.1-3 | - +- i386 | tracker-utils | 0.14.1-3 | - +- i386 | trafficserver | 3.0.5-1 | - +- i386 | trafficserver-dev | 3.0.5-1 | - +- i386 | trafficserver-plugin-conf-remap | 3.0.5-1 | - +- i386 | tralics | 2.14.4-2 | - +- i386 | transcalc | 0.14-5 | - +- i386 | transcend | 0.3.dfsg2-2 | - +- i386 | transcode | 3:1.1.7-3 | - +- i386 | transcode-dbg | 3:1.1.7-3 | - +- i386 | transfermii | 1:0.6.1-2.1 | - +- i386 | transfermii-gui | 1:0.6.1-2.1 | - +- i386 | transfig | 1:3.2.5.d-3 | - +- i386 | transgui | 4.0.3-2 | - +- i386 | transmission-cli | 2.52-3+nmu1 | - +- i386 | transmission-daemon | 2.52-3+nmu1 | - +- i386 | transmission-dbg | 2.52-3+nmu1 | - +- i386 | transmission-gtk | 2.52-3+nmu1 | - +- i386 | transmission-qt | 2.52-3+nmu1 | - +- i386 | transtermhp | 2.09-1 | - +- i386 | traverso | 0.49.2-5 | - +- i386 | trayer | 1.1.4-2 | - +- i386 | tre-agrep | 0.8.0-3 | - +- i386 | tree | 1.6.0-1 | - +- i386 | tree-ppuzzle | 5.2-7 | - +- i386 | tree-puzzle | 5.2-7 | - +- i386 | treeviewx | 0.5.1+20100823-1 | - +- i386 | treil | 1.8-1.1 | - +- i386 | trend | 1.2-1 | - +- i386 | trickle | 1.07-9+b1 | - +- i386 | trigger-rally | 0.6.0-1+b2 | - +- i386 | triggerhappy | 0.3.4-2 | - +- i386 | triplane | 1.0.7-1 | - +- i386 | tripwire | 2.4.2.2-2 | - +- i386 | troffcvt | 1.04-21 | - +- i386 | trophy | 2.0.2-2 | - +- i386 | trophy-dbg | 2.0.2-2 | - +- i386 | trousers | 0.3.9-3+wheezy1 | - +- i386 | trousers-dbg | 0.3.9-3+wheezy1 | - +- i386 | trovacap | 0.2.2-1 | - +- i386 | trueprint | 5.3-4 | - +- i386 | trustedqsl | 1.13-3 | - +- i386 | tsdecrypt | 8.1-1 | - +- i386 | tse3play | 0.3.1-4.3 | - +! i386 | tshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- i386 | tsocks | 1.8beta5-9.2 | - +- i386 | tstools | 1.11-1 | - +- i386 | tsung | 1.4.2-1.1 | - +- i386 | ttf2ufm | 3.4.4~r2-1 | - +- i386 | ttfautohint | 0.9-1 | - +- i386 | tth | 4.03+ds-2 | - +- i386 | tth-common | 4.03+ds-2 | - +- i386 | tthsum | 1.1.0-1 | - +- i386 | ttm | 4.03+ds-2 | - +- i386 | ttt | 1.7-3.3 | - +- i386 | tttprobe | 1.7-3.3 | - +- i386 | tttview | 1.7-3.3 | - +- i386 | ttv | 3.102-3 | - +- i386 | tty-clock | 1.1-1 | - +- i386 | ttyload | 0.5-7 | - +- i386 | ttylog | 0.1.d-2 | - +- i386 | ttylog-dbg | 0.1.d-2 | - +- i386 | ttyrec | 1.0.8-5 | - +- i386 | ttysnoop | 0.12d-5 | - +- i386 | tua | 4.3-11 | - +- i386 | tucnak2 | 2.47-2+deb7u1 | - +- i386 | tudu | 0.8.1-1 | - +- i386 | tulip | 3.7.0dfsg-4 | - +- i386 | tumbler | 0.1.25-1+b1 | - +- i386 | tumbler-plugins-extra | 0.1.25-1+b1 | - +- i386 | tumiki-fighters | 0.2.dfsg1-5 | - +- i386 | tupi | 0.1+git12-6 | - +- i386 | tupi-dbg | 0.1+git12-6 | - +- i386 | tuxcmd | 0.6.70+dfsg-1 | - +- i386 | tuxcmd-modules | 0.6.70+ds-4 | - +- i386 | tuxfootball | 0.3.1-2 | - +- i386 | tuxguitar-alsa | 1.2-13+deb7u1 | - +- i386 | tuxguitar-fluidsynth | 1.2-13+deb7u1 | - +- i386 | tuxguitar-jack | 1.2-13+deb7u1 | - +- i386 | tuxguitar-oss | 1.2-13+deb7u1 | - +- i386 | tuxmath | 1.8.0-4 | - +- i386 | tuxonice-userui | 1.1-1 | - +- i386 | tuxpaint | 1:0.9.21-1.1 | - +- i386 | tuxpaint-config | 0.0.12-3 | - +- i386 | tuxpaint-plugins-default | 1:0.9.21-1.1 | - +- i386 | tuxpuck | 0.8.2-2.2 | - +- i386 | tuxtype | 1.8.1-5 | - +- i386 | tvflash | 0.9.0-1 | - +- i386 | tvtime | 1.0.2-10 | - +- i386 | twclock | 3.1-1 | - +- i386 | tweak | 3.01-8 | - +- i386 | twm | 1:1.0.6-1 | - +- i386 | twoftpd | 1.41-1 | - +- i386 | twolame | 0.3.13-1 | - +- i386 | tworld | 1.3.0-6 | - +- i386 | twpsk | 4.0-1 | - +- i386 | txt2pdbdoc | 1.4.4-6 | - +- i386 | txtreader | 0.6.5-1 | - +- i386 | typespeed | 0.6.5-1.1 | - +- i386 | tzc | 2.6.15-5.2 | - +- i386 | u-boot | 2012.04.01-2 | - +- i386 | u-boot-tools | 2012.04.01-2 | - ++ i386 | u1db-tools | - | 0.1.4-2~bpo70+1 +- i386 | u3-tool | 0.3-1.1 | - +- i386 | uanytun | 0.3.3-1 | - +- i386 | uapevent | 1.4-2 | - +- i386 | uaputl | 1.12-2 | - +- i386 | ucarp | 1.5.2-1+nmu1 | - +- i386 | ucblogo | 5.5-2.1 | - +- i386 | uchardet | 0.0.1-1 | - +- i386 | ucimf | 2.3.8-4 | - +- i386 | ucimf-chewing | 0.3-1+build1 | - +- i386 | ucimf-openvanilla | 2.10.11-2 | - +- i386 | ucimf-sunpinyin | 0.4-2 | - +- i386 | ucommon-utils | 5.2.2-4 | - +- i386 | ucspi-proxy | 0.98-1 | - +- i386 | ucspi-tcp | 1:0.88-3 | - +- i386 | ucspi-tcp-ipv6 | 1:0.88-3 | - +- i386 | ucspi-unix | 0.36-4 | - +- i386 | ucto | 0.5.2-2 | - +- i386 | udav | 0.7.1.2-3+b1 | - +- i386 | udev | 175-7.2 | - ++ i386 | udevil | - | 0.4.3-1~bpo70+1 +- i386 | udftools | 1.0.0b3-14.2 | - +- i386 | udhcpc | 1:1.20.0-7 | - +- i386 | udhcpd | 1:1.20.0-7 | - +- i386 | udisks | 1.0.4-7 | - +- i386 | udisks-glue | 1.3.4-1 | - +- i386 | udo | 6.4.1-1 | - +- i386 | udpcast | 20100130-3 | - +- i386 | udptunnel | 1.1-4 | - +- i386 | udunits-bin | 2.1.23-3 | - +- i386 | ufiformat | 0.9.8-1 | - +- i386 | ufraw | 0.18-2 | - +- i386 | ufraw-batch | 0.18-2 | - +- i386 | ufsutils | 8.2-3 | - +- i386 | uget | 1.8.2-1 | - +! i386 | uhd-host | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | uhub | 0.3.2-1 | 0.4.1-3~bpo70+1 +- i386 | uif2iso | 0.1.7a-1 | - +- i386 | uim-anthy | 1:1.8.1-4 | - +- i386 | uim-applet-gnome | 1:1.8.1-4 | - +- i386 | uim-chewing | 0.1.0-3 | - +- i386 | uim-dbg | 1:1.8.1-4 | - +- i386 | uim-dict-gtk | 1:1.8.1-4 | - +- i386 | uim-dict-gtk3 | 1:1.8.1-4 | - +- i386 | uim-el | 1:1.8.1-4 | - +- i386 | uim-fep | 1:1.8.1-4 | - +- i386 | uim-gtk2.0 | 1:1.8.1-4 | - +- i386 | uim-gtk3 | 1:1.8.1-4 | - +- i386 | uim-m17nlib | 1:1.8.1-4 | - +- i386 | uim-mozc | 1.5.1090.102-4+deb7u1 | - +- i386 | uim-qt | 1:1.8.1-4 | - +- i386 | uim-skk | 1:1.8.1-4 | - +- i386 | uim-utils | 1:1.8.1-4 | - +- i386 | uim-xim | 1:1.8.1-4 | - +- i386 | uisp | 20050207-4.2 | - +- i386 | ukopp | 4.4-1 | - +- i386 | ulatency | 0.5.0-7 | - +- i386 | ulatencyd | 0.5.0-7 | - +- i386 | ulogd | 1.24-3.3 | - +- i386 | ulogd-mysql | 1.24-3.3 | - +- i386 | ulogd-pcap | 1.24-3.3 | - +- i386 | ulogd-pgsql | 1.24-3.3 | - +- i386 | ulogd-sqlite3 | 1.24-3.3 | - +- i386 | umbrello | 4:4.8.4+dfsg-1 | - +- i386 | uml-utilities | 20070815-1.3 | - +- i386 | umview | 0.8.2-1 | - +- i386 | umview-mod-umdevtap | 0.8.2-1 | - +- i386 | umview-mod-umfuseext2 | 0.4-1 | - +- i386 | umview-mod-umfusefat | 0.1a-1 | - +- i386 | umview-mod-umfuseiso9660 | 0.3-1 | - +- i386 | umview-mod-umlwip | 0.8.2-1 | - +- i386 | umview-mod-viewfs | 0.8.2-1 | - +- i386 | unaccent | 1.8.0-6 | - +- i386 | unace | 1.2b-10 | - +- i386 | unadf | 0.7.11a-3 | - +- i386 | unagi | 0.3.3-2 | - +- i386 | unagi-dbg | 0.3.3-2 | - +- i386 | unagi-dev | 0.3.3-2 | - +- i386 | unalz | 0.65-3 | - +- i386 | unar | 1.1-2 | - +! i386 | unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | unbound-anchor | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | unbound-host | 1.4.17-3 | 1.4.21-1~bpo70+1 +- i386 | unclutter | 8-18 | - +- i386 | uncrustify | 0.59-2 | - +- i386 | undbx | 0.20-1 | - +- i386 | undertaker | 1.3b-1 | - +- i386 | unetbootin | 575-1 | - +- i386 | unhide | 20110113-4 | - +- i386 | unhtml | 2.3.9-3 | - +- i386 | uni2ascii | 4.18-2 | - +- i386 | unicode-screensaver | 0.4-1 | - +- i386 | unicon-imc2 | 3.0.4-13 | - +- i386 | uniconf-tools | 4.6.1-5 | - +- i386 | uniconfd | 4.6.1-5 | - +- i386 | unicorn | 4.3.1-4 | - +- i386 | unifdef | 2.6-1 | - +- i386 | unifont-bin | 1:5.1.20080914-1.3 | - +- i386 | unionfs-fuse | 0.24-2.2 | - +- i386 | unison | 2.40.65-2 | - +- i386 | unison-gtk | 2.40.65-2 | - +- i386 | unison2.27.57 | 2.27.57-7 | - +- i386 | unison2.27.57-gtk | 2.27.57-7 | - +- i386 | unison2.32.52 | 2.32.52-6 | - +- i386 | unison2.32.52-gtk | 2.32.52-6 | - +- i386 | units | 1.88-1 | - +- i386 | units-filter | 3.5-2 | - +- i386 | uniutils | 2.27-1 | - +- i386 | universalindentgui | 1.2.0-1 | - +- i386 | unixodbc | 2.2.14p2-5 | - +- i386 | unixodbc-bin | 2.3.0-3 | - +- i386 | unixodbc-dev | 2.2.14p2-5 | - +- i386 | unmass | 0.9-3 | - +- i386 | unmo3 | 0.6-1 | - +! i386 | uno-libs3 | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | uno-libs3-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +- i386 | unpaper | 0.4.2-1 | - +- i386 | unrar-free | 1:0.0.1+cvs20071127-2 | - +- i386 | unrtf | 0.19.3-1.1+b1 | - +- i386 | unscd | 0.48-2 | - +- i386 | unshield | 0.6-3 | - +- i386 | unsort | 1.1.2-1 | - +- i386 | untex | 1:1.2-4 | - +- i386 | unworkable | 0.53-3 | - +- i386 | unzip | 6.0-8 | - +- i386 | update-notifier | 0.99.3debian11 | - +- i386 | update-notifier-kde | 1.2.4 | - +- i386 | uphpmvault | 0.8 | - +- i386 | upnp-router-control | 0.2-1+b1 | - +- i386 | upower | 0.9.17-1 | - +- i386 | upse123 | 1.0.0-1 | - +- i386 | upslug2 | 11-3 | - +- i386 | upstart | 1.6.1-1 | - +- i386 | uptimed | 1:0.3.17-3.1 | - +- i386 | upx-ucl | 3.08-2 | - +- i386 | uqwk | 2.21-15 | - +- i386 | uqwk-spool | 2.21-15 | - +! i386 | ure | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | ure-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +- i386 | urfkill | 0.3.0-1 | - +- i386 | urg-utils | 0.8.12-4 | - +- i386 | urjtag | 0.10+r2007-1 | - +- i386 | urlview | 0.9-19 | - +- i386 | usb-modeswitch | 1.2.3+repack0-1 | - +! i386 | usbip | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +- i386 | usbmuxd | 1.0.7-2 | - +- i386 | usbprog | 0.2.0-2 | - +- i386 | usbprog-gui | 0.2.0-2 | - +! i386 | usbredirserver | 0.4.3-2 | 0.6-2~bpo70+1 +- i386 | usbutils | 1:005-3 | - +- i386 | usbview | 1.1-1 | - +- i386 | usepackage | 1.8-1 | - +- i386 | user-mode-linux | 3.2-2um-1+deb7u2+b2 | - +- i386 | userinfo | 2.2-3 | - +- i386 | usermode | 1.109-1 | - +- i386 | userv | 1.1.1 | - +- i386 | ussp-push | 0.11-1 | - +- i386 | ust-bin | 2.0.4-1 | - +- i386 | uswsusp | 1.0+20110509-3 | - +- i386 | utalk | 1.0.1.beta-7 | - +- i386 | util-linux | 2.20.1-5.3 | - +- i386 | uuagc | 0.9.40.3-2 | - +- i386 | uucp | 1.07-20 | - +- i386 | uucpsend | 1.1-4 | - +- i386 | uudeview | 0.5.20-3.3 | - +- i386 | uuid | 1.6.2-1.3 | - +- i386 | uuid-dev | 2.20.1-5.3 | - +- i386 | uuid-runtime | 2.20.1-5.3 | - +- i386 | uuidcdef | 0.3.13-3 | - +- i386 | uvccapture | 0.5-2 | - +- i386 | uvcdynctrl | 0.2.2-1 | - +- i386 | uvcdynctrl-dbg | 0.2.2-1 | - +- i386 | uw-mailutils | 8:2007f~dfsg-2 | - +- i386 | uwsgi | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-app-integration-plugins | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-core | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-dbg | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-infrastructure-plugins | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-admin | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-cache | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-carbon | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-cgi | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-echo | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-erlang | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-fastrouter | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-fiber | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-graylog2 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-greenlet-python | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-http | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-jvm-openjdk-6 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-jwsgi-openjdk-6 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-logsocket | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-lua5.1 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-nagios | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-ping | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-probeconnect | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-probepg | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-psgi | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-pyerl-python | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-pyerl-python3 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-python | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-python3 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-rack-ruby1.8 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-rack-ruby1.9.1 | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-rpc | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-rrdtool | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-rsyslog | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-signal | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-symcall | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-syslog | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugin-ugreen | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uwsgi-plugins-all | 1.2.3+dfsg-5+deb7u1 | - +- i386 | uzbl | 0.0.0~git.20120514-1.1 | - +- i386 | v-sim | 3.6.0-2+b2 | - +- i386 | v-sim-plugins | 3.6.0-2+b2 | - +- i386 | v4l-conf | 3.102-3 | - +- i386 | v4l-utils | 0.8.8-3 | - +- i386 | v4l2ucp | 2.0.2-4 | - +- i386 | v86d | 0.1.10-1 | - +- i386 | vacation | 3.3.0-0.4 | - +- i386 | vagalume | 0.8.5-4 | - +- i386 | vainfo | 1.0.15-4 | - +- i386 | val-and-rick | 0.1a.dfsg1-3 | - +- i386 | vala-dbus-binding-tool | 0.3.3~git20110523-2 | - +- i386 | vala-gen-project | 0.12.1-3 | - +- i386 | vala-gen-project-dbg | 0.12.1-3 | - +- i386 | vala-terminal | 1.3-3 | - +- i386 | valabind | 0.6.4-1 | - +- i386 | valac-0.14 | 0.14.2-2 | - +- i386 | valac-0.14-dbg | 0.14.2-2 | - +- i386 | valac-0.16 | 0.16.1-2 | - +- i386 | valac-0.16-dbg | 0.16.1-2 | - +- i386 | valadoc | 0.3.2~git20120227-1 | - +- i386 | valgrind | 1:3.7.0-6 | - +- i386 | valgrind-dbg | 1:3.7.0-6 | - +- i386 | valgrind-mpi | 1:3.7.0-6 | - +- i386 | valknut | 0.4.9-2 | - +- i386 | valkyrie | 2.0.0-1 | - +- i386 | vamp-examples | 2.1-1 | - +- i386 | vamp-plugin-sdk | 2.1-1 | - +- i386 | vamps | 0.99.2-4 | - +- i386 | varmon | 1.2.1-1 | - +- i386 | varnish | 3.0.2-2+deb7u1 | - +- i386 | varnish-dbg | 3.0.2-2+deb7u1 | - +- i386 | vavoom | 1.33-4 | - +- i386 | vbetool | 1.1-2 | - +- i386 | vbindiff | 3.0-beta3-1 | - +- i386 | vblade | 20-1 | - +- i386 | vbrfix | 0.24-7 | - +- i386 | vbuf | 0.5.1-5.1 | - +- i386 | vcdimager | 0.7.24+dfsg-0.1 | - +- i386 | vcftools | 0.1.9-1 | - +- i386 | vco-plugins | 0.3.0-2 | - +- i386 | vde2 | 2.3.2-4 | - +- i386 | vde2-cryptcab | 2.3.2-4 | - +- i386 | vdesk | 1.2-3.1 | - +- i386 | vdetelweb | 1.2.1-1 | - +- i386 | vdkbuilder2 | 2.4.0-4.3 | - +- i386 | vdmfec | 1.0-2 | - +- i386 | vdpau-va-driver | 0.7.3-2 | - +- i386 | vdpauinfo | 0.0.6-1 | - +- i386 | vdr | 1.7.28-1 | - +- i386 | vdr-dbg | 1.7.28-1 | - +- i386 | vdr-plugin-dvbhddevice | 1.7.28-1 | - +- i386 | vdr-plugin-dvbsddevice | 1.7.28-1 | - +- i386 | vdr-plugin-dvd | 0.3.6~b03+cvs20090426.0013-14 | - +- i386 | vdr-plugin-epgsearch | 1.0.0+git20120325-4 | - +- i386 | vdr-plugin-epgsync | 0.0.4-12 | - +- i386 | vdr-plugin-examples | 1.7.28-1 | - +- i386 | vdr-plugin-femon | 1.7.17-3 | - +- i386 | vdr-plugin-fritzbox | 1.4.3-2 | - +- i386 | vdr-plugin-games | 0.6.3-39 | - +- i386 | vdr-plugin-infosatepg | 0.0.11-10 | - +- i386 | vdr-plugin-live | 0.2.0+git20120428-3 | - +- i386 | vdr-plugin-mp3 | 0.10.2-14 | - +- i386 | vdr-plugin-mplayer | 0.10.2-14 | - +- i386 | vdr-plugin-osdserver | 0.1.3-7 | - +- i386 | vdr-plugin-osdteletext | 0.9.3-2 | - +- i386 | vdr-plugin-prefermenu | 0.6.6-37 | - +- i386 | vdr-plugin-remote | 0.4.0-31 | - +- i386 | vdr-plugin-remoteosd | 0.1.1-5 | - +- i386 | vdr-plugin-skinenigmang | 0.1.2+git20120628-1 | - +- i386 | vdr-plugin-spider | 0.2.2-14 | - +- i386 | vdr-plugin-streamdev-client | 0.6.0-2 | - +- i386 | vdr-plugin-streamdev-server | 0.6.0-2 | - +- i386 | vdr-plugin-sudoku | 0.3.5-12 | - +- i386 | vdr-plugin-svdrposd | 0.1.1-8 | - +- i386 | vdr-plugin-svdrpservice | 0.0.4-14 | - +- i386 | vdr-plugin-vcd | 0.9-22 | - +- i386 | vdr-plugin-weather | 0.2.1e-63 | - +- i386 | vdr-plugin-xine | 0.9.4-7 | - +- i386 | vdr-plugin-xineliboutput | 1.0.7+cvs20120609.1902-1 | - +- i386 | vectoroids | 1.1.0-11 | - +- i386 | velvet | 1.2.03~nozlibcopy-1 | - +- i386 | verbiste | 0.1.34-1 | - +- i386 | verbiste-gnome | 0.1.34-1 | - +- i386 | verilator | 3.833-1 | - +- i386 | verse | 0.22.6 | - +- i386 | veusz-helpers | 1.15-1 | - +- i386 | veusz-helpers-dbg | 1.15-1 | - +- i386 | vflib3 | 3.6.14.dfsg-3+b1 | - +- i386 | vflib3-bin | 3.6.14.dfsg-3+b1 | - +- i386 | vflib3-dev | 3.6.14.dfsg-3+b1 | - +- i386 | vftool | 2.0alpha-4.1 | - +- i386 | vfu | 4.10-1.1 | - +- i386 | vgrabbj | 0.9.6-5.1 | - +- i386 | via-bin | 2.0.4-2 | - +- i386 | vidalia | 0.2.20-2 | - +- i386 | videocut | 0.2.0-11 | - +- i386 | videogen | 0.32-5 | - +- i386 | viewmol | 2.4.1-18 | - +- i386 | viewpdf.app | 1:0.2dfsg1-4 | - +- i386 | vifm | 0.4-1 | - +- i386 | vigor | 0.016-19 | - +- i386 | viking | 1.3-1 | - +- i386 | vile | 9.8g-2 | - +- i386 | vile-filters | 9.8g-2 | - +- i386 | vilistextum | 2.6.9-1.1 | - +- i386 | vim | 2:7.3.547-7 | - +- i386 | vim-athena | 2:7.3.547-7 | - +- i386 | vim-common | 2:7.3.547-7 | - +- i386 | vim-dbg | 2:7.3.547-7 | - +- i386 | vim-gnome | 2:7.3.547-7 | - +- i386 | vim-gtk | 2:7.3.547-7 | - +- i386 | vim-nox | 2:7.3.547-7 | - +- i386 | vim-tiny | 2:7.3.547-7 | - +- i386 | vinagre | 3.4.2-2 | - +- i386 | vino | 3.4.2-1+b1 | - +- i386 | virt-top | 1.0.7-1+b1 | - +- i386 | virt-viewer | 0.5.3-1 | - +- i386 | virt-what | 1.12-1 | - +! i386 | virtualbox | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-dbg | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +- i386 | virtualbox-fuse | 4.1.18-dfsg-2+deb7u1 | - +! i386 | virtualbox-guest-utils | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-guest-x11 | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-qt | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +- i386 | virtuoso-opensource-6.1 | 6.1.4+dfsg1-7 | - +- i386 | virtuoso-opensource-6.1-bin | 6.1.4+dfsg1-7 | - +- i386 | virtuoso-opensource-6.1-common | 6.1.4+dfsg1-7 | - +- i386 | viruskiller | 1.03-1+dfsg1-1 | - +- i386 | visitors | 0.7-9 | - +- i386 | visualboyadvance | 1.8.0.dfsg-1 | - +- i386 | visualboyadvance-gtk | 1.8.0.dfsg-1 | - +- i386 | vite | 1.2+svn1347-3 | - +- i386 | vkeybd | 1:0.1.18d-2 | - +- i386 | vlan | 1.9-3 | - +! i386 | vlc | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-dbg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-nox | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-fluidsynth | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-jack | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-notify | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-pulse | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-sdl | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-svg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-zvbi | 2.0.3-5 | 2.1.2-2~bpo70+2 +- i386 | vlock | 2.2.2-3 | - ++ i386 | vmdebootstrap | - | 0.2-1~bpo70+1 +- i386 | vmfs-tools | 0.2.5-1 | - +- i386 | vmpk | 0.4.0-3 | - +- i386 | vnc4server | 4.1.1+X4.3.0-37.1 | - +- i386 | vncsnapshot | 1.2a-5.1 | - +- i386 | vnstat | 1.11-1 | - +- i386 | vnstati | 1.11-1 | - +- i386 | vo-aacenc-dbg | 0.1.2-1 | - +- i386 | vo-amrwbenc-dbg | 0.1.2-1 | - +- i386 | vobcopy | 1.2.0-2 | - +- i386 | vocproc | 0.2-3 | - +- i386 | vodovod | 1.10-2 | - +- i386 | voikko-fi | 1.12-1 | - ++ i386 | vokoscreen | - | 1.9.6-1~bpo70+1 +- i386 | volumecontrol.app | 0.5-3.1+b1 | - +- i386 | volumeicon-alsa | 0.4.6-1 | - +- i386 | volview | 3.4-3 | - +- i386 | voms-clients | 2.0.8-1 | - +- i386 | voms-dbg | 2.0.8-1 | - +- i386 | voms-dev | 2.0.8-1 | - +- i386 | voms-mysql-plugin | 3.1.6-1+b1 | - +- i386 | voms-mysql-plugin-dbg | 3.1.6-1+b1 | - +- i386 | voms-server | 2.0.8-1 | - +- i386 | vorbis-tools | 1.4.0-1 | - +- i386 | vorbis-tools-dbg | 1.4.0-1 | - +- i386 | vorbisgain | 0.37-2 | - +- i386 | vowpal-wabbit | 6.1-1 | - +- i386 | voxbo | 1.8.5~svn1246-1+b1 | - +- i386 | vpb-utils | 4.2.55-1 | - +- i386 | vpnc | 0.5.3r512-2 | - +- i386 | vprerex | 6.4.0-3 | - +- i386 | vpx-tools | 1.1.0-1 | - +- i386 | vrfy | 990522-8 | - +- i386 | vrrpd | 1.0-2 | - +- i386 | vsd2odg | 0.8.1-4 | - +- i386 | vsdump | 0.0.45-1 | - +- i386 | vsftpd | 2.3.5-3 | - +- i386 | vstream-client | 1.2-6.1 | - +- i386 | vstream-client-dev | 1.2-6.1 | - +- i386 | vtgrab | 0.1.8-3 | - +- i386 | vtprint | 2.0.2-12 | - +- i386 | vttest | 2.7+20120603-1 | - +- i386 | vtun | 3.0.2-4+b1 | - +- i386 | vtwm | 5.4.7-2.2+b1 | - +- i386 | vym | 2.2.0-1 | - +- i386 | vzctl | 3.0.30.2-4 | - +- i386 | vzquota | 3.0.12-3 | - +- i386 | w-scan | 20120605-1 | - +- i386 | w3cam | 0.7.2-6.2 | - +- i386 | w3m | 0.5.3-8 | - +- i386 | w3m-img | 0.5.3-8 | - +- i386 | w9wm | 0.4.2-7 | - +- i386 | wah-plugins | 0.0.2-2 | - +- i386 | warmux | 1:11.04.1+repack-4 | - +- i386 | warmux-dbg | 1:11.04.1+repack-4 | - +- i386 | warmux-servers | 1:11.04.1+repack-4 | - +- i386 | watch-maildirs | 1.2.0-2.1 | - +- i386 | watchdog | 5.12-1 | - +- i386 | wav2cdr | 2.3.4-1 | - +- i386 | wavbreaker | 0.11-1 | - +- i386 | wavemon | 0.7.5-3 | - +- i386 | wavpack | 4.60.1-3 | - +- i386 | wayv | 0.3-5 | - +- i386 | wbar | 1.3.3+dfsg2-1 | - +- i386 | wbox | 5-1 | - +- i386 | wcalc | 2.4-1.1 | - +- i386 | wcd | 5.2.1-2 | - +- i386 | wcslib-dev | 4.13.4-1 | - +- i386 | wcslib-tools | 4.13.4-1 | - +- i386 | wcstools | 3.8.5-1 | - +- i386 | wdiff | 1.1.2-1 | - +- i386 | wdm | 1.28-13+deb7u1 | - +- i386 | webalizer | 2.23.05-1 | - +- i386 | webauth-utils | 4.1.1-2 | - +- i386 | webcam | 3.102-3 | - +- i386 | webcit-dbg | 8.14-dfsg-1 | - +- i386 | webdruid | 0.5.4-12.1 | - +- i386 | webfs | 1.21+ds1-8.1 | - +- i386 | webhttrack | 3.46.1-1 | - +- i386 | webissues | 1.0.2-1 | - +- i386 | webissues-dbg | 1.0.2-1 | - +- i386 | webkit-image-gtk | 0.0.svn25399-3 | - +- i386 | webkit-image-qt | 0.0.svn25399-3 | - +- i386 | webkit2pdf | 0.2-4 | - +- i386 | weborf | 0.13-3 | - +- i386 | webp | 0.1.3-3+nmu1 | - +! i386 | weechat-core | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-curses | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-dbg | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-plugins | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +- i386 | weex | 2.6.1-8 | - +- i386 | welcome2l | 3.04-25 | - +- i386 | weplab | 0.1.5-2 | - +! i386 | wesnoth-1.10-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | wesnoth-1.10-dbg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | wesnoth-1.10-server | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +- i386 | west-chamber-common | 20100405+svn20111107.r124-1 | - +- i386 | wfut | 0.2.1-2 | - +- i386 | wget | 1.13.4-3+deb7u1 | - +- i386 | whichman | 2.4-7 | - +- i386 | whiptail | 0.52.14-11.1 | - +- i386 | whitedune | 0.30.10-1.1 | - +- i386 | whois | 5.1.1~deb7u1 | - +- i386 | whowatch | 1.6.0a-2 | - +- i386 | why | 2.30+dfsg-5+b1 | - +- i386 | whysynth | 20090403-1.2 | - +- i386 | wicd-kde | 0.3.0-2 | - +- i386 | wide-dhcpv6-client | 20080615-11.1 | - +- i386 | wide-dhcpv6-relay | 20080615-11.1 | - +- i386 | wide-dhcpv6-server | 20080615-11.1 | - +- i386 | widelands | 1:17-3 | - +- i386 | widelands-dbg | 1:17-3 | - +- i386 | wiggle | 0.8+dfsg1-1 | - +- i386 | wiipdf | 1.4-2 | - +- i386 | wildmidi | 0.2.3.4-2.1 | - +- i386 | wily | 0.13.41-7.2 | - ++ i386 | wims | - | 1:4.07a~dfsg1-2~bpo1-1 ++ i386 | wims-java-applets | - | 1:4.07a~dfsg1-2~bpo1-1 +! i386 | winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +- i386 | winbind4 | 4.0.0~beta2+dfsg1-3.2 | - +- i386 | windowlab | 1.40-1 | - +- i386 | wine | 1.4.1-4 | - +- i386 | wine-bin | 1.4.1-4 | - +- i386 | winff | 1.4.2-3 | - +- i386 | winff-dbg | 1.4.2-3 | - +- i386 | wing | 0.7-27.1+b1 | - +- i386 | wings3d | 1.4.1-4 | - +- i386 | wininfo | 0.7-5 | - +- i386 | winwrangler | 0.2.4-3 | - +- i386 | wipe | 0.22-1 | - +- i386 | wireless-tools | 30~pre9-8 | - +! i386 | wireshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-common | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-dbg | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +- i386 | wise | 2.4.1-10 | - +- i386 | witty-examples | 3.2.1-2 | - +- i386 | wizznic | 0.9.2-preview2+dfsg-1.1 | - +- i386 | wkhtmltopdf | 0.9.9-4 | - +- i386 | wm2 | 4+svn20090216-2 | - +- i386 | wmacpi | 2.2~rc5-1 | - +- i386 | wmail | 2.0-3 | - +- i386 | wmaker | 0.95.3-2 | - +- i386 | wmaker-dbg | 0.95.3-2 | - +- i386 | wmaloader | 0.1-5.1+b1 | - +- i386 | wmanager | 0.2.1-11 | - +- i386 | wmauda | 0.8-2 | - +- i386 | wmbattery | 2.41 | - +- i386 | wmbiff | 0.4.27-2.1 | - +- i386 | wmbubble | 1.46-3 | - +- i386 | wmbutton | 0.6.1-3.1 | - +- i386 | wmcalclock | 1.25-15 | - +- i386 | wmcdplay | 1.0beta1-10 | - +- i386 | wmclock | 1.0.14-1 | - +- i386 | wmclockmon | 0.8.1-2 | - +- i386 | wmcoincoin | 2.5.1e-1 | - +- i386 | wmcpu | 1.4-4 | - +- i386 | wmcpuload | 1.0.1-3.2 | - +- i386 | wmctrl | 1.07-7 | - +- i386 | wmdate | 0.7-4 | - +- i386 | wmdiskmon | 0.0.2-2 | - +- i386 | wmdrawer | 0.10.5-1.1 | - +- i386 | wmf | 1.0.5-6 | - +- i386 | wmforkplop | 0.9.3-2 | - +- i386 | wmfrog | 0.2.0-4 | - +- i386 | wmgui | 0.6.00+svn201-3+b1 | - +- i386 | wmhdplop | 0.9.9-2.1 | - +- i386 | wmifinfo | 0.09-5 | - +- i386 | wmifs | 1.3b1-20 | - +- i386 | wmii | 3.9.2+debian-4 | - +- i386 | wminput | 0.6.00+svn201-3+b1 | - +- i386 | wmitime | 0.3-11 | - +- i386 | wmix | 3.1-5 | - +- i386 | wml | 2.0.12ds1-3 | - +- i386 | wmlongrun | 0.3.0-pre1-4.2 | - +- i386 | wmmatrix | 0.2-12 | - +- i386 | wmmemload | 0.1.6-7 | - +- i386 | wmmixer | 1.7-1 | - +- i386 | wmmon | 1.1+20120402-1 | - +- i386 | wmmoonclock | 1.28-1 | - +- i386 | wmnd | 0.4.16-1.1 | - +- i386 | wmnd-snmp | 0.4.16-1.1 | - +- i386 | wmnet | 1.06-1 | - +- i386 | wmnut | 0.64-1 | - +- i386 | wmpinboard | 1.0-11 | - +- i386 | wmpomme | 1.39~dfsg-2+b1 | - +- i386 | wmppp.app | 1.3.0-8 | - +- i386 | wmpuzzle | 0.5.1-1 | - +- i386 | wmrack | 1.4-2 | - +- i386 | wmressel | 0.8-5 | - +- i386 | wmshutdown | 0.2-9 | - +- i386 | wmtemp | 0.0.6-3.3 | - +- i386 | wmtime | 1.0b2-10 | - +- i386 | wmtv | 0.6.5-16.1 | - +- i386 | wmwave | 0.4-9+b1 | - +- i386 | wmweather | 2.4.5-1 | - +- i386 | wmweather+ | 2.13-1 | - +- i386 | wmwork | 0.2.5-4 | - +- i386 | wmxmms2 | 0.6-6 | - +- i386 | wmxres | 1.2-10 | - +- i386 | wodim | 9:1.1.11-2 | - +- i386 | wordgrinder | 0.3.3-1 | - +- i386 | wordnet | 1:3.0-29 | - +- i386 | wordnet-dev | 1:3.0-29 | - +- i386 | wordnet-grind | 1:3.0-29 | - +- i386 | wordnet-gui | 1:3.0-29 | - +- i386 | wordplay | 7.22-17 | - +- i386 | worker | 2.19.2-2 | - +- i386 | worklog | 1.8-6 | - +- i386 | workrave | 1.9.909+abc941eb70-1 | - +- i386 | wp2x | 2.5-mhi-10.1 | - +- i386 | wpagui | 1.0-3+b1 | - +- i386 | wpasupplicant | 1.0-3+b1 | - +- i386 | wpd2odt | 0.8.1-4 | - +- i386 | wpg2odg | 0.8.1-4 | - +- i386 | wps2odt | 0.8.1-4 | - +- i386 | wput | 0.6.2-3 | - +- i386 | wraplinux | 1.7-7 | - +- i386 | wraplinux-dbg | 1.7-7 | - +- i386 | wrapperfactory.app | 0.1.0-4+b3 | - +- i386 | wrapsrv | 0.2-1 | - +- i386 | wreport-common | 2.4-1 | - +- i386 | wsjt | 5.9.7.r383-1.6 | - +- i386 | wsynth-dssi | 0.1.3-4 | - +- i386 | wuzzah | 0.53-2 | - +- i386 | wv | 1.2.9-3 | - +- i386 | wvdial | 1.61-4.1 | - +- i386 | wwl | 1.3+db-1.1 | - +- i386 | wx-common | 2.8.12.1-12 | - +- i386 | wx2.8-headers | 2.8.12.1-12 | - +- i386 | wxmaxima | 12.04.0-1 | - +- i386 | wxsqlite3-2.8-dbg | 3.0.0.1~dfsg0-2 | - +- i386 | wyrd | 1.4.4-1 | - +- i386 | wysihtml-el | 0.13-5.1 | - +- i386 | wzdftpd | 0.8.3-6.2 | - +- i386 | wzdftpd-back-mysql | 0.8.3-6.2 | - +- i386 | wzdftpd-back-pgsql | 0.8.3-6.2 | - +- i386 | wzdftpd-dev | 0.8.3-6.2 | - +- i386 | wzdftpd-mod-avahi | 0.8.3-6.2 | - +- i386 | wzdftpd-mod-perl | 0.8.3-6.2 | - +- i386 | wzdftpd-mod-tcl | 0.8.3-6.2 | - +- i386 | wzip | 1.1.3 | - +- i386 | x11-apps | 7.7~2 | - +- i386 | x11-session-utils | 7.6+2 | - +- i386 | x11-utils | 7.7~1 | - +- i386 | x11-xfs-utils | 7.7~1 | - +- i386 | x11-xkb-utils | 7.7~1 | - +- i386 | x11-xserver-utils | 7.7~3 | - +- i386 | x11vnc | 0.9.13-1 | - +- i386 | x2 | 1.1.0-1 | - +- i386 | x264 | 2:0.123.2189+git35cf912-1 | - +! i386 | x2goclient | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 ++ i386 | x2goclient-dbg | - | 4.0.1.1-1~bpo7+1 +! i386 | x2goplugin | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +- i386 | x2vnc | 1.7.2-5 | - +- i386 | x2x | 1.27.svn.20060501-4 | - +- i386 | x86dis | 0.23-5 | - +- i386 | x86info | 1.30-2 | - +- i386 | xa65 | 2.3.5-1 | - +- i386 | xabacus | 7.6.8-3 | - +- i386 | xacobeo | 0.13-2+b1 | - +- i386 | xalan | 1.10-6 | - +- i386 | xaos | 3.5+ds1-1 | - +! i386 | xapian-examples | 1.2.12-2 | 1.2.16-2~bpo70+1 +- i386 | xapian-omega | 1.2.12-1 | - +! i386 | xapian-tools | 1.2.12-2 | 1.2.16-2~bpo70+1 +- i386 | xapm | 3.2.2-14 | - +- i386 | xara-gtk | 1.0.31 | - +- i386 | xarchiver | 1:0.5.2+20090319+dfsg-4.1 | - +- i386 | xarclock | 1.0-13 | - +- i386 | xauth | 1:1.0.7-1 | - +- i386 | xautolock | 1:2.2-3 | - +- i386 | xautomation | 1.03-1.1 | - +- i386 | xaw3dg | 1.5+E-18.2 | - +- i386 | xaw3dg-dev | 1.5+E-18.2 | - +- i386 | xawtv | 3.102-3 | - +- i386 | xawtv-plugin-qt | 3.102-3 | - +- i386 | xawtv-plugins | 3.102-3 | - +- i386 | xawtv-tools | 3.102-3 | - +- i386 | xbacklight | 1.1.2-1 | - +- i386 | xball | 3.0.1-1.1 | - +- i386 | xbattbar | 1.4.3-1 | - +- i386 | xbattle | 5.4.1-15 | - +- i386 | xbill | 2.1-8 | - +- i386 | xbindkeys | 1.8.5-1 | - +- i386 | xbindkeys-config | 0.1.3-2 | - +- i386 | xblast-tnt | 2.10.4-3 | - +! i386 | xbmc-bin | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! i386 | xbmc-eventclients-wiiremote | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +- i386 | xboard | 4.6.2-1 | - +- i386 | xboing | 2.4-31 | - +- i386 | xbomb | 2.2a-1 | - +- i386 | xboxdrv | 0.8.4-1 | - +- i386 | xbrlapi | 4.4-10+deb7u1 | - +- i386 | xbs | 0-8 | - +- i386 | xbubble | 0.5.11.2-3.2 | - +- i386 | xbuffy | 3.3.bl.3.dfsg-8 | - +- i386 | xca | 0.9.3-1 | - +- i386 | xcal | 4.1-19 | - +- i386 | xcalib | 0.8.dfsg1-2 | - +- i386 | xcb | 2.4-4.3 | - +- i386 | xcfa | 4.3.1-1 | - +- i386 | xcfa-dbg | 4.3.1-1 | - +- i386 | xcftools | 1.0.7-4 | - +- i386 | xchain | 1.0.1-6 | - +- i386 | xchat | 2.8.8-7.1 | - +- i386 | xchat-gnome | 1:0.30.0~git20110821.e2a400-0.2+b2 | - +- i386 | xchat-guile | 0.3-2 | - +- i386 | xchat-xsys | 2.2.0-2+b1 | - +- i386 | xchm | 2:1.20-1 | - +- i386 | xcircuit | 3.7.40.dfsg-1 | - +- i386 | xclip | 0.12+svn84-2 | - +- i386 | xcolmix | 1.07-10 | - +- i386 | xcolors | 1.5a-7 | - +- i386 | xcolorsel | 1.1a-17 | - +- i386 | xcompmgr | 1.1.5-1 | - +- i386 | xcowsay | 1.2-1 | - +- i386 | xcp-fe | 0.5.2-3+b1 | - +- i386 | xcp-guest-templates | 0.1-4 | - +- i386 | xcp-networkd | 1.3.2-15 | - +- i386 | xcp-squeezed | 1.3.2-15 | - +- i386 | xcp-storage-managers | 0.1.1-3 | - +- i386 | xcp-v6d | 1.3.2-15 | - +- i386 | xcp-vncterm | 0.1-2 | - +- i386 | xcp-xapi | 1.3.2-15 | - +- i386 | xcp-xapi-debug | 1.3.2-15 | - +- i386 | xcp-xe | 1.3.2-15 | - +- i386 | xcrysden | 1.5.53-1 | - +- i386 | xcwcp | 3.0.2-1 | - +- i386 | xd | 3.22.04-1 | - +- i386 | xdaliclock | 2.36+debian-1 | - +- i386 | xdelta | 1.1.3-9 | - +- i386 | xdelta3 | 3.0.0.dfsg-1 | - +- i386 | xdemineur | 2.1.1-17 | - +- i386 | xdemorse | 1.3-6 | - +- i386 | xdesktopwaves | 1.3-3 | - +- i386 | xdeview | 0.5.20-3.3 | - +- i386 | xdg-user-dirs | 0.14-1 | - +- i386 | xdg-user-dirs-gtk | 0.9-1 | - +- i386 | xdiskusage | 1.48-10.1 | - +- i386 | xdm | 1:1.1.11-1 | - +- i386 | xdms | 1.3.2-4 | - +- i386 | xdmx | 2:1.12.4-6+deb7u2 | - +- i386 | xdmx-tools | 2:1.12.4-6+deb7u2 | - +- i386 | xdotool | 1:2.20100701.2961-3+deb7u3 | - +- i386 | xdrawchem | 2.0-2 | - +- i386 | xdu | 3.0-18 | - +- i386 | xdvik-ja | 22.84.16-j1.40+t1lib-1 | - +- i386 | xen-hypervisor-4.1-amd64 | 4.1.4-3+deb7u1 | - +- i386 | xen-hypervisor-4.1-i386 | 4.1.4-3+deb7u1 | - +- i386 | xen-linux-system-2.6-xen-686 | 3.2+46 | - +- i386 | xen-linux-system-3.2.0-4-686-pae | 3.2.54-2 | - +- i386 | xen-linux-system-3.2.0-4-amd64 | 3.2.54-2 | - +- i386 | xen-linux-system-686-pae | 3.2+46 | - +- i386 | xen-linux-system-amd64 | 3.2+46 | - +- i386 | xen-system-amd64 | 4.1.4-3+deb7u1 | - +- i386 | xen-system-i386 | 4.1.4-3+deb7u1 | - +- i386 | xen-utils-4.1 | 4.1.4-3+deb7u1 | - +- i386 | xenomai-runtime | 2.6.0-2 | - +- i386 | xenstore-utils | 4.1.4-3+deb7u1 | - +- i386 | xenwatch | 0.5.4-3 | - +- i386 | xevil | 2.02r2-10 | - +- i386 | xfaces | 3.3-28 | - +- i386 | xfburn | 0.4.3-5 | - +- i386 | xfce4-appfinder | 4.8.0-3 | - +- i386 | xfce4-battery-plugin | 1.0.5-1+b1 | - +- i386 | xfce4-cellmodem-plugin | 0.0.5-3+b1 | - +- i386 | xfce4-clipman | 2:1.2.3-1+b1 | - +- i386 | xfce4-clipman-plugin | 2:1.2.3-1+b1 | - +- i386 | xfce4-cpufreq-plugin | 1.0.0-4+b1 | - +- i386 | xfce4-cpugraph-plugin | 1.0.3-1+b1 | - +- i386 | xfce4-datetime-plugin | 0.6.1-3+b1 | - +- i386 | xfce4-dev-tools | 4.10.0-2 | - +- i386 | xfce4-dict | 0.6.0-5+b1 | - +- i386 | xfce4-diskperf-plugin | 2.5.4-1+b1 | - +- i386 | xfce4-fsguard-plugin | 1.0.1-1+b1 | - +- i386 | xfce4-genmon-plugin | 3.4.0-1+b1 | - +- i386 | xfce4-goodies | 4.8.2 | - +- i386 | xfce4-hdaps | 0.0.9-1+b1 | - +- i386 | xfce4-indicator-plugin | 0.5.0-1+b2 | - +- i386 | xfce4-linelight-plugin | 0.1.7-2+b1 | - +- i386 | xfce4-mailwatch-plugin | 1.1.0-5+b1 | - +- i386 | xfce4-messenger-plugin | 0.1.0-5+b1 | - +- i386 | xfce4-mixer | 4.8.0-3+b1 | - +- i386 | xfce4-mount-plugin | 0.6.4-1+b1 | - +- i386 | xfce4-mpc-plugin | 0.4.4-1+b1 | - +- i386 | xfce4-netload-plugin | 1.1.0-1+b1 | - +- i386 | xfce4-notes | 1.7.7-2+b1 | - +- i386 | xfce4-notes-plugin | 1.7.7-2+b1 | - +- i386 | xfce4-notifyd | 0.2.2-2 | - +- i386 | xfce4-panel | 4.8.6-4 | - +- i386 | xfce4-panel-dbg | 4.8.6-4 | - +- i386 | xfce4-panel-dev | 4.8.6-4 | - +- i386 | xfce4-places-plugin | 1.3.0-1+b1 | - +- i386 | xfce4-power-manager | 1.0.11-2+b1 | - +- i386 | xfce4-power-manager-plugins | 1.0.11-2+b1 | - +- i386 | xfce4-quicklauncher-plugin | 1.9.4-9+b1 | - +- i386 | xfce4-radio-plugin | 0.5.1-1+b1 | - +- i386 | xfce4-screenshooter | 1.8.1-1+b1 | - +- i386 | xfce4-sensors-plugin | 1.2.5-1+b1 | - +- i386 | xfce4-session | 4.8.3-3 | - +- i386 | xfce4-session-dbg | 4.8.3-3 | - +- i386 | xfce4-settings | 4.8.3-2 | - +- i386 | xfce4-smartbookmark-plugin | 0.4.4-1+b1 | - +- i386 | xfce4-systemload-plugin | 1.1.1-1+b1 | - +- i386 | xfce4-taskmanager | 1.0.0-2 | - +- i386 | xfce4-terminal | 0.4.8-1+b1 | - +- i386 | xfce4-terminal-dbg | 0.4.8-1+b1 | - +- i386 | xfce4-timer-plugin | 0.6.3-1+b1 | - +- i386 | xfce4-utils | 4.8.3-2 | - +- i386 | xfce4-verve-plugin | 1.0.0-1+b1 | - +- i386 | xfce4-volumed | 0.1.13-3 | - +- i386 | xfce4-wavelan-plugin | 0.5.11-1+b1 | - +- i386 | xfce4-weather-plugin | 0.7.4-5 | - +- i386 | xfce4-wmdock-plugin | 0.3.4-1+b1 | - +- i386 | xfce4-xkb-plugin | 0.5.4.3-1+b1 | - +- i386 | xfconf | 4.8.1-1 | - +- i386 | xfdesktop4 | 4.8.3-2 | - +- i386 | xfdesktop4-dbg | 4.8.3-2 | - +- i386 | xfe | 1.32.5-2 | - +- i386 | xfig | 1:3.2.5.b-3 | - +- i386 | xfingerd | 0.6-5.1 | - +- i386 | xfireworks | 1.3-8 | - +- i386 | xfishtank | 2.2-26 | - +- i386 | xflip | 1.01-25 | - +- i386 | xflr5 | 6.07+svn513-1 | - +- i386 | xfm | 1.5.4-3 | - +- i386 | xfmpc | 0.2.2-1 | - +- i386 | xfoil | 6.97.dfsg-5 | - +- i386 | xfonts-utils | 1:7.7~1 | - +- i386 | xfprint4 | 4.6.1-3 | - +- i386 | xfpt | 0.09-1 | - +- i386 | xfrisk | 1.2-3 | - +- i386 | xfs | 1:1.0.8-7 | - +- i386 | xfsdump | 3.0.6 | - +- i386 | xfslibs-dev | 3.1.7+b1 | - +- i386 | xfsprogs | 3.1.7+b1 | - +- i386 | xfstt | 1.9-2 | - +- i386 | xfswitch-plugin | 0.0.1-3+b1 | - +- i386 | xfwm4 | 4.8.3-2 | - +- i386 | xfwm4-dbg | 4.8.3-2 | - +- i386 | xgalaga | 2.1.1.0-4 | - +- i386 | xgalaga++ | 0.8.3-1 | - +- i386 | xgammon | 0.99.1128-3 | - +- i386 | xgnokii | 0.6.30+dfsg-1+b1 | - +- i386 | xgraph | 12.1-16 | - +- i386 | xicc | 0.2-3 | - +- i386 | xindy | 2.4-1.1 | - +- i386 | xine-console | 0.99.7-1 | - +- i386 | xine-dbg | 0.99.7-1 | - +- i386 | xine-plugin | 1.0.2-4 | - +- i386 | xine-ui | 0.99.7-1 | - +- i386 | xineliboutput-fbfe | 1.0.7+cvs20120609.1902-1 | - +- i386 | xineliboutput-sxfe | 1.0.7+cvs20120609.1902-1 | - +- i386 | xinetd | 1:2.3.14-7.1+deb7u1 | - +- i386 | xinit | 1.3.2-1 | - +- i386 | xinput | 1.6.0-1 | - +- i386 | xinv3d | 1.3.6-6 | - +- i386 | xiphos | 3.1.5+dfsg-1+b2 | - +- i386 | xiphos-dbg | 3.1.5+dfsg-1+b2 | - +- i386 | xipmsg | 0.8088-2.1 | - +- i386 | xiterm+thai | 1.10-2 | - +- i386 | xjadeo | 0.6.4-1 | - +- i386 | xjdic | 24-8 | - +- i386 | xjed | 1:0.99.19-2.1 | - +- i386 | xjig | 2.4-13+b2 | - +- i386 | xjobs | 20110730-1 | - +- i386 | xjokes | 1.0-13 | - +- i386 | xjump | 2.7.5-6.1 | - +- i386 | xkbind | 2010.05.20-1 | - +- i386 | xkbset | 0.5-5.1 | - +- i386 | xkeycaps | 2.47-4 | - +- i386 | xl2tpd | 1.3.1+dfsg-1 | - +- i386 | xlassie | 1.8-21 | - +- i386 | xlbiff | 4.1-7 | - +- i386 | xless | 1.7-14.1 | - +- i386 | xletters | 1.1.1-4.1 | - +- i386 | xlhtml | 0.5.1-6 | - +- i386 | xli | 1.17.0+20061110-4 | - +- i386 | xloadimage | 4.1-19 | - +- i386 | xlog | 2.0.5-2 | - +- i386 | xmabacus | 7.6.8-3 | - +- i386 | xmacro | 0.3pre-20000911-6 | - +- i386 | xmahjongg | 3.7-3 | - +- i386 | xmail | 1.27-1.1+b1 | - +- i386 | xmakemol | 5.16-6 | - +- i386 | xmakemol-gl | 5.16-6 | - +- i386 | xmaxima | 5.27.0-3 | - +- i386 | xmbmon | 2.05-6 | - +- i386 | xmds | 1.6.6-7 | - +- i386 | xmedcon | 0.10.7-1+b2 | - +- i386 | xmem | 1.20-27.2 | - +- i386 | xmhtml1 | 1.1.7-18 | - +- i386 | xmhtml1-dev | 1.1.7-18 | - +- i386 | xmille | 2.0-13 | - +- i386 | xmix | 2.1-6 | - ++ i386 | xml-security-c-utils | - | 1.7.2-2~bpo70+1 +- i386 | xml2 | 0.4-3.1 | - +- i386 | xmlcopyeditor | 1.2.0.6-2+b1 | - +- i386 | xmlcopyeditor-dbg | 1.2.0.6-2+b1 | - +- i386 | xmldiff | 0.6.10-2+b1 | - +- i386 | xmlindent | 0.2.17-2 | - +- i386 | xmlroff | 0.6.2-1.1 | - +- i386 | xmlrpc-api-utils | 1.16.33-3.2 | - +- i386 | xmlsec1 | 1.2.18-2 | - +- i386 | xmlstarlet | 1.3.1-3 | - +- i386 | xmlto | 0.0.25-2 | - +- i386 | xmms2 | 0.8+dfsg-4 | - +- i386 | xmms2-client-avahi | 0.8+dfsg-4 | - +- i386 | xmms2-client-cli | 0.8+dfsg-4 | - +- i386 | xmms2-client-medialib-updater | 0.8+dfsg-4 | - +- i386 | xmms2-client-nycli | 0.8+dfsg-4 | - +- i386 | xmms2-core | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-airplay | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-all | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-alsa | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-ao | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-apefile | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-asf | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-asx | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-avcodec | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-cdda | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-cue | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-curl | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-daap | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-faad | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-flac | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-flv | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-gme | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-gvfs | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-html | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-ices | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-icymetaint | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-id3v2 | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-jack | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-karaoke | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-m3u | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-mad | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-mms | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-modplug | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-mp4 | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-mpg123 | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-musepack | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-normalize | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-ofa | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-oss | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-pls | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-pulse | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-rss | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-sid | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-smb | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-sndfile | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-speex | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-tta | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-vocoder | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-vorbis | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-wavpack | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-xml | 0.8+dfsg-4 | - +- i386 | xmms2-plugin-xspf | 0.8+dfsg-4 | - +- i386 | xmms2-scrobbler | 0.4.0-3 | - +- i386 | xmobar | 0.14-4 | - +- i386 | xmonad | 0.10-4+b2 | - +- i386 | xmorph | 1:20090926 | - +- i386 | xmotd | 1.17.3b-5 | - +- i386 | xmoto | 0.5.10+dfsg-1 | - +- i386 | xmount | 0.5.0-2 | - +- i386 | xmountains | 2.9-2 | - +- i386 | xmp | 3.4.0-1.1 | - +- i386 | xmp-audacious | 3.4.0-1.1 | - +- i386 | xmpi | 2.2.3b8-13 | - +- i386 | xmpuzzles | 7.6.3-1+b1 | - +- i386 | xnbd-client | 0.1.0-pre-hg20-e75b93a47722-3 | - +- i386 | xnbd-server | 0.1.0-pre-hg20-e75b93a47722-3 | - +- i386 | xnec2c | 1:1.4-1 | - +- i386 | xnecview | 1.35-7.1 | - +- i386 | xnest | 2:1.12.4-6+deb7u2 | - +- i386 | xneur | 0.15.0-1.1 | - +- i386 | xneur-dbg | 0.15.0-1.1 | - +- i386 | xonix | 1.4-29 | - +- i386 | xoo | 0.8-1.1 | - +- i386 | xorg | 1:7.7+3~deb7u1 | - +- i386 | xorp | 1.8.5-1.1 | - +- i386 | xorriso | 1.2.2-2 | - +- i386 | xoscope | 2.0-3.2 | - +- i386 | xosd-bin | 2.2.14-2 | - +- i386 | xosview | 1.9.3-3 | - +- i386 | xotcl | 1.6.7-2 | - +- i386 | xotcl-dev | 1.6.7-2 | - +- i386 | xotcl-shells | 1.6.7-2 | - +- i386 | xournal | 0.4.6~pre20110721-1+b1 | - +- i386 | xpa-tools | 2.1.14-2 | - +- i386 | xpad | 4.1-1 | - +- i386 | xpaint | 2.9.1.4-3+b2 | - +- i386 | xpaint-dev | 2.9.1.4-3+b2 | - +- i386 | xpat2 | 1.07-18 | - +- i386 | xpdf | 3.03-10 | - +- i386 | xpenguins | 2.2-8 | - +- i386 | xphoon | 20000613+0-1 | - +- i386 | xpilot-ng-client-sdl | 1:4.7.3-1.4 | - +- i386 | xpilot-ng-client-x11 | 1:4.7.3-1.4 | - +- i386 | xpilot-ng-server | 1:4.7.3-1.4 | - +- i386 | xpilot-ng-utils | 1:4.7.3-1.4 | - +- i386 | xplanet | 1.2.1-4.1+b1 | - +- i386 | xplot | 1.19-9 | - +- i386 | xplot-xplot.org | 0.90.7.1-2 | - +- i386 | xpmutils | 1:3.5.10-1 | - +- i386 | xpp | 1.5-cvs20050828-1.2 | - +- i386 | xppaut | 6.11b+1.dfsg-1 | - +! i386 | xpra | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +- i386 | xprintidle | 0.2-5 | - +- i386 | xprobe | 0.3-1.1 | - +- i386 | xpuzzles | 7.6.3-1+b1 | - +- i386 | xqf | 1.0.5-2 | - +- i386 | xqilla | 2.3.0-1 | - +- i386 | xracer | 0.96.9.1-6 | - +- i386 | xrdp | 0.5.0-2 | - +- i386 | xresprobe | 0.4.23debian1-1 | - +- i386 | xrestop | 0.4-7 | - +- i386 | xringd | 1.20-25.2 | - +- i386 | xrootconsole | 1:0.6-2 | - +- i386 | xsane | 0.998-3+b1 | - +- i386 | xscavenger | 1.4.4-8 | - +- i386 | xscorch | 0.2.1-1 | - +- i386 | xscreensaver | 5.15-3 | - +- i386 | xscreensaver-data | 5.15-3 | - +- i386 | xscreensaver-data-extra | 5.15-3 | - +- i386 | xscreensaver-gl | 5.15-3 | - +- i386 | xscreensaver-gl-extra | 5.15-3 | - +- i386 | xscreensaver-screensaver-bsod | 5.15-3 | - +- i386 | xscreensaver-screensaver-webcollage | 5.15-3 | - +- i386 | xsdcxx | 3.3.0.1-1.3 | - +- i386 | xsel | 1.2.0-1 | - +- i386 | xsensors | 0.70-2 | - +- i386 | xserver-xephyr | 2:1.12.4-6+deb7u2 | - +- i386 | xserver-xfbdev | 2:1.12.4-6+deb7u2 | - +- i386 | xserver-xorg | 1:7.7+3~deb7u1 | - +- i386 | xserver-xorg-core | 2:1.12.4-6+deb7u2 | - +- i386 | xserver-xorg-core-dbg | 2:1.12.4-6+deb7u2 | - +- i386 | xserver-xorg-dev | 2:1.12.4-6+deb7u2 | - +- i386 | xserver-xorg-input-acecad | 1:1.5.0-1+b2 | - +- i386 | xserver-xorg-input-aiptek | 1:1.4.1-1+b2 | - +- i386 | xserver-xorg-input-all | 1:7.7+3~deb7u1 | - +- i386 | xserver-xorg-input-elographics | 1:1.4.1-1 | - +- i386 | xserver-xorg-input-evdev | 1:2.7.0-1+b1 | - +- i386 | xserver-xorg-input-joystick | 1:1.6.1-1+b1 | - +- i386 | xserver-xorg-input-kbd | 1:1.6.1-1+b1 | - +- i386 | xserver-xorg-input-mouse | 1:1.7.2-3 | - +- i386 | xserver-xorg-input-mtrack | 0.2.0-3 | - +- i386 | xserver-xorg-input-multitouch | 1.0~rc2+git20110312-2+b1 | - +- i386 | xserver-xorg-input-mutouch | 1:1.3.0-1+b2 | - +- i386 | xserver-xorg-input-synaptics | 1.6.2-2 | - +- i386 | xserver-xorg-input-vmmouse | 1:12.9.0-1 | - +- i386 | xserver-xorg-input-void | 1:1.4.0-1+b1 | - +- i386 | xserver-xorg-input-wacom | 0.15.0+20120515-2 | - +- i386 | xserver-xorg-video-all | 1:7.7+3~deb7u1 | - +- i386 | xserver-xorg-video-apm | 1:1.2.3-3 | - +- i386 | xserver-xorg-video-ark | 1:0.7.4-1+b1 | - +- i386 | xserver-xorg-video-ati | 1:6.14.4-8 | - +- i386 | xserver-xorg-video-ati-dbg | 1:6.14.4-8 | - +- i386 | xserver-xorg-video-chips | 1:1.2.4-2 | - +- i386 | xserver-xorg-video-cirrus | 1:1.4.0-2 | - +- i386 | xserver-xorg-video-dummy | 1:0.3.5-2+b1 | - +- i386 | xserver-xorg-video-fbdev | 1:0.4.2-4+b3 | - +- i386 | xserver-xorg-video-geode | 2.11.13-3 | - +- i386 | xserver-xorg-video-geode-dbg | 2.11.13-3 | - +- i386 | xserver-xorg-video-glamo | 0.0.0+20100630.git16af3c00-3.1 | - +- i386 | xserver-xorg-video-glide | 1.2.0-1+b1 | - +- i386 | xserver-xorg-video-glint | 1:1.2.7-1+b1 | - +- i386 | xserver-xorg-video-i128 | 1:1.3.5-1+b1 | - +- i386 | xserver-xorg-video-i740 | 1:1.3.2-4+b3 | - +- i386 | xserver-xorg-video-intel | 2:2.19.0-6 | - +- i386 | xserver-xorg-video-intel-dbg | 2:2.19.0-6 | - +- i386 | xserver-xorg-video-mach64 | 6.9.1-2 | - +- i386 | xserver-xorg-video-mach64-dbg | 6.9.1-2 | - +- i386 | xserver-xorg-video-mga | 1:1.5.0-3 | - +- i386 | xserver-xorg-video-modesetting | 0.3.0-1 | - +- i386 | xserver-xorg-video-modesetting-dbg | 0.3.0-1 | - +- i386 | xserver-xorg-video-neomagic | 1:1.2.6-1 | - +- i386 | xserver-xorg-video-nouveau | 1:1.0.1-5 | - +- i386 | xserver-xorg-video-nouveau-dbg | 1:1.0.1-5 | - ++ i386 | xserver-xorg-video-nvidia | - | 319.82-1~bpo70+1 ++ i386 | xserver-xorg-video-nvidia-legacy-173xx | - | 173.14.39-1~bpo70+1 ++ i386 | xserver-xorg-video-nvidia-legacy-304xx | - | 304.117-1~bpo70+1 ++ i386 | xserver-xorg-video-nvidia-legacy-96xx | - | 96.43.23-7~bpo70+1 +- i386 | xserver-xorg-video-openchrome | 1:0.2.906-2+deb7u1 | - +- i386 | xserver-xorg-video-openchrome-dbg | 1:0.2.906-2+deb7u1 | - +- i386 | xserver-xorg-video-qxl | 0.0.17-2+b1 | - +- i386 | xserver-xorg-video-qxl-dbg | 0.0.17-2+b1 | - +- i386 | xserver-xorg-video-r128 | 6.8.2-1 | - +- i386 | xserver-xorg-video-r128-dbg | 6.8.2-1 | - +- i386 | xserver-xorg-video-radeon | 1:6.14.4-8 | - +- i386 | xserver-xorg-video-radeon-dbg | 1:6.14.4-8 | - +- i386 | xserver-xorg-video-rendition | 1:4.2.4-3 | - +- i386 | xserver-xorg-video-s3 | 1:0.6.3-5 | - +- i386 | xserver-xorg-video-s3virge | 1:1.10.4-5 | - +- i386 | xserver-xorg-video-savage | 1:2.3.4-1 | - +- i386 | xserver-xorg-video-siliconmotion | 1:1.7.6-1 | - +- i386 | xserver-xorg-video-sis | 1:0.10.4-1 | - +- i386 | xserver-xorg-video-sisusb | 1:0.9.4-3 | - +- i386 | xserver-xorg-video-tdfx | 1:1.4.4-1 | - +- i386 | xserver-xorg-video-tga | 1:1.2.1-4+b3 | - +- i386 | xserver-xorg-video-trident | 1:1.3.5-1 | - +- i386 | xserver-xorg-video-tseng | 1:1.2.4-3 | - +- i386 | xserver-xorg-video-vesa | 1:2.3.1-1+b1 | - +- i386 | xserver-xorg-video-vmware | 1:12.0.2-1+b1 | - +- i386 | xserver-xorg-video-voodoo | 1:1.2.4-2+b3 | - +- i386 | xsettings-kde | 0.9-2 | - +- i386 | xshisen | 1:1.51-3.3 | - +- i386 | xshogi | 1.3.2-9 | - +- i386 | xskat | 4.0-5 | - +- i386 | xsltproc | 1.1.26-14.1 | - +- i386 | xsmc-calc | 1.0.0-6.1 | - +- i386 | xsok | 1.02-17 | - +- i386 | xsol | 0.31-9 | - +- i386 | xsoldier | 1:1.8-2 | - +- i386 | xstarfish | 1.1-11 | - +- i386 | xstow | 1.0.0-2 | - +- i386 | xsunpinyin | 2.0.3-4 | - +- i386 | xsynth-dssi | 0.9.4-2 | - +- i386 | xsysinfo | 1.7-9 | - +- i386 | xsystem35 | 1.7.3-pre5-5 | - +- i386 | xtables-addons-common | 1.42-2+b1 | - +- i386 | xtail | 2.1-5 | - +- i386 | xteddy | 2.2-2 | - +- i386 | xtel | 3.3.0-14 | - +- i386 | xtell | 2.10.7 | - +- i386 | xterm | 278-4 | - +- i386 | xtermcontrol | 2.10-1 | - +- i386 | xtermset | 0.5.2-5 | - +- i386 | xtide | 2.11-1 | - +- i386 | xtightvncviewer | 1.3.9-6.4 | - +- i386 | xtrace | 1.3.1-1 | - +- i386 | xtrkcad | 1:4.0.2-2+b1 | - +- i386 | xtrlock | 2.2 | - +- i386 | xtron | 1.1a-14 | - +- i386 | xttitle | 1.0-5 | - +- i386 | xtux | 0.2.030306-12 | - +- i386 | xtux-client | 0.2.030306-12 | - +- i386 | xtux-server | 0.2.030306-12 | - +- i386 | xtv | 1.1-12 | - +- i386 | xul-ext-zarafa-drag-n-drop | 1.2-1 | - +- i386 | xulrunner-10.0 | 10.0.12esr-1 | - +- i386 | xulrunner-10.0-dbg | 10.0.12esr-1 | - +- i386 | xulrunner-17.0 | 17.0.10esr-1~deb7u1 | - +- i386 | xulrunner-17.0-dbg | 17.0.10esr-1~deb7u1 | - +- i386 | xulrunner-dev | 17.0.10esr-1~deb7u1 | - +- i386 | xutils-dev | 1:7.7~1 | - +- i386 | xvfb | 2:1.12.4-6+deb7u2 | - +- i386 | xvier | 1.0-7.5 | - +- i386 | xview-clients | 3.2p1.4-28.1 | - +- i386 | xview-examples | 3.2p1.4-28.1 | - +- i386 | xviewg | 3.2p1.4-28.1 | - +- i386 | xviewg-dev | 3.2p1.4-28.1 | - +- i386 | xvile | 9.8g-2 | - +- i386 | xvkbd | 3.0-1 | - +- i386 | xvnc4viewer | 4.1.1+X4.3.0-37.1 | - +- i386 | xvt | 2.1-20.1 | - +- i386 | xwatch | 2.11-15 | - +- i386 | xwax | 0.9-2 | - +- i386 | xwelltris | 1.0.1-14 | - +- i386 | xwit | 3.4-14 | - +- i386 | xwpe | 1.5.30a-2.1 | - +- i386 | xwrits | 2.21-6.1 | - +- i386 | xxgdb | 1.12-17 | - +- i386 | xxkb | 1.11-2.1 | - +- i386 | xxxterm | 1:1.11.3-1 | - +- i386 | xye | 0.12.1+dfsg-4 | - +- i386 | xymon | 4.3.0~beta2.dfsg-9.1 | - +- i386 | xymon-client | 4.3.0~beta2.dfsg-9.1 | - +- i386 | xyscan | 3.31-3 | - +- i386 | xz-utils | 5.1.1alpha+20120614-2 | - +- i386 | xzdec | 5.1.1alpha+20120614-2 | - +- i386 | xzgv | 0.9+svn40-1 | - +- i386 | xzip | 1:1.8.2-3 | - +- i386 | xzoom | 0.3-23 | - +- i386 | yabause-gtk | 0.9.11.1-1 | - +- i386 | yabause-qt | 0.9.11.1-1 | - +- i386 | yacas | 1.3.2-1 | - +- i386 | yacpi | 3.0-2 | - +! i386 | yade | 0.80.1-2 | 1.05.0-2~bpo70+1 +- i386 | yafaray | 0.1.2+really0.1.2~beta5-2 | - +- i386 | yafc | 1.1.3-2 | - +! i386 | yagf | 0.9.1-3 | 0.9.2.1-1~bpo70+1 +- i386 | yagiuda | 1.19-8 | - +- i386 | yajl-tools | 2.0.4-2 | - +- i386 | yakuake | 2.9.8-1 | - +- i386 | yamdi | 1.4-2 | - +- i386 | yap | 5.1.3-6 | - +- i386 | yapet | 0.8~pre2-2 | - ++ i386 | yara | - | 2.0.0-2~bpo70+1 +- i386 | yardradius | 1.1.2-4 | - +- i386 | yash | 2.30-2 | - +- i386 | yaskkserv | 0.5.2-3 | - +- i386 | yasm | 1.1.0-1 | - +- i386 | yasnippet | 0.6.1c-1 | - +- i386 | yasr | 0.6.9-3 | - +- i386 | yate | 4.1.0-1~dfsg-3 | - +- i386 | yate-alsa | 4.1.0-1~dfsg-3 | - +- i386 | yate-core | 4.1.0-1~dfsg-3 | - +- i386 | yate-dahdi | 4.1.0-1~dfsg-3 | - +- i386 | yate-dev | 4.1.0-1~dfsg-3 | - +- i386 | yate-mysql | 4.1.0-1~dfsg-3 | - +- i386 | yate-pgsql | 4.1.0-1~dfsg-3 | - +- i386 | yate-qt4 | 4.1.0-1~dfsg-3 | - +- i386 | yate-scripts | 4.1.0-1~dfsg-3 | - +- i386 | yate-sctp | 4.1.0-1~dfsg-3 | - +- i386 | yatm | 0.6-1+b2 | - +- i386 | yauap | 0.2.4-3 | - +- i386 | yauap-dbg | 0.2.4-3 | - +- i386 | yaz | 4.2.30-2 | - +- i386 | yaz-icu | 4.2.30-2 | - +- i386 | yaz-illclient | 4.2.30-2 | - +- i386 | yc-el | 5.0.0-1 | - +- i386 | yeahconsole | 0.3.4-2.1 | - +- i386 | yelp | 3.4.2-1+b1 | - +- i386 | yersinia | 0.7.1-1.1 | - +- i386 | yesod | 1.0.1.6-2+b3 | - +- i386 | yforth | 0.1beta-23 | - +- i386 | ygraph | 0.16~cvs20090218-1.1+b1 | - +- i386 | yics | 0.1.2-3 | - +- i386 | yiyantang | 0.7.0-3.1 | - +- i386 | yodl | 3.00.0-6 | - +- i386 | yorick | 2.2.02+dfsg-6 | - +- i386 | yorick-av | 0.0.1-2 | - +- i386 | yorick-curses | 0.1-6 | - +- i386 | yorick-dbg | 2.2.02+dfsg-6 | - +- i386 | yorick-dev | 2.2.02+dfsg-6 | - +- i386 | yorick-full | 2.2.02+dfsg-6 | - +- i386 | yorick-gl | 1.1+cvs20070922+dfsg-6 | - ++ i386 | yorick-gy | - | 0.0.5-1~bpo70+1 +! i386 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +- i386 | yorick-hdf5 | 0.8.0-4 | - +- i386 | yorick-imutil | 0.5.7-3 | - +- i386 | yorick-ml4 | 0.6.0-3 | - +- i386 | yorick-mpeg | 0.1-2 | - +- i386 | yorick-mpy-mpich2 | 2.2.02+dfsg-6 | - +- i386 | yorick-mpy-openmpi | 2.2.02+dfsg-6 | - +- i386 | yorick-optimpack | 1.3.2+dfsg-1 | - +- i386 | yorick-soy | 1.4.0-3 | - +- i386 | yorick-svipc | 0.14-2 | - +- i386 | yorick-yao | 4.9.1-2 | - +- i386 | yorick-yeti | 6.3.2-3 | - +- i386 | yorick-yeti-fftw | 6.3.2-3 | - +- i386 | yorick-yeti-gsl | 6.3.2-3 | - +- i386 | yorick-yeti-regex | 6.3.2-3 | - +- i386 | yorick-yeti-tiff | 6.3.2-3 | - ++ i386 | yorick-ygsl | - | 1.1.1-1~bpo70+1 +- i386 | yorick-z | 1.2.0+cvs20080115-5 | - +- i386 | yoshimi | 0.060.12-2 | - +- i386 | yoshimi-dbg | 0.060.12-2 | - +- i386 | ytalk | 3.3.0-5 | - +- i386 | ytree | 1.94-1.1 | - +- i386 | yubikey-personalization | 1.7.0-1 | - +- i386 | yubikey-personalization-gui | 3.0.6-1 | - +- i386 | yubikey-server-c | 0.5-1+b1 | - +- i386 | yubiserver | 0.2-2 | - +- i386 | yudit | 2.8.1-4 | - +- i386 | z80asm | 1.8-1 | - +- i386 | z80dasm | 1.1.3-1 | - +- i386 | z8530-utils2 | 3.0-1-6.1 | - +- i386 | z88 | 13.0.0+dfsg2-3 | - +- i386 | z88dk | 1.8.ds1-10 | - +- i386 | z88dk-bin | 1.8.ds1-10 | - ++ i386 | zabbix-agent | - | 1:2.0.9+dfsg-1~bpo70+2 ++ i386 | zabbix-proxy-mysql | - | 1:2.0.9+dfsg-1~bpo70+2 ++ i386 | zabbix-proxy-pgsql | - | 1:2.0.9+dfsg-1~bpo70+2 ++ i386 | zabbix-proxy-sqlite3 | - | 1:2.0.9+dfsg-1~bpo70+2 ++ i386 | zabbix-server-mysql | - | 1:2.0.9+dfsg-1~bpo70+2 ++ i386 | zabbix-server-pgsql | - | 1:2.0.9+dfsg-1~bpo70+2 +- i386 | zanshin | 0.2.1-1+b1 | - +- i386 | zapping | 0.10~cvs6-8 | - +- i386 | zapping-dbg | 0.10~cvs6-8 | - +- i386 | zatacka | 0.1.8-2 | - +- i386 | zathura | 0.1.2-4 | - +- i386 | zathura-djvu | 0.1-1 | - +- i386 | zathura-ps | 0.1-1 | - +- i386 | zaz | 1.0.0~dfsg1-1 | - +- i386 | zaz-dbg | 1.0.0~dfsg1-1 | - +- i386 | zbar-dbg | 0.10+doc-8 | - +- i386 | zbar-tools | 0.10+doc-8 | - +- i386 | zeitgeist-core | 0.9.0.1-1 | - +- i386 | zeitgeist-datahub | 0.8.2-1 | - +- i386 | zenity | 3.4.0-2 | - +- i386 | zenmap | 6.00-0.3+deb7u1 | - +- i386 | zephyr-clients | 3.0.2-2 | - +- i386 | zephyr-server | 3.0.2-2 | - +- i386 | zephyr-server-krb5 | 3.0.2-2 | - +- i386 | zerofree | 1.0.2-1 | - +- i386 | zfs-fuse | 0.7.0-8 | - +- i386 | zftp | 20061220+dfsg3-2 | - +- i386 | zgv | 5.9-4+b1 | - +- i386 | zh-autoconvert | 0.3.16-3 | - +- i386 | zhcon | 1:0.2.6-10 | - +- i386 | zile | 2.3.21-1 | - +- i386 | zimpl | 3.2.0+dfsg-2 | - +- i386 | zinnia-utils | 0.06-1+b1 | - +- i386 | zip | 3.0-6 | - +- i386 | zipcmp | 0.10.1-1.1 | - +- i386 | zipmerge | 0.10.1-1.1 | - +- i386 | zipper.app | 1.3-2.1 | - +- i386 | ziproxy | 3.2.0-2 | - +- i386 | ziptorrent | 0.10.1-1.1 | - +- i386 | zita-ajbridge | 0.2.2-1 | - +- i386 | zita-alsa-pcmi-utils | 0.2.0-1 | - +- i386 | zita-at1 | 0.2.3-2 | - +- i386 | zita-lrx | 0.1.0-1 | - +- i386 | zita-resampler | 1.1.0-3 | - +- i386 | zita-resampler-dbg | 1.1.0-3 | - +- i386 | zita-rev1 | 0.2.1-2 | - +- i386 | zivot | 20013101-3+b1 | - +- i386 | zlib-bin | 1:1.2.7.dfsg-13 | - +- i386 | zlib-gst | 3.2.4-2 | - +- i386 | zlib1g | 1:1.2.7.dfsg-13 | - +- i386 | zlib1g-dbg | 1:1.2.7.dfsg-13 | - +- i386 | zlib1g-dev | 1:1.2.7.dfsg-13 | - +- i386 | zlibc | 0.9k-4.1 | - +- i386 | zmakebas | 1.2-1.1 | - +- i386 | znc | 0.206-2 | - +- i386 | znc-dbg | 0.206-2 | - +- i386 | znc-dev | 0.206-2 | - +- i386 | znc-extra | 0.206-2 | - +- i386 | znc-perl | 0.206-2 | - +- i386 | znc-python | 0.206-2 | - +- i386 | znc-tcl | 0.206-2 | - +- i386 | zoem | 11-166-1 | - +- i386 | zomg | 0.5.14-2 | - +- i386 | zoneminder | 1.25.0-4 | - +- i386 | zoo | 2.10-27 | - +- i386 | zookeeper-bin | 3.3.5+dfsg1-2 | - +- i386 | zope2.12 | 2.12.26-1 | - +- i386 | zorp | 3.9.5-4 | - +- i386 | zorp-dbg | 3.9.5-4 | - +- i386 | zorp-modules | 3.9.5-4 | - +- i386 | zorp-modules-dbg | 3.9.5-4 | - +- i386 | zp | 1.0-1 | - +- i386 | zpaq | 1.10-1 | - +- i386 | zpspell | 0.4.3-4.1 | - +- i386 | zsh | 4.3.17-1 | - +- i386 | zsh-beta | 4.3.17-dev-0+20120621-1 | - +- i386 | zsh-dbg | 4.3.17-1 | - +- i386 | zsh-dev | 4.3.17-1 | - +- i386 | zsh-static | 4.3.17-1 | - +- i386 | zsnes | 1.510+bz2-5 | - +- i386 | zssh | 1.5c.debian.1-3.1 | - +- i386 | zsync | 0.6.2-1 | - +- i386 | zutils | 0.9-6 | - +- i386 | zutils-dbg | 0.9-6 | - +- i386 | zvbi | 0.2.33-6 | - +- i386 | zynadd | 1+git.20100609+dfsg0-2 | - +- i386 | zynaddsubfx | 2.4.0-2 | - +- i386 | zynjacku | 6-4 | - +- i386 | zziplib-bin | 0.13.56-1.1 | - +- i386 | zzuf | 0.13.svn20100215-4 | - diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot3Test_gold new file mode 100644 index 00000000..348060dc --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot3Test_gold @@ -0,0 +1,1866 @@ + Arch | Package | Version in A | Version in B +! all | 0ad-data | 0~r11863-1 | 0.0.14-1~bpo70+1 +! all | amarok-common | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! all | amarok-doc | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! all | asterisk-config | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | asterisk-dev | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | asterisk-doc | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | autopoint | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | bluefish-data | 2.2.3-4 | 2.2.5-3~bpo70+1 +! all | boinc | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! all | calibre | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +! all | check-mk-doc | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! all | clamav-unofficial-sigs | 3.7.1-3 | 3.7.2-1~bpo70+1 +! all | claws-mail-doc | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-extra-plugins | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-i18n | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-plugins | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-tools | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | clawsker | 0.7.8-1 | 0.7.10-1~bpo70+1 +! all | cmake-data | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! all | cmake-doc | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! all | codeblocks-common | 10.05-2.1 | 13.12-1~bpo70+1 +! all | config-package-dev | 4.13 | 5.1.1~bpo70+1 +! all | createrepo | 0.4.11-1 | 0.9.9-1~bpo7+1 +! all | cucumber | 1.0.2-2 | 1.3.8-1~bpo70+1 +! all | debootstrap | 1.0.48+deb7u1 | 1.0.55~bpo70+1 +! all | drupal7 | 7.14-2+deb7u2 | 7.26-1~bpo70+1 +! all | eiskaltdcpp | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-common | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-emoticons | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-gtk-data | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-qt-data | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-scripts | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-sounds | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | erlang | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-doc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-examples | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-ic-java | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-jinterface | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-manpages | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-mode | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-nox | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-src | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-x11 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | exaile | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-contextinfo | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-ipod | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-moodbar | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | facter | 1.6.10-1 | 1.7.0-1~bpo70+1 +! all | fcitx | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-config-common | 0.4.4-1 | 0.4.7-1~bpo70+1 +! all | fcitx-data | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-frontend-all | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-table-all | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fdpowermon | 1.5 | 1.11~bpo70+1 +! all | fdpowermon-icons | 1.5 | 1.11~bpo70+1 +! all | finch-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | fonts-opensymbol | 2:102.2+LibO3.5.4+dfsg2-0+deb7u2 | 2:102.3+LibO4.1.4-2~bpo70+1 +! all | freeciv-data | 2.3.2-1 | 2.4.2-1~bpo70+1 +! all | freeciv-sound-standard | 2.3.2-1 | 2.4.2-1~bpo70+1 +! all | ganeti-instance-debootstrap | 0.11-1 | 0.14-1~bpo70+1 +! all | ganeti2 | 2.5.2-1 | 2.9.4-1~bpo70+1 +! all | geoip-database | 20130213-1 | 20131007-1~bpo70+1 +! all | gettext-doc | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | gettext-el | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | git-all | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-arch | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-buildpackage | 0.6.0~git20120601 | 0.6.1~bpo70+1 +! all | git-core | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-cvs | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-daemon-run | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-daemon-sysvinit | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-doc | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-el | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-email | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-gui | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-man | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-svn | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | gitk | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | gitweb | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | gnash-common-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnash-doc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnash-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnuplot | 4.6.0-8 | 4.6.4-1~bpo70+1 +! all | gnuplot-doc | 4.6.0-8 | 4.6.4-1~bpo70+1 +! all | gnuradio-doc | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! all | gyoto-doc | 0.0.3-5 | 0.1.0-2~bpo70+1 +! all | gyp | 0.1~svn1395-1 | 0.1~svn1729-3~bpo7+1 +! all | hapolicy | 1.32-2 | 1.35-1~bpo70+1 +! all | hedgewars-data | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +! all | hgview | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hgview-common | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hgview-curses | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hugin-data | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! all | ibus-doc | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! all | ibus-googlepinyin | 0.1.1+hg20111212-1 | 0.1.2-1~bpo70+1 +! all | ibus-table | 1.3.9.20110827-2 | 1.5.0.is.1.4.99.1-1~bpo70+1 +! all | icinga-common | 1.7.1-6 | 1.9.3-2~bpo70+1 +! all | icinga-doc | 1.7.1-6 | 1.9.3-2~bpo70+1 +! all | icinga-web | 1.7.1+dfsg2-6 | 1.9.2+dfsg1-1~bpo70+1 +! all | icinga-web-pnp | 1.7.1+dfsg2-6 | 1.9.2+dfsg1-1~bpo70+1 +! all | ikiwiki | 3.20120629 | 3.20130904.1~bpo70+1 +! all | initramfs-tools | 0.109.1 | 0.115~bpo70+1 +! all | joe-jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +! all | klash-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | libaqbanking-data | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! all | libaqbanking-doc | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! all | libeigen3-doc | 3.1.0-1 | 3.2.0-6~bpo70+1 +! all | libfm-data | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +! all | libghc-gnutls-doc | 0.1.2-1 | 0.1.4-3~bpo70+1 +! all | libghc-network-protocol-xmpp-doc | 0.4.3-1 | 0.4.4-2~bpo70+1 +! all | libgwenhywfar-data | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! all | libgwenhywfar-doc | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! all | libhtml-rewriteattributes-perl | 0.04-1 | 0.05-1~bpo70+1 +! all | libjs-jquery-ui | 1.8.ooops.21+dfsg-2 | 1.10.1+dfsg-1~bpo70+1 +! all | libjs-jquery-ui-docs | 1.8.ooops.21+dfsg-2 | 1.10.1+dfsg-1~bpo70+1 +! all | libjs-mathjax | 1.1-2 | 2.2-1~bpo70+1 +! all | libmojolicious-perl | 2.98+dfsg-2 | 3.97+dfsg-1~bpo70+1 +! all | libopus-doc | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! all | libpod-simple-perl | 3.22-1 | 3.26-1~bpo70+1 +! all | libpurple-bin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | libpurple-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | libqxmpp-doc | 0.4.92-1 | 0.7.6-1~bpo70+1 +! all | libreoffice-common | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-dev-doc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-emailmerge | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ca | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-cs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-da | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-de | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-dz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-el | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-en-gb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-en-us | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-es | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-et | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-eu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-fi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-fr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-gl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-hi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-hu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-it | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ja | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-km | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ko | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-nl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-om | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pt-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ru | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-zh-cn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-zh-tw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-java-common | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-af | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ar | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-as | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ast | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-be | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ca | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-cs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-cy | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-da | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-de | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-dz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-el | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-en-gb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-en-za | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-eo | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-es | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-et | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-eu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fa | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ga | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-gl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-gu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-he | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-id | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-in | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-is | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-it | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ja | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ka | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-km | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ko | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ku | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-lt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-lv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ml | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ne | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nso | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-oc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-om | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-or | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pa-in | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pt-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ro | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ru | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-rw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-si | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ss | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-st | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ta | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-te | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-th | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ts | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ug | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-uk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-uz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ve | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-vi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-xh | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-za | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zh-cn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zh-tw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-report-builder | 1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-bsh | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-js | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-python | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-crystal | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-galaxy | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-hicontrast | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-oxygen | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-tango | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-wiki-publisher | 1.1.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.1.2+LibO4.1.4-2~bpo70+1 +! all | libsaml2-doc | 2.4.3-4 | 2.5.3-2~bpo70+1 +! all | libspice-protocol-dev | 0.10.1-1 | 0.12.6-1~bpo70+2 +! all | libsunflow-java | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | libsunflow-java-doc | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | libtag1-doc | 1.7.2-1 | 1.9.1-2~bpo70+1 +! all | libtest-tcp-perl | 1.15-1 | 2.00-1~bpo70+1 +! all | libvirt-doc | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! all | libwireshark-data | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! all | libxmltooling-doc | 1.4.2-5 | 1.5.3-2~bpo70+1 +! all | liferea-data | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! all | lintian | 2.5.10.4 | 2.5.21~bpo70+1 +! all | linux-doc | 3.2+46 | 3.12+55~bpo70+1 +! all | linux-source | 3.2+46 | 3.12+55~bpo70+1 +! all | linux-tools | 3.2+46 | 3.12+55~bpo70+1 +! all | mercurial-common | 2.2.2-3 | 2.8.2-1~bpo70+1 +! all | module-assistant | 0.11.4 | 0.11.6~bpo70+1 +! all | mozilla-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | munin | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-async | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-common | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-doc | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-node | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-core | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-extra | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-java | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | nagios-plugins | 1.4.16-1 | 1.5-1~bpo70+1 +! all | nagios3-common | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! all | nagios3-doc | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! all | nginx | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-common | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-doc | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-naxsi-ui | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | notmuch-emacs | 0.13.2-1 | 0.16-1~bpo70+1 +! all | notmuch-mutt | 0.13.2-1 | 0.16-1~bpo70+1 +! all | notmuch-vim | 0.13.2-1 | 0.16-1~bpo70+1 +! all | open-axiom-databases | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-graphics-data | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-hypertex-data | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-source | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-test | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-tex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | openafs-doc | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openafs-modules-dkms | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openafs-modules-source | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openbios-ppc | 1.0+svn1060-1 | 1.1+svn1229-1~bpo70+2 +! all | openbios-sparc | 1.0+svn1060-1 | 1.1+svn1229-1~bpo70+2 +! all | opencl-headers | 1.2-2012.04.18a-1 | 1.2-2013.06.28-2~bpo70+1 +! all | openoffice.org-dtd-officedocument1.0 | 2:1.0+LibO3.5.4+dfsg2-0+deb7u2 | 2:1.0+LibO4.1.4-2~bpo70+1 +! all | openrocket | 12.03-1 | 13.11.1~bpo60+1 +! all | opensaml2-schemas | 2.4.3-4 | 2.5.3-2~bpo70+1 +! all | org-mode | 7.8.11-1 | 8.0.7-2~bpo70+1 +! all | otrs | 3.1.7+dfsg1-8+deb7u3 | 3.2.11-1~bpo70+1 +! all | otrs2 | 3.1.7+dfsg1-8+deb7u3 | 3.2.11-1~bpo70+1 +! all | paraview-doc | 3.14.1-6 | 4.0.1-1~bpo70+1 +! all | pari-doc | 2.5.1-2 | 2.5.5-1~bpo70+1 +! all | pdksh | 40.9.20120630-7 | 49-2~bpo70+1 +! all | pidgin-data | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | pidgin-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | piuparts | 0.45 | 0.56~bpo70+1 +! all | piuparts-common | 0.45 | 0.56~bpo70+1 +! all | piuparts-master | 0.45 | 0.56~bpo70+1 +! all | piuparts-slave | 0.45 | 0.56~bpo70+1 +! all | pkg-php-tools | 0.8 | 1.9~bpo70+1 +! all | plt-scheme | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | plt-scheme-doc | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | pokerth-data | 0.9.5-1 | 1.0.1-2~bpo70+1 +! all | postfwd | 1.32-2 | 1.35-1~bpo70+1 +! all | psi-plus-common | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | psi-plus-skins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | psi-plus-sounds | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | python-cssselect | 0.6.1-1 | 0.9.1-1~bpo70+1 +! all | python-debian | 0.1.21 | 0.1.21+nmu2~bpo70+1 +! all | python-django | 1.4.5-1+deb7u4 | 1.5.2-1~bpo70+1 +! all | python-django-doc | 1.4.5-1+deb7u4 | 1.5.2-1~bpo70+1 +! all | python-django-nose | 1.1-1 | 1.2-1~bpo70+1 +! all | python-ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! all | python-jsonschema | 0.2-1 | 2.0.0-1~bpo70+1 +! all | python-lxml-doc | 2.3.2-1 | 3.3.1-1~bpo70+1 +! all | python-notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +! all | python-pygments | 1.5+dfsg-1 | 1.6+dfsg-1~bpo70+1 +! all | python-pymtp | 0.0.4-4 | 0.0.6-1~bpo70+1 +! all | python-requests | 0.12.1-1 | 2.0.0-1~bpo70+1 +! all | python-twisted | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | python-twisted-core | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | python-urllib3 | 1.3-3 | 1.7.1-1~bpo70+1 +! all | python3-pygments | 1.5+dfsg-1 | 1.6+dfsg-1~bpo70+1 +! all | python3-requests | 0.12.1-1 | 2.0.0-1~bpo70+1 +! all | python3-urllib3 | 1.3-3 | 1.7.1-1~bpo70+1 +! all | qemu-keymaps | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! all | racket-common | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | racket-doc | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | redmine | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-mysql | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-pgsql | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-sqlite | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | request-tracker4 | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | roundcube | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-core | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-mysql | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-pgsql | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-plugins | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-plugins-extra | 0.7-20120110 | 0.9.2-20130819~bpo70+1 +! all | rsyslog-doc | 5.8.11-3 | 7.4.4-1~bpo70+1 +! all | rt4-apache2 | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-clients | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-mysql | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-postgresql | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-sqlite | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-fcgi | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | ruby-gettext | 2.2.1-3 | 3.0.2-2~bpo70+1 +! all | ruby-haml | 3.1.6-1 | 4.0.3-3~bpo70+1 +! all | ruby-i18n | 0.6.0-3+deb7u1 | 0.6.9-1~bpo70+1 +! all | ruby-multi-json | 1.3.6-1 | 1.8.0-1~bpo70+1 +! all | ruby-passenger-doc | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! all | ruby-rack-protection | 1.2.0-1 | 1.5.0-2~bpo70+1 +! all | ruby-rspec | 2.10.0-2 | 2.14.1-1~bpo70+1 +! all | ruby-rspec-core | 2.10.1-2 | 2.14.5-1~bpo70+1 +! all | ruby-rspec-expectations | 2.10.0-2 | 2.14.2-1~bpo70+1 +! all | ruby-rspec-mocks | 2.10.1-2 | 2.14.3-1~bpo70+1 +! all | ruby-sinatra | 1.3.2-2 | 1.4.3-1~bpo70+1 +! all | ruby-test-unit | 2.5.0-2 | 2.5.5-1~bpo70+1 +! all | ruby-tilt | 1.3.3-2 | 1.4.1-1~bpo70+1 +! all | samba-common | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! all | samba-doc | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! all | seabios | 1.7.0-1 | 1.7.3-3~bpo70+1 +! all | sogo-common | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! all | ssh | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! all | ssh-krb5 | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! all | strongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! all | sumo-doc | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! all | sumo-tools | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! all | sunflow | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | supertuxkart-data | 0.7.3-2 | 0.8.1-2~bpo70+1 +! all | sweethome3d | 3.5+dfsg-1 | 4.3+dfsg-1~bpo70+1 +! all | swfdec-gnome | 1:0.8.11~git20120629-1+deb7u1 | 1:0.8.11~git20140121+dfsg-1~bpo70+1 +! all | swfdec-mozilla | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | trac | 0.12.5-3~deb7u1 | 1.0.1-2~bpo70+1 +! all | twisted-doc | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | twittering-mode | 2.0.0+git20120325-1 | 3.0.0-1~bpo70+1 +! all | unknown-horizons | 2012.1+dfsg1-1 | 2013.2+ds1-2~bpo70+1 +! all | vcsh | 1.0-1 | 1.20131214-1~bpo70+1 +! all | virtualbox-dkms | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-guest-dkms | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-guest-source | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-source | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | vlc-data | 2.0.3-5 | 2.1.2-2~bpo70+2 +! all | weechat | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | weechat-dev | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | weechat-doc | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | wesnoth | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10 | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-aoi | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-data | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-did | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-dm | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-dw | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-ei | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-httt | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-l | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-low | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-music | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-nr | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-sof | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-sotbe | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-thot | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-tools | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-trow | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-tsg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-ttb | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-utbs | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-music | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wireshark-doc | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! all | xapian-doc | 1.2.12-2 | 1.2.16-2~bpo70+1 +! all | xbmc | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-common | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-dev | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-j2me | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-ps3 | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-xbmc-send | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xmltooling-schemas | 1.4.2-5 | 1.5.3-2~bpo70+1 +! all | xul-ext-noscript | 2.1.4-1 | 2.6.8.4-1~bpo70+1 +! all | yade-doc | 0.80.1-2 | 1.05.0-2~bpo70+1 +! all | yum | 3.2.25-2 | 3.4.3-2~bpo7+1 +! amd64 | 0ad | 0~r11863-2 | 0.0.14-3~bpo70+2 +! amd64 | 0ad-dbg | 0~r11863-2 | 0.0.14-3~bpo70+2 +! amd64 | amarok | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amarok-dbg | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amarok-utils | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | apt-cacher-ng | 0.7.11-1 | 0.7.25-1~bpo70+1 +! amd64 | aqbanking-tools | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | asterisk | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-dahdi | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-dbg | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mobile | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-modules | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mp3 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mysql | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-ooh323 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail-imapstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail-odbcstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | bip | 0.8.8-2 | 0.8.9-1~bpo70+1 +! amd64 | bird | 1.3.7-1 | 1.4.0-1~bpo70+1 +! amd64 | bird-dbg | 1.3.7-1 | 1.4.0-1~bpo70+1 +! amd64 | bluefish | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | bluefish-dbg | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | bluefish-plugins | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | blueman | 1.23-1 | 1.23-git201312311147-1~bpo70+1 +! amd64 | boinc-client | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | boinc-dbg | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | boinc-manager | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | browser-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | bti | 032-1 | 034-1~bpo70+1 +! amd64 | bup | 0.25~git2011.11.04-5.1 | 0.25-1~bpo70+1 +! amd64 | calibre-bin | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +! amd64 | check-mk-agent | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-agent-logwatch | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-config-icinga | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-config-nagios3 | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-livestatus | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-multisite | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-server | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | claws-mail | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-acpi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-address-keeper | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-archiver-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-attach-remover | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-attach-warner | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-bogofilter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-bsfilter-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-clamd-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-dbg | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-fancy-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-feeds-reader | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-fetchinfo-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-gdata-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-mailmbox-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-multi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-newmail-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-perl-filter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-pgpinline | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-pgpmime | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-python-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-smime-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-spam-report | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-spamassassin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-tnef-parser | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-vcalendar-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | cmake | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-curses-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-dbg | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-qt-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | codeblocks | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-contrib | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-contrib-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | cowbuilder | 0.70 | 0.73~bpo7+1 +! amd64 | cowdancer | 0.70 | 0.73~bpo7+1 +! amd64 | cython | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! amd64 | cython-dbg | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! amd64 | darktable | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! amd64 | darktable-dbg | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! amd64 | deets | 0.1.3-1 | 0.2-3~bpo70+1 +! amd64 | desktop-file-utils | 0.20-0.1 | 0.21-1~bpo70+1 +! amd64 | devilspie2 | 0.20-1 | 0.32-1~bpo70+1 +! amd64 | devscripts | 2.12.6+deb7u2 | 2.13.4~bpo70+1 +! amd64 | dovecot-antispam | 2.0+20120225-3 | 2.0+20130822-2~bpo70+1 +! amd64 | dovecot-core | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-dbg | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-dev | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-gssapi | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-imapd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-ldap | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-lmtpd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-managesieved | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-mysql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-pgsql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-pop3d | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-sieve | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-solr | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-sqlite | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | drbd8-utils | 2:8.3.13-2 | 2:8.4.4-1~bpo70+1 +! amd64 | eiskaltdcpp-daemon | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-daemon-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-gtk | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-gtk-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-qt | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-qt-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | erlang-appmon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-asn1 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-base | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-base-hipe | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-common-test | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-corba | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-crypto | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-debugger | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-dev | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-dialyzer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-diameter | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-edoc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-eldap | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-erl-docgen | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-et | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-eunit | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-gs | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ic | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-inets | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-megaco | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-mnesia | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-observer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-odbc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-os-mon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-parsetools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-percept | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-pman | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-public-key | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-reltool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-runtime-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-snmp | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ssh | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ssl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-syntax-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-test-server | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-toolbar | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-tv | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-typer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-webtool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-wx | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-xmerl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | esniper | 2.27.0-1 | 2.28.0-1~bpo70+1 +! amd64 | evilwm | 1.0.0-1 | 1.1.0-3~bpo70+1 +! amd64 | exfat-fuse | 0.9.7-2 | 1.0.1-1~bpo70+1 +! amd64 | exfat-utils | 0.9.7-2 | 1.0.1-1~bpo70+1 +! amd64 | fcitx-bin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-config-gtk | 0.4.4-1 | 0.4.7-1~bpo70+1 +! amd64 | fcitx-config-gtk2 | 0.4.4-1 | 0.4.7-1~bpo70+1 +! amd64 | fcitx-dbg | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-gtk2 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-gtk3 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-qt4 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-googlepinyin | 0.1.5-2 | 0.1.6-1~bpo70+1 +! amd64 | fcitx-libs | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-libs-dev | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-cloudpinyin | 0.2.2-1+deb7u1 | 0.3.3-1~bpo70+1 +! amd64 | fcitx-module-dbus | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-kimpanel | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-lua | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-x11 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-modules | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-pinyin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-qw | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-amharic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-arabic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-array30 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-array30-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-bingchan | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-boshiamy | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-cangjie-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cantonese | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cantonhk | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cns11643 | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-compose | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-dianbaoma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-easy-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-emoji | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-erbi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-ipa-x-sampa | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-jyutping | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-latex | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-malayalam-phonetic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-quick-classic | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-quick3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-quick5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-rustrad | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-scj6 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-stroke5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-tamil-remington | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-thai | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-translit | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-translit-ua | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-viqr | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-wanfeng | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wbpy | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wu | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-wubi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wubi-large | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-yawerty | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-zhengma | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-ziranma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-tools | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-ui-classic | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | file | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | finch | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | florence | 0.5.1-1 | 0.6.0-2~bpo70+1 +! amd64 | fluxbox | 1.3.2-4 | 1.3.5-1~bpo70+1 +! amd64 | freeciv-client-extras | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-gtk | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-sdl | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-xaw3d | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-server | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | fvwm | 1:2.5.30.ds-1.1 | 1:2.6.5.ds-3~bpo70+1 +! amd64 | fwknop-client | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! amd64 | fwknop-server | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! amd64 | ganeti-htools | 2.5.2-1 | 2.9.4-1~bpo70+1 +! amd64 | geoip-bin | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | gettext | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | gettext-base | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | gir1.2-fcitx-1.0 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | gir1.2-ibus-1.0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | git | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! amd64 | git-annex | 3.20120629 | 5.20140210~bpo70+2 +! amd64 | gitg | 0.2.4-1.1+deb7u1 | 0.2.7-1~bpo70+1 +! amd64 | gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-common | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-cygnal | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-dbg | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-dev | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-fileio | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-lirc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-mysql | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-tools | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnome-panel-control | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | gnuplot-nox | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuplot-qt | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuplot-x11 | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuradio | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | gnuradio-dev | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | gnutls-bin | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! amd64 | gpsd | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | gpsd-clients | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | gpsd-dbg | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | guile-gnutls | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! amd64 | gwenhywfar-tools | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! amd64 | gyoto-dbg | 0.0.3-5 | 0.1.0-2~bpo70+1 +! amd64 | haveged | 1.4-4 | 1.7b-2~bpo70+1 +! amd64 | hedgewars | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +! amd64 | herbstluftwm | 0.3-1 | 0.5.3-1~bpo70+1 +! amd64 | hugin | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! amd64 | hugin-tools | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! amd64 | i3 | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3-wm | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3-wm-dbg | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3status | 2.5.1-1 | 2.8-1~bpo70+1 +! amd64 | ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | ibus-gtk | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | ibus-gtk3 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | icinga | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-cgi | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-core | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-dbg | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-idoutils | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | irqbalance | 1.0.3-3 | 1.0.6-2~bpo70+1 +! amd64 | italc-client | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! amd64 | italc-master | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! amd64 | jd | 1:2.8.5~beta120206-3 | 1:2.8.7-140104-1~bpo70+1 +! amd64 | jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +! amd64 | kbuild | 1:0.1.9998svn2543+dfsg-1 | 1:0.1.9998svn2577+dfsg-3~bpo70+1 +! amd64 | kde-config-gtk-style | 3:2.1-1 | 3:2.2.1-1~bpo70+1 +! amd64 | kexec-tools | 1:2.0.3-1+deb7u1 | 1:2.0.3-4~bpo70+1 +! amd64 | klash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | konqueror-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | ldb-tools | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | ldnsutils | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libafsauthent1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libafsrpc1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libapache2-mod-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! amd64 | libaqbanking-plugins-libgwenhywfar60 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! amd64 | libaqbanking34 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-dbg | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-dev | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-plugins | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqhbci20 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! amd64 | libaqofxconnect7 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libarmadillo-dev | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! amd64 | libarmadillo3 | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! amd64 | libasprintf0c2 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | libav-dbg | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libav-tools | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavcodec-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavdevice-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavdevice53 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavfilter-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavformat-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavutil-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libchromaprint-dev | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libchromaprint-tools | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libchromaprint0 | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libclaws-mail-dev | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | libcodeblocks0 | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libeiskaltdcpp2.2 | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | libeiskaltdcpp2.2-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | libestr-dev | 0.1.1-2 | 0.1.9-1~bpo70+1 +! amd64 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +! amd64 | libfm-dev | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +! amd64 | libgeoip-dev | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | libgeoip1 | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | libgettextpo0 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | libghc-gnutls-dev | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! amd64 | libghc-gnutls-prof | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! amd64 | libghc-network-protocol-xmpp-dev | 0.4.3-1 | 0.4.4-2~bpo70+1 +! amd64 | libghc-network-protocol-xmpp-prof | 0.4.3-1 | 0.4.4-2~bpo70+1 +! amd64 | libgpgme11 | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! amd64 | libgpgme11-dev | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! amd64 | libgps-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libgps20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libgwengui-fox16-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-gtk2-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-qt4-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60-dbg | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60-dev | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libhivex-bin | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-ocaml | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-ocaml-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex0 | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex0-dbg | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhogweed2 | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | libibus-1.0-0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | libibus-1.0-dev | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | libjson0 | 0.10-1.2 | 0.11-3~bpo7+1 +! amd64 | libjson0-dev | 0.10-1.2 | 0.11-3~bpo7+1 +! amd64 | libkopenafs1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldb1 | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldb1-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldns-dev | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libldns1 | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libldns1-dbg | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libmagic-dev | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | libmagic1 | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | libmsv-dev | 0.0.0-1 | 1.0-1~bpo70+1 +! amd64 | libnet-remctl-perl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | libnettle4 | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | libnotmuch-dev | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | libnotmuch3 | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | libnss-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libnvtt-bin | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libnvtt-dev | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libnvtt2 | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libocamlbricks-ocaml-dev | 0.50.1-4+b5 | 0.90+bzr367-1~bpo70+1 +! amd64 | libopenafs-dev | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libopus-dbg | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libopus-dev | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libopus0 | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libp11-kit-dev | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | libp11-kit0 | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | libpam-openafs-kaserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libpam-smbpass | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpam-ssh | 1.92-15 | 1.98-2~bpo70+1 +! amd64 | libpam-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpari-dbg | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libpari-dev | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libpari-gmp3 | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libparse-pidl-perl | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpostproc-dev | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! amd64 | libpostproc52 | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! amd64 | libpulse-dev | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse-mainloop-glib0 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse-mainloop-glib0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse0 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpurple0 | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | libqgpsmm-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libqgpsmm20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libqxmpp-dev | 0.4.92-1 | 0.7.6-1~bpo70+1 +! amd64 | libqxmpp0 | 0.4.92-1 | 0.7.6-1~bpo70+1 +! amd64 | librelp-dev | 1.0.0-1 | 1.2.0-1~bpo70+1 +! amd64 | librelp0 | 1.0.0-1 | 1.2.0-1~bpo70+1 +! amd64 | libremctl-dev | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | libremctl1 | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | libreoffice | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-base | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-base-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-calc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-dbg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-dev | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-draw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-evolution | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gnome | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gtk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gtk3 | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-impress | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-kde | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-math | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-mysql-connector | 1.0.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.2+LibO4.1.4-2~bpo70+1 +! amd64 | libreoffice-officebean | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-ogltrans | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-pdfimport | 1.0.5+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-presentation-minimizer | 1.0.3+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.4+LibO4.1.4-2~bpo70+1 +! amd64 | libreoffice-report-builder-bin | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-sdbc-postgresql | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-writer | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libsaml2-dev | 2.4.3-4 | 2.5.3-2~bpo70+1 +! amd64 | libsmbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libsmbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libsope-dev | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsope1 | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsope1-dbg | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsoqt-dev-common | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libsoqt4-20 | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libsoqt4-dev | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libspice-server-dev | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | libspice-server1 | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | libstrongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | libswscale-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libswscale2 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libtag1-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtag1-vanilla | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtag1c2a | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtagc0 | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtagc0-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtalloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtalloc2 | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtalloc2-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtdb-dev | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtdb1 | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtdb1-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtevent-dev | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtevent0 | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtevent0-dbg | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtsk-dev | 3.2.3-2 | 4.1.2-2~bpo70+1 +! amd64 | libuhd-dev | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | libuhd003 | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | libunbound-dev | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | libunbound2 | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | libusb-1.0-0 | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! amd64 | libusb-1.0-0-dev | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! amd64 | libusbip-dev | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! amd64 | libusbredirhost-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libusbredirhost1 | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libusbredirparser-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libv8-dev | 3.8.9.20-2 | 3.14.5.8-4~bpo7+1 +! amd64 | libvirt-bin | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt-dev | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt0 | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt0-dbg | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvlc-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvlc5 | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvlccore-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvolk0.0.0 | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | libwbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libwbclient0 | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libwin-hivex-perl | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libwireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | libwiretap-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | libwsutil-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | libwxsmithlib-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libwxsmithlib0 | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libwxsmithlib0-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libxapian-dev | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxapian22 | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxapian22-dbg | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxml-security-c-dev | 1.6.1-5+deb7u2 | 1.7.2-2~bpo70+1 +! amd64 | libxmltooling-dev | 1.4.2-5 | 1.5.3-2~bpo70+1 +! amd64 | liferea | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! amd64 | liferea-dbg | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! amd64 | linux-headers-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-headers-rt-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-image-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-image-rt-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-libc-dev | 3.2.54-2 | 3.12.9-1~bpo70+1 +! amd64 | lldpd | 0.5.7-2 | 0.7.7-1~bpo70+1 +! amd64 | lua-sec | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! amd64 | lua-sec-dev | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! amd64 | lua-socket | 2.0.2-8 | 3.0~rc1-3~bpo70+1+b1 +! amd64 | lua-socket-dev | 2.0.2-8 | 3.0~rc1-3~bpo70+1+b1 +! amd64 | mercurial | 2.2.2-3 | 2.8.2-1~bpo70+1 +! amd64 | mksh | 40.9.20120630-7 | 49-2~bpo70+1 +! amd64 | mongodb | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-clients | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-dev | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-server | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | monit | 1:5.4-2 | 1:5.6-1~bpo70+1 +! amd64 | mosh | 1.2.3-1 | 1.2.4a-1~bpo70+1 +! amd64 | mpd | 0.16.7-2+b1 | 0.17.6-1~bpo70+1 +! amd64 | mpd-dbg | 0.16.7-2+b1 | 0.17.6-1~bpo70+1 +! amd64 | nagios-plugins-basic | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios-plugins-common | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios-plugins-contrib | 4.20120702 | 9.20140106~bpo70+1 +! amd64 | nagios-plugins-standard | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios3 | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-cgi | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-core | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-dbg | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nettle-bin | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nettle-dbg | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nettle-dev | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nginx-extras | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-extras-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-full | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-full-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-light | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-light-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-naxsi | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-naxsi-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nmap | 6.00-0.3+deb7u1 | 6.40-0.1~bpo70+1 +! amd64 | notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | open-axiom | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | open-axiom-graphics | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | open-axiom-hypertex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | openafs-client | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-dbg | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-dbserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-fileserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-fuse | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-kpasswd | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-krb5 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openbox | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | openbox-dev | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | opensaml2-tools | 2.4.3-4 | 2.5.3-2~bpo70+1 +! amd64 | openssh-client | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | openssh-server | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | openvpn | 2.2.1-8+deb7u2 | 2.3.2-7~bpo70+1 +! amd64 | p11-kit | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | paraview | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | paraview-dev | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | paraview-python | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | pari-gp | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | pcmanfm | 0.9.10-3 | 1.1.2-1~bpo70+1 +! amd64 | pcmanfm-dbg | 0.9.10-3 | 1.1.2-1~bpo70+1 +! amd64 | php5-remctl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | pidgin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | pidgin-dbg | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | pidgin-otr | 3.2.1-3+deb7u1 | 4.0.0-2~bpo70+1 +! amd64 | plasma-widget-cwp | 1.6.11-1 | 1.10.0-1~bpo70+1 +! amd64 | poedit | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! amd64 | poedit-dbg | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! amd64 | pokerth | 0.9.5-1 | 1.0.1-2~bpo70+1 +! amd64 | pokerth-server | 0.9.5-1 | 1.0.1-2~bpo70+1 +! amd64 | prosody | 0.8.2-4 | 0.9.1-1~bpo70+1 +! amd64 | psi-plus | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-plugin-psimedia | 1.0.3-git20120506-fb54b6e-1 | 1.0.3-git20131023-ea487d3-1~bpo70+1 +! amd64 | psi-plus-plugins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-plugins-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-webkit | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-webkit-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | pulseaudio | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-esound-compat | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-esound-compat-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-bluetooth | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-bluetooth-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-gconf | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-gconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-jack | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-jack-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-lirc | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-lirc-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-raop | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-raop-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-x11 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-x11-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-zeroconf | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-zeroconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-utils | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-utils-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | python-fife | 0.3.3+r3-3 | 0.3.5-1~bpo70+1 +! amd64 | python-gps | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | python-gtk-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | python-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | python-ldb | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldb-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldns | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | python-libvirt | 0.9.12.3-1 | 1.2.1-1~bpo70+2 +! amd64 | python-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python-magic | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | python-pivy | 0.5.0~v609hg-1 | 0.5.0~v609hg-3~bpo70+1 +! amd64 | python-remctl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | python-samba | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | python-talloc | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-talloc-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-talloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-tdb | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | python-tdb-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | python-twisted-bin | 12.0.0-1 | 13.0.0-1~bpo70+1 +! amd64 | python-twisted-bin-dbg | 12.0.0-1 | 13.0.0-1~bpo70+1 +! amd64 | python-unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | python-uno | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | python-wimpiggy | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! amd64 | python-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python3-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python3-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python3-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python3-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | q4wine | 0.121-4 | 1.1-r2-1~bpo70+1 +! amd64 | qconf | 1.4-3 | 1.5-1~bpo70+1 +! amd64 | qemu | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-kvm | 1.1.2+dfsg-6 | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-system | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-user | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-user-static | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-utils | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemubuilder | 0.70 | 0.73~bpo7+1 +! amd64 | racket | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! amd64 | redis-server | 2:2.4.14-1 | 2:2.8.6-1~bpo70+1 +! amd64 | registry-tools | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | remctl-client | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | remctl-server | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | reprepro | 4.12.5-1 | 4.13.1-1~bpo70+1 +! amd64 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-gnutls | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-gssapi | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-mysql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-pgsql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-relp | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | ruby-gherkin | 2.4.6-1 | 2.12.1-1~bpo70+1 +! amd64 | ruby-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | ruby-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! amd64 | ruby-password | 0.5.3-3 | 0.5.3-4~bpo70+1 +! amd64 | ruby-remctl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | ruby-termios | 0.9.6-2 | 1.0.0-1~bpo70+1 +! amd64 | samba | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-common-bin | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-dbg | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-dsdb-modules | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | sks | 1.1.3-2 | 1.1.4-2~bpo70+1 +! amd64 | sleuthkit | 3.2.3-2 | 4.1.2-2~bpo70+1 +! amd64 | smbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | sogo | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! amd64 | sogo-dbg | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! amd64 | spice-client | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | ssh-askpass-gnome | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | strongswan-dbg | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | strongswan-nm | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | strongswan-starter | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | sumo | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! amd64 | supertuxkart | 0.7.3-2+b1 | 0.8.1-2~bpo70+1 +! amd64 | task | 2.0.0-1 | 2.2.0-3~bpo70+1 +! amd64 | tdb-tools | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | telepathy-idle | 0.1.11-2+deb7u1 | 0.1.16-1~bpo70+1 +! amd64 | tinc | 1.0.19-3 | 1.0.23-1~bpo70+1 +! amd64 | tmux | 1.6-2 | 1.8-5~bpo70+1 +! amd64 | tshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | uhd-host | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | uhub | 0.3.2-1 | 0.4.1-3~bpo70+1 +! amd64 | unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | unbound-anchor | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | unbound-host | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | uno-libs3 | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | uno-libs3-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | ure | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | ure-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | usbip | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! amd64 | usbredirserver | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | virtualbox | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-dbg | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-guest-utils | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-guest-x11 | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-qt | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | vlc | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-dbg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-nox | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-fluidsynth | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-jack | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-notify | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-pulse | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-sdl | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-svg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-zvbi | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | weechat-core | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-curses | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-dbg | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-plugins | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | wesnoth-1.10-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | wesnoth-1.10-dbg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | wesnoth-1.10-server | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | wireshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-common | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-dbg | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | x2goclient | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! amd64 | x2goplugin | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! amd64 | xapian-examples | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | xapian-tools | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | xbmc-bin | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! amd64 | xbmc-eventclients-wiiremote | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! amd64 | xen-linux-system-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | xpra | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! amd64 | yade | 0.80.1-2 | 1.05.0-2~bpo70+1 +! amd64 | yagf | 0.9.1-3 | 0.9.2.1-1~bpo70+1 +! amd64 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | 0ad | 0~r11863-2 | 0.0.14-3~bpo70+2 +! i386 | 0ad-dbg | 0~r11863-2 | 0.0.14-3~bpo70+2 +! i386 | amarok | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amarok-dbg | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amarok-utils | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | apt-cacher-ng | 0.7.11-1 | 0.7.25-1~bpo70+1 +! i386 | aqbanking-tools | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | asterisk | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-dahdi | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-dbg | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mobile | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-modules | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mp3 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mysql | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-ooh323 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail-imapstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail-odbcstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | bip | 0.8.8-2 | 0.8.9-1~bpo70+1 +! i386 | bird | 1.3.7-1 | 1.4.0-1~bpo70+1 +! i386 | bird-dbg | 1.3.7-1 | 1.4.0-1~bpo70+1 +! i386 | bluefish | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | bluefish-dbg | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | bluefish-plugins | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | blueman | 1.23-1 | 1.23-git201312311147-1~bpo70+1 +! i386 | boinc-client | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | boinc-dbg | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | boinc-manager | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | browser-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | bti | 032-1 | 034-1~bpo70+1 +! i386 | bup | 0.25~git2011.11.04-5.1 | 0.25-1~bpo70+1 +! i386 | calibre-bin | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +! i386 | check-mk-agent | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-agent-logwatch | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-config-icinga | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-config-nagios3 | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-livestatus | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-multisite | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-server | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | claws-mail | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-acpi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-address-keeper | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-archiver-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-attach-remover | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-attach-warner | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-bogofilter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-bsfilter-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-clamd-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-dbg | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-fancy-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-feeds-reader | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-fetchinfo-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-gdata-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-mailmbox-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-multi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-newmail-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-perl-filter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-pgpinline | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-pgpmime | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-python-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-smime-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-spam-report | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-spamassassin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-tnef-parser | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-vcalendar-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | cmake | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-curses-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-dbg | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-qt-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | codeblocks | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-contrib | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-contrib-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | cowbuilder | 0.70 | 0.73~bpo7+1 +! i386 | cowdancer | 0.70 | 0.73~bpo7+1 +! i386 | cython | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! i386 | cython-dbg | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! i386 | darktable | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! i386 | darktable-dbg | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! i386 | deets | 0.1.3-1 | 0.2-3~bpo70+1 +! i386 | desktop-file-utils | 0.20-0.1 | 0.21-1~bpo70+1 +! i386 | devilspie2 | 0.20-1 | 0.32-1~bpo70+1 +! i386 | devscripts | 2.12.6+deb7u2 | 2.13.4~bpo70+1 +! i386 | dovecot-antispam | 2.0+20120225-3 | 2.0+20130822-2~bpo70+1 +! i386 | dovecot-core | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-dbg | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-dev | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-gssapi | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-imapd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-ldap | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-lmtpd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-managesieved | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-mysql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-pgsql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-pop3d | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-sieve | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-solr | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-sqlite | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | drbd8-utils | 2:8.3.13-2 | 2:8.4.4-1~bpo70+1 +! i386 | eiskaltdcpp-daemon | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-daemon-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-gtk | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-gtk-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-qt | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-qt-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | erlang-appmon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-asn1 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-base | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-base-hipe | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-common-test | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-corba | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-crypto | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-debugger | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-dev | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-dialyzer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-diameter | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-edoc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-eldap | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-erl-docgen | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-et | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-eunit | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-gs | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ic | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-inets | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-megaco | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-mnesia | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-observer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-odbc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-os-mon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-parsetools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-percept | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-pman | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-public-key | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-reltool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-runtime-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-snmp | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ssh | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ssl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-syntax-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-test-server | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-toolbar | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-tv | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-typer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-webtool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-wx | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-xmerl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | esniper | 2.27.0-1 | 2.28.0-1~bpo70+1 +! i386 | evilwm | 1.0.0-1 | 1.1.0-3~bpo70+1 +! i386 | exfat-fuse | 0.9.7-2 | 1.0.1-1~bpo70+1 +! i386 | exfat-utils | 0.9.7-2 | 1.0.1-1~bpo70+1 +! i386 | fcitx-bin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-config-gtk | 0.4.4-1 | 0.4.7-1~bpo70+1 +! i386 | fcitx-config-gtk2 | 0.4.4-1 | 0.4.7-1~bpo70+1 +! i386 | fcitx-dbg | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-gtk2 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-gtk3 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-qt4 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-googlepinyin | 0.1.5-2 | 0.1.6-1~bpo70+1 +! i386 | fcitx-libs | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-libs-dev | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-cloudpinyin | 0.2.2-1+deb7u1 | 0.3.2-1~bpo70+1 +! i386 | fcitx-module-dbus | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-kimpanel | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-lua | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-x11 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-modules | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-pinyin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-qw | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-sunpinyin | 0.3.7-1 | 0.4.1-1~bpo70+1 +! i386 | fcitx-table | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-amharic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-arabic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-array30 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-array30-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-bingchan | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-boshiamy | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-cangjie-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cantonese | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cantonhk | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cns11643 | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-compose | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-dianbaoma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-easy-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-emoji | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-erbi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-ipa-x-sampa | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-jyutping | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-latex | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-malayalam-phonetic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-quick-classic | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-quick3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-quick5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-rustrad | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-scj6 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-stroke5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-tamil-remington | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-thai | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-translit | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-translit-ua | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-viqr | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-wanfeng | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wbpy | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wu | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-wubi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wubi-large | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-yawerty | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-zhengma | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-ziranma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-tools | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-ui-classic | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | file | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | finch | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | florence | 0.5.1-1 | 0.6.0-2~bpo70+1 +! i386 | fluxbox | 1.3.2-4 | 1.3.5-1~bpo70+1 +! i386 | freeciv-client-extras | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-gtk | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-sdl | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-xaw3d | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-server | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | fvwm | 1:2.5.30.ds-1.1 | 1:2.6.5.ds-3~bpo70+1 +! i386 | fwknop-client | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! i386 | fwknop-server | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! i386 | ganeti-htools | 2.5.2-1 | 2.9.4-1~bpo70+1 +! i386 | geoip-bin | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | gettext | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | gettext-base | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | gir1.2-fcitx-1.0 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | gir1.2-ibus-1.0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | git | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! i386 | git-annex | 3.20120629 | 5.20140210~bpo70+2 +! i386 | gitg | 0.2.4-1.1+deb7u1 | 0.2.7-1~bpo70+1 +! i386 | gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-common | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-cygnal | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-dbg | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-dev | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-fileio | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-lirc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-mysql | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-tools | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnome-panel-control | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | gnuplot-nox | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuplot-qt | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuplot-x11 | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuradio | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | gnuradio-dev | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | gnutls-bin | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! i386 | gpsd | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | gpsd-clients | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | gpsd-dbg | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | guile-gnutls | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! i386 | gwenhywfar-tools | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | gyoto-dbg | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | haveged | 1.4-4 | 1.7b-2~bpo70+1 +! i386 | hedgewars | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +! i386 | herbstluftwm | 0.3-1 | 0.5.3-1~bpo70+1 +! i386 | hugin | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! i386 | hugin-tools | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! i386 | i3 | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3-wm | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3-wm-dbg | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3status | 2.5.1-1 | 2.8-1~bpo70+1 +! i386 | ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | ibus-gtk | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | ibus-gtk3 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | icinga | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-cgi | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-core | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-dbg | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-idoutils | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | irqbalance | 1.0.3-3 | 1.0.6-2~bpo70+1 +! i386 | italc-client | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! i386 | italc-master | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! i386 | jd | 1:2.8.5~beta120206-3 | 1:2.8.7-140104-1~bpo70+1 +! i386 | jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +! i386 | kbuild | 1:0.1.9998svn2543+dfsg-1 | 1:0.1.9998svn2577+dfsg-3~bpo70+1 +! i386 | kde-config-fcitx | 0.3.4-1 | 0.4.3-1~bpo70+1 +! i386 | kde-config-gtk-style | 3:2.1-1 | 3:2.2.1-1~bpo70+1 +! i386 | kexec-tools | 1:2.0.3-1+deb7u1 | 1:2.0.3-4~bpo70+1 +! i386 | klash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | konqueror-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | ldb-tools | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | ldnsutils | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libafsauthent1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libafsrpc1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libapache2-mod-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! i386 | libaqbanking-plugins-libgwenhywfar60 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! i386 | libaqbanking34 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-dbg | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-dev | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-plugins | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqhbci20 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! i386 | libaqofxconnect7 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libarmadillo-dev | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! i386 | libarmadillo3 | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! i386 | libasprintf0c2 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | libav-dbg | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libav-tools | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavcodec-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavdevice-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavdevice53 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavfilter-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavformat-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavutil-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libchromaprint-dev | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libchromaprint-tools | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libchromaprint0 | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libclaws-mail-dev | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | libcodeblocks0 | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libeiskaltdcpp2.2 | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | libeiskaltdcpp2.2-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | libestr-dev | 0.1.1-2 | 0.1.9-1~bpo70+1 +! i386 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +! i386 | libfm-dev | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +! i386 | libgeoip-dev | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | libgeoip1 | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | libgettextpo0 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | libghc-gnutls-dev | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! i386 | libghc-gnutls-prof | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! i386 | libghc-network-protocol-xmpp-dev | 0.4.3-1 | 0.4.4-2~bpo70+1 +! i386 | libghc-network-protocol-xmpp-prof | 0.4.3-1 | 0.4.4-2~bpo70+1 +! i386 | libgpgme11 | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! i386 | libgpgme11-dev | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! i386 | libgps-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libgps20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libgwengui-fox16-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-gtk2-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-qt4-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60-dbg | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60-dev | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libhivex-bin | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-ocaml | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-ocaml-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex0 | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex0-dbg | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhogweed2 | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | libibus-1.0-0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | libibus-1.0-dev | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | libjson0 | 0.10-1.2 | 0.11-3~bpo7+1 +! i386 | libjson0-dev | 0.10-1.2 | 0.11-3~bpo7+1 +! i386 | libkopenafs1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldb1 | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldb1-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldns-dev | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libldns1 | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libldns1-dbg | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libmagic-dev | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | libmagic1 | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | libmsv-dev | 0.0.0-1 | 1.0-1~bpo70+1 +! i386 | libnet-remctl-perl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | libnettle4 | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | libnotmuch-dev | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | libnotmuch3 | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | libnss-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libnvtt-bin | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libnvtt-dev | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libnvtt2 | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libocamlbricks-ocaml-dev | 0.50.1-4+b5 | 0.90+bzr367-1~bpo70+1 +! i386 | libopenafs-dev | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libopus-dbg | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libopus-dev | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libopus0 | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libp11-kit-dev | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | libp11-kit0 | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | libpam-openafs-kaserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libpam-smbpass | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpam-ssh | 1.92-15 | 1.98-2~bpo70+1 +! i386 | libpam-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpari-dbg | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libpari-dev | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libpari-gmp3 | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libparse-pidl-perl | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpostproc-dev | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! i386 | libpostproc52 | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! i386 | libpulse-dev | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse-mainloop-glib0 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse-mainloop-glib0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse0 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpurple0 | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | libqgpsmm-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libqgpsmm20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libqxmpp-dev | 0.4.92-1 | 0.7.6-1~bpo70+1 +! i386 | libqxmpp0 | 0.4.92-1 | 0.7.6-1~bpo70+1 +! i386 | librelp-dev | 1.0.0-1 | 1.2.0-1~bpo70+1 +! i386 | librelp0 | 1.0.0-1 | 1.2.0-1~bpo70+1 +! i386 | libremctl-dev | 3.2-4 | 3.8-1~bpo70+1 +! i386 | libremctl1 | 3.2-4 | 3.8-1~bpo70+1 +! i386 | libreoffice | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-base | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-base-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-calc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-dbg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-dev | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-draw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-evolution | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gnome | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gtk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gtk3 | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-impress | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-kde | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-math | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-mysql-connector | 1.0.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.2+LibO4.1.4-2~bpo70+1 +! i386 | libreoffice-officebean | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-ogltrans | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-pdfimport | 1.0.5+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-presentation-minimizer | 1.0.3+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.4+LibO4.1.4-2~bpo70+1 +! i386 | libreoffice-report-builder-bin | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-sdbc-postgresql | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-writer | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libsaml2-dev | 2.4.3-4 | 2.5.3-2~bpo70+1 +! i386 | libsmbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libsmbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libsope-dev | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsope1 | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsope1-dbg | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsoqt-dev-common | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libsoqt4-20 | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libsoqt4-dev | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libspice-server-dev | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | libspice-server1 | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | libstrongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | libswscale-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libswscale2 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libtag1-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtag1-vanilla | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtag1c2a | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtagc0 | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtagc0-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtalloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtalloc2 | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtalloc2-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtdb-dev | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtdb1 | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtdb1-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtevent-dev | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libtevent0 | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libtevent0-dbg | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libuhd-dev | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | libuhd003 | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | libunbound-dev | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | libunbound2 | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | libusb-1.0-0 | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! i386 | libusb-1.0-0-dev | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! i386 | libusbip-dev | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! i386 | libusbredirhost-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libusbredirhost1 | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libusbredirparser-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libv8-dev | 3.8.9.20-2 | 3.14.5.8-4~bpo7+1 +! i386 | libvirt-bin | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt-dev | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt0 | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt0-dbg | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvlc-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvlc5 | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvlccore-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvolk0.0.0 | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | libwbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libwbclient0 | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libwin-hivex-perl | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libwireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | libwiretap-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | libwsutil-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | libwxsmithlib-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libwxsmithlib0 | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libwxsmithlib0-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libxapian-dev | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxapian22 | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxapian22-dbg | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxml-security-c-dev | 1.6.1-5+deb7u2 | 1.7.2-2~bpo70+1 +! i386 | libxmltooling-dev | 1.4.2-5 | 1.5.3-2~bpo70+1 +! i386 | liferea | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! i386 | liferea-dbg | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! i386 | linux-headers-486 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-rt-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-486 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-rt-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-libc-dev | 3.2.54-2 | 3.12.9-1~bpo70+1 +! i386 | lldpd | 0.5.7-2 | 0.7.7-1~bpo70+1 +! i386 | lua-sec | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! i386 | lua-sec-dev | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! i386 | lua-socket | 2.0.2-8 | 3.0~rc1-3~bpo70+1 +! i386 | lua-socket-dev | 2.0.2-8 | 3.0~rc1-3~bpo70+1 +! i386 | mercurial | 2.2.2-3 | 2.8.2-1~bpo70+1 +! i386 | mksh | 40.9.20120630-7 | 49-2~bpo70+1 +! i386 | mongodb | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-clients | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-dev | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-server | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | monit | 1:5.4-2 | 1:5.6-1~bpo70+1 +! i386 | mosh | 1.2.3-1 | 1.2.4a-1~bpo70+1 +! i386 | mpd | 0.16.7-2 | 0.17.6-1~bpo70+1 +! i386 | mpd-dbg | 0.16.7-2 | 0.17.6-1~bpo70+1 +! i386 | nagios-plugins-basic | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios-plugins-common | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios-plugins-contrib | 4.20120702 | 9.20140106~bpo70+1 +! i386 | nagios-plugins-standard | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios3 | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-cgi | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-core | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-dbg | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nettle-bin | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nettle-dbg | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nettle-dev | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nginx-extras | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-extras-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-full | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-full-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-light | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-light-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-naxsi | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-naxsi-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nmap | 6.00-0.3+deb7u1 | 6.40-0.1~bpo70+1 +! i386 | notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | open-axiom | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | open-axiom-graphics | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | open-axiom-hypertex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | openafs-client | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-dbg | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-dbserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-fileserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-fuse | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-kpasswd | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-krb5 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openbox | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | openbox-dev | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | opensaml2-tools | 2.4.3-4 | 2.5.3-2~bpo70+1 +! i386 | openssh-client | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | openssh-server | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | openvpn | 2.2.1-8+deb7u2 | 2.3.2-7~bpo70+1 +! i386 | p11-kit | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | paraview | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | paraview-dev | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | paraview-python | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | pari-gp | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | pcmanfm | 0.9.10-3 | 1.1.2-1~bpo70+1 +! i386 | pcmanfm-dbg | 0.9.10-3 | 1.1.2-1~bpo70+1 +! i386 | php5-remctl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | pidgin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | pidgin-dbg | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | pidgin-otr | 3.2.1-3+deb7u1 | 4.0.0-2~bpo70+1 +! i386 | plasma-widget-cwp | 1.6.11-1 | 1.10.0-1~bpo70+1 +! i386 | poedit | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! i386 | poedit-dbg | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! i386 | pokerth | 0.9.5-1 | 1.0.1-2~bpo70+1 +! i386 | pokerth-server | 0.9.5-1 | 1.0.1-2~bpo70+1 +! i386 | prosody | 0.8.2-4 | 0.9.1-1~bpo70+1 +! i386 | psi-plus | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-plugin-psimedia | 1.0.3-git20120506-fb54b6e-1 | 1.0.3-git20131023-ea487d3-1~bpo70+1 +! i386 | psi-plus-plugins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-plugins-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-webkit | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-webkit-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | pulseaudio | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-esound-compat | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-esound-compat-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-bluetooth | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-bluetooth-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-gconf | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-gconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-jack | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-jack-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-lirc | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-lirc-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-raop | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-raop-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-x11 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-x11-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-zeroconf | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-zeroconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-utils | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-utils-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | python-fife | 0.3.3+r3-3 | 0.3.5-1~bpo70+1 +! i386 | python-gps | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | python-gtk-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | python-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | python-ldb | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldb-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldns | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | python-libvirt | 0.9.12.3-1 | 1.2.1-1~bpo70+2 +! i386 | python-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python-magic | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | python-pivy | 0.5.0~v609hg-1 | 0.5.0~v609hg-3~bpo70+1 +! i386 | python-remctl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | python-samba | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | python-talloc | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-talloc-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-talloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-tdb | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | python-tdb-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | python-twisted-bin | 12.0.0-1 | 13.0.0-1~bpo70+1 +! i386 | python-twisted-bin-dbg | 12.0.0-1 | 13.0.0-1~bpo70+1 +! i386 | python-unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | python-uno | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | python-wimpiggy | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! i386 | python-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python3-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python3-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python3-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python3-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | q4wine | 0.121-4 | 1.1-r2-1~bpo70+1 +! i386 | qconf | 1.4-3 | 1.5-1~bpo70+1 +! i386 | qemu | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-kvm | 1.1.2+dfsg-6 | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-system | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-user | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-user-static | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-utils | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemubuilder | 0.70 | 0.73~bpo7+1 +! i386 | racket | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! i386 | redis-server | 2:2.4.14-1 | 2:2.8.6-1~bpo70+1 +! i386 | registry-tools | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | remctl-client | 3.2-4 | 3.8-1~bpo70+1 +! i386 | remctl-server | 3.2-4 | 3.8-1~bpo70+1 +! i386 | reprepro | 4.12.5-1 | 4.13.1-1~bpo70+1 +! i386 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-gnutls | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-gssapi | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-mysql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-pgsql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-relp | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | ruby-gherkin | 2.4.6-1 | 2.12.1-1~bpo70+1 +! i386 | ruby-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | ruby-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! i386 | ruby-password | 0.5.3-3 | 0.5.3-4~bpo70+1 +! i386 | ruby-remctl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | ruby-termios | 0.9.6-2 | 1.0.0-1~bpo70+1 +! i386 | samba | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-common-bin | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-dbg | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-dsdb-modules | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | sks | 1.1.3-2 | 1.1.4-2~bpo70+1 +! i386 | smbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | sogo | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! i386 | sogo-dbg | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! i386 | spice-client | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | ssh-askpass-gnome | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | strongswan-dbg | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | strongswan-nm | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | strongswan-starter | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | sumo | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! i386 | supertuxkart | 0.7.3-2+b1 | 0.8.1-2~bpo70+1 +! i386 | task | 2.0.0-1 | 2.2.0-3~bpo70+1 +! i386 | tdb-tools | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | telepathy-idle | 0.1.11-2+deb7u1 | 0.1.16-1~bpo70+1 +! i386 | tinc | 1.0.19-3 | 1.0.23-1~bpo70+1 +! i386 | tmux | 1.6-2 | 1.8-5~bpo70+1 +! i386 | tshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | uhd-host | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | uhub | 0.3.2-1 | 0.4.1-3~bpo70+1 +! i386 | unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | unbound-anchor | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | unbound-host | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | uno-libs3 | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | uno-libs3-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | ure | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | ure-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | usbip | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! i386 | usbredirserver | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | virtualbox | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-dbg | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-guest-utils | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-guest-x11 | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-qt | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | vlc | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-dbg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-nox | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-fluidsynth | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-jack | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-notify | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-pulse | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-sdl | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-svg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-zvbi | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | weechat-core | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-curses | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-dbg | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-plugins | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | wesnoth-1.10-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | wesnoth-1.10-dbg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | wesnoth-1.10-server | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | wireshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-common | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-dbg | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | x2goclient | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! i386 | x2goplugin | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! i386 | xapian-examples | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | xapian-tools | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | xbmc-bin | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! i386 | xbmc-eventclients-wiiremote | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! i386 | xpra | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! i386 | yade | 0.80.1-2 | 1.05.0-2~bpo70+1 +! i386 | yagf | 0.9.1-3 | 0.9.2.1-1~bpo70+1 +! i386 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot4Test_gold new file mode 100644 index 00000000..4764182c --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot4Test_gold @@ -0,0 +1 @@ +ERROR: unable to load snapshot B: snapshot with name snap-no not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot5Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot5Test_gold new file mode 100644 index 00000000..3905b244 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot5Test_gold @@ -0,0 +1 @@ +ERROR: unable to load snapshot A: snapshot with name snap-no not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot6Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot6Test_gold new file mode 100644 index 00000000..cf0b7406 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DiffSnapshot6Test_gold @@ -0,0 +1 @@ +Snapshots are identical. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot1Test_gold new file mode 100644 index 00000000..837b207b --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot1Test_gold @@ -0,0 +1 @@ +Snapshot `snap1` has been dropped. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot1Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot1Test_snapshot_show new file mode 100644 index 00000000..d0fb941a --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot1Test_snapshot_show @@ -0,0 +1 @@ +ERROR: unable to show: snapshot with name snap1 not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot2Test_gold new file mode 100644 index 00000000..904f975a --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot2Test_gold @@ -0,0 +1,3 @@ +Snapshot `snap1` was used as a source in following snapshots: + * [snap2]: Merged from sources: 'snap1' +ERROR: won't delete snapshot that was used as source for other snapshots, use -force to override diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot3Test_gold new file mode 100644 index 00000000..837b207b --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot3Test_gold @@ -0,0 +1 @@ +Snapshot `snap1` has been dropped. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot3Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot3Test_snapshot_show new file mode 100644 index 00000000..d0fb941a --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot3Test_snapshot_show @@ -0,0 +1 @@ +ERROR: unable to show: snapshot with name snap1 not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot4Test_gold new file mode 100644 index 00000000..a0d932eb --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot4Test_gold @@ -0,0 +1,3 @@ +Snapshot `snap1` is published currently: + * ./maverick (main) [amd64, i386] publishes [snap1]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +ERROR: unable to drop: snapshot is published diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot5Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot5Test_gold new file mode 100644 index 00000000..a0d932eb --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot5Test_gold @@ -0,0 +1,3 @@ +Snapshot `snap1` is published currently: + * ./maverick (main) [amd64, i386] publishes [snap1]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +ERROR: unable to drop: snapshot is published diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot6Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot6Test_gold new file mode 100644 index 00000000..e6b138f6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot6Test_gold @@ -0,0 +1 @@ +ERROR: unable to drop: snapshot with name no-such-snapshot not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot7Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot7Test_gold new file mode 100644 index 00000000..837b207b --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/DropSnapshot7Test_gold @@ -0,0 +1 @@ +Snapshot `snap1` has been dropped. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot1Test_gold new file mode 100644 index 00000000..bb3c00f6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot1Test_gold @@ -0,0 +1,8 @@ +List of snapshots: + * [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy + * [snap2]: Snapshot from mirror [wheezy-contrib]: http://mirror.yandex.ru/debian/ wheezy + * [snap3]: Merged from sources: 'snap1', 'snap2' + * [snap4]: Pulled into 'snap1' with 'snap2' as source, pull request was: 'mame unrar' + * [snap5]: Snapshot from local repo [local-repo] + +To get more information about snapshot, run `aptly snapshot show `. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot2Test_gold new file mode 100644 index 00000000..ab46260e --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot2Test_gold @@ -0,0 +1,2 @@ + +No snapshots found, create one with `aptly snapshot create...`. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot3Test_gold new file mode 100644 index 00000000..1d160505 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot3Test_gold @@ -0,0 +1,5 @@ +snap1 +snap2 +snap3 +snap4 +snap5 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ListSnapshot4Test_gold new file mode 100644 index 00000000..e69de29b diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot1Test_gold new file mode 100644 index 00000000..dbc15e5d --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot1Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot1Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot1Test_snapshot_show new file mode 100644 index 00000000..deb49a69 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot1Test_snapshot_show @@ -0,0 +1,56805 @@ +Name: snap3 +Created At: 2014-02-27 13:09:46 MSK +Description: Merged from sources: 'snap1', 'snap2' +Number of packages: 56800 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + abs-guide_6.5-1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + album_4.06-2_all + album-data_4.05-2_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-arena-data_7.53-1_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoeba-data_1.1-6_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + assaultcube-data_1.1.0.4+repack1-2.1~deb7u1_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es_1.4-1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atmel-firmware_1.3-4_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autodocktools_1.5.6~rc3~cvs.20120206-1_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automake1.9-doc_1.9.6-1_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bison-doc_1:2.5-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-firmware_1.2-3_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + broadcom-sta-common_5.100.82.112-8_all + broadcom-sta-dkms_5.100.82.112-8_all + broadcom-sta-source_5.100.82.112-8_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cclib-data_1.0.1-3_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + celestia-common-nonfree_1.6.1-1_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-doc-nonfree_2012.06.27-2_all + context-modules_20120611-1_all + context-nonfree_2007.03.22-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-doc_8.3pl4-1_all + coq-doc-html_8.3pl4-1_all + coq-doc-pdf_8.3pl4-1_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cpp-4.4-doc_4.4.7-3_all + cpp-4.6-doc_4.6.3-2_all + cpp-4.7-doc_4.7.2-2_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crash-whitepaper_1.0-1.1_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cuneiform-common_1.1.0+dfsg-4_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-firmware-nonfree_2.6.1-1_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + doc-rfc_20120225-2_all + doc-rfc-experimental_20120225-2_all + doc-rfc-fyi-bcp_20120225-2_all + doc-rfc-informational_20120225-2_all + doc-rfc-misc_20120225-2_all + doc-rfc-old-std_20120225-2_all + doc-rfc-others_20120225-2_all + doc-rfc-std_20120225-2_all + doc-rfc-std-proposed_20120225-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + doom-wad-shareware_1.9.fixed-2_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + eagle-data_5.12.0-3_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ebook-dev-alp_200407-1_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elmer-doc_2011.09.06-1_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-common-non-dfsg_23.4+1-1_all + emacs23-el_23.4+1-4_all + emacs24-common-non-dfsg_24.1+1-1_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etoys_4.0.2340-1_all + etoys-doc_4.0.2340-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-oald_1.4.0-3.1_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-ellpc11k_1.4.0-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-atheros_0.36+wheezy.1_all + firmware-bnx2_0.36+wheezy.1_all + firmware-bnx2x_0.36+wheezy.1_all + firmware-brcm80211_0.36+wheezy.1_all + firmware-intelwimax_0.36+wheezy.1_all + firmware-ipw2x00_0.36+wheezy.1_all + firmware-ivtv_0.36+wheezy.1_all + firmware-iwlwifi_0.36+wheezy.1_all + firmware-libertas_0.36+wheezy.1_all + firmware-linux_0.36+wheezy.1_all + firmware-linux-free_3.2_all + firmware-linux-nonfree_0.36+wheezy.1_all + firmware-myricom_0.36+wheezy.1_all + firmware-netxen_0.36+wheezy.1_all + firmware-qlogic_0.36+wheezy.1_all + firmware-ralink_0.36+wheezy.1_all + firmware-realtek_0.36+wheezy.1_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + foiltex_2.1.4b-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipafont-nonfree-jisx0208_00103-19_all + fonts-ipafont-nonfree-uigothic_00203-21_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-larabie-deco_1:20011216-4_all + fonts-larabie-straight_1:20011216-4_all + fonts-larabie-uncommon_1:20011216-4_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-mikachan_9.1-8_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-moe-standard-kai_20120530-1_all + fonts-moe-standard-song_20120530-1_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogatto-data_1.2+dfsg-1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fsl_4.1.9-7_all + fsl-doc-4.1_4.1.9-7_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gawk-doc_4.0.1+ds-1_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-doc_4.4.7-3_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-doc_4.6.3-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-doc_4.7.2-2_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-doc-base_4.7.2-2_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gccgo-4.6-doc_4.6.3-2_all + gccgo-4.7-doc_4.7.2-2_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-doc_4.6.3-2_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-doc_4.7.2-2_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-doc_7.4.1-2_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-4.4-doc_4.4.7-3_all + gfortran-4.6-doc_4.6.3-2_all + gfortran-4.7-doc_4.7.2-2_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glibc-doc-reference_2.13-1_all + gliese_3.0.95-2_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmp-doc_5.0.5-1_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-4.4-doc_4.4.7-3_all + gnat-4.6-doc_4.6.3-2_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-other_6.0-4_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsl-doc-info_1.15-1_all + gsl-doc-pdf_1.15-1_all + gsl-ref-html_1.15-1_all + gsl-ref-psdoc_1.15-1_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-1.8-doc-non-dfsg_1.8.8+1-1.1_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hevea-doc_1.10-3_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hijra-applet_0.2.1-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + human-icon-theme_0.28.debian-3.3_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwb_1:040412-3_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles_2.0.1-1_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + igv_2.0.30-1_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jhove_1.6+dfsg-1_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + kstars-data-extra-tycho2_1.1r1-9_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcolt-java_1.2.0~nojar-2_all + libcolt-java-doc_1.2.0~nojar-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore++-demo_1.7-12_all + libcore++-doc_1.7-12_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcupti-doc_4.2.9-2_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwd-doc_1.0.4-1_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + libertas-firmware_9.70.7.p0.0-2_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libf2j-java_0.8.1-2_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeotiff-epsg_1.3.0-1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjabsorb-java_1.3-2_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjai-core-java-doc_1.1.4-3_all + libjai-imageio-core-java-doc_1.2-3_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sender-perl_0.8.16-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstar-parser-perl_0.59-3_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libttspico-data_1.0+git20110131-2_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvideo-info-perl_0.993-2_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libworldwind-java_0.5.0-10_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lugaru-data_0~20110520.1+hge4354-1_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + make-doc_3.81-5.1_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-posix_2.16-1_all + manpages-posix-dev_2.16-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mbrola-af1_0.0.20040426-2_all + mbrola-br1_2.021-1_all + mbrola-br3_2.021-2_all + mbrola-cr1_0.0.19981028-2_all + mbrola-cz2_0.2-2_all + mbrola-de4_0.0.20020812-1_all + mbrola-de5_1.0-1_all + mbrola-de6_0.0.20021125-2_all + mbrola-de7_0.0.20030404-2_all + mbrola-ee1_0.0.20020407-1_all + mbrola-en1_19980910-2_all + mbrola-es1_0.0.19980610-2_all + mbrola-es2_2.069-1_all + mbrola-fr1_2.050-1_all + mbrola-fr4_0.0.19990521-2_all + mbrola-gr1_19990610-1_all + mbrola-gr2_0.0.20010521-2_all + mbrola-hu1_1.002-2_all + mbrola-id1_1-2_all + mbrola-it3_0.1-2_all + mbrola-it4_0.1-2_all + mbrola-la1_0.0.20050615-2_all + mbrola-mx2_0.1-1_all + mbrola-nl2_0.5-2_all + mbrola-pl1_0.1-2_all + mbrola-pt1_1.0-2_all + mbrola-ro1_1.00-2_all + mbrola-sw1_1.00-2_all + mbrola-sw2_1.0-2_all + mbrola-us1_0.3-2_all + mbrola-us2_0.1-2_all + mbrola-us3_0.1-1_all + mbrola-vz1_2-1_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + mess-data_0.146-4_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgltools-cadd_1.5.6~rc3~cvs.20120206-1_all + mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all + mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all + mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all + mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv-test_1.5.6~rc3~cvs.20120206-1_all + mgltools-pyautodock_1.5.6~rc3~cvs.20120206-1_all + mgltools-pybabel_1.5.6~rc3~cvs.20120206-1_all + mgltools-scenario2_1.5.6~rc3~cvs.20120206-1_all + mgltools-support_1.5.6~rc3~cvs.20120206-1_all + mgltools-symserv_1.5.6~rc3~cvs.20120206-1_all + mgltools-viewerframework_1.5.6~rc3~cvs.20120206-2_all + mgltools-vision_1.5.6~rc3~cvs.20120601-1_all + mgltools-visionlibraries_1.5.6~rc3~cvs.20120601-1_all + mgltools-volume_1.5.6~rc3~cvs.20120206-1_all + mgltools-webservices_1.5.6~rc3~cvs.20120206-1_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + midisport-firmware_1.2-4_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpi-specs_20040719-2_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + ngspice-doc_24-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikto_1:2.1.4-2_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + noshell_4.0.11+notdfsg1-5_all + note_1.3.7-1_all + notion-dev_3+2012042300-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nvidia-cg-doc_3.1.0013-1_all + nvidia-cuda-doc_4.2.9-2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-book-en_1.0-5_all + ocaml-book-fr_1.0-5_all + ocaml-core_3.12.0.1_all + ocaml-doc_3.12-2_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + ooohg_09.12a-8_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openttd-opensfx_0.2.3-3_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + os8_2.1-4_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + othman_0.2.7-1_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + out-of-order_1.0-2_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + paml-doc_4.5-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parmetis-doc_3.1.1-4_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + phy-spread_1.0.3-1_all + phylip-doc_1:3.69-1_all + picard-tools_1.46-1_all + picon-domains_2012.05.09-1_all + picon-misc_2010.01.02-1_all + picon-news_2010.01.02-1_all + picon-unknown_2010.01.02-1_all + picon-usenix_1995.04.13-8_all + picon-users_2012.05.14-1_all + picon-weather_2010.01.02-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex-jtex_1.7+1-13_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hijra_0.2.1-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-okasha_0.2.4-1_all + python-okasha-examples_0.2.4-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-othman_0.2.7-1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redeclipse-data_1.2-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubybook_0.2.1-1_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sauerbraten-data_0.0.20100728+repack-1_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-doc_1.4.0+r17300-1_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-ng-doc_1.4.0+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selfhtml_8.1.2-1_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgb-doc_1:20090810-1_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shapetools-tutorial_1.3-3.1_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-markup-samples_3.0.1-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + sl-modem-source_2.9.11~20110321-8+deb7u1_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmp-mibs-downloader_1.1_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + spectrum-roms_20081224-3_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spellcast-doc_1.5_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-english-czech_20120601-1_all + stardict-german-czech_20120201-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t1-xfree86-nonfree_4.2.1-3.1_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tads3-common_1:0.13-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tangerine-icon-theme_0.26.debian-3_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tar-doc_1.26-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texinfo-doc-nonfree_4.13a-1_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + thawab_3.0.13-1_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-ipafont-jisx0208_00103-19_all + ttf-ipafont-uigothic_00203-21_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-gothic-naga10_20030809-14_all + ttf-kochi-mincho_20030809-15_all + ttf-kochi-mincho-naga10_20030809-14_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-larabie-deco_1:20011216-4_all + ttf-larabie-straight_1:20011216-4_all + ttf-larabie-uncommon_1:20011216-4_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-mikachan_9.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-xfree86-nonfree_4.2.1-3.1_all + ttf-xfree86-nonfree-syriac_4.2.1-3.1_all + ttf-yanone-kaffeesatz_0.20100525-4_all + ttytter_2.1.0-1~deb7u1_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + uqm-content_0.6.0+deb1-6_all + uqm-music_0.6.0+deb1-6_all + uqm-voice_0.6.0+deb1-6_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-additions_4.1.18-1_all + virtualbox-guest-additions-iso_4.1.18-1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + vmtk_1.0.1-1_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3-recs_20110107-1_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + worldwind_0.5.0-10_all + worldwind-doc_0.5.0-10_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-naga10_1.1-13.1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfonts-x3270-misc_3.3.10ga4-2_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmame-sdl_0.146-5_all + xmame-tools_0.146-4_all + xmame-x_0.146-5_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xmess-sdl_0.146-4_all + xmess-x_0.146-4_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xml2rfc_1.36-5_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtide-data-nonfree_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yale_5.0.95-2_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zangband-data_1:2.7.5pre1-8_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zd1211-firmware_2.21.0.0-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zekr_1.0.0+repack-7_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice-manual_3.4.2-1_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3270-common_3.3.10ga4-2+b1_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + abyss_1.3.4-3_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + agrep_4.17-9_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amd-clinfo_1:12-6+point-3_amd64 + amd-libopencl1_1:12-6+point-3_amd64 + amd-opencl-dev_1:12-6+point-3_amd64 + amd-opencl-icd_1:12-6+point-3_amd64 + amd64-microcode_1.20120910-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amiwm_0.20.48-8_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blimps-examples_3.9-1_amd64 + blimps-utils_3.9-1_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdgames-nonfree_2.17-5_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + bugsx_1.08-12_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + c3270_3.3.10ga4-2+b1_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalw-mpi_0.15-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + conserver-client_8.1.18-2.2_amd64 + conserver-server_8.1.18-2.2_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + crafty_23.4-6_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cufflinks_1.3.0-2_amd64 + cultivation_9+dfsg1-1_amd64 + cuneiform_1.1.0+dfsg-4_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamips_0.2.7-0.2.8RC2-5.1_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + embassy-phylip_3.69+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + f2j_0.8.1-2_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatrat-unpack_1.1.3-2_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fglrx-atieventsd_1:12-6+point-3_amd64 + fglrx-control_1:12-6+point-3_amd64 + fglrx-driver_1:12-6+point-3_amd64 + fglrx-glx_1:12-6+point-3_amd64 + fglrx-glx-ia32_1:12-6+point-3_amd64 + fglrx-modules-dkms_1:12-6+point-3_amd64 + fglrx-source_1:12-6+point-3_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frobtads_1:0.13-2_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsl-4.1_4.1.9-7_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmap_2012-06-12-1_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel-microcode_1.20130906.1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + iozone3_397-2_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kic_2.4a-1.1_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fastcgi_2.4.7~0910052141-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libblimps3_3.9-1_amd64 + libblimps3-dev_3.9-1_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamlpdf-ocaml-dev_0.5-1+b2_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcg_3.1.0013-1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcggl_3.1.0013-1_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclamunrar6_0.96.4-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore++-dev_1.7-12_amd64 + libcore++1c2_1.7-12_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcublas4_4.2.9-2_amd64 + libcuda1_304.88-1+deb7u1_amd64 + libcuda1-ia32_304.88-1+deb7u1_amd64 + libcudart4_4.2.9-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcufft4_4.2.9-2_amd64 + libcuinj4_4.2.9-2_amd64 + libcuneiform-dev_1.1.0+dfsg-4_amd64 + libcuneiform0_1.1.0+dfsg-4_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcupti-dev_4.2.9-2_amd64 + libcupti4_4.2.9-2_amd64 + libcurand4_4.2.9-2_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcusparse4_4.2.9-2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwd_1.0.4-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfglrx_1:12-6+point-3_amd64 + libfglrx-amdxvba1_1:12-6+point-3_amd64 + libfglrx-ia32_1:12-6+point-3_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-fglrx-glx_1:12-6+point-3_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl1-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgl1-nvidia-alternatives-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-legacy-173xx-glx_173.14.35-4_amd64 + libgl1-nvidia-legacy-173xx-glx-ia32_173.14.35-4_amd64 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_amd64 + libgl1-nvidia-legacy-71xx-glx-ia32_71.86.15-3_amd64 + libgl1-nvidia-legacy-96xx-glx_96.43.23-3_amd64 + libgl1-nvidia-legacy-96xx-glx-ia32_96.43.23-3_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libglx-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjai-core-java_1.1.4-3_amd64 + libjai-imageio-core-java_1.2-3_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-perl_0.71-3+b1_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmetis-edf-dev_4.1-2-3_amd64 + libmetis-edf4.1_4.1-2-3_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmotif-dev_2.3.3-8_amd64 + libmotif4_2.3.3-8_amd64 + libmotif4-dbg_2.3.3-8_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnauty-dev_2.4r2-1_amd64 + libnauty1d_2.4r2-1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpp4_4.2.9-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvcuvid1_304.88-1+deb7u1_amd64 + libnvidia-compiler_304.88-1+deb7u1_amd64 + libnvidia-compiler-ia32_304.88-1+deb7u1_amd64 + libnvidia-ml1_304.88-1+deb7u1_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparmetis-dev_3.1.1-4_amd64 + libparmetis3.1_3.1.1-4_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtet1.4_1.4.3-1_amd64 + libtet1.4-dev_1.4.3-1_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtriangle-1.6_1.6-2_amd64 + libtriangle-dev_1.6-2_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libttspico-dev_1.0+git20110131-2_amd64 + libttspico-utils_1.0+git20110131-2_amd64 + libttspico0_1.0+git20110131-2_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvmtk-dev_1.0.1-1_amd64 + libvmtk1.0_1.0.1-1_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvbaw-dev_1:12-6+point-3_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxvmcnvidia1_304.88-1+deb7u1_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madfuload_1.2-4_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + mame_0.146-5_amd64 + mame-tools_0.146-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbrola_3.01h-6_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + mess_0.146-4_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + metis-edf_4.1-2-3_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_amd64 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motif-clients_2.3.3-8_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mssstest_3.0-3_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-dropbox_1.4.0-3_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + nauty_2.4r2-1_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperf_2.4.4-6.1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + ngspice_24-1_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notion_3+2012042300-1_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nttcp_1.47-13_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvidia-alternative_304.88-1+deb7u1_amd64 + nvidia-alternative-legacy-173xx_173.14.35-4_amd64 + nvidia-alternative-legacy-71xx_71.86.15-3_amd64 + nvidia-alternative-legacy-96xx_96.43.23-3_amd64 + nvidia-cg-dev_3.1.0013-1_amd64 + nvidia-cg-toolkit_3.1.0013-1_amd64 + nvidia-cuda-dev_4.2.9-2_amd64 + nvidia-cuda-gdb_4.2.9-2_amd64 + nvidia-cuda-toolkit_4.2.9-2_amd64 + nvidia-detect_304.88-1+deb7u1_amd64 + nvidia-glx_304.88-1+deb7u1_amd64 + nvidia-glx-ia32_304.88-1+deb7u1_amd64 + nvidia-glx-legacy_71.86.15-3_amd64 + nvidia-glx-legacy-173xx_173.14.35-4_amd64 + nvidia-glx-legacy-173xx-ia32_173.14.35-4_amd64 + nvidia-glx-legacy-71xx_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-dev_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-ia32_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_amd64 + nvidia-glx-legacy-96xx_96.43.23-3_amd64 + nvidia-glx-legacy-96xx-ia32_96.43.23-3_amd64 + nvidia-glx-legacy-dev_71.86.15-3_amd64 + nvidia-glx-legacy-ia32_71.86.15-3_amd64 + nvidia-kernel-2.6-amd64_304.88+1_amd64 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_amd64 + nvidia-kernel-amd64_304.88+1_amd64 + nvidia-kernel-dkms_304.88-1+deb7u1_amd64 + nvidia-kernel-legacy-173xx-dkms_173.14.35-4_amd64 + nvidia-kernel-legacy-173xx-source_173.14.35-4_amd64 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_amd64 + nvidia-kernel-legacy-71xx-source_71.86.15-3_amd64 + nvidia-kernel-legacy-96xx-dkms_96.43.23-3_amd64 + nvidia-kernel-legacy-96xx-source_96.43.23-3_amd64 + nvidia-kernel-legacy-source_71.86.15-3_amd64 + nvidia-kernel-source_304.88-1+deb7u1_amd64 + nvidia-libopencl1_304.88-1+deb7u1_amd64 + nvidia-libopencl1-ia32_304.88-1+deb7u1_amd64 + nvidia-opencl-common_304.88-1+deb7u1_amd64 + nvidia-opencl-dev_4.2.9-2_amd64 + nvidia-opencl-icd_304.88-1+deb7u1_amd64 + nvidia-opencl-icd-ia32_304.88-1+deb7u1_amd64 + nvidia-smi_304.88-1+deb7u1_amd64 + nvidia-vdpau-driver_304.88-1+deb7u1_amd64 + nvidia-vdpau-driver-ia32_304.88-1+deb7u1_amd64 + nvidia-visual-profiler_4.2.9-2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p7zip-rar_9.20.1~ds.1-3_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + paml_4.5-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parmetis-test_3.1.1-4_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgplot5_5.2.2-19_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phylip_1:3.69-1_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powder_117-1_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pptview_8.0-7_amd64 + pqiv_0.12-1_amd64 + pr3287_3.3.10ga4-2+b1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vmtk_1.0.1-1_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-maptools_1:0.7-38-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rar_2:4.0.b3-1_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_5.8.11-3_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3270_3.3.10ga4-2+b1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdlmame_0.146-5_amd64 + sdlmame-tools_0.146-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seaview_1:4.3.3-3_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq-gen_1.3.3-1_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgb_1:20090810-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + sift_4.0.3b-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_amd64 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + sparse_0.4.3+20110419-1_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tads2-dev_1:0.13-2_amd64 + tads3-dev_1:0.13-2_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclspice_24-1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + teamspeak-client_2.0.32-3.1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetgen_1.4.3-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + titantools_4.0.11+notdfsg1-5_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tome_2.3.5-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + triangle-bin_1.6-2_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + trn4_4.0-test77-6_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unace-nonfree_2.5-7_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar_1:4.1.4-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + wap-wml-tools_0.0.4-6_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x3270_3.3.10ga4-2+b1_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfractint_20.4.10-2_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-nvidia_304.88-1+deb7u1_amd64 + xserver-xorg-video-nvidia-legacy-173xx_173.14.35-4_amd64 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_amd64 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-3_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsnow_1:1.42-9_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zangband_1:2.7.5pre1-8_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3270-common_3.3.10ga4-2+b1_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amd-clinfo_1:12-6+point-3_i386 + amd-libopencl1_1:12-6+point-3_i386 + amd-opencl-dev_1:12-6+point-3_i386 + amd-opencl-icd_1:12-6+point-3_i386 + amd64-microcode_1.20120910-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amiwm_0.20.48-8_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axe_6.1.2-15.1_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdgames-nonfree_2.17-5_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + bugsx_1.08-12_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + c3270_3.3.10ga4-2+b1_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + conserver-client_8.1.18-2.2_i386 + conserver-server_8.1.18-2.2_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + crafty_23.4-6_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cuneiform_1.1.0+dfsg-4_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dgen_1.23-12_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + drdsl_1.2.0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamips_0.2.7-0.2.8RC2-5.1_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eagle_5.12.0-3_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + f2j_0.8.1-2_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatrat-unpack_1.1.3-2_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fglrx-atieventsd_1:12-6+point-3_i386 + fglrx-control_1:12-6+point-3_i386 + fglrx-driver_1:12-6+point-3_i386 + fglrx-glx_1:12-6+point-3_i386 + fglrx-modules-dkms_1:12-6+point-3_i386 + fglrx-source_1:12-6+point-3_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsl-4.1_4.1.9-7_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel-microcode_1.20130906.1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + iozone3_397-2_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irpas_0.10-4.1_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lgrind_3.67-3_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fastcgi_2.4.7~0910052141-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamlpdf-ocaml-dev_0.5-1+b2_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcg_3.1.0013-1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcggl_3.1.0013-1_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclamunrar6_0.96.4-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore++-dev_1.7-12_i386 + libcore++1c2_1.7-12_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcublas4_4.2.9-2_i386 + libcuda1_304.88-1+deb7u1_i386 + libcudart4_4.2.9-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcufft4_4.2.9-2_i386 + libcuinj4_4.2.9-2_i386 + libcuneiform-dev_1.1.0+dfsg-4_i386 + libcuneiform0_1.1.0+dfsg-4_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcupti-dev_4.2.9-2_i386 + libcupti4_4.2.9-2_i386 + libcurand4_4.2.9-2_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcusparse4_4.2.9-2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwd_1.0.4-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfglrx_1:12-6+point-3_i386 + libfglrx-amdxvba1_1:12-6+point-3_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-fglrx-glx_1:12-6+point-3_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl1-nvidia-alternatives_304.88-1+deb7u1_i386 + libgl1-nvidia-glx_304.88-1+deb7u1_i386 + libgl1-nvidia-legacy-173xx-glx_173.14.35-4_i386 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_i386 + libgl1-nvidia-legacy-96xx-glx_96.43.23-3_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libglx-nvidia-alternatives_304.88-1+deb7u1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpcl-dev_2.32-1_i386 + libgpcl0_2.32-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-perl_0.71-3+b1_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmotif-dev_2.3.3-8_i386 + libmotif4_2.3.3-8_i386 + libmotif4-dbg_2.3.3-8_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnauty-dev_2.4r2-1_i386 + libnauty1d_2.4r2-1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpp4_4.2.9-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvcuvid1_304.88-1+deb7u1_i386 + libnvidia-compiler_304.88-1+deb7u1_i386 + libnvidia-ml1_304.88-1+deb7u1_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparmetis-dev_3.1.1-4_i386 + libparmetis3.1_3.1.1-4_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtet1.4_1.4.3-1_i386 + libtet1.4-dev_1.4.3-1_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtriangle-1.6_1.6-2_i386 + libtriangle-dev_1.6-2_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libttspico-dev_1.0+git20110131-2_i386 + libttspico-utils_1.0+git20110131-2_i386 + libttspico0_1.0+git20110131-2_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvmtk-dev_1.0.1-1_i386 + libvmtk1.0_1.0.1-1_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvbaw-dev_1:12-6+point-3_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxvmcnvidia1_304.88-1+deb7u1_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madfuload_1.2-4_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + mame_0.146-5_i386 + mame-tools_0.146-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + martian-modem_20080625-2_i386 + martian-modem-source_20080625-2_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbrola_3.01h-6_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + mess_0.146-4_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_i386 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motif-clients_2.3.3-8_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mssstest_3.0-3_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-dropbox_1.4.0-3_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + nauty_2.4r2-1_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperf_2.4.4-6.1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notion_3+2012042300-1_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvidia-alternative_304.88-1+deb7u1_i386 + nvidia-alternative-legacy-173xx_173.14.35-4_i386 + nvidia-alternative-legacy-71xx_71.86.15-3_i386 + nvidia-alternative-legacy-96xx_96.43.23-3_i386 + nvidia-cg-dev_3.1.0013-1_i386 + nvidia-cg-toolkit_3.1.0013-1_i386 + nvidia-cuda-dev_4.2.9-2_i386 + nvidia-cuda-gdb_4.2.9-2_i386 + nvidia-cuda-toolkit_4.2.9-2_i386 + nvidia-detect_304.88-1+deb7u1_i386 + nvidia-glx_304.88-1+deb7u1_i386 + nvidia-glx-legacy_71.86.15-3_i386 + nvidia-glx-legacy-173xx_173.14.35-4_i386 + nvidia-glx-legacy-71xx_71.86.15-3_i386 + nvidia-glx-legacy-71xx-dev_71.86.15-3_i386 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_i386 + nvidia-glx-legacy-96xx_96.43.23-3_i386 + nvidia-glx-legacy-dev_71.86.15-3_i386 + nvidia-kernel-2.6-486_304.88+1_i386 + nvidia-kernel-2.6-686-pae_304.88+1_i386 + nvidia-kernel-2.6-amd64_304.88+1_i386 + nvidia-kernel-3.2.0-4-486_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-686-pae_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-486_304.88+1_i386 + nvidia-kernel-686-pae_304.88+1_i386 + nvidia-kernel-amd64_304.88+1_i386 + nvidia-kernel-dkms_304.88-1+deb7u1_i386 + nvidia-kernel-legacy-173xx-dkms_173.14.35-4_i386 + nvidia-kernel-legacy-173xx-source_173.14.35-4_i386 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_i386 + nvidia-kernel-legacy-71xx-source_71.86.15-3_i386 + nvidia-kernel-legacy-96xx-dkms_96.43.23-3_i386 + nvidia-kernel-legacy-96xx-source_96.43.23-3_i386 + nvidia-kernel-legacy-source_71.86.15-3_i386 + nvidia-kernel-source_304.88-1+deb7u1_i386 + nvidia-libopencl1_304.88-1+deb7u1_i386 + nvidia-opencl-common_304.88-1+deb7u1_i386 + nvidia-opencl-dev_4.2.9-2_i386 + nvidia-opencl-icd_304.88-1+deb7u1_i386 + nvidia-smi_304.88-1+deb7u1_i386 + nvidia-vdpau-driver_304.88-1+deb7u1_i386 + nvidia-visual-profiler_4.2.9-2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p7zip-rar_9.20.1~ds.1-3_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parmetis-test_3.1.1-4_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgplot5_5.2.2-19_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phylip_1:3.69-1_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pptview_8.0-7_i386 + pqiv_0.12-1_i386 + pr3287_3.3.10ga4-2+b1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vmtk_1.0.1-1_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-maptools_1:0.7-38-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rar_2:4.0.b3-1_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_5.8.11-3_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3270_3.3.10ga4-2+b1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdlmame_0.146-5_i386 + sdlmame-tools_0.146-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seaview_1:4.3.3-3_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq-gen_1.3.3-1_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgb_1:20090810-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_i386 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + sparse_0.4.3+20110419-1_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellcast_1.0-21_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + teamspeak-client_2.0.32-3.1_i386 + teamspeak-server_2.0.24.1+debian-1.1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetgen_1.4.3-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + titantools_4.0.11+notdfsg1-5_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tome_2.3.5-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + triangle-bin_1.6-2_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + trn_3.6-23_i386 + trn4_4.0-test77-6_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unace-nonfree_2.5-7_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar_1:4.1.4-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + wap-wml-tools_0.0.4-6_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x3270_3.3.10ga4-2+b1_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfractint_20.4.10-2_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmame-svga_0.146-5_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-nvidia_304.88-1+deb7u1_i386 + xserver-xorg-video-nvidia-legacy-173xx_173.14.35-4_i386 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_i386 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-3_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zangband_1:2.7.5pre1-8_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot2Test_gold new file mode 100644 index 00000000..530a9754 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot2Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap2 successfully created. +You can run 'aptly publish snapshot snap2' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot2Test_snapshot_diff b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot2Test_snapshot_diff new file mode 100644 index 00000000..cf0b7406 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot2Test_snapshot_diff @@ -0,0 +1 @@ +Snapshots are identical. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot3Test_gold new file mode 100644 index 00000000..eb356509 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot3Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap4 successfully created. +You can run 'aptly publish snapshot snap4' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot3Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot3Test_snapshot_show new file mode 100644 index 00000000..12839e24 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot3Test_snapshot_show @@ -0,0 +1,57927 @@ +Name: snap4 +Created At: 2014-03-04 17:54:07 MSK +Description: Merged from sources: 'snap1', 'snap2', 'snap3' +Number of packages: 57922 +Packages: + 0ad-data_0.0.14-1~bpo70+1_all + 0ad-data-common_0.0.14-1~bpo70+1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + abs-guide_6.5-1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adequate_0.11.3~bpo70+1_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + album_4.06-2_all + album-data_4.05-2_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-arena-data_7.53-1_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6.0-1~bpo70+1_all + amarok-doc_2.6.0-1~bpo70+1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoeba-data_1.1-6_all + amoebax-data_0.2.1+dfsg-1_all + ampache_3.6-git408e713+dfsg-4~bpo70+1_all + ampache-common_3.6-git408e713+dfsg-4~bpo70+1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciidoctor_0.1.3-1~bpo70+1_all + asciidoctor-doc_0.1.3-1~bpo70+1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + assaultcube-data_1.1.0.4+repack1-2.1~deb7u1_all + asterisk-config_1:11.7.0~dfsg-1~bpo70+1_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:11.7.0~dfsg-1~bpo70+1_all + asterisk-doc_1:11.7.0~dfsg-1~bpo70+1_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es_1.4-1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + astromenace-data-src_1.3.2+repack-1~bpo70+1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atmel-firmware_1.3-4_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autodocktools_1.5.6~rc3~cvs.20120206-1_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automake1.9-doc_1.9.6-1_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.3-1~bpo7+1_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bird6_1.4.0-1~bpo70+1_all + bison-doc_1:2.5-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.5-3~bpo70+1_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-firmware_1.2-3_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.65+dfsg-3~bpo70+1_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + boinc-dev_7.0.65+dfsg-3~bpo70+1_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + bosixnet-daemon_1.6-2~bpo70+1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + broadcom-sta-common_5.100.82.112-8_all + broadcom-sta-dkms_5.100.82.112-8_all + broadcom-sta-source_5.100.82.112-8_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + bup-doc_0.25-1~bpo70+1_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_1.22.0+dfsg1-1~bpo70+1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + calypso_1.3~bpo70+1_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cclib-data_1.0.1-3_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + celestia-common-nonfree_1.6.1-1_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.2.2p3-1~bpo70+1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.2-1~bpo70+1_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.9.3-1~bpo70+1_all + claws-mail-extra-plugins_3.9.3-1~bpo70+1_all + claws-mail-i18n_3.9.3-1~bpo70+1_all + claws-mail-plugins_3.9.3-1~bpo70+1_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.9.3-1~bpo70+1_all + clawsker_0.7.10-1~bpo70+1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + cloud-init_0.7.2-3~bpo70+1_all + cloud-initramfs-dyn-netconf_0.18.debian3~bpo70+1_all + cloud-initramfs-growroot_0.18.debian3~bpo70+1_all + cloud-initramfs-rescuevol_0.18.debian3~bpo70+1_all + cloud-utils_0.26-2~bpo70+1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.11.1-1~bpo70+1_all + cmake-doc_2.8.11.1-1~bpo70+1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_13.12-1~bpo70+1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coffeescript_1.4.0-1~bpo7+1_all + coffeescript-doc_1.4.0-1~bpo7+1_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colobot-common_0.1.2-3~bpo70+2_all + colobot-common-sounds_0.1.2-3~bpo70+2_all + colobot-common-textures_0.1.2-3~bpo70+2_all + colobot-dev-doc_0.1.2-3~bpo70+2_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_5.1.1~bpo70+1_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-doc-nonfree_2012.06.27-2_all + context-modules_20120611-1_all + context-nonfree_2007.03.22-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-doc_8.3pl4-1_all + coq-doc-html_8.3pl4-1_all + coq-doc-pdf_8.3pl4-1_all + coq-theories_8.3.pl4+dfsg-2_all + core-network_4.6-2~bpo70+1_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cpp-4.4-doc_4.4.7-3_all + cpp-4.6-doc_4.6.3-2_all + cpp-4.7-doc_4.7.2-2_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crash-whitepaper_1.0-1.1_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.9.9-1~bpo7+1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.3.8-1~bpo70+1_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cuneiform-common_1.1.0+dfsg-4_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + cython-doc_0.19.1+git34-gac3e3a2-1~bpo70+1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-firmware-nonfree_2.6.1-1_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-lan-config_0.13~bpo70+4_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.55~bpo70+1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-python_1.20131021-1~bpo70+1_all + dh-systemd_1.11~bpo70.1_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + doc-rfc_20120225-2_all + doc-rfc-experimental_20120225-2_all + doc-rfc-fyi-bcp_20120225-2_all + doc-rfc-informational_20120225-2_all + doc-rfc-misc_20120225-2_all + doc-rfc-old-std_20120225-2_all + doc-rfc-others_20120225-2_all + doc-rfc-std_20120225-2_all + doc-rfc-std-proposed_20120225-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + doom-wad-shareware_1.9.fixed-2_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + dput-ng_1.7~bpo70+1_all + dput-ng-doc_1.7~bpo70+1_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + droopy_0.20131121-1~bpo70+1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.26-1~bpo70+1_all + drupal7-mod-libraries_2.1-3~bpo70+1_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + eagle-data_5.12.0-3_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ebook-dev-alp_200407-1_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.9-3~bpo70+1_all + eiskaltdcpp-cli_2.2.9-3~bpo70+1_all + eiskaltdcpp-common_2.2.9-3~bpo70+1_all + eiskaltdcpp-emoticons_2.2.9-3~bpo70+1_all + eiskaltdcpp-gtk-data_2.2.9-3~bpo70+1_all + eiskaltdcpp-qt-data_2.2.9-3~bpo70+1_all + eiskaltdcpp-scripts_2.2.9-3~bpo70+1_all + eiskaltdcpp-sounds_2.2.9-3~bpo70+1_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elmer-doc_2014.02.06-1~bpo70+1_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-common-non-dfsg_23.4+1-1_all + emacs23-el_23.4+1-4_all + emacs24-common-non-dfsg_24.1+1-1_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-doc_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-ic-java_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-jinterface_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-manpages_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-mode_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-nox_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-src_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-x11_1:16.b.3.1-dfsg-1~bpo70+1_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etoys_4.0.2340-1_all + etoys-doc_4.0.2340-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_3.3.2-1~bpo70+1_all + exaile-plugin-contextinfo_3.3.2-1~bpo70+1_all + exaile-plugin-ipod_3.3.2-1~bpo70+1_all + exaile-plugin-moodbar_3.3.2-1~bpo70+1_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.7.0-1~bpo70+1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.8.3-2~bpo70+1_all + fcitx-config-common_0.4.7-1~bpo70+1_all + fcitx-data_1:4.2.8.3-2~bpo70+1_all + fcitx-frontend-all_1:4.2.8.3-2~bpo70+1_all + fcitx-table-all_1:4.2.8.3-2~bpo70+1_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.11~bpo70+1_all + fdpowermon-icons_1.11~bpo70+1_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-oald_1.4.0-3.1_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-ellpc11k_1.4.0-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.7-2~bpo70+1_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-adi_0.40~bpo70+1_all + firmware-atheros_0.40~bpo70+1_all + firmware-bnx2_0.40~bpo70+1_all + firmware-bnx2x_0.40~bpo70+1_all + firmware-brcm80211_0.40~bpo70+1_all + firmware-intelwimax_0.40~bpo70+1_all + firmware-ipw2x00_0.40~bpo70+1_all + firmware-ivtv_0.40~bpo70+1_all + firmware-iwlwifi_0.40~bpo70+1_all + firmware-libertas_0.40~bpo70+1_all + firmware-linux_0.40~bpo70+1_all + firmware-linux-free_3.2_all + firmware-linux-nonfree_0.40~bpo70+1_all + firmware-myricom_0.40~bpo70+1_all + firmware-netxen_0.40~bpo70+1_all + firmware-qlogic_0.40~bpo70+1_all + firmware-ralink_0.40~bpo70+1_all + firmware-realtek_0.40~bpo70+1_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + foiltex_2.1.4b-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-font-awesome_3.2.1~dfsg-2~bpo7+1_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipafont-nonfree-jisx0208_00103-19_all + fonts-ipafont-nonfree-uigothic_00203-21_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-larabie-deco_1:20011216-4_all + fonts-larabie-straight_1:20011216-4_all + fonts-larabie-uncommon_1:20011216-4_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mathjax_2.2-1~bpo70+1_all + fonts-mathjax-extras_2.2-1~bpo70+1_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-mikachan_9.1-8_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-moe-standard-kai_20120530-1_all + fonts-moe-standard-song_20120530-1_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-noto_2013-04-11-2~bpo70+1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.3+LibO4.1.4-2~bpo70+1_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freecad-doc_0.13.2800-dfsg-1~bpo70+1_all + freeciv-data_2.4.2-1~bpo70+1_all + freeciv-sound-standard_2.4.2-1~bpo70+1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogatto-data_1.2+dfsg-1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fs-uae-launcher_2.2.3+dfsg-4~bpo70+1_all + fs-uae-netplay-server_2.2.3+dfsg-4~bpo70+1_all + fsl_4.1.9-7_all + fsl-doc-4.1_4.1.9-7_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti_2.9.4-1~bpo70+1_all + ganeti-doc_2.9.4-1~bpo70+1_all + ganeti-instance-debootstrap_0.14-1~bpo70+1_all + ganeti2_2.9.4-1~bpo70+1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gawk-doc_4.0.1+ds-1_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-doc_4.4.7-3_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-doc_4.6.3-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-doc_4.7.2-2_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-doc-base_4.7.2-2_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gccgo-4.6-doc_4.6.3-2_all + gccgo-4.7-doc_4.7.2-2_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-doc_4.6.3-2_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-doc_4.7.2-2_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-doc_7.4.1-2_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20131007-1~bpo70+1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.3-1~bpo7+1_all + gettext-el_0.18.3-1~bpo7+1_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-4.4-doc_4.4.7-3_all + gfortran-4.6-doc_4.6.3-2_all + gfortran-4.7-doc_4.7.2-2_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.8.5.3-1~bpo70+1_all + git-arch_1:1.8.5.3-1~bpo70+1_all + git-buildpackage_0.6.1~bpo70+1_all + git-bzr_1:1.8.5.3-1~bpo70+1_all + git-cola_1.4.3.5-1_all + git-core_1:1.8.5.3-1~bpo70+1_all + git-cvs_1:1.8.5.3-1~bpo70+1_all + git-daemon-run_1:1.8.5.3-1~bpo70+1_all + git-daemon-sysvinit_1:1.8.5.3-1~bpo70+1_all + git-doc_1:1.8.5.3-1~bpo70+1_all + git-dpm_0.8.4-1_all + git-el_1:1.8.5.3-1~bpo70+1_all + git-email_1:1.8.5.3-1~bpo70+1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.8.5.3-1~bpo70+1_all + git-man_1:1.8.5.3-1~bpo70+1_all + git-mediawiki_1:1.8.5.3-1~bpo70+1_all + git-remote-gcrypt_0.20130908-5~bpo70+1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.8.5.3-1~bpo70+1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.8.5.3-1~bpo70+1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitolite3_3.5.2-1~bpo70+1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.8.5.3-1~bpo70+1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glibc-doc-reference_2.13-1_all + gliese_3.0.95-2_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmp-doc_5.0.5-1_all + gmpc-data_11.8.16-6_all + gmsh-doc_2.7.0.dfsg-1~bpo70+1_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20140121+dfsg-1~bpo70+1_all + gnash-doc_0.8.11~git20140121+dfsg-1~bpo70+1_all + gnash-opengl_0.8.11~git20140121+dfsg-1~bpo70+1_all + gnat-4.4-doc_4.4.7-3_all + gnat-4.6-doc_4.6.3-2_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extension-weather_0~20130619.gitf74de79-2~bpo70+1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.4-1~bpo70+1_all + gnuplot-doc_4.6.4-1~bpo70+1_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.7.2.1-5~bpo70+1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls-doc_3.2.10-2~bpo70+3_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-other_6.0-4_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsl-doc-info_1.15-1_all + gsl-doc-pdf_1.15-1_all + gsl-ref-html_1.15-1_all + gsl-ref-psdoc_1.15-1_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gstreamer1.0-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-bad-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-base-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-good-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-ugly-doc_1.0.8-1~bpo70+1_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-1.8-doc-non-dfsg_1.8.8+1-1.1_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.1.0-2~bpo70+1_all + gyp_0.1~svn1729-3~bpo7+1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.35-1~bpo70+1_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.20.5-2~bpo70+1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hevea-doc_1.10-3_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.7.1-2~bpo70+1_all + hgview-common_1.7.1-2~bpo70+1_all + hgview-curses_1.7.1-2~bpo70+1_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hijra-applet_0.2.1-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + how-can-i-help_4~bpo70+1_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httpry-daemon_0.1.7-3~bpo70+1_all + httpry-tools_0.1.7-3~bpo70+1_all + httrack-doc_3.46.1-1_all + hugin-data_2013.0.0+dfsg-1~bpo70+1_all + human-icon-theme_0.28.debian-3.3_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwb_1:040412-3_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + i18nspector_0.11.1-1~bpo70+1_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.5.1.is.1.4.2-1~bpo70+1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.2-1~bpo70+1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.5.0.is.1.4.99.1-1~bpo70+1_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles_2.0.1-1_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.9.3-2~bpo70+1_all + icinga-doc_1.9.3-2~bpo70+1_all + icinga-web_1.9.2+dfsg1-1~bpo70+1_all + icinga-web-pnp_1.9.2+dfsg1-1~bpo70+1_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + igv_2.0.30-1_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20130904.1~bpo70+1_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.115~bpo70+1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-package_0.53~bpo70+1_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jhove_1.6+dfsg-1_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.25-1~bpo70+1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kanla_1.4-1~bpo70+1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + keysync_0.2-2~bpo70+1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20140121+dfsg-1~bpo70+1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knot-doc_1.4.3-2~bpo70+1_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + kstars-data-extra-tycho2_1.1r1-9_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.1.0beta-1~bpo70+1_all + libaqbanking-data_5.3.5beta-2~bpo70+1_all + libaqbanking-doc_5.1.0beta-1~bpo70+1_all + libaqbanking-doc_5.3.5beta-2~bpo70+1_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libboinc-app-dev_7.0.65+dfsg-3~bpo70+1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbread-board-perl_0.29-1~bpo70+1_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcajun-dev_2.0.3-1~bpo70+1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcoin80-doc_3.1.4~abc9f50-3~bpo70+1_all + libcoin80-runtime_3.1.4~abc9f50-3~bpo70+1_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcolt-java_1.2.0~nojar-2_all + libcolt-java-doc_1.2.0~nojar-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore++-demo_1.7-12_all + libcore++-doc_1.7-12_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcupti-doc_5.0.35-8~bpo70+1_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwd-doc_1.0.4-1_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-dev_3.2.0-6~bpo70+1_all + libeigen3-doc_3.2.0-6~bpo70+1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + libertas-firmware_9.70.7.p0.0-2_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libf2j-java_0.8.1-2_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libfko-doc_2.5.1-1~bpo70+1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_1.1.2.2-1~bpo70+1_all + libfm-doc_1.1.2.2-1~bpo70+1_all + libfm-gtk-data_1.1.2.2-1~bpo70+1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeotiff-epsg_1.3.0-1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-async-doc_2.0.1.3-1~bpo70+1_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-doctest-doc_0.9.1-1~bpo70+1_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-generic-deriving-doc_1.4.0-2~bpo70+1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.4-3~bpo70+1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-info-doc_0.2.0.1-2~bpo70+1_all + libghc-network-multicast-doc_0.0.10-1~bpo70+1_all + libghc-network-protocol-xmpp-doc_0.4.4-2~bpo70+1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-safesemaphore-doc_0.9.0-1~bpo70+1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-hamlet-doc_0.3.0.1-1~bpo70+1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.10.0beta-1~bpo70+1_all + libgwenhywfar-doc_4.10.0beta-1~bpo70+1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.05-1~bpo70+1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjabsorb-java_1.3-2_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjai-core-java-doc_1.1.4-3_all + libjai-imageio-core-java-doc_1.2-3_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-chosen_0.9.11-1~bpo7+1_all + libjs-codemirror_2.23-1_all + libjs-coffeescript_1.4.0-1~bpo7+1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jcrop_0.9.12+dfsg-1~bpo70+1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-minicolors_1.2.1-1~bpo7+1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-timepicker_1.2-1~bpo70+1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.10.1+dfsg-1~bpo70+1_all + libjs-jquery-ui-docs_1.10.1+dfsg-1~bpo70+1_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-less_1.4.2-1~bpo70+1_all + libjs-mathjax_2.2-1~bpo70+1_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-pdf_0.8.37+dfsg-1~bpo7+1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-twitter-bootstrap_2.0.2+dfsg-4~bpo70+1_all + libjs-twitter-bootstrap-docs_2.0.2+dfsg-4~bpo70+1_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-c-doc_0.11-3~bpo7+1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatch-perl-perl_0.04-1~bpo70+1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sender-perl_0.8.16-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_3.97+dfsg-1~bpo70+1_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-twitter-perl_4.01002-1~bpo70+1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_1.1-1~bpo70+1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-middleware-test-stashwarnings-perl_0.07-1~bpo70+1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.26-1~bpo70+1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.7-2~bpo70+1_all + libpurple-dev_2.10.7-2~bpo70+1_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.7.6-1~bpo70+1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:4.1.4-2~bpo70+1_all + libreoffice-dev-doc_1:4.1.4-2~bpo70+1_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:4.1.4-2~bpo70+1_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:4.1.4-2~bpo70+1_all + libreoffice-help-cs_1:4.1.4-2~bpo70+1_all + libreoffice-help-da_1:4.1.4-2~bpo70+1_all + libreoffice-help-de_1:4.1.4-2~bpo70+1_all + libreoffice-help-dz_1:4.1.4-2~bpo70+1_all + libreoffice-help-el_1:4.1.4-2~bpo70+1_all + libreoffice-help-en-gb_1:4.1.4-2~bpo70+1_all + libreoffice-help-en-us_1:4.1.4-2~bpo70+1_all + libreoffice-help-es_1:4.1.4-2~bpo70+1_all + libreoffice-help-et_1:4.1.4-2~bpo70+1_all + libreoffice-help-eu_1:4.1.4-2~bpo70+1_all + libreoffice-help-fi_1:4.1.4-2~bpo70+1_all + libreoffice-help-fr_1:4.1.4-2~bpo70+1_all + libreoffice-help-gl_1:4.1.4-2~bpo70+1_all + libreoffice-help-hi_1:4.1.4-2~bpo70+1_all + libreoffice-help-hu_1:4.1.4-2~bpo70+1_all + libreoffice-help-it_1:4.1.4-2~bpo70+1_all + libreoffice-help-ja_1:4.1.4-2~bpo70+1_all + libreoffice-help-km_1:4.1.4-2~bpo70+1_all + libreoffice-help-ko_1:4.1.4-2~bpo70+1_all + libreoffice-help-nl_1:4.1.4-2~bpo70+1_all + libreoffice-help-om_1:4.1.4-2~bpo70+1_all + libreoffice-help-pl_1:4.1.4-2~bpo70+1_all + libreoffice-help-pt_1:4.1.4-2~bpo70+1_all + libreoffice-help-pt-br_1:4.1.4-2~bpo70+1_all + libreoffice-help-ru_1:4.1.4-2~bpo70+1_all + libreoffice-help-sk_1:4.1.4-2~bpo70+1_all + libreoffice-help-sl_1:4.1.4-2~bpo70+1_all + libreoffice-help-sv_1:4.1.4-2~bpo70+1_all + libreoffice-help-tr_1:4.1.4-2~bpo70+1_all + libreoffice-help-vi_1:4.1.4-2~bpo70+1_all + libreoffice-help-zh-cn_1:4.1.4-2~bpo70+1_all + libreoffice-help-zh-tw_1:4.1.4-2~bpo70+1_all + libreoffice-java-common_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-af_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ar_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-as_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ast_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-be_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-bg_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-bn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-br_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-bs_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ca_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-cs_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-cy_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-da_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-de_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-dz_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-el_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-en-gb_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-en-za_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-eo_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-es_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-et_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-eu_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-fa_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-fi_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-fr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ga_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-gl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-gu_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-he_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-hi_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-hr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-hu_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-id_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-in_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-is_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-it_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ja_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ka_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-kk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-km_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ko_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ku_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-lt_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-lv_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-mk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ml_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-mn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-mr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nb_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ne_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nso_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-oc_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-om_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-or_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pa-in_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pt_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pt-br_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ro_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ru_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-rw_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-si_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ss_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-st_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sv_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ta_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-te_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-tg_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-th_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-tn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-tr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ts_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ug_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-uk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-uz_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ve_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-vi_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-xh_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-za_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-zh-cn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-zh-tw_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-zu_1:4.1.4-2~bpo70+1_all + libreoffice-librelogo_1:4.1.4-2~bpo70+1_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-presenter-console_1:4.1.4-2~bpo70+1_all + libreoffice-report-builder_1:4.1.4-2~bpo70+1_all + libreoffice-script-provider-bsh_1:4.1.4-2~bpo70+1_all + libreoffice-script-provider-js_1:4.1.4-2~bpo70+1_all + libreoffice-script-provider-python_1:4.1.4-2~bpo70+1_all + libreoffice-style-crystal_1:4.1.4-2~bpo70+1_all + libreoffice-style-galaxy_1:4.1.4-2~bpo70+1_all + libreoffice-style-hicontrast_1:4.1.4-2~bpo70+1_all + libreoffice-style-oxygen_1:4.1.4-2~bpo70+1_all + libreoffice-style-tango_1:4.1.4-2~bpo70+1_all + libreoffice-subsequentcheckbase_1:4.1.4-2~bpo70+1_all + libreoffice-wiki-publisher_1.1.2+LibO4.1.4-2~bpo70+1_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.5.3-2~bpo70+1_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libserver-starter-perl_0.15-1~bpo70+1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsipxtapi-doc_3.3.0~test12-2~bpo70+1_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.12.6-1~bpo70+2_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstar-parser-perl_0.59-3_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-10~bpo70+1_all + libsunflow-java-doc_0.07.2.svn396+dfsg-10~bpo70+1_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.9.1-2~bpo70+1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_2.00-1~bpo70+1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libttspico-data_1.0+git20110131-2_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-1.0-doc_2:1.0.17-1~bpo70+1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvideo-info-perl_0.993-2_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_1.2.1-1~bpo70+1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.10.5-1~bpo70+1_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libworldwind-java_0.5.0-10_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.5.3-2~bpo70+1_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.15-1~bpo70+1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lime-forensics-dkms_1.1-r17+dfsg-2~bpo70+1_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.21~bpo70+1_all + linux-base_3.5_all + linux-doc_3.12+55~bpo70+1_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.12_3.12.9-1~bpo70+1_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.12_3.12.9-1~bpo70+1_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.12+55~bpo70+1_all + linux-source-2.6_1:3.2+46_all + linux-source-3.12_3.12.9-1~bpo70+1_all + linux-source-3.2_3.2.54-2_all + linux-support-3.12-0.bpo.1_3.12.9-1~bpo70+1_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.12+55~bpo70+1_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-debconfig_4.0~alpha31-1~bpo70+1_all + live-debconfig-doc_4.0~alpha31-1~bpo70+1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lugaru-data_0~20110520.1+hge4354-1_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + make-doc_3.81-5.1_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-posix_2.16-1_all + manpages-posix-dev_2.16-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mbrola-af1_0.0.20040426-2_all + mbrola-br1_2.021-1_all + mbrola-br3_2.021-2_all + mbrola-cr1_0.0.19981028-2_all + mbrola-cz2_0.2-2_all + mbrola-de4_0.0.20020812-1_all + mbrola-de5_1.0-1_all + mbrola-de6_0.0.20021125-2_all + mbrola-de7_0.0.20030404-2_all + mbrola-ee1_0.0.20020407-1_all + mbrola-en1_19980910-2_all + mbrola-es1_0.0.19980610-2_all + mbrola-es2_2.069-1_all + mbrola-fr1_2.050-1_all + mbrola-fr4_0.0.19990521-2_all + mbrola-gr1_19990610-1_all + mbrola-gr2_0.0.20010521-2_all + mbrola-hu1_1.002-2_all + mbrola-id1_1-2_all + mbrola-it3_0.1-2_all + mbrola-it4_0.1-2_all + mbrola-la1_0.0.20050615-2_all + mbrola-mx2_0.1-1_all + mbrola-nl2_0.5-2_all + mbrola-pl1_0.1-2_all + mbrola-pt1_1.0-2_all + mbrola-ro1_1.00-2_all + mbrola-sw1_1.00-2_all + mbrola-sw2_1.0-2_all + mbrola-us1_0.3-2_all + mbrola-us2_0.1-2_all + mbrola-us3_0.1-1_all + mbrola-vz1_2-1_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.8.2-1~bpo70+1_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + mess-data_0.146-4_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgltools-cadd_1.5.6~rc3~cvs.20120206-1_all + mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all + mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all + mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all + mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv-test_1.5.6~rc3~cvs.20120206-1_all + mgltools-pyautodock_1.5.6~rc3~cvs.20120206-1_all + mgltools-pybabel_1.5.6~rc3~cvs.20120206-1_all + mgltools-scenario2_1.5.6~rc3~cvs.20120206-1_all + mgltools-support_1.5.6~rc3~cvs.20120206-1_all + mgltools-symserv_1.5.6~rc3~cvs.20120206-1_all + mgltools-viewerframework_1.5.6~rc3~cvs.20120206-2_all + mgltools-vision_1.5.6~rc3~cvs.20120601-1_all + mgltools-visionlibraries_1.5.6~rc3~cvs.20120601-1_all + mgltools-volume_1.5.6~rc3~cvs.20120206-1_all + mgltools-webservices_1.5.6~rc3~cvs.20120206-1_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + midisport-firmware_1.2-4_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mikutter_0.2.2.1476+dfsg-2~bpo70+1_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirall-doc_1.5.0+dfsg-4~bpo70+1_all + mirall-l10n_1.5.0+dfsg-4~bpo70+1_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mock_1.1.33-1~bpo7+1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.6~bpo70+1_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysign_1.1~bpo70+1_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpi-specs_20040719-2_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.19-2~bpo70+1_all + munin-async_2.0.19-2~bpo70+1_all + munin-common_2.0.19-2~bpo70+1_all + munin-doc_2.0.19-2~bpo70+1_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.19-2~bpo70+1_all + munin-plugins-core_2.0.19-2~bpo70+1_all + munin-plugins-extra_2.0.19-2~bpo70+1_all + munin-plugins-java_2.0.19-2~bpo70+1_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.5-1~bpo70+1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-5~bpo7+1_all + nagios3-doc_3.4.1-5~bpo7+1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.4.4-1~bpo70+1_all + nginx-common_1.4.4-1~bpo70+1_all + nginx-doc_1.4.4-1~bpo70+1_all + nginx-naxsi-ui_1.4.4-1~bpo70+1_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + ngspice-doc_24-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikto_1:2.1.4-2_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + node-less_1.4.2-1~bpo70+1_all + node-uglify_1.3.4-1~bpo7+1_all + nodejs-legacy_0.10.21~dfsg1-1~bpo7+1_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + noshell_4.0.11+notdfsg1-5_all + note_1.3.7-1_all + notion-dev_3+2012042300-1_all + notmuch-emacs_0.16-1~bpo70+1_all + notmuch-mutt_0.16-1~bpo70+1_all + notmuch-vim_0.16-1~bpo70+1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nvidia-cg-doc_3.1.0013-1_all + nvidia-cuda-doc_5.0.35-8~bpo70+1_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + obfsproxy_0.2.6-2~bpo70+1_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-book-en_1.0-5_all + ocaml-book-fr_1.0-5_all + ocaml-core_3.12.0.1_all + ocaml-doc_3.12-2_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + ooohg_09.12a-8_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-graphics-data_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-hypertex-data_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-source_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-test_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-tex_1.5.0~svn3056+ds-1~bpo70+1_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.6-1~bpo70+1_all + openafs-modules-dkms_1.6.6-1~bpo70+1_all + openafs-modules-source_1.6.6-1~bpo70+1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.1+svn1229-1~bpo70+2_all + openbios-sparc_1.1+svn1229-1~bpo70+2_all + openbmap-logger_0.4.0-6_all + openbox-gnome-session_3.5.2-6~bpo70+1_all + openbox-kde-session_3.5.2-6~bpo70+1_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2013.06.28-2~bpo70+1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO4.1.4-2~bpo70+1_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_13.11.1~bpo60+1_all + opensaml2-schemas_2.5.3-2~bpo70+1_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstack-debian-images_0.5~bpo70+1_all + openstack-pkg-tools_8~bpo70+1_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openttd-opensfx_0.2.3-3_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_8.0.7-2~bpo70+1_all + origami_0.7.4-1_all + os8_2.1-4_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + othman_0.2.7-1_all + otrs_3.2.11-1~bpo70+1_all + otrs2_3.2.11-1~bpo70+1_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + out-of-order_1.0-2_all + overgod-data_1.0-1.1_all + overlayroot_0.18.debian3~bpo70+1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + owncloud_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-client-doc_1.5.0+dfsg-4~bpo70+1_all + owncloud-client-l10n_1.5.0+dfsg-4~bpo70+1_all + owncloud-doc_0~20131114-1~bpo70+1_all + owncloud-mysql_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-pgsql_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-sqlite_5.0.14.a+dfsg-1~bpo70+2_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + paml-doc_4.5-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_4.0.1-1~bpo70+1_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.5-1~bpo70+1_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parmetis-doc_3.1.1-4_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + pass_1.4.2-1~bpo70+1_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_49-2~bpo70+1_all + pear-channels_0~20131124-1~bpo70+1_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pg-activity_1.1.1-1~bpo70+1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-aws-sdk_1.5.6.2-1~bpo70+1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-dropbox_1.0.0-1~bpo70+1_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-google-api-php-client_0.6.2-1~bpo70+1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-irods-prods_3.3.0~beta1-1~bpo70+1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-patchwork-utf8_1.1.7-1~bpo70+1_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-sabre-dav_1.7.6+dfsg-2~bpo70+1_all + php-sabre-vobject_2.0.7-1~bpo70+1_all + php-sabredav_1.7.6+dfsg-2~bpo70+1_all + php-seclib_0.3.5-2~bpo70+1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-routing_2.0.19-1~bpo70+1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + phy-spread_1.0.3-1_all + phylip-doc_1:3.69-1_all + picard-tools_1.46-1_all + picon-domains_2012.05.09-1_all + picon-misc_2010.01.02-1_all + picon-news_2010.01.02-1_all + picon-unknown_2010.01.02-1_all + picon-usenix_1995.04.13-8_all + picon-users_2012.05.14-1_all + picon-weather_2010.01.02-1_all + pidgin-data_2.10.7-2~bpo70+1_all + pidgin-dev_2.10.7-2~bpo70+1_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.56~bpo70+1_all + piuparts-common_0.56~bpo70+1_all + piuparts-master_0.56~bpo70+1_all + piuparts-slave_0.56~bpo70+1_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_1.9~bpo70+1_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.3.6+dfsg1-1~bpo70+1_all + plt-scheme-doc_5.3.6+dfsg1-1~bpo70+1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_1.0.1-2~bpo70+1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postbooks-schema-demo_4.1.0-1~bpo70+1_all + postbooks-schema-empty_4.1.0-1~bpo70+1_all + postbooks-schema-quickstart_4.1.0-1~bpo70+1_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.35-1~bpo70+1_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.16.285-1~bpo70+1_all + psi-plus-l10n_0.16.285-1~bpo70+1_all + psi-plus-skins_0.16.285-1~bpo70+1_all + psi-plus-sounds_0.16.285-1~bpo70+1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex-jtex_1.7+1-13_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pv-grub-menu_1.2.1~bpo70+1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configparser_3.3.0r2-1~bpo70+1_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.9.1-1~bpo70+1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21+nmu2~bpo70+1_all + python-debianbts_1.11_all + python-debiancontributors_0.6-1~bpo70+2_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-dirspec_4.2.0-1~bpo70+1_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.5.2-1~bpo70+1_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.5.2-1~bpo70+1_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-jsonfield_0.9.12-1~bpo70+1_all + python-django-ldapdb_0.2.0-1~bpo70+2_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.2-1~bpo70+1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-dput_1.7~bpo70+1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-fedmsg_0.7.1-1~bpo70+1_all + python-fedmsg-doc_0.7.1-1~bpo70+1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-ganeti-rapi_2.9.4-1~bpo70+1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hijra_0.2.1-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.5.1.is.1.4.2-1~bpo70+1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_2.0.0-1~bpo70+1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kitchen_1.1.1-1~bpo70+1_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libturpial_1.6.0-1~bpo70+1_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_3.3.1-1~bpo70+1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-moksha.common_1.2.0-1~bpo70+1_all + python-moksha.hub_1.2.1-1~bpo70+1_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.16-1~bpo70+1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-okasha_0.2.4-1_all + python-okasha-examples_0.2.4-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-othman_0.2.7-1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-paisley_0.3.1-1~bpo70+1_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-parsley_1.2-1~bpo70+1_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pgpdump_1.4-1~bpo70+1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-potr_1.0.0-1~bpo70+1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.6+dfsg-1~bpo70+1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.6-1~bpo70+1_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pyptlib_0.0.5-1~bpo70+1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrcode_4.0.1-2~bpo70+1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_2.0.0-1~bpo70+1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.phpdomain_0.1.4-1~bpo70+1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stomper_0.2.7-1~bpo70+1_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_13.0.0-1~bpo70+1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_13.0.0-1~bpo70+1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txsocksx_1.13.0.0-1~bpo70+1_all + python-txtorcon_0.9.1-1~bpo70+1_all + python-txws_0.7.1-2~bpo70+1_all + python-txzmq_0.6.2-1~bpo70+1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-u1db_0.1.4-2~bpo70+1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.7.1-1~bpo70+1_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-validictory_0.8.3-2~bpo70+1_all + python-validictory-doc_0.8.3-2~bpo70+1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-vcversioner_1.13.0.0-1~bpo70+1_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-websocket_0.12.0-1~bpo70+1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-debian_0.1.21+nmu2~bpo70+1_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-dirspec_4.2.0-1~bpo70+1_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-jsonschema_2.0.0-1~bpo70+1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-magic_1:5.14-2~bpo70+1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-notmuch_0.16-1~bpo70+1_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pgpdump_1.4-1~bpo70+1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-potr_1.0.0-1~bpo70+1_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.6+dfsg-1~bpo70+1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_2.0.0-1~bpo70+1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.7.1-1~bpo70+1_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-validictory_0.8.3-2~bpo70+1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.7.0+dfsg-2~bpo70+2_all + qemu-launcher_1.7.4-1_all + qemu-slof_20131015+dfsg-1~bpo70+1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.3.6+dfsg1-1~bpo70+1_all + racket-doc_5.3.6+dfsg1-1~bpo70+1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redeclipse-data_1.4-2~bpo70+1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_2.4.2-1~bpo70+1_all + redmine-mysql_2.4.2-1~bpo70+1_all + redmine-pgsql_2.4.2-1~bpo70+1_all + redmine-sqlite_2.4.2-1~bpo70+1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.19-1~bpo70+1_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.9.5-1~bpo70+1_all + roundcube-core_0.9.5-1~bpo70+1_all + roundcube-mysql_0.9.5-1~bpo70+1_all + roundcube-pgsql_0.9.5-1~bpo70+1_all + roundcube-plugins_0.9.5-1~bpo70+1_all + roundcube-plugins-extra_0.9.2-20130819~bpo70+1_all + roundcube-sqlite3_0.9.5-1~bpo70+1_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_7.4.4-1~bpo70+1_all + rt4-apache2_4.0.19-1~bpo70+1_all + rt4-clients_4.0.19-1~bpo70+1_all + rt4-db-mysql_4.0.19-1~bpo70+1_all + rt4-db-postgresql_4.0.19-1~bpo70+1_all + rt4-db-sqlite_4.0.19-1~bpo70+1_all + rt4-doc-html_4.0.19-1~bpo70+1_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.19-1~bpo70+1_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-backports_3.1.1-1~bpo70+1_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-creole_0.5.0-1~bpo70+1_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_3.0.2-2~bpo70+1_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_4.0.3-3~bpo70+1_all + ruby-haml-magic-translations_4.0.0-1~bpo70+1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.9-1~bpo70+1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-memoize_1.3.1-2~bpo70+1_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.8.0-1~bpo70+1_all + ruby-multipart-parser_0.1.1-1~bpo70+1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-org_0.8.0-1~bpo70+1_all + ruby-packet_0.1.15-5_all + ruby-packetfu_1.1.8-1~bpo70+1_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_4.0.10-1~bpo7+1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-openid_1.3.1-2~bpo70+1_all + ruby-rack-protection_1.5.0-2~bpo70+1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-rails-observers_0.1.1-1~bpo70+1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.14.1-1~bpo70+1_all + ruby-rspec-core_2.14.5-1~bpo70+1_all + ruby-rspec-expectations_2.14.2-1~bpo70+1_all + ruby-rspec-mocks_2.14.3-1~bpo70+1_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubypants_0.2.0-1~bpo70+1_all + ruby-rubypants-doc_0.2.0-1~bpo70+1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.4.3-1~bpo70+1_all + ruby-sinatra-contrib_1.4.1-1~bpo70+1_all + ruby-slim_2.0.1-1~bpo70+1_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-temple_0.6.6-1~bpo70+1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.5-1~bpo70+1_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.4.1-1~bpo70+1_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-typed-array_0.1.2-1~bpo70+1_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-upr_0.2.0-1~bpo70+1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubybook_0.2.1-1_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + salt-common_0.16.4-2~bpo70+1_all + salt-doc_0.16.4-2~bpo70+1_all + salt-master_0.16.4-2~bpo70+1_all + salt-minion_0.16.4-2~bpo70+1_all + salt-syndic_0.16.4-2~bpo70+1_all + samba-common_2:4.1.5+dfsg-1~bpo70+1_all + samba-doc_2:4.1.5+dfsg-1~bpo70+1_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sauerbraten-data_0.0.20100728+repack-1_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-doc_1.4.0+r17300-1_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-ng-doc_1.4.0+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.3-3~bpo70+1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selfhtml_8.1.2-1_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgabios_0.0~svn8-3~bpo70+1_all + sgb-doc_1:20090810-1_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shapetools-tutorial_1.3-3.1_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-markup-samples_3.0.1-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + sl-modem-source_2.9.11~20110321-8+deb7u1_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmp-mibs-downloader_1.1_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_2.0.5a-1~bpo70+1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spacefm-common_0.9.3-1~bpo70+1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + spectrum-roms_20081224-3_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spellcast-doc_1.5_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-deb-proxy_0.7.2~bpo70+1_all + squid-deb-proxy-client_0.7.2~bpo70+1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.5p1-4~bpo70+1_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.5p1-4~bpo70+1_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-english-czech_20120601-1_all + stardict-german-czech_20120201-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_5.1.1-2~bpo70+1_all + strongswan-ikev1_5.1.1-2~bpo70+1_all + strongswan-ikev2_5.1.1-2~bpo70+1_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.19.0+dfsg-2~bpo70+1_all + sumo-tools_0.19.0+dfsg-2~bpo70+1_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-10~bpo70+1_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.8.1-2~bpo70+1_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_4.3+dfsg-1~bpo70+1_all + swfdec-gnome_1:0.8.11~git20140121+dfsg-1~bpo70+1_all + swfdec-mozilla_0.8.11~git20140121+dfsg-1~bpo70+1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t1-xfree86-nonfree_4.2.1-3.1_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tads3-common_1:0.13-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tangerine-icon-theme_0.26.debian-3_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tar-doc_1.26-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texinfo-doc-nonfree_4.13a-1_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + thawab_3.0.13-1_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_1.0.1-2~bpo70+1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-ipafont-jisx0208_00103-19_all + ttf-ipafont-uigothic_00203-21_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-gothic-naga10_20030809-14_all + ttf-kochi-mincho_20030809-15_all + ttf-kochi-mincho-naga10_20030809-14_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-larabie-deco_1:20011216-4_all + ttf-larabie-straight_1:20011216-4_all + ttf-larabie-uncommon_1:20011216-4_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-mikachan_9.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-xfree86-nonfree_4.2.1-3.1_all + ttf-xfree86-nonfree-syriac_4.2.1-3.1_all + ttf-yanone-kaffeesatz_0.20100525-4_all + ttytter_2.1.0-1~deb7u1_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turpial_3.0+dfsg-1~bpo70+1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_13.0.0-1~bpo70+1_all + twittering-mode_3.0.0-1~bpo70+1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2013.2+ds1-2~bpo70+1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + uqm-content_0.6.0+deb1-6_all + uqm-music_0.6.0+deb1-6_all + uqm-voice_0.6.0+deb1-6_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.20131214-1~bpo70+1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-haproxy_1.4.24-2~bpo70+1_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.2.16-dfsg-3~bpo70+1_all + virtualbox-guest-additions_4.1.18-1_all + virtualbox-guest-additions-iso_4.2.16-1~bpo70+1_all + virtualbox-guest-dkms_4.2.16-dfsg-3~bpo70+1_all + virtualbox-guest-source_4.2.16-dfsg-3~bpo70+1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.2.16-dfsg-3~bpo70+1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.1.2-2~bpo70+2_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + vmtk_1.0.1-1_all + volatility_2.3.1-7~bpo70+1_all + volatility-profiles_20140130-1~bpo70+1_all + volatility-tools_2.3.1-7~bpo70+1_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3-recs_20110107-1_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.4.3-2~bpo70+1_all + weechat-dev_0.4.3-2~bpo70+1_all + weechat-doc_0.4.3-2~bpo70+1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.6-2~bpo70+1_all + wesnoth-1.10_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-aoi_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-data_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-did_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-dm_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-dw_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-ei_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-httt_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-l_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-low_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-music_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-nr_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-sof_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-sotbe_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-thot_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-tools_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-trow_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-tsg_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-ttb_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-utbs_1:1.10.6-2~bpo70+1_all + wesnoth-core_1:1.10.6-2~bpo70+1_all + wesnoth-music_1:1.10.6-2~bpo70+1_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + wims-modules_1:4.07a~dfsg1-2~bpo1-1_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.10.5-1~bpo70+1_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + worldwind_0.5.0-10_all + worldwind-doc_0.5.0-10_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + x2goplugin-provider_4.0.1.1-1~bpo7+1_all + xapian-doc_1.2.16-2~bpo70+1_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:12.3+dfsg1-3~bpo70+2_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-dev_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-j2me_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-ps3_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-xbmc-send_2:12.3+dfsg1-3~bpo70+2_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-naga10_1.1-13.1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfonts-x3270-misc_3.3.10ga4-2_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmame-sdl_0.146-5_all + xmame-tools_0.146-4_all + xmame-x_0.146-5_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xmess-sdl_0.146-4_all + xmess-x_0.146-4_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xml2rfc_1.36-5_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.5.3-2~bpo70+1_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtide-data-nonfree_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-https-everywhere_3.4.5-1~bpo70+1_all + xul-ext-https-finder_087-2~bpo70+1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.6.8.4-1~bpo70+1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_1.05.0-2~bpo70+1_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yale_5.0.95-2_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.4.3-2~bpo7+1_all + yum-utils_1.1.31-2~bpo7+1_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zabbix-frontend-php_1:2.0.9+dfsg-1~bpo70+2_all + zangband-data_1:2.7.5pre1-8_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zd1211-firmware_2.21.0.0-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zekr_1.0.0+repack-7_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zenmap_6.40-0.1~bpo70+1_all + zeroc-ice-manual_3.4.2-1_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0.0.14-3~bpo70+2_amd64 + 0ad-dbg_0.0.14-3~bpo70+2_amd64 + 3270-common_3.3.10ga4-2+b1_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + abyss_1.3.4-3_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + agrep_4.17-9_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + aircrack-ng_1:1.1-6~bpo70+1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algobox_0.8+dfsg-2~bpo70+1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6.0-1~bpo70+1_amd64 + amarok-dbg_2.6.0-1~bpo70+1_amd64 + amarok-utils_2.6.0-1~bpo70+1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amd-clinfo_1:13.12-4~bpo70+1_amd64 + amd-libopencl1_1:13.12-4~bpo70+1_amd64 + amd-opencl-dev_1:13.12-4~bpo70+1_amd64 + amd-opencl-icd_1:13.12-4~bpo70+1_amd64 + amd-opencl-icd-legacy_8.97.100.7-3~bpo70+1_amd64 + amd64-microcode_2.20120910-1~bpo70+1_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amiwm_0.20.48-8_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + android-tools-adb_4.2.2+git20130529-3~bpo70+1_amd64 + android-tools-fastboot_4.2.2+git20130529-3~bpo70+1_amd64 + android-tools-fsutils_4.2.2+git20130529-3~bpo70+1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.25-1~bpo70+1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.3.5beta-2~bpo70+1_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-dahdi_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-dbg_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-modules_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-mp3_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-mysql_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-ooh323_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-voicemail_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-voicemail-imapstorage_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-voicemail-odbcstorage_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-vpb_1:11.7.0~dfsg-1~bpo70+1_amd64 + astromenace_1.3.2+repack-3~bpo70+1_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbswitch-dkms_0.7-1~bpo70+1_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + bilibop_0.4.20~bpo70+1_amd64 + bilibop-common_0.4.20~bpo70+1_amd64 + bilibop-lockfs_0.4.20~bpo70+1_amd64 + bilibop-rules_0.4.20~bpo70+1_amd64 + bilibop-udev_0.4.20~bpo70+1_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.9-1~bpo70+1_amd64 + bip-dbg_0.8.9-1~bpo70+1_amd64 + bird_1.4.0-1~bpo70+1_amd64 + bird-bgp_1.4.0-1~bpo70+1_amd64 + bird-bgp-dbg_1.4.0-1~bpo70+1_amd64 + bird-dbg_1.4.0-1~bpo70+1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bittwist_2.0-3~bpo70+1_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + bladerf-host_0.9.0.15.8ba2499-1~bpo70+1_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blimps-examples_3.9-1_amd64 + blimps-utils_3.9-1_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.5-3~bpo70+1_amd64 + bluefish-dbg_2.2.5-3~bpo70+1_amd64 + bluefish-plugins_2.2.5-3~bpo70+1_amd64 + blueman_1.23-git201312311147-1~bpo70+1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-amd-opencl_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-dbg_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-nvidia-cuda_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + bosixnet-webui_1.6-2~bpo70+1_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + browser-plugin-libreoffice_1:4.1.4-2~bpo70+1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdgames-nonfree_2.17-5_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_034-1~bpo70+1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + bugsx_1.08-12_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumblebee_3.2.1-4~bpo70+1_amd64 + bumblebee-dbg_3.2.1-4~bpo70+1_amd64 + bumblebee-nvidia_3.2.1-4~bpo70+1_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25-1~bpo70+1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + c3270_3.3.10ga4-2+b1_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_1.22.0+dfsg1-1~bpo70+1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.2.2p3-1~bpo70+1_amd64 + check-mk-agent-logwatch_1.2.2p3-1~bpo70+1_amd64 + check-mk-config-icinga_1.2.2p3-1~bpo70+1_amd64 + check-mk-config-nagios3_1.2.2p3-1~bpo70+1_amd64 + check-mk-livestatus_1.2.2p3-1~bpo70+1_amd64 + check-mk-multisite_1.2.2p3-1~bpo70+1_amd64 + check-mk-server_1.2.2p3-1~bpo70+1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.9.3-1~bpo70+1_amd64 + claws-mail-acpi-notifier_3.9.3-1~bpo70+1_amd64 + claws-mail-address-keeper_3.9.3-1~bpo70+1_amd64 + claws-mail-archiver-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-attach-remover_3.9.3-1~bpo70+1_amd64 + claws-mail-attach-warner_3.9.3-1~bpo70+1_amd64 + claws-mail-bogofilter_3.9.3-1~bpo70+1_amd64 + claws-mail-bsfilter-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-clamd-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-dbg_3.9.3-1~bpo70+1_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-feeds-reader_3.9.3-1~bpo70+1_amd64 + claws-mail-fetchinfo-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-gdata-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-multi-notifier_3.9.3-1~bpo70+1_amd64 + claws-mail-newmail-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-pdf-viewer_3.9.3-1~bpo70+1_amd64 + claws-mail-perl-filter_3.9.3-1~bpo70+1_amd64 + claws-mail-pgpinline_3.9.3-1~bpo70+1_amd64 + claws-mail-pgpmime_3.9.3-1~bpo70+1_amd64 + claws-mail-python-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-smime-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-spam-report_3.9.3-1~bpo70+1_amd64 + claws-mail-spamassassin_3.9.3-1~bpo70+1_amd64 + claws-mail-tnef-parser_3.9.3-1~bpo70+1_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.9.3-1~bpo70+1_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalw-mpi_0.15-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.11.1-1~bpo70+1_amd64 + cmake-curses-gui_2.8.11.1-1~bpo70+1_amd64 + cmake-dbg_2.8.11.1-1~bpo70+1_amd64 + cmake-qt-gui_2.8.11.1-1~bpo70+1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_13.12-1~bpo70+1_amd64 + codeblocks-contrib_13.12-1~bpo70+1_amd64 + codeblocks-contrib-dbg_13.12-1~bpo70+1_amd64 + codeblocks-dbg_13.12-1~bpo70+1_amd64 + codeblocks-dev_13.12-1~bpo70+1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colobot_0.1.2-3~bpo70+2_amd64 + colobot-dbg_0.1.2-3~bpo70+2_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + conserver-client_8.1.18-2.2_amd64 + conserver-server_8.1.18-2.2_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + core-network-daemon_4.6-2~bpo70+1_amd64 + core-network-gui_4.6-2~bpo70+1_amd64 + corekeeper_1.5~bpo70+1_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.73~bpo7+1_amd64 + cowdancer_0.73~bpo7+1_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + crafty_23.4-6_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvimp_0.4.7-2~bpo70+1_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cufflinks_1.3.0-2_amd64 + cultivation_9+dfsg1-1_amd64 + cuneiform_1.1.0+dfsg-4_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython3_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython3-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + darcs-monitor_0.4.2-3~bpo70+1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.2.3-1~bpo70+1_amd64 + darktable-dbg_1.2.3-1~bpo70+1_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.2-3~bpo70+1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + deltarpm_3.6+dfsg-1~bpo7+1_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.21-1~bpo70+1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.32-1~bpo70+1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.13.4~bpo70+1_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + diskscan_0.13-1~bpo70+1_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + doctest_0.9.1-1~bpo70+1_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20130822-2~bpo70+1_amd64 + dovecot-core_1:2.2.9-1~bpo70+1_amd64 + dovecot-dbg_1:2.2.9-1~bpo70+1_amd64 + dovecot-dev_1:2.2.9-1~bpo70+1_amd64 + dovecot-gssapi_1:2.2.9-1~bpo70+1_amd64 + dovecot-imapd_1:2.2.9-1~bpo70+1_amd64 + dovecot-ldap_1:2.2.9-1~bpo70+1_amd64 + dovecot-lmtpd_1:2.2.9-1~bpo70+1_amd64 + dovecot-managesieved_1:2.2.9-1~bpo70+1_amd64 + dovecot-mysql_1:2.2.9-1~bpo70+1_amd64 + dovecot-pgsql_1:2.2.9-1~bpo70+1_amd64 + dovecot-pop3d_1:2.2.9-1~bpo70+1_amd64 + dovecot-sieve_1:2.2.9-1~bpo70+1_amd64 + dovecot-solr_1:2.2.9-1~bpo70+1_amd64 + dovecot-sqlite_1:2.2.9-1~bpo70+1_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.4.4-1~bpo70+1_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamips_0.2.7-0.2.8RC2-5.1_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-daemon-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk3_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk3-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-mini_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-mini-dbg_2.2.9-3~bpo70+1_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + embassy-phylip_3.69+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-asn1_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-base_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-base-hipe_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-common-test_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-corba_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-crypto_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-dbg_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-debugger_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-dev_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-dialyzer_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-diameter_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-edoc_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-eldap_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-erl-docgen_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-eunit_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-gs_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-inets_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-mnesia_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-observer_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-odbc_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-os-mon_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-parsetools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-percept_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-pman_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-public-key_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-reltool_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-runtime-tools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-snmp_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-ssh_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-ssl_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-syntax-tools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-test-server_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-toolbar_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-tools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-tv_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-typer_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-webtool_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-wx_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-xmerl_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.28.0-1~bpo70+1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.1.0-3~bpo70+1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_1.0.1-1~bpo70+1_amd64 + exfat-utils_1.0.1-1~bpo70+1_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + ext4magic_0.3.1-1~bpo70+1_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + f2j_0.8.1-2_amd64 + f3_2.2-1~bpo70+1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatrat-unpack_1.1.3-2_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.7-1~bpo70+1_amd64 + fcitx-config-gtk2_0.4.7-1~bpo70+1_amd64 + fcitx-dbg_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-frontend-gtk3_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-frontend-qt4_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-googlepinyin_0.1.6-1~bpo70+1_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-dev_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-gclient_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-qt_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.3.3-1~bpo70+1_amd64 + fcitx-module-dbus_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-kimpanel_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-lua_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-quickphrase-editor_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-x11_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-modules_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-qw_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-amharic_0.2.2-1~bpo70+1_amd64 + fcitx-table-arabic_0.2.2-1~bpo70+1_amd64 + fcitx-table-array30_0.3.4-1~bpo70+1_amd64 + fcitx-table-array30-big_0.3.4-1~bpo70+1_amd64 + fcitx-table-bingchan_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-boshiamy_0.3.4-1~bpo70+1_amd64 + fcitx-table-cangjie_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-cangjie-big_0.3.4-1~bpo70+1_amd64 + fcitx-table-cangjie3_0.3.4-1~bpo70+1_amd64 + fcitx-table-cangjie5_0.3.4-1~bpo70+1_amd64 + fcitx-table-cantonese_0.3.4-1~bpo70+1_amd64 + fcitx-table-cantonhk_0.3.4-1~bpo70+1_amd64 + fcitx-table-cns11643_0.2.2-1~bpo70+1_amd64 + fcitx-table-compose_0.2.2-1~bpo70+1_amd64 + fcitx-table-dianbaoma_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-easy-big_0.3.4-1~bpo70+1_amd64 + fcitx-table-emoji_0.2.2-1~bpo70+1_amd64 + fcitx-table-erbi_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-ipa-x-sampa_0.2.2-1~bpo70+1_amd64 + fcitx-table-jyutping_0.3.4-1~bpo70+1_amd64 + fcitx-table-latex_0.2.2-1~bpo70+1_amd64 + fcitx-table-malayalam-phonetic_0.2.2-1~bpo70+1_amd64 + fcitx-table-quick-classic_0.3.4-1~bpo70+1_amd64 + fcitx-table-quick3_0.3.4-1~bpo70+1_amd64 + fcitx-table-quick5_0.3.4-1~bpo70+1_amd64 + fcitx-table-rustrad_0.2.2-1~bpo70+1_amd64 + fcitx-table-scj6_0.3.4-1~bpo70+1_amd64 + fcitx-table-stroke5_0.3.4-1~bpo70+1_amd64 + fcitx-table-t9_0.3.4-1~bpo70+1_amd64 + fcitx-table-tamil-remington_0.2.2-1~bpo70+1_amd64 + fcitx-table-thai_0.2.2-1~bpo70+1_amd64 + fcitx-table-translit_0.2.2-1~bpo70+1_amd64 + fcitx-table-translit-ua_0.2.2-1~bpo70+1_amd64 + fcitx-table-viqr_0.2.2-1~bpo70+1_amd64 + fcitx-table-wanfeng_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-wbpy_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-wu_0.3.4-1~bpo70+1_amd64 + fcitx-table-wubi_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-wubi-large_0.3.4-1~bpo70+1_amd64 + fcitx-table-yawerty_0.2.2-1~bpo70+1_amd64 + fcitx-table-zhengma_0.3.4-1~bpo70+1_amd64 + fcitx-table-zhengma-large_0.3.4-1~bpo70+1_amd64 + fcitx-table-ziranma_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-tools_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-ui-classic_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fglrx-atieventsd_1:13.12-4~bpo70+1_amd64 + fglrx-control_1:13.12-4~bpo70+1_amd64 + fglrx-driver_1:13.12-4~bpo70+1_amd64 + fglrx-glx_1:12-6+point-3_amd64 + fglrx-glx-ia32_1:12-6+point-3_amd64 + fglrx-legacy-atieventsd_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-control_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-driver_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-modules-dkms_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-source_8.97.100.7-3~bpo70+1_amd64 + fglrx-modules-dkms_1:13.12-4~bpo70+1_amd64 + fglrx-source_1:13.12-4~bpo70+1_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_1:5.14-2~bpo70+1_amd64 + file-dbg_1:5.14-2~bpo70+1_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.7-2~bpo70+1_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.6.0-2~bpo70+1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.5-1~bpo70+1_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + flydraw_1:4.07a~dfsg1-2~bpo1-1_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecad_0.13.2800-dfsg-1~bpo70+1_amd64 + freecad-dev_0.13.2800-dfsg-1~bpo70+1_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.4.2-1~bpo70+1_amd64 + freeciv-client-gtk_2.4.2-1~bpo70+1_amd64 + freeciv-client-sdl_2.4.2-1~bpo70+1_amd64 + freeciv-client-xaw3d_2.4.2-1~bpo70+1_amd64 + freeciv-server_2.4.2-1~bpo70+1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frobtads_1:0.13-2_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fs-uae_2.2.3+dfsg-4~bpo70+1_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsl-4.1_4.1.9-7_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.6.5.ds-3~bpo70+1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.5.1-1~bpo70+1_amd64 + fwknop-server_2.5.1-1~bpo70+1_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-haskell_2.9.4-1~bpo70+1_amd64 + ganeti-htools_2.9.4-1~bpo70+1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + ganglia-nagios-bridge_1.0.1-1~bpo70+1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.5.0-3~bpo70+1_amd64 + geoip-dbg_1.5.0-3~bpo70+1_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.3-1~bpo7+1_amd64 + gettext-base_0.18.3-1~bpo7+1_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.8.3-2~bpo70+1_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-plugins-base-1.0_1.0.8-1~bpo70+1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gstreamer-1.0_1.0.8-1~bpo70+1_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.5.1.is.1.4.2-1~bpo70+1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.8.5.3-1~bpo70+1_amd64 + git-annex_5.20140210~bpo70+2_amd64 + gitg_0.2.7-1~bpo70+1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-cpufreq_0.6.4-4~bpo70+1_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + glx-alternative-fglrx_0.4.1~bpo70+1_amd64 + glx-alternative-mesa_0.4.1~bpo70+1_amd64 + glx-alternative-nvidia_0.4.1~bpo70+1_amd64 + glx-diversions_0.4.1~bpo70+1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmap_2012-06-12-1_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmsh_2.7.0.dfsg-1~bpo70+1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-common_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-cygnal_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-dbg_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-dev_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-ext-fileio_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-ext-lirc_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-ext-mysql_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-tools_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.2-6~bpo70+1_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.4-1~bpo70+1_amd64 + gnuplot-qt_4.6.4-1~bpo70+1_amd64 + gnuplot-x11_4.6.4-1~bpo70+1_amd64 + gnuradio_3.7.2.1-5~bpo70+1_amd64 + gnuradio-dev_3.7.2.1-5~bpo70+1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.2.10-2~bpo70+3_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.9-3~bpo70+1_amd64 + gpsd-clients_3.9-3~bpo70+1_amd64 + gpsd-dbg_3.9-3~bpo70+1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + gr-fcdproplus_0.0.1.1.2c80be-3~bpo70+1_amd64 + gr-iqbal_0.37.1.5.d4fd4d-1~bpo70+1_amd64 + gr-osmosdr_0.1.0.55.80c4af-2~bpo70~1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gstreamer1.0-alsa_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-libav_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-libav-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-bad_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-bad-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base-apps_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-good_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-good-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-ugly_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-ugly-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-pulseaudio_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-tools_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-x_1.0.8-1~bpo70+1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.2.10-2~bpo70+3_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.10.0beta-1~bpo70+1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.1.0-2~bpo70+1_amd64 + gyoto-dbg_0.1.0-2~bpo70+1_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hackrf_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + haproxy_1.4.24-2~bpo70+1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.7b-2~bpo70+1_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.20.5-2~bpo70+1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.5.3-1~bpo70+1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htpdate_1.1.0-1~bpo70+1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httpry_0.1.7-3~bpo70+1_amd64 + httpry-dbg_0.1.7-3~bpo70+1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2013.0.0+dfsg-1~bpo70+1_amd64 + hugin-tools_2013.0.0+dfsg-1~bpo70+1_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.7.2-1~bpo70+1_amd64 + i3-wm_4.7.2-1~bpo70+1_amd64 + i3-wm-dbg_4.7.2-1~bpo70+1_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.8-1~bpo70+1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.5.1.is.1.4.2-1~bpo70+1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.5.1.is.1.4.2-1~bpo70+1_amd64 + ibus-gtk3_1.5.1.is.1.4.2-1~bpo70+1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.9.3-2~bpo70+1_amd64 + icinga-cgi_1.9.3-2~bpo70+1_amd64 + icinga-core_1.9.3-2~bpo70+1_amd64 + icinga-dbg_1.9.3-2~bpo70+1_amd64 + icinga-idoutils_1.9.3-2~bpo70+1_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike_2.2.1+dfsg-2~bpo70+1_amd64 + ike-qtgui_2.2.1+dfsg-2~bpo70+1_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imview_1.1.9c-12~bpo70+1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel-microcode_2.20140122.1~bpo70+1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + iozone3_397-2_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptraf-ng_1.1.3.1-2~bpo70+1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.6-2~bpo70+1_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-otr_1.0.0-1~bpo70+1_amd64 + irssi-plugin-otr-dbg_1.0.0-1~bpo70+1_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:2.0.1-3~bpo7+1_amd64 + italc-management-console_1:2.0.1-3~bpo7+1_amd64 + italc-master_1:2.0.1-3~bpo7+1_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iucode-tool_1.0-1~bpo70+1_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.7-140104-1~bpo70+1_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jmtpfs_0.5-2~bpo70+1_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.25-1~bpo70+1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2577+dfsg-3~bpo70+1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.2.1-1~bpo70+1_amd64 + kde-config-gtk-style-preview_3:2.2.1-1~bpo70+1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-4~bpo70+1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kic_2.4a-1.1_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kismet_2013.03.R1b-2~bpo70+1_amd64 + kismet-plugins_2013.03.R1b-2~bpo70+1_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knot_1.4.3-2~bpo70+1_amd64 + knot-dbg_1.4.3-2~bpo70+1_amd64 + knot-dnsutils_1.4.3-2~bpo70+1_amd64 + knot-host_1.4.3-2~bpo70+1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.16-1~bpo70+1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.16-1~bpo70+1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.6-1~bpo70+1_amd64 + libafsrpc1_1.6.6-1~bpo70+1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fastcgi_2.4.7~0910052141-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_4.0.10-1~bpo7+1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.1.0beta-1~bpo70+1_amd64 + libaqbanking34_5.3.5beta-2~bpo70+1_amd64 + libaqbanking34-dbg_5.3.5beta-2~bpo70+1_amd64 + libaqbanking34-dev_5.3.5beta-2~bpo70+1_amd64 + libaqbanking34-plugins_5.3.5beta-2~bpo70+1_amd64 + libaqebics0_5.3.5beta-2~bpo70+1_amd64 + libaqhbci20_5.1.0beta-1~bpo70+1_amd64 + libaqhbci22_5.3.5beta-2~bpo70+1_amd64 + libaqofxconnect7_5.3.5beta-2~bpo70+1_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.920.3+dfsg-1~bpo70+1_amd64 + libarmadillo3_1:3.920.3+dfsg-1~bpo70+1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf-dev_0.18.3-1~bpo7+1_amd64 + libasprintf0c2_0.18.3-1~bpo7+1_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:9.10-1~bpo70+1_amd64 + libav-tools_6:9.10-1~bpo70+1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:9.10-1~bpo70+1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec-extra-54_6:9.10-1~bpo70+1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavcodec54_6:9.10-1~bpo70+1_amd64 + libavdevice-dev_6:9.10-1~bpo70+1_amd64 + libavdevice53_6:9.10-1~bpo70+1_amd64 + libavfilter-dev_6:9.10-1~bpo70+1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavfilter3_6:9.10-1~bpo70+1_amd64 + libavformat-dev_6:9.10-1~bpo70+1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavformat54_6:9.10-1~bpo70+1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavresample-dev_6:9.10-1~bpo70+1_amd64 + libavresample1_6:9.10-1~bpo70+1_amd64 + libavutil-dev_6:9.10-1~bpo70+1_amd64 + libavutil51_6:0.8.9-1_amd64 + libavutil52_6:9.10-1~bpo70+1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbfio-dbg_20130507-1~bpo70+1_amd64 + libbfio-dev_20130507-1~bpo70+1_amd64 + libbfio1_20130507-1~bpo70+1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libbladerf-dev_0.9.0.15.8ba2499-1~bpo70+1_amd64 + libbladerf0_0.9.0.15.8ba2499-1~bpo70+1_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libblimps3_3.9-1_amd64 + libblimps3-dev_3.9-1_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libboinc-app7_7.0.65+dfsg-3~bpo70+1_amd64 + libboinc7_7.0.65+dfsg-3~bpo70+1_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamlpdf-ocaml-dev_0.5-1+b2_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcg_3.1.0013-1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcggl_3.1.0013-1_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_1.1-1~bpo70+1_amd64 + libchromaprint-tools_1.1-1~bpo70+1_amd64 + libchromaprint0_1.1-1~bpo70+1_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclamunrar6_0.96.4-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.9.3-1~bpo70+1_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_13.12-1~bpo70+1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcoin80_3.1.4~abc9f50-3~bpo70+1_amd64 + libcoin80-dev_3.1.4~abc9f50-3~bpo70+1_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore++-dev_1.7-12_amd64 + libcore++1c2_1.7-12_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libcsvimp-dev_0.4.7-2~bpo70+1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcublas4_4.2.9-2_amd64 + libcublas5.0_5.0.35-8~bpo70+1_amd64 + libcuda1_319.82-1~bpo70+1_amd64 + libcuda1-ia32_304.88-1+deb7u1_amd64 + libcudart4_4.2.9-2_amd64 + libcudart5.0_5.0.35-8~bpo70+1_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcufft4_4.2.9-2_amd64 + libcufft5.0_5.0.35-8~bpo70+1_amd64 + libcuinj4_4.2.9-2_amd64 + libcuinj64-5.0_5.0.35-8~bpo70+1_amd64 + libcuneiform-dev_1.1.0+dfsg-4_amd64 + libcuneiform0_1.1.0+dfsg-4_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcupti-dev_5.0.35-8~bpo70+1_amd64 + libcupti4_4.2.9-2_amd64 + libcupti5.0_5.0.35-8~bpo70+1_amd64 + libcurand4_4.2.9-2_amd64 + libcurand5.0_5.0.35-8~bpo70+1_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcusparse4_4.2.9-2_amd64 + libcusparse5.0_5.0.35-8~bpo70+1_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwd_1.0.4-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp-dev_2.2.9-3~bpo70+1_amd64 + libeiskaltdcpp2.2_2.2.9-3~bpo70+1_amd64 + libeiskaltdcpp2.2-dbg_2.2.9-3~bpo70+1_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembperl-perl_2.5.0~rc3-1~bpo70+1_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.9-1~bpo70+1_amd64 + libestr0_0.1.9-1~bpo70+1_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfglrx_1:13.12-4~bpo70+1_amd64 + libfglrx-amdxvba1_1:13.12-4~bpo70+1_amd64 + libfglrx-ia32_1:12-6+point-3_amd64 + libfglrx-legacy_8.97.100.7-3~bpo70+1_amd64 + libfglrx-legacy-amdxvba1_8.97.100.7-3~bpo70+1_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko-perl_2.5.1-1~bpo70+1_amd64 + libfko-python_2.5.1-1~bpo70+1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libfko2_2.5.1-1~bpo70+1_amd64 + libfko2-dbg_2.5.1-1~bpo70+1_amd64 + libfko2-dev_2.5.1-1~bpo70+1_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dbg_1.1.2.2-1~bpo70+1_amd64 + libfm-dev_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk-dbg_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk-dev_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm-gtk3_1.1.2.2-1~bpo70+1_amd64 + libfm-tools_1.1.2.2-1~bpo70+1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfm3_1.1.2.2-1~bpo70+1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-client-dev_1.1.6-7~bpo70+1_amd64 + libfreeradius-client2_1.1.6-7~bpo70+1_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.5.0-3~bpo70+1_amd64 + libgeoip1_1.5.0-3~bpo70+1_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo-dev_0.18.3-1~bpo7+1_amd64 + libgettextpo0_0.18.3-1~bpo7+1_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-async-dev_2.0.1.3-1~bpo70+1_amd64 + libghc-async-prof_2.0.1.3-1~bpo70+1_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-doctest-dev_0.9.1-1~bpo70+1_amd64 + libghc-doctest-prof_0.9.1-1~bpo70+1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-generic-deriving-dev_1.4.0-2~bpo70+1_amd64 + libghc-generic-deriving-prof_1.4.0-2~bpo70+1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.4-3~bpo70+1_amd64 + libghc-gnutls-prof_0.1.4-3~bpo70+1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-info-dev_0.2.0.1-2~bpo70+1_amd64 + libghc-network-info-prof_0.2.0.1-2~bpo70+1_amd64 + libghc-network-multicast-dev_0.0.10-1~bpo70+1_amd64 + libghc-network-multicast-prof_0.0.10-1~bpo70+1_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.4-2~bpo70+1_amd64 + libghc-network-protocol-xmpp-prof_0.4.4-2~bpo70+1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-safesemaphore-dev_0.9.0-1~bpo70+1_amd64 + libghc-safesemaphore-prof_0.9.0-1~bpo70+1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-hamlet-dev_0.3.0.1-1~bpo70+1_amd64 + libghc-xml-hamlet-prof_0.3.0.1-1~bpo70+1_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-fglrx-glx_1:13.12-4~bpo70+1_amd64 + libgl1-fglrx-legacy-glx_8.97.100.7-3~bpo70+1_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl1-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgl1-nvidia-alternatives-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx_319.82-1~bpo70+1_amd64 + libgl1-nvidia-glx-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-legacy-173xx-glx_173.14.39-1~bpo70+1_amd64 + libgl1-nvidia-legacy-173xx-glx-ia32_173.14.35-4_amd64 + libgl1-nvidia-legacy-304xx-glx_304.117-1~bpo70+1_amd64 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_amd64 + libgl1-nvidia-legacy-71xx-glx-ia32_71.86.15-3_amd64 + libgl1-nvidia-legacy-96xx-glx_96.43.23-7~bpo70+1_amd64 + libgl1-nvidia-legacy-96xx-glx-ia32_96.43.23-3_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libglx-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmsh-dev_2.7.0.dfsg-1~bpo70+1_amd64 + libgmsh2_2.7.0.dfsg-1~bpo70+1_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-analog3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-atsc3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-blocks3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-channels3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fcdproplus0_0.0.1.1.2c80be-3~bpo70+1_amd64 + libgnuradio-fec3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fft3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-filter3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-iqbalance0_0.37.1.5.d4fd4d-1~bpo70+1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-osmosdr0.0.0_0.1.0.55.80c4af-2~bpo70~1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-pmt3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-runtime3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-wavelet3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-wxgui3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls-xssl0_3.2.10-2~bpo70+3_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutls28_3.2.10-2~bpo70+3_amd64 + libgnutls28-dbg_3.2.10-2~bpo70+3_amd64 + libgnutls28-dev_3.2.10-2~bpo70+3_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgnutlsxx28_3.2.10-2~bpo70+3_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.4.3-0.1~bpo70+1_amd64 + libgpgme11-dev_1.4.3-0.1~bpo70+1_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.9-3~bpo70+1_amd64 + libgps20_3.9-3~bpo70+1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-bad1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-bad1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer-plugins-base1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-base1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstreamer1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer1.0-0-dbg_1.0.8-1~bpo70+1_amd64 + libgstreamer1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-cpp0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-fox16-0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-gtk2-0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-qt4-0_4.10.0beta-1~bpo70+1_amd64 + libgwenhywfar60_4.10.0beta-1~bpo70+1_amd64 + libgwenhywfar60-dbg_4.10.0beta-1~bpo70+1_amd64 + libgwenhywfar60-dev_4.10.0beta-1~bpo70+1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgyoto1_0.1.0-2~bpo70+1_amd64 + libgyoto1-dev_0.1.0-2~bpo70+1_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhackrf-dev_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + libhackrf0_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhavege-dev_1.7b-2~bpo70+1_amd64 + libhavege1_1.7b-2~bpo70+1_amd64 + libhavege1-dbg_1.7b-2~bpo70+1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.9-1~bpo70+1_amd64 + libhivex-dev_1.3.9-1~bpo70+1_amd64 + libhivex-ocaml_1.3.9-1~bpo70+1_amd64 + libhivex-ocaml-dev_1.3.9-1~bpo70+1_amd64 + libhivex0_1.3.9-1~bpo70+1_amd64 + libhivex0-dbg_1.3.9-1~bpo70+1_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.7.1-1~bpo70+1_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.5.1.is.1.4.2-1~bpo70+1_amd64 + libibus-1.0-dev_1.5.1.is.1.4.2-1~bpo70+1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitalccore_1:2.0.1-3~bpo7+1_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjai-core-java_1.1.4-3_amd64 + libjai-imageio-core-java_1.2-3_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gmsh2_2.7.0.dfsg-1~bpo70+1_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-c-dev_0.11-3~bpo7+1_amd64 + libjson-c2_0.11-3~bpo7+1_amd64 + libjson-c2-dbg_0.11-3~bpo7+1_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.11-3~bpo7+1_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.11-3~bpo7+1_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.6-1~bpo70+1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.16-1~bpo70+1_amd64 + libldb1_1:1.1.16-1~bpo70+1_amd64 + libldb1-dbg_1:1.1.16-1~bpo70+1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.16-1~bpo70+1_amd64 + libldns1_1.6.16-1~bpo70+1_amd64 + libldns1-dbg_1.6.16-1~bpo70+1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + liblldpctl-dev_0.7.7-1~bpo70+1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_1:5.14-2~bpo70+1_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_1:5.14-2~bpo70+1_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-perl_0.71-3+b1_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmetis-edf-dev_4.1-2-3_amd64 + libmetis-edf4.1_4.1-2-3_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmotif-dev_2.3.3-8_amd64 + libmotif4_2.3.3-8_amd64 + libmotif4-dbg_2.3.3-8_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_1.0-1~bpo70+1_amd64 + libmsv0_0.0.0-1_amd64 + libmsv1_1.0-1~bpo70+1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnauty-dev_2.4r2-1_amd64 + libnauty1d_2.4r2-1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.8-1~bpo70+1_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.7.1-1~bpo70+1_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.16-1~bpo70+1_amd64 + libnotmuch3_0.16-1~bpo70+1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpp4_4.2.9-2_amd64 + libnpp5.0_5.0.35-8~bpo70+1_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:4.1.5+dfsg-1~bpo70+1_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntdb-dev_1.0-2~bpo70+1_amd64 + libntdb1_1.0-2~bpo70+1_amd64 + libntdb1-dbg_1.0-2~bpo70+1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvcuvid1_319.82-1~bpo70+1_amd64 + libnvidia-compiler_319.82-1~bpo70+1_amd64 + libnvidia-compiler-ia32_304.88-1+deb7u1_amd64 + libnvidia-encode1_319.82-1~bpo70+1_amd64 + libnvidia-ifr1_319.82-1~bpo70+1_amd64 + libnvidia-ml1_319.82-1~bpo70+1_amd64 + libnvtoolsext5.0_5.0.35-8~bpo70+1_amd64 + libnvtt-bin_2.0.8-1+dfsg-4~bpo70+1_amd64 + libnvtt-dev_2.0.8-1+dfsg-4~bpo70+1_amd64 + libnvtt2_2.0.8-1+dfsg-4~bpo70+1_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrender29_3.5.2-6~bpo70+1_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobt2_3.5.2-6~bpo70+1_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.90+bzr367-1~bpo70+1_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + libocsync-dev_0.91.4-1~bpo70+1_amd64 + libocsync0_0.91.4-1~bpo70+1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.6-1~bpo70+1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenrpt-dev_3.3.4-6~bpo70+1_amd64 + libopenrpt1_3.3.4-6~bpo70+1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_1.1-1~bpo70+1_amd64 + libopus-dev_1.1-1~bpo70+1_amd64 + libopus0_1.1-1~bpo70+1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmosdr-dev_0.1.7.cd37e9-2~bpo70+1_amd64 + libosmosdr0_0.1.7.cd37e9-2~bpo70+1_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libotr5_4.0.0-2.2~bpo70+1_amd64 + libotr5-bin_4.0.0-2.2~bpo70+1_amd64 + libotr5-dev_4.0.0-2.2~bpo70+1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libowncloudsync0_1.5.0+dfsg-4~bpo70+1_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.20.2-1~bpo70+1_amd64 + libp11-kit0_0.20.2-1~bpo70+1_amd64 + libp11-kit0-dbg_0.20.2-1~bpo70+1_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.6-1~bpo70+1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:4.1.5+dfsg-1~bpo70+1_amd64 + libpam-ssh_1.98-2~bpo70+1_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:4.1.5+dfsg-1~bpo70+1_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.5-1~bpo70+1_amd64 + libpari-dev_2.5.5-1~bpo70+1_amd64 + libpari-gmp3_2.5.5-1~bpo70+1_amd64 + libparmetis-dev_3.1.1-4_amd64 + libparmetis3.1_3.1.1-4_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_2:4.1.5+dfsg-1~bpo70+1_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpj2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjlib-util2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-audiodev2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-codec2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-videodev2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjnath2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjproject-dev_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip-simple2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip-ua2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsua2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.git20120821-4~bpo70+1_amd64 + libpostproc52_6:0.git20120821-4~bpo70+1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libproc-wait3-perl_0.4-1~bpo70+1_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_4.0-6~bpo7+1_amd64 + libpulse-mainloop-glib0_4.0-6~bpo7+1_amd64 + libpulse-mainloop-glib0-dbg_4.0-6~bpo7+1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_4.0-6~bpo7+1_amd64 + libpulse0-dbg_4.0-6~bpo7+1_amd64 + libpulsedsp_4.0-6~bpo7+1_amd64 + libpulsedsp-dbg_4.0-6~bpo7+1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.7-2~bpo70+1_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.9-3~bpo70+1_amd64 + libqgpsmm20_3.9-3~bpo70+1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtkeychain0_0.1.0-2~bpo70+1_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.7.6-1~bpo70+1_amd64 + libqxmpp0_0.7.6-1~bpo70+1_amd64 + libqxmpp0-dbg_0.7.6-1~bpo70+1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.2.0-1~bpo70+1_amd64 + librelp0_1.2.0-1~bpo70+1_amd64 + libremctl-dev_3.8-1~bpo70+1_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.8-1~bpo70+1_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:4.1.4-2~bpo70+1_amd64 + libreoffice-base_1:4.1.4-2~bpo70+1_amd64 + libreoffice-base-core_1:4.1.4-2~bpo70+1_amd64 + libreoffice-calc_1:4.1.4-2~bpo70+1_amd64 + libreoffice-core_1:4.1.4-2~bpo70+1_amd64 + libreoffice-dbg_1:4.1.4-2~bpo70+1_amd64 + libreoffice-dev_1:4.1.4-2~bpo70+1_amd64 + libreoffice-draw_1:4.1.4-2~bpo70+1_amd64 + libreoffice-evolution_1:4.1.4-2~bpo70+1_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:4.1.4-2~bpo70+1_amd64 + libreoffice-gtk_1:4.1.4-2~bpo70+1_amd64 + libreoffice-gtk3_1:4.1.4-2~bpo70+1_amd64 + libreoffice-impress_1:4.1.4-2~bpo70+1_amd64 + libreoffice-kde_1:4.1.4-2~bpo70+1_amd64 + libreoffice-math_1:4.1.4-2~bpo70+1_amd64 + libreoffice-mysql-connector_1.0.2+LibO4.1.4-2~bpo70+1_amd64 + libreoffice-officebean_1:4.1.4-2~bpo70+1_amd64 + libreoffice-ogltrans_1:4.1.4-2~bpo70+1_amd64 + libreoffice-pdfimport_1:4.1.4-2~bpo70+1_amd64 + libreoffice-presentation-minimizer_1.0.4+LibO4.1.4-2~bpo70+1_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:4.1.4-2~bpo70+1_amd64 + libreoffice-sdbc-postgresql_1:4.1.4-2~bpo70+1_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:4.1.4-2~bpo70+1_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librgxg-dev_0.1-1~bpo70+1_amd64 + librgxg0_0.1-1~bpo70+1_amd64 + librgxg0-dbg_0.1-1~bpo70+1_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtlsdr-dev_0.5.2.7.3ab6-1~bpo70+1_amd64 + librtlsdr0_0.5.2.7.3ab6-1~bpo70+1_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.5.3-2~bpo70+1_amd64 + libsaml7_2.4.3-4_amd64 + libsaml8_2.5.3-2~bpo70+1_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbc-dev_1.1-2~bpo7+1_amd64 + libsbc1_1.1-2~bpo7+1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdl2-2.0-0_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdl2-dbg_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdl2-dev_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsipxtapi_3.3.0~test12-2~bpo70+1_amd64 + libsipxtapi-dev_3.3.0~test12-2~bpo70+1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbclient-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmbsharemodes-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbsharemodes0_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_2.0.5-1~bpo70+1_amd64 + libsope1_2.0.5-1~bpo70+1_amd64 + libsope1-dbg_2.0.5-1~bpo70+1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.6.0~e8310f-1~bpo70+1_amd64 + libsoqt4-20_1.6.0~e8310f-1~bpo70+1_amd64 + libsoqt4-dev_1.6.0~e8310f-1~bpo70+1_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.12.4-0nocelt2~bpo70+1_amd64 + libspice-server1_0.12.4-0nocelt2~bpo70+1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlcipher-dev_2.2.1-2~bpo70+1_amd64 + libsqlcipher0_2.2.1-2~bpo70+1_amd64 + libsqlcipher0-dbg_2.2.1-2~bpo70+1_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-compare-constanttime-perl_0.300-1~bpo70+1_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_5.1.1-2~bpo70+1_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:9.10-1~bpo70+1_amd64 + libswscale2_6:9.10-1~bpo70+1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.9.1-2~bpo70+1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.9.1-2~bpo70+1_amd64 + libtag1c2a_1.9.1-2~bpo70+1_amd64 + libtagc0_1.9.1-2~bpo70+1_amd64 + libtagc0-dev_1.9.1-2~bpo70+1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.1.0-1~bpo70+1_amd64 + libtalloc2_2.1.0-1~bpo70+1_amd64 + libtalloc2-dbg_2.1.0-1~bpo70+1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtasn1-6_3.4-2~bpo70+1_amd64 + libtasn1-6-dbg_3.4-2~bpo70+1_amd64 + libtasn1-6-dev_3.4-2~bpo70+1_amd64 + libtasn1-bin_3.4-2~bpo70+1_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtcplay_1.1-1~bpo70+1_amd64 + libtcplay-dev_1.1-1~bpo70+1_amd64 + libtdb-dev_1.2.12-1~bpo70+1_amd64 + libtdb1_1.2.12-1~bpo70+1_amd64 + libtdb1-dbg_1.2.12-1~bpo70+1_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtet1.4_1.4.3-1_amd64 + libtet1.4-dev_1.4.3-1_amd64 + libtevent-dev_0.9.19-1~bpo70+1_amd64 + libtevent0_0.9.19-1~bpo70+1_amd64 + libtevent0-dbg_0.9.19-1~bpo70+1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtriangle-1.6_1.6-2_amd64 + libtriangle-dev_1.6-2_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_4.1.2-2~bpo70+1_amd64 + libtsk10_4.1.2-2~bpo70+1_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libttspico-dev_1.0+git20110131-2_amd64 + libttspico-utils_1.0+git20110131-2_amd64 + libttspico0_1.0+git20110131-2_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libu1db-dev_0.1.4-2~bpo70+1_amd64 + libu1db1_0.1.4-2~bpo70+1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.5.5-1~bpo70+1_amd64 + libuhd003_3.5.5-1~bpo70+1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.21-1~bpo70+1_amd64 + libunbound2_1.4.21-1~bpo70+1_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.17-1~bpo70+1_amd64 + libusb-1.0-0-dbg_2:1.0.17-1~bpo70+1_amd64 + libusb-1.0-0-dev_2:1.0.17-1~bpo70+1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.12.6-1~bpo70+1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.6-2~bpo70+1_amd64 + libusbredirhost1_0.6-2~bpo70+1_amd64 + libusbredirparser-dev_0.6-2~bpo70+1_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbredirparser1_0.6-2~bpo70+1_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.14-dbg_3.14.5.8-4~bpo7+1_amd64 + libv8-3.14-dev_3.14.5.8-4~bpo7+1_amd64 + libv8-3.14.5_3.14.5.8-4~bpo7+1_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.14.5.8-4~bpo7+1_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_1.2.1-1~bpo70+1_amd64 + libvirt-dev_1.2.1-1~bpo70+1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt-sanlock_1.2.1-1~bpo70+1_amd64 + libvirt0_1.2.1-1~bpo70+1_amd64 + libvirt0-dbg_1.2.1-1~bpo70+1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.1.2-2~bpo70+2_amd64 + libvlc5_2.1.2-2~bpo70+2_amd64 + libvlccore-dev_2.1.2-2~bpo70+2_amd64 + libvlccore5_2.0.3-5_amd64 + libvlccore7_2.1.2-2~bpo70+2_amd64 + libvmtk-dev_1.0.1-1_amd64 + libvmtk1.0_1.0.1-1_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.7.2.1-5~bpo70+1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libwbclient0_2:4.1.5+dfsg-1~bpo70+1_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.9-1~bpo70+1_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.10.5-1~bpo70+1_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwireshark3_1.10.5-1~bpo70+1_amd64 + libwiretap-dev_1.10.5-1~bpo70+1_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwiretap3_1.10.5-1~bpo70+1_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.10.5-1~bpo70+1_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwsutil3_1.10.5-1~bpo70+1_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_13.12-1~bpo70+1_amd64 + libwxsmithlib0_13.12-1~bpo70+1_amd64 + libwxsmithlib0-dev_13.12-1~bpo70+1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.16-2~bpo70+1_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.16-2~bpo70+1_amd64 + libxapian22-dbg_1.2.16-2~bpo70+1_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-cursor-dev_0.1.1-2~bpo70+1_amd64 + libxcb-cursor0_0.1.1-2~bpo70+1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.7.2-2~bpo70+1_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-security-c17_1.7.2-2~bpo70+1_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.5.3-2~bpo70+1_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmltooling6_1.5.3-2~bpo70+1_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxnvctrl-dev_319.72-1~bpo70+1_amd64 + libxnvctrl0_319.72-1~bpo70+1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxtuplecommon-dev_4.1.0-3~bpo70+1_amd64 + libxtuplecommon1_4.1.0-3~bpo70+1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvbaw-dev_1:13.12-4~bpo70+1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxvmcnvidia1_304.88-1+deb7u1_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyade_1.05.0-2~bpo70+1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyara-dev_2.0.0-2~bpo70+1_amd64 + libyara2_2.0.0-2~bpo70+1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzmq3_3.2.3+dfsg-2~bpo70+1_amd64 + libzmq3-dbg_3.2.3+dfsg-2~bpo70+1_amd64 + libzmq3-dev_3.2.3+dfsg-2~bpo70+1_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.15-1~bpo70+1_amd64 + liferea-dbg_1.8.15-1~bpo70+1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-compiler-gcc-4.6-x86_3.12.9-1~bpo70+1_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.12-0.bpo.1-all_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-all-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-common_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-common-rt_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-rt-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.12+55~bpo70+1_amd64 + linux-headers-rt-amd64_3.12+55~bpo70+1_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-amd64-dbg_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-rt-amd64_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-rt-amd64-dbg_3.12.9-1~bpo70+1_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.12+55~bpo70+1_amd64 + linux-image-amd64-dbg_3.12+55~bpo70+1_amd64 + linux-image-rt-amd64_3.12+55~bpo70+1_amd64 + linux-image-rt-amd64-dbg_3.12+55~bpo70+1_amd64 + linux-kbuild-3.12_3.12.6-1~bpo70+1_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.12.9-1~bpo70+1_amd64 + linux-tools-3.12_3.12.6-1~bpo70+1_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.7.7-1~bpo70+1_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-augeas_0.1.1-3~bpo70+1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1+git063e8a8-2~bpo70+1_amd64 + lua-sec-dev_0.4.1+git063e8a8-2~bpo70+1_amd64 + lua-socket_3.0~rc1-3~bpo70+1+b1_amd64 + lua-socket-dev_3.0~rc1-3~bpo70+1+b1_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + mac-robber_1.02-1~bpo70+1_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madfuload_1.2-4_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + mame_0.146-5_amd64 + mame-tools_0.146-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbrola_3.01h-6_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.8.2-1~bpo70+1_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + mess_0.146-4_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + metis-edf_4.1-2-3_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_amd64 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_49-2~bpo70+1_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.4.8-2~bpo70+1_amd64 + mongodb-clients_1:2.4.8-2~bpo70+1_amd64 + mongodb-dev_1:2.4.8-2~bpo70+1_amd64 + mongodb-server_1:2.4.8-2~bpo70+1_amd64 + monit_1:5.6-1~bpo70+1_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.4a-1~bpo70+1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motif-clients_2.3.3-8_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.17.6-1~bpo70+1_amd64 + mpd-dbg_0.17.6-1~bpo70+1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mssstest_3.0-3_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.5-1~bpo70+1_amd64 + nagios-plugins-common_1.5-1~bpo70+1_amd64 + nagios-plugins-contrib_9.20140106~bpo70+1_amd64 + nagios-plugins-standard_1.5-1~bpo70+1_amd64 + nagios3_3.4.1-5~bpo7+1_amd64 + nagios3-cgi_3.4.1-5~bpo7+1_amd64 + nagios3-core_3.4.1-5~bpo7+1_amd64 + nagios3-dbg_3.4.1-5~bpo7+1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-dropbox_1.4.0-3_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + nauty_2.4r2-1_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmate_0.2.0-3~bpo70+1_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperf_2.4.4-6.1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.7.1-1~bpo70+1_amd64 + nettle-dbg_2.7.1-1~bpo70+1_amd64 + nettle-dev_2.7.1-1~bpo70+1_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.4.4-1~bpo70+1_amd64 + nginx-extras-dbg_1.4.4-1~bpo70+1_amd64 + nginx-full_1.4.4-1~bpo70+1_amd64 + nginx-full-dbg_1.4.4-1~bpo70+1_amd64 + nginx-light_1.4.4-1~bpo70+1_amd64 + nginx-light-dbg_1.4.4-1~bpo70+1_amd64 + nginx-naxsi_1.4.4-1~bpo70+1_amd64 + nginx-naxsi-dbg_1.4.4-1~bpo70+1_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + ngspice_24-1_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.40-0.1~bpo70+1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nocache_0.9-1~bpo70+1_amd64 + nodau_0.3~rc6-1_amd64 + nodejs_0.10.21~dfsg1-1~bpo7+1_amd64 + nodejs-dbg_0.10.21~dfsg1-1~bpo7+1_amd64 + nodejs-dev_0.10.21~dfsg1-1~bpo7+1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notion_3+2012042300-1_amd64 + notmuch_0.16-1~bpo70+1_amd64 + notmuch-dbg_0.16-1~bpo70+1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + ntdb-tools_1.0-2~bpo70+1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nttcp_1.47-13_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvidia-alternative_319.82-1~bpo70+1_amd64 + nvidia-alternative-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-alternative-legacy-71xx_71.86.15-3_amd64 + nvidia-alternative-legacy-96xx_96.43.23-7~bpo70+1_amd64 + nvidia-cg-dev_3.1.0013-1_amd64 + nvidia-cg-toolkit_3.1.0013-1_amd64 + nvidia-cuda-dev_5.0.35-8~bpo70+1_amd64 + nvidia-cuda-gdb_5.0.35-8~bpo70+1_amd64 + nvidia-cuda-mps_319.82-1~bpo70+1_amd64 + nvidia-cuda-toolkit_5.0.35-8~bpo70+1_amd64 + nvidia-detect_319.82-1~bpo70+1_amd64 + nvidia-driver_319.82-1~bpo70+1_amd64 + nvidia-glx_319.82-1~bpo70+1_amd64 + nvidia-glx-ia32_304.88-1+deb7u1_amd64 + nvidia-glx-legacy_71.86.15-3_amd64 + nvidia-glx-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-glx-legacy-173xx-ia32_173.14.35-4_amd64 + nvidia-glx-legacy-71xx_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-dev_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-ia32_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_amd64 + nvidia-glx-legacy-96xx_96.43.23-7~bpo70+1_amd64 + nvidia-glx-legacy-96xx-ia32_96.43.23-3_amd64 + nvidia-glx-legacy-dev_71.86.15-3_amd64 + nvidia-glx-legacy-ia32_71.86.15-3_amd64 + nvidia-installer-cleanup_20131102+1~bpo70+1_amd64 + nvidia-kernel-2.6-amd64_304.88+1_amd64 + nvidia-kernel-3.12-0.bpo.1-amd64_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_amd64 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_amd64 + nvidia-kernel-amd64_319.82+3.12+1~bpo70+1_amd64 + nvidia-kernel-common_20131102+1~bpo70+1_amd64 + nvidia-kernel-dkms_319.82-1~bpo70+1_amd64 + nvidia-kernel-legacy-173xx-dkms_173.14.39-1~bpo70+1_amd64 + nvidia-kernel-legacy-173xx-source_173.14.39-1~bpo70+1_amd64 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_amd64 + nvidia-kernel-legacy-71xx-source_71.86.15-3_amd64 + nvidia-kernel-legacy-96xx-dkms_96.43.23-7~bpo70+1_amd64 + nvidia-kernel-legacy-96xx-source_96.43.23-7~bpo70+1_amd64 + nvidia-kernel-legacy-source_71.86.15-3_amd64 + nvidia-kernel-source_319.82-1~bpo70+1_amd64 + nvidia-legacy-173xx-driver_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-173xx-kernel-dkms_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-173xx-kernel-source_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-304xx-alternative_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-driver_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-kernel-dkms_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-kernel-source_304.117-1~bpo70+1_amd64 + nvidia-legacy-96xx-driver_96.43.23-7~bpo70+1_amd64 + nvidia-legacy-96xx-kernel-dkms_96.43.23-7~bpo70+1_amd64 + nvidia-legacy-96xx-kernel-source_96.43.23-7~bpo70+1_amd64 + nvidia-libopencl1_319.82-1~bpo70+1_amd64 + nvidia-libopencl1-ia32_304.88-1+deb7u1_amd64 + nvidia-nsight_5.0.35-8~bpo70+1_amd64 + nvidia-opencl-common_319.82-1~bpo70+1_amd64 + nvidia-opencl-dev_5.0.35-8~bpo70+1_amd64 + nvidia-opencl-icd_319.82-1~bpo70+1_amd64 + nvidia-opencl-icd-ia32_304.88-1+deb7u1_amd64 + nvidia-profiler_5.0.35-8~bpo70+1_amd64 + nvidia-settings_319.72-1~bpo70+1_amd64 + nvidia-settings-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-settings-legacy-304xx_304.116-1~bpo70+1_amd64 + nvidia-settings-legacy-96xx_96.43.20-2~bpo70+1_amd64 + nvidia-smi_319.82-1~bpo70+1_amd64 + nvidia-support_20131102+1~bpo70+1_amd64 + nvidia-vdpau-driver_319.82-1~bpo70+1_amd64 + nvidia-vdpau-driver-ia32_304.88-1+deb7u1_amd64 + nvidia-visual-profiler_5.0.35-8~bpo70+1_amd64 + nvidia-xconfig_319.72-1~bpo70+1_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.5.0~svn3056+ds-1~bpo70+1_amd64 + open-axiom-graphics_1.5.0~svn3056+ds-1~bpo70+1_amd64 + open-axiom-hypertex_1.5.0~svn3056+ds-1~bpo70+1_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.6-1~bpo70+1_amd64 + openafs-dbg_1.6.6-1~bpo70+1_amd64 + openafs-dbserver_1.6.6-1~bpo70+1_amd64 + openafs-fileserver_1.6.6-1~bpo70+1_amd64 + openafs-fuse_1.6.6-1~bpo70+1_amd64 + openafs-kpasswd_1.6.6-1~bpo70+1_amd64 + openafs-krb5_1.6.6-1~bpo70+1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.2-6~bpo70+1_amd64 + openbox-dev_3.5.2-6~bpo70+1_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + openrpt_3.3.4-6~bpo70+1_amd64 + opensaml2-tools_2.5.3-2~bpo70+1_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.5p1-4~bpo70+1_amd64 + openssh-server_1:6.5p1-4~bpo70+1_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.3.2-7~bpo70+1_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmo-sdr_0.1.7.cd37e9-2~bpo70+1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owncloud-client_1.5.0+dfsg-4~bpo70+1_amd64 + owncloud-client-cmd_1.5.0+dfsg-4~bpo70+1_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.20.2-1~bpo70+1_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p7zip-rar_9.20.1~ds.1-3_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + paml_4.5-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_4.0.1-1~bpo70+1_amd64 + paraview-dev_4.0.1-1~bpo70+1_amd64 + paraview-python_4.0.1-1~bpo70+1_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.5-1~bpo70+1_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parmetis-test_3.1.1-4_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcapfix_1.0.2-2~bpo70+1_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_1.1.2-1~bpo70+1_amd64 + pcmanfm-dbg_1.1.2-1~bpo70+1_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + pepper_0.3.2-2~bpo70+1_amd64 + pepperflashplugin-nonfree_1.2~bpo70+1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgplot5_5.2.2-19_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mongo_1.4.5-1~bpo70+1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.8-1~bpo70+1_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phylip_1:3.69-1_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.7-2~bpo70+1_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.7-2~bpo70+1_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_4.0.0-2~bpo70+1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.10.0-1~bpo70+1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.5.4-1~bpo70+1_amd64 + poedit-dbg_1.5.4-1~bpo70+1_amd64 + pokerth_1.0.1-2~bpo70+1_amd64 + pokerth-server_1.0.1-2~bpo70+1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + postbooks_4.1.0-3~bpo70+1_amd64 + postbooks-updater_2.2.5-4~bpo70+1_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powder_117-1_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pptview_8.0-7_amd64 + pqiv_0.12-1_amd64 + pr3287_3.3.10ga4-2+b1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + primus_0~20130904-1~bpo70+1_amd64 + primus-libs_0~20130904-1~bpo70+1_amd64 + primus-libs-dbg_0~20130904-1~bpo70+1_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.9.1-1~bpo70+1_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.16.285-1~bpo70+1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.16.285-1~bpo70+1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20131023-ea487d3-1~bpo70+1_amd64 + psi-plus-plugins_0.16.285-1~bpo70+1_amd64 + psi-plus-plugins-dbg_0.16.285-1~bpo70+1_amd64 + psi-plus-webkit_0.16.285-1~bpo70+1_amd64 + psi-plus-webkit-dbg_0.16.285-1~bpo70+1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_4.0-6~bpo7+1_amd64 + pulseaudio-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-esound-compat_4.0-6~bpo7+1_amd64 + pulseaudio-esound-compat-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-bluetooth_4.0-6~bpo7+1_amd64 + pulseaudio-module-bluetooth-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-gconf_4.0-6~bpo7+1_amd64 + pulseaudio-module-gconf-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-jack_4.0-6~bpo7+1_amd64 + pulseaudio-module-jack-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-lirc_4.0-6~bpo7+1_amd64 + pulseaudio-module-lirc-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-raop_4.0-6~bpo7+1_amd64 + pulseaudio-module-raop-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-x11_4.0-6~bpo7+1_amd64 + pulseaudio-module-x11-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-zeroconf_4.0-6~bpo7+1_amd64 + pulseaudio-module-zeroconf-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-utils_4.0-6~bpo7+1_amd64 + pulseaudio-utils-dbg_4.0-6~bpo7+1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-deltarpm_3.6+dfsg-1~bpo7+1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.5-1~bpo70+1_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gmsh_2.7.0.dfsg-1~bpo70+1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.9-3~bpo70+1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.9-1~bpo70+1_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.16-1~bpo70+1_amd64 + python-ldb-dbg_1:1.1.16-1~bpo70+1_amd64 + python-ldb-dev_1:1.1.16-1~bpo70+1_amd64 + python-ldns_1.6.16-1~bpo70+1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_1.2.1-1~bpo70+2_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_3.3.1-1~bpo70+1_amd64 + python-lxml-dbg_3.3.1-1~bpo70+1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-m2ext_0.1-1~bpo70+1_amd64 + python-magic_1:5.14-2~bpo70+1_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-msgpack_0.3.0-1~bpo70+2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-ntdb_1.0-2~bpo70+1_amd64 + python-ntdb-dbg_1.0-2~bpo70+1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-3~bpo70+1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.8-1~bpo70+1_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_2:4.1.5+dfsg-1~bpo70+1_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.1.0-1~bpo70+1_amd64 + python-talloc-dbg_2.1.0-1~bpo70+1_amd64 + python-talloc-dev_2.1.0-1~bpo70+1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.12-1~bpo70+1_amd64 + python-tdb-dbg_1.2.12-1~bpo70+1_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_13.0.0-1~bpo70+1_amd64 + python-twisted-bin-dbg_13.0.0-1~bpo70+1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.21-1~bpo70+1_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:4.1.4-2~bpo70+1_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vmtk_1.0.1-1_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.9.8+dfsg-1~bpo70+1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yade_1.05.0-2~bpo70+1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yara_2.0.0-2~bpo70+1_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_13.1.0-1~bpo70+1_amd64 + python-zmq-dbg_13.1.0-1~bpo70+1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-deltarpm_3.6+dfsg-1~bpo7+1_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-hivex_1.3.9-1~bpo70+1_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_3.3.1-1~bpo70+1_amd64 + python3-lxml-dbg_3.3.1-1~bpo70+1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-msgpack_0.3.0-1~bpo70+2_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-yara_2.0.0-2~bpo70+1_amd64 + python3-zmq_13.1.0-1~bpo70+1_amd64 + python3-zmq-dbg_13.1.0-1~bpo70+1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_1.1-r2-1~bpo70+1_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.5-1~bpo70+1_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-guest-agent_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-kvm_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-arm_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-common_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-mips_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-misc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-ppc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-sparc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-x86_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-user_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-user-static_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-utils_1.7.0+dfsg-2~bpo70+2_amd64 + qemubuilder_0.73~bpo7+1_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtkeychain-dev_0.1.0-2~bpo70+1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-maptools_1:0.7-38-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.3.6+dfsg1-1~bpo70+1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radeontop_0.7-1~bpo70+1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rar_2:4.0.b3-1_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + rebar_2.0.0-5~bpo70+1_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redeclipse_1.4-5~bpo70+1_amd64 + redeclipse-dbg_1.4-5~bpo70+1_amd64 + redeclipse-server_1.4-5~bpo70+1_amd64 + redeclipse-server-dbg_1.4-5~bpo70+1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.8.6-1~bpo70+1_amd64 + redis-tools_2:2.8.6-1~bpo70+1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_2:4.1.5+dfsg-1~bpo70+1_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.8-1~bpo70+1_amd64 + remctl-server_3.8-1~bpo70+1_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.13.1-1~bpo70+1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rgxg_0.1-1~bpo70+1_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_7.4.4-1~bpo70+1_amd64 + rsyslog-gssapi_7.4.4-1~bpo70+1_amd64 + rsyslog-mongodb_7.4.4-1~bpo70+1_amd64 + rsyslog-mysql_7.4.4-1~bpo70+1_amd64 + rsyslog-pgsql_7.4.4-1~bpo70+1_amd64 + rsyslog-relp_7.4.4-1~bpo70+1_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtl-sdr_0.5.2.7.3ab6-1~bpo70+1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.12.1-1~bpo70+1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.9-1~bpo70+1_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-notmuch_0.16-1~bpo70+1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-oj_2.0.10-1~bpo70+1_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_4.0.10-1~bpo7+1_amd64 + ruby-password_0.5.3-4~bpo70+1_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pcaprub_0.11.3-1~bpo70+1_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.8-1~bpo70+1_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rjb_1.4.8-1~bpo70+1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_1.0.0-1~bpo70+1_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3270_3.3.10ga4-2+b1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-common-bin_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dbg_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dsdb-modules_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-libs_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-testsuite_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba-vfs-modules_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbc-tools_1.1-2~bpo7+1_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdlmame_0.146-5_amd64 + sdlmame-tools_0.146-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + seahorse-nautilus_3.8.0-1~bpo70+1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seaview_1:4.3.3-3_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq-gen_1.3.3-1_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgb_1:20090810-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + sift_4.0.3b-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.4-2~bpo70+1_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_amd64 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_4.1.2-2~bpo70+1_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:4.1.5+dfsg-1~bpo70+1_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_2.0.5a-1~bpo70+1_amd64 + sogo-dbg_2.0.5a-1~bpo70+1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacefm_0.9.3-1~bpo70+1_amd64 + spacefm-gtk3_0.9.3-1~bpo70+1_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + sparse_0.4.3+20110419-1_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.12.4-0nocelt2~bpo70+1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlcipher_2.2.1-2~bpo70+1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-agent-filter_0.3-1~bpo70+1_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.5p1-4~bpo70+1_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_5.1.1-2~bpo70+1_amd64 + strongswan-ike_5.1.1-2~bpo70+1_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_5.1.1-2~bpo70+1_amd64 + strongswan-starter_5.1.1-2~bpo70+1_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.19.0+dfsg-2~bpo70+1_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.8.1-2~bpo70+1_amd64 + supertuxkart-dbg_0.8.1-2~bpo70+1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tads2-dev_1:0.13-2_amd64 + tads3-dev_1:0.13-2_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.2.0-3~bpo70+1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclspice_24-1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcplay_1.1-1~bpo70+1_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.12-1~bpo70+1_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + teamspeak-client_2.0.32-3.1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.16-1~bpo70+1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetgen_1.4.3-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.23-1~bpo70+1_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + titantools_4.0.11+notdfsg1-5_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.8-5~bpo70+1_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tome_2.3.5-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + triangle-bin_1.6-2_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + trn4_4.0-test77-6_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.10.5-1~bpo70+1_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u1db-tools_0.1.4-2~bpo70+1_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udevil_0.4.3-1~bpo70+1_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.5.5-1~bpo70+1_amd64 + uhub_0.4.1-3~bpo70+1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unace-nonfree_2.5-7_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.21-1~bpo70+1_amd64 + unbound-anchor_1.4.21-1~bpo70+1_amd64 + unbound-host_1.4.21-1~bpo70+1_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_4.1.4-2~bpo70+1_amd64 + uno-libs3-dbg_4.1.4-2~bpo70+1_amd64 + unpaper_0.4.2-1_amd64 + unrar_1:4.1.4-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_4.1.4-2~bpo70+1_amd64 + ure-dbg_4.1.4-2~bpo70+1_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.12.6-1~bpo70+1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.6-2~bpo70+1_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-dbg_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-guest-x11_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-qt_4.2.16-dfsg-3~bpo70+1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.1.2-2~bpo70+2_amd64 + vlc-dbg_2.1.2-2~bpo70+2_amd64 + vlc-nox_2.1.2-2~bpo70+2_amd64 + vlc-plugin-fluidsynth_2.1.2-2~bpo70+2_amd64 + vlc-plugin-jack_2.1.2-2~bpo70+2_amd64 + vlc-plugin-notify_2.1.2-2~bpo70+2_amd64 + vlc-plugin-pulse_2.1.2-2~bpo70+2_amd64 + vlc-plugin-sdl_2.1.2-2~bpo70+2_amd64 + vlc-plugin-svg_2.1.2-2~bpo70+2_amd64 + vlc-plugin-zvbi_2.1.2-2~bpo70+2_amd64 + vlock_2.2.2-3_amd64 + vmdebootstrap_0.2-1~bpo70+1_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + vokoscreen_1.9.6-1~bpo70+1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + wap-wml-tools_0.0.4-6_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.4.3-2~bpo70+1_amd64 + weechat-curses_0.4.3-2~bpo70+1_amd64 + weechat-dbg_0.4.3-2~bpo70+1_amd64 + weechat-plugins_0.4.3-2~bpo70+1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.6-2~bpo70+1_amd64 + wesnoth-1.10-dbg_1:1.10.6-2~bpo70+1_amd64 + wesnoth-1.10-server_1:1.10.6-2~bpo70+1_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + wims_1:4.07a~dfsg1-2~bpo1-1_amd64 + wims-java-applets_1:4.07a~dfsg1-2~bpo1-1_amd64 + winbind_2:4.1.5+dfsg-1~bpo70+1_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.10.5-1~bpo70+1_amd64 + wireshark-common_1.10.5-1~bpo70+1_amd64 + wireshark-dbg_1.10.5-1~bpo70+1_amd64 + wireshark-dev_1.10.5-1~bpo70+1_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_4.0.1.1-1~bpo7+1_amd64 + x2goclient-dbg_4.0.1.1-1~bpo7+1_amd64 + x2goplugin_4.0.1.1-1~bpo7+1_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x3270_3.3.10ga4-2+b1_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.16-2~bpo70+1_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.16-2~bpo70+1_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:12.3+dfsg1-3~bpo70+2_amd64 + xbmc-eventclients-wiiremote_2:12.3+dfsg1-3~bpo70+2_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.12+55~bpo70+1_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfractint_20.4.10-2_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml-security-c-utils_1.7.2-2~bpo70+1_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.9.8+dfsg-1~bpo70+1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-nvidia_319.82-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-173xx_173.14.39-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-304xx_304.117-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_amd64 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-7~bpo70+1_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsnow_1:1.42-9_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_1.05.0-2~bpo70+1_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.2.1-1~bpo70+1_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yara_2.0.0-2~bpo70+1_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gy_0.0.5-1~bpo70+1_amd64 + yorick-gyoto_0.1.0-2~bpo70+1_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-ygsl_1.1.1-1~bpo70+1_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zabbix-agent_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-mysql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-pgsql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-sqlite3_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-server-mysql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-server-pgsql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zangband_1:2.7.5pre1-8_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0.0.14-3~bpo70+2_i386 + 0ad-dbg_0.0.14-3~bpo70+2_i386 + 3270-common_3.3.10ga4-2+b1_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + aircrack-ng_1:1.1-6~bpo70+1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algobox_0.8+dfsg-2~bpo70+1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6.0-1~bpo70+1_i386 + amarok-dbg_2.6.0-1~bpo70+1_i386 + amarok-utils_2.6.0-1~bpo70+1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amd-clinfo_1:13.12-4~bpo70+1_i386 + amd-libopencl1_1:13.12-4~bpo70+1_i386 + amd-opencl-dev_1:13.12-4~bpo70+1_i386 + amd-opencl-icd_1:13.12-4~bpo70+1_i386 + amd-opencl-icd-legacy_8.97.100.7-3~bpo70+1_i386 + amd64-microcode_2.20120910-1~bpo70+1_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amiwm_0.20.48-8_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + android-tools-adb_4.2.2+git20130529-3~bpo70+1_i386 + android-tools-fastboot_4.2.2+git20130529-3~bpo70+1_i386 + android-tools-fsutils_4.2.2+git20130529-3~bpo70+1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.25-1~bpo70+1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.3.5beta-2~bpo70+1_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-dahdi_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-dbg_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-modules_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-mp3_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-mysql_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-ooh323_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-voicemail_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-voicemail-imapstorage_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-voicemail-odbcstorage_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-vpb_1:11.7.0~dfsg-1~bpo70+1_i386 + astromenace_1.3.2+repack-3~bpo70+1_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axe_6.1.2-15.1_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbswitch-dkms_0.7-1~bpo70+1_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + bilibop_0.4.20~bpo70+1_i386 + bilibop-common_0.4.20~bpo70+1_i386 + bilibop-lockfs_0.4.20~bpo70+1_i386 + bilibop-rules_0.4.20~bpo70+1_i386 + bilibop-udev_0.4.20~bpo70+1_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.9-1~bpo70+1_i386 + bip-dbg_0.8.9-1~bpo70+1_i386 + bird_1.4.0-1~bpo70+1_i386 + bird-bgp_1.4.0-1~bpo70+1_i386 + bird-bgp-dbg_1.4.0-1~bpo70+1_i386 + bird-dbg_1.4.0-1~bpo70+1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bittwist_2.0-3~bpo70+1_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + bladerf-host_0.9.0.15.8ba2499-1~bpo70+1_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.5-3~bpo70+1_i386 + bluefish-dbg_2.2.5-3~bpo70+1_i386 + bluefish-plugins_2.2.5-3~bpo70+1_i386 + blueman_1.23-git201312311147-1~bpo70+1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-amd-opencl_7.0.65+dfsg-3~bpo70+1_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.65+dfsg-3~bpo70+1_i386 + boinc-dbg_7.0.65+dfsg-3~bpo70+1_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.65+dfsg-3~bpo70+1_i386 + boinc-nvidia-cuda_7.0.65+dfsg-3~bpo70+1_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + bosixnet-webui_1.6-2~bpo70+1_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + browser-plugin-libreoffice_1:4.1.4-2~bpo70+1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdgames-nonfree_2.17-5_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_034-1~bpo70+1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + bugsx_1.08-12_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumblebee_3.2.1-4~bpo70+1_i386 + bumblebee-dbg_3.2.1-4~bpo70+1_i386 + bumblebee-nvidia_3.2.1-4~bpo70+1_i386 + bumprace_1.5.4-1_i386 + bup_0.25-1~bpo70+1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + c3270_3.3.10ga4-2+b1_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_1.22.0+dfsg1-1~bpo70+1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.2.2p3-1~bpo70+1_i386 + check-mk-agent-logwatch_1.2.2p3-1~bpo70+1_i386 + check-mk-config-icinga_1.2.2p3-1~bpo70+1_i386 + check-mk-config-nagios3_1.2.2p3-1~bpo70+1_i386 + check-mk-livestatus_1.2.2p3-1~bpo70+1_i386 + check-mk-multisite_1.2.2p3-1~bpo70+1_i386 + check-mk-server_1.2.2p3-1~bpo70+1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.9.3-1~bpo70+1_i386 + claws-mail-acpi-notifier_3.9.3-1~bpo70+1_i386 + claws-mail-address-keeper_3.9.3-1~bpo70+1_i386 + claws-mail-archiver-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-attach-remover_3.9.3-1~bpo70+1_i386 + claws-mail-attach-warner_3.9.3-1~bpo70+1_i386 + claws-mail-bogofilter_3.9.3-1~bpo70+1_i386 + claws-mail-bsfilter-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-clamd-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-dbg_3.9.3-1~bpo70+1_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-feeds-reader_3.9.3-1~bpo70+1_i386 + claws-mail-fetchinfo-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-gdata-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-multi-notifier_3.9.3-1~bpo70+1_i386 + claws-mail-newmail-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-pdf-viewer_3.9.3-1~bpo70+1_i386 + claws-mail-perl-filter_3.9.3-1~bpo70+1_i386 + claws-mail-pgpinline_3.9.3-1~bpo70+1_i386 + claws-mail-pgpmime_3.9.3-1~bpo70+1_i386 + claws-mail-python-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-smime-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-spam-report_3.9.3-1~bpo70+1_i386 + claws-mail-spamassassin_3.9.3-1~bpo70+1_i386 + claws-mail-tnef-parser_3.9.3-1~bpo70+1_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.9.3-1~bpo70+1_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.11.1-1~bpo70+1_i386 + cmake-curses-gui_2.8.11.1-1~bpo70+1_i386 + cmake-dbg_2.8.11.1-1~bpo70+1_i386 + cmake-qt-gui_2.8.11.1-1~bpo70+1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_13.12-1~bpo70+1_i386 + codeblocks-contrib_13.12-1~bpo70+1_i386 + codeblocks-contrib-dbg_13.12-1~bpo70+1_i386 + codeblocks-dbg_13.12-1~bpo70+1_i386 + codeblocks-dev_13.12-1~bpo70+1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colobot_0.1.2-3~bpo70+2_i386 + colobot-dbg_0.1.2-3~bpo70+2_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + conserver-client_8.1.18-2.2_i386 + conserver-server_8.1.18-2.2_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + core-network-daemon_4.6-2~bpo70+1_i386 + core-network-gui_4.6-2~bpo70+1_i386 + corekeeper_1.5~bpo70+1_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.73~bpo7+1_i386 + cowdancer_0.73~bpo7+1_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + crafty_23.4-6_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvimp_0.4.7-2~bpo70+1_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cuneiform_1.1.0+dfsg-4_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython3_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython3-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + darcs-monitor_0.4.2-3~bpo70+1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.2.3-1~bpo70+1_i386 + darktable-dbg_1.2.3-1~bpo70+1_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.2-3~bpo70+1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + deltarpm_3.6+dfsg-1~bpo7+1_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.21-1~bpo70+1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.32-1~bpo70+1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.13.4~bpo70+1_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dgen_1.23-12_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + diskscan_0.13-1~bpo70+1_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + doctest_0.9.1-1~bpo70+1_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20130822-2~bpo70+1_i386 + dovecot-core_1:2.2.9-1~bpo70+1_i386 + dovecot-dbg_1:2.2.9-1~bpo70+1_i386 + dovecot-dev_1:2.2.9-1~bpo70+1_i386 + dovecot-gssapi_1:2.2.9-1~bpo70+1_i386 + dovecot-imapd_1:2.2.9-1~bpo70+1_i386 + dovecot-ldap_1:2.2.9-1~bpo70+1_i386 + dovecot-lmtpd_1:2.2.9-1~bpo70+1_i386 + dovecot-managesieved_1:2.2.9-1~bpo70+1_i386 + dovecot-mysql_1:2.2.9-1~bpo70+1_i386 + dovecot-pgsql_1:2.2.9-1~bpo70+1_i386 + dovecot-pop3d_1:2.2.9-1~bpo70+1_i386 + dovecot-sieve_1:2.2.9-1~bpo70+1_i386 + dovecot-solr_1:2.2.9-1~bpo70+1_i386 + dovecot-sqlite_1:2.2.9-1~bpo70+1_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.4.4-1~bpo70+1_i386 + drc_3.2.0~dfsg0-1_i386 + drdsl_1.2.0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamips_0.2.7-0.2.8RC2-5.1_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eagle_5.12.0-3_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-daemon-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk3_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk3-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-mini_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-mini-dbg_2.2.9-3~bpo70+1_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-asn1_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-base_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-base-hipe_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-common-test_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-corba_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-crypto_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-dbg_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-debugger_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-dev_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-dialyzer_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-diameter_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-edoc_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-eldap_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-erl-docgen_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-eunit_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-gs_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-inets_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-mnesia_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-observer_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-odbc_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-os-mon_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-parsetools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-percept_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-pman_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-public-key_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-reltool_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-runtime-tools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-snmp_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-ssh_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-ssl_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-syntax-tools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-test-server_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-toolbar_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-tools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-tv_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-typer_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-webtool_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-wx_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-xmerl_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.28.0-1~bpo70+1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.1.0-3~bpo70+1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_1.0.1-1~bpo70+1_i386 + exfat-utils_1.0.1-1~bpo70+1_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + ext4magic_0.3.1-1~bpo70+1_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + f2j_0.8.1-2_i386 + f3_2.2-1~bpo70+1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatrat-unpack_1.1.3-2_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.8.3-2~bpo70+1_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.7-1~bpo70+1_i386 + fcitx-config-gtk2_0.4.7-1~bpo70+1_i386 + fcitx-dbg_1:4.2.8.3-2~bpo70+1_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.8.3-2~bpo70+1_i386 + fcitx-frontend-gtk3_1:4.2.8.3-2~bpo70+1_i386 + fcitx-frontend-qt4_1:4.2.8.3-2~bpo70+1_i386 + fcitx-googlepinyin_0.1.6-1~bpo70+1_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-dev_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-gclient_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-qt_1:4.2.8.3-2~bpo70+1_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.3.2-1~bpo70+1_i386 + fcitx-module-dbus_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-kimpanel_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-lua_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-quickphrase-editor_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-x11_1:4.2.8.3-2~bpo70+1_i386 + fcitx-modules_1:4.2.8.3-2~bpo70+1_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.8.3-2~bpo70+1_i386 + fcitx-qw_1:4.2.8.3-2~bpo70+1_i386 + fcitx-sunpinyin_0.4.1-1~bpo70+1_i386 + fcitx-table_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-amharic_0.2.2-1~bpo70+1_i386 + fcitx-table-arabic_0.2.2-1~bpo70+1_i386 + fcitx-table-array30_0.3.4-1~bpo70+1_i386 + fcitx-table-array30-big_0.3.4-1~bpo70+1_i386 + fcitx-table-bingchan_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-boshiamy_0.3.4-1~bpo70+1_i386 + fcitx-table-cangjie_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-cangjie-big_0.3.4-1~bpo70+1_i386 + fcitx-table-cangjie3_0.3.4-1~bpo70+1_i386 + fcitx-table-cangjie5_0.3.4-1~bpo70+1_i386 + fcitx-table-cantonese_0.3.4-1~bpo70+1_i386 + fcitx-table-cantonhk_0.3.4-1~bpo70+1_i386 + fcitx-table-cns11643_0.2.2-1~bpo70+1_i386 + fcitx-table-compose_0.2.2-1~bpo70+1_i386 + fcitx-table-dianbaoma_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-easy-big_0.3.4-1~bpo70+1_i386 + fcitx-table-emoji_0.2.2-1~bpo70+1_i386 + fcitx-table-erbi_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-ipa-x-sampa_0.2.2-1~bpo70+1_i386 + fcitx-table-jyutping_0.3.4-1~bpo70+1_i386 + fcitx-table-latex_0.2.2-1~bpo70+1_i386 + fcitx-table-malayalam-phonetic_0.2.2-1~bpo70+1_i386 + fcitx-table-quick-classic_0.3.4-1~bpo70+1_i386 + fcitx-table-quick3_0.3.4-1~bpo70+1_i386 + fcitx-table-quick5_0.3.4-1~bpo70+1_i386 + fcitx-table-rustrad_0.2.2-1~bpo70+1_i386 + fcitx-table-scj6_0.3.4-1~bpo70+1_i386 + fcitx-table-stroke5_0.3.4-1~bpo70+1_i386 + fcitx-table-t9_0.3.4-1~bpo70+1_i386 + fcitx-table-tamil-remington_0.2.2-1~bpo70+1_i386 + fcitx-table-thai_0.2.2-1~bpo70+1_i386 + fcitx-table-translit_0.2.2-1~bpo70+1_i386 + fcitx-table-translit-ua_0.2.2-1~bpo70+1_i386 + fcitx-table-viqr_0.2.2-1~bpo70+1_i386 + fcitx-table-wanfeng_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-wbpy_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-wu_0.3.4-1~bpo70+1_i386 + fcitx-table-wubi_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-wubi-large_0.3.4-1~bpo70+1_i386 + fcitx-table-yawerty_0.2.2-1~bpo70+1_i386 + fcitx-table-zhengma_0.3.4-1~bpo70+1_i386 + fcitx-table-zhengma-large_0.3.4-1~bpo70+1_i386 + fcitx-table-ziranma_1:4.2.8.3-2~bpo70+1_i386 + fcitx-tools_1:4.2.8.3-2~bpo70+1_i386 + fcitx-ui-classic_1:4.2.8.3-2~bpo70+1_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fglrx-atieventsd_1:13.12-4~bpo70+1_i386 + fglrx-control_1:13.12-4~bpo70+1_i386 + fglrx-driver_1:13.12-4~bpo70+1_i386 + fglrx-glx_1:12-6+point-3_i386 + fglrx-legacy-atieventsd_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-control_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-driver_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-modules-dkms_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-source_8.97.100.7-3~bpo70+1_i386 + fglrx-modules-dkms_1:13.12-4~bpo70+1_i386 + fglrx-source_1:13.12-4~bpo70+1_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_1:5.14-2~bpo70+1_i386 + file-dbg_1:5.14-2~bpo70+1_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.7-2~bpo70+1_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.6.0-2~bpo70+1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.5-1~bpo70+1_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + flydraw_1:4.07a~dfsg1-2~bpo1-1_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecad_0.13.2800-dfsg-1~bpo70+1_i386 + freecad-dev_0.13.2800-dfsg-1~bpo70+1_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.4.2-1~bpo70+1_i386 + freeciv-client-gtk_2.4.2-1~bpo70+1_i386 + freeciv-client-sdl_2.4.2-1~bpo70+1_i386 + freeciv-client-xaw3d_2.4.2-1~bpo70+1_i386 + freeciv-server_2.4.2-1~bpo70+1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fs-uae_2.2.3+dfsg-4~bpo70+1_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsl-4.1_4.1.9-7_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.6.5.ds-3~bpo70+1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.5.1-1~bpo70+1_i386 + fwknop-server_2.5.1-1~bpo70+1_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-haskell_2.9.4-1~bpo70+1_i386 + ganeti-htools_2.9.4-1~bpo70+1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + ganglia-nagios-bridge_1.0.1-1~bpo70+1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.5.0-3~bpo70+1_i386 + geoip-dbg_1.5.0-3~bpo70+1_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.3-1~bpo7+1_i386 + gettext-base_0.18.3-1~bpo7+1_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.8.3-2~bpo70+1_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-plugins-base-1.0_1.0.8-1~bpo70+1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gstreamer-1.0_1.0.8-1~bpo70+1_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.5.1.is.1.4.2-1~bpo70+1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.8.5.3-1~bpo70+1_i386 + git-annex_5.20140210~bpo70+2_i386 + gitg_0.2.7-1~bpo70+1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-cpufreq_0.6.4-4~bpo70+1_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + glx-alternative-fglrx_0.4.1~bpo70+1_i386 + glx-alternative-mesa_0.4.1~bpo70+1_i386 + glx-alternative-nvidia_0.4.1~bpo70+1_i386 + glx-diversions_0.4.1~bpo70+1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmsh_2.7.0.dfsg-1~bpo70+1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-common_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-cygnal_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-dbg_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-dev_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-ext-fileio_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-ext-lirc_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-ext-mysql_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-tools_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.2-6~bpo70+1_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.4-1~bpo70+1_i386 + gnuplot-qt_4.6.4-1~bpo70+1_i386 + gnuplot-x11_4.6.4-1~bpo70+1_i386 + gnuradio_3.7.2.1-5~bpo70+1_i386 + gnuradio-dev_3.7.2.1-5~bpo70+1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.2.10-2~bpo70+3_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.9-3~bpo70+1_i386 + gpsd-clients_3.9-3~bpo70+1_i386 + gpsd-dbg_3.9-3~bpo70+1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + gr-fcdproplus_0.0.1.1.2c80be-3~bpo70+1_i386 + gr-iqbal_0.37.1.5.d4fd4d-1~bpo70+1_i386 + gr-osmosdr_0.1.0.55.80c4af-2~bpo70~1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gstreamer1.0-alsa_1.0.8-1~bpo70+1_i386 + gstreamer1.0-libav_1.0.8-1~bpo70+1_i386 + gstreamer1.0-libav-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-bad_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-bad-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base-apps_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-good_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-good-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-ugly_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-ugly-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-pulseaudio_1.0.8-1~bpo70+1_i386 + gstreamer1.0-tools_1.0.8-1~bpo70+1_i386 + gstreamer1.0-x_1.0.8-1~bpo70+1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.2.10-2~bpo70+3_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.10.0beta-1~bpo70+1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.1.0-2~bpo70+1_i386 + gyoto-dbg_0.1.0-2~bpo70+1_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hackrf_2013.07.1.16.d5cebd-2~bpo70+1_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + haproxy_1.4.24-2~bpo70+1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.7b-2~bpo70+1_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.20.5-2~bpo70+1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.5.3-1~bpo70+1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htpdate_1.1.0-1~bpo70+1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httpry_0.1.7-3~bpo70+1_i386 + httpry-dbg_0.1.7-3~bpo70+1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2013.0.0+dfsg-1~bpo70+1_i386 + hugin-tools_2013.0.0+dfsg-1~bpo70+1_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.7.2-1~bpo70+1_i386 + i3-wm_4.7.2-1~bpo70+1_i386 + i3-wm-dbg_4.7.2-1~bpo70+1_i386 + i3lock_2.4.1-1_i386 + i3status_2.8-1~bpo70+1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.5.1.is.1.4.2-1~bpo70+1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.5.1.is.1.4.2-1~bpo70+1_i386 + ibus-gtk3_1.5.1.is.1.4.2-1~bpo70+1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.9.3-2~bpo70+1_i386 + icinga-cgi_1.9.3-2~bpo70+1_i386 + icinga-core_1.9.3-2~bpo70+1_i386 + icinga-dbg_1.9.3-2~bpo70+1_i386 + icinga-idoutils_1.9.3-2~bpo70+1_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike_2.2.1+dfsg-2~bpo70+1_i386 + ike-qtgui_2.2.1+dfsg-2~bpo70+1_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imview_1.1.9c-12~bpo70+1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel-microcode_2.20140122.1~bpo70+1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + iozone3_397-2_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptraf-ng_1.1.3.1-2~bpo70+1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irpas_0.10-4.1_i386 + irqbalance_1.0.6-2~bpo70+1_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-otr_1.0.0-1~bpo70+1_i386 + irssi-plugin-otr-dbg_1.0.0-1~bpo70+1_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:2.0.1-3~bpo7+1_i386 + italc-management-console_1:2.0.1-3~bpo7+1_i386 + italc-master_1:2.0.1-3~bpo7+1_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iucode-tool_1.0-1~bpo70+1_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.7-140104-1~bpo70+1_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jmtpfs_0.5-2~bpo70+1_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.25-1~bpo70+1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2577+dfsg-3~bpo70+1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.4.3-1~bpo70+1_i386 + kde-config-gtk-style_3:2.2.1-1~bpo70+1_i386 + kde-config-gtk-style-preview_3:2.2.1-1~bpo70+1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-4~bpo70+1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kismet_2013.03.R1b-2~bpo70+1_i386 + kismet-plugins_2013.03.R1b-2~bpo70+1_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knot_1.4.3-2~bpo70+1_i386 + knot-dbg_1.4.3-2~bpo70+1_i386 + knot-dnsutils_1.4.3-2~bpo70+1_i386 + knot-host_1.4.3-2~bpo70+1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.16-1~bpo70+1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.16-1~bpo70+1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lgrind_3.67-3_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.6-1~bpo70+1_i386 + libafsrpc1_1.6.6-1~bpo70+1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fastcgi_2.4.7~0910052141-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_4.0.10-1~bpo7+1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.1.0beta-1~bpo70+1_i386 + libaqbanking34_5.3.5beta-2~bpo70+1_i386 + libaqbanking34-dbg_5.3.5beta-2~bpo70+1_i386 + libaqbanking34-dev_5.3.5beta-2~bpo70+1_i386 + libaqbanking34-plugins_5.3.5beta-2~bpo70+1_i386 + libaqebics0_5.3.5beta-2~bpo70+1_i386 + libaqhbci20_5.1.0beta-1~bpo70+1_i386 + libaqhbci22_5.3.5beta-2~bpo70+1_i386 + libaqofxconnect7_5.3.5beta-2~bpo70+1_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.920.3+dfsg-1~bpo70+1_i386 + libarmadillo3_1:3.920.3+dfsg-1~bpo70+1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf-dev_0.18.3-1~bpo7+1_i386 + libasprintf0c2_0.18.3-1~bpo7+1_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:9.10-1~bpo70+1_i386 + libav-tools_6:9.10-1~bpo70+1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:9.10-1~bpo70+1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec-extra-54_6:9.10-1~bpo70+1_i386 + libavcodec53_6:0.8.9-1_i386 + libavcodec54_6:9.10-1~bpo70+1_i386 + libavdevice-dev_6:9.10-1~bpo70+1_i386 + libavdevice53_6:9.10-1~bpo70+1_i386 + libavfilter-dev_6:9.10-1~bpo70+1_i386 + libavfilter2_6:0.8.9-1_i386 + libavfilter3_6:9.10-1~bpo70+1_i386 + libavformat-dev_6:9.10-1~bpo70+1_i386 + libavformat53_6:0.8.9-1_i386 + libavformat54_6:9.10-1~bpo70+1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavresample-dev_6:9.10-1~bpo70+1_i386 + libavresample1_6:9.10-1~bpo70+1_i386 + libavutil-dev_6:9.10-1~bpo70+1_i386 + libavutil51_6:0.8.9-1_i386 + libavutil52_6:9.10-1~bpo70+1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbfio-dbg_20130507-1~bpo70+1_i386 + libbfio-dev_20130507-1~bpo70+1_i386 + libbfio1_20130507-1~bpo70+1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libbladerf-dev_0.9.0.15.8ba2499-1~bpo70+1_i386 + libbladerf0_0.9.0.15.8ba2499-1~bpo70+1_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libboinc-app7_7.0.65+dfsg-3~bpo70+1_i386 + libboinc7_7.0.65+dfsg-3~bpo70+1_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamlpdf-ocaml-dev_0.5-1+b2_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcg_3.1.0013-1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcggl_3.1.0013-1_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_1.1-1~bpo70+1_i386 + libchromaprint-tools_1.1-1~bpo70+1_i386 + libchromaprint0_1.1-1~bpo70+1_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclamunrar6_0.96.4-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.9.3-1~bpo70+1_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_13.12-1~bpo70+1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcoin80_3.1.4~abc9f50-3~bpo70+1_i386 + libcoin80-dev_3.1.4~abc9f50-3~bpo70+1_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore++-dev_1.7-12_i386 + libcore++1c2_1.7-12_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libcsvimp-dev_0.4.7-2~bpo70+1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcublas4_4.2.9-2_i386 + libcublas5.0_5.0.35-8~bpo70+1_i386 + libcuda1_319.82-1~bpo70+1_i386 + libcuda1-i386_319.82-1~bpo70+1_i386 + libcudart4_4.2.9-2_i386 + libcudart5.0_5.0.35-8~bpo70+1_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcufft4_4.2.9-2_i386 + libcufft5.0_5.0.35-8~bpo70+1_i386 + libcuinj32-5.0_5.0.35-8~bpo70+1_i386 + libcuinj4_4.2.9-2_i386 + libcuneiform-dev_1.1.0+dfsg-4_i386 + libcuneiform0_1.1.0+dfsg-4_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcupti-dev_5.0.35-8~bpo70+1_i386 + libcupti4_4.2.9-2_i386 + libcupti5.0_5.0.35-8~bpo70+1_i386 + libcurand4_4.2.9-2_i386 + libcurand5.0_5.0.35-8~bpo70+1_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcusparse4_4.2.9-2_i386 + libcusparse5.0_5.0.35-8~bpo70+1_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwd_1.0.4-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp-dev_2.2.9-3~bpo70+1_i386 + libeiskaltdcpp2.2_2.2.9-3~bpo70+1_i386 + libeiskaltdcpp2.2-dbg_2.2.9-3~bpo70+1_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembperl-perl_2.5.0~rc3-1~bpo70+1_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.9-1~bpo70+1_i386 + libestr0_0.1.9-1~bpo70+1_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfglrx_1:13.12-4~bpo70+1_i386 + libfglrx-amdxvba1_1:13.12-4~bpo70+1_i386 + libfglrx-legacy_8.97.100.7-3~bpo70+1_i386 + libfglrx-legacy-amdxvba1_8.97.100.7-3~bpo70+1_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko-perl_2.5.1-1~bpo70+1_i386 + libfko-python_2.5.1-1~bpo70+1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libfko2_2.5.1-1~bpo70+1_i386 + libfko2-dbg_2.5.1-1~bpo70+1_i386 + libfko2-dev_2.5.1-1~bpo70+1_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dbg_1.1.2.2-1~bpo70+1_i386 + libfm-dev_1.1.2.2-1~bpo70+1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk-dbg_1.1.2.2-1~bpo70+1_i386 + libfm-gtk-dev_1.1.2.2-1~bpo70+1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm-gtk3_1.1.2.2-1~bpo70+1_i386 + libfm-tools_1.1.2.2-1~bpo70+1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfm3_1.1.2.2-1~bpo70+1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-client-dev_1.1.6-7~bpo70+1_i386 + libfreeradius-client2_1.1.6-7~bpo70+1_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.5.0-3~bpo70+1_i386 + libgeoip1_1.5.0-3~bpo70+1_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo-dev_0.18.3-1~bpo7+1_i386 + libgettextpo0_0.18.3-1~bpo7+1_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-async-dev_2.0.1.3-1~bpo70+1_i386 + libghc-async-prof_2.0.1.3-1~bpo70+1_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-doctest-dev_0.9.1-1~bpo70+1_i386 + libghc-doctest-prof_0.9.1-1~bpo70+1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-generic-deriving-dev_1.4.0-2~bpo70+1_i386 + libghc-generic-deriving-prof_1.4.0-2~bpo70+1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.4-3~bpo70+1_i386 + libghc-gnutls-prof_0.1.4-3~bpo70+1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-info-dev_0.2.0.1-2~bpo70+1_i386 + libghc-network-info-prof_0.2.0.1-2~bpo70+1_i386 + libghc-network-multicast-dev_0.0.10-1~bpo70+1_i386 + libghc-network-multicast-prof_0.0.10-1~bpo70+1_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.4-2~bpo70+1_i386 + libghc-network-protocol-xmpp-prof_0.4.4-2~bpo70+1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-safesemaphore-dev_0.9.0-1~bpo70+1_i386 + libghc-safesemaphore-prof_0.9.0-1~bpo70+1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-hamlet-dev_0.3.0.1-1~bpo70+1_i386 + libghc-xml-hamlet-prof_0.3.0.1-1~bpo70+1_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-fglrx-glx_1:13.12-4~bpo70+1_i386 + libgl1-fglrx-glx-i386_1:13.12-4~bpo70+1_i386 + libgl1-fglrx-legacy-glx_8.97.100.7-3~bpo70+1_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl1-nvidia-alternatives_304.88-1+deb7u1_i386 + libgl1-nvidia-glx_319.82-1~bpo70+1_i386 + libgl1-nvidia-glx-i386_319.82-1~bpo70+1_i386 + libgl1-nvidia-legacy-173xx-glx_173.14.39-1~bpo70+1_i386 + libgl1-nvidia-legacy-173xx-glx-i386_173.14.39-1~bpo70+1_i386 + libgl1-nvidia-legacy-304xx-glx_304.117-1~bpo70+1_i386 + libgl1-nvidia-legacy-304xx-glx-i386_304.117-1~bpo70+1_i386 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_i386 + libgl1-nvidia-legacy-96xx-glx_96.43.23-7~bpo70+1_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libglx-nvidia-alternatives_304.88-1+deb7u1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmsh-dev_2.7.0.dfsg-1~bpo70+1_i386 + libgmsh2_2.7.0.dfsg-1~bpo70+1_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-analog3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-atsc3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-blocks3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-channels3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fcdproplus0_0.0.1.1.2c80be-3~bpo70+1_i386 + libgnuradio-fec3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fft3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-filter3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-iqbalance0_0.37.1.5.d4fd4d-1~bpo70+1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-osmosdr0.0.0_0.1.0.55.80c4af-2~bpo70~1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-pmt3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-runtime3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-wavelet3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-wxgui3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls-xssl0_3.2.10-2~bpo70+3_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutls28_3.2.10-2~bpo70+3_i386 + libgnutls28-dbg_3.2.10-2~bpo70+3_i386 + libgnutls28-dev_3.2.10-2~bpo70+3_i386 + libgnutlsxx27_2.12.20-7_i386 + libgnutlsxx28_3.2.10-2~bpo70+3_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpcl-dev_2.32-1_i386 + libgpcl0_2.32-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.4.3-0.1~bpo70+1_i386 + libgpgme11-dev_1.4.3-0.1~bpo70+1_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.9-3~bpo70+1_i386 + libgps20_3.9-3~bpo70+1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-bad1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-bad1.0-dev_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer-plugins-base1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-base1.0-dev_1.0.8-1~bpo70+1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstreamer1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer1.0-0-dbg_1.0.8-1~bpo70+1_i386 + libgstreamer1.0-dev_1.0.8-1~bpo70+1_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-cpp0_4.10.0beta-1~bpo70+1_i386 + libgwengui-fox16-0_4.10.0beta-1~bpo70+1_i386 + libgwengui-gtk2-0_4.10.0beta-1~bpo70+1_i386 + libgwengui-qt4-0_4.10.0beta-1~bpo70+1_i386 + libgwenhywfar60_4.10.0beta-1~bpo70+1_i386 + libgwenhywfar60-dbg_4.10.0beta-1~bpo70+1_i386 + libgwenhywfar60-dev_4.10.0beta-1~bpo70+1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgyoto1_0.1.0-2~bpo70+1_i386 + libgyoto1-dev_0.1.0-2~bpo70+1_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhackrf-dev_2013.07.1.16.d5cebd-2~bpo70+1_i386 + libhackrf0_2013.07.1.16.d5cebd-2~bpo70+1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhavege-dev_1.7b-2~bpo70+1_i386 + libhavege1_1.7b-2~bpo70+1_i386 + libhavege1-dbg_1.7b-2~bpo70+1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.9-1~bpo70+1_i386 + libhivex-dev_1.3.9-1~bpo70+1_i386 + libhivex-ocaml_1.3.9-1~bpo70+1_i386 + libhivex-ocaml-dev_1.3.9-1~bpo70+1_i386 + libhivex0_1.3.9-1~bpo70+1_i386 + libhivex0-dbg_1.3.9-1~bpo70+1_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.7.1-1~bpo70+1_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.5.1.is.1.4.2-1~bpo70+1_i386 + libibus-1.0-dev_1.5.1.is.1.4.2-1~bpo70+1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitalccore_1:2.0.1-3~bpo7+1_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gmsh2_2.7.0.dfsg-1~bpo70+1_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-c-dev_0.11-3~bpo7+1_i386 + libjson-c2_0.11-3~bpo7+1_i386 + libjson-c2-dbg_0.11-3~bpo7+1_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.11-3~bpo7+1_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.11-3~bpo7+1_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.6-1~bpo70+1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.16-1~bpo70+1_i386 + libldb1_1:1.1.16-1~bpo70+1_i386 + libldb1-dbg_1:1.1.16-1~bpo70+1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.16-1~bpo70+1_i386 + libldns1_1.6.16-1~bpo70+1_i386 + libldns1-dbg_1.6.16-1~bpo70+1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + liblldpctl-dev_0.7.7-1~bpo70+1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_1:5.14-2~bpo70+1_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_1:5.14-2~bpo70+1_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-perl_0.71-3+b1_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmotif-dev_2.3.3-8_i386 + libmotif4_2.3.3-8_i386 + libmotif4-dbg_2.3.3-8_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_1.0-1~bpo70+1_i386 + libmsv0_0.0.0-1_i386 + libmsv1_1.0-1~bpo70+1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnauty-dev_2.4r2-1_i386 + libnauty1d_2.4r2-1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.8-1~bpo70+1_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.7.1-1~bpo70+1_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.16-1~bpo70+1_i386 + libnotmuch3_0.16-1~bpo70+1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpp4_4.2.9-2_i386 + libnpp5.0_5.0.35-8~bpo70+1_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:4.1.5+dfsg-1~bpo70+1_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntdb-dev_1.0-2~bpo70+1_i386 + libntdb1_1.0-2~bpo70+1_i386 + libntdb1-dbg_1.0-2~bpo70+1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvcuvid1_319.82-1~bpo70+1_i386 + libnvidia-compiler_319.82-1~bpo70+1_i386 + libnvidia-encode1_319.82-1~bpo70+1_i386 + libnvidia-ifr1_319.82-1~bpo70+1_i386 + libnvidia-ml1_319.82-1~bpo70+1_i386 + libnvtoolsext5.0_5.0.35-8~bpo70+1_i386 + libnvtt-bin_2.0.8-1+dfsg-4~bpo70+1_i386 + libnvtt-dev_2.0.8-1+dfsg-4~bpo70+1_i386 + libnvtt2_2.0.8-1+dfsg-4~bpo70+1_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrender29_3.5.2-6~bpo70+1_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobt2_3.5.2-6~bpo70+1_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.90+bzr367-1~bpo70+1_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + libocsync-dev_0.91.4-1~bpo70+1_i386 + libocsync0_0.91.4-1~bpo70+1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.6-1~bpo70+1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenrpt-dev_3.3.4-6~bpo70+1_i386 + libopenrpt1_3.3.4-6~bpo70+1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_1.1-1~bpo70+1_i386 + libopus-dev_1.1-1~bpo70+1_i386 + libopus0_1.1-1~bpo70+1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmosdr-dev_0.1.7.cd37e9-2~bpo70+1_i386 + libosmosdr0_0.1.7.cd37e9-2~bpo70+1_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libotr5_4.0.0-2.2~bpo70+1_i386 + libotr5-bin_4.0.0-2.2~bpo70+1_i386 + libotr5-dev_4.0.0-2.2~bpo70+1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libowncloudsync0_1.5.0+dfsg-4~bpo70+1_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.20.2-1~bpo70+1_i386 + libp11-kit0_0.20.2-1~bpo70+1_i386 + libp11-kit0-dbg_0.20.2-1~bpo70+1_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.6-1~bpo70+1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:4.1.5+dfsg-1~bpo70+1_i386 + libpam-ssh_1.98-2~bpo70+1_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:4.1.5+dfsg-1~bpo70+1_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.5-1~bpo70+1_i386 + libpari-dev_2.5.5-1~bpo70+1_i386 + libpari-gmp3_2.5.5-1~bpo70+1_i386 + libparmetis-dev_3.1.1-4_i386 + libparmetis3.1_3.1.1-4_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_2:4.1.5+dfsg-1~bpo70+1_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpj2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjlib-util2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-audiodev2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-codec2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-videodev2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjnath2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjproject-dev_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip-simple2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip-ua2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsua2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.git20120821-4~bpo70+1_i386 + libpostproc52_6:0.git20120821-4~bpo70+1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libproc-wait3-perl_0.4-1~bpo70+1_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_4.0-6~bpo7+1_i386 + libpulse-mainloop-glib0_4.0-6~bpo7+1_i386 + libpulse-mainloop-glib0-dbg_4.0-6~bpo7+1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_4.0-6~bpo7+1_i386 + libpulse0-dbg_4.0-6~bpo7+1_i386 + libpulsedsp_4.0-6~bpo7+1_i386 + libpulsedsp-dbg_4.0-6~bpo7+1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.7-2~bpo70+1_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.9-3~bpo70+1_i386 + libqgpsmm20_3.9-3~bpo70+1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtkeychain0_0.1.0-2~bpo70+1_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.7.6-1~bpo70+1_i386 + libqxmpp0_0.7.6-1~bpo70+1_i386 + libqxmpp0-dbg_0.7.6-1~bpo70+1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.2.0-1~bpo70+1_i386 + librelp0_1.2.0-1~bpo70+1_i386 + libremctl-dev_3.8-1~bpo70+1_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.8-1~bpo70+1_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:4.1.4-2~bpo70+1_i386 + libreoffice-base_1:4.1.4-2~bpo70+1_i386 + libreoffice-base-core_1:4.1.4-2~bpo70+1_i386 + libreoffice-calc_1:4.1.4-2~bpo70+1_i386 + libreoffice-core_1:4.1.4-2~bpo70+1_i386 + libreoffice-dbg_1:4.1.4-2~bpo70+1_i386 + libreoffice-dev_1:4.1.4-2~bpo70+1_i386 + libreoffice-draw_1:4.1.4-2~bpo70+1_i386 + libreoffice-evolution_1:4.1.4-2~bpo70+1_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:4.1.4-2~bpo70+1_i386 + libreoffice-gtk_1:4.1.4-2~bpo70+1_i386 + libreoffice-gtk3_1:4.1.4-2~bpo70+1_i386 + libreoffice-impress_1:4.1.4-2~bpo70+1_i386 + libreoffice-kde_1:4.1.4-2~bpo70+1_i386 + libreoffice-math_1:4.1.4-2~bpo70+1_i386 + libreoffice-mysql-connector_1.0.2+LibO4.1.4-2~bpo70+1_i386 + libreoffice-officebean_1:4.1.4-2~bpo70+1_i386 + libreoffice-ogltrans_1:4.1.4-2~bpo70+1_i386 + libreoffice-pdfimport_1:4.1.4-2~bpo70+1_i386 + libreoffice-presentation-minimizer_1.0.4+LibO4.1.4-2~bpo70+1_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:4.1.4-2~bpo70+1_i386 + libreoffice-sdbc-postgresql_1:4.1.4-2~bpo70+1_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:4.1.4-2~bpo70+1_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librgxg-dev_0.1-1~bpo70+1_i386 + librgxg0_0.1-1~bpo70+1_i386 + librgxg0-dbg_0.1-1~bpo70+1_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtlsdr-dev_0.5.2.7.3ab6-1~bpo70+1_i386 + librtlsdr0_0.5.2.7.3ab6-1~bpo70+1_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.5.3-2~bpo70+1_i386 + libsaml7_2.4.3-4_i386 + libsaml8_2.5.3-2~bpo70+1_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbc-dev_1.1-2~bpo7+1_i386 + libsbc1_1.1-2~bpo7+1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdl2-2.0-0_2.0.0+dfsg1-2~bpo70+1_i386 + libsdl2-dbg_2.0.0+dfsg1-2~bpo70+1_i386 + libsdl2-dev_2.0.0+dfsg1-2~bpo70+1_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsipxtapi_3.3.0~test12-2~bpo70+1_i386 + libsipxtapi-dev_3.3.0~test12-2~bpo70+1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbclient-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmbsharemodes-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbsharemodes0_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_2.0.5-1~bpo70+1_i386 + libsope1_2.0.5-1~bpo70+1_i386 + libsope1-dbg_2.0.5-1~bpo70+1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.6.0~e8310f-1~bpo70+1_i386 + libsoqt4-20_1.6.0~e8310f-1~bpo70+1_i386 + libsoqt4-dev_1.6.0~e8310f-1~bpo70+1_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.12.4-0nocelt2~bpo70+1_i386 + libspice-server1_0.12.4-0nocelt2~bpo70+1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlcipher-dev_2.2.1-2~bpo70+1_i386 + libsqlcipher0_2.2.1-2~bpo70+1_i386 + libsqlcipher0-dbg_2.2.1-2~bpo70+1_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-compare-constanttime-perl_0.300-1~bpo70+1_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_5.1.1-2~bpo70+1_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:9.10-1~bpo70+1_i386 + libswscale2_6:9.10-1~bpo70+1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.9.1-2~bpo70+1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.9.1-2~bpo70+1_i386 + libtag1c2a_1.9.1-2~bpo70+1_i386 + libtagc0_1.9.1-2~bpo70+1_i386 + libtagc0-dev_1.9.1-2~bpo70+1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.1.0-1~bpo70+1_i386 + libtalloc2_2.1.0-1~bpo70+1_i386 + libtalloc2-dbg_2.1.0-1~bpo70+1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtasn1-6_3.4-2~bpo70+1_i386 + libtasn1-6-dbg_3.4-2~bpo70+1_i386 + libtasn1-6-dev_3.4-2~bpo70+1_i386 + libtasn1-bin_3.4-2~bpo70+1_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtcplay_1.1-1~bpo70+1_i386 + libtcplay-dev_1.1-1~bpo70+1_i386 + libtdb-dev_1.2.12-1~bpo70+1_i386 + libtdb1_1.2.12-1~bpo70+1_i386 + libtdb1-dbg_1.2.12-1~bpo70+1_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtet1.4_1.4.3-1_i386 + libtet1.4-dev_1.4.3-1_i386 + libtevent-dev_0.9.19-1~bpo70+1_i386 + libtevent0_0.9.19-1~bpo70+1_i386 + libtevent0-dbg_0.9.19-1~bpo70+1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtriangle-1.6_1.6-2_i386 + libtriangle-dev_1.6-2_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libttspico-dev_1.0+git20110131-2_i386 + libttspico-utils_1.0+git20110131-2_i386 + libttspico0_1.0+git20110131-2_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libu1db-dev_0.1.4-2~bpo70+1_i386 + libu1db1_0.1.4-2~bpo70+1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.5.5-1~bpo70+1_i386 + libuhd003_3.5.5-1~bpo70+1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.21-1~bpo70+1_i386 + libunbound2_1.4.21-1~bpo70+1_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.17-1~bpo70+1_i386 + libusb-1.0-0-dbg_2:1.0.17-1~bpo70+1_i386 + libusb-1.0-0-dev_2:1.0.17-1~bpo70+1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.12.6-1~bpo70+1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.6-2~bpo70+1_i386 + libusbredirhost1_0.6-2~bpo70+1_i386 + libusbredirparser-dev_0.6-2~bpo70+1_i386 + libusbredirparser0_0.4.3-2_i386 + libusbredirparser1_0.6-2~bpo70+1_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.14-dbg_3.14.5.8-4~bpo7+1_i386 + libv8-3.14-dev_3.14.5.8-4~bpo7+1_i386 + libv8-3.14.5_3.14.5.8-4~bpo7+1_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.14.5.8-4~bpo7+1_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_1.2.1-1~bpo70+1_i386 + libvirt-dev_1.2.1-1~bpo70+1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt-sanlock_1.2.1-1~bpo70+1_i386 + libvirt0_1.2.1-1~bpo70+1_i386 + libvirt0-dbg_1.2.1-1~bpo70+1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.1.2-2~bpo70+2_i386 + libvlc5_2.1.2-2~bpo70+2_i386 + libvlccore-dev_2.1.2-2~bpo70+2_i386 + libvlccore5_2.0.3-5_i386 + libvlccore7_2.1.2-2~bpo70+2_i386 + libvmtk-dev_1.0.1-1_i386 + libvmtk1.0_1.0.1-1_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.7.2.1-5~bpo70+1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libwbclient0_2:4.1.5+dfsg-1~bpo70+1_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.9-1~bpo70+1_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.10.5-1~bpo70+1_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwireshark3_1.10.5-1~bpo70+1_i386 + libwiretap-dev_1.10.5-1~bpo70+1_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwiretap3_1.10.5-1~bpo70+1_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.10.5-1~bpo70+1_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwsutil3_1.10.5-1~bpo70+1_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_13.12-1~bpo70+1_i386 + libwxsmithlib0_13.12-1~bpo70+1_i386 + libwxsmithlib0-dev_13.12-1~bpo70+1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.16-2~bpo70+1_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.16-2~bpo70+1_i386 + libxapian22-dbg_1.2.16-2~bpo70+1_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-cursor-dev_0.1.1-2~bpo70+1_i386 + libxcb-cursor0_0.1.1-2~bpo70+1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.7.2-2~bpo70+1_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-security-c17_1.7.2-2~bpo70+1_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.5.3-2~bpo70+1_i386 + libxmltooling5_1.4.2-5_i386 + libxmltooling6_1.5.3-2~bpo70+1_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxnvctrl-dev_319.72-1~bpo70+1_i386 + libxnvctrl0_319.72-1~bpo70+1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxtuplecommon-dev_4.1.0-3~bpo70+1_i386 + libxtuplecommon1_4.1.0-3~bpo70+1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvbaw-dev_1:13.12-4~bpo70+1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxvmcnvidia1_304.88-1+deb7u1_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyade_1.05.0-2~bpo70+1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyara-dev_2.0.0-2~bpo70+1_i386 + libyara2_2.0.0-2~bpo70+1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzmq3_3.2.3+dfsg-2~bpo70+1_i386 + libzmq3-dbg_3.2.3+dfsg-2~bpo70+1_i386 + libzmq3-dev_3.2.3+dfsg-2~bpo70+1_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.15-1~bpo70+1_i386 + liferea-dbg_1.8.15-1~bpo70+1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-compiler-gcc-4.6-x86_3.12.9-1~bpo70+1_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.12-0.bpo.1-486_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-686-pae_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-all_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-all-i386_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-common_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-common-rt_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-rt-686-pae_3.12.9-1~bpo70+1_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.12+55~bpo70+1_i386 + linux-headers-686-pae_3.12+55~bpo70+1_i386 + linux-headers-amd64_3.12+55~bpo70+1_i386 + linux-headers-rt-686-pae_3.12+55~bpo70+1_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.12-0.bpo.1-486_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-686-pae_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-686-pae-dbg_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-rt-686-pae_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-rt-686-pae-dbg_3.12.9-1~bpo70+1_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.12+55~bpo70+1_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.12+55~bpo70+1_i386 + linux-image-686-pae-dbg_3.12+55~bpo70+1_i386 + linux-image-amd64_3.12+55~bpo70+1_i386 + linux-image-rt-686-pae_3.12+55~bpo70+1_i386 + linux-image-rt-686-pae-dbg_3.12+55~bpo70+1_i386 + linux-kbuild-3.12_3.12.6-1~bpo70+1_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.12.9-1~bpo70+1_i386 + linux-tools-3.12_3.12.6-1~bpo70+1_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.7.7-1~bpo70+1_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-augeas_0.1.1-3~bpo70+1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1+git063e8a8-2~bpo70+1_i386 + lua-sec-dev_0.4.1+git063e8a8-2~bpo70+1_i386 + lua-socket_3.0~rc1-3~bpo70+1_i386 + lua-socket-dev_3.0~rc1-3~bpo70+1_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + mac-robber_1.02-1~bpo70+1_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madfuload_1.2-4_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + mame_0.146-5_i386 + mame-tools_0.146-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + martian-modem_20080625-2_i386 + martian-modem-source_20080625-2_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbrola_3.01h-6_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.8.2-1~bpo70+1_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + mess_0.146-4_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_i386 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_49-2~bpo70+1_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.4.8-2~bpo70+1_i386 + mongodb-clients_1:2.4.8-2~bpo70+1_i386 + mongodb-dev_1:2.4.8-2~bpo70+1_i386 + mongodb-server_1:2.4.8-2~bpo70+1_i386 + monit_1:5.6-1~bpo70+1_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.4a-1~bpo70+1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motif-clients_2.3.3-8_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.17.6-1~bpo70+1_i386 + mpd-dbg_0.17.6-1~bpo70+1_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mssstest_3.0-3_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.5-1~bpo70+1_i386 + nagios-plugins-common_1.5-1~bpo70+1_i386 + nagios-plugins-contrib_9.20140106~bpo70+1_i386 + nagios-plugins-standard_1.5-1~bpo70+1_i386 + nagios3_3.4.1-5~bpo7+1_i386 + nagios3-cgi_3.4.1-5~bpo7+1_i386 + nagios3-core_3.4.1-5~bpo7+1_i386 + nagios3-dbg_3.4.1-5~bpo7+1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-dropbox_1.4.0-3_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + nauty_2.4r2-1_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmate_0.2.0-3~bpo70+1_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperf_2.4.4-6.1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.7.1-1~bpo70+1_i386 + nettle-dbg_2.7.1-1~bpo70+1_i386 + nettle-dev_2.7.1-1~bpo70+1_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.4.4-1~bpo70+1_i386 + nginx-extras-dbg_1.4.4-1~bpo70+1_i386 + nginx-full_1.4.4-1~bpo70+1_i386 + nginx-full-dbg_1.4.4-1~bpo70+1_i386 + nginx-light_1.4.4-1~bpo70+1_i386 + nginx-light-dbg_1.4.4-1~bpo70+1_i386 + nginx-naxsi_1.4.4-1~bpo70+1_i386 + nginx-naxsi-dbg_1.4.4-1~bpo70+1_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.40-0.1~bpo70+1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodejs_0.10.21~dfsg1-1~bpo7+1_i386 + nodejs-dbg_0.10.21~dfsg1-1~bpo7+1_i386 + nodejs-dev_0.10.21~dfsg1-1~bpo7+1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notion_3+2012042300-1_i386 + notmuch_0.16-1~bpo70+1_i386 + notmuch-dbg_0.16-1~bpo70+1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + ntdb-tools_1.0-2~bpo70+1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvidia-alternative_319.82-1~bpo70+1_i386 + nvidia-alternative-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-alternative-legacy-71xx_71.86.15-3_i386 + nvidia-alternative-legacy-96xx_96.43.23-7~bpo70+1_i386 + nvidia-cg-dev_3.1.0013-1_i386 + nvidia-cg-toolkit_3.1.0013-1_i386 + nvidia-cuda-dev_5.0.35-8~bpo70+1_i386 + nvidia-cuda-gdb_5.0.35-8~bpo70+1_i386 + nvidia-cuda-mps_319.82-1~bpo70+1_i386 + nvidia-cuda-toolkit_5.0.35-8~bpo70+1_i386 + nvidia-detect_319.82-1~bpo70+1_i386 + nvidia-driver_319.82-1~bpo70+1_i386 + nvidia-glx_319.82-1~bpo70+1_i386 + nvidia-glx-legacy_71.86.15-3_i386 + nvidia-glx-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-glx-legacy-71xx_71.86.15-3_i386 + nvidia-glx-legacy-71xx-dev_71.86.15-3_i386 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_i386 + nvidia-glx-legacy-96xx_96.43.23-7~bpo70+1_i386 + nvidia-glx-legacy-dev_71.86.15-3_i386 + nvidia-installer-cleanup_20131102+1~bpo70+1_i386 + nvidia-kernel-2.6-486_304.88+1_i386 + nvidia-kernel-2.6-686-pae_304.88+1_i386 + nvidia-kernel-2.6-amd64_304.88+1_i386 + nvidia-kernel-3.12-0.bpo.1-486_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.12-0.bpo.1-686-pae_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.12-0.bpo.1-amd64_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.2.0-4-486_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-686-pae_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-486_319.82+3.12+1~bpo70+1_i386 + nvidia-kernel-686-pae_319.82+3.12+1~bpo70+1_i386 + nvidia-kernel-amd64_319.82+3.12+1~bpo70+1_i386 + nvidia-kernel-common_20131102+1~bpo70+1_i386 + nvidia-kernel-dkms_319.82-1~bpo70+1_i386 + nvidia-kernel-legacy-173xx-dkms_173.14.39-1~bpo70+1_i386 + nvidia-kernel-legacy-173xx-source_173.14.39-1~bpo70+1_i386 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_i386 + nvidia-kernel-legacy-71xx-source_71.86.15-3_i386 + nvidia-kernel-legacy-96xx-dkms_96.43.23-7~bpo70+1_i386 + nvidia-kernel-legacy-96xx-source_96.43.23-7~bpo70+1_i386 + nvidia-kernel-legacy-source_71.86.15-3_i386 + nvidia-kernel-source_319.82-1~bpo70+1_i386 + nvidia-legacy-173xx-driver_173.14.39-1~bpo70+1_i386 + nvidia-legacy-173xx-kernel-dkms_173.14.39-1~bpo70+1_i386 + nvidia-legacy-173xx-kernel-source_173.14.39-1~bpo70+1_i386 + nvidia-legacy-304xx-alternative_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-driver_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-kernel-dkms_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-kernel-source_304.117-1~bpo70+1_i386 + nvidia-legacy-96xx-driver_96.43.23-7~bpo70+1_i386 + nvidia-legacy-96xx-kernel-dkms_96.43.23-7~bpo70+1_i386 + nvidia-legacy-96xx-kernel-source_96.43.23-7~bpo70+1_i386 + nvidia-libopencl1_319.82-1~bpo70+1_i386 + nvidia-nsight_5.0.35-8~bpo70+1_i386 + nvidia-opencl-common_319.82-1~bpo70+1_i386 + nvidia-opencl-dev_5.0.35-8~bpo70+1_i386 + nvidia-opencl-icd_319.82-1~bpo70+1_i386 + nvidia-profiler_5.0.35-8~bpo70+1_i386 + nvidia-settings_319.72-1~bpo70+1_i386 + nvidia-settings-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-settings-legacy-304xx_304.116-1~bpo70+1_i386 + nvidia-settings-legacy-96xx_96.43.20-2~bpo70+1_i386 + nvidia-smi_319.82-1~bpo70+1_i386 + nvidia-support_20131102+1~bpo70+1_i386 + nvidia-vdpau-driver_319.82-1~bpo70+1_i386 + nvidia-visual-profiler_5.0.35-8~bpo70+1_i386 + nvidia-xconfig_319.72-1~bpo70+1_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.5.0~svn3056+ds-1~bpo70+1_i386 + open-axiom-graphics_1.5.0~svn3056+ds-1~bpo70+1_i386 + open-axiom-hypertex_1.5.0~svn3056+ds-1~bpo70+1_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.6-1~bpo70+1_i386 + openafs-dbg_1.6.6-1~bpo70+1_i386 + openafs-dbserver_1.6.6-1~bpo70+1_i386 + openafs-fileserver_1.6.6-1~bpo70+1_i386 + openafs-fuse_1.6.6-1~bpo70+1_i386 + openafs-kpasswd_1.6.6-1~bpo70+1_i386 + openafs-krb5_1.6.6-1~bpo70+1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.2-6~bpo70+1_i386 + openbox-dev_3.5.2-6~bpo70+1_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + openrpt_3.3.4-6~bpo70+1_i386 + opensaml2-tools_2.5.3-2~bpo70+1_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.5p1-4~bpo70+1_i386 + openssh-server_1:6.5p1-4~bpo70+1_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.3.2-7~bpo70+1_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmo-sdr_0.1.7.cd37e9-2~bpo70+1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owncloud-client_1.5.0+dfsg-4~bpo70+1_i386 + owncloud-client-cmd_1.5.0+dfsg-4~bpo70+1_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.20.2-1~bpo70+1_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p7zip-rar_9.20.1~ds.1-3_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_4.0.1-1~bpo70+1_i386 + paraview-dev_4.0.1-1~bpo70+1_i386 + paraview-python_4.0.1-1~bpo70+1_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.5-1~bpo70+1_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parmetis-test_3.1.1-4_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcapfix_1.0.2-2~bpo70+1_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_1.1.2-1~bpo70+1_i386 + pcmanfm-dbg_1.1.2-1~bpo70+1_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + pepper_0.3.2-2~bpo70+1_i386 + pepperflashplugin-nonfree_1.2~bpo70+1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgplot5_5.2.2-19_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mongo_1.4.5-1~bpo70+1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.8-1~bpo70+1_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phylip_1:3.69-1_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.7-2~bpo70+1_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.7-2~bpo70+1_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_4.0.0-2~bpo70+1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.10.0-1~bpo70+1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.5.4-1~bpo70+1_i386 + poedit-dbg_1.5.4-1~bpo70+1_i386 + pokerth_1.0.1-2~bpo70+1_i386 + pokerth-server_1.0.1-2~bpo70+1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + postbooks_4.1.0-3~bpo70+1_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pptview_8.0-7_i386 + pqiv_0.12-1_i386 + pr3287_3.3.10ga4-2+b1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + primus_0~20130904-1~bpo70+1_i386 + primus-libs_0~20130904-1~bpo70+1_i386 + primus-libs-dbg_0~20130904-1~bpo70+1_i386 + primus-libs-ia32_0~20130904-1~bpo70+1_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.9.1-1~bpo70+1_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.16.285-1~bpo70+1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.16.285-1~bpo70+1_i386 + psi-plus-plugin-psimedia_1.0.3-git20131023-ea487d3-1~bpo70+1_i386 + psi-plus-plugins_0.16.285-1~bpo70+1_i386 + psi-plus-plugins-dbg_0.16.285-1~bpo70+1_i386 + psi-plus-webkit_0.16.285-1~bpo70+1_i386 + psi-plus-webkit-dbg_0.16.285-1~bpo70+1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_4.0-6~bpo7+1_i386 + pulseaudio-dbg_4.0-6~bpo7+1_i386 + pulseaudio-esound-compat_4.0-6~bpo7+1_i386 + pulseaudio-esound-compat-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-bluetooth_4.0-6~bpo7+1_i386 + pulseaudio-module-bluetooth-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-gconf_4.0-6~bpo7+1_i386 + pulseaudio-module-gconf-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-jack_4.0-6~bpo7+1_i386 + pulseaudio-module-jack-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-lirc_4.0-6~bpo7+1_i386 + pulseaudio-module-lirc-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-raop_4.0-6~bpo7+1_i386 + pulseaudio-module-raop-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-x11_4.0-6~bpo7+1_i386 + pulseaudio-module-x11-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-zeroconf_4.0-6~bpo7+1_i386 + pulseaudio-module-zeroconf-dbg_4.0-6~bpo7+1_i386 + pulseaudio-utils_4.0-6~bpo7+1_i386 + pulseaudio-utils-dbg_4.0-6~bpo7+1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-deltarpm_3.6+dfsg-1~bpo7+1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.5-1~bpo70+1_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gmsh_2.7.0.dfsg-1~bpo70+1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.9-3~bpo70+1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.9-1~bpo70+1_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.16-1~bpo70+1_i386 + python-ldb-dbg_1:1.1.16-1~bpo70+1_i386 + python-ldb-dev_1:1.1.16-1~bpo70+1_i386 + python-ldns_1.6.16-1~bpo70+1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_1.2.1-1~bpo70+2_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_3.3.1-1~bpo70+1_i386 + python-lxml-dbg_3.3.1-1~bpo70+1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-m2ext_0.1-1~bpo70+1_i386 + python-magic_1:5.14-2~bpo70+1_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-msgpack_0.3.0-1~bpo70+2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-ntdb_1.0-2~bpo70+1_i386 + python-ntdb-dbg_1.0-2~bpo70+1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-3~bpo70+1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.8-1~bpo70+1_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_2:4.1.5+dfsg-1~bpo70+1_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.1.0-1~bpo70+1_i386 + python-talloc-dbg_2.1.0-1~bpo70+1_i386 + python-talloc-dev_2.1.0-1~bpo70+1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.12-1~bpo70+1_i386 + python-tdb-dbg_1.2.12-1~bpo70+1_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_13.0.0-1~bpo70+1_i386 + python-twisted-bin-dbg_13.0.0-1~bpo70+1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.21-1~bpo70+1_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:4.1.4-2~bpo70+1_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vmtk_1.0.1-1_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.9.8+dfsg-1~bpo70+1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yade_1.05.0-2~bpo70+1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yara_2.0.0-2~bpo70+1_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_13.1.0-1~bpo70+1_i386 + python-zmq-dbg_13.1.0-1~bpo70+1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-deltarpm_3.6+dfsg-1~bpo7+1_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-hivex_1.3.9-1~bpo70+1_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_3.3.1-1~bpo70+1_i386 + python3-lxml-dbg_3.3.1-1~bpo70+1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-msgpack_0.3.0-1~bpo70+2_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-yara_2.0.0-2~bpo70+1_i386 + python3-zmq_13.1.0-1~bpo70+1_i386 + python3-zmq-dbg_13.1.0-1~bpo70+1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_1.1-r2-1~bpo70+1_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.5-1~bpo70+1_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.7.0+dfsg-2~bpo70+2_i386 + qemu-guest-agent_1.7.0+dfsg-2~bpo70+2_i386 + qemu-kvm_1.7.0+dfsg-2~bpo70+2_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-arm_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-common_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-mips_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-misc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-ppc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-sparc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-x86_1.7.0+dfsg-2~bpo70+2_i386 + qemu-user_1.7.0+dfsg-2~bpo70+2_i386 + qemu-user-static_1.7.0+dfsg-2~bpo70+2_i386 + qemu-utils_1.7.0+dfsg-2~bpo70+2_i386 + qemubuilder_0.73~bpo7+1_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtkeychain-dev_0.1.0-2~bpo70+1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-maptools_1:0.7-38-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.3.6+dfsg1-1~bpo70+1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radeontop_0.7-1~bpo70+1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rar_2:4.0.b3-1_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + rebar_2.0.0-5~bpo70+1_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redeclipse_1.4-5~bpo70+1_i386 + redeclipse-dbg_1.4-5~bpo70+1_i386 + redeclipse-server_1.4-5~bpo70+1_i386 + redeclipse-server-dbg_1.4-5~bpo70+1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.8.6-1~bpo70+1_i386 + redis-tools_2:2.8.6-1~bpo70+1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_2:4.1.5+dfsg-1~bpo70+1_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.8-1~bpo70+1_i386 + remctl-server_3.8-1~bpo70+1_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.13.1-1~bpo70+1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rgxg_0.1-1~bpo70+1_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_7.4.4-1~bpo70+1_i386 + rsyslog-gssapi_7.4.4-1~bpo70+1_i386 + rsyslog-mongodb_7.4.4-1~bpo70+1_i386 + rsyslog-mysql_7.4.4-1~bpo70+1_i386 + rsyslog-pgsql_7.4.4-1~bpo70+1_i386 + rsyslog-relp_7.4.4-1~bpo70+1_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtl-sdr_0.5.2.7.3ab6-1~bpo70+1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.12.1-1~bpo70+1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.9-1~bpo70+1_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-notmuch_0.16-1~bpo70+1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-oj_2.0.10-1~bpo70+1_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_4.0.10-1~bpo7+1_i386 + ruby-password_0.5.3-4~bpo70+1_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pcaprub_0.11.3-1~bpo70+1_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.8-1~bpo70+1_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rjb_1.4.8-1~bpo70+1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_1.0.0-1~bpo70+1_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3270_3.3.10ga4-2+b1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-common-bin_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dbg_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dsdb-modules_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-libs_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-testsuite_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba-vfs-modules_2:4.1.5+dfsg-1~bpo70+1_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbc-tools_1.1-2~bpo7+1_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdlmame_0.146-5_i386 + sdlmame-tools_0.146-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + seahorse-nautilus_3.8.0-1~bpo70+1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seaview_1:4.3.3-3_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq-gen_1.3.3-1_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgb_1:20090810-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.4-2~bpo70+1_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_i386 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:4.1.5+dfsg-1~bpo70+1_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_2.0.5a-1~bpo70+1_i386 + sogo-dbg_2.0.5a-1~bpo70+1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacefm_0.9.3-1~bpo70+1_i386 + spacefm-gtk3_0.9.3-1~bpo70+1_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + sparse_0.4.3+20110419-1_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellcast_1.0-21_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.12.4-0nocelt2~bpo70+1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlcipher_2.2.1-2~bpo70+1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-agent-filter_0.3-1~bpo70+1_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.5p1-4~bpo70+1_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_5.1.1-2~bpo70+1_i386 + strongswan-ike_5.1.1-2~bpo70+1_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_5.1.1-2~bpo70+1_i386 + strongswan-starter_5.1.1-2~bpo70+1_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.19.0+dfsg-2~bpo70+1_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.8.1-2~bpo70+1_i386 + supertuxkart-dbg_0.8.1-2~bpo70+1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.2.0-3~bpo70+1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcplay_1.1-1~bpo70+1_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.12-1~bpo70+1_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + teamspeak-client_2.0.32-3.1_i386 + teamspeak-server_2.0.24.1+debian-1.1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.16-1~bpo70+1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetgen_1.4.3-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.23-1~bpo70+1_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + titantools_4.0.11+notdfsg1-5_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.8-5~bpo70+1_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tome_2.3.5-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + triangle-bin_1.6-2_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + trn_3.6-23_i386 + trn4_4.0-test77-6_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.10.5-1~bpo70+1_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u1db-tools_0.1.4-2~bpo70+1_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udevil_0.4.3-1~bpo70+1_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.5.5-1~bpo70+1_i386 + uhub_0.4.1-3~bpo70+1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unace-nonfree_2.5-7_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.21-1~bpo70+1_i386 + unbound-anchor_1.4.21-1~bpo70+1_i386 + unbound-host_1.4.21-1~bpo70+1_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_4.1.4-2~bpo70+1_i386 + uno-libs3-dbg_4.1.4-2~bpo70+1_i386 + unpaper_0.4.2-1_i386 + unrar_1:4.1.4-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_4.1.4-2~bpo70+1_i386 + ure-dbg_4.1.4-2~bpo70+1_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.12.6-1~bpo70+1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.6-2~bpo70+1_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-dbg_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-guest-x11_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-qt_4.2.16-dfsg-3~bpo70+1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.1.2-2~bpo70+2_i386 + vlc-dbg_2.1.2-2~bpo70+2_i386 + vlc-nox_2.1.2-2~bpo70+2_i386 + vlc-plugin-fluidsynth_2.1.2-2~bpo70+2_i386 + vlc-plugin-jack_2.1.2-2~bpo70+2_i386 + vlc-plugin-notify_2.1.2-2~bpo70+2_i386 + vlc-plugin-pulse_2.1.2-2~bpo70+2_i386 + vlc-plugin-sdl_2.1.2-2~bpo70+2_i386 + vlc-plugin-svg_2.1.2-2~bpo70+2_i386 + vlc-plugin-zvbi_2.1.2-2~bpo70+2_i386 + vlock_2.2.2-3_i386 + vmdebootstrap_0.2-1~bpo70+1_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + vokoscreen_1.9.6-1~bpo70+1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + wap-wml-tools_0.0.4-6_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.4.3-2~bpo70+1_i386 + weechat-curses_0.4.3-2~bpo70+1_i386 + weechat-dbg_0.4.3-2~bpo70+1_i386 + weechat-plugins_0.4.3-2~bpo70+1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.6-2~bpo70+1_i386 + wesnoth-1.10-dbg_1:1.10.6-2~bpo70+1_i386 + wesnoth-1.10-server_1:1.10.6-2~bpo70+1_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + wims_1:4.07a~dfsg1-2~bpo1-1_i386 + wims-java-applets_1:4.07a~dfsg1-2~bpo1-1_i386 + winbind_2:4.1.5+dfsg-1~bpo70+1_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.10.5-1~bpo70+1_i386 + wireshark-common_1.10.5-1~bpo70+1_i386 + wireshark-dbg_1.10.5-1~bpo70+1_i386 + wireshark-dev_1.10.5-1~bpo70+1_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_4.0.1.1-1~bpo7+1_i386 + x2goclient-dbg_4.0.1.1-1~bpo7+1_i386 + x2goplugin_4.0.1.1-1~bpo7+1_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x3270_3.3.10ga4-2+b1_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.16-2~bpo70+1_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.16-2~bpo70+1_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:12.3+dfsg1-3~bpo70+2_i386 + xbmc-eventclients-wiiremote_2:12.3+dfsg1-3~bpo70+2_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfractint_20.4.10-2_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmame-svga_0.146-5_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml-security-c-utils_1.7.2-2~bpo70+1_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.9.8+dfsg-1~bpo70+1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-nvidia_319.82-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-173xx_173.14.39-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-304xx_304.117-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_i386 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-7~bpo70+1_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_1.05.0-2~bpo70+1_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.2.1-1~bpo70+1_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yara_2.0.0-2~bpo70+1_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gy_0.0.5-1~bpo70+1_i386 + yorick-gyoto_0.1.0-2~bpo70+1_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-ygsl_1.1.1-1~bpo70+1_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zabbix-agent_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-mysql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-pgsql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-sqlite3_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-server-mysql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-server-pgsql_1:2.0.9+dfsg-1~bpo70+2_i386 + zangband_1:2.7.5pre1-8_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot4Test_gold new file mode 100644 index 00000000..64190106 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot4Test_gold @@ -0,0 +1 @@ +ERROR: unable to load snapshot: snapshot with name snap2 not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot5Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot5Test_gold new file mode 100644 index 00000000..3f48c85b --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot5Test_gold @@ -0,0 +1 @@ +ERROR: unable to create snapshot: snapshot with name snap1 already exists diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot6Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot6Test_gold new file mode 100644 index 00000000..eb356509 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot6Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap4 successfully created. +You can run 'aptly publish snapshot snap4' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot6Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot6Test_snapshot_show new file mode 100644 index 00000000..38d10361 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot6Test_snapshot_show @@ -0,0 +1,57925 @@ +Name: snap4 +Created At: 2014-04-23 23:50:30 MSK +Description: Merged from sources: 'snap1', 'snap2', 'snap3' +Number of packages: 57920 +Packages: + 0ad-data_0.0.14-1~bpo70+1_all + 0ad-data-common_0.0.14-1~bpo70+1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + abs-guide_6.5-1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adequate_0.11.3~bpo70+1_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + album_4.06-2_all + album-data_4.05-2_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-arena-data_7.53-1_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6.0-1~bpo70+1_all + amarok-doc_2.6.0-1~bpo70+1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoeba-data_1.1-6_all + amoebax-data_0.2.1+dfsg-1_all + ampache_3.6-git408e713+dfsg-4~bpo70+1_all + ampache-common_3.6-git408e713+dfsg-4~bpo70+1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciidoctor_0.1.3-1~bpo70+1_all + asciidoctor-doc_0.1.3-1~bpo70+1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + assaultcube-data_1.1.0.4+repack1-2.1~deb7u1_all + asterisk-config_1:11.7.0~dfsg-1~bpo70+1_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:11.7.0~dfsg-1~bpo70+1_all + asterisk-doc_1:11.7.0~dfsg-1~bpo70+1_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es_1.4-1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + astromenace-data-src_1.3.2+repack-1~bpo70+1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atmel-firmware_1.3-4_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autodocktools_1.5.6~rc3~cvs.20120206-1_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automake1.9-doc_1.9.6-1_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.3-1~bpo7+1_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bird6_1.4.0-1~bpo70+1_all + bison-doc_1:2.5-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.5-3~bpo70+1_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-firmware_1.2-3_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.65+dfsg-3~bpo70+1_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + boinc-dev_7.0.65+dfsg-3~bpo70+1_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + bosixnet-daemon_1.6-2~bpo70+1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + broadcom-sta-common_5.100.82.112-8_all + broadcom-sta-dkms_5.100.82.112-8_all + broadcom-sta-source_5.100.82.112-8_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + bup-doc_0.25-1~bpo70+1_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_1.22.0+dfsg1-1~bpo70+1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + calypso_1.3~bpo70+1_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cclib-data_1.0.1-3_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + celestia-common-nonfree_1.6.1-1_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.2.2p3-1~bpo70+1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.2-1~bpo70+1_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.9.3-1~bpo70+1_all + claws-mail-extra-plugins_3.9.3-1~bpo70+1_all + claws-mail-i18n_3.9.3-1~bpo70+1_all + claws-mail-plugins_3.9.3-1~bpo70+1_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.9.3-1~bpo70+1_all + clawsker_0.7.10-1~bpo70+1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + cloud-init_0.7.2-3~bpo70+1_all + cloud-initramfs-dyn-netconf_0.18.debian3~bpo70+1_all + cloud-initramfs-growroot_0.18.debian3~bpo70+1_all + cloud-initramfs-rescuevol_0.18.debian3~bpo70+1_all + cloud-utils_0.26-2~bpo70+1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.11.1-1~bpo70+1_all + cmake-doc_2.8.11.1-1~bpo70+1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_13.12-1~bpo70+1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coffeescript_1.4.0-1~bpo7+1_all + coffeescript-doc_1.4.0-1~bpo7+1_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colobot-common_0.1.2-3~bpo70+2_all + colobot-common-sounds_0.1.2-3~bpo70+2_all + colobot-common-textures_0.1.2-3~bpo70+2_all + colobot-dev-doc_0.1.2-3~bpo70+2_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_5.1.1~bpo70+1_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-doc-nonfree_2012.06.27-2_all + context-modules_20120611-1_all + context-nonfree_2007.03.22-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-doc_8.3pl4-1_all + coq-doc-html_8.3pl4-1_all + coq-doc-pdf_8.3pl4-1_all + coq-theories_8.3.pl4+dfsg-2_all + core-network_4.6-2~bpo70+1_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cpp-4.4-doc_4.4.7-3_all + cpp-4.6-doc_4.6.3-2_all + cpp-4.7-doc_4.7.2-2_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crash-whitepaper_1.0-1.1_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.9.9-1~bpo7+1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.3.8-1~bpo70+1_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cuneiform-common_1.1.0+dfsg-4_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + cython-doc_0.19.1+git34-gac3e3a2-1~bpo70+1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-firmware-nonfree_2.6.1-1_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-lan-config_0.13~bpo70+4_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.55~bpo70+1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-python_1.20131021-1~bpo70+1_all + dh-systemd_1.11~bpo70.1_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + doc-rfc_20120225-2_all + doc-rfc-experimental_20120225-2_all + doc-rfc-fyi-bcp_20120225-2_all + doc-rfc-informational_20120225-2_all + doc-rfc-misc_20120225-2_all + doc-rfc-old-std_20120225-2_all + doc-rfc-others_20120225-2_all + doc-rfc-std_20120225-2_all + doc-rfc-std-proposed_20120225-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + doom-wad-shareware_1.9.fixed-2_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + dput-ng_1.7~bpo70+1_all + dput-ng-doc_1.7~bpo70+1_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + droopy_0.20131121-1~bpo70+1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.26-1~bpo70+1_all + drupal7-mod-libraries_2.1-3~bpo70+1_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + eagle-data_5.12.0-3_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ebook-dev-alp_200407-1_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.9-3~bpo70+1_all + eiskaltdcpp-cli_2.2.9-3~bpo70+1_all + eiskaltdcpp-common_2.2.9-3~bpo70+1_all + eiskaltdcpp-emoticons_2.2.9-3~bpo70+1_all + eiskaltdcpp-gtk-data_2.2.9-3~bpo70+1_all + eiskaltdcpp-qt-data_2.2.9-3~bpo70+1_all + eiskaltdcpp-scripts_2.2.9-3~bpo70+1_all + eiskaltdcpp-sounds_2.2.9-3~bpo70+1_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elmer-doc_2014.02.06-1~bpo70+1_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-common-non-dfsg_23.4+1-1_all + emacs23-el_23.4+1-4_all + emacs24-common-non-dfsg_24.1+1-1_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-doc_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-ic-java_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-jinterface_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-manpages_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-mode_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-nox_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-src_1:16.b.3.1-dfsg-1~bpo70+1_all + erlang-x11_1:16.b.3.1-dfsg-1~bpo70+1_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etoys_4.0.2340-1_all + etoys-doc_4.0.2340-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_3.3.2-1~bpo70+1_all + exaile-plugin-contextinfo_3.3.2-1~bpo70+1_all + exaile-plugin-ipod_3.3.2-1~bpo70+1_all + exaile-plugin-moodbar_3.3.2-1~bpo70+1_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.7.0-1~bpo70+1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.8.3-2~bpo70+1_all + fcitx-config-common_0.4.7-1~bpo70+1_all + fcitx-data_1:4.2.8.3-2~bpo70+1_all + fcitx-frontend-all_1:4.2.8.3-2~bpo70+1_all + fcitx-table-all_1:4.2.8.3-2~bpo70+1_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.11~bpo70+1_all + fdpowermon-icons_1.11~bpo70+1_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-oald_1.4.0-3.1_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-ellpc11k_1.4.0-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.7-2~bpo70+1_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-adi_0.40~bpo70+1_all + firmware-atheros_0.40~bpo70+1_all + firmware-bnx2_0.40~bpo70+1_all + firmware-bnx2x_0.40~bpo70+1_all + firmware-brcm80211_0.40~bpo70+1_all + firmware-intelwimax_0.40~bpo70+1_all + firmware-ipw2x00_0.40~bpo70+1_all + firmware-ivtv_0.40~bpo70+1_all + firmware-iwlwifi_0.40~bpo70+1_all + firmware-libertas_0.40~bpo70+1_all + firmware-linux_0.40~bpo70+1_all + firmware-linux-free_3.2_all + firmware-linux-nonfree_0.40~bpo70+1_all + firmware-myricom_0.40~bpo70+1_all + firmware-netxen_0.40~bpo70+1_all + firmware-qlogic_0.40~bpo70+1_all + firmware-ralink_0.40~bpo70+1_all + firmware-realtek_0.40~bpo70+1_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + foiltex_2.1.4b-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-font-awesome_3.2.1~dfsg-2~bpo7+1_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipafont-nonfree-jisx0208_00103-19_all + fonts-ipafont-nonfree-uigothic_00203-21_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-larabie-deco_1:20011216-4_all + fonts-larabie-straight_1:20011216-4_all + fonts-larabie-uncommon_1:20011216-4_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mathjax_2.2-1~bpo70+1_all + fonts-mathjax-extras_2.2-1~bpo70+1_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-mikachan_9.1-8_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-moe-standard-kai_20120530-1_all + fonts-moe-standard-song_20120530-1_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-noto_2013-04-11-2~bpo70+1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.3+LibO4.1.4-2~bpo70+1_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freecad-doc_0.13.2800-dfsg-1~bpo70+1_all + freeciv-data_2.4.2-1~bpo70+1_all + freeciv-sound-standard_2.4.2-1~bpo70+1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogatto-data_1.2+dfsg-1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fs-uae-launcher_2.2.3+dfsg-4~bpo70+1_all + fs-uae-netplay-server_2.2.3+dfsg-4~bpo70+1_all + fsl_4.1.9-7_all + fsl-doc-4.1_4.1.9-7_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti_2.9.4-1~bpo70+1_all + ganeti-doc_2.9.4-1~bpo70+1_all + ganeti-instance-debootstrap_0.14-1~bpo70+1_all + ganeti2_2.9.4-1~bpo70+1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gawk-doc_4.0.1+ds-1_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-doc_4.4.7-3_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-doc_4.6.3-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-doc_4.7.2-2_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-doc-base_4.7.2-2_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gccgo-4.6-doc_4.6.3-2_all + gccgo-4.7-doc_4.7.2-2_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-doc_4.6.3-2_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-doc_4.7.2-2_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-doc_7.4.1-2_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20131007-1~bpo70+1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.3-1~bpo7+1_all + gettext-el_0.18.3-1~bpo7+1_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-4.4-doc_4.4.7-3_all + gfortran-4.6-doc_4.6.3-2_all + gfortran-4.7-doc_4.7.2-2_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.8.5.3-1~bpo70+1_all + git-arch_1:1.8.5.3-1~bpo70+1_all + git-buildpackage_0.6.1~bpo70+1_all + git-bzr_1:1.8.5.3-1~bpo70+1_all + git-cola_1.4.3.5-1_all + git-core_1:1.8.5.3-1~bpo70+1_all + git-cvs_1:1.8.5.3-1~bpo70+1_all + git-daemon-run_1:1.8.5.3-1~bpo70+1_all + git-daemon-sysvinit_1:1.8.5.3-1~bpo70+1_all + git-doc_1:1.8.5.3-1~bpo70+1_all + git-dpm_0.8.4-1_all + git-el_1:1.8.5.3-1~bpo70+1_all + git-email_1:1.8.5.3-1~bpo70+1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.8.5.3-1~bpo70+1_all + git-man_1:1.8.5.3-1~bpo70+1_all + git-mediawiki_1:1.8.5.3-1~bpo70+1_all + git-remote-gcrypt_0.20130908-5~bpo70+1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.8.5.3-1~bpo70+1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.8.5.3-1~bpo70+1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitolite3_3.5.2-1~bpo70+1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.8.5.3-1~bpo70+1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glibc-doc-reference_2.13-1_all + gliese_3.0.95-2_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmp-doc_5.0.5-1_all + gmpc-data_11.8.16-6_all + gmsh-doc_2.7.0.dfsg-1~bpo70+1_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20140121+dfsg-1~bpo70+1_all + gnash-doc_0.8.11~git20140121+dfsg-1~bpo70+1_all + gnash-opengl_0.8.11~git20140121+dfsg-1~bpo70+1_all + gnat-4.4-doc_4.4.7-3_all + gnat-4.6-doc_4.6.3-2_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extension-weather_0~20130619.gitf74de79-2~bpo70+1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.4-1~bpo70+1_all + gnuplot-doc_4.6.4-1~bpo70+1_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.7.2.1-5~bpo70+1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls-doc_3.2.10-2~bpo70+3_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-other_6.0-4_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsl-doc-info_1.15-1_all + gsl-doc-pdf_1.15-1_all + gsl-ref-html_1.15-1_all + gsl-ref-psdoc_1.15-1_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gstreamer1.0-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-bad-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-base-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-good-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-ugly-doc_1.0.8-1~bpo70+1_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-1.8-doc-non-dfsg_1.8.8+1-1.1_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.1.0-2~bpo70+1_all + gyp_0.1~svn1729-3~bpo7+1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.35-1~bpo70+1_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.20.5-2~bpo70+1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hevea-doc_1.10-3_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.7.1-2~bpo70+1_all + hgview-common_1.7.1-2~bpo70+1_all + hgview-curses_1.7.1-2~bpo70+1_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hijra-applet_0.2.1-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + how-can-i-help_4~bpo70+1_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httpry-daemon_0.1.7-3~bpo70+1_all + httpry-tools_0.1.7-3~bpo70+1_all + httrack-doc_3.46.1-1_all + hugin-data_2013.0.0+dfsg-1~bpo70+1_all + human-icon-theme_0.28.debian-3.3_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwb_1:040412-3_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + i18nspector_0.11.1-1~bpo70+1_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.5.1.is.1.4.2-1~bpo70+1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.2-1~bpo70+1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.5.0.is.1.4.99.1-1~bpo70+1_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles_2.0.1-1_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.9.3-2~bpo70+1_all + icinga-doc_1.9.3-2~bpo70+1_all + icinga-web_1.9.2+dfsg1-1~bpo70+1_all + icinga-web-pnp_1.9.2+dfsg1-1~bpo70+1_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + igv_2.0.30-1_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20130904.1~bpo70+1_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.115~bpo70+1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-package_0.53~bpo70+1_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jhove_1.6+dfsg-1_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.25-1~bpo70+1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kanla_1.4-1~bpo70+1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + keysync_0.2-2~bpo70+1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20140121+dfsg-1~bpo70+1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knot-doc_1.4.3-2~bpo70+1_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + kstars-data-extra-tycho2_1.1r1-9_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.3.5beta-2~bpo70+1_all + libaqbanking-doc_5.3.5beta-2~bpo70+1_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libboinc-app-dev_7.0.65+dfsg-3~bpo70+1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbread-board-perl_0.29-1~bpo70+1_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcajun-dev_2.0.3-1~bpo70+1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcoin80-doc_3.1.4~abc9f50-3~bpo70+1_all + libcoin80-runtime_3.1.4~abc9f50-3~bpo70+1_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcolt-java_1.2.0~nojar-2_all + libcolt-java-doc_1.2.0~nojar-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore++-demo_1.7-12_all + libcore++-doc_1.7-12_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcupti-doc_5.0.35-8~bpo70+1_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwd-doc_1.0.4-1_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-dev_3.2.0-6~bpo70+1_all + libeigen3-doc_3.2.0-6~bpo70+1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + libertas-firmware_9.70.7.p0.0-2_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libf2j-java_0.8.1-2_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libfko-doc_2.5.1-1~bpo70+1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_1.1.2.2-1~bpo70+1_all + libfm-doc_1.1.2.2-1~bpo70+1_all + libfm-gtk-data_1.1.2.2-1~bpo70+1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeotiff-epsg_1.3.0-1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-async-doc_2.0.1.3-1~bpo70+1_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-doctest-doc_0.9.1-1~bpo70+1_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-generic-deriving-doc_1.4.0-2~bpo70+1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.4-3~bpo70+1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-info-doc_0.2.0.1-2~bpo70+1_all + libghc-network-multicast-doc_0.0.10-1~bpo70+1_all + libghc-network-protocol-xmpp-doc_0.4.4-2~bpo70+1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-safesemaphore-doc_0.9.0-1~bpo70+1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-hamlet-doc_0.3.0.1-1~bpo70+1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.10.0beta-1~bpo70+1_all + libgwenhywfar-doc_4.10.0beta-1~bpo70+1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.05-1~bpo70+1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjabsorb-java_1.3-2_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjai-core-java-doc_1.1.4-3_all + libjai-imageio-core-java-doc_1.2-3_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-chosen_0.9.11-1~bpo7+1_all + libjs-codemirror_2.23-1_all + libjs-coffeescript_1.4.0-1~bpo7+1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jcrop_0.9.12+dfsg-1~bpo70+1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-minicolors_1.2.1-1~bpo7+1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-timepicker_1.2-1~bpo70+1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.10.1+dfsg-1~bpo70+1_all + libjs-jquery-ui-docs_1.10.1+dfsg-1~bpo70+1_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-less_1.4.2-1~bpo70+1_all + libjs-mathjax_2.2-1~bpo70+1_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-pdf_0.8.37+dfsg-1~bpo7+1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-twitter-bootstrap_2.0.2+dfsg-4~bpo70+1_all + libjs-twitter-bootstrap-docs_2.0.2+dfsg-4~bpo70+1_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-c-doc_0.11-3~bpo7+1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatch-perl-perl_0.04-1~bpo70+1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sender-perl_0.8.16-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_3.97+dfsg-1~bpo70+1_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-twitter-perl_4.01002-1~bpo70+1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_1.1-1~bpo70+1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-middleware-test-stashwarnings-perl_0.07-1~bpo70+1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.26-1~bpo70+1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.7-2~bpo70+1_all + libpurple-dev_2.10.7-2~bpo70+1_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.7.6-1~bpo70+1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:4.1.4-2~bpo70+1_all + libreoffice-dev-doc_1:4.1.4-2~bpo70+1_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:4.1.4-2~bpo70+1_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:4.1.4-2~bpo70+1_all + libreoffice-help-cs_1:4.1.4-2~bpo70+1_all + libreoffice-help-da_1:4.1.4-2~bpo70+1_all + libreoffice-help-de_1:4.1.4-2~bpo70+1_all + libreoffice-help-dz_1:4.1.4-2~bpo70+1_all + libreoffice-help-el_1:4.1.4-2~bpo70+1_all + libreoffice-help-en-gb_1:4.1.4-2~bpo70+1_all + libreoffice-help-en-us_1:4.1.4-2~bpo70+1_all + libreoffice-help-es_1:4.1.4-2~bpo70+1_all + libreoffice-help-et_1:4.1.4-2~bpo70+1_all + libreoffice-help-eu_1:4.1.4-2~bpo70+1_all + libreoffice-help-fi_1:4.1.4-2~bpo70+1_all + libreoffice-help-fr_1:4.1.4-2~bpo70+1_all + libreoffice-help-gl_1:4.1.4-2~bpo70+1_all + libreoffice-help-hi_1:4.1.4-2~bpo70+1_all + libreoffice-help-hu_1:4.1.4-2~bpo70+1_all + libreoffice-help-it_1:4.1.4-2~bpo70+1_all + libreoffice-help-ja_1:4.1.4-2~bpo70+1_all + libreoffice-help-km_1:4.1.4-2~bpo70+1_all + libreoffice-help-ko_1:4.1.4-2~bpo70+1_all + libreoffice-help-nl_1:4.1.4-2~bpo70+1_all + libreoffice-help-om_1:4.1.4-2~bpo70+1_all + libreoffice-help-pl_1:4.1.4-2~bpo70+1_all + libreoffice-help-pt_1:4.1.4-2~bpo70+1_all + libreoffice-help-pt-br_1:4.1.4-2~bpo70+1_all + libreoffice-help-ru_1:4.1.4-2~bpo70+1_all + libreoffice-help-sk_1:4.1.4-2~bpo70+1_all + libreoffice-help-sl_1:4.1.4-2~bpo70+1_all + libreoffice-help-sv_1:4.1.4-2~bpo70+1_all + libreoffice-help-tr_1:4.1.4-2~bpo70+1_all + libreoffice-help-vi_1:4.1.4-2~bpo70+1_all + libreoffice-help-zh-cn_1:4.1.4-2~bpo70+1_all + libreoffice-help-zh-tw_1:4.1.4-2~bpo70+1_all + libreoffice-java-common_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-af_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ar_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-as_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ast_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-be_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-bg_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-bn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-br_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-bs_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ca_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-cs_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-cy_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-da_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-de_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-dz_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-el_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-en-gb_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-en-za_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-eo_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-es_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-et_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-eu_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-fa_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-fi_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-fr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ga_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-gl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-gu_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-he_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-hi_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-hr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-hu_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-id_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-in_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-is_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-it_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ja_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ka_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-kk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-km_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ko_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ku_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-lt_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-lv_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-mk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ml_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-mn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-mr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nb_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ne_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-nso_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-oc_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-om_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-or_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pa-in_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pt_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-pt-br_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ro_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ru_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-rw_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-si_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sl_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ss_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-st_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-sv_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ta_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-te_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-tg_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-th_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-tn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-tr_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ts_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ug_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-uk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-uz_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-ve_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-vi_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-xh_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-za_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-zh-cn_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-zh-tw_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-zu_1:4.1.4-2~bpo70+1_all + libreoffice-librelogo_1:4.1.4-2~bpo70+1_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-presenter-console_1:4.1.4-2~bpo70+1_all + libreoffice-report-builder_1:4.1.4-2~bpo70+1_all + libreoffice-script-provider-bsh_1:4.1.4-2~bpo70+1_all + libreoffice-script-provider-js_1:4.1.4-2~bpo70+1_all + libreoffice-script-provider-python_1:4.1.4-2~bpo70+1_all + libreoffice-style-crystal_1:4.1.4-2~bpo70+1_all + libreoffice-style-galaxy_1:4.1.4-2~bpo70+1_all + libreoffice-style-hicontrast_1:4.1.4-2~bpo70+1_all + libreoffice-style-oxygen_1:4.1.4-2~bpo70+1_all + libreoffice-style-tango_1:4.1.4-2~bpo70+1_all + libreoffice-subsequentcheckbase_1:4.1.4-2~bpo70+1_all + libreoffice-wiki-publisher_1.1.2+LibO4.1.4-2~bpo70+1_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.5.3-2~bpo70+1_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libserver-starter-perl_0.15-1~bpo70+1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsipxtapi-doc_3.3.0~test12-2~bpo70+1_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.12.6-1~bpo70+2_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstar-parser-perl_0.59-3_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-10~bpo70+1_all + libsunflow-java-doc_0.07.2.svn396+dfsg-10~bpo70+1_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.9.1-2~bpo70+1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_2.00-1~bpo70+1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libttspico-data_1.0+git20110131-2_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-1.0-doc_2:1.0.17-1~bpo70+1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvideo-info-perl_0.993-2_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_1.2.1-1~bpo70+1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.10.5-1~bpo70+1_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libworldwind-java_0.5.0-10_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.5.3-2~bpo70+1_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.15-1~bpo70+1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lime-forensics-dkms_1.1-r17+dfsg-2~bpo70+1_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.21~bpo70+1_all + linux-base_3.5_all + linux-doc_3.12+55~bpo70+1_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.12_3.12.9-1~bpo70+1_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.12_3.12.9-1~bpo70+1_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.12+55~bpo70+1_all + linux-source-2.6_1:3.2+46_all + linux-source-3.12_3.12.9-1~bpo70+1_all + linux-source-3.2_3.2.54-2_all + linux-support-3.12-0.bpo.1_3.12.9-1~bpo70+1_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.12+55~bpo70+1_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-debconfig_4.0~alpha31-1~bpo70+1_all + live-debconfig-doc_4.0~alpha31-1~bpo70+1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lugaru-data_0~20110520.1+hge4354-1_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + make-doc_3.81-5.1_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-posix_2.16-1_all + manpages-posix-dev_2.16-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mbrola-af1_0.0.20040426-2_all + mbrola-br1_2.021-1_all + mbrola-br3_2.021-2_all + mbrola-cr1_0.0.19981028-2_all + mbrola-cz2_0.2-2_all + mbrola-de4_0.0.20020812-1_all + mbrola-de5_1.0-1_all + mbrola-de6_0.0.20021125-2_all + mbrola-de7_0.0.20030404-2_all + mbrola-ee1_0.0.20020407-1_all + mbrola-en1_19980910-2_all + mbrola-es1_0.0.19980610-2_all + mbrola-es2_2.069-1_all + mbrola-fr1_2.050-1_all + mbrola-fr4_0.0.19990521-2_all + mbrola-gr1_19990610-1_all + mbrola-gr2_0.0.20010521-2_all + mbrola-hu1_1.002-2_all + mbrola-id1_1-2_all + mbrola-it3_0.1-2_all + mbrola-it4_0.1-2_all + mbrola-la1_0.0.20050615-2_all + mbrola-mx2_0.1-1_all + mbrola-nl2_0.5-2_all + mbrola-pl1_0.1-2_all + mbrola-pt1_1.0-2_all + mbrola-ro1_1.00-2_all + mbrola-sw1_1.00-2_all + mbrola-sw2_1.0-2_all + mbrola-us1_0.3-2_all + mbrola-us2_0.1-2_all + mbrola-us3_0.1-1_all + mbrola-vz1_2-1_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.8.2-1~bpo70+1_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + mess-data_0.146-4_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgltools-cadd_1.5.6~rc3~cvs.20120206-1_all + mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all + mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all + mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all + mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv-test_1.5.6~rc3~cvs.20120206-1_all + mgltools-pyautodock_1.5.6~rc3~cvs.20120206-1_all + mgltools-pybabel_1.5.6~rc3~cvs.20120206-1_all + mgltools-scenario2_1.5.6~rc3~cvs.20120206-1_all + mgltools-support_1.5.6~rc3~cvs.20120206-1_all + mgltools-symserv_1.5.6~rc3~cvs.20120206-1_all + mgltools-viewerframework_1.5.6~rc3~cvs.20120206-2_all + mgltools-vision_1.5.6~rc3~cvs.20120601-1_all + mgltools-visionlibraries_1.5.6~rc3~cvs.20120601-1_all + mgltools-volume_1.5.6~rc3~cvs.20120206-1_all + mgltools-webservices_1.5.6~rc3~cvs.20120206-1_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + midisport-firmware_1.2-4_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mikutter_0.2.2.1476+dfsg-2~bpo70+1_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirall-doc_1.5.0+dfsg-4~bpo70+1_all + mirall-l10n_1.5.0+dfsg-4~bpo70+1_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mock_1.1.33-1~bpo7+1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.6~bpo70+1_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysign_1.1~bpo70+1_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpi-specs_20040719-2_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.19-2~bpo70+1_all + munin-async_2.0.19-2~bpo70+1_all + munin-common_2.0.19-2~bpo70+1_all + munin-doc_2.0.19-2~bpo70+1_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.19-2~bpo70+1_all + munin-plugins-core_2.0.19-2~bpo70+1_all + munin-plugins-extra_2.0.19-2~bpo70+1_all + munin-plugins-java_2.0.19-2~bpo70+1_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.5-1~bpo70+1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-5~bpo7+1_all + nagios3-doc_3.4.1-5~bpo7+1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.4.4-1~bpo70+1_all + nginx-common_1.4.4-1~bpo70+1_all + nginx-doc_1.4.4-1~bpo70+1_all + nginx-naxsi-ui_1.4.4-1~bpo70+1_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + ngspice-doc_24-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikto_1:2.1.4-2_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + node-less_1.4.2-1~bpo70+1_all + node-uglify_1.3.4-1~bpo7+1_all + nodejs-legacy_0.10.21~dfsg1-1~bpo7+1_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + noshell_4.0.11+notdfsg1-5_all + note_1.3.7-1_all + notion-dev_3+2012042300-1_all + notmuch-emacs_0.16-1~bpo70+1_all + notmuch-mutt_0.16-1~bpo70+1_all + notmuch-vim_0.16-1~bpo70+1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nvidia-cg-doc_3.1.0013-1_all + nvidia-cuda-doc_5.0.35-8~bpo70+1_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + obfsproxy_0.2.6-2~bpo70+1_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-book-en_1.0-5_all + ocaml-book-fr_1.0-5_all + ocaml-core_3.12.0.1_all + ocaml-doc_3.12-2_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + ooohg_09.12a-8_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-graphics-data_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-hypertex-data_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-source_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-test_1.5.0~svn3056+ds-1~bpo70+1_all + open-axiom-tex_1.5.0~svn3056+ds-1~bpo70+1_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.6-1~bpo70+1_all + openafs-modules-dkms_1.6.6-1~bpo70+1_all + openafs-modules-source_1.6.6-1~bpo70+1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.1+svn1229-1~bpo70+2_all + openbios-sparc_1.1+svn1229-1~bpo70+2_all + openbmap-logger_0.4.0-6_all + openbox-gnome-session_3.5.2-6~bpo70+1_all + openbox-kde-session_3.5.2-6~bpo70+1_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2013.06.28-2~bpo70+1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO4.1.4-2~bpo70+1_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_13.11.1~bpo60+1_all + opensaml2-schemas_2.5.3-2~bpo70+1_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstack-debian-images_0.5~bpo70+1_all + openstack-pkg-tools_8~bpo70+1_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openttd-opensfx_0.2.3-3_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_8.0.7-2~bpo70+1_all + origami_0.7.4-1_all + os8_2.1-4_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + othman_0.2.7-1_all + otrs_3.2.11-1~bpo70+1_all + otrs2_3.2.11-1~bpo70+1_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + out-of-order_1.0-2_all + overgod-data_1.0-1.1_all + overlayroot_0.18.debian3~bpo70+1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + owncloud_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-client-doc_1.5.0+dfsg-4~bpo70+1_all + owncloud-client-l10n_1.5.0+dfsg-4~bpo70+1_all + owncloud-doc_0~20131114-1~bpo70+1_all + owncloud-mysql_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-pgsql_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-sqlite_5.0.14.a+dfsg-1~bpo70+2_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + paml-doc_4.5-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_4.0.1-1~bpo70+1_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.5-1~bpo70+1_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parmetis-doc_3.1.1-4_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + pass_1.4.2-1~bpo70+1_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_49-2~bpo70+1_all + pear-channels_0~20131124-1~bpo70+1_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pg-activity_1.1.1-1~bpo70+1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-aws-sdk_1.5.6.2-1~bpo70+1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-dropbox_1.0.0-1~bpo70+1_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-google-api-php-client_0.6.2-1~bpo70+1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-irods-prods_3.3.0~beta1-1~bpo70+1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-patchwork-utf8_1.1.7-1~bpo70+1_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-sabre-dav_1.7.6+dfsg-2~bpo70+1_all + php-sabre-vobject_2.0.7-1~bpo70+1_all + php-sabredav_1.7.6+dfsg-2~bpo70+1_all + php-seclib_0.3.5-2~bpo70+1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-routing_2.0.19-1~bpo70+1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + phy-spread_1.0.3-1_all + phylip-doc_1:3.69-1_all + picard-tools_1.46-1_all + picon-domains_2012.05.09-1_all + picon-misc_2010.01.02-1_all + picon-news_2010.01.02-1_all + picon-unknown_2010.01.02-1_all + picon-usenix_1995.04.13-8_all + picon-users_2012.05.14-1_all + picon-weather_2010.01.02-1_all + pidgin-data_2.10.7-2~bpo70+1_all + pidgin-dev_2.10.7-2~bpo70+1_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.56~bpo70+1_all + piuparts-common_0.56~bpo70+1_all + piuparts-master_0.56~bpo70+1_all + piuparts-slave_0.56~bpo70+1_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_1.9~bpo70+1_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.3.6+dfsg1-1~bpo70+1_all + plt-scheme-doc_5.3.6+dfsg1-1~bpo70+1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_1.0.1-2~bpo70+1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postbooks-schema-demo_4.1.0-1~bpo70+1_all + postbooks-schema-empty_4.1.0-1~bpo70+1_all + postbooks-schema-quickstart_4.1.0-1~bpo70+1_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.35-1~bpo70+1_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.16.285-1~bpo70+1_all + psi-plus-l10n_0.16.285-1~bpo70+1_all + psi-plus-skins_0.16.285-1~bpo70+1_all + psi-plus-sounds_0.16.285-1~bpo70+1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex-jtex_1.7+1-13_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pv-grub-menu_1.2.1~bpo70+1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configparser_3.3.0r2-1~bpo70+1_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.9.1-1~bpo70+1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21+nmu2~bpo70+1_all + python-debianbts_1.11_all + python-debiancontributors_0.6-1~bpo70+2_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-dirspec_4.2.0-1~bpo70+1_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.5.2-1~bpo70+1_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.5.2-1~bpo70+1_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-jsonfield_0.9.12-1~bpo70+1_all + python-django-ldapdb_0.2.0-1~bpo70+2_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.2-1~bpo70+1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-dput_1.7~bpo70+1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-fedmsg_0.7.1-1~bpo70+1_all + python-fedmsg-doc_0.7.1-1~bpo70+1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-ganeti-rapi_2.9.4-1~bpo70+1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hijra_0.2.1-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.5.1.is.1.4.2-1~bpo70+1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_2.0.0-1~bpo70+1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kitchen_1.1.1-1~bpo70+1_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libturpial_1.6.0-1~bpo70+1_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_3.3.1-1~bpo70+1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-moksha.common_1.2.0-1~bpo70+1_all + python-moksha.hub_1.2.1-1~bpo70+1_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.16-1~bpo70+1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-okasha_0.2.4-1_all + python-okasha-examples_0.2.4-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-othman_0.2.7-1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-paisley_0.3.1-1~bpo70+1_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-parsley_1.2-1~bpo70+1_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pgpdump_1.4-1~bpo70+1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-potr_1.0.0-1~bpo70+1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.6+dfsg-1~bpo70+1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.6-1~bpo70+1_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pyptlib_0.0.5-1~bpo70+1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrcode_4.0.1-2~bpo70+1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_2.0.0-1~bpo70+1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.phpdomain_0.1.4-1~bpo70+1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stomper_0.2.7-1~bpo70+1_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_13.0.0-1~bpo70+1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_13.0.0-1~bpo70+1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txsocksx_1.13.0.0-1~bpo70+1_all + python-txtorcon_0.9.1-1~bpo70+1_all + python-txws_0.7.1-2~bpo70+1_all + python-txzmq_0.6.2-1~bpo70+1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-u1db_0.1.4-2~bpo70+1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.7.1-1~bpo70+1_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-validictory_0.8.3-2~bpo70+1_all + python-validictory-doc_0.8.3-2~bpo70+1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-vcversioner_1.13.0.0-1~bpo70+1_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-websocket_0.12.0-1~bpo70+1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-debian_0.1.21+nmu2~bpo70+1_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-dirspec_4.2.0-1~bpo70+1_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-jsonschema_2.0.0-1~bpo70+1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-magic_1:5.14-2~bpo70+1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-notmuch_0.16-1~bpo70+1_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pgpdump_1.4-1~bpo70+1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-potr_1.0.0-1~bpo70+1_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.6+dfsg-1~bpo70+1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_2.0.0-1~bpo70+1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.7.1-1~bpo70+1_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-validictory_0.8.3-2~bpo70+1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.7.0+dfsg-2~bpo70+2_all + qemu-launcher_1.7.4-1_all + qemu-slof_20131015+dfsg-1~bpo70+1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.3.6+dfsg1-1~bpo70+1_all + racket-doc_5.3.6+dfsg1-1~bpo70+1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redeclipse-data_1.4-2~bpo70+1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_2.4.2-1~bpo70+1_all + redmine-mysql_2.4.2-1~bpo70+1_all + redmine-pgsql_2.4.2-1~bpo70+1_all + redmine-sqlite_2.4.2-1~bpo70+1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.19-1~bpo70+1_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.9.5-1~bpo70+1_all + roundcube-core_0.9.5-1~bpo70+1_all + roundcube-mysql_0.9.5-1~bpo70+1_all + roundcube-pgsql_0.9.5-1~bpo70+1_all + roundcube-plugins_0.9.5-1~bpo70+1_all + roundcube-plugins-extra_0.9.2-20130819~bpo70+1_all + roundcube-sqlite3_0.9.5-1~bpo70+1_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_7.4.4-1~bpo70+1_all + rt4-apache2_4.0.19-1~bpo70+1_all + rt4-clients_4.0.19-1~bpo70+1_all + rt4-db-mysql_4.0.19-1~bpo70+1_all + rt4-db-postgresql_4.0.19-1~bpo70+1_all + rt4-db-sqlite_4.0.19-1~bpo70+1_all + rt4-doc-html_4.0.19-1~bpo70+1_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.19-1~bpo70+1_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-backports_3.1.1-1~bpo70+1_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-creole_0.5.0-1~bpo70+1_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_3.0.2-2~bpo70+1_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_4.0.3-3~bpo70+1_all + ruby-haml-magic-translations_4.0.0-1~bpo70+1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.9-1~bpo70+1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-memoize_1.3.1-2~bpo70+1_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.8.0-1~bpo70+1_all + ruby-multipart-parser_0.1.1-1~bpo70+1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-org_0.8.0-1~bpo70+1_all + ruby-packet_0.1.15-5_all + ruby-packetfu_1.1.8-1~bpo70+1_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_4.0.10-1~bpo7+1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-openid_1.3.1-2~bpo70+1_all + ruby-rack-protection_1.5.0-2~bpo70+1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-rails-observers_0.1.1-1~bpo70+1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.14.1-1~bpo70+1_all + ruby-rspec-core_2.14.5-1~bpo70+1_all + ruby-rspec-expectations_2.14.2-1~bpo70+1_all + ruby-rspec-mocks_2.14.3-1~bpo70+1_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubypants_0.2.0-1~bpo70+1_all + ruby-rubypants-doc_0.2.0-1~bpo70+1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.4.3-1~bpo70+1_all + ruby-sinatra-contrib_1.4.1-1~bpo70+1_all + ruby-slim_2.0.1-1~bpo70+1_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-temple_0.6.6-1~bpo70+1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.5-1~bpo70+1_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.4.1-1~bpo70+1_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-typed-array_0.1.2-1~bpo70+1_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-upr_0.2.0-1~bpo70+1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubybook_0.2.1-1_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + salt-common_0.16.4-2~bpo70+1_all + salt-doc_0.16.4-2~bpo70+1_all + salt-master_0.16.4-2~bpo70+1_all + salt-minion_0.16.4-2~bpo70+1_all + salt-syndic_0.16.4-2~bpo70+1_all + samba-common_2:4.1.5+dfsg-1~bpo70+1_all + samba-doc_2:4.1.5+dfsg-1~bpo70+1_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sauerbraten-data_0.0.20100728+repack-1_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-doc_1.4.0+r17300-1_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-ng-doc_1.4.0+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.3-3~bpo70+1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selfhtml_8.1.2-1_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgabios_0.0~svn8-3~bpo70+1_all + sgb-doc_1:20090810-1_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shapetools-tutorial_1.3-3.1_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-markup-samples_3.0.1-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + sl-modem-source_2.9.11~20110321-8+deb7u1_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmp-mibs-downloader_1.1_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_2.0.5a-1~bpo70+1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spacefm-common_0.9.3-1~bpo70+1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + spectrum-roms_20081224-3_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spellcast-doc_1.5_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-deb-proxy_0.7.2~bpo70+1_all + squid-deb-proxy-client_0.7.2~bpo70+1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.5p1-4~bpo70+1_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.5p1-4~bpo70+1_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-english-czech_20120601-1_all + stardict-german-czech_20120201-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_5.1.1-2~bpo70+1_all + strongswan-ikev1_5.1.1-2~bpo70+1_all + strongswan-ikev2_5.1.1-2~bpo70+1_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.19.0+dfsg-2~bpo70+1_all + sumo-tools_0.19.0+dfsg-2~bpo70+1_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-10~bpo70+1_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.8.1-2~bpo70+1_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_4.3+dfsg-1~bpo70+1_all + swfdec-gnome_1:0.8.11~git20140121+dfsg-1~bpo70+1_all + swfdec-mozilla_0.8.11~git20140121+dfsg-1~bpo70+1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t1-xfree86-nonfree_4.2.1-3.1_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tads3-common_1:0.13-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tangerine-icon-theme_0.26.debian-3_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tar-doc_1.26-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texinfo-doc-nonfree_4.13a-1_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + thawab_3.0.13-1_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_1.0.1-2~bpo70+1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-ipafont-jisx0208_00103-19_all + ttf-ipafont-uigothic_00203-21_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-gothic-naga10_20030809-14_all + ttf-kochi-mincho_20030809-15_all + ttf-kochi-mincho-naga10_20030809-14_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-larabie-deco_1:20011216-4_all + ttf-larabie-straight_1:20011216-4_all + ttf-larabie-uncommon_1:20011216-4_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-mikachan_9.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-xfree86-nonfree_4.2.1-3.1_all + ttf-xfree86-nonfree-syriac_4.2.1-3.1_all + ttf-yanone-kaffeesatz_0.20100525-4_all + ttytter_2.1.0-1~deb7u1_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turpial_3.0+dfsg-1~bpo70+1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_13.0.0-1~bpo70+1_all + twittering-mode_3.0.0-1~bpo70+1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2013.2+ds1-2~bpo70+1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + uqm-content_0.6.0+deb1-6_all + uqm-music_0.6.0+deb1-6_all + uqm-voice_0.6.0+deb1-6_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.20131214-1~bpo70+1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-haproxy_1.4.24-2~bpo70+1_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.2.16-dfsg-3~bpo70+1_all + virtualbox-guest-additions_4.1.18-1_all + virtualbox-guest-additions-iso_4.2.16-1~bpo70+1_all + virtualbox-guest-dkms_4.2.16-dfsg-3~bpo70+1_all + virtualbox-guest-source_4.2.16-dfsg-3~bpo70+1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.2.16-dfsg-3~bpo70+1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.1.2-2~bpo70+2_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + vmtk_1.0.1-1_all + volatility_2.3.1-7~bpo70+1_all + volatility-profiles_20140130-1~bpo70+1_all + volatility-tools_2.3.1-7~bpo70+1_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3-recs_20110107-1_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.4.3-2~bpo70+1_all + weechat-dev_0.4.3-2~bpo70+1_all + weechat-doc_0.4.3-2~bpo70+1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.6-2~bpo70+1_all + wesnoth-1.10_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-aoi_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-data_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-did_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-dm_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-dw_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-ei_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-httt_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-l_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-low_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-music_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-nr_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-sof_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-sotbe_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-thot_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-tools_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-trow_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-tsg_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-ttb_1:1.10.6-2~bpo70+1_all + wesnoth-1.10-utbs_1:1.10.6-2~bpo70+1_all + wesnoth-core_1:1.10.6-2~bpo70+1_all + wesnoth-music_1:1.10.6-2~bpo70+1_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + wims-modules_1:4.07a~dfsg1-2~bpo1-1_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.10.5-1~bpo70+1_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + worldwind_0.5.0-10_all + worldwind-doc_0.5.0-10_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + x2goplugin-provider_4.0.1.1-1~bpo7+1_all + xapian-doc_1.2.16-2~bpo70+1_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:12.3+dfsg1-3~bpo70+2_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-dev_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-j2me_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-ps3_2:12.3+dfsg1-3~bpo70+2_all + xbmc-eventclients-xbmc-send_2:12.3+dfsg1-3~bpo70+2_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-naga10_1.1-13.1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfonts-x3270-misc_3.3.10ga4-2_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmame-sdl_0.146-5_all + xmame-tools_0.146-4_all + xmame-x_0.146-5_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xmess-sdl_0.146-4_all + xmess-x_0.146-4_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xml2rfc_1.36-5_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.5.3-2~bpo70+1_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtide-data-nonfree_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-https-everywhere_3.4.5-1~bpo70+1_all + xul-ext-https-finder_087-2~bpo70+1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.6.8.4-1~bpo70+1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_1.05.0-2~bpo70+1_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yale_5.0.95-2_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.4.3-2~bpo7+1_all + yum-utils_1.1.31-2~bpo7+1_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zabbix-frontend-php_1:2.0.9+dfsg-1~bpo70+2_all + zangband-data_1:2.7.5pre1-8_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zd1211-firmware_2.21.0.0-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zekr_1.0.0+repack-7_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zenmap_6.40-0.1~bpo70+1_all + zeroc-ice-manual_3.4.2-1_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0.0.14-3~bpo70+2_amd64 + 0ad-dbg_0.0.14-3~bpo70+2_amd64 + 3270-common_3.3.10ga4-2+b1_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + abyss_1.3.4-3_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + agrep_4.17-9_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + aircrack-ng_1:1.1-6~bpo70+1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algobox_0.8+dfsg-2~bpo70+1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6.0-1~bpo70+1_amd64 + amarok-dbg_2.6.0-1~bpo70+1_amd64 + amarok-utils_2.6.0-1~bpo70+1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amd-clinfo_1:13.12-4~bpo70+1_amd64 + amd-libopencl1_1:13.12-4~bpo70+1_amd64 + amd-opencl-dev_1:13.12-4~bpo70+1_amd64 + amd-opencl-icd_1:13.12-4~bpo70+1_amd64 + amd-opencl-icd-legacy_8.97.100.7-3~bpo70+1_amd64 + amd64-microcode_2.20120910-1~bpo70+1_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amiwm_0.20.48-8_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + android-tools-adb_4.2.2+git20130529-3~bpo70+1_amd64 + android-tools-fastboot_4.2.2+git20130529-3~bpo70+1_amd64 + android-tools-fsutils_4.2.2+git20130529-3~bpo70+1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.25-1~bpo70+1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.3.5beta-2~bpo70+1_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-dahdi_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-dbg_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-modules_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-mp3_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-mysql_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-ooh323_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-voicemail_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-voicemail-imapstorage_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-voicemail-odbcstorage_1:11.7.0~dfsg-1~bpo70+1_amd64 + asterisk-vpb_1:11.7.0~dfsg-1~bpo70+1_amd64 + astromenace_1.3.2+repack-3~bpo70+1_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbswitch-dkms_0.7-1~bpo70+1_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + bilibop_0.4.20~bpo70+1_amd64 + bilibop-common_0.4.20~bpo70+1_amd64 + bilibop-lockfs_0.4.20~bpo70+1_amd64 + bilibop-rules_0.4.20~bpo70+1_amd64 + bilibop-udev_0.4.20~bpo70+1_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.9-1~bpo70+1_amd64 + bip-dbg_0.8.9-1~bpo70+1_amd64 + bird_1.4.0-1~bpo70+1_amd64 + bird-bgp_1.4.0-1~bpo70+1_amd64 + bird-bgp-dbg_1.4.0-1~bpo70+1_amd64 + bird-dbg_1.4.0-1~bpo70+1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bittwist_2.0-3~bpo70+1_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + bladerf-host_0.9.0.15.8ba2499-1~bpo70+1_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blimps-examples_3.9-1_amd64 + blimps-utils_3.9-1_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.5-3~bpo70+1_amd64 + bluefish-dbg_2.2.5-3~bpo70+1_amd64 + bluefish-plugins_2.2.5-3~bpo70+1_amd64 + blueman_1.23-git201312311147-1~bpo70+1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-amd-opencl_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-dbg_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-nvidia-cuda_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + bosixnet-webui_1.6-2~bpo70+1_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + browser-plugin-libreoffice_1:4.1.4-2~bpo70+1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdgames-nonfree_2.17-5_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_034-1~bpo70+1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + bugsx_1.08-12_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumblebee_3.2.1-4~bpo70+1_amd64 + bumblebee-dbg_3.2.1-4~bpo70+1_amd64 + bumblebee-nvidia_3.2.1-4~bpo70+1_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25-1~bpo70+1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + c3270_3.3.10ga4-2+b1_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_1.22.0+dfsg1-1~bpo70+1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.2.2p3-1~bpo70+1_amd64 + check-mk-agent-logwatch_1.2.2p3-1~bpo70+1_amd64 + check-mk-config-icinga_1.2.2p3-1~bpo70+1_amd64 + check-mk-config-nagios3_1.2.2p3-1~bpo70+1_amd64 + check-mk-livestatus_1.2.2p3-1~bpo70+1_amd64 + check-mk-multisite_1.2.2p3-1~bpo70+1_amd64 + check-mk-server_1.2.2p3-1~bpo70+1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.9.3-1~bpo70+1_amd64 + claws-mail-acpi-notifier_3.9.3-1~bpo70+1_amd64 + claws-mail-address-keeper_3.9.3-1~bpo70+1_amd64 + claws-mail-archiver-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-attach-remover_3.9.3-1~bpo70+1_amd64 + claws-mail-attach-warner_3.9.3-1~bpo70+1_amd64 + claws-mail-bogofilter_3.9.3-1~bpo70+1_amd64 + claws-mail-bsfilter-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-clamd-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-dbg_3.9.3-1~bpo70+1_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-feeds-reader_3.9.3-1~bpo70+1_amd64 + claws-mail-fetchinfo-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-gdata-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-multi-notifier_3.9.3-1~bpo70+1_amd64 + claws-mail-newmail-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-pdf-viewer_3.9.3-1~bpo70+1_amd64 + claws-mail-perl-filter_3.9.3-1~bpo70+1_amd64 + claws-mail-pgpinline_3.9.3-1~bpo70+1_amd64 + claws-mail-pgpmime_3.9.3-1~bpo70+1_amd64 + claws-mail-python-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-smime-plugin_3.9.3-1~bpo70+1_amd64 + claws-mail-spam-report_3.9.3-1~bpo70+1_amd64 + claws-mail-spamassassin_3.9.3-1~bpo70+1_amd64 + claws-mail-tnef-parser_3.9.3-1~bpo70+1_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.9.3-1~bpo70+1_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalw-mpi_0.15-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.11.1-1~bpo70+1_amd64 + cmake-curses-gui_2.8.11.1-1~bpo70+1_amd64 + cmake-dbg_2.8.11.1-1~bpo70+1_amd64 + cmake-qt-gui_2.8.11.1-1~bpo70+1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_13.12-1~bpo70+1_amd64 + codeblocks-contrib_13.12-1~bpo70+1_amd64 + codeblocks-contrib-dbg_13.12-1~bpo70+1_amd64 + codeblocks-dbg_13.12-1~bpo70+1_amd64 + codeblocks-dev_13.12-1~bpo70+1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colobot_0.1.2-3~bpo70+2_amd64 + colobot-dbg_0.1.2-3~bpo70+2_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + conserver-client_8.1.18-2.2_amd64 + conserver-server_8.1.18-2.2_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + core-network-daemon_4.6-2~bpo70+1_amd64 + core-network-gui_4.6-2~bpo70+1_amd64 + corekeeper_1.5~bpo70+1_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.73~bpo7+1_amd64 + cowdancer_0.73~bpo7+1_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + crafty_23.4-6_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvimp_0.4.7-2~bpo70+1_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cufflinks_1.3.0-2_amd64 + cultivation_9+dfsg1-1_amd64 + cuneiform_1.1.0+dfsg-4_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython3_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython3-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + darcs-monitor_0.4.2-3~bpo70+1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.2.3-1~bpo70+1_amd64 + darktable-dbg_1.2.3-1~bpo70+1_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.2-3~bpo70+1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + deltarpm_3.6+dfsg-1~bpo7+1_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.21-1~bpo70+1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.32-1~bpo70+1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.13.4~bpo70+1_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + diskscan_0.13-1~bpo70+1_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + doctest_0.9.1-1~bpo70+1_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20130822-2~bpo70+1_amd64 + dovecot-core_1:2.2.9-1~bpo70+1_amd64 + dovecot-dbg_1:2.2.9-1~bpo70+1_amd64 + dovecot-dev_1:2.2.9-1~bpo70+1_amd64 + dovecot-gssapi_1:2.2.9-1~bpo70+1_amd64 + dovecot-imapd_1:2.2.9-1~bpo70+1_amd64 + dovecot-ldap_1:2.2.9-1~bpo70+1_amd64 + dovecot-lmtpd_1:2.2.9-1~bpo70+1_amd64 + dovecot-managesieved_1:2.2.9-1~bpo70+1_amd64 + dovecot-mysql_1:2.2.9-1~bpo70+1_amd64 + dovecot-pgsql_1:2.2.9-1~bpo70+1_amd64 + dovecot-pop3d_1:2.2.9-1~bpo70+1_amd64 + dovecot-sieve_1:2.2.9-1~bpo70+1_amd64 + dovecot-solr_1:2.2.9-1~bpo70+1_amd64 + dovecot-sqlite_1:2.2.9-1~bpo70+1_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.4.4-1~bpo70+1_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamips_0.2.7-0.2.8RC2-5.1_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-daemon-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk3_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk3-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-mini_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-mini-dbg_2.2.9-3~bpo70+1_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + embassy-phylip_3.69+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-asn1_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-base_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-base-hipe_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-common-test_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-corba_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-crypto_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-dbg_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-debugger_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-dev_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-dialyzer_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-diameter_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-edoc_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-eldap_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-erl-docgen_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-eunit_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-gs_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-inets_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-mnesia_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-observer_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-odbc_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-os-mon_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-parsetools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-percept_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-pman_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-public-key_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-reltool_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-runtime-tools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-snmp_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-ssh_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-ssl_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-syntax-tools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-test-server_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-toolbar_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-tools_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-tv_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-typer_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-webtool_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-wx_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-xmerl_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.28.0-1~bpo70+1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.1.0-3~bpo70+1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_1.0.1-1~bpo70+1_amd64 + exfat-utils_1.0.1-1~bpo70+1_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + ext4magic_0.3.1-1~bpo70+1_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + f2j_0.8.1-2_amd64 + f3_2.2-1~bpo70+1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatrat-unpack_1.1.3-2_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.7-1~bpo70+1_amd64 + fcitx-config-gtk2_0.4.7-1~bpo70+1_amd64 + fcitx-dbg_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-frontend-gtk3_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-frontend-qt4_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-googlepinyin_0.1.6-1~bpo70+1_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-dev_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-gclient_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-qt_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.3.3-1~bpo70+1_amd64 + fcitx-module-dbus_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-kimpanel_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-lua_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-quickphrase-editor_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-x11_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-modules_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-qw_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-amharic_0.2.2-1~bpo70+1_amd64 + fcitx-table-arabic_0.2.2-1~bpo70+1_amd64 + fcitx-table-array30_0.3.4-1~bpo70+1_amd64 + fcitx-table-array30-big_0.3.4-1~bpo70+1_amd64 + fcitx-table-bingchan_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-boshiamy_0.3.4-1~bpo70+1_amd64 + fcitx-table-cangjie_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-cangjie-big_0.3.4-1~bpo70+1_amd64 + fcitx-table-cangjie3_0.3.4-1~bpo70+1_amd64 + fcitx-table-cangjie5_0.3.4-1~bpo70+1_amd64 + fcitx-table-cantonese_0.3.4-1~bpo70+1_amd64 + fcitx-table-cantonhk_0.3.4-1~bpo70+1_amd64 + fcitx-table-cns11643_0.2.2-1~bpo70+1_amd64 + fcitx-table-compose_0.2.2-1~bpo70+1_amd64 + fcitx-table-dianbaoma_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-easy-big_0.3.4-1~bpo70+1_amd64 + fcitx-table-emoji_0.2.2-1~bpo70+1_amd64 + fcitx-table-erbi_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-ipa-x-sampa_0.2.2-1~bpo70+1_amd64 + fcitx-table-jyutping_0.3.4-1~bpo70+1_amd64 + fcitx-table-latex_0.2.2-1~bpo70+1_amd64 + fcitx-table-malayalam-phonetic_0.2.2-1~bpo70+1_amd64 + fcitx-table-quick-classic_0.3.4-1~bpo70+1_amd64 + fcitx-table-quick3_0.3.4-1~bpo70+1_amd64 + fcitx-table-quick5_0.3.4-1~bpo70+1_amd64 + fcitx-table-rustrad_0.2.2-1~bpo70+1_amd64 + fcitx-table-scj6_0.3.4-1~bpo70+1_amd64 + fcitx-table-stroke5_0.3.4-1~bpo70+1_amd64 + fcitx-table-t9_0.3.4-1~bpo70+1_amd64 + fcitx-table-tamil-remington_0.2.2-1~bpo70+1_amd64 + fcitx-table-thai_0.2.2-1~bpo70+1_amd64 + fcitx-table-translit_0.2.2-1~bpo70+1_amd64 + fcitx-table-translit-ua_0.2.2-1~bpo70+1_amd64 + fcitx-table-viqr_0.2.2-1~bpo70+1_amd64 + fcitx-table-wanfeng_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-wbpy_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-wu_0.3.4-1~bpo70+1_amd64 + fcitx-table-wubi_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-table-wubi-large_0.3.4-1~bpo70+1_amd64 + fcitx-table-yawerty_0.2.2-1~bpo70+1_amd64 + fcitx-table-zhengma_0.3.4-1~bpo70+1_amd64 + fcitx-table-zhengma-large_0.3.4-1~bpo70+1_amd64 + fcitx-table-ziranma_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-tools_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-ui-classic_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fglrx-atieventsd_1:13.12-4~bpo70+1_amd64 + fglrx-control_1:13.12-4~bpo70+1_amd64 + fglrx-driver_1:13.12-4~bpo70+1_amd64 + fglrx-glx_1:12-6+point-3_amd64 + fglrx-glx-ia32_1:12-6+point-3_amd64 + fglrx-legacy-atieventsd_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-control_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-driver_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-modules-dkms_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-source_8.97.100.7-3~bpo70+1_amd64 + fglrx-modules-dkms_1:13.12-4~bpo70+1_amd64 + fglrx-source_1:13.12-4~bpo70+1_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_1:5.14-2~bpo70+1_amd64 + file-dbg_1:5.14-2~bpo70+1_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.7-2~bpo70+1_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.6.0-2~bpo70+1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.5-1~bpo70+1_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + flydraw_1:4.07a~dfsg1-2~bpo1-1_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecad_0.13.2800-dfsg-1~bpo70+1_amd64 + freecad-dev_0.13.2800-dfsg-1~bpo70+1_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.4.2-1~bpo70+1_amd64 + freeciv-client-gtk_2.4.2-1~bpo70+1_amd64 + freeciv-client-sdl_2.4.2-1~bpo70+1_amd64 + freeciv-client-xaw3d_2.4.2-1~bpo70+1_amd64 + freeciv-server_2.4.2-1~bpo70+1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frobtads_1:0.13-2_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fs-uae_2.2.3+dfsg-4~bpo70+1_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsl-4.1_4.1.9-7_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.6.5.ds-3~bpo70+1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.5.1-1~bpo70+1_amd64 + fwknop-server_2.5.1-1~bpo70+1_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-haskell_2.9.4-1~bpo70+1_amd64 + ganeti-htools_2.9.4-1~bpo70+1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + ganglia-nagios-bridge_1.0.1-1~bpo70+1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.5.0-3~bpo70+1_amd64 + geoip-dbg_1.5.0-3~bpo70+1_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.3-1~bpo7+1_amd64 + gettext-base_0.18.3-1~bpo7+1_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.8.3-2~bpo70+1_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-plugins-base-1.0_1.0.8-1~bpo70+1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gstreamer-1.0_1.0.8-1~bpo70+1_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.5.1.is.1.4.2-1~bpo70+1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.8.5.3-1~bpo70+1_amd64 + git-annex_5.20140210~bpo70+2_amd64 + gitg_0.2.7-1~bpo70+1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-cpufreq_0.6.4-4~bpo70+1_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + glx-alternative-fglrx_0.4.1~bpo70+1_amd64 + glx-alternative-mesa_0.4.1~bpo70+1_amd64 + glx-alternative-nvidia_0.4.1~bpo70+1_amd64 + glx-diversions_0.4.1~bpo70+1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmap_2012-06-12-1_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmsh_2.7.0.dfsg-1~bpo70+1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-common_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-cygnal_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-dbg_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-dev_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-ext-fileio_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-ext-lirc_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-ext-mysql_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnash-tools_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.2-6~bpo70+1_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.4-1~bpo70+1_amd64 + gnuplot-qt_4.6.4-1~bpo70+1_amd64 + gnuplot-x11_4.6.4-1~bpo70+1_amd64 + gnuradio_3.7.2.1-5~bpo70+1_amd64 + gnuradio-dev_3.7.2.1-5~bpo70+1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.2.10-2~bpo70+3_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.9-3~bpo70+1_amd64 + gpsd-clients_3.9-3~bpo70+1_amd64 + gpsd-dbg_3.9-3~bpo70+1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + gr-fcdproplus_0.0.1.1.2c80be-3~bpo70+1_amd64 + gr-iqbal_0.37.1.5.d4fd4d-1~bpo70+1_amd64 + gr-osmosdr_0.1.0.55.80c4af-2~bpo70~1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gstreamer1.0-alsa_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-libav_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-libav-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-bad_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-bad-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base-apps_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-good_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-good-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-ugly_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-ugly-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-pulseaudio_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-tools_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-x_1.0.8-1~bpo70+1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.2.10-2~bpo70+3_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.10.0beta-1~bpo70+1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.1.0-2~bpo70+1_amd64 + gyoto-dbg_0.1.0-2~bpo70+1_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hackrf_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + haproxy_1.4.24-2~bpo70+1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.7b-2~bpo70+1_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.20.5-2~bpo70+1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.5.3-1~bpo70+1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htpdate_1.1.0-1~bpo70+1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httpry_0.1.7-3~bpo70+1_amd64 + httpry-dbg_0.1.7-3~bpo70+1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2013.0.0+dfsg-1~bpo70+1_amd64 + hugin-tools_2013.0.0+dfsg-1~bpo70+1_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.7.2-1~bpo70+1_amd64 + i3-wm_4.7.2-1~bpo70+1_amd64 + i3-wm-dbg_4.7.2-1~bpo70+1_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.8-1~bpo70+1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.5.1.is.1.4.2-1~bpo70+1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.5.1.is.1.4.2-1~bpo70+1_amd64 + ibus-gtk3_1.5.1.is.1.4.2-1~bpo70+1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.9.3-2~bpo70+1_amd64 + icinga-cgi_1.9.3-2~bpo70+1_amd64 + icinga-core_1.9.3-2~bpo70+1_amd64 + icinga-dbg_1.9.3-2~bpo70+1_amd64 + icinga-idoutils_1.9.3-2~bpo70+1_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike_2.2.1+dfsg-2~bpo70+1_amd64 + ike-qtgui_2.2.1+dfsg-2~bpo70+1_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imview_1.1.9c-12~bpo70+1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel-microcode_2.20140122.1~bpo70+1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + iozone3_397-2_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptraf-ng_1.1.3.1-2~bpo70+1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.6-2~bpo70+1_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-otr_1.0.0-1~bpo70+1_amd64 + irssi-plugin-otr-dbg_1.0.0-1~bpo70+1_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:2.0.1-3~bpo7+1_amd64 + italc-management-console_1:2.0.1-3~bpo7+1_amd64 + italc-master_1:2.0.1-3~bpo7+1_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iucode-tool_1.0-1~bpo70+1_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.7-140104-1~bpo70+1_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jmtpfs_0.5-2~bpo70+1_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.25-1~bpo70+1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2577+dfsg-3~bpo70+1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.2.1-1~bpo70+1_amd64 + kde-config-gtk-style-preview_3:2.2.1-1~bpo70+1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-4~bpo70+1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kic_2.4a-1.1_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kismet_2013.03.R1b-2~bpo70+1_amd64 + kismet-plugins_2013.03.R1b-2~bpo70+1_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knot_1.4.3-2~bpo70+1_amd64 + knot-dbg_1.4.3-2~bpo70+1_amd64 + knot-dnsutils_1.4.3-2~bpo70+1_amd64 + knot-host_1.4.3-2~bpo70+1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.16-1~bpo70+1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.16-1~bpo70+1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.6-1~bpo70+1_amd64 + libafsrpc1_1.6.6-1~bpo70+1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fastcgi_2.4.7~0910052141-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_4.0.10-1~bpo7+1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.1.0beta-1~bpo70+1_amd64 + libaqbanking34_5.3.5beta-2~bpo70+1_amd64 + libaqbanking34-dbg_5.3.5beta-2~bpo70+1_amd64 + libaqbanking34-dev_5.3.5beta-2~bpo70+1_amd64 + libaqbanking34-plugins_5.3.5beta-2~bpo70+1_amd64 + libaqebics0_5.3.5beta-2~bpo70+1_amd64 + libaqhbci20_5.1.0beta-1~bpo70+1_amd64 + libaqhbci22_5.3.5beta-2~bpo70+1_amd64 + libaqofxconnect7_5.3.5beta-2~bpo70+1_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.920.3+dfsg-1~bpo70+1_amd64 + libarmadillo3_1:3.920.3+dfsg-1~bpo70+1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf-dev_0.18.3-1~bpo7+1_amd64 + libasprintf0c2_0.18.3-1~bpo7+1_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:9.10-1~bpo70+1_amd64 + libav-tools_6:9.10-1~bpo70+1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:9.10-1~bpo70+1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec-extra-54_6:9.10-1~bpo70+1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavcodec54_6:9.10-1~bpo70+1_amd64 + libavdevice-dev_6:9.10-1~bpo70+1_amd64 + libavdevice53_6:9.10-1~bpo70+1_amd64 + libavfilter-dev_6:9.10-1~bpo70+1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavfilter3_6:9.10-1~bpo70+1_amd64 + libavformat-dev_6:9.10-1~bpo70+1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavformat54_6:9.10-1~bpo70+1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavresample-dev_6:9.10-1~bpo70+1_amd64 + libavresample1_6:9.10-1~bpo70+1_amd64 + libavutil-dev_6:9.10-1~bpo70+1_amd64 + libavutil51_6:0.8.9-1_amd64 + libavutil52_6:9.10-1~bpo70+1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbfio-dbg_20130507-1~bpo70+1_amd64 + libbfio-dev_20130507-1~bpo70+1_amd64 + libbfio1_20130507-1~bpo70+1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libbladerf-dev_0.9.0.15.8ba2499-1~bpo70+1_amd64 + libbladerf0_0.9.0.15.8ba2499-1~bpo70+1_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libblimps3_3.9-1_amd64 + libblimps3-dev_3.9-1_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libboinc-app7_7.0.65+dfsg-3~bpo70+1_amd64 + libboinc7_7.0.65+dfsg-3~bpo70+1_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamlpdf-ocaml-dev_0.5-1+b2_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcg_3.1.0013-1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcggl_3.1.0013-1_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_1.1-1~bpo70+1_amd64 + libchromaprint-tools_1.1-1~bpo70+1_amd64 + libchromaprint0_1.1-1~bpo70+1_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclamunrar6_0.96.4-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.9.3-1~bpo70+1_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_13.12-1~bpo70+1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcoin80_3.1.4~abc9f50-3~bpo70+1_amd64 + libcoin80-dev_3.1.4~abc9f50-3~bpo70+1_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore++-dev_1.7-12_amd64 + libcore++1c2_1.7-12_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libcsvimp-dev_0.4.7-2~bpo70+1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcublas4_4.2.9-2_amd64 + libcublas5.0_5.0.35-8~bpo70+1_amd64 + libcuda1_319.82-1~bpo70+1_amd64 + libcuda1-ia32_304.88-1+deb7u1_amd64 + libcudart4_4.2.9-2_amd64 + libcudart5.0_5.0.35-8~bpo70+1_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcufft4_4.2.9-2_amd64 + libcufft5.0_5.0.35-8~bpo70+1_amd64 + libcuinj4_4.2.9-2_amd64 + libcuinj64-5.0_5.0.35-8~bpo70+1_amd64 + libcuneiform-dev_1.1.0+dfsg-4_amd64 + libcuneiform0_1.1.0+dfsg-4_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcupti-dev_5.0.35-8~bpo70+1_amd64 + libcupti4_4.2.9-2_amd64 + libcupti5.0_5.0.35-8~bpo70+1_amd64 + libcurand4_4.2.9-2_amd64 + libcurand5.0_5.0.35-8~bpo70+1_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcusparse4_4.2.9-2_amd64 + libcusparse5.0_5.0.35-8~bpo70+1_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwd_1.0.4-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp-dev_2.2.9-3~bpo70+1_amd64 + libeiskaltdcpp2.2_2.2.9-3~bpo70+1_amd64 + libeiskaltdcpp2.2-dbg_2.2.9-3~bpo70+1_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembperl-perl_2.5.0~rc3-1~bpo70+1_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.9-1~bpo70+1_amd64 + libestr0_0.1.9-1~bpo70+1_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfglrx_1:13.12-4~bpo70+1_amd64 + libfglrx-amdxvba1_1:13.12-4~bpo70+1_amd64 + libfglrx-ia32_1:12-6+point-3_amd64 + libfglrx-legacy_8.97.100.7-3~bpo70+1_amd64 + libfglrx-legacy-amdxvba1_8.97.100.7-3~bpo70+1_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko-perl_2.5.1-1~bpo70+1_amd64 + libfko-python_2.5.1-1~bpo70+1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libfko2_2.5.1-1~bpo70+1_amd64 + libfko2-dbg_2.5.1-1~bpo70+1_amd64 + libfko2-dev_2.5.1-1~bpo70+1_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dbg_1.1.2.2-1~bpo70+1_amd64 + libfm-dev_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk-dbg_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk-dev_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm-gtk3_1.1.2.2-1~bpo70+1_amd64 + libfm-tools_1.1.2.2-1~bpo70+1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfm3_1.1.2.2-1~bpo70+1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-client-dev_1.1.6-7~bpo70+1_amd64 + libfreeradius-client2_1.1.6-7~bpo70+1_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.5.0-3~bpo70+1_amd64 + libgeoip1_1.5.0-3~bpo70+1_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo-dev_0.18.3-1~bpo7+1_amd64 + libgettextpo0_0.18.3-1~bpo7+1_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-async-dev_2.0.1.3-1~bpo70+1_amd64 + libghc-async-prof_2.0.1.3-1~bpo70+1_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-doctest-dev_0.9.1-1~bpo70+1_amd64 + libghc-doctest-prof_0.9.1-1~bpo70+1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-generic-deriving-dev_1.4.0-2~bpo70+1_amd64 + libghc-generic-deriving-prof_1.4.0-2~bpo70+1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.4-3~bpo70+1_amd64 + libghc-gnutls-prof_0.1.4-3~bpo70+1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-info-dev_0.2.0.1-2~bpo70+1_amd64 + libghc-network-info-prof_0.2.0.1-2~bpo70+1_amd64 + libghc-network-multicast-dev_0.0.10-1~bpo70+1_amd64 + libghc-network-multicast-prof_0.0.10-1~bpo70+1_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.4-2~bpo70+1_amd64 + libghc-network-protocol-xmpp-prof_0.4.4-2~bpo70+1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-safesemaphore-dev_0.9.0-1~bpo70+1_amd64 + libghc-safesemaphore-prof_0.9.0-1~bpo70+1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-hamlet-dev_0.3.0.1-1~bpo70+1_amd64 + libghc-xml-hamlet-prof_0.3.0.1-1~bpo70+1_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-fglrx-glx_1:13.12-4~bpo70+1_amd64 + libgl1-fglrx-legacy-glx_8.97.100.7-3~bpo70+1_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl1-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgl1-nvidia-alternatives-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx_319.82-1~bpo70+1_amd64 + libgl1-nvidia-glx-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-legacy-173xx-glx_173.14.39-1~bpo70+1_amd64 + libgl1-nvidia-legacy-173xx-glx-ia32_173.14.35-4_amd64 + libgl1-nvidia-legacy-304xx-glx_304.117-1~bpo70+1_amd64 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_amd64 + libgl1-nvidia-legacy-71xx-glx-ia32_71.86.15-3_amd64 + libgl1-nvidia-legacy-96xx-glx_96.43.23-7~bpo70+1_amd64 + libgl1-nvidia-legacy-96xx-glx-ia32_96.43.23-3_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libglx-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmsh-dev_2.7.0.dfsg-1~bpo70+1_amd64 + libgmsh2_2.7.0.dfsg-1~bpo70+1_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-analog3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-atsc3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-blocks3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-channels3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fcdproplus0_0.0.1.1.2c80be-3~bpo70+1_amd64 + libgnuradio-fec3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fft3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-filter3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-iqbalance0_0.37.1.5.d4fd4d-1~bpo70+1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-osmosdr0.0.0_0.1.0.55.80c4af-2~bpo70~1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-pmt3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-runtime3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-wavelet3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-wxgui3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls-xssl0_3.2.10-2~bpo70+3_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutls28_3.2.10-2~bpo70+3_amd64 + libgnutls28-dbg_3.2.10-2~bpo70+3_amd64 + libgnutls28-dev_3.2.10-2~bpo70+3_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgnutlsxx28_3.2.10-2~bpo70+3_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.4.3-0.1~bpo70+1_amd64 + libgpgme11-dev_1.4.3-0.1~bpo70+1_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.9-3~bpo70+1_amd64 + libgps20_3.9-3~bpo70+1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-bad1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-bad1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer-plugins-base1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-base1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstreamer1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer1.0-0-dbg_1.0.8-1~bpo70+1_amd64 + libgstreamer1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-cpp0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-fox16-0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-gtk2-0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-qt4-0_4.10.0beta-1~bpo70+1_amd64 + libgwenhywfar60_4.10.0beta-1~bpo70+1_amd64 + libgwenhywfar60-dbg_4.10.0beta-1~bpo70+1_amd64 + libgwenhywfar60-dev_4.10.0beta-1~bpo70+1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgyoto1_0.1.0-2~bpo70+1_amd64 + libgyoto1-dev_0.1.0-2~bpo70+1_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhackrf-dev_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + libhackrf0_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhavege-dev_1.7b-2~bpo70+1_amd64 + libhavege1_1.7b-2~bpo70+1_amd64 + libhavege1-dbg_1.7b-2~bpo70+1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.9-1~bpo70+1_amd64 + libhivex-dev_1.3.9-1~bpo70+1_amd64 + libhivex-ocaml_1.3.9-1~bpo70+1_amd64 + libhivex-ocaml-dev_1.3.9-1~bpo70+1_amd64 + libhivex0_1.3.9-1~bpo70+1_amd64 + libhivex0-dbg_1.3.9-1~bpo70+1_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.7.1-1~bpo70+1_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.5.1.is.1.4.2-1~bpo70+1_amd64 + libibus-1.0-dev_1.5.1.is.1.4.2-1~bpo70+1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitalccore_1:2.0.1-3~bpo7+1_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjai-core-java_1.1.4-3_amd64 + libjai-imageio-core-java_1.2-3_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gmsh2_2.7.0.dfsg-1~bpo70+1_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-c-dev_0.11-3~bpo7+1_amd64 + libjson-c2_0.11-3~bpo7+1_amd64 + libjson-c2-dbg_0.11-3~bpo7+1_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.11-3~bpo7+1_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.11-3~bpo7+1_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.6-1~bpo70+1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.16-1~bpo70+1_amd64 + libldb1_1:1.1.16-1~bpo70+1_amd64 + libldb1-dbg_1:1.1.16-1~bpo70+1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.16-1~bpo70+1_amd64 + libldns1_1.6.16-1~bpo70+1_amd64 + libldns1-dbg_1.6.16-1~bpo70+1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + liblldpctl-dev_0.7.7-1~bpo70+1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_1:5.14-2~bpo70+1_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_1:5.14-2~bpo70+1_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-perl_0.71-3+b1_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmetis-edf-dev_4.1-2-3_amd64 + libmetis-edf4.1_4.1-2-3_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmotif-dev_2.3.3-8_amd64 + libmotif4_2.3.3-8_amd64 + libmotif4-dbg_2.3.3-8_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_1.0-1~bpo70+1_amd64 + libmsv0_0.0.0-1_amd64 + libmsv1_1.0-1~bpo70+1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnauty-dev_2.4r2-1_amd64 + libnauty1d_2.4r2-1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.8-1~bpo70+1_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.7.1-1~bpo70+1_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.16-1~bpo70+1_amd64 + libnotmuch3_0.16-1~bpo70+1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpp4_4.2.9-2_amd64 + libnpp5.0_5.0.35-8~bpo70+1_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:4.1.5+dfsg-1~bpo70+1_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntdb-dev_1.0-2~bpo70+1_amd64 + libntdb1_1.0-2~bpo70+1_amd64 + libntdb1-dbg_1.0-2~bpo70+1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvcuvid1_319.82-1~bpo70+1_amd64 + libnvidia-compiler_319.82-1~bpo70+1_amd64 + libnvidia-compiler-ia32_304.88-1+deb7u1_amd64 + libnvidia-encode1_319.82-1~bpo70+1_amd64 + libnvidia-ifr1_319.82-1~bpo70+1_amd64 + libnvidia-ml1_319.82-1~bpo70+1_amd64 + libnvtoolsext5.0_5.0.35-8~bpo70+1_amd64 + libnvtt-bin_2.0.8-1+dfsg-4~bpo70+1_amd64 + libnvtt-dev_2.0.8-1+dfsg-4~bpo70+1_amd64 + libnvtt2_2.0.8-1+dfsg-4~bpo70+1_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrender29_3.5.2-6~bpo70+1_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobt2_3.5.2-6~bpo70+1_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.90+bzr367-1~bpo70+1_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + libocsync-dev_0.91.4-1~bpo70+1_amd64 + libocsync0_0.91.4-1~bpo70+1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.6-1~bpo70+1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenrpt-dev_3.3.4-6~bpo70+1_amd64 + libopenrpt1_3.3.4-6~bpo70+1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_1.1-1~bpo70+1_amd64 + libopus-dev_1.1-1~bpo70+1_amd64 + libopus0_1.1-1~bpo70+1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmosdr-dev_0.1.7.cd37e9-2~bpo70+1_amd64 + libosmosdr0_0.1.7.cd37e9-2~bpo70+1_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libotr5_4.0.0-2.2~bpo70+1_amd64 + libotr5-bin_4.0.0-2.2~bpo70+1_amd64 + libotr5-dev_4.0.0-2.2~bpo70+1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libowncloudsync0_1.5.0+dfsg-4~bpo70+1_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.20.2-1~bpo70+1_amd64 + libp11-kit0_0.20.2-1~bpo70+1_amd64 + libp11-kit0-dbg_0.20.2-1~bpo70+1_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.6-1~bpo70+1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:4.1.5+dfsg-1~bpo70+1_amd64 + libpam-ssh_1.98-2~bpo70+1_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:4.1.5+dfsg-1~bpo70+1_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.5-1~bpo70+1_amd64 + libpari-dev_2.5.5-1~bpo70+1_amd64 + libpari-gmp3_2.5.5-1~bpo70+1_amd64 + libparmetis-dev_3.1.1-4_amd64 + libparmetis3.1_3.1.1-4_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_2:4.1.5+dfsg-1~bpo70+1_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpj2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjlib-util2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-audiodev2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-codec2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-videodev2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjnath2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjproject-dev_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip-simple2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip-ua2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsua2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.git20120821-4~bpo70+1_amd64 + libpostproc52_6:0.git20120821-4~bpo70+1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libproc-wait3-perl_0.4-1~bpo70+1_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_4.0-6~bpo7+1_amd64 + libpulse-mainloop-glib0_4.0-6~bpo7+1_amd64 + libpulse-mainloop-glib0-dbg_4.0-6~bpo7+1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_4.0-6~bpo7+1_amd64 + libpulse0-dbg_4.0-6~bpo7+1_amd64 + libpulsedsp_4.0-6~bpo7+1_amd64 + libpulsedsp-dbg_4.0-6~bpo7+1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.7-2~bpo70+1_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.9-3~bpo70+1_amd64 + libqgpsmm20_3.9-3~bpo70+1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtkeychain0_0.1.0-2~bpo70+1_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.7.6-1~bpo70+1_amd64 + libqxmpp0_0.7.6-1~bpo70+1_amd64 + libqxmpp0-dbg_0.7.6-1~bpo70+1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.2.0-1~bpo70+1_amd64 + librelp0_1.2.0-1~bpo70+1_amd64 + libremctl-dev_3.8-1~bpo70+1_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.8-1~bpo70+1_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:4.1.4-2~bpo70+1_amd64 + libreoffice-base_1:4.1.4-2~bpo70+1_amd64 + libreoffice-base-core_1:4.1.4-2~bpo70+1_amd64 + libreoffice-calc_1:4.1.4-2~bpo70+1_amd64 + libreoffice-core_1:4.1.4-2~bpo70+1_amd64 + libreoffice-dbg_1:4.1.4-2~bpo70+1_amd64 + libreoffice-dev_1:4.1.4-2~bpo70+1_amd64 + libreoffice-draw_1:4.1.4-2~bpo70+1_amd64 + libreoffice-evolution_1:4.1.4-2~bpo70+1_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:4.1.4-2~bpo70+1_amd64 + libreoffice-gtk_1:4.1.4-2~bpo70+1_amd64 + libreoffice-gtk3_1:4.1.4-2~bpo70+1_amd64 + libreoffice-impress_1:4.1.4-2~bpo70+1_amd64 + libreoffice-kde_1:4.1.4-2~bpo70+1_amd64 + libreoffice-math_1:4.1.4-2~bpo70+1_amd64 + libreoffice-mysql-connector_1.0.2+LibO4.1.4-2~bpo70+1_amd64 + libreoffice-officebean_1:4.1.4-2~bpo70+1_amd64 + libreoffice-ogltrans_1:4.1.4-2~bpo70+1_amd64 + libreoffice-pdfimport_1:4.1.4-2~bpo70+1_amd64 + libreoffice-presentation-minimizer_1.0.4+LibO4.1.4-2~bpo70+1_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:4.1.4-2~bpo70+1_amd64 + libreoffice-sdbc-postgresql_1:4.1.4-2~bpo70+1_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:4.1.4-2~bpo70+1_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librgxg-dev_0.1-1~bpo70+1_amd64 + librgxg0_0.1-1~bpo70+1_amd64 + librgxg0-dbg_0.1-1~bpo70+1_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtlsdr-dev_0.5.2.7.3ab6-1~bpo70+1_amd64 + librtlsdr0_0.5.2.7.3ab6-1~bpo70+1_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.5.3-2~bpo70+1_amd64 + libsaml7_2.4.3-4_amd64 + libsaml8_2.5.3-2~bpo70+1_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbc-dev_1.1-2~bpo7+1_amd64 + libsbc1_1.1-2~bpo7+1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdl2-2.0-0_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdl2-dbg_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdl2-dev_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsipxtapi_3.3.0~test12-2~bpo70+1_amd64 + libsipxtapi-dev_3.3.0~test12-2~bpo70+1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbclient-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmbsharemodes-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbsharemodes0_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_2.0.5-1~bpo70+1_amd64 + libsope1_2.0.5-1~bpo70+1_amd64 + libsope1-dbg_2.0.5-1~bpo70+1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.6.0~e8310f-1~bpo70+1_amd64 + libsoqt4-20_1.6.0~e8310f-1~bpo70+1_amd64 + libsoqt4-dev_1.6.0~e8310f-1~bpo70+1_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.12.4-0nocelt2~bpo70+1_amd64 + libspice-server1_0.12.4-0nocelt2~bpo70+1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlcipher-dev_2.2.1-2~bpo70+1_amd64 + libsqlcipher0_2.2.1-2~bpo70+1_amd64 + libsqlcipher0-dbg_2.2.1-2~bpo70+1_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-compare-constanttime-perl_0.300-1~bpo70+1_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_5.1.1-2~bpo70+1_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:9.10-1~bpo70+1_amd64 + libswscale2_6:9.10-1~bpo70+1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.9.1-2~bpo70+1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.9.1-2~bpo70+1_amd64 + libtag1c2a_1.9.1-2~bpo70+1_amd64 + libtagc0_1.9.1-2~bpo70+1_amd64 + libtagc0-dev_1.9.1-2~bpo70+1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.1.0-1~bpo70+1_amd64 + libtalloc2_2.1.0-1~bpo70+1_amd64 + libtalloc2-dbg_2.1.0-1~bpo70+1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtasn1-6_3.4-2~bpo70+1_amd64 + libtasn1-6-dbg_3.4-2~bpo70+1_amd64 + libtasn1-6-dev_3.4-2~bpo70+1_amd64 + libtasn1-bin_3.4-2~bpo70+1_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtcplay_1.1-1~bpo70+1_amd64 + libtcplay-dev_1.1-1~bpo70+1_amd64 + libtdb-dev_1.2.12-1~bpo70+1_amd64 + libtdb1_1.2.12-1~bpo70+1_amd64 + libtdb1-dbg_1.2.12-1~bpo70+1_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtet1.4_1.4.3-1_amd64 + libtet1.4-dev_1.4.3-1_amd64 + libtevent-dev_0.9.19-1~bpo70+1_amd64 + libtevent0_0.9.19-1~bpo70+1_amd64 + libtevent0-dbg_0.9.19-1~bpo70+1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtriangle-1.6_1.6-2_amd64 + libtriangle-dev_1.6-2_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_4.1.2-2~bpo70+1_amd64 + libtsk10_4.1.2-2~bpo70+1_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libttspico-dev_1.0+git20110131-2_amd64 + libttspico-utils_1.0+git20110131-2_amd64 + libttspico0_1.0+git20110131-2_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libu1db-dev_0.1.4-2~bpo70+1_amd64 + libu1db1_0.1.4-2~bpo70+1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.5.5-1~bpo70+1_amd64 + libuhd003_3.5.5-1~bpo70+1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.21-1~bpo70+1_amd64 + libunbound2_1.4.21-1~bpo70+1_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.17-1~bpo70+1_amd64 + libusb-1.0-0-dbg_2:1.0.17-1~bpo70+1_amd64 + libusb-1.0-0-dev_2:1.0.17-1~bpo70+1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.12.6-1~bpo70+1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.6-2~bpo70+1_amd64 + libusbredirhost1_0.6-2~bpo70+1_amd64 + libusbredirparser-dev_0.6-2~bpo70+1_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbredirparser1_0.6-2~bpo70+1_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.14-dbg_3.14.5.8-4~bpo7+1_amd64 + libv8-3.14-dev_3.14.5.8-4~bpo7+1_amd64 + libv8-3.14.5_3.14.5.8-4~bpo7+1_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.14.5.8-4~bpo7+1_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_1.2.1-1~bpo70+1_amd64 + libvirt-dev_1.2.1-1~bpo70+1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt-sanlock_1.2.1-1~bpo70+1_amd64 + libvirt0_1.2.1-1~bpo70+1_amd64 + libvirt0-dbg_1.2.1-1~bpo70+1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.1.2-2~bpo70+2_amd64 + libvlc5_2.1.2-2~bpo70+2_amd64 + libvlccore-dev_2.1.2-2~bpo70+2_amd64 + libvlccore5_2.0.3-5_amd64 + libvlccore7_2.1.2-2~bpo70+2_amd64 + libvmtk-dev_1.0.1-1_amd64 + libvmtk1.0_1.0.1-1_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.7.2.1-5~bpo70+1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libwbclient0_2:4.1.5+dfsg-1~bpo70+1_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.9-1~bpo70+1_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.10.5-1~bpo70+1_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwireshark3_1.10.5-1~bpo70+1_amd64 + libwiretap-dev_1.10.5-1~bpo70+1_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwiretap3_1.10.5-1~bpo70+1_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.10.5-1~bpo70+1_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwsutil3_1.10.5-1~bpo70+1_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_13.12-1~bpo70+1_amd64 + libwxsmithlib0_13.12-1~bpo70+1_amd64 + libwxsmithlib0-dev_13.12-1~bpo70+1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.16-2~bpo70+1_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.16-2~bpo70+1_amd64 + libxapian22-dbg_1.2.16-2~bpo70+1_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-cursor-dev_0.1.1-2~bpo70+1_amd64 + libxcb-cursor0_0.1.1-2~bpo70+1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.7.2-2~bpo70+1_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-security-c17_1.7.2-2~bpo70+1_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.5.3-2~bpo70+1_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmltooling6_1.5.3-2~bpo70+1_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxnvctrl-dev_319.72-1~bpo70+1_amd64 + libxnvctrl0_319.72-1~bpo70+1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxtuplecommon-dev_4.1.0-3~bpo70+1_amd64 + libxtuplecommon1_4.1.0-3~bpo70+1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvbaw-dev_1:13.12-4~bpo70+1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxvmcnvidia1_304.88-1+deb7u1_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyade_1.05.0-2~bpo70+1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyara-dev_2.0.0-2~bpo70+1_amd64 + libyara2_2.0.0-2~bpo70+1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzmq3_3.2.3+dfsg-2~bpo70+1_amd64 + libzmq3-dbg_3.2.3+dfsg-2~bpo70+1_amd64 + libzmq3-dev_3.2.3+dfsg-2~bpo70+1_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.15-1~bpo70+1_amd64 + liferea-dbg_1.8.15-1~bpo70+1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-compiler-gcc-4.6-x86_3.12.9-1~bpo70+1_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.12-0.bpo.1-all_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-all-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-common_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-common-rt_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-rt-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.12+55~bpo70+1_amd64 + linux-headers-rt-amd64_3.12+55~bpo70+1_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-amd64-dbg_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-rt-amd64_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-rt-amd64-dbg_3.12.9-1~bpo70+1_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.12+55~bpo70+1_amd64 + linux-image-amd64-dbg_3.12+55~bpo70+1_amd64 + linux-image-rt-amd64_3.12+55~bpo70+1_amd64 + linux-image-rt-amd64-dbg_3.12+55~bpo70+1_amd64 + linux-kbuild-3.12_3.12.6-1~bpo70+1_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.12.9-1~bpo70+1_amd64 + linux-tools-3.12_3.12.6-1~bpo70+1_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.7.7-1~bpo70+1_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-augeas_0.1.1-3~bpo70+1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1+git063e8a8-2~bpo70+1_amd64 + lua-sec-dev_0.4.1+git063e8a8-2~bpo70+1_amd64 + lua-socket_3.0~rc1-3~bpo70+1+b1_amd64 + lua-socket-dev_3.0~rc1-3~bpo70+1+b1_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + mac-robber_1.02-1~bpo70+1_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madfuload_1.2-4_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + mame_0.146-5_amd64 + mame-tools_0.146-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbrola_3.01h-6_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.8.2-1~bpo70+1_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + mess_0.146-4_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + metis-edf_4.1-2-3_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_amd64 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_49-2~bpo70+1_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.4.8-2~bpo70+1_amd64 + mongodb-clients_1:2.4.8-2~bpo70+1_amd64 + mongodb-dev_1:2.4.8-2~bpo70+1_amd64 + mongodb-server_1:2.4.8-2~bpo70+1_amd64 + monit_1:5.6-1~bpo70+1_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.4a-1~bpo70+1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motif-clients_2.3.3-8_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.17.6-1~bpo70+1_amd64 + mpd-dbg_0.17.6-1~bpo70+1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mssstest_3.0-3_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.5-1~bpo70+1_amd64 + nagios-plugins-common_1.5-1~bpo70+1_amd64 + nagios-plugins-contrib_9.20140106~bpo70+1_amd64 + nagios-plugins-standard_1.5-1~bpo70+1_amd64 + nagios3_3.4.1-5~bpo7+1_amd64 + nagios3-cgi_3.4.1-5~bpo7+1_amd64 + nagios3-core_3.4.1-5~bpo7+1_amd64 + nagios3-dbg_3.4.1-5~bpo7+1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-dropbox_1.4.0-3_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + nauty_2.4r2-1_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmate_0.2.0-3~bpo70+1_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperf_2.4.4-6.1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.7.1-1~bpo70+1_amd64 + nettle-dbg_2.7.1-1~bpo70+1_amd64 + nettle-dev_2.7.1-1~bpo70+1_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.4.4-1~bpo70+1_amd64 + nginx-extras-dbg_1.4.4-1~bpo70+1_amd64 + nginx-full_1.4.4-1~bpo70+1_amd64 + nginx-full-dbg_1.4.4-1~bpo70+1_amd64 + nginx-light_1.4.4-1~bpo70+1_amd64 + nginx-light-dbg_1.4.4-1~bpo70+1_amd64 + nginx-naxsi_1.4.4-1~bpo70+1_amd64 + nginx-naxsi-dbg_1.4.4-1~bpo70+1_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + ngspice_24-1_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.40-0.1~bpo70+1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nocache_0.9-1~bpo70+1_amd64 + nodau_0.3~rc6-1_amd64 + nodejs_0.10.21~dfsg1-1~bpo7+1_amd64 + nodejs-dbg_0.10.21~dfsg1-1~bpo7+1_amd64 + nodejs-dev_0.10.21~dfsg1-1~bpo7+1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notion_3+2012042300-1_amd64 + notmuch_0.16-1~bpo70+1_amd64 + notmuch-dbg_0.16-1~bpo70+1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + ntdb-tools_1.0-2~bpo70+1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nttcp_1.47-13_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvidia-alternative_319.82-1~bpo70+1_amd64 + nvidia-alternative-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-alternative-legacy-71xx_71.86.15-3_amd64 + nvidia-alternative-legacy-96xx_96.43.23-7~bpo70+1_amd64 + nvidia-cg-dev_3.1.0013-1_amd64 + nvidia-cg-toolkit_3.1.0013-1_amd64 + nvidia-cuda-dev_5.0.35-8~bpo70+1_amd64 + nvidia-cuda-gdb_5.0.35-8~bpo70+1_amd64 + nvidia-cuda-mps_319.82-1~bpo70+1_amd64 + nvidia-cuda-toolkit_5.0.35-8~bpo70+1_amd64 + nvidia-detect_319.82-1~bpo70+1_amd64 + nvidia-driver_319.82-1~bpo70+1_amd64 + nvidia-glx_319.82-1~bpo70+1_amd64 + nvidia-glx-ia32_304.88-1+deb7u1_amd64 + nvidia-glx-legacy_71.86.15-3_amd64 + nvidia-glx-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-glx-legacy-173xx-ia32_173.14.35-4_amd64 + nvidia-glx-legacy-71xx_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-dev_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-ia32_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_amd64 + nvidia-glx-legacy-96xx_96.43.23-7~bpo70+1_amd64 + nvidia-glx-legacy-96xx-ia32_96.43.23-3_amd64 + nvidia-glx-legacy-dev_71.86.15-3_amd64 + nvidia-glx-legacy-ia32_71.86.15-3_amd64 + nvidia-installer-cleanup_20131102+1~bpo70+1_amd64 + nvidia-kernel-2.6-amd64_304.88+1_amd64 + nvidia-kernel-3.12-0.bpo.1-amd64_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_amd64 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_amd64 + nvidia-kernel-amd64_319.82+3.12+1~bpo70+1_amd64 + nvidia-kernel-common_20131102+1~bpo70+1_amd64 + nvidia-kernel-dkms_319.82-1~bpo70+1_amd64 + nvidia-kernel-legacy-173xx-dkms_173.14.39-1~bpo70+1_amd64 + nvidia-kernel-legacy-173xx-source_173.14.39-1~bpo70+1_amd64 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_amd64 + nvidia-kernel-legacy-71xx-source_71.86.15-3_amd64 + nvidia-kernel-legacy-96xx-dkms_96.43.23-7~bpo70+1_amd64 + nvidia-kernel-legacy-96xx-source_96.43.23-7~bpo70+1_amd64 + nvidia-kernel-legacy-source_71.86.15-3_amd64 + nvidia-kernel-source_319.82-1~bpo70+1_amd64 + nvidia-legacy-173xx-driver_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-173xx-kernel-dkms_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-173xx-kernel-source_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-304xx-alternative_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-driver_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-kernel-dkms_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-kernel-source_304.117-1~bpo70+1_amd64 + nvidia-legacy-96xx-driver_96.43.23-7~bpo70+1_amd64 + nvidia-legacy-96xx-kernel-dkms_96.43.23-7~bpo70+1_amd64 + nvidia-legacy-96xx-kernel-source_96.43.23-7~bpo70+1_amd64 + nvidia-libopencl1_319.82-1~bpo70+1_amd64 + nvidia-libopencl1-ia32_304.88-1+deb7u1_amd64 + nvidia-nsight_5.0.35-8~bpo70+1_amd64 + nvidia-opencl-common_319.82-1~bpo70+1_amd64 + nvidia-opencl-dev_5.0.35-8~bpo70+1_amd64 + nvidia-opencl-icd_319.82-1~bpo70+1_amd64 + nvidia-opencl-icd-ia32_304.88-1+deb7u1_amd64 + nvidia-profiler_5.0.35-8~bpo70+1_amd64 + nvidia-settings_319.72-1~bpo70+1_amd64 + nvidia-settings-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-settings-legacy-304xx_304.116-1~bpo70+1_amd64 + nvidia-settings-legacy-96xx_96.43.20-2~bpo70+1_amd64 + nvidia-smi_319.82-1~bpo70+1_amd64 + nvidia-support_20131102+1~bpo70+1_amd64 + nvidia-vdpau-driver_319.82-1~bpo70+1_amd64 + nvidia-vdpau-driver-ia32_304.88-1+deb7u1_amd64 + nvidia-visual-profiler_5.0.35-8~bpo70+1_amd64 + nvidia-xconfig_319.72-1~bpo70+1_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.5.0~svn3056+ds-1~bpo70+1_amd64 + open-axiom-graphics_1.5.0~svn3056+ds-1~bpo70+1_amd64 + open-axiom-hypertex_1.5.0~svn3056+ds-1~bpo70+1_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.6-1~bpo70+1_amd64 + openafs-dbg_1.6.6-1~bpo70+1_amd64 + openafs-dbserver_1.6.6-1~bpo70+1_amd64 + openafs-fileserver_1.6.6-1~bpo70+1_amd64 + openafs-fuse_1.6.6-1~bpo70+1_amd64 + openafs-kpasswd_1.6.6-1~bpo70+1_amd64 + openafs-krb5_1.6.6-1~bpo70+1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.2-6~bpo70+1_amd64 + openbox-dev_3.5.2-6~bpo70+1_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + openrpt_3.3.4-6~bpo70+1_amd64 + opensaml2-tools_2.5.3-2~bpo70+1_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.5p1-4~bpo70+1_amd64 + openssh-server_1:6.5p1-4~bpo70+1_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.3.2-7~bpo70+1_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmo-sdr_0.1.7.cd37e9-2~bpo70+1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owncloud-client_1.5.0+dfsg-4~bpo70+1_amd64 + owncloud-client-cmd_1.5.0+dfsg-4~bpo70+1_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.20.2-1~bpo70+1_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p7zip-rar_9.20.1~ds.1-3_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + paml_4.5-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_4.0.1-1~bpo70+1_amd64 + paraview-dev_4.0.1-1~bpo70+1_amd64 + paraview-python_4.0.1-1~bpo70+1_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.5-1~bpo70+1_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parmetis-test_3.1.1-4_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcapfix_1.0.2-2~bpo70+1_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_1.1.2-1~bpo70+1_amd64 + pcmanfm-dbg_1.1.2-1~bpo70+1_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + pepper_0.3.2-2~bpo70+1_amd64 + pepperflashplugin-nonfree_1.2~bpo70+1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgplot5_5.2.2-19_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mongo_1.4.5-1~bpo70+1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.8-1~bpo70+1_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phylip_1:3.69-1_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.7-2~bpo70+1_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.7-2~bpo70+1_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_4.0.0-2~bpo70+1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.10.0-1~bpo70+1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.5.4-1~bpo70+1_amd64 + poedit-dbg_1.5.4-1~bpo70+1_amd64 + pokerth_1.0.1-2~bpo70+1_amd64 + pokerth-server_1.0.1-2~bpo70+1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + postbooks_4.1.0-3~bpo70+1_amd64 + postbooks-updater_2.2.5-4~bpo70+1_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powder_117-1_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pptview_8.0-7_amd64 + pqiv_0.12-1_amd64 + pr3287_3.3.10ga4-2+b1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + primus_0~20130904-1~bpo70+1_amd64 + primus-libs_0~20130904-1~bpo70+1_amd64 + primus-libs-dbg_0~20130904-1~bpo70+1_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.9.1-1~bpo70+1_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.16.285-1~bpo70+1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.16.285-1~bpo70+1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20131023-ea487d3-1~bpo70+1_amd64 + psi-plus-plugins_0.16.285-1~bpo70+1_amd64 + psi-plus-plugins-dbg_0.16.285-1~bpo70+1_amd64 + psi-plus-webkit_0.16.285-1~bpo70+1_amd64 + psi-plus-webkit-dbg_0.16.285-1~bpo70+1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_4.0-6~bpo7+1_amd64 + pulseaudio-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-esound-compat_4.0-6~bpo7+1_amd64 + pulseaudio-esound-compat-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-bluetooth_4.0-6~bpo7+1_amd64 + pulseaudio-module-bluetooth-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-gconf_4.0-6~bpo7+1_amd64 + pulseaudio-module-gconf-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-jack_4.0-6~bpo7+1_amd64 + pulseaudio-module-jack-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-lirc_4.0-6~bpo7+1_amd64 + pulseaudio-module-lirc-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-raop_4.0-6~bpo7+1_amd64 + pulseaudio-module-raop-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-x11_4.0-6~bpo7+1_amd64 + pulseaudio-module-x11-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-module-zeroconf_4.0-6~bpo7+1_amd64 + pulseaudio-module-zeroconf-dbg_4.0-6~bpo7+1_amd64 + pulseaudio-utils_4.0-6~bpo7+1_amd64 + pulseaudio-utils-dbg_4.0-6~bpo7+1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-deltarpm_3.6+dfsg-1~bpo7+1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.5-1~bpo70+1_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gmsh_2.7.0.dfsg-1~bpo70+1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.9-3~bpo70+1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.9-1~bpo70+1_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.16-1~bpo70+1_amd64 + python-ldb-dbg_1:1.1.16-1~bpo70+1_amd64 + python-ldb-dev_1:1.1.16-1~bpo70+1_amd64 + python-ldns_1.6.16-1~bpo70+1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_1.2.1-1~bpo70+2_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_3.3.1-1~bpo70+1_amd64 + python-lxml-dbg_3.3.1-1~bpo70+1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-m2ext_0.1-1~bpo70+1_amd64 + python-magic_1:5.14-2~bpo70+1_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-msgpack_0.3.0-1~bpo70+2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-ntdb_1.0-2~bpo70+1_amd64 + python-ntdb-dbg_1.0-2~bpo70+1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-3~bpo70+1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.8-1~bpo70+1_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_2:4.1.5+dfsg-1~bpo70+1_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.1.0-1~bpo70+1_amd64 + python-talloc-dbg_2.1.0-1~bpo70+1_amd64 + python-talloc-dev_2.1.0-1~bpo70+1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.12-1~bpo70+1_amd64 + python-tdb-dbg_1.2.12-1~bpo70+1_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_13.0.0-1~bpo70+1_amd64 + python-twisted-bin-dbg_13.0.0-1~bpo70+1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.21-1~bpo70+1_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:4.1.4-2~bpo70+1_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vmtk_1.0.1-1_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.9.8+dfsg-1~bpo70+1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yade_1.05.0-2~bpo70+1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yara_2.0.0-2~bpo70+1_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_13.1.0-1~bpo70+1_amd64 + python-zmq-dbg_13.1.0-1~bpo70+1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-deltarpm_3.6+dfsg-1~bpo7+1_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-hivex_1.3.9-1~bpo70+1_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_3.3.1-1~bpo70+1_amd64 + python3-lxml-dbg_3.3.1-1~bpo70+1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-msgpack_0.3.0-1~bpo70+2_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-yara_2.0.0-2~bpo70+1_amd64 + python3-zmq_13.1.0-1~bpo70+1_amd64 + python3-zmq-dbg_13.1.0-1~bpo70+1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_1.1-r2-1~bpo70+1_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.5-1~bpo70+1_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-guest-agent_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-kvm_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-arm_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-common_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-mips_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-misc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-ppc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-sparc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-x86_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-user_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-user-static_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-utils_1.7.0+dfsg-2~bpo70+2_amd64 + qemubuilder_0.73~bpo7+1_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtkeychain-dev_0.1.0-2~bpo70+1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-maptools_1:0.7-38-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.3.6+dfsg1-1~bpo70+1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radeontop_0.7-1~bpo70+1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rar_2:4.0.b3-1_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + rebar_2.0.0-5~bpo70+1_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redeclipse_1.4-5~bpo70+1_amd64 + redeclipse-dbg_1.4-5~bpo70+1_amd64 + redeclipse-server_1.4-5~bpo70+1_amd64 + redeclipse-server-dbg_1.4-5~bpo70+1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.8.6-1~bpo70+1_amd64 + redis-tools_2:2.8.6-1~bpo70+1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_2:4.1.5+dfsg-1~bpo70+1_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.8-1~bpo70+1_amd64 + remctl-server_3.8-1~bpo70+1_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.13.1-1~bpo70+1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rgxg_0.1-1~bpo70+1_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_7.4.4-1~bpo70+1_amd64 + rsyslog-gssapi_7.4.4-1~bpo70+1_amd64 + rsyslog-mongodb_7.4.4-1~bpo70+1_amd64 + rsyslog-mysql_7.4.4-1~bpo70+1_amd64 + rsyslog-pgsql_7.4.4-1~bpo70+1_amd64 + rsyslog-relp_7.4.4-1~bpo70+1_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtl-sdr_0.5.2.7.3ab6-1~bpo70+1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.12.1-1~bpo70+1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.9-1~bpo70+1_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-notmuch_0.16-1~bpo70+1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-oj_2.0.10-1~bpo70+1_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_4.0.10-1~bpo7+1_amd64 + ruby-password_0.5.3-4~bpo70+1_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pcaprub_0.11.3-1~bpo70+1_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.8-1~bpo70+1_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rjb_1.4.8-1~bpo70+1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_1.0.0-1~bpo70+1_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3270_3.3.10ga4-2+b1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-common-bin_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dbg_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dsdb-modules_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-libs_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-testsuite_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba-vfs-modules_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbc-tools_1.1-2~bpo7+1_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdlmame_0.146-5_amd64 + sdlmame-tools_0.146-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + seahorse-nautilus_3.8.0-1~bpo70+1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seaview_1:4.3.3-3_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq-gen_1.3.3-1_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgb_1:20090810-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + sift_4.0.3b-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.4-2~bpo70+1_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_amd64 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_4.1.2-2~bpo70+1_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:4.1.5+dfsg-1~bpo70+1_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_2.0.5a-1~bpo70+1_amd64 + sogo-dbg_2.0.5a-1~bpo70+1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacefm_0.9.3-1~bpo70+1_amd64 + spacefm-gtk3_0.9.3-1~bpo70+1_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + sparse_0.4.3+20110419-1_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.12.4-0nocelt2~bpo70+1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlcipher_2.2.1-2~bpo70+1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-agent-filter_0.3-1~bpo70+1_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.5p1-4~bpo70+1_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_5.1.1-2~bpo70+1_amd64 + strongswan-ike_5.1.1-2~bpo70+1_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_5.1.1-2~bpo70+1_amd64 + strongswan-starter_5.1.1-2~bpo70+1_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.19.0+dfsg-2~bpo70+1_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.8.1-2~bpo70+1_amd64 + supertuxkart-dbg_0.8.1-2~bpo70+1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tads2-dev_1:0.13-2_amd64 + tads3-dev_1:0.13-2_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.2.0-3~bpo70+1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclspice_24-1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcplay_1.1-1~bpo70+1_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.12-1~bpo70+1_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + teamspeak-client_2.0.32-3.1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.16-1~bpo70+1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetgen_1.4.3-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.23-1~bpo70+1_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + titantools_4.0.11+notdfsg1-5_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.8-5~bpo70+1_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tome_2.3.5-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + triangle-bin_1.6-2_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + trn4_4.0-test77-6_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.10.5-1~bpo70+1_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u1db-tools_0.1.4-2~bpo70+1_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udevil_0.4.3-1~bpo70+1_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.5.5-1~bpo70+1_amd64 + uhub_0.4.1-3~bpo70+1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unace-nonfree_2.5-7_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.21-1~bpo70+1_amd64 + unbound-anchor_1.4.21-1~bpo70+1_amd64 + unbound-host_1.4.21-1~bpo70+1_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_4.1.4-2~bpo70+1_amd64 + uno-libs3-dbg_4.1.4-2~bpo70+1_amd64 + unpaper_0.4.2-1_amd64 + unrar_1:4.1.4-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_4.1.4-2~bpo70+1_amd64 + ure-dbg_4.1.4-2~bpo70+1_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.12.6-1~bpo70+1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.6-2~bpo70+1_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-dbg_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-guest-x11_4.2.16-dfsg-3~bpo70+1_amd64 + virtualbox-qt_4.2.16-dfsg-3~bpo70+1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.1.2-2~bpo70+2_amd64 + vlc-dbg_2.1.2-2~bpo70+2_amd64 + vlc-nox_2.1.2-2~bpo70+2_amd64 + vlc-plugin-fluidsynth_2.1.2-2~bpo70+2_amd64 + vlc-plugin-jack_2.1.2-2~bpo70+2_amd64 + vlc-plugin-notify_2.1.2-2~bpo70+2_amd64 + vlc-plugin-pulse_2.1.2-2~bpo70+2_amd64 + vlc-plugin-sdl_2.1.2-2~bpo70+2_amd64 + vlc-plugin-svg_2.1.2-2~bpo70+2_amd64 + vlc-plugin-zvbi_2.1.2-2~bpo70+2_amd64 + vlock_2.2.2-3_amd64 + vmdebootstrap_0.2-1~bpo70+1_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + vokoscreen_1.9.6-1~bpo70+1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + wap-wml-tools_0.0.4-6_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.4.3-2~bpo70+1_amd64 + weechat-curses_0.4.3-2~bpo70+1_amd64 + weechat-dbg_0.4.3-2~bpo70+1_amd64 + weechat-plugins_0.4.3-2~bpo70+1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.6-2~bpo70+1_amd64 + wesnoth-1.10-dbg_1:1.10.6-2~bpo70+1_amd64 + wesnoth-1.10-server_1:1.10.6-2~bpo70+1_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + wims_1:4.07a~dfsg1-2~bpo1-1_amd64 + wims-java-applets_1:4.07a~dfsg1-2~bpo1-1_amd64 + winbind_2:4.1.5+dfsg-1~bpo70+1_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.10.5-1~bpo70+1_amd64 + wireshark-common_1.10.5-1~bpo70+1_amd64 + wireshark-dbg_1.10.5-1~bpo70+1_amd64 + wireshark-dev_1.10.5-1~bpo70+1_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_4.0.1.1-1~bpo7+1_amd64 + x2goclient-dbg_4.0.1.1-1~bpo7+1_amd64 + x2goplugin_4.0.1.1-1~bpo7+1_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x3270_3.3.10ga4-2+b1_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.16-2~bpo70+1_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.16-2~bpo70+1_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:12.3+dfsg1-3~bpo70+2_amd64 + xbmc-eventclients-wiiremote_2:12.3+dfsg1-3~bpo70+2_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.12+55~bpo70+1_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfractint_20.4.10-2_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml-security-c-utils_1.7.2-2~bpo70+1_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.9.8+dfsg-1~bpo70+1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-nvidia_319.82-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-173xx_173.14.39-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-304xx_304.117-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_amd64 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-7~bpo70+1_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsnow_1:1.42-9_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_1.05.0-2~bpo70+1_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.2.1-1~bpo70+1_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yara_2.0.0-2~bpo70+1_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gy_0.0.5-1~bpo70+1_amd64 + yorick-gyoto_0.1.0-2~bpo70+1_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-ygsl_1.1.1-1~bpo70+1_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zabbix-agent_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-mysql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-pgsql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-sqlite3_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-server-mysql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-server-pgsql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zangband_1:2.7.5pre1-8_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0.0.14-3~bpo70+2_i386 + 0ad-dbg_0.0.14-3~bpo70+2_i386 + 3270-common_3.3.10ga4-2+b1_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + aircrack-ng_1:1.1-6~bpo70+1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algobox_0.8+dfsg-2~bpo70+1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6.0-1~bpo70+1_i386 + amarok-dbg_2.6.0-1~bpo70+1_i386 + amarok-utils_2.6.0-1~bpo70+1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amd-clinfo_1:13.12-4~bpo70+1_i386 + amd-libopencl1_1:13.12-4~bpo70+1_i386 + amd-opencl-dev_1:13.12-4~bpo70+1_i386 + amd-opencl-icd_1:13.12-4~bpo70+1_i386 + amd-opencl-icd-legacy_8.97.100.7-3~bpo70+1_i386 + amd64-microcode_2.20120910-1~bpo70+1_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amiwm_0.20.48-8_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + android-tools-adb_4.2.2+git20130529-3~bpo70+1_i386 + android-tools-fastboot_4.2.2+git20130529-3~bpo70+1_i386 + android-tools-fsutils_4.2.2+git20130529-3~bpo70+1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.25-1~bpo70+1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.3.5beta-2~bpo70+1_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-dahdi_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-dbg_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-modules_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-mp3_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-mysql_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-ooh323_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-voicemail_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-voicemail-imapstorage_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-voicemail-odbcstorage_1:11.7.0~dfsg-1~bpo70+1_i386 + asterisk-vpb_1:11.7.0~dfsg-1~bpo70+1_i386 + astromenace_1.3.2+repack-3~bpo70+1_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axe_6.1.2-15.1_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbswitch-dkms_0.7-1~bpo70+1_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + bilibop_0.4.20~bpo70+1_i386 + bilibop-common_0.4.20~bpo70+1_i386 + bilibop-lockfs_0.4.20~bpo70+1_i386 + bilibop-rules_0.4.20~bpo70+1_i386 + bilibop-udev_0.4.20~bpo70+1_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.9-1~bpo70+1_i386 + bip-dbg_0.8.9-1~bpo70+1_i386 + bird_1.4.0-1~bpo70+1_i386 + bird-bgp_1.4.0-1~bpo70+1_i386 + bird-bgp-dbg_1.4.0-1~bpo70+1_i386 + bird-dbg_1.4.0-1~bpo70+1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bittwist_2.0-3~bpo70+1_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + bladerf-host_0.9.0.15.8ba2499-1~bpo70+1_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.5-3~bpo70+1_i386 + bluefish-dbg_2.2.5-3~bpo70+1_i386 + bluefish-plugins_2.2.5-3~bpo70+1_i386 + blueman_1.23-git201312311147-1~bpo70+1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-amd-opencl_7.0.65+dfsg-3~bpo70+1_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.65+dfsg-3~bpo70+1_i386 + boinc-dbg_7.0.65+dfsg-3~bpo70+1_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.65+dfsg-3~bpo70+1_i386 + boinc-nvidia-cuda_7.0.65+dfsg-3~bpo70+1_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + bosixnet-webui_1.6-2~bpo70+1_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + browser-plugin-libreoffice_1:4.1.4-2~bpo70+1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdgames-nonfree_2.17-5_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_034-1~bpo70+1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + bugsx_1.08-12_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumblebee_3.2.1-4~bpo70+1_i386 + bumblebee-dbg_3.2.1-4~bpo70+1_i386 + bumblebee-nvidia_3.2.1-4~bpo70+1_i386 + bumprace_1.5.4-1_i386 + bup_0.25-1~bpo70+1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + c3270_3.3.10ga4-2+b1_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_1.22.0+dfsg1-1~bpo70+1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.2.2p3-1~bpo70+1_i386 + check-mk-agent-logwatch_1.2.2p3-1~bpo70+1_i386 + check-mk-config-icinga_1.2.2p3-1~bpo70+1_i386 + check-mk-config-nagios3_1.2.2p3-1~bpo70+1_i386 + check-mk-livestatus_1.2.2p3-1~bpo70+1_i386 + check-mk-multisite_1.2.2p3-1~bpo70+1_i386 + check-mk-server_1.2.2p3-1~bpo70+1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.9.3-1~bpo70+1_i386 + claws-mail-acpi-notifier_3.9.3-1~bpo70+1_i386 + claws-mail-address-keeper_3.9.3-1~bpo70+1_i386 + claws-mail-archiver-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-attach-remover_3.9.3-1~bpo70+1_i386 + claws-mail-attach-warner_3.9.3-1~bpo70+1_i386 + claws-mail-bogofilter_3.9.3-1~bpo70+1_i386 + claws-mail-bsfilter-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-clamd-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-dbg_3.9.3-1~bpo70+1_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-feeds-reader_3.9.3-1~bpo70+1_i386 + claws-mail-fetchinfo-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-gdata-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-multi-notifier_3.9.3-1~bpo70+1_i386 + claws-mail-newmail-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-pdf-viewer_3.9.3-1~bpo70+1_i386 + claws-mail-perl-filter_3.9.3-1~bpo70+1_i386 + claws-mail-pgpinline_3.9.3-1~bpo70+1_i386 + claws-mail-pgpmime_3.9.3-1~bpo70+1_i386 + claws-mail-python-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-smime-plugin_3.9.3-1~bpo70+1_i386 + claws-mail-spam-report_3.9.3-1~bpo70+1_i386 + claws-mail-spamassassin_3.9.3-1~bpo70+1_i386 + claws-mail-tnef-parser_3.9.3-1~bpo70+1_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.9.3-1~bpo70+1_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.11.1-1~bpo70+1_i386 + cmake-curses-gui_2.8.11.1-1~bpo70+1_i386 + cmake-dbg_2.8.11.1-1~bpo70+1_i386 + cmake-qt-gui_2.8.11.1-1~bpo70+1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_13.12-1~bpo70+1_i386 + codeblocks-contrib_13.12-1~bpo70+1_i386 + codeblocks-contrib-dbg_13.12-1~bpo70+1_i386 + codeblocks-dbg_13.12-1~bpo70+1_i386 + codeblocks-dev_13.12-1~bpo70+1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colobot_0.1.2-3~bpo70+2_i386 + colobot-dbg_0.1.2-3~bpo70+2_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + conserver-client_8.1.18-2.2_i386 + conserver-server_8.1.18-2.2_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + core-network-daemon_4.6-2~bpo70+1_i386 + core-network-gui_4.6-2~bpo70+1_i386 + corekeeper_1.5~bpo70+1_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.73~bpo7+1_i386 + cowdancer_0.73~bpo7+1_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + crafty_23.4-6_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvimp_0.4.7-2~bpo70+1_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cuneiform_1.1.0+dfsg-4_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython3_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython3-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + darcs-monitor_0.4.2-3~bpo70+1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.2.3-1~bpo70+1_i386 + darktable-dbg_1.2.3-1~bpo70+1_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.2-3~bpo70+1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + deltarpm_3.6+dfsg-1~bpo7+1_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.21-1~bpo70+1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.32-1~bpo70+1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.13.4~bpo70+1_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dgen_1.23-12_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + diskscan_0.13-1~bpo70+1_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + doctest_0.9.1-1~bpo70+1_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20130822-2~bpo70+1_i386 + dovecot-core_1:2.2.9-1~bpo70+1_i386 + dovecot-dbg_1:2.2.9-1~bpo70+1_i386 + dovecot-dev_1:2.2.9-1~bpo70+1_i386 + dovecot-gssapi_1:2.2.9-1~bpo70+1_i386 + dovecot-imapd_1:2.2.9-1~bpo70+1_i386 + dovecot-ldap_1:2.2.9-1~bpo70+1_i386 + dovecot-lmtpd_1:2.2.9-1~bpo70+1_i386 + dovecot-managesieved_1:2.2.9-1~bpo70+1_i386 + dovecot-mysql_1:2.2.9-1~bpo70+1_i386 + dovecot-pgsql_1:2.2.9-1~bpo70+1_i386 + dovecot-pop3d_1:2.2.9-1~bpo70+1_i386 + dovecot-sieve_1:2.2.9-1~bpo70+1_i386 + dovecot-solr_1:2.2.9-1~bpo70+1_i386 + dovecot-sqlite_1:2.2.9-1~bpo70+1_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.4.4-1~bpo70+1_i386 + drc_3.2.0~dfsg0-1_i386 + drdsl_1.2.0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamips_0.2.7-0.2.8RC2-5.1_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eagle_5.12.0-3_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-daemon-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk3_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk3-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-mini_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-mini-dbg_2.2.9-3~bpo70+1_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-asn1_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-base_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-base-hipe_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-common-test_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-corba_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-crypto_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-dbg_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-debugger_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-dev_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-dialyzer_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-diameter_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-edoc_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-eldap_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-erl-docgen_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-eunit_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-gs_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-inets_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-mnesia_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-observer_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-odbc_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-os-mon_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-parsetools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-percept_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-pman_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-public-key_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-reltool_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-runtime-tools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-snmp_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-ssh_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-ssl_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-syntax-tools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-test-server_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-toolbar_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-tools_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-tv_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-typer_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-webtool_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-wx_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-xmerl_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.28.0-1~bpo70+1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.1.0-3~bpo70+1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_1.0.1-1~bpo70+1_i386 + exfat-utils_1.0.1-1~bpo70+1_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + ext4magic_0.3.1-1~bpo70+1_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + f2j_0.8.1-2_i386 + f3_2.2-1~bpo70+1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatrat-unpack_1.1.3-2_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.8.3-2~bpo70+1_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.7-1~bpo70+1_i386 + fcitx-config-gtk2_0.4.7-1~bpo70+1_i386 + fcitx-dbg_1:4.2.8.3-2~bpo70+1_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.8.3-2~bpo70+1_i386 + fcitx-frontend-gtk3_1:4.2.8.3-2~bpo70+1_i386 + fcitx-frontend-qt4_1:4.2.8.3-2~bpo70+1_i386 + fcitx-googlepinyin_0.1.6-1~bpo70+1_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-dev_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-gclient_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-qt_1:4.2.8.3-2~bpo70+1_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.3.2-1~bpo70+1_i386 + fcitx-module-dbus_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-kimpanel_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-lua_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-quickphrase-editor_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-x11_1:4.2.8.3-2~bpo70+1_i386 + fcitx-modules_1:4.2.8.3-2~bpo70+1_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.8.3-2~bpo70+1_i386 + fcitx-qw_1:4.2.8.3-2~bpo70+1_i386 + fcitx-sunpinyin_0.4.1-1~bpo70+1_i386 + fcitx-table_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-amharic_0.2.2-1~bpo70+1_i386 + fcitx-table-arabic_0.2.2-1~bpo70+1_i386 + fcitx-table-array30_0.3.4-1~bpo70+1_i386 + fcitx-table-array30-big_0.3.4-1~bpo70+1_i386 + fcitx-table-bingchan_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-boshiamy_0.3.4-1~bpo70+1_i386 + fcitx-table-cangjie_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-cangjie-big_0.3.4-1~bpo70+1_i386 + fcitx-table-cangjie3_0.3.4-1~bpo70+1_i386 + fcitx-table-cangjie5_0.3.4-1~bpo70+1_i386 + fcitx-table-cantonese_0.3.4-1~bpo70+1_i386 + fcitx-table-cantonhk_0.3.4-1~bpo70+1_i386 + fcitx-table-cns11643_0.2.2-1~bpo70+1_i386 + fcitx-table-compose_0.2.2-1~bpo70+1_i386 + fcitx-table-dianbaoma_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-easy-big_0.3.4-1~bpo70+1_i386 + fcitx-table-emoji_0.2.2-1~bpo70+1_i386 + fcitx-table-erbi_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-ipa-x-sampa_0.2.2-1~bpo70+1_i386 + fcitx-table-jyutping_0.3.4-1~bpo70+1_i386 + fcitx-table-latex_0.2.2-1~bpo70+1_i386 + fcitx-table-malayalam-phonetic_0.2.2-1~bpo70+1_i386 + fcitx-table-quick-classic_0.3.4-1~bpo70+1_i386 + fcitx-table-quick3_0.3.4-1~bpo70+1_i386 + fcitx-table-quick5_0.3.4-1~bpo70+1_i386 + fcitx-table-rustrad_0.2.2-1~bpo70+1_i386 + fcitx-table-scj6_0.3.4-1~bpo70+1_i386 + fcitx-table-stroke5_0.3.4-1~bpo70+1_i386 + fcitx-table-t9_0.3.4-1~bpo70+1_i386 + fcitx-table-tamil-remington_0.2.2-1~bpo70+1_i386 + fcitx-table-thai_0.2.2-1~bpo70+1_i386 + fcitx-table-translit_0.2.2-1~bpo70+1_i386 + fcitx-table-translit-ua_0.2.2-1~bpo70+1_i386 + fcitx-table-viqr_0.2.2-1~bpo70+1_i386 + fcitx-table-wanfeng_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-wbpy_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-wu_0.3.4-1~bpo70+1_i386 + fcitx-table-wubi_1:4.2.8.3-2~bpo70+1_i386 + fcitx-table-wubi-large_0.3.4-1~bpo70+1_i386 + fcitx-table-yawerty_0.2.2-1~bpo70+1_i386 + fcitx-table-zhengma_0.3.4-1~bpo70+1_i386 + fcitx-table-zhengma-large_0.3.4-1~bpo70+1_i386 + fcitx-table-ziranma_1:4.2.8.3-2~bpo70+1_i386 + fcitx-tools_1:4.2.8.3-2~bpo70+1_i386 + fcitx-ui-classic_1:4.2.8.3-2~bpo70+1_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fglrx-atieventsd_1:13.12-4~bpo70+1_i386 + fglrx-control_1:13.12-4~bpo70+1_i386 + fglrx-driver_1:13.12-4~bpo70+1_i386 + fglrx-glx_1:12-6+point-3_i386 + fglrx-legacy-atieventsd_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-control_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-driver_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-modules-dkms_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-source_8.97.100.7-3~bpo70+1_i386 + fglrx-modules-dkms_1:13.12-4~bpo70+1_i386 + fglrx-source_1:13.12-4~bpo70+1_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_1:5.14-2~bpo70+1_i386 + file-dbg_1:5.14-2~bpo70+1_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.7-2~bpo70+1_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.6.0-2~bpo70+1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.5-1~bpo70+1_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + flydraw_1:4.07a~dfsg1-2~bpo1-1_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecad_0.13.2800-dfsg-1~bpo70+1_i386 + freecad-dev_0.13.2800-dfsg-1~bpo70+1_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.4.2-1~bpo70+1_i386 + freeciv-client-gtk_2.4.2-1~bpo70+1_i386 + freeciv-client-sdl_2.4.2-1~bpo70+1_i386 + freeciv-client-xaw3d_2.4.2-1~bpo70+1_i386 + freeciv-server_2.4.2-1~bpo70+1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fs-uae_2.2.3+dfsg-4~bpo70+1_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsl-4.1_4.1.9-7_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.6.5.ds-3~bpo70+1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.5.1-1~bpo70+1_i386 + fwknop-server_2.5.1-1~bpo70+1_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-haskell_2.9.4-1~bpo70+1_i386 + ganeti-htools_2.9.4-1~bpo70+1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + ganglia-nagios-bridge_1.0.1-1~bpo70+1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.5.0-3~bpo70+1_i386 + geoip-dbg_1.5.0-3~bpo70+1_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.3-1~bpo7+1_i386 + gettext-base_0.18.3-1~bpo7+1_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.8.3-2~bpo70+1_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-plugins-base-1.0_1.0.8-1~bpo70+1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gstreamer-1.0_1.0.8-1~bpo70+1_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.5.1.is.1.4.2-1~bpo70+1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.8.5.3-1~bpo70+1_i386 + git-annex_5.20140210~bpo70+2_i386 + gitg_0.2.7-1~bpo70+1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-cpufreq_0.6.4-4~bpo70+1_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + glx-alternative-fglrx_0.4.1~bpo70+1_i386 + glx-alternative-mesa_0.4.1~bpo70+1_i386 + glx-alternative-nvidia_0.4.1~bpo70+1_i386 + glx-diversions_0.4.1~bpo70+1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmsh_2.7.0.dfsg-1~bpo70+1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-common_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-cygnal_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-dbg_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-dev_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-ext-fileio_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-ext-lirc_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-ext-mysql_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnash-tools_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.2-6~bpo70+1_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.4-1~bpo70+1_i386 + gnuplot-qt_4.6.4-1~bpo70+1_i386 + gnuplot-x11_4.6.4-1~bpo70+1_i386 + gnuradio_3.7.2.1-5~bpo70+1_i386 + gnuradio-dev_3.7.2.1-5~bpo70+1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.2.10-2~bpo70+3_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.9-3~bpo70+1_i386 + gpsd-clients_3.9-3~bpo70+1_i386 + gpsd-dbg_3.9-3~bpo70+1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + gr-fcdproplus_0.0.1.1.2c80be-3~bpo70+1_i386 + gr-iqbal_0.37.1.5.d4fd4d-1~bpo70+1_i386 + gr-osmosdr_0.1.0.55.80c4af-2~bpo70~1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gstreamer1.0-alsa_1.0.8-1~bpo70+1_i386 + gstreamer1.0-libav_1.0.8-1~bpo70+1_i386 + gstreamer1.0-libav-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-bad_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-bad-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base-apps_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-good_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-good-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-ugly_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-ugly-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-pulseaudio_1.0.8-1~bpo70+1_i386 + gstreamer1.0-tools_1.0.8-1~bpo70+1_i386 + gstreamer1.0-x_1.0.8-1~bpo70+1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.2.10-2~bpo70+3_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.10.0beta-1~bpo70+1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.1.0-2~bpo70+1_i386 + gyoto-dbg_0.1.0-2~bpo70+1_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hackrf_2013.07.1.16.d5cebd-2~bpo70+1_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + haproxy_1.4.24-2~bpo70+1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.7b-2~bpo70+1_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.20.5-2~bpo70+1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.5.3-1~bpo70+1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htpdate_1.1.0-1~bpo70+1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httpry_0.1.7-3~bpo70+1_i386 + httpry-dbg_0.1.7-3~bpo70+1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2013.0.0+dfsg-1~bpo70+1_i386 + hugin-tools_2013.0.0+dfsg-1~bpo70+1_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.7.2-1~bpo70+1_i386 + i3-wm_4.7.2-1~bpo70+1_i386 + i3-wm-dbg_4.7.2-1~bpo70+1_i386 + i3lock_2.4.1-1_i386 + i3status_2.8-1~bpo70+1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.5.1.is.1.4.2-1~bpo70+1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.5.1.is.1.4.2-1~bpo70+1_i386 + ibus-gtk3_1.5.1.is.1.4.2-1~bpo70+1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.9.3-2~bpo70+1_i386 + icinga-cgi_1.9.3-2~bpo70+1_i386 + icinga-core_1.9.3-2~bpo70+1_i386 + icinga-dbg_1.9.3-2~bpo70+1_i386 + icinga-idoutils_1.9.3-2~bpo70+1_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike_2.2.1+dfsg-2~bpo70+1_i386 + ike-qtgui_2.2.1+dfsg-2~bpo70+1_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imview_1.1.9c-12~bpo70+1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel-microcode_2.20140122.1~bpo70+1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + iozone3_397-2_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptraf-ng_1.1.3.1-2~bpo70+1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irpas_0.10-4.1_i386 + irqbalance_1.0.6-2~bpo70+1_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-otr_1.0.0-1~bpo70+1_i386 + irssi-plugin-otr-dbg_1.0.0-1~bpo70+1_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:2.0.1-3~bpo7+1_i386 + italc-management-console_1:2.0.1-3~bpo7+1_i386 + italc-master_1:2.0.1-3~bpo7+1_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iucode-tool_1.0-1~bpo70+1_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.7-140104-1~bpo70+1_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jmtpfs_0.5-2~bpo70+1_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.25-1~bpo70+1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2577+dfsg-3~bpo70+1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.4.3-1~bpo70+1_i386 + kde-config-gtk-style_3:2.2.1-1~bpo70+1_i386 + kde-config-gtk-style-preview_3:2.2.1-1~bpo70+1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-4~bpo70+1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kismet_2013.03.R1b-2~bpo70+1_i386 + kismet-plugins_2013.03.R1b-2~bpo70+1_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knot_1.4.3-2~bpo70+1_i386 + knot-dbg_1.4.3-2~bpo70+1_i386 + knot-dnsutils_1.4.3-2~bpo70+1_i386 + knot-host_1.4.3-2~bpo70+1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.16-1~bpo70+1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.16-1~bpo70+1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lgrind_3.67-3_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.6-1~bpo70+1_i386 + libafsrpc1_1.6.6-1~bpo70+1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fastcgi_2.4.7~0910052141-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_4.0.10-1~bpo7+1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.1.0beta-1~bpo70+1_i386 + libaqbanking34_5.3.5beta-2~bpo70+1_i386 + libaqbanking34-dbg_5.3.5beta-2~bpo70+1_i386 + libaqbanking34-dev_5.3.5beta-2~bpo70+1_i386 + libaqbanking34-plugins_5.3.5beta-2~bpo70+1_i386 + libaqebics0_5.3.5beta-2~bpo70+1_i386 + libaqhbci20_5.1.0beta-1~bpo70+1_i386 + libaqhbci22_5.3.5beta-2~bpo70+1_i386 + libaqofxconnect7_5.3.5beta-2~bpo70+1_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.920.3+dfsg-1~bpo70+1_i386 + libarmadillo3_1:3.920.3+dfsg-1~bpo70+1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf-dev_0.18.3-1~bpo7+1_i386 + libasprintf0c2_0.18.3-1~bpo7+1_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:9.10-1~bpo70+1_i386 + libav-tools_6:9.10-1~bpo70+1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:9.10-1~bpo70+1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec-extra-54_6:9.10-1~bpo70+1_i386 + libavcodec53_6:0.8.9-1_i386 + libavcodec54_6:9.10-1~bpo70+1_i386 + libavdevice-dev_6:9.10-1~bpo70+1_i386 + libavdevice53_6:9.10-1~bpo70+1_i386 + libavfilter-dev_6:9.10-1~bpo70+1_i386 + libavfilter2_6:0.8.9-1_i386 + libavfilter3_6:9.10-1~bpo70+1_i386 + libavformat-dev_6:9.10-1~bpo70+1_i386 + libavformat53_6:0.8.9-1_i386 + libavformat54_6:9.10-1~bpo70+1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavresample-dev_6:9.10-1~bpo70+1_i386 + libavresample1_6:9.10-1~bpo70+1_i386 + libavutil-dev_6:9.10-1~bpo70+1_i386 + libavutil51_6:0.8.9-1_i386 + libavutil52_6:9.10-1~bpo70+1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbfio-dbg_20130507-1~bpo70+1_i386 + libbfio-dev_20130507-1~bpo70+1_i386 + libbfio1_20130507-1~bpo70+1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libbladerf-dev_0.9.0.15.8ba2499-1~bpo70+1_i386 + libbladerf0_0.9.0.15.8ba2499-1~bpo70+1_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libboinc-app7_7.0.65+dfsg-3~bpo70+1_i386 + libboinc7_7.0.65+dfsg-3~bpo70+1_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamlpdf-ocaml-dev_0.5-1+b2_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcg_3.1.0013-1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcggl_3.1.0013-1_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_1.1-1~bpo70+1_i386 + libchromaprint-tools_1.1-1~bpo70+1_i386 + libchromaprint0_1.1-1~bpo70+1_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclamunrar6_0.96.4-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.9.3-1~bpo70+1_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_13.12-1~bpo70+1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcoin80_3.1.4~abc9f50-3~bpo70+1_i386 + libcoin80-dev_3.1.4~abc9f50-3~bpo70+1_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore++-dev_1.7-12_i386 + libcore++1c2_1.7-12_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libcsvimp-dev_0.4.7-2~bpo70+1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcublas4_4.2.9-2_i386 + libcublas5.0_5.0.35-8~bpo70+1_i386 + libcuda1_319.82-1~bpo70+1_i386 + libcuda1-i386_319.82-1~bpo70+1_i386 + libcudart4_4.2.9-2_i386 + libcudart5.0_5.0.35-8~bpo70+1_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcufft4_4.2.9-2_i386 + libcufft5.0_5.0.35-8~bpo70+1_i386 + libcuinj32-5.0_5.0.35-8~bpo70+1_i386 + libcuinj4_4.2.9-2_i386 + libcuneiform-dev_1.1.0+dfsg-4_i386 + libcuneiform0_1.1.0+dfsg-4_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcupti-dev_5.0.35-8~bpo70+1_i386 + libcupti4_4.2.9-2_i386 + libcupti5.0_5.0.35-8~bpo70+1_i386 + libcurand4_4.2.9-2_i386 + libcurand5.0_5.0.35-8~bpo70+1_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcusparse4_4.2.9-2_i386 + libcusparse5.0_5.0.35-8~bpo70+1_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwd_1.0.4-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp-dev_2.2.9-3~bpo70+1_i386 + libeiskaltdcpp2.2_2.2.9-3~bpo70+1_i386 + libeiskaltdcpp2.2-dbg_2.2.9-3~bpo70+1_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembperl-perl_2.5.0~rc3-1~bpo70+1_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.9-1~bpo70+1_i386 + libestr0_0.1.9-1~bpo70+1_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfglrx_1:13.12-4~bpo70+1_i386 + libfglrx-amdxvba1_1:13.12-4~bpo70+1_i386 + libfglrx-legacy_8.97.100.7-3~bpo70+1_i386 + libfglrx-legacy-amdxvba1_8.97.100.7-3~bpo70+1_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko-perl_2.5.1-1~bpo70+1_i386 + libfko-python_2.5.1-1~bpo70+1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libfko2_2.5.1-1~bpo70+1_i386 + libfko2-dbg_2.5.1-1~bpo70+1_i386 + libfko2-dev_2.5.1-1~bpo70+1_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dbg_1.1.2.2-1~bpo70+1_i386 + libfm-dev_1.1.2.2-1~bpo70+1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk-dbg_1.1.2.2-1~bpo70+1_i386 + libfm-gtk-dev_1.1.2.2-1~bpo70+1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm-gtk3_1.1.2.2-1~bpo70+1_i386 + libfm-tools_1.1.2.2-1~bpo70+1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfm3_1.1.2.2-1~bpo70+1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-client-dev_1.1.6-7~bpo70+1_i386 + libfreeradius-client2_1.1.6-7~bpo70+1_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.5.0-3~bpo70+1_i386 + libgeoip1_1.5.0-3~bpo70+1_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo-dev_0.18.3-1~bpo7+1_i386 + libgettextpo0_0.18.3-1~bpo7+1_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-async-dev_2.0.1.3-1~bpo70+1_i386 + libghc-async-prof_2.0.1.3-1~bpo70+1_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-doctest-dev_0.9.1-1~bpo70+1_i386 + libghc-doctest-prof_0.9.1-1~bpo70+1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-generic-deriving-dev_1.4.0-2~bpo70+1_i386 + libghc-generic-deriving-prof_1.4.0-2~bpo70+1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.4-3~bpo70+1_i386 + libghc-gnutls-prof_0.1.4-3~bpo70+1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-info-dev_0.2.0.1-2~bpo70+1_i386 + libghc-network-info-prof_0.2.0.1-2~bpo70+1_i386 + libghc-network-multicast-dev_0.0.10-1~bpo70+1_i386 + libghc-network-multicast-prof_0.0.10-1~bpo70+1_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.4-2~bpo70+1_i386 + libghc-network-protocol-xmpp-prof_0.4.4-2~bpo70+1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-safesemaphore-dev_0.9.0-1~bpo70+1_i386 + libghc-safesemaphore-prof_0.9.0-1~bpo70+1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-hamlet-dev_0.3.0.1-1~bpo70+1_i386 + libghc-xml-hamlet-prof_0.3.0.1-1~bpo70+1_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-fglrx-glx_1:13.12-4~bpo70+1_i386 + libgl1-fglrx-glx-i386_1:13.12-4~bpo70+1_i386 + libgl1-fglrx-legacy-glx_8.97.100.7-3~bpo70+1_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl1-nvidia-alternatives_304.88-1+deb7u1_i386 + libgl1-nvidia-glx_319.82-1~bpo70+1_i386 + libgl1-nvidia-glx-i386_319.82-1~bpo70+1_i386 + libgl1-nvidia-legacy-173xx-glx_173.14.39-1~bpo70+1_i386 + libgl1-nvidia-legacy-173xx-glx-i386_173.14.39-1~bpo70+1_i386 + libgl1-nvidia-legacy-304xx-glx_304.117-1~bpo70+1_i386 + libgl1-nvidia-legacy-304xx-glx-i386_304.117-1~bpo70+1_i386 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_i386 + libgl1-nvidia-legacy-96xx-glx_96.43.23-7~bpo70+1_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libglx-nvidia-alternatives_304.88-1+deb7u1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmsh-dev_2.7.0.dfsg-1~bpo70+1_i386 + libgmsh2_2.7.0.dfsg-1~bpo70+1_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-analog3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-atsc3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-blocks3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-channels3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fcdproplus0_0.0.1.1.2c80be-3~bpo70+1_i386 + libgnuradio-fec3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fft3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-filter3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-iqbalance0_0.37.1.5.d4fd4d-1~bpo70+1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-osmosdr0.0.0_0.1.0.55.80c4af-2~bpo70~1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-pmt3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-runtime3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-wavelet3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-wxgui3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls-xssl0_3.2.10-2~bpo70+3_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutls28_3.2.10-2~bpo70+3_i386 + libgnutls28-dbg_3.2.10-2~bpo70+3_i386 + libgnutls28-dev_3.2.10-2~bpo70+3_i386 + libgnutlsxx27_2.12.20-7_i386 + libgnutlsxx28_3.2.10-2~bpo70+3_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpcl-dev_2.32-1_i386 + libgpcl0_2.32-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.4.3-0.1~bpo70+1_i386 + libgpgme11-dev_1.4.3-0.1~bpo70+1_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.9-3~bpo70+1_i386 + libgps20_3.9-3~bpo70+1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-bad1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-bad1.0-dev_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer-plugins-base1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-base1.0-dev_1.0.8-1~bpo70+1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstreamer1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer1.0-0-dbg_1.0.8-1~bpo70+1_i386 + libgstreamer1.0-dev_1.0.8-1~bpo70+1_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-cpp0_4.10.0beta-1~bpo70+1_i386 + libgwengui-fox16-0_4.10.0beta-1~bpo70+1_i386 + libgwengui-gtk2-0_4.10.0beta-1~bpo70+1_i386 + libgwengui-qt4-0_4.10.0beta-1~bpo70+1_i386 + libgwenhywfar60_4.10.0beta-1~bpo70+1_i386 + libgwenhywfar60-dbg_4.10.0beta-1~bpo70+1_i386 + libgwenhywfar60-dev_4.10.0beta-1~bpo70+1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgyoto1_0.1.0-2~bpo70+1_i386 + libgyoto1-dev_0.1.0-2~bpo70+1_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhackrf-dev_2013.07.1.16.d5cebd-2~bpo70+1_i386 + libhackrf0_2013.07.1.16.d5cebd-2~bpo70+1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhavege-dev_1.7b-2~bpo70+1_i386 + libhavege1_1.7b-2~bpo70+1_i386 + libhavege1-dbg_1.7b-2~bpo70+1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.9-1~bpo70+1_i386 + libhivex-dev_1.3.9-1~bpo70+1_i386 + libhivex-ocaml_1.3.9-1~bpo70+1_i386 + libhivex-ocaml-dev_1.3.9-1~bpo70+1_i386 + libhivex0_1.3.9-1~bpo70+1_i386 + libhivex0-dbg_1.3.9-1~bpo70+1_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.7.1-1~bpo70+1_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.5.1.is.1.4.2-1~bpo70+1_i386 + libibus-1.0-dev_1.5.1.is.1.4.2-1~bpo70+1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitalccore_1:2.0.1-3~bpo7+1_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gmsh2_2.7.0.dfsg-1~bpo70+1_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-c-dev_0.11-3~bpo7+1_i386 + libjson-c2_0.11-3~bpo7+1_i386 + libjson-c2-dbg_0.11-3~bpo7+1_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.11-3~bpo7+1_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.11-3~bpo7+1_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.6-1~bpo70+1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.16-1~bpo70+1_i386 + libldb1_1:1.1.16-1~bpo70+1_i386 + libldb1-dbg_1:1.1.16-1~bpo70+1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.16-1~bpo70+1_i386 + libldns1_1.6.16-1~bpo70+1_i386 + libldns1-dbg_1.6.16-1~bpo70+1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + liblldpctl-dev_0.7.7-1~bpo70+1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_1:5.14-2~bpo70+1_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_1:5.14-2~bpo70+1_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-perl_0.71-3+b1_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmotif-dev_2.3.3-8_i386 + libmotif4_2.3.3-8_i386 + libmotif4-dbg_2.3.3-8_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_1.0-1~bpo70+1_i386 + libmsv0_0.0.0-1_i386 + libmsv1_1.0-1~bpo70+1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnauty-dev_2.4r2-1_i386 + libnauty1d_2.4r2-1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.8-1~bpo70+1_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.7.1-1~bpo70+1_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.16-1~bpo70+1_i386 + libnotmuch3_0.16-1~bpo70+1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpp4_4.2.9-2_i386 + libnpp5.0_5.0.35-8~bpo70+1_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:4.1.5+dfsg-1~bpo70+1_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntdb-dev_1.0-2~bpo70+1_i386 + libntdb1_1.0-2~bpo70+1_i386 + libntdb1-dbg_1.0-2~bpo70+1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvcuvid1_319.82-1~bpo70+1_i386 + libnvidia-compiler_319.82-1~bpo70+1_i386 + libnvidia-encode1_319.82-1~bpo70+1_i386 + libnvidia-ifr1_319.82-1~bpo70+1_i386 + libnvidia-ml1_319.82-1~bpo70+1_i386 + libnvtoolsext5.0_5.0.35-8~bpo70+1_i386 + libnvtt-bin_2.0.8-1+dfsg-4~bpo70+1_i386 + libnvtt-dev_2.0.8-1+dfsg-4~bpo70+1_i386 + libnvtt2_2.0.8-1+dfsg-4~bpo70+1_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrender29_3.5.2-6~bpo70+1_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobt2_3.5.2-6~bpo70+1_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.90+bzr367-1~bpo70+1_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + libocsync-dev_0.91.4-1~bpo70+1_i386 + libocsync0_0.91.4-1~bpo70+1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.6-1~bpo70+1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenrpt-dev_3.3.4-6~bpo70+1_i386 + libopenrpt1_3.3.4-6~bpo70+1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_1.1-1~bpo70+1_i386 + libopus-dev_1.1-1~bpo70+1_i386 + libopus0_1.1-1~bpo70+1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmosdr-dev_0.1.7.cd37e9-2~bpo70+1_i386 + libosmosdr0_0.1.7.cd37e9-2~bpo70+1_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libotr5_4.0.0-2.2~bpo70+1_i386 + libotr5-bin_4.0.0-2.2~bpo70+1_i386 + libotr5-dev_4.0.0-2.2~bpo70+1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libowncloudsync0_1.5.0+dfsg-4~bpo70+1_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.20.2-1~bpo70+1_i386 + libp11-kit0_0.20.2-1~bpo70+1_i386 + libp11-kit0-dbg_0.20.2-1~bpo70+1_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.6-1~bpo70+1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:4.1.5+dfsg-1~bpo70+1_i386 + libpam-ssh_1.98-2~bpo70+1_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:4.1.5+dfsg-1~bpo70+1_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.5-1~bpo70+1_i386 + libpari-dev_2.5.5-1~bpo70+1_i386 + libpari-gmp3_2.5.5-1~bpo70+1_i386 + libparmetis-dev_3.1.1-4_i386 + libparmetis3.1_3.1.1-4_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_2:4.1.5+dfsg-1~bpo70+1_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpj2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjlib-util2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-audiodev2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-codec2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-videodev2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjnath2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjproject-dev_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip-simple2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip-ua2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsua2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.git20120821-4~bpo70+1_i386 + libpostproc52_6:0.git20120821-4~bpo70+1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libproc-wait3-perl_0.4-1~bpo70+1_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_4.0-6~bpo7+1_i386 + libpulse-mainloop-glib0_4.0-6~bpo7+1_i386 + libpulse-mainloop-glib0-dbg_4.0-6~bpo7+1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_4.0-6~bpo7+1_i386 + libpulse0-dbg_4.0-6~bpo7+1_i386 + libpulsedsp_4.0-6~bpo7+1_i386 + libpulsedsp-dbg_4.0-6~bpo7+1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.7-2~bpo70+1_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.9-3~bpo70+1_i386 + libqgpsmm20_3.9-3~bpo70+1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtkeychain0_0.1.0-2~bpo70+1_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.7.6-1~bpo70+1_i386 + libqxmpp0_0.7.6-1~bpo70+1_i386 + libqxmpp0-dbg_0.7.6-1~bpo70+1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.2.0-1~bpo70+1_i386 + librelp0_1.2.0-1~bpo70+1_i386 + libremctl-dev_3.8-1~bpo70+1_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.8-1~bpo70+1_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:4.1.4-2~bpo70+1_i386 + libreoffice-base_1:4.1.4-2~bpo70+1_i386 + libreoffice-base-core_1:4.1.4-2~bpo70+1_i386 + libreoffice-calc_1:4.1.4-2~bpo70+1_i386 + libreoffice-core_1:4.1.4-2~bpo70+1_i386 + libreoffice-dbg_1:4.1.4-2~bpo70+1_i386 + libreoffice-dev_1:4.1.4-2~bpo70+1_i386 + libreoffice-draw_1:4.1.4-2~bpo70+1_i386 + libreoffice-evolution_1:4.1.4-2~bpo70+1_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:4.1.4-2~bpo70+1_i386 + libreoffice-gtk_1:4.1.4-2~bpo70+1_i386 + libreoffice-gtk3_1:4.1.4-2~bpo70+1_i386 + libreoffice-impress_1:4.1.4-2~bpo70+1_i386 + libreoffice-kde_1:4.1.4-2~bpo70+1_i386 + libreoffice-math_1:4.1.4-2~bpo70+1_i386 + libreoffice-mysql-connector_1.0.2+LibO4.1.4-2~bpo70+1_i386 + libreoffice-officebean_1:4.1.4-2~bpo70+1_i386 + libreoffice-ogltrans_1:4.1.4-2~bpo70+1_i386 + libreoffice-pdfimport_1:4.1.4-2~bpo70+1_i386 + libreoffice-presentation-minimizer_1.0.4+LibO4.1.4-2~bpo70+1_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:4.1.4-2~bpo70+1_i386 + libreoffice-sdbc-postgresql_1:4.1.4-2~bpo70+1_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:4.1.4-2~bpo70+1_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librgxg-dev_0.1-1~bpo70+1_i386 + librgxg0_0.1-1~bpo70+1_i386 + librgxg0-dbg_0.1-1~bpo70+1_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtlsdr-dev_0.5.2.7.3ab6-1~bpo70+1_i386 + librtlsdr0_0.5.2.7.3ab6-1~bpo70+1_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.5.3-2~bpo70+1_i386 + libsaml7_2.4.3-4_i386 + libsaml8_2.5.3-2~bpo70+1_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbc-dev_1.1-2~bpo7+1_i386 + libsbc1_1.1-2~bpo7+1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdl2-2.0-0_2.0.0+dfsg1-2~bpo70+1_i386 + libsdl2-dbg_2.0.0+dfsg1-2~bpo70+1_i386 + libsdl2-dev_2.0.0+dfsg1-2~bpo70+1_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsipxtapi_3.3.0~test12-2~bpo70+1_i386 + libsipxtapi-dev_3.3.0~test12-2~bpo70+1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbclient-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmbsharemodes-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbsharemodes0_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_2.0.5-1~bpo70+1_i386 + libsope1_2.0.5-1~bpo70+1_i386 + libsope1-dbg_2.0.5-1~bpo70+1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.6.0~e8310f-1~bpo70+1_i386 + libsoqt4-20_1.6.0~e8310f-1~bpo70+1_i386 + libsoqt4-dev_1.6.0~e8310f-1~bpo70+1_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.12.4-0nocelt2~bpo70+1_i386 + libspice-server1_0.12.4-0nocelt2~bpo70+1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlcipher-dev_2.2.1-2~bpo70+1_i386 + libsqlcipher0_2.2.1-2~bpo70+1_i386 + libsqlcipher0-dbg_2.2.1-2~bpo70+1_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-compare-constanttime-perl_0.300-1~bpo70+1_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_5.1.1-2~bpo70+1_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:9.10-1~bpo70+1_i386 + libswscale2_6:9.10-1~bpo70+1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.9.1-2~bpo70+1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.9.1-2~bpo70+1_i386 + libtag1c2a_1.9.1-2~bpo70+1_i386 + libtagc0_1.9.1-2~bpo70+1_i386 + libtagc0-dev_1.9.1-2~bpo70+1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.1.0-1~bpo70+1_i386 + libtalloc2_2.1.0-1~bpo70+1_i386 + libtalloc2-dbg_2.1.0-1~bpo70+1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtasn1-6_3.4-2~bpo70+1_i386 + libtasn1-6-dbg_3.4-2~bpo70+1_i386 + libtasn1-6-dev_3.4-2~bpo70+1_i386 + libtasn1-bin_3.4-2~bpo70+1_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtcplay_1.1-1~bpo70+1_i386 + libtcplay-dev_1.1-1~bpo70+1_i386 + libtdb-dev_1.2.12-1~bpo70+1_i386 + libtdb1_1.2.12-1~bpo70+1_i386 + libtdb1-dbg_1.2.12-1~bpo70+1_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtet1.4_1.4.3-1_i386 + libtet1.4-dev_1.4.3-1_i386 + libtevent-dev_0.9.19-1~bpo70+1_i386 + libtevent0_0.9.19-1~bpo70+1_i386 + libtevent0-dbg_0.9.19-1~bpo70+1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtriangle-1.6_1.6-2_i386 + libtriangle-dev_1.6-2_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libttspico-dev_1.0+git20110131-2_i386 + libttspico-utils_1.0+git20110131-2_i386 + libttspico0_1.0+git20110131-2_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libu1db-dev_0.1.4-2~bpo70+1_i386 + libu1db1_0.1.4-2~bpo70+1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.5.5-1~bpo70+1_i386 + libuhd003_3.5.5-1~bpo70+1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.21-1~bpo70+1_i386 + libunbound2_1.4.21-1~bpo70+1_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.17-1~bpo70+1_i386 + libusb-1.0-0-dbg_2:1.0.17-1~bpo70+1_i386 + libusb-1.0-0-dev_2:1.0.17-1~bpo70+1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.12.6-1~bpo70+1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.6-2~bpo70+1_i386 + libusbredirhost1_0.6-2~bpo70+1_i386 + libusbredirparser-dev_0.6-2~bpo70+1_i386 + libusbredirparser0_0.4.3-2_i386 + libusbredirparser1_0.6-2~bpo70+1_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.14-dbg_3.14.5.8-4~bpo7+1_i386 + libv8-3.14-dev_3.14.5.8-4~bpo7+1_i386 + libv8-3.14.5_3.14.5.8-4~bpo7+1_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.14.5.8-4~bpo7+1_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_1.2.1-1~bpo70+1_i386 + libvirt-dev_1.2.1-1~bpo70+1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt-sanlock_1.2.1-1~bpo70+1_i386 + libvirt0_1.2.1-1~bpo70+1_i386 + libvirt0-dbg_1.2.1-1~bpo70+1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.1.2-2~bpo70+2_i386 + libvlc5_2.1.2-2~bpo70+2_i386 + libvlccore-dev_2.1.2-2~bpo70+2_i386 + libvlccore5_2.0.3-5_i386 + libvlccore7_2.1.2-2~bpo70+2_i386 + libvmtk-dev_1.0.1-1_i386 + libvmtk1.0_1.0.1-1_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.7.2.1-5~bpo70+1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libwbclient0_2:4.1.5+dfsg-1~bpo70+1_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.9-1~bpo70+1_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.10.5-1~bpo70+1_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwireshark3_1.10.5-1~bpo70+1_i386 + libwiretap-dev_1.10.5-1~bpo70+1_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwiretap3_1.10.5-1~bpo70+1_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.10.5-1~bpo70+1_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwsutil3_1.10.5-1~bpo70+1_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_13.12-1~bpo70+1_i386 + libwxsmithlib0_13.12-1~bpo70+1_i386 + libwxsmithlib0-dev_13.12-1~bpo70+1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.16-2~bpo70+1_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.16-2~bpo70+1_i386 + libxapian22-dbg_1.2.16-2~bpo70+1_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-cursor-dev_0.1.1-2~bpo70+1_i386 + libxcb-cursor0_0.1.1-2~bpo70+1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.7.2-2~bpo70+1_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-security-c17_1.7.2-2~bpo70+1_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.5.3-2~bpo70+1_i386 + libxmltooling5_1.4.2-5_i386 + libxmltooling6_1.5.3-2~bpo70+1_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxnvctrl-dev_319.72-1~bpo70+1_i386 + libxnvctrl0_319.72-1~bpo70+1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxtuplecommon-dev_4.1.0-3~bpo70+1_i386 + libxtuplecommon1_4.1.0-3~bpo70+1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvbaw-dev_1:13.12-4~bpo70+1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxvmcnvidia1_304.88-1+deb7u1_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyade_1.05.0-2~bpo70+1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyara-dev_2.0.0-2~bpo70+1_i386 + libyara2_2.0.0-2~bpo70+1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzmq3_3.2.3+dfsg-2~bpo70+1_i386 + libzmq3-dbg_3.2.3+dfsg-2~bpo70+1_i386 + libzmq3-dev_3.2.3+dfsg-2~bpo70+1_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.15-1~bpo70+1_i386 + liferea-dbg_1.8.15-1~bpo70+1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-compiler-gcc-4.6-x86_3.12.9-1~bpo70+1_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.12-0.bpo.1-486_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-686-pae_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-all_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-all-i386_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-common_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-common-rt_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-rt-686-pae_3.12.9-1~bpo70+1_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.12+55~bpo70+1_i386 + linux-headers-686-pae_3.12+55~bpo70+1_i386 + linux-headers-amd64_3.12+55~bpo70+1_i386 + linux-headers-rt-686-pae_3.12+55~bpo70+1_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.12-0.bpo.1-486_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-686-pae_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-686-pae-dbg_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-rt-686-pae_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-rt-686-pae-dbg_3.12.9-1~bpo70+1_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.12+55~bpo70+1_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.12+55~bpo70+1_i386 + linux-image-686-pae-dbg_3.12+55~bpo70+1_i386 + linux-image-amd64_3.12+55~bpo70+1_i386 + linux-image-rt-686-pae_3.12+55~bpo70+1_i386 + linux-image-rt-686-pae-dbg_3.12+55~bpo70+1_i386 + linux-kbuild-3.12_3.12.6-1~bpo70+1_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.12.9-1~bpo70+1_i386 + linux-tools-3.12_3.12.6-1~bpo70+1_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.7.7-1~bpo70+1_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-augeas_0.1.1-3~bpo70+1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1+git063e8a8-2~bpo70+1_i386 + lua-sec-dev_0.4.1+git063e8a8-2~bpo70+1_i386 + lua-socket_3.0~rc1-3~bpo70+1_i386 + lua-socket-dev_3.0~rc1-3~bpo70+1_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + mac-robber_1.02-1~bpo70+1_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madfuload_1.2-4_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + mame_0.146-5_i386 + mame-tools_0.146-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + martian-modem_20080625-2_i386 + martian-modem-source_20080625-2_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbrola_3.01h-6_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.8.2-1~bpo70+1_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + mess_0.146-4_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_i386 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_49-2~bpo70+1_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.4.8-2~bpo70+1_i386 + mongodb-clients_1:2.4.8-2~bpo70+1_i386 + mongodb-dev_1:2.4.8-2~bpo70+1_i386 + mongodb-server_1:2.4.8-2~bpo70+1_i386 + monit_1:5.6-1~bpo70+1_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.4a-1~bpo70+1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motif-clients_2.3.3-8_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.17.6-1~bpo70+1_i386 + mpd-dbg_0.17.6-1~bpo70+1_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mssstest_3.0-3_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.5-1~bpo70+1_i386 + nagios-plugins-common_1.5-1~bpo70+1_i386 + nagios-plugins-contrib_9.20140106~bpo70+1_i386 + nagios-plugins-standard_1.5-1~bpo70+1_i386 + nagios3_3.4.1-5~bpo7+1_i386 + nagios3-cgi_3.4.1-5~bpo7+1_i386 + nagios3-core_3.4.1-5~bpo7+1_i386 + nagios3-dbg_3.4.1-5~bpo7+1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-dropbox_1.4.0-3_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + nauty_2.4r2-1_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmate_0.2.0-3~bpo70+1_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperf_2.4.4-6.1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.7.1-1~bpo70+1_i386 + nettle-dbg_2.7.1-1~bpo70+1_i386 + nettle-dev_2.7.1-1~bpo70+1_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.4.4-1~bpo70+1_i386 + nginx-extras-dbg_1.4.4-1~bpo70+1_i386 + nginx-full_1.4.4-1~bpo70+1_i386 + nginx-full-dbg_1.4.4-1~bpo70+1_i386 + nginx-light_1.4.4-1~bpo70+1_i386 + nginx-light-dbg_1.4.4-1~bpo70+1_i386 + nginx-naxsi_1.4.4-1~bpo70+1_i386 + nginx-naxsi-dbg_1.4.4-1~bpo70+1_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.40-0.1~bpo70+1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodejs_0.10.21~dfsg1-1~bpo7+1_i386 + nodejs-dbg_0.10.21~dfsg1-1~bpo7+1_i386 + nodejs-dev_0.10.21~dfsg1-1~bpo7+1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notion_3+2012042300-1_i386 + notmuch_0.16-1~bpo70+1_i386 + notmuch-dbg_0.16-1~bpo70+1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + ntdb-tools_1.0-2~bpo70+1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvidia-alternative_319.82-1~bpo70+1_i386 + nvidia-alternative-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-alternative-legacy-71xx_71.86.15-3_i386 + nvidia-alternative-legacy-96xx_96.43.23-7~bpo70+1_i386 + nvidia-cg-dev_3.1.0013-1_i386 + nvidia-cg-toolkit_3.1.0013-1_i386 + nvidia-cuda-dev_5.0.35-8~bpo70+1_i386 + nvidia-cuda-gdb_5.0.35-8~bpo70+1_i386 + nvidia-cuda-mps_319.82-1~bpo70+1_i386 + nvidia-cuda-toolkit_5.0.35-8~bpo70+1_i386 + nvidia-detect_319.82-1~bpo70+1_i386 + nvidia-driver_319.82-1~bpo70+1_i386 + nvidia-glx_319.82-1~bpo70+1_i386 + nvidia-glx-legacy_71.86.15-3_i386 + nvidia-glx-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-glx-legacy-71xx_71.86.15-3_i386 + nvidia-glx-legacy-71xx-dev_71.86.15-3_i386 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_i386 + nvidia-glx-legacy-96xx_96.43.23-7~bpo70+1_i386 + nvidia-glx-legacy-dev_71.86.15-3_i386 + nvidia-installer-cleanup_20131102+1~bpo70+1_i386 + nvidia-kernel-2.6-486_304.88+1_i386 + nvidia-kernel-2.6-686-pae_304.88+1_i386 + nvidia-kernel-2.6-amd64_304.88+1_i386 + nvidia-kernel-3.12-0.bpo.1-486_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.12-0.bpo.1-686-pae_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.12-0.bpo.1-amd64_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.2.0-4-486_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-686-pae_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-486_319.82+3.12+1~bpo70+1_i386 + nvidia-kernel-686-pae_319.82+3.12+1~bpo70+1_i386 + nvidia-kernel-amd64_319.82+3.12+1~bpo70+1_i386 + nvidia-kernel-common_20131102+1~bpo70+1_i386 + nvidia-kernel-dkms_319.82-1~bpo70+1_i386 + nvidia-kernel-legacy-173xx-dkms_173.14.39-1~bpo70+1_i386 + nvidia-kernel-legacy-173xx-source_173.14.39-1~bpo70+1_i386 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_i386 + nvidia-kernel-legacy-71xx-source_71.86.15-3_i386 + nvidia-kernel-legacy-96xx-dkms_96.43.23-7~bpo70+1_i386 + nvidia-kernel-legacy-96xx-source_96.43.23-7~bpo70+1_i386 + nvidia-kernel-legacy-source_71.86.15-3_i386 + nvidia-kernel-source_319.82-1~bpo70+1_i386 + nvidia-legacy-173xx-driver_173.14.39-1~bpo70+1_i386 + nvidia-legacy-173xx-kernel-dkms_173.14.39-1~bpo70+1_i386 + nvidia-legacy-173xx-kernel-source_173.14.39-1~bpo70+1_i386 + nvidia-legacy-304xx-alternative_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-driver_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-kernel-dkms_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-kernel-source_304.117-1~bpo70+1_i386 + nvidia-legacy-96xx-driver_96.43.23-7~bpo70+1_i386 + nvidia-legacy-96xx-kernel-dkms_96.43.23-7~bpo70+1_i386 + nvidia-legacy-96xx-kernel-source_96.43.23-7~bpo70+1_i386 + nvidia-libopencl1_319.82-1~bpo70+1_i386 + nvidia-nsight_5.0.35-8~bpo70+1_i386 + nvidia-opencl-common_319.82-1~bpo70+1_i386 + nvidia-opencl-dev_5.0.35-8~bpo70+1_i386 + nvidia-opencl-icd_319.82-1~bpo70+1_i386 + nvidia-profiler_5.0.35-8~bpo70+1_i386 + nvidia-settings_319.72-1~bpo70+1_i386 + nvidia-settings-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-settings-legacy-304xx_304.116-1~bpo70+1_i386 + nvidia-settings-legacy-96xx_96.43.20-2~bpo70+1_i386 + nvidia-smi_319.82-1~bpo70+1_i386 + nvidia-support_20131102+1~bpo70+1_i386 + nvidia-vdpau-driver_319.82-1~bpo70+1_i386 + nvidia-visual-profiler_5.0.35-8~bpo70+1_i386 + nvidia-xconfig_319.72-1~bpo70+1_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.5.0~svn3056+ds-1~bpo70+1_i386 + open-axiom-graphics_1.5.0~svn3056+ds-1~bpo70+1_i386 + open-axiom-hypertex_1.5.0~svn3056+ds-1~bpo70+1_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.6-1~bpo70+1_i386 + openafs-dbg_1.6.6-1~bpo70+1_i386 + openafs-dbserver_1.6.6-1~bpo70+1_i386 + openafs-fileserver_1.6.6-1~bpo70+1_i386 + openafs-fuse_1.6.6-1~bpo70+1_i386 + openafs-kpasswd_1.6.6-1~bpo70+1_i386 + openafs-krb5_1.6.6-1~bpo70+1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.2-6~bpo70+1_i386 + openbox-dev_3.5.2-6~bpo70+1_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + openrpt_3.3.4-6~bpo70+1_i386 + opensaml2-tools_2.5.3-2~bpo70+1_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.5p1-4~bpo70+1_i386 + openssh-server_1:6.5p1-4~bpo70+1_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.3.2-7~bpo70+1_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmo-sdr_0.1.7.cd37e9-2~bpo70+1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owncloud-client_1.5.0+dfsg-4~bpo70+1_i386 + owncloud-client-cmd_1.5.0+dfsg-4~bpo70+1_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.20.2-1~bpo70+1_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p7zip-rar_9.20.1~ds.1-3_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_4.0.1-1~bpo70+1_i386 + paraview-dev_4.0.1-1~bpo70+1_i386 + paraview-python_4.0.1-1~bpo70+1_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.5-1~bpo70+1_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parmetis-test_3.1.1-4_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcapfix_1.0.2-2~bpo70+1_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_1.1.2-1~bpo70+1_i386 + pcmanfm-dbg_1.1.2-1~bpo70+1_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + pepper_0.3.2-2~bpo70+1_i386 + pepperflashplugin-nonfree_1.2~bpo70+1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgplot5_5.2.2-19_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mongo_1.4.5-1~bpo70+1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.8-1~bpo70+1_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phylip_1:3.69-1_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.7-2~bpo70+1_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.7-2~bpo70+1_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_4.0.0-2~bpo70+1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.10.0-1~bpo70+1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.5.4-1~bpo70+1_i386 + poedit-dbg_1.5.4-1~bpo70+1_i386 + pokerth_1.0.1-2~bpo70+1_i386 + pokerth-server_1.0.1-2~bpo70+1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + postbooks_4.1.0-3~bpo70+1_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pptview_8.0-7_i386 + pqiv_0.12-1_i386 + pr3287_3.3.10ga4-2+b1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + primus_0~20130904-1~bpo70+1_i386 + primus-libs_0~20130904-1~bpo70+1_i386 + primus-libs-dbg_0~20130904-1~bpo70+1_i386 + primus-libs-ia32_0~20130904-1~bpo70+1_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.9.1-1~bpo70+1_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.16.285-1~bpo70+1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.16.285-1~bpo70+1_i386 + psi-plus-plugin-psimedia_1.0.3-git20131023-ea487d3-1~bpo70+1_i386 + psi-plus-plugins_0.16.285-1~bpo70+1_i386 + psi-plus-plugins-dbg_0.16.285-1~bpo70+1_i386 + psi-plus-webkit_0.16.285-1~bpo70+1_i386 + psi-plus-webkit-dbg_0.16.285-1~bpo70+1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_4.0-6~bpo7+1_i386 + pulseaudio-dbg_4.0-6~bpo7+1_i386 + pulseaudio-esound-compat_4.0-6~bpo7+1_i386 + pulseaudio-esound-compat-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-bluetooth_4.0-6~bpo7+1_i386 + pulseaudio-module-bluetooth-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-gconf_4.0-6~bpo7+1_i386 + pulseaudio-module-gconf-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-jack_4.0-6~bpo7+1_i386 + pulseaudio-module-jack-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-lirc_4.0-6~bpo7+1_i386 + pulseaudio-module-lirc-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-raop_4.0-6~bpo7+1_i386 + pulseaudio-module-raop-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-x11_4.0-6~bpo7+1_i386 + pulseaudio-module-x11-dbg_4.0-6~bpo7+1_i386 + pulseaudio-module-zeroconf_4.0-6~bpo7+1_i386 + pulseaudio-module-zeroconf-dbg_4.0-6~bpo7+1_i386 + pulseaudio-utils_4.0-6~bpo7+1_i386 + pulseaudio-utils-dbg_4.0-6~bpo7+1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-deltarpm_3.6+dfsg-1~bpo7+1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.5-1~bpo70+1_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gmsh_2.7.0.dfsg-1~bpo70+1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.9-3~bpo70+1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20140121+dfsg-1~bpo70+1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.9-1~bpo70+1_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.16-1~bpo70+1_i386 + python-ldb-dbg_1:1.1.16-1~bpo70+1_i386 + python-ldb-dev_1:1.1.16-1~bpo70+1_i386 + python-ldns_1.6.16-1~bpo70+1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_1.2.1-1~bpo70+2_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_3.3.1-1~bpo70+1_i386 + python-lxml-dbg_3.3.1-1~bpo70+1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-m2ext_0.1-1~bpo70+1_i386 + python-magic_1:5.14-2~bpo70+1_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-msgpack_0.3.0-1~bpo70+2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-ntdb_1.0-2~bpo70+1_i386 + python-ntdb-dbg_1.0-2~bpo70+1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-3~bpo70+1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.8-1~bpo70+1_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_2:4.1.5+dfsg-1~bpo70+1_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.1.0-1~bpo70+1_i386 + python-talloc-dbg_2.1.0-1~bpo70+1_i386 + python-talloc-dev_2.1.0-1~bpo70+1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.12-1~bpo70+1_i386 + python-tdb-dbg_1.2.12-1~bpo70+1_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_13.0.0-1~bpo70+1_i386 + python-twisted-bin-dbg_13.0.0-1~bpo70+1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.21-1~bpo70+1_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:4.1.4-2~bpo70+1_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vmtk_1.0.1-1_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.9.8+dfsg-1~bpo70+1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yade_1.05.0-2~bpo70+1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yara_2.0.0-2~bpo70+1_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_13.1.0-1~bpo70+1_i386 + python-zmq-dbg_13.1.0-1~bpo70+1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-deltarpm_3.6+dfsg-1~bpo7+1_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-hivex_1.3.9-1~bpo70+1_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_3.3.1-1~bpo70+1_i386 + python3-lxml-dbg_3.3.1-1~bpo70+1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-msgpack_0.3.0-1~bpo70+2_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-yara_2.0.0-2~bpo70+1_i386 + python3-zmq_13.1.0-1~bpo70+1_i386 + python3-zmq-dbg_13.1.0-1~bpo70+1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_1.1-r2-1~bpo70+1_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.5-1~bpo70+1_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.7.0+dfsg-2~bpo70+2_i386 + qemu-guest-agent_1.7.0+dfsg-2~bpo70+2_i386 + qemu-kvm_1.7.0+dfsg-2~bpo70+2_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-arm_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-common_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-mips_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-misc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-ppc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-sparc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-x86_1.7.0+dfsg-2~bpo70+2_i386 + qemu-user_1.7.0+dfsg-2~bpo70+2_i386 + qemu-user-static_1.7.0+dfsg-2~bpo70+2_i386 + qemu-utils_1.7.0+dfsg-2~bpo70+2_i386 + qemubuilder_0.73~bpo7+1_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtkeychain-dev_0.1.0-2~bpo70+1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-maptools_1:0.7-38-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.3.6+dfsg1-1~bpo70+1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radeontop_0.7-1~bpo70+1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rar_2:4.0.b3-1_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + rebar_2.0.0-5~bpo70+1_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redeclipse_1.4-5~bpo70+1_i386 + redeclipse-dbg_1.4-5~bpo70+1_i386 + redeclipse-server_1.4-5~bpo70+1_i386 + redeclipse-server-dbg_1.4-5~bpo70+1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.8.6-1~bpo70+1_i386 + redis-tools_2:2.8.6-1~bpo70+1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_2:4.1.5+dfsg-1~bpo70+1_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.8-1~bpo70+1_i386 + remctl-server_3.8-1~bpo70+1_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.13.1-1~bpo70+1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rgxg_0.1-1~bpo70+1_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_7.4.4-1~bpo70+1_i386 + rsyslog-gssapi_7.4.4-1~bpo70+1_i386 + rsyslog-mongodb_7.4.4-1~bpo70+1_i386 + rsyslog-mysql_7.4.4-1~bpo70+1_i386 + rsyslog-pgsql_7.4.4-1~bpo70+1_i386 + rsyslog-relp_7.4.4-1~bpo70+1_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtl-sdr_0.5.2.7.3ab6-1~bpo70+1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.12.1-1~bpo70+1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.9-1~bpo70+1_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-notmuch_0.16-1~bpo70+1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-oj_2.0.10-1~bpo70+1_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_4.0.10-1~bpo7+1_i386 + ruby-password_0.5.3-4~bpo70+1_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pcaprub_0.11.3-1~bpo70+1_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.8-1~bpo70+1_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rjb_1.4.8-1~bpo70+1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_1.0.0-1~bpo70+1_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3270_3.3.10ga4-2+b1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-common-bin_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dbg_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dsdb-modules_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-libs_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-testsuite_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba-vfs-modules_2:4.1.5+dfsg-1~bpo70+1_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbc-tools_1.1-2~bpo7+1_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdlmame_0.146-5_i386 + sdlmame-tools_0.146-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + seahorse-nautilus_3.8.0-1~bpo70+1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seaview_1:4.3.3-3_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq-gen_1.3.3-1_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgb_1:20090810-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.4-2~bpo70+1_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_i386 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:4.1.5+dfsg-1~bpo70+1_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_2.0.5a-1~bpo70+1_i386 + sogo-dbg_2.0.5a-1~bpo70+1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacefm_0.9.3-1~bpo70+1_i386 + spacefm-gtk3_0.9.3-1~bpo70+1_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + sparse_0.4.3+20110419-1_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellcast_1.0-21_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.12.4-0nocelt2~bpo70+1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlcipher_2.2.1-2~bpo70+1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-agent-filter_0.3-1~bpo70+1_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.5p1-4~bpo70+1_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_5.1.1-2~bpo70+1_i386 + strongswan-ike_5.1.1-2~bpo70+1_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_5.1.1-2~bpo70+1_i386 + strongswan-starter_5.1.1-2~bpo70+1_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.19.0+dfsg-2~bpo70+1_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.8.1-2~bpo70+1_i386 + supertuxkart-dbg_0.8.1-2~bpo70+1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.2.0-3~bpo70+1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcplay_1.1-1~bpo70+1_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.12-1~bpo70+1_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + teamspeak-client_2.0.32-3.1_i386 + teamspeak-server_2.0.24.1+debian-1.1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.16-1~bpo70+1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetgen_1.4.3-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.23-1~bpo70+1_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + titantools_4.0.11+notdfsg1-5_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.8-5~bpo70+1_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tome_2.3.5-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + triangle-bin_1.6-2_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + trn_3.6-23_i386 + trn4_4.0-test77-6_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.10.5-1~bpo70+1_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u1db-tools_0.1.4-2~bpo70+1_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udevil_0.4.3-1~bpo70+1_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.5.5-1~bpo70+1_i386 + uhub_0.4.1-3~bpo70+1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unace-nonfree_2.5-7_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.21-1~bpo70+1_i386 + unbound-anchor_1.4.21-1~bpo70+1_i386 + unbound-host_1.4.21-1~bpo70+1_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_4.1.4-2~bpo70+1_i386 + uno-libs3-dbg_4.1.4-2~bpo70+1_i386 + unpaper_0.4.2-1_i386 + unrar_1:4.1.4-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_4.1.4-2~bpo70+1_i386 + ure-dbg_4.1.4-2~bpo70+1_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.12.6-1~bpo70+1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.6-2~bpo70+1_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-dbg_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-guest-x11_4.2.16-dfsg-3~bpo70+1_i386 + virtualbox-qt_4.2.16-dfsg-3~bpo70+1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.1.2-2~bpo70+2_i386 + vlc-dbg_2.1.2-2~bpo70+2_i386 + vlc-nox_2.1.2-2~bpo70+2_i386 + vlc-plugin-fluidsynth_2.1.2-2~bpo70+2_i386 + vlc-plugin-jack_2.1.2-2~bpo70+2_i386 + vlc-plugin-notify_2.1.2-2~bpo70+2_i386 + vlc-plugin-pulse_2.1.2-2~bpo70+2_i386 + vlc-plugin-sdl_2.1.2-2~bpo70+2_i386 + vlc-plugin-svg_2.1.2-2~bpo70+2_i386 + vlc-plugin-zvbi_2.1.2-2~bpo70+2_i386 + vlock_2.2.2-3_i386 + vmdebootstrap_0.2-1~bpo70+1_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + vokoscreen_1.9.6-1~bpo70+1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + wap-wml-tools_0.0.4-6_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.4.3-2~bpo70+1_i386 + weechat-curses_0.4.3-2~bpo70+1_i386 + weechat-dbg_0.4.3-2~bpo70+1_i386 + weechat-plugins_0.4.3-2~bpo70+1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.6-2~bpo70+1_i386 + wesnoth-1.10-dbg_1:1.10.6-2~bpo70+1_i386 + wesnoth-1.10-server_1:1.10.6-2~bpo70+1_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + wims_1:4.07a~dfsg1-2~bpo1-1_i386 + wims-java-applets_1:4.07a~dfsg1-2~bpo1-1_i386 + winbind_2:4.1.5+dfsg-1~bpo70+1_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.10.5-1~bpo70+1_i386 + wireshark-common_1.10.5-1~bpo70+1_i386 + wireshark-dbg_1.10.5-1~bpo70+1_i386 + wireshark-dev_1.10.5-1~bpo70+1_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_4.0.1.1-1~bpo7+1_i386 + x2goclient-dbg_4.0.1.1-1~bpo7+1_i386 + x2goplugin_4.0.1.1-1~bpo7+1_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x3270_3.3.10ga4-2+b1_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.16-2~bpo70+1_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.16-2~bpo70+1_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:12.3+dfsg1-3~bpo70+2_i386 + xbmc-eventclients-wiiremote_2:12.3+dfsg1-3~bpo70+2_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfractint_20.4.10-2_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmame-svga_0.146-5_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml-security-c-utils_1.7.2-2~bpo70+1_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.9.8+dfsg-1~bpo70+1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-nvidia_319.82-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-173xx_173.14.39-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-304xx_304.117-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_i386 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-7~bpo70+1_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_1.05.0-2~bpo70+1_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.2.1-1~bpo70+1_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yara_2.0.0-2~bpo70+1_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gy_0.0.5-1~bpo70+1_i386 + yorick-gyoto_0.1.0-2~bpo70+1_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-ygsl_1.1.1-1~bpo70+1_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zabbix-agent_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-mysql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-pgsql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-sqlite3_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-server-mysql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-server-pgsql_1:2.0.9+dfsg-1~bpo70+2_i386 + zangband_1:2.7.5pre1-8_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot7Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot7Test_gold new file mode 100644 index 00000000..eb356509 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot7Test_gold @@ -0,0 +1,3 @@ + +Snapshot snap4 successfully created. +You can run 'aptly publish snapshot snap4' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot7Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot7Test_snapshot_show new file mode 100644 index 00000000..2b9894f8 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot7Test_snapshot_show @@ -0,0 +1,57925 @@ +Name: snap4 +Created At: 2014-04-24 00:54:50 MSK +Description: Merged from sources: 'snap3', 'snap2', 'snap1' +Number of packages: 57920 +Packages: + 0ad-data_0~r11863-1_all + 0ad-data-common_0.0.14-1~bpo70+1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + abs-guide_6.5-1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adequate_0.11.3~bpo70+1_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + album_4.06-2_all + album-data_4.05-2_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-arena-data_7.53-1_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoeba-data_1.1-6_all + amoebax-data_0.2.1+dfsg-1_all + ampache_3.6-git408e713+dfsg-4~bpo70+1_all + ampache-common_3.6-git408e713+dfsg-4~bpo70+1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciidoctor_0.1.3-1~bpo70+1_all + asciidoctor-doc_0.1.3-1~bpo70+1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + assaultcube-data_1.1.0.4+repack1-2.1~deb7u1_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es_1.4-1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + astromenace-data-src_1.3.2+repack-1~bpo70+1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atmel-firmware_1.3-4_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autodocktools_1.5.6~rc3~cvs.20120206-1_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automake1.9-doc_1.9.6-1_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bird6_1.4.0-1~bpo70+1_all + bison-doc_1:2.5-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-firmware_1.2-3_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + boinc-dev_7.0.65+dfsg-3~bpo70+1_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + bosixnet-daemon_1.6-2~bpo70+1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + broadcom-sta-common_5.100.82.112-8_all + broadcom-sta-dkms_5.100.82.112-8_all + broadcom-sta-source_5.100.82.112-8_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + bup-doc_0.25-1~bpo70+1_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + calypso_1.3~bpo70+1_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cclib-data_1.0.1-3_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + celestia-common-nonfree_1.6.1-1_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + cloud-init_0.7.2-3~bpo70+1_all + cloud-initramfs-dyn-netconf_0.18.debian3~bpo70+1_all + cloud-initramfs-growroot_0.18.debian3~bpo70+1_all + cloud-initramfs-rescuevol_0.18.debian3~bpo70+1_all + cloud-utils_0.26-2~bpo70+1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coffeescript_1.4.0-1~bpo7+1_all + coffeescript-doc_1.4.0-1~bpo7+1_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colobot-common_0.1.2-3~bpo70+2_all + colobot-common-sounds_0.1.2-3~bpo70+2_all + colobot-common-textures_0.1.2-3~bpo70+2_all + colobot-dev-doc_0.1.2-3~bpo70+2_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-doc-nonfree_2012.06.27-2_all + context-modules_20120611-1_all + context-nonfree_2007.03.22-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-doc_8.3pl4-1_all + coq-doc-html_8.3pl4-1_all + coq-doc-pdf_8.3pl4-1_all + coq-theories_8.3.pl4+dfsg-2_all + core-network_4.6-2~bpo70+1_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cpp-4.4-doc_4.4.7-3_all + cpp-4.6-doc_4.6.3-2_all + cpp-4.7-doc_4.7.2-2_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crash-whitepaper_1.0-1.1_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cuneiform-common_1.1.0+dfsg-4_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + cython-doc_0.19.1+git34-gac3e3a2-1~bpo70+1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-firmware-nonfree_2.6.1-1_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-lan-config_0.13~bpo70+4_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-python_1.20131021-1~bpo70+1_all + dh-systemd_1.11~bpo70.1_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + doc-rfc_20120225-2_all + doc-rfc-experimental_20120225-2_all + doc-rfc-fyi-bcp_20120225-2_all + doc-rfc-informational_20120225-2_all + doc-rfc-misc_20120225-2_all + doc-rfc-old-std_20120225-2_all + doc-rfc-others_20120225-2_all + doc-rfc-std_20120225-2_all + doc-rfc-std-proposed_20120225-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + doom-wad-shareware_1.9.fixed-2_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + dput-ng_1.7~bpo70+1_all + dput-ng-doc_1.7~bpo70+1_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + droopy_0.20131121-1~bpo70+1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drupal7-mod-libraries_2.1-3~bpo70+1_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + eagle-data_5.12.0-3_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ebook-dev-alp_200407-1_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-cli_2.2.9-3~bpo70+1_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elmer-doc_2011.09.06-1_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-common-non-dfsg_23.4+1-1_all + emacs23-el_23.4+1-4_all + emacs24-common-non-dfsg_24.1+1-1_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etoys_4.0.2340-1_all + etoys-doc_4.0.2340-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-oald_1.4.0-3.1_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-ellpc11k_1.4.0-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-adi_0.40~bpo70+1_all + firmware-atheros_0.36+wheezy.1_all + firmware-bnx2_0.36+wheezy.1_all + firmware-bnx2x_0.36+wheezy.1_all + firmware-brcm80211_0.36+wheezy.1_all + firmware-intelwimax_0.36+wheezy.1_all + firmware-ipw2x00_0.36+wheezy.1_all + firmware-ivtv_0.36+wheezy.1_all + firmware-iwlwifi_0.36+wheezy.1_all + firmware-libertas_0.36+wheezy.1_all + firmware-linux_0.36+wheezy.1_all + firmware-linux-free_3.2_all + firmware-linux-nonfree_0.36+wheezy.1_all + firmware-myricom_0.36+wheezy.1_all + firmware-netxen_0.36+wheezy.1_all + firmware-qlogic_0.36+wheezy.1_all + firmware-ralink_0.36+wheezy.1_all + firmware-realtek_0.36+wheezy.1_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + foiltex_2.1.4b-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-font-awesome_3.2.1~dfsg-2~bpo7+1_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipafont-nonfree-jisx0208_00103-19_all + fonts-ipafont-nonfree-uigothic_00203-21_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-larabie-deco_1:20011216-4_all + fonts-larabie-straight_1:20011216-4_all + fonts-larabie-uncommon_1:20011216-4_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mathjax_2.2-1~bpo70+1_all + fonts-mathjax-extras_2.2-1~bpo70+1_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-mikachan_9.1-8_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-moe-standard-kai_20120530-1_all + fonts-moe-standard-song_20120530-1_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-noto_2013-04-11-2~bpo70+1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freecad-doc_0.13.2800-dfsg-1~bpo70+1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogatto-data_1.2+dfsg-1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fs-uae-launcher_2.2.3+dfsg-4~bpo70+1_all + fs-uae-netplay-server_2.2.3+dfsg-4~bpo70+1_all + fsl_4.1.9-7_all + fsl-doc-4.1_4.1.9-7_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti_2.9.4-1~bpo70+1_all + ganeti-doc_2.9.4-1~bpo70+1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gawk-doc_4.0.1+ds-1_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-doc_4.4.7-3_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-doc_4.6.3-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-doc_4.7.2-2_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-doc-base_4.7.2-2_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gccgo-4.6-doc_4.6.3-2_all + gccgo-4.7-doc_4.7.2-2_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-doc_4.6.3-2_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-doc_4.7.2-2_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-doc_7.4.1-2_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-4.4-doc_4.4.7-3_all + gfortran-4.6-doc_4.6.3-2_all + gfortran-4.7-doc_4.7.2-2_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-bzr_1:1.8.5.3-1~bpo70+1_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-mediawiki_1:1.8.5.3-1~bpo70+1_all + git-remote-gcrypt_0.20130908-5~bpo70+1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitolite3_3.5.2-1~bpo70+1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glibc-doc-reference_2.13-1_all + gliese_3.0.95-2_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmp-doc_5.0.5-1_all + gmpc-data_11.8.16-6_all + gmsh-doc_2.7.0.dfsg-1~bpo70+1_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-4.4-doc_4.4.7-3_all + gnat-4.6-doc_4.6.3-2_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extension-weather_0~20130619.gitf74de79-2~bpo70+1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls-doc_3.2.10-2~bpo70+3_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-other_6.0-4_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsl-doc-info_1.15-1_all + gsl-doc-pdf_1.15-1_all + gsl-ref-html_1.15-1_all + gsl-ref-psdoc_1.15-1_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gstreamer1.0-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-bad-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-base-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-good-doc_1.0.8-1~bpo70+1_all + gstreamer1.0-plugins-ugly-doc_1.0.8-1~bpo70+1_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-1.8-doc-non-dfsg_1.8.8+1-1.1_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hevea-doc_1.10-3_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hijra-applet_0.2.1-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + how-can-i-help_4~bpo70+1_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httpry-daemon_0.1.7-3~bpo70+1_all + httpry-tools_0.1.7-3~bpo70+1_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + human-icon-theme_0.28.debian-3.3_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwb_1:040412-3_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + i18nspector_0.11.1-1~bpo70+1_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles_2.0.1-1_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + igv_2.0.30-1_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-package_0.53~bpo70+1_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jhove_1.6+dfsg-1_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kanla_1.4-1~bpo70+1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + keysync_0.2-2~bpo70+1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knot-doc_1.4.3-2~bpo70+1_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + kstars-data-extra-tycho2_1.1r1-9_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libboinc-app-dev_7.0.65+dfsg-3~bpo70+1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbread-board-perl_0.29-1~bpo70+1_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcajun-dev_2.0.3-1~bpo70+1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcoin80-doc_3.1.4~abc9f50-3~bpo70+1_all + libcoin80-runtime_3.1.4~abc9f50-3~bpo70+1_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcolt-java_1.2.0~nojar-2_all + libcolt-java-doc_1.2.0~nojar-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore++-demo_1.7-12_all + libcore++-doc_1.7-12_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcupti-doc_4.2.9-2_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwd-doc_1.0.4-1_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-dev_3.2.0-6~bpo70+1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + libertas-firmware_9.70.7.p0.0-2_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libf2j-java_0.8.1-2_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libfko-doc_2.5.1-1~bpo70+1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfm-doc_1.1.2.2-1~bpo70+1_all + libfm-gtk-data_1.1.2.2-1~bpo70+1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeotiff-epsg_1.3.0-1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-async-doc_2.0.1.3-1~bpo70+1_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-doctest-doc_0.9.1-1~bpo70+1_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-generic-deriving-doc_1.4.0-2~bpo70+1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-info-doc_0.2.0.1-2~bpo70+1_all + libghc-network-multicast-doc_0.0.10-1~bpo70+1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-safesemaphore-doc_0.9.0-1~bpo70+1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-hamlet-doc_0.3.0.1-1~bpo70+1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjabsorb-java_1.3-2_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjai-core-java-doc_1.1.4-3_all + libjai-imageio-core-java-doc_1.2-3_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-chosen_0.9.11-1~bpo7+1_all + libjs-codemirror_2.23-1_all + libjs-coffeescript_1.4.0-1~bpo7+1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jcrop_0.9.12+dfsg-1~bpo70+1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-minicolors_1.2.1-1~bpo7+1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-timepicker_1.2-1~bpo70+1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-less_1.4.2-1~bpo70+1_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-pdf_0.8.37+dfsg-1~bpo7+1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-twitter-bootstrap_2.0.2+dfsg-4~bpo70+1_all + libjs-twitter-bootstrap-docs_2.0.2+dfsg-4~bpo70+1_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-c-doc_0.11-3~bpo7+1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatch-perl-perl_0.04-1~bpo70+1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sender-perl_0.8.16-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-twitter-perl_4.01002-1~bpo70+1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-middleware-test-stashwarnings-perl_0.07-1~bpo70+1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-tr_1:4.1.4-2~bpo70+1_all + libreoffice-help-vi_1:4.1.4-2~bpo70+1_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-kk_1:4.1.4-2~bpo70+1_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-librelogo_1:4.1.4-2~bpo70+1_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-presenter-console_1:4.1.4-2~bpo70+1_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-subsequentcheckbase_1:4.1.4-2~bpo70+1_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libserver-starter-perl_0.15-1~bpo70+1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsipxtapi-doc_3.3.0~test12-2~bpo70+1_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstar-parser-perl_0.59-3_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libttspico-data_1.0+git20110131-2_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-1.0-doc_2:1.0.17-1~bpo70+1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvideo-info-perl_0.993-2_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libworldwind-java_0.5.0-10_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lime-forensics-dkms_1.1-r17+dfsg-2~bpo70+1_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.12_3.12.9-1~bpo70+1_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.12_3.12.9-1~bpo70+1_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.12_3.12.9-1~bpo70+1_all + linux-source-3.2_3.2.54-2_all + linux-support-3.12-0.bpo.1_3.12.9-1~bpo70+1_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-debconfig_4.0~alpha31-1~bpo70+1_all + live-debconfig-doc_4.0~alpha31-1~bpo70+1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lugaru-data_0~20110520.1+hge4354-1_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + make-doc_3.81-5.1_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-posix_2.16-1_all + manpages-posix-dev_2.16-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mbrola-af1_0.0.20040426-2_all + mbrola-br1_2.021-1_all + mbrola-br3_2.021-2_all + mbrola-cr1_0.0.19981028-2_all + mbrola-cz2_0.2-2_all + mbrola-de4_0.0.20020812-1_all + mbrola-de5_1.0-1_all + mbrola-de6_0.0.20021125-2_all + mbrola-de7_0.0.20030404-2_all + mbrola-ee1_0.0.20020407-1_all + mbrola-en1_19980910-2_all + mbrola-es1_0.0.19980610-2_all + mbrola-es2_2.069-1_all + mbrola-fr1_2.050-1_all + mbrola-fr4_0.0.19990521-2_all + mbrola-gr1_19990610-1_all + mbrola-gr2_0.0.20010521-2_all + mbrola-hu1_1.002-2_all + mbrola-id1_1-2_all + mbrola-it3_0.1-2_all + mbrola-it4_0.1-2_all + mbrola-la1_0.0.20050615-2_all + mbrola-mx2_0.1-1_all + mbrola-nl2_0.5-2_all + mbrola-pl1_0.1-2_all + mbrola-pt1_1.0-2_all + mbrola-ro1_1.00-2_all + mbrola-sw1_1.00-2_all + mbrola-sw2_1.0-2_all + mbrola-us1_0.3-2_all + mbrola-us2_0.1-2_all + mbrola-us3_0.1-1_all + mbrola-vz1_2-1_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + mess-data_0.146-4_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgltools-cadd_1.5.6~rc3~cvs.20120206-1_all + mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all + mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all + mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all + mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv-test_1.5.6~rc3~cvs.20120206-1_all + mgltools-pyautodock_1.5.6~rc3~cvs.20120206-1_all + mgltools-pybabel_1.5.6~rc3~cvs.20120206-1_all + mgltools-scenario2_1.5.6~rc3~cvs.20120206-1_all + mgltools-support_1.5.6~rc3~cvs.20120206-1_all + mgltools-symserv_1.5.6~rc3~cvs.20120206-1_all + mgltools-viewerframework_1.5.6~rc3~cvs.20120206-2_all + mgltools-vision_1.5.6~rc3~cvs.20120601-1_all + mgltools-visionlibraries_1.5.6~rc3~cvs.20120601-1_all + mgltools-volume_1.5.6~rc3~cvs.20120206-1_all + mgltools-webservices_1.5.6~rc3~cvs.20120206-1_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + midisport-firmware_1.2-4_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mikutter_0.2.2.1476+dfsg-2~bpo70+1_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirall-doc_1.5.0+dfsg-4~bpo70+1_all + mirall-l10n_1.5.0+dfsg-4~bpo70+1_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mock_1.1.33-1~bpo7+1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysign_1.1~bpo70+1_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpi-specs_20040719-2_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + ngspice-doc_24-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikto_1:2.1.4-2_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + node-less_1.4.2-1~bpo70+1_all + node-uglify_1.3.4-1~bpo7+1_all + nodejs-legacy_0.10.21~dfsg1-1~bpo7+1_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + noshell_4.0.11+notdfsg1-5_all + note_1.3.7-1_all + notion-dev_3+2012042300-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nvidia-cg-doc_3.1.0013-1_all + nvidia-cuda-doc_4.2.9-2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + obfsproxy_0.2.6-2~bpo70+1_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-book-en_1.0-5_all + ocaml-book-fr_1.0-5_all + ocaml-core_3.12.0.1_all + ocaml-doc_3.12-2_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + ooohg_09.12a-8_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-gnome-session_3.5.2-6~bpo70+1_all + openbox-kde-session_3.5.2-6~bpo70+1_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstack-debian-images_0.5~bpo70+1_all + openstack-pkg-tools_8~bpo70+1_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openttd-opensfx_0.2.3-3_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + os8_2.1-4_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + othman_0.2.7-1_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + out-of-order_1.0-2_all + overgod-data_1.0-1.1_all + overlayroot_0.18.debian3~bpo70+1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + owncloud_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-client-doc_1.5.0+dfsg-4~bpo70+1_all + owncloud-client-l10n_1.5.0+dfsg-4~bpo70+1_all + owncloud-doc_0~20131114-1~bpo70+1_all + owncloud-mysql_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-pgsql_5.0.14.a+dfsg-1~bpo70+2_all + owncloud-sqlite_5.0.14.a+dfsg-1~bpo70+2_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + paml-doc_4.5-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parmetis-doc_3.1.1-4_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + pass_1.4.2-1~bpo70+1_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-channels_0~20131124-1~bpo70+1_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pg-activity_1.1.1-1~bpo70+1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-aws-sdk_1.5.6.2-1~bpo70+1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-dropbox_1.0.0-1~bpo70+1_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-google-api-php-client_0.6.2-1~bpo70+1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-irods-prods_3.3.0~beta1-1~bpo70+1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-patchwork-utf8_1.1.7-1~bpo70+1_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-sabre-dav_1.7.6+dfsg-2~bpo70+1_all + php-sabre-vobject_2.0.7-1~bpo70+1_all + php-sabredav_1.7.6+dfsg-2~bpo70+1_all + php-seclib_0.3.5-2~bpo70+1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-routing_2.0.19-1~bpo70+1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + phy-spread_1.0.3-1_all + phylip-doc_1:3.69-1_all + picard-tools_1.46-1_all + picon-domains_2012.05.09-1_all + picon-misc_2010.01.02-1_all + picon-news_2010.01.02-1_all + picon-unknown_2010.01.02-1_all + picon-usenix_1995.04.13-8_all + picon-users_2012.05.14-1_all + picon-weather_2010.01.02-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postbooks-schema-demo_4.1.0-1~bpo70+1_all + postbooks-schema-empty_4.1.0-1~bpo70+1_all + postbooks-schema-quickstart_4.1.0-1~bpo70+1_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-l10n_0.16.285-1~bpo70+1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex-jtex_1.7+1-13_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pv-grub-menu_1.2.1~bpo70+1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configparser_3.3.0r2-1~bpo70+1_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debiancontributors_0.6-1~bpo70+2_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-dirspec_4.2.0-1~bpo70+1_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-jsonfield_0.9.12-1~bpo70+1_all + python-django-ldapdb_0.2.0-1~bpo70+2_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-dput_1.7~bpo70+1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-fedmsg_0.7.1-1~bpo70+1_all + python-fedmsg-doc_0.7.1-1~bpo70+1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-ganeti-rapi_2.9.4-1~bpo70+1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hijra_0.2.1-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kitchen_1.1.1-1~bpo70+1_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libturpial_1.6.0-1~bpo70+1_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-moksha.common_1.2.0-1~bpo70+1_all + python-moksha.hub_1.2.1-1~bpo70+1_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-okasha_0.2.4-1_all + python-okasha-examples_0.2.4-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-othman_0.2.7-1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-paisley_0.3.1-1~bpo70+1_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-parsley_1.2-1~bpo70+1_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pgpdump_1.4-1~bpo70+1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-potr_1.0.0-1~bpo70+1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pyptlib_0.0.5-1~bpo70+1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrcode_4.0.1-2~bpo70+1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.phpdomain_0.1.4-1~bpo70+1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stomper_0.2.7-1~bpo70+1_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txsocksx_1.13.0.0-1~bpo70+1_all + python-txtorcon_0.9.1-1~bpo70+1_all + python-txws_0.7.1-2~bpo70+1_all + python-txzmq_0.6.2-1~bpo70+1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-u1db_0.1.4-2~bpo70+1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-validictory_0.8.3-2~bpo70+1_all + python-validictory-doc_0.8.3-2~bpo70+1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-vcversioner_1.13.0.0-1~bpo70+1_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-websocket_0.12.0-1~bpo70+1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-debian_0.1.21+nmu2~bpo70+1_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-dirspec_4.2.0-1~bpo70+1_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-jsonschema_2.0.0-1~bpo70+1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-magic_1:5.14-2~bpo70+1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-notmuch_0.16-1~bpo70+1_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pgpdump_1.4-1~bpo70+1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-potr_1.0.0-1~bpo70+1_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-validictory_0.8.3-2~bpo70+1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemu-slof_20131015+dfsg-1~bpo70+1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redeclipse-data_1.2-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundcube-sqlite3_0.9.5-1~bpo70+1_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-doc-html_4.0.19-1~bpo70+1_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-backports_3.1.1-1~bpo70+1_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-creole_0.5.0-1~bpo70+1_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-haml-magic-translations_4.0.0-1~bpo70+1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-memoize_1.3.1-2~bpo70+1_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-multipart-parser_0.1.1-1~bpo70+1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-org_0.8.0-1~bpo70+1_all + ruby-packet_0.1.15-5_all + ruby-packetfu_1.1.8-1~bpo70+1_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-openid_1.3.1-2~bpo70+1_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-rails-observers_0.1.1-1~bpo70+1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubypants_0.2.0-1~bpo70+1_all + ruby-rubypants-doc_0.2.0-1~bpo70+1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-sinatra-contrib_1.4.1-1~bpo70+1_all + ruby-slim_2.0.1-1~bpo70+1_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-temple_0.6.6-1~bpo70+1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-typed-array_0.1.2-1~bpo70+1_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-upr_0.2.0-1~bpo70+1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubybook_0.2.1-1_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + salt-common_0.16.4-2~bpo70+1_all + salt-doc_0.16.4-2~bpo70+1_all + salt-master_0.16.4-2~bpo70+1_all + salt-minion_0.16.4-2~bpo70+1_all + salt-syndic_0.16.4-2~bpo70+1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sauerbraten-data_0.0.20100728+repack-1_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-doc_1.4.0+r17300-1_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-ng-doc_1.4.0+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selfhtml_8.1.2-1_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgabios_0.0~svn8-3~bpo70+1_all + sgb-doc_1:20090810-1_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shapetools-tutorial_1.3-3.1_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-markup-samples_3.0.1-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + sl-modem-source_2.9.11~20110321-8+deb7u1_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmp-mibs-downloader_1.1_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spacefm-common_0.9.3-1~bpo70+1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + spectrum-roms_20081224-3_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spellcast-doc_1.5_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-deb-proxy_0.7.2~bpo70+1_all + squid-deb-proxy-client_0.7.2~bpo70+1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-english-czech_20120601-1_all + stardict-german-czech_20120201-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + strongswan-ikev1_5.1.1-2~bpo70+1_all + strongswan-ikev2_5.1.1-2~bpo70+1_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t1-xfree86-nonfree_4.2.1-3.1_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tads3-common_1:0.13-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tangerine-icon-theme_0.26.debian-3_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tar-doc_1.26-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texinfo-doc-nonfree_4.13a-1_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + thawab_3.0.13-1_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-ipafont-jisx0208_00103-19_all + ttf-ipafont-uigothic_00203-21_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-gothic-naga10_20030809-14_all + ttf-kochi-mincho_20030809-15_all + ttf-kochi-mincho-naga10_20030809-14_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-larabie-deco_1:20011216-4_all + ttf-larabie-straight_1:20011216-4_all + ttf-larabie-uncommon_1:20011216-4_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-mikachan_9.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-xfree86-nonfree_4.2.1-3.1_all + ttf-xfree86-nonfree-syriac_4.2.1-3.1_all + ttf-yanone-kaffeesatz_0.20100525-4_all + ttytter_2.1.0-1~deb7u1_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turpial_3.0+dfsg-1~bpo70+1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + uqm-content_0.6.0+deb1-6_all + uqm-music_0.6.0+deb1-6_all + uqm-voice_0.6.0+deb1-6_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-haproxy_1.4.24-2~bpo70+1_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-additions_4.1.18-1_all + virtualbox-guest-additions-iso_4.1.18-1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + vmtk_1.0.1-1_all + volatility_2.3.1-7~bpo70+1_all + volatility-profiles_20140130-1~bpo70+1_all + volatility-tools_2.3.1-7~bpo70+1_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3-recs_20110107-1_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + wims-modules_1:4.07a~dfsg1-2~bpo1-1_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + worldwind_0.5.0-10_all + worldwind-doc_0.5.0-10_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + x2goplugin-provider_4.0.1.1-1~bpo7+1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-naga10_1.1-13.1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfonts-x3270-misc_3.3.10ga4-2_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmame-sdl_0.146-5_all + xmame-tools_0.146-4_all + xmame-x_0.146-5_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xmess-sdl_0.146-4_all + xmess-x_0.146-4_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xml2rfc_1.36-5_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtide-data-nonfree_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-https-everywhere_3.4.5-1~bpo70+1_all + xul-ext-https-finder_087-2~bpo70+1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yale_5.0.95-2_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yum-utils_1.1.31-2~bpo7+1_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zabbix-frontend-php_1:2.0.9+dfsg-1~bpo70+2_all + zangband-data_1:2.7.5pre1-8_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zd1211-firmware_2.21.0.0-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zekr_1.0.0+repack-7_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zenmap_6.40-0.1~bpo70+1_all + zeroc-ice-manual_3.4.2-1_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3270-common_3.3.10ga4-2+b1_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + abyss_1.3.4-3_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + agrep_4.17-9_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + aircrack-ng_1:1.1-6~bpo70+1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algobox_0.8+dfsg-2~bpo70+1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amd-clinfo_1:12-6+point-3_amd64 + amd-libopencl1_1:12-6+point-3_amd64 + amd-opencl-dev_1:12-6+point-3_amd64 + amd-opencl-icd_1:12-6+point-3_amd64 + amd-opencl-icd-legacy_8.97.100.7-3~bpo70+1_amd64 + amd64-microcode_1.20120910-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amiwm_0.20.48-8_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + android-tools-adb_4.2.2+git20130529-3~bpo70+1_amd64 + android-tools-fastboot_4.2.2+git20130529-3~bpo70+1_amd64 + android-tools-fsutils_4.2.2+git20130529-3~bpo70+1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-vpb_1:11.7.0~dfsg-1~bpo70+1_amd64 + astromenace_1.3.2+repack-3~bpo70+1_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbswitch-dkms_0.7-1~bpo70+1_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + bilibop_0.4.20~bpo70+1_amd64 + bilibop-common_0.4.20~bpo70+1_amd64 + bilibop-lockfs_0.4.20~bpo70+1_amd64 + bilibop-rules_0.4.20~bpo70+1_amd64 + bilibop-udev_0.4.20~bpo70+1_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bip-dbg_0.8.9-1~bpo70+1_amd64 + bird_1.3.7-1_amd64 + bird-bgp_1.4.0-1~bpo70+1_amd64 + bird-bgp-dbg_1.4.0-1~bpo70+1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bittwist_2.0-3~bpo70+1_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + bladerf-host_0.9.0.15.8ba2499-1~bpo70+1_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blimps-examples_3.9-1_amd64 + blimps-utils_3.9-1_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-amd-opencl_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-nvidia-cuda_7.0.65+dfsg-3~bpo70+1_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + bosixnet-webui_1.6-2~bpo70+1_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-libreoffice_1:4.1.4-2~bpo70+1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdgames-nonfree_2.17-5_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + bugsx_1.08-12_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumblebee_3.2.1-4~bpo70+1_amd64 + bumblebee-dbg_3.2.1-4~bpo70+1_amd64 + bumblebee-nvidia_3.2.1-4~bpo70+1_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + c3270_3.3.10ga4-2+b1_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-pdf-viewer_3.9.3-1~bpo70+1_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalw-mpi_0.15-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colobot_0.1.2-3~bpo70+2_amd64 + colobot-dbg_0.1.2-3~bpo70+2_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + conserver-client_8.1.18-2.2_amd64 + conserver-server_8.1.18-2.2_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + core-network-daemon_4.6-2~bpo70+1_amd64 + core-network-gui_4.6-2~bpo70+1_amd64 + corekeeper_1.5~bpo70+1_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + crafty_23.4-6_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvimp_0.4.7-2~bpo70+1_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cufflinks_1.3.0-2_amd64 + cultivation_9+dfsg1-1_amd64 + cuneiform_1.1.0+dfsg-4_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + cython3_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + cython3-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + darcs-monitor_0.4.2-3~bpo70+1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + deltarpm_3.6+dfsg-1~bpo7+1_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + diskscan_0.13-1~bpo70+1_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + doctest_0.9.1-1~bpo70+1_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamips_0.2.7-0.2.8RC2-5.1_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk3_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-gtk3-dbg_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt-mini_2.2.9-3~bpo70+1_amd64 + eiskaltdcpp-qt-mini-dbg_2.2.9-3~bpo70+1_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + embassy-phylip_3.69+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-dbg_1:16.b.3.1-dfsg-1~bpo70+1_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + ext4magic_0.3.1-1~bpo70+1_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + f2j_0.8.1-2_amd64 + f3_2.2-1~bpo70+1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatrat-unpack_1.1.3-2_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-libs-gclient_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-libs-qt_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-quickphrase-editor_1:4.2.8.3-2~bpo70+1_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-t9_0.3.4-1~bpo70+1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-zhengma-large_0.3.4-1~bpo70+1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fglrx-atieventsd_1:12-6+point-3_amd64 + fglrx-control_1:12-6+point-3_amd64 + fglrx-driver_1:12-6+point-3_amd64 + fglrx-glx_1:12-6+point-3_amd64 + fglrx-glx-ia32_1:12-6+point-3_amd64 + fglrx-legacy-atieventsd_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-control_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-driver_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-modules-dkms_8.97.100.7-3~bpo70+1_amd64 + fglrx-legacy-source_8.97.100.7-3~bpo70+1_amd64 + fglrx-modules-dkms_1:12-6+point-3_amd64 + fglrx-source_1:12-6+point-3_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-dbg_1:5.14-2~bpo70+1_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + flydraw_1:4.07a~dfsg1-2~bpo1-1_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecad_0.13.2800-dfsg-1~bpo70+1_amd64 + freecad-dev_0.13.2800-dfsg-1~bpo70+1_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frobtads_1:0.13-2_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fs-uae_2.2.3+dfsg-4~bpo70+1_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsl-4.1_4.1.9-7_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-haskell_2.9.4-1~bpo70+1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + ganglia-nagios-bridge_1.0.1-1~bpo70+1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geoip-dbg_1.5.0-3~bpo70+1_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-plugins-base-1.0_1.0.8-1~bpo70+1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gstreamer-1.0_1.0.8-1~bpo70+1_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-cpufreq_0.6.4-4~bpo70+1_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + glx-alternative-fglrx_0.4.1~bpo70+1_amd64 + glx-alternative-mesa_0.4.1~bpo70+1_amd64 + glx-alternative-nvidia_0.4.1~bpo70+1_amd64 + glx-diversions_0.4.1~bpo70+1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmap_2012-06-12-1_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmsh_2.7.0.dfsg-1~bpo70+1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + gr-fcdproplus_0.0.1.1.2c80be-3~bpo70+1_amd64 + gr-iqbal_0.37.1.5.d4fd4d-1~bpo70+1_amd64 + gr-osmosdr_0.1.0.55.80c4af-2~bpo70~1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gstreamer1.0-alsa_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-libav_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-libav-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-bad_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-bad-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base-apps_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-base-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-good_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-good-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-ugly_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-plugins-ugly-dbg_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-pulseaudio_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-tools_1.0.8-1~bpo70+1_amd64 + gstreamer1.0-x_1.0.8-1~bpo70+1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hackrf_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + haproxy_1.4.24-2~bpo70+1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htpdate_1.1.0-1~bpo70+1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httpry_0.1.7-3~bpo70+1_amd64 + httpry-dbg_0.1.7-3~bpo70+1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike_2.2.1+dfsg-2~bpo70+1_amd64 + ike-qtgui_2.2.1+dfsg-2~bpo70+1_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imview_1.1.9c-12~bpo70+1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel-microcode_1.20130906.1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + iozone3_397-2_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptraf-ng_1.1.3.1-2~bpo70+1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-otr_1.0.0-1~bpo70+1_amd64 + irssi-plugin-otr-dbg_1.0.0-1~bpo70+1_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-management-console_1:2.0.1-3~bpo7+1_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iucode-tool_1.0-1~bpo70+1_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jmtpfs_0.5-2~bpo70+1_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-gtk-style-preview_3:2.2.1-1~bpo70+1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kic_2.4a-1.1_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kismet_2013.03.R1b-2~bpo70+1_amd64 + kismet-plugins_2013.03.R1b-2~bpo70+1_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knot_1.4.3-2~bpo70+1_amd64 + knot-dbg_1.4.3-2~bpo70+1_amd64 + knot-dnsutils_1.4.3-2~bpo70+1_amd64 + knot-host_1.4.3-2~bpo70+1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fastcgi_2.4.7~0910052141-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqebics0_5.3.5beta-2~bpo70+1_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqhbci22_5.3.5beta-2~bpo70+1_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf-dev_0.18.3-1~bpo7+1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec-extra-54_6:9.10-1~bpo70+1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavcodec54_6:9.10-1~bpo70+1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavfilter3_6:9.10-1~bpo70+1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavformat54_6:9.10-1~bpo70+1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavresample-dev_6:9.10-1~bpo70+1_amd64 + libavresample1_6:9.10-1~bpo70+1_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libavutil52_6:9.10-1~bpo70+1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbfio-dbg_20130507-1~bpo70+1_amd64 + libbfio-dev_20130507-1~bpo70+1_amd64 + libbfio1_20130507-1~bpo70+1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libbladerf-dev_0.9.0.15.8ba2499-1~bpo70+1_amd64 + libbladerf0_0.9.0.15.8ba2499-1~bpo70+1_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libblimps3_3.9-1_amd64 + libblimps3-dev_3.9-1_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libboinc-app7_7.0.65+dfsg-3~bpo70+1_amd64 + libboinc7_7.0.65+dfsg-3~bpo70+1_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamlpdf-ocaml-dev_0.5-1+b2_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcg_3.1.0013-1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcggl_3.1.0013-1_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclamunrar6_0.96.4-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcoin80_3.1.4~abc9f50-3~bpo70+1_amd64 + libcoin80-dev_3.1.4~abc9f50-3~bpo70+1_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore++-dev_1.7-12_amd64 + libcore++1c2_1.7-12_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libcsvimp-dev_0.4.7-2~bpo70+1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcublas4_4.2.9-2_amd64 + libcublas5.0_5.0.35-8~bpo70+1_amd64 + libcuda1_304.88-1+deb7u1_amd64 + libcuda1-ia32_304.88-1+deb7u1_amd64 + libcudart4_4.2.9-2_amd64 + libcudart5.0_5.0.35-8~bpo70+1_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcufft4_4.2.9-2_amd64 + libcufft5.0_5.0.35-8~bpo70+1_amd64 + libcuinj4_4.2.9-2_amd64 + libcuinj64-5.0_5.0.35-8~bpo70+1_amd64 + libcuneiform-dev_1.1.0+dfsg-4_amd64 + libcuneiform0_1.1.0+dfsg-4_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcupti-dev_4.2.9-2_amd64 + libcupti4_4.2.9-2_amd64 + libcupti5.0_5.0.35-8~bpo70+1_amd64 + libcurand4_4.2.9-2_amd64 + libcurand5.0_5.0.35-8~bpo70+1_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcusparse4_4.2.9-2_amd64 + libcusparse5.0_5.0.35-8~bpo70+1_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwd_1.0.4-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp-dev_2.2.9-3~bpo70+1_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembperl-perl_2.5.0~rc3-1~bpo70+1_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfglrx_1:12-6+point-3_amd64 + libfglrx-amdxvba1_1:12-6+point-3_amd64 + libfglrx-ia32_1:12-6+point-3_amd64 + libfglrx-legacy_8.97.100.7-3~bpo70+1_amd64 + libfglrx-legacy-amdxvba1_8.97.100.7-3~bpo70+1_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko-perl_2.5.1-1~bpo70+1_amd64 + libfko-python_2.5.1-1~bpo70+1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libfko2_2.5.1-1~bpo70+1_amd64 + libfko2-dbg_2.5.1-1~bpo70+1_amd64 + libfko2-dev_2.5.1-1~bpo70+1_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dbg_1.1.2.2-1~bpo70+1_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk-dbg_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk-dev_1.1.2.2-1~bpo70+1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm-gtk3_1.1.2.2-1~bpo70+1_amd64 + libfm-tools_1.1.2.2-1~bpo70+1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfm3_1.1.2.2-1~bpo70+1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-client-dev_1.1.6-7~bpo70+1_amd64 + libfreeradius-client2_1.1.6-7~bpo70+1_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo-dev_0.18.3-1~bpo7+1_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-async-dev_2.0.1.3-1~bpo70+1_amd64 + libghc-async-prof_2.0.1.3-1~bpo70+1_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-doctest-dev_0.9.1-1~bpo70+1_amd64 + libghc-doctest-prof_0.9.1-1~bpo70+1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-generic-deriving-dev_1.4.0-2~bpo70+1_amd64 + libghc-generic-deriving-prof_1.4.0-2~bpo70+1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-info-dev_0.2.0.1-2~bpo70+1_amd64 + libghc-network-info-prof_0.2.0.1-2~bpo70+1_amd64 + libghc-network-multicast-dev_0.0.10-1~bpo70+1_amd64 + libghc-network-multicast-prof_0.0.10-1~bpo70+1_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-safesemaphore-dev_0.9.0-1~bpo70+1_amd64 + libghc-safesemaphore-prof_0.9.0-1~bpo70+1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-hamlet-dev_0.3.0.1-1~bpo70+1_amd64 + libghc-xml-hamlet-prof_0.3.0.1-1~bpo70+1_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-fglrx-glx_1:12-6+point-3_amd64 + libgl1-fglrx-legacy-glx_8.97.100.7-3~bpo70+1_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl1-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgl1-nvidia-alternatives-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-legacy-173xx-glx_173.14.35-4_amd64 + libgl1-nvidia-legacy-173xx-glx-ia32_173.14.35-4_amd64 + libgl1-nvidia-legacy-304xx-glx_304.117-1~bpo70+1_amd64 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_amd64 + libgl1-nvidia-legacy-71xx-glx-ia32_71.86.15-3_amd64 + libgl1-nvidia-legacy-96xx-glx_96.43.23-3_amd64 + libgl1-nvidia-legacy-96xx-glx-ia32_96.43.23-3_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libglx-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmsh-dev_2.7.0.dfsg-1~bpo70+1_amd64 + libgmsh2_2.7.0.dfsg-1~bpo70+1_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-analog3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-atsc3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-blocks3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-channels3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fcdproplus0_0.0.1.1.2c80be-3~bpo70+1_amd64 + libgnuradio-fec3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-fft3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-filter3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-iqbalance0_0.37.1.5.d4fd4d-1~bpo70+1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-osmosdr0.0.0_0.1.0.55.80c4af-2~bpo70~1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-pmt3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-runtime3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-wavelet3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnuradio-wxgui3.7.2.1_3.7.2.1-5~bpo70+1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls-xssl0_3.2.10-2~bpo70+3_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutls28_3.2.10-2~bpo70+3_amd64 + libgnutls28-dbg_3.2.10-2~bpo70+3_amd64 + libgnutls28-dev_3.2.10-2~bpo70+3_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgnutlsxx28_3.2.10-2~bpo70+3_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-bad1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-bad1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer-plugins-base1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer-plugins-base1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstreamer1.0-0_1.0.8-1~bpo70+1_amd64 + libgstreamer1.0-0-dbg_1.0.8-1~bpo70+1_amd64 + libgstreamer1.0-dev_1.0.8-1~bpo70+1_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-cpp0_4.10.0beta-1~bpo70+1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgyoto1_0.1.0-2~bpo70+1_amd64 + libgyoto1-dev_0.1.0-2~bpo70+1_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhackrf-dev_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + libhackrf0_2013.07.1.16.d5cebd-2~bpo70+1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhavege-dev_1.7b-2~bpo70+1_amd64 + libhavege1_1.7b-2~bpo70+1_amd64 + libhavege1-dbg_1.7b-2~bpo70+1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitalccore_1:2.0.1-3~bpo7+1_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjai-core-java_1.1.4-3_amd64 + libjai-imageio-core-java_1.2-3_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gmsh2_2.7.0.dfsg-1~bpo70+1_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-c-dev_0.11-3~bpo7+1_amd64 + libjson-c2_0.11-3~bpo7+1_amd64 + libjson-c2-dbg_0.11-3~bpo7+1_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + liblldpctl-dev_0.7.7-1~bpo70+1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-perl_0.71-3+b1_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmetis-edf-dev_4.1-2-3_amd64 + libmetis-edf4.1_4.1-2-3_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmotif-dev_2.3.3-8_amd64 + libmotif4_2.3.3-8_amd64 + libmotif4-dbg_2.3.3-8_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmsv1_1.0-1~bpo70+1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnauty-dev_2.4r2-1_amd64 + libnauty1d_2.4r2-1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpp4_4.2.9-2_amd64 + libnpp5.0_5.0.35-8~bpo70+1_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntdb-dev_1.0-2~bpo70+1_amd64 + libntdb1_1.0-2~bpo70+1_amd64 + libntdb1-dbg_1.0-2~bpo70+1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvcuvid1_304.88-1+deb7u1_amd64 + libnvidia-compiler_304.88-1+deb7u1_amd64 + libnvidia-compiler-ia32_304.88-1+deb7u1_amd64 + libnvidia-encode1_319.82-1~bpo70+1_amd64 + libnvidia-ifr1_319.82-1~bpo70+1_amd64 + libnvidia-ml1_304.88-1+deb7u1_amd64 + libnvtoolsext5.0_5.0.35-8~bpo70+1_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrender29_3.5.2-6~bpo70+1_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobt2_3.5.2-6~bpo70+1_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + libocsync-dev_0.91.4-1~bpo70+1_amd64 + libocsync0_0.91.4-1~bpo70+1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenrpt-dev_3.3.4-6~bpo70+1_amd64 + libopenrpt1_3.3.4-6~bpo70+1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmosdr-dev_0.1.7.cd37e9-2~bpo70+1_amd64 + libosmosdr0_0.1.7.cd37e9-2~bpo70+1_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libotr5_4.0.0-2.2~bpo70+1_amd64 + libotr5-bin_4.0.0-2.2~bpo70+1_amd64 + libotr5-dev_4.0.0-2.2~bpo70+1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libowncloudsync0_1.5.0+dfsg-4~bpo70+1_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libp11-kit0-dbg_0.20.2-1~bpo70+1_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparmetis-dev_3.1.1-4_amd64 + libparmetis3.1_3.1.1-4_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpj2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjlib-util2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-audiodev2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-codec2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia-videodev2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjmedia2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjnath2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjproject-dev_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip-simple2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip-ua2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsip2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpjsua2_2.1.0.0.ast20130823-1~bpo70+1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libproc-wait3-perl_0.4-1~bpo70+1_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpulsedsp_4.0-6~bpo7+1_amd64 + libpulsedsp-dbg_4.0-6~bpo7+1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtkeychain0_0.1.0-2~bpo70+1_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxmpp0-dbg_0.7.6-1~bpo70+1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librgxg-dev_0.1-1~bpo70+1_amd64 + librgxg0_0.1-1~bpo70+1_amd64 + librgxg0-dbg_0.1-1~bpo70+1_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtlsdr-dev_0.5.2.7.3ab6-1~bpo70+1_amd64 + librtlsdr0_0.5.2.7.3ab6-1~bpo70+1_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsaml8_2.5.3-2~bpo70+1_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbc-dev_1.1-2~bpo7+1_amd64 + libsbc1_1.1-2~bpo7+1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdl2-2.0-0_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdl2-dbg_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdl2-dev_2.0.0+dfsg1-2~bpo70+1_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsipxtapi_3.3.0~test12-2~bpo70+1_amd64 + libsipxtapi-dev_3.3.0~test12-2~bpo70+1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmbsharemodes-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmbsharemodes0_2:4.1.5+dfsg-1~bpo70+1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlcipher-dev_2.2.1-2~bpo70+1_amd64 + libsqlcipher0_2.2.1-2~bpo70+1_amd64 + libsqlcipher0-dbg_2.2.1-2~bpo70+1_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-compare-constanttime-perl_0.300-1~bpo70+1_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtasn1-6_3.4-2~bpo70+1_amd64 + libtasn1-6-dbg_3.4-2~bpo70+1_amd64 + libtasn1-6-dev_3.4-2~bpo70+1_amd64 + libtasn1-bin_3.4-2~bpo70+1_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtcplay_1.1-1~bpo70+1_amd64 + libtcplay-dev_1.1-1~bpo70+1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtet1.4_1.4.3-1_amd64 + libtet1.4-dev_1.4.3-1_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtriangle-1.6_1.6-2_amd64 + libtriangle-dev_1.6-2_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk10_4.1.2-2~bpo70+1_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libttspico-dev_1.0+git20110131-2_amd64 + libttspico-utils_1.0+git20110131-2_amd64 + libttspico0_1.0+git20110131-2_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libu1db-dev_0.1.4-2~bpo70+1_amd64 + libu1db1_0.1.4-2~bpo70+1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dbg_2:1.0.17-1~bpo70+1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbredirparser1_0.6-2~bpo70+1_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.14-dbg_3.14.5.8-4~bpo7+1_amd64 + libv8-3.14-dev_3.14.5.8-4~bpo7+1_amd64 + libv8-3.14.5_3.14.5.8-4~bpo7+1_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt-sanlock_1.2.1-1~bpo70+1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvlccore7_2.1.2-2~bpo70+2_amd64 + libvmtk-dev_1.0.1-1_amd64 + libvmtk1.0_1.0.1-1_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwireshark3_1.10.5-1~bpo70+1_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwiretap3_1.10.5-1~bpo70+1_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwsutil3_1.10.5-1~bpo70+1_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-cursor-dev_0.1.1-2~bpo70+1_amd64 + libxcb-cursor0_0.1.1-2~bpo70+1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-security-c17_1.7.2-2~bpo70+1_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmltooling6_1.5.3-2~bpo70+1_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxnvctrl-dev_319.72-1~bpo70+1_amd64 + libxnvctrl0_319.72-1~bpo70+1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxtuplecommon-dev_4.1.0-3~bpo70+1_amd64 + libxtuplecommon1_4.1.0-3~bpo70+1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvbaw-dev_1:12-6+point-3_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxvmcnvidia1_304.88-1+deb7u1_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyade_1.05.0-2~bpo70+1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyara-dev_2.0.0-2~bpo70+1_amd64 + libyara2_2.0.0-2~bpo70+1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzmq3_3.2.3+dfsg-2~bpo70+1_amd64 + libzmq3-dbg_3.2.3+dfsg-2~bpo70+1_amd64 + libzmq3-dev_3.2.3+dfsg-2~bpo70+1_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-compiler-gcc-4.6-x86_3.12.9-1~bpo70+1_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.12-0.bpo.1-all_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-all-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-common_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-common-rt_3.12.9-1~bpo70+1_amd64 + linux-headers-3.12-0.bpo.1-rt-amd64_3.12.9-1~bpo70+1_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-amd64-dbg_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-rt-amd64_3.12.9-1~bpo70+1_amd64 + linux-image-3.12-0.bpo.1-rt-amd64-dbg_3.12.9-1~bpo70+1_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-amd64-dbg_3.12+55~bpo70+1_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-image-rt-amd64-dbg_3.12+55~bpo70+1_amd64 + linux-kbuild-3.12_3.12.6-1~bpo70+1_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.12_3.12.6-1~bpo70+1_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-augeas_0.1.1-3~bpo70+1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + mac-robber_1.02-1~bpo70+1_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madfuload_1.2-4_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + mame_0.146-5_amd64 + mame-tools_0.146-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbrola_3.01h-6_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + mess_0.146-4_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + metis-edf_4.1-2-3_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_amd64 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motif-clients_2.3.3-8_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mssstest_3.0-3_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-dropbox_1.4.0-3_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + nauty_2.4r2-1_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmate_0.2.0-3~bpo70+1_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperf_2.4.4-6.1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + ngspice_24-1_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nocache_0.9-1~bpo70+1_amd64 + nodau_0.3~rc6-1_amd64 + nodejs_0.10.21~dfsg1-1~bpo7+1_amd64 + nodejs-dbg_0.10.21~dfsg1-1~bpo7+1_amd64 + nodejs-dev_0.10.21~dfsg1-1~bpo7+1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notion_3+2012042300-1_amd64 + notmuch_0.13.2-1_amd64 + notmuch-dbg_0.16-1~bpo70+1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + ntdb-tools_1.0-2~bpo70+1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nttcp_1.47-13_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvidia-alternative_304.88-1+deb7u1_amd64 + nvidia-alternative-legacy-173xx_173.14.35-4_amd64 + nvidia-alternative-legacy-71xx_71.86.15-3_amd64 + nvidia-alternative-legacy-96xx_96.43.23-3_amd64 + nvidia-cg-dev_3.1.0013-1_amd64 + nvidia-cg-toolkit_3.1.0013-1_amd64 + nvidia-cuda-dev_4.2.9-2_amd64 + nvidia-cuda-gdb_4.2.9-2_amd64 + nvidia-cuda-mps_319.82-1~bpo70+1_amd64 + nvidia-cuda-toolkit_4.2.9-2_amd64 + nvidia-detect_304.88-1+deb7u1_amd64 + nvidia-driver_319.82-1~bpo70+1_amd64 + nvidia-glx_304.88-1+deb7u1_amd64 + nvidia-glx-ia32_304.88-1+deb7u1_amd64 + nvidia-glx-legacy_71.86.15-3_amd64 + nvidia-glx-legacy-173xx_173.14.35-4_amd64 + nvidia-glx-legacy-173xx-ia32_173.14.35-4_amd64 + nvidia-glx-legacy-71xx_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-dev_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-ia32_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_amd64 + nvidia-glx-legacy-96xx_96.43.23-3_amd64 + nvidia-glx-legacy-96xx-ia32_96.43.23-3_amd64 + nvidia-glx-legacy-dev_71.86.15-3_amd64 + nvidia-glx-legacy-ia32_71.86.15-3_amd64 + nvidia-installer-cleanup_20131102+1~bpo70+1_amd64 + nvidia-kernel-2.6-amd64_304.88+1_amd64 + nvidia-kernel-3.12-0.bpo.1-amd64_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_amd64 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_amd64 + nvidia-kernel-amd64_304.88+1_amd64 + nvidia-kernel-common_20131102+1~bpo70+1_amd64 + nvidia-kernel-dkms_304.88-1+deb7u1_amd64 + nvidia-kernel-legacy-173xx-dkms_173.14.35-4_amd64 + nvidia-kernel-legacy-173xx-source_173.14.35-4_amd64 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_amd64 + nvidia-kernel-legacy-71xx-source_71.86.15-3_amd64 + nvidia-kernel-legacy-96xx-dkms_96.43.23-3_amd64 + nvidia-kernel-legacy-96xx-source_96.43.23-3_amd64 + nvidia-kernel-legacy-source_71.86.15-3_amd64 + nvidia-kernel-source_304.88-1+deb7u1_amd64 + nvidia-legacy-173xx-driver_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-173xx-kernel-dkms_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-173xx-kernel-source_173.14.39-1~bpo70+1_amd64 + nvidia-legacy-304xx-alternative_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-driver_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-kernel-dkms_304.117-1~bpo70+1_amd64 + nvidia-legacy-304xx-kernel-source_304.117-1~bpo70+1_amd64 + nvidia-legacy-96xx-driver_96.43.23-7~bpo70+1_amd64 + nvidia-legacy-96xx-kernel-dkms_96.43.23-7~bpo70+1_amd64 + nvidia-legacy-96xx-kernel-source_96.43.23-7~bpo70+1_amd64 + nvidia-libopencl1_304.88-1+deb7u1_amd64 + nvidia-libopencl1-ia32_304.88-1+deb7u1_amd64 + nvidia-nsight_5.0.35-8~bpo70+1_amd64 + nvidia-opencl-common_304.88-1+deb7u1_amd64 + nvidia-opencl-dev_4.2.9-2_amd64 + nvidia-opencl-icd_304.88-1+deb7u1_amd64 + nvidia-opencl-icd-ia32_304.88-1+deb7u1_amd64 + nvidia-profiler_5.0.35-8~bpo70+1_amd64 + nvidia-settings_319.72-1~bpo70+1_amd64 + nvidia-settings-legacy-173xx_173.14.39-1~bpo70+1_amd64 + nvidia-settings-legacy-304xx_304.116-1~bpo70+1_amd64 + nvidia-settings-legacy-96xx_96.43.20-2~bpo70+1_amd64 + nvidia-smi_304.88-1+deb7u1_amd64 + nvidia-support_20131102+1~bpo70+1_amd64 + nvidia-vdpau-driver_304.88-1+deb7u1_amd64 + nvidia-vdpau-driver-ia32_304.88-1+deb7u1_amd64 + nvidia-visual-profiler_4.2.9-2_amd64 + nvidia-xconfig_319.72-1~bpo70+1_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + openrpt_3.3.4-6~bpo70+1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmo-sdr_0.1.7.cd37e9-2~bpo70+1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owncloud-client_1.5.0+dfsg-4~bpo70+1_amd64 + owncloud-client-cmd_1.5.0+dfsg-4~bpo70+1_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p7zip-rar_9.20.1~ds.1-3_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + paml_4.5-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parmetis-test_3.1.1-4_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcapfix_1.0.2-2~bpo70+1_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + pepper_0.3.2-2~bpo70+1_amd64 + pepperflashplugin-nonfree_1.2~bpo70+1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgplot5_5.2.2-19_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mongo_1.4.5-1~bpo70+1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phylip_1:3.69-1_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + postbooks_4.1.0-3~bpo70+1_amd64 + postbooks-updater_2.2.5-4~bpo70+1_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powder_117-1_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pptview_8.0-7_amd64 + pqiv_0.12-1_amd64 + pr3287_3.3.10ga4-2+b1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + primus_0~20130904-1~bpo70+1_amd64 + primus-libs_0~20130904-1~bpo70+1_amd64 + primus-libs-dbg_0~20130904-1~bpo70+1_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-deltarpm_3.6+dfsg-1~bpo7+1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gmsh_2.7.0.dfsg-1~bpo70+1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-m2ext_0.1-1~bpo70+1_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-msgpack_0.3.0-1~bpo70+2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-ntdb_1.0-2~bpo70+1_amd64 + python-ntdb-dbg_1.0-2~bpo70+1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vmtk_1.0.1-1_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yade_1.05.0-2~bpo70+1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yara_2.0.0-2~bpo70+1_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-deltarpm_3.6+dfsg-1~bpo7+1_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-hivex_1.3.9-1~bpo70+1_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-msgpack_0.3.0-1~bpo70+2_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-yara_2.0.0-2~bpo70+1_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-guest-agent_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-system-arm_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-common_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-mips_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-misc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-ppc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-sparc_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-system-x86_1.7.0+dfsg-2~bpo70+2_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtkeychain-dev_0.1.0-2~bpo70+1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-maptools_1:0.7-38-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radeontop_0.7-1~bpo70+1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rar_2:4.0.b3-1_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + rebar_2.0.0-5~bpo70+1_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redeclipse_1.4-5~bpo70+1_amd64 + redeclipse-dbg_1.4-5~bpo70+1_amd64 + redeclipse-server_1.4-5~bpo70+1_amd64 + redeclipse-server-dbg_1.4-5~bpo70+1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redis-tools_2:2.8.6-1~bpo70+1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rgxg_0.1-1~bpo70+1_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_5.8.11-3_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mongodb_7.4.4-1~bpo70+1_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtl-sdr_0.5.2.7.3ab6-1~bpo70+1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-notmuch_0.16-1~bpo70+1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-oj_2.0.10-1~bpo70+1_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pcaprub_0.11.3-1~bpo70+1_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rjb_1.4.8-1~bpo70+1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3270_3.3.10ga4-2+b1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dev_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-libs_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-testsuite_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba-vfs-modules_2:4.1.5+dfsg-1~bpo70+1_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbc-tools_1.1-2~bpo7+1_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdlmame_0.146-5_amd64 + sdlmame-tools_0.146-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + seahorse-nautilus_3.8.0-1~bpo70+1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seaview_1:4.3.3-3_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq-gen_1.3.3-1_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgb_1:20090810-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + sift_4.0.3b-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_amd64 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacefm_0.9.3-1~bpo70+1_amd64 + spacefm-gtk3_0.9.3-1~bpo70+1_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + sparse_0.4.3+20110419-1_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlcipher_2.2.1-2~bpo70+1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-agent-filter_0.3-1~bpo70+1_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ike_5.1.1-2~bpo70+1_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + supertuxkart-dbg_0.8.1-2~bpo70+1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tads2-dev_1:0.13-2_amd64 + tads3-dev_1:0.13-2_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclspice_24-1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcplay_1.1-1~bpo70+1_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + teamspeak-client_2.0.32-3.1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetgen_1.4.3-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + titantools_4.0.11+notdfsg1-5_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tome_2.3.5-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + triangle-bin_1.6-2_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + trn4_4.0-test77-6_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u1db-tools_0.1.4-2~bpo70+1_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udevil_0.4.3-1~bpo70+1_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unace-nonfree_2.5-7_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar_1:4.1.4-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmdebootstrap_0.2-1~bpo70+1_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + vokoscreen_1.9.6-1~bpo70+1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + wap-wml-tools_0.0.4-6_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + wims_1:4.07a~dfsg1-2~bpo1-1_amd64 + wims-java-applets_1:4.07a~dfsg1-2~bpo1-1_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goclient-dbg_4.0.1.1-1~bpo7+1_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x3270_3.3.10ga4-2+b1_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfractint_20.4.10-2_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml-security-c-utils_1.7.2-2~bpo70+1_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-nvidia_304.88-1+deb7u1_amd64 + xserver-xorg-video-nvidia-legacy-173xx_173.14.35-4_amd64 + xserver-xorg-video-nvidia-legacy-304xx_304.117-1~bpo70+1_amd64 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_amd64 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-3_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsnow_1:1.42-9_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yara_2.0.0-2~bpo70+1_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gy_0.0.5-1~bpo70+1_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-ygsl_1.1.1-1~bpo70+1_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zabbix-agent_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-mysql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-pgsql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-proxy-sqlite3_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-server-mysql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zabbix-server-pgsql_1:2.0.9+dfsg-1~bpo70+2_amd64 + zangband_1:2.7.5pre1-8_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3270-common_3.3.10ga4-2+b1_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + aircrack-ng_1:1.1-6~bpo70+1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algobox_0.8+dfsg-2~bpo70+1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amd-clinfo_1:12-6+point-3_i386 + amd-libopencl1_1:12-6+point-3_i386 + amd-opencl-dev_1:12-6+point-3_i386 + amd-opencl-icd_1:12-6+point-3_i386 + amd-opencl-icd-legacy_8.97.100.7-3~bpo70+1_i386 + amd64-microcode_1.20120910-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amiwm_0.20.48-8_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + android-tools-adb_4.2.2+git20130529-3~bpo70+1_i386 + android-tools-fastboot_4.2.2+git20130529-3~bpo70+1_i386 + android-tools-fsutils_4.2.2+git20130529-3~bpo70+1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-vpb_1:11.7.0~dfsg-1~bpo70+1_i386 + astromenace_1.3.2+repack-3~bpo70+1_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axe_6.1.2-15.1_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbswitch-dkms_0.7-1~bpo70+1_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + bilibop_0.4.20~bpo70+1_i386 + bilibop-common_0.4.20~bpo70+1_i386 + bilibop-lockfs_0.4.20~bpo70+1_i386 + bilibop-rules_0.4.20~bpo70+1_i386 + bilibop-udev_0.4.20~bpo70+1_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bip-dbg_0.8.9-1~bpo70+1_i386 + bird_1.3.7-1_i386 + bird-bgp_1.4.0-1~bpo70+1_i386 + bird-bgp-dbg_1.4.0-1~bpo70+1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bittwist_2.0-3~bpo70+1_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + bladerf-host_0.9.0.15.8ba2499-1~bpo70+1_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-amd-opencl_7.0.65+dfsg-3~bpo70+1_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-nvidia-cuda_7.0.65+dfsg-3~bpo70+1_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + bosixnet-webui_1.6-2~bpo70+1_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-libreoffice_1:4.1.4-2~bpo70+1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdgames-nonfree_2.17-5_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + bugsx_1.08-12_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumblebee_3.2.1-4~bpo70+1_i386 + bumblebee-dbg_3.2.1-4~bpo70+1_i386 + bumblebee-nvidia_3.2.1-4~bpo70+1_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + c3270_3.3.10ga4-2+b1_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-pdf-viewer_3.9.3-1~bpo70+1_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colobot_0.1.2-3~bpo70+2_i386 + colobot-dbg_0.1.2-3~bpo70+2_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + conserver-client_8.1.18-2.2_i386 + conserver-server_8.1.18-2.2_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + core-network-daemon_4.6-2~bpo70+1_i386 + core-network-gui_4.6-2~bpo70+1_i386 + corekeeper_1.5~bpo70+1_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + crafty_23.4-6_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvimp_0.4.7-2~bpo70+1_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cuneiform_1.1.0+dfsg-4_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + cython3_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + cython3-dbg_0.19.1+git34-gac3e3a2-1~bpo70+1_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + darcs-monitor_0.4.2-3~bpo70+1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + deltarpm_3.6+dfsg-1~bpo7+1_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dgen_1.23-12_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + diskscan_0.13-1~bpo70+1_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + doctest_0.9.1-1~bpo70+1_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + drdsl_1.2.0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamips_0.2.7-0.2.8RC2-5.1_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eagle_5.12.0-3_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk3_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-gtk3-dbg_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + eiskaltdcpp-qt-mini_2.2.9-3~bpo70+1_i386 + eiskaltdcpp-qt-mini-dbg_2.2.9-3~bpo70+1_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-dbg_1:16.b.3.1-dfsg-1~bpo70+1_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + ext4magic_0.3.1-1~bpo70+1_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + f2j_0.8.1-2_i386 + f3_2.2-1~bpo70+1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatrat-unpack_1.1.3-2_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-libs-gclient_1:4.2.8.3-2~bpo70+1_i386 + fcitx-libs-qt_1:4.2.8.3-2~bpo70+1_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-quickphrase-editor_1:4.2.8.3-2~bpo70+1_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-t9_0.3.4-1~bpo70+1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-zhengma-large_0.3.4-1~bpo70+1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fglrx-atieventsd_1:12-6+point-3_i386 + fglrx-control_1:12-6+point-3_i386 + fglrx-driver_1:12-6+point-3_i386 + fglrx-glx_1:12-6+point-3_i386 + fglrx-legacy-atieventsd_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-control_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-driver_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-modules-dkms_8.97.100.7-3~bpo70+1_i386 + fglrx-legacy-source_8.97.100.7-3~bpo70+1_i386 + fglrx-modules-dkms_1:12-6+point-3_i386 + fglrx-source_1:12-6+point-3_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-dbg_1:5.14-2~bpo70+1_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + flydraw_1:4.07a~dfsg1-2~bpo1-1_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecad_0.13.2800-dfsg-1~bpo70+1_i386 + freecad-dev_0.13.2800-dfsg-1~bpo70+1_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fs-uae_2.2.3+dfsg-4~bpo70+1_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsl-4.1_4.1.9-7_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-haskell_2.9.4-1~bpo70+1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + ganglia-nagios-bridge_1.0.1-1~bpo70+1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geoip-dbg_1.5.0-3~bpo70+1_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-plugins-base-1.0_1.0.8-1~bpo70+1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gstreamer-1.0_1.0.8-1~bpo70+1_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-cpufreq_0.6.4-4~bpo70+1_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + glx-alternative-fglrx_0.4.1~bpo70+1_i386 + glx-alternative-mesa_0.4.1~bpo70+1_i386 + glx-alternative-nvidia_0.4.1~bpo70+1_i386 + glx-diversions_0.4.1~bpo70+1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmsh_2.7.0.dfsg-1~bpo70+1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + gr-fcdproplus_0.0.1.1.2c80be-3~bpo70+1_i386 + gr-iqbal_0.37.1.5.d4fd4d-1~bpo70+1_i386 + gr-osmosdr_0.1.0.55.80c4af-2~bpo70~1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gstreamer1.0-alsa_1.0.8-1~bpo70+1_i386 + gstreamer1.0-libav_1.0.8-1~bpo70+1_i386 + gstreamer1.0-libav-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-bad_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-bad-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base-apps_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-base-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-good_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-good-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-ugly_1.0.8-1~bpo70+1_i386 + gstreamer1.0-plugins-ugly-dbg_1.0.8-1~bpo70+1_i386 + gstreamer1.0-pulseaudio_1.0.8-1~bpo70+1_i386 + gstreamer1.0-tools_1.0.8-1~bpo70+1_i386 + gstreamer1.0-x_1.0.8-1~bpo70+1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hackrf_2013.07.1.16.d5cebd-2~bpo70+1_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + haproxy_1.4.24-2~bpo70+1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htpdate_1.1.0-1~bpo70+1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httpry_0.1.7-3~bpo70+1_i386 + httpry-dbg_0.1.7-3~bpo70+1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike_2.2.1+dfsg-2~bpo70+1_i386 + ike-qtgui_2.2.1+dfsg-2~bpo70+1_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imview_1.1.9c-12~bpo70+1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel-microcode_1.20130906.1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + iozone3_397-2_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptraf-ng_1.1.3.1-2~bpo70+1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irpas_0.10-4.1_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-otr_1.0.0-1~bpo70+1_i386 + irssi-plugin-otr-dbg_1.0.0-1~bpo70+1_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-management-console_1:2.0.1-3~bpo7+1_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iucode-tool_1.0-1~bpo70+1_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jmtpfs_0.5-2~bpo70+1_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-gtk-style-preview_3:2.2.1-1~bpo70+1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kismet_2013.03.R1b-2~bpo70+1_i386 + kismet-plugins_2013.03.R1b-2~bpo70+1_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knot_1.4.3-2~bpo70+1_i386 + knot-dbg_1.4.3-2~bpo70+1_i386 + knot-dnsutils_1.4.3-2~bpo70+1_i386 + knot-host_1.4.3-2~bpo70+1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lgrind_3.67-3_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fastcgi_2.4.7~0910052141-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqebics0_5.3.5beta-2~bpo70+1_i386 + libaqhbci20_5.0.24-3_i386 + libaqhbci22_5.3.5beta-2~bpo70+1_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf-dev_0.18.3-1~bpo7+1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec-extra-54_6:9.10-1~bpo70+1_i386 + libavcodec53_6:0.8.9-1_i386 + libavcodec54_6:9.10-1~bpo70+1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavfilter3_6:9.10-1~bpo70+1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavformat54_6:9.10-1~bpo70+1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavresample-dev_6:9.10-1~bpo70+1_i386 + libavresample1_6:9.10-1~bpo70+1_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libavutil52_6:9.10-1~bpo70+1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbfio-dbg_20130507-1~bpo70+1_i386 + libbfio-dev_20130507-1~bpo70+1_i386 + libbfio1_20130507-1~bpo70+1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libbladerf-dev_0.9.0.15.8ba2499-1~bpo70+1_i386 + libbladerf0_0.9.0.15.8ba2499-1~bpo70+1_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libboinc-app7_7.0.65+dfsg-3~bpo70+1_i386 + libboinc7_7.0.65+dfsg-3~bpo70+1_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamlpdf-ocaml-dev_0.5-1+b2_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcg_3.1.0013-1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcggl_3.1.0013-1_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclamunrar6_0.96.4-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcoin80_3.1.4~abc9f50-3~bpo70+1_i386 + libcoin80-dev_3.1.4~abc9f50-3~bpo70+1_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore++-dev_1.7-12_i386 + libcore++1c2_1.7-12_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libcsvimp-dev_0.4.7-2~bpo70+1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcublas4_4.2.9-2_i386 + libcublas5.0_5.0.35-8~bpo70+1_i386 + libcuda1_304.88-1+deb7u1_i386 + libcuda1-i386_319.82-1~bpo70+1_i386 + libcudart4_4.2.9-2_i386 + libcudart5.0_5.0.35-8~bpo70+1_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcufft4_4.2.9-2_i386 + libcufft5.0_5.0.35-8~bpo70+1_i386 + libcuinj32-5.0_5.0.35-8~bpo70+1_i386 + libcuinj4_4.2.9-2_i386 + libcuneiform-dev_1.1.0+dfsg-4_i386 + libcuneiform0_1.1.0+dfsg-4_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcupti-dev_4.2.9-2_i386 + libcupti4_4.2.9-2_i386 + libcupti5.0_5.0.35-8~bpo70+1_i386 + libcurand4_4.2.9-2_i386 + libcurand5.0_5.0.35-8~bpo70+1_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcusparse4_4.2.9-2_i386 + libcusparse5.0_5.0.35-8~bpo70+1_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwd_1.0.4-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp-dev_2.2.9-3~bpo70+1_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembperl-perl_2.5.0~rc3-1~bpo70+1_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfglrx_1:12-6+point-3_i386 + libfglrx-amdxvba1_1:12-6+point-3_i386 + libfglrx-legacy_8.97.100.7-3~bpo70+1_i386 + libfglrx-legacy-amdxvba1_8.97.100.7-3~bpo70+1_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko-perl_2.5.1-1~bpo70+1_i386 + libfko-python_2.5.1-1~bpo70+1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libfko2_2.5.1-1~bpo70+1_i386 + libfko2-dbg_2.5.1-1~bpo70+1_i386 + libfko2-dev_2.5.1-1~bpo70+1_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dbg_1.1.2.2-1~bpo70+1_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk-dbg_1.1.2.2-1~bpo70+1_i386 + libfm-gtk-dev_1.1.2.2-1~bpo70+1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm-gtk3_1.1.2.2-1~bpo70+1_i386 + libfm-tools_1.1.2.2-1~bpo70+1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfm3_1.1.2.2-1~bpo70+1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-client-dev_1.1.6-7~bpo70+1_i386 + libfreeradius-client2_1.1.6-7~bpo70+1_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo-dev_0.18.3-1~bpo7+1_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-async-dev_2.0.1.3-1~bpo70+1_i386 + libghc-async-prof_2.0.1.3-1~bpo70+1_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-doctest-dev_0.9.1-1~bpo70+1_i386 + libghc-doctest-prof_0.9.1-1~bpo70+1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-generic-deriving-dev_1.4.0-2~bpo70+1_i386 + libghc-generic-deriving-prof_1.4.0-2~bpo70+1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-info-dev_0.2.0.1-2~bpo70+1_i386 + libghc-network-info-prof_0.2.0.1-2~bpo70+1_i386 + libghc-network-multicast-dev_0.0.10-1~bpo70+1_i386 + libghc-network-multicast-prof_0.0.10-1~bpo70+1_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-safesemaphore-dev_0.9.0-1~bpo70+1_i386 + libghc-safesemaphore-prof_0.9.0-1~bpo70+1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-hamlet-dev_0.3.0.1-1~bpo70+1_i386 + libghc-xml-hamlet-prof_0.3.0.1-1~bpo70+1_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-fglrx-glx_1:12-6+point-3_i386 + libgl1-fglrx-glx-i386_1:13.12-4~bpo70+1_i386 + libgl1-fglrx-legacy-glx_8.97.100.7-3~bpo70+1_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl1-nvidia-alternatives_304.88-1+deb7u1_i386 + libgl1-nvidia-glx_304.88-1+deb7u1_i386 + libgl1-nvidia-glx-i386_319.82-1~bpo70+1_i386 + libgl1-nvidia-legacy-173xx-glx_173.14.35-4_i386 + libgl1-nvidia-legacy-173xx-glx-i386_173.14.39-1~bpo70+1_i386 + libgl1-nvidia-legacy-304xx-glx_304.117-1~bpo70+1_i386 + libgl1-nvidia-legacy-304xx-glx-i386_304.117-1~bpo70+1_i386 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_i386 + libgl1-nvidia-legacy-96xx-glx_96.43.23-3_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libglx-nvidia-alternatives_304.88-1+deb7u1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmsh-dev_2.7.0.dfsg-1~bpo70+1_i386 + libgmsh2_2.7.0.dfsg-1~bpo70+1_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-analog3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-atsc3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-blocks3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-channels3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fcdproplus0_0.0.1.1.2c80be-3~bpo70+1_i386 + libgnuradio-fec3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-fft3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-filter3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-iqbalance0_0.37.1.5.d4fd4d-1~bpo70+1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-osmosdr0.0.0_0.1.0.55.80c4af-2~bpo70~1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-pmt3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-runtime3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-wavelet3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnuradio-wxgui3.7.2.1_3.7.2.1-5~bpo70+1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls-xssl0_3.2.10-2~bpo70+3_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutls28_3.2.10-2~bpo70+3_i386 + libgnutls28-dbg_3.2.10-2~bpo70+3_i386 + libgnutls28-dev_3.2.10-2~bpo70+3_i386 + libgnutlsxx27_2.12.20-7_i386 + libgnutlsxx28_3.2.10-2~bpo70+3_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpcl-dev_2.32-1_i386 + libgpcl0_2.32-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-bad1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-bad1.0-dev_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer-plugins-base1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer-plugins-base1.0-dev_1.0.8-1~bpo70+1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstreamer1.0-0_1.0.8-1~bpo70+1_i386 + libgstreamer1.0-0-dbg_1.0.8-1~bpo70+1_i386 + libgstreamer1.0-dev_1.0.8-1~bpo70+1_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-cpp0_4.10.0beta-1~bpo70+1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgyoto1_0.1.0-2~bpo70+1_i386 + libgyoto1-dev_0.1.0-2~bpo70+1_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhackrf-dev_2013.07.1.16.d5cebd-2~bpo70+1_i386 + libhackrf0_2013.07.1.16.d5cebd-2~bpo70+1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhavege-dev_1.7b-2~bpo70+1_i386 + libhavege1_1.7b-2~bpo70+1_i386 + libhavege1-dbg_1.7b-2~bpo70+1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitalccore_1:2.0.1-3~bpo7+1_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gmsh2_2.7.0.dfsg-1~bpo70+1_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-c-dev_0.11-3~bpo7+1_i386 + libjson-c2_0.11-3~bpo7+1_i386 + libjson-c2-dbg_0.11-3~bpo7+1_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + liblldpctl-dev_0.7.7-1~bpo70+1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-perl_0.71-3+b1_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmotif-dev_2.3.3-8_i386 + libmotif4_2.3.3-8_i386 + libmotif4-dbg_2.3.3-8_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmsv1_1.0-1~bpo70+1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnauty-dev_2.4r2-1_i386 + libnauty1d_2.4r2-1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpp4_4.2.9-2_i386 + libnpp5.0_5.0.35-8~bpo70+1_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntdb-dev_1.0-2~bpo70+1_i386 + libntdb1_1.0-2~bpo70+1_i386 + libntdb1-dbg_1.0-2~bpo70+1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvcuvid1_304.88-1+deb7u1_i386 + libnvidia-compiler_304.88-1+deb7u1_i386 + libnvidia-encode1_319.82-1~bpo70+1_i386 + libnvidia-ifr1_319.82-1~bpo70+1_i386 + libnvidia-ml1_304.88-1+deb7u1_i386 + libnvtoolsext5.0_5.0.35-8~bpo70+1_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrender29_3.5.2-6~bpo70+1_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobt2_3.5.2-6~bpo70+1_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + libocsync-dev_0.91.4-1~bpo70+1_i386 + libocsync0_0.91.4-1~bpo70+1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenrpt-dev_3.3.4-6~bpo70+1_i386 + libopenrpt1_3.3.4-6~bpo70+1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmosdr-dev_0.1.7.cd37e9-2~bpo70+1_i386 + libosmosdr0_0.1.7.cd37e9-2~bpo70+1_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libotr5_4.0.0-2.2~bpo70+1_i386 + libotr5-bin_4.0.0-2.2~bpo70+1_i386 + libotr5-dev_4.0.0-2.2~bpo70+1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libowncloudsync0_1.5.0+dfsg-4~bpo70+1_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libp11-kit0-dbg_0.20.2-1~bpo70+1_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparmetis-dev_3.1.1-4_i386 + libparmetis3.1_3.1.1-4_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpj2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjlib-util2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-audiodev2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-codec2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia-videodev2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjmedia2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjnath2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjproject-dev_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip-simple2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip-ua2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsip2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpjsua2_2.1.0.0.ast20130823-1~bpo70+1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libproc-wait3-perl_0.4-1~bpo70+1_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpulsedsp_4.0-6~bpo7+1_i386 + libpulsedsp-dbg_4.0-6~bpo7+1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtkeychain0_0.1.0-2~bpo70+1_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxmpp0-dbg_0.7.6-1~bpo70+1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librgxg-dev_0.1-1~bpo70+1_i386 + librgxg0_0.1-1~bpo70+1_i386 + librgxg0-dbg_0.1-1~bpo70+1_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtlsdr-dev_0.5.2.7.3ab6-1~bpo70+1_i386 + librtlsdr0_0.5.2.7.3ab6-1~bpo70+1_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsaml8_2.5.3-2~bpo70+1_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbc-dev_1.1-2~bpo7+1_i386 + libsbc1_1.1-2~bpo7+1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdl2-2.0-0_2.0.0+dfsg1-2~bpo70+1_i386 + libsdl2-dbg_2.0.0+dfsg1-2~bpo70+1_i386 + libsdl2-dev_2.0.0+dfsg1-2~bpo70+1_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsipxtapi_3.3.0~test12-2~bpo70+1_i386 + libsipxtapi-dev_3.3.0~test12-2~bpo70+1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmbsharemodes-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmbsharemodes0_2:4.1.5+dfsg-1~bpo70+1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlcipher-dev_2.2.1-2~bpo70+1_i386 + libsqlcipher0_2.2.1-2~bpo70+1_i386 + libsqlcipher0-dbg_2.2.1-2~bpo70+1_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-compare-constanttime-perl_0.300-1~bpo70+1_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtasn1-6_3.4-2~bpo70+1_i386 + libtasn1-6-dbg_3.4-2~bpo70+1_i386 + libtasn1-6-dev_3.4-2~bpo70+1_i386 + libtasn1-bin_3.4-2~bpo70+1_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtcplay_1.1-1~bpo70+1_i386 + libtcplay-dev_1.1-1~bpo70+1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtet1.4_1.4.3-1_i386 + libtet1.4-dev_1.4.3-1_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtriangle-1.6_1.6-2_i386 + libtriangle-dev_1.6-2_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libttspico-dev_1.0+git20110131-2_i386 + libttspico-utils_1.0+git20110131-2_i386 + libttspico0_1.0+git20110131-2_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libu1db-dev_0.1.4-2~bpo70+1_i386 + libu1db1_0.1.4-2~bpo70+1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dbg_2:1.0.17-1~bpo70+1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbredirparser1_0.6-2~bpo70+1_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.14-dbg_3.14.5.8-4~bpo7+1_i386 + libv8-3.14-dev_3.14.5.8-4~bpo7+1_i386 + libv8-3.14.5_3.14.5.8-4~bpo7+1_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt-sanlock_1.2.1-1~bpo70+1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvlccore7_2.1.2-2~bpo70+2_i386 + libvmtk-dev_1.0.1-1_i386 + libvmtk1.0_1.0.1-1_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwireshark3_1.10.5-1~bpo70+1_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwiretap3_1.10.5-1~bpo70+1_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwsutil3_1.10.5-1~bpo70+1_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-cursor-dev_0.1.1-2~bpo70+1_i386 + libxcb-cursor0_0.1.1-2~bpo70+1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-security-c17_1.7.2-2~bpo70+1_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmltooling6_1.5.3-2~bpo70+1_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxnvctrl-dev_319.72-1~bpo70+1_i386 + libxnvctrl0_319.72-1~bpo70+1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxtuplecommon-dev_4.1.0-3~bpo70+1_i386 + libxtuplecommon1_4.1.0-3~bpo70+1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvbaw-dev_1:12-6+point-3_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxvmcnvidia1_304.88-1+deb7u1_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyade_1.05.0-2~bpo70+1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyara-dev_2.0.0-2~bpo70+1_i386 + libyara2_2.0.0-2~bpo70+1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzmq3_3.2.3+dfsg-2~bpo70+1_i386 + libzmq3-dbg_3.2.3+dfsg-2~bpo70+1_i386 + libzmq3-dev_3.2.3+dfsg-2~bpo70+1_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-compiler-gcc-4.6-x86_3.12.9-1~bpo70+1_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.12-0.bpo.1-486_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-686-pae_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-all_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-all-i386_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-common_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-common-rt_3.12.9-1~bpo70+1_i386 + linux-headers-3.12-0.bpo.1-rt-686-pae_3.12.9-1~bpo70+1_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.12-0.bpo.1-486_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-686-pae_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-686-pae-dbg_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-amd64_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-rt-686-pae_3.12.9-1~bpo70+1_i386 + linux-image-3.12-0.bpo.1-rt-686-pae-dbg_3.12.9-1~bpo70+1_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-686-pae-dbg_3.12+55~bpo70+1_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-image-rt-686-pae-dbg_3.12+55~bpo70+1_i386 + linux-kbuild-3.12_3.12.6-1~bpo70+1_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.12_3.12.6-1~bpo70+1_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-augeas_0.1.1-3~bpo70+1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + mac-robber_1.02-1~bpo70+1_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madfuload_1.2-4_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + mame_0.146-5_i386 + mame-tools_0.146-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + martian-modem_20080625-2_i386 + martian-modem-source_20080625-2_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbrola_3.01h-6_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + mess_0.146-4_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_i386 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motif-clients_2.3.3-8_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mssstest_3.0-3_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-dropbox_1.4.0-3_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + nauty_2.4r2-1_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmate_0.2.0-3~bpo70+1_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperf_2.4.4-6.1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodejs_0.10.21~dfsg1-1~bpo7+1_i386 + nodejs-dbg_0.10.21~dfsg1-1~bpo7+1_i386 + nodejs-dev_0.10.21~dfsg1-1~bpo7+1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notion_3+2012042300-1_i386 + notmuch_0.13.2-1_i386 + notmuch-dbg_0.16-1~bpo70+1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + ntdb-tools_1.0-2~bpo70+1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvidia-alternative_304.88-1+deb7u1_i386 + nvidia-alternative-legacy-173xx_173.14.35-4_i386 + nvidia-alternative-legacy-71xx_71.86.15-3_i386 + nvidia-alternative-legacy-96xx_96.43.23-3_i386 + nvidia-cg-dev_3.1.0013-1_i386 + nvidia-cg-toolkit_3.1.0013-1_i386 + nvidia-cuda-dev_4.2.9-2_i386 + nvidia-cuda-gdb_4.2.9-2_i386 + nvidia-cuda-mps_319.82-1~bpo70+1_i386 + nvidia-cuda-toolkit_4.2.9-2_i386 + nvidia-detect_304.88-1+deb7u1_i386 + nvidia-driver_319.82-1~bpo70+1_i386 + nvidia-glx_304.88-1+deb7u1_i386 + nvidia-glx-legacy_71.86.15-3_i386 + nvidia-glx-legacy-173xx_173.14.35-4_i386 + nvidia-glx-legacy-71xx_71.86.15-3_i386 + nvidia-glx-legacy-71xx-dev_71.86.15-3_i386 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_i386 + nvidia-glx-legacy-96xx_96.43.23-3_i386 + nvidia-glx-legacy-dev_71.86.15-3_i386 + nvidia-installer-cleanup_20131102+1~bpo70+1_i386 + nvidia-kernel-2.6-486_304.88+1_i386 + nvidia-kernel-2.6-686-pae_304.88+1_i386 + nvidia-kernel-2.6-amd64_304.88+1_i386 + nvidia-kernel-3.12-0.bpo.1-486_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.12-0.bpo.1-686-pae_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.12-0.bpo.1-amd64_319.82+1~bpo70+1+1~bpo70+1+3.12.6-2~bpo70+1_i386 + nvidia-kernel-3.2.0-4-486_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-686-pae_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-486_304.88+1_i386 + nvidia-kernel-686-pae_304.88+1_i386 + nvidia-kernel-amd64_304.88+1_i386 + nvidia-kernel-common_20131102+1~bpo70+1_i386 + nvidia-kernel-dkms_304.88-1+deb7u1_i386 + nvidia-kernel-legacy-173xx-dkms_173.14.35-4_i386 + nvidia-kernel-legacy-173xx-source_173.14.35-4_i386 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_i386 + nvidia-kernel-legacy-71xx-source_71.86.15-3_i386 + nvidia-kernel-legacy-96xx-dkms_96.43.23-3_i386 + nvidia-kernel-legacy-96xx-source_96.43.23-3_i386 + nvidia-kernel-legacy-source_71.86.15-3_i386 + nvidia-kernel-source_304.88-1+deb7u1_i386 + nvidia-legacy-173xx-driver_173.14.39-1~bpo70+1_i386 + nvidia-legacy-173xx-kernel-dkms_173.14.39-1~bpo70+1_i386 + nvidia-legacy-173xx-kernel-source_173.14.39-1~bpo70+1_i386 + nvidia-legacy-304xx-alternative_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-driver_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-kernel-dkms_304.117-1~bpo70+1_i386 + nvidia-legacy-304xx-kernel-source_304.117-1~bpo70+1_i386 + nvidia-legacy-96xx-driver_96.43.23-7~bpo70+1_i386 + nvidia-legacy-96xx-kernel-dkms_96.43.23-7~bpo70+1_i386 + nvidia-legacy-96xx-kernel-source_96.43.23-7~bpo70+1_i386 + nvidia-libopencl1_304.88-1+deb7u1_i386 + nvidia-nsight_5.0.35-8~bpo70+1_i386 + nvidia-opencl-common_304.88-1+deb7u1_i386 + nvidia-opencl-dev_4.2.9-2_i386 + nvidia-opencl-icd_304.88-1+deb7u1_i386 + nvidia-profiler_5.0.35-8~bpo70+1_i386 + nvidia-settings_319.72-1~bpo70+1_i386 + nvidia-settings-legacy-173xx_173.14.39-1~bpo70+1_i386 + nvidia-settings-legacy-304xx_304.116-1~bpo70+1_i386 + nvidia-settings-legacy-96xx_96.43.20-2~bpo70+1_i386 + nvidia-smi_304.88-1+deb7u1_i386 + nvidia-support_20131102+1~bpo70+1_i386 + nvidia-vdpau-driver_304.88-1+deb7u1_i386 + nvidia-visual-profiler_4.2.9-2_i386 + nvidia-xconfig_319.72-1~bpo70+1_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + openrpt_3.3.4-6~bpo70+1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmo-sdr_0.1.7.cd37e9-2~bpo70+1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owncloud-client_1.5.0+dfsg-4~bpo70+1_i386 + owncloud-client-cmd_1.5.0+dfsg-4~bpo70+1_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p7zip-rar_9.20.1~ds.1-3_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parmetis-test_3.1.1-4_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcapfix_1.0.2-2~bpo70+1_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + pepper_0.3.2-2~bpo70+1_i386 + pepperflashplugin-nonfree_1.2~bpo70+1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgplot5_5.2.2-19_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mongo_1.4.5-1~bpo70+1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phylip_1:3.69-1_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + postbooks_4.1.0-3~bpo70+1_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pptview_8.0-7_i386 + pqiv_0.12-1_i386 + pr3287_3.3.10ga4-2+b1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + primus_0~20130904-1~bpo70+1_i386 + primus-libs_0~20130904-1~bpo70+1_i386 + primus-libs-dbg_0~20130904-1~bpo70+1_i386 + primus-libs-ia32_0~20130904-1~bpo70+1_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-deltarpm_3.6+dfsg-1~bpo7+1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gmsh_2.7.0.dfsg-1~bpo70+1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-m2ext_0.1-1~bpo70+1_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-msgpack_0.3.0-1~bpo70+2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-ntdb_1.0-2~bpo70+1_i386 + python-ntdb-dbg_1.0-2~bpo70+1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vmtk_1.0.1-1_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yade_1.05.0-2~bpo70+1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yara_2.0.0-2~bpo70+1_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-deltarpm_3.6+dfsg-1~bpo7+1_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-hivex_1.3.9-1~bpo70+1_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-msgpack_0.3.0-1~bpo70+2_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-yara_2.0.0-2~bpo70+1_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-guest-agent_1.7.0+dfsg-2~bpo70+2_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-system-arm_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-common_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-mips_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-misc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-ppc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-sparc_1.7.0+dfsg-2~bpo70+2_i386 + qemu-system-x86_1.7.0+dfsg-2~bpo70+2_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtkeychain-dev_0.1.0-2~bpo70+1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-maptools_1:0.7-38-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radeontop_0.7-1~bpo70+1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rar_2:4.0.b3-1_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + rebar_2.0.0-5~bpo70+1_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redeclipse_1.4-5~bpo70+1_i386 + redeclipse-dbg_1.4-5~bpo70+1_i386 + redeclipse-server_1.4-5~bpo70+1_i386 + redeclipse-server-dbg_1.4-5~bpo70+1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redis-tools_2:2.8.6-1~bpo70+1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rgxg_0.1-1~bpo70+1_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_5.8.11-3_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mongodb_7.4.4-1~bpo70+1_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtl-sdr_0.5.2.7.3ab6-1~bpo70+1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-notmuch_0.16-1~bpo70+1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-oj_2.0.10-1~bpo70+1_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pcaprub_0.11.3-1~bpo70+1_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rjb_1.4.8-1~bpo70+1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3270_3.3.10ga4-2+b1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dev_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-libs_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-testsuite_2:4.1.5+dfsg-1~bpo70+1_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba-vfs-modules_2:4.1.5+dfsg-1~bpo70+1_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbc-tools_1.1-2~bpo7+1_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdlmame_0.146-5_i386 + sdlmame-tools_0.146-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + seahorse-nautilus_3.8.0-1~bpo70+1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seaview_1:4.3.3-3_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq-gen_1.3.3-1_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgb_1:20090810-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_i386 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacefm_0.9.3-1~bpo70+1_i386 + spacefm-gtk3_0.9.3-1~bpo70+1_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + sparse_0.4.3+20110419-1_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellcast_1.0-21_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlcipher_2.2.1-2~bpo70+1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-agent-filter_0.3-1~bpo70+1_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ike_5.1.1-2~bpo70+1_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + supertuxkart-dbg_0.8.1-2~bpo70+1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcplay_1.1-1~bpo70+1_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + teamspeak-client_2.0.32-3.1_i386 + teamspeak-server_2.0.24.1+debian-1.1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetgen_1.4.3-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + titantools_4.0.11+notdfsg1-5_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tome_2.3.5-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + triangle-bin_1.6-2_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + trn_3.6-23_i386 + trn4_4.0-test77-6_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u1db-tools_0.1.4-2~bpo70+1_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udevil_0.4.3-1~bpo70+1_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unace-nonfree_2.5-7_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar_1:4.1.4-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmdebootstrap_0.2-1~bpo70+1_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + vokoscreen_1.9.6-1~bpo70+1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + wap-wml-tools_0.0.4-6_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + wims_1:4.07a~dfsg1-2~bpo1-1_i386 + wims-java-applets_1:4.07a~dfsg1-2~bpo1-1_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goclient-dbg_4.0.1.1-1~bpo7+1_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x3270_3.3.10ga4-2+b1_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfractint_20.4.10-2_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmame-svga_0.146-5_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml-security-c-utils_1.7.2-2~bpo70+1_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-nvidia_304.88-1+deb7u1_i386 + xserver-xorg-video-nvidia-legacy-173xx_173.14.35-4_i386 + xserver-xorg-video-nvidia-legacy-304xx_304.117-1~bpo70+1_i386 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_i386 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-3_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yara_2.0.0-2~bpo70+1_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gy_0.0.5-1~bpo70+1_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-ygsl_1.1.1-1~bpo70+1_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zabbix-agent_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-mysql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-pgsql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-proxy-sqlite3_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-server-mysql_1:2.0.9+dfsg-1~bpo70+2_i386 + zabbix-server-pgsql_1:2.0.9+dfsg-1~bpo70+2_i386 + zangband_1:2.7.5pre1-8_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot8Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot8Test_gold new file mode 100644 index 00000000..a33ac427 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/MergeSnapshot8Test_gold @@ -0,0 +1,1989 @@ + Arch | Package | Version in A | Version in B +! all | 0ad-data | 0~r11863-1 | 0.0.14-1~bpo70+1 +! all | amarok-common | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! all | amarok-doc | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! all | asterisk-config | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | asterisk-dev | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | asterisk-doc | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! all | autopoint | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | bluefish-data | 2.2.3-4 | 2.2.5-3~bpo70+1 +! all | boinc | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! all | calibre | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +! all | check-mk-doc | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! all | clamav-unofficial-sigs | 3.7.1-3 | 3.7.2-1~bpo70+1 +! all | claws-mail-doc | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-extra-plugins | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-i18n | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-plugins | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | claws-mail-tools | 3.8.1-2 | 3.9.3-1~bpo70+1 +! all | clawsker | 0.7.8-1 | 0.7.10-1~bpo70+1 +! all | cmake-data | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! all | cmake-doc | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! all | codeblocks-common | 10.05-2.1 | 13.12-1~bpo70+1 +! all | config-package-dev | 4.13 | 5.1.1~bpo70+1 +! all | createrepo | 0.4.11-1 | 0.9.9-1~bpo7+1 +! all | cucumber | 1.0.2-2 | 1.3.8-1~bpo70+1 +! all | debootstrap | 1.0.48+deb7u1 | 1.0.55~bpo70+1 +! all | drupal7 | 7.14-2+deb7u2 | 7.26-1~bpo70+1 +! all | eiskaltdcpp | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-common | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-emoticons | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-gtk-data | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-qt-data | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-scripts | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | eiskaltdcpp-sounds | 2.2.6-4 | 2.2.9-3~bpo70+1 +! all | elmer-doc | 2011.09.06-1 | 2014.02.06-1~bpo70+1 +! all | erlang | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-doc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-examples | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-ic-java | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-jinterface | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-manpages | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-mode | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-nox | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-src | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | erlang-x11 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! all | exaile | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-contextinfo | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-ipod | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | exaile-plugin-moodbar | 0.3.2.2-3 | 3.3.2-1~bpo70+1 +! all | facter | 1.6.10-1 | 1.7.0-1~bpo70+1 +! all | fcitx | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-config-common | 0.4.4-1 | 0.4.7-1~bpo70+1 +! all | fcitx-data | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-frontend-all | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fcitx-table-all | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! all | fdpowermon | 1.5 | 1.11~bpo70+1 +! all | fdpowermon-icons | 1.5 | 1.11~bpo70+1 +! all | finch-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | firmware-atheros | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-bnx2 | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-bnx2x | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-brcm80211 | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-intelwimax | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-ipw2x00 | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-ivtv | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-iwlwifi | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-libertas | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-linux | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-linux-nonfree | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-myricom | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-netxen | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-qlogic | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-ralink | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | firmware-realtek | 0.36+wheezy.1 | 0.40~bpo70+1 +! all | fonts-opensymbol | 2:102.2+LibO3.5.4+dfsg2-0+deb7u2 | 2:102.3+LibO4.1.4-2~bpo70+1 +! all | freeciv-data | 2.3.2-1 | 2.4.2-1~bpo70+1 +! all | freeciv-sound-standard | 2.3.2-1 | 2.4.2-1~bpo70+1 +! all | ganeti-instance-debootstrap | 0.11-1 | 0.14-1~bpo70+1 +! all | ganeti2 | 2.5.2-1 | 2.9.4-1~bpo70+1 +! all | geoip-database | 20130213-1 | 20131007-1~bpo70+1 +! all | gettext-doc | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | gettext-el | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! all | git-all | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-arch | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-buildpackage | 0.6.0~git20120601 | 0.6.1~bpo70+1 +! all | git-core | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-cvs | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-daemon-run | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-daemon-sysvinit | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-doc | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-el | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-email | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-gui | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-man | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | git-svn | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | gitk | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | gitweb | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! all | gnash-common-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnash-doc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnash-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | gnuplot | 4.6.0-8 | 4.6.4-1~bpo70+1 +! all | gnuplot-doc | 4.6.0-8 | 4.6.4-1~bpo70+1 +! all | gnuradio-doc | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! all | gyoto-doc | 0.0.3-5 | 0.1.0-2~bpo70+1 +! all | gyp | 0.1~svn1395-1 | 0.1~svn1729-3~bpo7+1 +! all | hapolicy | 1.32-2 | 1.35-1~bpo70+1 +! all | hedgewars-data | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +! all | hgview | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hgview-common | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hgview-curses | 1.5.0-4 | 1.7.1-2~bpo70+1 +! all | hugin-data | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! all | ibus-doc | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! all | ibus-googlepinyin | 0.1.1+hg20111212-1 | 0.1.2-1~bpo70+1 +! all | ibus-table | 1.3.9.20110827-2 | 1.5.0.is.1.4.99.1-1~bpo70+1 +! all | icinga-common | 1.7.1-6 | 1.9.3-2~bpo70+1 +! all | icinga-doc | 1.7.1-6 | 1.9.3-2~bpo70+1 +! all | icinga-web | 1.7.1+dfsg2-6 | 1.9.2+dfsg1-1~bpo70+1 +! all | icinga-web-pnp | 1.7.1+dfsg2-6 | 1.9.2+dfsg1-1~bpo70+1 +! all | ikiwiki | 3.20120629 | 3.20130904.1~bpo70+1 +! all | initramfs-tools | 0.109.1 | 0.115~bpo70+1 +! all | joe-jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +! all | klash-opengl | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | libaqbanking-data | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! all | libaqbanking-doc | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! all | libcupti-doc | 4.2.9-2 | 5.0.35-8~bpo70+1 +! all | libeigen3-doc | 3.1.0-1 | 3.2.0-6~bpo70+1 +! all | libfm-data | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +! all | libghc-gnutls-doc | 0.1.2-1 | 0.1.4-3~bpo70+1 +! all | libghc-network-protocol-xmpp-doc | 0.4.3-1 | 0.4.4-2~bpo70+1 +! all | libgwenhywfar-data | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! all | libgwenhywfar-doc | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! all | libhtml-rewriteattributes-perl | 0.04-1 | 0.05-1~bpo70+1 +! all | libjs-jquery-ui | 1.8.ooops.21+dfsg-2 | 1.10.1+dfsg-1~bpo70+1 +! all | libjs-jquery-ui-docs | 1.8.ooops.21+dfsg-2 | 1.10.1+dfsg-1~bpo70+1 +! all | libjs-mathjax | 1.1-2 | 2.2-1~bpo70+1 +! all | libmojolicious-perl | 2.98+dfsg-2 | 3.97+dfsg-1~bpo70+1 +! all | libopus-doc | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! all | libpod-simple-perl | 3.22-1 | 3.26-1~bpo70+1 +! all | libpurple-bin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | libpurple-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | libqxmpp-doc | 0.4.92-1 | 0.7.6-1~bpo70+1 +! all | libreoffice-common | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-dev-doc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-emailmerge | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ca | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-cs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-da | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-de | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-dz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-el | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-en-gb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-en-us | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-es | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-et | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-eu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-fi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-fr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-gl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-hi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-hu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-it | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ja | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-km | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ko | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-nl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-om | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-pt-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-ru | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-sv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-zh-cn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-help-zh-tw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-java-common | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-af | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ar | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-as | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ast | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-be | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-bs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ca | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-cs | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-cy | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-da | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-de | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-dz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-el | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-en-gb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-en-za | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-eo | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-es | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-et | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-eu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fa | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-fr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ga | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-gl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-gu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-he | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-hu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-id | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-in | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-is | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-it | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ja | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ka | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-km | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ko | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ku | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-lt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-lv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ml | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-mr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nb | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ne | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-nso | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-oc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-om | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-or | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pa-in | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pt | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-pt-br | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ro | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ru | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-rw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-si | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sl | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ss | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-st | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-sv | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ta | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-te | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-th | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-tr | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ts | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ug | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-uk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-uz | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-ve | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-vi | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-xh | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-za | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zh-cn | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zh-tw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-l10n-zu | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-report-builder | 1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-bsh | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-js | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-script-provider-python | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-crystal | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-galaxy | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-hicontrast | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-oxygen | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-style-tango | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! all | libreoffice-wiki-publisher | 1.1.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.1.2+LibO4.1.4-2~bpo70+1 +! all | libsaml2-doc | 2.4.3-4 | 2.5.3-2~bpo70+1 +! all | libspice-protocol-dev | 0.10.1-1 | 0.12.6-1~bpo70+2 +! all | libsunflow-java | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | libsunflow-java-doc | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | libtag1-doc | 1.7.2-1 | 1.9.1-2~bpo70+1 +! all | libtest-tcp-perl | 1.15-1 | 2.00-1~bpo70+1 +! all | libvirt-doc | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! all | libwireshark-data | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! all | libxmltooling-doc | 1.4.2-5 | 1.5.3-2~bpo70+1 +! all | liferea-data | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! all | lintian | 2.5.10.4 | 2.5.21~bpo70+1 +! all | linux-doc | 3.2+46 | 3.12+55~bpo70+1 +! all | linux-source | 3.2+46 | 3.12+55~bpo70+1 +! all | linux-tools | 3.2+46 | 3.12+55~bpo70+1 +! all | mercurial-common | 2.2.2-3 | 2.8.2-1~bpo70+1 +! all | module-assistant | 0.11.4 | 0.11.6~bpo70+1 +! all | mozilla-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | munin | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-async | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-common | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-doc | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-node | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-core | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-extra | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | munin-plugins-java | 2.0.6-4+deb7u2 | 2.0.19-2~bpo70+1 +! all | nagios-plugins | 1.4.16-1 | 1.5-1~bpo70+1 +! all | nagios3-common | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! all | nagios3-doc | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! all | nginx | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-common | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-doc | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | nginx-naxsi-ui | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! all | notmuch-emacs | 0.13.2-1 | 0.16-1~bpo70+1 +! all | notmuch-mutt | 0.13.2-1 | 0.16-1~bpo70+1 +! all | notmuch-vim | 0.13.2-1 | 0.16-1~bpo70+1 +! all | nvidia-cuda-doc | 4.2.9-2 | 5.0.35-8~bpo70+1 +! all | open-axiom-databases | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-graphics-data | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-hypertex-data | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-source | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-test | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | open-axiom-tex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! all | openafs-doc | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openafs-modules-dkms | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openafs-modules-source | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! all | openbios-ppc | 1.0+svn1060-1 | 1.1+svn1229-1~bpo70+2 +! all | openbios-sparc | 1.0+svn1060-1 | 1.1+svn1229-1~bpo70+2 +! all | opencl-headers | 1.2-2012.04.18a-1 | 1.2-2013.06.28-2~bpo70+1 +! all | openoffice.org-dtd-officedocument1.0 | 2:1.0+LibO3.5.4+dfsg2-0+deb7u2 | 2:1.0+LibO4.1.4-2~bpo70+1 +! all | openrocket | 12.03-1 | 13.11.1~bpo60+1 +! all | opensaml2-schemas | 2.4.3-4 | 2.5.3-2~bpo70+1 +! all | org-mode | 7.8.11-1 | 8.0.7-2~bpo70+1 +! all | otrs | 3.1.7+dfsg1-8+deb7u3 | 3.2.11-1~bpo70+1 +! all | otrs2 | 3.1.7+dfsg1-8+deb7u3 | 3.2.11-1~bpo70+1 +! all | paraview-doc | 3.14.1-6 | 4.0.1-1~bpo70+1 +! all | pari-doc | 2.5.1-2 | 2.5.5-1~bpo70+1 +! all | pdksh | 40.9.20120630-7 | 49-2~bpo70+1 +! all | pidgin-data | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | pidgin-dev | 2.10.6-3 | 2.10.7-2~bpo70+1 +! all | piuparts | 0.45 | 0.56~bpo70+1 +! all | piuparts-common | 0.45 | 0.56~bpo70+1 +! all | piuparts-master | 0.45 | 0.56~bpo70+1 +! all | piuparts-slave | 0.45 | 0.56~bpo70+1 +! all | pkg-php-tools | 0.8 | 1.9~bpo70+1 +! all | plt-scheme | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | plt-scheme-doc | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | pokerth-data | 0.9.5-1 | 1.0.1-2~bpo70+1 +! all | postfwd | 1.32-2 | 1.35-1~bpo70+1 +! all | psi-plus-common | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | psi-plus-skins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | psi-plus-sounds | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! all | python-cssselect | 0.6.1-1 | 0.9.1-1~bpo70+1 +! all | python-debian | 0.1.21 | 0.1.21+nmu2~bpo70+1 +! all | python-django | 1.4.5-1+deb7u4 | 1.5.2-1~bpo70+1 +! all | python-django-doc | 1.4.5-1+deb7u4 | 1.5.2-1~bpo70+1 +! all | python-django-nose | 1.1-1 | 1.2-1~bpo70+1 +! all | python-ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! all | python-jsonschema | 0.2-1 | 2.0.0-1~bpo70+1 +! all | python-lxml-doc | 2.3.2-1 | 3.3.1-1~bpo70+1 +! all | python-notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +! all | python-pygments | 1.5+dfsg-1 | 1.6+dfsg-1~bpo70+1 +! all | python-pymtp | 0.0.4-4 | 0.0.6-1~bpo70+1 +! all | python-requests | 0.12.1-1 | 2.0.0-1~bpo70+1 +! all | python-twisted | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | python-twisted-core | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | python-urllib3 | 1.3-3 | 1.7.1-1~bpo70+1 +! all | python3-pygments | 1.5+dfsg-1 | 1.6+dfsg-1~bpo70+1 +! all | python3-requests | 0.12.1-1 | 2.0.0-1~bpo70+1 +! all | python3-urllib3 | 1.3-3 | 1.7.1-1~bpo70+1 +! all | qemu-keymaps | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! all | racket-common | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | racket-doc | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! all | redeclipse-data | 1.2-1 | 1.4-2~bpo70+1 +! all | redmine | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-mysql | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-pgsql | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | redmine-sqlite | 1.4.4+dfsg1-2+deb7u1 | 2.4.2-1~bpo70+1 +! all | request-tracker4 | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | roundcube | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-core | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-mysql | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-pgsql | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-plugins | 0.7.2-9+deb7u1 | 0.9.5-1~bpo70+1 +! all | roundcube-plugins-extra | 0.7-20120110 | 0.9.2-20130819~bpo70+1 +! all | rsyslog-doc | 5.8.11-3 | 7.4.4-1~bpo70+1 +! all | rt4-apache2 | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-clients | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-mysql | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-postgresql | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-db-sqlite | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | rt4-fcgi | 4.0.7-5+deb7u2 | 4.0.19-1~bpo70+1 +! all | ruby-gettext | 2.2.1-3 | 3.0.2-2~bpo70+1 +! all | ruby-haml | 3.1.6-1 | 4.0.3-3~bpo70+1 +! all | ruby-i18n | 0.6.0-3+deb7u1 | 0.6.9-1~bpo70+1 +! all | ruby-multi-json | 1.3.6-1 | 1.8.0-1~bpo70+1 +! all | ruby-passenger-doc | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! all | ruby-rack-protection | 1.2.0-1 | 1.5.0-2~bpo70+1 +! all | ruby-rspec | 2.10.0-2 | 2.14.1-1~bpo70+1 +! all | ruby-rspec-core | 2.10.1-2 | 2.14.5-1~bpo70+1 +! all | ruby-rspec-expectations | 2.10.0-2 | 2.14.2-1~bpo70+1 +! all | ruby-rspec-mocks | 2.10.1-2 | 2.14.3-1~bpo70+1 +! all | ruby-sinatra | 1.3.2-2 | 1.4.3-1~bpo70+1 +! all | ruby-test-unit | 2.5.0-2 | 2.5.5-1~bpo70+1 +! all | ruby-tilt | 1.3.3-2 | 1.4.1-1~bpo70+1 +! all | samba-common | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! all | samba-doc | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! all | seabios | 1.7.0-1 | 1.7.3-3~bpo70+1 +! all | sogo-common | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! all | ssh | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! all | ssh-krb5 | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! all | strongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! all | sumo-doc | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! all | sumo-tools | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! all | sunflow | 0.07.2.svn396+dfsg-9 | 0.07.2.svn396+dfsg-10~bpo70+1 +! all | supertuxkart-data | 0.7.3-2 | 0.8.1-2~bpo70+1 +! all | sweethome3d | 3.5+dfsg-1 | 4.3+dfsg-1~bpo70+1 +! all | swfdec-gnome | 1:0.8.11~git20120629-1+deb7u1 | 1:0.8.11~git20140121+dfsg-1~bpo70+1 +! all | swfdec-mozilla | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! all | trac | 0.12.5-3~deb7u1 | 1.0.1-2~bpo70+1 +! all | twisted-doc | 12.0.0-1 | 13.0.0-1~bpo70+1 +! all | twittering-mode | 2.0.0+git20120325-1 | 3.0.0-1~bpo70+1 +! all | unknown-horizons | 2012.1+dfsg1-1 | 2013.2+ds1-2~bpo70+1 +! all | vcsh | 1.0-1 | 1.20131214-1~bpo70+1 +! all | virtualbox-dkms | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-guest-additions-iso | 4.1.18-1 | 4.2.16-1~bpo70+1 +! all | virtualbox-guest-dkms | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-guest-source | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | virtualbox-source | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! all | vlc-data | 2.0.3-5 | 2.1.2-2~bpo70+2 +! all | weechat | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | weechat-dev | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | weechat-doc | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! all | wesnoth | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10 | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-aoi | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-data | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-did | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-dm | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-dw | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-ei | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-httt | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-l | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-low | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-music | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-nr | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-sof | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-sotbe | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-thot | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-tools | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-trow | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-tsg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-ttb | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-1.10-utbs | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wesnoth-music | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! all | wireshark-doc | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! all | xapian-doc | 1.2.12-2 | 1.2.16-2~bpo70+1 +! all | xbmc | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-common | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-dev | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-j2me | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-ps3 | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xbmc-eventclients-xbmc-send | 2:11.0~git20120510.82388d5-1 | 2:12.3+dfsg1-3~bpo70+2 +! all | xmltooling-schemas | 1.4.2-5 | 1.5.3-2~bpo70+1 +! all | xul-ext-noscript | 2.1.4-1 | 2.6.8.4-1~bpo70+1 +! all | yade-doc | 0.80.1-2 | 1.05.0-2~bpo70+1 +! all | yum | 3.2.25-2 | 3.4.3-2~bpo7+1 +! amd64 | 0ad | 0~r11863-2 | 0.0.14-3~bpo70+2 +! amd64 | 0ad-dbg | 0~r11863-2 | 0.0.14-3~bpo70+2 +! amd64 | amarok | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amarok-dbg | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amarok-utils | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! amd64 | amd-clinfo | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | amd-libopencl1 | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | amd-opencl-dev | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | amd-opencl-icd | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | amd64-microcode | 1.20120910-2 | 2.20120910-1~bpo70+1 +! amd64 | apt-cacher-ng | 0.7.11-1 | 0.7.25-1~bpo70+1 +! amd64 | aqbanking-tools | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | asterisk | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-dahdi | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-dbg | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mobile | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-modules | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mp3 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-mysql | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-ooh323 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail-imapstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | asterisk-voicemail-odbcstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! amd64 | bip | 0.8.8-2 | 0.8.9-1~bpo70+1 +! amd64 | bird | 1.3.7-1 | 1.4.0-1~bpo70+1 +! amd64 | bird-dbg | 1.3.7-1 | 1.4.0-1~bpo70+1 +! amd64 | bluefish | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | bluefish-dbg | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | bluefish-plugins | 2.2.3-4 | 2.2.5-3~bpo70+1 +! amd64 | blueman | 1.23-1 | 1.23-git201312311147-1~bpo70+1 +! amd64 | boinc-client | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | boinc-dbg | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | boinc-manager | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! amd64 | browser-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | bti | 032-1 | 034-1~bpo70+1 +! amd64 | bup | 0.25~git2011.11.04-5.1 | 0.25-1~bpo70+1 +! amd64 | calibre-bin | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +! amd64 | check-mk-agent | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-agent-logwatch | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-config-icinga | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-config-nagios3 | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-livestatus | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-multisite | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | check-mk-server | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! amd64 | claws-mail | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-acpi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-address-keeper | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-archiver-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-attach-remover | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-attach-warner | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-bogofilter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-bsfilter-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-clamd-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-dbg | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-fancy-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-feeds-reader | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-fetchinfo-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-gdata-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-mailmbox-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-multi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-newmail-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-perl-filter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-pgpinline | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-pgpmime | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-python-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-smime-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-spam-report | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-spamassassin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-tnef-parser | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | claws-mail-vcalendar-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | cmake | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-curses-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-dbg | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | cmake-qt-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! amd64 | codeblocks | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-contrib | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-contrib-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | codeblocks-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | cowbuilder | 0.70 | 0.73~bpo7+1 +! amd64 | cowdancer | 0.70 | 0.73~bpo7+1 +! amd64 | cython | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! amd64 | cython-dbg | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! amd64 | darktable | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! amd64 | darktable-dbg | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! amd64 | deets | 0.1.3-1 | 0.2-3~bpo70+1 +! amd64 | desktop-file-utils | 0.20-0.1 | 0.21-1~bpo70+1 +! amd64 | devilspie2 | 0.20-1 | 0.32-1~bpo70+1 +! amd64 | devscripts | 2.12.6+deb7u2 | 2.13.4~bpo70+1 +! amd64 | dovecot-antispam | 2.0+20120225-3 | 2.0+20130822-2~bpo70+1 +! amd64 | dovecot-core | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-dbg | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-dev | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-gssapi | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-imapd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-ldap | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-lmtpd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-managesieved | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-mysql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-pgsql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-pop3d | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-sieve | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-solr | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | dovecot-sqlite | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! amd64 | drbd8-utils | 2:8.3.13-2 | 2:8.4.4-1~bpo70+1 +! amd64 | eiskaltdcpp-daemon | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-daemon-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-gtk | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-gtk-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-qt | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | eiskaltdcpp-qt-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | erlang-appmon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-asn1 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-base | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-base-hipe | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-common-test | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-corba | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-crypto | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-debugger | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-dev | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-dialyzer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-diameter | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-edoc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-eldap | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-erl-docgen | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-et | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-eunit | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-gs | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ic | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-inets | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-megaco | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-mnesia | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-observer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-odbc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-os-mon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-parsetools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-percept | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-pman | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-public-key | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-reltool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-runtime-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-snmp | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ssh | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-ssl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-syntax-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-test-server | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-toolbar | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-tv | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-typer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-webtool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-wx | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | erlang-xmerl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! amd64 | esniper | 2.27.0-1 | 2.28.0-1~bpo70+1 +! amd64 | evilwm | 1.0.0-1 | 1.1.0-3~bpo70+1 +! amd64 | exfat-fuse | 0.9.7-2 | 1.0.1-1~bpo70+1 +! amd64 | exfat-utils | 0.9.7-2 | 1.0.1-1~bpo70+1 +! amd64 | fcitx-bin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-config-gtk | 0.4.4-1 | 0.4.7-1~bpo70+1 +! amd64 | fcitx-config-gtk2 | 0.4.4-1 | 0.4.7-1~bpo70+1 +! amd64 | fcitx-dbg | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-gtk2 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-gtk3 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-frontend-qt4 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-googlepinyin | 0.1.5-2 | 0.1.6-1~bpo70+1 +! amd64 | fcitx-libs | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-libs-dev | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-cloudpinyin | 0.2.2-1+deb7u1 | 0.3.3-1~bpo70+1 +! amd64 | fcitx-module-dbus | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-kimpanel | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-lua | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-module-x11 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-modules | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-pinyin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-qw | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-amharic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-arabic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-array30 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-array30-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-bingchan | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-boshiamy | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-cangjie-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cangjie5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cantonese | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cantonhk | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-cns11643 | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-compose | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-dianbaoma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-easy-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-emoji | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-erbi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-ipa-x-sampa | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-jyutping | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-latex | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-malayalam-phonetic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-quick-classic | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-quick3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-quick5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-rustrad | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-scj6 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-stroke5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-tamil-remington | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-thai | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-translit | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-translit-ua | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-viqr | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-wanfeng | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wbpy | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wu | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-wubi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-table-wubi-large | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-yawerty | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! amd64 | fcitx-table-zhengma | 0.3.1-1 | 0.3.4-1~bpo70+1 +! amd64 | fcitx-table-ziranma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-tools | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fcitx-ui-classic | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | fglrx-atieventsd | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | fglrx-control | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | fglrx-driver | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | fglrx-modules-dkms | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | fglrx-source | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | file | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | finch | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | florence | 0.5.1-1 | 0.6.0-2~bpo70+1 +! amd64 | fluxbox | 1.3.2-4 | 1.3.5-1~bpo70+1 +! amd64 | freeciv-client-extras | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-gtk | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-sdl | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-client-xaw3d | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | freeciv-server | 2.3.2-1 | 2.4.2-1~bpo70+1 +! amd64 | fvwm | 1:2.5.30.ds-1.1 | 1:2.6.5.ds-3~bpo70+1 +! amd64 | fwknop-client | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! amd64 | fwknop-server | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! amd64 | ganeti-htools | 2.5.2-1 | 2.9.4-1~bpo70+1 +! amd64 | geoip-bin | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | gettext | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | gettext-base | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | gir1.2-fcitx-1.0 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! amd64 | gir1.2-ibus-1.0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | git | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! amd64 | git-annex | 3.20120629 | 5.20140210~bpo70+2 +! amd64 | gitg | 0.2.4-1.1+deb7u1 | 0.2.7-1~bpo70+1 +! amd64 | gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-common | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-cygnal | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-dbg | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-dev | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-fileio | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-lirc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-ext-mysql | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnash-tools | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | gnome-panel-control | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | gnuplot-nox | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuplot-qt | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuplot-x11 | 4.6.0-8 | 4.6.4-1~bpo70+1 +! amd64 | gnuradio | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | gnuradio-dev | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | gnutls-bin | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! amd64 | gpsd | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | gpsd-clients | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | gpsd-dbg | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | guile-gnutls | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! amd64 | gwenhywfar-tools | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! amd64 | gyoto-dbg | 0.0.3-5 | 0.1.0-2~bpo70+1 +! amd64 | haveged | 1.4-4 | 1.7b-2~bpo70+1 +! amd64 | hedgewars | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +! amd64 | herbstluftwm | 0.3-1 | 0.5.3-1~bpo70+1 +! amd64 | hugin | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! amd64 | hugin-tools | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! amd64 | i3 | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3-wm | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3-wm-dbg | 4.2-2 | 4.7.2-1~bpo70+1 +! amd64 | i3status | 2.5.1-1 | 2.8-1~bpo70+1 +! amd64 | ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | ibus-gtk | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | ibus-gtk3 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | icinga | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-cgi | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-core | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-dbg | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | icinga-idoutils | 1.7.1-6 | 1.9.3-2~bpo70+1 +! amd64 | intel-microcode | 1.20130906.1 | 2.20140122.1~bpo70+1 +! amd64 | irqbalance | 1.0.3-3 | 1.0.6-2~bpo70+1 +! amd64 | italc-client | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! amd64 | italc-master | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! amd64 | jd | 1:2.8.5~beta120206-3 | 1:2.8.7-140104-1~bpo70+1 +! amd64 | jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +! amd64 | kbuild | 1:0.1.9998svn2543+dfsg-1 | 1:0.1.9998svn2577+dfsg-3~bpo70+1 +! amd64 | kde-config-gtk-style | 3:2.1-1 | 3:2.2.1-1~bpo70+1 +! amd64 | kexec-tools | 1:2.0.3-1+deb7u1 | 1:2.0.3-4~bpo70+1 +! amd64 | klash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | konqueror-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | ldb-tools | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | ldnsutils | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libafsauthent1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libafsrpc1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libapache2-mod-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! amd64 | libaqbanking-plugins-libgwenhywfar60 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! amd64 | libaqbanking34 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-dbg | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-dev | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqbanking34-plugins | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libaqhbci20 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! amd64 | libaqofxconnect7 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! amd64 | libarmadillo-dev | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! amd64 | libarmadillo3 | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! amd64 | libasprintf0c2 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | libav-dbg | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libav-tools | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavcodec-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavdevice-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavdevice53 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavfilter-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavformat-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libavutil-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libchromaprint-dev | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libchromaprint-tools | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libchromaprint0 | 0.6-2 | 1.1-1~bpo70+1 +! amd64 | libclaws-mail-dev | 3.8.1-2 | 3.9.3-1~bpo70+1 +! amd64 | libcodeblocks0 | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libcuda1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | libcupti-dev | 4.2.9-2 | 5.0.35-8~bpo70+1 +! amd64 | libeiskaltdcpp2.2 | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | libeiskaltdcpp2.2-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! amd64 | libestr-dev | 0.1.1-2 | 0.1.9-1~bpo70+1 +! amd64 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +! amd64 | libfglrx | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | libfglrx-amdxvba1 | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | libfm-dev | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +! amd64 | libgeoip-dev | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | libgeoip1 | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! amd64 | libgettextpo0 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! amd64 | libghc-gnutls-dev | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! amd64 | libghc-gnutls-prof | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! amd64 | libghc-network-protocol-xmpp-dev | 0.4.3-1 | 0.4.4-2~bpo70+1 +! amd64 | libghc-network-protocol-xmpp-prof | 0.4.3-1 | 0.4.4-2~bpo70+1 +! amd64 | libgl1-fglrx-glx | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | libgl1-nvidia-glx | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | libgl1-nvidia-legacy-173xx-glx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! amd64 | libgl1-nvidia-legacy-96xx-glx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! amd64 | libgpgme11 | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! amd64 | libgpgme11-dev | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! amd64 | libgps-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libgps20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libgwengui-fox16-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-gtk2-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwengui-qt4-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60-dbg | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libgwenhywfar60-dev | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! amd64 | libhivex-bin | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-ocaml | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex-ocaml-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex0 | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhivex0-dbg | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libhogweed2 | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | libibus-1.0-0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | libibus-1.0-dev | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! amd64 | libjson0 | 0.10-1.2 | 0.11-3~bpo7+1 +! amd64 | libjson0-dev | 0.10-1.2 | 0.11-3~bpo7+1 +! amd64 | libkopenafs1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldb1 | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldb1-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | libldns-dev | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libldns1 | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libldns1-dbg | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | libmagic-dev | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | libmagic1 | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | libmsv-dev | 0.0.0-1 | 1.0-1~bpo70+1 +! amd64 | libnet-remctl-perl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | libnettle4 | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | libnotmuch-dev | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | libnotmuch3 | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | libnss-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libnvcuvid1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | libnvidia-compiler | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | libnvidia-ml1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | libnvtt-bin | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libnvtt-dev | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libnvtt2 | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! amd64 | libocamlbricks-ocaml-dev | 0.50.1-4+b5 | 0.90+bzr367-1~bpo70+1 +! amd64 | libopenafs-dev | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libopus-dbg | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libopus-dev | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libopus0 | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! amd64 | libp11-kit-dev | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | libp11-kit0 | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | libpam-openafs-kaserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | libpam-smbpass | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpam-ssh | 1.92-15 | 1.98-2~bpo70+1 +! amd64 | libpam-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpari-dbg | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libpari-dev | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libpari-gmp3 | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | libparse-pidl-perl | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libpostproc-dev | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! amd64 | libpostproc52 | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! amd64 | libpulse-dev | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse-mainloop-glib0 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse-mainloop-glib0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse0 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpulse0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | libpurple0 | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | libqgpsmm-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libqgpsmm20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | libqxmpp-dev | 0.4.92-1 | 0.7.6-1~bpo70+1 +! amd64 | libqxmpp0 | 0.4.92-1 | 0.7.6-1~bpo70+1 +! amd64 | librelp-dev | 1.0.0-1 | 1.2.0-1~bpo70+1 +! amd64 | librelp0 | 1.0.0-1 | 1.2.0-1~bpo70+1 +! amd64 | libremctl-dev | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | libremctl1 | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | libreoffice | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-base | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-base-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-calc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-dbg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-dev | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-draw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-evolution | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gnome | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gtk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-gtk3 | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-impress | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-kde | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-math | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-mysql-connector | 1.0.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.2+LibO4.1.4-2~bpo70+1 +! amd64 | libreoffice-officebean | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-ogltrans | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-pdfimport | 1.0.5+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-presentation-minimizer | 1.0.3+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.4+LibO4.1.4-2~bpo70+1 +! amd64 | libreoffice-report-builder-bin | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-sdbc-postgresql | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libreoffice-writer | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | libsaml2-dev | 2.4.3-4 | 2.5.3-2~bpo70+1 +! amd64 | libsmbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libsmbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libsope-dev | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsope1 | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsope1-dbg | 1.3.16-1 | 2.0.5-1~bpo70+1 +! amd64 | libsoqt-dev-common | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libsoqt4-20 | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libsoqt4-dev | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! amd64 | libspice-server-dev | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | libspice-server1 | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | libstrongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | libswscale-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libswscale2 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! amd64 | libtag1-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtag1-vanilla | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtag1c2a | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtagc0 | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtagc0-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! amd64 | libtalloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtalloc2 | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtalloc2-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | libtdb-dev | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtdb1 | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtdb1-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | libtevent-dev | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtevent0 | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtevent0-dbg | 0.9.16-1 | 0.9.19-1~bpo70+1 +! amd64 | libtsk-dev | 3.2.3-2 | 4.1.2-2~bpo70+1 +! amd64 | libuhd-dev | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | libuhd003 | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | libunbound-dev | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | libunbound2 | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | libusb-1.0-0 | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! amd64 | libusb-1.0-0-dev | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! amd64 | libusbip-dev | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! amd64 | libusbredirhost-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libusbredirhost1 | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libusbredirparser-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | libv8-dev | 3.8.9.20-2 | 3.14.5.8-4~bpo7+1 +! amd64 | libvirt-bin | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt-dev | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt0 | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvirt0-dbg | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! amd64 | libvlc-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvlc5 | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvlccore-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | libvolk0.0.0 | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! amd64 | libwbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libwbclient0 | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | libwin-hivex-perl | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | libwireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | libwiretap-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | libwsutil-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | libwxsmithlib-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libwxsmithlib0 | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libwxsmithlib0-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! amd64 | libxapian-dev | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxapian22 | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxapian22-dbg | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | libxml-security-c-dev | 1.6.1-5+deb7u2 | 1.7.2-2~bpo70+1 +! amd64 | libxmltooling-dev | 1.4.2-5 | 1.5.3-2~bpo70+1 +! amd64 | libxvbaw-dev | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! amd64 | liferea | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! amd64 | liferea-dbg | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! amd64 | linux-headers-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-headers-rt-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-image-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-image-rt-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | linux-libc-dev | 3.2.54-2 | 3.12.9-1~bpo70+1 +! amd64 | lldpd | 0.5.7-2 | 0.7.7-1~bpo70+1 +! amd64 | lua-sec | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! amd64 | lua-sec-dev | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! amd64 | lua-socket | 2.0.2-8 | 3.0~rc1-3~bpo70+1+b1 +! amd64 | lua-socket-dev | 2.0.2-8 | 3.0~rc1-3~bpo70+1+b1 +! amd64 | mercurial | 2.2.2-3 | 2.8.2-1~bpo70+1 +! amd64 | mksh | 40.9.20120630-7 | 49-2~bpo70+1 +! amd64 | mongodb | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-clients | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-dev | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | mongodb-server | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! amd64 | monit | 1:5.4-2 | 1:5.6-1~bpo70+1 +! amd64 | mosh | 1.2.3-1 | 1.2.4a-1~bpo70+1 +! amd64 | mpd | 0.16.7-2+b1 | 0.17.6-1~bpo70+1 +! amd64 | mpd-dbg | 0.16.7-2+b1 | 0.17.6-1~bpo70+1 +! amd64 | nagios-plugins-basic | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios-plugins-common | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios-plugins-contrib | 4.20120702 | 9.20140106~bpo70+1 +! amd64 | nagios-plugins-standard | 1.4.16-1 | 1.5-1~bpo70+1 +! amd64 | nagios3 | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-cgi | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-core | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nagios3-dbg | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! amd64 | nettle-bin | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nettle-dbg | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nettle-dev | 2.4-3 | 2.7.1-1~bpo70+1 +! amd64 | nginx-extras | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-extras-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-full | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-full-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-light | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-light-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-naxsi | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nginx-naxsi-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! amd64 | nmap | 6.00-0.3+deb7u1 | 6.40-0.1~bpo70+1 +! amd64 | notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +! amd64 | nvidia-alternative | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-alternative-legacy-173xx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! amd64 | nvidia-alternative-legacy-96xx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! amd64 | nvidia-cuda-dev | 4.2.9-2 | 5.0.35-8~bpo70+1 +! amd64 | nvidia-cuda-gdb | 4.2.9-2 | 5.0.35-8~bpo70+1 +! amd64 | nvidia-cuda-toolkit | 4.2.9-2 | 5.0.35-8~bpo70+1 +! amd64 | nvidia-detect | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-glx | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-glx-legacy-173xx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! amd64 | nvidia-glx-legacy-96xx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! amd64 | nvidia-kernel-amd64 | 304.88+1 | 319.82+3.12+1~bpo70+1 +! amd64 | nvidia-kernel-dkms | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-kernel-legacy-173xx-dkms | 173.14.35-4 | 173.14.39-1~bpo70+1 +! amd64 | nvidia-kernel-legacy-173xx-source | 173.14.35-4 | 173.14.39-1~bpo70+1 +! amd64 | nvidia-kernel-legacy-96xx-dkms | 96.43.23-3 | 96.43.23-7~bpo70+1 +! amd64 | nvidia-kernel-legacy-96xx-source | 96.43.23-3 | 96.43.23-7~bpo70+1 +! amd64 | nvidia-kernel-source | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-libopencl1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-opencl-common | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-opencl-dev | 4.2.9-2 | 5.0.35-8~bpo70+1 +! amd64 | nvidia-opencl-icd | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-smi | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-vdpau-driver | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | nvidia-visual-profiler | 4.2.9-2 | 5.0.35-8~bpo70+1 +! amd64 | open-axiom | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | open-axiom-graphics | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | open-axiom-hypertex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! amd64 | openafs-client | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-dbg | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-dbserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-fileserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-fuse | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-kpasswd | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openafs-krb5 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! amd64 | openbox | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | openbox-dev | 3.5.0-7 | 3.5.2-6~bpo70+1 +! amd64 | opensaml2-tools | 2.4.3-4 | 2.5.3-2~bpo70+1 +! amd64 | openssh-client | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | openssh-server | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | openvpn | 2.2.1-8+deb7u2 | 2.3.2-7~bpo70+1 +! amd64 | p11-kit | 0.12-3 | 0.20.2-1~bpo70+1 +! amd64 | paraview | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | paraview-dev | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | paraview-python | 3.14.1-6 | 4.0.1-1~bpo70+1 +! amd64 | pari-gp | 2.5.1-2 | 2.5.5-1~bpo70+1 +! amd64 | pcmanfm | 0.9.10-3 | 1.1.2-1~bpo70+1 +! amd64 | pcmanfm-dbg | 0.9.10-3 | 1.1.2-1~bpo70+1 +! amd64 | php5-remctl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | pidgin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | pidgin-dbg | 2.10.6-3 | 2.10.7-2~bpo70+1 +! amd64 | pidgin-otr | 3.2.1-3+deb7u1 | 4.0.0-2~bpo70+1 +! amd64 | plasma-widget-cwp | 1.6.11-1 | 1.10.0-1~bpo70+1 +! amd64 | poedit | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! amd64 | poedit-dbg | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! amd64 | pokerth | 0.9.5-1 | 1.0.1-2~bpo70+1 +! amd64 | pokerth-server | 0.9.5-1 | 1.0.1-2~bpo70+1 +! amd64 | prosody | 0.8.2-4 | 0.9.1-1~bpo70+1 +! amd64 | psi-plus | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-plugin-psimedia | 1.0.3-git20120506-fb54b6e-1 | 1.0.3-git20131023-ea487d3-1~bpo70+1 +! amd64 | psi-plus-plugins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-plugins-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-webkit | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | psi-plus-webkit-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! amd64 | pulseaudio | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-esound-compat | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-esound-compat-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-bluetooth | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-bluetooth-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-gconf | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-gconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-jack | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-jack-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-lirc | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-lirc-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-raop | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-raop-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-x11 | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-x11-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-zeroconf | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-module-zeroconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-utils | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | pulseaudio-utils-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! amd64 | python-fife | 0.3.3+r3-3 | 0.3.5-1~bpo70+1 +! amd64 | python-gps | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! amd64 | python-gtk-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! amd64 | python-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | python-ldb | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldb-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! amd64 | python-ldns | 1.6.13-1 | 1.6.16-1~bpo70+1 +! amd64 | python-libvirt | 0.9.12.3-1 | 1.2.1-1~bpo70+2 +! amd64 | python-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python-magic | 5.11-2 | 1:5.14-2~bpo70+1 +! amd64 | python-pivy | 0.5.0~v609hg-1 | 0.5.0~v609hg-3~bpo70+1 +! amd64 | python-remctl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | python-samba | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | python-talloc | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-talloc-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-talloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! amd64 | python-tdb | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | python-tdb-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | python-twisted-bin | 12.0.0-1 | 13.0.0-1~bpo70+1 +! amd64 | python-twisted-bin-dbg | 12.0.0-1 | 13.0.0-1~bpo70+1 +! amd64 | python-unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | python-uno | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! amd64 | python-wimpiggy | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! amd64 | python-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python3-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python3-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! amd64 | python3-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | python3-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! amd64 | q4wine | 0.121-4 | 1.1-r2-1~bpo70+1 +! amd64 | qconf | 1.4-3 | 1.5-1~bpo70+1 +! amd64 | qemu | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-kvm | 1.1.2+dfsg-6 | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-system | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-user | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-user-static | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemu-utils | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! amd64 | qemubuilder | 0.70 | 0.73~bpo7+1 +! amd64 | racket | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! amd64 | redis-server | 2:2.4.14-1 | 2:2.8.6-1~bpo70+1 +! amd64 | registry-tools | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | remctl-client | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | remctl-server | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | reprepro | 4.12.5-1 | 4.13.1-1~bpo70+1 +! amd64 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-gnutls | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-gssapi | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-mysql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-pgsql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | rsyslog-relp | 5.8.11-3 | 7.4.4-1~bpo70+1 +! amd64 | ruby-gherkin | 2.4.6-1 | 2.12.1-1~bpo70+1 +! amd64 | ruby-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! amd64 | ruby-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! amd64 | ruby-password | 0.5.3-3 | 0.5.3-4~bpo70+1 +! amd64 | ruby-remctl | 3.2-4 | 3.8-1~bpo70+1 +! amd64 | ruby-termios | 0.9.6-2 | 1.0.0-1~bpo70+1 +! amd64 | samba | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-common-bin | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-dbg | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | samba-dsdb-modules | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | sks | 1.1.3-2 | 1.1.4-2~bpo70+1 +! amd64 | sleuthkit | 3.2.3-2 | 4.1.2-2~bpo70+1 +! amd64 | smbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | sogo | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! amd64 | sogo-dbg | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! amd64 | spice-client | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! amd64 | ssh-askpass-gnome | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! amd64 | strongswan-dbg | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | strongswan-nm | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | strongswan-starter | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! amd64 | sumo | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! amd64 | supertuxkart | 0.7.3-2+b1 | 0.8.1-2~bpo70+1 +! amd64 | task | 2.0.0-1 | 2.2.0-3~bpo70+1 +! amd64 | tdb-tools | 1.2.10-2 | 1.2.12-1~bpo70+1 +! amd64 | telepathy-idle | 0.1.11-2+deb7u1 | 0.1.16-1~bpo70+1 +! amd64 | tinc | 1.0.19-3 | 1.0.23-1~bpo70+1 +! amd64 | tmux | 1.6-2 | 1.8-5~bpo70+1 +! amd64 | tshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | uhd-host | 3.4.2-1 | 3.5.5-1~bpo70+1 +! amd64 | uhub | 0.3.2-1 | 0.4.1-3~bpo70+1 +! amd64 | unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | unbound-anchor | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | unbound-host | 1.4.17-3 | 1.4.21-1~bpo70+1 +! amd64 | uno-libs3 | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | uno-libs3-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | ure | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | ure-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! amd64 | usbip | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! amd64 | usbredirserver | 0.4.3-2 | 0.6-2~bpo70+1 +! amd64 | virtualbox | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-dbg | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-guest-utils | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-guest-x11 | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | virtualbox-qt | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! amd64 | vlc | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-dbg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-nox | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-fluidsynth | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-jack | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-notify | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-pulse | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-sdl | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-svg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | vlc-plugin-zvbi | 2.0.3-5 | 2.1.2-2~bpo70+2 +! amd64 | weechat-core | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-curses | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-dbg | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | weechat-plugins | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! amd64 | wesnoth-1.10-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | wesnoth-1.10-dbg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | wesnoth-1.10-server | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! amd64 | winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! amd64 | wireshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-common | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-dbg | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | wireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! amd64 | x2goclient | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! amd64 | x2goplugin | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! amd64 | xapian-examples | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | xapian-tools | 1.2.12-2 | 1.2.16-2~bpo70+1 +! amd64 | xbmc-bin | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! amd64 | xbmc-eventclients-wiiremote | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! amd64 | xen-linux-system-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! amd64 | xpra | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! amd64 | xserver-xorg-video-nvidia | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! amd64 | xserver-xorg-video-nvidia-legacy-173xx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! amd64 | xserver-xorg-video-nvidia-legacy-96xx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! amd64 | yade | 0.80.1-2 | 1.05.0-2~bpo70+1 +! amd64 | yagf | 0.9.1-3 | 0.9.2.1-1~bpo70+1 +! amd64 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | 0ad | 0~r11863-2 | 0.0.14-3~bpo70+2 +! i386 | 0ad-dbg | 0~r11863-2 | 0.0.14-3~bpo70+2 +! i386 | amarok | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amarok-dbg | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amarok-utils | 2.6~beta1+75.g47e75df-1 | 2.6.0-1~bpo70+1 +! i386 | amd-clinfo | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | amd-libopencl1 | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | amd-opencl-dev | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | amd-opencl-icd | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | amd64-microcode | 1.20120910-2 | 2.20120910-1~bpo70+1 +! i386 | apt-cacher-ng | 0.7.11-1 | 0.7.25-1~bpo70+1 +! i386 | aqbanking-tools | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | asterisk | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-dahdi | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-dbg | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mobile | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-modules | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mp3 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-mysql | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-ooh323 | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail-imapstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | asterisk-voicemail-odbcstorage | 1:1.8.13.1~dfsg1-3+deb7u3 | 1:11.7.0~dfsg-1~bpo70+1 +! i386 | bip | 0.8.8-2 | 0.8.9-1~bpo70+1 +! i386 | bird | 1.3.7-1 | 1.4.0-1~bpo70+1 +! i386 | bird-dbg | 1.3.7-1 | 1.4.0-1~bpo70+1 +! i386 | bluefish | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | bluefish-dbg | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | bluefish-plugins | 2.2.3-4 | 2.2.5-3~bpo70+1 +! i386 | blueman | 1.23-1 | 1.23-git201312311147-1~bpo70+1 +! i386 | boinc-client | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | boinc-dbg | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | boinc-manager | 7.0.27+dfsg-5 | 7.0.65+dfsg-3~bpo70+1 +! i386 | browser-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | bti | 032-1 | 034-1~bpo70+1 +! i386 | bup | 0.25~git2011.11.04-5.1 | 0.25-1~bpo70+1 +! i386 | calibre-bin | 0.8.51+dfsg1-0.1 | 1.22.0+dfsg1-1~bpo70+1 +! i386 | check-mk-agent | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-agent-logwatch | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-config-icinga | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-config-nagios3 | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-livestatus | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-multisite | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | check-mk-server | 1.1.12p7-1 | 1.2.2p3-1~bpo70+1 +! i386 | claws-mail | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-acpi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-address-keeper | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-archiver-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-attach-remover | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-attach-warner | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-bogofilter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-bsfilter-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-clamd-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-dbg | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-fancy-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-feeds-reader | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-fetchinfo-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-gdata-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-mailmbox-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-multi-notifier | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-newmail-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-perl-filter | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-pgpinline | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-pgpmime | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-python-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-smime-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-spam-report | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-spamassassin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-tnef-parser | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | claws-mail-vcalendar-plugin | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | cmake | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-curses-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-dbg | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | cmake-qt-gui | 2.8.9-1 | 2.8.11.1-1~bpo70+1 +! i386 | codeblocks | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-contrib | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-contrib-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-dbg | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | codeblocks-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | cowbuilder | 0.70 | 0.73~bpo7+1 +! i386 | cowdancer | 0.70 | 0.73~bpo7+1 +! i386 | cython | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! i386 | cython-dbg | 0.15.1-2 | 0.19.1+git34-gac3e3a2-1~bpo70+1 +! i386 | darktable | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! i386 | darktable-dbg | 1.0.4-1+deb7u2 | 1.2.3-1~bpo70+1 +! i386 | deets | 0.1.3-1 | 0.2-3~bpo70+1 +! i386 | desktop-file-utils | 0.20-0.1 | 0.21-1~bpo70+1 +! i386 | devilspie2 | 0.20-1 | 0.32-1~bpo70+1 +! i386 | devscripts | 2.12.6+deb7u2 | 2.13.4~bpo70+1 +! i386 | dovecot-antispam | 2.0+20120225-3 | 2.0+20130822-2~bpo70+1 +! i386 | dovecot-core | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-dbg | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-dev | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-gssapi | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-imapd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-ldap | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-lmtpd | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-managesieved | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-mysql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-pgsql | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-pop3d | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-sieve | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-solr | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | dovecot-sqlite | 1:2.1.7-7 | 1:2.2.9-1~bpo70+1 +! i386 | drbd8-utils | 2:8.3.13-2 | 2:8.4.4-1~bpo70+1 +! i386 | eiskaltdcpp-daemon | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-daemon-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-gtk | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-gtk-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-qt | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | eiskaltdcpp-qt-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | erlang-appmon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-asn1 | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-base | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-base-hipe | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-common-test | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-corba | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-crypto | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-debugger | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-dev | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-dialyzer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-diameter | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-edoc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-eldap | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-erl-docgen | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-et | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-eunit | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-gs | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ic | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-inets | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-megaco | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-mnesia | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-observer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-odbc | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-os-mon | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-parsetools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-percept | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-pman | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-public-key | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-reltool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-runtime-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-snmp | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ssh | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-ssl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-syntax-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-test-server | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-toolbar | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-tools | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-tv | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-typer | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-webtool | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-wx | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | erlang-xmerl | 1:15.b.1-dfsg-4 | 1:16.b.3.1-dfsg-1~bpo70+1 +! i386 | esniper | 2.27.0-1 | 2.28.0-1~bpo70+1 +! i386 | evilwm | 1.0.0-1 | 1.1.0-3~bpo70+1 +! i386 | exfat-fuse | 0.9.7-2 | 1.0.1-1~bpo70+1 +! i386 | exfat-utils | 0.9.7-2 | 1.0.1-1~bpo70+1 +! i386 | fcitx-bin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-config-gtk | 0.4.4-1 | 0.4.7-1~bpo70+1 +! i386 | fcitx-config-gtk2 | 0.4.4-1 | 0.4.7-1~bpo70+1 +! i386 | fcitx-dbg | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-gtk2 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-gtk3 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-frontend-qt4 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-googlepinyin | 0.1.5-2 | 0.1.6-1~bpo70+1 +! i386 | fcitx-libs | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-libs-dev | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-cloudpinyin | 0.2.2-1+deb7u1 | 0.3.2-1~bpo70+1 +! i386 | fcitx-module-dbus | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-kimpanel | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-lua | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-module-x11 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-modules | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-pinyin | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-qw | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-sunpinyin | 0.3.7-1 | 0.4.1-1~bpo70+1 +! i386 | fcitx-table | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-amharic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-arabic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-array30 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-array30-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-bingchan | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-boshiamy | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-cangjie-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cangjie5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cantonese | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cantonhk | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-cns11643 | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-compose | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-dianbaoma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-easy-big | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-emoji | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-erbi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-ipa-x-sampa | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-jyutping | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-latex | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-malayalam-phonetic | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-quick-classic | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-quick3 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-quick5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-rustrad | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-scj6 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-stroke5 | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-tamil-remington | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-thai | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-translit | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-translit-ua | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-viqr | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-wanfeng | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wbpy | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wu | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-wubi | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-table-wubi-large | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-yawerty | 0.2.0+git20120621-1 | 0.2.2-1~bpo70+1 +! i386 | fcitx-table-zhengma | 0.3.1-1 | 0.3.4-1~bpo70+1 +! i386 | fcitx-table-ziranma | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-tools | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fcitx-ui-classic | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | fglrx-atieventsd | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | fglrx-control | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | fglrx-driver | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | fglrx-modules-dkms | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | fglrx-source | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | file | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | finch | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | florence | 0.5.1-1 | 0.6.0-2~bpo70+1 +! i386 | fluxbox | 1.3.2-4 | 1.3.5-1~bpo70+1 +! i386 | freeciv-client-extras | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-gtk | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-sdl | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-client-xaw3d | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | freeciv-server | 2.3.2-1 | 2.4.2-1~bpo70+1 +! i386 | fvwm | 1:2.5.30.ds-1.1 | 1:2.6.5.ds-3~bpo70+1 +! i386 | fwknop-client | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! i386 | fwknop-server | 2.0.0rc2-2+deb7u2 | 2.5.1-1~bpo70+1 +! i386 | ganeti-htools | 2.5.2-1 | 2.9.4-1~bpo70+1 +! i386 | geoip-bin | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | gettext | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | gettext-base | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | gir1.2-fcitx-1.0 | 1:4.2.4.1-7 | 1:4.2.8.3-2~bpo70+1 +! i386 | gir1.2-ibus-1.0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | git | 1:1.7.10.4-1+wheezy1 | 1:1.8.5.3-1~bpo70+1 +! i386 | git-annex | 3.20120629 | 5.20140210~bpo70+2 +! i386 | gitg | 0.2.4-1.1+deb7u1 | 0.2.7-1~bpo70+1 +! i386 | gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-common | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-cygnal | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-dbg | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-dev | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-fileio | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-lirc | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-ext-mysql | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnash-tools | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | gnome-panel-control | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | gnuplot-nox | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuplot-qt | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuplot-x11 | 4.6.0-8 | 4.6.4-1~bpo70+1 +! i386 | gnuradio | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | gnuradio-dev | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | gnutls-bin | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! i386 | gpsd | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | gpsd-clients | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | gpsd-dbg | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | guile-gnutls | 3.0.22-3+really2.12.20-7 | 3.2.10-2~bpo70+3 +! i386 | gwenhywfar-tools | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | gyoto-dbg | 0.0.3-5 | 0.1.0-2~bpo70+1 +! i386 | haveged | 1.4-4 | 1.7b-2~bpo70+1 +! i386 | hedgewars | 0.9.17-1 | 0.9.20.5-2~bpo70+1 +! i386 | herbstluftwm | 0.3-1 | 0.5.3-1~bpo70+1 +! i386 | hugin | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! i386 | hugin-tools | 2011.4.0+dfsg-5 | 2013.0.0+dfsg-1~bpo70+1 +! i386 | i3 | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3-wm | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3-wm-dbg | 4.2-2 | 4.7.2-1~bpo70+1 +! i386 | i3status | 2.5.1-1 | 2.8-1~bpo70+1 +! i386 | ibus | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | ibus-gtk | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | ibus-gtk3 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | icinga | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-cgi | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-core | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-dbg | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | icinga-idoutils | 1.7.1-6 | 1.9.3-2~bpo70+1 +! i386 | intel-microcode | 1.20130906.1 | 2.20140122.1~bpo70+1 +! i386 | irqbalance | 1.0.3-3 | 1.0.6-2~bpo70+1 +! i386 | italc-client | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! i386 | italc-master | 1:1.0.13-1.4 | 1:2.0.1-3~bpo7+1 +! i386 | jd | 1:2.8.5~beta120206-3 | 1:2.8.7-140104-1~bpo70+1 +! i386 | jupp | 3.1.21-1 | 3.1.25-1~bpo70+1 +! i386 | kbuild | 1:0.1.9998svn2543+dfsg-1 | 1:0.1.9998svn2577+dfsg-3~bpo70+1 +! i386 | kde-config-fcitx | 0.3.4-1 | 0.4.3-1~bpo70+1 +! i386 | kde-config-gtk-style | 3:2.1-1 | 3:2.2.1-1~bpo70+1 +! i386 | kexec-tools | 1:2.0.3-1+deb7u1 | 1:2.0.3-4~bpo70+1 +! i386 | klash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | konqueror-plugin-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | ldb-tools | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | ldnsutils | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libafsauthent1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libafsrpc1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libapache2-mod-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! i386 | libaqbanking-plugins-libgwenhywfar60 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! i386 | libaqbanking34 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-dbg | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-dev | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqbanking34-plugins | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libaqhbci20 | 5.0.24-3 | 5.1.0beta-1~bpo70+1 +! i386 | libaqofxconnect7 | 5.0.24-3 | 5.3.5beta-2~bpo70+1 +! i386 | libarmadillo-dev | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! i386 | libarmadillo3 | 1:3.2.3+dfsg-1 | 1:3.920.3+dfsg-1~bpo70+1 +! i386 | libasprintf0c2 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | libav-dbg | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libav-tools | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavcodec-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavdevice-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavdevice53 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavfilter-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavformat-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libavutil-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libchromaprint-dev | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libchromaprint-tools | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libchromaprint0 | 0.6-2 | 1.1-1~bpo70+1 +! i386 | libclaws-mail-dev | 3.8.1-2 | 3.9.3-1~bpo70+1 +! i386 | libcodeblocks0 | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libcuda1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | libcupti-dev | 4.2.9-2 | 5.0.35-8~bpo70+1 +! i386 | libeiskaltdcpp2.2 | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | libeiskaltdcpp2.2-dbg | 2.2.6-4 | 2.2.9-3~bpo70+1 +! i386 | libestr-dev | 0.1.1-2 | 0.1.9-1~bpo70+1 +! i386 | libestr0 | 0.1.1-2 | 0.1.9-1~bpo70+1 +! i386 | libfglrx | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | libfglrx-amdxvba1 | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | libfm-dev | 0.1.17-2.1 | 1.1.2.2-1~bpo70+1 +! i386 | libgeoip-dev | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | libgeoip1 | 1.4.8+dfsg-3 | 1.5.0-3~bpo70+1 +! i386 | libgettextpo0 | 0.18.1.1-9 | 0.18.3-1~bpo7+1 +! i386 | libghc-gnutls-dev | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! i386 | libghc-gnutls-prof | 0.1.2-1+b1 | 0.1.4-3~bpo70+1 +! i386 | libghc-network-protocol-xmpp-dev | 0.4.3-1 | 0.4.4-2~bpo70+1 +! i386 | libghc-network-protocol-xmpp-prof | 0.4.3-1 | 0.4.4-2~bpo70+1 +! i386 | libgl1-fglrx-glx | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | libgl1-nvidia-glx | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | libgl1-nvidia-legacy-173xx-glx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! i386 | libgl1-nvidia-legacy-96xx-glx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! i386 | libgpgme11 | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! i386 | libgpgme11-dev | 1.2.0-1.4 | 1.4.3-0.1~bpo70+1 +! i386 | libgps-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libgps20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libgwengui-fox16-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-gtk2-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwengui-qt4-0 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60 | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60-dbg | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libgwenhywfar60-dev | 4.3.3-1 | 4.10.0beta-1~bpo70+1 +! i386 | libhivex-bin | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-ocaml | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex-ocaml-dev | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex0 | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhivex0-dbg | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libhogweed2 | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | libibus-1.0-0 | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | libibus-1.0-dev | 1.4.1-9+deb7u1 | 1.5.1.is.1.4.2-1~bpo70+1 +! i386 | libjson0 | 0.10-1.2 | 0.11-3~bpo7+1 +! i386 | libjson0-dev | 0.10-1.2 | 0.11-3~bpo7+1 +! i386 | libkopenafs1 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldb1 | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldb1-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | libldns-dev | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libldns1 | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libldns1-dbg | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | libmagic-dev | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | libmagic1 | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | libmsv-dev | 0.0.0-1 | 1.0-1~bpo70+1 +! i386 | libnet-remctl-perl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | libnettle4 | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | libnotmuch-dev | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | libnotmuch3 | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | libnss-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libnvcuvid1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | libnvidia-compiler | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | libnvidia-ml1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | libnvtt-bin | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libnvtt-dev | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libnvtt2 | 2.0.8-1+dfsg-2 | 2.0.8-1+dfsg-4~bpo70+1 +! i386 | libocamlbricks-ocaml-dev | 0.50.1-4+b5 | 0.90+bzr367-1~bpo70+1 +! i386 | libopenafs-dev | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libopus-dbg | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libopus-dev | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libopus0 | 0.9.14+20120615-1+nmu1 | 1.1-1~bpo70+1 +! i386 | libp11-kit-dev | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | libp11-kit0 | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | libpam-openafs-kaserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | libpam-smbpass | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpam-ssh | 1.92-15 | 1.98-2~bpo70+1 +! i386 | libpam-winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpari-dbg | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libpari-dev | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libpari-gmp3 | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | libparse-pidl-perl | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libpostproc-dev | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! i386 | libpostproc52 | 6:0.8.9-1 | 6:0.git20120821-4~bpo70+1 +! i386 | libpulse-dev | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse-mainloop-glib0 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse-mainloop-glib0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse0 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpulse0-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | libpurple0 | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | libqgpsmm-dev | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libqgpsmm20 | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | libqxmpp-dev | 0.4.92-1 | 0.7.6-1~bpo70+1 +! i386 | libqxmpp0 | 0.4.92-1 | 0.7.6-1~bpo70+1 +! i386 | librelp-dev | 1.0.0-1 | 1.2.0-1~bpo70+1 +! i386 | librelp0 | 1.0.0-1 | 1.2.0-1~bpo70+1 +! i386 | libremctl-dev | 3.2-4 | 3.8-1~bpo70+1 +! i386 | libremctl1 | 3.2-4 | 3.8-1~bpo70+1 +! i386 | libreoffice | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-base | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-base-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-calc | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-core | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-dbg | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-dev | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-draw | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-evolution | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gnome | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gtk | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-gtk3 | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-impress | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-kde | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-math | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-mysql-connector | 1.0.1+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.2+LibO4.1.4-2~bpo70+1 +! i386 | libreoffice-officebean | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-ogltrans | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-pdfimport | 1.0.5+LibO3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-presentation-minimizer | 1.0.3+LibO3.5.4+dfsg2-0+deb7u2 | 1.0.4+LibO4.1.4-2~bpo70+1 +! i386 | libreoffice-report-builder-bin | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-sdbc-postgresql | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libreoffice-writer | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | libsaml2-dev | 2.4.3-4 | 2.5.3-2~bpo70+1 +! i386 | libsmbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libsmbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libsope-dev | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsope1 | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsope1-dbg | 1.3.16-1 | 2.0.5-1~bpo70+1 +! i386 | libsoqt-dev-common | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libsoqt4-20 | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libsoqt4-dev | 1.5.0-2 | 1.6.0~e8310f-1~bpo70+1 +! i386 | libspice-server-dev | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | libspice-server1 | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | libstrongswan | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | libswscale-dev | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libswscale2 | 6:0.8.9-1 | 6:9.10-1~bpo70+1 +! i386 | libtag1-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtag1-vanilla | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtag1c2a | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtagc0 | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtagc0-dev | 1.7.2-1 | 1.9.1-2~bpo70+1 +! i386 | libtalloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtalloc2 | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtalloc2-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | libtdb-dev | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtdb1 | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtdb1-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | libtevent-dev | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libtevent0 | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libtevent0-dbg | 0.9.16-1 | 0.9.19-1~bpo70+1 +! i386 | libuhd-dev | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | libuhd003 | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | libunbound-dev | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | libunbound2 | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | libusb-1.0-0 | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! i386 | libusb-1.0-0-dev | 2:1.0.11-1 | 2:1.0.17-1~bpo70+1 +! i386 | libusbip-dev | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! i386 | libusbredirhost-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libusbredirhost1 | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libusbredirparser-dev | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | libv8-dev | 3.8.9.20-2 | 3.14.5.8-4~bpo7+1 +! i386 | libvirt-bin | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt-dev | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt0 | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvirt0-dbg | 0.9.12.3-1 | 1.2.1-1~bpo70+1 +! i386 | libvlc-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvlc5 | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvlccore-dev | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | libvolk0.0.0 | 3.5.3.2-1 | 3.7.2.1-5~bpo70+1 +! i386 | libwbclient-dev | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libwbclient0 | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | libwin-hivex-perl | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | libwireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | libwiretap-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | libwsutil-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | libwxsmithlib-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libwxsmithlib0 | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libwxsmithlib0-dev | 10.05-2.1 | 13.12-1~bpo70+1 +! i386 | libxapian-dev | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxapian22 | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxapian22-dbg | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | libxml-security-c-dev | 1.6.1-5+deb7u2 | 1.7.2-2~bpo70+1 +! i386 | libxmltooling-dev | 1.4.2-5 | 1.5.3-2~bpo70+1 +! i386 | libxvbaw-dev | 1:12-6+point-3 | 1:13.12-4~bpo70+1 +! i386 | liferea | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! i386 | liferea-dbg | 1.8.6-1.1 | 1.8.15-1~bpo70+1 +! i386 | linux-headers-486 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-headers-rt-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-486 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-amd64 | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-image-rt-686-pae | 3.2+46 | 3.12+55~bpo70+1 +! i386 | linux-libc-dev | 3.2.54-2 | 3.12.9-1~bpo70+1 +! i386 | lldpd | 0.5.7-2 | 0.7.7-1~bpo70+1 +! i386 | lua-sec | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! i386 | lua-sec-dev | 0.4.1-1 | 0.4.1+git063e8a8-2~bpo70+1 +! i386 | lua-socket | 2.0.2-8 | 3.0~rc1-3~bpo70+1 +! i386 | lua-socket-dev | 2.0.2-8 | 3.0~rc1-3~bpo70+1 +! i386 | mercurial | 2.2.2-3 | 2.8.2-1~bpo70+1 +! i386 | mksh | 40.9.20120630-7 | 49-2~bpo70+1 +! i386 | mongodb | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-clients | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-dev | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | mongodb-server | 1:2.0.6-1.1 | 1:2.4.8-2~bpo70+1 +! i386 | monit | 1:5.4-2 | 1:5.6-1~bpo70+1 +! i386 | mosh | 1.2.3-1 | 1.2.4a-1~bpo70+1 +! i386 | mpd | 0.16.7-2 | 0.17.6-1~bpo70+1 +! i386 | mpd-dbg | 0.16.7-2 | 0.17.6-1~bpo70+1 +! i386 | nagios-plugins-basic | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios-plugins-common | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios-plugins-contrib | 4.20120702 | 9.20140106~bpo70+1 +! i386 | nagios-plugins-standard | 1.4.16-1 | 1.5-1~bpo70+1 +! i386 | nagios3 | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-cgi | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-core | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nagios3-dbg | 3.4.1-3+deb7u1 | 3.4.1-5~bpo7+1 +! i386 | nettle-bin | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nettle-dbg | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nettle-dev | 2.4-3 | 2.7.1-1~bpo70+1 +! i386 | nginx-extras | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-extras-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-full | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-full-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-light | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-light-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-naxsi | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nginx-naxsi-dbg | 1.2.1-2.2+wheezy2 | 1.4.4-1~bpo70+1 +! i386 | nmap | 6.00-0.3+deb7u1 | 6.40-0.1~bpo70+1 +! i386 | notmuch | 0.13.2-1 | 0.16-1~bpo70+1 +! i386 | nvidia-alternative | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-alternative-legacy-173xx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! i386 | nvidia-alternative-legacy-96xx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! i386 | nvidia-cuda-dev | 4.2.9-2 | 5.0.35-8~bpo70+1 +! i386 | nvidia-cuda-gdb | 4.2.9-2 | 5.0.35-8~bpo70+1 +! i386 | nvidia-cuda-toolkit | 4.2.9-2 | 5.0.35-8~bpo70+1 +! i386 | nvidia-detect | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-glx | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-glx-legacy-173xx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! i386 | nvidia-glx-legacy-96xx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! i386 | nvidia-kernel-486 | 304.88+1 | 319.82+3.12+1~bpo70+1 +! i386 | nvidia-kernel-686-pae | 304.88+1 | 319.82+3.12+1~bpo70+1 +! i386 | nvidia-kernel-amd64 | 304.88+1 | 319.82+3.12+1~bpo70+1 +! i386 | nvidia-kernel-dkms | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-kernel-legacy-173xx-dkms | 173.14.35-4 | 173.14.39-1~bpo70+1 +! i386 | nvidia-kernel-legacy-173xx-source | 173.14.35-4 | 173.14.39-1~bpo70+1 +! i386 | nvidia-kernel-legacy-96xx-dkms | 96.43.23-3 | 96.43.23-7~bpo70+1 +! i386 | nvidia-kernel-legacy-96xx-source | 96.43.23-3 | 96.43.23-7~bpo70+1 +! i386 | nvidia-kernel-source | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-libopencl1 | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-opencl-common | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-opencl-dev | 4.2.9-2 | 5.0.35-8~bpo70+1 +! i386 | nvidia-opencl-icd | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-smi | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-vdpau-driver | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | nvidia-visual-profiler | 4.2.9-2 | 5.0.35-8~bpo70+1 +! i386 | open-axiom | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | open-axiom-graphics | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | open-axiom-hypertex | 1.4.1+svn~2626-2 | 1.5.0~svn3056+ds-1~bpo70+1 +! i386 | openafs-client | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-dbg | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-dbserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-fileserver | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-fuse | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-kpasswd | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openafs-krb5 | 1.6.1-3+deb7u1 | 1.6.6-1~bpo70+1 +! i386 | openbox | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | openbox-dev | 3.5.0-7 | 3.5.2-6~bpo70+1 +! i386 | opensaml2-tools | 2.4.3-4 | 2.5.3-2~bpo70+1 +! i386 | openssh-client | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | openssh-server | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | openvpn | 2.2.1-8+deb7u2 | 2.3.2-7~bpo70+1 +! i386 | p11-kit | 0.12-3 | 0.20.2-1~bpo70+1 +! i386 | paraview | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | paraview-dev | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | paraview-python | 3.14.1-6 | 4.0.1-1~bpo70+1 +! i386 | pari-gp | 2.5.1-2 | 2.5.5-1~bpo70+1 +! i386 | pcmanfm | 0.9.10-3 | 1.1.2-1~bpo70+1 +! i386 | pcmanfm-dbg | 0.9.10-3 | 1.1.2-1~bpo70+1 +! i386 | php5-remctl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | pidgin | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | pidgin-dbg | 2.10.6-3 | 2.10.7-2~bpo70+1 +! i386 | pidgin-otr | 3.2.1-3+deb7u1 | 4.0.0-2~bpo70+1 +! i386 | plasma-widget-cwp | 1.6.11-1 | 1.10.0-1~bpo70+1 +! i386 | poedit | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! i386 | poedit-dbg | 1.4.6.1-5.1 | 1.5.4-1~bpo70+1 +! i386 | pokerth | 0.9.5-1 | 1.0.1-2~bpo70+1 +! i386 | pokerth-server | 0.9.5-1 | 1.0.1-2~bpo70+1 +! i386 | prosody | 0.8.2-4 | 0.9.1-1~bpo70+1 +! i386 | psi-plus | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-plugin-psimedia | 1.0.3-git20120506-fb54b6e-1 | 1.0.3-git20131023-ea487d3-1~bpo70+1 +! i386 | psi-plus-plugins | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-plugins-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-webkit | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | psi-plus-webkit-dbg | 0.15.5338-1 | 0.16.285-1~bpo70+1 +! i386 | pulseaudio | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-esound-compat | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-esound-compat-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-bluetooth | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-bluetooth-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-gconf | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-gconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-jack | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-jack-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-lirc | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-lirc-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-raop | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-raop-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-x11 | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-x11-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-zeroconf | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-module-zeroconf-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-utils | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | pulseaudio-utils-dbg | 2.0-6.1 | 4.0-6~bpo7+1 +! i386 | python-fife | 0.3.3+r3-3 | 0.3.5-1~bpo70+1 +! i386 | python-gps | 3.6-4+deb7u1 | 3.9-3~bpo70+1 +! i386 | python-gtk-gnash | 0.8.11~git20120629-1+deb7u1 | 0.8.11~git20140121+dfsg-1~bpo70+1 +! i386 | python-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | python-ldb | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldb-dbg | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldb-dev | 1:1.1.6-1 | 1:1.1.16-1~bpo70+1 +! i386 | python-ldns | 1.6.13-1 | 1.6.16-1~bpo70+1 +! i386 | python-libvirt | 0.9.12.3-1 | 1.2.1-1~bpo70+2 +! i386 | python-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python-magic | 5.11-2 | 1:5.14-2~bpo70+1 +! i386 | python-pivy | 0.5.0~v609hg-1 | 0.5.0~v609hg-3~bpo70+1 +! i386 | python-remctl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | python-samba | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | python-talloc | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-talloc-dbg | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-talloc-dev | 2.0.7+git20120207-1 | 2.1.0-1~bpo70+1 +! i386 | python-tdb | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | python-tdb-dbg | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | python-twisted-bin | 12.0.0-1 | 13.0.0-1~bpo70+1 +! i386 | python-twisted-bin-dbg | 12.0.0-1 | 13.0.0-1~bpo70+1 +! i386 | python-unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | python-uno | 1:3.5.4+dfsg2-0+deb7u2 | 1:4.1.4-2~bpo70+1 +! i386 | python-wimpiggy | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! i386 | python-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python3-lxml | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python3-lxml-dbg | 2.3.2-1 | 3.3.1-1~bpo70+1 +! i386 | python3-zmq | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | python3-zmq-dbg | 2.2.0-1 | 13.1.0-1~bpo70+1 +! i386 | q4wine | 0.121-4 | 1.1-r2-1~bpo70+1 +! i386 | qconf | 1.4-3 | 1.5-1~bpo70+1 +! i386 | qemu | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-kvm | 1.1.2+dfsg-6 | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-system | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-user | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-user-static | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemu-utils | 1.1.2+dfsg-6a | 1.7.0+dfsg-2~bpo70+2 +! i386 | qemubuilder | 0.70 | 0.73~bpo7+1 +! i386 | racket | 5.2.1+g6~92c8784+dfsg2-2+deb7u1 | 5.3.6+dfsg1-1~bpo70+1 +! i386 | redis-server | 2:2.4.14-1 | 2:2.8.6-1~bpo70+1 +! i386 | registry-tools | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | remctl-client | 3.2-4 | 3.8-1~bpo70+1 +! i386 | remctl-server | 3.2-4 | 3.8-1~bpo70+1 +! i386 | reprepro | 4.12.5-1 | 4.13.1-1~bpo70+1 +! i386 | rsyslog | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-gnutls | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-gssapi | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-mysql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-pgsql | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | rsyslog-relp | 5.8.11-3 | 7.4.4-1~bpo70+1 +! i386 | ruby-gherkin | 2.4.6-1 | 2.12.1-1~bpo70+1 +! i386 | ruby-hivex | 1.3.6-2 | 1.3.9-1~bpo70+1 +! i386 | ruby-passenger | 3.0.13debian-1+deb7u1 | 4.0.10-1~bpo7+1 +! i386 | ruby-password | 0.5.3-3 | 0.5.3-4~bpo70+1 +! i386 | ruby-remctl | 3.2-4 | 3.8-1~bpo70+1 +! i386 | ruby-termios | 0.9.6-2 | 1.0.0-1~bpo70+1 +! i386 | samba | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-common-bin | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-dbg | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | samba-dsdb-modules | 4.0.0~beta2+dfsg1-3.2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | sks | 1.1.3-2 | 1.1.4-2~bpo70+1 +! i386 | smbclient | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | sogo | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! i386 | sogo-dbg | 1.3.16-1 | 2.0.5a-1~bpo70+1 +! i386 | spice-client | 0.11.0-1+deb7u1 | 0.12.4-0nocelt2~bpo70+1 +! i386 | ssh-askpass-gnome | 1:6.0p1-4 | 1:6.5p1-4~bpo70+1 +! i386 | strongswan-dbg | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | strongswan-nm | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | strongswan-starter | 4.5.2-1.5+deb7u2 | 5.1.1-2~bpo70+1 +! i386 | sumo | 0.15.0~dfsg-2 | 0.19.0+dfsg-2~bpo70+1 +! i386 | supertuxkart | 0.7.3-2+b1 | 0.8.1-2~bpo70+1 +! i386 | task | 2.0.0-1 | 2.2.0-3~bpo70+1 +! i386 | tdb-tools | 1.2.10-2 | 1.2.12-1~bpo70+1 +! i386 | telepathy-idle | 0.1.11-2+deb7u1 | 0.1.16-1~bpo70+1 +! i386 | tinc | 1.0.19-3 | 1.0.23-1~bpo70+1 +! i386 | tmux | 1.6-2 | 1.8-5~bpo70+1 +! i386 | tshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | uhd-host | 3.4.2-1 | 3.5.5-1~bpo70+1 +! i386 | uhub | 0.3.2-1 | 0.4.1-3~bpo70+1 +! i386 | unbound | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | unbound-anchor | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | unbound-host | 1.4.17-3 | 1.4.21-1~bpo70+1 +! i386 | uno-libs3 | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | uno-libs3-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | ure | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | ure-dbg | 3.5.4+dfsg2-0+deb7u2 | 4.1.4-2~bpo70+1 +! i386 | usbip | 1.1.1+3.2.17-1 | 1.1.1+3.12.6-1~bpo70+1 +! i386 | usbredirserver | 0.4.3-2 | 0.6-2~bpo70+1 +! i386 | virtualbox | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-dbg | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-guest-utils | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-guest-x11 | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | virtualbox-qt | 4.1.18-dfsg-2+deb7u1 | 4.2.16-dfsg-3~bpo70+1 +! i386 | vlc | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-dbg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-nox | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-fluidsynth | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-jack | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-notify | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-pulse | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-sdl | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-svg | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | vlc-plugin-zvbi | 2.0.3-5 | 2.1.2-2~bpo70+2 +! i386 | weechat-core | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-curses | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-dbg | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | weechat-plugins | 0.3.8-1+deb7u1 | 0.4.3-2~bpo70+1 +! i386 | wesnoth-1.10-core | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | wesnoth-1.10-dbg | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | wesnoth-1.10-server | 1:1.10.3-3 | 1:1.10.6-2~bpo70+1 +! i386 | winbind | 2:3.6.6-6+deb7u2 | 2:4.1.5+dfsg-1~bpo70+1 +! i386 | wireshark | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-common | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-dbg | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | wireshark-dev | 1.8.2-5wheezy9 | 1.10.5-1~bpo70+1 +! i386 | x2goclient | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! i386 | x2goplugin | 3.99.2.1-5 | 4.0.1.1-1~bpo7+1 +! i386 | xapian-examples | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | xapian-tools | 1.2.12-2 | 1.2.16-2~bpo70+1 +! i386 | xbmc-bin | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! i386 | xbmc-eventclients-wiiremote | 2:11.0~git20120510.82388d5-1+b1 | 2:12.3+dfsg1-3~bpo70+2 +! i386 | xpra | 0.3.11+dfsg-1 | 0.9.8+dfsg-1~bpo70+1 +! i386 | xserver-xorg-video-nvidia | 304.88-1+deb7u1 | 319.82-1~bpo70+1 +! i386 | xserver-xorg-video-nvidia-legacy-173xx | 173.14.35-4 | 173.14.39-1~bpo70+1 +! i386 | xserver-xorg-video-nvidia-legacy-96xx | 96.43.23-3 | 96.43.23-7~bpo70+1 +! i386 | yade | 0.80.1-2 | 1.05.0-2~bpo70+1 +! i386 | yagf | 0.9.1-3 | 0.9.2.1-1~bpo70+1 +! i386 | yorick-gyoto | 0.0.3-5 | 0.1.0-2~bpo70+1 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot10Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot10Test_gold new file mode 100644 index 00000000..0343f785 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot10Test_gold @@ -0,0 +1,24 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main-src]: http://mirror.yandex.ru/debian/ wheezy [src] +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports-src]: http://mirror.yandex.ru/debian/ wheezy-backports [src] +and result would be saved as new snapshot snap3. +Loading packages (76956)... +Building indexes... +[-] rsyslog_5.8.11-3_amd64 removed +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[-] libestr0_0.1.1-2_amd64 removed +[+] libestr0_0.1.9-1~bpo70+1_amd64 added +[+] init-system-helpers_1.11~bpo70.1_all added +[-] rsyslog_5.8.11-3_source removed +[+] rsyslog_7.4.4-1~bpo70+1_source added +[-] libestr_0.1.1-2_source removed +[+] libestr_0.1.9-1~bpo70+1_source added +[+] init-system-helpers_1.11~bpo70.1_source added +[-] rsyslog_5.8.11-3_i386 removed +[+] rsyslog_7.4.4-1~bpo70+1_i386 added +[-] libestr0_0.1.1-2_i386 removed +[+] libestr0_0.1.9-1~bpo70+1_i386 added + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot10Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot10Test_snapshot_show new file mode 100644 index 00000000..c5d51563 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot10Test_snapshot_show @@ -0,0 +1,73316 @@ +Name: snap3 +Created At: 2014-02-27 13:07:25 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'rsyslog (>= 7.4.4)' +Number of packages: 73311 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.9-1~bpo70+1_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.9-1~bpo70+1_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 + 0ad_0~r11863-2_source + 0ad-data_0~r11863-1_source + 2ping_2.0-1_source + 2vcard_0.5-3_source + 389-adminutil_1.1.15-1_source + 389-console_1.1.7-1_source + 3dchess_0.8.1-17_source + 3depict_0.0.10-1_source + 4digits_1.1.2-1_source + 4g8_1.0-3_source + 4store_1.1.4-2_source + 6tunnel_0.11rc2-7_source + 7kaa_2.14.3-1_source + 7kaa-data_2.13-1_source + 9base_1:6-5_source + 9menu_1.8-5_source + 9wm_1.2-9_source + a2jmidid_7+dfsg0-1_source + a2ps_1:4.14-1.1_source + a52dec_0.7.4-16_source + a56_1.3-6_source + a7xpg_0.11.dfsg1-7_source + aa3d_1.0-8_source + aac-tactics_0.2.pl2-7_source + aafigure_0.5-3_source + aalib_1.4p5-40_source + aaphoto_0.41-1.1_source + abacas_1.3.1-1_source + abcde_2.5.3-1_source + abcm2ps_6.6.17-1_source + abcmidi_20070318-2_source + abe_1.1+dfsg-1_source + abgate_1.1.6-1_source + abi-compliance-checker_1.97.7-1_source + abicheck_1.2-5_source + abind_1.4-0-1_source + abinit_5.3.4.dfsg-3_source + abiword_2.9.2+svn20120603-8_source + abntex_0.9~beta2-5.1_source + abook_0.6.0~pre2-3_source + abootimg_0.6-1_source + abr2gbr_1:1.0.2-2_source + abraca_0.7.0-1_source + abtransfers_0.0.3.0-2_source + accerciser_3.4.1-1_source + access-modifier-checker_1.0-4_source + accessodf_0.1-2_source + accountsservice_0.6.21-8_source + acct_6.5.5-1_source + ace_6.0.3+dfsg-0.1_source + ace-of-penguins_1.3-8_source + acedb_4.9.39+dfsg.01-5_source + acegi-security_1.0.7-3_source + aces3_3.0.6-7_source + acetoneiso_2.3-2_source + acfax_981011-14.1_source + acheck_0.5.1_source + acheck-rules_0.3.1_source + acheck-rules-fr_0.6_source + achilles_2-8_source + ack_1.39-12_source + ack-grep_1.96-2_source + acl_2.2.51-8_source + acl2_4.3-3_source + aclock.app_0.2.3-4.3_source + acm_5.0-28_source + aconnectgui_0.9.0rc2-1-9_source + acorn-fdisk_3.0.6-8_source + acoustid-fingerprinter_0.4-2_source + acpi_1.6-1_source + acpi-support_0.140-5_source + acpica-unix_20100528-3_source + acpid_1:2.0.16-1+deb7u1_source + acpidump_20100513-3.1_source + acpitail_0.1-4_source + acpitool_0.5.1-3_source + acr38_1.7.11-1_source + acsccid_1.0.3-1_source + actdiag_0.3.3-1_source + actionaz_3.4.2-1_source + activemq_5.6.0+dfsg-1_source + activemq-activeio_3.1.1-1_source + activemq-protobuf_1.1-3_source + activity-log-manager_0.8.0-1_source + activiz.net_1:1.0~git20111123-6_source + ada-reference-manual_1:2012.1-2_source + adabrowse_4.0.3-5_source + adacgi_1.6-17_source + adacontrol_1.12r4-3_source + adasockets_1.8.10-2_source + adblock-plus_2.1-1+deb7u1_source + adblock-plus-element-hiding-helper_1.2.2-1_source + addresses-for-gnustep_0.4.7-1_source + adduser_3.113+nmu3_source + adios_1.3-11_source + adjtimex_1.29-2.2_source + adlint_1.10.0-1_source + admesh_0.95-12_source + adminer_3.3.3-1_source + adns_1.4-2_source + adolc_2.3.0-1_source + adonthell_0.3.5-7.1_source + adonthell-data_0.3.4.cvs.20080529+dfsg-3_source + adplay_1.6-1.1_source + adplug_2.2.1+dfsg3-0.1_source + adun.app_0.81-5_source + advancecomp_1.15-1_source + advene_1.0-1_source + advi_1.10.2-1_source + adzapper_20090301.dfsg.1-0.2_source + aegis_4.24.3-3_source + aegisub_2.1.9-1_source + aeolus_0.8.4-6_source + aephea_10.008-2_source + aes2501-wy_0.1-5_source + aesfix_1.0.1-2_source + aeskeyfind_1:1.0-1_source + aeskulap_0.2.2b1-11_source + aespipe_2.4c-1_source + aether_1.13.1-2_source + aewan_1.0.01-3_source + aewm_1.3.12-2.1_source + aewm++_1.1.2-5_source + aewm++-goodies_1.0-9_source + affiche_0.6.0-8_source + afflib_3.6.6-1.1_source + afnix_2.2.0-2_source + aft_2:5.098-2_source + afterstep_2.2.11-7_source + afuse_0.2-3_source + agave_0.4.7-2.1_source + agda_2.3.0.1-2_source + agda-bin_2.3.0.1-1_source + agda-stdlib_0.6-2_source + agedu_8928-1_source + agenda.app_0.42.2-1_source + agg_2.5+dfsg1-8_source + aggregate_1.6-7_source + aghermann_0.6.0.1-1_source + aglfn_1.7-1_source + agtl_0.8.0.3-1_source + aha_0.4.4-1_source + ahcpd_0.53-1_source + ahven_2.1-4_source + aiccu_20070115-15.1_source + aide_0.15.1-8_source + aiksaurus_1.2.1+dev-0.12-6.1_source + airport-utils_2-2_source + airstrike_0.99+1.0pre6a-5_source + aisleriot_1:3.4.1-1_source + aj-snapshot_0.9.6-1_source + ajaxterm_0.10-12_source + akonadi_1.7.2-3_source + akonadi-googledata_1.2.0-1_source + akuma_1.8-1_source + alacarte_3.5.3-1_source + alarm-clock_1.2.5-1.2_source + alarm-clock-applet_0.3.3-1_source + albatross_1.36-5.4_source + aldo_0.7.6-1_source + ale_0.9.0.3-1.1_source + alembic_0.3.4+ds-3_source + alevt_1:1.6.2-5_source + alex_3.0.1-1_source + alex4_1.1-5_source + alglib_2.6.0-6_source + algol68g_2.4.1-1_source + algotutor_0.8.6-1_source + alice_0.19-1_source + alien_8.87_source + alien-hunter_1.7-1_source + alienblaster_1.1.0-7_source + aliki_0.1.0-1_source + all-in-one-sidebar_0.7.16+really-0.7.14-1_source + all-knowing-dns_1.3-1_source + allegro4.4_2:4.4.2-2.1_source + alleyoop_0.9.8-1_source + alliance_5.0-20120515-1_source + alltray_0.71b-1_source + almanah_0.9.1-1_source + alpine_2.02+dfsg-2_source + alqalam_0.2-6_source + alsa-base_1.0.25+3~deb7u1_source + alsa-lib_1.0.25-4_source + alsa-oss_1.0.25-1_source + alsa-plugins_1.0.25-2_source + alsa-tools_1.0.25-2_source + alsa-utils_1.0.25-4_source + alsaequal_0.6-4_source + alsamixergui_0.9.0rc2-1-9.1_source + alsaplayer_0.99.80-5.1_source + alsoft-conf_1.4.3-1_source + alt-ergo_0.94-2_source + alt-key_2.2.5-1_source + altermime_0.3.10-7_source + altree_1.2.1-1_source + alure_1.2-6_source + am-utils_6.2+rc20110530-3_source + amanda_1:3.3.1-4_source + amap-align_2.2-3_source + amarok_2.6~beta1+75.g47e75df-1_source + amavisd-milter_1.5.0-5_source + amavisd-new_1:2.7.1-2_source + amb-plugins_0.8.1-3_source + ambdec_0.5.1-2_source + amide_1.0.1-1_source + amideco_0.31e-3.1_source + amiga-fdisk_0.04-14_source + amispammer_3.3-1_source + amoebax_0.2.1+dfsg-1_source + amora-server_1.2~svn699-1_source + ampache-themes_3.6.1-2_source + amphetamine_0.8.10-18_source + amphetamine-data_0.8.7-14_source + ample_0.5.7-7_source + ampliconnoise_1.25-1_source + ampsharp_2.0.4-2_source + amrita2_2.0.2+dfsg.1-2_source + ams_2.0.1-5_source + amsynth_1.3.0-2_source + amtterm_1.3-1_source + amule_2.3.1-9_source + amule-emc_0.5.2-2_source + an_1.0-2_source + anacron_2.3-19_source + analitza_4:4.8.4-2_source + analog_2:6.0-19.1_source + anarchism_13.4-1_source + and_1.2.2-4.1_source + anet_0.1-3_source + angband_1:3.3.2-2.1_source + angband-doc_3.0.3.5_source + angrydd_1.0.1-8_source + animal-sniffer_1.7-2_source + animals_201007161925-8_source + anjuta_2:3.4.3-1_source + anjuta-extras_3.4.0-1_source + anki_1.2.11-1_source + ann_1.1.2+doc-3_source + anna_1.44+deb7u1_source + annotation-indexer_1.3-1_source + anon-proxy_00.05.38+20081230-2.1_source + ant_1.8.2-4_source + ant-contrib_1.0~b3+svn177-5_source + ant-phone_0.2.1-2_source + antelope_3.5.1-2_source + antennavis_0.3.1-2_source + anthy_9100h-16_source + antigrav_0.0.3-5_source + antiword_0.37-8_source + antlr_2.7.7+dfsg-4_source + antlr-maven-plugin_2.1-2_source + antlr3_3.2-7_source + ants_1.9.2+svn680.dfsg-4_source + anubis_4.1.1+dfsg1-3.1_source + anypaper_1.4-1_source + anyremote_6.0+dfsg-1_source + anyremote2html_1.4-1_source + anything-el_1.287-2_source + anytun_0.3.4-2_source + aoetools_30-3_source + aoeui_1.6~dfsg-2_source + aolserver4_4.5.1-15.1_source + aolserver4-nsldap_0.8-4_source + aolserver4-nsmysql_0.6-9_source + aolserver4-nsopenssl_3.0beta26-4_source + aolserver4-nspostgres_4.5-3_source + aolserver4-nssha1_0.1-3_source + aolserver4-nssqlite3_0.9-2_source + aolserver4-nsxml_1.5-2.1_source + ap-utils_1.5-2_source + apache-log4j1.2_1.2.16-3_source + apache-mime4j_0.6.1-2_source + apache-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_source + apache-pom_10-2_source + apache-upload-progress-module_0.1+git20110718-1_source + apache2_2.2.22-13+deb7u1_source + apachetop_0.12.6-16_source + apbs_1.3.0-2_source + apcalc_2.12.4.4-3_source + apcupsd_3.14.10-2_source + apel_10.8-2_source + apertium_3.1.0-2_source + apertium-dbus_0.1-1.1_source + apertium-en-ca_0.8.9-1_source + apertium-en-es_0.6.0-1.1_source + apertium-eo-ca_0.9.0-1.1_source + apertium-eo-es_0.9.0-1.1_source + apertium-es-ca_1.1.0-1_source + apertium-es-gl_1.0.7-1_source + apertium-es-pt_1.0.3-2.1_source + apertium-es-ro_0.7.1-2.1_source + apertium-eu-es_0.3.1-1_source + apertium-fr-ca_1.0.2-1_source + apertium-fr-es_0.9.0-1_source + apertium-oc-ca_1.0.5-1.1_source + apertium-oc-es_1.0.5-1.1_source + apertium-pt-ca_0.8.1-1_source + apertium-pt-gl_0.9.1-1_source + apertium-tolk_0.2-2.2_source + apex_1.6.10_source + apf_0.8.4-1_source + apf-firewall_9.7+rev1-3_source + apg_2.2.3.dfsg.1-2_source + apgdiff_2.3-1_source + apipkg_1.0-1.1_source + aplus-fsf_4.22.1-6_source + apmd_3.2.2-14_source + apng2gif_1.5-1_source + apoo_2.2-2_source + app-install-data_2012.06.16.1_source + apparix_07-261-1_source + apparmor_2.7.103-4_source + appconfig_1.66-1_source + apper_0.7.2-5_source + appmenu-qt_0.2.6-1_source + approx_5.3-1_source + apq_3.2.0-1_source + apq-postgresql_3.2.0-2_source + apr_1.4.6-3+deb7u1_source + apr-util_1.4.1-3_source + apron_0.9.10-5.2_source + aprsd_1:2.2.5-13-5.2_source + aprsdigi_2.4.4-3.2_source + apsfilter_7.2.6-1.3_source + apt_0.9.7.9+deb7u1_source + apt-build_0.12.44_source + apt-cacher_1.7.6_source + apt-cacher-ng_0.7.11-1_source + apt-clone_0.2.2_source + apt-dater_0.9.0-3+wheezy1_source + apt-dpkg-ref_5.3.1_source + apt-file_2.5.1_source + apt-forktracer_0.4_source + apt-listbugs_0.1.8+deb7u1_source + apt-listchanges_2.85.11_source + apt-mirror_0.4.8-5_source + apt-move_4.2.27-3_source + apt-offline_1.2_source + apt-p2p_0.1.6+nmu1_source + apt-rdepends_1.3.0-3_source + apt-setup_1:0.79_source + apt-show-source_0.10_source + apt-show-versions_0.20_source + apt-spacewalk_1.0.6-2.1_source + apt-spy_3.2.2-1_source + apt-src_0.25.1-0.1_source + apt-transport-debtorrent_0.2.2_source + apt-watch_0.4.0-2.1_source + apt-xapian-index_0.45_source + apt-zip_0.18_source + aptdaemon_0.45-2_source + aptfs_1:0+git201108031956-38fb8dc-1_source + apticron_1.1.55_source + aptitude_0.6.8.2-1_source + aptoncd_0.1.98+bzr117-1.2_source + aptsh_0.0.7+nmu2_source + apvlv_0.1.1-1.2_source + apwal_0.4.5-1_source + aqemu_0.8.2-2_source + aqsis_1.8.1-3_source + aqualung_0.9~beta11-1.2_source + ara_1.0.31_source + arandr_0.1.6-1_source + aranym_0.9.13-6_source + arbtt_0.6.2-1_source + arc_5.21p-1_source + arcboot_0.3.15_source + arcboot-installer_1.20_source + archivemail_0.9.0-1_source + archivemount_0.6.1-2_source + archmage_1:0.2.4-3_source + archmbox_4.10.0-2_source + arcload_0.5-7_source + ardentryst_1.71-4_source + ardesia_1.0-2_source + ardour_1:2.8.14-2_source + arduino_1:1.0.1+dfsg-7_source + arduino-mk_0.8-5_source + arename_4.0-2_source + argparse_1.2.1-2_source + args4j_2.0.16-2_source + argtable2_12-1_source + argus_1:2.0.6.fixes.1-16.3_source + argus-client_2.0.6.fixes.1-3_source + argvalidate_0.9.0-1_source + argyll_1.4.0-8_source + aria2_1.15.1-1_source + aribas_1.64-5_source + ario_1.5.1-1_source + arista_0.9.7-4_source + arj_3.10.22-10_source + ark_4:4.8.4-2_source + armada-backlight_1.1-6_source + armadillo_1:3.2.3+dfsg-1_source + armagetronad_0.2.8.3.2-1_source + arno-iptables-firewall_2.0.1.c-1_source + aroarfw_0.1~beta4-5_source + arora_0.11.0-1_source + arp-scan_1.8.1-2_source + arpack_3.1.1-2.1_source + arpack++_2.3-2_source + arpalert_2.0.11-7.1_source + arping_2.11-1_source + arpon_2.0-2.1_source + arptables_0.0.3.4-1_source + arpwatch_2.1a15-1.2_source + array-info_0.15-1_source + artha_1.0.2-1_source + as31_2.3.1-6_source + asc_2.4.0.0-3_source + asc-music_1.3-2_source + ascd_0.13.2-5_source + ascdc_0.3-14_source + ascii_3.11-1_source + ascii2binary_2.14-1_source + asciidoc_8.6.7-1_source + asciijump_1.0.2~beta-6_source + asciimathtml_2.0.2-1_source + asciio_1.02.71-1_source + asclock_2.0.12-23_source + asedriveiiie_3.7-3_source + asio_1.4.1-3.2_source + asis_2010-5_source + asm_1.5.3-7_source + asm2_2.2.3-6_source + asm3_3.3.2-1_source + asmail_2.1-3_source + asmix_1.5-4.1_source + asmixer_0.5-14_source + asmon_0.71-5_source + asp_1.8-8_source + aspcud_2011.03.17.dfsg-6_source + aspectc++_1:1.1+svn20120529-2_source + aspectj_1.6.12+dfsg-3_source + aspell_0.60.7~20110707-1_source + aspell-am_0.03-1-4_source + aspell-ar_0.0.20060329-4_source + aspell-ar-large_1.2-0-2_source + aspell-bn_1:0.01.1-1-2_source + aspell-br_0.50-2-6_source + aspell-cs_0.51.0-1_source + aspell-cy_0.50-3-6_source + aspell-el_0.50-3-6_source + aspell-en_7.1-0-1_source + aspell-fa_0.11-0-2_source + aspell-fr_0.50-3-7_source + aspell-ga_0.50-4-4_source + aspell-gu_0.03-0-7_source + aspell-he_1.0-0-5_source + aspell-hi_0.02-5_source + aspell-hr_0.51-4_source + aspell-hsb_0.02.0-1_source + aspell-hu_0.99.4.2-0-3_source + aspell-hy_0.10.0-0-2_source + aspell-is_0.51-0-4_source + aspell-it_2.4-20070901-0-2_source + aspell-kk_0.2-1_source + aspell-kn_0.01-2-2_source + aspell-ku_0.20-0-5_source + aspell-ml_0.04-1-5_source + aspell-mr_0.10-8_source + aspell-or_0.03-1-5_source + aspell-pa_0.01-1-4_source + aspell-pl_20110901-1_source + aspell-pt_1.5_source + aspell-ro_3.3.7-1_source + aspell-sk_0.52-0-4_source + aspell-sl_0.60-3_source + aspell-sv_0.51-0-3_source + aspell-ta_20040424-1-1_source + aspell-te_0.01-2-5_source + aspell-tl_0.4-0-10_source + aspell-uz_0.6.0-1_source + aspic_1.05-4_source + asql_1.6-1_source + asr-manpages_1.3-6_source + assimp_3.0~dfsg-1_source + assogiate_0.2.1-5_source + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_source + asterisk-core-sounds_1.4.22-1_source + asterisk-espeak_2.1-1_source + asterisk-flite_2.1-1.1_source + asterisk-moh-opsound_2.03-1_source + asterisk-prompt-de_2.0-1.1_source + asterisk-prompt-es-co_0.20070403-1_source + asterisk-prompt-fr-armelle_20070613-2_source + asterisk-prompt-fr-proformatique_20070706-1.4-2_source + asterisk-prompt-it_1:1.4.22+mm20110907-3_source + asterisk-prompt-se_1.045-1_source + astronomical-almanac_5.6-4_source + astyle_2.01-1_source + asunder_2.2-1_source + asused_3.72-9_source + aswiki_1.0.4-10_source + asylum_0.3.2-1_source + asymptote_2.15-2_source + async-http-client_1.6.5-1_source + at_3.1.13-2_source + at-spi_1.32.0-2_source + at-spi2-atk_2.5.3-2_source + at-spi2-core_2.5.3-2_source + atanks_5.5+dfsg-0.1_source + atdgen_1.2.2-1_source + aterm_1.0.1-8_source + atftp_0.7.dfsg-11_source + athcool_0.3.12-3_source + atheist_0.20110402-2_source + athena-jot_9.0-5_source + atinject-jsr330_1.0-2_source + atitvout_0.4-13_source + atk1.0_2.4.0-2_source + atkmm1.6_2.22.6-1_source + atlas_3.8.4-9+deb7u1_source + atlas-cpp_0.6.2-3_source + atlc_4.6.1-1_source + atom4_4.1-5.1_source + atomicparsley_0.9.2~svn110-4_source + atomix_2.14.0-2_source + atool_0.39.0-2_source + atop_1.26-2_source + atoppatch_1:1.23-1_source + atp_1.2-11_source + atris_1.0.7.dfsg.1-8_source + ats-lang-anairiats_0.2.3-1_source + atsar_1.7-2_source + attal_1.0~rc2-2_source + attal-themes_1.0~rc2.dfsg1-1_source + attica_0.2.0-1_source + attr_1:2.4.46-8_source + aubio_0.3.2-4.2_source + auctex_11.86-11_source + audacious_3.2.4-1_source + audacious-dumb_0.80-1_source + audacious-plugins_3.2.4-1_source + audacity_2.0.1-1_source + audex_0.74~b1-1.1_source + audiofile_0.3.4-2_source + audiolink_0.05-1.2_source + audiopreview_0.6-2_source + audioread_0.6-1_source + audit_1:1.7.18-1.1_source + audtty_0.1.12-3_source + aufs-tools_1:3.0+20120411-2_source + augeas_0.10.0-1_source + aumix_2.9.1-2_source + auralquiz_0.8.1-1_source + auth2db_0.2.5-2+dfsg-4_source + authbind_2.1.1_source + authres_0.402-1_source + auto-apt_0.3.22_source + auto-complete-el_1.3.1-2_source + auto-install-el_1.53-1_source + auto-multiple-choice_1.1.1-2_source + autoclass_3.3.6.dfsg.1-1_source + autoconf_2.69-1_source + autoconf-archive_20111221-2_source + autoconf-dickey_2.52+20101002-2_source + autoconf-gl-macros_20101226-1_source + autoconf2.13_2.13-62_source + autoconf2.59_2.59+dfsg-0.1_source + autoconf2.64_2.64-3_source + autocutsel_0.9.0-2_source + autodia_2.14-1_source + autodir_0.99.9-7.1_source + autodns-dhcp_0.8_source + autodock-vina_1.1.2-2_source + autodocksuite_4.2.3-2_source + autofill-forms_0.9.8.3-5_source + autofs_5.0.7-3_source + autogen_1:5.12-0.1_source + autojump_20-2_source + autokey_0.90.1-1.1_source + autolog_0.40-13.1_source + automake_1:1.4-p6-13.1_source + automake1.10_1:1.10.3-3_source + automake1.11_1:1.11.6-1_source + automake1.9_1.9.6+nogfdl-4_source + automatic-save-folder_1.0.4-3_source + automaton_1.11-8-1_source + automoc_1.0~version-0.9.88-5_source + automysqlbackup_2.6+debian.3-1_source + autopkgtest_2.2.3+nmu1_source + autopostgresqlbackup_1.0-2_source + autoproject_0.20-5_source + autopsy_2.24-1_source + autorenamer_0.2-1_source + autorun4linuxcd_0.13_source + autossh_1.4c-1_source + autotalent_0.2-2_source + autotools-dev_20120608.1_source + autotrace_0.31.1-16_source + autotrash_0.1.5-1_source + autounit_0.20.1-4_source + avahi_0.6.31-2_source + avahi-sharp_0.6.19-4.2_source + avalon-framework_4.2.0-8_source + avarice_2.11-1_source + avbin_7-1.3_source + avce00_2.0.0-2_source + avfs_1.0.0-4_source + aview_1.3.0rc1-9_source + avifile_1:0.7.48~20090503.ds-13_source + avinfo_1.0.a15+20090102-1_source + avogadro_1.0.3-5_source + avr-evtd_1.7.7-2_source + avr-libc_1:1.8.0-2_source + avra_1.2.3a-1_source + avrdude_5.11.1-1_source + avrp_1.0beta3-7_source + avrprog_0.2.2-2_source + awardeco_0.2-3.1_source + away_0.9.5-3_source + aweather_0.7-1_source + awesfx_0.5.1a-1.1_source + awesome_3.4.13-1_source + awesome-extra_2012061101_source + awffull_3.10.2-1_source + awl_0.53-1_source + awstats_7.0~dfsg-7_source + ax25-tools_0.0.10-rc2+cvs20120204-3_source + axel_2.4-1_source + axiom_20120501-1_source + axis_1.4-16.2_source + ayaspell-dic_3.1-1_source + aylet_0.5-3_source + ayttm_0.6.3-3_source + azr3-jack_1.2.3-1_source + azureus_4.3.0.6-5_source + babel_1.4.0.dfsg-8.1_source + babeld_1.3.1-1_source + babiloo_2.0.11-1_source + babl_0.1.10-1_source + backbone_0.5.3-2+deb7u1_source + backintime_1.0.10-1_source + backport-util-concurrent_3.1-3_source + backup-manager_0.7.10.1-2_source + backup2l_1.5-6_source + backupninja_1.0.1-1_source + backuppc_3.2.1-4_source + bacula_5.2.6+dfsg-9_source + bacula-doc_5.2.6-3_source + balance_3.42-1_source + balazar3_0.1-10_source + balazarbrothers_1.0~rc1-4.1_source + balder2d_1.0-1.1_source + ball_1.4.1+20111206-4_source + ballz_1.0.2-1_source + balsa_2.4.12-1_source + bam_0.4.0-3_source + bamf_0.2.118-1_source + bandwidthcalc_0.2-1_source + bandwidthd_2.0.1+cvs20090917-5_source + bangarang_2.1-2_source + banshee_2.4.1-3_source + banshee-community-extensions_2.4.0-1_source + baobab_3.4.1-1_source + bar_1.11.0+debian-4_source + barada-pam_0.5-3.1_source + barcode_0.98+debian-9_source + bareftp_0.3.9-1_source + barnowl_1.6.2-1.1_source + barrage_1.0.3-1_source + barry_0.18.3-5_source + base-files_7.1wheezy4_source + base-installer_1.130_source + base-passwd_3.5.26_source + basemap_1.0.3+dfsg-2_source + basenji_0.9.0-1_source + basex_7.3-1_source + bash_4.2+dfsg-0.1_source + bash-completion_1:2.0-1_source + bashburn_3.0.1-1_source + bashdb_4.2.0.8-1.1_source + basic256_0.9.6.69a-1_source + basket_1.81-3_source + bastet_0.43-2.1_source + batctl_2012.1.0-1_source + batik_1.7+dfsg-3_source + batmand_0.3.2-12_source + batmon.app_0.6-1_source + battery-stats_0.3.6-1_source + battleball_2.0-17_source + bauble_0.9.7-2_source + baycomepp_0.10-12.2_source + baycomusb_0.10-12.1_source + bb_1.3rc1-8.1_source + bbdb_2.36-3_source + bbe_0.2.2-1_source + bbmail_0.8.3-6_source + bbpager_0.4.7-3_source + bbrun_1.6-6_source + bbtime_0.1.5-12_source + bc_1.06.95-2_source + bcel_5.2-9_source + bcfg2_1.2.2-2_source + bchunk_1.2.0-12_source + bcpp_0.0.20050725-2_source + bcron_0.09-13_source + bdfresize_1.5-6_source + beaker_1.6.3-1.1_source + beancounter_0.8.10_source + beansbinding_1.2.1-1_source + beanstalkd_1.4.6-5_source + beast_0.7.4-5_source + beautifulsoup_3.2.1-1_source + beautifulsoup4_4.1.0-1_source + beav_1:1.40-18_source + bedtools_2.16.1-1_source + beecrypt_4.2.1-4_source + beef_0.0.6-2_source + beep_1.3-3_source + beets_1.0~b14-2_source + belier_1.2-2_source + beneath-a-steel-sky_0.0372-4_source + berusky_1.4-1_source + berusky-data_1.4-1_source + bespin_0.r1552-1_source + betaradio_1.4-1_source + between_6+dfsg1-2_source + bf-utf_0.06_source + bfbtester_2.0.1-7.1_source + bfm_0.6.4-5_source + bglibs_1.106-1_source + bgoffice_4.1-3_source + bgoffice-computer-terms_0.0.200909080118-1_source + bhl_1.7.3-2_source + biabam_0.9.7-7_source + bibclean_2.11.4.1-4_source + bibcursed_2.0.0-6_source + biber_0.9.9+release-1_source + biblatex_1.7-1_source + biblatex-dw_1.4-1_source + bible-kjv_4.26_source + bibledit-bibletime_1.1.1-1_source + bibledit-gtk_4.6-1_source + bibledit-xiphos_1.1.1-1_source + bibletime_2.9.1-2_source + bibtex2html_1.97-2_source + bibtexconv_0.8.20-1_source + bibtool_2.55+ds-1_source + bibus_1.5.2-1_source + bibutils_4.12-5_source + bicyclerepair_0.9-6_source + bidentd_1.1.4-1.1_source + bidiui_0.9.6-1_source + bidiv_1.5-4_source + biff_1:0.17.pre20000412-5_source + big-cursor_3.8_source + billard-gl_1.75-11_source + biloba_0.9.3-4_source + bin-prot_2.0.7-1_source + binclock_1.5-6_source + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_source + bindex_2.2+svn101-1_source + bindfs_1.10.3-2_source + bindgraph_0.2a-5.1_source + binfmt-support_2.0.12_source + binfmtc_0.17-1_source + bing_1.1.3-2_source + biniax2_1.30-1_source + biniou_1.0.0-1_source + binkd_0.9.11-1.1_source + bino_1.4.0-1_source + bins_1.1.29-16_source + binstats_1.08-8_source + binutils_2.22-7_source + binutils_2.22-8_source + binutils-avr_2.20.1-3_source + binutils-h8300-hms_2.16.1-8_source + binutils-m68hc1x_1:2.18-3.2_source + binutils-mingw-w64_2_source + binutils-msp430_2.22~msp20120406-2_source + binutils-z80_2.22-3_source + bio2jack_0.9-2.1_source + biococoa_2.2.2-1_source + biofox_1.6-1_source + biogenesis_0.8-1_source + biojava-live_1:1.7.1-2_source + biojava3-live_3.0.4-1_source + biomaj_1.2.1-1_source + bioperl_1.6.901-3_source + bioperl-run_1.6.9-1_source + biosig4c++_1.3.0-2_source + biosquid_1.9g+cvs20050121-2_source + bip_0.8.8-2_source + bird_1.3.7-1_source + birthday_1.6.2-3_source + bisho_0.27.2+git20111122.9e68ef3d-1_source + bison_1:2.5.dfsg-2.1_source + bison++_1.21.11-3_source + bisonc++_4.01.00-1_source + bist_0.5.2-1_source + bitlbee_3.0.5-1.2_source + bitmap-mule_8.5+0.20030825.0433-12_source + bitmeter_1.2-3_source + bitops_1.0-4.1-2_source + bitpim_1.0.7+dfsg1-3_source + bitstormlite_0.2q-3_source + bitstream_1.0-1_source + bittornado_0.3.18-10_source + bittorrent_3.4.2-11.4_source + bjsonrpc_0.2.0-1_source + bkchem_0.13.0-4_source + bkhive_1.1.1-1_source + black-box_1.4.8-2_source + blackbox_0.70.1-13_source + blackbox-themes_0.5_source + blacs-mpi_1.1-31_source + blacs-pvm_1.1-21_source + blahtexml_0.9-1.1_source + blam_1.8.9-3_source + blas_1.2.20110419-5_source + blazeblogger_1.2.0-3_source + blcr_0.8.5-2_source + bld_0.3.4.1-4_source + bleachbit_0.9.2-2_source + blender_2.63a-1_source + blends_0.6.16.2_source + blepvco_0.1.0-3_source + bless_0.6.0-4_source + bley_0.1.5-2_source + blhc_0.03+20120626+git93afe23-1_source + blinken_4:4.8.4-1_source + bliss_0.72-4_source + blist_1.3.4-2_source + blitz++_1:0.9-13_source + blktap_2.0.90-1_source + blktap-dkms_2.0.91-1_source + blktool_4-6.1_source + blktrace_1.0.1-2.1_source + blobandconquer_1.11-dfsg+20-1_source + blobby_1.0~rc1-2_source + bloboats_1.0.1.dsfg-3_source + blobwars_1.19-2_source + blockattack_1.4.1+ds1-2.1_source + blockdiag_1.1.6-1.1_source + blockout2_2.4+dfsg1-6_source + blocks-of-the-undead_1.0-5_source + blop_0.2.8-6_source + blosxom_2.1.2-1_source + blt_2.4z-4.2_source + bluedevil_1.2.3-1_source + bluefish_2.2.3-4_source + blueman_1.23-1_source + bluemindo_0.3-4_source + bluemon_1.4-6_source + blueproximity_1.2.5-6_source + bluetile_0.6-1_source + bluewho_0.1-1_source + bluez_4.99-2_source + bluez-hcidump_2.4-1_source + bluez-tools_0.1.38+git662e-3_source + bmagic_3.7.0-1.1_source + bmf_0.9.4-9_source + bml_0.6.1-1_source + bmon_2.0.1-3_source + bnd_1.50.0-5_source + bnfc_2.4.2.0-2_source + boa_0.94.14rc21-3.1_source + boa-constructor_0.6.1-12_source + boats_201204-1_source + bobcat_3.01.00-1_source + bobo_0.2.2-3_source + bobot++_1:1.97-10.4_source + bochs_2.4.6-5_source + bodr_9-1_source + bogl_0.1.18-8_source + bognor-regis_0.6.12+git20101007.02c25268-7_source + bogofilter_1.2.2+dfsg1-2_source + boinc_7.0.27+dfsg-5_source + bokken_1.6-1_source + bombardier_0.8.3+nmu1_source + bomberclone_0.11.9-4_source + bomstrip_9-6_source + bonnie++_1.96_source + boo_0.9.5~git20110729.r1.202a430-2_source + bookletimposer_0.2-1_source + bookview_3.2.1-1_source + boolector_1.4.ffc2089.100608-1_source + boolstuff_0.1.12-3_source + boost-defaults_1.49.0.1_source + boost1.49_1.49.0-3.2_source + boot_1.3-5-1_source + boot-info-script_0.61-1_source + bootcd_3.28_source + bootchart_0.10~svn407-4.1~deb7u1_source + bootchart2_0.14.4-3_source + booth_0.1.0-1_source + bootp_2.4.3-18_source + bootpc_0.64-7_source + bopm_3.1.3-3_source + bordeaux-threads_0.0.2-1_source + bosh_0.6-6_source + boswars_2.6.1-2_source + botan1.10_1.10.5-1_source + bottlerocket_0.05b3-14.1_source + bouncy_0.6.20071104-3_source + bouncycastle_1.44+dfsg-3.1_source + bowtie_0.12.7-3_source + bowtie2_2.0.0-beta6-3_source + box2d_2.0.1+dfsg1-1_source + boxbackup_0.11.1~r2837-1_source + boxes_1.0.1a-2.3_source + boxshade_3.3.1-7+wheezy1_source + bozohttpd_20111118-1_source + bplay_0.991-10_source + bppphyview_0.2.1-1_source + bppsuite_0.7.0-1_source + bpython_0.11-1_source + br.ispell_3.0~beta4-15_source + brag_1.4.1-2_source + brailleutils_1.2~b-2_source + brandy_1.20~pre5-4_source + brasero_3.4.1-4_source + brewtarget_1.2.4+dfsg-1.1_source + brian_1.3.1-1_source + brickos_0.9.0.dfsg-6_source + bridge-method-injector_1.4-3_source + bridge-utils_1.5-6_source + brightside_1.4.0-4.1_source + briquolo_0.5.7-4_source + bristol_0.60.10-3_source + brltty_4.4-10+deb7u1_source + browser-history_2.8-15_source + brp-pacu_2.1.1+git20110314~repack1-2_source + brutalchess_0.5.2+dfsg-4_source + brutefir_1.0k-2_source + bs2b-ladspa_0.9.1-3_source + bsaf_1.9-3_source + bsd-finger_0.17-15_source + bsd-mailx_8.1.2-0.20111106cvs-1_source + bsdgames_2.17-21_source + bsdiff_4.3-14_source + bsdmainutils_9.0.3_source + bsfilter_1:1.0.17-3_source + bsh_2.0b4-12_source + bsign_0.4.5_source + bsl_0.5.0-2.1_source + bsnes_0.088-5_source + btag_1.1.3-1_source + btanks_0.9.8083-4_source + bterm-unifont_1.2_source + bti_032-1_source + btrfs-tools_0.19+20120328-7.1_source + btscanner_2.1-5.1_source + btyacc_3.0-5_source + bubbros_1.6-2_source + bucardo_4.99.5-1_source + buddy_2.4-8_source + buffer_1.19-11_source + buffy_1.5-1_source + buffycli_0.7-1_source + bugsquish_0.0.6-7_source + bugz_0.9.3-2_source + buici-clock_0.4.9.2_source + build-essential_11.5_source + build-helper-maven-plugin_1.5-2_source + buildapp_1.4.2-1_source + buildbot_0.8.6p1-1_source + buildbot-slave_0.8.6p1-1_source + buildtorrent_0.8-4_source + bulletml_0.0.6-5_source + bum_2.5.2-1_source + bumprace_1.5.4-1_source + bundler_1.1.4-6_source + bup_0.25~git2011.11.04-5.1_source + burgerspace_1.9.0-4_source + burn_0.4.6-2_source + burp_1.3.8-1_source + busybox_1:1.20.0-7_source + buthead_1.1-2_source + buxon_0.0.5-3_source + buzztard_0.5.0-4_source + bvi_1.3.2-2_source + bwa_0.6.2-1_source + bwbar_1.2.3-2_source + bwbasic_2.20pl2-11_source + bwidget_1.9.5-1_source + bwm-ng_0.6-3.1_source + byacc_20120115-1_source + byacc-j_1.15-1_source + bygfoot_2.3.2-1_source + byobu_5.16-1.1_source + bytecode_0.92.svn.20090106-1_source + byzanz_0.2.2+git22.10.2011-1.3_source + bzflag_2.0.16.20100405+nmu1_source + bzip2_1.0.6-4_source + bzr_2.6.0~bzr6526-1_source + bzr-builddeb_2.8.4_source + bzr-cvsps-import_0.0.1~bzr71-1_source + bzr-dbus_0.1~bzr52-2_source + bzr-email_0.0.1~bzr57-2_source + bzr-explorer_1.3.0~bzr556-1_source + bzr-fastimport_0.13.0-2_source + bzr-git_0.6.9-1_source + bzr-grep_0.4.0+bzr147-1_source + bzr-gtk_0.103.0+bzr792-3_source + bzr-loom_2.2.0-2_source + bzr-pipeline_1.4-3_source + bzr-rewrite_0.6.3+bzr256-1_source + bzr-search_1.7.0~bzr94-1_source + bzr-stats_0.1.0+bzr51-1_source + bzr-svn_1.2.1-1_source + bzr-upload_1.1.0-2_source + bzr-xmloutput_0.8.8+bzr162-3_source + bzrtools_2.5+bzr786-2_source + c++-annotations_9.4.0-1_source + c-ares_1.9.1-3_source + c-cpp-reference_2.0.2-8_source + c-icap_1:0.1.6-1.1_source + c-icap-modules_1:0.1.6-1_source + c-repl_0.0.20071223-1_source + c-sig_3.8-17_source + c2050_0.3b-4_source + c2esp_24-2_source + c2hs_0.16.3-2_source + c3p0_0.9.1.2-7_source + ca-certificates_20130119_source + ca-certificates-java_20121112+nmu2_source + cabal-debian_1.25-1_source + cabextract_1.4-3_source + cableswig_0.1.0+cvs20111009-1_source + cachefilesd_0.9-3.1_source + cacti_0.8.8a+dfsg-5+deb7u2_source + cacti-spine_0.8.8a-1_source + cadabra_1.29-1_source + cadaver_0.23.3-1_source + cadencii_3.3.9+svn20110818.r1732-2_source + cadubi_1.3-2_source + cain_1.9-4_source + cairo_1.12.2-3_source + cairo-5c_1.8.1_source + cairo-clock_0.3.4-2_source + cairo-dock_3.0.0-2+deb7u1_source + cairo-dock-plug-ins_3.0.0-1_source + cairo-ocaml_1:1.2.0-2_source + cairodevice_2.19-1_source + cairomm_1.10.0-1_source + cairosvg_0.4.3-1_source + cakephp_1.3.15-1_source + cakephp-instaweb_0.5-1_source + cal_4.0-3_source + cal3d_0.11.0-4.1_source + calabash_0.0.3-2_source + calamaris_2.99.4.0-18_source + calcoo_1.3.18-3_source + calcurse_2.9.2-1_source + calendar_2.03-1_source + calendarserver_3.2+dfsg-4_source + calf_0.0.18.6-5_source + calibre_0.8.51+dfsg1-0.1_source + calife_1:3.0.1-4_source + calligra_1:2.4.4-3_source + calligra-l10n_1:2.4.3-1_source + calligra-transitional_2_source + cam_1.05-8_source + cameleon_1.9.21-2_source + camera.app_0.8.0-9_source + cameramonitor_0.2-2.1_source + caml2html_1.4.1-3_source + camlbz2_0.6.0-6_source + camlidl_1.05-14_source + camlidl-doc_1.04-4_source + camlimages_1:4.0.1-4_source + camljava_0.3-1_source + camlmix_1.3.0-3_source + camlp5_6.06-1_source + camltemplate_1.0.2-1_source + camlzip_1.04-6_source + camomile_0.8.4-2_source + camorama_0.19-2.2_source + camping_2.1.498-4_source + canlock_2b-6_source + canna_3.7p3-11_source + canna-shion_0.0.20010204-11_source + canto_0.7.10-4_source + cantor_4:4.8.4-2_source + capi4hylafax_1:01.03.00.99.svn.300-18_source + capistrano_2.12.0-1_source + cappuccino_0.5.1-2.1_source + caps_0.4.2-1_source + car_2.0-12-1_source + cardstories_1.0.6-1.2_source + caret_5.6.4~dfsg.1-3_source + carettah_0.1.2-1_source + caribou_0.4.4-1_source + carmetal_3.5.2+dfsg-1_source + carton_0.9.7-1_source + caspar_20120530-1_source + castle-combat_0.8.1.dfsg.1-3_source + castor_1.3.2-1_source + catcodec_1.0.5-1_source + catdoc_0.94.4-1.1_source + catdvi_0.14-12.1_source + catfish_0.3.2-2_source + catools_1.12-2_source + catwalk_2.0.2-5_source + cavezofphear_0.5.1-1_source + cb2bib_1.4.8-1_source + cba_0.3.6-4_source + cbflib_0.7.9.1-3_source + cbios_0.25-2_source + cbm_0.1-9_source + cbmc_4.1-1.2_source + cbmplugs_1.2.2-1_source + cbrpager_0.9.22-1_source + cc1111_2.9.0-2_source + ccache_3.1.7-1_source + ccbuild_2.0.3-1_source + cccc_1:3.1.4-4_source + cccd_0.3beta4-6.2_source + ccd2iso_0.3-3_source + ccfits_2.4-1_source + ccid_1.4.7-1_source + cciss-vol-status_1.09-2+deb7u1_source + cclib_1.0.1-2_source + cclive_0.7.9-1_source + ccontrol_1.0-1_source + cconv_0.6.2-1_source + ccrypt_1.9-4_source + ccseapps_2.5-2_source + cctools_3.5.1-2_source + ccze_0.2.1-2_source + cd-circleprint_0.7.0-3_source + cd-discid_1.3.1-1_source + cd-hit_4.6-2012-04-25-1_source + cd5_0.1-3_source + cdargs_1.35-9_source + cdbackup_0.7.0-5_source + cdbs_0.4.115+deb7u1_source + cdcat_1.8-1_source + cdcd_0.6.6-13.1_source + cdck_0.7.0-5_source + cdcover_0.9.1-10_source + cdde_0.3.1-1_source + cddlib_094b.dfsg-4.2_source + cde_0.1-1_source + cdebconf_0.182_source + cdebconf-entropy_0.24_source + cdebconf-terminal_0.18_source + cdebootstrap_0.5.9_source + cdecl_2.5-11_source + cdi-api_1.0-1_source + cdk_1:1.2.10-3_source + cdlabelgen_4.1.0-2_source + cdo_1.5.4+dfsg.1-5_source + cdparanoia_3.10.2+debian-10.1_source + cdpr_2.4-1_source + cdrdao_1:1.2.3-0.3_source + cdrkit_9:1.1.11-2_source + cdrom-checker_1.23_source + cdrom-detect_1.43_source + cdrom-retriever_1.28_source + cdtool_2.1.8-release-2_source + cduce_0.5.5-1_source + cdw_0.7.1-1_source + cecil_0.9.5+dfsg-2_source + cecil-flowanalysis_0.1~vcs20110809.r1.b34edf6-2_source + cecilia_2.0.5-2.2_source + cedar-backup2_2.21.0-2_source + ceferino_0.97.8-3.1_source + cegui-mk2_0.7.6-2_source + celery_2.5.3-4_source + celestia_1.6.1+dfsg-2_source + cellwriter_1.3.4-1.1_source + cenon.app_3.93-1.2_source + centerim_4.22.10-2_source + cereal_0.24-1_source + cerealizer_0.7-4_source + cernlib_20061220+dfsg3-2_source + certificatepatrol_2.0.14-3_source + certmonger_0.57-1_source + ceve_1.4-2_source + cfengine2_2.2.10-5_source + cfengine3_3.2.4-2+nmu1_source + cffi_20100219-2_source + cfflib_2.0.5-1_source + cfget_0.18-1_source + cfi_3.0-8_source + cfingerd_1.4.3-3.1_source + cfitsio3_3.300-2_source + cflow_1:1.4+dfsg1-2_source + cfortran_4.4-14_source + cfourcc_0.1.2-8_source + cfv_1.18.3-2_source + cgal_4.0-5_source + cgdb_0.6.6-2_source + cgi-extratags-perl_0.03-1_source + cgiemail_1.6-37_source + cgilib_0.6-1_source + cglib_2.2.2+dfsg-5_source + cgoban_1.9.14-17_source + cgsi-gsoap_1.3.5-1_source + cgvg_1.6.2-2.1_source + chaksem_1.7b-5.1_source + chalow_1.0-2_source + chameleon-cursor-theme_0.5-4_source + changetrack_4.7-1_source + chaosreader_0.94-3_source + charactermanaj_0.98+svn20120311.r42-1_source + chardet_2.0.1-2_source + charls_1.0-2_source + charmap.app_0.2-11_source + charybdis_3.3.0-7.1_source + chase_0.5.2-4_source + chasen_2.4.5-6_source + check_0.9.8-2_source + check-mk_1.1.12p7-1_source + check-postgres_2.19.0-1_source + checkbot_1.80-2_source + checkgmail_1.13+svn43-3_source + checkinstall_1.6.2-4_source + checkpolicy_2.1.8-2_source + checkpw_1.02-1_source + checksecurity_2.0.14_source + checkstyle_5.4-2_source + cheese_3.4.2-2_source + cheetah_2.4.4-3_source + chef_10.12.0-3_source + chef-expander_10.12.0-1_source + chef-server-api_10.12.0-1_source + chef-solr_10.12.0+dfsg-2_source + chemeq_2.9-1_source + chemfp_1.0-1_source + chemical-mime-data_0.1.94-6_source + chemical-structures_2.2.dfsg.0-8_source + chemtool_1.6.13-1_source + cherrypy3_3.2.2-2_source + cherrytree_0.25.4-1_source + chewmail_1.2-1_source + chiark-tcl_1.1.1_source + chiark-utils_4.2.0_source + chicken_4.7.0-1_source + childsplay_1.6-1_source + childsplay-alphabet-sounds-bg_0.9.1-2_source + childsplay-alphabet-sounds-ca_0.9.1-2_source + childsplay-alphabet-sounds-de_0.9.1-2_source + childsplay-alphabet-sounds-el_0.9-2_source + childsplay-alphabet-sounds-en-gb_0.9.1-2_source + childsplay-alphabet-sounds-es_0.9.1-2_source + childsplay-alphabet-sounds-fr_0.9.1-2_source + childsplay-alphabet-sounds-it_0.9.1-2_source + childsplay-alphabet-sounds-nb_0.9.1-1_source + childsplay-alphabet-sounds-nl_0.9.1-1_source + childsplay-alphabet-sounds-pt_0.9.1-1_source + childsplay-alphabet-sounds-ro_0.9.1-1_source + childsplay-alphabet-sounds-ru_0.9.1-1_source + childsplay-alphabet-sounds-sl_0.9.1-1_source + childsplay-alphabet-sounds-sv_0.9.2-1_source + chimera2_2.0a19-7_source + chipmunk_5.3.4-1_source + chipw_2.0.6-1.1_source + chirp_0.1.12-1_source + chise-base_0.3.0-2_source + chkconfig_11.4-54.60.1-1_source + chkrootkit_0.49-4.1_source + chktex_1.6.4-4_source + chm2pdf_0.9.1-1.1_source + chmlib_2:0.40a-2_source + chntpw_0.99.6-2_source + choose-mirror_2.45_source + choosewm_0.1.6-3_source + choqok_1.3-1_source + chordii_4.3+repack-2_source + chromaprint_0.6-2_source + chromium-browser_31.0.1650.63-1~deb7u1_source + chromium-bsu_0.9.15-1_source + chron_2.3-42-1_source + chronicle_4.6-2_source + chrony_1.24-3.1+deb7u2_source + chrootuid_1.3-6_source + chrpath_0.13-2_source + chuck_1.2.0.8.dfsg-1.4_source + cia-clients_20120903_source + ciderwebmail_1.04-1_source + cifs-utils_2:5.5-1_source + cil_0.07.00-6_source + cimg_1.4.9-2_source + cinfony_1.1-1_source + ciphersaber_0.61-4_source + cipux_3.4.0.13-4_source + cipux-cat-web_3.4.0.3-4.1_source + cipux-dog_3.4.0.0-6_source + cipux-object_3.4.0.5-2_source + cipux-passwd_3.4.0.3-2_source + cipux-rbac-simple_3.4.0.0-4_source + cipux-rpc_3.4.0.9-3_source + cipux-rpc-client_3.4.0.7-2_source + cipux-storage_3.4.0.2-6_source + cipux-task_3.4.0.7-4_source + circos_0.61-3_source + circos-tools_0.16-2_source + circuits_1.2.1-1_source + circuslinux_1.0.3-28_source + citadel_8.14-2_source + cjet_0.8.9-3_source + cjk_4.8.3+git20120621-1_source + ckanclient_0.9-1_source + ckeditor_3.6.1-1_source + ckermit_302-3_source + ckport_0.1~rc0-3_source + cksfv_1.3.14-2_source + cl-alexandria_0.0.20100217-1_source + cl-asdf_2:2.22-1_source + cl-awk_1-3_source + cl-babel_0.3.0+20091229-1_source + cl-base64_3.3.3-2_source + cl-closer-mop_2:0.6-1_source + cl-cluck_0.1.3-2_source + cl-clx-sbcl_0.7.4-5_source + cl-contextl_1:0.61-1_source + cl-fftw3_1.0-1_source + cl-flexichain_1.5.1.dfsg.1-2_source + cl-ftp_1.3.3-2_source + cl-getopt_1.2.0-3_source + cl-hyperobject_2.12.0-1_source + cl-irc_1:0.8.1-dfsg-3.1_source + cl-irc-logger_0.9.4-3_source + cl-kmrcl_1.106-1_source + cl-launch_3.018-1_source + cl-lexer_1-4_source + cl-lml_2.5.7-4_source + cl-lml2_1.6.6-4_source + cl-lw-compat_0.23-1_source + cl-mcclim_0.9.6.dfsg.cvs20100315-1_source + cl-md5_1:1.8.5-1_source + cl-modlisp_0.6-7_source + cl-pg_1:20061216-5_source + cl-photo_0.14-4_source + cl-pipes_1.2.1-5_source + cl-plplot_0.6.0-3_source + cl-portable-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_source + cl-postoffice_1.8.2.3-4_source + cl-ppcre_2.0.3-1_source + cl-ptester_2.1.2-6_source + cl-pubmed_2.1.3-5_source + cl-puri_1.5.5-1_source + cl-regex_1-3_source + cl-reversi_1.0.14-4_source + cl-rlc_0.1.3-3_source + cl-rsm-mod_1.4_source + cl-rss_0.1.1-6_source + cl-rt_20040621-4_source + cl-salza_0.7.4-1_source + cl-spatial-trees_0.2-3_source + cl-split-sequence_20050802-3_source + cl-sql_6.2.0-1_source + cl-uffi_2.1.2-1_source + cl-usocket_0.5.5-1_source + cl-xlunit_0.6.3-2_source + cl-xmls_1.4.1-1_source + cl-xptest_1.2.4-3_source + clalsadrv_2.0.0-3_source + clam_1.4.0-5.1_source + clam-chordata_1.0.0-2_source + clam-networkeditor_1.4.0-3.1_source + clamassassin_1.2.4-1_source + clamav_0.97.8+dfsg-1_source + clamav-unofficial-sigs_3.7.1-3_source + clamsmtp_1.10-10_source + clamtk_4.41-1_source + clamz_0.5-1_source + clang_1:3.0-6.2_source + clanlib_1.0~svn3827-3_source + clasp_2.0.6-2_source + classworlds_1.1-final-5_source + claws-mail_3.8.1-2_source + claws-mail-extra-plugins_3.8.1-2_source + claws-mail-themes_20120129.dfsg-1_source + clawsker_0.7.8-1_source + clc-intercal_1:1.0~4pre1.-94.-2-2_source + cldump_0.11~dfsg-1_source + clean-crypto_1-1_source + clearlooks-phenix-theme_2.0.5-1_source + clearsilver_0.10.5-1.3_source + clementine_1.0.1+dfsg-2_source + clex_3.15-1_source + clfswm_20111015.git51b0a02-2_source + clhep_2.1.2.3-1_source + cli-common_0.8.2_source + clif_0.93-9_source + clinica_0.2.1~dfsg-1_source + cliofetion_2.2.0-1_source + clipf_0.4-1_source + clipit_1.4.1-1_source + clippoly_0.11-3_source + clips_6.24-3_source + clips-doc_6.24-2_source + cliquer_1.21-1_source + clirr_0.6-3_source + clirr-maven-plugin_2.3-1_source + clisp_1:2.49-8.1_source + clive_2.3.3-2_source + cln_1.3.2-1.2_source + cloc_1.56-1_source + clock-setup_0.114_source + clojure-contrib_1.2.0-2_source + clojure-maven-plugin_1.3.3-3_source + clojure1.2_1.2.1+dfsg-4_source + clojure1.4_1.4.0+dfsg-2_source + clonalframe_1.2-3_source + cloog_0.17.0-3_source + cloog-ppl_0.15.11-4_source + cloop_2.6.39.2-1_source + clp_1.12.0-2.1_source + clthreads_2.4.0-4_source + clucene-core_0.9.21b-2_source + clucy_0.3.0-1_source + clustalo_1.1.0-1_source + clustalw_2.1+lgpl-2_source + clustalx_2.1+lgpl-2_source + cluster_1.14.2-1_source + cluster-agents_1:1.0.3-4_source + cluster-glue_1.0.9+hg2665-1_source + clustershell_1.6-1_source + clusterssh_4.01.01-4_source + clutter-1.0_1.10.8-2_source + clutter-gesture_0.0.2.1-7_source + clutter-gst_1.5.4-1+build0_source + clutter-gtk_1.2.0-2_source + clutter-imcontext_0.1.4-3_source + clutter-sharp_1.0.0~alpha3~git20090817.r1.349dba6-8_source + clxclient_3.6.1-6_source + clzip_1.3-2_source + cm-super_0.3.4-7.1_source + cmake_2.8.9-1_source + cmatrix_1.2a-4_source + cmd2_0.6.4-1_source + cmdpack_1.03-1_source + cmdtest_0.3-1_source + cmigemo_20110227-7_source + cmigrep_1.5-9_source + cminpack_1.2.2-1_source + cmip5-cmor-tables_1.3.12-1_source + cmor_2.8.0-2_source + cmospwd_5.0+dfsg-2_source + cmph_0.9-1_source + cmt_1.16-1_source + cmtk_2.2.2-2_source + cmucl_20c-2_source + cmus_2.4.3-2_source + cnf_4.0-2_source + cntlm_0.92.3-1_source + coala_1.0.1-5_source + cobalt-panel-utils_1.0.2-3_source + cobertura_1.9.4.1+dfsg-3_source + cobertura-maven-plugin_2.3+dfsg-2_source + coccinella_0.96.20-6_source + coccinelle_1.0.0~rc12.deb-5_source + coco-cpp_20120102-1_source + coco-cs_20110419-5_source + coco-doc_20060919-2_source + coco-java_20110419-3_source + code-saturne_2.1.7-1_source + code2html_0.9.1-4_source + codeblocks_10.05-2.1_source + codecgraph_20120114-1_source + codegroup_19981025-6_source + codemirror-js_2.23-1_source + codenarc_0.13-2_source + coderay_1.0.6-2_source + codespeak-lib_1.4.8-1_source + codetools_0.2-8-1_source + codeville_0.8.0-2_source + codfis_0.4.7-2_source + cogl_1.10.2-7_source + coherence_0.6.6.2-6+deb7u1_source + coils_2002-3_source + coin3_3.1.3-2.2_source + coinor-cbc_2.5.0-3_source + coinor-cgl_0.55.0-1.1_source + coinor-csdp_6.1.1-1_source + coinor-dylp_1.6.0-1.1_source + coinor-flopc++_1.0.6-3.1_source + coinor-ipopt_3.10.2-1.1_source + coinor-osi_0.103.0-1_source + coinor-symphony_5.2.4-1.2_source + coinor-vol_1.1.7-1_source + coinst_1.01-2_source + coinutils_2.6.4-3_source + coldfire_0.2.2-2.3_source + colibri_0.2.2-1_source + collabtive_0.7.6-1_source + collatinus_10.0-3_source + collectd_5.1.0-3_source + collections15_4.01+ds1-1_source + collectl_3.6.3-1_source + collectl-utils_3.2.1-1_source + colo_1.22-1_source + colo-installer_1.22_source + colorblind_0.0.1-1_source + colorchooser_1.0+dfsg-1_source + colorcode_0.7.2-1_source + colord_0.1.21-1_source + colordiff_1.0.10-1_source + colorgcc_1.3.2.0-10_source + colorhug-client_0.1.10-1_source + colormake_0.9-1_source + colorname_0.4+dfsg.1-3_source + colorpicker_1.0.0-2_source + colortail_0.3.3-1_source + colortest_20110624-1_source + colortest-python_1.4-2_source + colrconv_0.99.3-4_source + combat_0.8.1-1_source + comedilib_0.10.0-3_source + comgt_0.32-2_source + comix_4.0.4-1_source + comixcursors_0.7.2-2_source + command-not-found_0.2.38-1_source + command-runner-applet_0.2-2_source + commando_0.1.2a-3_source + commit-patch_2.4-1_source + common-lisp-controller_7.10_source + commons-beanutils_1.8.3-3_source + commons-configuration_1.7-1_source + commons-csv_0.1-SNAPSHOT+svn678580-3_source + commons-daemon_1.0.10-3_source + commons-exec_1.0.1-1_source + commons-httpclient_3.1-10.2_source + commons-io_1.4-4_source + commons-javaflow_0.0~svn20060411-5_source + commons-jci_1.0-5_source + commons-math_2.2-2_source + commons-parent_22-2_source + commons-pool_1.5.6-1_source + commons-vfs_2.0-3_source + compactheader_2.0.5-1_source + comparepdf_1.0.1-1_source + compartment_1.1.0-4_source + compass-fancy-buttons-plugin_1.1.1~20120313-1_source + compass-h5bp-plugin_0.0.5-1_source + compass-layoutgala-plugin_0.2-1_source + compass-slickmap-plugin_0.5.1.1-2_source + compass-susy-plugin_0.9-2_source + compass-yui-plugin_0~20100724-2_source + compiz-fusion-bcop_0.8.4-1_source + composite_0.006.2+dfsg0-2_source + comprez_2.6.1-2_source + concalc_0.9.2-2_source + concordance_0.24-1.1_source + concurrent-dfsg_1.3.4-4_source + condor_7.8.2~dfsg.1-1+deb7u1_source + conduit_0.3.17-1.1_source + cone_0.89-1_source + confclerk_0.5.5-1_source + confget_1.03-1_source + config-manager_0.4-2.1_source + config-package-dev_4.13_source + configobj_4.7.2+ds-4_source + configshell_1.1-3_source + configure-debian_1.0.2-0.1_source + confluence_0.10.6-7_source + confuse_2.7-4_source + congruity_15-1_source + conkeror_1.0~~pre+git120527-1_source + conky_1.9.0-2_source + connect-proxy_1.101-1_source + connectagram_1.0.1-1_source + connectomeviewer_2.1.0-1_source + connman_1.0-1.1+wheezy1_source + conntrack_1:1.2.1-1_source + conque_2.3-1_source + cons_2.3.0.1+2.2.0-1_source + console-braille_1.3_source + console-common_0.7.87_source + console-cyrillic_0.9-16.2_source + console-data_2:1.12-2_source + console-log_1.1-2_source + console-setup_1.88_source + console-tools_1:0.2.3dbs-70_source + consolekit_0.4.5-3.1_source + conspy_1.8-2_source + contacts_0.9-2_source + context_2012.05.30.20120611-1_source + context-modules_20120611-1_source + contextfree_2.2+dfsg1-2.1_source + controlaula_1.8.0-3_source + convertall_0.4.2-1_source + convlit_1.8-1_source + convmv_1.12-2_source + cook_2.33-1_source + cookie-monster_1.1.0-5~deb7u1_source + cookietool_2.5-5_source + coolkey_1.1.0-12_source + coolmail_1.3-11_source + copyfs_1.0.1-4_source + copyright-update_2010.0307+git23ecad8-2_source + coq_8.3.pl4+dfsg-2_source + coq-float_1:8.3pl1-4_source + coreutils_8.13-3.5_source + coriander_2.0.1-1_source + corkscrew_2.0-9_source + corosync_1.4.2-3_source + cortado_0.6.0-1_source + cortina_0.7.3-1_source + cothreads_0.10-3_source + couchdb_1.2.0-5_source + courier_0.68.2-1_source + courier-authlib_0.63.0-6_source + courier-filter-perl_0.200+ds-1_source + couriergraph_0.25-4.3_source + couriergrey_0.3.2-1_source + courierpassd_1.1.2-2_source + covered_0.7.10-1_source + cowbell_0.2.7.1-7_source + cowdancer_0.70_source + cowsay_3.03+dfsg1-4_source + cp2k_2.2.426-8_source + cpan-listchanges_0.05-1_source + cpanminus_1.5015-1_source + cpio_2.11+dfsg-0.1_source + cpipe_3.0.1-1_source + cpl_6.1.1-2_source + cplay_1.49-10_source + cpm_0.26-1_source + cpmtools_2.13-1_source + cppcheck_1.54-1_source + cpphs_1.13.3-2_source + cppo_0.9.2-1_source + cpptasks_1.0~b5-2_source + cppunit_1.12.1-4_source + cpputest_3.1-2_source + cpqarrayd_2.3-1.3_source + cproto_4.7j-5_source + cpu_1.4.3-11.3_source + cpuburn_1.4a-3_source + cpufreqd_2.4.2-2_source + cpufrequtils_008-1_source + cpuid_3.3-9_source + cpulimit_1.7-1_source + cpuset_1.5.6-2_source + cpushare_0.48-4_source + cqrlib_1.1.2-1_source + cqrlog_1.4.1-1_source + crack_5.0a-9.3_source + crack-attack_1.1.14-9.1_source + cracklib2_2.8.19-3_source + cramfs_1.1-6_source + cramfsswap_1.4.1_source + crash_6.0.6-1_source + crashmail_0.71-4_source + crashme_2.4-9_source + crasm_1.5-1_source + crawl_2:0.10.3-3_source + crda_1.1.2-1_source + cream_0.43-3_source + create-resources_0.1.3-4_source + createrepo_0.4.11-1_source + creepy_0.1.94-1_source + creoleparser_0.7.4-1_source + cricket_1.0.5-19_source + crimson_0.5.2-1_source + crip_3.9-1_source + criticalmass_1:1.0.0-1.5_source + critterding_1.0-beta12.1-1.2_source + crm114_20100106-3_source + cron_3.0pl1-124_source + cron-apt_0.9.1_source + cron-deja-vu_0.4-5_source + cronolog_1.6.2+rpk-1_source + cronometer_0.9.9-2_source + cronutils_1.2-1_source + crossfire_1.70.0-1_source + crossfire-client_1.70.0-1_source + crossfire-client-images_1.70.0-1_source + crossfire-client-sounds_1.9.1-1_source + crossfire-maps_1.70.0-1_source + crossfire-maps-small_1.5.0-3_source + crosshurd_1.7.44_source + crossroads_2.65-1.1_source + crtmpserver_1.0~dfsg-3_source + cruft_0.9.16_source + crypt++el_2.94-1_source + cryptcat_20031202-4_source + cryptgps_0.2.1-7_source + cryptkeeper_0.9.5-5.1_source + cryptmount_4.3.1-1_source + cryptokit_1.5-1_source + cryptsetup_2:1.4.3-4_source + crystalcursors_1.1.1-13_source + crystalhd_1:0.0~git20110715.fdd2f19-9_source + cscope_15.7a-3.6_source + csh_20110502-2_source + csmash_0.6.6-6.6_source + csmash-demosong_1.4_source + csound_1:5.17.11~dfsg-3_source + csound-manual_1:5.13~dfsg-1_source + css-mode_0.11-7_source + cssc_1.2.0-2_source + cssed_0.4.0-4_source + cssparser_0.9.5-1_source + csstidy_1.4-3_source + cssutils_0.9.10~b1-1_source + cstocs_1:3.42-2_source + cstream_3.0.0-1_source + csv2latex_0.18-2_source + csync2_1.34-2.2_source + ctapi_1.1_source + ctdb_1.12+git20120201-4_source + ctemplate_2.2-3_source + cthumb_4.2-3_source + ctioga2_0.2-4_source + ctn_3.0.6-13_source + ctn-doc_3.0.6-3_source + ctorrent_1.3.4.dnh3.3.2-4_source + ctpl_0.3.3.dfsg-2_source + ctsim_5.2.0-1.1_source + ctwm_3.7-3.3_source + cuba_3.0+20111124-2_source + cube2font_1.2-2_source + cubictemp_2.0-1_source + cucumber_1.0.2-2_source + cudf_0.6.2-1_source + cue2toc_0.4-5_source + cuetools_1.3.1-12_source + culmus_0.121-1_source + culmus-fancy_0.0.20051018-3_source + cultivation_9+dfsg1-1_source + cunit_2.1-0.dfsg-10_source + cup_0.11a+20060608-3_source + cups_1.5.3-5+deb7u1_source + cups-filters_1.0.18-2.1_source + cups-pdf_2.6.1-6_source + cups-pk-helper_0.2.3-3_source + cupt_2.5.9_source + curl_7.26.0-1+wheezy8_source + curlftpfs_0.9.2-5_source + curtain_0.1-1_source + curves_0.8.19_source + custom-tab-width_1.0.1-2_source + customdeb_0.1_source + cutecom_0.22.0-2_source + cutesdr_1.0.5-3_source + cutils_1.6-3_source + cutter_1.03-2_source + cutter-testing-framework_1.1.7-1.2_source + cutycapt_0.0~svn6-3_source + cuyo_2.0.0brl1-1_source + cvc3_2.4.1-4_source + cvector_1.0.3-1_source + cvm_0.96-1_source + cvs_2:1.12.13+real-9_source + cvs-autoreleasedeb_0.12-1_source + cvs-buildpackage_5.23_source + cvs-mailcommit_1.19-2_source + cvs-syncmail_2.3-1_source + cvs2cl_2.73-1_source + cvs2html_1.98-3_source + cvs2svn_2.3.0-3_source + cvschangelogbuilder_2.4-1_source + cvsconnect_0.1.cvs20001202-2_source + cvsd_1.0.24_source + cvsdelta_1.7.0-6_source + cvsgraph_1.7.0-1_source + cvsps_2.1-6_source + cvssuck_0.3.cvs20060124-2_source + cvstrac_2.0.1-3_source + cvsutils_0.2.5-1_source + cvsweb_3:3.0.6-7_source + cvxopt_1.1.4-1_source + cwdaemon_0.9.5-1_source + cweb-latex_1.1.1.debian.1_source + cwebx_3.04-9_source + cwidget_0.5.16-3.4_source + cwiid_0.6.00+svn201-3_source + cwirc_2.0.0-5_source + cxref_1.6d-6_source + cxxtest_4.0.3-2_source + cxxtools_2.1.1-1_source + cycfx2prog_0.47-1_source + cyclades-serial-client_0.92_source + cycle_0.3.1-8_source + cynthiune.app_0.9.5-14_source + cyrus-imapd-2.4_2.4.16-4+deb7u1_source + cyrus-imspd_1.8-3_source + cyrus-sasl2_2.1.25.dfsg1-6+deb7u1_source + cython_0.15.1-2_source + d-conf_0.12.1-3_source + d-feet_0.1.14-1_source + d-itg_2.8.1~rc1-1_source + d-push_2.0-1.1_source + d-rats_0.3.3-3_source + d-shlibs_0.52_source + d2to1_0.2.7-1_source + d52_3.4.1-1.1_source + daa2iso_0.1.7e-1_source + dacco_0.9+20071227-5_source + dacs_1.4.27b-2_source + dact_0.8.42-4_source + dadadodo_1.04-4_source + daemon_0.6.4-1_source + daemonfs_1.1-1_source + daemonlogger_1.2.1-7_source + daemontools_1:0.76-3_source + dahdi-linux_1:2.6.1+dfsg2-1_source + dahdi-tools_1:2.5.0.1-2_source + dailystrips_1.0.28-11_source + daisy-player_7.1.1-1_source + dajaxice_0.2-2_source + dancer-ircd_1.0.36-8.1_source + dancer-xml_0.8.2.1-3_source + dangen_0.5-2_source + dans-gdal-scripts_0.18-1.1_source + dansguardian_2.10.1.1-5_source + dante_1.1.19.dfsg-3_source + dapl_2.0.19-1.1_source + daptup_0.12.5.1_source + daq_0.6.2-2_source + dar_2.4.5.debian.1-1_source + darcs_2.8.1-1_source + darcsum_1.10-4_source + darcsweb_1.1-3.1_source + dares_0.6.5-7_source + darkice_1.0-1_source + darkplaces_0~20110628+svn11619-3_source + darksnow_0.6.1-3_source + darkstat_3.0.715-1_source + darktable_1.0.4-1+deb7u2_source + darnwdl_0.5-2_source + darts_0.32-11_source + das-watchdog_0.9.0-2_source + dash_0.5.7-3_source + dasher_4.11-2_source + datapm_0.10-1.1_source + date_1.2.32-1_source + datefudge_1.17_source + dates_0.4.8-3_source + dav-text_0.8.5-5_source + davfs2_1.4.6-1.1+deb7u1_source + davical_1.1.1-1_source + dawgdic_0.4.3-1_source + db_5.1.29-5_source + db-defaults_5.1.6_source + db1-compat_2.1.3-16_source + db4.7_4.7.25-21_source + db4.8_4.8.30-12_source + db4o_8.0.184.15484+dfsg-2_source + dbacl_1.12-2.1_source + dballe_5.18-1_source + dbar_0.0.20100524-3_source + dbconfig-common_1.8.47+nmu1_source + dbeacon_0.3.9.3-2_source + dbench_4.0-2_source + dbf_0.88.16-1_source + dbf2mysql_1.14a-3.1_source + dbi_0.2-5-2_source + dbix-easy-perl_0.17-1_source + dblatex_0.3.4-2_source + dbmix_0.9.8-6.2_source + dbs_0.47_source + dbskkd-cdb_1:2.00-6_source + dbtoepub_0+svn9150-2_source + dbus_1.6.8-1+deb7u1_source + dbus-c++_0.9.0-6_source + dbus-glib_0.100.2-1_source + dbus-java_2.8-4_source + dbus-python_1.1.1-1_source + dbus-sharp_0.7.0-5_source + dbus-sharp-glib_0.5.0-4_source + dbusada_0.2-2_source + dbview_1.0.4-1_source + dc-qt_0.2.0.alpha-4.1_source + dc3dd_7.1.614-1_source + dcap_2.47.6-2_source + dcfldd_1.3.4.1-2.1_source + dclock_2.2.2-6_source + dcmtk_3.6.0-12_source + dcraw_8.99-1_source + dctrl-tools_2.22.2_source + dctrl2xml_0.18_source + dd2_0.2.2-1_source + ddccontrol_0.4.2-10_source + ddccontrol-db_20061014-4_source + ddclient_3.8.0-11.5_source + ddd_1:3.3.12-4_source + ddir_2010.0321+git1685e72-2_source + ddns3-client_1.8-12_source + ddpt_0.92-1_source + dds_2.1.2+ddd105-1_source + dds2tar_2.5.2-4_source + ddskk_14.4-2_source + ddtc_0.17.1_source + deal_3.1.9-3_source + dealer_0.20040530-4_source + deap_0.7.1-1_source + deb-gview_0.2.9_source + debarchiver_0.9.10_source + debaux_0.1.10-1_source + debbugs_2.4.1_source + debconf_1.5.49_source + debconf-kde_0.2-2_source + debdelta_0.50+2_source + debfoster_2.7-1.2_source + debget_1.6+nmu1_source + debhelper_9.20120909_source + debian-archive-keyring_2012.4_source + debian-builder_1.8_source + debian-cd_3.1.13_source + debian-edu_1.713+deb7u1_source + debian-edu-archive-keyring_2013.03.15_source + debian-edu-artwork_0.45-1+deb7u1_source + debian-edu-config_1.702_source + debian-edu-doc_1.5~20130920~7.1+deb7u1_source + debian-edu-install_1.720+deb7u1_source + debian-faq_5.0.1_source + debian-gis_0.0.2_source + debian-goodies_0.61_source + debian-handbook_7.20140126~deb7u1_source + debian-history_2.19~deb7u1_source + debian-installer_20130613+deb7u1_source + debian-installer-launcher_17_source + debian-installer-netboot-images_20130613+deb7u1.b2_source + debian-installer-utils_1.92+deb7u1_source + debian-junior_1.20_source + debian-keyring_2013.04.21_source + debian-med_1.13.2_source + debian-policy_3.9.3.1_source + debian-ports-archive-keyring_2012.01.08_source + debian-reference_2.50_source + debian-science_1.0_source + debian-timeline_18_source + debian-xcontrol_0.0.4-1.1_source + debian-zh-faq_1.13_source + debianbuttons_1.9-1_source + debiandoc-sgml_1.2.27_source + debiandoc-sgml-doc_1.1.22_source + debiandoc-sgml-doc-pt-br_1.1.11_source + debianutils_4.3.2_source + debichem_0.0.3_source + debirf_0.33_source + debmirror_1:2.14_source + debnest_0.0.11_source + debomatic_0.10-2_source + debootstrap_1.0.48+deb7u1_source + deborphan_1.7.28.8_source + debpartial-mirror_0.3.1_source + debpear_0.3_source + debram_1.0.3-0.2_source + debroster_1.17_source + debsecan_0.4.16+nmu1_source + debsig-verify_0.8_source + debsums_2.0.52_source + debtags_1.10.1_source + debtorrent_0.1.10_source + debtree_1.0.10_source + decibel-audio-player_1.04-1_source + decoratortools_1.8-2_source + dee_1.0.10-3_source + deejayd_0.9.0-4_source + deets_0.1.3-1_source + defendguin_0.0.12-4_source + deja-dup_20.2-2.1_source + dejagnu_1.5-3_source + deliciousapi_1.6.7-1_source + delimmatch_1.06a-4_source + delta_2006.08.03-3_source + deluge_1.3.3-2+nmu1_source + denemo_0.9.2-3_source + deng_1.9.0-beta6.9+dfsg1-2.1_source + denyhosts_2.6-10+deb7u3_source + depqbf_0.1-1_source + deps_0.13-1.1_source + derivations_0.53.20120414-1.1_source + desklaunch_1.1.8_source + deskmenu_1.4.5_source + desktop-base_7.0.3_source + desktop-file-utils_0.20-0.1_source + desktop-profiles_1.4.15+nmu2_source + desktopnova_0.8.1-1_source + desmume_0.9.8-1_source + desproxy_0.1.0~pre3-8_source + detox_1.2.0-5_source + deutex_4.4.902-13_source + devede_3.22.0-1_source + develock-el_0.39-1_source + developers-reference_3.4.9_source + devhelp_3.4.1-1_source + device-tree-compiler_1.3.0-4_source + device3dfx_2011.07.03-1_source + devil_1.7.8-6.1_source + devilspie_0.22-2_source + devilspie2_0.20-1_source + devio_1.2-1_source + devscripts_2.12.6+deb7u2_source + devtodo_0.1.20-6_source + dfc_2.5.0-1_source + dff_1.2.0+dfsg.1-1_source + dfo_0.8+svn52-7_source + dfu-programmer_0.5.4-1_source + dfu-util_0.5-1_source + dh-ada-library_3_source + dh-autoreconf_7_source + dh-buildinfo_0.9+nmu1_source + dh-di_3_source + dh-exec_0.4_source + dh-kpatches_0.99.36+nmu1_source + dh-linktree_0.3_source + dh-lisp_0.7.1_source + dh-lua_15_source + dh-make_0.61_source + dh-make-drupal_1.3-1+deb7u1_source + dh-make-perl_0.75-1_source + dh-make-php_0.3.0_source + dh-ocaml_1.0.7_source + dhcp-helper_1.1-1_source + dhcp-probe_1.3.0-10_source + dhcpcd_1:3.2.3-11_source + dhcpcd-dbus_0.6.0-1_source + dhcpcd-ui_0.6.0-1_source + dhcpcd5_5.5.6-1_source + dhcpdump_1.8-2_source + dhcping_1.2-4_source + dhelp_0.6.20+nmu1_source + dhex_0.67-1_source + dhis-client_5.5-4_source + dhis-dns-engine_5.3-1_source + dhis-mx-sendmail-engine_5.0-2_source + dhis-server_5.3-2.1_source + dhis-tools-dns_5.0-6.1_source + di_4.30-1_source + di-netboot-assistant_0.36b_source + dia_0.97.2-8_source + dia-newcanvas_0.6.10-5.4_source + dia-shapes_0.3.0-1_source + dia2code_0.8.3-4_source + diagnostics_0.3.3-1.3_source + diakonos_0.9.0-1_source + dialign_2.2.1-5_source + dialign-t_1.0.2-2_source + dialog_1.1-20120215-2_source + dibbler_0.8.2-1_source + dicelab_0.7-1_source + dico_2.1-3_source + dicom3tools_1.0~20120505-1_source + dicomnifti_2.30.0-1_source + dicompyler_0.4.1-1-1_source + dicomscope_3.6.0-10_source + dict-bouvier_6.revised-3.2_source + dict-devil_1.0-12_source + dict-elements_20001107-a-6_source + dict-foldoc_20120518-1_source + dict-gazetteer2k_1.0.0-5.2_source + dict-gcide_0.48.1_source + dict-jargon_4.4.7-2_source + dict-moby-thesaurus_1.0-6.2_source + dictclient_1.0.3.1_source + dictconv_0.2-7_source + dictd_1.12.0+dfsg-5_source + dictdlib_2.0.4.1_source + dictem_1.0.2-1_source + diction_1.10~rc4-1_source + dictionaries-common_1.12.11_source + dictionary-el_1.8.7-15_source + didiwiki_0.5-11_source + didjvu_0.2.3-2_source + dieharder_3.31.1-4_source + diet_2.8.0-1_source + dietlibc_0.33~cvs20120325-4_source + diffmon_20020222-2.5_source + diffpdf_2.1.1-1_source + diffstat_1.55-3_source + diffuse_0.4.6-1_source + diffutils_1:3.2-6_source + diggler_0.9-21_source + digikam_4:2.6.0-1_source + digitemp_3.5.0ds1-2_source + digitools_1.03-1.1_source + dillo_3.0.2-2_source + dimbl_0.11-1_source + dime_0.20030921-2_source + ding_1.7-2_source + ding-libs_0.1.3-2_source + dino_0.2.8-3_source + diod_1.0.13-3_source + diploma_1.2.11_source + dipy_0.5.0-3_source + dir2ogg_0.11.8-1_source + dirac_1.0.2-6_source + dircproxy_1.0.5-5.1_source + dirdiff_2.1-5_source + directfb_1.2.10.0-5_source + directoryassistant_2.0-1.1_source + directvnc_0.7.7-1_source + dirmngr_1.1.0-3_source + dirvish_1.2.1-1.2_source + dis51_0.5-1.1_source + disc-cover_1.5.6-1_source + discount_2.1.3-3_source + discover_2.1.2-5.2_source + discover-data_2.2010.10.18_source + discus_0.2.9-6_source + dish_1.18.3-1_source + disk-manager_1.1.1-2_source + disktype_9-1_source + disper_0.3.0-1_source + display-dhammapada_0.23-7_source + dispmua_1.6.8-1_source + dissy_9-3_source + dist_1:3.5-30-3.2_source + distcc_3.1-5_source + distorm64_1.7.30-1_source + distribute_0.6.24-1_source + distro-info_0.10_source + distro-info-data_0.17~deb7u1_source + disulfinder_1.2.11-2_source + dita-ot_1.5.3-1_source + ditaa_0.9+ds1-3_source + ditrack_0.8-1.1_source + ditz_0.5-1_source + diveintopython_5.4-2_source + diveintopython-zh_5.4b-1_source + diveintopython3_20110517+77958af-1_source + divxcomp_0.1-7_source + dizzy_0.3-1_source + djagios_0.1.3+dfsg-1_source + django-adminaudit_0.3.2-1_source + django-ajax-selects_1.2.4-1_source + django-app-plugins_0.1.1-1_source + django-auth-ldap_1.0.19-2_source + django-authority_0.4-2_source + django-celery_2.5.5-2_source + django-classy-tags_0.3.4.1-1_source + django-countries_1.2-1_source + django-dajax_0.8.4-5_source + django-evolution_0.6.7-1_source + django-extra-views_0.2.4-2_source + django-filter_0.5.3-3_source + django-floppyforms_0.4.7-2_source + django-genshi_1.1.3-4_source + django-markupfield_1.0.2-2_source + django-nose_1.1-1_source + django-notification_0.1.5-2_source + django-openid-auth_0.4-1_source + django-pagination_1.0.5-1_source + django-picklefield_0.2.1-2_source + django-reversion_1.6-1_source + django-sekizai_0.5.0-1_source + django-tables_0.10.2-2_source + django-tastypie_0.9.10-2_source + django-threaded-multihost_1.3.2-2_source + djmount_0.71-5_source + djtools_1.2.7_source + djview4_4.9-2_source + djvulibre_3.5.25.3-1_source + djvusmooth_0.2.11-1_source + dkg-handwriting_0.15-1_source + dkimproxy_1.4.1-3_source + dkimpy_0.5.3-1+deb7u1_source + dkms_2.2.0.3-1.2_source + dkopp_6.2-1_source + dl10n_3.00_source + dlint_1.4.0-7_source + dlocate_1.02_source + dlz-ldap-enum_1.0.2-1_source + dmake_1:4.12-2_source + dmalloc_5.5.2-5_source + dmapi_2.2.10-1_source + dmaths_3.4+dfsg1-1_source + dmg2img_1.6.2-2_source + dmidecode_2.11-9_source + dmitry_1.3a-1_source + dmraid_1.0.0.rc16-4.2_source + dmtcp_1.2.5-1_source + dmucs_0.6.1-2.1_source + dmz-cursor-theme_0.4.3_source + dnprogs_2.60_source + dns-browse_1.9-7_source + dns-flood-detector_1.12-7_source + dns2tcp_0.5.2-1_source + dns323-firmware-tools_0.3-2_source + dnshistory_1.3-2_source + dnsjava_2.0.8-1_source + dnsmasq_2.62-3+deb7u1_source + dnsproxy_1.16-0.1_source + dnspython_1.10.0-1_source + dnspython3_1.10.0-1_source + dnsruby_1.53-1_source + dnssec-tools_1.13-1_source + dnstop_20120611-2_source + dnstracer_1.9-4_source + dnswalk_2.0.2.dfsg.1-0.1_source + doc-base_0.10.4_source + doc-central_1.8.2+nmu3_source + doc-debian_6.1_source + doc-debian-es_2.6_source + doc-debian-fr_3.1.3.1_source + doc-linux-fr_2012.11-1_source + doc-linux-hr_20000416.1_source + doc-linux-ja_2006.05.25-1.1_source + doc-linux-pl_2002.06.14-2_source + docbook_4.5-5.1_source + docbook-defguide_2.0.17+svn9047-1_source + docbook-dsssl_1.79-7_source + docbook-dsssl-doc_1.79-6_source + docbook-ebnf_1.2~cr1-5.1_source + docbook-html-forms_1.1.0-4.1_source + docbook-mathml_1.1CR1-2_source + docbook-simple_1.1-4.2_source + docbook-slides_3.4.0-5_source + docbook-slides-demo_3.4.0-1_source + docbook-to-man_1:2.0.0-31_source + docbook-utils_0.6.14-3_source + docbook-website_2.5.0.0-8_source + docbook-xml_4.5-7.2_source + docbook-xsl_1.76.1+dfsg-1_source + docbook-xsl-doc_1.76.1-1_source + docbook-xsl-saxon_1.00.dfsg.1-5_source + docbook2odf_0.244-1.1_source + docbook2x_0.8.8-8_source + docbook5-xml_5.0-2_source + docdiff_0.4.0-2_source + docker_1.4-5_source + docky_2.1.4-1_source + doclifter_2.7-1_source + doconce_0.7.3-1_source + docsis_0.9.6+git16-g61ee500+dfsg-2_source + doctorj_5.0.0-5_source + doctrine_1.2.4-1_source + docvert_4.0-7_source + docx2txt_1.2-1_source + dogtail_0.6.1-3.2_source + dojo_1.7.2+dfsg-1_source + dokuwiki_0.0.20120125b-2_source + dolfin_1.0.0-7_source + dom4j_1.6.1+dfsg.2-6_source + donkey_0.5-19_source + doodle_0.7.0-5_source + dopewars_1.5.12-13_source + dos2unix_6.0-1_source + dosage_1.6.0-1_source + dosbox_0.74-3_source + doscan_0.3.1-3_source + doschk_1.1-6_source + dose2_1.4.2-4_source + dose3_3.0.2-3_source + dosfstools_3.0.13-1_source + dossizola_1.0-8.3_source + dot-forward_1:0.71-2_source + dot2tex_2.8.7+repack-1_source + dotconf_1.0.13-3_source + dotlrn_2.5.0+dfsg-6+wheezy4_source + dots_0.0.20100108-3_source + dotur_1.53-2_source + douf00_3.0.0-1_source + dov4l_0.9-4.1_source + dovecot_1:2.1.7-7_source + dovecot-antispam_2.0+20120225-3_source + downthemall_2.0.13-2_source + downtimed_0.5-2_source + doxia_1.1.4-2_source + doxia-maven-plugin_1.1.4-1_source + doxia-sitetools_1.1.4-1_source + doxygen_1.8.1.2-2_source + doxymacs_1.8.0-6_source + doxypy_0.4.2-1_source + dozzaqueux_3.21-4_source + dpatch_2.0.35_source + dphys-config_20100216-1_source + dphys-swapfile_20061020-4_source + dpkg_1.16.12_source + dpkg-awk_1.2_source + dpkg-cross_2.6.7_source + dpkg-repack_1.37_source + dpkg-sig_0.13.1_source + dpkg-www_2.54+nmu1_source + dpsyco_1.0.36_source + dput_0.9.6.3+nmu2_source + draai_20110603-1_source + drac_1.12-7.2_source + dracut_020-2_source + dradio_3.8-2_source + dragbox_0.4.0-1_source + drawmap_2.5-3_source + drawterm_20110822-1_source + drawtiming_0.7.1-5_source + drawtk_2.0-2_source + drawxtl_5.5-3_source + drbd8_2:8.3.13-2_source + drbdlinks_1.19-1_source + drbl_1.10.90-1_source + drc_3.2.0~dfsg0-1_source + dreamchess_0.2.0-3_source + dreampie_1.1.1-2_source + drgeo_1.1.0-10_source + drgeo-doc_1.5-7_source + driconf_0.9.1-2_source + driftnet_0.1.6+cvs20040426-3_source + drivel_3.0.3-1_source + drizzle_1:7.1.36-stable-1_source + drmaa_0.5-1_source + drobo-utils_0.6.1+repack-1_source + dropbear_2012.55-1.3_source + drpython_1:3.11.1-2_source + drraw_2.2b2-4_source + drslib_0.3.0a3-3_source + drupal7_7.14-2+deb7u2_source + drush_5.4-1_source + dsbltesters_0.9.5-4_source + dsc-statistics_201203250530-2_source + dsdo_1.6.25-1.1_source + dsdp_5.8-9.1_source + dsh_0.25.10-1_source + dsniff_2.4b1+debian-22_source + dspam_3.10.1+dfsg-11_source + dssi_1.1.1~dfsg0-1_source + dssp_2.0.4-2_source + dstat_0.7.2-3_source + dsyslog_0.6.0_source + dtach_0.8-2.1_source + dtaus_0.9-1_source + dtc-xen_0.5.17-1_source + dtrx_6.6-1.1_source + duff_0.5.2-1_source + dulwich_0.8.5-2_source + duma_2.5.15-1.1_source + dumbster_1.6+debian-2_source + dump_0.4b44-1_source + dumpasn1_20120521-1_source + dumpet_2.1-4_source + dune-common_2.2.0-1_source + dune-geometry_2.2.0-1_source + dune-grid_2.2.0-1_source + dune-istl_2.2.0-1_source + dune-localfunctions_2.2.0-1_source + dunst_0.2.0-3_source + duo-unix_1.8-1_source + duplicity_0.6.18-3_source + dupload_2.7.0_source + duply_1.5.5.5-1_source + durep_0.9-2.3_source + dutch_1:2.10-1_source + dv4l_1.0-5_source + dvbackup_1:0.0.4-7_source + dvbcut_0.5.4+svn178-2_source + dvblast_2.2-1_source + dvbsnoop_1.4.50-4_source + dvbstream_0.6+cvs20090621-1_source + dvbstreamer_2.1.0-2.3_source + dvbtune_0.5.ds-1_source + dvcs-autosync_0.5_source + dvd+rw-tools_7.1-10_source + dvdauthor_0.7.0-1.1_source + dvdbackup_0.4.2-1_source + dvdisaster_0.72.4-1_source + dvdtape_1.6-1_source + dvgrab_3.5-2_source + dvhtool_1.0.1-5_source + dvi2dvi_2.0alpha-9.2_source + dvi2ps_5.1j-1_source + dvi2ps-fontdata_1.0.1-3_source + dvi2ps-fontdesc-morisawa5_0.5_source + dvidvi_1.0-8etch2_source + dvipng_1.14-1_source + dvipost_1.1-4_source + dvips-fontdata-n2bk_0.0.2001.12.12-3_source + dvipsk-ja_5.98+p1.7b-1.1_source + dvorak7min_1.6.1-13.1_source + dvswitch_0.8.3.6-1_source + dvtm_0.6-1_source + dwarfutils_20120410-2_source + dwarves-dfsg_1.10-2_source + dwb_20120628hg-1_source + dwdiff_2.0.4-1_source + dwm_6.0-4_source + dwoo_1.1.1-1_source + dwww_1.11.8_source + dwz_0.4-1_source + dx_1:4.4.4-4_source + dxflib_2.2.0.0-8_source + dxpc_3.9.2-3_source + dxsamples_4.2.0-1_source + dynalang_0.4-1_source + dynalogin_0.9.14-2_source + dynamite_0.1.1-2_source + dynare_4.3.0-2_source + dyndns_2012.0112-1_source + dzen2_0.8.5-4_source + e00compr_1.0.1-2_source + e2fsprogs_1.42.5-1.1_source + e2ps_4.34-4_source + e2tools_0.0.16-6.1_source + e2undel_0.82-1.1_source + e2wm_1.2+git20120601-1_source + e3_1:2.71-1_source + eancheck_1.0-1.1_source + ears_1.0.1-2.1_source + easy-format_1.0.0-1_source + easychem_0.6-7_source + easyconf_0.9.5-3_source + easygit_0.99-1_source + easyh10_1.5-1_source + easymock_2.4+ds1-7_source + easymp3gain_0.5.0+svn135-1_source + easypg_0.0.16-2.1_source + easytag_2.1.7-2_source + easyzone_1.2.2-1_source + eb_4.4.3-6_source + eblook_1:1.6.1-12_source + ebnetd_1:1.0.dfsg.1-4.3_source + eboard_1.1.1-5_source + eboard-extras-pack1_2-3_source + ebook-speaker_2.0-3_source + ebook-tools_0.2.1-2_source + ebtables_2.0.10.4-1_source + ebumeter_0.1.0~dfsg-2_source + ebview_0.3.6.2-1.2_source + ecaccess_4.0.0-3_source + ecasound_2.9.0-1_source + ecb_2.40+cvs20110608-3_source + echolot_2.1.8-8_source + echoping_6.0.2-6_source + ecj_3.5.1-3_source + ecl_11.1.1+dfsg1-2_source + eclipse_3.8.0~rc4-1_source + eclipse-anyedit_2.4.2-1_source + eclipse-cdt_8.1.0+dfsg-2_source + eclipse-cdt-pkg-config_0.5.4+svn212-1_source + eclipse-egit_2.0.0-1_source + eclipse-emf_2.5.0-2_source + eclipse-gef_3.7.1-1_source + eclipse-linuxtools_1.0.0-1_source + eclipse-mercurialeclipse_1.9.4-2_source + eclipse-mylyn_3.8.0-2_source + eclipse-rse_3.1.2-1_source + eclipselink_2.1.3-2_source + ecore_1.2.0-2_source + ecryptfs-utils_99-1_source + ed_1.6-2_source + ed2k-hash_0.3.3+deb2-1_source + edac-utils_0.18-1_source + edb_1.31-2_source + edbus_1.2.0-1_source + edenmath.app_1.1.1a-7_source + edfbrowser_1.48-1_source + edict_2012.05.09-1_source + edict-el_1.06-9_source + editline_1.12-6_source + editmoin_1.17-1_source + editobj_0.5.7-9_source + editra_0.6.58-1_source + edje_1.2.0-1_source + edos-debcheck_1.0-9_source + eeepc-acpi-scripts_1.1.12_source + eegdev_0.2-3_source + eekboek_2.00.04-1_source + eep24c_0.1.2-5_source + eet_1.6.0-1_source + efax_1:0.9a-19_source + efax-gtk_3.2.8-1_source + effects_2.1.1-1_source + efi-reader_0.11_source + efibootmgr_0.5.4-3_source + eficas_6.4.0-1-1.1_source + efilinux_1.0-2_source + efingerd_1.6.2.7+nmu1_source + eflite_0.4.1-6_source + efp_1.4-2_source + efreet_1.2.0-1_source + efte_1.1-1_source + egenix-mx-base_3.2.1-1.1_source + egg_4.0.6+0.20041122cvs-19_source + eggdrop_1.6.20-1_source + eglibc_2.13-38+deb7u1_source + ehcache_2.5.0-1_source + eiciel_0.9.8.1-3_source + eigen2_2.0.17-1_source + eigen3_3.1.0-1_source + eigenbase-farrago_0.9.0-1_source + eigenbase-resgen_1.3.0.13768-1_source + eina_1.2.0-2_source + einstein_2.0.dfsg.2-9_source + eiskaltdcpp_2.2.6-4_source + ejabberd_2.1.10-4+deb7u1_source + eject_2.1.5+deb1+cvs20081104-13_source + ekeyd_1.1.5-4_source + ekg_1:1.9~pre+r2854-1_source + ekg2_1:0.3.1-3_source + ekiga_3.2.7-6_source + el-get_3.1-1_source + elastix_4.5-2_source + eldav_0.8.1-5_source + electric_8.10-2_source + electric-fence_2.2.4_source + electricsheep_2.7~b12+svn20091224-1.1_source + elektra_0.7.1-1_source + elementary_0.7.0.55225-1_source + elementtidy_1.0-7_source + elfrc_0.7-1_source + elfutils_0.152-1+wheezy1_source + elib_1.0-11.1_source + elib.intl_0.0.3~git20110809-2_source + elida_0.4+nmu1_source + elilo_3.14-2_source + elilo-installer_1.21_source + elinks_0.12~pre5-9_source + eliom_2.2.2-1_source + elixir_0.7.1-1_source + elk_3.99.8-2_source + elki_0.5.0-1_source + elmerfem_6.1.0.svn.5396.dfsg2-2_source + elscreen_1.4.6-5_source + elserv_0.4.0+0.20011203cvs-17.1_source + elvis_2.2.0-11.1_source + elvis-tiny_1.4-23_source + elyxer_1.2.3-1_source + elza_1.4.3-16_source + emacs-calfw_1.3+git20111208-1_source + emacs-chess_2.0b6-1.1_source + emacs-defaults_45.0_source + emacs-goodies-el_35.2+nmu1_source + emacs-jabber_0.8.0-3_source + emacs-window-layout_1.1-2_source + emacs23_23.4+1-4_source + emacsen-common_2.0.5_source + emacspeak_29.0-9_source + email-reminder_0.7.6-5_source + email2trac_2.4.7-1_source + embassy-domainatrix_0.1.0+20110714-1_source + embassy-domalign_0.1.0+20110714-1_source + embassy-domsearch_1:0.1.0+20110714-1_source + ember_0.6.2+dfsg-2_source + ember-media_0.6.2.1-1_source + emboss_6.4.0-2_source + emboss-explorer_2.2.0-7+deb7u1_source + embryo_1.2.0-1_source + emdebian-archive-keyring_2.0.3_source + emdebian-crush_2.2.19_source + emdebian-grip_3.0.7_source + emelfm2-svg-icons_20100219-2_source + emerillon_0.1.90-1_source + emesene_2.12.5+dfsg-1_source + emma_0.6-4_source + emma-coverage_2.0.5312+dfsg-4_source + emms_3.0+20110425+1.git298e022-4_source + emoslib_000382+dfsg-2_source + empathy_3.4.2.3-2+deb7u1_source + empire_1.7-3_source + empire-hub_1.0.2.1_source + empire-lafe_1.1-1_source + empty-expect_0.6.18b-3_source + empy_3.3-6_source + emu8051_1.1.0-1_source + enblend-enfuse_4.0+dfsg-4_source + enca_1.13-4_source + encfs_1.7.4-2.4_source + enchant_1.6.0-7_source + enemies-of-carlotta_1.2.6-4_source + enemylines3_1.2-7_source + enemylines7_0.6-3_source + enet_1.3.3-2_source + engauge-digitizer_5.0-3_source + engine-pkcs11_0.1.8-2_source + enigma_1.10~~pre-alpha+r2236-1_source + enigmail_2:1.4.1-2_source + enna_0.4.1~r3557-2.1_source + enscribe_0.1.0-1.1_source + enscript_1.6.5.90-2_source + ensymble_0.28-2_source + ent_1.1debian-2_source + entagged_0.35-4_source + enum_1.1-1_source + envstore_2.0.4-1_source + eo-spell_2.1.2000.02.25-45_source + eog_3.4.2-1+build1_source + eog-plugins_3.4.1-1_source + eot-utils_1.0-1_source + epcr_2.3.12-1-1_source + epdfview_0.1.8-3_source + eperl_2.2.14-18_source + epic4_1:2.10.1-1_source + epic4-help_1:2.0+20050315-2_source + epic5_1.1.2-2_source + epigrass_2.0.4-3_source + epiphany_0.7.0-6_source + epiphany-browser_3.4.2-2.1_source + epiphany-extensions_3.4.0-2_source + episoder_0.6.5-1_source + epix_1.2.10-1_source + epm_4.2-6_source + epoptes_0.5.6-1_source + epr-api_2.2-2_source + epsilon_0.6.0-3_source + epson-inkjet-printer-escpr_1.1.1-2_source + epstool_3.08+repack-3_source + epwutil_1.1-8.1_source + epydoc_3.0.1+dfsg-1_source + epylog_1.0.7-1_source + eq10q_1.2-2_source + eql_1.2.ds1-3_source + eqonomize_0.6-7_source + equivs_2.0.9_source + erc_5.3-1_source + eric_4.5.3-1_source + eris_1.3.19-5_source + erlang_1:15.b.1-dfsg-4_source + erm_0.14-0-2_source + eruby_1.0.5-2.1_source + esdl_1.2-2_source + esekeyd_1.2.7-1_source + esmtp_1.2-10_source + esniper_2.27.0-1_source + esorex_3.9.6-1_source + esound_0.2.41-10_source + espa-nol_1.11-4_source + espctag_0.3-1_source + espeak_1.46.02-2_source + espeak-gui_0.4-3_source + espeakedit_1.46.02-2_source + espeakup_1:0.71-13_source + esperanza_0.4.0+git20091017-2_source + espresso_5.0-1_source + ess_12.04-4-1_source + essays1743_1.0-4.1_source + estic_1.61-20.1_source + esys-particle_2.1-4_source + etckeeper_0.63_source + eterm_0.9.6-1_source + etherape_0.9.12-1_source + etherpuppet_0.3-2_source + etherwake_1.09-3_source + ethos_0.2.2-3_source + ethstats_1.0-5_source + ethstatus_0.4.3_source + ethtool_1:3.4.2-1_source + etk.docking_0.2-1_source + etktab_3.2-4_source + etl_0.04.15-1_source + etoile_0+20080616+dfsg-2_source + etoolbox_2.1-1_source + etsf-io_1.0.3-4_source + etw_3.6+svn140-4_source + euca2ools_2.0.2-1_source + eukleides_1.5.4-2_source + euler_1.61.0-8.1_source + eurephia_1.0.1-3_source + evas_1.2.0-2_source + event-dance_0.1.20-2_source + eventlog_0.2.12-5_source + eventstat_0.01.15-1_source + evernote-mode_0.41-3_source + evilvte_0.5.1-1_source + evilwm_1.0.0-1_source + evince_3.4.0-3.1_source + evolution_3.4.4-3_source + evolution-data-server_3.4.4-3_source + evolution-ews_3.4.4-1_source + evolution-exchange_3.4.4-1_source + evolution-mapi_3.4.4-1_source + evolution-rss_0.3.91-2_source + evolution-webcal_2.32.0-2_source + evolver_2.30c.dfsg-3_source + evolvotron_0.6.1-1+wheezy1_source + evtest_1:1.30-1_source + eweouz_0.7_source + ewipe_1.2.0-8_source + exabgp_2.0.7-1_source + exactimage_0.8.5-5+deb7u3_source + exaile_0.3.2.2-3_source + excalibur-logger_2.1-4_source + excalibur-logkit_2.0-9_source + excellent-bifurcation_0.0.20071015-5_source + exec-maven-plugin_1.1.1+dfsg-3_source + execnet_1.0.9-0.1_source + exempi_2.2.0-1_source + exfat-utils_0.9.7-2_source + exif_0.6.20-2_source + exifprobe_2.0.1-1_source + exiftags_1.01-5_source + exim4_4.80-7_source + eximdoc4_4.80-2_source + exiv2_0.23-1_source + exmh_1:2.8.0~rc1-2_source + exo_0.6.2-5_source + exodusii_5.14.dfsg.1-2_source + exonerate_2.2.0-6_source + expat_2.1.0-1+deb7u1_source + expect_5.45-2_source + expeyes_2.0.0-3_source + explorercanvas_0.r3-3_source + exrtools_0.4-1.2_source + ext3grep_0.10.1-3.2_source + extace_1.9.9-6_source + extlib_1.5.2-1_source + extplorer_2.1.0b6+dfsg.3-4_source + extra-xdg-menus_1.0-4_source + extrema_4.4.5.dfsg-3_source + extremetuxracer_0.4-5_source + extsmail_1.4-1_source + extundelete_0.2.0-2.1_source + exuberant-ctags_1:5.9~svn20110310-4_source + eyed3_0.6.18-1_source + ez-ipupdate_3.0.11b8-13.4_source + ezgo_0.7.1_source + ezmlm-browse_0.10-3_source + ezstream_0.5.6~dfsg-1_source + eztrace_0.7-2-4_source + f-spot_0.8.2-5_source + f2c_20100827-1_source + faad2_2.7-8_source + facile_1.1-8_source + fact++_1.5.3~dfsg-1_source + facter_1.6.10-1_source + factory-boy_1.1.3-1_source + fadecut_0.1.1-1_source + fai_4.0.8~deb7u1_source + faifa_0.2~svn82-1_source + fail2ban_0.8.6-3wheezy2_source + fair_0.5.3-1_source + fairymax_4.8q-2_source + fake_1.1.11-1_source + fake-hwclock_0.5_source + fakechroot_2.16-1_source + fakepop_11_source + fakeroot_1.18.4-2_source + fakeroot-ng_0.16-1.1_source + faketime_0.8-1_source + falconpl_0.9.6.9-git20120606-2_source + falselogin_0.3-4_source + fam_2.7.0-17_source + famfamfam-flag_0.1-2_source + fannj_0.3-1_source + fapg_0.41-1_source + farpd_0.2-11_source + farstream_0.1.2-1_source + fasianoptions_2160.77-1_source + fassets_2100.78-3_source + fastdep_0.16-13_source + fastdnaml_1.2.2-10_source + fastforward_1:0.51-3_source + fastjar_2:0.98-3_source + fastjet_3.0.2+dfsg-2_source + fastlink_4.1P-fix95-3_source + fasttree_2.1.4-1_source + fastx-toolkit_0.0.13.2-1_source + fatattr_1.0.1-9_source + fatrat_1.1.3-5_source + fatrat-czshare_1.1.3-1_source + fatrat-opensubtitles_1.1.3-1_source + fatresize_1.0.2-6_source + fatsort_0.9.15.245-1_source + faucc_20090220-1_source + fauhdlc_20110812-1_source + faulthandler_2.0-1_source + faumachine_20110812-1.2_source + faust_0.9.46-2_source + faustworks_0.3.2~repack0-1_source + fb-music-high_0.1.2_source + fbasics_2160.81-2_source + fbautostart_2.718281828-1_source + fbb_7.04j-8.2_source + fbbdoc_1:1999-2.1_source + fbcat_0.3-1_source + fbdesk_1.4.1-10_source + fbi_2.07-10_source + fbonds_2100.75-3_source + fbpager_0.1.5~git20090221.1.8e0927e6-1_source + fbpanel_6.1-6_source + fbreader_0.12.10dfsg-8_source + fbset_2.1-25_source + fbterm_1.7-2_source + fbterm-ucimf_0.2.9-2_source + fbxkb_0.6-1.1_source + fccexam_1.0.3-1_source + fceu_0.98.12-4.1_source + fcgiwrap_1.0.3-3_source + fcheck_2.7.59-18_source + fcitx_1:4.2.4.1-7_source + fcitx-chewing_0.1.2-2_source + fcitx-cloudpinyin_0.2.2-1+deb7u1_source + fcitx-configtool_0.4.4-1_source + fcitx-fbterm_0.1.4-1_source + fcitx-googlepinyin_0.1.5-2_source + fcitx-hangul_0.1.1-1_source + fcitx-libpinyin_0.1.1-2_source + fcitx-m17n_0.1.2-2_source + fcitx-sunpinyin_0.3.7-1_source + fcitx-table-extra_0.3.1-1_source + fcitx-table-other_0.2.0+git20120621-1_source + fcitx-ui-light_0.1.3-2_source + fcitx-unikey_0.1.0-1_source + fckeditor_1:2.6.6-3_source + fcmp_1.18.20030311-3_source + fcode-utils_1.0.2-3_source + fcoe-utils_1.0.23-1_source + fcopulae_2110.78-1_source + fcrackzip_1.0-4_source + fdclone_3.00k-1_source + fdflush_1.0.1.3_source + fdm_1.6+cvs20111013-2_source + fdpowermon_1.5_source + fdsend_0.2.1-2_source + fdupes_1.50-PR2-4_source + fdutils_5.5-20060227-6_source + febootstrap_3.17-1_source + feed2imap_1.0-2_source + feed2omb_0.9.2-1_source + feedparser_5.1.2-1_source + feh_2.3-2_source + felix-bundlerepository_1.6.6-1_source + felix-framework_4.0.1-2_source + felix-gogo-command_0.12.0-2_source + felix-gogo-runtime_0.10.0-2_source + felix-gogo-shell_0.10.0-2_source + felix-latin_2.0-3.1_source + felix-main_4.0.1-2_source + felix-osgi-obr_1.0.2-3_source + felix-shell_1.4.2-3_source + felix-shell-tui_1.4.1-3_source + felix-utils_1.1.0-3_source + fence-agents_3.1.5-2_source + fenics_1:1.0.0-1_source + fenix_0.92a.dfsg1-9_source + fenix-plugins_0.0.20070803-5_source + ferari_1.0.0-1_source + ferm_2.1-5_source + ferret_0.6-3_source + festival_1:2.1~release-5.1_source + festival-czech_0.3-2_source + festival-doc_1.4.2-8_source + festival-freebsoft-utils_0.10-3_source + festival-hi_0.1-9_source + festival-it_2.0+debian0-3_source + festival-mr_0.1-9_source + festival-te_0.3.3-4_source + festlex-cmu_1.4.0-6_source + festlex-poslex_1.4.0-5_source + festvox-czech-dita_1.0.0-2_source + festvox-czech-krb_1.0.0-2_source + festvox-czech-machac_1.0.0-2_source + festvox-czech-ph_0.1-3_source + festvox-kallpc16k_1.4.0-5_source + festvox-kallpc8k_1.4.0-4_source + festvox-kdlpc16k_1.4.0-5_source + festvox-kdlpc8k_1.4.0-5_source + festvox-ru_0.5-5_source + festvox-suopuhe-lj_1.0g-20051204-3_source + festvox-suopuhe-mv_20041119-1_source + fet_5.18.0-1_source + fetch-crl_3.0.8-1_source + fetchmail_6.3.21-4_source + fetchyahoo_2.14.7-1_source + fexoticoptions_2110.77-2_source + fextremes_2100.77-3_source + feynmf_1.08-8_source + ffc_1.0.0-1_source + ffcall_1.10+cvs20100619-2_source + ffdiaporama_1.3-1_source + ffe_0.2.8-1_source + ffindex_0.9.6.1-1_source + ffmpeg-php_0.6.0-2.2_source + ffmpeg2theora_0.27-2_source + ffmpegthumbnailer_2.0.7-2_source + ffms2_2.17-1_source + ffproxy_1.6-10_source + ffrenzy_1.0.2~svn20070530-4_source + fftw_2.1.5-1_source + fftw3_3.3.2-3.1_source + fgarch_2110.80.1-1_source + fgetty_0.6-5_source + fgo_1.3.1-2_source + fhist_1.18-1_source + fiaif_1.22.1-1_source + fiat_1.0.0-1_source + fibranet_10-3_source + fieldslib_107.01-1_source + fife_0.3.3+r3-3_source + fig2ps_1.5-1_source + fig2sxd_0.20-1_source + figlet_2.2.5-2_source + figtoipe_20080517-1_source + figtree_1.3.1-1_source + fil-plugins_0.3.0-3_source + file_5.11-2_source + file-kanji_1.1-16_source + file-mmagic_1.27-1+deb7u1_source + file-rc_0.8.15_source + file-roller_3.4.2-1_source + filelight_4:4.8.4-1_source + filepp_1.8.0-3_source + fileschanged_0.6.5-1.2_source + filetea_0.1.12+dfsg1-3_source + filetraq_0.2-14_source + filezilla_3.5.3-2_source + filler_1.02-6.1_source + fillets-ng_1.0.1-2_source + fillets-ng-data_1.0.0-1_source + filo_1.1+2011020401.2_source + filter_2.6.3-1_source + filtergen_0.12.4-5.1_source + filters_2.48_source + fim_0.3-beta-prerelease-1.3_source + fimport_2160.81-1_source + finance-yahooquote_0.24_source + findimagedupes_2.18-4_source + findlib_1.3.1-1_source + findutils_4.4.2-4_source + finish-install_2.41wheezy1_source + fio_2.0.8-2_source + firebird2.5_2.5.2.26540.ds4-1~deb7u1_source + firebug_1.9.2~b2-1_source + firecookie_1.4-1+deb7u1_source + firedns_0.9.12+dfsg-3_source + firegestures_1.6.16-1_source + firehol_1.273-1_source + firestarter_1.0.3-11_source + firestring_0.9.12-8_source + firetray_0.4.6-1~deb7u1_source + firexpath_0.9.7-1_source + firmware-free_3.2_source + fische_3.2.2-3_source + fish_1.23.1+20120106.git8b407a3-1_source + fishpoll_0.1.6-4_source + fityk_0.9.8-3_source + fizmo_0.7.2-2_source + fizsh_1.0.2-1_source + fl-cow_0.6-4.1_source + flac_1.2.1-6_source + flactag_2.0.4-1_source + flake_0.11-2_source + flam3_3.0.1-2.1_source + flamerobin_0.9.3~svn+2220-1_source + flamethrower_0.1.8-3_source + flamingo_5.0-1_source + flann_1.7.1-4_source + flare_0.15.1-1_source + flash-kernel_3.3+deb7u2_source + flashbake_0.26.2-4_source + flashblock_1.5.15-1_source + flashgot_1.4.5+dfsg-1_source + flashrom_0.9.5.2+r1546-1_source + flashybrid_0.17_source + flask_0.8-1_source + flask-wtf_0.6-1_source + flasm_1.62-6_source + flatzebra_0.1.5-4_source + flawfinder_1.27-3_source + fldiff_1.1+0-2_source + fldigi_3.21.48-1_source + flex_2.5.35-10.1_source + flex-old_2.5.4a-10_source + flexbackup_1.2.1-6.2_source + flexc++_0.98.00-1_source + flexi-streams_1.0.7-2_source + flexloader_0.03-2_source + flexml_1.9.2-1_source + flickrbackup_0.2-3_source + flickrfs_1.3.9.1-9.1_source + flight-of-the-amazon-queen_1.0.0-7_source + flim_1:1.14.9+0.20110516-1_source + flip_1.20-1_source + flite_1.4-release-6_source + floatbg_1.0-28_source + flobopuyo_0.20-5_source + flog_1.8-3_source + florence_0.5.1-1_source + flot_0.7+dfsg-2_source + flotr_0.2.1~r301-1_source + flow-tools_1:0.68-12.1_source + flowcanvas_0.7.1+dfsg0-0.2_source + flowscan_1.006-13.2_source + flowscan-cuflow_1.7-6_source + flpsed_0.5.2-1_source + fltk1.1_1.1.10-14_source + fltk1.3_1.3.0-8_source + flufl.bounce_2.1.1-1_source + flufl.enum_3.3.2-1_source + flufl.i18n_1.1.1-1_source + flufl.lock_2.2.1-2_source + flufl.password_1.2.1-1_source + fluid-soundfont_3.1-5_source + fluidsynth_1.1.5-2_source + fluidsynth-dssi_1.0.0-6_source + flumotion_0.10.0-3_source + flup_1.0.2-2_source + flush_0.9.12-3_source + flute_1:1.1.6-3_source + fluxbox_1.3.2-4_source + flvmeta_1.0.11-1_source + flvstreamer_2.1c1-1_source + flvtool2_1.0.6-4_source + flwm_1.02+cvs20080422-9_source + fmcs_1.0-1_source + fmit_0.99.2-1_source + fmtools_2.0.5_source + fmultivar_2100.76-3_source + fnfx_0.3-14_source + fnonlinear_2100.76-4_source + fntsample_3.2-1_source + focalinux_2010-09-3_source + focuswriter_1.3.6-1_source + fofix-dfsg_3.121-3_source + folks_0.6.9-1_source + fondu_0.0.20060102-4_source + font-manager_0.5.7-4_source + fontchooser_1.0.0-1_source + fontconfig_2.9.0-7.1_source + fontforge_0.0.20120101+git-2_source + fontforge-doc_0.0.20100429-1_source + fontforge-extras_0.3-2_source + fontmatrix_0.6.0+svn20110930-1.1_source + fonts-anonymous-pro_1.002-1_source + fonts-aoyagi-kouzan-t_20051011-9_source + fonts-aoyagi-soseki_20070207-8_source + fonts-arabeyes_2.1-3_source + fonts-arphic-bkai00mp_2.10-11_source + fonts-arphic-bsmi00lp_2.10-12_source + fonts-arphic-gbsn00lp_2.11-12_source + fonts-arphic-gkai00mp_2.11-12_source + fonts-arphic-ukai_0.2.20080216.2-3_source + fonts-arphic-uming_0.2.20080216.2-4_source + fonts-baekmuk_2.2-7_source + fonts-beng_2:1.1_source + fonts-beng-extra_1.0-2_source + fonts-beteckna_0.4-5_source + fonts-bpg-georgian_0.5a-6_source + fonts-breip_1.0-7_source + fonts-cabin_1.5-1_source + fonts-cabinsketch_1.02-1_source + fonts-cantarell_0.0.9-1_source + fonts-century-catalogue_001.001-5_source + fonts-cmu_0.7.0-2_source + fonts-comfortaa_1.5-2_source + fonts-cwtex_1.0-2_source + fonts-dancingscript_1.1-1_source + fonts-dejima-mincho_227-9_source + fonts-deva_2:1.1_source + fonts-deva-extra_2.0-2_source + fonts-dosis_1.7-1_source + fonts-droid_20111207+git-1_source + fonts-dustin_20030517-9_source + fonts-dzongkha_0.3-7_source + fonts-ecolier-court_1.00-4_source + fonts-ecolier-lignes-court_1.00-5_source + fonts-eeyek_1.0-1_source + fonts-evertype-conakry_0.002+source-2_source + fonts-f500_1.0-3_source + fonts-fanwood_1.1-2_source + fonts-farsiweb_0.4.dfsg-11_source + fonts-freefarsi_1.0.0~beta1-6_source + fonts-freefont_20120503-1_source + fonts-gfs-artemisia_1.1-4_source + fonts-gfs-baskerville_1.1-4_source + fonts-gfs-bodoni-classic_1.1-4_source + fonts-gfs-complutum_1.1-5_source + fonts-gfs-didot_1.1-5_source + fonts-gfs-didot-classic_1.1-4_source + fonts-gfs-gazis_1.1-4_source + fonts-gfs-neohellenic_1.1-4_source + fonts-gfs-olga_1.1-3_source + fonts-gfs-porson_1.1-5_source + fonts-gfs-solomos_1.1-4_source + fonts-gfs-theokritos_1.1-4_source + fonts-gubbi_1.0-3_source + fonts-gujr_2:1.1_source + fonts-gujr-extra_1.0-2_source + fonts-guru_2:1.1_source + fonts-guru-extra_2.0-2_source + fonts-hanazono_20120421-1.1_source + fonts-horai-umefont_440-3_source + fonts-hosny-amiri_0.103-1_source + fonts-hosny-thabit_0.02-1_source + fonts-inconsolata_001.010-4_source + fonts-indic_2:1.1_source + fonts-ipaexfont_00103-14.1_source + fonts-ipafont_00303-10.1_source + fonts-ipamj-mincho_001.01-3_source + fonts-johnsmith-induni_20101012-4_source + fonts-junicode_0.7.6-1_source + fonts-jura_2.6.1-1_source + fonts-kacst_2.01+mry-6_source + fonts-kacst-one_5.0+svn11846-6_source + fonts-kanjistrokeorders_3.000-dfsg-2_source + fonts-kaushanscript_1.02-1_source + fonts-khmeros_5.0-5_source + fonts-kiloji_1:2.1.0-18_source + fonts-knda_2:1.1_source + fonts-knda-extra_1.0-2_source + fonts-komatuna_20101113-6_source + fonts-konatu_26-9_source + fonts-kouzan-mouhitsu_20090806-8_source + fonts-lao_0.0.20060226-8_source + fonts-lato_1.104-2_source + fonts-levien-museum_001.002-3_source + fonts-levien-typoscript_000.001-3_source + fonts-lg-aboriginal_1.0-5_source + fonts-liberation_1.07.2-6_source + fonts-lindenhill_1.2-2_source + fonts-linex_2.2-6_source + fonts-linuxlibertine_5.1.3-1_source + fonts-lklug-sinhala_0.6-2_source + fonts-lobstertwo_2.0-1_source + fonts-lohit-beng-assamese_2.5.1-1_source + fonts-lohit-beng-bengali_2.5.1-1_source + fonts-lohit-deva_2.5.1-1_source + fonts-lohit-gujr_2.5.1-1_source + fonts-lohit-guru_2.5.1-1_source + fonts-lohit-knda_2.5.1-1_source + fonts-lohit-mlym_2.5.1-1_source + fonts-lohit-orya_2.5.1-1_source + fonts-lohit-taml_2.5.1-1_source + fonts-lohit-telu_2.5.1-2_source + fonts-manchufont_2.007.svn0068-2_source + fonts-mgopen_1.1-8_source + fonts-migmix_20120411-2_source + fonts-misaki_11-20080603-13_source + fonts-mlym_2:1.1_source + fonts-mmcedar_20101113a-2_source + fonts-monapo_20090423-8_source + fonts-motoya-l-cedar_1.00-6_source + fonts-motoya-l-maruberi_1.00-5_source + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_source + fonts-mplus_049-1_source + fonts-nafees_1.2-4_source + fonts-nakula_1.0-2_source + fonts-nanum_3.020-1_source + fonts-nanum-coding_2.0-4_source + fonts-nanum-eco_1.000-2_source + fonts-nanum-gothic-light_1.000-2_source + fonts-navilu_1.1-1_source + fonts-ocr-a_1.0-4_source + fonts-oflb-asana-math_000.907-4_source + fonts-oflb-euterpe_1.1-4_source + fonts-okolaks_0.5-5_source + fonts-oldstandard_2.2really-2_source + fonts-opendin_0.1-3_source + fonts-orya_2:1.1_source + fonts-orya-extra_2.0-2_source + fonts-pagul_1.0-5_source + fonts-paktype_0.0svn20121225-1_source + fonts-pecita_3.3-1_source + fonts-play_1.002+20111215.1+ds2-1_source + fonts-prociono_2.3-2_source + fonts-quattrocento_1.1-1_source + fonts-rufscript_010-3_source + fonts-sahadeva_1.0-2_source + fonts-samyak_1.2.2-3_source + fonts-sawarabi-gothic_20120615-1_source + fonts-sawarabi-mincho_20110220-5_source + fonts-senamirmir-washra_4.1-6_source + fonts-sil-abyssinica_1.200-3_source + fonts-sil-andika_1.002-2_source + fonts-sil-charis_4.106-5_source + fonts-sil-dai-banna_2.1-5_source + fonts-sil-doulos_4.106-4_source + fonts-sil-ezra_2.51-7_source + fonts-sil-galatia_2.1-4_source + fonts-sil-gentium_20081126:1.02-12_source + fonts-sil-gentium-basic_1.1-5_source + fonts-sil-nuosusil_2.1.1-7_source + fonts-sil-padauk_2.61-4_source + fonts-sil-scheherazade_1.001-8_source + fonts-sil-sophia-nubian_1.000-5_source + fonts-sil-zaghawa-beria_1.000-2_source + fonts-sipa-arundina_0.2.0-5_source + fonts-smc_5.0.1-2_source + fonts-stix_1.1.0-1_source + fonts-takao_003.02.01-7.1_source + fonts-taml_2:1.2_source + fonts-taml-tamu_1.0-1_source + fonts-taml-tscu_1.0-1_source + fonts-telu_2:1.1_source + fonts-telu-extra_2.0-2_source + fonts-tibetan-machine_1.901b-4_source + fonts-tlwg_1:0.5.0-5_source + fonts-tomsontalks_1.1-3_source + fonts-tuffy_20120614-1_source + fonts-ubuntu-title_1:0.3-1_source + fonts-ukij-uyghur_20110217-2_source + fonts-umeplus_20120403-3_source + fonts-unfonts-core_1.0.2-080608-6_source + fonts-unfonts-extra_1.0.2-080608-5_source + fonts-unikurdweb_1.0-4_source + fonts-uralic_0.0.20040829-4_source + fonts-vlgothic_20120629-2_source + fonts-vollkorn_2.1-1_source + fonts-yanone-kaffeesatz_0.20100525-4_source + fonts-yozvox-yozfont_13.09-dfsg-2_source + fonttools_2.3-1_source + fonty-rg_0.5_source + fontypython_0.4.4-1_source + foo-yc20_1.3.0-5_source + foo2zjs_20120510dfsg0-1_source + foobillard_3.0a-5_source + fookb_3.0-3_source + fookebox_0.6.1-1_source + foolscap_0.6.4-1_source + foomatic-db_20120523-1_source + foomatic-db-engine_4.0.8-3_source + foomatic-filters_4.0.17-1_source + fop_1:1.0.dfsg2-6_source + foptions_2160.81-1_source + foreign_0.8.50-1_source + foremost_1.5.7-4_source + forg_0.5.1-7_source + forgethtml_0.0.20031008-10_source + forgetsql_0.5.1-12_source + forked-daapd_0.19gcd-2.1_source + fort77_1.15-8_source + fortune-mod_1:1.99.1-4_source + fortune-zh_1.9_source + fortunes-bg_1.1_source + fortunes-bofh-excuses_1.2-2_source + fortunes-br_20080530_source + fortunes-cs_2.0-1_source + fortunes-de_0.30-1_source + fortunes-debian-hints_1.99_source + fortunes-eo_20020729-4_source + fortunes-es_1.32_source + fortunes-fr_0.65+nmu2_source + fortunes-ga_0.8_source + fortunes-it_1.99-3_source + fortunes-mario_0.20-7_source + fortunes-pl_0.0.20100311-1_source + fortunes-ru_1.52-2_source + fosfat_0.4.0-3_source + fossil_1:1.22.1+dfsg-0.1_source + fotowall_0.9-8_source + fotoxx_11.11.1-1.1_source + foundry_0.0.20100226-1_source + fox1.6_1.6.45-1_source + foxtrotgps_1.1.1-2_source + foxyproxy_3.4-1.1~deb7u1_source + fpc_2.6.0-9_source + fpconst_0.7.2-5_source + fped_0.0+r5986-1_source + fping_3.2-1_source + fpm2_0.79-3_source + fportfolio_2130.80-1_source + fprint-demo_20080303git-5_source + fprintd_0.4.1-5-g73edad0-3_source + fprobe_1.1-7.3_source + fprobe-ulog_1.1-7.3_source + fqterm_0.9.6.10-1.1_source + fracplanet_0.4.0-3_source + fragmaster_1.6-3_source + frama-c_20111001+nitrogen+dfsg-4_source + francine_0.99.8orig-6_source + fraqtive_0.4.5-6_source + freealchemist_0.5-1_source + freealut_1.1.0-3_source + freebirth_0.3.2-8_source + freebsd-buildutils_9.0-11_source + freebsd-glue_0.0.4_source + freebsd-libs_9.0+ds1-4_source + freebsd-manpages_8.2-1_source + freebsd-quota_8.2-1_source + freebsd-sendpr_3.113+8.2-1_source + freebsd-smbfs_9.0~svn227117-2_source + freebsd-utils_9.0+ds1-11~deb7u1_source + freecdb_0.75_source + freecell-solver_3.12.0-1_source + freeciv_2.3.2-1_source + freecode-submit_2.4-1_source + freecol_0.10.5+dfsg-1_source + freecraft_1:1.20-1.1_source + freedict_1.3-4_source + freedink_1.08.20120427-2.1_source + freedink-data_1.08.20111016-1_source + freedink-dfarc_3.10-1.1_source + freedoom_0.7-1_source + freedroid_1.0.2+cvs040112-4_source + freedroidrpg_0.15.1-1_source + freefem_3.5.8-5_source + freefem++_3.19.1-1_source + freefem3d_1.0pre10-3.1_source + freegish_1.53+git20101011+dfsg-2_source + freeglut_2.6.0-4_source + freehdl_0.0.7-1.1_source + freehep-chartableconverter-plugin_2.0-6_source + freehep-export_2.1.1-2_source + freehep-graphics2d_2.1.1-3_source + freehep-graphicsio_2.1.1-3_source + freehep-graphicsio-emf_2.1.1-emfplus+dfsg1-2_source + freehep-graphicsio-java_2.1.1-1_source + freehep-graphicsio-pdf_2.1.1+dfsg-1_source + freehep-graphicsio-ps_2.1.1-1_source + freehep-graphicsio-svg_2.1.1-3_source + freehep-graphicsio-swf_2.1.1+dfsg-1_source + freehep-graphicsio-tests_2.1.1+dfsg1-3_source + freehep-io_2.0.2-4_source + freehep-swing_2.0.3-3_source + freehep-util_2.0.2-5_source + freehep-xml_2.1.2+dfsg1-3_source + freeimage_3.15.1-1_source + freeipmi_1.1.5-3_source + freemat_4.0-5_source + freemedforms-project_0.7.6-1_source + freemind_0.9.0+dfsg-2_source + freepats_20060219-1_source + freeplane_1.1.3-2_source + freeplayer_20070531+dfsg.1-3_source + freepops_0.2.9-7_source + freepwing_1.5-1_source + freeradius_2.1.12+dfsg-1.2_source + freerdp_1.0.1-1.1+deb7u2_source + freesci_0.6.4-7_source + freespeak_0.3.0-5_source + freesweep_0.90-2_source + freetable_2.3-4_source + freetalk_3.2-11_source + freetds_0.91-2+deb7u1_source + freetennis_0.4.8-9_source + freetts_1.2.2-3_source + freetuxtv_0.6.5~dfsg1-1_source + freetype_2.4.9-1.1_source + freevial_1.3-2_source + freevo_1.9.2b2-4.2_source + freewheeling_0.6-1.1_source + freewnn_1.1.1~a021+cvs20100325-6_source + freexl_1.0.0b-1_source + fregression_2100.76-4_source + frei0r_1.1.22git20091109-1.2_source + freqtweak_0.7.2-4_source + frescobaldi_2.0.5+ds1-1_source + freshen_0.2-2_source + fretsonfire_1.3.110.dfsg-3_source + fretsonfire-songs-muldjord_2.dfsg-1_source + fretsonfire-songs-sectoid_1.dfsg-2_source + fribidi_0.19.2-3_source + fritzing_0.6.3b+dfsg-3.1_source + frog_0.12.15-3_source + frogdata_0.3-2_source + frogr_0.7-2_source + frontaccounting_2.2.10-3.1_source + frotz_2.43-4_source + frown_0.6.1-13_source + frozen-bubble_2.212-3_source + fruit_2.1.dfsg-6_source + fsarchiver_0.6.15-1_source + fsgateway_0.1.1-3_source + fslint_2.42-2_source + fsmark_3.3-1_source + fso-datad_0.11.0-1_source + fso-deviced_0.11.4-1_source + fso-frameworkd_0.9.5.9+git20110512-4_source + fso-gpsd_0.8-3.1_source + fso-gsm0710muxd_0.9.3.1-3_source + fso-gsmd_0.11.3-2_source + fso-specs_2012.05.24.1-1_source + fso-usaged_0.11.0-1_source + fspanel_0.7-13_source + fsplib_0.11-2_source + fsprotect_1.0.6_source + fspy_0.1.1-1_source + fstransform_0.9.3-1_source + fstrcmp_0.4.D001-1+deb7u1_source + fsviewer-icons_1.0-6_source + fsvs_1.2.3-0+nmu1_source + fswebcam_20110717-1_source + ftdi-eeprom_0.3-2_source + fte_0.50.2b6-1_source + fteqcc_3343+svn3400-3_source + ftgl_2.1.3~rc5-4_source + ftjam_2.5.2-1.1_source + ftnchek_3.3.1-4_source + ftp-upload_1.5_source + ftp.app_0.3-1_source + ftpcopy_0.6.7-3_source + ftpgrab_0.1.5-3_source + ftphs_1.0.8-1_source + ftplib_3.1-1-9_source + ftpmirror_1.96+dfsg-13_source + ftpwatch_1.21_source + ftrading_2100.76-3_source + fts_1.1-1.1_source + fullquottel_0.1.2-2_source + funcoeszz_8.3-2_source + funcparserlib_0.3.5-2_source + funitroots_2100.76-3_source + funkload_1.13.0-1.1_source + funnelweb_3.2-4.2_source + funnelweb-doc_3.2d-3_source + funny-manpages_1.3-5_source + funnyboat_1.5-8_source + funtools_1.4.4-3_source + furiusisomount_0.11.3.1~repack1-0.1_source + fuse_2.9.0-2+deb7u1_source + fuse-convmvfs_0.2.6-2_source + fuse-emulator_1.0.0.1a+dfsg1-4_source + fuse-emulator-utils_1.0.0-4_source + fuse-exfat_0.9.7-2_source + fuse-posixovl_1.2.20120215+gitf5bfe35-1_source + fuse-umfuse-ext2_0.4-1_source + fuse-umfuse-fat_0.1a-1_source + fuse-umfuse-iso9660_0.3-1_source + fuse4bsd_0.3.9~pre1.20080208-4_source + fusedav_0.2-3.1_source + fuseiso_20070708-3_source + fusesmb_0.8.7-1.2_source + fusil_1.4-1_source + fusioninventory-agent_2.2.3-8_source + fuss-launcher_0.5-1_source + fuzz_0.6-14_source + fuzzyocr_3.6.0-7_source + fvwm_1:2.5.30.ds-1.1_source + fvwm-crystal_3.0.5.dfsg-5_source + fvwm-icons_20070101-1_source + fvwm1_1.24r-55_source + fwanalog_0.6.9-6.2_source + fwbuilder_5.1.0-3_source + fweb_1.62-11.1_source + fwknop_2.0.0rc2-2+deb7u2_source + fwlogwatch_1.2-2_source + fwsnort_1.6.2-1_source + fxload_0.0.20081013-1_source + fxt_0.2.6-2_source + fyre_1.0.1-4_source + g-wrap_1.9.14-1.1_source + g15composer_3.2-2_source + g15daemon_1.9.5.3-8.2_source + g15macro_1.0.3-3_source + g15mpd_1.2svn.0.svn319-3_source + g15stats_1.9.2-2_source + g2_0.72-2.1_source + g2clib_1.2.2-2_source + g2ipmsg_0.9.6+dfsg-1.1_source + g2p-sk_0.4.2-1_source + g3data_1:1.5.3-2_source + g3dviewer_0.2.99.5~svn130-1_source + gabedit_2.4.2-2_source + gadap_2.0-1_source + gadfly_1.0.0-15.1_source + gadmin-bind_0.2.5-2_source + gadmin-openvpn-client_0.1.2-4_source + gadmin-openvpn-server_0.1.5-3.1_source + gadmin-proftpd_1:0.4.2-1_source + gadmin-rsync_0.1.7-1_source + gadmin-samba_0.2.9-3_source + gadmintools-meta_10_source + gaduhistory_0.5-2_source + gaffitter_0.6.0-1_source + gaim-librvp_0.9.5-3_source + gaim-themes_0.2-1_source + gajim_0.15.1-4.1_source + galax_1.1-10_source + galculator_1.3.4-1_source + galib_2.4.7-3_source + gallery_1.5.10.dfsg-1.1_source + gallery-uploader_2.4-1_source + galleryremote_0.6-1.1_source + galleta_1.0+20040505-5_source + galternatives_0.13.5+nmu2_source + gamazons_0.83-4_source + gambas3_3.1.1-2_source + gambc_4.2.8-1.1_source + gambit_0.2010.09.01-1.1_source + game-music-emu_0.5.5-2_source + gameclock_4.0-3_source + gamera_3.3.3-2_source + games-thumbnails_20120227_source + gamgi_0.15.8-1_source + gamin_0.1.10-4.1_source + gamine_1.1-2_source + gammu_1.31.90-1_source + ganeti_2.5.2-1_source + ganeti-instance-debootstrap_0.11-1_source + ganglia_3.3.8-1+nmu1_source + ganglia-modules-linux_1.3.4-6_source + gant_1.9.7-1_source + ganv_0~svn4468~dfsg0-1_source + ganymed-ssh2_250-2_source + ganyremote_5.13-1_source + gap_4r4p12-2_source + gap-ctbllib_1r1p3-5_source + gap-gdat_4r4p10-1_source + gap-tomlib_1r1p4-1_source + gaphas_0.7.2-1_source + gaphor_0.17.0-1_source + garcon_0.1.12-1_source + garden-of-coloured-lights_1.0.8-1_source + gargoyle-free_2011.1-2_source + garlic_1.6-1.1_source + garlic-doc_1.6-1_source + garmin-ant-downloader_0:20110626-1_source + garmin-forerunner-tools_0.10-3_source + garmindev_0.3.4-2_source + gartoon_0.5-4_source + gastables_0.3-2_source + gatling_0.12cvs20120114-4_source + gatos_0.0.5-19_source + gauche_0.9.1-5.1_source + gauche-c-wrapper_0.6.1-4.1_source + gauche-gl_0.4.4-5_source + gaupol_0.19.2-1_source + gausssum_2.2.5-2_source + gav_0.9.0-3_source + gav-themes_0.7.3-2_source + gavl_1.4.0-1_source + gawk_1:4.0.1+dfsg-2.1_source + gbackground_1.3-1_source + gbase_0.5-2.2_source + gbatnav_1.0.4cvs20051004-5_source + gbemol_0.3.2-2_source + gbgoffice_1.4-8_source + gbirthday_0.6.6-2_source + gbonds_2.0.3-2.1_source + gbrainy_1:2.1.2-1_source + gbrowse_2.48~dfsg-1_source + gbsplay_0.0.91-1_source + gcal_3.6.1-2_source + gcalcli_2.1-2_source + gcalctool_6.4.2.1-3_source + gcap_0.1.1-1_source + gcb_1:1.07-3_source + gcc-3.3_1:3.3.6ds1-25_source + gcc-4.4_4.4.7-2_source + gcc-4.6_4.6.3-14_source + gcc-4.7_4.7.2-4_source + gcc-4.7_4.7.2-5_source + gcc-avr_1:4.7.2-2_source + gcc-defaults_1.120_source + gcc-h8300-hms_1:3.4.6+dfsg-1_source + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_source + gcc-mingw-w64_8_source + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_source + gccxml_0.9.0+cvs20120420-4_source + gcin_2.7.6.1+dfsg-1_source + gcipher_1.1-1_source + gcj-4.6_4.6.3-1_source + gcj-4.7_4.7.2-3_source + gcl_2.6.7+dfsga-1_source + gco_0.5.0-6_source + gcolor2_0.4-2.1_source + gcompris_12.01-1_source + gconf_3.2.5-1+build1_source + gconf-editor_3.0.1-1_source + gconfmm2.6_2.28.0-1_source + gconjugue_0.7.2-1_source + gcontactsync_0.3.5-1_source + gcp_0.1.3-2_source + gcpegg_5.1-13_source + gcr_3.4.1-3_source + gcstar_1.6.2-1_source + gcx_1.3-1.1_source + gd4o_1.0~alpha5-5_source + gdal_1.9.0-3.1_source + gdata_2.11.0-1_source + gdata-sharp_2.1.0.0-1_source + gdb_7.4.1+dfsg-0.1_source + gdb_7.4.1-1.1_source + gdb_7.4.1-3_source + gdb-avr_7.4-1_source + gdb-mingw-w64_5_source + gdb-msp430_7.2a~mspgcc-20111205-1_source + gdbm_1.8.3-11_source + gdc-4.4_1.063-4.4.7-1_source + gdc-4.6_0.29.1-4.6.3-2_source + gdcm_2.2.0-14.1_source + gddrescue_1.16-1_source + gdebi_0.8.7_source + gdeskcal_0.57.1-2.1_source + gdesklets_0.36.1-5_source + gdevilspie_1:0.5-2_source + gdigi_0.2.0+hg20110905r195-1_source + gdis_0.90-4_source + gdisk_0.8.5-1_source + gdk-pixbuf_2.26.1-1_source + gdl_3.4.2-1_source + gdm3_3.4.1-8_source + gdmap_0.8.1-2_source + gdome2_0.8.1+debian-4.1_source + gdpc_2.2.5-2_source + geant321_1:3.21.14.dfsg-10_source + geany_1.22+dfsg-2_source + geany-plugins_0.21.1.dfsg-4_source + gearhead_1.100-2_source + gearhead2_0.628-1_source + gearman-interface_0.13.2-2.1_source + gearman-server_1.11-2_source + gearmand_0.33-2_source + gecko-mediaplayer_1.0.6-1_source + gecode_3.7.3-1_source + gecrit_2.8.3-1_source + geda-gaf_1:1.6.2-4.3_source + geda-xgsch2pcb_0.1.3-2_source + gedit_3.4.2-1_source + gedit-latex-plugin_3.4.0-1_source + gedit-plugins_3.4.0-1_source + gedit-r-plugin_0.7.1.2-Gtk3-1_source + gedit-source-code-browser-plugin_3.0.3-2_source + gedit-valencia-plugin_0.3.0-3.1_source + geekcode_1.7.3-5_source + geeqie_1:1.0-10.1_source + gegl_0.2.0-2+nmu1_source + geiser_0.1.4-2_source + geki2_2.0.3-8_source + geki3_1.0.3-7_source + gelemental_1.2.0-8_source + gem_1:0.93.3-5_source + gem2deb_0.3.0_source + gemanx-gtk2_0.1.0.3-2_source + gemdropx_0.9-6_source + gems_1.1.1-2_source + genbackupdata_1.6-1_source + genders_1.18-1_source + genetic_0.1.1b-11_source + geneweb_6.05.1-1_source + genext2fs_1.4.1-4_source + gengetopt_2.22.5-1_source + genisovh_0.1-3_source + genius_1.0.14-1_source + genparse_0.9.1-1_source + genromfs_0.5.2-2_source + genshi_0.6-3_source + gentle_1.9+cvs20100605+dfsg1-1_source + gentlyweb-utils_1.5-1_source + gentoo_0.19.13-2_source + genus2reduction_0.3-2.2_source + geoclue_0.12.0-4_source + geocode-glib_0.99.0-1_source + geogebra_4.0.34.0+dfsg1-1_source + geogebra-kde_1.0-1_source + geographiclib_1.21-1_source + geoip_1.4.8+dfsg-3_source + geoip-database_20130213-1_source + geomview_1.9.4-3_source + geopy_0.94.2-1_source + geos_3.3.3-1.1_source + geotranz_3.1-2.1_source + gerbv_2.6.0-1_source + germinate_2.10_source + geronimo-activation-1.1-spec_1.0.2-2_source + geronimo-commonj-spec_1.1.1-1_source + geronimo-ejb-3.0-spec_1.0.1-1_source + geronimo-interceptor-3.0-spec_1.0.1-1_source + geronimo-j2ee-connector-1.5-spec_2.0.0-1_source + geronimo-jacc-1.1-spec_1.0.1-1.1_source + geronimo-javamail-1.4-provider_1.8.3-1_source + geronimo-javamail-1.4-spec_1.7.1-2_source + geronimo-jms-1.1-spec_1.1-1.2_source + geronimo-jpa-2.0-spec_1.1-2_source + geronimo-jpa-3.0-spec_1.1.1-1_source + geronimo-jta-1.1-spec_1.1.1-2_source + geronimo-osgi-support_1.0-2_source + geronimo-stax-1.2-spec_1.1-1_source + geronimo-validation-1.0-spec_1.1-2_source + gerstensaft_0.3-4_source + gesftpserver_0.1-3_source + geshi_1.0.8.4-2_source + gespeaker_0.7-3_source + get-flash-videos_1.25~git2012.06.27-1_source + get-iplayer_2.82-2+deb7u1_source + getdata_0.1-1_source + getfem++_4.1.1+dfsg1-11_source + getmail4_4.32.0-2_source + getstream_20081204-1.1_source + gettext_0.18.1.1-9_source + gettext-ant-tasks_0.9.7~svn203-2_source + gettext-lint_0.4-2_source + gexec_0.4-1_source + geximon_0.7.7-2_source + gexiv2_0.4.1-3_source + gextractwinicons_0.3.1-1_source + gfan_0.3dfsg-1.1_source + gfarm_2.4.1-1.1_source + gfarm2fs_1.2.2-1.1_source + gfax_0.7.7+ds-2_source + gff2aplot_2.0-7_source + gff2ps_0.98d-4_source + gflags_2.0-1_source + gfm_1.03-2_source + gforth_0.7.0+ds2-0.1_source + gfpoken_0.32-2_source + gftp_2.0.19-4_source + gfxboot_4.5.0-3_source + gfxboot-examples_4.5.0-67.1-3_source + gfxboot-themes_4.5.0-67.1-2_source + ggcov_0.8.4-2_source + ggobi_2.1.10-4_source + ghc_7.4.1-4_source + ghc-mod_1.10.18-1_source + ghc-testsuite_7.4.1-3_source + ghemical_3.0.0-1_source + ghex_3.4.1-1_source + ghextris_0.9.0-3_source + ghostess_20120105-1_source + ghostscript_9.05~dfsg-6.3+deb7u1_source + giblib_1.2.4-8_source + gif2apng_1.7-3_source + gif2png_2.5.8-1_source + giflib_4.1.6-10_source + gifsicle_1.67-1_source + gifticlib_1.0.9-1_source + giftrans_1.12.2-16_source + gigedit_0.2.0-1_source + giggle_0.6.1-2_source + gigolo_0.4.1+dfsg-1_source + gimmix_0.5.7.1-4_source + gimp_2.8.2-2+deb7u1_source + gimp-data-extras_1:2.0.1-3_source + gimp-dcraw_1.31-1.1_source + gimp-dds_2.0.9-3_source + gimp-dimage-color_1.1.0-3.1_source + gimp-gap_2.6.0+dfsg-3_source + gimp-help_2.6.1-1_source + gimp-plugin-registry_5.20120621_source + gimp-resynthesizer_0.16-3_source + gimp-texturize_2.1-2_source + gimplensfun_0.2.1-1_source + ginac_1.6.2-1_source + ginkgocadx_2.12.0.4889-1_source + ginspector_20050529-3.1_source + gio-sharp_2.22.3-2_source + gip_1.7.0-1-3_source + girara_0.1.2-3_source + git_1:1.7.10.4-1+wheezy1_source + git-annex_3.20120629_source + git-buildpackage_0.6.0~git20120601_source + git-cola_1.4.3.5-1_source + git-dpm_0.8.4-1_source + git-extras_1.7.0-1.2_source + git-flow_0.4.1-2_source + git-ftp_0.7.4+git20120528-1_source + git-review_1.17-1_source + git-sh_1.1-1_source + git-stuff_11-1_source + git2cl_2.0+git200808271242-1_source + gitg_0.2.4-1.1+deb7u1_source + github-backup_1.20120628.1_source + github-cli_1.0.0-1+nmu1_source + gitit_0.10.0.1-1_source + gitmagic_20120520-2_source + gitolite_2.3-1_source + gitpkg_0.23_source + gitstats_2012.05.28-1_source + giws_2.0.0-1_source + gjacktransport_0.5.3-1_source + gjay_0.3.2-1_source + gjiten_2.6-2.2_source + gjots2_2.3.15-1_source + gjs_1.32.0-5_source + gkdebconf_1.2.68_source + gkermit_1.0-9_source + gkeyfile-sharp_0.1-4_source + gkrellkam_2.0.0-1.1_source + gkrellm_2.3.5-3_source + gkrellm-gkrellmpc_0.1~beta10-2_source + gkrellm-leds_0.8.0-1.2_source + gkrellm-mailwatch_2.4.3-1_source + gkrellm-radio_2.0.4-1.1_source + gkrellm-reminder_2.0.0-3_source + gkrellm-snmp_1.0-1.2_source + gkrellm-thinkbat_0.2.2-1_source + gkrellm-volume_2.1.13-1_source + gkrellm-x86info_0.0.2-9_source + gkrellm-xkb_1.05-5_source + gkrellmitime_1.0.1-5_source + gkrellmoon_0.6-5_source + gkrellmwireless_2.0.3-1_source + gkrellshoot_0.4.4-1_source + gkrelltop_2.2.13-1_source + gkrelluim_0.3.1-4_source + gkrellweather_2.0.8-2_source + gkremldk_0.9.7-2.1_source + gksu_2.0.2-6_source + gl-117_1.3.2-2.1_source + gl2ps_1.3.6-1_source + glabels_3.0.0-3_source + glade_3.12.1-1_source + glade-3_3.6.7-2.1_source + glam2_1064-1_source + glance_2012.1.1-5_source + glark_1.8.0-1_source + glassfish_1:2.1.1-b31g-3_source + glaurung_2.2-2_source + glbsp_2.24-1_source + gle_3.1.0-7_source + gle-graphics_4.2.4c-5_source + glee_5.4.0-1_source + glew_1.7.0-3_source + glfer_0.4.2-2_source + glfw_2.7.2-1_source + glhack_1.2-1_source + glib-networking_2.32.3-1_source + glib2.0_2.33.12+really2.32.4-5_source + glibmm2.4_2.32.1-1_source + glide_2002.04.10ds1-7_source + glipper_2.3-3.1_source + glitch_0.6-2.1_source + gliv_1.9.7-2_source + glm_0.9.3.3+dfsg-0.1_source + glob2_0.9.4.4-2.1_source + global_5.7.1-2_source + globs_0.2.0~svn50-4_source + globus-authz_2.2-1_source + globus-authz-callout-error_2.2-1_source + globus-callout_2.2-1_source + globus-common_14.7-2_source + globus-core_8.8-2_source + globus-ftp-client_7.3-1_source + globus-ftp-control_4.4-1_source + globus-gass-cache_8.1-2_source + globus-gass-cache-program_5.1-1_source + globus-gass-copy_8.4-1_source + globus-gass-server-ez_4.3-1_source + globus-gass-transfer_7.2-1_source + globus-gatekeeper_9.11-1_source + globus-gfork_3.2-1_source + globus-gram-audit_3.1-3_source + globus-gram-client_12.4-1_source + globus-gram-client-tools_10.3-1_source + globus-gram-job-manager_13.33-1_source + globus-gram-job-manager-callout-error_2.1-2_source + globus-gram-job-manager-condor_1.3-1_source + globus-gram-job-manager-fork_1.5-1_source + globus-gram-job-manager-pbs_1.5-1_source + globus-gram-job-manager-scripts_4.2-2_source + globus-gram-job-manager-sge_1.5-1_source + globus-gram-protocol_11.3-1_source + globus-gridftp-server_6.10-2_source + globus-gridftp-server-control_2.5-2_source + globus-gridmap-callout-error_1.2-2_source + globus-gsi-callback_4.2-1_source + globus-gsi-cert-utils_8.3-1_source + globus-gsi-credential_5.3-1_source + globus-gsi-openssl-error_2.1-2_source + globus-gsi-proxy-core_6.2-1_source + globus-gsi-proxy-ssl_4.1-2_source + globus-gsi-sysconfig_5.2-1_source + globus-gss-assist_8.5-1_source + globus-gssapi-error_4.1-2_source + globus-gssapi-gsi_10.6-1_source + globus-io_9.3-1_source + globus-openssl-module_3.2-1_source + globus-proxy-utils_5.0-2_source + globus-rls-client_5.2-8_source + globus-rls-server_4.9-11_source + globus-rsl_9.1-2_source + globus-scheduler-event-generator_4.6-1_source + globus-simple-ca_3.0-2_source + globus-usage_3.1-2_source + globus-xio_3.3-1_source + globus-xio-gsi-driver_2.3-1_source + globus-xio-pipe-driver_2.2-1_source + globus-xio-popen-driver_2.3-1_source + globus-xioperf_3.1-1_source + glogg_0.9.0-1_source + gloox_1.0-1.1_source + glosstex_0.4.dfsg.1-3_source + glotski_0.2-7_source + glpeces_5.0-2_source + glpi_0.83.31-1_source + glpk_4.45-1_source + glpk-java_1.0.18-1_source + glrr_20050529-3.1_source + glrr-widgets_20050529-3.1_source + gltron_0.70final-10_source + gluas_0.1.20-1_source + glue_0.2.5-3_source + glue-schema_2.0.8-1_source + gluegen2_2.0-rc5-4_source + glui_2.36-4_source + glurp_0.12.3-1_source + glusterfs_3.2.7-3+deb7u1_source + glw_8.0.0-1_source + gmail-notify_1.6.1.1-2_source + gman_0.9.3-5.2_source + gmanedit_0.4.2-5_source + gmchess_0.29.6-2_source + gmediaserver_0.13.0-8_source + gmemusage_0.2-11_source + gmerlin_1.2.0~dfsg+1-1_source + gmerlin-avdecoder_1.2.0~dfsg-1_source + gmerlin-encoders_1.2.0-2_source + gmetadom_0.2.6-6_source + gmetrics_0.5-1_source + gmfsk_0.6+0.7pre1-2.3_source + gmic_1.5.1.6+dfsg-4_source + gmidimonitor_3.6+dfsg0-1_source + gmime_2.6.10-1_source + gmlive_0.22.3-1_source + gmobilemedia_0.4+dfsg-13_source + gmod_3.1-14_source + gmodels_2.15.3-1_source + gmorgan_0.40-1_source + gmotionlive_1.0-3_source + gmp_2:5.0.5+dfsg-2_source + gmp-ecm_6.4.2-1_source + gmpc_11.8.16-6_source + gmpc-plugins_11.8.16-1_source + gmrun_0.9.2-2.1_source + gmt_4.5.7-2_source + gmt-coast-low_1:2.1.1-1_source + gmt-doc-ps_3.4.4-1_source + gmt-gshhs_2.2.0-2_source + gmt-manpages_3.4.4-1_source + gmt-tutorial_3.4-1.1_source + gmtk_1.0.6-1_source + gmtkbabel_0.1-1_source + gmtp_1.3.3-1_source + gmult_8.0-1_source + gmusicbrowser_1.1.9-2_source + gmysqlcc_0.3.0-2_source + gnac_0.2.4-1_source + gnade_1.6.2-9_source + gnarwl_3.6.dfsg-6.2_source + gnash_0.8.11~git20120629-1+deb7u1_source + gnat_4.6_source + gnat-4.6_4.6.3-8_source + gnat-gps_5.0-13_source + gnats_4.1.0-2_source + gnelib_0.75+svn20091130-1_source + gnet_2.0.8-2.2_source + gngb_20060309-3_source + gniall_0.7.1-7_source + gnoemoe_2.2.0+dfsg-2.2_source + gnokii_0.6.30+dfsg-1_source + gnomad2_2.9.6-4_source + gnome-activity-journal_0.8.0-2_source + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_source + gnome-applets_3.4.1-3_source + gnome-audio_2.22.2-1_source + gnome-backgrounds_3.4.2-1_source + gnome-blog_0.9.1-5_source + gnome-bluetooth_3.4.2-1_source + gnome-boxes_3.4.3+dfsg-1_source + gnome-breakout_0.5.3-4_source + gnome-btdownload_0.0.32-4_source + gnome-chemistry-utils_0.12.12-1_source + gnome-codec-install_0.4.7+nmu1_source + gnome-color-chooser_0.2.5-1_source + gnome-color-manager_3.4.2-1_source + gnome-colors_5.5.1-1_source + gnome-commander_1.2.8.15-3_source + gnome-common_3.4.0.1-1_source + gnome-contacts_3.4.1-1_source + gnome-control-center_1:3.4.3.1-2_source + gnome-desktop_2.32.1-2_source + gnome-desktop-sharp2_2.26.0-8_source + gnome-desktop3_3.4.2-1_source + gnome-devel-docs_3.4.1-1_source + gnome-dictionary_3.4.0-2_source + gnome-disk-utility_3.0.2-3_source + gnome-do_0.9-1_source + gnome-do-plugins_0.8.4-5_source + gnome-doc-utils_0.20.10-1_source + gnome-documents_0.4.2-2_source + gnome-dvb-daemon_1:0.2.8-1_source + gnome-extra-icons_1.1-2_source + gnome-font-viewer_3.4.0-2_source + gnome-games_1:3.4.2-3_source + gnome-games-extra-data_3.2.0-4_source + gnome-gmail_1.8.2-1_source + gnome-hearts_0.3-2.1_source + gnome-hwp-support_0.1.4-1_source + gnome-icon-theme_3.4.0-2_source + gnome-icon-theme-extras_3.4.0-1_source + gnome-icon-theme-nuovo_0.5-4.1_source + gnome-icon-theme-symbolic_3.4.0-2_source + gnome-icon-theme-yasis_0.4.2-1_source + gnome-js-common_0.1.2-1_source + gnome-keyring_3.4.1-5_source + gnome-keyring-sharp_1.0.0-4_source + gnome-mag_1:0.16.3-1_source + gnome-mastermind_0.3.1-2_source + gnome-media_3.4.0-1_source + gnome-menus_3.4.2-5_source + gnome-menus2_3.0.1-4_source + gnome-mime-data_2.18.0-1_source + gnome-mount_0.9~git20110731-1_source + gnome-mplayer_1.0.6-1_source + gnome-mud_0.11.2-1_source + gnome-nds-thumbnailer_3.0.0-1_source + gnome-nettool_3.2.0-1_source + gnome-online-accounts_3.4.2-2_source + gnome-orca_3.4.2-2_source + gnome-osd_0.12.2-1.1_source + gnome-packagekit_3.4.2-2_source + gnome-paint_0.4.0-3_source + gnome-panel_3.4.2.1-4_source + gnome-phone-manager_0.68-3_source + gnome-photo-printer_0.7.0-1.2_source + gnome-pie_0.5.3-1_source + gnome-pkg-tools_0.19.3_source + gnome-power-manager_3.4.0-2_source + gnome-ppp_0.3.23-1.2_source + gnome-python_2.28.1+dfsg-1_source + gnome-python-desktop_2.32.0+dfsg-2_source + gnome-python-extras_2.25.3-12_source + gnome-rdp_0.3.0.9-3_source + gnome-schedule_2.1.1-4_source + gnome-screensaver_3.4.1-1_source + gnome-screensaver-flags_0.1-1_source + gnome-screenshot_3.4.1-1_source + gnome-search-tool_3.4.0-2_source + gnome-session_3.4.2.1-4_source + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_source + gnome-sharp2_2.24.2-3_source + gnome-shell_3.4.2-7+deb7u1_source + gnome-shell-extensions_3.4.0-2_source + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_source + gnome-specimen_0.4-8_source + gnome-speech_1:0.4.25-5_source + gnome-split_1.1-1_source + gnome-subtitles_1.2-4_source + gnome-sushi_0.4.1-3_source + gnome-system-log_3.4.1-3_source + gnome-system-monitor_3.4.1-2_source + gnome-system-tools_3.0.0-2_source + gnome-terminal_3.4.1.1-2_source + gnome-themes_2.30.2-1_source + gnome-themes-extras_2.22.0-3_source + gnome-themes-standard_3.4.2-2.1_source + gnome-tweak-tool_3.4.0.1-2_source + gnome-u2ps_0.0.4-4.2_source + gnome-user-docs_3.4.2-1+build1_source + gnome-user-share_3.0.2-1_source + gnome-vfs_1:2.24.4-2_source + gnome-vfsmm2.6_2.26.0-1_source + gnome-video-effects_0.4.0-1_source + gnome-xcf-thumbnailer_1.0-1.1_source + gnome3-emblems_0.1.0-2_source + gnomecatalog_0.3.4.2-1_source + gnomekiss_2.0-4_source + gnomeradio_1.8-2_source + gnomint_1.2.1-4_source + gnonlin_0.10.17-2_source + gnote_0.8.3-1_source + gnotime_2.3.1~snapshot20091119-5_source + gnu-efi_3.0i-3_source + gnu-fdisk_1.2.4-3.1_source + gnu-smalltalk_3.2.4-2_source + gnu-standards_2010.03.11-1_source + gnubg_0.90+20120429-1_source + gnubiff_2.2.15-1_source + gnubik_2.4-3_source + gnucap_1:0.36~20091207-2_source + gnucash_1:2.4.10-6_source + gnucash-docs_2.4.1-3_source + gnuchess_6.0.2-1_source + gnuchess-book_1.02-1_source + gnudatalanguage_0.9.2-4_source + gnudoq_0.94-2.1_source + gnugk_2:3.0.2-3_source + gnugo_3.8-5_source + gnuhtml2latex_0.4-2_source + gnuift_0.1.14-12_source + gnuit_4.9.5-3_source + gnujump_1.0.6-4_source + gnulib_20120404+stable-1_source + gnumach_2:1.3.99.dfsg.git20120610-1_source + gnumed-client_1.1.17+dfsg-1_source + gnumed-server_16.17-1_source + gnumeric_1.10.17-1.1_source + gnunet_0.9.3-7_source + gnunet-fuse_0.9.3-2_source + gnunet-gtk_0.9.3-1_source + gnupg_1.4.12-7_source + gnupg_1.4.12-7+deb7u3_source + gnupg-doc_2003.04.06+dak1-1_source + gnupg-pkcs11-scd_0.7.3-1_source + gnupg2_2.0.19-2+deb7u1_source + gnupginterface_0.3.2-9.1_source + gnuplot_4.6.0-8_source + gnuplot-mode_1:0.6.0-8_source + gnupod-tools_0.99.8-2.1_source + gnuradio_3.5.3.2-1_source + gnurobbo_0.66+dfsg-2_source + gnurobots_2:1.2.0-4_source + gnuserv_3.12.8-3_source + gnushogi_1.3.2-9_source + gnusim8085_1.3.7-1_source + gnustep-back_0.20.1-2.1_source + gnustep-base_1.22.1-4_source + gnustep-dl2_0.12.0-9+nmu1_source + gnustep-examples_1:1.3.0-1_source + gnustep-gui_0.20.0-3_source + gnustep-icons_1.0-5_source + gnustep-make_2.6.2-2_source + gnustep-netclasses_1.06.dfsg-5_source + gnutls26_2.12.20-7_source + go2_1.20120217-1_source + goaccess_1:0.5-1_source + goattracker_2.72-1_source + gob2_2.0.18-1_source + goban_1.1-2_source + gobby_0.4.13-2_source + gobby-infinote_0.4.94-5_source + gobject-introspection_1.32.1-1_source + goby_1.1-1_source + gocr_0.49-1_source + god_0.7.18-3_source + goffice_0.8.17-1.2_source + gofigure2_0.9.0-1_source + gogglesmm_0.12.6-1_source + gogoc_1:1.2-4_source + golang_2:1.0.2-1.1_source + goldencheetah_2.1-4_source + goldendict_1.0.2~git20110906-1.1_source + golly_2.3-1_source + gom_0.30.2-5.4_source + gomoku.app_1.2.9-1_source + gonzui_1.2+cvs20070129-3.1_source + goo_0.155-12_source + goobox_3.0.1-5_source + goocanvas_0.15-1_source + goocanvasmm_0.15.4-1_source + google-bookmarks_1.5-3_source + google-mock_1.6.0-1_source + google-perftools_2.0-2_source + google-sitemapgen_1.5-3_source + googlefontdirectory-tools_20120309.1-1_source + gopchop_1.1.8-5_source + gopher_3.0.13_source + goplay_0.5-1.1_source + gordon_0~git20101011-2_source + gorm.app_1.2.16-1_source + gosa_2.7.4-4.3~deb7u1_source + gosa-perl_0.2-2_source + gosmore_0.0.0.20100711-2.1_source + gotmail_0.9.0-1_source + goto-common_3.1-1_source + goto-fai_3.1-1_source + goto-fai-backend_3.0-1.1_source + goto-fai-progress_3.0-1_source + gource_0.38-1_source + gourmet_0.15.9-1_source + gozer_0.7.nofont.1-5_source + gozerbot_0.99.1-2_source + gozerbot-plugins_0.9.1.2-4_source + gp2c_0.0.7pl3-1_source + gpa_0.9.0-4_source + gpac_0.5.0~dfsg0-1_source + gpaint_0.3.3-6_source + gpart_0.1h-11_source + gparted_0.12.1-2_source + gpdftext_0.1.5-1_source + gpe-announce_0.14-2_source + gpe-appmgr_2.8-3_source + gpe-bluetooth_0.56-3_source + gpe-calendar_0.92-4_source + gpe-clock_0.27-2_source + gpe-conf_0.2.9-1.1_source + gpe-confd_0.16-2_source + gpe-contacts_0.49-2_source + gpe-edit_0.41-1_source + gpe-expenses_0.1.9-2_source + gpe-filemanager_0.31-2_source + gpe-gallery_0.97-4_source + gpe-go_0.05-5_source + gpe-icons_0.25-1_source + gpe-julia_0.0.6-7_source + gpe-lights_0.13-4_source + gpe-login_0.95-2_source + gpe-mininet_0.7-2_source + gpe-mixer_0.50-1_source + gpe-othello_0.2-4_source + gpe-ownerinfo_0.28-3_source + gpe-question_0.04-3_source + gpe-screenshot_0.4-4_source + gpe-shield_0.31-6_source + gpe-soundbite_1.0.6-2_source + gpe-soundserver_0.4-3_source + gpe-su_0.20-1_source + gpe-taskmanager_0.20-9_source + gpe-tetris_0.6.4-2_source + gpe-timesheet_0.32-2_source + gpe-todo_0.58-1_source + gpe-watch_0.11-1_source + gpe-what_0.43-4_source + gperf_3.0.3-1_source + gperiodic_2.0.10-7_source + gpesyncd_2.0-1_source + gpgme1.0_1.2.0-1.4_source + gphoto2_2.4.14-1_source + gphotofs_0.4.0-6_source + gphpedit_0.9.98-2_source + gpick_0.2.4-1_source + gpicview_0.2.3-2_source + gpiv_0.6.1-2_source + gpivtools_0.6.0-3_source + gplanarity_17906-3_source + gplcver_2.12a-1.1_source + gplots_2.11.0-1_source + gpm_1.20.4-6_source + gpodder_2.20.1-1_source + gpointing-device-settings_1.5.1-6_source + gpp_2.24-3_source + gpr_0.15deb-2_source + gprbuild_2011-2_source + gpredict_1.3-2_source + gprename_2.6.6-1_source + gprolog_1.3.0-6.1_source + gpsbabel_1.4.3-1_source + gpscorrelate_1.6.1-4_source + gpsd_3.6-4+deb7u1_source + gpsim_0.26.1-2.1_source + gpsim-doc_0.22.0-2_source + gpsk31_0.5-6_source + gpsman_6.4.3-1_source + gpsmanshp_1.2.1-1_source + gpsprune_13.4-1_source + gpstrans_0.41-3_source + gpt_1.1-2_source + gputils_0.13.7-1_source + gpw_0.0.19940601-8.1_source + gpx2shp_0.69-3.1_source + gpxviewer_0.4.3-1_source + gquilt_0.25-2_source + grabc_1.1-2_source + grace_1:5.1.22-13_source + gradm2_2.9.1~201206091838-1_source + grads_2.0.a9-4_source + grafx2_2.3-1.1_source + gramadoir_0.6-4.1_source + gramofile_1.6-9_source + gramophone2_0.8.13a-1_source + gramps_3.4.0-1_source + grantlee_0.1.4-1_source + granule_1.4.0-7-1_source + grap_1.43-2_source + graphicsmagick_1.3.16-1.1_source + graphite-carbon_0.9.10-3_source + graphite2_1.1.3-1_source + graphmonkey_1.7-3_source + graphthing_1.3.2-3.1_source + graphviz_2.26.3-14+deb7u1_source + graphy_1.0+dfsg-3_source + grass_6.4.2-2_source + gravitation_3+dfsg1-3_source + gravitywars_1.102-32_source + grc_1.4_source + grcm_0.1.6-1_source + grcompiler_4.2-1_source + grdesktop_0.23+d040330-3_source + greasemonkey_0.9.20-1_source + greed_3.7-1_source + greekocr4gamera_1.0.1-4_source + greenwich_0.8.2-6_source + gregmisc_2.1.2-2_source + gregorio_2.0-1.2_source + grep_2.12-2_source + grepcidr_1.3-5_source + grepmail_5.3033-5_source + gresolver_0.0.5-5_source + gretl_1.9.9-1_source + greylistd_0.8.8_source + grfcodec_6.0.0-1_source + grhino_0.16.1-2_source + gri_2.12.23-2.2_source + grib-api_1.9.16-2_source + grid-packaging-tools_3.6.2-1_source + gridengine_6.2u5-7.1_source + gridlock.app_1.10-3.2_source + gridsite_1.7.16-1_source + griffith_0.13-3_source + grig_0.8.0-1_source + grilo_0.1.19-1_source + grilo-plugins_0.1.19-1_source + grinder_0.4.5-1_source + gringo_3.0.4-3_source + gringotts_1.2.10~pre3-1_source + grisbi_0.8.9-1_source + grml-debootstrap_0.54_source + grml-rescueboot_0.4.2_source + grml2usb_0.12.2_source + groff_1.21-9_source + grok_1.20110708.1-4_source + grokevt_0.4.1-7_source + gromacs_4.5.5-2_source + gromit_20041213-9_source + groovy_1.8.6-1_source + groovy1.7.2_1.7.2-1_source + gross_1.0.2-3_source + groundhog_1.4-9_source + grpn_1.1.2-3.1_source + grr.app_0.9.0-1_source + grsync_1.2.0-1_source + grub_0.97-67_source + grub-choose-default_0.2-6_source + grub-imageboot_0.6_source + grub-installer_1.85_source + grub-splashimages_1.2.3_source + grub2_1.99-27+deb7u1_source + grub2_1.99-27+deb7u2_source + grub2-splashimages_1.0.1+nmu1_source + grun_0.9.3-1_source + gsasl_1.8.0-2_source + gscan2pdf_1.0.4-5_source + gscanbus_0.8-1_source + gsetroot_1.1-2.2_source + gsettings-desktop-schemas_3.4.2-3_source + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_source + gsfonts-x11_0.22_source + gshare_0.94-12_source + gsimplecal_1.5-1_source + gsl_1.15+dfsg.2-2_source + gsm0710muxd_1.13-1_source + gsmartcontrol_0.8.6-1.2_source + gsmc_1.1-1.1_source + gsmlib_1.10-13.2_source + gsnmp_0.3.0-1.1_source + gsoap_2.8.7-2_source + gsoko_0.4.2-gpe6-3_source + gsql_0.2.2-1.2_source + gss_1.0.2-1_source + gssdp_0.12.2.1-2_source + gst-buzztard_0.5.0-2+deb7u1_source + gst-chromaprint_0.1-3_source + gst-fluendo-mp3_0.10.15.debian-1_source + gst-plugins-bad0.10_0.10.23-7.1_source + gst-plugins-base0.10_0.10.36-1.1_source + gst-plugins-good0.10_0.10.31-3+nmu1_source + gst-plugins-ugly0.10_0.10.19-2_source + gst-qa-system_0.0+git20110920.4750a8e8-2_source + gst0.10-python_0.10.22-3_source + gst123_0.3.1-1_source + gstm_1.2-8_source + gstreamer-hplugins_0.2.0-2_source + gstreamer-sharp_0.9.2-4_source + gstreamer0.10_0.10.36-1.2_source + gstreamer0.10-dvswitch_0.0.1-1_source + gstreamer0.10-editing-services_0.10.1-2_source + gstreamer0.10-ffmpeg_0.10.13-5_source + gstreamer0.10-rtsp_0.10.8-3_source + gsutil_3.1-1_source + gt5_1.5.0~20111220+bzr29-1_source + gtamsanalyzer.app_0.42-6_source + gtans_1.99.0-2_source + gtest_1.6.0-2_source + gtetrinet_0.7.11-3_source + gtg_0.2.9-1_source + gtg-trace_0.2+dfsg-1_source + gthumb_3:3.0.1-2_source + gtick_0.5.1-1_source + gtimer_2.0.0-1.1_source + gtk+2.0_2.24.10-2_source + gtk+3.0_3.4.2-7_source + gtk-chtheme_0.3.1-5_source + gtk-doc_1.18-2_source + gtk-gnutella_0.98.3-1_source + gtk-im-libthai_0.2.1-4_source + gtk-nodoka-engine_0.7.0-1.1_source + gtk-recordmydesktop_0.3.8-4.1_source + gtk-sharp-beans_2.14.1-3_source + gtk-sharp2_2.12.10-5_source + gtk-theme-switch_2.1.0-2_source + gtk-vector-screenshot_0.3.2-1_source + gtk-vnc_0.5.0-3.1_source + gtk2-engines_1:2.20.2-2_source + gtk2-engines-aurora_1.5.1-3_source + gtk2-engines-cleanice_2.4.1-3_source + gtk2-engines-magicchicken_1.1.1-9_source + gtk2-engines-murrine_0.98.1.1-5_source + gtk2-engines-oxygen_1.2.4-1_source + gtk2-engines-qtcurve_1.8.15-4_source + gtk2-engines-wonderland_1.0-8_source + gtk2-engines-xfce_2.8.1-3_source + gtk2hs-buildtools_0.12.3-2_source + gtk3-engines-unico_1.0.2-1_source + gtkam_0.1.18-1_source + gtkaml_0.5.91-1_source + gtkatlantic_0.4.2-3_source + gtkballs_3.1.5-9_source + gtkboard_0.11pre0+cvs.2003.11.02-5_source + gtkcookie_0.4-5_source + gtkgl2_2.0.1-2_source + gtkglarea-sharp_0.0.17-6_source + gtkglext_1.2.0-2_source + gtkglextmm_1.2.0-4.1_source + gtkguitune_0.8-6_source + gtkhash_0.6.0-4_source + gtkhotkey_0.2.1-3_source + gtkhtml3.14_3.32.2-2.1_source + gtkhtml4.0_4.4.4-1_source + gtkimageview_1.6.4+dfsg-0.1_source + gtklick_0.6.4-3_source + gtklp_1.2.7-2.3_source + gtkmathview_0.8.0-8_source + gtkmm-documentation_3.4.0-3_source + gtkmm2.4_1:2.24.2-1_source + gtkmm3.0_3.4.2-1_source + gtkorphan_0.4.4-1.1_source + gtkperf_0.40+ds-2_source + gtkpod_2.1.2-1_source + gtkpool_0.5.0-9_source + gtksourceview2_2.10.4-1_source + gtksourceview3_3.4.2-1_source + gtkspell_2.0.16-1_source + gtkspell3_3.0.0~hg20110814-1_source + gtkvncviewer_0.4-2.2_source + gtkwave_3.3.37-1_source + gtml_3.5.4-7_source + gtools_2.7.0-1_source + gtranslator_2.91.4-1_source + gtrayicon_1.1-1_source + gts_0.7.6+darcs110121-1.1_source + gtypist_2.9.1-2.1_source + guacamole_0.6.0-1_source + guacd_0.6.0-1_source + guake_0.4.3-3_source + guava_3.6-2_source + guava-libraries_11.0.2-1_source + guayadeque_0.3.5~ds0-4_source + gucharmap_1:3.4.1.1-2.1_source + gudev-sharp-1.0_0.1-3_source + guessnet_0.55_source + guest-templates_0.1-4_source + gui-apt-key_0.4-2_source + gui-ufw_12.10.0-1_source + guice_3.0-1_source + guichan_0.8.2-10_source + guidata_1.4.1-2_source + guifications_2.16-2_source + guile-1.6_1.6.8-10.3_source + guile-1.8_1.8.8+1-8_source + guile-2.0_2.0.5+1-3_source + guile-cairo_1.4.0-3_source + guile-db_0.1-4.1_source + guile-lib_0.2.1-1_source + guile-pg_0.16-5_source + guilt_0.35-1.1_source + guiqwt_2.1.6-4_source + guitarix_0.22.4-1_source + gummi_0.6.3-1.2_source + gunicorn_0.14.5-3+deb7u1_source + gunroar_0.15.dfsg1-5_source + gup_0.5.13_source + gupnp_0.18.4-1_source + gupnp-av_0.10.3-1_source + gupnp-dlna_0.6.6-1_source + gupnp-igd_0.2.1-2_source + gupnp-tools_0.8.4-1_source + gupnp-vala_0.10.4-1_source + gurgitate-mail_1.10.0-1_source + gurlchecker_0.13.1-2.1_source + gutenprint_5.2.9-1_source + guvcview_1.5.3-1_source + guymager_0.6.7-3_source + gv_1:3.7.3-1_source + gvb_1.2.1-1_source + gvfs_1.12.3-4_source + gvidm_0.8-11_source + gvpe_2.24-2_source + gvrng_4.4-1_source + gw-fonts-ttf_1.0-5_source + gwaei_3.4.3-1_source + gwakeonlan_0.5.1-1_source + gwaterfall_0.1-5_source + gwc_0.21.17~dfsg0-2_source + gweled_0.9.1-2_source + gwenview_4:4.8.4-2_source + gwhere_0.2.3.dfsg.1-3_source + gwhois_20120626_source + gworkspace_0.8.8-1.1_source + gworldclock_1.4.4-9_source + gwrite_0.5.1-2_source + gwyddion_2.28-2_source + gxine_0.5.907-2+deb7u1_source + gxmessage_2.20.0-1_source + gxmms2_0.7.1-2_source + gxneur_0.15.0-2.1_source + gxtuner_2.0-2_source + gyoto_0.0.3-5_source + gyp_0.1~svn1395-1_source + gyrus_0.3.10-1.1_source + gzip_1.5-1.1_source + gzrt_0.6+ds1-1_source + h323plus_1.24.0~dfsg2-1_source + h5py_2.0.1-2_source + h5utils_1.12.1-2_source + ha_0.999p+dfsg-3_source + ha-jdbc_2.0.16+rc1-2_source + hachoir-core_1.3.3-3_source + hachoir-metadata_1.3.3-1_source + hachoir-parser_1.3.4-1_source + hachoir-regex_1.0.5-1_source + hachoir-subfile_0.5.3-2_source + hachoir-urwid_1.1-2_source + hachoir-wx_0.3-2_source + haci_0.97c-2_source + haildb_2.3.2-1.2_source + hal_0.5.14-8_source + hal-info_20091130-1_source + halevt_0.1.6.2-2_source + halibut_1.0+svn20090906-6_source + hama-slide-mouse-control_1.0-2_source + hamexam_1.2.0-1_source + hamfax_0.8.1-1_source + haml-elisp_1:3.0.15-4_source + hamlib_1.2.15.1-1_source + hamradiomenus_1.2+nmu1_source + hamster-applet_2.91.3+git20120514.b9fec3e1-1_source + handlersocket_1.1.0-7-g1044a28-1_source + hannah_1.0-2_source + hapm_0.7-1_source + happy_1.18.9-1_source + harden_0.1.38+nmu1_source + harden-doc_3.15.1_source + hardening-wrapper_2.2_source + hardinfo_0.5.1-1.2_source + hardlink_0.2.0_source + harminv_1.3.1-9_source + hasciicam_1.1.2-1_source + haserl_0.9.29-3_source + hashalot_0.3-5_source + hashcash_1.21-1.1_source + haskell-acid-state_0.6.3-1_source + haskell-active_0.1.0.1-2_source + haskell-adjunctions_2.4.0.2-1_source + haskell-aeson_0.6.0.2-1_source + haskell-algebra_2.1.1.2-1_source + haskell-alut_2.1.0.2-4_source + haskell-ami_0.1-1_source + haskell-ansi-terminal_0.5.5-3_source + haskell-ansi-wl-pprint_0.6.4-1_source + haskell-arrows_0.4.4.0-3_source + haskell-asn1-data_0.6.1.3-2_source + haskell-attempt_0.4.0-1_source + haskell-attoparsec_0.10.1.1-2_source + haskell-attoparsec-conduit_0.4.0.1-1_source + haskell-attoparsec-enumerator_0.3-3_source + haskell-augeas_0.6.1-1_source + haskell-authenticate_1.2.1.1-2_source + haskell-base-unicode-symbols_0.2.2.3-1_source + haskell-base16-bytestring_0.1.1.4-2_source + haskell-base64-bytestring_0.1.1.1-2_source + haskell-bifunctors_0.1.3.3-1_source + haskell-binary-shared_0.8.1-1_source + haskell-bindings-dsl_1.0.15-1_source + haskell-bindings-gpgme_0.1.4-1_source + haskell-bindings-libzip_0.10-2_source + haskell-bitarray_0.0.1-2_source + haskell-blaze-builder_0.3.1.0-1_source + haskell-blaze-builder-conduit_0.4.0.2-1_source + haskell-blaze-builder-enumerator_0.2.0.4-1_source + haskell-blaze-html_0.4.3.1-3_source + haskell-blaze-markup_0.5.1.0-1_source + haskell-blaze-textual_0.2.0.6-2_source + haskell-bloomfilter_1.2.6.8-1_source + haskell-boolean_0.0.1-2_source + haskell-boomerang_1.3.1-1_source + haskell-brainfuck_0.1-2_source + haskell-byteorder_1.0.3-2_source + haskell-bytestring-lexing_0.4.0-1_source + haskell-bytestring-mmap_0.2.2-2_source + haskell-bytestring-nums_0.3.5-2_source + haskell-bytestring-show_0.3.5.1-1_source + haskell-bzlib_0.5.0.3-2_source + haskell-cabal-file-th_0.2.2-1_source + haskell-cabal-install_0.14.0-2_source + haskell-cairo_0.12.3-1_source + haskell-case-insensitive_0.4.0.1-2_source + haskell-categories_1.0.3-1_source + haskell-cautious-file_1.0.1-1_source + haskell-cereal_0.3.5.2-1_source + haskell-cereal-conduit_0.5-1_source + haskell-certificate_1.2.3-2_source + haskell-cgi_3001.1.8.2-2_source + haskell-chart_0.15-1_source + haskell-chell_0.3-1_source + haskell-citeproc-hs_0.3.4-1_source + haskell-clientsession_0.7.5-3_source + haskell-clock_0.2.0.0-2_source + haskell-cmdargs_0.9.5-1_source + haskell-colour_2.3.3-1_source + haskell-comonad_1.1.1.5-1_source + haskell-comonad-transformers_2.1.1.1-1_source + haskell-comonads-fd_2.1.1.2-1_source + haskell-conduit_0.4.2-2_source + haskell-configfile_1.0.6-4_source + haskell-configurator_0.2.0.0-1_source + haskell-contravariant_0.2.0.2-1_source + haskell-convertible_1.0.11.0-3_source + haskell-cookie_0.4.0-1_source + haskell-cprng-aes_0.2.3-3_source + haskell-cpu_0.1.1-1_source + haskell-criterion_0.6.0.1-3_source + haskell-crypto_4.2.4-1_source + haskell-crypto-api_0.10.2-1_source + haskell-crypto-conduit_0.3.2-1_source + haskell-crypto-pubkey-types_0.1.1-1_source + haskell-cryptocipher_0.3.5-1_source + haskell-cryptohash_0.7.5-1_source + haskell-css-text_0.1.1-3_source + haskell-csv_0.1.2-2_source + haskell-csv-conduit_0.2-1_source + haskell-curl_1.3.7-1_source + haskell-data-accessor_0.2.2.2-1_source + haskell-data-accessor-mtl_0.2.0.3-1_source + haskell-data-accessor-template_0.2.1.9-1_source + haskell-data-binary-ieee754_0.4.2.1-3_source + haskell-data-default_0.4.0-1_source + haskell-data-inttrie_0.0.7-1_source + haskell-data-lens_2.10.0-1_source + haskell-data-memocombinators_0.4.3-1_source + haskell-dataenc_0.14.0.3-1_source + haskell-datetime_0.2.1-3_source + haskell-dbus_0.10.3-1_source + haskell-debian_3.64-3_source + haskell-devscripts_0.8.12_source + haskell-diagrams_0.5-2_source + haskell-diagrams-cairo_0.5.0.2-1_source + haskell-diagrams-core_0.5.0.1-1_source + haskell-diagrams-lib_0.5-2_source + haskell-diff_0.1.3-1_source + haskell-digest_0.0.1.0-1_source + haskell-dimensional_0.10.1.2-2_source + haskell-directory-tree_0.10.0-2_source + haskell-distributive_0.2.2-1_source + haskell-dlist_0.5-3_source + haskell-doc_20061127_source + haskell-download-curl_0.1.3-3_source + haskell-dpkg_0.0.3-1_source + haskell-dummy_1:8_source + haskell-dyre_0.8.7-1_source + haskell-edison-api_1.2.1-18_source + haskell-edison-core_1.2.1.3-9_source + haskell-edit-distance_0.2.1-2_source + haskell-editline_0.2.1.0-5_source + haskell-ekg_0.3.1.0-1_source + haskell-email-validate_0.2.8-1_source + haskell-entropy_0.2.1-2_source + haskell-enumerator_0.4.19-1_source + haskell-erf_2.0.0.0-2_source + haskell-event-list_0.1.0.1-1_source + haskell-exception-transformers_0.3.0.2-1_source + haskell-executable-path_0.0.3-1_source + haskell-explicit-exception_0.1.7-1_source + haskell-failure_0.2.0.1-1_source + haskell-fast-logger_0.0.2-1_source + haskell-fastcgi_3001.0.2.3-3_source + haskell-fclabels_1.1.3-1_source + haskell-feed_0.3.8-3_source + haskell-fgl_5.4.2.4-2_source + haskell-file-embed_0.0.4.4-1_source + haskell-filemanip_0.3.5.2-2_source + haskell-filestore_0.5-1_source + haskell-filesystem-conduit_0.4.0-1_source + haskell-free_2.1.1.1-1_source + haskell-gconf_0.12.1-1_source + haskell-gd_3000.7.3-1_source + haskell-ghc-events_0.4.0.0-2_source + haskell-ghc-mtl_1.0.1.1-1_source + haskell-ghc-paths_0.1.0.8-2_source + haskell-ghc-syb-utils_0.2.1.0-1_source + haskell-gio_0.12.3-1_source + haskell-github_0.4.0-2_source + haskell-glade_0.12.1-1_source + haskell-glfw_0.5.0.1-1_source + haskell-glib_0.12.2-1_source + haskell-glut_2.1.2.2-1_source + haskell-gnuidn_0.2-2_source + haskell-gnutls_0.1.2-1_source + haskell-gsasl_0.3.4-1_source + haskell-gstreamer_0.12.1-1_source + haskell-gtk_0.12.3-1_source + haskell-gtkglext_0.12.1-1_source + haskell-gtksourceview2_0.12.3-1_source + haskell-haddock_2.10.0-1_source + haskell-hakyll_3.2.7.2-1_source + haskell-hamlet_1.0.1.3-1_source + haskell-happstack_7.0.0-1_source + haskell-happstack-server_7.0.1-1_source + haskell-harp_0.4-3_source + haskell-hashable_1.1.2.3-1_source + haskell-hashed-storage_0.5.9-2_source + haskell-hashmap_1.3.0.1-1_source + haskell-hashtables_1.0.1.4-1_source + haskell-haskeline_0.6.4.7-1_source + haskell-haskell-src_1.0.1.5-1_source + haskell-haskore_0.2.0.3-2_source + haskell-hastache_0.3.3-2_source + haskell-haxr_3000.8.5-1_source + haskell-hcard_0.0-2_source + haskell-hcwiid_0.0.1-3_source + haskell-hfuse_0.2.4.1-1_source + haskell-hinotify_0.3.2-1_source + haskell-hint_0.3.3.4-2_source + haskell-hipmunk_5.2.0.8-1_source + haskell-hjavascript_0.4.7-3_source + haskell-hjscript_0.5.0-3_source + haskell-hjsmin_0.1.1-1_source + haskell-hostname_1.0-4_source + haskell-hs-bibutils_4.12-5_source + haskell-hs3_0.5.6-2_source + haskell-hscurses_1.4.1.0-1_source + haskell-hsemail_1.7.1-2_source + haskell-hsh_2.0.3-6_source + haskell-hsp_0.6.1-2_source + haskell-hspec_1.1.0-1_source + haskell-hsql_1.8.1-4_source + haskell-hsql-mysql_1.8.1-4_source + haskell-hsql-odbc_1.8.1.1-2_source + haskell-hsql-postgresql_1.8.1-3_source + haskell-hsql-sqlite3_1.8.1-2_source + haskell-hssyck_0.50-2_source + haskell-hstringtemplate_0.6.8-1_source + haskell-hsx_0.9.1-3_source + haskell-html_1.0.1.2-5_source + haskell-html-conduit_0.0.1-2_source + haskell-http_1:4000.2.3-1_source + haskell-http-conduit_1.4.1.6-3_source + haskell-http-date_0.0.2-1_source + haskell-http-types_0.6.11-1_source + haskell-hunit_1.2.4.2-2_source + haskell-hxt_9.2.2-2_source + haskell-hxt-cache_9.0.2-2_source + haskell-hxt-charproperties_9.1.1-2_source + haskell-hxt-curl_9.1.1-1_source + haskell-hxt-http_9.1.4-2_source + haskell-hxt-regex-xmlschema_9.0.4-2_source + haskell-hxt-relaxng_9.1.4-1_source + haskell-hxt-tagsoup_9.1.1-1_source + haskell-hxt-unicode_9.0.2-2_source + haskell-hxt-xpath_9.1.2-1_source + haskell-hxt-xslt_9.1.1-1_source + haskell-iconv_0.4.1.0-2_source + haskell-ieee754_0.7.3-1_source + haskell-ifelse_0.85-4_source + haskell-io-choice_0.0.1-1_source + haskell-io-storage_0.3-2_source + haskell-iospec_0.2.5-1_source + haskell-irc_0.5.0.0-1_source + haskell-iteratee_0.8.8.2-2_source + haskell-ixset_1.0.3-2_source + haskell-json_0.5-2_source + haskell-keys_2.1.3.2-1_source + haskell-knob_0.1.1-1_source + haskell-lambdabot-utils_4.2.1-3_source + haskell-language-c_0.4.2-2_source + haskell-language-haskell-extract_0.2.1-4_source + haskell-language-javascript_0.5.4-1_source + haskell-largeword_1.0.1-2_source + haskell-lazysmallcheck_0.6-1_source + haskell-leksah_0.12.0.3-3_source + haskell-leksah-server_0.12.0.4-3_source + haskell-lexer_1.0-3_source + haskell-libtagc_0.12.0-2_source + haskell-libxml-sax_0.7.2-2_source + haskell-libzip_0.10-1_source + haskell-lifted-base_0.1.1-1_source + haskell-listlike_3.1.4-1_source + haskell-llvm_3.0.1.0-1_source + haskell-llvm-base_3.0.1.0-1_source + haskell-logict_0.5.0.1-1_source + haskell-ltk_0.12.0.0-2_source + haskell-maccatcher_2.1.5-2_source + haskell-markov-chain_0.0.3.2-1_source + haskell-math-functions_0.1.1.0-2_source + haskell-maths_0.4.3-1_source + haskell-maybet_0.1.2-3_source + haskell-mbox_0.1-2_source + haskell-memotrie_0.5-1_source + haskell-mersenne-random_1.0.0.1-2_source + haskell-midi_0.2.0.1-1_source + haskell-mime-mail_0.4.1.1-2_source + haskell-mmap_0.5.7-2_source + haskell-mode_2.8.0-2_source + haskell-monad-control_0.3.1.3-1_source + haskell-monad-loops_0.3.2.0-1_source + haskell-monad-par_0.1.0.3-2_source + haskell-monadcatchio-mtl_0.3.0.4-2_source + haskell-monadcatchio-transformers_0.3.0.0-2_source + haskell-monadcryptorandom_0.4.1-1_source + haskell-monadrandom_0.1.6-2_source + haskell-monads-tf_0.1.0.0-1_source + haskell-monoid-transformer_0.0.2-3_source + haskell-mtl_2.1.1-1_source + haskell-mtlparse_0.1.2-2_source + haskell-murmur-hash_0.1.0.5-2_source + haskell-mwc-random_0.11.0.0-4_source + haskell-ncurses_0.2.1-1_source + haskell-netwire_3.1.0-2_source + haskell-network_2.3.0.13-1_source + haskell-network-conduit_0.4.0.1-2_source + haskell-network-protocol-xmpp_0.4.3-1_source + haskell-newtype_0.2-1_source + haskell-non-negative_0.1-2_source + haskell-numbers_2009.8.9-2_source + haskell-numeric-quest_0.2-1_source + haskell-numinstances_1.0-2_source + haskell-numtype_1.0-2_source + haskell-oeis_0.3.1-2_source + haskell-openal_1.3.1.3-4_source + haskell-opengl_2.2.3.1-1_source + haskell-openpgp-asciiarmor_0.1-1_source + haskell-options_0.1.1-1_source + haskell-pandoc-types_1.9.1-1_source + haskell-pango_0.12.2-1_source + haskell-parallel_3.2.0.2-2_source + haskell-parseargs_0.1.3.2-2_source + haskell-parsec_3.1.2-1_source + haskell-parsec2_2.1.0.1-6_source + haskell-pastis_0.1.2-2_source + haskell-path-pieces_0.1.0-1_source + haskell-patience_0.1.1-1_source + haskell-pcre-light_0.4-3_source + haskell-pem_0.1.1-1_source + haskell-persistent_0.9.0.4-2_source + haskell-persistent-sqlite_0.9.0.2-2_source + haskell-persistent-template_0.9.0.2-1_source + haskell-platform_2012.2.0.0_source + haskell-polyparse_1.7-1_source + haskell-pool-conduit_0.1.0.2-1_source + haskell-postgresql-libpq_0.8.2-1_source + haskell-postgresql-simple_0.1.4.3-1_source + haskell-pretty-show_1.1.1-4_source + haskell-primes_0.2.1.0-2_source + haskell-primitive_0.4.1-1_source + haskell-psqueue_1.1-2_source + haskell-puremd5_2.1.0.3-2_source + haskell-pwstore-fast_2.2-2_source + haskell-quickcheck_2.4.2-1_source + haskell-quickcheck1_1.2.0.1-2_source + haskell-random_1.0.1.1-1_source + haskell-random-shuffle_0.0.3-2_source + haskell-ranged-sets_0.3.0-2_source + haskell-ranges_0.2.4-2_source + haskell-reactive-banana_0.6.0.0-1_source + haskell-readline_1.0.1.0-3_source + haskell-recaptcha_0.1-4_source + haskell-regex-base_0.93.2-2_source + haskell-regex-compat_0.95.1-2_source + haskell-regex-pcre_0.94.2-2_source + haskell-regex-posix_0.95.1-2_source + haskell-regex-tdfa_1.1.8-2_source + haskell-regex-tdfa-utf8_1.0-5_source + haskell-regexpr_0.5.4-2_source + haskell-representable-functors_2.4.0.2-1_source + haskell-representable-tries_2.4.0.2-1_source + haskell-resource-pool_0.2.1.0-2_source + haskell-resourcet_0.3.2.1-1_source + haskell-rsa_1.2.1.0-1_source + haskell-safe_0.3.3-1_source + haskell-safecopy_0.6.1-1_source + haskell-sdl_0.6.3-1_source + haskell-sdl-gfx_0.6.0-3_source + haskell-sdl-image_0.6.1-3_source + haskell-sdl-mixer_0.6.1-3_source + haskell-sdl-ttf_0.6.1-3_source + haskell-semigroupoids_1.3.1.2-1_source + haskell-semigroups_0.8.3.2-1_source + haskell-sendfile_0.7.6-1_source + haskell-sha_1.5.0.1-1_source + haskell-shakespeare_1.0.0.2-1_source + haskell-shakespeare-css_1.0.1.2-1_source + haskell-shakespeare-i18n_1.0.0.2-1_source + haskell-shakespeare-js_1.0.0.2-1_source + haskell-shakespeare-text_1.0.0.2-1_source + haskell-shellac_0.9.5.1-2_source + haskell-show_0.4.1.2-1_source + haskell-silently_1.1.4-1_source + haskell-simple-sendfile_0.2.3-1_source + haskell-simpleea_0.1.1-2_source + haskell-simpleirc_0.2.1-2_source + haskell-skein_0.1.0.7-2_source + haskell-smallcheck_0.6-1_source + haskell-smtpclient_1.0.4-3_source + haskell-snap-core_0.8.1-1_source + haskell-snap-server_0.8.1.1-1_source + haskell-socks_0.4.1-1_source + haskell-split_0.1.4.2-2_source + haskell-src-exts_1.11.1-3_source + haskell-statevar_1.0.0.0-2_source + haskell-static-hash_0.0.1-3_source + haskell-statistics_0.10.1.0-2_source + haskell-stm_2.3-1_source + haskell-stream_0.4.6-1_source + haskell-strict_0.3.2-2_source + haskell-strict-concurrency_0.2.4.1-2_source + haskell-strptime_1.0.6-1_source + haskell-svgcairo_0.12.1-1_source + haskell-syb_0.3.6.1-1_source + haskell-syb-with-class_0.6.1.3-1_source + haskell-syb-with-class-instances-text_0.0.1-3_source + haskell-system-fileio_0.3.8-1_source + haskell-system-filepath_0.4.6-1_source + haskell-tagged_0.4.2.1-1_source + haskell-tagsoup_0.12.6-1_source + haskell-tagstream-conduit_0.3.2-1_source + haskell-tar_0.3.2.0-2_source + haskell-template_0.2.0.7-1_source + haskell-temporary_1.1.2.3-1_source + haskell-terminfo_0.3.2.3-1_source + haskell-test-framework_0.6-1_source + haskell-test-framework-hunit_0.2.7-1_source + haskell-test-framework-quickcheck2_0.2.12.1-1_source + haskell-test-framework-th_0.2.2-5_source + haskell-test-framework-th-prime_0.0.5-1_source + haskell-testpack_2.1.1-1_source + haskell-texmath_0.6.0.6-1_source + haskell-text_0.11.2.0-1_source + haskell-text-icu_0.6.3.4-2_source + haskell-tinyurl_0.1.0-2_source + haskell-tls_0.9.5-1_source + haskell-tls-extra_0.4.6.1-2_source + haskell-transformers_0.3.0.0-1_source + haskell-transformers-base_0.4.1-2_source + haskell-type-level_0.2.4-5_source + haskell-uniplate_1.6.7-1_source + haskell-unix-bytestring_0.3.5-2_source + haskell-unix-compat_0.3.0.1-1_source + haskell-unixutils_1.50-1_source + haskell-unlambda_0.1-2_source + haskell-unordered-containers_0.2.1.0-1_source + haskell-uri_0.1.6-1_source + haskell-url_2.1.2-4_source + haskell-utf8-light_0.4.0.1-2_source + haskell-utf8-string_0.3.7-1_source + haskell-utility-ht_0.0.5.1-3_source + haskell-uuagc-cabal_1.0.2.0-1_source + haskell-uuid_1.2.3-2_source + haskell-uulib_0.9.14-2_source + haskell-vault_0.2.0.0-1_source + haskell-vector_0.9.1-2_source + haskell-vector-algorithms_0.5.4-1_source + haskell-vector-space_0.8.1-1_source + haskell-vector-space-points_0.1.1.0-1_source + haskell-void_0.5.5.1-2_source + haskell-vte_0.12.1-1_source + haskell-vty_4.7.0.14-1_source + haskell-wai_1.2.0.2-1_source + haskell-wai-app-file-cgi_0.5.8-1_source + haskell-wai-app-static_1.2.0.3-1_source + haskell-wai-extra_1.2.0.4-1_source + haskell-wai-logger_0.1.4-1_source + haskell-wai-logger-prefork_0.1.3-1_source + haskell-wai-test_1.2.0.2-1_source + haskell-warp_1.2.1.1-1_source + haskell-warp-tls_1.2.0.4-1_source + haskell-web-routes_0.25.3-2_source + haskell-webkit_0.12.3-2_source + haskell-weighted-regexp_0.3.1.1-2_source + haskell-x11_1.5.0.1-1_source + haskell-x11-xft_0.3.1-1_source + haskell-xdg-basedir_0.2.1-2_source + haskell-xhtml_3000.2.1-1_source + haskell-xml_1.3.12-1_source + haskell-xml-conduit_0.7.0.2-1_source + haskell-xml-types_0.3.1-2_source + haskell-xml2html_0.1.2.3-1_source + haskell-xss-sanitize_0.3.2-1_source + haskell-yaml_0.7.0.2-1_source + haskell-yaml-light_0.1.4-2_source + haskell-yesod_1.0.1.6-2_source + haskell-yesod-auth_1.0.2.1-2_source + haskell-yesod-core_1.0.1.2-1_source + haskell-yesod-default_1.0.1.1-1_source + haskell-yesod-form_1.0.0.4-1_source + haskell-yesod-json_1.0.0.1-1_source + haskell-yesod-markdown_0.4.0-1_source + haskell-yesod-persistent_1.0.0.1-1_source + haskell-yesod-routes_1.0.1.2-1_source + haskell-yesod-static_1.0.0.2-1_source + haskell-yesod-test_0.2.0.6-1_source + haskell-zip-archive_0.1.1.7-3_source + haskell-zlib_0.5.3.3-1_source + haskell-zlib-bindings_0.1.0.1-1_source + haskell-zlib-conduit_0.4.0.1-1_source + haskell-zlib-enum_0.2.2.1-1_source + haskell98-report_20080907-4_source + haskell98-tutorial_200006-2-1.1_source + haskelldb_2.1.1-5_source + haskelldb-hdbc_2.1.0-4_source + haskelldb-hdbc-odbc_2.1.0-3_source + haskelldb-hdbc-postgresql_2.1.0-3_source + haskelldb-hdbc-sqlite3_2.1.0-3_source + hatari_1.6.2-1_source + hatop_0.7.7-1_source + haveged_1.4-4_source + hawknl_1.6.8+dfsg2-1_source + hawtjni_1.0~+git0c502e20c4-3_source + haxml_1:1.22.5-2_source + hdapsd_1:20090401-2_source + hdate-applet_0.15.11-1.1_source + hdbc_2.3.1.1-1_source + hdbc-odbc_2.2.3.0-5_source + hdbc-postgresql_2.3.2.1-1_source + hdbc-sqlite3_2.3.3.0-1_source + hddtemp_0.3-beta15-52_source + hdf-eos4_2.17v1.00.dfsg.1-3_source + hdf-eos5_5.1.13.dfsg.1-3_source + hdf5_1.8.8-9_source + hdparm_9.39-1_source + hdup_2.0.14-4_source + headache_1.03-22_source + hearse_1.5-8.1_source + heartbeat_1:3.0.5-3_source + hebcal_3.5-2_source + hedgewars_0.9.17-1_source + heimdal_1.6~git20120403+dfsg1-2_source + heirloom-mailx_12.5-2_source + helium_1.7~pre20090428-3.1_source + hello_2.8-2_source + hello-debhelper_2.8-1_source + help2man_1.40.10_source + helpviewer.app_0.3-7_source + hepmc_2.06.09-1_source + herbstluftwm_0.3-1_source + hercules_3.07-2.2_source + herculesstudio_1.3.0-2_source + heroes_0.21-8.4_source + heroes-data_1.5-2_source + heroes-sound-effects_1.0-4_source + heroes-sound-tracks_1.0-4_source + hesiod_3.0.2-21_source + hessian_4.0.6-1_source + hevea_1.10-14_source + hex-a-hop_0.0.20070315-8_source + hexalate_1.0.1-3_source + hexcurse_1.55-2_source + hexec_0.2.1-2_source + hexedit_1.2.12-4_source + hexer_0.1.7-1.1_source + hexter_0.6.2-3_source + hexxagon_1.0pl1-3.1_source + hfsplus_1.0.4-12_source + hfsprogs_332.25-10_source + hfsutils_3.2.6-11_source + hg-fast-export_20120618-1_source + hg-git_0.3.2-2_source + hgnested_0.5-3_source + hgsubversion_1.4-1_source + hgsvn_0.1.8-1_source + hgview_1.5.0-4_source + hhsuite_2.0.15-1_source + hibernate_2.0+15+g88d54a8-1_source + hicolor-icon-theme_0.12-1_source + highlight_3.9-1_source + highlighting-kate_0.5.1-1_source + hiki_0.8.8.1-3_source + hime_0.9.9+git20120619+dfsg-1_source + hippo-canvas_0.3.1-1.1_source + hiredis_0.10.1-7_source + hitchhiker_0.01~20091129+bzr41-4_source + hitori_0.3.2-1_source + hivex_1.3.6-2_source + hkgerman_1:2-28_source + hkl_4.0.3-4_source + hlbr_1.7.2-2_source + hlbrw_0.2.4-1_source + hlins_0.39-19_source + hlint_1.8.28-1_source + hmisc_3.9-3-1_source + hmmer_3.0-4_source + hnb_1.9.18-9_source + ho22bus_0.9.1-2_source + hoauth_0.3.4-1_source + hobbit-plugins_20120532_source + hocr_0.10.17-1_source + hodie_1.5-1_source + hoichess_0.10.3-6.1_source + hol-light_20120602-1_source + hol88_2.02.19940316-15_source + holdingnuts_0.0.5-4_source + holotz-castle_1.3.14-5_source + homebank_4.4-1_source + horgand_1.14-5_source + horizon_2012.1.1-10_source + hostap-utils_1:0.4.7-1_source + hostname_3.11_source + hotkeys_0.5.7.4-0.3_source + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_source + hotswap_0.4.0-12_source + hotwire_0.721-2_source + howm_1.4.0rc2-2_source + hoz_1.65-2_source + hp-ppd_0.9-0.2_source + hp-search-mac_0.1.3_source + hp2xx_3.4.4-8_source + hp48cc_1.3-4_source + hpanel_0.3.2-4_source + hpcc_1.4.1-2_source + hping3_3.a2.ds2-6_source + hplip_3.12.6-3.1+deb7u1_source + hpsockd_0.17_source + hscolour_1.19-3_source + hsetroot_1.0.2-1_source + hslogger_1.1.4+dfsg1-2_source + hspell_1.1-2_source + hspell-gui_0.2.6-5.1_source + hsqldb_1.8.0.10+dfsg-0+deb7u1_source + ht_2.0.20-2_source + htag_0.0.24-1_source + htcheck_1:2.0.0~rc1-2_source + htcheck-php_1:2.0.0~rc1-2_source + htdig_1:3.2.0b6-12_source + html-helper-mode_3.0.4kilo-2_source + html-template_0.16-2.1_source + html-xml-utils_6.1-1_source + html2ps_1.0b7-1_source + html2text_1.3.2a-15_source + html2wml_0.4.11-1_source + html5lib_0.95-1_source + htmlcxx_0.85-2_source + htmldoc_1.8.27-8_source + htmlgen_2.2.2-12_source + htmlunit_2.8-1_source + htmlunit-core-js_2.8-1_source + htop_1.0.1-1_source + htree_0.7-5_source + htsengine_1.06-1_source + httest_2.2.6-1_source + http-icons_0~20041010-1_source + httpcode_0.5-2_source + httpcomponents-client_4.1.1-2_source + httpcomponents-core_4.1.4-2.1_source + httperf_0.9.0-2_source + httpfs2_0.1.4-1_source + httpie_0.1.6+20120309git-2.1_source + httping_1.5.3-1_source + httptunnel_3.3+dfsg-3_source + httpunit_1.7+dfsg-9_source + httrack_3.46.1-1_source + hugin_2011.4.0+dfsg-5_source + hugs98_98.200609.21-5.3_source + hunspell_1.3.2-4_source + hunspell-an_0.2-1_source + hunspell-be_0.53-3_source + hunspell-dict-ko_0.5.5-1_source + hunspell-en-us_20070829-6_source + hunspell-gl-es_2.2a-10_source + hunspell-kk_1.1-2_source + hunspell-ml_0.1-2_source + hunspell-ru_20120501-1_source + hunspell-se_1.0~beta6.20081222-1.2_source + hunspell-sv_1.51-1_source + hunt_1.5-6_source + hw-detect_1.92_source + hwdata_0.234-1_source + hwinfo_16.0-2.2_source + hwloc_1.4.1-4_source + hyantesite_1.3.0-1_source + hyde_0.8.5a1-4_source + hydrogen_0.9.6~beta2-1_source + hydrogen-drumkits_0.9.3.20070703-3_source + hyena_0.5-2_source + hylafax_3:6.0.6-5_source + hyphen_2.8.3-2_source + hyphen-as_0.7.0-1_source + hyphen-bn_0.7.0-2_source + hyphen-gu_0.7.0-2_source + hyphen-hi_0.7.0-3_source + hyphen-kn_0.7.0-2_source + hyphen-mr_0.7.0-1_source + hyphen-pa_0.7.0-1_source + hyphen-show_20000425-2_source + hyphen-ta_0.7.0-1_source + hyphen-te_0.7.0-1_source + hypre_2.8.0b-1_source + i2c-tools_3.1.0-2_source + i3-wm_4.2-2_source + i3lock_2.4.1-1_source + i3status_2.5.1-1_source + i810switch_0.6.5-7_source + i8kutils_1.33_source + ia32-libs_1:0.4_source + ia32-libs-gtk_1:0.1_source + iat_0.1.3-7_source + iausofa-c_2012.03.01-1_source + iaxmodem_1.2.0~dfsg-1_source + ibam_1:0.5.2-2.1_source + ibid_0.1.1+dfsg-4_source + ibod_1.5.0-6_source + ibsim_0.5-1.1_source + ibus_1.4.1-9+deb7u1_source + ibus-anthy_1.2.6-2+deb7u1_source + ibus-array_0.0.2-6_source + ibus-chewing_1.3.10+clean-3_source + ibus-client-clutter_0.0+git20090728.a936bacf-5_source + ibus-el_0.3.0-2_source + ibus-googlepinyin_0.1.1+hg20111212-1_source + ibus-hangul_1.4.1-1+deb7u1_source + ibus-input-pad_1.4.0-2_source + ibus-m17n_1.3.4-1+deb7u1_source + ibus-pinyin_1.4.0-1+deb7u1_source + ibus-qt_1.3.1-2.1_source + ibus-skk_1.4.1-2+deb7u1_source + ibus-sunpinyin_2.0.3-4+deb7u1_source + ibus-table_1.3.9.20110827-2_source + ibus-table-chinese_1.3.4-1_source + ibus-table-extraphrase_1.2.0.20100305-1_source + ibus-table-others_1.3.0.20100528-3_source + ibus-tegaki_0.3.1-1_source + ibus-unikey_0.6.1-1_source + ibus-xkbc_1.3.3.20100922-2+deb7u1_source + ibutils_1.2-OFED-1.4.2-1.3_source + ical2html_2.0-1_source + icc-profiles-free_2.0.1+dfsg-1_source + icebreaker_1.21-11_source + icecast2_2.3.2-9+deb7u2_source + icecream_1.3-4_source + icedove_10.0.12-1_source + icedove-l10n_1:10.0.10-1_source + icedtea-web_1.3.2-1_source + ices2_2.0.1-13_source + iceweasel_10.0.12esr-1_source + iceweasel_17.0.10esr-1~deb7u1_source + icewm_1.3.7-4_source + icheck_0.9.7-6.1_source + icicles_23.0+20110910-2_source + icinga_1.7.1-6_source + icinga-web_1.7.1+dfsg2-6_source + icli_0.42-1_source + icmake_7.18.00-2_source + icmpinfo_1.11-7_source + icmptx_0.2-1_source + icmpush_2.2-6_source + icom_20040912-1.1_source + icon_9.4.3-4.2_source + icon-naming-utils_0.8.90-2_source + icon-slicer_0.3-6_source + icoutils_0.29.1-5_source + icu_4.8.1.1-12+deb7u1_source + icu4j_4.2.1.1-1_source + icu4j-4.4_4.4.2.2-1_source + id-utils_4.5+dfsg-0.1_source + id3_0.15-3_source + id3lib3.8.3_3.8.3-15_source + id3ren_1.1b0-6_source + id3tool_1.2a-4_source + id3v2_0.1.12-2_source + ident2_1.07-1.1_source + identicurse_0.9+dfsg0-1_source + idesk_0.7.5-4.2_source + ideviceinstaller_1.0.0-1.2_source + idjc_0.8.7-2_source + idl-font-lock-el_1.5-6_source + idle3-tools_0.9.1-1_source + idm-console-framework_1.1.7-1_source + ido_0.3.4-1_source + idzebra_2.0.44-3_source + iec16022_0.2.4-1_source + ifd-gempc_1.0.7-1_source + ifenslave-2.6_1.1.0-20_source + ifetch-tools_0.15.23b-1_source + ifhp_3.5.20-12.1_source + ifile_1.3.9-6_source + ifmail_2.14tx8.10-21_source + ifmetric_0.3-2+deb7u1_source + ifpgui_1.0.0-3_source + ifplugd_0.28-19_source + ifrench_1.4-26_source + ifrench-gut_1:1.0-30_source + ifrit_3.3.4-3_source + ifscheme_1.7-3_source + ifstat_1.1-8_source + iftop_1.0~pre2-4~deb7u2_source + ifupdown_0.7.8_source + ifupdown-extra_0.22_source + ifupdown-scripts-zg2_0.6-1_source + ifuse_1.0.0-1_source + igaelic_0.50-8_source + igal2_2.1-1_source + igerman98_20120607-1_source + igraph_0.5.4-2_source + igstk_4.4.0-2_source + ii_1.6-1_source + ii-esu_1.0a.dfsg1-4_source + iipimage_0.9.9-2_source + iirish_2.0-21_source + iisemulator_0.95-3_source + iitalian_1:2.3-3_source + ijs_0.35-8_source + ikarus_0.0.3+bzr.2010.01.26-2_source + ike-scan_1.9-4_source + ikeyd_0.6.1_source + ikiwiki_3.20120629_source + ikiwiki-hosting_0.20120527_source + ikvm_7.0.4335.0+ds-1_source + ilmbase_1.0.1-4_source + ilohamail_0.8.14-0rc3sid6.2_source + im_1:151-2_source + im-config_0.21_source + im-switch_1.23_source + imageindex_1.1-2.1_source + imagej_1.46a-1_source + imagemagick_8:6.7.7.10-5+deb7u2_source + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_source + imagetooth_2.0.1-1.1_source + imagevis3d_2.0.1-5_source + imagination_3.0-2_source + imanx_0.50-9.1_source + imap-acl-extension_0.2.2-1_source + imapcopy_1.04-1_source + imapfilter_1:2.5.2-2_source + imaprowl_1.2.1-1_source + imaptool_0.9-12_source + imdb-tools_0.9-1_source + imdbpy_4.9-1_source + imediff2_1.1.2-1_source + imgsizer_2.7-3_source + imgvtopgm_2.0-9_source + imhangul_2.1.0-2_source + imhangul-common_1+nmu1_source + imhangul3_3.1.0-2_source + iml_1.0.3-4.2_source + imlib2_1.4.5-1_source + imms_3.1.0~svn301-2_source + impacket_0.9.6.0-3_source + importlib_1.0.2-2_source + impose+_0.2-12_source + imposm_2.4.0+dfsg-0.1_source + imposm-parser_1.0.3-1_source + impressive_0.10.3-2_source + imsniff_0.04-6_source + imspector_0.9-1_source + imview-doc_1.0.1-3_source + imvirt_0.9.4-4_source + imwheel_1.0.0pre12-9_source + inadyn_1.96.2-1_source + incron_0.5.10-1_source + indent_2.2.11-2_source + indicator-applet_0.5.0-1_source + indicator-application_0.5.0-1_source + indicator-messages_0.6.0-1_source + indicator-session_0.3.96-1_source + indigo_1.0.0-2_source + inetutils_2:1.9-2_source + infernal_1.0.2-2_source + infiniband-diags_1.4.4-20090314-1.2_source + info2man_1.1-6_source + info2www_1.2.2.9-24_source + infon_0~r198-8_source + infon-devel_0~r218-1_source + inform-mode_1.5.8-3_source + ini4j_0.5.2-SNAPSHOT-2_source + init-system-helpers_1.11~bpo70.1_source + initramfs-tools_0.109.1_source + initz_0.0.11+20030603cvs-17.1_source + ink-generator_0.4-2_source + inkscape_0.48.3.1-1.3_source + inn_1:1.7.2q-41_source + inn2_2.5.3-3_source + innfeed_0.10.1.7-8_source + innoextract_1.2+git20120504-1_source + inosync_0.2.1-1_source + inotail_0.5-2_source + inoticoming_0.2.3-1_source + inotify-tools_3.14-1_source + inotifyx_0.2.0-1_source + input-pad_1.0.1-2_source + input-utils_1.0-1_source + inputlirc_19-1_source + insighttoolkit_3.20.1+git20120521-3_source + inspircd_2.0.5-1_source + insserv_1.14.0-5_source + installation-guide_20130503_source + installation-locale_1.4_source + installation-report_2.49_source + instant_1.0.0-1_source + instead_1.6.0-1_source + integrit_4.1-1_source + intel-gpu-tools_1.2-1_source + intel-vaapi-driver_1.0.17-1_source + intel2gas_1.3.3-14_source + inteltool_0.0+r4091-1.2_source + intercal_29:0.29-2_source + interchange_5.7.7-2_source + intlfonts_1.2.1-8_source + intltool_0.50.2-2_source + intltool-debian_0.35.0+20060710.1_source + intone_0.77-2_source + invada-studio-plugins_0.3.1-2_source + invada-studio-plugins-lv2_1.2.0+repack0-4_source + invaders_1.0.0-12_source + inventor_2.1.5-10-16_source + io-stringy_2.110-5_source + iodine_0.6.0~rc1-12_source + iog_1.03-3.6_source + iok_2.1.2-1_source + ion_3.0.1~dfsg1-1_source + ioping_0.6-1_source + ioquake3_1.36+svn2287-1_source + iotop_0.4.4-4_source + ip2host_1.10-2_source + ip4r_1.05-0.1_source + ipadic_2.7.0+main-3_source + ipband_0.8.1-3_source + ipcalc_0.41-2.1_source + ipcheck_0.233-1.1_source + ipdb_0.6.1-1_source + ipe_7.1.2-1_source + ipe5toxml_20051114-1_source + iperf_2.0.5-3_source + ipfm_0.11.5-4.1_source + ipgrab_0.9.10-1_source + ipheth_1.0-3_source + ipip_1.1.9_source + ipkungfu_0.6.1-6_source + ipmitool_1.8.11-5_source + ipolish_20120520-1_source + ippl_1.4.14-12.1_source + iprelay_0.71-4_source + iprint_1.3-9_source + iproute_20120521-3_source + ips_4.0-1_source + ipsec-tools_1:0.8.0-14_source + ipset_6.12.1-1_source + ipsvd_1.0.0-2_source + iptables_1.4.14-3.1_source + iptables-persistent_0.5.7_source + iptotal_0.3.3-13_source + iptraf_3.0.0-8.1_source + iptstate_2.2.5-1_source + iptux_0.5.3-1_source + iputils_3:20101006-1_source + ipv6calc_0.93.1-2_source + ipvsadm_1:1.26-1_source + ipwatchd_1.2.1-1_source + ipwatchd-gnotify_1.0.1-1_source + ipxe_1.0.0+git-20120202.f6840ba-3_source + ipy_1:0.75-1_source + ipython_0.13.1-2_source + ir.lv2_1.3.1~dfsg0-3_source + ircd-hybrid_1:7.2.2.dfsg.2-10_source + ircd-irc2_2.11.2p2+dfsg-2_source + ircd-ircu_2.10.12.10.dfsg1-1.1_source + ircd-ratbox_3.0.7.dfsg-3_source + ircii_20060725-1_source + ircmarkers_0.14-2_source + ircp-tray_0.7.6-1.1_source + irda-utils_0.9.18-12_source + iripdb_0.1.3b-1.1_source + iroffer_1.4.b03-3_source + irqbalance_1.0.3-3_source + irrlicht_1.7.3+dfsg1-4_source + irsim_9.7.75-1_source + irssi_0.8.15-5_source + irssi-plugin-xmpp_0.52-1_source + irssi-scripts_20120326_source + isakmpd_20041012-7.2_source + isatapd_0.9.6-2_source + isc-dhcp_4.2.2.dfsg.1-5+deb70u6_source + iscsitarget_1.4.20.2-10.1_source + isdnutils_1:3.25+dfsg1-3.3~deb7u1_source + iselect_1.4.0-1_source + isl_0.10-3_source + islamic-menus_1.0.5-1_source + isns_2.1-01+dfsg-3_source + iso-codes_3.41-1_source + iso-scan_1.43+deb7u1_source + isodate_0.4.6-1_source + isomaster_1.3.9-1_source + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_source + isoqlog_2.2.1-8_source + isoquery_1.7-1_source + isorelax_20041111-6_source + ispell_3.3.02-6_source + ispell-czech_20040229-5.1_source + ispell-et_1:20030606-20_source + ispell-fi_0.7-18_source + ispell-fo_0.4.1-1_source + ispell-gl_0.5-35_source + ispell-lt_1.2.1-3_source + ispell-tl_0.3.1-3_source + ispell-uk_1.6.5-2_source + ispell.pt_20120604-1_source + istanbul_0.2.2-9_source + istgt_0.4~20111008-3_source + isync_1.0.4-2.2_source + italc_1:1.0.13-1.4_source + itcl3_3.4.1-1_source + itk3_3.3-4_source + itksnap_2.2.0-1.1_source + itools_1.0-3_source + itop_0.1-4_source + its_1.1.8-2_source + itsalltext_1.6.4-1_source + itsol_1.0.0-2_source + itstool_1.1.3-1_source + iverilog_0.9.5-1_source + ivtools_1.2.10a1-1_source + ivy_2.2.0-2_source + ivykis_0.30.1-2_source + iw_3.4-1_source + iwatch_0.2.2-2_source + iwidgets4_4.0.1-6_source + jaaa_0.6.0-2_source + jabber-irc_0.4cvs20080505-1.1_source + jabber-querybot_0.1.0-1_source + jabber.py_0.5.0-1.4_source + jabberbot_0.15-1_source + jablicator_1.0.1_source + jabref_2.7~beta1+ds-6_source + jabref-plugin-oo_0.9+ds-2_source + jacal_1b9-2.1_source + jack_3.1.1+cvs20050801-29_source + jack-audio-connection-kit_1:0.121.3+20120418git75e3e20b-2.1_source + jack-capture_0.9.67-1_source + jack-keyboard_2.7.1-1_source + jack-mixer_9-3_source + jack-rack_1.4.8~rc1-1_source + jack-stdio_1.4-1_source + jack-tools_20101210-2_source + jackd-defaults_5_source + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_source + jackeq_0.5.9-2_source + jackmeter_0.4-1_source + jackrabbit_2.3.6-1_source + jacksum_1.7.0-2_source + jacktrip_1.0.5.patch2-1_source + jade_1.2.1-47.1_source + jadetex_3.13-14_source + jaffl_0.5.4-1.1_source + jags_3.2.0-1_source + jailer_0.4-17_source + jailtool_1.1-5_source + jajuk_1:1.9.6-1_source + jakarta-ecs_1.4.2-2_source + jakarta-jmeter_2.5.1-1_source + jakarta-taglibs-standard_1.1.2-2_source + jalv_1.0.0~dfsg0-2_source + jalview_2.7.dfsg-2_source + jam_2.5rel-1_source + jam-lib_0.0.r297-1_source + jama_1.0.2-4_source + jamin_0.97.14~cvs~81203-4_source + jaminid_0.99a-1.1_source + jana_0.0.0+git20091215.9ec1da8a-2_source + janest-core_107.01-5_source + janino_2.5.15-1_source + jansi_1.4-3_source + jansi-native_1.0-3_source + jansson_2.3.1-2_source + japa_0.6.0-2_source + japi-compliance-checker_1.1.2-1_source + japitools_0.9.7-1_source + jardiff_0.2-3_source + jargon_4.0.0-5_source + jargon-text_4.4.7-4_source + jargs_1.0.0-3_source + jarjar_1.1-3_source + jarjar-maven-plugin_1.5-1_source + jas_2.4.3938-2_source + jas-plotter_2.2.6+dfsg1-2_source + jasmin-sable_2.4.0-1_source + jasper_1.900.1-13_source + jasperreports_4.1.3+dfsg-1_source + jasperreports3.7_3.7.4+dfsg-2_source + jasypt_1.8-1_source + jaula_1.4.0-3_source + java-access-bridge_1.26.2-9_source + java-atk-wrapper_0.30.4-3_source + java-common_0.47_source + java-gnome_4.1.1-4_source + java-imaging-utilities_0.14.2+3-4_source + java-wrappers_0.1.25_source + java-xmlbuilder_0.4-2_source + java2html_0.9.2-4_source + java3d_1.5.2+dfsg-8_source + java3ds-fileloader_1.2+dfsg-1_source + javacc_5.0-4_source + javacc-maven-plugin_2.6-2_source + javadap_2.2-1_source + javahelp2_2.0.05.ds1-6_source + javamorph_0.0.20100201-1.3_source + javascript-common_7_source + javassist_1:3.12.1.ga-2_source + javatools_0.43_source + jaxe_3.5-2_source + jaxme_0.5.2+dfsg-6_source + jaxml_3.01-6.1_source + jazip_0.34-15.1_source + jbig2dec_0.11+20120125-1_source + jbigkit_2.0-2_source + jblas_1.2.0-4_source + jbofihe_0.38-5.1_source + jbossas4_4.2.3.GA-7_source + jcal_0.4.0-1.1_source + jcc_2.13-1_source + jcharts_0.7.5-3_source + jcifs_1.3.16-1_source + jclassinfo_0.19.1-6_source + jclic_0.2.1.0-1_source + jcm_1.0-1_source + jcodings_1.0.4-1_source + jcommander_1.26-1_source + jconvolver_0.9.2-1_source + jcsp_1.1-rc4-1_source + jd_1:2.8.5~beta120206-3_source + jdresolve_0.6.1-4_source + jebl2_0.0.r6-1_source + jed_1:0.99.19-2.1_source + jed-extra_2.5.6-2_source + jedit_4.5.2+dfsg-1_source + jeex_12.0.4-1_source + jekyll_0.11.2-1_source + jellydoc_1.5-2_source + jellyfish_1.1.5-1_source + jemalloc_3.0.0-3_source + jenkins-commons-jelly_1.1-jenkins-20110627-3_source + jenkins-commons-jexl_1.1-jenkins-20111212-1_source + jenkins-crypto-util_1.1-2_source + jenkins-dom4j_1.6.1-hudson-3-1_source + jenkins-executable-war_1.27-1_source + jenkins-htmlunit_2.6-jenkins-6-1_source + jenkins-htmlunit-core-js_2.6-hudson-1-1_source + jenkins-json_2.1-rev7-2_source + jenkins-memory-monitor_1.7-2_source + jenkins-remoting_2.11+dfsg-1_source + jenkins-task-reactor_1.3-1_source + jenkins-test-annotations_1.0-1_source + jenkins-trilead-ssh2_212-hudson-6+dfsg-1_source + jenkins-winstone_0.9.10-jenkins-37+dfsg-2_source + jenkins-xstream_1.3.1-jenkins-9-3_source + jericho-html_3.1-2_source + jesd_0.0.7-4_source + jesred_1.2pl1-17_source + jester_1.0-9_source + jetring_0.20_source + jets3t_0.8.1+dfsg-1_source + jetty_6.1.26-1_source + jetty8_8.1.3-4_source + jeuclid_3.1.9-2_source + jexcelapi_2.6.12-2_source + jffi_1.0.2-9_source + jffnms_0.9.3-3_source + jflex_1.4.3-2_source + jfractionlab_0.91-2_source + jfsutils_1.1.15-2_source + jftp_1.52+dfsg-2_source + jfugue_4.0.3-3_source + jgit_2.0.0-2_source + jgraph_83-22_source + jgromacs_1.0-1_source + jhbuild_3.4.0-1_source + jhdf_2.8.0-5_source + jhead_1:2.95-1_source + jifty_1.10518+dfsg-2_source + jigdo_0.7.3-3_source + jigit_1.19-1_source + jigl_2.0.1+20060126-4_source + jigzo_0.6.1-6_source + jiipview_2.05-1_source + jimtcl_0.73-3_source + jing-trang_20091111-5_source + jinja2_2.6-1_source + jinput_20100502+dfsg-7_source + jirc_1.0-1_source + jkmeter_0.6.1-2_source + jless_382-iso262-3_source + jlex_1.2.6-6_source + jlha-utils_0.1.6-3_source + jlibeps_0.1+2-2_source + jline_1.0-2_source + jlint_3.0-4.5_source + jmagick_6.2.6-0-8_source + jmdns_3.4.1-2_source + jmeters_0.2.1-2_source + jmock_1.2.0-1_source + jmock2_2.5.1+dfsg-2_source + jmol_12.2.32+dfsg2-1_source + jnettop_0.13.0-1_source + jnoise_0.6.0-3_source + jnoisemeter_0.1.0-2_source + jnr-netdb_1.0.3-2_source + jnr-x86asm_0.1-1_source + joblib_0.6.4-3_source + jocaml_3.12.1-1_source + joda-convert_1.2-2_source + jodconverter_2.2.2-7_source + jodconverter-cli_2.2.2-8_source + jodreports_2.4.0-3_source + joe_3.7-2.3_source + john_1.7.8-1_source + jokosher_0.11.5-5_source + joptsimple_3.1-4_source + josm_0.0.svn5267+dfsg1-2_source + josm-plugins_0.0.svn28420+ds2-1_source + josql_2.2-1_source + jove_4.16.0.73-1_source + jovie_4:4.8.4-2_source + joy2key_1.6.3-1_source + joystick_1:1.4.3-1_source + jp2a_1.0.6-3.2_source + jpeginfo_1.6.0-5_source + jpegjudge_0.0.2-2_source + jpegoptim_1.2.3-2_source + jpegpixi_1.1.1-4.1_source + jpilot_1.8.1.2-1_source + jpilot-backup_0.60-3_source + jpnevulator_1.3.1-1_source + jpoker_1.0.16-2.1_source + jpylyzer_1.5.0-2_source + jqapi_1.7+dfsg-1_source + jquery_1.7.2+dfsg-1_source + jquery-goodies_6-1_source + jquery-jplayer_2.1.0-2_source + jquery-jplayer-bluemonday_2.1.0-1_source + jquery-jplayer-pinkflag_2.1.0-1_source + jquery-mobile_1.1.0-3_source + jquery-ui-themes_1.8.21+dfsg-1_source + jqueryui_1.8.ooops.21+dfsg-2_source + jruby_1.5.6-5_source + jruby-joni_1.1.4-2_source + js-of-ocaml_1.2-2_source + js2-mode_0~20090723b-2_source + jsch_0.1.42-2_source + jscribble_1.7.7-1.2_source + jscropperui_1.2.2-1_source + jsdebugger_0.5-4_source + jsdoc-toolkit_2.4.0+dfsg-3_source + jshash_2.2-3_source + jsilver_1.0.0.dfsg-1_source + jsjac_1.3.4+dfsg-1_source + jsmath_3.6c-1.1_source + jsmath-fonts_1.3-2_source + jsmath-fonts-sprite_1.0-2_source + json-c_0.10-1.2_source + json-glib_0.14.2-1_source + json-simple_1.1-dfsg1-1_source + json-spirit_4.04-1_source + json-static_0.9.8-1_source + json-wheel_1.0.6-2_source + jsonbot_0.84.4-1_source + jsonpickle_0.4.0-1_source + jsonpipe_0.0.8-4_source + jsoup_1.6.2-1_source + jsr107cache_1.0.dfsg.1-4_source + jss_4.3.1-4_source + jstest-gtk_0.1.1~git20090722-2_source + jsxgraph_0.83+svn1872~dfsg1-1_source + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_source + jta_2.6+dfsg-5_source + jtb_1.4.4-2_source + jtex-base_2.1-1.1_source + jtharness_4.4.0-MR1-Rel-b19-1_source + jthread_1.3.1-3_source + jtidy_7+svn20110807-4_source + jtreg_4.1-2_source + jts_1.11-1_source + judy_1.0.5-1_source + juffed_0.8.1-1_source + jug_2.0.0-2_source + jugglemaster_0.4-6_source + juke_0.7-4_source + juman_5.1-2.1_source + jumpnbump_1.50+dfsg1-3_source + jumpnbump-levels_20091107_source + junior-doc_1.16.1_source + junit_3.8.2-8_source + junit4_4.10-3_source + junitperf_1.9.1-8_source + junkfilter_20030115-4_source + jupp_3.1.21-1_source + jutils_20100502+dfsg-2_source + jvim_3.0-2.1b-3_source + jvyamlb_0.2.5-2_source + jwchat_1.0+dfsg-1.1_source + jwhois_4.0-2.1_source + jwm_2.1.0-3_source + jxgrabkey_0.3.2-6_source + jxplorer_3.2.2~rc1+dfsg-3_source + jython_2.5.2-1_source + jzip_210r20001005d-2_source + jzlib_1.1.0-1_source + k3b_2.0.2-6_source + k3d_0.8.0.2-18_source + k4dirstat_2.7.3-1_source + k8temp_0.4.0-2_source + kaa-base_0.6.0+svn4596-1_source + kaa-imlib2_0.2.3+svn4596-2_source + kaa-metadata_0.7.7+svn4596-4_source + kabikaboo_1.7-1_source + kaccessible_4:4.8.4-3_source + kactivities_4:4.8.4-1_source + kadu_0.11.2-1_source + kaffeine_1.2.2-2_source + kakasi_2.3.5~pre1+cvs20071101-1_source + kalgebra_4:4.8.4-1_source + kali_3.1-11_source + kalign_1:2.03+20110620-2_source + kalternatives_0.13-2_source + kalzium_4:4.8.4-1_source + kamera_4:4.8.4-2_source + kamerka_0.8.1-1_source + kamoso_2.0.2-1_source + kanagram_4:4.8.4-1_source + kanatest_0.4.8-2.1_source + kanif_1.2.2-1_source + kanjidic_2012.05.09-1_source + kanjipad_2.0.0-6_source + kannel_1.4.3-2_source + kannel-sqlbox_0.7.2-3_source + kanyremote_5.13-1_source + kaptain_1:0.73-1_source + kasumi_2.5-2_source + kate_4:4.8.4-1_source + katoob_0.5.9.1-3_source + kawari8_8.2.8-7_source + kaya_0.4.4-6_source + kbackup_0.7.1-3_source + kball_0.0.20041216-8_source + kbd_1.15.3-9_source + kbd-chooser_1.65_source + kbdd_0.6-4_source + kbibtex_0.4-4_source + kbruch_4:4.8.4-1_source + kbuild_1:0.1.9998svn2543+dfsg-1_source + kcalc_4:4.8.4-2_source + kcc_2.3-12_source + kcharselect_4:4.8.4-2_source + kcheckers_0.8.1-3_source + kchmviewer_5.3-1_source + kcm-fcitx_0.3.4-1_source + kcollectd_0.9-2.1_source + kcolorchooser_4:4.8.4-1_source + kcometen4_1.0.7-1_source + kcov_4-2_source + kdbg_2.5.1-1_source + kdc2tiff_0.35-8_source + kde-baseapps_4:4.8.4-2_source + kde-gtk-config_3:2.1-1_source + kde-l10n_4:4.8.4-2_source + kde-runtime_4:4.8.4-2_source + kde-style-polyester_2.0.0-3_source + kde-style-qtcurve_1.8.12-2_source + kde-wallpapers_4:4.8.4-1_source + kde-workspace_4:4.8.4-6_source + kde4libs_4:4.8.4-4_source + kdeadmin_4:4.8.4-3_source + kdeartwork_4:4.8.4-5_source + kdegames_4:4.8.4-3_source + kdegraphics-mobipocket_4:4.8.4-1_source + kdegraphics-strigi-analyzer_4:4.8.4-1_source + kdegraphics-thumbnailers_4:4.8.4-1_source + kdemultimedia_4:4.8.4-2_source + kdenetwork_4:4.8.4-1_source + kdenlive_0.9.2-2_source + kdepim_4:4.4.11.1+l10n-3_source + kdepim-runtime_4:4.4.11.1-6_source + kdepimlibs_4:4.8.4-2_source + kdeplasma-addons_4:4.8.4-1_source + kdesdk_4:4.8.4+dfsg-1_source + kdesrc-build_1.15.1-1_source + kdesudo_3.4.2.4-2_source + kdesvn_1.5.5-4.1_source + kdetoys_4:4.8.4-1_source + kdevelop_4:4.3.1-3_source + kdevelop-pg-qt_1.0.0-2_source + kdevelop-php_1.3.1-2_source + kdevelop-php-docs_1.3.1-2_source + kdevplatform_1.3.1-2_source + kdewebdev_4:4.8.4-1_source + kdf_4:4.8.4-1_source + kdiff3_0.9.96-4_source + kdm-gdmcompat_0.13-2_source + kdocker_4.6-2_source + kdrill_6.5deb2-8_source + kedpm_0.5.0-4_source + keepalived_1:1.2.2-3_source + keepass2_2.19+dfsg-2_source + keepassx_0.4.3+dfsg-0.1_source + keepnote_0.7.8-1_source + kelbt_0.15-1_source + kephra_0.4.3.32+dfsg-2_source + kerberos-configs_2.3_source + kernel-handbook_1.0.15_source + kernel-package_12.036+nmu3_source + kernel-patch-viewos_0.20120115-2_source + kernel-wedge_2.85_source + kerneltop_0.8-2.1_source + kernsmooth_2.23-8-1_source + ketchup_1.0.1+git20111228+e1c62066-1_source + ketm_0.0.6-22_source + keurocalc_1.2.0-1_source + kexec-tools_1:2.0.3-1+deb7u1_source + key-mon_1.13-1_source + keybinder_0.2.2-4_source + keyboards-rg_0.2_source + keychain_2.7.1-1_source + keylaunch_1.3.9_source + keymapper_0.5.3-10.1_source + keynav_0.20110708.0-1_source + keystone_2012.1.1-13+wheezy1_source + keytouch-editor_1:3.2.0~beta-3_source + keyutils_1.5.5-3_source + kfloppy_4:4.8.4-1_source + kfreebsd-8_8.3-6+deb7u1_source + kfreebsd-9_9.0-10+deb70.6_source + kfreebsd-defaults_9+1_source + kfreebsd-kernel-headers_0.83_source + kftpgrabber_0.8.99~svn1214766-1_source + kgamma_4:4.8.4-2_source + kgb_1.0b4+ds-13.2_source + kgb-bot_1.15-2_source + kgeography_4:4.8.4-1_source + kgpg_4:4.8.4-4_source + khangman_4:4.8.4-1_source + khmerconverter_1.4-1_source + khronos-opencl-headers_1.2-2012.04.18a-1_source + khronos-opengl-man4_1.0~svn17952-1_source + kicad_0.20120526+bzr3261-1_source + kickseed_0.58_source + kid_0.9.6-2_source + kid3_2.1-2_source + kig_4:4.8.4-1_source + kiki_0.5.6-8_source + kiki-the-nano-bot_1.0.2+dfsg1-4_source + kildclient_2.11.1-1_source + kile_1:2.1.0-1_source + killer_0.90-8_source + kimwitu_4.6.1-7.1_source + kimwitu++_2.3.13-2_source + kimwitu-doc_10a+1-2.2_source + kindleclip_0.3-3_source + king_2.21.120420-2_source + kingston-update-notifier_1.2.4_source + kino_1.3.4-1.3_source + kinput2_3.1-10.3_source + kio-ftps_0.2+dfsg-2_source + kio-gopher_0.1.4-1_source + kiten_4:4.8.4-1_source + kiwi_1.9.22-2_source + klatexformula_3.2.6-1_source + klavaro_1.9.4-2_source + klettres_4:4.8.4-1_source + klibc_2.0.1-3.1_source + klick_0.12.2-1_source + klog_0.5.9-1_source + klone_2.1.0~rc1-1_source + kluppe_0.6.14-1_source + klustakwik_2.0.1-1_source + kmag_4:4.8.4-3_source + kmess_2.0.6.1-3_source + kmetronome_0.10.1-1_source + kmfl-keyboards-mywin_2.1.1-2_source + kmflcomp_0.9.8-1_source + kmidimon_0.7.4-2_source + kmldonkey_2.0.5+kde4.3.3-2_source + kmod_9-3_source + kmousetool_4:4.8.4-3_source + kmouth_4:4.8.4-3_source + kmplayer_1:0.11.3c-1_source + kmplot_4:4.8.4-2_source + kmymoney_4.6.2-3.2_source + knemo_0.7.3-1_source + knews_1.0b.1-28_source + knights_2.3.2-1_source + knockd_0.5-3_source + knocker_0.7.1-4_source + knopflerfish-osgi_2.3.3-2_source + knowledgeroot_0.9.9.5-6_source + ko.tex_0.1.0+20071012-1.1_source + ko.tex-extra-hlfont_0.1.0-1_source + ko.tex-unfonts_0.1.0+20071012-1.2_source + kobodeluxe_0.5.1-6_source + kolabadmin_0.0.20080222-4_source + kolourpaint_4:4.8.4-1_source + kombu_2.1.8-1_source + komi_1.04-5_source + komparator_4:0.6-1_source + kon2_0.3.9b-20_source + konfont_0.1-8_source + konsole_4:4.8.4-2_source + konversation_1.4-1_source + konwert_1.8-11.2_source + korundum_4:4.8.4-1_source + kosd_0.8.1-1_source + koules_1.4-19_source + kover_1:4-7_source + kpartsplugin_20120605-1_source + kphotoalbum_4.2-1_source + kplayer_1:0.7-2.1_source + kradio4_4.0.4-1_source + kraft_0.45-2_source + krank_0.7+dfsg2-2_source + kraptor_0.0.20040403-6_source + krb5_1.10.1+dfsg-5+deb7u1_source + krb5-appl_1:1.0.1-4_source + krb5-auth-dialog_3.2.1-1+deb7u1_source + krb5-sync_2.2-3_source + krecipes_2.0~beta2-3_source + kredentials_2.0~pre3-1.1_source + kremotecontrol_4:4.8.4-3_source + krename_4.0.9-1_source + kross-interpreters_4:4.8.4-1_source + kruler_4:4.8.4-1_source + krusader_1:2.3.0~beta1-1+wheezy3_source + ksaneplugin_4:4.8.4-1_source + kscope_1.9.4-2_source + ksh_93u+-1.2_source + kshutdown_3.0~beta4-1_source + ksnapshot_4:4.8.4-1_source + ksplice_0.9.9-4_source + ksshaskpass_0.5.3-1_source + kst_2.0.3-1.3_source + kstars_4:4.8.4-1_source + kstart_4.1-2_source + kterm_6.2.0-46_source + ktikz_0.10-3_source + ktimer_4:4.8.4-1_source + ktorrent_4.2.1-1_source + ktouch_4:4.8.4-1_source + ktp-accounts-kcm_0.4.0-1_source + ktp-approver_0.4.0-1_source + ktp-auth-handler_0.4.0-1_source + ktp-call-ui_0.4.0-1_source + ktp-common-internals_0.4.0-1_source + ktp-contact-list_0.4.0-1_source + ktp-filetransfer-handler_0.4.0-1_source + ktp-kded-integration-module_0.4.0-1_source + ktp-presence-applet_0.4.0-1_source + ktp-send-file_0.4.0-1_source + ktp-text-ui_0.4.0-1_source + kturtle_4:4.8.4-1_source + kumofs_0.4.13-5_source + kunststoff_2.0.2-5_source + kup_0.3.2-1_source + kupfer_0+v208-2_source + kuvert_2.0.6_source + kvirc_4:4.1.3+20111124.svn5988-2_source + kvkbd_1:0.6-3_source + kvpm_0.8.6-2+deb7u1_source + kvpnc_0.9.6a-2.1_source + kwalify_0.7.2-2_source + kwallet_4:4.8.4-3_source + kwalletcli_2.11-2_source + kwave_0.8.8-1-3_source + kwin-style-crystal_2.0.5-2_source + kwin-style-dekorator_0.5.1-1_source + kwordquiz_4:4.8.4-1_source + kwstyle_1.0.0+cvs20120330-3_source + kwwidgets_1.0.0~cvs20100930-8_source + kxl_1.1.7-16_source + kxml2_2.3.0+ds1-2_source + l2tp-ipsec-vpn_1.0.9-1_source + l2tp-ipsec-vpn-daemon_0.9.9-1_source + l2tpns_2.1.21-1.1_source + l7-filter-userspace_0.12-beta1-1_source + l7-protocols_20090528-4_source + lablgl_1.04-5_source + lablgtk-extras_1.0-1_source + lablgtk2_2.14.2+dfsg-3_source + lablgtkmathview_0.7.8-6_source + labrea_2.5-stable-3_source + laby_0.6.3-1_source + lacheck_1.26-14_source + ladder_0.0.4_source + ladish_1+dfsg0-3_source + laditools_1.0.1-2_source + ladr_0.0.200902a-2.1_source + ladspa-sdk_1.13-1_source + ladvd_0.9.2-2_source + lakai_0.1-1_source + lam_7.1.4-3_source + lambdabot_4.2.3.2-4_source + lame_3.99.5+repack1-3_source + lammps_0~20120615.gite442279-1_source + landell_0.92.1-1.1_source + landslide_1.0.1-1_source + langdrill_0.3-7_source + langscan_1.2+cvs20070125-1.1_source + lapack_3.4.1+dfsg-1+deb70u1_source + laptop-detect_0.13.7_source + laptop-mode-tools_1.61-2_source + larswm_7.5.3-6_source + lasi_1.1.0-1_source + lasso_2.3.6-2_source + last-align_199-1_source + lastfm_1:1.5.4.27091+dfsg1-1_source + lastfmsubmitd_1.0.6-4_source + lat_1.2.3-10_source + latd_1.32_source + late_0.1.0-12_source + latencytop_0.5_source + latex-beamer_3.10-2_source + latex-cjk-chinese-arphic_1.22_source + latex-cjk-japanese-wadalab_0.20050817-16_source + latex-make_2.1.18-2_source + latex-mk_2.1-1.1_source + latex-sanskrit_2.2-9_source + latex-xcolor_2.11-1.1_source + latex209_25.mar.1992-13_source + latex2html_2008-debian1-7_source + latex2rtf_1.9.19-4.2_source + latexdiff_0.5-4_source + latexdraw_2.0.8+1-3_source + latexila_2.4.0-1_source + latexmk_1:4.24-1_source + latexml_0.7.0-1_source + latrace_0.5.11-1_source + lattice_0.20-6-1_source + latticeextra_0.6-19-1_source + launchtool_0.8-2_source + launchy_2.5-1_source + lazarus_0.9.30.4-6_source + lazr.restfulclient_0.12.0-2+deb7u1_source + lazr.uri_1.0.3-1_source + lazyarray_0.1.0-1_source + lazygal_0.7.4-1_source + lbcd_3.3.0-1_source + lbdb_0.38_source + lbreakout2_2.6.3-1_source + lbt_1.2.2-5_source + lcab_1.0b12-5_source + lcalc_0.0.20080205-1.2_source + lcd4linux_0.11.0~svn1189-1_source + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_source + lcdproc_0.5.5-2_source + lcgdm_1.8.2-1_source + lcms_1.19.dfsg-1.2_source + lcms2_2.2+git20110628-2.2_source + lcov_1.9-3_source + lcrack_20040914-1_source + lcrt_1.1.2-1_source + ldap-account-manager_3.7-2_source + ldap-haskell_0.6.6-4.1_source + ldap2dns_0.3.1-3.1_source + ldap2zone_0.2-3.1_source + ldapjdk_4.18-5_source + ldapscripts_2.0.1-1_source + ldaptor_0.0.43+debian1-7_source + ldapvi_1.7-9_source + ldb_1:1.1.6-1_source + ldm_2:2.2.11-2_source + ldm-themes_12.07.1_source + ldns_1.6.13-1_source + ldp-docbook-stylesheets_0.0.20040321-2_source + ldtp_2.3.1-1_source + le_1.14.3-2_source + le-dico-de-rene-cougnenc_1.3-2.1_source + leafnode_1.11.8-3_source + leafpad_0.8.18.1-3_source + leaktracer_2.4-5_source + leave_1.12-2.1_source + lebiniou_3.18-1_source + lebiniou-data_3.10-1_source + ledger_2.6.2-3.1_source + ledgersmb_1.3.18-2_source + ledit_2.03-1_source + ledmon_0.32-1_source + leds-alix_0.0.1-1.1_source + legit_0.1.1-2_source + lein-clojars_0.8.0-1_source + leiningen_1.7.1-1_source + lekhonee-gnome_0.11-3_source + lemonldap-ng_1.1.2-5+deb7u1_source + lensfun_0.2.5-2_source + leptonlib_1.69-3.1_source + less_444-4_source + lesstif2_1:0.95.2-1.1_source + letodms_3.3.9+dfsg-1_source + letterize_1.3-3_source + levee_3.5a-3_source + leveldb_0+20120530.gitdd0d562-1_source + lfhex_0.42-3.1_source + lfm_2.3-1_source + lft_2.2-4_source + lftp_4.3.6-1+deb7u2_source + lhapdf_5.8.7+repack-1_source + lhasa_0.0.7-2_source + lhs2tex_1.17-1_source + lib3ds_1.3.0-6_source + libaacs_0.4.0-1_source + libaal_1.0.5-5.1_source + libabstract-ruby_1.0.0-2.1_source + libaccessors-perl_1.01-1_source + libace-perl_1.92-2_source + libacme-bleach-perl_1.13-1_source + libacme-brainfck-perl_1.1.1_source + libacme-damn-perl_0.05-1_source + libacme-eyedrops-perl_1.60-1_source + libacme-poe-knee-perl_1.10-7_source + libacpi_0.2-4_source + libai-fann-perl_0.10-1_source + libaio_0.3.109-3_source + libajaxtags-java_1.5.1-1_source + libalberta2_2.0.1-5_source + libalgorithm-c3-perl_0.08-1_source + libalgorithm-checkdigits-perl_0.50-1_source + libalgorithm-combinatorics-perl_0.26-1_source + libalgorithm-dependency-perl_1.110-1_source + libalgorithm-diff-perl_1.19.02-2_source + libalgorithm-diff-xs-perl_0.04-2_source + libalgorithm-merge-perl_0.08-2_source + libalgorithm-munkres-perl_0.08-2_source + libalgorithm-numerical-sample-perl_2010011201-1_source + libalgorithm-permute-perl_0.12-1_source + libalias-perl_2.32-9_source + libaliased-perl_0.30-1_source + libalien-sdl-perl_1.430-4_source + libalien-wxwidgets-perl_0.59+dfsg-1_source + libalkimia_4.3.2-1.1_source + libalog_0.4.1-2_source + libalzabo-perl_0.92-2_source + libamazon-sqs-simple-perl_1.06-1_source + libantlr3c_3.2-2_source + libany-moose-perl_0.17-1_source + libany-template-processdir-perl_0.07-1_source + libanydata-perl_0.10-9_source + libanyevent-aggressiveidle-perl_0.04-1_source + libanyevent-callback-perl_0.06-1_source + libanyevent-dbd-pg-perl_0.03-3_source + libanyevent-dbi-perl_2.2-1_source + libanyevent-forkobject-perl_0.09-1_source + libanyevent-http-perl_2.14-1_source + libanyevent-httpd-perl_0.93-3_source + libanyevent-i3-perl_0.08-1+deb7u1_source + libanyevent-irc-perl_0.96-1_source + libanyevent-perl_7.010-1_source + libanyevent-redis-perl_0.23-1_source + libanyevent-serialize-perl_0.04-1_source + libanyevent-tools-perl_0.12-1_source + libanyevent-xmpp-perl_0.52-1_source + libao_1.1.0-2_source + libaopalliance-java_20070526-5_source + libaosd_0.2.7-1_source + libapache-admin-config-perl_0.94-1.1_source + libapache-asp-perl_2.62-1_source + libapache-authenhook-perl_2.00-04+pristine-2_source + libapache-authznetldap-perl_0.07-4_source + libapache-db-perl_0.14-3_source + libapache-dbi-perl_1.11-1_source + libapache-dbilogger-perl_0.93-12_source + libapache-gallery-perl_1.0.2-1_source + libapache-htgroup-perl_1.23-1_source + libapache-htpasswd-perl_1.8-1.1_source + libapache-mod-auth-kerb_5.4-2_source + libapache-mod-auth-radius_1.5.8-1.1_source + libapache-mod-encoding_0.0.20021209-10_source + libapache-mod-evasive_1.10.1-1_source + libapache-mod-jk_1:1.2.37-1_source + libapache-mod-layout_5.1-1_source + libapache-mod-log-sql_1.100-14.2_source + libapache-mod-musicindex_1.3.7-2_source + libapache-mod-random_2.1-1_source + libapache-mod-removeip_1.0b-5_source + libapache-poi-java_3.6+dfsg-2_source + libapache-session-browseable-perl_0.7-1_source + libapache-session-ldap-perl_0.2-1_source + libapache-session-perl_1.89-1_source + libapache-session-wrapper-perl_0.34-1_source + libapache-sessionx-perl_2.01-4_source + libapache-singleton-perl_0.15-1_source + libapache2-authcassimple-perl_0.10-1_source + libapache2-authcookie-perl_3.18-1_source + libapache2-authenntlm-perl_0.02-5_source + libapache2-mod-auth-cas_1.0.9.1-2_source + libapache2-mod-auth-memcookie_1.0.2-5_source + libapache2-mod-auth-openid_0.7-0.1_source + libapache2-mod-auth-pam_1.1.1-9_source + libapache2-mod-auth-pgsql_2.0.3-5_source + libapache2-mod-auth-plain_2.0.51_source + libapache2-mod-auth-pubtkt_0.7-1_source + libapache2-mod-auth-tkt_2.1.0-6_source + libapache2-mod-authn-sasl_1.2-1_source + libapache2-mod-authn-yubikey_1.0-1_source + libapache2-mod-authnz-external_3.2.4-2.1_source + libapache2-mod-authz-unixgroup_1.0.2-1_source + libapache2-mod-bw_0.92-6_source + libapache2-mod-defensible_1.4-3_source + libapache2-mod-encoding_20040616-5.1_source + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_source + libapache2-mod-geoip_1.2.7-1_source + libapache2-mod-ldap-userdir_1.1.19-1_source + libapache2-mod-lisp_1.3.1-1.2_source + libapache2-mod-macro_1.1.11-2_source + libapache2-mod-nss_1.0.8-2_source + libapache2-mod-perl2_2.0.7-3_source + libapache2-mod-python_3.3.1-9_source + libapache2-mod-qos_10.8-1_source + libapache2-mod-rivet_2.0.5-1_source + libapache2-mod-rpaf_0.6-7+wheezy1_source + libapache2-mod-ruid2_0.9.7-1_source + libapache2-mod-xsendfile_0.12-1_source + libapache2-reload-perl_0.12-1_source + libapache2-sitecontrol-perl_1.05-1_source + libapp-cache-perl_0.37-1_source + libapp-cli-perl_0.313-1_source + libapp-cmd-perl_0.318-1_source + libapp-control-perl_1.02-2_source + libapp-daemon-perl_0.15-1_source + libapp-info-perl_0.56-1_source + libapp-nopaste-perl_0.33-1_source + libapp-options-perl_1.12-1_source + libapp-rad-perl_1.04-1_source + libapp-repl-perl_0.012-1_source + libapp-termcast-perl_0.12-1_source + libappindicator_0.4.92-2_source + libapr-memcache_0.7.0-1_source + libapreq2_2.13-1_source + libapt-pkg-perl_0.1.26_source + libaqbanking_5.0.24-3_source + libarch-perl_0.5.2-1_source + libarchive_3.0.4-3+nmu1_source + libarchive-any-perl_0.0932-1_source + libarchive-ar-perl_1.14-1_source + libarchive-peek-perl_0.35-1_source + libarchive-tar-wrapper-perl_0.16-1_source + libarchive-zip-perl_1.30-6_source + libarray-compare-perl_2.02-1_source + libarray-diff-perl_0.07-1_source + libarray-printcols-perl_2.1-9_source + libarray-refelem-perl_1.00-1.1_source + libarray-unique-perl_0.08-1_source + libart-lgpl_2.3.21-2_source + libasa-perl_0.02-1_source + libaspect-perl_1.02-1_source + libass_0.10.0-3_source + libassa_3.5.1-2_source + libassuan_2.0.3-1_source + libast_0.7-6_source + libasterisk-agi-perl_1.01-2_source + libastro-fits-cfitsio-perl_1.08-1_source + libastro-fits-header-perl_3.05-1_source + libasync-interrupt-perl_1.10-1_source + libasync-mergepoint-perl_0.04-1_source + libasyncns_0.8-4_source + libatasmart_0.19-1_source + libatombus-perl_1.0405-1_source + libatomic-ops_7.2~alpha5+cvs20101124-1+deb7u1_source + libatompub-perl_0.3.7-1_source + libaudio-cd-perl_0.05-9_source + libaudio-ecasound-perl_1.01-2_source + libaudio-file-perl_0.11-3_source + libaudio-flac-decoder-perl_0.3+dfsg-1_source + libaudio-flac-header-perl_2.4-1_source + libaudio-mixer-perl_0.7-3_source + libaudio-moosic-perl_0.10-2_source + libaudio-mpd-common-perl_1.120881-1_source + libaudio-mpd-perl_1.120610-1_source + libaudio-musepack-perl_1.0.1-1_source + libaudio-rpld-perl_0.004-1_source + libaudio-scan-perl_0.93+dfsg-2_source + libaudio-scrobbler-perl_0.01-2.1_source + libaudio-wav-perl_0.13-1_source + libaudio-wma-perl_1.3-1_source + libaudiomask_1.0-2_source + libaugeas-ruby_0.4.1-1.1_source + libaunit_1.03-7_source + libauth-yubikey-decrypter-perl_0.07-1_source + libauth-yubikey-webclient-perl_3.00-1_source + libauthcas-perl_1.5-1_source + libauthen-bitcard-perl_0.90-1_source + libauthen-captcha-perl_1.023-5_source + libauthen-cas-client-perl_0.05-1_source + libauthen-dechpwd-perl_2.006-1_source + libauthen-krb5-admin-perl_0.13-1_source + libauthen-krb5-perl_1.9-3_source + libauthen-krb5-simple-perl_0.43-1_source + libauthen-ntlm-perl_1.09-1_source + libauthen-oath-perl_1.0.0-1_source + libauthen-pam-perl_0.16-2_source + libauthen-passphrase-perl_0.008-1_source + libauthen-radius-perl_0.20-1_source + libauthen-sasl-cyrus-perl_0.13-server-8_source + libauthen-sasl-perl_2.1500-1_source + libauthen-simple-cdbi-perl_0.2-2_source + libauthen-simple-dbi-perl_0.2-2_source + libauthen-simple-dbm-perl_0.2-2_source + libauthen-simple-http-perl_0.2-3_source + libauthen-simple-kerberos-perl_0.1-3_source + libauthen-simple-ldap-perl_0.3-1_source + libauthen-simple-net-perl_0.2-3_source + libauthen-simple-pam-perl_0.2-3_source + libauthen-simple-passwd-perl_0.6-2_source + libauthen-simple-perl_0.5-1_source + libauthen-simple-radius-perl_0.1-2_source + libauthen-simple-smb-perl_0.1-3_source + libauthen-smb-perl_0.91-4_source + libauthen-tacacsplus-perl_0.22-1_source + libauthority-shared-perl_0.006-1_source + libautobox-core-perl_1.21-1_source + libautobox-dump-perl_20090426.1746-1_source + libautobox-list-util-perl_20090629-1_source + libautobox-perl_2.75-1_source + libautodie-perl_2.12-1_source + libautovivification-perl_0.10-1_source + libav_6:0.8.9-1_source + libavc1394_0.5.4-2_source + libavg_1.7.1-1_source + libavl_0.3.5-3_source + libaws_2.10.2-4_source + libax25_0.0.12-rc2+cvs20120204-2_source + libaxiom-java_1.2.8-1_source + libb-hooks-endofscope-perl_0.11-1_source + libb-hooks-op-annotation-perl_0.44-1_source + libb-hooks-op-check-entersubforcv-perl_0.09-1_source + libb-hooks-op-check-perl_0.19-1_source + libb-hooks-op-ppaddr-perl_0.03-1_source + libb-hooks-parser-perl_0.11-1_source + libb-keywords-perl_1.12-1_source + libb-perlreq-perl_0.80-1_source + libb-utils-perl_0.21-1_source + libbarcode-code128-perl_2.01-2_source + libbareword-filehandles-perl_0.003-1_source + libbase_1.1.6-2_source + libbash_0.9.11-1_source + libbasicplayer-java_3.0-6_source + libbenchmark-apps-perl_0.04-1_source + libbenchmark-progressbar-perl_0.00001-1_source + libbenchmark-timer-perl_0.7102-1_source + libbencode-perl_1.4-1_source + libberkeleydb-perl_0.51-1_source + libbest-perl_0.14-1_source + libbiblio-citation-parser-perl_1.10+dfsg-1_source + libbiblio-endnotestyle-perl_0.05-1_source + libbiblio-isis-perl_0.24-1.1_source + libbind_6.0-1_source + libbind-config-parser-perl_0.01-1_source + libbind-confparser-perl_0.95-3_source + libbinio_1.4+dfsg1-1_source + libbio-asn1-entrezgene-perl_1.100-1_source + libbio-chado-schema-perl_0.10010-1_source + libbio-das-lite-perl_2.04-1.1_source + libbio-graphics-perl_2.26-1_source + libbio-mage-perl_20030502.3-2_source + libbio-mage-utils-perl_20030502.0-1_source + libbio-primerdesigner-perl_0.07-1_source + libbio-samtools-perl_1.33-1_source + libbio-scf-perl_1.03-1_source + libbit-vector-minimal-perl_1.3-4_source + libbit-vector-perl_7.2-1_source + libbitmask_2.0-2_source + libblocksruntime_0.1-1_source + libbloom-filter-perl_1.0-3_source + libbluedevil_1.9.2-1_source + libbluray_1:0.2.2-1_source + libbonobo_2.24.3-1_source + libbonoboui_2.24.3-1_source + libboolean-perl_0.28-1_source + libbot-basicbot-perl_0.7-2_source + libbot-training-perl_0.04-1_source + libboulder-perl_1.30-4_source + libbpp-core_2.0.3-1_source + libbpp-phyl_2.0.3-1_source + libbpp-popgen_2.0.3-1_source + libbpp-qt_2.0.2-1_source + libbpp-raa_2.0.3-1_source + libbpp-seq_2.0.3-1_source + libbrahe_1.3.2-3_source + libbrowser-open-perl_0.04-1_source + libbs2b_3.1.0+dfsg-2_source + libbsd_0.4.2-1_source + libbsd-arc4random-perl_1.50-5_source + libbsd-resource-perl_1.2904-1_source + libbsf-java_1:2.4.0-5_source + libbtm-java_2.1.2-1_source + libbuffy_1.7-1_source + libbuffy-bindings_0.13_source + libburn_1.2.2-2_source + libbusiness-creditcard-perl_0.31-1_source + libbusiness-edi-perl_0.05-1_source + libbusiness-isbn-data-perl_20081208-1_source + libbusiness-isbn-perl_2.05-1_source + libbusiness-issn-perl_0.91-2_source + libbusiness-onlinepayment-authorizenet-perl_3.22-1_source + libbusiness-onlinepayment-ippay-perl_0.06-2_source + libbusiness-onlinepayment-openecho-perl_0.03-2_source + libbusiness-onlinepayment-payconnect-perl_0.02-1_source + libbusiness-onlinepayment-payflowpro-perl_1.01-2_source + libbusiness-onlinepayment-paymentech-perl_2.04-1_source + libbusiness-onlinepayment-perl_3.02-1_source + libbusiness-onlinepayment-tclink-perl_1.03-3_source + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_source + libbusiness-onlinepayment-viaklix-perl_0.01-3_source + libbusiness-paypal-api-perl_0.69-2_source + libbusiness-tax-vat-validation-perl_1.00-1_source + libbusiness-us-usps-webtools-perl_1.11-1_source + libbytelist-java_1.0.6-1_source + libbz2-ruby_0.2.2-2_source + libcaca_0.99.beta18-1_source + libcache-cache-perl_1.06-2_source + libcache-fastmmap-perl_1.40-1_source + libcache-historical-perl_0.05-1_source + libcache-memcached-fast-perl_0.19-2_source + libcache-memcached-managed-perl_0.24-1_source + libcache-memcached-perl_1.30-1_source + libcache-mmap-perl_0.11-1_source + libcache-perl_2.04-3_source + libcache-ref-perl_0.04-1_source + libcache-simple-timedexpiry-perl_0.27-2_source + libcairo-gobject-perl_1.001-1_source + libcairo-perl_1.090-2_source + libcal-dav-perl_0.6-2_source + libcalendar-simple-perl_1.21-1_source + libcam-pdf-perl_1.58-2_source + libcanberra_0.28-6_source + libcap-ng_0.6.6-2_source + libcap2_1:2.22-1.2_source + libcapsinetwork_0.3.0-7_source + libcaptcha-recaptcha-perl_0.94-3_source + libcapture-tiny-perl_0.18-1_source + libcarp-always-perl_0.11-1_source + libcarp-assert-more-perl_1.12-2_source + libcarp-assert-perl_0.20-2_source + libcarp-clan-perl_6.04-1_source + libcarp-clan-share-perl_0.013-1_source + libcarp-datum-perl_1:0.1.3-6_source + libcatalyst-action-rest-perl_1.04-1_source + libcatalyst-actionrole-acl-perl_0.07-1_source + libcatalyst-authentication-credential-http-perl_1.014-1_source + libcatalyst-controller-actionrole-perl_0.15-1_source + libcatalyst-devel-perl_1.37-1_source + libcatalyst-engine-apache-perl_1.16-1_source + libcatalyst-engine-psgi-perl_0.13+dfsg-1_source + libcatalyst-manual-perl_5.9004-1_source + libcatalyst-model-cdbi-perl_0.12-1_source + libcatalyst-modules-extra-perl_8_source + libcatalyst-modules-perl_44_source + libcatalyst-perl_5.90015-1_source + libcatalyst-plugin-log-dispatch-perl_0.121-1_source + libcatalyst-plugin-scheduler-perl_0.10-1_source + libcatalyst-plugin-smarturi-perl_0.036-1_source + libcatalyst-plugin-unicode-encoding-perl_1.7-1_source + libcatalyst-view-petal-perl_0.03-1_source + libcatalyst-view-tt-perl_0.38-1_source + libcatalystx-injectcomponent-perl_0.024-1_source + libcatalystx-leakchecker-perl_0.06-1_source + libcatalystx-simplelogin-perl_0.17-1_source + libccaudio2_2.0.5-3_source + libccrtp_2.0.3-4_source + libccscript3_1.1.7-2_source + libccss_0.5.0-4_source + libcdaudio_0.99.12p2-12_source + libcdb-file-perl_0.97-2_source + libcddb_1.3.2-3_source + libcddb-file-perl_1.05-1_source + libcddb-get-perl_2.28-1_source + libcddb-perl_1.220-1_source + libcdio_0.83-4_source + libcdk-perl_4.9.10-5_source + libcdk5_5.0.20060507-4_source + libcec_1.6.2-1.1_source + libcgi-ajax-perl_0.707-1_source + libcgi-application-basic-plugin-bundle-perl_0.8_source + libcgi-application-dispatch-perl_3.07-2_source + libcgi-application-extra-plugin-bundle-perl_0.6_source + libcgi-application-perl_4.50-1_source + libcgi-application-plugin-actiondispatch-perl_0.98-1_source + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_source + libcgi-application-plugin-anytemplate-perl_0.18-1_source + libcgi-application-plugin-authentication-perl_0.20-1_source + libcgi-application-plugin-authorization-perl_0.07-2_source + libcgi-application-plugin-autorunmode-perl_0.18-1_source + libcgi-application-plugin-captcha-perl_0.04-1_source + libcgi-application-plugin-config-simple-perl_1.01-1_source + libcgi-application-plugin-configauto-perl_1.33-1_source + libcgi-application-plugin-dbh-perl_4.00-1_source + libcgi-application-plugin-dbiprofile-perl_0.07-1_source + libcgi-application-plugin-devpopup-perl_1.07-1_source + libcgi-application-plugin-fillinform-perl_1.15-1_source + libcgi-application-plugin-formstate-perl_0.12-1_source + libcgi-application-plugin-forward-perl_1.06-1_source + libcgi-application-plugin-json-perl_1.02-1_source + libcgi-application-plugin-linkintegrity-perl_0.06-1_source + libcgi-application-plugin-logdispatch-perl_1.02-1_source + libcgi-application-plugin-messagestack-perl_0.34-1_source + libcgi-application-plugin-protectcsrf-perl_1.01-1_source + libcgi-application-plugin-ratelimit-perl_1.0-2_source + libcgi-application-plugin-requiressl-perl_0.04-1_source + libcgi-application-plugin-session-perl_1.03-1_source + libcgi-application-plugin-stream-perl_2.10-1_source + libcgi-application-plugin-tt-perl_1.05-2_source + libcgi-application-plugin-validaterm-perl_2.5-1_source + libcgi-application-plugin-viewcode-perl_1.02-1_source + libcgi-application-server-perl_0.062-1_source + libcgi-compile-perl_0.15-1_source + libcgi-cookie-splitter-perl_0.02-2_source + libcgi-emulate-psgi-perl_0.14-1_source + libcgi-formalware-perl_1.13-1_source + libcgi-formbuilder-perl_3.08-1_source + libcgi-formbuilder-source-yaml-perl_1.0.8-2_source + libcgi-pm-perl_3.61-2_source + libcgi-psgi-perl_0.15-1_source + libcgi-session-driver-memcached-perl_0.04-1_source + libcgi-session-expiresessions-perl_1.12-1_source + libcgi-session-perl_4.46-1_source + libcgi-session-serialize-yaml-perl_4.26-1_source + libcgi-simple-perl_1.113-2_source + libcgi-ssi-parser-perl_0.01-1_source + libcgi-ssi-perl_0.92-3_source + libcgi-untaint-date-perl_1.00-2_source + libcgi-untaint-email-perl_0.03-2_source + libcgi-untaint-perl_1.26-4_source + libcgi-uploader-perl_2.17-1_source + libcgi-validop-perl_0.56-1_source + libcgi-xml-perl_0.1-13_source + libcgi-xmlapplication-perl_1.1.3-6_source + libcgi-xmlform-perl_0.10-13_source + libcgic_2.05-3_source + libcgicc_3.2.9-3_source + libcgns_3.1.3.4-1_source + libcgroup_0.38-1_source + libchado-perl_1.22-4_source + libchamplain_0.12.3-1_source + libchart-clicker-perl_2.83-1_source + libchart-gnuplot-perl_0.17-1_source + libchart-perl_2.4.5-1_source + libchart-strip-perl_1.08-1_source + libcheck-isa-perl_0.04-1_source + libchemistry-elements-perl_1.07-2_source + libchemistry-formula-perl_3.0.1-1_source + libchewing_0.3.3-4_source + libchi-driver-memcached-perl_0.14-3_source + libchi-perl_0.54-1_source + libchild-perl_0.009-1_source + libchipcard_5.0.3beta-3_source + libcitadel_8.14-1_source + libcitygml_0.14+svn128-1+3p0p1+4_source + libclamav-client-perl_0.11-2_source + libclass-accessor-chained-perl_0.01.1~debian-2.1_source + libclass-accessor-children-perl_0.02-1_source + libclass-accessor-class-perl_0.501-3_source + libclass-accessor-classy-perl_0.9.1-1_source + libclass-accessor-grouped-perl_0.10006-1_source + libclass-accessor-lvalue-perl_0.11-2_source + libclass-accessor-named-perl_0.008-1_source + libclass-accessor-perl_0.34-1_source + libclass-adapter-perl_1.07-1_source + libclass-autouse-perl_2.01-1_source + libclass-base-perl_0.05-1_source + libclass-c3-adopt-next-perl_0.12-1_source + libclass-c3-componentised-perl_1.001000-1_source + libclass-c3-perl_0.24-1_source + libclass-c3-xs-perl_0.13-1_source + libclass-container-perl_0.12-3_source + libclass-contract-perl_1.14-6_source + libclass-csv-perl_1.03-2.1_source + libclass-data-accessor-perl_0.04004-1_source + libclass-data-inheritable-perl_0.08-1_source + libclass-date-perl_1.1.10-1_source + libclass-dbi-abstractsearch-perl_0.07-3_source + libclass-dbi-asform-perl_2.42-6_source + libclass-dbi-fromcgi-perl_1.00-4_source + libclass-dbi-fromform-perl_0.04-3_source + libclass-dbi-loader-perl_0.34-2_source + libclass-dbi-loader-relationship-perl_1:1.2-4_source + libclass-dbi-mysql-perl_1.00-3_source + libclass-dbi-pager-perl_0.08-4_source + libclass-dbi-perl_3.0.17-4_source + libclass-dbi-pg-perl_0.09-4_source + libclass-dbi-plugin-abstractcount-perl_0.08-1_source + libclass-dbi-plugin-pager-perl_0.561-4_source + libclass-dbi-plugin-perl_0.03-5_source + libclass-dbi-plugin-retrieveall-perl_1.04-3_source + libclass-dbi-plugin-type-perl_0.02-7_source + libclass-dbi-sqlite-perl_0.11-4_source + libclass-dbi-sweet-perl_0.10-1_source + libclass-default-perl_1.51-2_source + libclass-delegator-perl_0.09-1_source + libclass-errorhandler-perl_0.01-2_source + libclass-factory-perl_1.06-2_source + libclass-factory-util-perl_1.7-2_source + libclass-field-perl_0.15-3_source + libclass-gomor-perl_1.02-1_source + libclass-handle-perl_1.07-2_source + libclass-inner-perl_0.200001-1_source + libclass-insideout-perl_1.10-2_source + libclass-inspector-perl_1.27-1_source + libclass-isa-perl_0.36-3_source + libclass-load-perl_0.17-1_source + libclass-load-xs-perl_0.04-1_source + libclass-loader-perl_2.03-1_source + libclass-makemethods-perl_1.01-4_source + libclass-meta-perl_0.65-1_source + libclass-method-modifiers-perl_1.09-1_source + libclass-methodmaker-perl_2.18-1_source + libclass-mix-perl_0.003-1_source + libclass-mixinfactory-perl_0.92-2_source + libclass-multimethods-perl_1.70-5_source + libclass-objecttemplate-perl_0.7-6_source + libclass-ooorno-perl_0.011-1_source + libclass-perl_1.00-1_source + libclass-pluggable-perl_0.022-2_source + libclass-prototyped-perl_1.11-3_source + libclass-returnvalue-perl_0.55-1_source + libclass-singleton-perl_1.4-1_source + libclass-spiffy-perl_0.15-3_source + libclass-std-fast-perl_0.0.8-1_source + libclass-std-perl_0.0.9-2_source + libclass-std-utils-perl_0.0.3-1_source + libclass-throwable-perl_0.10-2_source + libclass-trait-perl_0.31-1_source + libclass-trigger-perl_0.14-1_source + libclass-unload-perl_0.07-1_source + libclass-virtual-perl_0.06-3_source + libclass-whitehole-perl_0.04-6_source + libclass-xsaccessor-perl_1.13-1_source + libclaw_1.7.0-3_source + libcli_1.9.6-1_source + libclone-fast-perl_0.96-1_source + libclone-perl_0.31-1_source + libclone-pp-perl_1.02-1_source + libcloud_0.5.0-1.1_source + libclutter-perl_1.110-1_source + libcmis_0.1.0-1_source + libcobra-java_0.98.4-4_source + libcodemodel-java_2.1-1_source + libcolor-calc-perl_1.073-1_source + libcolor-library-perl_0.021-1_source + libcolor-palette-perl_0.100002-1_source + libcolor-scheme-perl_1.02-3_source + libcommon-sense-perl_3.6-1_source + libcommoncpp2_1.8.1-5_source + libcommons-attributes-java_2.2-8_source + libcommons-cli-java_1.2-3_source + libcommons-codec-java_1.6-1_source + libcommons-collections-java_2.1.1-10_source + libcommons-collections3-java_3.2.1-5_source + libcommons-compress-java_1.4.1-2_source + libcommons-dbcp-java_1.4-3_source + libcommons-digester-java_1.8.1-3_source + libcommons-discovery-java_0.5-3_source + libcommons-el-java_1.0-7_source + libcommons-fileupload-java_1.2.2-1+deb7u1_source + libcommons-jexl-java_1.1-3_source + libcommons-jxpath-java_1.3-5_source + libcommons-lang-java_2.6-3_source + libcommons-lang3-java_3.1-1_source + libcommons-launcher-java_1.1-6_source + libcommons-logging-java_1.1.1-9_source + libcommons-modeler-java_2.0.1-6_source + libcommons-net1-java_1.4.1-5_source + libcommons-net2-java_2.2-2_source + libcommons-openpgp-java_0+svn533492-3_source + libcommons-validator-java_1:1.3.1-9_source + libcompface_1:1.5.2-5_source + libcompress-bzip2-perl_2.09-2_source + libcompress-raw-bzip2-perl_2.052-1_source + libcompress-raw-zlib-perl_2.052-1_source + libconcurrentlinkedhashmap-java_1.1~jdk5-1_source + libconfig_1.4.8-5_source + libconfig-any-perl_0.23-1_source + libconfig-apacheformat-perl_1.2-4_source + libconfig-augeas-perl_0.903-1_source + libconfig-auto-perl_0.42-1_source + libconfig-autoconf-perl_0.19-1_source + libconfig-file-perl_1.50-2_source + libconfig-general-perl_2.50-1_source + libconfig-gitlike-perl_1.08-1_source + libconfig-grammar-perl_1.10-1_source + libconfig-ini-perl_1:0.019-1_source + libconfig-inifiles-perl_2.75-1_source + libconfig-inihash-perl_3.01.01-1_source + libconfig-jfdi-perl_0.065-1_source + libconfig-json-perl_1.5100-1_source + libconfig-merge-perl_1.01-1_source + libconfig-model-approx-perl_1.004-1_source + libconfig-model-backend-augeas-perl_0.112-1_source + libconfig-model-cursesui-perl_1.104-1_source + libconfig-model-itself-perl_1.232-1_source + libconfig-model-openssh-perl_1.225-1_source + libconfig-model-perl_2.021-3+deb7u1_source + libconfig-model-tkui-perl_1.337-2_source + libconfig-mvp-perl_2.200002-1_source + libconfig-mvp-reader-ini-perl_2.101461-1_source + libconfig-pit-perl_0.04-1_source + libconfig-record-perl_1.1.2-1_source + libconfig-scoped-perl_0.22-1_source + libconfig-simple-perl_4.59-6_source + libconfig-std-perl_0.9-1_source + libconfig-tiny-perl_2.14-1_source + libconfig-yaml-perl_1.42-2_source + libconfigreader-perl_0.5-4_source + libconfigreader-simple-perl_1.28-3_source + libconst-fast-perl_0.011-1_source + libconstantine-java_0.7-3_source + libcontactsdb_0.5-8_source + libcontext-preserve-perl_0.01-1_source + libcontextual-return-perl_0.004003-1_source + libconvert-ascii-armour-perl_1.4-1_source + libconvert-asn1-perl_0.26-1_source + libconvert-base32-perl_0.05-1_source + libconvert-ber-perl_1.3200-1_source + libconvert-binary-c-perl_0.76-1_source + libconvert-binhex-perl_1.119+pristine-3_source + libconvert-color-perl_0.08-1_source + libconvert-nls-date-format-perl_0.05-1_source + libconvert-pem-perl_0.08-1_source + libconvert-tnef-perl_0.17-11_source + libconvert-units-perl_1:0.43-1_source + libconvert-uulib-perl_1:1.4~dfsg-1_source + libconvert-ytext-perl_0.1.2-1_source + libcorelinux_0.4.32-7.3_source + libcoro-perl_6.080-3_source + libcourriel-perl_0.29-1_source + libcoy-perl_0.06-6_source + libcoyotl_3.1.0-5_source + libcpan-changes-perl_0.19-1_source + libcpan-checksums-perl_2.03-1_source + libcpan-distnameinfo-perl_0.12-1_source + libcpan-inject-perl_1.13-1_source + libcpan-meta-check-perl_0.004-1_source + libcpan-meta-perl_2.120921-1_source + libcpan-meta-requirements-perl_2.122-1_source + libcpan-meta-yaml-perl_0.008-1_source + libcpan-mini-perl_1.111008-3_source + libcpan-perl-releases-perl_0.60-1_source + libcpan-uploader-perl_0.103001-1_source + libcpandb-perl_0.17-1_source + libcps-perl_0.15-1_source + libcpuset_1.0-3_source + libcql-parser-perl_1.10-1_source + libcriticism-perl_1.02-1_source + libcroco_0.6.6-2_source + libcrypt-blowfish-perl_2.12-1_source + libcrypt-cast5-perl_0.05-1_source + libcrypt-cbc-perl_2.30-1_source + libcrypt-des-ede3-perl_0.01-1.1_source + libcrypt-des-perl_2.05-2_source + libcrypt-dh-gmp-perl_0.00010-1_source + libcrypt-dh-perl_0.06-3_source + libcrypt-dsa-perl_1.17-3_source + libcrypt-ecb-perl_1.40-2_source + libcrypt-eksblowfish-perl_0.008-1_source + libcrypt-gcrypt-perl_1.25-1_source + libcrypt-generatepassword-perl_0.03-4_source + libcrypt-gpg-perl_1.52-1_source + libcrypt-hcesha-perl_0.70-3_source + libcrypt-mysql-perl_0.04-4_source + libcrypt-openssl-bignum-perl_0.04-3_source + libcrypt-openssl-dsa-perl_0.13-6_source + libcrypt-openssl-random-perl_0.04-1_source + libcrypt-openssl-rsa-perl_0.28-1_source + libcrypt-openssl-x509-perl_1.8.2-1_source + libcrypt-passwdmd5-perl_1.3-10_source + libcrypt-random-source-perl_0.07-1_source + libcrypt-rc4-perl_2.02-2_source + libcrypt-rijndael-perl_1.08-1_source + libcrypt-saltedhash-perl_0.06-1_source + libcrypt-simple-perl_0.06-6_source + libcrypt-smbhash-perl_0.12-3_source + libcrypt-smime-perl_0.10-1_source + libcrypt-ssleay-perl_0.58-1_source + libcrypt-twofish-perl_2.12-1_source + libcrypt-unixcrypt-perl_1.0-5_source + libcrypt-unixcrypt-xs-perl_0.08-1_source + libcrypt-util-perl_0.11-1_source + libcrypt-x509-perl_0.51-1_source + libcrypto++_5.6.1-6_source + libcryptui_3.2.2-1_source + libcsfml_1.6-1_source + libcsoap_1.1.0-17.1_source + libcss-dom-perl_0.14-1_source + libcss-minifier-perl_0.01-1_source + libcss-minifier-xs-perl_0.07-1_source + libcss-packer-perl_1.002001-1_source + libcss-perl_1.08-1+nmu3_source + libcss-squish-perl_0.09-1_source + libcss-tiny-perl_1.19-1_source + libcsv-java_2.0-12_source + libctapimkt_1.0.1-1.1_source + libctl_3.1.0-5_source + libcue_1.4.0-1_source + libcurses-perl_1.28-1_source + libcurses-ui-perl_0.9609-1_source + libcurses-widgets-perl_1.997-5_source + libcvs-perl_0.07-4_source + libcxgb3_1.3.1-1_source + libdaemon_0.14-2_source + libdaemon-control-perl_0.000009-1_source + libdancer-logger-psgi-perl_0.04-2_source + libdancer-perl_1.3095+dfsg-1_source + libdancer-plugin-database-perl_1.82-1_source + libdancer-plugin-dbic-perl_0.1506-1_source + libdancer-plugin-flashmessage-perl_0.314-1_source + libdancer-plugin-rest-perl_0.07-1_source + libdancer-session-cookie-perl_0.15-1_source + libdancer-session-memcached-perl_0.2020-1_source + libdanga-socket-perl_1.61-1_source + libdansguardian-perl_0.6-2_source + libdap_3.11.1-11_source + libdata-alias-perl_1.16-1_source + libdata-amf-perl_0.09-3_source + libdata-buffer-perl_0.04-1.1_source + libdata-clone-perl_0.003-1_source + libdata-compare-perl_1.22-0.1_source + libdata-dump-perl_1.21-1_source + libdata-dump-streamer-perl_2.34-1_source + libdata-dumper-concise-perl_2.020-1_source + libdata-dumper-simple-perl_0.11-4_source + libdata-dumpxml-perl_1.06-1_source + libdata-entropy-perl_0.007-1_source + libdata-faker-perl_0.07-3_source + libdata-float-perl_0.012-1_source + libdata-flow-perl_1.02-1_source + libdata-format-html-perl_0.5-2_source + libdata-formvalidator-constraints-datetime-perl_1.11-1_source + libdata-formvalidator-perl_4.70-1_source + libdata-guid-perl_0.046-1_source + libdata-hexdumper-perl_3.0001-1_source + libdata-ical-perl_0.18+dfsg-1_source + libdata-integer-perl_0.004-1_source + libdata-javascript-anon-perl_1.03-2_source + libdata-javascript-perl_1.13-1_source + libdata-miscellany-perl_1.100850-1_source + libdata-munge-perl_0.04-1_source + libdata-objectdriver-perl_0.09-1_source + libdata-optlist-perl_0.107-1_source + libdata-page-perl_2.02-1_source + libdata-pageset-perl_1.05-2_source + libdata-parsebinary-perl_0.31~dfsg-1_source + libdata-password-perl_1.07-3_source + libdata-peek-perl_0.38-1_source + libdata-phrasebook-loader-yaml-perl_0.09-1_source + libdata-phrasebook-perl_0.31-1_source + libdata-printer-perl_0.30-1_source + libdata-random-perl_0.07-1_source + libdata-report-perl_0.10-1_source + libdata-rmap-perl_0.62-1_source + libdata-section-perl_0.101621-1_source + libdata-section-simple-perl_0.03-1_source + libdata-serializer-perl_0.59-1_source + libdata-show-perl_0.002001-1_source + libdata-showtable-perl_3.3-7_source + libdata-sorting-perl_0.9-4_source + libdata-stag-perl_0.11-2_source + libdata-stream-bulk-perl_0.11-1_source + libdata-streamdeserializer-perl_0.06-1_source + libdata-streamserializer-perl_0.07-1_source + libdata-structure-util-perl_0.15-2_source + libdata-transformer-perl_0.04-1_source + libdata-treedumper-perl_0.40-1_source + libdata-treedumper-renderer-dhtml-perl_0.09-1_source + libdata-treedumper-renderer-gtk-perl_0.02-1_source + libdata-types-perl_0.09-1_source + libdata-util-perl_0.59-1_source + libdata-uuid-libuuid-perl_0.05-1_source + libdata-validate-domain-perl_0.10-1_source + libdata-validate-email-perl_0.04-1_source + libdata-validate-ip-perl_0.14-1_source + libdata-validate-uri-perl_0.06-1_source + libdata-visitor-perl_0.28-1_source + libdata-walk-perl_1.00-1_source + libdata-yaml-perl_0.0.6-1_source + libdatapager-perl_0.01-2_source + libdate-calc-perl_6.3-1_source + libdate-calc-xs-perl_6.3-1_source + libdate-convert-perl_0.16-3_source + libdate-hijri-perl_0.02-1_source + libdate-iso8601-perl_0.003-1_source + libdate-jd-perl_0.003-1_source + libdate-leapyear-perl_1.72-1_source + libdate-manip-perl_6.32-1_source + libdate-pcalc-perl_6.1-1_source + libdate-simple-perl_3.03.03-1_source + libdatetime-astro-sunrise-perl_0.01.01-3_source + libdatetime-calendar-discordian-perl_1.0-1_source + libdatetime-event-cron-perl_0.08-1_source + libdatetime-event-ical-perl_0.10-1_source + libdatetime-event-recurrence-perl_0.16-1_source + libdatetime-event-sunrise-perl_0.0501-1_source + libdatetime-format-builder-perl_0.8000-1_source + libdatetime-format-dateparse-perl_0.05-1_source + libdatetime-format-db2-perl_0.05-2_source + libdatetime-format-dbi-perl_0.040-1_source + libdatetime-format-duration-perl_1.03a-1_source + libdatetime-format-epoch-perl_0.11-1_source + libdatetime-format-flexible-perl_0.23-1_source + libdatetime-format-http-perl_0.40-1_source + libdatetime-format-ical-perl_0.09-1_source + libdatetime-format-iso8601-perl_0.08-1_source + libdatetime-format-mail-perl_0.3001-1_source + libdatetime-format-mysql-perl_0.04-2_source + libdatetime-format-natural-perl_1.00-1_source + libdatetime-format-oracle-perl_0.06-1_source + libdatetime-format-pg-perl_0.16007-1_source + libdatetime-format-sqlite-perl_0.11-1_source + libdatetime-format-strptime-perl_1.5000-1_source + libdatetime-format-w3cdtf-perl_0.06-1_source + libdatetime-format-xsd-perl_0.2-1_source + libdatetime-locale-perl_1:0.45-1_source + libdatetime-perl_2:0.7500-1_source + libdatetime-set-perl_0.31-1_source + libdatetime-timezone-perl_1:1.58-1+2013h_source + libdatetime-timezone-systemv-perl_0.003-1_source + libdatetime-timezone-tzfile-perl_0.002-1_source + libdatetimex-easy-perl_0.089-1_source + libdatrie_0.2.5-3_source + libdb-file-lock-perl_0.05-3_source + libdb-je-java_3.3.98-1_source + libdbd-anydata-perl_0.11-0.1_source + libdbd-csv-perl_0.3500-1_source + libdbd-excel-perl_0.06-6_source + libdbd-firebird-perl_0.91-2_source + libdbd-ldap-perl_0.20-1_source + libdbd-mock-perl_1.43-1_source + libdbd-mysql-perl_4.021-1_source + libdbd-odbc-perl_1.37-1_source + libdbd-pg-perl_2.19.2-2_source + libdbd-sqlite2-perl_2:0.33-9_source + libdbd-sqlite3-perl_1.37-1_source + libdbd-sybase-perl_1.14-1_source + libdbd-xbase-perl_1:1.03-1_source + libdbi_0.8.4-6_source + libdbi-drivers_0.8.3-1+s-5_source + libdbi-perl_1.622-1_source + libdbicx-testdatabase-perl_0.04-1_source + libdbix-abstract-perl_1.010-1_source + libdbix-class-candy-perl_0.002100-1_source + libdbix-class-cursor-cached-perl_1.001002-1_source + libdbix-class-datetime-epoch-perl_0.09-1_source + libdbix-class-dynamicdefault-perl_0.04-1_source + libdbix-class-encodedcolumn-perl_0.00011-1_source + libdbix-class-helpers-perl_2.013002-1_source + libdbix-class-htmlwidget-perl_0.16-2_source + libdbix-class-inflatecolumn-ip-perl_0.02002-1_source + libdbix-class-introspectablem2m-perl_0.001001-1_source + libdbix-class-perl_0.08196-3_source + libdbix-class-resultset-recursiveupdate-perl_0.25-1_source + libdbix-class-schema-loader-perl_0.07025-1_source + libdbix-class-timestamp-perl_0.14-1_source + libdbix-class-tree-nestedset-perl_0.10-1_source + libdbix-connector-perl_0.52-1_source + libdbix-contextualfetch-perl_1.03-3_source + libdbix-datasource-perl_0.02-3_source + libdbix-dbschema-perl_0.40-2_source + libdbix-dbstag-perl_0.12-1_source + libdbix-dr-perl_0.19-1_source + libdbix-fulltextsearch-perl_0.73-10_source + libdbix-oo-perl_0.0.9-3_source + libdbix-password-perl_1.9-1_source + libdbix-profile-perl_1.0-3_source + libdbix-recordset-perl_0.26-2_source + libdbix-safe-perl_1.2.5-1_source + libdbix-searchbuilder-perl_1.62-1_source + libdbix-sequence-perl_1.5-2_source + libdbix-simple-perl_1.32-1_source + libdbix-xml-rdb-perl_0.05-11_source + libdbix-xmlmessage-perl_0.05-9_source + libdbm-deep-perl_2.0008-1_source + libdbusmenu_0.6.2-1_source + libdbusmenu-qt_0.9.0-1_source + libdc0_0.3.24~svn3121-2_source + libdc1394-22_2.2.0-2_source + libdca_0.0.5-5_source + libdebian-copyright-perl_0.1-1_source + libdebian-installer_0.87_source + libdebian-package-html-perl_0.1-2_source + libdebug_0.4.4-1.1_source + libdebug-client-perl_0.20-1_source + libdebug-trace-perl_0.04-4_source + libdecodeqr_0.9.3-6.2_source + libdesktop-agnostic_0.3.92+dfsg-1_source + libdesktop-notify-perl_0.03-1_source + libdessert0.87_0.87.2-1_source + libdevel-argnames-perl_0.03-1_source + libdevel-backtrace-perl_0.12-1_source + libdevel-beginlift-perl_0.001003-1_source + libdevel-bt-perl_0.05-1_source + libdevel-caller-ignorenamespaces-perl_1.0-1_source + libdevel-caller-perl_2.05-1_source + libdevel-calltrace-perl_1.2-1_source + libdevel-checklib-perl_0.98-1_source + libdevel-cover-perl_0.89-1_source + libdevel-cycle-perl_1.11-2_source + libdevel-declare-perl_0.006011-1_source + libdevel-dprof-perl_20110802.00-1_source + libdevel-dumpvar-perl_1.06-1_source + libdevel-ebug-perl_0.53-1_source + libdevel-findref-perl_1.422-1_source + libdevel-gdb-perl_2.02-1_source + libdevel-globaldestruction-perl_0.06-1_source + libdevel-hide-perl_0.0008-1_source + libdevel-leak-perl_0.03-2_source + libdevel-lexalias-perl_0.04-3_source + libdevel-nytprof-perl_4.06-1_source + libdevel-partialdump-perl_0.15-1_source + libdevel-patchperl-perl_0.72-1_source + libdevel-pragma-perl_0.54-1_source + libdevel-profile-perl_1.05-2_source + libdevel-ptkdb-perl_1.1091-2_source + libdevel-refactor-perl_0.05-1_source + libdevel-refcount-perl_0.09-1_source + libdevel-repl-perl_1.003013-1_source + libdevel-simpletrace-perl_0.08-1_source + libdevel-size-perl_0.77-1_source + libdevel-stacktrace-ashtml-perl_0.11-1_source + libdevel-stacktrace-perl_1.2700-1_source + libdevel-stacktrace-withlexicals-perl_0.10-1_source + libdevel-symdump-perl_2.08-4_source + libdevel-trace-perl_0.12-1_source + libdevice-cdio-perl_0.3.0-1_source + libdevice-gsm-perl_1.60-1_source + libdevice-modem-perl_1.47-2.1_source + libdevice-serialport-perl_1.04-2_source + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_source + libdevice-usb-perl_0.35-2_source + libdigest-bubblebabble-perl_0.02-2_source + libdigest-crc-perl_0.18-1_source + libdigest-hmac-perl_1.03+dfsg-1_source + libdigest-jhash-perl_0.06-1_source + libdigest-md2-perl_2.03+dfsg-1_source + libdigest-md4-perl_1.5.dfsg-2_source + libdigest-md5-file-perl_0.08-1_source + libdigest-perl_1.17-1_source + libdigest-sha-perl_5.71-2+deb7u1_source + libdigest-whirlpool-perl_1.09-1_source + libdir-purge-perl_1.02-2_source + libdir-self-perl_0.10-1_source + libdirectory-scratch-perl_0.14-1_source + libdirectory-scratch-structured-perl_0.04-1_source + libdisasm_0.23-5_source + libdiscid_0.2.2-3_source + libdispatch_0~svn197-3.1_source + libdisplaymigration_0.28-10_source + libdist-metadata-perl_0.923-1_source + libdist-zilla-perl_4.300020-1_source + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_source + libdist-zilla-plugin-git-perl_1.121820-1_source + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_source + libdist-zilla-plugin-podweaver-perl_3.101641-1_source + libdist-zilla-plugin-prepender-perl_1.112280-1_source + libdist-zilla-plugin-run-perl_0.013-1_source + libdist-zilla-plugins-cjm-perl_4.09-1_source + libdivecomputer_0.1.0-3_source + libdjconsole_0.1.3-1_source + libdkim_1:1.0.21-3_source + libdmapsharing_2.9.15-1_source + libdmtx_0.7.2-2+build1_source + libdmx_1:1.1.2-1+deb7u1_source + libdns-zoneparse-perl_1.10-1_source + libdockapp_1:0.5.0-3_source + libdpkg-log-perl_1.20-2_source + libdr-tarantool-perl_0.15-1+deb70u1_source + libdrm_2.4.40-1~deb7u2_source + libdrumstick_0.5.0-3_source + libdshconfig_0.20.13-1_source + libdssialsacompat_1.0.8a-1_source + libdtdparser-java_1.21a-5_source + libdublincore-record-perl_0.03-1_source + libdumb_1:0.9.3-5.4_source + libdumbnet_1.12-3.1_source + libdv_1.0.0-6_source + libdvb_0.5.5.1-5.1_source + libdvbcsa_1.1.0-2_source + libdvbpsi_0.2.2-1_source + libdvdnav_4.2.0+20120524-2_source + libdvdread_4.2.0+20120521-2_source + libeatmydata_26-2_source + libebml_1.2.2-2_source + libebook-tools-perl_0.4.9-1_source + libechonest_1.2.1-1_source + libedit_2.11-20080614-5_source + libee_0.4.1-1_source + libelf_0.8.13-3_source + libelixirfm-perl_1.1.976-2_source + libemail-abstract-perl_3.004-1_source + libemail-address-perl_1.895-1_source + libemail-date-format-perl_1.002-1_source + libemail-date-perl_1.103-3_source + libemail-filter-perl_1.032-1_source + libemail-find-perl_0.10-dfsg-1.1_source + libemail-folder-perl_0.855-1_source + libemail-foldertype-perl_0.813-1_source + libemail-localdelivery-perl_0.217-2_source + libemail-messageid-perl_1.402-1_source + libemail-mime-contenttype-perl_1.014-3_source + libemail-mime-createhtml-perl_1.030-1_source + libemail-mime-encodings-perl_1.313-1_source + libemail-mime-perl_1.910-1_source + libemail-outlook-message-perl_0.911-1_source + libemail-received-perl_1.00-1_source + libemail-send-io-perl_2.200-1_source + libemail-send-perl_2.198-4_source + libemail-sender-perl_0.110005-1_source + libemail-sender-transport-smtp-tls-perl_0.10-1_source + libemail-simple-perl_2.101-1_source + libemail-thread-perl_0.711-1_source + libemail-valid-loose-perl_0.05-3_source + libemail-valid-perl_0.190-1_source + libencode-arabic-perl_1.9-1_source + libencode-detect-perl_1.01-2_source + libencode-eucjpms-perl_0.07-3_source + libencode-hanextra-perl_0.23-2_source + libencode-imaputf7-perl_1.05-2_source + libencode-jis2k-perl_0.02-1_source + libencode-locale-perl_1.03-1_source + libencode-perl_2.44-1+deb7u1_source + libend-perl_2009040201-1_source + libenv-path-perl_0.18-1_source + libenv-ps1-perl_0.06-1_source + libenv-sanctify-perl_1.06-1_source + libepc_0.4.4-1_source + libepsilon_0.9.1-2_source + libept_1.0.9_source + liberror-perl_0.17-1_source + libescape-ruby_0.2-1_source + libesmtp_1.0.6-1_source + libestr_0.1.9-1~bpo70+1_source + libetpan_1.0-5_source + libev_1:4.11-1_source + libev-perl_4.11-2_source + libeval-closure-perl_0.08-1_source + libeval-context-perl_0.09.11-1_source + libevent_2.0.19-stable-3_source + libevent-perl_1.15-1_source + libevent-rpc-perl_1.01-2_source + libeventdb_0.90-5_source + libevocosm_4.0.2-2.1_source + libewf_20100226-1_source + libexcel-template-perl_0.34-1_source + libexcel-template-plus-perl_0.05-1_source + libexcel-writer-xlsx-perl_0.47-1_source + libexception-class-dbi-perl_1.00-1_source + libexception-class-perl_1.32-1_source + libexception-class-trycatch-perl_1.12-1_source + libexception-handler-perl_1.004-1_source + libexif_0.6.20-3_source + libexif-gtk_0.3.5-5_source + libexml-java_0.0.20080703-4_source + libexosip2_3.6.0-4_source + libexpect-perl_1.21-1_source + libexpect-php5_0.3.1-1_source + libexpect-simple-perl_0.04-2_source + libexplain_0.52.D002-1_source + libexporter-easy-perl_0.16-1_source + libexporter-lite-perl_0.02-2_source + libexporter-renaming-perl_1.19-1_source + libexporter-tidy-perl_0.07-2_source + libextractor_1:0.6.3-5_source + libextractor-java_0.6.0-6_source + libextractor-python_1:0.6-4_source + libexttextcat_3.2.0-2_source + libextutils-autoinstall-perl_0.63-1_source + libextutils-cbuilder-perl_0.280205-1_source + libextutils-cchecker-perl_0.08-1_source + libextutils-depends-perl_0.304-1_source + libextutils-f77-perl_1.17-1_source + libextutils-libbuilder-perl_0.04-1_source + libextutils-parsexs-perl_3.150000-1_source + libextutils-pkgconfig-perl_1.13-1_source + libextutils-xsbuilder-perl_0.28-2_source + libextutils-xspp-perl_0.1602-3_source + libezmorph-java_1.0.6-3_source + libf2c2_20090411-2_source + libfakekey_0.1-7_source + libfam-ruby_0.2.0-2.1_source + libfann_2.1.0~beta~dfsg-8_source + libfax-hylafax-client-perl_1.02-1_source + libfcgi_2.4.0-8.1_source + libfcgi-perl_0.74-1_source + libfcgi-procmanager-perl_0.24-1_source + libfcgi-ruby_0.8.8-1_source + libfeed-find-perl_0.07-1_source + libffado_2.0.99+svn2171-2_source + libffi_3.0.10-3_source + libfile-basedir-perl_0.03-1_source + libfile-bom-perl_0.14-1_source + libfile-cache-perl_0.16-9_source + libfile-changenotify-perl_0.22-1_source + libfile-chdir-perl_0.1006-1_source + libfile-chmod-perl_0.32-1_source + libfile-copy-link-perl_0.113-1_source + libfile-copy-recursive-perl_0.38-1_source + libfile-counterfile-perl_1.04-4_source + libfile-countlines-perl_0.0.3-1_source + libfile-desktopentry-perl_0.04-3_source + libfile-dircompare-perl_0.6-1_source + libfile-fcntllock-perl_0.14-2_source + libfile-find-object-perl_0.2.1-1_source + libfile-find-object-rule-perl_0.0301-1_source + libfile-find-rule-perl_0.33-1_source + libfile-find-rule-perl-perl_1.12-1_source + libfile-find-rule-vcs-perl_1.08-1_source + libfile-find-wanted-perl_1.00-1_source + libfile-finder-perl_0.53-1_source + libfile-flat-perl_1.04-3_source + libfile-flock-perl_2008.01-1_source + libfile-fnmatch-perl_0.02-1_source + libfile-fu-perl_0.0.7-2_source + libfile-homedir-perl_0.99-1_source + libfile-inplace-perl_0.20-1_source + libfile-keepass-perl_0.03-1_source + libfile-libmagic-perl_0.96-2_source + libfile-listing-perl_6.04-1_source + libfile-localizenewlines-perl_1.11-1_source + libfile-mimeinfo-perl_0.16-1_source + libfile-mmagic-xs-perl_0.09006-4_source + libfile-modified-perl_0.07-2_source + libfile-ncopy-perl_0.36-1_source + libfile-next-perl_1.10-1_source + libfile-nfslock-perl_1.21-1_source + libfile-path-expand-perl_1.02-1_source + libfile-path-tiny-perl_0.3-1_source + libfile-pid-perl_1.01-1_source + libfile-policy-perl_1.005-1_source + libfile-pushd-perl_1.001-1_source + libfile-queue-perl_1.01a-1_source + libfile-read-perl_0.0801-2_source + libfile-readbackwards-perl_1.05-1_source + libfile-remove-perl_1.52-1_source + libfile-rsync-perl_0.42-2_source + libfile-rsyncp-perl_0.70-1_source + libfile-scan-perl_1.43-2_source + libfile-searchpath-perl_0.06-2_source + libfile-sharedir-install-perl_0.04-1_source + libfile-sharedir-par-perl_0.06-1_source + libfile-sharedir-perl_1.00-0.1_source + libfile-slurp-perl_9999.19-1_source + libfile-slurp-unicode-perl_0.7.1-1_source + libfile-spec-native-perl_1.003-1_source + libfile-spec-perl_3.3300-1_source + libfile-sync-perl_0.11-1_source + libfile-tail-perl_0.99.3-5_source + libfile-touch-perl_0.08-1_source + libfile-type-perl_0.22-1.1_source + libfile-type-webimages-perl_1.01-1_source + libfile-userconfig-perl_0.06-2_source + libfile-util-perl_3.27-1_source + libfile-which-perl_1.09-1_source + libfile-wildcard-perl_0.11-1_source + libfilehandle-fmode-perl_0.11-1_source + libfilehandle-unget-perl_0.1623-1_source + libfilesys-df-perl_0.92-4_source + libfilesys-diskspace-perl_0.05-15_source + libfilesys-notify-simple-perl_0.08-1_source + libfilesys-smbclient-perl_3.1-3_source + libfilesys-statvfs-perl_0.82-2_source + libfilesystem-ruby_0.5-3.1_source + libfilter-eof-perl_0.04-2_source + libfilter-perl_1.45-1_source + libfilter-template-perl_1.040-1_source + libfinance-bank-ie-permanenttsb-perl_0.4-2_source + libfinance-qif-perl_3.02-1_source + libfinance-quote-perl_1.17+git20120506-1_source + libfinance-quotehist-perl_1.19-1_source + libfinance-streamer-perl_1.10-2_source + libfind-lib-perl_1.04-1_source + libfindbin-libs-perl_1.64-1_source + libfishsound_1.0.0-1.1_source + libfiu_0.90-3_source + libfixposix_20110316.git47f17f7-1_source + libflexdock-java_1.1.1-3_source + libflickr-api-perl_1.01-3_source + libflickr-upload-perl_1.32-2_source + libflickrnet_1:2.2.0-4_source + libflorist_2011-1_source + libfm_0.1.17-2.1_source + libfolia_0.9-2_source + libfont-afm-perl_1.20-1_source + libfont-freetype-perl_0.03-1_source + libfont-ttf-perl_0.48-1_source + libfontenc_1:1.1.1-1_source + libfonts-java_1.1.6.dfsg-3_source + libforest-perl_0.09-1_source + libforks-perl_0.34-1_source + libformat-human-bytes-perl_0.05-1_source + libforms_1.0.93sp1-2_source + libformula_1.1.7.dfsg-2_source + libformvalidator-simple-perl_0.29-1_source + libfortune-perl_0.2-8_source + libfpdf-tpl-php_1.2-2_source + libfpdi-php_1.4.1-1_source + libfprint_1:0.4.0-4-gdfff16f-4_source + libfreemarker-java_2.3.18-1_source + libfreenect_1:0.1.2+dfsg-6_source + libfreezethaw-perl_0.5001-1_source + libfrontier-rpc-perl_0.07b4-6_source + libfs_2:1.0.4-1+deb7u1_source + libfso-glib_2012.05.24.1-1.1_source + libfsobasics_0.11.0-1.1_source + libfsoframework_0.11.0-1.1_source + libfsoresource_0.11.0-1.1_source + libfsosystem_0.11.0-1_source + libfsotransport_0.11.1-2.1_source + libftdi_0.20-1_source + libfuse-perl_0.15.1-2_source + libfusioninventory-agent-task-deploy-perl_2.0.2-1_source + libfusioninventory-agent-task-esx-perl_2.1.0-1_source + libg15_1.2.7-2_source + libg15render_1.3.0~svn316-2.2_source + libg3d_0.0.8-17_source + libgadu_1:1.11.2-1_source + libgarmin_0~svn320-3_source + libgc_1:7.1-9.1_source + libgcal_0.9.6-3_source + libgcgi_0.9.5.dfsg-7_source + libgconf-bridge_0.1-2.2_source + libgcr410_2.4.0-9.2_source + libgcrypt11_1.5.0-5+deb7u1_source + libgctp_1.0-1_source + libgd-barcode-perl_1.15-5_source + libgd-gd2-noxpm-perl_1:2.46-2_source + libgd-gd2-perl_1:2.46-3_source + libgd-graph-perl_1.44-6_source + libgd-graph3d-perl_0.63-8_source + libgd-securityimage-perl_1.71-1_source + libgd-svg-perl_0.33-1_source + libgd-text-perl_0.86-8_source + libgd2_2.0.36~rc1~dfsg-6.1_source + libgda5_5.0.3-2_source + libgdal-grass_1.9.0-1_source + libgdata_0.12.0-1_source + libgdchart-gd2_0.11.5-7_source + libgdf_0.1.2-2_source + libgdiplus_2.10-3_source + libgearman-client-perl_1.11-1_source + libgedcom-perl_1.16-1_source + libgee_0.6.4-2_source + libgeier_0.13-1_source + libgenome_1.3.1-3_source + libgeo-coder-googlev3-perl_0.11-1_source + libgeo-coordinates-itm-perl_0.02-1_source + libgeo-coordinates-utm-perl_0.09-1_source + libgeo-distance-perl_0.19-1_source + libgeo-distance-xs-perl_0.11-1_source + libgeo-google-mapobject-perl_0.06-1_source + libgeo-googleearth-pluggable-perl_0.14-1_source + libgeo-helmerttransform-perl_1.14-1_source + libgeo-ip-perl_1.40-2_source + libgeo-ipfree-perl_1.121660-1_source + libgeo-metar-perl_1.15-1_source + libgeo-osm-tiles-perl_0.04-2_source + libgeo-point-perl_0.93-1_source + libgeo-postcode-perl_0.17+dfsg1-1_source + libgeo-proj4-perl_1.03-1_source + libgeography-countries-perl_2009041301-1_source + libgeography-nationalgrid-perl_1.6-10_source + libgeometry-primitive-perl_0.22-1_source + libgeotiff-dfsg_1.3.0+dfsg-3_source + libgetargs-long-perl_1.1003-2_source + libgetdata_0.7.3-6_source + libgetopt++_0.0.2-p22-3_source + libgetopt-argvfile-perl_1.11-1_source + libgetopt-declare-perl_1.14-1_source + libgetopt-euclid-perl_0.3.5-1_source + libgetopt-java_1.0.13-4_source + libgetopt-long-descriptive-perl_0.091-1_source + libgetopt-lucid-perl_1.01-1_source + libgetopt-mixed-perl_1.008-10_source + libgetopt-simple-perl_1.52-2_source + libgetopt-tabular-perl_0.3-1_source + libgetopt-usaginator-perl_0.0012-1_source + libgettext-commons-java_0.9.6-2_source + libgfshare_1.0.5-2_source + libghemical_3.0.0-2_source + libgig_3.3.0-2_source + libgii_1:1.0.2-4.1_source + libgit-pure-perl_0.48-2_source + libgit-repository-perl_1.25-1_source + libgit-wrapper-perl_0.023-1_source + libgksu_2.0.13~pre1-6_source + libglade2_1:2.6.4-1_source + libglademm2.4_2.6.7-2_source + libglazedlists-java_1.8.0.dfsg-4_source + libglib-object-introspection-perl_0.009-1+deb7u1_source + libglib-perl_3:1.260-1_source + libgmpada_0.0.20120331-1_source + libgnome_2.32.1-3_source + libgnome-keyring_3.4.1-1_source + libgnome-media-profiles_3.0.0-1_source + libgnome2-canvas-perl_1.002-2_source + libgnome2-gconf-perl_1.044-4_source + libgnome2-perl_1.042-2_source + libgnome2-vfs-perl_1.081-3_source + libgnome2-wnck-perl_0.16-2_source + libgnomecanvas_2.30.3-1.2_source + libgnomecanvasmm2.6_2.26.0-1_source + libgnomecups_0.2.3-5_source + libgnomekbd_3.4.0.2-1_source + libgnomemm2.6_2.30.0-1_source + libgnomeprint_2.18.8-3_source + libgnomeprintui_2.18.6-3_source + libgnomeui_2.24.5-2_source + libgnomeuimm2.6_2.28.0-1_source + libgnu-regexp-java_1.1.4-4_source + libgnuinet-java_1.1.2-2_source + libgnujaf-java_1.1.1-8_source + libgnumail-java_1.1.2-7_source + libgnupg-interface-perl_0.45-1_source + libgnupg-perl_0.19-1_source + libgo-perl_0.13-3_source + libgoo-canvas-perl_0.06-1_source + libgoogle-collections-java_1.0-2_source + libgoogle-gson-java_2.1-2_source + libgooglepinyin_0.1.2-1_source + libgpars-groovy-java_0.10-1_source + libgpelaunch_0.14-6_source + libgpepimc_0.9-4_source + libgpeschedule_0.17-4_source + libgpevtype_0.50-6_source + libgpewidget_0.117-6_source + libgpg-error_1.10-3.1_source + libgphoto2_2.4.14-2_source + libgpiv_0.6.1-4_source + libgpod_0.8.2-7_source + libgps-point-perl_0.17-1_source + libgraph-easy-as-svg-perl_0.23-1_source + libgraph-easy-perl_0.71-1_source + libgraph-perl_1:0.91-1_source + libgraph-readwrite-perl_2.03-1_source + libgraph-writer-graphviz-perl_0.11-1_source + libgraphics-color-perl_0.29-1_source + libgraphics-colornames-perl_2.11-4_source + libgraphics-colornames-www-perl_1.12-1_source + libgraphics-colorobject-perl_0.5.0-4_source + libgraphics-gnuplotif-perl_1.6-1_source + libgraphics-libplot-perl_2.2.2-5_source + libgraphics-primitive-driver-cairo-perl_0.44-1_source + libgraphics-primitive-perl_0.61-1_source + libgraphviz-perl_2.10-1_source + libgravatar-url-perl_1.06-1_source + libgrits_0.7-1_source + libgroboutils-java_5-2_source + libgrss_0.5.0-1_source + libgsecuredelete_0.2-1_source + libgsf_1.14.21-2.1_source + libgsm_1.0.13-4_source + libgsm0710_1.2.2-2_source + libgsm0710mux_0.11.2-1.1_source + libgssapi-perl_0.28-2_source + libgssglue_0.4-2_source + libgstreamer-interfaces-perl_0.06-2_source + libgstreamer-perl_0.17-1_source + libgtextutils_0.6.2-1_source + libgtk2-ex-entry-pango-perl_0.09-1_source + libgtk2-ex-podviewer-perl_0.18-1_source + libgtk2-ex-printdialog-perl_0.03-3_source + libgtk2-ex-simple-list-perl_0.50-2_source + libgtk2-ex-volumebutton-perl_0.07-2_source + libgtk2-gladexml-perl_1.007-1_source + libgtk2-gladexml-simple-perl_0.32-2_source + libgtk2-imageview-perl_0.05-1_source + libgtk2-notify-perl_0.05-3_source + libgtk2-perl_2:1.244-1_source + libgtk2-sourceview2-perl_0.10-1_source + libgtk2-spell-perl_1.04-1_source + libgtk2-trayicon-perl_0.06-1_source + libgtk2-traymanager-perl_0.05-2_source + libgtk2-unique-perl_0.05-1_source + libgtk3-perl_0.006-2_source + libgtkada_2.24.1-7_source + libgtkdatabox_1:0.9.1.1-4_source + libgtksourceviewmm_3.2.0-1_source + libgtkstylus_0.3-2_source + libgtop2_2.28.4-3_source + libguac_0.6.0-2_source + libguac-client-rdp_0.6.0-1_source + libguac-client-vnc_0.6.0-1_source + libguard-perl_1.022-1_source + libguess_1.1-1_source + libguestfs_1:1.18.1-1+deb7u3_source + libgusb_0.1.3-5_source + libguytools2_2.0.1-1.1_source + libgweather_3.4.1-1+build1_source + libgwenhywfar_4.3.3-1_source + libgxps_0.2.2-2_source + libhamcrest-java_1.2-2_source + libhandoff_0.1-5_source + libhangul_0.1.0-2_source + libharu_2.2.1-1_source + libhash-asobject-perl_0.13-1_source + libhash-case-perl_1.020-1_source + libhash-fieldhash-perl_0.12-2_source + libhash-flatten-perl_1.19-1_source + libhash-merge-perl_0.12-2_source + libhash-merge-simple-perl_0.051-1_source + libhash-moreutils-perl_0.02-1_source + libhash-multivalue-perl_0.12-1_source + libhash-util-fieldhash-compat-perl_0.03-2_source + libhash-withdefaults-perl_0.05-1_source + libhbaapi_2.2.5-1_source + libhbalinux_1.0.14-1_source + libhdate_1.6-1_source + libhdf4_4.2r4-13_source + libhdhomerun_20120405-1_source + libheap-perl_0.80-2_source + libheimdal-kadm5-perl_0.08-4_source + libhibernate-commons-annotations-java_3.2.0.Final-2_source + libhibernate-jbosscache-java_3.6.8-2_source + libhibernate-validator-java_4.0.2.GA-7_source + libhibernate3-java_3.6.9.Final-2_source + libhmsbeagle_1.0-6_source + libhook-lexwrap-perl_0.24-1_source + libhook-wrapsub-perl_0.03-2_source + libhtml-auto-perl_0.04-1_source + libhtml-autopagerize-perl_0.02-1_source + libhtml-calendarmonth-perl_1.26-1_source + libhtml-calendarmonthsimple-perl_1.25-1_source + libhtml-clean-perl_0.8-11_source + libhtml-copy-perl_1.30-1_source + libhtml-defang-perl_1.02-1_source + libhtml-diff-perl_0.561-1_source + libhtml-display-perl_0.39-4_source + libhtml-element-extended-perl_1.18-1_source + libhtml-embedded-turtle-perl_0.333-1_source + libhtml-encoding-perl_0.61-1_source + libhtml-entities-numbered-perl_0.04-1_source + libhtml-fillinform-perl_2.10-1_source + libhtml-form-perl_6.03-1_source + libhtml-format-perl_2.10-1_source + libhtml-formattext-withlinks-andtables-perl_0.02-1_source + libhtml-formattext-withlinks-perl_0.14-1_source + libhtml-formfu-model-dbic-perl_0.09002-1_source + libhtml-formfu-perl_0.09007-1_source + libhtml-formhandler-perl_0.40013-1+deb7u1_source + libhtml-fromtext-perl_2.05-5.1_source + libhtml-highlight-perl_0.20-6_source + libhtml-html5-entities-perl_0.003-2_source + libhtml-html5-microdata-parser-perl_0.100-1_source + libhtml-html5-outline-perl_0.006-1_source + libhtml-html5-parser-perl_0.110-1_source + libhtml-html5-sanity-perl_0.103-1_source + libhtml-html5-writer-perl_0.201-1_source + libhtml-htmltokenizer-ruby_1.0-3_source + libhtml-linkextractor-perl_0.130-5_source + libhtml-lint-perl_2.20+dfsg-1_source + libhtml-mason-perl_1:1.48-1_source + libhtml-mason-psgihandler-perl_0.52-1_source + libhtml-microformats-perl_0.104-1_source + libhtml-packer-perl_1.004001-1_source + libhtml-parser-perl_3.69-2_source + libhtml-popuptreeselect-perl_1.6-7_source + libhtml-prototype-perl_1.48-3_source + libhtml-quoted-perl_0.03-1_source + libhtml-rewriteattributes-perl_0.04-1_source + libhtml-scrubber-perl_0.09-1_source + libhtml-selector-xpath-perl_0.14-1_source + libhtml-simpleparse-perl_0.12-2_source + libhtml-stream-perl_1.60-1_source + libhtml-strip-perl_1.06-1_source + libhtml-stripscripts-parser-perl_1.03-1_source + libhtml-stripscripts-perl_1.05-1_source + libhtml-table-perl_2.08a-2_source + libhtml-tableextract-perl_2.11-1_source + libhtml-tableparser-perl_0.37-1_source + libhtml-tagcloud-perl_0.37-1_source + libhtml-tagfilter-perl_1.03-3_source + libhtml-tagset-perl_3.20-2_source + libhtml-template-compiled-perl_0.97-1_source + libhtml-template-dumper-perl_0.1-1_source + libhtml-template-expr-perl_0.07-2_source + libhtml-template-perl_2.91-1_source + libhtml-template-pluggable-perl_0.17-1_source + libhtml-template-pro-perl_0.9509-1_source + libhtml-tidy-perl_1.50-1_source + libhtml-tiny-perl_1.05-2_source + libhtml-toc-perl_1.12-1_source + libhtml-tokeparser-simple-perl_3.15-1_source + libhtml-tree-perl_5.02-1_source + libhtml-treebuilder-libxml-perl_0.16-1_source + libhtml-treebuilder-xpath-perl_0.14-1_source + libhtml-widget-perl_1.11-3_source + libhtml-widgets-navmenu-perl_1.0600-1_source + libhtml-widgets-selectlayers-perl_0.07-1_source + libhtml-wikiconverter-dokuwiki-perl_0.53-2_source + libhtml-wikiconverter-kwiki-perl_0.51-1_source + libhtml-wikiconverter-markdown-perl_0.02-6_source + libhtml-wikiconverter-mediawiki-perl_0.59-1_source + libhtml-wikiconverter-moinmoin-perl_0.53-4_source + libhtml-wikiconverter-oddmuse-perl_0.52-1_source + libhtml-wikiconverter-perl_0.68-1_source + libhtml-wikiconverter-phpwiki-perl_0.51-2_source + libhtml-wikiconverter-pmwiki-perl_0.51-1_source + libhtml-wikiconverter-snipsnap-perl_0.50-1_source + libhtml-wikiconverter-tikiwiki-perl_0.50-1_source + libhtml-wikiconverter-usemod-perl_0.50-2_source + libhtml-wikiconverter-wakkawiki-perl_0.50-1_source + libhtml-wikiconverter-wikkawiki-perl_0.50-1_source + libhtmlparser-java_1.6.20060610.dfsg0-3_source + libhtp_0.2.6-2_source + libhttp-async-perl_0.10-1_source + libhttp-body-perl_1.11-1+deb7u1_source + libhttp-browserdetect-perl_1.44-1_source + libhttp-cache-transparent-perl_1.0-2_source + libhttp-cookies-perl_6.00-2_source + libhttp-daemon-perl_6.01-1_source + libhttp-daemon-ssl-perl_1.04-3_source + libhttp-date-perl_6.02-1_source + libhttp-dav-perl_0.38-1_source + libhttp-exception-perl_0.04001-1_source + libhttp-link-parser-perl_0.103-1_source + libhttp-lite-perl_2.3-1_source + libhttp-lrdd-perl_0.105-1_source + libhttp-message-perl_6.03-1_source + libhttp-negotiate-perl_6.00-2_source + libhttp-oai-perl_3.27-1_source + libhttp-parser-perl_0.06-1_source + libhttp-parser-xs-perl_0.14-1_source + libhttp-proxy-perl_0.25-1_source + libhttp-recorder-perl_0.06-1_source + libhttp-request-ascgi-perl_1.2-2_source + libhttp-request-params-perl_1.01-6_source + libhttp-response-encoding-perl_0.05-2_source + libhttp-server-simple-authen-perl_0.04-1_source + libhttp-server-simple-mason-perl_0.14-1_source + libhttp-server-simple-perl_0.44-1_source + libhttp-server-simple-psgi-perl_0.14-1_source + libhttp-server-simple-recorder-perl_0.03-1_source + libhttp-server-simple-static-perl_0.07-2_source + libhttp-tiny-perl_0.022-1_source + libhx_3.12.1-1_source + libi18n-acceptlanguage-perl_1.04-2_source + libi18n-charset-perl_1.401-1_source + libibatis-java_2.3.4.726-3_source + libibcm_1.0.4-1.1_source + libibcommon_1.1.2-20090314-1_source + libibmad_1.2.3-20090314-1.1_source + libibtk_0.0.14-12_source + libibumad_1.2.3-20090314-1.1_source + libibverbs_1.1.6-1_source + libical_0.48-2_source + libical-parser-html-perl_1.07-1_source + libical-parser-perl_1.16-1_source + libical-parser-sax-perl_1.09-2_source + libice_2:1.0.8-2_source + libicns_0.8.1-1_source + libicon-famfamfam-silk-perl_0.002001003-1_source + libics_1.5.2-3_source + libid3tag_0.15.1b-10_source + libident_0.22-3_source + libidl_0.8.14-0.2_source + libidn_1.25-2_source + libidn2-0_0.8-2_source + libidna-punycode-perl_0.03-1_source + libiec61883_1.2.0-0.1_source + libieee1284_0.2.11-10_source + libifp_1.0.0.2-5_source + libiksemel_1.2-4_source + libima-dbi-perl_0.35-1_source + libimage-base-bundle-perl_1.0.7-3_source + libimage-exif-perl_2.01-1_source + libimage-exiftool-perl_8.60-2_source + libimage-imlib2-perl_2.03-1_source + libimage-info-perl_1.28-1_source + libimage-librsvg-perl_0.07-6_source + libimage-math-constrain-perl_1.02-1_source + libimage-metadata-jpeg-perl_0.153-1_source + libimage-seek-perl_0.02-1_source + libimage-size-perl_3.232-1_source + libimager-perl_0.91+dfsg-2_source + libimager-qrcode-perl_0.033-1_source + libimap-admin-perl_1.6.7-1_source + libimlib2-ruby_0.5.2-2.1_source + libimobiledevice_1.1.1-4_source + libindi_0.9.1-2_source + libindicate_0.6.92-1_source + libindicate-qt_0.2.5.91-5_source + libindicator_0.5.0-1_source + libindirect-perl_0.26-1_source + libinfinity_0.5.2-6.1_source + libinline-files-perl_0.68-1_source + libinline-perl_0.50-1_source + libinnodb_1.0.6.6750-1_source + libinstpatch_1.0.0-3_source + libint_1.1.4-1_source + libinternals-perl_1.1-1_source + libintl-perl_1.20-1_source + libio-aio-perl_4.15-1_source + libio-all-lwp-perl_0.14-1_source + libio-all-perl_0.44-1_source + libio-async-loop-epoll-perl_0.12-1_source + libio-async-loop-glib-perl_0.20-3_source + libio-async-perl_0.51-4_source + libio-bufferedselect-perl_1.0-1_source + libio-capture-perl_0.05-2_source + libio-captureoutput-perl_1.1102-1_source + libio-compress-perl_2.052-1_source + libio-digest-perl_0.10-1.1_source + libio-dirent-perl_0.05-1_source + libio-epoll-perl_0.03-1_source + libio-file-withpath-perl_0.08-1_source + libio-handle-util-perl_0.01-1_source + libio-html-perl_0.04-1_source + libio-interactive-perl_0.0.6-1_source + libio-interface-perl_1.06-1_source + libio-lcdproc-perl_0.037-1_source + libio-lockedfile-perl_0.23+d030220-3_source + libio-multiplex-perl_1.13-1_source + libio-prompt-perl_0.997001-1+deb7u1_source + libio-prompter-perl_0.003000-1_source + libio-pty-easy-perl_0.09-1_source + libio-pty-perl_1:1.08-1_source + libio-socket-inet6-perl_2.69-2_source + libio-socket-ip-perl_0.16-2_source + libio-socket-multicast-perl_1.12-1_source + libio-socket-multicast6-perl_0.03-2_source + libio-socket-socks-perl_0.62-1_source + libio-socket-ssl-perl_1.76-2_source + libio-string-perl_1.08-2_source + libio-stty-perl_0.03-1_source + libio-tee-perl_0.64-2_source + libio-tiecombine-perl_1.002-1_source + libiodbc2_3.52.7-2+deb7u1_source + libipathverbs_1.2-1_source + libipc-pubsub-perl_0.29-1_source + libipc-run-perl_0.92-1_source + libipc-run-safehandles-perl_0.02-1_source + libipc-run3-perl_0.045-1_source + libipc-shareable-perl_0.60-8_source + libipc-sharedcache-perl_1.3-8_source + libipc-sharelite-perl_0.17-2_source + libipc-signal-perl_1.00-6_source + libipc-system-simple-perl_1.21-1_source + libiptables-chainmgr-perl_1.2-1_source + libiptables-parse-perl_1.1-1_source + libiptcdata_1.0.4-3_source + libirc-formatting-html-perl_0.29-1_source + libirc-utils-perl_0.12-1_source + libircclient_1.3+dfsg1-3_source + libirclib-java_1.10-2_source + libirman_0.4.4-2_source + libiscsi_1.4.0-3_source + libiscwt-java_5.3.20100629-2_source + libisfreetype-java_5.3.20100629-3_source + libisnativec-java_5.3.20100629+fix-1_source + libisoburn_1.2.2-2_source + libisofs_1.2.2-1_source + libisrt-java_4.8.20100629-2_source + libitext-java_2.1.7-3+deb7u1_source + libitext1-java_1.4-5_source + libitext5-java_5.0.6+svn4804-1_source + libitl_0.7.0-3_source + libitl-gobject_0.2-1_source + libitpp_4.2-4_source + libixp_0.5-5_source + libj2ssh-java_0.2.9-3_source + libjaba-client-java_0+dfsg-1_source + libjackson-json-java_1.9.2-1_source + libjama_1.2.4-2_source + libjamon-java_2.7-3_source + libjaudiotagger-java_2.0.3-1_source + libjava-jdbc-clojure_0.2.2-1_source + libjavascript-beautifier-perl_0.17-1_source + libjavascript-minifier-perl_1.05-1_source + libjavascript-minifier-xs-perl_0.09-1_source + libjavascript-packer-perl_1.006003-1_source + libjavascript-rpc-perl_0.10-1.1_source + libjaxen-java_1.1.3-1_source + libjaxp1.3-java_1.3.05-2_source + libjazzy-java_0.5.2-1_source + libjbcrypt-java_0.3-3_source + libjboss-aop-java_2.0.1.GA-3_source + libjboss-cache1-java_1.4.1.SP14-1_source + libjboss-cache2-java_2.2.2.GA+ds1-1_source + libjboss-cache3-java_3.2.8.GA-1_source + libjboss-classloader-java_2.0.6.GA-2_source + libjboss-common-java_0.0+svn2938-3_source + libjboss-deployers-java_2.0.4.GA-2_source + libjboss-integration-java_5.0.3.GA-2_source + libjboss-managed-java_2.0.0.CR4+dak1-2_source + libjboss-marshalling-java_1.1.3.GA-3_source + libjboss-metadata-java_2.0.3.GA-1_source + libjboss-microcontainer-java_2.0.10.GA-2_source + libjboss-profiler-java_1.0.CR4-2_source + libjboss-reflect-java_2.0.3.GA-1_source + libjboss-remoting-java_2.5.3.SP1-1_source + libjboss-serialization-java_1.0.3.GA+dak1-3_source + libjboss-vfs-java_2.0.1.GA-2_source + libjboss-web-services-java_0.0+svn5660+dak2-3_source + libjboss-xml-binding-java_2.0.3.GA-2_source + libjbzip2-java_0.9.1-3_source + libjcalendar-java_1.3.3-3_source + libjcip-annotations-java_20060626-3_source + libjcode-perl_2.13-2_source + libjcode-pm-perl_2.06-1_source + libjcommon-java_1.0.16-2_source + libjconv_2.8-6_source + libjdbm-java_1.0-2_source + libjdepend-java_2.9-5_source + libjdo-api-java_2.2-1_source + libjdom1-java_1.1.2+dfsg-2_source + libje-perl_0.059-1_source + libjemmy2-java_2.3.1.1-2_source + libjena-iri-java_0.8-1_source + libjettison-java_1.2-3_source + libjfreechart-java_1.0.13-4_source + libjgoodies-animation-java_1.2.0-5_source + libjgoodies-binding-java_2.1.0-1_source + libjgoodies-common-java_1.3.0-2_source + libjgoodies-forms-java_1.3.0-2_source + libjgoodies-looks-java_2.5.0-2_source + libjgraph-java_5.12.4.2+dfsg-2_source + libjgrapht0.6-java_0.6.0-11_source + libjgrapht0.8-java_0.8.3-1_source + libjgraphx-java_1.4.1.0-3_source + libjgroups-java_2.12.2.Final-2_source + libjgroups2.6-java_2.6.15.GA-2_source + libjhlabs-filters-java_2.0.235-3_source + libjibx1.1-java_1.1.6a-3_source + libjibx1.2-java_1.2.3-2_source + libjifty-dbi-perl_0.74-1_source + libjifty-plugin-authentication-bitcard-perl_0.053-1_source + libjifty-plugin-authentication-cas-perl_1.00-1_source + libjifty-plugin-authentication-facebook-perl_0.90000-1_source + libjifty-plugin-authentication-ldap-perl_1.01-1_source + libjifty-plugin-authzldap-perl_0.90000-1_source + libjifty-plugin-chart-perl_1.01+dfsg-2_source + libjifty-plugin-comment-perl_1.00-2_source + libjifty-plugin-googlemap-perl_1.00-1_source + libjifty-plugin-oauth-perl_0.04-2_source + libjifty-plugin-openid-perl_1.02-1_source + libjifty-plugin-sitenews-perl_0.90000-1_source + libjifty-plugin-userpic-perl_0.90000-1_source + libjifty-plugin-wikitoolbar-perl_1.00-2_source + libjira-client-perl_0.37-1_source + libjlatexmath-java_0.9.7-1_source + libjlayer-java_1.0.1-2_source + libjlha-java_0.0.20050504-8_source + libjmac-java_1.74-6_source + libjna-java_3.2.7-4_source + libjna-posix-java_1.0.1-1_source + libjnr-posix-java_1.1.4~git1.8aa26268b-1_source + libjoda-time-java_2.1-2_source + libjogl-java_1.1.1+dak1-12_source + libjogl2-java_2.0-rc5-2_source + libjorbis-java_0.0.17-2_source + libjpedal-jbig2-java_20100117-1_source + libjpeg6b_6b1-3_source + libjpeg8_8d-1_source + libjpf-java_1.5.1+dfsg-4_source + libjpfcodegen-java_0.4+dfsg-4_source + libjrosetta-java_1.0.4-4_source + libjs-edit-area_0.8.2-1_source + libjs-extjs_3.0.3+dfsg0-1_source + libjs-swfobject_2.2+dfsg-1_source + libjs-swfupload_2.2.0.1+ds1-2_source + libjson-any-perl_1.28-1_source + libjson-java_2.3-2_source + libjson-perl_2.53-1_source + libjson-pp-perl_2.27200-2_source + libjson-rpc-perl_0.96-3_source + libjson-xs-perl_2.320-1_source + libjsoncpp_0.6.0~rc2-3_source + libjspeex-java_0.9.7-3_source + libjsr166y-java_0.1.20080107-2_source + libjsr305-java_0.1~+svn49-4_source + libjsr311-api-java_1.1.1-1_source + libjswingreader-java_0.3-1_source + libjsyntaxpane-java_0.9.5~r148-2_source + libjtds-java_1.2.5+dfsg-2_source + libjtype-java_0.1.1-1_source + libjxp-java_1.6.1-3_source + libkal_0.9.0-1_source + libkarma_0.1.2-2.3_source + libkate_0.4.1-1_source + libkdcraw_4:4.8.4-1_source + libkdeedu_4:4.8.4-1_source + libkdtree++_0.7.0-2_source + libkexiv2_4:4.8.4-1_source + libkibi_0.1-1_source + libkinosearch1-perl_1.00-1_source + libkiokudb-backend-dbi-perl_1.21-1_source + libkiokudb-perl_0.52-1_source + libkipi_4:4.8.4-1_source + libkmfl_0.9.8-1_source + libkml_1.3.0~r863-4.1_source + libkmlframework-java_0.0.20090718-1_source + libkohana2-php_2.3.4-2_source + libkohana3.1-php_3.1.4-2_source + libkohana3.2-php_3.2.0-2_source + libkqueue_1.0.4-2_source + libksane_4:4.8.4-1_source + libksba_1.2.0-2_source + libktoblzcheck_1.39-1_source + libktorrent_1.2.1-1_source + libkwargs-perl_0.01-1_source + libkwiki-cache-perl_0.11-2_source + libkwiki-perl_0.39-2_source + liblaf-plugin-java_1.0-2_source + liblaf-widget-java_4.3-2_source + liblarch_0.1.0-1_source + liblarch-gtk_0.1.0-1_source + liblas_1.2.1-5_source + liblastfm_0.4.0~git20090710-2_source + liblastfm-java_1:0.1.0-2_source + liblatex-decode-perl_0.03-1_source + liblatex-driver-perl_0.10-1_source + liblatex-encode-perl_0.03-1_source + liblatex-table-perl_1.0.6-1_source + liblatex-tom-perl_1.00-1_source + liblayout_0.2.10-2_source + liblayout-manager-perl_0.34-1_source + liblchown-perl_1.01-1_source + liblexical-persistence-perl_0.98-1_source + liblexical-sealrequirehints-perl_0.007-1_source + liblib-abs-perl_0.92-3_source + liblibrary-callnumber-lc-perl_0.22-1_source + liblicense_0.8.1-3_source + liblinear_1.8+dfsg-1_source + liblinebreak2_2.1-1_source + liblingua-de-ascii-perl_0.11-1_source + liblingua-en-inflect-number-perl_1.1-5_source + liblingua-en-inflect-perl_1.894-1_source + liblingua-en-inflect-phrase-perl_0.12-1_source + liblingua-en-namecase-perl_1.15-1_source + liblingua-en-nameparse-perl_1.30-1_source + liblingua-en-numbers-ordinate-perl_1.02-3_source + liblingua-en-tagger-perl_0.18-1_source + liblingua-en-words2nums-perl_0.18_source + liblingua-es-numeros-perl_0.09-1_source + liblingua-identify-perl_0.51-1_source + liblingua-ispell-perl_0.07-5_source + liblingua-preferred-perl_0.2.4-3_source + liblingua-pt-stemmer-perl_0.01-3_source + liblingua-stem-perl_0.84-1_source + liblingua-stem-snowball-da-perl_1.01-4_source + liblingua-stem-snowball-perl_0.952-2_source + liblingua-stopwords-perl_0.09-1_source + liblinux-distribution-packages-perl_0.05-2_source + liblinux-distribution-perl_0.21-1_source + liblinux-dvb-perl_1.01-2_source + liblinux-inotify2-perl_1:1.22-0.2_source + liblinux-kernelsort-perl_0.01-2_source + liblinux-lvm-perl_0.16-1_source + liblinux-usermod-perl_0.69-1_source + liblip_2.0.0-1.1_source + liblist-allutils-perl_0.03-1_source + liblist-compare-perl_0.37-2_source + liblist-maker-perl_0.0.5-1_source + liblist-moreutils-perl_0.33-1_source + liblist-utilsby-perl_0.09-1_source + liblivejournal-perl_1.3-5_source + liblivemedia_2012.05.17-1_source + liblo_0.26~repack-7_source + libload-perl_0.23-1_source + libloader_1.1.6.dfsg-4_source + liblocal-lib-perl_1.008004-2_source + liblocale-currency-format-perl_1.30-1_source + liblocale-gettext-perl_1.05-7_source + liblocale-hebrew-perl_1.04-1_source + liblocale-maketext-fuzzy-perl_0.11-1_source + liblocale-maketext-gettext-perl_1.28-1_source + liblocale-maketext-lexicon-perl_0.91-1_source + liblocale-msgfmt-perl_0.15-1_source + liblocale-po-perl_0.21-1_source + liblocale-subcountry-perl_1.50-1_source + liblocale-us-perl_2.112150-1_source + liblocales-perl_0.26-1_source + liblockfile_1.09-5_source + liblockfile-simple-perl_0.208-1_source + liblog-agent-logger-perl_0.1.1-6_source + liblog-agent-perl_0.307-2_source + liblog-agent-rotate-perl_0.104-2_source + liblog-any-adapter-dispatch-perl_0.06-1_source + liblog-any-adapter-perl_0.07-1_source + liblog-any-perl_0.11-1_source + liblog-contextual-perl_0.00304-1_source + liblog-dispatch-array-perl_1.001-1_source + liblog-dispatch-config-perl_1.04-1_source + liblog-dispatch-configurator-any-perl_1.110690-1_source + liblog-dispatch-filerotate-perl_1.19-1_source + liblog-dispatch-perl_2.32-1_source + liblog-dispatchouli-perl_2.005-1_source + liblog-handler-perl_0.75-2_source + liblog-log4perl-perl_1.29-1_source + liblog-loglite-perl_0.82-7_source + liblog-report-perl_0.94-1_source + liblog-trace-perl_1.070-2_source + liblog-tracemessages-perl_1.4-2_source + liblog4ada_1.2-3_source + liblogfile-rotate-perl_1.04-4_source + liblogger-syslog-perl_1.1-3_source + liblognorm_0.3.4-1_source + libloki_0.1.7-3_source + liblouis_2.4.1-1_source + liblouisutdml_2.2.0-1_source + liblouisxml_2.4.0-3_source + liblqr_0.4.1-2_source + liblrdf_0.4.0-5_source + liblscp_0.5.6-6_source + libltcsmpte_0.4.4-1_source + liblucene-queryparser-perl_1.04-2_source + liblunar_2.0.1-2.2_source + liblwp-authen-negotiate-perl_0.08-1_source + liblwp-authen-oauth-perl_1.01-1_source + liblwp-authen-wsse-perl_0.05-2_source + liblwp-mediatypes-perl_6.02-1_source + liblwp-online-perl_1.08-1_source + liblwp-protocol-http-socketunix-perl_0.02-2_source + liblwp-protocol-https-perl_6.03-1_source + liblwp-protocol-psgi-perl_0.02-1_source + liblwp-protocol-socks-perl_1.6-1_source + liblwp-useragent-determined-perl_1.06-1_source + liblwpx-paranoidagent-perl_1.07-1_source + libm4ri_0.0.20080521-2_source + libmaa_1.3.1-1_source + libmad_0.15.1b-7_source + libmail-box-perl_2.105-1_source + libmail-bulkmail-perl_3.12-4_source + libmail-cclient-perl_1.12-11_source + libmail-checkuser-perl_1.21-2_source + libmail-deliverystatus-bounceparser-perl_1.531-1_source + libmail-dkim-perl_0.39-1_source + libmail-field-received-perl_0.26-1_source + libmail-gnupg-perl_0.17-2_source + libmail-imapclient-perl_3.31-2_source + libmail-imaptalk-perl_2.01-1_source + libmail-listdetector-perl_1.03+dfsg-1_source + libmail-mbox-messageparser-perl_1.5002-2_source + libmail-mboxparser-perl_0.55-3_source + libmail-milter-perl_0.06-1.1_source + libmail-pop3client-perl_2.17-1_source + libmail-rfc822-address-perl_0.3-4_source + libmail-sendeasy-perl_1.2-2_source + libmail-sendmail-perl_0.79.16-1_source + libmail-srs-perl_0.31-5_source + libmail-thread-perl_2.55-1_source + libmail-verify-perl_0.02-5_source + libmail-verp-perl_0.06+dfsg-1_source + libmailtools-perl_2.09-1_source + libmakefile-dom-perl_0.006-1_source + libmakefile-parser-perl_0.215-1_source + libmarc-charset-perl_1.33-1_source + libmarc-crosswalk-dublincore-perl_0.02-1_source + libmarc-lint-perl_1.44-1_source + libmarc-perl_1.07-5_source + libmarc-record-perl_2.0.3-1_source + libmarc-xml-perl_0.93-1_source + libmarkdown-php_1.0.1m-1_source + libmason-perl_2.19-2_source + libmason-plugin-cache-perl_0.04-1_source + libmason-plugin-htmlfilters-perl_0.03-1_source + libmason-plugin-routersimple-perl_0.05-1_source + libmasonx-interp-withcallbacks-perl_1.19-1_source + libmasonx-processdir-perl_0.02-1_source + libmasonx-request-withapachesession-perl_0.30-3.1_source + libmatchbox_1.9-osso8-3_source + libmath++_0.0.4-4_source + libmath-algebra-symbols-perl_1.21-1_source + libmath-base36-perl_0.09-1_source + libmath-base85-perl_0.2+dfsg-1_source + libmath-basecalc-perl_1.016-1_source + libmath-basecnv-perl_1.8.B59BrZX-1_source + libmath-bezier-perl_0.01-1_source + libmath-bigint-gmp-perl_1.37-1_source + libmath-bigint-perl_1.997-1_source + libmath-calc-units-perl_1.07-1_source + libmath-calculus-differentiate-perl_0.3-1_source + libmath-calculus-expression-perl_0.2.2.ds-1_source + libmath-calculus-newtonraphson-perl_0.1-1_source + libmath-combinatorics-perl_0.09-4_source + libmath-complex-perl_1.59-1_source + libmath-derivative-perl_0.01-6_source + libmath-fibonacci-perl_1.5-4_source + libmath-gmp-perl_2.06-1_source + libmath-gradient-perl_0.04-1_source + libmath-nocarry-perl_1.11-2_source + libmath-numbercruncher-perl_5.00-8_source + libmath-polygon-perl_1.02-1_source + libmath-random-isaac-perl_1.003-1_source + libmath-random-isaac-xs-perl_1.003-1_source + libmath-random-mt-perl_1.15-2_source + libmath-random-oo-perl_0.21-1_source + libmath-random-tt800-perl_1.01-2_source + libmath-randomorg-perl_0.04-3_source + libmath-round-perl_0.06-3_source + libmath-sparsematrix-perl_0.03-1_source + libmath-sparsevector-perl_0.04-1_source + libmath-spline-perl_0.01-4_source + libmath-symbolic-perl_0.606-1_source + libmath-tamuanova-perl_1.0.2-1_source + libmath-vec-perl_1.01-1_source + libmath-vecstat-perl_0.08-1_source + libmath-vector-real-kdtree-perl_0.04-1_source + libmath-vector-real-perl_0.09-1_source + libmatheval_1.1.8-1_source + libmatio_1.3.4-4_source + libmatroska_1.3.0-2_source + libmatthew-java_0.7.3-1_source + libmcrypt_2.5.8-3.1_source + libmdsp_0.11-10_source + libmecab-java_0.99.3-1_source + libmecab-perl_0.99.3-1_source + libmediainfo_0.7.58-1_source + libmediawiki-api-perl_0.39-1_source + libmemcache_1.4.0.rc2-1_source + libmemcached_1.0.8-1_source + libmemoize-expirelru-perl_0.55-1_source + libmemoize-memcached-perl_0.03-2_source + libmetadata-extractor-java_2.3.1+dfsg-2_source + libmethod-alias-perl_1.03-1_source + libmethod-autoload-perl_0.02-2_source + libmethod-signatures-perl_20120523-1_source + libmethod-signatures-simple-perl_1.02-1_source + libmicroba-java_1:0.4.4.3-4_source + libmicrohttpd_0.9.20-1+deb7u1_source + libmidi-perl_0.80-3_source + libmiglayout-java_3.7.4-2_source + libmikmod_3.1.12-5_source + libmime-base32-perl_1.02a-1_source + libmime-base64-urlsafe-perl_0.01-1_source + libmime-charset-perl_1.009.2-1_source + libmime-encwords-perl_1.012.4-1_source + libmime-explode-perl_0.39-2_source + libmime-lite-html-perl_1.23-1.1_source + libmime-lite-perl_3.028-1_source + libmime-tools-perl_5.503-1_source + libmime-types-perl_1.35-1_source + libmimedir_0.5.1-4_source + libmimedir-gnome_0.4.2-5_source + libmimic_1.0.4-2.1_source + libmixin-extrafields-param-perl_0.011-2_source + libmixin-extrafields-perl_0.008-2_source + libmixin-linewise-perl_0.003-1_source + libmkdoc-xml-perl_0.75-3_source + libmkv_0.6.5.1-1_source + libmldbm-perl_2.04-1_source + libmldbm-sync-perl_0.30-3_source + libmlx4_1.0.4-1_source + libmms_0.6.2-3_source + libmng_1.0.10-3_source + libmnl_1.0.3-3_source + libmocked-perl_0.09-4_source + libmodbus_3.0.3-1_source + libmodelfile_0.1.92-4_source + libmodem-vgetty-perl_0.03-1_source + libmodern-perl-perl_1.20120521-1_source + libmodplug_1:0.8.8.4-3+deb7u1+git20130828_source + libmodule-build-perl_0.400100-2_source + libmodule-corelist-perl_2.68-1_source + libmodule-cpanfile-perl_0.9007-1_source + libmodule-cpants-analyse-perl_0.86+dfsg-1_source + libmodule-depends-perl_0.16-1_source + libmodule-extract-perl_0.01-1_source + libmodule-extract-use-perl_1.01-1_source + libmodule-extractuse-perl_0.27-1_source + libmodule-find-perl_0.11-1_source + libmodule-implementation-perl_0.06-1_source + libmodule-info-perl_0.32-1_source + libmodule-inspector-perl_1.05-1_source + libmodule-install-authorrequires-perl_0.02-1_source + libmodule-install-autolicense-perl_0.08-1_source + libmodule-install-automanifest-perl_0.003-1_source + libmodule-install-doap-perl_0.004-2_source + libmodule-install-doapchangesets-perl_0.202-1_source + libmodule-install-manifestskip-perl_0.20-1_source + libmodule-install-perl_1.06-1_source + libmodule-install-rdf-perl_0.004-1_source + libmodule-install-readmefrompod-perl_0.18-1_source + libmodule-install-trustmetayml-perl_0.001-1_source + libmodule-install-xsutil-perl_0.43-1_source + libmodule-load-conditional-perl_0.50-1_source + libmodule-manifest-perl_0.07-1_source + libmodule-manifest-skip-perl_0.16-1_source + libmodule-math-depends-perl_0.02-1_source + libmodule-metadata-perl_1.000009-1+deb7u1_source + libmodule-optional-perl_0.03-1_source + libmodule-package-perl_0.30-1_source + libmodule-packaged-perl_0.86-3_source + libmodule-pluggable-fast-perl_0.19-1_source + libmodule-pluggable-ordered-perl_1.5-1_source + libmodule-refresh-perl_0.17-1_source + libmodule-runtime-perl_0.013-1_source + libmodule-scandeps-perl_1.08-1_source + libmodule-signature-perl_0.68-1+deb7u1_source + libmodule-starter-pbp-perl_0.0.3-1_source + libmodule-starter-perl_1.580+dfsg-1_source + libmodule-starter-plugin-cgiapp-perl_0.42-1_source + libmodule-starter-plugin-simplestore-perl_0.144-1_source + libmodule-starter-plugin-tt2-perl_0.125-1_source + libmodule-starter-smart-perl_0.0.4-1_source + libmodule-used-perl_1.2.0-1_source + libmodule-util-perl_1.08-1_source + libmodule-versions-report-perl_1.06-1_source + libmoe_1.5.8-1_source + libmojo-server-fastcgi-perl_0.2-1_source + libmojolicious-perl_2.98+dfsg-2_source + libmojolicious-plugin-basicauth-perl_0.06-1_source + libmojomojo-perl_1.05+dfsg-3_source + libmongo-client_0.1.5-1+deb7u1_source + libmongodb-perl_0.45-1_source + libmonitoring-availability-perl_0.38-1_source + libmonitoring-livestatus-perl_0.74-1_source + libmonkey-patch-perl_0.03-1_source + libmoo-perl_0.091011-1_source + libmoose-autobox-perl_0.12-1_source + libmoose-perl_2.0603-1_source + libmoosex-aliases-perl_0.10-1_source + libmoosex-app-cmd-perl_0.07-1_source + libmoosex-async-perl_0.07-1_source + libmoosex-attribute-chained-perl_1.0.1-1_source + libmoosex-attributehelpers-perl_0.23-1_source + libmoosex-attributeshortcuts-perl_0.010-1_source + libmoosex-blessed-reconstruct-perl_0.04-2_source + libmoosex-clone-perl_0.05-1_source + libmoosex-compiletime-traits-perl_1.102570-1_source + libmoosex-configfromfile-perl_0.04-1_source + libmoosex-daemonize-perl_0.15-1_source + libmoosex-declare-perl_0.35-1_source + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_source + libmoosex-followpbp-perl_0.05-1_source + libmoosex-getopt-perl_0.45-1_source + libmoosex-has-sugar-perl_0.05070420-1_source + libmoosex-hasdefaults-perl_0.03-1_source + libmoosex-insideout-perl_0.106-2_source + libmoosex-lazyrequire-perl_0.07-1_source + libmoosex-log-log4perl-perl_0.46-1_source + libmoosex-markasmethods-perl_0.15-1_source + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_source + libmoosex-method-signatures-perl_0.43-1_source + libmoosex-methodattributes-perl_0.27-1_source + libmoosex-multiinitarg-perl_0.01-1_source + libmoosex-multimethods-perl_0.10-1_source + libmoosex-nonmoose-perl_0.22-1_source + libmoosex-object-pluggable-perl_0.0011-2_source + libmoosex-oneargnew-perl_0.002-1_source + libmoosex-param-perl_0.02-1_source + libmoosex-params-validate-perl_0.16-1_source + libmoosex-poe-perl_0.215-1_source + libmoosex-relatedclassroles-perl_0.004-1_source + libmoosex-role-parameterized-perl_1.00-1_source + libmoosex-role-timer-perl_0.03-1_source + libmoosex-role-withoverloading-perl_0.09-1_source + libmoosex-semiaffordanceaccessor-perl_0.09-1_source + libmoosex-setonce-perl_0.200001-1_source + libmoosex-simpleconfig-perl_0.09-1_source + libmoosex-singleton-perl_0.29-1_source + libmoosex-storage-perl_0.31-1_source + libmoosex-strictconstructor-perl_0.19-1_source + libmoosex-traits-perl_0.11-2_source + libmoosex-traits-pluggable-perl_0.10-2_source + libmoosex-types-common-perl_0.001008-1_source + libmoosex-types-datetime-morecoercions-perl_0.09-1_source + libmoosex-types-datetime-perl_0.07-1_source + libmoosex-types-iso8601-perl_0.11-1_source + libmoosex-types-json-perl_0.02-1_source + libmoosex-types-loadableclass-perl_0.008-1_source + libmoosex-types-netaddr-ip-perl_0.04-1_source + libmoosex-types-path-class-perl_0.05-2_source + libmoosex-types-perl_0.35-1_source + libmoosex-types-perl-perl_0.101341-1_source + libmoosex-types-set-object-perl_0.03-1_source + libmoosex-types-structured-perl_0.28-1_source + libmoosex-types-varianttable-perl_0.04-2_source + libmoosex-undeftolerant-perl_0.17-1_source + libmoosex-yaml-perl_0.04-1_source + libmouse-perl_0.99-1_source + libmousex-getopt-perl_0.34-1_source + libmousex-nativetraits-perl_1.07-1_source + libmousex-strictconstructor-perl_0.02-1_source + libmousex-types-path-class-perl_0.07-1_source + libmousex-types-perl_0.06-1_source + libmowgli_1.0.0-1_source + libmozilla-ldap-perl_1.5.3-1_source + libmp3-info-perl_1.24-1_source + libmp3-tag-perl_1.13-1_source + libmp3spi-java_1.9.5-1_source + libmp3splt_0.7.2-2_source + libmp4-info-perl_1.13-1_source + libmpc_2:0.1~r459-4_source + libmpd_0.20.0-1.1_source + libmpdclient_2.3-1_source + libmpeg3_1.5.4-5_source + libmpikmeans_1.5-1_source + libmqdb-perl_0.954-1_source + libmr-tarantool-perl_0.0.24-1_source + libmro-compat-perl_0.11-1_source + libmrss_0.19.2-3_source + libmsgcat-perl_1.03-5_source + libmsn_4.2-2_source + libmsoffice-word-html-writer-perl_1.01-1_source + libmsv_0.0.0-1_source + libmthca_1.0.6-1_source + libmtp_1.1.3-35-g0ece104-5_source + libmultidimensional-perl_0.010-1_source + libmusicbrainz-discid-perl_0.03-1_source + libmusicbrainz3_3.0.2-2.1_source + libmusicbrainz5_5.0.1-2_source + libmx4j-java_3.0.2-12_source + libmysql-diff-perl_0.43-2_source + libnagios-object-perl_0.21.16-1_source + libnagios-plugin-perl_0.36-1_source + libnamespace-autoclean-perl_0.13-1_source + libnamespace-clean-perl_0.23-1_source + libnanoxml2-java_2.2.3.dfsg-4_source + libnatpmp_20110808-3_source + libnb-javaparser-java_7.0.1-1_source + libnbio_0.30-1_source + libncursesada_5.9.20110404-7_source + libneedle-extras-ruby_1.0.0-2_source + libneedle-ruby_1.3.0-1_source + libnes_1.1.3-1_source + libnet_1.1.4-2.1_source + libnet-address-ip-local-perl_0.1.2-2_source + libnet-akamai-perl_0.14-1_source + libnet-akismet-perl_0.05-1_source + libnet-amazon-ec2-perl_0.18-1_source + libnet-amazon-perl_0.61-1_source + libnet-amazon-s3-perl_0.56-1_source + libnet-amazon-s3-tools-perl_0.08-1_source + libnet-appliance-session-perl_3.121640-1_source + libnet-arp-perl_1.0.4-1_source + libnet-bluetooth-perl_0.40-2_source + libnet-bonjour-perl_0.96-1_source + libnet-cidr-lite-perl_0.21-1_source + libnet-cidr-perl_0.15-1_source + libnet-citadel-perl_0.02-1_source + libnet-cli-interact-perl_1.121640-1_source + libnet-cups-perl_0.60-1_source + libnet-daap-dmap-perl_1.27-1_source + libnet-daemon-perl_0.48-1_source + libnet-dbus-glib-perl_0.33.0-1_source + libnet-dbus-perl_1.0.0-1_source + libnet-dhcp-perl_0.690+dfsg-1_source + libnet-dns-async-perl_1.07-1_source + libnet-dns-perl_0.66-2_source + libnet-dns-resolver-programmable-perl_0.003-2_source + libnet-dns-sec-perl_0.16-2_source + libnet-domain-tld-perl_1.69-1_source + libnet-dpap-client-perl_0.26-2_source + libnet-dri-perl_0.96-1_source + libnet-dropbox-api-perl_1.8-1_source + libnet-easytcp-perl_0.26-2_source + libnet-epp-perl_0.19-1_source + libnet-finger-perl_1.06-6_source + libnet-frame-perl_1.09-1_source + libnet-freedb-perl_0.08-2_source + libnet-github-perl_0.46-1_source + libnet-google-authsub-perl_0.5-1_source + libnet-google-code-perl_0.19-2_source + libnet-gpsd3-perl_0.18-1_source + libnet-hiveminder-perl_0.08-1_source + libnet-hotline-perl_0.83-2_source + libnet-http-perl_6.03-2_source + libnet-https-any-perl_0.10-3_source + libnet-https-nb-perl_0.12-1_source + libnet-httpserver-perl_1.1.1-1_source + libnet-ident-perl_1.23-1_source + libnet-ifconfig-wrapper-perl_0.11-1_source + libnet-imap-client-perl_0.9501-1_source + libnet-imap-simple-perl_1.2030-1_source + libnet-imap-simple-ssl-perl_1.3-3_source + libnet-inet6glue-perl_0.5-1_source + libnet-ip-minimal-perl_0.02-1_source + libnet-ip-perl_1.25-3_source + libnet-iptrie-perl_0.7-1_source + libnet-ipv6addr-perl_0.2.dfsg.1-3_source + libnet-irc-perl_0.75-8_source + libnet-irc-ruby_0.14-5.1_source + libnet-irr-perl_0.08-1_source + libnet-jabber-bot-perl_2.1.5-1_source + libnet-jabber-loudmouth-perl_0.07-2_source + libnet-jabber-perl_2.0-5_source + libnet-jifty-perl_0.14-1_source + libnet-ldap-filterbuilder-perl_1.0004-1_source + libnet-ldap-perl_1:0.4400-1_source + libnet-ldap-server-perl_0.4-2_source + libnet-ldapapi-perl_3.0.3-7_source + libnet-libdnet-perl_0.96-1_source + libnet-libidn-perl_0.12.ds-1_source + libnet-mac-perl_2.103622-1_source + libnet-mac-vendor-perl_1.18-2+deb7u1_source + libnet-managesieve-perl_0.10-1_source + libnet-nbname-perl_0.26-1_source + libnet-netmask-perl_1.9016-1_source + libnet-netrc-ruby_0.2.2-1_source + libnet-nis-perl_0.43-1_source + libnet-nslookup-perl_2.00-1_source + libnet-ntp-perl_1.3-1_source + libnet-oauth-perl_0.28-1_source + libnet-openid-common-perl_1.14-1_source + libnet-openid-consumer-perl_1.13-1_source + libnet-openid-server-perl_1.09-1_source + libnet-opensrs-perl_0.06-1_source + libnet-openssh-compat-perl_0.06-1_source + libnet-openssh-perl_0.57-1_source + libnet-patricia-perl_1.19-1_source + libnet-pcap-perl_0.16-3_source + libnet-ph-perl_2.21-7_source + libnet-ping-external-perl_0.13-1_source + libnet-proxy-perl_0.12-5_source + libnet-rawip-perl_0.25-1_source + libnet-rblclient-perl_0.5-2_source + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_source + libnet-rendezvous-publish-perl_0.04-2_source + libnet-scp-expect-perl_0.16-1_source + libnet-scp-perl_0.08-1_source + libnet-server-mail-perl_0.17-1_source + libnet-server-perl_2.006-1+deb7u1_source + libnet-sftp-foreign-perl_1.73+dfsg-1_source + libnet-sieve-perl_0.09-1_source + libnet-sieve-script-perl_0.08-1_source + libnet-sip-perl_0.66-1_source + libnet-smpp-perl_1.19-1_source + libnet-smtp-server-perl_1.1-4_source + libnet-smtp-ssl-perl_1.01-3_source + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_source + libnet-smtp-tls-perl_0.12-1_source + libnet-smtpauth-perl_0.08-2_source + libnet-snmp-perl_6.0.1-2_source + libnet-snpp-perl_1.17-3_source + libnet-socks-perl_0.03-13_source + libnet-ssh-perl_0.09-1_source + libnet-ssh2-perl_0.44-1_source + libnet-ssleay-perl_1.48-1_source + libnet-sslglue-perl_1.01-1_source + libnet-stomp-perl_0.45-1_source + libnet-subnets-perl_1.0-1_source + libnet-tclink-perl_3.4.0-5_source + libnet-telnet-perl_3.03-3_source + libnet-tftp-perl_0.19-1_source + libnet-tftpd-perl_0.04-2_source + libnet-trac-perl_0.16-1_source + libnet-traceroute-perl_1.13-1_source + libnet-traceroute-pureperl-perl_0.10-1_source + libnet-upnp-perl_1.4.2-1_source + libnet-vnc-perl_0.40-1_source + libnet-whois-parser-perl_0.07-1_source + libnet-whois-raw-perl_2.31-1_source + libnet-whois-ripe-perl_1.23-1_source + libnet-write-perl_1.05-1_source + libnet-xmpp-perl_1.02-3_source + libnet-xwhois-perl_0.90-3_source + libnet-z3950-simple2zoom-perl_1.04-1_source + libnet-z3950-simpleserver-perl_1.15-1_source + libnet-z3950-zoom-perl_1.26-1_source + libnetaddr-ip-perl_4.062+dfsg-1_source + libnetapp-perl_500.002-1_source + libnetdot-client-rest-perl_1.02-1_source + libnetfilter-conntrack_1.0.1-1_source + libnetfilter-cttimeout_1.0.0-1_source + libnetfilter-log_1.0.0-1_source + libnetfilter-queue_0.0.17-1_source + libnetpacket-perl_1.3.0-1_source + libnetsds-kannel-perl_1.300-5_source + libnetsds-perl_1.301-2_source + libnetsds-util-perl_1.044-2_source + libnetwork-ipv4addr-perl_0.10.ds-2_source + libnetx-java_0.5-2_source + libnetxap-perl_0.02-7_source + libnews-article-nocem-perl_0.08-1_source + libnews-article-perl_1.27-7_source + libnews-newsrc-perl_1.09-3_source + libnews-nntpclient-perl_0.37-8_source + libnews-scan-perl_0.53-3_source + libnfnetlink_1.0.0-1.1_source + libnfo_1.0.1-1_source + libnfs_1.3.0-2_source + libnfsidmap_0.25-4_source + libnice_0.1.2-1_source + libnids_1.23-2_source + libnih_1.0.3-4.1_source + libnjb_2.2.7~dfsg0-3_source + libnl_1.1-7_source + libnl3_3.2.7-4_source + libnmap-parser-perl_1.05-2_source + libnoise_1.0.0+nmu1_source + libnotify_0.7.5-1_source + libnova_0.14.0-2_source + libnsbmp_0.0.1-1.1_source + libnsgif_0.0.1-1.1_source + libnss-cache_0.10.2-1_source + libnss-db_2.2.3pre1-4_source + libnss-extrausers_0.6-3_source + libnss-gw-name_0.2.1-1_source + libnss-ldap_264-2.5_source + libnss-lwres_0.93-7_source + libnss-myhostname_0.3-5~deb7u1_source + libnss-mysql-bg_1.5-3_source + libnss-pgsql_1.4.0debian-5_source + libntlm_1.2-1_source + libnumber-bytes-human-perl_0.07-1_source + libnumber-compare-perl_0.03-1_source + libnumber-format-perl_1.73-1_source + libnumber-fraction-perl_1.14-1_source + libnumber-range-perl_0.10-1_source + libnumber-recordlocator-perl_0.005-1_source + libnxml_0.18.3-4_source + libnzb_0.0.20050629-6.1_source + liboauth_0.9.4-3.1_source + liboauth-php_0~svn622-1_source + libobject-authority-perl_0.004-1_source + libobject-declare-perl_0.22-2_source + libobject-destroyer-perl_2.00-1_source + libobject-event-perl_1.230-1_source + libobject-id-perl_0.1.2-1_source + libobject-insideout-perl_3.87-1_source + libobject-multitype-perl_0.05-3_source + libobject-pluggable-perl_1.29-1_source + libobject-realize-later-perl_0.18-2_source + libobject-role-perl_0.001-1_source + libobject-signature-perl_1.07-1_source + libobject-tiny-perl_1.06-1_source + libocas_0.93-1_source + libofa_0.9.3-5_source + libofetion_2.2.2-1_source + libofx_1:0.9.4-2.1_source + libogg_1.3.0-4_source + libogg-vorbis-decoder-perl_0.9-1_source + libogg-vorbis-header-pureperl-perl_1.0-3_source + liboggplay_0.2.1~git20091227-1.2_source + liboggz_1.1.1-1_source + liboglappth_1.0.0-2_source + libogre-perl_0.50-2_source + liboil_0.3.17-2_source + libois-perl_0.05-3_source + libole-storage-lite-perl_0.19-1_source + libomxalsa_0.1-2_source + libomxcamera_0.1-2_source + libomxfbdevsink_0.1-2_source + libomxil-bellagio_0.9.3-1_source + libomxmad_0.1-1_source + libomxvideosrc_0.1-1_source + libomxvorbis_0.1-3_source + libomxxvideo_0.1-2_source + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_source + libonemind-commons-java-java_1.5.5-4_source + libonig_5.9.1-1_source + liboobs_3.0.0-1_source + liboop_1.0-9_source + libopengl-perl_0.66+dfsg-1_source + libopengl-xscreensaver-perl_0.04-1_source + libopenobex_1.5-2_source + libopenoffice-oodoc-perl_2.125-2_source + libopenraw_0.0.9-3_source + libopenusb_1.1.0-2_source + liboping_1.6.2-1_source + libopkele_2.0.4-5.3_source + liboptions-java_0.0.20120113-1_source + liborigin_20080225-2.1_source + liborigin2_2:20110117-1_source + liborlite-migrate-perl_1.10-1_source + liborlite-mirror-perl_1.23-2_source + liborlite-perl_1.97-1_source + liborlite-statistics-perl_0.03-1_source + liboro-java_2.0.8a-8_source + libosinfo_0.1.1-1_source + libosip2_3.6.0-4_source + libosl_0.5.0-1_source + libosm-gary68-perl_0.0~svn26727-1_source + libotf_0.9.12-2_source + libotr_3.2.1-1+deb7u1_source + libouch-perl_0.0401-1_source + libowfat_0.28-6_source + libowl-directsemantics-perl_0.001-1_source + liboxford-calendar-perl_2.07-1_source + libp11_0.2.8-2_source + libpackage-deprecationmanager-perl_0.13-1_source + libpackage-new-perl_0.07-1_source + libpackage-pkg-perl_0.0020-1_source + libpackage-stash-perl_0.33-1_source + libpackage-stash-xs-perl_0.24-1_source + libpadre-plugin-autoformat-perl_1.22-5_source + libpadre-plugin-datawalker-perl_0.04-2_source + libpadre-plugin-git-perl_0.03-2_source + libpadre-plugin-moose-perl_0.21-2_source + libpadre-plugin-parsertool-perl_0.01-1_source + libpadre-plugin-pdl-perl_0.05-2_source + libpadre-plugin-perlcritic-perl_0.12-2_source + libpadre-plugin-perltidy-perl_0.21-1_source + libpadre-plugin-snippet-perl_0.01-1_source + libpadre-plugin-spellcheck-perl_1.29-1_source + libpadre-plugin-svn-perl_0.05-1_source + libpadre-plugin-yaml-perl_0.06-1_source + libpadwalker-perl_1.94-1_source + libpal-java_1.5.1-2_source + libpalm-perl_1:1.012-1_source + libpam-abl_0.4.3-1_source + libpam-afs-session_2.5-2_source + libpam-alreadyloggedin_0.3-4_source + libpam-blue_0.9.0-3_source + libpam-ccreds_10-5_source + libpam-chroot_0.9-4.1_source + libpam-encfs_0.1.4.4-6_source + libpam-foreground_0.7_source + libpam-krb5_4.6-1_source + libpam-ldap_184-8.6_source + libpam-mklocaluser_0.8~deb7u1_source + libpam-mount_2.14~git+d1d6f871-1_source + libpam-pwdfile_0.99-5_source + libpam-radius-auth_1.3.16-4.4_source + libpam-script_1.1.5-1_source + libpam-ssh_1.92-15_source + libpam-tacplus_1.3.6-1_source + libpam-unix2_1:2.4.1-6_source + libpam-usb_0.5.0-4_source + libpam4j_1.4-2_source + libpango-perl_1.222-1_source + libpano13_2.9.18+dfsg-5_source + libpaper_1.1.24+nmu2_source + libpar-dist-perl_0.48-1_source + libpar-packer-perl_1.012-1_source + libpar-perl_1.005-1_source + libpar2_0.2.1-1_source + libparallel-forkmanager-perl_0.7.5-2_source + libparallel-iterator-perl_1.00-1_source + libparams-callbackrequest-perl_1.20-1_source + libparams-classify-perl_0.013-4_source + libparams-coerce-perl_0.14-1_source + libparams-util-perl_1.07-1_source + libparams-validate-perl_1.06-1_source + libparanoid-perl_0.34-1_source + libparse-cpan-meta-perl_1.4404-1_source + libparse-cpan-packages-perl_2.35-1_source + libparse-debcontrol-perl_2.005-3_source + libparse-debian-packages-perl_0.03-1_source + libparse-debianchangelog-perl_1.2.0-1_source + libparse-dia-sql-perl_0.20-1_source + libparse-dmidecode-perl_0.03-1_source + libparse-edid-perl_1.0.1-1_source + libparse-errorstring-perl-perl_0.15-1_source + libparse-exuberantctags-perl_1.01-1_source + libparse-fixedlength-perl_5.37-1_source + libparse-http-useragent-perl_0.35-1_source + libparse-mediawikidump-perl_1.0.6-1_source + libparse-method-signatures-perl_1.003014-1_source + libparse-plainconfig-perl_2.06-1_source + libparse-recdescent-perl_1.967009+dfsg-1_source + libparse-syslog-perl_1.10-2_source + libparse-win32registry-perl_1.0-1_source + libparse-yapp-perl_1.05-12_source + libparser++_0.2.3-2_source + libpasswd-unix-perl_0.621-1_source + libpath-class-file-stat-perl_0.03-1_source + libpath-class-perl_0.26-1_source + libpath-dispatcher-declarative-perl_0.03-1_source + libpath-dispatcher-perl_1.04-1_source + libpcap_1.3.0-1_source + libpcapnav_0.8-1_source + libpciaccess_0.13.1-2_source + libpcl1_1.6-1_source + libpcre++_0.9.5-5.1_source + libpdf-api2-perl_2.019-1_source + libpdf-api2-simple-perl_1.1.4u-3_source + libpdf-create-perl_1.06-1_source + libpdf-fdf-simple-perl_0.10-1_source + libpdf-report-perl_1.33-3_source + libpdf-reuse-barcode-perl_0.05-1_source + libpdf-reuse-perl_0.35-2_source + libpdf-table-perl_0.9.5-1_source + libpdfbox-java_1:1.7.0+dfsg-4_source + libpdfrenderer-java_0.9.0-1_source + libpdl-io-hdf5-perl_0.63-3_source + libpdl-netcdf-perl_4.16-3_source + libpdl-stats-perl_0.6.2-1_source + libpeas_1.4.0-2_source + libperl-apireference-perl_0.09-1_source + libperl-critic-perl_1.117-2_source + libperl-destruct-level-perl_0.02-1_source + libperl-metrics-simple-perl_0.15-1_source + libperl-minimumversion-perl_1.28-1_source + libperl-prereqscanner-perl_1.012-1_source + libperl-version-perl_1.010-1_source + libperl4-corelibs-perl_0.003-1_source + libperl5i-perl_2.9.1-2_source + libperl6-caller-perl_0.100-1_source + libperl6-export-attrs-perl_0.0.3-1_source + libperl6-export-perl_0.07-10_source + libperl6-form-perl_0.04-6_source + libperl6-junction-perl_1.40000-1_source + libperl6-say-perl_0.12-1.1_source + libperl6-slurp-perl_0.051000-1_source + libperlanet-perl_0.56-1_source + libperlbal-xs-httpheaders-perl_0.20-2_source + libperldoc-search-perl_0.01-3_source + libperlio-eol-perl_0.14-1_source + libperlio-gzip-perl_0.18-1_source + libperlio-via-dynamic-perl_0.12-1_source + libperlio-via-symlink-perl_0.05-1.1_source + libperlmenu-perl_4.0-5_source + libperlspeak-perl_2.01-1_source + libperlx-maybe-perl_0.002-1_source + libpetal-perl_2.20-1_source + libpetal-utils-perl_0.06-2_source + libpg-perl_1:2.1.1-4_source + libpgjava_9.1-901-2_source + libpgm_5.1.118-1~dfsg-0.1_source + libpgp-sign-perl_0.20-3_source + libphash_0.9.4-1.2_source + libphone-ui_1:0.0.1+git20110825-3_source + libphone-ui-shr_0.1+git20110827-3_source + libphone-utils_0.1+git20110523-2.1_source + libphp-adodb_5.15-1_source + libphp-jabber_0.4.3-4_source + libphp-jpgraph_1.5.2-12.1_source + libphp-pclzip_2.8.2-2_source + libphp-phpmailer_5.1-1_source + libphp-serialization-perl_0.34-1_source + libphp-snoopy_1.2.4-2_source + libphp-swiftmailer_4.1.5-1_source + libphysfs_2.0.2-6_source + libpinyin_0.6.91-1_source + libpipeline_1.2.1-1_source + libpixels-java_2.1.3+svn.42-2_source + libpixie-java_1:1.1.6-3_source + libplack-middleware-crossorigin-perl_0.007-1_source + libplack-middleware-deflater-perl_0.08-1_source + libplack-middleware-expires-perl_0.03-1_source + libplack-middleware-file-sass-perl_0.03-2_source + libplack-middleware-reverseproxy-perl_0.14-1_source + libplack-middleware-session-perl_0.14-1_source + libplack-middleware-status-perl_1.101150-1_source + libplack-perl_0.9989-1_source + libplack-test-externalserver-perl_0.01-1_source + libplayer_2.0.1-2.1_source + libplist_1.8-1_source + libplrpc-perl_0.2020-2_source + libplucene-perl_1.25-3_source + libpmount_0.0.16_source + libpng_1.2.49-1_source + libpod-2-docbook-perl_0.03-2_source + libpod-abstract-perl_0.20-1_source + libpod-constants-perl_0.16-2_source + libpod-coverage-perl_0.22-1_source + libpod-coverage-trustpod-perl_0.100002-1_source + libpod-elemental-perl_0.102362-1_source + libpod-elemental-perlmunger-perl_0.093331-1_source + libpod-eventual-perl_0.093170-1_source + libpod-index-perl_0.14-2_source + libpod-markdown-perl_1.320000-1_source + libpod-plainer-perl_1.03-1_source + libpod-pom-perl_0.27-1_source + libpod-pseudopod-perl_0.18-1_source + libpod-readme-perl_0.11-1_source + libpod-sax-perl_0.14-5_source + libpod-simple-perl_3.22-1_source + libpod-simple-wiki-perl_0.11-1_source + libpod-spell-perl_1.01-2_source + libpod-strip-perl_1.02-1_source + libpod-tests-perl_1.19-3_source + libpod-tree-perl_1.17-1_source + libpod-weaver-perl_3.101637-1_source + libpod-webserver-perl_3.05-1_source + libpod-wordlist-hanekomu-perl_1.121370-1_source + libpod-wsdl-perl_0.061-1_source + libpod-xhtml-perl_1.60-1_source + libpod2-base-perl_0.043-1_source + libpodofo_0.9.0-1.1_source + libpoe-api-peek-perl_2.2000-1_source + libpoe-component-client-dns-perl_1:1.051-1_source + libpoe-component-client-http-perl_0.947-1_source + libpoe-component-client-ident-perl_1.07-2_source + libpoe-component-client-keepalive-perl_0.2710-1_source + libpoe-component-client-mpd-perl_1.121670-1_source + libpoe-component-client-ping-perl_1.171-1_source + libpoe-component-dbiagent-perl_0.26-2_source + libpoe-component-ikc-perl_0.2302-1_source + libpoe-component-irc-perl_6.78+dfsg-1_source + libpoe-component-jabber-perl_3.00-2_source + libpoe-component-jobqueue-perl_0.5700-1_source + libpoe-component-pcap-perl_0.04-2_source + libpoe-component-pubsub-perl_0.05-1_source + libpoe-component-resolver-perl_0.920-1_source + libpoe-component-server-http-perl_0.09-2_source + libpoe-component-server-simplehttp-perl_2.14-1_source + libpoe-component-server-soap-perl_1.14-1_source + libpoe-component-sslify-perl_1.008-1_source + libpoe-component-syndicator-perl_0.06-1_source + libpoe-filter-http-parser-perl_1.06-1_source + libpoe-filter-ircd-perl_2.42-1_source + libpoe-filter-stomp-perl_0.04-1_source + libpoe-filter-xml-perl_0.38-1_source + libpoe-loop-event-perl_1.304-1_source + libpoe-loop-tk-perl_1.304-1_source + libpoe-perl_2:1.3540-1_source + libpoe-test-loops-perl_1.351-1_source + libpoet-perl_0.11-1_source + libposix-strptime-perl_0.10-1_source + libpostfix-parse-mailq-perl_1.001-1_source + libpostscript-file-perl_2.20+dfsg-1_source + libpostscript-perl_0.06-2_source + libpostscript-simple-perl_0.07-2_source + libpostscriptbarcode_20080710-1_source + libppd_2:0.10-7.1_source + libppi-html-perl_1.08-1_source + libppi-perl_1.215-1_source + libppi-xs-perl_0.901-1_source + libppix-editortools-perl_0.15-1_source + libppix-regexp-perl_0.028-1_source + libppix-utilities-perl_1.001000-1_source + libpqxx3_3.1-1.1_source + libpragmatic-perl_1.7-2_source + libprefork-perl_1.04-1_source + libprelude_1.0.0-9_source + libpreludedb_1.0.0-1.1_source + libpri_1.4.12-2_source + libprinterconf_0.5-12_source + libprintsys_0.6-13_source + libprivileges-drop-perl_1.03-1_source + libprobe-perl-perl_0.01-1_source + libproc-background-perl_1.10-1_source + libproc-daemon-perl_0.14-1_source + libproc-fork-perl_0.71-1_source + libproc-invokeeditor-perl_1.06-1_source + libproc-pid-file-perl_1.27-1_source + libproc-processtable-perl_0.45-6_source + libproc-reliable-perl_1.16-1_source + libproc-simple-perl_1.30-1_source + libproc-syncexec-perl_1.01-1_source + libproc-waitstat-perl_1.00-4_source + libproxool-java_0.9.1-6_source + libproxy_0.3.1-6_source + libprpc-perl_0.1005-21_source + libpst_0.6.54-4.1_source + libpthread-stubs_0.3-3_source + libpthread-workqueue_0.8.2-1_source + libpuzzle_0.9-5_source + libqalculate_0.9.7-8_source + libqb_0.11.1-2_source + libqglviewer_2.3.4-4.2_source + libqt4pas_2.5-6_source + libquantum_1.1.0-3_source + libquantum-entanglement-perl_0.32-2_source + libquantum-superpositions-perl_2.02-2_source + libquartz-java_1:1.7.3-3_source + libquicktime_2:1.2.4-3_source + libquota-perl_1.6.6+dfsg-2_source + libquvi_0.4.1-1_source + libquvi-scripts_0.4.19-1~deb7u1_source + libqxt_0.6.1-6_source + librabbitmq_0.0.1.hg216-1_source + libramaze-ruby_2010.06.18-2_source + libranlip_1.0-4.1_source + librapi2_0.15-2.1_source + librasterlite_1.1~svn11-2_source + libraw_0.14.6-2_source + libraw1394_2.0.9-1_source + librcc_0.2.9-3_source + librcd_0.1.13-3_source + librcs-perl_1.05-4_source + librdf-acl-perl_0.102-1_source + librdf-closure-perl_0.001-1_source + librdf-crypt-perl_0.002-2_source + librdf-endpoint-perl_0.05-1_source + librdf-generator-void-perl_0.04-1_source + librdf-helper-perl_2.0-1_source + librdf-helper-properties-perl_0.10-1_source + librdf-icalendar-perl_0.003-1_source + librdf-kml-exporter-perl_0.003-1_source + librdf-linkeddata-perl_0.56-1_source + librdf-ns-perl_20120521-1_source + librdf-prefixes-perl_0.003-1_source + librdf-query-client-perl_0.110-1_source + librdf-query-perl_2.908-1_source + librdf-rdfa-generator-perl_0.102-1_source + librdf-rdfa-parser-perl_1.097-1_source + librdf-trin3-perl_0.136-1_source + librdf-trine-node-literal-xml-perl_0.16-1_source + librdf-trine-perl_1.000-1_source + librdf-trineshortcuts-perl_0.104-1_source + librdf-trinex-functions-perl_0.002-1_source + librdf-vcard-perl_0.010-1_source + librdmacm_1.0.15-1+deb7u1_source + libreadline-java_0.8.0.1+dfsg-2_source + libreadonly-perl_1.03-4_source + libreadonly-xs-perl_1.04-2_source + librecad_1.0.2+nolibs-1_source + libredis-perl_2:1.9510-2_source + libregexp-assemble-perl_0.35-7_source + libregexp-common-email-address-perl_1.01-4_source + libregexp-common-net-cidr-perl_0.02-1_source + libregexp-common-perl_2011121001-1_source + libregexp-common-time-perl_0.04-1_source + libregexp-grammars-perl_1.016-1_source + libregexp-ipv6-perl_0.03-1_source + libregexp-java_1.5-3_source + libregexp-optimizer-perl_0.15-3_source + libregexp-reggrp-perl_1.002001-1_source + libregexp-shellish-perl_0.93-1.1_source + librelative-perl_0.04-1_source + librelaxng-datatype-java_1.0+ds1-1_source + librelp_1.0.0-1_source + libreoffice_1:3.5.4+dfsg2-0+deb7u2_source + libreoffice-voikko_3.3-3_source + librep_0.90.2-1.3_source + libreplaygain_1.0~r475-1_source + librepository_1.1.6-2_source + libresample_0.1.3-4_source + librest_0.7.12-3_source + librest-application-perl_0.992-2_source + libreturn-value-perl_1.666001-1_source + librg-blast-parser-perl_0.02-2_source + librg-utils-perl_1.0.43-1_source + librivescript-perl_1.26-1_source + librole-hasmessage-perl_0.005-1_source + librole-identifiable-perl_0.005-1_source + librole-tiny-perl_1.001003-1_source + libroman-perl_1.23-1_source + libromana-perligata-perl_0.55-1_source + libropkg-perl_0.4-1_source + librose-datetime-perl_0.537-1_source + librose-db-object-perl_1:0.798-1_source + librose-db-perl_0.769-1_source + librose-object-perl_0.859-1_source + librose-uri-perl_1.00-1_source + librostlab_1.0.20-1_source + librostlab-blast_1.0.0-2_source + librouter-simple-perl_0.09-1_source + librpc-xml-perl_0.76-3_source + librpcsecgss_0.19-5_source + librra_0.14-1.2_source + librrdtool-oo-perl_0.32-1_source + librsl_1.42-2_source + librsvg_2.36.1-2_source + librsync_0.9.7-9_source + librt-client-rest-perl_1:0.43-1_source + librtas_1.3.6-1_source + librtf-document-perl_0.64-10_source + librtf-writer-perl_1.11-2_source + librtfcomp_1.1-5_source + librunapp-perl_0.13-1_source + libs3_2.0-1_source + libsamplerate_0.1.8-5_source + libsane-perl_0.05-2_source + libsaxon-java_1:6.5.5-8_source + libsbsms_2.0.1-1_source + libscalar-defer-perl_0.23-1_source + libscalar-list-utils-perl_1:1.25-1_source + libscalar-number-perl_0.006-1_source + libscalar-properties-perl_0.13-1_source + libscalar-string-perl_0.002-1_source + libscalar-util-numeric-perl_0.22-1_source + libschedule-at-perl_1.15-1_source + libschedule-cron-perl_0.99-1_source + libschedule-ratelimiter-perl_0.01-1_source + libscope-guard-perl_0.20-1_source + libscope-upper-perl_0.18-1_source + libscriptalicious-perl_1.16-1_source + libsdl-console_2.1-3_source + libsdl-perl_2.540-1_source + libsdl-sge_030809dfsg-3_source + libsdl1.2_1.2.15-5_source + libsdp_1.1.99-2.1_source + libsearch-estraier-perl_0.09-5_source + libsearch-gin-perl_0.08-1_source + libsearch-queryparser-perl_0.94-1_source + libsearch-xapian-perl_1.2.10.0-1_source + libselinux_2.1.9-5_source + libsemanage_2.1.6-6_source + libsendmail-milter-perl_0.18-7_source + libsendmail-pmilter-perl_1.00-1_source + libsepol_2.1.4-3_source + libserializer_1.1.6-4_source + libset-infinite-perl_0.63-1_source + libset-intspan-perl_1.16-1_source + libset-nestedgroups-perl_0.01-2_source + libset-object-perl_1.27-1_source + libset-scalar-perl_1.25-1_source + libsexy_0.1.11-2_source + libsfml_1.6+dfsg2-2_source + libsgml-parser-opensp-perl_0.994-2_source + libsgmls-perl_1.03ii-32_source + libshairport_1.2.1~git20120110.aeb4987-2_source + libshell-command-perl_0.06-3_source + libshell-perl_0.72.01-1_source + libshell-perl-perl_0.0022-1_source + libshell-posix-select-perl_0.05-2_source + libshevek_1.3-1_source + libshout_2.2.2-8_source + libshr-glib_2011.03.08.2~git20110930-2_source + libsidplay_1.36.59-5_source + libsidplayfp_0.3.5-1_source + libsieve_2.2.6-1.1_source + libsigc++_1.0.4-9.4_source + libsigc++-1.2_1.2.7-2_source + libsigc++-2.0_2.2.10-0.2_source + libsignatures-perl_0.06-1_source + libsigrok_0.1.0-2_source + libsigrokdecode_0.1.0-2_source + libsigsegv_2.9-4_source + libsimple-validation-java_0.4-3_source + libskinlf-java_6.7-8_source + libskk_0.0.12-3_source + libslf4j-java_1.6.5-1_source + libsm_2:1.2.1-2_source + libsmart-comments-perl_1.0.4-1_source + libsmbios_2.0.3.dfsg-1.1_source + libsmf_1.3-2_source + libsmi_0.4.8+dfsg2-7_source + libsms-send-perl_1.06-1_source + libsndfile_1.0.25-5_source + libsnmp-extension-passpersist-perl_0.06-1_source + libsnmp-info-perl_2.06-1_source + libsnmp-mib-compiler-perl_0.06-2_source + libsnmp-multi-perl_2.1-4_source + libsnmp-ruby_1.0.2-1_source + libsnmp-session-perl_1.13-1_source + libsnowball-norwegian-perl_1.2-1_source + libsnowball-swedish-perl_1.2-3_source + libsoap-lite-perl_0.714-1_source + libsoap-wsdl-perl_2.00.10-1_source + libsocialtext-resting-perl_0.38-1_source + libsocialtext-resting-utils-perl_0.21-2_source + libsocialweb_0.25.20-2.1_source + libsocket-getaddrinfo-perl_0.22-1_source + libsocket-linux-perl_0.01-1_source + libsocket-multicast6-perl_0.04-1_source + libsocket-perl_2.002-1_source + libsocket6-perl_0.23-1_source + libsoftware-license-perl_0.103004-2_source + libsoftware-release-perl_0.02-1_source + libsoil_1.07~20080707.dfsg-2_source + libsort-fields-perl_0.90-2_source + libsort-key-perl_1.32-1_source + libsort-key-top-perl_0.06-1_source + libsort-naturally-perl_1.02-1_source + libsort-versions-perl_1.5-4_source + libsoundgen_0.6-4_source + libsoup2.4_2.38.1-2_source + libspark-java_1.2-2_source + libspctag_0.2-1_source + libspectre_0.2.7-2_source + libspectrum_1.0.0-3_source + libspf2_1.2.9-7_source + libsphinx-search-perl_1:0.27.2-2_source + libspiffy-perl_0.30-1_source + libspin-java_1.5+dfsg-5_source + libspiro_20071029-2_source + libspnav_0.2.2-1_source + libspoon-perl_0.24-2_source + libspork-perl_0.20-2_source + libspreadsheet-parseexcel-perl_0.5800-1_source + libspreadsheet-parseexcel-simple-perl_1.04-2_source + libspreadsheet-read-perl_0.41-1_source + libspreadsheet-writeexcel-perl_2.37-1_source + libspreadsheet-xlsx-perl_0.13-1_source + libspring-java_3.0.6.RELEASE-6+deb7u1_source + libspring-ldap-java_1.3.1.RELEASE-4_source + libspring-security-2.0-java_2.0.7.RELEASE-1_source + libspring-webflow-2.0-java_2.0.9.RELEASE-4_source + libsql-abstract-limit-perl_2:0.14.1-3_source + libsql-abstract-perl_1.72-1_source + libsql-reservedwords-perl_0.7-1_source + libsql-statement-perl_1.33-1_source + libsql-translator-perl_0.11011-1_source + libsru-perl_0.99-1_source + libss7_1.0.2-3_source + libssh_0.5.4-1_source + libssh2_1.4.2-1.1_source + libstat-lsmode-perl_0.50-6_source + libstatgrab_0.17-1_source + libstatistics-basic-perl_1.6607-1_source + libstatistics-descriptive-perl_3.0603-1_source + libstatistics-distributions-perl_1.02-1_source + libstatistics-online-perl_0.02-1_source + libstatistics-r-perl_0.24-1_source + libstatistics-test-randomwalk-perl_0.02-1_source + libstatistics-test-sequence-perl_0.01-1_source + libstax-java_1.2.0-3_source + libstax2-api-java_3.1.1-1_source + libstrictures-perl_1.003001-1_source + libstring-approx-perl_3.26-1_source + libstring-bufferstack-perl_1.15-1_source + libstring-camelcase-perl_0.02-1_source + libstring-crc32-perl_1.4-2_source + libstring-dirify-perl_1.02-1_source + libstring-errf-perl_0.006-3_source + libstring-escape-perl_2010.002-1_source + libstring-flogger-perl_1.101242-1_source + libstring-format-perl_1.16-1_source + libstring-formatter-perl_0.102082-1_source + libstring-glob-permute-perl_0.01-1_source + libstring-koremutake-perl_0.30-3_source + libstring-mkpasswd-perl_0.03-1_source + libstring-parity-perl_1.31-1_source + libstring-random-perl_1:0.22-3_source + libstring-rewriteprefix-perl_0.006-1_source + libstring-shellquote-perl_1.03-1_source + libstring-similarity-perl_1.04-1_source + libstring-toidentifier-en-perl_0.07-1_source + libstring-tokenizer-perl_0.05-1_source + libstring-truncate-perl_1.100600-1_source + libstroke_0.5.1-6_source + libstruct-compare-perl_1.0.1-3_source + libstruts1.2-java_1.2.9-5_source + libstxxl_1.3.1-4_source + libsub-current-perl_0.02-1_source + libsub-delete-perl_1.00002-1_source + libsub-exporter-formethods-perl_0.091970-1_source + libsub-exporter-globexporter-perl_0.002-1_source + libsub-exporter-perl_0.984-1_source + libsub-identify-perl_0.04-1_source + libsub-install-perl_0.926-1_source + libsub-name-perl_0.05-1_source + libsub-override-perl_0.08-4_source + libsub-prototype-perl_0.02-1_source + libsub-uplevel-perl_0.2400-1_source + libsub-wrappackages-perl_2.0-1_source + libsubtitles-perl_1.04-1_source + libsuper-perl_1.17-1_source + libsvg-graph-perl_0.02-2_source + libsvg-perl_2.52-1_source + libsvg-tt-graph-perl_0.21-1_source + libsvm_3.12-1_source + libsvn-class-perl_0.17-1_source + libsvn-dump-perl_0.05-1_source + libsvn-hooks-perl_1.19-1_source + libsvn-look-perl_0.38-1_source + libsvn-notify-mirror-perl_0.03800-2_source + libsvn-notify-perl_2.81-1_source + libsvn-svnlook-perl_0.04-2_source + libsvn-web-perl_0.53-4_source + libswarmcache-java_1.0RC2+cvs20071027-6_source + libswe_1.77.00.0005-2_source + libswingx-java_1:1.6.2-1_source + libswingx1-java_1:1.0-1_source + libswish-api-common-perl_0.03-2_source + libswitch-perl_2.16-2_source + libsx_2.05-3_source + libsylph_1.1.0-8_source + libsynce_0.15-1.1_source + libsyncml_0.5.4-2.1_source + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_source + libsyntax-highlight-engine-simple-languages-perl_1_source + libsyntax-highlight-engine-simple-perl_0.09-1_source + libsyntax-highlight-perl-improved-perl_1.01-3_source + libsyntax-keyword-gather-perl_1.001000-1_source + libsyntax-perl_0.004-1_source + libsynthesis_3.4.0.16.7-1_source + libsys-cpu-perl_0.52-3_source + libsys-cpuload-perl_0.03-6_source + libsys-filesystem-perl_1.28-1_source + libsys-gamin-perl_0.1-1_source + libsys-hostname-long-perl_1.4-2_source + libsys-mmap-perl_0.16-1_source + libsys-sigaction-perl_0.13-1_source + libsys-statistics-linux-perl_0.66-1_source + libsys-syscall-perl_0.23-1_source + libsys-syslog-perl_0.29-1_source + libsys-utmp-perl_1.6-4_source + libsys-virt-perl_0.9.12-2_source + libsysactivity_0.6.4-1_source + libsysadm-install-perl_0.39-1_source + libsystem-command-perl_1.07-1_source + libtablelayout-java_20090826-2_source + libtaint-util-perl_0.08-1_source + libtangram-perl_2.10-1.1_source + libtap-formatter-html-perl_0.09+dfsg-1_source + libtap-formatter-junit-perl_0.09-1_source + libtap-harness-archive-perl_0.14-1_source + libtap-parser-sourcehandler-pgtap-perl_3.27-2_source + libtar_1.2.16-1+deb7u1_source + libtask-weaken-perl_1.03-1_source + libtasn1-3_2.13-2_source + libtcd_2.2.2-1_source + libtecla_1.6.1-5_source + libtelnet_0.21-1_source + libtemplate-alloy-perl_1.016-1_source + libtemplate-declare-perl_0.45-1_source + libtemplate-multilingual-perl_1.00-1_source + libtemplate-perl_2.24-1_source + libtemplate-plugin-calendar-simple-perl_0.02-3_source + libtemplate-plugin-class-perl_0.13-3_source + libtemplate-plugin-clickable-email-perl_0.01-1_source + libtemplate-plugin-clickable-perl_0.06-2_source + libtemplate-plugin-comma-perl_0.04-1_source + libtemplate-plugin-cycle-perl_1.06-1_source + libtemplate-plugin-datetime-format-perl_0.02-1_source + libtemplate-plugin-dbi-perl_2.65-2_source + libtemplate-plugin-gd-perl_2.66-2_source + libtemplate-plugin-gravatar-perl_0.05-1_source + libtemplate-plugin-javascript-perl_0.02-1_source + libtemplate-plugin-json-escape-perl_0.2-1_source + libtemplate-plugin-latex-perl_3.02-1_source + libtemplate-plugin-number-format-perl_1.02-1_source + libtemplate-plugin-textile2-perl_1.21-3_source + libtemplate-plugin-utf8decode-perl_0.01-1_source + libtemplate-plugin-xml-perl_2.17-3_source + libtemplate-plugin-yaml-perl_1.23-1_source + libtemplate-provider-encoding-perl_0.10-2_source + libtemplate-provider-fromdata-perl_0.12-1_source + libtemplate-timer-perl_1.00-2_source + libtemplate-tiny-perl_1.12-1_source + libtemplates-parser_11.6-2_source + libtenjin-perl_0.070001-1_source + libterm-encoding-perl_0.02-1_source + libterm-filter-perl_0.03-1_source + libterm-progressbar-perl_2.13-1_source + libterm-prompt-perl_1.04-1_source + libterm-query-perl_2.0-9_source + libterm-readkey-perl_2.30-4_source + libterm-readline-gnu-perl_1.20-2_source + libterm-readline-perl-perl_1.0303-1_source + libterm-readline-zoid-perl_0.07-2_source + libterm-readpassword-perl_0.11-2_source + libterm-shell-perl_0.02-3_source + libterm-shellui-perl_0.92-1_source + libterm-size-any-perl_0.001-1_source + libterm-size-perl_0.207-1_source + libterm-size-perl-perl_0.029-1_source + libterm-sk-perl_0.11-1_source + libterm-slang-perl_0.07-11_source + libterm-ttyrec-plus-perl_0.09-1_source + libterm-twiddle-perl_2.71-1_source + libterm-visual-perl_0.08-2_source + libterm-vt102-perl_0.91-1_source + libterralib_4.0.0-4_source + libtest-aggregate-perl_0.364-1_source + libtest-apocalypse-perl_0.05-1_source + libtest-assertions-perl_1.054-2_source + libtest-autoloader-perl_0.03-1_source + libtest-base-perl_0.60-1_source + libtest-bdd-cucumber-perl_0.11-1_source + libtest-block-perl_0.13-1_source + libtest-carp-perl_0.2-1_source + libtest-cgi-multipart-perl_0.0.3-1_source + libtest-checkchanges-perl_0.14-1_source + libtest-checkdeps-perl_0.002-1_source + libtest-checkmanifest-perl_1.25-1_source + libtest-class-most-perl_0.06-1_source + libtest-class-perl_0.37-1_source + libtest-classapi-perl_1.06-1_source + libtest-cmd-perl_1.05-7_source + libtest-command-perl_0.08-1_source + libtest-compile-perl_0.17-1_source + libtest-consistentversion-perl_0.2.3-1_source + libtest-corpus-audio-mpd-perl_1.120990-1_source + libtest-cpan-meta-perl_0.19-1_source + libtest-cpan-meta-yaml-perl_0.20-1_source + libtest-cukes-perl_0.10-1_source + libtest-data-perl_1.22-1_source + libtest-database-perl_1.11-1_source + libtest-deep-perl_0.110-1_source + libtest-dependencies-perl_0.12-1_source + libtest-differences-perl_0.61-1_source + libtest-dir-perl_1.013-1_source + libtest-distmanifest-perl_1.009-1_source + libtest-distribution-perl_2.00-2_source + libtest-email-perl_0.07-1_source + libtest-eol-perl_1.3-1_source + libtest-exception-perl_0.31-1_source + libtest-exit-perl_0.03-1_source + libtest-expect-perl_0.31-2_source + libtest-fatal-perl_0.010-1_source + libtest-file-contents-perl_0.20-1_source + libtest-file-perl_1.34-1_source + libtest-file-sharedir-perl_0.3.1-1_source + libtest-fixme-perl_0.04-2_source + libtest-harness-perl_3.25-1_source + libtest-hasversion-perl_0.012-1_source + libtest-html-content-perl_0.08-2_source + libtest-html-w3c-perl_0.04-1_source + libtest-http-server-simple-perl_0.10-1_source + libtest-http-server-simple-stashwarnings-perl_0.04-1_source + libtest-identity-perl_0.01-1_source + libtest-image-gd-perl_0.03-2_source + libtest-indistdir-perl_1.112071-1_source + libtest-inline-perl_2.212-1_source + libtest-inter-perl_1.02-1_source + libtest-json-perl_0.11-1_source + libtest-kwalitee-perl_1.01-1_source + libtest-leaktrace-perl_0.14-1_source + libtest-lectrotest-perl_0.3600-2_source + libtest-log-dispatch-perl_0.03-1_source + libtest-log4perl-perl_0.1001-3_source + libtest-longstring-perl_0.15-1_source + libtest-manifest-perl_1.23-1_source + libtest-memory-cycle-perl_1.04-1_source + libtest-minimumversion-perl_0.101080-1_source + libtest-mock-lwp-perl_0.05-1_source + libtest-mock-redis-perl_0.08-1_source + libtest-mockclass-perl_1.04-3_source + libtest-mockmodule-perl_0.05-2_source + libtest-mockobject-perl_1.20120301-1_source + libtest-mockrandom-perl_1.00-1_source + libtest-mocktime-datecalc-perl_5+ds-1_source + libtest-mocktime-perl_0.09-1_source + libtest-module-used-perl_0.2.3-1_source + libtest-most-perl_0.25-1_source + libtest-needsdisplay-perl_1.07-1_source + libtest-nobreakpoints-perl_0.15-1_source + libtest-notabs-perl_1.3-1_source + libtest-nowarnings-perl_1.04-1_source + libtest-number-delta-perl_1.03-2_source + libtest-object-perl_0.07-1_source + libtest-output-perl_1.01-1_source + libtest-perl-critic-perl_1.02-1_source + libtest-pod-content-perl_0.0.6-1_source + libtest-pod-coverage-perl_1.08-3_source + libtest-pod-no404s-perl_0.01-1_source + libtest-pod-perl_1.44-1_source + libtest-poe-client-tcp-perl_1.10-1_source + libtest-poe-server-tcp-perl_1.14-1_source + libtest-portability-files-perl_0.05-2_source + libtest-prereq-perl_1.037-1_source + libtest-rdf-doap-version-perl_0.004-1_source + libtest-rdf-perl_0.26-1_source + libtest-refcount-perl_0.07-1_source + libtest-regression-perl_0.05-1_source + libtest-reporter-perl_1.58-1_source + libtest-requires-perl_0.05-1_source + libtest-routine-perl_0.015-1_source + libtest-script-perl_1.07-2_source + libtest-script-run-perl_0.05-1_source + libtest-sharedfork-perl_0.19-1_source + libtest-signature-perl_1.10-1_source + libtest-simple-perl_0.98-1_source + libtest-simpleunit-perl_1.21-5_source + libtest-spec-perl_0.45-1_source + libtest-spelling-perl_0.15-1_source + libtest-strict-perl_0.14-1_source + libtest-subcalls-perl_1.09-2_source + libtest-synopsis-perl_0.06+ds-1_source + libtest-taint-perl_1.04-1_source + libtest-tcp-perl_1.15-1_source + libtest-tempdir-perl_0.05-1_source + libtest-tester-perl_0.108-1_source + libtest-trap-perl_0.2.2-1_source + libtest-unit-perl_0.25-1_source + libtest-use-ok-perl_0.02-2_source + libtest-useallmodules-perl_0.12-1_source + libtest-utf8-perl_1.00-1_source + libtest-valgrind-perl_1.13-1_source + libtest-warn-perl_0.23-1_source + libtest-weaken-perl_3.018000-1_source + libtest-without-module-perl_0.17-1_source + libtest-www-declare-perl_0.02-2_source + libtest-www-mechanize-catalyst-perl_0.57-1_source + libtest-www-mechanize-cgiapp-perl_0.05-3_source + libtest-www-mechanize-mojo-perl_0.0.10-1_source + libtest-www-mechanize-perl_1.42-1_source + libtest-www-mechanize-psgi-perl_0.35-1_source + libtest-www-selenium-perl_1.33-1_source + libtest-xml-perl_0.08-1_source + libtest-xml-simple-perl_1.01-1_source + libtest-xpath-perl_0.16-1_source + libtest-yaml-meta-perl_0.19-1_source + libtest-yaml-valid-perl_0.04-1_source + libtex-encode-perl_1.3-1_source + libtext-affixes-perl_0.07-1_source + libtext-aligner-perl_0.07-1_source + libtext-asciitable-perl_0.20-1_source + libtext-aspell-perl_0.09-1_source + libtext-autoformat-perl_1.669002-1_source + libtext-bibtex-perl_0.63-1_source + libtext-bidi-perl_0.03-5_source + libtext-charwidth-perl_0.04-7_source + libtext-chasen-perl_1.04-3_source + libtext-context-eitherside-perl_1.4-1_source + libtext-context-perl_3.7-1_source + libtext-csv-encoded-perl_0.10-2_source + libtext-csv-perl_1.21-1_source + libtext-csv-xs-perl_0.90-1_source + libtext-dhcpleases-perl_0.9-1_source + libtext-diff-perl_1.41-1_source + libtext-findindent-perl_0.10-1_source + libtext-flow-perl_0.01-1_source + libtext-format-perl_0.56-1_source + libtext-formattable-perl_1.03-1_source + libtext-german-perl_0.06-2_source + libtext-glob-perl_0.09-1_source + libtext-greeking-perl_0.12-1_source + libtext-header-perl_1.03-2_source + libtext-hunspell-perl_2.03-1_source + libtext-iconv-perl_1.7-5_source + libtext-kakasi-perl_2.04-1_source + libtext-levenshtein-perl_0.06~01-1_source + libtext-levenshteinxs-perl_0.03-3_source + libtext-lorem-perl_0.3-1_source + libtext-markdown-discount-perl_0.02-1_source + libtext-markdown-perl_1.0.26-1_source + libtext-mecab-perl_0.20013-2_source + libtext-mediawikiformat-perl_1.0-2_source + libtext-micromason-perl_2.13-1_source + libtext-microtemplate-perl_0.18-1_source + libtext-multimarkdown-perl_1.000034-1_source + libtext-ngram-perl_0.14-1_source + libtext-password-pronounceable-perl_0.30-1_source + libtext-patch-perl_1.8-1_source + libtext-pdf-perl_0.29a-1_source + libtext-qrcode-perl_0.01-1_source + libtext-quoted-perl_2.06-1_source + libtext-recordparser-perl_1.5.0-1_source + libtext-reflow-perl_1.09-1_source + libtext-reform-perl_1.20-1_source + libtext-rewriterules-perl_0.24-1_source + libtext-roman-perl_3.3-4_source + libtext-sass-perl_0.95-1_source + libtext-simpletable-perl_1.2-1_source + libtext-table-perl_1.123-1_source + libtext-tabulardisplay-perl_1.33-1_source + libtext-template-perl_1.45-2_source + libtext-textile-perl_2.12-1_source + libtext-trac-perl_0.15-1_source + libtext-trim-perl_1.02-1_source + libtext-typography-perl_0.01-2_source + libtext-unaccent-perl_1.08-1_source + libtext-unidecode-perl_0.04-2_source + libtext-vcard-perl_2.10-1_source + libtext-vfile-asdata-perl_0.07-1_source + libtext-vimcolor-perl_0.11-2_source + libtext-wikicreole-perl_0.07-1_source + libtext-wikiformat-perl_0.79-1_source + libtext-worddiff-perl_0.05-1_source + libtext-wrapi18n-perl_0.06-7_source + libtext-wrapper-perl_1.04-1_source + libtextwrap_0.1-13_source + libtfbs-perl_0.5.svn.20100421-1_source + libtggraphlayout-java_122-2_source + libthai_0.1.18-2_source + libtheora_1.1.1+dfsg.1-3.1_source + libtheschwartz-perl_1.07-1_source + libthread-pool-simple-perl_0.25-1_source + libthread-queue-any-perl_1.12-1_source + libthread-serialize-perl_1.00-1_source + libthreads-perl_1.85-1_source + libthreads-shared-perl_1.40-1_source + libthrowable-perl_0.102080-1_source + libthrust_1.6.0-1_source + libticables_1.2.0-2_source + libticalcs_1.1.3+dfsg1-1_source + libticket-simple-perl_0.0.2-2_source + libticonv_1.1.0-1.1_source + libtie-array-iterable-perl_0.03-1_source + libtie-array-sorted-perl_1.41-2_source + libtie-cache-perl_0.17-4_source + libtie-cphash-perl_1.05-1_source + libtie-dbi-perl_1.04-1_source + libtie-dxhash-perl_0.93-1_source + libtie-encryptedhash-perl_1.24-1_source + libtie-hash-regex-perl_1.02-1_source + libtie-ical-perl_0.15-1_source + libtie-ixhash-perl_1.21-2_source + libtie-persistent-perl_1.00-1_source + libtie-refhash-weak-perl_0.09-1_source + libtie-shadowhash-perl_1.00-1_source + libtie-simple-perl_1.03-1_source + libtie-toobject-perl_0.03-3_source + libtifiles_1.1.1-1_source + libtime-clock-perl_1.01-1_source + libtime-duration-parse-perl_0.06-1_source + libtime-duration-perl_1.06-3_source + libtime-fake-perl_0.11-2_source + libtime-format-perl_1.11-1_source + libtime-human-perl_1.03-2_source + libtime-modules-perl_2011.0517-1_source + libtime-period-perl_1.20-8_source + libtime-piece-mysql-perl_0.06-2_source + libtime-progress-perl_1.7-1_source + libtime-stopwatch-perl_1.00-5_source + libtime-warp-perl_0.5-1_source + libtime-y2038-perl_20100403-2_source + libtimedate-perl_1.2000-1_source + libtirpc_0.2.2-5_source + libtitanium-perl_1.04-3_source + libtk-dirselect-perl_1.12-1_source + libtk-filedialog-perl_1.3-4_source + libtk-gbarr-perl_2.08-1_source + libtk-histentry-perl_0.43-2_source + libtk-img_1:1.3-release-12_source + libtk-objscanner-perl_2.012-2_source + libtk-pod-perl_0.9940-1_source + libtk-splashscreen-perl_1.0-3_source + libtk-tablematrix-perl_1.23-6_source + libtm-perl_1.56-3_source + libtnt_1.2.6-1_source + libtododb_0.11-3_source + libtokyocabinet-perl_1.34-1_source + libtomcrypt_1.17-3.2_source + libtommath_0.42.0-1_source + libtool_2.4.2-1.1_source + libtoolkit-perl_0.0.2-1_source + libtools-logging-clojure_0.2.3-3_source + libtorrent_0.13.2-1_source + libtorrent-rasterbar_0.15.10-1_source + libtpclient-py_0.3.2-2_source + libtpl_1.5-2_source + libtpproto-py_0.2.5-3_source + libtrace3_3.0.14-1_source + libtravel-routing-de-vrr-perl_2.01-1_source + libtree-dagnode-perl_1.06-1_source + libtree-multinode-perl_1.0.10-2_source + libtree-redblack-perl_0.5-1_source + libtree-simple-perl_1.18-1_source + libtree-simple-visitorfactory-perl_0.10-2_source + libtritonus-java_20070428-9_source + libtrue-perl_0.18-1_source + libtry-tiny-perl_0.11-1_source + libtrycatch-perl_1.003000-1_source + libtut_0.0.20070706-1_source + libtuxcap_1.4.0.dfsg2-2.1_source + libtwin_12.04.13.17.57-g130ee5f-2_source + libucimf_2.3.8-4_source + libui-dialog-perl_1.08-1.1_source + libunicode-collate-perl_0.89-1_source + libunicode-escape-perl_0.0.2-2_source + libunicode-japanese-perl_0.47-1_source + libunicode-linebreak-perl_0.0.20120401-1_source + libunicode-map-perl_0.112-10_source + libunicode-map8-perl_0.13+dfsg-3_source + libunicode-maputf8-perl_1.11-2_source + libunicode-string-perl_2.09-5_source + libunicode-stringprep-perl_1.104+dfsg-1_source + libuninameslist_0.0.20091231-1.1_source + libuninum_2.7-1.1_source + libunique_1.1.6-4_source + libunique3_3.0.2-1_source + libunistring_0.9.3-5_source + libuniversal-can-perl_1.20110613-1_source + libuniversal-exports-perl_0.05-2_source + libuniversal-isa-perl_1.20120418-1_source + libuniversal-moniker-perl_0.08-6_source + libuniversal-require-perl_0.13-1_source + libunix-mknod-perl_0.04-1_source + libunix-syslog-perl_1.1-2_source + libunwind_0.99-0.3_source + libupnp_1:1.6.17-1.2_source + libupnp4_1.8.0~svn20100507-1.2_source + liburcu_0.6.7-2_source + liburi-encode-perl_0.061-1_source + liburi-fetch-perl_0.09-1_source + liburi-find-delimited-perl_0.02-6_source + liburi-find-perl_20111103-1_source + liburi-perl_1.60-1_source + liburi-query-perl_0.08-1_source + liburi-smarturi-perl_0.031-1_source + liburi-template-perl_0.16-1_source + liburi-todisk-perl_1.12-1_source + libusb_2:0.1.12-20+nmu1_source + libusbtc08_1.7.2-1_source + libusbx_2:1.0.11-1_source + libuser_1:0.56.9.dfsg.1-1.2_source + libuser-identity-perl_0.93-1_source + libuser-perl_1.9-1_source + libuser-simple-perl_1.43-1_source + libutempter_1.1.5-4_source + libutf8-all-perl_0.004-1_source + libuuid-perl_0.02-5_source + libuuid-tiny-perl_1.0300-2_source + libv-perl_0.13-1_source + libv8_3.8.9.20-2_source + libv8-i18n_0~0.svn7-3_source + libva_1.0.15-4_source + libvalhalla_2.0.0-4_source + libvalidate-net-perl_0.6-1_source + libvalidation-class-perl_7.70-1_source + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_source + libvariable-magic-perl_0.50-1_source + libvc_003.dfsg.1-12_source + libvcs-lite-perl_0.09-1_source + libvdpau_0.4.1-7_source + libvendorlib-perl_0.10-2_source + libverilog-perl_3.315-1_source + libversion-next-perl_0.002-1_source + libversion-perl_1:0.9900-1_source + libverto_0.2.2-1_source + libvformat_1.13-10_source + libvi-quickfix-perl_1.134-1_source + libvideo-capture-v4l-perl_0.902-3_source + libvideo-fourcc-info-perl_1.005-1_source + libvideo-ivtv-perl_0.13-7_source + libview_0.6.6-2.1_source + libvigraimpex_1.7.1+dfsg1-3_source + libvirt_0.9.12.3-1_source + libvirt-glib_0.0.8-1_source + libvisca_1.0.1-1_source + libvisio_0.0.17-1_source + libvisual_0.4.0-5_source + libvisual-plugins_0.4.0.dfsg.1-7_source + libvitacilina-perl_0.2-1_source + libvldocking-java_2.1.4-4_source + libvncserver_0.9.9+dfsg-1_source + libvoikko_3.5-1.1_source + libvorbis_1.3.2-1.3_source + libvorbisfile-ruby_0.2-8.1_source + libvorbisidec_1.0.2+svn18153-0.2_source + libvorbisspi-java_1.0.3-3_source + libvpx_1.1.0-1_source + libwacom_0.6-1_source + libwant-perl_0.21-1_source + libwarnings-illegalproto-perl_0.001000-1_source + libweather-com-perl_0.5.3-2_source + libweb-id-perl_1.921-3_source + libweb-scraper-perl_0.36-1_source + libweb-simple-perl_0.016-1_source + libwebapp-ruby_0.4-2.1_source + libwebcam_0.2.2-1_source + libwebinject-perl_1.74-1_source + libwebp_0.1.3-3+nmu1_source + libwebservice-cia-perl_1.4-1_source + libwebservice-musicbrainz-perl_0.93-1_source + libwebservice-solr-perl_0.19-1_source + libwebservice-validator-css-w3c-perl_0.2-1_source + libwebservice-validator-html-w3c-perl_0.28-1_source + libwebservice-youtube-perl_1.0.3-3_source + libwfut_0.2.1-2_source + libwhisker2-perl_2.5-1_source + libwibble_0.1.28-1.1_source + libwiki-toolkit-formatter-usemod-perl_0.23-1_source + libwiki-toolkit-perl_0.80-1_source + libwiki-toolkit-plugin-categoriser-perl_0.08-1_source + libwiki-toolkit-plugin-diff-perl_0.12-3_source + libwiki-toolkit-plugin-json-perl_0.03-1_source + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_source + libwiki-toolkit-plugin-ping-perl_0.03-1_source + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_source + libwmf_0.2.8.4-10.3_source + libwnck_2.30.7-1_source + libwnck3_3.4.2-1_source + libwoodstox-java_1:4.1.3-1_source + libwordnet-querydata-perl_1.48-1_source + libwpd_0.9.4-3_source + libwpg_0.2.1-1_source + libwps_0.2.7-1_source + libwrap-ruby_0.6-3_source + libws-commons-util-java_1.0.1-7_source + libwww-bugzilla-perl_1.5-1_source + libwww-cnic-perl_0.38-1_source + libwww-curl-perl_4.15-1_source + libwww-facebook-api-perl_0.4.18-1_source + libwww-finger-perl_0.104-1_source + libwww-freshmeat-perl_0.22-1_source + libwww-google-calculator-perl_0.07-1_source + libwww-indexparser-perl_0.91-1_source + libwww-mechanize-autopager-perl_0.02-2_source + libwww-mechanize-formfiller-perl_0.10-2_source + libwww-mechanize-gzip-perl_0.12-1_source + libwww-mechanize-perl_1.71-1_source + libwww-mechanize-shell-perl_0.52-1_source + libwww-mechanize-treebuilder-perl_1.10003-1_source + libwww-mediawiki-client-perl_0.31-2_source + libwww-nicovideo-download-perl_0.06-1_source + libwww-opensearch-perl_0.16-1_source + libwww-perl_6.04-1_source + libwww-robotrules-perl_6.01-1_source + libwww-search-perl_2.50.80-1_source + libwww-shorten-perl_3.03-1_source + libwww-topica-perl_0.6-4_source + libwww-wikipedia-perl_2.00-1_source + libwwwbrowser-perl_2.23-2_source + libwx-perl_1:0.9909-1_source + libwx-perl-datawalker-perl_0.02-1_source + libwx-perl-processstream-perl_0.32-1_source + libwx-scintilla-perl_0.38-1_source + libx11_2:1.5.0-1+deb7u1_source + libx11-freedesktop-desktopentry-perl_0.04-3_source + libx11-guitest-perl_0.25-2_source + libx11-protocol-perl_0.56-4_source + libx500-dn-perl_0.29-4_source + libx86_1.1+ds1-10_source + libxalan2-java_2.7.1-7_source + libxapool-java_1.5.0-3_source + libxau_1:1.0.7-1_source + libxaw_2:1.0.10-2_source + libxbase_2.0.0-8.5_source + libxbean-java_3.7-5_source + libxcb_1.8.1-2+deb7u1_source + libxcomposite_1:0.4.3-2_source + libxcrypt_1:2.4-3_source + libxcursor_1:1.1.13-1+deb7u1_source + libxdamage_1:1.1.3-2_source + libxdg-basedir_1.1.1-2_source + libxdmcp_1:1.1.1-1_source + libxerces2-java_2.11.0-6_source + libxext_2:1.3.1-2+deb7u1_source + libxfce4menu_4.6.2-1_source + libxfce4ui_4.8.1-1_source + libxfce4util_4.8.2-1_source + libxfcegui4_4.8.1-5_source + libxfixes_1:5.0-4+deb7u1_source + libxfont_1:1.4.5-3_source + libxi_2:1.6.1-1+deb7u1_source + libxinerama_2:1.1.2-1+deb7u1_source + libxkbfile_1:1.0.8-1_source + libxklavier_5.2.1-1_source + libxml++2.6_2.34.2-1_source + libxml-atom-fromowl-perl_0.101-1_source + libxml-atom-microformats-perl_0.003-3_source + libxml-atom-owl-perl_0.103-1_source + libxml-atom-perl_0.41-1_source + libxml-atom-service-perl_0.16.2-1_source + libxml-atom-simplefeed-perl_0.86-1_source + libxml-autowriter-perl_0.40-2_source + libxml-bare-perl_0.47-1_source + libxml-checker-perl_0.13-5_source + libxml-commonns-perl_0.06-1_source + libxml-commons-resolver1.1-java_1.2-7_source + libxml-csv-perl_0.15-8_source + libxml-dom-perl_1.44-1_source + libxml-dom-xpath-perl_0.14-1_source + libxml-dt-perl_0.62-1_source + libxml-dtdparser-perl_2.01-4_source + libxml-dumper-perl_0.81-1_source + libxml-easy-perl_0.009-1_source + libxml-easyobj-perl_1.12-3_source + libxml-encoding-perl_2.08-1_source + libxml-feed-perl_0.48+dfsg-1_source + libxml-feedpp-mediarss-perl_0.02-1_source + libxml-feedpp-perl_0.43-1_source + libxml-filter-buffertext-perl_1.01-5_source + libxml-filter-detectws-perl_0.01-7_source + libxml-filter-reindent-perl_0.03-7_source + libxml-filter-saxt-perl_0.01-7_source + libxml-filter-sort-perl_1.01-3_source + libxml-filter-xslt-perl_0.03-8_source + libxml-generator-perl_1.04-1_source + libxml-grddl-perl_0.003-1_source + libxml-grove-perl_0.46alpha-12_source + libxml-handler-composer-perl_0.01-7_source + libxml-handler-printevents-perl_0.01-7_source + libxml-handler-trees-perl_0.02-6_source + libxml-handler-yawriter-perl_0.23-6_source + libxml-java_1.1.6.dfsg-3_source + libxml-libxml-debugging-perl_0.102-1_source + libxml-libxml-iterator-perl_1.04-1_source + libxml-libxml-lazybuilder-perl_0.03-1_source + libxml-libxml-perl_2.0001+dfsg-1_source + libxml-libxml-simple-perl_0.91-1_source + libxml-libxslt-perl_1.77-1_source + libxml-mini-perl_1.38-2_source + libxml-namespace-perl_0.02-1_source + libxml-namespacefactory-perl_1.00-1_source + libxml-namespacesupport-perl_1.09-3_source + libxml-node-perl_0.11-7_source + libxml-nodefilter-perl_0.01-6_source + libxml-opml-perl_0.26-2_source + libxml-opml-simplegen-perl_0.06-1_source + libxml-parser-lite-tree-perl_0.14-1_source + libxml-parser-perl_2.41-1_source + libxml-perl_0.08-2_source + libxml-qofqsf-perl_0.05-1_source + libxml-quote-perl_1.02-2_source + libxml-regexp-perl_0.04-1_source + libxml-rss-feed-perl_2.212-1_source + libxml-rss-libxml-perl_0.3102+dfsg-1_source + libxml-rss-perl_1.49-1_source + libxml-rss-simplegen-perl_11.11-2_source + libxml-rsslite-perl_0.15+dfsg-2_source + libxml-sax-base-perl_1.07-1_source + libxml-sax-expat-incremental-perl_0.05-2_source + libxml-sax-expat-perl_0.40-2_source + libxml-sax-expatxs-perl_1.32-1_source + libxml-sax-machines-perl_0.42-1_source + libxml-sax-perl_0.99+dfsg-2_source + libxml-sax-writer-perl_0.53-1_source + libxml-security-java_1.4.5-1_source + libxml-semanticdiff-perl_1.00.00-1_source + libxml-simple-perl_2.20-1_source + libxml-simpleobject-perl_0.53-2_source + libxml-smart-perl_1.6.9-3_source + libxml-stream-perl_1.23-2_source + libxml-tidy-perl_1.12.B55J2qn-1_source + libxml-tmx-perl_0.22-1_source + libxml-tokeparser-perl_0.05-3_source + libxml-treebuilder-perl_4.0-1_source + libxml-treepp-perl_0.39-1_source + libxml-twig-perl_1:3.39-1_source + libxml-um-perl_0.01-8_source + libxml-validate-perl_1.025-2_source + libxml-validator-schema-perl_1.10-1_source + libxml-writer-perl_0.615-1_source + libxml-writer-simple-perl_0.08-1_source + libxml-writer-string-perl_0.1-1_source + libxml-xerces-perl_2.7.0-0+deb1-3_source + libxml-xpath-perl_1.13-7_source + libxml-xpathengine-perl_0.13-1_source + libxml-xql-perl_0.68-6_source + libxml-xslt-perl_0.48-3_source + libxml-xupdate-libxml-perl_0.6.0-1_source + libxml2_2.8.0+dfsg1-7+nmu2_source + libxmlada_4.1-2_source + libxmlezout_1.06.1-5_source + libxmlrpc3-java_3.1.3-5_source + libxmltok_1.2-3_source + libxmu_2:1.1.1-1_source + libxp_1:1.0.1-2+deb7u1_source + libxpm_1:3.5.10-1_source + libxpp2-java_2.1.10-7_source + libxpp3-java_1.1.4c-2_source + libxr_1.0-2.1_source + libxrandr_2:1.3.2-2+deb7u1_source + libxray-absorption-perl_3.0.1-1_source + libxray-scattering-perl_3.0.1-1_source + libxray-spacegroup-perl_0.1.1-2_source + libxrd-parser-perl_0.103-1_source + libxrender_1:0.9.7-1+deb7u1_source + libxres_2:1.0.6-1+deb7u1_source + libxsettings_0.11-3_source + libxsettings-client_0.17-6_source + libxslt_1.1.26-14.1_source + libxss_1:1.2.2-1_source + libxstream-java_1.4.2-1_source + libxt_1:1.1.3-1+deb7u1_source + libxtst_2:1.2.1-1+deb7u1_source + libxv_2:1.0.7-1+deb7u1_source + libxvmc_2:1.0.7-1+deb7u2_source + libxxf86dga_2:1.1.3-2+deb7u1_source + libxxf86vm_1:1.1.2-1+deb7u1_source + libyahoo2_1.0.1-1_source + libyaml_0.1.4-2+deb7u2_source + libyaml-appconfig-perl_0.16-2_source + libyaml-libyaml-perl_0.38-3_source + libyaml-perl_0.81-1_source + libyaml-shell-perl_0.60-1_source + libyaml-syck-perl_1.20-1_source + libyaml-tiny-perl_1.51-1_source + libyanfs-java_0.0+cvs20070825-4_source + libytnef_1.5-4_source + libyubikey_1.8-1_source + libzeep_2.9.0-2_source + libzeitgeist_0.3.18-1_source + libzen_0.4.27-2_source + libzerg_1.0.7-3_source + libzerg-perl_1.0.4-2_source + libzip_0.10.1-1.1_source + libzip-ruby_0.9.4-1_source + libzn-poly_0.8-1.1_source + libzorpll_3.9.1.3-1_source + libzrtpcpp_2.0.0-3_source + lice_1:4.2.5i-1_source + lice5_1:5.2.3-1_source + licq_1.6.1-3_source + lie_2.2.2+dfsg-2_source + liece_2.0+0.20030527cvs-11_source + lifelines_3.0.61-2_source + lifeograph_0.8.2.dfsg-1_source + liferea_1.8.6-1.1_source + liggghts_1.5.3-1_source + lightdm_1.2.2-4_source + lightdm-gtk-greeter_1.1.6-2_source + lightproof_1.5~b3-3_source + lightspark_0.6.0.1-2_source + lightspeed_1.2a-8_source + lightsquid_1.8-3_source + lighttpd_1.4.31-4+deb7u2_source + lightyears_1.4-1_source + lilo_1:23.2-4_source + lilo-installer_1.41_source + lilv_0.14.2~dfsg0-4_source + lilypond_2.14.2-4_source + linaro-image-tools_2012.06-1_source + lincity_1.13.1-11_source + lincity-ng_2.0-2_source + lincredits_0.7_source + lingot_0.9.1-2_source + link-grammar_4.7.4-2_source + link-monitor-applet_3.0-8_source + linkchecker_7.9-2_source + linklint_2.3.5-5_source + links2_2.7-1+deb7u1_source + linphone_3.5.2-10_source + linpsk_1.1-1.1_source + linsmith_0.99.21-1_source + lintex_1.11-1_source + linthesia_0.4.2-3_source + lintian_2.5.10.4_source + linux_3.2.41-2_source + linux_3.2.54-1_source + linux_3.2.54-2_source + linux-atm_1:2.5.1-1.5_source + linux-base_3.5_source + linux-ftpd_0.17-34_source + linux-ftpd-ssl_0.17.33+0.3-1_source + linux-igd_1.0+cvs20070630-4_source + linux-latest_46_source + linux-ntfs_2.0.0-1_source + linux-patch-debianlogo_1.16_source + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_source + linux-tools_3.2.17-1_source + linux-wlan-ng_0.2.9+dfsg-5_source + linux86_0.16.17-3.1_source + linuxdcpp_1.1.0-1_source + linuxdoc-tools_0.9.68_source + linuxinfo_1.1.8-39_source + linuxlogo_5.11-1_source + linuxtv-dvb-apps_1.1.1+rev1483-1_source + lio-utils_3.1+git2.fd0b34fd-2_source + liquidsoap_1.0.1+repack1-1.1_source + liquidwar_5.6.4-3_source + lirc_0.9.0~pre1-1_source + lire_2:2.1.1-2_source + lisaac_1:0.39~rc1-1_source + listadmin_2.40-4_source + listaller_0.5.5-2_source + literki_0.0.0+20100113.git1da40724-1_source + littler_0.1.5-1_source + littlewizard_1.2.2-1_source + live-boot_3.0.1-1_source + live-build_3.0.5-1_source + live-config_3.0.23-1_source + live-f1_0.2.10-1_source + live-installer_39_source + live-manual_1:3.0.2-1_source + live-tools_3.0.20-1_source + livehttpheaders_0.17-3_source + lives_1.6.2~ds1-2_source + livetribe-jsr223_2.0.6-1_source + liwc_1.21-1_source + lksctp-tools_1.0.11+dfsg-2_source + ll-scope_0.2.1-3_source + lldpad_0.9.44-1_source + lldpd_0.5.7-2_source + llgal_0.13.17-2_source + lltag_0.14.4-2_source + llvm-2.9_2.9+dfsg-7_source + llvm-3.0_3.0-10_source + llvm-3.1_3.1-1_source + llvm-defaults_0.14+nmu2_source + llvm-py_0.6+svn105-2_source + lm-sensors_1:3.3.2-2+deb7u1_source + lmarbles_1.0.7-1.1_source + lme4_0.999999-0-1_source + lmemory_0.6c-6_source + lmms_0.4.10-2.3_source + lmodern_2.004.2-1_source + lmtest_0.9.30-1_source + lnpd_0.9.0-7_source + loadlin_1.6f-1_source + loadmeter_1.20-6_source + loadwatch_1.0+1.1alpha1-5_source + localechooser_2.53_source + localepurge_0.6.3+deb7u1_source + localization-config_1.07+nmu1_source + localizer_1.13-2_source + lockdev_1.0.3-1.5_source + lockfile-progs_0.1.17_source + lockout_0.2.3-2_source + log4c_1.2.1-3_source + log4cplus_1.0.4-1_source + log4cpp_1.0-4_source + log4cpp-doc_1.0-1_source + log4cxx_0.10.0-1.2_source + log4net_1.2.10+dfsg-6_source + log4shib_1.0.4-1_source + logapp_0.15-1_source + logback_1:1.0.4-1_source + logcheck_1.3.15_source + logfs-tools_20110927-1_source + loggerhead_1.19~bzr461-1_source + logidee-tools_1.2.12_source + logilab-astng_0.23.1-1_source + logilab-common_0.58.0-1_source + logilab-constraint_0.4.0-5_source + logisim_2.7.1~dfsg-1_source + logjam_4.6.2-1_source + logreq_1.0-1_source + logrotate_3.8.1-4_source + logservice_2.7-1_source + logstalgia_1.0.3-3_source + logtool_1.2.8-8_source + logtools_0.13d_source + logtop_0.4.3-1_source + logwatch_7.4.0+svn20120502rev103-1_source + lojban-common_1.5+dfsg-0.1_source + loki_2.4.7.4-4_source + londonlaw_0.2.1-15.1_source + longomatch_0.16.8+git20110626-1_source + longrun_0.9-22_source + lookup_1.08b-11_source + lookup-el_1.4.1-8_source + looptools_2.7-1_source + loqui_0.5.3-3_source + lordsawar_0.2.0-2.1_source + lostirc_0.4.6-4_source + lottanzb_0.6-1_source + loudmouth_1.4.3-9_source + louie_1.1-1.1_source + lout_3.39-1_source + love_0.8.0-1+deb7u1_source + lowmem_1.38_source + lowpan-tools_0.2.2-2.1_source + lp-solve_5.5.0.13-7_source + lpe_1.2.6.13-0.1_source + lphdisk_0.9.1.ds1-1_source + lpr_1:2008.05.17+nmu1_source + lprng_3.8.B-2_source + lprng-doc_3.8.A~rc2-3_source + lptools_0.0.1~bzr38-1_source + lrslib_0.42c-1_source + lrzip_0.608-2_source + lrzsz_0.12.21-5_source + lsadb_1:0.1.3-1_source + lsat_0.9.7.1-2_source + lsb_4.1+Debian8+deb7u1_source + lsdb_0.11-10_source + lsdvd_0.16-3_source + lsh-utils_2.0.4-dfsg-11_source + lshell_0.9.15.1-1_source + lshw_02.16-1_source + lsmbox_2.1.2-1_source + lsof_4.86+dfsg-1_source + lsscsi_0.26-2_source + lsyncd_2.0.7-3_source + ltpanel_0.2-5_source + ltrace_0.5.3-2.1_source + ltris_1.0.18-1_source + ltsp_5.4.2-6_source + ltsp-docs_1.1-1_source + ltspfs_1.1-2_source + ltt-control_0.89-05122011-1_source + lttoolbox_3.1.0-1.1_source + lttv_0.12.38-21032011-1_source + lua-apr_0.23.2-1_source + lua-bitop_1.0.2-1_source + lua-cgi_5.1.4+dfsg-2_source + lua-copas_1.1.6-5_source + lua-cosmo_10.04.06-4_source + lua-coxpcall_1.13.0-6_source + lua-curl_0.3.0-7_source + lua-cyrussasl_1.0.0-4_source + lua-dbi_0.5+svn78-4_source + lua-doc_3.0.1-5_source + lua-event_0.4.1-2_source + lua-expat_1.2.0-5_source + lua-filesystem_1.5.0+16+g84f1af5-1_source + lua-iconv_7-1_source + lua-json_1.3-1_source + lua-ldap_1.1.0-1-geeac494-3_source + lua-leg_0.1.2-8_source + lua-lgi_0.6.2-1_source + lua-logging_1.2.0-1_source + lua-lpeg_0.10.2-5_source + lua-markdown_0.32-4_source + lua-md5_1.1.2-6_source + lua-mode_20110121-1_source + lua-orbit_2.2.0+dfsg1-1_source + lua-penlight_1.0.2+htmldoc-2_source + lua-posix_5.1.19-2_source + lua-rexlib_2.6.0-2_source + lua-rings_1.2.3-1_source + lua-sec_0.4.1-1_source + lua-soap_3.0-3_source + lua-sql_2.3.0-1+build0_source + lua-svn_0.4.0-7_source + lua-wsapi_1.5-3_source + lua-xmlrpc_1.2.1-5_source + lua-zip_1.2.3-11_source + lua-zlib_0.2-1_source + lua5.1_5.1.5-4_source + lua5.1-policy_33_source + lua5.2_5.2.1-3_source + lua50_5.0.3-6_source + luabind_0.9.1+dfsg-5_source + luakit_2012.03.25-1_source + luarocks_2.0.9-1_source + luasocket_2.0.2-8_source + luasseq_2.1-4_source + luatex_0.70.1.20120524-3_source + lucene-solr_3.6.0+dfsg-1_source + lucene2_2.9.4+ds1-4_source + luckybackup_0.4.7-2_source + ludevit_7_source + luminance-hdr_2.2.1-3_source + lunar_2.2-3.1_source + lunar-date_2.4.0-1_source + lunch_0.4.0-1_source + lunzip_1.1-2_source + luola_1.3.2-9_source + luola-levels_6.0-5_source + luola-nostalgy_1.2-3_source + lurker_2.3-3_source + lusernet.app_0.4.2-6_source + lush_1.2.1-9+cvs20110227+nmu1_source + lutefisk_1.0.5a.cleaned-1_source + luvcview_1:0.2.6-6_source + lv_4.51-2_source + lv2_1.0.0~dfsg2-2_source + lv2-c++-tools_1.0.4-3_source + lv2core_6.0+dfsg0-2_source + lv2dynparam1_2-5_source + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_source + lv2file_0.83-1_source + lv2proc_0.4.0-4_source + lv2vocoder_1-3_source + lvm2_2.02.95-8_source + lvmcfg_1.29_source + lwatch_0.6-1_source + lwipv6_1.5a-2_source + lwjgl_2.7.1+dfsg-3_source + lwm_1.2.2-4_source + lwt_2.3.2-1_source + lx-gdb_1.03-14_source + lxappearance_0.5.2-1_source + lxappearance-obconf_0.2.0-4_source + lxc_0.8.0~rc1-8+deb7u2_source + lxctl_0.3.1+debian-2_source + lxde-common_0.5.5-6_source + lxde-icon-theme_0.5.0-1_source + lxde-metapackages_4+nmu1_source + lxinput_0.3.2-1_source + lxlauncher_0.2.2-3_source + lxmenu-data_0.1.2-2_source + lxml_2.3.2-1_source + lxmms2_0.1.3-1_source + lxmusic_0.4.4+git20100802-3_source + lxpanel_0.5.10-1_source + lxpolkit_0.1.0-4_source + lxrandr_0.1.2-3_source + lxsession_0.4.6.1-4_source + lxsession-edit_0.2.0-3_source + lxshortcut_0.1.2-3_source + lxtask_0.1.4-3_source + lxterminal_0.1.11-4_source + lybniz_1.3.2-2_source + lynis_1.3.0-1_source + lynkeos.app_1.2-6_source + lynx-cur_2.8.8dev.12-2_source + lyskom-elisp-client_0.48+cvs20100715-3_source + lyskom-server_2.1.2-13_source + lyx_2.0.3-3_source + lzip_1.13-3_source + lziprecover_1.13-2_source + lzlib_1.3-2_source + lzma_9.22-2_source + lzo2_2.06-1_source + lzop_1.03-3_source + m-tx_0.60d-5_source + m16c-flash_0.1-1.1_source + m17n-contrib_1.1.13-2_source + m17n-db_1.6.3-2_source + m17n-docs_1.6.2-2_source + m17n-im-config_0.9.0-3_source + m17n-lib_1.6.3-2_source + m2300w_0.51-7_source + m2crypto_0.21.1-2_source + m2vrequantiser_1.1-1_source + m4_1.4.16-3_source + mac-fdisk_0.1-16_source + mac-widgets_0.9.5+svn369-dfsg1-3_source + macchanger_1.5.0-9_source + macchanger-gtk_1.1-4_source + mach_0.9.1-3.1_source + macopix_1.7.4-4_source + mactelnet_0.3.4-1_source + macutils_2.0b3-16_source + madbomber_0.2.5-5_source + madison-lite_0.15_source + madlib_1.3.0-2.1_source + madplay_0.15.2b-8_source + madwimax_0.1.1-1_source + maelstrom_1.4.3-L3.0.6+main-2_source + mafft_6.864-1_source + magic_7.5.220-1_source + magic-haskell_1.0.8-8_source + magicfilter_1.2-64_source + magicmaze_1.4.3.2.dfsg-1.1_source + magicor_1.1-4_source + magicrescue_1.1.8-1_source + magics++_2.14.11-4_source + magit_1.1.1-2_source + magpierss_0.72-10_source + magyarispell_1.2+repack-2_source + mah-jong_1.11-2_source + mail-expire_0.7_source + mail-notification_5.4.dfsg.1-6_source + mail-spf-perl_2.8.0-1_source + mailagent_1:3.1-74-0.2_source + mailavenger_0.8.3rc1-1_source + mailcheck_1.91.2-2_source + mailcrypt_3.5.9-5_source + maildir-filter_1.20-3_source + maildir-utils_0.9.8.4-3+deb7u1_source + maildirsync_1.2-1_source + maildrop_2.5.5-2_source + mailfilter_0.8.2-4_source + mailfront_1.16-1_source + mailgraph_1.14-11_source + mailman_1:2.1.15-1_source + mailping_0.0.4-2_source + mailplate_0.2-1_source + mailsync_5.2.2-3_source + mailtextbody_0.1.2-1_source + mailto_1.3.2-3_source + mailutils_1:2.99.97-3_source + main-menu_1.39_source + maint-guide_1.2.31_source + mairix_0.22-1_source + maitreya_6.0.5-2_source + make-dfsg_3.81-8.2_source + makebootfat_1.4-5_source + makedev_2.3.1-92_source + makedumpfile_1.4.3-1_source + makefs_20100306-3_source + makejail_0.0.5-10_source + makejvf_1.1a+0-2_source + makepasswd_1.10-8_source + makepatch_2.03-1_source + makeself_2.1.5-1_source + makexvpics_1.0.1-2_source + mako_0.7.0-1.1_source + malaga_7.12-4_source + maloc_0.2-2.3_source + man-db_2.6.2-1_source + man-pages-it_2.80-3_source + man2html_1.6g-6_source + mana_0.6.1-2_source + mancala_1.0.1-4_source + mandelbulber_1:1.11-1_source + manderlbot_0.9.2-17_source + mandos_1.5.5-1_source + mangler_1.2.4-1_source + mango-lassi_001+dfsg-5_source + manpages_3.44-1_source + manpages-de_1.2-1_source + manpages-es_1.55-10_source + manpages-es-extra_0.8a-17_source + manpages-fr_3.44d1p1-1_source + manpages-fr-extra_20130226_source + manpages-hu_20010119-5_source + manpages-ja_0.5.0.0.20120606-1_source + manpages-pl_1:0.3-1_source + manpages-pt_20040726-4_source + manpages-ru_0.98-4_source + manpages-tr_1.0.5.1-2_source + manpages-zh_1.5.2-1_source + mantis_1.2.11-1.2_source + mapivi_0.9.7-1_source + mapnik_2.0.0+ds1-3_source + mapserver_6.0.1-3.2+deb7u2_source + maptransfer_0.3-1_source + maq_0.7.1-5_source + maqview_0.2.5-4_source + maradns_1.4.12-5_source + marble_4:4.8.4-3_source + maria_1.3.5-4_source + markdown_1.0.1-7_source + markupsafe_0.15-1_source + mason_1.0.0-12.3_source + masqmail_0.2.30-1_source + massxpert_3.2.3-1_source + mat_0.3.2-1_source + matanza_0.13+ds1-1_source + matchbox_1:5_source + matchbox-common_0.9.1-5_source + matchbox-desktop_2.0-4_source + matchbox-keyboard_0.1+svn20080916-9_source + matchbox-panel_0.9.3-8_source + matchbox-panel-manager_0.1-6_source + matchbox-themes-extra_0.3-3_source + matchbox-window-manager_1.2-osso21-1_source + matchit_2.4-18-1_source + mathgl_1.11.2-17_source + mathjax_1.1-2_source + mathomatic_15.8.2-2_source + mathpartir_1.2.0-3_source + mathpiper_0.81f+svn4469+dfsg3-1_source + mathtex_1.03-1_source + mathwar_0.2.5-2_source + matita_0.99.1-1_source + matlab-support_0.0.18_source + matplotlib_1.1.1~rc2-1_source + matrixssl_1.8.8-1_source + matroxset_0.4-8_source + maude_2.6-2_source + mauve_20120103-1_source + maven_3.0.4-3_source + maven-ant-helper_7.7_source + maven-ant-tasks_2.1.3-2_source + maven-antrun-extended-plugin_1.42-1_source + maven-antrun-plugin_1.6-2_source + maven-archiver_2.4-4_source + maven-assembly-plugin_2.2~beta5-2_source + maven-bundle-plugin_2.3.5-1_source + maven-clean-plugin_2.3-5_source + maven-common-artifact-filters_1.2-1_source + maven-compiler-plugin_2.0.2-6_source + maven-debian-helper_1.5.1_source + maven-dependency-analyzer_1.2-1_source + maven-dependency-plugin_2.1-4_source + maven-dependency-tree_1.2-4_source + maven-docck-plugin_1.0-4_source + maven-doxia-tools_1.2.1-2_source + maven-ear-plugin_2.3.2-3_source + maven-ejb-plugin_2.2-2_source + maven-embedder_2.0.4-3_source + maven-enforcer_1.0-1_source + maven-file-management_1.2.1-3_source + maven-filtering_1.0~beta-2-5_source + maven-hpi-plugin_1.79-3_source + maven-install-plugin_2.3-4_source + maven-invoker_2.0.11-1_source + maven-invoker-plugin_1.5-2_source + maven-jar-plugin_2.2-6_source + maven-javadoc-plugin_2.6.1-2_source + maven-parent_21-2_source + maven-plugin-testing_1.2-3_source + maven-plugin-tools_2.8-2_source + maven-project-info-reports-plugin_2.4-1_source + maven-repo-helper_1.7.1_source + maven-reporting-impl_2.1-1_source + maven-repository-builder_1.0~alpha2-3_source + maven-resources-plugin_2.3-7_source + maven-scm_1.3-4_source + maven-shade-plugin_1.2.1-4_source + maven-shared-io_1.1-4_source + maven-shared-jar_1.1-1_source + maven-site-plugin_2.1-2_source + maven-stapler-plugin_1.16-4_source + maven-verifier_1.2-1_source + maven-war-plugin_2.1.1-1_source + maven2_2.2.1-12_source + maven2-core_2.2.1-8_source + mawk_1.3.3-17_source + maxima_5.27.0-3_source + maximus_0.4.14-3_source + mayavi2_4.1.0-1_source + mazeofgalious_0.62.dfsg2-3_source + mb2md_3.20-4_source + mbot_0.3-7_source + mboxcheck_0.2.0_source + mboxgrep_0.7.9-1_source + mbr_1.1.11-5_source + mbt_3.2.8-1_source + mbtserver_0.5-2_source + mbuffer_20110119-2_source + mbw_1.2.2-1_source + mc_3:4.8.3-10_source + mcabber_0.10.1-3_source + mccs_1:1.1-2_source + mcdp_0.4-5_source + mcelog_1.0~pre3-72-gcbd4da4-1_source + mcl_1:12-068-1_source + mclibs_20061220+dfsg3-2_source + mcmcpack_1.2-3-1_source + mcollective_2.0.0+dfsg-2_source + mcomix_0.98-1_source + mcp-plugins_0.4.0-2_source + mcpp_2.7.2-1.1_source + mcrl2_201202.0-2_source + mcron_1.0.6-1_source + mcrypt_2.6.8-1.3_source + mcs_0.7.2-2.1_source + mcu8051ide_1.3.7-1_source + md5deep_4.2-1_source + mda-lv2_1.0.0~dfsg0-1_source + mdadm_3.2.5-5_source + mdbtools_0.7-1+deb7u1_source + mdbus_2.3.0-1_source + mdcfg_1.40_source + mdds_0.5.4-1_source + mdetect_0.5.2.3_source + mdf2iso_0.3.0-2_source + mdk_1.2.6+dfsg-1_source + mdm_0.1.3-2_source + mdns-scan_0.5-1_source + mdp_3.3-1_source + me-tv_1.3.7-0.2_source + meanwhile_1.0.2-4_source + mecab_0.99.3-3_source + mecab-ipadic_2.7.0-20070801+main-1_source + mecab-jumandic_5.1+20070304-3_source + mecab-naist-jdic_0.6.3.b-20111013-3_source + med-fichier_3.0.3-3_source + media-player-info_17-1_source + media-retriever_1.28_source + mediainfo_0.7.58-1_source + mediatomb_0.12.1-4_source + mediawiki_1:1.19.5-1+deb7u1_source + mediawiki-extensions_2.11_source + mediawiki-math_2:1.0+git20120528-6_source + medicalterms_20110608-1_source + medit_1.0.93-1_source + mednafen_0.8.D.3-6_source + medusa_2.0-3.1_source + meep_1.1.1-8_source + meep-lam4_1.1.1-10~deb7u1_source + meep-mpi-default_1.1.1-10~deb7u1_source + meep-mpich2_1.1.1-10~deb7u1_source + meep-openmpi_1.1.1-9~deb7u1_source + megaglest_3.6.0.3-1.2_source + megaglest-data_3.6.0.3-1_source + melange_1:2012.1-3_source + meld_1.6.1-1_source + meliae_0.4.0-1_source + melting_4.3c-2_source + members_20080128-5_source + memcached_1.4.13-0.2+deb7u1_source + memcachedb_1.2.0-9_source + memchan_2.3-2_source + memdump_1.01-6.1_source + memlockd_1.1.1_source + memphis_0.2.3-2_source + memstat_0.9_source + memtest86_4.0s-1_source + memtest86+_4.20-1.1_source + memtester_4.2.2-1_source + mencal_2.3-9_source + mendexk_2.6e-3.2_source + menhir_20120123.dfsg-1_source + mensis_0.0.080507-3_source + menu_2.1.46_source + menu-cache_0.3.3-1_source + menu-l10n_0.20120730_source + menu-xdg_0.5_source + mercator_0.3.0-2_source + mercurial_2.2.2-3_source + mercurial-server_1.2-2_source + mergelog_4.5.1-9_source + merkaartor_0.18.1-3_source + mesa_8.0.5-4+deb7u2_source + mesa-demos_8.0.1-2_source + meschach_1.2b-13_source + meshlab_1.3.0a+dfsg1-3_source + meta-gnome3_1:3.4+7+deb7u1_source + meta-gnustep_7.7_source + meta-kde_5:77+deb7u1_source + meta-kde-telepathy_0.4.0_source + meta-ocaml_3.12.0.1_source + meta-unison_2.40+1_source + metacam_1.2-5_source + metacity_1:2.34.3-4_source + metacity-themes_1.0.11_source + metaconfig_0.1.4a1-1_source + metainf-services_1.4-1_source + metainit_0.0.5_source + metalink_0.3.6-2_source + metapixel_1.0.2-7.1_source + metar_20061030.1-2_source + metastore_1+20080623+debian-3_source + metatheme-gilouche_11.1.2-2_source + metche_1:1.2.2-2_source + meterbridge_0.9.2-11_source + meterec_0.8~ds0-1_source + mew_1:6.4-2_source + mew-beta_7.0.50~6.5~rc2+0.20120405-1_source + mffm-fftw_1.7-3_source + mffm-timecode_1.6-2_source + mftrace_1.2.17-1_source + mg_20110905-1.1_source + mga-vid_2.6.32-1_source + mgcv_1.7-13-1_source + mgdiff_1.0-29_source + mgen_5.02+dfsg2-3_source + mgetty_1.1.36-1.6_source + mgm_1.1.svn.20080520-1_source + mgp_1.13a+upstream20090219-6_source + mgt_2.31-6_source + mh-book_200605-1_source + mh-e_8.3-1.1_source + mha4mysql-manager_0.53-3_source + mha4mysql-node_0.53-1_source + mhash_0.9.9.9-1.1_source + mhc_0.25.1+20120403-2_source + mhddfs_0.1.39_source + mhonarc_2.6.18-2_source + mhwaveedit_1.4.21-2_source + mic2_0.24.12-1_source + micro-evtd_3.4-2_source + micro-httpd_20051212-15_source + micro-inetd_20050629-5_source + micro-proxy_20021030+debian-5_source + microcom_2012.06.0-2_source + microdc2_0.15.6-2_source + micropolis-activity_0.0.20071228-5_source + midge_0.2.41-2_source + mididings_0~20120419~ds0-1_source + midish_1.0.4-1.1_source + midori_0.4.3+dfsg-0.1_source + mig_1.3.1.99.git20120630-1_source + migrate_0.7.2-3_source + migrationtools_47-8_source + mii-diag_2.11-3_source + mikmatch_1.0.4-1_source + mikmod_3.2.1-4_source + milkytracker_0.90.85+dfsg-2.2_source + milter-greylist_4.3.9-1_source + mime-construct_1.11_source + mime-support_3.52-1_source + mimedefang_2.71-3_source + mimefilter_1.7+nmu1_source + mimelib1_5:1.1.4-2_source + mimetex_1.73-2_source + mimetic_0.9.7-3_source + mimms_3.2.2-1_source + min12xxw_0.0.9-6_source + mina_1.1.7.dfsg-10_source + mina2_2.0.4+dfsg-2_source + minbar_0.2.1-7_source + minbif_1:1.0.5+git20120508-2.1_source + minc_2.1.10-1_source + minetest_0.3.1+dfsg-4_source + ming_1:0.4.4-1.1_source + mingetty_1.08-2_source + mingw-ocaml_3.12.1+debian3_source + mingw-w64_2.0.3-1_source + mingw32_4.2.1.dfsg-2_source + mingw32-binutils_2.20-0.2_source + mingw32-runtime_3.13-1_source + mini-dinstall_0.6.29_source + mini-httpd_1.19-9.3_source + mini18n_0.2.1-1_source + minicom_2.6.1-1_source + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_source + minidlna_1.0.24+dfsg-1_source + minimodem_0.8.1-1_source + minirok_2.1-1_source + minisapserver_0.3.6-1_source + minisat+_1.0-2_source + minisat2_1:2.2.1-3_source + minissdpd_1.1.20120121-1_source + ministat_20100628-1_source + minit_0.10-5_source + miniupnpc_1.5-2_source + minlog_4.0.99.20100221-5.2_source + minpack_19961126+dfsg1-1_source + mipe_1.1-4_source + mira_3.4.0.1-3_source + mirage_0.9.5.1-1.1_source + miredo_1.2.3-1.1_source + mirmon_2.6-2_source + miro_4.0.4-1_source + mirrormagic_2.0.2.0deb1-11_source + misc3d_0.8-2-1_source + miscfiles_1.4.2.dfsg.1-9_source + misery_0.2-1_source + missidentify_1.0-6_source + missingh_1.1.0.3-6_source + mistelix_0.33-3_source + mit-scheme_9.1-1_source + mitmproxy_0.8-2_source + miwm_1.1-3_source + mixal_1.08-11_source + mixer.app_1.8.0-5_source + mixmaster_3.0.0-6_source + mixxx_1.10.1~dfsg0-1_source + mkcue_1-2.1_source + mkelfimage_2.7-7_source + mkgmap_0.0.0+svn1067-1_source + mkgmapgui_1.1.ds-2_source + mklibs_0.1.34_source + mknbi_1.4.4-9_source + mknfonts.tool_0.5-11_source + mksh_40.9.20120630-7_source + mktorrent_1.0-4_source + mkvmlinuz_36_source + mkvtoolnix_5.6.0-1_source + mldonkey_3.1.2-1_source + mlgmp_20021123-17_source + mlmmj_1.2.18.0-2_source + mlocate_0.23.1-1_source + mlpcap_0.9-16_source + mlpost_0.8.1-3_source + mlpy_2.2.0~dfsg1-2_source + mlt_0.8.0-4_source + mlterm_3.1.2-1.3_source + mlton_20100608-5_source + mlv-smile_1.47-3_source + mm_1.4.2-4_source + mm-common_0.9.5-1_source + mm3d_1.3.7-1.4_source + mmake_2.3-5.1_source + mmass_5.1.0-2_source + mmm-mode_0.4.8-7_source + mmorph_2.3.4.2-12.1_source + mmpong_0.9.1-2.1_source + mmv_1.01b-15_source + mnemosyne_2.0~RC1-3_source + mnemosyne-blog_0.12-2_source + mnormt_1.4-5-1_source + moap_0.2.7-1_source + mobile-atlas-creator_1.9.7-1_source + mobile-broadband-provider-info_20120708-1_source + moblin-cursor-theme_0.3-3_source + moblin-gtk-engine_1.1.1-1.1_source + moblin-icon-theme_0.10.0-1_source + moblin-menus_0.1.6-1_source + moblin-sound-theme_0.3-1_source + mobyle_1.0.6~dfsg-1_source + mobyle-programs_4.0-1_source + moc_1:2.5.0~alpha4+svn20120224-1_source + mochikit_1.4.2-4_source + mocker_1.0-2_source + mockito_1.9.0+ds1-2_source + mockobjects_0.09-4_source + mod-auth-mysql_4.3.9-13.1_source + mod-authn-webid_0~20110301-1_source + mod-dnssd_0.6-3_source + mod-gearman_1.3.6-1_source + mod-gnutls_0.5.10-1.1_source + mod-mime-xattr_0.4-4_source + mod-mono_2.10-3.2_source + mod-proxy-html_3.0.1-1.1_source + mod-ruby_1.2.6-2_source + mod-spamhaus_0.7-1_source + mod-vhost-hash-alias_1.0-2_source + mod-vhost-ldap_2.0.8-1_source + mod-wsgi_3.3-4_source + model-builder_0.4.1-6_source + modello_1.1-2_source + modello-maven-plugin_1.1-2_source + modello-maven-plugin1.4_1.4.1-1_source + modello1.4_1.4.1-1_source + modem-cmd_0.0.2_source + modemmanager_0.5.2.0-2_source + modestmaps-py_1.3.1-1_source + modglue_1.17-2.1_source + modplugtools_0.5.3-1_source + modsecurity-apache_2.6.6-6+deb7u1_source + modsecurity-crs_2.2.5-2_source + module-assistant_0.11.4_source + module-build-cipux_0.4.0-7_source + modules_3.2.9c-3_source + moin_1.9.4-8+deb7u2_source + mojarra_2.0.3-2_source + mokomaze_0.5.5+git8+dfsg0-3_source + molly-guard_0.4.5-1_source + mon_1.2.0-6_source + mon-client_1.2.0-2_source + mon-contrib_1.0+dfsg-2_source + mona_1.4-13-3_source + monajat_2.6.3-1_source + monav_0.3-6_source + mondrian_1:3.4.1-1_source + mongodb_1:2.0.6-1.1_source + monit_1:5.4-2_source + monkeysphere_0.35-2_source + monkeystudio_1.9.0.2-2_source + monkeytail_0.3.2-3_source + mono_2.10.8.1-8_source + mono-addins_0.6.2-2_source + mono-basic_2.10-2_source + mono-fuse_0.4.2+dfsg-3_source + mono-tools_2.10-6_source + mono-uia_2.1-4_source + mono-uia-atkbridge_2.1-2_source + mono-uia-winforms_2.1-2_source + mono-upnp_0.1.2-1_source + mono-zeroconf_0.9.0-4_source + mono.reflection_1.0+git20110407+d2343843-2_source + monobristol_0.60.3-2.1_source + monodevelop_3.0.3.2+dfsg-1_source + monodevelop-database_3.0.3.2+dfsg-1_source + monodevelop-debugger-gdb_3.0.3.2-1_source + monogame_2.5.1+dfsg-3_source + monopd_0.9.3-6_source + monotone_1.0-6_source + monotone-viz_1.0.2-2_source + monster-masher_1.8.1-6_source + monsterz_0.7.1-4_source + moodbar_0.1.2-3_source + moon-buggy_1.0.51-9.1_source + moon-lander_1:1.0-4.1_source + mooproxy_1.0.0-1_source + moosic_1.5.6-1_source + mootools_1.4.5~debian1-2.1_source + moovida_1.0.9+bzr1614-1.1_source + moovida-plugins-bad_1.0.9+bzr1614-1_source + moovida-plugins-good_1.0.9+bzr1614-1_source + moovida-plugins-ugly_1.0.9+bzr1614-1_source + mopac7_1.15-5_source + mopd_1:2.5.3-21_source + moreutils_0.47_source + morfologik-stemming_1.2.2-1.1_source + moria_5.6-2_source + morla_0.16.1-1.1_source + morse_2.4-2_source + morse-simulator_0.5.2-1_source + morsegen_0.2.1-1_source + mosh_1.2.3-1_source + mosquitto_0.15-2_source + most_5.0.0a-2.1_source + mothur_1.24.1-1_source + motion_3.2.12-3.4_source + mountall_2.46_source + mountfloppy_0.16_source + mountmedia_0.22_source + mountpy_0.8.1_source + mouseemu_0.15-9_source + mousepad_0.2.16-6_source + mousetrap_0.9-2.2_source + mousetweaks_3.4.2-1_source + mova_4.0-4.2_source + movabletype-opensource_5.1.4+dfsg-4+deb7u1_source + movixmaker-2_0.8.4-2_source + mozart_1.4.0-8_source + mozart-stdlib_20060615-6_source + mozc_1.5.1090.102-4+deb7u1_source + mozilla-devscripts_0.32_source + mozilla-dom-inspector_1:2.0.11-1_source + mozilla-noscript_2.1.4-1_source + mozjs_1.8.5-1.0.0+dfsg-4_source + mozvoikko_2.0.1-1_source + mp_3.7.1-11_source + mp3blaster_1:3.2.5-3_source + mp3burn_0.4.2-2.1_source + mp3cd_1.27.0-2_source + mp3check_0.8.7-1_source + mp3diags_1.0.11.076-3_source + mp3fs_0.31-28-g7b30a54-1_source + mp3gain_1.5.2-r2-2_source + mp3info_0.8.5a-1_source + mp3rename_0.6-9_source + mp3report_1.0.2-3_source + mp3roaster_0.3.0-6_source + mp3splt_2.4.2-2_source + mp3splt-gtk_0.7.2-2_source + mp3val_0.1.8-1_source + mp3wrap_0.5-3_source + mp4h_1.3.1-6_source + mp4v2_2.0.0~dfsg0-1_source + mpack_1.6-8_source + mpage_2.5.6-1_source + mpb_1.4.2-18_source + mpc_0.22-1_source + mpc123_0.2.4-2_source + mpclib_0.9-4_source + mpd_0.16.7-2_source + mpd-sima_0.9.2-2_source + mpdcon.app_1.1.99-5_source + mpdcron_0.3+git20110303-3_source + mpdris_0.1.2-2_source + mpdscribble_0.22-3_source + mpdtoys_0.24_source + mpeg2dec_0.4.1-3_source + mpegdemux_0.1.4-3_source + mpfi_1.5.1-1_source + mpfr4_3.1.0-5_source + mpg123_1.14.4-1_source + mpg123-el_1:1.58-1_source + mpg321_0.3.2-1.1_source + mpgtx_1.3.1-5_source + mpi-defaults_1.0.1_source + mpi4py_1.3+hg20120611-3_source + mpich2_1.4.1-4.2_source + mpj_0.38~dfsg-1_source + mplayer_2:1.0~rc4.dfsg1+svn34540-1_source + mplayer-blue_1.6-2_source + mplayer2_2.0-554-gf63dbad-1_source + mpmath_0.17-1_source + mpop_1.0.27-1_source + mppenc_1.16-1.1_source + mpqc_2.3.1-14_source + mpris-remote_0.0~1.gpb7c7f5c6-1_source + mpt-status_1.2.0-7_source + mr_1.12_source + mrb_0.1_source + mrbayes_3.2.1+dfsg-1_source + mrd6_0.9.6-10_source + mrename_1.2-12_source + mriconvert_2.0.235-1_source + mricron_0.20120505.1~dfsg.1-1_source + mrmpi_1.0~20110620.dfsg-2_source + mrtg_2.17.4-2_source + mrtg-ping-probe_2.2.0-1_source + mrtg-rrd_0.7-5_source + mrtgutils_0.8.1_source + mrtrix_0.2.10-2_source + mrxvt_0.5.4-1.1_source + mscgen_0.20-2_source + mscompress_0.3-4_source + msgpack_0.5.7-2_source + msgpack-python_0.1.10-1_source + msmtp_1.4.28-1_source + msn-pecan_0.1.3-1_source + msnlib_3.8-1_source + msort_8.52-1.3_source + msp430-libc_20120224-1_source + msp430mcu_20120406-2_source + mspdebug_0.19-1_source + msr-tools_1.2-3_source + msrtool_0.0+r4091-1_source + mssh_1.2-1.1_source + mstflint_1.4-OFED-1.4.2-1_source + msv_2009.1+dfsg1-3_source + msva-perl_0.8.1-2_source + mswatch_1.2.0-2.1_source + mt-st_1.1-4_source + mtasc_1.14-2_source + mtbl_0.2-1_source + mtd-utils_1:1.5.0-1_source + mtdev_1.1.2-1_source + mtink_1.0.16-6_source + mtkbabel_0.8.3.1-1_source + mtools_4.0.17-1_source + mtpaint_3.40-1_source + mtr_0.82-3_source + mtx_1.3.12-4_source + mu-cade_0.11.dfsg1-6_source + mu-cite_8.1+0.20120227-1_source + muddleftpd_1.3.13.1-4.3_source + mudita24_1.0.3+svn13-4_source + mudlet_2.0-rc12-3_source + mueller_2002.02.27-8_source + mule_2.0.1-5_source + multcomp_1.2-12-1_source + multex-base_1.0-1.1_source + multiboot_0.6.96-1.1_source + multicat_2.0-3_source + multiget_1.2.0-3_source + multimail_0.49-2_source + multimon_1.0-5_source + multipartposthandler_0.1.0-2_source + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_source + multistrap_2.1.20_source + multitail_5.2.9-1_source + multitee_3.0-4_source + multiwatch_1.0.0-rc1-2_source + mumble_1.2.3-349-g315b5f5-2.2_source + mumble-django_2.7-7_source + mummer_3.23~dfsg-2_source + mummy_1.0.2-5_source + mumps_4.10.0.dfsg-3_source + mumudvb_1.7.1-1_source + munge_0.5.10-1_source + munge-maven-plugin_1.0-1_source + munin_2.0.6-4+deb7u2_source + munin-libvirt-plugins_0.0.6-1_source + munin-plugins-openstack_1.20120627-1_source + munkres_1.0.5.4-2_source + muparser_2.1.0-3_source + mupdf_0.9-2_source + mupen64plus_1.99.5+1_source + mupen64plus-audio-sdl_1.99.5-2_source + mupen64plus-core_1.99.5-6_source + mupen64plus-input-sdl_1.99.5-2_source + mupen64plus-rsp-hle_1.99.5-3_source + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_source + mupen64plus-ui-console_1.99.5-3_source + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_source + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_source + mupen64plus-video-rice_1.99.5-3_source + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_source + muroar_0.1.8-2_source + muroard_0.1.10-2_source + murrine-themes_0.98.4_source + muscle_1:3.8.31-1_source + muse_2.0-1_source + muse-el_3.20+dfsg-0.1_source + museek+_1:0.2+svn20100315.r1208-2_source + musescore_1.2+dfsg-1_source + music_1.0.7-1.2_source + music123_16.3-3_source + musicbrainzngs_0.2-1_source + musiclibrarian_1.6-2.1_source + musique_1.1-2.1_source + musixtex_1:0.115-4_source + mussh_1.0-1_source + mustang_3.2.1-3_source + mustang-plug_1.1-2_source + mutagen_1.20-1_source + mutextrace_0.1-1_source + mutrace_0.2.0-2_source + mutt_1.5.21-6.2+deb7u1_source + mutter_3.4.1-5_source + muttprint_0.73-4_source + muttprofile_1.0.1-4_source + mv2120-utils_0.3_source + mvel_2.0.18-2_source + mvtnorm_0.9-9992-1_source + mwrap_0.33-1_source + mx_1.4.6-1_source + mxallowd_1.9-1_source + mxml_2.6-2_source + mydumper_0.5.1-3_source + myghty_1.1-5_source + myghtyutils_0.52-4_source + mygpoclient_1.4-1_source + mylvmbackup_0.13-2_source + myodbc_5.1.10-2+deb7u1_source + mypaint_1.0.0-1_source + myproxy_5.6-1_source + myrescue_0.9.4-5_source + myspell_1:3.0+pre3.1-24_source + myspell-el-gr_0.8-1.1_source + myspell-fa_0.20070816-3_source + myspell-hr_20060617-2.3_source + myspell-hy_0.20.0-2_source + myspell-ku_0.20.0-2_source + myspell-lv_0.9.4-5_source + myspell-pt-br_20110527-2_source + myspell-sk_0.5.5a-2.3_source + myspell-sl_1.0-5_source + myspell.pt_20091013-4_source + mysql++_3.1.0-2_source + mysql-5.5_5.5.33+dfsg-0+wheezy1_source + mysql-connector-c++_1.1.0-4_source + mysql-connector-java_5.1.16-2_source + mysql-connector-net_6.4.3-2_source + mysql-connector-python_0.3.2-1_source + mysql-mmm_2.2.1-1.1_source + mysql-ocaml_1.1.1-1_source + mysql-proxy_0.8.1-1.1_source + mysql-utilities_1.0.5-1_source + mysql-workbench_5.2.40+dfsg-2_source + mysqltcl_3.051-1_source + mysqltuner_1.2.0-1_source + mysqmail_0.4.9-10_source + mythes_2:1.2.2-1_source + mythes-it_2.0.7.gh.deb1-4.1_source + mythtv-status_0.10.2-3_source + mythtvfs-fuse_0.6.1-3_source + mytop_1.6-6_source + mz_0.40-1_source + n2n_1.3.1~svn3789-1_source + nabi_0.99.11-2_source + nacl_20110221-4_source + nadoka_0.7.6-1_source + naga_2.1-3_source + nagios-images_0.7_source + nagios-nrpe_2.13-3_source + nagios-plugin-check-multi_0.26-1_source + nagios-plugins_1.4.16-1_source + nagios-plugins-contrib_4.20120702_source + nagios-plugins-openstack_1.20120627-2_source + nagios-snmp-plugins_1.1.1-8_source + nagios3_3.4.1-3+deb7u1_source + nagiosgrapher_1.7.1-4_source + nagircbot_0.0.33-2_source + nagstamon_0.9.9-1_source + nagvis_1:1.6.6+dfsg.1-3_source + nagzilla_1.5.5-1-1_source + nailgun_0.7.1-3_source + naist-jdic_1:0.4.3-3.1_source + nam_1.15-1_source + nama_1.078-2_source + namazu2_2.0.21-6_source + namebench_1.3.1+dfsg-2_source + nana_2.5-12_source + nano_2.2.6-1_source + nanoblogger_3.4.2-3_source + nanoblogger-extra_3.4.2-2_source + nant_0.92~rc1+dfsg-2_source + nap_1.5.4-7.1_source + nas_1.9.3-5wheezy1_source + nasm_2.10.01-1_source + naspro-bridge-it_0.4.1-1_source + naspro-bridges_0.4.1-1_source + naspro-core_0.4.0-3_source + nast_0.2.0-6_source + nasty_0.6-2_source + nat_1:1.0-4_source + natbraille_2.0rc3-1_source + naturaldocs_1.51-1_source + nautilus_3.4.2-1+build1_source + nautilus-actions_3.2.2-1_source + nautilus-compare_0.0.4-1_source + nautilus-filename-repairer_0.1.1-2_source + nautilus-image-converter_0.3.1~git20110416-1_source + nautilus-image-manipulator_1.1-2_source + nautilus-open-terminal_0.19-2_source + nautilus-pastebin_0.7.1-1_source + nautilus-python_1.1-3_source + nautilus-scripts-manager_1.7-1_source + nautilus-sendto_3.0.3-2_source + nautilus-share_0.7.3-1_source + nautilus-wipe_0.1.1-3_source + navi2ch_2.0.0~git20120331-1_source + navit_0.5.0~svn5126+dfsg.1-3_source + nbd_1:3.2-4~deb7u4_source + nbibtex_0.9.18-10_source + nbtscan_1.5.1-6_source + nc6_1.0-8_source + ncap_1.9.2-1_source + ncbi-blast+_2.2.26-3_source + ncbi-tools6_6.1.20120620-2_source + ncc_2.8-1_source + ncdt_2.1-3_source + ncdu_1.8-1_source + ncftp_2:3.2.5-1.1_source + ncmpc_0.17-1_source + ncmpcpp_0.5.10-1.1_source + nco_4.0.9-1_source + ncompress_4.2.4.4-5_source + ncpfs_2.2.6-9_source + ncurses_5.9-10_source + ncurses-hexedit_0.9.7-14.1_source + ncview_1.93g-1_source + nd_0.8.2-6_source + ndesk-dbus_0.6.0-6_source + ndesk-dbus-glib_0.4.1-4_source + ndisc6_1.0.1-1_source + ndisgtk_0.8.5-1_source + ndiswrapper_1.57-1_source + ndoutils_1.4b9-1.1_source + ndpmon_1.4.0-2_source + ne_2.4-1_source + neartree_3.1.1-1_source + nec_2-16_source + nec2c_0.8-3_source + necpp_1.5.0+cvs20101003-2.1_source + nedit_1:5.6~cvs20081118-7_source + neko_1.8.1-6_source + nekobee_0.1.7-3_source + nekohtml_1.9.15-1_source + nemiver_0.9.2-1_source + neo_0.2.0-1_source + neobio_0.0.20030929-1_source + neon27_0.29.6-3_source + net-acct_0.71-9_source + net-dns-fingerprint_0.9.3-4_source + net-luminis-build-plugin_0.2.0-1_source + net-retriever_1.32_source + net-snmp_5.4.3~dfsg-2.7_source + net-telnet-cisco_1.10-5_source + net-tools_1.60-24.2_source + net6_1:1.3.14-1_source + netanim_3.100-1_source + netatalk_2.2.2-1_source + netbase_5.0_source + netbeans_7.0.1+dfsg1-5_source + netbeans-cvsclient_6.5-2_source + netcat_1.10-40_source + netcat-openbsd_1.105-7_source + netcdf_1:4.1.3-6_source + netcf_0.1.9-2_source + netcfg_1.108+deb7u1_source + netdiag_1.1-1_source + netdisco_1.0-2_source + netdiscover_0.3beta6+20080409-5_source + netemul_1.0.0-2_source + netenv_0.94.3-30_source + netexpect_0.20-3_source + nethack_3.4.3-14_source + nethack-el_1:0.9.5-3_source + nethack-spoilers_3.4.3+20110109-1_source + nethogs_0.8.0-1_source + netifaces_0.8-1_source + netio230a_1.0.1-3_source + netkit-bootparamd_0.17-9_source + netkit-ftp_0.17-27_source + netkit-ftp-ssl_0.17.23+0.2-1_source + netkit-ntalk_0.17-15_source + netkit-rsh_0.17-15_source + netkit-rusers_0.17-8_source + netkit-rwall_0.17-7_source + netkit-rwho_0.17-12_source + netkit-telnet_0.17-36_source + netkit-telnet-ssl_0.17.24+0.1-23_source + netkit-tftp_0.17-18_source + netmask_2.3.12_source + netmaze_0.81+jpg0.82-14_source + netmrg_0.20-6.1_source + netpanzer_0.8.4.debian.1-1.1_source + netpbm-free_2:10.0-15_source + netperfmeter_1.1.7-1.1_source + netpipe_3.7.2-7_source + netpipes_4.2-6_source + netplug_1.2.9.2-1_source + netqmail_1.06-5_source + netrek-client-cow_3.3.0-3_source + netrik_1.16.1-1.1_source + netris_0.52-9_source + netrw_1.3.2-2_source + netscript-2.4_5.2.12_source + netsed_1.00b-2.1_source + netselect_0.3.ds1-25_source + netsend_0.0~svnr250-1.1_source + netsniff-ng_0.5.7-1_source + netspeed_0.16-3_source + netstat-nat_1.4.10-2_source + netsurf_2.9-2_source + nettle_2.4-3_source + nettoe_1.3.2-1_source + netty_1:3.2.6.Final-2_source + netty3.1_3.1.0.CR1-1_source + netw-ib-ox-ag_5.36.0-1.2_source + network-config_0.2-1_source + network-console_1.43_source + network-manager_0.9.4.0-10_source + network-manager-applet_0.9.4.1-5_source + network-manager-iodine_0.0.3-1_source + network-manager-openconnect_0.9.4.0-8_source + network-manager-openvpn_0.9.4.0-1_source + network-manager-pptp_0.9.4.0-2_source + network-manager-strongswan_1.3.0-1_source + network-manager-vpnc_0.9.4.0-1_source + networkmanagement_0.9.0.3-1_source + neverball_1.5.4-5_source + nevow_0.10.0-4_source + newbiedoc_0.8.0-2_source + newlib_1.18.0-6.2_source + newmail_0.5-2_source + newmat_1.10.4-5_source + newsbeuter_2.5-2_source + newt_0.52.14-11.1_source + newtonsoft-json_4.5r6-1_source + nexuiz_2.5.2+dp-2_source + nexuiz-data_2.5.2-6_source + nexus_4.2.1-svn1614-1_source + nfdump_1.6.6-1_source + nflog-bindings_0.2-3_source + nfoview_1.9.2-1_source + nfqueue-bindings_0.4-3_source + nfs-utils_1:1.2.6-4_source + nfs4-acl-tools_0.3.3-2_source + nfswatch_4.99.11-2_source + ng_1.5~beta1-3_source + ng-utils_0.7-1_source + nget_0.27.1-11_source + ngetty_1.0-1_source + nginx_1.2.1-2.2+wheezy2_source + ngircd_19.2-2_source + nglister_1.0.1+nmu1_source + ngorca_1.0.2-2_source + ngraph-gtk_6.06.06-1_source + ngrep_1.45.ds2-12_source + nibabel_1.2.2-1_source + nickle_2.76-1_source + nicotine_1.2.16+dfsg-1_source + nicovideo-dl_0.0.20120212-1_source + nictools-pci_1.3.8-1.2_source + nifticlib_2.0.0-1_source + nikwi_0.0.20060823-2_source + nilfs-tools_2.1.3-1_source + nini_1.1.0+dfsg.2-4_source + ninix-aya_4.3.9-1_source + ninja_0.1.3-2_source + ninvaders_0.1.1-3_source + nip2_7.28.4-1_source + nipype_0.5.3-2wheezy2_source + nis_3.17-32_source + nitime_0.4-2_source + nitpic_0.1-13_source + nitrogen_1.5.2-1_source + njam_1.25-5.2_source + njplot_2.4-1_source + nkf_2.12-1_source + nlkt_0.3.2.2-1_source + nlme_3.1.104-1_source + nload_0.7.4-1_source + nlpsolver_0.9~beta1-9_source + nmap_6.00-0.3+deb7u1_source + nmapsi4_0.3.1-1_source + nmh_1.5-release-0.2_source + nml_0.2.3-1_source + nmon_13g+debian-1_source + nmzmail_1.1-1_source + nn_6.7.3-8_source + nobootloader_1.38_source + nodau_0.3~rc6-1_source + node_0.3.2-7.4_source + nodebox-web_1.9.4.6-2_source + nodm_0.11-1.3_source + noiz2sa_0.51a-9_source + nomarch_1.4-3_source + nomnom_0.3.1-1_source + nordugrid-arc-doc_1.1.2-1_source + normalize-audio_0.7.7-11_source + norwegian_2.0.10-5.1_source + nose_1.1.2-3_source + nosexcover_1.0.7-1_source + nosquint_2.1.5-1_source + nostalgy_0.2.30+svn219-1_source + note_1.3.7-1_source + notebook_0.2rel-2.2_source + notification-daemon_0.7.6-1_source + notify-osd_0.9.34-2_source + notify-python_0.1.1-3_source + notify-sharp_0.4.0~r3032-6_source + notmuch_0.13.2-1_source + nova_2012.1.1-18_source + novnc_2012.1~e3+dfsg+1-4_source + noweb_2.11b-7.1_source + npapi-vlc_2.0.0-2_source + npth_0.90-2_source + nqc_3.1.r6-1_source + nqp_0.1~2012.01-5_source + nrg2iso_0.4-4_source + nrss_0.3.9-1_source + ns2_2.35+dfsg-1_source + nsca_2.9.1-2_source + nsd3_3.2.12-3+deb7u1_source + nsis_2.46-7_source + nslint_3.0a2-1.1_source + nslu2-utils_20080403-4_source + nspr_2:4.9.2-1+deb7u1_source + nss_2:3.14.5-1_source + nss-mdns_0.10-3.2_source + nss-pam-ldapd_0.8.10-4_source + nss-passwords_0.1.1-1_source + nss-updatedb_10-2_source + nsscache_0.21.17-2_source + nstreams_1.0.3-2_source + nted_1.10.18-4_source + ntfs-3g_1:2012.1.15AR.5-2.1_source + ntfs-config_1.0.1-10_source + ntfsdoc_0.5-1_source + ntl_5.5.2-2_source + ntlmaps_0.9.9.0.1-11.2_source + ntop_3:4.99.3+ndpi5517+dfsg3-1_source + ntp_1:4.2.6.p5+dfsg-2_source + ntrack_016-1.1_source + nuapplet_2.3.0-2_source + nufw_2.4.3-2.2_source + nukeimage_0.3-12_source + nullidentd_1.0-5_source + nullmailer_1:1.11-2_source + nulog_2.0.dfsg.1-2_source + num-utils_0.5-11_source + numactl_2.0.8~rc4-1_source + numdiff_5.6.0-1_source + numexpr_2.0.1-3_source + numlockx_1.2-4_source + numm_0.4-1_source + numptyphysics_0.2+svn156-1.1_source + nunit_2.6.0.12051+dfsg-2_source + nurpawiki_1.2.3-5_source + nusoap_0.7.3-5_source + nut_2.6.4-2.3+deb7u1_source + nut-nutrition_15.5-1_source + nuttcp_6.1.2-4_source + nvclock_0.8b4+cvs20100914-4_source + nvi_1.81.6-8.2_source + nvidia-texture-tools_2.0.8-1+dfsg-2_source + nvram-wakeup_1.1-1_source + nvramtool_0.0+r3669-2.2_source + nvtv_0.4.7-7_source + nwall_1.32+debian-4.1_source + nwchem_6.1-6_source + nwdiag_0.7.0-1_source + nwrite_1.9.2-20.1_source + nwsclient_1.6.4-8_source + nwsserver_2.0.0-2_source + nx-libs-lite_3.5.0.12-1_source + nxcl_0.9-3.1_source + nxt-python_2.2.2-1_source + nyancat_1.0+git20120523.99dc310-1_source + nyquist_3.05-2_source + nzb_0.2-1_source + nzbget_0.7.0-2_source + oaklisp_1.3.3-5_source + oar_2.5.2-3_source + oasis_0.2.0-6_source + oasis3_3.3.beta.dfsg.1-8_source + oath-toolkit_1.12.4-1_source + oauth-signpost_1.2.1.2-1_source + obby_0.4.8-1_source + obconf_1:2.0.3+20110805+debian-1_source + obdgpslogger_0.16-1.2_source + obex-data-server_0.4.5-1_source + obexd_0.46-1_source + obexfs_0.11-1_source + obexftp_0.23-1.1_source + obexpushd_0.11.2-1_source + obfsproxy_0.1.4-2_source + objcryst-fox_1.9.6.0-2_source + objenesis_1.2+full-3_source + objgraph_1.7.1-1_source + obmenu_1.0-2+nmu1_source + obnam_1.1-1.1_source + oboinus_2.2-4_source + obrowser_1.1.1+dfsg-1_source + obus_1.1.3-1_source + ocaml_3.12.1-4_source + ocaml-alsa_0.2.1-1_source + ocaml-ao_0.2.0-1_source + ocaml-atd_1.0.1-1_source + ocaml-batteries_1.4.3-1_source + ocaml-benchmark_0.9-2_source + ocaml-bitstring_2.0.2-3_source + ocaml-bjack_0.1.3-5_source + ocaml-config-file_1.1-1_source + ocaml-cry_0.2.2-1_source + ocaml-csv_1.2.2-1_source + ocaml-curses_1.0.3-2_source + ocaml-data-notation_0.0.8-1_source + ocaml-dbus_0.29-1_source + ocaml-deriving_0.1.1a-3_source + ocaml-deriving-ocsigen_0.3c-1_source + ocaml-dssi_0.1.0-1_source + ocaml-dtools_0.3.0-1_source + ocaml-duppy_0.4.2-1_source + ocaml-expat_0.9.1+debian1-7_source + ocaml-expect_0.0.2-1_source + ocaml-extunix_0.0.5-2_source + ocaml-faad_0.3.0-1_source + ocaml-fileutils_0.4.2-1_source + ocaml-flac_0.1.1-1_source + ocaml-gavl_0.1.4-1_source + ocaml-getopt_0.0.20040811-10_source + ocaml-gettext_0.3.4-1_source + ocaml-gnuplot_0.8.3-3_source + ocaml-gstreamer_0.1.0-3_source + ocaml-http_0.1.5-1_source + ocaml-inifiles_1.2-2_source + ocaml-inotify_1.0-1_source + ocaml-ladspa_0.1.4-1_source + ocaml-lame_0.3.1-1_source + ocaml-lastfm_0.3.0-2_source + ocaml-libvirt_0.6.1.2-1_source + ocaml-lo_0.1.0-1_source + ocaml-mad_0.4.4-1_source + ocaml-magic_0.7.3-5_source + ocaml-melt_1.4.0-1_source + ocaml-mm_0.2.0-1_source + ocaml-ogg_0.4.3-1_source + ocaml-portaudio_0.2.0-1_source + ocaml-pulseaudio_0.1.2-1_source + ocaml-reins_0.1a-4_source + ocaml-res_3.2.0-2_source + ocaml-samplerate_0.1.1-1_source + ocaml-schroedinger_0.1.0-1_source + ocaml-sha_1.7-2_source + ocaml-shout_0.2.7-1_source + ocaml-soundtouch_0.1.7-1_source + ocaml-speex_0.2.0-1_source + ocaml-sqlexpr_0.4.1-1_source + ocaml-sqlite3_1.6.1-1_source + ocaml-ssl_0.4.6-1_source + ocaml-taglib_0.2.0-1_source + ocaml-text_0.5-1_source + ocaml-theora_0.3.0-1_source + ocaml-tools_20120103-2_source + ocaml-usb_1.2.0-2_source + ocaml-voaacenc_0.1.0-1_source + ocaml-vorbis_0.6.1-1_source + ocaml-xmlplaylist_0.1.3-1_source + ocaml-zarith_1.1-2_source + ocamlagrep_1.0-11_source + ocamlbricks_0.50.1-4_source + ocamlcreal_0.7-6_source + ocamldap_2.1.8-8_source + ocamldsort_0.15.0-2_source + ocamlduce_3.12.1.0-1_source + ocamlgraph_1.8.2-2_source + ocamlgsl_0.6.0-7_source + ocamlify_0.0.1-3_source + ocamlmakefile_6.36.0-2_source + ocamlmod_0.0.2-3_source + ocamlnet_3.5.1-1_source + ocamlodbc_2.15-5_source + ocamlpam_1.1-4_source + ocamlsdl_0.9.0-1_source + ocamlviz_1.01-2_source + ocamlwc_0.3-10_source + ocamlweb_1.38-1_source + oce_0.9.1-3_source + ocfs2-tools_1.6.4-1+deb7u1_source + ocl-icd_1.3-3_source + ocp_1:0.1.21-1.1_source + ocr4gamera_1.0.6-3_source + ocrad_0.22~rc1-2_source + ocrfeeder_0.7.9-1_source + ocrodjvu_0.7.9-1_source + ocsigen_1.3.4-2_source + ocsigenserver_2.1-1_source + ocsinventory-agent_2:2.0.5-1_source + ocsinventory-server_2.0.5-1.1_source + octave_3.6.2-5+deb7u1_source + octave-audio_1.1.4-4_source + octave-benchmark_1.1.1-4_source + octave-communications_1.1.1-1_source + octave-control_2.3.52-1_source + octave-data-smoothing_1.3.0-2_source + octave-dataframe_0.9.1-1_source + octave-econometrics_1:1.0.8-6_source + octave-epstk_2.4-1_source + octave-financial_0.4.0-1_source + octave-fixed_0.7.10-5_source + octave-fpl_1.2.0-3_source + octave-ga_0.10.0-1_source + octave-general_1.3.1-1_source + octave-geometry_1.5.0-1_source + octave-gsl_1.0.8-5_source + octave-image_1.0.15-1_source + octave-io_1.0.19-1_source + octave-java_1.2.8-6_source + octave-linear-algebra_2.2.0-1_source + octave-mapping_1.0.7-4_source + octave-miscellaneous_1.1.0-1_source + octave-missing-functions_1.0.2-4_source + octave-nan_2.5.5-2_source + octave-nnet_0.1.13-2_source + octave-nurbs_1.3.6-1_source + octave-ocs_0.1.3-1_source + octave-octcdf_1.1.4-2_source + octave-octgpr_1.2.0-3_source + octave-odepkg_0.8.2-2_source + octave-openmpi-ext_1.0.2-1_source + octave-optim_1.2.0-1_source + octave-optiminterp_0.3.3-2_source + octave-pkg-dev_1.0.2_source + octave-plot_1.1.0-2_source + octave-quaternion_2.0.0-1_source + octave-secs1d_0.0.8-4_source + octave-secs2d_0.0.8-4_source + octave-signal_1.1.3-1_source + octave-sockets_1.0.8-1_source + octave-specfun_1.1.0-1_source + octave-splines_1.0.7-4_source + octave-statistics_1.1.3-1_source + octave-strings_1.1.0-1_source + octave-struct_1.0.10-1_source + octave-symbolic_1.1.0-1_source + octave-tsa_4.2.4-1_source + octave-vrml_1.0.13-1_source + octave-zenity_0.5.7-5_source + ocurl_0.5.3-2_source + ode_2:0.11.1-4_source + odin_1.8.5-2_source + odot_1.2.0-1_source + odt2txt_0.4+git20100620-1_source + ofed-docs_1.4.2-1_source + offlineimap_6.3.4-1_source + oflib_0git20070620-6_source + ofono_1.6-2_source + ofono-phonesim_1.17-1_source + ogamesim_20080831-1_source + ogdi-dfsg_3.2.0~beta2-7_source + oggconvert_0.3.3-2_source + oggfwd_0.2-6_source + oggvideotools_0.8a-1_source + ogmtools_1:1.5-3_source + ognl_2.7.3-4_source + ogre_1.7.4+dfsg1-7_source + ogre-1.8_1.8.0+dfsg1-3_source + ohai_6.14.0-2_source + ohcount_3.0.0-6.1_source + oidentd_2.0.8-5_source + oidua_0.16.1-7_source + oinkmaster_2.0-3_source + ois_1.3.0+dfsg0-5_source + okular_4:4.8.4-3_source + olap4j_1.0.1.500-1_source + oldsys-preseed_3.13_source + olive_1.3-4_source + olpc-kbdshim_27-1_source + olpc-powerd_23-2_source + olpc-xo1_0.3_source + olsrd_0.6.2-2.1_source + omake_0.9.8.5-3-8_source + omega-rpg_1:0.90-pa9-15_source + omegat_2.3.0.1+dfsg-3_source + omegat-plugin-tokenizer_0.4.2+dfsg-2_source + omhacks_0.16-1_source + omins_0.2.0-7.1_source + omnievents_1:2.6.2-2_source + omniorb-dfsg_4.1.6-2_source + omt_0.1.16_source + onak_0.4.1-1_source + oneisenough_0.40-2_source + oneko_1.2.sakura.6-8_source + oneliner-el_0.3.6-7.1_source + onesixtyone_0.3.2-1_source + onetime_1.122-1_source + onioncat_0.2.2+svn553-3_source + onscripter_20120531-2_source + ontv_3.2.0-1_source + oocairo_1.4-1.2_source + oolite_1.76.1-2_source + ooo-thumbnailer_0.2-5_source + ooo2dbk_2.1.0-1_source + ooolib-perl_0.1.9-1_source + ooolib-python_0.0.17-2.1_source + oopango_1.1-1_source + op-panel_0.30~dfsg-3_source + opal_3.10.4~dfsg-3_source + opalmod_0.2.1_source + opari_1.1+dfsg-2_source + open-axiom_1.4.1+svn~2626-2_source + open-cobol_1.1-1_source + open-font-design-toolkit_1.2_source + open-gram_0.1.22+20120112-1_source + open-invaders_0.3-3.2_source + open-iscsi_2.0.873-3_source + open-jtalk_1.05-1_source + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_source + openafs_1.6.1-3+deb7u1_source + openais_1.1.4-4.1_source + openal-soft_1:1.14-4_source + openam_1.4.0-1_source + openarena_0.8.8-5+deb7u2_source + openarena-085-data_0.8.5split-2_source + openarena-088-data_0.8.8-1_source + openarena-data_0.8.5split-2_source + openarena-maps_0.8.5split-2_source + openarena-misc_0.8.5split-2_source + openarena-players_0.8.5split-2_source + openarena-players-mature_0.8.5split-2_source + openarena-textures_0.8.5split-2_source + openbabel_2.3.1+dfsg-4_source + openbgpd_4.6-3_source + openbios-ppc_1.0+svn1060-1_source + openbios-sparc_1.0+svn1060-1_source + openblas_0.1.1-6+deb7u2_source + openbmap-logger_0.4.0-6_source + openbox_3.5.0-7_source + openbox-themes_1.0.2_source + openbsd-inetd_0.20091229-2_source + openbve_1.4.0.9-1_source + openbve-data_1.4.0.5+dfsg-3_source + opencc_0.3.0-3_source + openchange_1:1.0-3_source + opencity_0.0.6.4stable-1.1_source + openclipart_1:0.18+dfsg-14_source + openclipart2_2.0+dfsg-1_source + openconnect_3.20-4_source + opencore-amr_0.1.3-2_source + opencryptoki_2.3.1+dfsg-3_source + opencsg_1.3.2-2_source + openct_0.6.20-1.2_source + opencv_2.3.1-11_source + opendict_0.6.3-3.1_source + opendkim_2.6.8-4_source + opendnssec_1:1.3.9-5_source + openexr_1.6.1-6_source + openexr-viewers_1.0.1-6_source + openfetion_2.2.1-3.2_source + openguides_0.65-4_source + openhackware_0.4.1-6_source + openhpi_2.14.1-1.2_source + openid4java_0.9.6.662-1_source + openigtlink_1.9.2~svn7468-1_source + openimageio_1.0.5+dfsg0-1_source + openinbrowser_1.11-6_source + openipmi_2.0.16-1.3_source + openjade_1.4devel1-20.1_source + openjade1.3_1.3.2-11.1_source + openjdk-6_6b27-1.12.5-1_source + openjdk-7_7u3-2.1.7-1_source + openjpa_2.0.1-1_source + openjpeg_1.3+dfsg-4.7_source + openlayers_2.11+ds1-1_source + openldap_2.4.31-1+nmu2_source + openload_0.1.2-2_source + openlp_1.9.10-1_source + openmcdf_1.5.2-1_source + openmeeg_2.0.0.dfsg-5_source + openmpi_1.4.5-1_source + openmsx_0.8.2-2.1_source + openmsx-catapult_0.8.2-1_source + openmsx-debugger_0.0.0.svn20110306-3_source + openmx_3.5-1_source + opennebula_3.4.1-3.1_source + openntpd_20080406p-4_source + openocd_0.5.0-1_source + openoffice-python_1:0.1+20110209-3_source + openoffice.org_1:3.4.0~ooo340m1-7_source + openoffice.org-dictionaries_1:3.3.0~rc10-4_source + openoffice.org-en-au_2.1-5.3_source + openoffice.org-hyphenation-pl_1:3.0a-4_source + openoffice.org-thesaurus-pl_1.5-4_source + openopt_0.38+svn1589-1_source + openpref_0.1.3-1_source + openpyxl_1.5.8-1_source + openr2_1.3.2-1.1_source + openresolv_3.5.2-1_source + openrocket_12.03-1_source + opensaml2_2.4.3-4_source + opensc_0.12.2-3_source + openscad_2011.12-3_source + openscap_0.8.0-4_source + openscenegraph_3.0.1-4_source + opense-basic_1:3.1.2-1_source + openshot_1.4.2-1.1_source + openslide_3.2.6-2_source + openslp-dfsg_1.2.1-9_source + opensm_3.2.6-20090317-2.1_source + opensp_1.5.2-10_source + opensrs-client_3.0.0-1_source + openssh_1:6.0p1-4_source + openssh-blacklist_0.4.1+nmu1_source + openssl_1.0.1e-2+deb7u4_source + openssl-blacklist_0.5-3_source + openssn_1.3-1_source + openstack-common_0.1+git20120203-1_source + openstereogram_0.1+20080921-2_source + openstreetmap-map-icons_1:0.0.svn27763-1_source + openstv_1.6.1-1_source + openswan_1:2.6.37-3_source + openteacher_2.3-1_source + openthesaurus_20120516-2_source + opentk_1.0.20101006+dfsg1-1_source + opentoken_4.0b-3_source + openttd_1.2.1-3_source + openttd-opengfx_0.4.4-1_source + openttd-openmsx_0.3.1-2_source + openturns_1.0-4_source + openuniverse_1.0beta3.1+dfsg-3_source + openvanilla-modules_0.9.0a1.3+dfsg1-2.1_source + openvpn_2.2.1-8+deb7u2_source + openvpn-auth-ldap_2.0.3-5.1_source + openvpn-auth-radius_2.1-4_source + openvpn-blacklist_0.5_source + openvrml_0.18.9-5+deb7u1_source + openvswitch_1.4.2+git20120612-9.1~deb7u1_source + openwalnut_1.2.5-1.1_source + openwince-include_0.3.2-3.1_source + openwince-jtag_0.5.1-6_source + openxenmanager_0.r80+dfsg-4_source + openyahtzee_1.9.1-1_source + ophcrack_3.4.0-2_source + opsin_1.2.0-1_source + opt_3.19-1.1_source + optcomplete_1.2-11.1_source + optgeo_2.11-3_source + opticalraytracer_3.2-1.1_source + optipng_0.6.4-1_source + opus_0.9.14+20120615-1+nmu1_source + opus-tools_0.1.2-1_source + orafce_3.0.4-1_source + orage_4.8.3-2_source + orange_0.4-2_source + orbit2_1:2.14.19-0.1_source + orbital-eunuchs-sniper_1.30+svn20070601-2_source + orc_1:0.4.16-2_source + oregano_0.70-1_source + org-mode_7.8.11-1_source + origami_0.7.4-1_source + original-awk_2011-08-10-2_source + oroborus_2.0.20_source + orpie_1.5.1-10_source + orville-write_2.55-2.3_source + os-prober_1.58_source + osc_0.134.1-2_source + oscache_2.4.1+ds1-3_source + oscpack_1.0.2-1_source + osdclock_0.5-23_source + osdsh_0.7.0-10_source + osgearth_2.0+dfsg-4_source + osgi-compendium_4.3.0-1_source + osgi-core_4.3.0-3_source + osgi-foundation-ee_4.2.0-1_source + osm-gps-map_0.7.3-3_source + osm2pgsql_0.80.0+r27899-4_source + osmium_0.0~20111213-g7f3500a-3_source + osmo_0.2.10+svn922-2_source + osmosis_0.40.1+ds1-7_source + osmpbf_1.2.1-3_source + osptoolkit_3.4.2-1_source + oss-compat_2_source + oss-preserve_1.1-6_source + oss4_4.2-build2006-2+deb7u1_source + ossim_1.7.21-4_source + ossp-uuid_1.6.2-1.3_source + osspsa_1.2.6-1_source + otags_3.12.5-1_source + otcl_1.14+dfsg-2_source + otf_1.10.2+dfsg-2_source + otf2bdf_3.1-2_source + otp_1:1.2.1-1_source + otpw_1.3-2_source + otrs2_3.1.7+dfsg1-8+deb7u3_source + otrs2-doc_20120224-1_source + ots_0.5.0-2.1_source + otter_3.3f-1.1_source + ounit_1.1.1-1_source + outguess_1:0.2-7_source + overgod_1.0-1.1_source + ovito_0.9.5-2_source + ow-util-ant-tasks_1.3.2-4_source + owasp-java-html-sanitizer_0.1+r88-1_source + owfs_2.8p15-1_source + owl_2.2.2-1.1_source + owx_0~20110415-3.1_source + oxref_0.90.10-1_source + oxygen-gtk3_1.0.4-1_source + oxygen-icons_4:4.8.4-1_source + oxygencursors_0.0.2012-06-kde4.8-2.1_source + p0f_2.0.8-2_source + p10cfgd_1.0-14_source + p11-kit_0.12-3_source + p3scan_2:2.3.2-8_source + p7zip_9.20.1~dfsg.1-4_source + p910nd_0.95-1_source + p9m4_0.5.dfsg-2.1_source + pacemaker_1.1.7-1_source + pachi_1:1.0-6_source + packagekit_0.7.6-3_source + packagesearch_2.7.3_source + packaging-dev_0.4_source + packaging-tutorial_0.7_source + packeth_1.6.5-2_source + packit_1.0-2_source + packup_0.6-1_source + pacman_10-17_source + pacman4console_1.2-2_source + paco_2.0.9-2_source + pacparser_1.3.0-2_source + pacpl_4.0.5-7.1_source + padre_0.96+dfsg1-2_source + pads_1.2-11_source + page-crunch_1.0.1-3_source + pagodacf_0.10-3_source + paje.app_1.98-1_source + pal_0.4.3-8_source + palbart_2.4-7_source + palp_1.1-1.2_source + pam_1.1.3-7.1_source + pam-dbus_0.2.1-1_source + pam-krb5-migrate_0.0.10-1_source + pam-mysql_0.7~RC1-4_source + pam-p11_0.1.5-2_source + pam-pgsql_0.7.3.1-4_source + pam-pkcs11_0.6.8-1_source + pam-python_1.0.2-1_source + pam-shield_0.9.2-3.3_source + pam-tmpdir_0.09_source + paman_0.9.4-1_source + pan_0.139-2_source + pandas_0.8.0-2_source + pandoc_1.9.4.2-2_source + pandora-build_0.98-1.1_source + pandorafms-agent_4.0.1-1_source + pango-graphite_0.9.3-0.2_source + pango1.0_1.30.0-1_source + pangomm_2.28.4-1_source + pangzero_1.4-1_source + pantomime1.2_1.2.0~pre3+snap20071004+dfsg-4_source + papercut_0.9.13-7_source + paperkey_1.2-1_source + paprass_2.06-1_source + paprefs_0.9.10-1_source + paps_0.6.8-6_source + par_1.52-3_source + par2cmdline_0.4-11_source + parallel_20120422-1_source + parallelpython_1.6.2-2_source + paramiko_1.7.7.1-3.1_source + paraview_3.14.1-6_source + parcellite_1.0.2~rc5-1_source + parchive_1.1-4_source + parcimonie_0.7.1-1_source + paredit-el_20-2_source + pari_2.5.1-2_source + pari-elldata_0.20120415-1_source + pari-extra_3-1_source + pari-galdata_0.20080411-2_source + pari-galpol_1.0-1_source + pari-seadata_0.20090618-1_source + paris-traceroute_0.92-dev-2_source + parley_4:4.8.4-1_source + parole_0.2.0.6-1_source + parprouted_0.70-1_source + parrot_4.0.0-3_source + parsec47_0.2.dfsg1-4_source + parsedatetime_0.8.7-3_source + parser_3.4.2-2_source + parser-mysql_10.4-1_source + parsewiki_0.4.3-1_source + partclone_0.2.48-1_source + partconf_1.40_source + parted_2.3-12_source + partimage_0.6.8-2.2_source + partimage-doc_20050720-3_source + partitioner_0.50_source + partitionmanager_1.0.2-1_source + partman-auto_106_source + partman-auto-crypto_19_source + partman-auto-lvm_47_source + partman-auto-raid_21_source + partman-base_165_source + partman-basicfilesystems_77_source + partman-basicmethods_52_source + partman-btrfs_10_source + partman-crypto_57_source + partman-efi_36_source + partman-ext2r0_1.27_source + partman-ext3_74_source + partman-jfs_38_source + partman-lvm_82_source + partman-md_64_source + partman-multipath_3_source + partman-nbd_0.18_source + partman-newworld_28_source + partman-partitioning_91_source + partman-prep_24_source + partman-reiserfs_53_source + partman-target_82_source + partman-ufs_14_source + partman-xfs_50_source + partman-zfs_24_source + pasco_1.0+20040505-5_source + pasmo_0.5.3-6_source + passage_4+dfsg1-1_source + passepartout_0.7.1-1_source + passwdqc_1.2.0-1_source + password-gorilla_1.5.3.4-1_source + passwordmaker-cli_1.5+dfsg-3_source + paste_1.7.5.1-4.1_source + pastebinit_1.3-4_source + pastedeploy_1.5.0-3_source + pastescript_1.7.5-2_source + pastewebkit_1.0-7_source + patch_2.6.1-3_source + patchage_0.5.0+dfsg0-0.1_source + patcher_0.0.20040521-6_source + patchutils_0.3.2-1.1_source + pathfinder_1.1.3-0.4_source + pathogen_1.1.1-3_source + pathological_1.1.3-10_source + pathological-music_1:1.1.3-1_source + pauker_1.8+dfsg-5_source + paulstretch_2.2-2-2_source + pavucontrol_1.0-1_source + pavuk_0.9.35-2.3_source + pavumeter_0.9.3-4_source + paw_1:2.14.04.dfsg.2-8_source + pax_1:20120606-2_source + pax-utils_0.2.3-2_source + paxctl_0.7-1_source + paxtest_1:0.9.9-1_source + pbbuttonsd_0.7.9-2_source + pbnj_2.04-4_source + pbs_0.95-1_source + pbs-drmaa_1.0.10-3_source + pbuilder_0.213_source + pbzip2_1.1.8-1_source + pcal_4.11.0-3_source + pcalendar_3.2.0-2_source + pcaputils_0.8-1_source + pcapy_0.10.8-1_source + pcb_20110918-7_source + pcb2gcode_1.1.4-git20110915-1_source + pccts_1.33MR33-6_source + pcf2bdf_1.04-4_source + pchar_1.5-1_source + pciutils_1:3.1.9-6_source + pclock_0.13.1-6_source + pcmanfm_0.9.10-3_source + pcmanx-gtk2_1.1-2_source + pcmciautils_018-8_source + pconsole_1.0-9_source + pcre-ocaml_6.2.5-1_source + pcre3_1:8.30-5_source + pcsc-cyberjack_3.99.5final.sp03-1_source + pcsc-lite_1.8.4-1+deb7u1_source + pcsc-perl_1.4.12-1_source + pcsc-tools_1.4.20-1_source + pcscada_0.7.1-4_source + pcsxr_1.9.92-4_source + pct-scanner-scripts_0.0.4-3_source + pd-arraysize_0.1-1_source + pd-bassemu_0.3-3_source + pd-beatpipe_0.1-3_source + pd-boids_1.1.1-2_source + pd-bsaylor_0.1-2_source + pd-comport_0.1-3_source + pd-cxc_0.5.1-2_source + pd-cyclone_0.1~alpha55-6_source + pd-earplug_0.2-3_source + pd-ekext_0.1.1-2_source + pd-ext13_0.17.1-2_source + pd-flite_0.02.3-1_source + pd-freeverb_1.2-3_source + pd-ggee_0.26-3_source + pd-hcs_0.1-2_source + pd-hid_0.7-1_source + pd-iemambi_0.1-2_source + pd-iemmatrix_0.2-1_source + pd-iemnet_0.1-3_source + pd-jmmmp_0.1.1-1_source + pd-libdir_1.9-3_source + pd-list-abs_0.1-1_source + pd-mapping_0.2-2_source + pd-markex_0.85-2_source + pd-maxlib_1.5.4-1_source + pd-mjlib_0.1.1-3_source + pd-moonlib_0.2-2_source + pd-motex_1.1.4-3_source + pd-osc_0.1-2_source + pd-pan_0.1-1_source + pd-pddp_0.2-1_source + pd-pdogg_0.25.1-1_source + pd-plugin_0.2.1-3_source + pd-pmpd_0.9-4_source + pd-purepd_0.1.1-1_source + pd-readanysf_0.42-1_source + pd-sigpack_0.0.4.2-2_source + pd-smlib_0.12.1-2_source + pd-vbap_1.0.3.2-1_source + pd-wiimote_0.3.2-2_source + pd-windowing_0.1-2_source + pd-zexy_2.2.5-1_source + pdb2pqr_1.8-1_source + pdf-presenter-console_3.1-1_source + pdf2djvu_0.7.12-2_source + pdf2svg_0.2.1-2_source + pdfchain_1:0.3.3-2_source + pdfcrack_0.11-1_source + pdfcube_0.0.4-2_source + pdfgrep_1.3.0-1_source + pdfminer_20110515+dfsg-1_source + pdfmod_0.9.1-7_source + pdfposter_0.4.4-2_source + pdfresurrect_0.11-1_source + pdfrw_0+svn136-3_source + pdfsam_1.1.4-2_source + pdfshuffler_0.6.0-1_source + pdftk_1.44-7_source + pdftoipe_20110916-3_source + pdl_1:2.4.11-4_source + pdlzip_1.3-2_source + pdmenu_1.3.2_source + pdns_3.1-4.1_source + pdns-recursor_3.3-3_source + pdnsd_1.2.8-par-3_source + pdp_1:0.12.5-2_source + pdsh_2.27-2_source + pear-horde-channel_5_source + pear-phpunit-channel_1.1-1_source + pear-symfony-project-channel_1.0-1_source + pearpc_0.4.0-5_source + pebl_1.0.2-2_source + pecomato_0.0.15-4_source + peg-e_1.1.0-1_source + peg-solitaire_1.2-1_source + pegasus-wms_4.0.1+dfsg-8_source + pegsolitaire_0.0.4-1_source + pekwm_0.1.14-2_source + pekwm-themes_1.0.5-3_source + pen_0.18.0-1_source + penguin-command_1.6.11-1_source + pennmush_1.8.2p8-1.1_source + pentaho-reporting-flow-engine_0.9.4-4_source + pente_2.2.5-7_source + pentium-builder_0.19_source + pentobi_1.1-1_source + pep8_1.2-1_source + perceptualdiff_1.1.1-1_source + percona-toolkit_2.1.2-1_source + perdition_1.19~rc5-1_source + perforate_1.2-5_source + performous_0.6.1-6_source + perftest_1.2-OFED-1.4.2-2_source + perl_5.14.2-21+deb7u1_source + perl-byacc_2.0-7_source + perl-depends_2011.0324+git74d587e-1_source + perl-doc-html_5.14.0-1_source + perl-tk_1:804.030-1_source + perl4caml_0.9.5-4_source + perlbal_1.80-2_source + perlbrew_0.43-1_source + perlconsole_0.4-4_source + perlindex_1.605-4_source + perlipq_1.25-3_source + perlpanel_1:0.9.1+cvs20051225-2_source + perlprimer_1.1.21-1_source + perltidy_20101217-1_source + permute_0.7-0-1_source + perroquet_1.1.1-3_source + personasplus_1.6.2-2_source + perspectives-extension_4.3.1-1+deb7u1_source + pescetti_0.5-1_source + pesto_25-1_source + petit_1.1.1-1_source + petitboot_12.03.29.20.47-g45e2534-2_source + petri-foo_0.1.5-1_source + petris_1.0.1-8_source + petsc_3.2.dfsg-6_source + pev_0.40-1_source + pexec_1.0~rc8-2_source + pexpect_2.4-1_source + pfb2t1c2pfb_0.3-9_source + pflogsumm_1.1.5-1_source + pfm_1.5.4-1_source + pforth_21-11_source + pfqueue_0.5.6-8_source + pfstmo_1.4-1_source + pfstools_1.8.5-1_source + pgadmin3_1.14.2-2_source + pgagent_3.2.1-1_source + pgapack_1.1.1-3_source + pgbouncer_1.5.2-4_source + pgdbf_0.5.5-1_source + pgf_2.10-1_source + pgfincore_1.1-1_source + pgfouine_1.2-3_source + pgloader_2.3.3~dev3-1.1_source + pgmemcache_2.0.6-1.1_source + pgn-extract_16.7-2_source + pgn2web_0.4-1_source + pgocaml_1.5-2_source + pgpdump_0.27-1_source + pgpgpg_0.13-9_source + pgpool2_3.1.3-5_source + pgsnap_0.7.0-1_source + pgstaging_0.11-1_source + pgtap_0.90.0-1_source + pgtcl_1:1.5-6_source + pgtune_0.9.3-2_source + pgxnclient_1.0.3-1_source + phalanx_22+d051004-13.1_source + phamm_0.5.18-3.1_source + phasex_0.12.0+m1-6_source + phat_0.4.1-5_source + phatch_0.2.7.1-1_source + phenny_2~hg28-2_source + phlipple_0.8.2-1_source + phnxdeco_0.33-3_source + phonefsod_0.1+git20110827-3_source + phoneui-apps_0.1+git20111214-2_source + phoneuid_0.1+git20110506-2_source + phonon_4:4.6.0.0-3_source + phonon-backend-gstreamer_4:4.6.0.0-2_source + phonon-backend-vlc_0.6.0-1_source + photofilmstrip_1.9.91+dfsg-1_source + photon_0.4.6-3_source + photopc_3.05-6_source + photoprint_0.4.2~pre2-2_source + php-adodb_5.04-7_source + php-apc_3.1.13-1_source + php-arc_2~20101006-2_source + php-auth_1.6.2-1_source + php-auth-http_2.1.8-1_source + php-auth-sasl_1.0.4-1_source + php-cache_1.5.6-1_source + php-cache-lite_1.7.4-1_source + php-cas_1.3.1-4_source + php-codecoverage_1.1.2+dfsg1-3_source + php-codesniffer_1.3.4-1_source + php-compat_1.6.0a3-2_source + php-config_1.10.12-4_source + php-console-table_1.1.4-1_source + php-crypt-blowfish_1.1.0~RC2-1_source + php-crypt-cbc_1.0.1-1_source + php-date_1.4.7-1_source + php-db_1.7.14-2_source + php-doc_20100521-2_source + php-elisp_1.5.0-1.1_source + php-event-dispatcher_1.1.0-3_source + php-file_1.3.0-1_source + php-file-iterator_1.3.1-2_source + php-fpdf_3:1.7.dfsg-1_source + php-geoip_1.0.7-8_source + php-getid3_1.9.3-1_source + php-gettext_1.0.11-1_source + php-html-common_1.2.5-2_source + php-html-safe_0.10.1-1_source + php-html-template-it_1:1.2.1-3_source + php-htmlpurifier_4.4.0+dfsg1-1_source + php-http_1.4.1-1_source + php-http-request_1.4.4-4_source + php-http-upload_1.0.0b2-2_source + php-http-webdav-server_1.0.0RC6-1_source + php-image-text_0.6.1-1_source + php-imagick_3.1.0~rc1-1_source + php-imlib_0.7-4.1_source + php-invoker_1.1.0-1_source + php-letodms-core_3.3.9-2_source + php-letodms-lucene_1.0.1-1_source + php-log_1.12.3-1_source + php-mail_1.2.0-4_source + php-mail-mime_1.8.4-1_source + php-mail-mimedecode_1.5.5-1_source + php-mdb2_2.5.0b3-2_source + php-mdb2-driver-mysql_1.5.0b2-1_source + php-mdb2-driver-pgsql_1.5.0b2-1_source + php-mdb2-schema_0.8.5-1_source + php-memcache_3.0.6-6_source + php-memcached_2.0.1-6_source + php-mime-type_1.3.1-1_source + php-net-checkip_1.2.1-3_source + php-net-dime_0.3-4_source + php-net-dnsbl_1.3.3-1_source + php-net-ftp_1.4.0a3-1_source + php-net-imap_1:1.1.1-1_source + php-net-ipv4_1.3.4-1_source + php-net-ipv6_1.2.2b2-1_source + php-net-ldap_1:1.1.5-1_source + php-net-ldap2_2.0.9-1_source + php-net-lmtp_1.0.1-1_source + php-net-nntp_1.5.0~rc2-1_source + php-net-portscan_1.0.3-1_source + php-net-sieve_1.3.2-1_source + php-net-smartirc_1.0.0-2_source + php-net-smtp_1.6.1-1_source + php-net-socket_1.0.9-2_source + php-net-url_1.0.15-2_source + php-net-url2_2.0.0-1_source + php-net-whois_1.0.5-1_source + php-numbers-words_0.16.4-1_source + php-openid_2.2.2-1.1_source + php-pager_2.4.8-2_source + php-ps_1.3.7-1_source + php-radius_1.2.5-2.3+deb7u1_source + php-rrd_1.1.0-1_source + php-sasl_0.1.0-1.2_source + php-services-json_1.0.3-1_source + php-services-weather_1.4.2-3_source + php-soap_0.12.0-2.1_source + php-ssh2_0.11.3-0.1_source + php-svn_1.0.1-1.2_source + php-symfony-yaml_1.0.6-1_source + php-text-captcha_0.4.3-1_source + php-text-figlet_1.0.2-3_source + php-text-password_1.1.1-1_source + php-text-template_1.1.1-2_source + php-text-wiki_1.2.0-1_source + php-timer_1.0.2-2_source + php-token-stream_1.1.3-2_source + php-tokyo-tyrant_0.6.0-2_source + php-validate_0.8.5-2_source + php-xajax_0.5-1_source + php-xml-dtd_0.5.2+dfsg1-1_source + php-xml-htmlsax3_3.0.0+cvs01112007-2_source + php-xml-parser_1.3.4-6_source + php-xml-rpc_1.5.5-0.1_source + php-xml-rpc2_1.1.1-1_source + php-xml-rss_1.0.2-3_source + php-xml-serializer_0.20.2-3_source + php5_5.4.4-14+deb7u7_source + phpbb3_3.0.10-4+deb7u1_source + phpldapadmin_1.2.2-5_source + phpmyadmin_4:3.4.11.1-2_source + phppgadmin_5.0.4-1_source + phpreports_0.4.9-2.1_source + phpsysinfo_3.0.17-1_source + phpunit_3.6.10-1_source + phpunit-mock-object_1.1.1-2_source + phpunit-selenium_1.2.6-3_source + phpunit-story_1.0.0-3_source + phpwebcounter_1.0-1_source + phpwebcounter-extra_20071108-1_source + phyml_2:20110919-1_source + pianobar_2012.05.06-2_source + pianobooster_0.6.4-3.1_source + picard_1.0-1_source + picard-tools_1.46-1_source + picocom_1.7-1_source + picolisp_3.1.0.7-1_source + picosat_936-4_source + picprog_1.9.1-2_source + picviz_0.5-1_source + pida_0.5.1-6_source + pidentd_3.0.19.ds1-7_source + pidgin_2.10.6-3_source + pidgin-audacious_2.0.0-3_source + pidgin-awayonlock_0.5.2-1_source + pidgin-blinklight_0.11.1-1_source + pidgin-encryption_3.1-1_source + pidgin-extprefs_0.7-2_source + pidgin-festival_2.4-2_source + pidgin-gmchess_0.02-1_source + pidgin-hotkeys_0.2.4-1.2_source + pidgin-lastfm_0.4a-2_source + pidgin-latex_1.4.4-2_source + pidgin-librvp_0.9.7-2_source + pidgin-microblog_0.3.0-3_source + pidgin-mpris_0.2.3-2_source + pidgin-mra_20100304-1_source + pidgin-musictracker_0.4.22-2_source + pidgin-nateon_0.0.0.svn147-1_source + pidgin-openfetion_0.3-1_source + pidgin-openpgp_0.1-2_source + pidgin-otr_3.2.1-3+deb7u1_source + pidgin-privacy-please_0.7.1-1_source + pidgin-sipe_1.13.1-2_source + pidgin-twitter_0.9.2.1-3_source + piespy_0.4.0-2.2_source + pigment_0.3.17-1_source + pigment-python_0.3.12-2_source + pigz_2.2.4-3_source + pilot-link_0.12.5-5_source + pilot-manager_1.107.0pre108-5_source + pimd_2.1.8-2_source + pinball_0.3.1-13.1_source + pinentry_0.8.1-1_source + pinfo_0.6.9-5.1_source + pingus_0.7.6-1.1_source + pinot_1.0-1_source + pinpoint_1:0.1.5~20120318-1_source + pinta_1.3-2_source + pinyin-database_1.2.99-3_source + pion-net_4.0.7+dfsg-3.1_source + pioneers_14.1-1_source + pipebench_0.40-3_source + pipemeter_1.1.3-1_source + pipenightdreams_0.10.0-13_source + pipewalker_0.9.4-1_source + pisa_3.0.32-1_source + pisg_0.72-1_source + pithos_0.3.17-1_source + pitivi_0.15.2-0.1_source + piuparts_0.45_source + pius_2.0.7-2_source + pivy_0.5.0~v609hg-1_source + piwi_0.8+20041206-3_source + pixbros_0.6.3-1_source + pixelize_1.0.0-1_source + pixelmed_20120508-1_source + pixfrogger_1.0-2_source + pixman_0.26.0-4+deb7u1_source + pixmap_2.6pl4-18_source + pkcs11-data_0.7.4-1_source + pkcs11-dump_0.3.4-1_source + pkcs11-helper_1.09-1_source + pkg-components_0.4_source + pkg-config_0.26-1_source + pkg-kde-tools_0.15.3_source + pkg-mozilla-archive-keyring_1.1_source + pkg-php-tools_0.8_source + pkglab_1.4.2-13_source + pkgsel_0.37_source + pkgsync_1.22_source + pkpgcounter_3.50-7_source + pktstat_1.8.5-3_source + plait_1.6.2-1_source + plan_1.10.1-2_source + planet-venus_0~bzr116-1_source + planets_0.1.13-13_source + planner_0.14.6-1_source + planner-el_3.42-5.1_source + plasma-widget-adjustableclock_2.6.1-1_source + plasma-widget-cwp_1.6.11-1_source + plasma-widget-fastuserswitch_0.2.1-1_source + plasma-widget-menubar_0.1.17-1_source + plasma-widget-message-indicator_0.5.8-3_source + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_source + plasma-widget-yawp_0.4.2-1_source + plasmidomics_0.2.0-2_source + plastex_0.9.2-1_source + plastimatch_1.5.11+dfsg0-1_source + player_3.0.2+dfsg-4_source + playitslowly_1.4.0-1_source + playmidi_2.4debian-9.2_source + plee-the-bear_0.6.0-1_source + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_source + plexus-active-collections_1.0~beta2-3_source + plexus-ant-factory_1.0~alpha2.1-3_source + plexus-archiver_1.0~alpha12-3_source + plexus-bsh-factory_1.0~alpha7-3_source + plexus-build-api_0.0.4-5_source + plexus-cdc_1.0~alpha14-6_source + plexus-cipher_1.5-4_source + plexus-classworlds_1.5.0-4_source + plexus-classworlds2_2.4-1_source + plexus-cli_1.2-3_source + plexus-compiler_1.6-2_source + plexus-component-api_1.0.0~alpha22-3_source + plexus-component-metadata_1.0~beta3.0.7-5_source + plexus-container-default_1.0-alpha-9-stable-1-6_source + plexus-containers_1.0~beta3.0.7-5_source + plexus-containers1.5_1.5.5-2_source + plexus-digest_1.1-3_source + plexus-i18n_1.0-beta-10-3_source + plexus-interactivity-api_1.0-alpha-6-7_source + plexus-interpolation_1.11-3_source + plexus-io_1.0~alpha5-2_source + plexus-maven-plugin_1.3.8-7_source + plexus-sec-dispatcher_1.3.1-6_source + plexus-utils_1:1.5.15-4_source + plexus-utils2_2.0.5-1_source + plexus-velocity_1.1.7-5_source + plib_1.8.5-6_source + plib-doc_1:1.8.5-3_source + plink_1.07-3_source + ploader_1.6.0-1.1_source + plopfolio.app_0.1.0-6_source + plotdrop_0.5.2-3_source + ploticus_2.41-5_source + ploticus-doc_2.41-2_source + plotmm_0.1.2-2_source + plotutils_2.6-3_source + plplot_5.9.9-5_source + plptools_1.0.9-2.4_source + plr_1:8.3.0.13-1_source + plucker_1.8-34_source + plum_2.33.1-10_source + ply_3.4-3_source + plymouth_0.8.5.1-5_source + plywood_0.5.11+nmu2_source + plzip_0.9-2_source + pm-utils_1.4.1-9_source + pmacct_0.14.0-1.1_source + pmailq_0.5-1_source + pmake_1.111-3.2_source + pmccabe_2.6_source + pmidi_1.6.0-5_source + pmk_0.10.4-1_source + pmount_0.9.23-2_source + pms_0.41-1_source + pmtools_1.10+ds1-2_source + pmud_0.10-12_source + pmw_1:4.24-1_source + pmx_2.6.18-2_source + png++_0.2.5-1_source + png-definitive-guide_20060430-1_source + png-sixlegs_2.0-1_source + png23d_1.10-1_source + png2html_1.1-5_source + pngcheck_2.3.0-5_source + pngcrush_1.7.9-1_source + pnglite_0.1.17-1_source + pngmeta_1.11-6_source + pngnq_1.0-2_source + pngphoon_1.1-2_source + pngquant_1.0-4.1_source + pngtools_0.4-1_source + pnm2ppa_1.13-4_source + pnopaste_1.4-5_source + pnp4nagios_0.6.16-2_source + pnscan_1.11-6_source + po-debconf_1.0.16+nmu2_source + po4a_0.42-1_source + poa_2.0+20060928-3_source + poc-streamer_0.4.2-3_source + pocketpc-cab_1.0.1-2_source + poco_1.3.6p1-4_source + poco-doc_1.3.6-1_source + pod2pdf_0.42-4_source + podbrowser_0.12-2_source + podget_0.5.8-1_source + podracer_1.4-1.1_source + poe.app_0.5.1-5_source + poedit_1.4.6.1-5.1_source + poker-eval_138.0-1_source + pokerth_0.9.5-1_source + polarssl_1.2.9-1~deb7u1_source + poldi_0.4.1-2.1_source + polib_1.0.0-2_source + policycoreutils_2.1.10-9_source + policyd-weight_0.1.15.2-5_source + policykit-1_0.105-3_source + policykit-1-gnome_0.105-2_source + policyrcd-script-zg2_0.1-2_source + polipo_1.0.4.1-1.2_source + polkit-kde-1_0.99.0-3_source + polkit-qt-1_0.103.0-1_source + polspline_1.1.5-5_source + polybori_0.5~rc1-2.2_source + polygen_1.0.6.ds2-12_source + polyglot_1.4.67b-1_source + polygraph_4.3.2-1.1_source + polylib_5.22.5-3+dfsg_source + polyml_5.2.1-1.1_source + polyorb_2.8~20110207-5.1_source + pommed_1.39~dfsg-2_source + pondus_0.8.0-1_source + pong2_0.1.3-1_source + pop3browser_0.4.1-4_source + popa3d_1.0.2-7_source + poppass-cgi_3-5.1_source + poppassd_1.8.5-4_source + poppler_0.18.4-6_source + poppler-data_0.4.5-10_source + poppler-sharp_0.0.3-2_source + popplerkit.framework_0.0.20051227svn-7_source + popt_1.16-7_source + popularity-contest_1.56_source + populations_1.2.33+svn0120106-2.1_source + pork_0.99.8.1-2.1_source + portabase_2.0+git20110117-1_source + portaudio_18.1-7.1_source + portaudio19_19+svn20111121-1_source + portlet-api-2.0-spec_1.0-2_source + portmidi_1:184-2.1_source + portreserve_0.0.4-1_source + portsentry_1.2-13_source + portslave_2010.04.19.1_source + portsmf_0.1~svn20101010-3_source + posh_0.10.2_source + posixlock_0.0.1-2_source + posixtestsuite_1.5.2-4_source + post-el_1:2.5-2_source + post-faq_0.10-18_source + postal_0.73_source + poster_1:20050907-1_source + posterazor_1.5.1-2_source + postfix_2.9.6-2_source + postfix-cluebringer_2.0.10-1_source + postfix-gld_1.7-3_source + postfix-policyd-spf-perl_2.010-1_source + postfixadmin_2.3.5-2_source + postfwd_1.32-2_source + postgis_1.5.3-2_source + postgresql-8.4_8.4.19-0wheezy1_source + postgresql-9.1_9.1.11-0wheezy1_source + postgresql-autodoc_1.40-3_source + postgresql-common_134wheezy4_source + postgresql-debversion_1.0.6-1_source + postgresql-filedump_9.1.0-1_source + postgresql-ocaml_1.18.0-1_source + postgresql-pgmp_1.0.0-4_source + postgresql-pljava_1.4.3-2_source + postgresql-pllua_1:0.3.2-4_source + postgresql-plproxy_2.4-1_source + postgresql-plsh_1.3-5_source + postgrey_1.34-1.1_source + postmark_1.51-7_source + postnews_0.5.3-3_source + postpone_0.2_source + postr_0.12.4-2.1_source + potool_0.12-1_source + potrace_1.10-1_source + pound_2.6-2_source + powerman_2.3.5-1_source + powermanga_0.90-dfsg-2_source + powermgmt-base_1.31_source + powerpc-ibm-utils_1.2.12-1_source + powerpc-utils_1.1.3-24_source + powertop_2.0-0.3_source + powstatd_1.5.1-9.1_source + pp-popularity-contest_1.0.5-1_source + pperl_0.25-6_source + ppl_0.11.2-8_source + ppmd_10.1-5_source + ppp_2.4.5-5.1_source + pppconfig_2.3.18+nmu4_source + pppoeconf_1.20_source + pps-tools_0.20120406+g0deb9c7e-2_source + pptp-linux_1.7.2-7_source + pptpd_1.3.4-5.2_source + pqiv_0.12-1_source + praat_5.3.16-1_source + prads_0.3.0-1_source + prayer_1.3.4-dfsg1-1_source + prboom_2:2.5.0+dfsg1-6_source + prctl_1.5-1_source + predict_2.2.3-3.1_source + prefix_1.1.1-1_source + prelink_0.0.20090925-6_source + preload_0.6.4-2_source + prelude-correlator_1.0.0-1_source + prelude-lml_1.0.0-4_source + prelude-manager_1.0.1-4_source + prelude-notify_0.9.1-1_source + premake_3.7-1_source + prep-installer_0.19_source + preprepare_0.5-1_source + preprocess_1.1.0+ds-1_source + prerex_6.4.0-3_source + presage_0.8.8-1_source + preseed_1.58_source + prettytable_0.6.1-1_source + pretzel_2.0n-2-0.3_source + preview.app_0.8.5-9_source + prewikka_1.0.0-1.2_source + prey_0.5.3-7.1_source + price.app_1.1.0-1_source + prima_1.28-1.1_source + primaxscan_0.93beta3-10_source + prime_1.0.0.1-2.2_source + prime-dict_1.0.0-2_source + primer3_2.2.3-1_source + primrose_6+dfsg1-2_source + printer-applet_4:4.8.4-1_source + printfilters-ppd_2.13-11.1_source + printing-metas_0.20120416_source + prips_0.9.9-1_source + prison_1.0+dfsg-1_source + pristine-tar_1.25+deb7u1_source + privbind_1.2-1.1_source + privoxy_3.0.19-2_source + probalign_1.4-2_source + probcons_1.12-9_source + processing-core_1.2.1-1_source + procinfo_1:2.0.304-1_source + procmail_3.22-20_source + procmail-lib_1:2009.1202-2_source + procmeter3_3.5d-1_source + procps_1:3.3.3-3_source + procserv_2.6.0-1_source + proda_1.0-8_source + profnet_1.0.21-1+wheezy1_source + profphd_1.0.39-1_source + profphd-utils_1.0.9-1_source + proftmb_1.1.10-1_source + proftpd-dfsg_1.3.4a-5+deb7u1_source + proftpd-mod-autohost_0.4-1_source + proftpd-mod-case_0.7-1_source + proftpd-mod-clamav_0.10-1_source + proftpd-mod-dnsbl_0.1.5-3_source + proftpd-mod-fsync_0.2-1_source + proftpd-mod-geoip_0.3-1_source + proftpd-mod-msg_0.4.1-1.1_source + proftpd-mod-tar_0.3.3-1_source + proftpd-mod-vroot_0.9.2-2_source + proguard_4.4-2_source + proj_4.7.0-2_source + proj-ps-doc_4.3.3-4_source + projectcenter.app_0.6.0-2_source + projectl_1.001.dfsg1-4_source + projectm_2.1.0+dfsg-1_source + prolix_0.03-1_source + proll_18-6_source + prolog-el_1.23-1_source + promoe_0.1.1-3_source + proofgeneral_4.2~pre120605-2_source + propaganda-debian_13.5.10_source + prophet_0.743-1_source + prosody_0.8.2-4_source + prosper_1.00.4+cvs.2007.05.01-4_source + protoaculous_4_source + protobuf_2.4.1-3_source + protobuf-c_0.14-1_source + prototypejs_1.7.0-2_source + prover9-manual_0.0.200902a-1_source + proxsmtp_1.10-1_source + proxy-suite_1.9.2.4-8_source + proxychains_3.1-3_source + proxycheck_0.49a-4_source + proxytunnel_1.9.0-5_source + ps-watcher_1.08-5_source + ps2eps_1.68-1_source + ps3-utils_2.3-1_source + psad_2.2-3.1_source + pscan_1.2-9_source + psensor_0.6.2.17-2_source + psgml_1.3.2-14_source + psi_0.14-3_source + psi-plus_0.15.5338-1_source + psi-translations_1.11_source + psicode_3.4.0-4_source + psignifit_2.5.6-3_source + psignifit3_3.0~beta.20120611.1-1_source + psimedia_1.0.3-git20120506-fb54b6e-1_source + pslib_0.4.5-3_source + pslist_1.3-2_source + psmisc_22.19-1+deb7u1_source + pspp_0.7.9+git20120620-1.1_source + pspresent_1.3-4_source + psqlodbc_1:09.01.0100-1+deb7u1_source + psrip_1.3-7_source + pssh_2.2.2-1_source + pstack_1.3.1-1_source + pstoedit_3.60-2_source + pstotext_1.9-6_source + pstreams_0.7.0-2_source + psutils_1.17.dfsg-1_source + psychopy_1.73.06.dfsg-1_source + psychtoolbox-3_3.0.9+svn2579.dfsg1-1_source + psycopg2_2.4.5-1_source + ptex-base_1:2.5-2.1_source + ptex-buildsupport_3.0-3_source + ptex2tex_0.4-1_source + pth_2.0.7-16_source + ptlib_2.10.4~dfsg-1_source + ptop_3.6.2-5_source + ptouch-driver_1.3-4_source + ptpd_2.1.0-debian1-2_source + ptunnel_0.71-2_source + publib_0.40-1_source + publican_2.8-3_source + publican-debian_0.2_source + pubtal_3.5-1_source + pudb_2012.1-1_source + puddletag_1.0.0~rc1-1_source + puf_1.0.0-7_source + pugl_0~svn32+dfsg0-1_source + pulseaudio_2.0-6.1_source + pump_0.8.24-7_source + puppet_2.7.23-1~deb7u3_source + puppet-lint_0.1.13-2_source + pure-ftpd_1.0.36-1.1_source + puredata_0.43.2-5_source + puredata-import_1.3-3_source + purelibc_0.4.1-1_source + purifyeps_1.1-2_source + purity_1-18_source + purity-ng_0.2.0-2_source + purity-off_0-3_source + purple-plugin-pack_2.6.3-2_source + putty_0.62-9+deb7u1_source + pv_1.2.0-1_source + pvclust_1.2-2-1_source + pvm_3.4.5-12.5_source + pvrg-jpeg_1.2.1+dfsg1-2_source + pwauth_2.3.8-1_source + pwdhash_1.7-13_source + pwgen_2.06-1_source + pwget_2010.1012+git5feaa59-1_source + pwman3_0.0.8-1_source + pwrkap_7.30-5_source + pxe_1.4.2-7_source + pxe-kexec_0.2.4-3_source + pxlib_0.6.5-1_source + pxljr_1.3+repack0-2_source + pxp_1.2.2-1_source + pxsl-tools_1.0-5_source + py-asterisk_0.4-1_source + py-libmpdclient_0.11.1-2_source + py-postgresql_1.0.2-1_source + py-radix_0.5-3_source + py-sendfile_1.2.4-1_source + py3cairo_1.10.0+dfsg-2_source + py3dns_3.0.2-1+deb7u1_source + pyacidobasic_2.2-1_source + pyacoustid_0.7-1_source + pyaimt_0.8.0.1-3_source + pyalsaaudio_0.5+svn36-1_source + pyamf_0.6.1+dfsg-3_source + pyao_0.82-5_source + pyasn1_0.1.3-1_source + pyatspi_2.5.3+dfsg-3_source + pybik_0.5-1_source + pybliographer_1.2.14-3_source + pyblosxom_1.4.3-1_source + pybluez_0.18-2_source + pybridge_0.3.0-7.1_source + pybtex_0.15-1_source + pyca_20031119-0_source + pycairo_1.8.8-1_source + pycalendar_2.0~svn188-1_source + pycallgraph_0.5.1-3_source + pycaml_0.82-14_source + pycaptcha_0.4-1_source + pycha_0.6.0-3_source + pychecker_0.8.19-5_source + pychess_0.10.1-1_source + pychm_0.8.4-1_source + pyclamd_0.2.2-1_source + pycmail_0.1.4_source + pycocuma_0.4.5-6-7_source + pycountry_0.14.1+ds1-3_source + pycparser_2.07+dfsg-1_source + pycryptopp_0.5.29-1_source + pycurl_7.19.0-5_source + pycxx_6.2.4-3_source + pydap_2.2.6.7-1_source + pydb_1.26-1_source + pydf_10_source + pydhcplib_0.6.2-3_source + pydicom_0.9.6-1_source + pydirector_1.0.0-2_source + pydoctor_0.3+bzr567-1_source + pydot_1.0.2-1_source + pyecm_2.0.1-1_source + pyenchant_1.6.5-2_source + pyentropy_0.4.1-1_source + pyepl_1.1.0-3.1_source + pyepr_0.6.1-2_source + pyevolve_0.6~rc1+svn398+dfsg-2_source + pyew_2.0-3_source + pyexcelerator_0.6.4.1-1_source + pyexiv2_0.3.2-5_source + pyfai_0.3.5-1_source + pyfiglet_0.6+dfsg-1_source + pyfits_1:3.0.8-2_source + pyflakes_0.5.0-2_source + pyfltk_1.3.0-1_source + pyformex_0.8.6-4_source + pyfribidi_0.11.0+repack-1_source + pyftpd_0.8.5_source + pyg_0.9.7_source + pygame_1.9.1release+dfsg-8_source + pygccxml_1.0.0-4_source + pygdchart2_0.beta1-3.4_source + pyglet_1.1.4.dfsg-2_source + pygments_1.5+dfsg-1_source + pygmy_0.48-3_source + pygobject_3.2.2-2_source + pygobject-2_2.28.6-10_source + pygoocanvas_0.14.1-1_source + pygooglechart_0.3.0-1_source + pygopherd_2.0.18.3+nmu2_source + pygpgme_0.2-3_source + pygpiv_2.0.0-4.1_source + pygrace_0.4p2-3_source + pygresql_1:4.0-3_source + pygrib_1.9.3-1_source + pygtk_2.24.0-3_source + pygtkmvc_1.99.1-1_source + pygtksourceview_2.10.1-2_source + pyhamcrest_1.6-1_source + pyicqt_0.8.1.5-5_source + pyicu_1.4-1_source + pyimport-relative_0.1.0-2_source + pyinotify_0.9.3-1.1_source + pyip_0.7-1_source + pyjavaproperties_0.6-1_source + pyjunitxml_0.6-1_source + pykaraoke_0.7.5-1_source + pykcs11_1.2.4-1_source + pykde4_4:4.8.4-1_source + pyke_1.1.1-3_source + pykerberos_1.1+svn4895-1_source + pykickstart_1.83-1_source + pylast_0.5.11-1_source + pyliblo_0.9.1-2_source + pylibmc_1.2.2-1_source + pylibravatar_1.5-3_source + pylibssh2_1.0.0-1.1_source + pylint_0.25.1-1_source + pylirc_0.0.5-3_source + pylogsparser_0.4-1_source + pylons_1.0-2_source + pylucene_3.5.0-1.1_source + pymacs_0.23-1.1_source + pymad_0.6-1.2_source + pymca_4.6.0-2_source + pyme_1:0.8.1-2_source + pymecavideo_6.0-5_source + pymetrics_0.8.1-6_source + pymilter_0.9.5-3_source + pymilter-milters_0.8.13-6_source + pymissile_0.0.20060725-2_source + pymodbus_0.9.0+r175-3_source + pymol_1.5.0.1-2_source + pymongo_2.2-4+deb7u1_source + pymsnt_0.11.3-5_source + pymssql_1.0.2+dfsg-1_source + pymtbl_0.1-2_source + pymtp_0.0.4-4_source + pymvpa_0.4.8-1_source + pymvpa2_2.1.0-1_source + pynagram_1.0.1-1_source + pyneighborhood_0.5.1-2_source + pynetsnmp_0.28.14-1.2_source + pynifti_0.20100607.1-4_source + pynn_0.7.4-1_source + pyntor_0.6-4_source + pyodbc_2.1.7-1_source + pyode_1.2.0-4+cvs20090320_source + pyogg_1.3+repack-5_source + pyopengl_3.0.1-1_source + pyopenssl_0.13-2+deb7u1_source + pyoptical_0.3-1_source + pyorbit_2.24.0-6_source + pyp_2.12-1_source + pypar2_1.4-6_source + pyparallel_0.2-7_source + pyparsing_1.5.6+dfsg1-2_source + pyparted_3.6-6_source + pype_2.9.1-4_source + pypibrowser_1.5-2_source + pyplusplus_1.0.0-1_source + pypolicyd-spf_1.0-2_source + pyppd_0.4.9-6_source + pyprotocols_1.0a.svn20070625-5_source + pypureomapi_0.2-1_source + pyquery_1.2.1-1_source + pyqwt3d_0.1.7~cvs20090625-9_source + pyqwt5_5.2.1~cvs20091107+dfsg-6_source + pyracerz_0.2-5_source + pyrad_1.2-1+deb7u2_source + pyragua_0.2.5-5_source + pyramid-beaker_0.6.1+ds1-1_source + pyrenamer_0.6.0-1.1_source + pyrex_0.9.8.5-2_source + pyrit_0.4.0-2_source + pyrite-publisher_2.1.1-7.1_source + pyro_1:3.14-1.1_source + pyroman_0.5.0~alpha1-3_source + pyroom_0.4.1-6_source + pyrrd_0.1.0-1_source + pysatellites_1.0-6_source + pyscard_1.6.12.1-3_source + pyscrabble_1.6.2-9_source + pyscript_0.6.1-3_source + pyserial_2.5-2.1_source + pysesame_0.24-1_source + pyshp_1.1.4-1_source + pyside_1.1.1-3_source + pyside-tools_0.2.13-3_source + pysieved_1.1-0.2_source + pysmbc_1.0.6-1_source + pysolfc_2.0-2_source + pysolfc-cardsets_2.0+dfsg2-1_source + pysparse_1.1-1_source + pyspatialite_3.0.1-2_source + pyspf_2.0.7-3_source + pyspi_0.6.1-1.3_source + pyspread_0.2.2-1_source + pystatgrab_0.5-4_source + pystemmer_1.2.0+dfsg-1_source + pysubnettree_0.12-4_source + pysurfer_0.3+git15-gae6cbb1-1.1_source + pysvn_1.7.5-1.1_source + pysycache_3.1-3_source + pytables_2.3.1-3_source + pytagsfs_0.9.2-6_source + pytango_7.2.3-2_source + pytest_2.2.4-2_source + pytest-xdist_1.8-0.1_source + pyth_0.5.6-3_source + pythia8_8.1.65-1_source + python-aalib_0.2-3_source + python-adns_1.2.1-5_source + python-adodb_2.10-1.1_source + python-aiml_0.8.6-2_source + python-amqplib_1.0.2-1_source + python-anyjson_0.3.1-2_source + python-application_1.3.0-1_source + python-apptools_4.0.1-1_source + python-apsw_3.7.6.3-r1-1_source + python-apt_0.8.8.2_source + python-ase_3.6.0.2515-1_source + python-aspects_1.3-5_source + python-async_0.6.1-1_source + python-augeas_0.4.0-2.1_source + python-authkit_0.4.3-1_source + python-avc_0.8.3-1_source + python-axiom_0.6.0-3_source + python-babel_0.9.6-1_source + python-bibtex_1.2.5-1_source + python-biggles_1.6.6-1_source + python-biopython_1.59-1_source + python-bitarray_0.8.0-2_source + python-bitbucket_0.1-1_source + python-bloomfilter_1.0.3-2_source + python-boto_2.3.0-1_source + python-bottle_0.10.11-1_source + python-box2d_2.0.2+svn20100109.244-1_source + python-bsddb3_5.2.0-1_source + python-buzhug_1.6-1_source + python-byteplay_0.2-2_source + python-bzutils_0.2-1_source + python-carrot_0.10.7-1_source + python-cdd_0.0.11_source + python-cddb_1.4-5.1_source + python-central_0.6.17_source + python-chaco_4.1.0-1_source + python-chameleon_2.6.1-1_source + python-cherrypy_2.3.0-3_source + python-cjson_1.0.5-4_source + python-cl_0.0.3-1_source + python-clamav_0.4.1-7_source + python-cliapp_1.20120630-1_source + python-clint_0.3.1-1_source + python-cloudfiles_1.7.9.2-1_source + python-cloudservers_1.1-1.2_source + python-cluster_1.1.1b3-1_source + python-cobe_2.0.2-1_source + python-cogent_1.5.1-2_source + python-colorama_0.2.4-1.1_source + python-concurrent.futures_2.1.2-1_source + python-configglue_1.0-1_source + python-contract_1.4-3_source + python-couchdb_0.8-1_source + python-couchdbkit_0.6.3-1_source + python-coverage_3.4-3_source + python-coverage-test-runner_1.8-1_source + python-cpl_0.3.6-1_source + python-crypto_2.6-4+deb7u3_source + python-csa_0.1.0-1.1_source + python-cssselect_0.6.1-1_source + python-ctypeslib_0.0.0+svn20100125-4_source + python-cups_1.9.48-1.1_source + python-daap_0.7.1-3_source + python-daemon_1.5.5-1_source + python-dateutil_1.5+dfsg-0.1_source + python-debian_0.1.21_source + python-debianbts_1.11_source + python-decorator_3.3.3-1_source + python-defaults_2.7.3-4+deb7u1_source + python-defer_1.0.6-2_source + python-demgengeo_0.99~bzr106-1_source + python-demjson_1.6-2_source + python-dexml_0.4.2-2_source + python-dhm_0.6-3_source + python-dingus_0.3.4-1_source + python-distutils-extra_2.36-1_source + python-django_1.4.5-1+deb7u4_source + python-django-contact-form_0+hg61-2_source + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_source + python-django-djapian_2.3.1-3_source + python-django-extdirect_0.7-1_source + python-django-feincms_1.6.2-2_source + python-django-formfieldset_0+git20090520-621cb58-1_source + python-django-lint_0.13-2_source + python-django-localeurl_1.5-3_source + python-django-mptt_0.5.2-1_source + python-django-registration_0.8-2_source + python-django-rosetta_0.6.6-1_source + python-django-shorturls_1.0.1-3_source + python-django-social-auth_0.7.0-1_source + python-django-south_0.7.5-1_source + python-django-tagging_0.3.1-2_source + python-django-threadedcomments_0.5.3-4_source + python-django-tinymce_1.5-3_source + python-django-treebeard_1.61-3_source + python-django-voting_0.1-2_source + python-django-websocket_0.3.0-3_source + python-djvulibre_0.3.9-1_source + python-dmidecode_3.10.13-1.1_source + python-dns_2.3.6-1+deb7u1_source + python-docutils_0.8.1-8_source + python-dpkt_1.6+svn54-1_source + python-drizzle_1.0-3.1_source + python-dsv_1.4.1-2_source + python-easygui_0.96-3_source + python-edbus_0.5.0+r49577-1_source + python-elements_0.13+svn20090823.230+dfsg-2_source + python-enable_4.1.0-1_source + python-enet_0.0~svn24-1_source + python-enthoughtbase_3.1.0-2_source + python-enum_0.4.4-2_source + python-envisage_4.1.0-2_source + python-envisagecore_3.2.0-2_source + python-envisageplugins_3.2.0-2_source + python-espeak_0.4-1_source + python-ethtool_0.7-1.1_source + python-eventlet_0.9.16-3_source + python-exif_1.0.8-3_source + python-fabio_0.0.8-1_source + python-facebook_0.svn20100209-3_source + python-fastimport_0.9.2-1_source + python-feedvalidator_0~svn1022-2_source + python-fftw_0.2.2-1_source + python-fixtures_0.3.6-1.1_source + python-flexmock_0.9.6-1_source + python-flickrapi_1.2-3_source + python-formalchemy_1.4.2-1_source + python-formencode_1.2.4-2_source + python-fs_0.3.0-2_source + python-fudge_1.0.3-3_source + python-fuse_2:0.2.1-7_source + python-gasp_0.3.4-1_source + python-gd_0.56+dfsg-3_source + python-gdata_2.0.17+dfsg-1_source + python-gearman_2.0.2-2_source + python-geoclue_0.1.0-4_source + python-geohash_0.8.3-1_source + python-geoip_1.2.4-2_source + python-gevent_0.13.6-1+nmu3_source + python-gflags_1.5.1-1_source + python-git_0.3.2~RC1-1_source + python-gitdb_0.5.4-1_source + python-glpk_0.4.45-1_source + python-gmpy_1.15-1_source + python-gnatpython_54-3_source + python-gnupg_0.3.0-1.1_source + python-gnuplot_1.8-1.1_source + python-gnutls_1.2.4-1_source + python-goopy_0.1-5_source + python-graph_1.8.1-1_source + python-greenlet_0.3.1-2.5_source + python-gtk2-tutorial_2.4-1_source + python-gtkglext1_1.1.0-9.1_source + python-gudev_147.2-3_source + python-gvgen_0.9-2_source + python-hl7_0.2.2-1_source + python-html2text_3.200.3-2_source + python-htmltmpl_1.22-10_source + python-http-parser_0.7.5-1_source + python-httplib2_0.7.4-2+deb7u1_source + python-id3_1.2-6.2_source + python-igraph_0.5.4-2_source + python-imaging_1.1.7-4_source + python-imaging-doc-handbook_1.1.2-1.1_source + python-iniparse_0.4-2.1_source + python-initgroups_2.13.0-1_source + python-iowait_0.1-1.1_source + python-ipaddr_2.1.10-1_source + python-ipcalc_0.3-1_source + python-iplib_1.1-3_source + python-irclib_0.4.8-1_source + python-iso8583_1.1-1_source + python-iso8601_0.1.4-2_source + python-jpype_0.5.4.2-2_source + python-jsonrpc2_0.3.2-3_source + python-jsonschema_0.2-1_source + python-jswebkit_0.0.3-2_source + python-kajiki_0.3.5-1_source + python-keyczar_0.6~b.061709+svn502-1_source + python-keyring_0.7.1-1+deb7u1_source + python-keystoneclient_2012.1-3+deb7u1_source + python-kinterbasdb_3.3.0-3_source + python-krbv_1.0.90-1_source + python-lamson_1.0pre11-1_source + python-larch_1.20121006-1_source + python-launchpadlib_1.9.12-2_source + python-ldap_2.4.10-1_source + python-lepl_5.1.1-1_source + python-leveldb_0~svn51-1_source + python-levenshtein_0.10.1-2_source + python-liblas_1.2.1-2_source + python-libpcap_0.6.2-0.2_source + python-lightblue_0.3.2-1_source + python-llfuse_0.37.1-2_source + python-lockfile_1:0.8-2_source + python-logging-extra_0.1.3-1.1_source + python-lzma_0.5.3-2_source + python-lzo_1.08-1_source + python-macaron_0.3.1-1_source + python-mailer_0.7-1_source + python-markdown_2.1.1-3_source + python-mecab_0.99.3-1_source + python-mechanize_1:0.2.5-3_source + python-medusa_1:0.5.4-7_source + python-melangeclient_0.1-1.2_source + python-meld3_0.6.5-3.1_source + python-memcache_1.48-1_source + python-messaging_0.5.11+debian-1_source + python-mhash_1.4-1_source + python-midiutil_0.87-2_source + python-mimeparse_0.1.3-6_source + python-minimock_1.2.7-1_source + python-mock_0.8.0-3_source + python-mod-pywebsocket_0.7.5-1_source + python-mode_1:5.1.0-1_source + python-mongoengine_0.6.13-2_source + python-mox_0.5.3-3_source + python-mpd_0.3.0-4_source + python-mrjob_0.3.3.2-1_source + python-musicbrainz2_0.7.4-1_source + python-mysqldb_1.2.3-2_source + python-netaddr_0.7.7-1_source + python-netfilter_0.5.7-1_source + python-networkx_1.7~rc1-3_source + python-neuroshare_0.8.5-1_source + python-nids_0.6.1-1_source + python-nmap_0.2.4-1_source + python-notify2_0.3-2_source + python-novaclient_1:2012.1-4_source + python-nss_0.12-1_source + python-numpy_1:1.6.2-1.2_source + python-oauth_1.0.1-3_source + python-oauth2_1.5.211-2_source + python-oauthlib_0.1.2-1_source + python-old-doctools_2.5.5-2.1_source + python-omniorb_3.6-1_source + python-openid_2.2.5-3_source + python-opster_3.7-1_source + python-osd_0.2.14-5.1_source + python-otr_0.2.1-1_source + python-pam_0.4.2-13_source + python-passfd_0.2-1_source + python-passlib_1.5.3-2_source + python-pcs_0.5+debian-1.1_source + python-pdftools_0.37-3_source + python-peak.rules_0.5a1+r2707-1_source + python-peak.util_20110909-1_source + python-pefile_1.2.9.1-1_source + python-pgmagick_0.5.1-1_source + python-phoneutils_0.1+git20100219-1_source + python-pika_0.9.5-1_source + python-pip_1.1-3_source + python-pipeline_0.1.3-3_source + python-plwm_2.6a+20080530-1.1_source + python-pmw_1.3.2-6_source + python-popcon_1.1_source + python-poppler_0.12.1-8_source + python-poppler-qt4_0.16.2-2_source + python-poster_0.8.1-0.1_source + python-pqueue_0.2-7.1_source + python-prctl_1.1.1-1.1_source + python-progressbar_2.2-2_source + python-protobuf.socketrpc_1.3.2-2_source + python-prowlpy_0+20100211.92df046-1_source + python-psutil_0.5.1-1_source + python-ptrace_0.6.4-2_source + python-pyalsa_1.0.25-1_source + python-pyaudio_0.2.4-2_source + python-pychart_1.39-7_source + python-pyds9_1.4-1_source + python-pyface_4.1.0-1_source + python-pyftpdlib_0.7.0-1_source + python-pygraphviz_1.1-2_source + python-pyhsm_1.0.4-1_source + python-pylibacl_0.5.1-1.1_source + python-pymetar_0.19-1_source + python-pynast_1.1-3_source + python-pyo_0.6.1-1_source + python-pypcap_1.1.2+debian-2.2_source + python-pypdf_1.13-1_source + python-pypm_0.0.7-7_source + python-pyproj_1.8.9-1_source + python-pyramid_1.2.3+dfsg-1_source + python-pyramid-tm_0.4-1_source + python-pyramid-zcml_0.9.2-1_source + python-pyrss2gen_1.0.0-9_source + python-pysearch_3.1-1.1_source + python-pysnmp4_4.2.2-1_source + python-pysnmp4-apps_0.3.2-1_source + python-pysnmp4-mibs_0.1.3-1_source + python-pysolr_2.0.15-1_source + python-pysqlite1.1_1.1.8a-6_source + python-pysqlite2_2.6.3-3_source + python-pytc_0.8-1_source + python-pytils_0.2.3-2_source + python-pytyrant_1.1.17-1_source + python-pywcs_1.11-1_source + python-pyxattr_0.5.1-1.1_source + python-qrencode_1.01-2_source + python-qt4_4.9.3-4_source + python-quantities_0.10.1-1_source + python-quantumclient_2012.1-1_source + python-recaptcha_1.0.6-1_source + python-redis_2.4.13-1_source + python-regex_0.1.20120613-1_source + python-reportlab_2.5-1.1_source + python-repoze.lru_0.5-2_source + python-repoze.sphinx.autointerface_0.4-1_source + python-repoze.tm2_1.0b2-1_source + python-repoze.what_1.0.9-2_source + python-repoze.what-plugins_20090531-2_source + python-repoze.who_1.0.18-2_source + python-repoze.who-plugins_20090913-1_source + python-restkit_4.1.3-2_source + python-scientific_2.8-4_source + python-scipy_0.10.1+dfsg2-1_source + python-scrapy_0.14.4-1_source + python-scriptutil_1-1_source + python-setproctitle_1.0.1-1_source + python-setupdocs_1.0.5-3_source + python-sfml_1.5-2_source + python-shapely_1.2.14-1_source + python-simpy_2.3.1-1_source + python-slimmer_0.1.30-6_source + python-smbpasswd_1.0.1-1.2_source + python-smmap_0.8.2-1_source + python-snappy_0.4-1_source + python-soaplib_0.8.1-2_source + python-soappy_0.12.0-4_source + python-socketpool_0.4.1-1_source + python-socksipy_1.0-1_source + python-sponge_0.3.1-1_source + python-sptest_0.2.1-2_source + python-sqlite_1.0.1-9_source + python-stdlib-extensions_2.7.3-1_source + python-stdnum_0.7-1_source + python-stompy_0.2.9-1_source + python-sunlight_1.1.5-1_source + python-support_1.0.15_source + python-tcpwrap_0.2-2.1_source + python-tempita_0.5.1-1_source + python-testscenarios_0.2-1_source + python-testtools_0.9.14-2_source + python-textile_1:2.1.5-1_source + python-tgext.admin_0.2.6-2_source + python-tidylib_0.2.1~dfsg-2_source + python-torctl_20110618git-1_source + python-tornado_2.3-2_source + python-toscawidgets_0.9.7.2-2_source + python-tracing_0.6-2_source + python-traits_4.1.0-1_source + python-traitsbackendqt_3.6.0-2_source + python-traitsbackendwx_3.6.0-3_source + python-traitsgui_3.6.0-3_source + python-traitsui_4.1.0-1_source + python-translationstring_1.1-2_source + python-trml2pdf_1.2-3_source + python-ttystatus_0.19-1_source + python-txosc_0.2.0-1_source + python-tz_2012c-1_source + python-ucltip_0.7.1-1_source + python-unac_1.7.0-1_source + python-unicodecsv_0.9.0-1_source + python-uniconvertor_1.1.4-1_source + python-unipath_0.2.1+dfsg-1_source + python-unit_1.4.1-16_source + python-unshare_0.1-2_source + python-urllib3_1.3-3_source + python-utmp_0.8+nmu1_source + python-venusian_1.0a6-1_source + python-virtualenv_1.7.1.2-2_source + python-visual_1:5.12-1.5_source + python-vobject_0.8.1c-4_source + python-vsgui_0.3.3-1_source + python-w3lib_1.0-1_source + python-wadllib_1.3.0-2_source + python-weberror_0.10.3-1_source + python-webflash_0.1a9-4_source + python-weblib_1.3.9-1_source + python-webob_1.1.1-1.1_source + python-webunit_1:1.3.10-2_source + python-werkzeug_0.8.3+dfsg-1_source + python-whisper_0.9.10-1_source + python-whiteboard_1.0+git20111009-1_source + python-whois_0.6.4-2_source + python-whoosh_2.3.2-2_source + python-wordpress-library_1.1-1_source + python-wxmpl_2.0.0-2_source + python-xattr_0.6.4-2_source + python-xklavier_0.4-4_source + python-xlib_0.14+20091101-1_source + python-xlrd_0.6.1-2_source + python-xmlrunner_1.2-1_source + python-xmltv_1.3-1_source + python-xmpp_0.4.1-cvs20080505.2_source + python-yenc_0.3+debian-2_source + python-yubico_1.1.0-2_source + python2.6_2.6.8-1.1_source + python2.7_2.7.3-6_source + python3-chardet_2.0.1-1_source + python3-dateutil_2.0+dfsg1-1_source + python3-defaults_3.2.3-6_source + python3-stdlib-extensions_3.2.3-1_source + python3.2_3.2.3-7_source + pythoncad_0.1.37.0-3_source + pythoncard_0.8.2-2_source + pythondialog_2.7-1_source + pythonmagick_0.9.7-2_source + pythonqt_2.0.1-1.1_source + pythontracer_8.10.16-1.1_source + pytimechart_1.0.0~rc1-3_source + pytone_3.0.0-1_source + pytools_2011.5-2_source + pytracer_0.2.3-1_source + pytrainer_1.9.1-2_source + pyudev_0.13-1_source + pyusb_0.4.3-1_source + pyvnc2swf_0.9.5-5_source + pyvorbis_1.5-1_source + pyvtk_0.4.74-3_source + pywapi_0.2.2-1_source + pywavelets_0.2.0-5_source + pywbem_0.7.0-4_source + pywebdav_0.9.8-3_source + pywebkitgtk_1.1.8-2_source + pyx_0.11.1-2_source + pyxdg_0.19-5_source + pyxid_1.0-1_source + pyxine_0.1alpha2-7_source + pyxmpp_1.1.2-1_source + pyxnat_0.9.0~dev0-1.1_source + pyxplot_0.8.4-5_source + pyyaml_3.10-4_source + pyzmq_2.2.0-1_source + pyzor_1:0.5.0-2_source + q4wine_0.121-4_source + qalculate-gtk_0.9.7-3_source + qantenna_0.2.3-2_source + qapt_1.3.0-2_source + qastools_0.17.2-2_source + qbankmanager_0.9.55beta-3_source + qbittorrent_2.9.8-1_source + qbrew_0.4.1-3_source + qbzr_0.22.2-1_source + qca-cyrus-sasl_2.0.0-beta3-2_source + qca2_2.0.3-4_source + qca2-plugin-gnupg_2.0.0~beta3-2_source + qca2-plugin-ossl_2.0.0~beta3-2_source + qcad_2.0.5.0-1+090318.1-2_source + qcomicbook_0.8.2-1_source + qconf_1.4-3_source + qcontrol_0.4.2-7+wheezy2_source + qct_1.7-3_source + qd_2.3.11.dfsg-2.1_source + qdacco_0.8.2-1_source + qdbm_1.8.78-2_source + qdjango_0.2.5-2_source + qdox_1.12-1_source + qedje_0.4.0+lgpl-3_source + qelectrotech_0.22+svn897-1_source + qemu_1.1.2+dfsg-6a_source + qemu-kvm_1.1.2+dfsg-6_source + qemu-launcher_1.7.4-1_source + qemuctl_0.2-2_source + qfits_6.2.0-5_source + qgis_1.7.4+1.7.5~20120320-1.1_source + qgit_2.4-1_source + qgo_2~svn764-1_source + qhull_2009.1-3_source + qi_20111113-1_source + qiime_1.4.0-2_source + qimageblitz_1:0.0.6-4_source + qimhangul_0.2.0-2_source + qingy_0.9.7-2_source + qiv_2.2.4-1_source + qjackctl_0.3.9-2_source + qjackrcd_1.0.6~ds0-1_source + qjson_0.7.1-7_source + qla-tools_20090804-1_source + qlandkartegt_1.5.0~dfsg1-1_source + qliss3d_1.4-1_source + qlvnictools_0.0.1-1_source + qmail-run_2.0.2_source + qmail-tools_0.1.0_source + qmc_0.94-3_source + qmf_1.0.7~2011w23.2-2.1_source + qmidiarp_0.5.0-1_source + qmidinet_0.1.2-1_source + qmidiroute_0.3.0-1_source + qmmp_0.5.5-1_source + qmpdclient_1.2.2-2_source + qmtest_2.4.1-1_source + qnapi_0.1.5-9_source + qoauth_1.0.1-1_source + qof_0.8.6-1_source + qonk_0.3.1-3.1_source + qpdf_2.3.1-4_source + qpdfview_0.3.1-1_source + qpid-cpp_0.16-6+deb7u1_source + qpid-python_0.16-1_source + qpid-qmf_0.16-1_source + qpid-tools_0.14-1_source + qprint_1.0.dfsg.2-2_source + qpsmtpd_0.84-9_source + qpxtool_0.7.1.002-5_source + qr-tools_1.2-2_source + qrencode_3.3.0-2_source + qrfcview_0.62-5.1_source + qrq_0.3.0-2_source + qrupdate_1.1.1-1_source + qsampler_0.2.2-5_source + qsapecng_2.0.0-5_source + qscintilla2_2.6.2-2_source + qsf_1.2.7-1_source + qsstv_7.1.7-3_source + qstardict_0.12.9-1.1_source + qstat_2.11-3_source + qsynth_0.3.6-2_source + qt-assistant-compat_4.6.3-4_source + qt-at-spi_0.3.1-3_source + qt-gstreamer_0.10.2-2_source + qt-sdk_2_source + qt4-perl_4.8.4-1_source + qt4-x11_4:4.8.2+dfsg-11_source + qtads_2.1.3-1_source + qtcreator_2.5.0-2_source + qtemu_1.0.5-2_source + qterm_1:0.5.12-1.1_source + qtexengine_0.3-3_source + qthid-fcd-controller_3.1-5_source + qtiplot_0.9.8.8-5_source + qtl_1.23-16-1_source + qtm_1.3.6-1_source + qtmobility_1.2.0-3_source + qtoctave_0.10.1-3_source + qtractor_0.5.5-1_source + qtruby_4:4.8.4-1_source + qtscriptgenerator_0.2.0-1_source + qtscrob_0.10-4_source + qtsmbstatus_2.2.1-2_source + qtwebkit_2.2.1-5_source + qtzeitgeist_0.7.0-1_source + quadprog_1.5-4-1_source + quagga_0.99.22.4-1+wheezy1_source + quakespasm_0.85.7-1_source + quantlib_1.2-2_source + quantlib-refman-html_1.2-1_source + quantlib-swig_1.2-2_source + quantum_2012.1-5+deb70u1_source + quarry_0.2.0.dfsg.1-4_source + quassel_0.8.0-1_source + quelcom_0.4.0-13_source + quesoglc_0.7.2-5_source + queuegraph_1.1.1-3_source + quicklisp_1.0-1_source + quickml_0.7-4_source + quickplot_0.10.3-1_source + quicksynergy_0.9-1_source + quik_2.1-9.1_source + quik-installer_0.0.32_source + quilt_0.60-2_source + quilt-el_0.48.0-1_source + quisk_3.6.2-1_source + quitcount_2.0-1_source + quixote_2.7~b2-1_source + quixote1_1.2-4.1_source + quodlibet_2.4-1_source + quodlibet-plugins_1:2.4-1_source + quota_4.00-4+deb7u1_source + quotatool_1.4.12-1_source + quotecolors_0.3-3_source + qutecom_2.2.1+dfsg1-3_source + qutecsound_0.6.1-2_source + qutemol_0.4.1~cvs20081111-2_source + quvi_0.4.2-1_source + qviaggiatreno_2010.11.1-1_source + qwbfsmanager_1.1.0-1.1_source + qwo_0.5-2_source + qwt_6.0.0-1.2_source + qwt5_5.2.2-3_source + qwtplot3d_0.2.7+svn191-7_source + qxmlrpc_0.0.svn6-2_source + qxmpp_0.4.92-1_source + qxw_20110923-1_source + qzion_0.4.0+lgpl-4_source + r-base_2.15.1-4_source + r-bioc-biobase_2.14.0-1_source + r-bioc-biocgenerics_0.2.0-1_source + r-bioc-cummerbund_1.2.0-1_source + r-bioc-edger_2.6.1~dfsg-1_source + r-bioc-hilbertvis_1.14.0-1_source + r-bioc-limma_3.12.0~dfsg-1_source + r-bioc-qvalue_1.30.0-1_source + r-cran-amelia_1.6.1-1_source + r-cran-amore_0.2-12-2_source + r-cran-bayesm_2.2-4-1_source + r-cran-class_7.3-4-1_source + r-cran-coda_0.14-7-1_source + r-cran-colorspace_1.0.1-1_source + r-cran-combinat_0.0-8-3_source + r-cran-deal_1.2.34-1_source + r-cran-diagnosismed_0.2.3-2_source + r-cran-digest_0.5.2-1_source + r-cran-domc_1.2.5-1_source + r-cran-dosnow_1.0.6-1_source + r-cran-eco_3.1-4-2_source + r-cran-epi_1.1.33-1_source + r-cran-epibasix_1.1-3_source + r-cran-epicalc_2.14.1.6-1_source + r-cran-epir_0.9-38-1_source + r-cran-epitools_1:0.5-6-1_source + r-cran-evd_2.2-4-2_source + r-cran-foreach_1.4.0-1_source + r-cran-g.data_2.0-4_source + r-cran-gam_1.06.2-1_source + r-cran-genabel_1.7-0-3_source + r-cran-genetics_1.3.6-2_source + r-cran-getopt_1.17-1_source + r-cran-ggplot2_0.8.9-1_source + r-cran-gmaps_0.2-1_source + r-cran-haplo.stats_1.5.5-1_source + r-cran-hdf5_1.6.10-1_source + r-cran-inline_0.3.8-1_source + r-cran-int64_1.1.2-1_source + r-cran-iterators_1.0.6-1_source + r-cran-lpsolve_5.6.6-1_source + r-cran-mapdata_2.2-1-1_source + r-cran-mapproj_1.1-8.3-2_source + r-cran-maps_2.2-5-1_source + r-cran-mass_7.3-19-1_source + r-cran-medadherence_1.02-1_source + r-cran-mnp_2.6-2-1_source + r-cran-msm_1.1-1_source + r-cran-multicore_0.1-7-1_source + r-cran-nnet_7.3-4-1_source + r-cran-nws_2.0.0.3-2_source + r-cran-plotrix_3.2-6-1_source + r-cran-plyr_1.7.1-1_source + r-cran-proto_0.3-9.2-1_source + r-cran-pscl_1.03.5-1+deb70u1_source + r-cran-psy_1.0-4_source + r-cran-randomforest_4.6-6-1_source + r-cran-reshape_0.8.4-1_source + r-cran-reshape2_1.2.1-1_source + r-cran-rjags_3.3-1_source + r-cran-rms_3.5-0-1_source + r-cran-rocr_1.0-4-3_source + r-cran-rsqlite_0.11.1-1_source + r-cran-runit_0.4.26-1_source + r-cran-slam_0.1-24-1_source + r-cran-sn_0.4-17-1_source + r-cran-sp_1:0.9-81-1_source + r-cran-spatial_7.3-4-1_source + r-cran-spc_1:0.4.1-1_source + r-cran-stabledist_0.6-4-1_source + r-cran-stringr_0.6.0-1_source + r-cran-teachingdemos_2.7-1_source + r-cran-timedate_2160.95-1_source + r-cran-timeseries_2160.94-1_source + r-cran-vcd_1:1.2-12-1_source + r-cran-vegan_2.0-3-1_source + r-cran-vgam_0.8-7-1_source + r-cran-xml_3.9-4-1_source + r-cran-xtable_1:1.5-6-1_source + r-other-bio3d_1.1-4-1_source + r-other-mott-happy_2.1-7_source + r-zoo_1.7-7-1_source + r5rs-doc_20010328-7_source + rabbit_1.0.8-2_source + rabbitmq-server_2.8.4-1_source + rabbitsign_2.1+dmca1-1_source + rabbitvcs_0.15.0.5-3_source + rabbyt_0.8.1-1_source + racc_1.4.8-4_source + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_source + radare2_0.9-3_source + radare2-bindings_0.9-1_source + radeontool_1.6.2-1.1_source + radiance_4R1+20120125-1_source + radicale_0.7-1.1_source + radioclk_1.0.ds1-12_source + radiotray_0.7.2-1_source + radiusclient_0.3.2-14_source + radiusclient-ng_0.5.6-1.1_source + radiusd-livingston_2.1-20_source + radsecproxy_1.6.2-1_source + radvd_1:1.8.5-1_source + rafkill_1.2.2-3.3_source + ragel_6.7-1.1_source + raidutils_0.0.6-19_source + rail_1.2.6-2_source + rails_2:2.3.14.2_source + rainbow_0.8.6-1_source + raincat_1.1-3_source + rakarrack_0.6.1-4_source + rake_0.9.2.2-4_source + rake-compiler_0.8.1-1_source + rakudo_0.1~2012.01-1_source + ramond_0.5-4_source + rancid_2.3.8-3_source + randomize-lines_0.2.7_source + randomplay_0.60+nmu1_source + randomsound_0.2-5_source + randtype_1.13-10_source + ranger_1.5.4-1_source + rant_0.5.8-8_source + rapid-photo-downloader_0.4.5-3_source + rapid-spring_0.6.0-1_source + rapidsvn_0.12.0dfsg-6_source + raptor_1.4.21-7.1_source + raptor2_2.0.8-2_source + rarian_0.8.1-5_source + rarpd_0.981107-8_source + raschsampler_0.8-5-1_source + rasmol_2.7.5.2-1_source + raspell_1.2-2_source + rasqal_0.9.29-1_source + raster3d_3.0-2-4_source + rastertosag-gdi_0.1-3_source + rat_4.2.22-2.1_source + ratbox-services_1.2.4-2_source + ratfor_1.0-15_source + ratmenu_2.3.20_source + ratpoison_1.4.5-4_source + ratproxy_1.58+dfsg-3_source + rats_2.3-1_source + raul_0.8.0+dfsg0-0.1_source + rawdog_2.13.dfsg.1-1_source + rawstudio_2.0-1.1_source + rawtherapee_4.0.9-4_source + raxml_7.2.8-2_source + razor_1:2.85-4_source + rbenv_0.3.0-1_source + rblcheck_20020316-7_source + rbldnsd_0.996b_source + rbootd_2.0-10_source + rbot_0.9.15+post20100705+gitb3aa806-3_source + rbtools_0.3.4-1_source + rc_1.7.1-4_source + rcconf_2.5_source + rcmdr_1.8-4-1_source + rcolorbrewer_1.0-5-1_source + rcov_1.0-2_source + rcpp_0.9.13-1_source + rcs_5.8.1-1_source + rcs-blame_1.3.1-2_source + rcs-latex_3.1.debian.1_source + rdate_1:1.2-5_source + rdd_2.0.7-2_source + rdesktop_1.7.1-1_source + rdfind_1.3.1-1_source + rdflib_2.4.2-1_source + rdiff-backup_1.2.8-7_source + rdiff-backup-fs_1.0.0-4_source + rdist_6.1.5-18_source + rdkit_201203-3_source + rds-tools_1.4.1-OFED-1.4.2-1_source + rdtool_0.6.34-4_source + rdup_1.1.11-1_source + re_0.1-5_source + re2c_0.13.5-1_source + react_0.9.3-1_source + read-edid_2.0.0-3.1_source + readahead-fedora_2:1.5.6-4_source + readline5_5.2+dfsg-2~deb7u1_source + readline6_6.2+dfsg-0.1_source + readseq_1-9_source + realpath_1.18_source + realtimebattle_1.0.8-13_source + reaver_1.4-2_source + rebuildd_0.4.1.1_source + recite_1.0-8.2_source + recode_3.6-20_source + recoll_1.17.3-2_source + reconf-inetd_1.120603_source + recordmydesktop_0.3.8.1+svn602-1_source + recover_1.3c-11_source + recoverdm_0.20-2_source + recoverjpeg_2.0-3.1_source + recutils_1.5-1_source + red5_1.0~svn4374-1_source + redet_8.26-1.1_source + redhat-cluster_3.0.12-3.2+deb7u2_source + redir_2.2.1-10_source + redis_2:2.4.14-1_source + redland_1.0.15-1_source + redland-bindings_1.0.14.1-1_source + redmine_1.4.4+dfsg1-2+deb7u1_source + redmine-plugin-botsfilter_1.02-2_source + rednotebook_1.4.0-1_source + redshift_1.7-2_source + redsocks_0.4+dfsg-1_source + ree_1.3-2.1_source + refcard_5.0.8_source + refcontrol_0.8.16-2_source + referencer_1.1.6-2_source + refit_0.14-2_source + refpolicy_2:2.20110726-12_source + regexxer_0.9-2.1_source + regina-normal_4.93-1_source + regina-rexx_3.6-2_source + regionset_0.1-3_source + reglookup_0.12.0-1_source + reinteract_0.5.0-3_source + reiser4progs_1.0.7-6.3_source + reiserfsprogs_1:3.6.21-1_source + rekonq_0.9.2-1_source + relational_1.1-1_source + relatorio_0.5.6-2_source + relimp_1.0-3-1_source + remake_3.81+dbg0.2~dfsg.1-1_source + remctl_3.2-4_source + remem_2.12-7_source + remember-el_1.9-1.1_source + remind_03.01.12-1_source + remmina_1.0.0-4+deb7u1_source + remote-tty_4.0-13_source + remotetea_1.0.7-2_source + remuco_0.9.6-2_source + renaissance_0.9.0-4_source + renameutils_0.12.0-1_source + renattach_1.2.4-3_source + reniced_1.19-1_source + renpy_6.13.12-1_source + renrot_1.1-2_source + rep-gtk_1:0.90.0-2_source + rephrase_0.1-3_source + reportbug_6.4.4_source + reportbug-ng_1.27_source + reprepro_4.12.5-1_source + reprof_1.0.1-1_source + reptyr_0.3-2_source + request-tracker4_4.0.7-5+deb7u2_source + requestpolicy_0.5.25-1_source + requests_0.12.1-1_source + resample_1.8.1-1_source + rescue_1.35_source + resiprocate_1.8.5-4_source + resolvconf_1.67_source + resource-agents_1:3.9.2-5+deb7u1_source + rest2web_0.5.2~alpha+svn-r248-2_source + restartd_0.2.2_source + retext_3.1.0-1_source + retty_1.0-2_source + rev-plugins_0.3.1-2_source + revelation_0.4.13-1.2_source + rexima_1.4-7_source + rfdump_1.6-2_source + rfkill_0.4-1_source + rfoo_1.3.0-2_source + rgain_1.0.1-1_source + rgbpaint_0.8.7-3_source + rggobi_2.1.17-1_source + rgl_0.92.798-1+deb7u1_source + rglpk_0.3-8-1_source + rgtk2_2.20.24-1_source + rhash_1.2.9-8+deb7u1_source + rheolef_6.1-2.1_source + rhino_1.7R3-5_source + rhinote_0.7.4-1_source + rhn-client-tools_1.8.9-3_source + rhnlib_2.5.52-1_source + rhythmbox_2.97-2.1_source + ri-li_2.0.1-2_source + ricochet_0.3_source + riece_8.0.0-1_source + rifiuti_1.0+20040505-4_source + rifiuti2_0.5.1-3_source + rig_1.11-1_source + rinetd_0.62-5.1_source + rinse_2.0.1-1_source + rio_1.07-11.1_source + ripit_3.9.0-2_source + ripole_0.2.0+20081101.0215-1_source + ripperx_2.7.3-1_source + ristretto_0.3.7-1_source + rivet_1.8.0-1_source + rjava_0.9-3-1_source + rkhunter_1.4.0-1_source + rkward_0.5.7-2+deb7u1_source + rlinetd_0.8.2-2_source + rlog_1.4-2_source + rlplot_1.5-2_source + rlpr_2.05-4_source + rlvm_0.12-4_source + rlwrap_0.37-3_source + rmagic_2.21-5_source + rman_3.2-6_source + rmatrix_1.0-6-1_source + rmpi_0.5-9-3_source + rmysql_0.9-3-1_source + rnahybrid_2.1.1-1_source + rnc-mode_1.0b3-1_source + rng-tools_2-unofficial-mt.14-1_source + roaraudio_1.0~beta2-3_source + roarplaylistd_0.1.1-2_source + robert-hooke_1.1.2-1_source + robocode_1.6.2+dfsg-3.1_source + robocut_1.0.8-1_source + robojournal_0.2.1-1_source + robotfindskitten_1.7320508.406-3_source + robust-http-client_1.2-2_source + robustbase_0.8-1-1-1_source + rockdodger_0.6.0a-7_source + rocs_4:4.8.4-1_source + rodbc_1.3-6-1_source + roffit_0.7~20100607+git790d154-3_source + rofs-fuse_2006.11.28-2.1_source + rolldice_1.10-5_source + rome_1.0-3_source + root-system_5.34.00-2_source + root-tail_1.2-3_source + rootskel_1.102_source + rootskel-gtk_1.27_source + rootstrap_0.3.25-1_source + rope_0.9.2-1_source + ropemacs_0.6c2-4_source + rosegarden_1:12.04-1_source + rotix_0.83-4_source + rotter_0.9-3_source + roundcube_0.7.2-9+deb7u1_source + roundcube-plugins-extra_0.7-20120110_source + roundup_1.4.20-1.1_source + routeplanner_0.19_source + routes_1.13-2_source + routino_2.2-4+deb7u1_source + rovclock_0.6e-7_source + rox_2.10-3_source + roxterm_2.6.5-1_source + rp-pppoe_3.8-3_source + rpart_3.1.54-1_source + rpcbind_0.2.0-8_source + rpl_1.5.5-1_source + rplay_3.3.2-14_source + rpm_4.10.0-5+deb7u1_source + rpm2html_1.11.2-3_source + rpy_1.0.3-22_source + rpy2_2.2.6-1_source + rquantlib_0.3.8-2_source + rrdcollect_0.2.10-2_source + rrdtool_1.4.7-2_source + rrep_1.3.3-2_source + rrootage_0.23a-9_source + rs_20120414-1_source + rsakeyfind_1:1.0-2.1_source + rserve_0.6-8-1_source + rsh-redone_85-1_source + rsibreak_4:0.11-2_source + rsnapshot_1.3.1-3_source + rsprng_1.0-2_source + rsrce_0.2.2_source + rss-glx_0.9.1-5_source + rss2email_1:2.71-1_source + rss2irc_0.4.2-4_source + rssh_2.3.3-6_source + rsskit_0.3-2_source + rsstail_1.8-1_source + rst2pdf_0.16-2_source + rstatd_4.0.1-8_source + rsymphony_0.1-14-1_source + rsync_3.0.9-4_source + rsyncrypto_1.12-1_source + rsyntaxtextarea_1.5.1-2_source + rsyslog_7.4.4-1~bpo70+1_source + rt-authen-externalauth_0.10-4_source + rt-extension-assettracker_2.0.0~b2-6_source + rt-tests_0.83-1+deb7u1_source + rtai_3.8.1-4_source + rtaudio_4.0.10~ds0-2_source + rtfilter_1.1-4_source + rtgui_0.2.81-4_source + rtirq_20120505-1_source + rtkit_0.10-2+wheezy1_source + rtmidi_1.0.15~ds0-2_source + rtmpdump_2.4+20111222.git4e06e21-1_source + rtorrent_0.9.2-1_source + rtpg_0.2.11-3_source + rtpproxy_1.2.1-1.1_source + rtslib_2.1-2_source + rttool_1.0.3-2_source + rubber_1.1+20100306-2_source + rubberband_1.3-1.3_source + rubrica_2.0-1.3_source + ruby-actionmailer-2.3_2.3.14-3_source + ruby-actionmailer-3.2_3.2.6-2_source + ruby-actionpack-2.3_2.3.14-5_source + ruby-actionpack-3.2_3.2.6-6_source + ruby-activeldap_1.2.4-3_source + ruby-activemodel-3.2_3.2.6-3_source + ruby-activerecord-2.3_2.3.14-6_source + ruby-activerecord-3.2_3.2.6-5_source + ruby-activeresource-2.3_2.3.14-3_source + ruby-activeresource-3.2_3.2.6-2_source + ruby-activesupport-2.3_2.3.14-7_source + ruby-activesupport-3.2_3.2.6-6_source + ruby-addressable_2.2.8-1_source + ruby-aggregate_0.2.2-1_source + ruby-albino_1.3.3-1_source + ruby-algorithm-diff_0.4-14_source + ruby-amazon_0.9.2-1_source + ruby-amazon-ec2_0.9.17-2_source + ruby-amq-client_0.9.3-1_source + ruby-amq-protocol_0.9.2-1_source + ruby-amqp_0.9.5-2_source + ruby-amrita_1.0.2-10_source + ruby-amrita2_2.0.2+dfsg.1-3_source + ruby-archive-tar-minitar_0.5.2-2_source + ruby-arel_3.0.2-2_source + ruby-ascii85_1.0.1-2_source + ruby-bacon_1.1.0-2_source + ruby-barby_0.5.0-1_source + ruby-bcrypt_3.0.1-2_source + ruby-bdb_0.6.5-7_source + ruby-bio_1.4.2-3_source + ruby-blankslate_2.1.2.4-4_source + ruby-bluecloth_2.2.0-3_source + ruby-bsearch_1.5-9_source + ruby-build_20120524-1_source + ruby-builder_3.0.0-3_source + ruby-bunny_0.7.8-1_source + ruby-cairo_1.12.2-2_source + ruby-capistrano-colors_0.5.5-1_source + ruby-cassiopee_0.1.9-1_source + ruby-childprocess_0.3.3-1_source + ruby-chronic_0.6.7-2_source + ruby-chunky-png_1.2.5-2_source + ruby-classifier_1.3.3-1_source + ruby-cmdparse_2.0.5-1_source + ruby-color-tools_1.4.1-2_source + ruby-commandline_0.7.10-12_source + ruby-compass_0.12.2~dfsg-2_source + ruby-contest_0.1.3-2_source + ruby-daemons_1.1.5-2_source + ruby-dataobjects_0.10.8-4_source + ruby-dataobjects-mysql_0.10.8-4_source + ruby-dataobjects-postgres_0.10.8-2_source + ruby-dataobjects-sqlite3_0.10.8-3_source + ruby-dbd-mysql_0.4.4+gem2deb-1_source + ruby-dbd-odbc_0.2.5+gem2deb-1_source + ruby-dbd-pg_0.3.9+gem2deb-1_source + ruby-dbd-sqlite3_1.2.5+gem2deb-1_source + ruby-dbi_0.4.5-1_source + ruby-dbus_0.7.2-1_source + ruby-debian_0.3.8_source + ruby-defaults_1:1.9.3_source + ruby-dep-selector_0.0.8-1_source + ruby-deprecated_3.0.0-1_source + ruby-diff-lcs_1.1.3-1_source + ruby-directory-watcher_1.4.1-1_source + ruby-domain-name_0.5.3-1_source + ruby-dust_0.1.7-2_source + ruby-eb_2.6-2_source + ruby-echoe_4.6.3-1_source + ruby-eim-xml_0.0.4-3_source + ruby-em-http-request_0.3.0-1_source + ruby-erubis_2.7.0-2_source + ruby-escape-utils_0.2.4-3_source + ruby-event-loop_0.3-5_source + ruby-eventmachine_0.12.10-3_source + ruby-excon_0.13.4-1_source + ruby-exif_0.1.2-20_source + ruby-extlib_0.9.15-3_source + ruby-facets_2.9.2-1_source + ruby-fakefs_0.4.0-1_source + ruby-fast-gettext_0.6.8-1_source + ruby-fast-stemmer_1.0.1-1_source + ruby-fast-xs_0.8.0-3_source + ruby-fastercsv_1.5.5-1_source + ruby-feedparser_0.7-2_source + ruby-feedtools_0.2.29+dfsg1-5_source + ruby-ferret_0.11.8.4+debian-2_source + ruby-ffi_1.0.11debian-5_source + ruby-fftw3_0.4-4_source + ruby-file-tail_1.0.10-1_source + ruby-flexmock_0.9.0-1_source + ruby-fog_1.3.1-2_source + ruby-formatador_0.2.1-1_source + ruby-fssm_0.2.9-2_source + ruby-fusefs_0.7.0-3_source + ruby-gd_0.8.0-3_source + ruby-gelf_1.3.2-2_source + ruby-gettext_2.2.1-3_source + ruby-gettext-activerecord_2.1.0-5_source + ruby-gettext-rails_2.1.0-3_source + ruby-gherkin_2.4.6-1_source + ruby-gir-ffi_0.3.1-2_source + ruby-git_1.2.5-2_source + ruby-globalhotkeys_0.3.2-3_source + ruby-gnome2_1.1.3-2_source + ruby-gnuplot_2.4.1-2_source + ruby-god_0.12.1-1_source + ruby-gpgme_2.0.0-2_source + ruby-graffiti_2.2-1_source + ruby-grib_0.2.2-3_source + ruby-gruff_0.3.6-6_source + ruby-gsl_1.14.7+dfsg-1_source + ruby-haml_3.1.6-1_source + ruby-hdfeos5_1.0-2_source + ruby-heckle_1.4.3-4_source + ruby-hiera_1.0.0~rc3-1_source + ruby-hiera-puppet_1.0.0~rc1-2_source + ruby-highline_1.6.13-2_source + ruby-hike_1.2.1-2_source + ruby-hikidoc_0.0.6-1_source + ruby-hmac_0.4.0-3_source + ruby-hoe_3.0.3-2_source + ruby-hpricot_0.8.6-3_source + ruby-htmlentities_4.3.1-1_source + ruby-httpclient_2.2.4-2_source + ruby-i18n_0.6.0-3+deb7u1_source + ruby-ihelp_0.4.5-3_source + ruby-image-science_1.2.2-1.1_source + ruby-imagesize_1:0.1.1-5_source + ruby-indentation_0.0.6-1_source + ruby-inline_3.11.2-2_source + ruby-innate_2012.03-2_source + ruby-inotify_0.0.2-6_source + ruby-instantiator_0.0.6+git9cbbe70-2_source + ruby-introspection_0.0.2-2_source + ruby-ipaddress_0.8.0-1_source + ruby-journey_1.0.3-2_source + ruby-jquery-rails_2.0.2-1_source + ruby-json_1.7.3-3_source + ruby-kakasi_2002.09.28-3_source + ruby-kgio_2.7.3-1_source + ruby-kramdown_0.13.7-2_source + ruby-krb5-auth_0.7-4_source + ruby-lapack_1.5-1_source + ruby-ldap_0.9.12-2_source + ruby-libvirt_0.4.0-1_source + ruby-libxml_2.3.2-1_source + ruby-liquid_2.3.0-2_source + ruby-locale_2.0.5-6_source + ruby-locale-rails_2.0.5-6_source + ruby-lockfile_2.1.0-2_source + ruby-log4r_1.1.10-2_source + ruby-mab_0.0.1+git20120515.30414e4-2_source + ruby-magic_0.2.6-1_source + ruby-mail_2.4.4-2_source + ruby-maruku_0.6.0-2_source + ruby-mathml_0.12.2-2_source + ruby-mecab_0.99.3-2_source + ruby-mechanize_2.3-2_source + ruby-memcache-client_1.8.5-2_source + ruby-merb-assets_1.1.3-1_source + ruby-merb-core_1.1.3+dfsg-2_source + ruby-merb-haml_1.1.3-2_source + ruby-merb-helpers_1.1.3-1_source + ruby-merb-param-protection_1.1.3-1_source + ruby-metaclass_0.0.1-2_source + ruby-metaid_1.0-7_source + ruby-method-source_0.7.1-1_source + ruby-mime-types_1.19-1_source + ruby-minitest_3.2.0-1_source + ruby-mixlib-authentication_1.1.4-2_source + ruby-mixlib-cli_1.2.2-2_source + ruby-mixlib-config_1.1.2-3_source + ruby-mixlib-log_1.4.1-1_source + ruby-mixlib-shellout_1.0.0-2_source + ruby-mkrf_0.2.3+dfsg-2_source + ruby-mocha_0.11.3-3_source + ruby-moneta_0.6.0-4_source + ruby-mp3info_0.5-2_source + ruby-mp3tag_1.0-11_source + ruby-msgpack_0.4.6-4_source + ruby-multi-json_1.3.6-1_source + ruby-multibitnums_0.1.4-1_source + ruby-mustache_0.99.4-3_source + ruby-mysql_2.8.2+gem2deb-3_source + ruby-narray_0.6.0.1-1_source + ruby-narray-miss_1.2.7-2_source + ruby-ncurses_1.3.1-2_source + ruby-net-http-digest-auth_1.2-2_source + ruby-net-http-persistent_2.7-2_source + ruby-net-irc_0.0.9-2_source + ruby-net-ldap_0.3.1-2_source + ruby-net-netrc_0.2.2-2_source + ruby-net-scp_1.0.4-2_source + ruby-net-sftp_1:2.0.5-3_source + ruby-net-ssh_1:2.5.2-2_source + ruby-net-ssh-gateway_1.1.0-2_source + ruby-net-ssh-multi_1.1-2_source + ruby-netcdf_0.6.6-1_source + ruby-nokogiri_1.5.5-1_source + ruby-nora_1:0.0.20041021-5.1_source + ruby-ntlm_0.1.1-1_source + ruby-oauth_0.4.6-2_source + ruby-odbc_0.99994-4_source + ruby-ogginfo_0.6.10-1_source + ruby-oily-png_1.0.2-2_source + ruby-ole_1.2.11.3-1_source + ruby-open4_1.3.0-1_source + ruby-opengl_0.60.1+dfsg2-1~wheezy1_source + ruby-openid_2.1.8debian-6_source + ruby-packet_0.1.15-5_source + ruby-parser_2.3.1-2_source + ruby-parsetree_3.0.8-3_source + ruby-passenger_3.0.13debian-1+deb7u1_source + ruby-password_0.5.3-3_source + ruby-pcap_0.7.0-2_source + ruby-pdf-inspector_1.0.1-2_source + ruby-pdf-reader_1.1.1-2_source + ruby-peach_0.4-2_source + ruby-pg_0.13.2-2_source + ruby-pkg-config_1.1.2-1_source + ruby-pkg-tools_0.18_source + ruby-platform_0.4.0-2_source + ruby-polyglot_0.3.3-3_source + ruby-popen4_0.1.4-1_source + ruby-posix-spawn_0.3.6-1_source + ruby-prawn_1.0.0~rc1+dfsg1-3_source + ruby-prof_0.7.3-1.1_source + ruby-progressbar_0.11.0-2_source + ruby-rack_1.4.1-2.1_source + ruby-rack-cache_1.2-2_source + ruby-rack-protection_1.2.0-1_source + ruby-rack-ssl_1.3.2-2_source + ruby-rack-test_0.6.1-3_source + ruby-rails-2.3_2.3.14-4_source + ruby-rails-3.2_3.2.6-1_source + ruby-railties-3.2_3.2.6-3_source + ruby-raindrops_0.9.0-1_source + ruby-rb-inotify_0.8.8-2_source + ruby-rc4_0.1.5-2_source + ruby-rchardet_1.3-3_source + ruby-rdiscount_1.6.8-3_source + ruby-redcarpet_2.1.1-3_source + ruby-redcloth_4.2.9-2_source + ruby-rest-client_1.6.7-3_source + ruby-revolution_0.5-8_source + ruby-rmagick_2.13.1-6_source + ruby-romkan_0.4-9_source + ruby-ronn_0.7.3-2_source + ruby-rqrcode_0.4.2-1_source + ruby-rr_1.0.4-1_source + ruby-rspec_2.10.0-2_source + ruby-rspec-core_2.10.1-2_source + ruby-rspec-expectations_2.10.0-2_source + ruby-rspec-mocks_2.10.1-2_source + ruby-ruby2ruby_1.3.1-1.1_source + ruby-rubyforge_2.0.4-1_source + ruby-rubymail_1.0.0-1_source + ruby-rubytorrent_0.3-4_source + ruby-sass_3.1.19-3_source + ruby-sass-rails_3.2.5-1_source + ruby-sdl_2.1.2-3_source + ruby-sequel_3.36.1-1_source + ruby-sequel-pg_1.4.0-1_source + ruby-serialport_1.1.0-1_source + ruby-session_3.1.0-1_source + ruby-setup_3.4.1-5_source + ruby-sexp-processor_3.0.7-1_source + ruby-shadow_2.1.4-2_source + ruby-shoulda_3.0.0~beta2-1_source + ruby-shoulda-context_1.0.0~beta1-1_source + ruby-shoulda-matchers_1.0.0~beta2-1_source + ruby-sigar_0.7.2-1_source + ruby-sinatra_1.3.2-2_source + ruby-slop_2.4.4-1_source + ruby-sourcify_0.5.0-2_source + ruby-spreadsheet_0.7.3-1_source + ruby-sprockets_2.4.3-1_source + ruby-sqlite3_1.3.6-2_source + ruby-stomp_1.2.2-2_source + ruby-svg-graph_1.0.5-1_source + ruby-switch_0.1.0_source + ruby-systemtimer_1.2.3-1_source + ruby-systemu_2.5.1-1_source + ruby-taglib2_0.1.3-1_source + ruby-term-ansicolor_1.0.7-1_source + ruby-termios_0.9.6-2_source + ruby-test-declarative_0.0.5-1_source + ruby-test-spec_0.10.0-2_source + ruby-test-unit_2.5.0-2_source + ruby-text_1.0.3-1_source + ruby-text-format_1.0.0-3_source + ruby-thor_0.15.3-1_source + ruby-tidy_1.1.2+gem2deb-1_source + ruby-tilt_1.3.3-2_source + ruby-tioga_1.14-3_source + ruby-tmail_1.2.7.1-3+deb7u1_source + ruby-tokyocabinet_1.31-2_source + ruby-transaction-simple_1.4.0-2_source + ruby-treetop_1.4.10-5_source + ruby-trollop_1.16.2-3_source + ruby-ttfunk_1.0.3+dfsg-1_source + ruby-twitter4r_0.7.0-3_source + ruby-tzinfo_0.3.33-3_source + ruby-uconv_0.5.3-2_source + ruby-unf_0.0.5-1_source + ruby-unf-ext_0.0.5-2_source + ruby-usb_0.2.1-2_source + ruby-uuidtools_2.1.2-2_source + ruby-validatable_1.6.7-9_source + ruby-webrobots_0.0.13-3_source + ruby-whitewash_2.0-1_source + ruby-will-paginate_3.0.3-1_source + ruby-wirble_0.1.3-4_source + ruby-xml-simple_1.1.1-1_source + ruby-xmlparser_0.7.2-2_source + ruby-yajl_1.1.0-2_source + ruby-yard-sinatra_1.0.0-1_source + ruby-zoom_0.4.1-5_source + ruby1.8_1.8.7.358-7.1+deb7u1_source + ruby1.9.1_1.9.3.194-8.1+deb7u2_source + rubyfilter_0.12-2_source + rubygems_1.8.24-1_source + rubygems-integration_1.1_source + rubyluabridge_0.7.0-1.1_source + rudecgi_5.0.0-1_source + ruli_0.33-1.1_source + rumor_1.0.5-1_source + rungetty_1.2-15_source + runit_2.1.1-6.2_source + runlim_1.7-1_source + runsnakerun_2.0.2a1-2_source + rus-ispell_0.99g5-18_source + rush_1.7+dfsg-1+deb7u1_source + rxp_1.5.0-1_source + rxtx_2.2pre2-11_source + rxvt_1:2.6.4-14_source + rxvt-beta_2.7.10-6_source + rxvt-unicode_9.15-2_source + rygel_0.14.3-2+deb7u1_source + rzip_2.1-1_source + s2tc_0~git20110809-3_source + s390-dasd_0.0.29_source + s390-netdevice_0.0.35_source + s390-sysconfig-writer_0.5_source + s390-tools_1.16.0-2_source + s3cmd_1.1.0~beta3-1_source + s3d_0.2.2-8_source + s3ql_1.11.1-3_source + s3switch_0.1-1_source + s5_1.1.dfsg.2-5_source + s51dude_0.2.0-1.1_source + sa-exim_4.2.1-14_source + sa-learn-cyrus_0.3.5-1.1_source + sablecc_3.2-1_source + sac_1.9b5-3_source + sacjava_1.3-6_source + safe-hole-perl_0.13-1_source + safe-rm_0.8-6_source + safecat_1.13-2_source + safecopy_1.6-1_source + sagan_0.2.1.r1-1_source + sagan-rules_10212010-r1-1_source + sagasu_2.0.10-1_source + sage_0.2.0-4.1_source + sage-extension_1.4.12-3+deb7u1_source + sailcut_1.3.5-2_source + saint_2.3.3-1_source + sakura_3.0.4-2_source + salinfo_1.2-2_source + salliere_0.10-1_source + sam2p_0.49.1-1_source + samba_2:3.6.6-6+deb7u2_source + samba4_4.0.0~beta2+dfsg1-3.2_source + samdump2_1.1.1-1.1_source + samhain_2.8.3a-1+deb7u1_source + samidare_0.7-1_source + samizdat_0.7.0-1_source + sampleicc_1.6.4-1_source + samtools_0.1.18-1_source + sanduhr_1.93-4_source + sandwich_2.2-9-1_source + sane-backends_1.0.22-7.4_source + sane-backends-extras_1.0.22.2_source + sane-frontends_1.0.14-9_source + sanitizer_1.76-3_source + sanlock_2.2-2_source + saods9_7.0.1+dfsg-1_source + sapphire_0.15.8-9_source + sarg_2.3.2-2_source + sary_1:1.2.0-2.1_source + sary-ruby_1.2.0-3.1_source + sash_3.7-12_source + sass-elisp_3.0.15-2_source + sat4j_2.3.1-1_source + sauce_0.9.0+nmu2_source + savi_1.4.5-4_source + sawfish_1:1.5.3-2.1_source + sawfish-merlin-ugliness_1.3.1-1_source + sawfish-themes_0.13_source + saxonb_9.1.0.8-1_source + saytime_1.0-24_source + sbcl_2:1.0.57.0-2_source + sbjson_2.3.2-2_source + sbnc_1.2-26_source + sbox-dtc_1.11.6-1_source + sbrsh_7.6.1_source + sbuild_0.63.2-1.1_source + sc_7.16-3_source + scala_2.9.2+dfsg-1_source + scala-mode-el_20111005-2_source + scalable-cyrfonts_4.16_source + scalapack_1.8.0-9_source + scalapack-doc_1.5-10_source + scalc_0.2.4-1_source + scalpel_1.60-1_source + scamper_20111202b-1_source + scanbuttond_0.2.3.cvs20090713-8_source + scanlogd_2.2.5-3.1_source + scanmem_0.12-2_source + scanssh_2.0-4_source + scantool_1.21+dfsg-3_source + scapy_2.2.0-1_source + scatterplot3d_0.3-33-1_source + scgi_1.13-1_source + schedtool_1.3.0-1_source + scheme2c_2011.07.26-5_source + scheme48_1.8+dfsg-1_source + scheme9_2010.11.13-2_source + schism_2:0+20110101-1_source + schleuder_2.2.1-2+deb7u1_source + schroedinger_1.0.11-2_source + schroot_1.6.4-4_source + scid_1:4.3.0.cvs20120311-1_source + scid-rating-data_200901-2_source + scid-spell-data_200901-2_source + scidavis_0.2.4-3.3_source + scikit-learn_0.11.0-2+deb7u1_source + scilab_5.3.3-10_source + scilab-ann_0.4.2.4-1_source + scilab-celestlab_2.3.0-1-1_source + scilab-jims_1.0-1_source + scilab-plotlib_0.42-1_source + scilab-scimysql_0.1.1-5_source + scim_1.4.13-5_source + scim-canna_1.0.0-4.2_source + scim-chewing_0.3.4-1.2_source + scim-kmfl-imengine_0.9.8-1.1_source + scim-m17n_0.2.3-3_source + scim-skk_0.5.2-7.2_source + scim-tables_0.5.9-2_source + scim-thai_0.1.3-1_source + scim-unikey_0.3.1+debian-3.1_source + sciplot_1.36-15_source + scirenderer_0.4.9-1_source + sciscipy_0.3.0-3_source + scite_3.0.2-3_source + sciteproj_0.7.05-2_source + scitools_0.9.0-1_source + sclapp_0.5.3-2_source + scli_0.4.0-2_source + scm_5e5-3.2_source + scmail_1.3-4_source + scmxx_0.9.0-2.3_source + scolasync_3.1-1_source + scons_2.1.0-1_source + scons-doc_2.1.0-2_source + scorched3d_43.2a.dfsg-6.1_source + scotch_5.1.12b.dfsg-1.2_source + scottfree_1.14-9_source + scour_0.26-3_source + scowl_7.1-1_source + scrapbook_1.5.4-1_source + scratch_1.4.0.6~dfsg1-4_source + scratchbox2_2.2.4-1debian1_source + screader_1.8-7_source + screen_4.1.0~20120320gitdb59704-7_source + screen-message_0.19-1_source + screenie_20120406-1_source + screenie-qt_0.0~git20100701-1_source + screenlets_0.1.2-8_source + screenruler_0.960+bzr41-1_source + screentest_2.0-2.1_source + scribble_1.11-1_source + scribes_0.4~r543-2_source + scribus_1.4.0.dfsg+r17300-1.1_source + scribus-ng_1.4.0.dfsg+r17300-1_source + scribus-template_1.2.4.1-2_source + scriptaculous_1.9.0-2_source + scrollz_2.1-1.1_source + scrot_0.8-13_source + scrounge-ntfs_0.9-6_source + scrub_2.4.1-1_source + scrypt_1.1.6-3_source + scsh-0.6_0.6.7-8_source + scsh-defaults_0.6.6.3_source + scsh-install-lib_1.3.0-1_source + scsitools_0.12-2.1_source + scummvm_1.4.1-1_source + scute_1.4.0-4_source + scuttle_0.7.4-8.1_source + scythestat_1.0.2-1_source + sdate_0.3.1+nmu1_source + sdcc_3.1.0+dfsg-1_source + sdcv_0.4.2-16_source + sdf_2.001+1-2_source + sdl-ball_1.01-3_source + sdl-image1.2_1.2.12-2_source + sdl-mixer1.2_1.2.12-3_source + sdl-net1.2_1.2.8-2_source + sdl-sound1.2_1.0.3-6_source + sdl-stretch_0.3.1-3_source + sdl-ttf2.0_2.0.11-2_source + sdlbasic_0.0.20070714-4_source + sdlgfx_2.0.23-3_source + sdlpango_0.1.2-6_source + sdo-api-java_1.1.1-1_source + sdop_0.71-1_source + sdpa_7.3.8+dfsg-1_source + sdparm_1.07-1_source + sdpnetstat_1.60-1_source + seabios_1.7.0-1_source + seahorse_3.4.1-2_source + search-ccsb_0.5-3_source + search-citeseer_0.3-1_source + searchandrescue_1.4.0-2_source + searchandrescue-data_1.3.0-1_source + searchload-options_0.6.3-2_source + searchmonkey_0.8.1-8_source + sec_2.6.2-1_source + seccure_0.3-3_source + secpanel_1:0.6.1-1_source + secure-delete_3.1-5_source + secvpn_2.24_source + sed_4.2.1-10_source + see_0.72-4_source + seed_3.2.0-2_source + seesat5_0.90.10-1.1_source + segment_1.3.5~svn57+dfsg-1.1_source + seivot_1.17-1_source + select-xface_0.15-6_source + selinux-basics_0.5.0_source + semi_1.14.6+0.20101114-1_source + semweb_1.05+dfsg-5_source + sendemail_1.56-2_source + sendfile_2.1b.20080616-5.2_source + sendip_2.5-5_source + sendmail_8.14.4-4_source + sendpage_1.0.3-1_source + sendxmpp_1.22-1_source + sensible-utils_0.0.7_source + sensors-applet_3.0.0-0.2_source + sentinella_0.9.0-3_source + sepia_0.992-2_source + sepolgen_1.1.5-3_source + seq24_0.9.2-2_source + seqan_1.3.1-1_source + seqdiag_0.7.3-1_source + ser2net_2.6-1_source + serd_0.14.0~dfsg0-2_source + serf_1.1.0-2_source + serp_1.14.1-1_source + servefile_0.4.2-1_source + serverstats_0.8.2-10_source + service-wrapper-java_3.5.3+repack-0+nmu1_source + set-crontab-perl_1.02-1_source + set6x86_1.5-14_source + setcd_1.5-6_source + setools_3.3.7-3_source + setpwc_1.2-3.1_source + setserial_2.17-47_source + sexplib310_7.0.4-2_source + sextractor_2.8.6+dfsg-1_source + seyon_2.20c-31_source + sezpoz_1.9-2_source + sfact_2011.12.18-1_source + sfftobmp_3.1.3-1_source + sffview_0.4.1-2_source + sflphone_1.1.0-2_source + sfront_0.98-1_source + sfst_1.2.0-1.2_source + sg3-utils_1.33-1_source + sgf2dg_4.026-10_source + sgml-base_1.26+nmu4_source + sgml-base-doc_1.99.1_source + sgml-data_2.0.8_source + sgml-spell-checker_0.0.20040919-3_source + sgml2x_1.0.0-11.3_source + sgmltools-lite_3.0.3.0.cvs.20010909-16_source + sgrep_1.94a-4_source + sgt-puzzles_9411-1_source + shadow_1:4.1.5.1-1_source + shake_1.0.1-7_source + shanty_3-4_source + shapelib_1.2.10-7_source + shaperd_0.2.1-5.2_source + shapetools_1.4pl6-11_source + shared-desktop-ontologies_0.10.0-1_source + shared-mime-info_1.0-1_source + sharutils_1:4.11.1-1_source + shatag_0.4-2_source + shed_1.15-2_source + shedskin_0.9.2-1_source + shell-fm_0.7+git20100414-1_source + shelldap_0.5-2_source + shellinabox_2.14-1_source + shelltestrunner_1.2.1-3_source + shelr_0.16.2-1_source + shelxle_1.0.564-1_source + shhmsg_1.4.1-4.1_source + shhopt_1.1.7-2.1_source + shibboleth-sp2_2.4.3+dfsg-5_source + shiboken_1.1.1-1_source + shiki-colors-murrine_4.6-1_source + shinken_0.6.5-2_source + shisen.app_1.2.1-1_source + shishi_1.0.1-2_source + shntool_3.0.7-1_source + shoes_0.r396-5.3_source + shorewall_4.5.5.3-3_source + shorewall-core_4.5.5.3-3_source + shorewall-doc_4.5.5-1_source + shorewall-init_4.5.5.3-1_source + shorewall-lite_4.5.5.3-1_source + shorewall6_4.5.5.3-2_source + shorewall6-lite_4.5.5.3-1_source + shotdetect_1.0.86-1_source + shotwell_0.12.3-2+deb7u1_source + showq_0.4.1+git20090622+dfsg0-1_source + shr-specs_2011.03.08.2-1_source + shrinksafe_1.7.2-1_source + shtool_2.0.8-6_source + shunit2_2.1.6-1_source + shush_1.2.3-2_source + shutdown-at-night_0.10+deb7u1_source + shutdown-qapps_1.6.4-1_source + shutter_0.88.3-1_source + sibsim4_0.20-1_source + sibyl_2.4.2-2_source + sibyl-installer_1.25_source + sic_1.1-5_source + sidplay_2.0.9-6_source + sidplay-base_1.0.9-6_source + sidplay-libs_2.1.1-14_source + sidplayfp_0.3.1-1_source + siege_2.70-3_source + sieve-connect_0.83-1_source + sieve-extension_0.1.14-1_source + siggen_2.3.10-5_source + sigma-align_1.1.3-3_source + signify_1.14-1_source + signing-party_1.1.4-1_source + sigrok_0.2-1_source + sigrok-cli_0.3.0-2_source + sigscheme_0.8.5-2.1_source + sigviewer_0.5.1+svn556-1_source + sikuli_1.0~x~rc3.tesseract3-dfsg1-5_source + silentjack_0.3-2_source + silgraphite2.0_1:2.3.1-0.2_source + silly_0.1.0-3_source + silo_1.4.14+git20120819-1_source + silo-installer_1.24_source + silo-llnl_4.8-13_source + sim4_0.0.20030921-3_source + simage_1.7.0-1.1_source + simba_0.8.4-4.2_source + simgrid_3.7.1-1_source + simh_3.8.1-5_source + simhash_0.0.20110213-1_source + similarity-tester_2.62-1_source + simile-timeline_2.3.0+dfsg-0.1_source + simple-cdd_0.3.14_source + simple-image-reducer_1.0.2-1_source + simple-scan_3.4.2-1_source + simple-xml_2.3.2-1_source + simplegeneric_0.8.1-1_source + simpleid_0.8.1-13_source + simpleid-ldap_1.0.0-1_source + simplejson_2.5.2-1_source + simplelist_0.3.4-2_source + simpleparse_2.1.0a1-6_source + simplepie_1.2.1-3_source + simpleproxy_3.4-5_source + simplesamlphp_1.9.2-1_source + simpletal_4.1-7_source + simplyhtml_0.13.1-3_source + simulavr_0.1.2.2-6.2_source + simulpic_1:2005-1-28-8_source + simutrans_111.2.2-1_source + simutrans-pak128.britain_1.09-1_source + simutrans-pak64_111.2-1_source + since_1.1-2_source + sineshaper_0.4.2-7_source + sinfo_0.0.46-2_source + singularity_0.30c-1_source + singularity-music_006-2_source + sinntp_1.5-1_source + sip-tester_1:3.2-1_source + sip4_4.13.3-2_source + sipcalc_1.1.5-1_source + sipcrack_0.2-2_source + siproxd_1:0.8.1-3_source + sipsak_0.9.6-2.1_source + sipwitch_1.2.4-1_source + sisc_1.16.6-1.1_source + siscone_2.0.5-1_source + sispmctl_3.1-1_source + sisu_3.3.2-1_source + sisu-guice_3.1.1-1_source + sisu-ioc_2.3.0-3_source + sitecopy_1:0.16.6-4_source + sitemesh_2.4.1+dfsg-2_source + sitesummary_0.1.8+deb7u1_source + sitplus_1.0.3-3_source + six_1.1.0-2_source + sjeng_11.2-8_source + sjfonts_2.0.2-1.1_source + skalibs_0.47-1_source + skanlite_0.8-2_source + sketch_1:0.3.7-1_source + skimage_0.6.1-1_source + skinedit_1.27-2_source + skipfish_2.05b-1_source + skkdic_20110529-1_source + skksearch_0.0-21_source + skktools_1.3.2-3_source + skrooge_1.3.0-1_source + sks_1.1.3-2_source + sks-ecc_0.93-2_source + skstream_0.3.8-1_source + skyeye_1.2.5-2.1_source + skytools_2.1.13-2_source + sl_3.03-17_source + slack_0.15.2-5_source + slang2_2.2.4-15_source + slashem_0.0.7E7F3-6_source + slashtime_0.5.13-1_source + slay_2.7.0_source + slbackup_0.0.12-3_source + slbackup-php_0.4.3-2+deb7u1_source + slcfitsio_0.3.8+nosvn-4.1_source + slcurl_0.2.1-4.2_source + sleekxmpp_1.0~beta5-2_source + sleepd_2.04_source + sleepenh_1.3-1_source + slepc_3.2-p5-1_source + sleuthkit_3.2.3-2_source + slexpat_0.5.0-2_source + slgdbm_1.7.1-4_source + slgsl_0.7.0-5.1_source + slhist_0.3.2a-3.1_source + slib_3b1-3.1_source + slice_1.3.8-11_source + slides_1.0.1-13_source + slim_1.3.4-2_source + slimbox_2.04-1_source + slime_1:20120525-1_source + slimevolley_2.4.2+dfsg-1_source + slimit_0.7.4-1_source + slimrat_1.0-1_source + slingshot_0.9-1_source + slirp_1:1.0.17-6_source + slmon_0.5.13-2.2_source + sloccount_2.26-5_source + slpvm_0.1.5-12.1_source + slrn_1.0.0~pre18-1.3_source + slrnface_2.1.1-6_source + slsqlite_0.4.0-3.1_source + sludge_2.2-1_source + slugimage_1:0.0+r104-5_source + slurm_0.4.0-1_source + slurm-drmaa_1.0.4-3_source + slurm-llnl_2.3.4-2_source + slv2_0.6.6+dfsg1-2_source + slwildcard_0.5.0-2_source + slxfig_0.2.0~.35-1.1_source + sm_2.2-4.1-1_source + sm-archive_1.7-1_source + sma_1.4-2_source + smart_1.4-2_source + smart-notifier_0.28-5_source + smartlist_3.15-22_source + smartmontools_5.41+svn3365-1_source + smarty-gettext_1.0b1-7_source + smarty-validate_3.0.3-2_source + smarty3_3.1.10-2_source + smartypants_1.6.0.3-2_source + smb2www_980804-40_source + smb4k_1.0.1-1_source + smbc_1.2.2-3_source + smbldap-tools_0.9.7-1+deb7u1_source + smbnetfs_0.5.3a-1_source + smc_1.9+git20120222-1_source + smcroute_0.95-1+deb7u1_source + smem_1.0-1_source + sml-mode_4.1-2_source + smlnj_110.74-2_source + smokegen_4:4.8.4-1_source + smokekde_4:4.8.4-1_source + smokeping_2.6.8-2_source + smokeqt_4:4.8.4-1_source + smooth-themes_0.5.8-2.3_source + smp-utils_0.96-1_source + smpeg_0.4.5+cvs20030824-5_source + smplayer_0.8.0-1+deb7u1_source + smplayer-themes_0.1.20+dfsg-1_source + smsclient_2.0.8z-10_source + smstools_3.1.14-1.2_source + smtm_1.6.10_source + smuxi_0.8.10-3_source + sn_0.3.8-10.1_source + snacc_1.3.1-1_source + snack_2.2.10-dfsg1-12.1_source + snake4_1.0.12-14_source + snakefood_1.4-1_source + snappea_3.0d3-22_source + snappy_1.0.5-2_source + snappy-java_1.0.4.1~dfsg-1_source + snappy-player_0.2-1_source + snarf_7.0-5_source + snd_11.7-2_source + sndfile-tools_1.03-2_source + sndobj_2.6.6.1-3_source + sng_1.0.2-7_source + sniffit_0.3.7.beta-16.1_source + snimpy_0.6.3-1_source + snmpkit_0.9-16_source + snmptrapfmt_1.14+nmu1_source + snmptt_1.3-2_source + snooper_19991202-7.1_source + snoopy_1.8.0-5_source + snort_2.9.2.2-3_source + snow_1:0.3.9-1_source + snowball_0+svn546-2_source + snowballz_0.9.5.1-4_source + snowdrop_0.02b-10_source + sntop_1.4.3-4_source + so-synth-lv2_1.4-2_source + sobby_0.4.8-1_source + socat_1.7.1.3-1.4_source + socket_1.1-10_source + socklog_2.1.0-8_source + socks4-server_4.3.beta2-18_source + sockstat_0.3-1.1_source + socnetv_0.90-3_source + sofa-framework_1.0~beta4-7_source + sofia-sip_1.12.11+20110422-1_source + softcatala-spell_0.20111230b-4_source + softflowd_0.9.9-1_source + softhsm_1.3.3-2_source + software-center_5.1.2debian3.1_source + software-properties_0.82.7.1debian1_source + sogo_1.3.16-1_source + solarpowerlog_0.23a-2_source + solarwolf_1.5-2_source + solfege_3.20.6-1_source + solid-pop3d_0.15-26_source + sombok_2.2.1-1_source + sonata_1.6.2.1-5_source + songwrite_0.14-9_source + sonic_0.1.17-1.1_source + sooperlooper_1.6.18~dfsg0-1_source + sope_1.3.16-1_source + soprano_2.7.6+dfsg.1-2wheezy1_source + sopwith_1.7.4-6_source + soqt_1.5.0-2_source + sord_0.8.0~dfsg0-1_source + sorl-thumbnail_11.12-4_source + sortmail_1:2.4-1_source + sortsmill-tools_0.4-1_source + sound-icons_0.1-3_source + sound-juicer_3.4.0-3_source + sound-theme-freedesktop_0.7.pristine-2_source + soundconverter_2.0.1-1_source + soundkonverter_1.5.0-1_source + soundmodem_0.16-1_source + soundtouch_1.6.0-3_source + source-highlight_3.1.6-1.1_source + sourcecodegen_0.6.14-1_source + sox_14.4.0-3_source + soya_0.15~rc1-8_source + soya-doc_0.14-2_source + sozi_12.05-1_source + sp-gxmlcpp_1.0.20040603-5_source + spacearyarya_1.0.2-7_source + spacenavd_0.5-1_source + spacezero_0.80.06-1_source + spamass-milter_0.3.2-1_source + spamassassin_3.3.2-5_source + spamassassin-heatu_3.02+20101108-2_source + spambayes_1.1a6-1_source + spamoracle_1.4-14_source + spampd_2.30-22_source + spamprobe_1.4d-11_source + spandsp_0.0.6~pre20-3.1_source + sparc-utils_1.9-4_source + spark_2011.0.deb-5_source + sparkleshare_0.9.0-2_source + sparkline-php_0.2-5_source + sparql-wrapper-python_1.4.1-1_source + sparsehash_1.10-1_source + sparskit_2.0.0-2_source + spass_3.7-3_source + spatialindex_1.7.0-1_source + spatialite_3.0.0~beta20110817-3+deb7u1_source + spawn-fcgi_1.6.3-1_source + spd_1.3.0-1_source + spe_0.8.4.h-2_source + speakup_3.1.6.dfsg.1-2_source + speakup-tools_1:0.0~git20110720.1-1_source + specimen_0.5.2rc3-5_source + spectacle_0.22-1_source + specto_0.2.2-3.2_source + spectools_201108r1-2_source + spectrwm_1.0.0-1_source + speech-dispatcher_0.7.1-6.2_source + speech-tools_1:2.1~release-5_source + speechd-el_2.5-4_source + speechd-up_0.5~20110719-2_source + speedcrunch_0.10.1-4_source + speedometer_2.8-1_source + speedy-cgi-perl_2.22-13_source + speex_1.2~rc1-7_source + spek_0.7-3_source + spell_1.0-24_source + spellutils_0.7-5_source + spew_1.0.8-1_source + spherepack_3.2-4_source + sphinx_1.1.3+dfsg-4_source + sphinx-issuetracker_0.8-1_source + sphinxcontrib-actdiag_0.4.2-1_source + sphinxcontrib-blockdiag_1.1.1-1_source + sphinxcontrib-nwdiag_0.4.1-1_source + sphinxcontrib-seqdiag_0.4.1-1_source + sphinxcontrib-spelling_1.3-1_source + sphinxsearch_2.0.4-1.1_source + spice_0.11.0-1+deb7u1_source + spice-gtk_0.12-5_source + spice-protocol_0.10.1-1_source + spice-vdagent_0.10.1-1_source + spim_8.0+dfsg-5.1_source + spinner_1.2.4-3_source + spip_2.1.17-1+deb7u3_source + spkproxy_1.4.8-4.1_source + spl_1.0~pre6-3.1_source + splat_1.4.0-2_source + splay_0.9.5.2-13_source + spline_1.2-1_source + splint_3.1.2.dfsg1-2_source + splitvt_1.6.6-11_source + splix_2.0.0+svn306-2_source + spooles_2.2-9_source + spotlighter_0.1-1_source + spotweb_20111002+dfsg-4.1_source + spout_1.3-2_source + spring_88.0+dfsg1-1.1_source + spring-build_2.7.0-2_source + springlobby_0.147-1_source + springpython_1.2.0+ds-2_source + sprng_2.0a-8_source + sprox_0.6.4-3_source + spu-tools_2.3.0.136-1_source + sputnik_12.06.27-2_source + spyder_2.1.10-2_source + sqcwa_0.3-3.1_source + sql-ledger_3.0.3-1_source + sqlalchemy_0.7.8-1_source + sqlgrey_1:1.8.0-1_source + sqlheavy_0.1.1-1_source + sqlite_2.8.17-7_source + sqlite3_3.7.13-1+deb7u1_source + sqlitebrowser_2.0.0~beta1+ds.1-3_source + sqliteodbc_0.91-3_source + sqlkit_0.9.5-1_source + sqlline_1.0.2-4_source + sqlobject_0.12.4-2.2_source + sqlparse_0.1.4-1_source + sqsh_2.1.7-1_source + squaremap_1:1.0.1-1_source + squareness_2.3.0-5_source + squashfs-tools_1:4.2-5_source + squeak-plugins-scratch_1.4.0.2~svn.r83-1_source + squeak-vm_1:4.4.7.2357-1.1_source + squeeze_0.2.3-12_source + squid_2.7.STABLE9-4.1_source + squid-langpack_20120616-1_source + squid-prefetch_1.1-2.3_source + squid3_3.1.20-2.2_source + squidguard_1.5-1_source + squidtaild_2.1a6-6_source + squidview_0.79-2_source + squirrelmail_2:1.4.23~svn20120406-2_source + squirrelmail-compatibility_2.0.16-1_source + squirrelmail-decode_1.2-1_source + squirrelmail-locales_1.4.18-20090526-1_source + squirrelmail-lockout_1.7-2_source + squirrelmail-logger_2.3.1-1_source + squirrelmail-quicksave_2.4.5-1_source + squirrelmail-secure-login_1.4-3_source + squirrelmail-sent-confirmation_1.6-2_source + squirrelmail-spam-buttons_2.3.1-1_source + squirrelmail-viewashtml_3.8-3_source + squizz_0.99a-2_source + sqwebmail-de_5.5.1-1_source + sra-sdk_2.1.7a-1_source + sratom_0.2.0~dfsg0-1_source + src2tex_2.12h-8_source + srecord_1.58-1_source + sredird_2.2.1-1.1_source + srf_0.1+dfsg-1_source + srg_1.3.6-1_source + srptools_0.0.4-1.2_source + srtp_1.4.4+20100615~dfsg-2+deb7u1_source + ssake_3.8-2_source + ssdeep_2.7-2_source + ssed_3.62-7_source + ssft_0.9.13_source + ssh-askpass_1:1.2.4.1-9_source + ssh-askpass-fullscreen_0.3-3.1_source + ssh-contact_0.7-1_source + sshfp_1.2.2-4_source + sshfs-fuse_2.4-1_source + sshguard_1.5-5_source + sshmenu_3.18-2_source + sshpass_1.05-1_source + sshuttle_0.54-2_source + ssl-cert_1.0.32_source + ssl-cert-check_3.22-1_source + ssldump_0.9b3-4.1_source + sslh_1.13b-3.2_source + sslscan_1.8.2-2_source + sslsniff_0.8-3_source + sslstrip_0.9-1_source + ssmping_0.9.1-3_source + ssmtp_2.64-7_source + ssreflect_1.3pl4-1_source + sssd_1.8.4-2_source + ssss_0.5-2_source + ssvnc_1.0.29-2_source + st_1.9-3_source + stackapplet_1.4.0-2_source + staden-io-lib_1.12.4-1_source + stalin_0.11-5_source + stalonetray_0.8.1-1_source + stapler_1.182-1_source + stapler-adjunct-codemirror_1.1-1_source + stapler-adjunct-timeline_1.3+dfsg-1_source + stardata-common_0.8_source + stardict_3.0.1-9.2_source + stardict-czech_20110701-1_source + stardict-tools_3.0.2-3_source + stardict-xmlittre_1:1.0-1_source + starfighter_1.2-2_source + starlink-ast_7.0.4+dfsg-1_source + starlink-pal_0.1.0-1_source + starman_0.3001-1_source + starplot_0.95.5-4_source + starpu_1.0.1+dfsg-1_source + starpy_1.0.1-1_source + startup-notification_0.12-1_source + startupmanager_1.9.13-5_source + starvoyager_0.4.4-5.1_source + statcvs_1:0.7.0.dfsg-5_source + statnews_2.5_source + statserial_1.1-22_source + statsmodels_0.4.2-1_source + statsvn_0.7.0.dfsg-6_source + status-4-evar_0.2012.04.21.13-1_source + stax_1.0-13_source + stax-utils_20110309+svn238-1_source + stda_1.1.1-1_source + stdeb_0.6.0+20100620-2_source + steadyflow_0.2.0-1_source + stealth_2.10.00-1_source + steghide_0.5.1-9_source + stella_3.7.2-1_source + stellarium_0.11.3-1+deb7u1_source + step_4:4.8.4-1_source + stepbill.app_2.4-5_source + stepic_0.3-4_source + steptalk_0.10.0-5_source + stfl_0.22-1_source + stgit_0.15-1.1_source + stimfit_0.10.18-1.1_source + stk_4.4.3-2_source + stl-manual_3.30-13_source + stlport4.6_4.6.2-7_source + stockfish_2.1.1+git20111006-2_source + stompserver_0.9.9gem-2_source + stone_2.3.e-2_source + stopmotion_0.6.2+git.1.10d2ea43-1.1_source + stops_0.3.0-1_source + stopwatch_3.5-3_source + storebackup_3.2.1-1_source + storm_0.19-1_source + stormbaancoureur_2.1.6-1_source + stow_2.2.0-2_source + strace_4.5.20-2.3_source + streamripper_1.64.6-1_source + streamtuner2_2.0.8-5_source + stress_1.0.1-1_source + stressapptest_1.0.4-2_source + stretchplayer_0.503-2_source + strigi_0.7.7-3_source + stringtemplate_3.2.1-1_source + strongswan_4.5.2-1.5+deb7u2_source + strongwind_0.9-2_source + strophejs_1.0.1.dfsg-2_source + strucchange_1.4-7-1_source + structure-synth_1.5.0-1.1_source + stsci.distutils_0.3-1_source + stterm_0.0~20120124+hg226-2_source + stud_0.3-3_source + stumpwm_1:20110819.gitca08e08-2_source + stun_0.96.dfsg-6_source + stunnel4_3:4.53-1.1_source + stx-btree_0.8.6-1_source + stx2any_1.56-2_source + stylebook_1.0~b3~svn20061109-6_source + stymulator_0.21a~dfsg-1_source + styx_1.8.0-1.1_source + subcommander_2.0.0~b5p2-5_source + sublib_0.9-4_source + subnetcalc_2.1.3-1_source + substance_5.3-2_source + subsurface_1.2-1_source + subtitlecomposer_0.5.3-3_source + subtitleeditor_0.33.0-1_source + subtle_0.11.3224-xi-1_source + subunit_0.0.8+bzr176-1_source + subversion_1.6.17dfsg-4+deb7u4_source + subvertpy_0.8.10-2_source + suck_4.3.2-11_source + suckless-tools_38-2_source + sucrack_1.2.3-0.9_source + sudo_1.8.5p2-1+nmu1_source + sudoku_1.0.1-4_source + suds_0.4.1-5_source + suede_0.2.5-1_source + sugar-0.96_0.96.1-2.1_source + sugar-artwork-0.84_0.84.4-3_source + sugar-artwork-0.88_0.88.1-4_source + sugar-artwork-0.96_0.96.2-1_source + sugar-base-0.84_0.84.2-4_source + sugar-base-0.88_0.88.0-4_source + sugar-base-0.96_0.96.0-1_source + sugar-calculate-activity_40-2_source + sugar-connect-activity_22-1.1_source + sugar-datastore-0.84_0.84.1-3_source + sugar-datastore-0.88_0.88.0-3_source + sugar-datastore-0.96_0.96.0-1_source + sugar-irc-activity_8-1.1_source + sugar-memorize-activity_35-1_source + sugar-physics-activity_7+dfsg-1.1_source + sugar-pippy-activity_46~dfsg-2_source + sugar-presence-service-0.84_0.84.3-1_source + sugar-presence-service-0.88_0.88.0-3_source + sugar-presence-service-0.90_0.90.2-1_source + sugar-record-activity_82-1.1_source + sugar-terminal-activity_28-1.1_source + sugar-toolkit-0.84_0.84.17-1_source + sugar-toolkit-0.88_0.88.1-3_source + sugar-toolkit-0.96_0.96.1-1_source + sugar-toolkit-gtk3_0.96.1-2_source + sugarplum_0.9.10-17.2_source + suikyo_2.1.0-3_source + suil_0.6.4~dfsg0-3_source + suitesparse_1:3.4.0-3_source + summain_0.14-1_source + sumo_0.15.0~dfsg-2_source + sunclock_3.57-2_source + sundials_2.5.0-3_source + sunflow_0.07.2.svn396+dfsg-9_source + sunpinyin_2.0.3+git20120607-1_source + suomi-malaga_1.12-1_source + sup_20100519-1_source + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_source + super_3.30.0-6_source + supercat_0.5.5-4_source + supercollider_1:3.4.5-1wheezy1_source + superiotool_0.0+r6637-1_source + superkaramba_4:4.8.4-3_source + superlu_3.0+20070106-3_source + supertransball2_1.5-4_source + supertux_0.1.3-3_source + supertuxkart_0.7.3-2_source + supervisor_3.0a8-1.1_source + suphp_0.7.1-3_source + supybot_0.83.4.1.ds-2_source + surefire_2.10-4_source + surf_0.4.1-8_source + surfraw_2.2.8-1_source + suricata_1.2.1-2_source + survex_1.2.6-4_source + survival_2.36-14-1_source + sushi_1.4.0+dfsg-1_source + sux_1.0.1-6_source + svgalib_1:1.4.3-33_source + svgpart_4:4.8.4-1_source + svgsalamander_0~svn95-1_source + svgtoipe_20100608-1_source + svn-all-fast-export_1.0.5-1_source + svn-buildpackage_0.8.5_source + svn-load_1.3-1_source + svn-workbench_1.6.2-2_source + svn2cl_0.13-2_source + svnclientadapter_0.9.100-2_source + svnkit_1.3.5+dfsg-4_source + svnmailer_1.0.8-12_source + svrcore_1:4.0.4-15_source + svtools_0.6-2_source + swac-explore_0.2-1.2_source + swac-get_0.3-2.1_source + swaks_20120320.0-1_source + swami_2.0.0+svn389-2_source + swaml_0.1.1-1_source + swapspace_1.10-4_source + swatch_3.2.3-1_source + swath_0.4.3-3_source + swe-standard-data_00004-1_source + swedish_1.4.5-2.1_source + sweep_0.9.3-6_source + sweeper_4:4.8.4-1_source + sweethome3d_3.5+dfsg-1_source + swfmill_0.3.2-1_source + swftools_0.9.2+ds1-3_source + swh-lv2_1.0.15+20111107.gitec6b85e-1_source + swh-plugins_0.4.15+1-6_source + swi-prolog_5.10.4-5_source + swi-prolog-doc_5.6.59-1_source + swift_1.4.8-2+deb7u1_source + swift-im_2.0~beta1+dev47-1_source + swig2.0_2.0.7-3_source + swiginac_1.5.1.1-1_source + swing-layout_1.0.4-2_source + swish++_6.1.5-2.2_source + swish-e_2.4.7-3_source + swissknife_1.67-1_source + swisswatch_0.6-14_source + switchconf_0.0.9-2_source + switchsh_0~20070801-3_source + sword_1.6.2+dfsg-5_source + sword-comm-mhcc_1.1-4_source + sword-comm-scofield_1.0-3_source + sword-comm-tdavid_1.1-3_source + sword-dict-naves_1.1-3_source + sword-dict-strongs-greek_1.2-3_source + sword-dict-strongs-hebrew_1.2-3_source + sword-text-kjv_2.3-2_source + sword-text-sparv_1.5-1_source + sword-text-web_1.4-3_source + swt-gtk_3.8.0~rc4-1_source + swt-paperclips_1.0.4-1_source + swtcalendar_0.5-1_source + swtchart_0.8.0-1_source + sxid_4.2-1_source + sxiv_1.0-1_source + syfi_1.0.0.dfsg-1_source + sylph-searcher_1.2.0-7_source + sylpheed_3.2.0-1_source + sylpheed-doc_20120629-1_source + sylseg-sk_0.7-1_source + symeig_1.5-2_source + symlinks_1.4-1_source + symmetrica_2.0-1_source + sympa_6.1.11~dfsg-5_source + sympow_1.019-4_source + sympy_0.7.1.rc1-3_source + synaesthesia_2.4-3_source + synapse_0.2.10-2_source + synaptic_0.75.13_source + synaptiks_0.8.1-1_source + syncache_1.2-1_source + syncbbdb_2.3-6.2_source + synce-gnomevfs_0.13-2.1_source + synce-hal_0.15-1.1_source + synce-serial_0.11-5.3_source + synce-trayicon_0.15-1.2_source + syncevolution_1.2.99.1-1.1_source + syncmaildir_1.2.5-1_source + syncplaces_4.1.2-2_source + synergy_1.3.8-2_source + synfig_0.63.05-1_source + synfigstudio_0.63.05-1_source + synopsis_0.12-8_source + syrep_0.9-4.1_source + syrthes_3.4.3-dfsg1-6_source + sysadmin-guide_0.9-1_source + sysbench_0.4.12-1_source + sysconfig_0.0.10+nmu1_source + sysconftool_0.16-1_source + sysfsutils_2.1.0+repack-2_source + sysinfo_0.7-8_source + syslinux_2:4.05+dfsg-6+deb7u1_source + syslinux-themes-debian_11-1.1_source + syslog-ng_3.3.5-4_source + syslog-ocaml_1.4-6_source + syslog-summary_1.14-2_source + sysnews_0.9-17_source + sysprof_1.1.8-2_source + sysprofile_0.3.8_source + sysrqd_14-1_source + sysstat_10.0.5-1_source + system-config-cluster_1.0.53-1_source + system-config-lvm_1.1.16-1_source + system-config-printer_1.3.7-4_source + system-tools-backends_2.10.2-1_source + systemd_44-11+deb7u4_source + systempreferences.app_1.1.0-2_source + systemtap_1.7-1+deb7u1_source + systraq_0.0.20081217-3_source + systune_0.5.7_source + sysv-rc-conf_0.99-7_source + sysvbanner_1.0.15_source + sysvinit_2.88dsf-41+deb7u1_source + t-code_2:2.3.1-3_source + t-coffee_9.02.r1228-2_source + t-prot_2.101-2_source + t1lib_5.1.2-3.6_source + t1utils_1.37-1_source + t2html_2010.0302+gitbec03e2-2_source + t38modem_2.0.0-3_source + tabble_0.43-1_source + tabix_0.2.6-1_source + tableau-parm_0.2.0-1_source + tablix2_0.3.5-2_source + tabmixplus_0.4.0.2-1_source + tacacs+_4.0.4.19-11_source + tachyon_0.99~b2+dfsg-0.4_source + tack_1.07-1_source + tads2-mode_1.2-2_source + tagainijisho_0.9.4-1_source + tagcloud_1.4-1.1_source + tagcoll2_2.0.13-1.1_source + taggrepper_0.03.1-3_source + taglib_1.7.2-1_source + taglib-extras_1.0.1-3_source + taglib-sharp_2.0.4.0-1_source + taglog_0.2.3-1_source + tagpy_0.94.8-4_source + tagtool_0.12.3-8.1_source + tagua_1.0~alpha2-10_source + tahoe-lafs_1.9.2-1_source + tailor_0.9.35+darcs20090615-1_source + taktuk_3.7.4-1_source + talksoup.app_1.0alpha-32-g55b4d4e-1.2_source + talloc_2.0.7+git20120207-1_source + tamil-gtk2im_2.2-4.4_source + tamuanova_0.2-2_source + tangerine_0.3.4-3_source + tanglet_1.1.1-1.1_source + tango_7.2.6+dfsg-14_source + tango-icon-theme_0.8.90-5_source + taningia_0.2.2-1_source + taoframework_2.1.svn20090801-9_source + tap-plugins_0.7.2-1_source + tap-plugins-doc_20040817-2_source + tapecalc_20070214-2_source + tar_1.26+dfsg-0.1_source + tarantool_1.4.6+20120629+2158-1_source + tardiff_0.1-1_source + tardy_1.25-1_source + targetcli_2.0rc1-2_source + tart_3.09-1_source + task_2.0.0-1_source + task-spooler_0.7.3-1_source + tasks_0.20-1_source + tasksel_3.14.1_source + tasque_0.1.9-2_source + tatan_1.0.dfsg1-3_source + tau_2.16.4-1.4_source + taurus_3.0.0-2_source + tayga_0.9.2-4_source + tbb_4.0+r233-1_source + tcc_0.9.26~git20120612.ad5f375-6_source + tcd-utils_20061127-2_source + tcl-signal_1.4-1_source + tcl8.4_8.4.19-5_source + tcl8.5_8.5.11-2_source + tclap_1.2.1-1_source + tclcl_1.20-6_source + tclcurl_7.22.0-1_source + tclex_1.2a1-15_source + tclgeoip_0.2-1_source + tcllib_1.14-dfsg-3_source + tclodbc_2.5.1-1.1_source + tclreadline_2.1.0-12_source + tclthread_1:2.6.7-1_source + tcltk-defaults_8.5.0-2.1_source + tcltls_1.6+dfsg-3_source + tcltrf_2.1.4-dfsg1-1_source + tcludp_1.0.8-6_source + tclvfs_1.3-20080503-3_source + tclx8.4_8.4.0-3_source + tclxml_3.3~svn11-2_source + tcm_2.20+TSQD-4.2_source + tcng_10b-4_source + tcp-wrappers_7.6.q-24_source + tcpdump_4.3.0-1_source + tcpflow_0.21.ds1-7_source + tcpick_0.2.1-6_source + tcpreen_1.4.4-2_source + tcpreplay_3.4.3-2+wheezy1_source + tcpser_1.0rc12-1_source + tcpslice_1.2a3-4_source + tcpspy_1.7d-4_source + tcpstat_1.5-7_source + tcptrace_6.6.7-4.1_source + tcptraceroute_1.5beta7+debian-4_source + tcptrack_1.4.2-1_source + tcputils_0.6.2-9_source + tcpwatch-httpproxy_1.3b-3_source + tcpxtract_1.0.1-8_source + tcs_1-11_source + tcsh_6.18.01-2_source + td2planet_0.2.0-2_source + tdb_1.2.10-2_source + tdc_1.2-1_source + tdfsb_0.0.10-1.1_source + tdiary_3.1.3-3_source + tdiary-contrib_3.1.20120506-3_source + tdl_1.5.2-3.1_source + tdom_0.8.3~20080525-3+nmu2_source + tea_33.1.0-1_source + tecnoballz_0.92-5_source + teem_1.11.0~svn5226-1_source + teeworlds_0.6.1+dfsg-1_source + teg_0.11.2+debian-3_source + tegaki-pygtk_0.3.1-1_source + tegaki-python_0.3.1-1_source + tegaki-recognize_0.3.1.2-1_source + tegaki-tools_0.3.1-1_source + tegaki-train_0.3.1-1_source + tegaki-zinnia-japanese_0.3-1_source + tegaki-zinnia-simplified-chinese_0.3-1_source + telak_0.6-1_source + telegnome_0.1.1-5_source + telepathy-farstream_0.4.0-3_source + telepathy-gabble_0.16.7-0+deb7u1_source + telepathy-glib_0.18.2-2_source + telepathy-haze_0.6.0-1_source + telepathy-idle_0.1.11-2+deb7u1_source + telepathy-logger_0.4.0-1_source + telepathy-logger-qt_0.4.0-1_source + telepathy-mission-control-5_1:5.12.3-1_source + telepathy-python_0.15.19-2.1_source + telepathy-qt_0.9.1-4_source + telepathy-rakia_0.7.4-1_source + telepathy-salut_0.8.1-1_source + telepathy-spec_0.26.0-1_source + teleport_0.34-7_source + tellico_2.3.5+dfsg.1-4_source + tempest-for-eliza_1.0.5-1_source + templayer_1.5.1-1_source + tenace_0.12-1_source + tenmado_0.10-1_source + tennix_1.1-2_source + tenshi_0.13-2_source + terminal.app_0.9.4+cvs20051125-6.1_source + terminator_0.95-1_source + terminatorx_3.84-2_source + termit_2.9.4-2_source + termsaver_0.1.1-1_source + terraintool_1.12a-1_source + teseq_1.0.0-2.1_source + tess_0.3.0-6_source + tessa_0.3.1-6_source + tesseract_3.02.01-6_source + tesseract-afr_3.02-2_source + tesseract-ara_3.02-2_source + tesseract-aze_3.02-2_source + tesseract-bel_3.02-2_source + tesseract-ben_3.02-2_source + tesseract-bul_3.02-2_source + tesseract-cat_3.02-2_source + tesseract-ces_3.02-2_source + tesseract-chi-sim_3.02-1_source + tesseract-chi-tra_3.02-1_source + tesseract-chr_3.02-2_source + tesseract-dan_3.02-2_source + tesseract-deu_3.02-2_source + tesseract-deu-frak_3.02-4_source + tesseract-ell_3.02-2_source + tesseract-eng_3.02-2_source + tesseract-enm_3.02-2_source + tesseract-epo_3.02-2_source + tesseract-equ_3.02-2_source + tesseract-est_3.02-2_source + tesseract-eus_3.02-2_source + tesseract-fin_3.02-2_source + tesseract-fra_3.02-2_source + tesseract-frk_3.02-2_source + tesseract-frm_3.02-2_source + tesseract-glg_3.02-2_source + tesseract-heb_3.02-2_source + tesseract-hin_3.02-2_source + tesseract-hrv_3.02-2_source + tesseract-hun_3.02-2_source + tesseract-ind_3.02-2_source + tesseract-isl_3.02-2_source + tesseract-ita_3.02-2_source + tesseract-ita-old_3.02-1_source + tesseract-jpn_3.02-2_source + tesseract-kan_3.02-2_source + tesseract-kor_3.02-2_source + tesseract-lav_3.02-2_source + tesseract-lit_3.02-2_source + tesseract-mal_3.02-2_source + tesseract-mkd_3.02-2_source + tesseract-mlt_3.02-2_source + tesseract-msa_3.02-2_source + tesseract-nld_3.02-2_source + tesseract-nor_3.02-2_source + tesseract-osd_3.02-2_source + tesseract-pol_3.02-2_source + tesseract-por_3.02-2_source + tesseract-ron_3.02-2_source + tesseract-rus_3.02-2_source + tesseract-slk_3.02-2_source + tesseract-slk-frak_3.02-2_source + tesseract-slv_3.02-2_source + tesseract-spa_3.02-2_source + tesseract-spa-old_3.02-1_source + tesseract-sqi_3.02-2_source + tesseract-srp_3.02-2_source + tesseract-swa_3.02-2_source + tesseract-swe_3.02-2_source + tesseract-tam_3.02-2_source + tesseract-tel_3.02-2_source + tesseract-tgl_3.02-2_source + tesseract-tha_3.02-2_source + tesseract-tur_3.02-2_source + tesseract-ukr_3.02-2_source + tesseract-vie_3.02-2_source + testdisk_6.13-1_source + testng_5.11+dfsg-3_source + testrepository_0.0.5-1.1_source + testresources_0.2.4-1_source + tetex-brev_4.22.6+nmu1_source + tetradraw_2.0.3-8.2_source + tetraproc_0.8.2-2_source + tetrinet_0.11+CVS20070911-1_source + tetrinetx_1.13.16-14_source + tetzle_2.0.1-1_source + tevent_0.9.16-1_source + tex-common_3.15_source + tex-gyre_2.004.1-4_source + tex4ht_20090611-1.1_source + texi2html_1.82+dfsg1-1_source + texify_1.20-2_source + texinfo_4.13a.dfsg.1-10_source + texlive-base_2012.20120611-5_source + texlive-bin_2012.20120628-4_source + texlive-doc_2012.20120611-1_source + texlive-extra_2012.20120611-2_source + texlive-lang_2012.20120611-2_source + texmacs_1:1.0.7.15-2_source + texmacs-extra-fonts_0.2_source + texmaker_3.3.4-1_source + texstudio_2.3+debian-3_source + textdraw_0.2-2_source + textedit.app_4.0+20061029-3.4_source + texworks_0.5~svn1007-1_source + tf_1:4.0s1-17_source + tf5_5.0beta8-4_source + tfdocgen_1.0-1_source + tftp-hpa_5.2-4_source + tftpy_0.6.0-1_source + tg.devtools_2.0.2-3_source + tgif_1:4.2.5-1.2_source + tgt_1:1.0.17-1_source + thailatex_0.5.0-3_source + thaixfonts_1:1.2.5-11_source + the_3.3~rc1-2_source + themole_0.3-1_source + themonospot_0.7.3.1-6_source + thepeg_1.8.0-1_source + therion_5.3.9-4_source + theseus_1.6.2-2_source + thewidgetfactory_0.2.1-2_source + thin_1.3.1-3_source + thinkfan_0.8.1-1_source + thp_0.4.6-9_source + threadscope_0.2.1-1_source + thrust_0.89c-3.5_source + thuban_1.2.2-3_source + thunar_1.2.3-4_source + thunar-archive-plugin_0.3.0-4_source + thunar-media-tags-plugin_0.2.0-1_source + thunar-vcs-plugin_0.1.4-1_source + thunar-vfs_1.2.0-3_source + thunar-volman_0.6.1-1_source + ticgit_1.0.2.11-2_source + ticker_1.9_source + tickr_0.6.1-1_source + tictactoe-ng_0.3.2.1-1_source + tidy_20091223cvs-1.2_source + tidy-proxy_0.97-4_source + tiemu_3.02-1.2_source + tiff_4.0.2-6+deb7u2_source + tiff3_3.9.6-11_source + tifffile_20120421-1_source + tig_1.0-2_source + tiger_1:3.2.3-10_source + tiger-types_1.4-1_source + tightvnc_1.3.9-6.4_source + tigr-glimmer_3.02-2_source + tilda_0.09.6-2_source + tilecache_2.11-2_source + tiled-qt_0.8.1-1_source + tilelite_0.1.5-2_source + tiles_2.2.2-3_source + tilestache_1.31.0-1_source + tilp2_1.12-1_source + timbl_6.4.2-1_source + timblserver_1.4-2_source + time_1.7-24_source + timelimit_1.8-1_source + timemachine_0.3.3-1_source + timemon.app_4.1-2_source + timidity_2.13.2-40.1_source + timingframework_1.0-1_source + timps_0.25-4_source + tin_1:2.1.1-1_source + tina_0.1.11-3_source + tinc_1.0.19-3_source + tint_0.04+nmu1_source + tint2_0.11+svn20111022-3_source + tintii_2.6.1-1_source + tintin++_2.00.8-1_source + tinyca_0.7.5-4_source + tinycdb_0.78_source + tinydyndns_0.4.2.debian1-1_source + tinyeartrainer_0.1.0-2_source + tinyirc_1:1.1.dfsg.1-2_source + tinymce_3.4.8+dfsg0-1_source + tinymux_2.6.5.28-1_source + tinyproxy_1.8.3-3_source + tinyscheme_1.37-3.1_source + tinywm_1.3-9_source + tinyxml_2.6.2-1_source + tinyxml2_0~git20120518.1.a2ae54e-1_source + tiobench_0.3.3-5_source + tipa_2:1.3-19_source + titanion_0.3.dfsg1-4_source + tix_8.4.3-4_source + tk-brief_5.9-1.1_source + tk-html3_3.0~fossil20110109-2_source + tk-table_2.10-1_source + tk2_1.1-9.1_source + tk5_0.6-6.1_source + tk707_0.7.21-9.1_source + tk8.4_8.4.19-5_source + tk8.5_8.5.11-2_source + tkabber_0.11.1-3_source + tkabber-plugins_0.11.1-1_source + tkcon_2:2.5-1_source + tkcvs_8.2.3-1_source + tkdesk_2.0-9.1_source + tkgate_1.8.7-4_source + tkinfo_2.8-4_source + tkinspect_5.1.6p10-4_source + tklib_0.5-3_source + tkpng_0.9-1_source + tkrplot_0.0.23-1_source + tktray_1.3.9-2_source + tktreectrl_2.2.8-1_source + tla_1.3.5+dfsg-18_source + tlslite_0.3.8-2_source + tm-align_20120507-1_source + tmake_1.8-1.1_source + tmexpand_0.1.2.0-3_source + tmispell-voikko_0.7.1-3_source + tmpreaper_1.6.13+nmu1_source + tmux_1.6-2_source + tmview_1:01.03-14.1_source + tmw_20110911-3_source + tmw-music_0.3-3_source + tnat64_0.05-1_source + tnef_1.4.9-1_source + tnftp_20100108-3_source + tntdb_1.2-2_source + tntnet_2.1-2+deb7u1_source + tofrodos_1.7.9.debian.1-1_source + tofu_0.5-5_source + toga2_1.4.1.1SE1-4_source + toggle-proxy_1.5-2_source + togl_1.7-12_source + toilet_0.3-1_source + tokyocabinet_1.4.47-2_source + tokyocabinet-haskell_0.0.5-5_source + tokyotyrant_1.1.40-4.1_source + tolua_5.2.0-1_source + tolua++_1.0.93-3_source + tomatoes_1.55-5_source + tomboy_1.10.0-2_source + tomboy-latex_0.5-4_source + tomcat-maven-plugin_1.1-2_source + tomcat-native_1.1.24-1_source + tomcat6_6.0.35-6+deb7u1_source + tomcat7_7.0.28-4_source + tomcatjss_6.0.1-1_source + tomoe_0.6.0-1.3_source + tomoyo-tools_2.5.0-20120414-2_source + toonloop_2.2.0-1_source + topal_75-1_source + topgit_0.8-1.1_source + tophide_1.0.0-3_source + toppler_1.1.5-2_source + tor_0.2.3.25-1_source + tor-arm_1.4.5.0-1_source + tora_2.1.3-2_source + torch3_3.1-2.1_source + torchat_0.9.9.550-2_source + torcs_1.3.3+dfsg-0.1_source + torque_2.4.16+dfsg-1+deb7u2_source + torrentflux_2.4-5.1_source + torrus_2.03-2+deb7u1_source + torsocks_1.2-3_source + tortoisehg_2.4-2_source + torus-trooper_0.22.dfsg1-8_source + toshset_1.76-4_source + totem_3.0.1-8_source + totem-pl-parser_3.4.2-1_source + totem-plugin-arte_3.1.2-1_source + tourney-manager_20070820-4_source + towitoko_2.0.7-8.3_source + tp-smapi_0.41-1_source + tpb_0.6.4-8_source + tpclient-pywx_0.3.1.1-3.1_source + tpconfig_3.1.3-15_source + tpm-tools_1.3.7-1_source + tqsllib_2.2-5_source + trac_0.12.5-3~deb7u1_source + trac-accountmanager_0.2.1+r7731-1_source + trac-announcer_0.12.1+r10986-2_source + trac-authopenid_0.3.1-1_source + trac-batchmodify_0.8.0+r10978-1_source + trac-bitten_0.6+final-3_source + trac-bzr_0.4.2+bzr125-2_source + trac-customfieldadmin_0.2.6+r10460-1_source + trac-datefieldplugin_0.7782-3_source + trac-diavisview_0.1+r11124-2_source + trac-git_0.12.0.5+722342e-1_source + trac-graphviz_0.7.5-1_source + trac-httpauth_1.1+r6675-1_source + trac-icalviewplugin_0.7889-1_source + trac-ja-resource_0.12.2.ja1-1_source + trac-jsgantt_0.9+r11145-1_source + trac-mastertickets_3.0.2+20111224-2_source + trac-mercurial_0.12.0.28-1_source + trac-odtexport_0.6.0+svn10787-2_source + trac-privateticketsplugin_2.0.3-3_source + trac-roadmap_0.4.1+r11241-1_source + trac-sensitivetickets_0.21-1_source + trac-subtickets_0.1.1+253f019-1_source + trac-tags_0.6.0+svn11105-1_source + trac-virtualticketpermissions_1.0.0+svn4153-1_source + trac-wikiprint_1.9.2-1.1_source + trac-wikitablemacro_0.7785-1_source + trac-wysiwyg_0.12.0.3+r10725-1_source + trac-xmlrpc_1.1.2+r10706-1_source + traceroute_1:2.0.18-3_source + trackballs_1.1.4-4.1_source + trackballs-music_1.3-1_source + tracker_0.14.1-3_source + trafficserver_3.0.5-1_source + tralics_2.14.4-2_source + transaction_1.1.1-2_source + transcalc_0.14-5_source + transcend_0.3.dfsg2-2_source + transcode_3:1.1.7-3_source + transfermii_1:0.6.1-2.1_source + transfig_1:3.2.5.d-3_source + transgui_4.0.3-2_source + transifex-client_0.8-2_source + translate_0.6-11_source + translate-docformat_0.6-5_source + translate-toolkit_1.9.0-3_source + translatoid_1.30+svn1226145-1_source + transmageddon_0.20-1_source + transmission_2.52-3+nmu1_source + transmission-remote-cli_1.3.1-1_source + transmissionrpc_0.8-1_source + transtermhp_2.09-1_source + trash-cli_0.12.7-1_source + traverso_0.49.2-5_source + trayer_1.1.4-2_source + tre_0.8.0-3_source + tree_1.6.0-1_source + tree-puzzle_5.2-7_source + tree-style-tab_0.14.2012050301-1_source + treeline_1.4.1-1_source + treeviewx_0.5.1+20100823-1_source + treil_1.8-1.1_source + trend_1.2-1_source + trickle_1.07-9_source + trident_1.3+dfsg-5_source + trigger-rally_0.6.0-1_source + trigger-rally-data_0.6.0-1_source + triggerhappy_0.3.4-2_source + trilead-putty-extension_1.1-2_source + trilead-ssh2_6401-1_source + trimage_1.0.5-1_source + triplane_1.0.7-1_source + triplea_1.5.2.1-1_source + tripwire_2.4.2.2-2_source + tritium_0.3.8-2_source + trivial-features_0.6-1_source + trivial-gray-streams_20091021-1_source + troffcvt_1.04-21_source + trophy_2.0.2-2_source + trousers_0.3.9-3+wheezy1_source + trovacap_0.2.2-1_source + trove_2.1.0-2_source + trove3_3.0.2-1_source + trscripts_1.16_source + trueprint_5.3-4_source + trustedqsl_1.13-3_source + tryton-client_2.2.3-1+deb7u1_source + tryton-meta_16_source + tryton-modules-account_2.2.3-1_source + tryton-modules-account-be_2.2.0-2_source + tryton-modules-account-de-skr03_2.2.0-2_source + tryton-modules-account-invoice_2.2.2-2_source + tryton-modules-account-invoice-history_2.2.0-2_source + tryton-modules-account-invoice-line-standalone_2.2.0-2_source + tryton-modules-account-product_2.2.0-2_source + tryton-modules-account-statement_2.2.1-1_source + tryton-modules-analytic-account_2.2.0-2_source + tryton-modules-analytic-invoice_1:2.2.0-2_source + tryton-modules-analytic-purchase_2.2.0-2_source + tryton-modules-analytic-sale_2.2.0-2_source + tryton-modules-calendar_2.2.1-1_source + tryton-modules-calendar-classification_2.2.1-1_source + tryton-modules-calendar-scheduling_2.2.2-1_source + tryton-modules-calendar-todo_2.2.1-1_source + tryton-modules-company_2.2.1-2_source + tryton-modules-company-work-time_2.2.0-2_source + tryton-modules-country_2.2.0-2_source + tryton-modules-currency_2.2.1-2_source + tryton-modules-dashboard_2.2.1-2_source + tryton-modules-google-maps_2.2.0-2_source + tryton-modules-ldap-authentication_2.2.1-2_source + tryton-modules-ldap-connection_2.2.0-2_source + tryton-modules-party_2.2.1-2_source + tryton-modules-party-siret_2.2.1-2_source + tryton-modules-party-vcarddav_2.2.1-1_source + tryton-modules-product_2.2.2-1_source + tryton-modules-product-cost-fifo_2.2.0-2_source + tryton-modules-product-cost-history_2.2.0-2_source + tryton-modules-product-price-list_2.2.0-2_source + tryton-modules-project_2.2.0-2_source + tryton-modules-project-plan_2.2.0-2_source + tryton-modules-project-revenue_2.2.1-2_source + tryton-modules-purchase_2.2.1-2_source + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_source + tryton-modules-sale_2.2.2-2_source + tryton-modules-sale-opportunity_2.2.1-2_source + tryton-modules-sale-price-list_2.2.0-2_source + tryton-modules-stock_2.2.3-1_source + tryton-modules-stock-forecast_2.2.1-2_source + tryton-modules-stock-inventory-location_2.2.0-2_source + tryton-modules-stock-location-sequence_2.2.0-2_source + tryton-modules-stock-product-location_2.2.0-2_source + tryton-modules-stock-supply_2.2.2-1_source + tryton-modules-stock-supply-day_2.2.1-2_source + tryton-modules-timesheet_2.2.1-1_source + tryton-neso_2.2.1-2_source + tryton-proteus_2.2.1-1_source + tryton-server_2.2.4-1_source + tsdecrypt_8.1-1_source + tse3_0.3.1-4.3_source + tseries_0.10-28-1_source + tslib_1.0-11_source + tsocks_1.8beta5-9.2_source + tstools_1.11-1_source + tsung_1.4.2-1.1_source + ttb_1.0.1+20101115-1_source + ttf-adf_0.20090423-2_source + ttf-aenigma_0.0.20080510.dfsg-2_source + ttf-alee_12+nmu1_source + ttf-ancient-fonts_2.57-1_source + ttf-atarismall_2.1-4_source + ttf-bitstream-vera_1.10-8_source + ttf-cjk-compact_1.20_source + ttf-dejavu_2.33-3_source + ttf-engadget_1.001-1-1_source + ttf-femkeklaver_1.0-1_source + ttf-freefont_20100919-1_source + ttf-goudybookletter_2010.07.03-1_source + ttf-indic-fonts_1:0.5.14_source + ttf-isabella_1.2-2_source + ttf-jsmath_0.090709+0-1_source + ttf-kochi_20030809-15_source + ttf-lao_0.0.20060226-7_source + ttf-marvosym_0.1+dfsg-2_source + ttf-radisnoir_0.9b-2_source + ttf-sazanami_20040629-15_source + ttf-staypuft_0.04-6_source + ttf-summersby_1.007-3.1_source + ttf-tagbanwa_1.004_source + ttf-tiresias_0.1-2_source + ttf-wqy-microhei_0.2.0-beta-1.1_source + ttf-wqy-zenhei_0.9.45-4_source + ttf2ufm_3.4.4~r2-1_source + ttfautohint_0.9-1_source + tth_4.03+ds-2_source + tthsum_1.1.0-1_source + ttt_1.7-3.3_source + tty-clock_1.1-1_source + ttyload_0.5-7_source + ttylog_0.1.d-2_source + ttyrec_1.0.8-5_source + ttysnoop_0.12d-5_source + tua_4.3-11_source + tuareg-mode_1:2.0.6-3_source + tucnak2_2.47-2+deb7u1_source + tudu_0.8.1-1_source + tulip_3.7.0dfsg-4_source + tumbler_0.1.25-1_source + tumgreyspf_1.36-4_source + tumiki-fighters_0.2.dfsg1-5_source + tunapie_2.1.17-2.2_source + tunnelx_20110801-2.1_source + tupi_0.1+git12-6_source + turbogears2_2.1.5-2_source + turbogears2-doc_2.1.5-1_source + turbojson_1.3.2-2_source + turbokid_1.0.5-1_source + turnin-ng_1.1-1_source + turtleart_98-1_source + tuxcmd_0.6.70+dfsg-1_source + tuxcmd-modules_0.6.70+ds-4_source + tuxfootball_0.3.1-2_source + tuxguitar_1.2-13+deb7u1_source + tuxmath_1.8.0-4_source + tuxonice-userui_1.1-1_source + tuxpaint_1:0.9.21-1.1_source + tuxpaint-config_0.0.12-3_source + tuxpaint-stamps_2009.06.28-1_source + tuxpuck_0.8.2-2.2_source + tuxracer-extras_0.6-1_source + tuxtype_1.8.1-5_source + tv-fonts_1.1-8_source + tvdb-api_1.7.1-1_source + tvflash_0.9.0-1_source + tvnamer_2.2.1-1_source + tvtime_1.0.2-10_source + twatch_0.0.7-1_source + twclock_3.1-1_source + tweak_3.01-8_source + tweepy_1.7.1-2_source + twiggy_0.1020+dfsg-1_source + twill_0.9-3_source + twisted_12.0.0-1_source + twisted-conch_1:12.0.0-1_source + twisted-lore_12.0.0-1_source + twisted-mail_12.0.0-1_source + twisted-names_12.0.0-1_source + twisted-news_12.0.0-1_source + twisted-runner_12.0.0-1_source + twisted-web_12.0.0-1_source + twisted-web2_8.1.0-3_source + twisted-words_12.0.0-1_source + twittering-mode_2.0.0+git20120325-1_source + twm_1:1.0.6-1_source + twms_0.03e-2_source + twofish_0.3-3_source + twoftpd_1.41-1_source + twolame_0.3.13-1_source + tworld_1.3.0-6_source + twpsk_4.0-1_source + txaws_0.2.3-1_source + txlibravatar_1.1-3_source + txt2html_2.51-1_source + txt2man_1.5.5-4_source + txt2pdbdoc_1.4.4-6_source + txt2regex_0.8-4_source + txt2tags_2.6-3_source + txtreader_0.6.5-1_source + txw2_0.1+20070624-1_source + txzookeeper_0.9.5-1_source + type-conv_3.0.4-1_source + typespeed_0.6.5-1.1_source + typo3-src_4.5.19+dfsg1-5+wheezy2_source + typogrify_20111209-2_source + tyxml_2.1-1_source + tzc_2.6.15-5.2_source + tzdata_2013i-0wheezy1_source + tzsetup_1:0.42_source + u-boot_2012.04.01-2_source + u3-tool_0.3-1.1_source + uanytun_0.3.3-1_source + uapevent_1.4-2_source + uaputl_1.12-2_source + ubiquity-extension_0.6.1~pre20111123-1_source + ubuntu-dev-tools_0.143_source + ubuntulooks_0.9.12-2_source + ucarp_1.5.2-1+nmu1_source + ucblogo_5.5-2.1_source + ucf_3.0025+nmu3_source + uchardet_0.0.1-1_source + ucimf-chewing_0.3-1+build1_source + ucimf-openvanilla_2.10.11-2_source + ucimf-sunpinyin_0.4-2_source + ucl_1.03-5_source + uclibc_0.9.32-1_source + uclmmbase_1.2.16.0-1_source + ucommon_5.2.2-4_source + ucspi-proxy_0.98-1_source + ucspi-tcp_1:0.88-3_source + ucspi-unix_0.36-4_source + ucto_0.5.2-2_source + udav_0.7.1.2-3_source + uddi4j_2.0.5-2_source + udev_175-7.2_source + udftools_1.0.0b3-14.2_source + udisks_1.0.4-7_source + udisks-glue_1.3.4-1_source + udo_6.4.1-1_source + udpcast_20100130-3_source + udpkg_1.14_source + udptunnel_1.1-4_source + udt_4.10+dfsg-1_source + udunits_2.1.23-3_source + ufc_2.0.5-3_source + ufiformat_0.9.8-1_source + ufl_1.0.0-1_source + ufraw_0.18-2_source + ufsutils_8.2-3_source + ufw_0.31.1-2_source + uget_1.8.2-1_source + uhd_3.4.2-1_source + uhub_0.3.2-1_source + uicilibris_1.8-1_source + uif_1.0.6-1.1_source + uif2iso_0.1.7a-1_source + uim_1:1.8.1-4_source + uim-chewing_0.1.0-3_source + uima-addons_2.3.1-2_source + uima-as_2.3.1-3_source + uimaj_2.4.0-2_source + uisp_20050207-4.2_source + ukolovnik_1.4-1_source + ukopp_4.4-1_source + ulatencyd_0.5.0-7_source + ulex_1.1-2_source + ulex0.8_0.8-10_source + uligo_0.3-6_source + ulogd_1.24-3.3_source + uml-utilities_20070815-1.3_source + umlet_11.3-5_source + umview_0.8.2-1_source + unac_1.8.0-6_source + unace_1.2b-10_source + unadf_0.7.11a-3_source + unagi_0.3.3-2_source + unalz_0.65-3_source + unar_1.1-2_source + unattended-upgrades_0.79.5_source + unbound_1.4.17-3_source + unburden-home-dir_0.3.1.2_source + uncertainties_1.8-1_source + unclutter_8-18_source + uncrustify_0.59-2_source + undbx_0.20-1_source + underscore_1.1.6-1+deb7u1_source + undertaker_1.3b-1_source + unetbootin_575-1_source + unhide_20110113-4_source + unhide.rb_13-1.1_source + unhtml_2.3.9-3_source + uni2ascii_4.18-2_source + unicap_0.9.12-2_source + unicode_0.9.5_source + unicode-data_6.1.0-1_source + unicode-screensaver_0.4-1_source + unicon_3.0.4-13_source + unicorn_4.3.1-4_source + unidecode_0.04.9-1_source + unifdef_2.6-1_source + unifont_1:5.1.20080914-1.3_source + unionfs-fuse_0.24-2.2_source + unison_2.40.65-2_source + unison2.27.57_2.27.57-7_source + unison2.32.52_2.32.52-6_source + units_1.88-1_source + units-filter_3.5-2_source + unittest++_1.4.0-3_source + unittest2_0.5.1-1_source + uniutils_2.27-1_source + universalindentgui_1.2.0-1_source + unixcw_3.0.2-1_source + unixodbc_2.2.14p2-5_source + unixodbc-gui-qt_2.3.0-3_source + unknown-horizons_2012.1+dfsg1-1_source + unmass_0.9-3_source + unmo3_0.6-1_source + unoconv_0.5-1_source + unp_2.0~pre7+nmu1_source + unpaper_0.4.2-1_source + unrar-free_1:0.0.1+cvs20071127-2_source + unrtf_0.19.3-1.1_source + unscd_0.48-2_source + unshield_0.6-3_source + unsort_1.1.2-1_source + untex_1:1.2-4_source + unworkable_0.53-3_source + unzip_6.0-8_source + up-imapproxy_1.2.7-1.1_source + update-inetd_4.43_source + update-manager_0.200.5-2.1_source + update-notifier_0.99.3debian11_source + upgrade-system_1.6.2.0_source + uphpmvault_0.8_source + upnp-inspector_0.2.2+dfsg-3_source + upnp-router-control_0.2-1_source + upower_0.9.17-1_source + uppity_1.5.8-3_source + upse_1.0.0-1_source + upslug2_11-3_source + upstart_1.6.1-1_source + uptimed_1:0.3.17-3.1_source + upx-ucl_3.08-2_source + uqwk_2.21-15_source + urca_1.2-6-1_source + urfkill_0.3.0-1_source + urg_0.8.12-4_source + uriparser_0.7.5-1_source + urjtag_0.10+r2007-1_source + urlgrabber_3.9.1-4_source + urlscan_0.5.6-0.1_source + urlview_0.9-19_source + urlwatch_1.11-1_source + uruk_20120608.1-1_source + urwid_1.0.1-2_source + usb-discover_1.09_source + usb-modeswitch_1.2.3+repack0-1_source + usb-modeswitch-data_20120815-2_source + usbmount_0.0.22_source + usbmuxd_1.0.7-2_source + usbprog_0.2.0-2_source + usbredir_0.4.3-2_source + usbtc08-python_0.1.1-2_source + usbutils_1:005-3_source + usbview_1.1-1_source + usemod-wiki_1.0.5-1+deb7u1_source + usepackage_1.8-1_source + user-he_1.0.20_source + user-mode-linux_3.2-2um-1+deb7u2_source + user-mode-linux-doc_20060501-1_source + user-setup_1.48_source + useragentswitcher_0.7.3-1_source + userdevfs_0.16_source + userinfo_2.2-3_source + usermode_1.109-1_source + userv_1.1.1_source + ussp-push_0.11-1_source + ust_2.0.4-1_source + ustr_1.0.4-3_source + uswsusp_1.0+20110509-3_source + utalk_1.0.1.beta-7_source + utf8-migration-tool_0.5.7_source + uthash_1.9.5-1_source + utidylib_0.2-8_source + util-linux_2.20.1-5.3_source + uuagc_0.9.40.3-2_source + uucp_1.07-20_source + uucpsend_1.1-4_source + uudeview_0.5.20-3.3_source + uuidm_0.9.4-1_source + uvccapture_0.5-2_source + uw-imap_8:2007f~dfsg-2_source + uwsgi_1.2.3+dfsg-5+deb7u1_source + uzbek-wordlist_0.6-3.2_source + uzbl_0.0.0~git.20120514-1.1_source + v-sim_3.6.0-2_source + v4l-utils_0.8.8-3_source + v4l2loopback_0.6.1-1_source + v4l2ucp_2.0.2-4_source + v86d_0.1.10-1_source + vacation_3.3.0-0.4_source + vagalume_0.8.5-4_source + vagrant_1.0.3-1_source + val-and-rick_0.1a.dfsg1-3_source + vala-0.14_0.14.2-2_source + vala-0.16_0.16.1-2_source + vala-dbus-binding-tool_0.3.3~git20110523-2_source + vala-terminal_1.3-3_source + valabind_0.6.4-1_source + valadoc_0.3.2~git20120227-1_source + valatoys_0.12.1-3_source + valgrind_1:3.7.0-6_source + valknut_0.4.9-2_source + valkyrie_2.0.0-1_source + vamp-plugin-sdk_2.1-1_source + vamps_0.99.2-4_source + van.pydeb_1.3.3-1_source + vanessa-adt_0.0.9-1_source + vanessa-logger_0.0.10-1.1_source + vanessa-socket_0.0.12-1_source + varconf_0.6.7-2_source + varmon_1.2.1-1_source + varnish_3.0.2-2+deb7u1_source + vatnumber_1:1.0-2_source + vavoom_1.33-4_source + vbackup_0.1.9-1_source + vbetool_1.1-2_source + vbindiff_3.0-beta3-1_source + vblade_20-1_source + vblade-persist_0.6-2_source + vbrfix_0.24-7_source + vcdimager_0.7.24+dfsg-0.1_source + vcftools_0.1.9-1_source + vcheck_1.2.1-7_source + vclt-tools_0.1.2-3_source + vco-plugins_0.3.0-2_source + vcsh_1.0-1_source + vde2_2.3.2-4_source + vdesk_1.2-3.1_source + vdetelweb_1.2.1-1_source + vdk-doc_1.2.4-4_source + vdk2_2.4.0-5.3_source + vdk2-tutorial_1.1-3_source + vdkbuilder2_2.4.0-4.3_source + vdkxdb2_2.4.0-3.4_source + vdmfec_1.0-2_source + vdpau-video_0.7.3-2_source + vdpauinfo_0.0.6-1_source + vdr_1.7.28-1_source + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_source + vdr-plugin-epgsearch_1.0.0+git20120325-4_source + vdr-plugin-epgsync_0.0.4-12_source + vdr-plugin-femon_1.7.17-3_source + vdr-plugin-fritzbox_1.4.3-2_source + vdr-plugin-games_0.6.3-39_source + vdr-plugin-infosatepg_0.0.11-10_source + vdr-plugin-live_0.2.0+git20120428-3_source + vdr-plugin-mp3_0.10.2-14_source + vdr-plugin-osdserver_0.1.3-7_source + vdr-plugin-osdteletext_0.9.3-2_source + vdr-plugin-prefermenu_0.6.6-37_source + vdr-plugin-remote_0.4.0-31_source + vdr-plugin-remoteosd_0.1.1-5_source + vdr-plugin-skinenigmang_0.1.2+git20120628-1_source + vdr-plugin-spider_0.2.2-14_source + vdr-plugin-streamdev_0.6.0-2_source + vdr-plugin-sudoku_0.3.5-12_source + vdr-plugin-svdrposd_0.1.1-8_source + vdr-plugin-svdrpservice_0.0.4-14_source + vdr-plugin-vcd_0.9-22_source + vdr-plugin-weather_0.2.1e-63_source + vdr-plugin-xine_0.9.4-7_source + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_source + vdradmin-am_3.6.9-2_source + vecmath_1.5.2-3_source + vectoroids_1.1.0-11_source + velocity_1.7-4_source + velocity-tools_2.0-2_source + velvet_1.2.03~nozlibcopy-1_source + vera_1.17-6_source + verbiste_0.1.34-1_source + verilator_3.833-1_source + veromix_0.18.3-1_source + verse_0.22.6_source + veusz_1.15-1_source + vflib3_3.6.14.dfsg-3_source + vftool_2.0alpha-4.1_source + vfu_4.10-1.1_source + vgabios_0.7a-3_source + vgrabbj_0.9.6-5.1_source + via_2.0.4-2_source + vidalia_0.2.20-2_source + videocut_0.2.0-11_source + videogen_0.32-5_source + videolan-doc_20070626-1_source + viewmol_2.4.1-18_source + viewpdf.app_1:0.2dfsg1-4_source + viewvc_1.1.5-1.4_source + vifm_0.4-1_source + vigor_0.016-19_source + viking_1.3-1_source + vile_9.8g-2_source + vilistextum_2.6.9-1.1_source + vim_2:7.3.547-7_source + vim-addon-manager_0.5.2_source + vim-latexsuite_20120125.768-2_source + vim-rails_4.5~20110829-1_source + vim-scripts_20121007_source + vim-syntax-gtk_20110314-1_source + vim-vimerl_1.4.1+git20120509.89111c7-2_source + vimhelp-de_7.3.101122-2_source + vimoutliner_0.3.4+pristine-9_source + vimperator_3.3-2_source + vinagre_3.4.2-2_source + vinetto_0.6.0~alpha-1_source + vino_3.4.2-1_source + viper_1.0.0-1_source + vips_7.28.5-1+deb7u1_source + viridian_1.2-3_source + virt-goodies_0.4-1_source + virt-manager_0.9.1-4_source + virt-top_1.0.7-1_source + virt-viewer_0.5.3-1_source + virt-what_1.12-1_source + virtaal_0.7.1-1_source + virtinst_0.600.1-3+deb7u1_source + virtualbox_4.1.18-dfsg-2+deb7u1_source + virtualbricks_0.6.352-1_source + virtualenvwrapper_3.4-2_source + virtuoso-opensource_6.1.4+dfsg1-7_source + viruskiller_1.03-1+dfsg1-1_source + visitors_0.7-9_source + visolate_2.1.6~svn8+dfsg1-1_source + vistrails_2.0.alpha~1-3_source + visual-regexp_3.1-3_source + visualboyadvance_1.8.0.dfsg-1_source + vitables_2.1-1_source + vite_1.2+svn1347-3_source + vkeybd_1:0.1.18d-2_source + vlan_1.9-3_source + vlc_2.0.3-5_source + vlock_2.2.2-3_source + vlogger_1.3-3.1_source + vm_8.1.0-1_source + vmfs-tools_0.2.5-1_source + vmm_0.6.0-2_source + vmmlib_1.0-2_source + vmpk_0.4.0-3_source + vnc4_4.1.1+X4.3.0-37.1_source + vncsnapshot_1.2a-5.1_source + vnstat_1.11-1_source + vo-aacenc_0.1.2-1_source + vo-amrwbenc_0.1.2-1_source + vobcopy_1.2.0-2_source + vocproc_0.2-3_source + vodovod_1.10-2_source + volpack_1.0b3-3_source + volti_0.2.3-5_source + volumecontrol.app_0.5-3.1_source + volumeicon_0.4.6-1_source + volview_3.4-3_source + voms_2.0.8-1_source + voms-api-java_2.0.8-2_source + voms-mysql-plugin_3.1.6-1_source + vorbis-tools_1.4.0-1_source + vorbisgain_0.37-2_source + vowpal-wabbit_6.1-1_source + voxbo_1.8.5~svn1246-1_source + vpb-driver_4.2.55-1_source + vpim_0.695-1_source + vpnc_0.5.3r512-2_source + vpnc-scripts_0.1~git20120602-2_source + vrb_0.5.1-5.1_source + vrfy_990522-8_source + vrms_1.16_source + vrrpd_1.0-2_source + vsdump_0.0.45-1_source + vsftpd_2.3.5-3_source + vstream-client_1.2-6.1_source + vte_1:0.28.2-5_source + vte3_1:0.32.2-1_source + vtgrab_0.1.8-3_source + vtk_5.8.0-13_source + vtkdata_5.8.0-1_source + vtkedge_0.2.0~20110819-2_source + vtprint_2.0.2-12_source + vttest_2.7+20120603-1_source + vtun_3.0.2-4_source + vtwm_5.4.7-2.2_source + vxl_1.14.0-18_source + vym_2.2.0-1_source + vzctl_3.0.30.2-4_source + vzdump_1.2.6-3_source + vzquota_3.0.12-3_source + w-scan_20120605-1_source + w2do_2.3.1-3_source + w3-dtd-mathml_2.0.0.0-5_source + w3af_1.0-rc3svn3489-1_source + w3c-dtd-xhtml_1.2-4_source + w3c-linkchecker_4.81-7_source + w3c-markup-validator_1.2+dfsg-6_source + w3c-sgml-lib_1.2-3_source + w3cam_0.7.2-6.2_source + w3m_0.5.3-8_source + w3m-el_1.4.4-11_source + w3m-el-snapshot_1.4.483+0.20120614-1_source + w9wm_0.4.2-7_source + wacomtablet_1.3.6-1_source + wader_0.5.10-1_source + wagon_1.0.0-2_source + wagon2_2.2-3+nmu1_source + wah-plugins_0.0.2-2_source + waili_19990723-20_source + wajig_2.7.3_source + wakeonlan_0.41-11_source + wammu_0.36-2_source + wapiti_1.1.6-4_source + wapua_0.06.1-2_source + warmux_1:11.04.1+repack-4_source + watchdog_5.12-1_source + wav2cdr_2.3.4-1_source + wavbreaker_0.11-1_source + wavemon_0.7.5-3_source + wavesurfer_1.8.8p3-1_source + wavpack_4.60.1-3_source + wayland_0.85.0-2_source + wayv_0.3-5_source + wbar_1.3.3+dfsg2-1_source + wbox_5-1_source + wbxml2_0.10.7-1_source + wcalc_2.4-1.1_source + wcd_5.2.1-2_source + wcslib_4.13.4-1_source + wcstools_3.8.5-1_source + wdg-html-validator_1.6.2-7_source + wdiff_1.1.2-1_source + wdm_1.28-13+deb7u1_source + weather-util_2.0-1_source + weathermap4rrd_1.1.999+1.2rc3-2_source + web2py_1.99.7-1_source + webalizer_2.23.05-1_source + webauth_4.1.1-2_source + webcamd_0.7.6-5_source + webcheck_1.10.4_source + webcit_8.14-dfsg-1_source + webcolors_1.3.1+hg~2c8ac6e0a03d-2_source + webdeveloper_1.1.9-5_source + webdruid_0.5.4-12.1_source + webfs_1.21+ds1-8.1_source + webgen0.4_0.4.7-8_source + webgen0.5_0.5.14+dfsg1-3_source + webhelpers_1.3-4_source + webissues_1.0.2-1_source + webissues-server_0.8.5-3_source + webkit_1.8.1-3.4_source + webkit-image_0.0.svn25399-3_source + webkit-sharp_0.3-6_source + webkit2pdf_0.2-4_source + webkitkde_1.3~git20120518.9a111005-3_source + webmagick_2.02-11_source + weboob_0.c-4.1_source + weborf_0.13-3_source + webpy_1:0.37+20120626-1_source + webrtc-audio-processing_0.1-2_source + webserver-package_0.3_source + websvn_2.3.3-1.1_source + webtest_1.3.4-1_source + weechat_0.3.8-1+deb7u1_source + weechat-scripts_20120603-1_source + weex_2.6.1-8_source + weirdx_1.0.32-6_source + weka_3.6.6-1_source + welcome2l_3.04-25_source + weplab_0.1.5-2_source + werken.xpath_0.9.4-14_source + wesnoth-1.10_1:1.10.3-3_source + west-chamber_20100405+svn20111107.r124-1_source + wfmath_0.3.12-3_source + wfo_0.1-2_source + wfrench_1.2.3-10_source + wget_1.13.4-3+deb7u1_source + whatsnewfm_0.7.2-1_source + whatweb_0.4.8~git20120606-1_source + when_1.1.29-1_source + whereami_0.3.34-0.3_source + whichman_2.4-7_source + whichwayisup_0.7.9-2_source + whiff_0.001-1_source + whitedune_0.30.10-1.1_source + whizzytex_1.3.2-1.1_source + whohas_0.29-0.3_source + whois_5.1.1~deb7u1_source + whowatch_1.6.0a-2_source + why_2.30+dfsg-5_source + whysynth_20090403-1.2_source + whyteboard_0.41.1-4_source + wicd_1.7.2.4-4_source + wicd-kde_0.3.0-2_source + wide-dhcpv6_20080615-11.1_source + widelands_1:17-3_source + widemargin_1.0.11-4_source + wifi-radar_2.0.s08+dfsg-1.1_source + wiggle_0.8+dfsg1-1_source + wiipdf_1.4-2_source + wiki2beamer_0.9.4-1_source + wikidiff2_0.0.1+svn109581-1_source + wikipedia2text_0.11-2_source + wikipediafs_0.4-4_source + wildmidi_0.2.3.4-2.1_source + wiliki_0.6.2-1_source + wily_0.13.41-7.2_source + wims-help_4.01-2_source + win32-loader_0.7.4.7+deb7u1_source + windowlab_1.40-1_source + windows-el_2.41-3_source + wine_1.4.1-4_source + wine-doc_1.0.0-1_source + wine-gecko-1.4_1.4+dfsg1-3_source + winff_1.4.2-3_source + wing_0.7-27.1_source + wings3d_1.4.1-4_source + wininfo_0.7-5_source + winpdb_1.4.8-2_source + winwrangler_0.2.4-3_source + wipe_0.22-1_source + wireless-regdb_2011.04.28-1_source + wireless-tools_30~pre9-8_source + wireshark_1.8.2-5wheezy9_source + wise_2.4.1-10_source + witalian_1.7.5_source + witty_3.2.1-2_source + wizznic_0.9.2-preview2+dfsg-1.1_source + wkhtmltopdf_0.9.9-4_source + wl_2.14.0-12_source + wl-beta_2.15.9+0.20120411-1_source + wm-icons_0.4.0-5.1_source + wm2_4+svn20090216-2_source + wmacpi_2.2~rc5-1_source + wmail_2.0-3_source + wmaker_0.95.3-2_source + wmaker-data_0.9~3-4_source + wmaloader_0.1-5.1_source + wmanager_0.2.1-11_source + wmauda_0.8-2_source + wmbatppc_2.5-5_source + wmbattery_2.41_source + wmbiff_0.4.27-2.1_source + wmbubble_1.46-3_source + wmbutton_0.6.1-3.1_source + wmcalclock_1.25-15_source + wmcdplay_1.0beta1-10_source + wmclock_1.0.14-1_source + wmclockmon_0.8.1-2_source + wmcoincoin_2.5.1e-1_source + wmcpu_1.4-4_source + wmcpuload_1.0.1-3.2_source + wmctrl_1.07-7_source + wmdate_0.7-4_source + wmdiskmon_0.0.2-2_source + wmdrawer_0.10.5-1.1_source + wmf_1.0.5-6_source + wmforkplop_0.9.3-2_source + wmfrog_0.2.0-4_source + wmhdplop_0.9.9-2.1_source + wmifinfo_0.09-5_source + wmifs_1.3b1-20_source + wmii_3.9.2+debian-4_source + wmii-doc_1:1-14_source + wmitime_0.3-11_source + wmix_3.1-5_source + wml_2.0.12ds1-3_source + wmlongrun_0.3.0-pre1-4.2_source + wmmatrix_0.2-12_source + wmmemload_0.1.6-7_source + wmmixer_1.7-1_source + wmmon_1.1+20120402-1_source + wmmoonclock_1.28-1_source + wmnd_0.4.16-1.1_source + wmnet_1.06-1_source + wmnut_0.64-1_source + wmpinboard_1.0-11_source + wmppp.app_1.3.0-8_source + wmpuzzle_0.5.1-1_source + wmrack_1.4-2_source + wmressel_0.8-5_source + wmshutdown_0.2-9_source + wmtemp_0.0.6-3.3_source + wmtime_1.0b2-10_source + wmtv_0.6.5-16.1_source + wmwave_0.4-9_source + wmweather_2.4.5-1_source + wmweather+_2.13-1_source + wmwork_0.2.5-4_source + wmxmms2_0.6-6_source + wmxres_1.2-10_source + wnn6-sdk_1.0.0-14.2_source + wokkel_0.7.0-1_source + wondershaper_1.1a-6_source + woof_20091227-2_source + wordgrinder_0.3.3-1_source + wordnet_1:3.0-29_source + wordplay_7.22-17_source + wordpress_3.6.1+dfsg-1~deb7u1_source + wordpress-openid_3.3.3-1_source + wordpress-shibboleth_1.4-2_source + wordpress-xrds-simple_1.0-1_source + worker_2.19.2-2_source + worklog_1.8-6_source + workrave_1.9.909+abc941eb70-1_source + wot_20110704-2_source + wotsap_0.7-2_source + wp2x_2.5-mhi-10.1_source + wpa_1.0-3_source + wpp_2.13.1.35-3_source + wput_0.6.2-3_source + wraplinux_1.7-7_source + wrapperfactory.app_0.1.0-4_source + wrapsrv_0.2-1_source + wreport_2.4-1_source + writer2latex_1.0.2-8_source + writerperfect_0.8.1-4_source + writetype_1.2.130+bzr139-1_source + wsdl2c_0.1-1_source + wsdl4j_1.6.2-4_source + wsil4j_1.0.0-1_source + wsjt_5.9.7.r383-1.6_source + wspanish_1.0.26_source + wss4j_1.5.8+svntag-2_source + wsynth-dssi_0.1.3-4_source + wtforms_1.0.1-1_source + wuzzah_0.53-2_source + wv_1.2.9-3_source + wv2_0.4.2.dfsg.2-1~deb7u1_source + wvdial_1.61-4.1_source + wvstreams_4.6.1-5_source + wwl_1.3+db-1.1_source + wwwconfig-common_0.2.2_source + wwwstat_2.0-7_source + wxgeometrie_0.133.1-1_source + wxglade_0.6.5-2_source + wxmaxima_12.04.0-1_source + wxsqlite3_3.0.0.1~dfsg0-2_source + wxsvg_2:1.1.8~dfsg0-2_source + wxwidgets2.8_2.8.12.1-12_source + wyg_1.1.3.0.debian.1-5_source + wyrd_1.4.4-1_source + wysihtml_0.13-5.1_source + wzdftpd_0.8.3-6.2_source + wzip_1.1.3_source + x-face-el_1.3.6.24-12_source + x-loader_1.5.1+git20110715+fca7cd2-2_source + x-tile_2.2.1-2_source + x11-apps_7.7~2_source + x11-session-utils_7.6+2_source + x11-utils_7.7~1_source + x11-xfs-utils_7.7~1_source + x11-xkb-utils_7.7~1_source + x11-xserver-utils_7.7~3_source + x11proto-bigreqs_1:1.1.2-1_source + x11proto-composite_1:0.4.2-2_source + x11proto-core_7.0.23-1_source + x11proto-damage_1:1.2.1-2_source + x11proto-dmx_1:2.3.1-2_source + x11proto-dri2_2.6-2_source + x11proto-fixes_1:5.0-2_source + x11proto-fonts_2.1.2-1_source + x11proto-gl_1.4.15-1_source + x11proto-input_2.2-1_source + x11proto-kb_1.0.6-2_source + x11proto-print_1.0.5-2_source + x11proto-randr_1.3.2-2_source + x11proto-record_1.14.2-1_source + x11proto-render_2:0.11.1-2_source + x11proto-resource_1.2.0-3_source + x11proto-scrnsaver_1.2.2-1_source + x11proto-video_2.3.1-2_source + x11proto-xcmisc_1.2.2-1_source + x11proto-xext_7.2.1-1_source + x11proto-xf86bigfont_1.2.0-3_source + x11proto-xf86dga_2.1-3_source + x11proto-xf86dri_2.1.1-2_source + x11proto-xf86vidmode_2.3.1-2_source + x11proto-xinerama_1.2.1-2_source + x11vnc_0.9.13-1_source + x2_1.1.0-1_source + x264_2:0.123.2189+git35cf912-1_source + x2goclient_3.99.2.1-5_source + x2vnc_1.7.2-5_source + x2x_1.27.svn.20060501-4_source + x52pro_0.1.1-2.1_source + x86info_1.30-2_source + xa_2.3.5-1_source + xabacus_7.6.8-3_source + xacobeo_0.13-2_source + xalan_1.10-6_source + xaos_3.5+ds1-1_source + xapian-bindings_1.2.12-2_source + xapian-core_1.2.12-2_source + xapian-omega_1.2.12-1_source + xappy_0.5-5_source + xarchiver_1:0.5.2+20090319+dfsg-4.1_source + xarclock_1.0-13_source + xauth_1:1.0.7-1_source + xautolock_1:2.2-3_source + xautomation_1.03-1.1_source + xavante_2.2.1-1_source + xaw3d_1.5+E-18.2_source + xawtv_3.102-3_source + xbacklight_1.1.2-1_source + xbae_4.60.4-3_source + xball_3.0.1-1.1_source + xbattbar_1.4.3-1_source + xbattle_5.4.1-15_source + xbill_2.1-8_source + xbindkeys_1.8.5-1_source + xbindkeys-config_0.1.3-2_source + xbitmaps_1.1.1-1_source + xblast-tnt_2.10.4-3_source + xblast-tnt-images_20050106-2_source + xblast-tnt-levels_20050106-2_source + xblast-tnt-models_20050106-3_source + xblast-tnt-musics_20050106-2_source + xblast-tnt-sounds_20040429-2_source + xbmc_2:11.0~git20120510.82388d5-1_source + xboard_4.6.2-1_source + xboing_2.4-31_source + xbomb_2.2a-1_source + xboxdrv_0.8.4-1_source + xbs_0-8_source + xbubble_0.5.11.2-3.2_source + xbuffy_3.3.bl.3.dfsg-8_source + xca_0.9.3-1_source + xcache_2.0.0-4_source + xcal_4.1-19_source + xcalib_0.8.dfsg1-2_source + xcb_2.4-4.3_source + xcb-proto_1.7.1-1_source + xcb-util_0.3.8-2_source + xcb-util-image_0.3.9-1_source + xcb-util-keysyms_0.3.9-1_source + xcb-util-renderutil_0.3.8-1.1_source + xcb-util-wm_0.3.9-2_source + xcfa_4.3.1-1_source + xcftools_1.0.7-4_source + xchain_1.0.1-6_source + xchat_2.8.8-7.1_source + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2_source + xchat-guile_0.3-2_source + xchat-xsys_2.2.0-2_source + xchm_2:1.20-1_source + xcircuit_3.7.40.dfsg-1_source + xcite_1.60-1_source + xclip_0.12+svn84-2_source + xcolmix_1.07-10_source + xcolors_1.5a-7_source + xcolorsel_1.1a-17_source + xcompmgr_1.1.5-1_source + xcowsay_1.2-1_source + xcp-eliloader_0.1-4_source + xcp-storage-managers_0.1.1-3_source + xcp-vncterm_0.1-2_source + xcrysden_1.5.53-1_source + xcursor-themes_1.0.3-1_source + xd_3.22.04-1_source + xdaliclock_2.36+debian-1_source + xdb_1.2.0-7.2_source + xdeb_0.6.6_source + xdebug_2.2.1-2_source + xdelta_1.1.3-9_source + xdelta3_3.0.0.dfsg-1_source + xdemineur_2.1.1-17_source + xdemorse_1.3-6_source + xdesktopwaves_1.3-3_source + xdffileio_0.3-1_source + xdg-user-dirs_0.14-1_source + xdg-user-dirs-gtk_0.9-1_source + xdg-utils_1.1.0~rc1+git20111210-6_source + xdiskusage_1.48-10.1_source + xdm_1:1.1.11-1_source + xdmf_2.1.dfsg.1-5_source + xdms_1.3.2-4_source + xdot_0.4-2_source + xdotool_1:2.20100701.2961-3+deb7u3_source + xdrawchem_2.0-2_source + xdu_3.0-18_source + xdvik-ja_22.84.16-j1.40+t1lib-1_source + xen_4.1.4-3+deb7u1_source + xen-api_1.3.2-15_source + xen-api-libs_0.5.2-3_source + xen-tools_4.3.1-1_source + xenomai_2.6.0-2_source + xenwatch_0.5.4-3_source + xerces-c_3.1.1-3_source + xerces-c2_2.8.0+deb1-3_source + xevil_2.02r2-10_source + xf86-input-mtrack_0.2.0-3_source + xf86-input-multitouch_1.0~rc2+git20110312-2_source + xf86-input-wacom_0.15.0+20120515-2_source + xf86-video-glamo_0.0.0+20100630.git16af3c00-3.1_source + xf86-video-msm_1.0.1+git20100122.5f7df591-3_source + xf86-video-omapfb_0.1.1.1-1_source + xfaces_3.3-28_source + xfburn_0.4.3-5_source + xfce4_4.8.0.3_source + xfce4-appfinder_4.8.0-3_source + xfce4-artwork_0.1.1a~git+20110420-1_source + xfce4-battery-plugin_1.0.5-1_source + xfce4-cellmodem-plugin_0.0.5-3_source + xfce4-clipman-plugin_2:1.2.3-1_source + xfce4-cpufreq-plugin_1.0.0-4_source + xfce4-cpugraph-plugin_1.0.3-1_source + xfce4-datetime-plugin_0.6.1-3_source + xfce4-dev-tools_4.10.0-2_source + xfce4-dict_0.6.0-5_source + xfce4-diskperf-plugin_2.5.4-1_source + xfce4-fsguard-plugin_1.0.1-1_source + xfce4-genmon-plugin_3.4.0-1_source + xfce4-goodies_4.8.2_source + xfce4-hdaps_0.0.9-1_source + xfce4-indicator-plugin_0.5.0-1_source + xfce4-linelight-plugin_0.1.7-2_source + xfce4-mailwatch-plugin_1.1.0-5_source + xfce4-messenger-plugin_0.1.0-5_source + xfce4-mixer_4.8.0-3_source + xfce4-mount-plugin_0.6.4-1_source + xfce4-mpc-plugin_0.4.4-1_source + xfce4-netload-plugin_1.1.0-1_source + xfce4-notes-plugin_1.7.7-2_source + xfce4-notifyd_0.2.2-2_source + xfce4-panel_4.8.6-4_source + xfce4-places-plugin_1.3.0-1_source + xfce4-power-manager_1.0.11-2_source + xfce4-quicklauncher-plugin_1.9.4-9_source + xfce4-radio-plugin_0.5.1-1_source + xfce4-screenshooter_1.8.1-1_source + xfce4-sensors-plugin_1.2.5-1_source + xfce4-session_4.8.3-3_source + xfce4-settings_4.8.3-2_source + xfce4-smartbookmark-plugin_0.4.4-1_source + xfce4-systemload-plugin_1.1.1-1_source + xfce4-taskmanager_1.0.0-2_source + xfce4-terminal_0.4.8-1_source + xfce4-timer-plugin_0.6.3-1_source + xfce4-utils_4.8.3-2_source + xfce4-verve-plugin_1.0.0-1_source + xfce4-volumed_0.1.13-3_source + xfce4-wavelan-plugin_0.5.11-1_source + xfce4-weather-plugin_0.7.4-5_source + xfce4-wmdock-plugin_0.3.4-1_source + xfce4-xkb-plugin_0.5.4.3-1_source + xfconf_4.8.1-1_source + xfdesktop4_4.8.3-2_source + xfe_1.32.5-2_source + xfig_1:3.2.5.b-3_source + xfingerd_0.6-5.1_source + xfireworks_1.3-8_source + xfishtank_2.2-26_source + xflip_1.01-25_source + xflr5_6.07+svn513-1_source + xfm_1.5.4-3_source + xfmpc_0.2.2-1_source + xfoil_6.97.dfsg-5_source + xfonts-100dpi_1:1.0.3_source + xfonts-75dpi_1:1.0.3_source + xfonts-a12k12_1-11_source + xfonts-ayu_1.7+0a+0debian1-2.1_source + xfonts-baekmuk_2.2-5_source + xfonts-base_1:1.0.3_source + xfonts-biznet_3.0.0-22_source + xfonts-bolkhov_1.1.20001007-6_source + xfonts-cronyx_2.3.8-6_source + xfonts-cyrillic_1:1.0.3_source + xfonts-efont-unicode_0.4.2-5_source + xfonts-encodings_1:1.0.4-1_source + xfonts-jisx0213_0+20040511-4_source + xfonts-jmk_3.0-19_source + xfonts-kaname_1.1-9.1_source + xfonts-kappa20_0.396-3_source + xfonts-marumoji_0.2-9_source + xfonts-mathml_6_source + xfonts-mona_2.90-7_source + xfonts-mplus_2.2.4-1_source + xfonts-nexus_0.0.2-16_source + xfonts-scalable_1:1.0.3-1_source + xfonts-shinonome_5-1.1_source + xfonts-terminus_4.35-1_source + xfonts-traditional_1.6_source + xfonts-utils_1:7.7~1_source + xfonts-wqy_0.9.9-5_source + xfprint4_4.6.1-3_source + xfpt_0.09-1_source + xfrisk_1.2-3_source + xfs_1:1.0.8-7_source + xfsdump_3.0.6_source + xfsprogs_3.1.7_source + xfstt_1.9-2_source + xfswitch-plugin_0.0.1-3_source + xft_2.3.1-1_source + xfwm4_4.8.3-2_source + xfwm4-themes_4.6.0-3_source + xgalaga_2.1.1.0-4_source + xgalaga++_0.8.3-1_source + xgammon_0.99.1128-3_source + xgraph_12.1-16_source + xgridfit_2.2a-2_source + xhtmlrenderer_0.0~R8-1_source + xicc_0.2-3_source + xindy_2.4-1.1_source + xine-lib_1.1.21-1_source + xine-lib-1.2_1.2.2-4_source + xine-plugin_1.0.2-4_source + xine-ui_0.99.7-1_source + xinetd_1:2.3.14-7.1+deb7u1_source + xinit_1.3.2-1_source + xinput_1.6.0-1_source + xinv3d_1.3.6-6_source + xiphos_3.1.5+dfsg-1_source + xipmsg_0.8088-2.1_source + xiterm+thai_1.10-2_source + xjadeo_0.6.4-1_source + xjdic_24-8_source + xjig_2.4-13_source + xjobs_20110730-1_source + xjokes_1.0-13_source + xjump_2.7.5-6.1_source + xkbind_2010.05.20-1_source + xkbset_0.5-5.1_source + xkeyboard-config_2.5.1-3_source + xkeycaps_2.47-4_source + xl2tpd_1.3.1+dfsg-1_source + xlassie_1.8-21_source + xlbiff_4.1-7_source + xless_1.7-14.1_source + xletters_1.1.1-4.1_source + xlhtml_0.5.1-6_source + xli_1.17.0+20061110-4_source + xloadimage_4.1-19_source + xlog_2.0.5-2_source + xlwt_0.7.4+debian1-1_source + xmacro_0.3pre-20000911-6_source + xmahjongg_3.7-3_source + xmail_1.27-1.1_source + xmakemol_5.16-6_source + xmanpages-ja_4.1.0.20011224-6_source + xmbmon_2.05-6_source + xmds_1.6.6-7_source + xmds-doc_0~svn.1884-3.1_source + xmedcon_0.10.7-1_source + xmem_1.20-27.2_source + xmhtml_1.1.7-18_source + xmille_2.0-13_source + xmix_2.1-6_source + xml-commons-external_1.4.01-2_source + xml-core_0.13+nmu2_source + xml-crimson_1:1.1.3-11_source + xml-light_2.2-15_source + xml-security-c_1.6.1-5+deb7u2_source + xml2_0.4-3.1_source + xmlbeans_2.5.0-4_source + xmlbeans-maven-plugin_2.3.3-3_source + xmlcopyeditor_1.2.0.6-2_source + xmldiff_0.6.10-2_source + xmlextras_20060529-1_source + xmlgraphics-commons_1.4.dfsg-4_source + xmlindent_0.2.17-2_source + xmlm_1.1.0-1_source + xmlmarshaller_0.9.7+svn39722-2_source + xmlroff_0.6.2-1.1_source + xmlrpc-c_1.16.33-3.2_source + xmlrpc-epi_0.54.2-1_source + xmlrpc-light_0.6.1-3_source + xmlsec1_1.2.18-2_source + xmlstarlet_1.3.1-3_source + xmltex_1.9.debian.1-3_source + xmlto_0.0.25-2_source + xmltoman_0.4-3_source + xmltooling_1.4.2-5_source + xmltv_0.5.63-2_source + xmlunit_1.3-2_source + xmms2_0.8+dfsg-4_source + xmms2-scrobbler_0.4.0-3_source + xmms2tray_0.5.1-2_source + xmobar_0.14-4_source + xmonad_0.10-4_source + xmonad-contrib_0.10-4~deb7u1_source + xmorph_1:20090926_source + xmotd_1.17.3b-5_source + xmoto_0.5.10+dfsg-1_source + xmount_0.5.0-2_source + xmountains_2.9-2_source + xmp_3.4.0-1.1_source + xmpi_2.2.3b8-13_source + xnbd_0.1.0-pre-hg20-e75b93a47722-3_source + xnec2c_1:1.4-1_source + xnecview_1.35-7.1_source + xnee_3.13-1_source + xnetcardconfig_0.2.1-1_source + xneur_0.15.0-1.1_source + xom_1.2.1-3_source + xonix_1.4-29_source + xoo_0.8-1.1_source + xorg_1:7.7+3~deb7u1_source + xorg-docs_1:1.6-1_source + xorg-server_2:1.12.4-6+deb7u2_source + xorg-sgml-doctools_1:1.10-1_source + xorp_1.8.5-1.1_source + xoscope_2.0-3.2_source + xosd_2.2.14-2_source + xosview_1.9.3-3_source + xotcl_1.6.7-2_source + xournal_0.4.6~pre20110721-1_source + xpa_2.1.14-2_source + xpad_4.1-1_source + xpaint_2.9.1.4-3_source + xpat2_1.07-18_source + xpdf_3.03-10_source + xpenguins_2.2-8_source + xphoon_20000613+0-1_source + xpilot-extra_4.7.2_source + xpilot-ng_1:4.7.3-1.4_source + xplanet_1.2.1-4.1_source + xplc_0.3.13-3_source + xplot_1.19-9_source + xplot-xplot.org_0.90.7.1-2_source + xpn_1.2.6-5_source + xpp_1.5-cvs20050828-1.2_source + xppaut_6.11b+1.dfsg-1_source + xpra_0.3.11+dfsg-1_source + xprintidle_0.2-5_source + xprobe_0.3-1.1_source + xpuzzles_7.6.3-1_source + xpyb_1.3.1-1_source + xqf_1.0.5-2_source + xqilla_2.3.0-1_source + xracer_0.96.9.1-6_source + xrdp_0.5.0-2_source + xresprobe_0.4.23debian1-1_source + xrestop_0.4-7_source + xringd_1.20-25.2_source + xrootconsole_1:0.6-2_source + xrsh_5.92-8_source + xsane_0.998-3_source + xscavenger_1.4.4-8_source + xscorch_0.2.1-1_source + xscreensaver_5.15-3_source + xsd_3.3.0.1-1.3_source + xsddiagram_0.10-1_source + xsel_1.2.0-1_source + xsensors_0.70-2_source + xserver-xorg-input-acecad_1:1.5.0-1_source + xserver-xorg-input-aiptek_1:1.4.1-1_source + xserver-xorg-input-elographics_1:1.4.1-1_source + xserver-xorg-input-evdev_1:2.7.0-1_source + xserver-xorg-input-joystick_1:1.6.1-1_source + xserver-xorg-input-keyboard_1:1.6.1-1_source + xserver-xorg-input-mouse_1:1.7.2-3_source + xserver-xorg-input-mutouch_1:1.3.0-1_source + xserver-xorg-input-synaptics_1.6.2-2_source + xserver-xorg-input-vmmouse_1:12.9.0-1_source + xserver-xorg-input-void_1:1.4.0-1_source + xserver-xorg-video-apm_1:1.2.3-3_source + xserver-xorg-video-ark_1:0.7.4-1_source + xserver-xorg-video-ati_1:6.14.4-8_source + xserver-xorg-video-chips_1:1.2.4-2_source + xserver-xorg-video-cirrus_1:1.4.0-2_source + xserver-xorg-video-dummy_1:0.3.5-2_source + xserver-xorg-video-fbdev_1:0.4.2-4_source + xserver-xorg-video-geode_2.11.13-3_source + xserver-xorg-video-glide_1.2.0-1_source + xserver-xorg-video-glint_1:1.2.7-1_source + xserver-xorg-video-i128_1:1.3.5-1_source + xserver-xorg-video-i740_1:1.3.2-4_source + xserver-xorg-video-intel_2:2.19.0-6_source + xserver-xorg-video-mach64_6.9.1-2_source + xserver-xorg-video-mga_1:1.5.0-3_source + xserver-xorg-video-modesetting_0.3.0-1_source + xserver-xorg-video-neomagic_1:1.2.6-1_source + xserver-xorg-video-newport_1:0.2.3-2_source + xserver-xorg-video-nouveau_1:1.0.1-5_source + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_source + xserver-xorg-video-qxl_0.0.17-2_source + xserver-xorg-video-r128_6.8.2-1_source + xserver-xorg-video-rendition_1:4.2.4-3_source + xserver-xorg-video-s3_1:0.6.3-5_source + xserver-xorg-video-s3virge_1:1.10.4-5_source + xserver-xorg-video-savage_1:2.3.4-1_source + xserver-xorg-video-siliconmotion_1:1.7.6-1_source + xserver-xorg-video-sis_1:0.10.4-1_source + xserver-xorg-video-sisusb_1:0.9.4-3_source + xserver-xorg-video-suncg14_1:1.1.1-5_source + xserver-xorg-video-suncg3_1:1.1.1-5_source + xserver-xorg-video-suncg6_1:1.1.1-5_source + xserver-xorg-video-sunffb_1:1.2.1-4_source + xserver-xorg-video-sunleo_1:1.2.0-5_source + xserver-xorg-video-suntcx_1:1.1.1-5_source + xserver-xorg-video-tdfx_1:1.4.4-1_source + xserver-xorg-video-tga_1:1.2.1-4_source + xserver-xorg-video-trident_1:1.3.5-1_source + xserver-xorg-video-tseng_1:1.2.4-3_source + xserver-xorg-video-vesa_1:2.3.1-1_source + xserver-xorg-video-vmware_1:12.0.2-1_source + xserver-xorg-video-voodoo_1:1.2.4-2_source + xsettings-kde_0.9-2_source + xshisen_1:1.51-3.3_source + xskat_4.0-5_source + xslthl_2.0.2-4_source + xsmc-calc_1.0.0-6.1_source + xsok_1.02-17_source + xsol_0.31-9_source + xsoldier_1:1.8-2_source + xsp_2.10-2.4_source + xstarfish_1.1-11_source + xstow_1.0.0-2_source + xstr_0.2.1-21_source + xstrp4_1.8-3_source + xsunpinyin_2.0.3-4_source + xsynth-dssi_0.9.4-2_source + xsysinfo_1.7-9_source + xsystem35_1.7.3-pre5-5_source + xtables-addons_1.42-2_source + xtail_2.1-5_source + xtalk_1.3-15.1_source + xteddy_2.2-2_source + xtel_3.3.0-14_source + xtell_2.10.7_source + xterm_278-4_source + xtermcontrol_2.10-1_source + xtermset_0.5.2-5_source + xtide_2.11-1_source + xtide-coastline_20020202-1_source + xtide-data_20100529-1_source + xtitle_1.0.2-4_source + xtrace_1.3.1-1_source + xtrans_1.2.7-1_source + xtrkcad_1:4.0.2-2_source + xtrlock_2.2_source + xtron_1.1a-14_source + xttitle_1.0-5_source + xtux_0.2.030306-12_source + xtv_1.1-12_source + xul-ext-monkeysphere_0.6.1-1_source + xul-ext-zotero_3.0.7-1_source + xutils-dev_1:7.7~1_source + xuxen-eu-spell_0.4.20081029-6_source + xvidcore_2:1.3.2-9_source + xvier_1.0-7.5_source + xview_3.2p1.4-28.1_source + xvkbd_3.0-1_source + xvt_2.1-20.1_source + xwatch_2.11-15_source + xwax_0.9-2_source + xwelltris_1.0.1-14_source + xwit_3.4-14_source + xword_2.0.0~rc2-1_source + xwpe_1.5.30a-2.1_source + xwrits_2.21-6.1_source + xxgdb_1.12-17_source + xxkb_1.11-2.1_source + xxxterm_1:1.11.3-1_source + xye_0.12.1+dfsg-4_source + xylib_0.8-1_source + xymon_4.3.0~beta2.dfsg-9.1_source + xyscan_3.31-3_source + xz-java_1.0-2_source + xz-utils_5.1.1alpha+20120614-2_source + xzgv_0.9+svn40-1_source + xzip_1:1.8.2-3_source + xzoom_0.3-23_source + yabause_0.9.11.1-1_source + yaboot_1.3.16-4_source + yaboot-installer_1.1.26_source + yacas_1.3.2-1_source + yacpi_3.0-2_source + yade_0.80.1-2_source + yafaray_0.1.2+really0.1.2~beta5-2_source + yafaray-exporter_0.1.2+really0.1.2~beta5-1_source + yafc_1.1.3-2_source + yagf_0.9.1-3_source + yagiuda_1.19-8_source + yagtd_0.3.4-1_source + yahoo2mbox_0.24-1_source + yahtzeesharp_1.1-5_source + yajl_2.0.4-2_source + yakuake_2.9.8-1_source + yamdi_1.4-2_source + yaml-cpp_0.3.0-1_source + yaml-mode_0.0.7-1_source + yample_0.30-2_source + yap_5.1.3-6_source + yapet_0.8~pre2-2_source + yapps2_2.1.1-17.2_source + yappy_1.9.4-1_source + yapra_0.1.2-7_source + yard_0.8.2.1-2_source + yardradius_1.1.2-4_source + yaret_2.1.0-5_source + yarssr_0.2.2-8_source + yasat_526-1_source + yash_2.30-2_source + yaskkserv_0.5.2-3_source + yasm_1.1.0-1_source + yasnippet_0.6.1c-1_source + yasr_0.6.9-3_source + yate_4.1.0-1~dfsg-3_source + yatex_1.76+dfsg1-2_source + yatm_0.6-1_source + yauap_0.2.4-3_source + yaws_1.94-1_source + yaz_4.2.30-2_source + yc-el_5.0.0-1_source + yeahconsole_0.3.4-2.1_source + yecht_0.0.2-2_source + yelp_3.4.2-1_source + yelp-tools_3.4.1-1_source + yelp-xsl_3.4.2-1_source + yersinia_0.7.1-1.1_source + yforth_0.1beta-23_source + ygl_4.2e-4_source + ygraph_0.16~cvs20090218-1.1_source + yics_0.1.2-3_source + yiyantang_0.7.0-3.1_source + ykclient_2.6-1_source + yocto-reader_0.9.4_source + yodl_3.00.0-6_source + yojson_1.0.3-1_source + yokadi_0.13.0-2_source + yorick_2.2.02+dfsg-6_source + yorick-av_0.0.1-2_source + yorick-cubeview_1.6-2_source + yorick-curses_0.1-6_source + yorick-gl_1.1+cvs20070922+dfsg-6_source + yorick-hdf5_0.8.0-4_source + yorick-imutil_0.5.7-3_source + yorick-mira_0.9.10+dfsg-1_source + yorick-ml4_0.6.0-3_source + yorick-mpeg_0.1-2_source + yorick-optimpack_1.3.2+dfsg-1_source + yorick-soy_1.4.0-3_source + yorick-spydr_0.8.2-3_source + yorick-yao_4.9.1-2_source + yorick-yeti_6.3.2-3_source + yorick-yutils_1.5.2-1_source + yorick-z_1.2.0+cvs20080115-5_source + yoshimi_0.060.12-2_source + yp-svipc_0.14-2_source + ytalk_3.3.0-5_source + ytree_1.94-1.1_source + yubico-pam_2.12-1_source + yubikey-personalization_1.7.0-1_source + yubikey-personalization-gui_3.0.6-1_source + yubikey-server-c_0.5-1_source + yubiserver_0.2-2_source + yudit_2.8.1-4_source + yue-sounds-fso_20081031-2_source + yui_2.9.0.dfsg.0.1-0.1_source + yui-builder_1.0.0b1+dfsg-1_source + yui-compressor_2.4.7-1_source + yui3_3.5.1-1_source + yum_3.2.25-2_source + yum-metadata-parser_1.1.2-1_source + yydebug_1.1.0-2_source + z80asm_1.8-1_source + z80dasm_1.1.3-1_source + z80ex_1.1.19-3_source + z8530-utils2_3.0-1-6.1_source + z88_13.0.0+dfsg2-3_source + z88dk_1.8.ds1-10_source + zanshin_0.2.1-1_source + zapping_0.10~cvs6-8_source + zarafa-drag-n-drop_1.2-1_source + zatacka_0.1.8-2_source + zathura_0.1.2-4_source + zathura-extras_0.1-1_source + zaz_1.0.0~dfsg1-1_source + zbar_0.10+doc-8_source + zc.buildout_1.5.2-1_source + zc.lockfile_1.0.0-6_source + zconfig_2.8.0-1_source + zdaemon_2.0.7-1_source + zec_0.12-2_source + zeitgeist_0.9.0.1-1_source + zeitgeist-datahub_0.8.2-1_source + zeitgeist-sharp_0.8.0.0-4_source + zelig_3.5.5-1_source + zemberek_2.1.1-8.1_source + zemberek-ooo_1.0~rc2-10.4_source + zemberek-server_0.7.1-12.1_source + zendframework_1.11.13-1.1_source + zenity_3.4.0-2_source + zephyr_3.0.2-2_source + zeroc-ice_3.4.2-8.2_source + zeroc-icee_1.2.0-6.1_source + zeroc-icee-java_1.2.0-3_source + zeroc-icee-translators_1.2.0-6_source + zerofree_1.0.2-1_source + zeroinstall-injector_1.9-1_source + zeromq_2.2.0+dfsg-2_source + zeya_0.6-1_source + zfec_1.4.5-2_source + zfs-fuse_0.7.0-8_source + zfsutils_9.0-3_source + zgv_5.9-4_source + zh-autoconvert_0.3.16-3_source + zhcon_1:0.2.6-10_source + zhpy_1.7.3.1-1_source + zile_2.3.21-1_source + zim_0.56-1_source + zimpl_3.2.0+dfsg-2_source + zine_0.2~20100905-1_source + zinnia_0.06-1_source + zip_3.0-6_source + zipios++_0.1.5.9+cvs.2007.04.28-5.1_source + zipl-installer_0.0.22_source + zipper.app_1.3-2.1_source + ziproxy_3.2.0-2_source + zita-ajbridge_0.2.2-1_source + zita-alsa-pcmi_0.2.0-1_source + zita-at1_0.2.3-2_source + zita-convolver_3.1.0-2_source + zita-lrx_0.1.0-1_source + zita-resampler_1.1.0-3_source + zita-rev1_0.2.1-2_source + zivot_20013101-3_source + zlib_1:1.2.7.dfsg-13_source + zlibc_0.9k-4.1_source + zmakebas_1.2-1.1_source + znc_0.206-2_source + zodb_1:3.9.7-2_source + zoem_11-166-1_source + zomg_0.5.14-2_source + zonecheck_3.0.3-2_source + zoneminder_1.25.0-4_source + zoo_2.10-27_source + zookeeper_3.3.5+dfsg1-2_source + zoomer_0.1-1_source + zope-common_0.5.52_source + zope-debhelper_0.3.15_source + zope-maildrophost_2.3-1_source + zope-mysqlda_3.1.1-1_source + zope-quotafolder_1:0.1.1-1_source + zope-replacesupport_1.0.3-6_source + zope.authentication_3.7.1-3_source + zope.browser_1.3-2_source + zope.cachedescriptors_3.5.1-2_source + zope.component_3.10.0-3_source + zope.configuration_3.7.4-2_source + zope.contenttype_3.5.3-2_source + zope.copy_3.5.0-6_source + zope.deprecation_4.0.0-1_source + zope.dottedname_3.4.6-5_source + zope.event_3.5.1-1_source + zope.exceptions_3.6.1-3_source + zope.fixers_1.0-1_source + zope.hookable_3.4.1-8_source + zope.i18n_3.7.4-2_source + zope.i18nmessageid_3.5.3-2_source + zope.interface_3.6.1-3_source + zope.location_3.9.1-2_source + zope.proxy_3.6.1-2_source + zope.publisher_3.12.6-2_source + zope.schema_3.7.1-2_source + zope.security_3.8.3-2_source + zope.sendmail_3.7.4-2_source + zope.sqlalchemy_0.6.1-2_source + zope.testbrowser_4.0.2-1_source + zope.testing_3.10.2-1_source + zope.testrunner_4.0.3-3_source + zope.traversing_3.13.2-2_source + zope2.12_2.12.26-1_source + zorp_3.9.5-4_source + zorroutils_0.04+20021014-2_source + zp_1.0-1_source + zpaq_1.10-1_source + zpb-ttf_0.7-2_source + zpspell_0.4.3-4.1_source + zsh_4.3.17-1_source + zsh-beta_4.3.17-dev-0+20120621-1_source + zshdb_0.05+git20101031-2_source + zsi_2.1~a1-3_source + zsnes_1.510+bz2-5_source + zssh_1.5c.debian.1-3.1_source + zsync_0.6.2-1_source + zthreads_2.3.2-7_source + zutils_0.9-6_source + zvbi_0.2.33-6_source + zyn_1+git.20100609+dfsg0-2_source + zynaddsubfx_2.4.0-2_source + zynjacku_6-4_source + zziplib_0.13.56-1.1_source + zzuf_0.13.svn20100215-4_source diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot11Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot11Test_gold new file mode 100644 index 00000000..56a4610f --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot11Test_gold @@ -0,0 +1,15 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports +and result would be saved as new snapshot snap3. +Loading packages (59249)... +Building indexes... +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[+] libestr0_0.1.9-1~bpo70+1_amd64 added +[+] init-system-helpers_1.11~bpo70.1_all added +[+] rsyslog_7.4.4-1~bpo70+1_i386 added +[+] libestr0_0.1.9-1~bpo70+1_i386 added + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot11Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot11Test_snapshot_show new file mode 100644 index 00000000..5f482332 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot11Test_snapshot_show @@ -0,0 +1,56149 @@ +Name: snap3 +Created At: 2014-03-05 16:13:31 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'rsyslog (>= 7.4.4)' +Number of packages: 56144 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libestr0_0.1.9-1~bpo70+1_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_5.8.11-3_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libestr0_0.1.9-1~bpo70+1_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_5.8.11-3_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot1Test_gold new file mode 100644 index 00000000..a6714a07 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot1Test_gold @@ -0,0 +1,14 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +and result would be saved as new snapshot snap3. +Loading packages (56800)... +Building indexes... +[+] mame_0.146-5_amd64 added +[+] unrar_1:4.1.4-1_amd64 added +[+] mame_0.146-5_i386 added +[+] unrar_1:4.1.4-1_i386 added + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot1Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot1Test_snapshot_show new file mode 100644 index 00000000..0b15bcaf --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot1Test_snapshot_show @@ -0,0 +1,56148 @@ +Name: snap3 +Created At: 2014-02-27 13:04:22 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'mame unrar' +Number of packages: 56143 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + mame_0.146-5_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_5.8.11-3_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar_1:4.1.4-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + mame_0.146-5_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_5.8.11-3_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar_1:4.1.4-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot2Test_gold new file mode 100644 index 00000000..8d9d579f --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot2Test_gold @@ -0,0 +1,19 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports +and result would be saved as new snapshot snap3. +Loading packages (59249)... +Building indexes... +[-] rsyslog_5.8.11-3_amd64 removed +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[-] libestr0_0.1.1-2_amd64 removed +[+] libestr0_0.1.9-1~bpo70+1_amd64 added +[+] init-system-helpers_1.11~bpo70.1_all added +[-] rsyslog_5.8.11-3_i386 removed +[+] rsyslog_7.4.4-1~bpo70+1_i386 added +[-] libestr0_0.1.1-2_i386 removed +[+] libestr0_0.1.9-1~bpo70+1_i386 added + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot2Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot2Test_snapshot_show new file mode 100644 index 00000000..ad85e241 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot2Test_snapshot_show @@ -0,0 +1,56145 @@ +Name: snap3 +Created At: 2014-02-27 13:05:12 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'rsyslog (>= 7.4.4)' +Number of packages: 56140 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.9-1~bpo70+1_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.9-1~bpo70+1_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot3Test_gold new file mode 100644 index 00000000..c0cf0c65 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot3Test_gold @@ -0,0 +1,14 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports +and result would be saved as new snapshot snap3. +Loading packages (59249)... +Building indexes... +[-] rsyslog_5.8.11-3_amd64 removed +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[-] rsyslog_5.8.11-3_i386 removed +[+] rsyslog_7.4.4-1~bpo70+1_i386 added + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot3Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot3Test_snapshot_show new file mode 100644 index 00000000..e90ec0c9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot3Test_snapshot_show @@ -0,0 +1,56144 @@ +Name: snap3 +Created At: 2014-02-27 13:05:45 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'rsyslog (>= 7.4.4)' +Number of packages: 56139 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot4Test_gold new file mode 100644 index 00000000..81a8c4b0 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot4Test_gold @@ -0,0 +1,18 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports +and result would be saved as new snapshot snap3. +Loading packages (59249)... +Building indexes... +[-] rsyslog_5.8.11-3_amd64 removed +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[-] libestr0_0.1.1-2_amd64 removed +[+] libestr0_0.1.9-1~bpo70+1_amd64 added +[+] init-system-helpers_1.11~bpo70.1_all added +[-] rsyslog_5.8.11-3_i386 removed +[+] rsyslog_7.4.4-1~bpo70+1_i386 added +[-] libestr0_0.1.1-2_i386 removed +[+] libestr0_0.1.9-1~bpo70+1_i386 added + +Not creating snapshot, as dry run was requested. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot4Test_snapshot_list b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot4Test_snapshot_list new file mode 100644 index 00000000..ac19fcd1 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot4Test_snapshot_list @@ -0,0 +1,5 @@ +List of snapshots: + * [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy + * [snap2]: Snapshot from mirror [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports + +To get more information about snapshot, run `aptly snapshot show `. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot5Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot5Test_gold new file mode 100644 index 00000000..06d182f0 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot5Test_gold @@ -0,0 +1 @@ +ERROR: unable to pull: snapshot with name snap-no not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot6Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot6Test_gold new file mode 100644 index 00000000..06d182f0 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot6Test_gold @@ -0,0 +1 @@ +ERROR: unable to pull: snapshot with name snap-no not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot7Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot7Test_gold new file mode 100644 index 00000000..57c2999d --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot7Test_gold @@ -0,0 +1,17 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports +and result would be saved as new snapshot snap1. +Loading packages (59249)... +Building indexes... +[-] rsyslog_5.8.11-3_amd64 removed +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[-] libestr0_0.1.1-2_amd64 removed +[+] libestr0_0.1.9-1~bpo70+1_amd64 added +[+] init-system-helpers_1.11~bpo70.1_all added +[-] rsyslog_5.8.11-3_i386 removed +[+] rsyslog_7.4.4-1~bpo70+1_i386 added +[-] libestr0_0.1.1-2_i386 removed +[+] libestr0_0.1.9-1~bpo70+1_i386 added +ERROR: unable to create snapshot: snapshot with name snap1 already exists diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot8Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot8Test_gold new file mode 100644 index 00000000..00efb139 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot8Test_gold @@ -0,0 +1,14 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +and result would be saved as new snapshot snap3. +Loading packages (56800)... +Building indexes... +[!] Dependency lunar-landing [amd64] can't be satisfied with source [snap2]: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +[!] Dependency mars-landing (>= 1.0) [amd64] can't be satisfied with source [snap2]: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +[!] Dependency lunar-landing [i386] can't be satisfied with source [snap2]: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +[!] Dependency mars-landing (>= 1.0) [i386] can't be satisfied with source [snap2]: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot8Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot8Test_snapshot_show new file mode 100644 index 00000000..5f57ced5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot8Test_snapshot_show @@ -0,0 +1,56144 @@ +Name: snap3 +Created At: 2014-02-27 13:06:21 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'lunar-landing mars-landing (>= 1.0)' +Number of packages: 56139 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.1-2_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_5.8.11-3_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.1-2_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_5.8.11-3_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot9Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot9Test_gold new file mode 100644 index 00000000..ab4abbd0 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot9Test_gold @@ -0,0 +1,22 @@ +Dependencies would be pulled into snapshot: + [snap1]: Snapshot from mirror [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy +from snapshot: + [snap2]: Snapshot from mirror [wheezy-backports-src]: http://mirror.yandex.ru/debian/ wheezy-backports [src] +and result would be saved as new snapshot snap3. +Loading packages (59786)... +Building indexes... +[-] rsyslog_5.8.11-3_amd64 removed +[+] rsyslog_7.4.4-1~bpo70+1_amd64 added +[-] libestr0_0.1.1-2_amd64 removed +[+] libestr0_0.1.9-1~bpo70+1_amd64 added +[+] init-system-helpers_1.11~bpo70.1_all added +[+] rsyslog_7.4.4-1~bpo70+1_source added +[+] libestr_0.1.9-1~bpo70+1_source added +[+] init-system-helpers_1.11~bpo70.1_source added +[-] rsyslog_5.8.11-3_i386 removed +[+] rsyslog_7.4.4-1~bpo70+1_i386 added +[-] libestr0_0.1.1-2_i386 removed +[+] libestr0_0.1.9-1~bpo70+1_i386 added + +Snapshot snap3 successfully created. +You can run 'aptly publish snapshot snap3' to publish snapshot as Debian repository. diff --git a/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot9Test_snapshot_show b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot9Test_snapshot_show new file mode 100644 index 00000000..e6ea38e6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/PullSnapshot9Test_snapshot_show @@ -0,0 +1,56148 @@ +Name: snap3 +Created At: 2014-02-27 13:07:12 MSK +Description: Pulled into 'snap1' with 'snap2' as source, pull request was: 'rsyslog (>= 7.4.4)' +Number of packages: 56143 +Packages: + 0ad-data_0~r11863-1_all + 2ping_2.0-1_all + 2vcard_0.5-3_all + 389-console_1.1.7-1_all + 7kaa-data_2.13-1_all + a7xpg-data_0.11.dfsg1-7_all + abacas_1.3.1-1_all + abcde_2.5.3-1_all + abe-data_1.1+dfsg-1_all + abi-compliance-checker_1.97.7-1_all + abicheck_1.2-5_all + abinit-doc_5.3.4.dfsg-3_all + abiword-common_2.9.2+svn20120603-8_all + abntex_0.9~beta2-5.1_all + accerciser_3.4.1-1_all + accessodf_0.1-2_all + acheck_0.5.1_all + acheck-rules_0.3.1_all + acheck-rules-fr_0.6_all + ack-grep_1.96-2_all + acl2-books-certs_4.3-3_all + acl2-books-source_4.3-3_all + acl2-doc_4.3-3_all + acl2-emacs_4.3-3_all + acl2-infix-source_4.3-3_all + acl2-source_4.3-3_all + acpi-support_0.140-5_all + acpi-support-base_0.140-5_all + activemq_5.6.0+dfsg-1_all + activity-log-manager_0.8.0-1_all + activiz.net-doc_1:1.0~git20111123-6_all + activiz.net-examples_1:1.0~git20111123-6_all + ada-reference-manual-2005_1:2012.1-2_all + ada-reference-manual-2012_1:2012.1-2_all + addresses.framework_0.4.7-1_all + addressview.framework_0.4.7-1_all + adduser_3.113+nmu3_all + adlint_1.10.0-1_all + adminer_3.3.3-1_all + adonthell-data_0.3.4.cvs.20080529+dfsg-3_all + advene_1.0-1_all + advi-examples_1.10.2-1_all + adzapper_20090301.dfsg.1-0.2_all + aegis-doc_4.24.3-3_all + aegis-tk_4.24.3-3_all + aegisub-l10n_2.1.9-1_all + aephea_10.008-2_all + afnix-doc_2.2.0-2_all + aft_2:5.098-2_all + afterstep-data_2.2.11-7_all + agda_2.3.0.1-2_all + agda-mode_2.3.0.1-2_all + agda-stdlib_0.6-2_all + agda-stdlib-doc_0.6-2_all + aglfn_1.7-1_all + agtl_0.8.0.3-1_all + aide-common_0.15.1-8_all + airport-utils_2-2_all + airstrike-common_0.99+1.0pre6a-5_all + ajaxterm_0.10-12_all + akonadi-backend-mysql_1.7.2-3_all + akonadi-backend-postgresql_1.7.2-3_all + alacarte_3.5.3-1_all + alembic_0.3.4+ds-3_all + alex4-data_1.1-5_all + algotutor_0.8.6-1_all + alice_0.19-1_all + alien_8.87_all + alien-hunter_1.7-1_all + alienblaster-data_1.1.0-7_all + all-knowing-dns_1.3-1_all + allegro4-doc_2:4.4.2-2.1_all + alpine-doc_2.02+dfsg-2_all + alqalam_0.2-6_all + alsa-base_1.0.25+3~deb7u1_all + altree-examples_1.2.1-1_all + alure-doc_1.2-6_all + am-utils-doc_6.2+rc20110530-3_all + amarok-common_2.6~beta1+75.g47e75df-1_all + amarok-doc_2.6~beta1+75.g47e75df-1_all + amavisd-new_1:2.7.1-2_all + amispammer_3.3-1_all + amoebax-data_0.2.1+dfsg-1_all + ampache-themes_3.6.1-2_all + amphetamine-data_0.8.7-14_all + amule-common_2.3.1-9_all + amule-gnome-support_2.3.1-9_all + anarchism_13.4-1_all + angband-data_1:3.3.2-2.1_all + angband-doc_3.0.3.5_all + angrydd_1.0.1-8_all + anjuta-common_2:3.4.3-1_all + anki_1.2.11-1_all + ant_1.8.2-4_all + ant-contrib_1.0~b3+svn177-5_all + ant-contrib-cpptasks_1.0~b5-2_all + ant-doc_1.8.2-4_all + ant-optional_1.8.2-4_all + anthy-common_9100h-16_all + anthy-el_9100h-16_all + antlr_2.7.7+dfsg-4_all + antlr-doc_2.7.7+dfsg-4_all + antlr3_3.2-7_all + antlr3-doc_3.2-7_all + antlr3-gunit-maven-plugin_3.2-7_all + antlr3-maven-plugin_3.2-7_all + anyremote-data_6.0+dfsg-1_all + anyremote-doc_6.0+dfsg-1_all + anyremote2html_1.4-1_all + anything-el_1.287-2_all + aolserver4-doc_4.5.1-15.1_all + aolserver4-xotcl_1.6.7-2_all + apache2-doc_2.2.22-13+deb7u1_all + apcalc-common_2.12.4.4-3_all + apcupsd-doc_3.14.10-2_all + apel_10.8-2_all + apf-firewall_9.7+rev1-3_all + apgdiff_2.3-1_all + aplus-fsf-doc_4.22.1-6_all + aplus-fsf-el_4.22.1-6_all + apoo_2.2-2_all + app-install-data_2012.06.16.1_all + apparmor-docs_2.7.103-4_all + apparmor-notify_2.7.103-4_all + apparmor-profiles_2.7.103-4_all + apper-data_0.7.2-5_all + apsfilter_7.2.6-1.3_all + apt-cacher_1.7.6_all + apt-clone_0.2.2_all + apt-dater-host_0.9.0-3+wheezy1_all + apt-doc_0.9.7.9+deb7u1_all + apt-dpkg-ref_5.3.1_all + apt-file_2.5.1_all + apt-forktracer_0.4_all + apt-listbugs_0.1.8+deb7u1_all + apt-listchanges_2.85.11_all + apt-mirror_0.4.8-5_all + apt-offline_1.2_all + apt-offline-gui_1.2_all + apt-p2p_0.1.6+nmu1_all + apt-rdepends_1.3.0-3_all + apt-show-source_0.10_all + apt-show-versions_0.20_all + apt-src_0.25.1-0.1_all + apt-transport-spacewalk_1.0.6-2.1_all + apt-watch_0.4.0-2.1_all + apt-xapian-index_0.45_all + apt-zip_0.18_all + aptdaemon_0.45-2_all + aptdaemon-data_0.45-2_all + aptfs_1:0+git201108031956-38fb8dc-1_all + apticron_1.1.55_all + aptitude-common_0.6.8.2-1_all + aptitude-doc-cs_0.6.8.2-1_all + aptitude-doc-en_0.6.8.2-1_all + aptitude-doc-es_0.6.8.2-1_all + aptitude-doc-fi_0.6.8.2-1_all + aptitude-doc-fr_0.6.8.2-1_all + aptitude-doc-it_0.6.8.2-1_all + aptitude-doc-ja_0.6.8.2-1_all + aptoncd_0.1.98+bzr117-1.2_all + aqsis-examples_1.8.1-3_all + arandr_0.1.6-1_all + archivemail_0.9.0-1_all + archmage_1:0.2.4-3_all + archmbox_4.10.0-2_all + ardentryst_1.71-4_all + arduino_1:1.0.1+dfsg-7_all + arduino-core_1:1.0.1+dfsg-7_all + arduino-mk_0.8-5_all + arename_4.0-2_all + ario-common_1.5.1-1_all + arista_0.9.7-4_all + armagetronad-common_0.2.8.3.2-1_all + arno-iptables-firewall_2.0.1.c-1_all + aroarfw-dev_0.1~beta4-5_all + aroarfw-doc_0.1~beta4-5_all + asc-data_2.4.0.0-3_all + asc-music_1.3-2_all + asciidoc_8.6.7-1_all + asciio_1.02.71-1_all + asclock-themes_2.0.12-23_all + ash_0.5.7-3_all + asis-doc_2010-5_all + asp.net-examples_2.10-2.4_all + aspectj_1.6.12+dfsg-3_all + aspectj-doc_1.6.12+dfsg-3_all + aspell-am_0.03-1-4_all + aspell-ar_0.0.20060329-4_all + aspell-ar-large_1.2-0-2_all + aspell-bg_4.1-3_all + aspell-bn_1:0.01.1-1-2_all + aspell-br_0.50-2-6_all + aspell-ca_0.20111230b-4_all + aspell-cs_0.51.0-1_all + aspell-cy_0.50-3-6_all + aspell-de_20120607-1_all + aspell-de-alt_1:2-28_all + aspell-doc_0.60.7~20110707-1_all + aspell-el_0.50-3-6_all + aspell-en_7.1-0-1_all + aspell-eo_2.1.2000.02.25-45_all + aspell-eo-cx7_2.1.2000.02.25-45_all + aspell-es_1.11-4_all + aspell-et_1:20030606-20_all + aspell-eu-es_0.4.20081029-6_all + aspell-fa_0.11-0-2_all + aspell-fo_0.4.1-1_all + aspell-fr_0.50-3-7_all + aspell-ga_0.50-4-4_all + aspell-gl-minimos_0.5-35_all + aspell-gu_0.03-0-7_all + aspell-he_1.0-0-5_all + aspell-hi_0.02-5_all + aspell-hr_0.51-4_all + aspell-hsb_0.02.0-1_all + aspell-hu_0.99.4.2-0-3_all + aspell-hy_0.10.0-0-2_all + aspell-is_0.51-0-4_all + aspell-it_2.4-20070901-0-2_all + aspell-kk_0.2-1_all + aspell-kn_0.01-2-2_all + aspell-ku_0.20-0-5_all + aspell-lt_1.2.1-3_all + aspell-lv_0.9.4-5_all + aspell-ml_0.04-1-5_all + aspell-mr_0.10-8_all + aspell-nl_1:2.10-1_all + aspell-or_0.03-1-5_all + aspell-pa_0.01-1-4_all + aspell-pl_20110901-1_all + aspell-pt_1.5_all + aspell-pt-br_20110527-2_all + aspell-pt-pt_20091013-4_all + aspell-ro_3.3.7-1_all + aspell-ru_0.99g5-18_all + aspell-sk_0.52-0-4_all + aspell-sl_0.60-3_all + aspell-sv_0.51-0-3_all + aspell-ta_20040424-1-1_all + aspell-te_0.01-2-5_all + aspell-tl_0.4-0-10_all + aspell-uk_1.6.5-2_all + aspell-uz_0.6.0-1_all + asql_1.6-1_all + asr-manpages_1.3-6_all + asterisk-config_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-core-sounds-en_1.4.22-1_all + asterisk-core-sounds-en-g722_1.4.22-1_all + asterisk-core-sounds-en-gsm_1.4.22-1_all + asterisk-core-sounds-en-wav_1.4.22-1_all + asterisk-core-sounds-es_1.4.22-1_all + asterisk-core-sounds-es-g722_1.4.22-1_all + asterisk-core-sounds-es-gsm_1.4.22-1_all + asterisk-core-sounds-es-wav_1.4.22-1_all + asterisk-core-sounds-fr_1.4.22-1_all + asterisk-core-sounds-fr-g722_1.4.22-1_all + asterisk-core-sounds-fr-gsm_1.4.22-1_all + asterisk-core-sounds-fr-wav_1.4.22-1_all + asterisk-core-sounds-ru_1.4.22-1_all + asterisk-core-sounds-ru-g722_1.4.22-1_all + asterisk-core-sounds-ru-gsm_1.4.22-1_all + asterisk-core-sounds-ru-wav_1.4.22-1_all + asterisk-dev_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-doc_1:1.8.13.1~dfsg1-3+deb7u3_all + asterisk-moh-opsound-g722_2.03-1_all + asterisk-moh-opsound-gsm_2.03-1_all + asterisk-moh-opsound-wav_2.03-1_all + asterisk-prompt-de_2.0-1.1_all + asterisk-prompt-es-co_0.20070403-1_all + asterisk-prompt-fr-armelle_20070613-2_all + asterisk-prompt-fr-proformatique_20070706-1.4-2_all + asterisk-prompt-it_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-alaw_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-gsm_1:1.4.22+mm20110907-3_all + asterisk-prompt-it-menardi-wav_1:1.4.22+mm20110907-3_all + asterisk-prompt-se_1.045-1_all + asused_3.72-9_all + aswiki_1.0.4-10_all + asylum-data_0.3.2-1_all + asymptote-doc_2.15-2_all + at-spi-doc_1.32.0-2_all + at-spi2-doc_2.5.3-2_all + atanks-data_5.5+dfsg-0.1_all + atheist_0.20110402-2_all + atlc-examples_4.6.1-1_all + atomix-data_2.14.0-2_all + atool_0.39.0-2_all + ats-lang-anairiats-doc_0.2.3-1_all + ats-lang-anairiats-examples_0.2.3-1_all + attal-themes-medieval_1.0~rc2.dfsg1-1_all + auctex_11.86-11_all + audacious-plugins-data_3.2.4-1_all + audacity-data_2.0.1-1_all + audiolink_0.05-1.2_all + augeas-doc_0.10.0-1_all + augeas-lenses_0.10.0-1_all + aumix-common_2.9.1-2_all + auth2db_0.2.5-2+dfsg-4_all + auth2db-common_0.2.5-2+dfsg-4_all + auth2db-filters_0.2.5-2+dfsg-4_all + auth2db-frontend_0.2.5-2+dfsg-4_all + auto-complete-el_1.3.1-2_all + auto-install-el_1.53-1_all + auto-multiple-choice-common_1.1.1-2_all + auto-multiple-choice-doc_1.1.1-2_all + auto-multiple-choice-doc-pdf_1.1.1-2_all + autoconf_2.69-1_all + autoconf-archive_20111221-2_all + autoconf-dickey_2.52+20101002-2_all + autoconf-doc_2.69-1_all + autoconf-gl-macros_20101226-1_all + autoconf2.13_2.13-62_all + autoconf2.59_2.59+dfsg-0.1_all + autoconf2.64_2.64-3_all + autodia_2.14-1_all + autodns-dhcp_0.8_all + autodock-getdata_4.2.3-2_all + autodock-test_4.2.3-2_all + autofs5_5.0.7-3_all + autofs5-hesiod_5.0.7-3_all + autofs5-ldap_5.0.7-3_all + autogrid-test_4.2.3-2_all + autojump_20-2_all + autokey-common_0.90.1-1.1_all + autokey-gtk_0.90.1-1.1_all + autokey-qt_0.90.1-1.1_all + automake_1:1.11.6-1_all + automake1.10_1:1.10.3-3_all + automake1.4_1:1.4-p6-13.1_all + automake1.9_1.9.6+nogfdl-4_all + automysqlbackup_2.6+debian.3-1_all + autopkgtest_2.2.3+nmu1_all + autopkgtest-xenlvm_2.2.3+nmu1_all + autopoint_0.18.1.1-9_all + autopostgresqlbackup_1.0-2_all + autoproject_0.20-5_all + autopsy_2.24-1_all + autorenamer_0.2-1_all + autotools-dev_20120608.1_all + autotrash_0.1.5-1_all + avahi-discover_0.6.31-2_all + avogadro-data_1.0.3-5_all + avr-libc_1:1.8.0-2_all + avrdude-doc_5.11.1-1_all + awesome-extra_2012061101_all + awl-doc_0.53-1_all + aws-status_0.2.3-1_all + awstats_7.0~dfsg-7_all + axel-kapt_2.4-1_all + axiom-databases_20120501-1_all + axiom-doc_20120501-1_all + axiom-graphics-data_20120501-1_all + axiom-hypertex-data_20120501-1_all + axiom-source_20120501-1_all + axiom-test_20120501-1_all + axiom-tex_20120501-1_all + azureus_4.3.0.6-5_all + babel-1.4.0_1.4.0.dfsg-8.1_all + babel-doc_1.4.0.dfsg-8.1_all + babiloo_2.0.11-1_all + backfire-dkms_0.83-1+deb7u1_all + backintime-common_1.0.10-1_all + backintime-gnome_1.0.10-1_all + backintime-kde_1.0.10-1_all + backup-manager_0.7.10.1-2_all + backup-manager-doc_0.7.10.1-2_all + backup2l_1.5-6_all + backupninja_1.0.1-1_all + bacula_5.2.6+dfsg-9_all + bacula-client_5.2.6+dfsg-9_all + bacula-doc_5.2.6-3_all + bacula-server_5.2.6+dfsg-9_all + balazar3_0.1-10_all + balazar3-2d_0.1-10_all + balazar3-3d_0.1-10_all + balazar3-common_0.1-10_all + balazarbrothers_1.0~rc1-4.1_all + balder2d-data_1.0-1.1_all + ballz-data_1.0.2-1_all + banshee-community-extensions_2.4.0-1_all + banshee-extension-alarm_2.4.0-1_all + banshee-extension-albumartwriter_2.4.0-1_all + banshee-extension-ampache_2.4.0-1_all + banshee-extension-awn_2.4.0-1_all + banshee-extension-coverwallpaper_2.4.0-1_all + banshee-extension-duplicatesongdetector_2.4.0-1_all + banshee-extension-foldersync_2.4.0-1_all + banshee-extension-jamendo_2.4.0-1_all + banshee-extension-karaoke_2.4.0-1_all + banshee-extension-lcd_2.4.0-1_all + banshee-extension-liveradio_2.4.0-1_all + banshee-extension-lyrics_2.4.0-1_all + banshee-extension-magnatune_2.4.0-1_all + banshee-extension-openvp_2.4.0-1_all + banshee-extension-radiostationfetcher_2.4.0-1_all + banshee-extension-randombylastfm_2.4.0-1_all + banshee-extension-streamrecorder_2.4.0-1_all + banshee-extension-telepathy_2.4.0-1_all + banshee-extension-zeitgeistdataprovider_2.4.0-1_all + banshee-extensions-common_2.4.0-1_all + basenji_0.9.0-1_all + basex_7.3-1_all + bash-completion_1:2.0-1_all + bash-doc_4.2+dfsg-0.1_all + bashburn_3.0.1-1_all + bashdb_4.2.0.8-1.1_all + basket-data_1.81-3_all + bauble_0.9.7-2_all + bbdb_2.36-3_all + bcfg2_1.2.2-2_all + bcfg2-server_1.2.2-2_all + bcfg2-web_1.2.2-2_all + bcron-run_0.09-13_all + bdf2psf_1.88_all + beancounter_0.8.10_all + beast-doc_0.7.4-5_all + beets_1.0~b14-2_all + beets-doc_1.0~b14-2_all + belier_1.2-2_all + beneath-a-steel-sky_0.0372-4_all + berusky-data_1.4-1_all + bf-utf-source_0.06_all + bgoffice-computer-terms_0.0.200909080118-1_all + bhl_1.7.3-2_all + biabam_0.9.7-7_all + biber_0.9.9+release-1_all + biblatex_1.7-1_all + biblatex-dw_1.4-1_all + bible-kjv-text_4.26_all + bibledit_4.6-1_all + bibledit-data_4.6-1_all + bibledit-gtk-data_4.6-1_all + bibletime-data_2.9.1-2_all + bibtex2html_1.97-2_all + bibus_1.5.2-1_all + bibus-doc-en_1.5.2-1_all + bicyclerepair_0.9-6_all + big-cursor_3.8_all + billard-gl-data_1.75-11_all + biloba-data_0.9.3-4_all + bind9-doc_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + bindgraph_0.2a-5.1_all + biniax2-data_1.30-1_all + bins_1.1.29-16_all + binstats_1.08-8_all + binutils-doc_2.22-8_all + binutils-mingw-w64_2.22-7+2_all + binutils-source_2.22-8_all + biogenesis_0.8-1_all + biomaj_1.2.1-1_all + biomaj-properties_1.2.1-1_all + bioperl_1.6.901-3_all + bioperl-run_1.6.9-1_all + bisonc++-doc_4.01.00-1_all + bitlbee-common_3.0.5-1.2_all + bitlbee-dev_3.0.5-1.2_all + bitmap-mule_8.5+0.20030825.0433-12_all + bitpim_1.0.7+dfsg1-3_all + bittornado_0.3.18-10_all + bittornado-gui_0.3.18-10_all + bittorrent_3.4.2-11.4_all + bittorrent-gui_3.4.2-11.4_all + bkchem_0.13.0-4_all + blackbox-themes_0.5_all + blacs-test-common_1.1-31_all + blam_1.8.9-3_all + blazeblogger_1.2.0-3_all + blcr-dkms_0.8.5-2_all + bleachbit_0.9.2-2_all + blender-ogrexml_1.7.4+dfsg1-7_all + blender-ogrexml-1.8_1.8.0+dfsg1-3_all + blends-common_0.6.16.2_all + blends-dev_0.6.16.2_all + blends-doc_0.6.16.2_all + bless_0.6.0-4_all + bley_0.1.5-2_all + blhc_0.03+20120626+git93afe23-1_all + blobandconquer-data_1.11-dfsg+20-1_all + blobby-data_1.0~rc1-2_all + blobwars-data_1.19-2_all + blocks-of-the-undead-data_1.0-5_all + blosxom_2.1.2-1_all + blt-demo_2.4z-4.2_all + bluefish-data_2.2.3-4_all + bluemindo_0.3-4_all + blueproximity_1.2.5-6_all + bluetooth_4.99-2_all + bluewho_0.1-1_all + bluez-audio_4.99-2_all + bluez-utils_4.99-2_all + bmagic_3.7.0-1.1_all + bnd_1.50.0-5_all + boa-constructor_0.6.1-12_all + bochs-doc_2.4.6-5_all + bochsbios_2.4.6-5_all + bodr_9-1_all + bogofilter-common_1.2.2+dfsg1-2_all + boinc_7.0.27+dfsg-5_all + boinc-cgi-stripchart_7.0.27+dfsg-5_all + bokken_1.6-1_all + bomberclone-data_0.11.9-4_all + boo_0.9.5~git20110729.r1.202a430-2_all + bookletimposer_0.2-1_all + bookview_3.2.1-1_all + boot-info-script_0.61-1_all + bootcd_3.28_all + bootcd-backup_3.28_all + bootcd-i386_3.28_all + bootcd-ia64_3.28_all + bootcd-mkinitramfs_3.28_all + bootchart_0.10~svn407-4.1~deb7u1_all + bootchart-view_0.10~svn407-4.1~deb7u1_all + boswars-data_2.6.1-2_all + bouncy_0.6.20071104-3_all + bowtie-examples_0.12.7-3_all + bowtie2-examples_2.0.0-beta6-3_all + bpython_0.11-1_all + bpython-gtk_0.11-1_all + bpython-urwid_0.11-1_all + bpython3_0.11-1_all + brag_1.4.1-2_all + brasero-common_3.4.1-4_all + brazilian-conjugate_3.0~beta4-15_all + brickos-doc_0.9.0.dfsg-6_all + briquolo-data_0.5.7-4_all + bristol-data_0.60.10-3_all + bsfilter_1:1.0.17-3_all + bsh_2.0b4-12_all + bsh-doc_2.0b4-12_all + bsh-src_2.0b4-12_all + btanks-data_0.9.8083-4_all + bubbros_1.6-2_all + bucardo_4.99.5-1_all + buffycli_0.7-1_all + bugz_0.9.3-2_all + buildbot_0.8.6p1-1_all + buildbot-slave_0.8.6p1-1_all + buildd_0.63.2-1.1_all + bum_2.5.2-1_all + bumprace-data_1.5.4-1_all + bundler_1.1.4-6_all + burn_0.4.6-2_all + busybox-syslogd_1:1.20.0-7_all + buxon_0.0.5-3_all + buzztard-data_0.5.0-4_all + bwidget_1.9.5-1_all + bygfoot-data_2.3.2-1_all + byobu_5.16-1.1_all + bzflag_2.0.16.20100405+nmu1_all + bzflag-data_2.0.16.20100405+nmu1_all + bzip2-doc_1.0.6-4_all + bzr_2.6.0~bzr6526-1_all + bzr-builddeb_2.8.4_all + bzr-cvsps-import_0.0.1~bzr71-1_all + bzr-dbus_0.1~bzr52-2_all + bzr-doc_2.6.0~bzr6526-1_all + bzr-email_0.0.1~bzr57-2_all + bzr-explorer_1.3.0~bzr556-1_all + bzr-fastimport_0.13.0-2_all + bzr-git_0.6.9-1_all + bzr-grep_0.4.0+bzr147-1_all + bzr-gtk_0.103.0+bzr792-3_all + bzr-loom_2.2.0-2_all + bzr-pipeline_1.4-3_all + bzr-rewrite_0.6.3+bzr256-1_all + bzr-search_1.7.0~bzr94-1_all + bzr-stats_0.1.0+bzr51-1_all + bzr-svn_1.2.1-1_all + bzr-upload_1.1.0-2_all + bzr-xmloutput_0.8.8+bzr162-3_all + bzrtools_2.5+bzr786-2_all + c++-annotations_9.4.0-1_all + c++-annotations-contrib_9.4.0-1_all + c++-annotations-dvi_9.4.0-1_all + c++-annotations-html_9.4.0-1_all + c++-annotations-latex_9.4.0-1_all + c++-annotations-pdf_9.4.0-1_all + c++-annotations-ps_9.4.0-1_all + c++-annotations-txt_9.4.0-1_all + c-cpp-reference_2.0.2-8_all + c-sig_3.8-17_all + c2050_0.3b-4_all + c2esp_24-2_all + c2hs-doc_0.16.3-2_all + ca-certificates_20130119_all + ca-certificates-java_20121112+nmu2_all + cacti_0.8.8a+dfsg-5+deb7u2_all + cadubi_1.3-2_all + cain_1.9-4_all + cain-examples_1.9-4_all + cairo-dock-plug-in-data_3.0.0-1_all + cakephp_1.3.15-1_all + cakephp-instaweb_0.5-1_all + cakephp-scripts_1.3.15-1_all + calamaris_2.99.4.0-18_all + calibre_0.8.51+dfsg1-0.1_all + calligra_1:2.4.4-3_all + calligra-data_1:2.4.4-3_all + calligra-l10n-ca_1:2.4.3-1_all + calligra-l10n-cavalencia_1:2.4.3-1_all + calligra-l10n-cs_1:2.4.3-1_all + calligra-l10n-da_1:2.4.3-1_all + calligra-l10n-de_1:2.4.3-1_all + calligra-l10n-el_1:2.4.3-1_all + calligra-l10n-engb_1:2.4.3-1_all + calligra-l10n-es_1:2.4.3-1_all + calligra-l10n-et_1:2.4.3-1_all + calligra-l10n-fi_1:2.4.3-1_all + calligra-l10n-fr_1:2.4.3-1_all + calligra-l10n-hu_1:2.4.3-1_all + calligra-l10n-it_1:2.4.3-1_all + calligra-l10n-kk_1:2.4.3-1_all + calligra-l10n-nb_1:2.4.3-1_all + calligra-l10n-nds_1:2.4.3-1_all + calligra-l10n-nl_1:2.4.3-1_all + calligra-l10n-pl_1:2.4.3-1_all + calligra-l10n-pt_1:2.4.3-1_all + calligra-l10n-ptbr_1:2.4.3-1_all + calligra-l10n-ru_1:2.4.3-1_all + calligra-l10n-sk_1:2.4.3-1_all + calligra-l10n-sv_1:2.4.3-1_all + calligra-l10n-uk_1:2.4.3-1_all + calligra-l10n-zhcn_1:2.4.3-1_all + calligra-l10n-zhtw_1:2.4.3-1_all + calligraflow-data_1:2.4.4-3_all + calligrawords-data_1:2.4.4-3_all + cameleon-doc_1.9.21-2_all + cameramonitor_0.2-2.1_all + caml2html_1.4.1-3_all + camlidl-doc_1.04-4_all + camlmix_1.3.0-3_all + camping_2.1.498-4_all + canna-shion_0.0.20010204-11_all + capistrano_2.12.0-1_all + cappuccino_0.5.1-2.1_all + cardstories_1.0.6-1.2_all + caribou_0.4.4-1_all + caribou-antler_0.4.4-1_all + carmetal_3.5.2+dfsg-1_all + carton_0.9.7-1_all + caspar_20120530-1_all + caspar-doc_20120530-1_all + castle-combat_0.8.1.dfsg.1-3_all + catfish_0.3.2-2_all + cbflib-doc_0.7.9.1-3_all + cbios_0.25-2_all + cclib_1.0.1-2_all + cd-circleprint_0.7.0-3_all + cdbs_0.4.115+deb7u1_all + cdlabelgen_4.1.0-2_all + cdrkit-doc_9:1.1.11-2_all + cecilia_2.0.5-2.2_all + cedar-backup2_2.21.0-2_all + cedar-backup2-doc_2.21.0-2_all + ceferino-data_0.97.8-3.1_all + celestia_1.6.1+dfsg-2_all + celestia-common_1.6.1+dfsg-2_all + centerim-common_4.22.10-2_all + cereal_0.24-1_all + cernlib_20061220+dfsg3-2_all + cernlib-base_20061220+dfsg3-2_all + cernlib-base-dev_20061220+dfsg3-2_all + cernlib-core_20061220+dfsg3-2_all + cernlib-core-dev_20061220+dfsg3-2_all + cernlib-extras_20061220+dfsg3-2_all + cernlib-montecarlo_20061220+dfsg3-2_all + cfget_0.18-1_all + cfi-en_3.0-8_all + cfi-sv_3.0-8_all + cfortran_4.4-14_all + cfv_1.18.3-2_all + cgvg_1.6.2-2.1_all + chado-utils_1.22-4_all + chaksem_1.7b-5.1_all + chalow_1.0-2_all + chameleon-cursor-theme_0.5-4_all + changetrack_4.7-1_all + chaosreader_0.94-3_all + charactermanaj_0.98+svn20120311.r42-1_all + check-mk-doc_1.1.12p7-1_all + check-postgres_2.19.0-1_all + checkbot_1.80-2_all + checkgmail_1.13+svn43-3_all + checksecurity_2.0.14_all + checkstyle_5.4-2_all + checkstyle-doc_5.4-2_all + cheese-common_3.4.2-2_all + chef_10.12.0-3_all + chef-expander_10.12.0-1_all + chef-server-api_10.12.0-1_all + chef-solr_10.12.0+dfsg-2_all + chemical-mime-data_0.1.94-6_all + chemical-structures_2.2.dfsg.0-8_all + cherrytree_0.25.4-1_all + chewmail_1.2-1_all + chiark-backup_4.2.0_all + chiark-scripts_4.2.0_all + childsplay_1.6-1_all + childsplay-alphabet-sounds-bg_0.9.1-2_all + childsplay-alphabet-sounds-ca_0.9.1-2_all + childsplay-alphabet-sounds-de_0.9.1-2_all + childsplay-alphabet-sounds-el_0.9-2_all + childsplay-alphabet-sounds-en-gb_0.9.1-2_all + childsplay-alphabet-sounds-es_0.9.1-2_all + childsplay-alphabet-sounds-fr_0.9.1-2_all + childsplay-alphabet-sounds-it_0.9.1-2_all + childsplay-alphabet-sounds-nb_0.9.1-1_all + childsplay-alphabet-sounds-nl_0.9.1-1_all + childsplay-alphabet-sounds-pt_0.9.1-1_all + childsplay-alphabet-sounds-ro_0.9.1-1_all + childsplay-alphabet-sounds-ru_0.9.1-1_all + childsplay-alphabet-sounds-sl_0.9.1-1_all + childsplay-alphabet-sounds-sv_0.9.2-1_all + chirashi_1.4.0+dfsg-1_all + chise-db_0.3.0-2_all + chkconfig_11.4-54.60.1-1_all + chm2pdf_0.9.1-1.1_all + chromium-browser_31.0.1650.63-1~deb7u1_all + chromium-browser-dbg_31.0.1650.63-1~deb7u1_all + chromium-browser-inspector_31.0.1650.63-1~deb7u1_all + chromium-browser-l10n_31.0.1650.63-1~deb7u1_all + chromium-bsu-data_0.9.15-1_all + chromium-inspector_31.0.1650.63-1~deb7u1_all + chromium-l10n_31.0.1650.63-1~deb7u1_all + chronicle_4.6-2_all + cia-clients_20120903_all + ciderwebmail_1.04-1_all + cil_0.07.00-6_all + cimg-dev_1.4.9-2_all + cimg-doc_1.4.9-2_all + cimg-examples_1.4.9-2_all + cipux-cat-web_3.4.0.3-4.1_all + cipux-object-tools_3.4.0.5-2_all + cipux-passwd_3.4.0.3-2_all + cipux-rpc-tools_3.4.0.9-3_all + cipux-rpcd_3.4.0.9-3_all + cipux-storage-tools_3.4.0.2-6_all + cipux-task-tools_3.4.0.7-4_all + circos_0.61-3_all + circos-tools_0.16-2_all + circuslinux-data_1.0.3-28_all + citadel-doc_8.14-2_all + citadel-suite_8.14-dfsg-1_all + cjet_0.8.9-3_all + cjk-latex_4.8.3+git20120621-1_all + ckeditor_3.6.1-1_all + ckport_0.1~rc0-3_all + ckport-database_0.1~rc0-3_all + cl-acl-compat_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-alexandria_0.0.20100217-1_all + cl-asdf_2:2.22-1_all + cl-aserve_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-awk_1-3_all + cl-babel_0.3.0+20091229-1_all + cl-base64_3.3.3-2_all + cl-bordeaux-threads_0.0.2-1_all + cl-brlapi_4.4-10+deb7u1_all + cl-cffi_20100219-2_all + cl-closer-mop_2:0.6-1_all + cl-cluck_0.1.3-2_all + cl-contextl_1:0.61-1_all + cl-fftw3_1.0-1_all + cl-flexi-streams_1.0.7-2_all + cl-flexichain_1.5.1.dfsg.1-2_all + cl-ftp_1.3.3-2_all + cl-getopt_1.2.0-3_all + cl-htmlgen_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-hyperobject_2.12.0-1_all + cl-irc_1:0.8.1-dfsg-3.1_all + cl-irc-logger_0.9.4-3_all + cl-kmrcl_1.106-1_all + cl-launch_3.018-1_all + cl-lexer_1-4_all + cl-lml_2.5.7-4_all + cl-lml2_1.6.6-4_all + cl-lw-compat_0.23-1_all + cl-mcclim_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-doc_0.9.6.dfsg.cvs20100315-1_all + cl-mcclim-examples_0.9.6.dfsg.cvs20100315-1_all + cl-md5_1:1.8.5-1_all + cl-modlisp_0.6-7_all + cl-pg_1:20061216-5_all + cl-photo_0.14-4_all + cl-pipes_1.2.1-5_all + cl-plplot_0.6.0-3_all + cl-postoffice_1.8.2.3-4_all + cl-ppcre_2.0.3-1_all + cl-ptester_2.1.2-6_all + cl-pubmed_2.1.3-5_all + cl-puri_1.5.5-1_all + cl-quicklisp_1.0-1_all + cl-regex_1-3_all + cl-reversi_1.0.14-4_all + cl-rlc_0.1.3-3_all + cl-rsm-mod_1.4_all + cl-rss_0.1.1-6_all + cl-rt_20040621-4_all + cl-salza_0.7.4-1_all + cl-spatial-trees_0.2-3_all + cl-speech-dispatcher_0.7.1-6.2_all + cl-split-sequence_20050802-3_all + cl-sql_6.2.0-1_all + cl-sql-aodbc_6.2.0-1_all + cl-sql-odbc_6.2.0-1_all + cl-sql-postgresql_6.2.0-1_all + cl-sql-postgresql-socket_6.2.0-1_all + cl-sql-sqlite_6.2.0-1_all + cl-sql-sqlite3_6.2.0-1_all + cl-sql-tests_6.2.0-1_all + cl-swank_1:20120525-1_all + cl-trivial-features_0.6-1_all + cl-trivial-gray-streams_20091021-1_all + cl-uffi_2.1.2-1_all + cl-usocket_0.5.5-1_all + cl-webactions_1.2.42+cvs.2010.02.08-dfsg-1.1_all + cl-xlunit_0.6.3-2_all + cl-xmls_1.4.1-1_all + cl-xptest_1.2.4-3_all + cl-zpb-ttf_0.7-2_all + clam-networkeditor-examples_1.4.0-3.1_all + clamassassin_1.2.4-1_all + clamav-base_0.97.8+dfsg-1_all + clamav-docs_0.97.8+dfsg-1_all + clamav-testfiles_0.97.8+dfsg-1_all + clamav-unofficial-sigs_3.7.1-3_all + clamtk_4.41-1_all + clanlib-doc_1.0~svn3827-3_all + claws-mail-doc_3.8.1-2_all + claws-mail-extra-plugins_3.8.1-2_all + claws-mail-i18n_3.8.1-2_all + claws-mail-plugins_3.8.1-2_all + claws-mail-themes_20120129.dfsg-1_all + claws-mail-tools_3.8.1-2_all + clawsker_0.7.8-1_all + clc-intercal_1:1.0~4pre1.-94.-2-2_all + clearlooks-phenix-theme_2.0.5-1_all + clfswm_20111015.git51b0a02-2_all + clhep-doc_2.1.2.3-1_all + cli-common_0.8.2_all + cli-common-dev_0.8.2_all + clinica-common_0.2.1~dfsg-1_all + clipf_0.4-1_all + clips-common_6.24-3_all + clips-doc_6.24-2_all + clirr_0.6-3_all + clisp-doc_1:2.49-8.1_all + clive_2.3.3-2_all + cloc_1.56-1_all + clojure-contrib_1.2.0-2_all + clojure1.2_1.2.1+dfsg-4_all + clojure1.4_1.4.0+dfsg-2_all + cloop-src_2.6.39.2-1_all + clustershell_1.6-1_all + clusterssh_4.01.01-4_all + cm-super_0.3.4-7.1_all + cm-super-minimal_0.3.4-7.1_all + cm-super-x11_0.3.4-7.1_all + cmake-data_2.8.9-1_all + cmake-doc_2.8.9-1_all + cmatrix-xfont_1.2a-4_all + cmdtest_0.3-1_all + cmigemo-common_20110227-7_all + cmigrep_1.5-9_all + cminpack-doc_1.2.2-1_all + cmip5-cmor-tables_1.3.12-1_all + cmucl-docs_20c-2_all + cmucl-source_20c-2_all + cmuscheme48-el_1.8+dfsg-1_all + cobertura_1.9.4.1+dfsg-3_all + coccinella_0.96.20-6_all + coccinelle-doc_1.0.0~rc12.deb-5_all + coco-cs_20110419-5_all + coco-doc_20060919-2_all + coco-java_20110419-3_all + code-saturne-data_2.1.7-1_all + code-saturne-doc_2.1.7-1_all + code2html_0.9.1-4_all + codeblocks-common_10.05-2.1_all + codecgraph_20120114-1_all + coderay_1.0.6-2_all + codeville_0.8.0-2_all + coinor-csdp-doc_6.1.1-1_all + coinor-libcbc-doc_2.5.0-3_all + coinor-libcgl-doc_0.55.0-1.1_all + coinor-libclp-doc_1.12.0-2.1_all + coinor-libcoinutils-doc_2.6.4-3_all + coinor-libdylp-doc_1.6.0-1.1_all + coinor-libflopc++-doc_1.0.6-3.1_all + coinor-libipopt-doc_3.10.2-1.1_all + coinor-libosi-doc_0.103.0-1_all + coinor-libsymphony-doc_5.2.4-1.2_all + coinor-libvol-doc_1.1.7-1_all + collabtive_0.7.6-1_all + collectd-dev_5.1.0-3_all + collectl_3.6.3-1_all + collectl-utils_3.2.1-1_all + colordiff_1.0.10-1_all + colorgcc_1.3.2.0-10_all + colormake_0.9-1_all + colorname_0.4+dfsg.1-3_all + colortest_20110624-1_all + colortest-python_1.4-2_all + comix_4.0.4-1_all + comixcursors_0.7.2-2_all + comixcursors-lefthanded_0.7.2-2_all + comixcursors-lefthanded-opaque_0.7.2-2_all + comixcursors-righthanded_0.7.2-2_all + comixcursors-righthanded-opaque_0.7.2-2_all + command-not-found_0.2.38-1_all + command-runner-applet_0.2-2_all + commit-patch_2.4-1_all + common-lisp-controller_7.10_all + compass-fancy-buttons-plugin_1.1.1~20120313-1_all + compass-h5bp-plugin_0.0.5-1_all + compass-layoutgala-plugin_0.2-1_all + compass-slickmap-plugin_0.5.1.1-2_all + compass-susy-plugin_0.9-2_all + compass-yui-plugin_0~20100724-2_all + compiz-fusion-bcop_0.8.4-1_all + composite-data_0.006.2+dfsg0-2_all + comprez_2.6.1-2_all + condor-doc_7.8.2~dfsg.1-1+deb7u1_all + conduit_0.3.17-1.1_all + config-package-dev_4.13_all + configfile-doc_1:8_all + configure-debian_1.0.2-0.1_all + congruity_15-1_all + conkeror_1.0~~pre+git120527-1_all + conky_1.9.0-2_all + connectomeviewer_2.1.0-1_all + connman-doc_1.0-1.1+wheezy1_all + cons_2.3.0.1+2.2.0-1_all + console-common_0.7.87_all + console-cyrillic_0.9-16.2_all + console-data_2:1.12-2_all + console-log_1.1-2_all + console-setup_1.88_all + console-setup-freebsd_1.88_all + console-setup-linux_1.88_all + console-setup-mini_1.88_all + context_2012.05.30.20120611-1_all + context-modules_20120611-1_all + controlaula_1.8.0-3_all + convertall_0.4.2-1_all + convmv_1.12-2_all + cook-doc_2.33-1_all + coop-computing-tools-doc_3.5.1-2_all + copyright-update_2010.0307+git23ecad8-2_all + coq-theories_8.3.pl4+dfsg-2_all + cortado_0.6.0-1_all + courier-doc_0.68.2-1_all + courier-filter-perl_0.200+ds-1_all + couriergraph_0.25-4.3_all + covered-doc_0.7.10-1_all + cowsay_3.03+dfsg1-4_all + cp2k-data_2.2.426-8_all + cpan-listchanges_0.05-1_all + cpanminus_1.5015-1_all + cpio-win32_2.11+dfsg-0.1_all + cplay_1.49-10_all + cppo_0.9.2-1_all + cpputest_3.1-2_all + cpuset_1.5.6-2_all + crack-common_5.0a-9.3_all + crawl-common_2:0.10.3-3_all + cream_0.43-3_all + create-resources_0.1.3-4_all + createrepo_0.4.11-1_all + creepy_0.1.94-1_all + crip_3.9-1_all + criticalmass-data_1:1.0.0-1.5_all + cron-apt_0.9.1_all + cron-deja-vu_0.4-5_all + cronometer_0.9.9-2_all + crossfire-client-images_1.70.0-1_all + crossfire-client-sounds_1.9.1-1_all + crossfire-common_1.70.0-1_all + crossfire-doc_1.70.0-1_all + crossfire-maps_1.70.0-1_all + crossfire-maps-small_1.5.0-3_all + crosshurd_1.7.44_all + crypt++el_2.94-1_all + crystalcursors_1.1.1-13_all + cscope-el_15.7a-3.6_all + csmash-data_0.6.6-6.6_all + csmash-demosong_1.4_all + csound-data_1:5.17.11~dfsg-3_all + csound-doc_1:5.13~dfsg-1_all + csound-manpages_1:5.13~dfsg-1_all + css-mode_0.11-7_all + cstocs_1:3.42-2_all + ctapi-dev_1.1_all + cthumb_4.2-3_all + ctioga2_0.2-4_all + ctn-doc_3.0.6-3_all + ctsim-doc_5.2.0-1.1_all + ctsim-help_5.2.0-1.1_all + cucumber_1.0.2-2_all + culmus_0.121-1_all + culmus-fancy_0.0.20051018-3_all + cup_0.11a+20060608-3_all + cups-common_1.5.3-5+deb7u1_all + cups-driver-gutenprint_5.2.9-1_all + cupsddk_1.5.3-5+deb7u1_all + customdeb_0.1_all + cutter-glib-support_1.1.7-1.2_all + cutter-testing-framework-doc_1.1.7-1.2_all + cuyo-data_2.0.0brl1-1_all + cvc3-el_2.4.1-4_all + cvs-autoreleasedeb_0.12-1_all + cvs-buildpackage_5.23_all + cvs-mailcommit_1.19-2_all + cvs-syncmail_2.3-1_all + cvs2cl_2.73-1_all + cvs2html_1.98-3_all + cvs2svn_2.3.0-3_all + cvschangelogbuilder_2.4-1_all + cvsconnect_0.1.cvs20001202-2_all + cvsdelta_1.7.0-6_all + cvssuck_0.3.cvs20060124-2_all + cvsutils_0.2.5-1_all + cvsweb_3:3.0.6-7_all + cweb-latex_1.1.1.debian.1_all + cxref-doc_1.6d-6_all + cxref-emacs_1.6d-6_all + cxxtest_4.0.3-2_all + cycle_0.3.1-8_all + cyrus-admin_2.4.16-4+deb7u1_all + cyrus-admin-2.2_2.4.16-4+deb7u1_all + cyrus-admin-2.4_2.4.16-4+deb7u1_all + cyrus-clients_2.4.16-4+deb7u1_all + cyrus-clients-2.2_2.4.16-4+deb7u1_all + cyrus-common_2.4.16-4+deb7u1_all + cyrus-common-2.2_2.4.16-4+deb7u1_all + cyrus-dev_2.4.16-4+deb7u1_all + cyrus-dev-2.2_2.4.16-4+deb7u1_all + cyrus-doc_2.4.16-4+deb7u1_all + cyrus-doc-2.2_2.4.16-4+deb7u1_all + cyrus-doc-2.4_2.4.16-4+deb7u1_all + cyrus-imapd_2.4.16-4+deb7u1_all + cyrus-imapd-2.2_2.4.16-4+deb7u1_all + cyrus-murder_2.4.16-4+deb7u1_all + cyrus-murder-2.2_2.4.16-4+deb7u1_all + cyrus-nntpd_2.4.16-4+deb7u1_all + cyrus-nntpd-2.2_2.4.16-4+deb7u1_all + cyrus-pop3d_2.4.16-4+deb7u1_all + cyrus-pop3d-2.2_2.4.16-4+deb7u1_all + cyrus-replication_2.4.16-4+deb7u1_all + cyrus-sasl2-doc_2.1.25.dfsg1-6+deb7u1_all + d-feet_0.1.14-1_all + d-push_2.0-1.1_all + d-rats_0.3.3-3_all + d-shlibs_0.52_all + dacco-common_0.9+20071227-5_all + dacs-examples_1.4.27b-2_all + daemontools-run_1:0.76-3_all + dahdi-linux_1:2.6.1+dfsg2-1_all + dahdi-source_1:2.6.1+dfsg2-1_all + dailystrips_1.0.28-11_all + dancer-ircd-doc_1.0.36-8.1_all + daptup_0.12.5.1_all + dar-docs_2.4.5.debian.1-1_all + darcsum_1.10-4_all + darcsweb_1.1-3.1_all + dasher-data_4.11-2_all + davical_1.1.1-1_all + davical-doc_1.1.1-1_all + db-upgrade-util_5.1.6_all + db-util_5.1.6_all + db4otool_8.0.184.15484+dfsg-2_all + db5.1-doc_5.1.29-5_all + dballe-common_5.18-1_all + dbconfig-common_1.8.47+nmu1_all + dblatex_0.3.4-2_all + dbs_0.47_all + dbtoepub_0+svn9150-2_all + dbus-1-doc_1.6.8-1+deb7u1_all + dbus-java-bin_2.8-4_all + dcmtk-doc_3.6.0-12_all + dctrl2xml_0.18_all + ddccontrol-db_20061014-4_all + ddclient_3.8.0-11.5_all + ddd-doc_1:3.3.12-4_all + ddir_2010.0321+git1685e72-2_all + ddskk_14.4-2_all + ddtc_0.17.1_all + debarchiver_0.9.10_all + debaux_0.1.10-1_all + debaux-debconf_0.1.10-1_all + debbugs_2.4.1_all + debconf_1.5.49_all + debconf-doc_1.5.49_all + debconf-i18n_1.5.49_all + debconf-utils_1.5.49_all + debdelta-doc_0.50+2_all + debget_1.6+nmu1_all + debhelper_9.20120909_all + debian-archive-keyring_2012.4_all + debian-builder_1.8_all + debian-cd_3.1.13_all + debian-edu-archive-keyring_2013.03.15_all + debian-edu-artwork_0.45-1+deb7u1_all + debian-edu-config_1.702_all + debian-edu-doc-da_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-de_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-en_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-es_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-fr_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-it_1.5~20130920~7.1+deb7u1_all + debian-edu-doc-nb_1.5~20130920~7.1+deb7u1_all + debian-edu-install_1.720+deb7u1_all + debian-el_35.2+nmu1_all + debian-faq_5.0.1_all + debian-faq-de_5.0.1_all + debian-faq-fr_5.0.1_all + debian-faq-it_5.0.1_all + debian-faq-ru_5.0.1_all + debian-faq-zh-cn_5.0.1_all + debian-goodies_0.61_all + debian-handbook_7.20140126~deb7u1_all + debian-history_2.19~deb7u1_all + debian-installer-7.0-netboot-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-armhf_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-ia64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-amd64_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-kfreebsd-i386_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mips_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-mipsel_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-powerpc_20130613+deb7u1.b2_all + debian-installer-7.0-netboot-sparc_20130613+deb7u1.b2_all + debian-installer-launcher_17_all + debian-kernel-handbook_1.0.15_all + debian-keyring_2013.04.21_all + debian-policy_3.9.3.1_all + debian-ports-archive-keyring_2012.01.08_all + debian-refcard_5.0.8_all + debian-reference_2.50_all + debian-reference-common_2.50_all + debian-reference-en_2.50_all + debian-reference-fr_2.50_all + debian-reference-it_2.50_all + debian-reference-ja_2.50_all + debian-reference-pt_2.50_all + debian-timeline_18_all + debian-zh-faq-s_1.13_all + debian-zh-faq-t_1.13_all + debiandoc-sgml_1.2.27_all + debiandoc-sgml-doc_1.1.22_all + debiandoc-sgml-doc-pt-br_1.1.11_all + debichem-abinitio_0.0.3_all + debichem-cheminformatics_0.0.3_all + debichem-modelling_0.0.3_all + debichem-molmech_0.0.3_all + debichem-polymer_0.0.3_all + debichem-semiempirical_0.0.3_all + debichem-tasks_0.0.3_all + debichem-view-edit-2d_0.0.3_all + debichem-visualisation_0.0.3_all + debirf_0.33_all + debmirror_1:2.14_all + debnest_0.0.11_all + debomatic_0.10-2_all + debootstrap_1.0.48+deb7u1_all + debpartial-mirror_0.3.1_all + debpear_0.3_all + debram-data_1.0.3-0.2_all + debroster_1.17_all + debsecan_0.4.16+nmu1_all + debsums_2.0.52_all + debtorrent_0.1.10_all + debtree_1.0.10_all + decibel-audio-player_1.04-1_all + deejayd_0.9.0-4_all + deejayd-client_0.9.0-4_all + deejayd-gstreamer_0.9.0-4_all + deejayd-webui_0.9.0-4_all + deejayd-webui-extension_0.9.0-4_all + deejayd-xine_0.9.0-4_all + default-jdk-doc_0.47_all + defendguin-data_0.0.12-4_all + dejagnu_1.5-3_all + deluge_1.3.3-2+nmu1_all + deluge-common_1.3.3-2+nmu1_all + deluge-console_1.3.3-2+nmu1_all + deluge-gtk_1.3.3-2+nmu1_all + deluge-torrent_1.3.3-2+nmu1_all + deluge-web_1.3.3-2+nmu1_all + deluge-webui_1.3.3-2+nmu1_all + deluged_1.3.3-2+nmu1_all + denemo-data_0.9.2-3_all + denemo-doc_0.9.2-3_all + denyhosts_2.6-10+deb7u3_all + deps-tools-cli_0.13-1.1_all + derivations_0.53.20120414-1.1_all + desktop-base_7.0.3_all + desktop-profiles_1.4.15+nmu2_all + devede_3.22.0-1_all + develock-el_0.39-1_all + developers-reference_3.4.9_all + developers-reference-de_3.4.9_all + developers-reference-fr_3.4.9_all + developers-reference-ja_3.4.9_all + devhelp-common_3.4.1-1_all + device3dfx-source_2011.07.03-1_all + devscripts-el_35.2+nmu1_all + dfo_0.8+svn52-7_all + dh-apparmor_2.7.103-4_all + dh-autoreconf_7_all + dh-buildinfo_0.9+nmu1_all + dh-consoledata_0.7.87_all + dh-di_3_all + dh-kpatches_0.99.36+nmu1_all + dh-linktree_0.3_all + dh-lisp_0.7.1_all + dh-lua_15_all + dh-make_0.61_all + dh-make-drupal_1.3-1+deb7u1_all + dh-make-perl_0.75-1_all + dh-make-php_0.3.0_all + dh-metainit_0.0.5_all + dh-ocaml_1.0.7_all + dh-xsp_2.10-2.4_all + dhelp_0.6.20+nmu1_all + di-netboot-assistant_0.36b_all + dia-common_0.97.2-8_all + dia-shapes_0.3.0-1_all + diakonos_0.9.0-1_all + dialign-tx-data_1.0.2-2_all + dibbler-doc_0.8.2-1_all + dico-doc_2.1-3_all + dico-module-mediawiki_2.1-3_all + dicompyler_0.4.1-1-1_all + dicoweb_2.1-3_all + dict-bouvier_6.revised-3.2_all + dict-de-en_1.7-2_all + dict-devil_1.0-12_all + dict-elements_20001107-a-6_all + dict-foldoc_20120518-1_all + dict-freedict-afr-deu_1.3-4_all + dict-freedict-cro-eng_1.3-4_all + dict-freedict-cze-eng_1.3-4_all + dict-freedict-dan-eng_1.3-4_all + dict-freedict-deu-eng_1.3-4_all + dict-freedict-deu-fra_1.3-4_all + dict-freedict-deu-ita_1.3-4_all + dict-freedict-deu-nld_1.3-4_all + dict-freedict-deu-por_1.3-4_all + dict-freedict-eng-ara_1.3-4_all + dict-freedict-eng-cro_1.3-4_all + dict-freedict-eng-cze_1.3-4_all + dict-freedict-eng-deu_1.3-4_all + dict-freedict-eng-fra_1.3-4_all + dict-freedict-eng-hin_1.3-4_all + dict-freedict-eng-hun_1.3-4_all + dict-freedict-eng-iri_1.3-4_all + dict-freedict-eng-ita_1.3-4_all + dict-freedict-eng-lat_1.3-4_all + dict-freedict-eng-nld_1.3-4_all + dict-freedict-eng-por_1.3-4_all + dict-freedict-eng-rom_1.3-4_all + dict-freedict-eng-rus_1.3-4_all + dict-freedict-eng-scr_1.3-4_all + dict-freedict-eng-spa_1.3-4_all + dict-freedict-eng-swa_1.3-4_all + dict-freedict-eng-swe_1.3-4_all + dict-freedict-eng-tur_1.3-4_all + dict-freedict-eng-wel_1.3-4_all + dict-freedict-fra-deu_1.3-4_all + dict-freedict-fra-eng_1.3-4_all + dict-freedict-fra-nld_1.3-4_all + dict-freedict-gla-deu_1.3-4_all + dict-freedict-hin-eng_1.3-4_all + dict-freedict-hun-eng_1.3-4_all + dict-freedict-iri-eng_1.3-4_all + dict-freedict-ita-deu_1.3-4_all + dict-freedict-ita-eng_1.3-4_all + dict-freedict-jpn-deu_1.3-4_all + dict-freedict-lat-deu_1.3-4_all + dict-freedict-lat-eng_1.3-4_all + dict-freedict-nld-deu_1.3-4_all + dict-freedict-nld-eng_1.3-4_all + dict-freedict-nld-fra_1.3-4_all + dict-freedict-por-deu_1.3-4_all + dict-freedict-por-eng_1.3-4_all + dict-freedict-scr-eng_1.3-4_all + dict-freedict-slo-eng_1.3-4_all + dict-freedict-spa-eng_1.3-4_all + dict-freedict-swa-eng_1.3-4_all + dict-freedict-swe-eng_1.3-4_all + dict-freedict-tur-deu_1.3-4_all + dict-freedict-tur-eng_1.3-4_all + dict-freedict-wel-eng_1.3-4_all + dict-gazetteer2k_1.0.0-5.2_all + dict-gazetteer2k-counties_1.0.0-5.2_all + dict-gazetteer2k-places_1.0.0-5.2_all + dict-gazetteer2k-zips_1.0.0-5.2_all + dict-gcide_0.48.1_all + dict-jargon_4.4.7-2_all + dict-moby-thesaurus_1.0-6.2_all + dict-vera_1:1.17-6_all + dict-wn_1:3.0-29_all + dictem_1.0.2-1_all + dictionaries-common_1.12.11_all + dictionaries-common-dev_1.12.11_all + dictionary-el_1.8.7-15_all + didjvu_0.2.3-2_all + diet-doc_2.8.0-1_all + dietlibc-doc_0.33~cvs20120325-4_all + diffmon_20020222-2.5_all + diffuse_0.4.6-1_all + diffutils-doc_1:3.2-6_all + digikam-data_4:2.6.0-1_all + digikam-doc_4:2.6.0-1_all + ding_1.7-2_all + diploma_1.2.11_all + dir2ogg_0.11.8-1_all + directoryassistant_2.0-1.1_all + dirvish_1.2.1-1.2_all + disc-cover_1.5.6-1_all + discover-data_2.2010.10.18_all + discus_0.2.9-6_all + dish_1.18.3-1_all + disk-manager_1.1.1-2_all + disper_0.3.0-1_all + dissy_9-3_all + dist_1:3.5-30-3.2_all + distro-info-data_0.17~deb7u1_all + disulfinder-data_1.2.11-2_all + dita-ot_1.5.3-1_all + dita-ot-doc_1.5.3-1_all + ditaa_0.9+ds1-3_all + ditrack_0.8-1.1_all + ditz_0.5-1_all + diveintopython_5.4-2_all + diveintopython-zh_5.4b-1_all + diveintopython3_20110517+77958af-1_all + divxcomp_0.1-7_all + dizzy_0.3-1_all + djagios_0.1.3+dfsg-1_all + django-ajax-selects_1.2.4-1_all + django-filter_0.5.3-3_all + django-tables_0.10.2-2_all + djvulibre-desktop_3.5.25.3-1_all + djvulibre-plugin_4.9-2_all + djvusmooth_0.2.11-1_all + dkimproxy_1.4.1-3_all + dkms_2.2.0.3-1.2_all + dl10n_3.00_all + dlint_1.4.0-7_all + dlocate_1.02_all + dmz-cursor-theme_0.4.3_all + dnet-common_2.60_all + dns-browse_1.9-7_all + dns323-firmware-tools_0.3-2_all + dnsmasq_2.62-3+deb7u1_all + dnssec-tools_1.13-1_all + dnswalk_2.0.2.dfsg.1-0.1_all + doc-base_0.10.4_all + doc-central_1.8.2+nmu3_all + doc-debian_6.1_all + doc-debian-es_2.6_all + doc-debian-fr_3.1.3.1_all + doc-linux-fr-html_2012.11-1_all + doc-linux-fr-text_2012.11-1_all + doc-linux-hr_20000416.1_all + doc-linux-ja-html_2006.05.25-1.1_all + doc-linux-ja-text_2006.05.25-1.1_all + doc-linux-pl_2002.06.14-2_all + doc-linux-pl-html_2002.06.14-2_all + docbook_4.5-5.1_all + docbook-defguide_2.0.17+svn9047-1_all + docbook-dsssl_1.79-7_all + docbook-dsssl-doc_1.79-6_all + docbook-ebnf_1.2~cr1-5.1_all + docbook-html-forms_1.1.0-4.1_all + docbook-mathml_1.1CR1-2_all + docbook-simple_1.1-4.2_all + docbook-slides_3.4.0-5_all + docbook-slides-demo_3.4.0-1_all + docbook-utils_0.6.14-3_all + docbook-website_2.5.0.0-8_all + docbook-xml_4.5-7.2_all + docbook-xsl_1.76.1+dfsg-1_all + docbook-xsl-doc-html_1.76.1-1_all + docbook-xsl-doc-pdf_1.76.1-1_all + docbook-xsl-doc-text_1.76.1-1_all + docbook-xsl-ns_1.76.1+dfsg-1_all + docbook-xsl-saxon_1.00.dfsg.1-5_all + docbook2odf_0.244-1.1_all + docbook5-xml_5.0-2_all + docdiff_0.4.0-2_all + docky_2.1.4-1_all + doclifter_2.7-1_all + doconce_0.7.3-1_all + doctorj_5.0.0-5_all + doctrine_1.2.4-1_all + docutils-common_0.8.1-8_all + docutils-doc_0.8.1-8_all + docvert_4.0-7_all + docvert-libreoffice_4.0-7_all + docvert-openoffice.org_1:3.4.0~ooo340m1-7_all + docx2txt_1.2-1_all + dokuwiki_0.0.20120125b-2_all + dolfin-bin_1.0.0-7_all + dolfin-dev_1.0.0-7_all + dolfin-doc_1.0.0-7_all + dopewars-data_1.5.12-13_all + dosage_1.6.0-1_all + dossizola-data_1.0-8.3_all + dot2tex_2.8.7+repack-1_all + dotlrn_2.5.0+dfsg-6+wheezy4_all + dots_0.0.20100108-3_all + douf00_3.0.0-1_all + dovecot-common_1:2.1.7-7_all + doxygen-doc_1.8.1.2-2_all + doxygen-latex_1.8.1.2-2_all + doxypy_0.4.2-1_all + dozzaqueux-data_3.21-4_all + dpatch_2.0.35_all + dphys-config_20100216-1_all + dphys-swapfile_20061020-4_all + dpkg-awk_1.2_all + dpkg-cross_2.6.7_all + dpkg-dev_1.16.12_all + dpkg-dev-el_35.2+nmu1_all + dpkg-repack_1.37_all + dpkg-ruby_0.3.8_all + dpkg-sig_0.13.1_all + dpkg-www_2.54+nmu1_all + dpsyco_1.0.36_all + dpsyco-base_1.0.36_all + dpsyco-cfengine_1.0.36_all + dpsyco-devel_1.0.36_all + dpsyco-lib_1.0.36_all + dpsyco-mysql_1.0.36_all + dpsyco-patch_1.0.36_all + dpsyco-samba_1.0.36_all + dpsyco-skel_1.0.36_all + dpsyco-ssh_1.0.36_all + dpsyco-sudo_1.0.36_all + dput_0.9.6.3+nmu2_all + draai_20110603-1_all + dracut_020-2_all + dracut-network_020-2_all + dragbox_0.4.0-1_all + drbdlinks_1.19-1_all + drbl_1.10.90-1_all + dreamchess-data_0.2.0-3_all + dreampie_1.1.1-2_all + drgeo-doc_1.5-7_all + driconf_0.9.1-2_all + drizzle-dev-doc_1:7.1.36-stable-1_all + drizzle-doc_1:7.1.36-stable-1_all + drobo-utils_0.6.1+repack-1_all + drpython_1:3.11.1-2_all + drraw_2.2b2-4_all + drslib_0.3.0a3-3_all + drupal7_7.14-2+deb7u2_all + drush_5.4-1_all + dsc-statistics-presenter_201203250530-2_all + dsdp-doc_5.8-9.1_all + dspam-doc_3.10.1+dfsg-11_all + dspam-webfrontend_3.10.1+dfsg-11_all + dssi-dev_1.1.1~dfsg0-1_all + dstat_0.7.2-3_all + dtc-xen_0.5.17-1_all + dtc-xen-firewall_0.5.17-1_all + dtdinst_20091111-5_all + dtrx_6.6-1.1_all + dupload_2.7.0_all + duply_1.5.5.5-1_all + durep_0.9-2.3_all + dvcs-autosync_0.5_all + dvdisaster-doc_0.72.4-1_all + dvi2ps-fontdata-a2n_1.0.1-3_all + dvi2ps-fontdata-ja_1.0.1-3_all + dvi2ps-fontdata-n2a_1.0.1-3_all + dvi2ps-fontdata-ptexfake_1.0.1-3_all + dvi2ps-fontdata-rsp_1.0.1-3_all + dvi2ps-fontdata-tbank_1.0.1-3_all + dvi2ps-fontdata-three_1.0.1-3_all + dvi2ps-fontdesc-morisawa5_0.5_all + dvips-fontdata-n2bk_0.0.2001.12.12-3_all + dwoo_1.1.1-1_all + dx-doc_1:4.4.4-4_all + dxsamples_4.2.0-1_all + dynalogin-client-php_0.9.14-2_all + dynare-common_4.3.0-2_all + dynare-doc_4.3.0-2_all + dyndns_2012.0112-1_all + e2wm_1.2+git20120601-1_all + ears_1.0.1-2.1_all + easygit_0.99-1_all + easypg_0.0.16-2.1_all + eb-doc_4.4.3-6_all + eboard-extras-pack1_2-3_all + ecaccess_4.0.0-3_all + ecasound-doc_2.9.0-1_all + ecasound-el_2.9.0-1_all + ecb_2.40+cvs20110608-3_all + echolot_2.1.8-8_all + ecl-doc_11.1.1+dfsg1-2_all + eclipse_3.8.0~rc4-1_all + eclipse-anyedit_2.4.2-1_all + eclipse-cdt_8.1.0+dfsg-2_all + eclipse-cdt-autotools_8.1.0+dfsg-2_all + eclipse-cdt-pkg-config_0.5.4+svn212-1_all + eclipse-cdt-valgrind_1.0.0-1_all + eclipse-cdt-valgrind-remote_1.0.0-1_all + eclipse-egit_2.0.0-1_all + eclipse-egit-mylyn_2.0.0-1_all + eclipse-emf_2.5.0-2_all + eclipse-emf-examples_2.5.0-2_all + eclipse-emf-sdk_2.5.0-2_all + eclipse-gef_3.7.1-1_all + eclipse-gef-doc_3.7.1-1_all + eclipse-jdt_3.8.0~rc4-1_all + eclipse-mercurialeclipse_1.9.4-2_all + eclipse-mylyn_3.8.0-2_all + eclipse-mylyn-builds-hudson_3.8.0-2_all + eclipse-mylyn-context-cdt_3.8.0-2_all + eclipse-mylyn-context-jdt_3.8.0-2_all + eclipse-mylyn-context-pde_3.8.0-2_all + eclipse-mylyn-tasks-bugzilla_3.8.0-2_all + eclipse-mylyn-tasks-trac_3.8.0-2_all + eclipse-mylyn-versions-cvs_3.8.0-2_all + eclipse-mylyn-wikitext_3.8.0-2_all + eclipse-platform-data_3.8.0~rc4-1_all + eclipse-rse_3.1.2-1_all + eclipse-xsd_2.5.0-2_all + eclipse-xsd-sdk_2.5.0-2_all + edb_1.31-2_all + edict_2012.05.09-1_all + edict-el_1.06-9_all + editmoin_1.17-1_all + editra_0.6.58-1_all + edos-debcheck_1.0-9_all + edos-rpmcheck_1.0-9_all + eeepc-acpi-scripts_1.1.12_all + eekboek_2.00.04-1_all + eekboek-db-postgresql_2.00.04-1_all + eekboek-gui_2.00.04-1_all + eficas_6.4.0-1-1.1_all + efp_1.4-2_all + egg_4.0.6+0.20041122cvs-19_all + eggdrop-data_1.6.20-1_all + eglibc-source_2.13-38+deb7u1_all + eiskaltdcpp_2.2.6-4_all + eiskaltdcpp-common_2.2.6-4_all + eiskaltdcpp-emoticons_2.2.6-4_all + eiskaltdcpp-gtk-data_2.2.6-4_all + eiskaltdcpp-qt-data_2.2.6-4_all + eiskaltdcpp-scripts_2.2.6-4_all + eiskaltdcpp-sounds_2.2.6-4_all + ekg2-api-docs_1:0.3.1-3_all + el-get_3.1-1_all + elastix-doc_4.5-2_all + eldav_0.8.1-5_all + electric_8.10-2_all + elektra-doc_0.7.1-1_all + elib_1.0-11.1_all + elida_0.4+nmu1_all + elinks-data_0.12~pre5-9_all + elinks-doc_0.12~pre5-9_all + elisa_1.0.9+bzr1614-1.1_all + elkdoc_3.99.8-2_all + elki_0.5.0-1_all + elks-libc_0.16.17-3.1_all + elmer-common_6.1.0.svn.5396.dfsg2-2_all + elscreen_1.4.6-5_all + elserv_0.4.0+0.20011203cvs-17.1_all + elvis-common_2.2.0-11.1_all + elyxer_1.2.3-1_all + elza_1.4.3-16_all + emacs_45.0_all + emacs-calfw_1.3+git20111208-1_all + emacs-calfw-howm_1.3+git20111208-1_all + emacs-chess_2.0b6-1.1_all + emacs-goodies-el_35.2+nmu1_all + emacs-intl-fonts_1.2.1-8_all + emacs-jabber_0.8.0-3_all + emacs-window-layout_1.1-2_all + emacs23-common_23.4+1-4_all + emacs23-el_23.4+1-4_all + emacsen-common_2.0.5_all + emacspeak_29.0-9_all + email-reminder_0.7.6-5_all + ember-media_0.6.2.1-1_all + emboss-data_6.4.0-2_all + emboss-doc_6.4.0-2_all + emboss-explorer_2.2.0-7+deb7u1_all + emboss-test_6.4.0-2_all + emdebian-archive-keyring_2.0.3_all + emdebian-crush_2.2.19_all + emdebian-grip_3.0.7_all + emdebian-grip-server_3.0.7_all + emdebian-tdeb_3.0.7_all + emelfm2-svg-icons_20100219-2_all + emesene_2.12.5+dfsg-1_all + emma_0.6-4_all + empathy-common_3.4.2.3-2+deb7u1_all + enamdict_2012.05.09-1_all + enemies-of-carlotta_1.2.6-4_all + engauge-digitizer-doc_5.0-3_all + enigma-data_1.10~~pre-alpha+r2236-1_all + enigma-doc_1.10~~pre-alpha+r2236-1_all + enna-theme_0.4.1~r3557-2.1_all + ensymble_0.28-2_all + entagged_0.35-4_all + eog-dev_3.4.2-1+build1_all + epic4-help_1:2.0+20050315-2_all + epic4-script-lice_1:4.2.5i-1_all + epic5-script-lice_1:5.2.3-1_all + epigrass_2.0.4-3_all + epigrass-doc_2.0.4-3_all + epiphany-browser-data_3.4.2-2.1_all + epiphany-data_0.7.0-6_all + episoder_0.6.5-1_all + epoptes_0.5.6-1_all + epoptes-client_0.5.6-1_all + epson-escpr_1.1.1-2_all + ept-cache_1.0.9_all + epydoc-doc_3.0.1+dfsg-1_all + epylog_1.0.7-1_all + eqonomize-doc_0.6-7_all + equivs_2.0.9_all + erc_5.3-1_all + eric_4.5.3-1_all + eric-api-files_4.5.3-1_all + erlang_1:15.b.1-dfsg-4_all + erlang-doc_1:15.b.1-dfsg-4_all + erlang-esdl-dev_1.2-2_all + erlang-esdl-doc_1.2-2_all + erlang-examples_1:15.b.1-dfsg-4_all + erlang-ic-java_1:15.b.1-dfsg-4_all + erlang-jinterface_1:15.b.1-dfsg-4_all + erlang-manpages_1:15.b.1-dfsg-4_all + erlang-mode_1:15.b.1-dfsg-4_all + erlang-nox_1:15.b.1-dfsg-4_all + erlang-src_1:15.b.1-dfsg-4_all + erlang-x11_1:15.b.1-dfsg-4_all + erubis_2.7.0-2_all + erubis-doc_2.7.0-2_all + esmtp-run_1.2-10_all + esound-common_0.2.41-10_all + espeak-gui_0.4-3_all + ess_12.04-4-1_all + etckeeper_0.63_all + ethstats_1.0-5_all + etktab_3.2-4_all + etoolbox_2.1-1_all + etw-data_3.6+svn140-4_all + euca2ools_2.0.2-1_all + euler-doc_1.61.0-8.1_all + evernote-mode_0.41-3_all + evince-common_3.4.0-3.1_all + evolution-common_3.4.4-3_all + evolution-data-server-common_3.4.4-3_all + evolution-data-server-doc_3.4.4-3_all + evolver-doc_2.30c.dfsg-3_all + exabgp_2.0.7-1_all + exaile_0.3.2.2-3_all + exaile-plugin-contextinfo_0.3.2.2-3_all + exaile-plugin-ipod_0.3.2.2-3_all + exaile-plugin-moodbar_0.3.2.2-3_all + exfalso_2.4-1_all + exim4_4.80-7_all + exim4-config_4.80-7_all + exim4-doc-html_4.80-2_all + exim4-doc-info_4.80-2_all + exmh_1:2.8.0~rc1-2_all + expeyes_2.0.0-3_all + expeyes-doc-en_2.0.0-3_all + expeyes-doc-fr_2.0.0-3_all + expeyes-firmware-dev_2.0.0-3_all + extplorer_2.1.0b6+dfsg.3-4_all + extra-xdg-menus_1.0-4_all + extrema-doc_4.4.5.dfsg-3_all + extremetuxracer-data_0.4-5_all + extremetuxracer-extras_0.6-1_all + extremetuxracer-gimp-dev_0.4-5_all + eyed3_0.6.18-1_all + ezgo-accessories_0.7.1_all + ezgo-education_0.7.1_all + ezgo-games_0.7.1_all + ezgo-imaging_0.7.1_all + ezgo-multimedia_0.7.1_all + ezgo-network_0.7.1_all + ezgo-office_0.7.1_all + ezgo-tasks_0.7.1_all + facter_1.6.10-1_all + fadecut_0.1.1-1_all + fai-client_4.0.8~deb7u1_all + fai-doc_4.0.8~deb7u1_all + fai-nfsroot_4.0.8~deb7u1_all + fai-quickstart_4.0.8~deb7u1_all + fai-server_4.0.8~deb7u1_all + fai-setup-storage_4.0.8~deb7u1_all + fail2ban_0.8.6-3wheezy2_all + fake-hwclock_0.5_all + fakechroot_2.16-1_all + famfamfam-flag-gif_0.1-2_all + famfamfam-flag-png_0.1-2_all + fancontrol_1:3.3.2-2+deb7u1_all + fastjet-doc_3.0.2+dfsg-2_all + fastjet-examples_3.0.2+dfsg-2_all + fastlink-doc_4.1P-fix95-3_all + fatrat-data_1.1.3-5_all + fatrat-dev_1.1.3-5_all + faumachine-data_20110812-1.2_all + fb-music-high_0.1.2_all + fbbdoc_1:1999-2.1_all + fccexam_1.0.3-1_all + fcheck_2.7.59-18_all + fcitx_1:4.2.4.1-7_all + fcitx-config-common_0.4.4-1_all + fcitx-data_1:4.2.4.1-7_all + fcitx-frontend-all_1:4.2.4.1-7_all + fcitx-table-all_1:4.2.4.1-7_all + fckeditor_1:2.6.6-3_all + fcmp_1.18.20030311-3_all + fdpowermon_1.5_all + fdpowermon-icons_1.5_all + feed2imap_1.0-2_all + feed2omb_0.9.2-1_all + felix-latin-data_2.0-3.1_all + felix-main_4.0.1-2_all + fenics_1:1.0.0-1_all + fenix-dev_0.92a.dfsg1-9_all + ferm_2.1-5_all + ferret_0.6-3_all + festival-czech_0.3-2_all + festival-doc_1.4.2-8_all + festival-freebsoft-utils_0.10-3_all + festival-hi_0.1-9_all + festival-mr_0.1-9_all + festival-te_0.3.3-4_all + festlex-cmu_1.4.0-6_all + festlex-ifd_2.0+debian0-3_all + festlex-poslex_1.4.0-5_all + festvox-czech-dita_1.0.0-2_all + festvox-czech-krb_1.0.0-2_all + festvox-czech-machac_1.0.0-2_all + festvox-czech-ph_0.1-3_all + festvox-hi-nsk_0.1-9_all + festvox-italp16k_2.0+debian0-3_all + festvox-itapc16k_2.0+debian0-3_all + festvox-kallpc16k_1.4.0-5_all + festvox-kallpc8k_1.4.0-4_all + festvox-kdlpc16k_1.4.0-5_all + festvox-kdlpc8k_1.4.0-5_all + festvox-mr-nsk_0.1-9_all + festvox-ru_0.5-5_all + festvox-suopuhe-common_1.0g-20051204-3_all + festvox-suopuhe-lj_1.0g-20051204-3_all + festvox-suopuhe-mv_20041119-1_all + festvox-te-nsk_0.3.3-4_all + fetch-crl_3.0.8-1_all + fetchmailconf_6.3.21-4_all + fetchyahoo_2.14.7-1_all + feynmf_1.08-8_all + ffado-mixer-qt4_2.0.99+svn2171-2_all + ffdiaporama-data_1.3-1_all + ffmpeg-dbg_6:0.8.9-1_all + ffmpeg-doc_6:0.8.9-1_all + fftw-docs_2.1.5-1_all + fgo_1.3.1-2_all + fiaif_1.22.1-1_all + fig2ps_1.5-1_all + figtree_1.3.1-1_all + file-rc_0.8.15_all + filepp_1.8.0-3_all + filetraq_0.2-14_all + filezilla-common_3.5.3-2_all + filler_1.02-6.1_all + fillets-ng-data_1.0.0-1_all + fillets-ng-data-cs_1.0.0-1_all + fillets-ng-data-nl_1.0.0-1_all + finch-dev_2.10.6-3_all + firebird2.5-common_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-common-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-doc_2.5.2.26540.ds4-1~deb7u1_all + firebird2.5-examples_2.5.2.26540.ds4-1~deb7u1_all + firefox-sage_1.4.12-3+deb7u1_all + firehol_1.273-1_all + firmware-linux-free_3.2_all + fishpoke_0.1.6-4_all + fishpolld_0.1.6-4_all + fitscheck_1:3.0.8-2_all + fizmo_0.7.2-2_all + fizmo-common_0.7.2-2_all + fizsh_1.0.2-1_all + flamethrower_0.1.8-3_all + flann-doc_1.7.1-4_all + flare-data_0.15.1-1_all + flashbake_0.26.2-4_all + flashybrid_0.17_all + flawfinder_1.27-3_all + flex-doc_2.5.35-10.1_all + flex-old-doc_2.5.4a-10_all + flexbackup_1.2.1-6.2_all + flickrbackup_0.2-3_all + flickrfs_1.3.9.1-9.1_all + flight-of-the-amazon-queen_1.0.0-7_all + flim_1:1.14.9+0.20110516-1_all + flowscan_1.006-13.2_all + flowscan-cuflow_1.7-6_all + flowscan-cugrapher_1.7-6_all + fltk1.1-doc_1.1.10-14_all + fltk1.3-doc_1.3.0-8_all + fluid-soundfont-gm_3.1-5_all + fluid-soundfont-gs_3.1-5_all + focalinux-html_2010-09-3_all + focalinux-text_2010-09-3_all + fofix_3.121-3_all + folks-common_0.6.9-1_all + font-hosny-amiri_0.103-1_all + fontconfig-config_2.9.0-7.1_all + fontforge-doc_0.0.20100429-1_all + fonts-aoyagi-kouzan-t_20051011-9_all + fonts-aoyagi-soseki_20070207-8_all + fonts-arabeyes_2.1-3_all + fonts-arphic-bkai00mp_2.10-11_all + fonts-arphic-bsmi00lp_2.10-12_all + fonts-arphic-gbsn00lp_2.11-12_all + fonts-arphic-gkai00mp_2.11-12_all + fonts-arphic-ukai_0.2.20080216.2-3_all + fonts-arphic-uming_0.2.20080216.2-4_all + fonts-baekmuk_2.2-7_all + fonts-beng_2:1.1_all + fonts-beng-extra_1.0-2_all + fonts-beteckna_0.4-5_all + fonts-bpg-georgian_0.5a-6_all + fonts-breip_1.0-7_all + fonts-cabin_1.5-1_all + fonts-cabinsketch_1.02-1_all + fonts-cantarell_0.0.9-1_all + fonts-century-catalogue_001.001-5_all + fonts-circos-symbols_0.61-3_all + fonts-cmu_0.7.0-2_all + fonts-comfortaa_1.5-2_all + fonts-cwtex-docs_1.0-2_all + fonts-cwtex-fs_1.0-2_all + fonts-cwtex-heib_1.0-2_all + fonts-cwtex-kai_1.0-2_all + fonts-cwtex-ming_1.0-2_all + fonts-cwtex-yen_1.0-2_all + fonts-dancingscript_1.1-1_all + fonts-dejima-mincho_227-9_all + fonts-deva_2:1.1_all + fonts-deva-extra_2.0-2_all + fonts-dkg-handwriting_0.15-1_all + fonts-dosis_1.7-1_all + fonts-droid_20111207+git-1_all + fonts-dustin_20030517-9_all + fonts-dzongkha_0.3-7_all + fonts-ecolier-court_1.00-4_all + fonts-ecolier-lignes-court_1.00-5_all + fonts-eeyek_1.0-1_all + fonts-evertype-conakry_0.002+source-2_all + fonts-f500_1.0-3_all + fonts-fanwood_1.1-2_all + fonts-farsiweb_0.4.dfsg-11_all + fonts-freefarsi_1.0.0~beta1-6_all + fonts-freefont-otf_20120503-1_all + fonts-freefont-ttf_20120503-1_all + fonts-gfs-artemisia_1.1-4_all + fonts-gfs-baskerville_1.1-4_all + fonts-gfs-bodoni-classic_1.1-4_all + fonts-gfs-complutum_1.1-5_all + fonts-gfs-didot_1.1-5_all + fonts-gfs-didot-classic_1.1-4_all + fonts-gfs-gazis_1.1-4_all + fonts-gfs-neohellenic_1.1-4_all + fonts-gfs-olga_1.1-3_all + fonts-gfs-porson_1.1-5_all + fonts-gfs-solomos_1.1-4_all + fonts-gfs-theokritos_1.1-4_all + fonts-gubbi_1.0-3_all + fonts-gujr_2:1.1_all + fonts-gujr-extra_1.0-2_all + fonts-guru_2:1.1_all + fonts-guru-extra_2.0-2_all + fonts-hanazono_20120421-1.1_all + fonts-horai-umefont_440-3_all + fonts-hosny-amiri_0.103-1_all + fonts-hosny-thabit_0.02-1_all + fonts-inconsolata_001.010-4_all + fonts-indic_2:1.1_all + fonts-ipaexfont_00103-14.1_all + fonts-ipaexfont-gothic_00103-14.1_all + fonts-ipaexfont-mincho_00103-14.1_all + fonts-ipafont_00303-10.1_all + fonts-ipafont-gothic_00303-10.1_all + fonts-ipafont-mincho_00303-10.1_all + fonts-ipamj-mincho_001.01-3_all + fonts-johnsmith-induni_20101012-4_all + fonts-junicode_0.7.6-1_all + fonts-jura_2.6.1-1_all + fonts-kacst_2.01+mry-6_all + fonts-kacst-one_5.0+svn11846-6_all + fonts-kanjistrokeorders_3.000-dfsg-2_all + fonts-kaushanscript_1.02-1_all + fonts-khmeros_5.0-5_all + fonts-kiloji_1:2.1.0-18_all + fonts-knda_2:1.1_all + fonts-knda-extra_1.0-2_all + fonts-komatuna_20101113-6_all + fonts-konatu_26-9_all + fonts-kouzan-mouhitsu_20090806-8_all + fonts-lao_0.0.20060226-8_all + fonts-lato_1.104-2_all + fonts-levien-museum_001.002-3_all + fonts-levien-typoscript_000.001-3_all + fonts-lg-aboriginal_1.0-5_all + fonts-liberation_1.07.2-6_all + fonts-lindenhill_1.2-2_all + fonts-linex_2.2-6_all + fonts-linuxlibertine_5.1.3-1_all + fonts-lklug-sinhala_0.6-2_all + fonts-lobster_2.0-1_all + fonts-lobstertwo_2.0-1_all + fonts-lohit-beng-assamese_2.5.1-1_all + fonts-lohit-beng-bengali_2.5.1-1_all + fonts-lohit-deva_2.5.1-1_all + fonts-lohit-gujr_2.5.1-1_all + fonts-lohit-guru_2.5.1-1_all + fonts-lohit-knda_2.5.1-1_all + fonts-lohit-mlym_2.5.1-1_all + fonts-lohit-orya_2.5.1-1_all + fonts-lohit-taml_2.5.1-1_all + fonts-lohit-telu_2.5.1-2_all + fonts-lyx_2.0.3-3_all + fonts-manchufont_2.007.svn0068-2_all + fonts-mgopen_1.1-8_all + fonts-migmix_20120411-2_all + fonts-misaki_11-20080603-13_all + fonts-mlym_2:1.1_all + fonts-mmcedar_20101113a-2_all + fonts-mona_2.90-7_all + fonts-monapo_20090423-8_all + fonts-motoya-l-cedar_1.00-6_all + fonts-motoya-l-maruberi_1.00-5_all + fonts-mph-2b-damase_001.000.dfsg.2+ds1-4_all + fonts-mplus_049-1_all + fonts-nafees_1.2-4_all + fonts-nakula_1.0-2_all + fonts-nanum_3.020-1_all + fonts-nanum-coding_2.0-4_all + fonts-nanum-eco_1.000-2_all + fonts-nanum-extra_3.020-1_all + fonts-nanum-gothic-light_1.000-2_all + fonts-navilu_1.1-1_all + fonts-ocr-a_1.0-4_all + fonts-oflb-asana-math_000.907-4_all + fonts-oflb-euterpe_1.1-4_all + fonts-okolaks_0.5-5_all + fonts-oldstandard_2.2really-2_all + fonts-opendin_0.1-3_all + fonts-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + fonts-orya_2:1.1_all + fonts-orya-extra_2.0-2_all + fonts-pagul_1.0-5_all + fonts-paktype_0.0svn20121225-1_all + fonts-pecita_3.3-1_all + fonts-play_1.002+20111215.1+ds2-1_all + fonts-prociono_2.3-2_all + fonts-quattrocento_1.1-1_all + fonts-rufscript_010-3_all + fonts-sahadeva_1.0-2_all + fonts-samyak_1.2.2-3_all + fonts-samyak-deva_1.2.2-3_all + fonts-samyak-gujr_1.2.2-3_all + fonts-samyak-mlym_1.2.2-3_all + fonts-samyak-orya_1.2.2-3_all + fonts-samyak-taml_1.2.2-3_all + fonts-sawarabi-gothic_20120615-1_all + fonts-sawarabi-mincho_20110220-5_all + fonts-senamirmir-washra_4.1-6_all + fonts-sil-abyssinica_1.200-3_all + fonts-sil-andika_1.002-2_all + fonts-sil-charis_4.106-5_all + fonts-sil-dai-banna_2.1-5_all + fonts-sil-doulos_4.106-4_all + fonts-sil-ezra_2.51-7_all + fonts-sil-galatia_2.1-4_all + fonts-sil-gentium_20081126:1.02-12_all + fonts-sil-gentium-basic_1.1-5_all + fonts-sil-nuosusil_2.1.1-7_all + fonts-sil-padauk_2.61-4_all + fonts-sil-scheherazade_1.001-8_all + fonts-sil-sophia-nubian_1.000-5_all + fonts-sil-zaghawa-beria_1.000-2_all + fonts-sipa-arundina_0.2.0-5_all + fonts-smc_5.0.1-2_all + fonts-stix_1.1.0-1_all + fonts-takao_003.02.01-7.1_all + fonts-takao-gothic_003.02.01-7.1_all + fonts-takao-mincho_003.02.01-7.1_all + fonts-taml_2:1.2_all + fonts-taml-tamu_1.0-1_all + fonts-taml-tscu_1.0-1_all + fonts-telu_2:1.1_all + fonts-telu-extra_2.0-2_all + fonts-thai-tlwg_1:0.5.0-5_all + fonts-tibetan-machine_1.901b-4_all + fonts-tlwg-garuda_1:0.5.0-5_all + fonts-tlwg-kinnari_1:0.5.0-5_all + fonts-tlwg-loma_1:0.5.0-5_all + fonts-tlwg-mono_1:0.5.0-5_all + fonts-tlwg-norasi_1:0.5.0-5_all + fonts-tlwg-purisa_1:0.5.0-5_all + fonts-tlwg-sawasdee_1:0.5.0-5_all + fonts-tlwg-typewriter_1:0.5.0-5_all + fonts-tlwg-typist_1:0.5.0-5_all + fonts-tlwg-typo_1:0.5.0-5_all + fonts-tlwg-umpush_1:0.5.0-5_all + fonts-tlwg-waree_1:0.5.0-5_all + fonts-tomsontalks_1.1-3_all + fonts-tuffy_20120614-1_all + fonts-ubuntu-title_1:0.3-1_all + fonts-ukij-uyghur_20110217-2_all + fonts-umeplus_20120403-3_all + fonts-unfonts-core_1.0.2-080608-6_all + fonts-unfonts-extra_1.0.2-080608-5_all + fonts-unikurdweb_1.0-4_all + fonts-uralic_0.0.20040829-4_all + fonts-vlgothic_20120629-2_all + fonts-vollkorn_2.1-1_all + fonts-yanone-kaffeesatz_0.20100525-4_all + fonts-yozvox-yozfont_13.09-dfsg-2_all + fonts-yozvox-yozfont-antique_13.09-dfsg-2_all + fonts-yozvox-yozfont-cute_13.09-dfsg-2_all + fonts-yozvox-yozfont-edu_13.09-dfsg-2_all + fonts-yozvox-yozfont-new-kana_13.09-dfsg-2_all + fonts-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + fonttools_2.3-1_all + fonty-rg_0.5_all + fontypython_0.4.4-1_all + foo2zjs_20120510dfsg0-1_all + fookebox_0.6.1-1_all + foomatic-db_20120523-1_all + foomatic-db-compressed-ppds_20120523-1_all + foomatic-db-gutenprint_5.2.9-1_all + fop_1:1.0.dfsg2-6_all + fop-doc_1:1.0.dfsg2-6_all + forg_0.5.1-7_all + fort77_1.15-8_all + fortunes_1:1.99.1-4_all + fortunes-bg_1.1_all + fortunes-bofh-excuses_1.2-2_all + fortunes-br_20080530_all + fortunes-cs_2.0-1_all + fortunes-de_0.30-1_all + fortunes-debian-hints_1.99_all + fortunes-eo_20020729-4_all + fortunes-eo-ascii_20020729-4_all + fortunes-eo-iso3_20020729-4_all + fortunes-es_1.32_all + fortunes-es-off_1.32_all + fortunes-fr_0.65+nmu2_all + fortunes-ga_0.8_all + fortunes-it_1.99-3_all + fortunes-it-off_1.99-3_all + fortunes-mario_0.20-7_all + fortunes-min_1:1.99.1-4_all + fortunes-off_1:1.99.1-4_all + fortunes-pl_0.0.20100311-1_all + fortunes-ru_1.52-2_all + foxyproxy_3.4-1.1~deb7u1_all + fp-docs_2.6.0-9_all + fp-docs-2.6.0_2.6.0-9_all + fpc_2.6.0-9_all + fpc-2.6.0_2.6.0-9_all + fpc-source_2.6.0-9_all + fpc-source-2.6.0_2.6.0-9_all + fpdns_0.9.3-4_all + fprintd-doc_0.4.1-5-g73edad0-3_all + fprobe-ng_1.1-7.3_all + fragmaster_1.6-3_all + freealchemist_0.5-1_all + freebirth-data_0.3.2-8_all + freebsd-glue_0.0.4_all + freebsd-manpages_8.2-1_all + freebsd-sendpr_3.113+8.2-1_all + freeciv-data_2.3.2-1_all + freeciv-sound-standard_2.3.2-1_all + freecol_0.10.5+dfsg-1_all + freedesktop-sound-theme_0.7.pristine-2_all + freediams-doc-en_0.7.6-1_all + freediams-doc-fr_0.7.6-1_all + freedink_1.08.20120427-2.1_all + freedink-data_1.08.20111016-1_all + freedm_0.7-1_all + freedoom_0.7-1_all + freedroid-data_1.0.2+cvs040112-4_all + freedroidrpg-data_0.15.1-1_all + freefem++-doc_3.19.1-1_all + freefem-doc_3.5.8-5_all + freefem-examples_3.5.8-5_all + freegish-data_1.53+git20101011+dfsg-2_all + freeipmi_1.1.5-3_all + freeipmi-common_1.1.5-3_all + freemat-data_4.0-5_all + freemat-help_4.0-5_all + freemedforms-common-resources_0.7.6-1_all + freemedforms-emr-doc-en_0.7.6-1_all + freemedforms-emr-doc-fr_0.7.6-1_all + freemedforms-emr-resources_0.7.6-1_all + freemedforms-freedata_0.7.6-1_all + freemedforms-i18n_0.7.6-1_all + freemedforms-project_0.7.6-1_all + freemedforms-theme_0.7.6-1_all + freemind_0.9.0+dfsg-2_all + freemind-browser_0.9.0+dfsg-2_all + freemind-doc_0.9.0+dfsg-2_all + freemind-plugins-help_0.9.0+dfsg-2_all + freemind-plugins-script_0.9.0+dfsg-2_all + freemind-plugins-svg_0.9.0+dfsg-2_all + freepats_20060219-1_all + freeplane_1.1.3-2_all + freeplayer_20070531+dfsg.1-3_all + freepops-doc_0.2.9-7_all + freepwing_1.5-1_all + freeradius-common_2.1.12+dfsg-1.2_all + freeradius-dialupadmin_2.1.12+dfsg-1.2_all + freesci-doc_0.6.4-7_all + freespeak_0.3.0-5_all + freetable_2.3-4_all + freetds-common_0.91-2+deb7u1_all + freetennis-common_0.4.8-9_all + freetts_1.2.2-3_all + freevial_1.3-2_all + freevo_1.9.2b2-4.2_all + freevo-data_1.9.2b2-4.2_all + freevo-doc_1.9.2b2-4.2_all + freevo-lirc_1.9.2b2-4.2_all + freewnn-common_1.1.1~a021+cvs20100325-6_all + frei0r-plugins-doc_1.1.22git20091109-1.2_all + frescobaldi_2.0.5+ds1-1_all + fretsonfire_1.3.110.dfsg-3_all + fretsonfire-game_1.3.110.dfsg-3_all + fretsonfire-songs-muldjord_2.dfsg-1_all + fretsonfire-songs-sectoid_1.dfsg-2_all + fritzing-data_0.6.3b+dfsg-3.1_all + frogdata_0.3-2_all + frogr-data_0.7-2_all + frontaccounting_2.2.10-3.1_all + frown-doc_0.6.1-13_all + frozen-bubble-data_2.212-3_all + fslint_2.42-2_all + fso-frameworkd_0.9.5.9+git20110512-4_all + fso-sounds-yue-base_20081031-2_all + fso-sounds-yue-full_20081031-2_all + fso-specs_2012.05.24.1-1_all + fsprotect_1.0.6_all + fsviewer-icons_1.0-6_all + fte-docs_0.50.2b6-1_all + ftgl-dev_2.1.3~rc5-4_all + ftp-proxy-doc_1.9.2.4-8_all + ftp-upload_1.5_all + ftphs-doc_1:8_all + ftpwatch_1.21_all + fts_1.1-1.1_all + fts-clacks_1.1-1.1_all + fts-fai-ldap_1.1-1.1_all + fts-ltsp-ldap_1.1-1.1_all + fts-opsi_1.1-1.1_all + funcoeszz_8.3-2_all + funkload_1.13.0-1.1_all + funnelweb-doc_3.2d-3_all + funny-manpages_1.3-5_all + funnyboat_1.5-8_all + furiusisomount_0.11.3.1~repack1-0.1_all + fuse-emulator-common_1.0.0.1a+dfsg1-4_all + fuse-utils_2.9.0-2+deb7u1_all + fuse4bsd-dkms_0.3.9~pre1.20080208-4_all + fusil_1.4-1_all + fuss-launcher_0.5-1_all + fuzzyocr_3.6.0-7_all + fvwm-crystal_3.0.5.dfsg-5_all + fvwm-icons_20070101-1_all + fwanalog_0.6.9-6.2_all + fwbuilder-common_5.1.0-3_all + fwbuilder-doc_5.1.0-3_all + fweb-doc_1.62-11.1_all + fwsnort_1.6.2-1_all + g++-mingw-w64_4.6.3-14+8_all + g-wrap_1.9.14-1.1_all + g2p-sk_0.4.2-1_all + gadfly_1.0.0-15.1_all + gadmin-tools_10_all + gadmintools_10_all + gaduhistory_0.5-2_all + gaim-extendedprefs_0.7-2_all + gaim-hotkeys_0.2.4-1.2_all + gaim-librvp_0.9.5-3_all + gaim-themes_0.2-1_all + gaim-thinklight_0.11.1-1_all + gajim_0.15.1-4.1_all + galax-doc_1.1-10_all + gallery_1.5.10.dfsg-1.1_all + gallery-uploader_2.4-1_all + galternatives_0.13.5+nmu2_all + gambas3_3.1.1-2_all + gambas3-examples_3.1.1-2_all + gambas3-gb-chart_3.1.1-2_all + gambas3-gb-db-form_3.1.1-2_all + gambas3-gb-eval-highlight_3.1.1-2_all + gambas3-gb-form_3.1.1-2_all + gambas3-gb-form-dialog_3.1.1-2_all + gambas3-gb-form-mdi_3.1.1-2_all + gambas3-gb-form-stock_3.1.1-2_all + gambas3-gb-report_3.1.1-2_all + gambas3-gb-settings_3.1.1-2_all + gambas3-gb-web_3.1.1-2_all + gambas3-ide_3.1.1-2_all + gambc-doc_4.2.8-1.1_all + gameclock_4.0-3_all + gameconqueror_0.12-2_all + gamera-doc_3.3.3-2_all + gamera-gui_3.3.3-2_all + games-thumbnails_20120227_all + gamgi-data_0.15.8-1_all + gamgi-doc_0.15.8-1_all + gamine-data_1.1-2_all + gammu-doc_1.31.90-1_all + ganeti-instance-debootstrap_0.11-1_all + ganeti2_2.5.2-1_all + ganglia-monitor-python_3.3.8-1+nmu1_all + ganglia-webfrontend_3.3.8-1+nmu1_all + gant_1.9.7-1_all + ganyremote_5.13-1_all + gap_4r4p12-2_all + gap-character-tables_1r1p3-5_all + gap-doc_4r4p12-2_all + gap-libs_4r4p12-2_all + gap-online-help_4r4p12-2_all + gap-prim-groups_4r4p10-1_all + gap-small-groups_4r4p10-1_all + gap-small-groups-extra_4r4p10-1_all + gap-table-of-marks_1r1p4-1_all + gap-trans-groups_4r4p10-1_all + gaphor_0.17.0-1_all + garden-of-coloured-lights-data_1.0.8-1_all + garlic-doc_1.6-1_all + gastables_0.3-2_all + gauche-doc_0.9.1-5.1_all + gaupol_0.19.2-1_all + gausssum_2.2.5-2_all + gav-themes_0.7.3-2_all + gbackground_1.3-1_all + gbirthday_0.6.6-2_all + gbonds-data_2.0.3-2.1_all + gbrainy_1:2.1.2-1_all + gbrowse_2.48~dfsg-1_all + gbrowse-data_2.48~dfsg-1_all + gcal-common_3.6.1-2_all + gcalcli_2.1-2_all + gcap_0.1.1-1_all + gcc-4.4-locales_4.4.7-2_all + gcc-4.4-source_4.4.7-2_all + gcc-4.6-locales_4.6.3-14_all + gcc-4.6-source_4.6.3-14_all + gcc-4.7-locales_4.7.2-5_all + gcc-4.7-source_4.7.2-5_all + gcc-mingw-w64_4.6.3-14+8_all + gcc-mingw32_4.6.3-14+8_all + gcin-data_2.7.6.1+dfsg-1_all + gcin-dev_2.7.6.1+dfsg-1_all + gcipher_1.1-1_all + gcj-4.6-jre-lib_4.6.3-1_all + gcj-4.6-source_4.6.3-1_all + gcj-4.7-jre-lib_4.7.2-3_all + gcj-4.7-source_4.7.2-3_all + gcl-doc_2.6.7+dfsga-1_all + gco_0.5.0-6_all + gcom_0.32-2_all + gcompris-data_12.01-1_all + gcompris-sound-af_12.01-1_all + gcompris-sound-ar_12.01-1_all + gcompris-sound-ast_12.01-1_all + gcompris-sound-bg_12.01-1_all + gcompris-sound-br_12.01-1_all + gcompris-sound-cs_12.01-1_all + gcompris-sound-da_12.01-1_all + gcompris-sound-de_12.01-1_all + gcompris-sound-el_12.01-1_all + gcompris-sound-en_12.01-1_all + gcompris-sound-eo_12.01-1_all + gcompris-sound-es_12.01-1_all + gcompris-sound-eu_12.01-1_all + gcompris-sound-fi_12.01-1_all + gcompris-sound-fr_12.01-1_all + gcompris-sound-he_12.01-1_all + gcompris-sound-hi_12.01-1_all + gcompris-sound-hu_12.01-1_all + gcompris-sound-id_12.01-1_all + gcompris-sound-it_12.01-1_all + gcompris-sound-mr_12.01-1_all + gcompris-sound-nb_12.01-1_all + gcompris-sound-nl_12.01-1_all + gcompris-sound-nn_12.01-1_all + gcompris-sound-pa_12.01-1_all + gcompris-sound-pt_12.01-1_all + gcompris-sound-ptbr_12.01-1_all + gcompris-sound-ru_12.01-1_all + gcompris-sound-sl_12.01-1_all + gcompris-sound-so_12.01-1_all + gcompris-sound-sr_12.01-1_all + gcompris-sound-sv_12.01-1_all + gcompris-sound-th_12.01-1_all + gcompris-sound-tr_12.01-1_all + gcompris-sound-ur_12.01-1_all + gcompris-sound-zhcn_12.01-1_all + gconf2-common_3.2.5-1+build1_all + gcp_0.1.3-2_all + gcstar_1.6.2-1_all + gdb-mingw-w64-target_7.4.1-1.1+5_all + gdb-source_7.4.1+dfsg-0.1_all + gdcm-doc_2.2.0-14.1_all + gdebi_0.8.7_all + gdebi-core_0.8.7_all + gdebi-kde_0.8.7_all + gdeskcal_0.57.1-2.1_all + gdevilspie_1:0.5-2_all + gdis-data_0.90-4_all + gdpc-examples_2.2.5-2_all + geant321_1:3.21.14.dfsg-10_all + geant321-data_1:3.21.14.dfsg-10_all + geant321-doc_1:3.21.14.dfsg-10_all + geany-common_1.22+dfsg-2_all + geany-plugins_0.21.1.dfsg-4_all + geany-plugins-common_0.21.1.dfsg-4_all + gearhead-data_1.100-2_all + gearhead2-data_0.628-1_all + gearman_0.33-2_all + gearman-server_1.11-2_all + gecrit_2.8.3-1_all + geda_1:1.6.2-4.3_all + geda-doc_1:1.6.2-4.3_all + geda-examples_1:1.6.2-4.3_all + geda-symbols_1:1.6.2-4.3_all + geda-xgsch2pcb_0.1.3-2_all + gedit-common_3.4.2-1_all + gedit-dev_3.4.2-1_all + gedit-latex-plugin_3.4.0-1_all + gedit-r-plugin_0.7.1.2-Gtk3-1_all + gedit-source-code-browser-plugin_3.0.3-2_all + geeqie-common_1:1.0-10.1_all + geiser_0.1.4-2_all + gem-dev_1:0.93.3-5_all + gem-doc_1:0.93.3-5_all + gem2deb_0.3.0_all + genbackupdata_1.6-1_all + gendarme_2.10-6_all + geogebra_4.0.34.0+dfsg1-1_all + geogebra-gnome_4.0.34.0+dfsg1-1_all + geoip-database_20130213-1_all + geotranz_3.1-2.1_all + geotranz-doc_3.1-2.1_all + geotranz-help_3.1-2.1_all + germinate_2.10_all + gespeaker_0.7-3_all + get-flash-videos_1.25~git2012.06.27-1_all + get-iplayer_2.82-2+deb7u1_all + getdata_0.1-1_all + getmail4_4.32.0-2_all + gettext-doc_0.18.1.1-9_all + gettext-el_0.18.1.1-9_all + gettext-lint_0.4-2_all + geximon_0.7.7-2_all + gextractwinicons_0.3.1-1_all + gfarm-doc_2.4.1-1.1_all + gfax_0.7.7+ds-2_all + gff2ps_0.98d-4_all + gforth-common_0.7.0+ds2-0.1_all + gfortran-mingw-w64_4.6.3-14+8_all + gftp_2.0.19-4_all + gfxboot-examples_4.5.0-67.1-3_all + gfxboot-themes-kde_4.5.0-67.1-2_all + gfxboot-themes-opensuse_4.5.0-67.1-2_all + gfxboot-themes-sled_4.5.0-67.1-2_all + gfxboot-themes-sles_4.5.0-67.1-2_all + gfxboot-themes-upstream_4.5.0-67.1-2_all + ghc-doc_7.4.1-4_all + ghc6_7.4.1-4_all + ghc6-doc_7.4.1-4_all + ghc6-prof_7.4.1-4_all + ghextris_0.9.0-3_all + ghostscript-doc_9.05~dfsg-6.3+deb7u1_all + gimp-data_2.8.2-2+deb7u1_all + gimp-data-extras_1:2.0.1-3_all + gimp-help-common_2.6.1-1_all + gimp-help-de_2.6.1-1_all + gimp-help-en_2.6.1-1_all + gimp-help-es_2.6.1-1_all + gimp-help-fr_2.6.1-1_all + gimp-help-it_2.6.1-1_all + gimp-help-ko_2.6.1-1_all + gimp-help-nl_2.6.1-1_all + gimp-help-nn_2.6.1-1_all + gimp-help-pl_2.6.1-1_all + gimp-help-ru_2.6.1-1_all + gimp-help-sv_2.6.1-1_all + gimp-resynthesizer_0.16-3_all + ginspector_20050529-3.1_all + gir1.2-gupnp-dlna-1.0_0.6.6-1_all + gis-data_0.0.2_all + gis-gps_0.0.2_all + gis-osm_0.0.2_all + gis-remotesensing_0.0.2_all + gis-statistics_0.0.2_all + gis-tasks_0.0.2_all + gis-web_0.0.2_all + gis-workstation_0.0.2_all + git-all_1:1.7.10.4-1+wheezy1_all + git-arch_1:1.7.10.4-1+wheezy1_all + git-buildpackage_0.6.0~git20120601_all + git-cola_1.4.3.5-1_all + git-core_1:1.7.10.4-1+wheezy1_all + git-cvs_1:1.7.10.4-1+wheezy1_all + git-daemon-run_1:1.7.10.4-1+wheezy1_all + git-daemon-sysvinit_1:1.7.10.4-1+wheezy1_all + git-doc_1:1.7.10.4-1+wheezy1_all + git-dpm_0.8.4-1_all + git-el_1:1.7.10.4-1+wheezy1_all + git-email_1:1.7.10.4-1+wheezy1_all + git-extras_1.7.0-1.2_all + git-flow_0.4.1-2_all + git-ftp_0.7.4+git20120528-1_all + git-gui_1:1.7.10.4-1+wheezy1_all + git-man_1:1.7.10.4-1+wheezy1_all + git-review_1.17-1_all + git-sh_1.1-1_all + git-stuff_11-1_all + git-svn_1:1.7.10.4-1+wheezy1_all + git2cl_2.0+git200808271242-1_all + github-cli_1.0.0-1+nmu1_all + gitk_1:1.7.10.4-1+wheezy1_all + gitmagic_20120520-2_all + gitolite_2.3-1_all + gitpkg_0.23_all + gitstats_2012.05.28-1_all + gitweb_1:1.7.10.4-1+wheezy1_all + giws_2.0.0-1_all + giws-doc_2.0.0-1_all + gjots2_2.3.15-1_all + gl-117-data_1.3.2-2.1_all + glabels-data_3.0.0-3_all + glance_2012.1.1-5_all + glance-api_2012.1.1-5_all + glance-common_2012.1.1-5_all + glance-registry_2012.1.1-5_all + glark_1.8.0-1_all + glassfish-activation_1:2.1.1-b31g-3_all + glassfish-appserv_1:2.1.1-b31g-3_all + glassfish-javaee_1:2.1.1-b31g-3_all + glassfish-jmac-api_1:2.1.1-b31g-3_all + glassfish-mail_1:2.1.1-b31g-3_all + glassfish-toplink-essentials_1:2.1.1-b31g-3_all + gle-doc_3.1.0-7_all + glest_3.6.0.3-1.2_all + glest-data_3.6.0.3-1_all + glib-networking-common_2.32.3-1_all + glibc-doc_2.13-38+deb7u1_all + glipper_2.3-3.1_all + glob2-data_0.9.4.4-2.1_all + globus-gram-audit_3.1-3_all + globus-gram-job-manager-condor_1.3-1_all + globus-gram-job-manager-doc_13.33-1_all + globus-gram-job-manager-fork_1.5-1_all + globus-gram-job-manager-fork-setup-poll_1.5-1_all + globus-gram-job-manager-pbs_1.5-1_all + globus-gram-job-manager-pbs-setup-poll_1.5-1_all + globus-gram-job-manager-scripts_4.2-2_all + globus-gram-job-manager-scripts-doc_4.2-2_all + globus-gram-job-manager-sge_1.5-1_all + globus-gram-job-manager-sge-setup-poll_1.5-1_all + globus-simple-ca_3.0-2_all + glpeces-data_5.0-2_all + glpi_0.83.31-1_all + glpk-doc_4.45-1_all + glue-schema_2.0.8-1_all + glue-sprite_0.2.5-3_all + glusterfs-examples_3.2.7-3+deb7u1_all + gmail-notify_1.6.1.1-2_all + gmerlin-data_1.2.0~dfsg+1-1_all + gmobilemedia_0.4+dfsg-13_all + gmpc-data_11.8.16-6_all + gmt-coast-low_1:2.1.1-1_all + gmt-doc_4.5.7-2_all + gmt-doc-pdf_4.5.7-2_all + gmt-doc-ps_3.4.4-1_all + gmt-examples_4.5.7-2_all + gmt-gshhs-full_2.2.0-2_all + gmt-gshhs-high_2.2.0-2_all + gmt-gshhs-low_2.2.0-2_all + gmt-manpages_3.4.4-1_all + gmt-tutorial_3.4-1.1_all + gmt-tutorial-pdf_4.5.7-2_all + gmt-tutorial-ps_3.4.4-1_all + gmtkbabel_0.1-1_all + gmusicbrowser_1.1.9-2_all + gnash-common-opengl_0.8.11~git20120629-1+deb7u1_all + gnash-doc_0.8.11~git20120629-1+deb7u1_all + gnash-opengl_0.8.11~git20120629-1+deb7u1_all + gnat-gps-common_5.0-13_all + gnat-gps-doc_5.0-13_all + gnat-mingw-w64_4.6.3-14+8_all + gnokii_0.6.30+dfsg-1_all + gnokii-common_0.6.30+dfsg-1_all + gnome-accessibility-themes_3.4.2-2.1_all + gnome-activity-journal_0.8.0-2_all + gnome-api-docs_1:3.4+7+deb7u1_all + gnome-applets-data_3.4.1-3_all + gnome-audio_2.22.2-1_all + gnome-backgrounds_3.4.2-1_all + gnome-blog_0.9.1-5_all + gnome-brave-icon-theme_5.5.1-1_all + gnome-btdownload_0.0.32-4_all + gnome-cards-data_1:3.4.1-1_all + gnome-codec-install_0.4.7+nmu1_all + gnome-colors_5.5.1-1_all + gnome-colors-common_5.5.1-1_all + gnome-commander-data_1.2.8.15-3_all + gnome-common_3.4.0.1-1_all + gnome-control-center-data_1:3.4.3.1-2_all + gnome-control-center-dev_1:3.4.3.1-2_all + gnome-desktop-data_2.32.1-2_all + gnome-desktop-environment_1:3.4+7+deb7u1_all + gnome-desktop-sharp2_2.26.0-8_all + gnome-desktop3-data_3.4.2-1_all + gnome-devel_1:3.4+7+deb7u1_all + gnome-devel-docs_3.4.1-1_all + gnome-do-plugins_0.8.4-5_all + gnome-doc-utils_0.20.10-1_all + gnome-dust-icon-theme_5.5.1-1_all + gnome-dvb-client_1:0.2.8-1_all + gnome-extra-icons_1.1-2_all + gnome-games_1:3.4.2-3_all + gnome-games-data_1:3.4.2-3_all + gnome-games-extra-data_3.2.0-4_all + gnome-gmail_1.8.2-1_all + gnome-human-icon-theme_5.5.1-1_all + gnome-icon-theme_3.4.0-2_all + gnome-icon-theme-extras_3.4.0-1_all + gnome-icon-theme-gartoon_0.5-4_all + gnome-icon-theme-nuovo_0.5-4.1_all + gnome-icon-theme-suede_0.2.5-1_all + gnome-icon-theme-symbolic_3.4.0-2_all + gnome-icon-theme-yasis_0.4.2-1_all + gnome-illustrious-icon-theme_5.5.1-1_all + gnome-js-common_0.1.2-1_all + gnome-mime-data_2.18.0-1_all + gnome-noble-icon-theme_5.5.1-1_all + gnome-orca_3.4.2-2_all + gnome-osd_0.12.2-1.1_all + gnome-packagekit-data_3.4.2-2_all + gnome-panel-data_3.4.2.1-4_all + gnome-pkg-tools_0.19.3_all + gnome-rdp_0.3.0.9-3_all + gnome-schedule_2.1.1-4_all + gnome-screensaver-flags_0.1-1_all + gnome-session_3.4.2.1-4_all + gnome-session-common_3.4.2.1-4_all + gnome-session-fallback_3.4.2.1-4_all + gnome-sharp2_2.24.2-3_all + gnome-sharp2-examples_2.24.2-3_all + gnome-shell-common_3.4.2-7+deb7u1_all + gnome-shell-extensions_3.4.0-2_all + gnome-shell-timer_0.0.20120615+gitbde3fd2-1_all + gnome-specimen_0.4-8_all + gnome-split_1.1-1_all + gnome-sudoku_1:3.4.2-3_all + gnome-terminal-data_3.4.1.1-2_all + gnome-theme-gilouche_11.1.2-2_all + gnome-themes_2.30.2-1_all + gnome-themes-extras_2.22.0-3_all + gnome-themes-standard-data_3.4.2-2.1_all + gnome-tweak-tool_3.4.0.1-2_all + gnome-user-guide_3.4.2-1+build1_all + gnome-video-effects_0.4.0-1_all + gnome-video-effects-dev_0.4.0-1_all + gnome-video-effects-frei0r_0.4.0-1_all + gnome-wine-icon-theme_5.5.1-1_all + gnome-wise-icon-theme_5.5.1-1_all + gnomecatalog_0.3.4.2-1_all + gnu-smalltalk-common_3.2.4-2_all + gnu-smalltalk-doc_3.2.4-2_all + gnu-smalltalk-el_3.2.4-2_all + gnu-standards_2010.03.11-1_all + gnubg-data_0.90+20120429-1_all + gnucash-common_1:2.4.10-6_all + gnucash-docs_2.4.1-3_all + gnuchess-book_1.02-1_all + gnuhtml2latex_0.4-2_all + gnuift-doc_0.1.14-12_all + gnuift-perl_0.1.14-12_all + gnujump-data_1.0.6-4_all + gnulib_20120404+stable-1_all + gnumach-common_2:1.3.99.dfsg.git20120610-1_all + gnumed-client_1.1.17+dfsg-1_all + gnumed-client-de_1.1.17+dfsg-1_all + gnumed-common_1.1.17+dfsg-1_all + gnumed-doc_1.1.17+dfsg-1_all + gnumed-server_16.17-1_all + gnumeric-common_1.10.17-1.1_all + gnumeric-doc_1.10.17-1.1_all + gnunet_0.9.3-7_all + gnupg-doc_2003.04.06+dak1-1_all + gnuplot_4.6.0-8_all + gnuplot-doc_4.6.0-8_all + gnuplot-mode_1:0.6.0-8_all + gnupod-tools_0.99.8-2.1_all + gnuradio-doc_3.5.3.2-1_all + gnus-bonus-el_35.2+nmu1_all + gnustep_7.7_all + gnustep-back-common_0.20.1-2.1_all + gnustep-back0.20_0.20.1-2.1_all + gnustep-base-common_1.22.1-4_all + gnustep-base-doc_1.22.1-4_all + gnustep-base-examples_1.22.1-4_all + gnustep-core-devel_7.7_all + gnustep-core-doc_7.7_all + gnustep-devel_7.7_all + gnustep-games_7.7_all + gnustep-gui-common_0.20.0-3_all + gnustep-gui-doc_0.20.0-3_all + gnustep-icons_1.0-5_all + gnustep-make_2.6.2-2_all + gnustep-make-doc_2.6.2-2_all + gnutls26-doc_2.12.20-7_all + go2_1.20120217-1_all + goban-original-games_1.1-2_all + gobby_0.4.13-2_all + gobby-infinote_0.4.94-5_all + gobjc++-mingw-w64_4.6.3-14+8_all + gobjc-mingw-w64_4.6.3-14+8_all + goby_1.1-1_all + gocr-tk_0.49-1_all + golang_2:1.0.2-1.1_all + golang-doc_2:1.0.2-1.1_all + golang-mode_2:1.0.2-1.1_all + goldendict-wordnet_1:3.0-29_all + google-perftools_2.0-2_all + google-sitemapgen_1.5-3_all + googlefontdirectory-tools_20120309.1-1_all + gosa_2.7.4-4.3~deb7u1_all + gosa-desktop_2.7.4-4.3~deb7u1_all + gosa-dev_2.7.4-4.3~deb7u1_all + gosa-help-de_2.7.4-4.3~deb7u1_all + gosa-help-en_2.7.4-4.3~deb7u1_all + gosa-help-fr_2.7.4-4.3~deb7u1_all + gosa-help-nl_2.7.4-4.3~deb7u1_all + gosa-plugin-connectivity_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp_2.7.4-4.3~deb7u1_all + gosa-plugin-dhcp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-dns_2.7.4-4.3~deb7u1_all + gosa-plugin-dns-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-fai_2.7.4-4.3~deb7u1_all + gosa-plugin-fai-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-gofax_2.7.4-4.3~deb7u1_all + gosa-plugin-gofon_2.7.4-4.3~deb7u1_all + gosa-plugin-goto_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab_2.7.4-4.3~deb7u1_all + gosa-plugin-kolab-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-ldapmanager_2.7.4-4.3~deb7u1_all + gosa-plugin-mail_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5_2.7.4-4.3~deb7u1_all + gosa-plugin-mit-krb5-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios_2.7.4-4.3~deb7u1_all + gosa-plugin-nagios-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-netatalk_2.7.4-4.3~deb7u1_all + gosa-plugin-opengroupware_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange_2.7.4-4.3~deb7u1_all + gosa-plugin-openxchange-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-opsi_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw_2.7.4-4.3~deb7u1_all + gosa-plugin-phpgw-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit_2.7.4-4.3~deb7u1_all + gosa-plugin-phpscheduleit-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp_2.7.4-4.3~deb7u1_all + gosa-plugin-pptp-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd_2.7.4-4.3~deb7u1_all + gosa-plugin-pureftpd-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-rolemanagement_2.7.4-4.3~deb7u1_all + gosa-plugin-rsyslog_2.7.4-4.3~deb7u1_all + gosa-plugin-samba_2.7.4-4.3~deb7u1_all + gosa-plugin-scalix_2.7.4-4.3~deb7u1_all + gosa-plugin-squid_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh_2.7.4-4.3~deb7u1_all + gosa-plugin-ssh-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo_2.7.4-4.3~deb7u1_all + gosa-plugin-sudo-schema_2.7.4-4.3~deb7u1_all + gosa-plugin-systems_2.7.4-4.3~deb7u1_all + gosa-plugin-uw-imap_2.7.4-4.3~deb7u1_all + gosa-plugin-webdav_2.7.4-4.3~deb7u1_all + gosa-schema_2.7.4-4.3~deb7u1_all + gotmail_0.9.0-1_all + goto-common_3.1-1_all + goto-fai_3.1-1_all + goto-fai-backend_3.0-1.1_all + goto-fai-progress_3.0-1_all + gourmet_0.15.9-1_all + gozerbot_0.99.1-2_all + gozerbot-plugins_0.9.1.2-4_all + gpe_0.2.9-1.1_all + gpe-icons_0.25-1_all + gperf-ace_6.0.3+dfsg-0.1_all + gpgv-win32_1.4.12-7+deb7u3_all + gpodder_2.20.1-1_all + gprbuild-doc_2011-2_all + gprename_2.6.6-1_all + gprolog-doc_1.3.0-6.1_all + gpsbabel-doc_1.4.3-1_all + gpsim-doc_0.22.0-2_all + gpsman_6.4.3-1_all + gpsprune_13.4-1_all + gputils-common_0.13.7-1_all + gputils-doc_0.13.7-1_all + gpxviewer_0.4.3-1_all + gquilt_0.25-2_all + gqview_1:1.0-10.1_all + gqview-dbg_1:1.0-10.1_all + gramadoir_0.6-4.1_all + gramps_3.4.0-1_all + graph-includes_0.13-1.1_all + graphicsmagick-imagemagick-compat_1.3.16-1.1_all + graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all + graphite-carbon_0.9.10-3_all + graphmonkey_1.7-3_all + graphviz-dev_2.26.3-14+deb7u1_all + graphviz-doc_2.26.3-14+deb7u1_all + grass_6.4.2-2_all + grass-dev-doc_6.4.2-2_all + grass-doc_6.4.2-2_all + grc_1.4_all + greenwich_0.8.2-6_all + gregoriotex_2.0-1.2_all + grepmail_5.3033-5_all + gretl-common_1.9.9-1_all + gretl-data_1.9.9-1_all + gretl-doc_1.9.9-1_all + greylistd_0.8.8_all + grhino-data_0.16.1-2_all + gri-el_2.12.23-2.2_all + gri-html-doc_2.12.23-2.2_all + gri-pdf-doc_2.12.23-2.2_all + grid-packaging-tools_3.6.2-1_all + gridengine-common_6.2u5-7.1_all + gridsite-doc_1.7.16-1_all + griffith_0.13-3_all + grinder_0.4.5-1_all + grisbi-common_0.8.9-1_all + grml-debootstrap_0.54_all + grml-rescueboot_0.4.2_all + grokevt_0.4.1-7_all + gromacs-data_4.5.5-2_all + groovy_1.8.6-1_all + groovy-doc_1.8.6-1_all + grub-choose-default_0.2-6_all + grub-disk_0.97-67_all + grub-doc_0.97-67_all + grub-imageboot_0.6_all + grub-legacy-doc_0.97-67_all + grub-splashimages_1.2.3_all + grub2-splashimages_1.0.1+nmu1_all + gsalliere_0.10-1_all + gscan2pdf_1.0.4-5_all + gsettings-desktop-schemas_3.4.2-3_all + gsfonts_1:8.11+urwcyr1.0.7~pre44-4.2_all + gsfonts-x11_0.22_all + gshare_0.94-12_all + gsoap-doc_2.8.7-2_all + gss-doc_1.0.2-1_all + gss-man_1.0.2-1_all + gstreamer0.10-buzztard-doc_0.5.0-2+deb7u1_all + gstreamer0.10-doc_0.10.36-1.2_all + gstreamer0.10-gnonlin-doc_0.10.17-2_all + gstreamer0.10-plugins-bad-doc_0.10.23-7.1_all + gstreamer0.10-plugins-base-doc_0.10.36-1.1_all + gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1_all + gstreamer0.10-plugins-ugly-doc_0.10.19-2_all + gsutil_3.1-1_all + gt5_1.5.0~20111220+bzr29-1_all + gtg_0.2.9-1_all + gthumb-data_3:3.0.1-2_all + gtk-doc-tools_1.18-2_all + gtk-recordmydesktop_0.3.8-4.1_all + gtk-redshift_1.7-2_all + gtk-sharp2_2.12.10-5_all + gtk-sharp2-examples_2.12.10-5_all + gtk-smooth-themes_0.5.8-2.3_all + gtkhash-common_0.6.0-4_all + gtklick_0.6.4-3_all + gtkmm-documentation_3.4.0-3_all + gtkmorph-example_1:20090926_all + gtkorphan_0.4.4-1.1_all + gtkpod-data_2.1.2-1_all + gtkvncviewer_0.4-2.2_all + gtml_3.5.4-7_all + guacamole_0.6.0-1_all + guacamole-tomcat_0.6.0-1_all + gufw_12.10.0-1_all + gui-apt-key_0.4-2_all + guile-1.6-doc_1.6.8-10.3_all + guile-1.6-slib_1.6.8-10.3_all + guile-1.8-doc_1.8.8+1-8_all + guile-2.0-doc_2.0.5+1-3_all + guile-library_0.2.1-1_all + guilt_0.35-1.1_all + gunicorn_0.14.5-3+deb7u1_all + gunroar-data_0.15.dfsg1-5_all + gurgitate-mail_1.10.0-1_all + gutenprint-doc_5.2.9-1_all + gutenprint-locales_5.2.9-1_all + gvb_1.2.1-1_all + gvfs-common_1.12.3-4_all + gvrng_4.4-1_all + gw6c_1:1.2-4_all + gwakeonlan_0.5.1-1_all + gwhois_20120626_all + gworkspace-apps-wrappers_0.8.8-1.1_all + gwrite_0.5.1-2_all + gwyddion-common_2.28-2_all + gyoto-doc_0.0.3-5_all + gyp_0.1~svn1395-1_all + gzip-win32_1.5-1.1_all + haci_0.97c-2_all + hal-doc_0.5.14-8_all + hal-info_20091130-1_all + hamexam_1.2.0-1_all + haml-elisp_1:3.0.15-4_all + hamradiomenus_1.2+nmu1_all + hamster-applet_2.91.3+git20120514.b9fec3e1-1_all + handlersocket-doc_1.1.0-7-g1044a28-1_all + hannah-data_1.0-2_all + hapolicy_1.32-2_all + harden_0.1.38+nmu1_all + harden-clients_0.1.38+nmu1_all + harden-development_0.1.38+nmu1_all + harden-doc_3.15.1_all + harden-environment_0.1.38+nmu1_all + harden-nids_0.1.38+nmu1_all + harden-remoteaudit_0.1.38+nmu1_all + harden-servers_0.1.38+nmu1_all + harden-surveillance_0.1.38+nmu1_all + harden-tools_0.1.38+nmu1_all + hardening-includes_2.2_all + haskell-agda-doc_1:8_all + haskell-convertible-doc_1:8_all + haskell-cpphs-doc_1:8_all + haskell-devscripts_0.8.12_all + haskell-doc_20061127_all + haskell-edison-api-doc_1:8_all + haskell-edison-core-doc_1:8_all + haskell-haskelldb-doc_1:8_all + haskell-hdbc-doc_1:8_all + haskell-hdbc-odbc-doc_1:8_all + haskell-hdbc-postgresql-doc_1:8_all + haskell-hdbc-sqlite3-doc_1:8_all + haskell-hscurses-doc_1:8_all + haskell-hsql-doc_1:8_all + haskell-hsql-mysql-doc_1:8_all + haskell-hsql-odbc-doc_1:8_all + haskell-hsql-postgresql-doc_1:8_all + haskell-hsql-sqlite3-doc_1:8_all + haskell-http-doc_1:8_all + haskell-mode_2.8.0-2_all + haskell-pcre-light-doc_1:8_all + haskell-platform_2012.2.0.0_all + haskell-platform-doc_2012.2.0.0_all + haskell-platform-prof_2012.2.0.0_all + haskell-regex-base-doc_1:8_all + haskell-regex-compat-doc_1:8_all + haskell-regex-posix-doc_1:8_all + haskell-src-exts-doc_1:8_all + haskell-uulib-doc_1:8_all + haskell-zlib-doc_1:8_all + haskell98-report_20080907-4_all + haskell98-tutorial_200006-2-1.1_all + haskelldb-doc_2.1.1-5_all + hatop_0.7.7-1_all + headache_1.03-22_all + hearse_1.5-8.1_all + hedgewars-data_0.9.17-1_all + heimdal-docs_1.6~git20120403+dfsg1-2_all + hepmc-examples_2.06.09-1_all + hepmc-reference-manual_2.06.09-1_all + hepmc-user-manual_2.06.09-1_all + heroes-data_1.5-2_all + heroes-sound-effects_1.0-4_all + heroes-sound-tracks_1.0-4_all + hevea_1.10-14_all + hg-fast-export_20120618-1_all + hgsubversion_1.4-1_all + hgsvn_0.1.8-1_all + hgview_1.5.0-4_all + hgview-common_1.5.0-4_all + hgview-curses_1.5.0-4_all + hhsuite-data_2.0.15-1_all + hibernate_2.0+15+g88d54a8-1_all + hicolor-icon-theme_0.12-1_all + highlight-common_3.9-1_all + hiki_0.8.8.1-3_all + hime-data_0.9.9+git20120619+dfsg-1_all + hime-dev_0.9.9+git20120619+dfsg-1_all + hitchhiker_0.01~20091129+bzr41-4_all + hlbrw_0.2.4-1_all + hlins_0.39-19_all + hmmer-doc_3.0-4_all + ho22bus-data_0.9.1-2_all + hobbit-plugins_20120532_all + hocr-gtk_0.10.17-1_all + hol88-contrib-help_2.02.19940316-15_all + hol88-contrib-source_2.02.19940316-15_all + hol88-doc_2.02.19940316-15_all + hol88-help_2.02.19940316-15_all + hol88-library-help_2.02.19940316-15_all + hol88-library-source_2.02.19940316-15_all + hol88-source_2.02.19940316-15_all + holotz-castle-data_1.3.14-5_all + homebank-data_4.4-1_all + horgand-data_1.14-5_all + host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_all + hotot_1:0.9.7.32+git20111213.1d89daf-1.1_all + hotswap_0.4.0-12_all + hotwire_0.721-2_all + howm_1.4.0rc2-2_all + hp-ppd_0.9-0.2_all + hp-search-mac_0.1.3_all + hpijs_3.12.6-3.1+deb7u1_all + hpijs-ppds_3.12.6-3.1+deb7u1_all + hplip-cups_3.12.6-3.1+deb7u1_all + hplip-data_3.12.6-3.1+deb7u1_all + hplip-doc_3.12.6-3.1+deb7u1_all + hplip-gui_3.12.6-3.1+deb7u1_all + hsqldb-server_1.8.0.10+dfsg-0+deb7u1_all + hsqldb-utils_1.8.0.10+dfsg-0+deb7u1_all + htag_0.0.24-1_all + htcheck-php_1:2.0.0~rc1-2_all + htdig-doc_1:3.2.0b6-12_all + html-helper-mode_3.0.4kilo-2_all + html2markdown_3.200.3-2_all + html2ps_1.0b7-1_all + html2wml_0.4.11-1_all + htmldoc-common_1.8.27-8_all + http-icons_0~20041010-1_all + httpcode_0.5-2_all + httrack-doc_3.46.1-1_all + hugin-data_2011.4.0+dfsg-5_all + hunspell-an_0.2-1_all + hunspell-ar_3.1-1_all + hunspell-be_0.53-3_all + hunspell-da_1:3.3.0-4_all + hunspell-de-at_20120607-1_all + hunspell-de-at-frami_1:3.3.0-4_all + hunspell-de-ch_20120607-1_all + hunspell-de-ch-frami_1:3.3.0-4_all + hunspell-de-de_20120607-1_all + hunspell-de-de-frami_1:3.3.0-4_all + hunspell-de-med_20110608-1_all + hunspell-en-ca_1:3.3.0-4_all + hunspell-en-us_20070829-6_all + hunspell-eu-es_0.4.20081029-6_all + hunspell-fr_1:3.3.0-4_all + hunspell-gl-es_2.2a-10_all + hunspell-hu_1:3.3.0-4_all + hunspell-kk_1.1-2_all + hunspell-ko_0.5.5-1_all + hunspell-ml_0.1-2_all + hunspell-ne_1:3.3.0-4_all + hunspell-ro_1:3.3.0-4_all + hunspell-ru_20120501-1_all + hunspell-se_1.0~beta6.20081222-1.2_all + hunspell-sh_1:3.3.0-4_all + hunspell-sr_1:3.3.0-4_all + hunspell-sv-se_1.51-1_all + hunspell-uz_0.6-3.2_all + hunspell-vi_1:3.3.0-4_all + hv3_3.0~fossil20110109-2_all + hwdata_0.234-1_all + hybrid-dev_1:7.2.2.dfsg.2-10_all + hyde_0.8.5a1-4_all + hydrogen-drumkits_0.9.3.20070703-3_all + hyphen-af_1:3.3.0-4_all + hyphen-as_0.7.0-1_all + hyphen-bn_0.7.0-2_all + hyphen-ca_1:3.3.0-4_all + hyphen-de_1:3.3.0-4_all + hyphen-en-us_2.8.3-2_all + hyphen-fr_1:3.3.0-4_all + hyphen-gu_0.7.0-2_all + hyphen-hi_0.7.0-3_all + hyphen-hr_20060617-2.3_all + hyphen-hu_1:3.3.0-4_all + hyphen-it_1:3.3.0-4_all + hyphen-kn_0.7.0-2_all + hyphen-mr_0.7.0-1_all + hyphen-pa_0.7.0-1_all + hyphen-pl_1:3.0a-4_all + hyphen-ro_1:3.3.0-4_all + hyphen-sh_1:3.3.0-4_all + hyphen-sl_1:3.3.0-4_all + hyphen-sr_1:3.3.0-4_all + hyphen-ta_0.7.0-1_all + hyphen-te_0.7.0-1_all + hyphen-zu_1:3.3.0-4_all + iamerican_3.3.02-6_all + iamerican-huge_3.3.02-6_all + iamerican-insane_3.3.02-6_all + iamerican-large_3.3.02-6_all + iamerican-small_3.3.02-6_all + ibid_0.1.1+dfsg-4_all + ibrazilian_3.0~beta4-15_all + ibritish_3.3.02-6_all + ibritish-huge_3.3.02-6_all + ibritish-insane_3.3.02-6_all + ibritish-large_3.3.02-6_all + ibritish-small_3.3.02-6_all + ibus-doc_1.4.1-9+deb7u1_all + ibus-el_0.3.0-2_all + ibus-googlepinyin_0.1.1+hg20111212-1_all + ibus-pinyin-db-android_1.4.0-1+deb7u1_all + ibus-pinyin-db-open-phrase_1.4.0-1+deb7u1_all + ibus-table_1.3.9.20110827-2_all + ibus-table-array30_1.3.4-1_all + ibus-table-cangjie_1.3.4-1_all + ibus-table-cangjie-big_1.3.4-1_all + ibus-table-cangjie3_1.3.4-1_all + ibus-table-cangjie5_1.3.4-1_all + ibus-table-cantonese_1.3.4-1_all + ibus-table-cantonhk_1.3.4-1_all + ibus-table-cns11643_1.3.0.20100528-3_all + ibus-table-compose_1.3.0.20100528-3_all + ibus-table-easy_1.3.4-1_all + ibus-table-easy-big_1.3.4-1_all + ibus-table-emoji_1.3.0.20100528-3_all + ibus-table-erbi_1.3.4-1_all + ibus-table-erbi-qs_1.3.4-1_all + ibus-table-extraphrase_1.2.0.20100305-1_all + ibus-table-ipa-x-sampa_1.3.0.20100528-3_all + ibus-table-jyutping_1.3.4-1_all + ibus-table-latex_1.3.0.20100528-3_all + ibus-table-quick_1.3.4-1_all + ibus-table-quick-classic_1.3.4-1_all + ibus-table-quick3_1.3.4-1_all + ibus-table-quick5_1.3.4-1_all + ibus-table-rustrad_1.3.0.20100528-3_all + ibus-table-scj6_1.3.4-1_all + ibus-table-stroke5_1.3.4-1_all + ibus-table-thai_1.3.0.20100528-3_all + ibus-table-translit_1.3.0.20100528-3_all + ibus-table-translit-ua_1.3.0.20100528-3_all + ibus-table-viqr_1.3.0.20100528-3_all + ibus-table-wu_1.3.4-1_all + ibus-table-wubi_1.3.4-1_all + ibus-table-yawerty_1.3.0.20100528-3_all + ibus-table-yong_1.3.4-1_all + ibus-xkbc_1.3.3.20100922-2+deb7u1_all + icatalan_0.20111230b-4_all + icc-profiles-free_2.0.1+dfsg-1_all + ice34-slice_3.4.2-8.2_all + icecream_1.3-4_all + icedove-bidiui_0.9.6-1_all + icedove-dispmua_1.6.8-1_all + icedove-gcontactsync_0.3.5-1_all + icedove-l10n-all_1:10.0.10-1_all + icedove-l10n-ar_1:10.0.10-1_all + icedove-l10n-ast_1:10.0.10-1_all + icedove-l10n-be_1:10.0.10-1_all + icedove-l10n-bg_1:10.0.10-1_all + icedove-l10n-bn-bd_1:10.0.10-1_all + icedove-l10n-br_1:10.0.10-1_all + icedove-l10n-ca_1:10.0.10-1_all + icedove-l10n-cs_1:10.0.10-1_all + icedove-l10n-da_1:10.0.10-1_all + icedove-l10n-de_1:10.0.10-1_all + icedove-l10n-el_1:10.0.10-1_all + icedove-l10n-en-gb_1:10.0.10-1_all + icedove-l10n-es-ar_1:10.0.10-1_all + icedove-l10n-es-es_1:10.0.10-1_all + icedove-l10n-et_1:10.0.10-1_all + icedove-l10n-eu_1:10.0.10-1_all + icedove-l10n-fi_1:10.0.10-1_all + icedove-l10n-fr_1:10.0.10-1_all + icedove-l10n-fy-nl_1:10.0.10-1_all + icedove-l10n-ga-ie_1:10.0.10-1_all + icedove-l10n-gd_1:10.0.10-1_all + icedove-l10n-gl_1:10.0.10-1_all + icedove-l10n-he_1:10.0.10-1_all + icedove-l10n-hu_1:10.0.10-1_all + icedove-l10n-id_1:10.0.10-1_all + icedove-l10n-is_1:10.0.10-1_all + icedove-l10n-it_1:10.0.10-1_all + icedove-l10n-ja_1:10.0.10-1_all + icedove-l10n-ko_1:10.0.10-1_all + icedove-l10n-lt_1:10.0.10-1_all + icedove-l10n-nb-no_1:10.0.10-1_all + icedove-l10n-nl_1:10.0.10-1_all + icedove-l10n-nn-no_1:10.0.10-1_all + icedove-l10n-pa-in_1:10.0.10-1_all + icedove-l10n-pl_1:10.0.10-1_all + icedove-l10n-pt-br_1:10.0.10-1_all + icedove-l10n-pt-pt_1:10.0.10-1_all + icedove-l10n-rm_1:10.0.10-1_all + icedove-l10n-ro_1:10.0.10-1_all + icedove-l10n-ru_1:10.0.10-1_all + icedove-l10n-si_1:10.0.10-1_all + icedove-l10n-sk_1:10.0.10-1_all + icedove-l10n-sl_1:10.0.10-1_all + icedove-l10n-sq_1:10.0.10-1_all + icedove-l10n-sr_1:10.0.10-1_all + icedove-l10n-sv-se_1:10.0.10-1_all + icedove-l10n-ta-lk_1:10.0.10-1_all + icedove-l10n-tr_1:10.0.10-1_all + icedove-l10n-uk_1:10.0.10-1_all + icedove-l10n-vi_1:10.0.10-1_all + icedove-l10n-zh-cn_1:10.0.10-1_all + icedove-l10n-zh-tw_1:10.0.10-1_all + icedove-quotecolors_0.3-3_all + icedtea-netx-common_1.3.2-1_all + icedtea-plugin_1.3.2-1_all + icedtea6-plugin_6b21.3.2-1_all + icee-slice_1.2.0-6.1_all + icegrid-gui_3.4.2-8.2_all + iceweasel-downthemall_2.0.13-2_all + iceweasel-l10n-ach_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-af_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ak_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-all_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-as_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ast_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-be_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-bd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bn-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-bs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ca_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cs_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-csb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-cy_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-da_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-de_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-el_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-gb_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-en-za_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eo_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-ar_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-cl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-es_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-es-mx_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-et_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-eu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fa_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ff_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-fy-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ga-ie_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gd_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-gu-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-he_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hi-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hu_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-hy-am_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-id_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-is_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-it_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ja_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-km_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-kn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ko_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ku_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lg_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lij_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-lv_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mai_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ml_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-mr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nb-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nn-no_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-nso_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-or_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pa-in_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-br_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-pt-pt_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-rm_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ro_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ru_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-si_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sl_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-son_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sq_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-sv-se_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-ta-lk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-te_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-th_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-tr_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-uk_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-vi_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-cn_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zh-tw_1:17.0.10esr-1~deb7u1_all + iceweasel-l10n-zu_1:17.0.10esr-1~deb7u1_all + iceweasel-scrapbook_1.5.4-1_all + iceweasel-vimperator_3.3-2_all + icicles_23.0+20110910-2_all + icinga-common_1.7.1-6_all + icinga-doc_1.7.1-6_all + icinga-web_1.7.1+dfsg2-6_all + icinga-web-pnp_1.7.1+dfsg2-6_all + icli_0.42-1_all + icmake-doc_7.18.00-2_all + icon-ipl_9.4.3-4.2_all + icon-naming-utils_0.8.90-2_all + icu-doc_4.8.1.1-12+deb7u1_all + identicurse_0.9+dfsg0-1_all + idl-font-lock-el_1.5-6_all + idle_2.7.3-4+deb7u1_all + idle-python2.6_2.6.8-1.1_all + idle-python2.7_2.7.3-6_all + idle-python3.2_3.2.3-7_all + idle3_3.2.3-6_all + idutch_1:2.10-1_all + idzebra-2.0-common_2.0.44-3_all + idzebra-2.0-doc_2.0.44-3_all + idzebra-2.0-examples_2.0.44-3_all + ienglish-common_3.3.02-6_all + iesperanto_2.1.2000.02.25-45_all + iestonian_1:20030606-20_all + ifaroese_0.4.1-1_all + ifetch-tools_0.15.23b-1_all + ifmail_2.14tx8.10-21_all + ifrench_1.4-26_all + ifscheme_1.7-3_all + ifupdown-extra_0.22_all + ifupdown-scripts-zg2_0.6-1_all + igal2_2.1-1_all + igalician-minimos_0.5-35_all + igstk-doc_4.4.0-2_all + igstk-examples_4.4.0-2_all + iipimage-doc_0.9.9-2_all + iisemulator_0.95-3_all + ikiwiki_3.20120629_all + ikiwiki-hosting-common_0.20120527_all + ikiwiki-hosting-dns_0.20120527_all + ikvm_7.0.4335.0+ds-1_all + ilithuanian_1.2.1-3_all + ilohamail_0.8.14-0rc3sid6.2_all + im_1:151-2_all + im-config_0.21_all + im-switch_1.23_all + imageindex_1.1-2.1_all + imagej_1.46a-1_all + imagemagick-common_8:6.7.7.10-5+deb7u2_all + imagemagick-doc_8:6.7.7.10-5+deb7u2_all + imageshack-uploader-common_2.2+hg20100408.d802dea89428-5.1_all + imagetooth_2.0.1-1.1_all + imagination-common_3.0-2_all + imaprowl_1.2.1-1_all + imdb-tools_0.9-1_all + imediff2_1.1.2-1_all + imgsizer_2.7-3_all + imhangul-common_1+nmu1_all + impose+_0.2-12_all + imposm_2.4.0+dfsg-0.1_all + impressive_0.10.3-2_all + imview-doc_1.0.1-3_all + imvirt_0.9.4-4_all + indent-doc_2.2.11-2_all + infernal-doc_1.0.2-2_all + infinoted-0.5_0.5.2-6.1_all + info2man_1.1-6_all + info2www_1.2.2.9-24_all + infon-devel_0~r218-1_all + inform-mode_1.5.8-3_all + ingerman_20120607-1_all + init-system-helpers_1.11~bpo70.1_all + initramfs-tools_0.109.1_all + initz_0.0.11+20030603cvs-17.1_all + ink-generator_0.4-2_all + inosync_0.2.1-1_all + insanity-tools_0.0+git20110920.4750a8e8-2_all + insanity-web_0.0+git20110920.4750a8e8-2_all + insighttoolkit3-examples_3.20.1+git20120521-3_all + installation-guide-amd64_20130503_all + installation-guide-armel_20130503_all + installation-guide-armhf_20130503_all + installation-guide-i386_20130503_all + installation-guide-ia64_20130503_all + installation-guide-kfreebsd-amd64_20130503_all + installation-guide-kfreebsd-i386_20130503_all + installation-guide-mips_20130503_all + installation-guide-mipsel_20130503_all + installation-guide-powerpc_20130503_all + installation-guide-s390_20130503_all + installation-guide-s390x_20130503_all + installation-guide-sparc_20130503_all + installation-report_2.49_all + instead-data_1.6.0-1_all + interchange-cat-standard_5.7.7-2_all + interchange-ui_5.7.7-2_all + intltool_0.50.2-2_all + intltool-debian_0.35.0+20060710.1_all + inventor-data_2.1.5-10-16_all + inventor-doc_2.1.5-10-16_all + iog_1.03-3.6_all + ion-doc_3.0.1~dfsg1-1_all + ip2host_1.10-2_all + ipadic-common_2.7.0+main-3_all + ipcalc_0.41-2.1_all + ipcheck_0.233-1.1_all + ipolish_20120520-1_all + iportuguese_20120604-1_all + iprelay_0.71-4_all + iproute-doc_20120521-3_all + iptables-persistent_0.5.7_all + ipxe_1.0.0+git-20120202.f6840ba-3_all + ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all + ipython_0.13.1-2_all + ipython-doc_0.13.1-2_all + ipython-notebook_0.13.1-2_all + ipython-notebook-common_0.13.1-2_all + ipython-qtconsole_0.13.1-2_all + ipython3_0.13.1-2_all + ipython3-notebook_0.13.1-2_all + ipython3-qtconsole_0.13.1-2_all + irssi-scripts_20120326_all + irussian_0.99g5-18_all + isag_10.0.5-1_all + iscsitarget-dkms_1.4.20.2-10.1_all + isdnlog-data_1:3.25+dfsg1-3.3~deb7u1_all + isdnutils-doc_1:3.25+dfsg1-3.3~deb7u1_all + islamic-menus_1.0.5-1_all + iso-codes_3.41-1_all + isoquery_1.7-1_all + ispanish_1.11-4_all + iswiss_20120607-1_all + itagalog_0.3.1-3_all + itcl3-doc_3.4.1-1_all + itk3-doc_3.3-4_all + itstool_1.1.3-1_all + ivy_2.2.0-2_all + ivy-doc_2.2.0-2_all + iwatch_0.2.2-2_all + iwidgets4_4.0.1-6_all + iwidgets4-doc_4.0.1-6_all + jabber-irc_0.4cvs20080505-1.1_all + jabber-querybot_0.1.0-1_all + jablicator_1.0.1_all + jabref_2.7~beta1+ds-6_all + jabref-plugin-oo_0.9+ds-2_all + jacal_1b9-2.1_all + jackd_5_all + jacksum_1.7.0-2_all + jadetex_3.13-14_all + jailer_0.4-17_all + jailtool_1.1-5_all + jajuk_1:1.9.6-1_all + jalview_2.7.dfsg-2_all + jaminid_0.99a-1.1_all + janino_2.5.15-1_all + japi-compliance-checker_1.1.2-1_all + japitools_0.9.7-1_all + jardiff_0.2-3_all + jargon_4.0.0-5_all + jargon-text_4.4.7-4_all + jarwrapper_0.43_all + jasmin-sable_2.4.0-1_all + java-common_0.47_all + java-propose-classpath_0.43_all + java-wrappers_0.1.25_all + java3ds-fileloader_1.2+dfsg-1_all + javacc_5.0-4_all + javacc-doc_5.0-4_all + javahelp2_2.0.05.ds1-6_all + javahelp2-doc_2.0.05.ds1-6_all + javahelper_0.43_all + javamorph_0.0.20100201-1.3_all + javascript-common_7_all + jaxe_3.5-2_all + jbibtex-base_1:2.5-2.1_all + jblas-doc_1.2.0-4_all + jbossas4_4.2.3.GA-7_all + jcadencii_3.3.9+svn20110818.r1732-2_all + jclic_0.2.1.0-1_all + jconvolver-config-files_0.9.2-1_all + jdresolve_0.6.1-4_all + jed-common_1:0.99.19-2.1_all + jed-extra_2.5.6-2_all + jedit_4.5.2+dfsg-1_all + jekyll_0.11.2-1_all + jemboss_6.4.0-2_all + jenkins-crypto-util_1.1-2_all + jenkins-crypto-util-doc_1.1-2_all + jenkins-executable-war_1.27-1_all + jenkins-executable-war-doc_1.27-1_all + jenkins-memory-monitor_1.7-2_all + jenkins-memory-monitor-doc_1.7-2_all + jenkins-task-reactor_1.3-1_all + jenkins-task-reactor-doc_1.3-1_all + jenkins-test-annotations_1.0-1_all + jenkins-test-annotations-doc_1.0-1_all + jetring_0.20_all + jets3t_0.8.1+dfsg-1_all + jetty_6.1.26-1_all + jetty8_8.1.3-4_all + jeuclid-cli_3.1.9-2_all + jeuclid-mathviewer_3.1.9-2_all + jffnms_0.9.3-3_all + jflex_1.4.3-2_all + jfractionlab_0.91-2_all + jftp_1.52+dfsg-2_all + jfugue_4.0.3-3_all + jgit-cli_2.0.0-2_all + jifty_1.10518+dfsg-2_all + jigl_2.0.1+20060126-4_all + jigzo-data_0.6.1-6_all + jiipview_2.05-1_all + jing_20091111-5_all + jing-trang-doc_20091111-5_all + jirc_1.0-1_all + jlatex209-base_2.1-1.1_all + jlex_1.2.6-6_all + jlha-utils_0.1.6-3_all + jlint-doc_3.0-4.5_all + jmagick6-docs_6.2.6-0-8_all + jmeter_2.5.1-1_all + jmeter-apidoc_2.5.1-1_all + jmeter-ftp_2.5.1-1_all + jmeter-help_2.5.1-1_all + jmeter-http_2.5.1-1_all + jmeter-java_2.5.1-1_all + jmeter-jms_2.5.1-1_all + jmeter-junit_2.5.1-1_all + jmeter-ldap_2.5.1-1_all + jmeter-mail_2.5.1-1_all + jmeter-tcp_2.5.1-1_all + jmol_12.2.32+dfsg2-1_all + jmol-applet_12.2.32+dfsg2-1_all + jodconverter_2.2.2-8_all + jodreports-cli_2.4.0-3_all + joe-jupp_3.1.21-1_all + john-data_1.7.8-1_all + jokosher_0.11.5-5_all + josm_0.0.svn5267+dfsg1-2_all + josm-plugins_0.0.svn28420+ds2-1_all + jpoker_1.0.16-2.1_all + jquery-alternative-doc_1.7+dfsg-1_all + jquery-jplayer-bluemonday_2.1.0-1_all + jquery-jplayer-pinkflag_2.1.0-1_all + jruby_1.5.6-5_all + js2-mode_0~20090723b-2_all + jscribble_1.7.7-1.2_all + jsdoc-toolkit_2.4.0+dfsg-3_all + jsmath_3.6c-1.1_all + jsmath-fonts_1.3-2_all + jsmath-fonts-sprite_1.0-2_all + jsonbot_0.84.4-1_all + jsxgraph_0.83+svn1872~dfsg1-1_all + jsymphonic_0.3.0.Ode.To.Freedom+svn387-7_all + jta_2.6+dfsg-5_all + jta-doc_2.6+dfsg-5_all + jtb_1.4.4-2_all + jtex-base_2.1-1.1_all + jtreg_4.1-2_all + juman-dic_5.1-2.1_all + jumpapplet_20-2_all + jumpnbump-levels_20091107_all + junior-arcade_1.20_all + junior-art_1.20_all + junior-config_1.20_all + junior-doc_1.16.1_all + junior-games-card_1.20_all + junior-games-gl_1.20_all + junior-games-net_1.20_all + junior-games-sim_1.20_all + junior-games-text_1.20_all + junior-gnome_1.20_all + junior-internet_1.20_all + junior-kde_1.20_all + junior-math_1.20_all + junior-programming_1.20_all + junior-puzzle_1.20_all + junior-sound_1.20_all + junior-system_1.20_all + junior-tasks_1.20_all + junior-toys_1.20_all + junior-typing_1.20_all + junior-writing_1.20_all + junit_3.8.2-8_all + junit-doc_3.8.2-8_all + junit4_4.10-3_all + junit4-doc_4.10-3_all + junkfilter_20030115-4_all + jvim-doc_3.0-2.1b-3_all + jwchat_1.0+dfsg-1.1_all + jxplorer_3.2.2~rc1+dfsg-3_all + jython_2.5.2-1_all + jython-doc_2.5.2-1_all + k3b-data_2.0.2-6_all + k3b-extrathemes_2.0.2-6_all + k3b-i18n_2.0.2-6_all + k3d-data_0.8.0.2-18_all + kabikaboo_1.7-1_all + kadu-common_0.11.2-1_all + kadu-dev_0.11.2-1_all + kadu-themes_0.11.2-1_all + kajongg_4:4.8.4-3_all + kakasi-dic_2.3.5~pre1+cvs20071101-1_all + kalzium-data_4:4.8.4-1_all + kanadic_6.5deb2-8_all + kanif_1.2.2-1_all + kanjidic_2012.05.09-1_all + kanjidic-xml_2012.05.09-1_all + kannel-docs_1.4.3-2_all + kanyremote_5.13-1_all + kate-data_4:4.8.4-1_all + kate-syntax-go_2:1.0.2-1.1_all + kball-data_0.0.20041216-8_all + kbd-compat_1:0.2.3dbs-70_all + kcachegrind-converters_4:4.8.4+dfsg-1_all + kcron_4:4.8.4-3_all + kde-baseapps_4:4.8.4-2_all + kde-baseapps-data_4:4.8.4-2_all + kde-config-touchpad_0.8.1-1_all + kde-full_5:77+deb7u1_all + kde-icons-mono_4:4.8.4-5_all + kde-icons-nuvola_4:4.8.4-5_all + kde-l10n-ar_4:4.8.4-2_all + kde-l10n-bg_4:4.8.4-2_all + kde-l10n-bs_4:4.8.4-2_all + kde-l10n-ca_4:4.8.4-2_all + kde-l10n-cavalencia_4:4.8.4-2_all + kde-l10n-cs_4:4.8.4-2_all + kde-l10n-da_4:4.8.4-2_all + kde-l10n-de_4:4.8.4-2_all + kde-l10n-el_4:4.8.4-2_all + kde-l10n-engb_4:4.8.4-2_all + kde-l10n-es_4:4.8.4-2_all + kde-l10n-et_4:4.8.4-2_all + kde-l10n-eu_4:4.8.4-2_all + kde-l10n-fa_4:4.8.4-2_all + kde-l10n-fi_4:4.8.4-2_all + kde-l10n-fr_4:4.8.4-2_all + kde-l10n-ga_4:4.8.4-2_all + kde-l10n-gl_4:4.8.4-2_all + kde-l10n-he_4:4.8.4-2_all + kde-l10n-hr_4:4.8.4-2_all + kde-l10n-hu_4:4.8.4-2_all + kde-l10n-ia_4:4.8.4-2_all + kde-l10n-id_4:4.8.4-2_all + kde-l10n-is_4:4.8.4-2_all + kde-l10n-it_4:4.8.4-2_all + kde-l10n-ja_4:4.8.4-2_all + kde-l10n-kk_4:4.8.4-2_all + kde-l10n-km_4:4.8.4-2_all + kde-l10n-ko_4:4.8.4-2_all + kde-l10n-lt_4:4.8.4-2_all + kde-l10n-lv_4:4.8.4-2_all + kde-l10n-nb_4:4.8.4-2_all + kde-l10n-nds_4:4.8.4-2_all + kde-l10n-nl_4:4.8.4-2_all + kde-l10n-nn_4:4.8.4-2_all + kde-l10n-pa_4:4.8.4-2_all + kde-l10n-pl_4:4.8.4-2_all + kde-l10n-pt_4:4.8.4-2_all + kde-l10n-ptbr_4:4.8.4-2_all + kde-l10n-ro_4:4.8.4-2_all + kde-l10n-ru_4:4.8.4-2_all + kde-l10n-si_4:4.8.4-2_all + kde-l10n-sk_4:4.8.4-2_all + kde-l10n-sl_4:4.8.4-2_all + kde-l10n-sr_4:4.8.4-2_all + kde-l10n-sv_4:4.8.4-2_all + kde-l10n-tg_4:4.8.4-2_all + kde-l10n-th_4:4.8.4-2_all + kde-l10n-tr_4:4.8.4-2_all + kde-l10n-ug_4:4.8.4-2_all + kde-l10n-uk_4:4.8.4-2_all + kde-l10n-vi_4:4.8.4-2_all + kde-l10n-wa_4:4.8.4-2_all + kde-l10n-zhcn_4:4.8.4-2_all + kde-l10n-zhtw_4:4.8.4-2_all + kde-runtime-data_4:4.8.4-2_all + kde-sc-dev-latest_4:4.8.4+5.77+deb7u1_all + kde-standard_5:77+deb7u1_all + kde-telepathy_0.4.0_all + kde-telepathy-data_0.4.0-1_all + kde-telepathy-minimal_0.4.0_all + kde-wallpapers_4:4.8.4-1_all + kde-wallpapers-default_4:4.8.4-1_all + kde-workspace_4:4.8.4-6_all + kde-workspace-data_4:4.8.4-6_all + kdeaccessibility_4:4.8.4+5.77+deb7u1_all + kdeadmin_4:4.8.4-3_all + kdeartwork_4:4.8.4-5_all + kdeartwork-emoticons_4:4.8.4-5_all + kdeartwork-theme-icon_4:4.8.4-5_all + kdebase-apps_4:4.8.4-2_all + kdebase-bin_4:4.8.4-2_all + kdebase-dbg_4:4.8.4-2_all + kdebase-runtime_4:4.8.4-2_all + kdebase-runtime-dbg_4:4.8.4-2_all + kdebase-workspace_4:4.8.4-6_all + kdebase-workspace-bin_4:4.8.4-6_all + kdebase-workspace-dev_4:4.8.4-6_all + kdeedu_4:4.8.4+5.77+deb7u1_all + kdeedu-kvtml-data_4:4.8.4-1_all + kdegames_4:4.8.4-3_all + kdegames-card-data_4:4.8.4-3_all + kdegames-mahjongg-data_4:4.8.4-3_all + kdegraphics_4:4.8.4+5.77+deb7u1_all + kdegraphics-libs-data_4:4.8.4+5.77+deb7u1_all + kdegraphics-strigi-plugins_4:4.8.4+5.77+deb7u1_all + kdelibs5-data_4:4.8.4-4_all + kdelirc_4:4.8.4-3_all + kdemultimedia_4:4.8.4-2_all + kdenetwork_4:4.8.4-1_all + kdenlive-data_0.9.2-2_all + kdepim_4:4.4.11.1+l10n-3_all + kdeplasma-addons_4:4.8.4-1_all + kdesdk_4:4.8.4+dfsg-1_all + kdesdk-scripts_4:4.8.4+dfsg-1_all + kdesrc-build_1.15.1-1_all + kdetoys_4:4.8.4-1_all + kdeutils_4:4.8.4+5.77+deb7u1_all + kdevelop-data_4:4.3.1-3_all + kdevelop-l10n_4:4.3.1-3_all + kdevelop-php-docs-l10n_1.3.1-2_all + kdevelop-php-l10n_1.3.1-2_all + kdevplatform-l10n_1.3.1-2_all + kdewallpapers_4:4.8.4-5_all + kdewebdev_4:4.8.4-1_all + kdiff3-doc_0.9.96-4_all + kdirstat_2.7.3-1_all + kdm-gdmcompat_0.13-2_all + kdm-theme-aperture_0.r1552-1_all + kdm-theme-bespin_0.r1552-1_all + kdm-theme-tibanna_0.r1552-1_all + kdump-tools_1.4.3-1_all + kedpm_0.5.0-4_all + kedpm-gtk_0.5.0-4_all + keepass2_2.19+dfsg-2_all + keepass2-doc_2.19+dfsg-2_all + keepnote_0.7.8-1_all + kephra_0.4.3.32+dfsg-2_all + kernel-package_12.036+nmu3_all + kernel-patch-atopacct_1:1.23-1_all + kernel-patch-atopcnt_1:1.23-1_all + kernel-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + kernel-patch-scripts_0.99.36+nmu1_all + kernel-patch-viewos_0.20120115-2_all + kernel-wedge_2.85_all + ketchup_1.0.1+git20111228+e1c62066-1_all + ketm-data_0.0.6-22_all + keurocalc-data_1.2.0-1_all + kexi-plugin-kspread_1:2.4.3+2_all + kexi-plugin-mysql_1:2.4.3+2_all + kexi-plugin-postgresql_1:2.4.3+2_all + kexi-plugin-xbase_1:2.4.3+2_all + key-mon_1.13-1_all + keyanalyze_1.1.4-1_all + keyboard-configuration_1.88_all + keyboards-rg_0.2_all + keychain_2.7.1-1_all + keyjnote_0.10.3-2_all + keymapper_0.5.3-10.1_all + keystone_2012.1.1-13+wheezy1_all + keystone-doc_2012.1.1-13+wheezy1_all + kfreebsd-source-8.3_8.3-6+deb7u1_all + kfreebsd-source-9.0_9.0-10+deb70.6_all + kgb-bot_1.15-2_all + kgb-client_1.15-2_all + kgb-client-git_1.15-2_all + kgeography-data_4:4.8.4-1_all + khmerconverter_1.4-1_all + kicad-common_0.20120526+bzr3261-1_all + kicad-doc-de_0.20120526+bzr3261-1_all + kicad-doc-en_0.20120526+bzr3261-1_all + kicad-doc-es_0.20120526+bzr3261-1_all + kicad-doc-fr_0.20120526+bzr3261-1_all + kicad-doc-hu_0.20120526+bzr3261-1_all + kicad-doc-it_0.20120526+bzr3261-1_all + kicad-doc-pl_0.20120526+bzr3261-1_all + kicad-doc-pt_0.20120526+bzr3261-1_all + kicad-doc-ru_0.20120526+bzr3261-1_all + kicad-doc-zh-cn_0.20120526+bzr3261-1_all + kiki_0.5.6-8_all + kiki-the-nano-bot-data_1.0.2+dfsg1-4_all + kildclient-doc_2.11.1-1_all + kile-doc_1:2.1.0-1_all + kile-l10n_1:2.1.0-1_all + killer_0.90-8_all + kimwitu++-doc_2.3.13-2_all + kimwitu-doc_10a+1-2.2_all + kindleclip_0.3-3_all + king_2.21.120420-2_all + kinput2-common_3.1-10.3_all + kipi-plugins-common_4:2.6.0-1_all + klash-opengl_0.8.11~git20120629-1+deb7u1_all + klettres-data_4:4.8.4-1_all + klone_2.1.0~rc1-1_all + klone-package_0.3_all + kmfl-keyboards-mywin_2.1.1-2_all + kmymoney-common_4.6.2-3.2_all + knowledgeroot_0.9.9.5-6_all + ko.tex_0.1.0+20071012-1.1_all + ko.tex-base_0.1.0+20071012-1.2_all + ko.tex-extra_0.1.0+20071012-1.2_all + ko.tex-extra-hlfont_0.1.0-1_all + kobodeluxe-data_0.5.1-6_all + koffice_1:2.4.3+2_all + koffice-dbg_1:2.4.3+2_all + koffice-l10n-ca_1:2.4.3+2_all + koffice-l10n-cavalencia_1:2.4.3+2_all + koffice-l10n-da_1:2.4.3+2_all + koffice-l10n-de_1:2.4.3+2_all + koffice-l10n-el_1:2.4.3+2_all + koffice-l10n-engb_1:2.4.3+2_all + koffice-l10n-es_1:2.4.3+2_all + koffice-l10n-et_1:2.4.3+2_all + koffice-l10n-fr_1:2.4.3+2_all + koffice-l10n-hu_1:2.4.3+2_all + koffice-l10n-it_1:2.4.3+2_all + koffice-l10n-kk_1:2.4.3+2_all + koffice-l10n-nb_1:2.4.3+2_all + koffice-l10n-nds_1:2.4.3+2_all + koffice-l10n-nl_1:2.4.3+2_all + koffice-l10n-pl_1:2.4.3+2_all + koffice-l10n-pt_1:2.4.3+2_all + koffice-l10n-ptbr_1:2.4.3+2_all + koffice-l10n-ru_1:2.4.3+2_all + koffice-l10n-sv_1:2.4.3+2_all + koffice-l10n-uk_1:2.4.3+2_all + koffice-l10n-zhcn_1:2.4.3+2_all + koffice-l10n-zhtw_1:2.4.3+2_all + konfont_0.1-8_all + konversation-data_1.4-1_all + konwert-dev_1.8-11.2_all + konwert-filters_1.8-11.2_all + korundum_4:4.8.4-1_all + korundum4_4:4.8.4-1_all + kplato_1:2.4.3+2_all + kpresenter_1:2.4.3+2_all + kradio_4.0.4-1_all + krank_0.7+dfsg2-2_all + kraptor-data_0.0.20040403-6_all + krb5-config_2.3_all + krb5-doc_1.10.1+dfsg-5+deb7u1_all + krb5-locales_1.10.1+dfsg-5+deb7u1_all + krecipes-data_2.0~beta2-3_all + krecipes-doc_2.0~beta2-3_all + krita-data_1:2.4.4-3_all + ksame_4:4.8.4-3_all + kscreensaver-xsavers-webcollage_4:4.8.4-5_all + ksplash-theme-aperture_0.r1552-1_all + ksplash-theme-bespin_0.r1552-1_all + ksplash-theme-tibanna_0.r1552-1_all + kspread_1:2.4.3+2_all + kst-data_2.0.3-1.3_all + kst-doc_2.0.3-1.3_all + kstars-data_4:4.8.4-1_all + ktorrent-data_4.2.1-1_all + ktouch-data_4:4.8.4-1_all + kttsd_4:4.8.4-2_all + kunststoff_2.0.2-5_all + kup-client_0.3.2-1_all + kup-server_0.3.2-1_all + kupfer_0+v208-2_all + kvirc-data_4:4.1.3+20111124.svn5988-2_all + kvpnc-data_0.9.6a-2.1_all + kwalify_0.7.2-2_all + kword_1:2.4.3+2_all + kwwidgets-doc_1.0.0~cvs20100930-8_all + kwwidgets-examples_1.0.0~cvs20100930-8_all + l7-protocols_20090528-4_all + ladder_0.0.4_all + laditools_1.0.1-2_all + lam-mpidoc_7.1.4-3_all + lame-doc_3.99.5+repack1-3_all + lammps-doc_0~20120615.gite442279-1_all + landell_0.92.1-1.1_all + laptop-mode-tools_1.61-2_all + lastfmsubmitd_1.0.6-4_all + lastmp_1.0.6-4_all + lat_1.2.3-10_all + late-data_0.1.0-12_all + latex-beamer_3.10-2_all + latex-cjk-all_4.8.3+git20120621-1_all + latex-cjk-chinese-arphic-bkai00mp_1.22_all + latex-cjk-chinese-arphic-bsmi00lp_1.22_all + latex-cjk-chinese-arphic-gbsn00lp_1.22_all + latex-cjk-chinese-arphic-gkai00mp_1.22_all + latex-cjk-japanese-wadalab_0.20050817-16_all + latex-cjk-korean_4.8.3+git20120621-1_all + latex-cjk-thai_4.8.3+git20120621-1_all + latex-fonts-sipa-arundina_0.2.0-5_all + latex-fonts-thai-tlwg_1:0.5.0-5_all + latex-make_2.1.18-2_all + latex-mk_2.1-1.1_all + latex-xcolor_2.11-1.1_all + latex209-base_25.mar.1992-13_all + latex209-bin_25.mar.1992-13_all + latex209-src_25.mar.1992-13_all + latex2html_2008-debian1-7_all + latex2rtf-doc_1.9.19-4.2_all + latexdiff_0.5-4_all + latexdraw_2.0.8+1-3_all + latexila-data_2.4.0-1_all + latexmk_1:4.24-1_all + latexml_0.7.0-1_all + launchy-skins_2.5-1_all + lazarus_0.9.30.4-6_all + lazarus-0.9.30.4_0.9.30.4-6_all + lazarus-doc_0.9.30.4-6_all + lazarus-doc-0.9.30.4_0.9.30.4-6_all + lazarus-src_0.9.30.4-6_all + lazarus-src-0.9.30.4_0.9.30.4-6_all + lazygal_0.7.4-1_all + lbreakout2-data_2.6.3-1_all + lcov_1.9-3_all + ldap-account-manager_3.7-2_all + ldap-account-manager-lamdaemon_3.7-2_all + ldap-haskell-doc_1:8_all + ldapscripts_2.0.1-1_all + ldaptor-doc_0.0.43+debian1-7_all + ldaptor-utils_0.0.43+debian1-7_all + ldirectord_1:3.9.2-5+deb7u1_all + ldm-server_2:2.2.11-2_all + ldm-themes_12.07.1_all + ldp-docbook-dsssl_0.0.20040321-2_all + ldp-docbook-xsl_0.0.20040321-2_all + ldtp_2.3.1-1_all + ldtp-doc_2.3.1-1_all + lebiniou-data_3.10-1_all + ledgersmb_1.3.18-2_all + ledit_2.03-1_all + leds-alix-source_0.0.1-1.1_all + legit_0.1.1-2_all + leiningen_1.7.1-1_all + lemonldap-ng_1.1.2-5+deb7u1_all + lemonldap-ng-doc_1.1.2-5+deb7u1_all + lesstif-doc_1:0.95.2-1.1_all + letodms_3.3.9+dfsg-1_all + leveldb-doc_0+20120530.gitdd0d562-1_all + lfm_2.3-1_all + lhapdf-ccwrap-doc_5.8.7+repack-1_all + lhapdf-pdfsets-minimal_5.8.7+repack-1_all + libaac-tactics-coq_0.2.pl2-7_all + libabstract-ruby_1.0.0-2.1_all + libabstract-ruby-doc_1.0.0-2.1_all + libabstract-ruby1.8_1.0.0-2.1_all + libabstract-ruby1.9.1_1.0.0-2.1_all + libaccess-bridge-java_1.26.2-9_all + libaccess-modifier-checker-java_1.0-4_all + libaccess-modifier-checker-java-doc_1.0-4_all + libaccessors-perl_1.01-1_all + libace-doc_6.0.3+dfsg-0.1_all + libacegi-security-java_1.0.7-3_all + libacegi-security-java-doc_1.0.7-3_all + libacme-bleach-perl_1.13-1_all + libacme-brainfck-perl_1.1.1_all + libacme-eyedrops-perl_1.60-1_all + libacme-poe-knee-perl_1.10-7_all + libactionmailer-ruby_2:2.3.14.2_all + libactionmailer-ruby1.8_2:2.3.14.2_all + libactionpack-ruby_2:2.3.14.2_all + libactionpack-ruby1.8_2:2.3.14.2_all + libactiveldap-ruby_1.2.4-3_all + libactiveldap-ruby-doc_1.2.4-3_all + libactiveldap-ruby1.8_1.2.4-3_all + libactivemq-activeio-java_3.1.1-1_all + libactivemq-activeio-java-doc_3.1.1-1_all + libactivemq-java_5.6.0+dfsg-1_all + libactivemq-java-doc_5.6.0+dfsg-1_all + libactivemq-protobuf-java_1.1-3_all + libactivemq-protobuf-java-doc_1.1-3_all + libactiverecord-ruby_2:2.3.14.2_all + libactiverecord-ruby1.8_2:2.3.14.2_all + libactiverecord-ruby1.9.1_2:2.3.14.2_all + libactiveresource-ruby_2:2.3.14.2_all + libactiveresource-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby_2:2.3.14.2_all + libactivesupport-ruby1.8_2:2.3.14.2_all + libactivesupport-ruby1.9.1_2:2.3.14.2_all + libaddressable-ruby_2.2.8-1_all + libaddressable-ruby1.8_2.2.8-1_all + libaddressable-ruby1.9.1_2.2.8-1_all + libaether-java_1.13.1-2_all + libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all + libajaxtags-java_1.5.1-1_all + libakonadi-ruby_4:4.8.4-1_all + libakonadi-ruby1.8_4:4.8.4-1_all + libakuma-java_1.8-1_all + libakuma-java-doc_1.8-1_all + libalgorithm-c3-perl_0.08-1_all + libalgorithm-checkdigits-perl_0.50-1_all + libalgorithm-dependency-perl_1.110-1_all + libalgorithm-diff-perl_1.19.02-2_all + libalgorithm-diff-ruby_0.4-14_all + libalgorithm-diff-ruby1.8_0.4-14_all + libalgorithm-merge-perl_0.08-2_all + libalgorithm-munkres-perl_0.08-2_all + libalgorithm-numerical-sample-perl_2010011201-1_all + libaliased-perl_0.30-1_all + libalien-sdl-dev-perl_1.430-4_all + libalien-sdl-perl_1.430-4_all + liballegro-doc_2:4.4.2-2.1_all + libalzabo-perl_0.92-2_all + libamazon-ruby_0.9.2-1_all + libamazon-sqs-simple-perl_1.06-1_all + libamazonec2-ruby_0.9.17-2_all + libamazonec2-ruby-doc_0.9.17-2_all + libamazonec2-ruby1.8_0.9.17-2_all + libampsharp-cil-dev_2.0.4-2_all + libampsharp2.0-cil_2.0.4-2_all + libamrita-ruby1.8_1.0.2-10_all + libamrita2-ruby_2.0.2+dfsg.1-2_all + libamrita2-ruby1.8_2.0.2+dfsg.1-3_all + libamrita2-ruby1.9.1_2.0.2+dfsg.1-3_all + libanimal-sniffer-java_1.7-2_all + libanimal-sniffer-java-doc_1.7-2_all + libannotation-indexer-java_1.3-1_all + libannotation-indexer-java-doc_1.3-1_all + libantelope-java_3.5.1-2_all + libantelope-java-doc_3.5.1-2_all + libantlr-java_2.7.7+dfsg-4_all + libantlr-maven-plugin-java_2.1-2_all + libantlr2.7-cil_2.7.7+dfsg-4_all + libantlr3-gunit-java_3.2-7_all + libantlr3-gunit-java-doc_3.2-7_all + libany-moose-perl_0.17-1_all + libany-template-processdir-perl_0.07-1_all + libanydata-perl_0.10-9_all + libanyevent-aggressiveidle-perl_0.04-1_all + libanyevent-callback-perl_0.06-1_all + libanyevent-dbd-pg-perl_0.03-3_all + libanyevent-dbi-perl_2.2-1_all + libanyevent-forkobject-perl_0.09-1_all + libanyevent-http-perl_2.14-1_all + libanyevent-httpd-perl_0.93-3_all + libanyevent-i3-perl_0.08-1+deb7u1_all + libanyevent-irc-perl_0.96-1_all + libanyevent-redis-perl_0.23-1_all + libanyevent-serialize-perl_0.04-1_all + libanyevent-tools-perl_0.12-1_all + libanyevent-xmpp-perl_0.52-1_all + libaopalliance-java_20070526-5_all + libaopalliance-java-doc_20070526-5_all + libapache-admin-config-perl_0.94-1.1_all + libapache-asp-perl_2.62-1_all + libapache-authznetldap-perl_0.07-4_all + libapache-dbi-perl_1.11-1_all + libapache-dbilogger-perl_0.93-12_all + libapache-gallery-perl_1.0.2-1_all + libapache-htgroup-perl_1.23-1_all + libapache-htpasswd-perl_1.8-1.1_all + libapache-mime4j-java_0.6.1-2_all + libapache-mime4j-java-doc_0.6.1-2_all + libapache-mod-jk-doc_1:1.2.37-1_all + libapache-mod-security_2.6.6-6+deb7u1_all + libapache-poi-java_3.6+dfsg-2_all + libapache-poi-java-doc_3.6+dfsg-2_all + libapache-pom-java_10-2_all + libapache-ruby1.8_1.2.6-2_all + libapache-session-browseable-perl_0.7-1_all + libapache-session-ldap-perl_0.2-1_all + libapache-session-perl_1.89-1_all + libapache-session-wrapper-perl_0.34-1_all + libapache-sessionx-perl_2.01-4_all + libapache-singleton-perl_0.15-1_all + libapache2-authcassimple-perl_0.10-1_all + libapache2-authcookie-perl_3.18-1_all + libapache2-mod-neko_1.8.1-6_all + libapache2-mod-perl2-dev_2.0.7-3_all + libapache2-mod-perl2-doc_2.0.7-3_all + libapache2-mod-python-doc_3.3.1-9_all + libapache2-mod-rivet-doc_2.0.5-1_all + libapache2-reload-perl_0.12-1_all + libapache2-sitecontrol-perl_1.05-1_all + libapp-cache-perl_0.37-1_all + libapp-cli-perl_0.313-1_all + libapp-cmd-perl_0.318-1_all + libapp-control-perl_1.02-2_all + libapp-daemon-perl_0.15-1_all + libapp-info-perl_0.56-1_all + libapp-nopaste-perl_0.33-1_all + libapp-options-perl_1.12-1_all + libapp-rad-perl_1.04-1_all + libapp-repl-perl_0.012-1_all + libapp-termcast-perl_0.12-1_all + libappconfig-perl_1.66-1_all + libappindicator-doc_0.4.92-2_all + libappindicator0.1-cil_0.4.92-2_all + libappindicator0.1-cil-dev_0.4.92-2_all + libapreq2-doc_2.13-1_all + libapron-dev_0.9.10-5.2_all + libapt-pkg-doc_0.9.7.9+deb7u1_all + libaqbanking-data_5.0.24-3_all + libaqbanking-doc_5.0.24-3_all + libarc-php_2~20101006-2_all + libarch-perl_0.5.2-1_all + libarchive-any-perl_0.0932-1_all + libarchive-ar-perl_1.14-1_all + libarchive-peek-perl_0.35-1_all + libarchive-tar-wrapper-perl_0.16-1_all + libarchive-zip-perl_1.30-6_all + libargs4j-java_2.0.16-2_all + libargs4j-java-doc_2.0.16-2_all + libargtable2-docs_12-1_all + libarray-compare-perl_2.02-1_all + libarray-diff-perl_0.07-1_all + libarray-printcols-perl_2.1-9_all + libarray-unique-perl_0.08-1_all + libart2.0-cil_2.24.2-3_all + libart2.0-cil-dev_2.24.2-3_all + libasa-perl_0.02-1_all + libasio-dev_1.4.1-3.2_all + libasio-doc_1.4.1-3.2_all + libasm-java_1.5.3-7_all + libasm-java-doc_1.5.3-7_all + libasm2-java_2.2.3-6_all + libasm2-java-doc_2.2.3-6_all + libasm3-java_3.3.2-1_all + libasm3-java-doc_3.3.2-1_all + libasound2-doc_1.0.25-4_all + libaspect-perl_1.02-1_all + libaspectj-java_1.6.12+dfsg-3_all + libaspectj-java-doc_1.6.12+dfsg-3_all + libassimp-doc_3.0~dfsg-1_all + libasterisk-agi-perl_1.01-2_all + libastro-fits-header-perl_3.05-1_all + libasync-http-client-java_1.6.5-1_all + libasync-http-client-java-doc_1.6.5-1_all + libasync-mergepoint-perl_0.04-1_all + libatinject-jsr330-api-java_1.0-2_all + libatinject-jsr330-api-java-doc_1.0-2_all + libatk-wrapper-java_0.30.4-3_all + libatk1-ruby_1.1.3-2_all + libatk1-ruby1.8_1.1.3-2_all + libatk1.0-data_2.4.0-2_all + libatk1.0-doc_2.4.0-2_all + libatkmm-1.6-doc_2.22.6-1_all + libatlas-cpp-doc_0.6.2-3_all + libatlas-dev_3.8.4-9+deb7u1_all + libatlas-doc_3.8.4-9+deb7u1_all + libatlas3gf-base_3.8.4-9+deb7u1_all + libatombus-perl_1.0405-1_all + libatompub-perl_0.3.7-1_all + libaubio-doc_0.3.2-4.2_all + libaudio-file-perl_0.11-3_all + libaudio-moosic-perl_0.10-2_all + libaudio-mpd-common-perl_1.120881-1_all + libaudio-mpd-perl_1.120610-1_all + libaudio-musepack-perl_1.0.1-1_all + libaudio-rpld-perl_0.004-1_all + libaudio-scrobbler-perl_0.01-2.1_all + libaudio-wav-perl_0.13-1_all + libaudio-wma-perl_1.3-1_all + libaugeas-ruby_0.4.1-1.1_all + libauth-yubikey-decrypter-perl_0.07-1_all + libauth-yubikey-webclient-perl_3.00-1_all + libauthcas-perl_1.5-1_all + libauthen-bitcard-perl_0.90-1_all + libauthen-captcha-perl_1.023-5_all + libauthen-cas-client-perl_0.05-1_all + libauthen-ntlm-perl_1.09-1_all + libauthen-oath-perl_1.0.0-1_all + libauthen-passphrase-perl_0.008-1_all + libauthen-radius-perl_0.20-1_all + libauthen-sasl-perl_2.1500-1_all + libauthen-simple-cdbi-perl_0.2-2_all + libauthen-simple-dbi-perl_0.2-2_all + libauthen-simple-dbm-perl_0.2-2_all + libauthen-simple-http-perl_0.2-3_all + libauthen-simple-kerberos-perl_0.1-3_all + libauthen-simple-ldap-perl_0.3-1_all + libauthen-simple-net-perl_0.2-3_all + libauthen-simple-pam-perl_0.2-3_all + libauthen-simple-passwd-perl_0.6-2_all + libauthen-simple-perl_0.5-1_all + libauthen-simple-radius-perl_0.1-2_all + libauthen-simple-smb-perl_0.1-3_all + libauthority-shared-perl_0.006-1_all + libautobox-core-perl_1.21-1_all + libautobox-dump-perl_20090426.1746-1_all + libautobox-list-util-perl_20090629-1_all + libautodie-perl_2.12-1_all + libautomaton-java_1.11-8-1_all + libav-doc_6:0.8.9-1_all + libav-extra-dbg_6:0.8.9-1_all + libavahi-cil-dev_0.6.19-4.2_all + libavahi-ui-cil-dev_0.6.19-4.2_all + libavahi-ui0.0-cil_0.6.19-4.2_all + libavahi1.0-cil_0.6.19-4.2_all + libavalon-framework-java_4.2.0-8_all + libavalon-framework-java-doc_4.2.0-8_all + libavdevice-extra-53_6:0.8.9-1_all + libavfilter-extra-2_6:0.8.9-1_all + libavformat-extra-53_6:0.8.9-1_all + libavifile-0.7-common_1:0.7.48~20090503.ds-13_all + libavutil-extra-51_6:0.8.9-1_all + libawl-php_0.53-1_all + libaws-doc_2.10.2-4_all + libaxiom-java_1.2.8-1_all + libaxis-java_1.4-16.2_all + libaxis-java-doc_1.4-16.2_all + libb-hooks-endofscope-perl_0.11-1_all + libb-keywords-perl_1.12-1_all + libb-perlreq-perl_0.80-1_all + libbabl-doc_0.1.10-1_all + libbackport-util-concurrent-java_3.1-3_all + libbackport-util-concurrent-java-doc_3.1-3_all + libball1.4-data_1.4.1+20111206-4_all + libball1.4-doc_1.4.1+20111206-4_all + libbamf-doc_0.2.118-1_all + libbarby-ruby_0.5.0-1_all + libbarby-ruby-doc_0.5.0-1_all + libbarby-ruby1.8_0.5.0-1_all + libbarcode-code128-perl_2.01-2_all + libbase-java_1.1.6-2_all + libbash_0.9.11-1_all + libbash-doc_0.9.11-1_all + libbasicplayer-java_3.0-6_all + libbatik-java_1.7+dfsg-3_all + libbatteries-ocaml-doc_1.4.3-1_all + libbcel-java_5.2-9_all + libbcel-java-doc_5.2-9_all + libbcmail-java_1.44+dfsg-3.1_all + libbcmail-java-doc_1.44+dfsg-3.1_all + libbcpg-java_1.44+dfsg-3.1_all + libbcpg-java-doc_1.44+dfsg-3.1_all + libbcprov-java_1.44+dfsg-3.1_all + libbcprov-java-doc_1.44+dfsg-3.1_all + libbctsp-java_1.44+dfsg-3.1_all + libbctsp-java-doc_1.44+dfsg-3.1_all + libbeansbinding-java_1.2.1-1_all + libbeansbinding-java-doc_1.2.1-1_all + libbenchmark-apps-perl_0.04-1_all + libbenchmark-progressbar-perl_0.00001-1_all + libbenchmark-timer-perl_0.7102-1_all + libbencode-perl_1.4-1_all + libbest-perl_0.14-1_all + libbetter-appframework-java_1.9-3_all + libbetter-appframework-java-doc_1.9-3_all + libbg1-doc_1.106-1_all + libbiblio-citation-parser-perl_1.10+dfsg-1_all + libbiblio-endnotestyle-perl_0.05-1_all + libbiblio-isis-perl_0.24-1.1_all + libbind-config-parser-perl_0.01-1_all + libbind-confparser-perl_0.95-3_all + libbindex-java_2.2+svn101-1_all + libbio-asn1-entrezgene-perl_1.100-1_all + libbio-chado-schema-perl_0.10010-1_all + libbio-das-lite-perl_2.04-1.1_all + libbio-graphics-perl_2.26-1_all + libbio-mage-perl_20030502.3-2_all + libbio-mage-utils-perl_20030502.0-1_all + libbio-perl-perl_1.6.901-3_all + libbio-perl-run-perl_1.6.9-1_all + libbio-primerdesigner-perl_0.07-1_all + libbio-ruby_1.4.2-3_all + libbio-ruby1.8_1.4.2-3_all + libbiojava-java_1:1.7.1-2_all + libbiojava-java-demos_1:1.7.1-2_all + libbiojava-java-doc_1:1.7.1-2_all + libbiojava1.7-java_1:1.7.1-2_all + libbiojava3-java_3.0.4-1_all + libbiojava3-java-doc_3.0.4-1_all + libbiojava3.0-java_3.0.4-1_all + libbit-vector-minimal-perl_1.3-4_all + libbitstream-dev_1.0-1_all + libblas-doc_1.2.20110419-5_all + libblas3gf_1.2.20110419-5_all + libblitz-doc_1:0.9-13_all + libbloom-filter-perl_1.0-3_all + libbluecloth-ruby_2.2.0-3_all + libbluecloth-ruby1.8_2.2.0-3_all + libbluray-bdj_1:0.2.2-1_all + libbluray-doc_1:0.2.2-1_all + libbonobo2-common_2.24.3-1_all + libbonoboui2-common_2.24.3-1_all + libboo-cil-dev_0.9.5~git20110729.r1.202a430-2_all + libboo2.0.9-cil_0.9.5~git20110729.r1.202a430-2_all + libboolean-perl_0.28-1_all + libboost-doc_1.49.0.1_all + libboost1.49-doc_1.49.0-3.2_all + libbot-basicbot-perl_0.7-2_all + libbot-training-perl_0.04-1_all + libboulder-perl_1.30-4_all + libbrailleutils-java_1.2~b-2_all + libbrailleutils-java-doc_1.2~b-2_all + libbridge-method-injector-java_1.4-3_all + libbridge-method-injector-java-doc_1.4-3_all + libbrlapi-java_4.4-10+deb7u1_all + libbrowser-open-perl_0.04-1_all + libbse-dev_0.7.4-5_all + libbsearch-ruby_1.5-9_all + libbsearch-ruby1.8_1.5-9_all + libbsf-java_1:2.4.0-5_all + libbsf-java-doc_1:2.4.0-5_all + libbt_0.70.1-13_all + libbtm-java_2.1.2-1_all + libbuild-helper-maven-plugin-java_1.5-2_all + libbuild-helper-maven-plugin-java-doc_1.5-2_all + libbuilder-ruby_3.0.0-3_all + libbuilder-ruby1.8_3.0.0-3_all + libbuilder-ruby1.9.1_3.0.0-3_all + libbunny-ruby_0.7.8-1_all + libbunny-ruby-doc_0.7.8-1_all + libbunny-ruby1.8_0.7.8-1_all + libbunny-ruby1.9.1_0.7.8-1_all + libburn-doc_1.2.2-2_all + libbusiness-creditcard-perl_0.31-1_all + libbusiness-edi-perl_0.05-1_all + libbusiness-isbn-data-perl_20081208-1_all + libbusiness-isbn-perl_2.05-1_all + libbusiness-issn-perl_0.91-2_all + libbusiness-onlinepayment-authorizenet-perl_3.22-1_all + libbusiness-onlinepayment-ippay-perl_0.06-2_all + libbusiness-onlinepayment-openecho-perl_0.03-2_all + libbusiness-onlinepayment-payconnect-perl_0.02-1_all + libbusiness-onlinepayment-payflowpro-perl_1.01-2_all + libbusiness-onlinepayment-paymentech-perl_2.04-1_all + libbusiness-onlinepayment-perl_3.02-1_all + libbusiness-onlinepayment-tclink-perl_1.03-3_all + libbusiness-onlinepayment-transactioncentral-perl_0.06-2_all + libbusiness-onlinepayment-viaklix-perl_0.01-3_all + libbusiness-paypal-api-perl_0.69-2_all + libbusiness-tax-vat-validation-perl_1.00-1_all + libbusiness-us-usps-webtools-perl_1.11-1_all + libbytecode-java_0.92.svn.20090106-1_all + libbytecode-java-doc_0.92.svn.20090106-1_all + libbytelist-java_1.0.6-1_all + libc3p0-java_0.9.1.2-7_all + libc3p0-java-doc_0.9.1.2-7_all + libcache-cache-perl_1.06-2_all + libcache-historical-perl_0.05-1_all + libcache-memcached-managed-perl_0.24-1_all + libcache-memcached-perl_1.30-1_all + libcache-perl_2.04-3_all + libcache-ref-perl_0.04-1_all + libcache-simple-timedexpiry-perl_0.27-2_all + libcairo-ruby_1.12.2-2_all + libcairo-ruby1.8_1.12.2-2_all + libcairo2-doc_1.12.2-3_all + libcairomm-1.0-doc_1.10.0-1_all + libcal-dav-perl_0.6-2_all + libcal3d-doc_0.11.0-4.1_all + libcalendar-ocaml-doc_2.03-1_all + libcalendar-simple-perl_1.21-1_all + libcam-pdf-perl_1.58-2_all + libcamlimages-ocaml-doc_1:4.0.1-4_all + libcamomile-ocaml-data_0.8.4-2_all + libcanberra-doc_0.28-6_all + libcanberra-gtk-common-dev_0.28-6_all + libcaptcha-recaptcha-perl_0.94-3_all + libcapture-tiny-perl_0.18-1_all + libcaribou-common_0.4.4-1_all + libcarp-always-perl_0.11-1_all + libcarp-assert-more-perl_1.12-2_all + libcarp-assert-perl_0.20-2_all + libcarp-clan-perl_6.04-1_all + libcarp-clan-share-perl_0.013-1_all + libcarp-datum-perl_1:0.1.3-6_all + libcastor-anttasks-java_1.3.2-1_all + libcastor-codegen-java_1.3.2-1_all + libcastor-core-java_1.3.2-1_all + libcastor-ddlgen-java_1.3.2-1_all + libcastor-java-doc_1.3.2-1_all + libcastor-jdo-java_1.3.2-1_all + libcastor-xml-java_1.3.2-1_all + libcastor-xml-schema-java_1.3.2-1_all + libcatalyst-action-rest-perl_1.04-1_all + libcatalyst-actionrole-acl-perl_0.07-1_all + libcatalyst-authentication-credential-http-perl_1.014-1_all + libcatalyst-controller-actionrole-perl_0.15-1_all + libcatalyst-devel-perl_1.37-1_all + libcatalyst-engine-apache-perl_1.16-1_all + libcatalyst-engine-psgi-perl_0.13+dfsg-1_all + libcatalyst-manual-perl_5.9004-1_all + libcatalyst-model-cdbi-perl_0.12-1_all + libcatalyst-modules-extra-perl_8_all + libcatalyst-modules-perl_44_all + libcatalyst-perl_5.90015-1_all + libcatalyst-plugin-log-dispatch-perl_0.121-1_all + libcatalyst-plugin-scheduler-perl_0.10-1_all + libcatalyst-plugin-smarturi-perl_0.036-1_all + libcatalyst-plugin-unicode-encoding-perl_1.7-1_all + libcatalyst-view-petal-perl_0.03-1_all + libcatalyst-view-tt-perl_0.38-1_all + libcatalystx-injectcomponent-perl_0.024-1_all + libcatalystx-leakchecker-perl_0.06-1_all + libcatalystx-simplelogin-perl_0.17-1_all + libccfits-doc_2.4-1_all + libccrtp-doc_2.0.3-4_all + libccss-doc_0.5.0-4_all + libcddb-file-perl_1.05-1_all + libcddb-get-perl_2.28-1_all + libcddb-perl_1.220-1_all + libcdi-api-java_1.0-1_all + libcdi-api-java-doc_1.0-1_all + libcdk-java_1:1.2.10-3_all + libcegui-mk2-doc_0.7.6-2_all + libcext-doc_6.1.1-2_all + libcfitsio3-doc_3.300-2_all + libcgal-demo_4.0-5_all + libcgi-ajax-perl_0.707-1_all + libcgi-application-basic-plugin-bundle-perl_0.8_all + libcgi-application-dispatch-perl_3.07-2_all + libcgi-application-extra-plugin-bundle-perl_0.6_all + libcgi-application-perl_4.50-1_all + libcgi-application-plugin-actiondispatch-perl_0.98-1_all + libcgi-application-plugin-ajaxupload-perl_0.0.3-3_all + libcgi-application-plugin-anytemplate-perl_0.18-1_all + libcgi-application-plugin-authentication-perl_0.20-1_all + libcgi-application-plugin-authorization-perl_0.07-2_all + libcgi-application-plugin-autorunmode-perl_0.18-1_all + libcgi-application-plugin-captcha-perl_0.04-1_all + libcgi-application-plugin-config-simple-perl_1.01-1_all + libcgi-application-plugin-configauto-perl_1.33-1_all + libcgi-application-plugin-dbh-perl_4.00-1_all + libcgi-application-plugin-dbiprofile-perl_0.07-1_all + libcgi-application-plugin-devpopup-perl_1.07-1_all + libcgi-application-plugin-fillinform-perl_1.15-1_all + libcgi-application-plugin-formstate-perl_0.12-1_all + libcgi-application-plugin-forward-perl_1.06-1_all + libcgi-application-plugin-json-perl_1.02-1_all + libcgi-application-plugin-linkintegrity-perl_0.06-1_all + libcgi-application-plugin-logdispatch-perl_1.02-1_all + libcgi-application-plugin-messagestack-perl_0.34-1_all + libcgi-application-plugin-protectcsrf-perl_1.01-1_all + libcgi-application-plugin-ratelimit-perl_1.0-2_all + libcgi-application-plugin-requiressl-perl_0.04-1_all + libcgi-application-plugin-session-perl_1.03-1_all + libcgi-application-plugin-stream-perl_2.10-1_all + libcgi-application-plugin-tt-perl_1.05-2_all + libcgi-application-plugin-validaterm-perl_2.5-1_all + libcgi-application-plugin-viewcode-perl_1.02-1_all + libcgi-application-server-perl_0.062-1_all + libcgi-compile-perl_0.15-1_all + libcgi-cookie-splitter-perl_0.02-2_all + libcgi-emulate-psgi-perl_0.14-1_all + libcgi-extratags-perl_0.03-1_all + libcgi-fast-perl_5.14.2-21+deb7u1_all + libcgi-formalware-perl_1.13-1_all + libcgi-formbuilder-perl_3.08-1_all + libcgi-formbuilder-source-yaml-perl_1.0.8-2_all + libcgi-pm-perl_3.61-2_all + libcgi-psgi-perl_0.15-1_all + libcgi-session-driver-memcached-perl_0.04-1_all + libcgi-session-expiresessions-perl_1.12-1_all + libcgi-session-perl_4.46-1_all + libcgi-session-serialize-yaml-perl_4.26-1_all + libcgi-simple-perl_1.113-2_all + libcgi-ssi-parser-perl_0.01-1_all + libcgi-ssi-perl_0.92-3_all + libcgi-untaint-date-perl_1.00-2_all + libcgi-untaint-email-perl_0.03-2_all + libcgi-untaint-perl_1.26-4_all + libcgi-uploader-perl_2.17-1_all + libcgi-validop-perl_0.56-1_all + libcgi-xml-perl_0.1-13_all + libcgi-xmlapplication-perl_1.1.3-6_all + libcgi-xmlform-perl_0.10-13_all + libcgicc-doc_3.2.9-3_all + libcglib-java_2.2.2+dfsg-5_all + libcglib-java-doc_2.2.2+dfsg-5_all + libchado-perl_1.22-4_all + libchamplain-doc_0.12.3-1_all + libchamplain-gtk-doc_0.12.3-1_all + libchart-clicker-perl_2.83-1_all + libchart-gnuplot-perl_0.17-1_all + libchart-perl_2.4.5-1_all + libchart-strip-perl_1.08-1_all + libcheck-isa-perl_0.04-1_all + libcheese-doc_3.4.2-2_all + libchef-ruby_10.12.0-3_all + libchef-ruby1.8_10.12.0-3_all + libchemistry-elements-perl_1.07-2_all + libchemistry-formula-perl_3.0.1-1_all + libchi-driver-memcached-perl_0.14-3_all + libchi-perl_0.54-1_all + libchild-perl_0.009-1_all + libchipcard-data_5.0.3beta-3_all + libchipcard-libgwenhywfar47-plugins_5.0.3beta-3_all + libchronic-ruby_0.6.7-2_all + libcipux-cat-web-perl_3.4.0.3-4.1_all + libcipux-dog-perl_3.4.0.0-6_all + libcipux-object-perl_3.4.0.5-2_all + libcipux-passwd-perl_3.4.0.3-2_all + libcipux-perl_3.4.0.13-4_all + libcipux-rbac-simple-perl_3.4.0.0-4_all + libcipux-rpc-client-perl_3.4.0.7-2_all + libcipux-rpc-perl_3.4.0.9-3_all + libcipux-storage-perl_3.4.0.2-6_all + libcipux-task-perl_3.4.0.7-4_all + libclalsadrv-dev_2.0.0-3_all + libclam-doc_1.4.0-5.1_all + libclamav-client-perl_0.11-2_all + libclass-accessor-chained-perl_0.01.1~debian-2.1_all + libclass-accessor-children-perl_0.02-1_all + libclass-accessor-class-perl_0.501-3_all + libclass-accessor-classy-perl_0.9.1-1_all + libclass-accessor-grouped-perl_0.10006-1_all + libclass-accessor-lvalue-perl_0.11-2_all + libclass-accessor-named-perl_0.008-1_all + libclass-accessor-perl_0.34-1_all + libclass-adapter-perl_1.07-1_all + libclass-autouse-perl_2.01-1_all + libclass-base-perl_0.05-1_all + libclass-c3-adopt-next-perl_0.12-1_all + libclass-c3-componentised-perl_1.001000-1_all + libclass-c3-perl_0.24-1_all + libclass-container-perl_0.12-3_all + libclass-contract-perl_1.14-6_all + libclass-csv-perl_1.03-2.1_all + libclass-data-accessor-perl_0.04004-1_all + libclass-data-inheritable-perl_0.08-1_all + libclass-dbi-abstractsearch-perl_0.07-3_all + libclass-dbi-asform-perl_2.42-6_all + libclass-dbi-fromcgi-perl_1.00-4_all + libclass-dbi-fromform-perl_0.04-3_all + libclass-dbi-loader-perl_0.34-2_all + libclass-dbi-loader-relationship-perl_1:1.2-4_all + libclass-dbi-mysql-perl_1.00-3_all + libclass-dbi-pager-perl_0.08-4_all + libclass-dbi-perl_3.0.17-4_all + libclass-dbi-pg-perl_0.09-4_all + libclass-dbi-plugin-abstractcount-perl_0.08-1_all + libclass-dbi-plugin-pager-perl_0.561-4_all + libclass-dbi-plugin-perl_0.03-5_all + libclass-dbi-plugin-retrieveall-perl_1.04-3_all + libclass-dbi-plugin-type-perl_0.02-7_all + libclass-dbi-sqlite-perl_0.11-4_all + libclass-dbi-sweet-perl_0.10-1_all + libclass-default-perl_1.51-2_all + libclass-delegator-perl_0.09-1_all + libclass-errorhandler-perl_0.01-2_all + libclass-factory-perl_1.06-2_all + libclass-factory-util-perl_1.7-2_all + libclass-field-perl_0.15-3_all + libclass-gomor-perl_1.02-1_all + libclass-handle-perl_1.07-2_all + libclass-inner-perl_0.200001-1_all + libclass-insideout-perl_1.10-2_all + libclass-inspector-perl_1.27-1_all + libclass-isa-perl_0.36-3_all + libclass-load-perl_0.17-1_all + libclass-loader-perl_2.03-1_all + libclass-makemethods-perl_1.01-4_all + libclass-meta-perl_0.65-1_all + libclass-method-modifiers-perl_1.09-1_all + libclass-mix-perl_0.003-1_all + libclass-mixinfactory-perl_0.92-2_all + libclass-multimethods-perl_1.70-5_all + libclass-objecttemplate-perl_0.7-6_all + libclass-ooorno-perl_0.011-1_all + libclass-perl_1.00-1_all + libclass-pluggable-perl_0.022-2_all + libclass-prototyped-perl_1.11-3_all + libclass-returnvalue-perl_0.55-1_all + libclass-singleton-perl_1.4-1_all + libclass-spiffy-perl_0.15-3_all + libclass-std-fast-perl_0.0.8-1_all + libclass-std-perl_0.0.9-2_all + libclass-std-utils-perl_0.0.3-1_all + libclass-throwable-perl_0.10-2_all + libclass-trait-perl_0.31-1_all + libclass-trigger-perl_0.14-1_all + libclass-unload-perl_0.07-1_all + libclass-virtual-perl_0.06-3_all + libclass-whitehole-perl_0.04-6_all + libclassworlds-java_1.1-final-5_all + libclassworlds-java-doc_1.1-final-5_all + libclaw-doc_1.7.0-3_all + libclaw-i18n_1.7.0-3_all + libclean-crypto-java_1-1_all + libclirr-maven-plugin-java_2.3-1_all + libclojure-maven-plugin-java_1.3.3-3_all + libclone-pp-perl_1.02-1_all + libclucy-clojure_0.3.0-1_all + libclustalo-doc_1.1.0-1_all + libcluster-glue_1.0.9+hg2665-1_all + libcluster-glue-dev_1.0.9+hg2665-1_all + libclutter-1.0-common_1.10.8-2_all + libclutter-1.0-doc_1.10.8-2_all + libclutter-cil_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-cil-dev_1.0.0~alpha3~git20090817.r1.349dba6-8_all + libclutter-gst-doc_1.5.4-1+build0_all + libclutter-gtk-1.0-doc_1.2.0-2_all + libclutter-imcontext-0.1-doc_0.1.4-3_all + libcmdparse-ruby_2.0.5-1_all + libcmdparse2-ruby_2.0.5-1_all + libcmdparse2-ruby1.8_2.0.5-1_all + libcobertura-java_1.9.4.1+dfsg-3_all + libcobertura-java-doc_1.9.4.1+dfsg-3_all + libcobra-java_0.98.4-4_all + libcodemodel-java_2.1-1_all + libcodemodel-java-doc_2.1-1_all + libcodenarc-groovy-java_0.13-2_all + libcodenarc-groovy-java-doc_0.13-2_all + libcoderay-ruby_1.0.6-2_all + libcoderay-ruby1.8_1.0.6-2_all + libcogl-common_1.10.2-7_all + libcogl-doc_1.10.2-7_all + libcoin60-doc_3.1.3-2.2_all + libcoin60-runtime_3.1.3-2.2_all + libcollections15-java_4.01+ds1-1_all + libcolor-calc-perl_1.073-1_all + libcolor-library-perl_0.021-1_all + libcolor-palette-perl_0.100002-1_all + libcolor-scheme-perl_1.02-3_all + libcolor-tools-ruby_1.4.1-2_all + libcolor-tools-ruby-doc_1.4.1-2_all + libcolor-tools-ruby1.8_1.4.1-2_all + libcolorchooser-java_1.0+dfsg-1_all + libcolorchooser-java-doc_1.0+dfsg-1_all + libcolorpicker-java_1.0.0-2_all + libcolorpicker-java-doc_1.0.0-2_all + libcommandline-ruby_0.7.10-12_all + libcommandline-ruby-doc_0.7.10-12_all + libcommandline-ruby1.8_0.7.10-12_all + libcommon-sense-perl_3.6-1_all + libcommoncpp2-doc_1.8.1-5_all + libcommons-attributes-java_2.2-8_all + libcommons-attributes-java-doc_2.2-8_all + libcommons-beanutils-java_1.8.3-3_all + libcommons-beanutils-java-doc_1.8.3-3_all + libcommons-cli-java_1.2-3_all + libcommons-codec-java_1.6-1_all + libcommons-codec-java-doc_1.6-1_all + libcommons-collections-java_2.1.1-10_all + libcommons-collections-java-doc_2.1.1-10_all + libcommons-collections3-java_3.2.1-5_all + libcommons-collections3-java-doc_3.2.1-5_all + libcommons-compress-java_1.4.1-2_all + libcommons-configuration-java_1.7-1_all + libcommons-configuration-java-doc_1.7-1_all + libcommons-csv-java_0.1-SNAPSHOT+svn678580-3_all + libcommons-csv-java-doc_0.1-SNAPSHOT+svn678580-3_all + libcommons-daemon-java_1.0.10-3_all + libcommons-dbcp-java_1.4-3_all + libcommons-dbcp-java-doc_1.4-3_all + libcommons-digester-java_1.8.1-3_all + libcommons-digester-java-doc_1.8.1-3_all + libcommons-discovery-java_0.5-3_all + libcommons-discovery-java-doc_0.5-3_all + libcommons-el-java_1.0-7_all + libcommons-exec-java_1.0.1-1_all + libcommons-fileupload-java_1.2.2-1+deb7u1_all + libcommons-fileupload-java-doc_1.2.2-1+deb7u1_all + libcommons-httpclient-java_3.1-10.2_all + libcommons-httpclient-java-doc_3.1-10.2_all + libcommons-io-java_1.4-4_all + libcommons-io-java-doc_1.4-4_all + libcommons-javaflow-java_0.0~svn20060411-5_all + libcommons-javaflow-java-doc_0.0~svn20060411-5_all + libcommons-jci-eclipse-java_1.0-5_all + libcommons-jci-groovy-java_1.0-5_all + libcommons-jci-janino-java_1.0-5_all + libcommons-jci-java_1.0-5_all + libcommons-jci-java-doc_1.0-5_all + libcommons-jci-rhino-java_1.0-5_all + libcommons-jexl-java_1.1-3_all + libcommons-jxpath-java_1.3-5_all + libcommons-jxpath-java-doc_1.3-5_all + libcommons-lang-java_2.6-3_all + libcommons-lang-java-doc_2.6-3_all + libcommons-lang3-java_3.1-1_all + libcommons-lang3-java-doc_3.1-1_all + libcommons-launcher-java_1.1-6_all + libcommons-logging-java_1.1.1-9_all + libcommons-logging-java-doc_1.1.1-9_all + libcommons-math-java_2.2-2_all + libcommons-math-java-doc_2.2-2_all + libcommons-modeler-java_2.0.1-6_all + libcommons-modeler-java-doc_2.0.1-6_all + libcommons-net-java_1.4.1-5_all + libcommons-net1-java_1.4.1-5_all + libcommons-net2-java_2.2-2_all + libcommons-net2-java-doc_2.2-2_all + libcommons-openpgp-java_0+svn533492-3_all + libcommons-openpgp-java-doc_0+svn533492-3_all + libcommons-parent-java_22-2_all + libcommons-pool-java_1.5.6-1_all + libcommons-pool-java-doc_1.5.6-1_all + libcommons-validator-java_1:1.3.1-9_all + libcommons-validator-java-doc_1:1.3.1-9_all + libcommons-vfs-java_2.0-3_all + libcommons-vfs-java-doc_2.0-3_all + libconcurrent-java_1.3.4-4_all + libconcurrent-java-doc_1.3.4-4_all + libconcurrentlinkedhashmap-java_1.1~jdk5-1_all + libconcurrentlinkedhashmap-java-doc_1.1~jdk5-1_all + libconfig-any-perl_0.23-1_all + libconfig-apacheformat-perl_1.2-4_all + libconfig-auto-perl_0.42-1_all + libconfig-autoconf-perl_0.19-1_all + libconfig-doc_1.4.8-5_all + libconfig-file-perl_1.50-2_all + libconfig-general-perl_2.50-1_all + libconfig-gitlike-perl_1.08-1_all + libconfig-grammar-perl_1.10-1_all + libconfig-ini-perl_1:0.019-1_all + libconfig-inifiles-perl_2.75-1_all + libconfig-inihash-perl_3.01.01-1_all + libconfig-jfdi-perl_0.065-1_all + libconfig-json-perl_1.5100-1_all + libconfig-merge-perl_1.01-1_all + libconfig-model-approx-perl_1.004-1_all + libconfig-model-backend-augeas-perl_0.112-1_all + libconfig-model-cursesui-perl_1.104-1_all + libconfig-model-itself-perl_1.232-1_all + libconfig-model-openssh-perl_1.225-1_all + libconfig-model-perl_2.021-3+deb7u1_all + libconfig-model-tkui-perl_1.337-2_all + libconfig-mvp-perl_2.200002-1_all + libconfig-mvp-reader-ini-perl_2.101461-1_all + libconfig-pit-perl_0.04-1_all + libconfig-record-perl_1.1.2-1_all + libconfig-scoped-perl_0.22-1_all + libconfig-simple-perl_4.59-6_all + libconfig-std-perl_0.9-1_all + libconfig-tiny-perl_2.14-1_all + libconfig-yaml-perl_1.42-2_all + libconfigreader-perl_0.5-4_all + libconfigreader-simple-perl_1.28-3_all + libconfuse-common_2.7-4_all + libconst-fast-perl_0.011-1_all + libconstantine-java_0.7-3_all + libconstantine-java-doc_0.7-3_all + libcontext-preserve-perl_0.01-1_all + libcontextual-return-perl_0.004003-1_all + libconvert-ascii-armour-perl_1.4-1_all + libconvert-asn1-perl_0.26-1_all + libconvert-base32-perl_0.05-1_all + libconvert-ber-perl_1.3200-1_all + libconvert-binhex-perl_1.119+pristine-3_all + libconvert-color-perl_0.08-1_all + libconvert-nls-date-format-perl_0.05-1_all + libconvert-pem-perl_0.08-1_all + libconvert-tnef-perl_0.17-11_all + libconvert-units-perl_1:0.43-1_all + libconvert-ytext-perl_0.1.2-1_all + libcore-ocaml-doc_107.01-5_all + libcore-renderer-java_0.0~R8-1_all + libcore-renderer-java-doc_0.0~R8-1_all + libcorelinux-doc_0.4.32-7.3_all + libcorelinux-examples_0.4.32-7.3_all + libcorosync-dev_1.4.2-3_all + libcorosync4_1.4.2-3_all + libcortado-java_0.6.0-1_all + libcourriel-perl_0.29-1_all + libcoy-perl_0.06-6_all + libcpan-changes-perl_0.19-1_all + libcpan-checksums-perl_2.03-1_all + libcpan-distnameinfo-perl_0.12-1_all + libcpan-inject-perl_1.13-1_all + libcpan-meta-check-perl_0.004-1_all + libcpan-meta-perl_2.120921-1_all + libcpan-meta-requirements-perl_2.122-1_all + libcpan-meta-yaml-perl_0.008-1_all + libcpan-mini-perl_1.111008-3_all + libcpan-perl-releases-perl_0.60-1_all + libcpan-uploader-perl_0.103001-1_all + libcpandb-perl_0.17-1_all + libcpl-doc_6.1.1-2_all + libcppunit-doc_1.12.1-4_all + libcps-perl_0.15-1_all + libcql-parser-perl_1.10-1_all + libcrimson-java_1:1.1.3-11_all + libcrimson-java-doc_1:1.1.3-11_all + libcriticism-perl_1.02-1_all + libcrypt-cbc-perl_2.30-1_all + libcrypt-ciphersaber-perl_0.61-4_all + libcrypt-des-ede3-perl_0.01-1.1_all + libcrypt-dh-perl_0.06-3_all + libcrypt-dsa-perl_1.17-3_all + libcrypt-ecb-perl_1.40-2_all + libcrypt-generatepassword-perl_0.03-4_all + libcrypt-gpg-perl_1.52-1_all + libcrypt-hcesha-perl_0.70-3_all + libcrypt-passwdmd5-perl_1.3-10_all + libcrypt-random-source-perl_0.07-1_all + libcrypt-rc4-perl_2.02-2_all + libcrypt-saltedhash-perl_0.06-1_all + libcrypt-simple-perl_0.06-6_all + libcrypt-smbhash-perl_0.12-3_all + libcrypt-unixcrypt-perl_1.0-5_all + libcrypt-util-perl_0.11-1_all + libcrypt-x509-perl_0.51-1_all + libcrypto++-doc_5.6.1-6_all + libcryptui-doc_3.2.2-1_all + libcsfml-doc_1.6-1_all + libcsnd-dev_1:5.17.11~dfsg-3_all + libcsound64-dev_1:5.17.11~dfsg-3_all + libcsound64-doc_1:5.17.11~dfsg-3_all + libcsoundac-dev_1:5.17.11~dfsg-3_all + libcss-dom-perl_0.14-1_all + libcss-minifier-perl_0.01-1_all + libcss-packer-perl_1.002001-1_all + libcss-perl_1.08-1+nmu3_all + libcss-squish-perl_0.09-1_all + libcss-tiny-perl_1.19-1_all + libcssparser-java_0.9.5-1_all + libcssparser-java-doc_0.9.5-1_all + libcsv-java_2.0-12_all + libcsv-java-doc_2.0-12_all + libctl-doc_3.1.0-5_all + libctpl-doc_0.3.3.dfsg-2_all + libcuba-doc_3.0+20111124-2_all + libcunit1-doc_2.1-0.dfsg-10_all + libcupt2-doc_2.5.9_all + libcurses-ui-perl_0.9609-1_all + libcurses-widgets-perl_1.997-5_all + libcvc3-5-java_2.4.1-4_all + libcvs-perl_0.07-4_all + libcwidget-doc_0.5.16-3.4_all + libcyrus-imap-perl_2.4.16-4+deb7u1_all + libcyrus-imap-perl22_2.4.16-4+deb7u1_all + libdaemon-control-perl_0.000009-1_all + libdaemons-ruby_1.1.5-2_all + libdaemons-ruby1.8_1.1.5-2_all + libdancer-logger-psgi-perl_0.04-2_all + libdancer-perl_1.3095+dfsg-1_all + libdancer-plugin-database-perl_1.82-1_all + libdancer-plugin-dbic-perl_0.1506-1_all + libdancer-plugin-flashmessage-perl_0.314-1_all + libdancer-plugin-rest-perl_0.07-1_all + libdancer-session-cookie-perl_0.15-1_all + libdancer-session-memcached-perl_0.2020-1_all + libdanga-socket-perl_1.61-1_all + libdansguardian-perl_0.6-2_all + libdap-doc_3.11.1-11_all + libdata-amf-perl_0.09-3_all + libdata-buffer-perl_0.04-1.1_all + libdata-compare-perl_1.22-0.1_all + libdata-dump-perl_1.21-1_all + libdata-dumper-concise-perl_2.020-1_all + libdata-dumper-simple-perl_0.11-4_all + libdata-entropy-perl_0.007-1_all + libdata-faker-perl_0.07-3_all + libdata-float-perl_0.012-1_all + libdata-flow-perl_1.02-1_all + libdata-format-html-perl_0.5-2_all + libdata-formvalidator-constraints-datetime-perl_1.11-1_all + libdata-formvalidator-perl_4.70-1_all + libdata-guid-perl_0.046-1_all + libdata-hexdumper-perl_3.0001-1_all + libdata-ical-perl_0.18+dfsg-1_all + libdata-integer-perl_0.004-1_all + libdata-javascript-anon-perl_1.03-2_all + libdata-javascript-perl_1.13-1_all + libdata-miscellany-perl_1.100850-1_all + libdata-munge-perl_0.04-1_all + libdata-objectdriver-perl_0.09-1_all + libdata-optlist-perl_0.107-1_all + libdata-page-perl_2.02-1_all + libdata-pageset-perl_1.05-2_all + libdata-parsebinary-perl_0.31~dfsg-1_all + libdata-password-perl_1.07-3_all + libdata-phrasebook-loader-yaml-perl_0.09-1_all + libdata-phrasebook-perl_0.31-1_all + libdata-printer-perl_0.30-1_all + libdata-random-perl_0.07-1_all + libdata-report-perl_0.10-1_all + libdata-rmap-perl_0.62-1_all + libdata-section-perl_0.101621-1_all + libdata-section-simple-perl_0.03-1_all + libdata-serializer-perl_0.59-1_all + libdata-show-perl_0.002001-1_all + libdata-showtable-perl_3.3-7_all + libdata-sorting-perl_0.9-4_all + libdata-stag-perl_0.11-2_all + libdata-stream-bulk-perl_0.11-1_all + libdata-transformer-perl_0.04-1_all + libdata-treedumper-perl_0.40-1_all + libdata-treedumper-renderer-dhtml-perl_0.09-1_all + libdata-treedumper-renderer-gtk-perl_0.02-1_all + libdata-types-perl_0.09-1_all + libdata-validate-domain-perl_0.10-1_all + libdata-validate-email-perl_0.04-1_all + libdata-validate-ip-perl_0.14-1_all + libdata-validate-uri-perl_0.06-1_all + libdata-visitor-perl_0.28-1_all + libdata-walk-perl_1.00-1_all + libdata-yaml-perl_0.0.6-1_all + libdataobjects-mysql-ruby_0.10.8-4_all + libdataobjects-mysql-ruby1.8_0.10.8-4_all + libdataobjects-mysql-ruby1.9.1_0.10.8-4_all + libdataobjects-postgres-ruby_0.10.8-2_all + libdataobjects-postgres-ruby1.8_0.10.8-2_all + libdataobjects-postgres-ruby1.9.1_0.10.8-2_all + libdataobjects-ruby_0.10.8-4_all + libdataobjects-ruby1.8_0.10.8-4_all + libdataobjects-ruby1.9.1_0.10.8-4_all + libdataobjects-sqlite3-ruby_0.10.8-3_all + libdataobjects-sqlite3-ruby1.8_0.10.8-3_all + libdataobjects-sqlite3-ruby1.9.1_0.10.8-3_all + libdatapager-perl_0.01-2_all + libdate-calc-perl_6.3-1_all + libdate-convert-perl_0.16-3_all + libdate-hijri-perl_0.02-1_all + libdate-iso8601-perl_0.003-1_all + libdate-jd-perl_0.003-1_all + libdate-leapyear-perl_1.72-1_all + libdate-manip-perl_6.32-1_all + libdatetime-astro-sunrise-perl_0.01.01-3_all + libdatetime-calendar-discordian-perl_1.0-1_all + libdatetime-event-cron-perl_0.08-1_all + libdatetime-event-ical-perl_0.10-1_all + libdatetime-event-recurrence-perl_0.16-1_all + libdatetime-event-sunrise-perl_0.0501-1_all + libdatetime-format-builder-perl_0.8000-1_all + libdatetime-format-dateparse-perl_0.05-1_all + libdatetime-format-db2-perl_0.05-2_all + libdatetime-format-dbi-perl_0.040-1_all + libdatetime-format-duration-perl_1.03a-1_all + libdatetime-format-epoch-perl_0.11-1_all + libdatetime-format-flexible-perl_0.23-1_all + libdatetime-format-http-perl_0.40-1_all + libdatetime-format-ical-perl_0.09-1_all + libdatetime-format-iso8601-perl_0.08-1_all + libdatetime-format-mail-perl_0.3001-1_all + libdatetime-format-mysql-perl_0.04-2_all + libdatetime-format-natural-perl_1.00-1_all + libdatetime-format-oracle-perl_0.06-1_all + libdatetime-format-pg-perl_0.16007-1_all + libdatetime-format-sqlite-perl_0.11-1_all + libdatetime-format-strptime-perl_1.5000-1_all + libdatetime-format-w3cdtf-perl_0.06-1_all + libdatetime-format-xsd-perl_0.2-1_all + libdatetime-locale-perl_1:0.45-1_all + libdatetime-set-perl_0.31-1_all + libdatetime-timezone-perl_1:1.58-1+2013h_all + libdatetime-timezone-systemv-perl_0.003-1_all + libdatetime-timezone-tzfile-perl_0.002-1_all + libdatetimex-easy-perl_0.089-1_all + libdatrie-doc_0.2.5-3_all + libdawgdic-dev_0.4.3-1_all + libdb-file-lock-perl_0.05-3_all + libdb-java_5.1.6_all + libdb-je-java_3.3.98-1_all + libdb-ruby1.8_0.6.5-7_all + libdb4.2-ruby1.8_0.6.5-7_all + libdb4.3-ruby1.8_0.6.5-7_all + libdb4.4-ruby1.8_0.6.5-7_all + libdb4o-cil-dev_8.0.184.15484+dfsg-2_all + libdb4o-doc_8.0.184.15484+dfsg-2_all + libdb4o8.0-cil_8.0.184.15484+dfsg-2_all + libdb5.1-java_5.1.29-5_all + libdballe-doc_5.18-1_all + libdbd-anydata-perl_0.11-0.1_all + libdbd-csv-perl_0.3500-1_all + libdbd-excel-perl_0.06-6_all + libdbd-ldap-perl_0.20-1_all + libdbd-mock-perl_1.43-1_all + libdbd-mysql-ruby_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.8_0.4.4+gem2deb-1_all + libdbd-mysql-ruby1.9.1_0.4.4+gem2deb-1_all + libdbd-odbc-ruby_0.2.5+gem2deb-1_all + libdbd-odbc-ruby1.8_0.2.5+gem2deb-1_all + libdbd-pg-ruby_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.8_0.3.9+gem2deb-1_all + libdbd-pg-ruby1.9.1_0.3.9+gem2deb-1_all + libdbd-sqlite3-ruby_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.8_1.2.5+gem2deb-1_all + libdbd-sqlite3-ruby1.9.1_1.2.5+gem2deb-1_all + libdbd-xbase-perl_1:1.03-1_all + libdbi-doc_0.8.4-6_all + libdbi-ruby_0.4.5-1_all + libdbi-ruby1.8_0.4.5-1_all + libdbi-ruby1.9.1_0.4.5-1_all + libdbicx-testdatabase-perl_0.04-1_all + libdbix-abstract-perl_1.010-1_all + libdbix-class-candy-perl_0.002100-1_all + libdbix-class-cursor-cached-perl_1.001002-1_all + libdbix-class-datetime-epoch-perl_0.09-1_all + libdbix-class-dynamicdefault-perl_0.04-1_all + libdbix-class-encodedcolumn-perl_0.00011-1_all + libdbix-class-helpers-perl_2.013002-1_all + libdbix-class-htmlwidget-perl_0.16-2_all + libdbix-class-inflatecolumn-ip-perl_0.02002-1_all + libdbix-class-introspectablem2m-perl_0.001001-1_all + libdbix-class-perl_0.08196-3_all + libdbix-class-resultset-recursiveupdate-perl_0.25-1_all + libdbix-class-schema-loader-perl_0.07025-1_all + libdbix-class-timestamp-perl_0.14-1_all + libdbix-class-tree-nestedset-perl_0.10-1_all + libdbix-connector-perl_0.52-1_all + libdbix-contextualfetch-perl_1.03-3_all + libdbix-datasource-perl_0.02-3_all + libdbix-dbschema-perl_0.40-2_all + libdbix-dbstag-perl_0.12-1_all + libdbix-dr-perl_0.19-1_all + libdbix-easy-perl_0.17-1_all + libdbix-fulltextsearch-perl_0.73-10_all + libdbix-oo-perl_0.0.9-3_all + libdbix-password-perl_1.9-1_all + libdbix-profile-perl_1.0-3_all + libdbix-recordset-perl_0.26-2_all + libdbix-safe-perl_1.2.5-1_all + libdbix-searchbuilder-perl_1.62-1_all + libdbix-sequence-perl_1.5-2_all + libdbix-simple-perl_1.32-1_all + libdbix-xml-rdb-perl_0.05-11_all + libdbix-xmlmessage-perl_0.05-9_all + libdbm-deep-perl_2.0008-1_all + libdbus-c++-doc_0.9.0-6_all + libdbus-glib-1-doc_0.100.2-1_all + libdbus-glib1.0-cil_0.5.0-4_all + libdbus-glib1.0-cil-dev_0.5.0-4_all + libdbus-java_2.8-4_all + libdbus-java-doc_2.8-4_all + libdbus-ruby_0.7.2-1_all + libdbus-ruby1.8_0.7.2-1_all + libdbus1.0-cil_0.7.0-5_all + libdbus1.0-cil-dev_0.7.0-5_all + libdbusmenu-glib-doc_0.6.2-1_all + libdbusmenu-gtk-doc_0.6.2-1_all + libdc1394-22-doc_2.2.0-2_all + libdconf-doc_0.12.1-3_all + libdebian-copyright-perl_0.1-1_all + libdebian-dpkgcross-perl_2.6.7_all + libdebian-package-html-perl_0.1-2_all + libdebian-packages-compare-perl_3.0.7_all + libdebug-client-perl_0.20-1_all + libdebug-trace-perl_0.04-4_all + libdee-doc_1.0.10-3_all + libdelimmatch-perl_1.06a-4_all + libdeprecated-ruby_3.0.0-1_all + libdeprecated-ruby1.8_3.0.0-1_all + libdeprecated-ruby1.9.1_3.0.0-1_all + libdeps-perl_0.13-1.1_all + libdeps-renderer-dot-perl_0.13-1.1_all + libdeps-renderer-tulip-perl_0.13-1.1_all + libdesktop-agnostic-doc_0.3.92+dfsg-1_all + libdesktop-notify-perl_0.03-1_all + libdevel-argnames-perl_0.03-1_all + libdevel-backtrace-perl_0.12-1_all + libdevel-caller-ignorenamespaces-perl_1.0-1_all + libdevel-calltrace-perl_1.2-1_all + libdevel-checklib-perl_0.98-1_all + libdevel-cycle-perl_1.11-2_all + libdevel-dumpvar-perl_1.06-1_all + libdevel-ebug-perl_0.53-1_all + libdevel-gdb-perl_2.02-1_all + libdevel-globaldestruction-perl_0.06-1_all + libdevel-hide-perl_0.0008-1_all + libdevel-partialdump-perl_0.15-1_all + libdevel-patchperl-perl_0.72-1_all + libdevel-profile-perl_1.05-2_all + libdevel-ptkdb-perl_1.1091-2_all + libdevel-refactor-perl_0.05-1_all + libdevel-repl-perl_1.003013-1_all + libdevel-simpletrace-perl_0.08-1_all + libdevel-stacktrace-ashtml-perl_0.11-1_all + libdevel-stacktrace-perl_1.2700-1_all + libdevel-stacktrace-withlexicals-perl_0.10-1_all + libdevel-symdump-perl_2.08-4_all + libdevel-trace-perl_0.12-1_all + libdevice-gsm-perl_1.60-1_all + libdevice-modem-perl_1.47-2.1_all + libdifflcs-ruby_1.1.3-1_all + libdifflcs-ruby1.8_1.1.3-1_all + libdifflcs-ruby1.9.1_1.1.3-1_all + libdigest-bubblebabble-perl_0.02-2_all + libdigest-hmac-perl_1.03+dfsg-1_all + libdigest-md5-file-perl_0.08-1_all + libdigest-perl_1.17-1_all + libdime-dev_0.20030921-2_all + libdime-doc_0.20030921-2_all + libdir-purge-perl_1.02-2_all + libdir-self-perl_0.10-1_all + libdirac-doc_1.0.2-6_all + libdirectory-scratch-perl_0.14-1_all + libdirectory-scratch-structured-perl_0.04-1_all + libdist-metadata-perl_0.923-1_all + libdist-zilla-perl_4.300020-1_all + libdist-zilla-plugin-changelogfromgit-perl_0.005-1_all + libdist-zilla-plugin-git-perl_1.121820-1_all + libdist-zilla-plugin-podspellingtests-perl_1.111520-1_all + libdist-zilla-plugin-podweaver-perl_3.101641-1_all + libdist-zilla-plugin-prepender-perl_1.112280-1_all + libdist-zilla-plugin-run-perl_0.013-1_all + libdist-zilla-plugins-cjm-perl_4.09-1_all + libdistro-info-perl_0.10_all + libdjconsole-data_0.1.3-1_all + libdjvulibre-text_3.5.25.3-1_all + libdns-ruby_1.53-1_all + libdns-ruby1.8_1.53-1_all + libdns-zoneparse-perl_1.10-1_all + libdnsjava-java_2.0.8-1_all + libdom4j-java_1.6.1+dfsg.2-6_all + libdom4j-java-doc_1.6.1+dfsg.2-6_all + libdoxia-java_1.1.4-2_all + libdoxia-java-doc_1.1.4-2_all + libdoxia-maven-plugin-java_1.1.4-1_all + libdoxia-sitetools-java_1.1.4-1_all + libdoxia-sitetools-java-doc_1.1.4-1_all + libdpkg-log-perl_1.20-2_all + libdpkg-perl_1.16.12_all + libdpkg-ruby_0.3.8_all + libdpkg-ruby1.8_0.3.8_all + libdpkg-ruby1.9.1_0.3.8_all + libdrizzle-dev_1:7.1.36-stable-1_all + libdtdinst-java_20091111-5_all + libdtdparser-java_1.21a-5_all + libdublincore-record-perl_0.03-1_all + libdumbster-java_1.6+debian-2_all + libdune-common-doc_2.2.0-1_all + libdune-geometry-doc_2.2.0-1_all + libdune-grid-doc_2.2.0-1_all + libdune-istl-dev_2.2.0-1_all + libdune-istl-doc_2.2.0-1_all + libdune-localfunctions-dev_2.2.0-1_all + libdune-localfunctions-doc_2.2.0-1_all + libdynalang-java_0.4-1_all + libeasyconf-java_0.9.5-3_all + libeasyconf-java-doc_0.9.5-3_all + libeasymock-java_2.4+ds1-7_all + libeasymock-java-doc_2.4+ds1-7_all + libeb-ruby1.8_2.6-2_all + libecasound-ruby1.8_2.9.0-1_all + libecasoundc2.2-dev_2.9.0-1_all + libecj-java_3.5.1-3_all + libeclipselink-java_2.1.3-2_all + libeclipselink-java-doc_2.1.3-2_all + libecore-doc_1.2.0-2_all + libedje-doc_1.2.0-1_all + libeet-doc_1.6.0-1_all + libefreet-doc_1.2.0-1_all + libehcache-java_2.5.0-1_all + libeigen2-doc_2.0.17-1_all + libeigen3-doc_3.1.0-1_all + libeigenbase-farrago-java_0.9.0-1_all + libeigenbase-resgen-java_1.3.0.13768-1_all + libeigenbase-resgen-java-doc_1.3.0.13768-1_all + libeina-doc_1.2.0-2_all + libelemental-doc_1.2.0-8_all + libelementary-data_0.7.0.55225-1_all + libeliom-ocaml-doc_2.2.2-1_all + libelixirfm-perl_1.1.976-2_all + libemail-abstract-perl_3.004-1_all + libemail-address-perl_1.895-1_all + libemail-date-format-perl_1.002-1_all + libemail-date-perl_1.103-3_all + libemail-filter-perl_1.032-1_all + libemail-find-perl_0.10-dfsg-1.1_all + libemail-folder-perl_0.855-1_all + libemail-foldertype-perl_0.813-1_all + libemail-localdelivery-perl_0.217-2_all + libemail-messageid-perl_1.402-1_all + libemail-mime-contenttype-perl_1.014-3_all + libemail-mime-createhtml-perl_1.030-1_all + libemail-mime-encodings-perl_1.313-1_all + libemail-mime-perl_1.910-1_all + libemail-outlook-message-perl_0.911-1_all + libemail-received-perl_1.00-1_all + libemail-send-io-perl_2.200-1_all + libemail-send-perl_2.198-4_all + libemail-sender-perl_0.110005-1_all + libemail-sender-transport-smtp-tls-perl_0.10-1_all + libemail-simple-perl_2.101-1_all + libemail-thread-perl_0.711-1_all + libemail-valid-loose-perl_0.05-3_all + libemail-valid-perl_0.190-1_all + libemboss-acd-perl_2.2.0-7+deb7u1_all + libembryo-doc_1.2.0-1_all + libemma-java_2.0.5312+dfsg-4_all + libencode-arabic-perl_1.9-1_all + libencode-imaputf7-perl_1.05-2_all + libencode-locale-perl_1.03-1_all + libend-perl_2009040201-1_all + libenet-doc_1.3.3-2_all + libenv-path-perl_0.18-1_all + libenv-ps1-perl_0.06-1_all + libenv-sanctify-perl_1.06-1_all + libepc-common_0.4.4-1_all + libepc-doc_0.4.4-1_all + libepr-api2-dev_2.2-2_all + libequinox-osgi-java_3.8.0~rc4-1_all + liberis-doc_1.3.19-5_all + liberror-perl_0.17-1_all + liberubis-ruby_2.7.0-2_all + liberubis-ruby1.8_2.7.0-2_all + liberubis-ruby1.9.1_2.7.0-2_all + libescape-ruby_0.2-1_all + libesd-java_0.0.7-4_all + libethos-doc_0.2.2-3_all + libetpan-doc_1.0-5_all + libetsf-io-doc_1.0.3-4_all + libev-libevent-dev_1:4.11-1_all + libeval-closure-perl_0.08-1_all + libeval-context-perl_0.09.11-1_all + libevas-doc_1.2.0-2_all + libevent-loop-ruby_0.3-5_all + libevent-loop-ruby1.8_0.3-5_all + libevent-rpc-perl_1.01-2_all + libeventmachine-ruby_0.12.10-3_all + libeventmachine-ruby-doc_0.12.10-3_all + libeventmachine-ruby1.8_0.12.10-3_all + libexcalibur-logger-java_2.1-4_all + libexcalibur-logkit-java_2.0-9_all + libexcalibur-logkit-java-doc_2.0-9_all + libexcel-template-perl_0.34-1_all + libexcel-template-plus-perl_0.05-1_all + libexcel-writer-xlsx-perl_0.47-1_all + libexception-class-dbi-perl_1.00-1_all + libexception-class-perl_1.32-1_all + libexception-class-trycatch-perl_1.12-1_all + libexception-handler-perl_1.004-1_all + libexif-ruby_0.1.2-20_all + libexif-ruby1.8_0.1.2-20_all + libexif-ruby1.9.1_0.1.2-20_all + libexiv2-doc_0.23-1_all + libexml-java_0.0.20080703-4_all + libexo-common_0.6.2-5_all + libexpect-perl_1.21-1_all + libexpect-simple-perl_0.04-2_all + libexporter-easy-perl_0.16-1_all + libexporter-lite-perl_0.02-2_all + libexporter-renaming-perl_1.19-1_all + libexporter-tidy-perl_0.07-2_all + libextlib-ruby_0.9.15-3_all + libextlib-ruby-doc_0.9.15-3_all + libextlib-ruby1.8_0.9.15-3_all + libextlib-ruby1.9.1_0.9.15-3_all + libexttextcat-data_3.2.0-2_all + libextutils-autoinstall-perl_0.63-1_all + libextutils-cbuilder-perl_0.280205-1_all + libextutils-cchecker-perl_0.08-1_all + libextutils-depends-perl_0.304-1_all + libextutils-f77-perl_1.17-1_all + libextutils-libbuilder-perl_0.04-1_all + libextutils-parsexs-perl_3.150000-1_all + libextutils-pkgconfig-perl_1.13-1_all + libextutils-xsbuilder-perl_0.28-2_all + libextutils-xspp-perl_0.1602-3_all + libezmorph-java_1.0.6-3_all + libfacets-ruby_2.9.2-1_all + libfacets-ruby-doc_2.9.2-1_all + libfacets-ruby1.8_2.9.2-1_all + libfacets-ruby1.9.1_2.9.2-1_all + libfakefs-ruby_0.4.0-1_all + libfakefs-ruby1.8_0.4.0-1_all + libfakefs-ruby1.9.1_0.4.0-1_all + libfakekey-doc_0.1-7_all + libfam0c102_2.7.0-17_all + libfann-doc_2.1.0~beta~dfsg-8_all + libfannj-java_0.3-1_all + libfannj-java-doc_0.3-1_all + libfarstream-0.1-doc_0.1.2-1_all + libfax-hylafax-client-perl_1.02-1_all + libfcgi-procmanager-perl_0.24-1_all + libfeed-find-perl_0.07-1_all + libfeedparser-ruby_0.7-2_all + libfeedparser-ruby-doc_0.7-2_all + libfeedparser-ruby1.8_0.7-2_all + libfeedtools-ruby_0.2.29+dfsg1-5_all + libfeedtools-ruby-doc_0.2.29+dfsg1-5_all + libfeedtools-ruby1.8_0.2.29+dfsg1-5_all + libfeedtools-ruby1.9.1_0.2.29+dfsg1-5_all + libfelix-bundlerepository-java_1.6.6-1_all + libfelix-bundlerepository-java-doc_1.6.6-1_all + libfelix-framework-java_4.0.1-2_all + libfelix-framework-java-doc_4.0.1-2_all + libfelix-gogo-command-java_0.12.0-2_all + libfelix-gogo-command-java-doc_0.12.0-2_all + libfelix-gogo-runtime-java_0.10.0-2_all + libfelix-gogo-runtime-java-doc_0.10.0-2_all + libfelix-gogo-shell-java_0.10.0-2_all + libfelix-gogo-shell-java-doc_0.10.0-2_all + libfelix-main-java_4.0.1-2_all + libfelix-main-java-doc_4.0.1-2_all + libfelix-osgi-obr-java_1.0.2-3_all + libfelix-osgi-obr-java-doc_1.0.2-3_all + libfelix-shell-java_1.4.2-3_all + libfelix-shell-java-doc_1.4.2-3_all + libfelix-shell-tui-java_1.4.1-3_all + libfelix-shell-tui-java-doc_1.4.1-3_all + libfelix-utils-java_1.1.0-3_all + libfelix-utils-java-doc_1.1.0-3_all + libferret-ruby_0.11.8.4+debian-2_all + libferret-ruby1.8_0.11.8.4+debian-2_all + libffi-ruby_1.0.11debian-5_all + libffi-ruby1.8_1.0.11debian-5_all + libffi-ruby1.9.1_1.0.11debian-5_all + libfftw3-doc_3.3.2-3.1_all + libfile-basedir-perl_0.03-1_all + libfile-bom-perl_0.14-1_all + libfile-cache-perl_0.16-9_all + libfile-changenotify-perl_0.22-1_all + libfile-chdir-perl_0.1006-1_all + libfile-chmod-perl_0.32-1_all + libfile-copy-link-perl_0.113-1_all + libfile-copy-recursive-perl_0.38-1_all + libfile-counterfile-perl_1.04-4_all + libfile-countlines-perl_0.0.3-1_all + libfile-desktopentry-perl_0.04-3_all + libfile-dircompare-perl_0.6-1_all + libfile-find-object-perl_0.2.1-1_all + libfile-find-object-rule-perl_0.0301-1_all + libfile-find-rule-perl_0.33-1_all + libfile-find-rule-perl-perl_1.12-1_all + libfile-find-rule-vcs-perl_1.08-1_all + libfile-find-wanted-perl_1.00-1_all + libfile-finder-perl_0.53-1_all + libfile-flat-perl_1.04-3_all + libfile-flock-perl_2008.01-1_all + libfile-fu-perl_0.0.7-2_all + libfile-homedir-perl_0.99-1_all + libfile-inplace-perl_0.20-1_all + libfile-keepass-perl_0.03-1_all + libfile-listing-perl_6.04-1_all + libfile-localizenewlines-perl_1.11-1_all + libfile-mimeinfo-perl_0.16-1_all + libfile-mmagic-perl_1.27-1+deb7u1_all + libfile-modified-perl_0.07-2_all + libfile-ncopy-perl_0.36-1_all + libfile-next-perl_1.10-1_all + libfile-nfslock-perl_1.21-1_all + libfile-path-expand-perl_1.02-1_all + libfile-path-tiny-perl_0.3-1_all + libfile-pid-perl_1.01-1_all + libfile-policy-perl_1.005-1_all + libfile-pushd-perl_1.001-1_all + libfile-queue-perl_1.01a-1_all + libfile-read-perl_0.0801-2_all + libfile-readbackwards-perl_1.05-1_all + libfile-remove-perl_1.52-1_all + libfile-rsync-perl_0.42-2_all + libfile-scan-perl_1.43-2_all + libfile-searchpath-perl_0.06-2_all + libfile-sharedir-install-perl_0.04-1_all + libfile-sharedir-par-perl_0.06-1_all + libfile-sharedir-perl_1.00-0.1_all + libfile-slurp-perl_9999.19-1_all + libfile-slurp-unicode-perl_0.7.1-1_all + libfile-spec-native-perl_1.003-1_all + libfile-tail-perl_0.99.3-5_all + libfile-touch-perl_0.08-1_all + libfile-type-perl_0.22-1.1_all + libfile-type-webimages-perl_1.01-1_all + libfile-userconfig-perl_0.06-2_all + libfile-util-perl_3.27-1_all + libfile-which-perl_1.09-1_all + libfile-wildcard-perl_0.11-1_all + libfilehandle-unget-perl_0.1623-1_all + libfilesys-diskspace-perl_0.05-15_all + libfilesys-notify-simple-perl_0.08-1_all + libfilter-eof-perl_0.04-2_all + libfilter-template-perl_1.040-1_all + libfinance-bank-ie-permanenttsb-perl_0.4-2_all + libfinance-qif-perl_3.02-1_all + libfinance-quote-perl_1.17+git20120506-1_all + libfinance-quotehist-perl_1.19-1_all + libfinance-streamer-perl_1.10-2_all + libfinance-yahooquote-perl_0.24_all + libfind-lib-perl_1.04-1_all + libfindbin-libs-perl_1.64-1_all + libflac-doc_1.2.1-6_all + libflamingo-java_5.0-1_all + libflamingo-java-doc_5.0-1_all + libflexdock-java_1.1.1-3_all + libflexdock-java-demo_1.1.1-3_all + libflexdock-java-doc_1.1.1-3_all + libflexmock-ruby_0.9.0-1_all + libflexmock-ruby1.8_0.9.0-1_all + libflexmock-ruby1.9.1_0.9.0-1_all + libflickr-api-perl_1.01-3_all + libflickr-upload-perl_1.32-2_all + libflickrnet-cil-dev_1:2.2.0-4_all + libflickrnet2.2-cil_1:2.2.0-4_all + libfloat-coq_1:8.3pl1-4_all + libfltk1.3-compat-headers_1.3.0-8_all + libflute-java_1:1.1.6-3_all + libflute-java-doc_1:1.1.6-3_all + libfm-data_0.1.17-2.1_all + libfont-afm-perl_1.20-1_all + libfont-ttf-perl_0.48-1_all + libfontbox-java_1:1.7.0+dfsg-4_all + libfontbox-java-doc_1:1.7.0+dfsg-4_all + libfontchooser-java_1.0.0-1_all + libfontchooser-java-doc_1.0.0-1_all + libfonts-java_1.1.6.dfsg-3_all + libfonts-java-doc_1.1.6.dfsg-3_all + libfop-java_1:1.0.dfsg2-6_all + libforest-perl_0.09-1_all + libformat-human-bytes-perl_0.05-1_all + libforms-doc_1.0.93sp1-2_all + libformula-java_1.1.7.dfsg-2_all + libformula-java-doc_1.1.7.dfsg-2_all + libformvalidator-simple-perl_0.29-1_all + libfortune-perl_0.2-8_all + libfox-1.6-doc_1.6.45-1_all + libfpdf-tpl-php_1.2-2_all + libfpdi-php_1.4.1-1_all + libfreefem-doc_3.5.8-5_all + libfreehep-chartableconverter-plugin-java_2.0-6_all + libfreehep-export-java_2.1.1-2_all + libfreehep-graphics2d-java_2.1.1-3_all + libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all + libfreehep-graphicsio-java_2.1.1-3_all + libfreehep-graphicsio-java-java_2.1.1-1_all + libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-ps-java_2.1.1-1_all + libfreehep-graphicsio-svg-java_2.1.1-3_all + libfreehep-graphicsio-swf-java_2.1.1+dfsg-1_all + libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all + libfreehep-io-java_2.0.2-4_all + libfreehep-swing-java_2.0.3-3_all + libfreehep-util-java_2.0.2-5_all + libfreehep-xml-java_2.1.2+dfsg1-3_all + libfreemarker-java_2.3.18-1_all + libfreemarker-java-doc_2.3.18-1_all + libfreenect-doc_1:0.1.2+dfsg-6_all + libfreezethaw-perl_0.5001-1_all + libfrontier-rpc-perl_0.07b4-6_all + libfssm-ruby_0.2.9-2_all + libfssm-ruby1.8_0.2.9-2_all + libfssm-ruby1.9.1_0.2.9-2_all + libfusefs-ruby_0.7.0-3_all + libfusefs-ruby1.8_0.7.0-3_all + libfusioninventory-agent-task-deploy-perl_2.0.2-1_all + libfusioninventory-agent-task-esx-perl_2.1.0-1_all + libg3d-doc_0.0.8-17_all + libgadu-doc_1:1.11.2-1_all + libgail-3-doc_3.4.2-7_all + libgail-doc_2.24.10-2_all + libgammu-i18n_1.31.90-1_all + libganymed-ssh2-java_250-2_all + libgarcon-common_0.1.12-1_all + libgavl-doc_1.4.0-1_all + libgcj-common_1:4.6.3-8_all + libgcj-doc_4.7.2-3_all + libgck-1-doc_3.4.1-3_all + libgconf2-doc_3.2.5-1+build1_all + libgconf2.0-cil_2.24.2-3_all + libgconf2.0-cil-dev_2.24.2-3_all + libgconfmm-2.6-doc_2.28.0-1_all + libgcr-3-common_3.4.1-3_all + libgcr-3-doc_3.4.1-3_all + libgcrypt11-doc_1.5.0-5+deb7u1_all + libgd-barcode-perl_1.15-5_all + libgd-graph-perl_1.44-6_all + libgd-graph3d-perl_0.63-8_all + libgd-ruby_0.8.0-3_all + libgd-ruby1.8_0.8.0-3_all + libgd-securityimage-perl_1.71-1_all + libgd-svg-perl_0.33-1_all + libgd-text-perl_0.86-8_all + libgda-5.0-common_5.0.3-2_all + libgda-5.0-doc_5.0.3-2_all + libgdal-doc_1.9.0-3.1_all + libgdal1-dev_1.9.0-3.1_all + libgdata-cil-dev_2.1.0.0-1_all + libgdata-common_0.12.0-1_all + libgdata-doc_0.12.0-1_all + libgdata2.1-cil_2.1.0.0-1_all + libgdict-common_3.4.0-2_all + libgdk-pixbuf2-ruby_1.1.3-2_all + libgdk-pixbuf2-ruby1.8_1.1.3-2_all + libgdk-pixbuf2-ruby1.8-dbg_1.1.3-2_all + libgdk-pixbuf2.0-common_2.26.1-1_all + libgdk-pixbuf2.0-doc_2.26.1-1_all + libgdl-3-common_3.4.2-1_all + libgdl-3-doc_3.4.2-1_all + libgearman-client-perl_1.11-1_all + libgearman-doc_0.33-2_all + libgecode-doc_3.7.3-1_all + libgeda-common_1:1.6.2-4.3_all + libgedcom-perl_1.16-1_all + libgegl-doc_0.2.0-2+nmu1_all + libgentlyweb-utils-java_1.5-1_all + libgentlyweb-utils-java-doc_1.5-1_all + libgeo-coder-googlev3-perl_0.11-1_all + libgeo-coordinates-itm-perl_0.02-1_all + libgeo-coordinates-utm-perl_0.09-1_all + libgeo-distance-perl_0.19-1_all + libgeo-google-mapobject-perl_0.06-1_all + libgeo-googleearth-pluggable-perl_0.14-1_all + libgeo-helmerttransform-perl_1.14-1_all + libgeo-ipfree-perl_1.121660-1_all + libgeo-metar-perl_1.15-1_all + libgeo-osm-tiles-perl_0.04-2_all + libgeo-point-perl_0.93-1_all + libgeo-postcode-perl_0.17+dfsg1-1_all + libgeocode-glib-doc_0.99.0-1_all + libgeography-countries-perl_2009041301-1_all + libgeography-nationalgrid-perl_1.6-10_all + libgeometry-primitive-perl_0.22-1_all + libgeos-doc_3.3.3-1.1_all + libgeronimo-activation-1.1-spec-java_1.0.2-2_all + libgeronimo-commonj-spec-java_1.1.1-1_all + libgeronimo-ejb-3.0-spec-java_1.0.1-1_all + libgeronimo-interceptor-3.0-spec-java_1.0.1-1_all + libgeronimo-j2ee-connector-1.5-spec-java_2.0.0-1_all + libgeronimo-jacc-1.1-spec-java_1.0.1-1.1_all + libgeronimo-javamail-1.4-provider-java_1.8.3-1_all + libgeronimo-javamail-1.4-spec-java_1.7.1-2_all + libgeronimo-jms-1.1-spec-java_1.1-1.2_all + libgeronimo-jpa-2.0-spec-java_1.1-2_all + libgeronimo-jpa-2.0-spec-java-doc_1.1-2_all + libgeronimo-jpa-3.0-spec-java_1.1.1-1_all + libgeronimo-jta-1.1-spec-java_1.1.1-2_all + libgeronimo-jta-1.1-spec-java-doc_1.1.1-2_all + libgeronimo-osgi-support-java_1.0-2_all + libgeronimo-osgi-support-java-doc_1.0-2_all + libgeronimo-stax-1.2-spec-java_1.1-1_all + libgeronimo-validation-1.0-spec-java_1.1-2_all + libgeronimo-validation-1.0-spec-java-doc_1.1-2_all + libges-0.10-doc_0.10.1-2_all + libgetargs-long-perl_1.1003-2_all + libgetopt-argvfile-perl_1.11-1_all + libgetopt-declare-perl_1.14-1_all + libgetopt-euclid-perl_0.3.5-1_all + libgetopt-java_1.0.13-4_all + libgetopt-java-doc_1.0.13-4_all + libgetopt-long-descriptive-perl_0.091-1_all + libgetopt-lucid-perl_1.01-1_all + libgetopt-mixed-perl_1.008-10_all + libgetopt-simple-perl_1.52-2_all + libgetopt-tabular-perl_0.3-1_all + libgetopt-usaginator-perl_0.0012-1_all + libgettext-activerecord-ruby_2.1.0-5_all + libgettext-activerecord-ruby-common_2.1.0-5_all + libgettext-activerecord-ruby1.8_2.1.0-5_all + libgettext-activerecord-ruby1.9.1_2.1.0-5_all + libgettext-ant-tasks-java_0.9.7~svn203-2_all + libgettext-commons-java_0.9.6-2_all + libgettext-rails-ruby_2.1.0-3_all + libgettext-rails-ruby-doc_2.1.0-3_all + libgettext-rails-ruby1.8_2.1.0-3_all + libgettext-ruby_2.2.1-3_all + libgettext-ruby1.8_2.2.1-3_all + libgettext-ruby1.9.1_2.2.1-3_all + libgflags-doc_2.0-1_all + libghc-acid-state-doc_0.6.3-1_all + libghc-active-doc_0.1.0.1-2_all + libghc-adjunctions-doc_2.4.0.2-1_all + libghc-aeson-doc_0.6.0.2-1_all + libghc-agda-doc_2.3.0.1-2_all + libghc-algebra-doc_2.1.1.2-1_all + libghc-alut-doc_2.1.0.2-4_all + libghc-ami-doc_0.1-1_all + libghc-ansi-terminal-doc_0.5.5-3_all + libghc-ansi-wl-pprint-doc_0.6.4-1_all + libghc-arrows-doc_0.4.4.0-3_all + libghc-asn1-data-doc_0.6.1.3-2_all + libghc-attempt-doc_0.4.0-1_all + libghc-attoparsec-conduit-doc_0.4.0.1-1_all + libghc-attoparsec-doc_0.10.1.1-2_all + libghc-attoparsec-enumerator-doc_0.3-3_all + libghc-augeas-doc_0.6.1-1_all + libghc-authenticate-doc_1.2.1.1-2_all + libghc-base-unicode-symbols-doc_0.2.2.3-1_all + libghc-base16-bytestring-doc_0.1.1.4-2_all + libghc-base64-bytestring-doc_0.1.1.1-2_all + libghc-bifunctors-doc_0.1.3.3-1_all + libghc-binary-shared-doc_0.8.1-1_all + libghc-bindings-gpgme-doc_0.1.4-1_all + libghc-bindings-libzip-doc_0.10-2_all + libghc-bitarray-doc_0.0.1-2_all + libghc-blaze-builder-conduit-doc_0.4.0.2-1_all + libghc-blaze-builder-doc_0.3.1.0-1_all + libghc-blaze-builder-enumerator-doc_0.2.0.4-1_all + libghc-blaze-html-doc_0.4.3.1-3_all + libghc-blaze-markup-doc_0.5.1.0-1_all + libghc-blaze-textual-doc_0.2.0.6-2_all + libghc-bloomfilter-doc_1.2.6.8-1_all + libghc-boolean-doc_0.0.1-2_all + libghc-boomerang-doc_1.3.1-1_all + libghc-brainfuck-doc_0.1-2_all + libghc-byteorder-doc_1.0.3-2_all + libghc-bytestring-lexing-doc_0.4.0-1_all + libghc-bytestring-mmap-doc_0.2.2-2_all + libghc-bytestring-nums-doc_0.3.5-2_all + libghc-bytestring-show-doc_0.3.5.1-1_all + libghc-bzlib-doc_0.5.0.3-2_all + libghc-cabal-file-th-doc_0.2.2-1_all + libghc-cairo-doc_0.12.3-1_all + libghc-case-insensitive-doc_0.4.0.1-2_all + libghc-categories-doc_1.0.3-1_all + libghc-cautious-file-doc_1.0.1-1_all + libghc-cereal-conduit-doc_0.5-1_all + libghc-cereal-doc_0.3.5.2-1_all + libghc-certificate-doc_1.2.3-2_all + libghc-cgi-doc_3001.1.8.2-2_all + libghc-chart-doc_0.15-1_all + libghc-chell-doc_0.3-1_all + libghc-citeproc-hs-data_0.3.4-1_all + libghc-citeproc-hs-doc_0.3.4-1_all + libghc-clientsession-doc_0.7.5-3_all + libghc-clock-doc_0.2.0.0-2_all + libghc-cmdargs-doc_0.9.5-1_all + libghc-colour-doc_2.3.3-1_all + libghc-comonad-doc_1.1.1.5-1_all + libghc-comonad-transformers-doc_2.1.1.1-1_all + libghc-comonads-fd-doc_2.1.1.2-1_all + libghc-conduit-doc_0.4.2-2_all + libghc-configfile-doc_1.0.6-4_all + libghc-configurator-doc_0.2.0.0-1_all + libghc-contravariant-doc_0.2.0.2-1_all + libghc-convertible-doc_1.0.11.0-3_all + libghc-cookie-doc_0.4.0-1_all + libghc-cpphs-doc_1.13.3-2_all + libghc-cprng-aes-doc_0.2.3-3_all + libghc-cpu-doc_0.1.1-1_all + libghc-criterion-doc_0.6.0.1-3_all + libghc-crypto-api-doc_0.10.2-1_all + libghc-crypto-conduit-doc_0.3.2-1_all + libghc-crypto-doc_4.2.4-1_all + libghc-crypto-pubkey-types-doc_0.1.1-1_all + libghc-cryptocipher-doc_0.3.5-1_all + libghc-cryptohash-doc_0.7.5-1_all + libghc-css-text-doc_0.1.1-3_all + libghc-csv-conduit-doc_0.2-1_all + libghc-csv-doc_0.1.2-2_all + libghc-curl-doc_1.3.7-1_all + libghc-darcs-doc_2.8.1-1_all + libghc-data-accessor-doc_0.2.2.2-1_all + libghc-data-accessor-mtl-doc_0.2.0.3-1_all + libghc-data-accessor-template-doc_0.2.1.9-1_all + libghc-data-binary-ieee754-doc_0.4.2.1-3_all + libghc-data-default-doc_0.4.0-1_all + libghc-data-inttrie-doc_0.0.7-1_all + libghc-data-lens-doc_2.10.0-1_all + libghc-data-memocombinators-doc_0.4.3-1_all + libghc-dataenc-doc_0.14.0.3-1_all + libghc-datetime-doc_0.2.1-3_all + libghc-dbus-doc_0.10.3-1_all + libghc-debian-doc_3.64-3_all + libghc-diagrams-cairo-doc_0.5.0.2-1_all + libghc-diagrams-core-doc_0.5.0.1-1_all + libghc-diagrams-dev_0.5-2_all + libghc-diagrams-doc_0.5-2_all + libghc-diagrams-lib-doc_0.5-2_all + libghc-diagrams-prof_0.5-2_all + libghc-diff-doc_0.1.3-1_all + libghc-digest-doc_0.0.1.0-1_all + libghc-dimensional-doc_0.10.1.2-2_all + libghc-directory-tree-doc_0.10.0-2_all + libghc-distributive-doc_0.2.2-1_all + libghc-dlist-doc_0.5-3_all + libghc-download-curl-doc_0.1.3-3_all + libghc-dpkg-doc_0.0.3-1_all + libghc-dyre-doc_0.8.7-1_all + libghc-edison-api-doc_1.2.1-18_all + libghc-edison-core-doc_1.2.1.3-9_all + libghc-edit-distance-doc_0.2.1-2_all + libghc-editline-doc_0.2.1.0-5_all + libghc-ekg-data_0.3.1.0-1_all + libghc-ekg-doc_0.3.1.0-1_all + libghc-email-validate-doc_0.2.8-1_all + libghc-entropy-doc_0.2.1-2_all + libghc-enumerator-doc_0.4.19-1_all + libghc-erf-doc_2.0.0.0-2_all + libghc-event-list-doc_0.1.0.1-1_all + libghc-exception-transformers-doc_0.3.0.2-1_all + libghc-executable-path-doc_0.0.3-1_all + libghc-explicit-exception-doc_0.1.7-1_all + libghc-failure-doc_0.2.0.1-1_all + libghc-fast-logger-doc_0.0.2-1_all + libghc-fastcgi-doc_3001.0.2.3-3_all + libghc-fclabels-doc_1.1.3-1_all + libghc-feed-doc_0.3.8-3_all + libghc-fgl-doc_5.4.2.4-2_all + libghc-file-embed-doc_0.0.4.4-1_all + libghc-filemanip-doc_0.3.5.2-2_all + libghc-filestore-data_0.5-1_all + libghc-filestore-doc_0.5-1_all + libghc-filesystem-conduit-doc_0.4.0-1_all + libghc-free-doc_2.1.1.1-1_all + libghc-ftphs-doc_1.0.8-1_all + libghc-gconf-doc_0.12.1-1_all + libghc-gd-doc_3000.7.3-1_all + libghc-ghc-events-doc_0.4.0.0-2_all + libghc-ghc-mtl-doc_1.0.1.1-1_all + libghc-ghc-paths-doc_0.1.0.8-2_all + libghc-ghc-syb-utils-doc_0.2.1.0-1_all + libghc-gio-doc_0.12.3-1_all + libghc-github-doc_0.4.0-2_all + libghc-gitit-doc_0.10.0.1-1_all + libghc-glade-doc_0.12.1-1_all + libghc-glfw-doc_0.5.0.1-1_all + libghc-glib-doc_0.12.2-1_all + libghc-glut-doc_2.1.2.2-1_all + libghc-gnuidn-doc_0.2-2_all + libghc-gnutls-doc_0.1.2-1_all + libghc-gsasl-doc_0.3.4-1_all + libghc-gstreamer-doc_0.12.1-1_all + libghc-gtk-doc_0.12.3-1_all + libghc-gtkglext-doc_0.12.1-1_all + libghc-gtksourceview2-doc_0.12.3-1_all + libghc-haddock-doc_2.10.0-1_all + libghc-hakyll-doc_3.2.7.2-1_all + libghc-hamlet-doc_1.0.1.3-1_all + libghc-happstack-doc_7.0.0-1_all + libghc-happstack-server-doc_7.0.1-1_all + libghc-harp-doc_0.4-3_all + libghc-hashable-doc_1.1.2.3-1_all + libghc-hashed-storage-doc_0.5.9-2_all + libghc-hashmap-doc_1.3.0.1-1_all + libghc-hashtables-doc_1.0.1.4-1_all + libghc-haskeline-doc_0.6.4.7-1_all + libghc-haskell-lexer-doc_1.0-3_all + libghc-haskell-src-doc_1.0.1.5-1_all + libghc-haskelldb-doc_2.1.1-5_all + libghc-haskelldb-hdbc-doc_2.1.0-4_all + libghc-haskelldb-hdbc-odbc-doc_2.1.0-3_all + libghc-haskelldb-hdbc-postgresql-doc_2.1.0-3_all + libghc-haskelldb-hdbc-sqlite3-doc_2.1.0-3_all + libghc-haskore-doc_0.2.0.3-2_all + libghc-hastache-doc_0.3.3-2_all + libghc-haxml-doc_1:1.22.5-2_all + libghc-haxr-doc_3000.8.5-1_all + libghc-hcard-doc_0.0-2_all + libghc-hcwiid-doc_0.0.1-3_all + libghc-hdbc-doc_2.3.1.1-1_all + libghc-hdbc-odbc-doc_2.2.3.0-5_all + libghc-hdbc-postgresql-doc_2.3.2.1-1_all + libghc-hdbc-sqlite3-doc_2.3.3.0-1_all + libghc-hfuse-doc_0.2.4.1-1_all + libghc-highlighting-kate-doc_0.5.1-1_all + libghc-hinotify-doc_0.3.2-1_all + libghc-hint-doc_0.3.3.4-2_all + libghc-hipmunk-doc_5.2.0.8-1_all + libghc-hjavascript-doc_0.4.7-3_all + libghc-hjscript-doc_0.5.0-3_all + libghc-hjsmin-doc_0.1.1-1_all + libghc-hlint-doc_1.8.28-1_all + libghc-hoauth-doc_0.3.4-1_all + libghc-hostname-doc_1.0-4_all + libghc-hs-bibutils-doc_4.12-5_all + libghc-hs3-doc_0.5.6-2_all + libghc-hscolour-doc_1.19-3_all + libghc-hscurses-doc_1.4.1.0-1_all + libghc-hsemail-doc_1.7.1-2_all + libghc-hslogger-doc_1.1.4+dfsg1-2_all + libghc-hsp-doc_0.6.1-2_all + libghc-hspec-doc_1.1.0-1_all + libghc-hsql-doc_1.8.1-4_all + libghc-hsql-mysql-doc_1.8.1-4_all + libghc-hsql-odbc-doc_1.8.1.1-2_all + libghc-hsql-postgresql-doc_1.8.1-3_all + libghc-hsql-sqlite3-doc_1.8.1-2_all + libghc-hssyck-doc_0.50-2_all + libghc-hstringtemplate-doc_0.6.8-1_all + libghc-hsx-doc_0.9.1-3_all + libghc-html-conduit-doc_0.0.1-2_all + libghc-html-doc_1.0.1.2-5_all + libghc-http-conduit-doc_1.4.1.6-3_all + libghc-http-date-doc_0.0.2-1_all + libghc-http-doc_1:4000.2.3-1_all + libghc-http-types-doc_0.6.11-1_all + libghc-hunit-doc_1.2.4.2-2_all + libghc-hxt-cache-doc_9.0.2-2_all + libghc-hxt-charproperties-doc_9.1.1-2_all + libghc-hxt-curl-doc_9.1.1-1_all + libghc-hxt-doc_9.2.2-2_all + libghc-hxt-http-doc_9.1.4-2_all + libghc-hxt-regex-xmlschema-doc_9.0.4-2_all + libghc-hxt-relaxng-doc_9.1.4-1_all + libghc-hxt-tagsoup-doc_9.1.1-1_all + libghc-hxt-unicode-doc_9.0.2-2_all + libghc-hxt-xpath-doc_9.1.2-1_all + libghc-hxt-xslt-doc_9.1.1-1_all + libghc-iconv-doc_0.4.1.0-2_all + libghc-ieee754-doc_0.7.3-1_all + libghc-ifelse-doc_0.85-4_all + libghc-io-choice-doc_0.0.1-1_all + libghc-io-storage-doc_0.3-2_all + libghc-iospec-doc_0.2.5-1_all + libghc-irc-doc_0.5.0.0-1_all + libghc-iteratee-doc_0.8.8.2-2_all + libghc-ixset-doc_1.0.3-2_all + libghc-json-doc_0.5-2_all + libghc-keys-doc_2.1.3.2-1_all + libghc-knob-doc_0.1.1-1_all + libghc-lambdabot-utils-doc_4.2.1-3_all + libghc-language-c-doc_0.4.2-2_all + libghc-language-haskell-extract-doc_0.2.1-4_all + libghc-language-javascript-doc_0.5.4-1_all + libghc-largeword-doc_1.0.1-2_all + libghc-ldap-doc_0.6.6-4.1_all + libghc-leksah-server-doc_0.12.0.4-3_all + libghc-libtagc-doc_0.12.0-2_all + libghc-libxml-sax-doc_0.7.2-2_all + libghc-libzip-doc_0.10-1_all + libghc-lifted-base-doc_0.1.1-1_all + libghc-listlike-doc_3.1.4-1_all + libghc-llvm-base-doc_3.0.1.0-1_all + libghc-llvm-doc_3.0.1.0-1_all + libghc-logict-doc_0.5.0.1-1_all + libghc-ltk-doc_0.12.0.0-2_all + libghc-maccatcher-doc_2.1.5-2_all + libghc-magic-doc_1.0.8-8_all + libghc-markov-chain-doc_0.0.3.2-1_all + libghc-math-functions-doc_0.1.1.0-2_all + libghc-maths-doc_0.4.3-1_all + libghc-maybet-doc_0.1.2-3_all + libghc-mbox-doc_0.1-2_all + libghc-memotrie-doc_0.5-1_all + libghc-mersenne-random-doc_1.0.0.1-2_all + libghc-midi-doc_0.2.0.1-1_all + libghc-mime-mail-doc_0.4.1.1-2_all + libghc-missingh-doc_1.1.0.3-6_all + libghc-mmap-doc_0.5.7-2_all + libghc-monad-control-doc_0.3.1.3-1_all + libghc-monad-loops-doc_0.3.2.0-1_all + libghc-monad-par-doc_0.1.0.3-2_all + libghc-monadcatchio-mtl-doc_0.3.0.4-2_all + libghc-monadcatchio-transformers-doc_0.3.0.0-2_all + libghc-monadcryptorandom-doc_0.4.1-1_all + libghc-monadrandom-doc_0.1.6-2_all + libghc-monads-tf-doc_0.1.0.0-1_all + libghc-monoid-transformer-doc_0.0.2-3_all + libghc-mtl-doc_2.1.1-1_all + libghc-mtlparse-doc_0.1.2-2_all + libghc-murmur-hash-doc_0.1.0.5-2_all + libghc-mwc-random-doc_0.11.0.0-4_all + libghc-ncurses-doc_0.2.1-1_all + libghc-netwire-doc_3.1.0-2_all + libghc-network-conduit-doc_0.4.0.1-2_all + libghc-network-doc_2.3.0.13-1_all + libghc-network-protocol-xmpp-doc_0.4.3-1_all + libghc-newtype-doc_0.2-1_all + libghc-non-negative-doc_0.1-2_all + libghc-numbers-doc_2009.8.9-2_all + libghc-numeric-quest-doc_0.2-1_all + libghc-numinstances-doc_1.0-2_all + libghc-numtype-doc_1.0-2_all + libghc-oeis-doc_0.3.1-2_all + libghc-openal-doc_1.3.1.3-4_all + libghc-opengl-doc_2.2.3.1-1_all + libghc-openpgp-asciiarmor-doc_0.1-1_all + libghc-options-doc_0.1.1-1_all + libghc-pandoc-doc_1.9.4.2-2_all + libghc-pandoc-types-doc_1.9.1-1_all + libghc-pango-doc_0.12.2-1_all + libghc-parallel-doc_3.2.0.2-2_all + libghc-parseargs-doc_0.1.3.2-2_all + libghc-parsec2-doc_2.1.0.1-6_all + libghc-parsec3-doc_3.1.2-1_all + libghc-pastis-doc_0.1.2-2_all + libghc-path-pieces-doc_0.1.0-1_all + libghc-patience-doc_0.1.1-1_all + libghc-pcre-light-doc_0.4-3_all + libghc-pem-doc_0.1.1-1_all + libghc-persistent-doc_0.9.0.4-2_all + libghc-persistent-sqlite-doc_0.9.0.2-2_all + libghc-persistent-template-doc_0.9.0.2-1_all + libghc-polyparse-doc_1.7-1_all + libghc-pool-conduit-doc_0.1.0.2-1_all + libghc-postgresql-libpq-doc_0.8.2-1_all + libghc-postgresql-simple-doc_0.1.4.3-1_all + libghc-pretty-show-doc_1.1.1-4_all + libghc-primes-doc_0.2.1.0-2_all + libghc-primitive-doc_0.4.1-1_all + libghc-psqueue-doc_1.1-2_all + libghc-puremd5-doc_2.1.0.3-2_all + libghc-pwstore-fast-doc_2.2-2_all + libghc-quickcheck1-doc_1.2.0.1-2_all + libghc-quickcheck2-doc_2.4.2-1_all + libghc-random-doc_1.0.1.1-1_all + libghc-random-shuffle-doc_0.0.3-2_all + libghc-ranged-sets-doc_0.3.0-2_all + libghc-ranges-doc_0.2.4-2_all + libghc-reactive-banana-doc_0.6.0.0-1_all + libghc-readline-doc_1.0.1.0-3_all + libghc-recaptcha-doc_0.1-4_all + libghc-regex-base-doc_0.93.2-2_all + libghc-regex-compat-doc_0.95.1-2_all + libghc-regex-pcre-doc_0.94.2-2_all + libghc-regex-posix-doc_0.95.1-2_all + libghc-regex-tdfa-doc_1.1.8-2_all + libghc-regex-tdfa-utf8-doc_1.0-5_all + libghc-regexpr-doc_0.5.4-2_all + libghc-representable-functors-doc_2.4.0.2-1_all + libghc-representable-tries-doc_2.4.0.2-1_all + libghc-resource-pool-doc_0.2.1.0-2_all + libghc-resourcet-doc_0.3.2.1-1_all + libghc-rsa-doc_1.2.1.0-1_all + libghc-safe-doc_0.3.3-1_all + libghc-safecopy-doc_0.6.1-1_all + libghc-sdl-doc_0.6.3-1_all + libghc-sdl-gfx-doc_0.6.0-3_all + libghc-sdl-image-doc_0.6.1-3_all + libghc-sdl-mixer-doc_0.6.1-3_all + libghc-sdl-ttf-doc_0.6.1-3_all + libghc-semigroupoids-doc_1.3.1.2-1_all + libghc-semigroups-doc_0.8.3.2-1_all + libghc-sendfile-doc_0.7.6-1_all + libghc-sha-doc_1.5.0.1-1_all + libghc-shakespeare-css-doc_1.0.1.2-1_all + libghc-shakespeare-doc_1.0.0.2-1_all + libghc-shakespeare-i18n-doc_1.0.0.2-1_all + libghc-shakespeare-js-doc_1.0.0.2-1_all + libghc-shakespeare-text-doc_1.0.0.2-1_all + libghc-shellac-doc_0.9.5.1-2_all + libghc-show-doc_0.4.1.2-1_all + libghc-silently-doc_1.1.4-1_all + libghc-simple-sendfile-doc_0.2.3-1_all + libghc-simpleea-doc_0.1.1-2_all + libghc-simpleirc-doc_0.2.1-2_all + libghc-skein-doc_0.1.0.7-2_all + libghc-smallcheck-doc_0.6-1_all + libghc-smtpclient-doc_1.0.4-3_all + libghc-snap-core-doc_0.8.1-1_all + libghc-snap-server-doc_0.8.1.1-1_all + libghc-socks-doc_0.4.1-1_all + libghc-split-doc_0.1.4.2-2_all + libghc-src-exts-doc_1.11.1-3_all + libghc-statevar-doc_1.0.0.0-2_all + libghc-static-hash-doc_0.0.1-3_all + libghc-statistics-doc_0.10.1.0-2_all + libghc-stm-doc_2.3-1_all + libghc-stream-doc_0.4.6-1_all + libghc-strict-concurrency-doc_0.2.4.1-2_all + libghc-strict-doc_0.3.2-2_all + libghc-strptime-doc_1.0.6-1_all + libghc-svgcairo-doc_0.12.1-1_all + libghc-syb-doc_0.3.6.1-1_all + libghc-syb-with-class-doc_0.6.1.3-1_all + libghc-syb-with-class-instances-text-doc_0.0.1-3_all + libghc-system-fileio-doc_0.3.8-1_all + libghc-system-filepath-doc_0.4.6-1_all + libghc-tagged-doc_0.4.2.1-1_all + libghc-tagsoup-doc_0.12.6-1_all + libghc-tagstream-conduit-doc_0.3.2-1_all + libghc-tar-doc_0.3.2.0-2_all + libghc-template-doc_0.2.0.7-1_all + libghc-temporary-doc_1.1.2.3-1_all + libghc-terminfo-doc_0.3.2.3-1_all + libghc-test-framework-doc_0.6-1_all + libghc-test-framework-hunit-doc_0.2.7-1_all + libghc-test-framework-quickcheck2-doc_0.2.12.1-1_all + libghc-test-framework-th-doc_0.2.2-5_all + libghc-test-framework-th-prime-doc_0.0.5-1_all + libghc-testpack-doc_2.1.1-1_all + libghc-texmath-doc_0.6.0.6-1_all + libghc-text-doc_0.11.2.0-1_all + libghc-text-icu-doc_0.6.3.4-2_all + libghc-tinyurl-doc_0.1.0-2_all + libghc-tls-doc_0.9.5-1_all + libghc-tls-extra-doc_0.4.6.1-2_all + libghc-tokyocabinet-doc_0.0.5-5_all + libghc-transformers-base-doc_0.4.1-2_all + libghc-transformers-doc_0.3.0.0-1_all + libghc-type-level-doc_0.2.4-5_all + libghc-uniplate-doc_1.6.7-1_all + libghc-unix-bytestring-doc_0.3.5-2_all + libghc-unix-compat-doc_0.3.0.1-1_all + libghc-unixutils-doc_1.50-1_all + libghc-unlambda-doc_0.1-2_all + libghc-unordered-containers-doc_0.2.1.0-1_all + libghc-uri-doc_0.1.6-1_all + libghc-url-doc_2.1.2-4_all + libghc-utf8-light-doc_0.4.0.1-2_all + libghc-utf8-string-doc_0.3.7-1_all + libghc-utility-ht-doc_0.0.5.1-3_all + libghc-uuagc-cabal-doc_1.0.2.0-1_all + libghc-uuid-doc_1.2.3-2_all + libghc-uulib-doc_0.9.14-2_all + libghc-vault-doc_0.2.0.0-1_all + libghc-vector-algorithms-doc_0.5.4-1_all + libghc-vector-doc_0.9.1-2_all + libghc-vector-space-doc_0.8.1-1_all + libghc-vector-space-points-doc_0.1.1.0-1_all + libghc-void-doc_0.5.5.1-2_all + libghc-vte-doc_0.12.1-1_all + libghc-vty-doc_4.7.0.14-1_all + libghc-wai-app-file-cgi-doc_0.5.8-1_all + libghc-wai-app-static-doc_1.2.0.3-1_all + libghc-wai-doc_1.2.0.2-1_all + libghc-wai-extra-doc_1.2.0.4-1_all + libghc-wai-logger-doc_0.1.4-1_all + libghc-wai-logger-prefork-doc_0.1.3-1_all + libghc-wai-test-doc_1.2.0.2-1_all + libghc-warp-doc_1.2.1.1-1_all + libghc-warp-tls-doc_1.2.0.4-1_all + libghc-web-routes-doc_0.25.3-2_all + libghc-webkit-doc_0.12.3-2_all + libghc-weighted-regexp-doc_0.3.1.1-2_all + libghc-x11-doc_1.5.0.1-1_all + libghc-x11-xft-doc_0.3.1-1_all + libghc-xdg-basedir-doc_0.2.1-2_all + libghc-xhtml-doc_3000.2.1-1_all + libghc-xml-conduit-doc_0.7.0.2-1_all + libghc-xml-doc_1.3.12-1_all + libghc-xml-types-doc_0.3.1-2_all + libghc-xml2html-doc_0.1.2.3-1_all + libghc-xmonad-contrib-doc_0.10-4~deb7u1_all + libghc-xmonad-doc_0.10-4_all + libghc-xss-sanitize-doc_0.3.2-1_all + libghc-yaml-doc_0.7.0.2-1_all + libghc-yaml-light-doc_0.1.4-2_all + libghc-yesod-auth-doc_1.0.2.1-2_all + libghc-yesod-core-doc_1.0.1.2-1_all + libghc-yesod-default-doc_1.0.1.1-1_all + libghc-yesod-doc_1.0.1.6-2_all + libghc-yesod-form-doc_1.0.0.4-1_all + libghc-yesod-json-doc_1.0.0.1-1_all + libghc-yesod-markdown-doc_0.4.0-1_all + libghc-yesod-persistent-doc_1.0.0.1-1_all + libghc-yesod-routes-doc_1.0.1.2-1_all + libghc-yesod-static-doc_1.0.0.2-1_all + libghc-yesod-test-doc_0.2.0.6-1_all + libghc-zip-archive-doc_0.1.1.7-3_all + libghc-zlib-bindings-doc_0.1.0.1-1_all + libghc-zlib-conduit-doc_0.4.0.1-1_all + libghc-zlib-doc_0.5.3.3-1_all + libghc-zlib-enum-doc_0.2.2.1-1_all + libghc6-agda-dev_1:8_all + libghc6-agda-doc_1:8_all + libghc6-alut-dev_1:8_all + libghc6-alut-doc_1:8_all + libghc6-alut-prof_1:8_all + libghc6-arrows-dev_1:8_all + libghc6-arrows-doc_1:8_all + libghc6-arrows-prof_1:8_all + libghc6-binary-dev_1:8_all + libghc6-binary-doc_1:8_all + libghc6-binary-prof_1:8_all + libghc6-binary-shared-dev_1:8_all + libghc6-binary-shared-doc_1:8_all + libghc6-binary-shared-prof_1:8_all + libghc6-bzlib-dev_1:8_all + libghc6-bzlib-doc_1:8_all + libghc6-bzlib-prof_1:8_all + libghc6-cairo-dev_1:8_all + libghc6-cairo-doc_1:8_all + libghc6-cairo-prof_1:8_all + libghc6-cautious-file-dev_1:8_all + libghc6-cautious-file-doc_1:8_all + libghc6-cautious-file-prof_1:8_all + libghc6-cgi-dev_1:8_all + libghc6-cgi-doc_1:8_all + libghc6-cgi-prof_1:8_all + libghc6-colour-dev_1:8_all + libghc6-colour-doc_1:8_all + libghc6-colour-prof_1:8_all + libghc6-configfile-dev_1:8_all + libghc6-configfile-doc_1:8_all + libghc6-configfile-prof_1:8_all + libghc6-convertible-dev_1:8_all + libghc6-convertible-doc_1:8_all + libghc6-convertible-prof_1:8_all + libghc6-cpphs-dev_1:8_all + libghc6-cpphs-doc_1:8_all + libghc6-cpphs-prof_1:8_all + libghc6-criterion-dev_1:8_all + libghc6-criterion-doc_1:8_all + libghc6-criterion-prof_1:8_all + libghc6-csv-dev_1:8_all + libghc6-csv-doc_1:8_all + libghc6-csv-prof_1:8_all + libghc6-curl-dev_1:8_all + libghc6-curl-doc_1:8_all + libghc6-curl-prof_1:8_all + libghc6-data-accessor-dev_1:8_all + libghc6-data-accessor-doc_1:8_all + libghc6-data-accessor-prof_1:8_all + libghc6-dataenc-dev_1:8_all + libghc6-dataenc-doc_1:8_all + libghc6-dataenc-prof_1:8_all + libghc6-datetime-dev_1:8_all + libghc6-datetime-doc_1:8_all + libghc6-datetime-prof_1:8_all + libghc6-debian-dev_1:8_all + libghc6-debian-doc_1:8_all + libghc6-debian-prof_1:8_all + libghc6-deepseq-dev_1:8_all + libghc6-deepseq-doc_1:8_all + libghc6-deepseq-prof_1:8_all + libghc6-diagrams-dev_1:8_all + libghc6-diagrams-doc_1:8_all + libghc6-diagrams-prof_1:8_all + libghc6-diff-dev_1:8_all + libghc6-diff-doc_1:8_all + libghc6-diff-prof_1:8_all + libghc6-digest-dev_1:8_all + libghc6-digest-doc_1:8_all + libghc6-digest-prof_1:8_all + libghc6-edison-api-dev_1:8_all + libghc6-edison-api-doc_1:8_all + libghc6-edison-api-prof_1:8_all + libghc6-edison-core-dev_1:8_all + libghc6-edison-core-doc_1:8_all + libghc6-edison-core-prof_1:8_all + libghc6-editline-dev_1:8_all + libghc6-editline-doc_1:8_all + libghc6-erf-dev_1:8_all + libghc6-erf-doc_1:8_all + libghc6-erf-prof_1:8_all + libghc6-event-list-dev_1:8_all + libghc6-event-list-doc_1:8_all + libghc6-event-list-prof_1:8_all + libghc6-explicit-exception-dev_1:8_all + libghc6-explicit-exception-doc_1:8_all + libghc6-explicit-exception-prof_1:8_all + libghc6-fastcgi-dev_1:8_all + libghc6-fastcgi-doc_1:8_all + libghc6-fastcgi-prof_1:8_all + libghc6-feed-dev_1:8_all + libghc6-feed-doc_1:8_all + libghc6-feed-prof_1:8_all + libghc6-fgl-dev_1:8_all + libghc6-fgl-doc_1:8_all + libghc6-fgl-prof_1:8_all + libghc6-filemanip-dev_1:8_all + libghc6-filemanip-doc_1:8_all + libghc6-filemanip-prof_1:8_all + libghc6-filestore-data_1:8_all + libghc6-filestore-dev_1:8_all + libghc6-filestore-doc_1:8_all + libghc6-filestore-prof_1:8_all + libghc6-ftphs-dev_1:8_all + libghc6-ftphs-doc_1:8_all + libghc6-gconf-dev_1:8_all + libghc6-gconf-doc_1:8_all + libghc6-gconf-prof_1:8_all + libghc6-ghc-events-dev_1:8_all + libghc6-ghc-events-doc_1:8_all + libghc6-ghc-events-prof_1:8_all + libghc6-ghc-mtl-dev_1:8_all + libghc6-ghc-mtl-doc_1:8_all + libghc6-ghc-mtl-prof_1:8_all + libghc6-ghc-paths-dev_1:8_all + libghc6-ghc-paths-doc_1:8_all + libghc6-ghc-paths-prof_1:8_all + libghc6-gio-dev_1:8_all + libghc6-gio-doc_1:8_all + libghc6-gio-prof_1:8_all + libghc6-gitit-dev_1:8_all + libghc6-gitit-doc_1:8_all + libghc6-glade-dev_1:8_all + libghc6-glade-doc_1:8_all + libghc6-glfw-dev_1:8_all + libghc6-glfw-doc_1:8_all + libghc6-glfw-prof_1:8_all + libghc6-glib-dev_1:8_all + libghc6-glib-doc_1:8_all + libghc6-glib-prof_1:8_all + libghc6-glut-dev_1:8_all + libghc6-glut-doc_1:8_all + libghc6-glut-prof_1:8_all + libghc6-gstreamer-dev_1:8_all + libghc6-gstreamer-doc_1:8_all + libghc6-gstreamer-prof_1:8_all + libghc6-gtk-dev_1:8_all + libghc6-gtk-doc_1:8_all + libghc6-gtkglext-dev_1:8_all + libghc6-gtkglext-doc_1:8_all + libghc6-gtksourceview2-dev_1:8_all + libghc6-gtksourceview2-doc_1:8_all + libghc6-haddock-dev_1:8_all + libghc6-haddock-doc_1:8_all + libghc6-haddock-prof_1:8_all + libghc6-happstack-dev_1:8_all + libghc6-happstack-doc_1:8_all + libghc6-happstack-prof_1:8_all + libghc6-happstack-server-dev_1:8_all + libghc6-happstack-server-doc_1:8_all + libghc6-happstack-server-prof_1:8_all + libghc6-harp-dev_1:8_all + libghc6-harp-doc_1:8_all + libghc6-harp-prof_1:8_all + libghc6-hashed-storage-dev_1:8_all + libghc6-hashed-storage-doc_1:8_all + libghc6-hashed-storage-prof_1:8_all + libghc6-haskeline-dev_1:8_all + libghc6-haskeline-doc_1:8_all + libghc6-haskeline-prof_1:8_all + libghc6-haskell-lexer-dev_1:8_all + libghc6-haskell-lexer-doc_1:8_all + libghc6-haskell-lexer-prof_1:8_all + libghc6-haskell-src-dev_1:8_all + libghc6-haskell-src-doc_1:8_all + libghc6-haskell-src-prof_1:8_all + libghc6-haskelldb-dev_1:8_all + libghc6-haskelldb-doc_1:8_all + libghc6-haskelldb-hdbc-dev_1:8_all + libghc6-haskelldb-hdbc-doc_1:8_all + libghc6-haskelldb-hdbc-odbc-dev_1:8_all + libghc6-haskelldb-hdbc-odbc-doc_1:8_all + libghc6-haskelldb-hdbc-postgresql-dev_1:8_all + libghc6-haskelldb-hdbc-postgresql-doc_1:8_all + libghc6-haskelldb-hdbc-prof_1:8_all + libghc6-haskelldb-hdbc-sqlite3-dev_1:8_all + libghc6-haskelldb-hdbc-sqlite3-doc_1:8_all + libghc6-haskelldb-prof_1:8_all + libghc6-haskore-dev_1:8_all + libghc6-haskore-doc_1:8_all + libghc6-haskore-prof_1:8_all + libghc6-haxml-dev_1:8_all + libghc6-haxml-prof_1:8_all + libghc6-haxr-dev_1:8_all + libghc6-haxr-doc_1:8_all + libghc6-haxr-prof_1:8_all + libghc6-hdbc-dev_1:8_all + libghc6-hdbc-doc_1:8_all + libghc6-hdbc-odbc-dev_1:8_all + libghc6-hdbc-odbc-doc_1:8_all + libghc6-hdbc-postgresql-dev_1:8_all + libghc6-hdbc-postgresql-doc_1:8_all + libghc6-hdbc-prof_1:8_all + libghc6-hdbc-sqlite3-dev_1:8_all + libghc6-hdbc-sqlite3-doc_1:8_all + libghc6-highlighting-kate-dev_1:8_all + libghc6-highlighting-kate-doc_1:8_all + libghc6-highlighting-kate-prof_1:8_all + libghc6-hint-dev_1:8_all + libghc6-hint-doc_1:8_all + libghc6-hint-prof_1:8_all + libghc6-hjavascript-dev_1:8_all + libghc6-hjavascript-doc_1:8_all + libghc6-hjavascript-prof_1:8_all + libghc6-hjscript-dev_1:8_all + libghc6-hjscript-doc_1:8_all + libghc6-hjscript-prof_1:8_all + libghc6-hoauth-dev_1:8_all + libghc6-hoauth-doc_1:8_all + libghc6-hscolour-dev_1:8_all + libghc6-hscolour-doc_1:8_all + libghc6-hscolour-prof_1:8_all + libghc6-hscurses-dev_1:8_all + libghc6-hscurses-doc_1:8_all + libghc6-hscurses-prof_1:8_all + libghc6-hsemail-dev_1:8_all + libghc6-hsemail-doc_1:8_all + libghc6-hsemail-prof_1:8_all + libghc6-hsh-dev_1:8_all + libghc6-hslogger-dev_1:8_all + libghc6-hslogger-doc_1:8_all + libghc6-hslogger-prof_1:8_all + libghc6-hsp-dev_1:8_all + libghc6-hsp-doc_1:8_all + libghc6-hsp-prof_1:8_all + libghc6-hsql-dev_1:8_all + libghc6-hsql-doc_1:8_all + libghc6-hsql-mysql-dev_1:8_all + libghc6-hsql-mysql-doc_1:8_all + libghc6-hsql-mysql-prof_1:8_all + libghc6-hsql-odbc-dev_1:8_all + libghc6-hsql-odbc-doc_1:8_all + libghc6-hsql-odbc-prof_1:8_all + libghc6-hsql-postgresql-dev_1:8_all + libghc6-hsql-postgresql-doc_1:8_all + libghc6-hsql-postgresql-prof_1:8_all + libghc6-hsql-prof_1:8_all + libghc6-hsql-sqlite3-dev_1:8_all + libghc6-hsql-sqlite3-doc_1:8_all + libghc6-hsql-sqlite3-prof_1:8_all + libghc6-hstringtemplate-dev_1:8_all + libghc6-hstringtemplate-doc_1:8_all + libghc6-hstringtemplate-prof_1:8_all + libghc6-hsx-dev_1:8_all + libghc6-hsx-doc_1:8_all + libghc6-hsx-prof_1:8_all + libghc6-html-dev_1:8_all + libghc6-html-doc_1:8_all + libghc6-html-prof_1:8_all + libghc6-http-dev_1:8_all + libghc6-http-doc_1:8_all + libghc6-http-prof_1:8_all + libghc6-hunit-dev_1:8_all + libghc6-hunit-doc_1:8_all + libghc6-hunit-prof_1:8_all + libghc6-hxt-dev_1:8_all + libghc6-hxt-doc_1:8_all + libghc6-hxt-prof_1:8_all + libghc6-ifelse-dev_1:8_all + libghc6-ifelse-doc_1:8_all + libghc6-ifelse-prof_1:8_all + libghc6-irc-dev_1:8_all + libghc6-irc-doc_1:8_all + libghc6-json-dev_1:8_all + libghc6-json-doc_1:8_all + libghc6-json-prof_1:8_all + libghc6-language-c-dev_1:8_all + libghc6-language-c-doc_1:8_all + libghc6-language-c-prof_1:8_all + libghc6-lazysmallcheck-dev_1:8_all + libghc6-lazysmallcheck-prof_1:8_all + libghc6-ldap-dev_1:8_all + libghc6-ldap-doc_1:8_all + libghc6-ldap-prof_1:8_all + libghc6-leksah-server-dev_1:8_all + libghc6-leksah-server-doc_1:8_all + libghc6-llvm-dev_1:8_all + libghc6-llvm-doc_1:8_all + libghc6-llvm-prof_1:8_all + libghc6-ltk-dev_1:8_all + libghc6-ltk-doc_1:8_all + libghc6-magic-dev_1:8_all + libghc6-magic-doc_1:8_all + libghc6-magic-prof_1:8_all + libghc6-markov-chain-dev_1:8_all + libghc6-markov-chain-doc_1:8_all + libghc6-markov-chain-prof_1:8_all + libghc6-maybet-dev_1:8_all + libghc6-maybet-doc_1:8_all + libghc6-maybet-prof_1:8_all + libghc6-midi-dev_1:8_all + libghc6-midi-doc_1:8_all + libghc6-midi-prof_1:8_all + libghc6-missingh-dev_1:8_all + libghc6-missingh-doc_1:8_all + libghc6-missingh-prof_1:8_all + libghc6-mmap-dev_1:8_all + libghc6-mmap-doc_1:8_all + libghc6-mmap-prof_1:8_all + libghc6-monadcatchio-mtl-dev_1:8_all + libghc6-monadcatchio-mtl-doc_1:8_all + libghc6-monadcatchio-mtl-prof_1:8_all + libghc6-monoid-transformer-dev_1:8_all + libghc6-monoid-transformer-doc_1:8_all + libghc6-monoid-transformer-prof_1:8_all + libghc6-mtl-dev_1:8_all + libghc6-mtl-doc_1:8_all + libghc6-mtl-prof_1:8_all + libghc6-mwc-random-dev_1:8_all + libghc6-mwc-random-doc_1:8_all + libghc6-mwc-random-prof_1:8_all + libghc6-network-dev_1:8_all + libghc6-network-doc_1:8_all + libghc6-network-prof_1:8_all + libghc6-non-negative-dev_1:8_all + libghc6-non-negative-doc_1:8_all + libghc6-non-negative-prof_1:8_all + libghc6-openal-dev_1:8_all + libghc6-openal-doc_1:8_all + libghc6-openal-prof_1:8_all + libghc6-opengl-dev_1:8_all + libghc6-opengl-doc_1:8_all + libghc6-opengl-prof_1:8_all + libghc6-pandoc-dev_1:8_all + libghc6-pandoc-doc_1:8_all + libghc6-pango-dev_1:8_all + libghc6-pango-doc_1:8_all + libghc6-pango-prof_1:8_all + libghc6-parallel-dev_1:8_all + libghc6-parallel-doc_1:8_all + libghc6-parallel-prof_1:8_all + libghc6-parsec2-dev_1:8_all + libghc6-parsec2-doc_1:8_all + libghc6-parsec2-prof_1:8_all + libghc6-parsec3-dev_1:8_all + libghc6-parsec3-doc_1:8_all + libghc6-parsec3-prof_1:8_all + libghc6-pcre-light-dev_1:8_all + libghc6-pcre-light-doc_1:8_all + libghc6-pcre-light-prof_1:8_all + libghc6-polyparse-dev_1:8_all + libghc6-polyparse-doc_1:8_all + libghc6-polyparse-prof_1:8_all + libghc6-pretty-show-dev_1:8_all + libghc6-pretty-show-doc_1:8_all + libghc6-pretty-show-prof_1:8_all + libghc6-primitive-dev_1:8_all + libghc6-primitive-doc_1:8_all + libghc6-primitive-prof_1:8_all + libghc6-quickcheck1-dev_1:8_all + libghc6-quickcheck1-doc_1:8_all + libghc6-quickcheck1-prof_1:8_all + libghc6-quickcheck2-dev_1:8_all + libghc6-quickcheck2-doc_1:8_all + libghc6-quickcheck2-prof_1:8_all + libghc6-recaptcha-dev_1:8_all + libghc6-recaptcha-doc_1:8_all + libghc6-recaptcha-prof_1:8_all + libghc6-regex-base-dev_1:8_all + libghc6-regex-base-doc_1:8_all + libghc6-regex-base-prof_1:8_all + libghc6-regex-compat-dev_1:8_all + libghc6-regex-compat-doc_1:8_all + libghc6-regex-compat-prof_1:8_all + libghc6-regex-posix-dev_1:8_all + libghc6-regex-posix-doc_1:8_all + libghc6-regex-posix-prof_1:8_all + libghc6-regex-tdfa-dev_1:8_all + libghc6-regex-tdfa-doc_1:8_all + libghc6-regex-tdfa-prof_1:8_all + libghc6-regex-tdfa-utf8-dev_1:8_all + libghc6-regex-tdfa-utf8-doc_1:8_all + libghc6-regex-tdfa-utf8-prof_1:8_all + libghc6-safe-dev_1:8_all + libghc6-safe-doc_1:8_all + libghc6-safe-prof_1:8_all + libghc6-sdl-dev_1:8_all + libghc6-sdl-doc_1:8_all + libghc6-sdl-gfx-dev_1:8_all + libghc6-sdl-gfx-doc_1:8_all + libghc6-sdl-gfx-prof_1:8_all + libghc6-sdl-image-dev_1:8_all + libghc6-sdl-image-doc_1:8_all + libghc6-sdl-image-prof_1:8_all + libghc6-sdl-mixer-dev_1:8_all + libghc6-sdl-mixer-doc_1:8_all + libghc6-sdl-mixer-prof_1:8_all + libghc6-sdl-prof_1:8_all + libghc6-sdl-ttf-dev_1:8_all + libghc6-sdl-ttf-doc_1:8_all + libghc6-sdl-ttf-prof_1:8_all + libghc6-sendfile-dev_1:8_all + libghc6-sendfile-doc_1:8_all + libghc6-sendfile-prof_1:8_all + libghc6-sha-dev_1:8_all + libghc6-sha-doc_1:8_all + libghc6-sha-prof_1:8_all + libghc6-smtpclient-dev_1:8_all + libghc6-smtpclient-doc_1:8_all + libghc6-smtpclient-prof_1:8_all + libghc6-split-dev_1:8_all + libghc6-split-doc_1:8_all + libghc6-split-prof_1:8_all + libghc6-src-exts-dev_1:8_all + libghc6-src-exts-doc_1:8_all + libghc6-src-exts-prof_1:8_all + libghc6-statistics-dev_1:8_all + libghc6-statistics-doc_1:8_all + libghc6-statistics-prof_1:8_all + libghc6-stm-dev_1:8_all + libghc6-stm-doc_1:8_all + libghc6-stm-prof_1:8_all + libghc6-stream-dev_1:8_all + libghc6-stream-doc_1:8_all + libghc6-stream-prof_1:8_all + libghc6-strict-concurrency-dev_1:8_all + libghc6-strict-concurrency-doc_1:8_all + libghc6-strict-concurrency-prof_1:8_all + libghc6-svgcairo-dev_1:8_all + libghc6-svgcairo-doc_1:8_all + libghc6-syb-with-class-dev_1:8_all + libghc6-syb-with-class-doc_1:8_all + libghc6-syb-with-class-instances-text-dev_1:8_all + libghc6-syb-with-class-instances-text-doc_1:8_all + libghc6-syb-with-class-instances-text-prof_1:8_all + libghc6-syb-with-class-prof_1:8_all + libghc6-tagsoup-dev_1:8_all + libghc6-tagsoup-doc_1:8_all + libghc6-tagsoup-prof_1:8_all + libghc6-tar-dev_1:8_all + libghc6-tar-doc_1:8_all + libghc6-tar-prof_1:8_all + libghc6-terminfo-dev_1:8_all + libghc6-terminfo-doc_1:8_all + libghc6-terminfo-prof_1:8_all + libghc6-testpack-dev_1:8_all + libghc6-testpack-doc_1:8_all + libghc6-testpack-prof_1:8_all + libghc6-texmath-dev_1:8_all + libghc6-texmath-doc_1:8_all + libghc6-texmath-prof_1:8_all + libghc6-text-dev_1:8_all + libghc6-text-doc_1:8_all + libghc6-text-prof_1:8_all + libghc6-tokyocabinet-dev_1:8_all + libghc6-tokyocabinet-doc_1:8_all + libghc6-tokyocabinet-prof_1:8_all + libghc6-transformers-dev_1:8_all + libghc6-transformers-doc_1:8_all + libghc6-transformers-prof_1:8_all + libghc6-type-level-dev_1:8_all + libghc6-type-level-doc_1:8_all + libghc6-type-level-prof_1:8_all + libghc6-uniplate-dev_1:8_all + libghc6-uniplate-doc_1:8_all + libghc6-uniplate-prof_1:8_all + libghc6-unix-compat-dev_1:8_all + libghc6-unix-compat-doc_1:8_all + libghc6-unix-compat-prof_1:8_all + libghc6-unixutils-dev_1:8_all + libghc6-unixutils-doc_1:8_all + libghc6-unixutils-prof_1:8_all + libghc6-url-dev_1:8_all + libghc6-url-doc_1:8_all + libghc6-url-prof_1:8_all + libghc6-utility-ht-dev_1:8_all + libghc6-utility-ht-doc_1:8_all + libghc6-utility-ht-prof_1:8_all + libghc6-uulib-dev_1:8_all + libghc6-uulib-doc_1:8_all + libghc6-uulib-prof_1:8_all + libghc6-vector-algorithms-dev_1:8_all + libghc6-vector-algorithms-doc_1:8_all + libghc6-vector-algorithms-prof_1:8_all + libghc6-vector-dev_1:8_all + libghc6-vector-doc_1:8_all + libghc6-vector-prof_1:8_all + libghc6-vte-dev_1:8_all + libghc6-vte-doc_1:8_all + libghc6-vty-dev_1:8_all + libghc6-vty-doc_1:8_all + libghc6-vty-prof_1:8_all + libghc6-webkit-dev_1:8_all + libghc6-webkit-doc_1:8_all + libghc6-x11-dev_1:8_all + libghc6-x11-doc_1:8_all + libghc6-x11-prof_1:8_all + libghc6-x11-xft-dev_1:8_all + libghc6-x11-xft-doc_1:8_all + libghc6-x11-xft-prof_1:8_all + libghc6-xhtml-dev_1:8_all + libghc6-xhtml-doc_1:8_all + libghc6-xhtml-prof_1:8_all + libghc6-xml-dev_1:8_all + libghc6-xml-doc_1:8_all + libghc6-xml-prof_1:8_all + libghc6-xmonad-contrib-dev_1:8_all + libghc6-xmonad-contrib-doc_1:8_all + libghc6-xmonad-contrib-prof_1:8_all + libghc6-xmonad-dev_1:8_all + libghc6-xmonad-doc_1:8_all + libghc6-xmonad-prof_1:8_all + libghc6-zip-archive-dev_1:8_all + libghc6-zip-archive-doc_1:8_all + libghc6-zip-archive-prof_1:8_all + libghc6-zlib-dev_1:8_all + libghc6-zlib-doc_1:8_all + libghc6-zlib-prof_1:8_all + libghemical-data_3.0.0-2_all + libgig-doc_3.3.0-2_all + libgimp2.0-doc_2.8.2-2+deb7u1_all + libgio-cil_2.22.3-2_all + libgio2.0-cil-dev_2.22.3-2_all + libgirara-doc_0.1.2-3_all + libgirepository1.0-doc_1.32.1-1_all + libgit-pure-perl_0.48-2_all + libgit-repository-perl_1.25-1_all + libgit-ruby_1.2.5-2_all + libgit-ruby1.8_1.2.5-2_all + libgit-wrapper-perl_0.023-1_all + libgkeyfile-cil-dev_0.1-4_all + libgkeyfile1.0-cil_0.1-4_all + libglademm-2.4-doc_2.6.7-2_all + libgladeui-common_3.12.1-1_all + libgladeui-doc_3.12.1-1_all + libglazedlists-java_1.8.0.dfsg-4_all + libglazedlists-java-doc_1.8.0.dfsg-4_all + libglib2-ruby_1.1.3-2_all + libglib2-ruby1.8_1.1.3-2_all + libglib2-ruby1.8-dbg_1.1.3-2_all + libglib2.0-data_2.33.12+really2.32.4-5_all + libglib2.0-doc_2.33.12+really2.32.4-5_all + libglibmm-2.4-doc_2.32.1-1_all + libglm-dev_0.9.3.3+dfsg-0.1_all + libglm-doc_0.9.3.3+dfsg-0.1_all + libglobalhotkeys-ruby_0.3.2-3_all + libglobalhotkeys-ruby1.8_0.3.2-3_all + libglobus-authz-callout-error-doc_2.2-1_all + libglobus-authz-doc_2.2-1_all + libglobus-callout-doc_2.2-1_all + libglobus-common-doc_14.7-2_all + libglobus-ftp-client-doc_7.3-1_all + libglobus-ftp-control-doc_4.4-1_all + libglobus-gass-copy-doc_8.4-1_all + libglobus-gass-transfer-doc_7.2-1_all + libglobus-gram-client-doc_12.4-1_all + libglobus-gram-job-manager-callout-error-doc_2.1-2_all + libglobus-gram-protocol-doc_11.3-1_all + libglobus-gridmap-callout-error-doc_1.2-2_all + libglobus-gsi-callback-doc_4.2-1_all + libglobus-gsi-cert-utils-doc_8.3-1_all + libglobus-gsi-credential-doc_5.3-1_all + libglobus-gsi-openssl-error-doc_2.1-2_all + libglobus-gsi-proxy-core-doc_6.2-1_all + libglobus-gsi-proxy-ssl-doc_4.1-2_all + libglobus-gsi-sysconfig-doc_5.2-1_all + libglobus-gss-assist-doc_8.5-1_all + libglobus-gssapi-error-doc_4.1-2_all + libglobus-gssapi-gsi-doc_10.6-1_all + libglobus-openssl-module-doc_3.2-1_all + libglobus-rls-client-doc_5.2-8_all + libglobus-rsl-doc_9.1-2_all + libglobus-scheduler-event-generator-doc_4.6-1_all + libglobus-xio-doc_3.3-1_all + libglobus-xio-gsi-driver-doc_2.3-1_all + libgloox-doc_1.0-1.1_all + libgluegen2-build-java_2.0-rc5-4_all + libgluegen2-doc_2.0-rc5-4_all + libgluegen2-rt-java_2.0-rc5-4_all + libgmerlin-avdec-doc_1.2.0~dfsg-1_all + libgmetrics-groovy-java_0.5-1_all + libgmetrics-groovy-java-doc_0.5-1_all + libgmime-2.6-doc_2.6.10-1_all + libgmime2.6-cil_2.6.10-1_all + libgmime2.6-cil-dev_2.6.10-1_all + libgmm++-dev_4.1.1+dfsg1-11_all + libgmp10-doc_2:5.0.5+dfsg-2_all + libgmtk0-data_1.0.6-1_all + libgnome-keyring-common_3.4.1-1_all + libgnome-vfs2.0-cil_2.24.2-3_all + libgnome-vfs2.0-cil-dev_2.24.2-3_all + libgnome-vfsmm-2.6-doc_2.26.0-1_all + libgnome2-common_2.32.1-3_all + libgnome2-doc_2.32.1-3_all + libgnomecanvas2-common_2.30.3-1.2_all + libgnomecanvas2-doc_2.30.3-1.2_all + libgnomecanvasmm-2.6-doc_2.26.0-1_all + libgnomedesktop2.0-cil-dev_2.26.0-8_all + libgnomedesktop2.20-cil_2.26.0-8_all + libgnomekbd-common_3.4.0.2-1_all + libgnomemm-2.6-doc_2.30.0-1_all + libgnomeprint2.2-data_2.18.8-3_all + libgnomeprint2.2-doc_2.18.8-3_all + libgnomeprintui2.2-common_2.18.6-3_all + libgnomeprintui2.2-doc_2.18.6-3_all + libgnomeui-common_2.24.5-2_all + libgnomeui-doc_2.24.5-2_all + libgnomeuimm-2.6-doc_2.28.0-1_all + libgnomevfs2-common_1:2.24.4-2_all + libgnu-regexp-java_1.1.4-4_all + libgnuinet-java_1.1.2-2_all + libgnujaf-java_1.1.1-8_all + libgnujaf-java-doc_1.1.1-8_all + libgnumail-java_1.1.2-7_all + libgnumail-java-doc_1.1.2-7_all + libgnupg-interface-perl_0.45-1_all + libgnupg-perl_0.19-1_all + libgnuplot-ruby_2.4.1-2_all + libgnuplot-ruby1.8_2.4.1-2_all + libgo-perl_0.13-3_all + libgoa-1.0-common_3.4.2-2_all + libgoa-1.0-doc_3.4.2-2_all + libgoffice-0.8-8-common_0.8.17-1.2_all + libgoocanvas-common_0.15-1_all + libgoocanvas-ruby_1.1.3-2_all + libgoocanvas-ruby1.8_1.1.3-2_all + libgoocanvas-ruby1.8-dbg_1.1.3-2_all + libgoocanvasmm-doc_0.15.4-1_all + libgoogle-collections-java_1.0-2_all + libgoogle-gson-java_2.1-2_all + libgoogle-gson-java-doc_2.1-2_all + libgosa-perl_0.2-2_all + libgpars-groovy-java_0.10-1_all + libgpars-groovy-java-doc_0.10-1_all + libgpewidget-data_0.117-6_all + libgpewidget-doc_0.117-6_all + libgpgme-ruby_2.0.0-2_all + libgpgme-ruby1.8_2.0.0-2_all + libgpgme-ruby1.9.1_2.0.0-2_all + libgphoto2-dev-doc_2.4.14-2_all + libgphoto2-l10n_2.4.14-2_all + libgpiv3-doc_0.6.1-4_all + libgpod-doc_0.8.2-7_all + libgps-point-perl_0.17-1_all + libgraph-easy-as-svg-perl_0.23-1_all + libgraph-easy-perl_0.71-1_all + libgraph-perl_1:0.91-1_all + libgraph-readwrite-perl_2.03-1_all + libgraph-writer-graphviz-perl_0.11-1_all + libgraphics-color-perl_0.29-1_all + libgraphics-colornames-perl_2.11-4_all + libgraphics-colornames-www-perl_1.12-1_all + libgraphics-colorobject-perl_0.5.0-4_all + libgraphics-gnuplotif-perl_1.6-1_all + libgraphics-primitive-driver-cairo-perl_0.44-1_all + libgraphics-primitive-perl_0.61-1_all + libgraphite2-doc_1.1.3-1_all + libgraphviz-perl_2.10-1_all + libgravatar-url-perl_1.06-1_all + libgrilo-0.1-doc_0.1.19-1_all + libgrits-doc_0.7-1_all + libgroboutils-java_5-2_all + libgroovy1.7.2-java_1.7.2-1_all + libgruff-ruby_0.3.6-6_all + libgruff-ruby-doc_0.3.6-6_all + libgruff-ruby1.8_0.3.6-6_all + libgs9-common_9.05~dfsg-6.3+deb7u1_all + libgsf-1-common_1.14.21-2.1_all + libgsl-ruby_1.14.7+dfsg-1_all + libgsl-ruby-doc_1.14.7+dfsg-1_all + libgsl-ruby1.8_1.14.7+dfsg-1_all + libgsl-ruby1.8-dbg_1.14.7+dfsg-1_all + libgsl-ruby1.9.1_1.14.7+dfsg-1_all + libgsl-ruby1.9.1-dbg_1.14.7+dfsg-1_all + libgssdp-doc_0.12.2.1-2_all + libgst-ruby_1.1.3-2_all + libgst-ruby1.8_1.1.3-2_all + libgst-ruby1.8-dbg_1.1.3-2_all + libgstreamer0.10-cil-dev_0.9.2-4_all + libgtk-3-common_3.4.2-7_all + libgtk-3-doc_3.4.2-7_all + libgtk-sharp-beans-cil_2.14.1-3_all + libgtk-sharp-beans2.0-cil-dev_2.14.1-3_all + libgtk2-ex-entry-pango-perl_0.09-1_all + libgtk2-ex-podviewer-perl_0.18-1_all + libgtk2-ex-printdialog-perl_0.03-3_all + libgtk2-ex-simple-list-perl_0.50-2_all + libgtk2-ex-volumebutton-perl_0.07-2_all + libgtk2-gladexml-simple-perl_0.32-2_all + libgtk2-perl-doc_2:1.244-1_all + libgtk2-ruby_1.1.3-2_all + libgtk2-ruby1.8_1.1.3-2_all + libgtk2-ruby1.8-dbg_1.1.3-2_all + libgtk2.0-common_2.24.10-2_all + libgtk2.0-doc_2.24.10-2_all + libgtk3-perl_0.006-2_all + libgtkada-doc_2.24.1-7_all + libgtkglarea-cil-dev_0.0.17-6_all + libgtkglarea-cil-examples_0.0.17-6_all + libgtkglarea0.0-cil_0.0.17-6_all + libgtkglext1-doc_1.2.0-2_all + libgtkglextmm-x11-1.2-doc_1.2.0-4.1_all + libgtkhtml-4.0-common_4.4.4-1_all + libgtkhtml-editor-3.14-common_3.32.2-2.1_all + libgtkmm-2.4-doc_1:2.24.2-1_all + libgtkmm-3.0-doc_3.4.2-1_all + libgtksourceview-3.0-common_3.4.2-1_all + libgtksourceview-3.0-doc_3.4.2-1_all + libgtksourceview2-ruby_1.1.3-2_all + libgtksourceview2-ruby1.8_1.1.3-2_all + libgtksourceview2-ruby1.8-dbg_1.1.3-2_all + libgtksourceview2.0-common_2.10.4-1_all + libgtksourceview2.0-doc_2.10.4-1_all + libgtksourceviewmm-3.0-doc_3.2.0-1_all + libgtop2-common_2.28.4-3_all + libgtop2-doc_2.28.4-3_all + libgts-doc_0.7.6+darcs110121-1.1_all + libguava-java_11.0.2-1_all + libguava-java-doc_11.0.2-1_all + libgudev1.0-cil_0.1-3_all + libgudev1.0-cil-dev_0.1-3_all + libguice-java_3.0-1_all + libguice-java-doc_3.0-1_all + libgupnp-av-doc_0.10.3-1_all + libgupnp-dlna-doc_0.6.6-1_all + libgupnp-doc_0.18.4-1_all + libgupnp-igd-1.0-doc_0.2.1-2_all + libgusb-doc_0.1.3-5_all + libgutenprint-doc_5.2.9-1_all + libgweather-common_3.4.1-1+build1_all + libgwenhywfar-data_4.3.3-1_all + libgwenhywfar-doc_4.3.3-1_all + libgwyddion20-doc_2.28-2_all + libgxps-doc_0.2.2-2_all + libha-jdbc-java_2.0.16+rc1-2_all + libhamcrest-java_1.2-2_all + libhamcrest-java-doc_1.2-2_all + libhaml-ruby_3.1.6-1_all + libhaml-ruby-doc_3.1.6-1_all + libhaml-ruby1.8_3.1.6-1_all + libhamlib-doc_1.2.15.1-1_all + libhangul-data_0.1.0-2_all + libhash-asobject-perl_0.13-1_all + libhash-case-perl_1.020-1_all + libhash-flatten-perl_1.19-1_all + libhash-merge-perl_0.12-2_all + libhash-merge-simple-perl_0.051-1_all + libhash-moreutils-perl_0.02-1_all + libhash-multivalue-perl_0.12-1_all + libhash-util-fieldhash-compat-perl_0.03-2_all + libhash-withdefaults-perl_0.05-1_all + libhawtjni-runtime-java_1.0~+git0c502e20c4-3_all + libhd-doc_16.0-2.2_all + libhdf4-doc_4.2r4-13_all + libhdf4g-dev_4.2r4-13_all + libhdf5-doc_1.8.8-9_all + libhdfeos5-ruby_1.0-2_all + libhdfeos5-ruby-doc_1.0-2_all + libheap-perl_0.80-2_all + libheckle-ruby_1.4.3-4_all + libheckle-ruby1.8_1.4.3-4_all + libhessian-java_4.0.6-1_all + libhessian-java-doc_4.0.6-1_all + libhibernate-commons-annotations-java_3.2.0.Final-2_all + libhibernate-jbosscache-java_3.6.8-2_all + libhibernate-validator-java_4.0.2.GA-7_all + libhibernate3-java_3.6.9.Final-2_all + libhibernate3-java-doc_3.6.9.Final-2_all + libhighline-ruby_1.6.13-2_all + libhighline-ruby-doc_1.6.13-2_all + libhighline-ruby1.8_1.6.13-2_all + libhighline-ruby1.9.1_1.6.13-2_all + libhkl-doc_4.0.3-4_all + libhmac-ruby_0.4.0-3_all + libhmac-ruby1.8_0.4.0-3_all + libhook-lexwrap-perl_0.24-1_all + libhook-wrapsub-perl_0.03-2_all + libhpricot-ruby_0.8.6-3_all + libhpricot-ruby1.8_0.8.6-3_all + libhpricot-ruby1.9_0.8.6-3_all + libhpricot-ruby1.9.1_0.8.6-3_all + libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all + libhsqldb-java-doc_1.8.0.10+dfsg-0+deb7u1_all + libhtml-auto-perl_0.04-1_all + libhtml-autopagerize-perl_0.02-1_all + libhtml-calendarmonth-perl_1.26-1_all + libhtml-calendarmonthsimple-perl_1.25-1_all + libhtml-clean-perl_0.8-11_all + libhtml-copy-perl_1.30-1_all + libhtml-defang-perl_1.02-1_all + libhtml-diff-perl_0.561-1_all + libhtml-display-perl_0.39-4_all + libhtml-element-extended-perl_1.18-1_all + libhtml-embedded-turtle-perl_0.333-1_all + libhtml-encoding-perl_0.61-1_all + libhtml-entities-numbered-perl_0.04-1_all + libhtml-fillinform-perl_2.10-1_all + libhtml-form-perl_6.03-1_all + libhtml-format-perl_2.10-1_all + libhtml-formattext-withlinks-andtables-perl_0.02-1_all + libhtml-formattext-withlinks-perl_0.14-1_all + libhtml-formfu-model-dbic-perl_0.09002-1_all + libhtml-formfu-perl_0.09007-1_all + libhtml-formhandler-perl_0.40013-1+deb7u1_all + libhtml-fromtext-perl_2.05-5.1_all + libhtml-highlight-perl_0.20-6_all + libhtml-html5-entities-perl_0.003-2_all + libhtml-html5-microdata-parser-perl_0.100-1_all + libhtml-html5-outline-perl_0.006-1_all + libhtml-html5-parser-perl_0.110-1_all + libhtml-html5-sanity-perl_0.103-1_all + libhtml-html5-writer-perl_0.201-1_all + libhtml-htmltokenizer-ruby_1.0-3_all + libhtml-linkextractor-perl_0.130-5_all + libhtml-lint-perl_2.20+dfsg-1_all + libhtml-mason-perl_1:1.48-1_all + libhtml-mason-perl-doc_1:1.48-1_all + libhtml-mason-psgihandler-perl_0.52-1_all + libhtml-microformats-perl_0.104-1_all + libhtml-packer-perl_1.004001-1_all + libhtml-popuptreeselect-perl_1.6-7_all + libhtml-prototype-perl_1.48-3_all + libhtml-quoted-perl_0.03-1_all + libhtml-rewriteattributes-perl_0.04-1_all + libhtml-scrubber-perl_0.09-1_all + libhtml-selector-xpath-perl_0.14-1_all + libhtml-simpleparse-perl_0.12-2_all + libhtml-stream-perl_1.60-1_all + libhtml-stripscripts-parser-perl_1.03-1_all + libhtml-stripscripts-perl_1.05-1_all + libhtml-table-perl_2.08a-2_all + libhtml-tableextract-perl_2.11-1_all + libhtml-tableparser-perl_0.37-1_all + libhtml-tagcloud-perl_0.37-1_all + libhtml-tagfilter-perl_1.03-3_all + libhtml-tagset-perl_3.20-2_all + libhtml-template-compiled-perl_0.97-1_all + libhtml-template-dumper-perl_0.1-1_all + libhtml-template-expr-perl_0.07-2_all + libhtml-template-perl_2.91-1_all + libhtml-template-pluggable-perl_0.17-1_all + libhtml-template-ruby_0.16-2.1_all + libhtml-tiny-perl_1.05-2_all + libhtml-toc-perl_1.12-1_all + libhtml-tokeparser-simple-perl_3.15-1_all + libhtml-tree-perl_5.02-1_all + libhtml-treebuilder-libxml-perl_0.16-1_all + libhtml-treebuilder-xpath-perl_0.14-1_all + libhtml-widget-perl_1.11-3_all + libhtml-widgets-navmenu-perl_1.0600-1_all + libhtml-widgets-selectlayers-perl_0.07-1_all + libhtml-wikiconverter-dokuwiki-perl_0.53-2_all + libhtml-wikiconverter-kwiki-perl_0.51-1_all + libhtml-wikiconverter-markdown-perl_0.02-6_all + libhtml-wikiconverter-mediawiki-perl_0.59-1_all + libhtml-wikiconverter-moinmoin-perl_0.53-4_all + libhtml-wikiconverter-oddmuse-perl_0.52-1_all + libhtml-wikiconverter-perl_0.68-1_all + libhtml-wikiconverter-phpwiki-perl_0.51-2_all + libhtml-wikiconverter-pmwiki-perl_0.51-1_all + libhtml-wikiconverter-snipsnap-perl_0.50-1_all + libhtml-wikiconverter-tikiwiki-perl_0.50-1_all + libhtml-wikiconverter-usemod-perl_0.50-2_all + libhtml-wikiconverter-wakkawiki-perl_0.50-1_all + libhtml-wikiconverter-wikkawiki-perl_0.50-1_all + libhtmlentities-ruby_4.3.1-1_all + libhtmlentities-ruby1.8_4.3.1-1_all + libhtmlentities-ruby1.9.1_4.3.1-1_all + libhtmlparser-java_1.6.20060610.dfsg0-3_all + libhtmlparser-java-doc_1.6.20060610.dfsg0-3_all + libhtmlunit-core-js-java_2.8-1_all + libhtmlunit-java_2.8-1_all + libhtree-ruby1.8_0.7-5_all + libhtree-ruby1.9.1_0.7-5_all + libhttp-access2-ruby_2.2.4-2_all + libhttp-access2-ruby1.8_2.2.4-2_all + libhttp-async-perl_0.10-1_all + libhttp-body-perl_1.11-1+deb7u1_all + libhttp-browserdetect-perl_1.44-1_all + libhttp-cache-transparent-perl_1.0-2_all + libhttp-cookies-perl_6.00-2_all + libhttp-daemon-perl_6.01-1_all + libhttp-daemon-ssl-perl_1.04-3_all + libhttp-date-perl_6.02-1_all + libhttp-dav-perl_0.38-1_all + libhttp-exception-perl_0.04001-1_all + libhttp-link-parser-perl_0.103-1_all + libhttp-lite-perl_2.3-1_all + libhttp-lrdd-perl_0.105-1_all + libhttp-message-perl_6.03-1_all + libhttp-negotiate-perl_6.00-2_all + libhttp-oai-perl_3.27-1_all + libhttp-parser-perl_0.06-1_all + libhttp-proxy-perl_0.25-1_all + libhttp-recorder-perl_0.06-1_all + libhttp-request-ascgi-perl_1.2-2_all + libhttp-request-params-perl_1.01-6_all + libhttp-response-encoding-perl_0.05-2_all + libhttp-server-simple-authen-perl_0.04-1_all + libhttp-server-simple-mason-perl_0.14-1_all + libhttp-server-simple-perl_0.44-1_all + libhttp-server-simple-psgi-perl_0.14-1_all + libhttp-server-simple-recorder-perl_0.03-1_all + libhttp-server-simple-static-perl_0.07-2_all + libhttp-tiny-perl_0.022-1_all + libhttpclient-java_4.1.1-2_all + libhttpclient-ruby_2.2.4-2_all + libhttpclient-ruby1.8_2.2.4-2_all + libhttpclient-ruby1.9.1_2.2.4-2_all + libhttpcore-java_4.1.4-2.1_all + libhttpmime-java_4.1.1-2_all + libhttpunit-java_1.7+dfsg-9_all + libhttpunit-java-doc_1.7+dfsg-9_all + libhwloc-common_1.4.1-4_all + libhwloc-doc_1.4.1-4_all + libhx-doc_3.12.1-1_all + libhyena-cil_0.5-2_all + libhyena-cil-dev_0.5-2_all + libhypre-dev_2.8.0b-1_all + libi18n-acceptlanguage-perl_1.04-2_all + libi18n-charset-perl_1.401-1_all + libi18n-ruby_0.6.0-3+deb7u1_all + libi18n-ruby1.8_0.6.0-3+deb7u1_all + libi18n-ruby1.9.1_0.6.0-3+deb7u1_all + libi2c-dev_3.1.0-2_all + libibatis-java_2.3.4.726-3_all + libical-parser-html-perl_1.07-1_all + libical-parser-perl_1.16-1_all + libical-parser-sax-perl_1.09-2_all + libice-doc_2:1.0.8-2_all + libicee-java_1.2.0-3_all + libicon-famfamfam-silk-perl_0.002001003-1_all + libics-doc_1.5.2-3_all + libicu4j-4.4-java_4.4.2.2-1_all + libicu4j-java_4.2.1.1-1_all + libid3-doc_3.8.3-15_all + libidm-console-framework-java_1.1.7-1_all + libidn11-java_1.25-2_all + libidna-punycode-perl_0.03-1_all + libihelp-ruby_0.4.5-3_all + libihelp-ruby1.8_0.4.5-3_all + libima-dbi-perl_0.35-1_all + libimage-base-bundle-perl_1.0.7-3_all + libimage-exiftool-perl_8.60-2_all + libimage-info-perl_1.28-1_all + libimage-math-constrain-perl_1.02-1_all + libimage-metadata-jpeg-perl_0.153-1_all + libimage-science-ruby_1.2.2-1.1_all + libimage-science-ruby-doc_1.2.2-1.1_all + libimage-science-ruby1.8_1.2.2-1.1_all + libimage-size-perl_3.232-1_all + libimage-size-ruby1.8_1:0.1.1-5_all + libimage-size-ruby1.9.1_1:0.1.1-5_all + libimap-admin-perl_1.6.7-1_all + libimobiledevice-doc_1.1.1-4_all + libimvirt-perl_0.9.4-4_all + libindi-data_0.9.1-2_all + libindicate-doc_0.6.92-1_all + libindicate-gtk0.1-cil_0.6.92-1_all + libindicate-gtk0.1-cil-dev_0.6.92-1_all + libindicate0.1-cil_0.6.92-1_all + libindicate0.1-cil-dev_0.6.92-1_all + libindigo-java_1.0.0-2_all + libinfinity-0.5-doc_0.5.2-6.1_all + libini4j-java_0.5.2-SNAPSHOT-2_all + libini4j-java-doc_0.5.2-SNAPSHOT-2_all + libinline-files-perl_0.68-1_all + libinline-perl_0.50-1_all + libinline-ruby_3.11.2-2_all + libinline-ruby1.8_3.11.2-2_all + libinnate-ruby_2012.03-2_all + libinnate-ruby1.8_2012.03-2_all + libinnate-ruby1.9.1_2012.03-2_all + libinotify-ruby_0.0.2-6_all + libinotify-ruby1.8_0.0.2-6_all + libinotify-ruby1.9.1_0.0.2-6_all + libinstpatch-doc_1.0.0-3_all + libintl-perl_1.20-1_all + libio-all-lwp-perl_0.14-1_all + libio-all-perl_0.44-1_all + libio-async-loop-epoll-perl_0.12-1_all + libio-async-loop-glib-perl_0.20-3_all + libio-async-perl_0.51-4_all + libio-bufferedselect-perl_1.0-1_all + libio-capture-perl_0.05-2_all + libio-captureoutput-perl_1.1102-1_all + libio-compress-perl_2.052-1_all + libio-digest-perl_0.10-1.1_all + libio-file-withpath-perl_0.08-1_all + libio-handle-util-perl_0.01-1_all + libio-html-perl_0.04-1_all + libio-interactive-perl_0.0.6-1_all + libio-lcdproc-perl_0.037-1_all + libio-lockedfile-perl_0.23+d030220-3_all + libio-multiplex-perl_1.13-1_all + libio-prompt-perl_0.997001-1+deb7u1_all + libio-prompter-perl_0.003000-1_all + libio-pty-easy-perl_0.09-1_all + libio-socket-inet6-perl_2.69-2_all + libio-socket-ip-perl_0.16-2_all + libio-socket-multicast6-perl_0.03-2_all + libio-socket-socks-perl_0.62-1_all + libio-socket-ssl-perl_1.76-2_all + libio-string-perl_1.08-2_all + libio-stringy-perl_2.110-5_all + libio-stty-perl_0.03-1_all + libio-tee-perl_0.64-2_all + libio-tiecombine-perl_1.002-1_all + libipc-pubsub-perl_0.29-1_all + libipc-run-perl_0.92-1_all + libipc-run-safehandles-perl_0.02-1_all + libipc-run3-perl_0.045-1_all + libipc-shareable-perl_0.60-8_all + libipc-sharedcache-perl_1.3-8_all + libipc-signal-perl_1.00-6_all + libipc-system-simple-perl_1.21-1_all + libiptables-chainmgr-perl_1.2-1_all + libiptables-parse-perl_1.1-1_all + libiptcdata-doc_1.0.4-3_all + libirc-formatting-html-perl_0.29-1_all + libirc-utils-perl_0.12-1_all + libirclib-java_1.10-2_all + libirclib-java-doc_1.10-2_all + libirrlicht-doc_1.7.3+dfsg1-4_all + libiscwt-java_5.3.20100629-2_all + libiscwt-java-doc_5.3.20100629-2_all + libisfreetype-java_5.3.20100629-3_all + libisfreetype-java-doc_5.3.20100629-3_all + libisnativec-java_5.3.20100629+fix-1_all + libisnativec-java-doc_5.3.20100629+fix-1_all + libisoburn-doc_1.2.2-2_all + libisofs-doc_1.2.2-1_all + libisorelax-java_20041111-6_all + libisorelax-java-doc_20041111-6_all + libisrt-java_4.8.20100629-2_all + libisrt-java-doc_4.8.20100629-2_all + libitext-java_2.1.7-3+deb7u1_all + libitext-rtf-java_2.1.7-3+deb7u1_all + libitext-rups-java_2.1.7-3+deb7u1_all + libitext1-java_1.4-5_all + libitext5-java_5.0.6+svn4804-1_all + libitext5-java-doc_5.0.6+svn4804-1_all + libitpp-doc_4.2-4_all + libj2ssh-java_0.2.9-3_all + libj2ssh-java-doc_0.2.9-3_all + libjaba-client-java_0+dfsg-1_all + libjackrabbit-java_2.3.6-1_all + libjackson-json-java_1.9.2-1_all + libjackson-json-java-doc_1.9.2-1_all + libjaffl-java_0.5.4-1.1_all + libjakarta-ecs-java_1.4.2-2_all + libjakarta-taglibs-standard-java_1.1.2-2_all + libjam-java_0.0.r297-1_all + libjam-java-doc_0.0.r297-1_all + libjama-dev_1.2.4-2_all + libjama-java_1.0.2-4_all + libjama-java-doc_1.0.2-4_all + libjamon-java_2.7-3_all + libjana-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-2_all + libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-2_all + libjansi-java_1.4-3_all + libjansi-native-java_1.0-3_all + libjansson-doc_2.3.1-2_all + libjargs-java_1.0.0-3_all + libjargs-java-doc_1.0.0-3_all + libjarjar-java_1.1-3_all + libjarjar-java-doc_1.1-3_all + libjarjar-maven-plugin-java_1.5-1_all + libjarjar-maven-plugin-java-doc_1.5-1_all + libjas-java_2.4.3938-2_all + libjas-plotter-java_2.2.6+dfsg1-2_all + libjasperreports-java_4.1.3+dfsg-1_all + libjasperreports-java-doc_4.1.3+dfsg-1_all + libjasperreports3.7-java_3.7.4+dfsg-2_all + libjasperreports3.7-java-doc_3.7.4+dfsg-2_all + libjasypt-java_1.8-1_all + libjasypt-java-doc_1.8-1_all + libjaudiotagger-java_2.0.3-1_all + libjava-gnome-java_4.1.1-4_all + libjava-gnome-java-doc_4.1.1-4_all + libjava-jdbc-clojure_0.2.2-1_all + libjava-xmlbuilder-java_0.4-2_all + libjava-xmlbuilder-java-doc_0.4-2_all + libjava3d-java_1.5.2+dfsg-8_all + libjava3d-java-doc_1.5.2+dfsg-8_all + libjavacc-maven-plugin-java_2.6-2_all + libjavascript-beautifier-perl_0.17-1_all + libjavascript-minifier-perl_1.05-1_all + libjavascript-packer-perl_1.006003-1_all + libjavascript-rpc-perl_0.10-1.1_all + libjavassist-java_1:3.12.1.ga-2_all + libjavassist-java-doc_1:3.12.1.ga-2_all + libjaxe-java_3.5-2_all + libjaxe-java-doc_3.5-2_all + libjaxen-java_1.1.3-1_all + libjaxen-java-doc_1.1.3-1_all + libjaxme-java_0.5.2+dfsg-6_all + libjaxme-java-doc_0.5.2+dfsg-6_all + libjaxp1.3-java_1.3.05-2_all + libjazzy-java_0.5.2-1_all + libjbcrypt-java_0.3-3_all + libjboss-aop-java_2.0.1.GA-3_all + libjboss-aspects-java_4.2.3.GA-7_all + libjboss-cache1-java_1.4.1.SP14-1_all + libjboss-cache2-java_2.2.2.GA+ds1-1_all + libjboss-cache3-java_3.2.8.GA-1_all + libjboss-classloader-java_2.0.6.GA-2_all + libjboss-cluster-java_4.2.3.GA-7_all + libjboss-common-java_0.0+svn2938-3_all + libjboss-connector-java_4.2.3.GA-7_all + libjboss-deployers-java_2.0.4.GA-2_all + libjboss-deployment-java_4.2.3.GA-7_all + libjboss-ejb3-java_4.2.3.GA-7_all + libjboss-ejb3x-java_4.2.3.GA-7_all + libjboss-integration-java_5.0.3.GA-2_all + libjboss-j2ee-java_4.2.3.GA-7_all + libjboss-jms-java_4.2.3.GA-7_all + libjboss-jmx-java_4.2.3.GA-7_all + libjboss-managed-java_2.0.0.CR4+dak1-2_all + libjboss-management-java_4.2.3.GA-7_all + libjboss-marshalling-java_1.1.3.GA-3_all + libjboss-messaging-java_4.2.3.GA-7_all + libjboss-metadata-java_2.0.3.GA-1_all + libjboss-microcontainer-java_2.0.10.GA-2_all + libjboss-naming-java_4.2.3.GA-7_all + libjboss-profiler-java_1.0.CR4-2_all + libjboss-reflect-java_2.0.3.GA-1_all + libjboss-remoting-java_2.5.3.SP1-1_all + libjboss-security-java_4.2.3.GA-7_all + libjboss-serialization-java_1.0.3.GA+dak1-3_all + libjboss-server-java_4.2.3.GA-7_all + libjboss-system-java_4.2.3.GA-7_all + libjboss-test-java_4.2.3.GA-7_all + libjboss-transaction-java_4.2.3.GA-7_all + libjboss-vfs-java_2.0.1.GA-2_all + libjboss-web-services-java_0.0+svn5660+dak2-3_all + libjboss-webservices-java_4.2.3.GA-7_all + libjboss-xml-binding-java_2.0.3.GA-2_all + libjbzip2-java_0.9.1-3_all + libjcalendar-java_1.3.3-3_all + libjcalendar-java-doc_1.3.3-3_all + libjcharts-java_0.7.5-3_all + libjcharts-java-doc_0.7.5-3_all + libjcifs-java_1.3.16-1_all + libjcifs-java-doc_1.3.16-1_all + libjcip-annotations-java_20060626-3_all + libjcip-annotations-java-doc_20060626-3_all + libjcm-java_1.0-1_all + libjcm-java-doc_1.0-1_all + libjcode-perl_2.13-2_all + libjcodings-java_1.0.4-1_all + libjcommander-java_1.26-1_all + libjcommander-java-doc_1.26-1_all + libjcommon-java_1.0.16-2_all + libjcommon-java-doc_1.0.16-2_all + libjcsp-java_1.1-rc4-1_all + libjcsp-java-doc_1.1-rc4-1_all + libjdbm-java_1.0-2_all + libjdepend-java_2.9-5_all + libjdo-api-java_2.2-1_all + libjdom1-java_1.1.2+dfsg-2_all + libjdom1-java-doc_1.1.2+dfsg-2_all + libje-perl_0.059-1_all + libjebl2-java_0.0.r6-1_all + libjebl2-java-doc_0.0.r6-1_all + libjellydoc-java_1.5-2_all + libjellydoc-java-doc_1.5-2_all + libjemmy2-java_2.3.1.1-2_all + libjemmy2-java-doc_2.3.1.1-2_all + libjempbox-java_1:1.7.0+dfsg-4_all + libjempbox-java-doc_1:1.7.0+dfsg-4_all + libjena-iri-java_0.8-1_all + libjenkins-commons-jelly-java_1.1-jenkins-20110627-3_all + libjenkins-commons-jelly-java-doc_1.1-jenkins-20110627-3_all + libjenkins-commons-jexl-java_1.1-jenkins-20111212-1_all + libjenkins-commons-jexl-java-doc_1.1-jenkins-20111212-1_all + libjenkins-dom4j-java_1.6.1-hudson-3-1_all + libjenkins-dom4j-java-doc_1.6.1-hudson-3-1_all + libjenkins-htmlunit-core-js-java_2.6-hudson-1-1_all + libjenkins-htmlunit-java_2.6-jenkins-6-1_all + libjenkins-htmlunit-java-doc_2.6-jenkins-6-1_all + libjenkins-json-java_2.1-rev7-2_all + libjenkins-json-java-doc_2.1-rev7-2_all + libjenkins-remoting-java_2.11+dfsg-1_all + libjenkins-remoting-java-doc_2.11+dfsg-1_all + libjenkins-trilead-ssh2-java_212-hudson-6+dfsg-1_all + libjenkins-trilead-ssh2-java-doc_212-hudson-6+dfsg-1_all + libjenkins-winstone-java_0.9.10-jenkins-37+dfsg-2_all + libjenkins-winstone-java-doc_0.9.10-jenkins-37+dfsg-2_all + libjenkins-xstream-java_1.3.1-jenkins-9-3_all + libjenkins-xstream-java-doc_1.3.1-jenkins-9-3_all + libjericho-html-java_3.1-2_all + libjericho-html-java-doc_3.1-2_all + libjets3t-java_0.8.1+dfsg-1_all + libjets3t-java-doc_0.8.1+dfsg-1_all + libjettison-java_1.2-3_all + libjetty-extra-java_6.1.26-1_all + libjetty-java_6.1.26-1_all + libjetty-java-doc_6.1.26-1_all + libjetty8-extra-java_8.1.3-4_all + libjetty8-java_8.1.3-4_all + libjetty8-java-doc_8.1.3-4_all + libjeuclid-core-java_3.1.9-2_all + libjeuclid-fop-java_3.1.9-2_all + libjexcelapi-java_2.6.12-2_all + libjexcelapi-java-doc_2.6.12-2_all + libjffi-java_1.0.2-9_all + libjfreechart-java_1.0.13-4_all + libjfreechart-java-doc_1.0.13-4_all + libjfugue-java_4.0.3-3_all + libjgit-java_2.0.0-2_all + libjgit-java-doc_2.0.0-2_all + libjgoodies-animation-java_1.2.0-5_all + libjgoodies-binding-java_2.1.0-1_all + libjgoodies-common-java_1.3.0-2_all + libjgoodies-common-java-doc_1.3.0-2_all + libjgoodies-forms-java_1.3.0-2_all + libjgoodies-forms-java-doc_1.3.0-2_all + libjgoodies-looks-java_2.5.0-2_all + libjgoodies-looks-java-doc_2.5.0-2_all + libjgraph-java_5.12.4.2+dfsg-2_all + libjgraph-java-doc_5.12.4.2+dfsg-2_all + libjgrapht0.6-java_0.6.0-11_all + libjgrapht0.6-java-doc_0.6.0-11_all + libjgrapht0.8-java_0.8.3-1_all + libjgrapht0.8-java-doc_0.8.3-1_all + libjgraphx-java_1.4.1.0-3_all + libjgraphx-java-doc_1.4.1.0-3_all + libjgromacs-java_1.0-1_all + libjgromacs-java-doc_1.0-1_all + libjgroups-java_2.12.2.Final-2_all + libjgroups2.6-java_2.6.15.GA-2_all + libjhdf-doc_2.8.0-5_all + libjhlabs-filters-java_2.0.235-3_all + libjibx-java_1.2.3-2_all + libjibx1.1-java_1.1.6a-3_all + libjibx1.1-java-doc_1.1.6a-3_all + libjibx1.2-java_1.2.3-2_all + libjibx1.2-java-doc_1.2.3-2_all + libjifty-dbi-perl_0.74-1_all + libjifty-perl_1.10518+dfsg-2_all + libjifty-plugin-authentication-bitcard-perl_0.053-1_all + libjifty-plugin-authentication-cas-perl_1.00-1_all + libjifty-plugin-authentication-facebook-perl_0.90000-1_all + libjifty-plugin-authentication-ldap-perl_1.01-1_all + libjifty-plugin-authzldap-perl_0.90000-1_all + libjifty-plugin-chart-perl_1.01+dfsg-2_all + libjifty-plugin-comment-perl_1.00-2_all + libjifty-plugin-googlemap-perl_1.00-1_all + libjifty-plugin-oauth-perl_0.04-2_all + libjifty-plugin-openid-perl_1.02-1_all + libjifty-plugin-sitenews-perl_0.90000-1_all + libjifty-plugin-userpic-perl_0.90000-1_all + libjifty-plugin-wikitoolbar-perl_1.00-2_all + libjing-java_20091111-5_all + libjinput-java_20100502+dfsg-7_all + libjinput-java-doc_20100502+dfsg-7_all + libjira-client-perl_0.37-1_all + libjiu-java_0.14.2+3-4_all + libjiu-java-doc_0.14.2+3-4_all + libjlatexmath-fop-java_0.9.7-1_all + libjlatexmath-java_0.9.7-1_all + libjlatexmath-java-doc_0.9.7-1_all + libjlayer-java_1.0.1-2_all + libjlayer-java-doc_1.0.1-2_all + libjlha-java_0.0.20050504-8_all + libjlha-java-doc-ja_0.0.20050504-8_all + libjlibeps-java_0.1+2-2_all + libjlibeps-java-doc_0.1+2-2_all + libjline-java_1.0-2_all + libjline-java-doc_1.0-2_all + libjmac-java_1.74-6_all + libjmagick6-java_6.2.6-0-8_all + libjmdns-java_3.4.1-2_all + libjmdns-java-doc_3.4.1-2_all + libjmock-java_1.2.0-1_all + libjmock-java-doc_1.2.0-1_all + libjmock2-java_2.5.1+dfsg-2_all + libjmock2-java-doc_2.5.1+dfsg-2_all + libjmol-java_12.2.32+dfsg2-1_all + libjmol-java-doc_12.2.32+dfsg2-1_all + libjna-java-doc_3.2.7-4_all + libjna-posix-java_1.0.1-1_all + libjna-posix-java-doc_1.0.1-1_all + libjnr-netdb-java_1.0.3-2_all + libjnr-netdb-java-doc_1.0.3-2_all + libjnr-posix-java_1.1.4~git1.8aa26268b-1_all + libjnr-posix-java-doc_1.1.4~git1.8aa26268b-1_all + libjnr-x86asm-java_0.1-1_all + libjoda-convert-java_1.2-2_all + libjoda-convert-java-doc_1.2-2_all + libjoda-time-java_2.1-2_all + libjoda-time-java-doc_2.1-2_all + libjodconverter-java_2.2.2-7_all + libjodconverter-java-doc_2.2.2-7_all + libjodreports-java_2.4.0-3_all + libjodreports-java-doc_2.4.0-3_all + libjogl-java_1.1.1+dak1-12_all + libjogl-java-doc_1.1.1+dak1-12_all + libjogl2-java_2.0-rc5-2_all + libjogl2-java-doc_2.0-rc5-2_all + libjogl2-toolkits_2.0-rc5-2_all + libjoptsimple-java_3.1-4_all + libjoptsimple-java-doc_3.1-4_all + libjorbis-java_0.0.17-2_all + libjortho-freeplane-java_1.1.3-2_all + libjosql-java_2.2-1_all + libjosql-java-doc_2.2-1_all + libjpedal-jbig2-java_20100117-1_all + libjpf-java_1.5.1+dfsg-4_all + libjpfcodegen-java_0.4+dfsg-4_all + libjrosetta-java_1.0.4-4_all + libjruby-joni-java_1.1.4-2_all + libjs-asciimathml_2.0.2-1_all + libjs-backbone_0.5.3-2+deb7u1_all + libjs-codemirror_2.23-1_all + libjs-cropper_1.2.2-1_all + libjs-debugger_0.5-4_all + libjs-dojo-core_1.7.2+dfsg-1_all + libjs-dojo-dijit_1.7.2+dfsg-1_all + libjs-dojo-dojox_1.7.2+dfsg-1_all + libjs-edit-area_0.8.2-1_all + libjs-excanvas_0.r3-3_all + libjs-extjs_3.0.3+dfsg0-1_all + libjs-extjs-doc_3.0.3+dfsg0-1_all + libjs-flot_0.7+dfsg-2_all + libjs-flotr_0.2.1~r301-1_all + libjs-gordon_0~git20101011-2_all + libjs-jac_1.3.4+dfsg-1_all + libjs-jquery_1.7.2+dfsg-1_all + libjs-jquery-cookie_6-1_all + libjs-jquery-countdown_6-1_all + libjs-jquery-easing_6-1_all + libjs-jquery-event-drag_6-1_all + libjs-jquery-event-drop_6-1_all + libjs-jquery-fancybox_6-1_all + libjs-jquery-form_6-1_all + libjs-jquery-galleriffic_6-1_all + libjs-jquery-history_6-1_all + libjs-jquery-jfeed_6-1_all + libjs-jquery-jplayer_2.1.0-2_all + libjs-jquery-jush_6-1_all + libjs-jquery-livequery_6-1_all + libjs-jquery-meiomask_6-1_all + libjs-jquery-metadata_6-1_all + libjs-jquery-mobile_1.1.0-3_all + libjs-jquery-mobile-docs_1.1.0-3_all + libjs-jquery-mousewheel_6-1_all + libjs-jquery-opacityrollover_6-1_all + libjs-jquery-tablesorter_6-1_all + libjs-jquery-tipsy_6-1_all + libjs-jquery-treetable_6-1_all + libjs-jquery-ui_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-docs_1.8.ooops.21+dfsg-2_all + libjs-jquery-ui-theme-base_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-black-tie_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-blitzer_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-cupertino_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dark-hive_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-dot-luv_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-eggplant_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-excite-bike_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-flick_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-hot-sneaks_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-humanity_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-le-frog_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-mint-choc_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-overcast_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-pepper-grinder_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-redmond_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-smoothness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-south-street_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-start_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-sunny_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-swanky-purse_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-trontastic_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-darkness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-ui-lightness_1.8.21+dfsg-1_all + libjs-jquery-ui-theme-vader_1.8.21+dfsg-1_all + libjs-jshash_2.2-3_all + libjs-mathjax_1.1-2_all + libjs-mochikit_1.4.2-4_all + libjs-mootools_1.4.5~debian1-2.1_all + libjs-obrowser_1.1.1+dfsg-1_all + libjs-of-ocaml-doc_1.2-2_all + libjs-openlayers_2.11+ds1-1_all + libjs-openlayers-doc_2.11+ds1-1_all + libjs-protoaculous_4_all + libjs-prototype_1.7.0-2_all + libjs-scriptaculous_1.9.0-2_all + libjs-simile-timeline_2.3.0+dfsg-0.1_all + libjs-slimbox_2.04-1_all + libjs-sphinxdoc_1.1.3+dfsg-4_all + libjs-strophe_1.0.1.dfsg-2_all + libjs-swfobject_2.2+dfsg-1_all + libjs-swfupload_2.2.0.1+ds1-2_all + libjs-underscore_1.1.6-1+deb7u1_all + libjs-xmlextras_20060529-1_all + libjs-yui_2.9.0.dfsg.0.1-0.1_all + libjs-yui-doc_2.9.0.dfsg.0.1-0.1_all + libjs-yui3-common_3.5.1-1_all + libjs-yui3-debug_3.5.1-1_all + libjs-yui3-doc_3.5.1-1_all + libjs-yui3-full_3.5.1-1_all + libjs-yui3-min_3.5.1-1_all + libjsch-java_0.1.42-2_all + libjsch-java-doc_0.1.42-2_all + libjsf-api-java_2.0.3-2_all + libjsf-impl-java_2.0.3-2_all + libjsf-java-doc_2.0.3-2_all + libjsilver-java_1.0.0.dfsg-1_all + libjson-any-perl_1.28-1_all + libjson-glib-doc_0.14.2-1_all + libjson-java_2.3-2_all + libjson-perl_2.53-1_all + libjson-pp-perl_2.27200-2_all + libjson-rpc-perl_0.96-3_all + libjson-ruby_1.7.3-3_all + libjson-ruby-doc_1.7.3-3_all + libjson-ruby1.8_1.7.3-3_all + libjson-simple-doc_1.1-dfsg1-1_all + libjson-simple-java_1.1-dfsg1-1_all + libjsoup-java_1.6.2-1_all + libjsoup-java-doc_1.6.2-1_all + libjspeex-java_0.9.7-3_all + libjsr107cache-java_1.0.dfsg.1-4_all + libjsr166y-java_0.1.20080107-2_all + libjsr305-java_0.1~+svn49-4_all + libjsr305-java-doc_0.1~+svn49-4_all + libjsr311-api-java_1.1.1-1_all + libjsr311-api-java-doc_1.1.1-1_all + libjstl1.1-java_1.1.2-2_all + libjswingreader-java_0.3-1_all + libjsyntaxpane-java_0.9.5~r148-2_all + libjsyntaxpane-java-doc_0.9.5~r148-2_all + libjtds-java_1.2.5+dfsg-2_all + libjtharness-java_4.4.0-MR1-Rel-b19-1_all + libjtharness-java-doc_4.4.0-MR1-Rel-b19-1_all + libjthread-doc_1.3.1-3_all + libjtidy-java_7+svn20110807-4_all + libjtidy-java-doc_7+svn20110807-4_all + libjts-java_1.11-1_all + libjts-java-doc_1.11-1_all + libjtype-java_0.1.1-1_all + libjug-java_2.0.0-2_all + libjug-java-doc_2.0.0-2_all + libjunitperf-java_1.9.1-8_all + libjunitperf-java-doc_1.9.1-8_all + libjutils-java_20100502+dfsg-2_all + libjutils-java-doc_20100502+dfsg-2_all + libjvyamlb-java_0.2.5-2_all + libjxgrabkey-doc_0.3.2-6_all + libjxgrabkey-java_0.3.2-6_all + libjxp-java_1.6.1-3_all + libjzlib-java_1.1.0-1_all + libkakasi-ruby1.8_2002.09.28-3_all + libkarma-cil_0.1.2-2.3_all + libkarma-cil-dev_0.1.2-2.3_all + libkdcraw-data_4:4.8.4-1_all + libkde4-ruby_4:4.8.4-1_all + libkde4-ruby1.8_4:4.8.4-1_all + libkdeedu-data_4:4.8.4-1_all + libkdtree++-dev_0.7.0-2_all + libkexiv2-data_4:4.8.4-1_all + libkiokudb-backend-dbi-perl_1.21-1_all + libkiokudb-perl_0.52-1_all + libkipi-data_4:4.8.4-1_all + libknopflerfish-osgi-framework-java_2.3.3-2_all + libknopflerfish-osgi-java-doc_2.3.3-2_all + libkohana-php_3.1.4-2_all + libkohana2-modules-php_2.3.4-2_all + libkohana2-php_2.3.4-2_all + libkohana3.1-core-php_3.1.4-2_all + libkohana3.1-mod-auth-php_3.1.4-2_all + libkohana3.1-mod-cache-php_3.1.4-2_all + libkohana3.1-mod-codebench-php_3.1.4-2_all + libkohana3.1-mod-database-php_3.1.4-2_all + libkohana3.1-mod-image-php_3.1.4-2_all + libkohana3.1-mod-orm-php_3.1.4-2_all + libkohana3.1-mod-unittest-php_3.1.4-2_all + libkohana3.1-mod-userguide-php_3.1.4-2_all + libkohana3.1-php_3.1.4-2_all + libkohana3.2-core-php_3.2.0-2_all + libkohana3.2-mod-auth-php_3.2.0-2_all + libkohana3.2-mod-cache-php_3.2.0-2_all + libkohana3.2-mod-codebench-php_3.2.0-2_all + libkohana3.2-mod-database-php_3.2.0-2_all + libkohana3.2-mod-image-php_3.2.0-2_all + libkohana3.2-mod-orm-php_3.2.0-2_all + libkohana3.2-mod-unittest-php_3.2.0-2_all + libkohana3.2-mod-userguide-php_3.2.0-2_all + libkohana3.2-php_3.2.0-2_all + libkonq5-templates_4:4.8.4-2_all + libkrb5-ruby_0.7-4_all + libkrb5-ruby-doc_0.7-4_all + libkrb5-ruby1.8_0.7-4_all + libkrb5-ruby1.9.1_0.7-4_all + libksane-data_4:4.8.4-1_all + libktorrent-l10n_1.2.1-1_all + libkvutils2.2-dev_2.9.0-1_all + libkwargs-perl_0.01-1_all + libkwiki-cache-perl_0.11-2_all + libkwiki-perl_0.39-2_all + libkxml2-java_2.3.0+ds1-2_all + libkxml2-java-doc_2.3.0+ds1-2_all + liblablgtk-extras-ocaml-doc_1.0-1_all + liblablgtk2-ocaml-doc_2.14.2+dfsg-3_all + liblaf-plugin-java_1.0-2_all + liblaf-widget-java_4.3-2_all + liblaf-widget-java-doc_4.3-2_all + liblapack-doc_3.4.1+dfsg-1+deb70u1_all + liblapack-doc-man_3.4.1+dfsg-1+deb70u1_all + liblapack3gf_3.4.1+dfsg-1+deb70u1_all + liblash-compat-dev_1+dfsg0-3_all + liblastfm-java_1:0.1.0-2_all + liblatex-decode-perl_0.03-1_all + liblatex-driver-perl_0.10-1_all + liblatex-encode-perl_0.03-1_all + liblatex-table-perl_1.0.6-1_all + liblatex-tom-perl_1.00-1_all + liblayout-java_0.2.10-2_all + liblayout-java-doc_0.2.10-2_all + liblayout-manager-perl_0.34-1_all + libldap-java_4.18-5_all + libldap-ruby1.8_0.9.12-2_all + liblein-clojars-clojure_0.8.0-1_all + liblemonldap-ng-conf-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-handler-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-manager-perl_1.1.2-5+deb7u1_all + liblemonldap-ng-portal-perl_1.1.2-5+deb7u1_all + liblensfun-data_0.2.5-2_all + liblensfun-doc_0.2.5-2_all + liblexical-persistence-perl_0.98-1_all + liblib-abs-perl_0.92-3_all + liblibrary-callnumber-lc-perl_0.22-1_all + liblicense-icons_0.8.1-3_all + liblicense-rdf_0.8.1-3_all + liblinebreak2-doc_2.1-1_all + liblingua-de-ascii-perl_0.11-1_all + liblingua-en-inflect-number-perl_1.1-5_all + liblingua-en-inflect-perl_1.894-1_all + liblingua-en-inflect-phrase-perl_0.12-1_all + liblingua-en-namecase-perl_1.15-1_all + liblingua-en-nameparse-perl_1.30-1_all + liblingua-en-numbers-ordinate-perl_1.02-3_all + liblingua-en-tagger-perl_0.18-1_all + liblingua-en-words2nums-perl_0.18_all + liblingua-es-numeros-perl_0.09-1_all + liblingua-ga-gramadoir-perl_0.6-4.1_all + liblingua-identify-perl_0.51-1_all + liblingua-ispell-perl_0.07-5_all + liblingua-preferred-perl_0.2.4-3_all + liblingua-pt-stemmer-perl_0.01-3_all + liblingua-stem-perl_0.84-1_all + liblingua-stem-snowball-da-perl_1.01-4_all + liblingua-stopwords-perl_0.09-1_all + liblinux-distribution-packages-perl_0.05-2_all + liblinux-distribution-perl_0.21-1_all + liblinux-kernelsort-perl_0.01-2_all + liblinux-lvm-perl_0.16-1_all + liblinux-usermod-perl_0.69-1_all + liblist-allutils-perl_0.03-1_all + liblist-compare-perl_0.37-2_all + liblist-maker-perl_0.0.5-1_all + liblist-utilsby-perl_0.09-1_all + liblivejournal-perl_1.3-5_all + liblivetribe-jsr223-java_2.0.6-1_all + libload-perl_0.23-1_all + libloader-java_1.1.6.dfsg-4_all + libloader-java-doc_1.1.6.dfsg-4_all + liblocal-lib-perl_1.008004-2_all + liblocale-currency-format-perl_1.30-1_all + liblocale-maketext-fuzzy-perl_0.11-1_all + liblocale-maketext-gettext-perl_1.28-1_all + liblocale-maketext-lexicon-perl_0.91-1_all + liblocale-msgfmt-perl_0.15-1_all + liblocale-po-perl_0.21-1_all + liblocale-rails-ruby_2.0.5-6_all + liblocale-rails-ruby1.8_2.0.5-6_all + liblocale-ruby_2.0.5-6_all + liblocale-ruby1.8_2.0.5-6_all + liblocale-ruby1.9.1_2.0.5-6_all + liblocale-subcountry-perl_1.50-1_all + liblocale-us-perl_2.112150-1_all + liblocales-perl_0.26-1_all + liblocalizer-java_1.13-2_all + liblocalizer-java-doc_1.13-2_all + liblockfile-ruby_2.1.0-2_all + liblockfile-simple-perl_0.208-1_all + liblog-agent-logger-perl_0.1.1-6_all + liblog-agent-perl_0.307-2_all + liblog-agent-rotate-perl_0.104-2_all + liblog-any-adapter-dispatch-perl_0.06-1_all + liblog-any-adapter-perl_0.07-1_all + liblog-any-perl_0.11-1_all + liblog-contextual-perl_0.00304-1_all + liblog-dispatch-array-perl_1.001-1_all + liblog-dispatch-config-perl_1.04-1_all + liblog-dispatch-configurator-any-perl_1.110690-1_all + liblog-dispatch-filerotate-perl_1.19-1_all + liblog-dispatch-perl_2.32-1_all + liblog-dispatchouli-perl_2.005-1_all + liblog-handler-perl_0.75-2_all + liblog-log4perl-perl_1.29-1_all + liblog-loglite-perl_0.82-7_all + liblog-report-perl_0.94-1_all + liblog-trace-perl_1.070-2_all + liblog-tracemessages-perl_1.4-2_all + liblog4ada-doc_1.2-3_all + liblog4c-doc_1.2.1-3_all + liblog4cpp-doc_1.0-1_all + liblog4cxx10-doc_0.10.0-1.2_all + liblog4j1.2-java_1.2.16-3_all + liblog4j1.2-java-doc_1.2.16-3_all + liblog4net-cil-dev_1.2.10+dfsg-6_all + liblog4net1.2-cil_1.2.10+dfsg-6_all + liblog4r-ruby_1.1.10-2_all + liblog4r-ruby1.8_1.1.10-2_all + liblog4shib-doc_1.0.4-1_all + liblog4tango4-doc_7.2.6+dfsg-14_all + liblogback-java_1:1.0.4-1_all + liblogback-java-doc_1:1.0.4-1_all + liblogfile-rotate-perl_1.04-4_all + liblogger-syslog-perl_1.1-3_all + libloki-doc_0.1.7-3_all + liblouis-data_2.4.1-1_all + liblouisutdml-data_2.2.0-1_all + liblouisutdml-java_2.2.0-1_all + liblouisutdml-java-doc_2.2.0-1_all + liblouisxml-data_2.4.0-3_all + liblowpan-dev_0.2.2-2.1_all + liblscp-doc_0.5.6-6_all + libltcsmpte-doc_0.4.4-1_all + liblua5.1-apr-dev_0.23.2-1_all + liblua5.1-apr1_0.23.2-1_all + liblua5.1-bitop-dev_1.0.2-1_all + liblua5.1-bitop0_1.0.2-1_all + liblua5.1-cgi-dev_5.1.4+dfsg-2_all + liblua5.1-cgi0_5.1.4+dfsg-2_all + liblua5.1-copas-dev_1.1.6-5_all + liblua5.1-copas0_1.1.6-5_all + liblua5.1-cosmo0_10.04.06-4_all + liblua5.1-coxpcall0_1.13.0-6_all + liblua5.1-curl-dev_0.3.0-7_all + liblua5.1-curl0_0.3.0-7_all + liblua5.1-cyrussasl-dev_1.0.0-4_all + liblua5.1-cyrussasl0_1.0.0-4_all + liblua5.1-doc0_3.0.1-5_all + liblua5.1-event-dev_0.4.1-2_all + liblua5.1-event0_0.4.1-2_all + liblua5.1-expat-dev_1.2.0-5_all + liblua5.1-expat0_1.2.0-5_all + liblua5.1-filesystem-dev_1.5.0+16+g84f1af5-1_all + liblua5.1-filesystem0_1.5.0+16+g84f1af5-1_all + liblua5.1-iconv0_7-1_all + liblua5.1-json_1.3-1_all + liblua5.1-leg-dev_0.1.2-8_all + liblua5.1-leg0_0.1.2-8_all + liblua5.1-logging_1.2.0-1_all + liblua5.1-logging-dev_1.2.0-1_all + liblua5.1-lpeg-dev_0.10.2-5_all + liblua5.1-lpeg2_0.10.2-5_all + liblua5.1-markdown0_0.32-4_all + liblua5.1-md5-0_1.1.2-6_all + liblua5.1-md5-dev_1.1.2-6_all + liblua5.1-orbit-dev_2.2.0+dfsg1-1_all + liblua5.1-orbit1_2.2.0+dfsg1-1_all + liblua5.1-posix-dev_5.1.19-2_all + liblua5.1-posix1_5.1.19-2_all + liblua5.1-rex-onig-dev_2.6.0-2_all + liblua5.1-rex-onig0_2.6.0-2_all + liblua5.1-rex-pcre-dev_2.6.0-2_all + liblua5.1-rex-pcre0_2.6.0-2_all + liblua5.1-rex-posix-dev_2.6.0-2_all + liblua5.1-rex-posix0_2.6.0-2_all + liblua5.1-rings-dev_1.2.3-1_all + liblua5.1-rings0_1.2.3-1_all + liblua5.1-sec-dev_0.4.1-1_all + liblua5.1-sec1_0.4.1-1_all + liblua5.1-soap-dev_3.0-3_all + liblua5.1-soap0_3.0-3_all + liblua5.1-socket-dev_2.0.2-8_all + liblua5.1-socket2_2.0.2-8_all + liblua5.1-sql-mysql-2_2.3.0-1+build0_all + liblua5.1-sql-mysql-dev_2.3.0-1+build0_all + liblua5.1-sql-postgres-2_2.3.0-1+build0_all + liblua5.1-sql-postgres-dev_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-2_2.3.0-1+build0_all + liblua5.1-sql-sqlite3-dev_2.3.0-1+build0_all + liblua5.1-svn-dev_0.4.0-7_all + liblua5.1-svn1_0.4.0-7_all + liblua5.1-wsapi-fcgi-1_1.5-3_all + liblua5.1-wsapi-fcgi-dev_1.5-3_all + liblua5.1-wsapi1_1.5-3_all + liblua5.1-xmlrpc-dev_1.2.1-5_all + liblua5.1-xmlrpc0_1.2.1-5_all + liblua5.1-zip-dev_1.2.3-11_all + liblua5.1-zip0_1.2.3-11_all + libluabind-doc_0.9.1+dfsg-5_all + libluabind-examples_0.9.1+dfsg-5_all + libluabridge-ruby_0.7.0-1.1_all + liblucene-queryparser-perl_1.04-2_all + liblucene2-java_2.9.4+ds1-4_all + liblucene2-java-doc_2.9.4+ds1-4_all + liblucene3-contrib-java_3.6.0+dfsg-1_all + liblucene3-java_3.6.0+dfsg-1_all + liblucene3-java-doc_3.6.0+dfsg-1_all + liblunar-1-doc_2.0.1-2.2_all + liblunar-date-doc_2.4.0-1_all + liblwjgl-java_2.7.1+dfsg-3_all + liblwjgl-java-doc_2.7.1+dfsg-3_all + liblwp-authen-negotiate-perl_0.08-1_all + liblwp-authen-oauth-perl_1.01-1_all + liblwp-authen-wsse-perl_0.05-2_all + liblwp-mediatypes-perl_6.02-1_all + liblwp-online-perl_1.08-1_all + liblwp-protocol-http-socketunix-perl_0.02-2_all + liblwp-protocol-https-perl_6.03-1_all + liblwp-protocol-psgi-perl_0.02-1_all + liblwp-protocol-socks-perl_1.6-1_all + liblwp-useragent-determined-perl_1.06-1_all + liblwpx-paranoidagent-perl_1.07-1_all + liblwt-ocaml-doc_2.3.2-1_all + liblzma-doc_5.1.1alpha+20120614-2_all + libmac-widgets-doc_0.9.5+svn369-dfsg1-3_all + libmac-widgets-java_0.9.5+svn369-dfsg1-3_all + libmagics++-data_2.14.11-4_all + libmail-box-perl_2.105-1_all + libmail-bulkmail-perl_3.12-4_all + libmail-checkuser-perl_1.21-2_all + libmail-deliverystatus-bounceparser-perl_1.531-1_all + libmail-dkim-perl_0.39-1_all + libmail-field-received-perl_0.26-1_all + libmail-gnupg-perl_0.17-2_all + libmail-imapclient-perl_3.31-2_all + libmail-imaptalk-perl_2.01-1_all + libmail-listdetector-perl_1.03+dfsg-1_all + libmail-mbox-messageparser-perl_1.5002-2_all + libmail-mboxparser-perl_0.55-3_all + libmail-milter-perl_0.06-1.1_all + libmail-rfc822-address-perl_0.3-4_all + libmail-sendeasy-perl_1.2-2_all + libmail-sendmail-perl_0.79.16-1_all + libmail-spf-perl_2.8.0-1_all + libmail-srs-perl_0.31-5_all + libmail-thread-perl_2.55-1_all + libmail-verify-perl_0.02-5_all + libmail-verp-perl_0.06+dfsg-1_all + libmailtools-perl_2.09-1_all + libmakefile-dom-perl_0.006-1_all + libmakefile-parser-perl_0.215-1_all + libmapnik-dev_2.0.0+ds1-3_all + libmapscript-ruby_6.0.1-3.2+deb7u2_all + libmarc-crosswalk-dublincore-perl_0.02-1_all + libmarc-lint-perl_1.44-1_all + libmarc-perl_1.07-5_all + libmarc-record-perl_2.0.3-1_all + libmarc-xml-perl_0.93-1_all + libmarkdown-php_1.0.1m-1_all + libmaruku-ruby_0.6.0-2_all + libmaruku-ruby1.8_0.6.0-2_all + libmason-perl_2.19-2_all + libmason-plugin-cache-perl_0.04-1_all + libmason-plugin-htmlfilters-perl_0.03-1_all + libmason-plugin-routersimple-perl_0.05-1_all + libmasonx-interp-withcallbacks-perl_1.19-1_all + libmasonx-processdir-perl_0.02-1_all + libmasonx-request-withapachesession-perl_0.30-3.1_all + libmatchbox-doc_1.9-osso8-3_all + libmath++-doc_0.0.4-4_all + libmath-algebra-symbols-perl_1.21-1_all + libmath-base36-perl_0.09-1_all + libmath-base85-perl_0.2+dfsg-1_all + libmath-basecalc-perl_1.016-1_all + libmath-basecnv-perl_1.8.B59BrZX-1_all + libmath-bezier-perl_0.01-1_all + libmath-bigint-perl_1.997-1_all + libmath-calc-units-perl_1.07-1_all + libmath-calculus-differentiate-perl_0.3-1_all + libmath-calculus-expression-perl_0.2.2.ds-1_all + libmath-calculus-newtonraphson-perl_0.1-1_all + libmath-combinatorics-perl_0.09-4_all + libmath-complex-perl_1.59-1_all + libmath-derivative-perl_0.01-6_all + libmath-fibonacci-perl_1.5-4_all + libmath-gradient-perl_0.04-1_all + libmath-nocarry-perl_1.11-2_all + libmath-numbercruncher-perl_5.00-8_all + libmath-polygon-perl_1.02-1_all + libmath-random-isaac-perl_1.003-1_all + libmath-random-oo-perl_0.21-1_all + libmath-randomorg-perl_0.04-3_all + libmath-round-perl_0.06-3_all + libmath-sparsematrix-perl_0.03-1_all + libmath-sparsevector-perl_0.04-1_all + libmath-spline-perl_0.01-4_all + libmath-symbolic-perl_0.606-1_all + libmath-vec-perl_1.01-1_all + libmath-vecstat-perl_0.08-1_all + libmath-vector-real-kdtree-perl_0.04-1_all + libmath-vector-real-perl_0.09-1_all + libmathml-ruby_0.12.2-2_all + libmathml-ruby1.8_0.12.2-2_all + libmathml-ruby1.9.1_0.12.2-2_all + libmatio-doc_1.3.4-4_all + libmatrixssl1.8-doc_1.8.8-1_all + libmatthew-debug-java_0.7.3-1_all + libmatthew-io-java_0.7.3-1_all + libmatthew-java-doc_0.7.3-1_all + libmaven-ant-tasks-java_2.1.3-2_all + libmaven-antrun-extended-plugin-java_1.42-1_all + libmaven-antrun-extended-plugin-java-doc_1.42-1_all + libmaven-antrun-plugin-java_1.6-2_all + libmaven-archiver-java_2.4-4_all + libmaven-archiver-java-doc_2.4-4_all + libmaven-assembly-plugin-java_2.2~beta5-2_all + libmaven-bundle-plugin-java_2.3.5-1_all + libmaven-bundle-plugin-java-doc_2.3.5-1_all + libmaven-clean-plugin-java_2.3-5_all + libmaven-clean-plugin-java-doc_2.3-5_all + libmaven-cobertura-plugin-java_2.3+dfsg-2_all + libmaven-common-artifact-filters-java_1.2-1_all + libmaven-common-artifact-filters-java-doc_1.2-1_all + libmaven-compiler-plugin-java_2.0.2-6_all + libmaven-compiler-plugin-java-doc_2.0.2-6_all + libmaven-dependency-analyzer-java_1.2-1_all + libmaven-dependency-plugin-java_2.1-4_all + libmaven-dependency-plugin-java-doc_2.1-4_all + libmaven-dependency-tree-java_1.2-4_all + libmaven-dependency-tree-java-doc_1.2-4_all + libmaven-docck-plugin-java_1.0-4_all + libmaven-doxia-tools-java_1.2.1-2_all + libmaven-doxia-tools-java-doc_1.2.1-2_all + libmaven-ear-plugin-java_2.3.2-3_all + libmaven-ejb-plugin-java_2.2-2_all + libmaven-embedder-java_2.0.4-3_all + libmaven-embedder-java-doc_2.0.4-3_all + libmaven-enforcer-plugin-java_1.0-1_all + libmaven-exec-plugin-java_1.1.1+dfsg-3_all + libmaven-file-management-java_1.2.1-3_all + libmaven-file-management-java-doc_1.2.1-3_all + libmaven-filtering-java_1.0~beta-2-5_all + libmaven-hpi-plugin-java_1.79-3_all + libmaven-hpi-plugin-java-doc_1.79-3_all + libmaven-install-plugin-java_2.3-4_all + libmaven-install-plugin-java-doc_2.3-4_all + libmaven-invoker-java_2.0.11-1_all + libmaven-invoker-plugin-java_1.5-2_all + libmaven-jar-plugin-java_2.2-6_all + libmaven-jar-plugin-java-doc_2.2-6_all + libmaven-javadoc-plugin-java_2.6.1-2_all + libmaven-parent-java_21-2_all + libmaven-plugin-testing-java_1.2-3_all + libmaven-plugin-testing-java-doc_1.2-3_all + libmaven-plugin-tools-java_2.8-2_all + libmaven-project-info-reports-plugin-java_2.4-1_all + libmaven-project-info-reports-plugin-java-doc_2.4-1_all + libmaven-reporting-impl-java_2.1-1_all + libmaven-reporting-impl-java-doc_2.1-1_all + libmaven-repository-builder-java_1.0~alpha2-3_all + libmaven-repository-builder-java-doc_1.0~alpha2-3_all + libmaven-resources-plugin-java_2.3-7_all + libmaven-resources-plugin-java-doc_2.3-7_all + libmaven-scm-java_1.3-4_all + libmaven-scm-java-doc_1.3-4_all + libmaven-shade-plugin-java_1.2.1-4_all + libmaven-shade-plugin-java-doc_1.2.1-4_all + libmaven-shared-io-java_1.1-4_all + libmaven-shared-io-java-doc_1.1-4_all + libmaven-shared-jar-java_1.1-1_all + libmaven-shared-jar-java-doc_1.1-1_all + libmaven-site-plugin-java_2.1-2_all + libmaven-site-plugin-java-doc_2.1-2_all + libmaven-stapler-plugin-java_1.16-4_all + libmaven-stapler-plugin-java-doc_1.16-4_all + libmaven-verifier-java_1.2-1_all + libmaven-verifier-java-doc_1.2-1_all + libmaven-war-plugin-java_2.1.1-1_all + libmaven-war-plugin-java-doc_2.1.1-1_all + libmaven2-core-java_2.2.1-8_all + libmaven2-core-java-doc_2.2.1-8_all + libmcs-doc_0.7.2-2.1_all + libmdds-dev_0.5.4-1_all + libmecab-java_0.99.3-1_all + libmecab-ruby_0.99.3-2_all + libmecab-ruby1.8_0.99.3-2_all + libmecab-ruby1.9.1_0.99.3-2_all + libmed-doc_3.0.3-3_all + libmediainfo-doc_0.7.58-1_all + libmediawiki-api-perl_0.39-1_all + libmemcache-client-ruby_1.8.5-2_all + libmemcache-client-ruby1.8_1.8.5-2_all + libmemcache-client-ruby1.9.1_1.8.5-2_all + libmemoize-expirelru-perl_0.55-1_all + libmemoize-memcached-perl_0.03-2_all + libmemphis-doc_0.2.3-2_all + libmerb-assets-ruby_1.1.3-1_all + libmerb-assets-ruby1.8_1.1.3-1_all + libmerb-core-ruby_1.1.3+dfsg-2_all + libmerb-core-ruby1.8_1.1.3+dfsg-2_all + libmerb-haml-ruby_1.1.3-2_all + libmerb-haml-ruby1.8_1.1.3-2_all + libmerb-helpers-ruby_1.1.3-1_all + libmerb-helpers-ruby1.8_1.1.3-1_all + libmerb-param-protection-ruby_1.1.3-1_all + libmerb-param-protection-ruby1.8_1.1.3-1_all + libmetadata-extractor-java_2.3.1+dfsg-2_all + libmetadata-extractor-java-doc_2.3.1+dfsg-2_all + libmetaid-ruby_1.0-7_all + libmetaid-ruby1.8_1.0-7_all + libmetainf-services-java_1.4-1_all + libmetainf-services-java-doc_1.4-1_all + libmethod-alias-perl_1.03-1_all + libmethod-autoload-perl_0.02-2_all + libmethod-signatures-perl_20120523-1_all + libmethod-signatures-simple-perl_1.02-1_all + libmgl-data_1.11.2-17_all + libmicroba-java_1:0.4.4.3-4_all + libmicroba-java-doc_1:0.4.4.3-4_all + libmidi-perl_0.80-3_all + libmiglayout-java_3.7.4-2_all + libmime-base32-perl_1.02a-1_all + libmime-base64-urlsafe-perl_0.01-1_all + libmime-charset-perl_1.009.2-1_all + libmime-encwords-perl_1.012.4-1_all + libmime-lite-html-perl_1.23-1.1_all + libmime-lite-perl_3.028-1_all + libmime-tools-perl_5.503-1_all + libmime-types-perl_1.35-1_all + libmime-types-ruby_1.19-1_all + libmimedir-gnome-doc_0.4.2-5_all + libmimetic-doc_0.9.7-3_all + libmimic-doc_1.0.4-2.1_all + libmina-java_1.1.7.dfsg-10_all + libmina-java-doc_1.1.7.dfsg-10_all + libmina2-java_2.0.4+dfsg-2_all + libmina2-java-doc_2.0.4+dfsg-2_all + libmission-control-plugins-doc_1:5.12.3-1_all + libmixin-extrafields-param-perl_0.011-2_all + libmixin-extrafields-perl_0.008-2_all + libmixin-linewise-perl_0.003-1_all + libmixlib-authentication-ruby_1.1.4-2_all + libmixlib-authentication-ruby1.8_1.1.4-2_all + libmixlib-cli-ruby_1.2.2-2_all + libmixlib-cli-ruby1.8_1.2.2-2_all + libmixlib-cli-ruby1.9.1_1.2.2-2_all + libmixlib-config-ruby_1.1.2-3_all + libmixlib-config-ruby1.8_1.1.2-3_all + libmixlib-log-ruby_1.4.1-1_all + libmixlib-log-ruby1.8_1.4.1-1_all + libmkdoc-xml-perl_0.75-3_all + libmldbm-perl_2.04-1_all + libmldbm-sync-perl_0.30-3_all + libmlpost-ocaml-doc_0.8.1-3_all + libmlt-data_0.8.0-4_all + libmocha-ruby_0.11.3-3_all + libmocha-ruby1.8_0.11.3-3_all + libmocked-perl_0.09-4_all + libmockito-java_1.9.0+ds1-2_all + libmockito-java-doc_1.9.0+ds1-2_all + libmockobjects-java_0.09-4_all + libmockobjects-java-doc_0.09-4_all + libmodello-java_1.1-2_all + libmodello-java-doc_1.1-2_all + libmodello-maven-plugin-java_1.1-2_all + libmodello-maven-plugin-java-doc_1.1-2_all + libmodello-maven-plugin1.4-java_1.4.1-1_all + libmodello-maven-plugin1.4-java-doc_1.4.1-1_all + libmodello1.4-java_1.4.1-1_all + libmodello1.4-java-doc_1.4.1-1_all + libmodem-vgetty-perl_0.03-1_all + libmodern-perl-perl_1.20120521-1_all + libmodglue1-dev_1.17-2.1_all + libmodplug-dev_1:0.8.8.4-3+deb7u1+git20130828_all + libmodule-build-cipux-perl_0.4.0-7_all + libmodule-build-perl_0.400100-2_all + libmodule-corelist-perl_2.68-1_all + libmodule-cpanfile-perl_0.9007-1_all + libmodule-cpants-analyse-perl_0.86+dfsg-1_all + libmodule-depends-perl_0.16-1_all + libmodule-extract-perl_0.01-1_all + libmodule-extract-use-perl_1.01-1_all + libmodule-extractuse-perl_0.27-1_all + libmodule-find-perl_0.11-1_all + libmodule-implementation-perl_0.06-1_all + libmodule-info-perl_0.32-1_all + libmodule-inspector-perl_1.05-1_all + libmodule-install-authorrequires-perl_0.02-1_all + libmodule-install-autolicense-perl_0.08-1_all + libmodule-install-automanifest-perl_0.003-1_all + libmodule-install-doap-perl_0.004-2_all + libmodule-install-doapchangesets-perl_0.202-1_all + libmodule-install-manifestskip-perl_0.20-1_all + libmodule-install-perl_1.06-1_all + libmodule-install-rdf-perl_0.004-1_all + libmodule-install-readmefrompod-perl_0.18-1_all + libmodule-install-trustmetayml-perl_0.001-1_all + libmodule-install-xsutil-perl_0.43-1_all + libmodule-load-conditional-perl_0.50-1_all + libmodule-manifest-perl_0.07-1_all + libmodule-manifest-skip-perl_0.16-1_all + libmodule-math-depends-perl_0.02-1_all + libmodule-metadata-perl_1.000009-1+deb7u1_all + libmodule-optional-perl_0.03-1_all + libmodule-package-perl_0.30-1_all + libmodule-packaged-perl_0.86-3_all + libmodule-pluggable-fast-perl_0.19-1_all + libmodule-pluggable-ordered-perl_1.5-1_all + libmodule-refresh-perl_0.17-1_all + libmodule-runtime-perl_0.013-1_all + libmodule-scandeps-perl_1.08-1_all + libmodule-signature-perl_0.68-1+deb7u1_all + libmodule-starter-pbp-perl_0.0.3-1_all + libmodule-starter-perl_1.580+dfsg-1_all + libmodule-starter-plugin-cgiapp-perl_0.42-1_all + libmodule-starter-plugin-simplestore-perl_0.144-1_all + libmodule-starter-plugin-tt2-perl_0.125-1_all + libmodule-starter-smart-perl_0.0.4-1_all + libmodule-used-perl_1.2.0-1_all + libmodule-util-perl_1.08-1_all + libmodule-versions-report-perl_1.06-1_all + libmojo-server-fastcgi-perl_0.2-1_all + libmojolicious-perl_2.98+dfsg-2_all + libmojolicious-plugin-basicauth-perl_0.06-1_all + libmojomojo-perl_1.05+dfsg-3_all + libmondrian-java_1:3.4.1-1_all + libmondrian-java-doc_1:3.4.1-1_all + libmoneta-ruby_0.6.0-4_all + libmoneta-ruby1.8_0.6.0-4_all + libmongo-client-doc_0.1.5-1+deb7u1_all + libmonitoring-availability-perl_0.38-1_all + libmonitoring-livestatus-perl_0.74-1_all + libmonkey-patch-perl_0.03-1_all + libmono-accessibility2.0-cil_2.10.8.1-8_all + libmono-accessibility4.0-cil_2.10.8.1-8_all + libmono-addins-cil-dev_0.6.2-2_all + libmono-addins-gui-cil-dev_0.6.2-2_all + libmono-addins-gui0.2-cil_0.6.2-2_all + libmono-addins-msbuild-cil-dev_0.6.2-2_all + libmono-addins-msbuild0.2-cil_0.6.2-2_all + libmono-addins0.2-cil_0.6.2-2_all + libmono-c5-1.1-cil_2.10.8.1-8_all + libmono-cairo2.0-cil_2.10.8.1-8_all + libmono-cairo4.0-cil_2.10.8.1-8_all + libmono-cecil-cil_0.9.5+dfsg-2_all + libmono-cecil-cil-dev_0.9.5+dfsg-2_all + libmono-cecil-flowanalysis-cil_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-flowanalysis-cil-dev_0.1~vcs20110809.r1.b34edf6-2_all + libmono-cecil-private-cil_2.10.8.1-8_all + libmono-cecil-vb0.9-cil_2.10-2_all + libmono-cil-dev_2.10.8.1-8_all + libmono-codecontracts4.0-cil_2.10.8.1-8_all + libmono-compilerservices-symbolwriter4.0-cil_2.10.8.1-8_all + libmono-corlib2.0-cil_2.10.8.1-8_all + libmono-corlib4.0-cil_2.10.8.1-8_all + libmono-cscompmgd8.0-cil_2.10.8.1-8_all + libmono-csharp4.0-cil_2.10.8.1-8_all + libmono-custommarshalers4.0-cil_2.10.8.1-8_all + libmono-data-tds2.0-cil_2.10.8.1-8_all + libmono-data-tds4.0-cil_2.10.8.1-8_all + libmono-db2-1.0-cil_2.10.8.1-8_all + libmono-debugger-soft2.0-cil_2.10.8.1-8_all + libmono-debugger-soft4.0-cil_2.10.8.1-8_all + libmono-http4.0-cil_2.10.8.1-8_all + libmono-i18n-cjk4.0-cil_2.10.8.1-8_all + libmono-i18n-mideast4.0-cil_2.10.8.1-8_all + libmono-i18n-other4.0-cil_2.10.8.1-8_all + libmono-i18n-rare4.0-cil_2.10.8.1-8_all + libmono-i18n-west2.0-cil_2.10.8.1-8_all + libmono-i18n-west4.0-cil_2.10.8.1-8_all + libmono-i18n2.0-cil_2.10.8.1-8_all + libmono-i18n4.0-all_2.10.8.1-8_all + libmono-i18n4.0-cil_2.10.8.1-8_all + libmono-ldap2.0-cil_2.10.8.1-8_all + libmono-ldap4.0-cil_2.10.8.1-8_all + libmono-management2.0-cil_2.10.8.1-8_all + libmono-management4.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-messaging-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-messaging2.0-cil_2.10.8.1-8_all + libmono-messaging4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-engine4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-framework4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-tasks-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build-utilities-v4.0-4.0-cil_2.10.8.1-8_all + libmono-microsoft-build2.0-cil_2.10.8.1-8_all + libmono-microsoft-csharp4.0-cil_2.10.8.1-8_all + libmono-microsoft-visualbasic10.0-cil_2.10-2_all + libmono-microsoft-visualbasic8.0-cil_2.10-2_all + libmono-microsoft-visualc10.0-cil_2.10.8.1-8_all + libmono-microsoft-web-infrastructure1.0-cil_2.10.8.1-8_all + libmono-microsoft8.0-cil_2.10.8.1-8_all + libmono-npgsql2.0-cil_2.10.8.1-8_all + libmono-npgsql4.0-cil_2.10.8.1-8_all + libmono-opensystem-c4.0-cil_2.10.8.1-8_all + libmono-oracle2.0-cil_2.10.8.1-8_all + libmono-oracle4.0-cil_2.10.8.1-8_all + libmono-peapi2.0-cil_2.10.8.1-8_all + libmono-peapi4.0-cil_2.10.8.1-8_all + libmono-posix2.0-cil_2.10.8.1-8_all + libmono-posix4.0-cil_2.10.8.1-8_all + libmono-rabbitmq2.0-cil_2.10.8.1-8_all + libmono-rabbitmq4.0-cil_2.10.8.1-8_all + libmono-reflection-cil_1.0+git20110407+d2343843-2_all + libmono-reflection-cil-dev_1.0+git20110407+d2343843-2_all + libmono-relaxng2.0-cil_2.10.8.1-8_all + libmono-relaxng4.0-cil_2.10.8.1-8_all + libmono-security2.0-cil_2.10.8.1-8_all + libmono-security4.0-cil_2.10.8.1-8_all + libmono-sharpzip2.6-cil_2.10.8.1-8_all + libmono-sharpzip2.84-cil_2.10.8.1-8_all + libmono-sharpzip4.84-cil_2.10.8.1-8_all + libmono-simd2.0-cil_2.10.8.1-8_all + libmono-simd4.0-cil_2.10.8.1-8_all + libmono-sqlite2.0-cil_2.10.8.1-8_all + libmono-sqlite4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-composition4.0-cil_2.10.8.1-8_all + libmono-system-componentmodel-dataannotations4.0-cil_2.10.8.1-8_all + libmono-system-configuration-install4.0-cil_2.10.8.1-8_all + libmono-system-configuration4.0-cil_2.10.8.1-8_all + libmono-system-core4.0-cil_2.10.8.1-8_all + libmono-system-data-datasetextensions4.0-cil_2.10.8.1-8_all + libmono-system-data-linq2.0-cil_2.10.8.1-8_all + libmono-system-data-linq4.0-cil_2.10.8.1-8_all + libmono-system-data-services-client4.0-cil_2.10.8.1-8_all + libmono-system-data-services4.0-cil_2.10.8.1-8_all + libmono-system-data2.0-cil_2.10.8.1-8_all + libmono-system-data4.0-cil_2.10.8.1-8_all + libmono-system-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing-design4.0-cil_2.10.8.1-8_all + libmono-system-drawing4.0-cil_2.10.8.1-8_all + libmono-system-dynamic4.0-cil_2.10.8.1-8_all + libmono-system-enterpriseservices4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel-selectors4.0-cil_2.10.8.1-8_all + libmono-system-identitymodel4.0-cil_2.10.8.1-8_all + libmono-system-ldap2.0-cil_2.10.8.1-8_all + libmono-system-ldap4.0-cil_2.10.8.1-8_all + libmono-system-management4.0-cil_2.10.8.1-8_all + libmono-system-messaging2.0-cil_2.10.8.1-8_all + libmono-system-messaging4.0-cil_2.10.8.1-8_all + libmono-system-net4.0-cil_2.10.8.1-8_all + libmono-system-numerics4.0-cil_2.10.8.1-8_all + libmono-system-runtime-caching4.0-cil_2.10.8.1-8_all + libmono-system-runtime-durableinstancing4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization-formatters-soap4.0-cil_2.10.8.1-8_all + libmono-system-runtime-serialization4.0-cil_2.10.8.1-8_all + libmono-system-runtime2.0-cil_2.10.8.1-8_all + libmono-system-runtime4.0-cil_2.10.8.1-8_all + libmono-system-security4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-discovery4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-routing4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel-web4.0-cil_2.10.8.1-8_all + libmono-system-servicemodel4.0-cil_2.10.8.1-8_all + libmono-system-serviceprocess4.0-cil_2.10.8.1-8_all + libmono-system-transactions4.0-cil_2.10.8.1-8_all + libmono-system-web-abstractions4.0-cil_2.10.8.1-8_all + libmono-system-web-applicationservices4.0-cil_2.10.8.1-8_all + libmono-system-web-dynamicdata4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions-design4.0-cil_2.10.8.1-8_all + libmono-system-web-extensions4.0-cil_2.10.8.1-8_all + libmono-system-web-mvc1.0-cil_2.10.8.1-8_all + libmono-system-web-mvc2.0-cil_2.10.8.1-8_all + libmono-system-web-routing4.0-cil_2.10.8.1-8_all + libmono-system-web-services4.0-cil_2.10.8.1-8_all + libmono-system-web2.0-cil_2.10.8.1-8_all + libmono-system-web4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms-datavisualization4.0-cil_2.10.8.1-8_all + libmono-system-windows-forms4.0-cil_2.10.8.1-8_all + libmono-system-xaml4.0-cil_2.10.8.1-8_all + libmono-system-xml-linq4.0-cil_2.10.8.1-8_all + libmono-system-xml4.0-cil_2.10.8.1-8_all + libmono-system2.0-cil_2.10.8.1-8_all + libmono-system4.0-cil_2.10.8.1-8_all + libmono-tasklets2.0-cil_2.10.8.1-8_all + libmono-tasklets4.0-cil_2.10.8.1-8_all + libmono-uia-cil-dev_2.1-4_all + libmono-uia-winforms1.0-cil_2.1-2_all + libmono-uia3.0-cil_2.1-4_all + libmono-upnp-cil_0.1.2-1_all + libmono-upnp-cil-dev_0.1.2-1_all + libmono-wcf3.0-cil_2.10.8.1-8_all + libmono-web4.0-cil_2.10.8.1-8_all + libmono-webbrowser2.0-cil_2.10.8.1-8_all + libmono-webbrowser4.0-cil_2.10.8.1-8_all + libmono-webmatrix-data4.0-cil_2.10.8.1-8_all + libmono-windowsbase3.0-cil_2.10.8.1-8_all + libmono-windowsbase4.0-cil_2.10.8.1-8_all + libmono-winforms2.0-cil_2.10.8.1-8_all + libmono-zeroconf-cil-dev_0.9.0-4_all + libmono-zeroconf1.0-cil_0.9.0-4_all + libmono2.0-cil_2.10.8.1-8_all + libmonogame-cil_2.5.1+dfsg-3_all + libmonogame-cil-dev_2.5.1+dfsg-3_all + libmoo-perl_0.091011-1_all + libmoose-autobox-perl_0.12-1_all + libmoosex-aliases-perl_0.10-1_all + libmoosex-app-cmd-perl_0.07-1_all + libmoosex-async-perl_0.07-1_all + libmoosex-attribute-chained-perl_1.0.1-1_all + libmoosex-attributehelpers-perl_0.23-1_all + libmoosex-attributeshortcuts-perl_0.010-1_all + libmoosex-blessed-reconstruct-perl_0.04-2_all + libmoosex-clone-perl_0.05-1_all + libmoosex-compiletime-traits-perl_1.102570-1_all + libmoosex-configfromfile-perl_0.04-1_all + libmoosex-daemonize-perl_0.15-1_all + libmoosex-declare-perl_0.35-1_all + libmoosex-emulate-class-accessor-fast-perl_0.00903-1_all + libmoosex-followpbp-perl_0.05-1_all + libmoosex-getopt-perl_0.45-1_all + libmoosex-has-sugar-perl_0.05070420-1_all + libmoosex-hasdefaults-perl_0.03-1_all + libmoosex-insideout-perl_0.106-2_all + libmoosex-lazyrequire-perl_0.07-1_all + libmoosex-log-log4perl-perl_0.46-1_all + libmoosex-markasmethods-perl_0.15-1_all + libmoosex-meta-typeconstraint-forcecoercion-perl_0.01-1_all + libmoosex-method-signatures-perl_0.43-1_all + libmoosex-methodattributes-perl_0.27-1_all + libmoosex-multiinitarg-perl_0.01-1_all + libmoosex-multimethods-perl_0.10-1_all + libmoosex-nonmoose-perl_0.22-1_all + libmoosex-object-pluggable-perl_0.0011-2_all + libmoosex-oneargnew-perl_0.002-1_all + libmoosex-param-perl_0.02-1_all + libmoosex-params-validate-perl_0.16-1_all + libmoosex-poe-perl_0.215-1_all + libmoosex-relatedclassroles-perl_0.004-1_all + libmoosex-role-parameterized-perl_1.00-1_all + libmoosex-role-timer-perl_0.03-1_all + libmoosex-semiaffordanceaccessor-perl_0.09-1_all + libmoosex-setonce-perl_0.200001-1_all + libmoosex-simpleconfig-perl_0.09-1_all + libmoosex-singleton-perl_0.29-1_all + libmoosex-storage-perl_0.31-1_all + libmoosex-strictconstructor-perl_0.19-1_all + libmoosex-traits-perl_0.11-2_all + libmoosex-traits-pluggable-perl_0.10-2_all + libmoosex-types-common-perl_0.001008-1_all + libmoosex-types-datetime-morecoercions-perl_0.09-1_all + libmoosex-types-datetime-perl_0.07-1_all + libmoosex-types-iso8601-perl_0.11-1_all + libmoosex-types-json-perl_0.02-1_all + libmoosex-types-loadableclass-perl_0.008-1_all + libmoosex-types-netaddr-ip-perl_0.04-1_all + libmoosex-types-path-class-perl_0.05-2_all + libmoosex-types-perl_0.35-1_all + libmoosex-types-perl-perl_0.101341-1_all + libmoosex-types-set-object-perl_0.03-1_all + libmoosex-types-structured-perl_0.28-1_all + libmoosex-types-varianttable-perl_0.04-2_all + libmoosex-undeftolerant-perl_0.17-1_all + libmoosex-yaml-perl_0.04-1_all + libmorfologik-stemming-java_1.2.2-1.1_all + libmosquitto0-dev_0.15-2_all + libmosquittopp0-dev_0.15-2_all + libmousex-getopt-perl_0.34-1_all + libmousex-nativetraits-perl_1.07-1_all + libmousex-strictconstructor-perl_0.02-1_all + libmousex-types-path-class-perl_0.07-1_all + libmousex-types-perl_0.06-1_all + libmp3-info-perl_1.24-1_all + libmp3-tag-perl_1.13-1_all + libmp3info-ruby1.8_0.5-2_all + libmp3spi-java_1.9.5-1_all + libmp3tag-ruby1.8_1.0-11_all + libmp3tag-ruby1.9.1_1.0-11_all + libmp4-info-perl_1.13-1_all + libmpdclient-doc_2.3-1_all + libmpfr-doc_3.1.0-5_all + libmqdb-perl_0.954-1_all + libmr-tarantool-perl_0.0.24-1_all + libmro-compat-perl_0.11-1_all + libmsgpack-ruby1.8_0.4.6-4_all + libmsgpack-ruby1.9.1_0.4.6-4_all + libmsoffice-word-html-writer-perl_1.01-1_all + libmsv-java_2009.1+dfsg1-3_all + libmtp-common_1.1.3-35-g0ece104-5_all + libmtp-doc_1.1.3-35-g0ece104-5_all + libmule-java-2.0_2.0.1-5_all + libmultibitnums-ruby_0.1.4-1_all + libmultibitnums-ruby1.8_0.1.4-1_all + libmultibitnums-ruby1.8-dbg_0.1.4-1_all + libmultibitnums-ruby1.9.1_0.1.4-1_all + libmultibitnums-ruby1.9.1-dbg_0.1.4-1_all + libmunge-maven-plugin-java_1.0-1_all + libmunge-maven-plugin-java-doc_1.0-1_all + libmuparser-doc_2.1.0-3_all + libmupen64plus-dev_1.99.5-6_all + libmusicbrainz5-doc_5.0.1-2_all + libmvel-java_2.0.18-2_all + libmvel-java-doc_2.0.18-2_all + libmx-common_1.4.6-1_all + libmx-doc_1.4.6-1_all + libmx4j-java_3.0.2-12_all + libmyproxy-doc_5.6-1_all + libmysql++-doc_3.1.0-2_all + libmysql-cil-dev_6.4.3-2_all + libmysql-diff-perl_0.43-2_all + libmysql-java_5.1.16-2_all + libmysql-ruby_2.8.2+gem2deb-3_all + libmysql-ruby1.8_2.8.2+gem2deb-3_all + libmysql-ruby1.9.1_2.8.2+gem2deb-3_all + libmysql6.4-cil_6.4.3-2_all + libnacore-doc_0.4.0-3_all + libnaga-java_2.1-3_all + libnagios-object-perl_0.21.16-1_all + libnagios-plugin-perl_0.36-1_all + libnamespace-autoclean-perl_0.13-1_all + libnamespace-clean-perl_0.23-1_all + libnanoxml2-java_2.2.3.dfsg-4_all + libnanoxml2-java-doc_2.2.3.dfsg-4_all + libnarray-miss-ruby_1.2.7-2_all + libnarray-miss-ruby1.8_1.2.7-2_all + libnarray-miss-ruby1.9.1_1.2.7-2_all + libnarray-ruby_0.6.0.1-1_all + libnarray-ruby1.8_0.6.0.1-1_all + libnarray-ruby1.8-dbg_0.6.0.1-1_all + libnarray-ruby1.9.1_0.6.0.1-1_all + libnarray-ruby1.9.1-dbg_0.6.0.1-1_all + libnb-absolutelayout-java_7.0.1+dfsg1-5_all + libnb-apisupport3-java_7.0.1+dfsg1-5_all + libnb-ide14-java_7.0.1+dfsg1-5_all + libnb-java5-java_7.0.1+dfsg1-5_all + libnb-javaparser-java_7.0.1-1_all + libnb-org-openide-modules-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-java_7.0.1+dfsg1-5_all + libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all + libnb-platform-devel-java_7.0.1+dfsg1-5_all + libnb-platform13-java_7.0.1+dfsg1-5_all + libnb-platform13-java-doc_7.0.1+dfsg1-5_all + libncurses-gst_3.2.4-2_all + libncurses-ruby_1.3.1-2_all + libncurses-ruby1.8_1.3.1-2_all + libncurses-ruby1.9_1.3.1-2_all + libncurses-ruby1.9.1_1.3.1-2_all + libncursesada-doc_5.9.20110404-7_all + libndesk-dbus-glib1.0-cil_0.4.1-4_all + libndesk-dbus-glib1.0-cil-dev_0.4.1-4_all + libndesk-dbus1.0-cil_0.6.0-6_all + libndesk-dbus1.0-cil-dev_0.6.0-6_all + libneedle-extras-ruby1.8_1.0.0-2_all + libneedle-ruby1.8_1.3.0-1_all + libnekohtml-java_1.9.15-1_all + libnekohtml-java-doc_1.9.15-1_all + libnet-address-ip-local-perl_0.1.2-2_all + libnet-akamai-perl_0.14-1_all + libnet-akismet-perl_0.05-1_all + libnet-amazon-ec2-perl_0.18-1_all + libnet-amazon-perl_0.61-1_all + libnet-amazon-s3-perl_0.56-1_all + libnet-amazon-s3-tools-perl_0.08-1_all + libnet-appliance-session-perl_3.121640-1_all + libnet-bonjour-perl_0.96-1_all + libnet-cidr-lite-perl_0.21-1_all + libnet-cidr-perl_0.15-1_all + libnet-citadel-perl_0.02-1_all + libnet-cli-interact-perl_1.121640-1_all + libnet-daap-dmap-perl_1.27-1_all + libnet-daemon-perl_0.48-1_all + libnet-dhcp-perl_0.690+dfsg-1_all + libnet-dns-async-perl_1.07-1_all + libnet-dns-fingerprint-perl_0.9.3-4_all + libnet-dns-resolver-programmable-perl_0.003-2_all + libnet-dns-sec-perl_0.16-2_all + libnet-domain-tld-perl_1.69-1_all + libnet-dpap-client-perl_0.26-2_all + libnet-dri-perl_0.96-1_all + libnet-dropbox-api-perl_1.8-1_all + libnet-easytcp-perl_0.26-2_all + libnet-epp-perl_0.19-1_all + libnet-finger-perl_1.06-6_all + libnet-frame-perl_1.09-1_all + libnet-github-perl_0.46-1_all + libnet-google-authsub-perl_0.5-1_all + libnet-google-code-perl_0.19-2_all + libnet-gpsd3-perl_0.18-1_all + libnet-hiveminder-perl_0.08-1_all + libnet-hotline-perl_0.83-2_all + libnet-http-perl_6.03-2_all + libnet-https-any-perl_0.10-3_all + libnet-https-nb-perl_0.12-1_all + libnet-httpserver-perl_1.1.1-1_all + libnet-ident-perl_1.23-1_all + libnet-ifconfig-wrapper-perl_0.11-1_all + libnet-imap-client-perl_0.9501-1_all + libnet-imap-perl_0.02-7_all + libnet-imap-simple-perl_1.2030-1_all + libnet-imap-simple-ssl-perl_1.3-3_all + libnet-inet6glue-perl_0.5-1_all + libnet-ip-minimal-perl_0.02-1_all + libnet-ip-perl_1.25-3_all + libnet-iptrie-perl_0.7-1_all + libnet-ipv6addr-perl_0.2.dfsg.1-3_all + libnet-irc-perl_0.75-8_all + libnet-irc-ruby_0.14-5.1_all + libnet-irr-perl_0.08-1_all + libnet-jabber-bot-perl_2.1.5-1_all + libnet-jabber-perl_2.0-5_all + libnet-jifty-perl_0.14-1_all + libnet-ldap-filterbuilder-perl_1.0004-1_all + libnet-ldap-perl_1:0.4400-1_all + libnet-ldap-server-perl_0.4-2_all + libnet-luminis-build-plugin-java_0.2.0-1_all + libnet-mac-perl_2.103622-1_all + libnet-mac-vendor-perl_1.18-2+deb7u1_all + libnet-managesieve-perl_0.10-1_all + libnet-nbname-perl_0.26-1_all + libnet-netmask-perl_1.9016-1_all + libnet-netrc-ruby1.8_0.2.2-2_all + libnet-netrc-ruby1.9.1_0.2.2-1_all + libnet-nslookup-perl_2.00-1_all + libnet-ntp-perl_1.3-1_all + libnet-oauth-perl_0.28-1_all + libnet-openid-common-perl_1.14-1_all + libnet-openid-consumer-perl_1.13-1_all + libnet-openid-server-perl_1.09-1_all + libnet-opensrs-perl_0.06-1_all + libnet-openssh-compat-perl_0.06-1_all + libnet-openssh-perl_0.57-1_all + libnet-ph-perl_2.21-7_all + libnet-ping-external-perl_0.13-1_all + libnet-proxy-perl_0.12-5_all + libnet-rblclient-perl_0.5-2_all + libnet-rendezvous-publish-backend-avahi-perl_0.04-1_all + libnet-rendezvous-publish-perl_0.04-2_all + libnet-scp-expect-perl_0.16-1_all + libnet-scp-perl_0.08-1_all + libnet-scp-ruby_1.0.4-2_all + libnet-scp-ruby1.8_1.0.4-2_all + libnet-scp-ruby1.9.1_1.0.4-2_all + libnet-server-mail-perl_0.17-1_all + libnet-server-perl_2.006-1+deb7u1_all + libnet-sftp-foreign-perl_1.73+dfsg-1_all + libnet-sftp-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby_1:2.0.5-3_all + libnet-sftp2-ruby1.8_1:2.0.5-3_all + libnet-sftp2-ruby1.9.1_1:2.0.5-3_all + libnet-sieve-perl_0.09-1_all + libnet-sieve-script-perl_0.08-1_all + libnet-sip-perl_0.66-1_all + libnet-smpp-perl_1.19-1_all + libnet-smtp-server-perl_1.1-4_all + libnet-smtp-ssl-perl_1.01-3_all + libnet-smtp-tls-butmaintained-perl_0.17-1+deb7u1_all + libnet-smtp-tls-perl_0.12-1_all + libnet-smtpauth-perl_0.08-2_all + libnet-snmp-perl_6.0.1-2_all + libnet-snpp-perl_1.17-3_all + libnet-socks-perl_0.03-13_all + libnet-ssh-gateway-ruby_1.1.0-2_all + libnet-ssh-gateway-ruby1.8_1.1.0-2_all + libnet-ssh-gateway-ruby1.9.1_1.1.0-2_all + libnet-ssh-multi-ruby_1.1-2_all + libnet-ssh-multi-ruby1.8_1.1-2_all + libnet-ssh-multi-ruby1.9.1_1.1-2_all + libnet-ssh-perl_0.09-1_all + libnet-ssh-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby_1:2.5.2-2_all + libnet-ssh2-ruby1.8_1:2.5.2-2_all + libnet-ssh2-ruby1.9.1_1:2.5.2-2_all + libnet-sslglue-perl_1.01-1_all + libnet-stomp-perl_0.45-1_all + libnet-subnets-perl_1.0-1_all + libnet-telnet-cisco-perl_1.10-5_all + libnet-telnet-perl_3.03-3_all + libnet-tftp-perl_0.19-1_all + libnet-tftpd-perl_0.04-2_all + libnet-trac-perl_0.16-1_all + libnet-traceroute-perl_1.13-1_all + libnet-traceroute-pureperl-perl_0.10-1_all + libnet-upnp-perl_1.4.2-1_all + libnet-vnc-perl_0.40-1_all + libnet-whois-parser-perl_0.07-1_all + libnet-whois-raw-perl_2.31-1_all + libnet-whois-ripe-perl_1.23-1_all + libnet-write-perl_1.05-1_all + libnet-xmpp-perl_1.02-3_all + libnet-xwhois-perl_0.90-3_all + libnet-z3950-simple2zoom-perl_1.04-1_all + libnet1-doc_1.1.4-2.1_all + libnetapp-perl_500.002-1_all + libnetbeans-cvsclient-java_6.5-2_all + libnetdot-client-rest-perl_1.02-1_all + libnetpacket-perl_1.3.0-1_all + libnetsds-kannel-perl_1.300-5_all + libnetsds-perl_1.301-2_all + libnetsds-util-perl_1.044-2_all + libnetty-java_1:3.2.6.Final-2_all + libnetty3.1-java_3.1.0.CR1-1_all + libnetwork-ipv4addr-perl_0.10.ds-2_all + libnetx-java_0.5-2_all + libnews-article-nocem-perl_0.08-1_all + libnews-article-perl_1.27-7_all + libnews-newsrc-perl_1.09-3_all + libnews-nntpclient-perl_0.37-8_all + libnews-scan-perl_0.53-3_all + libnewtonsoft-json-cil-dev_4.5r6-1_all + libnewtonsoft-json4.5-cil_4.5r6-1_all + libnfo-doc_1.0.1-1_all + libnice-doc_0.1.2-1_all + libnifti-doc_2.0.0-1_all + libnini-cil-dev_1.1.0+dfsg.2-4_all + libnini-doc_1.1.0+dfsg.2-4_all + libnini1.1-cil_1.1.0+dfsg.2-4_all + libnjb-doc_2.2.7~dfsg0-3_all + libnl-3-doc_3.2.7-4_all + libnl-doc_1.1-7_all + libnm-gtk-common_0.9.4.1-5_all + libnmap-parser-perl_1.05-2_all + libnokogiri-ruby_1.5.5-1_all + libnokogiri-ruby1.8_1.5.5-1_all + libnokogiri-ruby1.9_1.5.5-1_all + libnokogiri-ruby1.9.1_1.5.5-1_all + libnora-ruby1.8_1:0.0.20041021-5.1_all + libnotify-cil-dev_0.4.0~r3032-6_all + libnotify-doc_0.7.5-1_all + libnotify0.4-cil_0.4.0~r3032-6_all + libnumber-bytes-human-perl_0.07-1_all + libnumber-compare-perl_0.03-1_all + libnumber-format-perl_1.73-1_all + libnumber-fraction-perl_1.14-1_all + libnumber-range-perl_0.10-1_all + libnumber-recordlocator-perl_0.005-1_all + libnunit-cil-dev_2.6.0.12051+dfsg-2_all + libnunit-doc_2.6.0.12051+dfsg-2_all + libnunit2.6-cil_2.6.0.12051+dfsg-2_all + libnusoap-php_0.7.3-5_all + liboasis-ocaml-doc_0.2.0-6_all + liboauth-php_0~svn622-1_all + liboauth-ruby1.8_0.4.6-2_all + liboauth-ruby1.9.1_0.4.6-2_all + liboauth-signpost-java_1.2.1.2-1_all + libobject-authority-perl_0.004-1_all + libobject-declare-perl_0.22-2_all + libobject-destroyer-perl_2.00-1_all + libobject-event-perl_1.230-1_all + libobject-id-perl_0.1.2-1_all + libobject-insideout-perl_3.87-1_all + libobject-multitype-perl_0.05-3_all + libobject-pluggable-perl_1.29-1_all + libobject-realize-later-perl_0.18-2_all + libobject-role-perl_0.001-1_all + libobject-signature-perl_1.07-1_all + libobject-tiny-perl_1.06-1_all + libobjenesis-java_1.2+full-3_all + libobjenesis-java-doc_1.2+full-3_all + libocamlgraph-ocaml-doc_1.8.2-2_all + libocamlnet-ocaml-doc_3.5.1-1_all + libocamlviz-ocaml-doc_1.01-2_all + liboce-modeling-dev_0.9.1-3_all + liboce-ocaf-dev_0.9.1-3_all + liboce-ocaf-lite-dev_0.9.1-3_all + liboce-visualization-dev_0.9.1-3_all + libocsigen-ocaml-doc_1.3.4-2_all + libodbc-ruby_0.99994-4_all + libodbc-ruby-doc_0.99994-4_all + libodbc-ruby1.8_0.99994-4_all + libodbc-ruby1.8-dbg_0.99994-4_all + libodbc-ruby1.9.1_0.99994-4_all + libodbc-ruby1.9.1-dbg_0.99994-4_all + libofx-doc_1:0.9.4-2.1_all + libogg-vorbis-header-pureperl-perl_1.0-3_all + libogginfo-ruby_0.6.10-1_all + libogginfo-ruby1.8_0.6.10-1_all + libogginfo-ruby1.9.1_0.6.10-1_all + libognl-java_2.7.3-4_all + libognl-java-doc_2.7.3-4_all + libohai-ruby_6.14.0-2_all + libohai-ruby1.8_6.14.0-2_all + liboil0.3-doc_0.3.17-2_all + libokular-ruby_4:4.8.4-1_all + libokular-ruby1.8_4:4.8.4-1_all + libolap4j-java_1.0.1.500-1_all + libolap4j-java-doc_1.0.1.500-1_all + libole-ruby_1.2.11.3-1_all + libole-ruby-doc_1.2.11.3-1_all + libole-ruby1.8_1.2.11.3-1_all + libole-ruby1.9.1_1.2.11.3-1_all + libole-storage-lite-perl_0.19-1_all + libomxil-bellagio-doc_0.9.3-1_all + libonemind-commons-invoke-java_1.1.0+cvs20090227-4_all + libonemind-commons-java-java_1.5.5-4_all + libooolib-perl_0.1.9-1_all + liboop-doc_1.0-9_all + libopal-doc_3.10.4~dfsg-3_all + libopen4-ruby_1.3.0-1_all + libopen4-ruby1.8_1.3.0-1_all + libopen4-ruby1.9.1_1.3.0-1_all + libopenal-data_1:1.14-4_all + libopenbabel-doc_2.3.1+dfsg-4_all + libopendap-java_2.2-1_all + libopendap-java-doc_2.2-1_all + libopengl-ruby_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.8_0.60.1+dfsg2-1~wheezy1_all + libopengl-ruby1.9.1_0.60.1+dfsg2-1~wheezy1_all + libopenid-ruby_2.1.8debian-6_all + libopenid-ruby1.8_2.1.8debian-6_all + libopenid4java-java_0.9.6.662-1_all + libopenid4java-java-doc_0.9.6.662-1_all + libopenjpa-java_2.0.1-1_all + libopenjpa-java-doc_2.0.1-1_all + libopennebula-java_3.4.1-3.1_all + libopennebula-java-doc_3.4.1-3.1_all + libopenoffice-oodoc-perl_2.125-2_all + libopensrs-perl_3.0.0-1_all + libopentk-cil-dev_1.0.20101006+dfsg1-1_all + libopentk1.0-cil_1.0.20101006+dfsg1-1_all + libopenusb-doc_1.1.0-2_all + libopenvrml-doc_0.18.9-5+deb7u1_all + libopenwalnut1-doc_1.2.5-1.1_all + libopsin-java_1.2.0-1_all + liboptions-java_0.0.20120113-1_all + liboptions-java-doc_0.0.20120113-1_all + libopus-doc_0.9.14+20120615-1+nmu1_all + liborc-0.4-doc_1:0.4.16-2_all + liborlite-migrate-perl_1.10-1_all + liborlite-mirror-perl_1.23-2_all + liborlite-perl_1.97-1_all + liborlite-statistics-perl_0.03-1_all + liboro-java_2.0.8a-8_all + liboro-java-doc_2.0.8a-8_all + liboscache-java_2.4.1+ds1-3_all + libosgi-compendium-java_4.3.0-1_all + libosgi-compendium-java-doc_4.3.0-1_all + libosgi-core-java_4.3.0-3_all + libosgi-core-java-doc_4.3.0-3_all + libosgi-foundation-ee-java_4.2.0-1_all + libosgi-foundation-ee-java-doc_4.2.0-1_all + libosl-doc_0.5.0-1_all + libosm-gary68-perl_0.0~svn26727-1_all + libosmpbf-java_1.2.1-3_all + libouch-perl_0.0401-1_all + libow-util-ant-tasks-java_1.3.2-4_all + libow-util-ant-tasks-java-doc_1.3.2-4_all + libowasp-java-html-sanitizer-java_0.1+r88-1_all + libowasp-java-html-sanitizer-java-doc_0.1+r88-1_all + libowl-directsemantics-perl_0.001-1_all + libownet-perl_2.8p15-1_all + libownet-php_2.8p15-1_all + liboxford-calendar-perl_2.07-1_all + libpackage-deprecationmanager-perl_0.13-1_all + libpackage-new-perl_0.07-1_all + libpackage-pkg-perl_0.0020-1_all + libpackage-stash-perl_0.33-1_all + libpacket-ruby_0.1.15-5_all + libpacket-ruby1.8_0.1.15-5_all + libpacket-ruby1.9.1_0.1.15-5_all + libpadre-plugin-autoformat-perl_1.22-5_all + libpadre-plugin-datawalker-perl_0.04-2_all + libpadre-plugin-git-perl_0.03-2_all + libpadre-plugin-moose-perl_0.21-2_all + libpadre-plugin-parsertool-perl_0.01-1_all + libpadre-plugin-pdl-perl_0.05-2_all + libpadre-plugin-perlcritic-perl_0.12-2_all + libpadre-plugin-perltidy-perl_0.21-1_all + libpadre-plugin-snippet-perl_0.01-1_all + libpadre-plugin-spellcheck-perl_1.29-1_all + libpadre-plugin-svn-perl_0.05-1_all + libpadre-plugin-yaml-perl_0.06-1_all + libpal-java_1.5.1-2_all + libpal-java-doc_1.5.1-2_all + libpalm-perl_1:1.012-1_all + libpam-doc_1.1.3-7.1_all + libpam-foreground_0.7_all + libpam-mklocaluser_0.8~deb7u1_all + libpam-python-doc_1.0.2-1_all + libpam-runtime_1.1.3-7.1_all + libpam4j-java_1.4-2_all + libpam4j-java-doc_1.4-2_all + libpanel-applet-4-doc_3.4.2.1-4_all + libpango1-ruby_1.1.3-2_all + libpango1-ruby1.8_1.1.3-2_all + libpango1-ruby1.8-dbg_1.1.3-2_all + libpango1.0-doc_1.30.0-1_all + libpangomm-1.4-doc_2.28.4-1_all + libpaperclips-java_1.0.4-1_all + libpaperclips-java-doc_1.0.4-1_all + libpar-dist-perl_0.48-1_all + libpar-perl_1.005-1_all + libparallel-forkmanager-perl_0.7.5-2_all + libparallel-iterator-perl_1.00-1_all + libparams-callbackrequest-perl_1.20-1_all + libparams-coerce-perl_0.14-1_all + libparanoid-perl_0.34-1_all + libparse-cpan-meta-perl_1.4404-1_all + libparse-cpan-packages-perl_2.35-1_all + libparse-debcontrol-perl_2.005-3_all + libparse-debian-packages-perl_0.03-1_all + libparse-debianchangelog-perl_1.2.0-1_all + libparse-dia-sql-perl_0.20-1_all + libparse-dmidecode-perl_0.03-1_all + libparse-edid-perl_1.0.1-1_all + libparse-errorstring-perl-perl_0.15-1_all + libparse-fixedlength-perl_5.37-1_all + libparse-http-useragent-perl_0.35-1_all + libparse-mediawikidump-perl_1.0.6-1_all + libparse-method-signatures-perl_1.003014-1_all + libparse-plainconfig-perl_2.06-1_all + libparse-recdescent-perl_1.967009+dfsg-1_all + libparse-syslog-perl_1.10-2_all + libparse-win32registry-perl_1.0-1_all + libparse-yapp-perl_1.05-12_all + libparser++-dev_0.2.3-2_all + libparsetree-ruby_3.0.8-3_all + libparsetree-ruby1.8_3.0.8-3_all + libparted0-i18n_2.3-12_all + libpasswd-unix-perl_0.621-1_all + libpasswdqc-dev_1.2.0-1_all + libpassword-ruby_0.5.3-3_all + libpassword-ruby1.8_0.5.3-3_all + libpath-class-file-stat-perl_0.03-1_all + libpath-class-perl_0.26-1_all + libpath-dispatcher-declarative-perl_0.03-1_all + libpath-dispatcher-perl_1.04-1_all + libpcap-dev_1.3.0-1_all + libpcap-ruby_0.7.0-2_all + libpcap-ruby1.8_0.7.0-2_all + libpdf-api2-perl_2.019-1_all + libpdf-api2-simple-perl_1.1.4u-3_all + libpdf-create-perl_1.06-1_all + libpdf-fdf-simple-perl_0.10-1_all + libpdf-report-perl_1.33-3_all + libpdf-reuse-barcode-perl_0.05-1_all + libpdf-reuse-perl_0.35-2_all + libpdf-table-perl_0.9.5-1_all + libpdfbox-java_1:1.7.0+dfsg-4_all + libpdfbox-java-doc_1:1.7.0+dfsg-4_all + libpdfrenderer-java_0.9.0-1_all + libpeas-common_1.4.0-2_all + libpentaho-reporting-flow-engine-java_0.9.4-4_all + libpentaho-reporting-flow-engine-java-doc_0.9.4-4_all + libperl-apireference-perl_0.09-1_all + libperl-critic-perl_1.117-2_all + libperl-metrics-simple-perl_0.15-1_all + libperl-minimumversion-perl_1.28-1_all + libperl-prereqscanner-perl_1.012-1_all + libperl-version-perl_1.010-1_all + libperl4-corelibs-perl_0.003-1_all + libperl4caml-ocaml-doc_0.9.5-4_all + libperl6-caller-perl_0.100-1_all + libperl6-export-attrs-perl_0.0.3-1_all + libperl6-export-perl_0.07-10_all + libperl6-form-perl_0.04-6_all + libperl6-junction-perl_1.40000-1_all + libperl6-say-perl_0.12-1.1_all + libperl6-slurp-perl_0.051000-1_all + libperlanet-perl_0.56-1_all + libperlbal-perl_1.80-2_all + libperldoc-search-perl_0.01-3_all + libperlio-via-dynamic-perl_0.12-1_all + libperlio-via-symlink-perl_0.05-1.1_all + libperlmenu-perl_4.0-5_all + libperlspeak-perl_2.01-1_all + libperlx-maybe-perl_0.002-1_all + libpetal-perl_2.20-1_all + libpetal-utils-perl_0.06-2_all + libpg-java_9.1-901-2_all + libpgp-sign-perl_0.20-3_all + libpgsql-ruby_0.13.2-2_all + libpgsql-ruby-doc_0.13.2-2_all + libpgsql-ruby1.8_0.13.2-2_all + libpgsql-ruby1.9.1_0.13.2-2_all + libphone-ui-common_1:0.0.1+git20110825-3_all + libphp-adodb_5.15-1_all + libphp-jabber_0.4.3-4_all + libphp-jpgraph_1.5.2-12.1_all + libphp-jpgraph-examples_1.5.2-12.1_all + libphp-magpierss_0.72-10_all + libphp-pclzip_2.8.2-2_all + libphp-phpmailer_5.1-1_all + libphp-serialization-perl_0.34-1_all + libphp-simplepie_1.2.1-3_all + libphp-snoopy_1.2.4-2_all + libphp-swiftmailer_4.1.5-1_all + libpion-net-doc_4.0.7+dfsg-3.1_all + libpixels-java_2.1.3+svn.42-2_all + libpixie-java_1:1.1.6-3_all + libplack-middleware-crossorigin-perl_0.007-1_all + libplack-middleware-deflater-perl_0.08-1_all + libplack-middleware-expires-perl_0.03-1_all + libplack-middleware-file-sass-perl_0.03-2_all + libplack-middleware-reverseproxy-perl_0.14-1_all + libplack-middleware-session-perl_0.14-1_all + libplack-middleware-status-perl_1.101150-1_all + libplack-perl_0.9989-1_all + libplack-test-externalserver-perl_0.01-1_all + libplasma-ruby_4:4.8.4-1_all + libplasma-ruby1.8_4:4.8.4-1_all + libplayer-doc_2.0.1-2.1_all + libplexus-active-collections-java_1.0~beta2-3_all + libplexus-active-collections-java-doc_1.0~beta2-3_all + libplexus-ant-factory-java_1.0~alpha2.1-3_all + libplexus-archiver-java_1.0~alpha12-3_all + libplexus-bsh-factory-java_1.0~alpha7-3_all + libplexus-build-api-java_0.0.4-5_all + libplexus-build-api-java-doc_0.0.4-5_all + libplexus-cdc-java_1.0~alpha14-6_all + libplexus-cipher-java_1.5-4_all + libplexus-cipher-java-doc_1.5-4_all + libplexus-classworlds-java_1.5.0-4_all + libplexus-classworlds-java-doc_1.5.0-4_all + libplexus-classworlds2-java_2.4-1_all + libplexus-classworlds2-java-doc_2.4-1_all + libplexus-cli-java_1.2-3_all + libplexus-cli-java-doc_1.2-3_all + libplexus-compiler-api-java_1.6-2_all + libplexus-compiler-java_1.6-2_all + libplexus-compiler-javac-java_1.6-2_all + libplexus-compiler-manager-java_1.6-2_all + libplexus-component-api-java_1.0.0~alpha22-3_all + libplexus-component-api-java-doc_1.0.0~alpha22-3_all + libplexus-component-metadata-java_1.0~beta3.0.7-5_all + libplexus-container-default-java_1.0-alpha-9-stable-1-6_all + libplexus-container-default-java-doc_1.0-alpha-9-stable-1-6_all + libplexus-containers-java_1.0~beta3.0.7-5_all + libplexus-containers-java-doc_1.0~beta3.0.7-5_all + libplexus-containers1.5-java_1.5.5-2_all + libplexus-containers1.5-java-doc_1.5.5-2_all + libplexus-digest-java_1.1-3_all + libplexus-digest-java-doc_1.1-3_all + libplexus-i18n-java_1.0-beta-10-3_all + libplexus-i18n-java-doc_1.0-beta-10-3_all + libplexus-interactivity-api-java_1.0-alpha-6-7_all + libplexus-interactivity-api-java-doc_1.0-alpha-6-7_all + libplexus-interpolation-java_1.11-3_all + libplexus-interpolation-java-doc_1.11-3_all + libplexus-io-java_1.0~alpha5-2_all + libplexus-maven-plugin-java_1.3.8-7_all + libplexus-maven-plugin-java-doc_1.3.8-7_all + libplexus-sec-dispatcher-java_1.3.1-6_all + libplexus-sec-dispatcher-java-doc_1.3.1-6_all + libplexus-utils-java_1:1.5.15-4_all + libplexus-utils-java-doc_1:1.5.15-4_all + libplexus-utils2-java_2.0.5-1_all + libplexus-utils2-java-doc_2.0.5-1_all + libplexus-velocity-java_1.1.7-5_all + libplexus-velocity-java-doc_1.1.7-5_all + libplib-doc_1:1.8.5-3_all + libplist-doc_1.8-1_all + libplot-perl_2.2.2-5_all + libplotmm-doc_0.1.2-2_all + libplrpc-perl_0.2020-2_all + libplucene-perl_1.25-3_all + libpng++-dev_0.2.5-1_all + libpng-sixlegs-java_2.0-1_all + libpng-sixlegs-java-doc_2.0-1_all + libpoco-doc_1.3.6-1_all + libpod-2-docbook-perl_0.03-2_all + libpod-abstract-perl_0.20-1_all + libpod-constants-perl_0.16-2_all + libpod-coverage-perl_0.22-1_all + libpod-coverage-trustpod-perl_0.100002-1_all + libpod-elemental-perl_0.102362-1_all + libpod-elemental-perlmunger-perl_0.093331-1_all + libpod-eventual-perl_0.093170-1_all + libpod-index-perl_0.14-2_all + libpod-markdown-perl_1.320000-1_all + libpod-plainer-perl_1.03-1_all + libpod-pom-perl_0.27-1_all + libpod-pseudopod-perl_0.18-1_all + libpod-readme-perl_0.11-1_all + libpod-sax-perl_0.14-5_all + libpod-simple-perl_3.22-1_all + libpod-simple-wiki-perl_0.11-1_all + libpod-spell-perl_1.01-2_all + libpod-strip-perl_1.02-1_all + libpod-tests-perl_1.19-3_all + libpod-tree-perl_1.17-1_all + libpod-weaver-perl_3.101637-1_all + libpod-webserver-perl_3.05-1_all + libpod-wordlist-hanekomu-perl_1.121370-1_all + libpod-wsdl-perl_0.061-1_all + libpod-xhtml-perl_1.60-1_all + libpod2-base-perl_0.043-1_all + libpoe-api-peek-perl_2.2000-1_all + libpoe-component-client-dns-perl_1:1.051-1_all + libpoe-component-client-http-perl_0.947-1_all + libpoe-component-client-ident-perl_1.07-2_all + libpoe-component-client-keepalive-perl_0.2710-1_all + libpoe-component-client-mpd-perl_1.121670-1_all + libpoe-component-client-ping-perl_1.171-1_all + libpoe-component-dbiagent-perl_0.26-2_all + libpoe-component-ikc-perl_0.2302-1_all + libpoe-component-irc-perl_6.78+dfsg-1_all + libpoe-component-jabber-perl_3.00-2_all + libpoe-component-jobqueue-perl_0.5700-1_all + libpoe-component-pcap-perl_0.04-2_all + libpoe-component-pubsub-perl_0.05-1_all + libpoe-component-resolver-perl_0.920-1_all + libpoe-component-server-http-perl_0.09-2_all + libpoe-component-server-simplehttp-perl_2.14-1_all + libpoe-component-server-soap-perl_1.14-1_all + libpoe-component-sslify-perl_1.008-1_all + libpoe-component-syndicator-perl_0.06-1_all + libpoe-filter-http-parser-perl_1.06-1_all + libpoe-filter-ircd-perl_2.42-1_all + libpoe-filter-stomp-perl_0.04-1_all + libpoe-filter-xml-perl_0.38-1_all + libpoe-loop-event-perl_1.304-1_all + libpoe-loop-tk-perl_1.304-1_all + libpoe-perl_2:1.3540-1_all + libpoe-test-loops-perl_1.351-1_all + libpoet-perl_0.11-1_all + libpoppler-cil_0.0.3-2_all + libpoppler-cil-dev_0.0.3-2_all + libpoppler-glib-ruby_1.1.3-2_all + libpoppler-glib-ruby1.8_1.1.3-2_all + libpoppler-glib-ruby1.8-dbg_1.1.3-2_all + libportaudio-doc_18.1-7.1_all + libportlet-api-2.0-spec-java_1.0-2_all + libportlet-api-2.0-spec-java-doc_1.0-2_all + libposixlock-ruby_0.0.1-2_all + libpostfix-parse-mailq-perl_1.001-1_all + libpostgis-java_1.5.3-2_all + libpostgresql-gst_3.2.4-2_all + libpostgresql-jdbc-java_9.1-901-2_all + libpostgresql-jdbc-java-doc_9.1-901-2_all + libpostproc-extra-52_6:0.8.9-1_all + libpostscript-file-perl_2.20+dfsg-1_all + libpostscript-perl_0.06-2_all + libpostscript-simple-perl_0.07-2_all + libpostscriptbarcode_20080710-1_all + libppi-html-perl_1.08-1_all + libppi-perl_1.215-1_all + libppix-editortools-perl_0.15-1_all + libppix-regexp-perl_0.028-1_all + libppix-utilities-perl_1.001000-1_all + libppl-doc_0.11.2-8_all + libpqxx3-doc_3.1-1.1_all + libpragmatic-perl_1.7-2_all + libprawn-ruby_1.0.0~rc1+dfsg1-3_all + libprawn-ruby-common_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.8_1.0.0~rc1+dfsg1-3_all + libprawn-ruby1.9.1_1.0.0~rc1+dfsg1-3_all + libprefork-perl_1.04-1_all + libpresage-data_0.8.8-1_all + libpresage-doc_0.8.8-1_all + libprivileges-drop-perl_1.03-1_all + libprobe-perl-perl_0.01-1_all + libproc-background-perl_1.10-1_all + libproc-daemon-perl_0.14-1_all + libproc-fork-perl_0.71-1_all + libproc-invokeeditor-perl_1.06-1_all + libproc-pid-file-perl_1.27-1_all + libproc-reliable-perl_1.16-1_all + libproc-simple-perl_1.30-1_all + libproc-syncexec-perl_1.01-1_all + libproc-waitstat-perl_1.00-4_all + libprocessing-core-java_1.2.1-1_all + libprogressbar-ruby_0.11.0-2_all + libprogressbar-ruby1.8_0.11.0-2_all + libprophet-perl_0.743-1_all + libprotobuf-java_2.4.1-3_all + libproxool-java_0.9.1-6_all + libprpc-perl_0.1005-21_all + libpstreams-dev_0.7.0-2_all + libpt-doc_2.10.4~dfsg-1_all + libpuma-doc_1:1.1+svn20120529-2_all + libpurple-bin_2.10.6-3_all + libpurple-dev_2.10.6-3_all + libqalculate-doc_0.9.7-8_all + libqalculate5-data_0.9.7-8_all + libqca2-doc_2.0.3-4_all + libqdjango-doc_0.2.5-2_all + libqdox-java_1.12-1_all + libqdox-java-doc_1.12-1_all + libqglviewer-dev-common_2.3.4-4.2_all + libqhull-doc_2009.1-3_all + libqjson0-dbg_0.7.1-7_all + libqof-doc_0.8.6-1_all + libqofexpensesobjects-data_0.1.9-2_all + libqofexpensesobjects-doc_0.1.9-2_all + libqscintilla2-dev_2.6.2-2_all + libqscintilla2-doc_2.6.2-2_all + libqt4-ruby_4:4.8.4-1_all + libqt4-ruby1.8_4:4.8.4-1_all + libqtscript4-doc_0.2.0-1_all + libquantum-entanglement-perl_0.32-2_all + libquantum-superpositions-perl_2.02-2_all + libquartz-java_1:1.7.3-3_all + libquartz-java-doc_1:1.7.3-3_all + libquicktime-doc_2:1.2.4-3_all + libquvi-doc_0.4.1-1_all + libquvi-scripts_0.4.19-1~deb7u1_all + libqwt-doc_6.0.0-1.2_all + libqwt5-doc_5.2.2-3_all + libqwtplot3d-doc_0.2.7+svn191-7_all + libqxmlrpc-doc_0.0.svn6-2_all + libqxmpp-doc_0.4.92-1_all + libqxt-doc_0.6.1-6_all + librack-ruby_1.4.1-2.1_all + librack-ruby1.8_1.4.1-2.1_all + librack-ruby1.9.1_1.4.1-2.1_all + libramaze-ruby_2010.06.18-2_all + libramaze-ruby1.8_2010.06.18-2_all + libramaze-ruby1.9.1_2010.06.18-2_all + libraptor1-doc_1.4.21-7.1_all + libraptor2-doc_2.0.8-2_all + libraspell-ruby_1.2-2_all + librasqal3-doc_0.9.29-1_all + libraul-doc_0.8.0+dfsg0-0.1_all + libraw-doc_0.14.6-2_all + libraw1394-doc_2.0.9-1_all + librb-inotify-ruby_0.8.8-2_all + librb-inotify-ruby1.8_0.8.8-2_all + librb-inotify-ruby1.9.1_0.8.8-2_all + librcs-perl_1.05-4_all + librd-html-ext-ruby1.8_0.6.34-4_all + librd-ruby1.8_0.6.34-4_all + librdf-acl-perl_0.102-1_all + librdf-closure-perl_0.001-1_all + librdf-crypt-perl_0.002-2_all + librdf-endpoint-perl_0.05-1_all + librdf-generator-void-perl_0.04-1_all + librdf-helper-perl_2.0-1_all + librdf-helper-properties-perl_0.10-1_all + librdf-icalendar-perl_0.003-1_all + librdf-kml-exporter-perl_0.003-1_all + librdf-linkeddata-perl_0.56-1_all + librdf-ns-perl_20120521-1_all + librdf-prefixes-perl_0.003-1_all + librdf-query-client-perl_0.110-1_all + librdf-query-perl_2.908-1_all + librdf-rdfa-generator-perl_0.102-1_all + librdf-rdfa-parser-perl_1.097-1_all + librdf-trin3-perl_0.136-1_all + librdf-trine-node-literal-xml-perl_0.16-1_all + librdf-trine-perl_1.000-1_all + librdf-trineshortcuts-perl_0.104-1_all + librdf-trinex-functions-perl_0.002-1_all + librdf-vcard-perl_0.010-1_all + libreadline-java-doc_0.8.0.1+dfsg-2_all + libreadonly-perl_1.03-4_all + librecad-data_1.0.2+nolibs-1_all + libred5-java_1.0~svn4374-1_all + libredcloth-ruby_4.2.9-2_all + libredcloth-ruby-doc_4.2.9-2_all + libredcloth-ruby1.8_4.2.9-2_all + libredcloth-ruby1.9.1_4.2.9-2_all + libredis-perl_2:1.9510-2_all + libregexp-assemble-perl_0.35-7_all + libregexp-common-email-address-perl_1.01-4_all + libregexp-common-net-cidr-perl_0.02-1_all + libregexp-common-perl_2011121001-1_all + libregexp-common-time-perl_0.04-1_all + libregexp-grammars-perl_1.016-1_all + libregexp-ipv6-perl_0.03-1_all + libregexp-java_1.5-3_all + libregexp-java-doc_1.5-3_all + libregexp-optimizer-perl_0.15-3_all + libregexp-reggrp-perl_1.002001-1_all + libregexp-shellish-perl_0.93-1.1_all + librelative-perl_0.04-1_all + librelaxng-datatype-java_1.0+ds1-1_all + libreoffice-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dev-doc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-dmaths_3.4+dfsg1-1_all + libreoffice-emailmerge_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-filter-mobiledev_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-en-us_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-help-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-java-common_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-af_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ar_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-as_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-be_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-bs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ca_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cs_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-cy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-da_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-de_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-dz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-el_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-gb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-en-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eo_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-es_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-et_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-eu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fa_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-fr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ga_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-gu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-he_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-hu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-id_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-is_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-it_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ja_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ka_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-km_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ko_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ku_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-lv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ml_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-mr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nb_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ne_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-nso_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-oc_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-om_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-or_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pa-in_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-pt-br_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ro_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ru_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-rw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-si_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sl_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ss_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-st_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-sv_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ta_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-te_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tg_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-th_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-tr_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ts_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ug_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uk_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-uz_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-ve_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-vi_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-xh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-za_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-cn_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zh-tw_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-l10n-zu_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-lightproof-en_0.4.2+1.5~b3-3_all + libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all + libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all + libreoffice-nlpsolver_0.9~beta1-9_all + libreoffice-report-builder_1:1.2.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-bsh_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-js_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-script-provider-python_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-crystal_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-galaxy_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-hicontrast_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-oxygen_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-style-tango_1:3.5.4+dfsg2-0+deb7u2_all + libreoffice-wiki-publisher_1.1.1+LibO3.5.4+dfsg2-0+deb7u2_all + libreoffice-writer2latex_1.0.2-8_all + libreoffice-writer2xhtml_1.0.2-8_all + libreoffice-zemberek_1.0~rc2-10.4_all + librepository-java_1.1.6-2_all + librepository-java-doc_1.1.6-2_all + librest-application-perl_0.992-2_all + librest-doc_0.7.12-3_all + librestclient-ruby_1.6.7-3_all + librestclient-ruby1.8_1.6.7-3_all + libreturn-value-perl_1.666001-1_all + librevolution-ruby_0.5-8_all + librevolution-ruby1.8_0.5-8_all + librfilter-ruby1.8_0.12-2_all + librg-reprof-bundle-perl_1.0.1-1_all + librg-utils-perl_1.0.43-1_all + librhash-cil-dev_1.2.9-8+deb7u1_all + librhash-cil-doc_1.2.9-8+deb7u1_all + librhash-java-doc_1.2.9-8+deb7u1_all + librhash-ruby_1.2.9-8+deb7u1_all + librhash-ruby1.8_1.2.9-8+deb7u1_all + librhash1.0-cil_1.2.9-8+deb7u1_all + librhino-java_1.7R3-5_all + librhino-java-doc_1.7R3-5_all + librivescript-perl_1.26-1_all + librmagick-ruby_2.13.1-6_all + librmagick-ruby-doc_2.13.1-6_all + librmagick-ruby1.8_2.13.1-6_all + librmail-ruby-doc_1.0.0-1_all + librmail-ruby1.8_1.0.0-1_all + librobert-hooke-clojure_1.1.2-1_all + librobust-http-client-java_1.2-2_all + librobust-http-client-java-doc_1.2-2_all + librole-hasmessage-perl_0.005-1_all + librole-identifiable-perl_0.005-1_all + librole-tiny-perl_1.001003-1_all + libroman-perl_1.23-1_all + libromana-perligata-perl_0.55-1_all + librome-java_1.0-3_all + librome-java-doc_1.0-3_all + libromkan-ruby_0.4-9_all + libromkan-ruby1.8_0.4-9_all + libropkg-perl_0.4-1_all + librose-datetime-perl_0.537-1_all + librose-db-object-perl_1:0.798-1_all + librose-db-perl_0.769-1_all + librose-object-perl_0.859-1_all + librose-uri-perl_1.00-1_all + librostlab-blast-doc_1.0.0-2_all + librostlab-doc_1.0.20-1_all + librouter-simple-perl_0.09-1_all + librpc-xml-perl_0.76-3_all + librplay-perl_3.3.2-14_all + librqrcode-ruby_0.4.2-1_all + librqrcode-ruby-doc_0.4.2-1_all + librqrcode-ruby1.8_0.4.2-1_all + librqrcode-ruby1.9_0.4.2-1_all + librrd-ruby_1.4.7-2_all + librrdp-perl_1.4.7-2_all + librrdtool-oo-perl_0.32-1_all + librsl-doc_1.42-2_all + librspec-ruby_2.10.0-2_all + librspec-ruby1.8_2.10.0-2_all + librspec-ruby1.9.1_2.10.0-2_all + librsvg2-2.0-cil-dev_2.26.0-8_all + librsvg2-2.18-cil_2.26.0-8_all + librsvg2-doc_2.36.1-2_all + librsvg2-ruby_1.1.3-2_all + librsvg2-ruby1.8_1.1.3-2_all + librsvg2-ruby1.8-dbg_1.1.3-2_all + librsyntaxtextarea-java_1.5.1-2_all + librsyntaxtextarea-java-doc_1.5.1-2_all + librt-client-rest-perl_1:0.43-1_all + librt-ruby1.8_1.0.3-2_all + librtf-document-perl_0.64-10_all + librtf-writer-perl_1.11-2_all + libruby_1:1.9.3_all + libruby2ruby-ruby_1.3.1-1.1_all + libruby2ruby-ruby1.8_1.3.1-1.1_all + librunapp-perl_0.13-1_all + libsac-java_1.3-6_all + libsac-java-doc_1.3-6_all + libsam-java_1.46-1_all + libsamizdat-ruby_0.7.0-1_all + libsamizdat-ruby1.8_0.7.0-1_all + libsaml2-doc_2.4.3-4_all + libsaxon-java_1:6.5.5-8_all + libsaxon-java-doc_1:6.5.5-8_all + libsaxonb-java_9.1.0.8-1_all + libsaxonb-java-doc_9.1.0.8-1_all + libsbuild-doc_1.6.4-4_all + libsbuild-perl_0.63.2-1.1_all + libsc-data_2.3.1-14_all + libsc-doc_2.3.1-14_all + libscalar-defer-perl_0.23-1_all + libscalar-properties-perl_0.13-1_all + libschedule-at-perl_1.15-1_all + libschedule-cron-perl_0.99-1_all + libschedule-ratelimiter-perl_0.01-1_all + libschroedinger-doc_1.0.11-2_all + libscirenderer-java_0.4.9-1_all + libscirenderer-java-doc_0.4.9-1_all + libscope-guard-perl_0.20-1_all + libscriptalicious-perl_1.16-1_all + libscythestat-dev_1.0.2-1_all + libsdl-gfx1.2-doc_2.0.23-3_all + libsdl-image-gst_3.2.4-2_all + libsdl-mixer-gst_3.2.4-2_all + libsdl-ruby_2.1.2-3_all + libsdl-ruby1.8_2.1.2-3_all + libsdl-ruby1.9.1_2.1.2-3_all + libsdl-sound-gst_3.2.4-2_all + libsdl-ttf-gst_3.2.4-2_all + libsdo-api-java_1.1.1-1_all + libsdo-api-java-doc_1.1.1-1_all + libsearch-estraier-perl_0.09-5_all + libsearch-gin-perl_0.08-1_all + libsearch-queryparser-perl_0.94-1_all + libsegment-java_1.3.5~svn57+dfsg-1.1_all + libselinux-ruby1.8_2.1.9-5_all + libsemanage-common_2.1.6-6_all + libsemanage-ruby1.8_2.1.6-6_all + libsemweb1.0-cil_1.05+dfsg-5_all + libsendmail-pmilter-perl_1.00-1_all + libsequel-ruby_3.36.1-1_all + libsequel-ruby1.8_3.36.1-1_all + libsequel-ruby1.9.1_3.36.1-1_all + libserd-doc_0.14.0~dfsg0-2_all + libserializer-java_1.1.6-4_all + libserialport-ruby_1.1.0-1_all + libserialport-ruby1.8_1.1.0-1_all + libserp-java_1.14.1-1_all + libserp-java-doc_1.14.1-1_all + libservice-wrapper-java_3.5.3+repack-0+nmu1_all + libservlet2.4-java_6.0.35-6+deb7u1_all + libservlet2.5-java_6.0.35-6+deb7u1_all + libservlet2.5-java-doc_6.0.35-6+deb7u1_all + libservlet3.0-java_7.0.28-4_all + libservlet3.0-java-doc_7.0.28-4_all + libset-crontab-perl_1.02-1_all + libset-infinite-perl_0.63-1_all + libset-intspan-perl_1.16-1_all + libset-nestedgroups-perl_0.01-2_all + libset-scalar-perl_1.25-1_all + libsetools-java_3.3.7-3_all + libsetup-ruby1.8_3.4.1-5_all + libsexp-processor-ruby_3.0.7-1_all + libsexp-processor-ruby1.8_3.0.7-1_all + libsexp-processor-ruby1.9.1_3.0.7-1_all + libsexy-doc_0.1.11-2_all + libsezpoz-java_1.9-2_all + libsezpoz-java-doc_1.9-2_all + libsfml-doc_1.6+dfsg2-2_all + libsgmls-perl_1.03ii-32_all + libshadow-ruby1.8_2.1.4-2_all + libshell-command-perl_0.06-3_all + libshell-perl_0.72.01-1_all + libshell-perl-perl_0.0022-1_all + libshell-posix-select-perl_0.05-2_all + libshevek-doc_1.3-1_all + libshibsp-doc_2.4.3+dfsg-5_all + libshoulda-ruby_3.0.0~beta2-1_all + libshoulda-ruby1.8_3.0.0~beta2-1_all + libsidl1.4.0-java_1.4.0.dfsg-8.1_all + libsidplayfp-doc_0.3.5-1_all + libsigc++-2.0-doc_2.2.10-0.2_all + libsikuli-script-doc_1.0~x~rc3.tesseract3-dfsg1-5_all + libsikuli-script-java_1.0~x~rc3.tesseract3-dfsg1-5_all + libsilly-doc_0.1.0-3_all + libsimple-validation-java_0.4-3_all + libsimple-xml-java_2.3.2-1_all + libsimple-xml-java-doc_2.3.2-1_all + libsinatra-ruby_1.3.2-2_all + libsinatra-ruby-doc_1.3.2-2_all + libsinatra-ruby1.8_1.3.2-2_all + libsinatra-ruby1.9.1_1.3.2-2_all + libsisu-guice-java_3.1.1-1_all + libsisu-ioc-java_2.3.0-3_all + libsitemesh-java_2.4.1+dfsg-2_all + libsitemesh-java-doc_2.4.1+dfsg-2_all + libskinlf-java_6.7-8_all + libskinlf-java-demo_6.7-8_all + libskk-common_0.0.12-3_all + libslf4j-java_1.6.5-1_all + libsm-doc_2:1.2.1-2_all + libsmart-comments-perl_1.0.4-1_all + libsmbios-doc_2.0.3.dfsg-1.1_all + libsmi2-common_0.4.8+dfsg2-7_all + libsms-send-perl_1.06-1_all + libsnack2-doc_2.2.10-dfsg1-12.1_all + libsnappy-java_1.0.4.1~dfsg-1_all + libsnmp-base_5.4.3~dfsg-2.7_all + libsnmp-extension-passpersist-perl_0.06-1_all + libsnmp-info-perl_2.06-1_all + libsnmp-mib-compiler-perl_0.06-2_all + libsnmp-multi-perl_2.1-4_all + libsnmp-ruby_1.0.2-1_all + libsnmp-ruby1.8_1.0.2-1_all + libsnmp-session-perl_1.13-1_all + libsnowball-norwegian-perl_1.2-1_all + libsnowball-swedish-perl_1.2-3_all + libsoap-lite-perl_0.714-1_all + libsoap-wsdl-perl_2.00.10-1_all + libsocialtext-resting-perl_0.38-1_all + libsocialtext-resting-utils-perl_0.21-2_all + libsocialweb-client-doc_0.25.20-2.1_all + libsocialweb-common_0.25.20-2.1_all + libsocialweb-doc_0.25.20-2.1_all + libsoftware-license-perl_0.103004-2_all + libsoftware-release-perl_0.02-1_all + libsolr-java_3.6.0+dfsg-1_all + libsoprano-doc_2.7.6+dfsg.1-2wheezy1_all + libsoprano-ruby_4:4.8.4-1_all + libsoprano-ruby1.8_4:4.8.4-1_all + libsord-doc_0.8.0~dfsg0-1_all + libsort-fields-perl_0.90-2_all + libsort-naturally-perl_1.02-1_all + libsort-versions-perl_1.5-4_all + libsoup2.4-doc_2.38.1-2_all + libsource-highlight-common_3.1.6-1.1_all + libspandsp-doc_0.0.6~pre20-3.1_all + libspark-java_1.2-2_all + libspark-java-doc_1.2-2_all + libsparkline-php_0.2-5_all + libsparsehash-dev_1.10-1_all + libsphinx-search-perl_1:0.27.2-2_all + libspice-protocol-dev_0.10.1-1_all + libspiffy-perl_0.30-1_all + libspin-java_1.5+dfsg-5_all + libspin-java-doc_1.5+dfsg-5_all + libspoon-perl_0.24-2_all + libspork-perl_0.20-2_all + libspreadsheet-parseexcel-perl_0.5800-1_all + libspreadsheet-parseexcel-simple-perl_1.04-2_all + libspreadsheet-read-perl_0.41-1_all + libspreadsheet-ruby_0.7.3-1_all + libspreadsheet-ruby-doc_0.7.3-1_all + libspreadsheet-ruby1.8_0.7.3-1_all + libspreadsheet-ruby1.9.1_0.7.3-1_all + libspreadsheet-writeexcel-perl_2.37-1_all + libspreadsheet-xlsx-perl_0.13-1_all + libspring-aop-java_3.0.6.RELEASE-6+deb7u1_all + libspring-beans-java_3.0.6.RELEASE-6+deb7u1_all + libspring-build-java_2.7.0-2_all + libspring-context-java_3.0.6.RELEASE-6+deb7u1_all + libspring-context-support-java_3.0.6.RELEASE-6+deb7u1_all + libspring-core-java_3.0.6.RELEASE-6+deb7u1_all + libspring-expression-java_3.0.6.RELEASE-6+deb7u1_all + libspring-instrument-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jdbc-java_3.0.6.RELEASE-6+deb7u1_all + libspring-jms-java_3.0.6.RELEASE-6+deb7u1_all + libspring-js-2.0-java_2.0.9.RELEASE-4_all + libspring-ldap-java_1.3.1.RELEASE-4_all + libspring-ldap-java-doc_1.3.1.RELEASE-4_all + libspring-orm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-oxm-java_3.0.6.RELEASE-6+deb7u1_all + libspring-security-2.0-java-doc_2.0.7.RELEASE-1_all + libspring-security-acl-2.0-java_2.0.7.RELEASE-1_all + libspring-security-core-2.0-java_2.0.7.RELEASE-1_all + libspring-security-ntlm-2.0-java_2.0.7.RELEASE-1_all + libspring-security-portlet-2.0-java_2.0.7.RELEASE-1_all + libspring-security-taglibs-2.0-java_2.0.7.RELEASE-1_all + libspring-test-java_3.0.6.RELEASE-6+deb7u1_all + libspring-transaction-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-portlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-servlet-java_3.0.6.RELEASE-6+deb7u1_all + libspring-web-struts-java_3.0.6.RELEASE-6+deb7u1_all + libspring-webflow-2.0-java_2.0.9.RELEASE-4_all + libspring-webflow-2.0-java-doc_2.0.9.RELEASE-4_all + libsprng2-doc_2.0a-8_all + libsql-abstract-limit-perl_2:0.14.1-3_all + libsql-abstract-perl_1.72-1_all + libsql-reservedwords-perl_0.7-1_all + libsql-statement-perl_1.33-1_all + libsql-translator-perl_0.11011-1_all + libsqlite3-ruby_1.3.6-2_all + libsqlite3-ruby1.8_1.3.6-2_all + libsqlite3-ruby1.9.1_1.3.6-2_all + libsratom-doc_0.2.0~dfsg0-1_all + libsru-perl_0.99-1_all + libssh-doc_0.5.4-1_all + libssl-doc_1.0.1e-2+deb7u4_all + libssreflect-coq_1.3pl4-1_all + libstapler-adjunct-codemirror-java_1.1-1_all + libstapler-adjunct-timeline-java_1.3+dfsg-1_all + libstapler-adjunct-timeline-java-doc_1.3+dfsg-1_all + libstapler-java_1.182-1_all + libstapler-java-doc_1.182-1_all + libstarlink-ast-doc_7.0.4+dfsg-1_all + libstarlink-pal-doc_0.1.0-1_all + libstat-lsmode-perl_0.50-6_all + libstatistics-basic-perl_1.6607-1_all + libstatistics-descriptive-perl_3.0603-1_all + libstatistics-distributions-perl_1.02-1_all + libstatistics-online-perl_0.02-1_all + libstatistics-r-perl_0.24-1_all + libstatistics-test-randomwalk-perl_0.02-1_all + libstatistics-test-sequence-perl_0.01-1_all + libstax-java_1.2.0-3_all + libstax-java-doc_1.2.0-3_all + libstax2-api-java_3.1.1-1_all + libstaxutils-java_20110309+svn238-1_all + libstaxutils-java-doc_20110309+svn238-1_all + libstdc++6-4.4-doc_4.4.7-2_all + libstdc++6-4.6-doc_4.6.3-14_all + libstdc++6-4.7-doc_4.7.2-5_all + libstfl-ruby_0.22-1_all + libstomp-ruby_1.2.2-2_all + libstomp-ruby-doc_1.2.2-2_all + libstomp-ruby1.8_1.2.2-2_all + libstomp-ruby1.9.1_1.2.2-2_all + libstrictures-perl_1.003001-1_all + libstring-bufferstack-perl_1.15-1_all + libstring-camelcase-perl_0.02-1_all + libstring-dirify-perl_1.02-1_all + libstring-errf-perl_0.006-3_all + libstring-escape-perl_2010.002-1_all + libstring-flogger-perl_1.101242-1_all + libstring-format-perl_1.16-1_all + libstring-formatter-perl_0.102082-1_all + libstring-glob-permute-perl_0.01-1_all + libstring-koremutake-perl_0.30-3_all + libstring-mkpasswd-perl_0.03-1_all + libstring-parity-perl_1.31-1_all + libstring-random-perl_1:0.22-3_all + libstring-rewriteprefix-perl_0.006-1_all + libstring-shellquote-perl_1.03-1_all + libstring-toidentifier-en-perl_0.07-1_all + libstring-tokenizer-perl_0.05-1_all + libstring-truncate-perl_1.100600-1_all + libstringtemplate-java_3.2.1-1_all + libstruct-compare-perl_1.0.1-3_all + libstruts1.2-java_1.2.9-5_all + libstxxl-doc_1.3.1-4_all + libstylebook-java_1.0~b3~svn20061109-6_all + libsub-delete-perl_1.00002-1_all + libsub-exporter-formethods-perl_0.091970-1_all + libsub-exporter-globexporter-perl_0.002-1_all + libsub-exporter-perl_0.984-1_all + libsub-install-perl_0.926-1_all + libsub-override-perl_0.08-4_all + libsub-uplevel-perl_0.2400-1_all + libsub-wrappackages-perl_2.0-1_all + libsublib-cil_0.9-4_all + libsubtitles-perl_1.04-1_all + libsubunit-perl_0.0.8+bzr176-1_all + libsugarext-data_0.96.1-2_all + libsuikyo-ruby1.8_2.1.0-3_all + libsuitesparse-doc_1:3.4.0-3_all + libsunflow-java_0.07.2.svn396+dfsg-9_all + libsunflow-java-doc_0.07.2.svn396+dfsg-9_all + libsuper-perl_1.17-1_all + libsurefire-java_2.10-4_all + libsvg-graph-perl_0.02-2_all + libsvg-graph-ruby_1.0.5-1_all + libsvg-graph-ruby-doc_1.0.5-1_all + libsvg-graph-ruby1.8_1.0.5-1_all + libsvg-graph-ruby1.9.1_1.0.5-1_all + libsvg-perl_2.52-1_all + libsvg-tt-graph-perl_0.21-1_all + libsvgsalamander-java_0~svn95-1_all + libsvgsalamander-java-doc_0~svn95-1_all + libsvm-java_3.12-1_all + libsvm3-java_3.12-1_all + libsvn-class-perl_0.17-1_all + libsvn-doc_1.6.17dfsg-4+deb7u4_all + libsvn-dump-perl_0.05-1_all + libsvn-hooks-perl_1.19-1_all + libsvn-look-perl_0.38-1_all + libsvn-notify-mirror-perl_0.03800-2_all + libsvn-notify-perl_2.81-1_all + libsvn-ruby_1.6.17dfsg-4+deb7u4_all + libsvn-svnlook-perl_0.04-2_all + libsvn-web-perl_0.53-4_all + libsvnclientadapter-java_0.9.100-2_all + libsvnclientadapter-java-doc_0.9.100-2_all + libsvnkit-java_1.3.5+dfsg-4_all + libsvnkit-java-doc_1.3.5+dfsg-4_all + libswarmcache-java_1.0RC2+cvs20071027-6_all + libswe-doc_1.77.00.0005-2_all + libswing-layout-java_1.0.4-2_all + libswing-layout-java-doc_1.0.4-2_all + libswingx-java_1:1.6.2-1_all + libswingx-java-doc_1:1.6.2-1_all + libswingx1-java_1:1.0-1_all + libswingx1-java-doc_1:1.0-1_all + libswish-api-common-perl_0.03-2_all + libswiss-perl_1.67-1_all + libswitch-perl_2.16-2_all + libsword-common_1.6.2+dfsg-5_all + libswscale-extra-2_6:0.8.9-1_all + libswtcalendar-java_0.5-1_all + libswtchart-java_0.8.0-1_all + libswtchart-java-doc_0.8.0-1_all + libsyncml-doc_0.5.4-2.1_all + libsyntax-highlight-engine-kate-perl_0.05+dfsg-1_all + libsyntax-highlight-engine-simple-languages-perl_1_all + libsyntax-highlight-engine-simple-perl_0.09-1_all + libsyntax-highlight-perl-improved-perl_1.01-3_all + libsyntax-keyword-gather-perl_1.001000-1_all + libsyntax-perl_0.004-1_all + libsys-filesystem-perl_1.28-1_all + libsys-hostname-long-perl_1.4-2_all + libsys-sigaction-perl_0.13-1_all + libsys-statistics-linux-perl_0.66-1_all + libsys-syscall-perl_0.23-1_all + libsysactivity-doc_0.6.4-1_all + libsysadm-install-perl_0.39-1_all + libsystem-command-perl_1.07-1_all + libsystemu-ruby_2.5.1-1_all + libsystemu-ruby-doc_2.5.1-1_all + libsystemu-ruby1.8_2.5.1-1_all + libsystemu-ruby1.9.1_2.5.1-1_all + libt1-doc_5.1.2-3.6_all + libtablelayout-java_20090826-2_all + libtacacs+1-dev_4.0.4.19-11_all + libtag1-doc_1.7.2-1_all + libtaglib-cil-dev_2.0.4.0-1_all + libtaglib2.0-cil_2.0.4.0-1_all + libtaktuk-perl_3.7.4-1_all + libtango7-doc_7.2.6+dfsg-14_all + libtangram-perl_2.10-1.1_all + libtaoframework-devil-cil-dev_2.1.svn20090801-9_all + libtaoframework-devil1.6-cil_2.1.svn20090801-9_all + libtaoframework-ffmpeg-cil-dev_2.1.svn20090801-9_all + libtaoframework-ffmpeg0.4-cil_2.1.svn20090801-9_all + libtaoframework-freeglut-cil-dev_2.1.svn20090801-9_all + libtaoframework-freeglut2.4-cil_2.1.svn20090801-9_all + libtaoframework-freetype-cil-dev_2.1.svn20090801-9_all + libtaoframework-freetype2.3-cil_2.1.svn20090801-9_all + libtaoframework-ftgl-cil-dev_2.1.svn20090801-9_all + libtaoframework-ftgl2.1-cil_2.1.svn20090801-9_all + libtaoframework-lua-cil-dev_2.1.svn20090801-9_all + libtaoframework-lua5.1-cil_2.1.svn20090801-9_all + libtaoframework-ode-cil-dev_2.1.svn20090801-9_all + libtaoframework-ode0.9-cil_2.1.svn20090801-9_all + libtaoframework-openal-cil-dev_2.1.svn20090801-9_all + libtaoframework-openal1.1-cil_2.1.svn20090801-9_all + libtaoframework-opengl-cil-dev_2.1.svn20090801-9_all + libtaoframework-opengl3.0-cil_2.1.svn20090801-9_all + libtaoframework-physfs-cil-dev_2.1.svn20090801-9_all + libtaoframework-physfs1.0-cil_2.1.svn20090801-9_all + libtaoframework-sdl-cil-dev_2.1.svn20090801-9_all + libtaoframework-sdl1.2-cil_2.1.svn20090801-9_all + libtap-formatter-html-perl_0.09+dfsg-1_all + libtap-formatter-junit-perl_0.09-1_all + libtap-harness-archive-perl_0.14-1_all + libtap-parser-sourcehandler-pgtap-perl_3.27-2_all + libtask-weaken-perl_1.03-1_all + libtbb-doc_4.0+r233-1_all + libtcltk-ruby_1:1.9.3_all + libtelepathy-farstream-doc_0.4.0-3_all + libtelepathy-glib-doc_0.18.2-2_all + libtelepathy-logger-doc_0.4.0-1_all + libtelepathy-qt4-doc_0.9.1-4_all + libtemplate-alloy-perl_1.016-1_all + libtemplate-declare-perl_0.45-1_all + libtemplate-multilingual-perl_1.00-1_all + libtemplate-perl-doc_2.24-1_all + libtemplate-plugin-calendar-simple-perl_0.02-3_all + libtemplate-plugin-class-perl_0.13-3_all + libtemplate-plugin-clickable-email-perl_0.01-1_all + libtemplate-plugin-clickable-perl_0.06-2_all + libtemplate-plugin-comma-perl_0.04-1_all + libtemplate-plugin-cycle-perl_1.06-1_all + libtemplate-plugin-datetime-format-perl_0.02-1_all + libtemplate-plugin-dbi-perl_2.65-2_all + libtemplate-plugin-gd-perl_2.66-2_all + libtemplate-plugin-gravatar-perl_0.05-1_all + libtemplate-plugin-javascript-perl_0.02-1_all + libtemplate-plugin-json-escape-perl_0.2-1_all + libtemplate-plugin-latex-perl_3.02-1_all + libtemplate-plugin-number-format-perl_1.02-1_all + libtemplate-plugin-textile2-perl_1.21-3_all + libtemplate-plugin-utf8decode-perl_0.01-1_all + libtemplate-plugin-xml-perl_2.17-3_all + libtemplate-plugin-yaml-perl_1.23-1_all + libtemplate-provider-encoding-perl_0.10-2_all + libtemplate-provider-fromdata-perl_0.12-1_all + libtemplate-timer-perl_1.00-2_all + libtemplate-tiny-perl_1.12-1_all + libtemplates-parser-doc_11.6-2_all + libtenjin-perl_0.070001-1_all + libterm-ansicolor-ruby_1.0.7-1_all + libterm-ansicolor-ruby1.8_1.0.7-1_all + libterm-encoding-perl_0.02-1_all + libterm-filter-perl_0.03-1_all + libterm-progressbar-perl_2.13-1_all + libterm-prompt-perl_1.04-1_all + libterm-query-perl_2.0-9_all + libterm-readline-perl-perl_1.0303-1_all + libterm-readline-zoid-perl_0.07-2_all + libterm-readpassword-perl_0.11-2_all + libterm-shell-perl_0.02-3_all + libterm-shellui-perl_0.92-1_all + libterm-size-any-perl_0.001-1_all + libterm-sk-perl_0.11-1_all + libterm-ttyrec-plus-perl_0.09-1_all + libterm-twiddle-perl_2.71-1_all + libterm-visual-perl_0.08-2_all + libterm-vt102-perl_0.91-1_all + libtermios-ruby_0.9.6-2_all + libtermios-ruby1.8_0.9.6-2_all + libterralib-doc_4.0.0-4_all + libtest-aggregate-perl_0.364-1_all + libtest-apocalypse-perl_0.05-1_all + libtest-assertions-perl_1.054-2_all + libtest-autoloader-perl_0.03-1_all + libtest-base-perl_0.60-1_all + libtest-bdd-cucumber-perl_0.11-1_all + libtest-block-perl_0.13-1_all + libtest-carp-perl_0.2-1_all + libtest-cgi-multipart-perl_0.0.3-1_all + libtest-checkchanges-perl_0.14-1_all + libtest-checkdeps-perl_0.002-1_all + libtest-checkmanifest-perl_1.25-1_all + libtest-class-most-perl_0.06-1_all + libtest-class-perl_0.37-1_all + libtest-classapi-perl_1.06-1_all + libtest-cmd-perl_1.05-7_all + libtest-command-perl_0.08-1_all + libtest-compile-perl_0.17-1_all + libtest-consistentversion-perl_0.2.3-1_all + libtest-corpus-audio-mpd-perl_1.120990-1_all + libtest-cpan-meta-perl_0.19-1_all + libtest-cpan-meta-yaml-perl_0.20-1_all + libtest-cukes-perl_0.10-1_all + libtest-data-perl_1.22-1_all + libtest-database-perl_1.11-1_all + libtest-deep-perl_0.110-1_all + libtest-dependencies-perl_0.12-1_all + libtest-differences-perl_0.61-1_all + libtest-dir-perl_1.013-1_all + libtest-distmanifest-perl_1.009-1_all + libtest-distribution-perl_2.00-2_all + libtest-email-perl_0.07-1_all + libtest-eol-perl_1.3-1_all + libtest-exception-perl_0.31-1_all + libtest-exit-perl_0.03-1_all + libtest-expect-perl_0.31-2_all + libtest-fatal-perl_0.010-1_all + libtest-file-contents-perl_0.20-1_all + libtest-file-perl_1.34-1_all + libtest-file-sharedir-perl_0.3.1-1_all + libtest-fixme-perl_0.04-2_all + libtest-harness-perl_3.25-1_all + libtest-hasversion-perl_0.012-1_all + libtest-html-content-perl_0.08-2_all + libtest-html-w3c-perl_0.04-1_all + libtest-http-server-simple-perl_0.10-1_all + libtest-http-server-simple-stashwarnings-perl_0.04-1_all + libtest-identity-perl_0.01-1_all + libtest-image-gd-perl_0.03-2_all + libtest-indistdir-perl_1.112071-1_all + libtest-inline-perl_2.212-1_all + libtest-inter-perl_1.02-1_all + libtest-json-perl_0.11-1_all + libtest-kwalitee-perl_1.01-1_all + libtest-lectrotest-perl_0.3600-2_all + libtest-log-dispatch-perl_0.03-1_all + libtest-log4perl-perl_0.1001-3_all + libtest-longstring-perl_0.15-1_all + libtest-manifest-perl_1.23-1_all + libtest-memory-cycle-perl_1.04-1_all + libtest-minimumversion-perl_0.101080-1_all + libtest-mock-lwp-perl_0.05-1_all + libtest-mock-redis-perl_0.08-1_all + libtest-mockclass-perl_1.04-3_all + libtest-mockmodule-perl_0.05-2_all + libtest-mockobject-perl_1.20120301-1_all + libtest-mockrandom-perl_1.00-1_all + libtest-mocktime-datecalc-perl_5+ds-1_all + libtest-mocktime-perl_0.09-1_all + libtest-module-used-perl_0.2.3-1_all + libtest-most-perl_0.25-1_all + libtest-needsdisplay-perl_1.07-1_all + libtest-nobreakpoints-perl_0.15-1_all + libtest-notabs-perl_1.3-1_all + libtest-nowarnings-perl_1.04-1_all + libtest-number-delta-perl_1.03-2_all + libtest-object-perl_0.07-1_all + libtest-output-perl_1.01-1_all + libtest-perl-critic-perl_1.02-1_all + libtest-pod-content-perl_0.0.6-1_all + libtest-pod-coverage-perl_1.08-3_all + libtest-pod-no404s-perl_0.01-1_all + libtest-pod-perl_1.44-1_all + libtest-poe-client-tcp-perl_1.10-1_all + libtest-poe-server-tcp-perl_1.14-1_all + libtest-portability-files-perl_0.05-2_all + libtest-prereq-perl_1.037-1_all + libtest-rdf-doap-version-perl_0.004-1_all + libtest-rdf-perl_0.26-1_all + libtest-refcount-perl_0.07-1_all + libtest-regression-perl_0.05-1_all + libtest-reporter-perl_1.58-1_all + libtest-requires-perl_0.05-1_all + libtest-routine-perl_0.015-1_all + libtest-script-perl_1.07-2_all + libtest-script-run-perl_0.05-1_all + libtest-sharedfork-perl_0.19-1_all + libtest-signature-perl_1.10-1_all + libtest-simple-perl_0.98-1_all + libtest-simpleunit-perl_1.21-5_all + libtest-spec-perl_0.45-1_all + libtest-spelling-perl_0.15-1_all + libtest-strict-perl_0.14-1_all + libtest-subcalls-perl_1.09-2_all + libtest-synopsis-perl_0.06+ds-1_all + libtest-tcp-perl_1.15-1_all + libtest-tempdir-perl_0.05-1_all + libtest-tester-perl_0.108-1_all + libtest-trap-perl_0.2.2-1_all + libtest-unit-perl_0.25-1_all + libtest-use-ok-perl_0.02-2_all + libtest-useallmodules-perl_0.12-1_all + libtest-utf8-perl_1.00-1_all + libtest-valgrind-perl_1.13-1_all + libtest-warn-perl_0.23-1_all + libtest-weaken-perl_3.018000-1_all + libtest-without-module-perl_0.17-1_all + libtest-www-declare-perl_0.02-2_all + libtest-www-mechanize-catalyst-perl_0.57-1_all + libtest-www-mechanize-cgiapp-perl_0.05-3_all + libtest-www-mechanize-mojo-perl_0.0.10-1_all + libtest-www-mechanize-perl_1.42-1_all + libtest-www-mechanize-psgi-perl_0.35-1_all + libtest-www-selenium-perl_1.33-1_all + libtest-xml-perl_0.08-1_all + libtest-xml-simple-perl_1.01-1_all + libtest-xpath-perl_0.16-1_all + libtest-yaml-meta-perl_0.19-1_all + libtest-yaml-valid-perl_0.04-1_all + libtex-encode-perl_1.3-1_all + libtext-affixes-perl_0.07-1_all + libtext-asciitable-perl_0.20-1_all + libtext-autoformat-perl_1.669002-1_all + libtext-context-eitherside-perl_1.4-1_all + libtext-context-perl_3.7-1_all + libtext-csv-encoded-perl_0.10-2_all + libtext-csv-perl_1.21-1_all + libtext-dhcpleases-perl_0.9-1_all + libtext-diff-perl_1.41-1_all + libtext-english-perl_1.605-4_all + libtext-findindent-perl_0.10-1_all + libtext-flow-perl_0.01-1_all + libtext-format-perl_0.56-1_all + libtext-format-ruby_1.0.0-3_all + libtext-format-ruby-doc_1.0.0-3_all + libtext-format-ruby1.8_1.0.0-3_all + libtext-formattable-perl_1.03-1_all + libtext-german-perl_0.06-2_all + libtext-glob-perl_0.09-1_all + libtext-greeking-perl_0.12-1_all + libtext-header-perl_1.03-2_all + libtext-levenshtein-perl_0.06~01-1_all + libtext-lorem-perl_0.3-1_all + libtext-markdown-perl_1.0.26-1_all + libtext-mediawikiformat-perl_1.0-2_all + libtext-micromason-perl_2.13-1_all + libtext-microtemplate-perl_0.18-1_all + libtext-multimarkdown-perl_1.000034-1_all + libtext-password-pronounceable-perl_0.30-1_all + libtext-patch-perl_1.8-1_all + libtext-pdf-perl_0.29a-1_all + libtext-quoted-perl_2.06-1_all + libtext-recordparser-perl_1.5.0-1_all + libtext-reform-perl_1.20-1_all + libtext-rewriterules-perl_0.24-1_all + libtext-roman-perl_3.3-4_all + libtext-sass-perl_0.95-1_all + libtext-simpletable-perl_1.2-1_all + libtext-tabulardisplay-perl_1.33-1_all + libtext-template-perl_1.45-2_all + libtext-textile-perl_2.12-1_all + libtext-trac-perl_0.15-1_all + libtext-trim-perl_1.02-1_all + libtext-typography-perl_0.01-2_all + libtext-unidecode-perl_0.04-2_all + libtext-vcard-perl_2.10-1_all + libtext-vfile-asdata-perl_0.07-1_all + libtext-wikicreole-perl_0.07-1_all + libtext-wikiformat-perl_0.79-1_all + libtext-worddiff-perl_0.05-1_all + libtext-wrapi18n-perl_0.06-7_all + libtext-wrapper-perl_1.04-1_all + libtggraphlayout-java_122-2_all + libtggraphlayout-java-doc_122-2_all + libthai-data_0.1.18-2_all + libthai-doc_0.1.18-2_all + libtheora-doc_1.1.1+dfsg.1-3.1_all + libtheschwartz-perl_1.07-1_all + libthread-pool-simple-perl_0.25-1_all + libthread-queue-any-perl_1.12-1_all + libthread-serialize-perl_1.00-1_all + libthrowable-perl_0.102080-1_all + libthrust-dev_1.6.0-1_all + libthunar-vfs-1-common_1.2.0-3_all + libticket-simple-perl_0.0.2-2_all + libtidy-ruby_1.1.2+gem2deb-1_all + libtidy-ruby1.8_1.1.2+gem2deb-1_all + libtie-array-iterable-perl_0.03-1_all + libtie-array-sorted-perl_1.41-2_all + libtie-cache-perl_0.17-4_all + libtie-cphash-perl_1.05-1_all + libtie-dbi-perl_1.04-1_all + libtie-dxhash-perl_0.93-1_all + libtie-encryptedhash-perl_1.24-1_all + libtie-hash-regex-perl_1.02-1_all + libtie-ical-perl_0.15-1_all + libtie-ixhash-perl_1.21-2_all + libtie-persistent-perl_1.00-1_all + libtie-refhash-weak-perl_0.09-1_all + libtie-shadowhash-perl_1.00-1_all + libtie-simple-perl_1.03-1_all + libtie-toobject-perl_0.03-3_all + libtiff-doc_4.0.2-6+deb7u2_all + libtiger-types-java_1.4-1_all + libtiger-types-java-doc_1.4-1_all + libtiles-java_2.2.2-3_all + libtiles-java-doc_2.2.2-3_all + libtime-clock-perl_1.01-1_all + libtime-duration-parse-perl_0.06-1_all + libtime-duration-perl_1.06-3_all + libtime-fake-perl_0.11-2_all + libtime-format-perl_1.11-1_all + libtime-human-perl_1.03-2_all + libtime-modules-perl_2011.0517-1_all + libtime-period-perl_1.20-8_all + libtime-piece-mysql-perl_0.06-2_all + libtime-progress-perl_1.7-1_all + libtime-stopwatch-perl_1.00-5_all + libtimedate-perl_1.2000-1_all + libtimingframework-java_1.0-1_all + libtimingframework-java-doc_1.0-1_all + libtinyxml-doc_2.6.2-1_all + libtioga-ruby_1.14-3_all + libtioga-ruby-doc_1.14-3_all + libtioga-ruby1.8_1.14-3_all + libtioga-ruby1.9.1_1.14-3_all + libtitanium-perl_1.04-3_all + libtk-dirselect-perl_1.12-1_all + libtk-filedialog-perl_1.3-4_all + libtk-gbarr-perl_2.08-1_all + libtk-histentry-perl_0.43-2_all + libtk-img-doc_1:1.3-release-12_all + libtk-objscanner-perl_2.012-2_all + libtk-pod-perl_0.9940-1_all + libtk-splashscreen-perl_1.0-3_all + libtm-perl_1.56-3_all + libtmail-ruby-doc_1.2.7.1-3+deb7u1_all + libtmail-ruby1.8_1.2.7.1-3+deb7u1_all + libtnt-dev_1.2.6-1_all + libtogl-dev_1.7-12_all + libtokyocabinet-ruby-doc_1.31-2_all + libtokyocabinet-ruby1.8_1.31-2_all + libtokyocabinet-ruby1.9.1_1.31-2_all + libtomcat-maven-plugin-java_1.1-2_all + libtomcat6-java_6.0.35-6+deb7u1_all + libtomcat7-java_7.0.28-4_all + libtommath-docs_0.42.0-1_all + libtool-doc_2.4.2-1.1_all + libtoolkit-perl_0.0.2-1_all + libtools-logging-clojure_0.2.3-3_all + libtophide-ocaml-dev_1.0.0-3_all + libtorrent-rasterbar-doc_0.15.10-1_all + libtorrent-ruby_0.3-4_all + libtorrent-ruby1.8_0.3-4_all + libtpl-dev_1.5-2_all + libtracker-extract-doc_0.14.1-3_all + libtracker-miner-doc_0.14.1-3_all + libtracker-sparql-doc_0.14.1-3_all + libtrang-java_20091111-5_all + libtransaction-simple-ruby_1.4.0-2_all + libtransaction-simple-ruby-doc_1.4.0-2_all + libtransaction-simple-ruby1.8_1.4.0-2_all + libtravel-routing-de-vrr-perl_2.01-1_all + libtree-dagnode-perl_1.06-1_all + libtree-multinode-perl_1.0.10-2_all + libtree-redblack-perl_0.5-1_all + libtree-simple-perl_1.18-1_all + libtree-simple-visitorfactory-perl_0.10-2_all + libtrident-java_1.3+dfsg-5_all + libtrident-java-doc_1.3+dfsg-5_all + libtrilead-putty-extension-java_1.1-2_all + libtrilead-putty-extension-java-doc_1.1-2_all + libtrilead-ssh2-java_6401-1_all + libtritonus-java_20070428-9_all + libtrollop-ruby_1.16.2-3_all + libtrove-java_2.1.0-2_all + libtrove-java-doc_2.1.0-2_all + libtrove3-java_3.0.2-1_all + libtrove3-java-doc_3.0.2-1_all + libtry-tiny-perl_0.11-1_all + libtut-dev_0.0.20070706-1_all + libtwatch-perl_0.0.7-1_all + libtwitter-ruby1.8_0.7.0-3_all + libtwitter-ruby1.9.1_0.7.0-3_all + libtxw2-java_0.1+20070624-1_all + libtxw2-java-doc_0.1+20070624-1_all + libtyxml-ocaml-doc_2.1-1_all + libtzinfo-ruby_0.3.33-3_all + libtzinfo-ruby1.8_0.3.33-3_all + libtzinfo-ruby1.9.1_0.3.33-3_all + libuconv-ruby1.8_0.5.3-2_all + libuconv-ruby1.9.1_0.5.3-2_all + libuddi4j-java_2.0.5-2_all + libuddi4j-java-doc_2.0.5-2_all + libui-dialog-perl_1.08-1.1_all + libuima-adapter-soap-java_2.4.0-2_all + libuima-adapter-vinci-java_2.4.0-2_all + libuima-addons-java_2.3.1-2_all + libuima-addons-java-doc_2.3.1-2_all + libuima-as-java_2.3.1-3_all + libuima-as-java-doc_2.3.1-3_all + libuima-core-java_2.4.0-2_all + libuima-cpe-java_2.4.0-2_all + libuima-document-annotation-java_2.4.0-2_all + libuima-tools-java_2.4.0-2_all + libuima-vinci-java_2.4.0-2_all + libunicap-docs_0.9.12-2_all + libunicode-escape-perl_0.0.2-2_all + libunicode-maputf8-perl_1.11-2_all + libunicode-stringprep-perl_1.104+dfsg-1_all + libunique-3.0-doc_3.0.2-1_all + libunique-doc_1.1.6-4_all + libuniversal-can-perl_1.20110613-1_all + libuniversal-exports-perl_0.05-2_all + libuniversal-isa-perl_1.20120418-1_all + libuniversal-moniker-perl_0.08-6_all + libuniversal-require-perl_0.13-1_all + libupnp-dev_1:1.6.17-1.2_all + libupnp4-doc_1.8.0~svn20100507-1.2_all + libupnp6-doc_1:1.6.17-1.2_all + libups-nut-perl_2.6.4-2.3+deb7u1_all + liburi-encode-perl_0.061-1_all + liburi-fetch-perl_0.09-1_all + liburi-find-delimited-perl_0.02-6_all + liburi-find-perl_20111103-1_all + liburi-perl_1.60-1_all + liburi-query-perl_0.08-1_all + liburi-smarturi-perl_0.031-1_all + liburi-template-perl_0.16-1_all + liburi-todisk-perl_1.12-1_all + libusb-ruby_0.2.1-2_all + libusb-ruby1.8_0.2.1-2_all + libusb-ruby1.9.1_0.2.1-2_all + libusbhid-common_9.0+ds1-4_all + libuser-identity-perl_0.93-1_all + libuser-perl_1.9-1_all + libuser-simple-perl_1.43-1_all + libustr-doc_1.0.4-3_all + libutf8-all-perl_0.004-1_all + libuuid-tiny-perl_1.0300-2_all + libuuidtools-ruby_2.1.2-2_all + libuuidtools-ruby-doc_2.1.2-2_all + libuuidtools-ruby1.8_2.1.2-2_all + libuuidtools-ruby1.9.1_2.1.2-2_all + libv-perl_0.13-1_all + libva-intel-vaapi-driver_1.0.17-1_all + libva-intel-vaapi-driver-dbg_1.0.17-1_all + libvalhalla-doc_2.0.0-4_all + libvalidatable-ruby_1.6.7-9_all + libvalidatable-ruby1.8_1.6.7-9_all + libvalidatable-ruby1.9.1_1.6.7-9_all + libvalidate-net-perl_0.6-1_all + libvalidation-class-perl_7.70-1_all + libvamsas-client-java_0.2~git2011.10.17+1b42648-1_all + libvcs-lite-perl_0.09-1_all + libvdk2-doc_2.4.0-5.3_all + libvdpau-doc_0.4.1-7_all + libvecmath-java_1.5.2-3_all + libvecmath-java-doc_1.5.2-3_all + libvelocity-tools-java_2.0-2_all + libvelocity-tools-java-doc_2.0-2_all + libvendorlib-perl_0.10-2_all + libversion-next-perl_0.002-1_all + libvi-quickfix-perl_1.134-1_all + libvia-doc_2.0.4-2_all + libvideo-fourcc-info-perl_1.005-1_all + libvigraimpex-doc_1.7.1+dfsg1-3_all + libvips-doc_7.28.5-1+deb7u1_all + libvirt-doc_0.9.12.3-1_all + libvirt-ruby_0.4.0-1_all + libvirt-ruby1.8_0.4.0-1_all + libvisio-doc_0.0.17-1_all + libvitacilina-perl_0.2-1_all + libvldocking-java_2.1.4-4_all + libvmmlib-dev_1.0-2_all + libvoms-api-java-java_2.0.8-2_all + libvoms-api-java-java-doc_2.0.8-2_all + libvorbisspi-java_1.0.3-3_all + libvpb-doc_4.2.55-1_all + libvpx-doc_1.1.0-1_all + libvte-2.90-common_1:0.32.2-1_all + libvte-2.90-doc_1:0.32.2-1_all + libvte-common_1:0.28.2-5_all + libvte-doc_1:0.28.2-5_all + libvte-ruby_1.1.3-2_all + libvte-ruby1.8_1.1.3-2_all + libvte-ruby1.8-dbg_1.1.3-2_all + libwacom-common_0.6-1_all + libwagon-java_1.0.0-2_all + libwagon-java-doc_1.0.0-2_all + libwagon2-java_2.2-3+nmu1_all + libwarnings-illegalproto-perl_0.001000-1_all + libweather-com-perl_0.5.3-2_all + libweb-id-perl_1.921-3_all + libweb-scraper-perl_0.36-1_all + libweb-simple-perl_0.016-1_all + libwebapp-ruby1.8_0.4-2.1_all + libwebinject-perl_1.74-1_all + libwebkdc-perl_4.1.1-2_all + libwebkit-cil-dev_0.3-6_all + libwebkit1.1-cil_0.3-6_all + libwebkitgtk-1.0-common_1.8.1-3.4_all + libwebkitgtk-3.0-common_1.8.1-3.4_all + libwebservice-cia-perl_1.4-1_all + libwebservice-musicbrainz-perl_0.93-1_all + libwebservice-solr-perl_0.19-1_all + libwebservice-validator-css-w3c-perl_0.2-1_all + libwebservice-validator-html-w3c-perl_0.28-1_all + libwebservice-youtube-perl_1.0.3-3_all + libwerken.xpath-java_0.9.4-14_all + libwerken.xpath-java-doc_0.9.4-14_all + libwfmath-doc_0.3.12-3_all + libwhisker2-perl_2.5-1_all + libwhy-coq_2.30+dfsg-5_all + libwiki-toolkit-formatter-usemod-perl_0.23-1_all + libwiki-toolkit-perl_0.80-1_all + libwiki-toolkit-plugin-categoriser-perl_0.08-1_all + libwiki-toolkit-plugin-diff-perl_0.12-3_all + libwiki-toolkit-plugin-json-perl_0.03-1_all + libwiki-toolkit-plugin-locator-grid-perl_0.05-4_all + libwiki-toolkit-plugin-ping-perl_0.03-1_all + libwiki-toolkit-plugin-rss-reader-perl_1.6-1_all + libwildmidi-config_0.2.3.4-2.1_all + libwill-paginate-ruby_3.0.3-1_all + libwill-paginate-ruby-doc_3.0.3-1_all + libwill-paginate-ruby1.8_3.0.3-1_all + libwine-gecko-1.4_1.4+dfsg1-3_all + libwine-gecko-dbg-1.4_1.4+dfsg1-3_all + libwirble-ruby_0.1.3-4_all + libwirble-ruby-doc_0.1.3-4_all + libwirble-ruby1.8_0.1.3-4_all + libwirble-ruby1.9.1_0.1.3-4_all + libwireshark-data_1.8.2-5wheezy9_all + libwmf-doc_0.2.8.4-10.3_all + libwnck-3-common_3.4.2-1_all + libwnck-common_2.30.7-1_all + libwoodstox-java_1:4.1.3-1_all + libwordnet-querydata-perl_1.48-1_all + libwpd-doc_0.9.4-3_all + libwpg-doc_0.2.1-1_all + libwps-doc_0.2.7-1_all + libwreport-doc_2.4-1_all + libwriter2latex-java_1.0.2-8_all + libwriter2latex-java-doc_1.0.2-8_all + libws-commons-util-java_1.0.1-7_all + libwsdl2c-java_0.1-1_all + libwsdl4j-java_1.6.2-4_all + libwsdl4j-java-doc_1.6.2-4_all + libwsil4j-java_1.0.0-1_all + libwsil4j-java-doc_1.0.0-1_all + libwss4j-java_1.5.8+svntag-2_all + libwt-common_3.2.1-2_all + libwt-doc_3.2.1-2_all + libwvstreams4.6-doc_4.6.1-5_all + libwww-bugzilla-perl_1.5-1_all + libwww-cnic-perl_0.38-1_all + libwww-facebook-api-perl_0.4.18-1_all + libwww-finger-perl_0.104-1_all + libwww-freshmeat-perl_0.22-1_all + libwww-google-calculator-perl_0.07-1_all + libwww-indexparser-perl_0.91-1_all + libwww-mechanize-autopager-perl_0.02-2_all + libwww-mechanize-formfiller-perl_0.10-2_all + libwww-mechanize-gzip-perl_0.12-1_all + libwww-mechanize-perl_1.71-1_all + libwww-mechanize-ruby_2.3-2_all + libwww-mechanize-ruby-doc_2.3-2_all + libwww-mechanize-ruby1.8_2.3-2_all + libwww-mechanize-ruby1.9.1_2.3-2_all + libwww-mechanize-shell-perl_0.52-1_all + libwww-mechanize-treebuilder-perl_1.10003-1_all + libwww-mediawiki-client-perl_0.31-2_all + libwww-nicovideo-download-perl_0.06-1_all + libwww-opensearch-perl_0.16-1_all + libwww-perl_6.04-1_all + libwww-robotrules-perl_6.01-1_all + libwww-search-perl_2.50.80-1_all + libwww-shorten-perl_3.03-1_all + libwww-topica-perl_0.6-4_all + libwww-wikipedia-perl_2.00-1_all + libwwwbrowser-perl_2.23-2_all + libwx-perl-datawalker-perl_0.02-1_all + libwx-perl-processstream-perl_0.32-1_all + libx11-data_2:1.5.0-1+deb7u1_all + libx11-doc_2:1.5.0-1+deb7u1_all + libx11-freedesktop-desktopentry-perl_0.04-3_all + libx11-protocol-perl_0.56-4_all + libx500-dn-perl_0.29-4_all + libxalan110-doc_1.10-6_all + libxalan2-java_2.7.1-7_all + libxalan2-java-doc_2.7.1-7_all + libxapool-java_1.5.0-3_all + libxaw-doc_2:1.0.10-2_all + libxbean-java_3.7-5_all + libxbean-java-doc_3.7-5_all + libxcb-doc_1.8.1-2+deb7u1_all + libxerces-c-doc_3.1.1-3_all + libxerces-c2-doc_2.8.0+deb1-3_all + libxerces2-java_2.11.0-6_all + libxerces2-java-doc_2.11.0-6_all + libxext-doc_2:1.3.1-2+deb7u1_all + libxfce4util-common_4.8.2-1_all + libxine1-all-plugins_1.1.21-1_all + libxine1-doc_1.1.21-1_all + libxine1-plugins_1.1.21-1_all + libxine2-all-plugins_1.2.2-4_all + libxine2-doc_1.2.2-4_all + libxine2-plugins_1.2.2-4_all + libxml++2.6-doc_2.34.2-1_all + libxml-atom-fromowl-perl_0.101-1_all + libxml-atom-microformats-perl_0.003-3_all + libxml-atom-owl-perl_0.103-1_all + libxml-atom-perl_0.41-1_all + libxml-atom-service-perl_0.16.2-1_all + libxml-atom-simplefeed-perl_0.86-1_all + libxml-autowriter-perl_0.40-2_all + libxml-checker-perl_0.13-5_all + libxml-commonns-perl_0.06-1_all + libxml-commons-external-java_1.4.01-2_all + libxml-commons-external-java-doc_1.4.01-2_all + libxml-commons-resolver1.1-java_1.2-7_all + libxml-commons-resolver1.1-java-doc_1.2-7_all + libxml-csv-perl_0.15-8_all + libxml-dom-perl_1.44-1_all + libxml-dom-xpath-perl_0.14-1_all + libxml-dt-perl_0.62-1_all + libxml-dtdparser-perl_2.01-4_all + libxml-dumper-perl_0.81-1_all + libxml-easyobj-perl_1.12-3_all + libxml-encoding-perl_2.08-1_all + libxml-feed-perl_0.48+dfsg-1_all + libxml-feedpp-mediarss-perl_0.02-1_all + libxml-feedpp-perl_0.43-1_all + libxml-filter-buffertext-perl_1.01-5_all + libxml-filter-detectws-perl_0.01-7_all + libxml-filter-reindent-perl_0.03-7_all + libxml-filter-saxt-perl_0.01-7_all + libxml-filter-sort-perl_1.01-3_all + libxml-filter-xslt-perl_0.03-8_all + libxml-generator-perl_1.04-1_all + libxml-grddl-perl_0.003-1_all + libxml-grove-perl_0.46alpha-12_all + libxml-handler-composer-perl_0.01-7_all + libxml-handler-printevents-perl_0.01-7_all + libxml-handler-trees-perl_0.02-6_all + libxml-handler-yawriter-perl_0.23-6_all + libxml-java_1.1.6.dfsg-3_all + libxml-libxml-debugging-perl_0.102-1_all + libxml-libxml-iterator-perl_1.04-1_all + libxml-libxml-lazybuilder-perl_0.03-1_all + libxml-libxml-simple-perl_0.91-1_all + libxml-mini-perl_1.38-2_all + libxml-namespace-perl_0.02-1_all + libxml-namespacefactory-perl_1.00-1_all + libxml-namespacesupport-perl_1.09-3_all + libxml-node-perl_0.11-7_all + libxml-nodefilter-perl_0.01-6_all + libxml-opml-perl_0.26-2_all + libxml-opml-simplegen-perl_0.06-1_all + libxml-parser-lite-tree-perl_0.14-1_all + libxml-parser-ruby_0.7.2-2_all + libxml-parser-ruby1.8_0.7.2-2_all + libxml-parser-ruby1.9.1_0.7.2-2_all + libxml-perl_0.08-2_all + libxml-qofqsf-perl_0.05-1_all + libxml-regexp-perl_0.04-1_all + libxml-rss-feed-perl_2.212-1_all + libxml-rss-libxml-perl_0.3102+dfsg-1_all + libxml-rss-perl_1.49-1_all + libxml-rss-simplegen-perl_11.11-2_all + libxml-rsslite-perl_0.15+dfsg-2_all + libxml-ruby_2.3.2-1_all + libxml-ruby1.8_2.3.2-1_all + libxml-ruby1.9.1_2.3.2-1_all + libxml-sax-base-perl_1.07-1_all + libxml-sax-expat-incremental-perl_0.05-2_all + libxml-sax-expat-perl_0.40-2_all + libxml-sax-machines-perl_0.42-1_all + libxml-sax-perl_0.99+dfsg-2_all + libxml-sax-writer-perl_0.53-1_all + libxml-security-java_1.4.5-1_all + libxml-security-java-doc_1.4.5-1_all + libxml-semanticdiff-perl_1.00.00-1_all + libxml-simple-perl_2.20-1_all + libxml-simple-ruby_1.1.1-1_all + libxml-simpleobject-enhanced-perl_0.53-2_all + libxml-simpleobject-libxml-perl_0.53-2_all + libxml-simpleobject-perl_0.53-2_all + libxml-smart-perl_1.6.9-3_all + libxml-stream-perl_1.23-2_all + libxml-tidy-perl_1.12.B55J2qn-1_all + libxml-tmx-perl_0.22-1_all + libxml-tokeparser-perl_0.05-3_all + libxml-treebuilder-perl_4.0-1_all + libxml-treepp-perl_0.39-1_all + libxml-twig-perl_1:3.39-1_all + libxml-um-perl_0.01-8_all + libxml-validate-perl_1.025-2_all + libxml-validator-schema-perl_1.10-1_all + libxml-writer-perl_0.615-1_all + libxml-writer-simple-perl_0.08-1_all + libxml-writer-string-perl_0.1-1_all + libxml-xpath-perl_1.13-7_all + libxml-xpathengine-perl_0.13-1_all + libxml-xql-perl_0.68-6_all + libxml-xslt-perl_0.48-3_all + libxml-xupdate-libxml-perl_0.6.0-1_all + libxml2-doc_2.8.0+dfsg1-7+nmu2_all + libxmlada-doc_4.1-2_all + libxmlbeans-java_2.5.0-4_all + libxmlbeans-maven-plugin-java_2.3.3-3_all + libxmlbeans-maven-plugin-java-doc_2.3.3-3_all + libxmlgraphics-commons-java_1.4.dfsg-4_all + libxmlrpc-c3-dev_1.16.33-3.2_all + libxmlrpc3-client-java_3.1.3-5_all + libxmlrpc3-common-java_3.1.3-5_all + libxmlrpc3-java-doc_3.1.3-5_all + libxmlrpc3-server-java_3.1.3-5_all + libxmltooling-doc_1.4.2-5_all + libxmltv-perl_0.5.63-2_all + libxmlunit-java_1.3-2_all + libxmlunit-java-doc_1.3-2_all + libxmmsclient-ruby_0.8+dfsg-4_all + libxmmsclient-ruby1.8_0.8+dfsg-4_all + libxmu-headers_2:1.1.1-1_all + libxom-java_1.2.1-3_all + libxom-java-doc_1.2.1-3_all + libxpp2-java_2.1.10-7_all + libxpp3-java_1.1.4c-2_all + libxray-absorption-perl_3.0.1-1_all + libxray-scattering-perl_3.0.1-1_all + libxray-spacegroup-perl_0.1.1-2_all + libxrd-parser-perl_0.103-1_all + libxsettings-client-doc_0.17-6_all + libxsltc-java_2.7.1-7_all + libxslthl-java_2.0.2-4_all + libxstream-java_1.4.2-1_all + libxstrp4-camlp4-dev_1.8-3_all + libxt-doc_1:1.1.3-1+deb7u1_all + libxtst-doc_2:1.2.1-1+deb7u1_all + libxz-java_1.0-2_all + libxz-java-doc_1.0-2_all + libyajl-doc_2.0.4-2_all + libyaml-appconfig-perl_0.16-2_all + libyaml-perl_0.81-1_all + libyaml-shell-perl_0.60-1_all + libyaml-tiny-perl_1.51-1_all + libyanfs-java_0.0+cvs20070825-4_all + libyecht-java_0.0.2-2_all + libzarith-ocaml-doc_1.1-2_all + libzeitgeist-cil-dev_0.8.0.0-4_all + libzeitgeist-doc_0.3.18-1_all + libzeitgeist0.8-cil_0.8.0.0-4_all + libzemberek-java_2.1.1-8.1_all + libzemberek-java-doc_2.1.1-8.1_all + libzemberek-tk-java_2.1.1-8.1_all + libzemberek-tr-java_2.1.1-8.1_all + libzen-doc_0.4.27-2_all + libzeroc-ice3.4-cil_3.4.2-8.2_all + libzeroc-ice3.4-java_3.4.2-8.2_all + libzinnia-doc_0.06-1_all + libzip-ruby1.8_0.9.4-1_all + libzip-ruby1.9.1_0.9.4-1_all + libzipios++-doc_0.1.5.9+cvs.2007.04.28-5.1_all + libzita-resampler-doc_1.1.0-3_all + libzlcore-data_0.12.10dfsg-8_all + libzltext-data_0.12.10dfsg-8_all + libzookeeper-java_3.3.5+dfsg1-2_all + libzookeeper-java-doc_3.3.5+dfsg1-2_all + libzoom-ruby_0.4.1-5_all + libzoom-ruby1.8_0.4.1-5_all + libzvbi-common_0.2.33-6_all + libzvbi-doc_0.2.33-6_all + licq-dev_1.6.1-3_all + licq-plugin-kde_1.6.1-3_all + licq-plugin-qt_1.6.1-3_all + licq-plugin-qt4-common_1.6.1-3_all + liece_2.0+0.20030527cvs-11_all + lifelines-doc_3.0.61-2_all + lifelines-doc-sv_3.0.61-2_all + lifelines-reports_3.0.61-2_all + liferea-data_1.8.6-1.1_all + lightsquid_1.8-3_all + lighttpd-doc_1.4.31-4+deb7u2_all + lightyears_1.4-1_all + liguidsoap_1.0.1+repack1-1.1_all + lilo-doc_1:23.2-4_all + lilypond-data_2.14.2-4_all + lilypond-doc_2.14.2-4_all + lincity-ng-data_2.0-2_all + lincredits_0.7_all + link-grammar-dictionaries-en_4.7.4-2_all + link-grammar-dictionaries-lt_4.7.4-2_all + link-monitor-applet-common_3.0-8_all + linkchecker-gui_7.9-2_all + linkchecker-web_7.9-2_all + linklint_2.3.5-5_all + linphone-common_3.5.2-10_all + lintian_2.5.10.4_all + linux-base_3.5_all + linux-doc_3.2+46_all + linux-doc-2.6_1:3.2+46_all + linux-doc-3.2_3.2.54-2_all + linux-manual-3.2_3.2.54-2_all + linux-patch-debianlogo_1.16_all + linux-patch-grsecurity2_2.9.1+3.2.21-201206221855-1_all + linux-patch-xenomai_2.6.0-2_all + linux-source_3.2+46_all + linux-source-2.6_1:3.2+46_all + linux-source-3.2_3.2.54-2_all + linux-support-3.2.0-4_3.2.54-2_all + linux-tools_3.2+46_all + linux-tools-2.6_3.2+46_all + linux-wlan-ng-doc_0.2.9+dfsg-5_all + linuxdoc-tools-info_0.9.68_all + linuxdoc-tools-latex_0.9.68_all + linuxdoc-tools-text_0.9.68_all + liquidwar-data_5.6.4-3_all + lire_2:2.1.1-2_all + lire-devel-doc_2:2.1.1-2_all + lire-doc_2:2.1.1-2_all + lisaac-common_1:0.39~rc1-1_all + lisaac-doc_1:0.39~rc1-1_all + lisaac-mode_1:0.39~rc1-1_all + listadmin_2.40-4_all + littlewizard-data_1.2.2-1_all + live-boot_3.0.1-1_all + live-boot-doc_3.0.1-1_all + live-boot-initramfs-tools_3.0.1-1_all + live-build_3.0.5-1_all + live-build-cgi_3.0.5-1_all + live-config_3.0.23-1_all + live-config-doc_3.0.23-1_all + live-config-systemd_3.0.23-1_all + live-config-sysvinit_3.0.23-1_all + live-config-upstart_3.0.23-1_all + live-manual_1:3.0.2-1_all + live-manual-epub_1:3.0.2-1_all + live-manual-html_1:3.0.2-1_all + live-manual-odf_1:3.0.2-1_all + live-manual-pdf_1:3.0.2-1_all + live-manual-txt_1:3.0.2-1_all + live-tools_3.0.20-1_all + lives-data_1.6.2~ds1-2_all + llgal_0.13.17-2_all + lltag_0.14.4-2_all + llvm-2.9-doc_2.9+dfsg-7_all + llvm-2.9-examples_2.9+dfsg-7_all + llvm-2.9-source_2.9+dfsg-7_all + llvm-3.0-doc_3.0-10_all + llvm-3.0-examples_3.0-10_all + llvm-3.0-source_3.0-10_all + llvm-3.1-doc_3.1-1_all + llvm-3.1-examples_3.1-1_all + llvm-3.1-source_3.1-1_all + lmms-common_0.4.10-2.3_all + lmodern_2.004.2-1_all + localepurge_0.6.3+deb7u1_all + locales_2.13-38+deb7u1_all + localization-config_1.07+nmu1_all + logcheck_1.3.15_all + logcheck-database_1.3.15_all + loggerhead_1.19~bzr461-1_all + loggerhead-doc_1.19~bzr461-1_all + logidee-tools_1.2.12_all + logisim_2.7.1~dfsg-1_all + logreq_1.0-1_all + logtail_1.3.15_all + logwatch_7.4.0+svn20120502rev103-1_all + lojban-common_1.5+dfsg-0.1_all + loki-doc_2.4.7.4-4_all + londonlaw_0.2.1-15.1_all + lookup-el_1.4.1-8_all + lordsawar-data_0.2.0-2.1_all + lottanzb_0.6-1_all + lout-common_3.39-1_all + lout-doc_3.39-1_all + love-doc_0.8.0-1+deb7u1_all + lp-solve-doc_5.5.0.13-7_all + lprng-doc_3.8.A~rc2-3_all + lptools_0.0.1~bzr38-1_all + lsb_4.1+Debian8+deb7u1_all + lsb-base_4.1+Debian8+deb7u1_all + lsb-invalid-mta_4.1+Debian8+deb7u1_all + lsb-release_4.1+Debian8+deb7u1_all + lsdb_0.11-10_all + lsh-doc_2.0.4-dfsg-11_all + lshell_0.9.15.1-1_all + ltsp-controlaula_1.8.0-3_all + ltsp-docs_1.1-1_all + ltsp-server_5.4.2-6_all + ltsp-server-standalone_5.4.2-6_all + ltspfsd_1.1-2_all + lua-cgi_5.1.4+dfsg-2_all + lua-copas_1.1.6-5_all + lua-cosmo_10.04.06-4_all + lua-coxpcall_1.13.0-6_all + lua-dbi-common_0.5+svn78-4_all + lua-doc_3.0.1-5_all + lua-json_1.3-1_all + lua-leg_0.1.2-8_all + lua-leg-dev_0.1.2-8_all + lua-logging_1.2.0-1_all + lua-markdown_0.32-4_all + lua-mode_20110121-1_all + lua-orbit_2.2.0+dfsg1-1_all + lua-penlight_1.0.2+htmldoc-2_all + lua-penlight-dev_1.0.2+htmldoc-2_all + lua-rex-doc_2.6.0-2_all + lua-soap_3.0-3_all + lua-sql-doc_2.3.0-1+build0_all + lua-wsapi_1.5-3_all + lua-wsapi-doc_1.5-3_all + lua-xmlrpc_1.2.1-5_all + lua5.1-doc_5.1.5-4_all + lua5.1-policy_33_all + lua5.1-policy-dev_33_all + lua5.2-doc_5.2.1-3_all + lua50-doc_5.0.3-6_all + luadoc_3.0.1-5_all + luarocks_2.0.9-1_all + luasseq_2.1-4_all + luckybackup-data_0.4.7-2_all + ludevit_7_all + lunch_0.4.0-1_all + luola-data_1.3.2-9_all + luola-levels_6.0-5_all + luola-nostalgy_1.2-3_all + lush-library_1.2.1-9+cvs20110227+nmu1_all + lutefisk-doc_1.0.5a.cleaned-1_all + lv2-c++-tools-doc_1.0.4-3_all + lv2core_6.0+dfsg0-2_all + lxctl_0.3.1+debian-2_all + lxde_4+nmu1_all + lxde-common_0.5.5-6_all + lxde-core_4+nmu1_all + lxde-icon-theme_0.5.0-1_all + lxmenu-data_0.1.2-2_all + lybniz_1.3.2-2_all + lynis_1.3.0-1_all + lynx_2.8.8dev.12-2_all + lynx-cur-wrapper_2.8.8dev.12-2_all + lyskom-elisp-client_0.48+cvs20100715-3_all + lyx-common_2.0.3-3_all + lzma-dev_9.22-2_all + m17n-contrib_1.1.13-2_all + m17n-db_1.6.3-2_all + m17n-docs_1.6.2-2_all + m2300w_0.51-7_all + m4-doc_1.4.16-3_all + macchanger-gtk_1.1-4_all + madbomber-data_0.2.5-5_all + madison-lite_0.15_all + madlib-doc_1.3.0-2.1_all + magic-haskell-doc_1:8_all + magicmaze_1.4.3.2.dfsg-1.1_all + magicor_1.1-4_all + magicor-data_1.1-4_all + magit_1.1.1-2_all + mail-expire_0.7_all + mailcrypt_3.5.9-5_all + maildirsync_1.2-1_all + mailgraph_1.14-11_all + mailping_0.0.4-2_all + mailplate_0.2-1_all + mailutils-common_1:2.99.97-3_all + mailutils-doc_1:2.99.97-3_all + maint-guide_1.2.31_all + maint-guide-ca_1.2.31_all + maint-guide-es_1.2.31_all + maint-guide-fr_1.2.31_all + maint-guide-it_1.2.31_all + maint-guide-ja_1.2.31_all + maint-guide-ru_1.2.31_all + makedev_2.3.1-92_all + makejail_0.0.5-10_all + makepasswd_1.10-8_all + makepatch_2.03-1_all + makeself_2.1.5-1_all + malaga-doc_7.12-4_all + malaga-mode_7.12-4_all + mana-data_0.6.1-2_all + manderlbot_0.9.2-17_all + mandos_1.5.5-1_all + manpages_3.44-1_all + manpages-de_1.2-1_all + manpages-de-dev_1.2-1_all + manpages-dev_3.44-1_all + manpages-es_1.55-10_all + manpages-es-extra_0.8a-17_all + manpages-fr_3.44d1p1-1_all + manpages-fr-dev_3.44d1p1-1_all + manpages-fr-extra_20130226_all + manpages-hu_20010119-5_all + manpages-it_2.80-3_all + manpages-ja_0.5.0.0.20120606-1_all + manpages-ja-dev_0.5.0.0.20120606-1_all + manpages-pl_1:0.3-1_all + manpages-pl-dev_1:0.3-1_all + manpages-pt_20040726-4_all + manpages-pt-dev_20040726-4_all + manpages-ru_0.98-4_all + manpages-tr_1.0.5.1-2_all + manpages-zh_1.5.2-1_all + mantis_1.2.11-1.2_all + mapivi_0.9.7-1_all + mapnik-doc_2.0.0+ds1-3_all + mapserver-doc_6.0.1-3.2+deb7u2_all + maptransfer_0.3-1_all + maptransfer-server_0.3-1_all + maradns-docs_1.4.12-5_all + marble-data_4:4.8.4-3_all + maria-doc_1.3.5-4_all + markdown_1.0.1-7_all + mason_1.0.0-12.3_all + massxpert-data_3.2.3-1_all + massxpert-doc_3.2.3-1_all + mat_0.3.2-1_all + matchbox_1:5_all + matchbox-common_0.9.1-5_all + matchbox-themes-extra_0.3-3_all + mathgl-doc-en_1.11.2-17_all + mathgl-doc-ru_1.11.2-17_all + mathpartir_1.2.0-3_all + mathpiper_0.81f+svn4469+dfsg3-1_all + matlab-support-dev_0.0.18_all + mauve_20120103-1_all + maven_3.0.4-3_all + maven-ant-helper_7.7_all + maven-debian-helper_1.5.1_all + maven-repo-helper_1.7.1_all + maven2_2.2.1-12_all + maxima-doc_5.27.0-3_all + maxima-emacs_5.27.0-3_all + maxima-share_5.27.0-3_all + maxima-src_5.27.0-3_all + maxima-test_5.27.0-3_all + mazeofgalious-data_0.62.dfsg2-3_all + mb2md_3.20-4_all + mbot_0.3-7_all + mboxcheck_0.2.0_all + mc-data_3:4.8.3-10_all + mcl-doc_1:12-068-1_all + mcollective_2.0.0+dfsg-2_all + mcollective-client_2.0.0+dfsg-2_all + mcollective-common_2.0.0+dfsg-2_all + mcollective-doc_2.0.0+dfsg-2_all + mcomix_0.98-1_all + mcpp-doc_2.7.2-1.1_all + mcu8051ide_1.3.7-1_all + mdbtools-doc_0.7-1+deb7u1_all + mecab-ipadic_2.7.0-20070801+main-1_all + mecab-ipadic-utf8_2.7.0-20070801+main-1_all + mecab-jumandic_5.1+20070304-3_all + mecab-jumandic-utf8_5.1+20070304-3_all + mecab-naist-jdic_0.6.3.b-20111013-3_all + mecab-naist-jdic-eucjp_0.6.3.b-20111013-3_all + med-bio_1.13.2_all + med-bio-dev_1.13.2_all + med-cloud_1.13.2_all + med-config_1.13.2_all + med-data_1.13.2_all + med-dental_1.13.2_all + med-epi_1.13.2_all + med-imaging_1.13.2_all + med-imaging-dev_1.13.2_all + med-oncology_1.13.2_all + med-pharmacy_1.13.2_all + med-physics_1.13.2_all + med-practice_1.13.2_all + med-psychology_1.13.2_all + med-rehabilitation_1.13.2_all + med-statistics_1.13.2_all + med-tasks_1.13.2_all + med-tools_1.13.2_all + med-typesetting_1.13.2_all + media-player-info_17-1_all + mediatomb_0.12.1-4_all + mediatomb-daemon_0.12.1-4_all + mediawiki_1:1.19.5-1+deb7u1_all + mediawiki-extensions_2.11_all + mediawiki-extensions-base_2.11_all + mediawiki-extensions-collection_2.11_all + mediawiki-extensions-confirmedit_2.11_all + mediawiki-extensions-geshi_2.11_all + mediawiki-extensions-graphviz_2.11_all + mediawiki-extensions-ldapauth_2.11_all + mediawiki-extensions-math_2:1.0+git20120528-6_all + mediawiki-extensions-openid_2.11_all + megaglest-data_3.6.0.3-1_all + melange_1:2012.1-3_all + melange-client_0.1-1.2_all + meld_1.6.1-1_all + melting-gui_4.3c-2_all + mencal_2.3-9_all + menu-l10n_0.20120730_all + menu-xdg_0.5_all + merb-core_1.1.3+dfsg-2_all + mercurial-common_2.2.2-3_all + mercurial-git_0.3.2-2_all + mercurial-nested_0.5-3_all + mercurial-server_1.2-2_all + metacity-common_1:2.34.3-4_all + metacity-themes_1.0.11_all + metainit_0.0.5_all + metche_1:1.2.2-2_all + mew_1:6.4-2_all + mew-beta_7.0.50~6.5~rc2+0.20120405-1_all + mffm-timecode-dev_1.6-2_all + mgen-doc_5.02+dfsg2-3_all + mgetty-docs_1.1.36-1.6_all + mgm_1.1.svn.20080520-1_all + mgm-doc_1.1.svn.20080520-1_all + mh-book_200605-1_all + mh-e_8.3-1.1_all + mha4mysql-manager_0.53-3_all + mha4mysql-node_0.53-1_all + mhc_0.25.1+20120403-2_all + mhonarc_2.6.18-2_all + micropolis-data_0.0.20071228-5_all + midge_0.2.41-2_all + mididings_0~20120419~ds0-1_all + mididings-doc_0~20120419~ds0-1_all + migemo_20110227-7_all + migemo-el_20110227-7_all + migrationtools_47-8_all + mime-construct_1.11_all + mime-support_3.52-1_all + mimefilter_1.7+nmu1_all + mimms_3.2.2-1_all + min12xxw_0.0.9-6_all + minbar-data_0.2.1-7_all + minetest-common_0.3.1+dfsg-4_all + ming-fonts-dejavu_1:0.4.4-1.1_all + ming-fonts-opensymbol_1:0.4.4-1.1_all + mingw-w64_2.0.3-1_all + mingw-w64-dev_2.0.3-1_all + mingw-w64-i686-dev_2.0.3-1_all + mingw-w64-x86-64-dev_2.0.3-1_all + mingw32-ocaml_3.12.1+debian3_all + mingw32-runtime_3.13-1_all + mini-dinstall_0.6.29_all + minirok_2.1-1_all + minlog_4.0.99.20100221-5.2_all + mipe_1.1-4_all + mira-doc_3.4.0.1-3_all + mira-examples_3.4.0.1-3_all + mirmon_2.6-2_all + miro-data_4.0.4-1_all + mirrormagic-data_2.0.2.0deb1-11_all + miscfiles_1.4.2.dfsg.1-9_all + missingh-doc_1:8_all + mit-scheme-doc_9.1-1_all + mixxx-data_1.10.1~dfsg0-1_all + mkgmap_0.0.0+svn1067-1_all + mkgmapgui_1.1.ds-2_all + mklibs_0.1.34_all + mktemp_8.13-3.5_all + mlmmj-php-web_1.2.18.0-2_all + mlmmj-php-web-admin_1.2.18.0-2_all + mlton_20100608-5_all + mlton-basis_20100608-5_all + mlton-doc_20100608-5_all + mm-common_0.9.5-1_all + mmake_2.3-5.1_all + mmass_5.1.0-2_all + mmm-mode_0.4.8-7_all + mmpong-gl-data_0.9.1-2.1_all + mnemosyne_2.0~RC1-3_all + mnemosyne-blog_0.12-2_all + moap_0.2.7-1_all + mobile-atlas-creator_1.9.7-1_all + mobile-broadband-provider-info_20120708-1_all + moblin-cursor-theme_0.3-3_all + moblin-icon-theme_0.10.0-1_all + moblin-menus_0.1.6-1_all + moblin-sound-theme_0.3-1_all + mobyle_1.0.6~dfsg-1_all + mobyle-programs_4.0-1_all + mod-gearman-doc_1.3.6-1_all + mod-musicindex-common_1.3.7-2_all + model-builder_0.4.1-6_all + modsecurity-crs_2.2.5-2_all + module-assistant_0.11.4_all + module-init-tools_9-3_all + molly-guard_0.4.5-1_all + mon-client_1.2.0-2_all + monajat_2.6.3-1_all + monajat-applet_2.6.3-1_all + monajat-data_2.6.3-1_all + monajat-mod_2.6.3-1_all + monajat-screenlet_2.6.3-1_all + monav-data_0.3-6_all + monkeysphere_0.35-2_all + monkeystudio-common_1.9.0.2-2_all + monkeytail_0.3.2-3_all + mono-2.0-gac_2.10.8.1-8_all + mono-2.0-service_2.10.8.1-8_all + mono-4.0-gac_2.10.8.1-8_all + mono-4.0-service_2.10.8.1-8_all + mono-addins-utils_0.6.2-2_all + mono-apache-server_2.10-2.4_all + mono-apache-server2_2.10-2.4_all + mono-apache-server4_2.10-2.4_all + mono-basic-dbg_2.10-2_all + mono-csharp-shell_2.10.8.1-8_all + mono-dbg_2.10.8.1-8_all + mono-devel_2.10.8.1-8_all + mono-dmcs_2.10.8.1-8_all + mono-fastcgi-server_2.10-2.4_all + mono-fastcgi-server2_2.10-2.4_all + mono-fastcgi-server4_2.10-2.4_all + mono-gac_2.10.8.1-8_all + mono-gmcs_2.10.8.1-8_all + mono-mcs_2.10.8.1-8_all + mono-profiler_2.10-6_all + mono-tools-devel_2.10-6_all + mono-tools-gui_2.10-6_all + mono-upnp-bin_0.1.2-1_all + mono-vbnc_2.10-2_all + mono-winforms-a11y_2.1-2_all + mono-xbuild_2.10.8.1-8_all + mono-xsp_2.10-2.4_all + mono-xsp2_2.10-2.4_all + mono-xsp2-base_2.10-2.4_all + mono-xsp4_2.10-2.4_all + mono-xsp4-base_2.10-2.4_all + monobristol_0.60.3-2.1_all + monodevelop_3.0.3.2+dfsg-1_all + monodevelop-database_3.0.3.2+dfsg-1_all + monodevelop-debugger-gdb_3.0.3.2-1_all + monodevelop-monogame_2.5.1+dfsg-3_all + monodevelop-nunit_3.0.3.2+dfsg-1_all + monodevelop-versioncontrol_3.0.3.2+dfsg-1_all + monodoc-avahi-manual_0.6.19-4.2_all + monodoc-banshee-manual_2.4.1-3_all + monodoc-base_2.10.8.1-8_all + monodoc-browser_2.10-6_all + monodoc-clutter-manual_1.0.0~alpha3~git20090817.r1.349dba6-8_all + monodoc-db4o-manual_8.0.184.15484+dfsg-2_all + monodoc-gdata-manual_2.1.0.0-1_all + monodoc-gkeyfile-manual_0.1-4_all + monodoc-gmime2.6-manual_2.6.10-1_all + monodoc-gnome-keyring-manual_1.0.0-4_all + monodoc-gstreamer-manual_0.9.2-4_all + monodoc-gtk2.0-manual_2.12.10-5_all + monodoc-gudev-manual_0.1-3_all + monodoc-http_2.10-6_all + monodoc-hyena-manual_0.5-2_all + monodoc-manual_2.10.8.1-8_all + monodoc-mono-fuse-manual_0.4.2+dfsg-3_all + monodoc-mono-upnp-manual_0.1.2-1_all + monodoc-mono-zeroconf-manual_0.9.0-4_all + monodoc-monogame-manual_2.5.1+dfsg-3_all + monodoc-mysql-manual_6.4.3-2_all + monodoc-newtonsoft-json-manual_4.5r6-1_all + monodoc-notify-sharp-manual_0.4.0~r3032-6_all + monodoc-nunit-manual_2.6.0.12051+dfsg-2_all + monodoc-opentk-manual_1.0.20101006+dfsg1-1_all + monodoc-poppler-manual_0.0.3-2_all + monodoc-rhash-manual_1.2.9-8+deb7u1_all + monodoc-semweb-manual_1.05+dfsg-5_all + monodoc-taglib-manual_2.0.4.0-1_all + monodoc-taoframework-manual_2.1.svn20090801-9_all + monodoc-webkit-manual_0.3-6_all + monodoc-zeitgeist-manual_0.8.0.0-4_all + monotone-doc_1.0-6_all + monotone-extras_1.0-6_all + monotone-server_1.0-6_all + monsterz-data_0.7.1-4_all + montecarlo-base_20061220+dfsg3-2_all + montecarlo-data_20061220+dfsg3-2_all + moon-lander-data_1:1.0-4.1_all + moosic_1.5.6-1_all + moovida_1.0.9+bzr1614-1.1_all + moovida-plugins-bad_1.0.9+bzr1614-1_all + moovida-plugins-good_1.0.9+bzr1614-1_all + moovida-plugins-ugly_1.0.9+bzr1614-1_all + morse-simulator-data_0.5.2-1_all + morse-simulator-doc_0.5.2-1_all + mova_4.0-4.2_all + movabletype-opensource_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-core_5.1.4+dfsg-4+deb7u1_all + movabletype-plugin-zemanta_5.1.4+dfsg-4+deb7u1_all + movixmaker-2_0.8.4-2_all + mozart-doc_1.4.0-8_all + mozart-stdlib_20060615-6_all + mozc-data_1.5.1090.102-4+deb7u1_all + mozilla-biofox_1.6-1_all + mozilla-devscripts_0.32_all + mozilla-diggler_0.9-21_all + mozilla-livehttpheaders_0.17-3_all + mozilla-noscript_2.1.4-1_all + mozilla-nukeimage_0.3-12_all + mozilla-plugin-gnash_0.8.11~git20120629-1+deb7u1_all + mozvoikko_2.0.1-1_all + mp3burn_0.4.2-2.1_all + mp3cd_1.27.0-2_all + mp3diags-doc_1.0.11.076-3_all + mp3report_1.0.2-3_all + mp3roaster_0.3.0-6_all + mpb-doc_1.4.2-18_all + mpc-ace_6.0.3+dfsg-0.1_all + mpd-sima_0.9.2-2_all + mpdris_0.1.2-2_all + mpdtoys_0.24_all + mpg123-el_1:1.58-1_all + mpich2-doc_1.4.1-4.2_all + mplayer-doc_2:1.0~rc4.dfsg1+svn34540-1_all + mplayer-skin-blue_1.6-2_all + mpqc-openmpi_2.3.1-14_all + mpris-remote_0.0~1.gpb7c7f5c6-1_all + mr_1.12_all + mrb_0.1_all + mrbayes-doc_3.2.1+dfsg-1_all + mrename_1.2-12_all + mricron-data_0.20120505.1~dfsg.1-1_all + mricron-doc_0.20120505.1~dfsg.1-1_all + mrmpi-doc_1.0~20110620.dfsg-2_all + mrtg-contrib_2.17.4-2_all + mrtg-ping-probe_2.2.0-1_all + mrtg-rrd_0.7-5_all + mrtrix-doc_0.2.10-2_all + mrxvt-common_0.5.4-1.1_all + mscore_1.2+dfsg-1_all + mscore-common_1.2+dfsg-1_all + msmtp-mta_1.4.28-1_all + msort-gui_8.52-1.3_all + msp430mcu_20120406-2_all + msva-perl_0.8.1-2_all + mtink-doc_1.0.16-6_all + mtkbabel_0.8.3.1-1_all + mu-cade-data_0.11.dfsg1-6_all + mu-cite_8.1+0.20120227-1_all + mu4e_0.9.8.4-3+deb7u1_all + mucous_1:0.2+svn20100315.r1208-2_all + mueller7-dict_2002.02.27-8_all + mueller7accent-dict_2002.02.27-8_all + multex-base_1.0-1.1_all + multiboot_0.6.96-1.1_all + multiboot-doc_0.97-67_all + multipath-tools-boot_0.4.9+git0.4dfdaf2b-7~deb7u2_all + multistrap_2.1.20_all + mumble-django_2.7-7_all + mummer-doc_3.23~dfsg-2_all + mummy-doc_1.0.2-5_all + munin_2.0.6-4+deb7u2_all + munin-async_2.0.6-4+deb7u2_all + munin-common_2.0.6-4+deb7u2_all + munin-doc_2.0.6-4+deb7u2_all + munin-libvirt-plugins_0.0.6-1_all + munin-node_2.0.6-4+deb7u2_all + munin-plugins-core_2.0.6-4+deb7u2_all + munin-plugins-extra_2.0.6-4+deb7u2_all + munin-plugins-java_2.0.6-4+deb7u2_all + munin-plugins-openstack_1.20120627-1_all + mupen64plus_1.99.5+1_all + mupen64plus-audio-all_1.99.5+1_all + mupen64plus-data_1.99.5-6_all + mupen64plus-input-all_1.99.5+1_all + mupen64plus-rsp-all_1.99.5+1_all + mupen64plus-video-all_1.99.5+1_all + murmur_1:0.2+svn20100315.r1208-2_all + murrine-themes_0.98.4_all + muse-el_3.20+dfsg-0.1_all + museekd-tools_1:0.2+svn20100315.r1208-2_all + museeq-locales_1:0.2+svn20100315.r1208-2_all + musescore-common_1.2+dfsg-1_all + musescore-soundfont-gm_1.2+dfsg-1_all + musetup-gtk_1:0.2+svn20100315.r1208-2_all + music-doc_1.0.7-1.2_all + musiclibrarian_1.6-2.1_all + mussh_1.0-1_all + mustang-testdata_3.2.1-3_all + mutter-common_3.4.1-5_all + muttprint_0.73-4_all + muttprint-manual_0.73-4_all + muttprofile_1.0.1-4_all + mylvmbackup_0.13-2_all + mypaint-data_1.0.0-1_all + myspell-af_1:3.3.0-4_all + myspell-bg_4.1-3_all + myspell-ca_0.20111230b-4_all + myspell-cs_20040229-5.1_all + myspell-da_1.6.25-1.1_all + myspell-de-at_20120607-1_all + myspell-de-ch_20120607-1_all + myspell-de-de_20120607-1_all + myspell-de-de-oldspell_1:2-28_all + myspell-el-gr_0.8-1.1_all + myspell-en-au_2.1-5.3_all + myspell-en-gb_1:3.3.0-4_all + myspell-en-us_1:3.3.0-4_all + myspell-en-za_1:3.3.0-4_all + myspell-eo_2.1.2000.02.25-45_all + myspell-es_1.11-4_all + myspell-et_1:20030606-20_all + myspell-fa_0.20070816-3_all + myspell-fi_0.7-18_all + myspell-fo_0.4.1-1_all + myspell-fr_1.4-26_all + myspell-fr-gut_1:1.0-30_all + myspell-ga_2.0-21_all + myspell-gd_0.50-8_all + myspell-gv_0.50-9.1_all + myspell-he_1.1-2_all + myspell-hr_20060617-2.3_all + myspell-hu_1.2+repack-2_all + myspell-hy_0.20.0-2_all + myspell-it_1:3.3.0-4_all + myspell-ku_0.20.0-2_all + myspell-lt_1.2.1-3_all + myspell-lv_0.9.4-5_all + myspell-nb_2.0.10-5.1_all + myspell-nl_1:2.10-1_all + myspell-nn_2.0.10-5.1_all + myspell-pl_20120520-1_all + myspell-pt_20091013-4_all + myspell-pt-br_20110527-2_all + myspell-pt-pt_20091013-4_all + myspell-ru_0.99g5-18_all + myspell-sk_0.5.5a-2.3_all + myspell-sl_1.0-5_all + myspell-sv-se_1.51-1_all + myspell-sw_1:3.3.0-4_all + myspell-th_1:3.3.0-4_all + myspell-tl_0.4-0-10_all + myspell-uk_1.6.5-2_all + mysql-client_5.5.33+dfsg-0+wheezy1_all + mysql-common_5.5.33+dfsg-0+wheezy1_all + mysql-mmm-agent_2.2.1-1.1_all + mysql-mmm-common_2.2.1-1.1_all + mysql-mmm-monitor_2.2.1-1.1_all + mysql-mmm-tools_2.2.1-1.1_all + mysql-server_5.5.33+dfsg-0+wheezy1_all + mysql-utilities_1.0.5-1_all + mysql-workbench-data_5.2.40+dfsg-2_all + mysqltuner_1.2.0-1_all + mysqmail_0.4.9-10_all + mythes-ca_1:3.3.0-4_all + mythes-cs_1:3.3.0-4_all + mythes-de_20120516-2_all + mythes-de-ch_20120516-2_all + mythes-en-au_2.1-5.3_all + mythes-en-us_1:3.3.0-4_all + mythes-fr_1:3.3.0-4_all + mythes-hu_1:3.3.0-4_all + mythes-it_2.0.7.gh.deb1-4.1_all + mythes-ne_1:3.3.0-4_all + mythes-pl_1.5-4_all + mythes-ro_1:3.3.0-4_all + mythes-ru_1:3.3.0-4_all + mythes-sk_1:3.3.0-4_all + mythtv-status_0.10.2-3_all + mytop_1.6-6_all + mzclient_0.9.0-4_all + nadoka_0.7.6-1_all + nagios-images_0.7_all + nagios-plugin-check-multi_0.26-1_all + nagios-plugins_1.4.16-1_all + nagios-plugins-openstack_1.20120627-2_all + nagios-snmp-plugins_1.1.1-8_all + nagios3-common_3.4.1-3+deb7u1_all + nagios3-doc_3.4.1-3+deb7u1_all + nagstamon_0.9.9-1_all + nagvis_1:1.6.6+dfsg.1-3_all + nagvis-demos_1:1.6.6+dfsg.1-3_all + nagzilla_1.5.5-1-1_all + naist-jdic_1:0.4.3-3.1_all + naist-jdic-utf8_1:0.4.3-3.1_all + nam-examples_1.15-1_all + nama_1.078-2_all + namazu2-common_2.0.21-6_all + namazu2-index-tools_2.0.21-6_all + namebench_1.3.1+dfsg-2_all + nanoblogger_3.4.2-3_all + nanoblogger-extra_3.4.2-2_all + nant_0.92~rc1+dfsg-2_all + nas-doc_1.9.3-5wheezy1_all + natbraille_2.0rc3-1_all + natbraille-doc_2.0rc3-1_all + naturaldocs_1.51-1_all + nautilus-bzr_0.103.0+bzr792-3_all + nautilus-compare_0.0.4-1_all + nautilus-data_3.4.2-1+build1_all + nautilus-emblems_0.1.0-2_all + nautilus-image-manipulator_1.1-2_all + nautilus-pastebin_0.7.1-1_all + nautilus-scripts-manager_1.7-1_all + navi2ch_2.0.0~git20120331-1_all + navit-data_0.5.0~svn5126+dfsg.1-3_all + nbibtex-doc_0.9.18-10_all + ncbi-blast+-legacy_2.2.26-3_all + ncbi-data_6.1.20120620-2_all + ncbi-rrna-data_6.1.20120620-2_all + ncmpc-lyrics_0.17-1_all + ncurses-base_5.9-10_all + ncurses-doc_5.9-10_all + ncurses-term_5.9-10_all + ndiswrapper-common_1.57-1_all + ndiswrapper-dkms_1.57-1_all + ndiswrapper-source_1.57-1_all + ndoutils-doc_1.4b9-1.1_all + ne-doc_2.4-1_all + neko-dev_1.8.1-6_all + neobio_0.0.20030929-1_all + netbase_5.0_all + netbeans_7.0.1+dfsg1-5_all + netcat_1.10-40_all + netcdf-doc_1:4.1.3-6_all + netcdf-ruby_0.6.6-1_all + netcdf-ruby1.8_0.6.6-1_all + netcdf-ruby1.8-dbg_0.6.6-1_all + netcdf-ruby1.9.1_0.6.6-1_all + netcdf-ruby1.9.1-dbg_0.6.6-1_all + netdisco-backend_1.0-2_all + netdisco-common_1.0-2_all + netdisco-frontend_1.0-2_all + netenv_0.94.3-30_all + nethack-el_1:0.9.5-3_all + nethack-spoilers_3.4.3+20110109-1_all + netio230a-gui_1.0.1-3_all + netpanzer-data_0.8.4.debian.1-1.1_all + netscript-2.4_5.2.12_all + netselect-apt_0.3.ds1-25_all + netsurf_2.9-2_all + netsurf-common_2.9-2_all + netwag_5.36.0-1.2_all + netwag-doc_5.36.0-1.2_all + network-config_0.2-1_all + netwox-doc_5.36.0-1.2_all + neverball-common_1.5.4-5_all + neverball-data_1.5.4-5_all + neverputt-data_1.5.4-5_all + newbiedoc_0.8.0-2_all + newlib-m68hc1x_1.18.0-6.2_all + newlib-source_1.18.0-6.2_all + nexuiz_2.5.2+dp-2_all + nexuiz-data_2.5.2-6_all + nexuiz-music_2.5.2-6_all + nexuiz-server_2.5.2+dp-2_all + nexuiz-textures_2.5.2-6_all + nfoview_1.9.2-1_all + ng-common_1.5~beta1-3_all + nginx_1.2.1-2.2+wheezy2_all + nginx-common_1.2.1-2.2+wheezy2_all + nginx-doc_1.2.1-2.2+wheezy2_all + nginx-naxsi-ui_1.2.1-2.2+wheezy2_all + nglister_1.0.1+nmu1_all + ngraph-gtk-addin-import-ps_6.06.06-1_all + ngraph-gtk-addin-tex-equation_6.06.06-1_all + ngraph-gtk-addins_6.06.06-1_all + ngraph-gtk-doc_6.06.06-1_all + nicotine_1.2.16+dfsg-1_all + nicovideo-dl_0.0.20120212-1_all + nigiri_1.4.0+dfsg-1_all + nikwi-data_0.0.20060823-2_all + nml_0.2.3-1_all + node_0.3.2-7.4_all + noiz2sa-data_0.51a-9_all + nordugrid-arc-doc_1.1.2-1_all + note_1.3.7-1_all + notmuch-emacs_0.13.2-1_all + notmuch-mutt_0.13.2-1_all + notmuch-vim_0.13.2-1_all + nova-api_2012.1.1-18_all + nova-api-ec2_2012.1.1-18_all + nova-api-metadata_2012.1.1-18_all + nova-api-os-compute_2012.1.1-18_all + nova-api-os-volume_2012.1.1-18_all + nova-cert_2012.1.1-18_all + nova-common_2012.1.1-18_all + nova-compute_2012.1.1-18_all + nova-compute-kvm_2012.1.1-18_all + nova-compute-lxc_2012.1.1-18_all + nova-compute-qemu_2012.1.1-18_all + nova-compute-uml_2012.1.1-18_all + nova-compute-xen_2012.1.1-18_all + nova-console_2012.1.1-18_all + nova-doc_2012.1.1-18_all + nova-network_2012.1.1-18_all + nova-objectstore_2012.1.1-18_all + nova-scheduler_2012.1.1-18_all + nova-volume_2012.1.1-18_all + nova-xcp-network_2012.1.1-18_all + nova-xcp-plugins_2012.1.1-18_all + nova-xvpvncproxy_2012.1.1-18_all + nowebm_2.11b-7.1_all + ns2-doc_2.35+dfsg-1_all + ns2-examples_2.35+dfsg-1_all + nsd_3.2.12-3+deb7u1_all + nsis-common_2.46-7_all + nsis-doc_2.46-7_all + nsis-pluginapi_2.46-7_all + nsscache_0.21.17-2_all + nted-doc_1.10.18-4_all + ntfsdoc_0.5-1_all + ntfsprogs_1:2012.1.15AR.5-2.1_all + ntlmaps_0.9.9.0.1-11.2_all + ntop-data_3:4.99.3+ndpi5517+dfsg3-1_all + ntp-doc_1:4.2.6.p5+dfsg-2_all + nuauth-utils_2.4.3-2.2_all + nulog_2.0.dfsg.1-2_all + num-utils_0.5-11_all + nunit_2.6.0.12051+dfsg-2_all + nunit-console_2.6.0.12051+dfsg-2_all + nunit-gui_2.6.0.12051+dfsg-2_all + nut_2.6.4-2.3+deb7u1_all + nut-doc_2.6.4-2.3+deb7u1_all + nut-monitor_2.6.4-2.3+deb7u1_all + nuvola-icon-theme_4:4.8.4-5_all + nvi-doc_1.81.6-8.2_all + nwchem-data_6.1-6_all + nyancat-server_1.0+git20120523.99dc310-1_all + oaklisp-doc_1.3.3-5_all + oar-api_2.5.2-3_all + oar-doc_2.5.2-3_all + oar-web-status_2.5.2-3_all + oasis_0.2.0-6_all + oboinus_2.2-4_all + obrowser-doc_1.1.1+dfsg-1_all + ocaml-batteries-included_1.4.3-1_all + ocaml-core_3.12.0.1_all + ocaml-libs_3.12.0.1_all + ocaml-mode_3.12.1-4_all + ocaml-source_3.12.1-4_all + ocaml-tools_20120103-2_all + ocamlify_0.0.1-3_all + ocamlmakefile_6.36.0-2_all + ocamlwc_0.3-10_all + ocamlweb_1.38-1_all + ocrfeeder_0.7.9-1_all + ocrodjvu_0.7.9-1_all + ocsigen-dev_1.3.4-2_all + ocsigenserver-doc_2.1-1_all + ocsinventory-agent_2:2.0.5-1_all + ocsinventory-reports_2.0.5-1.1_all + ocsinventory-server_2.0.5-1.1_all + octave-benchmark_1.1.1-4_all + octave-common_3.6.2-5+deb7u1_all + octave-communications-common_1.1.1-1_all + octave-data-smoothing_1.3.0-2_all + octave-dataframe_0.9.1-1_all + octave-doc_3.6.2-5+deb7u1_all + octave-epstk_2.4-1_all + octave-financial_0.4.0-1_all + octave-fpl_1.2.0-3_all + octave-ga_0.10.0-1_all + octave-htmldoc_3.6.2-5+deb7u1_all + octave-info_3.6.2-5+deb7u1_all + octave-mapping_1.0.7-4_all + octave-missing-functions_1.0.2-4_all + octave-nnet_0.1.13-2_all + octave-pkg-dev_1.0.2_all + octave-plot_1.1.0-2_all + octave-splines_1.0.7-4_all + octave-statistics_1.1.3-1_all + octave-vrml_1.0.13-1_all + octave-zenity_0.5.7-5_all + odot_1.2.0-1_all + ofed-docs_1.4.2-1_all + offlineimap_6.3.4-1_all + ofono-dev_1.6-2_all + ogamesim-www_0.33-1_all + oggconvert_0.3.3-2_all + ogre-1.8-doc_1.8.0+dfsg1-3_all + ogre-doc_1.7.4+dfsg1-7_all + ohai_6.14.0-2_all + ohai-doc_6.14.0-2_all + ohcount-doc_3.0.0-6.1_all + oinkmaster_2.0-3_all + olive_1.3-4_all + olpc-xo1-hw_0.3_all + omake-doc_0.9.8.5-3-8_all + omegat_2.3.0.1+dfsg-3_all + omegat-plugin-tokenizer_0.4.2+dfsg-2_all + omnievents-doc_1:2.6.2-2_all + omniidl-python_3.6-1_all + omniorb-doc_4.1.6-2_all + omniorb-idl_4.1.6-2_all + omt_0.1.16_all + oneisenough_0.40-2_all + oneliner-el_0.3.6-7.1_all + oolite-data_1.76.1-2_all + oolite-data-sounds_1.76.1-2_all + oolite-doc_1.76.1-2_all + ooo-thumbnailer_0.2-5_all + ooo2dbk_2.1.0-1_all + op-panel_0.30~dfsg-3_all + opalmod_0.2.1_all + open-axiom-databases_1.4.1+svn~2626-2_all + open-axiom-graphics-data_1.4.1+svn~2626-2_all + open-axiom-hypertex-data_1.4.1+svn~2626-2_all + open-axiom-source_1.4.1+svn~2626-2_all + open-axiom-test_1.4.1+svn~2626-2_all + open-axiom-tex_1.4.1+svn~2626-2_all + open-font-design-toolkit_1.2_all + open-invaders-data_0.3-3.2_all + open-jtalk-mecab-naist-jdic_1.05-1_all + open-vm-dkms_2:8.8.0+2012.05.21-724730-1+nmu2_all + open-vm-tools-dev_2:8.8.0+2012.05.21-724730-1+nmu2_all + openafs-doc_1.6.1-3+deb7u1_all + openafs-modules-dkms_1.6.1-3+deb7u1_all + openafs-modules-source_1.6.1-3+deb7u1_all + openarena-081-maps_0.8.5split-2_all + openarena-081-misc_0.8.5split-2_all + openarena-081-players_0.8.5split-2_all + openarena-081-players-mature_0.8.5split-2_all + openarena-081-textures_0.8.5split-2_all + openarena-085-data_0.8.5split-2_all + openarena-088-data_0.8.8-1_all + openarena-data_0.8.5split-2_all + openbios-ppc_1.0+svn1060-1_all + openbios-sparc_1.0+svn1060-1_all + openbmap-logger_0.4.0-6_all + openbox-themes_1.0.2_all + openbve_1.4.0.9-1_all + openbve-data_1.4.0.5+dfsg-3_all + opencity-data_0.0.6.4stable-1.1_all + opencl-headers_1.2-2012.04.18a-1_all + openclipart_1:0.18+dfsg-14_all + openclipart-libreoffice_1:0.18+dfsg-14_all + openclipart-openoffice.org_1:3.4.0~ooo340m1-7_all + openclipart-png_1:0.18+dfsg-14_all + openclipart-svg_1:0.18+dfsg-14_all + openclipart2_2.0+dfsg-1_all + openclipart2-libreoffice_2.0+dfsg-1_all + openclipart2-png_2.0+dfsg-1_all + openclipart2-svg_2.0+dfsg-1_all + opencubicplayer-doc_1:0.1.21-1.1_all + opencv-doc_2.3.1-11_all + opendict_0.6.3-3.1_all + opendnssec_1:1.3.9-5_all + opendnssec-auditor_1:1.3.9-5_all + opendnssec-common_1:1.3.9-5_all + opendnssec-doc_1:1.3.9-5_all + opendnssec-enforcer_1:1.3.9-5_all + opengl-4.2-html-doc_1.0~svn17952-1_all + opengl-4.2-man-doc_1.0~svn17952-1_all + openguides_0.65-4_all + openhackware_0.4.1-6_all + openhpi_2.14.1-1.2_all + openigtlink-doc_1.9.2~svn7468-1_all + openigtlink-examples_1.9.2~svn7468-1_all + openjdk-6-doc_6b27-1.12.5-1_all + openjdk-6-jre-lib_6b27-1.12.5-1_all + openjdk-6-source_6b27-1.12.5-1_all + openjdk-7-doc_7u3-2.1.7-1_all + openjdk-7-jre-lib_7u3-2.1.7-1_all + openjdk-7-source_7u3-2.1.7-1_all + openlp_1.9.10-1_all + openmcdf_1.5.2-1_all + openmpi-common_1.4.5-1_all + openmpi-doc_1.4.5-1_all + openmsx-data_0.8.2-2.1_all + opennebula-common_3.4.1-3.1_all + opennebula-node_3.4.1-3.1_all + opennebula-sunstone_3.4.1-3.1_all + opennebula-tools_3.4.1-3.1_all + openoffice.org_1:3.4.0~ooo340m1-7_all + openoffice.org-base_1:3.4.0~ooo340m1-7_all + openoffice.org-calc_1:3.4.0~ooo340m1-7_all + openoffice.org-common_1:3.4.0~ooo340m1-7_all + openoffice.org-dmaths_1:3.4.0~ooo340m1-7_all + openoffice.org-draw_1:3.4.0~ooo340m1-7_all + openoffice.org-dtd-officedocument1.0_2:1.0+LibO3.5.4+dfsg2-0+deb7u2_all + openoffice.org-emailmerge_1:3.4.0~ooo340m1-7_all + openoffice.org-evolution_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-binfilter_1:3.4.0~ooo340m1-7_all + openoffice.org-filter-mobiledev_1:3.4.0~ooo340m1-7_all + openoffice.org-gnome_1:3.4.0~ooo340m1-7_all + openoffice.org-gtk_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-help-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-help-da_1:3.4.0~ooo340m1-7_all + openoffice.org-help-de_1:3.4.0~ooo340m1-7_all + openoffice.org-help-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-help-el_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-help-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-help-es_1:3.4.0~ooo340m1-7_all + openoffice.org-help-et_1:3.4.0~ooo340m1-7_all + openoffice.org-help-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-help-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-help-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-help-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-help-it_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-help-km_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-help-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-om_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-help-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-help-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-help-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-help-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-af_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-de_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-it_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-lt_1.2.1-3_all + openoffice.org-hyphenation-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sh_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-hyphenation-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-impress_1:3.4.0~ooo340m1-7_all + openoffice.org-java-common_1:3.4.0~ooo340m1-7_all + openoffice.org-kde_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-af_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ar_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-as_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ast_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-be-by_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-bs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-cy_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-da_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-de_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-dz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-el_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-gb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-en-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eo_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-es_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-et_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-eu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fa_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ga_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-gu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-he_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hi-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-id_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-it_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ja_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ka_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-km_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ko_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ku_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-lv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ml_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-mr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nb_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-nr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ns_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-oc_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-om_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-or_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pa-in_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-pt-br_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-rw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-si_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sl_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ss_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-st_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-sv_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ta_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-te_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tg_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-th_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-tr_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ts_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ug_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uk_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-uz_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-ve_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-vi_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-xh_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-za_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-cn_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zh-tw_1:3.4.0~ooo340m1-7_all + openoffice.org-l10n-zu_1:3.4.0~ooo340m1-7_all + openoffice.org-math_1:3.4.0~ooo340m1-7_all + openoffice.org-mysql-connector_1:3.4.0~ooo340m1-7_all + openoffice.org-officebean_1:3.4.0~ooo340m1-7_all + openoffice.org-ogltrans_1:3.4.0~ooo340m1-7_all + openoffice.org-pdfimport_1:3.4.0~ooo340m1-7_all + openoffice.org-presentation-minimizer_1:3.4.0~ooo340m1-7_all + openoffice.org-presenter-console_1:3.4.0~ooo340m1-7_all + openoffice.org-report-builder_1:3.4.0~ooo340m1-7_all + openoffice.org-sdbc-postgresql_1:3.4.0~ooo340m1-7_all + openoffice.org-style-crystal_1:3.4.0~ooo340m1-7_all + openoffice.org-style-galaxy_1:3.4.0~ooo340m1-7_all + openoffice.org-style-hicontrast_1:3.4.0~ooo340m1-7_all + openoffice.org-style-oxygen_1:3.4.0~ooo340m1-7_all + openoffice.org-style-tango_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ca_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-cs_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-de-ch_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-au_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-en-us_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-fr_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-hu_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-it_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ne_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-pl_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ro_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-ru_1:3.4.0~ooo340m1-7_all + openoffice.org-thesaurus-sk_1:3.4.0~ooo340m1-7_all + openoffice.org-voikko_1:3.4.0~ooo340m1-7_all + openoffice.org-wiki-publisher_1:3.4.0~ooo340m1-7_all + openoffice.org-writer_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2latex_1:3.4.0~ooo340m1-7_all + openoffice.org-writer2xhtml_1:3.4.0~ooo340m1-7_all + openoffice.org-zemberek_1:3.4.0~ooo340m1-7_all + openprinting-ppds_20120523-1_all + openprinting-ppds-extra_20120523-1_all + openresolv_3.5.2-1_all + openrocket_12.03-1_all + opensaml2-schemas_2.4.3-4_all + openscad-testing-data_2011.12-3_all + openscenegraph-doc_3.0.1-4_all + openscenegraph-examples_3.0.1-4_all + opense-basic_1:3.1.2-1_all + openshot_1.4.2-1.1_all + openshot-doc_1.4.2-1.1_all + openslp-doc_1.2.1-9_all + openssh-blacklist_0.4.1+nmu1_all + openssh-blacklist-extra_0.4.1+nmu1_all + openssl-blacklist_0.5-3_all + openssl-blacklist-extra_0.5-3_all + openssn-data_1.3-1_all + openstack-dashboard_2012.1.1-10_all + openstack-dashboard-apache_2012.1.1-10_all + openstereogram_0.1+20080921-2_all + openstreetmap-map-icons-classic_1:0.0.svn27763-1_all + openstreetmap-map-icons-scalable_1:0.0.svn27763-1_all + openstreetmap-map-icons-square_1:0.0.svn27763-1_all + openstv_1.6.1-1_all + openswan-doc_1:2.6.37-3_all + openswan-modules-source_1:2.6.37-3_all + openteacher_2.3-1_all + openthesaurus-de-text_20120516-2_all + openttd-data_1.2.1-3_all + openttd-opengfx_0.4.4-1_all + openttd-openmsx_0.3.1-2_all + openturns-validation_1.0-4_all + openuniverse-common_1.0beta3.1+dfsg-3_all + openvanilla-imgeneric-data-all_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ja_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-ko_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-th_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-vi_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-cn_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-hk_0.9.0a1.3+dfsg1-2.1_all + openvanilla-imgeneric-data-zh-tw_0.9.0a1.3+dfsg1-2.1_all + openvpn-blacklist_0.5_all + openvswitch-datapath-dkms_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-datapath-source_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-pki_1.4.2+git20120612-9.1~deb7u1_all + openvswitch-test_1.4.2+git20120612-9.1~deb7u1_all + openxenmanager_0.r80+dfsg-4_all + opticalraytracer_3.2-1.1_all + orbital-eunuchs-sniper-data_1.30+svn20070601-2_all + org-mode_7.8.11-1_all + origami_0.7.4-1_all + osc_0.134.1-2_all + osgearth-data_2.0+dfsg-4_all + osmosis_0.40.1+ds1-7_all + ospics_0.73-4_all + oss4-dev_4.2-build2006-2+deb7u1_all + otf-freefont_20120503-1_all + otf-ipaexfont_00103-14.1_all + otf-ipaexfont-gothic_00103-14.1_all + otf-ipaexfont-mincho_00103-14.1_all + otf-ipafont_00303-10.1_all + otf-ipafont-gothic_00303-10.1_all + otf-ipafont-mincho_00303-10.1_all + otf-stix_1.1.0-1_all + otf-symbols-circos_0.61-3_all + otf-yozvox-yozfont_13.09-dfsg-2_all + otf-yozvox-yozfont-antique_13.09-dfsg-2_all + otf-yozvox-yozfont-cute_13.09-dfsg-2_all + otf-yozvox-yozfont-edu_13.09-dfsg-2_all + otf-yozvox-yozfont-new-kana_13.09-dfsg-2_all + otf-yozvox-yozfont-standard-kana_13.09-dfsg-2_all + otrs_3.1.7+dfsg1-8+deb7u3_all + otrs2_3.1.7+dfsg1-8+deb7u3_all + otrs2-doc-de_20120224-1_all + otrs2-doc-en_20120224-1_all + overgod-data_1.0-1.1_all + ovito-doc_0.9.5-2_all + ovito-examples_0.9.5-2_all + ovsdbmonitor_1.4.2+git20120612-9.1~deb7u1_all + owfs_2.8p15-1_all + owfs-common_2.8p15-1_all + owfs-doc_2.8p15-1_all + oxygen-icon-theme_4:4.8.4-1_all + oxygencursors_0.0.2012-06-kde4.8-2.1_all + p10cfgd_1.0-14_all + pachi-data_1:1.0-6_all + packagekit-docs_0.7.6-3_all + packaging-dev_0.4_all + packaging-tutorial_0.7_all + pacpl_4.0.5-7.1_all + padre_0.96+dfsg1-2_all + page-crunch_1.0.1-3_all + palapeli-data_4:4.8.4-3_all + pam-dbus-notify_0.2.1-1_all + pamusb-tools_0.5.0-4_all + pandora-build_0.98-1.1_all + pandorafms-agent_4.0.1-1_all + pangzero_1.4-1_all + papercut_0.9.13-7_all + paprass_2.06-1_all + parallel_20120422-1_all + paraview-doc_3.14.1-6_all + parcimonie_0.7.1-1_all + paredit-el_20-2_all + pari-doc_2.5.1-2_all + pari-elldata_0.20120415-1_all + pari-extra_3-1_all + pari-galdata_0.20080411-2_all + pari-galpol_1.0-1_all + pari-seadata_0.20090618-1_all + parley-data_4:4.8.4-1_all + parrot-doc_4.0.0-3_all + parsec47-data_0.2.dfsg1-4_all + parser3_3.4.2-2_all + parsewiki_0.4.3-1_all + parted-doc_2.3-12_all + partimage-doc_20050720-3_all + password-gorilla_1.5.3.4-1_all + pastebinit_1.3-4_all + patcher_0.0.20040521-6_all + pathological_1.1.3-10_all + pathological-music_1:1.1.3-1_all + pauker_1.8+dfsg-5_all + paw-common_1:2.14.04.dfsg.2-8_all + paw-demos_1:2.14.04.dfsg.2-8_all + pbnj_2.04-4_all + pbuilder_0.213_all + pcalendar_3.2.0-2_all + pcb_20110918-7_all + pcb-common_20110918-7_all + pct-scanner-scripts_0.0.4-3_all + pd-jmmmp_0.1.1-1_all + pd-list-abs_0.1-1_all + pd-mapping_0.2-2_all + pd-pan_0.1-1_all + pd-purepd_0.1.1-1_all + pdb2pqr-doc_1.8-1_all + pdebuild-cross_2.2.19_all + pdfjam_2012.20120611-2_all + pdfminer-data_20110515+dfsg-1_all + pdfmod_0.9.1-7_all + pdfmod-dbg_0.9.1-7_all + pdfposter_0.4.4-2_all + pdfsam_1.1.4-2_all + pdfshuffler_0.6.0-1_all + pdksh_40.9.20120630-7_all + pear-horde-channel_5_all + pear-phpunit-channel_1.1-1_all + pear-symfony-project-channel_1.0-1_all + pegasus-wms-doc_4.0.1+dfsg-8_all + pekwm-themes_1.0.5-3_all + pennmush-common_1.8.2p8-1.1_all + pennmush-i18n_1.8.2p8-1.1_all + pentium-builder_0.19_all + pep8_1.2-1_all + percona-toolkit_2.1.2-1_all + perl-depends_2011.0324+git74d587e-1_all + perl-doc_5.14.2-21+deb7u1_all + perl-doc-html_5.14.0-1_all + perl-modules_5.14.2-21+deb7u1_all + perlbal_1.80-2_all + perlbrew_0.43-1_all + perlconsole_0.4-4_all + perlindex_1.605-4_all + perlpanel_1:0.9.1+cvs20051225-2_all + perlprimer_1.1.21-1_all + perlprimer-doc_1.1.21-1_all + perltidy_20101217-1_all + perroquet_1.1.1-3_all + pescetti_0.5-1_all + petit_1.1.1-1_all + petsc-dev_3.2.dfsg-6_all + petsc3.2-doc_3.2.dfsg-6_all + pflogsumm_1.1.5-1_all + pfm_1.5.4-1_all + pgadmin3-data_1.14.2-2_all + pgf_2.10-1_all + pgfouine_1.2-3_all + pgloader_2.3.3~dev3-1.1_all + pgsnap_0.7.0-1_all + pgstaging_0.11-1_all + pgstaging-client_0.11-1_all + pgtap_0.90.0-1_all + pgtune_0.9.3-2_all + pgxnclient_1.0.3-1_all + phamm_0.5.18-3.1_all + phamm-ldap_0.5.18-3.1_all + phamm-ldap-amavis_0.5.18-3.1_all + phamm-ldap-vacation_0.5.18-3.1_all + phatch_0.2.7.1-1_all + phatch-cli_0.2.7.1-1_all + phatch-doc_0.2.7.1-1_all + phenny_2~hg28-2_all + phlipple-data_0.8.2-1_all + phonon-backend-xine_4:4.6.0.0-3_all + photofilmstrip_1.9.91+dfsg-1_all + photon_0.4.6-3_all + php-auth_1.6.2-1_all + php-auth-http_2.1.8-1_all + php-auth-sasl_1.0.4-1_all + php-cache_1.5.6-1_all + php-cache-lite_1.7.4-1_all + php-cas_1.3.1-4_all + php-codecoverage_1.1.2+dfsg1-3_all + php-codesniffer_1.3.4-1_all + php-compat_1.6.0a3-2_all + php-config_1.10.12-4_all + php-console-table_1.1.4-1_all + php-crypt-blowfish_1.1.0~RC2-1_all + php-crypt-cbc_1.0.1-1_all + php-date_1.4.7-1_all + php-db_1.7.14-2_all + php-doc_20100521-2_all + php-elisp_1.5.0-1.1_all + php-event-dispatcher_1.1.0-3_all + php-file_1.3.0-1_all + php-file-iterator_1.3.1-2_all + php-fpdf_3:1.7.dfsg-1_all + php-geshi_1.0.8.4-2_all + php-getid3_1.9.3-1_all + php-gettext_1.0.11-1_all + php-html-common_1.2.5-2_all + php-html-safe_0.10.1-1_all + php-html-template-it_1:1.2.1-3_all + php-htmlpurifier_4.4.0+dfsg1-1_all + php-http_1.4.1-1_all + php-http-request_1.4.4-4_all + php-http-upload_1.0.0b2-2_all + php-http-webdav-server_1.0.0RC6-1_all + php-image-text_0.6.1-1_all + php-invoker_1.1.0-1_all + php-letodms-core_3.3.9-2_all + php-letodms-lucene_1.0.1-1_all + php-log_1.12.3-1_all + php-mail_1.2.0-4_all + php-mail-mime_1.8.4-1_all + php-mail-mimedecode_1.5.5-1_all + php-mdb2_2.5.0b3-2_all + php-mdb2-driver-mysql_1.5.0b2-1_all + php-mdb2-driver-pgsql_1.5.0b2-1_all + php-mdb2-schema_0.8.5-1_all + php-mime-type_1.3.1-1_all + php-net-checkip_1.2.1-3_all + php-net-dime_0.3-4_all + php-net-dnsbl_1.3.3-1_all + php-net-ftp_1.4.0a3-1_all + php-net-imap_1:1.1.1-1_all + php-net-ipv4_1.3.4-1_all + php-net-ipv6_1.2.2b2-1_all + php-net-ldap_1:1.1.5-1_all + php-net-ldap2_2.0.9-1_all + php-net-lmtp_1.0.1-1_all + php-net-nntp_1.5.0~rc2-1_all + php-net-portscan_1.0.3-1_all + php-net-sieve_1.3.2-1_all + php-net-smartirc_1.0.0-2_all + php-net-smtp_1.6.1-1_all + php-net-socket_1.0.9-2_all + php-net-url_1.0.15-2_all + php-net-url2_2.0.0-1_all + php-net-whois_1.0.5-1_all + php-numbers-words_0.16.4-1_all + php-openid_2.2.2-1.1_all + php-pager_2.4.8-2_all + php-pear_5.4.4-14+deb7u7_all + php-radius-legacy_1.2.5-2.3+deb7u1_all + php-services-json_1.0.3-1_all + php-services-weather_1.4.2-3_all + php-soap_0.12.0-2.1_all + php-symfony-yaml_1.0.6-1_all + php-text-captcha_0.4.3-1_all + php-text-figlet_1.0.2-3_all + php-text-password_1.1.1-1_all + php-text-template_1.1.1-2_all + php-text-wiki_1.2.0-1_all + php-timer_1.0.2-2_all + php-token-stream_1.1.3-2_all + php-validate_0.8.5-2_all + php-xajax_0.5-1_all + php-xml-dtd_0.5.2+dfsg1-1_all + php-xml-htmlsax3_3.0.0+cvs01112007-2_all + php-xml-parser_1.3.4-6_all + php-xml-rpc_1.5.5-0.1_all + php-xml-rpc2_1.1.1-1_all + php-xml-rss_1.0.2-3_all + php-xml-serializer_0.20.2-3_all + php5_5.4.4-14+deb7u7_all + phpbb3_3.0.10-4+deb7u1_all + phpbb3-l10n_3.0.10-4+deb7u1_all + phpldapadmin_1.2.2-5_all + phpmyadmin_4:3.4.11.1-2_all + phppgadmin_5.0.4-1_all + phpreports_0.4.9-2.1_all + phpsysinfo_3.0.17-1_all + phpunit_3.6.10-1_all + phpunit-mock-object_1.1.1-2_all + phpunit-selenium_1.2.6-3_all + phpunit-story_1.0.0-3_all + phpwebcounter_1.0-1_all + phpwebcounter-extra_20071108-1_all + picard-tools_1.46-1_all + pidgin-data_2.10.6-3_all + pidgin-dev_2.10.6-3_all + pidgin-lastfm_0.4a-2_all + pidgin-openpgp_0.1-2_all + pidgin-themes_0.2-1_all + piespy_0.4.0-2.2_all + pilot-manager_1.107.0pre108-5_all + pinball-data_0.3.1-13.1_all + pinentry-doc_0.8.1-1_all + pingus-data_0.7.6-1.1_all + pinta_1.3-2_all + pinyin-database_1.2.99-3_all + pioneers-console-data_14.1-1_all + pioneers-data_14.1-1_all + pipenightdreams-data_0.10.0-13_all + pisg_0.72-1_all + pithos_0.3.17-1_all + pitivi_0.15.2-0.1_all + piuparts_0.45_all + piuparts-common_0.45_all + piuparts-master_0.45_all + piuparts-slave_0.45_all + pius_2.0.7-2_all + piwi_0.8+20041206-3_all + pixbros_0.6.3-1_all + pixelmed-java_20120508-1_all + pixfrogger_1.0-2_all + pkg-components_0.4_all + pkg-kde-tools_0.15.3_all + pkg-mozilla-archive-keyring_1.1_all + pkg-php-tools_0.8_all + pkgsync_1.22_all + pkpgcounter_3.50-7_all + plait_1.6.2-1_all + planet-venus_0~bzr116-1_all + planetpenguin-racer_0.4-5_all + planetpenguin-racer-dbg_0.4-5_all + planetpenguin-racer-extras_0.6-1_all + planetpenguin-racer-gimp-dev_0.4-5_all + planets_0.1.13-13_all + planner-data_0.14.6-1_all + planner-doc_0.14.6-1_all + planner-el_3.42-5.1_all + plasma-desktopthemes-artwork_4:4.8.4-5_all + plasma-scriptengine-python_4:4.8.4-6_all + plasma-scriptengine-ruby_4:4.8.4-6_all + plasma-scriptengines_4:4.8.4-6_all + plasma-widget-veromix_0.18.3-1_all + plasmidomics_0.2.0-2_all + playitslowly_1.4.0-1_all + plee-the-bear-data_0.6.0-1_all + pleiades_1.3.4~I20120531-dfsg-2+deb7u1_all + ploader_1.6.0-1.1_all + ploticus-doc_2.41-2_all + plplot-doc_5.9.9-5_all + plt-scheme_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plt-scheme-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + plum_2.33.1-10_all + plymouth-themes-all_0.8.5.1-5_all + plymouth-themes-fade-in_0.8.5.1-5_all + plymouth-themes-glow_0.8.5.1-5_all + plymouth-themes-script_0.8.5.1-5_all + plymouth-themes-solar_0.8.5.1-5_all + plymouth-themes-spinfinity_0.8.5.1-5_all + plymouth-themes-spinner_0.8.5.1-5_all + plywood_0.5.11+nmu2_all + pm-utils_1.4.1-9_all + pmailq_0.5-1_all + pmtools_1.10+ds1-2_all + pmw-doc_1:4.24-1_all + png-definitive-guide_20060430-1_all + pnm2ppa_1.13-4_all + pnopaste_1.4-5_all + pnopaste-cli_1.4-5_all + pnp4nagios_0.6.16-2_all + pnp4nagios-web_0.6.16-2_all + po-debconf_1.0.16+nmu2_all + po4a_0.42-1_all + pocketpc-cab_1.0.1-2_all + pod2pdf_0.42-4_all + podbrowser_0.12-2_all + podget_0.5.8-1_all + podracer_1.4-1.1_all + pokerth-data_0.9.5-1_all + policyd-weight_0.1.15.2-5_all + policykit-1-doc_0.105-3_all + policyrcd-script-zg2_0.1-2_all + polygen_1.0.6.ds2-12_all + polygen-data_1.0.6.ds2-12_all + polyorb-doc_2.8~20110207-5.1_all + pondus_0.8.0-1_all + pop3browser_0.4.1-4_all + poppass-cgi_3-5.1_all + poppler-data_0.4.5-10_all + popularity-contest_1.56_all + portaudio19-doc_19+svn20111121-1_all + post-el_1:2.5-2_all + post-faq_0.10-18_all + postfix-cluebringer_2.0.10-1_all + postfix-cluebringer-mysql_2.0.10-1_all + postfix-cluebringer-pgsql_2.0.10-1_all + postfix-cluebringer-sqlite3_2.0.10-1_all + postfix-cluebringer-webui_2.0.10-1_all + postfix-dev_2.9.6-2_all + postfix-doc_2.9.6-2_all + postfix-policyd-spf-perl_2.010-1_all + postfix-policyd-spf-python_1.0-2_all + postfixadmin_2.3.5-2_all + postfwd_1.32-2_all + postgresql_9.1+134wheezy4_all + postgresql-autodoc_1.40-3_all + postgresql-client_9.1+134wheezy4_all + postgresql-client-common_134wheezy4_all + postgresql-common_134wheezy4_all + postgresql-contrib_9.1+134wheezy4_all + postgresql-doc_9.1+134wheezy4_all + postgresql-doc-9.1_9.1.11-0wheezy1_all + postgresql-server-dev-all_134wheezy4_all + postgrey_1.34-1.1_all + postnews_0.5.3-3_all + postr_0.12.4-2.1_all + powermanga-data_0.90-dfsg-2_all + ppp-dev_2.4.5-5.1_all + pppconfig_2.3.18+nmu4_all + pppoeconf_1.20_all + prayer-templates_1.3.4-dfsg1-1_all + prayer-templates-src_1.3.4-dfsg1-1_all + prelude-correlator_1.0.0-1_all + prelude-notify_0.9.1-1_all + preprocess_1.1.0+ds-1_all + presage-dbus_0.8.8-1_all + preview-latex-style_11.86-11_all + prewikka_1.0.0-1.2_all + prey_0.5.3-7.1_all + prime_1.0.0.1-2.2_all + prime-dict_1.0.0-2_all + printer-applet_4:4.8.4-1_all + printer-driver-all_0.20120416_all + printer-driver-all-enforce_0.20120416_all + printer-driver-postscript-hp_3.12.6-3.1+deb7u1_all + printer-driver-sag-gdi_0.1-3_all + procmail-lib_1:2009.1202-2_all + profphd_1.0.39-1_all + proftpd-doc_1.3.4a-5+deb7u1_all + proguard_4.4-2_all + proj-ps-doc_4.3.3-4_all + projectm-data_2.1.0+dfsg-1_all + prolix_0.03-1_all + proll_18-6_all + prolog-el_1.23-1_all + proofgeneral_4.2~pre120605-2_all + proofgeneral-doc_4.2~pre120605-2_all + propaganda-debian_13.5.10_all + prosper_1.00.4+cvs.2007.05.01-4_all + provami_5.18-1_all + prover9-doc_0.0.200902a-1_all + prover9-mace4_0.5.dfsg-2.1_all + proxychains_3.1-3_all + ps-watcher_1.08-5_all + psensor-common_0.6.2.17-2_all + psgml_1.3.2-14_all + psi-plus-common_0.15.5338-1_all + psi-plus-skins_0.15.5338-1_all + psi-plus-sounds_0.15.5338-1_all + psi-translations_1.11_all + psrip_1.3-7_all + pssh_2.2.2-1_all + psychopy_1.73.06.dfsg-1_all + psychtoolbox-3-common_3.0.9+svn2579.dfsg1-1_all + ptex-base_1:2.5-2.1_all + ptex-bin_2012.20120611-2_all + ptex-buildsupport_3.0-3_all + ptex2tex_0.4-1_all + ptouch-driver_1.3-4_all + publican_2.8-3_all + publican-debian_0.2_all + pubtal_3.5-1_all + puddletag_1.0.0~rc1-1_all + puppet_2.7.23-1~deb7u3_all + puppet-common_2.7.23-1~deb7u3_all + puppet-el_2.7.23-1~deb7u3_all + puppet-lint_0.1.13-2_all + puppet-testsuite_2.7.23-1~deb7u3_all + puppetmaster_2.7.23-1~deb7u3_all + puppetmaster-common_2.7.23-1~deb7u3_all + puppetmaster-passenger_2.7.23-1~deb7u3_all + pure-ftpd-common_1.0.36-1.1_all + puredata_0.43.2-5_all + puredata-dev_0.43.2-5_all + puredata-doc_0.43.2-5_all + puredata-gui_0.43.2-5_all + purifyeps_1.1-2_all + purity-off_0-3_all + putty-doc_0.62-9+deb7u1_all + pwman3_0.0.8-1_all + pwrkap_7.30-5_all + pwrkap-gui_7.30-5_all + pxljr_1.3+repack0-2_all + pyaimt_0.8.0.1-3_all + pybliographer_1.2.14-3_all + pyblosxom_1.4.3-1_all + pybootchartgui_0.14.4-3_all + pybridge_0.3.0-7.1_all + pybridge-common_0.3.0-7.1_all + pybridge-server_0.3.0-7.1_all + pybtex_0.15-1_all + pyca_20031119-0_all + pychecker_0.8.19-5_all + pychess_0.10.1-1_all + pycmail_0.1.4_all + pycocuma_0.4.5-6-7_all + pydb_1.26-1_all + pydf_10_all + pyecm_2.0.1-1_all + pyew_2.0-3_all + pyflakes_0.5.0-2_all + pyformex_0.8.6-4_all + pyftpd_0.8.5_all + pygfarm_2.0.18.3+nmu2_all + pygmy_0.48-3_all + pygopherd_2.0.18.3+nmu2_all + pyicqt_0.8.1.5-5_all + pykaraoke_0.7.5-1_all + pykaraoke-bin_0.7.5-1_all + pyliblo-utils_0.9.1-2_all + pylint_0.25.1-1_all + pymacs_0.23-1.1_all + pymca-data_4.6.0-2_all + pymetrics_0.8.1-6_all + pymissile_0.0.20060725-2_all + pymsnt_0.11.3-5_all + pynagram_1.0.1-1_all + pynast_1.1-3_all + pyneighborhood_0.5.1-2_all + pyntor_0.6-4_all + pyp_2.12-1_all + pypar2_1.4-6_all + pype_2.9.1-4_all + pypibrowser_1.5-2_all + pyppd_0.4.9-6_all + pyprompter_0.8.8-1_all + pyracerz_0.2-5_all + pyragua_0.2.5-5_all + pyrenamer_0.6.0-1.1_all + pyrex-mode_0.9.8.5-2_all + pyro_1:3.14-1.1_all + pyro-doc_1:3.14-1.1_all + pyro-examples_1:3.14-1.1_all + pyro-gui_1:3.14-1.1_all + pyroman_0.5.0~alpha1-3_all + pyroom_0.4.1-6_all + pyscrabble_1.6.2-9_all + pyscrabble-common_1.6.2-9_all + pyscrabble-server_1.6.2-9_all + pysieved_1.1-0.2_all + pysol_1:2.0-2_all + pysol-cardsets_1:2.0+dfsg2-1_all + pysolfc_2.0-2_all + pysolfc-cardsets_2.0+dfsg2-1_all + pyspread_0.2.2-1_all + pysycache_3.1-3_all + pysycache-buttons-beerabbit_3.1-3_all + pysycache-buttons-crapaud_3.1-3_all + pysycache-buttons-ice_3.1-3_all + pysycache-buttons-wolf_3.1-3_all + pysycache-click-dinosaurs_3.1-3_all + pysycache-click-sea_3.1-3_all + pysycache-dblclick-appleandpear_3.1-3_all + pysycache-dblclick-butterfly_3.1-3_all + pysycache-i18n_3.1-3_all + pysycache-images_3.1-3_all + pysycache-move-animals_3.1-3_all + pysycache-move-food_3.1-3_all + pysycache-move-plants_3.1-3_all + pysycache-move-sky_3.1-3_all + pysycache-move-sports_3.1-3_all + pysycache-puzzle-cartoons_3.1-3_all + pysycache-puzzle-photos_3.1-3_all + pysycache-sounds_3.1-3_all + pytagsfs_0.9.2-6_all + pythia8-data_8.1.65-1_all + pythia8-doc-html_8.1.65-1_all + pythia8-doc-worksheet_8.1.65-1_all + pythia8-examples_8.1.65-1_all + pythia8-root-interface_8.1.65-1_all + python_2.7.3-4+deb7u1_all + python-aafigure_0.5-3_all + python-aalib_0.2-3_all + python-acidobasic_2.2-1_all + python-acoustid_0.7-1_all + python-actdiag_0.3.3-1_all + python-adodb_2.10-1.1_all + python-aeidon_0.19.2-1_all + python-aiml_0.8.6-2_all + python-albatross_1.36-5.4_all + python-albatross-common_1.36-5.4_all + python-albatross-doc_1.36-5.4_all + python-all_2.7.3-4+deb7u1_all + python-all-dbg_2.7.3-4+deb7u1_all + python-all-dev_2.7.3-4+deb7u1_all + python-amqplib_1.0.2-1_all + python-amqplib-doc_1.0.2-1_all + python-antlr_2.7.7+dfsg-4_all + python-anyjson_0.3.1-2_all + python-apipkg_1.0-1.1_all + python-application_1.3.0-1_all + python-apptools_4.0.1-1_all + python-apsw-doc_3.7.6.3-r1-1_all + python-apt-common_0.8.8.2_all + python-apt-dev_0.8.8.2_all + python-apt-doc_0.8.8.2_all + python-aptdaemon_0.45-2_all + python-aptdaemon-gtk_0.45-2_all + python-aptdaemon.gtk3widgets_0.45-2_all + python-aptdaemon.gtkwidgets_0.45-2_all + python-aptdaemon.pkcompat_0.45-2_all + python-aptdaemon.test_0.45-2_all + python-argparse_1.2.1-2_all + python-argparse-doc_1.2.1-2_all + python-argvalidate_0.9.0-1_all + python-ase_3.6.0.2515-1_all + python-aspects_1.3-5_all + python-asterisk_0.4-1_all + python-audioread_0.6-1_all + python-augeas_0.4.0-2.1_all + python-authkit_0.4.3-1_all + python-authres_0.402-1_all + python-avc_0.8.3-1_all + python-axiom_0.6.0-3_all + python-babel_0.9.6-1_all + python-beaker_1.6.3-1.1_all + python-beautifulsoup_3.2.1-1_all + python-biopython-doc_1.59-1_all + python-biopython-sql_1.59-1_all + python-bitbucket_0.1-1_all + python-bjsonrpc_0.2.0-1_all + python-blockdiag_1.1.6-1.1_all + python-bloomfilter_1.0.3-2_all + python-bobo_0.2.2-3_all + python-boto_2.3.0-1_all + python-bottle_0.10.11-1_all + python-bottle-doc_0.10.11-1_all + python-box2d-doc_2.0.2+svn20100109.244-1_all + python-brian_1.3.1-1_all + python-brian-doc_1.3.1-1_all + python-bs4_4.1.0-1_all + python-bs4-doc_4.1.0-1_all + python-buzhug_1.6-1_all + python-byteplay_0.2-2_all + python-bzrlib.tests_2.6.0~bzr6526-1_all + python-bzutils_0.2-1_all + python-cairo-dev_1.8.8-1_all + python-cairosvg_0.4.3-1_all + python-calabash_0.0.3-2_all + python-captcha_0.4-1_all + python-carrot_0.10.7-1_all + python-catwalk_2.0.2-5_all + python-cclib_1.0.1-2_all + python-cdd_0.0.11_all + python-celery_2.5.3-4_all + python-celery-doc_2.5.3-4_all + python-central_0.6.17_all + python-cerealizer_0.7-4_all + python-cfflib_2.0.5-1_all + python-chameleon_2.6.1-1_all + python-chardet_2.0.1-2_all + python-cherrypy_2.3.0-3_all + python-cherrypy3_3.2.2-2_all + python-cinfony_1.1-1_all + python-circuits_1.2.1-1_all + python-cl_0.0.3-1_all + python-clamav_0.4.1-7_all + python-cliapp_1.20120630-1_all + python-clientform_1:0.2.5-3_all + python-clint_0.3.1-1_all + python-cloudfiles_1.7.9.2-1_all + python-cloudservers_1.1-1.2_all + python-cluster_1.1.1b3-1_all + python-cmd2_0.6.4-1_all + python-cobe_2.0.2-1_all + python-coherence_0.6.6.2-6+deb7u1_all + python-colorama_0.2.4-1.1_all + python-commando_0.1.2a-3_all + python-concurrent.futures_2.1.2-1_all + python-configglue_1.0-1_all + python-configobj_4.7.2+ds-4_all + python-configshell_1.1-3_all + python-constraint_0.4.0-5_all + python-contract_1.4-3_all + python-couchdb_0.8-1_all + python-couchdbkit_0.6.3-1_all + python-coverage-test-runner_1.8-1_all + python-creoleparser_0.7.4-1_all + python-crypto-doc_2.6-4+deb7u3_all + python-csa_0.1.0-1.1_all + python-cssselect_0.6.1-1_all + python-cssutils_0.9.10~b1-1_all + python-ctypeslib_0.0.0+svn20100125-4_all + python-cubictemp_2.0-1_all + python-cupshelpers_1.3.7-4_all + python-cxx_6.2.4-3_all + python-cxx-dev_6.2.4-3_all + python-d2to1_0.2.7-1_all + python-daemon_1.5.5-1_all + python-dap_2.2.6.7-1_all + python-dateutil_1.5+dfsg-0.1_all + python-dbf_0.88.16-1_all + python-dbf-doc_0.88.16-1_all + python-dbg_2.7.3-4+deb7u1_all + python-dbus-dev_1.1.1-1_all + python-dbus-doc_1.1.1-1_all + python-deap_0.7.1-1_all + python-deap-doc_0.7.1-1_all + python-debian_0.1.21_all + python-debianbts_1.11_all + python-debtagshw_1.10.1_all + python-decorator_3.3.3-1_all + python-decoratortools_1.8-2_all + python-defer_1.0.6-2_all + python-deliciousapi_1.6.7-1_all + python-demjson_1.6-2_all + python-dev_2.7.3-4+deb7u1_all + python-dexml_0.4.2-2_all + python-dhm_0.6-3_all + python-dialog_2.7-1_all + python-dicoclient_2.1-3_all + python-dicom_0.9.6-1_all + python-dictclient_1.0.3.1_all + python-dictdlib_2.0.4.1_all + python-dingus_0.3.4-1_all + python-dipy_0.5.0-3_all + python-dipy-doc_0.5.0-3_all + python-distribute-doc_0.6.24-1_all + python-distro-info_0.10_all + python-distutils-extra_2.36-1_all + python-django_1.4.5-1+deb7u4_all + python-django-adminaudit_0.3.2-1_all + python-django-app-plugins_0.1.1-1_all + python-django-auth-ldap_1.0.19-2_all + python-django-auth-ldap-doc_1.0.19-2_all + python-django-auth-openid_0.4-1_all + python-django-authority_0.4-2_all + python-django-celery_2.5.5-2_all + python-django-celery-doc_2.5.5-2_all + python-django-contact-form_0+hg61-2_all + python-django-countries_1.2-1_all + python-django-dajax_0.8.4-5_all + python-django-dajaxice_0.2-2_all + python-django-debug-toolbar_1:0+git201107220111-96e46c6-1_all + python-django-djapian_2.3.1-3_all + python-django-doc_1.4.5-1+deb7u4_all + python-django-evolution_0.6.7-1_all + python-django-extdirect_0.7-1_all + python-django-extra-views_0.2.4-2_all + python-django-feincms_1.6.2-2_all + python-django-feincms-doc_1.6.2-2_all + python-django-floppyforms_0.4.7-2_all + python-django-formfieldset_0+git20090520-621cb58-1_all + python-django-genshi_1.1.3-4_all + python-django-horizon_2012.1.1-10_all + python-django-lint_0.13-2_all + python-django-localeurl_1.5-3_all + python-django-markupfield_1.0.2-2_all + python-django-mptt_0.5.2-1_all + python-django-mumble_2.7-7_all + python-django-nose_1.1-1_all + python-django-notification_0.1.5-2_all + python-django-pagination_1.0.5-1_all + python-django-picklefield_0.2.1-2_all + python-django-registration_0.8-2_all + python-django-reversion_1.6-1_all + python-django-rosetta_0.6.6-1_all + python-django-sekizai_0.5.0-1_all + python-django-shorturls_1.0.1-3_all + python-django-social-auth_0.7.0-1_all + python-django-south_0.7.5-1_all + python-django-tagging_0.3.1-2_all + python-django-threaded-multihost_1.3.2-2_all + python-django-threadedcomments_0.5.3-4_all + python-django-tinymce_1.5-3_all + python-django-treebeard_1.61-3_all + python-django-treebeard-doc_1.61-3_all + python-django-uwsgi-admin_1.2.3+dfsg-5+deb7u1_all + python-django-voting_0.1-2_all + python-django-websocket_0.3.0-3_all + python-djvu-doc_0.3.9-1_all + python-dkim_0.5.3-1+deb7u1_all + python-dns_2.3.6-1+deb7u1_all + python-dnspython_1.10.0-1_all + python-doc_2.7.3-4+deb7u1_all + python-docutils_0.8.1-8_all + python-dogtail_0.6.1-3.2_all + python-dpkt_1.6+svn54-1_all + python-drmaa_0.5-1_all + python-dsv_1.4.1-2_all + python-easygui_0.96-3_all + python-easyzone_1.2.2-1_all + python-ecasound_2.9.0-1_all + python-ecasound2.2_2.9.0-1_all + python-editobj_0.5.7-9_all + python-egenix-mx-base-dev_3.2.1-1.1_all + python-egenix-mxbeebase-doc_3.2.1-1.1_all + python-egenix-mxdatetime-doc_3.2.1-1.1_all + python-egenix-mxproxy-doc_3.2.1-1.1_all + python-egenix-mxqueue-doc_3.2.1-1.1_all + python-egenix-mxstack-doc_3.2.1-1.1_all + python-egenix-mxtexttools-doc_3.2.1-1.1_all + python-egenix-mxtools-doc_3.2.1-1.1_all + python-egenix-mxuid-doc_3.2.1-1.1_all + python-egenix-mxurl-doc_3.2.1-1.1_all + python-elements_0.13+svn20090823.230+dfsg-2_all + python-elib.intl_0.0.3~git20110809-2_all + python-elixir_0.7.1-1_all + python-empy_3.3-6_all + python-empy-doc_3.3-6_all + python-enchant_1.6.5-2_all + python-enthoughtbase_3.1.0-2_all + python-enum_0.4.4-2_all + python-envisage_4.1.0-2_all + python-envisagecore_3.2.0-2_all + python-envisageplugins_3.2.0-2_all + python-epr-doc_0.6.1-2_all + python-epsilon_0.6.0-3_all + python-epydoc_3.0.1+dfsg-1_all + python-etk.docking_0.2-1_all + python-eventlet_0.9.16-3_all + python-examples_2.7.3-4+deb7u1_all + python-excelerator_0.6.4.1-1_all + python-execnet_1.0.9-0.1_all + python-exif_1.0.8-3_all + python-expeyes_2.0.0-3_all + python-extractor_1:0.6-4_all + python-eyed3_0.6.18-1_all + python-facebook_0.svn20100209-3_all + python-fastimport_0.9.2-1_all + python-feedparser_5.1.2-1_all + python-feedvalidator_0~svn1022-2_all + python-ferari_1.0.0-1_all + python-ffc_1.0.0-1_all + python-fiat_1.0.0-1_all + python-fibranet_10-3_all + python-fixtures_0.3.6-1.1_all + python-flask_0.8-1_all + python-flaskext.wtf_0.6-1_all + python-flexmock_0.9.6-1_all + python-flickrapi_1.2-3_all + python-fltk-doc_1.3.0-1_all + python-flufl.bounce_2.1.1-1_all + python-flufl.bounce-doc_2.1.1-1_all + python-flufl.enum_3.3.2-1_all + python-flufl.enum-doc_3.3.2-1_all + python-flufl.i18n_1.1.1-1_all + python-flufl.i18n-doc_1.1.1-1_all + python-flufl.lock_2.2.1-2_all + python-flufl.lock-doc_2.2.1-2_all + python-flufl.password_1.2.1-1_all + python-flufl.password-doc_1.2.1-1_all + python-flup_1.0.2-2_all + python-fmcs_1.0-1_all + python-foolscap_0.6.4-1_all + python-forgethtml_0.0.20031008-10_all + python-forgetsql_0.5.1-12_all + python-formencode_1.2.4-2_all + python-fpconst_0.7.2-5_all + python-freevo_1.9.2b2-4.2_all + python-freshen_0.2-2_all + python-fs_0.3.0-2_all + python-fudge_1.0.3-3_all + python-fudge-doc_1.0.3-3_all + python-funcparserlib_0.3.5-2_all + python-gadfly_1.0.0-15.1_all + python-galleryremote_0.6-1.1_all + python-gamera-dev_3.3.3-2_all + python-gamera.toolkits.greekocr_1.0.1-4_all + python-gamera.toolkits.ocr_1.0.6-3_all + python-gammu-doc_1.31.90-1_all + python-gaphas_0.7.2-1_all + python-gasp_0.3.4-1_all + python-gastables_0.3-2_all + python-gdata_2.0.17+dfsg-1_all + python-gdata-doc_2.0.17+dfsg-1_all + python-gdchart2-doc_0.beta1-3.4_all + python-gearman_2.0.2-2_all + python-genetic_0.1.1b-11_all + python-genshi-doc_0.6-3_all + python-geoclue_0.1.0-4_all + python-geopy_0.94.2-1_all + python-germinate_2.10_all + python-gevent-doc_0.13.6-1+nmu3_all + python-gflags_1.5.1-1_all + python-gi-dev_3.2.2-2_all + python-git_0.3.2~RC1-1_all + python-glance_2012.1.1-5_all + python-glance-doc_2012.1.1-5_all + python-glitch_0.6-2.1_all + python-gluon_1.99.7-1_all + python-gnatpython-doc_54-3_all + python-gnome2-desktop-dev_2.32.0+dfsg-2_all + python-gnome2-dev_2.28.1+dfsg-1_all + python-gnome2-doc_2.28.1+dfsg-1_all + python-gnome2-extras-dev_2.25.3-12_all + python-gnupg_0.3.0-1.1_all + python-gnupginterface_0.3.2-9.1_all + python-gnuplot_1.8-1.1_all + python-gobject_3.2.2-2_all + python-gobject-2-dev_2.28.6-10_all + python-gobject-dbg_3.2.2-2_all + python-gobject-dev_3.2.2-2_all + python-goopy_0.1-5_all + python-graphy_1.0+dfsg-3_all + python-greenlet-doc_0.3.1-2.5_all + python-gridfs_2.2-4+deb7u1_all + python-gtk2-dev_2.24.0-3_all + python-gtk2-doc_2.24.0-3_all + python-gtk2-tutorial_2.4-1_all + python-gtkmvc_1.99.1-1_all + python-gtkmvc-doc_1.99.1-1_all + python-guidata_1.4.1-2_all + python-gvgen_0.9-2_all + python-hachoir-core_1.3.3-3_all + python-hachoir-metadata_1.3.3-1_all + python-hachoir-parser_1.3.4-1_all + python-hachoir-regex_1.0.5-1_all + python-hachoir-subfile_0.5.3-2_all + python-hachoir-urwid_1.1-2_all + python-hachoir-wx_0.3-2_all + python-hamcrest_1.6-1_all + python-hl7_0.2.2-1_all + python-html2text_3.200.3-2_all + python-html5lib_0.95-1_all + python-htmlgen_2.2.2-12_all + python-htmltmpl_1.22-10_all + python-httplib2_0.7.4-2+deb7u1_all + python-ibus_1.4.1-9+deb7u1_all + python-id3_1.2-6.2_all + python-imaging-doc_1.1.7-4_all + python-imaging-doc-html_1.1.2-1.1_all + python-imaging-doc-pdf_1.1.2-1.1_all + python-impacket_0.9.6.0-3_all + python-impacket-doc_0.9.6.0-3_all + python-import-relative_0.1.0-2_all + python-importlib_1.0.2-2_all + python-indigo_1.0.0-2_all + python-iniparse_0.4-2.1_all + python-insanity_0.0+git20110920.4750a8e8-2_all + python-instant_1.0.0-1_all + python-iowait_0.1-1.1_all + python-ipaddr_2.1.10-1_all + python-ipcalc_0.3-1_all + python-ipdb_0.6.1-1_all + python-iplib_1.1-3_all + python-ipy_1:0.75-1_all + python-irclib_0.4.8-1_all + python-iso8583_1.1-1_all + python-iso8601_0.1.4-2_all + python-isodate_0.4.6-1_all + python-jabber_0.5.0-1.4_all + python-jabberbot_0.15-1_all + python-jarabe-0.96_0.96.1-2.1_all + python-jaxml_3.01-6.1_all + python-jinja2-doc_2.6-1_all + python-joblib_0.6.4-3_all + python-jpylyzer_1.5.0-2_all + python-jsonpickle_0.4.0-1_all + python-jsonpipe_0.0.8-4_all + python-jsonrpc2_0.3.2-3_all + python-jsonschema_0.2-1_all + python-junitxml_0.6-1_all + python-kajiki_0.3.5-1_all + python-kde4-dev_4:4.8.4-1_all + python-kde4-doc_4:4.8.4-1_all + python-keyczar_0.6~b.061709+svn502-1_all + python-keyring_0.7.1-1+deb7u1_all + python-keystone_2012.1.1-13+wheezy1_all + python-keystoneclient_2012.1-3+deb7u1_all + python-kid_0.9.6-2_all + python-kiwi_1.9.22-2_all + python-kombu_2.1.8-1_all + python-kombu-doc_2.1.8-1_all + python-ktoblzcheck_1.39-1_all + python-kzorp_3.9.5-4_all + python-laditools_1.0.1-2_all + python-lamson_1.0pre11-1_all + python-landslide_1.0.1-1_all + python-larch_1.20121006-1_all + python-launchpadlib_1.9.12-2_all + python-lazr.restfulclient_0.12.0-2+deb7u1_all + python-lazr.uri_1.0.3-1_all + python-lazyarray_0.1.0-1_all + python-ldaptor_0.0.43+debian1-7_all + python-ldtp_2.3.1-1_all + python-lepl_5.1.1-1_all + python-libcloud_0.5.0-1.1_all + python-libconcord_0.24-1.1_all + python-liblarch_0.1.0-1_all + python-liblarch-gtk_0.1.0-1_all + python-liblas_1.2.1-2_all + python-libproxy_0.3.1-6_all + python-libravatar_1.5-3_all + python-libvoikko_3.5-1.1_all + python-linaro-image-tools_2012.06-1_all + python-llfuse-doc_0.37.1-2_all + python-lockfile_1:0.8-2_all + python-loggingx_0.1.3-1.1_all + python-logilab-astng_0.23.1-1_all + python-logilab-common_0.58.0-1_all + python-logilab-constraint_0.4.0-5_all + python-logsparser_0.4-1_all + python-louie_1.1-1.1_all + python-lunch_0.4.0-1_all + python-lxml-doc_2.3.2-1_all + python-macaron_0.3.1-1_all + python-mailer_0.7-1_all + python-mako_0.7.0-1.1_all + python-mako-doc_0.7.0-1.1_all + python-markdown_2.1.1-3_all + python-markdown-doc_2.1.1-3_all + python-matplotlib-data_1.1.1~rc2-1_all + python-matplotlib-doc_1.1.1~rc2-1_all + python-mdp_3.3-1_all + python-mecavideo_6.0-5_all + python-mechanize_1:0.2.5-3_all + python-medusa_1:0.5.4-7_all + python-medusa-doc_1:0.5.4-7_all + python-melange_1:2012.1-3_all + python-melangeclient_0.1-1.2_all + python-memcache_1.48-1_all + python-messaging_0.5.11+debian-1_all + python-midiutil_0.87-2_all + python-migrate_0.7.2-3_all + python-milter-doc_0.9.5-3_all + python-milter-docs_0.9.5-3_all + python-mimeparse_0.1.3-6_all + python-minimal_2.7.3-4+deb7u1_all + python-minimock_1.2.7-1_all + python-mlpy_2.2.0~dfsg1-2_all + python-mlpy-doc_2.2.0~dfsg1-2_all + python-mock_0.8.0-3_all + python-mock-doc_0.8.0-3_all + python-mocker_1.0-2_all + python-mod-pywebsocket_0.7.5-1_all + python-mode_1:5.1.0-1_all + python-modestmaps_1.3.1-1_all + python-moinmoin_1.9.4-8+deb7u2_all + python-monajat_2.6.3-1_all + python-mongoengine_0.6.13-2_all + python-mongoengine-doc_0.6.13-2_all + python-moovida_1.0.9+bzr1614-1.1_all + python-mosquitto_0.15-2_all + python-mox_0.5.3-3_all + python-mpd_0.3.0-4_all + python-mpdclient_0.11.1-2_all + python-mpi_2.8-4_all + python-mpi4py-doc_1.3+hg20120611-3_all + python-mpltoolkits.basemap-data_1.0.3+dfsg-2_all + python-mpltoolkits.basemap-doc_1.0.3+dfsg-2_all + python-mpmath_0.17-1_all + python-mpmath-doc_0.17-1_all + python-mrjob_0.3.3.2-1_all + python-msnlib_3.8-1_all + python-multipartposthandler_0.1.0-2_all + python-munkres_1.0.5.4-2_all + python-musicbrainz2_0.7.4-1_all + python-musicbrainz2-doc_0.7.4-1_all + python-musicbrainzngs_0.2-1_all + python-mutagen_1.20-1_all + python-mvpa_0.4.8-1_all + python-mvpa-doc_0.4.8-1_all + python-mvpa2_2.1.0-1_all + python-mvpa2-doc_2.1.0-1_all + python-myghty_1.1-5_all + python-myghtyutils_0.52-4_all + python-mygpoclient_1.4-1_all + python-mysql.connector_0.3.2-1_all + python-neo_0.2.0-1_all + python-netaddr_0.7.7-1_all + python-netaddr-docs_0.7.7-1_all + python-netfilter_0.5.7-1_all + python-netio230a_1.0.1-3_all + python-networkx_1.7~rc1-3_all + python-networkx-doc_1.7~rc1-3_all + python-nevow_0.10.0-4_all + python-nibabel_1.2.2-1_all + python-nibabel-doc_1.2.2-1_all + python-nipype_0.5.3-2wheezy2_all + python-nipype-doc_0.5.3-2wheezy2_all + python-nitime_0.4-2_all + python-nitime-doc_0.4-2_all + python-nmap_0.2.4-1_all + python-nodebox-web_1.9.4.6-2_all + python-nose_1.1.2-3_all + python-nose-doc_1.1.2-3_all + python-nosexcover_1.0.7-1_all + python-notify2_0.3-2_all + python-notmuch_0.13.2-1_all + python-nova_2012.1.1-18_all + python-novaclient_1:2012.1-4_all + python-novnc_2012.1~e3+dfsg+1-4_all + python-numm_0.4-1_all + python-numpy-doc_1:1.6.2-1.2_all + python-nut_2.6.4-2.3+deb7u1_all + python-nwdiag_0.7.0-1_all + python-nwsclient_1.6.4-8_all + python-nwsserver_2.0.0-2_all + python-nxt_2.2.2-1_all + python-nxt-filer_2.2.2-1_all + python-oauth_1.0.1-3_all + python-oauth2_1.5.211-2_all + python-oauthlib_0.1.2-1_all + python-objgraph_1.7.1-1_all + python-objgraph-doc_1.7.1-1_all + python-old-doctools_2.5.5-2.1_all + python-omniorb-doc_3.6-1_all + python-omniorb-omg_3.6-1_all + python-ooolib_0.0.17-2.1_all + python-opengl_3.0.1-1_all + python-openid_2.2.5-3_all + python-openid-doc_2.2.5-3_all + python-openoffice_1:0.1+20110209-3_all + python-openopt_0.38+svn1589-1_all + python-openpyxl_1.5.8-1_all + python-openssl-doc_0.13-2+deb7u1_all + python-openvswitch_1.4.2+git20120612-9.1~deb7u1_all + python-opster_3.7-1_all + python-optcomplete_1.2-11.1_all + python-osd_0.2.14-5.1_all + python-ownet_2.8p15-1_all + python-packagekit_0.7.6-3_all + python-packagekit-gtk_3.4.2-2_all + python-pandas_0.8.0-2_all + python-parallel_0.2-7_all + python-paramiko_1.7.7.1-3.1_all + python-parsedatetime_0.8.7-3_all + python-passlib_1.5.3-2_all + python-paste_1.7.5.1-4.1_all + python-pastedeploy_1.5.0-3_all + python-pastescript_1.7.5-2_all + python-pastewebkit_1.0-7_all + python-pbs_0.95-1_all + python-pcs_0.5+debian-1.1_all + python-pdfminer_20110515+dfsg-1_all + python-pdfrw_0+svn136-3_all + python-pdftools_0.37-3_all + python-peak.rules_0.5a1+r2707-1_all + python-peak.util_20110909-1_all + python-peak.util.decorators_1.8-2_all + python-pebl-doc_1.0.2-2_all + python-pefile_1.2.9.1-1_all + python-pesto_25-1_all + python-pexpect_2.4-1_all + python-pika_0.9.5-1_all + python-pip_1.1-3_all + python-pipeline_0.1.3-3_all + python-pisa_3.0.32-1_all + python-pkg-resources_0.6.24-1_all + python-plastex_0.9.2-1_all + python-plastex-doc_0.9.2-1_all + python-plwm_2.6a+20080530-1.1_all + python-ply_3.4-3_all + python-ply-doc_3.4-3_all + python-pmw_1.3.2-6_all + python-pmw-doc_1.3.2-6_all + python-polib_1.0.0-2_all + python-polib-doc_1.0.0-2_all + python-popcon_1.1_all + python-poster_0.8.1-0.1_all + python-pp_1.6.2-2_all + python-prettytable_0.6.1-1_all + python-progressbar_2.2-2_all + python-protobuf.socketrpc_1.3.2-2_all + python-prowlpy_0+20100211.92df046-1_all + python-psycopg2-doc_2.4.5-1_all + python-ptrace_0.6.4-2_all + python-pudb_2012.1-1_all + python-py_1.4.8-1_all + python-pyamf-doc_0.6.1+dfsg-3_all + python-pyasn1_0.1.3-1_all + python-pyassimp_3.0~dfsg-1_all + python-pyatspi_2.5.3+dfsg-3_all + python-pyatspi2_2.5.3+dfsg-3_all + python-pybabel_0.9.6-1_all + python-pycalendar_2.0~svn188-1_all + python-pycallgraph_0.5.1-3_all + python-pycha_0.6.0-3_all + python-pychart_1.39-7_all + python-pychart-doc_1.39-7_all + python-pyclamd_0.2.2-1_all + python-pycountry_0.14.1+ds1-3_all + python-pycparser_2.07+dfsg-1_all + python-pydhcplib_0.6.2-3_all + python-pydirector_1.0.0-2_all + python-pydoctor_0.3+bzr567-1_all + python-pydot_1.0.2-1_all + python-pyds9_1.4-1_all + python-pyentropy_0.4.1-1_all + python-pyepl-common_1.1.0-3.1_all + python-pyevolve_0.6~rc1+svn398+dfsg-2_all + python-pyevolve-doc_0.6~rc1+svn398+dfsg-2_all + python-pyexiv2-doc_0.3.2-5_all + python-pyface_4.1.0-1_all + python-pyfiglet_0.6+dfsg-1_all + python-pyftpdlib_0.7.0-1_all + python-pygccxml_1.0.0-4_all + python-pyglet_1.1.4.dfsg-2_all + python-pygments_1.5+dfsg-1_all + python-pygooglechart_0.3.0-1_all + python-pygrace_0.4p2-3_all + python-pygraph_1.8.1-1_all + python-pyhsm_1.0.4-1_all + python-pyinotify_0.9.3-1.1_all + python-pyinotify-doc_0.9.3-1.1_all + python-pyip_0.7-1_all + python-pyjavaproperties_0.6-1_all + python-pyke_1.1.1-3_all + python-pyke-doc_1.1.1-3_all + python-pykickstart_1.83-1_all + python-pylast_0.5.11-1_all + python-pylons_1.0-2_all + python-pyme-doc_1:0.8.1-2_all + python-pymetar_0.19-1_all + python-pymodbus_0.9.0+r175-3_all + python-pymongo-doc_2.2-4+deb7u1_all + python-pymtp_0.0.4-4_all + python-pynetsnmp_0.28.14-1.2_all + python-pynn_0.7.4-1_all + python-pyode-doc_1.2.0-4+cvs20090320_all + python-pyoptical_0.3-1_all + python-pyorbit-dev_2.24.0-6_all + python-pyorbit-omg_2.24.0-6_all + python-pyparsing_1.5.6+dfsg1-2_all + python-pyparsing-doc_1.5.6+dfsg1-2_all + python-pypdf_1.13-1_all + python-pypureomapi_0.2-1_all + python-pyquery_1.2.1-1_all + python-pyrad_1.2-1+deb7u2_all + python-pyramid_1.2.3+dfsg-1_all + python-pyramid-beaker_0.6.1+ds1-1_all + python-pyramid-tm_0.4-1_all + python-pyramid-zcml_0.9.2-1_all + python-pyrex_0.9.8.5-2_all + python-pyrrd_0.1.0-1_all + python-pyrss2gen_1.0.0-9_all + python-pyscript_0.6.1-3_all + python-pyscript-doc_0.6.1-3_all + python-pysearch_3.1-1.1_all + python-pyshp_1.1.4-1_all + python-pyside_1.1.1-3_all + python-pysnmp4_4.2.2-1_all + python-pysnmp4-apps_0.3.2-1_all + python-pysnmp4-doc_4.2.2-1_all + python-pysnmp4-mibs_0.1.3-1_all + python-pysolr_2.0.15-1_all + python-pysqlite2-doc_2.6.3-3_all + python-pytango-doc_7.2.3-2_all + python-pytest_2.2.4-2_all + python-pytest-doc_2.2.4-2_all + python-pytest-xdist_1.8-0.1_all + python-pyth_0.5.6-3_all + python-pythoncard_0.8.2-2_all + python-pytils_0.2.3-2_all + python-pytools_2011.5-2_all + python-pyudev_0.13-1_all + python-pyvtk_0.4.74-3_all + python-pywapi_0.2.2-1_all + python-pywbem_0.7.0-4_all + python-pyx-doc_0.11.1-2_all + python-pyxid_1.0-1_all + python-pyxmpp-doc_1.1.2-1_all + python-pyxnat_0.9.0~dev0-1.1_all + python-qgis-common_1.7.4+1.7.5~20120320-1.1_all + python-qpid_0.16-1_all + python-qpid-extras-qmf_0.16-1_all + python-qrtools_1.2-2_all + python-qt4-dev_4.9.3-4_all + python-qt4-doc_4.9.3-4_all + python-quantities_0.10.1-1_all + python-quantum_2012.1-5+deb70u1_all + python-quantumclient_2012.1-1_all + python-quixote-doc_2.7~b2-1_all + python-qwt3d-doc_0.1.7~cvs20090625-9_all + python-qwt5-doc_5.2.1~cvs20091107+dfsg-6_all + python-radicale_0.7-1.1_all + python-rainbow_0.8.6-1_all + python-rbtools_0.3.4-1_all + python-recaptcha_1.0.6-1_all + python-redis_2.4.13-1_all + python-relational_1.1-1_all + python-relatorio_0.5.6-2_all + python-reportbug_6.4.4_all + python-reportlab_2.5-1.1_all + python-reportlab-doc_2.5-1.1_all + python-repoze.lru_0.5-2_all + python-repoze.sphinx.autointerface_0.4-1_all + python-repoze.tm2_1.0b2-1_all + python-repoze.what_1.0.9-2_all + python-repoze.what-plugins_20090531-2_all + python-repoze.who_1.0.18-2_all + python-repoze.who-plugins_20090913-1_all + python-requests_0.12.1-1_all + python-restkit_4.1.3-2_all + python-rgain_1.0.1-1_all + python-rhash_1.2.9-8+deb7u1_all + python-rhn_2.5.52-1_all + python-roman_0.8.1-8_all + python-rope_0.9.2-1_all + python-ropemacs_0.6c2-4_all + python-routes_1.13-2_all + python-rpy-doc_1.0.3-22_all + python-rtai_3.8.1-4_all + python-rtslib_2.1-2_all + python-satellites_1.0-6_all + python-scapy_2.2.0-1_all + python-scientific_2.8-4_all + python-scientific-doc_2.8-4_all + python-scikits-learn_0.11.0-2+deb7u1_all + python-scikits.statsmodels_0.4.2-1_all + python-scitools_0.9.0-1_all + python-sclapp_0.5.3-2_all + python-scour_0.26-3_all + python-scrapy_0.14.4-1_all + python-scrapy-doc_0.14.4-1_all + python-scriptutil_1-1_all + python-sepolgen_1.1.5-3_all + python-seqdiag_0.7.3-1_all + python-serial_2.5-2.1_all + python-sesame_0.24-1_all + python-setupdocs_1.0.5-3_all + python-setuptools_0.6.24-1_all + python-simplegeneric_0.8.1-1_all + python-simpleparse_2.1.0a1-6_all + python-simpleparse-doc_2.1.0a1-6_all + python-simpletal_4.1-7_all + python-simpy_2.3.1-1_all + python-simpy-doc_2.3.1-1_all + python-simpy-gui_2.3.1-1_all + python-sip-doc_4.13.3-2_all + python-six_1.1.0-2_all + python-skimage_0.6.1-1_all + python-skimage-doc_0.6.1-1_all + python-sklearn_0.11.0-2+deb7u1_all + python-sklearn-doc_0.11.0-2+deb7u1_all + python-sleekxmpp_1.0~beta5-2_all + python-slides_1.0.1-13_all + python-slimmer_0.1.30-6_all + python-smartypants_1.6.0.3-2_all + python-smmap_0.8.2-1_all + python-soaplib_0.8.1-2_all + python-soappy_0.12.0-4_all + python-socketpool_0.4.1-1_all + python-socksipy_1.0-1_all + python-software-properties_0.82.7.1debian1_all + python-sorl-thumbnail_11.12-4_all + python-sourcecodegen_0.6.14-1_all + python-soya-doc_0.14-2_all + python-sparqlwrapper_1.4.1-1_all + python-sparse-examples_1.1-1_all + python-speechd_0.7.1-6.2_all + python-spf_2.0.7-3_all + python-sphinx_1.1.3+dfsg-4_all + python-sphinx-issuetracker_0.8-1_all + python-sphinxcontrib.actdiag_0.4.2-1_all + python-sphinxcontrib.blockdiag_1.1.1-1_all + python-sphinxcontrib.issuetracker_0.8-1_all + python-sphinxcontrib.nwdiag_0.4.1-1_all + python-sphinxcontrib.seqdiag_0.4.1-1_all + python-sphinxcontrib.spelling_1.3-1_all + python-sponge_0.3.1-1_all + python-springpython_1.2.0+ds-2_all + python-sprox_0.6.4-3_all + python-sptest_0.2.1-2_all + python-spyderlib_2.1.10-2_all + python-sqlalchemy_0.7.8-1_all + python-sqlalchemy-doc_0.7.8-1_all + python-sqlkit_0.9.5-1_all + python-sqlkit-doc_0.9.5-1_all + python-sqlobject_0.12.4-2.2_all + python-sqlparse_0.1.4-1_all + python-squaremap_1:1.0.1-1_all + python-starpy_1.0.1-1_all + python-statsmodels_0.4.2-1_all + python-statsmodels-doc_0.4.2-1_all + python-stdeb_0.6.0+20100620-2_all + python-stdnum_0.7-1_all + python-stemmer-doc_1.2.0+dfsg-1_all + python-stepic_0.3-4_all + python-stompy_0.2.9-1_all + python-strongwind_0.9-2_all + python-stsci.distutils_0.3-1_all + python-subunit_0.0.8+bzr176-1_all + python-suds_0.4.1-5_all + python-sunlight_1.1.5-1_all + python-sunlight-doc_1.1.5-1_all + python-sunpinyin_2.0.3+git20120607-1_all + python-support_1.0.15_all + python-surfer_0.3+git15-gae6cbb1-1.1_all + python-swift_1.4.8-2+deb7u1_all + python-symeig_1.5-2_all + python-symeig-dbg_1.5-2_all + python-sympy_0.7.1.rc1-3_all + python-tables-doc_2.3.1-3_all + python-tastypie_0.9.10-2_all + python-taurus_3.0.0-2_all + python-taurus-doc_3.0.0-2_all + python-tegaki_0.3.1-1_all + python-tegaki-gtk_0.3.1-1_all + python-tegakitools_0.3.1-1_all + python-telepathy_0.15.19-2.1_all + python-tempita_0.5.1-1_all + python-templayer_1.5.1-1_all + python-testrepository_0.0.5-1.1_all + python-testresources_0.2.4-1_all + python-testscenarios_0.2-1_all + python-testtools_0.9.14-2_all + python-textile_1:2.1.5-1_all + python-tftpy_0.6.0-1_all + python-tg.devtools_2.0.2-3_all + python-tgext.admin_0.2.6-2_all + python-tidylib_0.2.1~dfsg-2_all + python-tksnack_2.2.10-dfsg1-12.1_all + python-tlslite_0.3.8-2_all + python-tofu_0.5-5_all + python-torctl_20110618git-1_all + python-tornado_2.3-2_all + python-toscawidgets_0.9.7.2-2_all + python-tp-client_0.3.2-2_all + python-tp-netlib_0.2.5-3_all + python-tracer_0.2.3-1_all + python-tracing_0.6-2_all + python-traitsbackendqt_3.6.0-2_all + python-traitsbackendwx_3.6.0-3_all + python-traitsgui_3.6.0-3_all + python-traitsui_4.1.0-1_all + python-transaction_1.1.1-2_all + python-translationstring_1.1-2_all + python-transmissionrpc_0.8-1_all + python-trml2pdf_1.2-3_all + python-ttystatus_0.19-1_all + python-turbogears2_2.1.5-2_all + python-turbogears2-doc_2.1.5-1_all + python-turbojson_1.3.2-2_all + python-turbokid_1.0.5-1_all + python-tvdb-api_1.7.1-1_all + python-tweepy_1.7.1-2_all + python-tweepy-doc_1.7.1-2_all + python-twill_0.9-3_all + python-twisted_12.0.0-1_all + python-twisted-conch_1:12.0.0-1_all + python-twisted-core_12.0.0-1_all + python-twisted-libravatar_1.1-3_all + python-twisted-lore_12.0.0-1_all + python-twisted-mail_12.0.0-1_all + python-twisted-names_12.0.0-1_all + python-twisted-news_12.0.0-1_all + python-twisted-web_12.0.0-1_all + python-twisted-web2_8.1.0-3_all + python-twisted-words_12.0.0-1_all + python-txaws_0.2.3-1_all + python-txosc_0.2.0-1_all + python-txzookeeper_0.9.5-1_all + python-typogrify_20111209-2_all + python-tz_2012c-1_all + python-ucltip_0.7.1-1_all + python-ufl_1.0.0-1_all + python-ufl-doc_1.0.0-1_all + python-uncertainties_1.8-1_all + python-unicodecsv_0.9.0-1_all + python-unidecode_0.04.9-1_all + python-unipath_0.2.1+dfsg-1_all + python-unit_1.4.1-16_all + python-unittest2_0.5.1-1_all + python-urlgrabber_3.9.1-4_all + python-urllib3_1.3-3_all + python-utidylib_0.2-8_all + python-uwsgicc_1.2.3+dfsg-5+deb7u1_all + python-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python-van.pydeb_1.3.3-1_all + python-vatnumber_1:1.0-2_all + python-venusian_1.0a6-1_all + python-vigra-doc_1.7.1+dfsg1-3_all + python-viper_1.0.0-1_all + python-virtualenv_1.7.1.2-2_all + python-vobject_0.8.1c-4_all + python-vsgui_0.3.3-1_all + python-w3lib_1.0-1_all + python-wader_0.5.10-1_all + python-wadllib_1.3.0-2_all + python-web2py_1.99.7-1_all + python-webcolors_1.3.1+hg~2c8ac6e0a03d-2_all + python-webdav_0.9.8-3_all + python-weberror_0.10.3-1_all + python-webflash_0.1a9-4_all + python-webhelpers_1.3-4_all + python-webkit-dev_1.1.8-2_all + python-weblib_1.3.9-1_all + python-weblib-doc_1.3.9-1_all + python-webob_1.1.1-1.1_all + python-weboob-core_0.c-4.1_all + python-webpy_1:0.37+20120626-1_all + python-webtest_1.3.4-1_all + python-webunit_1:1.3.10-2_all + python-werkzeug_0.8.3+dfsg-1_all + python-whisper_0.9.10-1_all + python-whiteboard_1.0+git20111009-1_all + python-whois_0.6.4-2_all + python-whoosh_2.3.2-2_all + python-whoosh-doc_2.3.2-2_all + python-wicd_1.7.2.4-4_all + python-wit_2.1-3_all + python-wokkel_0.7.0-1_all + python-wordpresslib_1.1-1_all + python-wtforms_1.0.1-1_all + python-wxglade_0.6.5-2_all + python-wxmpl_2.0.0-2_all + python-wxtools_2.8.12.1-12_all + python-wxversion_2.8.12.1-12_all + python-xappy_0.5-5_all + python-xcbgen_1.7.1-1_all + python-xdg_0.19-5_all + python-xenapi_1.3.2-15_all + python-xlib_0.14+20091101-1_all + python-xlrd_0.6.1-2_all + python-xlwt_0.7.4+debian1-1_all + python-xmlmarshaller_0.9.7+svn39722-2_all + python-xmlrunner_1.2-1_all + python-xmltv_1.3-1_all + python-xmpp_0.4.1-cvs20080505.2_all + python-yahoo_3.1-1.1_all + python-yappy_1.9.4-1_all + python-yappy-doc_1.9.4-1_all + python-yubico_1.1.0-2_all + python-yubico-tools_1.1.0-2_all + python-zc.buildout_1.5.2-1_all + python-zc.lockfile_1.0.0-6_all + python-zconfig_2.8.0-1_all + python-zdaemon_2.0.7-1_all + python-zeitgeist_0.9.0.1-1_all + python-zhpy_1.7.3.1-1_all + python-zope.authentication_3.7.1-3_all + python-zope.browser_1.3-2_all + python-zope.cachedescriptors_3.5.1-2_all + python-zope.component_3.10.0-3_all + python-zope.component-test_3.10.0-3_all + python-zope.component-zcml_3.10.0-3_all + python-zope.configuration_3.7.4-2_all + python-zope.contenttype_3.5.3-2_all + python-zope.copy_3.5.0-6_all + python-zope.deprecation_4.0.0-1_all + python-zope.dottedname_3.4.6-5_all + python-zope.event_3.5.1-1_all + python-zope.exceptions_3.6.1-3_all + python-zope.i18n_3.7.4-2_all + python-zope.location_3.9.1-2_all + python-zope.publisher_3.12.6-2_all + python-zope.schema_3.7.1-2_all + python-zope.sendmail_3.7.4-2_all + python-zope.sqlalchemy_0.6.1-2_all + python-zope.testbrowser_4.0.2-1_all + python-zope.testing_3.10.2-1_all + python-zope.testrunner_4.0.3-3_all + python-zope.traversing_3.13.2-2_all + python-zsi_2.1~a1-3_all + python2.6-doc_2.6.8-1.1_all + python2.6-examples_2.6.8-1.1_all + python2.7-doc_2.7.3-6_all + python2.7-examples_2.7.3-6_all + python3_3.2.3-6_all + python3-all_3.2.3-6_all + python3-all-dbg_3.2.3-6_all + python3-all-dev_3.2.3-6_all + python3-amqplib_1.0.2-1_all + python3-anyjson_0.3.1-2_all + python3-authres_0.402-1_all + python3-beaker_1.6.3-1.1_all + python3-bs4_4.1.0-1_all + python3-cairo-dev_1.10.0+dfsg-2_all + python3-cairo-doc_1.10.0+dfsg-2_all + python3-cairosvg_0.4.3-1_all + python3-chardet_2.0.1-1_all + python3-cssutils_0.9.10~b1-1_all + python3-cxx_6.2.4-3_all + python3-cxx-dev_6.2.4-3_all + python3-d2to1_0.2.7-1_all + python3-dateutil_2.0+dfsg1-1_all + python3-dbg_3.2.3-6_all + python3-decorator_3.3.3-1_all + python3-defer_1.0.6-2_all + python3-dev_3.2.3-6_all + python3-dexml_0.4.2-2_all + python3-distro-info_0.10_all + python3-distutils-extra_2.36-1_all + python3-dkim_0.5.3-1+deb7u1_all + python3-dns_3.0.2-1+deb7u1_all + python3-dnspython_1.10.0-1_all + python3-doc_3.2.3-6_all + python3-docutils_0.8.1-8_all + python3-easygui_0.96-3_all + python3-enchant_1.6.5-2_all + python3-examples_3.2.3-6_all + python3-flexmock_0.9.6-1_all + python3-flufl.bounce_2.1.1-1_all + python3-flufl.enum_3.3.2-1_all + python3-flufl.i18n_1.1.1-1_all + python3-flufl.lock_2.2.1-2_all + python3-flufl.password_1.2.1-1_all + python3-fudge_1.0.3-3_all + python3-germinate_2.10_all + python3-gnupg_0.3.0-1.1_all + python3-html2text_3.200.3-2_all + python3-httplib2_0.7.4-2+deb7u1_all + python3-iowait_0.1-1.1_all + python3-ipaddr_2.1.10-1_all + python3-ipy_1:0.75-1_all + python3-isodate_0.4.6-1_all + python3-keyring_0.7.1-1+deb7u1_all + python3-lazr.uri_1.0.3-1_all + python3-lepl_5.1.1-1_all + python3-mako_0.7.0-1.1_all + python3-markdown_2.1.1-3_all + python3-mdp_3.3-1_all + python3-minimal_3.2.3-6_all + python3-mock_0.8.0-3_all + python3-netaddr_0.7.7-1_all + python3-nose_1.1.2-3_all + python3-notify2_0.3-2_all + python3-objgraph_1.7.1-1_all + python3-pbs_0.95-1_all + python3-pip_1.1-3_all + python3-pipeline_0.1.3-3_all + python3-pkg-resources_0.6.24-1_all + python3-ply_3.4-3_all + python3-polib_1.0.0-2_all + python3-prettytable_0.6.1-1_all + python3-py_1.4.8-1_all + python3-pyatspi_2.5.3+dfsg-3_all + python3-pyatspi2_2.5.3+dfsg-3_all + python3-pycparser_2.07+dfsg-1_all + python3-pygments_1.5+dfsg-1_all + python3-pyinotify_0.9.3-1.1_all + python3-pylast_0.5.11-1_all + python3-pyparsing_1.5.6+dfsg1-2_all + python3-pyshp_1.1.4-1_all + python3-pyside_1.1.1-3_all + python3-pytest_2.2.4-2_all + python3-pytools_2011.5-2_all + python3-pyudev_0.13-1_all + python3-requests_0.12.1-1_all + python3-roman_0.8.1-8_all + python3-serial_2.5-2.1_all + python3-setuptools_0.6.24-1_all + python3-simplegeneric_0.8.1-1_all + python3-simpy_2.3.1-1_all + python3-six_1.1.0-2_all + python3-sleekxmpp_1.0~beta5-2_all + python3-slimmer_0.1.30-6_all + python3-spf_2.0.7-3_all + python3-sphinx_1.1.3+dfsg-4_all + python3-sqlalchemy_0.7.8-1_all + python3-stdnum_0.7-1_all + python3-stsci.distutils_0.3-1_all + python3-subunit_0.0.8+bzr176-1_all + python3-sunlight_1.1.5-1_all + python3-tempita_0.5.1-1_all + python3-testtools_0.9.14-2_all + python3-tornado_2.3-2_all + python3-tz_2012c-1_all + python3-unidecode_0.04.9-1_all + python3-urllib3_1.3-3_all + python3-uwsgidecorators_1.2.3+dfsg-5+deb7u1_all + python3-wadllib_1.3.0-2_all + python3-zope.exceptions_3.6.1-3_all + python3-zope.fixers_1.0-1_all + python3-zope.testrunner_4.0.3-3_all + python3.2-doc_3.2.3-7_all + python3.2-examples_3.2.3-7_all + pythoncad_0.1.37.0-3_all + pythoncard_0.8.2-2_all + pythoncard-doc_0.8.2-2_all + pythoncard-tools_0.8.2-2_all + pytimechart_1.0.0~rc1-3_all + pytrainer_1.9.1-2_all + pyvnc2swf_0.9.5-5_all + pyxplot-doc_0.8.4-5_all + pyzor_1:0.5.0-2_all + qalculate_0.9.7-3_all + qastools-common_0.17.2-2_all + qbzr_0.22.2-1_all + qcad_2.0.5.0-1+090318.1-2_all + qct_1.7-3_all + qdbm-doc_1.8.78-2_all + qelectrotech-data_0.22+svn897-1_all + qelectrotech-examples_0.22+svn897-1_all + qemu-keymaps_1.1.2+dfsg-6a_all + qemu-launcher_1.7.4-1_all + qemuctl_0.2-2_all + qemulator_0.6.352-1_all + qgis-api-doc_1.7.4+1.7.5~20120320-1.1_all + qgis-common_1.7.4+1.7.5~20120320-1.1_all + qgis-plugin-grass-common_1.7.4+1.7.5~20120320-1.1_all + qgis-providers-common_1.7.4+1.7.5~20120320-1.1_all + qiime-doc_1.4.0-2_all + qla-tools_20090804-1_all + qmail-run_2.0.2_all + qmail-tools_0.1.0_all + qmail-uids-gids_1.06-5_all + qmf-doc_1.0.7~2011w23.2-2.1_all + qmf-doc-html_1.0.7~2011w23.2-2.1_all + qmtest_2.4.1-1_all + qnapi-gnome_0.1.5-9_all + qof-data_0.8.6-1_all + qpid-doc_0.16-6+deb7u1_all + qpid-specs_0.16-1_all + qpid-tools_0.14-1_all + qprint-doc_1.0.dfsg.2-2_all + qpsmtpd_0.84-9_all + qsapecng-doc_2.0.0-5_all + qt-at-spi-doc_0.3.1-3_all + qt-sdk_2_all + qt4-doc_4:4.8.2+dfsg-11_all + qt4-doc-html_4:4.8.2+dfsg-11_all + qtcreator-doc_2.5.0-2_all + qtcurve-i18n_1.8.12-2_all + qtgstreamer-doc_0.10.2-2_all + qtiplot-doc_0.9.8.8-5_all + qtmobility-l10n_1.2.0-3_all + qtpfsgui_2.2.1-3_all + qtqr_1.2-2_all + qtsmbstatus-language_2.2.1-2_all + quagga-doc_0.99.22.4-1+wheezy1_all + quantlib-refman-html_1.2-1_all + quantum-common_2012.1-1_all + quantum-espresso-data_5.0-1_all + quantum-plugin-cisco_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge_2012.1-5+deb70u1_all + quantum-plugin-linuxbridge-agent_2012.1-5+deb70u1_all + quantum-plugin-nicira_2012.1-5+deb70u1_all + quantum-plugin-openvswitch_2012.1-5+deb70u1_all + quantum-plugin-openvswitch-agent_2012.1-5+deb70u1_all + quantum-plugin-sample_2012.1-5+deb70u1_all + quantum-server_2012.1-5+deb70u1_all + quassel-data_0.8.0-1_all + quassel-data-kde4_0.8.0-1_all + queuegraph_1.1.1-3_all + quickml_0.7-4_all + quilt_0.60-2_all + quilt-el_0.48.0-1_all + quodlibet_2.4-1_all + quodlibet-plugins_1:2.4-1_all + qutecom-data_2.2.1+dfsg1-3_all + qweborf_0.13-3_all + r-base_2.15.1-4_all + r-base-dev_2.15.1-4_all + r-base-html_2.15.1-4_all + r-bioc-cummerbund_1.2.0-1_all + r-bioc-edger_2.6.1~dfsg-1_all + r-bioc-qvalue_1.30.0-1_all + r-cran-abind_1.4-0-1_all + r-cran-amelia_1.6.1-1_all + r-cran-boot_1.3-5-1_all + r-cran-car_2.0-12-1_all + r-cran-coda_0.14-7-1_all + r-cran-codetools_0.2-8-1_all + r-cran-combinat_0.0-8-3_all + r-cran-diagnosismed_0.2.3-2_all + r-cran-domc_1.2.5-1_all + r-cran-dosnow_1.0.6-1_all + r-cran-effects_2.1.1-1_all + r-cran-epicalc_2.14.1.6-1_all + r-cran-epir_0.9-38-1_all + r-cran-epitools_1:0.5-6-1_all + r-cran-fexoticoptions_2110.77-2_all + r-cran-fextremes_2100.77-3_all + r-cran-fimport_2160.81-1_all + r-cran-fmultivar_2100.76-3_all + r-cran-foreach_1.4.0-1_all + r-cran-ftrading_2100.76-3_all + r-cran-g.data_2.0-4_all + r-cran-gdata_2.11.0-1_all + r-cran-genetics_1.3.6-2_all + r-cran-ggplot2_0.8.9-1_all + r-cran-gmaps_0.2-1_all + r-cran-gmodels_2.15.3-1_all + r-cran-gplots_2.11.0-1_all + r-cran-gregmisc_2.1.2-2_all + r-cran-inline_0.3.8-1_all + r-cran-iterators_1.0.6-1_all + r-cran-its_1.1.8-2_all + r-cran-matchit_2.4-18-1_all + r-cran-misc3d_0.8-2-1_all + r-cran-multcomp_1.2-12-1_all + r-cran-nws_2.0.0.3-2_all + r-cran-permute_0.7-0-1_all + r-cran-plotrix_3.2-6-1_all + r-cran-psy_1.0-4_all + r-cran-pvclust_1.2-2-1_all + r-cran-rcolorbrewer_1.0-5-1_all + r-cran-relimp_1.0-3-1_all + r-cran-reshape2_1.2.1-1_all + r-cran-rocr_1.0-4-3_all + r-cran-runit_0.4.26-1_all + r-cran-sandwich_2.2-9-1_all + r-cran-snow_1:0.3.9-1_all + r-cran-stabledist_0.6-4-1_all + r-cran-stringr_0.6.0-1_all + r-cran-strucchange_1.4-7-1_all + r-cran-teachingdemos_2.7-1_all + r-cran-vcd_1:1.2-12-1_all + r-cran-xtable_1:1.5-6-1_all + r-cran-zelig_3.5.5-1_all + r-doc-html_2.15.1-4_all + r-doc-info_2.15.1-4_all + r-doc-pdf_2.15.1-4_all + r-other-bio3d_1.1-4-1_all + r-recommended_2.15.1-4_all + r5rs-doc_20010328-7_all + rabbit_1.0.8-2_all + rabbit-mode_1.0.8-2_all + rabbitmq-server_2.8.4-1_all + rabbitvcs-cli_0.15.0.5-3_all + rabbitvcs-core_0.15.0.5-3_all + rabbitvcs-gedit_0.15.0.5-3_all + rabbitvcs-nautilus_0.15.0.5-3_all + racc_1.4.8-4_all + racket-common_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + racket-doc_5.2.1+g6~92c8784+dfsg2-2+deb7u1_all + radare2-vala_0.9-1_all + radiance-doc_4R1+20120125-1_all + radiance-materials_4R1+20120125-1_all + radicale_0.7-1.1_all + rafkill-data_1.2.2-3.3_all + rail_1.2.6-2_all + rails_2:2.3.14.2_all + rails-doc_2:2.3.14.2_all + rails-ruby1.8_2:2.3.14.2_all + rails3_3.2.6-1_all + rainbow_0.8.6-1_all + raincat-data_1.1-3_all + rake_0.9.2.2-4_all + rake-compiler_0.8.1-1_all + rancid-cgi_2.3.8-3_all + randomplay_0.60+nmu1_all + ranger_1.5.4-1_all + rant_0.5.8-8_all + rapid-photo-downloader_0.4.5-3_all + rapid-spring_0.6.0-1_all + rasmol-doc_2.7.5.2-1_all + raster3d-doc_3.0-2-4_all + rastertosag-gdi_0.1-3_all + rawdog_2.13.dfsg.1-1_all + rawtherapee-data_4.0.9-4_all + rbenv_0.3.0-1_all + rbot_0.9.15+post20100705+gitb3aa806-3_all + rbot-doc_0.9.15+post20100705+gitb3aa806-3_all + rcconf_2.5_all + rcs-latex_3.1.debian.1_all + rdeliver_0.12-2_all + rdkit-data_201203-3_all + rdkit-doc_201203-3_all + rdtool_0.6.34-4_all + rdtool-elisp_0.6.34-4_all + readline-common_6.2+dfsg-0.1_all + readpst_0.6.54-4.1_all + realtimebattle-common_1.0.8-13_all + rebuildd_0.4.1.1_all + recode-doc_3.6-20_all + reconf-inetd_1.120603_all + red5-doc_1.0~svn4374-1_all + red5-server_1.0~svn4374-1_all + redet_8.26-1.1_all + redet-doc_8.26-1.1_all + redhat-cluster-source_3.0.12-3.2+deb7u2_all + redhat-cluster-suite_3.0.12-3.2+deb7u2_all + redmine_1.4.4+dfsg1-2+deb7u1_all + redmine-mysql_1.4.4+dfsg1-2+deb7u1_all + redmine-pgsql_1.4.4+dfsg1-2+deb7u1_all + redmine-sqlite_1.4.4+dfsg1-2+deb7u1_all + rednotebook_1.4.0-1_all + regina-normal-doc_4.93-1_all + reinteract_0.5.0-3_all + relational_1.1-1_all + relational-cli_1.1-1_all + remember-el_1.9-1.1_all + remmina-common_1.0.0-4+deb7u1_all + remotetea_1.0.7-2_all + remuco-amarok_0.9.6-2_all + remuco-audacious_0.9.6-2_all + remuco-banshee_0.9.6-2_all + remuco-base_0.9.6-2_all + remuco-clementine_0.9.6-2_all + remuco-exaile_0.9.6-2_all + remuco-gmusicbrowser_0.9.6-2_all + remuco-mpd_0.9.6-2_all + remuco-mplayer_0.9.6-2_all + remuco-okular_0.9.6-2_all + remuco-quodlibet_0.9.6-2_all + remuco-totem_0.9.6-2_all + remuco-tvtime_0.9.6-2_all + remuco-vlc_0.9.6-2_all + remuco-xmms2_0.9.6-2_all + renaissance-doc_0.9.0-4_all + reniced_1.19-1_all + renpy_6.13.12-1_all + renpy-demo_6.13.12-1_all + renpy-doc_6.13.12-1_all + renpy-thequestion_6.13.12-1_all + renrot_1.1-2_all + rep-doc_0.90.2-1.3_all + rep-gtk-gnome_1:0.90.0-2_all + reportbug_6.4.4_all + reportbug-ng_1.27_all + reprof_1.0.1-1_all + request-tracker4_4.0.7-5+deb7u2_all + resolvconf_1.67_all + rest2web_0.5.2~alpha+svn-r248-2_all + rest2web-doc_0.5.2~alpha+svn-r248-2_all + retext_3.1.0-1_all + retext-wpgen_3.1.0-1_all + rheolef-doc_6.1-2.1_all + rhino_1.7R3-5_all + rhino-doc_1.7R3-5_all + rhinote_0.7.4-1_all + rhythmbox-data_2.97-2.1_all + rhythmbox-doc_2.97-2.1_all + ri_1:1.9.3_all + ri-li-data_2.0.1-2_all + ri1.8_1.8.7.358-7.1+deb7u1_all + ri1.9.1_1.9.3.194-8.1+deb7u2_all + ricochet_0.3_all + riece_8.0.0-1_all + rinse_2.0.1-1_all + ripit_3.9.0-2_all + rivet_1.8.0-1_all + rivet-plugins-data_1.8.0-1_all + rivet-plugins-dev_1.8.0-1_all + rivet-plugins-doc_1.8.0-1_all + rivet-reference_1.8.0-1_all + rivet-root-converter_1.8.0-1_all + rivet-user-manual_1.8.0-1_all + rkhunter_1.4.0-1_all + rmagic_2.21-5_all + rmligs-german_20120607-1_all + rnc-mode_1.0b3-1_all + roarplaylistd-codechelper-gst_0.1.1-2_all + roarplaylistd-dev_0.1.1-2_all + roarplaylistd-tools_0.1.1-2_all + robocode_1.6.2+dfsg-3.1_all + robocode-doc_1.6.2+dfsg-3.1_all + robot-player-dev_3.0.2+dfsg-4_all + robot-player-doc_3.0.2+dfsg-4_all + roffit_0.7~20100607+git790d154-3_all + root-macro-fastjet_3.0.2+dfsg-2_all + root-system_5.34.00-2_all + root-system-common_5.34.00-2_all + root-system-doc_5.34.00-2_all + roundcube_0.7.2-9+deb7u1_all + roundcube-core_0.7.2-9+deb7u1_all + roundcube-mysql_0.7.2-9+deb7u1_all + roundcube-pgsql_0.7.2-9+deb7u1_all + roundcube-plugins_0.7.2-9+deb7u1_all + roundcube-plugins-extra_0.7-20120110_all + roundup_1.4.20-1.1_all + routeplanner_0.19_all + routeplanner-gnome_0.19_all + routino-www_2.2-4+deb7u1_all + roxterm_2.6.5-1_all + roxterm-common_2.6.5-1_all + rpl_1.5.5-1_all + rpm-i18n_4.10.0-5+deb7u1_all + rrootage-data_0.23a-9_all + rsnapshot_1.3.1-3_all + rss2email_1:2.71-1_all + rst2pdf_0.16-2_all + rsyslog-doc_5.8.11-3_all + rt4-apache2_4.0.7-5+deb7u2_all + rt4-clients_4.0.7-5+deb7u2_all + rt4-db-mysql_4.0.7-5+deb7u2_all + rt4-db-postgresql_4.0.7-5+deb7u2_all + rt4-db-sqlite_4.0.7-5+deb7u2_all + rt4-extension-assettracker_2.0.0~b2-6_all + rt4-fcgi_4.0.7-5+deb7u2_all + rtai-doc_3.8.1-4_all + rtirq-init_20120505-1_all + rtpg-www_0.2.11-3_all + rttool_1.0.3-2_all + rubber_1.1+20100306-2_all + ruby_1:1.9.3_all + ruby-actionmailer_2:2.3.14.2_all + ruby-actionmailer-2.3_2.3.14-3_all + ruby-actionmailer-3.2_3.2.6-2_all + ruby-actionpack_2:2.3.14.2_all + ruby-actionpack-2.3_2.3.14-5_all + ruby-actionpack-3.2_3.2.6-6_all + ruby-activeldap_1.2.4-3_all + ruby-activeldap-doc_1.2.4-3_all + ruby-activemodel-3.2_3.2.6-3_all + ruby-activerecord_2:2.3.14.2_all + ruby-activerecord-2.3_2.3.14-6_all + ruby-activerecord-3.2_3.2.6-5_all + ruby-activeresource_2:2.3.14.2_all + ruby-activeresource-2.3_2.3.14-3_all + ruby-activeresource-3.2_3.2.6-2_all + ruby-activesupport_2:2.3.14.2_all + ruby-activesupport-2.3_2.3.14-7_all + ruby-activesupport-3.2_3.2.6-6_all + ruby-addressable_2.2.8-1_all + ruby-aggregate_0.2.2-1_all + ruby-albino_1.3.3-1_all + ruby-algorithm-diff_0.4-14_all + ruby-amazon-ec2_0.9.17-2_all + ruby-amq-client_0.9.3-1_all + ruby-amq-protocol_0.9.2-1_all + ruby-amqp_0.9.5-2_all + ruby-amrita_1.0.2-10_all + ruby-amrita2_2.0.2+dfsg.1-3_all + ruby-archive-tar-minitar_0.5.2-2_all + ruby-arel_3.0.2-2_all + ruby-ascii85_1.0.1-2_all + ruby-bacon_1.1.0-2_all + ruby-barby_0.5.0-1_all + ruby-bio_1.4.2-3_all + ruby-blankslate_2.1.2.4-4_all + ruby-bsearch_1.5-9_all + ruby-build_20120524-1_all + ruby-builder_3.0.0-3_all + ruby-bunny_0.7.8-1_all + ruby-capistrano-colors_0.5.5-1_all + ruby-cassiopee_0.1.9-1_all + ruby-childprocess_0.3.3-1_all + ruby-chronic_0.6.7-2_all + ruby-chunky-png_1.2.5-2_all + ruby-classifier_1.3.3-1_all + ruby-cmdparse_2.0.5-1_all + ruby-coderay_1.0.6-2_all + ruby-color-tools_1.4.1-2_all + ruby-commandline_0.7.10-12_all + ruby-commandline-doc_0.7.10-12_all + ruby-compass_0.12.2~dfsg-2_all + ruby-contest_0.1.3-2_all + ruby-daemons_1.1.5-2_all + ruby-dataobjects_0.10.8-4_all + ruby-dbd-mysql_0.4.4+gem2deb-1_all + ruby-dbd-odbc_0.2.5+gem2deb-1_all + ruby-dbd-pg_0.3.9+gem2deb-1_all + ruby-dbd-sqlite3_1.2.5+gem2deb-1_all + ruby-dbi_0.4.5-1_all + ruby-dbus_0.7.2-1_all + ruby-deprecated_3.0.0-1_all + ruby-dev_1:1.9.3_all + ruby-diff-lcs_1.1.3-1_all + ruby-directory-watcher_1.4.1-1_all + ruby-dnsruby_1.53-1_all + ruby-domain-name_0.5.3-1_all + ruby-dust_0.1.7-2_all + ruby-ecasound_2.9.0-1_all + ruby-echoe_4.6.3-1_all + ruby-eim-xml_0.0.4-3_all + ruby-erubis_2.7.0-2_all + ruby-event-loop_0.3-5_all + ruby-excon_0.13.4-1_all + ruby-extlib_0.9.15-3_all + ruby-facets_2.9.2-1_all + ruby-facets-doc_2.9.2-1_all + ruby-fakefs_0.4.0-1_all + ruby-fast-gettext_0.6.8-1_all + ruby-fastercsv_1.5.5-1_all + ruby-feedparser_0.7-2_all + ruby-feedtools_0.2.29+dfsg1-5_all + ruby-feedtools-doc_0.2.29+dfsg1-5_all + ruby-file-tail_1.0.10-1_all + ruby-flexmock_0.9.0-1_all + ruby-fog_1.3.1-2_all + ruby-formatador_0.2.1-1_all + ruby-full_1:1.9.3_all + ruby-gelf_1.3.2-2_all + ruby-gettext_2.2.1-3_all + ruby-gettext-activerecord_2.1.0-5_all + ruby-gettext-rails_2.1.0-3_all + ruby-gir-ffi_0.3.1-2_all + ruby-git_1.2.5-2_all + ruby-gnome2_1.1.3-2_all + ruby-gnuplot_2.4.1-2_all + ruby-graffiti_2.2-1_all + ruby-gruff_0.3.6-6_all + ruby-haml_3.1.6-1_all + ruby-heckle_1.4.3-4_all + ruby-hiera_1.0.0~rc3-1_all + ruby-hiera-puppet_1.0.0~rc1-2_all + ruby-highline_1.6.13-2_all + ruby-hike_1.2.1-2_all + ruby-hikidoc_0.0.6-1_all + ruby-hmac_0.4.0-3_all + ruby-hoe_3.0.3-2_all + ruby-htmlentities_4.3.1-1_all + ruby-httpclient_2.2.4-2_all + ruby-i18n_0.6.0-3+deb7u1_all + ruby-ihelp_0.4.5-3_all + ruby-image-science_1.2.2-1.1_all + ruby-imagesize_1:0.1.1-5_all + ruby-indentation_0.0.6-1_all + ruby-inline_3.11.2-2_all + ruby-innate_2012.03-2_all + ruby-instantiator_0.0.6+git9cbbe70-2_all + ruby-introspection_0.0.2-2_all + ruby-ipaddress_0.8.0-1_all + ruby-journey_1.0.3-2_all + ruby-jquery-rails_2.0.2-1_all + ruby-kramdown_0.13.7-2_all + ruby-liquid_2.3.0-2_all + ruby-locale_2.0.5-6_all + ruby-locale-rails_2.0.5-6_all + ruby-lockfile_2.1.0-2_all + ruby-log4r_1.1.10-2_all + ruby-mab_0.0.1+git20120515.30414e4-2_all + ruby-magic_0.2.6-1_all + ruby-mail_2.4.4-2_all + ruby-maruku_0.6.0-2_all + ruby-mathml_0.12.2-2_all + ruby-mechanize_2.3-2_all + ruby-memcache-client_1.8.5-2_all + ruby-merb-assets_1.1.3-1_all + ruby-merb-core_1.1.3+dfsg-2_all + ruby-merb-haml_1.1.3-2_all + ruby-merb-helpers_1.1.3-1_all + ruby-merb-param-protection_1.1.3-1_all + ruby-metaclass_0.0.1-2_all + ruby-metaid_1.0-7_all + ruby-method-source_0.7.1-1_all + ruby-mime-types_1.19-1_all + ruby-minitest_3.2.0-1_all + ruby-mixlib-authentication_1.1.4-2_all + ruby-mixlib-cli_1.2.2-2_all + ruby-mixlib-config_1.1.2-3_all + ruby-mixlib-log_1.4.1-1_all + ruby-mixlib-shellout_1.0.0-2_all + ruby-mkrf_0.2.3+dfsg-2_all + ruby-mocha_0.11.3-3_all + ruby-mocha-doc_0.11.3-3_all + ruby-moneta_0.6.0-4_all + ruby-mp3tag_1.0-11_all + ruby-multi-json_1.3.6-1_all + ruby-mustache_0.99.4-3_all + ruby-narray-miss_1.2.7-2_all + ruby-net-http-digest-auth_1.2-2_all + ruby-net-http-persistent_2.7-2_all + ruby-net-irc_0.0.9-2_all + ruby-net-ldap_0.3.1-2_all + ruby-net-netrc_0.2.2-2_all + ruby-net-scp_1.0.4-2_all + ruby-net-sftp_1:2.0.5-3_all + ruby-net-ssh_1:2.5.2-2_all + ruby-net-ssh-gateway_1.1.0-2_all + ruby-net-ssh-multi_1.1-2_all + ruby-ntlm_0.1.1-1_all + ruby-oauth_0.4.6-2_all + ruby-ogginfo_0.6.10-1_all + ruby-ole_1.2.11.3-1_all + ruby-open4_1.3.0-1_all + ruby-openid_2.1.8debian-6_all + ruby-opennebula_3.4.1-3.1_all + ruby-packet_0.1.15-5_all + ruby-parser_2.3.1-2_all + ruby-parsetree_3.0.8-3_all + ruby-passenger-doc_3.0.13debian-1+deb7u1_all + ruby-pdf-inspector_1.0.1-2_all + ruby-pdf-reader_1.1.1-2_all + ruby-peach_0.4-2_all + ruby-pkg-config_1.1.2-1_all + ruby-pkg-tools_0.18_all + ruby-platform_0.4.0-2_all + ruby-polyglot_0.3.3-3_all + ruby-popen4_0.1.4-1_all + ruby-prawn_1.0.0~rc1+dfsg1-3_all + ruby-prawn-doc_1.0.0~rc1+dfsg1-3_all + ruby-progressbar_0.11.0-2_all + ruby-rack_1.4.1-2.1_all + ruby-rack-cache_1.2-2_all + ruby-rack-protection_1.2.0-1_all + ruby-rack-ssl_1.3.2-2_all + ruby-rack-test_0.6.1-3_all + ruby-rails-2.3_2.3.14-4_all + ruby-rails-3.2_3.2.6-1_all + ruby-railties-3.2_3.2.6-3_all + ruby-rb-inotify_0.8.8-2_all + ruby-rc4_0.1.5-2_all + ruby-rchardet_1.3-3_all + ruby-rd_0.6.34-4_all + ruby-rest-client_1.6.7-3_all + ruby-rmagick-doc_2.13.1-6_all + ruby-romkan_0.4-9_all + ruby-ronn_0.7.3-2_all + ruby-rqrcode_0.4.2-1_all + ruby-rr_1.0.4-1_all + ruby-rspec_2.10.0-2_all + ruby-rspec-core_2.10.1-2_all + ruby-rspec-expectations_2.10.0-2_all + ruby-rspec-mocks_2.10.1-2_all + ruby-ruby2ruby_1.3.1-1.1_all + ruby-rubyforge_2.0.4-1_all + ruby-rubymail_1.0.0-1_all + ruby-rubymail-doc_1.0.0-1_all + ruby-rubytorrent_0.3-4_all + ruby-sass_3.1.19-3_all + ruby-sass-rails_3.2.5-1_all + ruby-sequel_3.36.1-1_all + ruby-session_3.1.0-1_all + ruby-setup_3.4.1-5_all + ruby-sexp-processor_3.0.7-1_all + ruby-shoulda_3.0.0~beta2-1_all + ruby-shoulda-context_1.0.0~beta1-1_all + ruby-shoulda-matchers_1.0.0~beta2-1_all + ruby-sinatra_1.3.2-2_all + ruby-slop_2.4.4-1_all + ruby-sourcify_0.5.0-2_all + ruby-spreadsheet_0.7.3-1_all + ruby-sprockets_2.4.3-1_all + ruby-stomp_1.2.2-2_all + ruby-svg-graph_1.0.5-1_all + ruby-switch_0.1.0_all + ruby-systemu_2.5.1-1_all + ruby-term-ansicolor_1.0.7-1_all + ruby-test-declarative_0.0.5-1_all + ruby-test-spec_0.10.0-2_all + ruby-test-unit_2.5.0-2_all + ruby-text_1.0.3-1_all + ruby-text-format_1.0.0-3_all + ruby-thor_0.15.3-1_all + ruby-tidy_1.1.2+gem2deb-1_all + ruby-tilt_1.3.3-2_all + ruby-tioga-doc_1.14-3_all + ruby-transaction-simple_1.4.0-2_all + ruby-treetop_1.4.10-5_all + ruby-trollop_1.16.2-3_all + ruby-ttfunk_1.0.3+dfsg-1_all + ruby-twitter4r_0.7.0-3_all + ruby-tzinfo_0.3.33-3_all + ruby-unf_0.0.5-1_all + ruby-uuidtools_2.1.2-2_all + ruby-uuidtools-doc_2.1.2-2_all + ruby-validatable_1.6.7-9_all + ruby-webrobots_0.0.13-3_all + ruby-whitewash_2.0-1_all + ruby-will-paginate_3.0.3-1_all + ruby-wirble_0.1.3-4_all + ruby-xml-simple_1.1.1-1_all + ruby-yard-sinatra_1.0.0-1_all + ruby1.8-examples_1.8.7.358-7.1+deb7u1_all + ruby1.8-full_1.8.7.358-7.1+deb7u1_all + ruby1.9.1-examples_1.9.3.194-8.1+deb7u2_all + ruby1.9.1-full_1.9.3.194-8.1+deb7u2_all + ruby1.9.3_1.9.3.194-8.1+deb7u2_all + rubyfilter-doc_0.12-2_all + rubygems_1.8.24-1_all + rubygems-doc_1.8.24-1_all + rubygems-integration_1.1_all + rubygems1.8_1.8.24-1_all + runsnakerun_2.0.2a1-2_all + rygel-gst-renderer_0.14.3-2+deb7u1_all + s3cmd_1.1.0~beta3-1_all + s3d-data_0.2.2-8_all + s3d-doc_0.2.2-8_all + s5_1.1.dfsg.2-5_all + sa-learn-cyrus_0.3.5-1.1_all + sablecc_3.2-1_all + safe-rm_0.8-6_all + sagan-rules_10212010-r1-1_all + sailcut-doc_1.3.5-2_all + salliere_0.10-1_all + samba-common_2:3.6.6-6+deb7u2_all + samba-doc_2:3.6.6-6+deb7u2_all + samba-doc-pdf_2:3.6.6-6+deb7u2_all + samidare_0.7-1_all + samizdat_0.7.0-1_all + sanitizer_1.76-3_all + saods9-data_7.0.1+dfsg-1_all + saods9-doc_7.0.1+dfsg-1_all + sary-doc_1:1.2.0-2.1_all + sass-elisp_3.0.15-2_all + sat4j_2.3.1-1_all + sauce_0.9.0+nmu2_all + sawfish-data_1:1.5.3-2.1_all + sawfish-lisp-source_1:1.5.3-2.1_all + sawfish-merlin-ugliness_1.3.1-1_all + sawfish-themes_0.13_all + sbcl-doc_2:1.0.57.0-2_all + sbcl-source_2:1.0.57.0-2_all + sbnc-php-dev_1.2-26_all + sbuild_0.63.2-1.1_all + scala_2.9.2+dfsg-1_all + scala-doc_2.9.2+dfsg-1_all + scala-library_2.9.2+dfsg-1_all + scala-mode-el_20111005-2_all + scalable-cyrfonts-tex_4.16_all + scalapack-doc_1.5-10_all + scalapack-test-common_1.8.0-9_all + scheme2c-doc_2011.07.26-5_all + scheme48-doc_1.8+dfsg-1_all + schleuder_2.2.1-2+deb7u1_all + schroot-common_1.6.4-4_all + scid-data_1:4.3.0.cvs20120311-1_all + scid-rating-data_200901-2_all + scid-spell-data_200901-2_all + science-astronomy_1.0_all + science-astronomy-dev_1.0_all + science-biology_1.0_all + science-chemistry_1.0_all + science-config_1.0_all + science-dataacquisition_1.0_all + science-dataacquisition-dev_1.0_all + science-distributedcomputing_1.0_all + science-electronics_1.0_all + science-electrophysiology_1.0_all + science-engineering_1.0_all + science-engineering-dev_1.0_all + science-geography_1.0_all + science-highenergy-physics_1.0_all + science-highenergy-physics-dev_1.0_all + science-imageanalysis_1.0_all + science-linguistics_1.0_all + science-machine-learning_1.0_all + science-mathematics_1.0_all + science-mathematics-dev_1.0_all + science-meteorology_1.0_all + science-meteorology-dev_1.0_all + science-nanoscale-physics_1.0_all + science-nanoscale-physics-dev_1.0_all + science-neuroscience-cognitive_1.0_all + science-neuroscience-modeling_1.0_all + science-numericalcomputation_1.0_all + science-physics_1.0_all + science-physics-dev_1.0_all + science-psychophysics_1.0_all + science-robotics_1.0_all + science-simulations_1.0_all + science-statistics_1.0_all + science-tasks_1.0_all + science-typesetting_1.0_all + science-viewing_1.0_all + scilab_5.3.3-10_all + scilab-ann_0.4.2.4-1_all + scilab-celestlab_2.3.0-1-1_all + scilab-cli_5.3.3-10_all + scilab-data_5.3.3-10_all + scilab-doc_5.3.3-10_all + scilab-doc-fr_5.3.3-10_all + scilab-doc-ja_5.3.3-10_all + scilab-doc-pt-br_5.3.3-10_all + scilab-plotlib_0.42-1_all + scilab-test_5.3.3-10_all + scim-dev_1.4.13-5_all + scim-dev-doc_1.4.13-5_all + scim-tables-additional_0.5.9-2_all + scim-tables-ja_0.5.9-2_all + scim-tables-ko_0.5.9-2_all + scim-tables-zh_0.5.9-2_all + scmail_1.3-4_all + scolasync_3.1-1_all + scons_2.1.0-1_all + scons-doc_2.1.0-2_all + scorched3d-data_43.2a.dfsg-6.1_all + scowl_7.1-1_all + scratch_1.4.0.6~dfsg1-4_all + screenie_20120406-1_all + screenlets_0.1.2-8_all + screenlets-doc_0.1.2-8_all + screenruler_0.960+bzr41-1_all + scribble_1.11-1_all + scribes_0.4~r543-2_all + scribus-ng_1.4.0.dfsg+r17300-1_all + scribus-template_1.2.4.1-2_all + scrollkeeper_0.8.1-5_all + scrotwm_1.0.0-1_all + scsh_0.6.6.3_all + scsh-0.6-doc_0.6.7-8_all + scsh-common-0.6_0.6.7-8_all + scsh-doc_0.6.6.3_all + scsh-install-lib_1.3.0-1_all + scummvm-data_1.4.1-1_all + scuttle_0.7.4-8.1_all + sdcc-doc_3.1.0+dfsg-1_all + sdcc-libraries_3.1.0+dfsg-1_all + sdf_2.001+1-2_all + sdf-doc_2.001+1-2_all + sdl-ball-data_1.01-3_all + seabios_1.7.0-1_all + search-ccsb_0.5-3_all + search-citeseer_0.3-1_all + searchandrescue-common_1.4.0-2_all + searchandrescue-data_1.3.0-1_all + sec_2.6.2-1_all + secpanel_1:0.6.1-1_all + secvpn_2.24_all + seed-doc_3.2.0-2_all + seivot_1.17-1_all + select-xface_0.15-6_all + selinux-basics_0.5.0_all + selinux-policy-default_2:2.20110726-12_all + selinux-policy-dev_2:2.20110726-12_all + selinux-policy-doc_2:2.20110726-12_all + selinux-policy-mls_2:2.20110726-12_all + selinux-policy-src_2:2.20110726-12_all + semi_1.14.6+0.20101114-1_all + sendemail_1.56-2_all + sendmail_8.14.4-4_all + sendmail-base_8.14.4-4_all + sendmail-cf_8.14.4-4_all + sendmail-doc_8.14.4-4_all + sendpage-client_1.0.3-1_all + sendpage-common_1.0.3-1_all + sendpage-server_1.0.3-1_all + sendxmpp_1.22-1_all + sensible-utils_0.0.7_all + sepia_0.992-2_all + seqan-dev_1.3.1-1_all + servefile_0.4.2-1_all + serverstats_0.8.2-10_all + sfact_2011.12.18-1_all + sfc_1.0.0.dfsg-1_all + sflphone-data_1.1.0-2_all + sgml-base_1.26+nmu4_all + sgml-base-doc_1.99.1_all + sgml-data_2.0.8_all + sgml-spell-checker_0.0.20040919-3_all + sgml2x_1.0.0-11.3_all + sgmls-doc_1.03ii-32_all + sgmlspl_1.03ii-32_all + sgmltools-lite_3.0.3.0.cvs.20010909-16_all + shake_1.0.1-7_all + shanty_3-4_all + shared-desktop-ontologies_0.10.0-1_all + sharutils-doc_1:4.11.1-1_all + shatag_0.4-2_all + shedskin_0.9.2-1_all + shelldap_0.5-2_all + shelr_0.16.2-1_all + shibboleth-sp2-schemas_2.4.3+dfsg-5_all + shiboken-doc_1.1.1-1_all + shiki-brave-theme_4.6-1_all + shiki-colors_4.6-1_all + shiki-colors-metacity-theme_4.6-1_all + shiki-colors-xfwm-theme_4.6-1_all + shiki-dust-theme_4.6-1_all + shiki-human-theme_4.6-1_all + shiki-illustrious-theme_4.6-1_all + shiki-noble-theme_4.6-1_all + shiki-wine-theme_4.6-1_all + shiki-wise-theme_4.6-1_all + shinken_0.6.5-2_all + shinken-arbiter_0.6.5-2_all + shinken-broker_0.6.5-2_all + shinken-core_0.6.5-2_all + shinken-discovery_0.6.5-2_all + shinken-poller_0.6.5-2_all + shinken-reactionner_0.6.5-2_all + shinken-receiver_0.6.5-2_all + shinken-scheduler_0.6.5-2_all + shishi-common_1.0.1-2_all + shishi-doc_1.0.1-2_all + shorewall_4.5.5.3-3_all + shorewall-core_4.5.5.3-3_all + shorewall-doc_4.5.5-1_all + shorewall-init_4.5.5.3-1_all + shorewall-lite_4.5.5.3-1_all + shorewall6_4.5.5.3-2_all + shorewall6-lite_4.5.5.3-1_all + shotwell-common_0.12.3-2+deb7u1_all + shr-specs_2011.03.08.2-1_all + shrinksafe_1.7.2-1_all + shtool_2.0.8-6_all + shunit2_2.1.6-1_all + shutdown-at-night_0.10+deb7u1_all + shutter_0.88.3-1_all + sieve-connect_0.83-1_all + signify_1.14-1_all + sigrok_0.2-1_all + sikuli-ide_1.0~x~rc3.tesseract3-dfsg1-5_all + simba_0.8.4-4.2_all + simple-cdd_0.3.14_all + simple-image-reducer_1.0.2-1_all + simpleid_0.8.1-13_all + simpleid-ldap_1.0.0-1_all + simpleid-store-dynalogin_0.9.14-2_all + simplesamlphp_1.9.2-1_all + simplyhtml_0.13.1-3_all + simplyhtml-doc_0.13.1-3_all + simutrans-data_111.2.2-1_all + simutrans-pak128.britain_1.09-1_all + simutrans-pak64_111.2-1_all + singularity_0.30c-1_all + singularity-music_006-2_all + sinntp_1.5-1_all + sisc_1.16.6-1.1_all + siscone-doc-html_2.0.5-1_all + siscone-doc-pdf_2.0.5-1_all + siscone-examples_2.0.5-1_all + sisu_3.3.2-1_all + sisu-complete_3.3.2-1_all + sisu-pdf_3.3.2-1_all + sisu-postgresql_3.3.2-1_all + sisu-sqlite_3.3.2-1_all + sitesummary_0.1.8+deb7u1_all + sitesummary-client_0.1.8+deb7u1_all + sitplus-data_1.0.3-3_all + skalibs-doc_0.47-1_all + skeinforge_2011.12.18-1_all + sketch-doc_1:0.3.7-1_all + skkdic_20110529-1_all + skkdic-cdb_20110529-1_all + skkdic-extra_20110529-1_all + skrooge-common_1.3.0-1_all + sks-ecc-doc_0.93-2_all + slack_0.15.2-5_all + slang-tess_0.3.0-6_all + slashtime_0.5.13-1_all + slay_2.7.0_all + slbackup_0.0.12-3_all + slbackup-php_0.4.3-2+deb7u1_all + slepc3.2-doc_3.2-p5-1_all + slib_3b1-3.1_all + slice_1.3.8-11_all + slides-doc_1.0.1-13_all + slime_1:20120525-1_all + slimevolley-data_2.4.2+dfsg-1_all + slimit_0.7.4-1_all + slimrat_1.0-1_all + slimrat-nox_1.0-1_all + slingshot_0.9-1_all + sludge-doc_2.2-1_all + slugimage_1:0.0+r104-5_all + slurm-llnl-doc_2.3.4-2_all + slurm-llnl-torque_2.3.4-2_all + slv2-doc_0.6.6+dfsg1-2_all + smart-notifier_0.28-5_all + smartpm_1.4-2_all + smarty-gettext_1.0b1-7_all + smarty-validate_3.0.3-2_all + smarty3_3.1.10-2_all + smb2www_980804-40_all + smbldap-tools_0.9.7-1+deb7u1_all + smc-data_1.9+git20120222-1_all + smc-music_1.9+git20120222-1_all + smem_1.0-1_all + smistrip_0.4.8+dfsg2-7_all + sml-mode_4.1-2_all + smokeping_2.6.8-2_all + smplayer-themes_0.1.20+dfsg-1_all + smplayer-translations_0.8.0-1+deb7u1_all + smtm_1.6.10_all + smuxi_0.8.10-3_all + smuxi-engine_0.8.10-3_all + smuxi-engine-irc_0.8.10-3_all + smuxi-engine-twitter_0.8.10-3_all + smuxi-engine-xmpp_0.8.10-3_all + smuxi-frontend_0.8.10-3_all + smuxi-frontend-gnome_0.8.10-3_all + smuxi-frontend-gnome-irc_0.8.10-3_all + smuxi-frontend-stfl_0.8.10-3_all + smuxi-server_0.8.10-3_all + snacc-doc_1.3.1-1_all + snakefood_1.4-1_all + snd_11.7-2_all + snd-doc_11.7-2_all + snd-gtk_11.7-2_all + snd-nox-alsa_11.7-2_all + snmptt_1.3-2_all + snort-common_2.9.2.2-3_all + snort-doc_2.9.2.2-3_all + snort-rules-default_2.9.2.2-3_all + snowballz_0.9.5.1-4_all + socklog-run_2.1.0-8_all + sofa-data_1.0~beta4-7_all + sofa-tutorials_1.0~beta4-7_all + sofia-sip-doc_1.12.11+20110422-1_all + software-center_5.1.2debian3.1_all + software-properties-common_0.82.7.1debian1_all + software-properties-gtk_0.82.7.1debian1_all + software-properties-kde_0.82.7.1debian1_all + sogo-common_1.3.16-1_all + solarwolf_1.5-2_all + solfege_3.20.6-1_all + solfege-doc_3.20.6-1_all + solr-common_3.6.0+dfsg-1_all + solr-jetty_3.6.0+dfsg-1_all + solr-tomcat_3.6.0+dfsg-1_all + sonata_1.6.2.1-5_all + songwrite_0.14-9_all + sortsmill-tools_0.4-1_all + sound-icons_0.1-3_all + sound-theme-freedesktop_0.7.pristine-2_all + soundconverter_2.0.1-1_all + sozi_12.05-1_all + spamassassin_3.3.2-5_all + spamassassin-heatu_3.02+20101108-2_all + spambayes_1.1a6-1_all + spampd_2.30-22_all + sparkleshare_0.9.0-2_all + sparsehash_1.10-1_all + spe_0.8.4.h-2_all + speakup-doc_3.1.6.dfsg.1-2_all + speakup-tools_1:0.0~git20110720.1-1_all + spectacle_0.22-1_all + specto_0.2.2-3.2_all + speech-dispatcher-doc-cs_0.7.1-6.2_all + speech-dispatcher-festival_0.7.1-6.2_all + speech-tools-doc_1.4.2-8_all + speechd-el_2.5-4_all + speechd-el-doc-cs_2.5-4_all + speedometer_2.8-1_all + speex-doc_1.2~rc1-7_all + spf-milter-python_0.8.13-6_all + spf-tools-perl_2.8.0-1_all + spf-tools-python_2.0.7-3_all + sphinx-common_1.1.3+dfsg-4_all + sphinx-doc_1.1.3+dfsg-4_all + spikeproxy_1.4.8-4.1_all + spip_2.1.17-1+deb7u3_all + splint-data_3.1.2.dfsg1-2_all + splint-doc-html_3.1.2.dfsg1-2_all + splix_2.0.0+svn306-2_all + spooles-doc_2.2-9_all + spotweb_20111002+dfsg-4.1_all + spring-build-scripts_2.7.0-2_all + spring-common_88.0+dfsg1-1.1_all + spring-javaai_88.0+dfsg1-1.1_all + sputnik_12.06.27-2_all + spyder_2.1.10-2_all + sql-ledger_3.0.3-1_all + sqlgrey_1:1.8.0-1_all + sqlite-doc_2.8.17-7_all + sqlite3-doc_3.7.13-1+deb7u1_all + sqlline_1.0.2-4_all + squareness_2.3.0-5_all + squid-common_2.7.STABLE9-4.1_all + squid-langpack_20120616-1_all + squid-prefetch_1.1-2.3_all + squid3-common_3.1.20-2.2_all + squidguard-doc_1.5-1_all + squidtaild_2.1a6-6_all + squirrelmail_2:1.4.23~svn20120406-2_all + squirrelmail-compatibility_2.0.16-1_all + squirrelmail-decode_1.2-1_all + squirrelmail-locales_1.4.18-20090526-1_all + squirrelmail-lockout_1.7-2_all + squirrelmail-logger_2.3.1-1_all + squirrelmail-quicksave_2.4.5-1_all + squirrelmail-secure-login_1.4-3_all + squirrelmail-sent-confirmation_1.6-2_all + squirrelmail-spam-buttons_2.3.1-1_all + squirrelmail-viewashtml_3.8-3_all + sqwebmail-de_5.5.1-1_all + srf-doc_0.1+dfsg-1_all + srs_0.31-5_all + srtp-docs_1.4.4+20100615~dfsg-2+deb7u1_all + ssake_3.8-2_all + ssake-examples_3.8-2_all + ssft_0.9.13_all + ssh_1:6.0p1-4_all + ssh-contact_0.7-1_all + ssh-krb5_1:6.0p1-4_all + sshfp_1.2.2-4_all + sshmenu_3.18-2_all + sshuttle_0.54-2_all + ssl-cert_1.0.32_all + ssl-cert-check_3.22-1_all + sslstrip_0.9-1_all + stackapplet_1.4.0-2_all + stardict_3.0.1-9.2_all + stardict-common_3.0.1-9.2_all + stardict-czech_20110701-1_all + stardict-xmlittre_1:1.0-1_all + starfighter-data_1.2-2_all + starman_0.3001-1_all + startupmanager_1.9.13-5_all + starvoyager-data_0.4.4-5.1_all + statcvs_1:0.7.0.dfsg-5_all + statnews_2.5_all + statsvn_0.7.0.dfsg-6_all + stda_1.1.1-1_all + stealth-doc_2.10.00-1_all + stellarium-data_0.11.3-1+deb7u1_all + stgit_0.15-1.1_all + stgit-contrib_0.15-1.1_all + stk-doc_4.4.3-2_all + stl-manual_3.30-13_all + stompserver_0.9.9gem-2_all + stops_0.3.0-1_all + stopwatch_3.5-3_all + storebackup_3.2.1-1_all + stormbaancoureur-data_2.1.6-1_all + stow_2.2.0-2_all + streamtuner2_2.0.8-5_all + strongswan_4.5.2-1.5+deb7u2_all + stumpwm_1:20110819.gitca08e08-2_all + stx-btree-dev_0.8.6-1_all + stx-btree-doc_0.8.6-1_all + stx2any_1.56-2_all + styx-doc_1.8.0-1.1_all + subcommander-doc_2.0.0~b5p2-5_all + substance_5.3-2_all + substance-doc_5.3-2_all + subunit_0.0.8+bzr176-1_all + subversion-tools_1.6.17dfsg-4+deb7u4_all + sucrose-0.96_0.96.1-2.1_all + sugar-calculate-activity_40-2_all + sugar-connect-activity_22-1.1_all + sugar-emulator-0.96_0.96.1-2.1_all + sugar-irc-activity_8-1.1_all + sugar-memorize-activity_35-1_all + sugar-physics-activity_7+dfsg-1.1_all + sugar-pippy-activity_46~dfsg-2_all + sugar-presence-service-0.84_0.84.3-1_all + sugar-presence-service-0.88_0.88.0-3_all + sugar-presence-service-0.90_0.90.2-1_all + sugar-record-activity_82-1.1_all + sugar-session-0.96_0.96.1-2.1_all + sugar-terminal-activity_28-1.1_all + sugar-tools-0.96_0.96.1-2.1_all + sugar-turtleart-activity_98-1_all + sugarplum_0.9.10-17.2_all + suikyo-elisp_2.1.0-3_all + suikyo-table_2.1.0-3_all + sumo-doc_0.15.0~dfsg-2_all + sumo-tools_0.15.0~dfsg-2_all + sunclock-maps_3.57-2_all + sunflow_0.07.2.svn396+dfsg-9_all + sup-mail_0.12.1+git20120407.aaa852f-1+deb7u1_all + supercollider-common_1:3.4.5-1wheezy1_all + supercollider-doc_1:3.4.5-1wheezy1_all + supercollider-emacs_1:3.4.5-1wheezy1_all + supercollider-vim_1:3.4.5-1wheezy1_all + supertransball2-data_1.5-4_all + supertux-data_0.1.3-3_all + supertuxkart-data_0.7.3-2_all + supervisor_3.0a8-1.1_all + supybot_0.83.4.1.ds-2_all + surfraw_2.2.8-1_all + surfraw-extra_2.2.8-1_all + survex-svxedit_1.2.6-4_all + sushi_1.4.0+dfsg-1_all + sushi-plugins_1.4.0+dfsg-1_all + sux_1.0.1-6_all + svdrpservice-dev_0.0.4-14_all + svn-autoreleasedeb_0.12-1_all + svn-buildpackage_0.8.5_all + svn-load_1.3-1_all + svn-workbench_1.6.2-2_all + svn2cl_0.13-2_all + svnkit_1.3.5+dfsg-4_all + svnmailer_1.0.8-12_all + svtools_0.6-2_all + swaks_20120320.0-1_all + swaml_0.1.1-1_all + swatch_3.2.3-1_all + swe-basic-data_1.77.00.0005-2_all + swe-standard-data_00004-1_all + sweep-dev_0.9.3-6_all + sweethome3d_3.5+dfsg-1_all + swfdec-gnome_1:0.8.11~git20120629-1+deb7u1_all + swfdec-mozilla_0.8.11~git20120629-1+deb7u1_all + swi-prolog-doc_5.6.59-1_all + swift_1.4.8-2+deb7u1_all + swift-account_1.4.8-2+deb7u1_all + swift-container_1.4.8-2+deb7u1_all + swift-doc_1.4.8-2+deb7u1_all + swift-object_1.4.8-2+deb7u1_all + swift-proxy_1.4.8-2+deb7u1_all + swig-doc_2.0.7-3_all + swig-examples_2.0.7-3_all + swig2.0-doc_2.0.7-3_all + swig2.0-examples_2.0.7-3_all + switchconf_0.0.9-2_all + sword-comm-mhcc_1.1-4_all + sword-comm-scofield_1.0-3_all + sword-comm-tdavid_1.1-3_all + sword-dict-naves_1.1-3_all + sword-dict-strongs-greek_1.2-3_all + sword-dict-strongs-hebrew_1.2-3_all + sword-text-kjv_2.3-2_all + sword-text-sparv_1.5-1_all + sword-text-web_1.4-3_all + syfi-dev_1.0.0.dfsg-1_all + syfi-doc_1.0.0.dfsg-1_all + sylpheed-doc_20120629-1_all + sylpheed-i18n_3.2.0-1_all + sylseg-sk_0.7-1_all + syncache_1.2-1_all + syncbbdb_2.3-6.2_all + syncevolution-common_1.2.99.1-1.1_all + syncevolution-http_1.2.99.1-1.1_all + synfig-examples_0.63.05-1_all + synopsis-doc_0.12-8_all + sysadmin-guide_0.9-1_all + sysinfo_0.7-8_all + syslinux-common_2:4.05+dfsg-6+deb7u1_all + syslinux-themes-debian_11-1.1_all + syslinux-themes-debian-squeeze_11-1.1_all + syslinux-themes-debian-wheezy_11-1.1_all + syslog-ng_3.3.5-4_all + syslog-summary_1.14-2_all + syslogout_0.3.8_all + sysprofile_0.3.8_all + system-config-cluster_1.0.53-1_all + system-config-lvm_1.1.16-1_all + system-config-printer_1.3.7-4_all + system-config-printer-kde_4:4.8.4-3_all + system-tools-backends-dev_2.10.2-1_all + systemtap-common_1.7-1+deb7u1_all + systemtap-doc_1.7-1+deb7u1_all + systraq_0.0.20081217-3_all + systune_0.5.7_all + sysv-rc_2.88dsf-41+deb7u1_all + sysv-rc-conf_0.99-7_all + t-code_2:2.3.1-3_all + t-coffee-doc_9.02.r1228-2_all + t-coffee-examples_9.02.r1228-2_all + t-prot_2.101-2_all + t1-cyrillic_4.16_all + t1-oldslavic_4.16_all + t1-teams_4.16_all + t2html_2010.0302+gitbec03e2-2_all + tachyon-doc_0.99~b2+dfsg-0.4_all + tads2-mode_1.2-2_all + tagainijisho-common_0.9.4-1_all + tagainijisho-dic-de_0.9.4-1_all + tagainijisho-dic-en_0.9.4-1_all + tagainijisho-dic-es_0.9.4-1_all + tagainijisho-dic-fr_0.9.4-1_all + tagainijisho-dic-it_0.9.4-1_all + tagainijisho-dic-pt_0.9.4-1_all + tagainijisho-dic-ru_0.9.4-1_all + tagainijisho-dic-th_0.9.4-1_all + tagainijisho-dic-tr_0.9.4-1_all + tagcloud_1.4-1.1_all + taglog_0.2.3-1_all + tagua-data_1.0~alpha2-10_all + tahoe-lafs_1.9.2-1_all + tailor_0.9.35+darcs20090615-1_all + taktuk_3.7.4-1_all + tango-common_7.2.6+dfsg-14_all + tango-icon-theme_0.8.90-5_all + taoframework-examples_2.1.svn20090801-9_all + tap-plugins-doc_20040817-2_all + tarantool-common_1.4.6+20120629+2158-1_all + tardiff_0.1-1_all + targetcli_2.0rc1-2_all + task-albanian-desktop_3.14.1_all + task-amharic_3.14.1_all + task-amharic-desktop_3.14.1_all + task-amharic-kde-desktop_3.14.1_all + task-arabic_3.14.1_all + task-arabic-desktop_3.14.1_all + task-arabic-kde-desktop_3.14.1_all + task-asturian_3.14.1_all + task-asturian-desktop_3.14.1_all + task-basque_3.14.1_all + task-basque-desktop_3.14.1_all + task-basque-kde-desktop_3.14.1_all + task-belarusian_3.14.1_all + task-belarusian-desktop_3.14.1_all + task-belarusian-kde-desktop_3.14.1_all + task-bengali_3.14.1_all + task-bengali-desktop_3.14.1_all + task-bengali-kde-desktop_3.14.1_all + task-bosnian_3.14.1_all + task-bosnian-desktop_3.14.1_all + task-bosnian-kde-desktop_3.14.1_all + task-brazilian-portuguese_3.14.1_all + task-brazilian-portuguese-desktop_3.14.1_all + task-brazilian-portuguese-kde-desktop_3.14.1_all + task-british-desktop_3.14.1_all + task-british-kde-desktop_3.14.1_all + task-bulgarian_3.14.1_all + task-bulgarian-desktop_3.14.1_all + task-bulgarian-kde-desktop_3.14.1_all + task-catalan_3.14.1_all + task-catalan-desktop_3.14.1_all + task-catalan-kde-desktop_3.14.1_all + task-chinese-s_3.14.1_all + task-chinese-s-desktop_3.14.1_all + task-chinese-s-kde-desktop_3.14.1_all + task-chinese-t_3.14.1_all + task-chinese-t-desktop_3.14.1_all + task-chinese-t-kde-desktop_3.14.1_all + task-croatian_3.14.1_all + task-croatian-desktop_3.14.1_all + task-croatian-kde-desktop_3.14.1_all + task-cyrillic_3.14.1_all + task-cyrillic-desktop_3.14.1_all + task-cyrillic-kde-desktop_3.14.1_all + task-czech_3.14.1_all + task-czech-desktop_3.14.1_all + task-czech-kde-desktop_3.14.1_all + task-danish_3.14.1_all + task-danish-desktop_3.14.1_all + task-danish-kde-desktop_3.14.1_all + task-database-server_3.14.1_all + task-desktop_3.14.1_all + task-dns-server_3.14.1_all + task-dutch_3.14.1_all + task-dutch-desktop_3.14.1_all + task-dutch-kde-desktop_3.14.1_all + task-dzongkha-desktop_3.14.1_all + task-dzongkha-kde-desktop_3.14.1_all + task-english_3.14.1_all + task-esperanto_3.14.1_all + task-esperanto-desktop_3.14.1_all + task-esperanto-kde-desktop_3.14.1_all + task-estonian_3.14.1_all + task-estonian-desktop_3.14.1_all + task-estonian-kde-desktop_3.14.1_all + task-file-server_3.14.1_all + task-finnish_3.14.1_all + task-finnish-desktop_3.14.1_all + task-finnish-kde-desktop_3.14.1_all + task-french_3.14.1_all + task-french-desktop_3.14.1_all + task-french-kde-desktop_3.14.1_all + task-galician_3.14.1_all + task-galician-desktop_3.14.1_all + task-galician-kde-desktop_3.14.1_all + task-georgian-desktop_3.14.1_all + task-german_3.14.1_all + task-german-desktop_3.14.1_all + task-german-kde-desktop_3.14.1_all + task-gnome-desktop_3.14.1_all + task-greek_3.14.1_all + task-greek-desktop_3.14.1_all + task-greek-kde-desktop_3.14.1_all + task-gujarati_3.14.1_all + task-gujarati-desktop_3.14.1_all + task-gujarati-kde-desktop_3.14.1_all + task-hebrew_3.14.1_all + task-hebrew-desktop_3.14.1_all + task-hebrew-gnome-desktop_3.14.1_all + task-hebrew-kde-desktop_3.14.1_all + task-hindi_3.14.1_all + task-hindi-desktop_3.14.1_all + task-hindi-kde-desktop_3.14.1_all + task-hungarian_3.14.1_all + task-hungarian-desktop_3.14.1_all + task-hungarian-kde-desktop_3.14.1_all + task-icelandic_3.14.1_all + task-icelandic-desktop_3.14.1_all + task-icelandic-kde-desktop_3.14.1_all + task-indonesian-desktop_3.14.1_all + task-indonesian-kde-desktop_3.14.1_all + task-irish_3.14.1_all + task-irish-desktop_3.14.1_all + task-irish-kde-desktop_3.14.1_all + task-italian_3.14.1_all + task-italian-desktop_3.14.1_all + task-italian-kde-desktop_3.14.1_all + task-japanese_3.14.1_all + task-japanese-desktop_3.14.1_all + task-japanese-gnome-desktop_3.14.1_all + task-japanese-kde-desktop_3.14.1_all + task-kannada-desktop_3.14.1_all + task-kannada-kde-desktop_3.14.1_all + task-kazakh_3.14.1_all + task-kazakh-desktop_3.14.1_all + task-kazakh-kde-desktop_3.14.1_all + task-kde-desktop_3.14.1_all + task-khmer_3.14.1_all + task-khmer-desktop_3.14.1_all + task-khmer-kde-desktop_3.14.1_all + task-korean_3.14.1_all + task-korean-desktop_3.14.1_all + task-korean-gnome-desktop_3.14.1_all + task-korean-kde-desktop_3.14.1_all + task-kurdish_3.14.1_all + task-kurdish-desktop_3.14.1_all + task-kurdish-kde-desktop_3.14.1_all + task-laptop_3.14.1_all + task-latvian_3.14.1_all + task-latvian-desktop_3.14.1_all + task-latvian-kde-desktop_3.14.1_all + task-lithuanian_3.14.1_all + task-lithuanian-desktop_3.14.1_all + task-lithuanian-kde-desktop_3.14.1_all + task-lxde-desktop_3.14.1_all + task-macedonian_3.14.1_all + task-macedonian-desktop_3.14.1_all + task-macedonian-kde-desktop_3.14.1_all + task-mail-server_3.14.1_all + task-malayalam_3.14.1_all + task-malayalam-desktop_3.14.1_all + task-malayalam-gnome-desktop_3.14.1_all + task-malayalam-kde-desktop_3.14.1_all + task-marathi_3.14.1_all + task-marathi-desktop_3.14.1_all + task-nepali-desktop_3.14.1_all + task-nepali-kde-desktop_3.14.1_all + task-northern-sami_3.14.1_all + task-northern-sami-desktop_3.14.1_all + task-norwegian_3.14.1_all + task-norwegian-desktop_3.14.1_all + task-norwegian-kde-desktop_3.14.1_all + task-persian_3.14.1_all + task-persian-desktop_3.14.1_all + task-persian-kde-desktop_3.14.1_all + task-polish_3.14.1_all + task-polish-desktop_3.14.1_all + task-polish-kde-desktop_3.14.1_all + task-portuguese_3.14.1_all + task-portuguese-desktop_3.14.1_all + task-portuguese-kde-desktop_3.14.1_all + task-print-server_3.14.1_all + task-punjabi_3.14.1_all + task-punjabi-desktop_3.14.1_all + task-punjabi-kde-desktop_3.14.1_all + task-romanian_3.14.1_all + task-romanian-desktop_3.14.1_all + task-romanian-kde-desktop_3.14.1_all + task-russian_3.14.1_all + task-russian-desktop_3.14.1_all + task-russian-kde-desktop_3.14.1_all + task-serbian_3.14.1_all + task-serbian-desktop_3.14.1_all + task-serbian-kde-desktop_3.14.1_all + task-sinhala-desktop_3.14.1_all + task-sinhala-kde-desktop_3.14.1_all + task-slovak_3.14.1_all + task-slovak-desktop_3.14.1_all + task-slovak-kde-desktop_3.14.1_all + task-slovenian_3.14.1_all + task-slovenian-desktop_3.14.1_all + task-slovenian-kde-desktop_3.14.1_all + task-south-african-english-desktop_3.14.1_all + task-spanish_3.14.1_all + task-spanish-desktop_3.14.1_all + task-spanish-kde-desktop_3.14.1_all + task-ssh-server_3.14.1_all + task-swedish_3.14.1_all + task-swedish-desktop_3.14.1_all + task-swedish-kde-desktop_3.14.1_all + task-tagalog_3.14.1_all + task-tamil_3.14.1_all + task-tamil-desktop_3.14.1_all + task-tamil-gnome-desktop_3.14.1_all + task-telugu_3.14.1_all + task-telugu-desktop_3.14.1_all + task-telugu-gnome-desktop_3.14.1_all + task-telugu-kde-desktop_3.14.1_all + task-thai_3.14.1_all + task-thai-desktop_3.14.1_all + task-thai-gnome-desktop_3.14.1_all + task-thai-kde-desktop_3.14.1_all + task-turkish_3.14.1_all + task-turkish-desktop_3.14.1_all + task-turkish-kde-desktop_3.14.1_all + task-ukrainian_3.14.1_all + task-ukrainian-desktop_3.14.1_all + task-ukrainian-kde-desktop_3.14.1_all + task-uyghur-desktop_3.14.1_all + task-uyghur-kde-desktop_3.14.1_all + task-vietnamese-desktop_3.14.1_all + task-vietnamese-kde-desktop_3.14.1_all + task-web-server_3.14.1_all + task-welsh_3.14.1_all + task-welsh-desktop_3.14.1_all + task-xfce-desktop_3.14.1_all + task-xhosa-desktop_3.14.1_all + task-xhosa-kde-desktop_3.14.1_all + tasksel_3.14.1_all + tasksel-data_3.14.1_all + tasque_0.1.9-2_all + tau-examples_2.16.4-1.4_all + tau-racy_2.16.4-1.4_all + tbb-examples_4.0+r233-1_all + tcl_8.5.0-2.1_all + tcl-combat_0.8.1-1_all + tcl-dev_8.5.0-2.1_all + tcl-doc_8.5.0-2.1_all + tcl-trf-doc_2.1.4-dfsg1-1_all + tcl8.4-doc_8.4.19-5_all + tcl8.5-doc_8.5.11-2_all + tclcl-dev_1.20-6_all + tcllib_1.14-dfsg-3_all + tclx8.4-doc_8.4.0-3_all + tcm-doc_2.20+TSQD-4.2_all + tcpwatch-httpproxy_1.3b-3_all + td2planet_0.2.0-2_all + tdiary_3.1.3-3_all + tdiary-contrib_3.1.20120506-3_all + tdiary-mode_3.1.20120506-3_all + tdiary-plugin_3.1.3-3_all + tdiary-theme_3.1.3-3_all + tea-data_33.1.0-1_all + tecnoballz-data_0.92-5_all + teeworlds-data_0.6.1+dfsg-1_all + tegaki-recognize_0.3.1.2-1_all + tegaki-train_0.3.1-1_all + tegaki-zinnia-japanese_0.3-1_all + tegaki-zinnia-simplified-chinese_0.3-1_all + tekka_1.4.0+dfsg-1_all + telepathy-sofiasip_0.7.4-1_all + telepathy-specification_0.26.0-1_all + tellico-data_2.3.5+dfsg.1-4_all + tellico-scripts_2.3.5+dfsg.1-4_all + tenshi_0.13-2_all + terminator_0.95-1_all + termsaver_0.1.1-1_all + terraintool_1.12a-1_all + tesseract-ocr-afr_3.02-2_all + tesseract-ocr-ara_3.02-2_all + tesseract-ocr-aze_3.02-2_all + tesseract-ocr-bel_3.02-2_all + tesseract-ocr-ben_3.02-2_all + tesseract-ocr-bul_3.02-2_all + tesseract-ocr-cat_3.02-2_all + tesseract-ocr-ces_3.02-2_all + tesseract-ocr-chi-sim_3.02-1_all + tesseract-ocr-chi-tra_3.02-1_all + tesseract-ocr-chr_3.02-2_all + tesseract-ocr-dan_3.02-2_all + tesseract-ocr-deu_3.02-2_all + tesseract-ocr-deu-frak_3.02-4_all + tesseract-ocr-dev_3.02.01-6_all + tesseract-ocr-ell_3.02-2_all + tesseract-ocr-eng_3.02-2_all + tesseract-ocr-enm_3.02-2_all + tesseract-ocr-epo_3.02-2_all + tesseract-ocr-equ_3.02-2_all + tesseract-ocr-est_3.02-2_all + tesseract-ocr-eus_3.02-2_all + tesseract-ocr-fin_3.02-2_all + tesseract-ocr-fra_3.02-2_all + tesseract-ocr-frk_3.02-2_all + tesseract-ocr-frm_3.02-2_all + tesseract-ocr-glg_3.02-2_all + tesseract-ocr-heb_3.02-2_all + tesseract-ocr-hin_3.02-2_all + tesseract-ocr-hrv_3.02-2_all + tesseract-ocr-hun_3.02-2_all + tesseract-ocr-ind_3.02-2_all + tesseract-ocr-isl_3.02-2_all + tesseract-ocr-ita_3.02-2_all + tesseract-ocr-ita-old_3.02-1_all + tesseract-ocr-jpn_3.02-2_all + tesseract-ocr-kan_3.02-2_all + tesseract-ocr-kor_3.02-2_all + tesseract-ocr-lav_3.02-2_all + tesseract-ocr-lit_3.02-2_all + tesseract-ocr-mal_3.02-2_all + tesseract-ocr-mkd_3.02-2_all + tesseract-ocr-mlt_3.02-2_all + tesseract-ocr-msa_3.02-2_all + tesseract-ocr-nld_3.02-2_all + tesseract-ocr-nor_3.02-2_all + tesseract-ocr-osd_3.02-2_all + tesseract-ocr-pol_3.02-2_all + tesseract-ocr-por_3.02-2_all + tesseract-ocr-ron_3.02-2_all + tesseract-ocr-rus_3.02-2_all + tesseract-ocr-slk_3.02-2_all + tesseract-ocr-slk-frak_3.02-2_all + tesseract-ocr-slv_3.02-2_all + tesseract-ocr-spa_3.02-2_all + tesseract-ocr-spa-old_3.02-1_all + tesseract-ocr-sqi_3.02-2_all + tesseract-ocr-srp_3.02-2_all + tesseract-ocr-swa_3.02-2_all + tesseract-ocr-swe_3.02-2_all + tesseract-ocr-tam_3.02-2_all + tesseract-ocr-tel_3.02-2_all + tesseract-ocr-tgl_3.02-2_all + tesseract-ocr-tha_3.02-2_all + tesseract-ocr-tur_3.02-2_all + tesseract-ocr-ukr_3.02-2_all + tesseract-ocr-vie_3.02-2_all + testng_5.11+dfsg-3_all + testng-doc_5.11+dfsg-3_all + testrepository_0.0.5-1.1_all + tetex-brev_4.22.6+nmu1_all + tex-common_3.15_all + tex-gyre_2.004.1-4_all + tex4ht-common_20090611-1.1_all + texi2html_1.82+dfsg1-1_all + texify_1.20-2_all + texlive_2012.20120611-5_all + texlive-base_2012.20120611-5_all + texlive-bibtex-extra_2012.20120611-2_all + texlive-common_2012.20120611-5_all + texlive-doc-ar_2012.20120611-1_all + texlive-doc-base_2012.20120611-1_all + texlive-doc-bg_2012.20120611-1_all + texlive-doc-cs+sk_2012.20120611-1_all + texlive-doc-de_2012.20120611-1_all + texlive-doc-en_2012.20120611-1_all + texlive-doc-es_2012.20120611-1_all + texlive-doc-fi_2012.20120611-1_all + texlive-doc-fr_2012.20120611-1_all + texlive-doc-it_2012.20120611-1_all + texlive-doc-ja_2012.20120611-1_all + texlive-doc-ko_2012.20120611-1_all + texlive-doc-mn_2012.20120611-1_all + texlive-doc-nl_2012.20120611-1_all + texlive-doc-pl_2012.20120611-1_all + texlive-doc-pt_2012.20120611-1_all + texlive-doc-rs_2012.20120611-1_all + texlive-doc-ru_2012.20120611-1_all + texlive-doc-si_2012.20120611-1_all + texlive-doc-th_2012.20120611-1_all + texlive-doc-tr_2012.20120611-1_all + texlive-doc-uk_2012.20120611-1_all + texlive-doc-vi_2012.20120611-1_all + texlive-doc-zh_2012.20120611-1_all + texlive-extra-utils_2012.20120611-2_all + texlive-font-utils_2012.20120611-2_all + texlive-fonts-extra_2012.20120611-2_all + texlive-fonts-extra-doc_2012.20120611-2_all + texlive-fonts-recommended_2012.20120611-5_all + texlive-fonts-recommended-doc_2012.20120611-5_all + texlive-formats-extra_2012.20120611-2_all + texlive-full_2012.20120611-5_all + texlive-games_2012.20120611-2_all + texlive-generic-extra_2012.20120611-2_all + texlive-generic-recommended_2012.20120611-5_all + texlive-humanities_2012.20120611-2_all + texlive-humanities-doc_2012.20120611-2_all + texlive-lang-african_2012.20120611-2_all + texlive-lang-all_2012.20120611-2_all + texlive-lang-arabic_2012.20120611-2_all + texlive-lang-armenian_2012.20120611-2_all + texlive-lang-cjk_2012.20120611-2_all + texlive-lang-croatian_2012.20120611-2_all + texlive-lang-cyrillic_2012.20120611-2_all + texlive-lang-czechslovak_2012.20120611-2_all + texlive-lang-danish_2012.20120611-2_all + texlive-lang-dutch_2012.20120611-2_all + texlive-lang-english_2012.20120611-2_all + texlive-lang-finnish_2012.20120611-2_all + texlive-lang-french_2012.20120611-2_all + texlive-lang-german_2012.20120611-2_all + texlive-lang-greek_2012.20120611-2_all + texlive-lang-hebrew_2012.20120611-2_all + texlive-lang-hungarian_2012.20120611-2_all + texlive-lang-indic_2012.20120611-2_all + texlive-lang-italian_2012.20120611-2_all + texlive-lang-latin_2012.20120611-2_all + texlive-lang-latvian_2012.20120611-2_all + texlive-lang-lithuanian_2012.20120611-2_all + texlive-lang-mongolian_2012.20120611-2_all + texlive-lang-norwegian_2012.20120611-2_all + texlive-lang-other_2012.20120611-2_all + texlive-lang-polish_2012.20120611-2_all + texlive-lang-portuguese_2012.20120611-2_all + texlive-lang-spanish_2012.20120611-2_all + texlive-lang-swedish_2012.20120611-2_all + texlive-lang-tibetan_2012.20120611-2_all + texlive-lang-vietnamese_2012.20120611-2_all + texlive-latex-base_2012.20120611-5_all + texlive-latex-base-doc_2012.20120611-5_all + texlive-latex-extra_2012.20120611-2_all + texlive-latex-extra-doc_2012.20120611-2_all + texlive-latex-recommended_2012.20120611-5_all + texlive-latex-recommended-doc_2012.20120611-5_all + texlive-latex3_2012.20120611-2_all + texlive-luatex_2012.20120611-5_all + texlive-math-extra_2012.20120611-2_all + texlive-metapost_2012.20120611-5_all + texlive-metapost-doc_2012.20120611-5_all + texlive-music_2012.20120611-2_all + texlive-omega_2012.20120611-5_all + texlive-pictures_2012.20120611-5_all + texlive-pictures-doc_2012.20120611-5_all + texlive-plain-extra_2012.20120611-2_all + texlive-pstricks_2012.20120611-2_all + texlive-pstricks-doc_2012.20120611-2_all + texlive-publishers_2012.20120611-2_all + texlive-publishers-doc_2012.20120611-2_all + texlive-science_2012.20120611-2_all + texlive-science-doc_2012.20120611-2_all + texlive-xetex_2012.20120611-5_all + texmacs-common_1:1.0.7.15-2_all + texmacs-extra-fonts_0.2_all + texmaker-data_3.3.4-1_all + texpower_2012.20120611-2_all + texworks-help-en_0.5~svn1007-1_all + thailatex_0.5.0-3_all + the-doc_3.3~rc1-2_all + themole_0.3-1_all + themonospot_0.7.3.1-6_all + thepeg-gui_1.8.0-1_all + thepeg-reference_1.8.0-1_all + therion-doc_5.3.9-4_all + thin1.8_1.3.1-3_all + thunar-data_1.2.3-4_all + ticgit_1.0.2.11-2_all + ticgitweb_1.0.2.11-2_all + tictactoe-ng_0.3.2.1-1_all + tidy-doc_20091223cvs-1.2_all + tidy-proxy_0.97-4_all + tilecache_2.11-2_all + tilelite_0.1.5-2_all + tilestache_1.31.0-1_all + tilp_7.0-1_all + timidity-daemon_2.13.2-40.1_all + timidity-el_2.13.2-40.1_all + tinyca_0.7.5-4_all + tinymce_3.4.8+dfsg0-1_all + tioga_1.14-3_all + tipa_2:1.3-19_all + tipa-doc_2:1.3-19_all + titanion-data_0.3.dfsg1-4_all + tk_8.5.0-2.1_all + tk-brief_5.9-1.1_all + tk-dev_8.5.0-2.1_all + tk-doc_8.5.0-2.1_all + tk2_1.1-9.1_all + tk5_0.6-6.1_all + tk8.4-doc_8.4.19-5_all + tk8.5-doc_8.5.11-2_all + tkabber_0.11.1-3_all + tkabber-plugins_0.11.1-1_all + tkcon_2:2.5-1_all + tkcvs_8.2.3-1_all + tkgate-data_1.8.7-4_all + tkgate-doc_1.8.7-4_all + tkinfo_2.8-4_all + tkinspect_5.1.6p10-4_all + tklib_0.5-3_all + tkmib_5.4.3~dfsg-2.7_all + tla-doc_1.3.5+dfsg-18_all + tmexpand_0.1.2.0-3_all + tmw_20110911-3_all + tmw-music_0.3-3_all + tntnet-doc_2.1-2+deb7u1_all + togl-demos_1.7-12_all + toilet-fonts_0.3-1_all + tokyocabinet-doc_1.4.47-2_all + tokyotyrant-doc_1.1.40-4.1_all + tomatoes-data_1.55-5_all + tomboy-latex_0.5-4_all + tomcat6_6.0.35-6+deb7u1_all + tomcat6-admin_6.0.35-6+deb7u1_all + tomcat6-common_6.0.35-6+deb7u1_all + tomcat6-docs_6.0.35-6+deb7u1_all + tomcat6-examples_6.0.35-6+deb7u1_all + tomcat6-extras_6.0.35-6+deb7u1_all + tomcat6-user_6.0.35-6+deb7u1_all + tomcat7_7.0.28-4_all + tomcat7-admin_7.0.28-4_all + tomcat7-common_7.0.28-4_all + tomcat7-docs_7.0.28-4_all + tomcat7-examples_7.0.28-4_all + tomcat7-user_7.0.28-4_all + tomoe-doc_0.6.0-1.3_all + topgit_0.8-1.1_all + tor-arm_1.4.5.0-1_all + tor-geoipdb_0.2.3.25-1_all + torchat_0.9.9.550-2_all + torcs-data_1.3.3+dfsg-0.1_all + torcs-data-cars_1.3.3+dfsg-0.1_all + torcs-data-tracks_1.3.3+dfsg-0.1_all + torrentflux_2.4-5.1_all + torrus-apache2_2.03-2+deb7u1_all + torrus-common_2.03-2+deb7u1_all + tortoisehg_2.4-2_all + tortoisehg-nautilus_2.4-2_all + torus-trooper-data_0.22.dfsg1-8_all + totem-common_3.0.1-8_all + totem-plugins-dvb-daemon_1:0.2.8-1_all + tourney-manager_20070820-4_all + tp-smapi-dkms_0.41-1_all + tp-smapi-source_0.41-1_all + tpclient-pywx_0.3.1.1-3.1_all + trac_0.12.5-3~deb7u1_all + trac-accountmanager_0.2.1+r7731-1_all + trac-announcer_0.12.1+r10986-2_all + trac-authopenid_0.3.1-1_all + trac-batchmodify_0.8.0+r10978-1_all + trac-bitten_0.6+final-3_all + trac-bitten-slave_0.6+final-3_all + trac-bzr_0.4.2+bzr125-2_all + trac-customfieldadmin_0.2.6+r10460-1_all + trac-datefieldplugin_0.7782-3_all + trac-diavisview_0.1+r11124-2_all + trac-email2trac_2.4.7-1_all + trac-git_0.12.0.5+722342e-1_all + trac-graphviz_0.7.5-1_all + trac-httpauth_1.1+r6675-1_all + trac-icalviewplugin_0.7889-1_all + trac-ja-resource_0.12.2.ja1-1_all + trac-jsgantt_0.9+r11145-1_all + trac-mastertickets_3.0.2+20111224-2_all + trac-mercurial_0.12.0.28-1_all + trac-odtexport_0.6.0+svn10787-2_all + trac-privatetickets_2.0.3-3_all + trac-privateticketsplugin_2.0.3-3_all + trac-roadmap_0.4.1+r11241-1_all + trac-sensitivetickets_0.21-1_all + trac-subtickets_0.1.1+253f019-1_all + trac-tags_0.6.0+svn11105-1_all + trac-virtualticketpermissions_1.0.0+svn4153-1_all + trac-wikiprint_1.9.2-1.1_all + trac-wikitablemacro_0.7785-1_all + trac-wysiwyg_0.12.0.3+r10725-1_all + trac-xmlrpc_1.1.2+r10706-1_all + trackballs-data_1.1.4-4.1_all + trackballs-music_1.3-1_all + trang_20091111-5_all + trans-de-en_1.7-2_all + transcode-doc_3:1.1.7-3_all + transifex-client_0.8-2_all + translate_0.6-11_all + translate-docformat_0.6-5_all + translate-toolkit_1.9.0-3_all + translate-toolkit-dev-doc_1.9.0-3_all + transmageddon_0.20-1_all + transmission_2.52-3+nmu1_all + transmission-common_2.52-3+nmu1_all + transmission-remote-cli_1.3.1-1_all + trash-cli_0.12.7-1_all + tree-puzzle-doc_5.2-7_all + treeline_1.4.1-1_all + treetop_1.4.10-5_all + trigger-rally-data_0.6.0-1_all + trimage_1.0.5-1_all + triplea_1.5.2.1-1_all + tritium_0.3.8-2_all + trophy-data_2.0.2-2_all + trovacap-data_0.2.2-1_all + trscripts_1.16_all + tryton-client_2.2.3-1+deb7u1_all + tryton-modules-account_2.2.3-1_all + tryton-modules-account-be_2.2.0-2_all + tryton-modules-account-de-skr03_2.2.0-2_all + tryton-modules-account-invoice_2.2.2-2_all + tryton-modules-account-invoice-history_2.2.0-2_all + tryton-modules-account-invoice-line-standalone_2.2.0-2_all + tryton-modules-account-product_2.2.0-2_all + tryton-modules-account-statement_2.2.1-1_all + tryton-modules-all_16_all + tryton-modules-analytic-account_2.2.0-2_all + tryton-modules-analytic-invoice_1:2.2.0-2_all + tryton-modules-analytic-purchase_2.2.0-2_all + tryton-modules-analytic-sale_2.2.0-2_all + tryton-modules-calendar_2.2.1-1_all + tryton-modules-calendar-classification_2.2.1-1_all + tryton-modules-calendar-scheduling_2.2.2-1_all + tryton-modules-calendar-todo_2.2.1-1_all + tryton-modules-company_2.2.1-2_all + tryton-modules-company-work-time_2.2.0-2_all + tryton-modules-country_2.2.0-2_all + tryton-modules-currency_2.2.1-2_all + tryton-modules-dashboard_2.2.1-2_all + tryton-modules-google-maps_2.2.0-2_all + tryton-modules-ldap-authentication_2.2.1-2_all + tryton-modules-ldap-connection_2.2.0-2_all + tryton-modules-party_2.2.1-2_all + tryton-modules-party-siret_2.2.1-2_all + tryton-modules-party-vcarddav_2.2.1-1_all + tryton-modules-product_2.2.2-1_all + tryton-modules-product-cost-fifo_2.2.0-2_all + tryton-modules-product-cost-history_2.2.0-2_all + tryton-modules-product-price-list_2.2.0-2_all + tryton-modules-project_2.2.0-2_all + tryton-modules-project-plan_2.2.0-2_all + tryton-modules-project-revenue_2.2.1-2_all + tryton-modules-purchase_2.2.1-2_all + tryton-modules-purchase-invoice-line-standalone_2.2.0-2_all + tryton-modules-sale_2.2.2-2_all + tryton-modules-sale-opportunity_2.2.1-2_all + tryton-modules-sale-price-list_2.2.0-2_all + tryton-modules-stock_2.2.3-1_all + tryton-modules-stock-forecast_2.2.1-2_all + tryton-modules-stock-inventory-location_2.2.0-2_all + tryton-modules-stock-location-sequence_2.2.0-2_all + tryton-modules-stock-product-location_2.2.0-2_all + tryton-modules-stock-supply_2.2.2-1_all + tryton-modules-stock-supply-day_2.2.1-2_all + tryton-modules-timesheet_2.2.1-1_all + tryton-neso_2.2.1-2_all + tryton-proteus_2.2.1-1_all + tryton-server_2.2.4-1_all + tsconf_1.0-11_all + ttb_1.0.1+20101115-1_all + ttf-adf-accanthis_0.20090423-2_all + ttf-adf-baskervald_0.20090423-2_all + ttf-adf-berenis_0.20090423-2_all + ttf-adf-gillius_0.20090423-2_all + ttf-adf-ikarius_0.20090423-2_all + ttf-adf-irianis_0.20090423-2_all + ttf-adf-libris_0.20090423-2_all + ttf-adf-mekanus_0.20090423-2_all + ttf-adf-oldania_0.20090423-2_all + ttf-adf-romande_0.20090423-2_all + ttf-adf-switzera_0.20090423-2_all + ttf-adf-tribun_0.20090423-2_all + ttf-adf-universalis_0.20090423-2_all + ttf-adf-verana_0.20090423-2_all + ttf-aenigma_0.0.20080510.dfsg-2_all + ttf-alee_12+nmu1_all + ttf-ancient-fonts_2.57-1_all + ttf-anonymous-pro_1.002-1_all + ttf-aoyagi-kouzan-t_20051011-9_all + ttf-aoyagi-soseki_20070207-8_all + ttf-arabeyes_2.1-3_all + ttf-arphic-bkai00mp_2.10-11_all + ttf-arphic-bsmi00lp_2.10-12_all + ttf-arphic-gbsn00lp_2.11-12_all + ttf-arphic-gkai00mp_2.11-12_all + ttf-arphic-ukai_0.2.20080216.2-3_all + ttf-arphic-ukai-mbe_0.2.20080216.2-3_all + ttf-arphic-uming_0.2.20080216.2-4_all + ttf-atarismall_2.1-4_all + ttf-baekmuk_2.2-7_all + ttf-bengali-fonts_2:1.1_all + ttf-beteckna_0.4-5_all + ttf-bitstream-vera_1.10-8_all + ttf-bpg-georgian-fonts_0.5a-6_all + ttf-breip_1.0-7_all + ttf-century-catalogue_001.001-5_all + ttf-comfortaa_1.5-2_all + ttf-dejavu_2.33-3_all + ttf-dejavu-core_2.33-3_all + ttf-dejavu-extra_2.33-3_all + ttf-dejima-mincho_227-9_all + ttf-denemo_0.9.2-3_all + ttf-devanagari-fonts_2:1.1_all + ttf-droid_20111207+git-1_all + ttf-dustin_20030517-9_all + ttf-dzongkha_0.3-7_all + ttf-ecolier-court_1.00-4_all + ttf-ecolier-lignes-court_1.00-5_all + ttf-engadget_1.001-1-1_all + ttf-essays1743_1.0-4.1_all + ttf-evertype-conakry_0.002+source-2_all + ttf-f500_1.0-3_all + ttf-fanwood_1.1-2_all + ttf-farsiweb_0.4.dfsg-11_all + ttf-femkeklaver_1.0-1_all + ttf-fifthhorseman-dkg-handwriting_0.15-1_all + ttf-freefarsi_1.0.0~beta1-6_all + ttf-freefont_20120503-1_all + ttf-georgewilliams_1.0-5_all + ttf-gfs-artemisia_1.1-4_all + ttf-gfs-baskerville_1.1-4_all + ttf-gfs-bodoni-classic_1.1-4_all + ttf-gfs-complutum_1.1-5_all + ttf-gfs-didot_1.1-5_all + ttf-gfs-didot-classic_1.1-4_all + ttf-gfs-gazis_1.1-4_all + ttf-gfs-neohellenic_1.1-4_all + ttf-gfs-olga_1.1-3_all + ttf-gfs-porson_1.1-5_all + ttf-gfs-solomos_1.1-4_all + ttf-gfs-theokritos_1.1-4_all + ttf-goudybookletter_2010.07.03-1_all + ttf-gujarati-fonts_2:1.1_all + ttf-hanazono_20120421-1.1_all + ttf-inconsolata_001.010-4_all + ttf-indic-fonts_2:1.1_all + ttf-isabella_1.2-2_all + ttf-jsmath_0.090709+0-1_all + ttf-junicode_0.7.6-1_all + ttf-jura_2.6.1-1_all + ttf-kacst_2.01+mry-6_all + ttf-kacst-one_5.0+svn11846-6_all + ttf-kanjistrokeorders_3.000-dfsg-2_all + ttf-kannada-fonts_2:1.1_all + ttf-khmeros_5.0-5_all + ttf-kiloji_1:2.1.0-18_all + ttf-kochi-gothic_20030809-15_all + ttf-kochi-mincho_20030809-15_all + ttf-komatuna_20101113-6_all + ttf-konatu_26-9_all + ttf-kouzan-mouhitsu_20090806-8_all + ttf-lao_0.0.20060226-8_all + ttf-levien-museum_001.002-3_all + ttf-levien-typoscript_000.001-3_all + ttf-lg-aboriginal_1.0-5_all + ttf-liberation_1.07.2-6_all + ttf-lindenhill_1.2-2_all + ttf-linex_2.2-6_all + ttf-linux-libertine_5.1.3-1_all + ttf-lyx_2.0.3-3_all + ttf-malayalam-fonts_2:1.1_all + ttf-manchufont_2.007.svn0068-2_all + ttf-marvosym_0.1+dfsg-2_all + ttf-mgopen_1.1-8_all + ttf-misaki_11-20080603-13_all + ttf-mona_2.90-7_all + ttf-monapo_20090423-8_all + ttf-motoya-l-cedar_1.00-6_all + ttf-motoya-l-maruberi_1.00-5_all + ttf-mph-2b-damase_001.000.dfsg.2+ds1-4_all + ttf-mplus_049-1_all + ttf-nafees_1.2-4_all + ttf-nanum_3.020-1_all + ttf-nanum-coding_2.0-4_all + ttf-nanum-extra_3.020-1_all + ttf-ocr-a_1.0-4_all + ttf-oflb-asana-math_000.907-4_all + ttf-oflb-euterpe_1.1-4_all + ttf-okolaks_0.5-5_all + ttf-oldstandard_2.2really-2_all + ttf-opendin_0.1-3_all + ttf-opensymbol_2:102.2+LibO3.5.4+dfsg2-0+deb7u2_all + ttf-oriya-fonts_2:1.1_all + ttf-paktype_0.0svn20121225-1_all + ttf-prociono_2.3-2_all + ttf-punjabi-fonts_2:1.1_all + ttf-radisnoir_0.9b-2_all + ttf-rufscript_010-3_all + ttf-sawarabi-gothic_20120615-1_all + ttf-sawarabi-mincho_20110220-5_all + ttf-sazanami-gothic_20040629-15_all + ttf-sazanami-mincho_20040629-15_all + ttf-sil-abyssinica_1.200-3_all + ttf-sil-andika_1.002-2_all + ttf-sil-charis_4.106-5_all + ttf-sil-dai-banna_2.1-5_all + ttf-sil-doulos_4.106-4_all + ttf-sil-ezra_2.51-7_all + ttf-sil-galatia_2.1-4_all + ttf-sil-gentium_20081126:1.02-12_all + ttf-sil-gentium-basic_1.1-5_all + ttf-sil-nuosusil_2.1.1-7_all + ttf-sil-padauk_2.61-4_all + ttf-sil-scheherazade_1.001-8_all + ttf-sil-sophia-nubian_1.000-5_all + ttf-sil-yi_2.1.1-7_all + ttf-sil-zaghawa-beria_1.000-2_all + ttf-sinhala-lkmug_0.6-2_all + ttf-sjfonts_2.0.2-1.1_all + ttf-staypuft_0.04-6_all + ttf-summersby_1.007-3.1_all + ttf-tagbanwa_1.004_all + ttf-takao_003.02.01-7.1_all + ttf-takao-gothic_003.02.01-7.1_all + ttf-takao-mincho_003.02.01-7.1_all + ttf-tamil-fonts_2:1.2_all + ttf-telugu-fonts_2:1.1_all + ttf-thai-arundina_0.2.0-5_all + ttf-thai-tlwg_1:0.5.0-5_all + ttf-tiresias_0.1-2_all + ttf-tmuni_1.901b-4_all + ttf-tomsontalks_1.1-3_all + ttf-tuffy_20120614-1_all + ttf-ubuntu-title_1:0.3-1_all + ttf-umefont_440-3_all + ttf-umeplus_20120403-3_all + ttf-unfonts-core_1.0.2-080608-6_all + ttf-unfonts-extra_1.0.2-080608-5_all + ttf-unifont_1:5.1.20080914-1.3_all + ttf-unikurdweb_1.0-4_all + ttf-uralic_0.0.20040829-4_all + ttf-vlgothic_20120629-2_all + ttf-wqy-microhei_0.2.0-beta-1.1_all + ttf-wqy-zenhei_0.9.45-4_all + ttf-yanone-kaffeesatz_0.20100525-4_all + tuareg-mode_1:2.0.6-3_all + tulip-doc_3.7.0dfsg-4_all + tulip-help_3.7.0dfsg-4_all + tumbler-common_0.1.25-1_all + tumgreyspf_1.36-4_all + tumiki-fighters-data_0.2.dfsg1-5_all + tunapie_2.1.17-2.2_all + tunnelx_20110801-2.1_all + tupi-data_0.1+git12-6_all + turnin-ng_1.1-1_all + turtleart_98-1_all + tuxguitar_1.2-13+deb7u1_all + tuxguitar-jsa_1.2-13+deb7u1_all + tuxpaint-data_1:0.9.21-1.1_all + tuxpaint-dev_1:0.9.21-1.1_all + tuxpaint-stamps-default_2009.06.28-1_all + tuxtype-data_1.8.1-5_all + tv-fonts_1.1-8_all + tvnamer_2.2.1-1_all + twatch_0.0.7-1_all + twiggy_0.1020+dfsg-1_all + twisted-doc_12.0.0-1_all + twittering-mode_2.0.0+git20120325-1_all + twms_0.03e-2_all + twoftpd-run_1.41-1_all + tworld-data_1.3.0-6_all + txt2html_2.51-1_all + txt2man_1.5.5-4_all + txt2regex_0.8-4_all + txt2tags_2.6-3_all + typo3_4.5.19+dfsg1-5+wheezy2_all + typo3-database_4.5.19+dfsg1-5+wheezy2_all + typo3-dummy_4.5.19+dfsg1-5+wheezy2_all + typo3-src-4.5_4.5.19+dfsg1-5+wheezy2_all + tzdata_2013i-0wheezy1_all + tzdata-java_2013i-0wheezy1_all + tzwatch_1.4.4-9_all + uboot-envtools_20081215-3+2012.04.01-2_all + uboot-mkimage_2012.04.01-2_all + ubuntu-dev-tools_0.143_all + ucf_3.0025+nmu3_all + uclibc-source_0.9.32-1_all + ucommon-doc_5.2.2-4_all + udisks-doc_1.0.4-7_all + udo-doc-de_6.4.1-1_all + udo-doc-en_6.4.1-1_all + ufc_2.0.5-3_all + ufc-doc_2.0.5-3_all + ufw_0.31.1-2_all + uicilibris_1.8-1_all + uif_1.0.6-1.1_all + uim_1:1.8.1-4_all + uim-ajax-ime_1:1.8.1-4_all + uim-applet-kde_1:1.8.1-4_all + uim-baidu-olime-jp_1:1.8.1-4_all + uim-byeoru_1:1.8.1-4_all + uim-canna_1:1.8.1-4_all + uim-common_1:1.8.1-4_all + uim-google-cgiapi-jp_1:1.8.1-4_all + uim-hangul_1:1.8.1-4_all + uim-ipa-x-sampa_1:1.8.1-4_all + uim-latin_1:1.8.1-4_all + uim-look_1:1.8.1-4_all + uim-pinyin_1:1.8.1-4_all + uim-prime_1:1.8.1-4_all + uim-qt3_1:1.8.1-4_all + uim-social-ime_1:1.8.1-4_all + uim-tcode_1:1.8.1-4_all + uim-viqr_1:1.8.1-4_all + uim-yahoo-jp_1:1.8.1-4_all + uima-doc_2.4.0-2_all + uima-examples_2.4.0-2_all + uima-utils_2.4.0-2_all + ukolovnik_1.4-1_all + uligo_0.3-6_all + umlet_11.3-5_all + unattended-upgrades_0.79.5_all + unburden-home-dir_0.3.1.2_all + undertaker-el_1.3b-1_all + unetbootin-translations_575-1_all + unhide.rb_13-1.1_all + unicode_0.9.5_all + unicode-data_6.1.0-1_all + unifont_1:5.1.20080914-1.3_all + unison-all_2.40+1_all + unison-all-gtk_2.40+1_all + unknown-horizons_2012.1+dfsg1-1_all + unoconv_0.5-1_all + unp_2.0~pre7+nmu1_all + update-inetd_4.43_all + update-manager-core_0.200.5-2.1_all + update-manager-doc_0.200.5-2.1_all + update-manager-gnome_0.200.5-2.1_all + update-notifier-common_0.99.3debian11_all + upgrade-system_1.6.2.0_all + upnp-inspector_0.2.2+dfsg-3_all + upower-doc_0.9.17-1_all + uprecords-cgi_1:0.3.17-3.1_all + urlscan_0.5.6-0.1_all + urlwatch_1.11-1_all + uruk_20120608.1-1_all + usb-modeswitch-data_20120815-2_all + usbmount_0.0.22_all + usemod-wiki_1.0.5-1+deb7u1_all + user-he_1.0.20_all + user-mode-linux-doc_20060501-1_all + user-setup_1.48_all + utf8-migration-tool_0.5.7_all + uthash-dev_1.9.5-1_all + util-linux-locales_2.20.1-5.3_all + uvcdynctrl-data_0.2.2-1_all + uwsgi-extra_1.2.3+dfsg-5+deb7u1_all + v-sim-common_3.6.0-2_all + v-sim-doc_3.6.0-2_all + v4l2loopback-dkms_0.6.1-1_all + v4l2loopback-source_0.6.1-1_all + v4l2loopback-utils_0.6.1-1_all + vagrant_1.0.3-1_all + val-and-rick-data_0.1a.dfsg1-3_all + vala-0.14-doc_0.14.2-2_all + vala-0.16-doc_0.16.1-2_all + valac_0.16.1-2_all + valac-0.16-vapi_0.16.1-2_all + valknut-translations_0.4.9-2_all + vamp-plugin-sdk-doc_2.1-1_all + varnish-doc_3.0.2-2+deb7u1_all + vbackup_0.1.9-1_all + vblade-persist_0.6-2_all + vcheck_1.2.1-7_all + vclt-tools_0.1.2-3_all + vcsh_1.0-1_all + vdk-doc_1.2.4-4_all + vdk2-tutorial_1.1-3_all + vdr-dev_1.7.28-1_all + vdr-plugin-svdrpext_0.1.1-8_all + vdradmin-am_3.6.9-2_all + velocity_1.7-4_all + velocity-doc_1.7-4_all + velvet-example_1.2.03~nozlibcopy-1_all + vera_1.17-6_all + verbiste-el_0.1.34-1_all + verilog_0.9.5-1_all + veromix_0.18.3-1_all + veromix-common_0.18.3-1_all + veusz_1.15-1_all + vflib3-doc_3.6.14.dfsg-3_all + vgabios_0.7a-3_all + videolan-doc_20070626-1_all + viewvc_1.1.5-1.4_all + viewvc-query_1.1.5-1.4_all + vile-common_9.8g-2_all + vim-addon-manager_0.5.2_all + vim-conque_2.3-1_all + vim-doc_2:7.3.547-7_all + vim-gui-common_2:7.3.547-7_all + vim-latexsuite_20120125.768-2_all + vim-lesstif_2:7.3.547-7_all + vim-migemo_20110227-7_all + vim-puppet_2.7.23-1~deb7u3_all + vim-rails_4.5~20110829-1_all + vim-runtime_2:7.3.547-7_all + vim-scripts_20121007_all + vim-syntax-go_2:1.0.2-1.1_all + vim-syntax-gtk_20110314-1_all + vim-vimerl_1.4.1+git20120509.89111c7-2_all + vim-vimerl-syntax_1.4.1+git20120509.89111c7-2_all + vim-vimoutliner_0.3.4+pristine-9_all + vimhelp-de_7.3.101122-2_all + vinetto_0.6.0~alpha-1_all + viridian_1.2-3_all + virt-goodies_0.4-1_all + virt-manager_0.9.1-4_all + virtaal_0.7.1-1_all + virtinst_0.600.1-3+deb7u1_all + virtualbox-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dbg_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-fuse_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-dkms_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-utils_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-guest-x11_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-qt_4.1.18-dfsg-2+deb7u1_all + virtualbox-ose-source_4.1.18-dfsg-2+deb7u1_all + virtualbox-source_4.1.18-dfsg-2+deb7u1_all + virtualbricks_0.6.352-1_all + virtualenvwrapper_3.4-2_all + virtuoso-minimal_6.1.4+dfsg1-7_all + virtuoso-opensource_6.1.4+dfsg1-7_all + virtuoso-server_6.1.4+dfsg1-7_all + virtuoso-vad-bpel_6.1.4+dfsg1-7_all + virtuoso-vad-conductor_6.1.4+dfsg1-7_all + virtuoso-vad-demo_6.1.4+dfsg1-7_all + virtuoso-vad-doc_6.1.4+dfsg1-7_all + virtuoso-vad-isparql_6.1.4+dfsg1-7_all + virtuoso-vad-ods_6.1.4+dfsg1-7_all + virtuoso-vad-rdfmappers_6.1.4+dfsg1-7_all + virtuoso-vad-sparqldemo_6.1.4+dfsg1-7_all + virtuoso-vad-syncml_6.1.4+dfsg1-7_all + virtuoso-vad-tutorial_6.1.4+dfsg1-7_all + virtuoso-vsp-startpage_6.1.4+dfsg1-7_all + visolate_2.1.6~svn8+dfsg1-1_all + vistrails_2.0.alpha~1-3_all + visual-regexp_3.1-3_all + vitables_2.1-1_all + vlc-data_2.0.3-5_all + vlogger_1.3-3.1_all + vm_8.1.0-1_all + vm-bonus-el_35.2+nmu1_all + vmm_0.6.0-2_all + volti_0.2.3-5_all + voms-doc_2.0.8-1_all + vpb-driver-source_4.2.55-1_all + vpim_0.695-1_all + vpnc-scripts_0.1~git20120602-2_all + vrms_1.16_all + vtk-doc_5.8.0-13_all + vtk-examples_5.8.0-13_all + vtkdata_5.8.0-1_all + vuze_4.3.0.6-5_all + vzdump_1.2.6-3_all + w2do_2.3.1-3_all + w3-dtd-mathml_2.0.0.0-5_all + w3af_1.0-rc3svn3489-1_all + w3af-console_1.0-rc3svn3489-1_all + w3c-dtd-xhtml_1.2-4_all + w3c-linkchecker_4.81-7_all + w3c-markup-validator_1.2+dfsg-6_all + w3c-sgml-lib_1.2-3_all + w3m-el_1.4.4-11_all + w3m-el-snapshot_1.4.483+0.20120614-1_all + wader-core_0.5.10-1_all + wajig_2.7.3_all + wakeonlan_0.41-11_all + wamerican_7.1-1_all + wamerican-huge_7.1-1_all + wamerican-insane_7.1-1_all + wamerican-large_7.1-1_all + wamerican-small_7.1-1_all + wammu_0.36-2_all + wapiti_1.1.6-4_all + wapua_0.06.1-2_all + warmux-data_1:11.04.1+repack-4_all + wavesurfer_1.8.8p3-1_all + wbrazilian_3.0~beta4-15_all + wbritish_7.1-1_all + wbritish-huge_7.1-1_all + wbritish-insane_7.1-1_all + wbritish-large_7.1-1_all + wbritish-small_7.1-1_all + wbulgarian_4.1-3_all + wcanadian_7.1-1_all + wcanadian-huge_7.1-1_all + wcanadian-insane_7.1-1_all + wcanadian-large_7.1-1_all + wcanadian-small_7.1-1_all + wcatalan_0.20111230b-4_all + wcslib-doc_4.13.4-1_all + wdanish_1.6.25-1.1_all + wdg-html-validator_1.6.2-7_all + wdiff-doc_1.1.2-1_all + wdutch_1:2.10-1_all + weather-util_2.0-1_all + weather-util-data_2.0-1_all + weathermap4rrd_1.1.999+1.2rc3-2_all + webauth-tests_4.1.1-2_all + webauth-weblogin_4.1.1-2_all + webcamd_0.7.6-5_all + webcheck_1.10.4_all + webgen0.4_0.4.7-8_all + webgen0.4-doc_0.4.7-8_all + webgen0.5_0.5.14+dfsg1-3_all + webgen0.5-doc_0.5.14+dfsg1-3_all + webhttrack-common_3.46.1-1_all + webissues-server_0.8.5-3_all + weblint-perl_2.20+dfsg-1_all + webmagick_2.02-11_all + weboob_0.c-4.1_all + weboob-qt_0.c-4.1_all + weborf-daemon_0.13-3_all + websimba_0.8.4-4.2_all + websvn_2.3.3-1.1_all + weechat_0.3.8-1+deb7u1_all + weechat-dev_0.3.8-1+deb7u1_all + weechat-doc_0.3.8-1+deb7u1_all + weechat-scripts_20120603-1_all + weirdx_1.0.32-6_all + weka_3.6.6-1_all + weka-doc_3.6.6-1_all + wesnoth_1:1.10.3-3_all + wesnoth-1.10_1:1.10.3-3_all + wesnoth-1.10-aoi_1:1.10.3-3_all + wesnoth-1.10-data_1:1.10.3-3_all + wesnoth-1.10-did_1:1.10.3-3_all + wesnoth-1.10-dm_1:1.10.3-3_all + wesnoth-1.10-dw_1:1.10.3-3_all + wesnoth-1.10-ei_1:1.10.3-3_all + wesnoth-1.10-httt_1:1.10.3-3_all + wesnoth-1.10-l_1:1.10.3-3_all + wesnoth-1.10-low_1:1.10.3-3_all + wesnoth-1.10-music_1:1.10.3-3_all + wesnoth-1.10-nr_1:1.10.3-3_all + wesnoth-1.10-sof_1:1.10.3-3_all + wesnoth-1.10-sotbe_1:1.10.3-3_all + wesnoth-1.10-thot_1:1.10.3-3_all + wesnoth-1.10-tools_1:1.10.3-3_all + wesnoth-1.10-trow_1:1.10.3-3_all + wesnoth-1.10-tsg_1:1.10.3-3_all + wesnoth-1.10-ttb_1:1.10.3-3_all + wesnoth-1.10-utbs_1:1.10.3-3_all + wesnoth-core_1:1.10.3-3_all + wesnoth-music_1:1.10.3-3_all + west-chamber-dkms_20100405+svn20111107.r124-1_all + west-chamber-source_20100405+svn20111107.r124-1_all + wfaroese_0.4.1-1_all + wfinnish_0.7-18_all + wfo_0.1-2_all + wfrench_1.2.3-10_all + wgaelic_0.50-8_all + wgalician-minimos_0.5-35_all + wgerman-medical_20110608-1_all + whatsnewfm_0.7.2-1_all + whatweb_0.4.8~git20120606-1_all + when_1.1.29-1_all + whereami_0.3.34-0.3_all + whichwayisup_0.7.9-2_all + whiff_0.001-1_all + whitedune-docs_0.30.10-1.1_all + whizzytex_1.3.2-1.1_all + whohas_0.29-0.3_all + why-examples_2.30+dfsg-5_all + whyteboard_0.41.1-4_all + wicd_1.7.2.4-4_all + wicd-cli_1.7.2.4-4_all + wicd-curses_1.7.2.4-4_all + wicd-daemon_1.7.2.4-4_all + wicd-gtk_1.7.2.4-4_all + widelands-data_1:17-3_all + widemargin_1.0.11-4_all + wifi-radar_2.0.s08+dfsg-1.1_all + wiki2beamer_0.9.4-1_all + wikipedia2text_0.11-2_all + wikipediafs_0.4-4_all + wiliki_0.6.2-1_all + wims-help_4.01-2_all + win32-loader_0.7.4.7+deb7u1_all + windows-el_2.41-3_all + wine-doc_1.0.0-1_all + winff-doc_1.4.2-3_all + wing-data_0.7-27.1_all + winpdb_1.4.8-2_all + wireless-regdb_2011.04.28-1_all + wireshark-doc_1.8.2-5wheezy9_all + wirish_2.0-21_all + wise-doc_2.4.1-10_all + witalian_1.7.5_all + witty_3.2.1-2_all + witty-dbg_3.2.1-2_all + witty-dev_3.2.1-2_all + witty-doc_3.2.1-2_all + wizznic-data_0.9.2-preview2+dfsg-1.1_all + wl_2.14.0-12_all + wl-beta_2.15.9+0.20120411-1_all + wm-icons_0.4.0-5.1_all + wmaker-common_0.95.3-2_all + wmaker-data_0.9~3-4_all + wmanx_0.50-9.1_all + wmii-doc_1:1-14_all + wngerman_20120607-1_all + wnorwegian_2.0.10-5.1_all + wogerman_1:2-28_all + wondershaper_1.1a-6_all + woof_20091227-2_all + wordnet-base_1:3.0-29_all + wordnet-sense-index_1:3.0-29_all + wordpress_3.6.1+dfsg-1~deb7u1_all + wordpress-l10n_3.6.1+dfsg-1~deb7u1_all + wordpress-openid_3.3.3-1_all + wordpress-shibboleth_1.4-2_all + wordpress-xrds-simple_1.0-1_all + worker-data_2.19.2-2_all + workrave-data_1.9.909+abc941eb70-1_all + wormux_1:11.04.1+repack-4_all + wormux-data_1:11.04.1+repack-4_all + wormux-dbg_1:11.04.1+repack-4_all + wormux-servers_1:11.04.1+repack-4_all + wotsap_0.7-2_all + wpolish_20120520-1_all + wportuguese_20120604-1_all + wpp_2.13.1.35-3_all + writer2latex_1.0.2-8_all + writer2latex-manual_1.0.2-8_all + writetype_1.2.130+bzr139-1_all + wspanish_1.0.26_all + wswedish_1.4.5-2.1_all + wswiss_20120607-1_all + wukrainian_1.6.5-2_all + wwwconfig-common_0.2.2_all + wwwstat_2.0-7_all + wx2.8-doc_2.8.12.1-12_all + wx2.8-examples_2.8.12.1-12_all + wx2.8-i18n_2.8.12.1-12_all + wxgeometrie_0.133.1-1_all + wxsqlite3-doc_3.0.0.1~dfsg0-2_all + wyg_1.1.3.0.debian.1-5_all + x-face-el_1.3.6.24-12_all + x-tile_2.2.1-2_all + x11-common_1:7.7+3~deb7u1_all + x11proto-bigreqs-dev_1:1.1.2-1_all + x11proto-composite-dev_1:0.4.2-2_all + x11proto-core-dev_7.0.23-1_all + x11proto-damage-dev_1:1.2.1-2_all + x11proto-dmx-dev_1:2.3.1-2_all + x11proto-dri2-dev_2.6-2_all + x11proto-fixes-dev_1:5.0-2_all + x11proto-fonts-dev_2.1.2-1_all + x11proto-gl-dev_1.4.15-1_all + x11proto-input-dev_2.2-1_all + x11proto-kb-dev_1.0.6-2_all + x11proto-print-dev_1.0.5-2_all + x11proto-randr-dev_1.3.2-2_all + x11proto-record-dev_1.14.2-1_all + x11proto-render-dev_2:0.11.1-2_all + x11proto-resource-dev_1.2.0-3_all + x11proto-scrnsaver-dev_1.2.2-1_all + x11proto-video-dev_2.3.1-2_all + x11proto-xcmisc-dev_1.2.2-1_all + x11proto-xext-dev_7.2.1-1_all + x11proto-xf86bigfont-dev_1.2.0-3_all + x11proto-xf86dga-dev_2.1-3_all + x11proto-xf86dri-dev_2.1.1-2_all + x11proto-xf86vidmode-dev_2.3.1-2_all + x11proto-xinerama-dev_1.2.1-2_all + x11vnc-data_0.9.13-1_all + xapian-doc_1.2.12-2_all + xapt_2.2.19_all + xavante_2.2.1-1_all + xavante-doc_2.2.1-1_all + xbase-clients_1:7.7+3~deb7u1_all + xbitmaps_1.1.1-1_all + xblast_1:2.10.4-3_all + xblast-tnt-images_20050106-2_all + xblast-tnt-levels_20050106-2_all + xblast-tnt-mini_2.10.4-3_all + xblast-tnt-models_20050106-3_all + xblast-tnt-musics_20050106-2_all + xblast-tnt-sounds_20040429-2_all + xbmc_2:11.0~git20120510.82388d5-1_all + xbmc-data_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-common_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-dev_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-j2me_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-ps3_2:11.0~git20120510.82388d5-1_all + xbmc-eventclients-xbmc-send_2:11.0~git20120510.82388d5-1_all + xbmc-skin-confluence_2:11.0~git20120510.82388d5-1_all + xbmc-standalone_2:11.0~git20120510.82388d5-1_all + xbubble-data_0.5.11.2-3.2_all + xcb-proto_1.7.1-1_all + xchat-common_2.8.8-7.1_all + xchat-gnome-common_1:0.30.0~git20110821.e2a400-0.2_all + xcite_1.60-1_all + xcp-eliloader_0.1-4_all + xcrysden-data_1.5.53-1_all + xcursor-themes_1.0.3-1_all + xdeb_0.6.6_all + xdg-utils_1.1.0~rc1+git20111210-6_all + xdot_0.4-2_all + xen-docs-4.1_4.1.4-3+deb7u1_all + xen-tools_4.3.1-1_all + xen-utils-common_4.1.4-3+deb7u1_all + xenomai-doc_2.6.0-2_all + xfce-keyboard-shortcuts_4.8.1-1_all + xfce4_4.8.0.3_all + xfce4-artwork_0.1.1a~git+20110420-1_all + xfce4-dbg_4.8.0.3_all + xfce4-power-manager-data_1.0.11-2_all + xfce4-screenshooter-plugin_1.8.1-1_all + xfdesktop4-data_4.8.3-2_all + xfe-i18n_1.32.5-2_all + xfe-themes_1.32.5-2_all + xfig-doc_1:3.2.5.b-3_all + xfig-libs_1:3.2.5.b-3_all + xflr5-doc_6.07+svn513-1_all + xfonts-100dpi_1:1.0.3_all + xfonts-100dpi-transcoded_1:1.0.3_all + xfonts-75dpi_1:1.0.3_all + xfonts-75dpi-transcoded_1:1.0.3_all + xfonts-a12k12_1-11_all + xfonts-ayu_1.7+0a+0debian1-2.1_all + xfonts-baekmuk_2.2-5_all + xfonts-base_1:1.0.3_all + xfonts-bitmap-mule_8.5+0.20030825.0433-12_all + xfonts-biznet-100dpi_3.0.0-22_all + xfonts-biznet-75dpi_3.0.0-22_all + xfonts-biznet-base_3.0.0-22_all + xfonts-bolkhov-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-75dpi_1.1.20001007-6_all + xfonts-bolkhov-cp1251-misc_1.1.20001007-6_all + xfonts-bolkhov-isocyr-75dpi_1.1.20001007-6_all + xfonts-bolkhov-isocyr-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8r-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8r-misc_1.1.20001007-6_all + xfonts-bolkhov-koi8u-75dpi_1.1.20001007-6_all + xfonts-bolkhov-koi8u-misc_1.1.20001007-6_all + xfonts-bolkhov-misc_1.1.20001007-6_all + xfonts-cronyx-100dpi_2.3.8-6_all + xfonts-cronyx-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-100dpi_2.3.8-6_all + xfonts-cronyx-cp1251-75dpi_2.3.8-6_all + xfonts-cronyx-cp1251-misc_2.3.8-6_all + xfonts-cronyx-isocyr-100dpi_2.3.8-6_all + xfonts-cronyx-isocyr-75dpi_2.3.8-6_all + xfonts-cronyx-isocyr-misc_2.3.8-6_all + xfonts-cronyx-koi8r-100dpi_2.3.8-6_all + xfonts-cronyx-koi8r-75dpi_2.3.8-6_all + xfonts-cronyx-koi8r-misc_2.3.8-6_all + xfonts-cronyx-koi8u-100dpi_2.3.8-6_all + xfonts-cronyx-koi8u-75dpi_2.3.8-6_all + xfonts-cronyx-koi8u-misc_2.3.8-6_all + xfonts-cronyx-misc_2.3.8-6_all + xfonts-cyrillic_1:1.0.3_all + xfonts-efont-unicode_0.4.2-5_all + xfonts-efont-unicode-ib_0.4.2-5_all + xfonts-encodings_1:1.0.4-1_all + xfonts-intl-arabic_1.2.1-8_all + xfonts-intl-asian_1.2.1-8_all + xfonts-intl-chinese_1.2.1-8_all + xfonts-intl-chinese-big_1.2.1-8_all + xfonts-intl-european_1.2.1-8_all + xfonts-intl-japanese_1.2.1-8_all + xfonts-intl-japanese-big_1.2.1-8_all + xfonts-intl-phonetic_1.2.1-8_all + xfonts-jisx0213_0+20040511-4_all + xfonts-jmk_3.0-19_all + xfonts-kaname_1.1-9.1_all + xfonts-kapl_4.22.1-6_all + xfonts-kappa20_0.396-3_all + xfonts-marumoji_0.2-9_all + xfonts-mathml_6_all + xfonts-mona_2.90-7_all + xfonts-mplus_2.2.4-1_all + xfonts-nexus_0.0.2-16_all + xfonts-scalable_1:1.0.3-1_all + xfonts-shinonome_5-1.1_all + xfonts-terminus_4.35-1_all + xfonts-terminus-dos_4.35-1_all + xfonts-terminus-oblique_4.35-1_all + xfonts-thai_1:1.2.5-11_all + xfonts-thai-etl_1:1.2.5-11_all + xfonts-thai-manop_1:1.2.5-11_all + xfonts-thai-nectec_1:1.2.5-11_all + xfonts-thai-poonlap_1:1.2.5-11_all + xfonts-thai-vor_1:1.2.5-11_all + xfonts-tipa_2:1.3-19_all + xfonts-traditional_1.6_all + xfonts-unifont_1:5.1.20080914-1.3_all + xfonts-wqy_0.9.9-5_all + xfwm4-themes_4.6.0-3_all + xgridfit_2.2a-2_all + xgridfit-doc_2.2a-2_all + xhtml-relaxng_20091111-5_all + xhtml2ps_1.0b7-1_all + xindy-rules_2.4-1.1_all + xiphos-data_3.1.5+dfsg-1_all + xkb-data_2.5.1-3_all + xlog-data_2.0.5-2_all + xmail-doc_1.27-1.1_all + xmanpages-ja_4.1.0.20011224-6_all + xmds-doc_0~svn.1884-3.1_all + xml-core_0.13+nmu2_all + xml-twig-tools_1:3.39-1_all + xmlbeans_2.5.0-4_all + xmldiff-xmlrev_0.6.10-2_all + xmltex_1.9.debian.1-3_all + xmltoman_0.4-3_all + xmltooling-schemas_1.4.2-5_all + xmltv_0.5.63-2_all + xmltv-gui_0.5.63-2_all + xmltv-util_0.5.63-2_all + xmms2-dev_0.8+dfsg-4_all + xmms2-icon_0.8+dfsg-4_all + xmms2tray_0.5.1-2_all + xmoto-data_0.5.10+dfsg-1_all + xmp-common_3.4.0-1.1_all + xnbd-common_0.1.0-pre-hg20-e75b93a47722-3_all + xnee_3.13-1_all + xnee-doc_3.13-1_all + xnetcardconfig_0.2.1-1_all + xorg-dev_1:7.7+3~deb7u1_all + xorg-docs_1:1.6-1_all + xorg-docs-core_1:1.6-1_all + xorg-sgml-doctools_1:1.10-1_all + xotcl-doc_1.6.7-2_all + xpilot-extra_4.7.2_all + xpilot-ng_1:4.7.3-1.4_all + xpilot-ng-common_1:4.7.3-1.4_all + xplanet-images_1.2.1-4.1_all + xpn_1.2.6-5_all + xracer-tools_0.96.9.1-6_all + xrsh_5.92-8_all + xsane-common_0.998-3_all + xscreensaver-screensaver-dizzy_0.3-1_all + xsddiagram_0.10-1_all + xserver-common_2:1.12.4-6+deb7u2_all + xserver-xorg-input-evdev-dev_1:2.7.0-1_all + xserver-xorg-input-joystick-dev_1:1.6.1-1_all + xserver-xorg-input-synaptics-dev_1.6.2-2_all + xtables-addons-dkms_1.42-2_all + xtables-addons-source_1.42-2_all + xtalk_1.3-15.1_all + xtide-coastline_20020202-1_all + xtide-data_20100529-1_all + xtitle_1.0.2-4_all + xtrans-dev_1.2.7-1_all + xtux-common_0.2.030306-12_all + xtux-levels_0.2.030306-12_all + xul-ext-adblock-plus_2.1-1+deb7u1_all + xul-ext-adblock-plus-element-hiding-helper_1.2.2-1_all + xul-ext-all-in-one-sidebar_0.7.16+really-0.7.14-1_all + xul-ext-autofill-forms_0.9.8.3-5_all + xul-ext-automatic-save-folder_1.0.4-3_all + xul-ext-certificatepatrol_2.0.14-3_all + xul-ext-compactheader_2.0.5-1_all + xul-ext-cookie-monster_1.1.0-5~deb7u1_all + xul-ext-custom-tab-width_1.0.1-2_all + xul-ext-debianbuttons_1.9-1_all + xul-ext-dispmua_1.6.8-1_all + xul-ext-dom-inspector_1:2.0.11-1_all + xul-ext-downthemall_2.0.13-2_all + xul-ext-firebug_1.9.2~b2-1_all + xul-ext-firecookie_1.4-1+deb7u1_all + xul-ext-firegestures_1.6.16-1_all + xul-ext-firetray_0.4.6-1~deb7u1_all + xul-ext-firexpath_0.9.7-1_all + xul-ext-flashblock_1.5.15-1_all + xul-ext-flashgot_1.4.5+dfsg-1_all + xul-ext-foxyproxy-standard_3.4-1.1~deb7u1_all + xul-ext-gcontactsync_0.3.5-1_all + xul-ext-googlebookmarks_1.5-3_all + xul-ext-greasemonkey_0.9.20-1_all + xul-ext-imap-acl_0.2.2-1_all + xul-ext-itsalltext_1.6.4-1_all + xul-ext-livehttpheaders_0.17-3_all + xul-ext-monkeysphere_0.6.1-1_all + xul-ext-mozvoikko_2.0.1-1_all + xul-ext-noscript_2.1.4-1_all + xul-ext-nosquint_2.1.5-1_all + xul-ext-nostalgy_0.2.30+svn219-1_all + xul-ext-openinbrowser_1.11-6_all + xul-ext-personasplus_1.6.2-2_all + xul-ext-perspectives_4.3.1-1+deb7u1_all + xul-ext-pwdhash_1.7-13_all + xul-ext-quotecolors_0.3-3_all + xul-ext-refcontrol_0.8.16-2_all + xul-ext-requestpolicy_0.5.25-1_all + xul-ext-sage_1.4.12-3+deb7u1_all + xul-ext-scrapbook_1.5.4-1_all + xul-ext-searchload-options_0.6.3-2_all + xul-ext-sieve_0.1.14-1_all + xul-ext-status4evar_0.2012.04.21.13-1_all + xul-ext-syncplaces_4.1.2-2_all + xul-ext-tabmixplus_0.4.0.2-1_all + xul-ext-toggle-proxy_1.5-2_all + xul-ext-treestyletab_0.14.2012050301-1_all + xul-ext-ubiquity_0.6.1~pre20111123-1_all + xul-ext-uppity_1.5.8-3_all + xul-ext-useragentswitcher_0.7.3-1_all + xul-ext-webdeveloper_1.1.9-5_all + xul-ext-wot_20110704-2_all + xul-ext-zotero_3.0.7-1_all + xutils_1:7.7+3~deb7u1_all + xword_2.0.0~rc2-1_all + xye-data_0.12.1+dfsg-4_all + yabause_0.9.11.1-1_all + yabause-common_0.9.11.1-1_all + yacas-doc_1.3.2-1_all + yade-doc_0.80.1-2_all + yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all + yafaray-exporter_0.1.2+really0.1.2~beta5-1_all + yagtd_0.3.4-1_all + yahoo2mbox_0.24-1_all + yahtzeesharp_1.1-5_all + yaml-mode_0.0.7-1_all + yample_0.30-2_all + yapps2_2.1.1-17.2_all + yapps2-runtime_2.1.1-17.2_all + yapra_0.1.2-7_all + yard_0.8.2.1-2_all + yaret_2.1.0-5_all + yarssr_0.2.2-8_all + yasat_526-1_all + yate-doc_4.1.0-1~dfsg-3_all + yatex_1.76+dfsg1-2_all + yaws_1.94-1_all + yaws-chat_1.94-1_all + yaws-doc_1.94-1_all + yaws-mail_1.94-1_all + yaws-wiki_1.94-1_all + yaws-yapp_1.94-1_all + yaz-doc_4.2.30-2_all + yelp-tools_3.4.1-1_all + yelp-xsl_3.4.2-1_all + yhsm-docs_1.0.4-1_all + yhsm-tools_1.0.4-1_all + yhsm-validation-server_1.0.4-1_all + yhsm-yubikey-ksm_1.0.4-1_all + yocto-reader_0.9.4_all + yodl-doc_3.00.0-6_all + yokadi_0.13.0-2_all + yorick-cubeview_1.6-2_all + yorick-data_2.2.02+dfsg-6_all + yorick-doc_2.2.02+dfsg-6_all + yorick-mira_0.9.10+dfsg-1_all + yorick-mpy-common_2.2.02+dfsg-6_all + yorick-spydr_0.8.2-3_all + yorick-yutils_1.5.2-1_all + yoshimi-data_0.060.12-2_all + yudit-common_2.8.1-4_all + yudit-doc_2.8.1-4_all + yui-builder_1.0.0b1+dfsg-1_all + yui-compressor_2.4.7-1_all + yum_3.2.25-2_all + yydebug_1.1.0-2_all + z88-data_13.0.0+dfsg2-3_all + z88-doc_13.0.0+dfsg2-3_all + z88dk-data_1.8.ds1-10_all + z88dk-doc_1.8.ds1-10_all + zathura-dev_0.1.2-4_all + zaz-data_1.0.0~dfsg1-1_all + zec_0.12-2_all + zeitgeist_0.9.0.1-1_all + zemberek-java-demo_2.1.1-8.1_all + zemberek-server_0.7.1-12.1_all + zendframework_1.11.13-1.1_all + zendframework-bin_1.11.13-1.1_all + zendframework-resources_1.11.13-1.1_all + zenity-common_3.4.0-2_all + zeroc-ice34_3.4.2-8.2_all + zeroc-icee_1.2.0-6.1_all + zeroinstall-injector_1.9-1_all + zeya_0.6-1_all + zim_0.56-1_all + zine_0.2~20100905-1_all + zonecheck_3.0.3-2_all + zonecheck-cgi_3.0.3-2_all + zookeeper_3.3.5+dfsg1-2_all + zookeeperd_3.3.5+dfsg1-2_all + zoomer_0.1-1_all + zope-common_0.5.52_all + zope-debhelper_0.3.15_all + zope-maildrophost_2.3-1_all + zope-mysqlda_3.1.1-1_all + zope-quotafolder_1:0.1.1-1_all + zope-replacesupport_1.0.3-6_all + zope2.12-sandbox_2.12.26-1_all + zsh-beta-doc_4.3.17-dev-0+20120621-1_all + zsh-doc_4.3.17-1_all + zshdb_0.05+git20101031-2_all + 0ad_0~r11863-2_amd64 + 0ad-dbg_0~r11863-2_amd64 + 3dchess_0.8.1-17_amd64 + 3depict_0.0.10-1+b1_amd64 + 4digits_1.1.2-1_amd64 + 4g8_1.0-3_amd64 + 4store_1.1.4-2_amd64 + 6tunnel_0.11rc2-7_amd64 + 7kaa_2.14.3-1_amd64 + 7kaa-dbg_2.14.3-1_amd64 + 9base_1:6-5_amd64 + 9menu_1.8-5_amd64 + 9wm_1.2-9_amd64 + a2jmidid_7+dfsg0-1_amd64 + a2ps_1:4.14-1.1_amd64 + a56_1.3-6_amd64 + a7xpg_0.11.dfsg1-7_amd64 + aa3d_1.0-8_amd64 + aajm_0.4-6_amd64 + aaphoto_0.41-1.1_amd64 + abcm2ps_6.6.17-1_amd64 + abcmidi_20070318-2_amd64 + abcmidi-yaps_20070318-2_amd64 + abe_1.1+dfsg-1_amd64 + abgate_1.1.6-1_amd64 + abinit_5.3.4.dfsg-3_amd64 + abiword_2.9.2+svn20120603-8_amd64 + abiword-dbg_2.9.2+svn20120603-8_amd64 + abiword-plugin-grammar_2.9.2+svn20120603-8_amd64 + abiword-plugin-mathview_2.9.2+svn20120603-8_amd64 + abook_0.6.0~pre2-3_amd64 + abootimg_0.6-1_amd64 + abr2gbr_1:1.0.2-2_amd64 + abraca_0.7.0-1_amd64 + abtransfers_0.0.3.0-2_amd64 + accountsservice_0.6.21-8_amd64 + acct_6.5.5-1_amd64 + ace-gperf_6.0.3+dfsg-0.1_amd64 + ace-netsvcs_6.0.3+dfsg-0.1_amd64 + ace-of-penguins_1.3-8_amd64 + acedb-other_4.9.39+dfsg.01-5_amd64 + acedb-other-belvu_4.9.39+dfsg.01-5_amd64 + acedb-other-dotter_4.9.39+dfsg.01-5_amd64 + aces3_3.0.6-7_amd64 + acetoneiso_2.3-2_amd64 + acfax_981011-14.1_amd64 + achilles_2-8_amd64 + ack_1.39-12_amd64 + acl_2.2.51-8_amd64 + acl2_4.3-3_amd64 + acl2-books_4.3-3_amd64 + acl2-infix_4.3-3_amd64 + aclock.app_0.2.3-4.3_amd64 + acm_5.0-28_amd64 + aconnectgui_0.9.0rc2-1-9_amd64 + acorn-fdisk_3.0.6-8_amd64 + acoustid-fingerprinter_0.4-2_amd64 + acpi_1.6-1_amd64 + acpi-fakekey_0.140-5_amd64 + acpid_1:2.0.16-1+deb7u1_amd64 + acpidump_20100513-3.1_amd64 + acpitail_0.1-4_amd64 + acpitool_0.5.1-3_amd64 + acpitool-dbg_0.5.1-3_amd64 + actionaz_3.4.2-1_amd64 + adabrowse_4.0.3-5_amd64 + adacgi1_1.6-17_amd64 + adacontrol_1.12r4-3_amd64 + addresses-goodies-for-gnustep_0.4.7-1+b5_amd64 + addressmanager.app_0.4.7-1+b5_amd64 + adjtimex_1.29-2.2_amd64 + admesh_0.95-12_amd64 + adns-tools_1.4-2_amd64 + adonthell_0.3.5-7.1_amd64 + adplay_1.6-1.1_amd64 + adplug-utils_2.2.1+dfsg3-0.1_amd64 + adun.app_0.81-5+b2_amd64 + advancecomp_1.15-1_amd64 + advi_1.10.2-1_amd64 + aegis_4.24.3-3_amd64 + aegis-web_4.24.3-3_amd64 + aegisub_2.1.9-1_amd64 + aeolus_0.8.4-6_amd64 + aes2501-wy_0.1-5_amd64 + aesfix_1.0.1-2_amd64 + aeskeyfind_1:1.0-1_amd64 + aeskulap_0.2.2b1-11_amd64 + aespipe_2.4c-1_amd64 + aewan_1.0.01-3_amd64 + aewm_1.3.12-2.1_amd64 + aewm++_1.1.2-5_amd64 + aewm++-goodies_1.0-9_amd64 + affiche.app_0.6.0-8+b2_amd64 + afflib-dbg_3.6.6-1.1_amd64 + afflib-tools_3.6.6-1.1_amd64 + afnix_2.2.0-2_amd64 + afterstep_2.2.11-7_amd64 + afterstep-dbg_2.2.11-7_amd64 + afuse_0.2-3+b1_amd64 + agave_0.4.7-2.1+b1_amd64 + agda-bin_2.3.0.1-1_amd64 + agedu_8928-1_amd64 + agenda.app_0.42.2-1_amd64 + aggregate_1.6-7_amd64 + aghermann_0.6.0.1-1_amd64 + aha_0.4.4-1_amd64 + ahcpd_0.53-1_amd64 + ahven-dbg_2.1-4_amd64 + aiccu_20070115-15.1_amd64 + aide_0.15.1-8_amd64 + aide-dynamic_0.15.1-8_amd64 + aide-xen_0.15.1-8_amd64 + aiksaurus_1.2.1+dev-0.12-6.1_amd64 + airstrike_0.99+1.0pre6a-5_amd64 + aisleriot_1:3.4.1-1_amd64 + aj-snapshot_0.9.6-1_amd64 + akonadi-backend-sqlite_1.7.2-3_amd64 + akonadi-dbg_1.7.2-3_amd64 + akonadi-kde-resource-googledata_1.2.0-1+b2_amd64 + akonadi-server_1.7.2-3_amd64 + akonadiconsole_4:4.4.11.1+l10n-3+b1_amd64 + akregator_4:4.4.11.1+l10n-3+b1_amd64 + alarm-clock_1.2.5-1.2_amd64 + alarm-clock-applet_0.3.3-1_amd64 + aldo_0.7.6-1_amd64 + ale_0.9.0.3-1.1_amd64 + alevt_1:1.6.2-5_amd64 + alevtd_3.102-3_amd64 + alex_3.0.1-1_amd64 + alex4_1.1-5+b1_amd64 + algol68g_2.4.1-1_amd64 + alienblaster_1.1.0-7_amd64 + aliki_0.1.0-1_amd64 + aliki-dbg_0.1.0-1_amd64 + alleyoop_0.9.8-1_amd64 + alliance_5.0-20120515-1_amd64 + alltray_0.71b-1_amd64 + almanah_0.9.1-1_amd64 + alpine_2.02+dfsg-2_amd64 + alpine-dbg_2.02+dfsg-2_amd64 + alpine-pico_2.02+dfsg-2_amd64 + alsa-oss_1.0.25-1_amd64 + alsa-tools_1.0.25-2_amd64 + alsa-tools-gui_1.0.25-2_amd64 + alsa-utils_1.0.25-4_amd64 + alsamixergui_0.9.0rc2-1-9.1_amd64 + alsaplayer-alsa_0.99.80-5.1_amd64 + alsaplayer-common_0.99.80-5.1_amd64 + alsaplayer-daemon_0.99.80-5.1_amd64 + alsaplayer-esd_0.99.80-5.1_amd64 + alsaplayer-gtk_0.99.80-5.1_amd64 + alsaplayer-jack_0.99.80-5.1_amd64 + alsaplayer-nas_0.99.80-5.1_amd64 + alsaplayer-oss_0.99.80-5.1_amd64 + alsaplayer-text_0.99.80-5.1_amd64 + alsaplayer-xosd_0.99.80-5.1_amd64 + alsoft-conf_1.4.3-1_amd64 + alt-ergo_0.94-2_amd64 + alt-key_2.2.5-1_amd64 + altermime_0.3.10-7_amd64 + altree_1.2.1-1_amd64 + alure-utils_1.2-6_amd64 + am-utils_6.2+rc20110530-3_amd64 + amanda-client_1:3.3.1-4_amd64 + amanda-common_1:3.3.1-4_amd64 + amanda-server_1:3.3.1-4_amd64 + amap-align_2.2-3_amd64 + amarok_2.6~beta1+75.g47e75df-1_amd64 + amarok-dbg_2.6~beta1+75.g47e75df-1_amd64 + amarok-utils_2.6~beta1+75.g47e75df-1_amd64 + amavisd-milter_1.5.0-5_amd64 + amavisd-milter-dbg_1.5.0-5_amd64 + amb-plugins_0.8.1-3_amd64 + ambdec_0.5.1-2_amd64 + amide_1.0.1-1_amd64 + amideco_0.31e-3.1_amd64 + amiga-fdisk-cross_0.04-14_amd64 + amoebax_0.2.1+dfsg-1_amd64 + amor_4:4.8.4-1_amd64 + amora-applet_1.2~svn699-1_amd64 + amora-cli_1.2~svn699-1_amd64 + amphetamine_0.8.10-18_amd64 + ample_0.5.7-7_amd64 + ampliconnoise_1.25-1_amd64 + amqp-tools_0.0.1.hg216-1_amd64 + ams_2.0.1-5_amd64 + amsynth_1.3.0-2_amd64 + amtterm_1.3-1_amd64 + amule_2.3.1-9_amd64 + amule-daemon_2.3.1-9_amd64 + amule-emc_0.5.2-2_amd64 + amule-utils_2.3.1-9_amd64 + amule-utils-gui_2.3.1-9_amd64 + an_1.0-2_amd64 + anacron_2.3-19_amd64 + analog_2:6.0-19.1_amd64 + and_1.2.2-4.1_amd64 + angband_1:3.3.2-2.1_amd64 + animals_201007161925-8_amd64 + animals-dbg_201007161925-8_amd64 + anjuta_2:3.4.3-1_amd64 + anjuta-dbg_2:3.4.3-1_amd64 + anjuta-extras_3.4.0-1_amd64 + ann-tools_1.1.2+doc-3_amd64 + anon-proxy_00.05.38+20081230-2.1_amd64 + ant-gcj_1.8.2-4_amd64 + ant-optional-gcj_1.8.2-4_amd64 + ant-phone_0.2.1-2_amd64 + antennavis_0.3.1-2_amd64 + anthy_9100h-16_amd64 + antigravitaattori_0.0.3-5_amd64 + antiword_0.37-8_amd64 + ants_1.9.2+svn680.dfsg-4_amd64 + anubis_4.1.1+dfsg1-3.1_amd64 + anypaper_1.4-1_amd64 + anyremote_6.0+dfsg-1_amd64 + anytun_0.3.4-2_amd64 + aoetools_30-3_amd64 + aoeui_1.6~dfsg-2_amd64 + aolserver4-core_4.5.1-15.1_amd64 + aolserver4-daemon_4.5.1-15.1_amd64 + aolserver4-dev_4.5.1-15.1_amd64 + aolserver4-nsldap_0.8-4+b1_amd64 + aolserver4-nsmysql_0.6-9+b3_amd64 + aolserver4-nsopenssl_3.0beta26-4+b1_amd64 + aolserver4-nspostgres_4.5-3+b1_amd64 + aolserver4-nssha1_0.1-3+b1_amd64 + aolserver4-nssqlite3_0.9-2+b1_amd64 + aolserver4-nsxml_1.5-2.1_amd64 + aosd-cat_0.2.7-1_amd64 + ap-utils_1.5-2_amd64 + apache2_2.2.22-13+deb7u1_amd64 + apache2-dbg_2.2.22-13+deb7u1_amd64 + apache2-mpm-event_2.2.22-13+deb7u1_amd64 + apache2-mpm-itk_2.2.22-13+deb7u1_amd64 + apache2-mpm-prefork_2.2.22-13+deb7u1_amd64 + apache2-mpm-worker_2.2.22-13+deb7u1_amd64 + apache2-prefork-dev_2.2.22-13+deb7u1_amd64 + apache2-suexec_2.2.22-13+deb7u1_amd64 + apache2-suexec-custom_2.2.22-13+deb7u1_amd64 + apache2-threaded-dev_2.2.22-13+deb7u1_amd64 + apache2-utils_2.2.22-13+deb7u1_amd64 + apache2.2-bin_2.2.22-13+deb7u1_amd64 + apache2.2-common_2.2.22-13+deb7u1_amd64 + apachetop_0.12.6-16_amd64 + apbs_1.3.0-2_amd64 + apcalc_2.12.4.4-3_amd64 + apcalc-dev_2.12.4.4-3_amd64 + apcupsd_3.14.10-2_amd64 + apcupsd-cgi_3.14.10-2_amd64 + apertium_3.1.0-2_amd64 + apertium-dbus_0.1-1.1_amd64 + apertium-en-ca_0.8.9-1+b1_amd64 + apertium-en-es_0.6.0-1.1+b1_amd64 + apertium-eo-ca_0.9.0-1.1+b1_amd64 + apertium-eo-es_0.9.0-1.1+b1_amd64 + apertium-es-ca_1.1.0-1_amd64 + apertium-es-gl_1.0.7-1_amd64 + apertium-es-pt_1.0.3-2.1_amd64 + apertium-es-ro_0.7.1-2.1_amd64 + apertium-eu-es_0.3.1-1+b1_amd64 + apertium-fr-ca_1.0.2-1_amd64 + apertium-fr-es_0.9.0-1+b1_amd64 + apertium-oc-ca_1.0.5-1.1+b1_amd64 + apertium-oc-es_1.0.5-1.1+b1_amd64 + apertium-pt-ca_0.8.1-1_amd64 + apertium-pt-gl_0.9.1-1_amd64 + apertium-tolk_0.2-2.2_amd64 + apf-client_0.8.4-1+b1_amd64 + apf-server_0.8.4-1+b1_amd64 + apg_2.2.3.dfsg.1-2_amd64 + aplus-fsf_4.22.1-6_amd64 + aplus-fsf-dev_4.22.1-6_amd64 + apmd_3.2.2-14_amd64 + apng2gif_1.5-1_amd64 + apparix_07-261-1_amd64 + apparmor_2.7.103-4_amd64 + apparmor-utils_2.7.103-4_amd64 + apper_0.7.2-5_amd64 + apper-appsetup_0.7.2-5_amd64 + apper-dbg_0.7.2-5_amd64 + appmenu-qt_0.2.6-1_amd64 + approx_5.3-1_amd64 + aprsd_1:2.2.5-13-5.2_amd64 + aprsdigi_2.4.4-3.2_amd64 + apt_0.9.7.9+deb7u1_amd64 + apt-build_0.12.44_amd64 + apt-cacher-ng_0.7.11-1_amd64 + apt-cudf_3.0.2-3_amd64 + apt-dater_0.9.0-3+wheezy1_amd64 + apt-dater-dbg_0.9.0-3+wheezy1_amd64 + apt-move_4.2.27-3_amd64 + apt-spy_3.2.2-1_amd64 + apt-transport-debtorrent_0.2.2+b1_amd64 + apt-transport-https_0.9.7.9+deb7u1_amd64 + apt-utils_0.9.7.9+deb7u1_amd64 + apt-watch-backend_0.4.0-2.1_amd64 + apt-watch-gnome_0.4.0-2.1_amd64 + aptitude_0.6.8.2-1_amd64 + aptitude-dbg_0.6.8.2-1_amd64 + aptsh_0.0.7+nmu2+b1_amd64 + apvlv_0.1.1-1.2+b1_amd64 + apwal_0.4.5-1_amd64 + aqbanking-tools_5.0.24-3_amd64 + aqemu_0.8.2-2_amd64 + aqsis_1.8.1-3_amd64 + aqualung_0.9~beta11-1.2+b1_amd64 + ara_1.0.31_amd64 + aranym_0.9.13-6_amd64 + arbtt_0.6.2-1_amd64 + arc_5.21p-1_amd64 + archivemount_0.6.1-2+b1_amd64 + ardesia_1.0-2_amd64 + ardour_1:2.8.14-2_amd64 + argus-client_2.0.6.fixes.1-3_amd64 + argus-server_1:2.0.6.fixes.1-16.3_amd64 + argyll_1.4.0-8_amd64 + argyll-dbg_1.4.0-8_amd64 + aria2_1.15.1-1_amd64 + aribas_1.64-5_amd64 + ario_1.5.1-1+b1_amd64 + arj_3.10.22-10_amd64 + ark_4:4.8.4-2_amd64 + ark-dbg_4:4.8.4-2_amd64 + armada-backlight_1.1-6_amd64 + armagetronad_0.2.8.3.2-1_amd64 + armagetronad-dedicated_0.2.8.3.2-1_amd64 + arora_0.11.0-1_amd64 + arp-scan_1.8.1-2_amd64 + arpalert_2.0.11-7.1_amd64 + arping_2.11-1_amd64 + arpon_2.0-2.1_amd64 + arptables_0.0.3.4-1_amd64 + arpwatch_2.1a15-1.2_amd64 + array-info_0.15-1_amd64 + artha_1.0.2-1_amd64 + as31_2.3.1-6_amd64 + asc_2.4.0.0-3_amd64 + ascd_0.13.2-5_amd64 + ascdc_0.3-14_amd64 + ascii_3.11-1_amd64 + ascii2binary_2.14-1_amd64 + asciijump_1.0.2~beta-6_amd64 + asclock_2.0.12-23_amd64 + asis-programs_2010-5_amd64 + asmail_2.1-3_amd64 + asmix_1.5-4.1_amd64 + asmixer_0.5-14_amd64 + asmon_0.71-5_amd64 + asp_1.8-8_amd64 + aspcud_2011.03.17.dfsg-6_amd64 + aspectc++_1:1.1+svn20120529-2_amd64 + aspell_0.60.7~20110707-1_amd64 + aspell-da_1.6.25-1.1_amd64 + aspell-fi_0.7-18_amd64 + aspell-no_2.0.10-5.1_amd64 + aspic_1.05-4_amd64 + assimp-utils_3.0~dfsg-1_amd64 + assogiate_0.2.1-5_amd64 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-espeak_2.1-1+b1_amd64 + asterisk-flite_2.1-1.1_amd64 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_amd64 + astronomical-almanac_5.6-4_amd64 + astyle_2.01-1_amd64 + asunder_2.2-1_amd64 + asylum_0.3.2-1_amd64 + asymptote_2.15-2_amd64 + at_3.1.13-2_amd64 + at-spi_1.32.0-2_amd64 + at-spi2-core_2.5.3-2_amd64 + at-spi2-core-dbg_2.5.3-2_amd64 + atanks_5.5+dfsg-0.1_amd64 + aterm_1.0.1-8_amd64 + aterm-ml_1.0.1-8_amd64 + atfs_1.4pl6-11_amd64 + atfs-dev_1.4pl6-11_amd64 + atftp_0.7.dfsg-11_amd64 + atftpd_0.7.dfsg-11_amd64 + athena-jot_9.0-5_amd64 + atlc_4.6.1-1_amd64 + atm-tools_1:2.5.1-1.5_amd64 + atom4_4.1-5.1_amd64 + atomicparsley_0.9.2~svn110-4_amd64 + atomix_2.14.0-2_amd64 + atop_1.26-2_amd64 + atp_1.2-11_amd64 + atris_1.0.7.dfsg.1-8_amd64 + ats-lang-anairiats_0.2.3-1+b3_amd64 + atsar_1.7-2_amd64 + attal_1.0~rc2-2_amd64 + attr_1:2.4.46-8_amd64 + aubio-tools_0.3.2-4.2+b1_amd64 + audacious_3.2.4-1_amd64 + audacious-dbg_3.2.4-1_amd64 + audacious-dev_3.2.4-1_amd64 + audacious-dumb_0.80-1_amd64 + audacious-plugins_3.2.4-1_amd64 + audacious-plugins-dbg_3.2.4-1_amd64 + audacity_2.0.1-1_amd64 + audacity-dbg_2.0.1-1_amd64 + audex_0.74~b1-1.1_amd64 + audiofile-tools_0.3.4-2_amd64 + audiopreview_0.6-2_amd64 + audispd-plugins_1:1.7.18-1.1_amd64 + auditd_1:1.7.18-1.1_amd64 + audtty_0.1.12-3_amd64 + aufs-tools_1:3.0+20120411-2_amd64 + aufs-tools-dbg_1:3.0+20120411-2_amd64 + augeas-dbg_0.10.0-1_amd64 + augeas-tools_0.10.0-1_amd64 + aumix_2.9.1-2_amd64 + aumix-gtk_2.9.1-2_amd64 + auralquiz_0.8.1-1_amd64 + authbind_2.1.1_amd64 + auto-apt_0.3.22_amd64 + auto-multiple-choice_1.1.1-2_amd64 + autoclass_3.3.6.dfsg.1-1_amd64 + autocutsel_0.9.0-2_amd64 + autodir_0.99.9-7.1_amd64 + autodock_4.2.3-2_amd64 + autodock-vina_1.1.2-2+b1_amd64 + autofs_5.0.7-3_amd64 + autofs-hesiod_5.0.7-3_amd64 + autofs-ldap_5.0.7-3_amd64 + autogen_1:5.12-0.1_amd64 + autogrid_4.2.3-2_amd64 + autolog_0.40-13.1_amd64 + automoc_1.0~version-0.9.88-5_amd64 + autorun4linuxcd_0.13_amd64 + autossh_1.4c-1_amd64 + autotalent_0.2-2_amd64 + autotrace_0.31.1-16+b1_amd64 + avahi-autoipd_0.6.31-2_amd64 + avahi-daemon_0.6.31-2_amd64 + avahi-dbg_0.6.31-2_amd64 + avahi-dnsconfd_0.6.31-2_amd64 + avahi-ui-utils_0.6.31-2_amd64 + avahi-utils_0.6.31-2_amd64 + avarice_2.11-1_amd64 + avce00_2.0.0-2_amd64 + avfs_1.0.0-4_amd64 + aview_1.3.0rc1-9_amd64 + avinfo_1.0.a15+20090102-1_amd64 + avogadro_1.0.3-5_amd64 + avr-evtd_1.7.7-2_amd64 + avra_1.2.3a-1_amd64 + avrdude_5.11.1-1_amd64 + avrp_1.0beta3-7_amd64 + avrprog_0.2.2-2_amd64 + awardeco_0.2-3.1_amd64 + away_0.9.5-3_amd64 + aweather_0.7-1_amd64 + awesfx_0.5.1a-1.1_amd64 + awesome_3.4.13-1_amd64 + awffull_3.10.2-1_amd64 + ax25-node_0.3.2-7.4_amd64 + ax25-tools_0.0.10-rc2+cvs20120204-3_amd64 + ax25-xtools_0.0.10-rc2+cvs20120204-3_amd64 + axel_2.4-1_amd64 + axel-dbg_2.4-1_amd64 + axiom_20120501-1_amd64 + axiom-graphics_20120501-1_amd64 + axiom-hypertex_20120501-1_amd64 + aylet_0.5-3_amd64 + aylet-gtk_0.5-3_amd64 + ayttm_0.6.3-3_amd64 + azr3-jack_1.2.3-1_amd64 + babeld_1.3.1-1_amd64 + backuppc_3.2.1-4_amd64 + bacula-common_5.2.6+dfsg-9_amd64 + bacula-common-dbg_5.2.6+dfsg-9_amd64 + bacula-common-mysql_5.2.6+dfsg-9_amd64 + bacula-common-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-pgsql_5.2.6+dfsg-9_amd64 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3_5.2.6+dfsg-9_amd64 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-console_5.2.6+dfsg-9_amd64 + bacula-console-dbg_5.2.6+dfsg-9_amd64 + bacula-console-qt_5.2.6+dfsg-9_amd64 + bacula-console-qt-dbg_5.2.6+dfsg-9_amd64 + bacula-director-common_5.2.6+dfsg-9_amd64 + bacula-director-common-dbg_5.2.6+dfsg-9_amd64 + bacula-director-mysql_5.2.6+dfsg-9_amd64 + bacula-director-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-pgsql_5.2.6+dfsg-9_amd64 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3_5.2.6+dfsg-9_amd64 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-fd_5.2.6+dfsg-9_amd64 + bacula-fd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd_5.2.6+dfsg-9_amd64 + bacula-sd-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-mysql_5.2.6+dfsg-9_amd64 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql_5.2.6+dfsg-9_amd64 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3_5.2.6+dfsg-9_amd64 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_amd64 + bacula-traymonitor_5.2.6+dfsg-9_amd64 + bacula-traymonitor-dbg_5.2.6+dfsg-9_amd64 + balance_3.42-1_amd64 + balder2d_1.0-1.1+b3_amd64 + ballview_1.4.1+20111206-4_amd64 + ballview-dbg_1.4.1+20111206-4_amd64 + ballz_1.0.2-1+b1_amd64 + ballz-dbg_1.0.2-1+b1_amd64 + balsa_2.4.12-1_amd64 + balsa-dbg_2.4.12-1_amd64 + bam_0.4.0-3_amd64 + bamf-dbg_0.2.118-1_amd64 + bamfdaemon_0.2.118-1_amd64 + bandwidthcalc_0.2-1_amd64 + bandwidthd_2.0.1+cvs20090917-5_amd64 + bandwidthd-pgsql_2.0.1+cvs20090917-5_amd64 + bangarang_2.1-2_amd64 + banshee_2.4.1-3+b1_amd64 + banshee-dbg_2.4.1-3+b1_amd64 + banshee-extension-lastfmfingerprint_2.4.0-1_amd64 + banshee-extension-lirc_2.4.0-1_amd64 + banshee-extension-mirage_2.4.0-1_amd64 + banshee-meego_2.4.1-3+b1_amd64 + baobab_3.4.1-1_amd64 + bar_1.11.0+debian-4_amd64 + barcode_0.98+debian-9_amd64 + barcode-dbg_0.98+debian-9_amd64 + bareftp_0.3.9-1+b1_amd64 + barnowl_1.6.2-1.1+b1_amd64 + barrage_1.0.3-1_amd64 + barry-util_0.18.3-5_amd64 + barry-util-dbg_0.18.3-5_amd64 + barrybackup-gui_0.18.3-5_amd64 + barrybackup-gui-dbg_0.18.3-5_amd64 + barrydesktop_0.18.3-5_amd64 + barrydesktop-dbg_0.18.3-5_amd64 + base-files_7.1wheezy4_amd64 + base-passwd_3.5.26_amd64 + bash_4.2+dfsg-0.1_amd64 + bash-builtins_4.2+dfsg-0.1_amd64 + bash-static_4.2+dfsg-0.1_amd64 + basic256_0.9.6.69a-1_amd64 + basket_1.81-3_amd64 + bastet_0.43-2.1+b1_amd64 + batctl_2012.1.0-1_amd64 + batctl-dbg_2012.1.0-1_amd64 + batmand_0.3.2-12_amd64 + batmand-dbg_0.3.2-12_amd64 + batmon.app_0.6-1_amd64 + battery-stats_0.3.6-1_amd64 + battleball_2.0-17_amd64 + baycomepp_0.10-12.2_amd64 + baycomusb_0.10-12.1_amd64 + bb_1.3rc1-8.1_amd64 + bbe_0.2.2-1_amd64 + bbmail_0.8.3-6_amd64 + bbpager_0.4.7-3_amd64 + bbrun_1.6-6_amd64 + bbtime_0.1.5-12_amd64 + bc_1.06.95-2+b1_amd64 + bcc_0.16.17-3.1_amd64 + bchunk_1.2.0-12_amd64 + bcpp_0.0.20050725-2_amd64 + bcrelay_1.3.4-5.2_amd64 + bcron_0.09-13_amd64 + bdfresize_1.5-6_amd64 + beanstalkd_1.4.6-5_amd64 + bear-factory_0.6.0-1+b1_amd64 + beast_0.7.4-5_amd64 + beav_1:1.40-18_amd64 + bedtools_2.16.1-1_amd64 + beef_0.0.6-2_amd64 + beep_1.3-3+b1_amd64 + berusky_1.4-1_amd64 + betaradio_1.4-1_amd64 + between_6+dfsg1-2_amd64 + bfbtester_2.0.1-7.1_amd64 + bibclean_2.11.4.1-4_amd64 + bibcursed_2.0.0-6_amd64 + bible-kjv_4.26_amd64 + bibledit-bibletime_1.1.1-1_amd64 + bibledit-gtk_4.6-1_amd64 + bibledit-xiphos_1.1.1-1_amd64 + bibletime_2.9.1-2_amd64 + bibtexconv_0.8.20-1_amd64 + bibtool_2.55+ds-1_amd64 + bibutils_4.12-5_amd64 + bidentd_1.1.4-1.1_amd64 + bidiv_1.5-4_amd64 + biff_1:0.17.pre20000412-5_amd64 + billard-gl_1.75-11_amd64 + biloba_0.9.3-4_amd64 + bin86_0.16.17-3.1_amd64 + binclock_1.5-6_amd64 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + bindfs_1.10.3-2_amd64 + binfmt-support_2.0.12_amd64 + binfmtc_0.17-1_amd64 + bing_1.1.3-2_amd64 + biniax2_1.30-1_amd64 + binkd_0.9.11-1.1_amd64 + bino_1.4.0-1_amd64 + bino-dbg_1.4.0-1_amd64 + binutils_2.22-8_amd64 + binutils-avr_2.20.1-3_amd64 + binutils-dev_2.22-8_amd64 + binutils-gold_2.22-8_amd64 + binutils-h8300-hms_2.16.1-8_amd64 + binutils-m68hc1x_1:2.18-3.2_amd64 + binutils-mingw-w64-i686_2.22-8+2+b1_amd64 + binutils-mingw-w64-x86-64_2.22-8+2+b1_amd64 + binutils-msp430_2.22~msp20120406-2_amd64 + binutils-multiarch_2.22-8_amd64 + binutils-z80_2.22-3+b1_amd64 + biosig-tools_1.3.0-2_amd64 + biosquid_1.9g+cvs20050121-2_amd64 + biosquid-dev_1.9g+cvs20050121-2_amd64 + bip_0.8.8-2_amd64 + bird_1.3.7-1_amd64 + bird-dbg_1.3.7-1_amd64 + bird6_1.3.7-1_amd64 + birthday_1.6.2-3_amd64 + bisho_0.27.2+git20111122.9e68ef3d-1_amd64 + bison_1:2.5.dfsg-2.1_amd64 + bison++_1.21.11-3_amd64 + bisonc++_4.01.00-1_amd64 + bist_0.5.2-1_amd64 + bitlbee_3.0.5-1.2_amd64 + bitlbee-libpurple_3.0.5-1.2_amd64 + bitlbee-plugin-otr_3.0.5-1.2_amd64 + bitmeter_1.2-3_amd64 + bitpim-lib_1.0.7+dfsg1-3_amd64 + bitstormlite_0.2q-3_amd64 + bkhive_1.1.1-1_amd64 + black-box_1.4.8-2_amd64 + blackbox_0.70.1-13_amd64 + blacs-mpi-test_1.1-31_amd64 + blacs-pvm-dev_1.1-21_amd64 + blacs-pvm-test_1.1-21_amd64 + blacs1-pvm_1.1-21_amd64 + blahtexml_0.9-1.1_amd64 + blast2_1:2.2.26.20120620-2_amd64 + blcr-testsuite_0.8.5-2_amd64 + blcr-util_0.8.5-2_amd64 + bld_0.3.4.1-4_amd64 + bld-postfix_0.3.4.1-4_amd64 + bld-tools_0.3.4.1-4_amd64 + blender_2.63a-1_amd64 + blender-dbg_2.63a-1_amd64 + blepvco_0.1.0-3_amd64 + blinken_4:4.8.4-1_amd64 + bliss_0.72-4_amd64 + blktap-dev_2.0.90-1_amd64 + blktap-dkms_2.0.91-1_amd64 + blktap-utils_2.0.90-1_amd64 + blktool_4-6.1_amd64 + blktrace_1.0.1-2.1_amd64 + blobandconquer_1.11-dfsg+20-1_amd64 + blobby_1.0~rc1-2_amd64 + blobby-server_1.0~rc1-2_amd64 + bloboats_1.0.1.dsfg-3_amd64 + blobwars_1.19-2_amd64 + blockattack_1.4.1+ds1-2.1_amd64 + blockout2_2.4+dfsg1-6_amd64 + blocks-of-the-undead_1.0-5_amd64 + blogilo_4:4.4.11.1+l10n-3+b1_amd64 + blop_0.2.8-6_amd64 + blt_2.4z-4.2_amd64 + blt-dev_2.4z-4.2_amd64 + bluedevil_1.2.3-1_amd64 + bluefish_2.2.3-4_amd64 + bluefish-dbg_2.2.3-4_amd64 + bluefish-plugins_2.2.3-4_amd64 + blueman_1.23-1_amd64 + bluemon_1.4-6_amd64 + bluetile_0.6-1_amd64 + bluez_4.99-2_amd64 + bluez-alsa_4.99-2_amd64 + bluez-compat_4.99-2_amd64 + bluez-cups_4.99-2_amd64 + bluez-dbg_4.99-2_amd64 + bluez-gstreamer_4.99-2_amd64 + bluez-hcidump_2.4-1_amd64 + bluez-pcmcia-support_4.99-2_amd64 + bluez-tools_0.1.38+git662e-3_amd64 + bmf_0.9.4-9_amd64 + bmon_2.0.1-3_amd64 + bnfc_2.4.2.0-2_amd64 + boa_0.94.14rc21-3.1_amd64 + boats_201204-1_amd64 + bobot++_1:1.97-10.4_amd64 + bochs_2.4.6-5_amd64 + bochs-sdl_2.4.6-5_amd64 + bochs-svga_2.4.6-5_amd64 + bochs-term_2.4.6-5_amd64 + bochs-wx_2.4.6-5_amd64 + bochs-x_2.4.6-5_amd64 + bogl-bterm_0.1.18-8+b1_amd64 + bognor-regis_0.6.12+git20101007.02c25268-7_amd64 + bogofilter_1.2.2+dfsg1-2_amd64 + bogofilter-bdb_1.2.2+dfsg1-2_amd64 + bogofilter-sqlite_1.2.2+dfsg1-2_amd64 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_amd64 + boinc-app-examples_7.0.27+dfsg-5_amd64 + boinc-client_7.0.27+dfsg-5_amd64 + boinc-dbg_7.0.27+dfsg-5_amd64 + boinc-dev_7.0.27+dfsg-5_amd64 + boinc-manager_7.0.27+dfsg-5_amd64 + boinc-server-maker_7.0.27+dfsg-5_amd64 + bombardier_0.8.3+nmu1_amd64 + bomber_4:4.8.4-3_amd64 + bomberclone_0.11.9-4_amd64 + bomstrip_9-6_amd64 + bonnie++_1.96_amd64 + boolector_1.4.ffc2089.100608-1_amd64 + boolstuff_0.1.12-3_amd64 + boolstuff-dev_0.1.12-3_amd64 + bootchart2_0.14.4-3_amd64 + booth_0.1.0-1_amd64 + booth-pacemaker_0.1.0-1_amd64 + bootlogd_2.88dsf-41+deb7u1_amd64 + bootp_2.4.3-18_amd64 + bootparamd_0.17-9_amd64 + bootpc_0.64-7_amd64 + bopm_3.1.3-3_amd64 + bosh_0.6-6_amd64 + boswars_2.6.1-2_amd64 + botan1.10-dbg_1.10.5-1_amd64 + bottlerocket_0.05b3-14.1_amd64 + bovo_4:4.8.4-3_amd64 + bowtie_0.12.7-3_amd64 + bowtie2_2.0.0-beta6-3_amd64 + boxbackup-client_0.11.1~r2837-1_amd64 + boxbackup-server_0.11.1~r2837-1_amd64 + boxes_1.0.1a-2.3_amd64 + boxshade_3.3.1-7+wheezy1_amd64 + bozohttpd_20111118-1_amd64 + bplay_0.991-10_amd64 + bppphyview_0.2.1-1_amd64 + bppsuite_0.7.0-1_amd64 + br2684ctl_1:2.5.1-1.5_amd64 + braindump_1:2.4.4-3_amd64 + brandy_1.20~pre5-4_amd64 + brasero_3.4.1-4_amd64 + brasero-cdrkit_3.4.1-4_amd64 + brewtarget_1.2.4+dfsg-1.1_amd64 + brickos_0.9.0.dfsg-6_amd64 + bridge-utils_1.5-6_amd64 + brightside_1.4.0-4.1_amd64 + briquolo_0.5.7-4_amd64 + bristol_0.60.10-3_amd64 + brltty_4.4-10+deb7u1_amd64 + brltty-dbg_4.4-10+deb7u1_amd64 + brltty-espeak_4.4-10+deb7u1_amd64 + brltty-flite_4.4-10+deb7u1_amd64 + brltty-speechd_4.4-10+deb7u1_amd64 + brltty-x11_4.4-10+deb7u1_amd64 + browser-history_2.8-15_amd64 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + browser-plugin-lightspark_0.6.0.1-2_amd64 + browser-plugin-packagekit_0.7.6-3_amd64 + browser-plugin-vlc_2.0.0-2_amd64 + brp-pacu_2.1.1+git20110314~repack1-2_amd64 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_amd64 + brutalchess_0.5.2+dfsg-4_amd64 + brutefir_1.0k-2_amd64 + bs2b-ladspa_0.9.1-3_amd64 + bsd-mailx_8.1.2-0.20111106cvs-1_amd64 + bsdcpio_3.0.4-3+nmu1_amd64 + bsdgames_2.17-21_amd64 + bsdiff_4.3-14_amd64 + bsdmainutils_9.0.3_amd64 + bsdtar_3.0.4-3+nmu1_amd64 + bsdutils_1:2.20.1-5.3_amd64 + bse-alsa_0.7.4-5_amd64 + bsh-gcj_2.0b4-12_amd64 + bsnes_0.088-5_amd64 + btag_1.1.3-1+b1_amd64 + btanks_0.9.8083-4_amd64 + bti_032-1_amd64 + btrfs-tools_0.19+20120328-7.1_amd64 + btrfs-tools-dbg_0.19+20120328-7.1_amd64 + btscanner_2.1-5.1_amd64 + btyacc_3.0-5_amd64 + bubblefishymon_0.6.4-5_amd64 + buffer_1.19-11_amd64 + buffy_1.5-1_amd64 + bugsquish_0.0.6-7_amd64 + buici-clock_0.4.9.2_amd64 + build-essential_11.5_amd64 + buildapp_1.4.2-1_amd64 + buildtorrent_0.8-4_amd64 + bumprace_1.5.4-1_amd64 + bup_0.25~git2011.11.04-5.1_amd64 + burgerspace_1.9.0-4_amd64 + burp_1.3.8-1_amd64 + burp-dbg_1.3.8-1_amd64 + busybox_1:1.20.0-7_amd64 + busybox-static_1:1.20.0-7_amd64 + buthead_1.1-2_amd64 + buzztard_0.5.0-4_amd64 + buzztard-bsl_0.5.0-2.1_amd64 + bvi_1.3.2-2_amd64 + bwa_0.6.2-1_amd64 + bwbar_1.2.3-2_amd64 + bwbasic_2.20pl2-11_amd64 + bwm-ng_0.6-3.1_amd64 + bximage_2.4.6-5_amd64 + byacc_20120115-1_amd64 + byacc-j_1.15-1_amd64 + bygfoot_2.3.2-1_amd64 + byzanz_0.2.2+git22.10.2011-1.3_amd64 + bzflag-client_2.0.16.20100405+nmu1_amd64 + bzflag-server_2.0.16.20100405+nmu1_amd64 + bzip2_1.0.6-4_amd64 + c-icap_1:0.1.6-1.1_amd64 + c-repl_0.0.20071223-1_amd64 + c2hs_0.16.3-2_amd64 + cabal-debian_1.25-1_amd64 + cabal-install_0.14.0-2_amd64 + cabextract_1.4-3_amd64 + cableswig_0.1.0+cvs20111009-1_amd64 + caca-utils_0.99.beta18-1_amd64 + cachefilesd_0.9-3.1_amd64 + cacti-spine_0.8.8a-1_amd64 + cadabra_1.29-1_amd64 + cadaver_0.23.3-1_amd64 + cain-solvers_1.9-4_amd64 + cairo-5c_1.8.1_amd64 + cairo-clock_0.3.4-2_amd64 + cairo-dock_3.0.0-2+deb7u1_amd64 + cairo-dock-alsamixer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-animated-icons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-cairo-penguin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clipper-plug-in_3.0.0-1+b1_amd64 + cairo-dock-clock-plug-in_3.0.0-1+b1_amd64 + cairo-dock-core_3.0.0-2+deb7u1_amd64 + cairo-dock-dbus-plug-in_3.0.0-1+b1_amd64 + cairo-dock-desklet-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dev_3.0.0-2+deb7u1_amd64 + cairo-dock-dialog-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dnd2share-plug-in_3.0.0-1+b1_amd64 + cairo-dock-drop-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-dustbin-plug-in_3.0.0-1+b1_amd64 + cairo-dock-folders-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gmenu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-gnome-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-icon-effect-plug-in_3.0.0-1+b1_amd64 + cairo-dock-illusion-plug-in_3.0.0-1+b1_amd64 + cairo-dock-impulse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-kde-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1+b1_amd64 + cairo-dock-logout-plug-in_3.0.0-1+b1_amd64 + cairo-dock-mail-plug-in_3.0.0-1+b1_amd64 + cairo-dock-messaging-menu-plug-in_3.0.0-1+b1_amd64 + cairo-dock-motion-blur-plug-in_3.0.0-1+b1_amd64 + cairo-dock-musicplayer-plug-in_3.0.0-1+b1_amd64 + cairo-dock-netspeed-plug-in_3.0.0-1+b1_amd64 + cairo-dock-plug-ins_3.0.0-1+b1_amd64 + cairo-dock-powermanager-plug-in_3.0.0-1+b1_amd64 + cairo-dock-quick-browser-plug-in_3.0.0-1+b1_amd64 + cairo-dock-recent-events-plug-in_3.0.0-1+b1_amd64 + cairo-dock-remote-control-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rendering-plug-in_3.0.0-1+b1_amd64 + cairo-dock-rssreader-plug-in_3.0.0-1+b1_amd64 + cairo-dock-shortcuts-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showdesktop-plug-in_3.0.0-1+b1_amd64 + cairo-dock-showmouse-plug-in_3.0.0-1+b1_amd64 + cairo-dock-slider-plug-in_3.0.0-1+b1_amd64 + cairo-dock-stack-plug-in_3.0.0-1+b1_amd64 + cairo-dock-switcher-plug-in_3.0.0-1+b1_amd64 + cairo-dock-system-monitor-plug-in_3.0.0-1+b1_amd64 + cairo-dock-systray-plug-in_3.0.0-1+b1_amd64 + cairo-dock-terminal-plug-in_3.0.0-1+b1_amd64 + cairo-dock-tomboy-plug-in_3.0.0-1+b1_amd64 + cairo-dock-toons-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weather-plug-in_3.0.0-1+b1_amd64 + cairo-dock-weblets-plug-in_3.0.0-1+b1_amd64 + cairo-dock-wifi-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xfce-integration-plug-in_3.0.0-1+b1_amd64 + cairo-dock-xgamma-plug-in_3.0.0-1+b1_amd64 + cairo-perf-utils_1.12.2-3_amd64 + calcoo_1.3.18-3_amd64 + calcurse_2.9.2-1_amd64 + calendar-google-provider_10.0.12-1_amd64 + calendar-timezones_10.0.12-1_amd64 + calendarserver_3.2+dfsg-4_amd64 + calf-plugins_0.0.18.6-5_amd64 + calgebra_4:4.8.4-2_amd64 + calibre-bin_0.8.51+dfsg1-0.1_amd64 + calife_1:3.0.1-4_amd64 + calligra-dbg_1:2.4.4-3_amd64 + calligra-libs_1:2.4.4-3_amd64 + calligra-reports-map-element_1:2.4.4-3_amd64 + calligra-reports-web-element_1:2.4.4-3_amd64 + calligraflow_1:2.4.4-3_amd64 + calligramobile_1:2.4.4-3_amd64 + calligraplan_1:2.4.4-3_amd64 + calligrasheets_1:2.4.4-3_amd64 + calligrastage_1:2.4.4-3_amd64 + calligrawords_1:2.4.4-3_amd64 + cam_1.05-8_amd64 + cameleon_1.9.21-2+b1_amd64 + camera.app_0.8.0-9+b2_amd64 + camlidl_1.05-14_amd64 + camlp4_3.12.1-4_amd64 + camlp4-extra_3.12.1-4_amd64 + camlp5_6.06-1_amd64 + camorama_0.19-2.2_amd64 + canna_3.7p3-11_amd64 + canna-utils_3.7p3-11_amd64 + canto_0.7.10-4_amd64 + cantor_4:4.8.4-2_amd64 + cantor-backend-kalgebra_4:4.8.4-2_amd64 + cantor-backend-maxima_4:4.8.4-2_amd64 + cantor-backend-octave_4:4.8.4-2_amd64 + cantor-backend-qalculate_4:4.8.4-2_amd64 + cantor-backend-r_4:4.8.4-2_amd64 + cantor-backend-sage_4:4.8.4-2_amd64 + cantor-backend-scilab_4:4.8.4-2_amd64 + cantor-dbg_4:4.8.4-2_amd64 + capi4hylafax_1:01.03.00.99.svn.300-18_amd64 + capiutils_1:3.25+dfsg1-3.3~deb7u1_amd64 + caps_0.4.2-1_amd64 + caret_5.6.4~dfsg.1-3_amd64 + carettah_0.1.2-1_amd64 + catcodec_1.0.5-1_amd64 + catdoc_0.94.4-1.1_amd64 + catdvi_0.14-12.1_amd64 + cavezofphear_0.5.1-1_amd64 + cb2bib_1.4.8-1_amd64 + cba_0.3.6-4_amd64 + cbflib-bin_0.7.9.1-3_amd64 + cbm_0.1-9_amd64 + cbmc_4.1-1.2_amd64 + cbrpager_0.9.22-1_amd64 + cc1111_2.9.0-2_amd64 + ccache_3.1.7-1_amd64 + ccal_4.0-3_amd64 + ccbuild_2.0.3-1+b1_amd64 + cccc_1:3.1.4-4_amd64 + cccd_0.3beta4-6.2_amd64 + ccd2iso_0.3-3_amd64 + cciss-vol-status_1.09-2+deb7u1_amd64 + cclive_0.7.9-1_amd64 + ccontrol_1.0-1_amd64 + cconv_0.6.2-1_amd64 + ccrypt_1.9-4_amd64 + ccze_0.2.1-2_amd64 + cd-discid_1.3.1-1_amd64 + cd-hit_4.6-2012-04-25-1_amd64 + cd5_0.1-3_amd64 + cdargs_1.35-9_amd64 + cdbackup_0.7.0-5_amd64 + cdcat_1.8-1_amd64 + cdcd_0.6.6-13.1_amd64 + cdcd-dbg_0.6.6-13.1_amd64 + cdck_0.7.0-5_amd64 + cdcover_0.9.1-10_amd64 + cdde_0.3.1-1_amd64 + cde_0.1-1_amd64 + cdebconf_0.182_amd64 + cdebconf-gtk_0.182_amd64 + cdebootstrap_0.5.9_amd64 + cdebootstrap-static_0.5.9_amd64 + cdecl_2.5-11_amd64 + cdo_1.5.4+dfsg.1-5_amd64 + cdparanoia_3.10.2+debian-10.1_amd64 + cdparanoia-dbg_3.10.2+debian-10.1_amd64 + cdpr_2.4-1_amd64 + cdrdao_1:1.2.3-0.3_amd64 + cdrskin_1.2.2-2_amd64 + cdtool_2.1.8-release-2_amd64 + cduce_0.5.5-1_amd64 + cdw_0.7.1-1_amd64 + cec-utils_1.6.2-1.1_amd64 + ceferino_0.97.8-3.1_amd64 + celestia-glut_1.6.1+dfsg-2_amd64 + celestia-gnome_1.6.1+dfsg-2_amd64 + cellwriter_1.3.4-1.1_amd64 + cenon.app_3.93-1.2_amd64 + centerim_4.22.10-2+b1_amd64 + centerim-fribidi_4.22.10-2+b1_amd64 + centerim-utf8_4.22.10-2+b1_amd64 + certmonger_0.57-1_amd64 + cervisia_4:4.8.4+dfsg-1_amd64 + ceve_1.4-2+b2_amd64 + cfengine2_2.2.10-5_amd64 + cfengine2-dbg_2.2.10-5_amd64 + cfengine3_3.2.4-2+nmu1_amd64 + cfengine3-dbg_3.2.4-2+nmu1_amd64 + cfingerd_1.4.3-3.1_amd64 + cflow_1:1.4+dfsg1-2_amd64 + cfourcc_0.1.2-8_amd64 + cgdb_0.6.6-2_amd64 + cgi-mapserver_6.0.1-3.2+deb7u2_amd64 + cgiemail_1.6-37_amd64 + cgilib_0.6-1_amd64 + cgns-convert_3.1.3.4-1+b1_amd64 + cgoban_1.9.14-17_amd64 + cgroup-bin_0.38-1_amd64 + charmap.app_0.2-11+b1_amd64 + charybdis_3.3.0-7.1_amd64 + chase_0.5.2-4_amd64 + chasen_2.4.5-6_amd64 + chasen-dictutils_2.4.5-6_amd64 + check_0.9.8-2_amd64 + check-mk-agent_1.1.12p7-1_amd64 + check-mk-agent-logwatch_1.1.12p7-1_amd64 + check-mk-config-icinga_1.1.12p7-1_amd64 + check-mk-config-nagios3_1.1.12p7-1_amd64 + check-mk-livestatus_1.1.12p7-1_amd64 + check-mk-multisite_1.1.12p7-1_amd64 + check-mk-server_1.1.12p7-1_amd64 + checkinstall_1.6.2-4_amd64 + checkpolicy_2.1.8-2_amd64 + checkpw_1.02-1_amd64 + cheese_3.4.2-2_amd64 + chemeq_2.9-1_amd64 + chemtool_1.6.13-1_amd64 + chiark-really_4.2.0_amd64 + chiark-rwbuffer_4.2.0_amd64 + chiark-utils-bin_4.2.0_amd64 + chicken-bin_4.7.0-1_amd64 + chimera2_2.0a19-7_amd64 + chipmunk-dev_5.3.4-1_amd64 + chipw_2.0.6-1.1_amd64 + chirp_0.1.12-1_amd64 + chkrootkit_0.49-4.1_amd64 + chktex_1.6.4-4_amd64 + chntpw_0.99.6-2_amd64 + choosewm_0.1.6-3_amd64 + choqok_1.3-1_amd64 + chordii_4.3+repack-2_amd64 + chromium_31.0.1650.63-1~deb7u1_amd64 + chromium-bsu_0.9.15-1_amd64 + chromium-dbg_31.0.1650.63-1~deb7u1_amd64 + chrony_1.24-3.1+deb7u2_amd64 + chrootuid_1.3-6_amd64 + chrpath_0.13-2_amd64 + chuck_1.2.0.8.dfsg-1.4_amd64 + cifs-utils_2:5.5-1_amd64 + circuslinux_1.0.3-28_amd64 + citadel-client_8.14-2_amd64 + citadel-dbg_8.14-2_amd64 + citadel-mta_8.14-2_amd64 + citadel-server_8.14-2_amd64 + citadel-webcit_8.14-dfsg-1_amd64 + ckermit_302-3_amd64 + cksfv_1.3.14-2_amd64 + cl-clx-sbcl_0.7.4-5_amd64 + cl-sql-mysql_6.2.0-1+b1_amd64 + cl-sql-uffi_6.2.0-1+b1_amd64 + cl-uffi-tests_2.1.2-1_amd64 + clam-chordata_1.0.0-2_amd64 + clam-networkeditor_1.4.0-3.1_amd64 + clamav_0.97.8+dfsg-1_amd64 + clamav-daemon_0.97.8+dfsg-1_amd64 + clamav-dbg_0.97.8+dfsg-1_amd64 + clamav-freshclam_0.97.8+dfsg-1_amd64 + clamav-milter_0.97.8+dfsg-1_amd64 + clamsmtp_1.10-10_amd64 + clamz_0.5-1_amd64 + clang_1:3.0-6.2_amd64 + clasp_2.0.6-2_amd64 + claws-mail_3.8.1-2_amd64 + claws-mail-acpi-notifier_3.8.1-2_amd64 + claws-mail-address-keeper_3.8.1-2_amd64 + claws-mail-archiver-plugin_3.8.1-2_amd64 + claws-mail-attach-remover_3.8.1-2_amd64 + claws-mail-attach-warner_3.8.1-2_amd64 + claws-mail-bogofilter_3.8.1-2_amd64 + claws-mail-bsfilter-plugin_3.8.1-2_amd64 + claws-mail-clamd-plugin_3.8.1-2_amd64 + claws-mail-dbg_3.8.1-2_amd64 + claws-mail-extra-plugins-dbg_3.8.1-2_amd64 + claws-mail-fancy-plugin_3.8.1-2_amd64 + claws-mail-feeds-reader_3.8.1-2_amd64 + claws-mail-fetchinfo-plugin_3.8.1-2_amd64 + claws-mail-gdata-plugin_3.8.1-2_amd64 + claws-mail-html2-viewer_3.8.1-2_amd64 + claws-mail-mailmbox-plugin_3.8.1-2_amd64 + claws-mail-multi-notifier_3.8.1-2_amd64 + claws-mail-newmail-plugin_3.8.1-2_amd64 + claws-mail-perl-filter_3.8.1-2_amd64 + claws-mail-pgpinline_3.8.1-2_amd64 + claws-mail-pgpmime_3.8.1-2_amd64 + claws-mail-python-plugin_3.8.1-2_amd64 + claws-mail-smime-plugin_3.8.1-2_amd64 + claws-mail-spam-report_3.8.1-2_amd64 + claws-mail-spamassassin_3.8.1-2_amd64 + claws-mail-tnef-parser_3.8.1-2_amd64 + claws-mail-trayicon_3.8.1-2_amd64 + claws-mail-vcalendar-plugin_3.8.1-2_amd64 + cldump_0.11~dfsg-1_amd64 + clearsilver-dev_0.10.5-1.3_amd64 + clementine_1.0.1+dfsg-2+b1_amd64 + clex_3.15-1_amd64 + clif_0.93-9_amd64 + clinica_0.2.1~dfsg-1_amd64 + clinica-dev_0.2.1~dfsg-1_amd64 + clinica-plugins_0.2.1~dfsg-1_amd64 + cliofetion_2.2.0-1_amd64 + clipit_1.4.1-1_amd64 + clips_6.24-3_amd64 + cliquer_1.21-1_amd64 + clisp_1:2.49-8.1_amd64 + clisp-dev_1:2.49-8.1_amd64 + clisp-module-berkeley-db_1:2.49-8.1_amd64 + clisp-module-bindings-glibc_1:2.49-8.1_amd64 + clisp-module-clx_1:2.49-8.1_amd64 + clisp-module-dbus_1:2.49-8.1_amd64 + clisp-module-gdbm_1:2.49-8.1_amd64 + clisp-module-pcre_1:2.49-8.1_amd64 + clisp-module-postgresql_1:2.49-8.1_amd64 + clisp-module-rawsock_1:2.49-8.1_amd64 + clisp-module-wildcard_1:2.49-8.1_amd64 + clisp-module-zlib_1:2.49-8.1_amd64 + clonalframe_1.2-3_amd64 + cloog-isl_0.17.0-3_amd64 + cloog-ppl_0.15.11-4_amd64 + cloop-utils_2.6.39.2-1_amd64 + clustalo_1.1.0-1_amd64 + clustalw_2.1+lgpl-2_amd64 + clustalx_2.1+lgpl-2_amd64 + cluster-agents_1:1.0.3-4_amd64 + cluster-glue_1.0.9+hg2665-1_amd64 + cluster-glue-dev_1.0.9+hg2665-1_amd64 + clutter-1.0-tests_1.10.8-2_amd64 + clvm_2.02.95-8_amd64 + clzip_1.3-2_amd64 + clzip-dbg_1.3-2_amd64 + cmake_2.8.9-1_amd64 + cmake-curses-gui_2.8.9-1_amd64 + cmake-dbg_2.8.9-1_amd64 + cmake-qt-gui_2.8.9-1_amd64 + cman_3.0.12-3.2+deb7u2_amd64 + cmatrix_1.2a-4_amd64 + cmigemo_20110227-7_amd64 + cmis-client_0.1.0-1+b1_amd64 + cmospwd_5.0+dfsg-2_amd64 + cmt_1.16-1_amd64 + cmtk_2.2.2-2_amd64 + cmus_2.4.3-2_amd64 + cmus-plugin-ffmpeg_2.4.3-2_amd64 + cnee_3.13-1_amd64 + cntlm_0.92.3-1_amd64 + coala_1.0.1-5_amd64 + coccinelle_1.0.0~rc12.deb-5_amd64 + coco-cpp_20120102-1_amd64 + code-saturne_2.1.7-1_amd64 + code-saturne-bin_2.1.7-1_amd64 + code-saturne-include_2.1.7-1_amd64 + codeblocks_10.05-2.1_amd64 + codeblocks-contrib_10.05-2.1_amd64 + codeblocks-contrib-dbg_10.05-2.1_amd64 + codeblocks-dbg_10.05-2.1_amd64 + codeblocks-dev_10.05-2.1_amd64 + codegroup_19981025-6_amd64 + codfis_0.4.7-2_amd64 + coinor-csdp_6.1.1-1_amd64 + coinor-csdp-dbg_6.1.1-1_amd64 + coinor-libcbc-dev_2.5.0-3_amd64 + coinor-libcbc0_2.5.0-3_amd64 + coinor-libcbc0-dbg_2.5.0-3_amd64 + coinor-libcgl-dev_0.55.0-1.1_amd64 + coinor-libcgl0_0.55.0-1.1_amd64 + coinor-libcgl0-dbg_0.55.0-1.1_amd64 + coinor-libclp-dev_1.12.0-2.1_amd64 + coinor-libclp0_1.12.0-2.1_amd64 + coinor-libclp0-dbg_1.12.0-2.1_amd64 + coinor-libcoinutils-dev_2.6.4-3_amd64 + coinor-libcoinutils0_2.6.4-3_amd64 + coinor-libcoinutils0-dbg_2.6.4-3_amd64 + coinor-libdylp-dev_1.6.0-1.1_amd64 + coinor-libdylp0_1.6.0-1.1_amd64 + coinor-libdylp0-dbg_1.6.0-1.1_amd64 + coinor-libflopc++-dev_1.0.6-3.1_amd64 + coinor-libflopc++0_1.0.6-3.1_amd64 + coinor-libflopc++0-dbg_1.0.6-3.1_amd64 + coinor-libipopt-dev_3.10.2-1.1_amd64 + coinor-libipopt1_3.10.2-1.1_amd64 + coinor-libipopt1-dbg_3.10.2-1.1_amd64 + coinor-libosi-dev_0.103.0-1_amd64 + coinor-libosi0_0.103.0-1_amd64 + coinor-libosi0-dbg_0.103.0-1_amd64 + coinor-libsymphony-dev_5.2.4-1.2_amd64 + coinor-libsymphony0_5.2.4-1.2_amd64 + coinor-libsymphony0-dbg_5.2.4-1.2_amd64 + coinor-libvol-dev_1.1.7-1_amd64 + coinor-libvol0_1.1.7-1_amd64 + coinor-libvol0-dbg_1.1.7-1_amd64 + coinst_1.01-2_amd64 + coinst-viewer_1.01-2_amd64 + coldfire_0.2.2-2.3_amd64 + collatinus_10.0-3_amd64 + collectd_5.1.0-3_amd64 + collectd-core_5.1.0-3_amd64 + collectd-dbg_5.1.0-3_amd64 + collectd-utils_5.1.0-3_amd64 + colorcode_0.7.2-1_amd64 + colord_0.1.21-1_amd64 + colorhug-client_0.1.10-1_amd64 + colortail_0.3.3-1_amd64 + colrconv_0.99.3-4_amd64 + comerr-dev_2.1-1.42.5-1.1_amd64 + comgt_0.32-2_amd64 + comparepdf_1.0.1-1_amd64 + compartment_1.1.0-4_amd64 + compface_1:1.5.2-5_amd64 + composite_0.006.2+dfsg0-2_amd64 + composite-dbg_0.006.2+dfsg0-2_amd64 + concalc_0.9.2-2_amd64 + concordance_0.24-1.1_amd64 + condor_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_amd64 + condor-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + cone_0.89-1_amd64 + confclerk_0.5.5-1_amd64 + confget_1.03-1_amd64 + config-manager_0.4-2.1_amd64 + confluence_0.10.6-7_amd64 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_amd64 + conky-cli_1.9.0-2_amd64 + conky-std_1.9.0-2_amd64 + connect-proxy_1.101-1_amd64 + connectagram_1.0.1-1_amd64 + connman_1.0-1.1+wheezy1+b1_amd64 + connman-dev_1.0-1.1+wheezy1+b1_amd64 + conntrack_1:1.2.1-1_amd64 + conntrackd_1:1.2.1-1_amd64 + console-braille_1.3_amd64 + console-tools_1:0.2.3dbs-70_amd64 + console-tools-dev_1:0.2.3dbs-70_amd64 + consolekit_0.4.5-3.1_amd64 + conspy_1.8-2_amd64 + contacts_0.9-2+b2_amd64 + contextfree_2.2+dfsg1-2.1_amd64 + convert-pgn_0.29.6-2_amd64 + convlit_1.8-1_amd64 + cook_2.33-1_amd64 + cook-rsh_2.33-1_amd64 + cookietool_2.5-5_amd64 + coolkey_1.1.0-12_amd64 + coolmail_1.3-11_amd64 + coop-computing-tools_3.5.1-2_amd64 + coop-computing-tools-dev_3.5.1-2_amd64 + copyfs_1.0.1-4_amd64 + coq_8.3.pl4+dfsg-2_amd64 + coqide_8.3.pl4+dfsg-2_amd64 + coreutils_8.13-3.5_amd64 + coriander_2.0.1-1_amd64 + corkscrew_2.0-9_amd64 + corosync_1.4.2-3_amd64 + corosync-dbg_1.4.2-3_amd64 + corosync-dev_1.4.2-3_amd64 + cortina_0.7.3-1_amd64 + couchdb_1.2.0-5_amd64 + courier-authdaemon_0.63.0-6+b1_amd64 + courier-authlib_0.63.0-6+b1_amd64 + courier-authlib-dev_0.63.0-6+b1_amd64 + courier-authlib-ldap_0.63.0-6+b1_amd64 + courier-authlib-mysql_0.63.0-6+b1_amd64 + courier-authlib-pipe_0.63.0-6+b1_amd64 + courier-authlib-postgresql_0.63.0-6+b1_amd64 + courier-authlib-userdb_0.63.0-6+b1_amd64 + courier-base_0.68.2-1_amd64 + courier-faxmail_0.68.2-1_amd64 + courier-imap_4.10.0-20120615-1_amd64 + courier-imap-ssl_4.10.0-20120615-1_amd64 + courier-ldap_0.68.2-1_amd64 + courier-maildrop_0.68.2-1_amd64 + courier-mlm_0.68.2-1_amd64 + courier-mta_0.68.2-1_amd64 + courier-mta-ssl_0.68.2-1_amd64 + courier-pcp_0.68.2-1_amd64 + courier-pop_0.68.2-1_amd64 + courier-pop-ssl_0.68.2-1_amd64 + courier-ssl_0.68.2-1_amd64 + courier-webadmin_0.68.2-1_amd64 + couriergrey_0.3.2-1_amd64 + courierpassd_1.1.2-2_amd64 + covered_0.7.10-1_amd64 + cowbell_0.2.7.1-7_amd64 + cowbuilder_0.70_amd64 + cowdancer_0.70_amd64 + cp2k_2.2.426-8_amd64 + cpio_2.11+dfsg-0.1_amd64 + cpipe_3.0.1-1_amd64 + cpm_0.26-1_amd64 + cpmtools_2.13-1_amd64 + cpp_4:4.7.2-1_amd64 + cpp-4.4_4.4.7-2_amd64 + cpp-4.6_4.6.3-14_amd64 + cpp-4.7_4.7.2-5_amd64 + cppcheck_1.54-1_amd64 + cpphs_1.13.3-2+b1_amd64 + cpqarrayd_2.3-1.3_amd64 + cproto_4.7j-5_amd64 + cpu_1.4.3-11.3_amd64 + cpuburn_1.4a-3_amd64 + cpufreqd_2.4.2-2_amd64 + cpufrequtils_008-1_amd64 + cpuid_3.3-9_amd64 + cpulimit_1.7-1_amd64 + cpushare_0.48-4_amd64 + cqrlog_1.4.1-1_amd64 + crack_5.0a-9.3_amd64 + crack-attack_1.1.14-9.1_amd64 + crack-md5_5.0a-9.3_amd64 + cracklib-runtime_2.8.19-3_amd64 + cramfsprogs_1.1-6_amd64 + cramfsswap_1.4.1_amd64 + crash_6.0.6-1_amd64 + crashmail_0.71-4_amd64 + crashme_2.4-9_amd64 + crasm_1.5-1_amd64 + crawl_2:0.10.3-3_amd64 + crawl-tiles_2:0.10.3-3_amd64 + crda_1.1.2-1_amd64 + createfp_3.2.0-2_amd64 + cricket_1.0.5-19_amd64 + crimson_0.5.2-1_amd64 + criticalmass_1:1.0.0-1.5_amd64 + critterding_1.0-beta12.1-1.2_amd64 + crm114_20100106-3_amd64 + cron_3.0pl1-124_amd64 + cronolog_1.6.2+rpk-1_amd64 + cronutils_1.2-1_amd64 + crossfire-client_1.70.0-1_amd64 + crossfire-server_1.70.0-1_amd64 + crossroads_2.65-1.1_amd64 + crtmpserver_1.0~dfsg-3_amd64 + crtmpserver-apps_1.0~dfsg-3_amd64 + crtmpserver-dev_1.0~dfsg-3_amd64 + crtmpserver-libs_1.0~dfsg-3_amd64 + cruft_0.9.16_amd64 + cryptcat_20031202-4_amd64 + cryptkeeper_0.9.5-5.1_amd64 + cryptmount_4.3.1-1_amd64 + cryptsetup_2:1.4.3-4_amd64 + cryptsetup-bin_2:1.4.3-4_amd64 + cscope_15.7a-3.6_amd64 + csh_20110502-2_amd64 + csladspa_1:5.17.11~dfsg-3_amd64 + csmash_0.6.6-6.6_amd64 + csound_1:5.17.11~dfsg-3_amd64 + csound-gui_1:5.17.11~dfsg-3_amd64 + csound-utils_1:5.17.11~dfsg-3_amd64 + cssc_1.2.0-2_amd64 + cssed_0.4.0-4_amd64 + csstidy_1.4-3_amd64 + cstream_3.0.0-1_amd64 + csv2latex_0.18-2_amd64 + csvtool_1.2.2-1+b1_amd64 + csync2_1.34-2.2+b1_amd64 + ctdb_1.12+git20120201-4_amd64 + ctdb-dbg_1.12+git20120201-4_amd64 + ctn_3.0.6-13+b2_amd64 + ctn-dev_3.0.6-13+b2_amd64 + ctorrent_1.3.4.dnh3.3.2-4_amd64 + ctpl_0.3.3.dfsg-2_amd64 + ctsim_5.2.0-1.1_amd64 + ctwm_3.7-3.3_amd64 + cu_1.07-20_amd64 + cuba-partview_3.0+20111124-2_amd64 + cube2font_1.2-2_amd64 + cube2font-dbg_1.2-2_amd64 + cudf-tools_0.6.2-1_amd64 + cue2toc_0.4-5_amd64 + cuetools_1.3.1-12_amd64 + cultivation_9+dfsg1-1_amd64 + cups_1.5.3-5+deb7u1_amd64 + cups-bsd_1.5.3-5+deb7u1_amd64 + cups-client_1.5.3-5+deb7u1_amd64 + cups-dbg_1.5.3-5+deb7u1_amd64 + cups-filters_1.0.18-2.1_amd64 + cups-pdf_2.6.1-6_amd64 + cups-pk-helper_0.2.3-3_amd64 + cups-ppdc_1.5.3-5+deb7u1_amd64 + cupt_2.5.9_amd64 + curl_7.26.0-1+wheezy8_amd64 + curlftpfs_0.9.2-5_amd64 + curtain_0.1-1_amd64 + curves_0.8.19_amd64 + cutecom_0.22.0-2_amd64 + cutesdr_1.0.5-3_amd64 + cutils_1.6-3_amd64 + cutter_1.03-2_amd64 + cutter-gtk-support_1.1.7-1.2_amd64 + cutter-report-module_1.1.7-1.2_amd64 + cutter-testing-framework_1.1.7-1.2_amd64 + cutter-testing-framework-bin_1.1.7-1.2_amd64 + cutycapt_0.0~svn6-3_amd64 + cuyo_2.0.0brl1-1_amd64 + cvc3_2.4.1-4_amd64 + cvm_0.96-1+b1_amd64 + cvm-mysql_0.96-1+b1_amd64 + cvm-pgsql_0.96-1+b1_amd64 + cvs_2:1.12.13+real-9_amd64 + cvsd_1.0.24_amd64 + cvsgraph_1.7.0-1_amd64 + cvsps_2.1-6_amd64 + cvsservice_4:4.8.4+dfsg-1_amd64 + cvstrac_2.0.1-3_amd64 + cw_3.0.2-1_amd64 + cwcp_3.0.2-1_amd64 + cwdaemon_0.9.5-1_amd64 + cwebx_3.04-9_amd64 + cwiid-dbg_0.6.00+svn201-3+b1_amd64 + cwirc_2.0.0-5_amd64 + cxref_1.6d-6_amd64 + cycfx2prog_0.47-1_amd64 + cyclades-serial-client_0.92_amd64 + cyclist_0.1~alpha55-6_amd64 + cynthiune.app_0.9.5-14_amd64 + cyrus-clients-2.4_2.4.16-4+deb7u1_amd64 + cyrus-common-2.4_2.4.16-4+deb7u1_amd64 + cyrus-dev-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imapd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-imspd_1.8-3_amd64 + cyrus-murder-2.4_2.4.16-4+deb7u1_amd64 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_amd64 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_amd64 + cyrus-replication-2.4_2.4.16-4+deb7u1_amd64 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_amd64 + cython_0.15.1-2_amd64 + cython-dbg_0.15.1-2_amd64 + d-itg_2.8.1~rc1-1_amd64 + d52_3.4.1-1.1_amd64 + daa2iso_0.1.7e-1_amd64 + dacs_1.4.27b-2_amd64 + dact_0.8.42-4_amd64 + dadadodo_1.04-4_amd64 + daemon_0.6.4-1_amd64 + daemonfs_1.1-1_amd64 + daemonlogger_1.2.1-7_amd64 + daemontools_1:0.76-3_amd64 + dahdi_1:2.5.0.1-2_amd64 + daisy-player_7.1.1-1_amd64 + daisy-player-dbg_7.1.1-1_amd64 + dancer-ircd_1.0.36-8.1_amd64 + dancer-xml_0.8.2.1-3_amd64 + dangen_0.5-2_amd64 + dans-gdal-scripts_0.18-1.1+b2_amd64 + dansguardian_2.10.1.1-5_amd64 + dante-client_1.1.19.dfsg-3+b3_amd64 + dante-server_1.1.19.dfsg-3+b3_amd64 + dapl2-utils_2.0.19-1.1_amd64 + dar_2.4.5.debian.1-1_amd64 + darcs_2.8.1-1+b1_amd64 + dares_0.6.5-7_amd64 + darkice_1.0-1_amd64 + darkplaces_0~20110628+svn11619-3_amd64 + darkplaces-dbg_0~20110628+svn11619-3_amd64 + darkplaces-server_0~20110628+svn11619-3_amd64 + darksnow_0.6.1-3_amd64 + darkstat_3.0.715-1_amd64 + darktable_1.0.4-1+deb7u2_amd64 + darktable-dbg_1.0.4-1+deb7u2_amd64 + darnwdl_0.5-2_amd64 + darts_0.32-11_amd64 + das-watchdog_0.9.0-2_amd64 + dash_0.5.7-3_amd64 + dasher_4.11-2_amd64 + datapm_0.10-1.1_amd64 + datefudge_1.17_amd64 + dates_0.4.8-3+b1_amd64 + dav-text_0.8.5-5_amd64 + davfs2_1.4.6-1.1+deb7u1_amd64 + dawgdic-tools_0.4.3-1_amd64 + db4.7-util_4.7.25-21_amd64 + db4.8-util_4.8.30-12_amd64 + db5.1-sql-util_5.1.29-5_amd64 + db5.1-util_5.1.29-5_amd64 + dbacl_1.12-2.1_amd64 + dballe_5.18-1_amd64 + dbar_0.0.20100524-3_amd64 + dbeacon_0.3.9.3-2_amd64 + dbench_4.0-2_amd64 + dbf2mysql_1.14a-3.1+b2_amd64 + dbmix_0.9.8-6.2_amd64 + dbskkd-cdb_1:2.00-6_amd64 + dbus_1.6.8-1+deb7u1_amd64 + dbus-1-dbg_1.6.8-1+deb7u1_amd64 + dbus-x11_1.6.8-1+deb7u1_amd64 + dbview_1.0.4-1_amd64 + dc_1.06.95-2+b1_amd64 + dc-qt_0.2.0.alpha-4.1+b3_amd64 + dc3dd_7.1.614-1_amd64 + dcap_2.47.6-2_amd64 + dcap-dbg_2.47.6-2_amd64 + dcap-dev_2.47.6-2_amd64 + dcap-tunnel-gsi_2.47.6-2_amd64 + dcap-tunnel-krb_2.47.6-2_amd64 + dcap-tunnel-ssl_2.47.6-2_amd64 + dcap-tunnel-telnet_2.47.6-2_amd64 + dcfldd_1.3.4.1-2.1_amd64 + dchroot_1.6.4-4_amd64 + dchroot-dsa_1.6.4-4_amd64 + dclock_2.2.2-6_amd64 + dcmtk_3.6.0-12_amd64 + dcmtk-www_3.6.0-12_amd64 + dconf-gsettings-backend_0.12.1-3_amd64 + dconf-service_0.12.1-3_amd64 + dconf-tools_0.12.1-3_amd64 + dcraw_8.99-1+b2_amd64 + dctrl-tools_2.22.2_amd64 + ddccontrol_0.4.2-10_amd64 + ddd_1:3.3.12-4_amd64 + ddns3-client_1.8-12_amd64 + ddpt_0.92-1_amd64 + dds_2.1.2+ddd105-1_amd64 + dds2tar_2.5.2-4_amd64 + deal_3.1.9-3_amd64 + dealer_0.20040530-4_amd64 + deb-gview_0.2.9_amd64 + debconf-kde-dbg_0.2-2_amd64 + debconf-kde-helper_0.2-2_amd64 + debdelta_0.50+2_amd64 + debfoster_2.7-1.2_amd64 + debian-installer_20130613+deb7u1+b2_amd64 + debian-xcontrol_0.0.4-1.1+b2_amd64 + debianutils_4.3.2_amd64 + deborphan_1.7.28.8_amd64 + debram_1.0.3-0.2_amd64 + debsig-verify_0.8_amd64 + debtags_1.10.1_amd64 + dee-tools_1.0.10-3_amd64 + deets_0.1.3-1_amd64 + default-jdk_1:1.6-47_amd64 + default-jre_1:1.6-47_amd64 + default-jre-headless_1:1.6-47_amd64 + defendguin_0.0.12-4_amd64 + deja-dup_20.2-2.1_amd64 + deja-dup-dbg_20.2-2.1_amd64 + delta_2006.08.03-3_amd64 + denemo_0.9.2-3_amd64 + depqbf_0.1-1_amd64 + desklaunch_1.1.8_amd64 + deskmenu_1.4.5_amd64 + desktop-file-utils_0.20-0.1_amd64 + desktopnova_0.8.1-1_amd64 + desktopnova-module-gnome_0.8.1-1_amd64 + desktopnova-module-xfce_0.8.1-1_amd64 + desktopnova-tray_0.8.1-1_amd64 + desmume_0.9.8-1_amd64 + desproxy_0.1.0~pre3-8_amd64 + detox_1.2.0-5_amd64 + deutex_4.4.902-13_amd64 + devhelp_3.4.1-1_amd64 + device-tree-compiler_1.3.0-4_amd64 + devilspie_0.22-2_amd64 + devilspie2_0.20-1_amd64 + devio_1.2-1+b1_amd64 + devrplay3_3.3.2-14_amd64 + devscripts_2.12.6+deb7u2_amd64 + devtodo_0.1.20-6_amd64 + dfc_2.5.0-1_amd64 + dff_1.2.0+dfsg.1-1_amd64 + dfu-programmer_0.5.4-1_amd64 + dfu-util_0.5-1_amd64 + dh-ada-library_3_amd64 + dh-exec_0.4_amd64 + dhcp-helper_1.1-1_amd64 + dhcp-probe_1.3.0-10_amd64 + dhcpcd_1:3.2.3-11_amd64 + dhcpcd-dbus_0.6.0-1_amd64 + dhcpcd-gtk_0.6.0-1_amd64 + dhcpcd5_5.5.6-1_amd64 + dhcpdump_1.8-2_amd64 + dhcping_1.2-4_amd64 + dhex_0.67-1_amd64 + dhis-client_5.5-4_amd64 + dhis-dns-engine_5.3-1_amd64 + dhis-mx-sendmail-engine_5.0-2_amd64 + dhis-server_5.3-2.1_amd64 + dhis-tools-dns_5.0-6.1_amd64 + dhis-tools-genkeys_5.0-6.1_amd64 + di_4.30-1_amd64 + dia_0.97.2-8_amd64 + dia-gnome_0.97.2-8_amd64 + dia-libs_0.97.2-8_amd64 + dia2code_0.8.3-4_amd64 + dialign_2.2.1-5_amd64 + dialign-tx_1.0.2-2_amd64 + dialog_1.1-20120215-2_amd64 + diatheke_1.6.2+dfsg-5_amd64 + dibbler-client_0.8.2-1_amd64 + dibbler-relay_0.8.2-1_amd64 + dibbler-server_0.8.2-1_amd64 + dicelab_0.7-1_amd64 + dico_2.1-3+b2_amd64 + dico-dev_2.1-3+b2_amd64 + dico-module-guile_2.1-3+b2_amd64 + dico-module-python_2.1-3+b2_amd64 + dicod_2.1-3+b2_amd64 + dicom3tools_1.0~20120505-1_amd64 + dicomnifti_2.30.0-1_amd64 + dicomscope_3.6.0-10_amd64 + dict_1.12.0+dfsg-5_amd64 + dictconv_0.2-7_amd64 + dictd_1.12.0+dfsg-5_amd64 + dictfmt_1.12.0+dfsg-5_amd64 + diction_1.10~rc4-1_amd64 + dictionaryreader.app_0+20080616+dfsg-2+b3_amd64 + dictzip_1.12.0+dfsg-5_amd64 + didiwiki_0.5-11_amd64 + dieharder_3.31.1-4_amd64 + diet-agent_2.8.0-1+b1_amd64 + dietlibc-dev_0.33~cvs20120325-4_amd64 + diffpdf_2.1.1-1_amd64 + diffstat_1.55-3_amd64 + diffutils_1:3.2-6_amd64 + digikam_4:2.6.0-1+b2_amd64 + digikam-dbg_4:2.6.0-1+b2_amd64 + digitemp_3.5.0ds1-2_amd64 + dillo_3.0.2-2_amd64 + dimbl_0.11-1_amd64 + dime_0.20030921-2_amd64 + dino_0.2.8-3_amd64 + diod_1.0.13-3_amd64 + dirac_1.0.2-6_amd64 + dircproxy_1.0.5-5.1_amd64 + dirdiff_2.1-5_amd64 + directvnc_0.7.7-1_amd64 + dirmngr_1.1.0-3_amd64 + dis51_0.5-1.1_amd64 + discount_2.1.3-3_amd64 + discover_2.1.2-5.2_amd64 + disktype_9-1_amd64 + display-dhammapada_0.23-7_amd64 + distcc_3.1-5_amd64 + distcc-pump_3.1-5_amd64 + distccmon-gnome_3.1-5_amd64 + distro-info_0.10_amd64 + disulfinder_1.2.11-2+b1_amd64 + djmount_0.71-5+b1_amd64 + djtools_1.2.7_amd64 + djview_3.5.25.3-1_amd64 + djview-plugin_4.9-2_amd64 + djview3_3.5.25.3-1_amd64 + djview4_4.9-2_amd64 + djvulibre-bin_3.5.25.3-1_amd64 + djvulibre-dbg_3.5.25.3-1_amd64 + djvuserve_3.5.25.3-1_amd64 + dkopp_6.2-1_amd64 + dlm-pcmk_3.0.12-3.2+deb7u2_amd64 + dlz-ldap-enum_1.0.2-1_amd64 + dmake_1:4.12-2_amd64 + dmeventd_2:1.02.74-8_amd64 + dmg2img_1.6.2-2+b1_amd64 + dmidecode_2.11-9_amd64 + dmidecode-dbg_2.11-9_amd64 + dmitry_1.3a-1_amd64 + dmraid_1.0.0.rc16-4.2_amd64 + dmsetup_2:1.02.74-8_amd64 + dmtcp_1.2.5-1_amd64 + dmtcp-dbg_1.2.5-1_amd64 + dmucs_0.6.1-2.1_amd64 + dnet-progs_2.60_amd64 + dns-flood-detector_1.12-7_amd64 + dns2tcp_0.5.2-1_amd64 + dnshistory_1.3-2+b1_amd64 + dnsmasq-base_2.62-3+deb7u1_amd64 + dnsmasq-utils_2.62-3+deb7u1_amd64 + dnsproxy_1.16-0.1+b1_amd64 + dnstop_20120611-2_amd64 + dnstracer_1.9-4_amd64 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + docbook-to-man_1:2.0.0-31_amd64 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_amd64 + docbook2x_0.8.8-8_amd64 + docker_1.4-5_amd64 + docsis_0.9.6+git16-g61ee500+dfsg-2_amd64 + dodgindiamond2_0.2.2-1_amd64 + dolphin_4:4.8.4-2_amd64 + donkey_0.5-19_amd64 + doodle_0.7.0-5_amd64 + doodle-dbg_0.7.0-5_amd64 + doodled_0.7.0-5_amd64 + doomsday_1.9.0-beta6.9+dfsg1-2.1_amd64 + dopewars_1.5.12-13_amd64 + dos2unix_6.0-1_amd64 + dosbox_0.74-3_amd64 + doscan_0.3.1-3_amd64 + doschk_1.1-6_amd64 + dose-builddebcheck_3.0.2-3_amd64 + dose-distcheck_3.0.2-3_amd64 + dose-extra_3.0.2-3_amd64 + dosfstools_3.0.13-1_amd64 + dosfstools-dbg_3.0.13-1_amd64 + dossizola_1.0-8.3_amd64 + dot-forward_1:0.71-2_amd64 + dotmcp_0.2.2-8_amd64 + dotur_1.53-2_amd64 + dov4l_0.9-4.1_amd64 + dovecot-antispam_2.0+20120225-3_amd64 + dovecot-core_1:2.1.7-7_amd64 + dovecot-dbg_1:2.1.7-7_amd64 + dovecot-dev_1:2.1.7-7_amd64 + dovecot-gssapi_1:2.1.7-7_amd64 + dovecot-imapd_1:2.1.7-7_amd64 + dovecot-ldap_1:2.1.7-7_amd64 + dovecot-lmtpd_1:2.1.7-7_amd64 + dovecot-managesieved_1:2.1.7-7_amd64 + dovecot-mysql_1:2.1.7-7_amd64 + dovecot-pgsql_1:2.1.7-7_amd64 + dovecot-pop3d_1:2.1.7-7_amd64 + dovecot-sieve_1:2.1.7-7_amd64 + dovecot-solr_1:2.1.7-7_amd64 + dovecot-sqlite_1:2.1.7-7_amd64 + downtimed_0.5-2_amd64 + doxygen_1.8.1.2-2_amd64 + doxygen-gui_1.8.1.2-2_amd64 + doxymacs_1.8.0-6_amd64 + dozzaqueux_3.21-4_amd64 + dpkg_1.16.12_amd64 + dpm_1.8.2-1+b2_amd64 + dpm-copy-server-mysql_1.8.2-1+b2_amd64 + dpm-copy-server-postgres_1.8.2-1+b2_amd64 + dpm-name-server-mysql_1.8.2-1+b2_amd64 + dpm-name-server-postgres_1.8.2-1+b2_amd64 + dpm-rfio-server_1.8.2-1+b2_amd64 + dpm-server-mysql_1.8.2-1+b2_amd64 + dpm-server-postgres_1.8.2-1+b2_amd64 + dpm-srm-server-mysql_1.8.2-1+b2_amd64 + dpm-srm-server-postgres_1.8.2-1+b2_amd64 + dpt-i2o-raidutils_0.0.6-19_amd64 + drac_1.12-7.2_amd64 + drac-dev_1.12-7.2_amd64 + dradio_3.8-2_amd64 + dragonplayer_4:4.8.4-2_amd64 + drawmap_2.5-3_amd64 + drawterm_20110822-1_amd64 + drawtiming_0.7.1-5_amd64 + drawxtl_5.5-3_amd64 + drbd8-utils_2:8.3.13-2_amd64 + drc_3.2.0~dfsg0-1_amd64 + dreamchess_0.2.0-3_amd64 + drgeo_1.1.0-10_amd64 + driftnet_0.1.6+cvs20040426-3_amd64 + drivel_3.0.3-1_amd64 + drizzle_1:7.1.36-stable-1_amd64 + drizzle-client_1:7.1.36-stable-1_amd64 + drizzle-dbg_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-file_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-http_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_amd64 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_amd64 + drizzle-plugin-debug_1:7.1.36-stable-1_amd64 + drizzle-plugin-dev_1:7.1.36-stable-1_amd64 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_amd64 + drizzle-plugin-http-functions_1:7.1.36-stable-1_amd64 + drizzle-plugin-js_1:7.1.36-stable-1_amd64 + drizzle-plugin-json-server_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_amd64 + drizzle-plugin-logging-query_1:7.1.36-stable-1_amd64 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_amd64 + drizzle-plugin-query-log_1:7.1.36-stable-1_amd64 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_amd64 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_amd64 + drizzle-plugin-slave_1:7.1.36-stable-1_amd64 + dropbear_2012.55-1.3_amd64 + drumstick-tools_0.5.0-3_amd64 + dsbltesters_0.9.5-4_amd64 + dsc-statistics-collector_201203250530-2_amd64 + dsdp_5.8-9.1_amd64 + dselect_1.16.12_amd64 + dsh_0.25.10-1_amd64 + dsniff_2.4b1+debian-22_amd64 + dspam_3.10.1+dfsg-11_amd64 + dspam-dbg_3.10.1+dfsg-11_amd64 + dssi-example-plugins_1.1.1~dfsg0-1_amd64 + dssi-host-jack_1.1.1~dfsg0-1_amd64 + dssi-utils_1.1.1~dfsg0-1_amd64 + dssp_2.0.4-2_amd64 + dssp-dbg_2.0.4-2_amd64 + dsyslog_0.6.0+b2_amd64 + dsyslog-dbg_0.6.0+b2_amd64 + dsyslog-module-gnutls_0.6.0+b2_amd64 + dsyslog-module-mysql_0.6.0+b2_amd64 + dsyslog-module-postgresql_0.6.0+b2_amd64 + dtach_0.8-2.1_amd64 + dtaus_0.9-1_amd64 + duende_1.4.12-5_amd64 + duff_0.5.2-1_amd64 + duma_2.5.15-1.1_amd64 + dump_0.4b44-1_amd64 + dumpasn1_20120521-1_amd64 + dumpet_2.1-4_amd64 + dunst_0.2.0-3_amd64 + duplicity_0.6.18-3_amd64 + dv4l_1.0-5_amd64 + dvb-apps_1.1.1+rev1483-1_amd64 + dvb-tools_0.8.8-3_amd64 + dvbackup_1:0.0.4-7_amd64 + dvbcut_0.5.4+svn178-2_amd64 + dvblast_2.2-1_amd64 + dvbsnoop_1.4.50-4_amd64 + dvbstream_0.6+cvs20090621-1_amd64 + dvbstreamer_2.1.0-2.3_amd64 + dvbtune_0.5.ds-1_amd64 + dvd+rw-tools_7.1-10_amd64 + dvd+rw-tools-dbg_7.1-10_amd64 + dvdauthor_0.7.0-1.1+b2_amd64 + dvdbackup_0.4.2-1_amd64 + dvdbackup-dbg_0.4.2-1_amd64 + dvdisaster_0.72.4-1_amd64 + dvdtape_1.6-1_amd64 + dvgrab_3.5-2_amd64 + dvhtool_1.0.1-5_amd64 + dvi2dvi_2.0alpha-9.2_amd64 + dvi2ps_5.1j-1+b1_amd64 + dvidvi_1.0-8etch2_amd64 + dvifb_1:01.03-14.1+b1_amd64 + dvilx_1:01.03-14.1+b1_amd64 + dvipng_1.14-1+b1_amd64 + dvipost_1.1-4_amd64 + dvipsk-ja_5.98+p1.7b-1.1_amd64 + dvorak7min_1.6.1-13.1_amd64 + dvsink_0.8.3.6-1+b2_amd64 + dvsource_0.8.3.6-1+b2_amd64 + dvswitch_0.8.3.6-1+b2_amd64 + dvtm_0.6-1_amd64 + dwarfdump_20120410-2_amd64 + dwarves_1.10-2_amd64 + dwb_20120628hg-1_amd64 + dwdiff_2.0.4-1_amd64 + dwm_6.0-4_amd64 + dwww_1.11.8_amd64 + dwz_0.4-1_amd64 + dx_1:4.4.4-4+b2_amd64 + dxpc_3.9.2-3_amd64 + dynalogin-server_0.9.14-2_amd64 + dynamite_0.1.1-2_amd64 + dynare_4.3.0-2_amd64 + dzedit_20061220+dfsg3-2_amd64 + dzen2_0.8.5-4_amd64 + e00compr_1.0.1-2_amd64 + e2fsck-static_1.42.5-1.1_amd64 + e2fslibs_1.42.5-1.1_amd64 + e2fslibs-dbg_1.42.5-1.1_amd64 + e2fslibs-dev_1.42.5-1.1_amd64 + e2fsprogs_1.42.5-1.1_amd64 + e2fsprogs-dbg_1.42.5-1.1_amd64 + e2ps_4.34-4_amd64 + e2tools_0.0.16-6.1_amd64 + e2undel_0.82-1.1_amd64 + e3_1:2.71-1_amd64 + eancheck_1.0-1.1_amd64 + easychem_0.6-7_amd64 + easyh10_1.5-1_amd64 + easymp3gain-gtk_0.5.0+svn135-1_amd64 + easymp3gain-gtk-dbg_0.5.0+svn135-1_amd64 + easytag_2.1.7-2_amd64 + eatmydata_26-2_amd64 + eb-utils_4.4.3-6_amd64 + ebhttpd_1:1.0.dfsg.1-4.3_amd64 + eblook_1:1.6.1-12_amd64 + ebnetd_1:1.0.dfsg.1-4.3_amd64 + ebnetd-common_1:1.0.dfsg.1-4.3_amd64 + eboard_1.1.1-5_amd64 + ebook-speaker_2.0-3_amd64 + ebook-speaker-dbg_2.0-3_amd64 + ebook-tools-dbg_0.2.1-2+b1_amd64 + ebtables_2.0.10.4-1_amd64 + ebumeter_0.1.0~dfsg-2_amd64 + ebview_0.3.6.2-1.2_amd64 + ecasound_2.9.0-1_amd64 + ecatools_2.9.0-1_amd64 + echoping_6.0.2-6_amd64 + ecj_3.5.1-3_amd64 + ecj-gcj_3.5.1-3_amd64 + ecl_11.1.1+dfsg1-2_amd64 + eclipse-cdt-jni_8.1.0+dfsg-2_amd64 + eclipse-pde_3.8.0~rc4-1_amd64 + eclipse-platform_3.8.0~rc4-1_amd64 + eclipse-rcp_3.8.0~rc4-1_amd64 + ecm_1.03-1_amd64 + ecryptfs-utils_99-1_amd64 + ecryptfs-utils-dbg_99-1_amd64 + ed_1.6-2_amd64 + ed2k-hash_0.3.3+deb2-1_amd64 + edac-utils_0.18-1_amd64 + edenmath.app_1.1.1a-7+b5_amd64 + edfbrowser_1.48-1_amd64 + edisplay_0.8.5-5+deb7u3_amd64 + edos-distcheck_1.4.2-13+b1_amd64 + education-astronomy_1.713+deb7u1_amd64 + education-chemistry_1.713+deb7u1_amd64 + education-common_1.713+deb7u1_amd64 + education-desktop-gnome_1.713+deb7u1_amd64 + education-desktop-kde_1.713+deb7u1_amd64 + education-desktop-lxde_1.713+deb7u1_amd64 + education-desktop-other_1.713+deb7u1_amd64 + education-desktop-sugar_1.713+deb7u1_amd64 + education-desktop-xfce_1.713+deb7u1_amd64 + education-development_1.713+deb7u1_amd64 + education-electronics_1.713+deb7u1_amd64 + education-geography_1.713+deb7u1_amd64 + education-graphics_1.713+deb7u1_amd64 + education-language_1.713+deb7u1_amd64 + education-laptop_1.713+deb7u1_amd64 + education-logic-games_1.713+deb7u1_amd64 + education-main-server_1.713+deb7u1_amd64 + education-mathematics_1.713+deb7u1_amd64 + education-menus_1.713+deb7u1_amd64 + education-misc_1.713+deb7u1_amd64 + education-music_1.713+deb7u1_amd64 + education-networked_1.713+deb7u1_amd64 + education-physics_1.713+deb7u1_amd64 + education-services_1.713+deb7u1_amd64 + education-standalone_1.713+deb7u1_amd64 + education-tasks_1.713+deb7u1_amd64 + education-thin-client_1.713+deb7u1_amd64 + education-thin-client-server_1.713+deb7u1_amd64 + education-workstation_1.713+deb7u1_amd64 + eegdev-plugins-free_0.2-3_amd64 + eep24c_0.1.2-5_amd64 + efax_1:0.9a-19_amd64 + efax-gtk_3.2.8-1+b1_amd64 + efibootmgr_0.5.4-3_amd64 + efilinux_1.0-2_amd64 + efingerd_1.6.2.7+nmu1_amd64 + eflite_0.4.1-6_amd64 + efte_1.1-1_amd64 + eggdrop_1.6.20-1_amd64 + eiciel_0.9.8.1-3_amd64 + einstein_2.0.dfsg.2-9_amd64 + eiskaltdcpp-daemon_2.2.6-4_amd64 + eiskaltdcpp-daemon-dbg_2.2.6-4_amd64 + eiskaltdcpp-gtk_2.2.6-4_amd64 + eiskaltdcpp-gtk-dbg_2.2.6-4_amd64 + eiskaltdcpp-qt_2.2.6-4_amd64 + eiskaltdcpp-qt-dbg_2.2.6-4_amd64 + ejabberd_2.1.10-4+deb7u1_amd64 + eject_2.1.5+deb1+cvs20081104-13_amd64 + ekeyd_1.1.5-4_amd64 + ekeyd-egd-linux_1.1.5-4_amd64 + ekg_1:1.9~pre+r2854-1_amd64 + ekg-gtk_1:1.9~pre+r2854-1_amd64 + ekg2_1:0.3.1-3_amd64 + ekg2-core_1:0.3.1-3_amd64 + ekg2-dbg_1:0.3.1-3_amd64 + ekg2-gnupg_1:0.3.1-3_amd64 + ekg2-jabber_1:0.3.1-3_amd64 + ekg2-remote_1:0.3.1-3_amd64 + ekg2-scripting-perl_1:0.3.1-3_amd64 + ekg2-scripting-python_1:0.3.1-3_amd64 + ekg2-ui-gtk_1:0.3.1-3_amd64 + ekg2-ui-ncurses_1:0.3.1-3_amd64 + ekg2-xosd_1:0.3.1-3_amd64 + ekiga_3.2.7-6_amd64 + ekiga-dbg_3.2.7-6_amd64 + elastix_4.5-2_amd64 + electric-fence_2.2.4_amd64 + electricsheep_2.7~b12+svn20091224-1.1_amd64 + eleeye_0.29.6-2_amd64 + elektra-bin_0.7.1-1_amd64 + elfrc_0.7-1_amd64 + elfutils_0.152-1+wheezy1_amd64 + elilo_3.14-2_amd64 + elinks_0.12~pre5-9_amd64 + elinks-lite_0.12~pre5-9_amd64 + elk_3.99.8-2_amd64 + elmer_6.1.0.svn.5396.dfsg2-2_amd64 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + elvis_2.2.0-11.1_amd64 + elvis-console_2.2.0-11.1_amd64 + elvis-tiny_1.4-23_amd64 + elvis-tools_2.2.0-11.1_amd64 + emacs-mozc_1.5.1090.102-4+deb7u1_amd64 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_amd64 + emacs23_23.4+1-4_amd64 + emacs23-bin-common_23.4+1-4_amd64 + emacs23-lucid_23.4+1-4_amd64 + emacs23-nox_23.4+1-4_amd64 + embassy-domainatrix_0.1.0+20110714-1_amd64 + embassy-domalign_0.1.0+20110714-1_amd64 + embassy-domsearch_1:0.1.0+20110714-1_amd64 + ember_0.6.2+dfsg-2_amd64 + emboss_6.4.0-2_amd64 + emboss-lib_6.4.0-2_amd64 + emerillon_0.1.90-1_amd64 + emerillon-dev_0.1.90-1_amd64 + emms_3.0+20110425+1.git298e022-4_amd64 + empathy_3.4.2.3-2+deb7u1_amd64 + empathy-dbg_3.4.2.3-2+deb7u1_amd64 + empire_1.7-3_amd64 + empire-hub_1.0.2.1_amd64 + empire-lafe_1.1-1_amd64 + empty-expect_0.6.18b-3_amd64 + emu8051_1.1.0-1_amd64 + enblend_4.0+dfsg-4+b3_amd64 + enca_1.13-4_amd64 + encfs_1.7.4-2.4+b1_amd64 + enchant_1.6.0-7_amd64 + enemylines3_1.2-7_amd64 + enemylines7_0.6-3_amd64 + enfuse_4.0+dfsg-4+b3_amd64 + engauge-digitizer_5.0-3_amd64 + enigma_1.10~~pre-alpha+r2236-1_amd64 + enigmail_2:1.4.1-2_amd64 + enna_0.4.1~r3557-2.1_amd64 + enna-dbg_0.4.1~r3557-2.1_amd64 + enscribe_0.1.0-1.1_amd64 + enscript_1.6.5.90-2_amd64 + ent_1.1debian-2_amd64 + enum_1.1-1_amd64 + environment-modules_3.2.9c-3_amd64 + envstore_2.0.4-1_amd64 + eog_3.4.2-1+build1_amd64 + eog-dbg_3.4.2-1+build1_amd64 + eog-plugins_3.4.1-1_amd64 + eot-utils_1.0-1_amd64 + epdfview_0.1.8-3_amd64 + eperl_2.2.14-18_amd64 + epic4_1:2.10.1-1+b3_amd64 + epic5_1.1.2-2+b3_amd64 + epiphany_0.7.0-6_amd64 + epiphany-browser_3.4.2-2.1_amd64 + epiphany-browser-dbg_3.4.2-2.1_amd64 + epiphany-browser-dev_3.4.2-2.1_amd64 + epiphany-extensions_3.4.0-2_amd64 + epix_1.2.10-1_amd64 + epm_4.2-6_amd64 + epsilon-bin_0.9.1-2_amd64 + epstool_3.08+repack-3_amd64 + epub-utils_0.2.1-2+b1_amd64 + epwutil_1.1-8.1_amd64 + eq10q_1.2-2_amd64 + eql_1.2.ds1-3_amd64 + eqonomize_0.6-7_amd64 + erlang-appmon_1:15.b.1-dfsg-4_amd64 + erlang-asn1_1:15.b.1-dfsg-4_amd64 + erlang-base_1:15.b.1-dfsg-4_amd64 + erlang-base-hipe_1:15.b.1-dfsg-4_amd64 + erlang-common-test_1:15.b.1-dfsg-4_amd64 + erlang-corba_1:15.b.1-dfsg-4_amd64 + erlang-crypto_1:15.b.1-dfsg-4_amd64 + erlang-debugger_1:15.b.1-dfsg-4_amd64 + erlang-dev_1:15.b.1-dfsg-4_amd64 + erlang-dialyzer_1:15.b.1-dfsg-4_amd64 + erlang-diameter_1:15.b.1-dfsg-4_amd64 + erlang-edoc_1:15.b.1-dfsg-4_amd64 + erlang-eldap_1:15.b.1-dfsg-4_amd64 + erlang-erl-docgen_1:15.b.1-dfsg-4_amd64 + erlang-esdl_1.2-2_amd64 + erlang-et_1:15.b.1-dfsg-4_amd64 + erlang-eunit_1:15.b.1-dfsg-4_amd64 + erlang-gs_1:15.b.1-dfsg-4_amd64 + erlang-guestfs_1:1.18.1-1+deb7u3_amd64 + erlang-ic_1:15.b.1-dfsg-4_amd64 + erlang-inets_1:15.b.1-dfsg-4_amd64 + erlang-inviso_1:15.b.1-dfsg-4_amd64 + erlang-megaco_1:15.b.1-dfsg-4_amd64 + erlang-mnesia_1:15.b.1-dfsg-4_amd64 + erlang-observer_1:15.b.1-dfsg-4_amd64 + erlang-odbc_1:15.b.1-dfsg-4_amd64 + erlang-os-mon_1:15.b.1-dfsg-4_amd64 + erlang-parsetools_1:15.b.1-dfsg-4_amd64 + erlang-percept_1:15.b.1-dfsg-4_amd64 + erlang-pman_1:15.b.1-dfsg-4_amd64 + erlang-public-key_1:15.b.1-dfsg-4_amd64 + erlang-reltool_1:15.b.1-dfsg-4_amd64 + erlang-runtime-tools_1:15.b.1-dfsg-4_amd64 + erlang-snmp_1:15.b.1-dfsg-4_amd64 + erlang-ssh_1:15.b.1-dfsg-4_amd64 + erlang-ssl_1:15.b.1-dfsg-4_amd64 + erlang-syntax-tools_1:15.b.1-dfsg-4_amd64 + erlang-test-server_1:15.b.1-dfsg-4_amd64 + erlang-toolbar_1:15.b.1-dfsg-4_amd64 + erlang-tools_1:15.b.1-dfsg-4_amd64 + erlang-tv_1:15.b.1-dfsg-4_amd64 + erlang-typer_1:15.b.1-dfsg-4_amd64 + erlang-webtool_1:15.b.1-dfsg-4_amd64 + erlang-wx_1:15.b.1-dfsg-4_amd64 + erlang-xmerl_1:15.b.1-dfsg-4_amd64 + erlang-yaws_1.94-1_amd64 + eruby_1.0.5-2.1_amd64 + escputil_5.2.9-1_amd64 + esekeyd_1.2.7-1_amd64 + esmtp_1.2-10_amd64 + esniper_2.27.0-1_amd64 + esorex_3.9.6-1_amd64 + espctag_0.3-1_amd64 + espeak_1.46.02-2_amd64 + espeak-data_1.46.02-2_amd64 + espeak-dbg_1.46.02-2_amd64 + espeakedit_1.46.02-2_amd64 + espeakup_1:0.71-13_amd64 + esperanza_0.4.0+git20091017-2+b1_amd64 + estic_1.61-20.1_amd64 + esys-particle_2.1-4_amd64 + eterm_0.9.6-1_amd64 + etherape_0.9.12-1_amd64 + etherpuppet_0.3-2_amd64 + etherwake_1.09-3_amd64 + ethstatus_0.4.3_amd64 + ethtool_1:3.4.2-1_amd64 + etl-dev_0.04.15-1_amd64 + etsf-io_1.0.3-4+b1_amd64 + etw_3.6+svn140-4_amd64 + eukleides_1.5.4-2_amd64 + euler_1.61.0-8.1_amd64 + eurephia_1.0.1-3+b1_amd64 + eventstat_0.01.15-1_amd64 + evilvte_0.5.1-1_amd64 + evilwm_1.0.0-1_amd64 + evince_3.4.0-3.1_amd64 + evince-dbg_3.4.0-3.1_amd64 + evince-gtk_3.4.0-3.1_amd64 + evolution_3.4.4-3_amd64 + evolution-data-server_3.4.4-3_amd64 + evolution-data-server-dbg_3.4.4-3_amd64 + evolution-data-server-dev_3.4.4-3_amd64 + evolution-dbg_3.4.4-3_amd64 + evolution-dev_3.4.4-3_amd64 + evolution-ews_3.4.4-1_amd64 + evolution-exchange_3.4.4-1_amd64 + evolution-exchange-dbg_3.4.4-1_amd64 + evolution-mapi_3.4.4-1_amd64 + evolution-mapi-dbg_3.4.4-1_amd64 + evolution-plugins_3.4.4-3_amd64 + evolution-plugins-experimental_3.4.4-3_amd64 + evolution-rss_0.3.91-2_amd64 + evolution-webcal_2.32.0-2+b1_amd64 + evolver_2.30c.dfsg-3_amd64 + evolvotron_0.6.1-1+wheezy1_amd64 + evtest_1:1.30-1_amd64 + eweouz_0.7+b1_amd64 + ewf-tools_20100226-1+b1_amd64 + ewipe_1.2.0-8_amd64 + exactimage_0.8.5-5+deb7u3_amd64 + exactimage-dbg_0.8.5-5+deb7u3_amd64 + excellent-bifurcation_0.0.20071015-5_amd64 + execstack_0.0.20090925-6_amd64 + exfat-fuse_0.9.7-2_amd64 + exfat-utils_0.9.7-2_amd64 + exif_0.6.20-2_amd64 + exifprobe_2.0.1-1_amd64 + exiftags_1.01-5_amd64 + exiftran_2.07-10+b1_amd64 + exim4-base_4.80-7_amd64 + exim4-daemon-heavy_4.80-7_amd64 + exim4-daemon-heavy-dbg_4.80-7_amd64 + exim4-daemon-light_4.80-7_amd64 + exim4-daemon-light-dbg_4.80-7_amd64 + exim4-dbg_4.80-7_amd64 + exim4-dev_4.80-7_amd64 + eximon4_4.80-7_amd64 + exiv2_0.23-1_amd64 + exo-utils_0.6.2-5_amd64 + exo-utils-dbg_0.6.2-5_amd64 + exonerate_2.2.0-6_amd64 + expat_2.1.0-1+deb7u1_amd64 + expect_5.45-2_amd64 + expect-dev_5.45-2_amd64 + explain_0.52.D002-1_amd64 + exrtools_0.4-1.2_amd64 + ext3grep_0.10.1-3.2_amd64 + extace_1.9.9-6_amd64 + extlinux_2:4.05+dfsg-6+deb7u1_amd64 + extract_1:0.6.3-5_amd64 + extrema_4.4.5.dfsg-3_amd64 + extremetuxracer_0.4-5_amd64 + extremetuxracer-dbg_0.4-5_amd64 + extsmail_1.4-1_amd64 + extundelete_0.2.0-2.1_amd64 + exuberant-ctags_1:5.9~svn20110310-4_amd64 + ez-ipupdate_3.0.11b8-13.4_amd64 + ezmlm-browse_0.10-3_amd64 + ezstream_0.5.6~dfsg-1_amd64 + eztrace_0.7-2-4_amd64 + f-spot_0.8.2-5_amd64 + f2c_20100827-1_amd64 + faad_2.7-8_amd64 + faad2-dbg_2.7-8_amd64 + fact++_1.5.3~dfsg-1_amd64 + faifa_0.2~svn82-1_amd64 + fair_0.5.3-1_amd64 + fairymax_4.8q-2_amd64 + fake_1.1.11-1+b1_amd64 + fakepop_11_amd64 + fakeroot_1.18.4-2_amd64 + fakeroot-ng_0.16-1.1_amd64 + faketime_0.8-1_amd64 + falconpl_0.9.6.9-git20120606-2_amd64 + falconpl-curl_0.9.6.9-git20120606-2_amd64 + falconpl-dbg_0.9.6.9-git20120606-2_amd64 + falconpl-dbi_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_amd64 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_amd64 + falconpl-dbus_0.9.6.9-git20120606-2_amd64 + falconpl-dev_0.9.6.9-git20120606-2_amd64 + falconpl-dmtx_0.9.6.9-git20120606-2_amd64 + falconpl-gd2_0.9.6.9-git20120606-2_amd64 + falconpl-gtk_0.9.6.9-git20120606-2_amd64 + falconpl-hpdf_0.9.6.9-git20120606-2_amd64 + falconpl-mongodb_0.9.6.9-git20120606-2_amd64 + falconpl-sdl_0.9.6.9-git20120606-2_amd64 + falselogin_0.3-4_amd64 + fam_2.7.0-17_amd64 + fapg_0.41-1_amd64 + farpd_0.2-11_amd64 + fastdep_0.16-13_amd64 + fastdnaml_1.2.2-10_amd64 + fastforward_1:0.51-3_amd64 + fastjar_2:0.98-3_amd64 + fastlink_4.1P-fix95-3_amd64 + fasttree_2.1.4-1_amd64 + fastx-toolkit_0.0.13.2-1_amd64 + fatattr_1.0.1-9_amd64 + fatattr-dbg_1.0.1-9_amd64 + fatrat_1.1.3-5_amd64 + fatrat-czshare_1.1.3-1_amd64 + fatrat-opensubtitles_1.1.3-1_amd64 + fatresize_1.0.2-6_amd64 + fatsort_0.9.15.245-1_amd64 + faucc_20090220-1_amd64 + fauhdlc_20110812-1_amd64 + faumachine_20110812-1.2_amd64 + faust_0.9.46-2_amd64 + faustworks_0.3.2~repack0-1_amd64 + fbautostart_2.718281828-1_amd64 + fbb_7.04j-8.2_amd64 + fbcat_0.3-1_amd64 + fbdesk_1.4.1-10_amd64 + fbi_2.07-10+b1_amd64 + fbpager_0.1.5~git20090221.1.8e0927e6-1_amd64 + fbpanel_6.1-6_amd64 + fbreader_0.12.10dfsg-8_amd64 + fbset_2.1-25_amd64 + fbterm_1.7-2_amd64 + fbterm-ucimf_0.2.9-2_amd64 + fbtv_3.102-3_amd64 + fbx-playlist_20070531+dfsg.1-3_amd64 + fbxkb_0.6-1.1_amd64 + fcc_2.7-1_amd64 + fceu_0.98.12-4.1_amd64 + fcgiwrap_1.0.3-3_amd64 + fcitx-bin_1:4.2.4.1-7_amd64 + fcitx-chewing_0.1.2-2_amd64 + fcitx-config-gtk_0.4.4-1_amd64 + fcitx-config-gtk2_0.4.4-1_amd64 + fcitx-dbg_1:4.2.4.1-7_amd64 + fcitx-frontend-fbterm_0.1.4-1_amd64 + fcitx-frontend-gtk2_1:4.2.4.1-7_amd64 + fcitx-frontend-gtk3_1:4.2.4.1-7_amd64 + fcitx-frontend-qt4_1:4.2.4.1-7_amd64 + fcitx-googlepinyin_0.1.5-2_amd64 + fcitx-hangul_0.1.1-1_amd64 + fcitx-libpinyin_0.1.1-2_amd64 + fcitx-libs_1:4.2.4.1-7_amd64 + fcitx-libs-dev_1:4.2.4.1-7_amd64 + fcitx-m17n_0.1.2-2_amd64 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_amd64 + fcitx-module-dbus_1:4.2.4.1-7_amd64 + fcitx-module-kimpanel_1:4.2.4.1-7_amd64 + fcitx-module-lua_1:4.2.4.1-7_amd64 + fcitx-module-x11_1:4.2.4.1-7_amd64 + fcitx-modules_1:4.2.4.1-7_amd64 + fcitx-mozc_1.5.1090.102-4+deb7u1_amd64 + fcitx-pinyin_1:4.2.4.1-7_amd64 + fcitx-qw_1:4.2.4.1-7_amd64 + fcitx-sunpinyin_0.3.7-1_amd64 + fcitx-table_1:4.2.4.1-7_amd64 + fcitx-table-amharic_0.2.0+git20120621-1_amd64 + fcitx-table-arabic_0.2.0+git20120621-1_amd64 + fcitx-table-array30_0.3.1-1_amd64 + fcitx-table-array30-big_0.3.1-1_amd64 + fcitx-table-bingchan_1:4.2.4.1-7_amd64 + fcitx-table-boshiamy_0.3.1-1_amd64 + fcitx-table-cangjie_1:4.2.4.1-7_amd64 + fcitx-table-cangjie-big_0.3.1-1_amd64 + fcitx-table-cangjie3_0.3.1-1_amd64 + fcitx-table-cangjie5_0.3.1-1_amd64 + fcitx-table-cantonese_0.3.1-1_amd64 + fcitx-table-cantonhk_0.3.1-1_amd64 + fcitx-table-cns11643_0.2.0+git20120621-1_amd64 + fcitx-table-compose_0.2.0+git20120621-1_amd64 + fcitx-table-dianbaoma_1:4.2.4.1-7_amd64 + fcitx-table-easy-big_0.3.1-1_amd64 + fcitx-table-emoji_0.2.0+git20120621-1_amd64 + fcitx-table-erbi_1:4.2.4.1-7_amd64 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_amd64 + fcitx-table-jyutping_0.3.1-1_amd64 + fcitx-table-latex_0.2.0+git20120621-1_amd64 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_amd64 + fcitx-table-quick-classic_0.3.1-1_amd64 + fcitx-table-quick3_0.3.1-1_amd64 + fcitx-table-quick5_0.3.1-1_amd64 + fcitx-table-rustrad_0.2.0+git20120621-1_amd64 + fcitx-table-scj6_0.3.1-1_amd64 + fcitx-table-stroke5_0.3.1-1_amd64 + fcitx-table-tamil-remington_0.2.0+git20120621-1_amd64 + fcitx-table-thai_0.2.0+git20120621-1_amd64 + fcitx-table-translit_0.2.0+git20120621-1_amd64 + fcitx-table-translit-ua_0.2.0+git20120621-1_amd64 + fcitx-table-viqr_0.2.0+git20120621-1_amd64 + fcitx-table-wanfeng_1:4.2.4.1-7_amd64 + fcitx-table-wbpy_1:4.2.4.1-7_amd64 + fcitx-table-wu_0.3.1-1_amd64 + fcitx-table-wubi_1:4.2.4.1-7_amd64 + fcitx-table-wubi-large_0.3.1-1_amd64 + fcitx-table-yawerty_0.2.0+git20120621-1_amd64 + fcitx-table-zhengma_0.3.1-1_amd64 + fcitx-table-ziranma_1:4.2.4.1-7_amd64 + fcitx-tools_1:4.2.4.1-7_amd64 + fcitx-ui-classic_1:4.2.4.1-7_amd64 + fcitx-ui-light_0.1.3-2_amd64 + fcitx-unikey_0.1.0-1_amd64 + fcode-utils_1.0.2-3_amd64 + fcoe-utils_1.0.23-1_amd64 + fcrackzip_1.0-4_amd64 + fdclone_3.00k-1_amd64 + fdm_1.6+cvs20111013-2_amd64 + fdupes_1.50-PR2-4_amd64 + fdutils_5.5-20060227-6_amd64 + febootstrap_3.17-1_amd64 + feh_2.3-2_amd64 + felix-latin_2.0-3.1_amd64 + fence-agents_3.1.5-2_amd64 + festival_1:2.1~release-5.1_amd64 + festival-dev_1:2.1~release-5.1_amd64 + fet_5.18.0-1_amd64 + fetchmail_6.3.21-4_amd64 + ffado-dbus-server_2.0.99+svn2171-2_amd64 + ffado-tools_2.0.99+svn2171-2_amd64 + ffdiaporama_1.3-1_amd64 + ffe_0.2.8-1_amd64 + ffindex_0.9.6.1-1_amd64 + ffindex-dbg_0.9.6.1-1_amd64 + ffmpeg_6:0.8.9-1_amd64 + ffmpeg2theora_0.27-2_amd64 + ffmpegthumbnailer_2.0.7-2_amd64 + ffmpegthumbnailer-dbg_2.0.7-2_amd64 + ffmpegthumbs_4:4.8.4-2_amd64 + ffmsindex_2.17-1_amd64 + ffproxy_1.6-10_amd64 + ffrenzy_1.0.2~svn20070530-4_amd64 + fftw-dev_2.1.5-1_amd64 + fftw2_2.1.5-1_amd64 + fgetty_0.6-5_amd64 + fhist_1.18-1_amd64 + fig2sxd_0.20-1_amd64 + figlet_2.2.5-2_amd64 + figtoipe_20080517-1_amd64 + fil-plugins_0.3.0-3_amd64 + file_5.11-2_amd64 + file-kanji_1.1-16_amd64 + file-roller_3.4.2-1_amd64 + filelight_4:4.8.4-1_amd64 + fileschanged_0.6.5-1.2_amd64 + filetea_0.1.12+dfsg1-3_amd64 + filezilla_3.5.3-2_amd64 + fillets-ng_1.0.1-2_amd64 + filo_1.1+2011020401.2_amd64 + filter_2.6.3-1_amd64 + filtergen_0.12.4-5.1_amd64 + filters_2.48_amd64 + fim_0.3-beta-prerelease-1.3+b1_amd64 + finch_2.10.6-3_amd64 + findimagedupes_2.18-4+b2_amd64 + findutils_4.4.2-4_amd64 + finger_0.17-15_amd64 + fingerd_0.17-15_amd64 + fio_2.0.8-2_amd64 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_amd64 + firedns_0.9.12+dfsg-3_amd64 + firestarter_1.0.3-11_amd64 + fische_3.2.2-3_amd64 + fish_1.23.1+20120106.git8b407a3-1_amd64 + fish-dbg_1.23.1+20120106.git8b407a3-1_amd64 + fityk_0.9.8-3+b1_amd64 + fiu-utils_0.90-3_amd64 + fixincludes_1:4.7.2-5_amd64 + fizmo-console_0.7.2-2_amd64 + fizmo-ncursesw_0.7.2-2_amd64 + fl-cow_0.6-4.1_amd64 + flac_1.2.1-6_amd64 + flactag_2.0.4-1_amd64 + flake_0.11-2_amd64 + flam3_3.0.1-2.1_amd64 + flamerobin_0.9.3~svn+2220-1_amd64 + flare_0.15.1-1_amd64 + flashrom_0.9.5.2+r1546-1_amd64 + flasm_1.62-6_amd64 + flatzinc_3.7.3-1_amd64 + fldiff_1.1+0-2_amd64 + fldigi_3.21.48-1_amd64 + fldigi-dbg_3.21.48-1_amd64 + flex_2.5.35-10.1_amd64 + flex-old_2.5.4a-10_amd64 + flexc++_0.98.00-1_amd64 + flexloader_0.03-2_amd64 + flexml_1.9.2-1_amd64 + flip_1.20-1_amd64 + flite_1.4-release-6_amd64 + flite1-dev_1.4-release-6_amd64 + floatbg_1.0-28_amd64 + flobopuyo_0.20-5_amd64 + flog_1.8-3_amd64 + floppyd_4.0.17-1_amd64 + florence_0.5.1-1_amd64 + flow-tools_1:0.68-12.1+b1_amd64 + flow-tools-dev_1:0.68-12.1+b1_amd64 + flpsed_0.5.2-1_amd64 + fltk1.1-games_1.1.10-14_amd64 + fltk1.3-games_1.3.0-8_amd64 + fluid_1.3.0-8_amd64 + fluidsynth_1.1.5-2_amd64 + fluidsynth-dssi_1.0.0-6_amd64 + flumotion_0.10.0-3_amd64 + flush_0.9.12-3_amd64 + fluxbox_1.3.2-4_amd64 + flvmeta_1.0.11-1_amd64 + flvstreamer_2.1c1-1_amd64 + flvtool2_1.0.6-4_amd64 + flwm_1.02+cvs20080422-9_amd64 + flwm-dbg_1.02+cvs20080422-9_amd64 + fmit_0.99.2-1_amd64 + fmtools_2.0.5_amd64 + fntsample_3.2-1+b1_amd64 + focuswriter_1.3.6-1_amd64 + folks-tools_0.6.9-1+b1_amd64 + fondu_0.0.20060102-4_amd64 + font-manager_0.5.7-4_amd64 + fontconfig_2.9.0-7.1_amd64 + fontforge_0.0.20120101+git-2_amd64 + fontforge-dbg_0.0.20120101+git-2_amd64 + fontforge-extras_0.3-2_amd64 + fontforge-nox_0.0.20120101+git-2_amd64 + fontmatrix_0.6.0+svn20110930-1.1_amd64 + fonts-maitreya_6.0.5-2_amd64 + fonttools-eexecop_2.3-1+b2_amd64 + foo-yc20_1.3.0-5_amd64 + foobillard_3.0a-5_amd64 + fookb-plainx_3.0-3_amd64 + fookb-wmaker_3.0-3_amd64 + foomatic-db-engine_4.0.8-3_amd64 + foomatic-filters_4.0.17-1_amd64 + foremost_1.5.7-4_amd64 + forked-daapd_0.19gcd-2.1_amd64 + formed_3.3f-1.1_amd64 + fortune-mod_1:1.99.1-4_amd64 + fortune-zh_1.9_amd64 + fosfat_0.4.0-3_amd64 + fosfat-dbg_0.4.0-3_amd64 + fosfat-dev_0.4.0-3_amd64 + fossil_1:1.22.1+dfsg-0.1_amd64 + fotowall_0.9-8_amd64 + fotoxx_11.11.1-1.1_amd64 + foundry_0.0.20100226-1+b1_amd64 + foxtrotgps_1.1.1-2_amd64 + foxtrotgps-dbg_1.1.1-2_amd64 + fp-compiler_2.6.0-9_amd64 + fp-compiler-2.6.0_2.6.0-9_amd64 + fp-ide_2.6.0-9_amd64 + fp-ide-2.6.0_2.6.0-9_amd64 + fp-units-base_2.6.0-9_amd64 + fp-units-base-2.6.0_2.6.0-9_amd64 + fp-units-db_2.6.0-9_amd64 + fp-units-db-2.6.0_2.6.0-9_amd64 + fp-units-fcl_2.6.0-9_amd64 + fp-units-fcl-2.6.0_2.6.0-9_amd64 + fp-units-fv_2.6.0-9_amd64 + fp-units-fv-2.6.0_2.6.0-9_amd64 + fp-units-gfx_2.6.0-9_amd64 + fp-units-gfx-2.6.0_2.6.0-9_amd64 + fp-units-gnome1_2.6.0-9_amd64 + fp-units-gnome1-2.6.0_2.6.0-9_amd64 + fp-units-gtk_2.6.0-9_amd64 + fp-units-gtk-2.6.0_2.6.0-9_amd64 + fp-units-gtk2_2.6.0-9_amd64 + fp-units-gtk2-2.6.0_2.6.0-9_amd64 + fp-units-math_2.6.0-9_amd64 + fp-units-math-2.6.0_2.6.0-9_amd64 + fp-units-misc_2.6.0-9_amd64 + fp-units-misc-2.6.0_2.6.0-9_amd64 + fp-units-multimedia_2.6.0-9_amd64 + fp-units-multimedia-2.6.0_2.6.0-9_amd64 + fp-units-net_2.6.0-9_amd64 + fp-units-net-2.6.0_2.6.0-9_amd64 + fp-units-rtl_2.6.0-9_amd64 + fp-units-rtl-2.6.0_2.6.0-9_amd64 + fp-utils_2.6.0-9_amd64 + fp-utils-2.6.0_2.6.0-9_amd64 + fped_0.0+r5986-1_amd64 + fping_3.2-1_amd64 + fpm2_0.79-3_amd64 + fprint-demo_20080303git-5_amd64 + fprintd_0.4.1-5-g73edad0-3_amd64 + fprobe_1.1-7.3_amd64 + fprobe-ulog_1.1-7.3_amd64 + fqterm_0.9.6.10-1.1_amd64 + fracplanet_0.4.0-3_amd64 + frama-c_20111001+nitrogen+dfsg-4_amd64 + frama-c-base_20111001+nitrogen+dfsg-4_amd64 + francine_0.99.8orig-6_amd64 + fraqtive_0.4.5-6_amd64 + fraqtive-dbg_0.4.5-6_amd64 + freeaccount_0.7.6-1_amd64 + freebirth_0.3.2-8_amd64 + freebsd-buildutils_9.0-11_amd64 + freecdb_0.75_amd64 + freecell-solver-bin_3.12.0-1_amd64 + freeciv-client-extras_2.3.2-1_amd64 + freeciv-client-gtk_2.3.2-1_amd64 + freeciv-client-sdl_2.3.2-1_amd64 + freeciv-client-xaw3d_2.3.2-1_amd64 + freeciv-server_2.3.2-1_amd64 + freecode-submit_2.4-1_amd64 + freecraft_1:1.20-1.1_amd64 + freecraft-dbg_1:1.20-1.1_amd64 + freediams_0.7.6-1_amd64 + freedink-dfarc_3.10-1.1_amd64 + freedink-dfarc-dbg_3.10-1.1_amd64 + freedink-engine_1.08.20120427-2.1_amd64 + freedink-engine-dbg_1.08.20120427-2.1_amd64 + freedroid_1.0.2+cvs040112-4_amd64 + freedroidrpg_0.15.1-1_amd64 + freefem_3.5.8-5_amd64 + freefem++_3.19.1-1_amd64 + freefem3d_1.0pre10-3.1_amd64 + freegish_1.53+git20101011+dfsg-2_amd64 + freegish-dbg_1.53+git20101011+dfsg-2_amd64 + freeglut3_2.6.0-4_amd64 + freeglut3-dbg_2.6.0-4_amd64 + freeglut3-dev_2.6.0-4_amd64 + freehdl_0.0.7-1.1_amd64 + freeipmi-bmc-watchdog_1.1.5-3_amd64 + freeipmi-ipmidetect_1.1.5-3_amd64 + freeipmi-tools_1.1.5-3_amd64 + freemat_4.0-5_amd64 + freemedforms-emr_0.7.6-1_amd64 + freemedforms-libs_0.7.6-1_amd64 + freenect_1:0.1.2+dfsg-6_amd64 + freepops_0.2.9-7_amd64 + freepops-updater-fltk_0.2.9-7_amd64 + freepops-updater-gnome_0.2.9-7_amd64 + freeradius_2.1.12+dfsg-1.2_amd64 + freeradius-dbg_2.1.12+dfsg-1.2_amd64 + freeradius-iodbc_2.1.12+dfsg-1.2_amd64 + freeradius-krb5_2.1.12+dfsg-1.2_amd64 + freeradius-ldap_2.1.12+dfsg-1.2_amd64 + freeradius-mysql_2.1.12+dfsg-1.2_amd64 + freeradius-postgresql_2.1.12+dfsg-1.2_amd64 + freeradius-utils_2.1.12+dfsg-1.2_amd64 + freerdp-dbg_1.0.1-1.1+deb7u2_amd64 + freerdp-x11_1.0.1-1.1+deb7u2_amd64 + freesci_0.6.4-7_amd64 + freespacenotifier_4:4.8.4-6_amd64 + freesweep_0.90-2_amd64 + freetalk_3.2-11_amd64 + freetds-bin_0.91-2+deb7u1_amd64 + freetds-dev_0.91-2+deb7u1_amd64 + freetennis_0.4.8-9_amd64 + freetuxtv_0.6.5~dfsg1-1_amd64 + freetype2-demos_2.4.9-1.1_amd64 + freewheeling_0.6-1.1+b1_amd64 + freewnn-cserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-jserver_1.1.1~a021+cvs20100325-6_amd64 + freewnn-kserver_1.1.1~a021+cvs20100325-6_amd64 + frei0r-plugins_1.1.22git20091109-1.2_amd64 + frei0r-plugins-dev_1.1.22git20091109-1.2_amd64 + freqtweak_0.7.2-4+b1_amd64 + fritzing_0.6.3b+dfsg-3.1_amd64 + frog_0.12.15-3_amd64 + frogr_0.7-2_amd64 + frotz_2.43-4_amd64 + frown_0.6.1-13_amd64 + frozen-bubble_2.212-3_amd64 + fruit_2.1.dfsg-6_amd64 + fsarchiver_0.6.15-1_amd64 + fsgateway_0.1.1-3_amd64 + fsmark_3.3-1_amd64 + fso-datad_0.11.0-1_amd64 + fso-datad-dbg_0.11.0-1_amd64 + fso-deviced_0.11.4-1+b1_amd64 + fso-deviced-dbg_0.11.4-1+b1_amd64 + fso-deviced-player-canberra_0.11.4-1+b1_amd64 + fso-deviced-player-gstreamer_0.11.4-1+b1_amd64 + fso-gpsd_0.8-3.1_amd64 + fso-gsm0710muxd_0.9.3.1-3_amd64 + fso-gsmd_0.11.3-2_amd64 + fso-gsmd-dbg_0.11.3-2_amd64 + fso-gsmd-ezx_0.11.3-2_amd64 + fso-gsmd-gta04_0.11.3-2_amd64 + fso-gsmd-htc_0.11.3-2_amd64 + fso-gsmd-openmoko_0.11.3-2_amd64 + fso-usaged_0.11.0-1_amd64 + fso-usaged-dbg_0.11.0-1_amd64 + fspanel_0.7-13_amd64 + fspy_0.1.1-1_amd64 + fstransform_0.9.3-1_amd64 + fstrcmp_0.4.D001-1+deb7u1_amd64 + fsvs_1.2.3-0+nmu1_amd64 + fswebcam_20110717-1_amd64 + ftdi-eeprom_0.3-2_amd64 + fte_0.50.2b6-1_amd64 + fte-console_0.50.2b6-1_amd64 + fte-terminal_0.50.2b6-1_amd64 + fte-xwindow_0.50.2b6-1_amd64 + fteqcc_3343+svn3400-3_amd64 + ftjam_2.5.2-1.1_amd64 + ftnchek_3.3.1-4_amd64 + ftp_0.17-27_amd64 + ftp-proxy_1.9.2.4-8_amd64 + ftp-ssl_0.17.23+0.2-1+b1_amd64 + ftp.app_0.3-1_amd64 + ftpcopy_0.6.7-3_amd64 + ftpd_0.17-34_amd64 + ftpd-ssl_0.17.33+0.3-1_amd64 + ftpgrab_0.1.5-3_amd64 + ftplib-dev_3.1-1-9_amd64 + ftplib3_3.1-1-9_amd64 + ftpmirror_1.96+dfsg-13_amd64 + fullquottel_0.1.2-2_amd64 + funnelweb_3.2-4.2_amd64 + funtools_1.4.4-3_amd64 + fuse_2.9.0-2+deb7u1_amd64 + fuse-convmvfs_0.2.6-2_amd64 + fuse-dbg_2.9.0-2+deb7u1_amd64 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_amd64 + fuse-emulator-utils_1.0.0-4_amd64 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_amd64 + fusedav_0.2-3.1_amd64 + fuseext2_0.4-1_amd64 + fusefat_0.1a-1_amd64 + fuseiso_20070708-3_amd64 + fuseiso9660_0.3-1_amd64 + fusesmb_0.8.7-1.2_amd64 + fusioninventory-agent_2.2.3-8_amd64 + fuzz_0.6-14_amd64 + fvwm_1:2.5.30.ds-1.1_amd64 + fvwm1_1.24r-55_amd64 + fwbuilder_5.1.0-3_amd64 + fwbuilder-dbg_5.1.0-3_amd64 + fweb_1.62-11.1_amd64 + fwknop-client_2.0.0rc2-2+deb7u2_amd64 + fwknop-server_2.0.0rc2-2+deb7u2_amd64 + fwlogwatch_1.2-2_amd64 + fxcyberjack_3.99.5final.sp03-1_amd64 + fxload_0.0.20081013-1_amd64 + fxt-tools_0.2.6-2_amd64 + fyre_1.0.1-4_amd64 + g++_4:4.7.2-1_amd64 + g++-4.4_4.4.7-2_amd64 + g++-4.4-multilib_4.4.7-2_amd64 + g++-4.6_4.6.3-14_amd64 + g++-4.6-multilib_4.6.3-14_amd64 + g++-4.7_4.7.2-5_amd64 + g++-4.7-multilib_4.7.2-5_amd64 + g++-mingw-w64-i686_4.6.3-14+8_amd64 + g++-mingw-w64-x86-64_4.6.3-14+8_amd64 + g++-multilib_4:4.7.2-1_amd64 + g15composer_3.2-2_amd64 + g15daemon_1.9.5.3-8.2_amd64 + g15macro_1.0.3-3_amd64 + g15mpd_1.2svn.0.svn319-3_amd64 + g15stats_1.9.2-2_amd64 + g2ipmsg_0.9.6+dfsg-1.1_amd64 + g3data_1:1.5.3-2_amd64 + g3dviewer_0.2.99.5~svn130-1_amd64 + g3dviewer-dbg_0.2.99.5~svn130-1_amd64 + gabedit_2.4.2-2_amd64 + gadmin-bind_0.2.5-2_amd64 + gadmin-bind-dbg_0.2.5-2_amd64 + gadmin-openvpn-client_0.1.2-4_amd64 + gadmin-openvpn-client-dbg_0.1.2-4_amd64 + gadmin-openvpn-server_0.1.5-3.1_amd64 + gadmin-openvpn-server-dbg_0.1.5-3.1_amd64 + gadmin-proftpd_1:0.4.2-1_amd64 + gadmin-proftpd-dbg_1:0.4.2-1_amd64 + gadmin-rsync_0.1.7-1_amd64 + gadmin-rsync-dbg_0.1.7-1_amd64 + gadmin-samba_0.2.9-3_amd64 + gadmin-samba-dbg_0.2.9-3_amd64 + gaffitter_0.6.0-1_amd64 + gaiksaurus_1.2.1+dev-0.12-6.1_amd64 + galax_1.1-10+b3_amd64 + galax-extra_1.1-10+b3_amd64 + galaxd_1.1-10+b3_amd64 + galculator_1.3.4-1_amd64 + galleta_1.0+20040505-5+b1_amd64 + gamazons_0.83-4_amd64 + gambas3-dev_3.1.1-2+b2_amd64 + gambas3-gb-cairo_3.1.1-2+b2_amd64 + gambas3-gb-compress_3.1.1-2+b2_amd64 + gambas3-gb-compress-bzlib2_3.1.1-2+b2_amd64 + gambas3-gb-compress-zlib_3.1.1-2+b2_amd64 + gambas3-gb-crypt_3.1.1-2+b2_amd64 + gambas3-gb-db_3.1.1-2+b2_amd64 + gambas3-gb-db-mysql_3.1.1-2+b2_amd64 + gambas3-gb-db-odbc_3.1.1-2+b2_amd64 + gambas3-gb-db-postgresql_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite2_3.1.1-2+b2_amd64 + gambas3-gb-db-sqlite3_3.1.1-2+b2_amd64 + gambas3-gb-dbus_3.1.1-2+b2_amd64 + gambas3-gb-desktop_3.1.1-2+b2_amd64 + gambas3-gb-gtk_3.1.1-2+b2_amd64 + gambas3-gb-gui_3.1.1-2+b2_amd64 + gambas3-gb-image_3.1.1-2+b2_amd64 + gambas3-gb-image-effect_3.1.1-2+b2_amd64 + gambas3-gb-image-imlib_3.1.1-2+b2_amd64 + gambas3-gb-image-io_3.1.1-2+b2_amd64 + gambas3-gb-mysql_3.1.1-2+b2_amd64 + gambas3-gb-net_3.1.1-2+b2_amd64 + gambas3-gb-net-curl_3.1.1-2+b2_amd64 + gambas3-gb-net-smtp_3.1.1-2+b2_amd64 + gambas3-gb-opengl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glsl_3.1.1-2+b2_amd64 + gambas3-gb-opengl-glu_3.1.1-2+b2_amd64 + gambas3-gb-option_3.1.1-2+b2_amd64 + gambas3-gb-pcre_3.1.1-2+b2_amd64 + gambas3-gb-pdf_3.1.1-2+b2_amd64 + gambas3-gb-qt4_3.1.1-2+b2_amd64 + gambas3-gb-qt4-ext_3.1.1-2+b2_amd64 + gambas3-gb-qt4-opengl_3.1.1-2+b2_amd64 + gambas3-gb-qt4-webkit_3.1.1-2+b2_amd64 + gambas3-gb-sdl_3.1.1-2+b2_amd64 + gambas3-gb-sdl-sound_3.1.1-2+b2_amd64 + gambas3-gb-signal_3.1.1-2+b2_amd64 + gambas3-gb-v4l_3.1.1-2+b2_amd64 + gambas3-gb-vb_3.1.1-2+b2_amd64 + gambas3-gb-xml_3.1.1-2+b2_amd64 + gambas3-gb-xml-rpc_3.1.1-2+b2_amd64 + gambas3-gb-xml-xslt_3.1.1-2+b2_amd64 + gambas3-runtime_3.1.1-2+b2_amd64 + gambas3-script_3.1.1-2+b2_amd64 + gambc_4.2.8-1.1_amd64 + gambit_0.2010.09.01-1.1_amd64 + gamgi_0.15.8-1_amd64 + gamin_0.1.10-4.1_amd64 + gamine_1.1-2_amd64 + gammu_1.31.90-1+b1_amd64 + gammu-smsd_1.31.90-1+b1_amd64 + gamt_1.3-1_amd64 + ganeti-htools_2.5.2-1_amd64 + ganglia-modules-linux_1.3.4-6_amd64 + ganglia-monitor_3.3.8-1+nmu1_amd64 + gap-core_4r4p12-2_amd64 + gap-dev_4r4p12-2_amd64 + gap-guava_3.6-2_amd64 + garden-of-coloured-lights_1.0.8-1+b1_amd64 + gargoyle-free_2011.1-2_amd64 + garlic_1.6-1.1_amd64 + garmin-ant-downloader_0:20110626-1_amd64 + garmin-forerunner-tools_0.10-3_amd64 + gatling_0.12cvs20120114-4_amd64 + gauche_0.9.1-5.1_amd64 + gauche-c-wrapper_0.6.1-4.1_amd64 + gauche-dev_0.9.1-5.1_amd64 + gauche-gdbm_0.9.1-5.1_amd64 + gauche-gl_0.4.4-5+b1_amd64 + gauche-zlib_0.9.1-5.1_amd64 + gav_0.9.0-3_amd64 + gawk_1:4.0.1+dfsg-2.1_amd64 + gbase_0.5-2.2_amd64 + gbatnav_1.0.4cvs20051004-5_amd64 + gbemol_0.3.2-2_amd64 + gbgoffice_1.4-8_amd64 + gbonds_2.0.3-2.1_amd64 + gbrowse-calign_2.48~dfsg-1_amd64 + gbsplay_0.0.91-1_amd64 + gcal_3.6.1-2_amd64 + gcalctool_6.4.2.1-3_amd64 + gcb_1:1.07-3_amd64 + gcc_4:4.7.2-1_amd64 + gcc-4.4_4.4.7-2_amd64 + gcc-4.4-base_4.4.7-2_amd64 + gcc-4.4-multilib_4.4.7-2_amd64 + gcc-4.6_4.6.3-14_amd64 + gcc-4.6-base_4.6.3-14_amd64 + gcc-4.6-multilib_4.6.3-14_amd64 + gcc-4.6-plugin-dev_4.6.3-14_amd64 + gcc-4.7_4.7.2-5_amd64 + gcc-4.7-base_4.7.2-5_amd64 + gcc-4.7-multilib_4.7.2-5_amd64 + gcc-4.7-plugin-dev_4.7.2-5_amd64 + gcc-avr_1:4.7.2-2_amd64 + gcc-h8300-hms_1:3.4.6+dfsg-1_amd64 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_amd64 + gcc-mingw-w64-base_4.6.3-14+8_amd64 + gcc-mingw-w64-i686_4.6.3-14+8_amd64 + gcc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_amd64 + gcc-multilib_4:4.7.2-1_amd64 + gccgo_4:4.7.2-1_amd64 + gccgo-4.7_4.7.2-5_amd64 + gccgo-4.7-multilib_4.7.2-5_amd64 + gccgo-multilib_4:4.7.2-1_amd64 + gccxml_0.9.0+cvs20120420-4_amd64 + gcdmaster_1:1.2.3-0.3_amd64 + gchempaint_0.12.12-1_amd64 + gcin_2.7.6.1+dfsg-1_amd64 + gcin-anthy_2.7.6.1+dfsg-1_amd64 + gcin-chewing_2.7.6.1+dfsg-1_amd64 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_amd64 + gcin-qt4-immodule_2.7.6.1+dfsg-1_amd64 + gcin-tables_2.7.6.1+dfsg-1_amd64 + gcj-4.6-base_4.6.3-1_amd64 + gcj-4.6-jdk_4.6.3-1_amd64 + gcj-4.6-jre_4.6.3-1_amd64 + gcj-4.6-jre-headless_4.6.3-1_amd64 + gcj-4.7-base_4.7.2-3_amd64 + gcj-4.7-jdk_4.7.2-3_amd64 + gcj-4.7-jre_4.7.2-3_amd64 + gcj-4.7-jre-headless_4.7.2-3_amd64 + gcj-jdk_4:4.7.2-1_amd64 + gcj-jre_4:4.7.2-1_amd64 + gcj-jre-headless_4:4.7.2-1_amd64 + gcj-native-helper_1:1.6-47_amd64 + gcl_2.6.7+dfsga-1_amd64 + gcolor2_0.4-2.1_amd64 + gcompris_12.01-1_amd64 + gcompris-dbg_12.01-1_amd64 + gconf-defaults-service_3.2.5-1+build1_amd64 + gconf-editor_3.0.1-1_amd64 + gconf-gsettings-backend_3.2.5-1+build1_amd64 + gconf-service_3.2.5-1+build1_amd64 + gconf2_3.2.5-1+build1_amd64 + gconjugue_0.7.2-1_amd64 + gcpegg_5.1-13_amd64 + gcr_3.4.1-3_amd64 + gcrystal_0.12.12-1_amd64 + gcu-bin_0.12.12-1_amd64 + gcu-plugin_0.12.12-1_amd64 + gcx_1.3-1.1_amd64 + gdal-bin_1.9.0-3.1_amd64 + gdb_7.4.1+dfsg-0.1_amd64 + gdb-avr_7.4-1_amd64 + gdb-mingw-w64_7.4.1-1.1+5_amd64 + gdb-minimal_7.4.1+dfsg-0.1_amd64 + gdb-msp430_7.2a~mspgcc-20111205-1_amd64 + gdb-multiarch_7.4.1+dfsg-0.1_amd64 + gdbserver_7.4.1+dfsg-0.1_amd64 + gdc_4.6.3-8_amd64 + gdc-4.4_1.063-4.4.7-1_amd64 + gdc-4.6_0.29.1-4.6.3-2_amd64 + gdc-v1_4.6.3-8_amd64 + gddccontrol_0.4.2-10_amd64 + gddrescue_1.16-1_amd64 + gdesklets_0.36.1-5+b1_amd64 + gdf-tools_0.1.2-2_amd64 + gdigi_0.2.0+hg20110905r195-1_amd64 + gdis_0.90-4_amd64 + gdisk_0.8.5-1_amd64 + gdm3_3.4.1-8_amd64 + gdmap_0.8.1-2_amd64 + gdpc_2.2.5-2_amd64 + geany_1.22+dfsg-2_amd64 + geany-plugin-addons_0.21.1.dfsg-4_amd64 + geany-plugin-codenav_0.21.1.dfsg-4_amd64 + geany-plugin-debugger_0.21.1.dfsg-4_amd64 + geany-plugin-doc_0.21.1.dfsg-4_amd64 + geany-plugin-extrasel_0.21.1.dfsg-4_amd64 + geany-plugin-gdb_0.21.1.dfsg-4_amd64 + geany-plugin-gendoc_0.21.1.dfsg-4_amd64 + geany-plugin-gproject_0.21.1.dfsg-4_amd64 + geany-plugin-insertnum_0.21.1.dfsg-4_amd64 + geany-plugin-latex_0.21.1.dfsg-4_amd64 + geany-plugin-lipsum_0.21.1.dfsg-4_amd64 + geany-plugin-lua_0.21.1.dfsg-4_amd64 + geany-plugin-macro_0.21.1.dfsg-4_amd64 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_amd64 + geany-plugin-pg_0.21.1.dfsg-4_amd64 + geany-plugin-prettyprinter_0.21.1.dfsg-4_amd64 + geany-plugin-prj_0.21.1.dfsg-4_amd64 + geany-plugin-sendmail_0.21.1.dfsg-4_amd64 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_amd64 + geany-plugin-spellcheck_0.21.1.dfsg-4_amd64 + geany-plugin-tableconvert_0.21.1.dfsg-4_amd64 + geany-plugin-treebrowser_0.21.1.dfsg-4_amd64 + geany-plugin-updatechecker_0.21.1.dfsg-4_amd64 + geany-plugin-vc_0.21.1.dfsg-4_amd64 + geany-plugin-webhelper_0.21.1.dfsg-4_amd64 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_amd64 + gearhead_1.100-2_amd64 + gearhead2_0.628-1_amd64 + gearman-job-server_0.33-2_amd64 + gearman-tools_0.33-2_amd64 + gecko-mediaplayer_1.0.6-1_amd64 + geda-gattrib_1:1.6.2-4.3_amd64 + geda-gnetlist_1:1.6.2-4.3_amd64 + geda-gschem_1:1.6.2-4.3_amd64 + geda-gsymcheck_1:1.6.2-4.3_amd64 + geda-utils_1:1.6.2-4.3_amd64 + gedit_3.4.2-1_amd64 + gedit-plugins_3.4.0-1_amd64 + gedit-valatoys-plugin_0.12.1-3_amd64 + gedit-valatoys-plugin-dbg_0.12.1-3_amd64 + gedit-valencia-plugin_0.3.0-3.1_amd64 + geekcode_1.7.3-5_amd64 + geeqie_1:1.0-10.1_amd64 + geeqie-dbg_1:1.0-10.1_amd64 + gegl_0.2.0-2+nmu1_amd64 + geki2_2.0.3-8_amd64 + geki3_1.0.3-7_amd64 + gelemental_1.2.0-8_amd64 + gem_1:0.93.3-5_amd64 + gem-extra_1:0.93.3-5_amd64 + gem-plugin-dc1394_1:0.93.3-5_amd64 + gem-plugin-dv4l_1:0.93.3-5_amd64 + gem-plugin-gmerlin_1:0.93.3-5_amd64 + gem-plugin-jpeg_1:0.93.3-5_amd64 + gem-plugin-lqt_1:0.93.3-5_amd64 + gem-plugin-magick_1:0.93.3-5_amd64 + gem-plugin-mpeg3_1:0.93.3-5_amd64 + gem-plugin-sgi_1:0.93.3-5_amd64 + gem-plugin-tiff_1:0.93.3-5_amd64 + gem-plugin-unicap_1:0.93.3-5_amd64 + gem-plugin-v4l2_1:0.93.3-5_amd64 + gemanx-gtk2_0.1.0.3-2_amd64 + gemdropx_0.9-6_amd64 + gems_1.1.1-2_amd64 + genders_1.18-1_amd64 + geneweb_6.05.1-1_amd64 + genext2fs_1.4.1-4_amd64 + gengetopt_2.22.5-1_amd64 + genisoimage_9:1.1.11-2_amd64 + genisovh_0.1-3_amd64 + genius_1.0.14-1_amd64 + genius-common_1.0.14-1_amd64 + genius-dev_1.0.14-1_amd64 + genparse_0.9.1-1_amd64 + genromfs_0.5.2-2_amd64 + gentle_1.9+cvs20100605+dfsg1-1_amd64 + gentoo_0.19.13-2_amd64 + genus2reduction_0.3-2.2_amd64 + geoclue_0.12.0-4_amd64 + geoclue-examples_0.12.0-4_amd64 + geoclue-geonames_0.12.0-4_amd64 + geoclue-gsmloc_0.12.0-4_amd64 + geoclue-hostip_0.12.0-4_amd64 + geoclue-localnet_0.12.0-4_amd64 + geoclue-manual_0.12.0-4_amd64 + geoclue-nominatim_0.12.0-4_amd64 + geoclue-plazes_0.12.0-4_amd64 + geoclue-skyhook_0.12.0-4_amd64 + geoclue-yahoo_0.12.0-4_amd64 + geogebra-kde_1.0-1_amd64 + geographiclib-tools_1.21-1_amd64 + geoip-bin_1.4.8+dfsg-3_amd64 + geomview_1.9.4-3_amd64 + geotiff-bin_1.3.0+dfsg-3_amd64 + gerbv_2.6.0-1_amd64 + gerstensaft_0.3-4_amd64 + ges0.10-tools_0.10.1-2_amd64 + gesftpserver_0.1-3_amd64 + getstream_20081204-1.1_amd64 + gettext_0.18.1.1-9_amd64 + gettext-base_0.18.1.1-9_amd64 + gexec_0.4-1_amd64 + gfan_0.3dfsg-1.1_amd64 + gfarm-client_2.4.1-1.1_amd64 + gfarm2fs_1.2.2-1.1_amd64 + gff2aplot_2.0-7_amd64 + gfm_1.03-2_amd64 + gfmd_2.4.1-1.1_amd64 + gforth_0.7.0+ds2-0.1_amd64 + gforth-lib_0.7.0+ds2-0.1_amd64 + gfortran_4:4.7.2-1_amd64 + gfortran-4.4_4.4.7-2_amd64 + gfortran-4.4-multilib_4.4.7-2_amd64 + gfortran-4.6_4.6.3-14_amd64 + gfortran-4.6-multilib_4.6.3-14_amd64 + gfortran-4.7_4.7.2-5_amd64 + gfortran-4.7-multilib_4.7.2-5_amd64 + gfortran-mingw-w64-i686_4.6.3-14+8_amd64 + gfortran-mingw-w64-x86-64_4.6.3-14+8_amd64 + gfortran-multilib_4:4.7.2-1_amd64 + gfpoken_0.32-2_amd64 + gfs-pcmk_3.0.12-3.2+deb7u2_amd64 + gfs-tools_3.0.12-3.2+deb7u2_amd64 + gfs2-tools_3.0.12-3.2+deb7u2_amd64 + gfsd_2.4.1-1.1_amd64 + gftp-common_2.0.19-4_amd64 + gftp-gtk_2.0.19-4_amd64 + gftp-text_2.0.19-4_amd64 + gfxboot_4.5.0-3_amd64 + gfxboot-dev_4.5.0-3_amd64 + ggobi_2.1.10-4_amd64 + ghc_7.4.1-4_amd64 + ghc-dynamic_7.4.1-4_amd64 + ghc-haddock_7.4.1-4_amd64 + ghc-mod_1.10.18-1_amd64 + ghc-prof_7.4.1-4_amd64 + ghc-testsuite_7.4.1-3_amd64 + ghemical_3.0.0-1_amd64 + ghex_3.4.1-1_amd64 + ghkl_4.0.3-4_amd64 + ghostess_20120105-1_amd64 + ghostscript_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_amd64 + ghostscript-x_9.05~dfsg-6.3+deb7u1_amd64 + giblib-dev_1.2.4-8_amd64 + giblib1_1.2.4-8_amd64 + giblib1-dbg_1.2.4-8_amd64 + gif2apng_1.7-3_amd64 + gif2png_2.5.8-1_amd64 + giflib-dbg_4.1.6-10_amd64 + giflib-tools_4.1.6-10_amd64 + gifsicle_1.67-1_amd64 + gifti-bin_1.0.9-1_amd64 + giftrans_1.12.2-16_amd64 + gigedit_0.2.0-1_amd64 + giggle_0.6.1-2+b1_amd64 + giggle-personal-details-plugin_0.6.1-2+b1_amd64 + giggle-terminal-view-plugin_0.6.1-2+b1_amd64 + gigolo_0.4.1+dfsg-1_amd64 + gigolo-dbg_0.4.1+dfsg-1_amd64 + gigtools_3.3.0-2_amd64 + gimmix_0.5.7.1-4_amd64 + gimp_2.8.2-2+deb7u1_amd64 + gimp-cbmplugs_1.2.2-1_amd64 + gimp-dbg_2.8.2-2+deb7u1_amd64 + gimp-dcraw_1.31-1.1_amd64 + gimp-dds_2.0.9-3_amd64 + gimp-dimage-color_1.1.0-3.1_amd64 + gimp-gap_2.6.0+dfsg-3_amd64 + gimp-gluas_0.1.20-1_amd64 + gimp-gmic_1.5.1.6+dfsg-4_amd64 + gimp-gutenprint_5.2.9-1_amd64 + gimp-lensfun_0.2.1-1+b1_amd64 + gimp-plugin-registry_5.20120621_amd64 + gimp-texturize_2.1-2_amd64 + gimp-ufraw_0.18-2_amd64 + ginac-tools_1.6.2-1_amd64 + ginkgocadx_2.12.0.4889-1_amd64 + gip_1.7.0-1-3_amd64 + gir1.2-accountsservice-1.0_0.6.21-8_amd64 + gir1.2-anjuta-3.0_2:3.4.3-1_amd64 + gir1.2-appindicator-0.1_0.4.92-2_amd64 + gir1.2-appindicator3-0.1_0.4.92-2_amd64 + gir1.2-atk-1.0_2.4.0-2_amd64 + gir1.2-atspi-2.0_2.5.3-2_amd64 + gir1.2-brasero-3.0_3.4.1-4_amd64 + gir1.2-caribou-1.0_0.4.4-1_amd64 + gir1.2-champlain-0.12_0.12.3-1_amd64 + gir1.2-cheese-3.0_3.4.2-2_amd64 + gir1.2-clinica-0.2_0.2.1~dfsg-1_amd64 + gir1.2-clutter-1.0_1.10.8-2_amd64 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_amd64 + gir1.2-cogl-1.0_1.10.2-7_amd64 + gir1.2-coglpango-1.0_1.10.2-7_amd64 + gir1.2-colord-1.0_0.1.21-1_amd64 + gir1.2-colorhug-1.0_0.1.10-1_amd64 + gir1.2-cryptui-0.0_3.2.2-1_amd64 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_amd64 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_amd64 + gir1.2-dee-1.0_1.0.10-3_amd64 + gir1.2-ebook-1.2_3.4.4-3_amd64 + gir1.2-ecalendar-1.2_3.4.4-3_amd64 + gir1.2-edataserver-1.2_3.4.4-3_amd64 + gir1.2-emerillon-0.2_0.1.90-1_amd64 + gir1.2-epiphany-3.4_3.4.2-2.1_amd64 + gir1.2-evd-0.1_0.1.20-2_amd64 + gir1.2-evince-3.0_3.4.0-3.1_amd64 + gir1.2-farstream-0.1_0.1.2-1_amd64 + gir1.2-fcitx-1.0_1:4.2.4.1-7_amd64 + gir1.2-folks-0.6_0.6.9-1+b1_amd64 + gir1.2-freedesktop_1.32.1-1_amd64 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_amd64 + gir1.2-gck-1_3.4.1-3_amd64 + gir1.2-gconf-2.0_3.2.5-1+build1_amd64 + gir1.2-gcr-3_3.4.1-3_amd64 + gir1.2-gda-5.0_5.0.3-2_amd64 + gir1.2-gdata-0.0_0.12.0-1_amd64 + gir1.2-gdesktopenums-3.0_3.4.2-3_amd64 + gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64 + gir1.2-gdl-3_3.4.2-1_amd64 + gir1.2-gee-1.0_0.6.4-2_amd64 + gir1.2-geocodeglib-1.0_0.99.0-1_amd64 + gir1.2-ges-0.10_0.10.1-2_amd64 + gir1.2-gkbd-3.0_3.4.0.2-1_amd64 + gir1.2-gladeui-2.0_3.12.1-1_amd64 + gir1.2-glib-2.0_1.32.1-1_amd64 + gir1.2-gmenu-3.0_3.4.2-5_amd64 + gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64 + gir1.2-gnomedesktop-3.0_3.4.2-1_amd64 + gir1.2-gnomekeyring-1.0_3.4.1-1_amd64 + gir1.2-goa-1.0_3.4.2-2_amd64 + gir1.2-grilo-0.1_0.1.19-1_amd64 + gir1.2-gssdp-1.0_0.12.2.1-2_amd64 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_amd64 + gir1.2-gstreamer-0.10_0.10.36-1.2_amd64 + gir1.2-gtk-2.0_2.24.10-2_amd64 + gir1.2-gtk-3.0_3.4.2-7_amd64 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_amd64 + gir1.2-gtkchamplain-0.12_0.12.3-1_amd64 + gir1.2-gtkclutter-1.0_1.2.0-2_amd64 + gir1.2-gtksource-3.0_3.4.2-1_amd64 + gir1.2-gtop-2.0_2.28.4-3_amd64 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_amd64 + gir1.2-gudev-1.0_175-7.2_amd64 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_amd64 + gir1.2-gupnp-1.0_0.18.4-1_amd64 + gir1.2-gupnp-av-1.0_0.10.3-1_amd64 + gir1.2-gupnpdlna-1.0_0.6.6-1_amd64 + gir1.2-gupnpigd-1.0_0.2.1-2_amd64 + gir1.2-gweather-3.0_3.4.1-1+build1_amd64 + gir1.2-gxps-0.1_0.2.2-2_amd64 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_amd64 + gir1.2-indicate-0.7_0.6.92-1_amd64 + gir1.2-itl-1.0_0.2-1_amd64 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_amd64 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64 + gir1.2-json-1.0_0.14.2-1_amd64 + gir1.2-libosinfo-1.0_0.1.1-1_amd64 + gir1.2-libvirt-glib-1.0_0.0.8-1_amd64 + gir1.2-lunar-date-2.0_2.4.0-1_amd64 + gir1.2-mutter-3.0_3.4.1-5_amd64 + gir1.2-mx-1.0_1.4.6-1_amd64 + gir1.2-nautilus-3.0_3.4.2-1+build1_amd64 + gir1.2-networkmanager-1.0_0.9.4.0-10_amd64 + gir1.2-notify-0.7_0.7.5-1_amd64 + gir1.2-packagekitglib-1.0_0.7.6-3_amd64 + gir1.2-panelapplet-4.0_3.4.2.1-4_amd64 + gir1.2-pango-1.0_1.30.0-1_amd64 + gir1.2-peas-1.0_1.4.0-2_amd64 + gir1.2-polkit-1.0_0.105-3_amd64 + gir1.2-poppler-0.18_0.18.4-6_amd64 + gir1.2-rb-3.0_2.97-2.1_amd64 + gir1.2-rest-0.7_0.7.12-3_amd64 + gir1.2-rest-extras-0.7_0.7.12-3_amd64 + gir1.2-rsvg-2.0_2.36.1-2_amd64 + gir1.2-skk-1.0_0.0.12-3_amd64 + gir1.2-socialweb-client_0.25.20-2.1_amd64 + gir1.2-soup-2.4_2.38.1-2_amd64 + gir1.2-spice-client-glib-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-2.0_0.12-5_amd64 + gir1.2-spice-client-gtk-3.0_0.12-5_amd64 + gir1.2-sugarext-1.0_0.96.1-2_amd64 + gir1.2-telepathyglib-0.12_0.18.2-2_amd64 + gir1.2-telepathylogger-0.2_0.4.0-1_amd64 + gir1.2-totem-1.0_3.0.1-8_amd64 + gir1.2-totem-plparser-1.0_3.4.2-1_amd64 + gir1.2-tracker-0.14_0.14.1-3_amd64 + gir1.2-unique-3.0_3.0.2-1_amd64 + gir1.2-upowerglib-1.0_0.9.17-1_amd64 + gir1.2-urfkill-glib0_0.3.0-1_amd64 + gir1.2-v-sim-1.0_3.6.0-2+b2_amd64 + gir1.2-vte-2.90_1:0.32.2-1_amd64 + gir1.2-webkit-1.0_1.8.1-3.4_amd64 + gir1.2-webkit-3.0_1.8.1-3.4_amd64 + gir1.2-wnck-3.0_3.4.2-1_amd64 + gir1.2-xkl-1.0_5.2.1-1_amd64 + git_1:1.7.10.4-1+wheezy1_amd64 + git-annex_3.20120629_amd64 + gitg_0.2.4-1.1+deb7u1_amd64 + github-backup_1.20120628.1_amd64 + gitit_0.10.0.1-1+b1_amd64 + gjacktransport_0.5.3-1_amd64 + gjay_0.3.2-1_amd64 + gjiten_2.6-2.2_amd64 + gjs_1.32.0-5_amd64 + gkbd-capplet_3.4.0.2-1_amd64 + gkdebconf_1.2.68_amd64 + gkermit_1.0-9_amd64 + gkrellkam_2.0.0-1.1_amd64 + gkrellm_2.3.5-3_amd64 + gkrellm-bfm_0.6.4-5_amd64 + gkrellm-gkrellmpc_0.1~beta10-2_amd64 + gkrellm-hdplop_0.9.9-2.1_amd64 + gkrellm-ibam_1:0.5.2-2.1_amd64 + gkrellm-leds_0.8.0-1.2_amd64 + gkrellm-mailwatch_2.4.3-1_amd64 + gkrellm-mldonkey_0.9.7-2.1_amd64 + gkrellm-radio_2.0.4-1.1_amd64 + gkrellm-reminder_2.0.0-3_amd64 + gkrellm-snmp_1.0-1.2+b1_amd64 + gkrellm-thinkbat_0.2.2-1_amd64 + gkrellm-volume_2.1.13-1_amd64 + gkrellm-x86info_0.0.2-9_amd64 + gkrellm-xkb_1.05-5_amd64 + gkrellmd_2.3.5-3_amd64 + gkrellmitime_1.0.1-5_amd64 + gkrellmoon_0.6-5_amd64 + gkrellmwireless_2.0.3-1_amd64 + gkrellshoot_0.4.4-1_amd64 + gkrelltop_2.2.13-1_amd64 + gkrelltopd_2.2.13-1_amd64 + gkrelluim_0.3.1-4+b1_amd64 + gkrellweather_2.0.8-2_amd64 + gkrellxmms2_0.7.1-2_amd64 + gksu_2.0.2-6_amd64 + gl-117_1.3.2-2.1_amd64 + glabels_3.0.0-3+b1_amd64 + glabels-dev_3.0.0-3+b1_amd64 + glade_3.12.1-1_amd64 + glade-xfce_4.8.1-1_amd64 + gladish_1+dfsg0-3_amd64 + glam2_1064-1_amd64 + glaurung_2.2-2_amd64 + glbsp_2.24-1_amd64 + glchess_1:3.4.2-3_amd64 + gle-graphics_4.2.4c-5_amd64 + glee-dev_5.4.0-1_amd64 + glew-utils_1.7.0-3_amd64 + glfer_0.4.2-2_amd64 + glhack_1.2-1_amd64 + glib-networking_2.32.3-1_amd64 + glib-networking-dbg_2.32.3-1_amd64 + glib-networking-services_2.32.3-1_amd64 + glines_1:3.4.2-3_amd64 + gliv_1.9.7-2_amd64 + glob2_0.9.4.4-2.1+b1_amd64 + global_5.7.1-2_amd64 + globs_0.2.0~svn50-4_amd64 + globus-authz-callout-error-dbg_2.2-1_amd64 + globus-authz-dbg_2.2-1_amd64 + globus-callout-dbg_2.2-1_amd64 + globus-common-dbg_14.7-2_amd64 + globus-common-progs_14.7-2_amd64 + globus-core_8.8-2_amd64 + globus-ftp-client-dbg_7.3-1_amd64 + globus-ftp-control-dbg_4.4-1_amd64 + globus-gass-cache-dbg_8.1-2_amd64 + globus-gass-cache-program_5.1-1_amd64 + globus-gass-cache-program-dbg_5.1-1_amd64 + globus-gass-copy-dbg_8.4-1_amd64 + globus-gass-copy-progs_8.4-1_amd64 + globus-gass-server-ez-dbg_4.3-1_amd64 + globus-gass-server-ez-progs_4.3-1_amd64 + globus-gass-transfer-dbg_7.2-1_amd64 + globus-gatekeeper_9.11-1_amd64 + globus-gatekeeper-dbg_9.11-1_amd64 + globus-gfork-dbg_3.2-1_amd64 + globus-gfork-progs_3.2-1_amd64 + globus-gram-client-dbg_12.4-1_amd64 + globus-gram-client-tools_10.3-1_amd64 + globus-gram-client-tools-dbg_10.3-1_amd64 + globus-gram-job-manager_13.33-1_amd64 + globus-gram-job-manager-callout-error-dbg_2.1-2_amd64 + globus-gram-job-manager-dbg_13.33-1_amd64 + globus-gram-job-manager-fork-dbg_1.5-1_amd64 + globus-gram-job-manager-fork-setup-seg_1.5-1_amd64 + globus-gram-job-manager-pbs-dbg_1.5-1_amd64 + globus-gram-job-manager-pbs-setup-seg_1.5-1_amd64 + globus-gram-job-manager-sge-dbg_1.5-1_amd64 + globus-gram-job-manager-sge-setup-seg_1.5-1_amd64 + globus-gram-protocol-dbg_11.3-1_amd64 + globus-gridftp-server-control-dbg_2.5-2_amd64 + globus-gridftp-server-dbg_6.10-2_amd64 + globus-gridftp-server-progs_6.10-2_amd64 + globus-gridmap-callout-error-dbg_1.2-2_amd64 + globus-gsi-callback-dbg_4.2-1_amd64 + globus-gsi-cert-utils-dbg_8.3-1_amd64 + globus-gsi-cert-utils-progs_8.3-1_amd64 + globus-gsi-credential-dbg_5.3-1_amd64 + globus-gsi-openssl-error-dbg_2.1-2_amd64 + globus-gsi-proxy-core-dbg_6.2-1_amd64 + globus-gsi-proxy-ssl-dbg_4.1-2_amd64 + globus-gsi-sysconfig-dbg_5.2-1_amd64 + globus-gss-assist-dbg_8.5-1_amd64 + globus-gss-assist-progs_8.5-1_amd64 + globus-gssapi-error-dbg_4.1-2_amd64 + globus-gssapi-gsi-dbg_10.6-1_amd64 + globus-io-dbg_9.3-1_amd64 + globus-openssl-module-dbg_3.2-1_amd64 + globus-openssl-module-progs_3.2-1_amd64 + globus-proxy-utils_5.0-2_amd64 + globus-proxy-utils-dbg_5.0-2_amd64 + globus-rls-client-dbg_5.2-8_amd64 + globus-rls-client-progs_5.2-8_amd64 + globus-rls-server_4.9-11_amd64 + globus-rls-server-dbg_4.9-11_amd64 + globus-rsl-dbg_9.1-2_amd64 + globus-scheduler-event-generator-dbg_4.6-1_amd64 + globus-scheduler-event-generator-progs_4.6-1_amd64 + globus-usage-dbg_3.1-2_amd64 + globus-xio-dbg_3.3-1_amd64 + globus-xio-gsi-driver-dbg_2.3-1_amd64 + globus-xio-pipe-driver-dbg_2.2-1_amd64 + globus-xio-popen-driver-dbg_2.3-1_amd64 + globus-xioperf_3.1-1_amd64 + globus-xioperf-dbg_3.1-1_amd64 + glogg_0.9.0-1+b1_amd64 + glosstex_0.4.dfsg.1-3_amd64 + glotski_0.2-7_amd64 + glpeces_5.0-2_amd64 + glpk_4.45-1_amd64 + glpk-utils_4.45-1_amd64 + gltron_0.70final-10_amd64 + glurp_0.12.3-1_amd64 + glusterfs-client_3.2.7-3+deb7u1_amd64 + glusterfs-common_3.2.7-3+deb7u1_amd64 + glusterfs-dbg_3.2.7-3+deb7u1_amd64 + glusterfs-server_3.2.7-3+deb7u1_amd64 + gman_0.9.3-5.2_amd64 + gmanedit_0.4.2-5_amd64 + gmchess_0.29.6-2_amd64 + gmediaserver_0.13.0-8_amd64 + gmemusage_0.2-11_amd64 + gmerlin_1.2.0~dfsg+1-1_amd64 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_amd64 + gmerlin-dbg_1.2.0~dfsg+1-1_amd64 + gmerlin-encoders-ffmpeg_1.2.0-2_amd64 + gmerlin-encoders-good_1.2.0-2_amd64 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_amd64 + gmerlin-plugins-base_1.2.0~dfsg+1-1_amd64 + gmetad_3.3.8-1+nmu1_amd64 + gmfsk_0.6+0.7pre1-2.3_amd64 + gmic_1.5.1.6+dfsg-4_amd64 + gmic-zart_1.5.1.6+dfsg-4_amd64 + gmidimonitor_3.6+dfsg0-1_amd64 + gmime-bin_2.6.10-1_amd64 + gmlive_0.22.3-1_amd64 + gmorgan_0.40-1_amd64 + gmotionlive_1.0-3_amd64 + gmp-ecm_6.4.2-1_amd64 + gmpc_11.8.16-6_amd64 + gmpc-dbg_11.8.16-6_amd64 + gmpc-dev_11.8.16-6_amd64 + gmpc-plugins_11.8.16-1_amd64 + gmpc-plugins-dbg_11.8.16-1_amd64 + gmrun_0.9.2-2.1_amd64 + gmt_4.5.7-2_amd64 + gmtp_1.3.3-1_amd64 + gmult_8.0-1_amd64 + gmysqlcc_0.3.0-2+b2_amd64 + gnac_0.2.4-1_amd64 + gnarwl_3.6.dfsg-6.2_amd64 + gnash_0.8.11~git20120629-1+deb7u1_amd64 + gnash-common_0.8.11~git20120629-1+deb7u1_amd64 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dbg_0.8.11~git20120629-1+deb7u1_amd64 + gnash-dev_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_amd64 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_amd64 + gnash-tools_0.8.11~git20120629-1+deb7u1_amd64 + gnat_4.6_amd64 + gnat-4.6_4.6.3-8_amd64 + gnat-4.6-base_4.6.3-8_amd64 + gnat-4.6-sjlj_4.6.3-8_amd64 + gnat-gps_5.0-13_amd64 + gnat-gps-dbg_5.0-13_amd64 + gnat-mingw-w64-i686_4.6.3-14+8_amd64 + gnat-mingw-w64-x86-64_4.6.3-14+8_amd64 + gnats_4.1.0-2_amd64 + gnats-user_4.1.0-2_amd64 + gnect_1:3.4.2-3_amd64 + gnee_3.13-1_amd64 + gngb_20060309-3_amd64 + gniall_0.7.1-7_amd64 + gnibbles_1:3.4.2-3_amd64 + gnobots2_1:3.4.2-3_amd64 + gnoemoe_2.2.0+dfsg-2.2_amd64 + gnokii-cli_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_amd64 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_amd64 + gnomad2_2.9.6-4_amd64 + gnome_1:3.4+7+deb7u1_amd64 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_amd64 + gnome-applets_3.4.1-3_amd64 + gnome-applets-dbg_3.4.1-3_amd64 + gnome-bluetooth_3.4.2-1_amd64 + gnome-boxes_3.4.3+dfsg-1_amd64 + gnome-breakout_0.5.3-4_amd64 + gnome-color-chooser_0.2.5-1_amd64 + gnome-color-manager_3.4.2-1_amd64 + gnome-commander_1.2.8.15-3+b1_amd64 + gnome-commander-dbg_1.2.8.15-3+b1_amd64 + gnome-contacts_3.4.1-1+b1_amd64 + gnome-control-center_1:3.4.3.1-2_amd64 + gnome-core_1:3.4+7+deb7u1_amd64 + gnome-core-devel_1:3.4+7+deb7u1_amd64 + gnome-dbg_1:3.4+7+deb7u1_amd64 + gnome-dictionary_3.4.0-2_amd64 + gnome-disk-utility_3.0.2-3_amd64 + gnome-do_0.9-1+b1_amd64 + gnome-documents_0.4.2-2_amd64 + gnome-dvb-daemon_1:0.2.8-1_amd64 + gnome-font-viewer_3.4.0-2_amd64 + gnome-genius_1.0.14-1_amd64 + gnome-hearts_0.3-2.1_amd64 + gnome-hwp-support_0.1.4-1_amd64 + gnome-hwp-support-dbg_0.1.4-1_amd64 + gnome-keyring_3.4.1-5_amd64 + gnome-mag_1:0.16.3-1_amd64 + gnome-mastermind_0.3.1-2_amd64 + gnome-media_3.4.0-1_amd64 + gnome-media-profiles_3.0.0-1_amd64 + gnome-menus_3.4.2-5_amd64 + gnome-mplayer_1.0.6-1_amd64 + gnome-mplayer-dbg_1.0.6-1_amd64 + gnome-mud_0.11.2-1_amd64 + gnome-nds-thumbnailer_3.0.0-1_amd64 + gnome-nettool_3.2.0-1_amd64 + gnome-online-accounts_3.4.2-2_amd64 + gnome-packagekit_3.4.2-2_amd64 + gnome-paint_0.4.0-3_amd64 + gnome-panel_3.4.2.1-4_amd64 + gnome-panel-control_3.5.0-7_amd64 + gnome-panel-dbg_3.4.2.1-4_amd64 + gnome-phone-manager_0.68-3+b1_amd64 + gnome-photo-printer_0.7.0-1.2_amd64 + gnome-pie_0.5.3-1_amd64 + gnome-platform-devel_1:3.4+7+deb7u1_amd64 + gnome-power-manager_3.4.0-2_amd64 + gnome-ppp_0.3.23-1.2_amd64 + gnome-screensaver_3.4.1-1_amd64 + gnome-screenshot_3.4.1-1_amd64 + gnome-search-tool_3.4.0-2+b1_amd64 + gnome-session-bin_3.4.2.1-4_amd64 + gnome-session-canberra_0.28-6_amd64 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_amd64 + gnome-shell_3.4.2-7+deb7u1_amd64 + gnome-shell-dbg_3.4.2-7+deb7u1_amd64 + gnome-subtitles_1.2-4_amd64 + gnome-sushi_0.4.1-3_amd64 + gnome-system-log_3.4.1-3_amd64 + gnome-system-monitor_3.4.1-2+b1_amd64 + gnome-system-tools_3.0.0-2_amd64 + gnome-terminal_3.4.1.1-2_amd64 + gnome-themes-standard_3.4.2-2.1_amd64 + gnome-u2ps_0.0.4-4.2_amd64 + gnome-user-share_3.0.2-1_amd64 + gnome-xcf-thumbnailer_1.0-1.1_amd64 + gnomekiss_2.0-4_amd64 + gnomeradio_1.8-2_amd64 + gnomine_1:3.4.2-3_amd64 + gnomint_1.2.1-4_amd64 + gnote_0.8.3-1_amd64 + gnotime_2.3.1~snapshot20091119-5_amd64 + gnotravex_1:3.4.2-3_amd64 + gnotski_1:3.4.2-3_amd64 + gnu-efi_3.0i-3_amd64 + gnu-fdisk_1.2.4-3.1_amd64 + gnu-smalltalk_3.2.4-2_amd64 + gnu-smalltalk-browser_3.2.4-2_amd64 + gnubg_0.90+20120429-1_amd64 + gnubiff_2.2.15-1_amd64 + gnubik_2.4-3_amd64 + gnucap_1:0.36~20091207-2_amd64 + gnucash_1:2.4.10-6_amd64 + gnucash-dbg_1:2.4.10-6_amd64 + gnuchess_6.0.2-1_amd64 + gnudatalanguage_0.9.2-4_amd64 + gnudoq_0.94-2.1_amd64 + gnugk_2:3.0.2-3_amd64 + gnugo_3.8-5_amd64 + gnuift_0.1.14-12_amd64 + gnuit_4.9.5-3_amd64 + gnujump_1.0.6-4_amd64 + gnumeric_1.10.17-1.1_amd64 + gnumeric-plugins-extra_1.10.17-1.1_amd64 + gnuminishogi_1.3.2-9_amd64 + gnunet-client_0.9.3-7_amd64 + gnunet-common_0.9.3-7_amd64 + gnunet-dbg_0.9.3-7_amd64 + gnunet-dev_0.9.3-7_amd64 + gnunet-fuse_0.9.3-2_amd64 + gnunet-gtk_0.9.3-1_amd64 + gnunet-gtk-dbg_0.9.3-1_amd64 + gnunet-gtk-dev_0.9.3-1_amd64 + gnunet-server_0.9.3-7_amd64 + gnupg_1.4.12-7+deb7u3_amd64 + gnupg-agent_2.0.19-2+deb7u1_amd64 + gnupg-curl_1.4.12-7+deb7u3_amd64 + gnupg-pkcs11-scd_0.7.3-1_amd64 + gnupg-pkcs11-scd-dbg_0.7.3-1_amd64 + gnupg2_2.0.19-2+deb7u1_amd64 + gnuplot-nox_4.6.0-8_amd64 + gnuplot-qt_4.6.0-8_amd64 + gnuplot-x11_4.6.0-8_amd64 + gnuradio_3.5.3.2-1_amd64 + gnuradio-dev_3.5.3.2-1_amd64 + gnurobbo_0.66+dfsg-2_amd64 + gnurobots_2:1.2.0-4+b2_amd64 + gnuserv_3.12.8-3_amd64 + gnushogi_1.3.2-9_amd64 + gnusim8085_1.3.7-1_amd64 + gnustep-back-dbg_0.20.1-2.1_amd64 + gnustep-back0.20-art_0.20.1-2.1_amd64 + gnustep-back0.20-cairo_0.20.1-2.1_amd64 + gnustep-base-runtime_1.22.1-4_amd64 + gnustep-common_2.6.2-2_amd64 + gnustep-dl2_0.12.0-9+nmu1_amd64 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_amd64 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_amd64 + gnustep-examples_1:1.3.0-1_amd64 + gnustep-gpbs_0.20.1-2.1_amd64 + gnustep-gui-runtime_0.20.0-3+b1_amd64 + gnutls-bin_3.0.22-3+really2.12.20-7_amd64 + goaccess_1:0.5-1_amd64 + goattracker_2.72-1_amd64 + gob2_2.0.18-1_amd64 + goban-ss_1.1-2_amd64 + gobby-0.4_0.4.13-2_amd64 + gobby-0.4-dbg_0.4.13-2_amd64 + gobby-0.5_0.4.94-5_amd64 + gobby-0.5-dbg_0.4.94-5_amd64 + gobjc_4:4.7.2-1_amd64 + gobjc++_4:4.7.2-1_amd64 + gobjc++-4.6_4.6.3-14_amd64 + gobjc++-4.6-multilib_4.6.3-14_amd64 + gobjc++-4.7_4.7.2-5_amd64 + gobjc++-4.7-multilib_4.7.2-5_amd64 + gobjc++-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc++-multilib_4:4.7.2-1_amd64 + gobjc-4.6_4.6.3-14_amd64 + gobjc-4.6-multilib_4.6.3-14_amd64 + gobjc-4.7_4.7.2-5_amd64 + gobjc-4.7-multilib_4.7.2-5_amd64 + gobjc-mingw-w64-i686_4.6.3-14+8_amd64 + gobjc-mingw-w64-x86-64_4.6.3-14+8_amd64 + gobjc-multilib_4:4.7.2-1_amd64 + gobject-introspection_1.32.1-1_amd64 + gocr_0.49-1_amd64 + god_0.7.18-3_amd64 + gofigure2_0.9.0-1+b2_amd64 + gogglesmm_0.12.6-1_amd64 + gogoc_1:1.2-4_amd64 + golang-dbg_2:1.0.2-1.1_amd64 + golang-go_2:1.0.2-1.1_amd64 + golang-src_2:1.0.2-1.1_amd64 + goldencheetah_2.1-4_amd64 + goldendict_1.0.2~git20110906-1.1_amd64 + golly_2.3-1_amd64 + gom_0.30.2-5.4_amd64 + gomoku.app_1.2.9-1+b2_amd64 + gonzui_1.2+cvs20070129-3.1_amd64 + goo_0.155-12_amd64 + goobox_3.0.1-5_amd64 + google-mock_1.6.0-1_amd64 + gopchop_1.1.8-5_amd64 + gopher_3.0.13_amd64 + goplay_0.5-1.1_amd64 + gorm.app_1.2.16-1_amd64 + gosmore_0.0.0.20100711-2.1_amd64 + gource_0.38-1_amd64 + gozer_0.7.nofont.1-5_amd64 + gpa_0.9.0-4_amd64 + gpac_0.5.0~dfsg0-1_amd64 + gpac-dbg_0.5.0~dfsg0-1_amd64 + gpac-modules-base_0.5.0~dfsg0-1_amd64 + gpaco_2.0.9-2_amd64 + gpaint_0.3.3-6_amd64 + gpart_0.1h-11+b1_amd64 + gparted_0.12.1-2+b1_amd64 + gpdftext_0.1.5-1+b2_amd64 + gpe-announce_0.14-2_amd64 + gpe-appmgr_2.8-3_amd64 + gpe-bluetooth_0.56-3_amd64 + gpe-calendar_0.92-4_amd64 + gpe-clock_0.27-2_amd64 + gpe-conf_0.2.9-1.1_amd64 + gpe-confd_0.16-2_amd64 + gpe-contacts_0.49-2_amd64 + gpe-edit_0.41-1_amd64 + gpe-expenses_0.1.9-2_amd64 + gpe-filemanager_0.31-2_amd64 + gpe-gallery_0.97-4_amd64 + gpe-go_0.05-5_amd64 + gpe-julia_0.0.6-7_amd64 + gpe-lights_0.13-4_amd64 + gpe-login_0.95-2_amd64 + gpe-mininet_0.7-2_amd64 + gpe-mixer_0.50-1_amd64 + gpe-othello_0.2-4_amd64 + gpe-ownerinfo_0.28-3_amd64 + gpe-ownerinfo-dev_0.28-3_amd64 + gpe-question_0.04-3_amd64 + gpe-screenshot_0.4-4_amd64 + gpe-shield_0.31-6_amd64 + gpe-soundbite_1.0.6-2_amd64 + gpe-soundserver_0.4-3_amd64 + gpe-su_0.20-1_amd64 + gpe-taskmanager_0.20-9_amd64 + gpe-tetris_0.6.4-2_amd64 + gpe-timesheet_0.32-2_amd64 + gpe-todo_0.58-1_amd64 + gpe-watch_0.11-1_amd64 + gpe-what_0.43-4_amd64 + gperf_3.0.3-1+b1_amd64 + gperiodic_2.0.10-7_amd64 + gpesyncd_2.0-1_amd64 + gpgsm_2.0.19-2+deb7u1_amd64 + gpgv_1.4.12-7+deb7u3_amd64 + gphoto2_2.4.14-1_amd64 + gphotofs_0.4.0-6_amd64 + gphpedit_0.9.98-2_amd64 + gpick_0.2.4-1+b1_amd64 + gpicview_0.2.3-2_amd64 + gpicview-dbg_0.2.3-2_amd64 + gpiv_0.6.1-2_amd64 + gpiv-mpi_0.6.1-2_amd64 + gpivtools_0.6.0-3_amd64 + gpivtools-mpi_0.6.0-3_amd64 + gplanarity_17906-3_amd64 + gplcver_2.12a-1.1_amd64 + gpm_1.20.4-6_amd64 + gpointing-device-settings_1.5.1-6_amd64 + gpomme_1.39~dfsg-2+b1_amd64 + gpp_2.24-3_amd64 + gpr_0.15deb-2_amd64 + gprbuild_2011-2_amd64 + gpredict_1.3-2_amd64 + gprolog_1.3.0-6.1_amd64 + gprompter_0.8.8-1_amd64 + gprompter-dbg_0.8.8-1_amd64 + gpsbabel_1.4.3-1_amd64 + gpsbabel-gui_1.4.3-1_amd64 + gpscorrelate_1.6.1-4_amd64 + gpscorrelate-gui_1.6.1-4_amd64 + gpsd_3.6-4+deb7u1_amd64 + gpsd-clients_3.6-4+deb7u1_amd64 + gpsd-dbg_3.6-4+deb7u1_amd64 + gpsim_0.26.1-2.1_amd64 + gpsim-dev_0.26.1-2.1_amd64 + gpsk31_0.5-6_amd64 + gpsmanshp_1.2.1-1_amd64 + gpstrans_0.41-3_amd64 + gpt_1.1-2_amd64 + gptsync_0.14-2_amd64 + gputils_0.13.7-1_amd64 + gpw_0.0.19940601-8.1_amd64 + gpx2shp_0.69-3.1_amd64 + grabc_1.1-2_amd64 + grace_1:5.1.22-13_amd64 + gradm2_2.9.1~201206091838-1_amd64 + grads_2.0.a9-4+b2_amd64 + grafx2_2.3-1.1_amd64 + gramofile_1.6-9_amd64 + gramophone2_0.8.13a-1_amd64 + granatier_4:4.8.4-3_amd64 + granule_1.4.0-7-1_amd64 + grap_1.43-2_amd64 + graphdefang_2.71-3_amd64 + graphicsmagick_1.3.16-1.1_amd64 + graphicsmagick-dbg_1.3.16-1.1_amd64 + graphthing_1.3.2-3.1_amd64 + graphviz_2.26.3-14+deb7u1_amd64 + grass-core_6.4.2-2_amd64 + grass-dev_6.4.2-2_amd64 + grass-gui_6.4.2-2_amd64 + gravitation_3+dfsg1-3_amd64 + gravitywars_1.102-32_amd64 + grcm_0.1.6-1_amd64 + grcompiler_4.2-1_amd64 + grdesktop_0.23+d040330-3_amd64 + greed_3.7-1_amd64 + gregorio_2.0-1.2_amd64 + grep_2.12-2_amd64 + grepcidr_1.3-5_amd64 + gresolver_0.0.5-5_amd64 + gretl_1.9.9-1_amd64 + grfcodec_6.0.0-1_amd64 + grhino_0.16.1-2_amd64 + gri_2.12.23-2.2_amd64 + gridengine-client_6.2u5-7.1_amd64 + gridengine-drmaa-dev_6.2u5-7.1_amd64 + gridengine-drmaa1.0_6.2u5-7.1_amd64 + gridengine-exec_6.2u5-7.1_amd64 + gridengine-master_6.2u5-7.1_amd64 + gridengine-qmon_6.2u5-7.1_amd64 + gridlock.app_1.10-3.2_amd64 + gridsite_1.7.16-1_amd64 + gridsite-clients_1.7.16-1_amd64 + gridsite-dbg_1.7.16-1_amd64 + gridsite-gsexec_1.7.16-1_amd64 + grig_0.8.0-1_amd64 + grilo-plugins-0.1_0.1.19-1_amd64 + gringo_3.0.4-3_amd64 + gringotts_1.2.10~pre3-1_amd64 + grisbi_0.8.9-1_amd64 + grml2usb_0.12.2_amd64 + groff_1.21-9_amd64 + groff-base_1.21-9_amd64 + grok_1.20110708.1-4_amd64 + grok-dbg_1.20110708.1-4_amd64 + gromacs_4.5.5-2_amd64 + gromacs-dev_4.5.5-2_amd64 + gromacs-mpich_4.5.5-2_amd64 + gromacs-openmpi_4.5.5-2_amd64 + gromit_20041213-9_amd64 + gross_1.0.2-3_amd64 + groundhog_1.4-9_amd64 + growisofs_7.1-10_amd64 + grpn_1.1.2-3.1_amd64 + grr.app_0.9.0-1_amd64 + grsync_1.2.0-1_amd64 + grub-common_1.99-27+deb7u2_amd64 + grub-coreboot_1.99-27+deb7u2_amd64 + grub-coreboot-bin_1.99-27+deb7u2_amd64 + grub-efi_1.99-27+deb7u2_amd64 + grub-efi-amd64_1.99-27+deb7u2_amd64 + grub-efi-amd64-bin_1.99-27+deb7u2_amd64 + grub-efi-ia32_1.99-27+deb7u2_amd64 + grub-efi-ia32-bin_1.99-27+deb7u2_amd64 + grub-emu_1.99-27+deb7u2_amd64 + grub-firmware-qemu_1.99-27+deb7u2_amd64 + grub-ieee1275_1.99-27+deb7u2_amd64 + grub-ieee1275-bin_1.99-27+deb7u2_amd64 + grub-invaders_1.0.0-12_amd64 + grub-legacy_0.97-67_amd64 + grub-linuxbios_1.99-27+deb7u2_amd64 + grub-pc_1.99-27+deb7u2_amd64 + grub-pc-bin_1.99-27+deb7u2_amd64 + grub-rescue-pc_1.99-27+deb7u2_amd64 + grub2_1.99-27+deb7u2_amd64 + grub2-common_1.99-27+deb7u2_amd64 + grun_0.9.3-1_amd64 + gsasl_1.8.0-2_amd64 + gsasl-dbg_1.8.0-2_amd64 + gscanbus_0.8-1_amd64 + gsetroot_1.1-2.2_amd64 + gsettings-desktop-schemas-dev_3.4.2-3_amd64 + gsimplecal_1.5-1_amd64 + gsl-bin_1.15+dfsg.2-2_amd64 + gsm-utils_1.10-13.2_amd64 + gsm0710muxd_1.13-1+b1_amd64 + gsmartcontrol_0.8.6-1.2_amd64 + gsmc_1.1-1.1_amd64 + gsoap_2.8.7-2_amd64 + gsoap-dbg_2.8.7-2_amd64 + gsoko_0.4.2-gpe6-3_amd64 + gsql_0.2.2-1.2+b1_amd64 + gsql-mysql-engine_0.2.2-1.2+b1_amd64 + gsql-plugins_0.2.2-1.2+b1_amd64 + gsql-postgresql-engine_0.2.2-1.2+b1_amd64 + gssdp-tools_0.12.2.1-2_amd64 + gst123_0.3.1-1_amd64 + gstm_1.2-8_amd64 + gstreamer-tools_0.10.36-1.2_amd64 + gstreamer0.10-alsa_0.10.36-1.1_amd64 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_amd64 + gstreamer0.10-chromaprint_0.1-3_amd64 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_amd64 + gstreamer0.10-dvswitch_0.0.1-1_amd64 + gstreamer0.10-ffmpeg_0.10.13-5_amd64 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_amd64 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64 + gstreamer0.10-gconf_0.10.31-3+nmu1_amd64 + gstreamer0.10-gnomevfs_0.10.36-1.1_amd64 + gstreamer0.10-gnonlin_0.10.17-2_amd64 + gstreamer0.10-gnonlin-dbg_0.10.17-2_amd64 + gstreamer0.10-hplugins_0.2.0-2_amd64 + gstreamer0.10-nice_0.1.2-1_amd64 + gstreamer0.10-packagekit_0.7.6-3_amd64 + gstreamer0.10-plugins-bad_0.10.23-7.1_amd64 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_amd64 + gstreamer0.10-plugins-base_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_amd64 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_amd64 + gstreamer0.10-plugins-cutter_1.1.7-1.2_amd64 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_amd64 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_amd64 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64 + gstreamer0.10-qapt_1.3.0-2_amd64 + gstreamer0.10-tools_0.10.36-1.2_amd64 + gstreamer0.10-x_0.10.36-1.1_amd64 + gsynaptics_1.5.1-6_amd64 + gtali_1:3.4.2-3_amd64 + gtamsanalyzer.app_0.42-6+b3_amd64 + gtans_1.99.0-2_amd64 + gtetrinet_0.7.11-3+b2_amd64 + gthumb_3:3.0.1-2_amd64 + gthumb-dbg_3:3.0.1-2_amd64 + gthumb-dev_3:3.0.1-2_amd64 + gtick_0.5.1-1_amd64 + gtimer_2.0.0-1.1_amd64 + gtk-3-examples_3.4.2-7_amd64 + gtk-chtheme_0.3.1-5_amd64 + gtk-gnutella_0.98.3-1_amd64 + gtk-im-libthai_0.2.1-4_amd64 + gtk-sharp2-gapi_2.12.10-5_amd64 + gtk-theme-switch_2.1.0-2_amd64 + gtk-vector-screenshot_0.3.2-1_amd64 + gtk2-engines_1:2.20.2-2_amd64 + gtk2-engines-aurora_1.5.1-3_amd64 + gtk2-engines-cleanice_2.4.1-3_amd64 + gtk2-engines-magicchicken_1.1.1-9_amd64 + gtk2-engines-moblin_1.1.1-1.1_amd64 + gtk2-engines-murrine_0.98.1.1-5_amd64 + gtk2-engines-nodoka_0.7.0-1.1_amd64 + gtk2-engines-oxygen_1.2.4-1_amd64 + gtk2-engines-pixbuf_2.24.10-2_amd64 + gtk2-engines-qtcurve_1.8.15-4_amd64 + gtk2-engines-ubuntulooks_0.9.12-2_amd64 + gtk2-engines-wonderland_1.0-8_amd64 + gtk2-engines-xfce_2.8.1-3_amd64 + gtk2.0-examples_2.24.10-2_amd64 + gtk2hs-buildtools_0.12.3-2_amd64 + gtk3-engines-oxygen_1.0.4-1_amd64 + gtk3-engines-unico_1.0.2-1_amd64 + gtk3-im-libthai_0.2.1-4_amd64 + gtkam_0.1.18-1_amd64 + gtkam-dbg_0.1.18-1_amd64 + gtkam-gimp_0.1.18-1_amd64 + gtkaml_0.5.91-1_amd64 + gtkaml-dbg_0.5.91-1_amd64 + gtkatlantic_0.4.2-3_amd64 + gtkballs_3.1.5-9_amd64 + gtkboard_0.11pre0+cvs.2003.11.02-5_amd64 + gtkcookie_0.4-5_amd64 + gtkguitune_0.8-6_amd64 + gtkhash_0.6.0-4_amd64 + gtklp_1.2.7-2.3_amd64 + gtkmorph_1:20090926_amd64 + gtkperf_0.40+ds-2_amd64 + gtkpod_2.1.2-1_amd64 + gtkpod-dbg_2.1.2-1_amd64 + gtkpool_0.5.0-9_amd64 + gtkwave_3.3.37-1_amd64 + gtranslator_2.91.4-1_amd64 + gtrayicon_1.1-1_amd64 + gtrayicon-dbg_1.1-1_amd64 + gtypist_2.9.1-2.1_amd64 + guacd_0.6.0-1_amd64 + guake_0.4.3-3_amd64 + guayadeque_0.3.5~ds0-4_amd64 + guayadeque-dbg_0.3.5~ds0-4_amd64 + gucharmap_1:3.4.1.1-2.1_amd64 + guessnet_0.55_amd64 + guestfish_1:1.18.1-1+deb7u3_amd64 + guestfsd_1:1.18.1-1+deb7u3_amd64 + guestmount_1:1.18.1-1+deb7u3_amd64 + guile-1.6_1.6.8-10.3_amd64 + guile-1.6-dev_1.6.8-10.3_amd64 + guile-1.6-libs_1.6.8-10.3_amd64 + guile-1.8_1.8.8+1-8_amd64 + guile-1.8-dev_1.8.8+1-8_amd64 + guile-1.8-libs_1.8.8+1-8_amd64 + guile-2.0_2.0.5+1-3_amd64 + guile-2.0-dev_2.0.5+1-3_amd64 + guile-2.0-libs_2.0.5+1-3_amd64 + guile-cairo_1.4.0-3_amd64 + guile-cairo-dev_1.4.0-3_amd64 + guile-db_0.1-4.1_amd64 + guile-g-wrap_1.9.14-1.1_amd64 + guile-gnutls_3.0.22-3+really2.12.20-7_amd64 + guile-pg_0.16-5_amd64 + guitarix_0.22.4-1_amd64 + gummi_0.6.3-1.2_amd64 + gunroar_0.15.dfsg1-5_amd64 + gup_0.5.13_amd64 + gupnp-dlna-tools_0.6.6-1_amd64 + gupnp-tools_0.8.4-1_amd64 + gupnp-vala_0.10.4-1_amd64 + gurlchecker_0.13.1-2.1_amd64 + guvcview_1.5.3-1_amd64 + guymager_0.6.7-3_amd64 + gv_1:3.7.3-1_amd64 + gvfs_1.12.3-4_amd64 + gvfs-backends_1.12.3-4_amd64 + gvfs-bin_1.12.3-4_amd64 + gvfs-daemons_1.12.3-4_amd64 + gvfs-dbg_1.12.3-4_amd64 + gvfs-fuse_1.12.3-4_amd64 + gvfs-libs_1.12.3-4_amd64 + gvidm_0.8-11_amd64 + gvncviewer_0.5.0-3.1_amd64 + gvpe_2.24-2_amd64 + gwaei_3.4.3-1_amd64 + gwaterfall_0.1-5_amd64 + gwc_0.21.17~dfsg0-2_amd64 + gwc-dbg_0.21.17~dfsg0-2_amd64 + gweled_0.9.1-2_amd64 + gwenhywfar-tools_4.3.3-1_amd64 + gwenview_4:4.8.4-2_amd64 + gwenview-dbg_4:4.8.4-2_amd64 + gwhere_0.2.3.dfsg.1-3_amd64 + gworkspace.app_0.8.8-1.1_amd64 + gworldclock_1.4.4-9_amd64 + gwsetup_6.05.1-1_amd64 + gwtp_6.05.1-1_amd64 + gwyddion_2.28-2_amd64 + gwyddion-plugins_2.28-2_amd64 + gxine_0.5.907-2+deb7u1_amd64 + gxineplugin_0.5.907-2+deb7u1_amd64 + gxmessage_2.20.0-1_amd64 + gxmms2_0.7.1-2_amd64 + gxneur_0.15.0-2.1_amd64 + gxtuner_2.0-2_amd64 + gyoto_0.0.3-5_amd64 + gyoto-dbg_0.0.3-5_amd64 + gyrus_0.3.10-1.1_amd64 + gzip_1.5-1.1_amd64 + gzrt_0.6+ds1-1_amd64 + h5utils_1.12.1-2_amd64 + ha_0.999p+dfsg-3_amd64 + hal_0.5.14-8_amd64 + halevt_0.1.6.2-2_amd64 + halibut_1.0+svn20090906-6_amd64 + hama-slide-mouse-control_1.0-2_amd64 + hamfax_0.8.1-1+b1_amd64 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_amd64 + hannah_1.0-2_amd64 + hapm_0.7-1_amd64 + happy_1.18.9-1_amd64 + hardening-wrapper_2.2_amd64 + hardinfo_0.5.1-1.2_amd64 + hardlink_0.2.0_amd64 + harminv_1.3.1-9_amd64 + hasciicam_1.1.2-1_amd64 + haserl_0.9.29-3_amd64 + hashalot_0.3-5_amd64 + hashcash_1.21-1.1_amd64 + haskell-debian-utils_3.64-3+b1_amd64 + hatari_1.6.2-1_amd64 + haveged_1.4-4_amd64 + haxml_1:1.22.5-2+b2_amd64 + hdapsd_1:20090401-2_amd64 + hdate-applet_0.15.11-1.1+b2_amd64 + hddtemp_0.3-beta15-52_amd64 + hdf4-tools_4.2r4-13_amd64 + hdf5-helpers_1.8.8-9_amd64 + hdf5-tools_1.8.8-9_amd64 + hdfview_2.8.0-5_amd64 + hdhomerun-config_20120405-1_amd64 + hdparm_9.39-1+b1_amd64 + hdparm-dbg_9.39-1+b1_amd64 + hdup_2.0.14-4_amd64 + heartbeat_1:3.0.5-3_amd64 + heartbeat-dev_1:3.0.5-3_amd64 + hebcal_3.5-2_amd64 + hedgewars_0.9.17-1_amd64 + heimdal-clients_1.6~git20120403+dfsg1-2_amd64 + heimdal-clients-x_1.6~git20120403+dfsg1-2_amd64 + heimdal-dbg_1.6~git20120403+dfsg1-2_amd64 + heimdal-dev_1.6~git20120403+dfsg1-2_amd64 + heimdal-kcm_1.6~git20120403+dfsg1-2_amd64 + heimdal-kdc_1.6~git20120403+dfsg1-2_amd64 + heimdal-multidev_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers_1.6~git20120403+dfsg1-2_amd64 + heimdal-servers-x_1.6~git20120403+dfsg1-2_amd64 + heirloom-mailx_12.5-2_amd64 + helium_1.7~pre20090428-3.1_amd64 + hello_2.8-2_amd64 + hello-debhelper_2.8-1_amd64 + help2man_1.40.10_amd64 + helpviewer.app_0.3-7+b3_amd64 + herbstluftwm_0.3-1_amd64 + hercules_3.07-2.2_amd64 + herculesstudio_1.3.0-2_amd64 + heroes-common_0.21-8.4_amd64 + heroes-sdl_0.21-8.4_amd64 + hesiod_3.0.2-21_amd64 + hex-a-hop_0.0.20070315-8_amd64 + hexalate_1.0.1-3_amd64 + hexcurse_1.55-2_amd64 + hexec_0.2.1-2_amd64 + hexedit_1.2.12-4_amd64 + hexer_0.1.7-1.1_amd64 + hexter_0.6.2-3_amd64 + hexxagon_1.0pl1-3.1_amd64 + hfsplus_1.0.4-12_amd64 + hfsprogs_332.25-10_amd64 + hfsutils_3.2.6-11_amd64 + hfsutils-tcltk_3.2.6-11_amd64 + hhsuite_2.0.15-1_amd64 + hhsuite-dbg_2.0.15-1_amd64 + highlight_3.9-1_amd64 + hime_0.9.9+git20120619+dfsg-1_amd64 + hime-anthy_0.9.9+git20120619+dfsg-1_amd64 + hime-chewing_0.9.9+git20120619+dfsg-1_amd64 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64 + hime-tables_0.9.9+git20120619+dfsg-1_amd64 + hitori_0.3.2-1_amd64 + hlbr_1.7.2-2_amd64 + hlint_1.8.28-1+b3_amd64 + hmmer_3.0-4_amd64 + hnb_1.9.18-9_amd64 + ho22bus_0.9.1-2_amd64 + hodie_1.5-1_amd64 + hoichess_0.10.3-6.1_amd64 + hol-light_20120602-1_amd64 + hol88_2.02.19940316-15_amd64 + hol88-library_2.02.19940316-15_amd64 + holdingnuts_0.0.5-4_amd64 + holdingnuts-server_0.0.5-4_amd64 + holotz-castle_1.3.14-5_amd64 + holotz-castle-editor_1.3.14-5_amd64 + homebank_4.4-1_amd64 + horgand_1.14-5_amd64 + hostap-utils_1:0.4.7-1_amd64 + hostapd_1:1.0-3+b2_amd64 + hostname_3.11_amd64 + hotkeys_0.5.7.4-0.3+b1_amd64 + hotswap-gui_0.4.0-12_amd64 + hotswap-text_0.4.0-12_amd64 + hoz_1.65-2_amd64 + hoz-gui_1.65-2_amd64 + hp2xx_3.4.4-8+b1_amd64 + hp48cc_1.3-4_amd64 + hpanel_0.3.2-4_amd64 + hpcc_1.4.1-2_amd64 + hping3_3.a2.ds2-6_amd64 + hplip_3.12.6-3.1+deb7u1_amd64 + hplip-dbg_3.12.6-3.1+deb7u1_amd64 + hpsockd_0.17+b1_amd64 + hscolour_1.19-3+b1_amd64 + hsetroot_1.0.2-1_amd64 + hspell_1.1-2_amd64 + hspell-gui_0.2.6-5.1_amd64 + ht_2.0.20-2_amd64 + htcheck_1:2.0.0~rc1-2+b1_amd64 + htdig_1:3.2.0b6-12_amd64 + html-xml-utils_6.1-1_amd64 + html2text_1.3.2a-15_amd64 + htmldoc_1.8.27-8_amd64 + htop_1.0.1-1_amd64 + htsengine_1.06-1_amd64 + httest_2.2.6-1_amd64 + httperf_0.9.0-2+b1_amd64 + httpfs2_0.1.4-1_amd64 + httpie_0.1.6+20120309git-2.1_amd64 + httping_1.5.3-1_amd64 + httptunnel_3.3+dfsg-3_amd64 + httrack_3.46.1-1_amd64 + hugin_2011.4.0+dfsg-5_amd64 + hugin-tools_2011.4.0+dfsg-5_amd64 + hugs_98.200609.21-5.3_amd64 + hunspell_1.3.2-4_amd64 + hunspell-tools_1.3.2-4_amd64 + hunt_1.5-6_amd64 + hwinfo_16.0-2.2_amd64 + hwloc_1.4.1-4_amd64 + hwloc-nox_1.4.1-4_amd64 + hyantesite_1.3.0-1_amd64 + hydrogen_0.9.6~beta2-1_amd64 + hylafax-client_3:6.0.6-5_amd64 + hylafax-client-dbg_3:6.0.6-5_amd64 + hylafax-server_3:6.0.6-5_amd64 + hylafax-server-dbg_3:6.0.6-5_amd64 + hyphen-show_20000425-2_amd64 + i2c-tools_3.1.0-2_amd64 + i3_4.2-2_amd64 + i3-wm_4.2-2_amd64 + i3-wm-dbg_4.2-2_amd64 + i3lock_2.4.1-1_amd64 + i3status_2.5.1-1_amd64 + i810switch_0.6.5-7_amd64 + i8kutils_1.33_amd64 + i965-va-driver_1.0.17-1_amd64 + i965-va-driver-dbg_1.0.17-1_amd64 + ia32-libs_1:0.4_amd64 + ia32-libs-gtk_1:0.1_amd64 + iagno_1:3.4.2-3_amd64 + iasl_20100528-3_amd64 + iat_0.1.3-7_amd64 + iaxmodem_1.2.0~dfsg-1_amd64 + ibam_1:0.5.2-2.1_amd64 + ibod_1.5.0-6_amd64 + ibsim-utils_0.5-1.1_amd64 + ibulgarian_4.1-3_amd64 + ibus_1.4.1-9+deb7u1_amd64 + ibus-anthy_1.2.6-2+deb7u1_amd64 + ibus-array_0.0.2-6_amd64 + ibus-chewing_1.3.10+clean-3_amd64 + ibus-clutter_0.0+git20090728.a936bacf-5_amd64 + ibus-gtk_1.4.1-9+deb7u1_amd64 + ibus-gtk3_1.4.1-9+deb7u1_amd64 + ibus-hangul_1.4.1-1+deb7u1_amd64 + ibus-input-pad_1.4.0-2_amd64 + ibus-m17n_1.3.4-1+deb7u1_amd64 + ibus-mozc_1.5.1090.102-4+deb7u1_amd64 + ibus-pinyin_1.4.0-1+deb7u1_amd64 + ibus-qt4_1.3.1-2.1_amd64 + ibus-skk_1.4.1-2+deb7u1_amd64 + ibus-sunpinyin_2.0.3-4+deb7u1_amd64 + ibus-tegaki_0.3.1-1_amd64 + ibus-unikey_0.6.1-1_amd64 + ibutils_1.2-OFED-1.4.2-1.3_amd64 + ibverbs-utils_1.1.6-1_amd64 + ical2html_2.0-1_amd64 + icc-utils_1.4.0-8_amd64 + ice34-services_3.4.2-8.2_amd64 + ice34-translators_3.4.2-8.2_amd64 + icebox_3.4.2-8.2_amd64 + icebreaker_1.21-11_amd64 + icecast2_2.3.2-9+deb7u2_amd64 + icedax_9:1.1.11-2_amd64 + icedove_10.0.12-1_amd64 + icedove-dbg_10.0.12-1_amd64 + icedove-dev_10.0.12-1_amd64 + icedtea-6-jre-cacao_6b27-1.12.5-1_amd64 + icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64 + icedtea-6-plugin_1.3.2-1_amd64 + icedtea-7-jre-cacao_7u3-2.1.7-1_amd64 + icedtea-7-jre-jamvm_7u3-2.1.7-1_amd64 + icedtea-7-plugin_1.3.2-1_amd64 + icedtea-netx_1.3.2-1_amd64 + icee-translators_1.2.0-6_amd64 + iceowl-extension_10.0.12-1_amd64 + ices2_2.0.1-13_amd64 + iceweasel_17.0.10esr-1~deb7u1_amd64 + iceweasel-dbg_17.0.10esr-1~deb7u1_amd64 + icewm_1.3.7-4_amd64 + icewm-common_1.3.7-4_amd64 + icewm-experimental_1.3.7-4_amd64 + icewm-gnome-support_1.3.7-4_amd64 + icewm-lite_1.3.7-4_amd64 + icheck_0.9.7-6.1+b2_amd64 + icinga_1.7.1-6_amd64 + icinga-cgi_1.7.1-6_amd64 + icinga-core_1.7.1-6_amd64 + icinga-dbg_1.7.1-6_amd64 + icinga-idoutils_1.7.1-6_amd64 + icmake_7.18.00-2_amd64 + icmpinfo_1.11-7_amd64 + icmptx_0.2-1_amd64 + icmpush_2.2-6_amd64 + icnsutils_0.8.1-1_amd64 + icom_20040912-1.1_amd64 + icon-slicer_0.3-6_amd64 + iconc_9.4.3-4.2_amd64 + icont_9.4.3-4.2_amd64 + iconx_9.4.3-4.2_amd64 + icoutils_0.29.1-5_amd64 + iczech_20040229-5.1_amd64 + id-utils_4.5+dfsg-0.1_amd64 + id3_0.15-3_amd64 + id3ren_1.1b0-6_amd64 + id3tool_1.2a-4_amd64 + id3v2_0.1.12-2_amd64 + idanish_1.6.25-1.1_amd64 + idecrypt_3.0.19.ds1-7_amd64 + ident2_1.07-1.1_amd64 + idesk_0.7.5-4.2_amd64 + ideviceinstaller_1.0.0-1.2_amd64 + ideviceinstaller-dbg_1.0.0-1.2_amd64 + idjc_0.8.7-2_amd64 + idle3-tools_0.9.1-1_amd64 + idn_1.25-2_amd64 + idn2_0.8-2_amd64 + idzebra-2.0_2.0.44-3_amd64 + idzebra-2.0-utils_2.0.44-3_amd64 + iec16022_0.2.4-1_amd64 + ifcico_2.14tx8.10-21_amd64 + ifenslave-2.6_1.1.0-20_amd64 + ifgate_2.14tx8.10-21_amd64 + ifhp_3.5.20-12.1_amd64 + ifile_1.3.9-6_amd64 + ifinnish_0.7-18_amd64 + ifinnish-large_0.7-18_amd64 + ifinnish-small_0.7-18_amd64 + ifmetric_0.3-2+deb7u1_amd64 + ifp-line-libifp_1.0.0.2-5_amd64 + ifpgui_1.0.0-3_amd64 + ifplugd_0.28-19_amd64 + ifrename_30~pre9-8_amd64 + ifrench-gut_1:1.0-30_amd64 + ifrit_3.3.4-3_amd64 + ifstat_1.1-8_amd64 + iftop_1.0~pre2-4~deb7u2_amd64 + iftop-dbg_1.0~pre2-4~deb7u2_amd64 + ifupdown_0.7.8_amd64 + ifuse_1.0.0-1+b1_amd64 + ifuse-dbg_1.0.0-1+b1_amd64 + igaelic_0.50-8_amd64 + ihungarian_1.2+repack-2_amd64 + ii_1.6-1_amd64 + ii-esu_1.0a.dfsg1-4_amd64 + iipimage-server_0.9.9-2_amd64 + iirish_2.0-21_amd64 + iitalian_1:2.3-3_amd64 + ijsgutenprint_5.2.9-1_amd64 + ikarus_0.0.3+bzr.2010.01.26-2_amd64 + ike-scan_1.9-4+b1_amd64 + ikiwiki-hosting-web_0.20120527_amd64 + imagemagick_8:6.7.7.10-5+deb7u2_amd64 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_amd64 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_amd64 + imagevis3d_2.0.1-5_amd64 + imagination_3.0-2_amd64 + imanx_0.50-9.1_amd64 + imapcopy_1.04-1_amd64 + imapfilter_1:2.5.2-2_amd64 + imapproxy_1.2.7-1.1_amd64 + imaptool_0.9-12_amd64 + imgvtopgm_2.0-9_amd64 + imhangul-gtk2_2.1.0-2_amd64 + imhangul-gtk3_3.1.0-2_amd64 + imms-audacious_3.1.0~svn301-2_amd64 + imms-common_3.1.0~svn301-2_amd64 + imsniff_0.04-6_amd64 + imspector_0.9-1_amd64 + imvirt-helper_0.9.4-4_amd64 + imwheel_1.0.0pre12-9_amd64 + inadyn_1.96.2-1+b1_amd64 + incron_0.5.10-1_amd64 + indent_2.2.11-2_amd64 + indi-bin_0.9.1-2_amd64 + indi-dbg_0.9.1-2_amd64 + indicator-applet_0.5.0-1_amd64 + indicator-applet-appmenu_0.5.0-1_amd64 + indicator-applet-complete_0.5.0-1_amd64 + indicator-applet-session_0.5.0-1_amd64 + indicator-application_0.5.0-1_amd64 + indicator-application-gtk2_0.5.0-1_amd64 + indicator-messages_0.6.0-1_amd64 + indicator-messages-gtk2_0.6.0-1_amd64 + indicator-session_0.3.96-1_amd64 + indicator-session-gtk2_0.3.96-1_amd64 + indicator-status-provider-emesene_0.6.0-1_amd64 + indicator-status-provider-mc5_0.6.0-1_amd64 + indicator-status-provider-pidgin_0.6.0-1_amd64 + indicator-status-provider-telepathy_0.6.0-1_amd64 + indigo-utils_1.0.0-2_amd64 + inetutils-ftp_2:1.9-2_amd64 + inetutils-ftpd_2:1.9-2_amd64 + inetutils-inetd_2:1.9-2_amd64 + inetutils-ping_2:1.9-2_amd64 + inetutils-syslogd_2:1.9-2_amd64 + inetutils-talk_2:1.9-2_amd64 + inetutils-talkd_2:1.9-2_amd64 + inetutils-telnet_2:1.9-2_amd64 + inetutils-telnetd_2:1.9-2_amd64 + inetutils-tools_2:1.9-2_amd64 + inetutils-traceroute_2:1.9-2_amd64 + infernal_1.0.2-2_amd64 + infernal-dbg_1.0.2-2_amd64 + infiniband-diags_1.4.4-20090314-1.2_amd64 + infinoted_0.5.2-6.1_amd64 + info_4.13a.dfsg.1-10_amd64 + infon-server_0~r198-8_amd64 + infon-viewer_0~r198-8_amd64 + initscripts_2.88dsf-41+deb7u1_amd64 + inkscape_0.48.3.1-1.3_amd64 + inn_1:1.7.2q-41_amd64 + inn2_2.5.3-3_amd64 + inn2-dev_2.5.3-3_amd64 + inn2-inews_2.5.3-3_amd64 + innfeed_0.10.1.7-8_amd64 + innoextract_1.2+git20120504-1_amd64 + inorwegian_2.0.10-5.1_amd64 + inotail_0.5-2_amd64 + inoticoming_0.2.3-1_amd64 + inotify-tools_3.14-1_amd64 + input-pad_1.0.1-2_amd64 + input-utils_1.0-1_amd64 + inputattach_1:1.4.3-1_amd64 + inputlirc_19-1_amd64 + inspircd_2.0.5-1+b1_amd64 + inspircd-dbg_2.0.5-1+b1_amd64 + insserv_1.14.0-5_amd64 + install-info_4.13a.dfsg.1-10_amd64 + instead_1.6.0-1_amd64 + integrit_4.1-1_amd64 + intel-gpu-tools_1.2-1_amd64 + intel2gas_1.3.3-14_amd64 + inteltool_0.0+r4091-1.2_amd64 + intercal_29:0.29-2_amd64 + interchange_5.7.7-2_amd64 + intone_0.77-2_amd64 + invada-studio-plugins-ladspa_0.3.1-2_amd64 + invada-studio-plugins-lv2_1.2.0+repack0-4_amd64 + inventor-clients_2.1.5-10-16_amd64 + inventor-demo_2.1.5-10-16_amd64 + inventor-dev_2.1.5-10-16_amd64 + iodbc_3.52.7-2+deb7u1_amd64 + iodine_0.6.0~rc1-12_amd64 + iogerman_1:2-28_amd64 + iok_2.1.2-1_amd64 + ion_3.0.1~dfsg1-1_amd64 + ioping_0.6-1_amd64 + ioquake3_1.36+svn2287-1_amd64 + ioquake3-dbg_1.36+svn2287-1_amd64 + ioquake3-server_1.36+svn2287-1_amd64 + iotop_0.4.4-4_amd64 + ipadic_2.7.0+main-3_amd64 + ipband_0.8.1-3_amd64 + ipe_7.1.2-1_amd64 + ipe5toxml_20051114-1_amd64 + iperf_2.0.5-3_amd64 + ipfm_0.11.5-4.1_amd64 + ipgrab_0.9.10-1_amd64 + ipheth-utils_1.0-3+b1_amd64 + ipip_1.1.9_amd64 + ipkungfu_0.6.1-6_amd64 + ipmitool_1.8.11-5_amd64 + ippl_1.4.14-12.1_amd64 + ippl-dbg_1.4.14-12.1_amd64 + ipppd_1:3.25+dfsg1-3.3~deb7u1_amd64 + iprint_1.3-9_amd64 + iproute_20120521-3+b3_amd64 + iproute-dev_20120521-3+b3_amd64 + ips_4.0-1_amd64 + ipsec-tools_1:0.8.0-14_amd64 + ipset_6.12.1-1_amd64 + ipsvd_1.0.0-2_amd64 + iptables_1.4.14-3.1_amd64 + iptables-dev_1.4.14-3.1_amd64 + iptotal_0.3.3-13_amd64 + iptraf_3.0.0-8.1_amd64 + iptstate_2.2.5-1_amd64 + iptux_0.5.3-1_amd64 + iputils-arping_3:20101006-1+b1_amd64 + iputils-clockdiff_3:20101006-1+b1_amd64 + iputils-ping_3:20101006-1+b1_amd64 + iputils-tracepath_3:20101006-1+b1_amd64 + ipv6calc_0.93.1-2_amd64 + ipvsadm_1:1.26-1_amd64 + ipwatchd_1.2.1-1_amd64 + ipwatchd-gnotify_1.0.1-1+b1_amd64 + ipx_2.2.6-9_amd64 + ir-keytable_0.8.8-3_amd64 + ir.lv2_1.3.1~dfsg0-3_amd64 + ircd-hybrid_1:7.2.2.dfsg.2-10_amd64 + ircd-irc2_2.11.2p2+dfsg-2_amd64 + ircd-ircu_2.10.12.10.dfsg1-1.1_amd64 + ircd-ratbox_3.0.7.dfsg-3_amd64 + ircd-ratbox-dbg_3.0.7.dfsg-3_amd64 + ircii_20060725-1_amd64 + ircmarkers_0.14-2_amd64 + ircp-tray_0.7.6-1.1_amd64 + irda-utils_0.9.18-12_amd64 + iripdb_0.1.3b-1.1_amd64 + iroffer_1.4.b03-3_amd64 + irqbalance_1.0.3-3_amd64 + irsim_9.7.75-1_amd64 + irssi_0.8.15-5_amd64 + irssi-dev_0.8.15-5_amd64 + irssi-plugin-xmpp_0.52-1_amd64 + irssi-plugin-xmpp-dbg_0.52-1_amd64 + isakmpd_20041012-7.2_amd64 + isatapd_0.9.6-2_amd64 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_amd64 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_amd64 + iscsitarget_1.4.20.2-10.1_amd64 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_amd64 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_amd64 + iselect_1.4.0-1_amd64 + isns_2.1-01+dfsg-3_amd64 + isns-client_2.1-01+dfsg-3_amd64 + isomaster_1.3.9-1_amd64 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + isoqlog_2.2.1-8_amd64 + ispell_3.3.02-6_amd64 + istanbul_0.2.2-9_amd64 + istgt_0.4~20111008-3_amd64 + iswedish_1.4.5-2.1_amd64 + isync_1.0.4-2.2_amd64 + italc-client_1:1.0.13-1.4_amd64 + italc-master_1:1.0.13-1.4_amd64 + itcl3_3.4.1-1_amd64 + itcl3-dev_3.4.1-1_amd64 + itk3_3.3-4_amd64 + itk3-dev_3.3-4_amd64 + itksnap_2.2.0-1.1_amd64 + itools_1.0-3_amd64 + itop_0.1-4_amd64 + iukrainian_1.6.5-2_amd64 + iverilog_0.9.5-1_amd64 + ivtools-bin_1.2.10a1-1_amd64 + ivtools-dev_1.2.10a1-1_amd64 + iw_3.4-1_amd64 + jaaa_0.6.0-2_amd64 + jack_3.1.1+cvs20050801-29_amd64 + jack-capture_0.9.67-1_amd64 + jack-keyboard_2.7.1-1_amd64 + jack-mixer_9-3_amd64 + jack-rack_1.4.8~rc1-1_amd64 + jack-stdio_1.4-1_amd64 + jack-tools_20101210-2_amd64 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_amd64 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + jackeq_0.5.9-2_amd64 + jackmeter_0.4-1_amd64 + jacktrip_1.0.5.patch2-1_amd64 + jade_1.2.1-47.1+b1_amd64 + jags_3.2.0-1_amd64 + jalv_1.0.0~dfsg0-2_amd64 + jam_2.5rel-1_amd64 + jamin_0.97.14~cvs~81203-4_amd64 + japa_0.6.0-2_amd64 + java2html_0.9.2-4_amd64 + jazip_0.34-15.1_amd64 + jbig2dec_0.11+20120125-1_amd64 + jbigkit-bin_2.0-2_amd64 + jblas_1.2.0-4_amd64 + jbofihe_0.38-5.1_amd64 + jcal_0.4.0-1.1_amd64 + jcc_2.13-1_amd64 + jclassinfo_0.19.1-6_amd64 + jconvolver_0.9.2-1_amd64 + jd_1:2.8.5~beta120206-3_amd64 + jed_1:0.99.19-2.1_amd64 + jeex_12.0.4-1_amd64 + jellyfish_1.1.5-1_amd64 + jesred_1.2pl1-17_amd64 + jester_1.0-9_amd64 + jfsutils_1.1.15-2_amd64 + jgraph_83-22_amd64 + jhbuild_3.4.0-1_amd64 + jhead_1:2.95-1_amd64 + jigdo-file_0.7.3-3+b1_amd64 + jigit_1.19-1_amd64 + jigzo_0.6.1-6_amd64 + jimsh_0.73-3_amd64 + jkmeter_0.6.1-2_amd64 + jless_382-iso262-3_amd64 + jlint_3.0-4.5_amd64 + jmdlx_0.4-6_amd64 + jmeters_0.2.1-2_amd64 + jnettop_0.13.0-1_amd64 + jnoise_0.6.0-3_amd64 + jnoisemeter_0.1.0-2_amd64 + jocaml_3.12.1-1_amd64 + jocaml-base_3.12.1-1_amd64 + joe_3.7-2.3_amd64 + john_1.7.8-1_amd64 + jove_4.16.0.73-1_amd64 + jovie_4:4.8.4-2_amd64 + jovie-dbg_4:4.8.4-2_amd64 + joy2key_1.6.3-1_amd64 + joystick_1:1.4.3-1_amd64 + jp2a_1.0.6-3.2_amd64 + jparse_1.4.0-3_amd64 + jpeginfo_1.6.0-5_amd64 + jpegjudge_0.0.2-2_amd64 + jpegoptim_1.2.3-2+b2_amd64 + jpegpixi_1.1.1-4.1_amd64 + jpilot_1.8.1.2-1_amd64 + jpilot-backup_0.60-3_amd64 + jpilot-plugins_1.8.1.2-1_amd64 + jpnevulator_1.3.1-1_amd64 + js-of-ocaml_1.2-2_amd64 + jstest-gtk_0.1.1~git20090722-2_amd64 + jstest-gtk-dbg_0.1.1~git20090722-2_amd64 + jsvc_1.0.10-3_amd64 + juffed_0.8.1-1+b2_amd64 + juk_4:4.8.4-2_amd64 + juke_0.7-4_amd64 + juman_5.1-2.1_amd64 + jumpnbump_1.50+dfsg1-3_amd64 + jupp_3.1.21-1_amd64 + jvim-canna_3.0-2.1b-3_amd64 + jwhois_4.0-2.1_amd64 + jwm_2.1.0-3_amd64 + jzip_210r20001005d-2_amd64 + k3b_2.0.2-6_amd64 + k3b-dbg_2.0.2-6_amd64 + k3d_0.8.0.2-18_amd64 + k4dirstat_2.7.3-1_amd64 + kaccessible_4:4.8.4-3_amd64 + kaccessible-dbg_4:4.8.4-3_amd64 + kacpimon_1:2.0.16-1+deb7u1_amd64 + kaddressbook_4:4.4.11.1+l10n-3+b1_amd64 + kadu_0.11.2-1_amd64 + kadu-external-modules_0.11.2-1_amd64 + kaffeine_1.2.2-2_amd64 + kaffeine-dbg_1.2.2-2_amd64 + kakasi_2.3.5~pre1+cvs20071101-1_amd64 + kalarm_4:4.4.11.1+l10n-3+b1_amd64 + kalgebra_4:4.8.4-1_amd64 + kalgebra-common_4:4.8.4-1_amd64 + kalgebra-dbg_4:4.8.4-1_amd64 + kalgebramobile_4:4.8.4-1_amd64 + kali_3.1-11_amd64 + kalign_1:2.03+20110620-2_amd64 + kalternatives_0.13-2_amd64 + kalzium_4:4.8.4-1_amd64 + kalzium-dbg_4:4.8.4-1_amd64 + kamera_4:4.8.4-2_amd64 + kamera-dbg_4:4.8.4-2_amd64 + kamerka_0.8.1-1_amd64 + kamoso_2.0.2-1+b1_amd64 + kanagram_4:4.8.4-1_amd64 + kanatest_0.4.8-2.1_amd64 + kanjipad_2.0.0-6_amd64 + kannel_1.4.3-2+b2_amd64 + kannel-dev_1.4.3-2+b2_amd64 + kannel-extras_1.4.3-2+b2_amd64 + kannel-sqlbox_0.7.2-3+b2_amd64 + kapman_4:4.8.4-3_amd64 + kapptemplate_4:4.8.4+dfsg-1_amd64 + kaptain_1:0.73-1_amd64 + karbon_1:2.4.4-3_amd64 + karma-tools_0.1.2-2.3_amd64 + kasumi_2.5-2_amd64 + kate_4:4.8.4-1_amd64 + kate-dbg_4:4.8.4-1_amd64 + katepart_4:4.8.4-1_amd64 + katomic_4:4.8.4-3_amd64 + katoob_0.5.9.1-3_amd64 + kawari8_8.2.8-7_amd64 + kaya_0.4.4-6_amd64 + kbackup_0.7.1-3_amd64 + kball_0.0.20041216-8+b1_amd64 + kbattleship_4:4.8.4-3_amd64 + kbd_1.15.3-9_amd64 + kbdd_0.6-4_amd64 + kbibtex_0.4-4_amd64 + kblackbox_4:4.8.4-3_amd64 + kblocks_4:4.8.4-3_amd64 + kbounce_4:4.8.4-3_amd64 + kbreakout_4:4.8.4-3_amd64 + kbruch_4:4.8.4-1_amd64 + kbruch-dbg_4:4.8.4-1_amd64 + kbuild_1:0.1.9998svn2543+dfsg-1_amd64 + kcachegrind_4:4.8.4+dfsg-1_amd64 + kcalc_4:4.8.4-2_amd64 + kcc_2.3-12_amd64 + kcharselect_4:4.8.4-2_amd64 + kcheckers_0.8.1-3_amd64 + kchmviewer_5.3-1_amd64 + kcollectd_0.9-2.1+b1_amd64 + kcolorchooser_4:4.8.4-1_amd64 + kcometen4_1.0.7-1_amd64 + kcov_4-2_amd64 + kdbg_2.5.1-1_amd64 + kdc2tiff_0.35-8+b1_amd64 + kde-baseapps-bin_4:4.8.4-2_amd64 + kde-baseapps-dbg_4:4.8.4-2_amd64 + kde-config-cddb_4:4.8.4-2_amd64 + kde-config-cron_4:4.8.4-3_amd64 + kde-config-fcitx_0.3.4-1_amd64 + kde-config-gtk-style_3:2.1-1_amd64 + kde-config-tablet_1.3.6-1_amd64 + kde-config-telepathy-accounts_0.4.0-1_amd64 + kde-config-telepathy-accounts-dbg_0.4.0-1_amd64 + kde-notification-colibri_0.2.2-1_amd64 + kde-plasma-desktop_5:77+deb7u1_amd64 + kde-plasma-netbook_5:77+deb7u1_amd64 + kde-runtime_4:4.8.4-2_amd64 + kde-runtime-dbg_4:4.8.4-2_amd64 + kde-style-bespin_0.r1552-1_amd64 + kde-style-oxygen_4:4.8.4-6_amd64 + kde-style-polyester_2.0.0-3_amd64 + kde-style-qtcurve_1.8.12-2_amd64 + kde-telepathy-approver_0.4.0-1_amd64 + kde-telepathy-approver-dbg_0.4.0-1_amd64 + kde-telepathy-auth-handler_0.4.0-1_amd64 + kde-telepathy-auth-handler-dbg_0.4.0-1_amd64 + kde-telepathy-call-ui_0.4.0-1_amd64 + kde-telepathy-call-ui-dbg_0.4.0-1_amd64 + kde-telepathy-contact-list_0.4.0-1_amd64 + kde-telepathy-contact-list-dbg_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler_0.4.0-1_amd64 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_amd64 + kde-telepathy-integration-module_0.4.0-1_amd64 + kde-telepathy-integration-module-dbg_0.4.0-1_amd64 + kde-telepathy-send-file_0.4.0-1_amd64 + kde-telepathy-send-file-dbg_0.4.0-1_amd64 + kde-telepathy-text-ui_0.4.0-1_amd64 + kde-telepathy-text-ui-dbg_0.4.0-1_amd64 + kde-thumbnailer-deb_1.3.0-2_amd64 + kde-window-manager_4:4.8.4-6_amd64 + kde-workspace-bin_4:4.8.4-6_amd64 + kde-workspace-dbg_4:4.8.4-6_amd64 + kde-workspace-dev_4:4.8.4-6_amd64 + kde-workspace-kgreet-plugins_4:4.8.4-6_amd64 + kde-zeroconf_4:4.8.4-1+b1_amd64 + kdeadmin-dbg_4:4.8.4-3_amd64 + kdeartwork-dbg_4:4.8.4-5_amd64 + kdeartwork-style_4:4.8.4-5_amd64 + kdeartwork-theme-window_4:4.8.4-5_amd64 + kdebase-workspace-dbg_4:4.8.4-6_amd64 + kdegames-dbg_4:4.8.4-3_amd64 + kdegraphics-mobipocket_4:4.8.4-1_amd64 + kdegraphics-strigi-analyzer_4:4.8.4-1_amd64 + kdegraphics-thumbnailers_4:4.8.4-1_amd64 + kdelibs-bin_4:4.8.4-4_amd64 + kdelibs5-dbg_4:4.8.4-4_amd64 + kdelibs5-dev_4:4.8.4-4_amd64 + kdelibs5-plugins_4:4.8.4-4_amd64 + kdemultimedia-dbg_4:4.8.4-2_amd64 + kdemultimedia-dev_4:4.8.4-2_amd64 + kdemultimedia-kio-plugins_4:4.8.4-2_amd64 + kdenetwork-dbg_4:4.8.4-1+b1_amd64 + kdenetwork-filesharing_4:4.8.4-1+b1_amd64 + kdenlive_0.9.2-2_amd64 + kdenlive-dbg_0.9.2-2_amd64 + kdepasswd_4:4.8.4-2_amd64 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-runtime_4:4.4.11.1-6_amd64 + kdepim-runtime-dbg_4:4.4.11.1-6_amd64 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_amd64 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_amd64 + kdepimlibs-dbg_4:4.8.4-2_amd64 + kdepimlibs-kio-plugins_4:4.8.4-2_amd64 + kdepimlibs5-dev_4:4.8.4-2_amd64 + kdeplasma-addons-dbg_4:4.8.4-1+b2_amd64 + kdesdk-dbg_4:4.8.4+dfsg-1_amd64 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_amd64 + kdesdk-misc_4:4.8.4+dfsg-1_amd64 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_amd64 + kdesudo_3.4.2.4-2_amd64 + kdesvn_1.5.5-4.1_amd64 + kdesvn-dbg_1.5.5-4.1_amd64 + kdesvn-kio-plugins_1.5.5-4.1_amd64 + kdetoys-dbg_4:4.8.4-1_amd64 + kdevelop_4:4.3.1-3+b1_amd64 + kdevelop-dbg_4:4.3.1-3+b1_amd64 + kdevelop-dev_4:4.3.1-3+b1_amd64 + kdevelop-pg-qt_1.0.0-2_amd64 + kdevelop-php_1.3.1-2_amd64 + kdevelop-php-dbg_1.3.1-2_amd64 + kdevelop-php-docs_1.3.1-2_amd64 + kdevplatform-dbg_1.3.1-2_amd64 + kdevplatform-dev_1.3.1-2_amd64 + kdevplatform5-libs_1.3.1-2_amd64 + kdewebdev-dbg_4:4.8.4-1_amd64 + kdf_4:4.8.4-1_amd64 + kdiamond_4:4.8.4-3_amd64 + kdiff3_0.9.96-4_amd64 + kdiff3-qt_0.9.96-4_amd64 + kdm_4:4.8.4-6_amd64 + kdocker_4.6-2_amd64 + kdoctools_4:4.8.4-4_amd64 + kdrill_6.5deb2-8_amd64 + keepalived_1:1.2.2-3_amd64 + keepassx_0.4.3+dfsg-0.1_amd64 + kelbt_0.15-1_amd64 + kerneltop_0.8-2.1_amd64 + ketm_0.0.6-22_amd64 + keurocalc_1.2.0-1_amd64 + kexec-tools_1:2.0.3-1+deb7u1_amd64 + kexi_1:2.4.4-3_amd64 + kexi-calligrasheets-driver_1:2.4.4-3_amd64 + kexi-map-form-widget_1:2.4.4-3_amd64 + kexi-mysql-driver_1:2.4.4-3_amd64 + kexi-postgresql-driver_1:2.4.4-3_amd64 + kexi-sybase-driver_1:2.4.4-3_amd64 + kexi-web-form-widget_1:2.4.4-3_amd64 + kexi-xbase-driver_1:2.4.4-3_amd64 + keylaunch_1.3.9_amd64 + keynav_0.20110708.0-1_amd64 + keytouch-editor_1:3.2.0~beta-3_amd64 + keyutils_1.5.5-3_amd64 + keyutils-dbg_1.5.5-3_amd64 + kfilereplace_4:4.8.4-1_amd64 + kfind_4:4.8.4-2_amd64 + kfloppy_4:4.8.4-1_amd64 + kfourinline_4:4.8.4-3_amd64 + kfreebsd-headers-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_amd64 + kfreebsd-headers-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-headers-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_amd64 + kfreebsd-headers-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-headers-amd64_9+1_amd64 + kfreebsd-image-8-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-8.3-1-amd64_8.3-6+deb7u1_amd64 + kfreebsd-image-9-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-9.0-2-amd64_9.0-10+deb70.6_amd64 + kfreebsd-image-amd64_9+1_amd64 + kftpgrabber_0.8.99~svn1214766-1_amd64 + kgamma_4:4.8.4-2_amd64 + kgb_1.0b4+ds-13.2_amd64 + kgeography_4:4.8.4-1_amd64 + kget_4:4.8.4-1+b1_amd64 + kgoldrunner_4:4.8.4-3_amd64 + kgpg_4:4.8.4-4_amd64 + kgpg-dbg_4:4.8.4-4_amd64 + khangman_4:4.8.4-1_amd64 + khelpcenter4_4:4.8.4-2_amd64 + kicad_0.20120526+bzr3261-1_amd64 + kid3_2.1-2_amd64 + kid3-qt_2.1-2_amd64 + kig_4:4.8.4-1_amd64 + kigo_4:4.8.4-3_amd64 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_amd64 + kildclient_2.11.1-1+b1_amd64 + kile_1:2.1.0-1_amd64 + killbots_4:4.8.4-3_amd64 + kimagemapeditor_4:4.8.4-1_amd64 + kimwitu_4.6.1-7.1_amd64 + kimwitu++_2.3.13-2_amd64 + kinfocenter_4:4.8.4-6_amd64 + kino_1.3.4-1.3_amd64 + kinput2-canna_3.1-10.3_amd64 + kinput2-canna-wnn_3.1-10.3_amd64 + kinput2-wnn_3.1-10.3_amd64 + kio-ftps_0.2+dfsg-2+b1_amd64 + kio-gopher_0.1.4-1_amd64 + kipi-plugins_4:2.6.0-1+b2_amd64 + kiriki_4:4.8.4-3_amd64 + kism3d_0.2.2-8_amd64 + kiten_4:4.8.4-1_amd64 + kiten-dbg_4:4.8.4-1_amd64 + kjots_4:4.4.11.1+l10n-3+b1_amd64 + kjumpingcube_4:4.8.4-3_amd64 + klash_0.8.11~git20120629-1+deb7u1_amd64 + klatexformula_3.2.6-1_amd64 + klavaro_1.9.4-2_amd64 + kleopatra_4:4.4.11.1+l10n-3+b1_amd64 + klettres_4:4.8.4-1_amd64 + klibc-utils_2.0.1-3.1_amd64 + klick_0.12.2-1+b2_amd64 + klickety_4:4.8.4-3_amd64 + klines_4:4.8.4-3_amd64 + klinkstatus_4:4.8.4-1_amd64 + klipper_4:4.8.4-6_amd64 + klog_0.5.9-1_amd64 + kluppe_0.6.14-1+b2_amd64 + klustakwik_2.0.1-1_amd64 + kmag_4:4.8.4-3_amd64 + kmag-dbg_4:4.8.4-3_amd64 + kmahjongg_4:4.8.4-3_amd64 + kmail_4:4.4.11.1+l10n-3+b1_amd64 + kmenuedit_4:4.8.4-6_amd64 + kmess_2.0.6.1-3_amd64 + kmetronome_0.10.1-1_amd64 + kmflcomp_0.9.8-1_amd64 + kmidimon_0.7.4-2_amd64 + kmines_4:4.8.4-3_amd64 + kmix_4:4.8.4-2_amd64 + kmldonkey_2.0.5+kde4.3.3-2_amd64 + kmod_9-3_amd64 + kmousetool_4:4.8.4-3_amd64 + kmousetool-dbg_4:4.8.4-3_amd64 + kmouth_4:4.8.4-3_amd64 + kmouth-dbg_4:4.8.4-3_amd64 + kmplayer_1:0.11.3c-1_amd64 + kmplot_4:4.8.4-2_amd64 + kmtrace_4:4.8.4+dfsg-1_amd64 + kmymoney_4.6.2-3.2_amd64 + kmymoney-dbg_4.6.2-3.2_amd64 + kmymoney-dev_4.6.2-3.2_amd64 + knemo_0.7.3-1_amd64 + knetwalk_4:4.8.4-3_amd64 + knews_1.0b.1-28_amd64 + knights_2.3.2-1_amd64 + knockd_0.5-3_amd64 + knocker_0.7.1-4_amd64 + knode_4:4.4.11.1+l10n-3+b1_amd64 + knotes_4:4.4.11.1+l10n-3+b1_amd64 + ko.tex-bin_0.1.0+20071012-1.1_amd64 + kobodeluxe_0.5.1-6_amd64 + kolabadmin_0.0.20080222-4_amd64 + kolf_4:4.8.4-3_amd64 + kollision_4:4.8.4-3_amd64 + kolourpaint4_4:4.8.4-1_amd64 + komi_1.04-5_amd64 + kommander_4:4.8.4-1_amd64 + komparator_4:0.6-1_amd64 + kompare_4:4.8.4+dfsg-1_amd64 + kon2_0.3.9b-20_amd64 + konq-plugins_4:4.8.4-2_amd64 + konqueror_4:4.8.4-2_amd64 + konqueror-nsplugins_4:4.8.4-2_amd64 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_amd64 + konquest_4:4.8.4-3_amd64 + konsole_4:4.8.4-2_amd64 + konsole-dbg_4:4.8.4-2_amd64 + konsolekalendar_4:4.4.11.1+l10n-3+b1_amd64 + kontact_4:4.4.11.1+l10n-3+b1_amd64 + konversation_1.4-1_amd64 + konversation-dbg_1.4-1_amd64 + konwert_1.8-11.2_amd64 + kopete_4:4.8.4-1+b1_amd64 + korganizer_4:4.4.11.1+l10n-3+b1_amd64 + kosd_0.8.1-1_amd64 + koules_1.4-19_amd64 + kover_1:4-7+b1_amd64 + kpart-webkit_1.3~git20120518.9a111005-3_amd64 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_amd64 + kpartloader_4:4.8.4+dfsg-1_amd64 + kpartsplugin_20120605-1_amd64 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + kpat_4:4.8.4-3_amd64 + kphotoalbum_4.2-1+b1_amd64 + kplayer_1:0.7-2.1_amd64 + kplayer-dbg_1:0.7-2.1_amd64 + kppp_4:4.8.4-1+b1_amd64 + kradio4_4.0.4-1_amd64 + kraft_0.45-2_amd64 + kraptor_0.0.20040403-6+b1_amd64 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64 + krb5-auth-dialog_3.2.1-1+deb7u1_amd64 + krb5-clients_1:1.0.1-4_amd64 + krb5-ftpd_1:1.0.1-4_amd64 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64 + krb5-multidev_1.10.1+dfsg-5+deb7u1_amd64 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_amd64 + krb5-rsh-server_1:1.0.1-4_amd64 + krb5-sync-plugin_2.2-3_amd64 + krb5-sync-tools_2.2-3_amd64 + krb5-telnetd_1:1.0.1-4_amd64 + krb5-user_1.10.1+dfsg-5+deb7u1_amd64 + krdc_4:4.8.4-1+b1_amd64 + krecipes_2.0~beta2-3_amd64 + krecipes-dbg_2.0~beta2-3_amd64 + kredentials_2.0~pre3-1.1_amd64 + kremotecontrol_4:4.8.4-3_amd64 + kremotecontrol-dbg_4:4.8.4-3_amd64 + krename_4.0.9-1+b1_amd64 + kreversi_4:4.8.4-3_amd64 + krfb_4:4.8.4-1+b1_amd64 + krita_1:2.4.4-3_amd64 + krosspython_4:4.8.4-1_amd64 + kruler_4:4.8.4-1_amd64 + krusader_1:2.3.0~beta1-1+wheezy3_amd64 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_amd64 + ksaneplugin_4:4.8.4-1_amd64 + kscd_4:4.8.4-2_amd64 + kscope_1.9.4-2_amd64 + kscreensaver_4:4.8.4-5_amd64 + kscreensaver-xsavers_4:4.8.4-5_amd64 + ksh_93u+-1.2_amd64 + kshisen_4:4.8.4-3_amd64 + kshutdown_3.0~beta4-1_amd64 + ksirk_4:4.8.4-3_amd64 + ksnapshot_4:4.8.4-1_amd64 + kspaceduel_4:4.8.4-3_amd64 + ksplice_0.9.9-4_amd64 + ksquares_4:4.8.4-3_amd64 + ksshaskpass_0.5.3-1+b1_amd64 + kst_2.0.3-1.3_amd64 + kstars_4:4.8.4-1_amd64 + kstart_4.1-2_amd64 + ksudoku_4:4.8.4-3_amd64 + ksysguard_4:4.8.4-6_amd64 + ksysguardd_4:4.8.4-6_amd64 + ksystemlog_4:4.8.4-3_amd64 + kteatime_4:4.8.4-1_amd64 + kterm_6.2.0-46_amd64 + kthesaurus_1:2.4.4-3_amd64 + ktikz_0.10-3_amd64 + ktimer_4:4.8.4-1_amd64 + ktimetracker_4:4.4.11.1+l10n-3+b1_amd64 + ktoblzcheck_1.39-1_amd64 + ktorrent_4.2.1-1_amd64 + ktorrent-dbg_4.2.1-1_amd64 + ktouch_4:4.8.4-1_amd64 + ktron_4:4.8.4-3_amd64 + ktuberling_4:4.8.4-3_amd64 + kturtle_4:4.8.4-1_amd64 + ktux_4:4.8.4-1_amd64 + kubrick_4:4.8.4-3_amd64 + kuipc_20061220+dfsg3-2_amd64 + kuiviewer_4:4.8.4+dfsg-1_amd64 + kumofs_0.4.13-5_amd64 + kuser_4:4.8.4-3_amd64 + kuvert_2.0.6_amd64 + kvirc_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_amd64 + kvirc-modules_4:4.1.3+20111124.svn5988-2_amd64 + kvkbd_1:0.6-3_amd64 + kvm_1:1.1.2+dfsg-6_amd64 + kvpm_0.8.6-2+deb7u1_amd64 + kvpm-dbg_0.8.6-2+deb7u1_amd64 + kvpnc_0.9.6a-2.1_amd64 + kvpnc-dbg_0.9.6a-2.1_amd64 + kwalletcli_2.11-2_amd64 + kwalletmanager_4:4.8.4-3_amd64 + kwalletmanager-dbg_4:4.8.4-3_amd64 + kwave_0.8.8-1-3_amd64 + kwave-dbg_0.8.8-1-3_amd64 + kwin-style-crystal_2.0.5-2_amd64 + kwin-style-dekorator_0.5.1-1_amd64 + kwin-style-qtcurve_1.8.12-2_amd64 + kwordquiz_4:4.8.4-1_amd64 + kwrite_4:4.8.4-1_amd64 + kwstyle_1.0.0+cvs20120330-3_amd64 + kxterm_20061220+dfsg3-2_amd64 + l2tp-ipsec-vpn_1.0.9-1_amd64 + l2tp-ipsec-vpn-daemon_0.9.9-1_amd64 + l2tpns_2.1.21-1.1_amd64 + l7-filter-userspace_0.12-beta1-1_amd64 + labrea_2.5-stable-3_amd64 + laby_0.6.3-1_amd64 + lacheck_1.26-14_amd64 + ladish_1+dfsg0-3_amd64 + ladish-dbg_1+dfsg0-3_amd64 + ladr4-apps_0.0.200902a-2.1_amd64 + ladspa-sdk_1.13-1_amd64 + ladvd_0.9.2-2_amd64 + laevateinn_0.088-5_amd64 + lakai_0.1-1_amd64 + lam-runtime_7.1.4-3_amd64 + lam4-dev_7.1.4-3_amd64 + lambdabot_4.2.3.2-4_amd64 + lame_3.99.5+repack1-3_amd64 + lammps_0~20120615.gite442279-1_amd64 + langdrill_0.3-7_amd64 + laptop-detect_0.13.7_amd64 + larswm_7.5.3-6_amd64 + last-align_199-1_amd64 + lastfm_1:1.5.4.27091+dfsg1-1_amd64 + latd_1.32_amd64 + late_0.1.0-12_amd64 + latencytop_0.5_amd64 + latex-cjk-chinese_4.8.3+git20120621-1_amd64 + latex-cjk-common_4.8.3+git20120621-1_amd64 + latex-cjk-japanese_4.8.3+git20120621-1_amd64 + latex-sanskrit_2.2-9_amd64 + latex2rtf_1.9.19-4.2_amd64 + latexila_2.4.0-1_amd64 + latrace_0.5.11-1_amd64 + launchtool_0.8-2_amd64 + launchy_2.5-1_amd64 + launchy-plugins_2.5-1_amd64 + lazarus-ide_0.9.30.4-6_amd64 + lazarus-ide-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-gtk2_0.9.30.4-6_amd64 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lazarus-ide-qt4_0.9.30.4-6_amd64 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64 + lbcd_3.3.0-1_amd64 + lbdb_0.38_amd64 + lbreakout2_2.6.3-1_amd64 + lbt_1.2.2-5_amd64 + lcab_1.0b12-5_amd64 + lcalc_0.0.20080205-1.2_amd64 + lcd4linux_0.11.0~svn1189-1+b1_amd64 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_amd64 + lcdproc_0.5.5-2_amd64 + lcdproc-dbg_0.5.5-2_amd64 + lcdproc-extra-drivers_0.5.5-2_amd64 + lcgdm-dbg_1.8.2-1+b2_amd64 + lcl_0.9.30.4-6_amd64 + lcl-0.9.30.4_0.9.30.4-6_amd64 + lcl-gtk2_0.9.30.4-6_amd64 + lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64 + lcl-nogui_0.9.30.4-6_amd64 + lcl-nogui-0.9.30.4_0.9.30.4-6_amd64 + lcl-qt4_0.9.30.4-6_amd64 + lcl-qt4-0.9.30.4_0.9.30.4-6_amd64 + lcl-units_0.9.30.4-6_amd64 + lcl-units-0.9.30.4_0.9.30.4-6_amd64 + lcl-utils_0.9.30.4-6_amd64 + lcl-utils-0.9.30.4_0.9.30.4-6_amd64 + lcrack_20040914-1_amd64 + lcrt_1.1.2-1_amd64 + ld10k1_1.0.25-2_amd64 + ldap-utils_2.4.31-1+nmu2_amd64 + ldap2dns_0.3.1-3.1_amd64 + ldap2zone_0.2-3.1_amd64 + ldapvi_1.7-9_amd64 + ldb-tools_1:1.1.6-1_amd64 + ldm_2:2.2.11-2_amd64 + ldnsutils_1.6.13-1_amd64 + le_1.14.3-2_amd64 + le-dico-de-rene-cougnenc_1.3-2.1_amd64 + leafnode_1.11.8-3_amd64 + leafpad_0.8.18.1-3_amd64 + leaktracer_2.4-5_amd64 + leave_1.12-2.1_amd64 + lebiniou_3.18-1_amd64 + ledger_2.6.2-3.1_amd64 + ledmon_0.32-1_amd64 + lekhonee-gnome_0.11-3_amd64 + leksah_0.12.0.3-3_amd64 + leksah-server_0.12.0.4-3_amd64 + lemon_3.7.13-1+deb7u1_amd64 + leptonica-progs_1.69-3.1_amd64 + less_444-4_amd64 + lesstif-bin_1:0.95.2-1.1_amd64 + lesstif2_1:0.95.2-1.1_amd64 + lesstif2-dbg_1:0.95.2-1.1_amd64 + lesstif2-dev_1:0.95.2-1.1_amd64 + letterize_1.3-3_amd64 + levee_3.5a-3_amd64 + lfc_1.8.2-1+b2_amd64 + lfc-dli_1.8.2-1+b2_amd64 + lfc-server-mysql_1.8.2-1+b2_amd64 + lfc-server-postgres_1.8.2-1+b2_amd64 + lfhex_0.42-3.1_amd64 + lft_2.2-4_amd64 + lftp_4.3.6-1+deb7u2_amd64 + lhasa_0.0.7-2_amd64 + lhs2tex_1.17-1_amd64 + lib32asound2_1.0.25-4_amd64 + lib32asound2-dev_1.0.25-4_amd64 + lib32bz2-1.0_1.0.6-4_amd64 + lib32bz2-dev_1.0.6-4_amd64 + lib32cr0_0.8.5-2_amd64 + lib32ffi-dev_3.0.10-3_amd64 + lib32ffi5_3.0.10-3_amd64 + lib32gcc1_1:4.7.2-5_amd64 + lib32gcc1-dbg_1:4.7.2-5_amd64 + lib32gfortran3_4.7.2-5_amd64 + lib32gfortran3-dbg_4.7.2-5_amd64 + lib32gmp-dev_2:5.0.5+dfsg-2_amd64 + lib32gmp10_2:5.0.5+dfsg-2_amd64 + lib32gmpxx4_2:5.0.5+dfsg-2_amd64 + lib32go0_4.7.2-5_amd64 + lib32go0-dbg_4.7.2-5_amd64 + lib32gomp1_4.7.2-5_amd64 + lib32gomp1-dbg_4.7.2-5_amd64 + lib32itm1_4.7.2-5_amd64 + lib32itm1-dbg_4.7.2-5_amd64 + lib32mpfr-dev_3.1.0-5_amd64 + lib32mpfr4_3.1.0-5_amd64 + lib32mudflap0_4.7.2-5_amd64 + lib32mudflap0-dbg_4.7.2-5_amd64 + lib32ncurses5_5.9-10_amd64 + lib32ncurses5-dev_5.9-10_amd64 + lib32ncursesw5_5.9-10_amd64 + lib32ncursesw5-dev_5.9-10_amd64 + lib32nss-mdns_0.10-3.2_amd64 + lib32objc3_4.6.3-14_amd64 + lib32objc3-dbg_4.6.3-14_amd64 + lib32objc4_4.7.2-5_amd64 + lib32objc4-dbg_4.7.2-5_amd64 + lib32quadmath0_4.7.2-5_amd64 + lib32quadmath0-dbg_4.7.2-5_amd64 + lib32readline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + lib32readline5_5.2+dfsg-2~deb7u1_amd64 + lib32readline6_6.2+dfsg-0.1_amd64 + lib32readline6-dev_6.2+dfsg-0.1_amd64 + lib32stdc++6_4.7.2-5_amd64 + lib32stdc++6-4.4-dbg_4.4.7-2_amd64 + lib32stdc++6-4.6-dbg_4.6.3-14_amd64 + lib32stdc++6-4.7-dbg_4.7.2-5_amd64 + lib32tinfo-dev_5.9-10_amd64 + lib32tinfo5_5.9-10_amd64 + lib32v4l-0_0.8.8-3_amd64 + lib32v4l-dev_0.8.8-3_amd64 + lib32z1_1:1.2.7.dfsg-13_amd64 + lib32z1-dev_1:1.2.7.dfsg-13_amd64 + lib3ds-1-3_1.3.0-6_amd64 + lib3ds-dev_1.3.0-6_amd64 + lib4store-dev_1.1.4-2_amd64 + lib4store0_1.1.4-2_amd64 + liba52-0.7.4_0.7.4-16_amd64 + liba52-0.7.4-dev_0.7.4-16_amd64 + libaa-bin_1.4p5-40_amd64 + libaa1_1.4p5-40_amd64 + libaa1-dbg_1.4p5-40_amd64 + libaa1-dev_1.4p5-40_amd64 + libaac-tactics-ocaml_0.2.pl2-7_amd64 + libaac-tactics-ocaml-dev_0.2.pl2-7_amd64 + libaacs-dev_0.4.0-1_amd64 + libaacs0_0.4.0-1_amd64 + libaal-dev_1.0.5-5.1_amd64 + libabiword-2.9_2.9.2+svn20120603-8_amd64 + libabiword-2.9-dev_2.9.2+svn20120603-8_amd64 + libaccess-bridge-java-jni_1.26.2-9_amd64 + libaccountsservice-dbg_0.6.21-8_amd64 + libaccountsservice-dev_0.6.21-8_amd64 + libaccountsservice0_0.6.21-8_amd64 + libace-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-dev_6.0.3+dfsg-0.1_amd64 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-flreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-foxreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-htbp-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-dev_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-perl_1.92-2+b2_amd64 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-qtreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-rmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-ssl-dev_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tkreactor-dev_6.0.3+dfsg-0.1_amd64 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-tmcast-dev_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_amd64 + libace-xtreactor-dev_6.0.3+dfsg-0.1_amd64 + libacexml-6.0.3_6.0.3+dfsg-0.1_amd64 + libacexml-dev_6.0.3+dfsg-0.1_amd64 + libacl1_2.2.51-8_amd64 + libacl1-dev_2.2.51-8_amd64 + libacme-damn-perl_0.05-1_amd64 + libacpi-dev_0.2-4_amd64 + libacpi0_0.2-4_amd64 + libacr38u_1.7.11-1_amd64 + libacr38ucontrol-dev_1.7.11-1_amd64 + libacr38ucontrol0_1.7.11-1_amd64 + libacsccid1_1.0.3-1_amd64 + libactiviz.net-cil_1:1.0~git20111123-6_amd64 + libadasockets4_1.8.10-2_amd64 + libadasockets4-dev_1.8.10-2_amd64 + libaddresses-dev_0.4.7-1+b5_amd64 + libaddresses0_0.4.7-1+b5_amd64 + libaddressview-dev_0.4.7-1+b5_amd64 + libaddressview0_0.4.7-1+b5_amd64 + libadios-dev_1.3-11_amd64 + libadminutil-data_1.1.15-1_amd64 + libadminutil-dev_1.1.15-1_amd64 + libadminutil0_1.1.15-1_amd64 + libadns1_1.4-2_amd64 + libadns1-dev_1.4-2_amd64 + libadolc-dev_2.3.0-1_amd64 + libadolc2_2.3.0-1_amd64 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64 + libadplug-dev_2.2.1+dfsg3-0.1_amd64 + libafflib-dev_3.6.6-1.1_amd64 + libafflib0_3.6.6-1.1_amd64 + libafrodite-0.12-2_0.12.1-3_amd64 + libafrodite-0.12-2-dbg_0.12.1-3_amd64 + libafrodite-0.12-dev_0.12.1-3_amd64 + libafsauthent1_1.6.1-3+deb7u1_amd64 + libafsrpc1_1.6.1-3+deb7u1_amd64 + libafterimage-dev_2.2.11-7_amd64 + libafterimage0_2.2.11-7_amd64 + libafterstep1_2.2.11-7_amd64 + libagg-dev_2.5+dfsg1-8_amd64 + libagrep-ocaml_1.0-11+b3_amd64 + libagrep-ocaml-dev_1.0-11+b3_amd64 + libahven21.0_2.1-4_amd64 + libahven3-dev_2.1-4_amd64 + libai-fann-perl_0.10-1_amd64 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_amd64 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_amd64 + libaio-dev_0.3.109-3_amd64 + libaio1_0.3.109-3_amd64 + libaio1-dbg_0.3.109-3_amd64 + libakonadi-calendar4_4:4.8.4-2_amd64 + libakonadi-contact4_4:4.8.4-2_amd64 + libakonadi-dev_1.7.2-3_amd64 + libakonadi-kabc4_4:4.8.4-2_amd64 + libakonadi-kcal4_4:4.8.4-2_amd64 + libakonadi-kde4_4:4.8.4-2_amd64 + libakonadi-kmime4_4:4.8.4-2_amd64 + libakonadi-notes4_4:4.8.4-2_amd64 + libakonadiprotocolinternals1_1.7.2-3_amd64 + libalberta2_2.0.1-5_amd64 + libalberta2-dbg_2.0.1-5_amd64 + libalberta2-dev_2.0.1-5_amd64 + libaldmb1_1:0.9.3-5.4_amd64 + libaldmb1-dev_1:0.9.3-5.4_amd64 + libalglib-2.6.0_2.6.0-6_amd64 + libalglib-2.6.0-dbg_2.6.0-6_amd64 + libalglib-dev_2.6.0-6_amd64 + libalgorithm-combinatorics-perl_0.26-1_amd64 + libalgorithm-diff-xs-perl_0.04-2+b1_amd64 + libalgorithm-permute-perl_0.12-1+b2_amd64 + libalias-perl_2.32-9+b1_amd64 + libalien-wxwidgets-perl_0.59+dfsg-1_amd64 + libalkimia-dev_4.3.2-1.1_amd64 + libalkimia4_4.3.2-1.1_amd64 + liballeggl4-dev_2:4.4.2-2.1_amd64 + liballeggl4.4_2:4.4.2-2.1_amd64 + liballegro4.2-dev_2:4.4.2-2.1_amd64 + liballegro4.4_2:4.4.2-2.1_amd64 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_amd64 + libalog0.4.1-base_0.4.1-2_amd64 + libalog0.4.1-base-dbg_0.4.1-2_amd64 + libalog0.4.1-base-dev_0.4.1-2_amd64 + libalog0.4.1-full_0.4.1-2_amd64 + libalog0.4.1-full-dbg_0.4.1-2_amd64 + libalog0.4.1-full-dev_0.4.1-2_amd64 + libalsa-ocaml_0.2.1-1+b1_amd64 + libalsa-ocaml-dev_0.2.1-1+b1_amd64 + libalsaplayer-dev_0.99.80-5.1_amd64 + libalsaplayer0_0.99.80-5.1_amd64 + libalure-dev_1.2-6_amd64 + libalure1_1.2-6_amd64 + libalut-dev_1.1.0-3_amd64 + libalut0_1.1.0-3_amd64 + libamd2.2.0_1:3.4.0-3_amd64 + libamu-dev_6.2+rc20110530-3_amd64 + libamu4_6.2+rc20110530-3_amd64 + libanalitza-dbg_4:4.8.4-2_amd64 + libanalitza-dev_4:4.8.4-2_amd64 + libanalitza4abi1_4:4.8.4-2_amd64 + libanalitzagui4_4:4.8.4-2_amd64 + libanet0.1_0.1-3_amd64 + libanet0.1-dbg_0.1-3_amd64 + libanet0.1-dev_0.1-3_amd64 + libanjuta-3-0_2:3.4.3-1_amd64 + libanjuta-dev_2:3.4.3-1_amd64 + libann-dev_1.1.2+doc-3_amd64 + libann0_1.1.2+doc-3_amd64 + libanthy-dev_9100h-16_amd64 + libanthy0_9100h-16_amd64 + libantlr-dev_2.7.7+dfsg-4_amd64 + libantlr3c-3.2-0_3.2-2_amd64 + libantlr3c-antlrdbg-3.2-0_3.2-2_amd64 + libantlr3c-dev_3.2-2_amd64 + libanyevent-perl_7.010-1_amd64 + libao-common_1.1.0-2_amd64 + libao-dbg_1.1.0-2_amd64 + libao-dev_1.1.0-2_amd64 + libao-ocaml_0.2.0-1+b2_amd64 + libao-ocaml-dev_0.2.0-1+b2_amd64 + libao4_1.1.0-2_amd64 + libaosd-dev_0.2.7-1_amd64 + libaosd-text2_0.2.7-1_amd64 + libaosd2_0.2.7-1_amd64 + libapache-authenhook-perl_2.00-04+pristine-2+b2_amd64 + libapache-db-perl_0.14-3+b1_amd64 + libapache2-authenntlm-perl_0.02-5+b3_amd64 + libapache2-mod-apparmor_2.7.103-4_amd64 + libapache2-mod-apreq2_2.13-1+b2_amd64 + libapache2-mod-auth-cas_1.0.9.1-2_amd64 + libapache2-mod-auth-kerb_5.4-2_amd64 + libapache2-mod-auth-memcookie_1.0.2-5_amd64 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_amd64 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_amd64 + libapache2-mod-auth-openid_0.7-0.1_amd64 + libapache2-mod-auth-pam_1.1.1-9_amd64 + libapache2-mod-auth-pgsql_2.0.3-5_amd64 + libapache2-mod-auth-plain_2.0.51_amd64 + libapache2-mod-auth-pubtkt_0.7-1_amd64 + libapache2-mod-auth-radius_1.5.8-1.1_amd64 + libapache2-mod-auth-sys-group_1.1.1-9_amd64 + libapache2-mod-auth-tkt_2.1.0-6_amd64 + libapache2-mod-authn-sasl_1.2-1_amd64 + libapache2-mod-authn-webid_0~20110301-1+b1_amd64 + libapache2-mod-authn-yubikey_1.0-1_amd64 + libapache2-mod-authnz-external_3.2.4-2.1_amd64 + libapache2-mod-authz-unixgroup_1.0.2-1_amd64 + libapache2-mod-bw_0.92-6_amd64 + libapache2-mod-dacs_1.4.27b-2_amd64 + libapache2-mod-defensible_1.4-3_amd64 + libapache2-mod-dnssd_0.6-3_amd64 + libapache2-mod-encoding_20040616-5.1_amd64 + libapache2-mod-evasive_1.10.1-1_amd64 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_amd64 + libapache2-mod-geoip_1.2.7-1_amd64 + libapache2-mod-gnutls_0.5.10-1.1_amd64 + libapache2-mod-jk_1:1.2.37-1_amd64 + libapache2-mod-layout_5.1-1_amd64 + libapache2-mod-ldap-userdir_1.1.19-1_amd64 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_amd64 + libapache2-mod-lisp_1.3.1-1.2_amd64 + libapache2-mod-log-sql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_amd64 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_amd64 + libapache2-mod-macro_1.1.11-2_amd64 + libapache2-mod-mime-xattr_0.4-4_amd64 + libapache2-mod-mono_2.10-3.2_amd64 + libapache2-mod-musicindex_1.3.7-2+b1_amd64 + libapache2-mod-nss_1.0.8-2_amd64 + libapache2-mod-ocamlnet_3.5.1-1_amd64 + libapache2-mod-parser3_3.4.2-2_amd64 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_amd64 + libapache2-mod-perl2_2.0.7-3_amd64 + libapache2-mod-php5_5.4.4-14+deb7u7_amd64 + libapache2-mod-php5filter_5.4.4-14+deb7u7_amd64 + libapache2-mod-proxy-html_3.0.1-1.1_amd64 + libapache2-mod-python_3.3.1-9+b3_amd64 + libapache2-mod-qos_10.8-1_amd64 + libapache2-mod-random_2.1-1_amd64 + libapache2-mod-removeip_1.0b-5_amd64 + libapache2-mod-rivet_2.0.5-1_amd64 + libapache2-mod-rpaf_0.6-7+wheezy1_amd64 + libapache2-mod-ruby_1.2.6-2_amd64 + libapache2-mod-ruid2_0.9.7-1_amd64 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-scgi_1.13-1+b2_amd64 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_amd64 + libapache2-mod-spamhaus_0.7-1_amd64 + libapache2-mod-speedycgi_2.22-13+b2_amd64 + libapache2-mod-suphp_0.7.1-3_amd64 + libapache2-mod-upload-progress_0.1+git20110718-1_amd64 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + libapache2-mod-vhost-hash-alias_1.0-2_amd64 + libapache2-mod-vhost-ldap_2.0.8-1_amd64 + libapache2-mod-wsgi_3.3-4_amd64 + libapache2-mod-wsgi-py3_3.3-4_amd64 + libapache2-mod-xsendfile_0.12-1_amd64 + libapache2-modsecurity_2.6.6-6+deb7u1_amd64 + libapache2-request-perl_2.13-1+b2_amd64 + libapache2-svn_1.6.17dfsg-4+deb7u4_amd64 + libapache2-webauth_4.1.1-2_amd64 + libapache2-webkdc_4.1.1-2_amd64 + libapertium3-3.1-0_3.1.0-2_amd64 + libapertium3-3.1-0-dev_3.1.0-2_amd64 + libapm-dev_3.2.2-14_amd64 + libapm1_3.2.2-14_amd64 + libapol-dev_3.3.7-3_amd64 + libapol4_3.3.7-3_amd64 + libapparmor-dev_2.7.103-4_amd64 + libapparmor-perl_2.7.103-4_amd64 + libapparmor1_2.7.103-4_amd64 + libappindicator-dev_0.4.92-2_amd64 + libappindicator1_0.4.92-2_amd64 + libappindicator3-1_0.4.92-2_amd64 + libappindicator3-dev_0.4.92-2_amd64 + libapq-postgresql3.2.0_3.2.0-2_amd64 + libapq-postgresql3.2.0-dbg_3.2.0-2_amd64 + libapq-postgresql3.2.0-dev_3.2.0-2_amd64 + libapq3.2.0_3.2.0-1_amd64 + libapq3.2.0-dbg_3.2.0-1_amd64 + libapq3.2.0-dev_3.2.0-1_amd64 + libapr-memcache-dev_0.7.0-1_amd64 + libapr-memcache0_0.7.0-1_amd64 + libapr1_1.4.6-3+deb7u1_amd64 + libapr1-dbg_1.4.6-3+deb7u1_amd64 + libapr1-dev_1.4.6-3+deb7u1_amd64 + libapreq2_2.13-1+b2_amd64 + libapreq2-dev_2.13-1+b2_amd64 + libapron_0.9.10-5.2+b3_amd64 + libapron-ocaml_0.9.10-5.2+b3_amd64 + libapron-ocaml-dev_0.9.10-5.2+b3_amd64 + libaprutil1_1.4.1-3_amd64 + libaprutil1-dbd-freetds_1.4.1-3_amd64 + libaprutil1-dbd-mysql_1.4.1-3_amd64 + libaprutil1-dbd-odbc_1.4.1-3_amd64 + libaprutil1-dbd-pgsql_1.4.1-3_amd64 + libaprutil1-dbd-sqlite3_1.4.1-3_amd64 + libaprutil1-dbg_1.4.1-3_amd64 + libaprutil1-dev_1.4.1-3_amd64 + libaprutil1-ldap_1.4.1-3_amd64 + libapt-inst1.5_0.9.7.9+deb7u1_amd64 + libapt-pkg-dev_0.9.7.9+deb7u1_amd64 + libapt-pkg-perl_0.1.26+b1_amd64 + libapt-pkg4.12_0.9.7.9+deb7u1_amd64 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_amd64 + libaqbanking34_5.0.24-3_amd64 + libaqbanking34-dbg_5.0.24-3_amd64 + libaqbanking34-dev_5.0.24-3_amd64 + libaqbanking34-plugins_5.0.24-3_amd64 + libaqhbci20_5.0.24-3_amd64 + libaqofxconnect7_5.0.24-3_amd64 + libaqsis-dev_1.8.1-3_amd64 + libaqsis1_1.8.1-3_amd64 + libarchive-dev_3.0.4-3+nmu1_amd64 + libarchive12_3.0.4-3+nmu1_amd64 + libargtable2-0_12-1_amd64 + libargtable2-dev_12-1_amd64 + libarmadillo-dev_1:3.2.3+dfsg-1_amd64 + libarmadillo3_1:3.2.3+dfsg-1_amd64 + libarpack++2-dev_2.3-2_amd64 + libarpack++2c2a_2.3-2_amd64 + libarpack2_3.1.1-2.1_amd64 + libarpack2-dbg_3.1.1-2.1_amd64 + libarpack2-dev_3.1.1-2.1_amd64 + libarray-refelem-perl_1.00-1.1+b3_amd64 + libart-2.0-2_2.3.21-2_amd64 + libart-2.0-dev_2.3.21-2_amd64 + libasedrive-serial_3.7-3_amd64 + libasedrive-usb_3.7-3_amd64 + libasis2010_2010-5_amd64 + libasis2010-dbg_2010-5_amd64 + libasis2010-dev_2010-5_amd64 + libasm-dev_0.152-1+wheezy1_amd64 + libasm1_0.152-1+wheezy1_amd64 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libasound2_1.0.25-4_amd64 + libasound2-dbg_1.0.25-4_amd64 + libasound2-dev_1.0.25-4_amd64 + libasound2-plugin-equal_0.6-4_amd64 + libasound2-plugins_1.0.25-2_amd64 + libaspell-dev_0.60.7~20110707-1_amd64 + libaspell15_0.60.7~20110707-1_amd64 + libasprintf0c2_0.18.1.1-9_amd64 + libass-dev_0.10.0-3_amd64 + libass4_0.10.0-3_amd64 + libassa3.5-5_3.5.1-2_amd64 + libassa3.5-5-dbg_3.5.1-2_amd64 + libassa3.5-5-dev_3.5.1-2_amd64 + libassimp-dev_3.0~dfsg-1_amd64 + libassimp3_3.0~dfsg-1_amd64 + libassuan-dev_2.0.3-1_amd64 + libassuan0_2.0.3-1_amd64 + libassuan0-dbg_2.0.3-1_amd64 + libast2_0.7-6+b1_amd64 + libast2-dev_0.7-6+b1_amd64 + libastro-fits-cfitsio-perl_1.08-1_amd64 + libasync-interrupt-perl_1.10-1_amd64 + libasyncns-dev_0.8-4_amd64 + libasyncns0_0.8-4_amd64 + libatasmart-bin_0.19-1_amd64 + libatasmart-dev_0.19-1_amd64 + libatasmart4_0.19-1_amd64 + libatd-ocaml_1.0.1-1+b1_amd64 + libatd-ocaml-dev_1.0.1-1+b1_amd64 + libatdgen-ocaml_1.2.2-1+b1_amd64 + libatdgen-ocaml-dev_1.2.2-1+b1_amd64 + libatfs1_1.4pl6-11_amd64 + libatk-adaptor_2.5.3-2_amd64 + libatk-adaptor-data_2.5.3-2_amd64 + libatk-adaptor-dbg_2.5.3-2_amd64 + libatk-bridge2.0-0_2.5.3-2_amd64 + libatk-bridge2.0-0-dbg_2.5.3-2_amd64 + libatk-bridge2.0-dev_2.5.3-2_amd64 + libatk-wrapper-java-jni_0.30.4-3_amd64 + libatk1-ruby1.8-dbg_1.1.3-2+b1_amd64 + libatk1.0-0_2.4.0-2_amd64 + libatk1.0-dbg_2.4.0-2_amd64 + libatk1.0-dev_2.4.0-2_amd64 + libatkmm-1.6-1_2.22.6-1_amd64 + libatkmm-1.6-dbg_2.22.6-1_amd64 + libatkmm-1.6-dev_2.22.6-1_amd64 + libatlas-base-dev_3.8.4-9+deb7u1_amd64 + libatlas-cpp-0.6-1_0.6.2-3_amd64 + libatlas-cpp-0.6-1-dbg_0.6.2-3_amd64 + libatlas-cpp-0.6-dev_0.6.2-3_amd64 + libatlas-test_3.8.4-9+deb7u1_amd64 + libatlas3-base_3.8.4-9+deb7u1_amd64 + libatm1_1:2.5.1-1.5_amd64 + libatm1-dev_1:2.5.1-1.5_amd64 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_amd64 + libatomicparsley-dev_2.1.2-1_amd64 + libatomicparsley0_2.1.2-1_amd64 + libatspi-dbg_1.32.0-2_amd64 + libatspi-dev_1.32.0-2_amd64 + libatspi1.0-0_1.32.0-2_amd64 + libatspi2.0-0_2.5.3-2_amd64 + libatspi2.0-0-dbg_2.5.3-2_amd64 + libatspi2.0-dev_2.5.3-2_amd64 + libattica-dev_0.2.0-1_amd64 + libattica0_0.2.0-1_amd64 + libattr1_1:2.4.46-8_amd64 + libattr1-dev_1:2.4.46-8_amd64 + libaubio-dev_0.3.2-4.2+b1_amd64 + libaubio2_0.3.2-4.2+b1_amd64 + libaudclient2_3.2.4-1_amd64 + libaudcore1_3.2.4-1_amd64 + libaudio-cd-perl_0.05-9+b2_amd64 + libaudio-dev_1.9.3-5wheezy1_amd64 + libaudio-ecasound-perl_1.01-2+b1_amd64 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_amd64 + libaudio-flac-header-perl_2.4-1+b2_amd64 + libaudio-mixer-perl_0.7-3+b3_amd64 + libaudio-scan-perl_0.93+dfsg-2+b1_amd64 + libaudio-xmmsclient-perl_0.8+dfsg-4_amd64 + libaudio2_1.9.3-5wheezy1_amd64 + libaudiofile-dbg_0.3.4-2_amd64 + libaudiofile-dev_0.3.4-2_amd64 + libaudiofile1_0.3.4-2_amd64 + libaudiomask-dev_1.0-2_amd64 + libaudiomask1_1.0-2_amd64 + libaudit-dev_1:1.7.18-1.1_amd64 + libaudit0_1:1.7.18-1.1_amd64 + libaugeas-dev_0.10.0-1_amd64 + libaugeas-ruby1.8_0.4.1-1.1_amd64 + libaugeas-ruby1.9.1_0.4.1-1.1_amd64 + libaugeas0_0.10.0-1_amd64 + libaunit-dbg_1.03-7_amd64 + libaunit2-dev_1.03-7_amd64 + libaunit3_1.03-7_amd64 + libauthen-dechpwd-perl_2.006-1+b1_amd64 + libauthen-krb5-admin-perl_0.13-1_amd64 + libauthen-krb5-perl_1.9-3+b2_amd64 + libauthen-krb5-simple-perl_0.43-1_amd64 + libauthen-pam-perl_0.16-2+b2_amd64 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_amd64 + libauthen-smb-perl_0.91-4+b2_amd64 + libauthen-tacacsplus-perl_0.22-1_amd64 + libautobox-perl_2.75-1+b1_amd64 + libautotrace-dev_0.31.1-16+b1_amd64 + libautotrace3_0.31.1-16+b1_amd64 + libautounit-dev_0.20.1-4_amd64 + libautounit2_0.20.1-4_amd64 + libautovivification-perl_0.10-1+b1_amd64 + libav-dbg_6:0.8.9-1_amd64 + libav-tools_6:0.8.9-1_amd64 + libavahi-client-dev_0.6.31-2_amd64 + libavahi-client3_0.6.31-2_amd64 + libavahi-common-data_0.6.31-2_amd64 + libavahi-common-dev_0.6.31-2_amd64 + libavahi-common3_0.6.31-2_amd64 + libavahi-compat-libdnssd-dev_0.6.31-2_amd64 + libavahi-compat-libdnssd1_0.6.31-2_amd64 + libavahi-core-dev_0.6.31-2_amd64 + libavahi-core7_0.6.31-2_amd64 + libavahi-glib-dev_0.6.31-2_amd64 + libavahi-glib1_0.6.31-2_amd64 + libavahi-gobject-dev_0.6.31-2_amd64 + libavahi-gobject0_0.6.31-2_amd64 + libavahi-qt4-1_0.6.31-2_amd64 + libavahi-qt4-dev_0.6.31-2_amd64 + libavahi-ui-dev_0.6.31-2_amd64 + libavahi-ui-gtk3-0_0.6.31-2_amd64 + libavahi-ui-gtk3-dev_0.6.31-2_amd64 + libavahi-ui0_0.6.31-2_amd64 + libavbin-dev_7-1.3_amd64 + libavbin0_7-1.3_amd64 + libavc1394-0_0.5.4-2_amd64 + libavc1394-dev_0.5.4-2_amd64 + libavc1394-tools_0.5.4-2_amd64 + libavcodec-dev_6:0.8.9-1_amd64 + libavcodec-extra-53_6:0.8.9-1_amd64 + libavcodec53_6:0.8.9-1_amd64 + libavdevice-dev_6:0.8.9-1_amd64 + libavdevice53_6:0.8.9-1_amd64 + libavfilter-dev_6:0.8.9-1_amd64 + libavfilter2_6:0.8.9-1_amd64 + libavformat-dev_6:0.8.9-1_amd64 + libavformat53_6:0.8.9-1_amd64 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_amd64 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_amd64 + libavl-dev_0.3.5-3_amd64 + libavl1_0.3.5-3_amd64 + libavogadro-dev_1.0.3-5_amd64 + libavogadro1_1.0.3-5_amd64 + libavutil-dev_6:0.8.9-1_amd64 + libavutil51_6:0.8.9-1_amd64 + libaws-bin_2.10.2-4_amd64 + libaws-dbg_2.10.2-4_amd64 + libaws2.10.2_2.10.2-4_amd64 + libaws2.10.2-dev_2.10.2-4_amd64 + libax25_0.0.12-rc2+cvs20120204-2_amd64 + libax25-dev_0.0.12-rc2+cvs20120204-2_amd64 + libb-hooks-op-annotation-perl_0.44-1+b2_amd64 + libb-hooks-op-check-entersubforcv-perl_0.09-1_amd64 + libb-hooks-op-check-perl_0.19-1+b1_amd64 + libb-hooks-op-ppaddr-perl_0.03-1+b1_amd64 + libb-hooks-parser-perl_0.11-1_amd64 + libb-utils-perl_0.21-1_amd64 + libbabl-0.1-0_0.1.10-1_amd64 + libbabl-0.1-0-dbg_0.1.10-1_amd64 + libbabl-dev_0.1.10-1_amd64 + libball1.4_1.4.1+20111206-4_amd64 + libball1.4-dev_1.4.1+20111206-4_amd64 + libballview1.4_1.4.1+20111206-4_amd64 + libballview1.4-dev_1.4.1+20111206-4_amd64 + libbam-dev_0.1.18-1_amd64 + libbamf-dev_0.2.118-1_amd64 + libbamf0_0.2.118-1_amd64 + libbamf3-0_0.2.118-1_amd64 + libbamf3-dev_0.2.118-1_amd64 + libbarcode-zbar-perl_0.10+doc-8_amd64 + libbareword-filehandles-perl_0.003-1_amd64 + libbarry-dev_0.18.3-5_amd64 + libbarry18_0.18.3-5_amd64 + libbarry18-dbg_0.18.3-5_amd64 + libbatteries-ocaml-dev_1.4.3-1_amd64 + libbcmail-java-gcj_1.44+dfsg-3.1_amd64 + libbcpg-java-gcj_1.44+dfsg-3.1_amd64 + libbcprov-java-gcj_1.44+dfsg-3.1_amd64 + libbctsp-java-gcj_1.44+dfsg-3.1_amd64 + libbdd-dev_2.4-8_amd64 + libbdd0c2_2.4-8_amd64 + libbeecrypt-dev_4.2.1-4_amd64 + libbeecrypt7_4.2.1-4_amd64 + libbenchmark-ocaml-dev_0.9-2+b3_amd64 + libberkeleydb-perl_0.51-1_amd64 + libbfb0_0.23-1.1_amd64 + libbfb0-dev_0.23-1.1_amd64 + libbg1_1.106-1_amd64 + libbg1-dev_1.106-1_amd64 + libbibutils-dev_4.12-5_amd64 + libbibutils2_4.12-5_amd64 + libbin-prot-camlp4-dev_2.0.7-1_amd64 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbind4_6.0-1_amd64 + libbind4-dev_6.0-1_amd64 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libbinio-dev_1.4+dfsg1-1_amd64 + libbinio1ldbl_1.4+dfsg1-1_amd64 + libbiniou-ocaml_1.0.0-1+b1_amd64 + libbiniou-ocaml-dev_1.0.0-1+b1_amd64 + libbio-samtools-perl_1.33-1_amd64 + libbio-scf-perl_1.03-1+b2_amd64 + libbio2jack0_0.9-2.1_amd64 + libbio2jack0-dev_0.9-2.1_amd64 + libbiococoa-dev_2.2.2-1+b2_amd64 + libbiococoa2_2.2.2-1+b2_amd64 + libbiosig-dev_1.3.0-2_amd64 + libbiosig1_1.3.0-2_amd64 + libbiosig1-dbg_1.3.0-2_amd64 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_amd64 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_amd64 + libbison-dev_1:2.5.dfsg-2.1_amd64 + libbit-vector-perl_7.2-1_amd64 + libbitmask-dev_2.0-2_amd64 + libbitmask1_2.0-2_amd64 + libbitstring-ocaml_2.0.2-3+b1_amd64 + libbitstring-ocaml-dev_2.0.2-3+b1_amd64 + libbjack-ocaml_0.1.3-5+b1_amd64 + libbjack-ocaml-dev_0.1.3-5+b1_amd64 + libblacs-mpi-dev_1.1-31_amd64 + libblacs-mpi1_1.1-31_amd64 + libblas-dev_1.2.20110419-5_amd64 + libblas-test_1.2.20110419-5_amd64 + libblas3_1.2.20110419-5_amd64 + libbliss-dev_0.72-4_amd64 + libbliss1d_0.72-4_amd64 + libbliss1d-dbg_0.72-4_amd64 + libblitz0-dev_1:0.9-13_amd64 + libblitz0ldbl_1:0.9-13_amd64 + libblkid-dev_2.20.1-5.3_amd64 + libblkid1_2.20.1-5.3_amd64 + libblktapctl0_2.0.90-1_amd64 + libblocksruntime-dev_0.1-1_amd64 + libblocksruntime0_0.1-1_amd64 + libbluedevil-dev_1.9.2-1_amd64 + libbluedevil1_1.9.2-1_amd64 + libbluetooth-dev_4.99-2_amd64 + libbluetooth3_4.99-2_amd64 + libbluetooth3-dbg_4.99-2_amd64 + libbluray-dev_1:0.2.2-1_amd64 + libbluray1_1:0.2.2-1_amd64 + libbluray1-dbg_1:0.2.2-1_amd64 + libbml-dev_0.6.1-1_amd64 + libbml0_0.6.1-1_amd64 + libbobcat-dev_3.01.00-1+b1_amd64 + libbobcat3_3.01.00-1+b1_amd64 + libbogl-dev_0.1.18-8+b1_amd64 + libbogl0_0.1.18-8+b1_amd64 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_amd64 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_amd64 + libbonobo2-0_2.24.3-1_amd64 + libbonobo2-bin_2.24.3-1_amd64 + libbonobo2-dev_2.24.3-1_amd64 + libbonoboui2-0_2.24.3-1_amd64 + libbonoboui2-dev_2.24.3-1_amd64 + libboolstuff-0.1-0_0.1.12-3_amd64 + libboolstuff-0.1-0-dbg_0.1.12-3_amd64 + libboost-all-dev_1.49.0.1_amd64 + libboost-chrono-dev_1.49.0.1_amd64 + libboost-chrono1.49-dev_1.49.0-3.2_amd64 + libboost-chrono1.49.0_1.49.0-3.2_amd64 + libboost-date-time-dev_1.49.0.1_amd64 + libboost-date-time1.49-dev_1.49.0-3.2_amd64 + libboost-date-time1.49.0_1.49.0-3.2_amd64 + libboost-dbg_1.49.0.1_amd64 + libboost-dev_1.49.0.1_amd64 + libboost-filesystem-dev_1.49.0.1_amd64 + libboost-filesystem1.49-dev_1.49.0-3.2_amd64 + libboost-filesystem1.49.0_1.49.0-3.2_amd64 + libboost-graph-dev_1.49.0.1_amd64 + libboost-graph-parallel-dev_1.49.0.1_amd64 + libboost-graph-parallel1.49-dev_1.49.0-3.2_amd64 + libboost-graph-parallel1.49.0_1.49.0-3.2_amd64 + libboost-graph1.49-dev_1.49.0-3.2_amd64 + libboost-graph1.49.0_1.49.0-3.2_amd64 + libboost-iostreams-dev_1.49.0.1_amd64 + libboost-iostreams1.49-dev_1.49.0-3.2_amd64 + libboost-iostreams1.49.0_1.49.0-3.2_amd64 + libboost-locale-dev_1.49.0.1_amd64 + libboost-locale1.49-dev_1.49.0-3.2_amd64 + libboost-locale1.49.0_1.49.0-3.2_amd64 + libboost-math-dev_1.49.0.1_amd64 + libboost-math1.49-dev_1.49.0-3.2_amd64 + libboost-math1.49.0_1.49.0-3.2_amd64 + libboost-mpi-dev_1.49.0.1_amd64 + libboost-mpi-python-dev_1.49.0.1_amd64 + libboost-mpi-python1.49-dev_1.49.0-3.2_amd64 + libboost-mpi-python1.49.0_1.49.0-3.2_amd64 + libboost-mpi1.49-dev_1.49.0-3.2_amd64 + libboost-mpi1.49.0_1.49.0-3.2_amd64 + libboost-program-options-dev_1.49.0.1_amd64 + libboost-program-options1.49-dev_1.49.0-3.2_amd64 + libboost-program-options1.49.0_1.49.0-3.2_amd64 + libboost-python-dev_1.49.0.1_amd64 + libboost-python1.49-dev_1.49.0-3.2_amd64 + libboost-python1.49.0_1.49.0-3.2_amd64 + libboost-random-dev_1.49.0.1_amd64 + libboost-random1.49-dev_1.49.0-3.2_amd64 + libboost-random1.49.0_1.49.0-3.2_amd64 + libboost-regex-dev_1.49.0.1_amd64 + libboost-regex1.49-dev_1.49.0-3.2_amd64 + libboost-regex1.49.0_1.49.0-3.2_amd64 + libboost-serialization-dev_1.49.0.1_amd64 + libboost-serialization1.49-dev_1.49.0-3.2_amd64 + libboost-serialization1.49.0_1.49.0-3.2_amd64 + libboost-signals-dev_1.49.0.1_amd64 + libboost-signals1.49-dev_1.49.0-3.2_amd64 + libboost-signals1.49.0_1.49.0-3.2_amd64 + libboost-system-dev_1.49.0.1_amd64 + libboost-system1.49-dev_1.49.0-3.2_amd64 + libboost-system1.49.0_1.49.0-3.2_amd64 + libboost-test-dev_1.49.0.1_amd64 + libboost-test1.49-dev_1.49.0-3.2_amd64 + libboost-test1.49.0_1.49.0-3.2_amd64 + libboost-thread-dev_1.49.0.1_amd64 + libboost-thread1.49-dev_1.49.0-3.2_amd64 + libboost-thread1.49.0_1.49.0-3.2_amd64 + libboost-timer-dev_1.49.0.1_amd64 + libboost-timer1.49-dev_1.49.0-3.2_amd64 + libboost-timer1.49.0_1.49.0-3.2_amd64 + libboost-wave-dev_1.49.0.1_amd64 + libboost-wave1.49-dev_1.49.0-3.2_amd64 + libboost-wave1.49.0_1.49.0-3.2_amd64 + libboost1.49-all-dev_1.49.0-3.2_amd64 + libboost1.49-dbg_1.49.0-3.2_amd64 + libboost1.49-dev_1.49.0-3.2_amd64 + libbotan-1.10-0_1.10.5-1_amd64 + libbotan1.10-dev_1.10.5-1_amd64 + libbox-dev_2.5-2_amd64 + libbox2d-dev_2.0.1+dfsg1-1_amd64 + libbox2d0_2.0.1+dfsg1-1_amd64 + libbox2d0-dbg_2.0.1+dfsg1-1_amd64 + libbpp-core-dev_2.0.3-1_amd64 + libbpp-core2_2.0.3-1_amd64 + libbpp-phyl-dev_2.0.3-1_amd64 + libbpp-phyl9_2.0.3-1_amd64 + libbpp-popgen-dev_2.0.3-1_amd64 + libbpp-popgen6_2.0.3-1_amd64 + libbpp-qt-dev_2.0.2-1_amd64 + libbpp-qt1_2.0.2-1_amd64 + libbpp-raa-dev_2.0.3-1_amd64 + libbpp-raa1_2.0.3-1_amd64 + libbpp-seq-dev_2.0.3-1_amd64 + libbpp-seq9_2.0.3-1_amd64 + libbrahe-1.3-3_1.3.2-3_amd64 + libbrahe-dev_1.3.2-3_amd64 + libbrasero-media3-1_3.4.1-4_amd64 + libbrasero-media3-dev_3.4.1-4_amd64 + libbrlapi-dbg_4.4-10+deb7u1_amd64 + libbrlapi-dev_4.4-10+deb7u1_amd64 + libbrlapi-jni_4.4-10+deb7u1_amd64 + libbrlapi0.5_4.4-10+deb7u1_amd64 + libbs2b-dev_3.1.0+dfsg-2_amd64 + libbs2b0_3.1.0+dfsg-2_amd64 + libbsd-arc4random-perl_1.50-5_amd64 + libbsd-dev_0.4.2-1_amd64 + libbsd-resource-perl_1.2904-1+b2_amd64 + libbsd0_0.4.2-1_amd64 + libbsd0-dbg_0.4.2-1_amd64 + libbse-0.7-4_0.7.4-5_amd64 + libbt-dev_0.70.1-13_amd64 + libbt0_0.70.1-13_amd64 + libbtf1.1.0_1:3.4.0-3_amd64 + libbtparse-dev_0.63-1_amd64 + libbtparse1_0.63-1_amd64 + libbuffy-dev_1.7-1_amd64 + libbuffy-perl_0.13+b1_amd64 + libbulletml-dev_0.0.6-5_amd64 + libbulletml0d2_0.0.6-5_amd64 + libburn-dbg_1.2.2-2_amd64 + libburn-dev_1.2.2-2_amd64 + libburn4_1.2.2-2_amd64 + libbuzztard-dev_0.5.0-4_amd64 + libbuzztard0_0.5.0-4_amd64 + libbz2-1.0_1.0.6-4_amd64 + libbz2-dev_1.0.6-4_amd64 + libbz2-ocaml_0.6.0-6+b2_amd64 + libbz2-ocaml-dev_0.6.0-6+b2_amd64 + libbz2-ruby1.8_0.2.2-2_amd64 + libc-ares-dev_1.9.1-3_amd64 + libc-ares2_1.9.1-3_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc-client2007e_8:2007f~dfsg-2_amd64 + libc-client2007e-dev_8:2007f~dfsg-2_amd64 + libc-dev-bin_2.13-38+deb7u1_amd64 + libc-icap-mod-clamav_1:0.1.6-1_amd64 + libc-icap-mod-urlcheck_1:0.1.6-1_amd64 + libc6_2.13-38+deb7u1_amd64 + libc6-dbg_2.13-38+deb7u1_amd64 + libc6-dev_2.13-38+deb7u1_amd64 + libc6-dev-i386_2.13-38+deb7u1_amd64 + libc6-i386_2.13-38+deb7u1_amd64 + libc6-pic_2.13-38+deb7u1_amd64 + libc6-prof_2.13-38+deb7u1_amd64 + libcableswig-dev_0.1.0+cvs20111009-1_amd64 + libcaca-dev_0.99.beta18-1_amd64 + libcaca0_0.99.beta18-1_amd64 + libcache-fastmmap-perl_1.40-1_amd64 + libcache-memcached-fast-perl_0.19-2+b1_amd64 + libcache-mmap-perl_0.11-1+b3_amd64 + libcairo-gobject-perl_1.001-1_amd64 + libcairo-gobject2_1.12.2-3_amd64 + libcairo-ocaml_1:1.2.0-2+b1_amd64 + libcairo-ocaml-dev_1:1.2.0-2+b1_amd64 + libcairo-perl_1.090-2_amd64 + libcairo-script-interpreter2_1.12.2-3_amd64 + libcairo2_1.12.2-3_amd64 + libcairo2-dbg_1.12.2-3_amd64 + libcairo2-dev_1.12.2-3_amd64 + libcairo5c-0_1.8.1_amd64 + libcairomm-1.0-1_1.10.0-1_amd64 + libcairomm-1.0-dev_1.10.0-1_amd64 + libcal3d12_0.11.0-4.1_amd64 + libcal3d12-dev_0.11.0-4.1_amd64 + libcalendar-ocaml_2.03-1+b2_amd64 + libcalendar-ocaml-dev_2.03-1+b2_amd64 + libcamd2.2.0_1:3.4.0-3_amd64 + libcamel-1.2-33_3.4.4-3_amd64 + libcamel1.2-dev_3.4.4-3_amd64 + libcameleon-ocaml-dev_1.9.21-2+b1_amd64 + libcaml2html-ocaml_1.4.1-3_amd64 + libcaml2html-ocaml-dev_1.4.1-3_amd64 + libcamlimages-ocaml_1:4.0.1-4+b2_amd64 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_amd64 + libcamljava-ocaml-dev_0.3-1+b3_amd64 + libcamltemplate-ocaml_1.0.2-1+b2_amd64 + libcamltemplate-ocaml-dev_1.0.2-1+b2_amd64 + libcamomile-ocaml-dev_0.8.4-2_amd64 + libcanberra-dev_0.28-6_amd64 + libcanberra-gstreamer_0.28-6_amd64 + libcanberra-gstreamer-dbg_0.28-6_amd64 + libcanberra-gtk-dev_0.28-6_amd64 + libcanberra-gtk-module_0.28-6_amd64 + libcanberra-gtk-module-dbg_0.28-6_amd64 + libcanberra-gtk0_0.28-6_amd64 + libcanberra-gtk0-dbg_0.28-6_amd64 + libcanberra-gtk3-0_0.28-6_amd64 + libcanberra-gtk3-0-dbg_0.28-6_amd64 + libcanberra-gtk3-dev_0.28-6_amd64 + libcanberra-gtk3-module_0.28-6_amd64 + libcanberra-gtk3-module-dbg_0.28-6_amd64 + libcanberra-pulse_0.28-6_amd64 + libcanberra-pulse-dbg_0.28-6_amd64 + libcanberra0_0.28-6_amd64 + libcanberra0-dbg_0.28-6_amd64 + libcanlock2_2b-6_amd64 + libcanlock2-dev_2b-6_amd64 + libcanna1g_3.7p3-11_amd64 + libcanna1g-dev_3.7p3-11_amd64 + libcap-dev_1:2.22-1.2_amd64 + libcap-ng-dev_0.6.6-2_amd64 + libcap-ng-utils_0.6.6-2_amd64 + libcap-ng0_0.6.6-2_amd64 + libcap2_1:2.22-1.2_amd64 + libcap2-bin_1:2.22-1.2_amd64 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_amd64 + libcapsinetwork-dev_0.3.0-7_amd64 + libcapsinetwork0c2a_0.3.0-7_amd64 + libcaribou-dbg_0.4.4-1_amd64 + libcaribou-dev_0.4.4-1_amd64 + libcaribou-gtk-module_0.4.4-1_amd64 + libcaribou-gtk-module-dbg_0.4.4-1_amd64 + libcaribou-gtk3-module_0.4.4-1_amd64 + libcaribou-gtk3-module-dbg_0.4.4-1_amd64 + libcaribou0_0.4.4-1_amd64 + libcbf-dev_0.7.9.1-3_amd64 + libcbf0_0.7.9.1-3_amd64 + libccaudio2_2.0.5-3_amd64 + libccaudio2-dev_2.0.5-3_amd64 + libccfits-dev_2.4-1_amd64 + libccfits0_2.4-1_amd64 + libccgnu2-1.8-0_1.8.1-5_amd64 + libccid_1.4.7-1_amd64 + libccolamd2.7.1_1:3.4.0-3_amd64 + libcconv-dev_0.6.2-1_amd64 + libcconv0_0.6.2-1_amd64 + libccrtp-dev_2.0.3-4_amd64 + libccrtp0_2.0.3-4_amd64 + libccs-dev_3.0.12-3.2+deb7u2_amd64 + libccs-perl_3.0.12-3.2+deb7u2_amd64 + libccs3_3.0.12-3.2+deb7u2_amd64 + libccscript3-1.1-0_1.1.7-2_amd64 + libccscript3-dev_1.1.7-2_amd64 + libccss-1-5_0.5.0-4_amd64 + libccss-1-5-dbg_0.5.0-4_amd64 + libccss-dev_0.5.0-4_amd64 + libccss-tools_0.5.0-4_amd64 + libcdaudio-dbg_0.99.12p2-12_amd64 + libcdaudio-dev_0.99.12p2-12_amd64 + libcdaudio1_0.99.12p2-12_amd64 + libcdb-dev_0.78_amd64 + libcdb-file-perl_0.97-2_amd64 + libcdb1_0.78_amd64 + libcdd-dev_094b.dfsg-4.2_amd64 + libcdd-test_094b.dfsg-4.2_amd64 + libcdd0_094b.dfsg-4.2_amd64 + libcddb2_1.3.2-3_amd64 + libcddb2-dev_1.3.2-3_amd64 + libcdi-dev_1.5.4+dfsg.1-5_amd64 + libcdi0_1.5.4+dfsg.1-5_amd64 + libcdio-cdda-dev_0.83-4_amd64 + libcdio-cdda1_0.83-4_amd64 + libcdio-dev_0.83-4_amd64 + libcdio-paranoia-dev_0.83-4_amd64 + libcdio-paranoia1_0.83-4_amd64 + libcdio-utils_0.83-4_amd64 + libcdio13_0.83-4_amd64 + libcdk-perl_4.9.10-5+b1_amd64 + libcdk5_5.0.20060507-4_amd64 + libcdk5-dev_5.0.20060507-4_amd64 + libcdparanoia-dev_3.10.2+debian-10.1_amd64 + libcdparanoia0_3.10.2+debian-10.1_amd64 + libcdt4_2.26.3-14+deb7u1_amd64 + libcec-dev_1.6.2-1.1_amd64 + libcec1_1.6.2-1.1_amd64 + libcegui-mk2-0.7.6_0.7.6-2+b1_amd64 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_amd64 + libcegui-mk2-dev_0.7.6-2+b1_amd64 + libcext-dev_6.1.1-2_amd64 + libcext0_6.1.1-2_amd64 + libcf-ocaml_0.10-3+b3_amd64 + libcf-ocaml-dev_0.10-3+b3_amd64 + libcf0_1:4.1.3-6+b1_amd64 + libcfg-dev_1.4.2-3_amd64 + libcfg4_1.4.2-3_amd64 + libcfitsio3_3.300-2_amd64 + libcfitsio3-dbg_3.300-2_amd64 + libcfitsio3-dev_3.300-2_amd64 + libcflow-perl_1:0.68-12.1+b1_amd64 + libcgal-dev_4.0-5_amd64 + libcgal-ipelets_4.0-5_amd64 + libcgal9_4.0-5_amd64 + libcgi-java_0.7.3-1_amd64 + libcgic-dev_2.05-3_amd64 + libcgic2_2.05-3_amd64 + libcgicc5_3.2.9-3_amd64 + libcgicc5-dev_3.2.9-3_amd64 + libcgns-dev_3.1.3.4-1+b1_amd64 + libcgns3.1_3.1.3.4-1+b1_amd64 + libcgns3.1-dbg_3.1.3.4-1+b1_amd64 + libcgraph5_2.26.3-14+deb7u1_amd64 + libcgroup-dev_0.38-1_amd64 + libcgroup1_0.38-1_amd64 + libcgsi-gsoap-dev_1.3.5-1_amd64 + libcgsi-gsoap1_1.3.5-1_amd64 + libchamplain-0.12-0_0.12.3-1_amd64 + libchamplain-0.12-dbg_0.12.3-1_amd64 + libchamplain-0.12-dev_0.12.3-1_amd64 + libchamplain-gtk-0.12-0_0.12.3-1_amd64 + libchamplain-gtk-0.12-dbg_0.12.3-1_amd64 + libchamplain-gtk-0.12-dev_0.12.3-1_amd64 + libcharls-dev_1.0-2_amd64 + libcharls1_1.0-2_amd64 + libchasen-dev_2.4.5-6_amd64 + libchasen2_2.4.5-6_amd64 + libcheese-dev_3.4.2-2_amd64 + libcheese-gtk-dev_3.4.2-2_amd64 + libcheese-gtk21_3.4.2-2_amd64 + libcheese3_3.4.2-2_amd64 + libchemistry-openbabel-perl_2.3.1+dfsg-4_amd64 + libchewing3_0.3.3-4_amd64 + libchewing3-data_0.3.3-4_amd64 + libchewing3-dbg_0.3.3-4_amd64 + libchewing3-dev_0.3.3-4_amd64 + libchicken-dev_4.7.0-1_amd64 + libchicken6_4.7.0-1_amd64 + libchipcard-dev_5.0.3beta-3_amd64 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_amd64 + libchipcard-tools_5.0.3beta-3_amd64 + libchipcard6_5.0.3beta-3_amd64 + libchipmunk0d1_5.3.4-1_amd64 + libchipmunk0d1-dbg_5.3.4-1_amd64 + libchise-dev_0.3.0-2+b1_amd64 + libchise1_0.3.0-2+b1_amd64 + libchm-bin_2:0.40a-2_amd64 + libchm-dev_2:0.40a-2_amd64 + libchm1_2:0.40a-2_amd64 + libcholmod1.7.1_1:3.4.0-3_amd64 + libchromaprint-dev_0.6-2_amd64 + libchromaprint-tools_0.6-2_amd64 + libchromaprint0_0.6-2_amd64 + libcib1_1.1.7-1_amd64 + libcib1-dev_1.1.7-1_amd64 + libcitadel-dev_8.14-1_amd64 + libcitadel3_8.14-1_amd64 + libcitadel3-dbg_8.14-1_amd64 + libcitygml0_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_amd64 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_amd64 + libck-connector-dev_0.4.5-3.1_amd64 + libck-connector0_0.4.5-3.1_amd64 + libckit-smlnj_110.74-2_amd64 + libckyapplet1_1.1.0-12_amd64 + libckyapplet1-dev_1.1.0-12_amd64 + libclalsadrv2_2.0.0-3_amd64 + libclam-dev_1.4.0-5.1_amd64 + libclam-qtmonitors-dev_1.4.0-3.1_amd64 + libclam-qtmonitors1.4_1.4.0-3.1_amd64 + libclam1.4_1.4.0-5.1_amd64 + libclamav-dev_0.97.8+dfsg-1_amd64 + libclamav6_0.97.8+dfsg-1_amd64 + libclanapp-1.0_1.0~svn3827-3_amd64 + libclang-common-dev_1:3.0-6.2_amd64 + libclang-dev_1:3.0-6.2_amd64 + libclang1_1:3.0-6.2_amd64 + libclanlib-dev_1.0~svn3827-3_amd64 + libclansdl-1.0_1.0~svn3827-3_amd64 + libclass-c3-xs-perl_0.13-1+b2_amd64 + libclass-date-perl_1.1.10-1+b2_amd64 + libclass-load-xs-perl_0.04-1_amd64 + libclass-methodmaker-perl_2.18-1+b1_amd64 + libclass-xsaccessor-perl_1.13-1_amd64 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_amd64 + libclassad3_7.8.2~dfsg.1-1+deb7u1_amd64 + libclaw-application-dev_1.7.0-3_amd64 + libclaw-application1_1.7.0-3_amd64 + libclaw-configuration-file-dev_1.7.0-3_amd64 + libclaw-configuration-file1_1.7.0-3_amd64 + libclaw-dev_1.7.0-3_amd64 + libclaw-dynamic-library-dev_1.7.0-3_amd64 + libclaw-dynamic-library1_1.7.0-3_amd64 + libclaw-graphic-dev_1.7.0-3_amd64 + libclaw-graphic1_1.7.0-3_amd64 + libclaw-logger-dev_1.7.0-3_amd64 + libclaw-logger1_1.7.0-3_amd64 + libclaw-net-dev_1.7.0-3_amd64 + libclaw-net1_1.7.0-3_amd64 + libclaw-tween-dev_1.7.0-3_amd64 + libclaw-tween1_1.7.0-3_amd64 + libclaws-mail-dev_3.8.1-2_amd64 + libclearsilver-perl_0.10.5-1.3_amd64 + libclhep-dev_2.1.2.3-1_amd64 + libclhep2.1_2.1.2.3-1_amd64 + libcli-dev_1.9.6-1_amd64 + libcli1.9_1.9.6-1_amd64 + libclinica0_0.2.1~dfsg-1_amd64 + libclippoly-dev_0.11-3_amd64 + libclippoly0_0.11-3_amd64 + libclips_6.24-3_amd64 + libclips-dev_6.24-3_amd64 + libcliquer-dev_1.21-1_amd64 + libcliquer1_1.21-1_amd64 + libcln-dev_1.3.2-1.2_amd64 + libcln6_1.3.2-1.2_amd64 + libclone-fast-perl_0.96-1_amd64 + libclone-perl_0.31-1+b2_amd64 + libcloog-isl-dev_0.17.0-3_amd64 + libcloog-isl3_0.17.0-3_amd64 + libcloog-ppl-dev_0.15.11-4_amd64 + libcloog-ppl0_0.15.11-4_amd64 + libclthreads-dev_2.4.0-4_amd64 + libclthreads2_2.4.0-4_amd64 + libclucene-dev_0.9.21b-2+b1_amd64 + libclucene0ldbl_0.9.21b-2+b1_amd64 + libclustalo-dev_1.1.0-1_amd64 + libclutter-1.0-0_1.10.8-2_amd64 + libclutter-1.0-dbg_1.10.8-2_amd64 + libclutter-1.0-dev_1.10.8-2_amd64 + libclutter-gst-1.0-0_1.5.4-1+build0_amd64 + libclutter-gst-1.0-dbg_1.5.4-1+build0_amd64 + libclutter-gst-dev_1.5.4-1+build0_amd64 + libclutter-gtk-1.0-0_1.2.0-2_amd64 + libclutter-gtk-1.0-dbg_1.2.0-2_amd64 + libclutter-gtk-1.0-dev_1.2.0-2_amd64 + libclutter-imcontext-0.1-0_0.1.4-3_amd64 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_amd64 + libclutter-imcontext-0.1-bin_0.1.4-3_amd64 + libclutter-imcontext-0.1-dev_0.1.4-3_amd64 + libclutter-perl_1.110-1_amd64 + libcluttergesture-0.0.2-0_0.0.2.1-7_amd64 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_amd64 + libcluttergesture-dev_0.0.2.1-7_amd64 + libclxclient-dev_3.6.1-6_amd64 + libclxclient3_3.6.1-6_amd64 + libcman-dev_3.0.12-3.2+deb7u2_amd64 + libcman3_3.0.12-3.2+deb7u2_amd64 + libcminpack-dev_1.2.2-1_amd64 + libcminpack1.0.90_1.2.2-1_amd64 + libcmis-0.2-0_0.1.0-1+b1_amd64 + libcmis-dev_0.1.0-1+b1_amd64 + libcml-smlnj_110.74-2_amd64 + libcmlutil-smlnj_110.74-2_amd64 + libcmor-dev_2.8.0-2+b1_amd64 + libcmor2_2.8.0-2+b1_amd64 + libcmph-dev_0.9-1_amd64 + libcmph-tools_0.9-1_amd64 + libcmph0_0.9-1_amd64 + libcneartree-dev_3.1.1-1_amd64 + libcneartree5_3.1.1-1_amd64 + libcnf-dev_4.0-2_amd64 + libcob1_1.1-1_amd64 + libcob1-dev_1.1-1_amd64 + libcodeblocks0_10.05-2.1_amd64 + libcogl-dev_1.10.2-7_amd64 + libcogl-pango-dev_1.10.2-7_amd64 + libcogl-pango0_1.10.2-7_amd64 + libcogl-pango0-dbg_1.10.2-7_amd64 + libcogl9_1.10.2-7_amd64 + libcogl9-dbg_1.10.2-7_amd64 + libcoin60_3.1.3-2.2_amd64 + libcoin60-dev_3.1.3-2.2_amd64 + libcojets2-dev_20061220+dfsg3-2_amd64 + libcojets2-gfortran_20061220+dfsg3-2_amd64 + libcolamd2.7.1_1:3.4.0-3_amd64 + libcollectdclient-dev_5.1.0-3_amd64 + libcollectdclient0_5.1.0-3_amd64 + libcollection-dev_0.1.3-2_amd64 + libcollection2_0.1.3-2_amd64 + libcolorblind-dev_0.0.1-1_amd64 + libcolorblind0_0.0.1-1_amd64 + libcolord-dev_0.1.21-1_amd64 + libcolord-gtk-dev_0.1.21-1_amd64 + libcolord-gtk1_0.1.21-1_amd64 + libcolord1_0.1.21-1_amd64 + libcolorhug-dev_0.1.10-1_amd64 + libcolorhug1_0.1.10-1_amd64 + libcomedi-dev_0.10.0-3_amd64 + libcomedi0_0.10.0-3_amd64 + libcomerr2_1.42.5-1.1_amd64 + libcomerr2-dbg_1.42.5-1.1_amd64 + libcommoncpp2-dbg_1.8.1-5_amd64 + libcommoncpp2-dev_1.8.1-5_amd64 + libcompfaceg1_1:1.5.2-5_amd64 + libcompfaceg1-dev_1:1.5.2-5_amd64 + libcompress-bzip2-perl_2.09-2+b2_amd64 + libcompress-raw-bzip2-perl_2.052-1_amd64 + libcompress-raw-zlib-perl_2.052-1_amd64 + libconcord-dev_0.24-1.1_amd64 + libconcord2_0.24-1.1_amd64 + libconfdb-dev_1.4.2-3_amd64 + libconfdb4_1.4.2-3_amd64 + libconfig++-dbg_1.4.8-5_amd64 + libconfig++-dev_1.4.8-5_amd64 + libconfig++8-dev_1.4.8-5_amd64 + libconfig++9_1.4.8-5_amd64 + libconfig-augeas-perl_0.903-1_amd64 + libconfig-dbg_1.4.8-5_amd64 + libconfig-dev_1.4.8-5_amd64 + libconfig-file-ocaml-dev_1.1-1_amd64 + libconfig8-dev_1.4.8-5_amd64 + libconfig9_1.4.8-5_amd64 + libconfuse-dev_2.7-4_amd64 + libconfuse0_2.7-4_amd64 + libconsole_1:0.2.3dbs-70_amd64 + libcontactsdb-dev_0.5-8_amd64 + libcontactsdb0_0.5-8_amd64 + libcontactsdb0-dbg_0.5-8_amd64 + libconvert-binary-c-perl_0.76-1+b2_amd64 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_amd64 + libcoq-ocaml_8.3.pl4+dfsg-2_amd64 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_amd64 + libcore-ocaml_107.01-5_amd64 + libcore-ocaml-dev_107.01-5_amd64 + libcorelinux-dev_0.4.32-7.3_amd64 + libcorelinuxc2a_0.4.32-7.3_amd64 + libcoro-perl_6.080-3_amd64 + libcoroipcc-dev_1.4.2-3_amd64 + libcoroipcc4_1.4.2-3_amd64 + libcoroipcs-dev_1.4.2-3_amd64 + libcoroipcs4_1.4.2-3_amd64 + libcos4-1_4.1.6-2_amd64 + libcos4-1-dbg_4.1.6-2_amd64 + libcos4-dev_4.1.6-2_amd64 + libcothreads-ocaml-dev_0.10-3+b3_amd64 + libcoyotl-3.1-4_3.1.0-5_amd64 + libcoyotl-dev_3.1.0-5_amd64 + libcpg-dev_1.4.2-3_amd64 + libcpg4_1.4.2-3_amd64 + libcpl-dev_6.1.1-2_amd64 + libcplcore20_6.1.1-2_amd64 + libcpldfs20_6.1.1-2_amd64 + libcpldrs20_6.1.1-2_amd64 + libcplui20_6.1.1-2_amd64 + libcppcutter-dev_1.1.7-1.2_amd64 + libcppcutter0_1.1.7-1.2_amd64 + libcppunit-1.12-1_1.12.1-4_amd64 + libcppunit-dev_1.12.1-4_amd64 + libcppunit-subunit-dev_0.0.8+bzr176-1_amd64 + libcppunit-subunit0_0.0.8+bzr176-1_amd64 + libcpputest-dev_3.1-2_amd64 + libcpufreq-dev_008-1_amd64 + libcpufreq0_008-1_amd64 + libcpuset-dev_1.0-3_amd64 + libcpuset1_1.0-3_amd64 + libcqrlib2_1.1.2-1_amd64 + libcqrlib2-dev_1.1.2-1_amd64 + libcr-dbg_0.8.5-2_amd64 + libcr-dev_0.8.5-2_amd64 + libcr0_0.8.5-2_amd64 + libcrack2_2.8.19-3_amd64 + libcrack2-dev_2.8.19-3_amd64 + libcreal-ocaml-dev_0.7-6+b3_amd64 + libcrmcluster1_1.1.7-1_amd64 + libcrmcluster1-dev_1.1.7-1_amd64 + libcrmcommon2_1.1.7-1_amd64 + libcrmcommon2-dev_1.1.7-1_amd64 + libcroco-tools_0.6.6-2_amd64 + libcroco3_0.6.6-2_amd64 + libcroco3-dev_0.6.6-2_amd64 + libcry-ocaml-dev_0.2.2-1+b1_amd64 + libcrypt-blowfish-perl_2.12-1+b2_amd64 + libcrypt-cast5-perl_0.05-1_amd64 + libcrypt-des-perl_2.05-2+b3_amd64 + libcrypt-dh-gmp-perl_0.00010-1_amd64 + libcrypt-eksblowfish-perl_0.008-1+b2_amd64 + libcrypt-gcrypt-perl_1.25-1+b1_amd64 + libcrypt-mysql-perl_0.04-4+b1_amd64 + libcrypt-openssl-bignum-perl_0.04-3_amd64 + libcrypt-openssl-dsa-perl_0.13-6_amd64 + libcrypt-openssl-random-perl_0.04-1+b4_amd64 + libcrypt-openssl-rsa-perl_0.28-1_amd64 + libcrypt-openssl-x509-perl_1.8.2-1+b1_amd64 + libcrypt-rijndael-perl_1.08-1+b2_amd64 + libcrypt-smime-perl_0.10-1+b1_amd64 + libcrypt-ssleay-perl_0.58-1_amd64 + libcrypt-twofish-perl_2.12-1+b2_amd64 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_amd64 + libcryptgps-ocaml-dev_0.2.1-7+b3_amd64 + libcrypto++-dev_5.6.1-6_amd64 + libcrypto++-utils_5.6.1-6_amd64 + libcrypto++9_5.6.1-6_amd64 + libcrypto++9-dbg_5.6.1-6_amd64 + libcryptokit-ocaml_1.5-1_amd64 + libcryptokit-ocaml-dev_1.5-1_amd64 + libcryptsetup-dev_2:1.4.3-4_amd64 + libcryptsetup4_2:1.4.3-4_amd64 + libcryptui-dev_3.2.2-1_amd64 + libcryptui0a_3.2.2-1_amd64 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_amd64 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_amd64 + libcsfml-audio1.6_1.6-1_amd64 + libcsfml-dev_1.6-1_amd64 + libcsfml-graphics1.6_1.6-1_amd64 + libcsfml-network1.6_1.6-1_amd64 + libcsfml-system1.6_1.6-1_amd64 + libcsfml-window1.6_1.6-1_amd64 + libcsfml1.6-dbg_1.6-1_amd64 + libcsiro0_5.9.9-5_amd64 + libcsnd-java_1:5.17.11~dfsg-3_amd64 + libcsnd5.2_1:5.17.11~dfsg-3_amd64 + libcsoap-dev_1.1.0-17.1_amd64 + libcsoap1_1.1.0-17.1_amd64 + libcsoap1-dbg_1.1.0-17.1_amd64 + libcsound64-5.2_1:5.17.11~dfsg-3_amd64 + libcsoundac5.2_1:5.17.11~dfsg-3_amd64 + libcsparse2.2.3_1:3.4.0-3_amd64 + libcss-minifier-xs-perl_0.07-1+b2_amd64 + libcss-parser-pp0_0.85-2_amd64 + libcss-parser0_0.85-2_amd64 + libcsv-ocaml-dev_1.2.2-1+b1_amd64 + libct4_0.91-2+deb7u1_amd64 + libctapimkt0_1.0.1-1.1_amd64 + libctapimkt0-dev_1.0.1-1.1_amd64 + libctdb-dev_1.12+git20120201-4_amd64 + libctemplate-dev_2.2-3_amd64 + libctemplate2_2.2-3_amd64 + libctl-dev_3.1.0-5_amd64 + libctl3_3.1.0-5_amd64 + libctpl-dev_0.3.3.dfsg-2_amd64 + libctpl2_0.3.3.dfsg-2_amd64 + libcuba3_3.0+20111124-2_amd64 + libcuba3-dbg_3.0+20111124-2_amd64 + libcuba3-dev_3.0+20111124-2_amd64 + libcudf-dev_0.6.2-1_amd64 + libcudf-ocaml-dev_0.6.2-1_amd64 + libcue-dev_1.4.0-1_amd64 + libcue1_1.4.0-1_amd64 + libcunit1_2.1-0.dfsg-10_amd64 + libcunit1-dev_2.1-0.dfsg-10_amd64 + libcunit1-ncurses_2.1-0.dfsg-10_amd64 + libcunit1-ncurses-dev_2.1-0.dfsg-10_amd64 + libcups2_1.5.3-5+deb7u1_amd64 + libcups2-dev_1.5.3-5+deb7u1_amd64 + libcupscgi1_1.5.3-5+deb7u1_amd64 + libcupscgi1-dev_1.5.3-5+deb7u1_amd64 + libcupsdriver1_1.5.3-5+deb7u1_amd64 + libcupsdriver1-dev_1.5.3-5+deb7u1_amd64 + libcupsfilters-dev_1.0.18-2.1_amd64 + libcupsfilters1_1.0.18-2.1_amd64 + libcupsimage2_1.5.3-5+deb7u1_amd64 + libcupsimage2-dev_1.5.3-5+deb7u1_amd64 + libcupsmime1_1.5.3-5+deb7u1_amd64 + libcupsmime1-dev_1.5.3-5+deb7u1_amd64 + libcupsppdc1_1.5.3-5+deb7u1_amd64 + libcupsppdc1-dev_1.5.3-5+deb7u1_amd64 + libcupt2-0_2.5.9_amd64 + libcupt2-0-downloadmethod-curl_2.5.9_amd64 + libcupt2-0-downloadmethod-wget_2.5.9_amd64 + libcupt2-dev_2.5.9_amd64 + libcurl-ocaml_0.5.3-2+b1_amd64 + libcurl-ocaml-dev_0.5.3-2+b1_amd64 + libcurl3_7.26.0-1+wheezy8_amd64 + libcurl3-dbg_7.26.0-1+wheezy8_amd64 + libcurl3-gnutls_7.26.0-1+wheezy8_amd64 + libcurl3-nss_7.26.0-1+wheezy8_amd64 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_amd64 + libcurl4-nss-dev_7.26.0-1+wheezy8_amd64 + libcurl4-openssl-dev_7.26.0-1+wheezy8_amd64 + libcurses-ocaml_1.0.3-2_amd64 + libcurses-ocaml-dev_1.0.3-2_amd64 + libcurses-perl_1.28-1+b2_amd64 + libcutter-dev_1.1.7-1.2_amd64 + libcutter0_1.1.7-1.2_amd64 + libcv-dev_2.3.1-11_amd64 + libcv2.3_2.3.1-11_amd64 + libcvaux-dev_2.3.1-11_amd64 + libcvaux2.3_2.3.1-11_amd64 + libcvc3-5_2.4.1-4_amd64 + libcvc3-5-jni_2.4.1-4_amd64 + libcvc3-dev_2.4.1-4_amd64 + libcvector2_1.0.3-1_amd64 + libcvector2-dev_1.0.3-1_amd64 + libcvm1_0.96-1+b1_amd64 + libcvm1-dev_0.96-1+b1_amd64 + libcw3_3.0.2-1_amd64 + libcw3-dev_3.0.2-1_amd64 + libcwidget-dev_0.5.16-3.4_amd64 + libcwidget3_0.5.16-3.4_amd64 + libcwidget3-dbg_0.5.16-3.4_amd64 + libcwiid-dev_0.6.00+svn201-3+b1_amd64 + libcwiid1_0.6.00+svn201-3+b1_amd64 + libcwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libcwnn0_1.1.1~a021+cvs20100325-6_amd64 + libcxgb3-1_1.3.1-1_amd64 + libcxgb3-1-dbg_1.3.1-1_amd64 + libcxgb3-dev_1.3.1-1_amd64 + libcxsparse2.2.3_1:3.4.0-3_amd64 + libcxxtools-dev_2.1.1-1_amd64 + libcxxtools8_2.1.1-1_amd64 + libcyrus-imap-perl24_2.4.16-4+deb7u1_amd64 + libdacs-dev_1.4.27b-2_amd64 + libdacs1_1.4.27b-2_amd64 + libdaemon-dev_0.14-2_amd64 + libdaemon0_0.14-2_amd64 + libdaemon0-dbg_0.14-2_amd64 + libdancer-xml0_0.8.2.1-3_amd64 + libdancer-xml0-dev_0.8.2.1-3_amd64 + libdap-bin_3.11.1-11_amd64 + libdap-dev_3.11.1-11_amd64 + libdap11_3.11.1-11_amd64 + libdapclient3_3.11.1-11_amd64 + libdapl-dev_2.0.19-1.1_amd64 + libdapl2_2.0.19-1.1_amd64 + libdapserver7_3.11.1-11_amd64 + libdaq-dev_0.6.2-2_amd64 + libdaq0_0.6.2-2_amd64 + libdar-dev_2.4.5.debian.1-1_amd64 + libdar64-5_2.4.5.debian.1-1_amd64 + libdata-alias-perl_1.16-1_amd64 + libdata-clone-perl_0.003-1_amd64 + libdata-dump-streamer-perl_2.34-1_amd64 + libdata-dumpxml-perl_1.06-1_amd64 + libdata-peek-perl_0.38-1_amd64 + libdata-streamdeserializer-perl_0.06-1+b2_amd64 + libdata-streamserializer-perl_0.07-1+b2_amd64 + libdata-structure-util-perl_0.15-2+b2_amd64 + libdata-util-perl_0.59-1_amd64 + libdata-uuid-libuuid-perl_0.05-1+b2_amd64 + libdate-calc-xs-perl_6.3-1_amd64 + libdate-pcalc-perl_6.1-1+b2_amd64 + libdate-simple-perl_3.03.03-1+b3_amd64 + libdatetime-perl_2:0.7500-1_amd64 + libdatrie-dev_0.2.5-3_amd64 + libdatrie1_0.2.5-3_amd64 + libdatrie1-bin_0.2.5-3_amd64 + libdb++-dev_5.1.6_amd64 + libdb-dev_5.1.6_amd64 + libdb-java-dev_5.1.6_amd64 + libdb-sql-dev_5.1.6_amd64 + libdb1-compat_2.1.3-16_amd64 + libdb5.1_5.1.29-5_amd64 + libdb5.1++_5.1.29-5_amd64 + libdb5.1++-dev_5.1.29-5_amd64 + libdb5.1-dbg_5.1.29-5_amd64 + libdb5.1-dev_5.1.29-5_amd64 + libdb5.1-java-dev_5.1.29-5_amd64 + libdb5.1-java-gcj_5.1.29-5_amd64 + libdb5.1-java-jni_5.1.29-5_amd64 + libdb5.1-sql_5.1.29-5_amd64 + libdb5.1-sql-dev_5.1.29-5_amd64 + libdb5.1-stl_5.1.29-5_amd64 + libdb5.1-stl-dev_5.1.29-5_amd64 + libdb5.1-tcl_5.1.29-5_amd64 + libdballe-dev_5.18-1_amd64 + libdballe5_5.18-1_amd64 + libdballef-dev_5.18-1_amd64 + libdballef4_5.18-1_amd64 + libdbaudiolib0_0.9.8-6.2_amd64 + libdbaudiolib0-dev_0.9.8-6.2_amd64 + libdbd-firebird-perl_0.91-2+b1_amd64 + libdbd-freetds_0.8.3-1+s-5+b1_amd64 + libdbd-mysql_0.8.3-1+s-5+b1_amd64 + libdbd-mysql-perl_4.021-1+b1_amd64 + libdbd-odbc-perl_1.37-1_amd64 + libdbd-pg-perl_2.19.2-2_amd64 + libdbd-pgsql_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite2-perl_2:0.33-9+b2_amd64 + libdbd-sqlite3_0.8.3-1+s-5+b1_amd64 + libdbd-sqlite3-perl_1.37-1_amd64 + libdbd-sybase-perl_1.14-1_amd64 + libdbi-dev_0.8.4-6_amd64 + libdbi-perl_1.622-1_amd64 + libdbi1_0.8.4-6_amd64 + libdbus-1-3_1.6.8-1+deb7u1_amd64 + libdbus-1-dev_1.6.8-1+deb7u1_amd64 + libdbus-c++-1-0_0.9.0-6_amd64 + libdbus-c++-bin_0.9.0-6_amd64 + libdbus-c++-dbg_0.9.0-6_amd64 + libdbus-c++-dev_0.9.0-6_amd64 + libdbus-glib-1-2_0.100.2-1_amd64 + libdbus-glib-1-2-dbg_0.100.2-1_amd64 + libdbus-glib-1-dev_0.100.2-1_amd64 + libdbus-ocaml_0.29-1+b3_amd64 + libdbus-ocaml-dev_0.29-1+b3_amd64 + libdbusada0.2_0.2-2_amd64 + libdbusada0.2-dbg_0.2-2_amd64 + libdbusada0.2-dev_0.2-2_amd64 + libdbusmenu-glib-dev_0.6.2-1_amd64 + libdbusmenu-glib4_0.6.2-1_amd64 + libdbusmenu-gtk-dev_0.6.2-1_amd64 + libdbusmenu-gtk3-4_0.6.2-1_amd64 + libdbusmenu-gtk3-dev_0.6.2-1_amd64 + libdbusmenu-gtk4_0.6.2-1_amd64 + libdbusmenu-jsonloader-dev_0.6.2-1_amd64 + libdbusmenu-jsonloader4_0.6.2-1_amd64 + libdbusmenu-qt-dev_0.9.0-1_amd64 + libdbusmenu-qt2_0.9.0-1_amd64 + libdbusmenu-tools_0.6.2-1_amd64 + libdc-dev_0.3.24~svn3121-2_amd64 + libdc1394-22_2.2.0-2_amd64 + libdc1394-22-dbg_2.2.0-2_amd64 + libdc1394-22-dev_2.2.0-2_amd64 + libdc1394-utils_2.2.0-2_amd64 + libdc5_0.3.24~svn3121-2_amd64 + libdca-dev_0.0.5-5_amd64 + libdca-utils_0.0.5-5_amd64 + libdca0_0.0.5-5_amd64 + libdcap1_2.47.6-2_amd64 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_amd64 + libdcmtk2_3.6.0-12_amd64 + libdcmtk2-dev_3.6.0-12_amd64 + libdconf-dbg_0.12.1-3_amd64 + libdconf-dbus-1-0_0.12.1-3_amd64 + libdconf-dbus-1-dbg_0.12.1-3_amd64 + libdconf-dbus-1-dev_0.12.1-3_amd64 + libdconf-dev_0.12.1-3_amd64 + libdconf0_0.12.1-3_amd64 + libddccontrol-dev_0.4.2-10_amd64 + libddccontrol0_0.4.2-10_amd64 + libdds-dev_2.1.2+ddd105-1_amd64 + libdebconf-kde-dev_0.2-2_amd64 + libdebconf-kde0_0.2-2_amd64 + libdebconfclient0_0.182_amd64 + libdebconfclient0-dev_0.182_amd64 + libdebian-installer-extra4_0.87_amd64 + libdebian-installer4_0.87_amd64 + libdebian-installer4-dev_0.87_amd64 + libdebug0_0.4.4-1.1_amd64 + libdebug0-dev_0.4.4-1.1_amd64 + libdeclarative-connectivity_1.2.0-3_amd64 + libdeclarative-contacts_1.2.0-3_amd64 + libdeclarative-feedback_1.2.0-3_amd64 + libdeclarative-gallery_1.2.0-3_amd64 + libdeclarative-location_1.2.0-3_amd64 + libdeclarative-messaging_1.2.0-3_amd64 + libdeclarative-multimedia_1.2.0-3_amd64 + libdeclarative-organizer_1.2.0-3_amd64 + libdeclarative-publishsubscribe_1.2.0-3_amd64 + libdeclarative-sensors_1.2.0-3_amd64 + libdeclarative-serviceframework_1.2.0-3_amd64 + libdeclarative-systeminfo_1.2.0-3_amd64 + libdecodeqr-dev_0.9.3-6.2_amd64 + libdecodeqr-examples_0.9.3-6.2_amd64 + libdecodeqr0_0.9.3-6.2_amd64 + libdee-1.0-4_1.0.10-3_amd64 + libdee-1.0-4-dbg_1.0.10-3_amd64 + libdee-dev_1.0.10-3_amd64 + libderiving-ocaml_0.1.1a-3+b1_amd64 + libderiving-ocaml-dev_0.1.1a-3+b1_amd64 + libderiving-ocsigen-ocaml_0.3c-1_amd64 + libderiving-ocsigen-ocaml-dev_0.3c-1_amd64 + libdesktop-agnostic-bin_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-data_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-dev_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_amd64 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0_0.3.92+dfsg-1_amd64 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_amd64 + libdessert0.87_0.87.2-1_amd64 + libdessert0.87-dev_0.87.2-1_amd64 + libdevel-beginlift-perl_0.001003-1_amd64 + libdevel-bt-perl_0.05-1+b2_amd64 + libdevel-caller-perl_2.05-1+b2_amd64 + libdevel-cover-perl_0.89-1_amd64 + libdevel-declare-perl_0.006011-1_amd64 + libdevel-dprof-perl_20110802.00-1_amd64 + libdevel-findref-perl_1.422-1+b2_amd64 + libdevel-leak-perl_0.03-2+b1_amd64 + libdevel-lexalias-perl_0.04-3+b1_amd64 + libdevel-nytprof-perl_4.06-1+b2_amd64 + libdevel-pragma-perl_0.54-1_amd64 + libdevel-refcount-perl_0.09-1+b2_amd64 + libdevel-size-perl_0.77-1+b1_amd64 + libdevhelp-3-0_3.4.1-1_amd64 + libdevhelp-dev_3.4.1-1_amd64 + libdevice-cdio-perl_0.3.0-1_amd64 + libdevice-serialport-perl_1.04-2+b3_amd64 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_amd64 + libdevice-usb-perl_0.35-2+b1_amd64 + libdevil-dev_1.7.8-6.1+b1_amd64 + libdevil1c2_1.7.8-6.1+b1_amd64 + libdevmapper-dev_2:1.02.74-8_amd64 + libdevmapper-event1.02.1_2:1.02.74-8_amd64 + libdevmapper1.02.1_2:1.02.74-8_amd64 + libdhash-dev_0.1.3-2_amd64 + libdhash1_0.1.3-2_amd64 + libdiagnostics-dev_0.3.3-1.3_amd64 + libdiagnostics0_0.3.3-1.3_amd64 + libdianewcanvas2_0.6.10-5.4_amd64 + libdianewcanvas2-dev_0.6.10-5.4_amd64 + libdico1_2.1-3+b2_amd64 + libdieharder-dev_3.31.1-4_amd64 + libdieharder3_3.31.1-4_amd64 + libdiet-admin2.8_2.8.0-1+b1_amd64 + libdiet-admin2.8-dev_2.8.0-1+b1_amd64 + libdiet-client2.8_2.8.0-1+b1_amd64 + libdiet-client2.8-dev_2.8.0-1+b1_amd64 + libdiet-dagda2.8_2.8.0-1+b1_amd64 + libdiet-dagda2.8-dev_2.8.0-1+b1_amd64 + libdiet-sed2.8_2.8.0-1+b1_amd64 + libdiet-sed2.8-dev_2.8.0-1+b1_amd64 + libdigest-crc-perl_0.18-1+b1_amd64 + libdigest-jhash-perl_0.06-1+b2_amd64 + libdigest-md2-perl_2.03+dfsg-1+b2_amd64 + libdigest-md4-perl_1.5.dfsg-2+b2_amd64 + libdigest-sha-perl_5.71-2+deb7u1_amd64 + libdigest-whirlpool-perl_1.09-1_amd64 + libdime_0.20030921-2_amd64 + libdirac-decoder0_1.0.2-6_amd64 + libdirac-dev_1.0.2-6_amd64 + libdirac-encoder0_1.0.2-6_amd64 + libdirectfb-1.2-9_1.2.10.0-5_amd64 + libdirectfb-1.2-9-dbg_1.2.10.0-5_amd64 + libdirectfb-bin_1.2.10.0-5_amd64 + libdirectfb-bin-dbg_1.2.10.0-5_amd64 + libdirectfb-dev_1.2.10.0-5_amd64 + libdirectfb-extra_1.2.10.0-5_amd64 + libdirectfb-extra-dbg_1.2.10.0-5_amd64 + libdisasm-dev_0.23-5_amd64 + libdisasm0_0.23-5_amd64 + libdiscid0_0.2.2-3_amd64 + libdiscid0-dev_0.2.2-3_amd64 + libdiscover-dev_2.1.2-5.2_amd64 + libdiscover2_2.1.2-5.2_amd64 + libdispatch-dev_0~svn197-3.1_amd64 + libdispatch0_0~svn197-3.1_amd64 + libdisplaymigration0_0.28-10_amd64 + libdisplaymigration0-dbg_0.28-10_amd64 + libdisplaymigration0-dev_0.28-10_amd64 + libdistorm64-1_1.7.30-1_amd64 + libdistorm64-dev_1.7.30-1_amd64 + libdivecomputer-dev_0.1.0-3_amd64 + libdivecomputer0_0.1.0-3_amd64 + libdjconsole-dev_0.1.3-1_amd64 + libdjconsole0_0.1.3-1_amd64 + libdjvulibre-dev_3.5.25.3-1_amd64 + libdjvulibre21_3.5.25.3-1_amd64 + libdkim-dev_1:1.0.21-3_amd64 + libdkim1d_1:1.0.21-3_amd64 + libdkim1d-dbg_1:1.0.21-3_amd64 + libdlm-dev_3.0.12-3.2+deb7u2_amd64 + libdlm3_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_amd64 + libdlmcontrol3_3.0.12-3.2+deb7u2_amd64 + libdlrestrictions-dev_0.15.3_amd64 + libdlrestrictions1_0.15.3_amd64 + libdm0_2.2.10-1_amd64 + libdm0-dev_2.2.10-1_amd64 + libdmalloc-dev_5.5.2-5_amd64 + libdmalloc5_5.5.2-5_amd64 + libdmapsharing-3.0-2_2.9.15-1_amd64 + libdmapsharing-3.0-dev_2.9.15-1_amd64 + libdmraid-dev_1.0.0.rc16-4.2_amd64 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64 + libdmtcpaware-dev_1.2.5-1_amd64 + libdmtcpaware1_1.2.5-1_amd64 + libdmtx-dev_0.7.2-2+build1_amd64 + libdmtx-utils_0.7.2-2+build1_amd64 + libdmtx0a_0.7.2-2+build1_amd64 + libdmx-dev_1:1.1.2-1+deb7u1_amd64 + libdmx1_1:1.1.2-1+deb7u1_amd64 + libdmx1-dbg_1:1.1.2-1+deb7u1_amd64 + libdnet_2.60_amd64 + libdnet-dev_2.60_amd64 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libdockapp-dev_1:0.5.0-3_amd64 + libdockapp2_1:0.5.0-3_amd64 + libdolfin1.0_1.0.0-7_amd64 + libdolfin1.0-dbg_1.0.0-7_amd64 + libdolfin1.0-dev_1.0.0-7_amd64 + libdoodle-dev_0.7.0-5_amd64 + libdoodle1_0.7.0-5_amd64 + libdose2-ocaml_1.4.2-4+b3_amd64 + libdose2-ocaml-dev_1.4.2-4+b3_amd64 + libdose3-ocaml_3.0.2-3_amd64 + libdose3-ocaml-dev_3.0.2-3_amd64 + libdotconf-dev_1.0.13-3_amd64 + libdotconf1.0_1.0.13-3_amd64 + libdpkg-dev_1.16.12_amd64 + libdpm-dev_1.8.2-1+b2_amd64 + libdpm-perl_1.8.2-1+b2_amd64 + libdpm1_1.8.2-1+b2_amd64 + libdr-tarantool-perl_0.15-1+deb70u1_amd64 + libdrawtk-dev_2.0-2_amd64 + libdrawtk0_2.0-2_amd64 + libdrawtk0-dbg_2.0-2_amd64 + libdrizzle-dbg_1:7.1.36-stable-1_amd64 + libdrizzle4_1:7.1.36-stable-1_amd64 + libdrizzledmessage-dev_1:7.1.36-stable-1_amd64 + libdrizzledmessage0_1:7.1.36-stable-1_amd64 + libdrm-dev_2.4.40-1~deb7u2_amd64 + libdrm-intel1_2.4.40-1~deb7u2_amd64 + libdrm-intel1-dbg_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a_2.4.40-1~deb7u2_amd64 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_amd64 + libdrm-radeon1_2.4.40-1~deb7u2_amd64 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_amd64 + libdrm2_2.4.40-1~deb7u2_amd64 + libdrm2-dbg_2.4.40-1~deb7u2_amd64 + libdrmaa-java_6.2u5-7.1_amd64 + libdrumstick-dbg_0.5.0-3_amd64 + libdrumstick-dev_0.5.0-3_amd64 + libdrumstick0_0.5.0-3_amd64 + libdsdp-5.8gf_5.8-9.1_amd64 + libdsdp-dev_5.8-9.1_amd64 + libdshconfig1_0.20.13-1_amd64 + libdshconfig1-dev_0.20.13-1_amd64 + libdsocksd0_1.1.19.dfsg-3+b3_amd64 + libdspam7_3.10.1+dfsg-11_amd64 + libdspam7-dbg_3.10.1+dfsg-11_amd64 + libdspam7-dev_3.10.1+dfsg-11_amd64 + libdspam7-drv-hash_3.10.1+dfsg-11_amd64 + libdspam7-drv-mysql_3.10.1+dfsg-11_amd64 + libdspam7-drv-pgsql_3.10.1+dfsg-11_amd64 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_amd64 + libdssi-ocaml_0.1.0-1+b1_amd64 + libdssi-ocaml-dev_0.1.0-1+b1_amd64 + libdssialsacompat-dev_1.0.8a-1_amd64 + libdssialsacompat0_1.0.8a-1_amd64 + libdtools-ocaml-dev_0.3.0-1_amd64 + libdts-dev_0.0.5-5_amd64 + libdumb1_1:0.9.3-5.4_amd64 + libdumb1-dev_1:0.9.3-5.4_amd64 + libdumbnet-dev_1.12-3.1_amd64 + libdumbnet1_1.12-3.1_amd64 + libdune-common-2.2.0_2.2.0-1_amd64 + libdune-common-dbg_2.2.0-1_amd64 + libdune-common-dev_2.2.0-1_amd64 + libdune-geometry-2.2.0_2.2.0-1_amd64 + libdune-geometry-dbg_2.2.0-1_amd64 + libdune-geometry-dev_2.2.0-1_amd64 + libdune-grid-2.2.0_2.2.0-1_amd64 + libdune-grid-dbg_2.2.0-1_amd64 + libdune-grid-dev_2.2.0-1_amd64 + libduo-dev_1.8-1_amd64 + libduo3_1.8-1_amd64 + libduppy-ocaml_0.4.2-1+b2_amd64 + libduppy-ocaml-dev_0.4.2-1+b2_amd64 + libdv-bin_1.0.0-6_amd64 + libdv4_1.0.0-6_amd64 + libdv4-dev_1.0.0-6_amd64 + libdvb-dev_0.5.5.1-5.1_amd64 + libdvbcsa-dev_1.1.0-2_amd64 + libdvbcsa1_1.1.0-2_amd64 + libdvbpsi-dev_0.2.2-1_amd64 + libdvbpsi7_0.2.2-1_amd64 + libdvdnav-dbg_4.2.0+20120524-2_amd64 + libdvdnav-dev_4.2.0+20120524-2_amd64 + libdvdnav4_4.2.0+20120524-2_amd64 + libdvdread-dbg_4.2.0+20120521-2_amd64 + libdvdread-dev_4.2.0+20120521-2_amd64 + libdvdread4_4.2.0+20120521-2_amd64 + libdw-dev_0.152-1+wheezy1_amd64 + libdw1_0.152-1+wheezy1_amd64 + libdwarf-dev_20120410-2_amd64 + libdx4_1:4.4.4-4+b2_amd64 + libdx4-dev_1:4.4.4-4+b2_amd64 + libdxflib-2.2.0.0_2.2.0.0-8_amd64 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_amd64 + libdxflib-dev_2.2.0.0-8_amd64 + libdynalogin-1-0_0.9.14-2_amd64 + libdynamite-dev_0.1.1-2_amd64 + libdynamite0_0.1.1-2_amd64 + libeasy-format-ocaml_1.0.0-1+b2_amd64 + libeasy-format-ocaml-dev_1.0.0-1+b2_amd64 + libeb16_4.4.3-6_amd64 + libeb16-dev_4.4.3-6_amd64 + libebackend-1.2-2_3.4.4-3_amd64 + libebackend1.2-dev_3.4.4-3_amd64 + libebml-dev_1.2.2-2_amd64 + libebml3_1.2.2-2_amd64 + libebook-1.2-13_3.4.4-3_amd64 + libebook-tools-perl_0.4.9-1_amd64 + libebook1.2-dev_3.4.4-3_amd64 + libecal-1.2-11_3.4.4-3_amd64 + libecal1.2-dev_3.4.4-3_amd64 + libecasoundc-dev_2.9.0-1_amd64 + libecasoundc1_2.9.0-1_amd64 + libechonest-dbg_1.2.1-1_amd64 + libechonest-dev_1.2.1-1_amd64 + libechonest1.2_1.2.1-1_amd64 + libecj-java-gcj_3.5.1-3_amd64 + libecm-dev_6.4.2-1_amd64 + libecm0_6.4.2-1_amd64 + libecore-con1_1.2.0-2_amd64 + libecore-dbg_1.2.0-2_amd64 + libecore-dev_1.2.0-2_amd64 + libecore-evas1_1.2.0-2_amd64 + libecore-fb1_1.2.0-2_amd64 + libecore-file1_1.2.0-2_amd64 + libecore-imf1_1.2.0-2_amd64 + libecore-input1_1.2.0-2_amd64 + libecore-ipc1_1.2.0-2_amd64 + libecore-x1_1.2.0-2_amd64 + libecore1_1.2.0-2_amd64 + libecpg-compat3_9.1.11-0wheezy1_amd64 + libecpg-dev_9.1.11-0wheezy1_amd64 + libecpg6_9.1.11-0wheezy1_amd64 + libecryptfs-dev_99-1_amd64 + libecryptfs0_99-1_amd64 + libedac-dev_0.18-1_amd64 + libedac1_0.18-1_amd64 + libedac1-dbg_0.18-1_amd64 + libedata-book-1.2-13_3.4.4-3_amd64 + libedata-book1.2-dev_3.4.4-3_amd64 + libedata-cal-1.2-15_3.4.4-3_amd64 + libedata-cal1.2-dev_3.4.4-3_amd64 + libedataserver-1.2-16_3.4.4-3_amd64 + libedataserver1.2-dev_3.4.4-3_amd64 + libedataserverui-3.0-1_3.4.4-3_amd64 + libedataserverui-3.0-dev_3.4.4-3_amd64 + libedbus-dev_1.2.0-1_amd64 + libedbus1_1.2.0-1_amd64 + libedit-dev_2.11-20080614-5_amd64 + libedit2_2.11-20080614-5_amd64 + libeditline-dev_1.12-6_amd64 + libeditline0_1.12-6_amd64 + libedje-bin_1.2.0-1_amd64 + libedje-dbg_1.2.0-1_amd64 + libedje-dev_1.2.0-1_amd64 + libedje1_1.2.0-1_amd64 + libee-dev_0.4.1-1_amd64 + libee0_0.4.1-1_amd64 + libeegdev-dev_0.2-3_amd64 + libeegdev0_0.2-3_amd64 + libeegdev0-dbg_0.2-3_amd64 + libeet-bin_1.6.0-1_amd64 + libeet-dbg_1.6.0-1_amd64 + libeet-dev_1.6.0-1_amd64 + libeet1_1.6.0-1_amd64 + libefreet-dev_1.2.0-1_amd64 + libefreet1_1.2.0-1_amd64 + libegl1-mesa_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libegl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers_8.0.5-4+deb7u2_amd64 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_amd64 + libeigen2-dev_2.0.17-1_amd64 + libeigen3-dev_3.1.0-1_amd64 + libeina-dbg_1.2.0-2_amd64 + libeina-dev_1.2.0-2_amd64 + libeina1_1.2.0-2_amd64 + libeiskaltdcpp2.2_2.2.6-4_amd64 + libeiskaltdcpp2.2-dbg_2.2.6-4_amd64 + libelektra-cpp-dev_0.7.1-1_amd64 + libelektra-cpp0_0.7.1-1_amd64 + libelektra-dev_0.7.1-1_amd64 + libelektra3_0.7.1-1_amd64 + libelektratools-dev_0.7.1-1_amd64 + libelektratools2_0.7.1-1_amd64 + libelemental-dev_1.2.0-8_amd64 + libelemental0_1.2.0-8_amd64 + libelementary-bin_0.7.0.55225-1_amd64 + libelementary-dbg_0.7.0.55225-1_amd64 + libelementary-dev_0.7.0.55225-1_amd64 + libelementary-svn-09_0.7.0.55225-1_amd64 + libelf-dev_0.152-1+wheezy1_amd64 + libelf1_0.152-1+wheezy1_amd64 + libelfg0_0.8.13-3_amd64 + libelfg0-dev_0.8.13-3_amd64 + libeliom-ocaml_2.2.2-1_amd64 + libeliom-ocaml-dev_2.2.2-1_amd64 + libelk0_3.99.8-2_amd64 + libelk0-dev_3.99.8-2_amd64 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_amd64 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_amd64 + libembryo-bin_1.2.0-1_amd64 + libembryo-dbg_1.2.0-1_amd64 + libembryo-dev_1.2.0-1_amd64 + libembryo1_1.2.0-1_amd64 + libemos-data_000382+dfsg-2_amd64 + libemos-dev_000382+dfsg-2_amd64 + libemos0d_000382+dfsg-2_amd64 + libenca-dbg_1.13-4_amd64 + libenca-dev_1.13-4_amd64 + libenca0_1.13-4_amd64 + libenchant-dev_1.6.0-7_amd64 + libenchant-voikko_1.6.0-7_amd64 + libenchant1c2a_1.6.0-7_amd64 + libencode-detect-perl_1.01-2+b2_amd64 + libencode-eucjpms-perl_0.07-3_amd64 + libencode-hanextra-perl_0.23-2+b2_amd64 + libencode-jis2k-perl_0.02-1+b2_amd64 + libencode-perl_2.44-1+deb7u1_amd64 + libenet-dev_1.3.3-2_amd64 + libenet1a_1.3.3-2_amd64 + libenet1a-dbg_1.3.3-2_amd64 + libengine-pkcs11-openssl_0.1.8-2+b2_amd64 + libepc-1.0-3_0.4.4-1_amd64 + libepc-dev_0.4.4-1_amd64 + libepc-ui-1.0-3_0.4.4-1_amd64 + libepc-ui-dev_0.4.4-1_amd64 + libepr-api2_2.2-2_amd64 + libepsilon-dev_0.9.1-2_amd64 + libepsilon0_0.9.1-2_amd64 + libept-dev_1.0.9_amd64 + libept1.4.12_1.0.9_amd64 + libepub-dev_0.2.1-2+b1_amd64 + libepub0_0.2.1-2+b1_amd64 + liberis-1.3-19_1.3.19-5_amd64 + liberis-1.3-19-dbg_1.3.19-5_amd64 + liberis-1.3-dev_1.3.19-5_amd64 + liberuby_1.0.5-2.1_amd64 + liberuby-dev_1.0.5-2.1_amd64 + libescpr-dev_1.1.1-2_amd64 + libescpr1_1.1.1-2_amd64 + libesd0_0.2.41-10+b1_amd64 + libesd0-dev_0.2.41-10+b1_amd64 + libesmtp-dev_1.0.6-1+b1_amd64 + libesmtp6_1.0.6-1+b1_amd64 + libespeak-dev_1.46.02-2_amd64 + libespeak1_1.46.02-2_amd64 + libestools2.1_1:2.1~release-5_amd64 + libestools2.1-dev_1:2.1~release-5_amd64 + libestr-dev_0.1.1-2_amd64 + libestr0_0.1.9-1~bpo70+1_amd64 + libethos-1.0-0_0.2.2-3_amd64 + libethos-dev_0.2.2-3_amd64 + libethos-ui-1.0-0_0.2.2-3_amd64 + libethos-ui-dev_0.2.2-3_amd64 + libetpan-dbg_1.0-5_amd64 + libetpan-dev_1.0-5_amd64 + libetpan15_1.0-5_amd64 + libetsf-io-dev_1.0.3-4+b1_amd64 + libeurodec1-dev_20061220+dfsg3-2_amd64 + libeurodec1-gfortran_20061220+dfsg3-2_amd64 + libev-dev_1:4.11-1_amd64 + libev-perl_4.11-2_amd64 + libev4_1:4.11-1_amd64 + libeval0_0.29.6-2_amd64 + libeval0-dev_0.29.6-2_amd64 + libevas-dbg_1.2.0-2_amd64 + libevas-dev_1.2.0-2_amd64 + libevas1_1.2.0-2_amd64 + libevas1-engine-fb_1.2.0-2_amd64 + libevas1-engines-core_1.2.0-2_amd64 + libevas1-engines-x_1.2.0-2_amd64 + libevd-0.1-0_0.1.20-2_amd64 + libevd-0.1-dev_0.1.20-2_amd64 + libevdocument3-4_3.4.0-3.1_amd64 + libevent-2.0-5_2.0.19-stable-3_amd64 + libevent-core-2.0-5_2.0.19-stable-3_amd64 + libevent-dbg_2.0.19-stable-3_amd64 + libevent-dev_2.0.19-stable-3_amd64 + libevent-extra-2.0-5_2.0.19-stable-3_amd64 + libevent-openssl-2.0-5_2.0.19-stable-3_amd64 + libevent-perl_1.15-1+b1_amd64 + libevent-pthreads-2.0-5_2.0.19-stable-3_amd64 + libeventdb-dev_0.90-5_amd64 + libeventdb2_0.90-5_amd64 + libeventdb2-dbg_0.90-5_amd64 + libevince-dev_3.4.0-3.1_amd64 + libevocosm-4.0-4_4.0.2-2.1_amd64 + libevocosm-dev_4.0.2-2.1_amd64 + libevolution_3.4.4-3_amd64 + libevs-dev_1.4.2-3_amd64 + libevs4_1.4.2-3_amd64 + libevtlog-dev_0.2.12-5_amd64 + libevtlog0_0.2.12-5_amd64 + libevtlog0-dbg_0.2.12-5_amd64 + libevview3-3_3.4.0-3.1_amd64 + libewf-dbg_20100226-1+b1_amd64 + libewf-dev_20100226-1+b1_amd64 + libewf1_20100226-1+b1_amd64 + libexactimage-perl_0.8.5-5+deb7u3_amd64 + libexchangemapi-1.0-0_3.4.4-1_amd64 + libexchangemapi-1.0-dev_3.4.4-1_amd64 + libexempi-dev_2.2.0-1_amd64 + libexempi3_2.2.0-1_amd64 + libexempi3-dbg_2.2.0-1_amd64 + libexene-smlnj_110.74-2_amd64 + libexif-dev_0.6.20-3_amd64 + libexif-gtk-dev_0.3.5-5_amd64 + libexif-gtk5_0.3.5-5_amd64 + libexif12_0.6.20-3_amd64 + libexiv2-12_0.23-1_amd64 + libexiv2-dbg_0.23-1_amd64 + libexiv2-dev_0.23-1_amd64 + libexo-1-0_0.6.2-5_amd64 + libexo-1-0-dbg_0.6.2-5_amd64 + libexo-1-dev_0.6.2-5_amd64 + libexo-helpers_0.6.2-5_amd64 + libexodusii-dev_5.14.dfsg.1-2+b1_amd64 + libexodusii5_5.14.dfsg.1-2+b1_amd64 + libexosip2-7_3.6.0-4_amd64 + libexosip2-dev_3.6.0-4_amd64 + libexpat-gst_3.2.4-2_amd64 + libexpat-ocaml_0.9.1+debian1-7+b2_amd64 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_amd64 + libexpat1_2.1.0-1+deb7u1_amd64 + libexpat1-dev_2.1.0-1+deb7u1_amd64 + libexpect-ocaml_0.0.2-1+b6_amd64 + libexpect-ocaml-dev_0.0.2-1+b6_amd64 + libexpect-php5_0.3.1-1+b1_amd64 + libexplain-dev_0.52.D002-1_amd64 + libexplain30_0.52.D002-1_amd64 + libexplain30-dbg_0.52.D002-1_amd64 + libextlib-ocaml_1.5.2-1+b1_amd64 + libextlib-ocaml-dev_1.5.2-1+b1_amd64 + libextractor-dbg_1:0.6.3-5_amd64 + libextractor-dev_1:0.6.3-5_amd64 + libextractor-java-dbg_0.6.0-6_amd64 + libextractor-java-dev_0.6.0-6_amd64 + libextractor-java0_0.6.0-6_amd64 + libextractor-plugins_1:0.6.3-5_amd64 + libextractor3_1:0.6.3-5_amd64 + libexttextcat-dev_3.2.0-2_amd64 + libexttextcat0_3.2.0-2_amd64 + libextunix-ocaml_0.0.5-2_amd64 + libextunix-ocaml-dev_0.0.5-2_amd64 + libeztrace-dev_0.7-2-4_amd64 + libeztrace0_0.7-2-4_amd64 + libf2c2_20090411-2_amd64 + libf2c2-dev_20090411-2_amd64 + libf95getdata2_0.7.3-6_amd64 + libfaad-dev_2.7-8_amd64 + libfaad-ocaml_0.3.0-1+b1_amd64 + libfaad-ocaml-dev_0.3.0-1+b1_amd64 + libfaad2_2.7-8_amd64 + libfacile-ocaml-dev_1.1-8+b1_amd64 + libfaifa-dev_0.2~svn82-1_amd64 + libfaifa0_0.2~svn82-1_amd64 + libfakechroot_2.16-1_amd64 + libfakekey-dev_0.1-7_amd64 + libfakekey0_0.1-7_amd64 + libfalcon-engine1_0.9.6.9-git20120606-2_amd64 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_amd64 + libfam-dev_2.7.0-17_amd64 + libfam-ruby_0.2.0-2.1_amd64 + libfam0_2.7.0-17_amd64 + libfann-dbg_2.1.0~beta~dfsg-8_amd64 + libfann-dev_2.1.0~beta~dfsg-8_amd64 + libfann2_2.1.0~beta~dfsg-8_amd64 + libfarstream-0.1-0_0.1.2-1_amd64 + libfarstream-0.1-dbg_0.1.2-1_amd64 + libfarstream-0.1-dev_0.1.2-1_amd64 + libfastjet-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran-dev_3.0.2+dfsg-2_amd64 + libfastjet-fortran0_3.0.2+dfsg-2_amd64 + libfastjet0_3.0.2+dfsg-2_amd64 + libfastjetplugins-dev_3.0.2+dfsg-2_amd64 + libfastjetplugins0_3.0.2+dfsg-2_amd64 + libfastjettools-dev_3.0.2+dfsg-2_amd64 + libfastjettools0_3.0.2+dfsg-2_amd64 + libfauhdli-dev_20110812-1_amd64 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_amd64 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_amd64 + libfcgi-dev_2.4.0-8.1_amd64 + libfcgi-perl_0.74-1+b1_amd64 + libfcgi-ruby1.8_0.8.8-1_amd64 + libfcgi-ruby1.9.1_0.8.8-1_amd64 + libfcgi0ldbl_2.4.0-8.1_amd64 + libfdt-dev_1.3.0-4_amd64 + libfdt1_1.3.0-4_amd64 + libfence-dev_3.0.12-3.2+deb7u2_amd64 + libfence4_3.0.12-3.2+deb7u2_amd64 + libffado-dev_2.0.99+svn2171-2_amd64 + libffado2_2.0.99+svn2171-2_amd64 + libffcall1_1.10+cvs20100619-2_amd64 + libffcall1-dev_1.10+cvs20100619-2_amd64 + libffi-dev_3.0.10-3_amd64 + libffi5_3.0.10-3_amd64 + libffi5-dbg_3.0.10-3_amd64 + libffindex0_0.9.6.1-1_amd64 + libffindex0-dev_0.9.6.1-1_amd64 + libffmpegthumbnailer-dev_2.0.7-2_amd64 + libffmpegthumbnailer4_2.0.7-2_amd64 + libffms2-2_2.17-1_amd64 + libffms2-dev_2.17-1_amd64 + libfftw3-3_3.3.2-3.1_amd64 + libfftw3-bin_3.3.2-3.1_amd64 + libfftw3-dbg_3.3.2-3.1_amd64 + libfftw3-dev_3.3.2-3.1_amd64 + libfftw3-mpi-dev_3.3.2-3.1_amd64 + libfftw3-mpi3_3.3.2-3.1_amd64 + libfgetdata2_0.7.3-6_amd64 + libfields-camlp4-dev_107.01-1+b2_amd64 + libfile-fcntllock-perl_0.14-2_amd64 + libfile-fnmatch-perl_0.02-1+b2_amd64 + libfile-libmagic-perl_0.96-2_amd64 + libfile-mmagic-xs-perl_0.09006-4_amd64 + libfile-rsyncp-perl_0.70-1_amd64 + libfile-spec-perl_3.3300-1+b2_amd64 + libfile-sync-perl_0.11-1_amd64 + libfilehandle-fmode-perl_0.11-1+b2_amd64 + libfilesys-df-perl_0.92-4+b1_amd64 + libfilesys-smbclient-perl_3.1-3+b3_amd64 + libfilesys-statvfs-perl_0.82-2+b1_amd64 + libfilesystem-ruby1.8_0.5-3.1_amd64 + libfilesystem-ruby1.9.1_0.5-3.1_amd64 + libfileutils-ocaml-dev_0.4.2-1+b2_amd64 + libfilter-perl_1.45-1_amd64 + libfindlib-ocaml_1.3.1-1_amd64 + libfindlib-ocaml-dev_1.3.1-1_amd64 + libfiredns-dev_0.9.12+dfsg-3_amd64 + libfiredns0.9_0.9.12+dfsg-3_amd64 + libfirestring-dev_0.9.12-8_amd64 + libfirestring0.9_0.9.12-8_amd64 + libfishsound1_1.0.0-1.1_amd64 + libfishsound1-dbg_1.0.0-1.1_amd64 + libfishsound1-dev_1.0.0-1.1_amd64 + libfiu-dev_0.90-3_amd64 + libfiu0_0.90-3_amd64 + libfixposix-dev_20110316.git47f17f7-1_amd64 + libfixposix0_20110316.git47f17f7-1_amd64 + libfko0_2.0.0rc2-2+deb7u2_amd64 + libfko0-dbg_2.0.0rc2-2+deb7u2_amd64 + libfko0-dev_2.0.0rc2-2+deb7u2_amd64 + libflac++-dev_1.2.1-6_amd64 + libflac++6_1.2.1-6_amd64 + libflac-dev_1.2.1-6_amd64 + libflac-ocaml_0.1.1-1_amd64 + libflac-ocaml-dev_0.1.1-1_amd64 + libflac8_1.2.1-6_amd64 + libflake-dev_0.11-2_amd64 + libflann-dev_1.7.1-4_amd64 + libflann1.7_1.7.1-4_amd64 + libflatzebra-0.1-2_0.1.5-4+b1_amd64 + libflatzebra-dev_0.1.5-4+b1_amd64 + libflite1_1.4-release-6_amd64 + libflorist-dbg_2011-1_amd64 + libflorist2011_2011-1_amd64 + libflorist2011-dev_2011-1_amd64 + libflowcanvas-dev_0.7.1+dfsg0-0.2_amd64 + libflowcanvas5_0.7.1+dfsg0-0.2_amd64 + libfltk-cairo1.3_1.3.0-8_amd64 + libfltk-forms1.3_1.3.0-8_amd64 + libfltk-gl1.3_1.3.0-8_amd64 + libfltk-images1.3_1.3.0-8_amd64 + libfltk1.1_1.1.10-14_amd64 + libfltk1.1-dbg_1.1.10-14_amd64 + libfltk1.1-dev_1.1.10-14_amd64 + libfltk1.3_1.3.0-8_amd64 + libfltk1.3-dbg_1.3.0-8_amd64 + libfltk1.3-dev_1.3.0-8_amd64 + libfluidsynth-dev_1.1.5-2_amd64 + libfluidsynth1_1.1.5-2_amd64 + libfm-dev_0.1.17-2.1_amd64 + libfm-gtk-bin_0.1.17-2.1_amd64 + libfm-gtk1_0.1.17-2.1_amd64 + libfm1_0.1.17-2.1_amd64 + libfm1-dbg_0.1.17-2.1_amd64 + libfolia1_0.9-2_amd64 + libfolia1-dev_0.9-2_amd64 + libfolks-dbg_0.6.9-1+b1_amd64 + libfolks-dev_0.6.9-1+b1_amd64 + libfolks-eds-dbg_0.6.9-1+b1_amd64 + libfolks-eds-dev_0.6.9-1+b1_amd64 + libfolks-eds25_0.6.9-1+b1_amd64 + libfolks-telepathy-dbg_0.6.9-1+b1_amd64 + libfolks-telepathy-dev_0.6.9-1+b1_amd64 + libfolks-telepathy25_0.6.9-1+b1_amd64 + libfolks25_0.6.9-1+b1_amd64 + libfont-freetype-perl_0.03-1+b2_amd64 + libfontconfig1_2.9.0-7.1_amd64 + libfontconfig1-dbg_2.9.0-7.1_amd64 + libfontconfig1-dev_2.9.0-7.1_amd64 + libfontenc-dev_1:1.1.1-1_amd64 + libfontenc1_1:1.1.1-1_amd64 + libfontenc1-dbg_1:1.1.1-1_amd64 + libfontforge-dev_0.0.20120101+git-2_amd64 + libfontforge1_0.0.20120101+git-2_amd64 + libforks-perl_0.34-1+b2_amd64 + libforms-bin_1.0.93sp1-2_amd64 + libforms-dev_1.0.93sp1-2_amd64 + libforms2_1.0.93sp1-2_amd64 + libformsgl-dev_1.0.93sp1-2_amd64 + libformsgl2_1.0.93sp1-2_amd64 + libfosfat0_0.4.0-3_amd64 + libfosgra0_0.4.0-3_amd64 + libfox-1.6-0_1.6.45-1_amd64 + libfox-1.6-dev_1.6.45-1_amd64 + libfprint-dev_1:0.4.0-4-gdfff16f-4_amd64 + libfprint0_1:0.4.0-4-gdfff16f-4_amd64 + libfreecell-solver-dev_3.12.0-1_amd64 + libfreecell-solver0_3.12.0-1_amd64 + libfreefem++_3.19.1-1_amd64 + libfreefem++-dev_3.19.1-1_amd64 + libfreefem-dev_3.5.8-5_amd64 + libfreefem0_3.5.8-5_amd64 + libfreehdl0_0.0.7-1.1_amd64 + libfreehdl0-dev_0.0.7-1.1_amd64 + libfreeimage-dev_3.15.1-1+b1_amd64 + libfreeimage3_3.15.1-1+b1_amd64 + libfreeimage3-dbg_3.15.1-1+b1_amd64 + libfreeipmi-dev_1.1.5-3_amd64 + libfreeipmi12_1.1.5-3_amd64 + libfreenect-bin_1:0.1.2+dfsg-6_amd64 + libfreenect-demos_1:0.1.2+dfsg-6_amd64 + libfreenect-dev_1:0.1.2+dfsg-6_amd64 + libfreenect0.1_1:0.1.2+dfsg-6_amd64 + libfreeradius-dev_2.1.12+dfsg-1.2_amd64 + libfreeradius2_2.1.12+dfsg-1.2_amd64 + libfreerdp-dev_1.0.1-1.1+deb7u2_amd64 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64 + libfreerdp1_1.0.1-1.1+deb7u2_amd64 + libfreetype6_2.4.9-1.1_amd64 + libfreetype6-dev_2.4.9-1.1_amd64 + libfreexl-dev_1.0.0b-1_amd64 + libfreexl1_1.0.0b-1_amd64 + libfreexl1-dbg_1.0.0b-1_amd64 + libfreeze34_3.4.2-8.2_amd64 + libfribidi-bin_0.19.2-3_amd64 + libfribidi-dev_0.19.2-3_amd64 + libfribidi0_0.19.2-3_amd64 + libfs-dev_2:1.0.4-1+deb7u1_amd64 + libfs6_2:1.0.4-1+deb7u1_amd64 + libfs6-dbg_2:1.0.4-1+deb7u1_amd64 + libfso-glib-dbg_2012.05.24.1-1.1_amd64 + libfso-glib-dev_2012.05.24.1-1.1_amd64 + libfso-glib1_2012.05.24.1-1.1_amd64 + libfsobasics-dbg_0.11.0-1.1_amd64 + libfsobasics-dev_0.11.0-1.1_amd64 + libfsobasics0_0.11.0-1.1_amd64 + libfsoframework-dbg_0.11.0-1.1_amd64 + libfsoframework-dev_0.11.0-1.1_amd64 + libfsoframework0_0.11.0-1.1_amd64 + libfsoresource-dbg_0.11.0-1.1_amd64 + libfsoresource-dev_0.11.0-1.1_amd64 + libfsoresource0_0.11.0-1.1_amd64 + libfsosystem-dbg_0.11.0-1_amd64 + libfsosystem-dev_0.11.0-1_amd64 + libfsosystem0_0.11.0-1_amd64 + libfsotransport-dbg_0.11.1-2.1_amd64 + libfsotransport-dev_0.11.1-2.1_amd64 + libfsotransport3_0.11.1-2.1_amd64 + libfsplib-dev_0.11-2_amd64 + libfsplib0_0.11-2_amd64 + libfstrcmp-dev_0.4.D001-1+deb7u1_amd64 + libfstrcmp0_0.4.D001-1+deb7u1_amd64 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_amd64 + libftdi-dev_0.20-1+b1_amd64 + libftdi1_0.20-1+b1_amd64 + libftdi1-dbg_0.20-1+b1_amd64 + libftdipp-dev_0.20-1+b1_amd64 + libftdipp1_0.20-1+b1_amd64 + libftdipp1-dbg_0.20-1+b1_amd64 + libftgl-dev_2.1.3~rc5-4_amd64 + libftgl2_2.1.3~rc5-4_amd64 + libfuntools-dev_1.4.4-3_amd64 + libfuntools1_1.4.4-3_amd64 + libfuse-dev_2.9.0-2+deb7u1_amd64 + libfuse-perl_0.15.1-2_amd64 + libfuse2_2.9.0-2+deb7u1_amd64 + libfuzzy-dev_2.7-2_amd64 + libfuzzy2_2.7-2_amd64 + libfuzzy2-dbg_2.7-2_amd64 + libfxt-dev_0.2.6-2_amd64 + libfxt0_0.2.6-2_amd64 + libg15-1_1.2.7-2_amd64 + libg15-dev_1.2.7-2_amd64 + libg15daemon-client-dev_1.9.5.3-8.2_amd64 + libg15daemon-client1_1.9.5.3-8.2_amd64 + libg15render-dev_1.3.0~svn316-2.2_amd64 + libg15render1_1.3.0~svn316-2.2_amd64 + libg2-dev_0.72-2.1_amd64 + libg20_0.72-2.1_amd64 + libg20-perl_0.72-2.1_amd64 + libg3d-dbg_0.0.8-17_amd64 + libg3d-dev_0.0.8-17_amd64 + libg3d-plugin-gdkpixbuf_0.0.8-17_amd64 + libg3d-plugins_0.0.8-17_amd64 + libg3d0_0.0.8-17_amd64 + libga-dev_2.4.7-3_amd64 + libga2_2.4.7-3_amd64 + libgadap-dev_2.0-1_amd64 + libgadu-dev_1:1.11.2-1_amd64 + libgadu3_1:1.11.2-1_amd64 + libgadu3-dbg_1:1.11.2-1_amd64 + libgail-3-0_3.4.2-7_amd64 + libgail-3-0-dbg_3.4.2-7_amd64 + libgail-3-dev_3.4.2-7_amd64 + libgail-common_2.24.10-2_amd64 + libgail-dbg_2.24.10-2_amd64 + libgail-dev_2.24.10-2_amd64 + libgail18_2.24.10-2_amd64 + libgalax-ocaml-dev_1.1-10+b3_amd64 + libgambc4_4.2.8-1.1_amd64 + libgambc4-dev_4.2.8-1.1_amd64 + libgamin-dev_0.1.10-4.1_amd64 + libgamin0_0.1.10-4.1_amd64 + libgammu-dbg_1.31.90-1+b1_amd64 + libgammu-dev_1.31.90-1+b1_amd64 + libgammu7_1.31.90-1+b1_amd64 + libganglia1_3.3.8-1+nmu1_amd64 + libganglia1-dev_3.3.8-1+nmu1_amd64 + libganv-1-1_0~svn4468~dfsg0-1_amd64 + libganv-dev_0~svn4468~dfsg0-1_amd64 + libgarcon-1-0_0.1.12-1_amd64 + libgarcon-1-0-dbg_0.1.12-1_amd64 + libgarcon-1-0-dev_0.1.12-1_amd64 + libgarmin-dev_0~svn320-3_amd64 + libgarmin0_0~svn320-3_amd64 + libgauche-0.9-0_0.9.1-5.1_amd64 + libgavl-dev_1.4.0-1_amd64 + libgavl-ocaml_0.1.4-1+b1_amd64 + libgavl-ocaml-dev_0.1.4-1+b1_amd64 + libgavl1_1.4.0-1_amd64 + libgavl1-dbg_1.4.0-1_amd64 + libgbm-dev_8.0.5-4+deb7u2_amd64 + libgbm1_8.0.5-4+deb7u2_amd64 + libgbm1-dbg_8.0.5-4+deb7u2_amd64 + libgc-dev_1:7.1-9.1_amd64 + libgc1c2_1:7.1-9.1_amd64 + libgcal-dev_0.9.6-3_amd64 + libgcal0_0.9.6-3_amd64 + libgcc1_1:4.7.2-5_amd64 + libgcc1-dbg_1:4.7.2-5_amd64 + libgccxml-dev_0.9.0+cvs20120420-4_amd64 + libgcgi-dev_0.9.5.dfsg-7_amd64 + libgcgi0_0.9.5.dfsg-7_amd64 + libgcj-bc_4.7.2-1_amd64 + libgcj12_4.6.3-1_amd64 + libgcj12-awt_4.6.3-1_amd64 + libgcj12-dbg_4.6.3-1_amd64 + libgcj12-dev_4.6.3-1_amd64 + libgcj13_4.7.2-3_amd64 + libgcj13-awt_4.7.2-3_amd64 + libgcj13-dbg_4.7.2-3_amd64 + libgcj13-dev_4.7.2-3_amd64 + libgck-1-0_3.4.1-3_amd64 + libgck-1-dev_3.4.1-3_amd64 + libgconf-2-4_3.2.5-1+build1_amd64 + libgconf-bridge-dev_0.1-2.2_amd64 + libgconf-bridge0_0.1-2.2_amd64 + libgconf2-4_3.2.5-1+build1_amd64 + libgconf2-dev_3.2.5-1+build1_amd64 + libgconfmm-2.6-1c2_2.28.0-1_amd64 + libgconfmm-2.6-dev_2.28.0-1_amd64 + libgcr-3-1_3.4.1-3_amd64 + libgcr-3-dev_3.4.1-3_amd64 + libgcr410_2.4.0-9.2_amd64 + libgcroots-dev_0.8.5-2.1_amd64 + libgcroots0_0.8.5-2.1_amd64 + libgcrypt11_1.5.0-5+deb7u1_amd64 + libgcrypt11-dbg_1.5.0-5+deb7u1_amd64 + libgcrypt11-dev_1.5.0-5+deb7u1_amd64 + libgctp-dev_1.0-1_amd64 + libgctp0d_1.0-1_amd64 + libgcu-dbg_0.12.12-1_amd64 + libgcu0_0.12.12-1_amd64 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_amd64 + libgd-gd2-noxpm-perl_1:2.46-2+b1_amd64 + libgd-gd2-perl_1:2.46-3+b1_amd64 + libgd-tools_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_amd64 + libgda-5.0-4_5.0.3-2_amd64 + libgda-5.0-4-dbg_5.0.3-2_amd64 + libgda-5.0-bin_5.0.3-2_amd64 + libgda-5.0-dev_5.0.3-2_amd64 + libgda-5.0-mysql_5.0.3-2_amd64 + libgda-5.0-postgres_5.0.3-2_amd64 + libgdal-dev_1.9.0-3.1_amd64 + libgdal-perl_1.9.0-3.1_amd64 + libgdal-ruby_1.9.0-3.1_amd64 + libgdal-ruby1.8_1.9.0-3.1_amd64 + libgdal1_1.9.0-3.1_amd64 + libgdal1-1.9.0-grass_1.9.0-1+b1_amd64 + libgdata-dev_0.12.0-1_amd64 + libgdata13_0.12.0-1_amd64 + libgdb-dev_7.4.1+dfsg-0.1_amd64 + libgdbm-dev_1.8.3-11_amd64 + libgdbm-gst_3.2.4-2_amd64 + libgdbm3_1.8.3-11_amd64 + libgdbussyncevo0_1.2.99.1-1.1_amd64 + libgdchart-gd2-noxpm_0.11.5-7+b1_amd64 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm_0.11.5-7+b1_amd64 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_amd64 + libgdcm-cil_2.2.0-14.1_amd64 + libgdcm-java_2.2.0-14.1_amd64 + libgdcm-tools_2.2.0-14.1_amd64 + libgdcm2-dev_2.2.0-14.1_amd64 + libgdcm2.2_2.2.0-14.1_amd64 + libgdcm2.2-dbg_2.2.0-14.1_amd64 + libgdf-dev_0.1.2-2_amd64 + libgdf0_0.1.2-2_amd64 + libgdf0-dbg_0.1.2-2_amd64 + libgdict-1.0-6_3.4.0-2_amd64 + libgdict-1.0-dev_3.4.0-2_amd64 + libgdiplus_2.10-3+b1_amd64 + libgdk-pixbuf2.0-0_2.26.1-1_amd64 + libgdk-pixbuf2.0-dev_2.26.1-1_amd64 + libgdkcutter-pixbuf-dev_1.1.7-1.2_amd64 + libgdkcutter-pixbuf0_1.1.7-1.2_amd64 + libgdl-3-2_3.4.2-1_amd64 + libgdl-3-dbg_3.4.2-1_amd64 + libgdl-3-dev_3.4.2-1_amd64 + libgdome2-0_0.8.1+debian-4.1_amd64 + libgdome2-cpp-smart-dev_0.2.6-6+b1_amd64 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_amd64 + libgdome2-dev_0.8.1+debian-4.1_amd64 + libgdome2-ocaml_0.2.6-6+b1_amd64 + libgdome2-ocaml-dev_0.2.6-6+b1_amd64 + libgdraw4_0.0.20120101+git-2_amd64 + libgdu-dev_3.0.2-3_amd64 + libgdu-gtk-dev_3.0.2-3_amd64 + libgdu-gtk0_3.0.2-3_amd64 + libgdu0_3.0.2-3_amd64 + libgeant321-2-dev_1:3.21.14.dfsg-10_amd64 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_amd64 + libgearman-dbg_0.33-2_amd64 + libgearman-dev_0.33-2_amd64 + libgearman6_0.33-2_amd64 + libgecode-dev_3.7.3-1_amd64 + libgecode32_3.7.3-1_amd64 + libgecodeflatzinc32_3.7.3-1_amd64 + libgecodegist32_3.7.3-1_amd64 + libgeda-dev_1:1.6.2-4.3_amd64 + libgeda38_1:1.6.2-4.3_amd64 + libgee-dev_0.6.4-2_amd64 + libgee2_0.6.4-2_amd64 + libgee2-dbg_0.6.4-2_amd64 + libgegl-0.2-0_0.2.0-2+nmu1_amd64 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_amd64 + libgegl-dev_0.2.0-2+nmu1_amd64 + libgeier-dev_0.13-1+b1_amd64 + libgeier0_0.13-1+b1_amd64 + libgemanx-core0_0.1.0.3-2_amd64 + libgempc410_1.0.7-1_amd64 + libgempc430_1.0.7-1_amd64 + libgenders-perl_1.18-1_amd64 + libgenders0_1.18-1_amd64 + libgenders0-dev_1.18-1_amd64 + libgenome-1.3-0_1.3.1-3_amd64 + libgenome-1.3-0-dev_1.3.1-3_amd64 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libgensec0_4.0.0~beta2+dfsg1-3.2_amd64 + libgeo-distance-xs-perl_0.11-1_amd64 + libgeo-ip-perl_1.40-2_amd64 + libgeo-proj4-perl_1.03-1_amd64 + libgeoclue-dev_0.12.0-4_amd64 + libgeoclue0_0.12.0-4_amd64 + libgeocode-glib-dbg_0.99.0-1_amd64 + libgeocode-glib-dev_0.99.0-1_amd64 + libgeocode-glib0_0.99.0-1_amd64 + libgeographiclib-dev_1.21-1_amd64 + libgeographiclib9_1.21-1_amd64 + libgeoip-dev_1.4.8+dfsg-3_amd64 + libgeoip1_1.4.8+dfsg-3_amd64 + libgeomview-1.9.4_1.9.4-3_amd64 + libgeomview-dev_1.9.4-3_amd64 + libgeos++-dev_3.3.3-1.1_amd64 + libgeos-3.3.3_3.3.3-1.1_amd64 + libgeos-c1_3.3.3-1.1_amd64 + libgeos-dbg_3.3.3-1.1_amd64 + libgeos-dev_3.3.3-1.1_amd64 + libgeos-ruby1.8_3.3.3-1.1_amd64 + libgeotiff-dev_1.3.0+dfsg-3_amd64 + libgeotiff2_1.3.0+dfsg-3_amd64 + libgeotranz3-dev_3.1-2.1_amd64 + libgeotranz3.1_3.1-2.1_amd64 + libges-0.10-0_0.10.1-2_amd64 + libges-0.10-dev_0.10.1-2_amd64 + libgetdata++2_0.7.3-6_amd64 + libgetdata-dev_0.7.3-6_amd64 + libgetdata-tools_0.7.3-6_amd64 + libgetdata4_0.7.3-6_amd64 + libgetfem++-dbg_4.1.1+dfsg1-11_amd64 + libgetfem++-dev_4.1.1+dfsg1-11_amd64 + libgetfem4++_4.1.1+dfsg1-11_amd64 + libgetopt++-dev_0.0.2-p22-3_amd64 + libgetopt++1_0.0.2-p22-3_amd64 + libgetopt-ocaml-dev_0.0.20040811-10+b3_amd64 + libgettext-ocaml_0.3.4-1+b2_amd64 + libgettext-ocaml-dev_0.3.4-1+b2_amd64 + libgettextpo0_0.18.1.1-9_amd64 + libgexiv2-1_0.4.1-3_amd64 + libgexiv2-1-dbg_0.4.1-3_amd64 + libgexiv2-dev_0.4.1-3_amd64 + libgfarm-dev_2.4.1-1.1_amd64 + libgfarm1_2.4.1-1.1_amd64 + libgflags-dev_2.0-1_amd64 + libgflags2_2.0-1_amd64 + libgfortran3_4.7.2-5_amd64 + libgfortran3-dbg_4.7.2-5_amd64 + libgfshare-bin_1.0.5-2_amd64 + libgfshare-dbg_1.0.5-2_amd64 + libgfshare-dev_1.0.5-2_amd64 + libgfshare1_1.0.5-2_amd64 + libghc-acid-state-dev_0.6.3-1+b2_amd64 + libghc-acid-state-prof_0.6.3-1+b2_amd64 + libghc-active-dev_0.1.0.1-2+b1_amd64 + libghc-active-prof_0.1.0.1-2+b1_amd64 + libghc-adjunctions-dev_2.4.0.2-1+b1_amd64 + libghc-adjunctions-prof_2.4.0.2-1+b1_amd64 + libghc-aeson-dev_0.6.0.2-1+b4_amd64 + libghc-aeson-prof_0.6.0.2-1+b4_amd64 + libghc-agda-dev_2.3.0.1-2+b1_amd64 + libghc-algebra-dev_2.1.1.2-1+b1_amd64 + libghc-algebra-prof_2.1.1.2-1+b1_amd64 + libghc-alut-dev_2.1.0.2-4+b1_amd64 + libghc-alut-prof_2.1.0.2-4+b1_amd64 + libghc-ami-dev_0.1-1+b5_amd64 + libghc-ami-prof_0.1-1+b5_amd64 + libghc-ansi-terminal-dev_0.5.5-3+b1_amd64 + libghc-ansi-terminal-prof_0.5.5-3+b1_amd64 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_amd64 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_amd64 + libghc-arrows-dev_0.4.4.0-3+b1_amd64 + libghc-arrows-prof_0.4.4.0-3+b1_amd64 + libghc-asn1-data-dev_0.6.1.3-2+b3_amd64 + libghc-asn1-data-prof_0.6.1.3-2+b3_amd64 + libghc-attempt-dev_0.4.0-1+b2_amd64 + libghc-attempt-prof_0.4.0-1+b2_amd64 + libghc-attoparsec-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-attoparsec-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-attoparsec-dev_0.10.1.1-2+b1_amd64 + libghc-attoparsec-enumerator-dev_0.3-3+b3_amd64 + libghc-attoparsec-enumerator-prof_0.3-3+b3_amd64 + libghc-attoparsec-prof_0.10.1.1-2+b1_amd64 + libghc-augeas-dev_0.6.1-1_amd64 + libghc-augeas-prof_0.6.1-1_amd64 + libghc-authenticate-dev_1.2.1.1-2+b1_amd64 + libghc-authenticate-prof_1.2.1.1-2+b1_amd64 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_amd64 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_amd64 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_amd64 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_amd64 + libghc-base64-bytestring-dev_0.1.1.1-2_amd64 + libghc-base64-bytestring-prof_0.1.1.1-2_amd64 + libghc-bifunctors-dev_0.1.3.3-1+b1_amd64 + libghc-bifunctors-prof_0.1.3.3-1+b1_amd64 + libghc-binary-shared-dev_0.8.1-1+b1_amd64 + libghc-binary-shared-prof_0.8.1-1+b1_amd64 + libghc-bindings-dsl-dev_1.0.15-1+b1_amd64 + libghc-bindings-gpgme-dev_0.1.4-1_amd64 + libghc-bindings-gpgme-prof_0.1.4-1_amd64 + libghc-bindings-libzip-dev_0.10-2_amd64 + libghc-bindings-libzip-prof_0.10-2_amd64 + libghc-bitarray-dev_0.0.1-2+b1_amd64 + libghc-bitarray-prof_0.0.1-2+b1_amd64 + libghc-blaze-builder-conduit-dev_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-conduit-prof_0.4.0.2-1+b1_amd64 + libghc-blaze-builder-dev_0.3.1.0-1+b2_amd64 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_amd64 + libghc-blaze-builder-prof_0.3.1.0-1+b2_amd64 + libghc-blaze-html-dev_0.4.3.1-3+b2_amd64 + libghc-blaze-html-prof_0.4.3.1-3+b2_amd64 + libghc-blaze-markup-dev_0.5.1.0-1+b1_amd64 + libghc-blaze-markup-prof_0.5.1.0-1+b1_amd64 + libghc-blaze-textual-dev_0.2.0.6-2+b4_amd64 + libghc-blaze-textual-prof_0.2.0.6-2+b4_amd64 + libghc-bloomfilter-dev_1.2.6.8-1_amd64 + libghc-bloomfilter-prof_1.2.6.8-1_amd64 + libghc-boolean-dev_0.0.1-2+b1_amd64 + libghc-boolean-prof_0.0.1-2+b1_amd64 + libghc-boomerang-dev_1.3.1-1_amd64 + libghc-boomerang-prof_1.3.1-1_amd64 + libghc-brainfuck-dev_0.1-2+b2_amd64 + libghc-brainfuck-prof_0.1-2+b2_amd64 + libghc-byteorder-dev_1.0.3-2+b1_amd64 + libghc-byteorder-prof_1.0.3-2+b1_amd64 + libghc-bytestring-lexing-dev_0.4.0-1+b1_amd64 + libghc-bytestring-lexing-prof_0.4.0-1+b1_amd64 + libghc-bytestring-mmap-dev_0.2.2-2+b1_amd64 + libghc-bytestring-mmap-prof_0.2.2-2+b1_amd64 + libghc-bytestring-nums-dev_0.3.5-2+b1_amd64 + libghc-bytestring-nums-prof_0.3.5-2+b1_amd64 + libghc-bytestring-show-dev_0.3.5.1-1+b1_amd64 + libghc-bytestring-show-prof_0.3.5.1-1+b1_amd64 + libghc-bzlib-dev_0.5.0.3-2+b1_amd64 + libghc-bzlib-prof_0.5.0.3-2+b1_amd64 + libghc-cabal-file-th-dev_0.2.2-1_amd64 + libghc-cabal-file-th-prof_0.2.2-1_amd64 + libghc-cairo-dev_0.12.3-1+b1_amd64 + libghc-cairo-prof_0.12.3-1+b1_amd64 + libghc-case-insensitive-dev_0.4.0.1-2+b2_amd64 + libghc-case-insensitive-prof_0.4.0.1-2+b2_amd64 + libghc-categories-dev_1.0.3-1_amd64 + libghc-categories-prof_1.0.3-1_amd64 + libghc-cautious-file-dev_1.0.1-1_amd64 + libghc-cautious-file-prof_1.0.1-1_amd64 + libghc-cereal-conduit-dev_0.5-1_amd64 + libghc-cereal-conduit-prof_0.5-1_amd64 + libghc-cereal-dev_0.3.5.2-1_amd64 + libghc-cereal-prof_0.3.5.2-1_amd64 + libghc-certificate-dev_1.2.3-2_amd64 + libghc-certificate-prof_1.2.3-2_amd64 + libghc-cgi-dev_3001.1.8.2-2+b3_amd64 + libghc-cgi-prof_3001.1.8.2-2+b3_amd64 + libghc-chart-dev_0.15-1+b2_amd64 + libghc-chart-prof_0.15-1+b2_amd64 + libghc-chell-dev_0.3-1_amd64 + libghc-chell-prof_0.3-1_amd64 + libghc-citeproc-hs-dev_0.3.4-1+b4_amd64 + libghc-citeproc-hs-prof_0.3.4-1+b4_amd64 + libghc-clientsession-dev_0.7.5-3+b2_amd64 + libghc-clientsession-prof_0.7.5-3+b2_amd64 + libghc-clock-dev_0.2.0.0-2+b1_amd64 + libghc-clock-prof_0.2.0.0-2+b1_amd64 + libghc-cmdargs-dev_0.9.5-1+b1_amd64 + libghc-cmdargs-prof_0.9.5-1+b1_amd64 + libghc-colour-dev_2.3.3-1+b1_amd64 + libghc-colour-prof_2.3.3-1+b1_amd64 + libghc-comonad-dev_1.1.1.5-1+b1_amd64 + libghc-comonad-prof_1.1.1.5-1+b1_amd64 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_amd64 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_amd64 + libghc-comonads-fd-dev_2.1.1.2-1+b1_amd64 + libghc-comonads-fd-prof_2.1.1.2-1+b1_amd64 + libghc-conduit-dev_0.4.2-2+b2_amd64 + libghc-conduit-prof_0.4.2-2+b2_amd64 + libghc-configfile-dev_1.0.6-4+b3_amd64 + libghc-configfile-prof_1.0.6-4+b3_amd64 + libghc-configurator-dev_0.2.0.0-1+b2_amd64 + libghc-configurator-prof_0.2.0.0-1+b2_amd64 + libghc-contravariant-dev_0.2.0.2-1+b1_amd64 + libghc-contravariant-prof_0.2.0.2-1+b1_amd64 + libghc-convertible-dev_1.0.11.0-3+b3_amd64 + libghc-convertible-prof_1.0.11.0-3+b3_amd64 + libghc-cookie-dev_0.4.0-1+b3_amd64 + libghc-cookie-prof_0.4.0-1+b3_amd64 + libghc-cpphs-dev_1.13.3-2+b1_amd64 + libghc-cpphs-prof_1.13.3-2+b1_amd64 + libghc-cprng-aes-dev_0.2.3-3+b4_amd64 + libghc-cprng-aes-prof_0.2.3-3+b4_amd64 + libghc-cpu-dev_0.1.1-1_amd64 + libghc-cpu-prof_0.1.1-1_amd64 + libghc-criterion-dev_0.6.0.1-3+b4_amd64 + libghc-criterion-prof_0.6.0.1-3+b4_amd64 + libghc-crypto-api-dev_0.10.2-1+b2_amd64 + libghc-crypto-api-prof_0.10.2-1+b2_amd64 + libghc-crypto-conduit-dev_0.3.2-1+b2_amd64 + libghc-crypto-conduit-prof_0.3.2-1+b2_amd64 + libghc-crypto-dev_4.2.4-1+b1_amd64 + libghc-crypto-prof_4.2.4-1+b1_amd64 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_amd64 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_amd64 + libghc-cryptocipher-dev_0.3.5-1+b1_amd64 + libghc-cryptocipher-prof_0.3.5-1+b1_amd64 + libghc-cryptohash-dev_0.7.5-1+b2_amd64 + libghc-cryptohash-prof_0.7.5-1+b2_amd64 + libghc-css-text-dev_0.1.1-3+b2_amd64 + libghc-css-text-prof_0.1.1-3+b2_amd64 + libghc-csv-conduit-dev_0.2-1+b1_amd64 + libghc-csv-conduit-prof_0.2-1+b1_amd64 + libghc-csv-dev_0.1.2-2+b3_amd64 + libghc-csv-prof_0.1.2-2+b3_amd64 + libghc-curl-dev_1.3.7-1+b1_amd64 + libghc-curl-prof_1.3.7-1+b1_amd64 + libghc-darcs-dev_2.8.1-1+b1_amd64 + libghc-darcs-prof_2.8.1-1+b1_amd64 + libghc-data-accessor-dev_0.2.2.2-1+b1_amd64 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_amd64 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_amd64 + libghc-data-accessor-prof_0.2.2.2-1+b1_amd64 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_amd64 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_amd64 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_amd64 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_amd64 + libghc-data-default-dev_0.4.0-1_amd64 + libghc-data-default-prof_0.4.0-1_amd64 + libghc-data-inttrie-dev_0.0.7-1+b1_amd64 + libghc-data-inttrie-prof_0.0.7-1+b1_amd64 + libghc-data-lens-dev_2.10.0-1+b1_amd64 + libghc-data-lens-prof_2.10.0-1+b1_amd64 + libghc-data-memocombinators-dev_0.4.3-1+b1_amd64 + libghc-data-memocombinators-prof_0.4.3-1+b1_amd64 + libghc-dataenc-dev_0.14.0.3-1+b1_amd64 + libghc-dataenc-prof_0.14.0.3-1+b1_amd64 + libghc-datetime-dev_0.2.1-3_amd64 + libghc-datetime-prof_0.2.1-3_amd64 + libghc-dbus-dev_0.10.3-1_amd64 + libghc-dbus-prof_0.10.3-1_amd64 + libghc-debian-dev_3.64-3+b1_amd64 + libghc-debian-prof_3.64-3+b1_amd64 + libghc-diagrams-cairo-dev_0.5.0.2-1+b1_amd64 + libghc-diagrams-cairo-prof_0.5.0.2-1+b1_amd64 + libghc-diagrams-core-dev_0.5.0.1-1+b1_amd64 + libghc-diagrams-core-prof_0.5.0.1-1+b1_amd64 + libghc-diagrams-lib-dev_0.5-2_amd64 + libghc-diagrams-lib-prof_0.5-2_amd64 + libghc-diff-dev_0.1.3-1+b1_amd64 + libghc-diff-prof_0.1.3-1+b1_amd64 + libghc-digest-dev_0.0.1.0-1+b1_amd64 + libghc-digest-prof_0.0.1.0-1+b1_amd64 + libghc-dimensional-dev_0.10.1.2-2+b1_amd64 + libghc-dimensional-prof_0.10.1.2-2+b1_amd64 + libghc-directory-tree-dev_0.10.0-2+b1_amd64 + libghc-directory-tree-prof_0.10.0-2+b1_amd64 + libghc-distributive-dev_0.2.2-1+b1_amd64 + libghc-distributive-prof_0.2.2-1+b1_amd64 + libghc-dlist-dev_0.5-3+b1_amd64 + libghc-dlist-prof_0.5-3+b1_amd64 + libghc-download-curl-dev_0.1.3-3+b3_amd64 + libghc-download-curl-prof_0.1.3-3+b3_amd64 + libghc-dpkg-dev_0.0.3-1_amd64 + libghc-dpkg-prof_0.0.3-1_amd64 + libghc-dyre-dev_0.8.7-1_amd64 + libghc-dyre-prof_0.8.7-1_amd64 + libghc-edison-api-dev_1.2.1-18+b1_amd64 + libghc-edison-api-prof_1.2.1-18+b1_amd64 + libghc-edison-core-dev_1.2.1.3-9+b1_amd64 + libghc-edison-core-prof_1.2.1.3-9+b1_amd64 + libghc-edit-distance-dev_0.2.1-2_amd64 + libghc-edit-distance-prof_0.2.1-2_amd64 + libghc-editline-dev_0.2.1.0-5+b1_amd64 + libghc-ekg-dev_0.3.1.0-1+b3_amd64 + libghc-ekg-prof_0.3.1.0-1+b3_amd64 + libghc-email-validate-dev_0.2.8-1+b3_amd64 + libghc-email-validate-prof_0.2.8-1+b3_amd64 + libghc-entropy-dev_0.2.1-2+b1_amd64 + libghc-entropy-prof_0.2.1-2+b1_amd64 + libghc-enumerator-dev_0.4.19-1+b1_amd64 + libghc-enumerator-prof_0.4.19-1+b1_amd64 + libghc-erf-dev_2.0.0.0-2+b1_amd64 + libghc-erf-prof_2.0.0.0-2+b1_amd64 + libghc-event-list-dev_0.1.0.1-1+b1_amd64 + libghc-event-list-prof_0.1.0.1-1+b1_amd64 + libghc-exception-transformers-dev_0.3.0.2-1+b1_amd64 + libghc-exception-transformers-prof_0.3.0.2-1+b1_amd64 + libghc-executable-path-dev_0.0.3-1+b1_amd64 + libghc-executable-path-prof_0.0.3-1+b1_amd64 + libghc-explicit-exception-dev_0.1.7-1+b1_amd64 + libghc-explicit-exception-prof_0.1.7-1+b1_amd64 + libghc-failure-dev_0.2.0.1-1+b1_amd64 + libghc-failure-prof_0.2.0.1-1+b1_amd64 + libghc-fast-logger-dev_0.0.2-1+b2_amd64 + libghc-fast-logger-prof_0.0.2-1+b2_amd64 + libghc-fastcgi-dev_3001.0.2.3-3+b3_amd64 + libghc-fastcgi-prof_3001.0.2.3-3+b3_amd64 + libghc-fclabels-dev_1.1.3-1+b1_amd64 + libghc-fclabels-prof_1.1.3-1+b1_amd64 + libghc-feed-dev_0.3.8-3_amd64 + libghc-feed-prof_0.3.8-3_amd64 + libghc-fgl-dev_5.4.2.4-2+b2_amd64 + libghc-fgl-prof_5.4.2.4-2+b2_amd64 + libghc-file-embed-dev_0.0.4.4-1_amd64 + libghc-file-embed-prof_0.0.4.4-1_amd64 + libghc-filemanip-dev_0.3.5.2-2+b2_amd64 + libghc-filemanip-prof_0.3.5.2-2+b2_amd64 + libghc-filestore-dev_0.5-1_amd64 + libghc-filestore-prof_0.5-1_amd64 + libghc-filesystem-conduit-dev_0.4.0-1_amd64 + libghc-filesystem-conduit-prof_0.4.0-1_amd64 + libghc-free-dev_2.1.1.1-1+b1_amd64 + libghc-free-prof_2.1.1.1-1+b1_amd64 + libghc-ftphs-dev_1.0.8-1+b3_amd64 + libghc-ftphs-prof_1.0.8-1+b3_amd64 + libghc-gconf-dev_0.12.1-1+b1_amd64 + libghc-gconf-prof_0.12.1-1+b1_amd64 + libghc-gd-dev_3000.7.3-1_amd64 + libghc-gd-prof_3000.7.3-1_amd64 + libghc-ghc-events-dev_0.4.0.0-2+b1_amd64 + libghc-ghc-events-prof_0.4.0.0-2+b1_amd64 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_amd64 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_amd64 + libghc-ghc-paths-dev_0.1.0.8-2+b1_amd64 + libghc-ghc-paths-prof_0.1.0.8-2+b1_amd64 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_amd64 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_amd64 + libghc-gio-dev_0.12.3-1+b1_amd64 + libghc-gio-prof_0.12.3-1+b1_amd64 + libghc-github-dev_0.4.0-2_amd64 + libghc-github-prof_0.4.0-2_amd64 + libghc-gitit-dev_0.10.0.1-1+b1_amd64 + libghc-gitit-prof_0.10.0.1-1+b1_amd64 + libghc-glade-dev_0.12.1-1+b3_amd64 + libghc-glade-prof_0.12.1-1+b3_amd64 + libghc-glfw-dev_0.5.0.1-1+b1_amd64 + libghc-glfw-prof_0.5.0.1-1+b1_amd64 + libghc-glib-dev_0.12.2-1+b1_amd64 + libghc-glib-prof_0.12.2-1+b1_amd64 + libghc-glut-dev_2.1.2.2-1_amd64 + libghc-glut-prof_2.1.2.2-1_amd64 + libghc-gnuidn-dev_0.2-2+b2_amd64 + libghc-gnuidn-prof_0.2-2+b2_amd64 + libghc-gnutls-dev_0.1.2-1+b1_amd64 + libghc-gnutls-prof_0.1.2-1+b1_amd64 + libghc-gsasl-dev_0.3.4-1+b1_amd64 + libghc-gsasl-prof_0.3.4-1+b1_amd64 + libghc-gstreamer-dev_0.12.1-1+b2_amd64 + libghc-gstreamer-prof_0.12.1-1+b2_amd64 + libghc-gtk-dev_0.12.3-1+b2_amd64 + libghc-gtk-prof_0.12.3-1+b2_amd64 + libghc-gtkglext-dev_0.12.1-1+b3_amd64 + libghc-gtkglext-prof_0.12.1-1+b3_amd64 + libghc-gtksourceview2-dev_0.12.3-1+b3_amd64 + libghc-gtksourceview2-prof_0.12.3-1+b3_amd64 + libghc-haddock-dev_2.10.0-1+b2_amd64 + libghc-haddock-prof_2.10.0-1+b2_amd64 + libghc-hakyll-dev_3.2.7.2-1+b6_amd64 + libghc-hakyll-prof_3.2.7.2-1+b6_amd64 + libghc-hamlet-dev_1.0.1.3-1+b1_amd64 + libghc-hamlet-prof_1.0.1.3-1+b1_amd64 + libghc-happstack-dev_7.0.0-1+b1_amd64 + libghc-happstack-prof_7.0.0-1+b1_amd64 + libghc-happstack-server-dev_7.0.1-1+b1_amd64 + libghc-happstack-server-prof_7.0.1-1+b1_amd64 + libghc-harp-dev_0.4-3+b1_amd64 + libghc-harp-prof_0.4-3+b1_amd64 + libghc-hashable-dev_1.1.2.3-1+b2_amd64 + libghc-hashable-prof_1.1.2.3-1+b2_amd64 + libghc-hashed-storage-dev_0.5.9-2+b2_amd64 + libghc-hashed-storage-prof_0.5.9-2+b2_amd64 + libghc-hashmap-dev_1.3.0.1-1+b2_amd64 + libghc-hashmap-prof_1.3.0.1-1+b2_amd64 + libghc-hashtables-dev_1.0.1.4-1+b1_amd64 + libghc-hashtables-prof_1.0.1.4-1+b1_amd64 + libghc-haskeline-dev_0.6.4.7-1+b1_amd64 + libghc-haskeline-prof_0.6.4.7-1+b1_amd64 + libghc-haskell-lexer-dev_1.0-3+b1_amd64 + libghc-haskell-lexer-prof_1.0-3+b1_amd64 + libghc-haskell-src-dev_1.0.1.5-1+b2_amd64 + libghc-haskell-src-prof_1.0.1.5-1+b2_amd64 + libghc-haskelldb-dev_2.1.1-5+b1_amd64 + libghc-haskelldb-hdbc-dev_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_amd64 + libghc-haskelldb-hdbc-prof_2.1.0-4+b1_amd64 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_amd64 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_amd64 + libghc-haskelldb-prof_2.1.1-5+b1_amd64 + libghc-haskore-dev_0.2.0.3-2+b1_amd64 + libghc-haskore-prof_0.2.0.3-2+b1_amd64 + libghc-hastache-dev_0.3.3-2+b3_amd64 + libghc-hastache-prof_0.3.3-2+b3_amd64 + libghc-haxml-dev_1:1.22.5-2+b2_amd64 + libghc-haxml-prof_1:1.22.5-2+b2_amd64 + libghc-haxr-dev_3000.8.5-1+b3_amd64 + libghc-haxr-prof_3000.8.5-1+b3_amd64 + libghc-hcard-dev_0.0-2+b2_amd64 + libghc-hcard-prof_0.0-2+b2_amd64 + libghc-hcwiid-dev_0.0.1-3+b1_amd64 + libghc-hcwiid-prof_0.0.1-3+b1_amd64 + libghc-hdbc-dev_2.3.1.1-1+b3_amd64 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_amd64 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_amd64 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_amd64 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_amd64 + libghc-hdbc-prof_2.3.1.1-1+b3_amd64 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_amd64 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_amd64 + libghc-hfuse-dev_0.2.4.1-1_amd64 + libghc-hfuse-prof_0.2.4.1-1_amd64 + libghc-highlighting-kate-dev_0.5.1-1_amd64 + libghc-highlighting-kate-prof_0.5.1-1_amd64 + libghc-hinotify-dev_0.3.2-1+b1_amd64 + libghc-hinotify-prof_0.3.2-1+b1_amd64 + libghc-hint-dev_0.3.3.4-2+b4_amd64 + libghc-hint-prof_0.3.3.4-2+b4_amd64 + libghc-hipmunk-dev_5.2.0.8-1+b1_amd64 + libghc-hipmunk-prof_5.2.0.8-1+b1_amd64 + libghc-hjavascript-dev_0.4.7-3+b1_amd64 + libghc-hjavascript-prof_0.4.7-3+b1_amd64 + libghc-hjscript-dev_0.5.0-3+b2_amd64 + libghc-hjscript-prof_0.5.0-3+b2_amd64 + libghc-hjsmin-dev_0.1.1-1+b2_amd64 + libghc-hjsmin-prof_0.1.1-1+b2_amd64 + libghc-hlint-dev_1.8.28-1+b3_amd64 + libghc-hlint-prof_1.8.28-1+b3_amd64 + libghc-hoauth-dev_0.3.4-1+b1_amd64 + libghc-hoauth-prof_0.3.4-1+b1_amd64 + libghc-hostname-dev_1.0-4+b1_amd64 + libghc-hostname-prof_1.0-4+b1_amd64 + libghc-hs-bibutils-dev_4.12-5+b2_amd64 + libghc-hs-bibutils-prof_4.12-5+b2_amd64 + libghc-hs3-dev_0.5.6-2+b4_amd64 + libghc-hs3-prof_0.5.6-2+b4_amd64 + libghc-hscolour-dev_1.19-3+b1_amd64 + libghc-hscolour-prof_1.19-3+b1_amd64 + libghc-hscurses-dev_1.4.1.0-1+b2_amd64 + libghc-hscurses-prof_1.4.1.0-1+b2_amd64 + libghc-hsemail-dev_1.7.1-2+b3_amd64 + libghc-hsemail-prof_1.7.1-2+b3_amd64 + libghc-hsh-dev_2.0.3-6+b3_amd64 + libghc-hsh-doc_2.0.3-6+b3_amd64 + libghc-hsh-prof_2.0.3-6+b3_amd64 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_amd64 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_amd64 + libghc-hsp-dev_0.6.1-2+b3_amd64 + libghc-hsp-prof_0.6.1-2+b3_amd64 + libghc-hspec-dev_1.1.0-1+b1_amd64 + libghc-hspec-prof_1.1.0-1+b1_amd64 + libghc-hsql-dev_1.8.1-4_amd64 + libghc-hsql-mysql-dev_1.8.1-4+b1_amd64 + libghc-hsql-mysql-prof_1.8.1-4+b1_amd64 + libghc-hsql-odbc-dev_1.8.1.1-2_amd64 + libghc-hsql-odbc-prof_1.8.1.1-2_amd64 + libghc-hsql-postgresql-dev_1.8.1-3_amd64 + libghc-hsql-postgresql-prof_1.8.1-3_amd64 + libghc-hsql-prof_1.8.1-4_amd64 + libghc-hsql-sqlite3-dev_1.8.1-2_amd64 + libghc-hsql-sqlite3-prof_1.8.1-2_amd64 + libghc-hssyck-dev_0.50-2+b2_amd64 + libghc-hssyck-prof_0.50-2+b2_amd64 + libghc-hstringtemplate-dev_0.6.8-1_amd64 + libghc-hstringtemplate-prof_0.6.8-1_amd64 + libghc-hsx-dev_0.9.1-3_amd64 + libghc-hsx-prof_0.9.1-3_amd64 + libghc-html-conduit-dev_0.0.1-2+b1_amd64 + libghc-html-conduit-prof_0.0.1-2+b1_amd64 + libghc-html-dev_1.0.1.2-5+b1_amd64 + libghc-html-prof_1.0.1.2-5+b1_amd64 + libghc-http-conduit-dev_1.4.1.6-3_amd64 + libghc-http-conduit-prof_1.4.1.6-3_amd64 + libghc-http-date-dev_0.0.2-1+b2_amd64 + libghc-http-date-prof_0.0.2-1+b2_amd64 + libghc-http-dev_1:4000.2.3-1+b2_amd64 + libghc-http-prof_1:4000.2.3-1+b2_amd64 + libghc-http-types-dev_0.6.11-1_amd64 + libghc-http-types-prof_0.6.11-1_amd64 + libghc-hunit-dev_1.2.4.2-2+b1_amd64 + libghc-hunit-prof_1.2.4.2-2+b1_amd64 + libghc-hxt-cache-dev_9.0.2-2+b4_amd64 + libghc-hxt-cache-prof_9.0.2-2+b4_amd64 + libghc-hxt-charproperties-dev_9.1.1-2+b1_amd64 + libghc-hxt-charproperties-prof_9.1.1-2+b1_amd64 + libghc-hxt-curl-dev_9.1.1-1+b3_amd64 + libghc-hxt-curl-prof_9.1.1-1+b3_amd64 + libghc-hxt-dev_9.2.2-2+b3_amd64 + libghc-hxt-http-dev_9.1.4-2+b3_amd64 + libghc-hxt-http-prof_9.1.4-2+b3_amd64 + libghc-hxt-prof_9.2.2-2+b3_amd64 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_amd64 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_amd64 + libghc-hxt-relaxng-dev_9.1.4-1+b3_amd64 + libghc-hxt-relaxng-prof_9.1.4-1+b3_amd64 + libghc-hxt-tagsoup-dev_9.1.1-1+b3_amd64 + libghc-hxt-tagsoup-prof_9.1.1-1+b3_amd64 + libghc-hxt-unicode-dev_9.0.2-2+b1_amd64 + libghc-hxt-unicode-prof_9.0.2-2+b1_amd64 + libghc-hxt-xpath-dev_9.1.2-1+b3_amd64 + libghc-hxt-xpath-prof_9.1.2-1+b3_amd64 + libghc-hxt-xslt-dev_9.1.1-1+b3_amd64 + libghc-hxt-xslt-prof_9.1.1-1+b3_amd64 + libghc-iconv-dev_0.4.1.0-2+b1_amd64 + libghc-iconv-prof_0.4.1.0-2+b1_amd64 + libghc-ieee754-dev_0.7.3-1+b1_amd64 + libghc-ieee754-prof_0.7.3-1+b1_amd64 + libghc-ifelse-dev_0.85-4+b1_amd64 + libghc-ifelse-prof_0.85-4+b1_amd64 + libghc-io-choice-dev_0.0.1-1+b3_amd64 + libghc-io-choice-prof_0.0.1-1+b3_amd64 + libghc-io-storage-dev_0.3-2+b1_amd64 + libghc-io-storage-prof_0.3-2+b1_amd64 + libghc-iospec-dev_0.2.5-1+b2_amd64 + libghc-iospec-prof_0.2.5-1+b2_amd64 + libghc-irc-dev_0.5.0.0-1+b3_amd64 + libghc-iteratee-dev_0.8.8.2-2+b1_amd64 + libghc-iteratee-prof_0.8.8.2-2+b1_amd64 + libghc-ixset-dev_1.0.3-2+b1_amd64 + libghc-ixset-prof_1.0.3-2+b1_amd64 + libghc-json-dev_0.5-2+b2_amd64 + libghc-json-prof_0.5-2+b2_amd64 + libghc-keys-dev_2.1.3.2-1+b1_amd64 + libghc-keys-prof_2.1.3.2-1+b1_amd64 + libghc-knob-dev_0.1.1-1+b1_amd64 + libghc-knob-prof_0.1.1-1+b1_amd64 + libghc-lambdabot-utils-dev_4.2.1-3+b3_amd64 + libghc-lambdabot-utils-prof_4.2.1-3+b3_amd64 + libghc-language-c-dev_0.4.2-2+b2_amd64 + libghc-language-c-prof_0.4.2-2+b2_amd64 + libghc-language-haskell-extract-dev_0.2.1-4+b1_amd64 + libghc-language-haskell-extract-prof_0.2.1-4+b1_amd64 + libghc-language-javascript-dev_0.5.4-1+b2_amd64 + libghc-language-javascript-prof_0.5.4-1+b2_amd64 + libghc-largeword-dev_1.0.1-2+b1_amd64 + libghc-largeword-prof_1.0.1-2+b1_amd64 + libghc-lazysmallcheck-dev_0.6-1+b1_amd64 + libghc-lazysmallcheck-prof_0.6-1+b1_amd64 + libghc-ldap-dev_0.6.6-4.1+b1_amd64 + libghc-ldap-prof_0.6.6-4.1+b1_amd64 + libghc-leksah-server-dev_0.12.0.4-3_amd64 + libghc-libtagc-dev_0.12.0-2+b1_amd64 + libghc-libtagc-prof_0.12.0-2+b1_amd64 + libghc-libxml-sax-dev_0.7.2-2+b1_amd64 + libghc-libxml-sax-prof_0.7.2-2+b1_amd64 + libghc-libzip-dev_0.10-1+b2_amd64 + libghc-libzip-prof_0.10-1+b2_amd64 + libghc-lifted-base-dev_0.1.1-1+b1_amd64 + libghc-lifted-base-prof_0.1.1-1+b1_amd64 + libghc-listlike-dev_3.1.4-1+b1_amd64 + libghc-listlike-prof_3.1.4-1+b1_amd64 + libghc-llvm-base-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-base-prof_3.0.1.0-1+b1_amd64 + libghc-llvm-dev_3.0.1.0-1+b1_amd64 + libghc-llvm-prof_3.0.1.0-1+b1_amd64 + libghc-logict-dev_0.5.0.1-1+b1_amd64 + libghc-logict-prof_0.5.0.1-1+b1_amd64 + libghc-ltk-dev_0.12.0.0-2+b1_amd64 + libghc-maccatcher-dev_2.1.5-2+b3_amd64 + libghc-maccatcher-prof_2.1.5-2+b3_amd64 + libghc-magic-dev_1.0.8-8+b1_amd64 + libghc-magic-prof_1.0.8-8+b1_amd64 + libghc-markov-chain-dev_0.0.3.2-1+b1_amd64 + libghc-markov-chain-prof_0.0.3.2-1+b1_amd64 + libghc-math-functions-dev_0.1.1.0-2+b2_amd64 + libghc-math-functions-prof_0.1.1.0-2+b2_amd64 + libghc-maths-dev_0.4.3-1+b1_amd64 + libghc-maths-prof_0.4.3-1+b1_amd64 + libghc-maybet-dev_0.1.2-3+b2_amd64 + libghc-maybet-prof_0.1.2-3+b2_amd64 + libghc-mbox-dev_0.1-2+b1_amd64 + libghc-mbox-prof_0.1-2+b1_amd64 + libghc-memotrie-dev_0.5-1_amd64 + libghc-memotrie-prof_0.5-1_amd64 + libghc-mersenne-random-dev_1.0.0.1-2+b1_amd64 + libghc-mersenne-random-prof_1.0.0.1-2+b1_amd64 + libghc-midi-dev_0.2.0.1-1+b1_amd64 + libghc-midi-prof_0.2.0.1-1+b1_amd64 + libghc-mime-mail-dev_0.4.1.1-2+b3_amd64 + libghc-mime-mail-prof_0.4.1.1-2+b3_amd64 + libghc-missingh-dev_1.1.0.3-6+b3_amd64 + libghc-missingh-prof_1.1.0.3-6+b3_amd64 + libghc-mmap-dev_0.5.7-2+b1_amd64 + libghc-mmap-prof_0.5.7-2+b1_amd64 + libghc-monad-control-dev_0.3.1.3-1+b1_amd64 + libghc-monad-control-prof_0.3.1.3-1+b1_amd64 + libghc-monad-loops-dev_0.3.2.0-1_amd64 + libghc-monad-loops-prof_0.3.2.0-1_amd64 + libghc-monad-par-dev_0.1.0.3-2+b1_amd64 + libghc-monad-par-prof_0.1.0.3-2+b1_amd64 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_amd64 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_amd64 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_amd64 + libghc-monadcryptorandom-dev_0.4.1-1+b2_amd64 + libghc-monadcryptorandom-prof_0.4.1-1+b2_amd64 + libghc-monadrandom-dev_0.1.6-2+b2_amd64 + libghc-monadrandom-prof_0.1.6-2+b2_amd64 + libghc-monads-tf-dev_0.1.0.0-1+b2_amd64 + libghc-monads-tf-prof_0.1.0.0-1+b2_amd64 + libghc-monoid-transformer-dev_0.0.2-3+b1_amd64 + libghc-monoid-transformer-prof_0.0.2-3+b1_amd64 + libghc-mtl-dev_2.1.1-1_amd64 + libghc-mtl-prof_2.1.1-1_amd64 + libghc-mtlparse-dev_0.1.2-2+b2_amd64 + libghc-mtlparse-prof_0.1.2-2+b2_amd64 + libghc-murmur-hash-dev_0.1.0.5-2+b1_amd64 + libghc-murmur-hash-prof_0.1.0.5-2+b1_amd64 + libghc-mwc-random-dev_0.11.0.0-4+b1_amd64 + libghc-mwc-random-prof_0.11.0.0-4+b1_amd64 + libghc-ncurses-dev_0.2.1-1+b1_amd64 + libghc-ncurses-prof_0.2.1-1+b1_amd64 + libghc-netwire-dev_3.1.0-2+b4_amd64 + libghc-netwire-prof_3.1.0-2+b4_amd64 + libghc-network-conduit-dev_0.4.0.1-2_amd64 + libghc-network-conduit-prof_0.4.0.1-2_amd64 + libghc-network-dev_2.3.0.13-1+b2_amd64 + libghc-network-prof_2.3.0.13-1+b2_amd64 + libghc-network-protocol-xmpp-dev_0.4.3-1_amd64 + libghc-network-protocol-xmpp-prof_0.4.3-1_amd64 + libghc-newtype-dev_0.2-1_amd64 + libghc-newtype-prof_0.2-1_amd64 + libghc-non-negative-dev_0.1-2+b1_amd64 + libghc-non-negative-prof_0.1-2+b1_amd64 + libghc-numbers-dev_2009.8.9-2+b1_amd64 + libghc-numbers-prof_2009.8.9-2+b1_amd64 + libghc-numeric-quest-dev_0.2-1+b1_amd64 + libghc-numeric-quest-prof_0.2-1+b1_amd64 + libghc-numinstances-dev_1.0-2+b1_amd64 + libghc-numinstances-prof_1.0-2+b1_amd64 + libghc-numtype-dev_1.0-2+b1_amd64 + libghc-numtype-prof_1.0-2+b1_amd64 + libghc-oeis-dev_0.3.1-2+b3_amd64 + libghc-oeis-prof_0.3.1-2+b3_amd64 + libghc-openal-dev_1.3.1.3-4+b1_amd64 + libghc-openal-prof_1.3.1.3-4+b1_amd64 + libghc-opengl-dev_2.2.3.1-1+b1_amd64 + libghc-opengl-prof_2.2.3.1-1+b1_amd64 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_amd64 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_amd64 + libghc-options-dev_0.1.1-1_amd64 + libghc-options-prof_0.1.1-1_amd64 + libghc-pandoc-dev_1.9.4.2-2_amd64 + libghc-pandoc-prof_1.9.4.2-2_amd64 + libghc-pandoc-types-dev_1.9.1-1+b2_amd64 + libghc-pandoc-types-prof_1.9.1-1+b2_amd64 + libghc-pango-dev_0.12.2-1+b3_amd64 + libghc-pango-prof_0.12.2-1+b3_amd64 + libghc-parallel-dev_3.2.0.2-2+b1_amd64 + libghc-parallel-prof_3.2.0.2-2+b1_amd64 + libghc-parseargs-dev_0.1.3.2-2+b1_amd64 + libghc-parseargs-prof_0.1.3.2-2+b1_amd64 + libghc-parsec2-dev_2.1.0.1-6+b1_amd64 + libghc-parsec2-prof_2.1.0.1-6+b1_amd64 + libghc-parsec3-dev_3.1.2-1+b3_amd64 + libghc-parsec3-prof_3.1.2-1+b3_amd64 + libghc-pastis-dev_0.1.2-2+b3_amd64 + libghc-pastis-prof_0.1.2-2+b3_amd64 + libghc-path-pieces-dev_0.1.0-1+b2_amd64 + libghc-path-pieces-prof_0.1.0-1+b2_amd64 + libghc-patience-dev_0.1.1-1_amd64 + libghc-patience-prof_0.1.1-1_amd64 + libghc-pcre-light-dev_0.4-3+b1_amd64 + libghc-pcre-light-prof_0.4-3+b1_amd64 + libghc-pem-dev_0.1.1-1+b3_amd64 + libghc-pem-prof_0.1.1-1+b3_amd64 + libghc-persistent-dev_0.9.0.4-2+b1_amd64 + libghc-persistent-prof_0.9.0.4-2+b1_amd64 + libghc-persistent-sqlite-dev_0.9.0.2-2_amd64 + libghc-persistent-sqlite-prof_0.9.0.2-2_amd64 + libghc-persistent-template-dev_0.9.0.2-1+b1_amd64 + libghc-persistent-template-prof_0.9.0.2-1+b1_amd64 + libghc-polyparse-dev_1.7-1+b2_amd64 + libghc-polyparse-prof_1.7-1+b2_amd64 + libghc-pool-conduit-dev_0.1.0.2-1+b1_amd64 + libghc-pool-conduit-prof_0.1.0.2-1+b1_amd64 + libghc-postgresql-libpq-dev_0.8.2-1_amd64 + libghc-postgresql-libpq-prof_0.8.2-1_amd64 + libghc-postgresql-simple-dev_0.1.4.3-1+b1_amd64 + libghc-postgresql-simple-prof_0.1.4.3-1+b1_amd64 + libghc-pretty-show-dev_1.1.1-4+b1_amd64 + libghc-pretty-show-prof_1.1.1-4+b1_amd64 + libghc-primes-dev_0.2.1.0-2+b1_amd64 + libghc-primes-prof_0.2.1.0-2+b1_amd64 + libghc-primitive-dev_0.4.1-1+b1_amd64 + libghc-primitive-prof_0.4.1-1+b1_amd64 + libghc-psqueue-dev_1.1-2+b1_amd64 + libghc-psqueue-prof_1.1-2+b1_amd64 + libghc-puremd5-dev_2.1.0.3-2+b4_amd64 + libghc-puremd5-prof_2.1.0.3-2+b4_amd64 + libghc-pwstore-fast-dev_2.2-2+b4_amd64 + libghc-pwstore-fast-prof_2.2-2+b4_amd64 + libghc-quickcheck1-dev_1.2.0.1-2+b1_amd64 + libghc-quickcheck1-prof_1.2.0.1-2+b1_amd64 + libghc-quickcheck2-dev_2.4.2-1+b1_amd64 + libghc-quickcheck2-prof_2.4.2-1+b1_amd64 + libghc-random-dev_1.0.1.1-1+b1_amd64 + libghc-random-prof_1.0.1.1-1+b1_amd64 + libghc-random-shuffle-dev_0.0.3-2+b2_amd64 + libghc-random-shuffle-prof_0.0.3-2+b2_amd64 + libghc-ranged-sets-dev_0.3.0-2+b1_amd64 + libghc-ranged-sets-prof_0.3.0-2+b1_amd64 + libghc-ranges-dev_0.2.4-2+b1_amd64 + libghc-ranges-prof_0.2.4-2+b1_amd64 + libghc-reactive-banana-dev_0.6.0.0-1+b3_amd64 + libghc-reactive-banana-prof_0.6.0.0-1+b3_amd64 + libghc-readline-dev_1.0.1.0-3+b1_amd64 + libghc-readline-prof_1.0.1.0-3+b1_amd64 + libghc-recaptcha-dev_0.1-4+b3_amd64 + libghc-recaptcha-prof_0.1-4+b3_amd64 + libghc-regex-base-dev_0.93.2-2+b2_amd64 + libghc-regex-base-prof_0.93.2-2+b2_amd64 + libghc-regex-compat-dev_0.95.1-2+b1_amd64 + libghc-regex-compat-prof_0.95.1-2+b1_amd64 + libghc-regex-pcre-dev_0.94.2-2+b1_amd64 + libghc-regex-pcre-prof_0.94.2-2+b1_amd64 + libghc-regex-posix-dev_0.95.1-2+b1_amd64 + libghc-regex-posix-prof_0.95.1-2+b1_amd64 + libghc-regex-tdfa-dev_1.1.8-2+b1_amd64 + libghc-regex-tdfa-prof_1.1.8-2+b1_amd64 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_amd64 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_amd64 + libghc-regexpr-dev_0.5.4-2+b2_amd64 + libghc-regexpr-prof_0.5.4-2+b2_amd64 + libghc-representable-functors-dev_2.4.0.2-1+b1_amd64 + libghc-representable-functors-prof_2.4.0.2-1+b1_amd64 + libghc-representable-tries-dev_2.4.0.2-1+b1_amd64 + libghc-representable-tries-prof_2.4.0.2-1+b1_amd64 + libghc-resource-pool-dev_0.2.1.0-2+b4_amd64 + libghc-resource-pool-prof_0.2.1.0-2+b4_amd64 + libghc-resourcet-dev_0.3.2.1-1+b1_amd64 + libghc-resourcet-prof_0.3.2.1-1+b1_amd64 + libghc-rsa-dev_1.2.1.0-1+b2_amd64 + libghc-rsa-prof_1.2.1.0-1+b2_amd64 + libghc-safe-dev_0.3.3-1+b1_amd64 + libghc-safe-prof_0.3.3-1+b1_amd64 + libghc-safecopy-dev_0.6.1-1+b1_amd64 + libghc-safecopy-prof_0.6.1-1+b1_amd64 + libghc-sdl-dev_0.6.3-1+b1_amd64 + libghc-sdl-gfx-dev_0.6.0-3+b1_amd64 + libghc-sdl-gfx-prof_0.6.0-3+b1_amd64 + libghc-sdl-image-dev_0.6.1-3+b1_amd64 + libghc-sdl-image-prof_0.6.1-3+b1_amd64 + libghc-sdl-mixer-dev_0.6.1-3+b1_amd64 + libghc-sdl-mixer-prof_0.6.1-3+b1_amd64 + libghc-sdl-prof_0.6.3-1+b1_amd64 + libghc-sdl-ttf-dev_0.6.1-3+b1_amd64 + libghc-sdl-ttf-prof_0.6.1-3+b1_amd64 + libghc-semigroupoids-dev_1.3.1.2-1+b1_amd64 + libghc-semigroupoids-prof_1.3.1.2-1+b1_amd64 + libghc-semigroups-dev_0.8.3.2-1_amd64 + libghc-semigroups-prof_0.8.3.2-1_amd64 + libghc-sendfile-dev_0.7.6-1+b2_amd64 + libghc-sendfile-prof_0.7.6-1+b2_amd64 + libghc-sha-dev_1.5.0.1-1_amd64 + libghc-sha-prof_1.5.0.1-1_amd64 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_amd64 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_amd64 + libghc-shakespeare-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-prof_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_amd64 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_amd64 + libghc-shellac-dev_0.9.5.1-2+b2_amd64 + libghc-shellac-prof_0.9.5.1-2+b2_amd64 + libghc-show-dev_0.4.1.2-1+b2_amd64 + libghc-show-prof_0.4.1.2-1+b2_amd64 + libghc-silently-dev_1.1.4-1+b2_amd64 + libghc-silently-prof_1.1.4-1+b2_amd64 + libghc-simple-sendfile-dev_0.2.3-1+b2_amd64 + libghc-simple-sendfile-prof_0.2.3-1+b2_amd64 + libghc-simpleea-dev_0.1.1-2+b2_amd64 + libghc-simpleea-prof_0.1.1-2+b2_amd64 + libghc-simpleirc-dev_0.2.1-2+b3_amd64 + libghc-simpleirc-prof_0.2.1-2+b3_amd64 + libghc-skein-dev_0.1.0.7-2+b1_amd64 + libghc-skein-prof_0.1.0.7-2+b1_amd64 + libghc-smallcheck-dev_0.6-1+b1_amd64 + libghc-smallcheck-prof_0.6-1+b1_amd64 + libghc-smtpclient-dev_1.0.4-3+b3_amd64 + libghc-smtpclient-prof_1.0.4-3+b3_amd64 + libghc-snap-core-dev_0.8.1-1+b4_amd64 + libghc-snap-core-prof_0.8.1-1+b4_amd64 + libghc-snap-server-dev_0.8.1.1-1+b1_amd64 + libghc-snap-server-prof_0.8.1.1-1+b1_amd64 + libghc-socks-dev_0.4.1-1+b4_amd64 + libghc-socks-prof_0.4.1-1+b4_amd64 + libghc-split-dev_0.1.4.2-2_amd64 + libghc-split-prof_0.1.4.2-2_amd64 + libghc-src-exts-dev_1.11.1-3+b1_amd64 + libghc-src-exts-prof_1.11.1-3+b1_amd64 + libghc-statevar-dev_1.0.0.0-2+b1_amd64 + libghc-statevar-prof_1.0.0.0-2+b1_amd64 + libghc-static-hash-dev_0.0.1-3+b2_amd64 + libghc-static-hash-prof_0.0.1-3+b2_amd64 + libghc-statistics-dev_0.10.1.0-2+b2_amd64 + libghc-statistics-prof_0.10.1.0-2+b2_amd64 + libghc-stm-dev_2.3-1_amd64 + libghc-stm-prof_2.3-1_amd64 + libghc-stream-dev_0.4.6-1+b1_amd64 + libghc-stream-prof_0.4.6-1+b1_amd64 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_amd64 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_amd64 + libghc-strict-dev_0.3.2-2+b1_amd64 + libghc-strict-prof_0.3.2-2+b1_amd64 + libghc-strptime-dev_1.0.6-1_amd64 + libghc-strptime-prof_1.0.6-1_amd64 + libghc-svgcairo-dev_0.12.1-1+b2_amd64 + libghc-svgcairo-prof_0.12.1-1+b2_amd64 + libghc-syb-dev_0.3.6.1-1_amd64 + libghc-syb-prof_0.3.6.1-1_amd64 + libghc-syb-with-class-dev_0.6.1.3-1+b1_amd64 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_amd64 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_amd64 + libghc-syb-with-class-prof_0.6.1.3-1+b1_amd64 + libghc-system-fileio-dev_0.3.8-1_amd64 + libghc-system-fileio-prof_0.3.8-1_amd64 + libghc-system-filepath-dev_0.4.6-1+b2_amd64 + libghc-system-filepath-prof_0.4.6-1+b2_amd64 + libghc-tagged-dev_0.4.2.1-1_amd64 + libghc-tagged-prof_0.4.2.1-1_amd64 + libghc-tagsoup-dev_0.12.6-1+b3_amd64 + libghc-tagsoup-prof_0.12.6-1+b3_amd64 + libghc-tagstream-conduit-dev_0.3.2-1_amd64 + libghc-tagstream-conduit-prof_0.3.2-1_amd64 + libghc-tar-dev_0.3.2.0-2+b1_amd64 + libghc-tar-prof_0.3.2.0-2+b1_amd64 + libghc-template-dev_0.2.0.7-1+b1_amd64 + libghc-template-prof_0.2.0.7-1+b1_amd64 + libghc-temporary-dev_1.1.2.3-1+b1_amd64 + libghc-temporary-prof_1.1.2.3-1+b1_amd64 + libghc-terminfo-dev_0.3.2.3-1+b1_amd64 + libghc-terminfo-prof_0.3.2.3-1+b1_amd64 + libghc-test-framework-dev_0.6-1+b1_amd64 + libghc-test-framework-hunit-dev_0.2.7-1+b3_amd64 + libghc-test-framework-hunit-prof_0.2.7-1+b3_amd64 + libghc-test-framework-prof_0.6-1+b1_amd64 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_amd64 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_amd64 + libghc-test-framework-th-dev_0.2.2-5_amd64 + libghc-test-framework-th-prime-dev_0.0.5-1_amd64 + libghc-test-framework-th-prime-prof_0.0.5-1_amd64 + libghc-test-framework-th-prof_0.2.2-5_amd64 + libghc-testpack-dev_2.1.1-1+b2_amd64 + libghc-testpack-prof_2.1.1-1+b2_amd64 + libghc-texmath-dev_0.6.0.6-1+b2_amd64 + libghc-texmath-prof_0.6.0.6-1+b2_amd64 + libghc-text-dev_0.11.2.0-1_amd64 + libghc-text-icu-dev_0.6.3.4-2+b2_amd64 + libghc-text-icu-prof_0.6.3.4-2+b2_amd64 + libghc-text-prof_0.11.2.0-1_amd64 + libghc-tinyurl-dev_0.1.0-2+b3_amd64 + libghc-tinyurl-prof_0.1.0-2+b3_amd64 + libghc-tls-dev_0.9.5-1+b3_amd64 + libghc-tls-extra-dev_0.4.6.1-2_amd64 + libghc-tls-extra-prof_0.4.6.1-2_amd64 + libghc-tls-prof_0.9.5-1+b3_amd64 + libghc-tokyocabinet-dev_0.0.5-5+b3_amd64 + libghc-tokyocabinet-prof_0.0.5-5+b3_amd64 + libghc-transformers-base-dev_0.4.1-2+b2_amd64 + libghc-transformers-base-prof_0.4.1-2+b2_amd64 + libghc-transformers-dev_0.3.0.0-1_amd64 + libghc-transformers-prof_0.3.0.0-1_amd64 + libghc-type-level-dev_0.2.4-5_amd64 + libghc-type-level-prof_0.2.4-5_amd64 + libghc-uniplate-dev_1.6.7-1+b2_amd64 + libghc-uniplate-prof_1.6.7-1+b2_amd64 + libghc-unix-bytestring-dev_0.3.5-2+b1_amd64 + libghc-unix-bytestring-prof_0.3.5-2+b1_amd64 + libghc-unix-compat-dev_0.3.0.1-1+b1_amd64 + libghc-unix-compat-prof_0.3.0.1-1+b1_amd64 + libghc-unixutils-dev_1.50-1+b2_amd64 + libghc-unixutils-prof_1.50-1+b2_amd64 + libghc-unlambda-dev_0.1-2+b2_amd64 + libghc-unlambda-prof_0.1-2+b2_amd64 + libghc-unordered-containers-dev_0.2.1.0-1_amd64 + libghc-unordered-containers-prof_0.2.1.0-1_amd64 + libghc-uri-dev_0.1.6-1+b2_amd64 + libghc-uri-prof_0.1.6-1+b2_amd64 + libghc-url-dev_2.1.2-4+b1_amd64 + libghc-url-prof_2.1.2-4+b1_amd64 + libghc-utf8-light-dev_0.4.0.1-2+b1_amd64 + libghc-utf8-light-prof_0.4.0.1-2+b1_amd64 + libghc-utf8-string-dev_0.3.7-1+b1_amd64 + libghc-utf8-string-prof_0.3.7-1+b1_amd64 + libghc-utility-ht-dev_0.0.5.1-3+b1_amd64 + libghc-utility-ht-prof_0.0.5.1-3+b1_amd64 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_amd64 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_amd64 + libghc-uuid-dev_1.2.3-2+b3_amd64 + libghc-uuid-prof_1.2.3-2+b3_amd64 + libghc-uulib-dev_0.9.14-2_amd64 + libghc-uulib-prof_0.9.14-2_amd64 + libghc-vault-dev_0.2.0.0-1+b2_amd64 + libghc-vault-prof_0.2.0.0-1+b2_amd64 + libghc-vector-algorithms-dev_0.5.4-1+b2_amd64 + libghc-vector-algorithms-prof_0.5.4-1+b2_amd64 + libghc-vector-dev_0.9.1-2+b1_amd64 + libghc-vector-prof_0.9.1-2+b1_amd64 + libghc-vector-space-dev_0.8.1-1_amd64 + libghc-vector-space-points-dev_0.1.1.0-1+b1_amd64 + libghc-vector-space-points-prof_0.1.1.0-1+b1_amd64 + libghc-vector-space-prof_0.8.1-1_amd64 + libghc-void-dev_0.5.5.1-2_amd64 + libghc-void-prof_0.5.5.1-2_amd64 + libghc-vte-dev_0.12.1-1+b3_amd64 + libghc-vte-prof_0.12.1-1+b3_amd64 + libghc-vty-dev_4.7.0.14-1+b1_amd64 + libghc-vty-prof_4.7.0.14-1+b1_amd64 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_amd64 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_amd64 + libghc-wai-app-static-dev_1.2.0.3-1+b5_amd64 + libghc-wai-app-static-prof_1.2.0.3-1+b5_amd64 + libghc-wai-dev_1.2.0.2-1+b3_amd64 + libghc-wai-extra-dev_1.2.0.4-1+b1_amd64 + libghc-wai-extra-prof_1.2.0.4-1+b1_amd64 + libghc-wai-logger-dev_0.1.4-1+b6_amd64 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_amd64 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_amd64 + libghc-wai-logger-prof_0.1.4-1+b6_amd64 + libghc-wai-prof_1.2.0.2-1+b3_amd64 + libghc-wai-test-dev_1.2.0.2-1+b1_amd64 + libghc-wai-test-prof_1.2.0.2-1+b1_amd64 + libghc-warp-dev_1.2.1.1-1+b1_amd64 + libghc-warp-prof_1.2.1.1-1+b1_amd64 + libghc-warp-tls-dev_1.2.0.4-1+b4_amd64 + libghc-warp-tls-prof_1.2.0.4-1+b4_amd64 + libghc-web-routes-dev_0.25.3-2+b3_amd64 + libghc-web-routes-prof_0.25.3-2+b3_amd64 + libghc-webkit-dev_0.12.3-2+b1_amd64 + libghc-webkit-prof_0.12.3-2+b1_amd64 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_amd64 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_amd64 + libghc-x11-dev_1.5.0.1-1+b2_amd64 + libghc-x11-prof_1.5.0.1-1+b2_amd64 + libghc-x11-xft-dev_0.3.1-1+b2_amd64 + libghc-x11-xft-prof_0.3.1-1+b2_amd64 + libghc-xdg-basedir-dev_0.2.1-2+b1_amd64 + libghc-xdg-basedir-prof_0.2.1-2+b1_amd64 + libghc-xhtml-dev_3000.2.1-1_amd64 + libghc-xhtml-prof_3000.2.1-1_amd64 + libghc-xml-conduit-dev_0.7.0.2-1+b1_amd64 + libghc-xml-conduit-prof_0.7.0.2-1+b1_amd64 + libghc-xml-dev_1.3.12-1+b2_amd64 + libghc-xml-prof_1.3.12-1+b2_amd64 + libghc-xml-types-dev_0.3.1-2+b2_amd64 + libghc-xml-types-prof_0.3.1-2+b2_amd64 + libghc-xml2html-dev_0.1.2.3-1+b2_amd64 + libghc-xml2html-prof_0.1.2.3-1+b2_amd64 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_amd64 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_amd64 + libghc-xmonad-dev_0.10-4+b2_amd64 + libghc-xmonad-prof_0.10-4+b2_amd64 + libghc-xss-sanitize-dev_0.3.2-1+b1_amd64 + libghc-xss-sanitize-prof_0.3.2-1+b1_amd64 + libghc-yaml-dev_0.7.0.2-1+b3_amd64 + libghc-yaml-light-dev_0.1.4-2+b2_amd64 + libghc-yaml-light-prof_0.1.4-2+b2_amd64 + libghc-yaml-prof_0.7.0.2-1+b3_amd64 + libghc-yesod-auth-dev_1.0.2.1-2+b2_amd64 + libghc-yesod-auth-prof_1.0.2.1-2+b2_amd64 + libghc-yesod-core-dev_1.0.1.2-1+b4_amd64 + libghc-yesod-core-prof_1.0.1.2-1+b4_amd64 + libghc-yesod-default-dev_1.0.1.1-1+b3_amd64 + libghc-yesod-default-prof_1.0.1.1-1+b3_amd64 + libghc-yesod-dev_1.0.1.6-2+b2_amd64 + libghc-yesod-form-dev_1.0.0.4-1+b2_amd64 + libghc-yesod-form-prof_1.0.0.4-1+b2_amd64 + libghc-yesod-json-dev_1.0.0.1-1+b4_amd64 + libghc-yesod-json-prof_1.0.0.1-1+b4_amd64 + libghc-yesod-markdown-dev_0.4.0-1+b3_amd64 + libghc-yesod-markdown-prof_0.4.0-1+b3_amd64 + libghc-yesod-persistent-dev_1.0.0.1-1+b2_amd64 + libghc-yesod-persistent-prof_1.0.0.1-1+b2_amd64 + libghc-yesod-prof_1.0.1.6-2+b2_amd64 + libghc-yesod-routes-dev_1.0.1.2-1_amd64 + libghc-yesod-routes-prof_1.0.1.2-1_amd64 + libghc-yesod-static-dev_1.0.0.2-1+b4_amd64 + libghc-yesod-static-prof_1.0.0.2-1+b4_amd64 + libghc-yesod-test-dev_0.2.0.6-1_amd64 + libghc-yesod-test-prof_0.2.0.6-1_amd64 + libghc-zip-archive-dev_0.1.1.7-3+b2_amd64 + libghc-zip-archive-prof_0.1.1.7-3+b2_amd64 + libghc-zlib-bindings-dev_0.1.0.1-1_amd64 + libghc-zlib-bindings-prof_0.1.0.1-1_amd64 + libghc-zlib-conduit-dev_0.4.0.1-1+b1_amd64 + libghc-zlib-conduit-prof_0.4.0.1-1+b1_amd64 + libghc-zlib-dev_0.5.3.3-1+b1_amd64 + libghc-zlib-enum-dev_0.2.2.1-1+b1_amd64 + libghc-zlib-enum-prof_0.2.2.1-1+b1_amd64 + libghc-zlib-prof_0.5.3.3-1+b1_amd64 + libghemical-dev_3.0.0-2_amd64 + libghemical5_3.0.0-2_amd64 + libgif-dev_4.1.6-10_amd64 + libgif4_4.1.6-10_amd64 + libgiftiio-dev_1.0.9-1_amd64 + libgiftiio0_1.0.9-1_amd64 + libgig-dev_3.3.0-2_amd64 + libgig6_3.3.0-2_amd64 + libgii1_1:1.0.2-4.1_amd64 + libgii1-dev_1:1.0.2-4.1_amd64 + libgii1-target-x_1:1.0.2-4.1_amd64 + libgimp2.0_2.8.2-2+deb7u1_amd64 + libgimp2.0-dev_2.8.2-2+deb7u1_amd64 + libginac-dev_1.6.2-1_amd64 + libginac2_1.6.2-1_amd64 + libginac2-dbg_1.6.2-1_amd64 + libginspx-dev_20050529-3.1_amd64 + libginspx0_20050529-3.1_amd64 + libgirara-dbg_0.1.2-3_amd64 + libgirara-dev_0.1.2-3_amd64 + libgirara-gtk2-0_0.1.2-3_amd64 + libgirara-gtk3-0_0.1.2-3_amd64 + libgirepository-1.0-1_1.32.1-1_amd64 + libgirepository1.0-dev_1.32.1-1_amd64 + libgjs-dev_1.32.0-5_amd64 + libgjs0b_1.32.0-5_amd64 + libgksu2-0_2.0.13~pre1-6_amd64 + libgksu2-dev_2.0.13~pre1-6_amd64 + libgl-gst_3.2.4-2_amd64 + libgl1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_amd64 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx_8.0.5-4+deb7u2_amd64 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_amd64 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_amd64 + libgl2ps-dev_1.3.6-1_amd64 + libgl2ps0_1.3.6-1_amd64 + libgl2ps0-dbg_1.3.6-1_amd64 + libglacier2-34_3.4.2-8.2_amd64 + libglade2-0_1:2.6.4-1_amd64 + libglade2-dev_1:2.6.4-1_amd64 + libglade2.0-cil_2.12.10-5_amd64 + libglade2.0-cil-dev_2.12.10-5_amd64 + libglademm-2.4-1c2a_2.6.7-2_amd64 + libglademm-2.4-dbg_2.6.7-2_amd64 + libglademm-2.4-dev_2.6.7-2_amd64 + libgladeui-1-9_3.6.7-2.1_amd64 + libgladeui-1-dev_3.6.7-2.1_amd64 + libgladeui-2-0_3.12.1-1_amd64 + libgladeui-dev_3.12.1-1_amd64 + libglapi-mesa_8.0.5-4+deb7u2_amd64 + libglapi-mesa-dbg_8.0.5-4+deb7u2_amd64 + libglbsp-dev_2.24-1_amd64 + libglbsp3_2.24-1_amd64 + libglc-dev_0.7.2-5+b1_amd64 + libglc0_0.7.2-5+b1_amd64 + libgle3_3.1.0-7_amd64 + libgle3-dev_3.1.0-7_amd64 + libglee0d1_5.4.0-1_amd64 + libglee0d1-dbg_5.4.0-1_amd64 + libgles1-mesa_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgles2-mesa_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dbg_8.0.5-4+deb7u2_amd64 + libgles2-mesa-dev_8.0.5-4+deb7u2_amd64 + libglew-dev_1.7.0-3_amd64 + libglew1.7_1.7.0-3_amd64 + libglewmx-dev_1.7.0-3_amd64 + libglewmx1.7_1.7.0-3_amd64 + libglfw-dev_2.7.2-1_amd64 + libglfw2_2.7.2-1_amd64 + libglib-object-introspection-perl_0.009-1+deb7u1_amd64 + libglib-perl_3:1.260-1_amd64 + libglib2.0-0_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_amd64 + libglib2.0-bin_2.33.12+really2.32.4-5_amd64 + libglib2.0-cil_2.12.10-5_amd64 + libglib2.0-cil-dev_2.12.10-5_amd64 + libglib2.0-dev_2.33.12+really2.32.4-5_amd64 + libglibmm-2.4-1c2a_2.32.1-1_amd64 + libglibmm-2.4-dbg_2.32.1-1_amd64 + libglibmm-2.4-dev_2.32.1-1_amd64 + libglide3_2002.04.10ds1-7_amd64 + libglide3-dev_2002.04.10ds1-7_amd64 + libglobus-authz-callout-error-dev_2.2-1_amd64 + libglobus-authz-callout-error0_2.2-1_amd64 + libglobus-authz-dev_2.2-1_amd64 + libglobus-authz0_2.2-1_amd64 + libglobus-callout-dev_2.2-1_amd64 + libglobus-callout0_2.2-1_amd64 + libglobus-common-dev_14.7-2_amd64 + libglobus-common0_14.7-2_amd64 + libglobus-ftp-client-dev_7.3-1_amd64 + libglobus-ftp-client2_7.3-1_amd64 + libglobus-ftp-control-dev_4.4-1_amd64 + libglobus-ftp-control1_4.4-1_amd64 + libglobus-gass-cache-dev_8.1-2_amd64 + libglobus-gass-cache5_8.1-2_amd64 + libglobus-gass-copy-dev_8.4-1_amd64 + libglobus-gass-copy2_8.4-1_amd64 + libglobus-gass-server-ez-dev_4.3-1_amd64 + libglobus-gass-server-ez2_4.3-1_amd64 + libglobus-gass-transfer-dev_7.2-1_amd64 + libglobus-gass-transfer2_7.2-1_amd64 + libglobus-gfork-dev_3.2-1_amd64 + libglobus-gfork0_3.2-1_amd64 + libglobus-gram-client-dev_12.4-1_amd64 + libglobus-gram-client3_12.4-1_amd64 + libglobus-gram-job-manager-callout-error-dev_2.1-2_amd64 + libglobus-gram-job-manager-callout-error0_2.1-2_amd64 + libglobus-gram-protocol-dev_11.3-1_amd64 + libglobus-gram-protocol3_11.3-1_amd64 + libglobus-gridftp-server-control-dev_2.5-2_amd64 + libglobus-gridftp-server-control0_2.5-2_amd64 + libglobus-gridftp-server-dev_6.10-2_amd64 + libglobus-gridftp-server6_6.10-2_amd64 + libglobus-gridmap-callout-error-dev_1.2-2_amd64 + libglobus-gridmap-callout-error0_1.2-2_amd64 + libglobus-gsi-callback-dev_4.2-1_amd64 + libglobus-gsi-callback0_4.2-1_amd64 + libglobus-gsi-cert-utils-dev_8.3-1_amd64 + libglobus-gsi-cert-utils0_8.3-1_amd64 + libglobus-gsi-credential-dev_5.3-1_amd64 + libglobus-gsi-credential1_5.3-1_amd64 + libglobus-gsi-openssl-error-dev_2.1-2_amd64 + libglobus-gsi-openssl-error0_2.1-2_amd64 + libglobus-gsi-proxy-core-dev_6.2-1_amd64 + libglobus-gsi-proxy-core0_6.2-1_amd64 + libglobus-gsi-proxy-ssl-dev_4.1-2_amd64 + libglobus-gsi-proxy-ssl1_4.1-2_amd64 + libglobus-gsi-sysconfig-dev_5.2-1_amd64 + libglobus-gsi-sysconfig1_5.2-1_amd64 + libglobus-gss-assist-dev_8.5-1_amd64 + libglobus-gss-assist3_8.5-1_amd64 + libglobus-gssapi-error-dev_4.1-2_amd64 + libglobus-gssapi-error2_4.1-2_amd64 + libglobus-gssapi-gsi-dev_10.6-1_amd64 + libglobus-gssapi-gsi4_10.6-1_amd64 + libglobus-io-dev_9.3-1_amd64 + libglobus-io3_9.3-1_amd64 + libglobus-openssl-module-dev_3.2-1_amd64 + libglobus-openssl-module0_3.2-1_amd64 + libglobus-rls-client-dev_5.2-8_amd64 + libglobus-rls-client5_5.2-8_amd64 + libglobus-rsl-dev_9.1-2_amd64 + libglobus-rsl2_9.1-2_amd64 + libglobus-scheduler-event-generator-dev_4.6-1_amd64 + libglobus-scheduler-event-generator0_4.6-1_amd64 + libglobus-usage-dev_3.1-2_amd64 + libglobus-usage0_3.1-2_amd64 + libglobus-xio-dev_3.3-1_amd64 + libglobus-xio-gsi-driver-dev_2.3-1_amd64 + libglobus-xio-gsi-driver0_2.3-1_amd64 + libglobus-xio-pipe-driver-dev_2.2-1_amd64 + libglobus-xio-pipe-driver0_2.2-1_amd64 + libglobus-xio-popen-driver-dev_2.3-1_amd64 + libglobus-xio-popen-driver0_2.3-1_amd64 + libglobus-xio0_3.3-1_amd64 + libgloox-dbg_1.0-1.1_amd64 + libgloox-dev_1.0-1.1_amd64 + libgloox8_1.0-1.1_amd64 + libglpk-dev_4.45-1_amd64 + libglpk-java_1.0.18-1_amd64 + libglpk0_4.45-1_amd64 + libglpk0-dbg_4.45-1_amd64 + libglrr-glib-dev_20050529-3.1_amd64 + libglrr-glib0_20050529-3.1_amd64 + libglrr-gobject-dev_20050529-3.1_amd64 + libglrr-gobject0_20050529-3.1_amd64 + libglrr-gtk-dev_20050529-3.1_amd64 + libglrr-gtk0_20050529-3.1_amd64 + libglrr-widgets-dev_20050529-3.1_amd64 + libglrr-widgets0_20050529-3.1_amd64 + libglu1-mesa_8.0.5-4+deb7u2_amd64 + libglu1-mesa-dev_8.0.5-4+deb7u2_amd64 + libgluegen2-jni_2.0-rc5-4_amd64 + libglui-dev_2.36-4_amd64 + libglui2c2_2.36-4_amd64 + libglw1-mesa_8.0.0-1_amd64 + libglw1-mesa-dev_8.0.0-1_amd64 + libgme-dev_0.5.5-2_amd64 + libgme0_0.5.5-2_amd64 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_amd64 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_amd64 + libgmerlin-common_1.2.0~dfsg+1-1_amd64 + libgmerlin-dev_1.2.0~dfsg+1-1_amd64 + libgmerlin0_1.2.0~dfsg+1-1_amd64 + libgmime-2.6-0_2.6.10-1_amd64 + libgmime-2.6-0-dbg_2.6.10-1_amd64 + libgmime-2.6-dev_2.6.10-1_amd64 + libgmlib-dev_1.0.6-1_amd64 + libgmlib0_1.0.6-1_amd64 + libgmlib0-dbg_1.0.6-1_amd64 + libgmp-dev_2:5.0.5+dfsg-2_amd64 + libgmp-ocaml_20021123-17+b3_amd64 + libgmp-ocaml-dev_20021123-17+b3_amd64 + libgmp10_2:5.0.5+dfsg-2_amd64 + libgmp3-dev_2:5.0.5+dfsg-2_amd64 + libgmpada-dbg_0.0.20120331-1_amd64 + libgmpada2_0.0.20120331-1_amd64 + libgmpada3-dev_0.0.20120331-1_amd64 + libgmpxx4ldbl_2:5.0.5+dfsg-2_amd64 + libgmt-dev_4.5.7-2_amd64 + libgmt4_4.5.7-2_amd64 + libgmtk-dev_1.0.6-1_amd64 + libgmtk0_1.0.6-1_amd64 + libgmtk0-dbg_1.0.6-1_amd64 + libgnadecommon-dbg_1.6.2-9_amd64 + libgnadecommon1_1.6.2-9_amd64 + libgnadecommon2-dev_1.6.2-9_amd64 + libgnadeodbc-dbg_1.6.2-9_amd64 + libgnadeodbc2_1.6.2-9_amd64 + libgnadeodbc2-dev_1.6.2-9_amd64 + libgnadesqlite3-2_1.6.2-9_amd64 + libgnadesqlite3-2-dev_1.6.2-9_amd64 + libgnadesqlite3-dbg_1.6.2-9_amd64 + libgnat-4.6_4.6.3-8_amd64 + libgnat-4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6_4.6.3-8_amd64 + libgnatprj4.6-dbg_4.6.3-8_amd64 + libgnatprj4.6-dev_4.6.3-8_amd64 + libgnatvsn4.6_4.6.3-8_amd64 + libgnatvsn4.6-dbg_4.6.3-8_amd64 + libgnatvsn4.6-dev_4.6.3-8_amd64 + libgnelib-dev_0.75+svn20091130-1+b1_amd64 + libgnelib-doc_0.75+svn20091130-1+b1_amd64 + libgnelib0_0.75+svn20091130-1+b1_amd64 + libgnelib0-dbg_0.75+svn20091130-1+b1_amd64 + libgnet-dev_2.0.8-2.2_amd64 + libgnet2.0-0_2.0.8-2.2_amd64 + libgnokii-dev_0.6.30+dfsg-1+b1_amd64 + libgnokii6_0.6.30+dfsg-1+b1_amd64 + libgnome-bluetooth-dev_3.4.2-1_amd64 + libgnome-bluetooth10_3.4.2-1_amd64 + libgnome-desktop-2-17_2.32.1-2_amd64 + libgnome-desktop-3-2_3.4.2-1_amd64 + libgnome-desktop-3-dev_3.4.2-1_amd64 + libgnome-desktop-dev_2.32.1-2_amd64 + libgnome-keyring-dev_3.4.1-1_amd64 + libgnome-keyring0_3.4.1-1_amd64 + libgnome-keyring0-dbg_3.4.1-1_amd64 + libgnome-keyring1.0-cil_1.0.0-4_amd64 + libgnome-keyring1.0-cil-dev_1.0.0-4_amd64 + libgnome-mag-dev_1:0.16.3-1_amd64 + libgnome-mag2_1:0.16.3-1_amd64 + libgnome-media-profiles-3.0-0_3.0.0-1_amd64 + libgnome-media-profiles-dev_3.0.0-1_amd64 + libgnome-menu-3-0_3.4.2-5_amd64 + libgnome-menu-3-dev_3.4.2-5_amd64 + libgnome-menu-dev_3.0.1-4_amd64 + libgnome-menu2_3.0.1-4_amd64 + libgnome-speech-dev_1:0.4.25-5_amd64 + libgnome-speech7_1:0.4.25-5_amd64 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_amd64 + libgnome-vfsmm-2.6-dev_2.26.0-1_amd64 + libgnome2-0_2.32.1-3_amd64 + libgnome2-canvas-perl_1.002-2+b2_amd64 + libgnome2-dbg_2.32.1-3_amd64 + libgnome2-dev_2.32.1-3_amd64 + libgnome2-gconf-perl_1.044-4_amd64 + libgnome2-perl_1.042-2+b2_amd64 + libgnome2-vfs-perl_1.081-3+b1_amd64 + libgnome2-wnck-perl_0.16-2+b2_amd64 + libgnome2.0-cil-dev_2.24.2-3_amd64 + libgnome2.24-cil_2.24.2-3_amd64 + libgnomeada-dbg_2.24.1-7_amd64 + libgnomeada2.24.1_2.24.1-7_amd64 + libgnomeada2.24.1-dev_2.24.1-7_amd64 + libgnomecanvas2-0_2.30.3-1.2_amd64 + libgnomecanvas2-dbg_2.30.3-1.2_amd64 + libgnomecanvas2-dev_2.30.3-1.2_amd64 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_amd64 + libgnomecanvasmm-2.6-dev_2.26.0-1_amd64 + libgnomecups1.0-1_0.2.3-5_amd64 + libgnomecups1.0-dev_0.2.3-5_amd64 + libgnomekbd-dev_3.4.0.2-1_amd64 + libgnomekbd7_3.4.0.2-1_amd64 + libgnomemm-2.6-1c2_2.30.0-1_amd64 + libgnomemm-2.6-dev_2.30.0-1_amd64 + libgnomeprint2.2-0_2.18.8-3_amd64 + libgnomeprint2.2-dev_2.18.8-3_amd64 + libgnomeprintui2.2-0_2.18.6-3_amd64 + libgnomeprintui2.2-dev_2.18.6-3_amd64 + libgnomeui-0_2.24.5-2_amd64 + libgnomeui-0-dbg_2.24.5-2_amd64 + libgnomeui-dev_2.24.5-2_amd64 + libgnomeuimm-2.6-1c2a_2.28.0-1_amd64 + libgnomeuimm-2.6-dev_2.28.0-1_amd64 + libgnomevfs2-0_1:2.24.4-2_amd64 + libgnomevfs2-0-dbg_1:2.24.4-2_amd64 + libgnomevfs2-bin_1:2.24.4-2_amd64 + libgnomevfs2-dev_1:2.24.4-2_amd64 + libgnomevfs2-extra_1:2.24.4-2_amd64 + libgnuift0-dev_0.1.14-12_amd64 + libgnuift0c2a_0.1.14-12_amd64 + libgnuplot-ocaml-dev_0.8.3-3_amd64 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-audio3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-core3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-digital3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-pager3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_amd64 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_amd64 + libgnustep-base-dev_1.22.1-4_amd64 + libgnustep-base1.22_1.22.1-4_amd64 + libgnustep-base1.22-dbg_1.22.1-4_amd64 + libgnustep-dl2-0d_0.12.0-9+nmu1_amd64 + libgnustep-dl2-dev_0.12.0-9+nmu1_amd64 + libgnustep-gui-dev_0.20.0-3+b1_amd64 + libgnustep-gui0.20_0.20.0-3+b1_amd64 + libgnustep-gui0.20-dbg_0.20.0-3+b1_amd64 + libgnutls-dev_2.12.20-7_amd64 + libgnutls-openssl27_2.12.20-7_amd64 + libgnutls26_2.12.20-7_amd64 + libgnutls26-dbg_2.12.20-7_amd64 + libgnutlsxx27_2.12.20-7_amd64 + libgo0_4.7.2-5_amd64 + libgo0-dbg_4.7.2-5_amd64 + libgoa-1.0-0_3.4.2-2_amd64 + libgoa-1.0-dev_3.4.2-2_amd64 + libgoffice-0.8-8_0.8.17-1.2_amd64 + libgoffice-0.8-dev_0.8.17-1.2_amd64 + libgoffice-dbg_0.8.17-1.2_amd64 + libgofigure-dev_0.9.0-1+b2_amd64 + libgofigure0_0.9.0-1+b2_amd64 + libgomp1_4.7.2-5_amd64 + libgomp1-dbg_4.7.2-5_amd64 + libgoo-canvas-perl_0.06-1+b2_amd64 + libgoocanvas-dev_0.15-1_amd64 + libgoocanvas3_0.15-1_amd64 + libgoocanvasmm-1.0-5_0.15.4-1_amd64 + libgoocanvasmm-dev_0.15.4-1_amd64 + libgoogle-perftools-dev_2.0-2_amd64 + libgoogle-perftools4_2.0-2_amd64 + libgoogle-perftools4-dbg_2.0-2_amd64 + libgooglepinyin0_0.1.2-1_amd64 + libgooglepinyin0-dbg_0.1.2-1_amd64 + libgooglepinyin0-dev_0.1.2-1_amd64 + libgpac-dbg_0.5.0~dfsg0-1_amd64 + libgpac-dev_0.5.0~dfsg0-1_amd64 + libgpac2_0.5.0~dfsg0-1_amd64 + libgpds-dbg_1.5.1-6_amd64 + libgpds-dev_1.5.1-6_amd64 + libgpds0_1.5.1-6_amd64 + libgpelaunch-dev_0.14-6_amd64 + libgpelaunch0_0.14-6_amd64 + libgpelaunch0-dbg_0.14-6_amd64 + libgpepimc-dev_0.9-4_amd64 + libgpepimc0_0.9-4_amd64 + libgpepimc0-dbg_0.9-4_amd64 + libgpeschedule-dev_0.17-4_amd64 + libgpeschedule0_0.17-4_amd64 + libgpeschedule0-dbg_0.17-4_amd64 + libgpevtype-dev_0.50-6_amd64 + libgpevtype1_0.50-6_amd64 + libgpevtype1-dbg_0.50-6_amd64 + libgpewidget-dev_0.117-6_amd64 + libgpewidget1_0.117-6_amd64 + libgpewidget1-dbg_0.117-6_amd64 + libgpg-error-dev_1.10-3.1_amd64 + libgpg-error0_1.10-3.1_amd64 + libgpgme++2_4:4.8.4-2_amd64 + libgpgme11_1.2.0-1.4_amd64 + libgpgme11-dev_1.2.0-1.4_amd64 + libgphoto2-2_2.4.14-2_amd64 + libgphoto2-2-dev_2.4.14-2_amd64 + libgphoto2-port0_2.4.14-2_amd64 + libgpiv-mpi3_0.6.1-4_amd64 + libgpiv3_0.6.1-4_amd64 + libgpiv3-common_0.6.1-4_amd64 + libgpiv3-dbg_0.6.1-4_amd64 + libgpiv3-dev_0.6.1-4_amd64 + libgpm-dev_1.20.4-6_amd64 + libgpm2_1.20.4-6_amd64 + libgpod-cil_0.8.2-7_amd64 + libgpod-cil-dev_0.8.2-7_amd64 + libgpod-common_0.8.2-7_amd64 + libgpod-dev_0.8.2-7_amd64 + libgpod-nogtk-dev_0.8.2-7_amd64 + libgpod4_0.8.2-7_amd64 + libgpod4-nogtk_0.8.2-7_amd64 + libgportugol-dev_1.1-2_amd64 + libgportugol0_1.1-2_amd64 + libgps-dev_3.6-4+deb7u1_amd64 + libgps20_3.6-4+deb7u1_amd64 + libgraflib1-dev_20061220+dfsg3-2_amd64 + libgraflib1-gfortran_20061220+dfsg3-2_amd64 + libgrafx11-1-dev_20061220+dfsg3-2_amd64 + libgrafx11-1-gfortran_20061220+dfsg3-2_amd64 + libgrantlee-core0_0.1.4-1_amd64 + libgrantlee-dev_0.1.4-1_amd64 + libgrantlee-gui0_0.1.4-1_amd64 + libgraph4_2.26.3-14+deb7u1_amd64 + libgraphics-libplot-perl_2.2.2-5+b2_amd64 + libgraphics-magick-perl_1.3.16-1.1_amd64 + libgraphicsmagick++1-dev_1.3.16-1.1_amd64 + libgraphicsmagick++3_1.3.16-1.1_amd64 + libgraphicsmagick1-dev_1.3.16-1.1_amd64 + libgraphicsmagick3_1.3.16-1.1_amd64 + libgraphite-dev_1:2.3.1-0.2_amd64 + libgraphite2-2.0.0_1.1.3-1_amd64 + libgraphite2-2.0.0-dbg_1.1.3-1_amd64 + libgraphite2-dev_1.1.3-1_amd64 + libgraphite3_1:2.3.1-0.2_amd64 + libgraphite3-dbg_1:2.3.1-0.2_amd64 + libgraphviz-dev_2.26.3-14+deb7u1_amd64 + libgretl1_1.9.9-1_amd64 + libgretl1-dev_1.9.9-1_amd64 + libgrib-api-1.9.16_1.9.16-2+b1_amd64 + libgrib-api-dev_1.9.16-2+b1_amd64 + libgrib-api-tools_1.9.16-2+b1_amd64 + libgrib2c-dev_1.2.2-2_amd64 + libgrib2c0d_1.2.2-2_amd64 + libgridsite-dev_1.7.16-1_amd64 + libgridsite1.7_1.7.16-1_amd64 + libgrilo-0.1-0_0.1.19-1_amd64 + libgrilo-0.1-bin_0.1.19-1_amd64 + libgrilo-0.1-dev_0.1.19-1_amd64 + libgringotts-dev_1.2.10~pre3-1_amd64 + libgringotts2_1.2.10~pre3-1_amd64 + libgrits-dev_0.7-1_amd64 + libgrits4_0.7-1_amd64 + libgrok-dev_1.20110708.1-4_amd64 + libgrok1_1.20110708.1-4_amd64 + libgrss-1.0-0_0.5.0-1_amd64 + libgrss-dev_0.5.0-1_amd64 + libgruel3.5.3.2_3.5.3.2-1_amd64 + libgs-dev_9.05~dfsg-6.3+deb7u1_amd64 + libgs9_9.05~dfsg-6.3+deb7u1_amd64 + libgsasl7_1.8.0-2_amd64 + libgsasl7-dev_1.8.0-2_amd64 + libgsecuredelete-dev_0.2-1_amd64 + libgsecuredelete0_0.2-1_amd64 + libgsf-1-114_1.14.21-2.1_amd64 + libgsf-1-114-dbg_1.14.21-2.1_amd64 + libgsf-1-dev_1.14.21-2.1_amd64 + libgsf-bin_1.14.21-2.1_amd64 + libgsf-gnome-1-114_1.14.21-2.1_amd64 + libgsf-gnome-1-114-dbg_1.14.21-2.1_amd64 + libgsf-gnome-1-dev_1.14.21-2.1_amd64 + libgsl0-dbg_1.15+dfsg.2-2_amd64 + libgsl0-dev_1.15+dfsg.2-2_amd64 + libgsl0ldbl_1.15+dfsg.2-2_amd64 + libgsm-tools_1.0.13-4_amd64 + libgsm0710-0_1.2.2-2_amd64 + libgsm0710-dbg_1.2.2-2_amd64 + libgsm0710-dev_1.2.2-2_amd64 + libgsm0710mux-dbg_0.11.2-1.1_amd64 + libgsm0710mux-dev_0.11.2-1.1_amd64 + libgsm0710mux2_0.11.2-1.1_amd64 + libgsm1_1.0.13-4_amd64 + libgsm1-dbg_1.0.13-4_amd64 + libgsm1-dev_1.0.13-4_amd64 + libgsmme-dev_1.10-13.2_amd64 + libgsmme1c2a_1.10-13.2_amd64 + libgsmsd7_1.31.90-1+b1_amd64 + libgsnmp0_0.3.0-1.1_amd64 + libgsnmp0-dbg_0.3.0-1.1_amd64 + libgsnmp0-dev_0.3.0-1.1_amd64 + libgsoap2_2.8.7-2_amd64 + libgsql-dev_0.2.2-1.2+b1_amd64 + libgsql0_0.2.2-1.2+b1_amd64 + libgss-dbg_1.0.2-1_amd64 + libgss-dev_1.0.2-1_amd64 + libgss3_1.0.2-1_amd64 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64 + libgssapi-perl_0.28-2_amd64 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_amd64 + libgssdp-1.0-3_0.12.2.1-2_amd64 + libgssdp-1.0-dbg_0.12.2.1-2_amd64 + libgssdp-1.0-dev_0.12.2.1-2_amd64 + libgssglue-dev_0.4-2_amd64 + libgssglue1_0.4-2_amd64 + libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64 + libgst-dev_3.2.4-2_amd64 + libgst7_3.2.4-2_amd64 + libgstbuzztard-dev_0.5.0-2+deb7u1_amd64 + libgstbuzztard0_0.5.0-2+deb7u1_amd64 + libgstreamer-interfaces-perl_0.06-2_amd64 + libgstreamer-ocaml_0.1.0-3+b1_amd64 + libgstreamer-ocaml-dev_0.1.0-3+b1_amd64 + libgstreamer-perl_0.17-1_amd64 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_amd64 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_amd64 + libgstreamer0.10-0_0.10.36-1.2_amd64 + libgstreamer0.10-0-dbg_0.10.36-1.2_amd64 + libgstreamer0.10-dev_0.10.36-1.2_amd64 + libgstreamer0.9-cil_0.9.2-4_amd64 + libgstrtspserver-0.10-0_0.10.8-3_amd64 + libgstrtspserver-0.10-dev_0.10.8-3_amd64 + libgtest-dev_1.6.0-2_amd64 + libgtextutils-dev_0.6.2-1_amd64 + libgtextutils0_0.6.2-1_amd64 + libgtg-dev_0.2+dfsg-1_amd64 + libgtg0_0.2+dfsg-1_amd64 + libgtk-3-0_3.4.2-7_amd64 + libgtk-3-0-dbg_3.4.2-7_amd64 + libgtk-3-bin_3.4.2-7_amd64 + libgtk-3-dev_3.4.2-7_amd64 + libgtk-vnc-1.0-0_0.5.0-3.1_amd64 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-1.0-dev_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0_0.5.0-3.1_amd64 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_amd64 + libgtk-vnc-2.0-dev_0.5.0-3.1_amd64 + libgtk2-gladexml-perl_1.007-1+b2_amd64 + libgtk2-gst_3.2.4-2_amd64 + libgtk2-imageview-perl_0.05-1+b2_amd64 + libgtk2-notify-perl_0.05-3+b1_amd64 + libgtk2-perl_2:1.244-1_amd64 + libgtk2-sourceview2-perl_0.10-1+b2_amd64 + libgtk2-spell-perl_1.04-1_amd64 + libgtk2-trayicon-perl_0.06-1+b2_amd64 + libgtk2-traymanager-perl_0.05-2+b2_amd64 + libgtk2-unique-perl_0.05-1+b2_amd64 + libgtk2.0-0_2.24.10-2_amd64 + libgtk2.0-0-dbg_2.24.10-2_amd64 + libgtk2.0-bin_2.24.10-2_amd64 + libgtk2.0-cil_2.12.10-5_amd64 + libgtk2.0-cil-dev_2.12.10-5_amd64 + libgtk2.0-dev_2.24.10-2_amd64 + libgtkada-bin_2.24.1-7_amd64 + libgtkada-dbg_2.24.1-7_amd64 + libgtkada2.24.1_2.24.1-7_amd64 + libgtkada2.24.1-dev_2.24.1-7_amd64 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_amd64 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_amd64 + libgtkgl2.0-1_2.0.1-2_amd64 + libgtkgl2.0-dev_2.0.1-2_amd64 + libgtkglada-dbg_2.24.1-7_amd64 + libgtkglada2.24.1_2.24.1-7_amd64 + libgtkglada2.24.1-dev_2.24.1-7_amd64 + libgtkglext1_1.2.0-2_amd64 + libgtkglext1-dbg_1.2.0-2_amd64 + libgtkglext1-dev_1.2.0-2_amd64 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_amd64 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_amd64 + libgtkhex-3-0_3.4.1-1_amd64 + libgtkhex-3-dev_3.4.1-1_amd64 + libgtkhotkey-dev_0.2.1-3_amd64 + libgtkhotkey1_0.2.1-3_amd64 + libgtkhtml-4.0-0_4.4.4-1_amd64 + libgtkhtml-4.0-dbg_4.4.4-1_amd64 + libgtkhtml-4.0-dev_4.4.4-1_amd64 + libgtkhtml-editor-3.14-0_3.32.2-2.1_amd64 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_amd64 + libgtkhtml-editor-4.0-0_4.4.4-1_amd64 + libgtkhtml-editor-4.0-dev_4.4.4-1_amd64 + libgtkhtml3.14-19_3.32.2-2.1_amd64 + libgtkhtml3.14-cil-dev_2.26.0-8_amd64 + libgtkhtml3.14-dbg_3.32.2-2.1_amd64 + libgtkhtml3.14-dev_3.32.2-2.1_amd64 + libgtkhtml3.16-cil_2.26.0-8_amd64 + libgtkimageview-dev_1.6.4+dfsg-0.1_amd64 + libgtkimageview0_1.6.4+dfsg-0.1_amd64 + libgtkmathview-bin_0.8.0-8_amd64 + libgtkmathview-dev_0.8.0-8_amd64 + libgtkmathview0c2a_0.8.0-8_amd64 + libgtkmm-2.4-1c2a_1:2.24.2-1_amd64 + libgtkmm-2.4-dbg_1:2.24.2-1_amd64 + libgtkmm-2.4-dev_1:2.24.2-1_amd64 + libgtkmm-3.0-1_3.4.2-1_amd64 + libgtkmm-3.0-dbg_3.4.2-1_amd64 + libgtkmm-3.0-dev_3.4.2-1_amd64 + libgtkpod-dev_2.1.2-1_amd64 + libgtkpod1_2.1.2-1_amd64 + libgtksourceview-3.0-0_3.4.2-1_amd64 + libgtksourceview-3.0-dev_3.4.2-1_amd64 + libgtksourceview2-2.0-cil_2.26.0-8_amd64 + libgtksourceview2-cil-dev_2.26.0-8_amd64 + libgtksourceview2.0-0_2.10.4-1_amd64 + libgtksourceview2.0-dev_2.10.4-1_amd64 + libgtksourceviewmm-3.0-0_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dbg_3.2.0-1_amd64 + libgtksourceviewmm-3.0-dev_3.2.0-1_amd64 + libgtkspell-3-0_3.0.0~hg20110814-1_amd64 + libgtkspell-3-dev_3.0.0~hg20110814-1_amd64 + libgtkspell-dev_2.0.16-1_amd64 + libgtkspell0_2.0.16-1_amd64 + libgtkstylus_0.3-2_amd64 + libgtop2-7_2.28.4-3_amd64 + libgtop2-dev_2.28.4-3_amd64 + libgts-0.7-5_0.7.6+darcs110121-1.1_amd64 + libgts-bin_0.7.6+darcs110121-1.1_amd64 + libgts-dbg_0.7.6+darcs110121-1.1_amd64 + libgts-dev_0.7.6+darcs110121-1.1_amd64 + libguac-client-rdp0_0.6.0-1_amd64 + libguac-client-vnc0_0.6.0-1_amd64 + libguac-dev_0.6.0-2_amd64 + libguac3_0.6.0-2_amd64 + libguard-perl_1.022-1+b1_amd64 + libgucharmap-2-90-7_1:3.4.1.1-2.1_amd64 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_amd64 + libgudev-1.0-0_175-7.2_amd64 + libgudev-1.0-dev_175-7.2_amd64 + libguess-dev_1.1-1_amd64 + libguess1_1.1-1_amd64 + libguestfs-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_amd64 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-java_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml_1:1.18.1-1+deb7u3_amd64 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_amd64 + libguestfs-perl_1:1.18.1-1+deb7u3_amd64 + libguestfs-tools_1:1.18.1-1+deb7u3_amd64 + libguestfs0_1:1.18.1-1+deb7u3_amd64 + libguestfs0-dbg_1:1.18.1-1+deb7u3_amd64 + libguichan-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_amd64 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-dev_0.8.2-10+b1_amd64 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_amd64 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_amd64 + libguile-ltdl-1_1.6.8-10.3_amd64 + libgupnp-1.0-4_0.18.4-1_amd64 + libgupnp-1.0-dbg_0.18.4-1_amd64 + libgupnp-1.0-dev_0.18.4-1_amd64 + libgupnp-av-1.0-2_0.10.3-1_amd64 + libgupnp-av-1.0-dbg_0.10.3-1_amd64 + libgupnp-av-1.0-dev_0.10.3-1_amd64 + libgupnp-dlna-1.0-2_0.6.6-1_amd64 + libgupnp-dlna-1.0-dbg_0.6.6-1_amd64 + libgupnp-dlna-1.0-dev_0.6.6-1_amd64 + libgupnp-igd-1.0-4_0.2.1-2_amd64 + libgupnp-igd-1.0-dbg_0.2.1-2_amd64 + libgupnp-igd-1.0-dev_0.2.1-2_amd64 + libgusb-dev_0.1.3-5_amd64 + libgusb2_0.1.3-5_amd64 + libgutenprint-dev_5.2.9-1_amd64 + libgutenprint2_5.2.9-1_amd64 + libgutenprintui2-1_5.2.9-1_amd64 + libgutenprintui2-dev_5.2.9-1_amd64 + libguytools2_2.0.1-1.1_amd64 + libguytools2-dev_2.0.1-1.1_amd64 + libgv-guile_2.26.3-14+deb7u1_amd64 + libgv-lua_2.26.3-14+deb7u1_amd64 + libgv-perl_2.26.3-14+deb7u1_amd64 + libgv-php5_2.26.3-14+deb7u1_amd64 + libgv-python_2.26.3-14+deb7u1_amd64 + libgv-ruby_2.26.3-14+deb7u1_amd64 + libgv-tcl_2.26.3-14+deb7u1_amd64 + libgvc5_2.26.3-14+deb7u1_amd64 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_amd64 + libgvnc-1.0-0_0.5.0-3.1_amd64 + libgvnc-1.0-0-dbg_0.5.0-3.1_amd64 + libgvnc-1.0-dev_0.5.0-3.1_amd64 + libgvpr1_2.26.3-14+deb7u1_amd64 + libgweather-3-0_3.4.1-1+build1_amd64 + libgweather-3-dev_3.4.1-1+build1_amd64 + libgwengui-fox16-0_4.3.3-1_amd64 + libgwengui-gtk2-0_4.3.3-1_amd64 + libgwengui-qt4-0_4.3.3-1_amd64 + libgwenhywfar60_4.3.3-1_amd64 + libgwenhywfar60-dbg_4.3.3-1_amd64 + libgwenhywfar60-dev_4.3.3-1_amd64 + libgwrap-runtime-dev_1.9.14-1.1_amd64 + libgwrap-runtime2_1.9.14-1.1_amd64 + libgwyddion2-0_2.28-2_amd64 + libgwyddion20-dev_2.28-2_amd64 + libgxps-dev_0.2.2-2_amd64 + libgxps-utils_0.2.2-2_amd64 + libgxps2_0.2.2-2_amd64 + libgyoto0_0.0.3-5_amd64 + libgyoto0-dev_0.0.3-5_amd64 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_amd64 + libh323-1.24.0_1.24.0~dfsg2-1_amd64 + libh323-dbg_1.24.0~dfsg2-1_amd64 + libh323plus-dev_1.24.0~dfsg2-1_amd64 + libhaildb-dbg_2.3.2-1.2_amd64 + libhaildb-dev_2.3.2-1.2_amd64 + libhaildb6_2.3.2-1.2_amd64 + libhal-dev_0.5.14-8_amd64 + libhal-storage-dev_0.5.14-8_amd64 + libhal-storage1_0.5.14-8_amd64 + libhal1_0.5.14-8_amd64 + libhamlib++-dev_1.2.15.1-1_amd64 + libhamlib-dev_1.2.15.1-1_amd64 + libhamlib-utils_1.2.15.1-1_amd64 + libhamlib2_1.2.15.1-1_amd64 + libhamlib2++c2_1.2.15.1-1_amd64 + libhamlib2-perl_1.2.15.1-1_amd64 + libhamlib2-tcl_1.2.15.1-1_amd64 + libhandoff-dev_0.1-5_amd64 + libhandoff0_0.1-5_amd64 + libhandoff0-dbg_0.1-5_amd64 + libhangul-dev_0.1.0-2_amd64 + libhangul1_0.1.0-2_amd64 + libhangul1-dbg_0.1.0-2_amd64 + libharminv-dev_1.3.1-9_amd64 + libharminv2_1.3.1-9_amd64 + libhash-fieldhash-perl_0.12-2_amd64 + libhashkit-dev_1.0.8-1_amd64 + libhashkit2_1.0.8-1_amd64 + libhawknl_1.6.8+dfsg2-1_amd64 + libhawknl-dbg_1.6.8+dfsg2-1_amd64 + libhawknl-dev_1.6.8+dfsg2-1_amd64 + libhbaapi-dev_2.2.5-1_amd64 + libhbaapi2_2.2.5-1_amd64 + libhbalinux-dev_1.0.14-1_amd64 + libhbalinux2_1.0.14-1_amd64 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhd-dev_16.0-2.2_amd64 + libhd16_16.0-2.2_amd64 + libhdate-dev_1.6-1_amd64 + libhdate-perl_1.6-1_amd64 + libhdate1_1.6-1_amd64 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhdf4-0_4.2r4-13_amd64 + libhdf4-0-alt_4.2r4-13_amd64 + libhdf4-alt-dev_4.2r4-13_amd64 + libhdf4-dev_4.2r4-13_amd64 + libhdf5-7_1.8.8-9_amd64 + libhdf5-7-dbg_1.8.8-9_amd64 + libhdf5-dev_1.8.8-9_amd64 + libhdf5-mpi-dev_1.8.8-9_amd64 + libhdf5-mpich2-7_1.8.8-9_amd64 + libhdf5-mpich2-7-dbg_1.8.8-9_amd64 + libhdf5-mpich2-dev_1.8.8-9_amd64 + libhdf5-openmpi-7_1.8.8-9_amd64 + libhdf5-openmpi-7-dbg_1.8.8-9_amd64 + libhdf5-openmpi-dev_1.8.8-9_amd64 + libhdf5-serial-dev_1.8.8-9_amd64 + libhdfeos-dev_2.17v1.00.dfsg.1-3_amd64 + libhdfeos0_2.17v1.00.dfsg.1-3_amd64 + libhdfeos5-ruby1.8_1.0-2+b1_amd64 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1_1.0-2+b1_amd64 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_amd64 + libhdhomerun-dev_20120405-1_amd64 + libhdhomerun1_20120405-1_amd64 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_amd64 + libhe5-hdfeos0_5.1.13.dfsg.1-3_amd64 + libheartbeat2_1:3.0.5-3_amd64 + libheartbeat2-dev_1:3.0.5-3_amd64 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64 + libheimdal-kadm5-perl_0.08-4_amd64 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhepmc-dev_2.06.09-1_amd64 + libhepmc4_2.06.09-1_amd64 + libhepmcfio-dev_2.06.09-1_amd64 + libhepmcfio4_2.06.09-1_amd64 + libhepmcinterface8_8.1.65-1_amd64 + libhepmcinterface8-dev_8.1.65-1_amd64 + libherwig59-2-dev_20061220+dfsg3-2_amd64 + libherwig59-2-gfortran_20061220+dfsg3-2_amd64 + libhesiod-dev_3.0.2-21_amd64 + libhesiod0_3.0.2-21_amd64 + libhfsp-dev_1.0.4-12_amd64 + libhfsp0_1.0.4-12_amd64 + libhighgui-dev_2.3.1-11_amd64 + libhighgui2.3_2.3.1-11_amd64 + libhighlight-perl_3.9-1_amd64 + libhippocanvas-1-0_0.3.1-1.1_amd64 + libhippocanvas-dev_0.3.1-1.1_amd64 + libhiredis-dbg_0.10.1-7_amd64 + libhiredis-dev_0.10.1-7_amd64 + libhiredis0.10_0.10.1-7_amd64 + libhivex-bin_1.3.6-2_amd64 + libhivex-dev_1.3.6-2_amd64 + libhivex-ocaml_1.3.6-2_amd64 + libhivex-ocaml-dev_1.3.6-2_amd64 + libhivex0_1.3.6-2_amd64 + libhivex0-dbg_1.3.6-2_amd64 + libhkl-dbg_4.0.3-4_amd64 + libhkl-dev_4.0.3-4_amd64 + libhkl4_4.0.3-4_amd64 + libhmsbeagle-dev_1.0-6_amd64 + libhmsbeagle-java_1.0-6_amd64 + libhmsbeagle1_1.0-6_amd64 + libhocr-dev_0.10.17-1+b2_amd64 + libhocr-python_0.10.17-1+b2_amd64 + libhocr0_0.10.17-1+b2_amd64 + libhogweed2_2.4-3_amd64 + libhpdf-2.2.1_2.2.1-1_amd64 + libhpdf-dev_2.2.1-1_amd64 + libhpmud-dev_3.12.6-3.1+deb7u1_amd64 + libhpmud0_3.12.6-3.1+deb7u1_amd64 + libhsclient-dev_1.1.0-7-g1044a28-1_amd64 + libhsm-bin_1:1.3.9-5_amd64 + libhtml-parser-perl_3.69-2_amd64 + libhtml-strip-perl_1.06-1+b2_amd64 + libhtml-template-pro-perl_0.9509-1_amd64 + libhtml-tidy-perl_1.50-1+b2_amd64 + libhtmlcxx-dev_0.85-2_amd64 + libhtmlcxx3_0.85-2_amd64 + libhtp-dev_0.2.6-2_amd64 + libhtp1_0.2.6-2_amd64 + libhtsengine-dev_1.06-1_amd64 + libhtsengine1_1.06-1_amd64 + libhttp-ocaml-dev_0.1.5-1+b2_amd64 + libhttp-parser-xs-perl_0.14-1+b1_amd64 + libhttrack-dev_3.46.1-1_amd64 + libhttrack2_3.46.1-1_amd64 + libhugs-alut-bundled_98.200609.21-5.3_amd64 + libhugs-base-bundled_98.200609.21-5.3_amd64 + libhugs-cabal-bundled_98.200609.21-5.3_amd64 + libhugs-fgl-bundled_98.200609.21-5.3_amd64 + libhugs-glut-bundled_98.200609.21-5.3_amd64 + libhugs-haskell-src-bundled_98.200609.21-5.3_amd64 + libhugs-haskell98-bundled_98.200609.21-5.3_amd64 + libhugs-haxml-bundled_98.200609.21-5.3_amd64 + libhugs-hgl-bundled_98.200609.21-5.3_amd64 + libhugs-hunit-bundled_98.200609.21-5.3_amd64 + libhugs-mtl-bundled_98.200609.21-5.3_amd64 + libhugs-network-bundled_98.200609.21-5.3_amd64 + libhugs-openal-bundled_98.200609.21-5.3_amd64 + libhugs-opengl-bundled_98.200609.21-5.3_amd64 + libhugs-parsec-bundled_98.200609.21-5.3_amd64 + libhugs-quickcheck-bundled_98.200609.21-5.3_amd64 + libhugs-stm-bundled_98.200609.21-5.3_amd64 + libhugs-time-bundled_98.200609.21-5.3_amd64 + libhugs-unix-bundled_98.200609.21-5.3_amd64 + libhugs-x11-bundled_98.200609.21-5.3_amd64 + libhugs-xhtml-bundled_98.200609.21-5.3_amd64 + libhunspell-1.3-0_1.3.2-4_amd64 + libhunspell-1.3-0-dbg_1.3.2-4_amd64 + libhunspell-dev_1.3.2-4_amd64 + libhwloc-dev_1.4.1-4_amd64 + libhwloc5_1.4.1-4_amd64 + libhx-dev_3.12.1-1_amd64 + libhx28_3.12.1-1_amd64 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64 + libhyantes-dev_1.3.0-1_amd64 + libhyantes0_1.3.0-1_amd64 + libhyphen-dev_2.8.3-2_amd64 + libhyphen0_2.8.3-2_amd64 + libhypre-2.8.0b_2.8.0b-1_amd64 + libhz-dev_0.3.16-3_amd64 + libhz0_0.3.16-3_amd64 + libib-util_2.5.2.26540.ds4-1~deb7u1_amd64 + libibcm-dev_1.0.4-1.1_amd64 + libibcm1_1.0.4-1.1_amd64 + libibcommon-dev_1.1.2-20090314-1_amd64 + libibcommon1_1.1.2-20090314-1_amd64 + libibdm-dev_1.2-OFED-1.4.2-1.3_amd64 + libibdm1_1.2-OFED-1.4.2-1.3_amd64 + libibmad-dev_1.2.3-20090314-1.1_amd64 + libibmad1_1.2.3-20090314-1.1_amd64 + libibtk-dev_0.0.14-12_amd64 + libibtk0_0.0.14-12_amd64 + libibumad-dev_1.2.3-20090314-1.1_amd64 + libibumad1_1.2.3-20090314-1.1_amd64 + libibus-1.0-0_1.4.1-9+deb7u1_amd64 + libibus-1.0-dev_1.4.1-9+deb7u1_amd64 + libibus-qt-dev_1.3.1-2.1_amd64 + libibus-qt1_1.3.1-2.1_amd64 + libibverbs-dev_1.1.6-1_amd64 + libibverbs1_1.1.6-1_amd64 + libibverbs1-dbg_1.1.6-1_amd64 + libical-dbg_0.48-2_amd64 + libical-dev_0.48-2_amd64 + libical0_0.48-2_amd64 + libicapapi-dev_1:0.1.6-1.1_amd64 + libicapapi0_1:0.1.6-1.1_amd64 + libicapapi0-dbg_1:0.1.6-1.1_amd64 + libicc-dev_2.12+argyll1.4.0-8_amd64 + libicc-utils-dev_1.6.4-1+b1_amd64 + libicc-utils2_1.6.4-1+b1_amd64 + libicc2_2.12+argyll1.4.0-8_amd64 + libice-dev_2:1.0.8-2_amd64 + libice6_2:1.0.8-2_amd64 + libice6-dbg_2:1.0.8-2_amd64 + libicebox34_3.4.2-8.2_amd64 + libicedb34_3.4.2-8.2_amd64 + libicee-dev_1.2.0-6.1_amd64 + libicee12_1.2.0-6.1_amd64 + libicegrid34_3.4.2-8.2_amd64 + libicepatch2-34_3.4.2-8.2_amd64 + libicessl34_3.4.2-8.2_amd64 + libicestorm34_3.4.2-8.2_amd64 + libiceutil34_3.4.2-8.2_amd64 + libicexml34_3.4.2-8.2_amd64 + libicns-dev_0.8.1-1_amd64 + libicns1_0.8.1-1_amd64 + libiconv-hook-dev_0.0.20021209-10_amd64 + libiconv-hook1_0.0.20021209-10_amd64 + libics-dev_1.5.2-3_amd64 + libics0_1.5.2-3_amd64 + libicu-dev_4.8.1.1-12+deb7u1_amd64 + libicu48_4.8.1.1-12+deb7u1_amd64 + libicu48-dbg_4.8.1.1-12+deb7u1_amd64 + libid3-3.8.3-dev_3.8.3-15_amd64 + libid3-3.8.3c2a_3.8.3-15_amd64 + libid3-tools_3.8.3-15_amd64 + libid3tag0_0.15.1b-10_amd64 + libid3tag0-dev_0.15.1b-10_amd64 + libident_0.22-3_amd64 + libident-dev_0.22-3_amd64 + libidl-dev_0.8.14-0.2_amd64 + libidl0_0.8.14-0.2_amd64 + libidn11_1.25-2_amd64 + libidn11-dev_1.25-2_amd64 + libidn2-0_0.8-2_amd64 + libidn2-0-dbg_0.8-2_amd64 + libidn2-0-dev_0.8-2_amd64 + libido-0.1-0_0.3.4-1_amd64 + libido-0.1-dev_0.3.4-1_amd64 + libido3-0.1-0_0.3.4-1_amd64 + libido3-0.1-dev_0.3.4-1_amd64 + libidzebra-2.0-0_2.0.44-3_amd64 + libidzebra-2.0-dev_2.0.44-3_amd64 + libidzebra-2.0-mod-alvis_2.0.44-3_amd64 + libidzebra-2.0-mod-dom_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-marc_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-regx_2.0.44-3_amd64 + libidzebra-2.0-mod-grs-xml_2.0.44-3_amd64 + libidzebra-2.0-mod-text_2.0.44-3_amd64 + libidzebra-2.0-modules_2.0.44-3_amd64 + libiec16022-0_0.2.4-1_amd64 + libiec16022-dev_0.2.4-1_amd64 + libiec61883-0_1.2.0-0.1_amd64 + libiec61883-dev_1.2.0-0.1_amd64 + libieee1284-3_0.2.11-10_amd64 + libieee1284-3-dev_0.2.11-10_amd64 + libifd-cyberjack6_3.99.5final.sp03-1_amd64 + libifp-dev_1.0.0.2-5_amd64 + libifp4_1.0.0.2-5_amd64 + libifstat-dev_1.1-8_amd64 + libigraph0_0.5.4-2_amd64 + libigraph0-dev_0.5.4-2_amd64 + libigstk4_4.4.0-2+b1_amd64 + libigstk4-dbg_4.4.0-2+b1_amd64 + libigstk4-dev_4.4.0-2+b1_amd64 + libijs-0.35_0.35-8_amd64 + libijs-dev_0.35-8_amd64 + libiksemel-dev_1.2-4_amd64 + libiksemel-utils_1.2-4_amd64 + libiksemel3_1.2-4_amd64 + libikvm-native_7.0.4335.0+ds-1_amd64 + libilmbase-dev_1.0.1-4_amd64 + libilmbase6_1.0.1-4_amd64 + libimage-exif-perl_2.01-1_amd64 + libimage-imlib2-perl_2.03-1+b1_amd64 + libimage-librsvg-perl_0.07-6+b1_amd64 + libimage-seek-perl_0.02-1+b2_amd64 + libimager-perl_0.91+dfsg-2_amd64 + libimager-qrcode-perl_0.033-1+b1_amd64 + libimdi-dev_1.4.0-8_amd64 + libimdi0_1.4.0-8_amd64 + libiml-dev_1.0.3-4.2_amd64 + libiml0_1.0.3-4.2_amd64 + libimlib2_1.4.5-1_amd64 + libimlib2-dev_1.4.5-1_amd64 + libimlib2-ruby_0.5.2-2.1_amd64 + libimobiledevice-dev_1.1.1-4_amd64 + libimobiledevice-utils_1.1.1-4_amd64 + libimobiledevice2_1.1.1-4_amd64 + libimobiledevice2-dbg_1.1.1-4_amd64 + libindi-dev_0.9.1-2_amd64 + libindi0b_0.9.1-2_amd64 + libindicate-dev_0.6.92-1_amd64 + libindicate-gtk-dev_0.6.92-1_amd64 + libindicate-gtk3_0.6.92-1_amd64 + libindicate-gtk3-3_0.6.92-1_amd64 + libindicate-gtk3-dev_0.6.92-1_amd64 + libindicate-qt-dev_0.2.5.91-5_amd64 + libindicate-qt1_0.2.5.91-5_amd64 + libindicate5_0.6.92-1_amd64 + libindicator-dev_0.5.0-1_amd64 + libindicator-messages-status-provider-dev_0.6.0-1_amd64 + libindicator-messages-status-provider1_0.6.0-1_amd64 + libindicator-tools_0.5.0-1_amd64 + libindicator3-7_0.5.0-1_amd64 + libindicator3-dev_0.5.0-1_amd64 + libindicator3-tools_0.5.0-1_amd64 + libindicator7_0.5.0-1_amd64 + libindigo-dev_1.0.0-2_amd64 + libindigo0d_1.0.0-2_amd64 + libindirect-perl_0.26-1+b1_amd64 + libinfgtk3-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-0_0.5.2-6.1_amd64 + libinfinity-0.5-dbg_0.5.2-6.1_amd64 + libinfinity-0.5-dev_0.5.2-6.1_amd64 + libini-config-dev_0.1.3-2_amd64 + libini-config2_0.1.3-2_amd64 + libinifiles-ocaml_1.2-2+b1_amd64 + libinifiles-ocaml-dev_1.2-2+b1_amd64 + libinnodb-dbg_1.0.6.6750-1_amd64 + libinnodb-dev_1.0.6.6750-1_amd64 + libinnodb3_1.0.6.6750-1_amd64 + libinotify-ocaml_1.0-1+b3_amd64 + libinotify-ocaml-dev_1.0-1+b3_amd64 + libinotifytools0_3.14-1_amd64 + libinotifytools0-dev_3.14-1_amd64 + libinput-pad-dev_1.0.1-2_amd64 + libinput-pad-xtest_1.0.1-2_amd64 + libinput-pad1_1.0.1-2_amd64 + libinsighttoolkit3-dev_3.20.1+git20120521-3_amd64 + libinsighttoolkit3.20_3.20.1+git20120521-3_amd64 + libinstpatch-1.0-0_1.0.0-3_amd64 + libinstpatch-1.0-0-dbg_1.0.0-3_amd64 + libinstpatch-dev_1.0.0-3_amd64 + libint-dbg_1.1.4-1_amd64 + libint-dev_1.1.4-1_amd64 + libint1_1.1.4-1_amd64 + libinternals-perl_1.1-1+b1_amd64 + libintl-xs-perl_1.20-1+b2_amd64 + libinventor0_2.1.5-10-16_amd64 + libio-aio-perl_4.15-1_amd64 + libio-dirent-perl_0.05-1_amd64 + libio-epoll-perl_0.03-1_amd64 + libio-interface-perl_1.06-1+b1_amd64 + libio-pty-perl_1:1.08-1+b2_amd64 + libio-socket-multicast-perl_1.12-1+b2_amd64 + libiodbc2_3.52.7-2+deb7u1_amd64 + libiodbc2-dev_3.52.7-2+deb7u1_amd64 + libion-dev_3.0.1~dfsg1-1_amd64 + libion0_3.0.1~dfsg1-1_amd64 + libipa-hbac-dev_1.8.4-2_amd64 + libipa-hbac0_1.8.4-2_amd64 + libipathverbs-dev_1.2-1_amd64 + libipathverbs1_1.2-1_amd64 + libipathverbs1-dbg_1.2-1_amd64 + libipc-sharelite-perl_0.17-2_amd64 + libipe-dev_7.1.2-1_amd64 + libipe7.1.2_7.1.2-1_amd64 + libipmiconsole-dev_1.1.5-3_amd64 + libipmiconsole2_1.1.5-3_amd64 + libipmidetect-dev_1.1.5-3_amd64 + libipmidetect0_1.1.5-3_amd64 + libipmimonitoring-dev_1.1.5-3_amd64 + libipmimonitoring5_1.1.5-3_amd64 + libipset-dev_6.12.1-1_amd64 + libipset2_6.12.1-1_amd64 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_amd64 + libiptcdata-bin_1.0.4-3_amd64 + libiptcdata0_1.0.4-3_amd64 + libiptcdata0-dbg_1.0.4-3_amd64 + libiptcdata0-dev_1.0.4-3_amd64 + libircclient-dev_1.3+dfsg1-3_amd64 + libircclient1_1.3+dfsg1-3_amd64 + libirman-dev_0.4.4-2_amd64 + libirrlicht-dev_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a_1.7.3+dfsg1-4_amd64 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_amd64 + libisajet758-3-dev_20061220+dfsg3-2_amd64 + libisajet758-3-gfortran_20061220+dfsg3-2_amd64 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + libiscsi-bin_1.4.0-3_amd64 + libiscsi-dev_1.4.0-3_amd64 + libiscsi1_1.4.0-3_amd64 + libisl-dbg_0.10-3_amd64 + libisl-dev_0.10-3_amd64 + libisl10_0.10-3_amd64 + libiso9660-8_0.83-4_amd64 + libiso9660-dev_0.83-4_amd64 + libisoburn-dbg_1.2.2-2_amd64 + libisoburn-dev_1.2.2-2_amd64 + libisoburn1_1.2.2-2_amd64 + libisofs-dbg_1.2.2-1_amd64 + libisofs-dev_1.2.2-1_amd64 + libisofs6_1.2.2-1_amd64 + libitalc_1:1.0.13-1.4_amd64 + libitext-java-gcj_2.1.7-3+deb7u1_amd64 + libitl-dev_0.7.0-3_amd64 + libitl-gobject-dev_0.2-1_amd64 + libitl-gobject0_0.2-1_amd64 + libitl0_0.7.0-3_amd64 + libitm1_4.7.2-5_amd64 + libitm1-dbg_4.7.2-5_amd64 + libitpp-dev_4.2-4_amd64 + libitpp7_4.2-4_amd64 + libitpp7-dbg_4.2-4_amd64 + libitsol-dev_1.0.0-2_amd64 + libitsol1_1.0.0-2_amd64 + libiv-unidraw1_1.2.10a1-1_amd64 + libiv1_1.2.10a1-1_amd64 + libivykis-dev_0.30.1-2_amd64 + libivykis0_0.30.1-2_amd64 + libivykis0-dbg_0.30.1-2_amd64 + libiw-dev_30~pre9-8_amd64 + libiw30_30~pre9-8_amd64 + libixp_0.5-5_amd64 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_amd64 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_amd64 + libjalali-dev_0.4.0-1.1_amd64 + libjalali0_0.4.0-1.1_amd64 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_amd64 + libjansson-dbg_2.3.1-2_amd64 + libjansson-dev_2.3.1-2_amd64 + libjansson4_2.3.1-2_amd64 + libjasper-dev_1.900.1-13_amd64 + libjasper-runtime_1.900.1-13_amd64 + libjasper1_1.900.1-13_amd64 + libjaula-dev_1.4.0-3_amd64 + libjaula-doc_1.4.0-3_amd64 + libjaula1_1.4.0-3_amd64 + libjava-gnome-jni_4.1.1-4_amd64 + libjava3d-jni_1.5.2+dfsg-8_amd64 + libjavascript-minifier-xs-perl_0.09-1+b2_amd64 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_amd64 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_amd64 + libjaxp1.3-java-gcj_1.3.05-2_amd64 + libjbig-dev_2.0-2_amd64 + libjbig0_2.0-2_amd64 + libjbig2dec0_0.11+20120125-1_amd64 + libjbig2dec0-dev_0.11+20120125-1_amd64 + libjcode-pm-perl_2.06-1_amd64 + libjconv-bin_2.8-6+b1_amd64 + libjconv-dev_2.8-6+b1_amd64 + libjconv2_2.8-6+b1_amd64 + libjemalloc-dev_3.0.0-3_amd64 + libjemalloc1_3.0.0-3_amd64 + libjemalloc1-dbg_3.0.0-3_amd64 + libjetty-extra_6.1.26-1_amd64 + libjffi-jni_1.0.2-9_amd64 + libjhdf4-java_2.8.0-5_amd64 + libjhdf4-jni_2.8.0-5_amd64 + libjhdf5-java_2.8.0-5_amd64 + libjhdf5-jni_2.8.0-5_amd64 + libjim-dev_0.73-3_amd64 + libjim0debian2_0.73-3_amd64 + libjinput-jni_20100502+dfsg-7_amd64 + libjmagick6-jni_6.2.6-0-8+b2_amd64 + libjna-java_3.2.7-4_amd64 + libjogl-jni_1.1.1+dak1-12_amd64 + libjogl2-jni_2.0-rc5-2_amd64 + libjpeg-progs_8d-1_amd64 + libjpeg62_6b1-3_amd64 + libjpeg62-dbg_6b1-3_amd64 + libjpeg62-dev_6b1-3_amd64 + libjpeg8_8d-1_amd64 + libjpeg8-dbg_8d-1_amd64 + libjpeg8-dev_8d-1_amd64 + libjpgalleg4-dev_2:4.4.2-2.1_amd64 + libjpgalleg4.4_2:4.4.2-2.1_amd64 + libjs-of-ocaml_1.2-2_amd64 + libjs-of-ocaml-dev_1.2-2_amd64 + libjson-glib-1.0-0_0.14.2-1_amd64 + libjson-glib-1.0-0-dbg_0.14.2-1_amd64 + libjson-glib-dev_0.14.2-1_amd64 + libjson-spirit-dev_4.04-1+b1_amd64 + libjson-static-camlp4-dev_0.9.8-1+b5_amd64 + libjson-wheel-ocaml-dev_1.0.6-2+b8_amd64 + libjson-xs-perl_2.320-1+b1_amd64 + libjson0_0.10-1.2_amd64 + libjson0-dbg_0.10-1.2_amd64 + libjson0-dev_0.10-1.2_amd64 + libjsoncpp-dev_0.6.0~rc2-3_amd64 + libjsoncpp0_0.6.0~rc2-3_amd64 + libjss-java_4.3.1-4_amd64 + libjte-dev_1.19-1_amd64 + libjte1_1.19-1_amd64 + libjthread-dbg_1.3.1-3_amd64 + libjthread-dev_1.3.1-3_amd64 + libjthread1.3.1_1.3.1-3_amd64 + libjudy-dev_1.0.5-1_amd64 + libjudydebian1_1.0.5-1_amd64 + libjuman-dev_5.1-2.1_amd64 + libjuman4_5.1-2.1_amd64 + libjxgrabkey-jni_0.3.2-6_amd64 + libk3b-dev_2.0.2-6_amd64 + libk3b6_2.0.2-6_amd64 + libk3b6-extracodecs_2.0.2-6_amd64 + libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64 + libkabc4_4:4.8.4-2_amd64 + libkactivities-bin_4:4.8.4-1_amd64 + libkactivities-dbg_4:4.8.4-1_amd64 + libkactivities-dev_4:4.8.4-1_amd64 + libkactivities6_4:4.8.4-1_amd64 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkakasi2_2.3.5~pre1+cvs20071101-1_amd64 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_amd64 + libkal-dev_0.9.0-1_amd64 + libkalarmcal2_4:4.8.4-2_amd64 + libkarma-dev_0.1.2-2.3_amd64 + libkarma0_0.1.2-2.3_amd64 + libkasten1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1core1_4:4.8.4+dfsg-1_amd64 + libkasten1gui1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1core1_4:4.8.4+dfsg-1_amd64 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_amd64 + libkate-dev_0.4.1-1_amd64 + libkate-tools_0.4.1-1_amd64 + libkate1_0.4.1-1_amd64 + libkate1-dbg_0.4.1-1_amd64 + libkateinterfaces4_4:4.8.4-1_amd64 + libkatepartinterfaces4_4:4.8.4-1_amd64 + libkaya-gd-dev_0.4.4-6_amd64 + libkaya-gl-dev_0.4.4-6_amd64 + libkaya-mysql-dev_0.4.4-6_amd64 + libkaya-ncurses-dev_0.4.4-6_amd64 + libkaya-ncursesw-dev_0.4.4-6_amd64 + libkaya-pgsql-dev_0.4.4-6_amd64 + libkaya-sdl-dev_0.4.4-6_amd64 + libkaya-sqlite3-dev_0.4.4-6_amd64 + libkblog4_4:4.8.4-2_amd64 + libkcal4_4:4.8.4-2_amd64 + libkcalcore4_4:4.8.4-2_amd64 + libkcalutils4_4:4.8.4-2_amd64 + libkcddb-dev_4:4.8.4-2_amd64 + libkcddb4_4:4.8.4-2_amd64 + libkcmutils4_4:4.8.4-4_amd64 + libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkdcraw-dev_4:4.8.4-1_amd64 + libkdcraw20_4:4.8.4-1_amd64 + libkdcraw20-dbg_4:4.8.4-1_amd64 + libkde3support4_4:4.8.4-4_amd64 + libkdeclarative5_4:4.8.4-4_amd64 + libkdecorations4_4:4.8.4-6_amd64 + libkdecore5_4:4.8.4-4_amd64 + libkdeedu-dbg_4:4.8.4-1_amd64 + libkdeedu-dev_4:4.8.4-1_amd64 + libkdegames-dev_4:4.8.4-3_amd64 + libkdegames5a_4:4.8.4-3_amd64 + libkdepim4_4:4.4.11.1+l10n-3+b1_amd64 + libkdesu5_4:4.8.4-4_amd64 + libkdeui5_4:4.8.4-4_amd64 + libkdewebkit5_4:4.8.4-4_amd64 + libkdnssd4_4:4.8.4-4_amd64 + libkeduvocdocument4_4:4.8.4-1_amd64 + libkemoticons4_4:4.8.4-4_amd64 + libkephal4abi1_4:4.8.4-6_amd64 + libkernlib1-dev_20061220+dfsg3-2_amd64 + libkernlib1-gfortran_20061220+dfsg3-2_amd64 + libkexiv2-10_4:4.8.4-1_amd64 + libkexiv2-dbg_4:4.8.4-1_amd64 + libkexiv2-dev_4:4.8.4-1_amd64 + libkeybinder-dev_0.2.2-4_amd64 + libkeybinder0_0.2.2-4_amd64 + libkeyutils-dev_1.5.5-3_amd64 + libkeyutils1_1.5.5-3_amd64 + libkfile4_4:4.8.4-4_amd64 + libkggzgames4_4:4.8.4-3_amd64 + libkggzmod4_4:4.8.4-3_amd64 + libkggznet4_4:4.8.4-3_amd64 + libkholidays4_4:4.8.4-2_amd64 + libkhtml5_4:4.8.4-4_amd64 + libkibi-dbg_0.1-1_amd64 + libkibi-dev_0.1-1_amd64 + libkibi0_0.1-1_amd64 + libkidletime4_4:4.8.4-4_amd64 + libkimap4_4:4.8.4-2_amd64 + libkimproxy4_4:4.8.4-4_amd64 + libkinosearch1-perl_1.00-1+b2_amd64 + libkio5_4:4.8.4-4_amd64 + libkipi-dbg_4:4.8.4-1_amd64 + libkipi-dev_4:4.8.4-1_amd64 + libkipi8_4:4.8.4-1_amd64 + libkiten-dev_4:4.8.4-1_amd64 + libkiten4abi1_4:4.8.4-1_amd64 + libkitware-mummy-runtime1.0-cil_1.0.2-5_amd64 + libkjsapi4_4:4.8.4-4_amd64 + libkjsembed4_4:4.8.4-4_amd64 + libklatexformula3_3.2.6-1_amd64 + libklatexformula3-dev_3.2.6-1_amd64 + libkldap4_4:4.8.4-2_amd64 + libkleo4_4:4.4.11.1+l10n-3+b1_amd64 + libklibc_2.0.1-3.1_amd64 + libklibc-dev_2.0.1-3.1_amd64 + libklu1.1.0_1:3.4.0-3_amd64 + libkmahjongglib4_4:4.8.4-3_amd64 + libkmbox4_4:4.8.4-2_amd64 + libkmediaplayer4_4:4.8.4-4_amd64 + libkmfl-dev_0.9.8-1_amd64 + libkmfl0_0.9.8-1_amd64 + libkmflcomp-dev_0.9.8-1_amd64 + libkmflcomp0_0.9.8-1_amd64 + libkmime4_4:4.8.4-2_amd64 + libkml-dev_1.3.0~r863-4.1_amd64 + libkml-java_1.3.0~r863-4.1_amd64 + libkml0_1.3.0~r863-4.1_amd64 + libkmlframework-java_0.0.20090718-1_amd64 + libkmod-dev_9-3_amd64 + libkmod2_9-3_amd64 + libkms1_2.4.40-1~deb7u2_amd64 + libkms1-dbg_2.4.40-1~deb7u2_amd64 + libknewstuff2-4_4:4.8.4-4_amd64 + libknewstuff3-4_4:4.8.4-4_amd64 + libknotifyconfig4_4:4.8.4-4_amd64 + libkntlm4_4:4.8.4-4_amd64 + libkokyu-6.0.3_6.0.3+dfsg-0.1_amd64 + libkokyu-dev_6.0.3+dfsg-0.1_amd64 + libkonq-common_4:4.8.4-2_amd64 + libkonq5-dev_4:4.8.4-2_amd64 + libkonq5abi1_4:4.8.4-2_amd64 + libkonqsidebarplugin-dev_4:4.8.4-2_amd64 + libkonqsidebarplugin4a_4:4.8.4-2_amd64 + libkontactinterface4_4:4.8.4-2_amd64 + libkopenafs1_1.6.1-3+deb7u1_amd64 + libkopete-dev_4:4.8.4-1+b1_amd64 + libkopete4_4:4.8.4-1+b1_amd64 + libkosd2_0.8.1-1_amd64 + libkosd2-dev_0.8.1-1_amd64 + libkparts4_4:4.8.4-4_amd64 + libkpathsea-dev_2012.20120628-4_amd64 + libkpathsea6_2012.20120628-4_amd64 + libkpgp4_4:4.4.11.1+l10n-3+b1_amd64 + libkpimidentities4_4:4.8.4-2_amd64 + libkpimtextedit4_4:4.8.4-2_amd64 + libkpimutils4_4:4.8.4-2_amd64 + libkprintutils4_4:4.8.4-4_amd64 + libkpty4_4:4.8.4-4_amd64 + libkqueue-dev_1.0.4-2_amd64 + libkqueue0_1.0.4-2_amd64 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64 + libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_amd64 + libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64 + libkresources4_4:4.8.4-2_amd64 + libkrosscore4_4:4.8.4-4_amd64 + libkrossui4_4:4.8.4-4_amd64 + libksane-dbg_4:4.8.4-1_amd64 + libksane-dev_4:4.8.4-1_amd64 + libksane0_4:4.8.4-1_amd64 + libksba-dev_1.2.0-2_amd64 + libksba8_1.2.0-2_amd64 + libkscreensaver5_4:4.8.4-6_amd64 + libksgrd4_4:4.8.4-6_amd64 + libksieve4_4:4.4.11.1+l10n-3+b1_amd64 + libksignalplotter4_4:4.8.4-6_amd64 + libkst2core2_2.0.3-1.3_amd64 + libkst2math2_2.0.3-1.3_amd64 + libkst2widgets2_2.0.3-1.3_amd64 + libktexteditor4_4:4.8.4-4_amd64 + libktnef4_4:4.8.4-2_amd64 + libktoblzcheck-dbg_1.39-1_amd64 + libktoblzcheck1-dev_1.39-1_amd64 + libktoblzcheck1c2a_1.39-1_amd64 + libktorrent-dbg_1.2.1-1_amd64 + libktorrent-dev_1.2.1-1_amd64 + libktorrent4_1.2.1-1_amd64 + libktpchat0_0.4.0-1_amd64 + libktpcommoninternalsprivate-dbg_0.4.0-1_amd64 + libktpcommoninternalsprivate-dev_0.4.0-1_amd64 + libktpcommoninternalsprivate1_0.4.0-1_amd64 + libkunitconversion4_4:4.8.4-4_amd64 + libkutils4_4:4.8.4-4_amd64 + libkvilib4_4:4.1.3+20111124.svn5988-2_amd64 + libkvutils-dev_2.9.0-1_amd64 + libkvutils10_2.9.0-1_amd64 + libkwineffects1abi3_4:4.8.4-6_amd64 + libkwinglutils1_4:4.8.4-6_amd64 + libkwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libkwnn0_1.1.1~a021+cvs20100325-6_amd64 + libkworkspace4abi1_4:4.8.4-6_amd64 + libkwwidgets1-dev_1.0.0~cvs20100930-8_amd64 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_amd64 + libkxl0_1.1.7-16_amd64 + libkxl0-dev_1.1.7-16_amd64 + libkxmlrpcclient4_4:4.8.4-2_amd64 + liblablgl-ocaml_1.04-5+b3_amd64 + liblablgl-ocaml-dev_1.04-5+b3_amd64 + liblablgtk-extras-ocaml-dev_1.0-1+b2_amd64 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_amd64 + liblablgtkmathview-ocaml_0.7.8-6+b1_amd64 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_amd64 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_amd64 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_amd64 + libladr-dev_0.0.200902a-2.1_amd64 + libladr4_0.0.200902a-2.1_amd64 + libladspa-ocaml_0.1.4-1+b1_amd64 + libladspa-ocaml-dev_0.1.4-1+b1_amd64 + liblam4_7.1.4-3_amd64 + liblangscan-ruby_1.2+cvs20070125-1.1_amd64 + liblapack-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-pic_3.4.1+dfsg-1+deb70u1_amd64 + liblapack-test_3.4.1+dfsg-1+deb70u1_amd64 + liblapack3_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke_3.4.1+dfsg-1+deb70u1_amd64 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_amd64 + liblas-bin_1.2.1-5+b1_amd64 + liblas-dev_1.2.1-5+b1_amd64 + liblas1_1.2.1-5+b1_amd64 + liblash-compat-1debian0_1+dfsg0-3_amd64 + liblasi-dev_1.1.0-1_amd64 + liblasi0_1.1.0-1_amd64 + liblasso-perl_2.3.6-2_amd64 + liblasso3_2.3.6-2_amd64 + liblasso3-dev_2.3.6-2_amd64 + liblastfm-dbg_0.4.0~git20090710-2_amd64 + liblastfm-dev_0.4.0~git20090710-2_amd64 + liblastfm-fingerprint0_0.4.0~git20090710-2_amd64 + liblastfm-ocaml-dev_0.3.0-2+b6_amd64 + liblastfm0_0.4.0~git20090710-2_amd64 + liblcgdm-dev_1.8.2-1+b2_amd64 + liblcgdm1_1.8.2-1+b2_amd64 + liblchown-perl_1.01-1+b2_amd64 + liblcms-utils_1.19.dfsg-1.2_amd64 + liblcms1_1.19.dfsg-1.2_amd64 + liblcms1-dev_1.19.dfsg-1.2_amd64 + liblcms2-2_2.2+git20110628-2.2_amd64 + liblcms2-dev_2.2+git20110628-2.2_amd64 + liblcms2-utils_2.2+git20110628-2.2_amd64 + libldap-2.4-2_2.4.31-1+nmu2_amd64 + libldap-2.4-2-dbg_2.4.31-1+nmu2_amd64 + libldap-ocaml-dev_2.1.8-8+b9_amd64 + libldap2-dev_2.4.31-1+nmu2_amd64 + libldb-dev_1:1.1.6-1_amd64 + libldb1_1:1.1.6-1_amd64 + libldb1-dbg_1:1.1.6-1_amd64 + libldl2.0.1_1:3.4.0-3_amd64 + libldns-dev_1.6.13-1_amd64 + libldns1_1.6.13-1_amd64 + libldns1-dbg_1.6.13-1_amd64 + libledit-ocaml-dev_2.03-1+b2_amd64 + liblensfun-dev_0.2.5-2_amd64 + liblensfun0_0.2.5-2_amd64 + liblept3_1.69-3.1_amd64 + libleptonica-dev_1.69-3.1_amd64 + libleveldb-dev_0+20120530.gitdd0d562-1_amd64 + libleveldb1_0+20120530.gitdd0d562-1_amd64 + liblexical-sealrequirehints-perl_0.007-1_amd64 + liblfc-dev_1.8.2-1+b2_amd64 + liblfc-perl_1.8.2-1+b2_amd64 + liblfc1_1.8.2-1+b2_amd64 + liblhapdf-dev_5.8.7+repack-1_amd64 + liblhapdf0_5.8.7+repack-1_amd64 + liblhasa-dev_0.0.7-2_amd64 + liblhasa0_0.0.7-2_amd64 + liblicense-cli_0.8.1-3_amd64 + liblicense-dev_0.8.1-3_amd64 + liblicense3_0.8.1-3_amd64 + liblightdm-gobject-1-0_1.2.2-4_amd64 + liblightdm-gobject-dev_1.2.2-4_amd64 + liblightdm-qt-2-0_1.2.2-4_amd64 + liblightdm-qt-dev_1.2.2-4_amd64 + liblilv-0-0_0.14.2~dfsg0-4_amd64 + liblilv-dev_0.14.2~dfsg0-4_amd64 + liblinear-dbg_1.8+dfsg-1_amd64 + liblinear-dev_1.8+dfsg-1_amd64 + liblinear-tools_1.8+dfsg-1_amd64 + liblinear1_1.8+dfsg-1_amd64 + liblinebreak2_2.1-1_amd64 + liblinebreak2-dev_2.1-1_amd64 + liblingua-stem-snowball-perl_0.952-2+b2_amd64 + liblink-grammar4_4.7.4-2_amd64 + liblink-grammar4-dev_4.7.4-2_amd64 + liblink-grammar4-java_4.7.4-2_amd64 + liblinphone-dev_3.5.2-10_amd64 + liblinphone4_3.5.2-10_amd64 + liblinux-dvb-perl_1.01-2+b2_amd64 + liblinux-inotify2-perl_1:1.22-0.2+b1_amd64 + liblip-dev_2.0.0-1.1_amd64 + liblip2_2.0.0-1.1_amd64 + liblircclient-dev_0.9.0~pre1-1_amd64 + liblircclient0_0.9.0~pre1-1_amd64 + liblist-moreutils-perl_0.33-1+b1_amd64 + liblistaller-glib-dev_0.5.5-2_amd64 + liblistaller-glib0_0.5.5-2_amd64 + liblivemedia-dev_2012.05.17-1_amd64 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_amd64 + libllvm-3.0-ocaml-dev_3.0-10_amd64 + libllvm-3.1-ocaml-dev_3.1-1_amd64 + libllvm-ocaml-dev_1:3.0-14+nmu2_amd64 + libllvm2.9_2.9+dfsg-7_amd64 + libllvm3.0_3.0-10_amd64 + libllvm3.1_3.1-1_amd64 + liblo-dev_0.26~repack-7_amd64 + liblo-ocaml_0.1.0-1+b1_amd64 + liblo-ocaml-dev_0.1.0-1+b1_amd64 + liblo-tools_0.26~repack-7_amd64 + liblo10k1-0_1.0.25-2_amd64 + liblo10k1-dev_1.0.25-2_amd64 + liblo7_0.26~repack-7_amd64 + libloadpng4-dev_2:4.4.2-2.1_amd64 + libloadpng4.4_2:4.4.2-2.1_amd64 + liblocale-gettext-perl_1.05-7+b1_amd64 + liblocale-hebrew-perl_1.04-1+b2_amd64 + liblockdev1_1.0.3-1.5_amd64 + liblockdev1-dbg_1.0.3-1.5_amd64 + liblockdev1-dev_1.0.3-1.5_amd64 + liblockdev1-perl_1.0.3-1.5_amd64 + liblockfile-bin_1.09-5_amd64 + liblockfile-dev_1.09-5_amd64 + liblockfile1_1.09-5_amd64 + liblodo3.0_3.0.2+dfsg-4+b1_amd64 + liblodo3.0-dev_3.0.2+dfsg-4+b1_amd64 + liblog4ada-dbg_1.2-3_amd64 + liblog4ada1_1.2-3_amd64 + liblog4ada2-dev_1.2-3_amd64 + liblog4c-dev_1.2.1-3_amd64 + liblog4c3_1.2.1-3_amd64 + liblog4cplus-1.0-4_1.0.4-1_amd64 + liblog4cplus-dbg_1.0.4-1_amd64 + liblog4cplus-dev_1.0.4-1_amd64 + liblog4cpp5_1.0-4_amd64 + liblog4cpp5-dev_1.0-4_amd64 + liblog4cxx10_0.10.0-1.2_amd64 + liblog4cxx10-dev_0.10.0-1.2_amd64 + liblog4shib-dev_1.0.4-1_amd64 + liblog4shib1_1.0.4-1_amd64 + liblog4tango4_7.2.6+dfsg-14_amd64 + liblog4tango4-dbg_7.2.6+dfsg-14_amd64 + liblog4tango4-dev_7.2.6+dfsg-14_amd64 + liblogforwarderutils2_2.7-1_amd64 + liblogforwarderutils2-dev_2.7-1_amd64 + liblognorm-dev_0.3.4-1_amd64 + liblognorm0_0.3.4-1_amd64 + liblogservicecomponentbase2_2.7-1_amd64 + liblogservicecomponentbase2-dev_2.7-1_amd64 + liblogservicetoolbase2_2.7-1_amd64 + liblogservicetoolbase2-dev_2.7-1_amd64 + liblogsys-dev_1.4.2-3_amd64 + liblogsys4_1.4.2-3_amd64 + liblogthread-dev_3.0.12-3.2+deb7u2_amd64 + liblogthread3_3.0.12-3.2+deb7u2_amd64 + libloki-dev_0.1.7-3_amd64 + libloki0.1.7_0.1.7-3_amd64 + libloki0.1.7-dbg_0.1.7-3_amd64 + libloudmouth1-0_1.4.3-9_amd64 + libloudmouth1-0-dbg_1.4.3-9_amd64 + libloudmouth1-dev_1.4.3-9_amd64 + liblouis-bin_2.4.1-1_amd64 + liblouis-dev_2.4.1-1_amd64 + liblouis2_2.4.1-1_amd64 + liblouisutdml-bin_2.2.0-1_amd64 + liblouisutdml-dev_2.2.0-1_amd64 + liblouisutdml6_2.2.0-1_amd64 + liblouisxml-bin_2.4.0-3_amd64 + liblouisxml-dev_2.4.0-3_amd64 + liblouisxml1_2.4.0-3_amd64 + liblpsolve55-dev_5.5.0.13-7_amd64 + liblqr-1-0_0.4.1-2_amd64 + liblqr-1-0-dbg_0.4.1-2_amd64 + liblqr-1-0-dev_0.4.1-2_amd64 + liblrdf0_0.4.0-5_amd64 + liblrdf0-dev_0.4.0-5_amd64 + liblrm2_1.0.9+hg2665-1_amd64 + liblrm2-dev_1.0.9+hg2665-1_amd64 + liblrs-dev_0.42c-1+b1_amd64 + liblrs0d_0.42c-1+b1_amd64 + liblscp-dbg_0.5.6-6_amd64 + liblscp-dev_0.5.6-6_amd64 + liblscp6_0.5.6-6_amd64 + liblsofui4_4:4.8.4-6_amd64 + libltcsmpte-dev_0.4.4-1_amd64 + libltcsmpte1_0.4.4-1_amd64 + libltdl-dev_2.4.2-1.1_amd64 + libltdl7_2.4.2-1.1_amd64 + liblttctl-dev_0.89-05122011-1_amd64 + liblttctl0_0.89-05122011-1_amd64 + liblttd-dev_0.89-05122011-1_amd64 + liblttd0_0.89-05122011-1_amd64 + liblttng-ust-dev_2.0.4-1_amd64 + liblttng-ust0_2.0.4-1_amd64 + liblttoolbox3-3.1-0_3.1.0-1.1_amd64 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_amd64 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_amd64 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_amd64 + liblua5.1-0_5.1.5-4_amd64 + liblua5.1-0-dbg_5.1.5-4_amd64 + liblua5.1-0-dev_5.1.5-4_amd64 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_amd64 + liblua5.1-oocairo-dev_1.4-1.2_amd64 + liblua5.1-oocairo0_1.4-1.2_amd64 + liblua5.1-oopango-dev_1.1-1_amd64 + liblua5.1-oopango0_1.1-1_amd64 + liblua5.1-rrd-dev_1.4.7-2_amd64 + liblua5.1-rrd0_1.4.7-2_amd64 + liblua5.2-0_5.2.1-3_amd64 + liblua5.2-0-dbg_5.2.1-3_amd64 + liblua5.2-dev_5.2.1-3_amd64 + liblua50_5.0.3-6_amd64 + liblua50-dev_5.0.3-6_amd64 + libluabind-dbg_0.9.1+dfsg-5_amd64 + libluabind-dev_0.9.1+dfsg-5_amd64 + libluabind0.9.1_0.9.1+dfsg-5_amd64 + libluabridge-ruby1.8_0.7.0-1.1_amd64 + liblualib50_5.0.3-6_amd64 + liblualib50-dev_5.0.3-6_amd64 + liblunar-1-0_2.0.1-2.2_amd64 + liblunar-1-0-dbg_2.0.1-2.2_amd64 + liblunar-1-dev_2.0.1-2.2_amd64 + liblunar-date-2.0-0_2.4.0-1_amd64 + liblunar-date-dbg_2.4.0-1_amd64 + liblunar-date-dev_2.4.0-1_amd64 + liblv2dynparam1-dev_2-5_amd64 + liblv2dynparamhost1-1_2-5_amd64 + liblv2dynparamplugin1-0_2-5_amd64 + liblvm2-dev_2.02.95-8_amd64 + liblvm2app2.2_2.02.95-8_amd64 + liblvm2cmd2.02_2.02.95-8_amd64 + liblwipv6-2_1.5a-2_amd64 + liblwipv6-dev_1.5a-2_amd64 + liblwjgl-java-jni_2.7.1+dfsg-3_amd64 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + liblwt-glib-ocaml_2.3.2-1+b3_amd64 + liblwt-glib-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ocaml_2.3.2-1+b3_amd64 + liblwt-ocaml-dev_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml_2.3.2-1+b3_amd64 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_amd64 + liblz-dbg_1.3-2_amd64 + liblz-dev_1.3-2_amd64 + liblz1_1.3-2_amd64 + liblzma-dev_5.1.1alpha+20120614-2_amd64 + liblzma5_5.1.1alpha+20120614-2_amd64 + liblzo2-2_2.06-1_amd64 + liblzo2-dev_2.06-1_amd64 + libm17n-0_1.6.3-2_amd64 + libm17n-0-dbg_1.6.3-2_amd64 + libm17n-dev_1.6.3-2_amd64 + libm17n-im-config-dev_0.9.0-3_amd64 + libm17n-im-config0_0.9.0-3_amd64 + libm4ri-0.0.20080521_0.0.20080521-2_amd64 + libm4ri-dev_0.0.20080521-2_amd64 + libmaa-dev_1.3.1-1_amd64 + libmaa3_1.3.1-1_amd64 + libmad-ocaml_0.4.4-1+b1_amd64 + libmad-ocaml-dev_0.4.4-1+b1_amd64 + libmad0_0.15.1b-7_amd64 + libmad0-dev_0.15.1b-7_amd64 + libmadlib_1.3.0-2.1_amd64 + libmadlib-dbg_1.3.0-2.1_amd64 + libmadlib-dev_1.3.0-2.1_amd64 + libmagic-dev_5.11-2_amd64 + libmagic-ocaml_0.7.3-5+b3_amd64 + libmagic-ocaml-dev_0.7.3-5+b3_amd64 + libmagic1_5.11-2_amd64 + libmagick++-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagick++5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5_8:6.7.7.10-5+deb7u2_amd64 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_amd64 + libmagickwand5_8:6.7.7.10-5+deb7u2_amd64 + libmagics++-dev_2.14.11-4_amd64 + libmagplus3_2.14.11-4_amd64 + libmail-cclient-perl_1.12-11+b1_amd64 + libmail-pop3client-perl_2.17-1_amd64 + libmailtransport4_4:4.8.4-2_amd64 + libmailutils-dev_1:2.99.97-3_amd64 + libmailutils4_1:2.99.97-3_amd64 + libmalaga-dev_7.12-4_amd64 + libmalaga7_7.12-4_amd64 + libmaloc-dev_0.2-2.3_amd64 + libmaloc1_0.2-2.3_amd64 + libmapi-dev_1:1.0-3_amd64 + libmapi0_1:1.0-3_amd64 + libmapiadmin-dev_1:1.0-3_amd64 + libmapiadmin0_1:1.0-3_amd64 + libmapipp-dev_1:1.0-3_amd64 + libmapipp0_1:1.0-3_amd64 + libmapiproxy-dev_1:1.0-3_amd64 + libmapiproxy0_1:1.0-3_amd64 + libmapistore-dev_1:1.0-3_amd64 + libmapistore0_1:1.0-3_amd64 + libmapnik2-2.0_2.0.0+ds1-3+b4_amd64 + libmapnik2-dev_2.0.0+ds1-3+b4_amd64 + libmapscript-perl_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_amd64 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_amd64 + libmarble-dev_4:4.8.4-3_amd64 + libmarblewidget13_4:4.8.4-3_amd64 + libmarc-charset-perl_1.33-1_amd64 + libmarkdown2_2.1.3-3_amd64 + libmarkdown2-dbg_2.1.3-3_amd64 + libmarkdown2-dev_2.1.3-3_amd64 + libmatchbox-dev_1.9-osso8-3_amd64 + libmatchbox1_1.9-osso8-3_amd64 + libmath++-dev_0.0.4-4_amd64 + libmath++0c2a_0.0.4-4_amd64 + libmath-bigint-gmp-perl_1.37-1+b1_amd64 + libmath-gmp-perl_2.06-1+b2_amd64 + libmath-random-isaac-xs-perl_1.003-1+b2_amd64 + libmath-random-mt-perl_1.15-2_amd64 + libmath-random-tt800-perl_1.01-2+b2_amd64 + libmath-tamuanova-perl_1.0.2-1_amd64 + libmatheval-dev_1.1.8-1_amd64 + libmatheval1_1.1.8-1_amd64 + libmathlib2-dev_20061220+dfsg3-2_amd64 + libmathlib2-gfortran_20061220+dfsg3-2_amd64 + libmatio-dev_1.3.4-4_amd64 + libmatio0_1.3.4-4_amd64 + libmatio0-dbg_1.3.4-4_amd64 + libmatrixssl1.8_1.8.8-1_amd64 + libmatrixssl1.8-dev_1.8.8-1_amd64 + libmatroska-dev_1.3.0-2_amd64 + libmatroska5_1.3.0-2_amd64 + libmbt0_3.2.8-1_amd64 + libmbt0-dev_3.2.8-1_amd64 + libmcpp-dev_2.7.2-1.1_amd64 + libmcpp0_2.7.2-1.1_amd64 + libmcrypt-dev_2.5.8-3.1_amd64 + libmcrypt4_2.5.8-3.1_amd64 + libmcs-backend-gconf_0.7.2-2.1_amd64 + libmcs-dev_0.7.2-2.1_amd64 + libmcs-utils_0.7.2-2.1_amd64 + libmcs1_0.7.2-2.1_amd64 + libmd3-1_0.1.92-4_amd64 + libmd3-dev_0.1.92-4_amd64 + libmdb2_0.7-1+deb7u1_amd64 + libmdbodbc1_0.7-1+deb7u1_amd64 + libmdbsql2_0.7-1+deb7u1_amd64 + libmdc2_0.10.7-1+b2_amd64 + libmdc2-dev_0.10.7-1+b2_amd64 + libmdsp-dev_0.11-10_amd64 + libmeanwhile-dev_1.0.2-4_amd64 + libmeanwhile1_1.0.2-4_amd64 + libmecab-dev_0.99.3-3_amd64 + libmecab-jni_0.99.3-1_amd64 + libmecab-perl_0.99.3-1_amd64 + libmecab2_0.99.3-3_amd64 + libmed-dev_3.0.3-3_amd64 + libmed-tools_3.0.3-3_amd64 + libmed1_3.0.3-3_amd64 + libmedc-dev_3.0.3-3_amd64 + libmedc1_3.0.3-3_amd64 + libmediainfo-dev_0.7.58-1_amd64 + libmediainfo0_0.7.58-1_amd64 + libmediastreamer-dev_3.5.2-10_amd64 + libmediastreamer1_3.5.2-10_amd64 + libmedimport-dev_3.0.3-3_amd64 + libmedimport0_3.0.3-3_amd64 + libmeep-dev_1.1.1-8_amd64 + libmeep-lam4-6_1.1.1-10~deb7u1_amd64 + libmeep-lam4-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_amd64 + libmeep-mpi-default6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-6_1.1.1-10~deb7u1_amd64 + libmeep-mpich2-dev_1.1.1-10~deb7u1_amd64 + libmeep-openmpi-dev_1.1.1-9~deb7u1_amd64 + libmeep-openmpi6_1.1.1-9~deb7u1_amd64 + libmeep6_1.1.1-8_amd64 + libmelt-ocaml-dev_1.4.0-1_amd64 + libmemcache-dev_1.4.0.rc2-1_amd64 + libmemcache0_1.4.0.rc2-1_amd64 + libmemcached-dbg_1.0.8-1_amd64 + libmemcached-dev_1.0.8-1_amd64 + libmemcached-tools_1.0.8-1_amd64 + libmemcached10_1.0.8-1_amd64 + libmemcachedprotocol0_1.0.8-1_amd64 + libmemcachedutil2_1.0.8-1_amd64 + libmemphis-0.2-0_0.2.3-2_amd64 + libmemphis-0.2-dbg_0.2.3-2_amd64 + libmemphis-0.2-dev_0.2.3-2_amd64 + libmenhir-ocaml-dev_20120123.dfsg-1_amd64 + libmenu-cache1_0.3.3-1_amd64 + libmenu-cache1-dev_0.3.3-1_amd64 + libmercator-0.3-1_0.3.0-2_amd64 + libmercator-0.3-1-dbg_0.3.0-2_amd64 + libmercator-0.3-dev_0.3.0-2_amd64 + libmeschach-dev_1.2b-13_amd64 + libmeschach1.2_1.2b-13_amd64 + libmessagecore4_4:4.4.11.1+l10n-3+b1_amd64 + libmessagelist4_4:4.4.11.1+l10n-3+b1_amd64 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_amd64 + libmetacity-dev_1:2.34.3-4_amd64 + libmetacity-private0a_1:2.34.3-4_amd64 + libmgl-dev_1.11.2-17_amd64 + libmgl-fltk5_1.11.2-17_amd64 + libmgl-glut5_1.11.2-17_amd64 + libmgl-qt5_1.11.2-17_amd64 + libmgl-wx5_1.11.2-17_amd64 + libmgl5_1.11.2-17_amd64 + libmhash-dev_0.9.9.9-1.1_amd64 + libmhash2_0.9.9.9-1.1_amd64 + libmicroblog4_4:4.8.4-2_amd64 + libmicrohttpd-dbg_0.9.20-1+deb7u1_amd64 + libmicrohttpd-dev_0.9.20-1+deb7u1_amd64 + libmicrohttpd10_0.9.20-1+deb7u1_amd64 + libmigemo-dbg_20110227-7_amd64 + libmigemo-dev_20110227-7_amd64 + libmigemo1_20110227-7_amd64 + libmikmatch-ocaml_1.0.4-1+b1_amd64 + libmikmatch-ocaml-dev_1.0.4-1+b1_amd64 + libmikmod2_3.1.12-5_amd64 + libmikmod2-dev_3.1.12-5_amd64 + libmilter-dev_8.14.4-4_amd64 + libmilter1.0.1_8.14.4-4_amd64 + libmilter1.0.1-dbg_8.14.4-4_amd64 + libmime-explode-perl_0.39-2+b1_amd64 + libmimedir-dev_0.5.1-4_amd64 + libmimedir-gnome-dev_0.4.2-5_amd64 + libmimedir-gnome0.4_0.4.2-5_amd64 + libmimedir0_0.5.1-4_amd64 + libmimelib1-dev_5:1.1.4-2_amd64 + libmimelib1c2a_5:1.1.4-2_amd64 + libmimelib4_4:4.4.11.1+l10n-3+b1_amd64 + libmimetic-dev_0.9.7-3_amd64 + libmimetic0_0.9.7-3_amd64 + libmimetic0-dbg_0.9.7-3_amd64 + libmimic-dev_1.0.4-2.1_amd64 + libmimic0_1.0.4-2.1_amd64 + libminc-dev_2.1.10-1+b1_amd64 + libminc2-1_2.1.10-1+b1_amd64 + libming-dev_1:0.4.4-1.1_amd64 + libming-util_1:0.4.4-1.1_amd64 + libming1_1:0.4.4-1.1_amd64 + libmini18n-dev_0.2.1-1_amd64 + libmini18n1_0.2.1-1_amd64 + libmini18n1-dbg_0.2.1-1_amd64 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_amd64 + libminiupnpc-dev_1.5-2_amd64 + libminiupnpc5_1.5-2_amd64 + libminpack1_19961126+dfsg1-1_amd64 + libmission-control-plugins-dev_1:5.12.3-1_amd64 + libmission-control-plugins0_1:5.12.3-1_amd64 + libmkv-dev_0.6.5.1-1_amd64 + libmkv0_0.6.5.1-1_amd64 + libmlnlffi-smlnj_110.74-2_amd64 + libmlpcap-ocaml_0.9-16_amd64 + libmlpcap-ocaml-dev_0.9-16_amd64 + libmlpost-ocaml-dev_0.8.1-3_amd64 + libmlrisctools-smlnj_110.74-2_amd64 + libmlt++-dev_0.8.0-4_amd64 + libmlt++3_0.8.0-4_amd64 + libmlt-dbg_0.8.0-4_amd64 + libmlt-dev_0.8.0-4_amd64 + libmlt5_0.8.0-4_amd64 + libmlx4-1_1.0.4-1_amd64 + libmlx4-1-dbg_1.0.4-1_amd64 + libmlx4-dev_1.0.4-1_amd64 + libmm-dbg_1.4.2-4_amd64 + libmm-dev_1.4.2-4_amd64 + libmm-ocaml_0.2.0-1+b1_amd64 + libmm-ocaml-dev_0.2.0-1+b1_amd64 + libmm14_1.4.2-4_amd64 + libmmpong0.9_0.9.1-2.1_amd64 + libmmpong0.9-dev_0.9.1-2.1_amd64 + libmms-dev_0.6.2-3_amd64 + libmms0_0.6.2-3_amd64 + libmng-dev_1.0.10-3_amd64 + libmng1_1.0.10-3_amd64 + libmnl-dev_1.0.3-3_amd64 + libmnl0_1.0.3-3_amd64 + libmodbus-dev_3.0.3-1_amd64 + libmodbus5_3.0.3-1_amd64 + libmodglue1_1.17-2.1_amd64 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_amd64 + libmoe-dev_1.5.8-1_amd64 + libmoe1.5_1.5.8-1_amd64 + libmongo-client-dev_0.1.5-1+deb7u1_amd64 + libmongo-client0_0.1.5-1+deb7u1_amd64 + libmongo-client0-dbg_0.1.5-1+deb7u1_amd64 + libmongodb-perl_0.45-1+b1_amd64 + libmono-2.0-1_2.10.8.1-8_amd64 + libmono-2.0-1-dbg_2.10.8.1-8_amd64 + libmono-2.0-dev_2.10.8.1-8_amd64 + libmono-fuse-cil_0.4.2+dfsg-3+b1_amd64 + libmono-profiler_2.10.8.1-8_amd64 + libmono-uia-atkbridge1.0-cil_2.1-2_amd64 + libmoose-perl_2.0603-1_amd64 + libmoosex-role-withoverloading-perl_0.09-1+b2_amd64 + libmopac7-1gf_1.15-5_amd64 + libmopac7-dev_1.15-5_amd64 + libmorph_1:20090926_amd64 + libmorph-dev_1:20090926_amd64 + libmosquitto0_0.15-2_amd64 + libmosquittopp0_0.15-2_amd64 + libmount-dev_2.20.1-5.3_amd64 + libmount1_2.20.1-5.3_amd64 + libmouse-perl_0.99-1_amd64 + libmowgli-dev_1.0.0-1_amd64 + libmowgli2_1.0.0-1_amd64 + libmowgli2-dbg_1.0.0-1_amd64 + libmozilla-ldap-perl_1.5.3-1_amd64 + libmozjs-dev_17.0.10esr-1~deb7u1_amd64 + libmozjs10d_10.0.12esr-1_amd64 + libmozjs10d-dbg_10.0.12esr-1_amd64 + libmozjs17d_17.0.10esr-1~deb7u1_amd64 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_amd64 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_amd64 + libmp3lame-dev_3.99.5+repack1-3_amd64 + libmp3lame-ocaml_0.3.1-1+b1_amd64 + libmp3lame-ocaml-dev_0.3.1-1+b1_amd64 + libmp3lame0_3.99.5+repack1-3_amd64 + libmp3splt-dev_0.7.2-2_amd64 + libmp3splt0_0.7.2-2_amd64 + libmp3splt0-mp3_0.7.2-2_amd64 + libmp3splt0-ogg_0.7.2-2_amd64 + libmp4v2-2_2.0.0~dfsg0-1_amd64 + libmp4v2-dev_2.0.0~dfsg0-1_amd64 + libmpc-dev_0.9-4_amd64 + libmpc2_0.9-4_amd64 + libmpcdec-dev_2:0.1~r459-4_amd64 + libmpcdec6_2:0.1~r459-4_amd64 + libmpd-dev_0.20.0-1.1_amd64 + libmpd1_0.20.0-1.1_amd64 + libmpd1-dbg_0.20.0-1.1_amd64 + libmpdclient-dev_2.3-1_amd64 + libmpdclient2_2.3-1_amd64 + libmpdclient2-dbg_2.3-1_amd64 + libmpeg2-4_0.4.1-3_amd64 + libmpeg2-4-dev_0.4.1-3_amd64 + libmpeg3-1_1.5.4-5_amd64 + libmpeg3-dev_1.5.4-5_amd64 + libmpfi-dev_1.5.1-1_amd64 + libmpfi0_1.5.1-1_amd64 + libmpfr-dev_3.1.0-5_amd64 + libmpfr4_3.1.0-5_amd64 + libmpfr4-dbg_3.1.0-5_amd64 + libmpg123-0_1.14.4-1_amd64 + libmpg123-dev_1.14.4-1_amd64 + libmpich2-3_1.4.1-4.2_amd64 + libmpich2-dev_1.4.1-4.2_amd64 + libmpikmeans-dbg_1.5-1+b1_amd64 + libmpikmeans-dev_1.5-1+b1_amd64 + libmpikmeans1_1.5-1+b1_amd64 + libmpj-java_0.38~dfsg-1_amd64 + libmrml1-dev_0.1.14-12_amd64 + libmrml1c2a_0.1.14-12_amd64 + libmrmpi-dev_1.0~20110620.dfsg-2_amd64 + libmrmpi1_1.0~20110620.dfsg-2_amd64 + libmrss0_0.19.2-3_amd64 + libmrss0-dbg_0.19.2-3_amd64 + libmrss0-dev_0.19.2-3_amd64 + libmsgcat-perl_1.03-5+b2_amd64 + libmsgpack-dev_0.5.7-2_amd64 + libmsgpack3_0.5.7-2_amd64 + libmsgpackc2_0.5.7-2_amd64 + libmsn-dev_4.2-2_amd64 + libmsn0.3_4.2-2_amd64 + libmsn0.3-dbg_4.2-2_amd64 + libmsv-dev_0.0.0-1_amd64 + libmsv0_0.0.0-1_amd64 + libmtbl-dev_0.2-1_amd64 + libmtbl0_0.2-1_amd64 + libmtbl0-dbg_0.2-1_amd64 + libmtcp-dev_1.2.5-1_amd64 + libmtcp1_1.2.5-1_amd64 + libmtdev-dev_1.1.2-1_amd64 + libmtdev1_1.1.2-1_amd64 + libmthca-dev_1.0.6-1_amd64 + libmthca1_1.0.6-1_amd64 + libmthca1-dbg_1.0.6-1_amd64 + libmtp-dbg_1.1.3-35-g0ece104-5_amd64 + libmtp-dev_1.1.3-35-g0ece104-5_amd64 + libmtp-runtime_1.1.3-35-g0ece104-5_amd64 + libmtp9_1.1.3-35-g0ece104-5_amd64 + libmudflap0_4.7.2-5_amd64 + libmudflap0-4.4-dev_4.4.7-2_amd64 + libmudflap0-4.6-dev_4.6.3-14_amd64 + libmudflap0-4.7-dev_4.7.2-5_amd64 + libmudflap0-dbg_4.7.2-5_amd64 + libmulticobex1_0.23-1.1_amd64 + libmulticobex1-dev_0.23-1.1_amd64 + libmultidimensional-perl_0.010-1_amd64 + libmumps-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-dev_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-ptscotch-dev_4.10.0.dfsg-3_amd64 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-scotch-dev_4.10.0.dfsg-3_amd64 + libmumps-seq-4.10.0_4.10.0.dfsg-3_amd64 + libmumps-seq-dev_4.10.0.dfsg-3_amd64 + libmunge-dev_0.5.10-1_amd64 + libmunge2_0.5.10-1_amd64 + libmuparser-dev_2.1.0-3_amd64 + libmuparser2_2.1.0-3_amd64 + libmupdf-dev_0.9-2_amd64 + libmupen64plus2_1.99.5-6_amd64 + libmupen64plus2-dbg_1.99.5-6_amd64 + libmuroar-dev_0.1.8-2_amd64 + libmuroar0_0.1.8-2_amd64 + libmuroar0-dbg_0.1.8-2_amd64 + libmuroard3_0.1.10-2_amd64 + libmusic-dev_1.0.7-1.2_amd64 + libmusic1_1.0.7-1.2_amd64 + libmusicbrainz-discid-perl_0.03-1+b2_amd64 + libmusicbrainz3-6_3.0.2-2.1_amd64 + libmusicbrainz3-dev_3.0.2-2.1_amd64 + libmusicbrainz5-0_5.0.1-2_amd64 + libmusicbrainz5-dev_5.0.1-2_amd64 + libmutter-dev_3.4.1-5_amd64 + libmutter0_3.4.1-5_amd64 + libmx-1.0-2_1.4.6-1_amd64 + libmx-1.0-2-dbg_1.4.6-1_amd64 + libmx-bin_1.4.6-1_amd64 + libmx-dev_1.4.6-1_amd64 + libmxml-dev_2.6-2_amd64 + libmxml1_2.6-2_amd64 + libmyodbc_5.1.10-2+deb7u1_amd64 + libmyproxy-dev_5.6-1_amd64 + libmyproxy5_5.6-1_amd64 + libmysql++-dev_3.1.0-2+b1_amd64 + libmysql++3_3.1.0-2+b1_amd64 + libmysql-ocaml_1.1.1-1+b1_amd64 + libmysql-ocaml-dev_1.1.1-1+b1_amd64 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_amd64 + libmysqlcppconn-dev_1.1.0-4+b1_amd64 + libmysqlcppconn5_1.1.0-4+b1_amd64 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_amd64 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_amd64 + libmythes-1.2-0_2:1.2.2-1_amd64 + libmythes-dev_2:1.2.2-1_amd64 + libnabrit-dbg_0.4.1-1_amd64 + libnabrit-dev_0.4.1-1_amd64 + libnabrit3_0.4.1-1_amd64 + libnacl-dev_20110221-4_amd64 + libnacore-dev_0.4.0-3_amd64 + libnacore5_0.4.0-3_amd64 + libnanohttp-dev_1.1.0-17.1_amd64 + libnanohttp1_1.1.0-17.1_amd64 + libnanohttp1-dbg_1.1.0-17.1_amd64 + libnatpmp-dev_20110808-3_amd64 + libnatpmp1_20110808-3_amd64 + libnautilus-extension-dev_3.4.2-1+build1_amd64 + libnautilus-extension1a_3.4.2-1+build1_amd64 + libnbio-dev_0.30-1_amd64 + libnbio0_0.30-1_amd64 + libncap-dev_1.9.2-1+b2_amd64 + libncap44_1.9.2-1+b2_amd64 + libncbi6_6.1.20120620-2_amd64 + libncbi6-dbg_6.1.20120620-2_amd64 + libncbi6-dev_6.1.20120620-2_amd64 + libncp_2.2.6-9_amd64 + libncp-dev_2.2.6-9_amd64 + libncurses5_5.9-10_amd64 + libncurses5-dbg_5.9-10_amd64 + libncurses5-dev_5.9-10_amd64 + libncursesada-dbg_5.9.20110404-7_amd64 + libncursesada2_5.9.20110404-7_amd64 + libncursesada2-dev_5.9.20110404-7_amd64 + libncursesw5_5.9-10_amd64 + libncursesw5-dbg_5.9-10_amd64 + libncursesw5-dev_5.9-10_amd64 + libndr-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_amd64 + libndr0_4.0.0~beta2+dfsg1-3.2_amd64 + libnecpp-dev_1.5.0+cvs20101003-2.1_amd64 + libnecpp0_1.5.0+cvs20101003-2.1_amd64 + libneko0_1.8.1-6+b1_amd64 + libnemesis3_5.14.dfsg.1-2+b1_amd64 + libneon27_0.29.6-3_amd64 + libneon27-dbg_0.29.6-3_amd64 + libneon27-dev_0.29.6-3_amd64 + libneon27-gnutls_0.29.6-3_amd64 + libneon27-gnutls-dbg_0.29.6-3_amd64 + libneon27-gnutls-dev_0.29.6-3_amd64 + libnepomuk4_4:4.8.4-4_amd64 + libnepomukquery4a_4:4.8.4-4_amd64 + libnepomukutils4_4:4.8.4-4_amd64 + libnes-dev_1.1.3-1_amd64 + libnes1_1.1.3-1_amd64 + libnes1-dbg_1.1.3-1_amd64 + libnet-arp-perl_1.0.4-1+b2_amd64 + libnet-bluetooth-perl_0.40-2+b4_amd64 + libnet-cups-perl_0.60-1+b2_amd64 + libnet-dbus-glib-perl_0.33.0-1+b2_amd64 + libnet-dbus-perl_1.0.0-1+b1_amd64 + libnet-dns-perl_0.66-2+b2_amd64 + libnet-freedb-perl_0.08-2+b1_amd64 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_amd64 + libnet-jabber-loudmouth-perl_0.07-2+b2_amd64 + libnet-ldapapi-perl_3.0.3-7+b2_amd64 + libnet-libdnet-perl_0.96-1_amd64 + libnet-libidn-perl_0.12.ds-1+b3_amd64 + libnet-nis-perl_0.43-1+b3_amd64 + libnet-oping-perl_1.6.2-1.21-1_amd64 + libnet-patricia-perl_1.19-1+b2_amd64 + libnet-pcap-perl_0.16-3+b1_amd64 + libnet-rawip-perl_0.25-1+b2_amd64 + libnet-remctl-perl_3.2-4_amd64 + libnet-ssh2-perl_0.44-1_amd64 + libnet-ssleay-perl_1.48-1+b1_amd64 + libnet-tclink-perl_3.4.0-5+b3_amd64 + libnet-z3950-simpleserver-perl_1.15-1_amd64 + libnet-z3950-zoom-perl_1.26-1+b2_amd64 + libnet1_1.1.4-2.1_amd64 + libnet1-dbg_1.1.4-2.1_amd64 + libnet1-dev_1.1.4-2.1_amd64 + libnet6-1.3-0_1:1.3.14-1_amd64 + libnet6-1.3-0-dbg_1:1.3.14-1_amd64 + libnet6-1.3-dev_1:1.3.14-1_amd64 + libnetaddr-ip-perl_4.062+dfsg-1_amd64 + libnetcdf-dev_1:4.1.3-6+b1_amd64 + libnetcdfc++4_1:4.1.3-6+b1_amd64 + libnetcdfc7_1:4.1.3-6+b1_amd64 + libnetcdff5_1:4.1.3-6+b1_amd64 + libnetcf-dev_0.1.9-2_amd64 + libnetcf1_0.1.9-2_amd64 + libnetcf1-dbg_0.1.9-2_amd64 + libnetclasses-dev_1.06.dfsg-5+b3_amd64 + libnetclasses0_1.06.dfsg-5+b3_amd64 + libnetfilter-conntrack-dev_1.0.1-1_amd64 + libnetfilter-conntrack3_1.0.1-1_amd64 + libnetfilter-conntrack3-dbg_1.0.1-1_amd64 + libnetfilter-cttimeout-dev_1.0.0-1_amd64 + libnetfilter-cttimeout1_1.0.0-1_amd64 + libnetfilter-cttimeout1-dbg_1.0.0-1_amd64 + libnetfilter-log-dev_1.0.0-1_amd64 + libnetfilter-log1_1.0.0-1_amd64 + libnetfilter-log1-dbg_1.0.0-1_amd64 + libnetfilter-queue-dev_0.0.17-1_amd64 + libnetfilter-queue1_0.0.17-1_amd64 + libnetfilter-queue1-dbg_0.0.17-1_amd64 + libnethttpd-ocaml-dev_3.5.1-1_amd64 + libnetpbm10_2:10.0-15+b1_amd64 + libnetpbm10-dev_2:10.0-15+b1_amd64 + libnetpbm9_2:10.0-15+b1_amd64 + libnetpbm9-dev_2:10.0-15+b1_amd64 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_amd64 + libnetsvcs-dev_6.0.3+dfsg-0.1_amd64 + libnettle4_2.4-3_amd64 + libnewmat10-dev_1.10.4-5_amd64 + libnewmat10ldbl_1.10.4-5_amd64 + libnewt-dev_0.52.14-11.1_amd64 + libnewt-pic_0.52.14-11.1_amd64 + libnewt0.52_0.52.14-11.1_amd64 + libnexus0_4.2.1-svn1614-1+b2_amd64 + libnexus0-dev_4.2.1-svn1614-1+b2_amd64 + libnexus0-java_4.2.1-svn1614-1+b2_amd64 + libnexus0-python_4.2.1-svn1614-1+b2_amd64 + libnflog-perl_0.2-3_amd64 + libnfnetlink-dev_1.0.0-1.1_amd64 + libnfnetlink0_1.0.0-1.1_amd64 + libnfnetlink0-dbg_1.0.0-1.1_amd64 + libnfo-dev_1.0.1-1_amd64 + libnfo1_1.0.1-1_amd64 + libnfo1-bin_1.0.1-1_amd64 + libnfo1-dbg_1.0.1-1_amd64 + libnfqueue-perl_0.4-3_amd64 + libnfs-dev_1.3.0-2_amd64 + libnfs1_1.3.0-2_amd64 + libnfsidmap-dev_0.25-4_amd64 + libnfsidmap2_0.25-4_amd64 + libnice-dbg_0.1.2-1_amd64 + libnice-dev_0.1.2-1_amd64 + libnice10_0.1.2-1_amd64 + libnids-dev_1.23-2_amd64 + libnids1.21_1.23-2_amd64 + libnifti-dev_2.0.0-1_amd64 + libnifti2_2.0.0-1_amd64 + libnih-dbus-dev_1.0.3-4.1_amd64 + libnih-dbus1_1.0.3-4.1_amd64 + libnih-dev_1.0.3-4.1_amd64 + libnih1_1.0.3-4.1_amd64 + libnjb-dev_2.2.7~dfsg0-3_amd64 + libnjb-tools_2.2.7~dfsg0-3_amd64 + libnjb5_2.2.7~dfsg0-3_amd64 + libnkf-perl_2.12-1_amd64 + libnl-3-200_3.2.7-4_amd64 + libnl-3-200-dbg_3.2.7-4_amd64 + libnl-3-dev_3.2.7-4_amd64 + libnl-cli-3-200_3.2.7-4_amd64 + libnl-cli-3-dev_3.2.7-4_amd64 + libnl-dev_1.1-7_amd64 + libnl-genl-3-200_3.2.7-4_amd64 + libnl-genl-3-dev_3.2.7-4_amd64 + libnl-nf-3-200_3.2.7-4_amd64 + libnl-nf-3-dev_3.2.7-4_amd64 + libnl-route-3-200_3.2.7-4_amd64 + libnl-route-3-dev_3.2.7-4_amd64 + libnl-utils_3.2.7-4_amd64 + libnl1_1.1-7_amd64 + libnm-glib-dev_0.9.4.0-10_amd64 + libnm-glib-vpn-dev_0.9.4.0-10_amd64 + libnm-glib-vpn1_0.9.4.0-10_amd64 + libnm-glib4_0.9.4.0-10_amd64 + libnm-gtk-dev_0.9.4.1-5_amd64 + libnm-gtk0_0.9.4.1-5_amd64 + libnm-util-dev_0.9.4.0-10_amd64 + libnm-util2_0.9.4.0-10_amd64 + libnmz7_2.0.21-6_amd64 + libnmz7-dev_2.0.21-6_amd64 + libnoise-dev_1.0.0+nmu1_amd64 + libnoise0_1.0.0+nmu1_amd64 + libnotify-bin_0.7.5-1_amd64 + libnotify-dev_0.7.5-1_amd64 + libnotify4_0.7.5-1_amd64 + libnotmuch-dev_0.13.2-1_amd64 + libnotmuch3_0.13.2-1_amd64 + libnova-0.14-0_0.14.0-2_amd64 + libnova-dev_0.14.0-2_amd64 + libnpth0_0.90-2_amd64 + libnpth0-dbg_0.90-2_amd64 + libnpth0-dev_0.90-2_amd64 + libnsbmp0_0.0.1-1.1_amd64 + libnsbmp0-dbg_0.0.1-1.1_amd64 + libnsbmp0-dev_0.0.1-1.1_amd64 + libnsgif0_0.0.1-1.1_amd64 + libnsgif0-dbg_0.0.1-1.1_amd64 + libnsgif0-dev_0.0.1-1.1_amd64 + libnspr4_2:4.9.2-1+deb7u1_amd64 + libnspr4-0d_2:4.9.2-1+deb7u1_amd64 + libnspr4-dbg_2:4.9.2-1+deb7u1_amd64 + libnspr4-dev_2:4.9.2-1+deb7u1_amd64 + libnss-cache_0.10.2-1_amd64 + libnss-db_2.2.3pre1-4_amd64 + libnss-extrausers_0.6-3_amd64 + libnss-gw-name_0.2.1-1_amd64 + libnss-ldap_264-2.5_amd64 + libnss-ldapd_0.8.10-4_amd64 + libnss-lwres_0.93-7_amd64 + libnss-mdns_0.10-3.2_amd64 + libnss-myhostname_0.3-5~deb7u1_amd64 + libnss-mysql-bg_1.5-3+b1_amd64 + libnss-pgsql2_1.4.0debian-5_amd64 + libnss-rainbow2_0.8.6-1_amd64 + libnss-sss_1.8.4-2_amd64 + libnss-winbind_2:3.6.6-6+deb7u2_amd64 + libnss3_2:3.14.5-1_amd64 + libnss3-1d_2:3.14.5-1_amd64 + libnss3-dbg_2:3.14.5-1_amd64 + libnss3-dev_2:3.14.5-1_amd64 + libnss3-tools_2:3.14.5-1_amd64 + libntfs-dev_2.0.0-1+b1_amd64 + libntfs-gnomevfs_2.0.0-1+b1_amd64 + libntfs10_2.0.0-1+b1_amd64 + libntl-dev_5.5.2-2_amd64 + libntl0_5.5.2-2_amd64 + libntlm0_1.2-1_amd64 + libntlm0-dev_1.2-1_amd64 + libntrack-dev_016-1.1_amd64 + libntrack-glib-dev_016-1.1_amd64 + libntrack-glib2_016-1.1_amd64 + libntrack-gobject-dev_016-1.1_amd64 + libntrack-gobject1_016-1.1_amd64 + libntrack-qt4-1_016-1.1_amd64 + libntrack-qt4-dev_016-1.1_amd64 + libntrack0_016-1.1_amd64 + libnuclient-dev_2.4.3-2.2_amd64 + libnuclient4_2.4.3-2.2_amd64 + libnuma-dbg_2.0.8~rc4-1_amd64 + libnuma-dev_2.0.8~rc4-1_amd64 + libnuma1_2.0.8~rc4-1_amd64 + libnussl-dev_2.4.3-2.2_amd64 + libnussl1_2.4.3-2.2_amd64 + libnvtt-bin_2.0.8-1+dfsg-2_amd64 + libnvtt-dev_2.0.8-1+dfsg-2_amd64 + libnvtt2_2.0.8-1+dfsg-2_amd64 + libnxcl-bin_0.9-3.1_amd64 + libnxcl-dev_0.9-3.1_amd64 + libnxcl1_0.9-3.1_amd64 + libnxml0_0.18.3-4_amd64 + libnxml0-dbg_0.18.3-4_amd64 + libnxml0-dev_0.18.3-4_amd64 + libnzb-dev_0.0.20050629-6.1_amd64 + libnzb0c2a_0.0.20050629-6.1_amd64 + liboar-perl_2.5.2-3_amd64 + liboasis-ocaml_0.2.0-6_amd64 + liboasis-ocaml-dev_0.2.0-6_amd64 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_amd64 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_amd64 + liboath-dev_1.12.4-1_amd64 + liboath0_1.12.4-1_amd64 + liboauth-dev_0.9.4-3.1_amd64 + liboauth0_0.9.4-3.1_amd64 + libobby-0.4-1_0.4.8-1_amd64 + libobby-0.4-1-dbg_0.4.8-1_amd64 + libobby-0.4-dev_0.4.8-1_amd64 + libobexftp-perl_0.23-1.1_amd64 + libobexftp-ruby_0.23-1.1_amd64 + libobexftp0_0.23-1.1_amd64 + libobexftp0-dev_0.23-1.1_amd64 + libobjc3_4.6.3-14_amd64 + libobjc3-dbg_4.6.3-14_amd64 + libobjc4_4.7.2-5_amd64 + libobjc4-dbg_4.7.2-5_amd64 + libobrender27_3.5.0-7_amd64 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_amd64 + libobt0_3.5.0-7_amd64 + libobus-ocaml_1.1.3-1+b8_amd64 + libobus-ocaml-bin_1.1.3-1+b8_amd64 + libobus-ocaml-dev_1.1.3-1+b8_amd64 + libocamlbricks-ocaml-dev_0.50.1-4+b5_amd64 + libocamlgraph-ocaml-dev_1.8.2-2_amd64 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_amd64 + libocamlgsl-ocaml_0.6.0-7+b2_amd64 + libocamlgsl-ocaml-dev_0.6.0-7+b2_amd64 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ocaml_3.5.1-1_amd64 + libocamlnet-ocaml-bin_3.5.1-1_amd64 + libocamlnet-ocaml-dev_3.5.1-1_amd64 + libocamlnet-ssl-ocaml_3.5.1-1_amd64 + libocamlnet-ssl-ocaml-dev_3.5.1-1_amd64 + libocamlodbc-ocaml-dev_2.15-5+b3_amd64 + libocamlviz-ocaml-dev_1.01-2+b2_amd64 + libocas-dbg_0.93-1_amd64 + libocas-dev_0.93-1_amd64 + libocas-tools_0.93-1_amd64 + libocas0_0.93-1_amd64 + liboce-foundation-dev_0.9.1-3_amd64 + liboce-foundation2_0.9.1-3_amd64 + liboce-modeling2_0.9.1-3_amd64 + liboce-ocaf-lite2_0.9.1-3_amd64 + liboce-ocaf2_0.9.1-3_amd64 + liboce-visualization2_0.9.1-3_amd64 + libocpf-dev_1:1.0-3_amd64 + libocpf0_1:1.0-3_amd64 + libocrad-dev_0.22~rc1-2_amd64 + libocsigen-ocaml_1.3.4-2+b12_amd64 + libocsigen-ocaml-dev_1.3.4-2+b12_amd64 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_amd64 + libocsigenserver-ocaml_2.1-1_amd64 + libocsigenserver-ocaml-dev_2.1-1_amd64 + liboctave-dev_3.6.2-5+deb7u1_amd64 + liboctave1_3.6.2-5+deb7u1_amd64 + libodbc1_2.2.14p2-5_amd64 + libodbcinstq4-1_2.3.0-3_amd64 + libode-dev_2:0.11.1-4_amd64 + libode-sp-dev_2:0.11.1-4_amd64 + libode1_2:0.11.1-4_amd64 + libode1sp_2:0.11.1-4_amd64 + libodin-dev_1.8.5-2_amd64 + libodn-ocaml_0.0.8-1_amd64 + libodn-ocaml-dev_0.0.8-1_amd64 + libofa0_0.9.3-5_amd64 + libofa0-dev_0.9.3-5_amd64 + libofapi-dev_0git20070620-6_amd64 + libofapi0_0git20070620-6_amd64 + libofdt-dev_1.3.6-1_amd64 + libofdt1_1.3.6-1_amd64 + libofetion-dev_2.2.2-1_amd64 + libofetion1_2.2.2-1_amd64 + libofx-dev_1:0.9.4-2.1_amd64 + libofx4_1:0.9.4-2.1_amd64 + libofx4-dbg_1:0.9.4-2.1_amd64 + libogdf-tulip-3.7.0_3.7.0dfsg-4_amd64 + libogdi3.2_3.2.0~beta2-7_amd64 + libogdi3.2-dev_3.2.0~beta2-7_amd64 + libogg-dbg_1.3.0-4_amd64 + libogg-dev_1.3.0-4_amd64 + libogg-ocaml_0.4.3-1+b1_amd64 + libogg-ocaml-dev_0.4.3-1+b1_amd64 + libogg-vorbis-decoder-perl_0.9-1+b2_amd64 + libogg0_1.3.0-4_amd64 + liboggkate-dev_0.4.1-1_amd64 + liboggkate1_0.4.1-1_amd64 + liboggplay1_0.2.1~git20091227-1.2_amd64 + liboggplay1-dbg_0.2.1~git20091227-1.2_amd64 + liboggplay1-dev_0.2.1~git20091227-1.2_amd64 + liboggz2_1.1.1-1_amd64 + liboggz2-dbg_1.1.1-1_amd64 + liboggz2-dev_1.1.1-1_amd64 + liboglappth-dev_1.0.0-2_amd64 + liboglappth2_1.0.0-2_amd64 + libogre-1.7.4_1.7.4+dfsg1-7_amd64 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_amd64 + libogre-1.8-dev_1.8.0+dfsg1-3_amd64 + libogre-1.8.0_1.8.0+dfsg1-3_amd64 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_amd64 + libogre-dev_1.7.4+dfsg1-7_amd64 + libogre-perl_0.50-2+b2_amd64 + liboil0.3_0.3.17-2_amd64 + liboil0.3-dbg_0.3.17-2_amd64 + liboil0.3-dev_0.3.17-2_amd64 + libois-1.3.0_1.3.0+dfsg0-5_amd64 + libois-dev_1.3.0+dfsg0-5_amd64 + libois-perl_0.05-3_amd64 + libokteta1core1_4:4.8.4+dfsg-1_amd64 + libokteta1gui1_4:4.8.4+dfsg-1_amd64 + libokularcore1_4:4.8.4-3+b1_amd64 + libomhacks-dev_0.16-1_amd64 + libomhacks0_0.16-1_amd64 + libomnievents-dbg_1:2.6.2-2_amd64 + libomnievents-dev_1:2.6.2-2_amd64 + libomnievents2_1:2.6.2-2_amd64 + libomniorb4-1_4.1.6-2_amd64 + libomniorb4-1-dbg_4.1.6-2_amd64 + libomniorb4-dev_4.1.6-2_amd64 + libomnithread3-dev_4.1.6-2_amd64 + libomnithread3c2_4.1.6-2_amd64 + libomnithread3c2-dbg_4.1.6-2_amd64 + libomxil-bellagio-dev_0.9.3-1+b1_amd64 + libomxil-bellagio0_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-alsa_0.1-2_amd64 + libomxil-bellagio0-components-base_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_amd64 + libomxil-bellagio0-components-camera_0.1-2_amd64 + libomxil-bellagio0-components-fbdevsink_0.1-2_amd64 + libomxil-bellagio0-components-mad_0.1-1_amd64 + libomxil-bellagio0-components-videosrc_0.1-1_amd64 + libomxil-bellagio0-components-vorbis_0.1-3_amd64 + libomxil-bellagio0-components-xvideo_0.1-2_amd64 + libomxil-bellagio0-dbg_0.9.3-1+b1_amd64 + libonig-dev_5.9.1-1_amd64 + libonig2_5.9.1-1_amd64 + libonig2-dbg_5.9.1-1_amd64 + liboobs-1-5_3.0.0-1_amd64 + liboobs-1-5-dbg_3.0.0-1_amd64 + liboobs-1-dev_3.0.0-1_amd64 + liboop-dbg_1.0-9_amd64 + liboop-dev_1.0-9_amd64 + liboop4_1.0-9_amd64 + libooptools-dev_2.7-1_amd64 + libopal-dbg_3.10.4~dfsg-3_amd64 + libopal-dev_3.10.4~dfsg-3_amd64 + libopal3.10.4_3.10.4~dfsg-3_amd64 + libopenafs-dev_1.6.1-3+deb7u1_amd64 + libopenais-dev_1.1.4-4.1_amd64 + libopenais3_1.1.4-4.1_amd64 + libopenal-dev_1:1.14-4_amd64 + libopenal1_1:1.14-4_amd64 + libopenbabel-dev_2.3.1+dfsg-4_amd64 + libopenbabel4_2.3.1+dfsg-4_amd64 + libopenblas-base_0.1.1-6+deb7u2_amd64 + libopenblas-dev_0.1.1-6+deb7u2_amd64 + libopencc-dbg_0.3.0-3_amd64 + libopencc-dev_0.3.0-3_amd64 + libopencc1_0.3.0-3_amd64 + libopenconnect-dev_3.20-4_amd64 + libopenconnect1_3.20-4_amd64 + libopencore-amrnb-dev_0.1.3-2_amd64 + libopencore-amrnb0_0.1.3-2_amd64 + libopencore-amrnb0-dbg_0.1.3-2_amd64 + libopencore-amrwb-dev_0.1.3-2_amd64 + libopencore-amrwb0_0.1.3-2_amd64 + libopencore-amrwb0-dbg_0.1.3-2_amd64 + libopencryptoki-dev_2.3.1+dfsg-3_amd64 + libopencryptoki0_2.3.1+dfsg-3_amd64 + libopencsg-dev_1.3.2-2_amd64 + libopencsg-example_1.3.2-2_amd64 + libopencsg1_1.3.2-2_amd64 + libopencsg1-dbg_1.3.2-2_amd64 + libopenct1_0.6.20-1.2_amd64 + libopenct1-dbg_0.6.20-1.2_amd64 + libopenct1-dev_0.6.20-1.2_amd64 + libopencv-calib3d-dev_2.3.1-11_amd64 + libopencv-calib3d2.3_2.3.1-11_amd64 + libopencv-contrib-dev_2.3.1-11_amd64 + libopencv-contrib2.3_2.3.1-11_amd64 + libopencv-core-dev_2.3.1-11_amd64 + libopencv-core2.3_2.3.1-11_amd64 + libopencv-dev_2.3.1-11_amd64 + libopencv-features2d-dev_2.3.1-11_amd64 + libopencv-features2d2.3_2.3.1-11_amd64 + libopencv-flann-dev_2.3.1-11_amd64 + libopencv-flann2.3_2.3.1-11_amd64 + libopencv-gpu-dev_2.3.1-11_amd64 + libopencv-gpu2.3_2.3.1-11_amd64 + libopencv-highgui-dev_2.3.1-11_amd64 + libopencv-highgui2.3_2.3.1-11_amd64 + libopencv-imgproc-dev_2.3.1-11_amd64 + libopencv-imgproc2.3_2.3.1-11_amd64 + libopencv-legacy-dev_2.3.1-11_amd64 + libopencv-legacy2.3_2.3.1-11_amd64 + libopencv-ml-dev_2.3.1-11_amd64 + libopencv-ml2.3_2.3.1-11_amd64 + libopencv-objdetect-dev_2.3.1-11_amd64 + libopencv-objdetect2.3_2.3.1-11_amd64 + libopencv-video-dev_2.3.1-11_amd64 + libopencv-video2.3_2.3.1-11_amd64 + libopendkim-dev_2.6.8-4_amd64 + libopendkim7_2.6.8-4_amd64 + libopenexr-dev_1.6.1-6_amd64 + libopenexr6_1.6.1-6_amd64 + libopengl-perl_0.66+dfsg-1_amd64 + libopengl-xscreensaver-perl_0.04-1+b2_amd64 + libopenhpi-dev_2.14.1-1.2_amd64 + libopenhpi2_2.14.1-1.2_amd64 + libopenigtlink1-dev_1.9.2~svn7468-1_amd64 + libopenigtlink1.9_1.9.2~svn7468-1_amd64 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_amd64 + libopenimageio-dev_1.0.5+dfsg0-1_amd64 + libopenimageio1.0_1.0.5+dfsg0-1_amd64 + libopenipmi-dev_2.0.16-1.3_amd64 + libopenipmi0_2.0.16-1.3_amd64 + libopenjpeg-dev_1.3+dfsg-4.7_amd64 + libopenjpeg2_1.3+dfsg-4.7_amd64 + libopenjpeg2-dbg_1.3+dfsg-4.7_amd64 + libopenmeeg-dev_2.0.0.dfsg-5_amd64 + libopenmeeg1_2.0.0.dfsg-5_amd64 + libopenmpi-dbg_1.4.5-1_amd64 + libopenmpi-dev_1.4.5-1_amd64 + libopenmpi1.3_1.4.5-1_amd64 + libopenobex1_1.5-2_amd64 + libopenobex1-dev_1.5-2_amd64 + libopenr2-3_1.3.2-1.1_amd64 + libopenr2-bin_1.3.2-1.1_amd64 + libopenr2-dev_1.3.2-1.1_amd64 + libopenraw-dev_0.0.9-3+b1_amd64 + libopenraw1_0.0.9-3+b1_amd64 + libopenraw1-dbg_0.0.9-3+b1_amd64 + libopenrawgnome-dev_0.0.9-3+b1_amd64 + libopenrawgnome1_0.0.9-3+b1_amd64 + libopenscap-dev_0.8.0-4+b1_amd64 + libopenscap-perl_0.8.0-4+b1_amd64 + libopenscap1_0.8.0-4+b1_amd64 + libopenscap1-dbg_0.8.0-4+b1_amd64 + libopenscenegraph-dev_3.0.1-4_amd64 + libopenscenegraph80_3.0.1-4_amd64 + libopenslide-dev_3.2.6-2_amd64 + libopenslide0_3.2.6-2_amd64 + libopensm2_3.2.6-20090317-2.1_amd64 + libopensm2-dev_3.2.6-20090317-2.1_amd64 + libopenthreads-dev_3.0.1-4_amd64 + libopenthreads14_3.0.1-4_amd64 + libopentoken-dbg_4.0b-3_amd64 + libopentoken3-dev_4.0b-3_amd64 + libopentoken6_4.0b-3_amd64 + libopenturns-dbg_1.0-4_amd64 + libopenturns-dev_1.0-4_amd64 + libopenturns0.1_1.0-4_amd64 + libopenusb-dev_1.1.0-2_amd64 + libopenusb0_1.1.0-2_amd64 + libopenvg1-mesa_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_amd64 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_amd64 + libopenvrml-dev_0.18.9-5+deb7u1_amd64 + libopenvrml9_0.18.9-5+deb7u1_amd64 + libopenwalnut1_1.2.5-1.1+b1_amd64 + libopenwalnut1-dev_1.2.5-1.1+b1_amd64 + liboping-dev_1.6.2-1_amd64 + liboping0_1.6.2-1_amd64 + libopkele-dev_2.0.4-5.3_amd64 + libopkele3_2.0.4-5.3_amd64 + libopts25_1:5.12-0.1_amd64 + libopts25-dev_1:5.12-0.1_amd64 + libopus-dbg_0.9.14+20120615-1+nmu1_amd64 + libopus-dev_0.9.14+20120615-1+nmu1_amd64 + libopus0_0.9.14+20120615-1+nmu1_amd64 + liborange-dev_0.4-2_amd64 + liborange0_0.4-2_amd64 + liborbit2_1:2.14.19-0.1_amd64 + liborbit2-dev_1:2.14.19-0.1_amd64 + liborc-0.4-0_1:0.4.16-2_amd64 + liborc-0.4-0-dbg_1:0.4.16-2_amd64 + liborc-0.4-dev_1:0.4.16-2_amd64 + liborigin-dev_20080225-2.1_amd64 + liborigin0_20080225-2.1_amd64 + liborigin2-1_2:20110117-1+b2_amd64 + liborigin2-dev_2:20110117-1+b2_amd64 + libortp-dev_3.5.2-10_amd64 + libortp8_3.5.2-10_amd64 + liboscpack-dbg_1.0.2-1_amd64 + liboscpack-dev_1.0.2-1_amd64 + liboscpack1_1.0.2-1_amd64 + libosgearth-dev_2.0+dfsg-4+b3_amd64 + libosgearth1_2.0+dfsg-4+b3_amd64 + libosinfo-1.0-0_0.1.1-1_amd64 + libosinfo-1.0-0-dbg_0.1.1-1_amd64 + libosinfo-1.0-dev_0.1.1-1_amd64 + libosinfo-bin_0.1.1-1_amd64 + libosip2-7_3.6.0-4_amd64 + libosip2-dev_3.6.0-4_amd64 + libosl-dev_0.5.0-1_amd64 + libosl1_0.5.0-1_amd64 + libosl1-dbg_0.5.0-1_amd64 + libosmesa6_8.0.5-4+deb7u2_amd64 + libosmesa6-dev_8.0.5-4+deb7u2_amd64 + libosmgpsmap-dev_0.7.3-3_amd64 + libosmgpsmap2_0.7.3-3_amd64 + libosmgpsmap2-dbg_0.7.3-3_amd64 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_amd64 + libosmpbf-dev_1.2.1-3_amd64 + libosp-dev_1.5.2-10_amd64 + libosp5_1.5.2-10_amd64 + libosptk3_3.4.2-1+b1_amd64 + libosptk3-dbg_3.4.2-1+b1_amd64 + libosptk3-dev_3.4.2-1+b1_amd64 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_amd64 + liboss4-salsa2_4.2-build2006-2+deb7u1_amd64 + libossim-dev_1.7.21-4_amd64 + libossim1_1.7.21-4_amd64 + libossp-sa-dev_1.2.6-1_amd64 + libossp-sa12_1.2.6-1_amd64 + libossp-uuid-dev_1.6.2-1.3_amd64 + libossp-uuid-perl_1.6.2-1.3_amd64 + libossp-uuid16_1.6.2-1.3_amd64 + libostyle-dev_1.4devel1-20.1+b1_amd64 + libostyle1c2_1.4devel1-20.1+b1_amd64 + libotcl1_1.14+dfsg-2_amd64 + libotcl1-dev_1.14+dfsg-2_amd64 + libotf-bin_0.9.12-2_amd64 + libotf-dev_0.9.12-2_amd64 + libotf-trace-dev_1.10.2+dfsg-2_amd64 + libotf-trace1_1.10.2+dfsg-2_amd64 + libotf0_0.9.12-2_amd64 + libotf0-dbg_0.9.12-2_amd64 + libotfaux0_1.10.2+dfsg-2_amd64 + libotp0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libotpw-dev_1.3-2_amd64 + libotr2_3.2.1-1+deb7u1_amd64 + libotr2-bin_3.2.1-1+deb7u1_amd64 + libotr2-dev_3.2.1-1+deb7u1_amd64 + libots-dev_0.5.0-2.1_amd64 + libots0_0.5.0-2.1_amd64 + libounit-ocaml-dev_1.1.1-1_amd64 + libow-2.8-15_2.8p15-1_amd64 + libow-dev_2.8p15-1_amd64 + libow-perl_2.8p15-1_amd64 + libow-php5_2.8p15-1_amd64 + libow-tcl_2.8p15-1_amd64 + libowcapi-2.8-15_2.8p15-1_amd64 + libowfat-dev_0.28-6_amd64 + libowfat-dietlibc-dev_0.28-6_amd64 + libowfat0_0.28-6_amd64 + libownet-2.8-15_2.8p15-1_amd64 + libownet-dev_2.8p15-1_amd64 + libp11-2_0.2.8-2_amd64 + libp11-2-dbg_0.2.8-2_amd64 + libp11-dev_0.2.8-2_amd64 + libp11-kit-dev_0.12-3_amd64 + libp11-kit0_0.12-3_amd64 + libpackage-stash-xs-perl_0.24-1+b1_amd64 + libpackagekit-glib2-14_0.7.6-3_amd64 + libpackagekit-glib2-dev_0.7.6-3_amd64 + libpackagekit-qt2-2_0.7.6-3_amd64 + libpackagekit-qt2-dev_0.7.6-3_amd64 + libpacketdump3_3.0.14-1_amd64 + libpacketdump3-dev_3.0.14-1_amd64 + libpacklib-lesstif1-dev_20061220+dfsg3-2_amd64 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_amd64 + libpacklib1-dev_20061220+dfsg3-2_amd64 + libpacklib1-gfortran_20061220+dfsg3-2_amd64 + libpacparser-dev_1.3.0-2_amd64 + libpacparser1_1.3.0-2_amd64 + libpadwalker-perl_1.94-1_amd64 + libpam-abl_0.4.3-1_amd64 + libpam-afs-session_2.5-2_amd64 + libpam-alreadyloggedin_0.3-4_amd64 + libpam-apparmor_2.7.103-4_amd64 + libpam-barada_0.5-3.1_amd64 + libpam-blue_0.9.0-3_amd64 + libpam-cap_1:2.22-1.2_amd64 + libpam-ccreds_10-5+b1_amd64 + libpam-cgroup_0.38-1_amd64 + libpam-chroot_0.9-4.1_amd64 + libpam-ck-connector_0.4.5-3.1_amd64 + libpam-cracklib_1.1.3-7.1_amd64 + libpam-dbus_0.2.1-1_amd64 + libpam-duo_1.8-1_amd64 + libpam-encfs_0.1.4.4-6_amd64 + libpam-fprintd_0.4.1-5-g73edad0-3_amd64 + libpam-gnome-keyring_3.4.1-5_amd64 + libpam-heimdal_4.6-1_amd64 + libpam-krb5_4.6-1_amd64 + libpam-krb5-migrate-heimdal_0.0.10-1_amd64 + libpam-ldap_184-8.6_amd64 + libpam-ldapd_0.8.10-4_amd64 + libpam-modules_1.1.3-7.1_amd64 + libpam-modules-bin_1.1.3-7.1_amd64 + libpam-mount_2.14~git+d1d6f871-1_amd64 + libpam-mysql_0.7~RC1-4+b3_amd64 + libpam-ncp_2.2.6-9_amd64 + libpam-nufw_2.4.3-2.2_amd64 + libpam-oath_1.12.4-1_amd64 + libpam-ocaml_1.1-4+b3_amd64 + libpam-ocaml-dev_1.1-4+b3_amd64 + libpam-openafs-kaserver_1.6.1-3+deb7u1_amd64 + libpam-otpw_1.3-2_amd64 + libpam-p11_0.1.5-2_amd64 + libpam-passwdqc_1.2.0-1_amd64 + libpam-pgsql_0.7.3.1-4_amd64 + libpam-pkcs11_0.6.8-1_amd64 + libpam-poldi_0.4.1-2.1_amd64 + libpam-pwdfile_0.99-5_amd64 + libpam-python_1.0.2-1_amd64 + libpam-radius-auth_1.3.16-4.4_amd64 + libpam-script_1.1.5-1_amd64 + libpam-shield_0.9.2-3.3_amd64 + libpam-shishi_1.0.1-2_amd64 + libpam-slurm_2.3.4-2+b1_amd64 + libpam-smbpass_2:3.6.6-6+deb7u2_amd64 + libpam-ssh_1.92-15_amd64 + libpam-sss_1.8.4-2_amd64 + libpam-systemd_44-11+deb7u4_amd64 + libpam-tacplus_1.3.6-1_amd64 + libpam-tmpdir_0.09_amd64 + libpam-unix2_1:2.4.1-6_amd64 + libpam-usb_0.5.0-4_amd64 + libpam-winbind_2:3.6.6-6+deb7u2_amd64 + libpam-yubico_2.12-1_amd64 + libpam0g_1.1.3-7.1_amd64 + libpam0g-dev_1.1.3-7.1_amd64 + libpanel-applet-4-0_3.4.2.1-4_amd64 + libpanel-applet-4-dev_3.4.2.1-4_amd64 + libpango-perl_1.222-1+b1_amd64 + libpango1.0-0_1.30.0-1_amd64 + libpango1.0-0-dbg_1.30.0-1_amd64 + libpango1.0-dev_1.30.0-1_amd64 + libpangomm-1.4-1_2.28.4-1_amd64 + libpangomm-1.4-dbg_2.28.4-1_amd64 + libpangomm-1.4-dev_2.28.4-1_amd64 + libpano13-2_2.9.18+dfsg-5_amd64 + libpano13-bin_2.9.18+dfsg-5_amd64 + libpano13-dev_2.9.18+dfsg-5_amd64 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_amd64 + libpaper-dev_1.1.24+nmu2_amd64 + libpaper-utils_1.1.24+nmu2_amd64 + libpaper1_1.1.24+nmu2_amd64 + libpaps-dev_0.6.8-6_amd64 + libpaps0_0.6.8-6_amd64 + libpaq-dev_1.0.4-3+b1_amd64 + libpaq0_1.0.4-3+b1_amd64 + libpar-packer-perl_1.012-1_amd64 + libpar2-0_0.2.1-1_amd64 + libpar2-0-dbg_0.2.1-1_amd64 + libpar2-0-dev_0.2.1-1_amd64 + libparams-classify-perl_0.013-4_amd64 + libparams-util-perl_1.07-1_amd64 + libparams-validate-perl_1.06-1_amd64 + libpari-dbg_2.5.1-2_amd64 + libpari-dev_2.5.1-2_amd64 + libpari-gmp3_2.5.1-2_amd64 + libparpack2_3.1.1-2.1_amd64 + libparpack2-dbg_3.1.1-2.1_amd64 + libparpack2-dev_3.1.1-2.1_amd64 + libparrot-dev_4.0.0-3_amd64 + libparrot4.0.0_4.0.0-3_amd64 + libparse-exuberantctags-perl_1.01-1+b2_amd64 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_amd64 + libparted0_2.3-12_amd64 + libparted0-dev_2.3-12_amd64 + libparted0debian1_2.3-12_amd64 + libparted0debian1-dbg_2.3-12_amd64 + libpasswdqc0_1.2.0-1_amd64 + libpath-utils-dev_0.1.3-2_amd64 + libpath-utils1_0.1.3-2_amd64 + libpathfinder-dev_1.1.3-0.4+b1_amd64 + libpathfinder-nss-1_1.1.3-0.4+b1_amd64 + libpathfinder-openssl-1_1.1.3-0.4+b1_amd64 + libpathplan4_2.26.3-14+deb7u1_amd64 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-dev_1:2.14.04.dfsg.2-8_amd64 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_amd64 + libpcap0.8_1.3.0-1_amd64 + libpcap0.8-dbg_1.3.0-1_amd64 + libpcap0.8-dev_1.3.0-1_amd64 + libpcapnav0_0.8-1_amd64 + libpcapnav0-dev_0.8-1_amd64 + libpci-dev_1:3.1.9-6_amd64 + libpci3_1:3.1.9-6_amd64 + libpciaccess-dev_0.13.1-2_amd64 + libpciaccess0_0.13.1-2_amd64 + libpcl1_1.6-1_amd64 + libpcl1-dev_1.6-1_amd64 + libpcre++-dev_0.9.5-5.1_amd64 + libpcre++0_0.9.5-5.1_amd64 + libpcre-ocaml_6.2.5-1_amd64 + libpcre-ocaml-dev_6.2.5-1_amd64 + libpcre3_1:8.30-5_amd64 + libpcre3-dbg_1:8.30-5_amd64 + libpcre3-dev_1:8.30-5_amd64 + libpcrecpp0_1:8.30-5_amd64 + libpcsc-perl_1.4.12-1+b2_amd64 + libpcscada0.7.1_0.7.1-4_amd64 + libpcscada2-dev_0.7.1-4_amd64 + libpcsclite-dbg_1.8.4-1+deb7u1_amd64 + libpcsclite-dev_1.8.4-1+deb7u1_amd64 + libpcsclite1_1.8.4-1+deb7u1_amd64 + libpda-pilot-perl_0.12.5-5_amd64 + libpdflib804-2-dev_20061220+dfsg3-2_amd64 + libpdflib804-2-gfortran_20061220+dfsg3-2_amd64 + libpdl-io-hdf5-perl_0.63-3_amd64 + libpdl-netcdf-perl_4.16-3_amd64 + libpdl-stats-perl_0.6.2-1_amd64 + libpe-rules2_1.1.7-1_amd64 + libpe-rules2-dev_1.1.7-1_amd64 + libpe-status3_1.1.7-1_amd64 + libpe-status3-dev_1.1.7-1_amd64 + libpeas-1.0-0_1.4.0-2_amd64 + libpeas-dev_1.4.0-2_amd64 + libpeas-doc_1.4.0-2_amd64 + libpengine3_1.1.7-1_amd64 + libpengine3-dev_1.1.7-1_amd64 + libperl-destruct-level-perl_0.02-1+b2_amd64 + libperl-dev_5.14.2-21+deb7u1_amd64 + libperl4caml-ocaml_0.9.5-4+b4_amd64 + libperl4caml-ocaml-dev_0.9.5-4+b4_amd64 + libperl5.14_5.14.2-21+deb7u1_amd64 + libperl5i-perl_2.9.1-2_amd64 + libperlbal-xs-httpheaders-perl_0.20-2_amd64 + libperlio-eol-perl_0.14-1+b3_amd64 + libperlio-gzip-perl_0.18-1+b2_amd64 + libpetsc3.2_3.2.dfsg-6_amd64 + libpetsc3.2-dbg_3.2.dfsg-6_amd64 + libpetsc3.2-dev_3.2.dfsg-6_amd64 + libpfqueue-dev_0.5.6-8_amd64 + libpfqueue0_0.5.6-8_amd64 + libpfs-1.2-0_1.8.5-1_amd64 + libpfs-dev_1.8.5-1_amd64 + libpg-perl_1:2.1.1-4+b2_amd64 + libpgapack-mpi1_1.1.1-3_amd64 + libpgapack-serial1_1.1.1-3_amd64 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_amd64 + libpgm-dbg_5.1.118-1~dfsg-0.1_amd64 + libpgm-dev_5.1.118-1~dfsg-0.1_amd64 + libpgocaml-ocaml_1.5-2_amd64 + libpgocaml-ocaml-dev_1.5-2_amd64 + libpgpool-dev_3.1.3-5_amd64 + libpgpool0_3.1.3-5_amd64 + libpgraphutil-smlnj_110.74-2_amd64 + libpgtcl-dev_1:1.5-6_amd64 + libpgtcl1.5_1:1.5-6_amd64 + libpgtypes3_9.1.11-0wheezy1_amd64 + libphash0_0.9.4-1.2_amd64 + libphash0-dev_0.9.4-1.2_amd64 + libphat-dev_0.4.1-5_amd64 + libphat-tools_0.4.1-5_amd64 + libphat0_0.4.1-5_amd64 + libphobos-4.4-dev_1.063-4.4.7-1_amd64 + libphobos2-4.6-dev_0.29.1-4.6.3-2_amd64 + libphone-ui-20110825_1:0.0.1+git20110825-3_amd64 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_amd64 + libphone-ui-dev_1:0.0.1+git20110825-3_amd64 + libphone-ui-shr_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-data_0.1+git20110827-3+b1_amd64 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_amd64 + libphone-utils-dev_0.1+git20110523-2.1_amd64 + libphone-utils0_0.1+git20110523-2.1_amd64 + libphone-utils0-dbg_0.1+git20110523-2.1_amd64 + libphonon-dev_4:4.6.0.0-3_amd64 + libphonon4_4:4.6.0.0-3_amd64 + libphononexperimental-dev_4:4.6.0.0-3_amd64 + libphononexperimental4_4:4.6.0.0-3_amd64 + libphotos202-1-gfortran_20061220+dfsg3-2_amd64 + libphotos202-dev_20061220+dfsg3-2_amd64 + libphp5-embed_5.4.4-14+deb7u7_amd64 + libphtools2-dev_20061220+dfsg3-2_amd64 + libphtools2-gfortran_20061220+dfsg3-2_amd64 + libphysfs-dev_2.0.2-6_amd64 + libphysfs1_2.0.2-6_amd64 + libphysfs1-dbg_2.0.2-6_amd64 + libpiano-dev_2012.05.06-2_amd64 + libpiano0_2012.05.06-2_amd64 + libpigment-dbg_0.3.17-1_amd64 + libpigment0.3-11_0.3.17-1_amd64 + libpigment0.3-dev_0.3.17-1_amd64 + libpils2_1.0.9+hg2665-1_amd64 + libpils2-dev_1.0.9+hg2665-1_amd64 + libpinyin-dbg_0.6.91-1_amd64 + libpinyin-utils_0.6.91-1_amd64 + libpinyin0_0.6.91-1_amd64 + libpinyin0-dev_0.6.91-1_amd64 + libpion-common-4.0_4.0.7+dfsg-3.1_amd64 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-common-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0_4.0.7+dfsg-3.1_amd64 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_amd64 + libpion-net-dev_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins_4.0.7+dfsg-3.1_amd64 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_amd64 + libpipeline-dev_1.2.1-1_amd64 + libpipeline1_1.2.1-1_amd64 + libpisock-dev_0.12.5-5_amd64 + libpisock9_0.12.5-5_amd64 + libpisync1_0.12.5-5_amd64 + libpixman-1-0_0.26.0-4+deb7u1_amd64 + libpixman-1-0-dbg_0.26.0-4+deb7u1_amd64 + libpixman-1-dev_0.26.0-4+deb7u1_amd64 + libpkcs11-helper1_1.09-1_amd64 + libpkcs11-helper1-dev_1.09-1_amd64 + libplasma-geolocation-interface4_4:4.8.4-6_amd64 + libplasma3_4:4.8.4-4_amd64 + libplasmaclock4abi3_4:4.8.4-6_amd64 + libplasmagenericshell4_4:4.8.4-6_amd64 + libplayer-bin_2.0.1-2.1_amd64 + libplayer-dev_2.0.1-2.1_amd64 + libplayer2_2.0.1-2.1_amd64 + libplayer2-dbg_2.0.1-2.1_amd64 + libplayerc++3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0_3.0.2+dfsg-4+b1_amd64 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0_3.0.2+dfsg-4+b1_amd64 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0_3.0.2+dfsg-4+b1_amd64 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_amd64 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0_3.0.2+dfsg-4+b1_amd64 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_amd64 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0_3.0.2+dfsg-4+b1_amd64 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0_3.0.2+dfsg-4+b1_amd64 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_amd64 + libplib-dev_1.8.5-6_amd64 + libplib1_1.8.5-6_amd64 + libplist++-dev_1.8-1_amd64 + libplist++1_1.8-1_amd64 + libplist-dbg_1.8-1_amd64 + libplist-dev_1.8-1_amd64 + libplist-utils_1.8-1_amd64 + libplist1_1.8-1_amd64 + libpload-dev_1.4.2-3_amd64 + libpload4_1.4.2-3_amd64 + libplot-dev_2.6-3_amd64 + libplot2c2_2.6-3_amd64 + libploticus0_2.41-5_amd64 + libploticus0-dev_2.41-5_amd64 + libplotmm-dbg_0.1.2-2_amd64 + libplotmm-dev_0.1.2-2_amd64 + libplotmm0_0.1.2-2_amd64 + libplplot-ada0_5.9.9-5_amd64 + libplplot-ada0-dev_5.9.9-5_amd64 + libplplot-c++10_5.9.9-5_amd64 + libplplot-d_5.9.9-5_amd64 + libplplot-dev_5.9.9-5_amd64 + libplplot-fortran9_5.9.9-5_amd64 + libplplot-java_5.9.9-5_amd64 + libplplot-lua_5.9.9-5_amd64 + libplplot-ocaml_5.9.9-5_amd64 + libplplot11_5.9.9-5_amd64 + libplumb2_1.0.9+hg2665-1_amd64 + libplumb2-dev_1.0.9+hg2665-1_amd64 + libplumbgpl2_1.0.9+hg2665-1_amd64 + libplumbgpl2-dev_1.0.9+hg2665-1_amd64 + libpmap3.0_3.0.2+dfsg-4+b1_amd64 + libpmap3.0-dev_3.0.2+dfsg-4+b1_amd64 + libpmi0_2.3.4-2+b1_amd64 + libpmi0-dev_2.3.4-2+b1_amd64 + libpmount-dev_0.0.16_amd64 + libpmount0.0_0.0.16_amd64 + libpng12-0_1.2.49-1_amd64 + libpng12-dev_1.2.49-1_amd64 + libpng3_1.2.49-1_amd64 + libpnglite-dev_0.1.17-1_amd64 + libpoco-dev_1.3.6p1-4_amd64 + libpococrypto9_1.3.6p1-4_amd64 + libpococrypto9-dbg_1.3.6p1-4_amd64 + libpocodata9_1.3.6p1-4_amd64 + libpocodata9-dbg_1.3.6p1-4_amd64 + libpocofoundation9_1.3.6p1-4_amd64 + libpocofoundation9-dbg_1.3.6p1-4_amd64 + libpocomysql9_1.3.6p1-4_amd64 + libpocomysql9-dbg_1.3.6p1-4_amd64 + libpoconet9_1.3.6p1-4_amd64 + libpoconet9-dbg_1.3.6p1-4_amd64 + libpoconetssl9_1.3.6p1-4_amd64 + libpoconetssl9-dbg_1.3.6p1-4_amd64 + libpocoodbc9_1.3.6p1-4_amd64 + libpocoodbc9-dbg_1.3.6p1-4_amd64 + libpocosqlite9_1.3.6p1-4_amd64 + libpocosqlite9-dbg_1.3.6p1-4_amd64 + libpocoutil9_1.3.6p1-4_amd64 + libpocoutil9-dbg_1.3.6p1-4_amd64 + libpocoxml9_1.3.6p1-4_amd64 + libpocoxml9-dbg_1.3.6p1-4_amd64 + libpocozip9_1.3.6p1-4_amd64 + libpocozip9-dbg_1.3.6p1-4_amd64 + libpodofo-dev_0.9.0-1.1+b1_amd64 + libpodofo-utils_0.9.0-1.1+b1_amd64 + libpodofo0.9.0_0.9.0-1.1+b1_amd64 + libpoker-eval_138.0-1_amd64 + libpoker-eval-dev_138.0-1_amd64 + libpolarssl-dev_1.2.9-1~deb7u1_amd64 + libpolarssl-runtime_1.2.9-1~deb7u1_amd64 + libpolarssl0_1.2.9-1~deb7u1_amd64 + libpoldiff-dev_3.3.7-3_amd64 + libpoldiff1_3.3.7-3_amd64 + libpolkit-agent-1-0_0.105-3_amd64 + libpolkit-agent-1-dev_0.105-3_amd64 + libpolkit-backend-1-0_0.105-3_amd64 + libpolkit-backend-1-dev_0.105-3_amd64 + libpolkit-gobject-1-0_0.105-3_amd64 + libpolkit-gobject-1-dev_0.105-3_amd64 + libpolkit-qt-1-1_0.103.0-1_amd64 + libpolkit-qt-1-dev_0.103.0-1_amd64 + libpolybori-0.5.0-0_0.5~rc1-2.2_amd64 + libpolybori-dev_0.5~rc1-2.2_amd64 + libpolylib64-8_5.22.5-3+dfsg_amd64 + libpolylib64-8-dbg_5.22.5-3+dfsg_amd64 + libpolylib64-dev_5.22.5-3+dfsg_amd64 + libpolyml-dev_5.2.1-1.1_amd64 + libpolyml1_5.2.1-1.1_amd64 + libpolyorb-dbg_2.8~20110207-5.1_amd64 + libpolyorb2-dev_2.8~20110207-5.1_amd64 + libpolyorb3_2.8~20110207-5.1_amd64 + libpomp-dev_1.1+dfsg-2_amd64 + libpomp0_1.1+dfsg-2_amd64 + libpoppler-cpp-dev_0.18.4-6_amd64 + libpoppler-cpp0_0.18.4-6_amd64 + libpoppler-dev_0.18.4-6_amd64 + libpoppler-glib-dev_0.18.4-6_amd64 + libpoppler-glib8_0.18.4-6_amd64 + libpoppler-private-dev_0.18.4-6_amd64 + libpoppler-qt4-3_0.18.4-6_amd64 + libpoppler-qt4-dev_0.18.4-6_amd64 + libpoppler19_0.18.4-6_amd64 + libpopplerkit-dev_0.0.20051227svn-7+b1_amd64 + libpopplerkit0_0.0.20051227svn-7+b1_amd64 + libpopt-dev_1.16-7_amd64 + libpopt0_1.16-7_amd64 + libportaudio-dev_18.1-7.1_amd64 + libportaudio-ocaml_0.2.0-1+b1_amd64 + libportaudio-ocaml-dev_0.2.0-1+b1_amd64 + libportaudio0_18.1-7.1_amd64 + libportaudio2_19+svn20111121-1_amd64 + libportaudiocpp0_19+svn20111121-1_amd64 + libportmidi-dev_1:184-2.1_amd64 + libportmidi0_1:184-2.1_amd64 + libportsmf-dev_0.1~svn20101010-3_amd64 + libportsmf0_0.1~svn20101010-3_amd64 + libposix-strptime-perl_0.10-1+b2_amd64 + libposixlock-ruby1.8_0.0.1-2_amd64 + libpostgresql-ocaml_1.18.0-1_amd64 + libpostgresql-ocaml-dev_1.18.0-1_amd64 + libpostproc-dev_6:0.8.9-1_amd64 + libpostproc52_6:0.8.9-1_amd64 + libpotrace-dev_1.10-1_amd64 + libpotrace0_1.10-1_amd64 + libpowerman0_2.3.5-1_amd64 + libpowerman0-dev_2.3.5-1_amd64 + libppd-dev_2:0.10-7.1_amd64 + libppd0_2:0.10-7.1_amd64 + libppi-xs-perl_0.901-1+b2_amd64 + libppl-c4_0.11.2-8_amd64 + libppl-swi_0.11.2-8_amd64 + libppl0.11-dev_0.11.2-8_amd64 + libppl9_0.11.2-8_amd64 + libpq-dev_9.1.11-0wheezy1_amd64 + libpq5_9.1.11-0wheezy1_amd64 + libpqxx-3.1_3.1-1.1_amd64 + libpqxx-3.1-dbg_3.1-1.1_amd64 + libpqxx3-dev_3.1-1.1_amd64 + libprelude-dev_1.0.0-9_amd64 + libprelude-perl_1.0.0-9_amd64 + libprelude2_1.0.0-9_amd64 + libprelude2-dbg_1.0.0-9_amd64 + libpreludedb-dev_1.0.0-1.1+b2_amd64 + libpreludedb-perl_1.0.0-1.1+b2_amd64 + libpreludedb0_1.0.0-1.1+b2_amd64 + libpresage-dev_0.8.8-1_amd64 + libpresage1_0.8.8-1_amd64 + libpresage1-dbg_0.8.8-1_amd64 + libpri-dev_1.4.12-2_amd64 + libpri1.4_1.4.12-2_amd64 + libprima-perl_1.28-1.1+b1_amd64 + libprinterconf-dev_0.5-12_amd64 + libprinterconf0c2a_0.5-12_amd64 + libprintsys_0.6-13_amd64 + libprintsys-dev_0.6-13_amd64 + libprison-dbg_1.0+dfsg-1_amd64 + libprison-dev_1.0+dfsg-1_amd64 + libprison0_1.0+dfsg-1_amd64 + libproc-processtable-perl_0.45-6_amd64 + libprocesscore4abi1_4:4.8.4-6_amd64 + libprocessui4a_4:4.8.4-6_amd64 + libprocps0_1:3.3.3-3_amd64 + libprocps0-dev_1:3.3.3-3_amd64 + libproj-dev_4.7.0-2_amd64 + libproj0_4.7.0-2_amd64 + libprojectm-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt-dev_2.1.0+dfsg-1_amd64 + libprojectm-qt1_2.1.0+dfsg-1_amd64 + libprojectm2_2.1.0+dfsg-1_amd64 + libprotobuf-c0_0.14-1+b1_amd64 + libprotobuf-c0-dev_0.14-1+b1_amd64 + libprotobuf-dev_2.4.1-3_amd64 + libprotobuf-lite7_2.4.1-3_amd64 + libprotobuf7_2.4.1-3_amd64 + libprotoc-dev_2.4.1-3_amd64 + libprotoc7_2.4.1-3_amd64 + libproxy-dev_0.3.1-6_amd64 + libproxy-tools_0.3.1-6_amd64 + libproxy0_0.3.1-6_amd64 + libproxychains-dev_3.1-3_amd64 + libproxychains3_3.1-3_amd64 + libpspell-dev_0.60.7~20110707-1_amd64 + libpst-dev_0.6.54-4.1_amd64 + libpst4_0.6.54-4.1_amd64 + libpst4-dbg_0.6.54-4.1_amd64 + libpstoedit-dev_3.60-2+b1_amd64 + libpstoedit0c2a_3.60-2+b1_amd64 + libpt-dbg_2.10.4~dfsg-1_amd64 + libpt-dev_2.10.4~dfsg-1_amd64 + libpt2.10.4_2.10.4~dfsg-1_amd64 + libptexenc-dev_2012.20120628-4_amd64 + libptexenc1_2012.20120628-4_amd64 + libpth-dev_2.0.7-16_amd64 + libpth20_2.0.7-16_amd64 + libpthread-stubs0_0.3-3_amd64 + libpthread-stubs0-dev_0.3-3_amd64 + libpthread-workqueue-dev_0.8.2-1_amd64 + libpthread-workqueue0_0.8.2-1_amd64 + libptscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libptscotch-dev_5.1.12b.dfsg-1.2_amd64 + libpugl-0-0_0~svn32+dfsg0-1_amd64 + libpugl-dbg_0~svn32+dfsg0-1_amd64 + libpugl-dev_0~svn32+dfsg0-1_amd64 + libpulse-dev_2.0-6.1_amd64 + libpulse-mainloop-glib0_2.0-6.1_amd64 + libpulse-mainloop-glib0-dbg_2.0-6.1_amd64 + libpulse-ocaml_0.1.2-1+b1_amd64 + libpulse-ocaml-dev_0.1.2-1+b1_amd64 + libpulse0_2.0-6.1_amd64 + libpulse0-dbg_2.0-6.1_amd64 + libpuma-dev_1:1.1+svn20120529-2_amd64 + libpurelibc-dev_0.4.1-1_amd64 + libpurelibc1_0.4.1-1_amd64 + libpurple0_2.10.6-3_amd64 + libpuzzle-bin_0.9-5_amd64 + libpuzzle-dev_0.9-5_amd64 + libpuzzle-php_0.9-5_amd64 + libpuzzle1_0.9-5_amd64 + libpvm3_3.4.5-12.5_amd64 + libpwl-dev_0.11.2-8_amd64 + libpwl5_0.11.2-8_amd64 + libpxp-ocaml-dev_1.2.2-1+b4_amd64 + libpycaml-ocaml_0.82-14+b2_amd64 + libpycaml-ocaml-dev_0.82-14+b2_amd64 + libpyside-dev_1.1.1-3_amd64 + libpyside-py3-1.1_1.1.1-3_amd64 + libpyside1.1_1.1.1-3_amd64 + libpythia8_8.1.65-1_amd64 + libpythia8-dev_8.1.65-1_amd64 + libpython2.6_2.6.8-1.1_amd64 + libpython2.7_2.7.3-6_amd64 + libpython3.2_3.2.3-7_amd64 + libpythonqt2-dev_2.0.1-1.1_amd64 + libpythonqt2.0_2.0.1-1.1_amd64 + libqalculate-dev_0.9.7-8_amd64 + libqalculate5_0.9.7-8_amd64 + libqapt-dev_1.3.0-2_amd64 + libqapt-runtime_1.3.0-2_amd64 + libqapt1_1.3.0-2_amd64 + libqb-dev_0.11.1-2_amd64 + libqb0_0.11.1-2_amd64 + libqca2_2.0.3-4_amd64 + libqca2-dbg_2.0.3-4_amd64 + libqca2-dev_2.0.3-4_amd64 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_amd64 + libqca2-plugin-gnupg_2.0.0~beta3-2_amd64 + libqca2-plugin-ossl_2.0.0~beta3-2_amd64 + libqd-dev_2.3.11.dfsg-2.1_amd64 + libqd0_2.3.11.dfsg-2.1_amd64 + libqdaccolib-dev_0.8.2-1_amd64 + libqdaccolib0.7_0.8.2-1_amd64 + libqdbm++-dev_1.8.78-2_amd64 + libqdbm-dev_1.8.78-2_amd64 + libqdbm-java_1.8.78-2_amd64 + libqdbm-perl_1.8.78-2_amd64 + libqdbm-ruby1.8_1.8.78-2_amd64 + libqdbm-ruby1.9.1_1.8.78-2_amd64 + libqdbm14_1.8.78-2_amd64 + libqdbm3++c2_1.8.78-2_amd64 + libqdjango-db0_0.2.5-2_amd64 + libqdjango-dev_0.2.5-2_amd64 + libqdjango-http0_0.2.5-2_amd64 + libqdjango-script0_0.2.5-2_amd64 + libqedje-dev_0.4.0+lgpl-3_amd64 + libqedje0a_0.4.0+lgpl-3_amd64 + libqfits-dev_6.2.0-5_amd64 + libqfits0_6.2.0-5_amd64 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + libqglviewer-qt4-2_2.3.4-4.2_amd64 + libqglviewer-qt4-dev_2.3.4-4.2_amd64 + libqgpgme1_4:4.8.4-2_amd64 + libqgpsmm-dev_3.6-4+deb7u1_amd64 + libqgpsmm20_3.6-4+deb7u1_amd64 + libqhull-dev_2009.1-3_amd64 + libqhull5_2009.1-3_amd64 + libqimageblitz-dbg_1:0.0.6-4_amd64 + libqimageblitz-dev_1:0.0.6-4_amd64 + libqimageblitz4_1:0.0.6-4_amd64 + libqjson-dbg_0.7.1-7_amd64 + libqjson-dev_0.7.1-7_amd64 + libqjson0_0.7.1-7_amd64 + libqmf-dev_0.16-6+deb7u1_amd64 + libqmf1_0.16-6+deb7u1_amd64 + libqmf2-1_0.16-6+deb7u1_amd64 + libqmf2-dev_0.16-6+deb7u1_amd64 + libqmfclient1_1.0.7~2011w23.2-2.1_amd64 + libqmfconsole2_0.16-6+deb7u1_amd64 + libqmfconsole2-dev_0.16-6+deb7u1_amd64 + libqmfengine1_0.16-6+deb7u1_amd64 + libqmfengine1-dev_0.16-6+deb7u1_amd64 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_amd64 + libqmfutil1_1.0.7~2011w23.2-2.1_amd64 + libqmmp-dev_0.5.5-1+b1_amd64 + libqmmp-misc_0.5.5-1+b1_amd64 + libqmmp0_0.5.5-1+b1_amd64 + libqmmpui-dev_0.5.5-1+b1_amd64 + libqmmpui0_0.5.5-1+b1_amd64 + libqoauth-dev_1.0.1-1_amd64 + libqoauth1_1.0.1-1_amd64 + libqof-dev_0.8.6-1_amd64 + libqof2_0.8.6-1_amd64 + libqof2-backend-qsf_0.8.6-1_amd64 + libqof2-backend-sqlite_0.8.6-1_amd64 + libqof2-dbg_0.8.6-1_amd64 + libqofexpensesobjects-dev_0.1.9-2_amd64 + libqofexpensesobjects1_0.1.9-2_amd64 + libqofexpensesobjects1-dbg_0.1.9-2_amd64 + libqpdf-dev_2.3.1-4_amd64 + libqpdf3_2.3.1-4_amd64 + libqpid-perl_0.16-6+deb7u1_amd64 + libqpid-ruby1.8_0.16-6+deb7u1_amd64 + libqpidbroker2_0.16-6+deb7u1_amd64 + libqpidbroker2-dev_0.16-6+deb7u1_amd64 + libqpidclient2_0.16-6+deb7u1_amd64 + libqpidclient2-dev_0.16-6+deb7u1_amd64 + libqpidcommon2_0.16-6+deb7u1_amd64 + libqpidcommon2-dev_0.16-6+deb7u1_amd64 + libqpidmessaging2_0.16-6+deb7u1_amd64 + libqpidmessaging2-dev_0.16-6+deb7u1_amd64 + libqpidtypes1_0.16-6+deb7u1_amd64 + libqpidtypes1-dev_0.16-6+deb7u1_amd64 + libqpol-dev_3.3.7-3_amd64 + libqpol1_3.3.7-3_amd64 + libqpx-dev_0.7.1.002-5_amd64 + libqpx0_0.7.1.002-5_amd64 + libqrencode-dev_3.3.0-2_amd64 + libqrencode3_3.3.0-2_amd64 + libqrupdate-dev_1.1.1-1_amd64 + libqrupdate1_1.1.1-1_amd64 + libqsastime-dev_5.9.9-5_amd64 + libqsastime0_5.9.9-5_amd64 + libqscintilla2-8_2.6.2-2_amd64 + libqscintilla2-designer_2.6.2-2_amd64 + libqt4-assistant_4:4.8.2+dfsg-11_amd64 + libqt4-core_4:4.8.2+dfsg-11_amd64 + libqt4-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dbus_4:4.8.2+dfsg-11_amd64 + libqt4-declarative_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-particles_4:4.8.2+dfsg-11_amd64 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_amd64 + libqt4-designer_4:4.8.2+dfsg-11_amd64 + libqt4-designer-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-dev_4:4.8.2+dfsg-11_amd64 + libqt4-dev-bin_4:4.8.2+dfsg-11_amd64 + libqt4-gui_4:4.8.2+dfsg-11_amd64 + libqt4-help_4:4.8.2+dfsg-11_amd64 + libqt4-network_4:4.8.2+dfsg-11_amd64 + libqt4-opengl_4:4.8.2+dfsg-11_amd64 + libqt4-opengl-dev_4:4.8.2+dfsg-11_amd64 + libqt4-phonon_4:4.8.2+dfsg-11_amd64 + libqt4-private-dev_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support_4:4.8.2+dfsg-11_amd64 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-script_4:4.8.2+dfsg-11_amd64 + libqt4-script-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-scripttools_4:4.8.2+dfsg-11_amd64 + libqt4-sql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-ibase_4:4.8.2+dfsg-11_amd64 + libqt4-sql-mysql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-odbc_4:4.8.2+dfsg-11_amd64 + libqt4-sql-psql_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_amd64 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_amd64 + libqt4-sql-tds_4:4.8.2+dfsg-11_amd64 + libqt4-svg_4:4.8.2+dfsg-11_amd64 + libqt4-test_4:4.8.2+dfsg-11_amd64 + libqt4-webkit_4:4.8.2+dfsg-11_amd64 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_amd64 + libqt4-xml_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_amd64 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_amd64 + libqt4pas-dev_2.5-6_amd64 + libqt4pas5_2.5-6_amd64 + libqtassistantclient-dev_4.6.3-4_amd64 + libqtassistantclient4_4.6.3-4_amd64 + libqtconnectivity1_1.2.0-3_amd64 + libqtcontacts1_1.2.0-3_amd64 + libqtcore4_4:4.8.2+dfsg-11_amd64 + libqtcore4-perl_4.8.4-1_amd64 + libqtdbus4_4:4.8.2+dfsg-11_amd64 + libqtexengine-dev_0.3-3_amd64 + libqtexengine1_0.3-3_amd64 + libqtfeedback1_1.2.0-3_amd64 + libqtgallery1_1.2.0-3_amd64 + libqtglib-2.0-0_0.10.2-2_amd64 + libqtgstreamer-0.10-0_0.10.2-2_amd64 + libqtgstreamer-dev_0.10.2-2_amd64 + libqtgstreamerui-0.10-0_0.10.2-2_amd64 + libqtgstreamerutils-0.10-0_0.10.2-2_amd64 + libqtgui4_4:4.8.2+dfsg-11_amd64 + libqtgui4-perl_4.8.4-1_amd64 + libqthreads-12_1.6.8-10.3_amd64 + libqtlocation1_1.2.0-3_amd64 + libqtmessaging1_1.2.0-3_amd64 + libqtmultimediakit1_1.2.0-3_amd64 + libqtnetwork4-perl_4.8.4-1_amd64 + libqtorganizer1_1.2.0-3_amd64 + libqtpublishsubscribe1_1.2.0-3_amd64 + libqtruby4shared-dev_4:4.8.4-1_amd64 + libqtruby4shared2_4:4.8.4-1_amd64 + libqtscript4-core_0.2.0-1_amd64 + libqtscript4-gui_0.2.0-1_amd64 + libqtscript4-network_0.2.0-1_amd64 + libqtscript4-opengl_0.2.0-1_amd64 + libqtscript4-phonon_0.2.0-1_amd64 + libqtscript4-qtbindings_0.2.0-1_amd64 + libqtscript4-sql_0.2.0-1_amd64 + libqtscript4-svg_0.2.0-1_amd64 + libqtscript4-uitools_0.2.0-1_amd64 + libqtscript4-webkit_0.2.0-1_amd64 + libqtscript4-xml_0.2.0-1_amd64 + libqtscript4-xmlpatterns_0.2.0-1_amd64 + libqtsensors1_1.2.0-3_amd64 + libqtserviceframework1_1.2.0-3_amd64 + libqtsysteminfo1_1.2.0-3_amd64 + libqttest4-perl_4.8.4-1_amd64 + libqtversit1_1.2.0-3_amd64 + libqtversitorganizer1_1.2.0-3_amd64 + libqtwebkit-dev_2.2.1-5_amd64 + libqtwebkit-qmlwebkitplugin_2.2.1-5_amd64 + libqtwebkit4_2.2.1-5_amd64 + libqtwebkit4-dbg_2.2.1-5_amd64 + libqtxml4-perl_4.8.4-1_amd64 + libquadmath0_4.7.2-5_amd64 + libquadmath0-dbg_4.7.2-5_amd64 + libquantlib-1.2_1.2-2+b1_amd64 + libquantlib0-dev_1.2-2+b1_amd64 + libquantum-dev_1.1.0-3_amd64 + libquantum7_1.1.0-3_amd64 + libquicktime-dev_2:1.2.4-3_amd64 + libquicktime2_2:1.2.4-3_amd64 + libquorum-dev_1.4.2-3_amd64 + libquorum4_1.4.2-3_amd64 + libquota-perl_1.6.6+dfsg-2+b1_amd64 + libquvi-dev_0.4.1-1_amd64 + libquvi7_0.4.1-1_amd64 + libqwt-dev_6.0.0-1.2_amd64 + libqwt5-qt4_5.2.2-3_amd64 + libqwt5-qt4-dev_5.2.2-3_amd64 + libqwt6_6.0.0-1.2_amd64 + libqwtplot3d-qt4-0_0.2.7+svn191-7_amd64 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_amd64 + libqxmlrpc-dev_0.0.svn6-2_amd64 + libqxmlrpc1_0.0.svn6-2_amd64 + libqxmpp-dev_0.4.92-1_amd64 + libqxmpp0_0.4.92-1_amd64 + libqxt-berkeley0_0.6.1-6_amd64 + libqxt-core0_0.6.1-6_amd64 + libqxt-designer0_0.6.1-6_amd64 + libqxt-dev_0.6.1-6_amd64 + libqxt-gui0_0.6.1-6_amd64 + libqxt-network0_0.6.1-6_amd64 + libqxt-sql0_0.6.1-6_amd64 + libqxt-web0_0.6.1-6_amd64 + libqxt-zeroconf0_0.6.1-6_amd64 + libqzeitgeist-dbg_0.7.0-1+b1_amd64 + libqzeitgeist-dev_0.7.0-1+b1_amd64 + libqzeitgeist0_0.7.0-1+b1_amd64 + libqzion-dev_0.4.0+lgpl-4_amd64 + libqzion0a_0.4.0+lgpl-4_amd64 + librabbitmq-dbg_0.0.1.hg216-1_amd64 + librabbitmq-dev_0.0.1.hg216-1_amd64 + librabbitmq0_0.0.1.hg216-1_amd64 + libradare2-0.9_0.9-3_amd64 + libradare2-0.9-dbg_0.9-3_amd64 + libradare2-dev_0.9-3_amd64 + libradius1_0.3.2-14_amd64 + libradius1-dev_0.3.2-14_amd64 + libradiusclient-ng-dev_0.5.6-1.1_amd64 + libradiusclient-ng2_0.5.6-1.1_amd64 + libranlip-dev_1.0-4.1_amd64 + libranlip1c2_1.0-4.1_amd64 + librapi2_0.15-2.1_amd64 + librapi2-dbg_0.15-2.1_amd64 + librapi2-dev_0.15-2.1_amd64 + librapi2-tools_0.15-2.1_amd64 + libraptor1_1.4.21-7.1_amd64 + libraptor1-dbg_1.4.21-7.1_amd64 + libraptor1-dev_1.4.21-7.1_amd64 + libraptor2-0_2.0.8-2_amd64 + libraptor2-0-dbg_2.0.8-2_amd64 + libraptor2-dev_2.0.8-2_amd64 + librarian-dev_0.8.1-5_amd64 + librarian0_0.8.1-5_amd64 + libraspell-ruby1.8_1.2-2_amd64 + libraspell-ruby1.9.1_1.2-2_amd64 + librasqal3_0.9.29-1_amd64 + librasqal3-dbg_0.9.29-1_amd64 + librasqal3-dev_0.9.29-1_amd64 + librasterlite-dev_1.1~svn11-2_amd64 + librasterlite1_1.1~svn11-2_amd64 + libraul-dev_0.8.0+dfsg0-0.1+b1_amd64 + libraul10_0.8.0+dfsg0-0.1+b1_amd64 + libraw-bin_0.14.6-2_amd64 + libraw-dev_0.14.6-2_amd64 + libraw1394-11_2.0.9-1_amd64 + libraw1394-dev_2.0.9-1_amd64 + libraw1394-tools_2.0.9-1_amd64 + libraw5_0.14.6-2_amd64 + librcc-dev_0.2.9-3_amd64 + librcc0_0.2.9-3_amd64 + librccgtk2-0_0.2.9-3_amd64 + librcd-dev_0.1.13-3_amd64 + librcd0_0.1.13-3_amd64 + librdf-perl_1.0.14.1-1_amd64 + librdf-ruby_1.0.14.1-1_amd64 + librdf-storage-mysql_1.0.15-1+b1_amd64 + librdf-storage-postgresql_1.0.15-1+b1_amd64 + librdf-storage-sqlite_1.0.15-1+b1_amd64 + librdf0_1.0.15-1+b1_amd64 + librdf0-dev_1.0.15-1+b1_amd64 + librdkit-dev_201203-3_amd64 + librdkit1_201203-3_amd64 + librdmacm-dev_1.0.15-1+deb7u1_amd64 + librdmacm1_1.0.15-1+deb7u1_amd64 + librdmacm1-dbg_1.0.15-1+deb7u1_amd64 + librdmawrap2_0.16-6+deb7u1_amd64 + librdmawrap2-dev_0.16-6+deb7u1_amd64 + libreact-ocaml_0.9.3-1_amd64 + libreact-ocaml-dev_0.9.3-1_amd64 + libreadline-dev_6.2+dfsg-0.1_amd64 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_amd64 + libreadline-java_0.8.0.1+dfsg-2+b1_amd64 + libreadline5_5.2+dfsg-2~deb7u1_amd64 + libreadline5-dbg_5.2+dfsg-2~deb7u1_amd64 + libreadline6_6.2+dfsg-0.1_amd64 + libreadline6-dbg_6.2+dfsg-0.1_amd64 + libreadline6-dev_6.2+dfsg-0.1_amd64 + libreadonly-xs-perl_1.04-2+b3_amd64 + librec-dev_1.5-1_amd64 + librec0_1.5-1_amd64 + librecad_1.0.2+nolibs-1_amd64 + librecode-dev_3.6-20_amd64 + librecode0_3.6-20_amd64 + libref-array-dev_0.1.3-2_amd64 + libref-array1_0.1.3-2_amd64 + libregina3_3.6-2_amd64 + libregina3-dev_3.6-2_amd64 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libregistry0_4.0.0~beta2+dfsg1-3.2_amd64 + libreins-ocaml-dev_0.1a-4+b1_amd64 + libreiser4-dev_1.0.7-6.3_amd64 + librelp-dev_1.0.0-1_amd64 + librelp0_1.0.0-1_amd64 + libremctl-dev_3.2-4_amd64 + libremctl-ruby_3.2-4_amd64 + libremctl-ruby1.8_3.2-4_amd64 + libremctl-ruby1.9.1_3.2-4_amd64 + libremctl1_3.2-4_amd64 + librenaissance0_0.9.0-4+b3_amd64 + librenaissance0-dev_0.9.0-4+b3_amd64 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_amd64 + libreoffice-voikko_3.3-3_amd64 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_amd64 + librep-dbg_0.90.2-1.3_amd64 + librep-dev_0.90.2-1.3_amd64 + librep9_0.90.2-1.3_amd64 + libreplaygain-dev_1.0~r475-1_amd64 + libreplaygain1_1.0~r475-1_amd64 + libres-ocaml-dev_3.2.0-2+b3_amd64 + libresample1_0.1.3-4_amd64 + libresample1-dev_0.1.3-4_amd64 + libresid-builder-dev_2.1.1-14_amd64 + libresid-builder0c2a_2.1.1-14_amd64 + libresiprocate-1.8_1.8.5-4_amd64 + libresiprocate-1.8-dev_1.8.5-4_amd64 + libresiprocate-turn-client-1.8_1.8.5-4_amd64 + libresiprocate-turn-client-1.8-dev_1.8.5-4_amd64 + librest-0.7-0_0.7.12-3_amd64 + librest-0.7-0-dbg_0.7.12-3_amd64 + librest-dev_0.7.12-3_amd64 + librest-extras-0.7-0_0.7.12-3_amd64 + librest-extras-dev_0.7.12-3_amd64 + librg-blast-parser-perl_0.02-2_amd64 + librhash-dev_1.2.9-8+deb7u1_amd64 + librhash-java_1.2.9-8+deb7u1_amd64 + librhash-perl_1.2.9-8+deb7u1_amd64 + librhash0_1.2.9-8+deb7u1_amd64 + librhash0-dbg_1.2.9-8+deb7u1_amd64 + librheolef-dev_6.1-2.1_amd64 + librheolef1_6.1-2.1_amd64 + librhythmbox-core6_2.97-2.1_amd64 + librivet-dev_1.8.0-1_amd64 + librivet11_1.8.0-1_amd64 + librlog-dev_1.4-2_amd64 + librlog5_1.4-2_amd64 + libroar-compat2_1.0~beta2-3_amd64 + libroar-dev_1.0~beta2-3_amd64 + libroar-plugins-universal_1.0~beta2-3_amd64 + libroar2_1.0~beta2-3_amd64 + libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64 + libroot-bindings-python-dev_5.34.00-2_amd64 + libroot-bindings-python5.34_5.34.00-2_amd64 + libroot-bindings-ruby-dev_5.34.00-2_amd64 + libroot-bindings-ruby5.34_5.34.00-2_amd64 + libroot-core-dev_5.34.00-2_amd64 + libroot-core5.34_5.34.00-2_amd64 + libroot-geom-dev_5.34.00-2_amd64 + libroot-geom5.34_5.34.00-2_amd64 + libroot-graf2d-gpad-dev_5.34.00-2_amd64 + libroot-graf2d-gpad5.34_5.34.00-2_amd64 + libroot-graf2d-graf-dev_5.34.00-2_amd64 + libroot-graf2d-graf5.34_5.34.00-2_amd64 + libroot-graf2d-postscript-dev_5.34.00-2_amd64 + libroot-graf2d-postscript5.34_5.34.00-2_amd64 + libroot-graf3d-eve-dev_5.34.00-2_amd64 + libroot-graf3d-eve5.34_5.34.00-2_amd64 + libroot-graf3d-g3d-dev_5.34.00-2_amd64 + libroot-graf3d-g3d5.34_5.34.00-2_amd64 + libroot-graf3d-gl-dev_5.34.00-2_amd64 + libroot-graf3d-gl5.34_5.34.00-2_amd64 + libroot-gui-dev_5.34.00-2_amd64 + libroot-gui-ged-dev_5.34.00-2_amd64 + libroot-gui-ged5.34_5.34.00-2_amd64 + libroot-gui5.34_5.34.00-2_amd64 + libroot-hist-dev_5.34.00-2_amd64 + libroot-hist-spectrum-dev_5.34.00-2_amd64 + libroot-hist-spectrum5.34_5.34.00-2_amd64 + libroot-hist5.34_5.34.00-2_amd64 + libroot-html-dev_5.34.00-2_amd64 + libroot-html5.34_5.34.00-2_amd64 + libroot-io-dev_5.34.00-2_amd64 + libroot-io-xmlparser-dev_5.34.00-2_amd64 + libroot-io-xmlparser5.34_5.34.00-2_amd64 + libroot-io5.34_5.34.00-2_amd64 + libroot-math-foam-dev_5.34.00-2_amd64 + libroot-math-foam5.34_5.34.00-2_amd64 + libroot-math-genvector-dev_5.34.00-2_amd64 + libroot-math-genvector5.34_5.34.00-2_amd64 + libroot-math-mathcore-dev_5.34.00-2_amd64 + libroot-math-mathcore5.34_5.34.00-2_amd64 + libroot-math-mathmore-dev_5.34.00-2_amd64 + libroot-math-mathmore5.34_5.34.00-2_amd64 + libroot-math-matrix-dev_5.34.00-2_amd64 + libroot-math-matrix5.34_5.34.00-2_amd64 + libroot-math-minuit-dev_5.34.00-2_amd64 + libroot-math-minuit5.34_5.34.00-2_amd64 + libroot-math-mlp-dev_5.34.00-2_amd64 + libroot-math-mlp5.34_5.34.00-2_amd64 + libroot-math-physics-dev_5.34.00-2_amd64 + libroot-math-physics5.34_5.34.00-2_amd64 + libroot-math-quadp-dev_5.34.00-2_amd64 + libroot-math-quadp5.34_5.34.00-2_amd64 + libroot-math-smatrix-dev_5.34.00-2_amd64 + libroot-math-smatrix5.34_5.34.00-2_amd64 + libroot-math-splot-dev_5.34.00-2_amd64 + libroot-math-splot5.34_5.34.00-2_amd64 + libroot-math-unuran-dev_5.34.00-2_amd64 + libroot-math-unuran5.34_5.34.00-2_amd64 + libroot-misc-memstat-dev_5.34.00-2_amd64 + libroot-misc-memstat5.34_5.34.00-2_amd64 + libroot-misc-minicern-dev_5.34.00-2_amd64 + libroot-misc-minicern5.34_5.34.00-2_amd64 + libroot-misc-table-dev_5.34.00-2_amd64 + libroot-misc-table5.34_5.34.00-2_amd64 + libroot-montecarlo-eg-dev_5.34.00-2_amd64 + libroot-montecarlo-eg5.34_5.34.00-2_amd64 + libroot-montecarlo-vmc-dev_5.34.00-2_amd64 + libroot-montecarlo-vmc5.34_5.34.00-2_amd64 + libroot-net-auth-dev_5.34.00-2_amd64 + libroot-net-auth5.34_5.34.00-2_amd64 + libroot-net-bonjour-dev_5.34.00-2_amd64 + libroot-net-bonjour5.34_5.34.00-2_amd64 + libroot-net-dev_5.34.00-2_amd64 + libroot-net-ldap-dev_5.34.00-2_amd64 + libroot-net-ldap5.34_5.34.00-2_amd64 + libroot-net5.34_5.34.00-2_amd64 + libroot-proof-clarens-dev_5.34.00-2_amd64 + libroot-proof-clarens5.34_5.34.00-2_amd64 + libroot-proof-dev_5.34.00-2_amd64 + libroot-proof-proofplayer-dev_5.34.00-2_amd64 + libroot-proof-proofplayer5.34_5.34.00-2_amd64 + libroot-proof5.34_5.34.00-2_amd64 + libroot-roofit-dev_5.34.00-2_amd64 + libroot-roofit5.34_5.34.00-2_amd64 + libroot-static_5.34.00-2_amd64 + libroot-tmva-dev_5.34.00-2_amd64 + libroot-tmva5.34_5.34.00-2_amd64 + libroot-tree-dev_5.34.00-2_amd64 + libroot-tree-treeplayer-dev_5.34.00-2_amd64 + libroot-tree-treeplayer5.34_5.34.00-2_amd64 + libroot-tree5.34_5.34.00-2_amd64 + librostlab-blast0_1.0.0-2_amd64 + librostlab-blast0-dbg_1.0.0-2_amd64 + librostlab-blast0-dev_1.0.0-2_amd64 + librostlab3_1.0.20-1_amd64 + librostlab3-dbg_1.0.20-1_amd64 + librostlab3-dev_1.0.20-1_amd64 + librpcsecgss-dev_0.19-5_amd64 + librpcsecgss3_0.19-5_amd64 + librplay3_3.3.2-14_amd64 + librplay3-dev_3.3.2-14_amd64 + librpm-dbg_4.10.0-5+deb7u1_amd64 + librpm-dev_4.10.0-5+deb7u1_amd64 + librpm3_4.10.0-5+deb7u1_amd64 + librpmbuild3_4.10.0-5+deb7u1_amd64 + librpmio3_4.10.0-5+deb7u1_amd64 + librpmsign1_4.10.0-5+deb7u1_amd64 + librra-dbg_0.14-1.2_amd64 + librra-dev_0.14-1.2_amd64 + librra-tools_0.14-1.2_amd64 + librra0_0.14-1.2_amd64 + librrd-dev_1.4.7-2_amd64 + librrd-ruby1.8_1.4.7-2_amd64 + librrd-ruby1.9.1_1.4.7-2_amd64 + librrd4_1.4.7-2_amd64 + librrds-perl_1.4.7-2_amd64 + librsl-dev_1.42-2_amd64 + librsl1_1.42-2_amd64 + librsskit-dev_0.3-2_amd64 + librsskit0_0.3-2_amd64 + librsskit0-dbg_0.3-2_amd64 + librsvg2-2_2.36.1-2_amd64 + librsvg2-bin_2.36.1-2_amd64 + librsvg2-common_2.36.1-2_amd64 + librsvg2-dbg_2.36.1-2_amd64 + librsvg2-dev_2.36.1-2_amd64 + librsync-dbg_0.9.7-9_amd64 + librsync-dev_0.9.7-9_amd64 + librsync1_0.9.7-9_amd64 + librtai-dev_3.8.1-4_amd64 + librtai1_3.8.1-4_amd64 + librtas-dev_1.3.6-1_amd64 + librtas1_1.3.6-1_amd64 + librtasevent-dev_1.3.6-1_amd64 + librtasevent1_1.3.6-1_amd64 + librtaudio-dbg_4.0.10~ds0-2_amd64 + librtaudio-dev_4.0.10~ds0-2_amd64 + librtaudio4_4.0.10~ds0-2_amd64 + librtfcomp-dbg_1.1-5+b1_amd64 + librtfcomp-dev_1.1-5+b1_amd64 + librtfcomp0_1.1-5+b1_amd64 + librtfilter-dev_1.1-4_amd64 + librtfilter1_1.1-4_amd64 + librtfilter1-dbg_1.1-4_amd64 + librtmidi-dbg_1.0.15~ds0-2_amd64 + librtmidi-dev_1.0.15~ds0-2_amd64 + librtmidi1_1.0.15~ds0-2_amd64 + librtmp-dev_2.4+20111222.git4e06e21-1_amd64 + librtmp0_2.4+20111222.git4e06e21-1_amd64 + librubberband-dev_1.3-1.3_amd64 + librubberband2_1.3-1.3_amd64 + libruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_amd64 + libruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_amd64 + librudecgi-dev_5.0.0-1_amd64 + librudecgi5_5.0.0-1_amd64 + libruli-bin_0.33-1.1_amd64 + libruli4_0.33-1.1_amd64 + libruli4-dev_0.33-1.1_amd64 + librxp-dev_1.5.0-1_amd64 + librxp0_1.5.0-1_amd64 + librxtx-java_2.2pre2-11_amd64 + librxtx-java-dbg_2.2pre2-11_amd64 + libs3-2_2.0-1_amd64 + libs3-dev_2.0-1_amd64 + libs3d-dev_0.2.2-8_amd64 + libs3d2_0.2.2-8_amd64 + libs3dw-dev_0.2.2-8_amd64 + libs3dw2_0.2.2-8_amd64 + libsaamf3_1.1.4-4.1_amd64 + libsaamf3-dev_1.1.4-4.1_amd64 + libsac-java-gcj_1.3-6_amd64 + libsackpt3_1.1.4-4.1_amd64 + libsackpt3-dev_1.1.4-4.1_amd64 + libsaclm3_1.1.4-4.1_amd64 + libsaclm3-dev_1.1.4-4.1_amd64 + libsaevt3_1.1.4-4.1_amd64 + libsaevt3-dev_1.1.4-4.1_amd64 + libsafe-hole-perl_0.13-1+b1_amd64 + libsage-dev_0.2.0-4.1_amd64 + libsage2_0.2.0-4.1_amd64 + libsalck3_1.1.4-4.1_amd64 + libsalck3-dev_1.1.4-4.1_amd64 + libsam-dev_1.4.2-3_amd64 + libsam4_1.4.2-3_amd64 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsamdb0_4.0.0~beta2+dfsg1-3.2_amd64 + libsaml2-dev_2.4.3-4_amd64 + libsaml7_2.4.3-4_amd64 + libsampleicc-dev_1.6.4-1+b1_amd64 + libsampleicc2_1.6.4-1+b1_amd64 + libsamplerate-ocaml_0.1.1-1+b3_amd64 + libsamplerate-ocaml-dev_0.1.1-1+b3_amd64 + libsamplerate0_0.1.8-5_amd64 + libsamplerate0-dev_0.1.8-5_amd64 + libsamsg4_1.1.4-4.1_amd64 + libsamsg4-dev_1.1.4-4.1_amd64 + libsane_1.0.22-7.4_amd64 + libsane-common_1.0.22-7.4_amd64 + libsane-dbg_1.0.22-7.4_amd64 + libsane-dev_1.0.22-7.4_amd64 + libsane-extras_1.0.22.2_amd64 + libsane-extras-common_1.0.22.2_amd64 + libsane-extras-dbg_1.0.22.2_amd64 + libsane-extras-dev_1.0.22.2_amd64 + libsane-hpaio_3.12.6-3.1+deb7u1_amd64 + libsane-perl_0.05-2_amd64 + libsanlock-client1_2.2-2_amd64 + libsanlock-dev_2.2-2_amd64 + libsary-dev_1:1.2.0-2.1_amd64 + libsary-ruby1.8_1.2.0-3.1_amd64 + libsary10_1:1.2.0-2.1_amd64 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_amd64 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_amd64 + libsatmr3_1.1.4-4.1_amd64 + libsatmr3-dev_1.1.4-4.1_amd64 + libsaxon-java-gcj_1:6.5.5-8_amd64 + libsb2_2.2.4-1debian1_amd64 + libsbjson-dev_2.3.2-2_amd64 + libsbjson2.3_2.3.2-2_amd64 + libsbsms-dev_2.0.1-1_amd64 + libsbsms10_2.0.1-1_amd64 + libsbuf-dev_9.0+ds1-4_amd64 + libsbuf6_9.0+ds1-4_amd64 + libsbuild-dev_1.6.4-4_amd64 + libsc-dev_2.3.1-14_amd64 + libsc7_2.3.1-14_amd64 + libscalapack-mpi-dev_1.8.0-9_amd64 + libscalapack-mpi1_1.8.0-9_amd64 + libscalapack-pvm-dev_1.8.0-9_amd64 + libscalapack-pvm1_1.8.0-9_amd64 + libscalar-list-utils-perl_1:1.25-1_amd64 + libscalar-number-perl_0.006-1+b2_amd64 + libscalar-string-perl_0.002-1+b2_amd64 + libscalar-util-numeric-perl_0.22-1+b2_amd64 + libscalc-dev_0.2.4-1_amd64 + libscalc0_0.2.4-1_amd64 + libscamperfile0_20111202b-1_amd64 + libscamperfile0-dev_20111202b-1_amd64 + libschroedinger-1.0-0_1.0.11-2_amd64 + libschroedinger-dev_1.0.11-2_amd64 + libschroedinger-ocaml_0.1.0-1+b3_amd64 + libschroedinger-ocaml-dev_0.1.0-1+b3_amd64 + libscilab-java_5.3.3-10_amd64 + libscilab2-java_5.3.3-10_amd64 + libscim-dev_1.4.13-5_amd64 + libscim8c2a_1.4.13-5_amd64 + libsclang1_1:3.4.5-1wheezy1_amd64 + libscm-dev_5e5-3.2_amd64 + libscope-upper-perl_0.18-1+b1_amd64 + libscotch-5.1_5.1.12b.dfsg-1.2_amd64 + libscotch-dbg_5.1.12b.dfsg-1.2_amd64 + libscotch-dev_5.1.12b.dfsg-1.2_amd64 + libscotchmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_amd64 + libscsynth1_1:3.4.5-1wheezy1_amd64 + libsctp-dev_1.0.11+dfsg-2_amd64 + libsctp1_1.0.11+dfsg-2_amd64 + libsdl-console_2.1-3_amd64 + libsdl-console-dev_2.1-3_amd64 + libsdl-gfx1.2-4_2.0.23-3_amd64 + libsdl-gfx1.2-dev_2.0.23-3_amd64 + libsdl-gst_3.2.4-2_amd64 + libsdl-image1.2_1.2.12-2_amd64 + libsdl-image1.2-dev_1.2.12-2_amd64 + libsdl-mixer1.2_1.2.12-3_amd64 + libsdl-mixer1.2-dev_1.2.12-3_amd64 + libsdl-net1.2_1.2.8-2_amd64 + libsdl-net1.2-dev_1.2.8-2_amd64 + libsdl-ocaml_0.9.0-1_amd64 + libsdl-ocaml-dev_0.9.0-1_amd64 + libsdl-pango-dev_0.1.2-6_amd64 + libsdl-pango1_0.1.2-6_amd64 + libsdl-perl_2.540-1_amd64 + libsdl-sge_030809dfsg-3_amd64 + libsdl-sge-dev_030809dfsg-3_amd64 + libsdl-sound1.2_1.0.3-6_amd64 + libsdl-sound1.2-dev_1.0.3-6_amd64 + libsdl-stretch-0-3_0.3.1-3_amd64 + libsdl-stretch-dev_0.3.1-3_amd64 + libsdl-ttf2.0-0_2.0.11-2_amd64 + libsdl-ttf2.0-dev_2.0.11-2_amd64 + libsdl1.2-dbg_1.2.15-5_amd64 + libsdl1.2-dev_1.2.15-5_amd64 + libsdl1.2debian_1.2.15-5_amd64 + libsdp1_1.1.99-2.1_amd64 + libsdpa-dev_7.3.8+dfsg-1_amd64 + libsearch-xapian-perl_1.2.10.0-1_amd64 + libsearchclient-dev_0.7.7-3_amd64 + libsearchclient0_0.7.7-3_amd64 + libseaudit-dev_3.3.7-3_amd64 + libseaudit4_3.3.7-3_amd64 + libseed-gtk3-0_3.2.0-2_amd64 + libseed-gtk3-dev_3.2.0-2_amd64 + libsefs-dev_3.3.7-3_amd64 + libsefs4_3.3.7-3_amd64 + libselinux1_2.1.9-5_amd64 + libselinux1-dev_2.1.9-5_amd64 + libsemanage1_2.1.6-6_amd64 + libsemanage1-dev_2.1.6-6_amd64 + libsendmail-milter-perl_0.18-7+b5_amd64 + libsensors-applet-plugin-dev_3.0.0-0.2_amd64 + libsensors-applet-plugin0_3.0.0-0.2_amd64 + libsensors4_1:3.3.2-2+deb7u1_amd64 + libsensors4-dev_1:3.3.2-2+deb7u1_amd64 + libsepol1_2.1.4-3_amd64 + libsepol1-dev_2.1.4-3_amd64 + libserd-0-0_0.14.0~dfsg0-2_amd64 + libserd-dev_0.14.0~dfsg0-2_amd64 + libserf-dev_1.1.0-2_amd64 + libserf1_1.1.0-2_amd64 + libserf1-dbg_1.1.0-2_amd64 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_amd64 + libset-object-perl_1.27-1+b2_amd64 + libsetools-jni_3.3.7-3_amd64 + libsetools-tcl_3.3.7-3_amd64 + libsexplib-camlp4-dev_7.0.4-2_amd64 + libsexy-dev_0.1.11-2+b1_amd64 + libsexy2_0.1.11-2+b1_amd64 + libsfml-audio1.6_1.6+dfsg2-2_amd64 + libsfml-dev_1.6+dfsg2-2_amd64 + libsfml-graphics1.6_1.6+dfsg2-2_amd64 + libsfml-network1.6_1.6+dfsg2-2_amd64 + libsfml-system1.6_1.6+dfsg2-2_amd64 + libsfml-window1.6_1.6+dfsg2-2_amd64 + libsfml1.6-dbg_1.6+dfsg2-2_amd64 + libsfst1-1.2-0_1.2.0-1.2_amd64 + libsfst1-1.2-0-dev_1.2.0-1.2_amd64 + libsgml-parser-opensp-perl_0.994-2+b1_amd64 + libsgutils2-2_1.33-1_amd64 + libsgutils2-dev_1.33-1_amd64 + libsha-ocaml_1.7-2+b2_amd64 + libsha-ocaml-dev_1.7-2+b2_amd64 + libshairport-dev_1.2.1~git20120110.aeb4987-2_amd64 + libshairport1_1.2.1~git20120110.aeb4987-2_amd64 + libshevek-dev_1.3-1_amd64 + libshevek0_1.3-1_amd64 + libshhmsg1_1.4.1-4.1_amd64 + libshhmsg1-dev_1.4.1-4.1_amd64 + libshhopt1_1.1.7-2.1_amd64 + libshhopt1-dev_1.1.7-2.1_amd64 + libshiboken-dev_1.1.1-1_amd64 + libshiboken-py3-1.1_1.1.1-1_amd64 + libshiboken1.1_1.1.1-1_amd64 + libshibsp-dev_2.4.3+dfsg-5+b1_amd64 + libshibsp5_2.4.3+dfsg-5+b1_amd64 + libshisa-dev_1.0.1-2_amd64 + libshisa0_1.0.1-2_amd64 + libshishi-dev_1.0.1-2_amd64 + libshishi0_1.0.1-2_amd64 + libshout-ocaml_0.2.7-1+b3_amd64 + libshout-ocaml-dev_0.2.7-1+b3_amd64 + libshout3_2.2.2-8_amd64 + libshout3-dev_2.2.2-8_amd64 + libshp-dev_1.2.10-7_amd64 + libshp1_1.2.10-7_amd64 + libshr-glib-dbg_2011.03.08.2~git20110930-2_amd64 + libshr-glib-dev_2011.03.08.2~git20110930-2_amd64 + libshr-glib0_2011.03.08.2~git20110930-2_amd64 + libsidl-1.4.0_1.4.0.dfsg-8.1_amd64 + libsidl-dev_1.4.0.dfsg-8.1_amd64 + libsidplay1_1.36.59-5_amd64 + libsidplay1-dev_1.36.59-5_amd64 + libsidplay2_2.1.1-14_amd64 + libsidplay2-dev_2.1.1-14_amd64 + libsidplayfp_0.3.5-1_amd64 + libsidplayfp-dbg_0.3.5-1_amd64 + libsidplayfp-dev_0.3.5-1_amd64 + libsidutils-dev_2.1.1-14_amd64 + libsidutils0_2.1.1-14_amd64 + libsieve2-1_2.2.6-1.1_amd64 + libsieve2-dev_2.2.6-1.1_amd64 + libsigc++-1.2-5c2_1.2.7-2_amd64 + libsigc++-1.2-dev_1.2.7-2_amd64 + libsigc++-2.0-0c2a_2.2.10-0.2_amd64 + libsigc++-2.0-dev_2.2.10-0.2_amd64 + libsigc++-dev_1.0.4-9.4_amd64 + libsigc++0c2_1.0.4-9.4_amd64 + libsignatures-perl_0.06-1_amd64 + libsigrok0_0.1.0-2_amd64 + libsigrok0-dev_0.1.0-2_amd64 + libsigrokdecode0_0.1.0-2_amd64 + libsigrokdecode0-dev_0.1.0-2_amd64 + libsigsegv-dev_2.9-4_amd64 + libsigsegv2_2.9-4_amd64 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_amd64 + libsilly_0.1.0-3_amd64 + libsilly-dev_0.1.0-3_amd64 + libsilo-bin_4.8-13_amd64 + libsilo-dev_4.8-13_amd64 + libsiloh5-0_4.8-13_amd64 + libsimage-dev_1.7.0-1.1+b1_amd64 + libsimage20_1.7.0-1.1+b1_amd64 + libsimplelist0_0.3.4-2_amd64 + libsimplelist0-dev_0.3.4-2_amd64 + libsipwitch-dev_1.2.4-1_amd64 + libsipwitch1_1.2.4-1_amd64 + libsipwitch1-dbg_1.2.4-1_amd64 + libsiscone-dev_2.0.5-1_amd64 + libsiscone-spherical-dev_2.0.5-1_amd64 + libsiscone-spherical0_2.0.5-1_amd64 + libsiscone0_2.0.5-1_amd64 + libskk-dbg_0.0.12-3_amd64 + libskk-dev_0.0.12-3_amd64 + libskk0_0.0.12-3_amd64 + libskstream-0.3-6_0.3.8-1_amd64 + libskstream-0.3-6-dbg_0.3.8-1_amd64 + libskstream-0.3-dev_0.3.8-1_amd64 + libsl0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libslang2_2.2.4-15_amd64 + libslang2-dev_2.2.4-15_amd64 + libslang2-modules_2.2.4-15_amd64 + libslang2-pic_2.2.4-15_amd64 + libslepc3.2_3.2-p5-1_amd64 + libslepc3.2-dbg_3.2-p5-1_amd64 + libslepc3.2-dev_3.2-p5-1_amd64 + libslice34_3.4.2-8.2_amd64 + libslp-dev_1.2.1-9_amd64 + libslp1_1.2.1-9_amd64 + libslurm-dev_2.3.4-2+b1_amd64 + libslurm-perl_2.3.4-2+b1_amd64 + libslurm23_2.3.4-2+b1_amd64 + libslurmdb-dev_2.3.4-2+b1_amd64 + libslurmdb-perl_2.3.4-2+b1_amd64 + libslurmdb23_2.3.4-2+b1_amd64 + libslv2-9_0.6.6+dfsg1-2_amd64 + libslv2-dev_0.6.6+dfsg1-2_amd64 + libsm-dev_2:1.2.1-2_amd64 + libsm6_2:1.2.1-2_amd64 + libsm6-dbg_2:1.2.1-2_amd64 + libsmbclient_2:3.6.6-6+deb7u2_amd64 + libsmbclient-dev_2:3.6.6-6+deb7u2_amd64 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_amd64 + libsmbios-bin_2.0.3.dfsg-1.1_amd64 + libsmbios-dev_2.0.3.dfsg-1.1_amd64 + libsmbios2_2.0.3.dfsg-1.1_amd64 + libsmf-dev_1.3-2_amd64 + libsmf0_1.3-2_amd64 + libsmi2-dbg_0.4.8+dfsg2-7_amd64 + libsmi2-dev_0.4.8+dfsg2-7_amd64 + libsmi2ldbl_0.4.8+dfsg2-7_amd64 + libsmlnj-smlnj_110.74-2_amd64 + libsmltk0_3.4.0.16.7-1_amd64 + libsmokeakonadi3_4:4.8.4-1_amd64 + libsmokeattica3_4:4.8.4-1_amd64 + libsmokebase3_4:4.8.4-1_amd64 + libsmokekde-dev_4:4.8.4-1_amd64 + libsmokekde4-dbg_4:4.8.4-1_amd64 + libsmokekdecore4-3_4:4.8.4-1_amd64 + libsmokekdeui4-3_4:4.8.4-1_amd64 + libsmokekfile3_4:4.8.4-1_amd64 + libsmokekhtml3_4:4.8.4-1_amd64 + libsmokekio3_4:4.8.4-1_amd64 + libsmokeknewstuff2-3_4:4.8.4-1_amd64 + libsmokeknewstuff3-3_4:4.8.4-1_amd64 + libsmokekparts3_4:4.8.4-1_amd64 + libsmokektexteditor3_4:4.8.4-1_amd64 + libsmokekutils3_4:4.8.4-1_amd64 + libsmokenepomuk3_4:4.8.4-1_amd64 + libsmokenepomukquery3_4:4.8.4-1_amd64 + libsmokeokular3_4:4.8.4-1_amd64 + libsmokephonon3_4:4.8.4-1_amd64 + libsmokeplasma3_4:4.8.4-1_amd64 + libsmokeqimageblitz3_4:4.8.4-1_amd64 + libsmokeqsci3_4:4.8.4-1_amd64 + libsmokeqt3support4-3_4:4.8.4-1_amd64 + libsmokeqt4-dbg_4:4.8.4-1_amd64 + libsmokeqt4-dev_4:4.8.4-1_amd64 + libsmokeqtcore4-3_4:4.8.4-1_amd64 + libsmokeqtdbus4-3_4:4.8.4-1_amd64 + libsmokeqtdeclarative4-3_4:4.8.4-1_amd64 + libsmokeqtgui4-3_4:4.8.4-1_amd64 + libsmokeqthelp4-3_4:4.8.4-1_amd64 + libsmokeqtnetwork4-3_4:4.8.4-1_amd64 + libsmokeqtopengl4-3_4:4.8.4-1_amd64 + libsmokeqtscript4-3_4:4.8.4-1_amd64 + libsmokeqtsql4-3_4:4.8.4-1_amd64 + libsmokeqtsvg4-3_4:4.8.4-1_amd64 + libsmokeqttest4-3_4:4.8.4-1_amd64 + libsmokeqtuitools4-3_4:4.8.4-1_amd64 + libsmokeqtwebkit4-3_4:4.8.4-1_amd64 + libsmokeqtxml4-3_4:4.8.4-1_amd64 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_amd64 + libsmokesolid3_4:4.8.4-1_amd64 + libsmokesoprano3_4:4.8.4-1_amd64 + libsmokesopranoclient3_4:4.8.4-1_amd64 + libsmokesopranoserver3_4:4.8.4-1_amd64 + libsmpeg-dev_0.4.5+cvs20030824-5_amd64 + libsmpeg0_0.4.5+cvs20030824-5_amd64 + libsnacc-dev_1.3.1-1_amd64 + libsnacc0c2_1.3.1-1_amd64 + libsnack2_2.2.10-dfsg1-12.1_amd64 + libsnack2-alsa_2.2.10-dfsg1-12.1_amd64 + libsnack2-dev_2.2.10-dfsg1-12.1_amd64 + libsnappy-dev_1.0.5-2_amd64 + libsnappy1_1.0.5-2_amd64 + libsndfile1_1.0.25-5_amd64 + libsndfile1-dev_1.0.25-5_amd64 + libsndobj-dev_2.6.6.1-3_amd64 + libsndobj2c2_2.6.6.1-3_amd64 + libsnmp-dev_5.4.3~dfsg-2.7_amd64 + libsnmp-perl_5.4.3~dfsg-2.7_amd64 + libsnmp-python_5.4.3~dfsg-2.7_amd64 + libsnmp15_5.4.3~dfsg-2.7_amd64 + libsnmp15-dbg_5.4.3~dfsg-2.7_amd64 + libsnmpkit-dev_0.9-16_amd64 + libsnmpkit2c2a_0.9-16_amd64 + libsocialweb-client-dev_0.25.20-2.1_amd64 + libsocialweb-client2_0.25.20-2.1_amd64 + libsocialweb-client2-dbg_0.25.20-2.1_amd64 + libsocialweb-dev_0.25.20-2.1_amd64 + libsocialweb-service_0.25.20-2.1_amd64 + libsocialweb0_0.25.20-2.1_amd64 + libsocialweb0-dbg_0.25.20-2.1_amd64 + libsocket-getaddrinfo-perl_0.22-1_amd64 + libsocket-linux-perl_0.01-1+b1_amd64 + libsocket-multicast6-perl_0.04-1+b2_amd64 + libsocket-perl_2.002-1_amd64 + libsocket6-perl_0.23-1+b2_amd64 + libsocks4_4.3.beta2-18_amd64 + libsocksd0_1.1.19.dfsg-3+b3_amd64 + libsocksd0-dev_1.1.19.dfsg-3+b3_amd64 + libsofa-c-dev_2012.03.01-1_amd64 + libsofa-c0_2012.03.01-1_amd64 + libsofa1_1.0~beta4-7_amd64 + libsofa1-dev_1.0~beta4-7_amd64 + libsofia-sip-ua-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_amd64 + libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64 + libsofia-sip-ua0_1.12.11+20110422-1_amd64 + libsofthsm_1.3.3-2_amd64 + libsofthsm-dev_1.3.3-2_amd64 + libsoil-dev_1.07~20080707.dfsg-2_amd64 + libsoil1_1.07~20080707.dfsg-2_amd64 + libsoil1-dbg_1.07~20080707.dfsg-2_amd64 + libsolid4_4:4.8.4-4_amd64 + libsolidcontrol4abi2_4:4.8.4-6_amd64 + libsolidcontrolifaces4abi2_4:4.8.4-6_amd64 + libsombok-dev_2.2.1-1_amd64 + libsombok3_2.2.1-1_amd64 + libsonic-dev_0.1.17-1.1_amd64 + libsonic0_0.1.17-1.1_amd64 + libsope-dev_1.3.16-1_amd64 + libsope1_1.3.16-1_amd64 + libsope1-dbg_1.3.16-1_amd64 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_amd64 + libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64 + libsoqt-dev-common_1.5.0-2_amd64 + libsoqt4-20_1.5.0-2_amd64 + libsoqt4-dev_1.5.0-2_amd64 + libsord-0-0_0.8.0~dfsg0-1_amd64 + libsord-dev_0.8.0~dfsg0-1_amd64 + libsort-key-perl_1.32-1_amd64 + libsort-key-top-perl_0.06-1_amd64 + libsoundgen-dbg_0.6-4_amd64 + libsoundgen-dev_0.6-4_amd64 + libsoundgen0_0.6-4_amd64 + libsoundtouch-dev_1.6.0-3_amd64 + libsoundtouch-ocaml_0.1.7-1+b1_amd64 + libsoundtouch-ocaml-dev_0.1.7-1+b1_amd64 + libsoundtouch0_1.6.0-3_amd64 + libsoundtouch0-dbg_1.6.0-3_amd64 + libsoup-gnome2.4-1_2.38.1-2_amd64 + libsoup-gnome2.4-dev_2.38.1-2_amd64 + libsoup2.4-1_2.38.1-2_amd64 + libsoup2.4-dbg_2.38.1-2_amd64 + libsoup2.4-dev_2.38.1-2_amd64 + libsoupcutter-dev_1.1.7-1.2_amd64 + libsoupcutter0_1.1.7-1.2_amd64 + libsource-highlight-dev_3.1.6-1.1_amd64 + libsource-highlight4_3.1.6-1.1_amd64 + libsox-dev_14.4.0-3_amd64 + libsox-fmt-all_14.4.0-3_amd64 + libsox-fmt-alsa_14.4.0-3_amd64 + libsox-fmt-ao_14.4.0-3_amd64 + libsox-fmt-base_14.4.0-3_amd64 + libsox-fmt-ffmpeg_14.4.0-3_amd64 + libsox-fmt-mp3_14.4.0-3_amd64 + libsox-fmt-oss_14.4.0-3_amd64 + libsox-fmt-pulse_14.4.0-3_amd64 + libsox2_14.4.0-3_amd64 + libsp-gxmlcpp-dev_1.0.20040603-5_amd64 + libsp-gxmlcpp1_1.0.20040603-5_amd64 + libsp1-dev_1.3.4-1.2.1-47.1+b1_amd64 + libsp1c2_1.3.4-1.2.1-47.1+b1_amd64 + libspandsp-dev_0.0.6~pre20-3.1_amd64 + libspandsp2_0.0.6~pre20-3.1_amd64 + libsparskit-dev_2.0.0-2_amd64 + libsparskit2.0_2.0.0-2_amd64 + libspatialindex-dev_1.7.0-1_amd64 + libspatialindex1_1.7.0-1_amd64 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_amd64 + libspatialite3_3.0.0~beta20110817-3+deb7u1_amd64 + libspctag-dev_0.2-1_amd64 + libspctag1_0.2-1_amd64 + libspectre-dev_0.2.7-2_amd64 + libspectre1_0.2.7-2_amd64 + libspectre1-dbg_0.2.7-2_amd64 + libspectrum-dev_1.0.0-3_amd64 + libspectrum8_1.0.0-3_amd64 + libspeechd-dev_0.7.1-6.2_amd64 + libspeechd2_0.7.1-6.2_amd64 + libspeex-dbg_1.2~rc1-7_amd64 + libspeex-dev_1.2~rc1-7_amd64 + libspeex-ocaml_0.2.0-1+b3_amd64 + libspeex-ocaml-dev_0.2.0-1+b3_amd64 + libspeex1_1.2~rc1-7_amd64 + libspeexdsp-dev_1.2~rc1-7_amd64 + libspeexdsp1_1.2~rc1-7_amd64 + libspf2-2_1.2.9-7_amd64 + libspf2-2-dbg_1.2.9-7_amd64 + libspf2-dev_1.2.9-7_amd64 + libsphere-dev_3.2-4_amd64 + libsphere0d_3.2-4_amd64 + libspice-client-glib-2.0-1_0.12-5_amd64 + libspice-client-glib-2.0-dev_0.12-5_amd64 + libspice-client-gtk-2.0-1_0.12-5_amd64 + libspice-client-gtk-2.0-dev_0.12-5_amd64 + libspice-client-gtk-3.0-1_0.12-5_amd64 + libspice-client-gtk-3.0-dev_0.12-5_amd64 + libspice-server-dev_0.11.0-1+deb7u1_amd64 + libspice-server1_0.11.0-1+deb7u1_amd64 + libspiro-dev_20071029-2_amd64 + libspiro0_20071029-2_amd64 + libspiro0-dbg_20071029-2_amd64 + libspnav-dev_0.2.2-1_amd64 + libspnav0_0.2.2-1_amd64 + libspooles-dev_2.2-9_amd64 + libspooles2.2_2.2-9_amd64 + libsprng2_2.0a-8_amd64 + libsprng2-dev_2.0a-8_amd64 + libsqlexpr-ocaml_0.4.1-1+b5_amd64 + libsqlexpr-ocaml-dev_0.4.1-1+b5_amd64 + libsqlheavy-dev_0.1.1-1_amd64 + libsqlheavy0.1-0_0.1.1-1_amd64 + libsqlheavy0.1-dbg_0.1.1-1_amd64 + libsqlheavygtk-dev_0.1.1-1_amd64 + libsqlheavygtk0.1-0_0.1.1-1_amd64 + libsqlite-tcl_2.8.17-7_amd64 + libsqlite0_2.8.17-7_amd64 + libsqlite0-dev_2.8.17-7_amd64 + libsqlite3-0_3.7.13-1+deb7u1_amd64 + libsqlite3-0-dbg_3.7.13-1+deb7u1_amd64 + libsqlite3-dev_3.7.13-1+deb7u1_amd64 + libsqlite3-gst_3.2.4-2_amd64 + libsqlite3-mod-blobtoxy_0.91-3_amd64 + libsqlite3-mod-impexp_0.91-3_amd64 + libsqlite3-ocaml_1.6.1-1+b1_amd64 + libsqlite3-ocaml-dev_1.6.1-1+b1_amd64 + libsqlite3-tcl_3.7.13-1+deb7u1_amd64 + libsqliteodbc_0.91-3_amd64 + libsquizz_0.99a-2_amd64 + libsquizz-dev_0.99a-2_amd64 + libsratom-0-0_0.2.0~dfsg0-1_amd64 + libsratom-dev_0.2.0~dfsg0-1_amd64 + libsrecord-dev_1.58-1+b1_amd64 + libsrecord0_1.58-1+b1_amd64 + libsrecord0-dbg_1.58-1+b1_amd64 + libsrf-dev_0.1+dfsg-1_amd64 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_amd64 + libss2_1.42.5-1.1_amd64 + libss2-dbg_1.42.5-1.1_amd64 + libss7-1_1.0.2-3_amd64 + libss7-dbg_1.0.2-3_amd64 + libss7-dev_1.0.2-3_amd64 + libsscm-dev_0.8.5-2.1_amd64 + libsscm3_0.8.5-2.1_amd64 + libssh-4_0.5.4-1_amd64 + libssh-dbg_0.5.4-1_amd64 + libssh-dev_0.5.4-1_amd64 + libssh2-1_1.4.2-1.1_amd64 + libssh2-1-dbg_1.4.2-1.1_amd64 + libssh2-1-dev_1.4.2-1.1_amd64 + libssh2-php_0.11.3-0.1+b2_amd64 + libssl-dev_1.0.1e-2+deb7u4_amd64 + libssl-ocaml_0.4.6-1_amd64 + libssl-ocaml-dev_0.4.6-1_amd64 + libssl1.0.0_1.0.1e-2+deb7u4_amd64 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_amd64 + libsslcommon2_0.16-6+deb7u1_amd64 + libsslcommon2-dev_0.16-6+deb7u1_amd64 + libssreflect-ocaml_1.3pl4-1_amd64 + libssreflect-ocaml-dev_1.3pl4-1_amd64 + libsss-sudo-dev_1.8.4-2_amd64 + libsss-sudo0_1.8.4-2_amd64 + libst-dev_1.9-3_amd64 + libst1_1.9-3_amd64 + libstaden-read-dev_1.12.4-1_amd64 + libstaden-read1_1.12.4-1_amd64 + libstarlink-ast-dev_7.0.4+dfsg-1_amd64 + libstarlink-ast-err0_7.0.4+dfsg-1_amd64 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_amd64 + libstarlink-ast0_7.0.4+dfsg-1_amd64 + libstarlink-pal-dev_0.1.0-1_amd64 + libstarlink-pal0_0.1.0-1_amd64 + libstarpu-1.0_1.0.1+dfsg-1_amd64 + libstarpu-dev_1.0.1+dfsg-1_amd64 + libstarpufft-1.0_1.0.1+dfsg-1_amd64 + libstarpumpi-1.0_1.0.1+dfsg-1_amd64 + libstartup-notification0_0.12-1_amd64 + libstartup-notification0-dev_0.12-1_amd64 + libstatgrab-dev_0.17-1_amd64 + libstatgrab6_0.17-1_amd64 + libstdc++5_1:3.3.6-25_amd64 + libstdc++6_4.7.2-5_amd64 + libstdc++6-4.4-dbg_4.4.7-2_amd64 + libstdc++6-4.4-dev_4.4.7-2_amd64 + libstdc++6-4.4-pic_4.4.7-2_amd64 + libstdc++6-4.6-dbg_4.6.3-14_amd64 + libstdc++6-4.6-dev_4.6.3-14_amd64 + libstdc++6-4.6-pic_4.6.3-14_amd64 + libstdc++6-4.7-dbg_4.7.2-5_amd64 + libstdc++6-4.7-dev_4.7.2-5_amd64 + libstdc++6-4.7-pic_4.7.2-5_amd64 + libstemmer-dev_0+svn546-2_amd64 + libstemmer-tools_0+svn546-2_amd64 + libstemmer0d_0+svn546-2_amd64 + libstemmer0d-dbg_0+svn546-2_amd64 + libsteptalk-dev_0.10.0-5+b1_amd64 + libsteptalk0_0.10.0-5+b1_amd64 + libstfl-dev_0.22-1+b1_amd64 + libstfl-perl_0.22-1+b1_amd64 + libstfl-ruby1.8_0.22-1+b1_amd64 + libstfl-ruby1.9.1_0.22-1+b1_amd64 + libstfl-spl_0.22-1+b1_amd64 + libstfl0_0.22-1+b1_amd64 + libstk0-dev_4.4.3-2_amd64 + libstk0c2a_4.4.3-2_amd64 + libstonith1_1.0.9+hg2665-1_amd64 + libstonith1-dev_1.0.9+hg2665-1_amd64 + libstonithd1_1.1.7-1_amd64 + libstonithd1-dev_1.1.7-1_amd64 + libstreamanalyzer-dev_0.7.7-3_amd64 + libstreamanalyzer0_0.7.7-3_amd64 + libstreams-dev_0.7.7-3_amd64 + libstreams0_0.7.7-3_amd64 + libstrigihtmlgui-dev_0.7.7-3_amd64 + libstrigihtmlgui0_0.7.7-3_amd64 + libstrigiqtdbusclient-dev_0.7.7-3_amd64 + libstrigiqtdbusclient0_0.7.7-3_amd64 + libstring-approx-perl_3.26-1+b2_amd64 + libstring-crc32-perl_1.4-2+b3_amd64 + libstring-similarity-perl_1.04-1_amd64 + libstroke0_0.5.1-6_amd64 + libstroke0-dev_0.5.1-6_amd64 + libstrongswan_4.5.2-1.5+deb7u2_amd64 + libstxxl-dev_1.3.1-4_amd64 + libstxxl1_1.3.1-4_amd64 + libstxxl1-dbg_1.3.1-4_amd64 + libstyx2_1.8.0-1.1_amd64 + libsub-current-perl_0.02-1+b2_amd64 + libsub-identify-perl_0.04-1+b2_amd64 + libsub-name-perl_0.05-1+b2_amd64 + libsub-prototype-perl_0.02-1+b2_amd64 + libsublime-dev_1.3.1-2_amd64 + libsublime5_1.3.1-2_amd64 + libsubtitleeditor-dev_0.33.0-1_amd64 + libsubtitleeditor0_0.33.0-1_amd64 + libsubunit-dev_0.0.8+bzr176-1_amd64 + libsubunit0_0.0.8+bzr176-1_amd64 + libsugarext-dbg_0.96.1-2_amd64 + libsugarext-dev_0.96.1-2_amd64 + libsugarext0_0.96.1-2_amd64 + libsuil-0-0_0.6.4~dfsg0-3_amd64 + libsuil-dev_0.6.4~dfsg0-3_amd64 + libsuitesparse-dbg_1:3.4.0-3_amd64 + libsuitesparse-dev_1:3.4.0-3_amd64 + libsundials-cvode1_2.5.0-3_amd64 + libsundials-cvodes2_2.5.0-3_amd64 + libsundials-ida2_2.5.0-3_amd64 + libsundials-idas0_2.5.0-3_amd64 + libsundials-kinsol1_2.5.0-3_amd64 + libsundials-nvecserial0_2.5.0-3_amd64 + libsundials-serial_2.5.0-3_amd64 + libsundials-serial-dev_2.5.0-3_amd64 + libsunpinyin-dev_2.0.3+git20120607-1_amd64 + libsunpinyin3_2.0.3+git20120607-1_amd64 + libsunpinyin3-dbg_2.0.3+git20120607-1_amd64 + libsuperlu3_3.0+20070106-3_amd64 + libsuperlu3-dev_3.0+20070106-3_amd64 + libsvga1_1:1.4.3-33_amd64 + libsvga1-dev_1:1.4.3-33_amd64 + libsvm-dev_3.12-1_amd64 + libsvm-tools_3.12-1_amd64 + libsvm3_3.12-1_amd64 + libsvn-dev_1.6.17dfsg-4+deb7u4_amd64 + libsvn-java_1.6.17dfsg-4+deb7u4_amd64 + libsvn-perl_1.6.17dfsg-4+deb7u4_amd64 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_amd64 + libsvn1_1.6.17dfsg-4+deb7u4_amd64 + libsvncpp-dev_0.12.0dfsg-6_amd64 + libsvncpp3_0.12.0dfsg-6_amd64 + libsvnqt-dev_1.5.5-4.1_amd64 + libsvnqt6_1.5.5-4.1_amd64 + libsvrcore-dev_1:4.0.4-15_amd64 + libsvrcore0_1:4.0.4-15_amd64 + libsvrcore0-dbg_1:4.0.4-15_amd64 + libswami-dev_2.0.0+svn389-2_amd64 + libswami0_2.0.0+svn389-2_amd64 + libswe-dev_1.77.00.0005-2_amd64 + libswe0_1.77.00.0005-2_amd64 + libswf-perl_1:0.4.4-1.1_amd64 + libswiften-dev_2.0~beta1+dev47-1_amd64 + libswiften2_2.0~beta1+dev47-1_amd64 + libsword-dbg_1.6.2+dfsg-5_amd64 + libsword-dev_1.6.2+dfsg-5_amd64 + libsword-utils_1.6.2+dfsg-5_amd64 + libsword9_1.6.2+dfsg-5_amd64 + libswscale-dev_6:0.8.9-1_amd64 + libswscale2_6:0.8.9-1_amd64 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-gtk-3-java_3.8.0~rc4-1_amd64 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_amd64 + libswt-gtk-3-jni_3.8.0~rc4-1_amd64 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_amd64 + libsx-dev_2.05-3_amd64 + libsx0_2.05-3_amd64 + libsybdb5_0.91-2+deb7u1_amd64 + libsyfi1.0_1.0.0.dfsg-1_amd64 + libsyfi1.0-dbg_1.0.0.dfsg-1_amd64 + libsyfi1.0-dev_1.0.0.dfsg-1_amd64 + libsylph-dev_1.1.0-8_amd64 + libsylph1_1.1.0-8_amd64 + libsymmetrica-2.0_2.0-1_amd64 + libsymmetrica-dev_2.0-1_amd64 + libsynce-dbg_0.15-1.1_amd64 + libsynce0_0.15-1.1_amd64 + libsynce0-dev_0.15-1.1_amd64 + libsyncevo-dbus0_1.2.99.1-1.1_amd64 + libsyncevolution0_1.2.99.1-1.1_amd64 + libsyncml-dev_0.5.4-2.1_amd64 + libsyncml-utils_0.5.4-2.1_amd64 + libsyncml2_0.5.4-2.1_amd64 + libsyncml2-dbg_0.5.4-2.1_amd64 + libsyndication4_4:4.8.4-2_amd64 + libsynfig-dev_0.63.05-1_amd64 + libsynfig0_0.63.05-1_amd64 + libsynopsis0.12_0.12-8_amd64 + libsynopsis0.12-dev_0.12-8_amd64 + libsynthesis-dbg_3.4.0.16.7-1_amd64 + libsynthesis-dev_3.4.0.16.7-1_amd64 + libsynthesis0_3.4.0.16.7-1_amd64 + libsys-cpu-perl_0.52-3_amd64 + libsys-cpuload-perl_0.03-6+b3_amd64 + libsys-gamin-perl_0.1-1+b2_amd64 + libsys-mmap-perl_0.16-1+b1_amd64 + libsys-syslog-perl_0.29-1+b2_amd64 + libsys-utmp-perl_1.6-4+b3_amd64 + libsys-virt-perl_0.9.12-2_amd64 + libsysactivity-dev_0.6.4-1_amd64 + libsysactivity1_0.6.4-1_amd64 + libsysactivity1-dbg_0.6.4-1_amd64 + libsysfs-dev_2.1.0+repack-2_amd64 + libsysfs2_2.1.0+repack-2_amd64 + libsyslog-ng-3.3.5_3.3.5-4_amd64 + libsyslog-ng-dev_3.3.5-4_amd64 + libsyslog-ocaml_1.4-6+b2_amd64 + libsyslog-ocaml-dev_1.4-6+b2_amd64 + libsystemd-daemon-dev_44-11+deb7u4_amd64 + libsystemd-daemon0_44-11+deb7u4_amd64 + libsystemd-id128-0_44-11+deb7u4_amd64 + libsystemd-id128-dev_44-11+deb7u4_amd64 + libsystemd-journal-dev_44-11+deb7u4_amd64 + libsystemd-journal0_44-11+deb7u4_amd64 + libsystemd-login-dev_44-11+deb7u4_amd64 + libsystemd-login0_44-11+deb7u4_amd64 + libt1-5_5.1.2-3.6_amd64 + libt1-5-dbg_5.1.2-3.6_amd64 + libt1-dev_5.1.2-3.6_amd64 + libtacacs+1_4.0.4.19-11_amd64 + libtachyon-0.99_0.99~b2+dfsg-0.4_amd64 + libtachyon-dev_0.99~b2+dfsg-0.4_amd64 + libtag-extras-dev_1.0.1-3_amd64 + libtag-extras1_1.0.1-3_amd64 + libtag1-dev_1.7.2-1_amd64 + libtag1-rusxmms_1.7.2-1_amd64 + libtag1-vanilla_1.7.2-1_amd64 + libtag1c2a_1.7.2-1_amd64 + libtagc0_1.7.2-1_amd64 + libtagc0-dev_1.7.2-1_amd64 + libtagcoll2-dev_2.0.13-1.1_amd64 + libtaglib-ocaml_0.2.0-1+b1_amd64 + libtaglib-ocaml-dev_0.2.0-1+b1_amd64 + libtaint-util-perl_0.08-1+b2_amd64 + libtaktuk-1-dev_3.7.4-1_amd64 + libtaktuk3_3.7.4-1_amd64 + libtalloc-dev_2.0.7+git20120207-1_amd64 + libtalloc2_2.0.7+git20120207-1_amd64 + libtalloc2-dbg_2.0.7+git20120207-1_amd64 + libtamuanova-0.2_0.2-2_amd64 + libtamuanova-dev_0.2-2_amd64 + libtango-tools_7.2.6+dfsg-14_amd64 + libtango7_7.2.6+dfsg-14_amd64 + libtango7-dbg_7.2.6+dfsg-14_amd64 + libtango7-dev_7.2.6+dfsg-14_amd64 + libtaningia-dev_0.2.2-1_amd64 + libtaningia0_0.2.2-1_amd64 + libtar-dev_1.2.16-1+deb7u1_amd64 + libtar0_1.2.16-1+deb7u1_amd64 + libtarantool-dev_1.4.6+20120629+2158-1_amd64 + libtarantool1_1.4.6+20120629+2158-1_amd64 + libtarantool1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1_1.4.6+20120629+2158-1_amd64 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1_1.4.6+20120629+2158-1_amd64 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1_1.4.6+20120629+2158-1_amd64 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_amd64 + libtaskmanager4abi3_4:4.8.4-6_amd64 + libtasn1-3_2.13-2_amd64 + libtasn1-3-bin_2.13-2_amd64 + libtasn1-3-dbg_2.13-2_amd64 + libtasn1-3-dev_2.13-2_amd64 + libtbb-dev_4.0+r233-1_amd64 + libtbb2_4.0+r233-1_amd64 + libtbb2-dbg_4.0+r233-1_amd64 + libtcc-dev_0.9.26~git20120612.ad5f375-6_amd64 + libtcd-dev_2.2.2-1_amd64 + libtcd0_2.2.2-1_amd64 + libtcl-chiark-1_1.1.1_amd64 + libtclap-dev_1.2.1-1_amd64 + libtclcl1_1.20-6_amd64 + libtclcl1-dev_1.20-6_amd64 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + libtcmalloc-minimal4_2.0-2_amd64 + libtcmalloc-minimal4-dbg_2.0-2_amd64 + libtcnative-1_1.1.24-1_amd64 + libtdb-dev_1.2.10-2_amd64 + libtdb1_1.2.10-2_amd64 + libtdb1-dbg_1.2.10-2_amd64 + libtecla1_1.6.1-5_amd64 + libtecla1-dev_1.6.1-5_amd64 + libteem-dev_1.11.0~svn5226-1_amd64 + libteem2_1.11.0~svn5226-1_amd64 + libteem2-dbg_1.11.0~svn5226-1_amd64 + libtelepathy-farstream-dev_0.4.0-3_amd64 + libtelepathy-farstream2_0.4.0-3_amd64 + libtelepathy-farstream2-dbg_0.4.0-3_amd64 + libtelepathy-glib-dev_0.18.2-2_amd64 + libtelepathy-glib0_0.18.2-2_amd64 + libtelepathy-glib0-dbg_0.18.2-2_amd64 + libtelepathy-logger-dev_0.4.0-1_amd64 + libtelepathy-logger-qt4-1_0.4.0-1_amd64 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_amd64 + libtelepathy-logger-qt4-dev_0.4.0-1_amd64 + libtelepathy-logger2_0.4.0-1_amd64 + libtelepathy-logger2-dbg_0.4.0-1_amd64 + libtelepathy-qt4-2_0.9.1-4_amd64 + libtelepathy-qt4-dbg_0.9.1-4_amd64 + libtelepathy-qt4-dev_0.9.1-4_amd64 + libtelepathy-qt4-farstream2_0.9.1-4_amd64 + libtelnet-dev_0.21-1_amd64 + libtelnet-utils_0.21-1_amd64 + libtelnet2_0.21-1_amd64 + libtemplate-perl_2.24-1_amd64 + libtemplates-parser11.6_11.6-2_amd64 + libtemplates-parser11.6-dbg_11.6-2_amd64 + libtemplates-parser11.6-dev_11.6-2_amd64 + libterm-readkey-perl_2.30-4+b2_amd64 + libterm-readline-gnu-perl_1.20-2+b1_amd64 + libterm-size-perl_0.207-1_amd64 + libterm-size-perl-perl_0.029-1_amd64 + libterm-slang-perl_0.07-11+b3_amd64 + libterralib_4.0.0-4_amd64 + libterralib-dev_4.0.0-4_amd64 + libtesseract-dev_3.02.01-6_amd64 + libtesseract3_3.02.01-6_amd64 + libtest-leaktrace-perl_0.14-1+b1_amd64 + libtest-taint-perl_1.04-1+b2_amd64 + libtevent-dev_0.9.16-1_amd64 + libtevent0_0.9.16-1_amd64 + libtevent0-dbg_0.9.16-1_amd64 + libtext-aligner-perl_0.07-1_amd64 + libtext-aspell-perl_0.09-1+b2_amd64 + libtext-bibtex-perl_0.63-1_amd64 + libtext-bidi-perl_0.03-5+b2_amd64 + libtext-charwidth-perl_0.04-7+b1_amd64 + libtext-chasen-perl_1.04-3+b4_amd64 + libtext-csv-xs-perl_0.90-1_amd64 + libtext-hunspell-perl_2.03-1_amd64 + libtext-iconv-perl_1.7-5_amd64 + libtext-kakasi-perl_2.04-1+b3_amd64 + libtext-levenshteinxs-perl_0.03-3+b2_amd64 + libtext-markdown-discount-perl_0.02-1_amd64 + libtext-mecab-perl_0.20013-2_amd64 + libtext-ngram-perl_0.14-1_amd64 + libtext-ocaml_0.5-1+b2_amd64 + libtext-ocaml-dev_0.5-1+b2_amd64 + libtext-qrcode-perl_0.01-1+b2_amd64 + libtext-reflow-perl_1.09-1+b2_amd64 + libtext-table-perl_1.123-1_amd64 + libtext-unaccent-perl_1.08-1+b3_amd64 + libtext-vimcolor-perl_0.11-2_amd64 + libtextwrap-dev_0.1-13_amd64 + libtextwrap1_0.1-13_amd64 + libtfbs-perl_0.5.svn.20100421-1+b1_amd64 + libthai-dev_0.1.18-2_amd64 + libthai0_0.1.18-2_amd64 + libtheora-bin_1.1.1+dfsg.1-3.1_amd64 + libtheora-dbg_1.1.1+dfsg.1-3.1_amd64 + libtheora-dev_1.1.1+dfsg.1-3.1_amd64 + libtheora-ocaml_0.3.0-1+b3_amd64 + libtheora-ocaml-dev_0.3.0-1+b3_amd64 + libtheora0_1.1.1+dfsg.1-3.1_amd64 + libthepeg-dev_1.8.0-1_amd64 + libthepeg15_1.8.0-1_amd64 + libthreads-perl_1.85-1+b1_amd64 + libthreads-shared-perl_1.40-1+b1_amd64 + libthreadweaver4_4:4.8.4-4_amd64 + libthunar-vfs-1-2_1.2.0-3+b1_amd64 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_amd64 + libthunar-vfs-1-dev_1.2.0-3+b1_amd64 + libthunarx-2-0_1.2.3-4+b1_amd64 + libthunarx-2-dev_1.2.3-4+b1_amd64 + libticables-dev_1.2.0-2_amd64 + libticables2-1_1.2.0-2_amd64 + libticalcs-dev_1.1.3+dfsg1-1_amd64 + libticalcs2-7_1.1.3+dfsg1-1_amd64 + libticonv-dev_1.1.0-1.1_amd64 + libticonv3_1.1.0-1.1_amd64 + libtidy-0.99-0_20091223cvs-1.2_amd64 + libtidy-dev_20091223cvs-1.2_amd64 + libtiff-opengl_4.0.2-6+deb7u2_amd64 + libtiff-tools_4.0.2-6+deb7u2_amd64 + libtiff4_3.9.6-11_amd64 + libtiff4-dev_3.9.6-11_amd64 + libtiff5_4.0.2-6+deb7u2_amd64 + libtiff5-alt-dev_4.0.2-6+deb7u2_amd64 + libtiff5-dev_4.0.2-6+deb7u2_amd64 + libtiffxx0c2_3.9.6-11_amd64 + libtiffxx5_4.0.2-6+deb7u2_amd64 + libtifiles-dev_1.1.1-1_amd64 + libtifiles2-5_1.1.1-1_amd64 + libtimbl3_6.4.2-1_amd64 + libtimbl3-dev_6.4.2-1_amd64 + libtimblserver2_1.4-2_amd64 + libtimblserver2-dev_1.4-2_amd64 + libtime-warp-perl_0.5-1+b2_amd64 + libtime-y2038-perl_20100403-2+b2_amd64 + libtinfo-dev_5.9-10_amd64 + libtinfo5_5.9-10_amd64 + libtinfo5-dbg_5.9-10_amd64 + libtinyxml-dev_2.6.2-1_amd64 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_amd64 + libtinyxml2.6.2_2.6.2-1_amd64 + libtinyxml2.6.2-dbg_2.6.2-1_amd64 + libtirpc-dev_0.2.2-5_amd64 + libtirpc1_0.2.2-5_amd64 + libtk-img_1:1.3-release-12_amd64 + libtk-img-dev_1:1.3-release-12_amd64 + libtk-tablematrix-perl_1.23-6+b1_amd64 + libtntdb-dev_1.2-2+b1_amd64 + libtntdb3_1.2-2+b1_amd64 + libtntnet-dev_2.1-2+deb7u1_amd64 + libtntnet10_2.1-2+deb7u1_amd64 + libtododb-dev_0.11-3_amd64 + libtododb0_0.11-3_amd64 + libtododb0-dbg_0.11-3_amd64 + libtogl1_1.7-12_amd64 + libtokyocabinet-dbg_1.4.47-2_amd64 + libtokyocabinet-dev_1.4.47-2_amd64 + libtokyocabinet-perl_1.34-1+b3_amd64 + libtokyocabinet9_1.4.47-2_amd64 + libtokyotyrant-dev_1.1.40-4.1+b1_amd64 + libtokyotyrant3_1.1.40-4.1+b1_amd64 + libtolua++5.1-dev_1.0.93-3_amd64 + libtolua-dev_5.2.0-1_amd64 + libtomcatjss-java_6.0.1-1_amd64 + libtomcrypt-dev_1.17-3.2_amd64 + libtomcrypt0_1.17-3.2_amd64 + libtommath-dev_0.42.0-1_amd64 + libtommath0_0.42.0-1_amd64 + libtomoe-dev_0.6.0-1.3_amd64 + libtomoe0_0.6.0-1.3_amd64 + libtomoyotools3_2.5.0-20120414-2_amd64 + libtonezone-dev_1:2.5.0.1-2_amd64 + libtonezone2.0_1:2.5.0.1-2_amd64 + libtool_2.4.2-1.1_amd64 + libtorch3-dev_3.1-2.1_amd64 + libtorch3c2_3.1-2.1_amd64 + libtorque2_2.4.16+dfsg-1+deb7u2_amd64 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_amd64 + libtorrent-dev_0.13.2-1_amd64 + libtorrent-rasterbar-dbg_0.15.10-1+b1_amd64 + libtorrent-rasterbar-dev_0.15.10-1+b1_amd64 + libtorrent-rasterbar6_0.15.10-1+b1_amd64 + libtorrent14_0.13.2-1_amd64 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_amd64 + libtorture0_4.0.0~beta2+dfsg1-3.2_amd64 + libtotem-dev_3.0.1-8_amd64 + libtotem-pg-dev_1.4.2-3_amd64 + libtotem-pg4_1.4.2-3_amd64 + libtotem-plparser-dbg_3.4.2-1_amd64 + libtotem-plparser-dev_3.4.2-1_amd64 + libtotem-plparser17_3.4.2-1_amd64 + libtotem0_3.0.1-8_amd64 + libtowitoko-dev_2.0.7-8.3_amd64 + libtowitoko2_2.0.7-8.3_amd64 + libtpl0_1.5-2_amd64 + libtpm-unseal-dev_1.3.7-1_amd64 + libtpm-unseal1_1.3.7-1_amd64 + libtqsllib1_2.2-5_amd64 + libtrace-tools_3.0.14-1_amd64 + libtrace3_3.0.14-1_amd64 + libtrace3-dev_3.0.14-1_amd64 + libtracker-extract-0.14-0_0.14.1-3_amd64 + libtracker-extract-0.14-dev_0.14.1-3_amd64 + libtracker-miner-0.14-0_0.14.1-3_amd64 + libtracker-miner-0.14-dev_0.14.1-3_amd64 + libtracker-sparql-0.14-0_0.14.1-3_amd64 + libtracker-sparql-0.14-dev_0.14.1-3_amd64 + libtransitioner1_1.1.7-1_amd64 + libtransitioner1-dev_1.1.7-1_amd64 + libtre-dev_0.8.0-3_amd64 + libtre5_0.8.0-3_amd64 + libtreil-dev_1.8-1.1_amd64 + libtreil0_1.8-1.1_amd64 + libtritonus-jni_20070428-9_amd64 + libtrue-perl_0.18-1+b2_amd64 + libtrycatch-perl_1.003000-1+b1_amd64 + libts-0.0-0_1.0-11_amd64 + libts-0.0-0-dbg_1.0-11_amd64 + libts-bin_1.0-11_amd64 + libts-dev_1.0-11_amd64 + libtse3-0.3.1c2a_0.3.1-4.3_amd64 + libtse3-dev_0.3.1-4.3_amd64 + libtsk-dev_3.2.3-2_amd64 + libtsk3-3_3.2.3-2_amd64 + libtsk3-3-dbg_3.2.3-2_amd64 + libtspi-dev_0.3.9-3+wheezy1_amd64 + libtspi1_0.3.9-3+wheezy1_amd64 + libtulip-3.7_3.7.0dfsg-4_amd64 + libtulip-dev_3.7.0dfsg-4_amd64 + libtulip-ogdf-3.7_3.7.0dfsg-4_amd64 + libtulip-ogl-3.7_3.7.0dfsg-4_amd64 + libtulip-qt4-3.7_3.7.0dfsg-4_amd64 + libtumbler-1-0_0.1.25-1+b1_amd64 + libtumbler-1-dbg_0.1.25-1+b1_amd64 + libtumbler-1-dev_0.1.25-1+b1_amd64 + libtuxcap-dev_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0_1.4.0.dfsg2-2.1_amd64 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_amd64 + libtwin-dev_12.04.13.17.57-g130ee5f-2_amd64 + libtwin0_12.04.13.17.57-g130ee5f-2_amd64 + libtwofish-dev_0.3-3_amd64 + libtwofish0_0.3-3_amd64 + libtwolame-dev_0.3.13-1_amd64 + libtwolame0_0.3.13-1_amd64 + libtxc-dxtn-s2tc-bin_0~git20110809-3_amd64 + libtxc-dxtn-s2tc-dev_0~git20110809-3_amd64 + libtxc-dxtn-s2tc0_0~git20110809-3_amd64 + libtype-conv-camlp4-dev_3.0.4-1_amd64 + libtyxml-ocaml_2.1-1_amd64 + libtyxml-ocaml-dev_2.1-1_amd64 + libuchardet-dev_0.0.1-1_amd64 + libuchardet0_0.0.1-1_amd64 + libucimf-dev_2.3.8-4_amd64 + libucimf0_2.3.8-4_amd64 + libucl-dev_1.03-5_amd64 + libucl1_1.03-5_amd64 + libuclmmbase1_1.2.16.0-1_amd64 + libuclmmbase1-dev_1.2.16.0-1_amd64 + libucommon-dev_5.2.2-4_amd64 + libucommon5_5.2.2-4_amd64 + libucommon5-dbg_5.2.2-4_amd64 + libucto1_0.5.2-2_amd64 + libucto1-dev_0.5.2-2_amd64 + libudev-dev_175-7.2_amd64 + libudev0_175-7.2_amd64 + libudf-dev_0.83-4_amd64 + libudf0_0.83-4_amd64 + libudp-tcl_1.0.8-6_amd64 + libudt-dev_4.10+dfsg-1_amd64 + libudt0_4.10+dfsg-1_amd64 + libudunits2-0_2.1.23-3_amd64 + libudunits2-dev_2.1.23-3_amd64 + libuhd-dev_3.4.2-1_amd64 + libuhd003_3.4.2-1_amd64 + libuim-custom2_1:1.8.1-4_amd64 + libuim-data_1:1.8.1-4_amd64 + libuim-dev_1:1.8.1-4_amd64 + libuim-scm0_1:1.8.1-4_amd64 + libuim8_1:1.8.1-4_amd64 + libumad2sim0_0.5-1.1_amd64 + libumfpack5.4.0_1:3.4.0-3_amd64 + libumlib-dev_0.8.2-1_amd64 + libumlib0_0.8.2-1_amd64 + libunac1_1.8.0-6_amd64 + libunac1-dev_1.8.0-6_amd64 + libunbound-dev_1.4.17-3_amd64 + libunbound2_1.4.17-3_amd64 + libunicap2_0.9.12-2_amd64 + libunicap2-dev_0.9.12-2_amd64 + libunicode-collate-perl_0.89-1_amd64 + libunicode-japanese-perl_0.47-1+b2_amd64 + libunicode-linebreak-perl_0.0.20120401-1_amd64 + libunicode-map-perl_0.112-10+b3_amd64 + libunicode-map8-perl_0.13+dfsg-3+b2_amd64 + libunicode-string-perl_2.09-5_amd64 + libuniconf4.6_4.6.1-5_amd64 + libuninameslist-dev_0.0.20091231-1.1_amd64 + libuninameslist0_0.0.20091231-1.1_amd64 + libuninum-dev_2.7-1.1_amd64 + libuninum5_2.7-1.1_amd64 + libunique-1.0-0_1.1.6-4_amd64 + libunique-3.0-0_3.0.2-1_amd64 + libunique-3.0-dev_3.0.2-1_amd64 + libunique-dev_1.1.6-4_amd64 + libunistring-dev_0.9.3-5_amd64 + libunistring0_0.9.3-5_amd64 + libunittest++-dev_1.4.0-3_amd64 + libunix-mknod-perl_0.04-1+b1_amd64 + libunix-syslog-perl_1.1-2+b2_amd64 + libunixsocket-java_0.7.3-1_amd64 + libunshield-dev_0.6-3_amd64 + libunshield0_0.6-3_amd64 + libunwind-setjmp0_0.99-0.3_amd64 + libunwind-setjmp0-dev_0.99-0.3_amd64 + libunwind7_0.99-0.3_amd64 + libunwind7-dev_0.99-0.3_amd64 + libupnp4_1.8.0~svn20100507-1.2_amd64 + libupnp4-dbg_1.8.0~svn20100507-1.2_amd64 + libupnp4-dev_1.8.0~svn20100507-1.2_amd64 + libupnp6_1:1.6.17-1.2_amd64 + libupnp6-dbg_1:1.6.17-1.2_amd64 + libupnp6-dev_1:1.6.17-1.2_amd64 + libupower-glib-dev_0.9.17-1_amd64 + libupower-glib1_0.9.17-1_amd64 + libupsclient1_2.6.4-2.3+deb7u1_amd64 + libupsclient1-dev_2.6.4-2.3+deb7u1_amd64 + libupse-dev_1.0.0-1_amd64 + libupse2_1.0.0-1_amd64 + libuptimed-dev_1:0.3.17-3.1_amd64 + libuptimed0_1:0.3.17-3.1_amd64 + liburcu-dev_0.6.7-2_amd64 + liburcu1_0.6.7-2_amd64 + liburfkill-glib-dev_0.3.0-1_amd64 + liburfkill-glib0_0.3.0-1_amd64 + liburfkill-glib0-dbg_0.3.0-1_amd64 + liburg0_0.8.12-4_amd64 + liburg0-dev_0.8.12-4_amd64 + liburiparser-dev_0.7.5-1_amd64 + liburiparser1_0.7.5-1_amd64 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_amd64 + libusb++-dev_2:0.1.12-20+nmu1_amd64 + libusb-0.1-4_2:0.1.12-20+nmu1_amd64 + libusb-1.0-0_2:1.0.11-1_amd64 + libusb-1.0-0-dev_2:1.0.11-1_amd64 + libusb-dev_2:0.1.12-20+nmu1_amd64 + libusb-ocaml_1.2.0-2+b7_amd64 + libusb-ocaml-dev_1.2.0-2+b7_amd64 + libusbip-dev_1.1.1+3.2.17-1_amd64 + libusbmuxd-dev_1.0.7-2_amd64 + libusbmuxd1_1.0.7-2_amd64 + libusbmuxd1-dbg_1.0.7-2_amd64 + libusbprog-dev_0.2.0-2_amd64 + libusbprog0_0.2.0-2_amd64 + libusbredirhost-dev_0.4.3-2_amd64 + libusbredirhost1_0.4.3-2_amd64 + libusbredirparser-dev_0.4.3-2_amd64 + libusbredirparser0_0.4.3-2_amd64 + libusbtc08-1_1.7.2-1_amd64 + libusbtc08-dev_1.7.2-1_amd64 + libuser_1:0.56.9.dfsg.1-1.2_amd64 + libuser1_1:0.56.9.dfsg.1-1.2_amd64 + libuser1-dev_1:0.56.9.dfsg.1-1.2_amd64 + libust-dev_2.0.4-1_amd64 + libust0_2.0.4-1_amd64 + libustr-1.0-1_1.0.4-3_amd64 + libustr-1.0-1-dbg_1.0.4-3_amd64 + libustr-dev_1.0.4-3_amd64 + libutempter-dev_1.1.5-4_amd64 + libutempter0_1.1.5-4_amd64 + libuu-dev_0.5.20-3.3_amd64 + libuu0_0.5.20-3.3_amd64 + libuuid-perl_0.02-5_amd64 + libuuid1_2.20.1-5.3_amd64 + libuuidm-ocaml-dev_0.9.4-1_amd64 + libv4l-0_0.8.8-3_amd64 + libv4l-dev_0.8.8-3_amd64 + libv4lconvert0_0.8.8-3_amd64 + libv8-3.8.9.20_3.8.9.20-2_amd64 + libv8-dbg_3.8.9.20-2_amd64 + libv8-dev_3.8.9.20-2_amd64 + libv8-i18n-dev_0~0.svn7-3_amd64 + libv8-i18n0.0.0_0~0.svn7-3_amd64 + libv8-i18n0.0.0-dbg_0~0.svn7-3_amd64 + libva-dev_1.0.15-4_amd64 + libva-egl1_1.0.15-4_amd64 + libva-glx1_1.0.15-4_amd64 + libva-tpi1_1.0.15-4_amd64 + libva-x11-1_1.0.15-4_amd64 + libva1_1.0.15-4_amd64 + libvala-0.14-0_0.14.2-2_amd64 + libvala-0.14-0-dbg_0.14.2-2_amd64 + libvala-0.14-dev_0.14.2-2_amd64 + libvala-0.16-0_0.16.1-2_amd64 + libvala-0.16-0-dbg_0.16.1-2_amd64 + libvala-0.16-dev_0.16.1-2_amd64 + libvaladoc-dev_0.3.2~git20120227-1_amd64 + libvaladoc1_0.3.2~git20120227-1_amd64 + libvalhalla-bin_2.0.0-4+b1_amd64 + libvalhalla-dev_2.0.0-4+b1_amd64 + libvalhalla2_2.0.0-4+b1_amd64 + libvalhalla2-dbg_2.0.0-4+b1_amd64 + libvamp-hostsdk3_2.1-1_amd64 + libvamp-sdk2_2.1-1_amd64 + libvanessa-adt-dev_0.0.9-1_amd64 + libvanessa-adt1_0.0.9-1_amd64 + libvanessa-logger-dev_0.0.10-1.1_amd64 + libvanessa-logger-sample_0.0.10-1.1_amd64 + libvanessa-logger0_0.0.10-1.1_amd64 + libvanessa-socket-dev_0.0.12-1_amd64 + libvanessa-socket-pipe_0.0.12-1_amd64 + libvanessa-socket2_0.0.12-1_amd64 + libvarconf-1.0-7_0.6.7-2_amd64 + libvarconf-1.0-7-dbg_0.6.7-2_amd64 + libvarconf-dev_0.6.7-2_amd64 + libvariable-magic-perl_0.50-1_amd64 + libvarnishapi-dev_3.0.2-2+deb7u1_amd64 + libvarnishapi1_3.0.2-2+deb7u1_amd64 + libvbr-dev_2.6.8-4_amd64 + libvbr2_2.6.8-4_amd64 + libvc-dev_003.dfsg.1-12_amd64 + libvc0_003.dfsg.1-12_amd64 + libvcdinfo-dev_0.7.24+dfsg-0.1_amd64 + libvcdinfo0_0.7.24+dfsg-0.1_amd64 + libvde-dev_2.3.2-4_amd64 + libvde0_2.3.2-4_amd64 + libvdeplug-dev_2.3.2-4_amd64 + libvdeplug2_2.3.2-4_amd64 + libvdk2-2c2_2.4.0-5.3_amd64 + libvdk2-dbg_2.4.0-5.3_amd64 + libvdk2-dev_2.4.0-5.3_amd64 + libvdkbuilder2-dev_2.4.0-4.3_amd64 + libvdkbuilder2c2_2.4.0-4.3_amd64 + libvdkxdb2-2c2_2.4.0-3.4_amd64 + libvdkxdb2-dev_2.4.0-3.4_amd64 + libvdpau-dev_0.4.1-7_amd64 + libvdpau1_0.4.1-7_amd64 + libventrilo-dev_1.2.4-1_amd64 + libventrilo3-0_1.2.4-1_amd64 + libverbiste-0.1-0_0.1.34-1_amd64 + libverbiste-dev_0.1.34-1_amd64 + libverilog-perl_3.315-1_amd64 + libversion-perl_1:0.9900-1_amd64 + libverto-dev_0.2.2-1_amd64 + libverto-glib1_0.2.2-1_amd64 + libverto-libev1_0.2.2-1_amd64 + libverto1_0.2.2-1_amd64 + libvformat-dev_1.13-10_amd64 + libvformat0_1.13-10_amd64 + libvhd0_2.0.90-1_amd64 + libvhdio-2.0.90_2.0.90-1_amd64 + libvia-dev_2.0.4-2_amd64 + libvia2_2.0.4-2_amd64 + libvibrant6-dev_6.1.20120620-2_amd64 + libvibrant6a_6.1.20120620-2_amd64 + libvibrant6a-dbg_6.1.20120620-2_amd64 + libvideo-capture-v4l-perl_0.902-3+b2_amd64 + libvideo-ivtv-perl_0.13-7_amd64 + libview-dev_0.6.6-2.1_amd64 + libview2_0.6.6-2.1_amd64 + libview2-dbg_0.6.6-2.1_amd64 + libvigraimpex-dev_1.7.1+dfsg1-3_amd64 + libvigraimpex3_1.7.1+dfsg1-3_amd64 + libvips-dev_7.28.5-1+deb7u1_amd64 + libvips-tools_7.28.5-1+deb7u1_amd64 + libvips15_7.28.5-1+deb7u1_amd64 + libvirt-bin_0.9.12.3-1_amd64 + libvirt-dev_0.9.12.3-1_amd64 + libvirt-glib-1.0-0_0.0.8-1_amd64 + libvirt-glib-1.0-0-dbg_0.0.8-1_amd64 + libvirt-glib-1.0-dev_0.0.8-1_amd64 + libvirt-ocaml_0.6.1.2-1_amd64 + libvirt-ocaml-dev_0.6.1.2-1_amd64 + libvirt0_0.9.12.3-1_amd64 + libvirt0-dbg_0.9.12.3-1_amd64 + libvirtodbc0_6.1.4+dfsg1-7_amd64 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_amd64 + libvisca-dev_1.0.1-1_amd64 + libvisca0_1.0.1-1_amd64 + libvisio-0.0-0_0.0.17-1_amd64 + libvisio-dev_0.0.17-1_amd64 + libvisio-tools_0.0.17-1_amd64 + libvisual-0.4-0_0.4.0-5_amd64 + libvisual-0.4-dev_0.4.0-5_amd64 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64 + libvisual-projectm_2.1.0+dfsg-1_amd64 + libvlc-dev_2.0.3-5_amd64 + libvlc5_2.0.3-5_amd64 + libvlccore-dev_2.0.3-5_amd64 + libvlccore5_2.0.3-5_amd64 + libvncserver-config_0.9.9+dfsg-1_amd64 + libvncserver-dev_0.9.9+dfsg-1_amd64 + libvncserver0_0.9.9+dfsg-1_amd64 + libvncserver0-dbg_0.9.9+dfsg-1_amd64 + libvo-aacenc-dev_0.1.2-1_amd64 + libvo-aacenc0_0.1.2-1_amd64 + libvo-amrwbenc-dev_0.1.2-1_amd64 + libvo-amrwbenc0_0.1.2-1_amd64 + libvoaacenc-ocaml_0.1.0-1+b1_amd64 + libvoaacenc-ocaml-dev_0.1.0-1+b1_amd64 + libvoikko-dev_3.5-1.1_amd64 + libvoikko1_3.5-1.1_amd64 + libvolk0.0.0_3.5.3.2-1_amd64 + libvolpack1_1.0b3-3_amd64 + libvolpack1-dev_1.0b3-3_amd64 + libvomsapi1_2.0.8-1_amd64 + libvorbis-dbg_1.3.2-1.3_amd64 + libvorbis-dev_1.3.2-1.3_amd64 + libvorbis-ocaml_0.6.1-1+b1_amd64 + libvorbis-ocaml-dev_0.6.1-1+b1_amd64 + libvorbis0a_1.3.2-1.3_amd64 + libvorbisenc2_1.3.2-1.3_amd64 + libvorbisfile-ruby_0.2-8.1_amd64 + libvorbisfile-ruby1.8_0.2-8.1_amd64 + libvorbisfile3_1.3.2-1.3_amd64 + libvorbisidec-dev_1.0.2+svn18153-0.2_amd64 + libvorbisidec1_1.0.2+svn18153-0.2_amd64 + libvotequorum-dev_1.4.2-3_amd64 + libvotequorum4_1.4.2-3_amd64 + libvpb-dbg_4.2.55-1_amd64 + libvpb-dev_4.2.55-1_amd64 + libvpb0_4.2.55-1_amd64 + libvpx-dev_1.1.0-1_amd64 + libvpx1_1.1.0-1_amd64 + libvpx1-dbg_1.1.0-1_amd64 + libvrb0_0.5.1-5.1_amd64 + libvrb0-dev_0.5.1-5.1_amd64 + libvte-2.90-9_1:0.32.2-1_amd64 + libvte-2.90-dev_1:0.32.2-1_amd64 + libvte-dev_1:0.28.2-5_amd64 + libvte0.16-cil_2.26.0-8_amd64 + libvte0.16-cil-dev_2.26.0-8_amd64 + libvte9_1:0.28.2-5_amd64 + libvtk-java_5.8.0-13+b1_amd64 + libvtk5-dev_5.8.0-13+b1_amd64 + libvtk5-qt4-dev_5.8.0-13+b1_amd64 + libvtk5.8_5.8.0-13+b1_amd64 + libvtk5.8-qt4_5.8.0-13+b1_amd64 + libvtkedge_0.2.0~20110819-2_amd64 + libvtkedge-dev_0.2.0~20110819-2_amd64 + libvtkgdcm-cil_2.2.0-14.1_amd64 + libvtkgdcm-java_2.2.0-14.1_amd64 + libvtkgdcm-tools_2.2.0-14.1_amd64 + libvtkgdcm2-dev_2.2.0-14.1_amd64 + libvtkgdcm2.2_2.2.0-14.1_amd64 + libvxl1-dev_1.14.0-18_amd64 + libvxl1.14_1.14.0-18_amd64 + libwacom-dev_0.6-1_amd64 + libwacom2_0.6-1_amd64 + libwacom2-dbg_0.6-1_amd64 + libwaei-dev_3.4.3-1_amd64 + libwaei2_3.4.3-1_amd64 + libwaili-dev_19990723-20_amd64 + libwaili1c2_19990723-20_amd64 + libwant-perl_0.21-1_amd64 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_amd64 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_amd64 + libwavpack-dev_4.60.1-3_amd64 + libwavpack1_4.60.1-3_amd64 + libwayland-dev_0.85.0-2_amd64 + libwayland0_0.85.0-2_amd64 + libwayland0-dbg_0.85.0-2_amd64 + libwbclient-dev_2:3.6.6-6+deb7u2_amd64 + libwbclient0_2:3.6.6-6+deb7u2_amd64 + libwbxml2-0_0.10.7-1_amd64 + libwbxml2-0-dbg_0.10.7-1_amd64 + libwbxml2-dev_0.10.7-1_amd64 + libwbxml2-utils_0.10.7-1_amd64 + libwcs4_4.13.4-1_amd64 + libwcstools-dev_3.8.5-1_amd64 + libwcstools0_3.8.5-1_amd64 + libweather-ion6_4:4.8.4-6_amd64 + libwebauth-dev_4.1.1-2_amd64 + libwebauth-perl_4.1.1-2_amd64 + libwebauth6_4.1.1-2_amd64 + libwebcam0_0.2.2-1_amd64 + libwebcam0-dbg_0.2.2-1_amd64 + libwebcam0-dev_0.2.2-1_amd64 + libwebkit-dev_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0_1.8.1-3.4_amd64 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0_1.8.1-3.4_amd64 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_amd64 + libwebkitgtk-3.0-dev_1.8.1-3.4_amd64 + libwebkitgtk-dev_1.8.1-3.4_amd64 + libwebp-dev_0.1.3-3+nmu1_amd64 + libwebp2_0.1.3-3+nmu1_amd64 + libwebrtc-audio-processing-0_0.1-2_amd64 + libwebrtc-audio-processing-dev_0.1-2_amd64 + libweed-dbg_1.6.2~ds1-2_amd64 + libweed-dev_1.6.2~ds1-2_amd64 + libweed0_1.6.2~ds1-2_amd64 + libwfmath-0.3-6_0.3.12-3_amd64 + libwfmath-0.3-6-dbg_0.3.12-3_amd64 + libwfmath-0.3-dev_0.3.12-3_amd64 + libwfut-0.2-1_0.2.1-2_amd64 + libwfut-0.2-1-dbg_0.2.1-2_amd64 + libwfut-0.2-dev_0.2.1-2_amd64 + libwibble-dev_0.1.28-1.1_amd64 + libwildmidi-dev_0.2.3.4-2.1_amd64 + libwildmidi1_0.2.3.4-2.1_amd64 + libwin-hivex-perl_1.3.6-2_amd64 + libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64 + libwings-dev_0.95.3-2_amd64 + libwings2_0.95.3-2_amd64 + libwireshark-dev_1.8.2-5wheezy9_amd64 + libwireshark2_1.8.2-5wheezy9_amd64 + libwiretap-dev_1.8.2-5wheezy9_amd64 + libwiretap2_1.8.2-5wheezy9_amd64 + libwmf-bin_0.2.8.4-10.3_amd64 + libwmf-dev_0.2.8.4-10.3_amd64 + libwmf0.2-7_0.2.8.4-10.3_amd64 + libwnck-3-0_3.4.2-1_amd64 + libwnck-3-dev_3.4.2-1_amd64 + libwnck-dev_2.30.7-1_amd64 + libwnck1.0-cil-dev_2.26.0-8_amd64 + libwnck2.20-cil_2.26.0-8_amd64 + libwnck22_2.30.7-1_amd64 + libwnn-dev_1.1.1~a021+cvs20100325-6_amd64 + libwnn0_1.1.1~a021+cvs20100325-6_amd64 + libwnn6-1_1.0.0-14.2+b1_amd64 + libwnn6-dev_1.0.0-14.2+b1_amd64 + libwpd-0.9-9_0.9.4-3_amd64 + libwpd-dev_0.9.4-3_amd64 + libwpd-tools_0.9.4-3_amd64 + libwpg-0.2-2_0.2.1-1_amd64 + libwpg-dev_0.2.1-1_amd64 + libwpg-tools_0.2.1-1_amd64 + libwps-0.2-2_0.2.7-1_amd64 + libwps-dev_0.2.7-1_amd64 + libwps-tools_0.2.7-1_amd64 + libwrap-ruby1.8_0.6-3_amd64 + libwrap0_7.6.q-24_amd64 + libwrap0-dev_7.6.q-24_amd64 + libwraster3_0.95.3-2_amd64 + libwraster3-dev_0.95.3-2_amd64 + libwreport-dev_2.4-1_amd64 + libwreport2_2.4-1_amd64 + libwsutil-dev_1.8.2-5wheezy9_amd64 + libwsutil2_1.8.2-5wheezy9_amd64 + libwt-dbg_3.2.1-2_amd64 + libwt-dev_3.2.1-2_amd64 + libwt32_3.2.1-2_amd64 + libwtdbo-dev_3.2.1-2_amd64 + libwtdbo32_3.2.1-2_amd64 + libwtdbofirebird-dev_3.2.1-2_amd64 + libwtdbofirebird32_3.2.1-2_amd64 + libwtdbopostgres-dev_3.2.1-2_amd64 + libwtdbopostgres32_3.2.1-2_amd64 + libwtdbosqlite-dev_3.2.1-2_amd64 + libwtdbosqlite32_3.2.1-2_amd64 + libwtext-dev_3.2.1-2_amd64 + libwtext32_3.2.1-2_amd64 + libwtfcgi-dev_3.2.1-2_amd64 + libwtfcgi32_3.2.1-2_amd64 + libwthttp-dev_3.2.1-2_amd64 + libwthttp32_3.2.1-2_amd64 + libwttest-dev_3.2.1-2_amd64 + libwttest2_3.2.1-2_amd64 + libwutil2_0.95.3-2_amd64 + libwv-1.2-4_1.2.9-3_amd64 + libwv-dev_1.2.9-3_amd64 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_amd64 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_amd64 + libwvstreams-dev_4.6.1-5_amd64 + libwvstreams4.6-base_4.6.1-5_amd64 + libwvstreams4.6-extras_4.6.1-5_amd64 + libwww-curl-perl_4.15-1+b2_amd64 + libwx-perl_1:0.9909-1_amd64 + libwx-scintilla-perl_0.38-1_amd64 + libwxbase2.8-0_2.8.12.1-12_amd64 + libwxbase2.8-dbg_2.8.12.1-12_amd64 + libwxbase2.8-dev_2.8.12.1-12_amd64 + libwxgtk2.8-0_2.8.12.1-12_amd64 + libwxgtk2.8-dbg_2.8.12.1-12_amd64 + libwxgtk2.8-dev_2.8.12.1-12_amd64 + libwxsmithlib-dev_10.05-2.1_amd64 + libwxsmithlib0_10.05-2.1_amd64 + libwxsmithlib0-dev_10.05-2.1_amd64 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_amd64 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_amd64 + libwxsvg-dbg_2:1.1.8~dfsg0-2_amd64 + libwxsvg-dev_2:1.1.8~dfsg0-2_amd64 + libwxsvg0_2:1.1.8~dfsg0-2_amd64 + libx11-6_2:1.5.0-1+deb7u1_amd64 + libx11-6-dbg_2:1.5.0-1+deb7u1_amd64 + libx11-dev_2:1.5.0-1+deb7u1_amd64 + libx11-guitest-perl_0.25-2_amd64 + libx11-xcb-dev_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1_2:1.5.0-1+deb7u1_amd64 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_amd64 + libx264-123_2:0.123.2189+git35cf912-1_amd64 + libx264-dev_2:0.123.2189+git35cf912-1_amd64 + libx52pro-dev_0.1.1-2.1_amd64 + libx52pro0_0.1.1-2.1_amd64 + libx86-1_1.1+ds1-10_amd64 + libx86-dbg_1.1+ds1-10_amd64 + libx86-dev_1.1+ds1-10_amd64 + libxalan110_1.10-6_amd64 + libxalan110-dev_1.10-6_amd64 + libxapian-dev_1.2.12-2_amd64 + libxapian-ruby1.8_1.2.12-2_amd64 + libxapian-ruby1.9.1_1.2.12-2_amd64 + libxapian22_1.2.12-2_amd64 + libxapian22-dbg_1.2.12-2_amd64 + libxatracker-dev_8.0.5-4+deb7u2_amd64 + libxatracker1_8.0.5-4+deb7u2_amd64 + libxatracker1-dbg_8.0.5-4+deb7u2_amd64 + libxau-dev_1:1.0.7-1_amd64 + libxau6_1:1.0.7-1_amd64 + libxau6-dbg_1:1.0.7-1_amd64 + libxaw3dxft6_2.9.1.4-3+b2_amd64 + libxaw7_2:1.0.10-2_amd64 + libxaw7-dbg_2:1.0.10-2_amd64 + libxaw7-dev_2:1.0.10-2_amd64 + libxbae-dev_4.60.4-3_amd64 + libxbae4_4.60.4-3_amd64 + libxbase2.0-0_2.0.0-8.5_amd64 + libxbase2.0-bin_2.0.0-8.5_amd64 + libxbase2.0-dev_2.0.0-8.5_amd64 + libxcb-composite0_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-composite0-dev_1.8.1-2+deb7u1_amd64 + libxcb-damage0_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-damage0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dpms0_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dpms0-dev_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_amd64 + libxcb-ewmh-dev_0.3.9-2_amd64 + libxcb-ewmh2_0.3.9-2_amd64 + libxcb-glx0_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-glx0-dev_1.8.1-2+deb7u1_amd64 + libxcb-icccm4_0.3.9-2_amd64 + libxcb-icccm4-dev_0.3.9-2_amd64 + libxcb-image0_0.3.9-1_amd64 + libxcb-image0-dev_0.3.9-1_amd64 + libxcb-keysyms1_0.3.9-1_amd64 + libxcb-keysyms1-dev_0.3.9-1_amd64 + libxcb-randr0_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-randr0-dev_1.8.1-2+deb7u1_amd64 + libxcb-record0_1.8.1-2+deb7u1_amd64 + libxcb-record0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-record0-dev_1.8.1-2+deb7u1_amd64 + libxcb-render-util0_0.3.8-1.1_amd64 + libxcb-render-util0-dev_0.3.8-1.1_amd64 + libxcb-render0_1.8.1-2+deb7u1_amd64 + libxcb-render0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-render0-dev_1.8.1-2+deb7u1_amd64 + libxcb-res0_1.8.1-2+deb7u1_amd64 + libxcb-res0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-res0-dev_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shape0_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shape0-dev_1.8.1-2+deb7u1_amd64 + libxcb-shm0_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-shm0-dev_1.8.1-2+deb7u1_amd64 + libxcb-sync0_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-sync0-dev_1.8.1-2+deb7u1_amd64 + libxcb-util0_0.3.8-2_amd64 + libxcb-util0-dev_0.3.8-2_amd64 + libxcb-xevie0_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xevie0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xprint0_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xprint0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xtest0_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xtest0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xv0_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xv0-dev_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_amd64 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_amd64 + libxcb1_1.8.1-2+deb7u1_amd64 + libxcb1-dbg_1.8.1-2+deb7u1_amd64 + libxcb1-dev_1.8.1-2+deb7u1_amd64 + libxcomp-dev_3.5.0.12-1_amd64 + libxcomp3_3.5.0.12-1_amd64 + libxcomposite-dev_1:0.4.3-2_amd64 + libxcomposite1_1:0.4.3-2_amd64 + libxcomposite1-dbg_1:0.4.3-2_amd64 + libxcp-ocaml_0.5.2-3+b1_amd64 + libxcp-ocaml-dev_0.5.2-3+b1_amd64 + libxcrypt-dev_1:2.4-3_amd64 + libxcrypt1_1:2.4-3_amd64 + libxcursor-dev_1:1.1.13-1+deb7u1_amd64 + libxcursor1_1:1.1.13-1+deb7u1_amd64 + libxcursor1-dbg_1:1.1.13-1+deb7u1_amd64 + libxdamage-dev_1:1.1.3-2_amd64 + libxdamage1_1:1.1.3-2_amd64 + libxdamage1-dbg_1:1.1.3-2_amd64 + libxdb-dev_1.2.0-7.2_amd64 + libxdb1_1.2.0-7.2_amd64 + libxdelta2_1.1.3-9_amd64 + libxdelta2-dev_1.1.3-9_amd64 + libxdffileio-dev_0.3-1_amd64 + libxdffileio0_0.3-1_amd64 + libxdffileio0-dbg_0.3-1_amd64 + libxdg-basedir-dev_1.1.1-2_amd64 + libxdg-basedir1_1.1.1-2_amd64 + libxdg-basedir1-dbg_1.1.1-2_amd64 + libxdmcp-dev_1:1.1.1-1_amd64 + libxdmcp6_1:1.1.1-1_amd64 + libxdmcp6-dbg_1:1.1.1-1_amd64 + libxdmf-dev_2.1.dfsg.1-5_amd64 + libxdmf2_2.1.dfsg.1-5_amd64 + libxdo-dev_1:2.20100701.2961-3+deb7u3_amd64 + libxdo2_1:2.20100701.2961-3+deb7u3_amd64 + libxdot4_2.26.3-14+deb7u1_amd64 + libxen-4.1_4.1.4-3+deb7u1_amd64 + libxen-dev_4.1.4-3+deb7u1_amd64 + libxen-ocaml_4.1.4-3+deb7u1_amd64 + libxen-ocaml-dev_4.1.4-3+deb7u1_amd64 + libxenapi-ocaml-dev_1.3.2-15_amd64 + libxenomai-dev_2.6.0-2_amd64 + libxenomai1_2.6.0-2_amd64 + libxenstore3.0_4.1.4-3+deb7u1_amd64 + libxerces-c-dev_3.1.1-3_amd64 + libxerces-c-samples_3.1.1-3_amd64 + libxerces-c2-dev_2.8.0+deb1-3_amd64 + libxerces-c28_2.8.0+deb1-3_amd64 + libxerces-c3.1_3.1.1-3_amd64 + libxerces2-java-gcj_2.11.0-6_amd64 + libxext-dev_2:1.3.1-2+deb7u1_amd64 + libxext6_2:1.3.1-2+deb7u1_amd64 + libxext6-dbg_2:1.3.1-2+deb7u1_amd64 + libxfce4menu-0.1-0_4.6.2-1_amd64 + libxfce4menu-0.1-dbg_4.6.2-1_amd64 + libxfce4menu-0.1-dev_4.6.2-1_amd64 + libxfce4ui-1-0_4.8.1-1_amd64 + libxfce4ui-1-dbg_4.8.1-1_amd64 + libxfce4ui-1-dev_4.8.1-1_amd64 + libxfce4util-bin_4.8.2-1_amd64 + libxfce4util-dev_4.8.2-1_amd64 + libxfce4util4_4.8.2-1_amd64 + libxfce4util4-dbg_4.8.2-1_amd64 + libxfcegui4-4_4.8.1-5_amd64 + libxfcegui4-4-dbg_4.8.1-5_amd64 + libxfcegui4-dev_4.8.1-5_amd64 + libxfconf-0-2_4.8.1-1_amd64 + libxfconf-0-2-dbg_4.8.1-1_amd64 + libxfconf-0-dev_4.8.1-1_amd64 + libxfixes-dev_1:5.0-4+deb7u1_amd64 + libxfixes3_1:5.0-4+deb7u1_amd64 + libxfixes3-dbg_1:5.0-4+deb7u1_amd64 + libxfont-dev_1:1.4.5-3_amd64 + libxfont1_1:1.4.5-3_amd64 + libxfont1-dbg_1:1.4.5-3_amd64 + libxft-dev_2.3.1-1_amd64 + libxft2_2.3.1-1_amd64 + libxft2-dbg_2.3.1-1_amd64 + libxi-dev_2:1.6.1-1+deb7u1_amd64 + libxi6_2:1.6.1-1+deb7u1_amd64 + libxi6-dbg_2:1.6.1-1+deb7u1_amd64 + libxine-dev_1.1.21-1+b1_amd64 + libxine1_1.1.21-1+b1_amd64 + libxine1-bin_1.1.21-1+b1_amd64 + libxine1-console_1.1.21-1+b1_amd64 + libxine1-dbg_1.1.21-1+b1_amd64 + libxine1-ffmpeg_1.1.21-1+b1_amd64 + libxine1-gnome_1.1.21-1+b1_amd64 + libxine1-misc-plugins_1.1.21-1+b1_amd64 + libxine1-x_1.1.21-1+b1_amd64 + libxine2_1.2.2-4_amd64 + libxine2-bin_1.2.2-4_amd64 + libxine2-console_1.2.2-4_amd64 + libxine2-dbg_1.2.2-4_amd64 + libxine2-dev_1.2.2-4_amd64 + libxine2-ffmpeg_1.2.2-4_amd64 + libxine2-gnome_1.2.2-4_amd64 + libxine2-misc-plugins_1.2.2-4_amd64 + libxine2-vdr_1.2.2-4_amd64 + libxine2-x_1.2.2-4_amd64 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + libxinerama-dev_2:1.1.2-1+deb7u1_amd64 + libxinerama1_2:1.1.2-1+deb7u1_amd64 + libxinerama1-dbg_2:1.1.2-1+deb7u1_amd64 + libxkbfile-dev_1:1.0.8-1_amd64 + libxkbfile1_1:1.0.8-1_amd64 + libxkbfile1-dbg_1:1.0.8-1_amd64 + libxklavier-dev_5.2.1-1_amd64 + libxklavier16_5.2.1-1_amd64 + libxml++2.6-2_2.34.2-1_amd64 + libxml++2.6-dbg_2.34.2-1_amd64 + libxml++2.6-dev_2.34.2-1_amd64 + libxml-bare-perl_0.47-1_amd64 + libxml-commons-resolver1.1-java-gcj_1.2-7_amd64 + libxml-easy-perl_0.009-1+b1_amd64 + libxml-libxml-perl_2.0001+dfsg-1_amd64 + libxml-libxslt-perl_1.77-1_amd64 + libxml-light-ocaml_2.2-15_amd64 + libxml-light-ocaml-dev_2.2-15_amd64 + libxml-parser-perl_2.41-1+b1_amd64 + libxml-quote-perl_1.02-2+b2_amd64 + libxml-sax-expatxs-perl_1.32-1+b2_amd64 + libxml-security-c-dev_1.6.1-5+deb7u2_amd64 + libxml-security-c16_1.6.1-5+deb7u2_amd64 + libxml-xerces-perl_2.7.0-0+deb1-3_amd64 + libxml2_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-dev_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils_2.8.0+dfsg1-7+nmu2_amd64 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_amd64 + libxmlada4.1_4.1-2_amd64 + libxmlada4.1-dbg_4.1-2_amd64 + libxmlada4.1-dev_4.1-2_amd64 + libxmlezout-dbg_1.06.1-5_amd64 + libxmlezout1_1.06.1-5_amd64 + libxmlezout2-dev_1.06.1-5_amd64 + libxmlm-ocaml-dev_1.1.0-1_amd64 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_amd64 + libxmlrpc-c++4_1.16.33-3.2_amd64 + libxmlrpc-c++4-dev_1.16.33-3.2_amd64 + libxmlrpc-core-c3_1.16.33-3.2_amd64 + libxmlrpc-core-c3-dev_1.16.33-3.2_amd64 + libxmlrpc-epi-dev_0.54.2-1_amd64 + libxmlrpc-epi0_0.54.2-1_amd64 + libxmlrpc-epi0-dbg_0.54.2-1_amd64 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_amd64 + libxmlsec1_1.2.18-2_amd64 + libxmlsec1-dev_1.2.18-2_amd64 + libxmlsec1-gcrypt_1.2.18-2_amd64 + libxmlsec1-gnutls_1.2.18-2_amd64 + libxmlsec1-nss_1.2.18-2_amd64 + libxmlsec1-openssl_1.2.18-2_amd64 + libxmltok1_1.2-3_amd64 + libxmltok1-dev_1.2-3_amd64 + libxmltooling-dev_1.4.2-5_amd64 + libxmltooling5_1.4.2-5_amd64 + libxmmsclient++-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient++-glib1_0.8+dfsg-4_amd64 + libxmmsclient++4_0.8+dfsg-4_amd64 + libxmmsclient-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib-dev_0.8+dfsg-4_amd64 + libxmmsclient-glib1_0.8+dfsg-4_amd64 + libxmmsclient6_0.8+dfsg-4_amd64 + libxmpi4_2.2.3b8-13_amd64 + libxmpi4-dev_2.2.3b8-13_amd64 + libxmu-dev_2:1.1.1-1_amd64 + libxmu6_2:1.1.1-1_amd64 + libxmu6-dbg_2:1.1.1-1_amd64 + libxmuu-dev_2:1.1.1-1_amd64 + libxmuu1_2:1.1.1-1_amd64 + libxmuu1-dbg_2:1.1.1-1_amd64 + libxnee-dbg_3.13-1_amd64 + libxnee-dev_3.13-1_amd64 + libxnee0_3.13-1_amd64 + libxneur_0.15.0-1.1_amd64 + libxneur-dev_0.15.0-1.1_amd64 + libxosd-dev_2.2.14-2_amd64 + libxosd2_2.2.14-2_amd64 + libxp-dev_1:1.0.1-2+deb7u1_amd64 + libxp6_1:1.0.1-2+deb7u1_amd64 + libxp6-dbg_1:1.0.1-2+deb7u1_amd64 + libxpa-dev_2.1.14-2_amd64 + libxpa1_2.1.14-2_amd64 + libxplc0.3.13_0.3.13-3_amd64 + libxplc0.3.13-dev_0.3.13-3_amd64 + libxpm-dev_1:3.5.10-1_amd64 + libxpm4_1:3.5.10-1_amd64 + libxpm4-dbg_1:3.5.10-1_amd64 + libxqdbm-dev_1.8.78-2_amd64 + libxqdbm3c2_1.8.78-2_amd64 + libxqilla-dev_2.3.0-1_amd64 + libxqilla6_2.3.0-1_amd64 + libxr1_1.0-2.1_amd64 + libxr1-dbg_1.0-2.1_amd64 + libxr1-dev_1.0-2.1_amd64 + libxrandr-dev_2:1.3.2-2+deb7u1_amd64 + libxrandr2_2:1.3.2-2+deb7u1_amd64 + libxrandr2-dbg_2:1.3.2-2+deb7u1_amd64 + libxrender-dev_1:0.9.7-1+deb7u1_amd64 + libxrender1_1:0.9.7-1+deb7u1_amd64 + libxrender1-dbg_1:0.9.7-1+deb7u1_amd64 + libxres-dev_2:1.0.6-1+deb7u1_amd64 + libxres1_2:1.0.6-1+deb7u1_amd64 + libxres1-dbg_2:1.0.6-1+deb7u1_amd64 + libxsettings-client-dev_0.17-6_amd64 + libxsettings-client0_0.17-6_amd64 + libxsettings-client0-dbg_0.17-6_amd64 + libxsettings-dev_0.11-3_amd64 + libxsettings0_0.11-3_amd64 + libxsettings0-dbg_0.11-3_amd64 + libxslt1-dbg_1.1.26-14.1_amd64 + libxslt1-dev_1.1.26-14.1_amd64 + libxslt1.1_1.1.26-14.1_amd64 + libxss-dev_1:1.2.2-1_amd64 + libxss1_1:1.2.2-1_amd64 + libxss1-dbg_1:1.2.2-1_amd64 + libxstr-ocaml-dev_0.2.1-21+b3_amd64 + libxt-dev_1:1.1.3-1+deb7u1_amd64 + libxt6_1:1.1.3-1+deb7u1_amd64 + libxt6-dbg_1:1.1.3-1+deb7u1_amd64 + libxtst-dev_2:1.2.1-1+deb7u1_amd64 + libxtst6_2:1.2.1-1+deb7u1_amd64 + libxtst6-dbg_2:1.2.1-1+deb7u1_amd64 + libxv-dev_2:1.0.7-1+deb7u1_amd64 + libxv1_2:1.0.7-1+deb7u1_amd64 + libxv1-dbg_2:1.0.7-1+deb7u1_amd64 + libxvidcore-dev_2:1.3.2-9_amd64 + libxvidcore4_2:1.3.2-9_amd64 + libxvmc-dev_2:1.0.7-1+deb7u2_amd64 + libxvmc1_2:1.0.7-1+deb7u2_amd64 + libxvmc1-dbg_2:1.0.7-1+deb7u2_amd64 + libxxf86dga-dev_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1_2:1.1.3-2+deb7u1_amd64 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_amd64 + libxxf86vm-dev_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1_1:1.1.2-1+deb7u1_amd64 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_amd64 + libxy-bin_0.8-1+b1_amd64 + libxy-dev_0.8-1+b1_amd64 + libxy3_0.8-1+b1_amd64 + libyahoo2-11_1.0.1-1_amd64 + libyahoo2-dev_1.0.1-1_amd64 + libyajl-dev_2.0.4-2_amd64 + libyajl2_2.0.4-2_amd64 + libyajl2-dbg_2.0.4-2_amd64 + libyaml-0-2_0.1.4-2+deb7u2_amd64 + libyaml-0-2-dbg_0.1.4-2+deb7u2_amd64 + libyaml-cpp-dev_0.3.0-1_amd64 + libyaml-cpp0.3_0.3.0-1_amd64 + libyaml-dev_0.1.4-2+deb7u2_amd64 + libyaml-libyaml-perl_0.38-3_amd64 + libyaml-syck-perl_1.20-1_amd64 + libyate4.1.0_4.1.0-1~dfsg-3_amd64 + libyaz4_4.2.30-2_amd64 + libyaz4-dev_4.2.30-2_amd64 + libyelp-dev_3.4.2-1+b1_amd64 + libyelp0_3.4.2-1+b1_amd64 + libygl4_4.2e-4_amd64 + libygl4-dev_4.2e-4_amd64 + libykclient-dev_2.6-1_amd64 + libykclient3_2.6-1_amd64 + libykpers-1-1_1.7.0-1_amd64 + libykpers-1-dev_1.7.0-1_amd64 + libyojson-ocaml_1.0.3-1_amd64 + libyojson-ocaml-dev_1.0.3-1_amd64 + libytnef0_1.5-4_amd64 + libytnef0-dev_1.5-4_amd64 + libyubikey-dev_1.8-1_amd64 + libyubikey0_1.8-1_amd64 + libz80ex-dev_1.1.19-3_amd64 + libz80ex1_1.1.19-3_amd64 + libzarith-ocaml_1.1-2_amd64 + libzarith-ocaml-dev_1.1-2_amd64 + libzbar-dev_0.10+doc-8_amd64 + libzbar0_0.10+doc-8_amd64 + libzbargtk-dev_0.10+doc-8_amd64 + libzbargtk0_0.10+doc-8_amd64 + libzbarqt-dev_0.10+doc-8_amd64 + libzbarqt0_0.10+doc-8_amd64 + libzeep-dev_2.9.0-2_amd64 + libzeep2.9_2.9.0-2_amd64 + libzeitgeist-1.0-1_0.3.18-1_amd64 + libzeitgeist-1.0-1-dbg_0.3.18-1_amd64 + libzeitgeist-dev_0.3.18-1_amd64 + libzen-dev_0.4.27-2_amd64 + libzen0_0.4.27-2_amd64 + libzephyr-dev_3.0.2-2_amd64 + libzephyr4_3.0.2-2_amd64 + libzephyr4-krb5_3.0.2-2_amd64 + libzerg-perl_1.0.4-2+b1_amd64 + libzerg0_1.0.7-3_amd64 + libzerg0-dbg_1.0.7-3_amd64 + libzerg0-dev_1.0.7-3_amd64 + libzeroc-ice-ruby1.8_3.4.2-8.2_amd64 + libzeroc-ice34_3.4.2-8.2_amd64 + libzeroc-ice34-dbg_3.4.2-8.2_amd64 + libzeroc-ice34-dev_3.4.2-8.2_amd64 + libzinnia-dev_0.06-1+b1_amd64 + libzinnia0_0.06-1+b1_amd64 + libzinnia0-dbg_0.06-1+b1_amd64 + libzip-dev_0.10.1-1.1_amd64 + libzip-ocaml_1.04-6+b3_amd64 + libzip-ocaml-dev_1.04-6+b3_amd64 + libzip2_0.10.1-1.1_amd64 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_amd64 + libzita-alsa-pcmi-dev_0.2.0-1_amd64 + libzita-alsa-pcmi0_0.2.0-1_amd64 + libzita-convolver-dev_3.1.0-2_amd64 + libzita-convolver3_3.1.0-2_amd64 + libzita-resampler-dev_1.1.0-3_amd64 + libzita-resampler1_1.1.0-3_amd64 + libzlcore-dev_0.12.10dfsg-8_amd64 + libzlcore0.12_0.12.10dfsg-8_amd64 + libzltext-dev_0.12.10dfsg-8_amd64 + libzltext0.12_0.12.10dfsg-8_amd64 + libzlui-gtk_0.12.10dfsg-8_amd64 + libzlui-qt4_0.12.10dfsg-8_amd64 + libzmq-dbg_2.2.0+dfsg-2_amd64 + libzmq-dev_2.2.0+dfsg-2_amd64 + libzmq1_2.2.0+dfsg-2_amd64 + libzn-poly-0.8_0.8-1.1_amd64 + libzn-poly-dev_0.8-1.1_amd64 + libzookeeper-mt-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-mt2_3.3.5+dfsg1-2_amd64 + libzookeeper-st-dev_3.3.5+dfsg1-2_amd64 + libzookeeper-st2_3.3.5+dfsg1-2_amd64 + libzookeeper2_3.3.5+dfsg1-2_amd64 + libzorp-dev_3.9.5-4_amd64 + libzorp3.9_3.9.5-4_amd64 + libzorpll-dev_3.9.1.3-1_amd64 + libzorpll3.9-1_3.9.1.3-1_amd64 + libzorpll3.9-1-dbg_3.9.1.3-1_amd64 + libzorpll3.9-1-memtrace_3.9.1.3-1_amd64 + libzrtpcpp-dev_2.0.0-3_amd64 + libzrtpcpp2_2.0.0-3_amd64 + libzthread-2.3-2_2.3.2-7_amd64 + libzthread-dev_2.3.2-7_amd64 + libzvbi-dev_0.2.33-6_amd64 + libzvbi0_0.2.33-6_amd64 + libzzip-0-13_0.13.56-1.1_amd64 + libzzip-dev_0.13.56-1.1_amd64 + licq_1.6.1-3_amd64 + licq-plugin-autoreply_1.6.1-3_amd64 + licq-plugin-console_1.6.1-3_amd64 + licq-plugin-forwarder_1.6.1-3_amd64 + licq-plugin-jabber_1.6.1-3_amd64 + licq-plugin-kde4_1.6.1-3_amd64 + licq-plugin-msn_1.6.1-3_amd64 + licq-plugin-osd_1.6.1-3_amd64 + licq-plugin-qt4_1.6.1-3_amd64 + licq-plugin-rms_1.6.1-3_amd64 + lie_2.2.2+dfsg-2_amd64 + liece-dcc_2.0+0.20030527cvs-11_amd64 + lifelines_3.0.61-2_amd64 + lifeograph_0.8.2.dfsg-1_amd64 + liferea_1.8.6-1.1_amd64 + liferea-dbg_1.8.6-1.1_amd64 + liggghts_1.5.3-1_amd64 + lightdm_1.2.2-4_amd64 + lightdm-gtk-greeter_1.1.6-2_amd64 + lightdm-vala_1.2.2-4_amd64 + lightsoff_1:3.4.2-3_amd64 + lightspark_0.6.0.1-2_amd64 + lightspark-common_0.6.0.1-2_amd64 + lightspark-dbg_0.6.0.1-2_amd64 + lightspeed_1.2a-8+b1_amd64 + lighttpd_1.4.31-4+deb7u2_amd64 + lighttpd-mod-cml_1.4.31-4+deb7u2_amd64 + lighttpd-mod-magnet_1.4.31-4+deb7u2_amd64 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_amd64 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_amd64 + lighttpd-mod-webdav_1.4.31-4+deb7u2_amd64 + lilo_1:23.2-4_amd64 + lilv-utils_0.14.2~dfsg0-4_amd64 + lilypond_2.14.2-4_amd64 + linaro-image-tools_2012.06-1_amd64 + lincity_1.13.1-11_amd64 + lincity-ng_2.0-2+b2_amd64 + lingot_0.9.1-2_amd64 + link-grammar_4.7.4-2_amd64 + link-monitor-applet_3.0-8_amd64 + link-monitor-applet-dbg_3.0-8_amd64 + linkchecker_7.9-2_amd64 + links_2.7-1+deb7u1_amd64 + links2_2.7-1+deb7u1_amd64 + linphone_3.5.2-10_amd64 + linphone-dbg_3.5.2-10_amd64 + linphone-nogtk_3.5.2-10_amd64 + linpsk_1.1-1.1_amd64 + linsmith_0.99.21-1_amd64 + lintex_1.11-1_amd64 + linthesia_0.4.2-3_amd64 + linux-headers-2.6-amd64_3.2+46_amd64 + linux-headers-3.2.0-4-all_3.2.54-2_amd64 + linux-headers-3.2.0-4-all-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-amd64_3.2.54-2_amd64 + linux-headers-3.2.0-4-common_3.2.54-2_amd64 + linux-headers-3.2.0-4-common-rt_3.2.54-2_amd64 + linux-headers-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-headers-amd64_3.2+46_amd64 + linux-headers-rt-amd64_3.2+46_amd64 + linux-igd_1.0+cvs20070630-4_amd64 + linux-image-2.6-amd64_3.2+46_amd64 + linux-image-3.2.0-4-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-amd64-dbg_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64_3.2.54-2_amd64 + linux-image-3.2.0-4-rt-amd64-dbg_3.2.54-2_amd64 + linux-image-amd64_3.2+46_amd64 + linux-image-rt-amd64_3.2+46_amd64 + linux-kbuild-3.2_3.2.17-1_amd64 + linux-libc-dev_3.2.54-2_amd64 + linux-tools-3.2_3.2.17-1_amd64 + linux-wlan-ng_0.2.9+dfsg-5_amd64 + linuxdcpp_1.1.0-1+b2_amd64 + linuxdoc-tools_0.9.68_amd64 + linuxinfo_1.1.8-39_amd64 + linuxlogo_5.11-1_amd64 + linuxvnc_0.9.9+dfsg-1_amd64 + lio-utils_3.1+git2.fd0b34fd-2_amd64 + liquidsoap_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-all_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_amd64 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_amd64 + liquidwar_5.6.4-3+b1_amd64 + liquidwar-server_5.6.4-3+b1_amd64 + lirc_0.9.0~pre1-1_amd64 + lirc-x_0.9.0~pre1-1_amd64 + listaller_0.5.5-2_amd64 + listaller-devtools_0.5.5-2_amd64 + listaller-libuild_0.5.5-2_amd64 + literki_0.0.0+20100113.git1da40724-1_amd64 + littler_0.1.5-1_amd64 + littlewizard_1.2.2-1_amd64 + live-f1_0.2.10-1_amd64 + livemedia-utils_2012.05.17-1_amd64 + lives_1.6.2~ds1-2_amd64 + lives-dbg_1.6.2~ds1-2_amd64 + liwc_1.21-1_amd64 + lksctp-tools_1.0.11+dfsg-2_amd64 + ll-scope_0.2.1-3_amd64 + lldpad_0.9.44-1_amd64 + lldpad-dev_0.9.44-1_amd64 + lldpd_0.5.7-2_amd64 + llvm_1:3.0-14+nmu2_amd64 + llvm-2.9_2.9+dfsg-7_amd64 + llvm-2.9-dev_2.9+dfsg-7_amd64 + llvm-2.9-runtime_2.9+dfsg-7_amd64 + llvm-3.0_3.0-10_amd64 + llvm-3.0-dev_3.0-10_amd64 + llvm-3.0-runtime_3.0-10_amd64 + llvm-3.1_3.1-1_amd64 + llvm-3.1-dev_3.1-1_amd64 + llvm-3.1-runtime_3.1-1_amd64 + llvm-dev_1:3.0-14+nmu2_amd64 + llvm-runtime_1:3.0-14+nmu2_amd64 + lm-sensors_1:3.3.2-2+deb7u1_amd64 + lmarbles_1.0.7-1.1_amd64 + lmemory_0.6c-6_amd64 + lmms_0.4.10-2.3_amd64 + lnpd_0.9.0-7_amd64 + loadlin_1.6f-1_amd64 + loadmeter_1.20-6_amd64 + loadwatch_1.0+1.1alpha1-5_amd64 + locales-all_2.13-38+deb7u1_amd64 + locate_4.4.2-4_amd64 + lockfile-progs_0.1.17_amd64 + lockout_0.2.3-2_amd64 + logapp_0.15-1_amd64 + logcentral_2.7-1_amd64 + logcentral-tools_2.7-1_amd64 + logfs-tools_20110927-1_amd64 + logfs-tools-dbg_20110927-1_amd64 + login_1:4.1.5.1-1_amd64 + login-duo_1.8-1_amd64 + logjam_4.6.2-1_amd64 + logrotate_3.8.1-4_amd64 + logstalgia_1.0.3-3_amd64 + logtool_1.2.8-8_amd64 + logtools_0.13d_amd64 + logtop_0.4.3-1_amd64 + lokalize_4:4.8.4+dfsg-1_amd64 + loki_2.4.7.4-4_amd64 + longomatch_0.16.8+git20110626-1+b2_amd64 + lookup_1.08b-11_amd64 + looptools_2.7-1_amd64 + loqui_0.5.3-3_amd64 + lordsawar_0.2.0-2.1_amd64 + lostirc_0.4.6-4_amd64 + lout_3.39-1_amd64 + love_0.8.0-1+deb7u1_amd64 + love-dbg_0.8.0-1+deb7u1_amd64 + lowpan-test-tools_0.2.2-2.1_amd64 + lowpan-tools_0.2.2-2.1_amd64 + lp-solve_5.5.0.13-7_amd64 + lpe_1.2.6.13-0.1_amd64 + lpr_1:2008.05.17+nmu1_amd64 + lprng_3.8.B-2_amd64 + lrslib_0.42c-1+b1_amd64 + lrzip_0.608-2_amd64 + lrzsz_0.12.21-5_amd64 + lsat_0.9.7.1-2_amd64 + lsb-core_4.1+Debian8+deb7u1_amd64 + lsb-cxx_4.1+Debian8+deb7u1_amd64 + lsb-desktop_4.1+Debian8+deb7u1_amd64 + lsb-graphics_4.1+Debian8+deb7u1_amd64 + lsb-languages_4.1+Debian8+deb7u1_amd64 + lsb-multimedia_4.1+Debian8+deb7u1_amd64 + lsb-printing_4.1+Debian8+deb7u1_amd64 + lsb-security_4.1+Debian8+deb7u1_amd64 + lsdvd_0.16-3+b1_amd64 + lsh-client_2.0.4-dfsg-11_amd64 + lsh-server_2.0.4-dfsg-11_amd64 + lsh-utils_2.0.4-dfsg-11_amd64 + lshw_02.16-1_amd64 + lshw-gtk_02.16-1_amd64 + lskat_4:4.8.4-3_amd64 + lsmbox_2.1.2-1_amd64 + lsof_4.86+dfsg-1_amd64 + lsscsi_0.26-2_amd64 + lswm_0.6.00+svn201-3+b1_amd64 + lsyncd_2.0.7-3_amd64 + ltpanel_0.2-5_amd64 + ltrace_0.5.3-2.1_amd64 + ltris_1.0.18-1_amd64 + ltsp-client_5.4.2-6_amd64 + ltsp-client-core_5.4.2-6_amd64 + ltspfs_1.1-2_amd64 + ltspfsd-core_1.1-2_amd64 + ltt-bin_0.89-05122011-1_amd64 + lttoolbox_3.1.0-1.1_amd64 + lttv_0.12.38-21032011-1+b1_amd64 + lttv-dev_0.12.38-21032011-1+b1_amd64 + lua-apr_0.23.2-1_amd64 + lua-apr-dev_0.23.2-1_amd64 + lua-bitop_1.0.2-1_amd64 + lua-bitop-dev_1.0.2-1_amd64 + lua-curl_0.3.0-7_amd64 + lua-curl-dev_0.3.0-7_amd64 + lua-curses_5.1.19-2_amd64 + lua-curses-dev_5.1.19-2_amd64 + lua-cyrussasl_1.0.0-4_amd64 + lua-cyrussasl-dev_1.0.0-4_amd64 + lua-dbi-mysql_0.5+svn78-4_amd64 + lua-dbi-mysql-dev_0.5+svn78-4_amd64 + lua-dbi-postgresql_0.5+svn78-4_amd64 + lua-dbi-postgresql-dev_0.5+svn78-4_amd64 + lua-dbi-sqlite3_0.5+svn78-4_amd64 + lua-dbi-sqlite3-dev_0.5+svn78-4_amd64 + lua-event_0.4.1-2_amd64 + lua-event-dev_0.4.1-2_amd64 + lua-expat_1.2.0-5_amd64 + lua-expat-dev_1.2.0-5_amd64 + lua-filesystem_1.5.0+16+g84f1af5-1_amd64 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_amd64 + lua-iconv_7-1_amd64 + lua-iconv-dev_7-1_amd64 + lua-ldap_1.1.0-1-geeac494-3_amd64 + lua-ldap-dev_1.1.0-1-geeac494-3_amd64 + lua-lgi_0.6.2-1_amd64 + lua-lgi-dbg_0.6.2-1_amd64 + lua-lgi-dev_0.6.2-1_amd64 + lua-lpeg_0.10.2-5_amd64 + lua-lpeg-dev_0.10.2-5_amd64 + lua-md5_1.1.2-6_amd64 + lua-md5-dev_1.1.2-6_amd64 + lua-posix_5.1.19-2_amd64 + lua-posix-dev_5.1.19-2_amd64 + lua-rex-onig_2.6.0-2_amd64 + lua-rex-onig-dev_2.6.0-2_amd64 + lua-rex-pcre_2.6.0-2_amd64 + lua-rex-pcre-dev_2.6.0-2_amd64 + lua-rex-posix_2.6.0-2_amd64 + lua-rex-posix-dev_2.6.0-2_amd64 + lua-rex-tre_2.6.0-2_amd64 + lua-rex-tre-dev_2.6.0-2_amd64 + lua-rings_1.2.3-1_amd64 + lua-rings-dev_1.2.3-1_amd64 + lua-sec_0.4.1-1_amd64 + lua-sec-dev_0.4.1-1_amd64 + lua-socket_2.0.2-8_amd64 + lua-socket-dev_2.0.2-8_amd64 + lua-sql-mysql_2.3.0-1+build0_amd64 + lua-sql-mysql-dev_2.3.0-1+build0_amd64 + lua-sql-postgres_2.3.0-1+build0_amd64 + lua-sql-postgres-dev_2.3.0-1+build0_amd64 + lua-sql-sqlite3_2.3.0-1+build0_amd64 + lua-sql-sqlite3-dev_2.3.0-1+build0_amd64 + lua-svn_0.4.0-7_amd64 + lua-svn-dev_0.4.0-7_amd64 + lua-wsapi-fcgi_1.5-3_amd64 + lua-wsapi-fcgi-dev_1.5-3_amd64 + lua-zip_1.2.3-11_amd64 + lua-zip-dev_1.2.3-11_amd64 + lua-zlib_0.2-1_amd64 + lua-zlib-dev_0.2-1_amd64 + lua5.1_5.1.5-4_amd64 + lua5.2_5.2.1-3_amd64 + lua50_5.0.3-6_amd64 + luakit_2012.03.25-1_amd64 + luatex_0.70.1.20120524-3_amd64 + luckybackup_0.4.7-2_amd64 + luminance-hdr_2.2.1-3_amd64 + lunar_2.2-3.1_amd64 + lunzip_1.1-2_amd64 + lunzip-dbg_1.1-2_amd64 + luola_1.3.2-9_amd64 + lurker_2.3-3_amd64 + lusernet.app_0.4.2-6+b2_amd64 + lush_1.2.1-9+cvs20110227+nmu1_amd64 + lutefisk_1.0.5a.cleaned-1_amd64 + luvcview_1:0.2.6-6_amd64 + lv_4.51-2_amd64 + lv2-c++-tools_1.0.4-3+b1_amd64 + lv2-dev_1.0.0~dfsg2-2_amd64 + lv2-examples_1.0.0~dfsg2-2_amd64 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_amd64 + lv2file_0.83-1_amd64 + lv2proc_0.4.0-4_amd64 + lv2vocoder_1-3_amd64 + lvm2_2.02.95-8_amd64 + lwatch_0.6-1_amd64 + lwm_1.2.2-4_amd64 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_amd64 + lx-gdb_1.03-14_amd64 + lxappearance_0.5.2-1_amd64 + lxappearance-dbg_0.5.2-1_amd64 + lxappearance-obconf_0.2.0-4_amd64 + lxappearance-obconf-dbg_0.2.0-4_amd64 + lxc_0.8.0~rc1-8+deb7u2_amd64 + lxc-dbg_0.8.0~rc1-8+deb7u2_amd64 + lxc-dev_0.8.0~rc1-8+deb7u2_amd64 + lxinput_0.3.2-1_amd64 + lxinput-dbg_0.3.2-1_amd64 + lxlauncher_0.2.2-3_amd64 + lxlauncher-dbg_0.2.2-3_amd64 + lxmms2_0.1.3-1_amd64 + lxmusic_0.4.4+git20100802-3_amd64 + lxpanel_0.5.10-1_amd64 + lxpanel-dbg_0.5.10-1_amd64 + lxpolkit_0.1.0-4_amd64 + lxpolkit-dbg_0.1.0-4_amd64 + lxrandr_0.1.2-3_amd64 + lxrandr-dbg_0.1.2-3_amd64 + lxsession_0.4.6.1-4_amd64 + lxsession-dbg_0.4.6.1-4_amd64 + lxsession-edit_0.2.0-3_amd64 + lxsession-edit-dbg_0.2.0-3_amd64 + lxshortcut_0.1.2-3_amd64 + lxshortcut-dbg_0.1.2-3_amd64 + lxtask_0.1.4-3_amd64 + lxtask-dbg_0.1.4-3_amd64 + lxterminal_0.1.11-4_amd64 + lxterminal-dbg_0.1.11-4_amd64 + lynkeos.app_1.2-6+b2_amd64 + lynx-cur_2.8.8dev.12-2_amd64 + lyskom-server_2.1.2-13_amd64 + lyx_2.0.3-3_amd64 + lyx-dbg_2.0.3-3_amd64 + lzip_1.13-3_amd64 + lzip-dbg_1.13-3_amd64 + lziprecover_1.13-2_amd64 + lziprecover-dbg_1.13-2_amd64 + lzma_9.22-2_amd64 + lzma-alone_9.22-2_amd64 + lzop_1.03-3_amd64 + m-tx_0.60d-5_amd64 + m16c-flash_0.1-1.1_amd64 + m17n-im-config_0.9.0-3_amd64 + m17n-lib-bin_1.6.3-2_amd64 + m17n-lib-mimx_1.6.3-2_amd64 + m2vrequantiser_1.1-1_amd64 + m4_1.4.16-3_amd64 + macchanger_1.5.0-9_amd64 + mace2_3.3f-1.1_amd64 + mach_0.9.1-3.1_amd64 + macopix-gtk2_1.7.4-4_amd64 + mactelnet-client_0.3.4-1_amd64 + mactelnet-server_0.3.4-1_amd64 + macutils_2.0b3-16_amd64 + madbomber_0.2.5-5_amd64 + madplay_0.15.2b-8_amd64 + madwimax_0.1.1-1_amd64 + maelstrom_1.4.3-L3.0.6+main-2_amd64 + mafft_6.864-1_amd64 + magic_7.5.220-1_amd64 + magicfilter_1.2-64_amd64 + magicrescue_1.1.8-1_amd64 + magics++_2.14.11-4_amd64 + mah-jong_1.11-2_amd64 + mahjongg_1:3.4.2-3_amd64 + mail-notification_5.4.dfsg.1-6+b1_amd64 + mail-notification-evolution_5.4.dfsg.1-6+b1_amd64 + mailagent_1:3.1-74-0.2_amd64 + mailavenger_0.8.3rc1-1_amd64 + mailcheck_1.91.2-2_amd64 + maildir-filter_1.20-3_amd64 + maildir-utils_0.9.8.4-3+deb7u1_amd64 + maildir-utils-extra_0.9.8.4-3+deb7u1_amd64 + maildrop_2.5.5-2_amd64 + mailfilter_0.8.2-4_amd64 + mailfront_1.16-1_amd64 + mailman_1:2.1.15-1_amd64 + mailsync_5.2.2-3_amd64 + mailtextbody_0.1.2-1_amd64 + mailto_1.3.2-3_amd64 + mailutils_1:2.99.97-3_amd64 + mailutils-comsatd_1:2.99.97-3_amd64 + mailutils-dbg_1:2.99.97-3_amd64 + mailutils-guile_1:2.99.97-3_amd64 + mailutils-imap4d_1:2.99.97-3_amd64 + mailutils-mh_1:2.99.97-3_amd64 + mailutils-pop3d_1:2.99.97-3_amd64 + mairix_0.22-1_amd64 + maitreya_6.0.5-2_amd64 + make_3.81-8.2_amd64 + makebootfat_1.4-5_amd64 + makedic_6.5deb2-8_amd64 + makedumpfile_1.4.3-1_amd64 + makefs_20100306-3_amd64 + makejvf_1.1a+0-2_amd64 + makexvpics_1.0.1-2_amd64 + maki_1.4.0+dfsg-1_amd64 + maki-plugins_1.4.0+dfsg-1_amd64 + malaga-bin_7.12-4_amd64 + man-db_2.6.2-1_amd64 + man2html_1.6g-6_amd64 + man2html-base_1.6g-6_amd64 + mana_0.6.1-2_amd64 + mana-dbg_0.6.1-2_amd64 + mancala_1.0.1-4_amd64 + mandelbulber_1:1.11-1_amd64 + mandos-client_1.5.5-1_amd64 + mangler_1.2.4-1_amd64 + mango-lassi_001+dfsg-5_amd64 + mapnik-utils_2.0.0+ds1-3+b4_amd64 + mapserver-bin_6.0.1-3.2+deb7u2_amd64 + maptool_0.5.0~svn5126+dfsg.1-3_amd64 + maq_0.7.1-5_amd64 + maqview_0.2.5-4_amd64 + maradns_1.4.12-5_amd64 + maradns-zoneserver_1.4.12-5_amd64 + marble_4:4.8.4-3_amd64 + marble-dbg_4:4.8.4-3_amd64 + marble-plugins_4:4.8.4-3_amd64 + maria_1.3.5-4_amd64 + masqmail_0.2.30-1_amd64 + massxpert_3.2.3-1_amd64 + massxpert-dbg_3.2.3-1_amd64 + matanza_0.13+ds1-1_amd64 + matchbox-desktop_2.0-4_amd64 + matchbox-keyboard_0.1+svn20080916-9+b1_amd64 + matchbox-keyboard-im_0.1+svn20080916-9+b1_amd64 + matchbox-panel_0.9.3-8_amd64 + matchbox-panel-manager_0.1-6_amd64 + matchbox-window-manager_1.2-osso21-1+b1_amd64 + mathgl_1.11.2-17_amd64 + mathomatic_15.8.2-2_amd64 + mathomatic-primes_15.8.2-2_amd64 + mathtex_1.03-1_amd64 + mathwar_0.2.5-2+b1_amd64 + matita_0.99.1-1_amd64 + matroxset_0.4-8_amd64 + maude_2.6-2_amd64 + mawk_1.3.3-17_amd64 + maxima_5.27.0-3_amd64 + maximus_0.4.14-3_amd64 + mayavi2_4.1.0-1_amd64 + mazeofgalious_0.62.dfsg2-3_amd64 + mbmon_2.05-6_amd64 + mboxgrep_0.7.9-1_amd64 + mbr_1.1.11-5+b1_amd64 + mbt_3.2.8-1_amd64 + mbtserver_0.5-2_amd64 + mbuffer_20110119-2_amd64 + mbw_1.2.2-1_amd64 + mc_3:4.8.3-10_amd64 + mc-dbg_3:4.8.3-10_amd64 + mcabber_0.10.1-3_amd64 + mccs_1:1.1-2_amd64 + mcdp_0.4-5_amd64 + mcelog_1.0~pre3-72-gcbd4da4-1_amd64 + mcl_1:12-068-1_amd64 + mcp-plugins_0.4.0-2_amd64 + mcpp_2.7.2-1.1_amd64 + mcrl2_201202.0-2+b1_amd64 + mcron_1.0.6-1+b1_amd64 + mcrypt_2.6.8-1.3_amd64 + md5deep_4.2-1_amd64 + mda-lv2_1.0.0~dfsg0-1_amd64 + mdadm_3.2.5-5_amd64 + mdbtools_0.7-1+deb7u1_amd64 + mdbtools-dbg_0.7-1+deb7u1_amd64 + mdbtools-dev_0.7-1+deb7u1_amd64 + mdbtools-gmdb_0.7-1+deb7u1_amd64 + mdbus2_2.3.0-1_amd64 + mdetect_0.5.2.3_amd64 + mdf2iso_0.3.0-2_amd64 + mdk_1.2.6+dfsg-1_amd64 + mdm_0.1.3-2_amd64 + mdns-scan_0.5-1_amd64 + me-tv_1.3.7-0.2_amd64 + mecab_0.99.3-3_amd64 + mecab-utils_0.99.3-3_amd64 + medcon_0.10.7-1+b2_amd64 + mediainfo_0.7.58-1_amd64 + mediainfo-gui_0.7.58-1_amd64 + mediatomb-common_0.12.1-4+b1_amd64 + mediatomb-dbg_0.12.1-4+b1_amd64 + mediawiki-math_2:1.0+git20120528-6_amd64 + mediawiki-math-texvc_2:1.0+git20120528-6_amd64 + medit_1.0.93-1_amd64 + mednafen_0.8.D.3-6_amd64 + medusa_2.0-3.1_amd64 + meep_1.1.1-8_amd64 + meep-lam4_1.1.1-10~deb7u1_amd64 + meep-mpi-default_1.1.1-10~deb7u1_amd64 + meep-mpich2_1.1.1-10~deb7u1_amd64 + meep-openmpi_1.1.1-9~deb7u1_amd64 + megaglest_3.6.0.3-1.2_amd64 + megaglest-dbg_3.6.0.3-1.2_amd64 + melt_0.8.0-4_amd64 + melting_4.3c-2_amd64 + members_20080128-5_amd64 + memcached_1.4.13-0.2+deb7u1_amd64 + memcachedb_1.2.0-9_amd64 + memdump_1.01-6.1_amd64 + memlockd_1.1.1_amd64 + memstat_0.9_amd64 + memtest86_4.0s-1_amd64 + memtest86+_4.20-1.1_amd64 + memtester_4.2.2-1_amd64 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mendexk_2.6e-3.2_amd64 + menhir_20120123.dfsg-1_amd64 + mensis_0.0.080507-3_amd64 + menu_2.1.46_amd64 + mercurial_2.2.2-3_amd64 + mergelog_4.5.1-9_amd64 + merkaartor_0.18.1-3_amd64 + mesa-common-dev_8.0.5-4+deb7u2_amd64 + mesa-utils_8.0.1-2+b3_amd64 + meshlab_1.3.0a+dfsg1-3_amd64 + meshs3d_0.2.2-8_amd64 + metacam_1.2-5_amd64 + metacity_1:2.34.3-4_amd64 + metalink_0.3.6-2+b1_amd64 + metapixel_1.0.2-7.1_amd64 + metar_20061030.1-2+b3_amd64 + metastore_1+20080623+debian-3_amd64 + meterbridge_0.9.2-11_amd64 + meterec_0.8~ds0-1+b1_amd64 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_amd64 + mew-bin_1:6.4-2_amd64 + mffm-fftw-dev_1.7-3_amd64 + mffm-fftw1_1.7-3_amd64 + mftrace_1.2.17-1_amd64 + mg_20110905-1.1_amd64 + mga-vid-common_2.6.32-1_amd64 + mga-vid-source_2.6.32-1_amd64 + mgdiff_1.0-29_amd64 + mgen_5.02+dfsg2-3_amd64 + mgetty_1.1.36-1.6_amd64 + mgetty-fax_1.1.36-1.6_amd64 + mgetty-pvftools_1.1.36-1.6_amd64 + mgetty-viewfax_1.1.36-1.6_amd64 + mgetty-voice_1.1.36-1.6_amd64 + mgp_1.13a+upstream20090219-6_amd64 + mgt_2.31-6_amd64 + mhc-utils_0.25.1+20120403-2_amd64 + mhddfs_0.1.39_amd64 + mhwaveedit_1.4.21-2_amd64 + mic2_0.24.12-1_amd64 + micro-httpd_20051212-15_amd64 + micro-inetd_20050629-5_amd64 + micro-proxy_20021030+debian-5_amd64 + microcom_2012.06.0-2_amd64 + microdc2_0.15.6-2_amd64 + micropolis_0.0.20071228-5_amd64 + midish_1.0.4-1.1_amd64 + midori_0.4.3+dfsg-0.1_amd64 + midori-dbg_0.4.3+dfsg-0.1_amd64 + mii-diag_2.11-3+b1_amd64 + mikmod_3.2.1-4_amd64 + milkytracker_0.90.85+dfsg-2.2_amd64 + milter-greylist_4.3.9-1_amd64 + mimedefang_2.71-3_amd64 + mimetex_1.73-2_amd64 + minbar_0.2.1-7_amd64 + minbif_1:1.0.5+git20120508-2.1_amd64 + minbif-common_1:1.0.5+git20120508-2.1_amd64 + minbif-dbg_1:1.0.5+git20120508-2.1_amd64 + minc-tools_2.1.10-1+b1_amd64 + minetest_0.3.1+dfsg-4_amd64 + minetest-dbg_0.3.1+dfsg-4_amd64 + minetest-server_0.3.1+dfsg-4_amd64 + mingetty_1.08-2_amd64 + mingw-ocaml_3.12.1+debian3_amd64 + mingw-w64-tools_2.0.3-1_amd64 + mingw32_4.2.1.dfsg-2_amd64 + mingw32-binutils_2.20-0.2_amd64 + mini-httpd_1.19-9.3_amd64 + minicom_2.6.1-1_amd64 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_amd64 + minidlna_1.0.24+dfsg-1_amd64 + minimodem_0.8.1-1_amd64 + minisapserver_0.3.6-1_amd64 + minisat_1:2.2.1-3_amd64 + minisat+_1.0-2_amd64 + minisat2_1:2.2.1-3_amd64 + minissdpd_1.1.20120121-1_amd64 + ministat_20100628-1_amd64 + minit_0.10-5_amd64 + miniupnpc_1.5-2_amd64 + minpack-dev_19961126+dfsg1-1_amd64 + mira-assembler_3.4.0.1-3_amd64 + mirage_0.9.5.1-1.1+b1_amd64 + miredo_1.2.3-1.1_amd64 + miredo-server_1.2.3-1.1_amd64 + miro_4.0.4-1_amd64 + mirrormagic_2.0.2.0deb1-11_amd64 + misery_0.2-1_amd64 + missidentify_1.0-6_amd64 + mistelix_0.33-3+b1_amd64 + mitmproxy_0.8-2_amd64 + mitools_1.8.5-2_amd64 + miwm_1.1-3_amd64 + mixal_1.08-11_amd64 + mixer.app_1.8.0-5_amd64 + mixmaster_3.0.0-6_amd64 + mixxx_1.10.1~dfsg0-1_amd64 + mkcue_1-2.1_amd64 + mkelfimage_2.7-7_amd64 + mklibs-copy_0.1.34_amd64 + mknbi_1.4.4-9_amd64 + mknfonts.tool_0.5-11+b3_amd64 + mksh_40.9.20120630-7_amd64 + mktorrent_1.0-4_amd64 + mkvtoolnix_5.6.0-1_amd64 + mkvtoolnix-gui_5.6.0-1_amd64 + ml-burg_110.74-2_amd64 + ml-lex_110.74-2_amd64 + ml-lpt_110.74-2_amd64 + ml-nlffigen_110.74-2_amd64 + ml-yacc_110.74-2_amd64 + mldonkey-gui_3.1.2-1_amd64 + mldonkey-server_3.1.2-1_amd64 + mlmmj_1.2.18.0-2_amd64 + mlocate_0.23.1-1_amd64 + mlock_8:2007f~dfsg-2_amd64 + mlpost_0.8.1-3_amd64 + mlterm_3.1.2-1.3_amd64 + mlterm-common_3.1.2-1.3_amd64 + mlterm-im-ibus_3.1.2-1.3_amd64 + mlterm-im-m17nlib_3.1.2-1.3_amd64 + mlterm-im-scim_3.1.2-1.3_amd64 + mlterm-im-uim_3.1.2-1.3_amd64 + mlterm-tiny_3.1.2-1.3_amd64 + mlterm-tools_3.1.2-1.3_amd64 + mlton-compiler_20100608-5_amd64 + mlton-runtime-native_20100608-5_amd64 + mlton-runtime-x86-64-linux-gnu_20100608-5_amd64 + mlton-tools_20100608-5_amd64 + mlv-smile_1.47-3_amd64 + mm3d_1.3.7-1.4_amd64 + mmass-modules_5.1.0-2_amd64 + mmorph_2.3.4.2-12.1_amd64 + mmpong-caca_0.9.1-2.1_amd64 + mmpong-gl_0.9.1-2.1_amd64 + mmpongd_0.9.1-2.1_amd64 + mmv_1.01b-15_amd64 + mobyle-utils_1.0.6~dfsg-1_amd64 + moc_1:2.5.0~alpha4+svn20120224-1_amd64 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_amd64 + mod-gearman-module_1.3.6-1_amd64 + mod-gearman-tools_1.3.6-1_amd64 + mod-gearman-worker_1.3.6-1_amd64 + modem-cmd_0.0.2_amd64 + modemmanager_0.5.2.0-2_amd64 + modemmanager-dbg_0.5.2.0-2_amd64 + modplug-tools_0.5.3-1_amd64 + mokomaze_0.5.5+git8+dfsg0-3_amd64 + mon_1.2.0-6_amd64 + mon-contrib_1.0+dfsg-2_amd64 + mona_1.4-13-3_amd64 + monav_0.3-6+b1_amd64 + monav-client_0.3-6+b1_amd64 + monav-preprocessor_0.3-6+b1_amd64 + monav-routing-daemon_0.3-6+b1_amd64 + mongodb_1:2.0.6-1.1_amd64 + mongodb-clients_1:2.0.6-1.1_amd64 + mongodb-dev_1:2.0.6-1.1_amd64 + mongodb-server_1:2.0.6-1.1_amd64 + monit_1:5.4-2_amd64 + monkeystudio_1.9.0.2-2_amd64 + monkeystudio-dbg_1.9.0.2-2_amd64 + mono-complete_2.10.8.1-8_amd64 + mono-jay_2.10.8.1-8_amd64 + mono-runtime_2.10.8.1-8_amd64 + mono-runtime-dbg_2.10.8.1-8_amd64 + mono-runtime-sgen_2.10.8.1-8_amd64 + mono-utils_2.10.8.1-8_amd64 + monopd_0.9.3-6_amd64 + monotone_1.0-6_amd64 + monotone-viz_1.0.2-2+b2_amd64 + monster-masher_1.8.1-6_amd64 + monsterz_0.7.1-4_amd64 + moodbar_0.1.2-3_amd64 + moon-buggy_1.0.51-9.1_amd64 + moon-buggy-esd_1.0.51-9.1_amd64 + moon-lander_1:1.0-4.1_amd64 + mooproxy_1.0.0-1_amd64 + mopac7-bin_1.15-5_amd64 + mopd_1:2.5.3-21_amd64 + moreutils_0.47_amd64 + moria_5.6-2_amd64 + morla_0.16.1-1.1_amd64 + morse_2.4-2_amd64 + morse-simulator_0.5.2-1_amd64 + morsegen_0.2.1-1_amd64 + mosh_1.2.3-1_amd64 + mosquitto_0.15-2_amd64 + mosquitto-clients_0.15-2_amd64 + most_5.0.0a-2.1_amd64 + mothur_1.24.1-1_amd64 + motion_3.2.12-3.4_amd64 + mount_2.20.1-5.3_amd64 + mountall_2.46_amd64 + mountpy_0.8.1_amd64 + mouseemu_0.15-9_amd64 + mousepad_0.2.16-6_amd64 + mousetrap_0.9-2.2_amd64 + mousetweaks_3.4.2-1_amd64 + mozc-server_1.5.1090.102-4+deb7u1_amd64 + mozc-utils-gui_1.5.1090.102-4+deb7u1_amd64 + mozilla-gtk-vnc_0.5.0-3.1_amd64 + mozilla-plugin-vlc_2.0.0-2_amd64 + mp_3.7.1-11_amd64 + mp3blaster_1:3.2.5-3_amd64 + mp3check_0.8.7-1_amd64 + mp3diags_1.0.11.076-3_amd64 + mp3fs_0.31-28-g7b30a54-1_amd64 + mp3gain_1.5.2-r2-2_amd64 + mp3info_0.8.5a-1_amd64 + mp3info-gtk_0.8.5a-1_amd64 + mp3rename_0.6-9_amd64 + mp3splt_2.4.2-2_amd64 + mp3splt-gtk_0.7.2-2_amd64 + mp3val_0.1.8-1_amd64 + mp3wrap_0.5-3_amd64 + mp4h_1.3.1-6_amd64 + mp4v2-dbg_2.0.0~dfsg0-1_amd64 + mp4v2-utils_2.0.0~dfsg0-1_amd64 + mpack_1.6-8_amd64 + mpage_2.5.6-1_amd64 + mpb_1.4.2-18_amd64 + mpb-mpi_1.4.2-18_amd64 + mpc_0.22-1_amd64 + mpc123_0.2.4-2_amd64 + mpd_0.16.7-2+b1_amd64 + mpd-dbg_0.16.7-2+b1_amd64 + mpdcon.app_1.1.99-5+b3_amd64 + mpdcron_0.3+git20110303-3_amd64 + mpdscribble_0.22-3_amd64 + mpdscribble-dbg_0.22-3_amd64 + mpeg2dec_0.4.1-3_amd64 + mpeg3-utils_1.5.4-5_amd64 + mpegdemux_0.1.4-3_amd64 + mpg123_1.14.4-1_amd64 + mpg321_0.3.2-1.1_amd64 + mpgtx_1.3.1-5_amd64 + mpi-default-bin_1.0.1_amd64 + mpi-default-dev_1.0.1_amd64 + mpich2_1.4.1-4.2_amd64 + mpich2python_2.8-4_amd64 + mpikmeans-tools_1.5-1+b1_amd64 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_amd64 + mplayer2_2.0-554-gf63dbad-1+b1_amd64 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_amd64 + mplayerthumbs_4:4.8.4-2_amd64 + mpop_1.0.27-1_amd64 + mpop-gnome_1.0.27-1_amd64 + mppenc_1.16-1.1_amd64 + mpqc_2.3.1-14_amd64 + mpqc-support_2.3.1-14_amd64 + mpt-status_1.2.0-7_amd64 + mrbayes_3.2.1+dfsg-1_amd64 + mrbayes-dbg_3.2.1+dfsg-1_amd64 + mrbayes-mpi_3.2.1+dfsg-1_amd64 + mrd6_0.9.6-10_amd64 + mriconvert_2.0.235-1_amd64 + mricron_0.20120505.1~dfsg.1-1_amd64 + mrtg_2.17.4-2_amd64 + mrtgutils_0.8.1_amd64 + mrtgutils-sensors_0.8.1_amd64 + mrtrix_0.2.10-2_amd64 + mrxvt_0.5.4-1.1_amd64 + mrxvt-cjk_0.5.4-1.1_amd64 + mrxvt-mini_0.5.4-1.1_amd64 + mscgen_0.20-2_amd64 + mscompress_0.3-4_amd64 + msgpack-python_0.1.10-1_amd64 + msmtp_1.4.28-1_amd64 + msmtp-gnome_1.4.28-1_amd64 + msn-pecan_0.1.3-1_amd64 + msn-pecan-dbg_0.1.3-1_amd64 + msort_8.52-1.3+b1_amd64 + msp430-libc_20120224-1_amd64 + mspdebug_0.19-1_amd64 + msr-tools_1.2-3_amd64 + msrtool_0.0+r4091-1_amd64 + mssh_1.2-1.1+b1_amd64 + mstflint_1.4-OFED-1.4.2-1_amd64 + mswatch_1.2.0-2.1_amd64 + mt-st_1.1-4_amd64 + mtasc_1.14-2_amd64 + mtbl-bin_0.2-1_amd64 + mtd-utils_1:1.5.0-1_amd64 + mtdev-tools_1.1.2-1_amd64 + mtink_1.0.16-6_amd64 + mtools_4.0.17-1_amd64 + mtp-tools_1.1.3-35-g0ece104-5_amd64 + mtpaint_3.40-1+b1_amd64 + mtr_0.82-3_amd64 + mtr-tiny_0.82-3_amd64 + mtx_1.3.12-4_amd64 + mu-cade_0.11.dfsg1-6_amd64 + muddleftpd_1.3.13.1-4.3_amd64 + mudita24_1.0.3+svn13-4_amd64 + mudita24-dbg_1.0.3+svn13-4_amd64 + mudlet_2.0-rc12-3_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + multicat_2.0-3_amd64 + multiget_1.2.0-3_amd64 + multimail_0.49-2_amd64 + multimon_1.0-5_amd64 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_amd64 + multitail_5.2.9-1_amd64 + multitee_3.0-4_amd64 + multiwatch_1.0.0-rc1-2_amd64 + mumble_1.2.3-349-g315b5f5-2.2_amd64 + mumble-dbg_1.2.3-349-g315b5f5-2.2_amd64 + mumble-server_1.2.3-349-g315b5f5-2.2_amd64 + mummer_3.23~dfsg-2_amd64 + mummy_1.0.2-5_amd64 + mumps-test_4.10.0.dfsg-3_amd64 + mumudvb_1.7.1-1_amd64 + munge_0.5.10-1_amd64 + mupdf_0.9-2_amd64 + mupdf-tools_0.9-2_amd64 + mupen64plus-audio-sdl_1.99.5-2_amd64 + mupen64plus-audio-sdl-dbg_1.99.5-2_amd64 + mupen64plus-input-sdl_1.99.5-2_amd64 + mupen64plus-input-sdl-dbg_1.99.5-2_amd64 + mupen64plus-rsp-hle_1.99.5-3_amd64 + mupen64plus-rsp-hle-dbg_1.99.5-3_amd64 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_amd64 + mupen64plus-ui-console_1.99.5-3_amd64 + mupen64plus-ui-console-dbg_1.99.5-3_amd64 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_amd64 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_amd64 + mupen64plus-video-rice_1.99.5-3_amd64 + mupen64plus-video-rice-dbg_1.99.5-3_amd64 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_amd64 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_amd64 + muroard_0.1.10-2_amd64 + muroard-dbg_0.1.10-2_amd64 + muroard-dev_0.1.10-2_amd64 + muscle_1:3.8.31-1_amd64 + muse_2.0-1_amd64 + museekd_1:0.2+svn20100315.r1208-2_amd64 + museeq_1:0.2+svn20100315.r1208-2_amd64 + musepack-tools_2:0.1~r459-4_amd64 + musescore_1.2+dfsg-1_amd64 + music-bin_1.0.7-1.2_amd64 + music123_16.3-3_amd64 + musique_1.1-2.1_amd64 + musixtex_1:0.115-4_amd64 + mustang_3.2.1-3_amd64 + mustang-plug_1.1-2_amd64 + mutextrace_0.1-1_amd64 + mutrace_0.2.0-2_amd64 + mutt_1.5.21-6.2+deb7u1_amd64 + mutt-dbg_1.5.21-6.2+deb7u1_amd64 + mutt-patched_1.5.21-6.2+deb7u1_amd64 + mutter_3.4.1-5_amd64 + mutter-dbg_3.4.1-5_amd64 + mwrap_0.33-1_amd64 + mxallowd_1.9-1_amd64 + mydumper_0.5.1-3_amd64 + mypaint_1.0.0-1_amd64 + myproxy_5.6-1_amd64 + myproxy-admin_5.6-1_amd64 + myproxy-dbg_5.6-1_amd64 + myproxy-server_5.6-1_amd64 + myrescue_0.9.4-5+b1_amd64 + myspell-tools_1:3.1-24_amd64 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-proxy_0.8.1-1.1+b1_amd64 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_amd64 + mysql-workbench_5.2.40+dfsg-2_amd64 + mysqltcl_3.051-1+b1_amd64 + mysqmail-courier-logger_0.4.9-10_amd64 + mysqmail-dovecot-logger_0.4.9-10_amd64 + mysqmail-postfix-logger_0.4.9-10_amd64 + mysqmail-pure-ftpd-logger_0.4.9-10_amd64 + mythtvfs_0.6.1-3_amd64 + mz_0.40-1_amd64 + n2n_1.3.1~svn3789-1_amd64 + nabi_0.99.11-2_amd64 + nacl-tools_20110221-4_amd64 + nagios-nrpe-plugin_2.13-3_amd64 + nagios-nrpe-server_2.13-3_amd64 + nagios-plugins-basic_1.4.16-1_amd64 + nagios-plugins-common_1.4.16-1_amd64 + nagios-plugins-contrib_4.20120702_amd64 + nagios-plugins-standard_1.4.16-1_amd64 + nagios3_3.4.1-3+deb7u1_amd64 + nagios3-cgi_3.4.1-3+deb7u1_amd64 + nagios3-core_3.4.1-3+deb7u1_amd64 + nagios3-dbg_3.4.1-3+deb7u1_amd64 + nagiosgrapher_1.7.1-4_amd64 + nagircbot_0.0.33-2_amd64 + nailgun_0.7.1-3_amd64 + nam_1.15-1_amd64 + nam-dbg_1.15-1_amd64 + namazu2_2.0.21-6_amd64 + nana_2.5-12_amd64 + nano_2.2.6-1+b1_amd64 + nano-tiny_2.2.6-1+b1_amd64 + nap_1.5.4-7.1_amd64 + nas_1.9.3-5wheezy1_amd64 + nas-bin_1.9.3-5wheezy1_amd64 + nasm_2.10.01-1_amd64 + naspro-bridges_0.4.1-1_amd64 + nast_0.2.0-6_amd64 + nasty_0.6-2_amd64 + natpmp-utils_20110808-3_amd64 + nautilus_3.4.2-1+build1_amd64 + nautilus-actions_3.2.2-1_amd64 + nautilus-dbg_3.4.2-1+build1_amd64 + nautilus-filename-repairer_0.1.1-2_amd64 + nautilus-gtkhash_0.6.0-4_amd64 + nautilus-image-converter_0.3.1~git20110416-1_amd64 + nautilus-open-terminal_0.19-2+b1_amd64 + nautilus-sendto_3.0.3-2+b1_amd64 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_amd64 + nautilus-share_0.7.3-1+b1_amd64 + nautilus-wipe_0.1.1-3_amd64 + navit_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_amd64 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_amd64 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_amd64 + nbd-client_1:3.2-4~deb7u4_amd64 + nbd-server_1:3.2-4~deb7u4_amd64 + nbibtex_0.9.18-10_amd64 + nbtscan_1.5.1-6_amd64 + ncaptool_1.9.2-1+b2_amd64 + ncbi-blast+_2.2.26-3_amd64 + ncbi-epcr_2.3.12-1-1_amd64 + ncbi-tools-bin_6.1.20120620-2_amd64 + ncbi-tools-x11_6.1.20120620-2_amd64 + ncc_2.8-1_amd64 + ncdt_2.1-3_amd64 + ncdu_1.8-1_amd64 + ncftp_2:3.2.5-1.1_amd64 + ncmpc_0.17-1_amd64 + ncmpcpp_0.5.10-1.1_amd64 + nco_4.0.9-1+b1_amd64 + ncoils_2002-3_amd64 + ncompress_4.2.4.4-5_amd64 + ncpfs_2.2.6-9_amd64 + ncurses-bin_5.9-10_amd64 + ncurses-examples_5.9-10_amd64 + ncurses-hexedit_0.9.7-14.1_amd64 + ncview_1.93g-1+b2_amd64 + nd_0.8.2-6_amd64 + ndisc6_1.0.1-1+b1_amd64 + ndisgtk_0.8.5-1_amd64 + ndiswrapper-utils-1.9_1.57-1_amd64 + ndoutils-common_1.4b9-1.1+b1_amd64 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_amd64 + ndpmon_1.4.0-2_amd64 + ndtpd_1:1.0.dfsg.1-4.3_amd64 + ne_2.4-1_amd64 + nec_2-16_amd64 + nec2c_0.8-3_amd64 + necpp_1.5.0+cvs20101003-2.1_amd64 + nedit_1:5.6~cvs20081118-7_amd64 + nedit-dbg_1:5.6~cvs20081118-7_amd64 + neko_1.8.1-6+b1_amd64 + nekobee_0.1.7-3_amd64 + nemiver_0.9.2-1_amd64 + net-acct_0.71-9_amd64 + net-tools_1.60-24.2_amd64 + netanim_3.100-1_amd64 + netatalk_2.2.2-1_amd64 + netcat-openbsd_1.105-7_amd64 + netcat-traditional_1.10-40_amd64 + netcat6_1.0-8_amd64 + netcdf-bin_1:4.1.3-6+b1_amd64 + netcdf-dbg_1:4.1.3-6+b1_amd64 + netcf_0.1.9-2_amd64 + netdiag_1.1-1_amd64 + netdiscover_0.3beta6+20080409-5_amd64 + netdiscover-dbg_0.3beta6+20080409-5_amd64 + netemul_1.0.0-2_amd64 + netexpect_0.20-3_amd64 + nethack-common_3.4.3-14_amd64 + nethack-console_3.4.3-14_amd64 + nethack-lisp_3.4.3-14_amd64 + nethack-x11_3.4.3-14_amd64 + nethogs_0.8.0-1_amd64 + netmask_2.3.12_amd64 + netmaze_0.81+jpg0.82-14_amd64 + netmrg_0.20-6.1_amd64 + netpanzer_0.8.4.debian.1-1.1_amd64 + netpanzer-dbg_0.8.4.debian.1-1.1_amd64 + netpbm_2:10.0-15+b1_amd64 + netperfmeter_1.1.7-1.1_amd64 + netpipe-lam_3.7.2-7_amd64 + netpipe-mpich2_3.7.2-7_amd64 + netpipe-openmpi_3.7.2-7_amd64 + netpipe-pvm_3.7.2-7_amd64 + netpipe-tcp_3.7.2-7_amd64 + netpipes_4.2-6_amd64 + netplan_1.10.1-2_amd64 + netplug_1.2.9.2-1_amd64 + netrek-client-cow_3.3.0-3_amd64 + netrik_1.16.1-1.1_amd64 + netris_0.52-9_amd64 + netrw_1.3.2-2_amd64 + netsed_1.00b-2.1_amd64 + netselect_0.3.ds1-25_amd64 + netsend_0.0~svnr250-1.1_amd64 + netsniff-ng_0.5.7-1_amd64 + netspeed_0.16-3_amd64 + netstat-nat_1.4.10-2_amd64 + netsurf-fb_2.9-2_amd64 + netsurf-gtk_2.9-2_amd64 + nettle-bin_2.4-3_amd64 + nettle-dbg_2.4-3_amd64 + nettle-dev_2.4-3_amd64 + nettoe_1.3.2-1_amd64 + network-manager_0.9.4.0-10_amd64 + network-manager-dbg_0.9.4.0-10_amd64 + network-manager-dev_0.9.4.0-10_amd64 + network-manager-gnome_0.9.4.1-5_amd64 + network-manager-iodine_0.0.3-1_amd64 + network-manager-iodine-gnome_0.0.3-1_amd64 + network-manager-kde_1:0.9.0.3-1_amd64 + network-manager-openconnect_0.9.4.0-8_amd64 + network-manager-openconnect-gnome_0.9.4.0-8_amd64 + network-manager-openvpn_0.9.4.0-1_amd64 + network-manager-openvpn-gnome_0.9.4.0-1_amd64 + network-manager-pptp_0.9.4.0-2_amd64 + network-manager-pptp-gnome_0.9.4.0-2_amd64 + network-manager-strongswan_1.3.0-1_amd64 + network-manager-vpnc_0.9.4.0-1_amd64 + network-manager-vpnc-gnome_0.9.4.0-1_amd64 + netwox_5.36.0-1.2_amd64 + neverball_1.5.4-5_amd64 + neverball-dbg_1.5.4-5_amd64 + neverputt_1.5.4-5_amd64 + newmail_0.5-2_amd64 + newsbeuter_2.5-2_amd64 + newt-tcl_0.52.14-11.1_amd64 + nexus-tools_4.2.1-svn1614-1+b2_amd64 + nfdump_1.6.6-1_amd64 + nfdump-dbg_1.6.6-1_amd64 + nfdump-flow-tools_1.6.6-1_amd64 + nfdump-sflow_1.6.6-1_amd64 + nfqueue-bindings-perl_0.4-3_amd64 + nfqueue-bindings-python_0.4-3_amd64 + nfs-common_1:1.2.6-4_amd64 + nfs-kernel-server_1:1.2.6-4_amd64 + nfs4-acl-tools_0.3.3-2_amd64 + nfswatch_4.99.11-2_amd64 + ng-cjk_1.5~beta1-3_amd64 + ng-cjk-canna_1.5~beta1-3_amd64 + ng-latin_1.5~beta1-3_amd64 + ng-utils_0.7-1_amd64 + nget_0.27.1-11_amd64 + ngetty_1.0-1_amd64 + nginx-extras_1.2.1-2.2+wheezy2_amd64 + nginx-extras-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-full_1.2.1-2.2+wheezy2_amd64 + nginx-full-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-light_1.2.1-2.2+wheezy2_amd64 + nginx-light-dbg_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi_1.2.1-2.2+wheezy2_amd64 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_amd64 + ngircd_19.2-2_amd64 + ngorca_1.0.2-2+b1_amd64 + ngraph-gtk_6.06.06-1_amd64 + ngraph-gtk-addins-base_6.06.06-1_amd64 + ngrep_1.45.ds2-12_amd64 + nickle_2.76-1_amd64 + nictools-pci_1.3.8-1.2_amd64 + nifti-bin_2.0.0-1_amd64 + nih-dbus-tool_1.0.3-4.1_amd64 + nikwi_0.0.20060823-2_amd64 + nilfs-tools_2.1.3-1_amd64 + nilfs-tools-dbg_2.1.3-1_amd64 + ninix-aya_4.3.9-1_amd64 + ninja_0.1.3-2_amd64 + ninvaders_0.1.1-3_amd64 + nip2_7.28.4-1_amd64 + nis_3.17-32_amd64 + nitpic_0.1-13_amd64 + nitrogen_1.5.2-1_amd64 + njam_1.25-5.2_amd64 + njplot_2.4-1_amd64 + nkf_2.12-1_amd64 + nlkt_0.3.2.2-1_amd64 + nload_0.7.4-1_amd64 + nmap_6.00-0.3+deb7u1_amd64 + nmapsi4_0.3.1-1_amd64 + nmh_1.5-release-0.2_amd64 + nmon_13g+debian-1_amd64 + nmzmail_1.1-1_amd64 + nn_6.7.3-8_amd64 + nodau_0.3~rc6-1_amd64 + nodm_0.11-1.3_amd64 + noiz2sa_0.51a-9+b1_amd64 + nomarch_1.4-3_amd64 + nomnom_0.3.1-1_amd64 + normalize-audio_0.7.7-11_amd64 + notebook-gtk2_0.2rel-2.2_amd64 + notification-daemon_0.7.6-1_amd64 + notify-osd_0.9.34-2_amd64 + notmuch_0.13.2-1_amd64 + novnc_2012.1~e3+dfsg+1-4_amd64 + noweb_2.11b-7.1_amd64 + nowhere_110.74-2_amd64 + nqc_3.1.r6-1_amd64 + nqp_0.1~2012.01-5_amd64 + nrg2iso_0.4-4_amd64 + nrss_0.3.9-1_amd64 + ns2_2.35+dfsg-1_amd64 + ns2-dbg_2.35+dfsg-1_amd64 + nsca_2.9.1-2_amd64 + nsca-client_2.9.1-2_amd64 + nscd_2.13-38+deb7u1_amd64 + nsd3_3.2.12-3+deb7u1_amd64 + nsis_2.46-7_amd64 + nslcd_0.8.10-4_amd64 + nslint_3.0a2-1.1_amd64 + nss-passwords_0.1.1-1_amd64 + nss-updatedb_10-2+b1_amd64 + nstreams_1.0.3-2+b1_amd64 + nted_1.10.18-4_amd64 + ntfs-3g_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_amd64 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_amd64 + ntfs-config_1.0.1-10_amd64 + ntop_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_amd64 + ntp_1:4.2.6.p5+dfsg-2_amd64 + ntpdate_1:4.2.6.p5+dfsg-2_amd64 + ntrack-module-libnl-0_016-1.1_amd64 + ntrack-module-rtnetlink-0_016-1.1_amd64 + nuapplet_2.3.0-2_amd64 + nuauth_2.4.3-2.2_amd64 + nuauth-extra_2.4.3-2.2_amd64 + nuauth-log-mysql_2.4.3-2.2_amd64 + nuauth-log-pgsql_2.4.3-2.2_amd64 + nufw_2.4.3-2.2_amd64 + nullidentd_1.0-5_amd64 + nullmailer_1:1.11-2_amd64 + numactl_2.0.8~rc4-1_amd64 + numconv_2.7-1.1_amd64 + numdiff_5.6.0-1_amd64 + numlockx_1.2-4_amd64 + numptyphysics_0.2+svn156-1.1_amd64 + nurpawiki_1.2.3-5+b17_amd64 + nut-cgi_2.6.4-2.3+deb7u1_amd64 + nut-client_2.6.4-2.3+deb7u1_amd64 + nut-nutrition_15.5-1_amd64 + nut-powerman-pdu_2.6.4-2.3+deb7u1_amd64 + nut-server_2.6.4-2.3+deb7u1_amd64 + nut-snmp_2.6.4-2.3+deb7u1_amd64 + nut-xml_2.6.4-2.3+deb7u1_amd64 + nutcpc_2.4.3-2.2_amd64 + nuttcp_6.1.2-4_amd64 + nvclock_0.8b4+cvs20100914-4_amd64 + nvclock-gtk_0.8b4+cvs20100914-4_amd64 + nvclock-qt_0.8b4+cvs20100914-4_amd64 + nvi_1.81.6-8.2_amd64 + nvram-wakeup_1.1-1_amd64 + nvramtool_0.0+r3669-2.2_amd64 + nvtv_0.4.7-7_amd64 + nwall_1.32+debian-4.1_amd64 + nwchem_6.1-6_amd64 + nwrite_1.9.2-20.1_amd64 + nxproxy_3.5.0.12-1_amd64 + nyancat_1.0+git20120523.99dc310-1_amd64 + nypatchy_20061220+dfsg3-2_amd64 + nzb_0.2-1_amd64 + nzbget_0.7.0-2_amd64 + oar-admin_2.5.2-3_amd64 + oar-common_2.5.2-3_amd64 + oar-node_2.5.2-3_amd64 + oar-restful-api_2.5.2-3_amd64 + oar-server_2.5.2-3_amd64 + oar-server-mysql_2.5.2-3_amd64 + oar-server-pgsql_2.5.2-3_amd64 + oar-user_2.5.2-3_amd64 + oar-user-mysql_2.5.2-3_amd64 + oar-user-pgsql_2.5.2-3_amd64 + oasis3_3.3.beta.dfsg.1-8+b1_amd64 + oasis3-examples_3.3.beta.dfsg.1-8+b1_amd64 + oath-dbg_1.12.4-1_amd64 + oathtool_1.12.4-1_amd64 + obconf_1:2.0.3+20110805+debian-1_amd64 + obdgpslogger_0.16-1.2_amd64 + obex-data-server_0.4.5-1+b3_amd64 + obexd-client_0.46-1+b1_amd64 + obexd-server_0.46-1+b1_amd64 + obexfs_0.11-1_amd64 + obexftp_0.23-1.1_amd64 + obexpushd_0.11.2-1_amd64 + obfsproxy_0.1.4-2_amd64 + objcryst-fox_1.9.6.0-2_amd64 + obmenu_1.0-2+nmu1_amd64 + obnam_1.1-1.1_amd64 + ocaml_3.12.1-4_amd64 + ocaml-base_3.12.1-4_amd64 + ocaml-base-nox_3.12.1-4_amd64 + ocaml-compiler-libs_3.12.1-4_amd64 + ocaml-findlib_1.3.1-1_amd64 + ocaml-findlib-wizard_1.3.1-1_amd64 + ocaml-interp_3.12.1-4_amd64 + ocaml-melt_1.4.0-1_amd64 + ocaml-native-compilers_3.12.1-4_amd64 + ocaml-nox_3.12.1-4_amd64 + ocaml-ulex_1.1-2+b2_amd64 + ocaml-ulex08_0.8-10+b2_amd64 + ocamldsort_0.15.0-2_amd64 + ocamlduce_3.12.1.0-1_amd64 + ocamlduce-base_3.12.1.0-1_amd64 + ocamlgraph-editor_1.8.2-2_amd64 + ocamlmod_0.0.2-3_amd64 + ocamlviz_1.01-2+b2_amd64 + oce-draw_0.9.1-3_amd64 + ocfs2-tools_1.6.4-1+deb7u1_amd64 + ocfs2-tools-cman_1.6.4-1+deb7u1_amd64 + ocfs2-tools-dev_1.6.4-1+deb7u1_amd64 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_amd64 + ocfs2console_1.6.4-1+deb7u1_amd64 + ocl-icd-dev_1.3-3_amd64 + ocl-icd-libopencl1_1.3-3_amd64 + ocl-icd-opencl-dev_1.3-3_amd64 + ocrad_0.22~rc1-2_amd64 + ocsigen_1.3.4-2+b12_amd64 + ocsigenserver_2.1-1_amd64 + octave_3.6.2-5+deb7u1_amd64 + octave-audio_1.1.4-4_amd64 + octave-biosig_1.3.0-2_amd64 + octave-communications_1.1.1-1_amd64 + octave-control_2.3.52-1_amd64 + octave-dbg_3.6.2-5+deb7u1_amd64 + octave-econometrics_1:1.0.8-6_amd64 + octave-fixed_0.7.10-5_amd64 + octave-gdf_0.1.2-2_amd64 + octave-general_1.3.1-1_amd64 + octave-geometry_1.5.0-1_amd64 + octave-gsl_1.0.8-5_amd64 + octave-image_1.0.15-1_amd64 + octave-io_1.0.19-1_amd64 + octave-java_1.2.8-6_amd64 + octave-lhapdf_5.8.7+repack-1_amd64 + octave-linear-algebra_2.2.0-1_amd64 + octave-miscellaneous_1.1.0-1_amd64 + octave-nan_2.5.5-2_amd64 + octave-nurbs_1.3.6-1_amd64 + octave-ocs_0.1.3-1_amd64 + octave-octcdf_1.1.4-2_amd64 + octave-octgpr_1.2.0-3_amd64 + octave-odepkg_0.8.2-2_amd64 + octave-openmpi-ext_1.0.2-1_amd64 + octave-optim_1.2.0-1_amd64 + octave-optiminterp_0.3.3-2_amd64 + octave-pfstools_1.8.5-1_amd64 + octave-plplot_5.9.9-5_amd64 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_amd64 + octave-quaternion_2.0.0-1_amd64 + octave-secs1d_0.0.8-4_amd64 + octave-secs2d_0.0.8-4_amd64 + octave-signal_1.1.3-1_amd64 + octave-sockets_1.0.8-1_amd64 + octave-specfun_1.1.0-1_amd64 + octave-strings_1.1.0-1_amd64 + octave-struct_1.0.10-1_amd64 + octave-sundials_2.5.0-3_amd64 + octave-symbolic_1.1.0-1_amd64 + octave-tsa_4.2.4-1_amd64 + odbc-postgresql_1:09.01.0100-1+deb7u1_amd64 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_amd64 + odbcinst_2.2.14p2-5_amd64 + odbcinst1debian2_2.2.14p2-5_amd64 + odin_1.8.5-2_amd64 + odt2txt_0.4+git20100620-1+b1_amd64 + ofono_1.6-2_amd64 + ofono-dbg_1.6-2_amd64 + ofono-phonesim_1.17-1_amd64 + ofx_1:0.9.4-2.1_amd64 + ogamesim_1.17-1_amd64 + ogdi-bin_3.2.0~beta2-7_amd64 + oggfwd_0.2-6_amd64 + oggvideotools_0.8a-1_amd64 + oggvideotools-dbg_0.8a-1_amd64 + oggz-tools_1.1.1-1_amd64 + ogmtools_1:1.5-3+b1_amd64 + ogre-1.8-tools_1.8.0+dfsg1-3_amd64 + ogre-tools_1.7.4+dfsg1-7_amd64 + ohcount_3.0.0-6.1_amd64 + oidentd_2.0.8-5_amd64 + oidua_0.16.1-7_amd64 + okteta_4:4.8.4+dfsg-1_amd64 + okteta-dev_4:4.8.4+dfsg-1_amd64 + okular_4:4.8.4-3+b1_amd64 + okular-backend-odp_1:2.4.4-3_amd64 + okular-dbg_4:4.8.4-3+b1_amd64 + okular-dev_4:4.8.4-3+b1_amd64 + okular-extra-backends_4:4.8.4-3+b1_amd64 + olpc-kbdshim_27-1_amd64 + olpc-powerd_23-2_amd64 + olsrd_0.6.2-2.1_amd64 + olsrd-gui_0.6.2-2.1_amd64 + olsrd-plugins_0.6.2-2.1_amd64 + olvwm_4.4.3.2p1.4-28.1_amd64 + olwm_3.2p1.4-28.1_amd64 + omake_0.9.8.5-3-8_amd64 + omega-rpg_1:0.90-pa9-15_amd64 + omhacks_0.16-1_amd64 + omins_0.2.0-7.1_amd64 + omnievents_1:2.6.2-2_amd64 + omniidl_4.1.6-2_amd64 + omniorb_4.1.6-2_amd64 + omniorb-nameserver_4.1.6-2_amd64 + onak_0.4.1-1_amd64 + oneko_1.2.sakura.6-8_amd64 + onesixtyone_0.3.2-1_amd64 + onetime_1.122-1_amd64 + onioncat_0.2.2+svn553-3_amd64 + onscripter_20120531-2_amd64 + ontv_3.2.0-1_amd64 + oolite_1.76.1-2_amd64 + opari_1.1+dfsg-2_amd64 + open-axiom_1.4.1+svn~2626-2_amd64 + open-axiom-graphics_1.4.1+svn~2626-2_amd64 + open-axiom-hypertex_1.4.1+svn~2626-2_amd64 + open-cobol_1.1-1_amd64 + open-invaders_0.3-3.2_amd64 + open-iscsi_2.0.873-3_amd64 + open-jtalk_1.05-1_amd64 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_amd64 + openafs-client_1.6.1-3+deb7u1_amd64 + openafs-dbg_1.6.1-3+deb7u1_amd64 + openafs-dbserver_1.6.1-3+deb7u1_amd64 + openafs-fileserver_1.6.1-3+deb7u1_amd64 + openafs-fuse_1.6.1-3+deb7u1_amd64 + openafs-kpasswd_1.6.1-3+deb7u1_amd64 + openafs-krb5_1.6.1-3+deb7u1_amd64 + openais_1.1.4-4.1_amd64 + openais-dbg_1.1.4-4.1_amd64 + openais-dev_1.1.4-4.1_amd64 + openam_1.4.0-1+b2_amd64 + openarena_0.8.8-5+deb7u2_amd64 + openarena-dbg_0.8.8-5+deb7u2_amd64 + openarena-server_0.8.8-5+deb7u2_amd64 + openbabel_2.3.1+dfsg-4_amd64 + openbabel-gui_2.3.1+dfsg-4_amd64 + openbox_3.5.0-7_amd64 + openbox-dev_3.5.0-7_amd64 + openbsd-inetd_0.20091229-2_amd64 + opencc_0.3.0-3_amd64 + openchangeclient_1:1.0-3_amd64 + openchangeproxy_1:1.0-3_amd64 + openchangeserver_1:1.0-3_amd64 + openchangeserver-dev_1:1.0-3_amd64 + opencity_0.0.6.4stable-1.1_amd64 + openconnect_3.20-4_amd64 + opencryptoki_2.3.1+dfsg-3_amd64 + opencryptoki-dbg_2.3.1+dfsg-3_amd64 + openct_0.6.20-1.2_amd64 + opencubicplayer_1:0.1.21-1.1_amd64 + opendkim_2.6.8-4_amd64 + opendkim-tools_2.6.8-4_amd64 + opendnssec-dbg-mysql_1:1.3.9-5_amd64 + opendnssec-dbg-sqlite3_1:1.3.9-5_amd64 + opendnssec-enforcer-mysql_1:1.3.9-5_amd64 + opendnssec-enforcer-sqlite3_1:1.3.9-5_amd64 + opendnssec-signer_1:1.3.9-5_amd64 + openexr_1.6.1-6_amd64 + openexr-viewers_1.0.1-6_amd64 + openfetion_2.2.1-3.2_amd64 + openhpi-clients_2.14.1-1.2_amd64 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_amd64 + openhpi-plugin-ipmi_2.14.1-1.2_amd64 + openhpi-plugin-ipmidirect_2.14.1-1.2_amd64 + openhpi-plugin-oa-soap_2.14.1-1.2_amd64 + openhpi-plugin-snmp-bc_2.14.1-1.2_amd64 + openhpi-plugin-sysfs_2.14.1-1.2_amd64 + openhpi-plugin-watchdog_2.14.1-1.2_amd64 + openhpid_2.14.1-1.2_amd64 + openimageio-tools_1.0.5+dfsg0-1_amd64 + openipmi_2.0.16-1.3_amd64 + openjade_1.4devel1-20.1+b1_amd64 + openjade1.3_1.3.2-11.1+b1_amd64 + openjdk-6-dbg_6b27-1.12.5-1_amd64 + openjdk-6-demo_6b27-1.12.5-1_amd64 + openjdk-6-jdk_6b27-1.12.5-1_amd64 + openjdk-6-jre_6b27-1.12.5-1_amd64 + openjdk-6-jre-headless_6b27-1.12.5-1_amd64 + openjdk-6-jre-zero_6b27-1.12.5-1_amd64 + openjdk-7-dbg_7u3-2.1.7-1_amd64 + openjdk-7-demo_7u3-2.1.7-1_amd64 + openjdk-7-jdk_7u3-2.1.7-1_amd64 + openjdk-7-jre_7u3-2.1.7-1_amd64 + openjdk-7-jre-headless_7u3-2.1.7-1_amd64 + openjdk-7-jre-zero_7u3-2.1.7-1_amd64 + openjpeg-tools_1.3+dfsg-4.7_amd64 + openload_0.1.2-2_amd64 + openmeeg-tools_2.0.0.dfsg-5_amd64 + openmpi-bin_1.4.5-1_amd64 + openmpi-checkpoint_1.4.5-1_amd64 + openmpipython_2.8-4_amd64 + openmsx_0.8.2-2.1_amd64 + openmsx-catapult_0.8.2-1_amd64 + openmsx-debugger_0.0.0.svn20110306-3_amd64 + openmx_3.5-1_amd64 + opennebula_3.4.1-3.1_amd64 + openntpd_20080406p-4_amd64 + openobex-apps_1.5-2_amd64 + openocd_0.5.0-1_amd64 + openpref_0.1.3-1_amd64 + opensaml2-tools_2.4.3-4_amd64 + opensc_0.12.2-3_amd64 + openscad_2011.12-3_amd64 + openscad-dbg_2011.12-3_amd64 + openscad-testing_2011.12-3_amd64 + openscenegraph_3.0.1-4_amd64 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_amd64 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_amd64 + openslide-tools_3.2.6-2_amd64 + opensm_3.2.6-20090317-2.1_amd64 + opensm-doc_3.2.6-20090317-2.1_amd64 + opensp_1.5.2-10_amd64 + openssh-client_1:6.0p1-4_amd64 + openssh-server_1:6.0p1-4_amd64 + openssl_1.0.1e-2+deb7u4_amd64 + openssn_1.3-1_amd64 + openssn-dbg_1.3-1_amd64 + openswan_1:2.6.37-3_amd64 + openswan-dbg_1:2.6.37-3_amd64 + openswan-modules-dkms_1:2.6.37-3_amd64 + openttd_1.2.1-3_amd64 + openttd-dbg_1.2.1-3_amd64 + openturns-examples_1.0-4_amd64 + openuniverse_1.0beta3.1+dfsg-3_amd64 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_amd64 + openvpn_2.2.1-8+deb7u2_amd64 + openvpn-auth-ldap_2.0.3-5.1_amd64 + openvpn-auth-radius_2.1-4_amd64 + openvpn-auth-radius-dbg_2.1-4_amd64 + openvrml-lookat_0.18.9-5+deb7u1_amd64 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_amd64 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_amd64 + openwalnut-modules_1.2.5-1.1+b1_amd64 + openwalnut-qt4_1.2.5-1.1+b1_amd64 + openwince-include_0.3.2-3.1_amd64 + openwince-jtag_0.5.1-6_amd64 + openyahtzee_1.9.1-1+b1_amd64 + ophcrack_3.4.0-2_amd64 + ophcrack-cli_3.4.0-2_amd64 + oping_1.6.2-1_amd64 + opj2dat_20080225-2.1_amd64 + opt_3.19-1.1_amd64 + optgeo_2.11-3_amd64 + optipng_0.6.4-1_amd64 + opus-tools_0.1.2-1_amd64 + opus-tools-dbg_0.1.2-1_amd64 + orage_4.8.3-2_amd64 + orange_0.4-2_amd64 + orbit2_1:2.14.19-0.1_amd64 + orbit2-nameserver_1:2.14.19-0.1_amd64 + orbital-eunuchs-sniper_1.30+svn20070601-2_amd64 + oregano_0.70-1_amd64 + original-awk_2011-08-10-2_amd64 + oroborus_2.0.20_amd64 + orpie_1.5.1-10_amd64 + orville-write_2.55-2.3_amd64 + os-prober_1.58_amd64 + osdclock_0.5-23_amd64 + osdsh_0.7.0-10_amd64 + osgearth_2.0+dfsg-4+b3_amd64 + osm2pgsql_0.80.0+r27899-4_amd64 + osmjs_0.0~20111213-g7f3500a-3+b2_amd64 + osmo_0.2.10+svn922-2+b1_amd64 + osmo-dbg_0.2.10+svn922-2+b1_amd64 + osmpbf-bin_1.2.1-3_amd64 + osptoolkit_3.4.2-1+b1_amd64 + oss-compat_2_amd64 + oss-preserve_1.1-6_amd64 + oss4-base_4.2-build2006-2+deb7u1_amd64 + oss4-dkms_4.2-build2006-2+deb7u1_amd64 + oss4-gtk_4.2-build2006-2+deb7u1_amd64 + oss4-source_4.2-build2006-2+deb7u1_amd64 + ossim-core_1.7.21-4_amd64 + otags_3.12.5-1_amd64 + otcl-dbg_1.14+dfsg-2_amd64 + otcl-shells_1.14+dfsg-2_amd64 + otf-trace_1.10.2+dfsg-2_amd64 + otf2bdf_3.1-2_amd64 + otp_1:1.2.1-1_amd64 + otpw-bin_1.3-2_amd64 + otter_3.3f-1.1_amd64 + outguess_1:0.2-7_amd64 + overgod_1.0-1.1+b1_amd64 + ovito_0.9.5-2_amd64 + ow-shell_2.8p15-1_amd64 + owfs-dbg_2.8p15-1_amd64 + owfs-fuse_2.8p15-1_amd64 + owftpd_2.8p15-1_amd64 + owhttpd_2.8p15-1_amd64 + owl_2.2.2-1.1+b3_amd64 + owserver_2.8p15-1_amd64 + owx_0~20110415-3.1_amd64 + oxref_0.90.10-1_amd64 + p0f_2.0.8-2_amd64 + p11-kit_0.12-3_amd64 + p3scan_2:2.3.2-8_amd64 + p7zip_9.20.1~dfsg.1-4_amd64 + p7zip-full_9.20.1~dfsg.1-4_amd64 + p910nd_0.95-1_amd64 + pacemaker_1.1.7-1_amd64 + pacemaker-dev_1.1.7-1_amd64 + pachi_1:1.0-6_amd64 + packagekit_0.7.6-3_amd64 + packagekit-backend-aptcc_0.7.6-3_amd64 + packagekit-backend-smart_0.7.6-3_amd64 + packagekit-dbg_0.7.6-3_amd64 + packagekit-gtk3-module_0.7.6-3_amd64 + packagekit-tools_0.7.6-3_amd64 + packagesearch_2.7.3_amd64 + packeth_1.6.5-2_amd64 + packit_1.0-2_amd64 + packup_0.6-1_amd64 + pacman_10-17_amd64 + pacman4console_1.2-2_amd64 + paco_2.0.9-2_amd64 + pads_1.2-11_amd64 + paje.app_1.98-1+b1_amd64 + pal_0.4.3-8_amd64 + palapeli_4:4.8.4-3_amd64 + palbart_2.4-7_amd64 + palp_1.1-1.2_amd64 + pam-pkcs11-dbg_0.6.8-1_amd64 + paman_0.9.4-1_amd64 + pamusb-common_0.5.0-4_amd64 + pan_0.139-2_amd64 + pandoc_1.9.4.2-2_amd64 + pango-graphite_0.9.3-0.2_amd64 + pango-graphite-dbg_0.9.3-0.2_amd64 + paperkey_1.2-1_amd64 + paprefs_0.9.10-1_amd64 + paps_0.6.8-6_amd64 + par_1.52-3_amd64 + par2_0.4-11_amd64 + paraview_3.14.1-6_amd64 + paraview-dev_3.14.1-6_amd64 + paraview-python_3.14.1-6_amd64 + parcellite_1.0.2~rc5-1_amd64 + parchive_1.1-4_amd64 + pari-gp_2.5.1-2_amd64 + pari-gp2c_0.0.7pl3-1_amd64 + paris-traceroute_0.92-dev-2_amd64 + parley_4:4.8.4-1_amd64 + parole_0.2.0.6-1+b1_amd64 + parole-dev_0.2.0.6-1+b1_amd64 + parprouted_0.70-1_amd64 + parrot_4.0.0-3_amd64 + parrot-devel_4.0.0-3_amd64 + parrot-minimal_4.0.0-3_amd64 + parsec47_0.2.dfsg1-4_amd64 + parser3-cgi_3.4.2-2_amd64 + parser3-common_3.4.2-2_amd64 + parser3-dev_3.4.2-2_amd64 + parser3-mysql_10.4-1_amd64 + partclone_0.2.48-1_amd64 + parted_2.3-12_amd64 + partimage_0.6.8-2.2_amd64 + partimage-server_0.6.8-2.2_amd64 + partitionmanager_1.0.2-1_amd64 + pasco_1.0+20040505-5+b1_amd64 + pasmo_0.5.3-6_amd64 + passage_4+dfsg1-1_amd64 + passepartout_0.7.1-1_amd64 + passwd_1:4.1.5.1-1_amd64 + passwdqc_1.2.0-1_amd64 + passwordmaker-cli_1.5+dfsg-3_amd64 + patch_2.6.1-3_amd64 + patchage_0.5.0+dfsg0-0.1+b1_amd64 + patchutils_0.3.2-1.1_amd64 + pathfinder-utils_1.1.3-0.4+b1_amd64 + pathfinderd_1.1.3-0.4+b1_amd64 + pathogen_1.1.1-3_amd64 + paulstretch_2.2-2-2_amd64 + pavucontrol_1.0-1_amd64 + pavuk_0.9.35-2.3_amd64 + pavumeter_0.9.3-4_amd64 + paw_1:2.14.04.dfsg.2-8_amd64 + paw++_1:2.14.04.dfsg.2-8_amd64 + pawserv_20061220+dfsg3-2_amd64 + pax_1:20120606-2_amd64 + pax-utils_0.2.3-2_amd64 + paxctl_0.7-1_amd64 + pbs-drmaa-dev_1.0.10-3_amd64 + pbs-drmaa1_1.0.10-3_amd64 + pbuilder-uml_0.213_amd64 + pbzip2_1.1.8-1_amd64 + pcal_4.11.0-3_amd64 + pcaputils_0.8-1_amd64 + pcb-gtk_20110918-7_amd64 + pcb-lesstif_20110918-7_amd64 + pcb2gcode_1.1.4-git20110915-1+b1_amd64 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_amd64 + pccts_1.33MR33-6_amd64 + pcf2bdf_1.04-4_amd64 + pchar_1.5-1_amd64 + pciutils_1:3.1.9-6_amd64 + pclock_0.13.1-6_amd64 + pcmanfm_0.9.10-3_amd64 + pcmanfm-dbg_0.9.10-3_amd64 + pcmanx-gtk2_1.1-2_amd64 + pcmciautils_018-8_amd64 + pconf-detect_0.5-12_amd64 + pconsole_1.0-9_amd64 + pcregrep_1:8.30-5_amd64 + pcsc-tools_1.4.20-1_amd64 + pcscada-dbg_0.7.1-4_amd64 + pcscd_1.8.4-1+deb7u1_amd64 + pcsxr_1.9.92-4_amd64 + pcsxr-dbg_1.9.92-4_amd64 + pd-arraysize_0.1-1_amd64 + pd-aubio_0.3.2-4.2+b1_amd64 + pd-bassemu_0.3-3_amd64 + pd-beatpipe_0.1-3_amd64 + pd-boids_1.1.1-2_amd64 + pd-bsaylor_0.1-2_amd64 + pd-comport_0.1-3_amd64 + pd-csound_1:5.17.11~dfsg-3_amd64 + pd-cxc_0.5.1-2_amd64 + pd-cyclone_0.1~alpha55-6_amd64 + pd-earplug_0.2-3_amd64 + pd-ekext_0.1.1-2_amd64 + pd-ext13_0.17.1-2_amd64 + pd-flite_0.02.3-1_amd64 + pd-freeverb_1.2-3_amd64 + pd-ggee_0.26-3_amd64 + pd-hcs_0.1-2_amd64 + pd-hid_0.7-1_amd64 + pd-iemambi_0.1-2_amd64 + pd-iemmatrix_0.2-1_amd64 + pd-iemnet_0.1-3_amd64 + pd-libdir_1.9-3_amd64 + pd-markex_0.85-2_amd64 + pd-maxlib_1.5.4-1_amd64 + pd-mjlib_0.1.1-3_amd64 + pd-moonlib_0.2-2_amd64 + pd-motex_1.1.4-3_amd64 + pd-osc_0.1-2_amd64 + pd-pddp_0.2-1_amd64 + pd-pdogg_0.25.1-1_amd64 + pd-pdp_1:0.12.5-2_amd64 + pd-plugin_0.2.1-3_amd64 + pd-pmpd_0.9-4_amd64 + pd-readanysf_0.42-1_amd64 + pd-sigpack_0.0.4.2-2_amd64 + pd-smlib_0.12.1-2_amd64 + pd-vbap_1.0.3.2-1_amd64 + pd-wiimote_0.3.2-2_amd64 + pd-windowing_0.1-2_amd64 + pd-zexy_2.2.5-1_amd64 + pdb2pqr_1.8-1_amd64 + pdf-presenter-console_3.1-1_amd64 + pdf2djvu_0.7.12-2+b1_amd64 + pdf2svg_0.2.1-2+b3_amd64 + pdfchain_1:0.3.3-2_amd64 + pdfcrack_0.11-1_amd64 + pdfcube_0.0.4-2+b1_amd64 + pdfcube-dbg_0.0.4-2+b1_amd64 + pdfgrep_1.3.0-1_amd64 + pdfresurrect_0.11-1_amd64 + pdftk_1.44-7_amd64 + pdftoipe_20110916-3+b1_amd64 + pdl_1:2.4.11-4_amd64 + pdlzip_1.3-2_amd64 + pdlzip-dbg_1.3-2_amd64 + pdmenu_1.3.2_amd64 + pdns-backend-geo_3.1-4.1_amd64 + pdns-backend-ldap_3.1-4.1_amd64 + pdns-backend-lua_3.1-4.1_amd64 + pdns-backend-mysql_3.1-4.1_amd64 + pdns-backend-pgsql_3.1-4.1_amd64 + pdns-backend-pipe_3.1-4.1_amd64 + pdns-backend-sqlite_3.1-4.1_amd64 + pdns-backend-sqlite3_3.1-4.1_amd64 + pdns-recursor_3.3-3_amd64 + pdns-recursor-dbg_3.3-3_amd64 + pdns-server_3.1-4.1_amd64 + pdns-server-dbg_3.1-4.1_amd64 + pdnsd_1.2.8-par-3_amd64 + pdsh_2.27-2_amd64 + pearpc_0.4.0-5_amd64 + pecomato_0.0.15-4_amd64 + peg-e_1.1.0-1_amd64 + peg-solitaire_1.2-1_amd64 + pegasus-wms_4.0.1+dfsg-8_amd64 + pegsolitaire_0.0.4-1_amd64 + pekwm_0.1.14-2_amd64 + pen_0.18.0-1_amd64 + penguin-command_1.6.11-1_amd64 + pennmush_1.8.2p8-1.1+b1_amd64 + pennmush-mysql_1.8.2p8-1.1+b1_amd64 + pente_2.2.5-7_amd64 + pentobi_1.1-1+b1_amd64 + perceptualdiff_1.1.1-1_amd64 + perdition_1.19~rc5-1+b1_amd64 + perdition-ldap_1.19~rc5-1+b1_amd64 + perdition-mysql_1.19~rc5-1+b1_amd64 + perdition-odbc_1.19~rc5-1+b1_amd64 + perdition-postgresql_1.19~rc5-1+b1_amd64 + perforate_1.2-5_amd64 + performous_0.6.1-6_amd64 + performous-dbg_0.6.1-6_amd64 + performous-tools_0.6.1-6_amd64 + perftest_1.2-OFED-1.4.2-2_amd64 + perl_5.14.2-21+deb7u1_amd64 + perl-base_5.14.2-21+deb7u1_amd64 + perl-byacc_2.0-7_amd64 + perl-debug_5.14.2-21+deb7u1_amd64 + perl-tk_1:804.030-1_amd64 + perlmagick_8:6.7.7.10-5+deb7u2_amd64 + petitboot_12.03.29.20.47-g45e2534-2_amd64 + petitboot-twin_12.03.29.20.47-g45e2534-2_amd64 + petri-foo_0.1.5-1_amd64 + petri-foo-dbg_0.1.5-1_amd64 + petris_1.0.1-8_amd64 + pev_0.40-1_amd64 + pexec_1.0~rc8-2_amd64 + pfb2t1c2pfb_0.3-9_amd64 + pfqueue_0.5.6-8_amd64 + pfqueue-dbg_0.5.6-8_amd64 + pfsglview_1.8.5-1_amd64 + pfstmo_1.4-1_amd64 + pfstools_1.8.5-1_amd64 + pfstools-dbg_1.8.5-1_amd64 + pfsview_1.8.5-1_amd64 + pgadmin3_1.14.2-2_amd64 + pgadmin3-dbg_1.14.2-2_amd64 + pgagent_3.2.1-1_amd64 + pgapack_1.1.1-3_amd64 + pgbouncer_1.5.2-4_amd64 + pgdbf_0.5.5-1_amd64 + pgn-extract_16.7-2_amd64 + pgn2web_0.4-1_amd64 + pgpdump_0.27-1_amd64 + pgpgpg_0.13-9_amd64 + pgpool2_3.1.3-5_amd64 + phalanx_22+d051004-13.1_amd64 + phasex_0.12.0+m1-6_amd64 + phasex-dbg_0.12.0+m1-6_amd64 + phlipple_0.8.2-1+b1_amd64 + phlipple-dbg_0.8.2-1+b1_amd64 + phnxdeco_0.33-3_amd64 + phonefsod_0.1+git20110827-3_amd64 + phoneui-apps_0.1+git20111214-2_amd64 + phoneuid_0.1+git20110506-2+b1_amd64 + phonon_4:4.6.0.0-3_amd64 + phonon-backend-gstreamer_4:4.6.0.0-2_amd64 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_amd64 + phonon-backend-null_4:4.6.0.0-3_amd64 + phonon-backend-vlc_0.6.0-1_amd64 + phonon-backend-vlc-dbg_0.6.0-1_amd64 + phonon-dbg_4:4.6.0.0-3_amd64 + photopc_3.05-6_amd64 + photoprint_0.4.2~pre2-2+b1_amd64 + php-apc_3.1.13-1_amd64 + php-imlib_0.7-4.1_amd64 + php-wikidiff2_0.0.1+svn109581-1_amd64 + php-zeroc-ice_3.4.2-8.2_amd64 + php5-adodb_5.04-7+b1_amd64 + php5-cgi_5.4.4-14+deb7u7_amd64 + php5-cli_5.4.4-14+deb7u7_amd64 + php5-common_5.4.4-14+deb7u7_amd64 + php5-curl_5.4.4-14+deb7u7_amd64 + php5-dbg_5.4.4-14+deb7u7_amd64 + php5-dev_5.4.4-14+deb7u7_amd64 + php5-enchant_5.4.4-14+deb7u7_amd64 + php5-exactimage_0.8.5-5+deb7u3_amd64 + php5-ffmpeg_0.6.0-2.2_amd64 + php5-fpm_5.4.4-14+deb7u7_amd64 + php5-gd_5.4.4-14+deb7u7_amd64 + php5-gdcm_2.2.0-14.1_amd64 + php5-geoip_1.0.7-8_amd64 + php5-gmp_5.4.4-14+deb7u7_amd64 + php5-imagick_3.1.0~rc1-1+b2_amd64 + php5-imap_5.4.4-14+deb7u7_amd64 + php5-interbase_5.4.4-14+deb7u7_amd64 + php5-intl_5.4.4-14+deb7u7_amd64 + php5-lasso_2.3.6-2_amd64 + php5-ldap_5.4.4-14+deb7u7_amd64 + php5-librdf_1.0.14.1-1_amd64 + php5-mapscript_6.0.1-3.2+deb7u2_amd64 + php5-mcrypt_5.4.4-14+deb7u7_amd64 + php5-memcache_3.0.6-6_amd64 + php5-memcached_2.0.1-6_amd64 + php5-ming_1:0.4.4-1.1_amd64 + php5-mysql_5.4.4-14+deb7u7_amd64 + php5-mysqlnd_5.4.4-14+deb7u7_amd64 + php5-odbc_5.4.4-14+deb7u7_amd64 + php5-pgsql_5.4.4-14+deb7u7_amd64 + php5-ps_1.3.7-1_amd64 + php5-pspell_5.4.4-14+deb7u7_amd64 + php5-radius_1.2.5-2.3+deb7u1_amd64 + php5-recode_5.4.4-14+deb7u7_amd64 + php5-remctl_3.2-4_amd64 + php5-rrd_1.1.0-1_amd64 + php5-sasl_0.1.0-1.2+b1_amd64 + php5-snmp_5.4.4-14+deb7u7_amd64 + php5-sqlite_5.4.4-14+deb7u7_amd64 + php5-svn_1.0.1-1.2_amd64 + php5-sybase_5.4.4-14+deb7u7_amd64 + php5-tidy_5.4.4-14+deb7u7_amd64 + php5-tokyo-tyrant_0.6.0-2+b1_amd64 + php5-vtkgdcm_2.2.0-14.1_amd64 + php5-xcache_2.0.0-4_amd64 + php5-xdebug_2.2.1-2_amd64 + php5-xmlrpc_5.4.4-14+deb7u7_amd64 + php5-xsl_5.4.4-14+deb7u7_amd64 + phyml_2:20110919-1_amd64 + pi_1.3.2-1.2_amd64 + pia_3.102-3_amd64 + pianobar_2012.05.06-2_amd64 + pianobooster_0.6.4-3.1_amd64 + pianobooster-dbg_0.6.4-3.1_amd64 + picard_1.0-1_amd64 + picocom_1.7-1_amd64 + picolisp_3.1.0.7-1_amd64 + picosat_936-4_amd64 + picprog_1.9.1-2_amd64 + picviz_0.5-1+b1_amd64 + pida_0.5.1-6_amd64 + pidentd_3.0.19.ds1-7_amd64 + pidgin_2.10.6-3_amd64 + pidgin-audacious_2.0.0-3_amd64 + pidgin-awayonlock_0.5.2-1_amd64 + pidgin-blinklight_0.11.1-1_amd64 + pidgin-dbg_2.10.6-3_amd64 + pidgin-encryption_3.1-1_amd64 + pidgin-extprefs_0.7-2_amd64 + pidgin-festival_2.4-2_amd64 + pidgin-gmchess_0.02-1_amd64 + pidgin-guifications_2.16-2_amd64 + pidgin-hotkeys_0.2.4-1.2_amd64 + pidgin-latex_1.4.4-2_amd64 + pidgin-librvp_0.9.7-2_amd64 + pidgin-microblog_0.3.0-3_amd64 + pidgin-microblog-dbg_0.3.0-3_amd64 + pidgin-mpris_0.2.3-2_amd64 + pidgin-mra_20100304-1_amd64 + pidgin-mra-dbg_20100304-1_amd64 + pidgin-musictracker_0.4.22-2_amd64 + pidgin-nateon_0.0.0.svn147-1_amd64 + pidgin-nateon-dbg_0.0.0.svn147-1_amd64 + pidgin-openfetion_0.3-1_amd64 + pidgin-otr_3.2.1-3+deb7u1_amd64 + pidgin-plugin-pack_2.6.3-2_amd64 + pidgin-privacy-please_0.7.1-1_amd64 + pidgin-sipe_1.13.1-2_amd64 + pidgin-twitter_0.9.2.1-3_amd64 + pigz_2.2.4-3_amd64 + pilot_2.02+dfsg-2_amd64 + pilot-link_0.12.5-5_amd64 + pimd_2.1.8-2_amd64 + pinball_0.3.1-13.1_amd64 + pinball-dev_0.3.1-13.1_amd64 + pinentry-curses_0.8.1-1_amd64 + pinentry-gtk2_0.8.1-1_amd64 + pinentry-qt4_0.8.1-1_amd64 + pinfo_0.6.9-5.1_amd64 + pingus_0.7.6-1.1_amd64 + pinot_1.0-1_amd64 + pinpoint_1:0.1.5~20120318-1+b1_amd64 + pioneers_14.1-1_amd64 + pioneers-console_14.1-1_amd64 + pioneers-meta-server_14.1-1_amd64 + pipebench_0.40-3+b1_amd64 + pipemeter_1.1.3-1_amd64 + pipenightdreams_0.10.0-13_amd64 + pipewalker_0.9.4-1_amd64 + pixelize_1.0.0-1_amd64 + pixmap_2.6pl4-18_amd64 + pkcs11-data_0.7.4-1_amd64 + pkcs11-dump_0.3.4-1_amd64 + pkg-config_0.26-1_amd64 + pkglab_1.4.2-13+b1_amd64 + pktstat_1.8.5-3_amd64 + plan_1.10.1-2_amd64 + planner_0.14.6-1_amd64 + planner-dev_0.14.6-1_amd64 + plasma-containments-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-addons_4:4.8.4-1+b2_amd64 + plasma-dataengines-workspace_4:4.8.4-6_amd64 + plasma-dataengines-yawp_0.4.2-1_amd64 + plasma-desktop_4:4.8.4-6_amd64 + plasma-netbook_4:4.8.4-6_amd64 + plasma-runner-installer_1.3.0-2_amd64 + plasma-runners-addons_4:4.8.4-1+b2_amd64 + plasma-scriptengine-javascript_4:4.8.4-2_amd64 + plasma-scriptengine-superkaramba_4:4.8.4-3_amd64 + plasma-scriptengine-webkit_4:4.8.4-6_amd64 + plasma-wallpapers-addons_4:4.8.4-1+b2_amd64 + plasma-widget-adjustableclock_2.6.1-1+b2_amd64 + plasma-widget-amule_2.3.1-9_amd64 + plasma-widget-cwp_1.6.11-1_amd64 + plasma-widget-fastuserswitch_0.2.1-1+b1_amd64 + plasma-widget-folderview_4:4.8.4-2_amd64 + plasma-widget-kimpanel_4:4.8.4-1+b2_amd64 + plasma-widget-ktorrent_4.2.1-1_amd64 + plasma-widget-lancelot_4:4.8.4-1+b2_amd64 + plasma-widget-menubar_0.1.17-1_amd64 + plasma-widget-message-indicator_0.5.8-3_amd64 + plasma-widget-networkmanagement_0.9.0.3-1_amd64 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_amd64 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_amd64 + plasma-widget-telepathy-chat_0.4.0-1_amd64 + plasma-widget-telepathy-presence_0.4.0-1_amd64 + plasma-widget-telepathy-presence-dbg_0.4.0-1_amd64 + plasma-widget-translatoid_1.30+svn1226145-1_amd64 + plasma-widget-uim_1:1.8.1-4_amd64 + plasma-widget-yawp_0.4.2-1_amd64 + plasma-widget-yawp-dbg_0.4.2-1_amd64 + plasma-widgets-addons_4:4.8.4-1+b2_amd64 + plasma-widgets-workspace_4:4.8.4-6_amd64 + plastimatch_1.5.11+dfsg0-1_amd64 + playmidi_2.4debian-9.2_amd64 + plee-the-bear_0.6.0-1+b1_amd64 + plink_1.07-3_amd64 + plopfolio.app_0.1.0-6+b3_amd64 + plotdrop_0.5.2-3_amd64 + ploticus_2.41-5_amd64 + plotmm-examples_0.1.2-2_amd64 + plotutils_2.6-3_amd64 + plplot-tcl_5.9.9-5_amd64 + plplot-tcl-dev_5.9.9-5_amd64 + plplot11-driver-cairo_5.9.9-5_amd64 + plplot11-driver-gd_5.9.9-5_amd64 + plplot11-driver-qt_5.9.9-5_amd64 + plplot11-driver-wxwidgets_5.9.9-5_amd64 + plplot11-driver-xwin_5.9.9-5_amd64 + plptools_1.0.9-2.4_amd64 + plptools-dev_1.0.9-2.4_amd64 + plucker_1.8-34_amd64 + plymouth_0.8.5.1-5_amd64 + plymouth-dev_0.8.5.1-5_amd64 + plymouth-drm_0.8.5.1-5_amd64 + plymouth-x11_0.8.5.1-5_amd64 + plzip_0.9-2_amd64 + plzip-dbg_0.9-2_amd64 + pmacct_0.14.0-1.1_amd64 + pmake_1.111-3.2_amd64 + pmccabe_2.6_amd64 + pmidi_1.6.0-5_amd64 + pmk_0.10.4-1_amd64 + pmount_0.9.23-2_amd64 + pms_0.41-1_amd64 + pmw_1:4.24-1_amd64 + pmx_2.6.18-2_amd64 + png23d_1.10-1_amd64 + png2html_1.1-5_amd64 + pngcheck_2.3.0-5_amd64 + pngcrush_1.7.9-1_amd64 + pngmeta_1.11-6_amd64 + pngnq_1.0-2_amd64 + pngphoon_1.1-2_amd64 + pngquant_1.0-4.1_amd64 + pngtools_0.4-1_amd64 + pnp4nagios-bin_0.6.16-2_amd64 + pnscan_1.11-6_amd64 + poa_2.0+20060928-3_amd64 + poc-streamer_0.4.2-3_amd64 + poe.app_0.5.1-5+b3_amd64 + poedit_1.4.6.1-5.1_amd64 + poedit-dbg_1.4.6.1-5.1_amd64 + pokerth_0.9.5-1_amd64 + pokerth-server_0.9.5-1_amd64 + policycoreutils_2.1.10-9_amd64 + policykit-1_0.105-3_amd64 + policykit-1-gnome_0.105-2_amd64 + polipo_1.0.4.1-1.2_amd64 + polkit-kde-1_0.99.0-3_amd64 + polyglot_1.4.67b-1_amd64 + polygraph_4.3.2-1.1_amd64 + polylib-utils_5.22.5-3+dfsg_amd64 + polyml_5.2.1-1.1_amd64 + polyorb-servers_2.8~20110207-5.1_amd64 + pommed_1.39~dfsg-2+b1_amd64 + pong2_0.1.3-1+b1_amd64 + popa3d_1.0.2-7_amd64 + poppassd_1.8.5-4_amd64 + poppler-dbg_0.18.4-6_amd64 + poppler-utils_0.18.4-6_amd64 + populations_1.2.33+svn0120106-2.1_amd64 + pork_0.99.8.1-2.1_amd64 + portabase_2.0+git20110117-1_amd64 + portaudio19-dev_19+svn20111121-1_amd64 + portreserve_0.0.4-1_amd64 + portsentry_1.2-13_amd64 + portslave_2010.04.19.1_amd64 + posh_0.10.2_amd64 + posixtestsuite_1.5.2-4_amd64 + postal_0.73_amd64 + poster_1:20050907-1_amd64 + posterazor_1.5.1-2_amd64 + postfix_2.9.6-2_amd64 + postfix-cdb_2.9.6-2_amd64 + postfix-gld_1.7-3+b1_amd64 + postfix-ldap_2.9.6-2_amd64 + postfix-mysql_2.9.6-2_amd64 + postfix-pcre_2.9.6-2_amd64 + postfix-pgsql_2.9.6-2_amd64 + postgis_1.5.3-2_amd64 + postgresql-9.1_9.1.11-0wheezy1_amd64 + postgresql-9.1-dbg_9.1.11-0wheezy1_amd64 + postgresql-9.1-debversion_1.0.6-1+b1_amd64 + postgresql-9.1-ip4r_1.05-0.1_amd64 + postgresql-9.1-orafce_3.0.4-1_amd64 + postgresql-9.1-pgfincore_1.1-1_amd64 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_amd64 + postgresql-9.1-pgmp_1.0.0-4_amd64 + postgresql-9.1-pgpool2_3.1.3-5_amd64 + postgresql-9.1-pljava-gcj_1.4.3-2_amd64 + postgresql-9.1-pllua_1:0.3.2-4_amd64 + postgresql-9.1-plproxy_2.4-1_amd64 + postgresql-9.1-plr_1:8.3.0.13-1_amd64 + postgresql-9.1-plsh_1.3-5_amd64 + postgresql-9.1-postgis_1.5.3-2_amd64 + postgresql-9.1-prefix_1.1.1-1_amd64 + postgresql-9.1-preprepare_0.5-1_amd64 + postgresql-client-9.1_9.1.11-0wheezy1_amd64 + postgresql-contrib-9.1_9.1.11-0wheezy1_amd64 + postgresql-filedump_9.1.0-1_amd64 + postgresql-plperl-8.4_8.4.19-0wheezy1_amd64 + postgresql-plperl-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython-9.1_9.1.11-0wheezy1_amd64 + postgresql-plpython3-9.1_9.1.11-0wheezy1_amd64 + postgresql-pltcl-9.1_9.1.11-0wheezy1_amd64 + postgresql-server-dev-9.1_9.1.11-0wheezy1_amd64 + postmark_1.51-7_amd64 + postpone_0.2_amd64 + potool_0.12-1_amd64 + potrace_1.10-1_amd64 + pound_2.6-2_amd64 + powerman_2.3.5-1_amd64 + powermanga_0.90-dfsg-2_amd64 + powermgmt-base_1.31_amd64 + powertop_2.0-0.3_amd64 + powstatd_1.5.1-9.1_amd64 + poxml_4:4.8.4+dfsg-1_amd64 + pp-popularity-contest_1.0.5-1_amd64 + pp-popularity-contest-dbg_1.0.5-1_amd64 + ppdfilt_2:0.10-7.1_amd64 + pperl_0.25-6+b1_amd64 + ppl-dev_0.11.2-8_amd64 + ppmd_10.1-5_amd64 + ppp_2.4.5-5.1+b1_amd64 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_amd64 + pppoe_3.8-3_amd64 + pps-tools_0.20120406+g0deb9c7e-2_amd64 + ppsh_1.1.1-4+b1_amd64 + ppthtml_0.5.1-6_amd64 + pptp-linux_1.7.2-7_amd64 + pptpd_1.3.4-5.2_amd64 + pqiv_0.12-1_amd64 + praat_5.3.16-1_amd64 + prads_0.3.0-1_amd64 + prayer_1.3.4-dfsg1-1_amd64 + prayer-accountd_1.3.4-dfsg1-1_amd64 + prayer-templates-dev_1.3.4-dfsg1-1_amd64 + prboom_2:2.5.0+dfsg1-6_amd64 + predict_2.2.3-3.1_amd64 + predict-gsat_2.2.3-3.1_amd64 + prelink_0.0.20090925-6_amd64 + preload_0.6.4-2_amd64 + prelude-lml_1.0.0-4_amd64 + prelude-manager_1.0.1-4_amd64 + premake_3.7-1_amd64 + prerex_6.4.0-3_amd64 + presage_0.8.8-1_amd64 + presage-dbg_0.8.8-1_amd64 + pretzel_2.0n-2-0.3_amd64 + preview.app_0.8.5-9_amd64 + price.app_1.1.0-1_amd64 + primaxscan_0.93beta3-10+b1_amd64 + primer3_2.2.3-1_amd64 + primrose_6+dfsg1-2_amd64 + printer-driver-c2050_0.3b-4_amd64 + printer-driver-c2esp_24-2_amd64 + printer-driver-cjet_0.8.9-3_amd64 + printer-driver-escpr_1.1.1-2_amd64 + printer-driver-foo2zjs_20120510dfsg0-1_amd64 + printer-driver-gutenprint_5.2.9-1_amd64 + printer-driver-hpcups_3.12.6-3.1+deb7u1_amd64 + printer-driver-hpijs_3.12.6-3.1+deb7u1_amd64 + printer-driver-m2300w_0.51-7_amd64 + printer-driver-min12xxw_0.0.9-6_amd64 + printer-driver-pnm2ppa_1.13-4_amd64 + printer-driver-ptouch_1.3-4_amd64 + printer-driver-pxljr_1.3+repack0-2_amd64 + printer-driver-splix_2.0.0+svn306-2_amd64 + printfilters-ppd_2.13-11.1_amd64 + prips_0.9.9-1_amd64 + pristine-tar_1.25+deb7u1_amd64 + privbind_1.2-1.1_amd64 + privoxy_3.0.19-2_amd64 + probalign_1.4-2_amd64 + probcons_1.12-9_amd64 + probcons-extra_1.12-9_amd64 + procinfo_1:2.0.304-1_amd64 + procmail_3.22-20_amd64 + procmeter3_3.5d-1_amd64 + procps_1:3.3.3-3_amd64 + procserv_2.6.0-1_amd64 + proda_1.0-8_amd64 + profnet-bval_1.0.21-1+wheezy1_amd64 + profnet-chop_1.0.21-1+wheezy1_amd64 + profnet-con_1.0.21-1+wheezy1_amd64 + profnet-dbg_1.0.21-1+wheezy1_amd64 + profnet-isis_1.0.21-1+wheezy1_amd64 + profnet-md_1.0.21-1+wheezy1_amd64 + profnet-norsnet_1.0.21-1+wheezy1_amd64 + profnet-prof_1.0.21-1+wheezy1_amd64 + profnet-snapfun_1.0.21-1+wheezy1_amd64 + profphd-net_1.0.21-1+wheezy1_amd64 + profphd-utils_1.0.9-1_amd64 + proftmb_1.1.10-1_amd64 + proftpd-basic_1.3.4a-5+deb7u1_amd64 + proftpd-dev_1.3.4a-5+deb7u1_amd64 + proftpd-mod-autohost_0.4-1+b1_amd64 + proftpd-mod-case_0.7-1_amd64 + proftpd-mod-clamav_0.10-1+b1_amd64 + proftpd-mod-dnsbl_0.1.5-3+b2_amd64 + proftpd-mod-fsync_0.2-1+b1_amd64 + proftpd-mod-geoip_0.3-1+b1_amd64 + proftpd-mod-ldap_1.3.4a-5+deb7u1_amd64 + proftpd-mod-msg_0.4.1-1.1_amd64 + proftpd-mod-mysql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-odbc_1.3.4a-5+deb7u1_amd64 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_amd64 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_amd64 + proftpd-mod-tar_0.3.3-1+b1_amd64 + proftpd-mod-vroot_0.9.2-2+b2_amd64 + proj-bin_4.7.0-2_amd64 + proj-data_4.7.0-2_amd64 + projectcenter.app_0.6.0-2_amd64 + projectl_1.001.dfsg1-4_amd64 + projectm-dbg_2.1.0+dfsg-1_amd64 + projectm-jack_2.1.0+dfsg-1_amd64 + projectm-pulseaudio_2.1.0+dfsg-1_amd64 + promoe_0.1.1-3+b1_amd64 + prosody_0.8.2-4_amd64 + protobuf-c-compiler_0.14-1+b1_amd64 + protobuf-compiler_2.4.1-3_amd64 + protoize_1:4.4.7-2_amd64 + prover9_0.0.200902a-2.1_amd64 + proxsmtp_1.10-1_amd64 + proxycheck_0.49a-4_amd64 + proxytrack_3.46.1-1_amd64 + proxytunnel_1.9.0-5_amd64 + ps2eps_1.68-1_amd64 + psad_2.2-3.1_amd64 + pscan_1.2-9_amd64 + psensor_0.6.2.17-2+b1_amd64 + psensor-server_0.6.2.17-2+b1_amd64 + psi_0.14-3_amd64 + psi-plus_0.15.5338-1_amd64 + psi-plus-content-downloader_0.15.5338-1_amd64 + psi-plus-dbg_0.15.5338-1_amd64 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_amd64 + psi-plus-plugins_0.15.5338-1_amd64 + psi-plus-plugins-dbg_0.15.5338-1_amd64 + psi-plus-webkit_0.15.5338-1_amd64 + psi-plus-webkit-dbg_0.15.5338-1_amd64 + psi3_3.4.0-4_amd64 + psignifit_2.5.6-3_amd64 + pslib-dev_0.4.5-3_amd64 + pslib1_0.4.5-3_amd64 + pslib1-dbg_0.4.5-3_amd64 + pslist_1.3-2_amd64 + psmisc_22.19-1+deb7u1_amd64 + pspp_0.7.9+git20120620-1.1_amd64 + pspresent_1.3-4_amd64 + pst-utils_0.6.54-4.1_amd64 + pstack_1.3.1-1_amd64 + pstoedit_3.60-2+b1_amd64 + pstotext_1.9-6_amd64 + psutils_1.17.dfsg-1_amd64 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_amd64 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_amd64 + pterm_0.62-9+deb7u1_amd64 + pth-dbg_2.0.7-16_amd64 + ptop_3.6.2-5_amd64 + ptpd_2.1.0-debian1-2_amd64 + ptscotch_5.1.12b.dfsg-1.2_amd64 + ptscotch-dbg_5.1.12b.dfsg-1.2_amd64 + ptunnel_0.71-2_amd64 + publib-dev_0.40-1_amd64 + puf_1.0.0-7_amd64 + pulseaudio_2.0-6.1_amd64 + pulseaudio-dbg_2.0-6.1_amd64 + pulseaudio-esound-compat_2.0-6.1_amd64 + pulseaudio-esound-compat-dbg_2.0-6.1_amd64 + pulseaudio-module-bluetooth_2.0-6.1_amd64 + pulseaudio-module-bluetooth-dbg_2.0-6.1_amd64 + pulseaudio-module-gconf_2.0-6.1_amd64 + pulseaudio-module-gconf-dbg_2.0-6.1_amd64 + pulseaudio-module-jack_2.0-6.1_amd64 + pulseaudio-module-jack-dbg_2.0-6.1_amd64 + pulseaudio-module-lirc_2.0-6.1_amd64 + pulseaudio-module-lirc-dbg_2.0-6.1_amd64 + pulseaudio-module-raop_2.0-6.1_amd64 + pulseaudio-module-raop-dbg_2.0-6.1_amd64 + pulseaudio-module-x11_2.0-6.1_amd64 + pulseaudio-module-x11-dbg_2.0-6.1_amd64 + pulseaudio-module-zeroconf_2.0-6.1_amd64 + pulseaudio-module-zeroconf-dbg_2.0-6.1_amd64 + pulseaudio-utils_2.0-6.1_amd64 + pulseaudio-utils-dbg_2.0-6.1_amd64 + pump_0.8.24-7_amd64 + pure-ftpd_1.0.36-1.1_amd64 + pure-ftpd-ldap_1.0.36-1.1_amd64 + pure-ftpd-mysql_1.0.36-1.1_amd64 + pure-ftpd-postgresql_1.0.36-1.1_amd64 + puredata-core_0.43.2-5_amd64 + puredata-extra_0.43.2-5_amd64 + puredata-import_1.3-3_amd64 + puredata-utils_0.43.2-5_amd64 + purity_1-18_amd64 + purity-ng_0.2.0-2_amd64 + putty_0.62-9+deb7u1_amd64 + putty-tools_0.62-9+deb7u1_amd64 + pv_1.2.0-1_amd64 + pvm_3.4.5-12.5_amd64 + pvm-dev_3.4.5-12.5_amd64 + pvm-examples_3.4.5-12.5_amd64 + pvrg-jpeg_1.2.1+dfsg1-2_amd64 + pwauth_2.3.8-1_amd64 + pwgen_2.06-1+b2_amd64 + pwget_2010.1012+git5feaa59-1_amd64 + pxe_1.4.2-7_amd64 + pxe-kexec_0.2.4-3_amd64 + pxfw_0.7.1.002-5_amd64 + pxlib-dev_0.6.5-1_amd64 + pxlib1_0.6.5-1_amd64 + pxsl-tools_1.0-5_amd64 + pybik_0.5-1_amd64 + pyfai_0.3.5-1_amd64 + pyformex-lib_0.8.6-4_amd64 + pyg_0.9.7+b2_amd64 + pylucene_3.5.0-1.1_amd64 + pymca_4.6.0-2_amd64 + pymol_1.5.0.1-2_amd64 + pyqt4-dev-tools_4.9.3-4_amd64 + pyrit_0.4.0-2_amd64 + pyrite-publisher_2.1.1-7.1_amd64 + pyside-tools_0.2.13-3_amd64 + python-adns_1.2.1-5+b1_amd64 + python-alsaaudio_0.5+svn36-1+b2_amd64 + python-appindicator_0.4.92-2_amd64 + python-apsw_3.7.6.3-r1-1_amd64 + python-apsw-dbg_3.7.6.3-r1-1_amd64 + python-apt_0.8.8.2_amd64 + python-apt-dbg_0.8.8.2_amd64 + python-async_0.6.1-1_amd64 + python-at-spi_0.6.1-1.3+b2_amd64 + python-aubio_0.3.2-4.2+b1_amd64 + python-audit_1:1.7.18-1.1_amd64 + python-avahi_0.6.31-2_amd64 + python-avogadro_1.0.3-5_amd64 + python-ball_1.4.1+20111206-4_amd64 + python-ballview_1.4.1+20111206-4_amd64 + python-bibtex_1.2.5-1+b1_amd64 + python-biopython_1.59-1_amd64 + python-biosig_1.3.0-2_amd64 + python-bitarray_0.8.0-2_amd64 + python-blist_1.3.4-2_amd64 + python-bluez_0.18-2_amd64 + python-box2d_2.0.2+svn20100109.244-1+b1_amd64 + python-brian-lib_1.3.1-1+b1_amd64 + python-brlapi_4.4-10+deb7u1_amd64 + python-bsddb3_5.2.0-1+b1_amd64 + python-bsddb3-dbg_5.2.0-1+b1_amd64 + python-bson_2.2-4+deb7u1_amd64 + python-bson-ext_2.2-4+deb7u1_amd64 + python-buffy_0.13+b1_amd64 + python-bzrlib_2.6.0~bzr6526-1_amd64 + python-bzrlib-dbg_2.6.0~bzr6526-1_amd64 + python-cairo_1.8.8-1+b2_amd64 + python-cairo-dbg_1.8.8-1+b2_amd64 + python-cap-ng_0.6.6-2_amd64 + python-carquinyol-0.84_0.84.1-3+b1_amd64 + python-carquinyol-0.88_0.88.0-3+b1_amd64 + python-carquinyol-0.96_0.96.0-1_amd64 + python-cddb_1.4-5.1+b3_amd64 + python-chaco_4.1.0-1_amd64 + python-cheetah_2.4.4-3_amd64 + python-chemfp_1.0-1_amd64 + python-chm_0.8.4-1+b2_amd64 + python-cjson_1.0.5-4+b1_amd64 + python-cjson-dbg_1.0.5-4+b1_amd64 + python-ckanclient_0.9-1_amd64 + python-clearsilver_0.10.5-1.3_amd64 + python-cmor_2.8.0-2+b1_amd64 + python-cogent_1.5.1-2_amd64 + python-cogent-dbg_1.5.1-2_amd64 + python-comedilib_0.10.0-3_amd64 + python-coverage_3.4-3_amd64 + python-coverage-dbg_3.4-3_amd64 + python-cpl_0.3.6-1_amd64 + python-cqmf2_0.16-6+deb7u1_amd64 + python-cqpid_0.16-6+deb7u1_amd64 + python-cracklib_2.8.19-3_amd64 + python-crypto_2.6-4+deb7u3_amd64 + python-crypto-dbg_2.6-4+deb7u3_amd64 + python-csound_1:5.17.11~dfsg-3_amd64 + python-csoundac_1:5.17.11~dfsg-3_amd64 + python-cups_1.9.48-1.1_amd64 + python-cvxopt_1.1.4-1_amd64 + python-cwiid_0.6.00+svn201-3+b1_amd64 + python-daap_0.7.1-3+b2_amd64 + python-dballe_5.18-1_amd64 + python-dbus_1.1.1-1_amd64 + python-dbus-dbg_1.1.1-1_amd64 + python-demgengeo_0.99~bzr106-1+b1_amd64 + python-desktop-agnostic_0.3.92+dfsg-1_amd64 + python-dipy-lib_0.5.0-3_amd64 + python-django-classy-tags_0.3.4.1-1_amd64 + python-djvu_0.3.9-1_amd64 + python-djvu-dbg_0.3.9-1_amd64 + python-dmidecode_3.10.13-1.1_amd64 + python-dmidecode-dbg_3.10.13-1.1_amd64 + python-dolfin_1.0.0-7_amd64 + python-dpm_1.8.2-1+b2_amd64 + python-drizzle_1.0-3.1_amd64 + python-drizzle-dbg_1.0-3.1_amd64 + python-drslib_0.3.0a3-3_amd64 + python-dulwich_0.8.5-2_amd64 + python-dulwich-dbg_0.8.5-2_amd64 + python-dumbnet_1.12-3.1_amd64 + python-ecryptfs_99-1_amd64 + python-edbus_0.5.0+r49577-1+b2_amd64 + python-egenix-mx-base-dbg_3.2.1-1.1_amd64 + python-egenix-mxbeebase_3.2.1-1.1_amd64 + python-egenix-mxdatetime_3.2.1-1.1_amd64 + python-egenix-mxproxy_3.2.1-1.1_amd64 + python-egenix-mxqueue_3.2.1-1.1_amd64 + python-egenix-mxstack_3.2.1-1.1_amd64 + python-egenix-mxtexttools_3.2.1-1.1_amd64 + python-egenix-mxtools_3.2.1-1.1_amd64 + python-egenix-mxuid_3.2.1-1.1_amd64 + python-egenix-mxurl_3.2.1-1.1_amd64 + python-eggtrayicon_2.25.3-12_amd64 + python-elementtidy_1.0-7+b2_amd64 + python-enable_4.1.0-1_amd64 + python-enet_0.0~svn24-1_amd64 + python-epr_0.6.1-2_amd64 + python-epr-dbg_0.6.1-2_amd64 + python-espeak_0.4-1_amd64 + python-ethos_0.2.2-3_amd64 + python-ethtool_0.7-1.1_amd64 + python-evolution_2.32.0+dfsg-2+b1_amd64 + python-exactimage_0.8.5-5+deb7u3_amd64 + python-fabio_0.0.8-1_amd64 + python-factory-boy_1.1.3-1_amd64 + python-farstream_0.1.2-1_amd64 + python-faulthandler_2.0-1_amd64 + python-fdsend_0.2.1-2_amd64 + python-fftw_0.2.2-1_amd64 + python-fife_0.3.3+r3-3_amd64 + python-fiu_0.90-3_amd64 + python-fltk_1.3.0-1_amd64 + python-fltk-dbg_1.3.0-1_amd64 + python-fontforge_0.0.20120101+git-2_amd64 + python-formalchemy_1.4.2-1_amd64 + python-freenect_1:0.1.2+dfsg-6_amd64 + python-ftdi_0.20-1+b1_amd64 + python-fuse_2:0.2.1-7_amd64 + python-gamera_3.3.3-2_amd64 + python-gamera-dbg_3.3.3-2_amd64 + python-gamin_0.1.10-4.1_amd64 + python-gammu_1.31.90-1+b1_amd64 + python-gammu-dbg_1.31.90-1+b1_amd64 + python-gconf_2.28.1+dfsg-1_amd64 + python-gd_0.56+dfsg-3_amd64 + python-gd-dbg_0.56+dfsg-3_amd64 + python-gdal_1.9.0-3.1_amd64 + python-gdbm_2.7.3-1_amd64 + python-gdbm-dbg_2.7.3-1_amd64 + python-gdchart2_0.beta1-3.4+b4_amd64 + python-gdcm_2.2.0-14.1_amd64 + python-gearman.libgearman_0.13.2-2.1_amd64 + python-genshi_0.6-3_amd64 + python-geographiclib_1.21-1_amd64 + python-geohash_0.8.3-1+b1_amd64 + python-geohash-dbg_0.8.3-1+b1_amd64 + python-geoip_1.2.4-2+b2_amd64 + python-getfem++_4.1.1+dfsg1-11_amd64 + python-gevent_0.13.6-1+nmu3_amd64 + python-gevent-dbg_0.13.6-1+nmu3_amd64 + python-gi_3.2.2-2_amd64 + python-gi-cairo_3.2.2-2_amd64 + python-gi-dbg_3.2.2-2_amd64 + python-gitdb_0.5.4-1_amd64 + python-glade2_2.24.0-3+b1_amd64 + python-glpk_0.4.45-1+b1_amd64 + python-gmenu_3.0.1-4_amd64 + python-gmpy_1.15-1_amd64 + python-gnatpython_54-3_amd64 + python-gnome2_2.28.1+dfsg-1_amd64 + python-gnomedesktop_2.32.0+dfsg-2+b1_amd64 + python-gnomekeyring_2.32.0+dfsg-2+b1_amd64 + python-gnucash_1:2.4.10-6_amd64 + python-gnutls_1.2.4-1_amd64 + python-gobject-2_2.28.6-10_amd64 + python-gobject-2-dbg_2.28.6-10_amd64 + python-gpgme_0.2-3_amd64 + python-gpgme-dbg_0.2-3_amd64 + python-gpiv_2.0.0-4.1_amd64 + python-gpod_0.8.2-7_amd64 + python-gps_3.6-4+deb7u1_amd64 + python-greenlet_0.3.1-2.5_amd64 + python-greenlet-dbg_0.3.1-2.5_amd64 + python-greenlet-dev_0.3.1-2.5_amd64 + python-grib_1.9.3-1_amd64 + python-gst0.10_0.10.22-3_amd64 + python-gst0.10-dbg_0.10.22-3_amd64 + python-gst0.10-dev_0.10.22-3_amd64 + python-gst0.10-rtsp_0.10.8-3_amd64 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_amd64 + python-gtk-vnc_0.5.0-3.1_amd64 + python-gtk2_2.24.0-3+b1_amd64 + python-gtk2-dbg_2.24.0-3+b1_amd64 + python-gtkglext1_1.1.0-9.1_amd64 + python-gtksourceview2_2.10.1-2_amd64 + python-gtkspell_2.25.3-12_amd64 + python-gudev_147.2-3_amd64 + python-guestfs_1:1.18.1-1+deb7u3_amd64 + python-guiqwt_2.1.6-4_amd64 + python-gupnp-igd_0.2.1-2_amd64 + python-h5py_2.0.1-2+b1_amd64 + python-hdate_1.6-1_amd64 + python-hippocanvas_0.3.1-1.1_amd64 + python-hivex_1.3.6-2_amd64 + python-http-parser_0.7.5-1_amd64 + python-ieee1284_0.2.11-10_amd64 + python-igraph_0.5.4-2_amd64 + python-imaging_1.1.7-4_amd64 + python-imaging-dbg_1.1.7-4_amd64 + python-imaging-sane_1.1.7-4_amd64 + python-imaging-sane-dbg_1.1.7-4_amd64 + python-imaging-tk_1.1.7-4_amd64 + python-imaging-tk-dbg_1.1.7-4_amd64 + python-imdbpy_4.9-1_amd64 + python-imobiledevice_1.1.1-4_amd64 + python-imposm_2.4.0+dfsg-0.1_amd64 + python-imposm-parser_1.0.3-1_amd64 + python-indicate_0.6.92-1_amd64 + python-initgroups_2.13.0-1+b1_amd64 + python-inotifyx_0.2.0-1_amd64 + python-input-pad_1.0.1-2_amd64 + python-iptcdata_1.0.4-3_amd64 + python-jinja2_2.6-1_amd64 + python-jinja2-dbg_2.6-1_amd64 + python-jpype_0.5.4.2-2_amd64 + python-jswebkit_0.0.3-2_amd64 + python-kaa-base_0.6.0+svn4596-1_amd64 + python-kaa-imlib2_0.2.3+svn4596-2_amd64 + python-kaa-metadata_0.7.7+svn4596-4_amd64 + python-kde4_4:4.8.4-1_amd64 + python-kde4-dbg_4:4.8.4-1_amd64 + python-kerberos_1.1+svn4895-1+b2_amd64 + python-keybinder_0.2.2-4_amd64 + python-kinterbasdb_3.3.0-3_amd64 + python-kinterbasdb-dbg_3.3.0-3_amd64 + python-kjbuckets_1:1.0.0-15.1_amd64 + python-kml_1.3.0~r863-4.1_amd64 + python-krbv_1.0.90-1_amd64 + python-kwwidgets_1.0.0~cvs20100930-8_amd64 + python-lasso_2.3.6-2_amd64 + python-ldap_2.4.10-1_amd64 + python-ldap-dbg_2.4.10-1_amd64 + python-ldb_1:1.1.6-1_amd64 + python-ldb-dbg_1:1.1.6-1_amd64 + python-ldb-dev_1:1.1.6-1_amd64 + python-ldns_1.6.13-1_amd64 + python-leveldb_0~svn51-1_amd64 + python-levenshtein_0.10.1-2_amd64 + python-levenshtein-dbg_0.10.1-2_amd64 + python-lfc_1.8.2-1+b2_amd64 + python-lhapdf_5.8.7+repack-1_amd64 + python-libapparmor_2.7.103-4_amd64 + python-libavg_1.7.1-1_amd64 + python-libhamlib2_1.2.15.1-1_amd64 + python-libipa-hbac_1.8.4-2_amd64 + python-liblcms_1.19.dfsg-1.2_amd64 + python-liblicense_0.8.1-3_amd64 + python-liblinear_1.8+dfsg-1_amd64 + python-liblo_0.9.1-2+b1_amd64 + python-libmimic_1.0.4-2.1_amd64 + python-libpcap_0.6.2-0.2_amd64 + python-librdf_1.0.14.1-1_amd64 + python-libssh2_1.0.0-1.1_amd64 + python-libsvm_3.12-1_amd64 + python-libtorrent_0.15.10-1+b1_amd64 + python-libtorrent-dbg_0.15.10-1+b1_amd64 + python-libuser_1:0.56.9.dfsg.1-1.2_amd64 + python-libvirt_0.9.12.3-1_amd64 + python-libxml2_2.8.0+dfsg1-7+nmu2_amd64 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_amd64 + python-libxslt1_1.1.26-14.1_amd64 + python-libxslt1-dbg_1.1.26-14.1_amd64 + python-lightblue_0.3.2-1+b3_amd64 + python-lilv_0.14.2~dfsg0-4_amd64 + python-llfuse_0.37.1-2_amd64 + python-llfuse-dbg_0.37.1-2_amd64 + python-llvm_0.6+svn105-2_amd64 + python-llvm-dbg_0.6+svn105-2_amd64 + python-louis_2.4.1-1_amd64 + python-lucene_3.5.0-1.1_amd64 + python-lucene-dbg_3.5.0-1.1_amd64 + python-lunar_2.0.1-2.2_amd64 + python-lxml_2.3.2-1_amd64 + python-lxml-dbg_2.3.2-1_amd64 + python-lzma_0.5.3-2+b1_amd64 + python-lzma-dbg_0.5.3-2+b1_amd64 + python-lzo_1.08-1_amd64 + python-m2crypto_0.21.1-2_amd64 + python-magic_5.11-2_amd64 + python-magic-dbg_5.11-2_amd64 + python-magics++_2.14.11-4_amd64 + python-mailutils_1:2.99.97-3_amd64 + python-mapnik2_2.0.0+ds1-3+b4_amd64 + python-mapscript_6.0.1-3.2+deb7u2_amd64 + python-markupsafe_0.15-1_amd64 + python-markupsafe-dbg_0.15-1_amd64 + python-mathgl_1.11.2-17_amd64 + python-matplotlib_1.1.1~rc2-1_amd64 + python-matplotlib-dbg_1.1.1~rc2-1_amd64 + python-mecab_0.99.3-1_amd64 + python-meld3_0.6.5-3.1_amd64 + python-meliae_0.4.0-1_amd64 + python-meliae-dbg_0.4.0-1_amd64 + python-metaconfig_0.1.4a1-1_amd64 + python-mhash_1.4-1+b2_amd64 + python-mhash-dbg_1.4-1+b2_amd64 + python-mididings_0~20120419~ds0-1_amd64 + python-milter_0.9.5-3_amd64 + python-ming_1:0.4.4-1.1_amd64 + python-mlpy-lib_2.2.0~dfsg1-2+b1_amd64 + python-mlt5_0.8.0-4_amd64 + python-mmkeys_1.6.2.1-5_amd64 + python-mpi4py_1.3+hg20120611-3_amd64 + python-mpi4py-dbg_1.3+hg20120611-3_amd64 + python-mpikmeans_1.5-1+b1_amd64 + python-mpltoolkits.basemap_1.0.3+dfsg-2_amd64 + python-mtbl_0.1-2_amd64 + python-museek_1:0.2+svn20100315.r1208-2_amd64 + python-mvpa-lib_0.4.8-1_amd64 + python-mvpa2-lib_2.1.0-1_amd64 + python-mysqldb_1.2.3-2_amd64 + python-mysqldb-dbg_1.2.3-2_amd64 + python-nautilus_1.1-3_amd64 + python-ncap_1.9.2-1+b2_amd64 + python-necpp_1.5.0+cvs20101003-2.1_amd64 + python-netcdf_2.8-4_amd64 + python-netifaces_0.8-1_amd64 + python-netifaces-dbg_0.8-1_amd64 + python-neuroshare_0.8.5-1_amd64 + python-newt_0.52.14-11.1_amd64 + python-newt-dbg_0.52.14-11.1_amd64 + python-nflog_0.2-3_amd64 + python-nfqueue_0.4-3_amd64 + python-nids_0.6.1-1+b1_amd64 + python-nifti_0.20100607.1-4_amd64 + python-notify_0.1.1-3_amd64 + python-nss_0.12-1_amd64 + python-numexpr_2.0.1-3_amd64 + python-numexpr-dbg_2.0.1-3_amd64 + python-numpy_1:1.6.2-1.2_amd64 + python-numpy-dbg_1:1.6.2-1.2_amd64 + python-obexftp_0.23-1.1_amd64 + python-ogg_1.3+repack-5+b2_amd64 + python-ogg-dbg_1.3+repack-5+b2_amd64 + python-omniorb_3.6-1_amd64 + python-omniorb-dbg_3.6-1_amd64 + python-openbabel_2.3.1+dfsg-4_amd64 + python-opencv_2.3.1-11_amd64 + python-openmeeg_2.0.0.dfsg-5_amd64 + python-openscap_0.8.0-4+b1_amd64 + python-openssl_0.13-2+deb7u1_amd64 + python-openssl-dbg_0.13-2+deb7u1_amd64 + python-openstack-common_0.1+git20120203-1_amd64 + python-openturns_1.0-4_amd64 + python-openturns-dev_1.0-4_amd64 + python-osmgpsmap_0.7.3-3_amd64 + python-otr_0.2.1-1+b2_amd64 + python-otr-dbg_0.2.1-1+b2_amd64 + python-ow_2.8p15-1_amd64 + python-pacparser_1.3.0-2_amd64 + python-pam_0.4.2-13_amd64 + python-pandas-lib_0.8.0-2_amd64 + python-parted_3.6-6_amd64 + python-parted-dbg_3.6-6_amd64 + python-passfd_0.2-1_amd64 + python-pcapy_0.10.8-1_amd64 + python-pebl_1.0.2-2_amd64 + python-pebl-dbg_1.0.2-2_amd64 + python-pgm_0.3.12-2+b4_amd64 + python-pgmagick_0.5.1-1+b1_amd64 + python-phoneutils_0.1+git20100219-1+b1_amd64 + python-pisock_0.12.5-5_amd64 + python-pisock-dbg_0.12.5-5_amd64 + python-pivy_0.5.0~v609hg-1_amd64 + python-playerc_3.0.2+dfsg-4+b1_amd64 + python-plist_1.8-1_amd64 + python-plplot_5.9.9-5_amd64 + python-plplot-qt_5.9.9-5_amd64 + python-polybori_0.5~rc1-2.2_amd64 + python-poppler_0.12.1-8+b1_amd64 + python-poppler-dbg_0.12.1-8+b1_amd64 + python-poppler-qt4_0.16.2-2_amd64 + python-pqueue_0.2-7.1+b2_amd64 + python-prctl_1.1.1-1.1_amd64 + python-prelude_1.0.0-9_amd64 + python-preludedb_1.0.0-1.1+b2_amd64 + python-presage_0.8.8-1_amd64 + python-presage-dbg_0.8.8-1_amd64 + python-protobuf_2.4.1-3_amd64 + python-protocols_1.0a.svn20070625-5+b2_amd64 + python-psutil_0.5.1-1_amd64 + python-psycopg2_2.4.5-1_amd64 + python-psycopg2-dbg_2.4.5-1_amd64 + python-py++_1.0.0-1_amd64 + python-pyalsa_1.0.25-1_amd64 + python-pyamf_0.6.1+dfsg-3_amd64 + python-pyamf-dbg_0.6.1+dfsg-3_amd64 + python-pyao_0.82-5_amd64 + python-pyao-dbg_0.82-5_amd64 + python-pyaudio_0.2.4-2+b1_amd64 + python-pybiggles_1.6.6-1+b1_amd64 + python-pyclamav_0.4.1-7_amd64 + python-pycryptopp_0.5.29-1_amd64 + python-pycryptopp-dbg_0.5.29-1_amd64 + python-pycurl_7.19.0-5_amd64 + python-pycurl-dbg_7.19.0-5_amd64 + python-pydds_2.1.2+ddd105-1_amd64 + python-pyepl_1.1.0-3.1_amd64 + python-pyexiv2_0.3.2-5_amd64 + python-pyfann_2.1.0~beta~dfsg-8_amd64 + python-pyfann-dbg_2.1.0~beta~dfsg-8_amd64 + python-pyfits_1:3.0.8-2_amd64 + python-pyfribidi_0.11.0+repack-1_amd64 + python-pyfribidi-dbg_0.11.0+repack-1_amd64 + python-pygame_1.9.1release+dfsg-8_amd64 + python-pygetdata_0.7.3-6_amd64 + python-pygoocanvas_0.14.1-1+b3_amd64 + python-pygraphviz_1.1-2_amd64 + python-pygraphviz-dbg_1.1-2_amd64 + python-pygresql_1:4.0-3_amd64 + python-pygresql-dbg_1:4.0-3_amd64 + python-pyicu_1.4-1_amd64 + python-pyicu-dbg_1.4-1_amd64 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_amd64 + python-pykaraoke_0.7.5-1_amd64 + python-pykcs11_1.2.4-1_amd64 + python-pylibacl_0.5.1-1.1_amd64 + python-pylibacl-dbg_0.5.1-1.1_amd64 + python-pylibmc_1.2.2-1+b2_amd64 + python-pylibmc-dbg_1.2.2-1+b2_amd64 + python-pylirc_0.0.5-3_amd64 + python-pymad_0.6-1.2+b1_amd64 + python-pyme_1:0.8.1-2_amd64 + python-pymongo_2.2-4+deb7u1_amd64 + python-pymongo-ext_2.2-4+deb7u1_amd64 + python-pymssql_1.0.2+dfsg-1+b3_amd64 + python-pyo_0.6.1-1_amd64 + python-pyodbc_2.1.7-1+b1_amd64 + python-pyodbc-dbg_2.1.7-1+b1_amd64 + python-pyode_1.2.0-4+cvs20090320+b2_amd64 + python-pyorbit_2.24.0-6+b1_amd64 + python-pyosd_0.2.14-5.1_amd64 + python-pypcap_1.1.2+debian-2.2_amd64 + python-pypm_0.0.7-7_amd64 + python-pyproj_1.8.9-1+b1_amd64 + python-pypsignifit_3.0~beta.20120611.1-1_amd64 + python-pyscard_1.6.12.1-3_amd64 + python-pyside.phonon_1.1.1-3_amd64 + python-pyside.qtcore_1.1.1-3_amd64 + python-pyside.qtdeclarative_1.1.1-3_amd64 + python-pyside.qtgui_1.1.1-3_amd64 + python-pyside.qthelp_1.1.1-3_amd64 + python-pyside.qtnetwork_1.1.1-3_amd64 + python-pyside.qtopengl_1.1.1-3_amd64 + python-pyside.qtscript_1.1.1-3_amd64 + python-pyside.qtsql_1.1.1-3_amd64 + python-pyside.qtsvg_1.1.1-3_amd64 + python-pyside.qttest_1.1.1-3_amd64 + python-pyside.qtuitools_1.1.1-3_amd64 + python-pyside.qtwebkit_1.1.1-3_amd64 + python-pyside.qtxml_1.1.1-3_amd64 + python-pyspatialite_3.0.1-2_amd64 + python-pysqlite1.1_1.1.8a-6_amd64 + python-pysqlite1.1-dbg_1.1.8a-6_amd64 + python-pysqlite2_2.6.3-3_amd64 + python-pysqlite2-dbg_2.6.3-3_amd64 + python-pytango_7.2.3-2_amd64 + python-pytc_0.8-1+b2_amd64 + python-pytc-dbg_0.8-1+b2_amd64 + python-pythonmagick_0.9.7-2+b1_amd64 + python-pytyrant_1.1.17-1_amd64 + python-pyvorbis_1.5-1_amd64 + python-pyvorbis-dbg_1.5-1_amd64 + python-pywcs_1.11-1_amd64 + python-pywt_0.2.0-5_amd64 + python-pyx_0.11.1-2+b1_amd64 + python-pyxattr_0.5.1-1.1_amd64 + python-pyxattr-dbg_0.5.1-1.1_amd64 + python-pyxine_0.1alpha2-7+b1_amd64 + python-pyxine-dbg_0.1alpha2-7+b1_amd64 + python-pyxmpp_1.1.2-1_amd64 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + python-qmf_0.16-6+deb7u1_amd64 + python-qmf2_0.16-6+deb7u1_amd64 + python-qrencode_1.01-2+b1_amd64 + python-qscintilla2_2.6.2-2_amd64 + python-qt4_4.9.3-4_amd64 + python-qt4-dbg_4.9.3-4_amd64 + python-qt4-dbus_4.9.3-4_amd64 + python-qt4-dbus-dbg_4.9.3-4_amd64 + python-qt4-gl_4.9.3-4_amd64 + python-qt4-gl-dbg_4.9.3-4_amd64 + python-qt4-phonon_4.9.3-4_amd64 + python-qt4-phonon-dbg_4.9.3-4_amd64 + python-qt4-sql_4.9.3-4_amd64 + python-qt4-sql-dbg_4.9.3-4_amd64 + python-quixote_2.7~b2-1+b2_amd64 + python-quixote1_1.2-4.1+b2_amd64 + python-qwt3d-qt4_0.1.7~cvs20090625-9_amd64 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_amd64 + python-rabbyt_0.8.1-1+b2_amd64 + python-radare2_0.9-1_amd64 + python-radix_0.5-3_amd64 + python-rapi2_0.15-2.1_amd64 + python-rdflib_2.4.2-1+b2_amd64 + python-rdkit_201203-3_amd64 + python-recoll_1.17.3-2_amd64 + python-regex_0.1.20120613-1_amd64 + python-regex-dbg_0.1.20120613-1_amd64 + python-remctl_3.2-4_amd64 + python-renderpm_2.5-1.1_amd64 + python-renderpm-dbg_2.5-1.1_amd64 + python-renpy_6.13.12-1_amd64 + python-reportlab-accel_2.5-1.1_amd64 + python-reportlab-accel-dbg_2.5-1.1_amd64 + python-rfoo_1.3.0-2_amd64 + python-rivet_1.8.0-1_amd64 + python-rpm_4.10.0-5+deb7u1_amd64 + python-rpy_1.0.3-22_amd64 + python-rpy2_2.2.6-1_amd64 + python-rra_0.14-1.2_amd64 + python-rrdtool_1.4.7-2_amd64 + python-rsvg_2.32.0+dfsg-2+b1_amd64 + python-rtfcomp_1.1-5+b1_amd64 + python-samba_4.0.0~beta2+dfsg1-3.2_amd64 + python-scgi_1.13-1+b2_amd64 + python-scipy_0.10.1+dfsg2-1_amd64 + python-scipy-dbg_0.10.1+dfsg2-1_amd64 + python-sciscipy_0.3.0-3_amd64 + python-selinux_2.1.9-5_amd64 + python-semanage_2.1.6-6_amd64 + python-sendfile_1.2.4-1+b2_amd64 + python-sendfile-dbg_1.2.4-1+b2_amd64 + python-setools_3.3.7-3_amd64 + python-setproctitle_1.0.1-1+b1_amd64 + python-setproctitle-dbg_1.0.1-1+b1_amd64 + python-sfml_1.5-2+b1_amd64 + python-shapely_1.2.14-1_amd64 + python-sidl_1.4.0.dfsg-8.1_amd64 + python-sigmask_2.4.1-1+b3_amd64 + python-silo_4.8-13_amd64 + python-simplejson_2.5.2-1_amd64 + python-simpleparse-mxtexttools_2.1.0a1-6_amd64 + python-sip_4.13.3-2_amd64 + python-sip-dbg_4.13.3-2_amd64 + python-sip-dev_4.13.3-2_amd64 + python-skimage-lib_0.6.1-1_amd64 + python-sklearn-lib_0.11.0-2+deb7u1_amd64 + python-smartpm_1.4-2_amd64 + python-smbc_1.0.6-1+b1_amd64 + python-smbpasswd_1.0.1-1.2+b2_amd64 + python-smbus_3.1.0-2_amd64 + python-snappy_0.4-1_amd64 + python-soya_0.15~rc1-8_amd64 + python-soya-dbg_0.15~rc1-8_amd64 + python-sparse_1.1-1+b2_amd64 + python-sphere_3.2-4_amd64 + python-spice-client-gtk_0.12-5_amd64 + python-sqlalchemy-ext_0.7.8-1_amd64 + python-sqlite_1.0.1-9_amd64 + python-sqlite-dbg_1.0.1-9_amd64 + python-sqlitecachec_1.1.2-1+b2_amd64 + python-sss_1.8.4-2_amd64 + python-statgrab_0.5-4_amd64 + python-statsmodels-lib_0.4.2-1_amd64 + python-stemmer_1.2.0+dfsg-1_amd64 + python-stemmer-dbg_1.2.0+dfsg-1_amd64 + python-stfio_0.10.18-1.1+b1_amd64 + python-stfl_0.22-1+b1_amd64 + python-storm_0.19-1_amd64 + python-storm-dbg_0.19-1_amd64 + python-subnettree_0.12-4+b1_amd64 + python-subversion_1.6.17dfsg-4+deb7u4_amd64 + python-subvertpy_0.8.10-2_amd64 + python-subvertpy-dbg_0.8.10-2_amd64 + python-sugar-0.84_0.84.2-4_amd64 + python-sugar-0.88_0.88.0-4_amd64 + python-sugar-0.96_0.96.0-1_amd64 + python-sugar-toolkit-0.84_0.84.17-1_amd64 + python-sugar-toolkit-0.88_0.88.1-3+b1_amd64 + python-sugar-toolkit-0.96_0.96.1-1_amd64 + python-sugar3_0.96.1-2_amd64 + python-svipc_0.14-2_amd64 + python-svn_1.7.5-1.1_amd64 + python-svn-dbg_1.7.5-1.1_amd64 + python-swiginac_1.5.1.1-1+b2_amd64 + python-syfi_1.0.0.dfsg-1_amd64 + python-tables_2.3.1-3_amd64 + python-tables-dbg_2.3.1-3_amd64 + python-tagpy_0.94.8-4_amd64 + python-talloc_2.0.7+git20120207-1_amd64 + python-talloc-dbg_2.0.7+git20120207-1_amd64 + python-talloc-dev_2.0.7+git20120207-1_amd64 + python-tau_2.16.4-1.4+b1_amd64 + python-tcpwrap_0.2-2.1+b3_amd64 + python-tdb_1.2.10-2_amd64 + python-tdb-dbg_1.2.10-2_amd64 + python-tk_2.7.3-1_amd64 + python-tk-dbg_2.7.3-1_amd64 + python-tomoe_0.6.0-1.3_amd64 + python-traits_4.1.0-1_amd64 + python-twisted-bin_12.0.0-1_amd64 + python-twisted-bin-dbg_12.0.0-1_amd64 + python-twisted-runner_12.0.0-1_amd64 + python-twisted-runner-dbg_12.0.0-1_amd64 + python-ufc_2.0.5-3_amd64 + python-unac_1.7.0-1+b2_amd64 + python-unbound_1.4.17-3_amd64 + python-uniconvertor_1.1.4-1+b2_amd64 + python-uniconvertor-dbg_1.1.4-1+b2_amd64 + python-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python-unshare_0.1-2_amd64 + python-urwid_1.0.1-2_amd64 + python-usb_0.4.3-1_amd64 + python-usbtc08_0.1.1-2_amd64 + python-utmp_0.8+nmu1+b1_amd64 + python-vigra_1.7.1+dfsg1-3_amd64 + python-vipscc_7.28.5-1+deb7u1_amd64 + python-visual_1:5.12-1.5_amd64 + python-vte_1:0.28.2-5_amd64 + python-vtk_5.8.0-13+b1_amd64 + python-vtkgdcm_2.2.0-14.1_amd64 + python-webkit_1.1.8-2_amd64 + python-wimpiggy_0.3.11+dfsg-1_amd64 + python-wnck_2.32.0+dfsg-2+b1_amd64 + python-workqueue_3.5.1-2_amd64 + python-wxgtk2.8_2.8.12.1-12_amd64 + python-wxgtk2.8-dbg_2.8.12.1-12_amd64 + python-xapian_1.2.12-2_amd64 + python-xattr_0.6.4-2_amd64 + python-xdelta3_3.0.0.dfsg-1_amd64 + python-xklavier_0.4-4_amd64 + python-xmmsclient_0.8+dfsg-4_amd64 + python-xpyb_1.3.1-1_amd64 + python-yaml_3.10-4_amd64 + python-yaml-dbg_3.10-4_amd64 + python-yenc_0.3+debian-2+b2_amd64 + python-zbar_0.10+doc-8_amd64 + python-zbarpygtk_0.10+doc-8_amd64 + python-zeroc-ice_3.4.2-8.2_amd64 + python-zfec_1.4.5-2_amd64 + python-zinnia_0.06-1+b1_amd64 + python-zmq_2.2.0-1_amd64 + python-zmq-dbg_2.2.0-1_amd64 + python-zodb_1:3.9.7-2_amd64 + python-zookeeper_3.3.5+dfsg1-2_amd64 + python-zope.hookable_3.4.1-8_amd64 + python-zope.i18nmessageid_3.5.3-2_amd64 + python-zope.interface_3.6.1-3_amd64 + python-zope.interface-dbg_3.6.1-3_amd64 + python-zope.proxy_3.6.1-2_amd64 + python-zope.security_3.8.3-2_amd64 + python2.6_2.6.8-1.1_amd64 + python2.6-dbg_2.6.8-1.1_amd64 + python2.6-dev_2.6.8-1.1_amd64 + python2.6-minimal_2.6.8-1.1_amd64 + python2.7_2.7.3-6_amd64 + python2.7-dbg_2.7.3-6_amd64 + python2.7-dev_2.7.3-6_amd64 + python2.7-minimal_2.7.3-6_amd64 + python3-apt_0.8.8.2_amd64 + python3-apt-dbg_0.8.8.2_amd64 + python3-bitarray_0.8.0-2_amd64 + python3-bsddb3_5.2.0-1+b1_amd64 + python3-bsddb3-dbg_5.2.0-1+b1_amd64 + python3-cairo_1.10.0+dfsg-2_amd64 + python3-cracklib_2.8.19-3_amd64 + python3-crypto_2.6-4+deb7u3_amd64 + python3-crypto-dbg_2.6-4+deb7u3_amd64 + python3-dbus_1.1.1-1_amd64 + python3-dbus-dbg_1.1.1-1_amd64 + python3-dbus.mainloop.qt_4.9.3-4_amd64 + python3-dbus.mainloop.qt-dbg_4.9.3-4_amd64 + python3-drizzle_1.0-3.1_amd64 + python3-drizzle-dbg_1.0-3.1_amd64 + python3-epr_0.6.1-2_amd64 + python3-epr-dbg_0.6.1-2_amd64 + python3-gdbm_3.2.3-1_amd64 + python3-gdbm-dbg_3.2.3-1_amd64 + python3-gearman.libgearman_0.13.2-2.1_amd64 + python3-gi_3.2.2-2_amd64 + python3-gi-cairo_3.2.2-2_amd64 + python3-gi-dbg_3.2.2-2_amd64 + python3-jinja2_2.6-1_amd64 + python3-jinja2-dbg_2.6-1_amd64 + python3-leveldb_0~svn51-1_amd64 + python3-llfuse_0.37.1-2_amd64 + python3-llfuse-dbg_0.37.1-2_amd64 + python3-lxml_2.3.2-1_amd64 + python3-lxml-dbg_2.3.2-1_amd64 + python3-markupsafe_0.15-1_amd64 + python3-markupsafe-dbg_0.15-1_amd64 + python3-mpi4py_1.3+hg20120611-3_amd64 + python3-mpi4py-dbg_1.3+hg20120611-3_amd64 + python3-numpy_1:1.6.2-1.2_amd64 + python3-numpy-dbg_1:1.6.2-1.2_amd64 + python3-openssl_0.13-2+deb7u1_amd64 + python3-openssl-dbg_0.13-2+deb7u1_amd64 + python3-postgresql_1.0.2-1+b1_amd64 + python3-psycopg2_2.4.5-1_amd64 + python3-psycopg2-dbg_2.4.5-1_amd64 + python3-pyfits_1:3.0.8-2_amd64 + python3-pykde4_4:4.8.4-1_amd64 + python3-pykde4-dbg_4:4.8.4-1_amd64 + python3-pylibacl_0.5.1-1.1_amd64 + python3-pylibacl-dbg_0.5.1-1.1_amd64 + python3-pyqt4_4.9.3-4_amd64 + python3-pyqt4-dbg_4.9.3-4_amd64 + python3-pyqt4.phonon_4.9.3-4_amd64 + python3-pyqt4.phonon-dbg_4.9.3-4_amd64 + python3-pyqt4.qsci_2.6.2-2_amd64 + python3-pyqt4.qtopengl_4.9.3-4_amd64 + python3-pyqt4.qtopengl-dbg_4.9.3-4_amd64 + python3-pyqt4.qtsql_4.9.3-4_amd64 + python3-pyqt4.qtsql-dbg_4.9.3-4_amd64 + python3-pyside.phonon_1.1.1-3_amd64 + python3-pyside.qtcore_1.1.1-3_amd64 + python3-pyside.qtdeclarative_1.1.1-3_amd64 + python3-pyside.qtgui_1.1.1-3_amd64 + python3-pyside.qthelp_1.1.1-3_amd64 + python3-pyside.qtnetwork_1.1.1-3_amd64 + python3-pyside.qtopengl_1.1.1-3_amd64 + python3-pyside.qtscript_1.1.1-3_amd64 + python3-pyside.qtsql_1.1.1-3_amd64 + python3-pyside.qtsvg_1.1.1-3_amd64 + python3-pyside.qttest_1.1.1-3_amd64 + python3-pyside.qtuitools_1.1.1-3_amd64 + python3-pyside.qtwebkit_1.1.1-3_amd64 + python3-pyside.qtxml_1.1.1-3_amd64 + python3-pyxattr_0.5.1-1.1_amd64 + python3-pyxattr-dbg_0.5.1-1.1_amd64 + python3-regex_0.1.20120613-1_amd64 + python3-regex-dbg_0.1.20120613-1_amd64 + python3-scipy_0.10.1+dfsg2-1_amd64 + python3-scipy-dbg_0.10.1+dfsg2-1_amd64 + python3-sip_4.13.3-2_amd64 + python3-sip-dbg_4.13.3-2_amd64 + python3-sip-dev_4.13.3-2_amd64 + python3-stemmer_1.2.0+dfsg-1_amd64 + python3-stemmer-dbg_1.2.0+dfsg-1_amd64 + python3-svipc_0.14-2_amd64 + python3-tk_3.2.3-1_amd64 + python3-tk-dbg_3.2.3-1_amd64 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_amd64 + python3-urwid_1.0.1-2_amd64 + python3-yaml_3.10-4_amd64 + python3-yaml-dbg_3.10-4_amd64 + python3-zmq_2.2.0-1_amd64 + python3-zmq-dbg_2.2.0-1_amd64 + python3-zope.interface_3.6.1-3_amd64 + python3-zope.interface-dbg_3.6.1-3_amd64 + python3.2_3.2.3-7_amd64 + python3.2-dbg_3.2.3-7_amd64 + python3.2-dev_3.2.3-7_amd64 + python3.2-minimal_3.2.3-7_amd64 + pythontracer_8.10.16-1.1_amd64 + pytone_3.0.0-1+b4_amd64 + pyxplot_0.8.4-5+b1_amd64 + q4wine_0.121-4_amd64 + qalc_0.9.7-8_amd64 + qalculate-gtk_0.9.7-3_amd64 + qantenna_0.2.3-2_amd64 + qapt-batch_1.3.0-2_amd64 + qapt-dbg_1.3.0-2_amd64 + qapt-deb-installer_1.3.0-2_amd64 + qapt-utils_1.3.0-2_amd64 + qasconfig_0.17.2-2_amd64 + qashctl_0.17.2-2_amd64 + qasmixer_0.17.2-2_amd64 + qbankmanager_0.9.55beta-3_amd64 + qbittorrent_2.9.8-1_amd64 + qbittorrent-dbg_2.9.8-1_amd64 + qbittorrent-nox_2.9.8-1_amd64 + qbrew_0.4.1-3_amd64 + qca2-utils_2.0.3-4_amd64 + qcomicbook_0.8.2-1_amd64 + qconf_1.4-3_amd64 + qdacco_0.8.2-1_amd64 + qdbm-cgi_1.8.78-2_amd64 + qdbm-util_1.8.78-2_amd64 + qdbus_4:4.8.2+dfsg-11_amd64 + qelectrotech_0.22+svn897-1_amd64 + qemu_1.1.2+dfsg-6a_amd64 + qemu-kvm_1.1.2+dfsg-6_amd64 + qemu-kvm-dbg_1.1.2+dfsg-6_amd64 + qemu-system_1.1.2+dfsg-6a_amd64 + qemu-user_1.1.2+dfsg-6a_amd64 + qemu-user-static_1.1.2+dfsg-6a_amd64 + qemu-utils_1.1.2+dfsg-6a_amd64 + qemubuilder_0.70_amd64 + qfits-tools_6.2.0-5_amd64 + qgis_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_amd64 + qgit_2.4-1_amd64 + qgo_2~svn764-1_amd64 + qhull-bin_2009.1-3_amd64 + qiime_1.4.0-2_amd64 + qimhangul-qt4_0.2.0-2_amd64 + qingy_0.9.7-2_amd64 + qiv_2.2.4-1_amd64 + qjackctl_0.3.9-2_amd64 + qjackrcd_1.0.6~ds0-1_amd64 + qlandkartegt_1.5.0~dfsg1-1_amd64 + qlandkartegt-garmin_0.3.4-2_amd64 + qliss3d_1.4-1_amd64 + qlvnictools_0.0.1-1_amd64 + qmail_1.06-5_amd64 + qmc_0.94-3_amd64 + qmf-dbg_1.0.7~2011w23.2-2.1_amd64 + qmf-dev_1.0.7~2011w23.2-2.1_amd64 + qmf-examples_1.0.7~2011w23.2-2.1_amd64 + qmf-tests_1.0.7~2011w23.2-2.1_amd64 + qmfgen_0.16-6+deb7u1_amd64 + qmidiarp_0.5.0-1_amd64 + qmidiarp-dbg_0.5.0-1_amd64 + qmidinet_0.1.2-1_amd64 + qmidinet-dbg_0.1.2-1_amd64 + qmidiroute_0.3.0-1_amd64 + qmmp_0.5.5-1+b1_amd64 + qmmp-plugin-projectm_0.5.5-1+b1_amd64 + qmpdclient_1.2.2-2_amd64 + qnapi_0.1.5-9_amd64 + qonk_0.3.1-3.1+b1_amd64 + qpdf_2.3.1-4_amd64 + qpdfview_0.3.1-1_amd64 + qpid-client_0.16-6+deb7u1_amd64 + qpidd_0.16-6+deb7u1_amd64 + qprint_1.0.dfsg.2-2_amd64 + qprogram-starter_1.6.4-1_amd64 + qpxtool_0.7.1.002-5_amd64 + qrencode_3.3.0-2_amd64 + qrfcview_0.62-5.1_amd64 + qrq_0.3.0-2_amd64 + qsampler_0.2.2-5_amd64 + qsapecng_2.0.0-5_amd64 + qsf_1.2.7-1+b2_amd64 + qshutdown_1.6.4-1_amd64 + qsstv_7.1.7-3_amd64 + qstardict_0.12.9-1.1_amd64 + qstat_2.11-3_amd64 + qsynth_0.3.6-2_amd64 + qt-assistant-compat_4.6.3-4_amd64 + qt-at-spi_0.3.1-3_amd64 + qt4-bin-dbg_4:4.8.2+dfsg-11_amd64 + qt4-demos_4:4.8.2+dfsg-11_amd64 + qt4-demos-dbg_4:4.8.2+dfsg-11_amd64 + qt4-designer_4:4.8.2+dfsg-11_amd64 + qt4-dev-tools_4:4.8.2+dfsg-11_amd64 + qt4-linguist-tools_4:4.8.2+dfsg-11_amd64 + qt4-qmake_4:4.8.2+dfsg-11_amd64 + qt4-qmlviewer_4:4.8.2+dfsg-11_amd64 + qt4-qtconfig_4:4.8.2+dfsg-11_amd64 + qtads_2.1.3-1_amd64 + qtcreator_2.5.0-2_amd64 + qtcreator-dbg_2.5.0-2_amd64 + qtcurve_1.8.12-2_amd64 + qtemu_1.0.5-2_amd64 + qterm_1:0.5.12-1.1_amd64 + qtgstreamer-dbg_0.10.2-2_amd64 + qtgstreamer-declarative_0.10.2-2_amd64 + qtgstreamer-plugins_0.10.2-2_amd64 + qthid-fcd-controller_3.1-5_amd64 + qtikz_0.10-3_amd64 + qtiplot_0.9.8.8-5+b1_amd64 + qtm_1.3.6-1_amd64 + qtmobility-dbg_1.2.0-3_amd64 + qtmobility-dev_1.2.0-3_amd64 + qtmobility-examples_1.2.0-3_amd64 + qtoctave_0.10.1-3_amd64 + qtractor_0.5.5-1_amd64 + qtractor-dbg_0.5.5-1_amd64 + qtscript-tools_0.2.0-1_amd64 + qtscrob_0.10-4_amd64 + qtsmbstatus-client_2.2.1-2_amd64 + qtsmbstatus-light_2.2.1-2_amd64 + qtsmbstatus-server_2.2.1-2_amd64 + quadrapassel_1:3.4.2-3_amd64 + quagga_0.99.22.4-1+wheezy1_amd64 + quagga-dbg_0.99.22.4-1+wheezy1_amd64 + quakespasm_0.85.7-1_amd64 + quakespasm-dbg_0.85.7-1_amd64 + quantlib-examples_1.2-2+b1_amd64 + quantlib-python_1.2-2_amd64 + quantum-espresso_5.0-1_amd64 + quarry_0.2.0.dfsg.1-4_amd64 + quassel_0.8.0-1_amd64 + quassel-client_0.8.0-1_amd64 + quassel-client-kde4_0.8.0-1_amd64 + quassel-core_0.8.0-1_amd64 + quassel-kde4_0.8.0-1_amd64 + quelcom_0.4.0-13_amd64 + quickplot_0.10.3-1_amd64 + quicksynergy_0.9-1_amd64 + quicktime-utils_2:1.2.4-3_amd64 + quicktime-x11utils_2:1.2.4-3_amd64 + quisk_3.6.2-1_amd64 + quitcount_2.0-1_amd64 + quixote1-doc_1.2-4.1+b2_amd64 + quota_4.00-4+deb7u1_amd64 + quotatool_1.4.12-1_amd64 + qutecom_2.2.1+dfsg1-3+b1_amd64 + qutecom-dbg_2.2.1+dfsg1-3+b1_amd64 + qutecsound_0.6.1-2_amd64 + qutemol_0.4.1~cvs20081111-2+b2_amd64 + quvi_0.4.2-1_amd64 + qv4l2_0.8.8-3_amd64 + qviaggiatreno_2010.11.1-1_amd64 + qwbfsmanager_1.1.0-1.1_amd64 + qwo_0.5-2+b1_amd64 + qxw_20110923-1_amd64 + r-base-core_2.15.1-4_amd64 + r-base-core-dbg_2.15.1-4_amd64 + r-bioc-biobase_2.14.0-1_amd64 + r-bioc-biocgenerics_0.2.0-1_amd64 + r-bioc-hilbertvis_1.14.0-1_amd64 + r-bioc-limma_3.12.0~dfsg-1_amd64 + r-cran-amore_0.2-12-2_amd64 + r-cran-bayesm_2.2-4-1_amd64 + r-cran-bitops_1.0-4.1-2_amd64 + r-cran-cairodevice_2.19-1_amd64 + r-cran-catools_1.12-2_amd64 + r-cran-chron_2.3-42-1_amd64 + r-cran-class_7.3-4-1_amd64 + r-cran-cluster_1.14.2-1_amd64 + r-cran-colorspace_1.0.1-1+b1_amd64 + r-cran-date_1.2.32-1_amd64 + r-cran-dbi_0.2-5-2_amd64 + r-cran-deal_1.2.34-1_amd64 + r-cran-digest_0.5.2-1_amd64 + r-cran-eco_3.1-4-2_amd64 + r-cran-epi_1.1.33-1_amd64 + r-cran-epibasix_1.1-3_amd64 + r-cran-erm_0.14-0-2_amd64 + r-cran-evd_2.2-4-2_amd64 + r-cran-fasianoptions_2160.77-1_amd64 + r-cran-fassets_2100.78-3_amd64 + r-cran-fbasics_2160.81-2_amd64 + r-cran-fbonds_2100.75-3_amd64 + r-cran-fcopulae_2110.78-1_amd64 + r-cran-fgarch_2110.80.1-1_amd64 + r-cran-fnonlinear_2100.76-4_amd64 + r-cran-foptions_2160.81-1_amd64 + r-cran-foreign_0.8.50-1_amd64 + r-cran-fportfolio_2130.80-1_amd64 + r-cran-fregression_2100.76-4_amd64 + r-cran-funitroots_2100.76-3_amd64 + r-cran-gam_1.06.2-1_amd64 + r-cran-genabel_1.7-0-3_amd64 + r-cran-getopt_1.17-1_amd64 + r-cran-gtools_2.7.0-1_amd64 + r-cran-haplo.stats_1.5.5-1_amd64 + r-cran-hdf5_1.6.10-1+b1_amd64 + r-cran-hmisc_3.9-3-1_amd64 + r-cran-int64_1.1.2-1_amd64 + r-cran-kernsmooth_2.23-8-1_amd64 + r-cran-lattice_0.20-6-1_amd64 + r-cran-latticeextra_0.6-19-1_amd64 + r-cran-lme4_0.999999-0-1_amd64 + r-cran-lmtest_0.9.30-1_amd64 + r-cran-lpsolve_5.6.6-1_amd64 + r-cran-mapdata_2.2-1-1_amd64 + r-cran-mapproj_1.1-8.3-2_amd64 + r-cran-maps_2.2-5-1_amd64 + r-cran-mass_7.3-19-1_amd64 + r-cran-matrix_1.0-6-1_amd64 + r-cran-mcmcpack_1.2-3-1_amd64 + r-cran-medadherence_1.02-1_amd64 + r-cran-mgcv_1.7-13-1_amd64 + r-cran-mnormt_1.4-5-1_amd64 + r-cran-mnp_2.6-2-1_amd64 + r-cran-msm_1.1-1_amd64 + r-cran-multicore_0.1-7-1_amd64 + r-cran-mvtnorm_0.9-9992-1_amd64 + r-cran-nlme_3.1.104-1_amd64 + r-cran-nnet_7.3-4-1_amd64 + r-cran-plyr_1.7.1-1_amd64 + r-cran-polspline_1.1.5-5_amd64 + r-cran-proto_0.3-9.2-1_amd64 + r-cran-pscl_1.03.5-1+deb70u1_amd64 + r-cran-qtl_1.23-16-1_amd64 + r-cran-quadprog_1.5-4-1_amd64 + r-cran-randomforest_4.6-6-1_amd64 + r-cran-raschsampler_0.8-5-1_amd64 + r-cran-rcmdr_1.8-4-1_amd64 + r-cran-rcpp_0.9.13-1_amd64 + r-cran-reshape_0.8.4-1_amd64 + r-cran-rggobi_2.1.17-1_amd64 + r-cran-rgl_0.92.798-1+deb7u1_amd64 + r-cran-rglpk_0.3-8-1_amd64 + r-cran-rgtk2_2.20.24-1_amd64 + r-cran-rjags_3.3-1_amd64 + r-cran-rjava_0.9-3-1_amd64 + r-cran-rmpi_0.5-9-3_amd64 + r-cran-rms_3.5-0-1_amd64 + r-cran-rmysql_0.9-3-1+b1_amd64 + r-cran-robustbase_0.8-1-1-1_amd64 + r-cran-rodbc_1.3-6-1_amd64 + r-cran-rpart_3.1.54-1_amd64 + r-cran-rquantlib_0.3.8-2_amd64 + r-cran-rserve_0.6-8-1_amd64 + r-cran-rsprng_1.0-2_amd64 + r-cran-rsqlite_0.11.1-1_amd64 + r-cran-rsymphony_0.1-14-1_amd64 + r-cran-scatterplot3d_0.3-33-1_amd64 + r-cran-slam_0.1-24-1_amd64 + r-cran-sm_2.2-4.1-1_amd64 + r-cran-sn_0.4-17-1_amd64 + r-cran-sp_1:0.9-81-1_amd64 + r-cran-spatial_7.3-4-1_amd64 + r-cran-spc_1:0.4.1-1_amd64 + r-cran-survival_2.36-14-1_amd64 + r-cran-timedate_2160.95-1_amd64 + r-cran-timeseries_2160.94-1_amd64 + r-cran-tkrplot_0.0.23-1_amd64 + r-cran-tseries_0.10-28-1_amd64 + r-cran-urca_1.2-6-1_amd64 + r-cran-vegan_2.0-3-1_amd64 + r-cran-vgam_0.8-7-1_amd64 + r-cran-xml_3.9-4-1_amd64 + r-cran-zoo_1.7-7-1_amd64 + r-mathlib_2.15.1-4_amd64 + r-other-mott-happy_2.1-7_amd64 + r-other-rot_1.0-4_amd64 + rabbitsign_2.1+dmca1-1+b1_amd64 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_amd64 + racoon_1:0.8.0-14_amd64 + radare2_0.9-3_amd64 + radeontool_1.6.2-1.1_amd64 + radiance_4R1+20120125-1+b1_amd64 + radio_3.102-3_amd64 + radioclk_1.0.ds1-12_amd64 + radiotray_0.7.2-1_amd64 + radiusclient1_0.3.2-14_amd64 + radiusd-livingston_2.1-20_amd64 + radsecproxy_1.6.2-1_amd64 + radvd_1:1.8.5-1_amd64 + rafkill_1.2.2-3.3+b1_amd64 + ragel_6.7-1.1_amd64 + raidutils_0.0.6-19_amd64 + raincat_1.1-3_amd64 + raincat-dbg_1.1-3_amd64 + rakarrack_0.6.1-4_amd64 + rakudo_0.1~2012.01-1_amd64 + ramond_0.5-4_amd64 + rancid_2.3.8-3_amd64 + randomize-lines_0.2.7_amd64 + randomsound_0.2-5_amd64 + randtype_1.13-10_amd64 + rapidsvn_0.12.0dfsg-6_amd64 + raptor-utils_1.4.21-7.1_amd64 + raptor2-utils_2.0.8-2_amd64 + rarian-compat_0.8.1-5_amd64 + rarpd_0.981107-8_amd64 + rasmol_2.7.5.2-1_amd64 + rasqal-utils_0.9.29-1_amd64 + raster3d_3.0-2-4_amd64 + rasterlite-bin_1.1~svn11-2_amd64 + rasterlite-dbg_1.1~svn11-2_amd64 + rat_4.2.22-2.1_amd64 + ratbox-services-common_1.2.4-2+b1_amd64 + ratbox-services-mysql_1.2.4-2+b1_amd64 + ratbox-services-pgsql_1.2.4-2+b1_amd64 + ratbox-services-sqlite_1.2.4-2+b1_amd64 + ratfor_1.0-15_amd64 + ratmenu_2.3.20_amd64 + ratpoison_1.4.5-4_amd64 + ratproxy_1.58+dfsg-3+b1_amd64 + rats_2.3-1_amd64 + rawstudio_2.0-1.1_amd64 + rawstudio-dbg_2.0-1.1_amd64 + rawtherapee_4.0.9-4_amd64 + raxml_7.2.8-2_amd64 + razor_1:2.85-4+b1_amd64 + rblcheck_20020316-7_amd64 + rbldnsd_0.996b_amd64 + rbootd_2.0-10_amd64 + rc_1.7.1-4_amd64 + rcov_1.0-2_amd64 + rcs_5.8.1-1_amd64 + rcs-blame_1.3.1-2_amd64 + rdate_1:1.2-5_amd64 + rdd_2.0.7-2+b1_amd64 + rdesktop_1.7.1-1_amd64 + rdfind_1.3.1-1_amd64 + rdiff_0.9.7-9_amd64 + rdiff-backup_1.2.8-7_amd64 + rdiff-backup-fs_1.0.0-4_amd64 + rdist_6.1.5-18_amd64 + rdmacm-utils_1.0.15-1+deb7u1_amd64 + rdnssd_1.0.1-1+b1_amd64 + rds-tools_1.4.1-OFED-1.4.2-1_amd64 + rdup_1.1.11-1+b1_amd64 + re_0.1-5_amd64 + re2c_0.13.5-1_amd64 + read-edid_2.0.0-3.1_amd64 + readahead-fedora_2:1.5.6-4_amd64 + readseq_1-9_amd64 + realpath_1.18_amd64 + realtimebattle_1.0.8-13_amd64 + reaver_1.4-2_amd64 + recite_1.0-8.2_amd64 + recode_3.6-20_amd64 + recoll_1.17.3-2_amd64 + recordmydesktop_0.3.8.1+svn602-1+b1_amd64 + recover_1.3c-11_amd64 + recoverdm_0.20-2+b1_amd64 + recoverjpeg_2.0-3.1_amd64 + recutils_1.5-1_amd64 + redir_2.2.1-10_amd64 + redis-server_2:2.4.14-1_amd64 + redland-utils_1.0.15-1+b1_amd64 + redmine-plugin-botsfilter_1.02-2_amd64 + redshift_1.7-2_amd64 + redsocks_0.4+dfsg-1_amd64 + ree_1.3-2.1_amd64 + referencer_1.1.6-2+b4_amd64 + refit_0.14-2_amd64 + regexxer_0.9-2.1_amd64 + regina-normal_4.93-1_amd64 + regina-normal-dev_4.93-1_amd64 + regina-normal-mpi_4.93-1_amd64 + regina-rexx_3.6-2_amd64 + regionset_0.1-3_amd64 + registry-tools_4.0.0~beta2+dfsg1-3.2_amd64 + reglookup_0.12.0-1_amd64 + reiser4progs_1.0.7-6.3_amd64 + reiserfsprogs_1:3.6.21-1_amd64 + rekonq_0.9.2-1_amd64 + rekonq-dbg_0.9.2-1_amd64 + remake_3.81+dbg0.2~dfsg.1-1_amd64 + remctl-client_3.2-4_amd64 + remctl-server_3.2-4_amd64 + remembrance-agent_2.12-7_amd64 + remind_03.01.12-1_amd64 + remmina_1.0.0-4+deb7u1_amd64 + remmina-plugin-gnome_1.0.0-4+deb7u1_amd64 + remmina-plugin-nx_1.0.0-4+deb7u1_amd64 + remmina-plugin-rdp_1.0.0-4+deb7u1_amd64 + remmina-plugin-telepathy_1.0.0-4+deb7u1_amd64 + remmina-plugin-vnc_1.0.0-4+deb7u1_amd64 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_amd64 + remote-tty_4.0-13_amd64 + renameutils_0.12.0-1_amd64 + renattach_1.2.4-3_amd64 + rep_0.90.2-1.3_amd64 + rep-gtk_1:0.90.0-2_amd64 + rephrase_0.1-3_amd64 + reprepro_4.12.5-1_amd64 + repro_1.8.5-4_amd64 + reptyr_0.3-2_amd64 + resample_1.8.1-1_amd64 + resiprocate-turn-server_1.8.5-4_amd64 + resource-agents_1:3.9.2-5+deb7u1_amd64 + resource-agents-dev_1:3.9.2-5+deb7u1_amd64 + restartd_0.2.2_amd64 + rev-plugins_0.3.1-2_amd64 + revelation_0.4.13-1.2_amd64 + rexima_1.4-7_amd64 + rfdump_1.6-2_amd64 + rfkill_0.4-1_amd64 + rgbpaint_0.8.7-3_amd64 + rgmanager_3.0.12-3.2+deb7u2_amd64 + rhash_1.2.9-8+deb7u1_amd64 + rheolef_6.1-2.1_amd64 + rhn-client-tools_1.8.9-3_amd64 + rhythmbox_2.97-2.1_amd64 + rhythmbox-dbg_2.97-2.1_amd64 + rhythmbox-dev_2.97-2.1_amd64 + rhythmbox-plugin-cdrecorder_2.97-2.1_amd64 + rhythmbox-plugins_2.97-2.1_amd64 + ri-li_2.0.1-2_amd64 + rifiuti_1.0+20040505-4+b1_amd64 + rifiuti2_0.5.1-3+b1_amd64 + rig_1.11-1_amd64 + rinetd_0.62-5.1_amd64 + ripole_0.2.0+20081101.0215-1_amd64 + ripperx_2.7.3-1_amd64 + ristretto_0.3.7-1_amd64 + rivet-plugins_1.8.0-1_amd64 + rkward_0.5.7-2+deb7u1_amd64 + rlfe_6.2+dfsg-0.1_amd64 + rlinetd_0.8.2-2_amd64 + rlplot_1.5-2_amd64 + rlpr_2.05-4_amd64 + rlvm_0.12-4_amd64 + rlwrap_0.37-3_amd64 + rmail_8.14.4-4_amd64 + rman_3.2-6_amd64 + rnahybrid_2.1.1-1_amd64 + rng-tools_2-unofficial-mt.14-1_amd64 + roaraudio_1.0~beta2-3_amd64 + roaraudio-dbg_1.0~beta2-3_amd64 + roarclients_1.0~beta2-3_amd64 + roarplaylistd_0.1.1-2_amd64 + roarplaylistd-dbg_0.1.1-2_amd64 + robocut_1.0.8-1_amd64 + robojournal_0.2.1-1_amd64 + robot-player_3.0.2+dfsg-4+b1_amd64 + robotfindskitten_1.7320508.406-3_amd64 + rockdodger_0.6.0a-7_amd64 + rocs_4:4.8.4-1_amd64 + rofs_2006.11.28-2.1_amd64 + rolldice_1.10-5_amd64 + root-plugin-geom-gdml_5.34.00-2_amd64 + root-plugin-geom-geombuilder_5.34.00-2_amd64 + root-plugin-geom-geompainter_5.34.00-2_amd64 + root-plugin-graf2d-asimage_5.34.00-2_amd64 + root-plugin-graf2d-qt_5.34.00-2_amd64 + root-plugin-graf2d-x11_5.34.00-2_amd64 + root-plugin-graf3d-x3d_5.34.00-2_amd64 + root-plugin-gui-fitpanel_5.34.00-2_amd64 + root-plugin-gui-guibuilder_5.34.00-2_amd64 + root-plugin-gui-qt_5.34.00-2_amd64 + root-plugin-gui-sessionviewer_5.34.00-2_amd64 + root-plugin-hist-hbook_5.34.00-2_amd64 + root-plugin-hist-histpainter_5.34.00-2_amd64 + root-plugin-hist-spectrumpainter_5.34.00-2_amd64 + root-plugin-io-sql_5.34.00-2_amd64 + root-plugin-io-xml_5.34.00-2_amd64 + root-plugin-math-fftw3_5.34.00-2_amd64 + root-plugin-math-fumili_5.34.00-2_amd64 + root-plugin-math-minuit2_5.34.00-2_amd64 + root-plugin-montecarlo-pythia8_5.34.00-2_amd64 + root-plugin-net-globus_5.34.00-2_amd64 + root-plugin-net-krb5_5.34.00-2_amd64 + root-plugin-proof-peac_5.34.00-2_amd64 + root-plugin-sql-mysql_5.34.00-2_amd64 + root-plugin-sql-odbc_5.34.00-2_amd64 + root-plugin-sql-pgsql_5.34.00-2_amd64 + root-plugin-tree-treeviewer_5.34.00-2_amd64 + root-system-bin_5.34.00-2_amd64 + root-system-proofd_5.34.00-2_amd64 + root-system-rootd_5.34.00-2_amd64 + root-tail_1.2-3_amd64 + rootstrap_0.3.25-1_amd64 + rosegarden_1:12.04-1_amd64 + rosegarden-dbg_1:12.04-1_amd64 + rotix_0.83-4_amd64 + rotter_0.9-3_amd64 + routino_2.2-4+deb7u1_amd64 + rovclock_0.6e-7_amd64 + rox-filer_2.10-3_amd64 + roxterm-gtk2_2.6.5-1_amd64 + roxterm-gtk3_2.6.5-1_amd64 + rpcbind_0.2.0-8_amd64 + rplay-client_3.3.2-14_amd64 + rplay-contrib_3.3.2-14_amd64 + rplay-server_3.3.2-14_amd64 + rpm_4.10.0-5+deb7u1_amd64 + rpm-common_4.10.0-5+deb7u1_amd64 + rpm2cpio_4.10.0-5+deb7u1_amd64 + rpm2html_1.11.2-3_amd64 + rrdcached_1.4.7-2_amd64 + rrdcollect_0.2.10-2_amd64 + rrdcollect-dbg_0.2.10-2_amd64 + rrdtool_1.4.7-2_amd64 + rrdtool-dbg_1.4.7-2_amd64 + rrdtool-tcl_1.4.7-2_amd64 + rrep_1.3.3-2_amd64 + rrootage_0.23a-9_amd64 + rs_20120414-1_amd64 + rsakeyfind_1:1.0-2.1_amd64 + rsh-client_0.17-15_amd64 + rsh-redone-client_85-1_amd64 + rsh-redone-server_85-1_amd64 + rsh-server_0.17-15_amd64 + rsibreak_4:0.11-2_amd64 + rsrce_0.2.2_amd64 + rss-glx_0.9.1-5+b4_amd64 + rss2irc_0.4.2-4_amd64 + rssh_2.3.3-6_amd64 + rsstail_1.8-1_amd64 + rstat-client_4.0.1-8_amd64 + rstatd_4.0.1-8_amd64 + rsync_3.0.9-4_amd64 + rsyncrypto_1.12-1+b1_amd64 + rsyslog_7.4.4-1~bpo70+1_amd64 + rsyslog-gnutls_5.8.11-3_amd64 + rsyslog-gssapi_5.8.11-3_amd64 + rsyslog-mysql_5.8.11-3_amd64 + rsyslog-pgsql_5.8.11-3_amd64 + rsyslog-relp_5.8.11-3_amd64 + rt-tests_0.83-1+deb7u1_amd64 + rt4-extension-authenexternalauth_0.10-4_amd64 + rtai_3.8.1-4_amd64 + rtai-source_3.8.1-4_amd64 + rtgui_0.2.81-4_amd64 + rtkit_0.10-2+wheezy1_amd64 + rtmpdump_2.4+20111222.git4e06e21-1_amd64 + rtorrent_0.9.2-1_amd64 + rtpproxy_1.2.1-1.1_amd64 + rubberband-cli_1.3-1.3_amd64 + rubberband-ladspa_1.3-1.3_amd64 + rubberband-vamp_1.3-1.3_amd64 + rubrica_2.0-1.3_amd64 + ruby-akonadi_4:4.8.4-1_amd64 + ruby-atk_1.1.3-2+b1_amd64 + ruby-atk-dbg_1.1.3-2+b1_amd64 + ruby-bcrypt_3.0.1-2_amd64 + ruby-bdb_0.6.5-7_amd64 + ruby-bluecloth_2.2.0-3_amd64 + ruby-cairo_1.12.2-2_amd64 + ruby-dataobjects-mysql_0.10.8-4_amd64 + ruby-dataobjects-postgres_0.10.8-2_amd64 + ruby-dataobjects-sqlite3_0.10.8-3_amd64 + ruby-debian_0.3.8+b1_amd64 + ruby-dep-selector_0.0.8-1_amd64 + ruby-eb_2.6-2_amd64 + ruby-em-http-request_0.3.0-1_amd64 + ruby-escape-utils_0.2.4-3_amd64 + ruby-eventmachine_0.12.10-3_amd64 + ruby-exif_0.1.2-20_amd64 + ruby-fast-stemmer_1.0.1-1_amd64 + ruby-fast-xs_0.8.0-3_amd64 + ruby-ferret_0.11.8.4+debian-2_amd64 + ruby-ffi_1.0.11debian-5_amd64 + ruby-fftw3_0.4-4_amd64 + ruby-fftw3-dbg_0.4-4_amd64 + ruby-fssm_0.2.9-2_amd64 + ruby-fusefs_0.7.0-3_amd64 + ruby-gd_0.8.0-3_amd64 + ruby-gdk-pixbuf2_1.1.3-2+b1_amd64 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_amd64 + ruby-gherkin_2.4.6-1_amd64 + ruby-gio2_1.1.3-2+b1_amd64 + ruby-gio2-dbg_1.1.3-2+b1_amd64 + ruby-glib2_1.1.3-2+b1_amd64 + ruby-glib2-dbg_1.1.3-2+b1_amd64 + ruby-globalhotkeys_0.3.2-3_amd64 + ruby-gnome2-dev_1.1.3-2+b1_amd64 + ruby-god_0.12.1-1_amd64 + ruby-goocanvas_1.1.3-2+b1_amd64 + ruby-goocanvas-dbg_1.1.3-2+b1_amd64 + ruby-gpgme_2.0.0-2_amd64 + ruby-grib_0.2.2-3_amd64 + ruby-grib-dbg_0.2.2-3_amd64 + ruby-gsl_1.14.7+dfsg-1_amd64 + ruby-gsl-dbg_1.14.7+dfsg-1_amd64 + ruby-gstreamer_1.1.3-2+b1_amd64 + ruby-gstreamer-dbg_1.1.3-2+b1_amd64 + ruby-gtk2_1.1.3-2+b1_amd64 + ruby-gtk2-dbg_1.1.3-2+b1_amd64 + ruby-gtksourceview2_1.1.3-2+b1_amd64 + ruby-gtksourceview2-dbg_1.1.3-2+b1_amd64 + ruby-guestfs_1:1.18.1-1+deb7u3_amd64 + ruby-hivex_1.3.6-2_amd64 + ruby-hpricot_0.8.6-3_amd64 + ruby-inotify_0.0.2-6_amd64 + ruby-json_1.7.3-3_amd64 + ruby-kakasi_2002.09.28-3_amd64 + ruby-kde4_4:4.8.4-1_amd64 + ruby-kde4-dbg_4:4.8.4-1_amd64 + ruby-kgio_2.7.3-1_amd64 + ruby-krb5-auth_0.7-4_amd64 + ruby-lapack_1.5-1_amd64 + ruby-lapack-dbg_1.5-1_amd64 + ruby-ldap_0.9.12-2_amd64 + ruby-libvirt_0.4.0-1_amd64 + ruby-libxml_2.3.2-1_amd64 + ruby-mecab_0.99.3-2_amd64 + ruby-msgpack_0.4.6-4_amd64 + ruby-multibitnums_0.1.4-1_amd64 + ruby-multibitnums-dbg_0.1.4-1_amd64 + ruby-mysql_2.8.2+gem2deb-3_amd64 + ruby-narray_0.6.0.1-1_amd64 + ruby-narray-dbg_0.6.0.1-1_amd64 + ruby-ncurses_1.3.1-2_amd64 + ruby-netcdf_0.6.6-1_amd64 + ruby-netcdf-dbg_0.6.6-1_amd64 + ruby-nokogiri_1.5.5-1_amd64 + ruby-nora_1:0.0.20041021-5.1_amd64 + ruby-odbc_0.99994-4_amd64 + ruby-odbc-dbg_0.99994-4_amd64 + ruby-oily-png_1.0.2-2_amd64 + ruby-okular_4:4.8.4-1_amd64 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_amd64 + ruby-pango_1.1.3-2+b1_amd64 + ruby-pango-dbg_1.1.3-2+b1_amd64 + ruby-passenger_3.0.13debian-1+deb7u1_amd64 + ruby-password_0.5.3-3_amd64 + ruby-pcap_0.7.0-2_amd64 + ruby-pg_0.13.2-2_amd64 + ruby-phonon_4:4.8.4-1_amd64 + ruby-plasma_4:4.8.4-1_amd64 + ruby-playerc_3.0.2+dfsg-4+b1_amd64 + ruby-poppler_1.1.3-2+b1_amd64 + ruby-poppler-dbg_1.1.3-2+b1_amd64 + ruby-posix-spawn_0.3.6-1_amd64 + ruby-prof_0.7.3-1.1_amd64 + ruby-qdbm_1.8.78-2_amd64 + ruby-qpid_0.16-6+deb7u1_amd64 + ruby-qscintilla2_4:4.8.4-1_amd64 + ruby-qt4_4:4.8.4-1_amd64 + ruby-qt4-dbg_4:4.8.4-1_amd64 + ruby-qt4-declarative_4:4.8.4-1_amd64 + ruby-qt4-script_4:4.8.4-1_amd64 + ruby-qt4-test_4:4.8.4-1_amd64 + ruby-qt4-uitools_4:4.8.4-1_amd64 + ruby-qt4-webkit_4:4.8.4-1_amd64 + ruby-raindrops_0.9.0-1_amd64 + ruby-rdiscount_1.6.8-3_amd64 + ruby-redcarpet_2.1.1-3_amd64 + ruby-redcloth_4.2.9-2_amd64 + ruby-remctl_3.2-4_amd64 + ruby-revolution_0.5-8_amd64 + ruby-rhash_1.2.9-8+deb7u1_amd64 + ruby-rmagick_2.13.1-6_amd64 + ruby-rsvg2_1.1.3-2+b1_amd64 + ruby-rsvg2-dbg_1.1.3-2+b1_amd64 + ruby-sdl_2.1.2-3_amd64 + ruby-sdl-dbg_2.1.2-3_amd64 + ruby-selinux_2.1.9-5_amd64 + ruby-semanage_2.1.6-6_amd64 + ruby-sequel-pg_1.4.0-1_amd64 + ruby-serialport_1.1.0-1_amd64 + ruby-shadow_2.1.4-2_amd64 + ruby-sigar_0.7.2-1_amd64 + ruby-soprano_4:4.8.4-1_amd64 + ruby-sqlite3_1.3.6-2_amd64 + ruby-systemtimer_1.2.3-1_amd64 + ruby-taglib2_0.1.3-1_amd64 + ruby-termios_0.9.6-2_amd64 + ruby-tioga_1.14-3_amd64 + ruby-tmail_1.2.7.1-3+deb7u1_amd64 + ruby-tokyocabinet_1.31-2+b1_amd64 + ruby-tomoe_0.6.0-1.3_amd64 + ruby-uconv_0.5.3-2_amd64 + ruby-unf-ext_0.0.5-2_amd64 + ruby-usb_0.2.1-2_amd64 + ruby-vte_1.1.3-2+b1_amd64 + ruby-vte-dbg_1.1.3-2+b1_amd64 + ruby-xmlparser_0.7.2-2_amd64 + ruby-xmmsclient_0.8+dfsg-4_amd64 + ruby-yajl_1.1.0-2_amd64 + ruby-zoom_0.4.1-5_amd64 + ruby1.8_1.8.7.358-7.1+deb7u1_amd64 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_amd64 + ruby1.9.1_1.9.3.194-8.1+deb7u2_amd64 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_amd64 + rumor_1.0.5-1_amd64 + rungetty_1.2-15_amd64 + runit_2.1.1-6.2_amd64 + runlim_1.7-1_amd64 + rusers_0.17-8_amd64 + rusersd_0.17-8_amd64 + rush_1.7+dfsg-1+deb7u1_amd64 + rwall_0.17-7_amd64 + rwalld_0.17-7_amd64 + rwho_0.17-12_amd64 + rwhod_0.17-12_amd64 + rxp_1.5.0-1_amd64 + rxvt_1:2.6.4-14_amd64 + rxvt-beta_2.7.10-6_amd64 + rxvt-ml_1:2.6.4-14_amd64 + rxvt-unicode_9.15-2_amd64 + rxvt-unicode-256color_9.15-2_amd64 + rxvt-unicode-lite_9.15-2_amd64 + rxvt-unicode-ml_9.15-2_amd64 + rygel_0.14.3-2+deb7u1_amd64 + rygel-1.0-dev_0.14.3-2+deb7u1_amd64 + rygel-dbg_0.14.3-2+deb7u1_amd64 + rygel-gst-launch_0.14.3-2+deb7u1_amd64 + rygel-mediathek_0.14.3-2+deb7u1_amd64 + rygel-playbin_0.14.3-2+deb7u1_amd64 + rygel-preferences_0.14.3-2+deb7u1_amd64 + rygel-tracker_0.14.3-2+deb7u1_amd64 + rzip_2.1-1_amd64 + s3d_0.2.2-8_amd64 + s3d-dbg_0.2.2-8_amd64 + s3dfm_0.2.2-8_amd64 + s3dosm_0.2.2-8_amd64 + s3dvt_0.2.2-8_amd64 + s3dx11gate_0.2.2-8_amd64 + s3ql_1.11.1-3_amd64 + s3ql-dbg_1.11.1-3_amd64 + s51dude_0.2.0-1.1_amd64 + sa-exim_4.2.1-14_amd64 + sac_1.9b5-3_amd64 + safecat_1.13-2_amd64 + safecopy_1.6-1_amd64 + sagan_0.2.1.r1-1+b1_amd64 + sagasu_2.0.10-1_amd64 + saidar_0.17-1_amd64 + sailcut_1.3.5-2_amd64 + saint_2.3.3-1_amd64 + sakura_3.0.4-2_amd64 + sam2p_0.49.1-1_amd64 + samba_2:3.6.6-6+deb7u2_amd64 + samba-common-bin_2:3.6.6-6+deb7u2_amd64 + samba-dbg_2:3.6.6-6+deb7u2_amd64 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_amd64 + samba-tools_2:3.6.6-6+deb7u2_amd64 + samba4_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-clients_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-dev_4.0.0~beta2+dfsg1-3.2_amd64 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_amd64 + samdump2_1.1.1-1.1_amd64 + samhain_2.8.3a-1+deb7u1_amd64 + sampleicc-tools_1.6.4-1+b1_amd64 + samplerate-programs_0.1.8-5_amd64 + samtools_0.1.18-1_amd64 + sanduhr_1.93-4_amd64 + sane_1.0.14-9_amd64 + sane-utils_1.0.22-7.4_amd64 + sanlock_2.2-2_amd64 + saods9_7.0.1+dfsg-1_amd64 + saods9-blt_7.0.1+dfsg-1_amd64 + sapphire_0.15.8-9_amd64 + sarg_2.3.2-2_amd64 + sary_1:1.2.0-2.1_amd64 + sash_3.7-12_amd64 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_amd64 + savi_1.4.5-4_amd64 + sawfish_1:1.5.3-2.1+b1_amd64 + sawfish-dbg_1:1.5.3-2.1+b1_amd64 + saytime_1.0-24_amd64 + sbcl_2:1.0.57.0-2_amd64 + sbnc_1.2-26_amd64 + sbnc-dbg_1.2-26_amd64 + sbnc-mysql_1.2-26_amd64 + sbnc-tcl_1.2-26_amd64 + sbox-dtc_1.11.6-1_amd64 + sbrsh_7.6.1_amd64 + sbrshd_7.6.1_amd64 + sc_7.16-3_amd64 + scalapack-mpi-test_1.8.0-9_amd64 + scalapack-pvm-test_1.8.0-9_amd64 + scalpel_1.60-1_amd64 + scamper_20111202b-1_amd64 + scanbuttond_0.2.3.cvs20090713-8_amd64 + scanlogd_2.2.5-3.1_amd64 + scanmem_0.12-2_amd64 + scanssh_2.0-4+b3_amd64 + scantool_1.21+dfsg-3_amd64 + scantv_3.102-3_amd64 + scdaemon_2.0.19-2+deb7u1_amd64 + schedtool_1.3.0-1_amd64 + scheme2c_2011.07.26-5_amd64 + scheme48_1.8+dfsg-1_amd64 + scheme9_2010.11.13-2_amd64 + schism_2:0+20110101-1_amd64 + schroot_1.6.4-4_amd64 + schroot-dbg_1.6.4-4_amd64 + scid_1:4.3.0.cvs20120311-1_amd64 + scidavis_0.2.4-3.3_amd64 + scilab-full-bin_5.3.3-10_amd64 + scilab-full-bin-dbg_5.3.3-10_amd64 + scilab-getfem++_4.1.1+dfsg1-11_amd64 + scilab-include_5.3.3-10_amd64 + scilab-jims_1.0-1_amd64 + scilab-minimal-bin_5.3.3-10_amd64 + scilab-minimal-bin-dbg_5.3.3-10_amd64 + scilab-scimysql_0.1.1-5_amd64 + scim_1.4.13-5_amd64 + scim-canna_1.0.0-4.2_amd64 + scim-chewing_0.3.4-1.2_amd64 + scim-gtk-immodule_1.4.13-5_amd64 + scim-kmfl-imengine_0.9.8-1.1_amd64 + scim-m17n_0.2.3-3_amd64 + scim-modules-socket_1.4.13-5_amd64 + scim-modules-table_0.5.9-2_amd64 + scim-mozc_1.5.1090.102-4+deb7u1_amd64 + scim-skk_0.5.2-7.2_amd64 + scim-thai_0.1.3-1_amd64 + scim-unikey_0.3.1+debian-3.1_amd64 + sciplot-dev_1.36-15_amd64 + sciplot1_1.36-15_amd64 + scite_3.0.2-3_amd64 + sciteproj_0.7.05-2_amd64 + scli_0.4.0-2_amd64 + scm_5e5-3.2_amd64 + scmxx_0.9.0-2.3_amd64 + scorched3d_43.2a.dfsg-6.1_amd64 + scorched3d-dbg_43.2a.dfsg-6.1_amd64 + scotch_5.1.12b.dfsg-1.2_amd64 + scotch-dbg_5.1.12b.dfsg-1.2_amd64 + scottfree_1.14-9_amd64 + scratchbox2_2.2.4-1debian1_amd64 + screader_1.8-7_amd64 + screen_4.1.0~20120320gitdb59704-7_amd64 + screenie-qt_0.0~git20100701-1_amd64 + screentest_2.0-2.1_amd64 + scribus_1.4.0.dfsg+r17300-1.1_amd64 + scrobble-cli_0.10-4_amd64 + scrollz_2.1-1.1_amd64 + scrot_0.8-13_amd64 + scrounge-ntfs_0.9-6_amd64 + scrub_2.4.1-1_amd64 + scrypt_1.1.6-3_amd64 + scsitools_0.12-2.1_amd64 + scummvm_1.4.1-1_amd64 + scute_1.4.0-4_amd64 + sdate_0.3.1+nmu1_amd64 + sdcc_3.1.0+dfsg-1_amd64 + sdcc-ucsim_3.1.0+dfsg-1_amd64 + sdcv_0.4.2-16_amd64 + sdl-ball_1.01-3_amd64 + sdlbasic_0.0.20070714-4_amd64 + sdlbasic-dbg_0.0.20070714-4_amd64 + sdlbrt_0.0.20070714-4_amd64 + sdop_0.71-1_amd64 + sdpa_7.3.8+dfsg-1_amd64 + sdpam_7.3.8+dfsg-1_amd64 + sdparm_1.07-1_amd64 + sdpnetstat_1.60-1_amd64 + seahorse_3.4.1-2_amd64 + seahorse-daemon_3.2.2-1_amd64 + searchandrescue_1.4.0-2_amd64 + searchmonkey_0.8.1-8_amd64 + seccure_0.3-3_amd64 + secure-delete_3.1-5_amd64 + sed_4.2.1-10_amd64 + seed_3.2.0-2_amd64 + seesat5_0.90.10-1.1_amd64 + seetxt_0.72-4_amd64 + selinux-utils_2.1.9-5_amd64 + sendfile_2.1b.20080616-5.2_amd64 + sendip_2.5-5_amd64 + sendmail-bin_8.14.4-4_amd64 + sensible-mda_8.14.4-4_amd64 + sensord_1:3.3.2-2+deb7u1_amd64 + sensors-applet_3.0.0-0.2_amd64 + sentinella_0.9.0-3_amd64 + sepol-utils_2.1.4-3_amd64 + seq24_0.9.2-2_amd64 + seqan-apps_1.3.1-1_amd64 + ser2net_2.6-1_amd64 + serd-dbg_0.14.0~dfsg0-2_amd64 + serdi_0.14.0~dfsg0-2_amd64 + service-wrapper_3.5.3+repack-0+nmu1_amd64 + servicefw_1.2.0-3_amd64 + setcd_1.5-6_amd64 + setools_3.3.7-3_amd64 + setpwc_1.2-3.1_amd64 + setserial_2.17-47_amd64 + sextractor_2.8.6+dfsg-1_amd64 + seyon_2.20c-31_amd64 + sfftobmp_3.1.3-1+b1_amd64 + sfftw-dev_2.1.5-1_amd64 + sfftw2_2.1.5-1_amd64 + sffview_0.4.1-2+b1_amd64 + sflphone-daemon_1.1.0-2+b1_amd64 + sflphone-evolution_1.1.0-2+b1_amd64 + sflphone-gnome_1.1.0-2+b1_amd64 + sfront_0.98-1_amd64 + sfst_1.2.0-1.2_amd64 + sg3-utils_1.33-1_amd64 + sgf2dg_4.026-10_amd64 + sgrep_1.94a-4_amd64 + sgt-puzzles_9411-1_amd64 + shapelib_1.2.10-7_amd64 + shaperd_0.2.1-5.2_amd64 + shapetools_1.4pl6-11_amd64 + shared-mime-info_1.0-1+b1_amd64 + sharutils_1:4.11.1-1_amd64 + shed_1.15-2_amd64 + shell-fm_0.7+git20100414-1_amd64 + shellinabox_2.14-1_amd64 + shelltestrunner_1.2.1-3_amd64 + shelxle_1.0.564-1_amd64 + shiboken_1.1.1-1_amd64 + shiboken-dbg_1.1.1-1_amd64 + shisa_1.0.1-2_amd64 + shisen.app_1.2.1-1+b5_amd64 + shishi_1.0.1-2_amd64 + shishi-dbg_1.0.1-2_amd64 + shishi-kdc_1.0.1-2_amd64 + shntool_3.0.7-1_amd64 + shoes_0.r396-5.3_amd64 + shotdetect_1.0.86-1_amd64 + shotwell_0.12.3-2+deb7u1_amd64 + shotwell-dbg_0.12.3-2+deb7u1_amd64 + showfoto_4:2.6.0-1+b2_amd64 + showq_0.4.1+git20090622+dfsg0-1+b1_amd64 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_amd64 + shush_1.2.3-2_amd64 + sibsim4_0.20-1_amd64 + sic_1.1-5_amd64 + sidplay_2.0.9-6_amd64 + sidplay-base_1.0.9-6_amd64 + sidplayfp_0.3.1-1_amd64 + siege_2.70-3_amd64 + siggen_2.3.10-5_amd64 + sigma-align_1.1.3-3_amd64 + signing-party_1.1.4-1_amd64 + sigrok-cli_0.3.0-2_amd64 + sigscheme_0.8.5-2.1_amd64 + sigviewer_0.5.1+svn556-1+b2_amd64 + silentjack_0.3-2_amd64 + sim4_0.0.20030921-3_amd64 + simgrid_3.7.1-1_amd64 + simh_3.8.1-5_amd64 + simhash_0.0.20110213-1_amd64 + similarity-tester_2.62-1_amd64 + simple-scan_3.4.2-1_amd64 + simpleopal_3.10.4~dfsg-3_amd64 + simpleproxy_3.4-5_amd64 + simulavr_0.1.2.2-6.2_amd64 + simulpic_1:2005-1-28-8_amd64 + simutrans_111.2.2-1_amd64 + simutrans-makeobj_111.2.2-1_amd64 + since_1.1-2_amd64 + sineshaper_0.4.2-7_amd64 + sinfo_0.0.46-2_amd64 + sip-tester_1:3.2-1_amd64 + sipcalc_1.1.5-1_amd64 + sipcrack_0.2-2+b1_amd64 + sipdialer_1.8.5-4_amd64 + siproxd_1:0.8.1-3+b1_amd64 + sipsak_0.9.6-2.1+b1_amd64 + sipwitch_1.2.4-1_amd64 + sipwitch-cgi_1.2.4-1_amd64 + sispmctl_3.1-1_amd64 + sitecopy_1:0.16.6-4_amd64 + sitplus_1.0.3-3_amd64 + sjeng_11.2-8_amd64 + skalibs-dev_0.47-1_amd64 + skanlite_0.8-2_amd64 + skanlite-dbg_0.8-2_amd64 + sketch_1:0.3.7-1_amd64 + skipfish_2.05b-1_amd64 + skksearch_0.0-21_amd64 + skktools_1.3.2-3_amd64 + skrooge_1.3.0-1_amd64 + sks_1.1.3-2_amd64 + sks-ecc_0.93-2_amd64 + skyeye_1.2.5-2.1_amd64 + skytools_2.1.13-2_amd64 + skytools-modules-9.1_2.1.13-2_amd64 + sl_3.03-17_amd64 + slang-cfitsio_0.3.8+nosvn-4.1_amd64 + slang-curl_0.2.1-4.2_amd64 + slang-expat_0.5.0-2_amd64 + slang-gdbm_1.7.1-4_amd64 + slang-gsl_0.7.0-5.1_amd64 + slang-histogram_0.3.2a-3.1_amd64 + slang-pvm_0.1.5-12.1_amd64 + slang-sqlite_0.4.0-3.1_amd64 + slang-wildcard_0.5.0-2_amd64 + slang-xfig_0.2.0~.35-1.1_amd64 + slapd_2.4.31-1+nmu2_amd64 + slapd-dbg_2.4.31-1+nmu2_amd64 + slapd-smbk5pwd_2.4.31-1+nmu2_amd64 + slashem_0.0.7E7F3-6_amd64 + slashem-common_0.0.7E7F3-6_amd64 + slashem-gtk_0.0.7E7F3-6_amd64 + slashem-sdl_0.0.7E7F3-6_amd64 + slashem-x11_0.0.7E7F3-6_amd64 + sleepd_2.04_amd64 + sleepenh_1.3-1_amd64 + sleuthkit_3.2.3-2_amd64 + slim_1.3.4-2_amd64 + slimevolley_2.4.2+dfsg-1_amd64 + slirp_1:1.0.17-6_amd64 + slmon_0.5.13-2.2_amd64 + sloccount_2.26-5_amd64 + slpd_1.2.1-9_amd64 + slptool_1.2.1-9_amd64 + slrn_1.0.0~pre18-1.3_amd64 + slrnface_2.1.1-6_amd64 + slrnpull_1.0.0~pre18-1.3_amd64 + slsh_2.2.4-15_amd64 + sludge-compiler_2.2-1_amd64 + sludge-devkit_2.2-1_amd64 + sludge-engine_2.2-1_amd64 + slurm_0.4.0-1_amd64 + slurm-drmaa-dev_1.0.4-3_amd64 + slurm-drmaa1_1.0.4-3_amd64 + slurm-llnl_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins_2.3.4-2+b1_amd64 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_amd64 + slurm-llnl-slurmdbd_2.3.4-2+b1_amd64 + slurm-llnl-sview_2.3.4-2+b1_amd64 + slv2-jack_0.6.6+dfsg1-2_amd64 + sm_0.19-1_amd64 + sm-archive_1.7-1_amd64 + sma_1.4-2_amd64 + smartdimmer_0.8b4+cvs20100914-4_amd64 + smartlist_3.15-22_amd64 + smartmontools_5.41+svn3365-1_amd64 + smartpm-core_1.4-2_amd64 + smb-nat_1:1.0-4_amd64 + smb4k_1.0.1-1_amd64 + smbc_1.2.2-3_amd64 + smbclient_2:3.6.6-6+deb7u2_amd64 + smbnetfs_0.5.3a-1_amd64 + smc_1.9+git20120222-1+b1_amd64 + smcroute_0.95-1+deb7u1_amd64 + smf-utils_1.3-2_amd64 + smitools_0.4.8+dfsg2-7_amd64 + smlnj_110.74-2_amd64 + smlnj-runtime_110.74-2_amd64 + smoke-dev-tools_4:4.8.4-1_amd64 + smokegen-dbg_4:4.8.4-1_amd64 + smp-utils_0.96-1_amd64 + smpeg-gtv_0.4.5+cvs20030824-5_amd64 + smpeg-plaympeg_0.4.5+cvs20030824-5_amd64 + smplayer_0.8.0-1+deb7u1_amd64 + smsclient_2.0.8z-10_amd64 + smstools_3.1.14-1.2_amd64 + sn_0.3.8-10.1_amd64 + snacc_1.3.1-1_amd64 + snake4_1.0.12-14_amd64 + snappea_3.0d3-22_amd64 + snappea-dev_3.0d3-22_amd64 + snappy_0.2-1_amd64 + snarf_7.0-5_amd64 + snd-gtk-jack_11.7-2_amd64 + snd-gtk-pulse_11.7-2_amd64 + snd-nox_11.7-2_amd64 + sndfile-programs_1.0.25-5_amd64 + sndfile-tools_1.03-2+b1_amd64 + sng_1.0.2-7_amd64 + sniffit_0.3.7.beta-16.1_amd64 + snimpy_0.6.3-1_amd64 + snmp_5.4.3~dfsg-2.7_amd64 + snmpd_5.4.3~dfsg-2.7_amd64 + snmptrapfmt_1.14+nmu1_amd64 + snooper_19991202-7.1_amd64 + snoopy_1.8.0-5_amd64 + snort_2.9.2.2-3_amd64 + snort-common-libraries_2.9.2.2-3_amd64 + snort-mysql_2.9.2.2-3_amd64 + snort-pgsql_2.9.2.2-3_amd64 + snowdrop_0.02b-10_amd64 + sntop_1.4.3-4_amd64 + so-synth-lv2_1.4-2_amd64 + sobby_0.4.8-1_amd64 + socat_1.7.1.3-1.4_amd64 + socket_1.1-10_amd64 + socklog_2.1.0-8_amd64 + socks4-clients_4.3.beta2-18_amd64 + socks4-server_4.3.beta2-18_amd64 + sockstat_0.3-1.1_amd64 + socnetv_0.90-3_amd64 + sofa-apps_1.0~beta4-7_amd64 + sofia-sip-bin_1.12.11+20110422-1_amd64 + softflowd_0.9.9-1_amd64 + softhsm_1.3.3-2_amd64 + softhsm-common_1.3.3-2_amd64 + softhsm-dbg_1.3.3-2_amd64 + sogo_1.3.16-1_amd64 + sogo-dbg_1.3.16-1_amd64 + solarpowerlog_0.23a-2_amd64 + solfege-oss_3.20.6-1_amd64 + solid-pop3d_0.15-26_amd64 + sonic_0.1.17-1.1_amd64 + sooperlooper_1.6.18~dfsg0-1_amd64 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64 + sopwith_1.7.4-6_amd64 + sord-dbg_0.8.0~dfsg0-1_amd64 + sordi_0.8.0~dfsg0-1_amd64 + sortmail_1:2.4-1_amd64 + sound-juicer_3.4.0-3_amd64 + soundkonverter_1.5.0-1_amd64 + soundmodem_0.16-1+b1_amd64 + soundstretch_1.6.0-3_amd64 + soundstretch-dbg_1.6.0-3_amd64 + source-highlight_3.1.6-1.1_amd64 + sox_14.4.0-3_amd64 + sp_1.3.4-1.2.1-47.1+b1_amd64 + spacearyarya_1.0.2-7_amd64 + spacenavd_0.5-1_amd64 + spacezero_0.80.06-1_amd64 + spamass-milter_0.3.2-1_amd64 + spamc_3.3.2-5_amd64 + spamoracle_1.4-14_amd64 + spamprobe_1.4d-11_amd64 + spark_2011.0.deb-5_amd64 + spass_3.7-3_amd64 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_amd64 + spawn-fcgi_1.6.3-1_amd64 + spd_1.3.0-1_amd64 + specimen_0.5.2rc3-5_amd64 + spectools_201108r1-2_amd64 + spectrwm_1.0.0-1_amd64 + speech-dispatcher_0.7.1-6.2_amd64 + speech-dispatcher-dbg_0.7.1-6.2_amd64 + speech-tools_1:2.1~release-5_amd64 + speechd-up_0.5~20110719-2_amd64 + speedcrunch_0.10.1-4_amd64 + speedy-cgi-perl_2.22-13+b2_amd64 + speex_1.2~rc1-7_amd64 + spek_0.7-3_amd64 + spell_1.0-24_amd64 + spellutils_0.7-5_amd64 + spew_1.0.8-1_amd64 + spfquery_1.2.9-7_amd64 + sphinxsearch_2.0.4-1.1_amd64 + spice-client_0.11.0-1+deb7u1_amd64 + spice-client-gtk_0.12-5_amd64 + spice-vdagent_0.10.1-1_amd64 + spidermonkey-bin_17.0.10esr-1~deb7u1_amd64 + spim_8.0+dfsg-5.1_amd64 + spinner_1.2.4-3_amd64 + spl-core_1.0~pre6-3.1+b1_amd64 + spl-curl_1.0~pre6-3.1+b1_amd64 + spl-dev_1.0~pre6-3.1+b1_amd64 + spl-mysql_1.0~pre6-3.1+b1_amd64 + spl-postgres_1.0~pre6-3.1+b1_amd64 + spl-sdl_1.0~pre6-3.1+b1_amd64 + spl-sqlite_1.0~pre6-3.1+b1_amd64 + spl-webspl_1.0~pre6-3.1+b1_amd64 + spl-xml_1.0~pre6-3.1+b1_amd64 + splat_1.4.0-2_amd64 + splay_0.9.5.2-13_amd64 + spline_1.2-1_amd64 + splint_3.1.2.dfsg1-2_amd64 + splitvt_1.6.6-11_amd64 + spotlighter_0.1-1_amd64 + spout_1.3-2_amd64 + spring_88.0+dfsg1-1.1_amd64 + spring-dbg_88.0+dfsg1-1.1_amd64 + springlobby_0.147-1_amd64 + springlobby-dbg_0.147-1_amd64 + sqcwa_0.3-3.1_amd64 + sqlheavy-utils_0.1.1-1_amd64 + sqlite_2.8.17-7_amd64 + sqlite3_3.7.13-1+deb7u1_amd64 + sqlitebrowser_2.0.0~beta1+ds.1-3_amd64 + sqsh_2.1.7-1_amd64 + squashfs-tools_1:4.2-5_amd64 + squashfs-tools-dbg_1:4.2-5_amd64 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_amd64 + squeak-vm_1:4.4.7.2357-1.1_amd64 + squeeze_0.2.3-12_amd64 + squid_2.7.STABLE9-4.1_amd64 + squid-cgi_3.1.20-2.2_amd64 + squid3_3.1.20-2.2_amd64 + squid3-dbg_3.1.20-2.2_amd64 + squidclient_3.1.20-2.2_amd64 + squidguard_1.5-1_amd64 + squidview_0.79-2_amd64 + squizz_0.99a-2_amd64 + sqwebmail_0.68.2-1_amd64 + sra-toolkit_2.1.7a-1_amd64 + sra-toolkit-libs-dev_2.1.7a-1_amd64 + sra-toolkit-libs0_2.1.7a-1_amd64 + src2tex_2.12h-8_amd64 + srecord_1.58-1+b1_amd64 + sredird_2.2.1-1.1_amd64 + srg_1.3.6-1_amd64 + srptools_0.0.4-1.2_amd64 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_amd64 + ss-dev_2.0-1.42.5-1.1_amd64 + ssdeep_2.7-2_amd64 + ssed_3.62-7_amd64 + ssh-askpass_1:1.2.4.1-9_amd64 + ssh-askpass-fullscreen_0.3-3.1_amd64 + ssh-askpass-gnome_1:6.0p1-4_amd64 + ssh-contact-client_0.7-1_amd64 + ssh-contact-service_0.7-1_amd64 + sshfs_2.4-1_amd64 + sshfs-dbg_2.4-1_amd64 + sshguard_1.5-5_amd64 + sshpass_1.05-1_amd64 + ssldump_0.9b3-4.1_amd64 + sslh_1.13b-3.2_amd64 + sslscan_1.8.2-2_amd64 + sslsniff_0.8-3+b1_amd64 + ssmping_0.9.1-3_amd64 + ssmtp_2.64-7_amd64 + sssd_1.8.4-2_amd64 + sssd-tools_1.8.4-2_amd64 + ssss_0.5-2+b1_amd64 + ssvnc_1.0.29-2_amd64 + staden-io-lib-utils_1.12.4-1_amd64 + stalin_0.11-5_amd64 + stalonetray_0.8.1-1_amd64 + stardata-common_0.8_amd64 + stardict-gnome_3.0.1-9.2_amd64 + stardict-gtk_3.0.1-9.2_amd64 + stardict-plugin_3.0.1-9.2_amd64 + stardict-plugin-espeak_3.0.1-9.2_amd64 + stardict-plugin-festival_3.0.1-9.2_amd64 + stardict-plugin-spell_3.0.1-9.2_amd64 + stardict-tools_3.0.2-3+b1_amd64 + starfighter_1.2-2_amd64 + starplot_0.95.5-4_amd64 + starpu-examples_1.0.1+dfsg-1_amd64 + starpu-tools_1.0.1+dfsg-1_amd64 + starpu-top_1.0.1+dfsg-1_amd64 + starvoyager_0.4.4-5.1_amd64 + statgrab_0.17-1_amd64 + statserial_1.1-22_amd64 + stax_1.0-13+b1_amd64 + steadyflow_0.2.0-1_amd64 + stealth_2.10.00-1_amd64 + steghide_0.5.1-9+b2_amd64 + stella_3.7.2-1_amd64 + stellarium_0.11.3-1+deb7u1+b1_amd64 + step_4:4.8.4-1_amd64 + stepbill.app_2.4-5+b5_amd64 + steptalk_0.10.0-5+b1_amd64 + stimfit_0.10.18-1.1+b1_amd64 + stimfit-dbg_0.10.18-1.1+b1_amd64 + stk_4.4.3-2_amd64 + stockfish_2.1.1+git20111006-2_amd64 + stone_2.3.e-2+b1_amd64 + stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64 + stormbaancoureur_2.1.6-1_amd64 + strace_4.5.20-2.3_amd64 + streamer_3.102-3_amd64 + streamripper_1.64.6-1_amd64 + stress_1.0.1-1_amd64 + stressapptest_1.0.4-2_amd64 + stretchplayer_0.503-2_amd64 + stretchplayer-dbg_0.503-2_amd64 + strigi-client_0.7.7-3_amd64 + strigi-daemon_0.7.7-3_amd64 + strigi-dbg_0.7.7-3_amd64 + strigi-utils_0.7.7-3_amd64 + strongswan-dbg_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev1_4.5.2-1.5+deb7u2_amd64 + strongswan-ikev2_4.5.2-1.5+deb7u2_amd64 + strongswan-nm_4.5.2-1.5+deb7u2_amd64 + strongswan-starter_4.5.2-1.5+deb7u2_amd64 + structure-synth_1.5.0-1.1_amd64 + structure-synth-dbg_1.5.0-1.1_amd64 + stterm_0.0~20120124+hg226-2_amd64 + stud_0.3-3_amd64 + stun_0.96.dfsg-6_amd64 + stunnel4_3:4.53-1.1_amd64 + stx-btree-demo_0.8.6-1_amd64 + stymulator_0.21a~dfsg-1_amd64 + styx_1.8.0-1.1_amd64 + styx-dev_1.8.0-1.1_amd64 + subcommander_2.0.0~b5p2-5_amd64 + subnetcalc_2.1.3-1_amd64 + subsurface_1.2-1_amd64 + subtitlecomposer_0.5.3-3+b1_amd64 + subtitleeditor_0.33.0-1_amd64 + subtle_0.11.3224-xi-1_amd64 + subversion_1.6.17dfsg-4+deb7u4_amd64 + suck_4.3.2-11_amd64 + suckless-tools_38-2_amd64 + sucrack_1.2.3-0.9_amd64 + sudo_1.8.5p2-1+nmu1_amd64 + sudo-ldap_1.8.5p2-1+nmu1_amd64 + sudoku_1.0.1-4_amd64 + sugar-artwork-0.84_0.84.4-3_amd64 + sugar-artwork-0.88_0.88.1-4_amd64 + sugar-artwork-0.96_0.96.2-1_amd64 + suil-dbg_0.6.4~dfsg0-3_amd64 + summain_0.14-1_amd64 + sumo_0.15.0~dfsg-2_amd64 + sunclock_3.57-2_amd64 + sunpinyin-data_0.1.22+20120112-1_amd64 + sunpinyin-utils_2.0.3+git20120607-1_amd64 + sup_20100519-1_amd64 + super_3.30.0-6_amd64 + supercat_0.5.5-4_amd64 + supercollider_1:3.4.5-1wheezy1_amd64 + supercollider-dev_1:3.4.5-1wheezy1_amd64 + supercollider-server_1:3.4.5-1wheezy1_amd64 + superiotool_0.0+r6637-1_amd64 + supertransball2_1.5-4_amd64 + supertux_0.1.3-3_amd64 + supertuxkart_0.7.3-2+b1_amd64 + suphp-common_0.7.1-3_amd64 + surf_0.4.1-8_amd64 + suricata_1.2.1-2_amd64 + survex_1.2.6-4_amd64 + survex-aven_1.2.6-4_amd64 + svgalib-bin_1:1.4.3-33_amd64 + svgpart_4:4.8.4-1_amd64 + svgtoipe_20100608-1_amd64 + svn-all-fast-export_1.0.5-1_amd64 + swac-explore_0.2-1.2_amd64 + swac-get_0.3-2.1_amd64 + swami_2.0.0+svn389-2_amd64 + swami-dbg_2.0.0+svn389-2_amd64 + swapspace_1.10-4_amd64 + swat_2:3.6.6-6+deb7u2_amd64 + swath_0.4.3-3_amd64 + sweep_0.9.3-6_amd64 + sweeper_4:4.8.4-1_amd64 + swell-foop_1:3.4.2-3_amd64 + swfmill_0.3.2-1_amd64 + swftools_0.9.2+ds1-3_amd64 + swh-lv2_1.0.15+20111107.gitec6b85e-1_amd64 + swh-plugins_0.4.15+1-6_amd64 + swi-prolog_5.10.4-5_amd64 + swi-prolog-java_5.10.4-5_amd64 + swi-prolog-nox_5.10.4-5_amd64 + swi-prolog-odbc_5.10.4-5_amd64 + swi-prolog-x_5.10.4-5_amd64 + swift-im_2.0~beta1+dev47-1_amd64 + swift-im-dbg_2.0~beta1+dev47-1_amd64 + swig_2.0.7-3_amd64 + swig2.0_2.0.7-3_amd64 + swish++_6.1.5-2.2_amd64 + swish-e_2.4.7-3_amd64 + swish-e-dev_2.4.7-3_amd64 + swisswatch_0.6-14_amd64 + switchsh_0~20070801-3_amd64 + sxid_4.2-1_amd64 + sxiv_1.0-1_amd64 + sylph-searcher_1.2.0-7_amd64 + sylpheed_3.2.0-1_amd64 + sylpheed-dbg_3.2.0-1_amd64 + sylpheed-plugins_3.2.0-1_amd64 + symlinks_1.4-1_amd64 + sympa_6.1.11~dfsg-5_amd64 + sympow_1.019-4_amd64 + synaesthesia_2.4-3_amd64 + synapse_0.2.10-2_amd64 + synapse-dbg_0.2.10-2_amd64 + synaptic_0.75.13_amd64 + sync-ui_1.2.99.1-1.1_amd64 + synce-gnomevfs_0.13-2.1_amd64 + synce-hal_0.15-1.1_amd64 + synce-hal-bluetooth_0.15-1.1_amd64 + synce-serial_0.11-5.3_amd64 + synce-trayicon_0.15-1.2_amd64 + syncevolution_1.2.99.1-1.1_amd64 + syncevolution-dbg_1.2.99.1-1.1_amd64 + syncevolution-dbus_1.2.99.1-1.1_amd64 + syncevolution-libs_1.2.99.1-1.1_amd64 + syncmaildir_1.2.5-1_amd64 + syncmaildir-applet_1.2.5-1_amd64 + synergy_1.3.8-2_amd64 + synfig_0.63.05-1_amd64 + synfig-dbg_0.63.05-1_amd64 + synfigstudio_0.63.05-1_amd64 + synfigstudio-dbg_0.63.05-1_amd64 + synopsis_0.12-8_amd64 + synopsis-idl_0.12-8_amd64 + syrep_0.9-4.1_amd64 + syrthes_3.4.3-dfsg1-6_amd64 + sysbench_0.4.12-1+b1_amd64 + sysconftool_0.16-1_amd64 + sysfsutils_2.1.0+repack-2_amd64 + syslinux_2:4.05+dfsg-6+deb7u1_amd64 + syslog-ng-core_3.3.5-4_amd64 + syslog-ng-dbg_3.3.5-4_amd64 + syslog-ng-mod-json_3.3.5-4_amd64 + syslog-ng-mod-mongodb_3.3.5-4_amd64 + syslog-ng-mod-sql_3.3.5-4_amd64 + sysnews_0.9-17_amd64 + sysprof_1.1.8-2_amd64 + sysrqd_14-1_amd64 + sysstat_10.0.5-1_amd64 + system-config-audit_1:1.7.18-1.1_amd64 + system-config-printer-udev_1.3.7-4_amd64 + system-tools-backends_2.10.2-1_amd64 + systemd_44-11+deb7u4_amd64 + systemd-gui_44-11+deb7u4_amd64 + systemd-sysv_44-11+deb7u4_amd64 + systempreferences.app_1.1.0-2+b3_amd64 + systemsettings_4:4.8.4-6_amd64 + systemtap_1.7-1+deb7u1_amd64 + systemtap-client_1.7-1+deb7u1_amd64 + systemtap-grapher_1.7-1+deb7u1_amd64 + systemtap-runtime_1.7-1+deb7u1_amd64 + systemtap-sdt-dev_1.7-1+deb7u1_amd64 + systemtap-server_1.7-1+deb7u1_amd64 + sysvbanner_1.0.15_amd64 + sysvinit_2.88dsf-41+deb7u1_amd64 + sysvinit-utils_2.88dsf-41+deb7u1_amd64 + t-coffee_9.02.r1228-2_amd64 + t1lib-bin_5.1.2-3.6_amd64 + t1utils_1.37-1_amd64 + t38modem_2.0.0-3_amd64 + tabble_0.43-1_amd64 + tabix_0.2.6-1_amd64 + tableau-parm_0.2.0-1_amd64 + tablix2_0.3.5-2_amd64 + tacacs+_4.0.4.19-11_amd64 + tachyon_0.99~b2+dfsg-0.4_amd64 + tack_1.07-1_amd64 + tack-dbg_1.07-1_amd64 + tagainijisho_0.9.4-1_amd64 + tagcoll_2.0.13-1.1_amd64 + taggrepper_0.03.1-3_amd64 + tagtool_0.12.3-8.1_amd64 + tagua_1.0~alpha2-10_amd64 + talk_0.17-15_amd64 + talkd_0.17-15_amd64 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_amd64 + tamil-gtk2im_2.2-4.4_amd64 + tangerine_0.3.4-3_amd64 + tangerine-dbg_0.3.4-3_amd64 + tanglet_1.1.1-1.1_amd64 + tango-accesscontrol_7.2.6+dfsg-14_amd64 + tango-accesscontrol-dbg_7.2.6+dfsg-14_amd64 + tango-db_7.2.6+dfsg-14_amd64 + tango-db-dbg_7.2.6+dfsg-14_amd64 + tango-starter_7.2.6+dfsg-14_amd64 + tango-starter-dbg_7.2.6+dfsg-14_amd64 + tango-test_7.2.6+dfsg-14_amd64 + tango-test-dbg_7.2.6+dfsg-14_amd64 + tap-plugins_0.7.2-1_amd64 + tapecalc_20070214-2_amd64 + tar_1.26+dfsg-0.1_amd64 + tarantool_1.4.6+20120629+2158-1_amd64 + tarantool-client_1.4.6+20120629+2158-1_amd64 + tarantool-client-dbg_1.4.6+20120629+2158-1_amd64 + tarantool-dbg_1.4.6+20120629+2158-1_amd64 + tardy_1.25-1_amd64 + tart_3.09-1_amd64 + task_2.0.0-1_amd64 + task-spooler_0.7.3-1_amd64 + tasks_0.20-1+b2_amd64 + tatan_1.0.dfsg1-3_amd64 + tau_2.16.4-1.4+b1_amd64 + tayga_0.9.2-4_amd64 + tcc_0.9.26~git20120612.ad5f375-6_amd64 + tcd-utils_20061127-2_amd64 + tcl-funtools_1.4.4-3_amd64 + tcl-memchan_2.3-2_amd64 + tcl-memchan-dev_2.3-2_amd64 + tcl-signal_1.4-1_amd64 + tcl-tclreadline_2.1.0-12_amd64 + tcl-tls_1.6+dfsg-3_amd64 + tcl-trf_2.1.4-dfsg1-1_amd64 + tcl-trf-dev_2.1.4-dfsg1-1_amd64 + tcl-vfs_1.3-20080503-3_amd64 + tcl-vtk_5.8.0-13+b1_amd64 + tcl-xpa_2.1.14-2_amd64 + tcl8.4_8.4.19-5_amd64 + tcl8.4-dev_8.4.19-5_amd64 + tcl8.5_8.5.11-2_amd64 + tcl8.5-dev_8.5.11-2_amd64 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_amd64 + tclcl_1.20-6_amd64 + tclcl-dbg_1.20-6_amd64 + tclcsound_1:5.17.11~dfsg-3_amd64 + tclcurl_7.22.0-1_amd64 + tclex_1.2a1-15_amd64 + tclgeoip_0.2-1_amd64 + tclodbc_2.5.1-1.1_amd64 + tclthread_1:2.6.7-1_amd64 + tclx8.4_8.4.0-3_amd64 + tclx8.4-dev_8.4.0-3_amd64 + tclxapian_1.2.12-2_amd64 + tclxml_3.3~svn11-2_amd64 + tclxml-dev_3.3~svn11-2_amd64 + tcm_2.20+TSQD-4.2_amd64 + tcng_10b-4_amd64 + tcpd_7.6.q-24_amd64 + tcpdump_4.3.0-1_amd64 + tcpflow_0.21.ds1-7_amd64 + tcpick_0.2.1-6_amd64 + tcpreen_1.4.4-2_amd64 + tcpreplay_3.4.3-2+wheezy1_amd64 + tcpser_1.0rc12-1_amd64 + tcpslice_1.2a3-4_amd64 + tcpspy_1.7d-4_amd64 + tcpstat_1.5-7_amd64 + tcptrace_6.6.7-4.1_amd64 + tcptraceroute_1.5beta7+debian-4_amd64 + tcptrack_1.4.2-1_amd64 + tcputils_0.6.2-9_amd64 + tcpxtract_1.0.1-8_amd64 + tcs_1-11_amd64 + tcsh_6.18.01-2_amd64 + tdb-tools_1.2.10-2_amd64 + tdc_1.2-1_amd64 + tdfsb_0.0.10-1.1_amd64 + tdl_1.5.2-3.1_amd64 + tdom_0.8.3~20080525-3+nmu2_amd64 + tdom-dev_0.8.3~20080525-3+nmu2_amd64 + tdsodbc_0.91-2+deb7u1_amd64 + tea_33.1.0-1_amd64 + tecnoballz_0.92-5_amd64 + teem-apps_1.11.0~svn5226-1_amd64 + teeworlds_0.6.1+dfsg-1_amd64 + teeworlds-server_0.6.1+dfsg-1_amd64 + teg_0.11.2+debian-3_amd64 + telak_0.6-1_amd64 + telegnome_0.1.1-5_amd64 + telepathy-gabble_0.16.7-0+deb7u1_amd64 + telepathy-gabble-dbg_0.16.7-0+deb7u1_amd64 + telepathy-haze_0.6.0-1_amd64 + telepathy-idle_0.1.11-2+deb7u1_amd64 + telepathy-logger_0.4.0-1_amd64 + telepathy-mission-control-5_1:5.12.3-1_amd64 + telepathy-mission-control-5-dbg_1:5.12.3-1_amd64 + telepathy-rakia_0.7.4-1_amd64 + telepathy-salut_0.8.1-1_amd64 + teleport_0.34-7_amd64 + tellico_2.3.5+dfsg.1-4_amd64 + telnet_0.17-36_amd64 + telnet-ssl_0.17.24+0.1-23_amd64 + telnetd_0.17-36_amd64 + telnetd-ssl_0.17.24+0.1-23_amd64 + tempest-for-eliza_1.0.5-1_amd64 + tenace_0.12-1_amd64 + tenmado_0.10-1_amd64 + tennix_1.1-2_amd64 + terminal.app_0.9.4+cvs20051125-6.1+b2_amd64 + terminatorx_3.84-2_amd64 + termit_2.9.4-2_amd64 + teseq_1.0.0-2.1_amd64 + tessa_0.3.1-6+b1_amd64 + tessa-mpi_0.3.1-6+b1_amd64 + tesseract-ocr_3.02.01-6_amd64 + testdisk_6.13-1_amd64 + testdisk-dbg_6.13-1_amd64 + tetradraw_2.0.3-8.2_amd64 + tetraproc_0.8.2-2_amd64 + tetrinet-client_0.11+CVS20070911-1_amd64 + tetrinet-server_0.11+CVS20070911-1_amd64 + tetrinetx_1.13.16-14_amd64 + tetzle_2.0.1-1_amd64 + tex4ht_20090611-1.1+b1_amd64 + texinfo_4.13a.dfsg.1-10_amd64 + texlive-binaries_2012.20120628-4_amd64 + texmacs_1:1.0.7.15-2_amd64 + texmaker_3.3.4-1_amd64 + texstudio_2.3+debian-3_amd64 + texstudio-dbg_2.3+debian-3_amd64 + textdraw_0.2-2_amd64 + textedit.app_4.0+20061029-3.4_amd64 + texworks_0.5~svn1007-1_amd64 + texworks-scripting-lua_0.5~svn1007-1_amd64 + texworks-scripting-python_0.5~svn1007-1_amd64 + tf_1:4.0s1-17_amd64 + tf5_5.0beta8-4+b1_amd64 + tfdocgen_1.0-1_amd64 + tftp_0.17-18_amd64 + tftp-hpa_5.2-4_amd64 + tftpd_0.17-18_amd64 + tftpd-hpa_5.2-4_amd64 + tgif_1:4.2.5-1.2_amd64 + tgn_0.20-3_amd64 + tgt_1:1.0.17-1_amd64 + the_3.3~rc1-2_amd64 + thepeg_1.8.0-1_amd64 + therion_5.3.9-4_amd64 + therion-viewer_5.3.9-4_amd64 + theseus_1.6.2-2_amd64 + thewidgetfactory_0.2.1-2_amd64 + thin_1.3.1-3_amd64 + thinkfan_0.8.1-1_amd64 + threadscope_0.2.1-1_amd64 + thrust_0.89c-3.5_amd64 + thuban_1.2.2-3+b1_amd64 + thunar_1.2.3-4+b1_amd64 + thunar-archive-plugin_0.3.0-4_amd64 + thunar-dbg_1.2.3-4+b1_amd64 + thunar-gtkhash_0.6.0-4_amd64 + thunar-media-tags-plugin_0.2.0-1_amd64 + thunar-vcs-plugin_0.1.4-1_amd64 + thunar-volman_0.6.1-1_amd64 + ticker_1.9_amd64 + tickr_0.6.1-1_amd64 + tidy_20091223cvs-1.2_amd64 + tiemu_3.02-1.2_amd64 + tiemu-skinedit_1.27-2_amd64 + tifffile_20120421-1_amd64 + tig_1.0-2_amd64 + tiger_1:3.2.3-10_amd64 + tiger-otheros_1:3.2.3-10_amd64 + tightvncserver_1.3.9-6.4_amd64 + tigr-glimmer_3.02-2_amd64 + tilda_0.09.6-2_amd64 + tiled_0.8.1-1_amd64 + tilp2_1.12-1_amd64 + timbl_6.4.2-1_amd64 + timblserver_1.4-2_amd64 + time_1.7-24_amd64 + timelimit_1.8-1_amd64 + timemachine_0.3.3-1_amd64 + timemon.app_4.1-2+b3_amd64 + timidity_2.13.2-40.1_amd64 + timidity-interfaces-extra_2.13.2-40.1_amd64 + timps_0.25-4_amd64 + tin_1:2.1.1-1_amd64 + tina_0.1.11-3_amd64 + tinc_1.0.19-3_amd64 + tint_0.04+nmu1_amd64 + tint2_0.11+svn20111022-3_amd64 + tint2-dbg_0.11+svn20111022-3_amd64 + tintii_2.6.1-1_amd64 + tintin++_2.00.8-1_amd64 + tinycdb_0.78_amd64 + tinydyndns_0.4.2.debian1-1_amd64 + tinyeartrainer_0.1.0-2_amd64 + tinyhoneypot_0.4.6-9_amd64 + tinyirc_1:1.1.dfsg.1-2_amd64 + tinymux_2.6.5.28-1_amd64 + tinyproxy_1.8.3-3_amd64 + tinyscheme_1.37-3.1_amd64 + tinywm_1.3-9_amd64 + tiobench_0.3.3-5_amd64 + titanion_0.3.dfsg1-4_amd64 + tix_8.4.3-4_amd64 + tix-dev_8.4.3-4_amd64 + tk-html3_3.0~fossil20110109-2_amd64 + tk-table_2.10-1_amd64 + tk-tktray_1.3.9-2_amd64 + tk707_0.7.21-9.1_amd64 + tk8.4_8.4.19-5_amd64 + tk8.4-dev_8.4.19-5_amd64 + tk8.5_8.5.11-2_amd64 + tk8.5-dev_8.5.11-2_amd64 + tkdesk_2.0-9.1_amd64 + tkgate_1.8.7-4_amd64 + tkpng_0.9-1_amd64 + tkremind_03.01.12-1_amd64 + tktreectrl_2.2.8-1_amd64 + tla_1.3.5+dfsg-18_amd64 + tm-align_20120507-1_amd64 + tmake_1.8-1.1_amd64 + tmispell-voikko_0.7.1-3_amd64 + tmpreaper_1.6.13+nmu1_amd64 + tmux_1.6-2_amd64 + tnat64_0.05-1_amd64 + tnef_1.4.9-1_amd64 + tnftp_20100108-3_amd64 + tntdb-mysql3_1.2-2+b1_amd64 + tntdb-postgresql3_1.2-2+b1_amd64 + tntdb-sqlite3_1.2-2+b1_amd64 + tntnet_2.1-2+deb7u1_amd64 + tntnet-demos_2.1-2+deb7u1_amd64 + tntnet-runtime_2.1-2+deb7u1_amd64 + tofrodos_1.7.9.debian.1-1_amd64 + toga2_1.4.1.1SE1-4_amd64 + toilet_0.3-1_amd64 + tokyocabinet-bin_1.4.47-2_amd64 + tokyotyrant_1.1.40-4.1+b1_amd64 + tokyotyrant-dbg_1.1.40-4.1+b1_amd64 + tokyotyrant-utils_1.1.40-4.1+b1_amd64 + tomatoes_1.55-5_amd64 + tomboy_1.10.0-2_amd64 + tomoyo-tools_2.5.0-20120414-2_amd64 + toonloop_2.2.0-1+b1_amd64 + topal_75-1_amd64 + toppler_1.1.5-2_amd64 + tor_0.2.3.25-1_amd64 + tor-dbg_0.2.3.25-1_amd64 + tora_2.1.3-2_amd64 + tora-dbg_2.1.3-2_amd64 + torcs_1.3.3+dfsg-0.1_amd64 + torque-client_2.4.16+dfsg-1+deb7u2_amd64 + torque-client-x11_2.4.16+dfsg-1+deb7u2_amd64 + torque-common_2.4.16+dfsg-1+deb7u2_amd64 + torque-mom_2.4.16+dfsg-1+deb7u2_amd64 + torque-pam_2.4.16+dfsg-1+deb7u2_amd64 + torque-scheduler_2.4.16+dfsg-1+deb7u2_amd64 + torque-server_2.4.16+dfsg-1+deb7u2_amd64 + torsocks_1.2-3_amd64 + torus-trooper_0.22.dfsg1-8_amd64 + torus-trooper-pure_0.22.dfsg1-8_amd64 + toshset_1.76-4_amd64 + totem_3.0.1-8_amd64 + totem-dbg_3.0.1-8_amd64 + totem-mozilla_3.0.1-8_amd64 + totem-plugin-arte_3.1.2-1_amd64 + totem-plugins_3.0.1-8_amd64 + tpb_0.6.4-8_amd64 + tpconfig_3.1.3-15_amd64 + tpm-tools_1.3.7-1_amd64 + tpm-tools-dbg_1.3.7-1_amd64 + tqsllib-dev_2.2-5_amd64 + traceroute_1:2.0.18-3_amd64 + trackballs_1.1.4-4.1_amd64 + trackballs-dbg_1.1.4-4.1_amd64 + tracker_0.14.1-3_amd64 + tracker-dbg_0.14.1-3_amd64 + tracker-explorer_0.14.1-3_amd64 + tracker-extract_0.14.1-3_amd64 + tracker-gui_0.14.1-3_amd64 + tracker-miner-fs_0.14.1-3_amd64 + tracker-utils_0.14.1-3_amd64 + trafficserver_3.0.5-1_amd64 + trafficserver-dev_3.0.5-1_amd64 + trafficserver-plugin-conf-remap_3.0.5-1_amd64 + tralics_2.14.4-2_amd64 + transcalc_0.14-5_amd64 + transcend_0.3.dfsg2-2_amd64 + transcode_3:1.1.7-3_amd64 + transcode-dbg_3:1.1.7-3_amd64 + transfermii_1:0.6.1-2.1_amd64 + transfermii-gui_1:0.6.1-2.1_amd64 + transfig_1:3.2.5.d-3_amd64 + transgui_4.0.3-2_amd64 + transmission-cli_2.52-3+nmu1_amd64 + transmission-daemon_2.52-3+nmu1_amd64 + transmission-dbg_2.52-3+nmu1_amd64 + transmission-gtk_2.52-3+nmu1_amd64 + transmission-qt_2.52-3+nmu1_amd64 + transtermhp_2.09-1_amd64 + traverso_0.49.2-5_amd64 + trayer_1.1.4-2_amd64 + tre-agrep_0.8.0-3_amd64 + tree_1.6.0-1_amd64 + tree-ppuzzle_5.2-7_amd64 + tree-puzzle_5.2-7_amd64 + treeviewx_0.5.1+20100823-1_amd64 + treil_1.8-1.1_amd64 + trend_1.2-1_amd64 + trickle_1.07-9+b1_amd64 + trigger-rally_0.6.0-1+b2_amd64 + triggerhappy_0.3.4-2_amd64 + triplane_1.0.7-1_amd64 + tripwire_2.4.2.2-2_amd64 + troffcvt_1.04-21_amd64 + trophy_2.0.2-2_amd64 + trophy-dbg_2.0.2-2_amd64 + trousers_0.3.9-3+wheezy1_amd64 + trousers-dbg_0.3.9-3+wheezy1_amd64 + trovacap_0.2.2-1_amd64 + trueprint_5.3-4_amd64 + trustedqsl_1.13-3_amd64 + tsdecrypt_8.1-1_amd64 + tse3play_0.3.1-4.3_amd64 + tshark_1.8.2-5wheezy9_amd64 + tsocks_1.8beta5-9.2_amd64 + tstools_1.11-1_amd64 + tsung_1.4.2-1.1_amd64 + ttf2ufm_3.4.4~r2-1_amd64 + ttfautohint_0.9-1_amd64 + tth_4.03+ds-2_amd64 + tth-common_4.03+ds-2_amd64 + tthsum_1.1.0-1_amd64 + ttm_4.03+ds-2_amd64 + ttt_1.7-3.3_amd64 + tttprobe_1.7-3.3_amd64 + tttview_1.7-3.3_amd64 + ttv_3.102-3_amd64 + tty-clock_1.1-1_amd64 + ttyload_0.5-7_amd64 + ttylog_0.1.d-2_amd64 + ttylog-dbg_0.1.d-2_amd64 + ttyrec_1.0.8-5_amd64 + ttysnoop_0.12d-5_amd64 + tua_4.3-11_amd64 + tucnak2_2.47-2+deb7u1_amd64 + tudu_0.8.1-1_amd64 + tulip_3.7.0dfsg-4_amd64 + tumbler_0.1.25-1+b1_amd64 + tumbler-plugins-extra_0.1.25-1+b1_amd64 + tumiki-fighters_0.2.dfsg1-5_amd64 + tupi_0.1+git12-6_amd64 + tupi-dbg_0.1+git12-6_amd64 + tuxcmd_0.6.70+dfsg-1_amd64 + tuxcmd-modules_0.6.70+ds-4_amd64 + tuxfootball_0.3.1-2_amd64 + tuxguitar-alsa_1.2-13+deb7u1_amd64 + tuxguitar-fluidsynth_1.2-13+deb7u1_amd64 + tuxguitar-jack_1.2-13+deb7u1_amd64 + tuxguitar-oss_1.2-13+deb7u1_amd64 + tuxmath_1.8.0-4_amd64 + tuxonice-userui_1.1-1_amd64 + tuxpaint_1:0.9.21-1.1_amd64 + tuxpaint-config_0.0.12-3_amd64 + tuxpaint-plugins-default_1:0.9.21-1.1_amd64 + tuxpuck_0.8.2-2.2_amd64 + tuxtype_1.8.1-5_amd64 + tvflash_0.9.0-1_amd64 + tvtime_1.0.2-10_amd64 + twclock_3.1-1_amd64 + tweak_3.01-8_amd64 + twm_1:1.0.6-1_amd64 + twoftpd_1.41-1_amd64 + twolame_0.3.13-1_amd64 + tworld_1.3.0-6_amd64 + twpsk_4.0-1_amd64 + txt2pdbdoc_1.4.4-6_amd64 + txtreader_0.6.5-1_amd64 + typespeed_0.6.5-1.1_amd64 + tzc_2.6.15-5.2_amd64 + u-boot_2012.04.01-2_amd64 + u-boot-tools_2012.04.01-2_amd64 + u3-tool_0.3-1.1_amd64 + uanytun_0.3.3-1_amd64 + uapevent_1.4-2_amd64 + uaputl_1.12-2_amd64 + ucarp_1.5.2-1+nmu1_amd64 + ucblogo_5.5-2.1_amd64 + uchardet_0.0.1-1_amd64 + ucimf_2.3.8-4_amd64 + ucimf-chewing_0.3-1+build1_amd64 + ucimf-openvanilla_2.10.11-2_amd64 + ucimf-sunpinyin_0.4-2_amd64 + ucommon-utils_5.2.2-4_amd64 + ucspi-proxy_0.98-1_amd64 + ucspi-tcp_1:0.88-3_amd64 + ucspi-tcp-ipv6_1:0.88-3_amd64 + ucspi-unix_0.36-4_amd64 + ucto_0.5.2-2_amd64 + udav_0.7.1.2-3+b1_amd64 + udev_175-7.2_amd64 + udftools_1.0.0b3-14.2_amd64 + udhcpc_1:1.20.0-7_amd64 + udhcpd_1:1.20.0-7_amd64 + udisks_1.0.4-7_amd64 + udisks-glue_1.3.4-1_amd64 + udo_6.4.1-1_amd64 + udpcast_20100130-3_amd64 + udptunnel_1.1-4_amd64 + udunits-bin_2.1.23-3_amd64 + ufiformat_0.9.8-1_amd64 + ufraw_0.18-2_amd64 + ufraw-batch_0.18-2_amd64 + ufsutils_8.2-3_amd64 + uget_1.8.2-1_amd64 + uhd-host_3.4.2-1_amd64 + uhub_0.3.2-1_amd64 + uif2iso_0.1.7a-1_amd64 + uim-anthy_1:1.8.1-4_amd64 + uim-applet-gnome_1:1.8.1-4_amd64 + uim-chewing_0.1.0-3_amd64 + uim-dbg_1:1.8.1-4_amd64 + uim-dict-gtk_1:1.8.1-4_amd64 + uim-dict-gtk3_1:1.8.1-4_amd64 + uim-el_1:1.8.1-4_amd64 + uim-fep_1:1.8.1-4_amd64 + uim-gtk2.0_1:1.8.1-4_amd64 + uim-gtk3_1:1.8.1-4_amd64 + uim-m17nlib_1:1.8.1-4_amd64 + uim-mozc_1.5.1090.102-4+deb7u1_amd64 + uim-qt_1:1.8.1-4_amd64 + uim-skk_1:1.8.1-4_amd64 + uim-utils_1:1.8.1-4_amd64 + uim-xim_1:1.8.1-4_amd64 + uisp_20050207-4.2_amd64 + ukopp_4.4-1_amd64 + ulatency_0.5.0-7_amd64 + ulatencyd_0.5.0-7_amd64 + ulogd_1.24-3.3_amd64 + ulogd-mysql_1.24-3.3_amd64 + ulogd-pcap_1.24-3.3_amd64 + ulogd-pgsql_1.24-3.3_amd64 + ulogd-sqlite3_1.24-3.3_amd64 + umbrello_4:4.8.4+dfsg-1_amd64 + uml-utilities_20070815-1.3_amd64 + umview_0.8.2-1_amd64 + umview-mod-umdevtap_0.8.2-1_amd64 + umview-mod-umfuseext2_0.4-1_amd64 + umview-mod-umfusefat_0.1a-1_amd64 + umview-mod-umfuseiso9660_0.3-1_amd64 + umview-mod-umlwip_0.8.2-1_amd64 + umview-mod-viewfs_0.8.2-1_amd64 + unaccent_1.8.0-6_amd64 + unace_1.2b-10_amd64 + unadf_0.7.11a-3_amd64 + unagi_0.3.3-2_amd64 + unagi-dbg_0.3.3-2_amd64 + unagi-dev_0.3.3-2_amd64 + unalz_0.65-3_amd64 + unar_1.1-2_amd64 + unbound_1.4.17-3_amd64 + unbound-anchor_1.4.17-3_amd64 + unbound-host_1.4.17-3_amd64 + unclutter_8-18_amd64 + uncrustify_0.59-2_amd64 + undbx_0.20-1_amd64 + undertaker_1.3b-1_amd64 + unetbootin_575-1_amd64 + unhide_20110113-4_amd64 + unhtml_2.3.9-3_amd64 + uni2ascii_4.18-2_amd64 + unicode-screensaver_0.4-1_amd64 + unicon-imc2_3.0.4-13_amd64 + uniconf-tools_4.6.1-5_amd64 + uniconfd_4.6.1-5_amd64 + unicorn_4.3.1-4_amd64 + unifdef_2.6-1_amd64 + unifont-bin_1:5.1.20080914-1.3_amd64 + unionfs-fuse_0.24-2.2_amd64 + unison_2.40.65-2_amd64 + unison-gtk_2.40.65-2_amd64 + unison2.27.57_2.27.57-7_amd64 + unison2.27.57-gtk_2.27.57-7_amd64 + unison2.32.52_2.32.52-6_amd64 + unison2.32.52-gtk_2.32.52-6_amd64 + units_1.88-1_amd64 + units-filter_3.5-2_amd64 + uniutils_2.27-1_amd64 + universalindentgui_1.2.0-1_amd64 + unixodbc_2.2.14p2-5_amd64 + unixodbc-bin_2.3.0-3_amd64 + unixodbc-dev_2.2.14p2-5_amd64 + unmass_0.9-3_amd64 + unmo3_0.6-1_amd64 + uno-libs3_3.5.4+dfsg2-0+deb7u2_amd64 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + unpaper_0.4.2-1_amd64 + unrar-free_1:0.0.1+cvs20071127-2_amd64 + unrtf_0.19.3-1.1+b1_amd64 + unscd_0.48-2_amd64 + unshield_0.6-3_amd64 + unsort_1.1.2-1_amd64 + untex_1:1.2-4_amd64 + unworkable_0.53-3_amd64 + unzip_6.0-8_amd64 + update-notifier_0.99.3debian11_amd64 + update-notifier-kde_1.2.4_amd64 + uphpmvault_0.8_amd64 + upnp-router-control_0.2-1+b1_amd64 + upower_0.9.17-1_amd64 + upse123_1.0.0-1_amd64 + upslug2_11-3_amd64 + upstart_1.6.1-1_amd64 + uptimed_1:0.3.17-3.1_amd64 + upx-ucl_3.08-2_amd64 + uqwk_2.21-15_amd64 + uqwk-spool_2.21-15_amd64 + ure_3.5.4+dfsg2-0+deb7u2_amd64 + ure-dbg_3.5.4+dfsg2-0+deb7u2_amd64 + urfkill_0.3.0-1_amd64 + urg-utils_0.8.12-4_amd64 + urjtag_0.10+r2007-1_amd64 + urlview_0.9-19_amd64 + usb-modeswitch_1.2.3+repack0-1_amd64 + usbip_1.1.1+3.2.17-1_amd64 + usbmuxd_1.0.7-2_amd64 + usbprog_0.2.0-2_amd64 + usbprog-gui_0.2.0-2_amd64 + usbredirserver_0.4.3-2_amd64 + usbutils_1:005-3_amd64 + usbview_1.1-1_amd64 + usepackage_1.8-1_amd64 + user-mode-linux_3.2-2um-1+deb7u2+b2_amd64 + userinfo_2.2-3_amd64 + usermode_1.109-1_amd64 + userv_1.1.1_amd64 + ussp-push_0.11-1_amd64 + ust-bin_2.0.4-1_amd64 + uswsusp_1.0+20110509-3_amd64 + utalk_1.0.1.beta-7_amd64 + util-linux_2.20.1-5.3_amd64 + uuagc_0.9.40.3-2_amd64 + uucp_1.07-20_amd64 + uucpsend_1.1-4_amd64 + uudeview_0.5.20-3.3_amd64 + uuid_1.6.2-1.3_amd64 + uuid-dev_2.20.1-5.3_amd64 + uuid-runtime_2.20.1-5.3_amd64 + uuidcdef_0.3.13-3_amd64 + uvccapture_0.5-2_amd64 + uvcdynctrl_0.2.2-1_amd64 + uvcdynctrl-dbg_0.2.2-1_amd64 + uw-mailutils_8:2007f~dfsg-2_amd64 + uwsgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-core_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_amd64 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_amd64 + uzbl_0.0.0~git.20120514-1.1_amd64 + v-sim_3.6.0-2+b2_amd64 + v-sim-plugins_3.6.0-2+b2_amd64 + v4l-conf_3.102-3_amd64 + v4l-utils_0.8.8-3_amd64 + v4l2ucp_2.0.2-4_amd64 + v86d_0.1.10-1_amd64 + vacation_3.3.0-0.4_amd64 + vagalume_0.8.5-4_amd64 + vainfo_1.0.15-4_amd64 + val-and-rick_0.1a.dfsg1-3_amd64 + vala-dbus-binding-tool_0.3.3~git20110523-2_amd64 + vala-gen-project_0.12.1-3_amd64 + vala-gen-project-dbg_0.12.1-3_amd64 + vala-terminal_1.3-3_amd64 + valabind_0.6.4-1_amd64 + valac-0.14_0.14.2-2_amd64 + valac-0.14-dbg_0.14.2-2_amd64 + valac-0.16_0.16.1-2_amd64 + valac-0.16-dbg_0.16.1-2_amd64 + valadoc_0.3.2~git20120227-1_amd64 + valgrind_1:3.7.0-6_amd64 + valgrind-dbg_1:3.7.0-6_amd64 + valgrind-mpi_1:3.7.0-6_amd64 + valknut_0.4.9-2_amd64 + valkyrie_2.0.0-1_amd64 + vamp-examples_2.1-1_amd64 + vamp-plugin-sdk_2.1-1_amd64 + vamps_0.99.2-4_amd64 + varmon_1.2.1-1_amd64 + varnish_3.0.2-2+deb7u1_amd64 + varnish-dbg_3.0.2-2+deb7u1_amd64 + vavoom_1.33-4_amd64 + vbetool_1.1-2_amd64 + vbindiff_3.0-beta3-1_amd64 + vblade_20-1_amd64 + vbrfix_0.24-7_amd64 + vbuf_0.5.1-5.1_amd64 + vcdimager_0.7.24+dfsg-0.1_amd64 + vcftools_0.1.9-1_amd64 + vco-plugins_0.3.0-2_amd64 + vde2_2.3.2-4_amd64 + vde2-cryptcab_2.3.2-4_amd64 + vdesk_1.2-3.1_amd64 + vdetelweb_1.2.1-1_amd64 + vdkbuilder2_2.4.0-4.3_amd64 + vdmfec_1.0-2_amd64 + vdpau-va-driver_0.7.3-2_amd64 + vdpauinfo_0.0.6-1_amd64 + vdr_1.7.28-1_amd64 + vdr-dbg_1.7.28-1_amd64 + vdr-plugin-dvbhddevice_1.7.28-1_amd64 + vdr-plugin-dvbsddevice_1.7.28-1_amd64 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_amd64 + vdr-plugin-epgsearch_1.0.0+git20120325-4_amd64 + vdr-plugin-epgsync_0.0.4-12_amd64 + vdr-plugin-examples_1.7.28-1_amd64 + vdr-plugin-femon_1.7.17-3_amd64 + vdr-plugin-fritzbox_1.4.3-2_amd64 + vdr-plugin-games_0.6.3-39_amd64 + vdr-plugin-infosatepg_0.0.11-10_amd64 + vdr-plugin-live_0.2.0+git20120428-3_amd64 + vdr-plugin-mp3_0.10.2-14_amd64 + vdr-plugin-mplayer_0.10.2-14_amd64 + vdr-plugin-osdserver_0.1.3-7_amd64 + vdr-plugin-osdteletext_0.9.3-2_amd64 + vdr-plugin-prefermenu_0.6.6-37_amd64 + vdr-plugin-remote_0.4.0-31_amd64 + vdr-plugin-remoteosd_0.1.1-5_amd64 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_amd64 + vdr-plugin-spider_0.2.2-14_amd64 + vdr-plugin-streamdev-client_0.6.0-2_amd64 + vdr-plugin-streamdev-server_0.6.0-2_amd64 + vdr-plugin-sudoku_0.3.5-12_amd64 + vdr-plugin-svdrposd_0.1.1-8_amd64 + vdr-plugin-svdrpservice_0.0.4-14_amd64 + vdr-plugin-vcd_0.9-22_amd64 + vdr-plugin-weather_0.2.1e-63_amd64 + vdr-plugin-xine_0.9.4-7_amd64 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_amd64 + vectoroids_1.1.0-11_amd64 + velvet_1.2.03~nozlibcopy-1_amd64 + verbiste_0.1.34-1_amd64 + verbiste-gnome_0.1.34-1_amd64 + verilator_3.833-1_amd64 + verse_0.22.6_amd64 + veusz-helpers_1.15-1+b1_amd64 + veusz-helpers-dbg_1.15-1+b1_amd64 + vflib3_3.6.14.dfsg-3+b1_amd64 + vflib3-bin_3.6.14.dfsg-3+b1_amd64 + vflib3-dev_3.6.14.dfsg-3+b1_amd64 + vftool_2.0alpha-4.1_amd64 + vfu_4.10-1.1_amd64 + vgrabbj_0.9.6-5.1_amd64 + via-bin_2.0.4-2_amd64 + vidalia_0.2.20-2_amd64 + videocut_0.2.0-11_amd64 + videogen_0.32-5_amd64 + viewmol_2.4.1-18_amd64 + viewpdf.app_1:0.2dfsg1-4_amd64 + vifm_0.4-1_amd64 + vigor_0.016-19_amd64 + viking_1.3-1_amd64 + vile_9.8g-2_amd64 + vile-filters_9.8g-2_amd64 + vilistextum_2.6.9-1.1_amd64 + vim_2:7.3.547-7_amd64 + vim-athena_2:7.3.547-7_amd64 + vim-common_2:7.3.547-7_amd64 + vim-dbg_2:7.3.547-7_amd64 + vim-gnome_2:7.3.547-7_amd64 + vim-gtk_2:7.3.547-7_amd64 + vim-nox_2:7.3.547-7_amd64 + vim-tiny_2:7.3.547-7_amd64 + vinagre_3.4.2-2_amd64 + vino_3.4.2-1+b1_amd64 + virt-top_1.0.7-1+b1_amd64 + virt-viewer_0.5.3-1_amd64 + virt-what_1.12-1_amd64 + virtualbox_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_amd64 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_amd64 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64 + viruskiller_1.03-1+dfsg1-1_amd64 + visitors_0.7-9_amd64 + visualboyadvance_1.8.0.dfsg-1_amd64 + visualboyadvance-gtk_1.8.0.dfsg-1_amd64 + vite_1.2+svn1347-3_amd64 + vkeybd_1:0.1.18d-2_amd64 + vlan_1.9-3_amd64 + vlc_2.0.3-5_amd64 + vlc-dbg_2.0.3-5_amd64 + vlc-nox_2.0.3-5_amd64 + vlc-plugin-fluidsynth_2.0.3-5_amd64 + vlc-plugin-jack_2.0.3-5_amd64 + vlc-plugin-notify_2.0.3-5_amd64 + vlc-plugin-pulse_2.0.3-5_amd64 + vlc-plugin-sdl_2.0.3-5_amd64 + vlc-plugin-svg_2.0.3-5_amd64 + vlc-plugin-zvbi_2.0.3-5_amd64 + vlock_2.2.2-3_amd64 + vmfs-tools_0.2.5-1_amd64 + vmpk_0.4.0-3_amd64 + vnc4server_4.1.1+X4.3.0-37.1_amd64 + vncsnapshot_1.2a-5.1_amd64 + vnstat_1.11-1_amd64 + vnstati_1.11-1_amd64 + vo-aacenc-dbg_0.1.2-1_amd64 + vo-amrwbenc-dbg_0.1.2-1_amd64 + vobcopy_1.2.0-2_amd64 + vocproc_0.2-3_amd64 + vodovod_1.10-2_amd64 + voikko-fi_1.12-1_amd64 + volumecontrol.app_0.5-3.1+b1_amd64 + volumeicon-alsa_0.4.6-1_amd64 + volview_3.4-3_amd64 + voms-clients_2.0.8-1_amd64 + voms-dbg_2.0.8-1_amd64 + voms-dev_2.0.8-1_amd64 + voms-mysql-plugin_3.1.6-1+b1_amd64 + voms-mysql-plugin-dbg_3.1.6-1+b1_amd64 + voms-server_2.0.8-1_amd64 + vorbis-tools_1.4.0-1_amd64 + vorbis-tools-dbg_1.4.0-1_amd64 + vorbisgain_0.37-2_amd64 + vowpal-wabbit_6.1-1_amd64 + voxbo_1.8.5~svn1246-1+b1_amd64 + vpb-utils_4.2.55-1_amd64 + vpnc_0.5.3r512-2_amd64 + vprerex_6.4.0-3_amd64 + vpx-tools_1.1.0-1_amd64 + vrfy_990522-8_amd64 + vrrpd_1.0-2_amd64 + vsd2odg_0.8.1-4_amd64 + vsdump_0.0.45-1_amd64 + vsftpd_2.3.5-3_amd64 + vstream-client_1.2-6.1_amd64 + vstream-client-dev_1.2-6.1_amd64 + vtgrab_0.1.8-3_amd64 + vtprint_2.0.2-12_amd64 + vttest_2.7+20120603-1_amd64 + vtun_3.0.2-4+b1_amd64 + vtwm_5.4.7-2.2_amd64 + vym_2.2.0-1_amd64 + vzctl_3.0.30.2-4_amd64 + vzquota_3.0.12-3_amd64 + w-scan_20120605-1_amd64 + w3cam_0.7.2-6.2_amd64 + w3m_0.5.3-8_amd64 + w3m-img_0.5.3-8_amd64 + w9wm_0.4.2-7_amd64 + wah-plugins_0.0.2-2_amd64 + warmux_1:11.04.1+repack-4_amd64 + warmux-dbg_1:11.04.1+repack-4_amd64 + warmux-servers_1:11.04.1+repack-4_amd64 + watch-maildirs_1.2.0-2.1_amd64 + watchdog_5.12-1_amd64 + wav2cdr_2.3.4-1_amd64 + wavbreaker_0.11-1_amd64 + wavemon_0.7.5-3_amd64 + wavpack_4.60.1-3_amd64 + wayv_0.3-5_amd64 + wbar_1.3.3+dfsg2-1_amd64 + wbox_5-1_amd64 + wcalc_2.4-1.1_amd64 + wcd_5.2.1-2_amd64 + wcslib-dev_4.13.4-1_amd64 + wcslib-tools_4.13.4-1_amd64 + wcstools_3.8.5-1_amd64 + wdiff_1.1.2-1_amd64 + wdm_1.28-13+deb7u1_amd64 + webalizer_2.23.05-1_amd64 + webauth-utils_4.1.1-2_amd64 + webcam_3.102-3_amd64 + webcit-dbg_8.14-dfsg-1_amd64 + webdruid_0.5.4-12.1_amd64 + webfs_1.21+ds1-8.1_amd64 + webhttrack_3.46.1-1_amd64 + webissues_1.0.2-1_amd64 + webissues-dbg_1.0.2-1_amd64 + webkit-image-gtk_0.0.svn25399-3_amd64 + webkit-image-qt_0.0.svn25399-3_amd64 + webkit2pdf_0.2-4_amd64 + weborf_0.13-3_amd64 + webp_0.1.3-3+nmu1_amd64 + weechat-core_0.3.8-1+deb7u1_amd64 + weechat-curses_0.3.8-1+deb7u1_amd64 + weechat-dbg_0.3.8-1+deb7u1_amd64 + weechat-plugins_0.3.8-1+deb7u1_amd64 + weex_2.6.1-8_amd64 + welcome2l_3.04-25_amd64 + weplab_0.1.5-2_amd64 + wesnoth-1.10-core_1:1.10.3-3_amd64 + wesnoth-1.10-dbg_1:1.10.3-3_amd64 + wesnoth-1.10-server_1:1.10.3-3_amd64 + west-chamber-common_20100405+svn20111107.r124-1_amd64 + wfut_0.2.1-2_amd64 + wget_1.13.4-3+deb7u1_amd64 + whichman_2.4-7_amd64 + whiptail_0.52.14-11.1_amd64 + whitedune_0.30.10-1.1_amd64 + whois_5.1.1~deb7u1_amd64 + whowatch_1.6.0a-2_amd64 + why_2.30+dfsg-5+b1_amd64 + whysynth_20090403-1.2_amd64 + wicd-kde_0.3.0-2_amd64 + wide-dhcpv6-client_20080615-11.1_amd64 + wide-dhcpv6-relay_20080615-11.1_amd64 + wide-dhcpv6-server_20080615-11.1_amd64 + widelands_1:17-3_amd64 + widelands-dbg_1:17-3_amd64 + wiggle_0.8+dfsg1-1_amd64 + wiipdf_1.4-2_amd64 + wildmidi_0.2.3.4-2.1_amd64 + wily_0.13.41-7.2_amd64 + winbind_2:3.6.6-6+deb7u2_amd64 + winbind4_4.0.0~beta2+dfsg1-3.2_amd64 + windowlab_1.40-1_amd64 + wine_1.4.1-4_amd64 + wine64-bin_1.4.1-4_amd64 + winff_1.4.2-3_amd64 + winff-dbg_1.4.2-3_amd64 + wing_0.7-27.1+b1_amd64 + wings3d_1.4.1-4_amd64 + wininfo_0.7-5_amd64 + winwrangler_0.2.4-3_amd64 + wipe_0.22-1_amd64 + wireless-tools_30~pre9-8_amd64 + wireshark_1.8.2-5wheezy9_amd64 + wireshark-common_1.8.2-5wheezy9_amd64 + wireshark-dbg_1.8.2-5wheezy9_amd64 + wireshark-dev_1.8.2-5wheezy9_amd64 + wise_2.4.1-10_amd64 + witty-examples_3.2.1-2_amd64 + wizznic_0.9.2-preview2+dfsg-1.1_amd64 + wkhtmltopdf_0.9.9-4_amd64 + wm2_4+svn20090216-2_amd64 + wmacpi_2.2~rc5-1_amd64 + wmail_2.0-3_amd64 + wmaker_0.95.3-2_amd64 + wmaker-dbg_0.95.3-2_amd64 + wmaloader_0.1-5.1+b1_amd64 + wmanager_0.2.1-11_amd64 + wmauda_0.8-2_amd64 + wmbattery_2.41_amd64 + wmbiff_0.4.27-2.1_amd64 + wmbubble_1.46-3_amd64 + wmbutton_0.6.1-3.1_amd64 + wmcalclock_1.25-15_amd64 + wmcdplay_1.0beta1-10_amd64 + wmclock_1.0.14-1_amd64 + wmclockmon_0.8.1-2_amd64 + wmcoincoin_2.5.1e-1_amd64 + wmcpu_1.4-4_amd64 + wmcpuload_1.0.1-3.2_amd64 + wmctrl_1.07-7_amd64 + wmdate_0.7-4_amd64 + wmdiskmon_0.0.2-2_amd64 + wmdrawer_0.10.5-1.1_amd64 + wmf_1.0.5-6_amd64 + wmforkplop_0.9.3-2_amd64 + wmfrog_0.2.0-4_amd64 + wmgui_0.6.00+svn201-3+b1_amd64 + wmhdplop_0.9.9-2.1_amd64 + wmifinfo_0.09-5_amd64 + wmifs_1.3b1-20_amd64 + wmii_3.9.2+debian-4_amd64 + wminput_0.6.00+svn201-3+b1_amd64 + wmitime_0.3-11_amd64 + wmix_3.1-5_amd64 + wml_2.0.12ds1-3_amd64 + wmlongrun_0.3.0-pre1-4.2_amd64 + wmmatrix_0.2-12_amd64 + wmmemload_0.1.6-7_amd64 + wmmixer_1.7-1_amd64 + wmmon_1.1+20120402-1_amd64 + wmmoonclock_1.28-1_amd64 + wmnd_0.4.16-1.1_amd64 + wmnd-snmp_0.4.16-1.1_amd64 + wmnet_1.06-1_amd64 + wmnut_0.64-1_amd64 + wmpinboard_1.0-11_amd64 + wmpomme_1.39~dfsg-2+b1_amd64 + wmppp.app_1.3.0-8_amd64 + wmpuzzle_0.5.1-1_amd64 + wmrack_1.4-2_amd64 + wmressel_0.8-5_amd64 + wmshutdown_0.2-9_amd64 + wmtemp_0.0.6-3.3_amd64 + wmtime_1.0b2-10_amd64 + wmtv_0.6.5-16.1_amd64 + wmwave_0.4-9+b1_amd64 + wmweather_2.4.5-1_amd64 + wmweather+_2.13-1_amd64 + wmwork_0.2.5-4_amd64 + wmxmms2_0.6-6_amd64 + wmxres_1.2-10_amd64 + wodim_9:1.1.11-2_amd64 + wordgrinder_0.3.3-1_amd64 + wordnet_1:3.0-29_amd64 + wordnet-dev_1:3.0-29_amd64 + wordnet-grind_1:3.0-29_amd64 + wordnet-gui_1:3.0-29_amd64 + wordplay_7.22-17_amd64 + worker_2.19.2-2_amd64 + worklog_1.8-6_amd64 + workrave_1.9.909+abc941eb70-1_amd64 + wp2x_2.5-mhi-10.1_amd64 + wpagui_1.0-3+b2_amd64 + wpasupplicant_1.0-3+b2_amd64 + wpd2odt_0.8.1-4_amd64 + wpg2odg_0.8.1-4_amd64 + wps2odt_0.8.1-4_amd64 + wput_0.6.2-3_amd64 + wraplinux_1.7-7_amd64 + wraplinux-dbg_1.7-7_amd64 + wrapperfactory.app_0.1.0-4+b3_amd64 + wrapsrv_0.2-1_amd64 + wreport-common_2.4-1_amd64 + wsjt_5.9.7.r383-1.6_amd64 + wsynth-dssi_0.1.3-4_amd64 + wuzzah_0.53-2_amd64 + wv_1.2.9-3_amd64 + wvdial_1.61-4.1_amd64 + wwl_1.3+db-1.1_amd64 + wx-common_2.8.12.1-12_amd64 + wx2.8-headers_2.8.12.1-12_amd64 + wxmaxima_12.04.0-1_amd64 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_amd64 + wyrd_1.4.4-1_amd64 + wysihtml-el_0.13-5.1_amd64 + wzdftpd_0.8.3-6.2_amd64 + wzdftpd-back-mysql_0.8.3-6.2_amd64 + wzdftpd-back-pgsql_0.8.3-6.2_amd64 + wzdftpd-dev_0.8.3-6.2_amd64 + wzdftpd-mod-avahi_0.8.3-6.2_amd64 + wzdftpd-mod-perl_0.8.3-6.2_amd64 + wzdftpd-mod-tcl_0.8.3-6.2_amd64 + wzip_1.1.3_amd64 + x11-apps_7.7~2_amd64 + x11-session-utils_7.6+2_amd64 + x11-utils_7.7~1_amd64 + x11-xfs-utils_7.7~1_amd64 + x11-xkb-utils_7.7~1_amd64 + x11-xserver-utils_7.7~3_amd64 + x11vnc_0.9.13-1_amd64 + x2_1.1.0-1_amd64 + x264_2:0.123.2189+git35cf912-1_amd64 + x2goclient_3.99.2.1-5_amd64 + x2goplugin_3.99.2.1-5_amd64 + x2vnc_1.7.2-5_amd64 + x2x_1.27.svn.20060501-4_amd64 + x86dis_0.23-5_amd64 + x86info_1.30-2_amd64 + xa65_2.3.5-1_amd64 + xabacus_7.6.8-3_amd64 + xacobeo_0.13-2+b1_amd64 + xalan_1.10-6_amd64 + xaos_3.5+ds1-1_amd64 + xapian-examples_1.2.12-2_amd64 + xapian-omega_1.2.12-1_amd64 + xapian-tools_1.2.12-2_amd64 + xapm_3.2.2-14_amd64 + xara-gtk_1.0.31_amd64 + xarchiver_1:0.5.2+20090319+dfsg-4.1_amd64 + xarclock_1.0-13_amd64 + xauth_1:1.0.7-1_amd64 + xautolock_1:2.2-3_amd64 + xautomation_1.03-1.1_amd64 + xaw3dg_1.5+E-18.2_amd64 + xaw3dg-dev_1.5+E-18.2_amd64 + xawtv_3.102-3_amd64 + xawtv-plugin-qt_3.102-3_amd64 + xawtv-plugins_3.102-3_amd64 + xawtv-tools_3.102-3_amd64 + xbacklight_1.1.2-1_amd64 + xball_3.0.1-1.1_amd64 + xbattbar_1.4.3-1_amd64 + xbattle_5.4.1-15_amd64 + xbill_2.1-8_amd64 + xbindkeys_1.8.5-1_amd64 + xbindkeys-config_0.1.3-2_amd64 + xblast-tnt_2.10.4-3_amd64 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_amd64 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_amd64 + xboard_4.6.2-1_amd64 + xboing_2.4-31_amd64 + xbomb_2.2a-1_amd64 + xboxdrv_0.8.4-1_amd64 + xbrlapi_4.4-10+deb7u1_amd64 + xbs_0-8_amd64 + xbubble_0.5.11.2-3.2_amd64 + xbuffy_3.3.bl.3.dfsg-8_amd64 + xca_0.9.3-1_amd64 + xcal_4.1-19_amd64 + xcalib_0.8.dfsg1-2_amd64 + xcb_2.4-4.3_amd64 + xcfa_4.3.1-1_amd64 + xcfa-dbg_4.3.1-1_amd64 + xcftools_1.0.7-4_amd64 + xchain_1.0.1-6_amd64 + xchat_2.8.8-7.1_amd64 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_amd64 + xchat-guile_0.3-2_amd64 + xchat-xsys_2.2.0-2+b1_amd64 + xchm_2:1.20-1_amd64 + xcircuit_3.7.40.dfsg-1_amd64 + xclip_0.12+svn84-2_amd64 + xcolmix_1.07-10_amd64 + xcolors_1.5a-7_amd64 + xcolorsel_1.1a-17_amd64 + xcompmgr_1.1.5-1_amd64 + xcowsay_1.2-1_amd64 + xcp-fe_0.5.2-3+b1_amd64 + xcp-guest-templates_0.1-4_amd64 + xcp-networkd_1.3.2-15_amd64 + xcp-squeezed_1.3.2-15_amd64 + xcp-storage-managers_0.1.1-3_amd64 + xcp-v6d_1.3.2-15_amd64 + xcp-vncterm_0.1-2_amd64 + xcp-xapi_1.3.2-15_amd64 + xcp-xapi-debug_1.3.2-15_amd64 + xcp-xe_1.3.2-15_amd64 + xcrysden_1.5.53-1_amd64 + xcwcp_3.0.2-1_amd64 + xd_3.22.04-1_amd64 + xdaliclock_2.36+debian-1_amd64 + xdelta_1.1.3-9_amd64 + xdelta3_3.0.0.dfsg-1_amd64 + xdemineur_2.1.1-17_amd64 + xdemorse_1.3-6_amd64 + xdesktopwaves_1.3-3_amd64 + xdeview_0.5.20-3.3_amd64 + xdg-user-dirs_0.14-1_amd64 + xdg-user-dirs-gtk_0.9-1_amd64 + xdiskusage_1.48-10.1_amd64 + xdm_1:1.1.11-1_amd64 + xdms_1.3.2-4_amd64 + xdmx_2:1.12.4-6+deb7u2_amd64 + xdmx-tools_2:1.12.4-6+deb7u2_amd64 + xdotool_1:2.20100701.2961-3+deb7u3_amd64 + xdrawchem_2.0-2_amd64 + xdu_3.0-18_amd64 + xdvik-ja_22.84.16-j1.40+t1lib-1_amd64 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_amd64 + xen-linux-system-2.6-xen-amd64_3.2+46_amd64 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_amd64 + xen-linux-system-amd64_3.2+46_amd64 + xen-system-amd64_4.1.4-3+deb7u1_amd64 + xen-utils-4.1_4.1.4-3+deb7u1_amd64 + xenomai-runtime_2.6.0-2_amd64 + xenstore-utils_4.1.4-3+deb7u1_amd64 + xenwatch_0.5.4-3_amd64 + xevil_2.02r2-10_amd64 + xfaces_3.3-28_amd64 + xfburn_0.4.3-5_amd64 + xfce4-appfinder_4.8.0-3_amd64 + xfce4-battery-plugin_1.0.5-1+b1_amd64 + xfce4-cellmodem-plugin_0.0.5-3+b1_amd64 + xfce4-clipman_2:1.2.3-1+b1_amd64 + xfce4-clipman-plugin_2:1.2.3-1+b1_amd64 + xfce4-cpufreq-plugin_1.0.0-4+b1_amd64 + xfce4-cpugraph-plugin_1.0.3-1+b1_amd64 + xfce4-datetime-plugin_0.6.1-3+b1_amd64 + xfce4-dev-tools_4.10.0-2_amd64 + xfce4-dict_0.6.0-5+b1_amd64 + xfce4-diskperf-plugin_2.5.4-1+b1_amd64 + xfce4-fsguard-plugin_1.0.1-1+b1_amd64 + xfce4-genmon-plugin_3.4.0-1+b1_amd64 + xfce4-goodies_4.8.2_amd64 + xfce4-hdaps_0.0.9-1+b1_amd64 + xfce4-indicator-plugin_0.5.0-1+b2_amd64 + xfce4-linelight-plugin_0.1.7-2+b1_amd64 + xfce4-mailwatch-plugin_1.1.0-5+b1_amd64 + xfce4-messenger-plugin_0.1.0-5+b1_amd64 + xfce4-mixer_4.8.0-3+b1_amd64 + xfce4-mount-plugin_0.6.4-1+b1_amd64 + xfce4-mpc-plugin_0.4.4-1+b1_amd64 + xfce4-netload-plugin_1.1.0-1+b1_amd64 + xfce4-notes_1.7.7-2+b1_amd64 + xfce4-notes-plugin_1.7.7-2+b1_amd64 + xfce4-notifyd_0.2.2-2_amd64 + xfce4-panel_4.8.6-4_amd64 + xfce4-panel-dbg_4.8.6-4_amd64 + xfce4-panel-dev_4.8.6-4_amd64 + xfce4-places-plugin_1.3.0-1+b1_amd64 + xfce4-power-manager_1.0.11-2+b1_amd64 + xfce4-power-manager-plugins_1.0.11-2+b1_amd64 + xfce4-quicklauncher-plugin_1.9.4-9+b1_amd64 + xfce4-radio-plugin_0.5.1-1+b1_amd64 + xfce4-screenshooter_1.8.1-1+b1_amd64 + xfce4-sensors-plugin_1.2.5-1+b1_amd64 + xfce4-session_4.8.3-3_amd64 + xfce4-session-dbg_4.8.3-3_amd64 + xfce4-settings_4.8.3-2_amd64 + xfce4-smartbookmark-plugin_0.4.4-1+b1_amd64 + xfce4-systemload-plugin_1.1.1-1+b1_amd64 + xfce4-taskmanager_1.0.0-2_amd64 + xfce4-terminal_0.4.8-1+b1_amd64 + xfce4-terminal-dbg_0.4.8-1+b1_amd64 + xfce4-timer-plugin_0.6.3-1+b1_amd64 + xfce4-utils_4.8.3-2_amd64 + xfce4-verve-plugin_1.0.0-1+b1_amd64 + xfce4-volumed_0.1.13-3_amd64 + xfce4-wavelan-plugin_0.5.11-1+b1_amd64 + xfce4-weather-plugin_0.7.4-5_amd64 + xfce4-wmdock-plugin_0.3.4-1+b1_amd64 + xfce4-xkb-plugin_0.5.4.3-1+b1_amd64 + xfconf_4.8.1-1_amd64 + xfdesktop4_4.8.3-2_amd64 + xfdesktop4-dbg_4.8.3-2_amd64 + xfe_1.32.5-2_amd64 + xfig_1:3.2.5.b-3_amd64 + xfingerd_0.6-5.1_amd64 + xfireworks_1.3-8_amd64 + xfishtank_2.2-26_amd64 + xflip_1.01-25_amd64 + xflr5_6.07+svn513-1_amd64 + xfm_1.5.4-3_amd64 + xfmpc_0.2.2-1_amd64 + xfoil_6.97.dfsg-5_amd64 + xfonts-utils_1:7.7~1_amd64 + xfprint4_4.6.1-3_amd64 + xfpt_0.09-1_amd64 + xfrisk_1.2-3_amd64 + xfs_1:1.0.8-7_amd64 + xfsdump_3.0.6_amd64 + xfslibs-dev_3.1.7+b1_amd64 + xfsprogs_3.1.7+b1_amd64 + xfstt_1.9-2_amd64 + xfswitch-plugin_0.0.1-3+b1_amd64 + xfwm4_4.8.3-2_amd64 + xfwm4-dbg_4.8.3-2_amd64 + xgalaga_2.1.1.0-4_amd64 + xgalaga++_0.8.3-1_amd64 + xgammon_0.99.1128-3_amd64 + xgnokii_0.6.30+dfsg-1+b1_amd64 + xgraph_12.1-16_amd64 + xicc_0.2-3_amd64 + xindy_2.4-1.1_amd64 + xine-console_0.99.7-1_amd64 + xine-dbg_0.99.7-1_amd64 + xine-plugin_1.0.2-4_amd64 + xine-ui_0.99.7-1_amd64 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_amd64 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_amd64 + xinetd_1:2.3.14-7.1+deb7u1_amd64 + xinit_1.3.2-1_amd64 + xinput_1.6.0-1_amd64 + xinv3d_1.3.6-6_amd64 + xiphos_3.1.5+dfsg-1+b2_amd64 + xiphos-dbg_3.1.5+dfsg-1+b2_amd64 + xipmsg_0.8088-2.1_amd64 + xiterm+thai_1.10-2_amd64 + xjadeo_0.6.4-1_amd64 + xjdic_24-8_amd64 + xjed_1:0.99.19-2.1_amd64 + xjig_2.4-13+b2_amd64 + xjobs_20110730-1_amd64 + xjokes_1.0-13_amd64 + xjump_2.7.5-6.1_amd64 + xkbind_2010.05.20-1_amd64 + xkbset_0.5-5.1_amd64 + xkeycaps_2.47-4_amd64 + xl2tpd_1.3.1+dfsg-1_amd64 + xlassie_1.8-21_amd64 + xlbiff_4.1-7_amd64 + xless_1.7-14.1_amd64 + xletters_1.1.1-4.1_amd64 + xlhtml_0.5.1-6_amd64 + xli_1.17.0+20061110-4_amd64 + xloadimage_4.1-19_amd64 + xlog_2.0.5-2_amd64 + xmabacus_7.6.8-3_amd64 + xmacro_0.3pre-20000911-6_amd64 + xmahjongg_3.7-3_amd64 + xmail_1.27-1.1+b1_amd64 + xmakemol_5.16-6_amd64 + xmakemol-gl_5.16-6_amd64 + xmaxima_5.27.0-3_amd64 + xmbmon_2.05-6_amd64 + xmds_1.6.6-7_amd64 + xmedcon_0.10.7-1+b2_amd64 + xmem_1.20-27.2_amd64 + xmhtml1_1.1.7-18_amd64 + xmhtml1-dev_1.1.7-18_amd64 + xmille_2.0-13_amd64 + xmix_2.1-6_amd64 + xml2_0.4-3.1_amd64 + xmlcopyeditor_1.2.0.6-2+b1_amd64 + xmlcopyeditor-dbg_1.2.0.6-2+b1_amd64 + xmldiff_0.6.10-2+b1_amd64 + xmlindent_0.2.17-2_amd64 + xmlroff_0.6.2-1.1_amd64 + xmlrpc-api-utils_1.16.33-3.2_amd64 + xmlsec1_1.2.18-2_amd64 + xmlstarlet_1.3.1-3_amd64 + xmlto_0.0.25-2_amd64 + xmms2_0.8+dfsg-4_amd64 + xmms2-client-avahi_0.8+dfsg-4_amd64 + xmms2-client-cli_0.8+dfsg-4_amd64 + xmms2-client-medialib-updater_0.8+dfsg-4_amd64 + xmms2-client-nycli_0.8+dfsg-4_amd64 + xmms2-core_0.8+dfsg-4_amd64 + xmms2-plugin-airplay_0.8+dfsg-4_amd64 + xmms2-plugin-all_0.8+dfsg-4_amd64 + xmms2-plugin-alsa_0.8+dfsg-4_amd64 + xmms2-plugin-ao_0.8+dfsg-4_amd64 + xmms2-plugin-apefile_0.8+dfsg-4_amd64 + xmms2-plugin-asf_0.8+dfsg-4_amd64 + xmms2-plugin-asx_0.8+dfsg-4_amd64 + xmms2-plugin-avcodec_0.8+dfsg-4_amd64 + xmms2-plugin-cdda_0.8+dfsg-4_amd64 + xmms2-plugin-cue_0.8+dfsg-4_amd64 + xmms2-plugin-curl_0.8+dfsg-4_amd64 + xmms2-plugin-daap_0.8+dfsg-4_amd64 + xmms2-plugin-faad_0.8+dfsg-4_amd64 + xmms2-plugin-flac_0.8+dfsg-4_amd64 + xmms2-plugin-flv_0.8+dfsg-4_amd64 + xmms2-plugin-gme_0.8+dfsg-4_amd64 + xmms2-plugin-gvfs_0.8+dfsg-4_amd64 + xmms2-plugin-html_0.8+dfsg-4_amd64 + xmms2-plugin-ices_0.8+dfsg-4_amd64 + xmms2-plugin-icymetaint_0.8+dfsg-4_amd64 + xmms2-plugin-id3v2_0.8+dfsg-4_amd64 + xmms2-plugin-jack_0.8+dfsg-4_amd64 + xmms2-plugin-karaoke_0.8+dfsg-4_amd64 + xmms2-plugin-m3u_0.8+dfsg-4_amd64 + xmms2-plugin-mad_0.8+dfsg-4_amd64 + xmms2-plugin-mms_0.8+dfsg-4_amd64 + xmms2-plugin-modplug_0.8+dfsg-4_amd64 + xmms2-plugin-mp4_0.8+dfsg-4_amd64 + xmms2-plugin-mpg123_0.8+dfsg-4_amd64 + xmms2-plugin-musepack_0.8+dfsg-4_amd64 + xmms2-plugin-normalize_0.8+dfsg-4_amd64 + xmms2-plugin-ofa_0.8+dfsg-4_amd64 + xmms2-plugin-oss_0.8+dfsg-4_amd64 + xmms2-plugin-pls_0.8+dfsg-4_amd64 + xmms2-plugin-pulse_0.8+dfsg-4_amd64 + xmms2-plugin-rss_0.8+dfsg-4_amd64 + xmms2-plugin-sid_0.8+dfsg-4_amd64 + xmms2-plugin-smb_0.8+dfsg-4_amd64 + xmms2-plugin-sndfile_0.8+dfsg-4_amd64 + xmms2-plugin-speex_0.8+dfsg-4_amd64 + xmms2-plugin-tta_0.8+dfsg-4_amd64 + xmms2-plugin-vocoder_0.8+dfsg-4_amd64 + xmms2-plugin-vorbis_0.8+dfsg-4_amd64 + xmms2-plugin-wavpack_0.8+dfsg-4_amd64 + xmms2-plugin-xml_0.8+dfsg-4_amd64 + xmms2-plugin-xspf_0.8+dfsg-4_amd64 + xmms2-scrobbler_0.4.0-3_amd64 + xmobar_0.14-4_amd64 + xmonad_0.10-4+b2_amd64 + xmorph_1:20090926_amd64 + xmotd_1.17.3b-5_amd64 + xmoto_0.5.10+dfsg-1_amd64 + xmount_0.5.0-2_amd64 + xmountains_2.9-2_amd64 + xmp_3.4.0-1.1_amd64 + xmp-audacious_3.4.0-1.1_amd64 + xmpi_2.2.3b8-13_amd64 + xmpuzzles_7.6.3-1+b1_amd64 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_amd64 + xnec2c_1:1.4-1_amd64 + xnecview_1.35-7.1_amd64 + xnest_2:1.12.4-6+deb7u2_amd64 + xneur_0.15.0-1.1_amd64 + xneur-dbg_0.15.0-1.1_amd64 + xonix_1.4-29_amd64 + xoo_0.8-1.1_amd64 + xorg_1:7.7+3~deb7u1_amd64 + xorp_1.8.5-1.1_amd64 + xorriso_1.2.2-2_amd64 + xoscope_2.0-3.2_amd64 + xosd-bin_2.2.14-2_amd64 + xosview_1.9.3-3_amd64 + xotcl_1.6.7-2_amd64 + xotcl-dev_1.6.7-2_amd64 + xotcl-shells_1.6.7-2_amd64 + xournal_0.4.6~pre20110721-1+b1_amd64 + xpa-tools_2.1.14-2_amd64 + xpad_4.1-1_amd64 + xpaint_2.9.1.4-3+b2_amd64 + xpaint-dev_2.9.1.4-3+b2_amd64 + xpat2_1.07-18_amd64 + xpdf_3.03-10_amd64 + xpenguins_2.2-8_amd64 + xphoon_20000613+0-1_amd64 + xpilot-ng-client-sdl_1:4.7.3-1.4_amd64 + xpilot-ng-client-x11_1:4.7.3-1.4_amd64 + xpilot-ng-server_1:4.7.3-1.4_amd64 + xpilot-ng-utils_1:4.7.3-1.4_amd64 + xplanet_1.2.1-4.1+b1_amd64 + xplot_1.19-9_amd64 + xplot-xplot.org_0.90.7.1-2_amd64 + xpmutils_1:3.5.10-1_amd64 + xpp_1.5-cvs20050828-1.2_amd64 + xppaut_6.11b+1.dfsg-1_amd64 + xpra_0.3.11+dfsg-1_amd64 + xprintidle_0.2-5_amd64 + xprobe_0.3-1.1_amd64 + xpuzzles_7.6.3-1+b1_amd64 + xqf_1.0.5-2_amd64 + xqilla_2.3.0-1_amd64 + xracer_0.96.9.1-6_amd64 + xrdp_0.5.0-2_amd64 + xresprobe_0.4.23debian1-1_amd64 + xrestop_0.4-7_amd64 + xringd_1.20-25.2_amd64 + xrootconsole_1:0.6-2_amd64 + xsane_0.998-3+b1_amd64 + xscavenger_1.4.4-8_amd64 + xscorch_0.2.1-1_amd64 + xscreensaver_5.15-3_amd64 + xscreensaver-data_5.15-3_amd64 + xscreensaver-data-extra_5.15-3_amd64 + xscreensaver-gl_5.15-3_amd64 + xscreensaver-gl-extra_5.15-3_amd64 + xscreensaver-screensaver-bsod_5.15-3_amd64 + xscreensaver-screensaver-webcollage_5.15-3_amd64 + xsdcxx_3.3.0.1-1.3_amd64 + xsel_1.2.0-1_amd64 + xsensors_0.70-2_amd64 + xserver-xephyr_2:1.12.4-6+deb7u2_amd64 + xserver-xfbdev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg_1:7.7+3~deb7u1_amd64 + xserver-xorg-core_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-dev_2:1.12.4-6+deb7u2_amd64 + xserver-xorg-input-acecad_1:1.5.0-1+b2_amd64 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_amd64 + xserver-xorg-input-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-input-elographics_1:1.4.1-1_amd64 + xserver-xorg-input-evdev_1:2.7.0-1+b1_amd64 + xserver-xorg-input-joystick_1:1.6.1-1+b1_amd64 + xserver-xorg-input-kbd_1:1.6.1-1+b1_amd64 + xserver-xorg-input-mouse_1:1.7.2-3_amd64 + xserver-xorg-input-mtrack_0.2.0-3_amd64 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_amd64 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_amd64 + xserver-xorg-input-synaptics_1.6.2-2_amd64 + xserver-xorg-input-vmmouse_1:12.9.0-1_amd64 + xserver-xorg-input-void_1:1.4.0-1+b1_amd64 + xserver-xorg-input-wacom_0.15.0+20120515-2_amd64 + xserver-xorg-video-all_1:7.7+3~deb7u1_amd64 + xserver-xorg-video-apm_1:1.2.3-3_amd64 + xserver-xorg-video-ark_1:0.7.4-1+b1_amd64 + xserver-xorg-video-ati_1:6.14.4-8_amd64 + xserver-xorg-video-ati-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-chips_1:1.2.4-2_amd64 + xserver-xorg-video-cirrus_1:1.4.0-2_amd64 + xserver-xorg-video-dummy_1:0.3.5-2+b1_amd64 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_amd64 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_amd64 + xserver-xorg-video-glide_1.2.0-1+b1_amd64 + xserver-xorg-video-glint_1:1.2.7-1+b1_amd64 + xserver-xorg-video-i128_1:1.3.5-1+b1_amd64 + xserver-xorg-video-i740_1:1.3.2-4+b3_amd64 + xserver-xorg-video-intel_2:2.19.0-6_amd64 + xserver-xorg-video-intel-dbg_2:2.19.0-6_amd64 + xserver-xorg-video-mach64_6.9.1-2_amd64 + xserver-xorg-video-mach64-dbg_6.9.1-2_amd64 + xserver-xorg-video-mga_1:1.5.0-3_amd64 + xserver-xorg-video-modesetting_0.3.0-1_amd64 + xserver-xorg-video-modesetting-dbg_0.3.0-1_amd64 + xserver-xorg-video-neomagic_1:1.2.6-1_amd64 + xserver-xorg-video-nouveau_1:1.0.1-5_amd64 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_amd64 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_amd64 + xserver-xorg-video-qxl_0.0.17-2+b1_amd64 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_amd64 + xserver-xorg-video-r128_6.8.2-1_amd64 + xserver-xorg-video-r128-dbg_6.8.2-1_amd64 + xserver-xorg-video-radeon_1:6.14.4-8_amd64 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_amd64 + xserver-xorg-video-rendition_1:4.2.4-3_amd64 + xserver-xorg-video-s3_1:0.6.3-5_amd64 + xserver-xorg-video-s3virge_1:1.10.4-5_amd64 + xserver-xorg-video-savage_1:2.3.4-1_amd64 + xserver-xorg-video-siliconmotion_1:1.7.6-1_amd64 + xserver-xorg-video-sis_1:0.10.4-1_amd64 + xserver-xorg-video-sisusb_1:0.9.4-3_amd64 + xserver-xorg-video-tdfx_1:1.4.4-1_amd64 + xserver-xorg-video-tga_1:1.2.1-4+b3_amd64 + xserver-xorg-video-trident_1:1.3.5-1_amd64 + xserver-xorg-video-tseng_1:1.2.4-3_amd64 + xserver-xorg-video-vesa_1:2.3.1-1+b1_amd64 + xserver-xorg-video-vmware_1:12.0.2-1+b1_amd64 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_amd64 + xserver-xspice_0.0.17-2+b1_amd64 + xsettings-kde_0.9-2_amd64 + xshisen_1:1.51-3.3_amd64 + xshogi_1.3.2-9_amd64 + xskat_4.0-5_amd64 + xsltproc_1.1.26-14.1_amd64 + xsmc-calc_1.0.0-6.1_amd64 + xsok_1.02-17_amd64 + xsol_0.31-9_amd64 + xsoldier_1:1.8-2_amd64 + xstarfish_1.1-11_amd64 + xstow_1.0.0-2_amd64 + xsunpinyin_2.0.3-4_amd64 + xsynth-dssi_0.9.4-2_amd64 + xsysinfo_1.7-9_amd64 + xsystem35_1.7.3-pre5-5_amd64 + xtables-addons-common_1.42-2+b1_amd64 + xtail_2.1-5_amd64 + xteddy_2.2-2_amd64 + xtel_3.3.0-14_amd64 + xtell_2.10.7_amd64 + xterm_278-4_amd64 + xtermcontrol_2.10-1_amd64 + xtermset_0.5.2-5_amd64 + xtide_2.11-1_amd64 + xtightvncviewer_1.3.9-6.4_amd64 + xtrace_1.3.1-1_amd64 + xtrkcad_1:4.0.2-2+b1_amd64 + xtrlock_2.2_amd64 + xtron_1.1a-14_amd64 + xttitle_1.0-5_amd64 + xtux_0.2.030306-12_amd64 + xtux-client_0.2.030306-12_amd64 + xtux-server_0.2.030306-12_amd64 + xtv_1.1-12_amd64 + xul-ext-zarafa-drag-n-drop_1.2-1_amd64 + xulrunner-10.0_10.0.12esr-1_amd64 + xulrunner-10.0-dbg_10.0.12esr-1_amd64 + xulrunner-17.0_17.0.10esr-1~deb7u1_amd64 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_amd64 + xulrunner-dev_17.0.10esr-1~deb7u1_amd64 + xutils-dev_1:7.7~1_amd64 + xvfb_2:1.12.4-6+deb7u2_amd64 + xvier_1.0-7.5_amd64 + xview-clients_3.2p1.4-28.1_amd64 + xview-examples_3.2p1.4-28.1_amd64 + xviewg_3.2p1.4-28.1_amd64 + xviewg-dev_3.2p1.4-28.1_amd64 + xvile_9.8g-2_amd64 + xvkbd_3.0-1_amd64 + xvnc4viewer_4.1.1+X4.3.0-37.1_amd64 + xvt_2.1-20.1_amd64 + xwatch_2.11-15_amd64 + xwax_0.9-2_amd64 + xwelltris_1.0.1-14_amd64 + xwit_3.4-14_amd64 + xwpe_1.5.30a-2.1_amd64 + xwrits_2.21-6.1_amd64 + xxgdb_1.12-17_amd64 + xxkb_1.11-2.1_amd64 + xxxterm_1:1.11.3-1_amd64 + xye_0.12.1+dfsg-4_amd64 + xymon_4.3.0~beta2.dfsg-9.1_amd64 + xymon-client_4.3.0~beta2.dfsg-9.1_amd64 + xyscan_3.31-3_amd64 + xz-utils_5.1.1alpha+20120614-2_amd64 + xzdec_5.1.1alpha+20120614-2_amd64 + xzgv_0.9+svn40-1_amd64 + xzip_1:1.8.2-3_amd64 + xzoom_0.3-23_amd64 + yabause-gtk_0.9.11.1-1_amd64 + yabause-qt_0.9.11.1-1_amd64 + yacas_1.3.2-1_amd64 + yacpi_3.0-2_amd64 + yade_0.80.1-2_amd64 + yafaray_0.1.2+really0.1.2~beta5-2_amd64 + yafc_1.1.3-2_amd64 + yagf_0.9.1-3_amd64 + yagiuda_1.19-8_amd64 + yajl-tools_2.0.4-2_amd64 + yakuake_2.9.8-1_amd64 + yamdi_1.4-2_amd64 + yap_5.1.3-6_amd64 + yapet_0.8~pre2-2_amd64 + yardradius_1.1.2-4_amd64 + yash_2.30-2_amd64 + yaskkserv_0.5.2-3_amd64 + yasm_1.1.0-1_amd64 + yasnippet_0.6.1c-1_amd64 + yasr_0.6.9-3_amd64 + yate_4.1.0-1~dfsg-3_amd64 + yate-alsa_4.1.0-1~dfsg-3_amd64 + yate-core_4.1.0-1~dfsg-3_amd64 + yate-dahdi_4.1.0-1~dfsg-3_amd64 + yate-dev_4.1.0-1~dfsg-3_amd64 + yate-mysql_4.1.0-1~dfsg-3_amd64 + yate-pgsql_4.1.0-1~dfsg-3_amd64 + yate-qt4_4.1.0-1~dfsg-3_amd64 + yate-scripts_4.1.0-1~dfsg-3_amd64 + yate-sctp_4.1.0-1~dfsg-3_amd64 + yatm_0.6-1+b2_amd64 + yauap_0.2.4-3_amd64 + yauap-dbg_0.2.4-3_amd64 + yaz_4.2.30-2_amd64 + yaz-icu_4.2.30-2_amd64 + yaz-illclient_4.2.30-2_amd64 + yc-el_5.0.0-1_amd64 + yeahconsole_0.3.4-2.1_amd64 + yelp_3.4.2-1+b1_amd64 + yersinia_0.7.1-1.1_amd64 + yesod_1.0.1.6-2+b2_amd64 + ygraph_0.16~cvs20090218-1.1+b1_amd64 + yics_0.1.2-3_amd64 + yiyantang_0.7.0-3.1_amd64 + yodl_3.00.0-6_amd64 + yorick_2.2.02+dfsg-6_amd64 + yorick-av_0.0.1-2_amd64 + yorick-curses_0.1-6_amd64 + yorick-dbg_2.2.02+dfsg-6_amd64 + yorick-dev_2.2.02+dfsg-6_amd64 + yorick-full_2.2.02+dfsg-6_amd64 + yorick-gl_1.1+cvs20070922+dfsg-6_amd64 + yorick-gyoto_0.0.3-5_amd64 + yorick-hdf5_0.8.0-4_amd64 + yorick-imutil_0.5.7-3_amd64 + yorick-ml4_0.6.0-3_amd64 + yorick-mpeg_0.1-2_amd64 + yorick-mpy-mpich2_2.2.02+dfsg-6_amd64 + yorick-mpy-openmpi_2.2.02+dfsg-6_amd64 + yorick-optimpack_1.3.2+dfsg-1_amd64 + yorick-soy_1.4.0-3_amd64 + yorick-svipc_0.14-2_amd64 + yorick-yao_4.9.1-2_amd64 + yorick-yeti_6.3.2-3_amd64 + yorick-yeti-fftw_6.3.2-3_amd64 + yorick-yeti-gsl_6.3.2-3_amd64 + yorick-yeti-regex_6.3.2-3_amd64 + yorick-yeti-tiff_6.3.2-3_amd64 + yorick-z_1.2.0+cvs20080115-5_amd64 + yoshimi_0.060.12-2_amd64 + yoshimi-dbg_0.060.12-2_amd64 + ytalk_3.3.0-5_amd64 + ytree_1.94-1.1_amd64 + yubikey-personalization_1.7.0-1_amd64 + yubikey-personalization-gui_3.0.6-1_amd64 + yubikey-server-c_0.5-1+b1_amd64 + yubiserver_0.2-2_amd64 + yudit_2.8.1-4_amd64 + z80asm_1.8-1_amd64 + z80dasm_1.1.3-1_amd64 + z8530-utils2_3.0-1-6.1_amd64 + z88_13.0.0+dfsg2-3_amd64 + z88dk_1.8.ds1-10_amd64 + z88dk-bin_1.8.ds1-10_amd64 + zanshin_0.2.1-1+b1_amd64 + zapping_0.10~cvs6-8_amd64 + zapping-dbg_0.10~cvs6-8_amd64 + zatacka_0.1.8-2_amd64 + zathura_0.1.2-4_amd64 + zathura-djvu_0.1-1_amd64 + zathura-ps_0.1-1_amd64 + zaz_1.0.0~dfsg1-1_amd64 + zaz-dbg_1.0.0~dfsg1-1_amd64 + zbar-dbg_0.10+doc-8_amd64 + zbar-tools_0.10+doc-8_amd64 + zeitgeist-core_0.9.0.1-1_amd64 + zeitgeist-datahub_0.8.2-1_amd64 + zenity_3.4.0-2_amd64 + zenmap_6.00-0.3+deb7u1_amd64 + zephyr-clients_3.0.2-2_amd64 + zephyr-server_3.0.2-2_amd64 + zephyr-server-krb5_3.0.2-2_amd64 + zerofree_1.0.2-1_amd64 + zfs-fuse_0.7.0-8_amd64 + zftp_20061220+dfsg3-2_amd64 + zgv_5.9-4+b1_amd64 + zh-autoconvert_0.3.16-3_amd64 + zhcon_1:0.2.6-10_amd64 + zile_2.3.21-1_amd64 + zimpl_3.2.0+dfsg-2_amd64 + zinnia-utils_0.06-1+b1_amd64 + zip_3.0-6_amd64 + zipcmp_0.10.1-1.1_amd64 + zipmerge_0.10.1-1.1_amd64 + zipper.app_1.3-2.1_amd64 + ziproxy_3.2.0-2_amd64 + ziptorrent_0.10.1-1.1_amd64 + zita-ajbridge_0.2.2-1_amd64 + zita-alsa-pcmi-utils_0.2.0-1_amd64 + zita-at1_0.2.3-2_amd64 + zita-lrx_0.1.0-1_amd64 + zita-resampler_1.1.0-3_amd64 + zita-resampler-dbg_1.1.0-3_amd64 + zita-rev1_0.2.1-2_amd64 + zivot_20013101-3+b1_amd64 + zlib-bin_1:1.2.7.dfsg-13_amd64 + zlib-gst_3.2.4-2_amd64 + zlib1g_1:1.2.7.dfsg-13_amd64 + zlib1g-dbg_1:1.2.7.dfsg-13_amd64 + zlib1g-dev_1:1.2.7.dfsg-13_amd64 + zlibc_0.9k-4.1_amd64 + zmakebas_1.2-1.1_amd64 + znc_0.206-2_amd64 + znc-dbg_0.206-2_amd64 + znc-dev_0.206-2_amd64 + znc-extra_0.206-2_amd64 + znc-perl_0.206-2_amd64 + znc-python_0.206-2_amd64 + znc-tcl_0.206-2_amd64 + zoem_11-166-1_amd64 + zomg_0.5.14-2_amd64 + zoneminder_1.25.0-4_amd64 + zoo_2.10-27_amd64 + zookeeper-bin_3.3.5+dfsg1-2_amd64 + zope2.12_2.12.26-1_amd64 + zorp_3.9.5-4_amd64 + zorp-dbg_3.9.5-4_amd64 + zorp-modules_3.9.5-4_amd64 + zorp-modules-dbg_3.9.5-4_amd64 + zp_1.0-1_amd64 + zpaq_1.10-1_amd64 + zpspell_0.4.3-4.1_amd64 + zsh_4.3.17-1_amd64 + zsh-beta_4.3.17-dev-0+20120621-1_amd64 + zsh-dbg_4.3.17-1_amd64 + zsh-dev_4.3.17-1_amd64 + zsh-static_4.3.17-1_amd64 + zssh_1.5c.debian.1-3.1_amd64 + zsync_0.6.2-1_amd64 + zutils_0.9-6_amd64 + zutils-dbg_0.9-6_amd64 + zvbi_0.2.33-6_amd64 + zynadd_1+git.20100609+dfsg0-2_amd64 + zynaddsubfx_2.4.0-2_amd64 + zynjacku_6-4_amd64 + zziplib-bin_0.13.56-1.1_amd64 + zzuf_0.13.svn20100215-4_amd64 + 0ad_0~r11863-2_i386 + 0ad-dbg_0~r11863-2_i386 + 3dchess_0.8.1-17_i386 + 3depict_0.0.10-1_i386 + 4digits_1.1.2-1_i386 + 4g8_1.0-3_i386 + 4store_1.1.4-2_i386 + 6tunnel_0.11rc2-7_i386 + 7kaa_2.14.3-1_i386 + 7kaa-dbg_2.14.3-1_i386 + 9base_1:6-5_i386 + 9menu_1.8-5_i386 + 9wm_1.2-9_i386 + a2jmidid_7+dfsg0-1_i386 + a2ps_1:4.14-1.1_i386 + a56_1.3-6_i386 + a7xpg_0.11.dfsg1-7_i386 + aa3d_1.0-8_i386 + aajm_0.4-6_i386 + aaphoto_0.41-1.1_i386 + abcm2ps_6.6.17-1_i386 + abcmidi_20070318-2_i386 + abcmidi-yaps_20070318-2_i386 + abe_1.1+dfsg-1_i386 + abgate_1.1.6-1_i386 + abinit_5.3.4.dfsg-3_i386 + abiword_2.9.2+svn20120603-8_i386 + abiword-dbg_2.9.2+svn20120603-8_i386 + abiword-plugin-grammar_2.9.2+svn20120603-8_i386 + abiword-plugin-mathview_2.9.2+svn20120603-8_i386 + abook_0.6.0~pre2-3_i386 + abootimg_0.6-1_i386 + abr2gbr_1:1.0.2-2_i386 + abraca_0.7.0-1_i386 + abtransfers_0.0.3.0-2_i386 + accountsservice_0.6.21-8_i386 + acct_6.5.5-1_i386 + ace-gperf_6.0.3+dfsg-0.1_i386 + ace-netsvcs_6.0.3+dfsg-0.1_i386 + ace-of-penguins_1.3-8_i386 + acedb-other_4.9.39+dfsg.01-5_i386 + acedb-other-belvu_4.9.39+dfsg.01-5_i386 + acedb-other-dotter_4.9.39+dfsg.01-5_i386 + aces3_3.0.6-7_i386 + acetoneiso_2.3-2_i386 + acfax_981011-14.1_i386 + achilles_2-8_i386 + ack_1.39-12_i386 + acl_2.2.51-8_i386 + acl2_4.3-3_i386 + acl2-books_4.3-3_i386 + acl2-infix_4.3-3_i386 + aclock.app_0.2.3-4.3_i386 + acm_5.0-28_i386 + aconnectgui_0.9.0rc2-1-9_i386 + acorn-fdisk_3.0.6-8_i386 + acoustid-fingerprinter_0.4-2_i386 + acpi_1.6-1_i386 + acpi-fakekey_0.140-5_i386 + acpid_1:2.0.16-1+deb7u1_i386 + acpidump_20100513-3.1_i386 + acpitail_0.1-4_i386 + acpitool_0.5.1-3_i386 + acpitool-dbg_0.5.1-3_i386 + actionaz_3.4.2-1_i386 + adabrowse_4.0.3-5_i386 + adacgi1_1.6-17_i386 + adacontrol_1.12r4-3_i386 + addresses-goodies-for-gnustep_0.4.7-1+b5_i386 + addressmanager.app_0.4.7-1+b5_i386 + adjtimex_1.29-2.2_i386 + admesh_0.95-12_i386 + adns-tools_1.4-2_i386 + adonthell_0.3.5-7.1_i386 + adplay_1.6-1.1_i386 + adplug-utils_2.2.1+dfsg3-0.1_i386 + adun.app_0.81-5+b2_i386 + advancecomp_1.15-1_i386 + advi_1.10.2-1_i386 + aegis_4.24.3-3_i386 + aegis-web_4.24.3-3_i386 + aegisub_2.1.9-1_i386 + aeolus_0.8.4-6_i386 + aes2501-wy_0.1-5_i386 + aesfix_1.0.1-2_i386 + aeskeyfind_1:1.0-1_i386 + aeskulap_0.2.2b1-11_i386 + aespipe_2.4c-1_i386 + aewan_1.0.01-3_i386 + aewm_1.3.12-2.1_i386 + aewm++_1.1.2-5_i386 + aewm++-goodies_1.0-9_i386 + affiche.app_0.6.0-8+b2_i386 + afflib-dbg_3.6.6-1.1+b1_i386 + afflib-tools_3.6.6-1.1+b1_i386 + afnix_2.2.0-2_i386 + afterstep_2.2.11-7_i386 + afterstep-dbg_2.2.11-7_i386 + afuse_0.2-3+b1_i386 + agave_0.4.7-2.1+b1_i386 + agda-bin_2.3.0.1-1_i386 + agedu_8928-1_i386 + agenda.app_0.42.2-1_i386 + aggregate_1.6-7_i386 + aghermann_0.6.0.1-1_i386 + aha_0.4.4-1_i386 + ahcpd_0.53-1_i386 + ahven-dbg_2.1-4_i386 + aiccu_20070115-15.1_i386 + aide_0.15.1-8_i386 + aide-dynamic_0.15.1-8_i386 + aide-xen_0.15.1-8_i386 + aiksaurus_1.2.1+dev-0.12-6.1_i386 + airstrike_0.99+1.0pre6a-5_i386 + aisleriot_1:3.4.1-1_i386 + aj-snapshot_0.9.6-1_i386 + akonadi-backend-sqlite_1.7.2-3_i386 + akonadi-dbg_1.7.2-3_i386 + akonadi-kde-resource-googledata_1.2.0-1+b2_i386 + akonadi-server_1.7.2-3_i386 + akonadiconsole_4:4.4.11.1+l10n-3+b1_i386 + akregator_4:4.4.11.1+l10n-3+b1_i386 + alarm-clock_1.2.5-1.2_i386 + alarm-clock-applet_0.3.3-1_i386 + aldo_0.7.6-1_i386 + ale_0.9.0.3-1.1_i386 + alevt_1:1.6.2-5_i386 + alevtd_3.102-3_i386 + alex_3.0.1-1_i386 + alex4_1.1-5+b1_i386 + algol68g_2.4.1-1_i386 + alienblaster_1.1.0-7_i386 + aliki_0.1.0-1_i386 + aliki-dbg_0.1.0-1_i386 + alleyoop_0.9.8-1_i386 + alliance_5.0-20120515-1_i386 + alltray_0.71b-1_i386 + almanah_0.9.1-1_i386 + alpine_2.02+dfsg-2_i386 + alpine-dbg_2.02+dfsg-2_i386 + alpine-pico_2.02+dfsg-2_i386 + alsa-oss_1.0.25-1_i386 + alsa-tools_1.0.25-2_i386 + alsa-tools-gui_1.0.25-2_i386 + alsa-utils_1.0.25-4_i386 + alsamixergui_0.9.0rc2-1-9.1_i386 + alsaplayer-alsa_0.99.80-5.1_i386 + alsaplayer-common_0.99.80-5.1_i386 + alsaplayer-daemon_0.99.80-5.1_i386 + alsaplayer-esd_0.99.80-5.1_i386 + alsaplayer-gtk_0.99.80-5.1_i386 + alsaplayer-jack_0.99.80-5.1_i386 + alsaplayer-nas_0.99.80-5.1_i386 + alsaplayer-oss_0.99.80-5.1_i386 + alsaplayer-text_0.99.80-5.1_i386 + alsaplayer-xosd_0.99.80-5.1_i386 + alsoft-conf_1.4.3-1_i386 + alt-ergo_0.94-2_i386 + alt-key_2.2.5-1_i386 + altermime_0.3.10-7_i386 + altree_1.2.1-1_i386 + alure-utils_1.2-6_i386 + am-utils_6.2+rc20110530-3_i386 + amanda-client_1:3.3.1-4_i386 + amanda-common_1:3.3.1-4_i386 + amanda-server_1:3.3.1-4_i386 + amap-align_2.2-3_i386 + amarok_2.6~beta1+75.g47e75df-1_i386 + amarok-dbg_2.6~beta1+75.g47e75df-1_i386 + amarok-utils_2.6~beta1+75.g47e75df-1_i386 + amavisd-milter_1.5.0-5_i386 + amavisd-milter-dbg_1.5.0-5_i386 + amb-plugins_0.8.1-3_i386 + ambdec_0.5.1-2_i386 + amide_1.0.1-1_i386 + amideco_0.31e-3.1_i386 + amiga-fdisk-cross_0.04-14_i386 + amoebax_0.2.1+dfsg-1_i386 + amor_4:4.8.4-1_i386 + amora-applet_1.2~svn699-1_i386 + amora-cli_1.2~svn699-1_i386 + amphetamine_0.8.10-18_i386 + ample_0.5.7-7_i386 + ampliconnoise_1.25-1_i386 + amqp-tools_0.0.1.hg216-1_i386 + ams_2.0.1-5_i386 + amsynth_1.3.0-2_i386 + amtterm_1.3-1_i386 + amule_2.3.1-9_i386 + amule-daemon_2.3.1-9_i386 + amule-emc_0.5.2-2_i386 + amule-utils_2.3.1-9_i386 + amule-utils-gui_2.3.1-9_i386 + an_1.0-2_i386 + anacron_2.3-19_i386 + analog_2:6.0-19.1_i386 + and_1.2.2-4.1_i386 + angband_1:3.3.2-2.1_i386 + animals_201007161925-8_i386 + animals-dbg_201007161925-8_i386 + anjuta_2:3.4.3-1_i386 + anjuta-dbg_2:3.4.3-1_i386 + anjuta-extras_3.4.0-1_i386 + ann-tools_1.1.2+doc-3_i386 + anon-proxy_00.05.38+20081230-2.1_i386 + ant-gcj_1.8.2-4_i386 + ant-optional-gcj_1.8.2-4_i386 + ant-phone_0.2.1-2_i386 + antennavis_0.3.1-2_i386 + anthy_9100h-16_i386 + antigravitaattori_0.0.3-5_i386 + antiword_0.37-8_i386 + ants_1.9.2+svn680.dfsg-4_i386 + anubis_4.1.1+dfsg1-3.1_i386 + anypaper_1.4-1_i386 + anyremote_6.0+dfsg-1_i386 + anytun_0.3.4-2_i386 + aoetools_30-3_i386 + aoeui_1.6~dfsg-2_i386 + aolserver4-core_4.5.1-15.1_i386 + aolserver4-daemon_4.5.1-15.1_i386 + aolserver4-dev_4.5.1-15.1_i386 + aolserver4-nsldap_0.8-4+b1_i386 + aolserver4-nsmysql_0.6-9+b3_i386 + aolserver4-nsopenssl_3.0beta26-4+b1_i386 + aolserver4-nspostgres_4.5-3+b1_i386 + aolserver4-nssha1_0.1-3+b1_i386 + aolserver4-nssqlite3_0.9-2+b1_i386 + aolserver4-nsxml_1.5-2.1_i386 + aosd-cat_0.2.7-1_i386 + ap-utils_1.5-2_i386 + apache2_2.2.22-13+deb7u1_i386 + apache2-dbg_2.2.22-13+deb7u1_i386 + apache2-mpm-event_2.2.22-13+deb7u1_i386 + apache2-mpm-itk_2.2.22-13+deb7u1_i386 + apache2-mpm-prefork_2.2.22-13+deb7u1_i386 + apache2-mpm-worker_2.2.22-13+deb7u1_i386 + apache2-prefork-dev_2.2.22-13+deb7u1_i386 + apache2-suexec_2.2.22-13+deb7u1_i386 + apache2-suexec-custom_2.2.22-13+deb7u1_i386 + apache2-threaded-dev_2.2.22-13+deb7u1_i386 + apache2-utils_2.2.22-13+deb7u1_i386 + apache2.2-bin_2.2.22-13+deb7u1_i386 + apache2.2-common_2.2.22-13+deb7u1_i386 + apachetop_0.12.6-16_i386 + apbs_1.3.0-2_i386 + apcalc_2.12.4.4-3_i386 + apcalc-dev_2.12.4.4-3_i386 + apcupsd_3.14.10-2_i386 + apcupsd-cgi_3.14.10-2_i386 + apertium_3.1.0-2_i386 + apertium-dbus_0.1-1.1_i386 + apertium-en-ca_0.8.9-1+b1_i386 + apertium-en-es_0.6.0-1.1+b1_i386 + apertium-eo-ca_0.9.0-1.1+b1_i386 + apertium-eo-es_0.9.0-1.1+b1_i386 + apertium-es-ca_1.1.0-1_i386 + apertium-es-gl_1.0.7-1_i386 + apertium-es-pt_1.0.3-2.1_i386 + apertium-es-ro_0.7.1-2.1_i386 + apertium-eu-es_0.3.1-1+b1_i386 + apertium-fr-ca_1.0.2-1_i386 + apertium-fr-es_0.9.0-1+b1_i386 + apertium-oc-ca_1.0.5-1.1+b1_i386 + apertium-oc-es_1.0.5-1.1+b1_i386 + apertium-pt-ca_0.8.1-1_i386 + apertium-pt-gl_0.9.1-1_i386 + apertium-tolk_0.2-2.2_i386 + apf-client_0.8.4-1+b1_i386 + apf-server_0.8.4-1+b1_i386 + apg_2.2.3.dfsg.1-2_i386 + aplus-fsf_4.22.1-6_i386 + aplus-fsf-dev_4.22.1-6_i386 + apmd_3.2.2-14_i386 + apng2gif_1.5-1_i386 + apparix_07-261-1_i386 + apparmor_2.7.103-4_i386 + apparmor-utils_2.7.103-4_i386 + apper_0.7.2-5_i386 + apper-appsetup_0.7.2-5_i386 + apper-dbg_0.7.2-5_i386 + appmenu-qt_0.2.6-1_i386 + approx_5.3-1_i386 + aprsd_1:2.2.5-13-5.2_i386 + aprsdigi_2.4.4-3.2_i386 + apt_0.9.7.9+deb7u1_i386 + apt-build_0.12.44_i386 + apt-cacher-ng_0.7.11-1_i386 + apt-cudf_3.0.2-3_i386 + apt-dater_0.9.0-3+wheezy1_i386 + apt-dater-dbg_0.9.0-3+wheezy1_i386 + apt-move_4.2.27-3_i386 + apt-spy_3.2.2-1_i386 + apt-transport-debtorrent_0.2.2+b1_i386 + apt-transport-https_0.9.7.9+deb7u1_i386 + apt-utils_0.9.7.9+deb7u1_i386 + apt-watch-backend_0.4.0-2.1_i386 + apt-watch-gnome_0.4.0-2.1_i386 + aptitude_0.6.8.2-1_i386 + aptitude-dbg_0.6.8.2-1_i386 + aptsh_0.0.7+nmu2+b1_i386 + apvlv_0.1.1-1.2+b1_i386 + apwal_0.4.5-1_i386 + aqbanking-tools_5.0.24-3_i386 + aqemu_0.8.2-2_i386 + aqsis_1.8.1-3_i386 + aqualung_0.9~beta11-1.2+b1_i386 + ara_1.0.31_i386 + aranym_0.9.13-6_i386 + arbtt_0.6.2-1_i386 + arc_5.21p-1_i386 + archivemount_0.6.1-2+b1_i386 + ardesia_1.0-2_i386 + ardour_1:2.8.14-2_i386 + ardour-i686_1:2.8.14-2_i386 + argus-client_2.0.6.fixes.1-3_i386 + argus-server_1:2.0.6.fixes.1-16.3_i386 + argyll_1.4.0-8_i386 + argyll-dbg_1.4.0-8_i386 + aria2_1.15.1-1_i386 + aribas_1.64-5_i386 + ario_1.5.1-1+b1_i386 + arj_3.10.22-10_i386 + ark_4:4.8.4-2_i386 + ark-dbg_4:4.8.4-2_i386 + armada-backlight_1.1-6_i386 + armagetronad_0.2.8.3.2-1_i386 + armagetronad-dedicated_0.2.8.3.2-1_i386 + arora_0.11.0-1_i386 + arp-scan_1.8.1-2_i386 + arpalert_2.0.11-7.1_i386 + arping_2.11-1_i386 + arpon_2.0-2.1_i386 + arptables_0.0.3.4-1_i386 + arpwatch_2.1a15-1.2_i386 + array-info_0.15-1_i386 + artha_1.0.2-1_i386 + as31_2.3.1-6_i386 + asc_2.4.0.0-3_i386 + ascd_0.13.2-5_i386 + ascdc_0.3-14_i386 + ascii_3.11-1_i386 + ascii2binary_2.14-1_i386 + asciijump_1.0.2~beta-6_i386 + asclock_2.0.12-23_i386 + asis-programs_2010-5_i386 + asmail_2.1-3_i386 + asmix_1.5-4.1_i386 + asmixer_0.5-14_i386 + asmon_0.71-5_i386 + asp_1.8-8_i386 + aspcud_2011.03.17.dfsg-6_i386 + aspectc++_1:1.1+svn20120529-2_i386 + aspell_0.60.7~20110707-1_i386 + aspell-da_1.6.25-1.1_i386 + aspell-fi_0.7-18_i386 + aspell-no_2.0.10-5.1_i386 + aspic_1.05-4_i386 + assimp-utils_3.0~dfsg-1_i386 + assogiate_0.2.1-5_i386 + asterisk_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dahdi_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-dbg_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-espeak_2.1-1+b1_i386 + asterisk-flite_2.1-1.1_i386 + asterisk-mobile_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-modules_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mp3_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-mysql_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-ooh323_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-imapstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + asterisk-voicemail-odbcstorage_1:1.8.13.1~dfsg1-3+deb7u3_i386 + astronomical-almanac_5.6-4_i386 + astyle_2.01-1_i386 + asunder_2.2-1_i386 + asylum_0.3.2-1_i386 + asymptote_2.15-2_i386 + at_3.1.13-2_i386 + at-spi_1.32.0-2_i386 + at-spi2-core_2.5.3-2_i386 + at-spi2-core-dbg_2.5.3-2_i386 + atanks_5.5+dfsg-0.1_i386 + aterm_1.0.1-8_i386 + aterm-ml_1.0.1-8_i386 + atfs_1.4pl6-11_i386 + atfs-dev_1.4pl6-11_i386 + atftp_0.7.dfsg-11_i386 + atftpd_0.7.dfsg-11_i386 + athcool_0.3.12-3_i386 + athena-jot_9.0-5_i386 + atitvout_0.4-13_i386 + atlc_4.6.1-1_i386 + atm-tools_1:2.5.1-1.5_i386 + atom4_4.1-5.1_i386 + atomicparsley_0.9.2~svn110-4_i386 + atomix_2.14.0-2_i386 + atop_1.26-2_i386 + atp_1.2-11_i386 + atris_1.0.7.dfsg.1-8_i386 + ats-lang-anairiats_0.2.3-1+b3_i386 + atsar_1.7-2_i386 + attal_1.0~rc2-2_i386 + attr_1:2.4.46-8_i386 + aubio-tools_0.3.2-4.2+b1_i386 + audacious_3.2.4-1_i386 + audacious-dbg_3.2.4-1_i386 + audacious-dev_3.2.4-1_i386 + audacious-dumb_0.80-1_i386 + audacious-plugins_3.2.4-1_i386 + audacious-plugins-dbg_3.2.4-1_i386 + audacity_2.0.1-1_i386 + audacity-dbg_2.0.1-1_i386 + audex_0.74~b1-1.1_i386 + audiofile-tools_0.3.4-2_i386 + audiopreview_0.6-2_i386 + audispd-plugins_1:1.7.18-1.1_i386 + auditd_1:1.7.18-1.1_i386 + audtty_0.1.12-3_i386 + aufs-tools_1:3.0+20120411-2_i386 + aufs-tools-dbg_1:3.0+20120411-2_i386 + augeas-dbg_0.10.0-1_i386 + augeas-tools_0.10.0-1_i386 + aumix_2.9.1-2_i386 + aumix-gtk_2.9.1-2_i386 + auralquiz_0.8.1-1_i386 + authbind_2.1.1_i386 + auto-apt_0.3.22_i386 + auto-multiple-choice_1.1.1-2_i386 + autoclass_3.3.6.dfsg.1-1_i386 + autocutsel_0.9.0-2_i386 + autodir_0.99.9-7.1_i386 + autodock_4.2.3-2_i386 + autodock-vina_1.1.2-2+b1_i386 + autofs_5.0.7-3_i386 + autofs-hesiod_5.0.7-3_i386 + autofs-ldap_5.0.7-3_i386 + autogen_1:5.12-0.1_i386 + autogrid_4.2.3-2_i386 + autolog_0.40-13.1_i386 + automoc_1.0~version-0.9.88-5_i386 + autorun4linuxcd_0.13_i386 + autossh_1.4c-1_i386 + autotalent_0.2-2_i386 + autotrace_0.31.1-16+b1_i386 + avahi-autoipd_0.6.31-2_i386 + avahi-daemon_0.6.31-2_i386 + avahi-dbg_0.6.31-2_i386 + avahi-dnsconfd_0.6.31-2_i386 + avahi-ui-utils_0.6.31-2_i386 + avahi-utils_0.6.31-2_i386 + avarice_2.11-1_i386 + avce00_2.0.0-2_i386 + avfs_1.0.0-4_i386 + aview_1.3.0rc1-9_i386 + avinfo_1.0.a15+20090102-1_i386 + avogadro_1.0.3-5_i386 + avr-evtd_1.7.7-2_i386 + avra_1.2.3a-1_i386 + avrdude_5.11.1-1_i386 + avrp_1.0beta3-7_i386 + avrprog_0.2.2-2_i386 + awardeco_0.2-3.1_i386 + away_0.9.5-3_i386 + aweather_0.7-1_i386 + awesfx_0.5.1a-1.1_i386 + awesome_3.4.13-1_i386 + awffull_3.10.2-1_i386 + ax25-node_0.3.2-7.4_i386 + ax25-tools_0.0.10-rc2+cvs20120204-3_i386 + ax25-xtools_0.0.10-rc2+cvs20120204-3_i386 + axel_2.4-1_i386 + axel-dbg_2.4-1_i386 + axiom_20120501-1_i386 + axiom-graphics_20120501-1_i386 + axiom-hypertex_20120501-1_i386 + aylet_0.5-3_i386 + aylet-gtk_0.5-3_i386 + ayttm_0.6.3-3_i386 + azr3-jack_1.2.3-1_i386 + babeld_1.3.1-1_i386 + backuppc_3.2.1-4_i386 + bacula-common_5.2.6+dfsg-9_i386 + bacula-common-dbg_5.2.6+dfsg-9_i386 + bacula-common-mysql_5.2.6+dfsg-9_i386 + bacula-common-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-common-pgsql_5.2.6+dfsg-9_i386 + bacula-common-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-common-sqlite3_5.2.6+dfsg-9_i386 + bacula-common-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-console_5.2.6+dfsg-9_i386 + bacula-console-dbg_5.2.6+dfsg-9_i386 + bacula-console-qt_5.2.6+dfsg-9_i386 + bacula-console-qt-dbg_5.2.6+dfsg-9_i386 + bacula-director-common_5.2.6+dfsg-9_i386 + bacula-director-common-dbg_5.2.6+dfsg-9_i386 + bacula-director-mysql_5.2.6+dfsg-9_i386 + bacula-director-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-director-pgsql_5.2.6+dfsg-9_i386 + bacula-director-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-director-sqlite3_5.2.6+dfsg-9_i386 + bacula-director-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-fd_5.2.6+dfsg-9_i386 + bacula-fd-dbg_5.2.6+dfsg-9_i386 + bacula-sd_5.2.6+dfsg-9_i386 + bacula-sd-dbg_5.2.6+dfsg-9_i386 + bacula-sd-mysql_5.2.6+dfsg-9_i386 + bacula-sd-mysql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-pgsql_5.2.6+dfsg-9_i386 + bacula-sd-pgsql-dbg_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3_5.2.6+dfsg-9_i386 + bacula-sd-sqlite3-dbg_5.2.6+dfsg-9_i386 + bacula-traymonitor_5.2.6+dfsg-9_i386 + bacula-traymonitor-dbg_5.2.6+dfsg-9_i386 + balance_3.42-1_i386 + balder2d_1.0-1.1+b3_i386 + ballview_1.4.1+20111206-4_i386 + ballview-dbg_1.4.1+20111206-4_i386 + ballz_1.0.2-1+b1_i386 + ballz-dbg_1.0.2-1+b1_i386 + balsa_2.4.12-1_i386 + balsa-dbg_2.4.12-1_i386 + bam_0.4.0-3_i386 + bamf-dbg_0.2.118-1_i386 + bamfdaemon_0.2.118-1_i386 + bandwidthcalc_0.2-1_i386 + bandwidthd_2.0.1+cvs20090917-5_i386 + bandwidthd-pgsql_2.0.1+cvs20090917-5_i386 + bangarang_2.1-2_i386 + banshee_2.4.1-3+b1_i386 + banshee-dbg_2.4.1-3+b1_i386 + banshee-extension-lastfmfingerprint_2.4.0-1_i386 + banshee-extension-lirc_2.4.0-1_i386 + banshee-extension-mirage_2.4.0-1_i386 + banshee-meego_2.4.1-3+b1_i386 + baobab_3.4.1-1_i386 + bar_1.11.0+debian-4_i386 + barcode_0.98+debian-9_i386 + barcode-dbg_0.98+debian-9_i386 + bareftp_0.3.9-1+b1_i386 + barnowl_1.6.2-1.1+b1_i386 + barrage_1.0.3-1_i386 + barry-util_0.18.3-5_i386 + barry-util-dbg_0.18.3-5_i386 + barrybackup-gui_0.18.3-5_i386 + barrybackup-gui-dbg_0.18.3-5_i386 + barrydesktop_0.18.3-5_i386 + barrydesktop-dbg_0.18.3-5_i386 + base-files_7.1wheezy4_i386 + base-passwd_3.5.26_i386 + bash_4.2+dfsg-0.1_i386 + bash-builtins_4.2+dfsg-0.1_i386 + bash-static_4.2+dfsg-0.1_i386 + basic256_0.9.6.69a-1_i386 + basket_1.81-3_i386 + bastet_0.43-2.1+b1_i386 + batctl_2012.1.0-1_i386 + batctl-dbg_2012.1.0-1_i386 + batmand_0.3.2-12_i386 + batmand-dbg_0.3.2-12_i386 + batmon.app_0.6-1_i386 + battery-stats_0.3.6-1_i386 + battleball_2.0-17_i386 + baycomepp_0.10-12.2_i386 + baycomusb_0.10-12.1_i386 + bb_1.3rc1-8.1_i386 + bbe_0.2.2-1_i386 + bbmail_0.8.3-6_i386 + bbpager_0.4.7-3_i386 + bbrun_1.6-6_i386 + bbtime_0.1.5-12_i386 + bc_1.06.95-2_i386 + bcc_0.16.17-3.1_i386 + bchunk_1.2.0-12_i386 + bcpp_0.0.20050725-2_i386 + bcrelay_1.3.4-5.2_i386 + bcron_0.09-13_i386 + bdfresize_1.5-6_i386 + beanstalkd_1.4.6-5_i386 + bear-factory_0.6.0-1+b1_i386 + beast_0.7.4-5_i386 + beav_1:1.40-18_i386 + bedtools_2.16.1-1_i386 + beef_0.0.6-2_i386 + beep_1.3-3+b1_i386 + berusky_1.4-1_i386 + betaradio_1.4-1_i386 + between_6+dfsg1-2_i386 + bfbtester_2.0.1-7.1_i386 + bibclean_2.11.4.1-4_i386 + bibcursed_2.0.0-6_i386 + bible-kjv_4.26_i386 + bibledit-bibletime_1.1.1-1_i386 + bibledit-gtk_4.6-1_i386 + bibledit-xiphos_1.1.1-1_i386 + bibletime_2.9.1-2_i386 + bibtexconv_0.8.20-1_i386 + bibtool_2.55+ds-1_i386 + bibutils_4.12-5_i386 + bidentd_1.1.4-1.1_i386 + bidiv_1.5-4_i386 + biff_1:0.17.pre20000412-5_i386 + billard-gl_1.75-11_i386 + biloba_0.9.3-4_i386 + bin86_0.16.17-3.1_i386 + binclock_1.5-6_i386 + bind9_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9-host_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bind9utils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + bindfs_1.10.3-2_i386 + binfmt-support_2.0.12_i386 + binfmtc_0.17-1_i386 + bing_1.1.3-2_i386 + biniax2_1.30-1_i386 + binkd_0.9.11-1.1_i386 + bino_1.4.0-1_i386 + bino-dbg_1.4.0-1_i386 + binutils_2.22-8_i386 + binutils-avr_2.20.1-3_i386 + binutils-dev_2.22-8_i386 + binutils-gold_2.22-8_i386 + binutils-h8300-hms_2.16.1-8_i386 + binutils-m68hc1x_1:2.18-3.2_i386 + binutils-mingw-w64-i686_2.22-8+2+b1_i386 + binutils-mingw-w64-x86-64_2.22-8+2+b1_i386 + binutils-msp430_2.22~msp20120406-2_i386 + binutils-multiarch_2.22-8_i386 + binutils-z80_2.22-3+b1_i386 + biosig-tools_1.3.0-2_i386 + biosquid_1.9g+cvs20050121-2_i386 + biosquid-dev_1.9g+cvs20050121-2_i386 + bip_0.8.8-2_i386 + bird_1.3.7-1_i386 + bird-dbg_1.3.7-1_i386 + bird6_1.3.7-1_i386 + birthday_1.6.2-3_i386 + bisho_0.27.2+git20111122.9e68ef3d-1_i386 + bison_1:2.5.dfsg-2.1_i386 + bison++_1.21.11-3_i386 + bisonc++_4.01.00-1_i386 + bist_0.5.2-1_i386 + bitlbee_3.0.5-1.2_i386 + bitlbee-libpurple_3.0.5-1.2_i386 + bitlbee-plugin-otr_3.0.5-1.2_i386 + bitmeter_1.2-3_i386 + bitpim-lib_1.0.7+dfsg1-3_i386 + bitstormlite_0.2q-3_i386 + bkhive_1.1.1-1_i386 + black-box_1.4.8-2_i386 + blackbox_0.70.1-13_i386 + blacs-mpi-test_1.1-31_i386 + blacs-pvm-dev_1.1-21_i386 + blacs-pvm-test_1.1-21_i386 + blacs1-pvm_1.1-21_i386 + blahtexml_0.9-1.1_i386 + blast2_1:2.2.26.20120620-2_i386 + blcr-testsuite_0.8.5-2_i386 + blcr-util_0.8.5-2_i386 + bld_0.3.4.1-4_i386 + bld-postfix_0.3.4.1-4_i386 + bld-tools_0.3.4.1-4_i386 + blender_2.63a-1_i386 + blender-dbg_2.63a-1_i386 + blepvco_0.1.0-3_i386 + blinken_4:4.8.4-1_i386 + bliss_0.72-4_i386 + blktap-dev_2.0.90-1_i386 + blktap-dkms_2.0.91-1_i386 + blktap-utils_2.0.90-1_i386 + blktool_4-6.1_i386 + blktrace_1.0.1-2.1_i386 + blobandconquer_1.11-dfsg+20-1_i386 + blobby_1.0~rc1-2_i386 + blobby-server_1.0~rc1-2_i386 + bloboats_1.0.1.dsfg-3_i386 + blobwars_1.19-2_i386 + blockattack_1.4.1+ds1-2.1_i386 + blockout2_2.4+dfsg1-6_i386 + blocks-of-the-undead_1.0-5_i386 + blogilo_4:4.4.11.1+l10n-3+b1_i386 + blop_0.2.8-6_i386 + blt_2.4z-4.2_i386 + blt-dev_2.4z-4.2_i386 + bluedevil_1.2.3-1_i386 + bluefish_2.2.3-4_i386 + bluefish-dbg_2.2.3-4_i386 + bluefish-plugins_2.2.3-4_i386 + blueman_1.23-1_i386 + bluemon_1.4-6_i386 + bluetile_0.6-1_i386 + bluez_4.99-2_i386 + bluez-alsa_4.99-2_i386 + bluez-compat_4.99-2_i386 + bluez-cups_4.99-2_i386 + bluez-dbg_4.99-2_i386 + bluez-gstreamer_4.99-2_i386 + bluez-hcidump_2.4-1_i386 + bluez-pcmcia-support_4.99-2_i386 + bluez-tools_0.1.38+git662e-3_i386 + bmf_0.9.4-9_i386 + bmon_2.0.1-3_i386 + bnfc_2.4.2.0-2_i386 + boa_0.94.14rc21-3.1_i386 + boats_201204-1_i386 + bobot++_1:1.97-10.4_i386 + bochs_2.4.6-5_i386 + bochs-sdl_2.4.6-5_i386 + bochs-svga_2.4.6-5_i386 + bochs-term_2.4.6-5_i386 + bochs-wx_2.4.6-5_i386 + bochs-x_2.4.6-5_i386 + bogl-bterm_0.1.18-8+b1_i386 + bognor-regis_0.6.12+git20101007.02c25268-7_i386 + bogofilter_1.2.2+dfsg1-2_i386 + bogofilter-bdb_1.2.2+dfsg1-2_i386 + bogofilter-sqlite_1.2.2+dfsg1-2_i386 + bogofilter-tokyocabinet_1.2.2+dfsg1-2_i386 + boinc-app-examples_7.0.27+dfsg-5_i386 + boinc-client_7.0.27+dfsg-5_i386 + boinc-dbg_7.0.27+dfsg-5_i386 + boinc-dev_7.0.27+dfsg-5_i386 + boinc-manager_7.0.27+dfsg-5_i386 + boinc-server-maker_7.0.27+dfsg-5_i386 + bombardier_0.8.3+nmu1_i386 + bomber_4:4.8.4-3_i386 + bomberclone_0.11.9-4_i386 + bomstrip_9-6_i386 + bonnie++_1.96_i386 + boolector_1.4.ffc2089.100608-1_i386 + boolstuff_0.1.12-3_i386 + boolstuff-dev_0.1.12-3_i386 + bootchart2_0.14.4-3_i386 + booth_0.1.0-1_i386 + booth-pacemaker_0.1.0-1_i386 + bootlogd_2.88dsf-41+deb7u1_i386 + bootp_2.4.3-18_i386 + bootparamd_0.17-9_i386 + bootpc_0.64-7_i386 + bopm_3.1.3-3_i386 + bosh_0.6-6_i386 + boswars_2.6.1-2_i386 + botan1.10-dbg_1.10.5-1_i386 + bottlerocket_0.05b3-14.1_i386 + bovo_4:4.8.4-3_i386 + bowtie_0.12.7-3_i386 + bowtie2_2.0.0-beta6-3_i386 + boxbackup-client_0.11.1~r2837-1_i386 + boxbackup-server_0.11.1~r2837-1_i386 + boxes_1.0.1a-2.3_i386 + boxshade_3.3.1-7+wheezy1_i386 + bozohttpd_20111118-1_i386 + bplay_0.991-10_i386 + bppphyview_0.2.1-1_i386 + bppsuite_0.7.0-1_i386 + br2684ctl_1:2.5.1-1.5_i386 + braindump_1:2.4.4-3_i386 + brandy_1.20~pre5-4_i386 + brasero_3.4.1-4_i386 + brasero-cdrkit_3.4.1-4_i386 + brewtarget_1.2.4+dfsg-1.1_i386 + brickos_0.9.0.dfsg-6_i386 + bridge-utils_1.5-6_i386 + brightside_1.4.0-4.1_i386 + briquolo_0.5.7-4_i386 + bristol_0.60.10-3_i386 + brltty_4.4-10+deb7u1_i386 + brltty-dbg_4.4-10+deb7u1_i386 + brltty-espeak_4.4-10+deb7u1_i386 + brltty-flite_4.4-10+deb7u1_i386 + brltty-speechd_4.4-10+deb7u1_i386 + brltty-x11_4.4-10+deb7u1_i386 + browser-history_2.8-15_i386 + browser-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + browser-plugin-lightspark_0.6.0.1-2_i386 + browser-plugin-packagekit_0.7.6-3_i386 + browser-plugin-vlc_2.0.0-2_i386 + brp-pacu_2.1.1+git20110314~repack1-2_i386 + brp-pacu-dbg_2.1.1+git20110314~repack1-2_i386 + brutalchess_0.5.2+dfsg-4_i386 + brutefir_1.0k-2_i386 + bs2b-ladspa_0.9.1-3_i386 + bsd-mailx_8.1.2-0.20111106cvs-1_i386 + bsdcpio_3.0.4-3+nmu1_i386 + bsdgames_2.17-21_i386 + bsdiff_4.3-14_i386 + bsdmainutils_9.0.3_i386 + bsdtar_3.0.4-3+nmu1_i386 + bsdutils_1:2.20.1-5.3_i386 + bse-alsa_0.7.4-5_i386 + bsh-gcj_2.0b4-12_i386 + bsign_0.4.5_i386 + bsnes_0.088-5_i386 + btag_1.1.3-1+b1_i386 + btanks_0.9.8083-4_i386 + bti_032-1_i386 + btrfs-tools_0.19+20120328-7.1_i386 + btrfs-tools-dbg_0.19+20120328-7.1_i386 + btscanner_2.1-5.1_i386 + btyacc_3.0-5_i386 + bubblefishymon_0.6.4-5_i386 + buffer_1.19-11_i386 + buffy_1.5-1_i386 + bugsquish_0.0.6-7_i386 + buici-clock_0.4.9.2_i386 + build-essential_11.5_i386 + buildapp_1.4.2-1_i386 + buildtorrent_0.8-4_i386 + bumprace_1.5.4-1_i386 + bup_0.25~git2011.11.04-5.1_i386 + burgerspace_1.9.0-4_i386 + burp_1.3.8-1_i386 + burp-dbg_1.3.8-1_i386 + busybox_1:1.20.0-7_i386 + busybox-static_1:1.20.0-7_i386 + buthead_1.1-2_i386 + buzztard_0.5.0-4_i386 + buzztard-bsl_0.5.0-2.1_i386 + bvi_1.3.2-2_i386 + bwa_0.6.2-1_i386 + bwbar_1.2.3-2_i386 + bwbasic_2.20pl2-11_i386 + bwm-ng_0.6-3.1_i386 + bximage_2.4.6-5_i386 + byacc_20120115-1_i386 + byacc-j_1.15-1_i386 + bygfoot_2.3.2-1_i386 + byzanz_0.2.2+git22.10.2011-1.3_i386 + bzflag-client_2.0.16.20100405+nmu1_i386 + bzflag-server_2.0.16.20100405+nmu1_i386 + bzip2_1.0.6-4_i386 + c-icap_1:0.1.6-1.1_i386 + c-repl_0.0.20071223-1_i386 + c2hs_0.16.3-2_i386 + cabal-debian_1.25-1_i386 + cabal-install_0.14.0-2_i386 + cabextract_1.4-3_i386 + cableswig_0.1.0+cvs20111009-1_i386 + caca-utils_0.99.beta18-1_i386 + cachefilesd_0.9-3.1_i386 + cacti-spine_0.8.8a-1_i386 + cadabra_1.29-1_i386 + cadaver_0.23.3-1_i386 + cain-solvers_1.9-4_i386 + cairo-5c_1.8.1_i386 + cairo-clock_0.3.4-2_i386 + cairo-dock_3.0.0-2+deb7u1_i386 + cairo-dock-alsamixer-plug-in_3.0.0-1_i386 + cairo-dock-animated-icons-plug-in_3.0.0-1_i386 + cairo-dock-cairo-penguin-plug-in_3.0.0-1_i386 + cairo-dock-clipper-plug-in_3.0.0-1_i386 + cairo-dock-clock-plug-in_3.0.0-1_i386 + cairo-dock-core_3.0.0-2+deb7u1_i386 + cairo-dock-dbus-plug-in_3.0.0-1_i386 + cairo-dock-desklet-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dev_3.0.0-2+deb7u1_i386 + cairo-dock-dialog-rendering-plug-in_3.0.0-1_i386 + cairo-dock-dnd2share-plug-in_3.0.0-1_i386 + cairo-dock-drop-indicator-plug-in_3.0.0-1_i386 + cairo-dock-dustbin-plug-in_3.0.0-1_i386 + cairo-dock-folders-plug-in_3.0.0-1_i386 + cairo-dock-gmenu-plug-in_3.0.0-1_i386 + cairo-dock-gnome-integration-plug-in_3.0.0-1_i386 + cairo-dock-icon-effect-plug-in_3.0.0-1_i386 + cairo-dock-illusion-plug-in_3.0.0-1_i386 + cairo-dock-impulse-plug-in_3.0.0-1_i386 + cairo-dock-kde-integration-plug-in_3.0.0-1_i386 + cairo-dock-keyboard-indicator-plug-in_3.0.0-1_i386 + cairo-dock-logout-plug-in_3.0.0-1_i386 + cairo-dock-mail-plug-in_3.0.0-1_i386 + cairo-dock-messaging-menu-plug-in_3.0.0-1_i386 + cairo-dock-motion-blur-plug-in_3.0.0-1_i386 + cairo-dock-musicplayer-plug-in_3.0.0-1_i386 + cairo-dock-netspeed-plug-in_3.0.0-1_i386 + cairo-dock-plug-ins_3.0.0-1_i386 + cairo-dock-powermanager-plug-in_3.0.0-1_i386 + cairo-dock-quick-browser-plug-in_3.0.0-1_i386 + cairo-dock-recent-events-plug-in_3.0.0-1_i386 + cairo-dock-remote-control-plug-in_3.0.0-1_i386 + cairo-dock-rendering-plug-in_3.0.0-1_i386 + cairo-dock-rssreader-plug-in_3.0.0-1_i386 + cairo-dock-shortcuts-plug-in_3.0.0-1_i386 + cairo-dock-showdesktop-plug-in_3.0.0-1_i386 + cairo-dock-showmouse-plug-in_3.0.0-1_i386 + cairo-dock-slider-plug-in_3.0.0-1_i386 + cairo-dock-stack-plug-in_3.0.0-1_i386 + cairo-dock-switcher-plug-in_3.0.0-1_i386 + cairo-dock-system-monitor-plug-in_3.0.0-1_i386 + cairo-dock-systray-plug-in_3.0.0-1_i386 + cairo-dock-terminal-plug-in_3.0.0-1_i386 + cairo-dock-tomboy-plug-in_3.0.0-1_i386 + cairo-dock-toons-plug-in_3.0.0-1_i386 + cairo-dock-weather-plug-in_3.0.0-1_i386 + cairo-dock-weblets-plug-in_3.0.0-1_i386 + cairo-dock-wifi-plug-in_3.0.0-1_i386 + cairo-dock-xfce-integration-plug-in_3.0.0-1_i386 + cairo-dock-xgamma-plug-in_3.0.0-1_i386 + cairo-perf-utils_1.12.2-3_i386 + calcoo_1.3.18-3_i386 + calcurse_2.9.2-1_i386 + calendar-google-provider_10.0.12-1_i386 + calendar-timezones_10.0.12-1_i386 + calendarserver_3.2+dfsg-4_i386 + calf-plugins_0.0.18.6-5_i386 + calgebra_4:4.8.4-2_i386 + calibre-bin_0.8.51+dfsg1-0.1_i386 + calife_1:3.0.1-4_i386 + calligra-dbg_1:2.4.4-3_i386 + calligra-libs_1:2.4.4-3_i386 + calligra-reports-map-element_1:2.4.4-3_i386 + calligra-reports-web-element_1:2.4.4-3_i386 + calligraflow_1:2.4.4-3_i386 + calligramobile_1:2.4.4-3_i386 + calligraplan_1:2.4.4-3_i386 + calligrasheets_1:2.4.4-3_i386 + calligrastage_1:2.4.4-3_i386 + calligrawords_1:2.4.4-3_i386 + cam_1.05-8_i386 + cameleon_1.9.21-2+b1_i386 + camera.app_0.8.0-9+b2_i386 + camlidl_1.05-14_i386 + camlp4_3.12.1-4_i386 + camlp4-extra_3.12.1-4_i386 + camlp5_6.06-1_i386 + camorama_0.19-2.2_i386 + canna_3.7p3-11_i386 + canna-utils_3.7p3-11_i386 + canto_0.7.10-4_i386 + cantor_4:4.8.4-2_i386 + cantor-backend-kalgebra_4:4.8.4-2_i386 + cantor-backend-maxima_4:4.8.4-2_i386 + cantor-backend-octave_4:4.8.4-2_i386 + cantor-backend-qalculate_4:4.8.4-2_i386 + cantor-backend-r_4:4.8.4-2_i386 + cantor-backend-sage_4:4.8.4-2_i386 + cantor-backend-scilab_4:4.8.4-2_i386 + cantor-dbg_4:4.8.4-2_i386 + capi4hylafax_1:01.03.00.99.svn.300-18_i386 + capiutils_1:3.25+dfsg1-3.3~deb7u1_i386 + caps_0.4.2-1_i386 + caret_5.6.4~dfsg.1-3_i386 + carettah_0.1.2-1_i386 + catcodec_1.0.5-1_i386 + catdoc_0.94.4-1.1_i386 + catdvi_0.14-12.1_i386 + cavezofphear_0.5.1-1_i386 + cb2bib_1.4.8-1_i386 + cba_0.3.6-4_i386 + cbflib-bin_0.7.9.1-3_i386 + cbm_0.1-9_i386 + cbmc_4.1-1.2_i386 + cbrpager_0.9.22-1_i386 + cc1111_2.9.0-2_i386 + ccache_3.1.7-1_i386 + ccal_4.0-3_i386 + ccbuild_2.0.3-1+b1_i386 + cccc_1:3.1.4-4_i386 + cccd_0.3beta4-6.2_i386 + ccd2iso_0.3-3_i386 + cciss-vol-status_1.09-2+deb7u1_i386 + cclive_0.7.9-1_i386 + ccontrol_1.0-1_i386 + cconv_0.6.2-1_i386 + ccrypt_1.9-4_i386 + ccze_0.2.1-2_i386 + cd-discid_1.3.1-1_i386 + cd-hit_4.6-2012-04-25-1_i386 + cd5_0.1-3_i386 + cdargs_1.35-9_i386 + cdbackup_0.7.0-5_i386 + cdcat_1.8-1_i386 + cdcd_0.6.6-13.1_i386 + cdcd-dbg_0.6.6-13.1_i386 + cdck_0.7.0-5_i386 + cdcover_0.9.1-10_i386 + cdde_0.3.1-1_i386 + cde_0.1-1_i386 + cdebconf_0.182_i386 + cdebconf-gtk_0.182_i386 + cdebootstrap_0.5.9_i386 + cdebootstrap-static_0.5.9_i386 + cdecl_2.5-11+b1_i386 + cdo_1.5.4+dfsg.1-5_i386 + cdparanoia_3.10.2+debian-10.1_i386 + cdparanoia-dbg_3.10.2+debian-10.1_i386 + cdpr_2.4-1_i386 + cdrdao_1:1.2.3-0.3_i386 + cdrskin_1.2.2-2_i386 + cdtool_2.1.8-release-2_i386 + cduce_0.5.5-1_i386 + cdw_0.7.1-1_i386 + cec-utils_1.6.2-1.1_i386 + ceferino_0.97.8-3.1_i386 + celestia-glut_1.6.1+dfsg-2_i386 + celestia-gnome_1.6.1+dfsg-2_i386 + cellwriter_1.3.4-1.1_i386 + cenon.app_3.93-1.2_i386 + centerim_4.22.10-2_i386 + centerim-fribidi_4.22.10-2_i386 + centerim-utf8_4.22.10-2_i386 + certmonger_0.57-1_i386 + cervisia_4:4.8.4+dfsg-1_i386 + ceve_1.4-2+b2_i386 + cfengine2_2.2.10-5_i386 + cfengine2-dbg_2.2.10-5_i386 + cfengine3_3.2.4-2+nmu1_i386 + cfengine3-dbg_3.2.4-2+nmu1_i386 + cfingerd_1.4.3-3.1_i386 + cflow_1:1.4+dfsg1-2_i386 + cfourcc_0.1.2-8_i386 + cgdb_0.6.6-2_i386 + cgi-mapserver_6.0.1-3.2+deb7u2_i386 + cgiemail_1.6-37_i386 + cgilib_0.6-1_i386 + cgns-convert_3.1.3.4-1+b1_i386 + cgoban_1.9.14-17_i386 + cgroup-bin_0.38-1_i386 + charmap.app_0.2-11+b1_i386 + charybdis_3.3.0-7.1_i386 + chase_0.5.2-4_i386 + chasen_2.4.5-6_i386 + chasen-dictutils_2.4.5-6_i386 + check_0.9.8-2_i386 + check-mk-agent_1.1.12p7-1_i386 + check-mk-agent-logwatch_1.1.12p7-1_i386 + check-mk-config-icinga_1.1.12p7-1_i386 + check-mk-config-nagios3_1.1.12p7-1_i386 + check-mk-livestatus_1.1.12p7-1_i386 + check-mk-multisite_1.1.12p7-1_i386 + check-mk-server_1.1.12p7-1_i386 + checkinstall_1.6.2-4_i386 + checkpolicy_2.1.8-2_i386 + checkpw_1.02-1_i386 + cheese_3.4.2-2_i386 + chemeq_2.9-1_i386 + chemtool_1.6.13-1_i386 + chiark-really_4.2.0_i386 + chiark-rwbuffer_4.2.0_i386 + chiark-utils-bin_4.2.0_i386 + chicken-bin_4.7.0-1_i386 + chimera2_2.0a19-7_i386 + chipmunk-dev_5.3.4-1_i386 + chipw_2.0.6-1.1_i386 + chirp_0.1.12-1_i386 + chkrootkit_0.49-4.1_i386 + chktex_1.6.4-4_i386 + chntpw_0.99.6-2_i386 + choosewm_0.1.6-3_i386 + choqok_1.3-1_i386 + chordii_4.3+repack-2_i386 + chromium_31.0.1650.63-1~deb7u1_i386 + chromium-bsu_0.9.15-1_i386 + chromium-dbg_31.0.1650.63-1~deb7u1_i386 + chrony_1.24-3.1+deb7u2_i386 + chrootuid_1.3-6_i386 + chrpath_0.13-2_i386 + chuck_1.2.0.8.dfsg-1.4_i386 + cifs-utils_2:5.5-1_i386 + circuslinux_1.0.3-28_i386 + citadel-client_8.14-2_i386 + citadel-dbg_8.14-2_i386 + citadel-mta_8.14-2_i386 + citadel-server_8.14-2_i386 + citadel-webcit_8.14-dfsg-1_i386 + ckermit_302-3_i386 + cksfv_1.3.14-2_i386 + cl-clx-sbcl_0.7.4-5_i386 + cl-sql-mysql_6.2.0-1+b1_i386 + cl-sql-uffi_6.2.0-1+b1_i386 + cl-uffi-tests_2.1.2-1_i386 + clam-chordata_1.0.0-2_i386 + clam-networkeditor_1.4.0-3.1_i386 + clamav_0.97.8+dfsg-1_i386 + clamav-daemon_0.97.8+dfsg-1_i386 + clamav-dbg_0.97.8+dfsg-1_i386 + clamav-freshclam_0.97.8+dfsg-1_i386 + clamav-milter_0.97.8+dfsg-1_i386 + clamsmtp_1.10-10_i386 + clamz_0.5-1_i386 + clang_1:3.0-6.2_i386 + clasp_2.0.6-2_i386 + claws-mail_3.8.1-2_i386 + claws-mail-acpi-notifier_3.8.1-2_i386 + claws-mail-address-keeper_3.8.1-2_i386 + claws-mail-archiver-plugin_3.8.1-2_i386 + claws-mail-attach-remover_3.8.1-2_i386 + claws-mail-attach-warner_3.8.1-2_i386 + claws-mail-bogofilter_3.8.1-2_i386 + claws-mail-bsfilter-plugin_3.8.1-2_i386 + claws-mail-clamd-plugin_3.8.1-2_i386 + claws-mail-dbg_3.8.1-2_i386 + claws-mail-extra-plugins-dbg_3.8.1-2_i386 + claws-mail-fancy-plugin_3.8.1-2_i386 + claws-mail-feeds-reader_3.8.1-2_i386 + claws-mail-fetchinfo-plugin_3.8.1-2_i386 + claws-mail-gdata-plugin_3.8.1-2_i386 + claws-mail-html2-viewer_3.8.1-2_i386 + claws-mail-mailmbox-plugin_3.8.1-2_i386 + claws-mail-multi-notifier_3.8.1-2_i386 + claws-mail-newmail-plugin_3.8.1-2_i386 + claws-mail-perl-filter_3.8.1-2_i386 + claws-mail-pgpinline_3.8.1-2_i386 + claws-mail-pgpmime_3.8.1-2_i386 + claws-mail-python-plugin_3.8.1-2_i386 + claws-mail-smime-plugin_3.8.1-2_i386 + claws-mail-spam-report_3.8.1-2_i386 + claws-mail-spamassassin_3.8.1-2_i386 + claws-mail-tnef-parser_3.8.1-2_i386 + claws-mail-trayicon_3.8.1-2_i386 + claws-mail-vcalendar-plugin_3.8.1-2_i386 + cldump_0.11~dfsg-1_i386 + clearsilver-dev_0.10.5-1.3_i386 + clementine_1.0.1+dfsg-2+b1_i386 + clex_3.15-1_i386 + clif_0.93-9_i386 + clinica_0.2.1~dfsg-1_i386 + clinica-dev_0.2.1~dfsg-1_i386 + clinica-plugins_0.2.1~dfsg-1_i386 + cliofetion_2.2.0-1_i386 + clipit_1.4.1-1_i386 + clips_6.24-3_i386 + cliquer_1.21-1_i386 + clisp_1:2.49-8.1_i386 + clisp-dev_1:2.49-8.1_i386 + clisp-module-berkeley-db_1:2.49-8.1_i386 + clisp-module-bindings-glibc_1:2.49-8.1_i386 + clisp-module-clx_1:2.49-8.1_i386 + clisp-module-dbus_1:2.49-8.1_i386 + clisp-module-gdbm_1:2.49-8.1_i386 + clisp-module-pcre_1:2.49-8.1_i386 + clisp-module-postgresql_1:2.49-8.1_i386 + clisp-module-rawsock_1:2.49-8.1_i386 + clisp-module-wildcard_1:2.49-8.1_i386 + clisp-module-zlib_1:2.49-8.1_i386 + clonalframe_1.2-3_i386 + cloog-isl_0.17.0-3_i386 + cloog-ppl_0.15.11-4_i386 + cloop-utils_2.6.39.2-1_i386 + clustalo_1.1.0-1_i386 + clustalw_2.1+lgpl-2_i386 + clustalx_2.1+lgpl-2_i386 + cluster-agents_1:1.0.3-4_i386 + cluster-glue_1.0.9+hg2665-1_i386 + cluster-glue-dev_1.0.9+hg2665-1_i386 + clutter-1.0-tests_1.10.8-2_i386 + clvm_2.02.95-8_i386 + clzip_1.3-2_i386 + clzip-dbg_1.3-2_i386 + cmake_2.8.9-1_i386 + cmake-curses-gui_2.8.9-1_i386 + cmake-dbg_2.8.9-1_i386 + cmake-qt-gui_2.8.9-1_i386 + cman_3.0.12-3.2+deb7u2_i386 + cmatrix_1.2a-4_i386 + cmigemo_20110227-7_i386 + cmis-client_0.1.0-1+b1_i386 + cmospwd_5.0+dfsg-2_i386 + cmt_1.16-1_i386 + cmtk_2.2.2-2_i386 + cmucl_20c-2_i386 + cmucl-clm_20c-2_i386 + cmus_2.4.3-2_i386 + cmus-plugin-ffmpeg_2.4.3-2_i386 + cnee_3.13-1_i386 + cntlm_0.92.3-1_i386 + coala_1.0.1-5_i386 + cobalt-panel-utils_1.0.2-3_i386 + coccinelle_1.0.0~rc12.deb-5_i386 + coco-cpp_20120102-1_i386 + code-saturne_2.1.7-1_i386 + code-saturne-bin_2.1.7-1_i386 + code-saturne-include_2.1.7-1_i386 + codeblocks_10.05-2.1_i386 + codeblocks-contrib_10.05-2.1_i386 + codeblocks-contrib-dbg_10.05-2.1_i386 + codeblocks-dbg_10.05-2.1_i386 + codeblocks-dev_10.05-2.1_i386 + codegroup_19981025-6_i386 + codfis_0.4.7-2_i386 + coinor-csdp_6.1.1-1_i386 + coinor-csdp-dbg_6.1.1-1_i386 + coinor-libcbc-dev_2.5.0-3_i386 + coinor-libcbc0_2.5.0-3_i386 + coinor-libcbc0-dbg_2.5.0-3_i386 + coinor-libcgl-dev_0.55.0-1.1_i386 + coinor-libcgl0_0.55.0-1.1_i386 + coinor-libcgl0-dbg_0.55.0-1.1_i386 + coinor-libclp-dev_1.12.0-2.1_i386 + coinor-libclp0_1.12.0-2.1_i386 + coinor-libclp0-dbg_1.12.0-2.1_i386 + coinor-libcoinutils-dev_2.6.4-3_i386 + coinor-libcoinutils0_2.6.4-3_i386 + coinor-libcoinutils0-dbg_2.6.4-3_i386 + coinor-libdylp-dev_1.6.0-1.1_i386 + coinor-libdylp0_1.6.0-1.1_i386 + coinor-libdylp0-dbg_1.6.0-1.1_i386 + coinor-libflopc++-dev_1.0.6-3.1_i386 + coinor-libflopc++0_1.0.6-3.1_i386 + coinor-libflopc++0-dbg_1.0.6-3.1_i386 + coinor-libipopt-dev_3.10.2-1.1_i386 + coinor-libipopt1_3.10.2-1.1_i386 + coinor-libipopt1-dbg_3.10.2-1.1_i386 + coinor-libosi-dev_0.103.0-1_i386 + coinor-libosi0_0.103.0-1_i386 + coinor-libosi0-dbg_0.103.0-1_i386 + coinor-libsymphony-dev_5.2.4-1.2_i386 + coinor-libsymphony0_5.2.4-1.2_i386 + coinor-libsymphony0-dbg_5.2.4-1.2_i386 + coinor-libvol-dev_1.1.7-1_i386 + coinor-libvol0_1.1.7-1_i386 + coinor-libvol0-dbg_1.1.7-1_i386 + coinst_1.01-2_i386 + coinst-viewer_1.01-2_i386 + coldfire_0.2.2-2.3_i386 + collatinus_10.0-3_i386 + collectd_5.1.0-3_i386 + collectd-core_5.1.0-3_i386 + collectd-dbg_5.1.0-3_i386 + collectd-utils_5.1.0-3_i386 + colorcode_0.7.2-1_i386 + colord_0.1.21-1_i386 + colorhug-client_0.1.10-1_i386 + colortail_0.3.3-1_i386 + colrconv_0.99.3-4_i386 + comerr-dev_2.1-1.42.5-1.1_i386 + comgt_0.32-2_i386 + comparepdf_1.0.1-1_i386 + compartment_1.1.0-4_i386 + compface_1:1.5.2-5_i386 + composite_0.006.2+dfsg0-2_i386 + composite-dbg_0.006.2+dfsg0-2_i386 + concalc_0.9.2-2_i386 + concordance_0.24-1.1_i386 + condor_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dbg_7.8.2~dfsg.1-1+deb7u1_i386 + condor-dev_7.8.2~dfsg.1-1+deb7u1_i386 + cone_0.89-1_i386 + confclerk_0.5.5-1_i386 + confget_1.03-1_i386 + config-manager_0.4-2.1_i386 + confluence_0.10.6-7_i386 + conkeror-spawn-process-helper_1.0~~pre+git120527-1_i386 + conky-cli_1.9.0-2_i386 + conky-std_1.9.0-2_i386 + connect-proxy_1.101-1_i386 + connectagram_1.0.1-1_i386 + connman_1.0-1.1+wheezy1+b1_i386 + connman-dev_1.0-1.1+wheezy1+b1_i386 + conntrack_1:1.2.1-1_i386 + conntrackd_1:1.2.1-1_i386 + console-braille_1.3_i386 + console-tools_1:0.2.3dbs-70_i386 + console-tools-dev_1:0.2.3dbs-70_i386 + consolekit_0.4.5-3.1_i386 + conspy_1.8-2_i386 + contacts_0.9-2+b2_i386 + contextfree_2.2+dfsg1-2.1_i386 + convert-pgn_0.29.6-2_i386 + convlit_1.8-1_i386 + cook_2.33-1_i386 + cook-rsh_2.33-1_i386 + cookietool_2.5-5_i386 + coolkey_1.1.0-12_i386 + coolmail_1.3-11_i386 + coop-computing-tools_3.5.1-2_i386 + coop-computing-tools-dev_3.5.1-2_i386 + copyfs_1.0.1-4_i386 + coq_8.3.pl4+dfsg-2_i386 + coqide_8.3.pl4+dfsg-2_i386 + coreutils_8.13-3.5_i386 + coriander_2.0.1-1_i386 + corkscrew_2.0-9_i386 + corosync_1.4.2-3_i386 + corosync-dbg_1.4.2-3_i386 + corosync-dev_1.4.2-3_i386 + cortina_0.7.3-1_i386 + couchdb_1.2.0-5_i386 + courier-authdaemon_0.63.0-6+b1_i386 + courier-authlib_0.63.0-6+b1_i386 + courier-authlib-dev_0.63.0-6+b1_i386 + courier-authlib-ldap_0.63.0-6+b1_i386 + courier-authlib-mysql_0.63.0-6+b1_i386 + courier-authlib-pipe_0.63.0-6+b1_i386 + courier-authlib-postgresql_0.63.0-6+b1_i386 + courier-authlib-userdb_0.63.0-6+b1_i386 + courier-base_0.68.2-1_i386 + courier-faxmail_0.68.2-1_i386 + courier-imap_4.10.0-20120615-1_i386 + courier-imap-ssl_4.10.0-20120615-1_i386 + courier-ldap_0.68.2-1_i386 + courier-maildrop_0.68.2-1_i386 + courier-mlm_0.68.2-1_i386 + courier-mta_0.68.2-1_i386 + courier-mta-ssl_0.68.2-1_i386 + courier-pcp_0.68.2-1_i386 + courier-pop_0.68.2-1_i386 + courier-pop-ssl_0.68.2-1_i386 + courier-ssl_0.68.2-1_i386 + courier-webadmin_0.68.2-1_i386 + couriergrey_0.3.2-1_i386 + courierpassd_1.1.2-2_i386 + covered_0.7.10-1_i386 + cowbell_0.2.7.1-7_i386 + cowbuilder_0.70_i386 + cowdancer_0.70_i386 + cp2k_2.2.426-8_i386 + cpio_2.11+dfsg-0.1_i386 + cpipe_3.0.1-1_i386 + cpm_0.26-1_i386 + cpmtools_2.13-1_i386 + cpp_4:4.7.2-1_i386 + cpp-4.4_4.4.7-2_i386 + cpp-4.6_4.6.3-14_i386 + cpp-4.7_4.7.2-5_i386 + cppcheck_1.54-1_i386 + cpphs_1.13.3-2+b1_i386 + cpqarrayd_2.3-1.3_i386 + cproto_4.7j-5_i386 + cpu_1.4.3-11.3_i386 + cpuburn_1.4a-3_i386 + cpufreqd_2.4.2-2_i386 + cpufrequtils_008-1_i386 + cpuid_3.3-9_i386 + cpulimit_1.7-1_i386 + cpushare_0.48-4_i386 + cqrlog_1.4.1-1_i386 + crack_5.0a-9.3_i386 + crack-attack_1.1.14-9.1_i386 + crack-md5_5.0a-9.3_i386 + cracklib-runtime_2.8.19-3_i386 + cramfsprogs_1.1-6_i386 + cramfsswap_1.4.1_i386 + crash_6.0.6-1_i386 + crashmail_0.71-4_i386 + crashme_2.4-9_i386 + crasm_1.5-1_i386 + crawl_2:0.10.3-3_i386 + crawl-tiles_2:0.10.3-3_i386 + crda_1.1.2-1_i386 + createfp_3.2.0-2_i386 + cricket_1.0.5-19_i386 + crimson_0.5.2-1_i386 + criticalmass_1:1.0.0-1.5_i386 + critterding_1.0-beta12.1-1.2_i386 + crm114_20100106-3_i386 + cron_3.0pl1-124_i386 + cronolog_1.6.2+rpk-1_i386 + cronutils_1.2-1_i386 + crossfire-client_1.70.0-1_i386 + crossfire-server_1.70.0-1_i386 + crossroads_2.65-1.1_i386 + crtmpserver_1.0~dfsg-3_i386 + crtmpserver-apps_1.0~dfsg-3_i386 + crtmpserver-dev_1.0~dfsg-3_i386 + crtmpserver-libs_1.0~dfsg-3_i386 + cruft_0.9.16_i386 + cryptcat_20031202-4_i386 + cryptkeeper_0.9.5-5.1_i386 + cryptmount_4.3.1-1_i386 + cryptsetup_2:1.4.3-4_i386 + cryptsetup-bin_2:1.4.3-4_i386 + cscope_15.7a-3.6_i386 + csh_20110502-2_i386 + csladspa_1:5.17.11~dfsg-3_i386 + csmash_0.6.6-6.6_i386 + csound_1:5.17.11~dfsg-3_i386 + csound-gui_1:5.17.11~dfsg-3_i386 + csound-utils_1:5.17.11~dfsg-3_i386 + cssc_1.2.0-2_i386 + cssed_0.4.0-4_i386 + csstidy_1.4-3_i386 + cstream_3.0.0-1_i386 + csv2latex_0.18-2_i386 + csvtool_1.2.2-1+b1_i386 + csync2_1.34-2.2+b1_i386 + ctdb_1.12+git20120201-4_i386 + ctdb-dbg_1.12+git20120201-4_i386 + ctn_3.0.6-13+b2_i386 + ctn-dev_3.0.6-13+b2_i386 + ctorrent_1.3.4.dnh3.3.2-4_i386 + ctpl_0.3.3.dfsg-2_i386 + ctsim_5.2.0-1.1_i386 + ctwm_3.7-3.3_i386 + cu_1.07-20_i386 + cuba-partview_3.0+20111124-2_i386 + cube2font_1.2-2_i386 + cube2font-dbg_1.2-2_i386 + cudf-tools_0.6.2-1_i386 + cue2toc_0.4-5_i386 + cuetools_1.3.1-12_i386 + cultivation_9+dfsg1-1_i386 + cups_1.5.3-5+deb7u1_i386 + cups-bsd_1.5.3-5+deb7u1_i386 + cups-client_1.5.3-5+deb7u1_i386 + cups-dbg_1.5.3-5+deb7u1_i386 + cups-filters_1.0.18-2.1_i386 + cups-pdf_2.6.1-6_i386 + cups-pk-helper_0.2.3-3_i386 + cups-ppdc_1.5.3-5+deb7u1_i386 + cupt_2.5.9_i386 + curl_7.26.0-1+wheezy8_i386 + curlftpfs_0.9.2-5_i386 + curtain_0.1-1_i386 + curves_0.8.19+b2_i386 + cutecom_0.22.0-2_i386 + cutesdr_1.0.5-3_i386 + cutils_1.6-3_i386 + cutter_1.03-2_i386 + cutter-gtk-support_1.1.7-1.2_i386 + cutter-report-module_1.1.7-1.2_i386 + cutter-testing-framework_1.1.7-1.2_i386 + cutter-testing-framework-bin_1.1.7-1.2_i386 + cutycapt_0.0~svn6-3_i386 + cuyo_2.0.0brl1-1_i386 + cvc3_2.4.1-4_i386 + cvm_0.96-1+b1_i386 + cvm-mysql_0.96-1+b1_i386 + cvm-pgsql_0.96-1+b1_i386 + cvs_2:1.12.13+real-9_i386 + cvsd_1.0.24_i386 + cvsgraph_1.7.0-1_i386 + cvsps_2.1-6_i386 + cvsservice_4:4.8.4+dfsg-1_i386 + cvstrac_2.0.1-3_i386 + cw_3.0.2-1_i386 + cwcp_3.0.2-1_i386 + cwdaemon_0.9.5-1_i386 + cwebx_3.04-9_i386 + cwiid-dbg_0.6.00+svn201-3+b1_i386 + cwirc_2.0.0-5_i386 + cxref_1.6d-6_i386 + cycfx2prog_0.47-1_i386 + cyclades-serial-client_0.92_i386 + cyclist_0.1~alpha55-6_i386 + cynthiune.app_0.9.5-14_i386 + cyrus-clients-2.4_2.4.16-4+deb7u1_i386 + cyrus-common-2.4_2.4.16-4+deb7u1_i386 + cyrus-dev-2.4_2.4.16-4+deb7u1_i386 + cyrus-imapd-2.4_2.4.16-4+deb7u1_i386 + cyrus-imspd_1.8-3_i386 + cyrus-murder-2.4_2.4.16-4+deb7u1_i386 + cyrus-nntpd-2.4_2.4.16-4+deb7u1_i386 + cyrus-pop3d-2.4_2.4.16-4+deb7u1_i386 + cyrus-replication-2.4_2.4.16-4+deb7u1_i386 + cyrus-sasl2-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cyrus-sasl2-mit-dbg_2.1.25.dfsg1-6+deb7u1_i386 + cython_0.15.1-2_i386 + cython-dbg_0.15.1-2_i386 + d-itg_2.8.1~rc1-1_i386 + d52_3.4.1-1.1_i386 + daa2iso_0.1.7e-1_i386 + dacs_1.4.27b-2_i386 + dact_0.8.42-4_i386 + dadadodo_1.04-4_i386 + daemon_0.6.4-1_i386 + daemonfs_1.1-1_i386 + daemonlogger_1.2.1-7_i386 + daemontools_1:0.76-3_i386 + dahdi_1:2.5.0.1-2_i386 + daisy-player_7.1.1-1_i386 + daisy-player-dbg_7.1.1-1_i386 + dancer-ircd_1.0.36-8.1_i386 + dancer-xml_0.8.2.1-3_i386 + dangen_0.5-2_i386 + dans-gdal-scripts_0.18-1.1+b2_i386 + dansguardian_2.10.1.1-5_i386 + dante-client_1.1.19.dfsg-3+b3_i386 + dante-server_1.1.19.dfsg-3+b3_i386 + dapl2-utils_2.0.19-1.1_i386 + dar_2.4.5.debian.1-1_i386 + darcs_2.8.1-1+b1_i386 + dares_0.6.5-7_i386 + darkice_1.0-1_i386 + darkplaces_0~20110628+svn11619-3_i386 + darkplaces-dbg_0~20110628+svn11619-3_i386 + darkplaces-server_0~20110628+svn11619-3_i386 + darksnow_0.6.1-3_i386 + darkstat_3.0.715-1_i386 + darktable_1.0.4-1+deb7u2_i386 + darktable-dbg_1.0.4-1+deb7u2_i386 + darnwdl_0.5-2_i386 + darts_0.32-11_i386 + das-watchdog_0.9.0-2_i386 + dash_0.5.7-3_i386 + dasher_4.11-2_i386 + datapm_0.10-1.1_i386 + datefudge_1.17_i386 + dates_0.4.8-3+b1_i386 + dav-text_0.8.5-5_i386 + davfs2_1.4.6-1.1+deb7u1_i386 + dawgdic-tools_0.4.3-1_i386 + db4.7-util_4.7.25-21_i386 + db4.8-util_4.8.30-12_i386 + db5.1-sql-util_5.1.29-5_i386 + db5.1-util_5.1.29-5_i386 + dbacl_1.12-2.1_i386 + dballe_5.18-1_i386 + dbar_0.0.20100524-3_i386 + dbeacon_0.3.9.3-2_i386 + dbench_4.0-2_i386 + dbf2mysql_1.14a-3.1+b4_i386 + dbmix_0.9.8-6.2_i386 + dbskkd-cdb_1:2.00-6_i386 + dbus_1.6.8-1+deb7u1_i386 + dbus-1-dbg_1.6.8-1+deb7u1_i386 + dbus-x11_1.6.8-1+deb7u1_i386 + dbview_1.0.4-1_i386 + dc_1.06.95-2_i386 + dc-qt_0.2.0.alpha-4.1+b3_i386 + dc3dd_7.1.614-1_i386 + dcap_2.47.6-2_i386 + dcap-dbg_2.47.6-2_i386 + dcap-dev_2.47.6-2_i386 + dcap-tunnel-gsi_2.47.6-2_i386 + dcap-tunnel-krb_2.47.6-2_i386 + dcap-tunnel-ssl_2.47.6-2_i386 + dcap-tunnel-telnet_2.47.6-2_i386 + dcfldd_1.3.4.1-2.1_i386 + dchroot_1.6.4-4_i386 + dchroot-dsa_1.6.4-4_i386 + dclock_2.2.2-6_i386 + dcmtk_3.6.0-12_i386 + dcmtk-www_3.6.0-12_i386 + dconf-gsettings-backend_0.12.1-3_i386 + dconf-service_0.12.1-3_i386 + dconf-tools_0.12.1-3_i386 + dcraw_8.99-1+b2_i386 + dctrl-tools_2.22.2_i386 + ddccontrol_0.4.2-10_i386 + ddd_1:3.3.12-4_i386 + ddns3-client_1.8-12_i386 + ddpt_0.92-1_i386 + dds_2.1.2+ddd105-1_i386 + dds2tar_2.5.2-4_i386 + deal_3.1.9-3_i386 + dealer_0.20040530-4_i386 + deb-gview_0.2.9_i386 + debconf-kde-dbg_0.2-2_i386 + debconf-kde-helper_0.2-2_i386 + debdelta_0.50+2_i386 + debfoster_2.7-1.2_i386 + debian-installer_20130613+deb7u1+b2_i386 + debian-xcontrol_0.0.4-1.1+b3_i386 + debianutils_4.3.2_i386 + deborphan_1.7.28.8_i386 + debram_1.0.3-0.2_i386 + debsig-verify_0.8_i386 + debtags_1.10.1_i386 + dee-tools_1.0.10-3_i386 + deets_0.1.3-1_i386 + default-jdk_1:1.6-47_i386 + default-jre_1:1.6-47_i386 + default-jre-headless_1:1.6-47_i386 + defendguin_0.0.12-4_i386 + deja-dup_20.2-2.1_i386 + deja-dup-dbg_20.2-2.1_i386 + delta_2006.08.03-3_i386 + denemo_0.9.2-3_i386 + depqbf_0.1-1_i386 + desklaunch_1.1.8_i386 + deskmenu_1.4.5_i386 + desktop-file-utils_0.20-0.1_i386 + desktopnova_0.8.1-1_i386 + desktopnova-module-gnome_0.8.1-1_i386 + desktopnova-module-xfce_0.8.1-1_i386 + desktopnova-tray_0.8.1-1_i386 + desmume_0.9.8-1_i386 + desproxy_0.1.0~pre3-8_i386 + detox_1.2.0-5_i386 + deutex_4.4.902-13_i386 + devhelp_3.4.1-1_i386 + device-tree-compiler_1.3.0-4_i386 + devilspie_0.22-2_i386 + devilspie2_0.20-1_i386 + devio_1.2-1+b1_i386 + devrplay3_3.3.2-14_i386 + devscripts_2.12.6+deb7u2_i386 + devtodo_0.1.20-6_i386 + dfc_2.5.0-1_i386 + dff_1.2.0+dfsg.1-1_i386 + dfu-programmer_0.5.4-1_i386 + dfu-util_0.5-1_i386 + dh-ada-library_3_i386 + dh-exec_0.4_i386 + dhcp-helper_1.1-1_i386 + dhcp-probe_1.3.0-10_i386 + dhcpcd_1:3.2.3-11_i386 + dhcpcd-dbus_0.6.0-1_i386 + dhcpcd-gtk_0.6.0-1_i386 + dhcpcd5_5.5.6-1_i386 + dhcpdump_1.8-2_i386 + dhcping_1.2-4_i386 + dhex_0.67-1_i386 + dhis-client_5.5-4_i386 + dhis-dns-engine_5.3-1_i386 + dhis-mx-sendmail-engine_5.0-2_i386 + dhis-server_5.3-2.1_i386 + dhis-tools-dns_5.0-6.1_i386 + dhis-tools-genkeys_5.0-6.1_i386 + di_4.30-1_i386 + dia_0.97.2-8_i386 + dia-gnome_0.97.2-8_i386 + dia-libs_0.97.2-8_i386 + dia2code_0.8.3-4_i386 + dialign_2.2.1-5_i386 + dialign-tx_1.0.2-2_i386 + dialog_1.1-20120215-2_i386 + diatheke_1.6.2+dfsg-5_i386 + dibbler-client_0.8.2-1_i386 + dibbler-relay_0.8.2-1_i386 + dibbler-server_0.8.2-1_i386 + dicelab_0.7-1_i386 + dico_2.1-3+b2_i386 + dico-dev_2.1-3+b2_i386 + dico-module-guile_2.1-3+b2_i386 + dico-module-python_2.1-3+b2_i386 + dicod_2.1-3+b2_i386 + dicom3tools_1.0~20120505-1_i386 + dicomnifti_2.30.0-1_i386 + dicomscope_3.6.0-10_i386 + dict_1.12.0+dfsg-5_i386 + dictconv_0.2-7_i386 + dictd_1.12.0+dfsg-5_i386 + dictfmt_1.12.0+dfsg-5_i386 + diction_1.10~rc4-1_i386 + dictionaryreader.app_0+20080616+dfsg-2+b3_i386 + dictzip_1.12.0+dfsg-5_i386 + didiwiki_0.5-11_i386 + dieharder_3.31.1-4_i386 + diet-agent_2.8.0-1+b1_i386 + dietlibc-dev_0.33~cvs20120325-4_i386 + diffpdf_2.1.1-1_i386 + diffstat_1.55-3_i386 + diffutils_1:3.2-6_i386 + digikam_4:2.6.0-1+b2_i386 + digikam-dbg_4:2.6.0-1+b2_i386 + digitemp_3.5.0ds1-2_i386 + digitools_1.03-1.1_i386 + dillo_3.0.2-2_i386 + dimbl_0.11-1_i386 + dime_0.20030921-2_i386 + dino_0.2.8-3_i386 + diod_1.0.13-3_i386 + dirac_1.0.2-6_i386 + dircproxy_1.0.5-5.1_i386 + dirdiff_2.1-5_i386 + directvnc_0.7.7-1_i386 + dirmngr_1.1.0-3_i386 + dis51_0.5-1.1_i386 + discount_2.1.3-3_i386 + discover_2.1.2-5.2_i386 + disktype_9-1_i386 + display-dhammapada_0.23-7_i386 + distcc_3.1-5_i386 + distcc-pump_3.1-5_i386 + distccmon-gnome_3.1-5_i386 + distro-info_0.10_i386 + disulfinder_1.2.11-2+b1_i386 + djmount_0.71-5+b1_i386 + djtools_1.2.7_i386 + djview_3.5.25.3-1_i386 + djview-plugin_4.9-2_i386 + djview3_3.5.25.3-1_i386 + djview4_4.9-2_i386 + djvulibre-bin_3.5.25.3-1_i386 + djvulibre-dbg_3.5.25.3-1_i386 + djvuserve_3.5.25.3-1_i386 + dkopp_6.2-1_i386 + dlm-pcmk_3.0.12-3.2+deb7u2_i386 + dlz-ldap-enum_1.0.2-1_i386 + dmake_1:4.12-2_i386 + dmeventd_2:1.02.74-8_i386 + dmg2img_1.6.2-2+b1_i386 + dmidecode_2.11-9_i386 + dmidecode-dbg_2.11-9_i386 + dmitry_1.3a-1_i386 + dmraid_1.0.0.rc16-4.2_i386 + dmsetup_2:1.02.74-8_i386 + dmtcp_1.2.5-1_i386 + dmtcp-dbg_1.2.5-1_i386 + dmucs_0.6.1-2.1_i386 + dnet-progs_2.60_i386 + dns-flood-detector_1.12-7_i386 + dns2tcp_0.5.2-1_i386 + dnshistory_1.3-2+b1_i386 + dnsmasq-base_2.62-3+deb7u1_i386 + dnsmasq-utils_2.62-3+deb7u1_i386 + dnsproxy_1.16-0.1+b1_i386 + dnstop_20120611-2_i386 + dnstracer_1.9-4_i386 + dnsutils_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + docbook-to-man_1:2.0.0-31_i386 + docbook-xsl-saxon-gcj_1.00.dfsg.1-5_i386 + docbook2x_0.8.8-8_i386 + docker_1.4-5_i386 + docsis_0.9.6+git16-g61ee500+dfsg-2_i386 + dodgindiamond2_0.2.2-1_i386 + dolphin_4:4.8.4-2_i386 + donkey_0.5-19_i386 + doodle_0.7.0-5_i386 + doodle-dbg_0.7.0-5_i386 + doodled_0.7.0-5_i386 + doomsday_1.9.0-beta6.9+dfsg1-2.1_i386 + dopewars_1.5.12-13_i386 + dos2unix_6.0-1_i386 + dosbox_0.74-3_i386 + doscan_0.3.1-3_i386 + doschk_1.1-6_i386 + dose-builddebcheck_3.0.2-3_i386 + dose-distcheck_3.0.2-3_i386 + dose-extra_3.0.2-3_i386 + dosfstools_3.0.13-1_i386 + dosfstools-dbg_3.0.13-1_i386 + dossizola_1.0-8.3_i386 + dot-forward_1:0.71-2_i386 + dotmcp_0.2.2-8_i386 + dotur_1.53-2_i386 + dov4l_0.9-4.1_i386 + dovecot-antispam_2.0+20120225-3_i386 + dovecot-core_1:2.1.7-7_i386 + dovecot-dbg_1:2.1.7-7_i386 + dovecot-dev_1:2.1.7-7_i386 + dovecot-gssapi_1:2.1.7-7_i386 + dovecot-imapd_1:2.1.7-7_i386 + dovecot-ldap_1:2.1.7-7_i386 + dovecot-lmtpd_1:2.1.7-7_i386 + dovecot-managesieved_1:2.1.7-7_i386 + dovecot-mysql_1:2.1.7-7_i386 + dovecot-pgsql_1:2.1.7-7_i386 + dovecot-pop3d_1:2.1.7-7_i386 + dovecot-sieve_1:2.1.7-7_i386 + dovecot-solr_1:2.1.7-7_i386 + dovecot-sqlite_1:2.1.7-7_i386 + downtimed_0.5-2_i386 + doxygen_1.8.1.2-2_i386 + doxygen-gui_1.8.1.2-2_i386 + doxymacs_1.8.0-6_i386 + dozzaqueux_3.21-4_i386 + dpkg_1.16.12_i386 + dpm_1.8.2-1+b2_i386 + dpm-copy-server-mysql_1.8.2-1+b2_i386 + dpm-copy-server-postgres_1.8.2-1+b2_i386 + dpm-name-server-mysql_1.8.2-1+b2_i386 + dpm-name-server-postgres_1.8.2-1+b2_i386 + dpm-rfio-server_1.8.2-1+b2_i386 + dpm-server-mysql_1.8.2-1+b2_i386 + dpm-server-postgres_1.8.2-1+b2_i386 + dpm-srm-server-mysql_1.8.2-1+b2_i386 + dpm-srm-server-postgres_1.8.2-1+b2_i386 + dpt-i2o-raidutils_0.0.6-19_i386 + drac_1.12-7.2_i386 + drac-dev_1.12-7.2_i386 + dradio_3.8-2_i386 + dragonplayer_4:4.8.4-2_i386 + drawmap_2.5-3_i386 + drawterm_20110822-1_i386 + drawtiming_0.7.1-5_i386 + drawxtl_5.5-3_i386 + drbd8-utils_2:8.3.13-2_i386 + drc_3.2.0~dfsg0-1_i386 + dreamchess_0.2.0-3_i386 + drgeo_1.1.0-10_i386 + driftnet_0.1.6+cvs20040426-3_i386 + drivel_3.0.3-1_i386 + drizzle_1:7.1.36-stable-1_i386 + drizzle-client_1:7.1.36-stable-1_i386 + drizzle-dbg_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-file_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-http_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-ldap_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-pam_1:7.1.36-stable-1_i386 + drizzle-plugin-auth-schema_1:7.1.36-stable-1_i386 + drizzle-plugin-debug_1:7.1.36-stable-1_i386 + drizzle-plugin-dev_1:7.1.36-stable-1_i386 + drizzle-plugin-gearman-udf_1:7.1.36-stable-1_i386 + drizzle-plugin-http-functions_1:7.1.36-stable-1_i386 + drizzle-plugin-js_1:7.1.36-stable-1_i386 + drizzle-plugin-json-server_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-gearman_1:7.1.36-stable-1_i386 + drizzle-plugin-logging-query_1:7.1.36-stable-1_i386 + drizzle-plugin-perf-dictionary_1:7.1.36-stable-1_i386 + drizzle-plugin-query-log_1:7.1.36-stable-1_i386 + drizzle-plugin-rabbitmq_1:7.1.36-stable-1_i386 + drizzle-plugin-regex-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-simple-user-policy_1:7.1.36-stable-1_i386 + drizzle-plugin-slave_1:7.1.36-stable-1_i386 + dropbear_2012.55-1.3_i386 + drumstick-tools_0.5.0-3_i386 + dsbltesters_0.9.5-4_i386 + dsc-statistics-collector_201203250530-2_i386 + dsdp_5.8-9.1_i386 + dselect_1.16.12_i386 + dsh_0.25.10-1_i386 + dsniff_2.4b1+debian-22_i386 + dspam_3.10.1+dfsg-11_i386 + dspam-dbg_3.10.1+dfsg-11_i386 + dssi-example-plugins_1.1.1~dfsg0-1_i386 + dssi-host-jack_1.1.1~dfsg0-1_i386 + dssi-utils_1.1.1~dfsg0-1_i386 + dssp_2.0.4-2_i386 + dssp-dbg_2.0.4-2_i386 + dsyslog_0.6.0+b2_i386 + dsyslog-dbg_0.6.0+b2_i386 + dsyslog-module-gnutls_0.6.0+b2_i386 + dsyslog-module-mysql_0.6.0+b2_i386 + dsyslog-module-postgresql_0.6.0+b2_i386 + dtach_0.8-2.1_i386 + dtaus_0.9-1_i386 + duende_1.4.12-5_i386 + duff_0.5.2-1_i386 + duma_2.5.15-1.1_i386 + dump_0.4b44-1_i386 + dumpasn1_20120521-1_i386 + dumpet_2.1-4_i386 + dunst_0.2.0-3_i386 + duplicity_0.6.18-3_i386 + dv4l_1.0-5_i386 + dvb-apps_1.1.1+rev1483-1_i386 + dvb-tools_0.8.8-3_i386 + dvbackup_1:0.0.4-7_i386 + dvbcut_0.5.4+svn178-2_i386 + dvblast_2.2-1_i386 + dvbsnoop_1.4.50-4_i386 + dvbstream_0.6+cvs20090621-1_i386 + dvbstreamer_2.1.0-2.3_i386 + dvbtune_0.5.ds-1_i386 + dvd+rw-tools_7.1-10_i386 + dvd+rw-tools-dbg_7.1-10_i386 + dvdauthor_0.7.0-1.1+b2_i386 + dvdbackup_0.4.2-1_i386 + dvdbackup-dbg_0.4.2-1_i386 + dvdisaster_0.72.4-1_i386 + dvdtape_1.6-1_i386 + dvgrab_3.5-2_i386 + dvhtool_1.0.1-5_i386 + dvi2dvi_2.0alpha-9.2_i386 + dvi2ps_5.1j-1_i386 + dvidvi_1.0-8etch2_i386 + dvifb_1:01.03-14.1+b1_i386 + dvilx_1:01.03-14.1+b1_i386 + dvipng_1.14-1+b1_i386 + dvipost_1.1-4_i386 + dvipsk-ja_5.98+p1.7b-1.1_i386 + dvisvga_1:01.03-14.1+b1_i386 + dvorak7min_1.6.1-13.1_i386 + dvsink_0.8.3.6-1+b2_i386 + dvsource_0.8.3.6-1+b2_i386 + dvswitch_0.8.3.6-1+b2_i386 + dvtm_0.6-1_i386 + dwarfdump_20120410-2_i386 + dwarves_1.10-2_i386 + dwb_20120628hg-1_i386 + dwdiff_2.0.4-1_i386 + dwm_6.0-4_i386 + dwww_1.11.8_i386 + dwz_0.4-1_i386 + dx_1:4.4.4-4+b2_i386 + dxpc_3.9.2-3_i386 + dynalogin-server_0.9.14-2_i386 + dynamite_0.1.1-2_i386 + dynare_4.3.0-2_i386 + dzedit_20061220+dfsg3-2_i386 + dzen2_0.8.5-4_i386 + e00compr_1.0.1-2_i386 + e2fsck-static_1.42.5-1.1_i386 + e2fslibs_1.42.5-1.1_i386 + e2fslibs-dbg_1.42.5-1.1_i386 + e2fslibs-dev_1.42.5-1.1_i386 + e2fsprogs_1.42.5-1.1_i386 + e2fsprogs-dbg_1.42.5-1.1_i386 + e2ps_4.34-4_i386 + e2tools_0.0.16-6.1_i386 + e2undel_0.82-1.1_i386 + e3_1:2.71-1_i386 + eancheck_1.0-1.1_i386 + easychem_0.6-7_i386 + easyh10_1.5-1_i386 + easymp3gain-gtk_0.5.0+svn135-1_i386 + easymp3gain-gtk-dbg_0.5.0+svn135-1_i386 + easytag_2.1.7-2_i386 + eatmydata_26-2_i386 + eb-utils_4.4.3-6_i386 + ebhttpd_1:1.0.dfsg.1-4.3_i386 + eblook_1:1.6.1-12_i386 + ebnetd_1:1.0.dfsg.1-4.3_i386 + ebnetd-common_1:1.0.dfsg.1-4.3_i386 + eboard_1.1.1-5_i386 + ebook-speaker_2.0-3_i386 + ebook-speaker-dbg_2.0-3_i386 + ebook-tools-dbg_0.2.1-2+b1_i386 + ebtables_2.0.10.4-1_i386 + ebumeter_0.1.0~dfsg-2_i386 + ebview_0.3.6.2-1.2_i386 + ecasound_2.9.0-1_i386 + ecatools_2.9.0-1_i386 + echoping_6.0.2-6_i386 + ecj_3.5.1-3_i386 + ecj-gcj_3.5.1-3_i386 + ecl_11.1.1+dfsg1-2_i386 + eclipse-cdt-jni_8.1.0+dfsg-2_i386 + eclipse-pde_3.8.0~rc4-1_i386 + eclipse-platform_3.8.0~rc4-1_i386 + eclipse-rcp_3.8.0~rc4-1_i386 + ecm_1.03-1_i386 + ecryptfs-utils_99-1_i386 + ecryptfs-utils-dbg_99-1_i386 + ed_1.6-2_i386 + ed2k-hash_0.3.3+deb2-1_i386 + edac-utils_0.18-1_i386 + edenmath.app_1.1.1a-7+b5_i386 + edfbrowser_1.48-1_i386 + edisplay_0.8.5-5+deb7u3_i386 + edos-distcheck_1.4.2-13+b1_i386 + education-astronomy_1.713+deb7u1_i386 + education-chemistry_1.713+deb7u1_i386 + education-common_1.713+deb7u1_i386 + education-desktop-gnome_1.713+deb7u1_i386 + education-desktop-kde_1.713+deb7u1_i386 + education-desktop-lxde_1.713+deb7u1_i386 + education-desktop-other_1.713+deb7u1_i386 + education-desktop-sugar_1.713+deb7u1_i386 + education-desktop-xfce_1.713+deb7u1_i386 + education-development_1.713+deb7u1_i386 + education-electronics_1.713+deb7u1_i386 + education-geography_1.713+deb7u1_i386 + education-graphics_1.713+deb7u1_i386 + education-language_1.713+deb7u1_i386 + education-laptop_1.713+deb7u1_i386 + education-logic-games_1.713+deb7u1_i386 + education-main-server_1.713+deb7u1_i386 + education-mathematics_1.713+deb7u1_i386 + education-menus_1.713+deb7u1_i386 + education-misc_1.713+deb7u1_i386 + education-music_1.713+deb7u1_i386 + education-networked_1.713+deb7u1_i386 + education-physics_1.713+deb7u1_i386 + education-services_1.713+deb7u1_i386 + education-standalone_1.713+deb7u1_i386 + education-tasks_1.713+deb7u1_i386 + education-thin-client_1.713+deb7u1_i386 + education-thin-client-server_1.713+deb7u1_i386 + education-workstation_1.713+deb7u1_i386 + eegdev-plugins-free_0.2-3_i386 + eep24c_0.1.2-5_i386 + efax_1:0.9a-19_i386 + efax-gtk_3.2.8-1+b1_i386 + efibootmgr_0.5.4-3_i386 + efilinux_1.0-2_i386 + efingerd_1.6.2.7+nmu1_i386 + eflite_0.4.1-6_i386 + efte_1.1-1_i386 + eggdrop_1.6.20-1_i386 + eiciel_0.9.8.1-3_i386 + einstein_2.0.dfsg.2-9_i386 + eiskaltdcpp-daemon_2.2.6-4_i386 + eiskaltdcpp-daemon-dbg_2.2.6-4_i386 + eiskaltdcpp-gtk_2.2.6-4_i386 + eiskaltdcpp-gtk-dbg_2.2.6-4_i386 + eiskaltdcpp-qt_2.2.6-4_i386 + eiskaltdcpp-qt-dbg_2.2.6-4_i386 + ejabberd_2.1.10-4+deb7u1_i386 + eject_2.1.5+deb1+cvs20081104-13_i386 + ekeyd_1.1.5-4_i386 + ekeyd-egd-linux_1.1.5-4_i386 + ekg_1:1.9~pre+r2854-1_i386 + ekg-gtk_1:1.9~pre+r2854-1_i386 + ekg2_1:0.3.1-3_i386 + ekg2-core_1:0.3.1-3_i386 + ekg2-dbg_1:0.3.1-3_i386 + ekg2-gnupg_1:0.3.1-3_i386 + ekg2-jabber_1:0.3.1-3_i386 + ekg2-remote_1:0.3.1-3_i386 + ekg2-scripting-perl_1:0.3.1-3_i386 + ekg2-scripting-python_1:0.3.1-3_i386 + ekg2-ui-gtk_1:0.3.1-3_i386 + ekg2-ui-ncurses_1:0.3.1-3_i386 + ekg2-xosd_1:0.3.1-3_i386 + ekiga_3.2.7-6_i386 + ekiga-dbg_3.2.7-6_i386 + elastix_4.5-2_i386 + electric-fence_2.2.4_i386 + electricsheep_2.7~b12+svn20091224-1.1_i386 + eleeye_0.29.6-2_i386 + elektra-bin_0.7.1-1_i386 + elfrc_0.7-1_i386 + elfutils_0.152-1+wheezy1_i386 + elilo_3.14-2_i386 + elinks_0.12~pre5-9_i386 + elinks-lite_0.12~pre5-9_i386 + elk_3.99.8-2_i386 + elmer_6.1.0.svn.5396.dfsg2-2_i386 + elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386 + elvis_2.2.0-11.1_i386 + elvis-console_2.2.0-11.1_i386 + elvis-tiny_1.4-23_i386 + elvis-tools_2.2.0-11.1_i386 + emacs-mozc_1.5.1090.102-4+deb7u1_i386 + emacs-mozc-bin_1.5.1090.102-4+deb7u1_i386 + emacs23_23.4+1-4_i386 + emacs23-bin-common_23.4+1-4_i386 + emacs23-lucid_23.4+1-4_i386 + emacs23-nox_23.4+1-4_i386 + embassy-domainatrix_0.1.0+20110714-1_i386 + embassy-domalign_0.1.0+20110714-1_i386 + embassy-domsearch_1:0.1.0+20110714-1_i386 + ember_0.6.2+dfsg-2_i386 + emboss_6.4.0-2_i386 + emboss-lib_6.4.0-2_i386 + emerillon_0.1.90-1_i386 + emerillon-dev_0.1.90-1_i386 + emms_3.0+20110425+1.git298e022-4_i386 + empathy_3.4.2.3-2+deb7u1_i386 + empathy-dbg_3.4.2.3-2+deb7u1_i386 + empire_1.7-3_i386 + empire-hub_1.0.2.1_i386 + empire-lafe_1.1-1_i386 + empty-expect_0.6.18b-3_i386 + emu8051_1.1.0-1_i386 + enblend_4.0+dfsg-4+b3_i386 + enca_1.13-4_i386 + encfs_1.7.4-2.4+b1_i386 + enchant_1.6.0-7_i386 + enemylines3_1.2-7_i386 + enemylines7_0.6-3_i386 + enfuse_4.0+dfsg-4+b3_i386 + engauge-digitizer_5.0-3_i386 + enigma_1.10~~pre-alpha+r2236-1_i386 + enigmail_2:1.4.1-2_i386 + enna_0.4.1~r3557-2.1_i386 + enna-dbg_0.4.1~r3557-2.1_i386 + enscribe_0.1.0-1.1_i386 + enscript_1.6.5.90-2_i386 + ent_1.1debian-2_i386 + enum_1.1-1_i386 + environment-modules_3.2.9c-3_i386 + envstore_2.0.4-1_i386 + eog_3.4.2-1+build1_i386 + eog-dbg_3.4.2-1+build1_i386 + eog-plugins_3.4.1-1_i386 + eot-utils_1.0-1_i386 + epdfview_0.1.8-3_i386 + eperl_2.2.14-18_i386 + epic4_1:2.10.1-1+b3_i386 + epic5_1.1.2-2+b3_i386 + epiphany_0.7.0-6_i386 + epiphany-browser_3.4.2-2.1_i386 + epiphany-browser-dbg_3.4.2-2.1_i386 + epiphany-browser-dev_3.4.2-2.1_i386 + epiphany-extensions_3.4.0-2_i386 + epix_1.2.10-1_i386 + epm_4.2-6_i386 + epsilon-bin_0.9.1-2_i386 + epstool_3.08+repack-3_i386 + epub-utils_0.2.1-2+b1_i386 + epwutil_1.1-8.1_i386 + eq10q_1.2-2_i386 + eql_1.2.ds1-3_i386 + eqonomize_0.6-7_i386 + erlang-appmon_1:15.b.1-dfsg-4_i386 + erlang-asn1_1:15.b.1-dfsg-4_i386 + erlang-base_1:15.b.1-dfsg-4_i386 + erlang-base-hipe_1:15.b.1-dfsg-4_i386 + erlang-common-test_1:15.b.1-dfsg-4_i386 + erlang-corba_1:15.b.1-dfsg-4_i386 + erlang-crypto_1:15.b.1-dfsg-4_i386 + erlang-debugger_1:15.b.1-dfsg-4_i386 + erlang-dev_1:15.b.1-dfsg-4_i386 + erlang-dialyzer_1:15.b.1-dfsg-4_i386 + erlang-diameter_1:15.b.1-dfsg-4_i386 + erlang-edoc_1:15.b.1-dfsg-4_i386 + erlang-eldap_1:15.b.1-dfsg-4_i386 + erlang-erl-docgen_1:15.b.1-dfsg-4_i386 + erlang-esdl_1.2-2_i386 + erlang-et_1:15.b.1-dfsg-4_i386 + erlang-eunit_1:15.b.1-dfsg-4_i386 + erlang-gs_1:15.b.1-dfsg-4_i386 + erlang-guestfs_1:1.18.1-1+deb7u3_i386 + erlang-ic_1:15.b.1-dfsg-4_i386 + erlang-inets_1:15.b.1-dfsg-4_i386 + erlang-inviso_1:15.b.1-dfsg-4_i386 + erlang-megaco_1:15.b.1-dfsg-4_i386 + erlang-mnesia_1:15.b.1-dfsg-4_i386 + erlang-observer_1:15.b.1-dfsg-4_i386 + erlang-odbc_1:15.b.1-dfsg-4_i386 + erlang-os-mon_1:15.b.1-dfsg-4_i386 + erlang-parsetools_1:15.b.1-dfsg-4_i386 + erlang-percept_1:15.b.1-dfsg-4_i386 + erlang-pman_1:15.b.1-dfsg-4_i386 + erlang-public-key_1:15.b.1-dfsg-4_i386 + erlang-reltool_1:15.b.1-dfsg-4_i386 + erlang-runtime-tools_1:15.b.1-dfsg-4_i386 + erlang-snmp_1:15.b.1-dfsg-4_i386 + erlang-ssh_1:15.b.1-dfsg-4_i386 + erlang-ssl_1:15.b.1-dfsg-4_i386 + erlang-syntax-tools_1:15.b.1-dfsg-4_i386 + erlang-test-server_1:15.b.1-dfsg-4_i386 + erlang-toolbar_1:15.b.1-dfsg-4_i386 + erlang-tools_1:15.b.1-dfsg-4_i386 + erlang-tv_1:15.b.1-dfsg-4_i386 + erlang-typer_1:15.b.1-dfsg-4_i386 + erlang-webtool_1:15.b.1-dfsg-4_i386 + erlang-wx_1:15.b.1-dfsg-4_i386 + erlang-xmerl_1:15.b.1-dfsg-4_i386 + erlang-yaws_1.94-1_i386 + eruby_1.0.5-2.1_i386 + escputil_5.2.9-1_i386 + esekeyd_1.2.7-1_i386 + esmtp_1.2-10_i386 + esniper_2.27.0-1_i386 + esorex_3.9.6-1_i386 + espctag_0.3-1_i386 + espeak_1.46.02-2_i386 + espeak-data_1.46.02-2_i386 + espeak-dbg_1.46.02-2_i386 + espeakedit_1.46.02-2_i386 + espeakup_1:0.71-13_i386 + esperanza_0.4.0+git20091017-2+b1_i386 + estic_1.61-20.1_i386 + esys-particle_2.1-4_i386 + eterm_0.9.6-1_i386 + etherape_0.9.12-1_i386 + etherpuppet_0.3-2_i386 + etherwake_1.09-3_i386 + ethstatus_0.4.3_i386 + ethtool_1:3.4.2-1_i386 + etl-dev_0.04.15-1_i386 + etsf-io_1.0.3-4+b1_i386 + etw_3.6+svn140-4_i386 + eukleides_1.5.4-2_i386 + euler_1.61.0-8.1_i386 + eurephia_1.0.1-3+b1_i386 + eventstat_0.01.15-1_i386 + evilvte_0.5.1-1_i386 + evilwm_1.0.0-1_i386 + evince_3.4.0-3.1_i386 + evince-dbg_3.4.0-3.1_i386 + evince-gtk_3.4.0-3.1_i386 + evolution_3.4.4-3_i386 + evolution-data-server_3.4.4-3_i386 + evolution-data-server-dbg_3.4.4-3_i386 + evolution-data-server-dev_3.4.4-3_i386 + evolution-dbg_3.4.4-3_i386 + evolution-dev_3.4.4-3_i386 + evolution-ews_3.4.4-1_i386 + evolution-exchange_3.4.4-1_i386 + evolution-exchange-dbg_3.4.4-1_i386 + evolution-mapi_3.4.4-1_i386 + evolution-mapi-dbg_3.4.4-1_i386 + evolution-plugins_3.4.4-3_i386 + evolution-plugins-experimental_3.4.4-3_i386 + evolution-rss_0.3.91-2_i386 + evolution-webcal_2.32.0-2+b2_i386 + evolver_2.30c.dfsg-3_i386 + evolvotron_0.6.1-1+wheezy1_i386 + evtest_1:1.30-1_i386 + eweouz_0.7+b1_i386 + ewf-tools_20100226-1+b1_i386 + ewipe_1.2.0-8_i386 + exactimage_0.8.5-5+deb7u3_i386 + exactimage-dbg_0.8.5-5+deb7u3_i386 + excellent-bifurcation_0.0.20071015-5_i386 + execstack_0.0.20090925-6_i386 + exfat-fuse_0.9.7-2_i386 + exfat-utils_0.9.7-2_i386 + exif_0.6.20-2_i386 + exifprobe_2.0.1-1_i386 + exiftags_1.01-5_i386 + exiftran_2.07-10_i386 + exim4-base_4.80-7_i386 + exim4-daemon-heavy_4.80-7_i386 + exim4-daemon-heavy-dbg_4.80-7_i386 + exim4-daemon-light_4.80-7_i386 + exim4-daemon-light-dbg_4.80-7_i386 + exim4-dbg_4.80-7_i386 + exim4-dev_4.80-7_i386 + eximon4_4.80-7_i386 + exiv2_0.23-1_i386 + exo-utils_0.6.2-5_i386 + exo-utils-dbg_0.6.2-5_i386 + exonerate_2.2.0-6_i386 + expat_2.1.0-1+deb7u1_i386 + expect_5.45-2_i386 + expect-dev_5.45-2_i386 + explain_0.52.D002-1_i386 + exrtools_0.4-1.2_i386 + ext3grep_0.10.1-3.2_i386 + extace_1.9.9-6_i386 + extlinux_2:4.05+dfsg-6+deb7u1_i386 + extract_1:0.6.3-5_i386 + extrema_4.4.5.dfsg-3_i386 + extremetuxracer_0.4-5_i386 + extremetuxracer-dbg_0.4-5_i386 + extsmail_1.4-1_i386 + extundelete_0.2.0-2.1_i386 + exuberant-ctags_1:5.9~svn20110310-4_i386 + ez-ipupdate_3.0.11b8-13.4_i386 + ezmlm-browse_0.10-3_i386 + ezstream_0.5.6~dfsg-1_i386 + eztrace_0.7-2-4_i386 + f-spot_0.8.2-5_i386 + f2c_20100827-1_i386 + faad_2.7-8_i386 + faad2-dbg_2.7-8_i386 + fact++_1.5.3~dfsg-1_i386 + faifa_0.2~svn82-1_i386 + fair_0.5.3-1_i386 + fairymax_4.8q-2_i386 + fake_1.1.11-1+b1_i386 + fakepop_11_i386 + fakeroot_1.18.4-2_i386 + fakeroot-ng_0.16-1.1_i386 + faketime_0.8-1_i386 + falconpl_0.9.6.9-git20120606-2_i386 + falconpl-curl_0.9.6.9-git20120606-2_i386 + falconpl-dbg_0.9.6.9-git20120606-2_i386 + falconpl-dbi_0.9.6.9-git20120606-2_i386 + falconpl-dbi-firebird_0.9.6.9-git20120606-2_i386 + falconpl-dbi-mysql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-postgresql_0.9.6.9-git20120606-2_i386 + falconpl-dbi-sqlite3_0.9.6.9-git20120606-2_i386 + falconpl-dbus_0.9.6.9-git20120606-2_i386 + falconpl-dev_0.9.6.9-git20120606-2_i386 + falconpl-dmtx_0.9.6.9-git20120606-2_i386 + falconpl-gd2_0.9.6.9-git20120606-2_i386 + falconpl-gtk_0.9.6.9-git20120606-2_i386 + falconpl-hpdf_0.9.6.9-git20120606-2_i386 + falconpl-mongodb_0.9.6.9-git20120606-2_i386 + falconpl-sdl_0.9.6.9-git20120606-2_i386 + falselogin_0.3-4_i386 + fam_2.7.0-17_i386 + fapg_0.41-1_i386 + farpd_0.2-11_i386 + fastdep_0.16-13_i386 + fastdnaml_1.2.2-10_i386 + fastforward_1:0.51-3_i386 + fastjar_2:0.98-3_i386 + fastlink_4.1P-fix95-3_i386 + fasttree_2.1.4-1_i386 + fastx-toolkit_0.0.13.2-1_i386 + fatattr_1.0.1-9_i386 + fatattr-dbg_1.0.1-9_i386 + fatrat_1.1.3-5_i386 + fatrat-czshare_1.1.3-1_i386 + fatrat-opensubtitles_1.1.3-1_i386 + fatresize_1.0.2-6_i386 + fatsort_0.9.15.245-1_i386 + faucc_20090220-1_i386 + fauhdlc_20110812-1_i386 + faumachine_20110812-1.2_i386 + faust_0.9.46-2_i386 + faustworks_0.3.2~repack0-1_i386 + fbautostart_2.718281828-1_i386 + fbb_7.04j-8.2_i386 + fbcat_0.3-1_i386 + fbdesk_1.4.1-10_i386 + fbi_2.07-10_i386 + fbpager_0.1.5~git20090221.1.8e0927e6-1_i386 + fbpanel_6.1-6_i386 + fbreader_0.12.10dfsg-8_i386 + fbset_2.1-25_i386 + fbterm_1.7-2_i386 + fbterm-ucimf_0.2.9-2_i386 + fbtv_3.102-3_i386 + fbx-playlist_20070531+dfsg.1-3_i386 + fbxkb_0.6-1.1_i386 + fcc_2.7-1_i386 + fceu_0.98.12-4.1_i386 + fcgiwrap_1.0.3-3_i386 + fcitx-bin_1:4.2.4.1-7_i386 + fcitx-chewing_0.1.2-2_i386 + fcitx-config-gtk_0.4.4-1_i386 + fcitx-config-gtk2_0.4.4-1_i386 + fcitx-dbg_1:4.2.4.1-7_i386 + fcitx-frontend-fbterm_0.1.4-1_i386 + fcitx-frontend-gtk2_1:4.2.4.1-7_i386 + fcitx-frontend-gtk3_1:4.2.4.1-7_i386 + fcitx-frontend-qt4_1:4.2.4.1-7_i386 + fcitx-googlepinyin_0.1.5-2_i386 + fcitx-hangul_0.1.1-1_i386 + fcitx-libpinyin_0.1.1-2_i386 + fcitx-libs_1:4.2.4.1-7_i386 + fcitx-libs-dev_1:4.2.4.1-7_i386 + fcitx-m17n_0.1.2-2_i386 + fcitx-module-cloudpinyin_0.2.2-1+deb7u1_i386 + fcitx-module-dbus_1:4.2.4.1-7_i386 + fcitx-module-kimpanel_1:4.2.4.1-7_i386 + fcitx-module-lua_1:4.2.4.1-7_i386 + fcitx-module-x11_1:4.2.4.1-7_i386 + fcitx-modules_1:4.2.4.1-7_i386 + fcitx-mozc_1.5.1090.102-4+deb7u1_i386 + fcitx-pinyin_1:4.2.4.1-7_i386 + fcitx-qw_1:4.2.4.1-7_i386 + fcitx-sunpinyin_0.3.7-1_i386 + fcitx-table_1:4.2.4.1-7_i386 + fcitx-table-amharic_0.2.0+git20120621-1_i386 + fcitx-table-arabic_0.2.0+git20120621-1_i386 + fcitx-table-array30_0.3.1-1_i386 + fcitx-table-array30-big_0.3.1-1_i386 + fcitx-table-bingchan_1:4.2.4.1-7_i386 + fcitx-table-boshiamy_0.3.1-1_i386 + fcitx-table-cangjie_1:4.2.4.1-7_i386 + fcitx-table-cangjie-big_0.3.1-1_i386 + fcitx-table-cangjie3_0.3.1-1_i386 + fcitx-table-cangjie5_0.3.1-1_i386 + fcitx-table-cantonese_0.3.1-1_i386 + fcitx-table-cantonhk_0.3.1-1_i386 + fcitx-table-cns11643_0.2.0+git20120621-1_i386 + fcitx-table-compose_0.2.0+git20120621-1_i386 + fcitx-table-dianbaoma_1:4.2.4.1-7_i386 + fcitx-table-easy-big_0.3.1-1_i386 + fcitx-table-emoji_0.2.0+git20120621-1_i386 + fcitx-table-erbi_1:4.2.4.1-7_i386 + fcitx-table-ipa-x-sampa_0.2.0+git20120621-1_i386 + fcitx-table-jyutping_0.3.1-1_i386 + fcitx-table-latex_0.2.0+git20120621-1_i386 + fcitx-table-malayalam-phonetic_0.2.0+git20120621-1_i386 + fcitx-table-quick-classic_0.3.1-1_i386 + fcitx-table-quick3_0.3.1-1_i386 + fcitx-table-quick5_0.3.1-1_i386 + fcitx-table-rustrad_0.2.0+git20120621-1_i386 + fcitx-table-scj6_0.3.1-1_i386 + fcitx-table-stroke5_0.3.1-1_i386 + fcitx-table-tamil-remington_0.2.0+git20120621-1_i386 + fcitx-table-thai_0.2.0+git20120621-1_i386 + fcitx-table-translit_0.2.0+git20120621-1_i386 + fcitx-table-translit-ua_0.2.0+git20120621-1_i386 + fcitx-table-viqr_0.2.0+git20120621-1_i386 + fcitx-table-wanfeng_1:4.2.4.1-7_i386 + fcitx-table-wbpy_1:4.2.4.1-7_i386 + fcitx-table-wu_0.3.1-1_i386 + fcitx-table-wubi_1:4.2.4.1-7_i386 + fcitx-table-wubi-large_0.3.1-1_i386 + fcitx-table-yawerty_0.2.0+git20120621-1_i386 + fcitx-table-zhengma_0.3.1-1_i386 + fcitx-table-ziranma_1:4.2.4.1-7_i386 + fcitx-tools_1:4.2.4.1-7_i386 + fcitx-ui-classic_1:4.2.4.1-7_i386 + fcitx-ui-light_0.1.3-2_i386 + fcitx-unikey_0.1.0-1_i386 + fcode-utils_1.0.2-3_i386 + fcoe-utils_1.0.23-1_i386 + fcrackzip_1.0-4_i386 + fdclone_3.00k-1_i386 + fdflush_1.0.1.3_i386 + fdm_1.6+cvs20111013-2_i386 + fdupes_1.50-PR2-4_i386 + fdutils_5.5-20060227-6_i386 + febootstrap_3.17-1_i386 + feh_2.3-2_i386 + felix-latin_2.0-3.1_i386 + fence-agents_3.1.5-2_i386 + fenix_0.92a.dfsg1-9_i386 + fenix-plugin-mpeg_0.0.20070803-5_i386 + fenix-plugins_0.0.20070803-5_i386 + fenix-plugins-system_0.0.20070803-5_i386 + festival_1:2.1~release-5.1_i386 + festival-dev_1:2.1~release-5.1_i386 + fet_5.18.0-1_i386 + fetchmail_6.3.21-4_i386 + ffado-dbus-server_2.0.99+svn2171-2_i386 + ffado-tools_2.0.99+svn2171-2_i386 + ffdiaporama_1.3-1_i386 + ffe_0.2.8-1_i386 + ffindex_0.9.6.1-1_i386 + ffindex-dbg_0.9.6.1-1_i386 + ffmpeg_6:0.8.9-1_i386 + ffmpeg2theora_0.27-2_i386 + ffmpegthumbnailer_2.0.7-2_i386 + ffmpegthumbnailer-dbg_2.0.7-2_i386 + ffmpegthumbs_4:4.8.4-2_i386 + ffmsindex_2.17-1_i386 + ffproxy_1.6-10_i386 + ffrenzy_1.0.2~svn20070530-4_i386 + fftw-dev_2.1.5-1_i386 + fftw2_2.1.5-1_i386 + fgetty_0.6-5_i386 + fhist_1.18-1_i386 + fig2sxd_0.20-1_i386 + figlet_2.2.5-2_i386 + figtoipe_20080517-1_i386 + fil-plugins_0.3.0-3_i386 + file_5.11-2_i386 + file-kanji_1.1-16_i386 + file-roller_3.4.2-1_i386 + filelight_4:4.8.4-1_i386 + fileschanged_0.6.5-1.2_i386 + filetea_0.1.12+dfsg1-3_i386 + filezilla_3.5.3-2_i386 + fillets-ng_1.0.1-2_i386 + filo_1.1+2011020401.2_i386 + filter_2.6.3-1_i386 + filtergen_0.12.4-5.1_i386 + filters_2.48_i386 + fim_0.3-beta-prerelease-1.3+b1_i386 + finch_2.10.6-3_i386 + findimagedupes_2.18-4+b2_i386 + findutils_4.4.2-4_i386 + finger_0.17-15_i386 + fingerd_0.17-15_i386 + fio_2.0.8-2_i386 + firebird-dev_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-classic-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-server-common_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-super-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + firebird2.5-superclassic_2.5.2.26540.ds4-1~deb7u1_i386 + firedns_0.9.12+dfsg-3_i386 + firestarter_1.0.3-11_i386 + fische_3.2.2-3_i386 + fish_1.23.1+20120106.git8b407a3-1_i386 + fish-dbg_1.23.1+20120106.git8b407a3-1_i386 + fityk_0.9.8-3+b1_i386 + fiu-utils_0.90-3_i386 + fixincludes_1:4.7.2-5_i386 + fizmo-console_0.7.2-2_i386 + fizmo-ncursesw_0.7.2-2_i386 + fl-cow_0.6-4.1_i386 + flac_1.2.1-6_i386 + flactag_2.0.4-1_i386 + flake_0.11-2_i386 + flam3_3.0.1-2.1_i386 + flamerobin_0.9.3~svn+2220-1_i386 + flare_0.15.1-1_i386 + flashrom_0.9.5.2+r1546-1_i386 + flasm_1.62-6_i386 + flatzinc_3.7.3-1_i386 + fldiff_1.1+0-2_i386 + fldigi_3.21.48-1_i386 + fldigi-dbg_3.21.48-1_i386 + flex_2.5.35-10.1_i386 + flex-old_2.5.4a-10_i386 + flexc++_0.98.00-1_i386 + flexloader_0.03-2_i386 + flexml_1.9.2-1_i386 + flip_1.20-1_i386 + flite_1.4-release-6_i386 + flite1-dev_1.4-release-6_i386 + floatbg_1.0-28_i386 + flobopuyo_0.20-5_i386 + flog_1.8-3_i386 + floppyd_4.0.17-1_i386 + florence_0.5.1-1_i386 + flow-tools_1:0.68-12.1+b1_i386 + flow-tools-dev_1:0.68-12.1+b1_i386 + flpsed_0.5.2-1_i386 + fltk1.1-games_1.1.10-14_i386 + fltk1.3-games_1.3.0-8_i386 + fluid_1.3.0-8_i386 + fluidsynth_1.1.5-2_i386 + fluidsynth-dssi_1.0.0-6_i386 + flumotion_0.10.0-3_i386 + flush_0.9.12-3_i386 + fluxbox_1.3.2-4_i386 + flvmeta_1.0.11-1_i386 + flvstreamer_2.1c1-1_i386 + flvtool2_1.0.6-4_i386 + flwm_1.02+cvs20080422-9_i386 + flwm-dbg_1.02+cvs20080422-9_i386 + fmit_0.99.2-1_i386 + fmtools_2.0.5_i386 + fnfx-client_0.3-14_i386 + fnfxd_0.3-14_i386 + fntsample_3.2-1+b1_i386 + focuswriter_1.3.6-1_i386 + folks-tools_0.6.9-1+b1_i386 + fondu_0.0.20060102-4_i386 + font-manager_0.5.7-4_i386 + fontconfig_2.9.0-7.1_i386 + fontforge_0.0.20120101+git-2_i386 + fontforge-dbg_0.0.20120101+git-2_i386 + fontforge-extras_0.3-2_i386 + fontforge-nox_0.0.20120101+git-2_i386 + fontmatrix_0.6.0+svn20110930-1.1_i386 + fonts-maitreya_6.0.5-2_i386 + fonttools-eexecop_2.3-1+b2_i386 + foo-yc20_1.3.0-5_i386 + foobillard_3.0a-5_i386 + fookb-plainx_3.0-3_i386 + fookb-wmaker_3.0-3_i386 + foomatic-db-engine_4.0.8-3_i386 + foomatic-filters_4.0.17-1_i386 + foremost_1.5.7-4_i386 + forked-daapd_0.19gcd-2.1_i386 + formed_3.3f-1.1_i386 + fortune-mod_1:1.99.1-4_i386 + fortune-zh_1.9_i386 + fosfat_0.4.0-3_i386 + fosfat-dbg_0.4.0-3_i386 + fosfat-dev_0.4.0-3_i386 + fossil_1:1.22.1+dfsg-0.1_i386 + fotowall_0.9-8_i386 + fotoxx_11.11.1-1.1_i386 + foundry_0.0.20100226-1+b1_i386 + foxtrotgps_1.1.1-2_i386 + foxtrotgps-dbg_1.1.1-2_i386 + fp-compiler_2.6.0-9_i386 + fp-compiler-2.6.0_2.6.0-9_i386 + fp-ide_2.6.0-9_i386 + fp-ide-2.6.0_2.6.0-9_i386 + fp-units-base_2.6.0-9_i386 + fp-units-base-2.6.0_2.6.0-9_i386 + fp-units-db_2.6.0-9_i386 + fp-units-db-2.6.0_2.6.0-9_i386 + fp-units-fcl_2.6.0-9_i386 + fp-units-fcl-2.6.0_2.6.0-9_i386 + fp-units-fv_2.6.0-9_i386 + fp-units-fv-2.6.0_2.6.0-9_i386 + fp-units-gfx_2.6.0-9_i386 + fp-units-gfx-2.6.0_2.6.0-9_i386 + fp-units-gnome1_2.6.0-9_i386 + fp-units-gnome1-2.6.0_2.6.0-9_i386 + fp-units-gtk_2.6.0-9_i386 + fp-units-gtk-2.6.0_2.6.0-9_i386 + fp-units-gtk2_2.6.0-9_i386 + fp-units-gtk2-2.6.0_2.6.0-9_i386 + fp-units-i386_2.6.0-9_i386 + fp-units-i386-2.6.0_2.6.0-9_i386 + fp-units-math_2.6.0-9_i386 + fp-units-math-2.6.0_2.6.0-9_i386 + fp-units-misc_2.6.0-9_i386 + fp-units-misc-2.6.0_2.6.0-9_i386 + fp-units-multimedia_2.6.0-9_i386 + fp-units-multimedia-2.6.0_2.6.0-9_i386 + fp-units-net_2.6.0-9_i386 + fp-units-net-2.6.0_2.6.0-9_i386 + fp-units-rtl_2.6.0-9_i386 + fp-units-rtl-2.6.0_2.6.0-9_i386 + fp-utils_2.6.0-9_i386 + fp-utils-2.6.0_2.6.0-9_i386 + fped_0.0+r5986-1_i386 + fping_3.2-1_i386 + fpm2_0.79-3_i386 + fprint-demo_20080303git-5_i386 + fprintd_0.4.1-5-g73edad0-3_i386 + fprobe_1.1-7.3_i386 + fprobe-ulog_1.1-7.3_i386 + fqterm_0.9.6.10-1.1_i386 + fracplanet_0.4.0-3_i386 + frama-c_20111001+nitrogen+dfsg-4_i386 + frama-c-base_20111001+nitrogen+dfsg-4_i386 + francine_0.99.8orig-6_i386 + fraqtive_0.4.5-6_i386 + fraqtive-dbg_0.4.5-6_i386 + freeaccount_0.7.6-1_i386 + freebirth_0.3.2-8_i386 + freebsd-buildutils_9.0-11_i386 + freecdb_0.75_i386 + freecell-solver-bin_3.12.0-1_i386 + freeciv-client-extras_2.3.2-1_i386 + freeciv-client-gtk_2.3.2-1_i386 + freeciv-client-sdl_2.3.2-1_i386 + freeciv-client-xaw3d_2.3.2-1_i386 + freeciv-server_2.3.2-1_i386 + freecode-submit_2.4-1_i386 + freecraft_1:1.20-1.1_i386 + freecraft-dbg_1:1.20-1.1_i386 + freediams_0.7.6-1_i386 + freedink-dfarc_3.10-1.1_i386 + freedink-dfarc-dbg_3.10-1.1_i386 + freedink-engine_1.08.20120427-2.1_i386 + freedink-engine-dbg_1.08.20120427-2.1_i386 + freedroid_1.0.2+cvs040112-4_i386 + freedroidrpg_0.15.1-1_i386 + freefem_3.5.8-5_i386 + freefem++_3.19.1-1_i386 + freefem3d_1.0pre10-3.1_i386 + freegish_1.53+git20101011+dfsg-2_i386 + freegish-dbg_1.53+git20101011+dfsg-2_i386 + freeglut3_2.6.0-4_i386 + freeglut3-dbg_2.6.0-4_i386 + freeglut3-dev_2.6.0-4_i386 + freehdl_0.0.7-1.1_i386 + freeipmi-bmc-watchdog_1.1.5-3_i386 + freeipmi-ipmidetect_1.1.5-3_i386 + freeipmi-tools_1.1.5-3_i386 + freemat_4.0-5_i386 + freemedforms-emr_0.7.6-1_i386 + freemedforms-libs_0.7.6-1_i386 + freenect_1:0.1.2+dfsg-6_i386 + freepops_0.2.9-7_i386 + freepops-updater-fltk_0.2.9-7_i386 + freepops-updater-gnome_0.2.9-7_i386 + freeradius_2.1.12+dfsg-1.2_i386 + freeradius-dbg_2.1.12+dfsg-1.2_i386 + freeradius-iodbc_2.1.12+dfsg-1.2_i386 + freeradius-krb5_2.1.12+dfsg-1.2_i386 + freeradius-ldap_2.1.12+dfsg-1.2_i386 + freeradius-mysql_2.1.12+dfsg-1.2_i386 + freeradius-postgresql_2.1.12+dfsg-1.2_i386 + freeradius-utils_2.1.12+dfsg-1.2_i386 + freerdp-dbg_1.0.1-1.1+deb7u2_i386 + freerdp-x11_1.0.1-1.1+deb7u2_i386 + freesci_0.6.4-7_i386 + freespacenotifier_4:4.8.4-6_i386 + freesweep_0.90-2_i386 + freetalk_3.2-11_i386 + freetds-bin_0.91-2+deb7u1_i386 + freetds-dev_0.91-2+deb7u1_i386 + freetennis_0.4.8-9_i386 + freetuxtv_0.6.5~dfsg1-1_i386 + freetype2-demos_2.4.9-1.1_i386 + freewheeling_0.6-1.1+b1_i386 + freewnn-cserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-jserver_1.1.1~a021+cvs20100325-6_i386 + freewnn-kserver_1.1.1~a021+cvs20100325-6_i386 + frei0r-plugins_1.1.22git20091109-1.2_i386 + frei0r-plugins-dev_1.1.22git20091109-1.2_i386 + freqtweak_0.7.2-4+b1_i386 + fritzing_0.6.3b+dfsg-3.1_i386 + frog_0.12.15-3_i386 + frogr_0.7-2_i386 + frotz_2.43-4_i386 + frown_0.6.1-13_i386 + frozen-bubble_2.212-3_i386 + fruit_2.1.dfsg-6_i386 + fsarchiver_0.6.15-1_i386 + fsgateway_0.1.1-3_i386 + fsmark_3.3-1_i386 + fso-datad_0.11.0-1_i386 + fso-datad-dbg_0.11.0-1_i386 + fso-deviced_0.11.4-1+b1_i386 + fso-deviced-dbg_0.11.4-1+b1_i386 + fso-deviced-player-canberra_0.11.4-1+b1_i386 + fso-deviced-player-gstreamer_0.11.4-1+b1_i386 + fso-gpsd_0.8-3.1_i386 + fso-gsm0710muxd_0.9.3.1-3_i386 + fso-gsmd_0.11.3-2_i386 + fso-gsmd-dbg_0.11.3-2_i386 + fso-gsmd-ezx_0.11.3-2_i386 + fso-gsmd-gta04_0.11.3-2_i386 + fso-gsmd-htc_0.11.3-2_i386 + fso-gsmd-openmoko_0.11.3-2_i386 + fso-usaged_0.11.0-1_i386 + fso-usaged-dbg_0.11.0-1_i386 + fspanel_0.7-13_i386 + fspy_0.1.1-1_i386 + fstransform_0.9.3-1_i386 + fstrcmp_0.4.D001-1+deb7u1_i386 + fsvs_1.2.3-0+nmu1_i386 + fswebcam_20110717-1_i386 + ftdi-eeprom_0.3-2_i386 + fte_0.50.2b6-1_i386 + fte-console_0.50.2b6-1_i386 + fte-terminal_0.50.2b6-1_i386 + fte-xwindow_0.50.2b6-1_i386 + fteqcc_3343+svn3400-3_i386 + ftjam_2.5.2-1.1_i386 + ftnchek_3.3.1-4_i386 + ftp_0.17-27_i386 + ftp-proxy_1.9.2.4-8_i386 + ftp-ssl_0.17.23+0.2-1+b1_i386 + ftp.app_0.3-1_i386 + ftpcopy_0.6.7-3_i386 + ftpd_0.17-34_i386 + ftpd-ssl_0.17.33+0.3-1_i386 + ftpgrab_0.1.5-3_i386 + ftplib-dev_3.1-1-9_i386 + ftplib3_3.1-1-9_i386 + ftpmirror_1.96+dfsg-13_i386 + fullquottel_0.1.2-2_i386 + funnelweb_3.2-4.2_i386 + funtools_1.4.4-3_i386 + fuse_2.9.0-2+deb7u1_i386 + fuse-convmvfs_0.2.6-2_i386 + fuse-dbg_2.9.0-2+deb7u1_i386 + fuse-emulator-gtk_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-sdl_1.0.0.1a+dfsg1-4_i386 + fuse-emulator-utils_1.0.0-4_i386 + fuse-posixovl_1.2.20120215+gitf5bfe35-1_i386 + fusedav_0.2-3.1_i386 + fuseext2_0.4-1_i386 + fusefat_0.1a-1_i386 + fuseiso_20070708-3_i386 + fuseiso9660_0.3-1_i386 + fusesmb_0.8.7-1.2_i386 + fusioninventory-agent_2.2.3-8_i386 + fuzz_0.6-14_i386 + fvwm_1:2.5.30.ds-1.1_i386 + fvwm1_1.24r-55_i386 + fwbuilder_5.1.0-3_i386 + fwbuilder-dbg_5.1.0-3_i386 + fweb_1.62-11.1_i386 + fwknop-client_2.0.0rc2-2+deb7u2_i386 + fwknop-server_2.0.0rc2-2+deb7u2_i386 + fwlogwatch_1.2-2_i386 + fxcyberjack_3.99.5final.sp03-1_i386 + fxload_0.0.20081013-1_i386 + fxt-tools_0.2.6-2_i386 + fyre_1.0.1-4_i386 + g++_4:4.7.2-1_i386 + g++-4.4_4.4.7-2_i386 + g++-4.4-multilib_4.4.7-2_i386 + g++-4.6_4.6.3-14_i386 + g++-4.6-multilib_4.6.3-14_i386 + g++-4.7_4.7.2-5_i386 + g++-4.7-multilib_4.7.2-5_i386 + g++-mingw-w64-i686_4.6.3-14+8_i386 + g++-mingw-w64-x86-64_4.6.3-14+8_i386 + g++-multilib_4:4.7.2-1_i386 + g15composer_3.2-2_i386 + g15daemon_1.9.5.3-8.2_i386 + g15macro_1.0.3-3_i386 + g15mpd_1.2svn.0.svn319-3_i386 + g15stats_1.9.2-2_i386 + g2ipmsg_0.9.6+dfsg-1.1_i386 + g3data_1:1.5.3-2_i386 + g3dviewer_0.2.99.5~svn130-1_i386 + g3dviewer-dbg_0.2.99.5~svn130-1_i386 + gabedit_2.4.2-2_i386 + gadmin-bind_0.2.5-2_i386 + gadmin-bind-dbg_0.2.5-2_i386 + gadmin-openvpn-client_0.1.2-4_i386 + gadmin-openvpn-client-dbg_0.1.2-4_i386 + gadmin-openvpn-server_0.1.5-3.1_i386 + gadmin-openvpn-server-dbg_0.1.5-3.1_i386 + gadmin-proftpd_1:0.4.2-1_i386 + gadmin-proftpd-dbg_1:0.4.2-1_i386 + gadmin-rsync_0.1.7-1_i386 + gadmin-rsync-dbg_0.1.7-1_i386 + gadmin-samba_0.2.9-3_i386 + gadmin-samba-dbg_0.2.9-3_i386 + gaffitter_0.6.0-1_i386 + gaiksaurus_1.2.1+dev-0.12-6.1_i386 + galax_1.1-10+b3_i386 + galax-extra_1.1-10+b3_i386 + galaxd_1.1-10+b3_i386 + galculator_1.3.4-1_i386 + galleta_1.0+20040505-5+b1_i386 + gamazons_0.83-4_i386 + gambas3-dev_3.1.1-2+b1_i386 + gambas3-gb-cairo_3.1.1-2+b1_i386 + gambas3-gb-compress_3.1.1-2+b1_i386 + gambas3-gb-compress-bzlib2_3.1.1-2+b1_i386 + gambas3-gb-compress-zlib_3.1.1-2+b1_i386 + gambas3-gb-crypt_3.1.1-2+b1_i386 + gambas3-gb-db_3.1.1-2+b1_i386 + gambas3-gb-db-mysql_3.1.1-2+b1_i386 + gambas3-gb-db-odbc_3.1.1-2+b1_i386 + gambas3-gb-db-postgresql_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite2_3.1.1-2+b1_i386 + gambas3-gb-db-sqlite3_3.1.1-2+b1_i386 + gambas3-gb-dbus_3.1.1-2+b1_i386 + gambas3-gb-desktop_3.1.1-2+b1_i386 + gambas3-gb-gtk_3.1.1-2+b1_i386 + gambas3-gb-gui_3.1.1-2+b1_i386 + gambas3-gb-image_3.1.1-2+b1_i386 + gambas3-gb-image-effect_3.1.1-2+b1_i386 + gambas3-gb-image-imlib_3.1.1-2+b1_i386 + gambas3-gb-image-io_3.1.1-2+b1_i386 + gambas3-gb-mysql_3.1.1-2+b1_i386 + gambas3-gb-net_3.1.1-2+b1_i386 + gambas3-gb-net-curl_3.1.1-2+b1_i386 + gambas3-gb-net-smtp_3.1.1-2+b1_i386 + gambas3-gb-opengl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glsl_3.1.1-2+b1_i386 + gambas3-gb-opengl-glu_3.1.1-2+b1_i386 + gambas3-gb-option_3.1.1-2+b1_i386 + gambas3-gb-pcre_3.1.1-2+b1_i386 + gambas3-gb-pdf_3.1.1-2+b1_i386 + gambas3-gb-qt4_3.1.1-2+b1_i386 + gambas3-gb-qt4-ext_3.1.1-2+b1_i386 + gambas3-gb-qt4-opengl_3.1.1-2+b1_i386 + gambas3-gb-qt4-webkit_3.1.1-2+b1_i386 + gambas3-gb-sdl_3.1.1-2+b1_i386 + gambas3-gb-sdl-sound_3.1.1-2+b1_i386 + gambas3-gb-signal_3.1.1-2+b1_i386 + gambas3-gb-v4l_3.1.1-2+b1_i386 + gambas3-gb-vb_3.1.1-2+b1_i386 + gambas3-gb-xml_3.1.1-2+b1_i386 + gambas3-gb-xml-rpc_3.1.1-2+b1_i386 + gambas3-gb-xml-xslt_3.1.1-2+b1_i386 + gambas3-runtime_3.1.1-2+b1_i386 + gambas3-script_3.1.1-2+b1_i386 + gambc_4.2.8-1.1_i386 + gambit_0.2010.09.01-1.1_i386 + gamgi_0.15.8-1_i386 + gamin_0.1.10-4.1_i386 + gamine_1.1-2_i386 + gammu_1.31.90-1+b1_i386 + gammu-smsd_1.31.90-1+b1_i386 + gamt_1.3-1_i386 + ganeti-htools_2.5.2-1_i386 + ganglia-modules-linux_1.3.4-6_i386 + ganglia-monitor_3.3.8-1+nmu1_i386 + gap-core_4r4p12-2_i386 + gap-dev_4r4p12-2_i386 + gap-guava_3.6-2_i386 + garden-of-coloured-lights_1.0.8-1+b1_i386 + gargoyle-free_2011.1-2_i386 + garlic_1.6-1.1_i386 + garmin-ant-downloader_0:20110626-1_i386 + garmin-forerunner-tools_0.10-3_i386 + gatling_0.12cvs20120114-4_i386 + gatos_0.0.5-19_i386 + gauche_0.9.1-5.1_i386 + gauche-c-wrapper_0.6.1-4.1_i386 + gauche-dev_0.9.1-5.1_i386 + gauche-gdbm_0.9.1-5.1_i386 + gauche-gl_0.4.4-5+b1_i386 + gauche-zlib_0.9.1-5.1_i386 + gav_0.9.0-3_i386 + gawk_1:4.0.1+dfsg-2.1_i386 + gbase_0.5-2.2_i386 + gbatnav_1.0.4cvs20051004-5_i386 + gbemol_0.3.2-2_i386 + gbgoffice_1.4-8_i386 + gbonds_2.0.3-2.1_i386 + gbrowse-calign_2.48~dfsg-1_i386 + gbsplay_0.0.91-1_i386 + gcal_3.6.1-2_i386 + gcalctool_6.4.2.1-3_i386 + gcb_1:1.07-3_i386 + gcc_4:4.7.2-1_i386 + gcc-4.4_4.4.7-2_i386 + gcc-4.4-base_4.4.7-2_i386 + gcc-4.4-multilib_4.4.7-2_i386 + gcc-4.6_4.6.3-14_i386 + gcc-4.6-base_4.6.3-14_i386 + gcc-4.6-multilib_4.6.3-14_i386 + gcc-4.6-plugin-dev_4.6.3-14_i386 + gcc-4.7_4.7.2-5_i386 + gcc-4.7-base_4.7.2-5_i386 + gcc-4.7-multilib_4.7.2-5_i386 + gcc-4.7-plugin-dev_4.7.2-5_i386 + gcc-avr_1:4.7.2-2_i386 + gcc-h8300-hms_1:3.4.6+dfsg-1_i386 + gcc-m68hc1x_1:3.3.6+3.1+dfsg-3_i386 + gcc-mingw-w64-base_4.6.3-14+8_i386 + gcc-mingw-w64-i686_4.6.3-14+8_i386 + gcc-mingw-w64-x86-64_4.6.3-14+8_i386 + gcc-msp430_4.6.3~mspgcc-20120406-3+deb7u2_i386 + gcc-multilib_4:4.7.2-1_i386 + gccgo_4:4.7.2-1_i386 + gccgo-4.7_4.7.2-5_i386 + gccgo-4.7-multilib_4.7.2-5_i386 + gccgo-multilib_4:4.7.2-1_i386 + gccxml_0.9.0+cvs20120420-4_i386 + gcdmaster_1:1.2.3-0.3_i386 + gchempaint_0.12.12-1_i386 + gcin_2.7.6.1+dfsg-1_i386 + gcin-anthy_2.7.6.1+dfsg-1_i386 + gcin-chewing_2.7.6.1+dfsg-1_i386 + gcin-gtk3-immodule_2.7.6.1+dfsg-1_i386 + gcin-qt4-immodule_2.7.6.1+dfsg-1_i386 + gcin-tables_2.7.6.1+dfsg-1_i386 + gcj-4.6-base_4.6.3-1_i386 + gcj-4.6-jdk_4.6.3-1_i386 + gcj-4.6-jre_4.6.3-1_i386 + gcj-4.6-jre-headless_4.6.3-1_i386 + gcj-4.7-base_4.7.2-3_i386 + gcj-4.7-jdk_4.7.2-3_i386 + gcj-4.7-jre_4.7.2-3_i386 + gcj-4.7-jre-headless_4.7.2-3_i386 + gcj-jdk_4:4.7.2-1_i386 + gcj-jre_4:4.7.2-1_i386 + gcj-jre-headless_4:4.7.2-1_i386 + gcj-native-helper_1:1.6-47_i386 + gcl_2.6.7+dfsga-1_i386 + gcolor2_0.4-2.1_i386 + gcompris_12.01-1_i386 + gcompris-dbg_12.01-1_i386 + gconf-defaults-service_3.2.5-1+build1_i386 + gconf-editor_3.0.1-1_i386 + gconf-gsettings-backend_3.2.5-1+build1_i386 + gconf-service_3.2.5-1+build1_i386 + gconf2_3.2.5-1+build1_i386 + gconjugue_0.7.2-1_i386 + gcpegg_5.1-13_i386 + gcr_3.4.1-3_i386 + gcrystal_0.12.12-1_i386 + gcu-bin_0.12.12-1_i386 + gcu-plugin_0.12.12-1_i386 + gcx_1.3-1.1_i386 + gdal-bin_1.9.0-3.1_i386 + gdb_7.4.1+dfsg-0.1_i386 + gdb-avr_7.4-1_i386 + gdb-mingw-w64_7.4.1-1.1+5_i386 + gdb-minimal_7.4.1+dfsg-0.1_i386 + gdb-msp430_7.2a~mspgcc-20111205-1_i386 + gdb-multiarch_7.4.1+dfsg-0.1_i386 + gdb64_7.4.1+dfsg-0.1_i386 + gdbserver_7.4.1+dfsg-0.1_i386 + gdc_4.6.3-8_i386 + gdc-4.4_1.063-4.4.7-1_i386 + gdc-4.6_0.29.1-4.6.3-2_i386 + gdc-v1_4.6.3-8_i386 + gddccontrol_0.4.2-10_i386 + gddrescue_1.16-1_i386 + gdesklets_0.36.1-5+b1_i386 + gdf-tools_0.1.2-2_i386 + gdigi_0.2.0+hg20110905r195-1_i386 + gdis_0.90-4_i386 + gdisk_0.8.5-1_i386 + gdm3_3.4.1-8_i386 + gdmap_0.8.1-2_i386 + gdpc_2.2.5-2_i386 + geany_1.22+dfsg-2_i386 + geany-plugin-addons_0.21.1.dfsg-4_i386 + geany-plugin-codenav_0.21.1.dfsg-4_i386 + geany-plugin-debugger_0.21.1.dfsg-4_i386 + geany-plugin-doc_0.21.1.dfsg-4_i386 + geany-plugin-extrasel_0.21.1.dfsg-4_i386 + geany-plugin-gdb_0.21.1.dfsg-4_i386 + geany-plugin-gendoc_0.21.1.dfsg-4_i386 + geany-plugin-gproject_0.21.1.dfsg-4_i386 + geany-plugin-insertnum_0.21.1.dfsg-4_i386 + geany-plugin-latex_0.21.1.dfsg-4_i386 + geany-plugin-lipsum_0.21.1.dfsg-4_i386 + geany-plugin-lua_0.21.1.dfsg-4_i386 + geany-plugin-macro_0.21.1.dfsg-4_i386 + geany-plugin-numberedbookmarks_0.21.1.dfsg-4_i386 + geany-plugin-pg_0.21.1.dfsg-4_i386 + geany-plugin-prettyprinter_0.21.1.dfsg-4_i386 + geany-plugin-prj_0.21.1.dfsg-4_i386 + geany-plugin-sendmail_0.21.1.dfsg-4_i386 + geany-plugin-shiftcolumn_0.21.1.dfsg-4_i386 + geany-plugin-spellcheck_0.21.1.dfsg-4_i386 + geany-plugin-tableconvert_0.21.1.dfsg-4_i386 + geany-plugin-treebrowser_0.21.1.dfsg-4_i386 + geany-plugin-updatechecker_0.21.1.dfsg-4_i386 + geany-plugin-vc_0.21.1.dfsg-4_i386 + geany-plugin-webhelper_0.21.1.dfsg-4_i386 + geany-plugin-xmlsnippets_0.21.1.dfsg-4_i386 + gearhead_1.100-2_i386 + gearhead2_0.628-1_i386 + gearman-job-server_0.33-2_i386 + gearman-tools_0.33-2_i386 + gecko-mediaplayer_1.0.6-1_i386 + geda-gattrib_1:1.6.2-4.3_i386 + geda-gnetlist_1:1.6.2-4.3_i386 + geda-gschem_1:1.6.2-4.3_i386 + geda-gsymcheck_1:1.6.2-4.3_i386 + geda-utils_1:1.6.2-4.3_i386 + gedit_3.4.2-1_i386 + gedit-plugins_3.4.0-1_i386 + gedit-valatoys-plugin_0.12.1-3_i386 + gedit-valatoys-plugin-dbg_0.12.1-3_i386 + gedit-valencia-plugin_0.3.0-3.1_i386 + geekcode_1.7.3-5_i386 + geeqie_1:1.0-10.1_i386 + geeqie-dbg_1:1.0-10.1_i386 + gegl_0.2.0-2+nmu1_i386 + geki2_2.0.3-8_i386 + geki3_1.0.3-7_i386 + gelemental_1.2.0-8_i386 + gem_1:0.93.3-5_i386 + gem-extra_1:0.93.3-5_i386 + gem-plugin-dc1394_1:0.93.3-5_i386 + gem-plugin-dv4l_1:0.93.3-5_i386 + gem-plugin-gmerlin_1:0.93.3-5_i386 + gem-plugin-jpeg_1:0.93.3-5_i386 + gem-plugin-lqt_1:0.93.3-5_i386 + gem-plugin-magick_1:0.93.3-5_i386 + gem-plugin-mpeg3_1:0.93.3-5_i386 + gem-plugin-sgi_1:0.93.3-5_i386 + gem-plugin-tiff_1:0.93.3-5_i386 + gem-plugin-unicap_1:0.93.3-5_i386 + gem-plugin-v4l2_1:0.93.3-5_i386 + gemanx-gtk2_0.1.0.3-2_i386 + gemdropx_0.9-6_i386 + gems_1.1.1-2_i386 + genders_1.18-1_i386 + geneweb_6.05.1-1_i386 + genext2fs_1.4.1-4_i386 + gengetopt_2.22.5-1_i386 + genisoimage_9:1.1.11-2_i386 + genisovh_0.1-3_i386 + genius_1.0.14-1_i386 + genius-common_1.0.14-1_i386 + genius-dev_1.0.14-1_i386 + genparse_0.9.1-1_i386 + genromfs_0.5.2-2_i386 + gentle_1.9+cvs20100605+dfsg1-1_i386 + gentoo_0.19.13-2_i386 + genus2reduction_0.3-2.2_i386 + geoclue_0.12.0-4_i386 + geoclue-examples_0.12.0-4_i386 + geoclue-geonames_0.12.0-4_i386 + geoclue-gsmloc_0.12.0-4_i386 + geoclue-hostip_0.12.0-4_i386 + geoclue-localnet_0.12.0-4_i386 + geoclue-manual_0.12.0-4_i386 + geoclue-nominatim_0.12.0-4_i386 + geoclue-plazes_0.12.0-4_i386 + geoclue-skyhook_0.12.0-4_i386 + geoclue-yahoo_0.12.0-4_i386 + geogebra-kde_1.0-1_i386 + geographiclib-tools_1.21-1_i386 + geoip-bin_1.4.8+dfsg-3_i386 + geomview_1.9.4-3_i386 + geotiff-bin_1.3.0+dfsg-3_i386 + gerbv_2.6.0-1_i386 + gerstensaft_0.3-4_i386 + ges0.10-tools_0.10.1-2_i386 + gesftpserver_0.1-3_i386 + getstream_20081204-1.1_i386 + gettext_0.18.1.1-9_i386 + gettext-base_0.18.1.1-9_i386 + gexec_0.4-1_i386 + gfan_0.3dfsg-1.1_i386 + gfarm-client_2.4.1-1.1_i386 + gfarm2fs_1.2.2-1.1_i386 + gff2aplot_2.0-7_i386 + gfm_1.03-2_i386 + gfmd_2.4.1-1.1_i386 + gforth_0.7.0+ds2-0.1_i386 + gforth-lib_0.7.0+ds2-0.1_i386 + gfortran_4:4.7.2-1_i386 + gfortran-4.4_4.4.7-2_i386 + gfortran-4.4-multilib_4.4.7-2_i386 + gfortran-4.6_4.6.3-14_i386 + gfortran-4.6-multilib_4.6.3-14_i386 + gfortran-4.7_4.7.2-5_i386 + gfortran-4.7-multilib_4.7.2-5_i386 + gfortran-mingw-w64-i686_4.6.3-14+8_i386 + gfortran-mingw-w64-x86-64_4.6.3-14+8_i386 + gfortran-multilib_4:4.7.2-1_i386 + gfpoken_0.32-2_i386 + gfs-pcmk_3.0.12-3.2+deb7u2_i386 + gfs-tools_3.0.12-3.2+deb7u2_i386 + gfs2-tools_3.0.12-3.2+deb7u2_i386 + gfsd_2.4.1-1.1_i386 + gftp-common_2.0.19-4_i386 + gftp-gtk_2.0.19-4_i386 + gftp-text_2.0.19-4_i386 + gfxboot_4.5.0-3_i386 + gfxboot-dev_4.5.0-3_i386 + ggcov_0.8.4-2_i386 + ggobi_2.1.10-4_i386 + ghc_7.4.1-4_i386 + ghc-dynamic_7.4.1-4_i386 + ghc-haddock_7.4.1-4_i386 + ghc-mod_1.10.18-1_i386 + ghc-prof_7.4.1-4_i386 + ghc-testsuite_7.4.1-3_i386 + ghemical_3.0.0-1_i386 + ghex_3.4.1-1_i386 + ghkl_4.0.3-4_i386 + ghostess_20120105-1_i386 + ghostscript_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-cups_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-dbg_9.05~dfsg-6.3+deb7u1_i386 + ghostscript-x_9.05~dfsg-6.3+deb7u1_i386 + giblib-dev_1.2.4-8_i386 + giblib1_1.2.4-8_i386 + giblib1-dbg_1.2.4-8_i386 + gif2apng_1.7-3_i386 + gif2png_2.5.8-1_i386 + giflib-dbg_4.1.6-10_i386 + giflib-tools_4.1.6-10_i386 + gifsicle_1.67-1_i386 + gifti-bin_1.0.9-1_i386 + giftrans_1.12.2-16_i386 + gigedit_0.2.0-1_i386 + giggle_0.6.1-2+b1_i386 + giggle-personal-details-plugin_0.6.1-2+b1_i386 + giggle-terminal-view-plugin_0.6.1-2+b1_i386 + gigolo_0.4.1+dfsg-1_i386 + gigolo-dbg_0.4.1+dfsg-1_i386 + gigtools_3.3.0-2_i386 + gimmix_0.5.7.1-4_i386 + gimp_2.8.2-2+deb7u1_i386 + gimp-cbmplugs_1.2.2-1_i386 + gimp-dbg_2.8.2-2+deb7u1_i386 + gimp-dcraw_1.31-1.1_i386 + gimp-dds_2.0.9-3_i386 + gimp-dimage-color_1.1.0-3.1_i386 + gimp-gap_2.6.0+dfsg-3_i386 + gimp-gluas_0.1.20-1_i386 + gimp-gmic_1.5.1.6+dfsg-4_i386 + gimp-gutenprint_5.2.9-1_i386 + gimp-lensfun_0.2.1-1+b1_i386 + gimp-plugin-registry_5.20120621_i386 + gimp-texturize_2.1-2_i386 + gimp-ufraw_0.18-2_i386 + ginac-tools_1.6.2-1_i386 + ginkgocadx_2.12.0.4889-1_i386 + gip_1.7.0-1-3_i386 + gir1.2-accountsservice-1.0_0.6.21-8_i386 + gir1.2-anjuta-3.0_2:3.4.3-1_i386 + gir1.2-appindicator-0.1_0.4.92-2_i386 + gir1.2-appindicator3-0.1_0.4.92-2_i386 + gir1.2-atk-1.0_2.4.0-2_i386 + gir1.2-atspi-2.0_2.5.3-2_i386 + gir1.2-brasero-3.0_3.4.1-4_i386 + gir1.2-caribou-1.0_0.4.4-1_i386 + gir1.2-champlain-0.12_0.12.3-1_i386 + gir1.2-cheese-3.0_3.4.2-2_i386 + gir1.2-clinica-0.2_0.2.1~dfsg-1_i386 + gir1.2-clutter-1.0_1.10.8-2_i386 + gir1.2-clutter-gst-1.0_1.5.4-1+build0_i386 + gir1.2-cogl-1.0_1.10.2-7_i386 + gir1.2-coglpango-1.0_1.10.2-7_i386 + gir1.2-colord-1.0_0.1.21-1_i386 + gir1.2-colorhug-1.0_0.1.10-1_i386 + gir1.2-cryptui-0.0_3.2.2-1_i386 + gir1.2-dbusmenu-glib-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk-0.4_0.6.2-1_i386 + gir1.2-dbusmenu-gtk3-0.4_0.6.2-1_i386 + gir1.2-dee-1.0_1.0.10-3_i386 + gir1.2-ebook-1.2_3.4.4-3_i386 + gir1.2-ecalendar-1.2_3.4.4-3_i386 + gir1.2-edataserver-1.2_3.4.4-3_i386 + gir1.2-emerillon-0.2_0.1.90-1_i386 + gir1.2-epiphany-3.4_3.4.2-2.1_i386 + gir1.2-evd-0.1_0.1.20-2_i386 + gir1.2-evince-3.0_3.4.0-3.1_i386 + gir1.2-farstream-0.1_0.1.2-1_i386 + gir1.2-fcitx-1.0_1:4.2.4.1-7_i386 + gir1.2-folks-0.6_0.6.9-1+b1_i386 + gir1.2-freedesktop_1.32.1-1_i386 + gir1.2-ganv-1.0_0~svn4468~dfsg0-1_i386 + gir1.2-gck-1_3.4.1-3_i386 + gir1.2-gconf-2.0_3.2.5-1+build1_i386 + gir1.2-gcr-3_3.4.1-3_i386 + gir1.2-gda-5.0_5.0.3-2_i386 + gir1.2-gdata-0.0_0.12.0-1_i386 + gir1.2-gdesktopenums-3.0_3.4.2-3_i386 + gir1.2-gdkpixbuf-2.0_2.26.1-1_i386 + gir1.2-gdl-3_3.4.2-1_i386 + gir1.2-gee-1.0_0.6.4-2_i386 + gir1.2-geocodeglib-1.0_0.99.0-1_i386 + gir1.2-ges-0.10_0.10.1-2_i386 + gir1.2-gkbd-3.0_3.4.0.2-1_i386 + gir1.2-gladeui-2.0_3.12.1-1_i386 + gir1.2-glib-2.0_1.32.1-1_i386 + gir1.2-gmenu-3.0_3.4.2-5_i386 + gir1.2-gnomebluetooth-1.0_3.4.2-1_i386 + gir1.2-gnomedesktop-3.0_3.4.2-1_i386 + gir1.2-gnomekeyring-1.0_3.4.1-1_i386 + gir1.2-goa-1.0_3.4.2-2_i386 + gir1.2-grilo-0.1_0.1.19-1_i386 + gir1.2-gssdp-1.0_0.12.2.1-2_i386 + gir1.2-gst-plugins-base-0.10_0.10.36-1.1_i386 + gir1.2-gst-rtsp-server-0.10_0.10.8-3_i386 + gir1.2-gstreamer-0.10_0.10.36-1.2_i386 + gir1.2-gtk-2.0_2.24.10-2_i386 + gir1.2-gtk-3.0_3.4.2-7_i386 + gir1.2-gtk-vnc-2.0_0.5.0-3.1_i386 + gir1.2-gtkchamplain-0.12_0.12.3-1_i386 + gir1.2-gtkclutter-1.0_1.2.0-2_i386 + gir1.2-gtksource-3.0_3.4.2-1_i386 + gir1.2-gtop-2.0_2.28.4-3_i386 + gir1.2-gucharmap-2.90_1:3.4.1.1-2.1_i386 + gir1.2-gudev-1.0_175-7.2_i386 + gir1.2-guestfs-1.0_1:1.18.1-1+deb7u3_i386 + gir1.2-gupnp-1.0_0.18.4-1_i386 + gir1.2-gupnp-av-1.0_0.10.3-1_i386 + gir1.2-gupnpdlna-1.0_0.6.6-1_i386 + gir1.2-gupnpigd-1.0_0.2.1-2_i386 + gir1.2-gweather-3.0_3.4.1-1+build1_i386 + gir1.2-gxps-0.1_0.2.2-2_i386 + gir1.2-ibus-1.0_1.4.1-9+deb7u1_i386 + gir1.2-indicate-0.7_0.6.92-1_i386 + gir1.2-itl-1.0_0.2-1_i386 + gir1.2-javascriptcoregtk-1.0_1.8.1-3.4_i386 + gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_i386 + gir1.2-json-1.0_0.14.2-1_i386 + gir1.2-libosinfo-1.0_0.1.1-1_i386 + gir1.2-libvirt-glib-1.0_0.0.8-1_i386 + gir1.2-lunar-date-2.0_2.4.0-1_i386 + gir1.2-mutter-3.0_3.4.1-5_i386 + gir1.2-mx-1.0_1.4.6-1_i386 + gir1.2-nautilus-3.0_3.4.2-1+build1_i386 + gir1.2-networkmanager-1.0_0.9.4.0-10_i386 + gir1.2-notify-0.7_0.7.5-1_i386 + gir1.2-packagekitglib-1.0_0.7.6-3_i386 + gir1.2-panelapplet-4.0_3.4.2.1-4_i386 + gir1.2-pango-1.0_1.30.0-1_i386 + gir1.2-peas-1.0_1.4.0-2_i386 + gir1.2-polkit-1.0_0.105-3_i386 + gir1.2-poppler-0.18_0.18.4-6_i386 + gir1.2-rb-3.0_2.97-2.1_i386 + gir1.2-rest-0.7_0.7.12-3_i386 + gir1.2-rest-extras-0.7_0.7.12-3_i386 + gir1.2-rsvg-2.0_2.36.1-2_i386 + gir1.2-skk-1.0_0.0.12-3_i386 + gir1.2-socialweb-client_0.25.20-2.1_i386 + gir1.2-soup-2.4_2.38.1-2_i386 + gir1.2-spice-client-glib-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-2.0_0.12-5_i386 + gir1.2-spice-client-gtk-3.0_0.12-5_i386 + gir1.2-sugarext-1.0_0.96.1-2_i386 + gir1.2-telepathyglib-0.12_0.18.2-2_i386 + gir1.2-telepathylogger-0.2_0.4.0-1_i386 + gir1.2-totem-1.0_3.0.1-8_i386 + gir1.2-totem-plparser-1.0_3.4.2-1_i386 + gir1.2-tracker-0.14_0.14.1-3_i386 + gir1.2-unique-3.0_3.0.2-1_i386 + gir1.2-upowerglib-1.0_0.9.17-1_i386 + gir1.2-urfkill-glib0_0.3.0-1_i386 + gir1.2-v-sim-1.0_3.6.0-2+b2_i386 + gir1.2-vte-2.90_1:0.32.2-1_i386 + gir1.2-webkit-1.0_1.8.1-3.4_i386 + gir1.2-webkit-3.0_1.8.1-3.4_i386 + gir1.2-wnck-3.0_3.4.2-1_i386 + gir1.2-xkl-1.0_5.2.1-1_i386 + git_1:1.7.10.4-1+wheezy1_i386 + git-annex_3.20120629_i386 + gitg_0.2.4-1.1+deb7u1_i386 + github-backup_1.20120628.1_i386 + gitit_0.10.0.1-1+b1_i386 + gjacktransport_0.5.3-1_i386 + gjay_0.3.2-1_i386 + gjiten_2.6-2.2_i386 + gjs_1.32.0-5_i386 + gkbd-capplet_3.4.0.2-1_i386 + gkdebconf_1.2.68_i386 + gkermit_1.0-9_i386 + gkrellkam_2.0.0-1.1_i386 + gkrellm_2.3.5-3_i386 + gkrellm-bfm_0.6.4-5_i386 + gkrellm-gkrellmpc_0.1~beta10-2_i386 + gkrellm-hdplop_0.9.9-2.1_i386 + gkrellm-ibam_1:0.5.2-2.1_i386 + gkrellm-leds_0.8.0-1.2_i386 + gkrellm-mailwatch_2.4.3-1_i386 + gkrellm-mldonkey_0.9.7-2.1_i386 + gkrellm-radio_2.0.4-1.1_i386 + gkrellm-reminder_2.0.0-3_i386 + gkrellm-snmp_1.0-1.2+b1_i386 + gkrellm-thinkbat_0.2.2-1_i386 + gkrellm-volume_2.1.13-1_i386 + gkrellm-x86info_0.0.2-9_i386 + gkrellm-xkb_1.05-5_i386 + gkrellmd_2.3.5-3_i386 + gkrellmitime_1.0.1-5_i386 + gkrellmoon_0.6-5_i386 + gkrellmwireless_2.0.3-1_i386 + gkrellshoot_0.4.4-1_i386 + gkrelltop_2.2.13-1_i386 + gkrelltopd_2.2.13-1_i386 + gkrelluim_0.3.1-4+b1_i386 + gkrellweather_2.0.8-2_i386 + gkrellxmms2_0.7.1-2_i386 + gksu_2.0.2-6_i386 + gl-117_1.3.2-2.1_i386 + glabels_3.0.0-3+b1_i386 + glabels-dev_3.0.0-3+b1_i386 + glade_3.12.1-1_i386 + glade-xfce_4.8.1-1_i386 + gladish_1+dfsg0-3_i386 + glam2_1064-1_i386 + glaurung_2.2-2_i386 + glbsp_2.24-1_i386 + glchess_1:3.4.2-3_i386 + gle-graphics_4.2.4c-5_i386 + glee-dev_5.4.0-1_i386 + glew-utils_1.7.0-3_i386 + glfer_0.4.2-2_i386 + glhack_1.2-1_i386 + glib-networking_2.32.3-1_i386 + glib-networking-dbg_2.32.3-1_i386 + glib-networking-services_2.32.3-1_i386 + glide2-bin_2002.04.10ds1-7_i386 + glines_1:3.4.2-3_i386 + gliv_1.9.7-2_i386 + glob2_0.9.4.4-2.1+b1_i386 + global_5.7.1-2_i386 + globs_0.2.0~svn50-4_i386 + globus-authz-callout-error-dbg_2.2-1_i386 + globus-authz-dbg_2.2-1_i386 + globus-callout-dbg_2.2-1_i386 + globus-common-dbg_14.7-2_i386 + globus-common-progs_14.7-2_i386 + globus-core_8.8-2_i386 + globus-ftp-client-dbg_7.3-1_i386 + globus-ftp-control-dbg_4.4-1_i386 + globus-gass-cache-dbg_8.1-2_i386 + globus-gass-cache-program_5.1-1_i386 + globus-gass-cache-program-dbg_5.1-1_i386 + globus-gass-copy-dbg_8.4-1_i386 + globus-gass-copy-progs_8.4-1_i386 + globus-gass-server-ez-dbg_4.3-1_i386 + globus-gass-server-ez-progs_4.3-1_i386 + globus-gass-transfer-dbg_7.2-1_i386 + globus-gatekeeper_9.11-1_i386 + globus-gatekeeper-dbg_9.11-1_i386 + globus-gfork-dbg_3.2-1_i386 + globus-gfork-progs_3.2-1_i386 + globus-gram-client-dbg_12.4-1_i386 + globus-gram-client-tools_10.3-1_i386 + globus-gram-client-tools-dbg_10.3-1_i386 + globus-gram-job-manager_13.33-1_i386 + globus-gram-job-manager-callout-error-dbg_2.1-2_i386 + globus-gram-job-manager-dbg_13.33-1_i386 + globus-gram-job-manager-fork-dbg_1.5-1_i386 + globus-gram-job-manager-fork-setup-seg_1.5-1_i386 + globus-gram-job-manager-pbs-dbg_1.5-1_i386 + globus-gram-job-manager-pbs-setup-seg_1.5-1_i386 + globus-gram-job-manager-sge-dbg_1.5-1_i386 + globus-gram-job-manager-sge-setup-seg_1.5-1_i386 + globus-gram-protocol-dbg_11.3-1_i386 + globus-gridftp-server-control-dbg_2.5-2_i386 + globus-gridftp-server-dbg_6.10-2_i386 + globus-gridftp-server-progs_6.10-2_i386 + globus-gridmap-callout-error-dbg_1.2-2_i386 + globus-gsi-callback-dbg_4.2-1_i386 + globus-gsi-cert-utils-dbg_8.3-1_i386 + globus-gsi-cert-utils-progs_8.3-1_i386 + globus-gsi-credential-dbg_5.3-1_i386 + globus-gsi-openssl-error-dbg_2.1-2_i386 + globus-gsi-proxy-core-dbg_6.2-1_i386 + globus-gsi-proxy-ssl-dbg_4.1-2_i386 + globus-gsi-sysconfig-dbg_5.2-1_i386 + globus-gss-assist-dbg_8.5-1_i386 + globus-gss-assist-progs_8.5-1_i386 + globus-gssapi-error-dbg_4.1-2_i386 + globus-gssapi-gsi-dbg_10.6-1_i386 + globus-io-dbg_9.3-1_i386 + globus-openssl-module-dbg_3.2-1_i386 + globus-openssl-module-progs_3.2-1_i386 + globus-proxy-utils_5.0-2_i386 + globus-proxy-utils-dbg_5.0-2_i386 + globus-rls-client-dbg_5.2-8_i386 + globus-rls-client-progs_5.2-8_i386 + globus-rls-server_4.9-11_i386 + globus-rls-server-dbg_4.9-11_i386 + globus-rsl-dbg_9.1-2_i386 + globus-scheduler-event-generator-dbg_4.6-1_i386 + globus-scheduler-event-generator-progs_4.6-1_i386 + globus-usage-dbg_3.1-2_i386 + globus-xio-dbg_3.3-1_i386 + globus-xio-gsi-driver-dbg_2.3-1_i386 + globus-xio-pipe-driver-dbg_2.2-1_i386 + globus-xio-popen-driver-dbg_2.3-1_i386 + globus-xioperf_3.1-1_i386 + globus-xioperf-dbg_3.1-1_i386 + glogg_0.9.0-1+b1_i386 + glosstex_0.4.dfsg.1-3_i386 + glotski_0.2-7_i386 + glpeces_5.0-2_i386 + glpk_4.45-1_i386 + glpk-utils_4.45-1_i386 + gltron_0.70final-10_i386 + glurp_0.12.3-1_i386 + glusterfs-client_3.2.7-3+deb7u1_i386 + glusterfs-common_3.2.7-3+deb7u1_i386 + glusterfs-dbg_3.2.7-3+deb7u1_i386 + glusterfs-server_3.2.7-3+deb7u1_i386 + gman_0.9.3-5.2_i386 + gmanedit_0.4.2-5_i386 + gmchess_0.29.6-2_i386 + gmediaserver_0.13.0-8_i386 + gmemusage_0.2-11_i386 + gmerlin_1.2.0~dfsg+1-1_i386 + gmerlin-avdecoder-dbg_1.2.0~dfsg-1+b1_i386 + gmerlin-dbg_1.2.0~dfsg+1-1_i386 + gmerlin-encoders-ffmpeg_1.2.0-2_i386 + gmerlin-encoders-good_1.2.0-2_i386 + gmerlin-plugins-avdecoder_1.2.0~dfsg-1+b1_i386 + gmerlin-plugins-base_1.2.0~dfsg+1-1_i386 + gmetad_3.3.8-1+nmu1_i386 + gmfsk_0.6+0.7pre1-2.3_i386 + gmic_1.5.1.6+dfsg-4_i386 + gmic-zart_1.5.1.6+dfsg-4_i386 + gmidimonitor_3.6+dfsg0-1_i386 + gmime-bin_2.6.10-1_i386 + gmlive_0.22.3-1_i386 + gmod_3.1-14_i386 + gmorgan_0.40-1_i386 + gmotionlive_1.0-3_i386 + gmp-ecm_6.4.2-1_i386 + gmpc_11.8.16-6_i386 + gmpc-dbg_11.8.16-6_i386 + gmpc-dev_11.8.16-6_i386 + gmpc-plugins_11.8.16-1_i386 + gmpc-plugins-dbg_11.8.16-1_i386 + gmrun_0.9.2-2.1_i386 + gmt_4.5.7-2_i386 + gmtp_1.3.3-1_i386 + gmult_8.0-1_i386 + gmysqlcc_0.3.0-2+b2_i386 + gnac_0.2.4-1_i386 + gnarwl_3.6.dfsg-6.2_i386 + gnash_0.8.11~git20120629-1+deb7u1_i386 + gnash-common_0.8.11~git20120629-1+deb7u1_i386 + gnash-cygnal_0.8.11~git20120629-1+deb7u1_i386 + gnash-dbg_0.8.11~git20120629-1+deb7u1_i386 + gnash-dev_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-fileio_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-lirc_0.8.11~git20120629-1+deb7u1_i386 + gnash-ext-mysql_0.8.11~git20120629-1+deb7u1_i386 + gnash-tools_0.8.11~git20120629-1+deb7u1_i386 + gnat_4.6_i386 + gnat-4.6_4.6.3-8_i386 + gnat-4.6-base_4.6.3-8_i386 + gnat-4.6-sjlj_4.6.3-8_i386 + gnat-gps_5.0-13_i386 + gnat-gps-dbg_5.0-13_i386 + gnat-mingw-w64-i686_4.6.3-14+8_i386 + gnat-mingw-w64-x86-64_4.6.3-14+8_i386 + gnats_4.1.0-2_i386 + gnats-user_4.1.0-2_i386 + gnect_1:3.4.2-3_i386 + gnee_3.13-1_i386 + gngb_20060309-3_i386 + gniall_0.7.1-7_i386 + gnibbles_1:3.4.2-3_i386 + gnobots2_1:3.4.2-3_i386 + gnoemoe_2.2.0+dfsg-2.2_i386 + gnokii-cli_0.6.30+dfsg-1+b1_i386 + gnokii-smsd_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-mysql_0.6.30+dfsg-1+b1_i386 + gnokii-smsd-pgsql_0.6.30+dfsg-1+b1_i386 + gnomad2_2.9.6-4_i386 + gnome_1:3.4+7+deb7u1_i386 + gnome-alsamixer_0.9.7~cvs.20060916.ds.1-3_i386 + gnome-applets_3.4.1-3_i386 + gnome-applets-dbg_3.4.1-3_i386 + gnome-bluetooth_3.4.2-1_i386 + gnome-boxes_3.4.3+dfsg-1_i386 + gnome-breakout_0.5.3-4_i386 + gnome-color-chooser_0.2.5-1_i386 + gnome-color-manager_3.4.2-1_i386 + gnome-commander_1.2.8.15-3+b1_i386 + gnome-commander-dbg_1.2.8.15-3+b1_i386 + gnome-contacts_3.4.1-1+b1_i386 + gnome-control-center_1:3.4.3.1-2_i386 + gnome-core_1:3.4+7+deb7u1_i386 + gnome-core-devel_1:3.4+7+deb7u1_i386 + gnome-dbg_1:3.4+7+deb7u1_i386 + gnome-dictionary_3.4.0-2_i386 + gnome-disk-utility_3.0.2-3_i386 + gnome-do_0.9-1+b1_i386 + gnome-documents_0.4.2-2_i386 + gnome-dvb-daemon_1:0.2.8-1_i386 + gnome-font-viewer_3.4.0-2_i386 + gnome-genius_1.0.14-1_i386 + gnome-hearts_0.3-2.1_i386 + gnome-hwp-support_0.1.4-1_i386 + gnome-hwp-support-dbg_0.1.4-1_i386 + gnome-keyring_3.4.1-5_i386 + gnome-mag_1:0.16.3-1_i386 + gnome-mastermind_0.3.1-2_i386 + gnome-media_3.4.0-1_i386 + gnome-media-profiles_3.0.0-1_i386 + gnome-menus_3.4.2-5_i386 + gnome-mplayer_1.0.6-1_i386 + gnome-mplayer-dbg_1.0.6-1_i386 + gnome-mud_0.11.2-1_i386 + gnome-nds-thumbnailer_3.0.0-1_i386 + gnome-nettool_3.2.0-1_i386 + gnome-online-accounts_3.4.2-2_i386 + gnome-packagekit_3.4.2-2_i386 + gnome-paint_0.4.0-3_i386 + gnome-panel_3.4.2.1-4_i386 + gnome-panel-control_3.5.0-7_i386 + gnome-panel-dbg_3.4.2.1-4_i386 + gnome-phone-manager_0.68-3+b1_i386 + gnome-photo-printer_0.7.0-1.2_i386 + gnome-pie_0.5.3-1_i386 + gnome-platform-devel_1:3.4+7+deb7u1_i386 + gnome-power-manager_3.4.0-2_i386 + gnome-ppp_0.3.23-1.2_i386 + gnome-screensaver_3.4.1-1_i386 + gnome-screenshot_3.4.1-1_i386 + gnome-search-tool_3.4.0-2+b1_i386 + gnome-session-bin_3.4.2.1-4_i386 + gnome-session-canberra_0.28-6_i386 + gnome-settings-daemon_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-settings-daemon-dev_3.4.2+git20121218.7c1322-3+deb7u3_i386 + gnome-shell_3.4.2-7+deb7u1_i386 + gnome-shell-dbg_3.4.2-7+deb7u1_i386 + gnome-subtitles_1.2-4_i386 + gnome-sushi_0.4.1-3_i386 + gnome-system-log_3.4.1-3_i386 + gnome-system-monitor_3.4.1-2+b1_i386 + gnome-system-tools_3.0.0-2_i386 + gnome-terminal_3.4.1.1-2_i386 + gnome-themes-standard_3.4.2-2.1_i386 + gnome-u2ps_0.0.4-4.2_i386 + gnome-user-share_3.0.2-1_i386 + gnome-xcf-thumbnailer_1.0-1.1_i386 + gnomekiss_2.0-4_i386 + gnomeradio_1.8-2_i386 + gnomine_1:3.4.2-3_i386 + gnomint_1.2.1-4_i386 + gnote_0.8.3-1_i386 + gnotime_2.3.1~snapshot20091119-5_i386 + gnotravex_1:3.4.2-3_i386 + gnotski_1:3.4.2-3_i386 + gnu-efi_3.0i-3_i386 + gnu-fdisk_1.2.4-3.1_i386 + gnu-smalltalk_3.2.4-2_i386 + gnu-smalltalk-browser_3.2.4-2_i386 + gnubg_0.90+20120429-1_i386 + gnubiff_2.2.15-1_i386 + gnubik_2.4-3_i386 + gnucap_1:0.36~20091207-2_i386 + gnucash_1:2.4.10-6_i386 + gnucash-dbg_1:2.4.10-6_i386 + gnuchess_6.0.2-1_i386 + gnudatalanguage_0.9.2-4_i386 + gnudoq_0.94-2.1_i386 + gnugk_2:3.0.2-3_i386 + gnugo_3.8-5_i386 + gnuift_0.1.14-12_i386 + gnuit_4.9.5-3_i386 + gnujump_1.0.6-4_i386 + gnumach_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-dev_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486_2:1.3.99.dfsg.git20120610-1_i386 + gnumach-image-1.3.99-xen-486-dbg_2:1.3.99.dfsg.git20120610-1_i386 + gnumeric_1.10.17-1.1_i386 + gnumeric-plugins-extra_1.10.17-1.1_i386 + gnuminishogi_1.3.2-9_i386 + gnunet-client_0.9.3-7_i386 + gnunet-common_0.9.3-7_i386 + gnunet-dbg_0.9.3-7_i386 + gnunet-dev_0.9.3-7_i386 + gnunet-fuse_0.9.3-2_i386 + gnunet-gtk_0.9.3-1_i386 + gnunet-gtk-dbg_0.9.3-1_i386 + gnunet-gtk-dev_0.9.3-1_i386 + gnunet-server_0.9.3-7_i386 + gnupg_1.4.12-7+deb7u3_i386 + gnupg-agent_2.0.19-2+deb7u1_i386 + gnupg-curl_1.4.12-7+deb7u3_i386 + gnupg-pkcs11-scd_0.7.3-1_i386 + gnupg-pkcs11-scd-dbg_0.7.3-1_i386 + gnupg2_2.0.19-2+deb7u1_i386 + gnuplot-nox_4.6.0-8_i386 + gnuplot-qt_4.6.0-8_i386 + gnuplot-x11_4.6.0-8_i386 + gnuradio_3.5.3.2-1_i386 + gnuradio-dev_3.5.3.2-1_i386 + gnurobbo_0.66+dfsg-2_i386 + gnurobots_2:1.2.0-4+b2_i386 + gnuserv_3.12.8-3_i386 + gnushogi_1.3.2-9_i386 + gnusim8085_1.3.7-1_i386 + gnustep-back-dbg_0.20.1-2.1_i386 + gnustep-back0.20-art_0.20.1-2.1_i386 + gnustep-back0.20-cairo_0.20.1-2.1_i386 + gnustep-base-runtime_1.22.1-4_i386 + gnustep-common_2.6.2-2_i386 + gnustep-dl2_0.12.0-9+nmu1_i386 + gnustep-dl2-postgresql-adaptor_0.12.0-9+nmu1_i386 + gnustep-dl2-sqlite-adaptor_0.12.0-9+nmu1_i386 + gnustep-examples_1:1.3.0-1_i386 + gnustep-gpbs_0.20.1-2.1_i386 + gnustep-gui-runtime_0.20.0-3_i386 + gnutls-bin_3.0.22-3+really2.12.20-7_i386 + goaccess_1:0.5-1_i386 + goattracker_2.72-1_i386 + gob2_2.0.18-1_i386 + goban-ss_1.1-2_i386 + gobby-0.4_0.4.13-2_i386 + gobby-0.4-dbg_0.4.13-2_i386 + gobby-0.5_0.4.94-5_i386 + gobby-0.5-dbg_0.4.94-5_i386 + gobjc_4:4.7.2-1_i386 + gobjc++_4:4.7.2-1_i386 + gobjc++-4.6_4.6.3-14_i386 + gobjc++-4.6-multilib_4.6.3-14_i386 + gobjc++-4.7_4.7.2-5_i386 + gobjc++-4.7-multilib_4.7.2-5_i386 + gobjc++-mingw-w64-i686_4.6.3-14+8_i386 + gobjc++-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc++-multilib_4:4.7.2-1_i386 + gobjc-4.6_4.6.3-14_i386 + gobjc-4.6-multilib_4.6.3-14_i386 + gobjc-4.7_4.7.2-5_i386 + gobjc-4.7-multilib_4.7.2-5_i386 + gobjc-mingw-w64-i686_4.6.3-14+8_i386 + gobjc-mingw-w64-x86-64_4.6.3-14+8_i386 + gobjc-multilib_4:4.7.2-1_i386 + gobject-introspection_1.32.1-1_i386 + gocr_0.49-1_i386 + god_0.7.18-3_i386 + gofigure2_0.9.0-1+b2_i386 + gogglesmm_0.12.6-1_i386 + gogoc_1:1.2-4_i386 + golang-dbg_2:1.0.2-1.1_i386 + golang-go_2:1.0.2-1.1_i386 + golang-src_2:1.0.2-1.1_i386 + goldencheetah_2.1-4_i386 + goldendict_1.0.2~git20110906-1.1_i386 + golly_2.3-1_i386 + gom_0.30.2-5.4_i386 + gomoku.app_1.2.9-1+b2_i386 + gonzui_1.2+cvs20070129-3.1_i386 + goo_0.155-12_i386 + goobox_3.0.1-5_i386 + google-mock_1.6.0-1_i386 + gopchop_1.1.8-5_i386 + gopher_3.0.13_i386 + goplay_0.5-1.1_i386 + gorm.app_1.2.16-1_i386 + gosmore_0.0.0.20100711-2.1_i386 + gource_0.38-1_i386 + gozer_0.7.nofont.1-5_i386 + gpa_0.9.0-4_i386 + gpac_0.5.0~dfsg0-1_i386 + gpac-dbg_0.5.0~dfsg0-1_i386 + gpac-modules-base_0.5.0~dfsg0-1_i386 + gpaco_2.0.9-2_i386 + gpaint_0.3.3-6_i386 + gpart_0.1h-11+b1_i386 + gparted_0.12.1-2_i386 + gpdftext_0.1.5-1+b2_i386 + gpe-announce_0.14-2_i386 + gpe-appmgr_2.8-3_i386 + gpe-bluetooth_0.56-3_i386 + gpe-calendar_0.92-4_i386 + gpe-clock_0.27-2_i386 + gpe-conf_0.2.9-1.1_i386 + gpe-confd_0.16-2_i386 + gpe-contacts_0.49-2_i386 + gpe-edit_0.41-1_i386 + gpe-expenses_0.1.9-2_i386 + gpe-filemanager_0.31-2_i386 + gpe-gallery_0.97-4_i386 + gpe-go_0.05-5_i386 + gpe-julia_0.0.6-7_i386 + gpe-lights_0.13-4_i386 + gpe-login_0.95-2_i386 + gpe-mininet_0.7-2_i386 + gpe-mixer_0.50-1_i386 + gpe-othello_0.2-4_i386 + gpe-ownerinfo_0.28-3_i386 + gpe-ownerinfo-dev_0.28-3_i386 + gpe-question_0.04-3_i386 + gpe-screenshot_0.4-4_i386 + gpe-shield_0.31-6_i386 + gpe-soundbite_1.0.6-2_i386 + gpe-soundserver_0.4-3_i386 + gpe-su_0.20-1_i386 + gpe-taskmanager_0.20-9_i386 + gpe-tetris_0.6.4-2_i386 + gpe-timesheet_0.32-2_i386 + gpe-todo_0.58-1_i386 + gpe-watch_0.11-1_i386 + gpe-what_0.43-4_i386 + gperf_3.0.3-1+b1_i386 + gperiodic_2.0.10-7_i386 + gpesyncd_2.0-1_i386 + gpgsm_2.0.19-2+deb7u1_i386 + gpgv_1.4.12-7+deb7u3_i386 + gphoto2_2.4.14-1_i386 + gphotofs_0.4.0-6_i386 + gphpedit_0.9.98-2_i386 + gpick_0.2.4-1+b1_i386 + gpicview_0.2.3-2_i386 + gpicview-dbg_0.2.3-2_i386 + gpiv_0.6.1-2_i386 + gpiv-mpi_0.6.1-2_i386 + gpivtools_0.6.0-3_i386 + gpivtools-mpi_0.6.0-3_i386 + gplanarity_17906-3_i386 + gplcver_2.12a-1.1_i386 + gpm_1.20.4-6_i386 + gpointing-device-settings_1.5.1-6_i386 + gpomme_1.39~dfsg-2+b1_i386 + gpp_2.24-3_i386 + gpr_0.15deb-2_i386 + gprbuild_2011-2_i386 + gpredict_1.3-2_i386 + gprolog_1.3.0-6.1_i386 + gprompter_0.8.8-1_i386 + gprompter-dbg_0.8.8-1_i386 + gpsbabel_1.4.3-1_i386 + gpsbabel-gui_1.4.3-1_i386 + gpscorrelate_1.6.1-4_i386 + gpscorrelate-gui_1.6.1-4_i386 + gpsd_3.6-4+deb7u1_i386 + gpsd-clients_3.6-4+deb7u1_i386 + gpsd-dbg_3.6-4+deb7u1_i386 + gpsim_0.26.1-2.1_i386 + gpsim-dev_0.26.1-2.1_i386 + gpsk31_0.5-6_i386 + gpsmanshp_1.2.1-1_i386 + gpstrans_0.41-3_i386 + gpt_1.1-2_i386 + gptsync_0.14-2_i386 + gputils_0.13.7-1_i386 + gpw_0.0.19940601-8.1_i386 + gpx2shp_0.69-3.1_i386 + grabc_1.1-2_i386 + grace_1:5.1.22-13_i386 + gradm2_2.9.1~201206091838-1_i386 + grads_2.0.a9-4+b2_i386 + grafx2_2.3-1.1_i386 + gramofile_1.6-9_i386 + gramophone2_0.8.13a-1_i386 + granatier_4:4.8.4-3_i386 + granule_1.4.0-7-1_i386 + grap_1.43-2_i386 + graphdefang_2.71-3_i386 + graphicsmagick_1.3.16-1.1_i386 + graphicsmagick-dbg_1.3.16-1.1_i386 + graphthing_1.3.2-3.1_i386 + graphviz_2.26.3-14+deb7u1_i386 + grass-core_6.4.2-2_i386 + grass-dev_6.4.2-2_i386 + grass-gui_6.4.2-2_i386 + gravitation_3+dfsg1-3_i386 + gravitywars_1.102-32_i386 + grcm_0.1.6-1_i386 + grcompiler_4.2-1_i386 + grdesktop_0.23+d040330-3_i386 + greed_3.7-1_i386 + gregorio_2.0-1.2_i386 + grep_2.12-2_i386 + grepcidr_1.3-5_i386 + gresolver_0.0.5-5_i386 + gretl_1.9.9-1_i386 + grfcodec_6.0.0-1_i386 + grhino_0.16.1-2_i386 + gri_2.12.23-2.2_i386 + gridengine-client_6.2u5-7.1_i386 + gridengine-drmaa-dev_6.2u5-7.1_i386 + gridengine-drmaa1.0_6.2u5-7.1_i386 + gridengine-exec_6.2u5-7.1_i386 + gridengine-master_6.2u5-7.1_i386 + gridengine-qmon_6.2u5-7.1_i386 + gridlock.app_1.10-3.2_i386 + gridsite_1.7.16-1_i386 + gridsite-clients_1.7.16-1_i386 + gridsite-dbg_1.7.16-1_i386 + gridsite-gsexec_1.7.16-1_i386 + grig_0.8.0-1_i386 + grilo-plugins-0.1_0.1.19-1_i386 + gringo_3.0.4-3_i386 + gringotts_1.2.10~pre3-1_i386 + grisbi_0.8.9-1_i386 + grml2usb_0.12.2_i386 + groff_1.21-9_i386 + groff-base_1.21-9_i386 + grok_1.20110708.1-4_i386 + grok-dbg_1.20110708.1-4_i386 + gromacs_4.5.5-2_i386 + gromacs-dev_4.5.5-2_i386 + gromacs-mpich_4.5.5-2_i386 + gromacs-openmpi_4.5.5-2_i386 + gromit_20041213-9_i386 + gross_1.0.2-3_i386 + groundhog_1.4-9_i386 + growisofs_7.1-10_i386 + grpn_1.1.2-3.1_i386 + grr.app_0.9.0-1_i386 + grsync_1.2.0-1_i386 + grub-common_1.99-27+deb7u2_i386 + grub-coreboot_1.99-27+deb7u2_i386 + grub-coreboot-bin_1.99-27+deb7u2_i386 + grub-efi_1.99-27+deb7u2_i386 + grub-efi-amd64_1.99-27+deb7u2_i386 + grub-efi-amd64-bin_1.99-27+deb7u2_i386 + grub-efi-ia32_1.99-27+deb7u2_i386 + grub-efi-ia32-bin_1.99-27+deb7u2_i386 + grub-emu_1.99-27+deb7u2_i386 + grub-firmware-qemu_1.99-27+deb7u2_i386 + grub-ieee1275_1.99-27+deb7u2_i386 + grub-ieee1275-bin_1.99-27+deb7u2_i386 + grub-invaders_1.0.0-12_i386 + grub-legacy_0.97-67_i386 + grub-linuxbios_1.99-27+deb7u2_i386 + grub-pc_1.99-27+deb7u2_i386 + grub-pc-bin_1.99-27+deb7u2_i386 + grub-rescue-pc_1.99-27+deb7u2_i386 + grub2_1.99-27+deb7u2_i386 + grub2-common_1.99-27+deb7u2_i386 + grun_0.9.3-1_i386 + gsasl_1.8.0-2_i386 + gsasl-dbg_1.8.0-2_i386 + gscanbus_0.8-1_i386 + gsetroot_1.1-2.2_i386 + gsettings-desktop-schemas-dev_3.4.2-3_i386 + gsimplecal_1.5-1_i386 + gsl-bin_1.15+dfsg.2-2_i386 + gsm-utils_1.10-13.2_i386 + gsm0710muxd_1.13-1_i386 + gsmartcontrol_0.8.6-1.2_i386 + gsmc_1.1-1.1_i386 + gsoap_2.8.7-2_i386 + gsoap-dbg_2.8.7-2_i386 + gsoko_0.4.2-gpe6-3_i386 + gsql_0.2.2-1.2+b1_i386 + gsql-mysql-engine_0.2.2-1.2+b1_i386 + gsql-plugins_0.2.2-1.2+b1_i386 + gsql-postgresql-engine_0.2.2-1.2+b1_i386 + gssdp-tools_0.12.2.1-2_i386 + gst123_0.3.1-1_i386 + gstm_1.2-8_i386 + gstreamer-tools_0.10.36-1.2_i386 + gstreamer0.10-alsa_0.10.36-1.1_i386 + gstreamer0.10-buzztard_0.5.0-2+deb7u1_i386 + gstreamer0.10-chromaprint_0.1-3_i386 + gstreamer0.10-crystalhd_1:0.0~git20110715.fdd2f19-9_i386 + gstreamer0.10-dvswitch_0.0.1-1_i386 + gstreamer0.10-ffmpeg_0.10.13-5_i386 + gstreamer0.10-ffmpeg-dbg_0.10.13-5_i386 + gstreamer0.10-fluendo-mp3_0.10.15.debian-1_i386 + gstreamer0.10-gconf_0.10.31-3+nmu1_i386 + gstreamer0.10-gnomevfs_0.10.36-1.1_i386 + gstreamer0.10-gnonlin_0.10.17-2_i386 + gstreamer0.10-gnonlin-dbg_0.10.17-2_i386 + gstreamer0.10-hplugins_0.2.0-2_i386 + gstreamer0.10-nice_0.1.2-1_i386 + gstreamer0.10-packagekit_0.7.6-3_i386 + gstreamer0.10-plugins-bad_0.10.23-7.1_i386 + gstreamer0.10-plugins-bad-dbg_0.10.23-7.1_i386 + gstreamer0.10-plugins-base_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-apps_0.10.36-1.1_i386 + gstreamer0.10-plugins-base-dbg_0.10.36-1.1_i386 + gstreamer0.10-plugins-cutter_1.1.7-1.2_i386 + gstreamer0.10-plugins-good_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1_i386 + gstreamer0.10-plugins-ugly_0.10.19-2+b2_i386 + gstreamer0.10-plugins-ugly-dbg_0.10.19-2+b2_i386 + gstreamer0.10-pulseaudio_0.10.31-3+nmu1_i386 + gstreamer0.10-qapt_1.3.0-2_i386 + gstreamer0.10-tools_0.10.36-1.2_i386 + gstreamer0.10-x_0.10.36-1.1_i386 + gsynaptics_1.5.1-6_i386 + gtali_1:3.4.2-3_i386 + gtamsanalyzer.app_0.42-6+b3_i386 + gtans_1.99.0-2_i386 + gtetrinet_0.7.11-3+b2_i386 + gthumb_3:3.0.1-2_i386 + gthumb-dbg_3:3.0.1-2_i386 + gthumb-dev_3:3.0.1-2_i386 + gtick_0.5.1-1_i386 + gtimer_2.0.0-1.1_i386 + gtk-3-examples_3.4.2-7_i386 + gtk-chtheme_0.3.1-5_i386 + gtk-gnutella_0.98.3-1_i386 + gtk-im-libthai_0.2.1-4_i386 + gtk-sharp2-gapi_2.12.10-5_i386 + gtk-theme-switch_2.1.0-2_i386 + gtk-vector-screenshot_0.3.2-1_i386 + gtk2-engines_1:2.20.2-2_i386 + gtk2-engines-aurora_1.5.1-3_i386 + gtk2-engines-cleanice_2.4.1-3_i386 + gtk2-engines-magicchicken_1.1.1-9_i386 + gtk2-engines-moblin_1.1.1-1.1_i386 + gtk2-engines-murrine_0.98.1.1-5_i386 + gtk2-engines-nodoka_0.7.0-1.1_i386 + gtk2-engines-oxygen_1.2.4-1_i386 + gtk2-engines-pixbuf_2.24.10-2_i386 + gtk2-engines-qtcurve_1.8.15-4_i386 + gtk2-engines-ubuntulooks_0.9.12-2_i386 + gtk2-engines-wonderland_1.0-8_i386 + gtk2-engines-xfce_2.8.1-3_i386 + gtk2.0-examples_2.24.10-2_i386 + gtk2hs-buildtools_0.12.3-2_i386 + gtk3-engines-oxygen_1.0.4-1_i386 + gtk3-engines-unico_1.0.2-1_i386 + gtk3-im-libthai_0.2.1-4_i386 + gtkam_0.1.18-1_i386 + gtkam-dbg_0.1.18-1_i386 + gtkam-gimp_0.1.18-1_i386 + gtkaml_0.5.91-1_i386 + gtkaml-dbg_0.5.91-1_i386 + gtkatlantic_0.4.2-3_i386 + gtkballs_3.1.5-9_i386 + gtkboard_0.11pre0+cvs.2003.11.02-5_i386 + gtkcookie_0.4-5_i386 + gtkguitune_0.8-6_i386 + gtkhash_0.6.0-4_i386 + gtklp_1.2.7-2.3_i386 + gtkmorph_1:20090926_i386 + gtkperf_0.40+ds-2_i386 + gtkpod_2.1.2-1_i386 + gtkpod-dbg_2.1.2-1_i386 + gtkpool_0.5.0-9_i386 + gtkwave_3.3.37-1_i386 + gtranslator_2.91.4-1_i386 + gtrayicon_1.1-1_i386 + gtrayicon-dbg_1.1-1_i386 + gtypist_2.9.1-2.1_i386 + guacd_0.6.0-1_i386 + guake_0.4.3-3_i386 + guayadeque_0.3.5~ds0-4_i386 + guayadeque-dbg_0.3.5~ds0-4_i386 + gucharmap_1:3.4.1.1-2.1_i386 + guessnet_0.55_i386 + guestfish_1:1.18.1-1+deb7u3_i386 + guestfsd_1:1.18.1-1+deb7u3_i386 + guestmount_1:1.18.1-1+deb7u3_i386 + guile-1.6_1.6.8-10.3_i386 + guile-1.6-dev_1.6.8-10.3_i386 + guile-1.6-libs_1.6.8-10.3_i386 + guile-1.8_1.8.8+1-8_i386 + guile-1.8-dev_1.8.8+1-8_i386 + guile-1.8-libs_1.8.8+1-8_i386 + guile-2.0_2.0.5+1-3_i386 + guile-2.0-dev_2.0.5+1-3_i386 + guile-2.0-libs_2.0.5+1-3_i386 + guile-cairo_1.4.0-3_i386 + guile-cairo-dev_1.4.0-3_i386 + guile-db_0.1-4.1_i386 + guile-g-wrap_1.9.14-1.1_i386 + guile-gnutls_3.0.22-3+really2.12.20-7_i386 + guile-pg_0.16-5_i386 + guitarix_0.22.4-1_i386 + gummi_0.6.3-1.2_i386 + gunroar_0.15.dfsg1-5_i386 + gup_0.5.13_i386 + gupnp-dlna-tools_0.6.6-1_i386 + gupnp-tools_0.8.4-1+b1_i386 + gupnp-vala_0.10.4-1_i386 + gurlchecker_0.13.1-2.1_i386 + guvcview_1.5.3-1_i386 + guymager_0.6.7-3_i386 + gv_1:3.7.3-1_i386 + gvfs_1.12.3-4_i386 + gvfs-backends_1.12.3-4_i386 + gvfs-bin_1.12.3-4_i386 + gvfs-daemons_1.12.3-4_i386 + gvfs-dbg_1.12.3-4_i386 + gvfs-fuse_1.12.3-4_i386 + gvfs-libs_1.12.3-4_i386 + gvidm_0.8-11_i386 + gvncviewer_0.5.0-3.1_i386 + gvpe_2.24-2_i386 + gwaei_3.4.3-1_i386 + gwaterfall_0.1-5_i386 + gwc_0.21.17~dfsg0-2_i386 + gwc-dbg_0.21.17~dfsg0-2_i386 + gweled_0.9.1-2_i386 + gwenhywfar-tools_4.3.3-1_i386 + gwenview_4:4.8.4-2_i386 + gwenview-dbg_4:4.8.4-2_i386 + gwhere_0.2.3.dfsg.1-3_i386 + gworkspace.app_0.8.8-1.1_i386 + gworldclock_1.4.4-9_i386 + gwsetup_6.05.1-1_i386 + gwtp_6.05.1-1_i386 + gwyddion_2.28-2_i386 + gwyddion-plugins_2.28-2_i386 + gxine_0.5.907-2+deb7u1_i386 + gxineplugin_0.5.907-2+deb7u1_i386 + gxmessage_2.20.0-1_i386 + gxmms2_0.7.1-2_i386 + gxneur_0.15.0-2.1_i386 + gxtuner_2.0-2_i386 + gyoto_0.0.3-5_i386 + gyoto-dbg_0.0.3-5_i386 + gyrus_0.3.10-1.1_i386 + gzip_1.5-1.1_i386 + gzrt_0.6+ds1-1_i386 + h5utils_1.12.1-2_i386 + ha_0.999p+dfsg-3_i386 + hal_0.5.14-8_i386 + halevt_0.1.6.2-2_i386 + halibut_1.0+svn20090906-6_i386 + hama-slide-mouse-control_1.0-2_i386 + hamfax_0.8.1-1+b1_i386 + handlersocket-mysql-5.5_1.1.0-7-g1044a28-1_i386 + hannah_1.0-2_i386 + hapm_0.7-1_i386 + happy_1.18.9-1_i386 + hardening-wrapper_2.2_i386 + hardinfo_0.5.1-1.2_i386 + hardlink_0.2.0_i386 + harminv_1.3.1-9_i386 + hasciicam_1.1.2-1_i386 + haserl_0.9.29-3_i386 + hashalot_0.3-5_i386 + hashcash_1.21-1.1_i386 + haskell-debian-utils_3.64-3_i386 + hatari_1.6.2-1_i386 + haveged_1.4-4_i386 + haxml_1:1.22.5-2+b2_i386 + hdapsd_1:20090401-2_i386 + hdate-applet_0.15.11-1.1+b2_i386 + hddtemp_0.3-beta15-52_i386 + hdf4-tools_4.2r4-13_i386 + hdf5-helpers_1.8.8-9_i386 + hdf5-tools_1.8.8-9_i386 + hdfview_2.8.0-5_i386 + hdhomerun-config_20120405-1_i386 + hdparm_9.39-1+b1_i386 + hdparm-dbg_9.39-1+b1_i386 + hdup_2.0.14-4_i386 + heartbeat_1:3.0.5-3_i386 + heartbeat-dev_1:3.0.5-3_i386 + hebcal_3.5-2_i386 + hedgewars_0.9.17-1_i386 + heimdal-clients_1.6~git20120403+dfsg1-2_i386 + heimdal-clients-x_1.6~git20120403+dfsg1-2_i386 + heimdal-dbg_1.6~git20120403+dfsg1-2_i386 + heimdal-dev_1.6~git20120403+dfsg1-2_i386 + heimdal-kcm_1.6~git20120403+dfsg1-2_i386 + heimdal-kdc_1.6~git20120403+dfsg1-2_i386 + heimdal-multidev_1.6~git20120403+dfsg1-2_i386 + heimdal-servers_1.6~git20120403+dfsg1-2_i386 + heimdal-servers-x_1.6~git20120403+dfsg1-2_i386 + heirloom-mailx_12.5-2_i386 + helium_1.7~pre20090428-3.1_i386 + hello_2.8-2_i386 + hello-debhelper_2.8-1_i386 + help2man_1.40.10_i386 + helpviewer.app_0.3-7+b3_i386 + herbstluftwm_0.3-1_i386 + hercules_3.07-2.2_i386 + herculesstudio_1.3.0-2_i386 + heroes-common_0.21-8.4_i386 + heroes-sdl_0.21-8.4_i386 + hesiod_3.0.2-21_i386 + hex-a-hop_0.0.20070315-8_i386 + hexalate_1.0.1-3_i386 + hexcurse_1.55-2_i386 + hexec_0.2.1-2_i386 + hexedit_1.2.12-4_i386 + hexer_0.1.7-1.1_i386 + hexter_0.6.2-3_i386 + hexxagon_1.0pl1-3.1_i386 + hfsplus_1.0.4-12_i386 + hfsprogs_332.25-10_i386 + hfsutils_3.2.6-11_i386 + hfsutils-tcltk_3.2.6-11_i386 + highlight_3.9-1_i386 + hime_0.9.9+git20120619+dfsg-1_i386 + hime-anthy_0.9.9+git20120619+dfsg-1_i386 + hime-chewing_0.9.9+git20120619+dfsg-1_i386 + hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-qt4-immodule_0.9.9+git20120619+dfsg-1_i386 + hime-tables_0.9.9+git20120619+dfsg-1_i386 + hitori_0.3.2-1_i386 + hlbr_1.7.2-2_i386 + hlint_1.8.28-1+b3_i386 + hmmer_3.0-4_i386 + hnb_1.9.18-9_i386 + ho22bus_0.9.1-2_i386 + hodie_1.5-1_i386 + hoichess_0.10.3-6.1_i386 + hol-light_20120602-1_i386 + hol88_2.02.19940316-15_i386 + hol88-library_2.02.19940316-15_i386 + holdingnuts_0.0.5-4_i386 + holdingnuts-server_0.0.5-4_i386 + holotz-castle_1.3.14-5_i386 + holotz-castle-editor_1.3.14-5_i386 + homebank_4.4-1_i386 + horgand_1.14-5_i386 + hostap-utils_1:0.4.7-1_i386 + hostapd_1:1.0-3+b1_i386 + hostname_3.11_i386 + hotkeys_0.5.7.4-0.3+b1_i386 + hotswap-gui_0.4.0-12_i386 + hotswap-text_0.4.0-12_i386 + hoz_1.65-2_i386 + hoz-gui_1.65-2_i386 + hp2xx_3.4.4-8+b1_i386 + hp48cc_1.3-4_i386 + hpanel_0.3.2-4_i386 + hpcc_1.4.1-2_i386 + hping3_3.a2.ds2-6_i386 + hplip_3.12.6-3.1+deb7u1_i386 + hplip-dbg_3.12.6-3.1+deb7u1_i386 + hpsockd_0.17+b1_i386 + hscolour_1.19-3+b1_i386 + hsetroot_1.0.2-1_i386 + hspell_1.1-2_i386 + hspell-gui_0.2.6-5.1_i386 + ht_2.0.20-2_i386 + htcheck_1:2.0.0~rc1-2+b1_i386 + htdig_1:3.2.0b6-12_i386 + html-xml-utils_6.1-1_i386 + html2text_1.3.2a-15_i386 + htmldoc_1.8.27-8_i386 + htop_1.0.1-1_i386 + htsengine_1.06-1_i386 + httest_2.2.6-1_i386 + httperf_0.9.0-2+b1_i386 + httpfs2_0.1.4-1_i386 + httpie_0.1.6+20120309git-2.1_i386 + httping_1.5.3-1_i386 + httptunnel_3.3+dfsg-3_i386 + httrack_3.46.1-1_i386 + hugin_2011.4.0+dfsg-5_i386 + hugin-tools_2011.4.0+dfsg-5_i386 + hugs_98.200609.21-5.3_i386 + hunspell_1.3.2-4_i386 + hunspell-tools_1.3.2-4_i386 + hunt_1.5-6_i386 + hwinfo_16.0-2.2_i386 + hwloc_1.4.1-4_i386 + hwloc-nox_1.4.1-4_i386 + hyantesite_1.3.0-1_i386 + hydrogen_0.9.6~beta2-1_i386 + hylafax-client_3:6.0.6-5_i386 + hylafax-client-dbg_3:6.0.6-5_i386 + hylafax-server_3:6.0.6-5_i386 + hylafax-server-dbg_3:6.0.6-5_i386 + hyphen-show_20000425-2_i386 + i2c-tools_3.1.0-2_i386 + i3_4.2-2_i386 + i3-wm_4.2-2_i386 + i3-wm-dbg_4.2-2_i386 + i3lock_2.4.1-1_i386 + i3status_2.5.1-1_i386 + i810switch_0.6.5-7_i386 + i8kutils_1.33_i386 + i965-va-driver_1.0.17-1_i386 + i965-va-driver-dbg_1.0.17-1_i386 + ia32-libs-gtk-i386_1:0.1_i386 + ia32-libs-i386_1:0.4_i386 + iagno_1:3.4.2-3_i386 + iasl_20100528-3_i386 + iat_0.1.3-7_i386 + iaxmodem_1.2.0~dfsg-1_i386 + ibam_1:0.5.2-2.1_i386 + ibod_1.5.0-6_i386 + ibsim-utils_0.5-1.1_i386 + ibulgarian_4.1-3_i386 + ibus_1.4.1-9+deb7u1_i386 + ibus-anthy_1.2.6-2+deb7u1_i386 + ibus-array_0.0.2-6_i386 + ibus-chewing_1.3.10+clean-3+b1_i386 + ibus-clutter_0.0+git20090728.a936bacf-5_i386 + ibus-gtk_1.4.1-9+deb7u1_i386 + ibus-gtk3_1.4.1-9+deb7u1_i386 + ibus-hangul_1.4.1-1+deb7u1_i386 + ibus-input-pad_1.4.0-2_i386 + ibus-m17n_1.3.4-1+deb7u1_i386 + ibus-mozc_1.5.1090.102-4+deb7u1_i386 + ibus-pinyin_1.4.0-1+deb7u1_i386 + ibus-qt4_1.3.1-2.1_i386 + ibus-skk_1.4.1-2+deb7u1_i386 + ibus-sunpinyin_2.0.3-4+deb7u1_i386 + ibus-tegaki_0.3.1-1_i386 + ibus-unikey_0.6.1-1_i386 + ibutils_1.2-OFED-1.4.2-1.3_i386 + ibverbs-utils_1.1.6-1_i386 + ical2html_2.0-1_i386 + icc-utils_1.4.0-8_i386 + ice34-services_3.4.2-8.2_i386 + ice34-translators_3.4.2-8.2_i386 + icebox_3.4.2-8.2_i386 + icebreaker_1.21-11_i386 + icecast2_2.3.2-9+deb7u2_i386 + icedax_9:1.1.11-2_i386 + icedove_10.0.12-1_i386 + icedove-dbg_10.0.12-1_i386 + icedove-dev_10.0.12-1_i386 + icedtea-6-jre-cacao_6b27-1.12.5-1_i386 + icedtea-6-jre-jamvm_6b27-1.12.5-1_i386 + icedtea-6-plugin_1.3.2-1_i386 + icedtea-7-jre-cacao_7u3-2.1.7-1_i386 + icedtea-7-jre-jamvm_7u3-2.1.7-1_i386 + icedtea-7-plugin_1.3.2-1_i386 + icedtea-netx_1.3.2-1_i386 + icee-translators_1.2.0-6_i386 + iceowl-extension_10.0.12-1_i386 + ices2_2.0.1-13_i386 + iceweasel_17.0.10esr-1~deb7u1_i386 + iceweasel-dbg_17.0.10esr-1~deb7u1_i386 + icewm_1.3.7-4_i386 + icewm-common_1.3.7-4_i386 + icewm-experimental_1.3.7-4_i386 + icewm-gnome-support_1.3.7-4_i386 + icewm-lite_1.3.7-4_i386 + icheck_0.9.7-6.1+b2_i386 + icinga_1.7.1-6_i386 + icinga-cgi_1.7.1-6_i386 + icinga-core_1.7.1-6_i386 + icinga-dbg_1.7.1-6_i386 + icinga-idoutils_1.7.1-6_i386 + icmake_7.18.00-2_i386 + icmpinfo_1.11-7_i386 + icmptx_0.2-1_i386 + icmpush_2.2-6_i386 + icnsutils_0.8.1-1_i386 + icom_20040912-1.1_i386 + icon-slicer_0.3-6_i386 + iconc_9.4.3-4.2_i386 + icont_9.4.3-4.2_i386 + iconx_9.4.3-4.2_i386 + icoutils_0.29.1-5_i386 + iczech_20040229-5.1_i386 + id-utils_4.5+dfsg-0.1_i386 + id3_0.15-3_i386 + id3ren_1.1b0-6_i386 + id3tool_1.2a-4_i386 + id3v2_0.1.12-2_i386 + idanish_1.6.25-1.1_i386 + idecrypt_3.0.19.ds1-7_i386 + ident2_1.07-1.1_i386 + idesk_0.7.5-4.2_i386 + ideviceinstaller_1.0.0-1.2_i386 + ideviceinstaller-dbg_1.0.0-1.2_i386 + idjc_0.8.7-2_i386 + idle3-tools_0.9.1-1_i386 + idn_1.25-2_i386 + idn2_0.8-2_i386 + idzebra-2.0_2.0.44-3_i386 + idzebra-2.0-utils_2.0.44-3_i386 + iec16022_0.2.4-1_i386 + ifcico_2.14tx8.10-21_i386 + ifenslave-2.6_1.1.0-20_i386 + ifgate_2.14tx8.10-21_i386 + ifhp_3.5.20-12.1_i386 + ifile_1.3.9-6_i386 + ifinnish_0.7-18_i386 + ifinnish-large_0.7-18_i386 + ifinnish-small_0.7-18_i386 + ifmetric_0.3-2+deb7u1_i386 + ifp-line-libifp_1.0.0.2-5_i386 + ifpgui_1.0.0-3_i386 + ifplugd_0.28-19_i386 + ifrename_30~pre9-8_i386 + ifrench-gut_1:1.0-30_i386 + ifrit_3.3.4-3_i386 + ifstat_1.1-8_i386 + iftop_1.0~pre2-4~deb7u2_i386 + iftop-dbg_1.0~pre2-4~deb7u2_i386 + ifupdown_0.7.8_i386 + ifuse_1.0.0-1+b1_i386 + ifuse-dbg_1.0.0-1+b1_i386 + igaelic_0.50-8_i386 + ihungarian_1.2+repack-2_i386 + ii_1.6-1_i386 + ii-esu_1.0a.dfsg1-4_i386 + iipimage-server_0.9.9-2_i386 + iirish_2.0-21_i386 + iitalian_1:2.3-3_i386 + ijsgutenprint_5.2.9-1_i386 + ikarus_0.0.3+bzr.2010.01.26-2_i386 + ike-scan_1.9-4+b1_i386 + ikiwiki-hosting-web_0.20120527_i386 + imagemagick_8:6.7.7.10-5+deb7u2_i386 + imagemagick-dbg_8:6.7.7.10-5+deb7u2_i386 + imageshack-uploader_2.2+hg20100408.d802dea89428-5.1_i386 + imagevis3d_2.0.1-5_i386 + imagination_3.0-2_i386 + imanx_0.50-9.1_i386 + imapcopy_1.04-1_i386 + imapfilter_1:2.5.2-2_i386 + imapproxy_1.2.7-1.1_i386 + imaptool_0.9-12_i386 + imgvtopgm_2.0-9_i386 + imhangul-gtk2_2.1.0-2_i386 + imhangul-gtk3_3.1.0-2_i386 + imms-audacious_3.1.0~svn301-2_i386 + imms-common_3.1.0~svn301-2_i386 + imsniff_0.04-6_i386 + imspector_0.9-1_i386 + imvirt-helper_0.9.4-4_i386 + imwheel_1.0.0pre12-9_i386 + inadyn_1.96.2-1+b1_i386 + incron_0.5.10-1_i386 + indent_2.2.11-2_i386 + indi-bin_0.9.1-2_i386 + indi-dbg_0.9.1-2_i386 + indicator-applet_0.5.0-1_i386 + indicator-applet-appmenu_0.5.0-1_i386 + indicator-applet-complete_0.5.0-1_i386 + indicator-applet-session_0.5.0-1_i386 + indicator-application_0.5.0-1_i386 + indicator-application-gtk2_0.5.0-1_i386 + indicator-messages_0.6.0-1_i386 + indicator-messages-gtk2_0.6.0-1_i386 + indicator-session_0.3.96-1_i386 + indicator-session-gtk2_0.3.96-1_i386 + indicator-status-provider-emesene_0.6.0-1_i386 + indicator-status-provider-mc5_0.6.0-1_i386 + indicator-status-provider-pidgin_0.6.0-1_i386 + indicator-status-provider-telepathy_0.6.0-1_i386 + indigo-utils_1.0.0-2_i386 + inetutils-ftp_2:1.9-2_i386 + inetutils-ftpd_2:1.9-2_i386 + inetutils-inetd_2:1.9-2_i386 + inetutils-ping_2:1.9-2_i386 + inetutils-syslogd_2:1.9-2_i386 + inetutils-talk_2:1.9-2_i386 + inetutils-talkd_2:1.9-2_i386 + inetutils-telnet_2:1.9-2_i386 + inetutils-telnetd_2:1.9-2_i386 + inetutils-tools_2:1.9-2_i386 + inetutils-traceroute_2:1.9-2_i386 + infernal_1.0.2-2_i386 + infernal-dbg_1.0.2-2_i386 + infiniband-diags_1.4.4-20090314-1.2_i386 + infinoted_0.5.2-6.1_i386 + info_4.13a.dfsg.1-10_i386 + infon-server_0~r198-8_i386 + infon-viewer_0~r198-8_i386 + initscripts_2.88dsf-41+deb7u1_i386 + inkscape_0.48.3.1-1.3_i386 + inn_1:1.7.2q-41_i386 + inn2_2.5.3-3_i386 + inn2-dev_2.5.3-3_i386 + inn2-inews_2.5.3-3_i386 + inn2-lfs_2.5.3-3_i386 + innfeed_0.10.1.7-8_i386 + innoextract_1.2+git20120504-1_i386 + inorwegian_2.0.10-5.1_i386 + inotail_0.5-2_i386 + inoticoming_0.2.3-1_i386 + inotify-tools_3.14-1_i386 + input-pad_1.0.1-2_i386 + input-utils_1.0-1_i386 + inputattach_1:1.4.3-1_i386 + inputlirc_19-1_i386 + inspircd_2.0.5-1+b1_i386 + inspircd-dbg_2.0.5-1+b1_i386 + insserv_1.14.0-5_i386 + install-info_4.13a.dfsg.1-10_i386 + instead_1.6.0-1_i386 + integrit_4.1-1_i386 + intel-gpu-tools_1.2-1_i386 + intel2gas_1.3.3-14_i386 + inteltool_0.0+r4091-1.2_i386 + intercal_29:0.29-2_i386 + interchange_5.7.7-2_i386 + intone_0.77-2_i386 + invada-studio-plugins-ladspa_0.3.1-2_i386 + invada-studio-plugins-lv2_1.2.0+repack0-4_i386 + inventor-clients_2.1.5-10-16_i386 + inventor-demo_2.1.5-10-16_i386 + inventor-dev_2.1.5-10-16_i386 + iodbc_3.52.7-2+deb7u1_i386 + iodine_0.6.0~rc1-12_i386 + iogerman_1:2-28_i386 + iok_2.1.2-1_i386 + ion_3.0.1~dfsg1-1_i386 + ioping_0.6-1_i386 + ioquake3_1.36+svn2287-1_i386 + ioquake3-dbg_1.36+svn2287-1_i386 + ioquake3-server_1.36+svn2287-1_i386 + iotop_0.4.4-4_i386 + ipadic_2.7.0+main-3_i386 + ipband_0.8.1-3_i386 + ipe_7.1.2-1_i386 + ipe5toxml_20051114-1_i386 + iperf_2.0.5-3_i386 + ipfm_0.11.5-4.1_i386 + ipgrab_0.9.10-1_i386 + ipheth-utils_1.0-3+b1_i386 + ipip_1.1.9_i386 + ipkungfu_0.6.1-6_i386 + ipmitool_1.8.11-5_i386 + ippl_1.4.14-12.1_i386 + ippl-dbg_1.4.14-12.1_i386 + ipppd_1:3.25+dfsg1-3.3~deb7u1_i386 + iprint_1.3-9_i386 + iproute_20120521-3+b3_i386 + iproute-dev_20120521-3+b3_i386 + ips_4.0-1_i386 + ipsec-tools_1:0.8.0-14_i386 + ipset_6.12.1-1_i386 + ipsvd_1.0.0-2_i386 + iptables_1.4.14-3.1_i386 + iptables-dev_1.4.14-3.1_i386 + iptotal_0.3.3-13_i386 + iptraf_3.0.0-8.1_i386 + iptstate_2.2.5-1_i386 + iptux_0.5.3-1_i386 + iputils-arping_3:20101006-1+b1_i386 + iputils-clockdiff_3:20101006-1+b1_i386 + iputils-ping_3:20101006-1+b1_i386 + iputils-tracepath_3:20101006-1+b1_i386 + ipv6calc_0.93.1-2_i386 + ipvsadm_1:1.26-1_i386 + ipwatchd_1.2.1-1_i386 + ipwatchd-gnotify_1.0.1-1+b1_i386 + ipx_2.2.6-9_i386 + ir-keytable_0.8.8-3_i386 + ir.lv2_1.3.1~dfsg0-3_i386 + ircd-hybrid_1:7.2.2.dfsg.2-10_i386 + ircd-irc2_2.11.2p2+dfsg-2_i386 + ircd-ircu_2.10.12.10.dfsg1-1.1_i386 + ircd-ratbox_3.0.7.dfsg-3_i386 + ircd-ratbox-dbg_3.0.7.dfsg-3_i386 + ircii_20060725-1_i386 + ircmarkers_0.14-2_i386 + ircp-tray_0.7.6-1.1_i386 + irda-utils_0.9.18-12_i386 + iripdb_0.1.3b-1.1_i386 + iroffer_1.4.b03-3_i386 + irqbalance_1.0.3-3_i386 + irsim_9.7.75-1_i386 + irssi_0.8.15-5_i386 + irssi-dev_0.8.15-5_i386 + irssi-plugin-xmpp_0.52-1_i386 + irssi-plugin-xmpp-dbg_0.52-1_i386 + isakmpd_20041012-7.2_i386 + isatapd_0.9.6-2_i386 + isc-dhcp-client_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-client-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-common_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-dev_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-relay-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-dbg_4.2.2.dfsg.1-5+deb70u6_i386 + isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u6_i386 + iscsitarget_1.4.20.2-10.1_i386 + isdnlog_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-base_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnutils-xtools_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvbox_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxclient_1:3.25+dfsg1-3.3~deb7u1_i386 + isdnvboxserver_1:3.25+dfsg1-3.3~deb7u1_i386 + iselect_1.4.0-1_i386 + isns_2.1-01+dfsg-3_i386 + isns-client_2.1-01+dfsg-3_i386 + isomaster_1.3.9-1_i386 + isomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + isoqlog_2.2.1-8_i386 + ispell_3.3.02-6_i386 + istanbul_0.2.2-9_i386 + istgt_0.4~20111008-3_i386 + iswedish_1.4.5-2.1_i386 + isync_1.0.4-2.2_i386 + italc-client_1:1.0.13-1.4_i386 + italc-master_1:1.0.13-1.4_i386 + itcl3_3.4.1-1_i386 + itcl3-dev_3.4.1-1_i386 + itk3_3.3-4_i386 + itk3-dev_3.3-4_i386 + itksnap_2.2.0-1.1_i386 + itools_1.0-3_i386 + itop_0.1-4_i386 + iukrainian_1.6.5-2_i386 + iverilog_0.9.5-1_i386 + ivtools-bin_1.2.10a1-1_i386 + ivtools-dev_1.2.10a1-1_i386 + iw_3.4-1_i386 + jaaa_0.6.0-2_i386 + jack_3.1.1+cvs20050801-29_i386 + jack-capture_0.9.67-1_i386 + jack-keyboard_2.7.1-1_i386 + jack-mixer_9-3_i386 + jack-rack_1.4.8~rc1-1_i386 + jack-stdio_1.4-1_i386 + jack-tools_20101210-2_i386 + jackd1_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd1-firewire_1:0.121.3+20120418git75e3e20b-2.1_i386 + jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + jackeq_0.5.9-2_i386 + jackmeter_0.4-1_i386 + jacktrip_1.0.5.patch2-1_i386 + jade_1.2.1-47.1+b1_i386 + jags_3.2.0-1_i386 + jalv_1.0.0~dfsg0-2_i386 + jam_2.5rel-1_i386 + jamin_0.97.14~cvs~81203-4_i386 + japa_0.6.0-2_i386 + java2html_0.9.2-4_i386 + jazip_0.34-15.1_i386 + jbig2dec_0.11+20120125-1_i386 + jbigkit-bin_2.0-2_i386 + jblas_1.2.0-4_i386 + jbofihe_0.38-5.1_i386 + jcal_0.4.0-1.1_i386 + jcc_2.13-1_i386 + jclassinfo_0.19.1-6_i386 + jconvolver_0.9.2-1_i386 + jd_1:2.8.5~beta120206-3_i386 + jed_1:0.99.19-2.1_i386 + jeex_12.0.4-1_i386 + jesred_1.2pl1-17_i386 + jester_1.0-9_i386 + jfsutils_1.1.15-2_i386 + jgraph_83-22_i386 + jhbuild_3.4.0-1_i386 + jhead_1:2.95-1_i386 + jigdo-file_0.7.3-3+b1_i386 + jigit_1.19-1_i386 + jigzo_0.6.1-6_i386 + jimsh_0.73-3_i386 + jkmeter_0.6.1-2_i386 + jless_382-iso262-3_i386 + jlint_3.0-4.5_i386 + jmdlx_0.4-6_i386 + jmeters_0.2.1-2_i386 + jnettop_0.13.0-1_i386 + jnoise_0.6.0-3_i386 + jnoisemeter_0.1.0-2_i386 + jocaml_3.12.1-1_i386 + jocaml-base_3.12.1-1_i386 + joe_3.7-2.3_i386 + john_1.7.8-1_i386 + jove_4.16.0.73-1_i386 + jovie_4:4.8.4-2_i386 + jovie-dbg_4:4.8.4-2_i386 + joy2key_1.6.3-1_i386 + joystick_1:1.4.3-1_i386 + jp2a_1.0.6-3.2_i386 + jparse_1.4.0-3_i386 + jpeginfo_1.6.0-5+b1_i386 + jpegjudge_0.0.2-2_i386 + jpegoptim_1.2.3-2+b2_i386 + jpegpixi_1.1.1-4.1_i386 + jpilot_1.8.1.2-1_i386 + jpilot-backup_0.60-3_i386 + jpilot-plugins_1.8.1.2-1_i386 + jpnevulator_1.3.1-1_i386 + js-of-ocaml_1.2-2_i386 + jstest-gtk_0.1.1~git20090722-2_i386 + jstest-gtk-dbg_0.1.1~git20090722-2_i386 + jsvc_1.0.10-3_i386 + juffed_0.8.1-1+b2_i386 + juk_4:4.8.4-2_i386 + juke_0.7-4_i386 + juman_5.1-2.1_i386 + jumpnbump_1.50+dfsg1-3_i386 + jupp_3.1.21-1_i386 + jvim-canna_3.0-2.1b-3_i386 + jwhois_4.0-2.1_i386 + jwm_2.1.0-3_i386 + jzip_210r20001005d-2_i386 + k3b_2.0.2-6_i386 + k3b-dbg_2.0.2-6_i386 + k3d_0.8.0.2-18_i386 + k4dirstat_2.7.3-1_i386 + kaccessible_4:4.8.4-3_i386 + kaccessible-dbg_4:4.8.4-3_i386 + kacpimon_1:2.0.16-1+deb7u1_i386 + kaddressbook_4:4.4.11.1+l10n-3+b1_i386 + kadu_0.11.2-1_i386 + kadu-external-modules_0.11.2-1_i386 + kaffeine_1.2.2-2_i386 + kaffeine-dbg_1.2.2-2_i386 + kakasi_2.3.5~pre1+cvs20071101-1_i386 + kalarm_4:4.4.11.1+l10n-3+b1_i386 + kalgebra_4:4.8.4-1_i386 + kalgebra-common_4:4.8.4-1_i386 + kalgebra-dbg_4:4.8.4-1_i386 + kalgebramobile_4:4.8.4-1_i386 + kali_3.1-11_i386 + kalign_1:2.03+20110620-2_i386 + kalternatives_0.13-2_i386 + kalzium_4:4.8.4-1_i386 + kalzium-dbg_4:4.8.4-1_i386 + kamera_4:4.8.4-2_i386 + kamera-dbg_4:4.8.4-2_i386 + kamerka_0.8.1-1_i386 + kamoso_2.0.2-1+b1_i386 + kanagram_4:4.8.4-1_i386 + kanatest_0.4.8-2.1_i386 + kanjipad_2.0.0-6_i386 + kannel_1.4.3-2+b2_i386 + kannel-dev_1.4.3-2+b2_i386 + kannel-extras_1.4.3-2+b2_i386 + kannel-sqlbox_0.7.2-3+b2_i386 + kapman_4:4.8.4-3_i386 + kapptemplate_4:4.8.4+dfsg-1_i386 + kaptain_1:0.73-1_i386 + karbon_1:2.4.4-3_i386 + karma-tools_0.1.2-2.3_i386 + kasumi_2.5-2_i386 + kate_4:4.8.4-1_i386 + kate-dbg_4:4.8.4-1_i386 + katepart_4:4.8.4-1_i386 + katomic_4:4.8.4-3_i386 + katoob_0.5.9.1-3_i386 + kawari8_8.2.8-7_i386 + kaya_0.4.4-6_i386 + kbackup_0.7.1-3_i386 + kball_0.0.20041216-8+b1_i386 + kbattleship_4:4.8.4-3_i386 + kbd_1.15.3-9_i386 + kbdd_0.6-4_i386 + kbibtex_0.4-4_i386 + kblackbox_4:4.8.4-3_i386 + kblocks_4:4.8.4-3_i386 + kbounce_4:4.8.4-3_i386 + kbreakout_4:4.8.4-3_i386 + kbruch_4:4.8.4-1_i386 + kbruch-dbg_4:4.8.4-1_i386 + kbuild_1:0.1.9998svn2543+dfsg-1_i386 + kcachegrind_4:4.8.4+dfsg-1_i386 + kcalc_4:4.8.4-2_i386 + kcc_2.3-12_i386 + kcharselect_4:4.8.4-2_i386 + kcheckers_0.8.1-3_i386 + kchmviewer_5.3-1_i386 + kcollectd_0.9-2.1+b1_i386 + kcolorchooser_4:4.8.4-1_i386 + kcometen4_1.0.7-1_i386 + kcov_4-2_i386 + kdbg_2.5.1-1_i386 + kdc2tiff_0.35-8+b1_i386 + kde-baseapps-bin_4:4.8.4-2_i386 + kde-baseapps-dbg_4:4.8.4-2_i386 + kde-config-cddb_4:4.8.4-2_i386 + kde-config-cron_4:4.8.4-3_i386 + kde-config-fcitx_0.3.4-1_i386 + kde-config-gtk-style_3:2.1-1_i386 + kde-config-tablet_1.3.6-1_i386 + kde-config-telepathy-accounts_0.4.0-1_i386 + kde-config-telepathy-accounts-dbg_0.4.0-1_i386 + kde-notification-colibri_0.2.2-1_i386 + kde-plasma-desktop_5:77+deb7u1_i386 + kde-plasma-netbook_5:77+deb7u1_i386 + kde-runtime_4:4.8.4-2_i386 + kde-runtime-dbg_4:4.8.4-2_i386 + kde-style-bespin_0.r1552-1_i386 + kde-style-oxygen_4:4.8.4-6_i386 + kde-style-polyester_2.0.0-3_i386 + kde-style-qtcurve_1.8.12-2_i386 + kde-telepathy-approver_0.4.0-1_i386 + kde-telepathy-approver-dbg_0.4.0-1_i386 + kde-telepathy-auth-handler_0.4.0-1_i386 + kde-telepathy-auth-handler-dbg_0.4.0-1_i386 + kde-telepathy-call-ui_0.4.0-1_i386 + kde-telepathy-call-ui-dbg_0.4.0-1_i386 + kde-telepathy-contact-list_0.4.0-1_i386 + kde-telepathy-contact-list-dbg_0.4.0-1_i386 + kde-telepathy-filetransfer-handler_0.4.0-1_i386 + kde-telepathy-filetransfer-handler-dbg_0.4.0-1_i386 + kde-telepathy-integration-module_0.4.0-1_i386 + kde-telepathy-integration-module-dbg_0.4.0-1_i386 + kde-telepathy-send-file_0.4.0-1_i386 + kde-telepathy-send-file-dbg_0.4.0-1_i386 + kde-telepathy-text-ui_0.4.0-1_i386 + kde-telepathy-text-ui-dbg_0.4.0-1_i386 + kde-thumbnailer-deb_1.3.0-2_i386 + kde-window-manager_4:4.8.4-6_i386 + kde-workspace-bin_4:4.8.4-6_i386 + kde-workspace-dbg_4:4.8.4-6_i386 + kde-workspace-dev_4:4.8.4-6_i386 + kde-workspace-kgreet-plugins_4:4.8.4-6_i386 + kde-zeroconf_4:4.8.4-1+b1_i386 + kdeadmin-dbg_4:4.8.4-3_i386 + kdeartwork-dbg_4:4.8.4-5_i386 + kdeartwork-style_4:4.8.4-5_i386 + kdeartwork-theme-window_4:4.8.4-5_i386 + kdebase-workspace-dbg_4:4.8.4-6_i386 + kdegames-dbg_4:4.8.4-3_i386 + kdegraphics-mobipocket_4:4.8.4-1_i386 + kdegraphics-strigi-analyzer_4:4.8.4-1_i386 + kdegraphics-thumbnailers_4:4.8.4-1_i386 + kdelibs-bin_4:4.8.4-4_i386 + kdelibs5-dbg_4:4.8.4-4_i386 + kdelibs5-dev_4:4.8.4-4_i386 + kdelibs5-plugins_4:4.8.4-4_i386 + kdemultimedia-dbg_4:4.8.4-2_i386 + kdemultimedia-dev_4:4.8.4-2_i386 + kdemultimedia-kio-plugins_4:4.8.4-2_i386 + kdenetwork-dbg_4:4.8.4-1+b1_i386 + kdenetwork-filesharing_4:4.8.4-1+b1_i386 + kdenlive_0.9.2-2_i386 + kdenlive-dbg_0.9.2-2_i386 + kdepasswd_4:4.8.4-2_i386 + kdepim-dbg_4:4.4.11.1+l10n-3+b1_i386 + kdepim-groupware_4:4.4.11.1+l10n-3+b1_i386 + kdepim-kresources_4:4.4.11.1+l10n-3+b1_i386 + kdepim-runtime_4:4.4.11.1-6_i386 + kdepim-runtime-dbg_4:4.4.11.1-6_i386 + kdepim-strigi-plugins_4:4.4.11.1+l10n-3+b1_i386 + kdepim-wizards_4:4.4.11.1+l10n-3+b1_i386 + kdepimlibs-dbg_4:4.8.4-2_i386 + kdepimlibs-kio-plugins_4:4.8.4-2_i386 + kdepimlibs5-dev_4:4.8.4-2_i386 + kdeplasma-addons-dbg_4:4.8.4-1+b2_i386 + kdesdk-dbg_4:4.8.4+dfsg-1_i386 + kdesdk-dolphin-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-kio-plugins_4:4.8.4+dfsg-1_i386 + kdesdk-misc_4:4.8.4+dfsg-1_i386 + kdesdk-strigi-plugins_4:4.8.4+dfsg-1_i386 + kdesudo_3.4.2.4-2_i386 + kdesvn_1.5.5-4.1_i386 + kdesvn-dbg_1.5.5-4.1_i386 + kdesvn-kio-plugins_1.5.5-4.1_i386 + kdetoys-dbg_4:4.8.4-1_i386 + kdevelop_4:4.3.1-3+b1_i386 + kdevelop-dbg_4:4.3.1-3+b1_i386 + kdevelop-dev_4:4.3.1-3+b1_i386 + kdevelop-pg-qt_1.0.0-2_i386 + kdevelop-php_1.3.1-2_i386 + kdevelop-php-dbg_1.3.1-2_i386 + kdevelop-php-docs_1.3.1-2_i386 + kdevplatform-dbg_1.3.1-2_i386 + kdevplatform-dev_1.3.1-2_i386 + kdevplatform5-libs_1.3.1-2_i386 + kdewebdev-dbg_4:4.8.4-1_i386 + kdf_4:4.8.4-1_i386 + kdiamond_4:4.8.4-3_i386 + kdiff3_0.9.96-4_i386 + kdiff3-qt_0.9.96-4_i386 + kdm_4:4.8.4-6_i386 + kdocker_4.6-2_i386 + kdoctools_4:4.8.4-4_i386 + kdrill_6.5deb2-8_i386 + keepalived_1:1.2.2-3_i386 + keepassx_0.4.3+dfsg-0.1_i386 + kelbt_0.15-1_i386 + kerneltop_0.8-2.1_i386 + ketm_0.0.6-22_i386 + keurocalc_1.2.0-1_i386 + kexec-tools_1:2.0.3-1+deb7u1_i386 + kexi_1:2.4.4-3_i386 + kexi-calligrasheets-driver_1:2.4.4-3_i386 + kexi-map-form-widget_1:2.4.4-3_i386 + kexi-mysql-driver_1:2.4.4-3_i386 + kexi-postgresql-driver_1:2.4.4-3_i386 + kexi-sybase-driver_1:2.4.4-3_i386 + kexi-web-form-widget_1:2.4.4-3_i386 + kexi-xbase-driver_1:2.4.4-3_i386 + keylaunch_1.3.9_i386 + keynav_0.20110708.0-1_i386 + keytouch-editor_1:3.2.0~beta-3_i386 + keyutils_1.5.5-3_i386 + keyutils-dbg_1.5.5-3_i386 + kfilereplace_4:4.8.4-1_i386 + kfind_4:4.8.4-2_i386 + kfloppy_4:4.8.4-1_i386 + kfourinline_4:4.8.4-3_i386 + kfreebsd-headers-486_9+1_i386 + kfreebsd-headers-686_9+1_i386 + kfreebsd-headers-8-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-headers-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-headers-9-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-headers-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-headers-xen_9+1_i386 + kfreebsd-image-486_9+1_i386 + kfreebsd-image-686_9+1_i386 + kfreebsd-image-8-486_8.3-6+deb7u1_i386 + kfreebsd-image-8-686_8.3-6+deb7u1_i386 + kfreebsd-image-8-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8-xen_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-486_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-686-smp_8.3-6+deb7u1_i386 + kfreebsd-image-8.3-1-xen_8.3-6+deb7u1_i386 + kfreebsd-image-9-486_9.0-10+deb70.6_i386 + kfreebsd-image-9-686_9.0-10+deb70.6_i386 + kfreebsd-image-9-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9-xen_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-486_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-686-smp_9.0-10+deb70.6_i386 + kfreebsd-image-9.0-2-xen_9.0-10+deb70.6_i386 + kfreebsd-image-xen_9+1_i386 + kftpgrabber_0.8.99~svn1214766-1_i386 + kgamma_4:4.8.4-2_i386 + kgb_1.0b4+ds-13.2_i386 + kgeography_4:4.8.4-1_i386 + kget_4:4.8.4-1+b1_i386 + kgoldrunner_4:4.8.4-3_i386 + kgpg_4:4.8.4-4_i386 + kgpg-dbg_4:4.8.4-4_i386 + khangman_4:4.8.4-1_i386 + khelpcenter4_4:4.8.4-2_i386 + kicad_0.20120526+bzr3261-1_i386 + kid3_2.1-2_i386 + kid3-qt_2.1-2_i386 + kig_4:4.8.4-1_i386 + kigo_4:4.8.4-3_i386 + kiki-the-nano-bot_1.0.2+dfsg1-4+b1_i386 + kildclient_2.11.1-1+b1_i386 + kile_1:2.1.0-1_i386 + killbots_4:4.8.4-3_i386 + kimagemapeditor_4:4.8.4-1_i386 + kimwitu_4.6.1-7.1_i386 + kimwitu++_2.3.13-2_i386 + kinfocenter_4:4.8.4-6_i386 + kino_1.3.4-1.3_i386 + kinput2-canna_3.1-10.3_i386 + kinput2-canna-wnn_3.1-10.3_i386 + kinput2-wnn_3.1-10.3_i386 + kio-ftps_0.2+dfsg-2+b1_i386 + kio-gopher_0.1.4-1_i386 + kipi-plugins_4:2.6.0-1+b2_i386 + kiriki_4:4.8.4-3_i386 + kism3d_0.2.2-8_i386 + kiten_4:4.8.4-1_i386 + kiten-dbg_4:4.8.4-1_i386 + kjots_4:4.4.11.1+l10n-3+b1_i386 + kjumpingcube_4:4.8.4-3_i386 + klash_0.8.11~git20120629-1+deb7u1_i386 + klatexformula_3.2.6-1_i386 + klavaro_1.9.4-2_i386 + kleopatra_4:4.4.11.1+l10n-3+b1_i386 + klettres_4:4.8.4-1_i386 + klibc-utils_2.0.1-3.1_i386 + klick_0.12.2-1+b2_i386 + klickety_4:4.8.4-3_i386 + klines_4:4.8.4-3_i386 + klinkstatus_4:4.8.4-1_i386 + klipper_4:4.8.4-6_i386 + klog_0.5.9-1_i386 + kluppe_0.6.14-1+b2_i386 + klustakwik_2.0.1-1_i386 + kmag_4:4.8.4-3_i386 + kmag-dbg_4:4.8.4-3_i386 + kmahjongg_4:4.8.4-3_i386 + kmail_4:4.4.11.1+l10n-3+b1_i386 + kmenuedit_4:4.8.4-6_i386 + kmess_2.0.6.1-3_i386 + kmetronome_0.10.1-1_i386 + kmflcomp_0.9.8-1_i386 + kmidimon_0.7.4-2_i386 + kmines_4:4.8.4-3_i386 + kmix_4:4.8.4-2_i386 + kmldonkey_2.0.5+kde4.3.3-2_i386 + kmod_9-3_i386 + kmousetool_4:4.8.4-3_i386 + kmousetool-dbg_4:4.8.4-3_i386 + kmouth_4:4.8.4-3_i386 + kmouth-dbg_4:4.8.4-3_i386 + kmplayer_1:0.11.3c-1_i386 + kmplot_4:4.8.4-2_i386 + kmtrace_4:4.8.4+dfsg-1_i386 + kmymoney_4.6.2-3.2_i386 + kmymoney-dbg_4.6.2-3.2_i386 + kmymoney-dev_4.6.2-3.2_i386 + knemo_0.7.3-1_i386 + knetwalk_4:4.8.4-3_i386 + knews_1.0b.1-28_i386 + knights_2.3.2-1_i386 + knockd_0.5-3_i386 + knocker_0.7.1-4_i386 + knode_4:4.4.11.1+l10n-3+b1_i386 + knotes_4:4.4.11.1+l10n-3+b1_i386 + ko.tex-bin_0.1.0+20071012-1.1_i386 + kobodeluxe_0.5.1-6_i386 + kolabadmin_0.0.20080222-4_i386 + kolf_4:4.8.4-3_i386 + kollision_4:4.8.4-3_i386 + kolourpaint4_4:4.8.4-1_i386 + komi_1.04-5_i386 + kommander_4:4.8.4-1_i386 + komparator_4:0.6-1_i386 + kompare_4:4.8.4+dfsg-1_i386 + kon2_0.3.9b-20_i386 + konq-plugins_4:4.8.4-2_i386 + konqueror_4:4.8.4-2_i386 + konqueror-nsplugins_4:4.8.4-2_i386 + konqueror-plugin-gnash_0.8.11~git20120629-1+deb7u1_i386 + konquest_4:4.8.4-3_i386 + konsole_4:4.8.4-2_i386 + konsole-dbg_4:4.8.4-2_i386 + konsolekalendar_4:4.4.11.1+l10n-3+b1_i386 + kontact_4:4.4.11.1+l10n-3+b1_i386 + konversation_1.4-1_i386 + konversation-dbg_1.4-1_i386 + konwert_1.8-11.2_i386 + kopete_4:4.8.4-1+b1_i386 + korganizer_4:4.4.11.1+l10n-3+b1_i386 + kosd_0.8.1-1_i386 + koules_1.4-19_i386 + kover_1:4-7+b1_i386 + kpart-webkit_1.3~git20120518.9a111005-3_i386 + kpart-webkit-dbg_1.3~git20120518.9a111005-3_i386 + kpartloader_4:4.8.4+dfsg-1_i386 + kpartsplugin_20120605-1_i386 + kpartx_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + kpat_4:4.8.4-3_i386 + kphotoalbum_4.2-1+b1_i386 + kplayer_1:0.7-2.1_i386 + kplayer-dbg_1:0.7-2.1_i386 + kppp_4:4.8.4-1+b1_i386 + kradio4_4.0.4-1_i386 + kraft_0.45-2_i386 + kraptor_0.0.20040403-6+b1_i386 + krb5-admin-server_1.10.1+dfsg-5+deb7u1_i386 + krb5-auth-dialog_3.2.1-1+deb7u1_i386 + krb5-clients_1:1.0.1-4_i386 + krb5-ftpd_1:1.0.1-4_i386 + krb5-gss-samples_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc_1.10.1+dfsg-5+deb7u1_i386 + krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_i386 + krb5-multidev_1.10.1+dfsg-5+deb7u1_i386 + krb5-pkinit_1.10.1+dfsg-5+deb7u1_i386 + krb5-rsh-server_1:1.0.1-4_i386 + krb5-sync-plugin_2.2-3_i386 + krb5-sync-tools_2.2-3_i386 + krb5-telnetd_1:1.0.1-4_i386 + krb5-user_1.10.1+dfsg-5+deb7u1_i386 + krdc_4:4.8.4-1+b1_i386 + krecipes_2.0~beta2-3_i386 + krecipes-dbg_2.0~beta2-3_i386 + kredentials_2.0~pre3-1.1_i386 + kremotecontrol_4:4.8.4-3_i386 + kremotecontrol-dbg_4:4.8.4-3_i386 + krename_4.0.9-1+b1_i386 + kreversi_4:4.8.4-3_i386 + krfb_4:4.8.4-1+b1_i386 + krita_1:2.4.4-3_i386 + krosspython_4:4.8.4-1_i386 + kruler_4:4.8.4-1_i386 + krusader_1:2.3.0~beta1-1+wheezy3_i386 + krusader-dbg_1:2.3.0~beta1-1+wheezy3_i386 + ksaneplugin_4:4.8.4-1_i386 + kscd_4:4.8.4-2_i386 + kscope_1.9.4-2_i386 + kscreensaver_4:4.8.4-5_i386 + kscreensaver-xsavers_4:4.8.4-5_i386 + ksh_93u+-1.2_i386 + kshisen_4:4.8.4-3_i386 + kshutdown_3.0~beta4-1_i386 + ksirk_4:4.8.4-3_i386 + ksnapshot_4:4.8.4-1_i386 + kspaceduel_4:4.8.4-3_i386 + ksplice_0.9.9-4_i386 + ksquares_4:4.8.4-3_i386 + ksshaskpass_0.5.3-1+b1_i386 + kst_2.0.3-1.3_i386 + kstars_4:4.8.4-1_i386 + kstart_4.1-2_i386 + ksudoku_4:4.8.4-3_i386 + ksysguard_4:4.8.4-6_i386 + ksysguardd_4:4.8.4-6_i386 + ksystemlog_4:4.8.4-3_i386 + kteatime_4:4.8.4-1_i386 + kterm_6.2.0-46_i386 + kthesaurus_1:2.4.4-3_i386 + ktikz_0.10-3_i386 + ktimer_4:4.8.4-1_i386 + ktimetracker_4:4.4.11.1+l10n-3+b1_i386 + ktoblzcheck_1.39-1_i386 + ktorrent_4.2.1-1_i386 + ktorrent-dbg_4.2.1-1_i386 + ktouch_4:4.8.4-1_i386 + ktron_4:4.8.4-3_i386 + ktuberling_4:4.8.4-3_i386 + kturtle_4:4.8.4-1_i386 + ktux_4:4.8.4-1_i386 + kubrick_4:4.8.4-3_i386 + kuipc_20061220+dfsg3-2_i386 + kuiviewer_4:4.8.4+dfsg-1_i386 + kumofs_0.4.13-5_i386 + kuser_4:4.8.4-3_i386 + kuvert_2.0.6_i386 + kvirc_4:4.1.3+20111124.svn5988-2_i386 + kvirc-dbg_4:4.1.3+20111124.svn5988-2_i386 + kvirc-modules_4:4.1.3+20111124.svn5988-2_i386 + kvkbd_1:0.6-3_i386 + kvm_1:1.1.2+dfsg-6_i386 + kvpm_0.8.6-2+deb7u1_i386 + kvpm-dbg_0.8.6-2+deb7u1_i386 + kvpnc_0.9.6a-2.1_i386 + kvpnc-dbg_0.9.6a-2.1_i386 + kwalletcli_2.11-2_i386 + kwalletmanager_4:4.8.4-3_i386 + kwalletmanager-dbg_4:4.8.4-3_i386 + kwave_0.8.8-1-3_i386 + kwave-dbg_0.8.8-1-3_i386 + kwin-style-crystal_2.0.5-2_i386 + kwin-style-dekorator_0.5.1-1_i386 + kwin-style-qtcurve_1.8.12-2_i386 + kwordquiz_4:4.8.4-1_i386 + kwrite_4:4.8.4-1_i386 + kwstyle_1.0.0+cvs20120330-3_i386 + kxterm_20061220+dfsg3-2_i386 + l2tp-ipsec-vpn_1.0.9-1_i386 + l2tp-ipsec-vpn-daemon_0.9.9-1_i386 + l2tpns_2.1.21-1.1_i386 + l7-filter-userspace_0.12-beta1-1_i386 + labrea_2.5-stable-3_i386 + laby_0.6.3-1_i386 + lacheck_1.26-14_i386 + ladish_1+dfsg0-3_i386 + ladish-dbg_1+dfsg0-3_i386 + ladr4-apps_0.0.200902a-2.1_i386 + ladspa-sdk_1.13-1_i386 + ladvd_0.9.2-2_i386 + laevateinn_0.088-5_i386 + lakai_0.1-1_i386 + lam-runtime_7.1.4-3_i386 + lam4-dev_7.1.4-3_i386 + lambdabot_4.2.3.2-4_i386 + lame_3.99.5+repack1-3_i386 + lammps_0~20120615.gite442279-1_i386 + langdrill_0.3-7_i386 + laptop-detect_0.13.7_i386 + larswm_7.5.3-6_i386 + last-align_199-1_i386 + lastfm_1:1.5.4.27091+dfsg1-1_i386 + latd_1.32_i386 + late_0.1.0-12_i386 + latencytop_0.5_i386 + latex-cjk-chinese_4.8.3+git20120621-1_i386 + latex-cjk-common_4.8.3+git20120621-1_i386 + latex-cjk-japanese_4.8.3+git20120621-1_i386 + latex-sanskrit_2.2-9_i386 + latex2rtf_1.9.19-4.2_i386 + latexila_2.4.0-1_i386 + latrace_0.5.11-1_i386 + launchtool_0.8-2_i386 + launchy_2.5-1_i386 + launchy-plugins_2.5-1_i386 + lazarus-ide_0.9.30.4-6_i386 + lazarus-ide-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-gtk2_0.9.30.4-6_i386 + lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_i386 + lazarus-ide-qt4_0.9.30.4-6_i386 + lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_i386 + lbcd_3.3.0-1_i386 + lbdb_0.38_i386 + lbreakout2_2.6.3-1_i386 + lbt_1.2.2-5_i386 + lcab_1.0b12-5_i386 + lcalc_0.0.20080205-1.2_i386 + lcd4linux_0.11.0~svn1189-1+b1_i386 + lcdf-typetools_2.92+dfsg1-0.1~deb7u1_i386 + lcdproc_0.5.5-2_i386 + lcdproc-dbg_0.5.5-2_i386 + lcdproc-extra-drivers_0.5.5-2_i386 + lcgdm-dbg_1.8.2-1+b2_i386 + lcl_0.9.30.4-6_i386 + lcl-0.9.30.4_0.9.30.4-6_i386 + lcl-gtk2_0.9.30.4-6_i386 + lcl-gtk2-0.9.30.4_0.9.30.4-6_i386 + lcl-nogui_0.9.30.4-6_i386 + lcl-nogui-0.9.30.4_0.9.30.4-6_i386 + lcl-qt4_0.9.30.4-6_i386 + lcl-qt4-0.9.30.4_0.9.30.4-6_i386 + lcl-units_0.9.30.4-6_i386 + lcl-units-0.9.30.4_0.9.30.4-6_i386 + lcl-utils_0.9.30.4-6_i386 + lcl-utils-0.9.30.4_0.9.30.4-6_i386 + lcrack_20040914-1_i386 + lcrt_1.1.2-1_i386 + ld10k1_1.0.25-2_i386 + ldap-utils_2.4.31-1+nmu2_i386 + ldap2dns_0.3.1-3.1_i386 + ldap2zone_0.2-3.1_i386 + ldapvi_1.7-9_i386 + ldb-tools_1:1.1.6-1_i386 + ldm_2:2.2.11-2_i386 + ldnsutils_1.6.13-1_i386 + le_1.14.3-2_i386 + le-dico-de-rene-cougnenc_1.3-2.1_i386 + leafnode_1.11.8-3_i386 + leafpad_0.8.18.1-3_i386 + leaktracer_2.4-5_i386 + leave_1.12-2.1_i386 + lebiniou_3.18-1_i386 + ledger_2.6.2-3.1_i386 + ledmon_0.32-1_i386 + lekhonee-gnome_0.11-3_i386 + leksah_0.12.0.3-3_i386 + leksah-server_0.12.0.4-3_i386 + lemon_3.7.13-1+deb7u1_i386 + leptonica-progs_1.69-3.1_i386 + less_444-4_i386 + lesstif-bin_1:0.95.2-1.1_i386 + lesstif2_1:0.95.2-1.1_i386 + lesstif2-dbg_1:0.95.2-1.1_i386 + lesstif2-dev_1:0.95.2-1.1_i386 + letterize_1.3-3_i386 + levee_3.5a-3_i386 + lfc_1.8.2-1+b2_i386 + lfc-dli_1.8.2-1+b2_i386 + lfc-server-mysql_1.8.2-1+b2_i386 + lfc-server-postgres_1.8.2-1+b2_i386 + lfhex_0.42-3.1_i386 + lft_2.2-4_i386 + lftp_4.3.6-1+deb7u2_i386 + lhasa_0.0.7-2_i386 + lhs2tex_1.17-1_i386 + lib3ds-1-3_1.3.0-6_i386 + lib3ds-dev_1.3.0-6_i386 + lib4store-dev_1.1.4-2_i386 + lib4store0_1.1.4-2_i386 + lib64bz2-1.0_1.0.6-4_i386 + lib64bz2-dev_1.0.6-4_i386 + lib64expat1_2.1.0-1+deb7u1_i386 + lib64expat1-dev_2.1.0-1+deb7u1_i386 + lib64ffi-dev_3.0.10-3_i386 + lib64ffi5_3.0.10-3_i386 + lib64gcc1_1:4.7.2-5_i386 + lib64gcc1-dbg_1:4.7.2-5_i386 + lib64gfortran3_4.7.2-5_i386 + lib64gfortran3-dbg_4.7.2-5_i386 + lib64go0_4.7.2-5_i386 + lib64go0-dbg_4.7.2-5_i386 + lib64gomp1_4.7.2-5_i386 + lib64gomp1-dbg_4.7.2-5_i386 + lib64itm1_4.7.2-5_i386 + lib64itm1-dbg_4.7.2-5_i386 + lib64mudflap0_4.7.2-5_i386 + lib64mudflap0-dbg_4.7.2-5_i386 + lib64ncurses5_5.9-10_i386 + lib64ncurses5-dev_5.9-10_i386 + lib64objc3_4.6.3-14_i386 + lib64objc3-dbg_4.6.3-14_i386 + lib64objc4_4.7.2-5_i386 + lib64objc4-dbg_4.7.2-5_i386 + lib64quadmath0_4.7.2-5_i386 + lib64quadmath0-dbg_4.7.2-5_i386 + lib64readline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + lib64readline5_5.2+dfsg-2~deb7u1_i386 + lib64readline6_6.2+dfsg-0.1_i386 + lib64readline6-dev_6.2+dfsg-0.1_i386 + lib64stdc++6_4.7.2-5_i386 + lib64stdc++6-4.4-dbg_4.4.7-2_i386 + lib64stdc++6-4.6-dbg_4.6.3-14_i386 + lib64stdc++6-4.7-dbg_4.7.2-5_i386 + lib64tinfo5_5.9-10_i386 + lib64z1_1:1.2.7.dfsg-13_i386 + lib64z1-dev_1:1.2.7.dfsg-13_i386 + liba52-0.7.4_0.7.4-16_i386 + liba52-0.7.4-dev_0.7.4-16_i386 + libaa-bin_1.4p5-40_i386 + libaa1_1.4p5-40_i386 + libaa1-dbg_1.4p5-40_i386 + libaa1-dev_1.4p5-40_i386 + libaac-tactics-ocaml_0.2.pl2-7_i386 + libaac-tactics-ocaml-dev_0.2.pl2-7_i386 + libaacs-dev_0.4.0-1_i386 + libaacs0_0.4.0-1_i386 + libaal-dev_1.0.5-5.1_i386 + libabiword-2.9_2.9.2+svn20120603-8_i386 + libabiword-2.9-dev_2.9.2+svn20120603-8_i386 + libaccess-bridge-java-jni_1.26.2-9_i386 + libaccountsservice-dbg_0.6.21-8_i386 + libaccountsservice-dev_0.6.21-8_i386 + libaccountsservice0_0.6.21-8_i386 + libace-6.0.3_6.0.3+dfsg-0.1_i386 + libace-dev_6.0.3+dfsg-0.1_i386 + libace-flreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-flreactor-dev_6.0.3+dfsg-0.1_i386 + libace-foxreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-foxreactor-dev_6.0.3+dfsg-0.1_i386 + libace-htbp-6.0.3_6.0.3+dfsg-0.1_i386 + libace-htbp-dev_6.0.3+dfsg-0.1_i386 + libace-inet-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-dev_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-inet-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-perl_1.92-2+b2_i386 + libace-qtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-qtreactor-dev_6.0.3+dfsg-0.1_i386 + libace-rmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-rmcast-dev_6.0.3+dfsg-0.1_i386 + libace-ssl-6.0.3_6.0.3+dfsg-0.1_i386 + libace-ssl-dev_6.0.3+dfsg-0.1_i386 + libace-tkreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tkreactor-dev_6.0.3+dfsg-0.1_i386 + libace-tmcast-6.0.3_6.0.3+dfsg-0.1_i386 + libace-tmcast-dev_6.0.3+dfsg-0.1_i386 + libace-xtreactor-6.0.3_6.0.3+dfsg-0.1_i386 + libace-xtreactor-dev_6.0.3+dfsg-0.1_i386 + libacexml-6.0.3_6.0.3+dfsg-0.1_i386 + libacexml-dev_6.0.3+dfsg-0.1_i386 + libacl1_2.2.51-8_i386 + libacl1-dev_2.2.51-8_i386 + libacme-damn-perl_0.05-1_i386 + libacpi-dev_0.2-4_i386 + libacpi0_0.2-4_i386 + libacr38u_1.7.11-1_i386 + libacr38ucontrol-dev_1.7.11-1_i386 + libacr38ucontrol0_1.7.11-1_i386 + libacsccid1_1.0.3-1_i386 + libactiviz.net-cil_1:1.0~git20111123-6_i386 + libadasockets4_1.8.10-2_i386 + libadasockets4-dev_1.8.10-2_i386 + libaddresses-dev_0.4.7-1+b5_i386 + libaddresses0_0.4.7-1+b5_i386 + libaddressview-dev_0.4.7-1+b5_i386 + libaddressview0_0.4.7-1+b5_i386 + libadios-dev_1.3-11_i386 + libadminutil-data_1.1.15-1_i386 + libadminutil-dev_1.1.15-1_i386 + libadminutil0_1.1.15-1_i386 + libadns1_1.4-2_i386 + libadns1-dev_1.4-2_i386 + libadolc-dev_2.3.0-1_i386 + libadolc2_2.3.0-1_i386 + libadplug-2.2.1-0_2.2.1+dfsg3-0.1_i386 + libadplug-dev_2.2.1+dfsg3-0.1_i386 + libafflib-dev_3.6.6-1.1+b1_i386 + libafflib0_3.6.6-1.1+b1_i386 + libafrodite-0.12-2_0.12.1-3_i386 + libafrodite-0.12-2-dbg_0.12.1-3_i386 + libafrodite-0.12-dev_0.12.1-3_i386 + libafsauthent1_1.6.1-3+deb7u1_i386 + libafsrpc1_1.6.1-3+deb7u1_i386 + libafterimage-dev_2.2.11-7_i386 + libafterimage0_2.2.11-7_i386 + libafterstep1_2.2.11-7_i386 + libagg-dev_2.5+dfsg1-8_i386 + libagrep-ocaml_1.0-11+b3_i386 + libagrep-ocaml-dev_1.0-11+b3_i386 + libahven21.0_2.1-4_i386 + libahven3-dev_2.1-4_i386 + libai-fann-perl_0.10-1_i386 + libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386 + libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386 + libaio-dev_0.3.109-3_i386 + libaio1_0.3.109-3_i386 + libaio1-dbg_0.3.109-3_i386 + libakonadi-calendar4_4:4.8.4-2_i386 + libakonadi-contact4_4:4.8.4-2_i386 + libakonadi-dev_1.7.2-3_i386 + libakonadi-kabc4_4:4.8.4-2_i386 + libakonadi-kcal4_4:4.8.4-2_i386 + libakonadi-kde4_4:4.8.4-2_i386 + libakonadi-kmime4_4:4.8.4-2_i386 + libakonadi-notes4_4:4.8.4-2_i386 + libakonadiprotocolinternals1_1.7.2-3_i386 + libalberta2_2.0.1-5_i386 + libalberta2-dbg_2.0.1-5_i386 + libalberta2-dev_2.0.1-5_i386 + libaldmb1_1:0.9.3-5.4_i386 + libaldmb1-dev_1:0.9.3-5.4_i386 + libalglib-2.6.0_2.6.0-6_i386 + libalglib-2.6.0-dbg_2.6.0-6_i386 + libalglib-dev_2.6.0-6_i386 + libalgorithm-combinatorics-perl_0.26-1_i386 + libalgorithm-diff-xs-perl_0.04-2+b1_i386 + libalgorithm-permute-perl_0.12-1+b2_i386 + libalias-perl_2.32-9+b1_i386 + libalien-wxwidgets-perl_0.59+dfsg-1_i386 + libalkimia-dev_4.3.2-1.1_i386 + libalkimia4_4.3.2-1.1_i386 + liballeggl4-dev_2:4.4.2-2.1_i386 + liballeggl4.4_2:4.4.2-2.1_i386 + liballegro4.2-dev_2:4.4.2-2.1_i386 + liballegro4.4_2:4.4.2-2.1_i386 + liballegro4.4-plugin-alsa_2:4.4.2-2.1_i386 + libalog0.4.1-base_0.4.1-2_i386 + libalog0.4.1-base-dbg_0.4.1-2_i386 + libalog0.4.1-base-dev_0.4.1-2_i386 + libalog0.4.1-full_0.4.1-2_i386 + libalog0.4.1-full-dbg_0.4.1-2_i386 + libalog0.4.1-full-dev_0.4.1-2_i386 + libalsa-ocaml_0.2.1-1+b1_i386 + libalsa-ocaml-dev_0.2.1-1+b1_i386 + libalsaplayer-dev_0.99.80-5.1_i386 + libalsaplayer0_0.99.80-5.1_i386 + libalure-dev_1.2-6_i386 + libalure1_1.2-6_i386 + libalut-dev_1.1.0-3_i386 + libalut0_1.1.0-3_i386 + libamd2.2.0_1:3.4.0-3_i386 + libamu-dev_6.2+rc20110530-3_i386 + libamu4_6.2+rc20110530-3_i386 + libanalitza-dbg_4:4.8.4-2_i386 + libanalitza-dev_4:4.8.4-2_i386 + libanalitza4abi1_4:4.8.4-2_i386 + libanalitzagui4_4:4.8.4-2_i386 + libanet0.1_0.1-3_i386 + libanet0.1-dbg_0.1-3_i386 + libanet0.1-dev_0.1-3_i386 + libanjuta-3-0_2:3.4.3-1_i386 + libanjuta-dev_2:3.4.3-1_i386 + libann-dev_1.1.2+doc-3_i386 + libann0_1.1.2+doc-3_i386 + libanthy-dev_9100h-16_i386 + libanthy0_9100h-16_i386 + libantlr-dev_2.7.7+dfsg-4_i386 + libantlr3c-3.2-0_3.2-2_i386 + libantlr3c-antlrdbg-3.2-0_3.2-2_i386 + libantlr3c-dev_3.2-2_i386 + libanyevent-perl_7.010-1_i386 + libao-common_1.1.0-2_i386 + libao-dbg_1.1.0-2_i386 + libao-dev_1.1.0-2_i386 + libao-ocaml_0.2.0-1+b2_i386 + libao-ocaml-dev_0.2.0-1+b2_i386 + libao4_1.1.0-2_i386 + libaosd-dev_0.2.7-1_i386 + libaosd-text2_0.2.7-1_i386 + libaosd2_0.2.7-1_i386 + libapache-authenhook-perl_2.00-04+pristine-2+b2_i386 + libapache-db-perl_0.14-3+b1_i386 + libapache2-authenntlm-perl_0.02-5+b3_i386 + libapache2-mod-apparmor_2.7.103-4_i386 + libapache2-mod-apreq2_2.13-1+b2_i386 + libapache2-mod-auth-cas_1.0.9.1-2_i386 + libapache2-mod-auth-kerb_5.4-2_i386 + libapache2-mod-auth-memcookie_1.0.2-5_i386 + libapache2-mod-auth-mysql_4.3.9-13.1+b1_i386 + libapache2-mod-auth-ntlm-winbind_0.0.0.lorikeet+svn+801-1_i386 + libapache2-mod-auth-openid_0.7-0.1_i386 + libapache2-mod-auth-pam_1.1.1-9_i386 + libapache2-mod-auth-pgsql_2.0.3-5_i386 + libapache2-mod-auth-plain_2.0.51_i386 + libapache2-mod-auth-pubtkt_0.7-1_i386 + libapache2-mod-auth-radius_1.5.8-1.1_i386 + libapache2-mod-auth-sys-group_1.1.1-9_i386 + libapache2-mod-auth-tkt_2.1.0-6_i386 + libapache2-mod-authn-sasl_1.2-1_i386 + libapache2-mod-authn-webid_0~20110301-1_i386 + libapache2-mod-authn-yubikey_1.0-1_i386 + libapache2-mod-authnz-external_3.2.4-2.1_i386 + libapache2-mod-authz-unixgroup_1.0.2-1_i386 + libapache2-mod-bw_0.92-6_i386 + libapache2-mod-dacs_1.4.27b-2_i386 + libapache2-mod-defensible_1.4-3_i386 + libapache2-mod-dnssd_0.6-3_i386 + libapache2-mod-encoding_20040616-5.1_i386 + libapache2-mod-evasive_1.10.1-1_i386 + libapache2-mod-fcgid_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-fcgid-dbg_1:2.3.6-1.2+deb7u1_i386 + libapache2-mod-geoip_1.2.7-1_i386 + libapache2-mod-gnutls_0.5.10-1.1_i386 + libapache2-mod-jk_1:1.2.37-1_i386 + libapache2-mod-layout_5.1-1_i386 + libapache2-mod-ldap-userdir_1.1.19-1_i386 + libapache2-mod-ldap-userdir-dbg_1.1.19-1_i386 + libapache2-mod-lisp_1.3.1-1.2_i386 + libapache2-mod-log-sql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-dbi_1.100-14.2+b1_i386 + libapache2-mod-log-sql-mysql_1.100-14.2+b1_i386 + libapache2-mod-log-sql-ssl_1.100-14.2+b1_i386 + libapache2-mod-macro_1.1.11-2_i386 + libapache2-mod-mime-xattr_0.4-4_i386 + libapache2-mod-mono_2.10-3.2_i386 + libapache2-mod-musicindex_1.3.7-2+b1_i386 + libapache2-mod-nss_1.0.8-2_i386 + libapache2-mod-ocamlnet_3.5.1-1_i386 + libapache2-mod-parser3_3.4.2-2_i386 + libapache2-mod-passenger_3.0.13debian-1+deb7u1_i386 + libapache2-mod-perl2_2.0.7-3_i386 + libapache2-mod-php5_5.4.4-14+deb7u7_i386 + libapache2-mod-php5filter_5.4.4-14+deb7u7_i386 + libapache2-mod-proxy-html_3.0.1-1.1_i386 + libapache2-mod-python_3.3.1-9+b3_i386 + libapache2-mod-qos_10.8-1_i386 + libapache2-mod-random_2.1-1_i386 + libapache2-mod-removeip_1.0b-5_i386 + libapache2-mod-rivet_2.0.5-1_i386 + libapache2-mod-rpaf_0.6-7+wheezy1_i386 + libapache2-mod-ruby_1.2.6-2_i386 + libapache2-mod-ruid2_0.9.7-1_i386 + libapache2-mod-ruwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-ruwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-scgi_1.13-1+b2_i386 + libapache2-mod-shib2_2.4.3+dfsg-5+b1_i386 + libapache2-mod-spamhaus_0.7-1_i386 + libapache2-mod-speedycgi_2.22-13+b2_i386 + libapache2-mod-suphp_0.7.1-3_i386 + libapache2-mod-upload-progress_0.1+git20110718-1_i386 + libapache2-mod-uwsgi_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + libapache2-mod-vhost-hash-alias_1.0-2_i386 + libapache2-mod-vhost-ldap_2.0.8-1_i386 + libapache2-mod-wsgi_3.3-4_i386 + libapache2-mod-wsgi-py3_3.3-4_i386 + libapache2-mod-xsendfile_0.12-1_i386 + libapache2-modsecurity_2.6.6-6+deb7u1_i386 + libapache2-request-perl_2.13-1+b2_i386 + libapache2-svn_1.6.17dfsg-4+deb7u4_i386 + libapache2-webauth_4.1.1-2_i386 + libapache2-webkdc_4.1.1-2_i386 + libapertium3-3.1-0_3.1.0-2_i386 + libapertium3-3.1-0-dev_3.1.0-2_i386 + libapm-dev_3.2.2-14_i386 + libapm1_3.2.2-14_i386 + libapol-dev_3.3.7-3_i386 + libapol4_3.3.7-3_i386 + libapparmor-dev_2.7.103-4_i386 + libapparmor-perl_2.7.103-4_i386 + libapparmor1_2.7.103-4_i386 + libappindicator-dev_0.4.92-2_i386 + libappindicator1_0.4.92-2_i386 + libappindicator3-1_0.4.92-2_i386 + libappindicator3-dev_0.4.92-2_i386 + libapq-postgresql3.2.0_3.2.0-2_i386 + libapq-postgresql3.2.0-dbg_3.2.0-2_i386 + libapq-postgresql3.2.0-dev_3.2.0-2_i386 + libapq3.2.0_3.2.0-1_i386 + libapq3.2.0-dbg_3.2.0-1_i386 + libapq3.2.0-dev_3.2.0-1_i386 + libapr-memcache-dev_0.7.0-1_i386 + libapr-memcache0_0.7.0-1_i386 + libapr1_1.4.6-3+deb7u1_i386 + libapr1-dbg_1.4.6-3+deb7u1_i386 + libapr1-dev_1.4.6-3+deb7u1_i386 + libapreq2_2.13-1+b2_i386 + libapreq2-dev_2.13-1+b2_i386 + libapron_0.9.10-5.2+b3_i386 + libapron-ocaml_0.9.10-5.2+b3_i386 + libapron-ocaml-dev_0.9.10-5.2+b3_i386 + libaprutil1_1.4.1-3_i386 + libaprutil1-dbd-freetds_1.4.1-3_i386 + libaprutil1-dbd-mysql_1.4.1-3_i386 + libaprutil1-dbd-odbc_1.4.1-3_i386 + libaprutil1-dbd-pgsql_1.4.1-3_i386 + libaprutil1-dbd-sqlite3_1.4.1-3_i386 + libaprutil1-dbg_1.4.1-3_i386 + libaprutil1-dev_1.4.1-3_i386 + libaprutil1-ldap_1.4.1-3_i386 + libapt-inst1.5_0.9.7.9+deb7u1_i386 + libapt-pkg-dev_0.9.7.9+deb7u1_i386 + libapt-pkg-perl_0.1.26+b1_i386 + libapt-pkg4.12_0.9.7.9+deb7u1_i386 + libaqbanking-plugins-libgwenhywfar60_5.0.24-3_i386 + libaqbanking34_5.0.24-3_i386 + libaqbanking34-dbg_5.0.24-3_i386 + libaqbanking34-dev_5.0.24-3_i386 + libaqbanking34-plugins_5.0.24-3_i386 + libaqhbci20_5.0.24-3_i386 + libaqofxconnect7_5.0.24-3_i386 + libaqsis-dev_1.8.1-3_i386 + libaqsis1_1.8.1-3_i386 + libarchive-dev_3.0.4-3+nmu1_i386 + libarchive12_3.0.4-3+nmu1_i386 + libargtable2-0_12-1_i386 + libargtable2-dev_12-1_i386 + libarmadillo-dev_1:3.2.3+dfsg-1_i386 + libarmadillo3_1:3.2.3+dfsg-1_i386 + libarpack++2-dev_2.3-2_i386 + libarpack++2c2a_2.3-2_i386 + libarpack2_3.1.1-2.1_i386 + libarpack2-dbg_3.1.1-2.1_i386 + libarpack2-dev_3.1.1-2.1_i386 + libarray-refelem-perl_1.00-1.1+b3_i386 + libart-2.0-2_2.3.21-2_i386 + libart-2.0-dev_2.3.21-2_i386 + libasedrive-serial_3.7-3_i386 + libasedrive-usb_3.7-3_i386 + libasis2010_2010-5_i386 + libasis2010-dbg_2010-5_i386 + libasis2010-dev_2010-5_i386 + libasm-dev_0.152-1+wheezy1_i386 + libasm1_0.152-1+wheezy1_i386 + libasn1-8-heimdal_1.6~git20120403+dfsg1-2_i386 + libasound2_1.0.25-4_i386 + libasound2-dbg_1.0.25-4_i386 + libasound2-dev_1.0.25-4_i386 + libasound2-plugin-equal_0.6-4_i386 + libasound2-plugins_1.0.25-2_i386 + libaspell-dev_0.60.7~20110707-1_i386 + libaspell15_0.60.7~20110707-1_i386 + libasprintf0c2_0.18.1.1-9_i386 + libass-dev_0.10.0-3_i386 + libass4_0.10.0-3_i386 + libassa3.5-5_3.5.1-2_i386 + libassa3.5-5-dbg_3.5.1-2_i386 + libassa3.5-5-dev_3.5.1-2_i386 + libassimp-dev_3.0~dfsg-1_i386 + libassimp3_3.0~dfsg-1_i386 + libassuan-dev_2.0.3-1_i386 + libassuan0_2.0.3-1_i386 + libassuan0-dbg_2.0.3-1_i386 + libast2_0.7-6+b1_i386 + libast2-dev_0.7-6+b1_i386 + libastro-fits-cfitsio-perl_1.08-1_i386 + libasync-interrupt-perl_1.10-1_i386 + libasyncns-dev_0.8-4_i386 + libasyncns0_0.8-4_i386 + libatasmart-bin_0.19-1_i386 + libatasmart-dev_0.19-1_i386 + libatasmart4_0.19-1_i386 + libatd-ocaml_1.0.1-1+b1_i386 + libatd-ocaml-dev_1.0.1-1+b1_i386 + libatdgen-ocaml_1.2.2-1+b1_i386 + libatdgen-ocaml-dev_1.2.2-1+b1_i386 + libatfs1_1.4pl6-11_i386 + libatk-adaptor_2.5.3-2_i386 + libatk-adaptor-data_2.5.3-2_i386 + libatk-adaptor-dbg_2.5.3-2_i386 + libatk-bridge2.0-0_2.5.3-2_i386 + libatk-bridge2.0-0-dbg_2.5.3-2_i386 + libatk-bridge2.0-dev_2.5.3-2_i386 + libatk-wrapper-java-jni_0.30.4-3_i386 + libatk1-ruby1.8-dbg_1.1.3-2+b1_i386 + libatk1.0-0_2.4.0-2_i386 + libatk1.0-dbg_2.4.0-2_i386 + libatk1.0-dev_2.4.0-2_i386 + libatkmm-1.6-1_2.22.6-1_i386 + libatkmm-1.6-dbg_2.22.6-1_i386 + libatkmm-1.6-dev_2.22.6-1_i386 + libatlas-base-dev_3.8.4-9+deb7u1_i386 + libatlas-cpp-0.6-1_0.6.2-3_i386 + libatlas-cpp-0.6-1-dbg_0.6.2-3_i386 + libatlas-cpp-0.6-dev_0.6.2-3_i386 + libatlas-test_3.8.4-9+deb7u1_i386 + libatlas3-base_3.8.4-9+deb7u1_i386 + libatm1_1:2.5.1-1.5_i386 + libatm1-dev_1:2.5.1-1.5_i386 + libatomic-ops-dev_7.2~alpha5+cvs20101124-1+deb7u1_i386 + libatomicparsley-dev_2.1.2-1_i386 + libatomicparsley0_2.1.2-1_i386 + libatspi-dbg_1.32.0-2_i386 + libatspi-dev_1.32.0-2_i386 + libatspi1.0-0_1.32.0-2_i386 + libatspi2.0-0_2.5.3-2_i386 + libatspi2.0-0-dbg_2.5.3-2_i386 + libatspi2.0-dev_2.5.3-2_i386 + libattica-dev_0.2.0-1_i386 + libattica0_0.2.0-1_i386 + libattr1_1:2.4.46-8_i386 + libattr1-dev_1:2.4.46-8_i386 + libaubio-dev_0.3.2-4.2+b1_i386 + libaubio2_0.3.2-4.2+b1_i386 + libaudclient2_3.2.4-1_i386 + libaudcore1_3.2.4-1_i386 + libaudio-cd-perl_0.05-9+b2_i386 + libaudio-dev_1.9.3-5wheezy1_i386 + libaudio-ecasound-perl_1.01-2+b1_i386 + libaudio-flac-decoder-perl_0.3+dfsg-1+b2_i386 + libaudio-flac-header-perl_2.4-1+b2_i386 + libaudio-mixer-perl_0.7-3+b3_i386 + libaudio-scan-perl_0.93+dfsg-2+b1_i386 + libaudio-xmmsclient-perl_0.8+dfsg-4_i386 + libaudio2_1.9.3-5wheezy1_i386 + libaudiofile-dbg_0.3.4-2_i386 + libaudiofile-dev_0.3.4-2_i386 + libaudiofile1_0.3.4-2_i386 + libaudiomask-dev_1.0-2_i386 + libaudiomask1_1.0-2_i386 + libaudit-dev_1:1.7.18-1.1_i386 + libaudit0_1:1.7.18-1.1_i386 + libaugeas-dev_0.10.0-1_i386 + libaugeas-ruby1.8_0.4.1-1.1_i386 + libaugeas-ruby1.9.1_0.4.1-1.1_i386 + libaugeas0_0.10.0-1_i386 + libaunit-dbg_1.03-7_i386 + libaunit2-dev_1.03-7_i386 + libaunit3_1.03-7_i386 + libauthen-dechpwd-perl_2.006-1+b1_i386 + libauthen-krb5-admin-perl_0.13-1_i386 + libauthen-krb5-perl_1.9-3+b2_i386 + libauthen-krb5-simple-perl_0.43-1_i386 + libauthen-pam-perl_0.16-2+b2_i386 + libauthen-sasl-cyrus-perl_0.13-server-8+b2_i386 + libauthen-smb-perl_0.91-4+b2_i386 + libauthen-tacacsplus-perl_0.22-1_i386 + libautobox-perl_2.75-1+b1_i386 + libautotrace-dev_0.31.1-16+b1_i386 + libautotrace3_0.31.1-16+b1_i386 + libautounit-dev_0.20.1-4_i386 + libautounit2_0.20.1-4_i386 + libautovivification-perl_0.10-1+b1_i386 + libav-dbg_6:0.8.9-1_i386 + libav-tools_6:0.8.9-1_i386 + libavahi-client-dev_0.6.31-2_i386 + libavahi-client3_0.6.31-2_i386 + libavahi-common-data_0.6.31-2_i386 + libavahi-common-dev_0.6.31-2_i386 + libavahi-common3_0.6.31-2_i386 + libavahi-compat-libdnssd-dev_0.6.31-2_i386 + libavahi-compat-libdnssd1_0.6.31-2_i386 + libavahi-core-dev_0.6.31-2_i386 + libavahi-core7_0.6.31-2_i386 + libavahi-glib-dev_0.6.31-2_i386 + libavahi-glib1_0.6.31-2_i386 + libavahi-gobject-dev_0.6.31-2_i386 + libavahi-gobject0_0.6.31-2_i386 + libavahi-qt4-1_0.6.31-2_i386 + libavahi-qt4-dev_0.6.31-2_i386 + libavahi-ui-dev_0.6.31-2_i386 + libavahi-ui-gtk3-0_0.6.31-2_i386 + libavahi-ui-gtk3-dev_0.6.31-2_i386 + libavahi-ui0_0.6.31-2_i386 + libavbin-dev_7-1.3_i386 + libavbin0_7-1.3_i386 + libavc1394-0_0.5.4-2_i386 + libavc1394-dev_0.5.4-2_i386 + libavc1394-tools_0.5.4-2_i386 + libavcodec-dev_6:0.8.9-1_i386 + libavcodec-extra-53_6:0.8.9-1_i386 + libavcodec53_6:0.8.9-1_i386 + libavdevice-dev_6:0.8.9-1_i386 + libavdevice53_6:0.8.9-1_i386 + libavfilter-dev_6:0.8.9-1_i386 + libavfilter2_6:0.8.9-1_i386 + libavformat-dev_6:0.8.9-1_i386 + libavformat53_6:0.8.9-1_i386 + libavifile-0.7-bin_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7-dev_1:0.7.48~20090503.ds-13_i386 + libavifile-0.7c2_1:0.7.48~20090503.ds-13_i386 + libavl-dev_0.3.5-3_i386 + libavl1_0.3.5-3_i386 + libavogadro-dev_1.0.3-5_i386 + libavogadro1_1.0.3-5_i386 + libavutil-dev_6:0.8.9-1_i386 + libavutil51_6:0.8.9-1_i386 + libaws-bin_2.10.2-4_i386 + libaws-dbg_2.10.2-4_i386 + libaws2.10.2_2.10.2-4_i386 + libaws2.10.2-dev_2.10.2-4_i386 + libax25_0.0.12-rc2+cvs20120204-2_i386 + libax25-dev_0.0.12-rc2+cvs20120204-2_i386 + libb-hooks-op-annotation-perl_0.44-1+b2_i386 + libb-hooks-op-check-entersubforcv-perl_0.09-1_i386 + libb-hooks-op-check-perl_0.19-1+b1_i386 + libb-hooks-op-ppaddr-perl_0.03-1+b1_i386 + libb-hooks-parser-perl_0.11-1_i386 + libb-utils-perl_0.21-1_i386 + libbabl-0.1-0_0.1.10-1_i386 + libbabl-0.1-0-dbg_0.1.10-1_i386 + libbabl-dev_0.1.10-1_i386 + libball1.4_1.4.1+20111206-4_i386 + libball1.4-dev_1.4.1+20111206-4_i386 + libballview1.4_1.4.1+20111206-4_i386 + libballview1.4-dev_1.4.1+20111206-4_i386 + libbam-dev_0.1.18-1_i386 + libbamf-dev_0.2.118-1_i386 + libbamf0_0.2.118-1_i386 + libbamf3-0_0.2.118-1_i386 + libbamf3-dev_0.2.118-1_i386 + libbarcode-zbar-perl_0.10+doc-8_i386 + libbareword-filehandles-perl_0.003-1_i386 + libbarry-dev_0.18.3-5_i386 + libbarry18_0.18.3-5_i386 + libbarry18-dbg_0.18.3-5_i386 + libbatteries-ocaml-dev_1.4.3-1_i386 + libbcmail-java-gcj_1.44+dfsg-3.1_i386 + libbcpg-java-gcj_1.44+dfsg-3.1_i386 + libbcprov-java-gcj_1.44+dfsg-3.1_i386 + libbctsp-java-gcj_1.44+dfsg-3.1_i386 + libbdd-dev_2.4-8_i386 + libbdd0c2_2.4-8_i386 + libbeecrypt-dev_4.2.1-4_i386 + libbeecrypt7_4.2.1-4_i386 + libbenchmark-ocaml-dev_0.9-2+b3_i386 + libberkeleydb-perl_0.51-1_i386 + libbfb0_0.23-1.1_i386 + libbfb0-dev_0.23-1.1_i386 + libbg1_1.106-1_i386 + libbg1-dev_1.106-1_i386 + libbibutils-dev_4.12-5_i386 + libbibutils2_4.12-5_i386 + libbin-prot-camlp4-dev_2.0.7-1_i386 + libbind-dev_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbind4_6.0-1_i386 + libbind4-dev_6.0-1_i386 + libbind9-80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libbinio-dev_1.4+dfsg1-1_i386 + libbinio1ldbl_1.4+dfsg1-1_i386 + libbiniou-ocaml_1.0.0-1+b1_i386 + libbiniou-ocaml-dev_1.0.0-1+b1_i386 + libbio-samtools-perl_1.33-1_i386 + libbio-scf-perl_1.03-1+b2_i386 + libbio2jack0_0.9-2.1_i386 + libbio2jack0-dev_0.9-2.1_i386 + libbiococoa-dev_2.2.2-1+b2_i386 + libbiococoa2_2.2.2-1+b2_i386 + libbiosig-dev_1.3.0-2_i386 + libbiosig1_1.3.0-2_i386 + libbiosig1-dbg_1.3.0-2_i386 + libbisho-common-dev_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0_0.27.2+git20111122.9e68ef3d-1_i386 + libbisho-common0-dbg_0.27.2+git20111122.9e68ef3d-1_i386 + libbison-dev_1:2.5.dfsg-2.1_i386 + libbit-vector-perl_7.2-1_i386 + libbitmask-dev_2.0-2_i386 + libbitmask1_2.0-2_i386 + libbitstring-ocaml_2.0.2-3+b1_i386 + libbitstring-ocaml-dev_2.0.2-3+b1_i386 + libbjack-ocaml_0.1.3-5+b1_i386 + libbjack-ocaml-dev_0.1.3-5+b1_i386 + libblacs-mpi-dev_1.1-31_i386 + libblacs-mpi1_1.1-31_i386 + libblas-dev_1.2.20110419-5_i386 + libblas-test_1.2.20110419-5_i386 + libblas3_1.2.20110419-5_i386 + libbliss-dev_0.72-4_i386 + libbliss1d_0.72-4_i386 + libbliss1d-dbg_0.72-4_i386 + libblitz0-dev_1:0.9-13_i386 + libblitz0ldbl_1:0.9-13_i386 + libblkid-dev_2.20.1-5.3_i386 + libblkid1_2.20.1-5.3_i386 + libblktapctl0_2.0.90-1_i386 + libblocksruntime-dev_0.1-1_i386 + libblocksruntime0_0.1-1_i386 + libbluedevil-dev_1.9.2-1_i386 + libbluedevil1_1.9.2-1_i386 + libbluetooth-dev_4.99-2_i386 + libbluetooth3_4.99-2_i386 + libbluetooth3-dbg_4.99-2_i386 + libbluray-dev_1:0.2.2-1_i386 + libbluray1_1:0.2.2-1_i386 + libbluray1-dbg_1:0.2.2-1_i386 + libbml-dev_0.6.1-1_i386 + libbml0_0.6.1-1_i386 + libbobcat-dev_3.01.00-1+b1_i386 + libbobcat3_3.01.00-1+b1_i386 + libbogl-dev_0.1.18-8+b1_i386 + libbogl0_0.1.18-8+b1_i386 + libbognor-regis-0.6-0_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-0.6-0-dbg_0.6.12+git20101007.02c25268-7_i386 + libbognor-regis-dev_0.6.12+git20101007.02c25268-7_i386 + libbonobo2-0_2.24.3-1_i386 + libbonobo2-bin_2.24.3-1_i386 + libbonobo2-dev_2.24.3-1_i386 + libbonoboui2-0_2.24.3-1_i386 + libbonoboui2-dev_2.24.3-1_i386 + libboolstuff-0.1-0_0.1.12-3_i386 + libboolstuff-0.1-0-dbg_0.1.12-3_i386 + libboost-all-dev_1.49.0.1_i386 + libboost-chrono-dev_1.49.0.1_i386 + libboost-chrono1.49-dev_1.49.0-3.2_i386 + libboost-chrono1.49.0_1.49.0-3.2_i386 + libboost-date-time-dev_1.49.0.1_i386 + libboost-date-time1.49-dev_1.49.0-3.2_i386 + libboost-date-time1.49.0_1.49.0-3.2_i386 + libboost-dbg_1.49.0.1_i386 + libboost-dev_1.49.0.1_i386 + libboost-filesystem-dev_1.49.0.1_i386 + libboost-filesystem1.49-dev_1.49.0-3.2_i386 + libboost-filesystem1.49.0_1.49.0-3.2_i386 + libboost-graph-dev_1.49.0.1_i386 + libboost-graph-parallel-dev_1.49.0.1_i386 + libboost-graph-parallel1.49-dev_1.49.0-3.2_i386 + libboost-graph-parallel1.49.0_1.49.0-3.2_i386 + libboost-graph1.49-dev_1.49.0-3.2_i386 + libboost-graph1.49.0_1.49.0-3.2_i386 + libboost-iostreams-dev_1.49.0.1_i386 + libboost-iostreams1.49-dev_1.49.0-3.2_i386 + libboost-iostreams1.49.0_1.49.0-3.2_i386 + libboost-locale-dev_1.49.0.1_i386 + libboost-locale1.49-dev_1.49.0-3.2_i386 + libboost-locale1.49.0_1.49.0-3.2_i386 + libboost-math-dev_1.49.0.1_i386 + libboost-math1.49-dev_1.49.0-3.2_i386 + libboost-math1.49.0_1.49.0-3.2_i386 + libboost-mpi-dev_1.49.0.1_i386 + libboost-mpi-python-dev_1.49.0.1_i386 + libboost-mpi-python1.49-dev_1.49.0-3.2_i386 + libboost-mpi-python1.49.0_1.49.0-3.2_i386 + libboost-mpi1.49-dev_1.49.0-3.2_i386 + libboost-mpi1.49.0_1.49.0-3.2_i386 + libboost-program-options-dev_1.49.0.1_i386 + libboost-program-options1.49-dev_1.49.0-3.2_i386 + libboost-program-options1.49.0_1.49.0-3.2_i386 + libboost-python-dev_1.49.0.1_i386 + libboost-python1.49-dev_1.49.0-3.2_i386 + libboost-python1.49.0_1.49.0-3.2_i386 + libboost-random-dev_1.49.0.1_i386 + libboost-random1.49-dev_1.49.0-3.2_i386 + libboost-random1.49.0_1.49.0-3.2_i386 + libboost-regex-dev_1.49.0.1_i386 + libboost-regex1.49-dev_1.49.0-3.2_i386 + libboost-regex1.49.0_1.49.0-3.2_i386 + libboost-serialization-dev_1.49.0.1_i386 + libboost-serialization1.49-dev_1.49.0-3.2_i386 + libboost-serialization1.49.0_1.49.0-3.2_i386 + libboost-signals-dev_1.49.0.1_i386 + libboost-signals1.49-dev_1.49.0-3.2_i386 + libboost-signals1.49.0_1.49.0-3.2_i386 + libboost-system-dev_1.49.0.1_i386 + libboost-system1.49-dev_1.49.0-3.2_i386 + libboost-system1.49.0_1.49.0-3.2_i386 + libboost-test-dev_1.49.0.1_i386 + libboost-test1.49-dev_1.49.0-3.2_i386 + libboost-test1.49.0_1.49.0-3.2_i386 + libboost-thread-dev_1.49.0.1_i386 + libboost-thread1.49-dev_1.49.0-3.2_i386 + libboost-thread1.49.0_1.49.0-3.2_i386 + libboost-timer-dev_1.49.0.1_i386 + libboost-timer1.49-dev_1.49.0-3.2_i386 + libboost-timer1.49.0_1.49.0-3.2_i386 + libboost-wave-dev_1.49.0.1_i386 + libboost-wave1.49-dev_1.49.0-3.2_i386 + libboost-wave1.49.0_1.49.0-3.2_i386 + libboost1.49-all-dev_1.49.0-3.2_i386 + libboost1.49-dbg_1.49.0-3.2_i386 + libboost1.49-dev_1.49.0-3.2_i386 + libbotan-1.10-0_1.10.5-1_i386 + libbotan1.10-dev_1.10.5-1_i386 + libbox-dev_2.5-2_i386 + libbox2d-dev_2.0.1+dfsg1-1_i386 + libbox2d0_2.0.1+dfsg1-1_i386 + libbox2d0-dbg_2.0.1+dfsg1-1_i386 + libbpp-core-dev_2.0.3-1_i386 + libbpp-core2_2.0.3-1_i386 + libbpp-phyl-dev_2.0.3-1_i386 + libbpp-phyl9_2.0.3-1_i386 + libbpp-popgen-dev_2.0.3-1_i386 + libbpp-popgen6_2.0.3-1_i386 + libbpp-qt-dev_2.0.2-1_i386 + libbpp-qt1_2.0.2-1_i386 + libbpp-raa-dev_2.0.3-1_i386 + libbpp-raa1_2.0.3-1_i386 + libbpp-seq-dev_2.0.3-1_i386 + libbpp-seq9_2.0.3-1_i386 + libbrahe-1.3-3_1.3.2-3_i386 + libbrahe-dev_1.3.2-3_i386 + libbrasero-media3-1_3.4.1-4_i386 + libbrasero-media3-dev_3.4.1-4_i386 + libbrlapi-dbg_4.4-10+deb7u1_i386 + libbrlapi-dev_4.4-10+deb7u1_i386 + libbrlapi-jni_4.4-10+deb7u1_i386 + libbrlapi0.5_4.4-10+deb7u1_i386 + libbs2b-dev_3.1.0+dfsg-2_i386 + libbs2b0_3.1.0+dfsg-2_i386 + libbsd-arc4random-perl_1.50-5_i386 + libbsd-dev_0.4.2-1_i386 + libbsd-resource-perl_1.2904-1+b2_i386 + libbsd0_0.4.2-1_i386 + libbsd0-dbg_0.4.2-1_i386 + libbse-0.7-4_0.7.4-5_i386 + libbt-dev_0.70.1-13_i386 + libbt0_0.70.1-13_i386 + libbtf1.1.0_1:3.4.0-3_i386 + libbtparse-dev_0.63-1_i386 + libbtparse1_0.63-1_i386 + libbuffy-dev_1.7-1_i386 + libbuffy-perl_0.13+b1_i386 + libbulletml-dev_0.0.6-5_i386 + libbulletml0d2_0.0.6-5_i386 + libburn-dbg_1.2.2-2_i386 + libburn-dev_1.2.2-2_i386 + libburn4_1.2.2-2_i386 + libbuzztard-dev_0.5.0-4_i386 + libbuzztard0_0.5.0-4_i386 + libbz2-1.0_1.0.6-4_i386 + libbz2-dev_1.0.6-4_i386 + libbz2-ocaml_0.6.0-6+b2_i386 + libbz2-ocaml-dev_0.6.0-6+b2_i386 + libbz2-ruby1.8_0.2.2-2_i386 + libc-ares-dev_1.9.1-3_i386 + libc-ares2_1.9.1-3_i386 + libc-bin_2.13-38+deb7u1_i386 + libc-client2007e_8:2007f~dfsg-2_i386 + libc-client2007e-dev_8:2007f~dfsg-2_i386 + libc-dev-bin_2.13-38+deb7u1_i386 + libc-icap-mod-clamav_1:0.1.6-1_i386 + libc-icap-mod-urlcheck_1:0.1.6-1_i386 + libc6_2.13-38+deb7u1_i386 + libc6-amd64_2.13-38+deb7u1_i386 + libc6-dbg_2.13-38+deb7u1_i386 + libc6-dev_2.13-38+deb7u1_i386 + libc6-dev-amd64_2.13-38+deb7u1_i386 + libc6-i686_2.13-38+deb7u1_i386 + libc6-pic_2.13-38+deb7u1_i386 + libc6-prof_2.13-38+deb7u1_i386 + libc6-xen_2.13-38+deb7u1_i386 + libcableswig-dev_0.1.0+cvs20111009-1_i386 + libcaca-dev_0.99.beta18-1_i386 + libcaca0_0.99.beta18-1_i386 + libcache-fastmmap-perl_1.40-1_i386 + libcache-memcached-fast-perl_0.19-2+b1_i386 + libcache-mmap-perl_0.11-1+b3_i386 + libcairo-gobject-perl_1.001-1_i386 + libcairo-gobject2_1.12.2-3_i386 + libcairo-ocaml_1:1.2.0-2+b1_i386 + libcairo-ocaml-dev_1:1.2.0-2+b1_i386 + libcairo-perl_1.090-2_i386 + libcairo-script-interpreter2_1.12.2-3_i386 + libcairo2_1.12.2-3_i386 + libcairo2-dbg_1.12.2-3_i386 + libcairo2-dev_1.12.2-3_i386 + libcairo5c-0_1.8.1_i386 + libcairomm-1.0-1_1.10.0-1_i386 + libcairomm-1.0-dev_1.10.0-1_i386 + libcal3d12_0.11.0-4.1_i386 + libcal3d12-dev_0.11.0-4.1_i386 + libcalendar-ocaml_2.03-1+b2_i386 + libcalendar-ocaml-dev_2.03-1+b2_i386 + libcamd2.2.0_1:3.4.0-3_i386 + libcamel-1.2-33_3.4.4-3_i386 + libcamel1.2-dev_3.4.4-3_i386 + libcameleon-ocaml-dev_1.9.21-2+b1_i386 + libcaml2html-ocaml_1.4.1-3_i386 + libcaml2html-ocaml-dev_1.4.1-3_i386 + libcamlimages-ocaml_1:4.0.1-4+b2_i386 + libcamlimages-ocaml-dev_1:4.0.1-4+b2_i386 + libcamljava-ocaml-dev_0.3-1+b3_i386 + libcamltemplate-ocaml_1.0.2-1+b2_i386 + libcamltemplate-ocaml-dev_1.0.2-1+b2_i386 + libcamomile-ocaml-dev_0.8.4-2_i386 + libcanberra-dev_0.28-6_i386 + libcanberra-gstreamer_0.28-6_i386 + libcanberra-gstreamer-dbg_0.28-6_i386 + libcanberra-gtk-dev_0.28-6_i386 + libcanberra-gtk-module_0.28-6_i386 + libcanberra-gtk-module-dbg_0.28-6_i386 + libcanberra-gtk0_0.28-6_i386 + libcanberra-gtk0-dbg_0.28-6_i386 + libcanberra-gtk3-0_0.28-6_i386 + libcanberra-gtk3-0-dbg_0.28-6_i386 + libcanberra-gtk3-dev_0.28-6_i386 + libcanberra-gtk3-module_0.28-6_i386 + libcanberra-gtk3-module-dbg_0.28-6_i386 + libcanberra-pulse_0.28-6_i386 + libcanberra-pulse-dbg_0.28-6_i386 + libcanberra0_0.28-6_i386 + libcanberra0-dbg_0.28-6_i386 + libcanlock2_2b-6_i386 + libcanlock2-dev_2b-6_i386 + libcanna1g_3.7p3-11_i386 + libcanna1g-dev_3.7p3-11_i386 + libcap-dev_1:2.22-1.2_i386 + libcap-ng-dev_0.6.6-2_i386 + libcap-ng-utils_0.6.6-2_i386 + libcap-ng0_0.6.6-2_i386 + libcap2_1:2.22-1.2_i386 + libcap2-bin_1:2.22-1.2_i386 + libcapi20-3_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapi20-dev_1:3.25+dfsg1-3.3~deb7u1_i386 + libcapsinetwork-dev_0.3.0-7_i386 + libcapsinetwork0c2a_0.3.0-7_i386 + libcaribou-dbg_0.4.4-1_i386 + libcaribou-dev_0.4.4-1_i386 + libcaribou-gtk-module_0.4.4-1_i386 + libcaribou-gtk-module-dbg_0.4.4-1_i386 + libcaribou-gtk3-module_0.4.4-1_i386 + libcaribou-gtk3-module-dbg_0.4.4-1_i386 + libcaribou0_0.4.4-1_i386 + libcbf-dev_0.7.9.1-3_i386 + libcbf0_0.7.9.1-3_i386 + libccaudio2_2.0.5-3_i386 + libccaudio2-dev_2.0.5-3_i386 + libccfits-dev_2.4-1_i386 + libccfits0_2.4-1_i386 + libccgnu2-1.8-0_1.8.1-5_i386 + libccid_1.4.7-1_i386 + libccolamd2.7.1_1:3.4.0-3_i386 + libcconv-dev_0.6.2-1_i386 + libcconv0_0.6.2-1_i386 + libccrtp-dev_2.0.3-4_i386 + libccrtp0_2.0.3-4_i386 + libccs-dev_3.0.12-3.2+deb7u2_i386 + libccs-perl_3.0.12-3.2+deb7u2_i386 + libccs3_3.0.12-3.2+deb7u2_i386 + libccscript3-1.1-0_1.1.7-2_i386 + libccscript3-dev_1.1.7-2_i386 + libccss-1-5_0.5.0-4_i386 + libccss-1-5-dbg_0.5.0-4_i386 + libccss-dev_0.5.0-4_i386 + libccss-tools_0.5.0-4_i386 + libcdaudio-dbg_0.99.12p2-12_i386 + libcdaudio-dev_0.99.12p2-12_i386 + libcdaudio1_0.99.12p2-12_i386 + libcdb-dev_0.78_i386 + libcdb-file-perl_0.97-2_i386 + libcdb1_0.78_i386 + libcdd-dev_094b.dfsg-4.2_i386 + libcdd-test_094b.dfsg-4.2_i386 + libcdd0_094b.dfsg-4.2_i386 + libcddb2_1.3.2-3_i386 + libcddb2-dev_1.3.2-3_i386 + libcdi-dev_1.5.4+dfsg.1-5_i386 + libcdi0_1.5.4+dfsg.1-5_i386 + libcdio-cdda-dev_0.83-4_i386 + libcdio-cdda1_0.83-4_i386 + libcdio-dev_0.83-4_i386 + libcdio-paranoia-dev_0.83-4_i386 + libcdio-paranoia1_0.83-4_i386 + libcdio-utils_0.83-4_i386 + libcdio13_0.83-4_i386 + libcdk-perl_4.9.10-5+b1_i386 + libcdk5_5.0.20060507-4_i386 + libcdk5-dev_5.0.20060507-4_i386 + libcdparanoia-dev_3.10.2+debian-10.1_i386 + libcdparanoia0_3.10.2+debian-10.1_i386 + libcdt4_2.26.3-14+deb7u1_i386 + libcec-dev_1.6.2-1.1_i386 + libcec1_1.6.2-1.1_i386 + libcegui-mk2-0.7.6_0.7.6-2+b1_i386 + libcegui-mk2-0.7.6-dbg_0.7.6-2+b1_i386 + libcegui-mk2-dev_0.7.6-2+b1_i386 + libcext-dev_6.1.1-2_i386 + libcext0_6.1.1-2_i386 + libcf-ocaml_0.10-3+b3_i386 + libcf-ocaml-dev_0.10-3+b3_i386 + libcf0_1:4.1.3-6+b1_i386 + libcfg-dev_1.4.2-3_i386 + libcfg4_1.4.2-3_i386 + libcfitsio3_3.300-2_i386 + libcfitsio3-dbg_3.300-2_i386 + libcfitsio3-dev_3.300-2_i386 + libcflow-perl_1:0.68-12.1+b1_i386 + libcgal-dev_4.0-5_i386 + libcgal-ipelets_4.0-5_i386 + libcgal9_4.0-5_i386 + libcgi-java_0.7.3-1_i386 + libcgic-dev_2.05-3_i386 + libcgic2_2.05-3_i386 + libcgicc5_3.2.9-3_i386 + libcgicc5-dev_3.2.9-3_i386 + libcgns-dev_3.1.3.4-1+b1_i386 + libcgns3.1_3.1.3.4-1+b1_i386 + libcgns3.1-dbg_3.1.3.4-1+b1_i386 + libcgraph5_2.26.3-14+deb7u1_i386 + libcgroup-dev_0.38-1_i386 + libcgroup1_0.38-1_i386 + libcgsi-gsoap-dev_1.3.5-1_i386 + libcgsi-gsoap1_1.3.5-1_i386 + libchamplain-0.12-0_0.12.3-1_i386 + libchamplain-0.12-dbg_0.12.3-1_i386 + libchamplain-0.12-dev_0.12.3-1_i386 + libchamplain-gtk-0.12-0_0.12.3-1_i386 + libchamplain-gtk-0.12-dbg_0.12.3-1_i386 + libchamplain-gtk-0.12-dev_0.12.3-1_i386 + libcharls-dev_1.0-2_i386 + libcharls1_1.0-2_i386 + libchasen-dev_2.4.5-6_i386 + libchasen2_2.4.5-6_i386 + libcheese-dev_3.4.2-2_i386 + libcheese-gtk-dev_3.4.2-2_i386 + libcheese-gtk21_3.4.2-2_i386 + libcheese3_3.4.2-2_i386 + libchemistry-openbabel-perl_2.3.1+dfsg-4_i386 + libchewing3_0.3.3-4_i386 + libchewing3-data_0.3.3-4_i386 + libchewing3-dbg_0.3.3-4_i386 + libchewing3-dev_0.3.3-4_i386 + libchicken-dev_4.7.0-1_i386 + libchicken6_4.7.0-1_i386 + libchipcard-dev_5.0.3beta-3_i386 + libchipcard-libgwenhywfar60-plugins_5.0.3beta-3_i386 + libchipcard-tools_5.0.3beta-3_i386 + libchipcard6_5.0.3beta-3_i386 + libchipmunk0d1_5.3.4-1_i386 + libchipmunk0d1-dbg_5.3.4-1_i386 + libchise-dev_0.3.0-2+b1_i386 + libchise1_0.3.0-2+b1_i386 + libchm-bin_2:0.40a-2_i386 + libchm-dev_2:0.40a-2_i386 + libchm1_2:0.40a-2_i386 + libcholmod1.7.1_1:3.4.0-3_i386 + libchromaprint-dev_0.6-2_i386 + libchromaprint-tools_0.6-2_i386 + libchromaprint0_0.6-2_i386 + libcib1_1.1.7-1_i386 + libcib1-dev_1.1.7-1_i386 + libcitadel-dev_8.14-1_i386 + libcitadel3_8.14-1_i386 + libcitadel3-dbg_8.14-1_i386 + libcitygml0_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-bin_0.14+svn128-1+3p0p1+4_i386 + libcitygml0-dev_0.14+svn128-1+3p0p1+4_i386 + libck-connector-dev_0.4.5-3.1_i386 + libck-connector0_0.4.5-3.1_i386 + libckit-smlnj_110.74-2_i386 + libckyapplet1_1.1.0-12_i386 + libckyapplet1-dev_1.1.0-12_i386 + libclalsadrv2_2.0.0-3_i386 + libclam-dev_1.4.0-5.1_i386 + libclam-qtmonitors-dev_1.4.0-3.1_i386 + libclam-qtmonitors1.4_1.4.0-3.1_i386 + libclam1.4_1.4.0-5.1_i386 + libclamav-dev_0.97.8+dfsg-1_i386 + libclamav6_0.97.8+dfsg-1_i386 + libclanapp-1.0_1.0~svn3827-3_i386 + libclang-common-dev_1:3.0-6.2_i386 + libclang-dev_1:3.0-6.2_i386 + libclang1_1:3.0-6.2_i386 + libclanlib-dev_1.0~svn3827-3_i386 + libclansdl-1.0_1.0~svn3827-3_i386 + libclass-c3-xs-perl_0.13-1+b2_i386 + libclass-date-perl_1.1.10-1+b2_i386 + libclass-load-xs-perl_0.04-1_i386 + libclass-methodmaker-perl_2.18-1+b1_i386 + libclass-xsaccessor-perl_1.13-1_i386 + libclassad-dev_7.8.2~dfsg.1-1+deb7u1_i386 + libclassad3_7.8.2~dfsg.1-1+deb7u1_i386 + libclaw-application-dev_1.7.0-3_i386 + libclaw-application1_1.7.0-3_i386 + libclaw-configuration-file-dev_1.7.0-3_i386 + libclaw-configuration-file1_1.7.0-3_i386 + libclaw-dev_1.7.0-3_i386 + libclaw-dynamic-library-dev_1.7.0-3_i386 + libclaw-dynamic-library1_1.7.0-3_i386 + libclaw-graphic-dev_1.7.0-3_i386 + libclaw-graphic1_1.7.0-3_i386 + libclaw-logger-dev_1.7.0-3_i386 + libclaw-logger1_1.7.0-3_i386 + libclaw-net-dev_1.7.0-3_i386 + libclaw-net1_1.7.0-3_i386 + libclaw-tween-dev_1.7.0-3_i386 + libclaw-tween1_1.7.0-3_i386 + libclaws-mail-dev_3.8.1-2_i386 + libclearsilver-perl_0.10.5-1.3_i386 + libclhep-dev_2.1.2.3-1_i386 + libclhep2.1_2.1.2.3-1_i386 + libcli-dev_1.9.6-1_i386 + libcli1.9_1.9.6-1_i386 + libclinica0_0.2.1~dfsg-1_i386 + libclippoly-dev_0.11-3_i386 + libclippoly0_0.11-3_i386 + libclips_6.24-3_i386 + libclips-dev_6.24-3_i386 + libcliquer-dev_1.21-1_i386 + libcliquer1_1.21-1_i386 + libcln-dev_1.3.2-1.2_i386 + libcln6_1.3.2-1.2_i386 + libclone-fast-perl_0.96-1_i386 + libclone-perl_0.31-1+b2_i386 + libcloog-isl-dev_0.17.0-3_i386 + libcloog-isl3_0.17.0-3_i386 + libcloog-ppl-dev_0.15.11-4_i386 + libcloog-ppl0_0.15.11-4_i386 + libclthreads-dev_2.4.0-4_i386 + libclthreads2_2.4.0-4_i386 + libclucene-dev_0.9.21b-2+b1_i386 + libclucene0ldbl_0.9.21b-2+b1_i386 + libclustalo-dev_1.1.0-1_i386 + libclutter-1.0-0_1.10.8-2_i386 + libclutter-1.0-dbg_1.10.8-2_i386 + libclutter-1.0-dev_1.10.8-2_i386 + libclutter-gst-1.0-0_1.5.4-1+build0_i386 + libclutter-gst-1.0-dbg_1.5.4-1+build0_i386 + libclutter-gst-dev_1.5.4-1+build0_i386 + libclutter-gtk-1.0-0_1.2.0-2_i386 + libclutter-gtk-1.0-dbg_1.2.0-2_i386 + libclutter-gtk-1.0-dev_1.2.0-2_i386 + libclutter-imcontext-0.1-0_0.1.4-3_i386 + libclutter-imcontext-0.1-0-dbg_0.1.4-3_i386 + libclutter-imcontext-0.1-bin_0.1.4-3_i386 + libclutter-imcontext-0.1-dev_0.1.4-3_i386 + libclutter-perl_1.110-1_i386 + libcluttergesture-0.0.2-0_0.0.2.1-7_i386 + libcluttergesture-0.0.2-0-dbg_0.0.2.1-7_i386 + libcluttergesture-dev_0.0.2.1-7_i386 + libclxclient-dev_3.6.1-6_i386 + libclxclient3_3.6.1-6_i386 + libcman-dev_3.0.12-3.2+deb7u2_i386 + libcman3_3.0.12-3.2+deb7u2_i386 + libcminpack-dev_1.2.2-1_i386 + libcminpack1.0.90_1.2.2-1_i386 + libcmis-0.2-0_0.1.0-1+b1_i386 + libcmis-dev_0.1.0-1+b1_i386 + libcml-smlnj_110.74-2_i386 + libcmlutil-smlnj_110.74-2_i386 + libcmor-dev_2.8.0-2+b1_i386 + libcmor2_2.8.0-2+b1_i386 + libcmph-dev_0.9-1_i386 + libcmph-tools_0.9-1_i386 + libcmph0_0.9-1_i386 + libcneartree-dev_3.1.1-1_i386 + libcneartree5_3.1.1-1_i386 + libcnf-dev_4.0-2_i386 + libcob1_1.1-1_i386 + libcob1-dev_1.1-1_i386 + libcodeblocks0_10.05-2.1_i386 + libcogl-dev_1.10.2-7_i386 + libcogl-pango-dev_1.10.2-7_i386 + libcogl-pango0_1.10.2-7_i386 + libcogl-pango0-dbg_1.10.2-7_i386 + libcogl9_1.10.2-7_i386 + libcogl9-dbg_1.10.2-7_i386 + libcoin60_3.1.3-2.2_i386 + libcoin60-dev_3.1.3-2.2_i386 + libcojets2-dev_20061220+dfsg3-2_i386 + libcojets2-gfortran_20061220+dfsg3-2_i386 + libcolamd2.7.1_1:3.4.0-3_i386 + libcollectdclient-dev_5.1.0-3_i386 + libcollectdclient0_5.1.0-3_i386 + libcollection-dev_0.1.3-2_i386 + libcollection2_0.1.3-2_i386 + libcolorblind-dev_0.0.1-1_i386 + libcolorblind0_0.0.1-1_i386 + libcolord-dev_0.1.21-1_i386 + libcolord-gtk-dev_0.1.21-1_i386 + libcolord-gtk1_0.1.21-1_i386 + libcolord1_0.1.21-1_i386 + libcolorhug-dev_0.1.10-1_i386 + libcolorhug1_0.1.10-1_i386 + libcomedi-dev_0.10.0-3_i386 + libcomedi0_0.10.0-3_i386 + libcomerr2_1.42.5-1.1_i386 + libcomerr2-dbg_1.42.5-1.1_i386 + libcommoncpp2-dbg_1.8.1-5_i386 + libcommoncpp2-dev_1.8.1-5_i386 + libcompfaceg1_1:1.5.2-5_i386 + libcompfaceg1-dev_1:1.5.2-5_i386 + libcompress-bzip2-perl_2.09-2+b2_i386 + libcompress-raw-bzip2-perl_2.052-1_i386 + libcompress-raw-zlib-perl_2.052-1_i386 + libconcord-dev_0.24-1.1_i386 + libconcord2_0.24-1.1_i386 + libconfdb-dev_1.4.2-3_i386 + libconfdb4_1.4.2-3_i386 + libconfig++-dbg_1.4.8-5_i386 + libconfig++-dev_1.4.8-5_i386 + libconfig++8-dev_1.4.8-5_i386 + libconfig++9_1.4.8-5_i386 + libconfig-augeas-perl_0.903-1_i386 + libconfig-dbg_1.4.8-5_i386 + libconfig-dev_1.4.8-5_i386 + libconfig-file-ocaml-dev_1.1-1_i386 + libconfig8-dev_1.4.8-5_i386 + libconfig9_1.4.8-5_i386 + libconfuse-dev_2.7-4_i386 + libconfuse0_2.7-4_i386 + libconsole_1:0.2.3dbs-70_i386 + libcontactsdb-dev_0.5-8_i386 + libcontactsdb0_0.5-8_i386 + libcontactsdb0-dbg_0.5-8_i386 + libconvert-binary-c-perl_0.76-1+b2_i386 + libconvert-uulib-perl_1:1.4~dfsg-1+b1_i386 + libcoq-ocaml_8.3.pl4+dfsg-2_i386 + libcoq-ocaml-dev_8.3.pl4+dfsg-2_i386 + libcore-ocaml_107.01-5_i386 + libcore-ocaml-dev_107.01-5_i386 + libcorelinux-dev_0.4.32-7.3_i386 + libcorelinuxc2a_0.4.32-7.3_i386 + libcoro-perl_6.080-3_i386 + libcoroipcc-dev_1.4.2-3_i386 + libcoroipcc4_1.4.2-3_i386 + libcoroipcs-dev_1.4.2-3_i386 + libcoroipcs4_1.4.2-3_i386 + libcos4-1_4.1.6-2_i386 + libcos4-1-dbg_4.1.6-2_i386 + libcos4-dev_4.1.6-2_i386 + libcothreads-ocaml-dev_0.10-3+b3_i386 + libcoyotl-3.1-4_3.1.0-5_i386 + libcoyotl-dev_3.1.0-5_i386 + libcpg-dev_1.4.2-3_i386 + libcpg4_1.4.2-3_i386 + libcpl-dev_6.1.1-2_i386 + libcplcore20_6.1.1-2_i386 + libcpldfs20_6.1.1-2_i386 + libcpldrs20_6.1.1-2_i386 + libcplui20_6.1.1-2_i386 + libcppcutter-dev_1.1.7-1.2_i386 + libcppcutter0_1.1.7-1.2_i386 + libcppunit-1.12-1_1.12.1-4_i386 + libcppunit-dev_1.12.1-4_i386 + libcppunit-subunit-dev_0.0.8+bzr176-1_i386 + libcppunit-subunit0_0.0.8+bzr176-1_i386 + libcpputest-dev_3.1-2_i386 + libcpufreq-dev_008-1_i386 + libcpufreq0_008-1_i386 + libcpuset-dev_1.0-3_i386 + libcpuset1_1.0-3_i386 + libcqrlib2_1.1.2-1_i386 + libcqrlib2-dev_1.1.2-1_i386 + libcr-dbg_0.8.5-2_i386 + libcr-dev_0.8.5-2_i386 + libcr0_0.8.5-2_i386 + libcrack2_2.8.19-3_i386 + libcrack2-dev_2.8.19-3_i386 + libcreal-ocaml-dev_0.7-6+b3_i386 + libcrmcluster1_1.1.7-1_i386 + libcrmcluster1-dev_1.1.7-1_i386 + libcrmcommon2_1.1.7-1_i386 + libcrmcommon2-dev_1.1.7-1_i386 + libcroco-tools_0.6.6-2_i386 + libcroco3_0.6.6-2_i386 + libcroco3-dev_0.6.6-2_i386 + libcry-ocaml-dev_0.2.2-1+b1_i386 + libcrypt-blowfish-perl_2.12-1+b2_i386 + libcrypt-cast5-perl_0.05-1_i386 + libcrypt-des-perl_2.05-2+b3_i386 + libcrypt-dh-gmp-perl_0.00010-1_i386 + libcrypt-eksblowfish-perl_0.008-1+b2_i386 + libcrypt-gcrypt-perl_1.25-1+b1_i386 + libcrypt-mysql-perl_0.04-4+b1_i386 + libcrypt-openssl-bignum-perl_0.04-3_i386 + libcrypt-openssl-dsa-perl_0.13-6_i386 + libcrypt-openssl-random-perl_0.04-1+b4_i386 + libcrypt-openssl-rsa-perl_0.28-1_i386 + libcrypt-openssl-x509-perl_1.8.2-1+b1_i386 + libcrypt-rijndael-perl_1.08-1+b2_i386 + libcrypt-smime-perl_0.10-1+b1_i386 + libcrypt-ssleay-perl_0.58-1_i386 + libcrypt-twofish-perl_2.12-1+b2_i386 + libcrypt-unixcrypt-xs-perl_0.08-1+b3_i386 + libcryptgps-ocaml-dev_0.2.1-7+b3_i386 + libcrypto++-dev_5.6.1-6_i386 + libcrypto++-utils_5.6.1-6_i386 + libcrypto++9_5.6.1-6_i386 + libcrypto++9-dbg_5.6.1-6_i386 + libcryptokit-ocaml_1.5-1_i386 + libcryptokit-ocaml-dev_1.5-1_i386 + libcryptsetup-dev_2:1.4.3-4_i386 + libcryptsetup4_2:1.4.3-4_i386 + libcryptui-dev_3.2.2-1_i386 + libcryptui0a_3.2.2-1_i386 + libcrystalhd-dev_1:0.0~git20110715.fdd2f19-9_i386 + libcrystalhd3_1:0.0~git20110715.fdd2f19-9_i386 + libcsfml-audio1.6_1.6-1_i386 + libcsfml-dev_1.6-1_i386 + libcsfml-graphics1.6_1.6-1_i386 + libcsfml-network1.6_1.6-1_i386 + libcsfml-system1.6_1.6-1_i386 + libcsfml-window1.6_1.6-1_i386 + libcsfml1.6-dbg_1.6-1_i386 + libcsiro0_5.9.9-5_i386 + libcsnd-java_1:5.17.11~dfsg-3_i386 + libcsnd5.2_1:5.17.11~dfsg-3_i386 + libcsoap-dev_1.1.0-17.1_i386 + libcsoap1_1.1.0-17.1_i386 + libcsoap1-dbg_1.1.0-17.1_i386 + libcsound64-5.2_1:5.17.11~dfsg-3_i386 + libcsoundac5.2_1:5.17.11~dfsg-3_i386 + libcsparse2.2.3_1:3.4.0-3_i386 + libcss-minifier-xs-perl_0.07-1+b2_i386 + libcss-parser-pp0_0.85-2_i386 + libcss-parser0_0.85-2_i386 + libcsv-ocaml-dev_1.2.2-1+b1_i386 + libct4_0.91-2+deb7u1_i386 + libctapimkt0_1.0.1-1.1_i386 + libctapimkt0-dev_1.0.1-1.1_i386 + libctdb-dev_1.12+git20120201-4_i386 + libctemplate-dev_2.2-3_i386 + libctemplate2_2.2-3_i386 + libctl-dev_3.1.0-5_i386 + libctl3_3.1.0-5_i386 + libctpl-dev_0.3.3.dfsg-2_i386 + libctpl2_0.3.3.dfsg-2_i386 + libcuba3_3.0+20111124-2_i386 + libcuba3-dbg_3.0+20111124-2_i386 + libcuba3-dev_3.0+20111124-2_i386 + libcudf-dev_0.6.2-1_i386 + libcudf-ocaml-dev_0.6.2-1_i386 + libcue-dev_1.4.0-1_i386 + libcue1_1.4.0-1_i386 + libcunit1_2.1-0.dfsg-10_i386 + libcunit1-dev_2.1-0.dfsg-10_i386 + libcunit1-ncurses_2.1-0.dfsg-10_i386 + libcunit1-ncurses-dev_2.1-0.dfsg-10_i386 + libcups2_1.5.3-5+deb7u1_i386 + libcups2-dev_1.5.3-5+deb7u1_i386 + libcupscgi1_1.5.3-5+deb7u1_i386 + libcupscgi1-dev_1.5.3-5+deb7u1_i386 + libcupsdriver1_1.5.3-5+deb7u1_i386 + libcupsdriver1-dev_1.5.3-5+deb7u1_i386 + libcupsfilters-dev_1.0.18-2.1_i386 + libcupsfilters1_1.0.18-2.1_i386 + libcupsimage2_1.5.3-5+deb7u1_i386 + libcupsimage2-dev_1.5.3-5+deb7u1_i386 + libcupsmime1_1.5.3-5+deb7u1_i386 + libcupsmime1-dev_1.5.3-5+deb7u1_i386 + libcupsppdc1_1.5.3-5+deb7u1_i386 + libcupsppdc1-dev_1.5.3-5+deb7u1_i386 + libcupt2-0_2.5.9_i386 + libcupt2-0-downloadmethod-curl_2.5.9_i386 + libcupt2-0-downloadmethod-wget_2.5.9_i386 + libcupt2-dev_2.5.9_i386 + libcurl-ocaml_0.5.3-2+b1_i386 + libcurl-ocaml-dev_0.5.3-2+b1_i386 + libcurl3_7.26.0-1+wheezy8_i386 + libcurl3-dbg_7.26.0-1+wheezy8_i386 + libcurl3-gnutls_7.26.0-1+wheezy8_i386 + libcurl3-nss_7.26.0-1+wheezy8_i386 + libcurl4-gnutls-dev_7.26.0-1+wheezy8_i386 + libcurl4-nss-dev_7.26.0-1+wheezy8_i386 + libcurl4-openssl-dev_7.26.0-1+wheezy8_i386 + libcurses-ocaml_1.0.3-2_i386 + libcurses-ocaml-dev_1.0.3-2_i386 + libcurses-perl_1.28-1+b2_i386 + libcutter-dev_1.1.7-1.2_i386 + libcutter0_1.1.7-1.2_i386 + libcv-dev_2.3.1-11_i386 + libcv2.3_2.3.1-11_i386 + libcvaux-dev_2.3.1-11_i386 + libcvaux2.3_2.3.1-11_i386 + libcvc3-5_2.4.1-4_i386 + libcvc3-5-jni_2.4.1-4_i386 + libcvc3-dev_2.4.1-4_i386 + libcvector2_1.0.3-1_i386 + libcvector2-dev_1.0.3-1_i386 + libcvm1_0.96-1+b1_i386 + libcvm1-dev_0.96-1+b1_i386 + libcw3_3.0.2-1_i386 + libcw3-dev_3.0.2-1_i386 + libcwidget-dev_0.5.16-3.4_i386 + libcwidget3_0.5.16-3.4_i386 + libcwidget3-dbg_0.5.16-3.4_i386 + libcwiid-dev_0.6.00+svn201-3+b1_i386 + libcwiid1_0.6.00+svn201-3+b1_i386 + libcwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libcwnn0_1.1.1~a021+cvs20100325-6_i386 + libcxgb3-1_1.3.1-1_i386 + libcxgb3-1-dbg_1.3.1-1_i386 + libcxgb3-dev_1.3.1-1_i386 + libcxsparse2.2.3_1:3.4.0-3_i386 + libcxxtools-dev_2.1.1-1_i386 + libcxxtools8_2.1.1-1_i386 + libcyrus-imap-perl24_2.4.16-4+deb7u1_i386 + libdacs-dev_1.4.27b-2_i386 + libdacs1_1.4.27b-2_i386 + libdaemon-dev_0.14-2_i386 + libdaemon0_0.14-2_i386 + libdaemon0-dbg_0.14-2_i386 + libdancer-xml0_0.8.2.1-3_i386 + libdancer-xml0-dev_0.8.2.1-3_i386 + libdap-bin_3.11.1-11_i386 + libdap-dev_3.11.1-11_i386 + libdap11_3.11.1-11_i386 + libdapclient3_3.11.1-11_i386 + libdapl-dev_2.0.19-1.1_i386 + libdapl2_2.0.19-1.1_i386 + libdapserver7_3.11.1-11_i386 + libdaq-dev_0.6.2-2_i386 + libdaq0_0.6.2-2_i386 + libdar-dev_2.4.5.debian.1-1_i386 + libdar64-5_2.4.5.debian.1-1_i386 + libdata-alias-perl_1.16-1_i386 + libdata-clone-perl_0.003-1_i386 + libdata-dump-streamer-perl_2.34-1_i386 + libdata-dumpxml-perl_1.06-1_i386 + libdata-peek-perl_0.38-1_i386 + libdata-streamdeserializer-perl_0.06-1+b2_i386 + libdata-streamserializer-perl_0.07-1+b2_i386 + libdata-structure-util-perl_0.15-2+b2_i386 + libdata-util-perl_0.59-1_i386 + libdata-uuid-libuuid-perl_0.05-1+b2_i386 + libdate-calc-xs-perl_6.3-1_i386 + libdate-pcalc-perl_6.1-1+b2_i386 + libdate-simple-perl_3.03.03-1+b3_i386 + libdatetime-perl_2:0.7500-1_i386 + libdatrie-dev_0.2.5-3_i386 + libdatrie1_0.2.5-3_i386 + libdatrie1-bin_0.2.5-3_i386 + libdb++-dev_5.1.6_i386 + libdb-dev_5.1.6_i386 + libdb-java-dev_5.1.6_i386 + libdb-sql-dev_5.1.6_i386 + libdb1-compat_2.1.3-16_i386 + libdb5.1_5.1.29-5_i386 + libdb5.1++_5.1.29-5_i386 + libdb5.1++-dev_5.1.29-5_i386 + libdb5.1-dbg_5.1.29-5_i386 + libdb5.1-dev_5.1.29-5_i386 + libdb5.1-java-dev_5.1.29-5_i386 + libdb5.1-java-gcj_5.1.29-5_i386 + libdb5.1-java-jni_5.1.29-5_i386 + libdb5.1-sql_5.1.29-5_i386 + libdb5.1-sql-dev_5.1.29-5_i386 + libdb5.1-stl_5.1.29-5_i386 + libdb5.1-stl-dev_5.1.29-5_i386 + libdb5.1-tcl_5.1.29-5_i386 + libdballe-dev_5.18-1_i386 + libdballe5_5.18-1_i386 + libdballef-dev_5.18-1_i386 + libdballef4_5.18-1_i386 + libdbaudiolib0_0.9.8-6.2_i386 + libdbaudiolib0-dev_0.9.8-6.2_i386 + libdbd-firebird-perl_0.91-2+b1_i386 + libdbd-freetds_0.8.3-1+s-5+b1_i386 + libdbd-mysql_0.8.3-1+s-5+b1_i386 + libdbd-mysql-perl_4.021-1+b1_i386 + libdbd-odbc-perl_1.37-1_i386 + libdbd-pg-perl_2.19.2-2_i386 + libdbd-pgsql_0.8.3-1+s-5+b1_i386 + libdbd-sqlite_0.8.3-1+s-5+b1_i386 + libdbd-sqlite2-perl_2:0.33-9+b2_i386 + libdbd-sqlite3_0.8.3-1+s-5+b1_i386 + libdbd-sqlite3-perl_1.37-1_i386 + libdbd-sybase-perl_1.14-1_i386 + libdbi-dev_0.8.4-6_i386 + libdbi-perl_1.622-1_i386 + libdbi1_0.8.4-6_i386 + libdbus-1-3_1.6.8-1+deb7u1_i386 + libdbus-1-dev_1.6.8-1+deb7u1_i386 + libdbus-c++-1-0_0.9.0-6_i386 + libdbus-c++-bin_0.9.0-6_i386 + libdbus-c++-dbg_0.9.0-6_i386 + libdbus-c++-dev_0.9.0-6_i386 + libdbus-glib-1-2_0.100.2-1_i386 + libdbus-glib-1-2-dbg_0.100.2-1_i386 + libdbus-glib-1-dev_0.100.2-1_i386 + libdbus-ocaml_0.29-1+b3_i386 + libdbus-ocaml-dev_0.29-1+b3_i386 + libdbusada0.2_0.2-2_i386 + libdbusada0.2-dbg_0.2-2_i386 + libdbusada0.2-dev_0.2-2_i386 + libdbusmenu-glib-dev_0.6.2-1_i386 + libdbusmenu-glib4_0.6.2-1_i386 + libdbusmenu-gtk-dev_0.6.2-1_i386 + libdbusmenu-gtk3-4_0.6.2-1_i386 + libdbusmenu-gtk3-dev_0.6.2-1_i386 + libdbusmenu-gtk4_0.6.2-1_i386 + libdbusmenu-jsonloader-dev_0.6.2-1_i386 + libdbusmenu-jsonloader4_0.6.2-1_i386 + libdbusmenu-qt-dev_0.9.0-1_i386 + libdbusmenu-qt2_0.9.0-1_i386 + libdbusmenu-tools_0.6.2-1_i386 + libdc-dev_0.3.24~svn3121-2_i386 + libdc1394-22_2.2.0-2_i386 + libdc1394-22-dbg_2.2.0-2_i386 + libdc1394-22-dev_2.2.0-2_i386 + libdc1394-utils_2.2.0-2_i386 + libdc5_0.3.24~svn3121-2_i386 + libdca-dev_0.0.5-5_i386 + libdca-utils_0.0.5-5_i386 + libdca0_0.0.5-5_i386 + libdcap1_2.47.6-2_i386 + libdcerpc-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server-dev_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc-server0_4.0.0~beta2+dfsg1-3.2_i386 + libdcerpc0_4.0.0~beta2+dfsg1-3.2_i386 + libdcmtk2_3.6.0-12_i386 + libdcmtk2-dev_3.6.0-12_i386 + libdconf-dbg_0.12.1-3_i386 + libdconf-dbus-1-0_0.12.1-3_i386 + libdconf-dbus-1-dbg_0.12.1-3_i386 + libdconf-dbus-1-dev_0.12.1-3_i386 + libdconf-dev_0.12.1-3_i386 + libdconf0_0.12.1-3_i386 + libddccontrol-dev_0.4.2-10_i386 + libddccontrol0_0.4.2-10_i386 + libdds-dev_2.1.2+ddd105-1_i386 + libdebconf-kde-dev_0.2-2_i386 + libdebconf-kde0_0.2-2_i386 + libdebconfclient0_0.182_i386 + libdebconfclient0-dev_0.182_i386 + libdebian-installer-extra4_0.87_i386 + libdebian-installer4_0.87_i386 + libdebian-installer4-dev_0.87_i386 + libdebug0_0.4.4-1.1_i386 + libdebug0-dev_0.4.4-1.1_i386 + libdeclarative-connectivity_1.2.0-3_i386 + libdeclarative-contacts_1.2.0-3_i386 + libdeclarative-feedback_1.2.0-3_i386 + libdeclarative-gallery_1.2.0-3_i386 + libdeclarative-location_1.2.0-3_i386 + libdeclarative-messaging_1.2.0-3_i386 + libdeclarative-multimedia_1.2.0-3_i386 + libdeclarative-organizer_1.2.0-3_i386 + libdeclarative-publishsubscribe_1.2.0-3_i386 + libdeclarative-sensors_1.2.0-3_i386 + libdeclarative-serviceframework_1.2.0-3_i386 + libdeclarative-systeminfo_1.2.0-3_i386 + libdecodeqr-dev_0.9.3-6.2_i386 + libdecodeqr-examples_0.9.3-6.2_i386 + libdecodeqr0_0.9.3-6.2_i386 + libdee-1.0-4_1.0.10-3_i386 + libdee-1.0-4-dbg_1.0.10-3_i386 + libdee-dev_1.0.10-3_i386 + libderiving-ocaml_0.1.1a-3+b1_i386 + libderiving-ocaml-dev_0.1.1a-3+b1_i386 + libderiving-ocsigen-ocaml_0.3c-1_i386 + libderiving-ocsigen-ocaml-dev_0.3c-1_i386 + libdesktop-agnostic-bin_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-gconf_0.3.92+dfsg-1_i386 + libdesktop-agnostic-cfg-keyfile_0.3.92+dfsg-1_i386 + libdesktop-agnostic-data_0.3.92+dfsg-1_i386 + libdesktop-agnostic-dev_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-glib_0.3.92+dfsg-1_i386 + libdesktop-agnostic-fdo-gnome_0.3.92+dfsg-1_i386 + libdesktop-agnostic-vfs-gio_0.3.92+dfsg-1_i386 + libdesktop-agnostic0_0.3.92+dfsg-1_i386 + libdesktop-agnostic0-dbg_0.3.92+dfsg-1_i386 + libdessert0.87_0.87.2-1_i386 + libdessert0.87-dev_0.87.2-1_i386 + libdevel-beginlift-perl_0.001003-1_i386 + libdevel-bt-perl_0.05-1+b2_i386 + libdevel-caller-perl_2.05-1+b2_i386 + libdevel-cover-perl_0.89-1_i386 + libdevel-declare-perl_0.006011-1_i386 + libdevel-dprof-perl_20110802.00-1_i386 + libdevel-findref-perl_1.422-1+b2_i386 + libdevel-leak-perl_0.03-2+b1_i386 + libdevel-lexalias-perl_0.04-3+b1_i386 + libdevel-nytprof-perl_4.06-1+b2_i386 + libdevel-pragma-perl_0.54-1_i386 + libdevel-refcount-perl_0.09-1+b2_i386 + libdevel-size-perl_0.77-1+b1_i386 + libdevhelp-3-0_3.4.1-1_i386 + libdevhelp-dev_3.4.1-1_i386 + libdevice-cdio-perl_0.3.0-1_i386 + libdevice-serialport-perl_1.04-2+b3_i386 + libdevice-usb-pcsensor-hidtemper-perl_0.0201-2_i386 + libdevice-usb-perl_0.35-2+b1_i386 + libdevil-dev_1.7.8-6.1+b1_i386 + libdevil1c2_1.7.8-6.1+b1_i386 + libdevmapper-dev_2:1.02.74-8_i386 + libdevmapper-event1.02.1_2:1.02.74-8_i386 + libdevmapper1.02.1_2:1.02.74-8_i386 + libdhash-dev_0.1.3-2_i386 + libdhash1_0.1.3-2_i386 + libdiagnostics-dev_0.3.3-1.3_i386 + libdiagnostics0_0.3.3-1.3_i386 + libdianewcanvas2_0.6.10-5.4_i386 + libdianewcanvas2-dev_0.6.10-5.4_i386 + libdico1_2.1-3+b2_i386 + libdieharder-dev_3.31.1-4_i386 + libdieharder3_3.31.1-4_i386 + libdiet-admin2.8_2.8.0-1+b1_i386 + libdiet-admin2.8-dev_2.8.0-1+b1_i386 + libdiet-client2.8_2.8.0-1+b1_i386 + libdiet-client2.8-dev_2.8.0-1+b1_i386 + libdiet-dagda2.8_2.8.0-1+b1_i386 + libdiet-dagda2.8-dev_2.8.0-1+b1_i386 + libdiet-sed2.8_2.8.0-1+b1_i386 + libdiet-sed2.8-dev_2.8.0-1+b1_i386 + libdigest-crc-perl_0.18-1+b1_i386 + libdigest-jhash-perl_0.06-1+b2_i386 + libdigest-md2-perl_2.03+dfsg-1+b2_i386 + libdigest-md4-perl_1.5.dfsg-2+b2_i386 + libdigest-sha-perl_5.71-2+deb7u1_i386 + libdigest-whirlpool-perl_1.09-1+b1_i386 + libdime_0.20030921-2_i386 + libdirac-decoder0_1.0.2-6_i386 + libdirac-dev_1.0.2-6_i386 + libdirac-encoder0_1.0.2-6_i386 + libdirectfb-1.2-9_1.2.10.0-5_i386 + libdirectfb-1.2-9-dbg_1.2.10.0-5_i386 + libdirectfb-bin_1.2.10.0-5_i386 + libdirectfb-bin-dbg_1.2.10.0-5_i386 + libdirectfb-dev_1.2.10.0-5_i386 + libdirectfb-extra_1.2.10.0-5_i386 + libdirectfb-extra-dbg_1.2.10.0-5_i386 + libdisasm-dev_0.23-5_i386 + libdisasm0_0.23-5_i386 + libdiscid0_0.2.2-3_i386 + libdiscid0-dev_0.2.2-3_i386 + libdiscover-dev_2.1.2-5.2_i386 + libdiscover2_2.1.2-5.2_i386 + libdispatch-dev_0~svn197-3.1_i386 + libdispatch0_0~svn197-3.1_i386 + libdisplaymigration0_0.28-10_i386 + libdisplaymigration0-dbg_0.28-10_i386 + libdisplaymigration0-dev_0.28-10_i386 + libdistorm64-1_1.7.30-1_i386 + libdistorm64-dev_1.7.30-1_i386 + libdivecomputer-dev_0.1.0-3_i386 + libdivecomputer0_0.1.0-3_i386 + libdjconsole-dev_0.1.3-1_i386 + libdjconsole0_0.1.3-1_i386 + libdjvulibre-dev_3.5.25.3-1_i386 + libdjvulibre21_3.5.25.3-1_i386 + libdkim-dev_1:1.0.21-3_i386 + libdkim1d_1:1.0.21-3_i386 + libdkim1d-dbg_1:1.0.21-3_i386 + libdlm-dev_3.0.12-3.2+deb7u2_i386 + libdlm3_3.0.12-3.2+deb7u2_i386 + libdlmcontrol-dev_3.0.12-3.2+deb7u2_i386 + libdlmcontrol3_3.0.12-3.2+deb7u2_i386 + libdlrestrictions-dev_0.15.3_i386 + libdlrestrictions1_0.15.3_i386 + libdm0_2.2.10-1_i386 + libdm0-dev_2.2.10-1_i386 + libdmalloc-dev_5.5.2-5_i386 + libdmalloc5_5.5.2-5_i386 + libdmapsharing-3.0-2_2.9.15-1_i386 + libdmapsharing-3.0-dev_2.9.15-1_i386 + libdmraid-dev_1.0.0.rc16-4.2_i386 + libdmraid1.0.0.rc16_1.0.0.rc16-4.2_i386 + libdmtcpaware-dev_1.2.5-1_i386 + libdmtcpaware1_1.2.5-1_i386 + libdmtx-dev_0.7.2-2+build1_i386 + libdmtx-utils_0.7.2-2+build1_i386 + libdmtx0a_0.7.2-2+build1_i386 + libdmx-dev_1:1.1.2-1+deb7u1_i386 + libdmx1_1:1.1.2-1+deb7u1_i386 + libdmx1-dbg_1:1.1.2-1+deb7u1_i386 + libdnet_2.60_i386 + libdnet-dev_2.60_i386 + libdns88_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libdockapp-dev_1:0.5.0-3_i386 + libdockapp2_1:0.5.0-3_i386 + libdolfin1.0_1.0.0-7_i386 + libdolfin1.0-dbg_1.0.0-7_i386 + libdolfin1.0-dev_1.0.0-7_i386 + libdoodle-dev_0.7.0-5_i386 + libdoodle1_0.7.0-5_i386 + libdose2-ocaml_1.4.2-4+b3_i386 + libdose2-ocaml-dev_1.4.2-4+b3_i386 + libdose3-ocaml_3.0.2-3_i386 + libdose3-ocaml-dev_3.0.2-3_i386 + libdotconf-dev_1.0.13-3_i386 + libdotconf1.0_1.0.13-3_i386 + libdpkg-dev_1.16.12_i386 + libdpm-dev_1.8.2-1+b2_i386 + libdpm-perl_1.8.2-1+b2_i386 + libdpm1_1.8.2-1+b2_i386 + libdr-tarantool-perl_0.15-1+deb70u1_i386 + libdrawtk-dev_2.0-2_i386 + libdrawtk0_2.0-2_i386 + libdrawtk0-dbg_2.0-2_i386 + libdrizzle-dbg_1:7.1.36-stable-1_i386 + libdrizzle4_1:7.1.36-stable-1_i386 + libdrizzledmessage-dev_1:7.1.36-stable-1_i386 + libdrizzledmessage0_1:7.1.36-stable-1_i386 + libdrm-dev_2.4.40-1~deb7u2_i386 + libdrm-intel1_2.4.40-1~deb7u2_i386 + libdrm-intel1-dbg_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a_2.4.40-1~deb7u2_i386 + libdrm-nouveau1a-dbg_2.4.40-1~deb7u2_i386 + libdrm-radeon1_2.4.40-1~deb7u2_i386 + libdrm-radeon1-dbg_2.4.40-1~deb7u2_i386 + libdrm2_2.4.40-1~deb7u2_i386 + libdrm2-dbg_2.4.40-1~deb7u2_i386 + libdrmaa-java_6.2u5-7.1_i386 + libdrumstick-dbg_0.5.0-3_i386 + libdrumstick-dev_0.5.0-3_i386 + libdrumstick0_0.5.0-3_i386 + libdsdp-5.8gf_5.8-9.1_i386 + libdsdp-dev_5.8-9.1_i386 + libdshconfig1_0.20.13-1_i386 + libdshconfig1-dev_0.20.13-1_i386 + libdsocksd0_1.1.19.dfsg-3+b3_i386 + libdspam7_3.10.1+dfsg-11_i386 + libdspam7-dbg_3.10.1+dfsg-11_i386 + libdspam7-dev_3.10.1+dfsg-11_i386 + libdspam7-drv-hash_3.10.1+dfsg-11_i386 + libdspam7-drv-mysql_3.10.1+dfsg-11_i386 + libdspam7-drv-pgsql_3.10.1+dfsg-11_i386 + libdspam7-drv-sqlite3_3.10.1+dfsg-11_i386 + libdssi-ocaml_0.1.0-1+b1_i386 + libdssi-ocaml-dev_0.1.0-1+b1_i386 + libdssialsacompat-dev_1.0.8a-1_i386 + libdssialsacompat0_1.0.8a-1_i386 + libdtools-ocaml-dev_0.3.0-1_i386 + libdts-dev_0.0.5-5_i386 + libdumb1_1:0.9.3-5.4_i386 + libdumb1-dev_1:0.9.3-5.4_i386 + libdumbnet-dev_1.12-3.1_i386 + libdumbnet1_1.12-3.1_i386 + libdune-common-2.2.0_2.2.0-1_i386 + libdune-common-dbg_2.2.0-1_i386 + libdune-common-dev_2.2.0-1_i386 + libdune-geometry-2.2.0_2.2.0-1_i386 + libdune-geometry-dbg_2.2.0-1_i386 + libdune-geometry-dev_2.2.0-1_i386 + libdune-grid-2.2.0_2.2.0-1_i386 + libdune-grid-dbg_2.2.0-1_i386 + libdune-grid-dev_2.2.0-1_i386 + libduo-dev_1.8-1_i386 + libduo3_1.8-1_i386 + libduppy-ocaml_0.4.2-1+b2_i386 + libduppy-ocaml-dev_0.4.2-1+b2_i386 + libdv-bin_1.0.0-6_i386 + libdv4_1.0.0-6_i386 + libdv4-dev_1.0.0-6_i386 + libdvb-dev_0.5.5.1-5.1_i386 + libdvbcsa-dev_1.1.0-2_i386 + libdvbcsa1_1.1.0-2_i386 + libdvbpsi-dev_0.2.2-1_i386 + libdvbpsi7_0.2.2-1_i386 + libdvdnav-dbg_4.2.0+20120524-2_i386 + libdvdnav-dev_4.2.0+20120524-2_i386 + libdvdnav4_4.2.0+20120524-2_i386 + libdvdread-dbg_4.2.0+20120521-2_i386 + libdvdread-dev_4.2.0+20120521-2_i386 + libdvdread4_4.2.0+20120521-2_i386 + libdw-dev_0.152-1+wheezy1_i386 + libdw1_0.152-1+wheezy1_i386 + libdwarf-dev_20120410-2_i386 + libdx4_1:4.4.4-4+b2_i386 + libdx4-dev_1:4.4.4-4+b2_i386 + libdxflib-2.2.0.0_2.2.0.0-8_i386 + libdxflib-2.2.0.0-dbg_2.2.0.0-8_i386 + libdxflib-dev_2.2.0.0-8_i386 + libdynalogin-1-0_0.9.14-2_i386 + libdynamite-dev_0.1.1-2_i386 + libdynamite0_0.1.1-2_i386 + libeasy-format-ocaml_1.0.0-1+b2_i386 + libeasy-format-ocaml-dev_1.0.0-1+b2_i386 + libeb16_4.4.3-6_i386 + libeb16-dev_4.4.3-6_i386 + libebackend-1.2-2_3.4.4-3_i386 + libebackend1.2-dev_3.4.4-3_i386 + libebml-dev_1.2.2-2_i386 + libebml3_1.2.2-2_i386 + libebook-1.2-13_3.4.4-3_i386 + libebook-tools-perl_0.4.9-1_i386 + libebook1.2-dev_3.4.4-3_i386 + libecal-1.2-11_3.4.4-3_i386 + libecal1.2-dev_3.4.4-3_i386 + libecasoundc-dev_2.9.0-1_i386 + libecasoundc1_2.9.0-1_i386 + libechonest-dbg_1.2.1-1_i386 + libechonest-dev_1.2.1-1_i386 + libechonest1.2_1.2.1-1_i386 + libecj-java-gcj_3.5.1-3_i386 + libecm-dev_6.4.2-1_i386 + libecm0_6.4.2-1_i386 + libecore-con1_1.2.0-2_i386 + libecore-dbg_1.2.0-2_i386 + libecore-dev_1.2.0-2_i386 + libecore-evas1_1.2.0-2_i386 + libecore-fb1_1.2.0-2_i386 + libecore-file1_1.2.0-2_i386 + libecore-imf1_1.2.0-2_i386 + libecore-input1_1.2.0-2_i386 + libecore-ipc1_1.2.0-2_i386 + libecore-x1_1.2.0-2_i386 + libecore1_1.2.0-2_i386 + libecpg-compat3_9.1.11-0wheezy1_i386 + libecpg-dev_9.1.11-0wheezy1_i386 + libecpg6_9.1.11-0wheezy1_i386 + libecryptfs-dev_99-1_i386 + libecryptfs0_99-1_i386 + libedac-dev_0.18-1_i386 + libedac1_0.18-1_i386 + libedac1-dbg_0.18-1_i386 + libedata-book-1.2-13_3.4.4-3_i386 + libedata-book1.2-dev_3.4.4-3_i386 + libedata-cal-1.2-15_3.4.4-3_i386 + libedata-cal1.2-dev_3.4.4-3_i386 + libedataserver-1.2-16_3.4.4-3_i386 + libedataserver1.2-dev_3.4.4-3_i386 + libedataserverui-3.0-1_3.4.4-3_i386 + libedataserverui-3.0-dev_3.4.4-3_i386 + libedbus-dev_1.2.0-1_i386 + libedbus1_1.2.0-1_i386 + libedit-dev_2.11-20080614-5_i386 + libedit2_2.11-20080614-5_i386 + libeditline-dev_1.12-6_i386 + libeditline0_1.12-6_i386 + libedje-bin_1.2.0-1_i386 + libedje-dbg_1.2.0-1_i386 + libedje-dev_1.2.0-1_i386 + libedje1_1.2.0-1_i386 + libee-dev_0.4.1-1_i386 + libee0_0.4.1-1_i386 + libeegdev-dev_0.2-3_i386 + libeegdev0_0.2-3_i386 + libeegdev0-dbg_0.2-3_i386 + libeet-bin_1.6.0-1_i386 + libeet-dbg_1.6.0-1_i386 + libeet-dev_1.6.0-1_i386 + libeet1_1.6.0-1_i386 + libefreet-dev_1.2.0-1_i386 + libefreet1_1.2.0-1_i386 + libegl1-mesa_8.0.5-4+deb7u2_i386 + libegl1-mesa-dbg_8.0.5-4+deb7u2_i386 + libegl1-mesa-dev_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers_8.0.5-4+deb7u2_i386 + libegl1-mesa-drivers-dbg_8.0.5-4+deb7u2_i386 + libeigen2-dev_2.0.17-1_i386 + libeigen3-dev_3.1.0-1_i386 + libeina-dbg_1.2.0-2_i386 + libeina-dev_1.2.0-2_i386 + libeina1_1.2.0-2_i386 + libeiskaltdcpp2.2_2.2.6-4_i386 + libeiskaltdcpp2.2-dbg_2.2.6-4_i386 + libelektra-cpp-dev_0.7.1-1_i386 + libelektra-cpp0_0.7.1-1_i386 + libelektra-dev_0.7.1-1_i386 + libelektra3_0.7.1-1_i386 + libelektratools-dev_0.7.1-1_i386 + libelektratools2_0.7.1-1_i386 + libelemental-dev_1.2.0-8_i386 + libelemental0_1.2.0-8_i386 + libelementary-bin_0.7.0.55225-1_i386 + libelementary-dbg_0.7.0.55225-1_i386 + libelementary-dev_0.7.0.55225-1_i386 + libelementary-svn-09_0.7.0.55225-1_i386 + libelf-dev_0.152-1+wheezy1_i386 + libelf1_0.152-1+wheezy1_i386 + libelfg0_0.8.13-3_i386 + libelfg0-dev_0.8.13-3_i386 + libeliom-ocaml_2.2.2-1_i386 + libeliom-ocaml-dev_2.2.2-1_i386 + libelk0_3.99.8-2_i386 + libelk0-dev_3.99.8-2_i386 + libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386 + libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386 + libembryo-bin_1.2.0-1_i386 + libembryo-dbg_1.2.0-1_i386 + libembryo-dev_1.2.0-1_i386 + libembryo1_1.2.0-1_i386 + libemos-data_000382+dfsg-2_i386 + libemos-dev_000382+dfsg-2_i386 + libemos0d_000382+dfsg-2_i386 + libenca-dbg_1.13-4_i386 + libenca-dev_1.13-4_i386 + libenca0_1.13-4_i386 + libenchant-dev_1.6.0-7_i386 + libenchant-voikko_1.6.0-7_i386 + libenchant1c2a_1.6.0-7_i386 + libencode-detect-perl_1.01-2+b2_i386 + libencode-eucjpms-perl_0.07-3_i386 + libencode-hanextra-perl_0.23-2+b2_i386 + libencode-jis2k-perl_0.02-1+b2_i386 + libencode-perl_2.44-1+deb7u1_i386 + libenet-dev_1.3.3-2_i386 + libenet1a_1.3.3-2_i386 + libenet1a-dbg_1.3.3-2_i386 + libengine-pkcs11-openssl_0.1.8-2+b2_i386 + libepc-1.0-3_0.4.4-1_i386 + libepc-dev_0.4.4-1_i386 + libepc-ui-1.0-3_0.4.4-1_i386 + libepc-ui-dev_0.4.4-1_i386 + libepr-api2_2.2-2_i386 + libepsilon-dev_0.9.1-2_i386 + libepsilon0_0.9.1-2_i386 + libept-dev_1.0.9_i386 + libept1.4.12_1.0.9_i386 + libepub-dev_0.2.1-2+b1_i386 + libepub0_0.2.1-2+b1_i386 + liberis-1.3-19_1.3.19-5_i386 + liberis-1.3-19-dbg_1.3.19-5_i386 + liberis-1.3-dev_1.3.19-5_i386 + liberuby_1.0.5-2.1_i386 + liberuby-dev_1.0.5-2.1_i386 + libescpr-dev_1.1.1-2_i386 + libescpr1_1.1.1-2_i386 + libesd0_0.2.41-10+b1_i386 + libesd0-dev_0.2.41-10+b1_i386 + libesmtp-dev_1.0.6-1+b1_i386 + libesmtp6_1.0.6-1+b1_i386 + libespeak-dev_1.46.02-2_i386 + libespeak1_1.46.02-2_i386 + libestools2.1_1:2.1~release-5_i386 + libestools2.1-dev_1:2.1~release-5_i386 + libestr-dev_0.1.1-2_i386 + libestr0_0.1.9-1~bpo70+1_i386 + libethos-1.0-0_0.2.2-3_i386 + libethos-dev_0.2.2-3_i386 + libethos-ui-1.0-0_0.2.2-3_i386 + libethos-ui-dev_0.2.2-3_i386 + libetpan-dbg_1.0-5_i386 + libetpan-dev_1.0-5_i386 + libetpan15_1.0-5_i386 + libetsf-io-dev_1.0.3-4+b1_i386 + libeurodec1-dev_20061220+dfsg3-2_i386 + libeurodec1-gfortran_20061220+dfsg3-2_i386 + libev-dev_1:4.11-1_i386 + libev-perl_4.11-2_i386 + libev4_1:4.11-1_i386 + libeval0_0.29.6-2_i386 + libeval0-dev_0.29.6-2_i386 + libevas-dbg_1.2.0-2_i386 + libevas-dev_1.2.0-2_i386 + libevas1_1.2.0-2_i386 + libevas1-engine-fb_1.2.0-2_i386 + libevas1-engines-core_1.2.0-2_i386 + libevas1-engines-x_1.2.0-2_i386 + libevd-0.1-0_0.1.20-2_i386 + libevd-0.1-dev_0.1.20-2_i386 + libevdocument3-4_3.4.0-3.1_i386 + libevent-2.0-5_2.0.19-stable-3_i386 + libevent-core-2.0-5_2.0.19-stable-3_i386 + libevent-dbg_2.0.19-stable-3_i386 + libevent-dev_2.0.19-stable-3_i386 + libevent-extra-2.0-5_2.0.19-stable-3_i386 + libevent-openssl-2.0-5_2.0.19-stable-3_i386 + libevent-perl_1.15-1+b1_i386 + libevent-pthreads-2.0-5_2.0.19-stable-3_i386 + libeventdb-dev_0.90-5_i386 + libeventdb2_0.90-5_i386 + libeventdb2-dbg_0.90-5_i386 + libevince-dev_3.4.0-3.1_i386 + libevocosm-4.0-4_4.0.2-2.1_i386 + libevocosm-dev_4.0.2-2.1_i386 + libevolution_3.4.4-3_i386 + libevs-dev_1.4.2-3_i386 + libevs4_1.4.2-3_i386 + libevtlog-dev_0.2.12-5_i386 + libevtlog0_0.2.12-5_i386 + libevtlog0-dbg_0.2.12-5_i386 + libevview3-3_3.4.0-3.1_i386 + libewf-dbg_20100226-1+b1_i386 + libewf-dev_20100226-1+b1_i386 + libewf1_20100226-1+b1_i386 + libexactimage-perl_0.8.5-5+deb7u3_i386 + libexchangemapi-1.0-0_3.4.4-1_i386 + libexchangemapi-1.0-dev_3.4.4-1_i386 + libexempi-dev_2.2.0-1_i386 + libexempi3_2.2.0-1_i386 + libexempi3-dbg_2.2.0-1_i386 + libexene-smlnj_110.74-2_i386 + libexif-dev_0.6.20-3_i386 + libexif-gtk-dev_0.3.5-5_i386 + libexif-gtk5_0.3.5-5_i386 + libexif12_0.6.20-3_i386 + libexiv2-12_0.23-1_i386 + libexiv2-dbg_0.23-1_i386 + libexiv2-dev_0.23-1_i386 + libexo-1-0_0.6.2-5_i386 + libexo-1-0-dbg_0.6.2-5_i386 + libexo-1-dev_0.6.2-5_i386 + libexo-helpers_0.6.2-5_i386 + libexodusii-dev_5.14.dfsg.1-2+b1_i386 + libexodusii5_5.14.dfsg.1-2+b1_i386 + libexosip2-7_3.6.0-4_i386 + libexosip2-dev_3.6.0-4_i386 + libexpat-gst_3.2.4-2_i386 + libexpat-ocaml_0.9.1+debian1-7+b2_i386 + libexpat-ocaml-dev_0.9.1+debian1-7+b2_i386 + libexpat1_2.1.0-1+deb7u1_i386 + libexpat1-dev_2.1.0-1+deb7u1_i386 + libexpect-ocaml_0.0.2-1+b6_i386 + libexpect-ocaml-dev_0.0.2-1+b6_i386 + libexpect-php5_0.3.1-1+b1_i386 + libexplain-dev_0.52.D002-1_i386 + libexplain30_0.52.D002-1_i386 + libexplain30-dbg_0.52.D002-1_i386 + libextlib-ocaml_1.5.2-1+b1_i386 + libextlib-ocaml-dev_1.5.2-1+b1_i386 + libextractor-dbg_1:0.6.3-5_i386 + libextractor-dev_1:0.6.3-5_i386 + libextractor-java-dbg_0.6.0-6_i386 + libextractor-java-dev_0.6.0-6_i386 + libextractor-java0_0.6.0-6_i386 + libextractor-plugins_1:0.6.3-5_i386 + libextractor3_1:0.6.3-5_i386 + libexttextcat-dev_3.2.0-2_i386 + libexttextcat0_3.2.0-2_i386 + libextunix-ocaml_0.0.5-2_i386 + libextunix-ocaml-dev_0.0.5-2_i386 + libeztrace-dev_0.7-2-4_i386 + libeztrace0_0.7-2-4_i386 + libf2c2_20090411-2_i386 + libf2c2-dev_20090411-2_i386 + libf95getdata2_0.7.3-6_i386 + libfaad-dev_2.7-8_i386 + libfaad-ocaml_0.3.0-1+b1_i386 + libfaad-ocaml-dev_0.3.0-1+b1_i386 + libfaad2_2.7-8_i386 + libfacile-ocaml-dev_1.1-8+b1_i386 + libfaifa-dev_0.2~svn82-1_i386 + libfaifa0_0.2~svn82-1_i386 + libfakechroot_2.16-1_i386 + libfakekey-dev_0.1-7_i386 + libfakekey0_0.1-7_i386 + libfalcon-engine1_0.9.6.9-git20120606-2_i386 + libfalcon-engine1-dbg_0.9.6.9-git20120606-2_i386 + libfam-dev_2.7.0-17_i386 + libfam-ruby_0.2.0-2.1_i386 + libfam0_2.7.0-17_i386 + libfann-dbg_2.1.0~beta~dfsg-8_i386 + libfann-dev_2.1.0~beta~dfsg-8_i386 + libfann2_2.1.0~beta~dfsg-8_i386 + libfarstream-0.1-0_0.1.2-1_i386 + libfarstream-0.1-dbg_0.1.2-1_i386 + libfarstream-0.1-dev_0.1.2-1_i386 + libfastjet-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran-dev_3.0.2+dfsg-2_i386 + libfastjet-fortran0_3.0.2+dfsg-2_i386 + libfastjet0_3.0.2+dfsg-2_i386 + libfastjetplugins-dev_3.0.2+dfsg-2_i386 + libfastjetplugins0_3.0.2+dfsg-2_i386 + libfastjettools-dev_3.0.2+dfsg-2_i386 + libfastjettools0_3.0.2+dfsg-2_i386 + libfauhdli-dev_20110812-1_i386 + libfbclient2_2.5.2.26540.ds4-1~deb7u1_i386 + libfbclient2-dbg_2.5.2.26540.ds4-1~deb7u1_i386 + libfbembed2.5_2.5.2.26540.ds4-1~deb7u1_i386 + libfcgi-dev_2.4.0-8.1_i386 + libfcgi-perl_0.74-1+b1_i386 + libfcgi-ruby1.8_0.8.8-1_i386 + libfcgi-ruby1.9.1_0.8.8-1_i386 + libfcgi0ldbl_2.4.0-8.1_i386 + libfdt-dev_1.3.0-4_i386 + libfdt1_1.3.0-4_i386 + libfence-dev_3.0.12-3.2+deb7u2_i386 + libfence4_3.0.12-3.2+deb7u2_i386 + libffado-dev_2.0.99+svn2171-2_i386 + libffado2_2.0.99+svn2171-2_i386 + libffcall1_1.10+cvs20100619-2_i386 + libffcall1-dev_1.10+cvs20100619-2_i386 + libffi-dev_3.0.10-3_i386 + libffi5_3.0.10-3_i386 + libffi5-dbg_3.0.10-3_i386 + libffindex0_0.9.6.1-1_i386 + libffindex0-dev_0.9.6.1-1_i386 + libffmpegthumbnailer-dev_2.0.7-2_i386 + libffmpegthumbnailer4_2.0.7-2_i386 + libffms2-2_2.17-1_i386 + libffms2-dev_2.17-1_i386 + libfftw3-3_3.3.2-3.1_i386 + libfftw3-bin_3.3.2-3.1_i386 + libfftw3-dbg_3.3.2-3.1_i386 + libfftw3-dev_3.3.2-3.1_i386 + libfftw3-mpi-dev_3.3.2-3.1_i386 + libfftw3-mpi3_3.3.2-3.1_i386 + libfgetdata2_0.7.3-6_i386 + libfields-camlp4-dev_107.01-1+b2_i386 + libfile-fcntllock-perl_0.14-2_i386 + libfile-fnmatch-perl_0.02-1+b2_i386 + libfile-libmagic-perl_0.96-2_i386 + libfile-mmagic-xs-perl_0.09006-4_i386 + libfile-rsyncp-perl_0.70-1_i386 + libfile-spec-perl_3.3300-1+b2_i386 + libfile-sync-perl_0.11-1_i386 + libfilehandle-fmode-perl_0.11-1+b2_i386 + libfilesys-df-perl_0.92-4+b1_i386 + libfilesys-smbclient-perl_3.1-3+b3_i386 + libfilesys-statvfs-perl_0.82-2+b1_i386 + libfilesystem-ruby1.8_0.5-3.1_i386 + libfilesystem-ruby1.9.1_0.5-3.1_i386 + libfileutils-ocaml-dev_0.4.2-1+b2_i386 + libfilter-perl_1.45-1_i386 + libfindlib-ocaml_1.3.1-1_i386 + libfindlib-ocaml-dev_1.3.1-1_i386 + libfiredns-dev_0.9.12+dfsg-3_i386 + libfiredns0.9_0.9.12+dfsg-3_i386 + libfirestring-dev_0.9.12-8_i386 + libfirestring0.9_0.9.12-8_i386 + libfishsound1_1.0.0-1.1_i386 + libfishsound1-dbg_1.0.0-1.1_i386 + libfishsound1-dev_1.0.0-1.1_i386 + libfiu-dev_0.90-3_i386 + libfiu0_0.90-3_i386 + libfixposix-dev_20110316.git47f17f7-1_i386 + libfixposix0_20110316.git47f17f7-1_i386 + libfko0_2.0.0rc2-2+deb7u2_i386 + libfko0-dbg_2.0.0rc2-2+deb7u2_i386 + libfko0-dev_2.0.0rc2-2+deb7u2_i386 + libflac++-dev_1.2.1-6_i386 + libflac++6_1.2.1-6_i386 + libflac-dev_1.2.1-6_i386 + libflac-ocaml_0.1.1-1_i386 + libflac-ocaml-dev_0.1.1-1_i386 + libflac8_1.2.1-6_i386 + libflake-dev_0.11-2_i386 + libflann-dev_1.7.1-4_i386 + libflann1.7_1.7.1-4_i386 + libflatzebra-0.1-2_0.1.5-4+b1_i386 + libflatzebra-dev_0.1.5-4+b1_i386 + libflite1_1.4-release-6_i386 + libflorist-dbg_2011-1_i386 + libflorist2011_2011-1_i386 + libflorist2011-dev_2011-1_i386 + libflowcanvas-dev_0.7.1+dfsg0-0.2_i386 + libflowcanvas5_0.7.1+dfsg0-0.2_i386 + libfltk-cairo1.3_1.3.0-8_i386 + libfltk-forms1.3_1.3.0-8_i386 + libfltk-gl1.3_1.3.0-8_i386 + libfltk-images1.3_1.3.0-8_i386 + libfltk1.1_1.1.10-14_i386 + libfltk1.1-dbg_1.1.10-14_i386 + libfltk1.1-dev_1.1.10-14_i386 + libfltk1.3_1.3.0-8_i386 + libfltk1.3-dbg_1.3.0-8_i386 + libfltk1.3-dev_1.3.0-8_i386 + libfluidsynth-dev_1.1.5-2_i386 + libfluidsynth1_1.1.5-2_i386 + libfm-dev_0.1.17-2.1_i386 + libfm-gtk-bin_0.1.17-2.1_i386 + libfm-gtk1_0.1.17-2.1_i386 + libfm1_0.1.17-2.1_i386 + libfm1-dbg_0.1.17-2.1_i386 + libfolia1_0.9-2_i386 + libfolia1-dev_0.9-2_i386 + libfolks-dbg_0.6.9-1+b1_i386 + libfolks-dev_0.6.9-1+b1_i386 + libfolks-eds-dbg_0.6.9-1+b1_i386 + libfolks-eds-dev_0.6.9-1+b1_i386 + libfolks-eds25_0.6.9-1+b1_i386 + libfolks-telepathy-dbg_0.6.9-1+b1_i386 + libfolks-telepathy-dev_0.6.9-1+b1_i386 + libfolks-telepathy25_0.6.9-1+b1_i386 + libfolks25_0.6.9-1+b1_i386 + libfont-freetype-perl_0.03-1+b2_i386 + libfontconfig1_2.9.0-7.1_i386 + libfontconfig1-dbg_2.9.0-7.1_i386 + libfontconfig1-dev_2.9.0-7.1_i386 + libfontenc-dev_1:1.1.1-1_i386 + libfontenc1_1:1.1.1-1_i386 + libfontenc1-dbg_1:1.1.1-1_i386 + libfontforge-dev_0.0.20120101+git-2_i386 + libfontforge1_0.0.20120101+git-2_i386 + libforks-perl_0.34-1+b2_i386 + libforms-bin_1.0.93sp1-2_i386 + libforms-dev_1.0.93sp1-2_i386 + libforms2_1.0.93sp1-2_i386 + libformsgl-dev_1.0.93sp1-2_i386 + libformsgl2_1.0.93sp1-2_i386 + libfosfat0_0.4.0-3_i386 + libfosgra0_0.4.0-3_i386 + libfox-1.6-0_1.6.45-1_i386 + libfox-1.6-dev_1.6.45-1_i386 + libfprint-dev_1:0.4.0-4-gdfff16f-4_i386 + libfprint0_1:0.4.0-4-gdfff16f-4_i386 + libfreecell-solver-dev_3.12.0-1_i386 + libfreecell-solver0_3.12.0-1_i386 + libfreefem++_3.19.1-1_i386 + libfreefem++-dev_3.19.1-1_i386 + libfreefem-dev_3.5.8-5_i386 + libfreefem0_3.5.8-5_i386 + libfreehdl0_0.0.7-1.1_i386 + libfreehdl0-dev_0.0.7-1.1_i386 + libfreeimage-dev_3.15.1-1+b1_i386 + libfreeimage3_3.15.1-1+b1_i386 + libfreeimage3-dbg_3.15.1-1+b1_i386 + libfreeipmi-dev_1.1.5-3_i386 + libfreeipmi12_1.1.5-3_i386 + libfreenect-bin_1:0.1.2+dfsg-6_i386 + libfreenect-demos_1:0.1.2+dfsg-6_i386 + libfreenect-dev_1:0.1.2+dfsg-6_i386 + libfreenect0.1_1:0.1.2+dfsg-6_i386 + libfreeradius-dev_2.1.12+dfsg-1.2_i386 + libfreeradius2_2.1.12+dfsg-1.2_i386 + libfreerdp-dev_1.0.1-1.1+deb7u2_i386 + libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_i386 + libfreerdp1_1.0.1-1.1+deb7u2_i386 + libfreetype6_2.4.9-1.1_i386 + libfreetype6-dev_2.4.9-1.1_i386 + libfreexl-dev_1.0.0b-1_i386 + libfreexl1_1.0.0b-1_i386 + libfreexl1-dbg_1.0.0b-1_i386 + libfreeze34_3.4.2-8.2_i386 + libfribidi-bin_0.19.2-3_i386 + libfribidi-dev_0.19.2-3_i386 + libfribidi0_0.19.2-3_i386 + libfs-dev_2:1.0.4-1+deb7u1_i386 + libfs6_2:1.0.4-1+deb7u1_i386 + libfs6-dbg_2:1.0.4-1+deb7u1_i386 + libfso-glib-dbg_2012.05.24.1-1.1_i386 + libfso-glib-dev_2012.05.24.1-1.1_i386 + libfso-glib1_2012.05.24.1-1.1_i386 + libfsobasics-dbg_0.11.0-1.1_i386 + libfsobasics-dev_0.11.0-1.1_i386 + libfsobasics0_0.11.0-1.1_i386 + libfsoframework-dbg_0.11.0-1.1_i386 + libfsoframework-dev_0.11.0-1.1_i386 + libfsoframework0_0.11.0-1.1_i386 + libfsoresource-dbg_0.11.0-1.1_i386 + libfsoresource-dev_0.11.0-1.1_i386 + libfsoresource0_0.11.0-1.1_i386 + libfsosystem-dbg_0.11.0-1_i386 + libfsosystem-dev_0.11.0-1_i386 + libfsosystem0_0.11.0-1_i386 + libfsotransport-dbg_0.11.1-2.1_i386 + libfsotransport-dev_0.11.1-2.1_i386 + libfsotransport3_0.11.1-2.1_i386 + libfsplib-dev_0.11-2_i386 + libfsplib0_0.11-2_i386 + libfstrcmp-dev_0.4.D001-1+deb7u1_i386 + libfstrcmp0_0.4.D001-1+deb7u1_i386 + libfstrcmp0-dbg_0.4.D001-1+deb7u1_i386 + libftdi-dev_0.20-1+b1_i386 + libftdi1_0.20-1+b1_i386 + libftdi1-dbg_0.20-1+b1_i386 + libftdipp-dev_0.20-1+b1_i386 + libftdipp1_0.20-1+b1_i386 + libftdipp1-dbg_0.20-1+b1_i386 + libftgl-dev_2.1.3~rc5-4_i386 + libftgl2_2.1.3~rc5-4_i386 + libfuntools-dev_1.4.4-3_i386 + libfuntools1_1.4.4-3_i386 + libfuse-dev_2.9.0-2+deb7u1_i386 + libfuse-perl_0.15.1-2_i386 + libfuse2_2.9.0-2+deb7u1_i386 + libfuzzy-dev_2.7-2_i386 + libfuzzy2_2.7-2_i386 + libfuzzy2-dbg_2.7-2_i386 + libfxt-dev_0.2.6-2_i386 + libfxt0_0.2.6-2_i386 + libg15-1_1.2.7-2_i386 + libg15-dev_1.2.7-2_i386 + libg15daemon-client-dev_1.9.5.3-8.2_i386 + libg15daemon-client1_1.9.5.3-8.2_i386 + libg15render-dev_1.3.0~svn316-2.2_i386 + libg15render1_1.3.0~svn316-2.2_i386 + libg2-dev_0.72-2.1_i386 + libg20_0.72-2.1_i386 + libg20-perl_0.72-2.1_i386 + libg3d-dbg_0.0.8-17_i386 + libg3d-dev_0.0.8-17_i386 + libg3d-plugin-gdkpixbuf_0.0.8-17_i386 + libg3d-plugins_0.0.8-17_i386 + libg3d0_0.0.8-17_i386 + libga-dev_2.4.7-3_i386 + libga2_2.4.7-3_i386 + libgadap-dev_2.0-1_i386 + libgadu-dev_1:1.11.2-1_i386 + libgadu3_1:1.11.2-1_i386 + libgadu3-dbg_1:1.11.2-1_i386 + libgail-3-0_3.4.2-7_i386 + libgail-3-0-dbg_3.4.2-7_i386 + libgail-3-dev_3.4.2-7_i386 + libgail-common_2.24.10-2_i386 + libgail-dbg_2.24.10-2_i386 + libgail-dev_2.24.10-2_i386 + libgail18_2.24.10-2_i386 + libgalax-ocaml-dev_1.1-10+b3_i386 + libgambc4_4.2.8-1.1_i386 + libgambc4-dev_4.2.8-1.1_i386 + libgamin-dev_0.1.10-4.1_i386 + libgamin0_0.1.10-4.1_i386 + libgammu-dbg_1.31.90-1+b1_i386 + libgammu-dev_1.31.90-1+b1_i386 + libgammu7_1.31.90-1+b1_i386 + libganglia1_3.3.8-1+nmu1_i386 + libganglia1-dev_3.3.8-1+nmu1_i386 + libganv-1-1_0~svn4468~dfsg0-1_i386 + libganv-dev_0~svn4468~dfsg0-1_i386 + libgarcon-1-0_0.1.12-1_i386 + libgarcon-1-0-dbg_0.1.12-1_i386 + libgarcon-1-0-dev_0.1.12-1_i386 + libgarmin-dev_0~svn320-3_i386 + libgarmin0_0~svn320-3_i386 + libgatos-dev_0.0.5-19_i386 + libgatos0_0.0.5-19_i386 + libgauche-0.9-0_0.9.1-5.1_i386 + libgavl-dev_1.4.0-1_i386 + libgavl-ocaml_0.1.4-1+b1_i386 + libgavl-ocaml-dev_0.1.4-1+b1_i386 + libgavl1_1.4.0-1_i386 + libgavl1-dbg_1.4.0-1_i386 + libgbm-dev_8.0.5-4+deb7u2_i386 + libgbm1_8.0.5-4+deb7u2_i386 + libgbm1-dbg_8.0.5-4+deb7u2_i386 + libgc-dev_1:7.1-9.1_i386 + libgc1c2_1:7.1-9.1_i386 + libgcal-dev_0.9.6-3_i386 + libgcal0_0.9.6-3_i386 + libgcc1_1:4.7.2-5_i386 + libgcc1-dbg_1:4.7.2-5_i386 + libgccxml-dev_0.9.0+cvs20120420-4_i386 + libgcgi-dev_0.9.5.dfsg-7_i386 + libgcgi0_0.9.5.dfsg-7_i386 + libgcj-bc_4.7.2-1_i386 + libgcj12_4.6.3-1_i386 + libgcj12-awt_4.6.3-1_i386 + libgcj12-dbg_4.6.3-1_i386 + libgcj12-dev_4.6.3-1_i386 + libgcj13_4.7.2-3_i386 + libgcj13-awt_4.7.2-3_i386 + libgcj13-dbg_4.7.2-3_i386 + libgcj13-dev_4.7.2-3_i386 + libgck-1-0_3.4.1-3_i386 + libgck-1-dev_3.4.1-3_i386 + libgconf-2-4_3.2.5-1+build1_i386 + libgconf-bridge-dev_0.1-2.2_i386 + libgconf-bridge0_0.1-2.2_i386 + libgconf2-4_3.2.5-1+build1_i386 + libgconf2-dev_3.2.5-1+build1_i386 + libgconfmm-2.6-1c2_2.28.0-1_i386 + libgconfmm-2.6-dev_2.28.0-1_i386 + libgcr-3-1_3.4.1-3_i386 + libgcr-3-dev_3.4.1-3_i386 + libgcr410_2.4.0-9.2_i386 + libgcroots-dev_0.8.5-2.1_i386 + libgcroots0_0.8.5-2.1_i386 + libgcrypt11_1.5.0-5+deb7u1_i386 + libgcrypt11-dbg_1.5.0-5+deb7u1_i386 + libgcrypt11-dev_1.5.0-5+deb7u1_i386 + libgctp-dev_1.0-1_i386 + libgctp0d_1.0-1_i386 + libgcu-dbg_0.12.12-1_i386 + libgcu0_0.12.12-1_i386 + libgd-gd2-noxpm-ocaml_1.0~alpha5-5_i386 + libgd-gd2-noxpm-ocaml-dev_1.0~alpha5-5_i386 + libgd-gd2-noxpm-perl_1:2.46-2+b1_i386 + libgd-gd2-perl_1:2.46-3+b1_i386 + libgd-tools_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-noxpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm_2.0.36~rc1~dfsg-6.1_i386 + libgd2-xpm-dev_2.0.36~rc1~dfsg-6.1_i386 + libgda-5.0-4_5.0.3-2_i386 + libgda-5.0-4-dbg_5.0.3-2_i386 + libgda-5.0-bin_5.0.3-2_i386 + libgda-5.0-dev_5.0.3-2_i386 + libgda-5.0-mysql_5.0.3-2_i386 + libgda-5.0-postgres_5.0.3-2_i386 + libgdal-dev_1.9.0-3.1_i386 + libgdal-perl_1.9.0-3.1_i386 + libgdal-ruby_1.9.0-3.1_i386 + libgdal-ruby1.8_1.9.0-3.1_i386 + libgdal1_1.9.0-3.1_i386 + libgdal1-1.9.0-grass_1.9.0-1+b2_i386 + libgdata-dev_0.12.0-1_i386 + libgdata13_0.12.0-1_i386 + libgdb-dev_7.4.1+dfsg-0.1_i386 + libgdbm-dev_1.8.3-11_i386 + libgdbm-gst_3.2.4-2_i386 + libgdbm3_1.8.3-11_i386 + libgdbussyncevo0_1.2.99.1-1.1_i386 + libgdchart-gd2-noxpm_0.11.5-7+b1_i386 + libgdchart-gd2-noxpm-dev_0.11.5-7+b1_i386 + libgdchart-gd2-xpm_0.11.5-7+b1_i386 + libgdchart-gd2-xpm-dev_0.11.5-7+b1_i386 + libgdcm-cil_2.2.0-14.1_i386 + libgdcm-java_2.2.0-14.1_i386 + libgdcm-tools_2.2.0-14.1_i386 + libgdcm2-dev_2.2.0-14.1_i386 + libgdcm2.2_2.2.0-14.1_i386 + libgdcm2.2-dbg_2.2.0-14.1_i386 + libgdf-dev_0.1.2-2_i386 + libgdf0_0.1.2-2_i386 + libgdf0-dbg_0.1.2-2_i386 + libgdict-1.0-6_3.4.0-2_i386 + libgdict-1.0-dev_3.4.0-2_i386 + libgdiplus_2.10-3+b1_i386 + libgdk-pixbuf2.0-0_2.26.1-1_i386 + libgdk-pixbuf2.0-dev_2.26.1-1_i386 + libgdkcutter-pixbuf-dev_1.1.7-1.2_i386 + libgdkcutter-pixbuf0_1.1.7-1.2_i386 + libgdl-3-2_3.4.2-1_i386 + libgdl-3-dbg_3.4.2-1_i386 + libgdl-3-dev_3.4.2-1_i386 + libgdome2-0_0.8.1+debian-4.1_i386 + libgdome2-cpp-smart-dev_0.2.6-6+b1_i386 + libgdome2-cpp-smart0c2a_0.2.6-6+b1_i386 + libgdome2-dev_0.8.1+debian-4.1_i386 + libgdome2-ocaml_0.2.6-6+b1_i386 + libgdome2-ocaml-dev_0.2.6-6+b1_i386 + libgdraw4_0.0.20120101+git-2_i386 + libgdu-dev_3.0.2-3_i386 + libgdu-gtk-dev_3.0.2-3_i386 + libgdu-gtk0_3.0.2-3_i386 + libgdu0_3.0.2-3_i386 + libgeant321-2-dev_1:3.21.14.dfsg-10_i386 + libgeant321-2-gfortran_1:3.21.14.dfsg-10_i386 + libgearman-dbg_0.33-2_i386 + libgearman-dev_0.33-2_i386 + libgearman6_0.33-2_i386 + libgecode-dev_3.7.3-1_i386 + libgecode32_3.7.3-1_i386 + libgecodeflatzinc32_3.7.3-1_i386 + libgecodegist32_3.7.3-1_i386 + libgeda-dev_1:1.6.2-4.3_i386 + libgeda38_1:1.6.2-4.3_i386 + libgee-dev_0.6.4-2_i386 + libgee2_0.6.4-2_i386 + libgee2-dbg_0.6.4-2_i386 + libgegl-0.2-0_0.2.0-2+nmu1_i386 + libgegl-0.2-0-dbg_0.2.0-2+nmu1_i386 + libgegl-dev_0.2.0-2+nmu1_i386 + libgeier-dev_0.13-1+b1_i386 + libgeier0_0.13-1+b1_i386 + libgemanx-core0_0.1.0.3-2_i386 + libgempc410_1.0.7-1_i386 + libgempc430_1.0.7-1_i386 + libgenders-perl_1.18-1_i386 + libgenders0_1.18-1_i386 + libgenders0-dev_1.18-1_i386 + libgenome-1.3-0_1.3.1-3_i386 + libgenome-1.3-0-dev_1.3.1-3_i386 + libgensec-dev_4.0.0~beta2+dfsg1-3.2_i386 + libgensec0_4.0.0~beta2+dfsg1-3.2_i386 + libgeo-distance-xs-perl_0.11-1_i386 + libgeo-ip-perl_1.40-2_i386 + libgeo-proj4-perl_1.03-1_i386 + libgeoclue-dev_0.12.0-4_i386 + libgeoclue0_0.12.0-4_i386 + libgeocode-glib-dbg_0.99.0-1_i386 + libgeocode-glib-dev_0.99.0-1_i386 + libgeocode-glib0_0.99.0-1_i386 + libgeographiclib-dev_1.21-1_i386 + libgeographiclib9_1.21-1_i386 + libgeoip-dev_1.4.8+dfsg-3_i386 + libgeoip1_1.4.8+dfsg-3_i386 + libgeomview-1.9.4_1.9.4-3_i386 + libgeomview-dev_1.9.4-3_i386 + libgeos++-dev_3.3.3-1.1_i386 + libgeos-3.3.3_3.3.3-1.1_i386 + libgeos-c1_3.3.3-1.1_i386 + libgeos-dbg_3.3.3-1.1_i386 + libgeos-dev_3.3.3-1.1_i386 + libgeos-ruby1.8_3.3.3-1.1_i386 + libgeotiff-dev_1.3.0+dfsg-3_i386 + libgeotiff2_1.3.0+dfsg-3_i386 + libgeotranz3-dev_3.1-2.1_i386 + libgeotranz3.1_3.1-2.1_i386 + libges-0.10-0_0.10.1-2_i386 + libges-0.10-dev_0.10.1-2_i386 + libgetdata++2_0.7.3-6_i386 + libgetdata-dev_0.7.3-6_i386 + libgetdata-tools_0.7.3-6_i386 + libgetdata4_0.7.3-6_i386 + libgetfem++-dbg_4.1.1+dfsg1-11_i386 + libgetfem++-dev_4.1.1+dfsg1-11_i386 + libgetfem4++_4.1.1+dfsg1-11_i386 + libgetopt++-dev_0.0.2-p22-3_i386 + libgetopt++1_0.0.2-p22-3_i386 + libgetopt-ocaml-dev_0.0.20040811-10+b3_i386 + libgettext-ocaml_0.3.4-1+b2_i386 + libgettext-ocaml-dev_0.3.4-1+b2_i386 + libgettextpo0_0.18.1.1-9_i386 + libgexiv2-1_0.4.1-3_i386 + libgexiv2-1-dbg_0.4.1-3_i386 + libgexiv2-dev_0.4.1-3_i386 + libgfarm-dev_2.4.1-1.1_i386 + libgfarm1_2.4.1-1.1_i386 + libgflags-dev_2.0-1_i386 + libgflags2_2.0-1_i386 + libgfortran3_4.7.2-5_i386 + libgfortran3-dbg_4.7.2-5_i386 + libgfshare-bin_1.0.5-2_i386 + libgfshare-dbg_1.0.5-2_i386 + libgfshare-dev_1.0.5-2_i386 + libgfshare1_1.0.5-2_i386 + libghc-acid-state-dev_0.6.3-1+b2_i386 + libghc-acid-state-prof_0.6.3-1+b2_i386 + libghc-active-dev_0.1.0.1-2+b2_i386 + libghc-active-prof_0.1.0.1-2+b2_i386 + libghc-adjunctions-dev_2.4.0.2-1_i386 + libghc-adjunctions-prof_2.4.0.2-1_i386 + libghc-aeson-dev_0.6.0.2-1+b4_i386 + libghc-aeson-prof_0.6.0.2-1+b4_i386 + libghc-agda-dev_2.3.0.1-2_i386 + libghc-algebra-dev_2.1.1.2-1_i386 + libghc-algebra-prof_2.1.1.2-1_i386 + libghc-alut-dev_2.1.0.2-4+b1_i386 + libghc-alut-prof_2.1.0.2-4+b1_i386 + libghc-ami-dev_0.1-1+b5_i386 + libghc-ami-prof_0.1-1+b5_i386 + libghc-ansi-terminal-dev_0.5.5-3+b1_i386 + libghc-ansi-terminal-prof_0.5.5-3+b1_i386 + libghc-ansi-wl-pprint-dev_0.6.4-1+b1_i386 + libghc-ansi-wl-pprint-prof_0.6.4-1+b1_i386 + libghc-arrows-dev_0.4.4.0-3+b1_i386 + libghc-arrows-prof_0.4.4.0-3+b1_i386 + libghc-asn1-data-dev_0.6.1.3-2+b3_i386 + libghc-asn1-data-prof_0.6.1.3-2+b3_i386 + libghc-attempt-dev_0.4.0-1+b2_i386 + libghc-attempt-prof_0.4.0-1+b2_i386 + libghc-attoparsec-conduit-dev_0.4.0.1-1_i386 + libghc-attoparsec-conduit-prof_0.4.0.1-1_i386 + libghc-attoparsec-dev_0.10.1.1-2+b1_i386 + libghc-attoparsec-enumerator-dev_0.3-3+b3_i386 + libghc-attoparsec-enumerator-prof_0.3-3+b3_i386 + libghc-attoparsec-prof_0.10.1.1-2+b1_i386 + libghc-augeas-dev_0.6.1-1_i386 + libghc-augeas-prof_0.6.1-1_i386 + libghc-authenticate-dev_1.2.1.1-2+b1_i386 + libghc-authenticate-prof_1.2.1.1-2+b1_i386 + libghc-base-unicode-symbols-dev_0.2.2.3-1+b1_i386 + libghc-base-unicode-symbols-prof_0.2.2.3-1+b1_i386 + libghc-base16-bytestring-dev_0.1.1.4-2+b1_i386 + libghc-base16-bytestring-prof_0.1.1.4-2+b1_i386 + libghc-base64-bytestring-dev_0.1.1.1-2_i386 + libghc-base64-bytestring-prof_0.1.1.1-2_i386 + libghc-bifunctors-dev_0.1.3.3-1+b1_i386 + libghc-bifunctors-prof_0.1.3.3-1+b1_i386 + libghc-binary-shared-dev_0.8.1-1+b1_i386 + libghc-binary-shared-prof_0.8.1-1+b1_i386 + libghc-bindings-dsl-dev_1.0.15-1+b1_i386 + libghc-bindings-gpgme-dev_0.1.4-1_i386 + libghc-bindings-gpgme-prof_0.1.4-1_i386 + libghc-bindings-libzip-dev_0.10-2_i386 + libghc-bindings-libzip-prof_0.10-2_i386 + libghc-bitarray-dev_0.0.1-2+b1_i386 + libghc-bitarray-prof_0.0.1-2+b1_i386 + libghc-blaze-builder-conduit-dev_0.4.0.2-1_i386 + libghc-blaze-builder-conduit-prof_0.4.0.2-1_i386 + libghc-blaze-builder-dev_0.3.1.0-1+b2_i386 + libghc-blaze-builder-enumerator-dev_0.2.0.4-1+b1_i386 + libghc-blaze-builder-enumerator-prof_0.2.0.4-1+b1_i386 + libghc-blaze-builder-prof_0.3.1.0-1+b2_i386 + libghc-blaze-html-dev_0.4.3.1-3+b2_i386 + libghc-blaze-html-prof_0.4.3.1-3+b2_i386 + libghc-blaze-markup-dev_0.5.1.0-1_i386 + libghc-blaze-markup-prof_0.5.1.0-1_i386 + libghc-blaze-textual-dev_0.2.0.6-2+b2_i386 + libghc-blaze-textual-prof_0.2.0.6-2+b2_i386 + libghc-bloomfilter-dev_1.2.6.8-1_i386 + libghc-bloomfilter-prof_1.2.6.8-1_i386 + libghc-boolean-dev_0.0.1-2+b1_i386 + libghc-boolean-prof_0.0.1-2+b1_i386 + libghc-boomerang-dev_1.3.1-1_i386 + libghc-boomerang-prof_1.3.1-1_i386 + libghc-brainfuck-dev_0.1-2+b2_i386 + libghc-brainfuck-prof_0.1-2+b2_i386 + libghc-byteorder-dev_1.0.3-2+b1_i386 + libghc-byteorder-prof_1.0.3-2+b1_i386 + libghc-bytestring-lexing-dev_0.4.0-1+b1_i386 + libghc-bytestring-lexing-prof_0.4.0-1+b1_i386 + libghc-bytestring-mmap-dev_0.2.2-2+b1_i386 + libghc-bytestring-mmap-prof_0.2.2-2+b1_i386 + libghc-bytestring-nums-dev_0.3.5-2+b1_i386 + libghc-bytestring-nums-prof_0.3.5-2+b1_i386 + libghc-bytestring-show-dev_0.3.5.1-1+b1_i386 + libghc-bytestring-show-prof_0.3.5.1-1+b1_i386 + libghc-bzlib-dev_0.5.0.3-2+b1_i386 + libghc-bzlib-prof_0.5.0.3-2+b1_i386 + libghc-cabal-file-th-dev_0.2.2-1_i386 + libghc-cabal-file-th-prof_0.2.2-1_i386 + libghc-cairo-dev_0.12.3-1+b1_i386 + libghc-cairo-prof_0.12.3-1+b1_i386 + libghc-case-insensitive-dev_0.4.0.1-2+b2_i386 + libghc-case-insensitive-prof_0.4.0.1-2+b2_i386 + libghc-categories-dev_1.0.3-1+b1_i386 + libghc-categories-prof_1.0.3-1+b1_i386 + libghc-cautious-file-dev_1.0.1-1_i386 + libghc-cautious-file-prof_1.0.1-1_i386 + libghc-cereal-conduit-dev_0.5-1+b1_i386 + libghc-cereal-conduit-prof_0.5-1+b1_i386 + libghc-cereal-dev_0.3.5.2-1_i386 + libghc-cereal-prof_0.3.5.2-1_i386 + libghc-certificate-dev_1.2.3-2_i386 + libghc-certificate-prof_1.2.3-2_i386 + libghc-cgi-dev_3001.1.8.2-2+b3_i386 + libghc-cgi-prof_3001.1.8.2-2+b3_i386 + libghc-chart-dev_0.15-1+b2_i386 + libghc-chart-prof_0.15-1+b2_i386 + libghc-chell-dev_0.3-1_i386 + libghc-chell-prof_0.3-1_i386 + libghc-citeproc-hs-dev_0.3.4-1+b4_i386 + libghc-citeproc-hs-prof_0.3.4-1+b4_i386 + libghc-clientsession-dev_0.7.5-3+b1_i386 + libghc-clientsession-prof_0.7.5-3+b1_i386 + libghc-clock-dev_0.2.0.0-2+b1_i386 + libghc-clock-prof_0.2.0.0-2+b1_i386 + libghc-cmdargs-dev_0.9.5-1+b1_i386 + libghc-cmdargs-prof_0.9.5-1+b1_i386 + libghc-colour-dev_2.3.3-1+b1_i386 + libghc-colour-prof_2.3.3-1+b1_i386 + libghc-comonad-dev_1.1.1.5-1+b1_i386 + libghc-comonad-prof_1.1.1.5-1+b1_i386 + libghc-comonad-transformers-dev_2.1.1.1-1+b1_i386 + libghc-comonad-transformers-prof_2.1.1.1-1+b1_i386 + libghc-comonads-fd-dev_2.1.1.2-1+b1_i386 + libghc-comonads-fd-prof_2.1.1.2-1+b1_i386 + libghc-conduit-dev_0.4.2-2_i386 + libghc-conduit-prof_0.4.2-2_i386 + libghc-configfile-dev_1.0.6-4+b3_i386 + libghc-configfile-prof_1.0.6-4+b3_i386 + libghc-configurator-dev_0.2.0.0-1+b2_i386 + libghc-configurator-prof_0.2.0.0-1+b2_i386 + libghc-contravariant-dev_0.2.0.2-1+b1_i386 + libghc-contravariant-prof_0.2.0.2-1+b1_i386 + libghc-convertible-dev_1.0.11.0-3+b3_i386 + libghc-convertible-prof_1.0.11.0-3+b3_i386 + libghc-cookie-dev_0.4.0-1+b3_i386 + libghc-cookie-prof_0.4.0-1+b3_i386 + libghc-cpphs-dev_1.13.3-2+b1_i386 + libghc-cpphs-prof_1.13.3-2+b1_i386 + libghc-cprng-aes-dev_0.2.3-3+b4_i386 + libghc-cprng-aes-prof_0.2.3-3+b4_i386 + libghc-cpu-dev_0.1.1-1_i386 + libghc-cpu-prof_0.1.1-1_i386 + libghc-criterion-dev_0.6.0.1-3+b4_i386 + libghc-criterion-prof_0.6.0.1-3+b4_i386 + libghc-crypto-api-dev_0.10.2-1+b2_i386 + libghc-crypto-api-prof_0.10.2-1+b2_i386 + libghc-crypto-conduit-dev_0.3.2-1+b1_i386 + libghc-crypto-conduit-prof_0.3.2-1+b1_i386 + libghc-crypto-dev_4.2.4-1+b1_i386 + libghc-crypto-prof_4.2.4-1+b1_i386 + libghc-crypto-pubkey-types-dev_0.1.1-1+b3_i386 + libghc-crypto-pubkey-types-prof_0.1.1-1+b3_i386 + libghc-cryptocipher-dev_0.3.5-1+b1_i386 + libghc-cryptocipher-prof_0.3.5-1+b1_i386 + libghc-cryptohash-dev_0.7.5-1+b2_i386 + libghc-cryptohash-prof_0.7.5-1+b2_i386 + libghc-css-text-dev_0.1.1-3+b2_i386 + libghc-css-text-prof_0.1.1-3+b2_i386 + libghc-csv-conduit-dev_0.2-1_i386 + libghc-csv-conduit-prof_0.2-1_i386 + libghc-csv-dev_0.1.2-2+b3_i386 + libghc-csv-prof_0.1.2-2+b3_i386 + libghc-curl-dev_1.3.7-1+b1_i386 + libghc-curl-prof_1.3.7-1+b1_i386 + libghc-darcs-dev_2.8.1-1+b1_i386 + libghc-darcs-prof_2.8.1-1+b1_i386 + libghc-data-accessor-dev_0.2.2.2-1+b1_i386 + libghc-data-accessor-mtl-dev_0.2.0.3-1+b1_i386 + libghc-data-accessor-mtl-prof_0.2.0.3-1+b1_i386 + libghc-data-accessor-prof_0.2.2.2-1+b1_i386 + libghc-data-accessor-template-dev_0.2.1.9-1+b2_i386 + libghc-data-accessor-template-prof_0.2.1.9-1+b2_i386 + libghc-data-binary-ieee754-dev_0.4.2.1-3+b1_i386 + libghc-data-binary-ieee754-prof_0.4.2.1-3+b1_i386 + libghc-data-default-dev_0.4.0-1_i386 + libghc-data-default-prof_0.4.0-1_i386 + libghc-data-inttrie-dev_0.0.7-1+b1_i386 + libghc-data-inttrie-prof_0.0.7-1+b1_i386 + libghc-data-lens-dev_2.10.0-1+b1_i386 + libghc-data-lens-prof_2.10.0-1+b1_i386 + libghc-data-memocombinators-dev_0.4.3-1+b1_i386 + libghc-data-memocombinators-prof_0.4.3-1+b1_i386 + libghc-dataenc-dev_0.14.0.3-1+b1_i386 + libghc-dataenc-prof_0.14.0.3-1+b1_i386 + libghc-datetime-dev_0.2.1-3_i386 + libghc-datetime-prof_0.2.1-3_i386 + libghc-dbus-dev_0.10.3-1_i386 + libghc-dbus-prof_0.10.3-1_i386 + libghc-debian-dev_3.64-3_i386 + libghc-debian-prof_3.64-3_i386 + libghc-diagrams-cairo-dev_0.5.0.2-1_i386 + libghc-diagrams-cairo-prof_0.5.0.2-1_i386 + libghc-diagrams-core-dev_0.5.0.1-1+b1_i386 + libghc-diagrams-core-prof_0.5.0.1-1+b1_i386 + libghc-diagrams-lib-dev_0.5-2_i386 + libghc-diagrams-lib-prof_0.5-2_i386 + libghc-diff-dev_0.1.3-1+b1_i386 + libghc-diff-prof_0.1.3-1+b1_i386 + libghc-digest-dev_0.0.1.0-1+b1_i386 + libghc-digest-prof_0.0.1.0-1+b1_i386 + libghc-dimensional-dev_0.10.1.2-2+b1_i386 + libghc-dimensional-prof_0.10.1.2-2+b1_i386 + libghc-directory-tree-dev_0.10.0-2+b1_i386 + libghc-directory-tree-prof_0.10.0-2+b1_i386 + libghc-distributive-dev_0.2.2-1+b1_i386 + libghc-distributive-prof_0.2.2-1+b1_i386 + libghc-dlist-dev_0.5-3+b1_i386 + libghc-dlist-prof_0.5-3+b1_i386 + libghc-download-curl-dev_0.1.3-3+b3_i386 + libghc-download-curl-prof_0.1.3-3+b3_i386 + libghc-dpkg-dev_0.0.3-1_i386 + libghc-dpkg-prof_0.0.3-1_i386 + libghc-dyre-dev_0.8.7-1_i386 + libghc-dyre-prof_0.8.7-1_i386 + libghc-edison-api-dev_1.2.1-18+b1_i386 + libghc-edison-api-prof_1.2.1-18+b1_i386 + libghc-edison-core-dev_1.2.1.3-9+b1_i386 + libghc-edison-core-prof_1.2.1.3-9+b1_i386 + libghc-edit-distance-dev_0.2.1-2_i386 + libghc-edit-distance-prof_0.2.1-2_i386 + libghc-editline-dev_0.2.1.0-5+b1_i386 + libghc-ekg-dev_0.3.1.0-1+b2_i386 + libghc-ekg-prof_0.3.1.0-1+b2_i386 + libghc-email-validate-dev_0.2.8-1+b3_i386 + libghc-email-validate-prof_0.2.8-1+b3_i386 + libghc-entropy-dev_0.2.1-2+b1_i386 + libghc-entropy-prof_0.2.1-2+b1_i386 + libghc-enumerator-dev_0.4.19-1+b1_i386 + libghc-enumerator-prof_0.4.19-1+b1_i386 + libghc-erf-dev_2.0.0.0-2+b1_i386 + libghc-erf-prof_2.0.0.0-2+b1_i386 + libghc-event-list-dev_0.1.0.1-1+b1_i386 + libghc-event-list-prof_0.1.0.1-1+b1_i386 + libghc-exception-transformers-dev_0.3.0.2-1+b1_i386 + libghc-exception-transformers-prof_0.3.0.2-1+b1_i386 + libghc-executable-path-dev_0.0.3-1+b1_i386 + libghc-executable-path-prof_0.0.3-1+b1_i386 + libghc-explicit-exception-dev_0.1.7-1+b1_i386 + libghc-explicit-exception-prof_0.1.7-1+b1_i386 + libghc-failure-dev_0.2.0.1-1+b1_i386 + libghc-failure-prof_0.2.0.1-1+b1_i386 + libghc-fast-logger-dev_0.0.2-1+b2_i386 + libghc-fast-logger-prof_0.0.2-1+b2_i386 + libghc-fastcgi-dev_3001.0.2.3-3+b3_i386 + libghc-fastcgi-prof_3001.0.2.3-3+b3_i386 + libghc-fclabels-dev_1.1.3-1+b1_i386 + libghc-fclabels-prof_1.1.3-1+b1_i386 + libghc-feed-dev_0.3.8-3_i386 + libghc-feed-prof_0.3.8-3_i386 + libghc-fgl-dev_5.4.2.4-2+b2_i386 + libghc-fgl-prof_5.4.2.4-2+b2_i386 + libghc-file-embed-dev_0.0.4.4-1_i386 + libghc-file-embed-prof_0.0.4.4-1_i386 + libghc-filemanip-dev_0.3.5.2-2+b2_i386 + libghc-filemanip-prof_0.3.5.2-2+b2_i386 + libghc-filestore-dev_0.5-1_i386 + libghc-filestore-prof_0.5-1_i386 + libghc-filesystem-conduit-dev_0.4.0-1_i386 + libghc-filesystem-conduit-prof_0.4.0-1_i386 + libghc-free-dev_2.1.1.1-1+b1_i386 + libghc-free-prof_2.1.1.1-1+b1_i386 + libghc-ftphs-dev_1.0.8-1+b3_i386 + libghc-ftphs-prof_1.0.8-1+b3_i386 + libghc-gconf-dev_0.12.1-1+b1_i386 + libghc-gconf-prof_0.12.1-1+b1_i386 + libghc-gd-dev_3000.7.3-1_i386 + libghc-gd-prof_3000.7.3-1_i386 + libghc-ghc-events-dev_0.4.0.0-2+b1_i386 + libghc-ghc-events-prof_0.4.0.0-2+b1_i386 + libghc-ghc-mtl-dev_1.0.1.1-1+b3_i386 + libghc-ghc-mtl-prof_1.0.1.1-1+b3_i386 + libghc-ghc-paths-dev_0.1.0.8-2+b1_i386 + libghc-ghc-paths-prof_0.1.0.8-2+b1_i386 + libghc-ghc-syb-utils-dev_0.2.1.0-1+b3_i386 + libghc-ghc-syb-utils-prof_0.2.1.0-1+b3_i386 + libghc-gio-dev_0.12.3-1+b1_i386 + libghc-gio-prof_0.12.3-1+b1_i386 + libghc-github-dev_0.4.0-2_i386 + libghc-github-prof_0.4.0-2_i386 + libghc-gitit-dev_0.10.0.1-1+b1_i386 + libghc-gitit-prof_0.10.0.1-1+b1_i386 + libghc-glade-dev_0.12.1-1+b3_i386 + libghc-glade-prof_0.12.1-1+b3_i386 + libghc-glfw-dev_0.5.0.1-1+b1_i386 + libghc-glfw-prof_0.5.0.1-1+b1_i386 + libghc-glib-dev_0.12.2-1+b1_i386 + libghc-glib-prof_0.12.2-1+b1_i386 + libghc-glut-dev_2.1.2.2-1_i386 + libghc-glut-prof_2.1.2.2-1_i386 + libghc-gnuidn-dev_0.2-2+b2_i386 + libghc-gnuidn-prof_0.2-2+b2_i386 + libghc-gnutls-dev_0.1.2-1+b1_i386 + libghc-gnutls-prof_0.1.2-1+b1_i386 + libghc-gsasl-dev_0.3.4-1+b1_i386 + libghc-gsasl-prof_0.3.4-1+b1_i386 + libghc-gstreamer-dev_0.12.1-1+b2_i386 + libghc-gstreamer-prof_0.12.1-1+b2_i386 + libghc-gtk-dev_0.12.3-1+b2_i386 + libghc-gtk-prof_0.12.3-1+b2_i386 + libghc-gtkglext-dev_0.12.1-1+b3_i386 + libghc-gtkglext-prof_0.12.1-1+b3_i386 + libghc-gtksourceview2-dev_0.12.3-1+b3_i386 + libghc-gtksourceview2-prof_0.12.3-1+b3_i386 + libghc-haddock-dev_2.10.0-1+b2_i386 + libghc-haddock-prof_2.10.0-1+b2_i386 + libghc-hakyll-dev_3.2.7.2-1+b5_i386 + libghc-hakyll-prof_3.2.7.2-1+b5_i386 + libghc-hamlet-dev_1.0.1.3-1+b1_i386 + libghc-hamlet-prof_1.0.1.3-1+b1_i386 + libghc-happstack-dev_7.0.0-1+b1_i386 + libghc-happstack-prof_7.0.0-1+b1_i386 + libghc-happstack-server-dev_7.0.1-1+b1_i386 + libghc-happstack-server-prof_7.0.1-1+b1_i386 + libghc-harp-dev_0.4-3+b1_i386 + libghc-harp-prof_0.4-3+b1_i386 + libghc-hashable-dev_1.1.2.3-1+b2_i386 + libghc-hashable-prof_1.1.2.3-1+b2_i386 + libghc-hashed-storage-dev_0.5.9-2+b2_i386 + libghc-hashed-storage-prof_0.5.9-2+b2_i386 + libghc-hashmap-dev_1.3.0.1-1+b2_i386 + libghc-hashmap-prof_1.3.0.1-1+b2_i386 + libghc-hashtables-dev_1.0.1.4-1+b1_i386 + libghc-hashtables-prof_1.0.1.4-1+b1_i386 + libghc-haskeline-dev_0.6.4.7-1+b1_i386 + libghc-haskeline-prof_0.6.4.7-1+b1_i386 + libghc-haskell-lexer-dev_1.0-3+b1_i386 + libghc-haskell-lexer-prof_1.0-3+b1_i386 + libghc-haskell-src-dev_1.0.1.5-1+b2_i386 + libghc-haskell-src-prof_1.0.1.5-1+b2_i386 + libghc-haskelldb-dev_2.1.1-5+b1_i386 + libghc-haskelldb-hdbc-dev_2.1.0-4_i386 + libghc-haskelldb-hdbc-odbc-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-odbc-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-postgresql-prof_2.1.0-3_i386 + libghc-haskelldb-hdbc-prof_2.1.0-4_i386 + libghc-haskelldb-hdbc-sqlite3-dev_2.1.0-3_i386 + libghc-haskelldb-hdbc-sqlite3-prof_2.1.0-3_i386 + libghc-haskelldb-prof_2.1.1-5+b1_i386 + libghc-haskore-dev_0.2.0.3-2_i386 + libghc-haskore-prof_0.2.0.3-2_i386 + libghc-hastache-dev_0.3.3-2+b3_i386 + libghc-hastache-prof_0.3.3-2+b3_i386 + libghc-haxml-dev_1:1.22.5-2+b2_i386 + libghc-haxml-prof_1:1.22.5-2+b2_i386 + libghc-haxr-dev_3000.8.5-1+b3_i386 + libghc-haxr-prof_3000.8.5-1+b3_i386 + libghc-hcard-dev_0.0-2+b2_i386 + libghc-hcard-prof_0.0-2+b2_i386 + libghc-hcwiid-dev_0.0.1-3+b1_i386 + libghc-hcwiid-prof_0.0.1-3+b1_i386 + libghc-hdbc-dev_2.3.1.1-1+b3_i386 + libghc-hdbc-odbc-dev_2.2.3.0-5+b3_i386 + libghc-hdbc-odbc-prof_2.2.3.0-5+b3_i386 + libghc-hdbc-postgresql-dev_2.3.2.1-1+b3_i386 + libghc-hdbc-postgresql-prof_2.3.2.1-1+b3_i386 + libghc-hdbc-prof_2.3.1.1-1+b3_i386 + libghc-hdbc-sqlite3-dev_2.3.3.0-1+b3_i386 + libghc-hdbc-sqlite3-prof_2.3.3.0-1+b3_i386 + libghc-hfuse-dev_0.2.4.1-1_i386 + libghc-hfuse-prof_0.2.4.1-1_i386 + libghc-highlighting-kate-dev_0.5.1-1_i386 + libghc-highlighting-kate-prof_0.5.1-1_i386 + libghc-hinotify-dev_0.3.2-1+b1_i386 + libghc-hinotify-prof_0.3.2-1+b1_i386 + libghc-hint-dev_0.3.3.4-2+b4_i386 + libghc-hint-prof_0.3.3.4-2+b4_i386 + libghc-hipmunk-dev_5.2.0.8-1+b1_i386 + libghc-hipmunk-prof_5.2.0.8-1+b1_i386 + libghc-hjavascript-dev_0.4.7-3+b1_i386 + libghc-hjavascript-prof_0.4.7-3+b1_i386 + libghc-hjscript-dev_0.5.0-3+b2_i386 + libghc-hjscript-prof_0.5.0-3+b2_i386 + libghc-hjsmin-dev_0.1.1-1+b2_i386 + libghc-hjsmin-prof_0.1.1-1+b2_i386 + libghc-hlint-dev_1.8.28-1+b3_i386 + libghc-hlint-prof_1.8.28-1+b3_i386 + libghc-hoauth-dev_0.3.4-1+b1_i386 + libghc-hoauth-prof_0.3.4-1+b1_i386 + libghc-hostname-dev_1.0-4+b1_i386 + libghc-hostname-prof_1.0-4+b1_i386 + libghc-hs-bibutils-dev_4.12-5+b2_i386 + libghc-hs-bibutils-prof_4.12-5+b2_i386 + libghc-hs3-dev_0.5.6-2+b4_i386 + libghc-hs3-prof_0.5.6-2+b4_i386 + libghc-hscolour-dev_1.19-3+b1_i386 + libghc-hscolour-prof_1.19-3+b1_i386 + libghc-hscurses-dev_1.4.1.0-1+b2_i386 + libghc-hscurses-prof_1.4.1.0-1+b2_i386 + libghc-hsemail-dev_1.7.1-2+b3_i386 + libghc-hsemail-prof_1.7.1-2+b3_i386 + libghc-hsh-dev_2.0.3-6+b3_i386 + libghc-hsh-doc_2.0.3-6+b3_i386 + libghc-hsh-prof_2.0.3-6+b3_i386 + libghc-hslogger-dev_1.1.4+dfsg1-2+b3_i386 + libghc-hslogger-prof_1.1.4+dfsg1-2+b3_i386 + libghc-hsp-dev_0.6.1-2+b3_i386 + libghc-hsp-prof_0.6.1-2+b3_i386 + libghc-hspec-dev_1.1.0-1+b1_i386 + libghc-hspec-prof_1.1.0-1+b1_i386 + libghc-hsql-dev_1.8.1-4_i386 + libghc-hsql-mysql-dev_1.8.1-4+b1_i386 + libghc-hsql-mysql-prof_1.8.1-4+b1_i386 + libghc-hsql-odbc-dev_1.8.1.1-2_i386 + libghc-hsql-odbc-prof_1.8.1.1-2_i386 + libghc-hsql-postgresql-dev_1.8.1-3_i386 + libghc-hsql-postgresql-prof_1.8.1-3_i386 + libghc-hsql-prof_1.8.1-4_i386 + libghc-hsql-sqlite3-dev_1.8.1-2_i386 + libghc-hsql-sqlite3-prof_1.8.1-2_i386 + libghc-hssyck-dev_0.50-2+b2_i386 + libghc-hssyck-prof_0.50-2+b2_i386 + libghc-hstringtemplate-dev_0.6.8-1_i386 + libghc-hstringtemplate-prof_0.6.8-1_i386 + libghc-hsx-dev_0.9.1-3_i386 + libghc-hsx-prof_0.9.1-3_i386 + libghc-html-conduit-dev_0.0.1-2_i386 + libghc-html-conduit-prof_0.0.1-2_i386 + libghc-html-dev_1.0.1.2-5+b1_i386 + libghc-html-prof_1.0.1.2-5+b1_i386 + libghc-http-conduit-dev_1.4.1.6-3_i386 + libghc-http-conduit-prof_1.4.1.6-3_i386 + libghc-http-date-dev_0.0.2-1+b2_i386 + libghc-http-date-prof_0.0.2-1+b2_i386 + libghc-http-dev_1:4000.2.3-1+b2_i386 + libghc-http-prof_1:4000.2.3-1+b2_i386 + libghc-http-types-dev_0.6.11-1_i386 + libghc-http-types-prof_0.6.11-1_i386 + libghc-hunit-dev_1.2.4.2-2+b1_i386 + libghc-hunit-prof_1.2.4.2-2+b1_i386 + libghc-hxt-cache-dev_9.0.2-2+b3_i386 + libghc-hxt-cache-prof_9.0.2-2+b3_i386 + libghc-hxt-charproperties-dev_9.1.1-2+b1_i386 + libghc-hxt-charproperties-prof_9.1.1-2+b1_i386 + libghc-hxt-curl-dev_9.1.1-1+b4_i386 + libghc-hxt-curl-prof_9.1.1-1+b4_i386 + libghc-hxt-dev_9.2.2-2+b3_i386 + libghc-hxt-http-dev_9.1.4-2+b3_i386 + libghc-hxt-http-prof_9.1.4-2+b3_i386 + libghc-hxt-prof_9.2.2-2+b3_i386 + libghc-hxt-regex-xmlschema-dev_9.0.4-2+b3_i386 + libghc-hxt-regex-xmlschema-prof_9.0.4-2+b3_i386 + libghc-hxt-relaxng-dev_9.1.4-1+b3_i386 + libghc-hxt-relaxng-prof_9.1.4-1+b3_i386 + libghc-hxt-tagsoup-dev_9.1.1-1+b4_i386 + libghc-hxt-tagsoup-prof_9.1.1-1+b4_i386 + libghc-hxt-unicode-dev_9.0.2-2+b1_i386 + libghc-hxt-unicode-prof_9.0.2-2+b1_i386 + libghc-hxt-xpath-dev_9.1.2-1+b4_i386 + libghc-hxt-xpath-prof_9.1.2-1+b4_i386 + libghc-hxt-xslt-dev_9.1.1-1+b3_i386 + libghc-hxt-xslt-prof_9.1.1-1+b3_i386 + libghc-iconv-dev_0.4.1.0-2+b1_i386 + libghc-iconv-prof_0.4.1.0-2+b1_i386 + libghc-ieee754-dev_0.7.3-1+b1_i386 + libghc-ieee754-prof_0.7.3-1+b1_i386 + libghc-ifelse-dev_0.85-4+b1_i386 + libghc-ifelse-prof_0.85-4+b1_i386 + libghc-io-choice-dev_0.0.1-1+b3_i386 + libghc-io-choice-prof_0.0.1-1+b3_i386 + libghc-io-storage-dev_0.3-2+b1_i386 + libghc-io-storage-prof_0.3-2+b1_i386 + libghc-iospec-dev_0.2.5-1+b2_i386 + libghc-iospec-prof_0.2.5-1+b2_i386 + libghc-irc-dev_0.5.0.0-1+b3_i386 + libghc-iteratee-dev_0.8.8.2-2+b1_i386 + libghc-iteratee-prof_0.8.8.2-2+b1_i386 + libghc-ixset-dev_1.0.3-2+b1_i386 + libghc-ixset-prof_1.0.3-2+b1_i386 + libghc-json-dev_0.5-2+b2_i386 + libghc-json-prof_0.5-2+b2_i386 + libghc-keys-dev_2.1.3.2-1+b1_i386 + libghc-keys-prof_2.1.3.2-1+b1_i386 + libghc-knob-dev_0.1.1-1_i386 + libghc-knob-prof_0.1.1-1_i386 + libghc-lambdabot-utils-dev_4.2.1-3+b3_i386 + libghc-lambdabot-utils-prof_4.2.1-3+b3_i386 + libghc-language-c-dev_0.4.2-2+b2_i386 + libghc-language-c-prof_0.4.2-2+b2_i386 + libghc-language-haskell-extract-dev_0.2.1-4+b1_i386 + libghc-language-haskell-extract-prof_0.2.1-4+b1_i386 + libghc-language-javascript-dev_0.5.4-1+b2_i386 + libghc-language-javascript-prof_0.5.4-1+b2_i386 + libghc-largeword-dev_1.0.1-2+b1_i386 + libghc-largeword-prof_1.0.1-2+b1_i386 + libghc-lazysmallcheck-dev_0.6-1+b1_i386 + libghc-lazysmallcheck-prof_0.6-1+b1_i386 + libghc-ldap-dev_0.6.6-4.1+b1_i386 + libghc-ldap-prof_0.6.6-4.1+b1_i386 + libghc-leksah-server-dev_0.12.0.4-3_i386 + libghc-libtagc-dev_0.12.0-2+b1_i386 + libghc-libtagc-prof_0.12.0-2+b1_i386 + libghc-libxml-sax-dev_0.7.2-2+b1_i386 + libghc-libxml-sax-prof_0.7.2-2+b1_i386 + libghc-libzip-dev_0.10-1+b2_i386 + libghc-libzip-prof_0.10-1+b2_i386 + libghc-lifted-base-dev_0.1.1-1+b1_i386 + libghc-lifted-base-prof_0.1.1-1+b1_i386 + libghc-listlike-dev_3.1.4-1+b1_i386 + libghc-listlike-prof_3.1.4-1+b1_i386 + libghc-llvm-base-dev_3.0.1.0-1_i386 + libghc-llvm-base-prof_3.0.1.0-1_i386 + libghc-llvm-dev_3.0.1.0-1+b1_i386 + libghc-llvm-prof_3.0.1.0-1+b1_i386 + libghc-logict-dev_0.5.0.1-1+b1_i386 + libghc-logict-prof_0.5.0.1-1+b1_i386 + libghc-ltk-dev_0.12.0.0-2+b1_i386 + libghc-maccatcher-dev_2.1.5-2+b3_i386 + libghc-maccatcher-prof_2.1.5-2+b3_i386 + libghc-magic-dev_1.0.8-8+b1_i386 + libghc-magic-prof_1.0.8-8+b1_i386 + libghc-markov-chain-dev_0.0.3.2-1+b1_i386 + libghc-markov-chain-prof_0.0.3.2-1+b1_i386 + libghc-math-functions-dev_0.1.1.0-2+b2_i386 + libghc-math-functions-prof_0.1.1.0-2+b2_i386 + libghc-maths-dev_0.4.3-1+b1_i386 + libghc-maths-prof_0.4.3-1+b1_i386 + libghc-maybet-dev_0.1.2-3+b2_i386 + libghc-maybet-prof_0.1.2-3+b2_i386 + libghc-mbox-dev_0.1-2+b1_i386 + libghc-mbox-prof_0.1-2+b1_i386 + libghc-memotrie-dev_0.5-1_i386 + libghc-memotrie-prof_0.5-1_i386 + libghc-mersenne-random-dev_1.0.0.1-2+b1_i386 + libghc-mersenne-random-prof_1.0.0.1-2+b1_i386 + libghc-midi-dev_0.2.0.1-1+b1_i386 + libghc-midi-prof_0.2.0.1-1+b1_i386 + libghc-mime-mail-dev_0.4.1.1-2+b3_i386 + libghc-mime-mail-prof_0.4.1.1-2+b3_i386 + libghc-missingh-dev_1.1.0.3-6+b3_i386 + libghc-missingh-prof_1.1.0.3-6+b3_i386 + libghc-mmap-dev_0.5.7-2+b1_i386 + libghc-mmap-prof_0.5.7-2+b1_i386 + libghc-monad-control-dev_0.3.1.3-1+b1_i386 + libghc-monad-control-prof_0.3.1.3-1+b1_i386 + libghc-monad-loops-dev_0.3.2.0-1_i386 + libghc-monad-loops-prof_0.3.2.0-1_i386 + libghc-monad-par-dev_0.1.0.3-2+b1_i386 + libghc-monad-par-prof_0.1.0.3-2+b1_i386 + libghc-monadcatchio-mtl-dev_0.3.0.4-2+b2_i386 + libghc-monadcatchio-mtl-prof_0.3.0.4-2+b2_i386 + libghc-monadcatchio-transformers-dev_0.3.0.0-2+b1_i386 + libghc-monadcatchio-transformers-prof_0.3.0.0-2+b1_i386 + libghc-monadcryptorandom-dev_0.4.1-1+b2_i386 + libghc-monadcryptorandom-prof_0.4.1-1+b2_i386 + libghc-monadrandom-dev_0.1.6-2+b2_i386 + libghc-monadrandom-prof_0.1.6-2+b2_i386 + libghc-monads-tf-dev_0.1.0.0-1+b2_i386 + libghc-monads-tf-prof_0.1.0.0-1+b2_i386 + libghc-monoid-transformer-dev_0.0.2-3+b1_i386 + libghc-monoid-transformer-prof_0.0.2-3+b1_i386 + libghc-mtl-dev_2.1.1-1_i386 + libghc-mtl-prof_2.1.1-1_i386 + libghc-mtlparse-dev_0.1.2-2+b2_i386 + libghc-mtlparse-prof_0.1.2-2+b2_i386 + libghc-murmur-hash-dev_0.1.0.5-2+b1_i386 + libghc-murmur-hash-prof_0.1.0.5-2+b1_i386 + libghc-mwc-random-dev_0.11.0.0-4+b1_i386 + libghc-mwc-random-prof_0.11.0.0-4+b1_i386 + libghc-ncurses-dev_0.2.1-1+b1_i386 + libghc-ncurses-prof_0.2.1-1+b1_i386 + libghc-netwire-dev_3.1.0-2+b5_i386 + libghc-netwire-prof_3.1.0-2+b5_i386 + libghc-network-conduit-dev_0.4.0.1-2_i386 + libghc-network-conduit-prof_0.4.0.1-2_i386 + libghc-network-dev_2.3.0.13-1+b2_i386 + libghc-network-prof_2.3.0.13-1+b2_i386 + libghc-network-protocol-xmpp-dev_0.4.3-1_i386 + libghc-network-protocol-xmpp-prof_0.4.3-1_i386 + libghc-newtype-dev_0.2-1_i386 + libghc-newtype-prof_0.2-1_i386 + libghc-non-negative-dev_0.1-2+b1_i386 + libghc-non-negative-prof_0.1-2+b1_i386 + libghc-numbers-dev_2009.8.9-2+b1_i386 + libghc-numbers-prof_2009.8.9-2+b1_i386 + libghc-numeric-quest-dev_0.2-1+b1_i386 + libghc-numeric-quest-prof_0.2-1+b1_i386 + libghc-numinstances-dev_1.0-2+b1_i386 + libghc-numinstances-prof_1.0-2+b1_i386 + libghc-numtype-dev_1.0-2+b1_i386 + libghc-numtype-prof_1.0-2+b1_i386 + libghc-oeis-dev_0.3.1-2+b3_i386 + libghc-oeis-prof_0.3.1-2+b3_i386 + libghc-openal-dev_1.3.1.3-4+b1_i386 + libghc-openal-prof_1.3.1.3-4+b1_i386 + libghc-opengl-dev_2.2.3.1-1+b1_i386 + libghc-opengl-prof_2.2.3.1-1+b1_i386 + libghc-openpgp-asciiarmor-dev_0.1-1+b2_i386 + libghc-openpgp-asciiarmor-prof_0.1-1+b2_i386 + libghc-options-dev_0.1.1-1_i386 + libghc-options-prof_0.1.1-1_i386 + libghc-pandoc-dev_1.9.4.2-2_i386 + libghc-pandoc-prof_1.9.4.2-2_i386 + libghc-pandoc-types-dev_1.9.1-1+b2_i386 + libghc-pandoc-types-prof_1.9.1-1+b2_i386 + libghc-pango-dev_0.12.2-1+b2_i386 + libghc-pango-prof_0.12.2-1+b2_i386 + libghc-parallel-dev_3.2.0.2-2+b1_i386 + libghc-parallel-prof_3.2.0.2-2+b1_i386 + libghc-parseargs-dev_0.1.3.2-2+b1_i386 + libghc-parseargs-prof_0.1.3.2-2+b1_i386 + libghc-parsec2-dev_2.1.0.1-6+b1_i386 + libghc-parsec2-prof_2.1.0.1-6+b1_i386 + libghc-parsec3-dev_3.1.2-1+b3_i386 + libghc-parsec3-prof_3.1.2-1+b3_i386 + libghc-pastis-dev_0.1.2-2+b3_i386 + libghc-pastis-prof_0.1.2-2+b3_i386 + libghc-path-pieces-dev_0.1.0-1+b2_i386 + libghc-path-pieces-prof_0.1.0-1+b2_i386 + libghc-patience-dev_0.1.1-1_i386 + libghc-patience-prof_0.1.1-1_i386 + libghc-pcre-light-dev_0.4-3+b1_i386 + libghc-pcre-light-prof_0.4-3+b1_i386 + libghc-pem-dev_0.1.1-1+b3_i386 + libghc-pem-prof_0.1.1-1+b3_i386 + libghc-persistent-dev_0.9.0.4-2_i386 + libghc-persistent-prof_0.9.0.4-2_i386 + libghc-persistent-sqlite-dev_0.9.0.2-2_i386 + libghc-persistent-sqlite-prof_0.9.0.2-2_i386 + libghc-persistent-template-dev_0.9.0.2-1_i386 + libghc-persistent-template-prof_0.9.0.2-1_i386 + libghc-polyparse-dev_1.7-1+b2_i386 + libghc-polyparse-prof_1.7-1+b2_i386 + libghc-pool-conduit-dev_0.1.0.2-1_i386 + libghc-pool-conduit-prof_0.1.0.2-1_i386 + libghc-postgresql-libpq-dev_0.8.2-1_i386 + libghc-postgresql-libpq-prof_0.8.2-1_i386 + libghc-postgresql-simple-dev_0.1.4.3-1_i386 + libghc-postgresql-simple-prof_0.1.4.3-1_i386 + libghc-pretty-show-dev_1.1.1-4+b1_i386 + libghc-pretty-show-prof_1.1.1-4+b1_i386 + libghc-primes-dev_0.2.1.0-2+b1_i386 + libghc-primes-prof_0.2.1.0-2+b1_i386 + libghc-primitive-dev_0.4.1-1+b1_i386 + libghc-primitive-prof_0.4.1-1+b1_i386 + libghc-psqueue-dev_1.1-2+b1_i386 + libghc-psqueue-prof_1.1-2+b1_i386 + libghc-puremd5-dev_2.1.0.3-2+b4_i386 + libghc-puremd5-prof_2.1.0.3-2+b4_i386 + libghc-pwstore-fast-dev_2.2-2+b4_i386 + libghc-pwstore-fast-prof_2.2-2+b4_i386 + libghc-quickcheck1-dev_1.2.0.1-2+b1_i386 + libghc-quickcheck1-prof_1.2.0.1-2+b1_i386 + libghc-quickcheck2-dev_2.4.2-1+b1_i386 + libghc-quickcheck2-prof_2.4.2-1+b1_i386 + libghc-random-dev_1.0.1.1-1+b1_i386 + libghc-random-prof_1.0.1.1-1+b1_i386 + libghc-random-shuffle-dev_0.0.3-2+b2_i386 + libghc-random-shuffle-prof_0.0.3-2+b2_i386 + libghc-ranged-sets-dev_0.3.0-2+b1_i386 + libghc-ranged-sets-prof_0.3.0-2+b1_i386 + libghc-ranges-dev_0.2.4-2+b1_i386 + libghc-ranges-prof_0.2.4-2+b1_i386 + libghc-reactive-banana-dev_0.6.0.0-1+b3_i386 + libghc-reactive-banana-prof_0.6.0.0-1+b3_i386 + libghc-readline-dev_1.0.1.0-3+b1_i386 + libghc-readline-prof_1.0.1.0-3+b1_i386 + libghc-recaptcha-dev_0.1-4+b3_i386 + libghc-recaptcha-prof_0.1-4+b3_i386 + libghc-regex-base-dev_0.93.2-2+b2_i386 + libghc-regex-base-prof_0.93.2-2+b2_i386 + libghc-regex-compat-dev_0.95.1-2+b1_i386 + libghc-regex-compat-prof_0.95.1-2+b1_i386 + libghc-regex-pcre-dev_0.94.2-2+b1_i386 + libghc-regex-pcre-prof_0.94.2-2+b1_i386 + libghc-regex-posix-dev_0.95.1-2+b1_i386 + libghc-regex-posix-prof_0.95.1-2+b1_i386 + libghc-regex-tdfa-dev_1.1.8-2+b1_i386 + libghc-regex-tdfa-prof_1.1.8-2+b1_i386 + libghc-regex-tdfa-utf8-dev_1.0-5+b3_i386 + libghc-regex-tdfa-utf8-prof_1.0-5+b3_i386 + libghc-regexpr-dev_0.5.4-2+b2_i386 + libghc-regexpr-prof_0.5.4-2+b2_i386 + libghc-representable-functors-dev_2.4.0.2-1+b1_i386 + libghc-representable-functors-prof_2.4.0.2-1+b1_i386 + libghc-representable-tries-dev_2.4.0.2-1_i386 + libghc-representable-tries-prof_2.4.0.2-1_i386 + libghc-resource-pool-dev_0.2.1.0-2+b4_i386 + libghc-resource-pool-prof_0.2.1.0-2+b4_i386 + libghc-resourcet-dev_0.3.2.1-1+b1_i386 + libghc-resourcet-prof_0.3.2.1-1+b1_i386 + libghc-rsa-dev_1.2.1.0-1+b1_i386 + libghc-rsa-prof_1.2.1.0-1+b1_i386 + libghc-safe-dev_0.3.3-1+b1_i386 + libghc-safe-prof_0.3.3-1+b1_i386 + libghc-safecopy-dev_0.6.1-1+b1_i386 + libghc-safecopy-prof_0.6.1-1+b1_i386 + libghc-sdl-dev_0.6.3-1+b1_i386 + libghc-sdl-gfx-dev_0.6.0-3+b1_i386 + libghc-sdl-gfx-prof_0.6.0-3+b1_i386 + libghc-sdl-image-dev_0.6.1-3+b1_i386 + libghc-sdl-image-prof_0.6.1-3+b1_i386 + libghc-sdl-mixer-dev_0.6.1-3+b1_i386 + libghc-sdl-mixer-prof_0.6.1-3+b1_i386 + libghc-sdl-prof_0.6.3-1+b1_i386 + libghc-sdl-ttf-dev_0.6.1-3+b1_i386 + libghc-sdl-ttf-prof_0.6.1-3+b1_i386 + libghc-semigroupoids-dev_1.3.1.2-1+b1_i386 + libghc-semigroupoids-prof_1.3.1.2-1+b1_i386 + libghc-semigroups-dev_0.8.3.2-1_i386 + libghc-semigroups-prof_0.8.3.2-1_i386 + libghc-sendfile-dev_0.7.6-1+b2_i386 + libghc-sendfile-prof_0.7.6-1+b2_i386 + libghc-sha-dev_1.5.0.1-1_i386 + libghc-sha-prof_1.5.0.1-1_i386 + libghc-shakespeare-css-dev_1.0.1.2-1+b1_i386 + libghc-shakespeare-css-prof_1.0.1.2-1+b1_i386 + libghc-shakespeare-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-i18n-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-js-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-prof_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-dev_1.0.0.2-1+b1_i386 + libghc-shakespeare-text-prof_1.0.0.2-1+b1_i386 + libghc-shellac-dev_0.9.5.1-2+b2_i386 + libghc-shellac-prof_0.9.5.1-2+b2_i386 + libghc-show-dev_0.4.1.2-1+b2_i386 + libghc-show-prof_0.4.1.2-1+b2_i386 + libghc-silently-dev_1.1.4-1+b2_i386 + libghc-silently-prof_1.1.4-1+b2_i386 + libghc-simple-sendfile-dev_0.2.3-1+b2_i386 + libghc-simple-sendfile-prof_0.2.3-1+b2_i386 + libghc-simpleea-dev_0.1.1-2+b2_i386 + libghc-simpleea-prof_0.1.1-2+b2_i386 + libghc-simpleirc-dev_0.2.1-2+b3_i386 + libghc-simpleirc-prof_0.2.1-2+b3_i386 + libghc-skein-dev_0.1.0.7-2+b1_i386 + libghc-skein-prof_0.1.0.7-2+b1_i386 + libghc-smallcheck-dev_0.6-1+b1_i386 + libghc-smallcheck-prof_0.6-1+b1_i386 + libghc-smtpclient-dev_1.0.4-3+b3_i386 + libghc-smtpclient-prof_1.0.4-3+b3_i386 + libghc-snap-core-dev_0.8.1-1+b4_i386 + libghc-snap-core-prof_0.8.1-1+b4_i386 + libghc-snap-server-dev_0.8.1.1-1_i386 + libghc-snap-server-prof_0.8.1.1-1_i386 + libghc-socks-dev_0.4.1-1+b4_i386 + libghc-socks-prof_0.4.1-1+b4_i386 + libghc-split-dev_0.1.4.2-2_i386 + libghc-split-prof_0.1.4.2-2_i386 + libghc-src-exts-dev_1.11.1-3+b1_i386 + libghc-src-exts-prof_1.11.1-3+b1_i386 + libghc-statevar-dev_1.0.0.0-2+b1_i386 + libghc-statevar-prof_1.0.0.0-2+b1_i386 + libghc-static-hash-dev_0.0.1-3+b2_i386 + libghc-static-hash-prof_0.0.1-3+b2_i386 + libghc-statistics-dev_0.10.1.0-2+b1_i386 + libghc-statistics-prof_0.10.1.0-2+b1_i386 + libghc-stm-dev_2.3-1_i386 + libghc-stm-prof_2.3-1_i386 + libghc-stream-dev_0.4.6-1+b1_i386 + libghc-stream-prof_0.4.6-1+b1_i386 + libghc-strict-concurrency-dev_0.2.4.1-2+b1_i386 + libghc-strict-concurrency-prof_0.2.4.1-2+b1_i386 + libghc-strict-dev_0.3.2-2+b1_i386 + libghc-strict-prof_0.3.2-2+b1_i386 + libghc-strptime-dev_1.0.6-1_i386 + libghc-strptime-prof_1.0.6-1_i386 + libghc-svgcairo-dev_0.12.1-1+b2_i386 + libghc-svgcairo-prof_0.12.1-1+b2_i386 + libghc-syb-dev_0.3.6.1-1_i386 + libghc-syb-prof_0.3.6.1-1_i386 + libghc-syb-with-class-dev_0.6.1.3-1+b1_i386 + libghc-syb-with-class-instances-text-dev_0.0.1-3+b2_i386 + libghc-syb-with-class-instances-text-prof_0.0.1-3+b2_i386 + libghc-syb-with-class-prof_0.6.1.3-1+b1_i386 + libghc-system-fileio-dev_0.3.8-1_i386 + libghc-system-fileio-prof_0.3.8-1_i386 + libghc-system-filepath-dev_0.4.6-1+b2_i386 + libghc-system-filepath-prof_0.4.6-1+b2_i386 + libghc-tagged-dev_0.4.2.1-1_i386 + libghc-tagged-prof_0.4.2.1-1_i386 + libghc-tagsoup-dev_0.12.6-1+b3_i386 + libghc-tagsoup-prof_0.12.6-1+b3_i386 + libghc-tagstream-conduit-dev_0.3.2-1_i386 + libghc-tagstream-conduit-prof_0.3.2-1_i386 + libghc-tar-dev_0.3.2.0-2+b1_i386 + libghc-tar-prof_0.3.2.0-2+b1_i386 + libghc-template-dev_0.2.0.7-1+b1_i386 + libghc-template-prof_0.2.0.7-1+b1_i386 + libghc-temporary-dev_1.1.2.3-1+b1_i386 + libghc-temporary-prof_1.1.2.3-1+b1_i386 + libghc-terminfo-dev_0.3.2.3-1+b1_i386 + libghc-terminfo-prof_0.3.2.3-1+b1_i386 + libghc-test-framework-dev_0.6-1+b1_i386 + libghc-test-framework-hunit-dev_0.2.7-1+b3_i386 + libghc-test-framework-hunit-prof_0.2.7-1+b3_i386 + libghc-test-framework-prof_0.6-1+b1_i386 + libghc-test-framework-quickcheck2-dev_0.2.12.1-1+b1_i386 + libghc-test-framework-quickcheck2-prof_0.2.12.1-1+b1_i386 + libghc-test-framework-th-dev_0.2.2-5_i386 + libghc-test-framework-th-prime-dev_0.0.5-1_i386 + libghc-test-framework-th-prime-prof_0.0.5-1_i386 + libghc-test-framework-th-prof_0.2.2-5_i386 + libghc-testpack-dev_2.1.1-1+b2_i386 + libghc-testpack-prof_2.1.1-1+b2_i386 + libghc-texmath-dev_0.6.0.6-1+b2_i386 + libghc-texmath-prof_0.6.0.6-1+b2_i386 + libghc-text-dev_0.11.2.0-1_i386 + libghc-text-icu-dev_0.6.3.4-2+b2_i386 + libghc-text-icu-prof_0.6.3.4-2+b2_i386 + libghc-text-prof_0.11.2.0-1_i386 + libghc-tinyurl-dev_0.1.0-2+b3_i386 + libghc-tinyurl-prof_0.1.0-2+b3_i386 + libghc-tls-dev_0.9.5-1+b4_i386 + libghc-tls-extra-dev_0.4.6.1-2_i386 + libghc-tls-extra-prof_0.4.6.1-2_i386 + libghc-tls-prof_0.9.5-1+b4_i386 + libghc-tokyocabinet-dev_0.0.5-5+b3_i386 + libghc-tokyocabinet-prof_0.0.5-5+b3_i386 + libghc-transformers-base-dev_0.4.1-2+b2_i386 + libghc-transformers-base-prof_0.4.1-2+b2_i386 + libghc-transformers-dev_0.3.0.0-1_i386 + libghc-transformers-prof_0.3.0.0-1_i386 + libghc-type-level-dev_0.2.4-5_i386 + libghc-type-level-prof_0.2.4-5_i386 + libghc-uniplate-dev_1.6.7-1+b2_i386 + libghc-uniplate-prof_1.6.7-1+b2_i386 + libghc-unix-bytestring-dev_0.3.5-2+b1_i386 + libghc-unix-bytestring-prof_0.3.5-2+b1_i386 + libghc-unix-compat-dev_0.3.0.1-1+b1_i386 + libghc-unix-compat-prof_0.3.0.1-1+b1_i386 + libghc-unixutils-dev_1.50-1+b1_i386 + libghc-unixutils-prof_1.50-1+b1_i386 + libghc-unlambda-dev_0.1-2+b2_i386 + libghc-unlambda-prof_0.1-2+b2_i386 + libghc-unordered-containers-dev_0.2.1.0-1_i386 + libghc-unordered-containers-prof_0.2.1.0-1_i386 + libghc-uri-dev_0.1.6-1+b2_i386 + libghc-uri-prof_0.1.6-1+b2_i386 + libghc-url-dev_2.1.2-4+b1_i386 + libghc-url-prof_2.1.2-4+b1_i386 + libghc-utf8-light-dev_0.4.0.1-2+b1_i386 + libghc-utf8-light-prof_0.4.0.1-2+b1_i386 + libghc-utf8-string-dev_0.3.7-1+b1_i386 + libghc-utf8-string-prof_0.3.7-1+b1_i386 + libghc-utility-ht-dev_0.0.5.1-3+b1_i386 + libghc-utility-ht-prof_0.0.5.1-3+b1_i386 + libghc-uuagc-cabal-dev_1.0.2.0-1+b1_i386 + libghc-uuagc-cabal-prof_1.0.2.0-1+b1_i386 + libghc-uuid-dev_1.2.3-2+b4_i386 + libghc-uuid-prof_1.2.3-2+b4_i386 + libghc-uulib-dev_0.9.14-2_i386 + libghc-uulib-prof_0.9.14-2_i386 + libghc-vault-dev_0.2.0.0-1+b2_i386 + libghc-vault-prof_0.2.0.0-1+b2_i386 + libghc-vector-algorithms-dev_0.5.4-1+b2_i386 + libghc-vector-algorithms-prof_0.5.4-1+b2_i386 + libghc-vector-dev_0.9.1-2+b1_i386 + libghc-vector-prof_0.9.1-2+b1_i386 + libghc-vector-space-dev_0.8.1-1_i386 + libghc-vector-space-points-dev_0.1.1.0-1+b1_i386 + libghc-vector-space-points-prof_0.1.1.0-1+b1_i386 + libghc-vector-space-prof_0.8.1-1_i386 + libghc-void-dev_0.5.5.1-2+b1_i386 + libghc-void-prof_0.5.5.1-2+b1_i386 + libghc-vte-dev_0.12.1-1+b3_i386 + libghc-vte-prof_0.12.1-1+b3_i386 + libghc-vty-dev_4.7.0.14-1+b1_i386 + libghc-vty-prof_4.7.0.14-1+b1_i386 + libghc-wai-app-file-cgi-dev_0.5.8-1+b4_i386 + libghc-wai-app-file-cgi-prof_0.5.8-1+b4_i386 + libghc-wai-app-static-dev_1.2.0.3-1+b3_i386 + libghc-wai-app-static-prof_1.2.0.3-1+b3_i386 + libghc-wai-dev_1.2.0.2-1+b2_i386 + libghc-wai-extra-dev_1.2.0.4-1_i386 + libghc-wai-extra-prof_1.2.0.4-1_i386 + libghc-wai-logger-dev_0.1.4-1+b6_i386 + libghc-wai-logger-prefork-dev_0.1.3-1+b6_i386 + libghc-wai-logger-prefork-prof_0.1.3-1+b6_i386 + libghc-wai-logger-prof_0.1.4-1+b6_i386 + libghc-wai-prof_1.2.0.2-1+b2_i386 + libghc-wai-test-dev_1.2.0.2-1_i386 + libghc-wai-test-prof_1.2.0.2-1_i386 + libghc-warp-dev_1.2.1.1-1_i386 + libghc-warp-prof_1.2.1.1-1_i386 + libghc-warp-tls-dev_1.2.0.4-1+b4_i386 + libghc-warp-tls-prof_1.2.0.4-1+b4_i386 + libghc-web-routes-dev_0.25.3-2+b3_i386 + libghc-web-routes-prof_0.25.3-2+b3_i386 + libghc-webkit-dev_0.12.3-2+b1_i386 + libghc-webkit-prof_0.12.3-2+b1_i386 + libghc-weighted-regexp-dev_0.3.1.1-2+b1_i386 + libghc-weighted-regexp-prof_0.3.1.1-2+b1_i386 + libghc-x11-dev_1.5.0.1-1+b2_i386 + libghc-x11-prof_1.5.0.1-1+b2_i386 + libghc-x11-xft-dev_0.3.1-1+b3_i386 + libghc-x11-xft-prof_0.3.1-1+b3_i386 + libghc-xdg-basedir-dev_0.2.1-2+b1_i386 + libghc-xdg-basedir-prof_0.2.1-2+b1_i386 + libghc-xhtml-dev_3000.2.1-1_i386 + libghc-xhtml-prof_3000.2.1-1_i386 + libghc-xml-conduit-dev_0.7.0.2-1_i386 + libghc-xml-conduit-prof_0.7.0.2-1_i386 + libghc-xml-dev_1.3.12-1+b2_i386 + libghc-xml-prof_1.3.12-1+b2_i386 + libghc-xml-types-dev_0.3.1-2+b2_i386 + libghc-xml-types-prof_0.3.1-2+b2_i386 + libghc-xml2html-dev_0.1.2.3-1_i386 + libghc-xml2html-prof_0.1.2.3-1_i386 + libghc-xmonad-contrib-dev_0.10-4~deb7u1_i386 + libghc-xmonad-contrib-prof_0.10-4~deb7u1_i386 + libghc-xmonad-dev_0.10-4+b2_i386 + libghc-xmonad-prof_0.10-4+b2_i386 + libghc-xss-sanitize-dev_0.3.2-1+b1_i386 + libghc-xss-sanitize-prof_0.3.2-1+b1_i386 + libghc-yaml-dev_0.7.0.2-1+b2_i386 + libghc-yaml-light-dev_0.1.4-2+b2_i386 + libghc-yaml-light-prof_0.1.4-2+b2_i386 + libghc-yaml-prof_0.7.0.2-1+b2_i386 + libghc-yesod-auth-dev_1.0.2.1-2+b2_i386 + libghc-yesod-auth-prof_1.0.2.1-2+b2_i386 + libghc-yesod-core-dev_1.0.1.2-1+b3_i386 + libghc-yesod-core-prof_1.0.1.2-1+b3_i386 + libghc-yesod-default-dev_1.0.1.1-1+b1_i386 + libghc-yesod-default-prof_1.0.1.1-1+b1_i386 + libghc-yesod-dev_1.0.1.6-2+b3_i386 + libghc-yesod-form-dev_1.0.0.4-1+b1_i386 + libghc-yesod-form-prof_1.0.0.4-1+b1_i386 + libghc-yesod-json-dev_1.0.0.1-1+b3_i386 + libghc-yesod-json-prof_1.0.0.1-1+b3_i386 + libghc-yesod-markdown-dev_0.4.0-1+b3_i386 + libghc-yesod-markdown-prof_0.4.0-1+b3_i386 + libghc-yesod-persistent-dev_1.0.0.1-1+b1_i386 + libghc-yesod-persistent-prof_1.0.0.1-1+b1_i386 + libghc-yesod-prof_1.0.1.6-2+b3_i386 + libghc-yesod-routes-dev_1.0.1.2-1_i386 + libghc-yesod-routes-prof_1.0.1.2-1_i386 + libghc-yesod-static-dev_1.0.0.2-1+b3_i386 + libghc-yesod-static-prof_1.0.0.2-1+b3_i386 + libghc-yesod-test-dev_0.2.0.6-1_i386 + libghc-yesod-test-prof_0.2.0.6-1_i386 + libghc-zip-archive-dev_0.1.1.7-3+b2_i386 + libghc-zip-archive-prof_0.1.1.7-3+b2_i386 + libghc-zlib-bindings-dev_0.1.0.1-1_i386 + libghc-zlib-bindings-prof_0.1.0.1-1_i386 + libghc-zlib-conduit-dev_0.4.0.1-1_i386 + libghc-zlib-conduit-prof_0.4.0.1-1_i386 + libghc-zlib-dev_0.5.3.3-1+b1_i386 + libghc-zlib-enum-dev_0.2.2.1-1+b1_i386 + libghc-zlib-enum-prof_0.2.2.1-1+b1_i386 + libghc-zlib-prof_0.5.3.3-1+b1_i386 + libghemical-dev_3.0.0-2_i386 + libghemical5_3.0.0-2_i386 + libgif-dev_4.1.6-10_i386 + libgif4_4.1.6-10_i386 + libgiftiio-dev_1.0.9-1_i386 + libgiftiio0_1.0.9-1_i386 + libgig-dev_3.3.0-2_i386 + libgig6_3.3.0-2_i386 + libgii1_1:1.0.2-4.1_i386 + libgii1-dev_1:1.0.2-4.1_i386 + libgii1-target-x_1:1.0.2-4.1_i386 + libgimp2.0_2.8.2-2+deb7u1_i386 + libgimp2.0-dev_2.8.2-2+deb7u1_i386 + libginac-dev_1.6.2-1_i386 + libginac2_1.6.2-1_i386 + libginac2-dbg_1.6.2-1_i386 + libginspx-dev_20050529-3.1_i386 + libginspx0_20050529-3.1_i386 + libgirara-dbg_0.1.2-3_i386 + libgirara-dev_0.1.2-3_i386 + libgirara-gtk2-0_0.1.2-3_i386 + libgirara-gtk3-0_0.1.2-3_i386 + libgirepository-1.0-1_1.32.1-1_i386 + libgirepository1.0-dev_1.32.1-1_i386 + libgjs-dev_1.32.0-5_i386 + libgjs0b_1.32.0-5_i386 + libgksu2-0_2.0.13~pre1-6_i386 + libgksu2-dev_2.0.13~pre1-6_i386 + libgl-gst_3.2.4-2_i386 + libgl1-mesa-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental_8.0.5-4+deb7u2_i386 + libgl1-mesa-dri-experimental-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx_8.0.5-4+deb7u2_i386 + libgl1-mesa-glx-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dbg_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-dev_8.0.5-4+deb7u2_i386 + libgl1-mesa-swx11-i686_8.0.5-4+deb7u2_i386 + libgl2ps-dev_1.3.6-1_i386 + libgl2ps0_1.3.6-1_i386 + libgl2ps0-dbg_1.3.6-1_i386 + libglacier2-34_3.4.2-8.2_i386 + libglade2-0_1:2.6.4-1_i386 + libglade2-dev_1:2.6.4-1_i386 + libglade2.0-cil_2.12.10-5_i386 + libglade2.0-cil-dev_2.12.10-5_i386 + libglademm-2.4-1c2a_2.6.7-2_i386 + libglademm-2.4-dbg_2.6.7-2_i386 + libglademm-2.4-dev_2.6.7-2_i386 + libgladeui-1-9_3.6.7-2.1_i386 + libgladeui-1-dev_3.6.7-2.1_i386 + libgladeui-2-0_3.12.1-1_i386 + libgladeui-dev_3.12.1-1_i386 + libglapi-mesa_8.0.5-4+deb7u2_i386 + libglapi-mesa-dbg_8.0.5-4+deb7u2_i386 + libglbsp-dev_2.24-1_i386 + libglbsp3_2.24-1_i386 + libglc-dev_0.7.2-5+b1_i386 + libglc0_0.7.2-5+b1_i386 + libgle3_3.1.0-7_i386 + libgle3-dev_3.1.0-7_i386 + libglee0d1_5.4.0-1_i386 + libglee0d1-dbg_5.4.0-1_i386 + libgles1-mesa_8.0.5-4+deb7u2_i386 + libgles1-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles1-mesa-dev_8.0.5-4+deb7u2_i386 + libgles2-mesa_8.0.5-4+deb7u2_i386 + libgles2-mesa-dbg_8.0.5-4+deb7u2_i386 + libgles2-mesa-dev_8.0.5-4+deb7u2_i386 + libglew-dev_1.7.0-3_i386 + libglew1.7_1.7.0-3_i386 + libglewmx-dev_1.7.0-3_i386 + libglewmx1.7_1.7.0-3_i386 + libglfw-dev_2.7.2-1_i386 + libglfw2_2.7.2-1_i386 + libglib-object-introspection-perl_0.009-1+deb7u1_i386 + libglib-perl_3:1.260-1_i386 + libglib2.0-0_2.33.12+really2.32.4-5_i386 + libglib2.0-0-dbg_2.33.12+really2.32.4-5_i386 + libglib2.0-0-refdbg_2.33.12+really2.32.4-5_i386 + libglib2.0-bin_2.33.12+really2.32.4-5_i386 + libglib2.0-cil_2.12.10-5_i386 + libglib2.0-cil-dev_2.12.10-5_i386 + libglib2.0-dev_2.33.12+really2.32.4-5_i386 + libglibmm-2.4-1c2a_2.32.1-1_i386 + libglibmm-2.4-dbg_2.32.1-1_i386 + libglibmm-2.4-dev_2.32.1-1_i386 + libglide2_2002.04.10ds1-7_i386 + libglide2-dev_2002.04.10ds1-7_i386 + libglide3_2002.04.10ds1-7_i386 + libglide3-dev_2002.04.10ds1-7_i386 + libglobus-authz-callout-error-dev_2.2-1_i386 + libglobus-authz-callout-error0_2.2-1_i386 + libglobus-authz-dev_2.2-1_i386 + libglobus-authz0_2.2-1_i386 + libglobus-callout-dev_2.2-1_i386 + libglobus-callout0_2.2-1_i386 + libglobus-common-dev_14.7-2_i386 + libglobus-common0_14.7-2_i386 + libglobus-ftp-client-dev_7.3-1_i386 + libglobus-ftp-client2_7.3-1_i386 + libglobus-ftp-control-dev_4.4-1_i386 + libglobus-ftp-control1_4.4-1_i386 + libglobus-gass-cache-dev_8.1-2_i386 + libglobus-gass-cache5_8.1-2_i386 + libglobus-gass-copy-dev_8.4-1_i386 + libglobus-gass-copy2_8.4-1_i386 + libglobus-gass-server-ez-dev_4.3-1_i386 + libglobus-gass-server-ez2_4.3-1_i386 + libglobus-gass-transfer-dev_7.2-1_i386 + libglobus-gass-transfer2_7.2-1_i386 + libglobus-gfork-dev_3.2-1_i386 + libglobus-gfork0_3.2-1_i386 + libglobus-gram-client-dev_12.4-1_i386 + libglobus-gram-client3_12.4-1_i386 + libglobus-gram-job-manager-callout-error-dev_2.1-2_i386 + libglobus-gram-job-manager-callout-error0_2.1-2_i386 + libglobus-gram-protocol-dev_11.3-1_i386 + libglobus-gram-protocol3_11.3-1_i386 + libglobus-gridftp-server-control-dev_2.5-2_i386 + libglobus-gridftp-server-control0_2.5-2_i386 + libglobus-gridftp-server-dev_6.10-2_i386 + libglobus-gridftp-server6_6.10-2_i386 + libglobus-gridmap-callout-error-dev_1.2-2_i386 + libglobus-gridmap-callout-error0_1.2-2_i386 + libglobus-gsi-callback-dev_4.2-1_i386 + libglobus-gsi-callback0_4.2-1_i386 + libglobus-gsi-cert-utils-dev_8.3-1_i386 + libglobus-gsi-cert-utils0_8.3-1_i386 + libglobus-gsi-credential-dev_5.3-1_i386 + libglobus-gsi-credential1_5.3-1_i386 + libglobus-gsi-openssl-error-dev_2.1-2_i386 + libglobus-gsi-openssl-error0_2.1-2_i386 + libglobus-gsi-proxy-core-dev_6.2-1_i386 + libglobus-gsi-proxy-core0_6.2-1_i386 + libglobus-gsi-proxy-ssl-dev_4.1-2_i386 + libglobus-gsi-proxy-ssl1_4.1-2_i386 + libglobus-gsi-sysconfig-dev_5.2-1_i386 + libglobus-gsi-sysconfig1_5.2-1_i386 + libglobus-gss-assist-dev_8.5-1_i386 + libglobus-gss-assist3_8.5-1_i386 + libglobus-gssapi-error-dev_4.1-2_i386 + libglobus-gssapi-error2_4.1-2_i386 + libglobus-gssapi-gsi-dev_10.6-1_i386 + libglobus-gssapi-gsi4_10.6-1_i386 + libglobus-io-dev_9.3-1_i386 + libglobus-io3_9.3-1_i386 + libglobus-openssl-module-dev_3.2-1_i386 + libglobus-openssl-module0_3.2-1_i386 + libglobus-rls-client-dev_5.2-8_i386 + libglobus-rls-client5_5.2-8_i386 + libglobus-rsl-dev_9.1-2_i386 + libglobus-rsl2_9.1-2_i386 + libglobus-scheduler-event-generator-dev_4.6-1_i386 + libglobus-scheduler-event-generator0_4.6-1_i386 + libglobus-usage-dev_3.1-2_i386 + libglobus-usage0_3.1-2_i386 + libglobus-xio-dev_3.3-1_i386 + libglobus-xio-gsi-driver-dev_2.3-1_i386 + libglobus-xio-gsi-driver0_2.3-1_i386 + libglobus-xio-pipe-driver-dev_2.2-1_i386 + libglobus-xio-pipe-driver0_2.2-1_i386 + libglobus-xio-popen-driver-dev_2.3-1_i386 + libglobus-xio-popen-driver0_2.3-1_i386 + libglobus-xio0_3.3-1_i386 + libgloox-dbg_1.0-1.1_i386 + libgloox-dev_1.0-1.1_i386 + libgloox8_1.0-1.1_i386 + libglpk-dev_4.45-1_i386 + libglpk-java_1.0.18-1_i386 + libglpk0_4.45-1_i386 + libglpk0-dbg_4.45-1_i386 + libglrr-glib-dev_20050529-3.1_i386 + libglrr-glib0_20050529-3.1_i386 + libglrr-gobject-dev_20050529-3.1_i386 + libglrr-gobject0_20050529-3.1_i386 + libglrr-gtk-dev_20050529-3.1_i386 + libglrr-gtk0_20050529-3.1_i386 + libglrr-widgets-dev_20050529-3.1_i386 + libglrr-widgets0_20050529-3.1_i386 + libglu1-mesa_8.0.5-4+deb7u2_i386 + libglu1-mesa-dev_8.0.5-4+deb7u2_i386 + libgluegen2-jni_2.0-rc5-4_i386 + libglui-dev_2.36-4_i386 + libglui2c2_2.36-4_i386 + libglw1-mesa_8.0.0-1_i386 + libglw1-mesa-dev_8.0.0-1_i386 + libgme-dev_0.5.5-2_i386 + libgme0_0.5.5-2_i386 + libgmerlin-avdec-dev_1.2.0~dfsg-1+b1_i386 + libgmerlin-avdec1_1.2.0~dfsg-1+b1_i386 + libgmerlin-common_1.2.0~dfsg+1-1_i386 + libgmerlin-dev_1.2.0~dfsg+1-1_i386 + libgmerlin0_1.2.0~dfsg+1-1_i386 + libgmime-2.6-0_2.6.10-1_i386 + libgmime-2.6-0-dbg_2.6.10-1_i386 + libgmime-2.6-dev_2.6.10-1_i386 + libgmlib-dev_1.0.6-1_i386 + libgmlib0_1.0.6-1_i386 + libgmlib0-dbg_1.0.6-1_i386 + libgmp-dev_2:5.0.5+dfsg-2_i386 + libgmp-ocaml_20021123-17+b3_i386 + libgmp-ocaml-dev_20021123-17+b3_i386 + libgmp10_2:5.0.5+dfsg-2_i386 + libgmp3-dev_2:5.0.5+dfsg-2_i386 + libgmpada-dbg_0.0.20120331-1_i386 + libgmpada2_0.0.20120331-1_i386 + libgmpada3-dev_0.0.20120331-1_i386 + libgmpxx4ldbl_2:5.0.5+dfsg-2_i386 + libgmt-dev_4.5.7-2_i386 + libgmt4_4.5.7-2_i386 + libgmtk-dev_1.0.6-1_i386 + libgmtk0_1.0.6-1_i386 + libgmtk0-dbg_1.0.6-1_i386 + libgnadecommon-dbg_1.6.2-9_i386 + libgnadecommon1_1.6.2-9_i386 + libgnadecommon2-dev_1.6.2-9_i386 + libgnadeodbc-dbg_1.6.2-9_i386 + libgnadeodbc2_1.6.2-9_i386 + libgnadeodbc2-dev_1.6.2-9_i386 + libgnadesqlite3-2_1.6.2-9_i386 + libgnadesqlite3-2-dev_1.6.2-9_i386 + libgnadesqlite3-dbg_1.6.2-9_i386 + libgnat-4.6_4.6.3-8_i386 + libgnat-4.6-dbg_4.6.3-8_i386 + libgnatprj4.6_4.6.3-8_i386 + libgnatprj4.6-dbg_4.6.3-8_i386 + libgnatprj4.6-dev_4.6.3-8_i386 + libgnatvsn4.6_4.6.3-8_i386 + libgnatvsn4.6-dbg_4.6.3-8_i386 + libgnatvsn4.6-dev_4.6.3-8_i386 + libgnelib-dev_0.75+svn20091130-1+b1_i386 + libgnelib-doc_0.75+svn20091130-1+b1_i386 + libgnelib0_0.75+svn20091130-1+b1_i386 + libgnelib0-dbg_0.75+svn20091130-1+b1_i386 + libgnet-dev_2.0.8-2.2_i386 + libgnet2.0-0_2.0.8-2.2_i386 + libgnokii-dev_0.6.30+dfsg-1+b1_i386 + libgnokii6_0.6.30+dfsg-1+b1_i386 + libgnome-bluetooth-dev_3.4.2-1_i386 + libgnome-bluetooth10_3.4.2-1_i386 + libgnome-desktop-2-17_2.32.1-2_i386 + libgnome-desktop-3-2_3.4.2-1_i386 + libgnome-desktop-3-dev_3.4.2-1_i386 + libgnome-desktop-dev_2.32.1-2_i386 + libgnome-keyring-dev_3.4.1-1_i386 + libgnome-keyring0_3.4.1-1_i386 + libgnome-keyring0-dbg_3.4.1-1_i386 + libgnome-keyring1.0-cil_1.0.0-4_i386 + libgnome-keyring1.0-cil-dev_1.0.0-4_i386 + libgnome-mag-dev_1:0.16.3-1_i386 + libgnome-mag2_1:0.16.3-1_i386 + libgnome-media-profiles-3.0-0_3.0.0-1_i386 + libgnome-media-profiles-dev_3.0.0-1_i386 + libgnome-menu-3-0_3.4.2-5_i386 + libgnome-menu-3-dev_3.4.2-5_i386 + libgnome-menu-dev_3.0.1-4_i386 + libgnome-menu2_3.0.1-4_i386 + libgnome-speech-dev_1:0.4.25-5_i386 + libgnome-speech7_1:0.4.25-5_i386 + libgnome-vfsmm-2.6-1c2a_2.26.0-1_i386 + libgnome-vfsmm-2.6-dev_2.26.0-1_i386 + libgnome2-0_2.32.1-3_i386 + libgnome2-canvas-perl_1.002-2+b2_i386 + libgnome2-dbg_2.32.1-3_i386 + libgnome2-dev_2.32.1-3_i386 + libgnome2-gconf-perl_1.044-4_i386 + libgnome2-perl_1.042-2+b2_i386 + libgnome2-vfs-perl_1.081-3+b1_i386 + libgnome2-wnck-perl_0.16-2+b2_i386 + libgnome2.0-cil-dev_2.24.2-3_i386 + libgnome2.24-cil_2.24.2-3_i386 + libgnomeada-dbg_2.24.1-7_i386 + libgnomeada2.24.1_2.24.1-7_i386 + libgnomeada2.24.1-dev_2.24.1-7_i386 + libgnomecanvas2-0_2.30.3-1.2_i386 + libgnomecanvas2-dbg_2.30.3-1.2_i386 + libgnomecanvas2-dev_2.30.3-1.2_i386 + libgnomecanvasmm-2.6-1c2a_2.26.0-1_i386 + libgnomecanvasmm-2.6-dev_2.26.0-1_i386 + libgnomecups1.0-1_0.2.3-5_i386 + libgnomecups1.0-dev_0.2.3-5_i386 + libgnomekbd-dev_3.4.0.2-1_i386 + libgnomekbd7_3.4.0.2-1_i386 + libgnomemm-2.6-1c2_2.30.0-1_i386 + libgnomemm-2.6-dev_2.30.0-1_i386 + libgnomeprint2.2-0_2.18.8-3_i386 + libgnomeprint2.2-dev_2.18.8-3_i386 + libgnomeprintui2.2-0_2.18.6-3_i386 + libgnomeprintui2.2-dev_2.18.6-3_i386 + libgnomeui-0_2.24.5-2_i386 + libgnomeui-0-dbg_2.24.5-2_i386 + libgnomeui-dev_2.24.5-2_i386 + libgnomeuimm-2.6-1c2a_2.28.0-1_i386 + libgnomeuimm-2.6-dev_2.28.0-1_i386 + libgnomevfs2-0_1:2.24.4-2_i386 + libgnomevfs2-0-dbg_1:2.24.4-2_i386 + libgnomevfs2-bin_1:2.24.4-2_i386 + libgnomevfs2-dev_1:2.24.4-2_i386 + libgnomevfs2-extra_1:2.24.4-2_i386 + libgnuift0-dev_0.1.14-12_i386 + libgnuift0c2a_0.1.14-12_i386 + libgnuplot-ocaml-dev_0.8.3-3_i386 + libgnuradio-atsc3.5.3.2_3.5.3.2-1_i386 + libgnuradio-audio3.5.3.2_3.5.3.2-1_i386 + libgnuradio-comedi3.5.3.2_3.5.3.2-1_i386 + libgnuradio-core3.5.3.2_3.5.3.2-1_i386 + libgnuradio-digital3.5.3.2_3.5.3.2-1_i386 + libgnuradio-fcd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-noaa3.5.3.2_3.5.3.2-1_i386 + libgnuradio-pager3.5.3.2_3.5.3.2-1_i386 + libgnuradio-qtgui3.5.3.2_3.5.3.2-1_i386 + libgnuradio-trellis3.5.3.2_3.5.3.2-1_i386 + libgnuradio-uhd3.5.3.2_3.5.3.2-1_i386 + libgnuradio-video-sdl3.5.3.2_3.5.3.2-1_i386 + libgnuradio-vocoder3.5.3.2_3.5.3.2-1_i386 + libgnustep-base-dev_1.22.1-4_i386 + libgnustep-base1.22_1.22.1-4_i386 + libgnustep-base1.22-dbg_1.22.1-4_i386 + libgnustep-dl2-0d_0.12.0-9+nmu1_i386 + libgnustep-dl2-dev_0.12.0-9+nmu1_i386 + libgnustep-gui-dev_0.20.0-3_i386 + libgnustep-gui0.20_0.20.0-3_i386 + libgnustep-gui0.20-dbg_0.20.0-3_i386 + libgnutls-dev_2.12.20-7_i386 + libgnutls-openssl27_2.12.20-7_i386 + libgnutls26_2.12.20-7_i386 + libgnutls26-dbg_2.12.20-7_i386 + libgnutlsxx27_2.12.20-7_i386 + libgo0_4.7.2-5_i386 + libgo0-dbg_4.7.2-5_i386 + libgoa-1.0-0_3.4.2-2_i386 + libgoa-1.0-dev_3.4.2-2_i386 + libgoffice-0.8-8_0.8.17-1.2_i386 + libgoffice-0.8-dev_0.8.17-1.2_i386 + libgoffice-dbg_0.8.17-1.2_i386 + libgofigure-dev_0.9.0-1+b2_i386 + libgofigure0_0.9.0-1+b2_i386 + libgomp1_4.7.2-5_i386 + libgomp1-dbg_4.7.2-5_i386 + libgoo-canvas-perl_0.06-1+b2_i386 + libgoocanvas-dev_0.15-1_i386 + libgoocanvas3_0.15-1_i386 + libgoocanvasmm-1.0-5_0.15.4-1_i386 + libgoocanvasmm-dev_0.15.4-1_i386 + libgoogle-perftools-dev_2.0-2_i386 + libgoogle-perftools4_2.0-2_i386 + libgoogle-perftools4-dbg_2.0-2_i386 + libgooglepinyin0_0.1.2-1_i386 + libgooglepinyin0-dbg_0.1.2-1_i386 + libgooglepinyin0-dev_0.1.2-1_i386 + libgpac-dbg_0.5.0~dfsg0-1_i386 + libgpac-dev_0.5.0~dfsg0-1_i386 + libgpac2_0.5.0~dfsg0-1_i386 + libgpds-dbg_1.5.1-6_i386 + libgpds-dev_1.5.1-6_i386 + libgpds0_1.5.1-6_i386 + libgpelaunch-dev_0.14-6_i386 + libgpelaunch0_0.14-6_i386 + libgpelaunch0-dbg_0.14-6_i386 + libgpepimc-dev_0.9-4_i386 + libgpepimc0_0.9-4_i386 + libgpepimc0-dbg_0.9-4_i386 + libgpeschedule-dev_0.17-4_i386 + libgpeschedule0_0.17-4_i386 + libgpeschedule0-dbg_0.17-4_i386 + libgpevtype-dev_0.50-6_i386 + libgpevtype1_0.50-6_i386 + libgpevtype1-dbg_0.50-6_i386 + libgpewidget-dev_0.117-6_i386 + libgpewidget1_0.117-6_i386 + libgpewidget1-dbg_0.117-6_i386 + libgpg-error-dev_1.10-3.1_i386 + libgpg-error0_1.10-3.1_i386 + libgpgme++2_4:4.8.4-2_i386 + libgpgme11_1.2.0-1.4_i386 + libgpgme11-dev_1.2.0-1.4_i386 + libgphoto2-2_2.4.14-2_i386 + libgphoto2-2-dev_2.4.14-2_i386 + libgphoto2-port0_2.4.14-2_i386 + libgpiv-mpi3_0.6.1-4_i386 + libgpiv3_0.6.1-4_i386 + libgpiv3-common_0.6.1-4_i386 + libgpiv3-dbg_0.6.1-4_i386 + libgpiv3-dev_0.6.1-4_i386 + libgpm-dev_1.20.4-6_i386 + libgpm2_1.20.4-6_i386 + libgpod-cil_0.8.2-7_i386 + libgpod-cil-dev_0.8.2-7_i386 + libgpod-common_0.8.2-7_i386 + libgpod-dev_0.8.2-7_i386 + libgpod-nogtk-dev_0.8.2-7_i386 + libgpod4_0.8.2-7_i386 + libgpod4-nogtk_0.8.2-7_i386 + libgportugol-dev_1.1-2_i386 + libgportugol0_1.1-2_i386 + libgps-dev_3.6-4+deb7u1_i386 + libgps20_3.6-4+deb7u1_i386 + libgraflib1-dev_20061220+dfsg3-2_i386 + libgraflib1-gfortran_20061220+dfsg3-2_i386 + libgrafx11-1-dev_20061220+dfsg3-2_i386 + libgrafx11-1-gfortran_20061220+dfsg3-2_i386 + libgrantlee-core0_0.1.4-1_i386 + libgrantlee-dev_0.1.4-1_i386 + libgrantlee-gui0_0.1.4-1_i386 + libgraph4_2.26.3-14+deb7u1_i386 + libgraphics-libplot-perl_2.2.2-5+b2_i386 + libgraphics-magick-perl_1.3.16-1.1_i386 + libgraphicsmagick++1-dev_1.3.16-1.1_i386 + libgraphicsmagick++3_1.3.16-1.1_i386 + libgraphicsmagick1-dev_1.3.16-1.1_i386 + libgraphicsmagick3_1.3.16-1.1_i386 + libgraphite-dev_1:2.3.1-0.2_i386 + libgraphite2-2.0.0_1.1.3-1_i386 + libgraphite2-2.0.0-dbg_1.1.3-1_i386 + libgraphite2-dev_1.1.3-1_i386 + libgraphite3_1:2.3.1-0.2_i386 + libgraphite3-dbg_1:2.3.1-0.2_i386 + libgraphviz-dev_2.26.3-14+deb7u1_i386 + libgretl1_1.9.9-1_i386 + libgretl1-dev_1.9.9-1_i386 + libgrib-api-1.9.16_1.9.16-2+b1_i386 + libgrib-api-dev_1.9.16-2+b1_i386 + libgrib-api-tools_1.9.16-2+b1_i386 + libgrib2c-dev_1.2.2-2+b1_i386 + libgrib2c0d_1.2.2-2+b1_i386 + libgridsite-dev_1.7.16-1_i386 + libgridsite1.7_1.7.16-1_i386 + libgrilo-0.1-0_0.1.19-1_i386 + libgrilo-0.1-bin_0.1.19-1_i386 + libgrilo-0.1-dev_0.1.19-1_i386 + libgringotts-dev_1.2.10~pre3-1_i386 + libgringotts2_1.2.10~pre3-1_i386 + libgrits-dev_0.7-1_i386 + libgrits4_0.7-1_i386 + libgrok-dev_1.20110708.1-4_i386 + libgrok1_1.20110708.1-4_i386 + libgrss-1.0-0_0.5.0-1_i386 + libgrss-dev_0.5.0-1_i386 + libgruel3.5.3.2_3.5.3.2-1_i386 + libgs-dev_9.05~dfsg-6.3+deb7u1_i386 + libgs9_9.05~dfsg-6.3+deb7u1_i386 + libgsasl7_1.8.0-2_i386 + libgsasl7-dev_1.8.0-2_i386 + libgsecuredelete-dev_0.2-1_i386 + libgsecuredelete0_0.2-1_i386 + libgsf-1-114_1.14.21-2.1_i386 + libgsf-1-114-dbg_1.14.21-2.1_i386 + libgsf-1-dev_1.14.21-2.1_i386 + libgsf-bin_1.14.21-2.1_i386 + libgsf-gnome-1-114_1.14.21-2.1_i386 + libgsf-gnome-1-114-dbg_1.14.21-2.1_i386 + libgsf-gnome-1-dev_1.14.21-2.1_i386 + libgsl0-dbg_1.15+dfsg.2-2_i386 + libgsl0-dev_1.15+dfsg.2-2_i386 + libgsl0ldbl_1.15+dfsg.2-2_i386 + libgsm-tools_1.0.13-4_i386 + libgsm0710-0_1.2.2-2_i386 + libgsm0710-dbg_1.2.2-2_i386 + libgsm0710-dev_1.2.2-2_i386 + libgsm0710mux-dbg_0.11.2-1.1_i386 + libgsm0710mux-dev_0.11.2-1.1_i386 + libgsm0710mux2_0.11.2-1.1_i386 + libgsm1_1.0.13-4_i386 + libgsm1-dbg_1.0.13-4_i386 + libgsm1-dev_1.0.13-4_i386 + libgsmme-dev_1.10-13.2_i386 + libgsmme1c2a_1.10-13.2_i386 + libgsmsd7_1.31.90-1+b1_i386 + libgsnmp0_0.3.0-1.1_i386 + libgsnmp0-dbg_0.3.0-1.1_i386 + libgsnmp0-dev_0.3.0-1.1_i386 + libgsoap2_2.8.7-2_i386 + libgsql-dev_0.2.2-1.2+b1_i386 + libgsql0_0.2.2-1.2+b1_i386 + libgss-dbg_1.0.2-1_i386 + libgss-dev_1.0.2-1_i386 + libgss3_1.0.2-1_i386 + libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_i386 + libgssapi-perl_0.28-2_i386 + libgssapi3-heimdal_1.6~git20120403+dfsg1-2_i386 + libgssdp-1.0-3_0.12.2.1-2_i386 + libgssdp-1.0-dbg_0.12.2.1-2_i386 + libgssdp-1.0-dev_0.12.2.1-2_i386 + libgssglue-dev_0.4-2_i386 + libgssglue1_0.4-2_i386 + libgssrpc4_1.10.1+dfsg-5+deb7u1_i386 + libgst-dev_3.2.4-2_i386 + libgst7_3.2.4-2_i386 + libgstbuzztard-dev_0.5.0-2+deb7u1_i386 + libgstbuzztard0_0.5.0-2+deb7u1_i386 + libgstreamer-interfaces-perl_0.06-2_i386 + libgstreamer-ocaml_0.1.0-3+b1_i386 + libgstreamer-ocaml-dev_0.1.0-3+b1_i386 + libgstreamer-perl_0.17-1_i386 + libgstreamer-plugins-bad0.10-0_0.10.23-7.1_i386 + libgstreamer-plugins-bad0.10-dev_0.10.23-7.1_i386 + libgstreamer-plugins-base0.10-0_0.10.36-1.1_i386 + libgstreamer-plugins-base0.10-dev_0.10.36-1.1_i386 + libgstreamer0.10-0_0.10.36-1.2_i386 + libgstreamer0.10-0-dbg_0.10.36-1.2_i386 + libgstreamer0.10-dev_0.10.36-1.2_i386 + libgstreamer0.9-cil_0.9.2-4_i386 + libgstrtspserver-0.10-0_0.10.8-3_i386 + libgstrtspserver-0.10-dev_0.10.8-3_i386 + libgtest-dev_1.6.0-2_i386 + libgtextutils-dev_0.6.2-1_i386 + libgtextutils0_0.6.2-1_i386 + libgtg-dev_0.2+dfsg-1_i386 + libgtg0_0.2+dfsg-1_i386 + libgtk-3-0_3.4.2-7_i386 + libgtk-3-0-dbg_3.4.2-7_i386 + libgtk-3-bin_3.4.2-7_i386 + libgtk-3-dev_3.4.2-7_i386 + libgtk-vnc-1.0-0_0.5.0-3.1_i386 + libgtk-vnc-1.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-1.0-dev_0.5.0-3.1_i386 + libgtk-vnc-2.0-0_0.5.0-3.1_i386 + libgtk-vnc-2.0-0-dbg_0.5.0-3.1_i386 + libgtk-vnc-2.0-dev_0.5.0-3.1_i386 + libgtk2-gladexml-perl_1.007-1+b2_i386 + libgtk2-gst_3.2.4-2_i386 + libgtk2-imageview-perl_0.05-1+b2_i386 + libgtk2-notify-perl_0.05-3+b1_i386 + libgtk2-perl_2:1.244-1_i386 + libgtk2-sourceview2-perl_0.10-1+b2_i386 + libgtk2-spell-perl_1.04-1_i386 + libgtk2-trayicon-perl_0.06-1+b2_i386 + libgtk2-traymanager-perl_0.05-2+b2_i386 + libgtk2-unique-perl_0.05-1+b2_i386 + libgtk2.0-0_2.24.10-2_i386 + libgtk2.0-0-dbg_2.24.10-2_i386 + libgtk2.0-bin_2.24.10-2_i386 + libgtk2.0-cil_2.12.10-5_i386 + libgtk2.0-cil-dev_2.12.10-5_i386 + libgtk2.0-dev_2.24.10-2_i386 + libgtkada-bin_2.24.1-7_i386 + libgtkada-dbg_2.24.1-7_i386 + libgtkada2.24.1_2.24.1-7_i386 + libgtkada2.24.1-dev_2.24.1-7_i386 + libgtkdatabox-0.9.1-1_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-dev_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-glade_1:0.9.1.1-4_i386 + libgtkdatabox-0.9.1-1-libglade_1:0.9.1.1-4_i386 + libgtkgl2.0-1_2.0.1-2_i386 + libgtkgl2.0-dev_2.0.1-2_i386 + libgtkglada-dbg_2.24.1-7_i386 + libgtkglada2.24.1_2.24.1-7_i386 + libgtkglada2.24.1-dev_2.24.1-7_i386 + libgtkglext1_1.2.0-2_i386 + libgtkglext1-dbg_1.2.0-2_i386 + libgtkglext1-dev_1.2.0-2_i386 + libgtkglextmm-x11-1.2-0_1.2.0-4.1_i386 + libgtkglextmm-x11-1.2-dev_1.2.0-4.1_i386 + libgtkhex-3-0_3.4.1-1_i386 + libgtkhex-3-dev_3.4.1-1_i386 + libgtkhotkey-dev_0.2.1-3_i386 + libgtkhotkey1_0.2.1-3_i386 + libgtkhtml-4.0-0_4.4.4-1_i386 + libgtkhtml-4.0-dbg_4.4.4-1_i386 + libgtkhtml-4.0-dev_4.4.4-1_i386 + libgtkhtml-editor-3.14-0_3.32.2-2.1_i386 + libgtkhtml-editor-3.14-dev_3.32.2-2.1_i386 + libgtkhtml-editor-4.0-0_4.4.4-1_i386 + libgtkhtml-editor-4.0-dev_4.4.4-1_i386 + libgtkhtml3.14-19_3.32.2-2.1_i386 + libgtkhtml3.14-cil-dev_2.26.0-8_i386 + libgtkhtml3.14-dbg_3.32.2-2.1_i386 + libgtkhtml3.14-dev_3.32.2-2.1_i386 + libgtkhtml3.16-cil_2.26.0-8_i386 + libgtkimageview-dev_1.6.4+dfsg-0.1_i386 + libgtkimageview0_1.6.4+dfsg-0.1_i386 + libgtkmathview-bin_0.8.0-8_i386 + libgtkmathview-dev_0.8.0-8_i386 + libgtkmathview0c2a_0.8.0-8_i386 + libgtkmm-2.4-1c2a_1:2.24.2-1_i386 + libgtkmm-2.4-dbg_1:2.24.2-1_i386 + libgtkmm-2.4-dev_1:2.24.2-1_i386 + libgtkmm-3.0-1_3.4.2-1_i386 + libgtkmm-3.0-dbg_3.4.2-1_i386 + libgtkmm-3.0-dev_3.4.2-1_i386 + libgtkpod-dev_2.1.2-1_i386 + libgtkpod1_2.1.2-1_i386 + libgtksourceview-3.0-0_3.4.2-1_i386 + libgtksourceview-3.0-dev_3.4.2-1_i386 + libgtksourceview2-2.0-cil_2.26.0-8_i386 + libgtksourceview2-cil-dev_2.26.0-8_i386 + libgtksourceview2.0-0_2.10.4-1_i386 + libgtksourceview2.0-dev_2.10.4-1_i386 + libgtksourceviewmm-3.0-0_3.2.0-1_i386 + libgtksourceviewmm-3.0-dbg_3.2.0-1_i386 + libgtksourceviewmm-3.0-dev_3.2.0-1_i386 + libgtkspell-3-0_3.0.0~hg20110814-1_i386 + libgtkspell-3-dev_3.0.0~hg20110814-1_i386 + libgtkspell-dev_2.0.16-1_i386 + libgtkspell0_2.0.16-1_i386 + libgtkstylus_0.3-2_i386 + libgtop2-7_2.28.4-3_i386 + libgtop2-dev_2.28.4-3_i386 + libgts-0.7-5_0.7.6+darcs110121-1.1_i386 + libgts-bin_0.7.6+darcs110121-1.1_i386 + libgts-dbg_0.7.6+darcs110121-1.1_i386 + libgts-dev_0.7.6+darcs110121-1.1_i386 + libguac-client-rdp0_0.6.0-1_i386 + libguac-client-vnc0_0.6.0-1_i386 + libguac-dev_0.6.0-2_i386 + libguac3_0.6.0-2_i386 + libguard-perl_1.022-1+b1_i386 + libgucharmap-2-90-7_1:3.4.1.1-2.1_i386 + libgucharmap-2-90-dev_1:3.4.1.1-2.1_i386 + libgudev-1.0-0_175-7.2_i386 + libgudev-1.0-dev_175-7.2_i386 + libguess-dev_1.1-1_i386 + libguess1_1.1-1_i386 + libguestfs-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-1.0-0_1:1.18.1-1+deb7u3_i386 + libguestfs-gobject-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-java_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml_1:1.18.1-1+deb7u3_i386 + libguestfs-ocaml-dev_1:1.18.1-1+deb7u3_i386 + libguestfs-perl_1:1.18.1-1+deb7u3_i386 + libguestfs-tools_1:1.18.1-1+deb7u3_i386 + libguestfs0_1:1.18.1-1+deb7u3_i386 + libguestfs0-dbg_1:1.18.1-1+deb7u3_i386 + libguichan-0.8.1-1_0.8.2-10+b1_i386 + libguichan-0.8.1-1-dbg_0.8.2-10+b1_i386 + libguichan-allegro-0.8.1-1_0.8.2-10+b1_i386 + libguichan-dev_0.8.2-10+b1_i386 + libguichan-opengl-0.8.1-1_0.8.2-10+b1_i386 + libguichan-sdl-0.8.1-1_0.8.2-10+b1_i386 + libguile-ltdl-1_1.6.8-10.3_i386 + libgupnp-1.0-4_0.18.4-1_i386 + libgupnp-1.0-dbg_0.18.4-1_i386 + libgupnp-1.0-dev_0.18.4-1_i386 + libgupnp-av-1.0-2_0.10.3-1_i386 + libgupnp-av-1.0-dbg_0.10.3-1_i386 + libgupnp-av-1.0-dev_0.10.3-1_i386 + libgupnp-dlna-1.0-2_0.6.6-1_i386 + libgupnp-dlna-1.0-dbg_0.6.6-1_i386 + libgupnp-dlna-1.0-dev_0.6.6-1_i386 + libgupnp-igd-1.0-4_0.2.1-2_i386 + libgupnp-igd-1.0-dbg_0.2.1-2_i386 + libgupnp-igd-1.0-dev_0.2.1-2_i386 + libgusb-dev_0.1.3-5_i386 + libgusb2_0.1.3-5_i386 + libgutenprint-dev_5.2.9-1_i386 + libgutenprint2_5.2.9-1_i386 + libgutenprintui2-1_5.2.9-1_i386 + libgutenprintui2-dev_5.2.9-1_i386 + libguytools2_2.0.1-1.1_i386 + libguytools2-dev_2.0.1-1.1_i386 + libgv-guile_2.26.3-14+deb7u1_i386 + libgv-lua_2.26.3-14+deb7u1_i386 + libgv-perl_2.26.3-14+deb7u1_i386 + libgv-php5_2.26.3-14+deb7u1_i386 + libgv-python_2.26.3-14+deb7u1_i386 + libgv-ruby_2.26.3-14+deb7u1_i386 + libgv-tcl_2.26.3-14+deb7u1_i386 + libgvc5_2.26.3-14+deb7u1_i386 + libgvc5-plugins-gtk_2.26.3-14+deb7u1_i386 + libgvnc-1.0-0_0.5.0-3.1_i386 + libgvnc-1.0-0-dbg_0.5.0-3.1_i386 + libgvnc-1.0-dev_0.5.0-3.1_i386 + libgvpr1_2.26.3-14+deb7u1_i386 + libgweather-3-0_3.4.1-1+build1_i386 + libgweather-3-dev_3.4.1-1+build1_i386 + libgwengui-fox16-0_4.3.3-1_i386 + libgwengui-gtk2-0_4.3.3-1_i386 + libgwengui-qt4-0_4.3.3-1_i386 + libgwenhywfar60_4.3.3-1_i386 + libgwenhywfar60-dbg_4.3.3-1_i386 + libgwenhywfar60-dev_4.3.3-1_i386 + libgwrap-runtime-dev_1.9.14-1.1_i386 + libgwrap-runtime2_1.9.14-1.1_i386 + libgwyddion2-0_2.28-2_i386 + libgwyddion20-dev_2.28-2_i386 + libgxps-dev_0.2.2-2_i386 + libgxps-utils_0.2.2-2_i386 + libgxps2_0.2.2-2_i386 + libgyoto0_0.0.3-5_i386 + libgyoto0-dev_0.0.3-5_i386 + libgzstream-tulip-3.7.0_3.7.0dfsg-4_i386 + libh323-1.24.0_1.24.0~dfsg2-1_i386 + libh323-dbg_1.24.0~dfsg2-1_i386 + libh323plus-dev_1.24.0~dfsg2-1_i386 + libhaildb-dbg_2.3.2-1.2_i386 + libhaildb-dev_2.3.2-1.2_i386 + libhaildb6_2.3.2-1.2_i386 + libhal-dev_0.5.14-8_i386 + libhal-storage-dev_0.5.14-8_i386 + libhal-storage1_0.5.14-8_i386 + libhal1_0.5.14-8_i386 + libhamlib++-dev_1.2.15.1-1_i386 + libhamlib-dev_1.2.15.1-1_i386 + libhamlib-utils_1.2.15.1-1_i386 + libhamlib2_1.2.15.1-1_i386 + libhamlib2++c2_1.2.15.1-1_i386 + libhamlib2-perl_1.2.15.1-1_i386 + libhamlib2-tcl_1.2.15.1-1_i386 + libhandoff-dev_0.1-5_i386 + libhandoff0_0.1-5_i386 + libhandoff0-dbg_0.1-5_i386 + libhangul-dev_0.1.0-2_i386 + libhangul1_0.1.0-2_i386 + libhangul1-dbg_0.1.0-2_i386 + libharminv-dev_1.3.1-9_i386 + libharminv2_1.3.1-9_i386 + libhash-fieldhash-perl_0.12-2_i386 + libhashkit-dev_1.0.8-1_i386 + libhashkit2_1.0.8-1_i386 + libhawknl_1.6.8+dfsg2-1_i386 + libhawknl-dbg_1.6.8+dfsg2-1_i386 + libhawknl-dev_1.6.8+dfsg2-1_i386 + libhbaapi-dev_2.2.5-1_i386 + libhbaapi2_2.2.5-1_i386 + libhbalinux-dev_1.0.14-1_i386 + libhbalinux2_1.0.14-1_i386 + libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_i386 + libhd-dev_16.0-2.2_i386 + libhd16_16.0-2.2_i386 + libhdate-dev_1.6-1_i386 + libhdate-perl_1.6-1_i386 + libhdate1_1.6-1_i386 + libhdb9-heimdal_1.6~git20120403+dfsg1-2_i386 + libhdf4-0_4.2r4-13_i386 + libhdf4-0-alt_4.2r4-13_i386 + libhdf4-alt-dev_4.2r4-13_i386 + libhdf4-dev_4.2r4-13_i386 + libhdf5-7_1.8.8-9_i386 + libhdf5-7-dbg_1.8.8-9_i386 + libhdf5-dev_1.8.8-9_i386 + libhdf5-mpi-dev_1.8.8-9_i386 + libhdf5-mpich2-7_1.8.8-9_i386 + libhdf5-mpich2-7-dbg_1.8.8-9_i386 + libhdf5-mpich2-dev_1.8.8-9_i386 + libhdf5-openmpi-7_1.8.8-9_i386 + libhdf5-openmpi-7-dbg_1.8.8-9_i386 + libhdf5-openmpi-dev_1.8.8-9_i386 + libhdf5-serial-dev_1.8.8-9_i386 + libhdfeos-dev_2.17v1.00.dfsg.1-3_i386 + libhdfeos0_2.17v1.00.dfsg.1-3_i386 + libhdfeos5-ruby1.8_1.0-2+b1_i386 + libhdfeos5-ruby1.8-dbg_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1_1.0-2+b1_i386 + libhdfeos5-ruby1.9.1-dbg_1.0-2+b1_i386 + libhdhomerun-dev_20120405-1_i386 + libhdhomerun1_20120405-1_i386 + libhe5-hdfeos-dev_5.1.13.dfsg.1-3_i386 + libhe5-hdfeos0_5.1.13.dfsg.1-3_i386 + libheartbeat2_1:3.0.5-3_i386 + libheartbeat2-dev_1:3.0.5-3_i386 + libheimbase1-heimdal_1.6~git20120403+dfsg1-2_i386 + libheimdal-kadm5-perl_0.08-4_i386 + libheimntlm0-heimdal_1.6~git20120403+dfsg1-2_i386 + libhepmc-dev_2.06.09-1_i386 + libhepmc4_2.06.09-1_i386 + libhepmcfio-dev_2.06.09-1_i386 + libhepmcfio4_2.06.09-1_i386 + libhepmcinterface8_8.1.65-1_i386 + libhepmcinterface8-dev_8.1.65-1_i386 + libherwig59-2-dev_20061220+dfsg3-2_i386 + libherwig59-2-gfortran_20061220+dfsg3-2_i386 + libhesiod-dev_3.0.2-21_i386 + libhesiod0_3.0.2-21_i386 + libhfsp-dev_1.0.4-12_i386 + libhfsp0_1.0.4-12_i386 + libhighgui-dev_2.3.1-11_i386 + libhighgui2.3_2.3.1-11_i386 + libhighlight-perl_3.9-1_i386 + libhippocanvas-1-0_0.3.1-1.1_i386 + libhippocanvas-dev_0.3.1-1.1_i386 + libhiredis-dbg_0.10.1-7_i386 + libhiredis-dev_0.10.1-7_i386 + libhiredis0.10_0.10.1-7_i386 + libhivex-bin_1.3.6-2_i386 + libhivex-dev_1.3.6-2_i386 + libhivex-ocaml_1.3.6-2_i386 + libhivex-ocaml-dev_1.3.6-2_i386 + libhivex0_1.3.6-2_i386 + libhivex0-dbg_1.3.6-2_i386 + libhkl-dbg_4.0.3-4_i386 + libhkl-dev_4.0.3-4_i386 + libhkl4_4.0.3-4_i386 + libhmsbeagle-dev_1.0-6_i386 + libhmsbeagle-java_1.0-6_i386 + libhmsbeagle1_1.0-6_i386 + libhocr-dev_0.10.17-1+b2_i386 + libhocr-python_0.10.17-1+b2_i386 + libhocr0_0.10.17-1+b2_i386 + libhogweed2_2.4-3_i386 + libhpdf-2.2.1_2.2.1-1_i386 + libhpdf-dev_2.2.1-1_i386 + libhpmud-dev_3.12.6-3.1+deb7u1_i386 + libhpmud0_3.12.6-3.1+deb7u1_i386 + libhsclient-dev_1.1.0-7-g1044a28-1_i386 + libhsm-bin_1:1.3.9-5_i386 + libhtml-parser-perl_3.69-2_i386 + libhtml-strip-perl_1.06-1+b2_i386 + libhtml-template-pro-perl_0.9509-1_i386 + libhtml-tidy-perl_1.50-1+b2_i386 + libhtmlcxx-dev_0.85-2_i386 + libhtmlcxx3_0.85-2_i386 + libhtp-dev_0.2.6-2_i386 + libhtp1_0.2.6-2_i386 + libhtsengine-dev_1.06-1_i386 + libhtsengine1_1.06-1_i386 + libhttp-ocaml-dev_0.1.5-1+b2_i386 + libhttp-parser-xs-perl_0.14-1+b1_i386 + libhttrack-dev_3.46.1-1_i386 + libhttrack2_3.46.1-1_i386 + libhugs-alut-bundled_98.200609.21-5.3_i386 + libhugs-base-bundled_98.200609.21-5.3_i386 + libhugs-cabal-bundled_98.200609.21-5.3_i386 + libhugs-fgl-bundled_98.200609.21-5.3_i386 + libhugs-glut-bundled_98.200609.21-5.3_i386 + libhugs-haskell-src-bundled_98.200609.21-5.3_i386 + libhugs-haskell98-bundled_98.200609.21-5.3_i386 + libhugs-haxml-bundled_98.200609.21-5.3_i386 + libhugs-hgl-bundled_98.200609.21-5.3_i386 + libhugs-hunit-bundled_98.200609.21-5.3_i386 + libhugs-mtl-bundled_98.200609.21-5.3_i386 + libhugs-network-bundled_98.200609.21-5.3_i386 + libhugs-openal-bundled_98.200609.21-5.3_i386 + libhugs-opengl-bundled_98.200609.21-5.3_i386 + libhugs-parsec-bundled_98.200609.21-5.3_i386 + libhugs-quickcheck-bundled_98.200609.21-5.3_i386 + libhugs-stm-bundled_98.200609.21-5.3_i386 + libhugs-time-bundled_98.200609.21-5.3_i386 + libhugs-unix-bundled_98.200609.21-5.3_i386 + libhugs-x11-bundled_98.200609.21-5.3_i386 + libhugs-xhtml-bundled_98.200609.21-5.3_i386 + libhunspell-1.3-0_1.3.2-4_i386 + libhunspell-1.3-0-dbg_1.3.2-4_i386 + libhunspell-dev_1.3.2-4_i386 + libhwloc-dev_1.4.1-4_i386 + libhwloc5_1.4.1-4_i386 + libhx-dev_3.12.1-1_i386 + libhx28_3.12.1-1_i386 + libhx509-5-heimdal_1.6~git20120403+dfsg1-2_i386 + libhyantes-dev_1.3.0-1_i386 + libhyantes0_1.3.0-1_i386 + libhyphen-dev_2.8.3-2_i386 + libhyphen0_2.8.3-2_i386 + libhypre-2.8.0b_2.8.0b-1_i386 + libhz-dev_0.3.16-3_i386 + libhz0_0.3.16-3_i386 + libib-util_2.5.2.26540.ds4-1~deb7u1_i386 + libibcm-dev_1.0.4-1.1_i386 + libibcm1_1.0.4-1.1_i386 + libibcommon-dev_1.1.2-20090314-1_i386 + libibcommon1_1.1.2-20090314-1_i386 + libibdm-dev_1.2-OFED-1.4.2-1.3_i386 + libibdm1_1.2-OFED-1.4.2-1.3_i386 + libibmad-dev_1.2.3-20090314-1.1_i386 + libibmad1_1.2.3-20090314-1.1_i386 + libibtk-dev_0.0.14-12_i386 + libibtk0_0.0.14-12_i386 + libibumad-dev_1.2.3-20090314-1.1_i386 + libibumad1_1.2.3-20090314-1.1_i386 + libibus-1.0-0_1.4.1-9+deb7u1_i386 + libibus-1.0-dev_1.4.1-9+deb7u1_i386 + libibus-qt-dev_1.3.1-2.1_i386 + libibus-qt1_1.3.1-2.1_i386 + libibverbs-dev_1.1.6-1_i386 + libibverbs1_1.1.6-1_i386 + libibverbs1-dbg_1.1.6-1_i386 + libical-dbg_0.48-2_i386 + libical-dev_0.48-2_i386 + libical0_0.48-2_i386 + libicapapi-dev_1:0.1.6-1.1_i386 + libicapapi0_1:0.1.6-1.1_i386 + libicapapi0-dbg_1:0.1.6-1.1_i386 + libicc-dev_2.12+argyll1.4.0-8_i386 + libicc-utils-dev_1.6.4-1+b1_i386 + libicc-utils2_1.6.4-1+b1_i386 + libicc2_2.12+argyll1.4.0-8_i386 + libice-dev_2:1.0.8-2_i386 + libice6_2:1.0.8-2_i386 + libice6-dbg_2:1.0.8-2_i386 + libicebox34_3.4.2-8.2_i386 + libicedb34_3.4.2-8.2_i386 + libicee-dev_1.2.0-6.1_i386 + libicee12_1.2.0-6.1_i386 + libicegrid34_3.4.2-8.2_i386 + libicepatch2-34_3.4.2-8.2_i386 + libicessl34_3.4.2-8.2_i386 + libicestorm34_3.4.2-8.2_i386 + libiceutil34_3.4.2-8.2_i386 + libicexml34_3.4.2-8.2_i386 + libicns-dev_0.8.1-1_i386 + libicns1_0.8.1-1_i386 + libiconv-hook-dev_0.0.20021209-10_i386 + libiconv-hook1_0.0.20021209-10_i386 + libics-dev_1.5.2-3_i386 + libics0_1.5.2-3_i386 + libicu-dev_4.8.1.1-12+deb7u1_i386 + libicu48_4.8.1.1-12+deb7u1_i386 + libicu48-dbg_4.8.1.1-12+deb7u1_i386 + libid3-3.8.3-dev_3.8.3-15_i386 + libid3-3.8.3c2a_3.8.3-15_i386 + libid3-tools_3.8.3-15_i386 + libid3tag0_0.15.1b-10_i386 + libid3tag0-dev_0.15.1b-10_i386 + libident_0.22-3_i386 + libident-dev_0.22-3_i386 + libidl-dev_0.8.14-0.2_i386 + libidl0_0.8.14-0.2_i386 + libidn11_1.25-2_i386 + libidn11-dev_1.25-2_i386 + libidn2-0_0.8-2_i386 + libidn2-0-dbg_0.8-2_i386 + libidn2-0-dev_0.8-2_i386 + libido-0.1-0_0.3.4-1_i386 + libido-0.1-dev_0.3.4-1_i386 + libido3-0.1-0_0.3.4-1_i386 + libido3-0.1-dev_0.3.4-1_i386 + libidzebra-2.0-0_2.0.44-3_i386 + libidzebra-2.0-dev_2.0.44-3_i386 + libidzebra-2.0-mod-alvis_2.0.44-3_i386 + libidzebra-2.0-mod-dom_2.0.44-3_i386 + libidzebra-2.0-mod-grs-marc_2.0.44-3_i386 + libidzebra-2.0-mod-grs-regx_2.0.44-3_i386 + libidzebra-2.0-mod-grs-xml_2.0.44-3_i386 + libidzebra-2.0-mod-text_2.0.44-3_i386 + libidzebra-2.0-modules_2.0.44-3_i386 + libiec16022-0_0.2.4-1_i386 + libiec16022-dev_0.2.4-1_i386 + libiec61883-0_1.2.0-0.1_i386 + libiec61883-dev_1.2.0-0.1_i386 + libieee1284-3_0.2.11-10_i386 + libieee1284-3-dev_0.2.11-10_i386 + libifd-cyberjack6_3.99.5final.sp03-1_i386 + libifp-dev_1.0.0.2-5_i386 + libifp4_1.0.0.2-5_i386 + libifstat-dev_1.1-8_i386 + libigraph0_0.5.4-2_i386 + libigraph0-dev_0.5.4-2_i386 + libigstk4_4.4.0-2+b1_i386 + libigstk4-dbg_4.4.0-2+b1_i386 + libigstk4-dev_4.4.0-2+b1_i386 + libijs-0.35_0.35-8_i386 + libijs-dev_0.35-8_i386 + libiksemel-dev_1.2-4_i386 + libiksemel-utils_1.2-4_i386 + libiksemel3_1.2-4_i386 + libikvm-native_7.0.4335.0+ds-1_i386 + libilmbase-dev_1.0.1-4_i386 + libilmbase6_1.0.1-4_i386 + libimage-exif-perl_2.01-1_i386 + libimage-imlib2-perl_2.03-1+b1_i386 + libimage-librsvg-perl_0.07-6+b1_i386 + libimage-seek-perl_0.02-1+b2_i386 + libimager-perl_0.91+dfsg-2_i386 + libimager-qrcode-perl_0.033-1+b1_i386 + libimdi-dev_1.4.0-8_i386 + libimdi0_1.4.0-8_i386 + libiml-dev_1.0.3-4.2_i386 + libiml0_1.0.3-4.2_i386 + libimlib2_1.4.5-1_i386 + libimlib2-dev_1.4.5-1_i386 + libimlib2-ruby_0.5.2-2.1_i386 + libimobiledevice-dev_1.1.1-4_i386 + libimobiledevice-utils_1.1.1-4_i386 + libimobiledevice2_1.1.1-4_i386 + libimobiledevice2-dbg_1.1.1-4_i386 + libindi-dev_0.9.1-2_i386 + libindi0b_0.9.1-2_i386 + libindicate-dev_0.6.92-1_i386 + libindicate-gtk-dev_0.6.92-1_i386 + libindicate-gtk3_0.6.92-1_i386 + libindicate-gtk3-3_0.6.92-1_i386 + libindicate-gtk3-dev_0.6.92-1_i386 + libindicate-qt-dev_0.2.5.91-5_i386 + libindicate-qt1_0.2.5.91-5_i386 + libindicate5_0.6.92-1_i386 + libindicator-dev_0.5.0-1_i386 + libindicator-messages-status-provider-dev_0.6.0-1_i386 + libindicator-messages-status-provider1_0.6.0-1_i386 + libindicator-tools_0.5.0-1_i386 + libindicator3-7_0.5.0-1_i386 + libindicator3-dev_0.5.0-1_i386 + libindicator3-tools_0.5.0-1_i386 + libindicator7_0.5.0-1_i386 + libindigo-dev_1.0.0-2_i386 + libindigo0d_1.0.0-2_i386 + libindirect-perl_0.26-1+b1_i386 + libinfgtk3-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-0_0.5.2-6.1_i386 + libinfinity-0.5-dbg_0.5.2-6.1_i386 + libinfinity-0.5-dev_0.5.2-6.1_i386 + libini-config-dev_0.1.3-2_i386 + libini-config2_0.1.3-2_i386 + libinifiles-ocaml_1.2-2_i386 + libinifiles-ocaml-dev_1.2-2_i386 + libinnodb-dbg_1.0.6.6750-1_i386 + libinnodb-dev_1.0.6.6750-1_i386 + libinnodb3_1.0.6.6750-1_i386 + libinotify-ocaml_1.0-1+b3_i386 + libinotify-ocaml-dev_1.0-1+b3_i386 + libinotifytools0_3.14-1_i386 + libinotifytools0-dev_3.14-1_i386 + libinput-pad-dev_1.0.1-2_i386 + libinput-pad-xtest_1.0.1-2_i386 + libinput-pad1_1.0.1-2_i386 + libinsighttoolkit3-dev_3.20.1+git20120521-3_i386 + libinsighttoolkit3.20_3.20.1+git20120521-3_i386 + libinstpatch-1.0-0_1.0.0-3_i386 + libinstpatch-1.0-0-dbg_1.0.0-3_i386 + libinstpatch-dev_1.0.0-3_i386 + libint-dbg_1.1.4-1_i386 + libint-dev_1.1.4-1_i386 + libint1_1.1.4-1_i386 + libinternals-perl_1.1-1+b1_i386 + libintl-xs-perl_1.20-1+b2_i386 + libinventor0_2.1.5-10-16_i386 + libio-aio-perl_4.15-1_i386 + libio-dirent-perl_0.05-1_i386 + libio-epoll-perl_0.03-1_i386 + libio-interface-perl_1.06-1+b1_i386 + libio-pty-perl_1:1.08-1+b2_i386 + libio-socket-multicast-perl_1.12-1+b2_i386 + libiodbc2_3.52.7-2+deb7u1_i386 + libiodbc2-dev_3.52.7-2+deb7u1_i386 + libion-dev_3.0.1~dfsg1-1_i386 + libion0_3.0.1~dfsg1-1_i386 + libipa-hbac-dev_1.8.4-2_i386 + libipa-hbac0_1.8.4-2_i386 + libipathverbs-dev_1.2-1_i386 + libipathverbs1_1.2-1_i386 + libipathverbs1-dbg_1.2-1_i386 + libipc-sharelite-perl_0.17-2_i386 + libipe-dev_7.1.2-1_i386 + libipe7.1.2_7.1.2-1_i386 + libipmiconsole-dev_1.1.5-3_i386 + libipmiconsole2_1.1.5-3_i386 + libipmidetect-dev_1.1.5-3_i386 + libipmidetect0_1.1.5-3_i386 + libipmimonitoring-dev_1.1.5-3_i386 + libipmimonitoring5_1.1.5-3_i386 + libipset-dev_6.12.1-1_i386 + libipset2_6.12.1-1_i386 + libiptables-ipv4-ipqueue-perl_1.25-3+b2_i386 + libiptcdata-bin_1.0.4-3_i386 + libiptcdata0_1.0.4-3_i386 + libiptcdata0-dbg_1.0.4-3_i386 + libiptcdata0-dev_1.0.4-3_i386 + libircclient-dev_1.3+dfsg1-3_i386 + libircclient1_1.3+dfsg1-3_i386 + libirman-dev_0.4.4-2_i386 + libirrlicht-dev_1.7.3+dfsg1-4_i386 + libirrlicht1.7a_1.7.3+dfsg1-4_i386 + libirrlicht1.7a-dbg_1.7.3+dfsg1-4_i386 + libisajet758-3-dev_20061220+dfsg3-2_i386 + libisajet758-3-gfortran_20061220+dfsg3-2_i386 + libisc84_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccc80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libisccfg82_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + libiscsi-bin_1.4.0-3_i386 + libiscsi-dev_1.4.0-3_i386 + libiscsi1_1.4.0-3_i386 + libisl-dbg_0.10-3_i386 + libisl-dev_0.10-3_i386 + libisl10_0.10-3_i386 + libiso9660-8_0.83-4_i386 + libiso9660-dev_0.83-4_i386 + libisoburn-dbg_1.2.2-2_i386 + libisoburn-dev_1.2.2-2_i386 + libisoburn1_1.2.2-2_i386 + libisofs-dbg_1.2.2-1_i386 + libisofs-dev_1.2.2-1_i386 + libisofs6_1.2.2-1_i386 + libitalc_1:1.0.13-1.4_i386 + libitext-java-gcj_2.1.7-3+deb7u1_i386 + libitl-dev_0.7.0-3_i386 + libitl-gobject-dev_0.2-1_i386 + libitl-gobject0_0.2-1_i386 + libitl0_0.7.0-3_i386 + libitm1_4.7.2-5_i386 + libitm1-dbg_4.7.2-5_i386 + libitpp-dev_4.2-4_i386 + libitpp7_4.2-4_i386 + libitpp7-dbg_4.2-4_i386 + libitsol-dev_1.0.0-2_i386 + libitsol1_1.0.0-2_i386 + libiv-unidraw1_1.2.10a1-1_i386 + libiv1_1.2.10a1-1_i386 + libivykis-dev_0.30.1-2_i386 + libivykis0_0.30.1-2_i386 + libivykis0-dbg_0.30.1-2_i386 + libiw-dev_30~pre9-8_i386 + libiw30_30~pre9-8_i386 + libixp_0.5-5_i386 + libjack-dev_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack-jackd2-dev_1.9.8~dfsg.4+20120529git007cdc37-5_i386 + libjack0_1:0.121.3+20120418git75e3e20b-2.1_i386 + libjalali-dev_0.4.0-1.1_i386 + libjalali0_0.4.0-1.1_i386 + libjana-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-ecal0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-examples_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-gtk0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana-test_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjana0-dbg_0.0.0+git20091215.9ec1da8a-2+b4_i386 + libjansson-dbg_2.3.1-2_i386 + libjansson-dev_2.3.1-2_i386 + libjansson4_2.3.1-2_i386 + libjasper-dev_1.900.1-13_i386 + libjasper-runtime_1.900.1-13_i386 + libjasper1_1.900.1-13_i386 + libjaula-dev_1.4.0-3_i386 + libjaula-doc_1.4.0-3_i386 + libjaula1_1.4.0-3_i386 + libjava-gnome-jni_4.1.1-4_i386 + libjava3d-jni_1.5.2+dfsg-8_i386 + libjavascript-minifier-xs-perl_0.09-1+b2_i386 + libjavascriptcoregtk-1.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-1.0-dev_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-0-dbg_1.8.1-3.4_i386 + libjavascriptcoregtk-3.0-dev_1.8.1-3.4_i386 + libjaxp1.3-java-gcj_1.3.05-2_i386 + libjbig-dev_2.0-2_i386 + libjbig0_2.0-2_i386 + libjbig2dec0_0.11+20120125-1_i386 + libjbig2dec0-dev_0.11+20120125-1_i386 + libjcode-pm-perl_2.06-1_i386 + libjconv-bin_2.8-6+b1_i386 + libjconv-dev_2.8-6+b1_i386 + libjconv2_2.8-6+b1_i386 + libjemalloc-dev_3.0.0-3_i386 + libjemalloc1_3.0.0-3_i386 + libjemalloc1-dbg_3.0.0-3_i386 + libjetty-extra_6.1.26-1_i386 + libjffi-jni_1.0.2-9_i386 + libjhdf4-java_2.8.0-5_i386 + libjhdf4-jni_2.8.0-5_i386 + libjhdf5-java_2.8.0-5_i386 + libjhdf5-jni_2.8.0-5_i386 + libjim-dev_0.73-3_i386 + libjim0debian2_0.73-3_i386 + libjinput-jni_20100502+dfsg-7_i386 + libjmagick6-jni_6.2.6-0-8+b2_i386 + libjna-java_3.2.7-4_i386 + libjogl-jni_1.1.1+dak1-12_i386 + libjogl2-jni_2.0-rc5-2_i386 + libjpeg-progs_8d-1_i386 + libjpeg62_6b1-3_i386 + libjpeg62-dbg_6b1-3_i386 + libjpeg62-dev_6b1-3_i386 + libjpeg8_8d-1_i386 + libjpeg8-dbg_8d-1_i386 + libjpeg8-dev_8d-1_i386 + libjpgalleg4-dev_2:4.4.2-2.1_i386 + libjpgalleg4.4_2:4.4.2-2.1_i386 + libjs-of-ocaml_1.2-2_i386 + libjs-of-ocaml-dev_1.2-2_i386 + libjson-glib-1.0-0_0.14.2-1_i386 + libjson-glib-1.0-0-dbg_0.14.2-1_i386 + libjson-glib-dev_0.14.2-1_i386 + libjson-spirit-dev_4.04-1+b1_i386 + libjson-static-camlp4-dev_0.9.8-1+b5_i386 + libjson-wheel-ocaml-dev_1.0.6-2+b8_i386 + libjson-xs-perl_2.320-1+b1_i386 + libjson0_0.10-1.2_i386 + libjson0-dbg_0.10-1.2_i386 + libjson0-dev_0.10-1.2_i386 + libjsoncpp-dev_0.6.0~rc2-3_i386 + libjsoncpp0_0.6.0~rc2-3_i386 + libjss-java_4.3.1-4_i386 + libjte-dev_1.19-1_i386 + libjte1_1.19-1_i386 + libjthread-dbg_1.3.1-3_i386 + libjthread-dev_1.3.1-3_i386 + libjthread1.3.1_1.3.1-3_i386 + libjudy-dev_1.0.5-1_i386 + libjudydebian1_1.0.5-1_i386 + libjuman-dev_5.1-2.1_i386 + libjuman4_5.1-2.1_i386 + libjxgrabkey-jni_0.3.2-6_i386 + libk3b-dev_2.0.2-6_i386 + libk3b6_2.0.2-6_i386 + libk3b6-extracodecs_2.0.2-6_i386 + libk5crypto3_1.10.1+dfsg-5+deb7u1_i386 + libkabc4_4:4.8.4-2_i386 + libkactivities-bin_4:4.8.4-1_i386 + libkactivities-dbg_4:4.8.4-1_i386 + libkactivities-dev_4:4.8.4-1_i386 + libkactivities6_4:4.8.4-1_i386 + libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5clnt7-heimdal_1.6~git20120403+dfsg1-2_i386 + libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_i386 + libkadm5srv8-heimdal_1.6~git20120403+dfsg1-2_i386 + libkafs0-heimdal_1.6~git20120403+dfsg1-2_i386 + libkakasi2_2.3.5~pre1+cvs20071101-1_i386 + libkakasi2-dev_2.3.5~pre1+cvs20071101-1_i386 + libkal-dev_0.9.0-1_i386 + libkalarmcal2_4:4.8.4-2_i386 + libkarma-dev_0.1.2-2.3_i386 + libkarma0_0.1.2-2.3_i386 + libkasten1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1core1_4:4.8.4+dfsg-1_i386 + libkasten1gui1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1controllers1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1core1_4:4.8.4+dfsg-1_i386 + libkasten1okteta1gui1_4:4.8.4+dfsg-1_i386 + libkate-dev_0.4.1-1_i386 + libkate-tools_0.4.1-1_i386 + libkate1_0.4.1-1_i386 + libkate1-dbg_0.4.1-1_i386 + libkateinterfaces4_4:4.8.4-1_i386 + libkatepartinterfaces4_4:4.8.4-1_i386 + libkaya-gd-dev_0.4.4-6_i386 + libkaya-gl-dev_0.4.4-6_i386 + libkaya-mysql-dev_0.4.4-6_i386 + libkaya-ncurses-dev_0.4.4-6_i386 + libkaya-ncursesw-dev_0.4.4-6_i386 + libkaya-pgsql-dev_0.4.4-6_i386 + libkaya-sdl-dev_0.4.4-6_i386 + libkaya-sqlite3-dev_0.4.4-6_i386 + libkblog4_4:4.8.4-2_i386 + libkcal4_4:4.8.4-2_i386 + libkcalcore4_4:4.8.4-2_i386 + libkcalutils4_4:4.8.4-2_i386 + libkcddb-dev_4:4.8.4-2_i386 + libkcddb4_4:4.8.4-2_i386 + libkcmutils4_4:4.8.4-4_i386 + libkdb5-6_1.10.1+dfsg-5+deb7u1_i386 + libkdc2-heimdal_1.6~git20120403+dfsg1-2_i386 + libkdcraw-dev_4:4.8.4-1_i386 + libkdcraw20_4:4.8.4-1_i386 + libkdcraw20-dbg_4:4.8.4-1_i386 + libkde3support4_4:4.8.4-4_i386 + libkdeclarative5_4:4.8.4-4_i386 + libkdecorations4_4:4.8.4-6_i386 + libkdecore5_4:4.8.4-4_i386 + libkdeedu-dbg_4:4.8.4-1_i386 + libkdeedu-dev_4:4.8.4-1_i386 + libkdegames-dev_4:4.8.4-3_i386 + libkdegames5a_4:4.8.4-3_i386 + libkdepim4_4:4.4.11.1+l10n-3+b1_i386 + libkdesu5_4:4.8.4-4_i386 + libkdeui5_4:4.8.4-4_i386 + libkdewebkit5_4:4.8.4-4_i386 + libkdnssd4_4:4.8.4-4_i386 + libkeduvocdocument4_4:4.8.4-1_i386 + libkemoticons4_4:4.8.4-4_i386 + libkephal4abi1_4:4.8.4-6_i386 + libkernlib1-dev_20061220+dfsg3-2_i386 + libkernlib1-gfortran_20061220+dfsg3-2_i386 + libkexiv2-10_4:4.8.4-1_i386 + libkexiv2-dbg_4:4.8.4-1_i386 + libkexiv2-dev_4:4.8.4-1_i386 + libkeybinder-dev_0.2.2-4_i386 + libkeybinder0_0.2.2-4_i386 + libkeyutils-dev_1.5.5-3_i386 + libkeyutils1_1.5.5-3_i386 + libkfile4_4:4.8.4-4_i386 + libkggzgames4_4:4.8.4-3_i386 + libkggzmod4_4:4.8.4-3_i386 + libkggznet4_4:4.8.4-3_i386 + libkholidays4_4:4.8.4-2_i386 + libkhtml5_4:4.8.4-4_i386 + libkibi-dbg_0.1-1_i386 + libkibi-dev_0.1-1_i386 + libkibi0_0.1-1_i386 + libkidletime4_4:4.8.4-4_i386 + libkimap4_4:4.8.4-2_i386 + libkimproxy4_4:4.8.4-4_i386 + libkinosearch1-perl_1.00-1+b2_i386 + libkio5_4:4.8.4-4_i386 + libkipi-dbg_4:4.8.4-1_i386 + libkipi-dev_4:4.8.4-1_i386 + libkipi8_4:4.8.4-1_i386 + libkiten-dev_4:4.8.4-1_i386 + libkiten4abi1_4:4.8.4-1_i386 + libkitware-mummy-runtime1.0-cil_1.0.2-5_i386 + libkjsapi4_4:4.8.4-4_i386 + libkjsembed4_4:4.8.4-4_i386 + libklatexformula3_3.2.6-1_i386 + libklatexformula3-dev_3.2.6-1_i386 + libkldap4_4:4.8.4-2_i386 + libkleo4_4:4.4.11.1+l10n-3+b1_i386 + libklibc_2.0.1-3.1_i386 + libklibc-dev_2.0.1-3.1_i386 + libklu1.1.0_1:3.4.0-3_i386 + libkmahjongglib4_4:4.8.4-3_i386 + libkmbox4_4:4.8.4-2_i386 + libkmediaplayer4_4:4.8.4-4_i386 + libkmfl-dev_0.9.8-1_i386 + libkmfl0_0.9.8-1_i386 + libkmflcomp-dev_0.9.8-1_i386 + libkmflcomp0_0.9.8-1_i386 + libkmime4_4:4.8.4-2_i386 + libkml-dev_1.3.0~r863-4.1_i386 + libkml-java_1.3.0~r863-4.1_i386 + libkml0_1.3.0~r863-4.1_i386 + libkmlframework-java_0.0.20090718-1_i386 + libkmod-dev_9-3_i386 + libkmod2_9-3_i386 + libkms1_2.4.40-1~deb7u2_i386 + libkms1-dbg_2.4.40-1~deb7u2_i386 + libknewstuff2-4_4:4.8.4-4_i386 + libknewstuff3-4_4:4.8.4-4_i386 + libknotifyconfig4_4:4.8.4-4_i386 + libkntlm4_4:4.8.4-4_i386 + libkokyu-6.0.3_6.0.3+dfsg-0.1_i386 + libkokyu-dev_6.0.3+dfsg-0.1_i386 + libkonq-common_4:4.8.4-2_i386 + libkonq5-dev_4:4.8.4-2_i386 + libkonq5abi1_4:4.8.4-2_i386 + libkonqsidebarplugin-dev_4:4.8.4-2_i386 + libkonqsidebarplugin4a_4:4.8.4-2_i386 + libkontactinterface4_4:4.8.4-2_i386 + libkopenafs1_1.6.1-3+deb7u1_i386 + libkopete-dev_4:4.8.4-1+b1_i386 + libkopete4_4:4.8.4-1+b1_i386 + libkosd2_0.8.1-1_i386 + libkosd2-dev_0.8.1-1_i386 + libkparts4_4:4.8.4-4_i386 + libkpathsea-dev_2012.20120628-4_i386 + libkpathsea6_2012.20120628-4_i386 + libkpgp4_4:4.4.11.1+l10n-3+b1_i386 + libkpimidentities4_4:4.8.4-2_i386 + libkpimtextedit4_4:4.8.4-2_i386 + libkpimutils4_4:4.8.4-2_i386 + libkprintutils4_4:4.8.4-4_i386 + libkpty4_4:4.8.4-4_i386 + libkqueue-dev_1.0.4-2_i386 + libkqueue0_1.0.4-2_i386 + libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_i386 + libkrb5-3_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dbg_1.10.1+dfsg-5+deb7u1_i386 + libkrb5-dev_1.10.1+dfsg-5+deb7u1_i386 + libkrb5support0_1.10.1+dfsg-5+deb7u1_i386 + libkresources4_4:4.8.4-2_i386 + libkrosscore4_4:4.8.4-4_i386 + libkrossui4_4:4.8.4-4_i386 + libksane-dbg_4:4.8.4-1_i386 + libksane-dev_4:4.8.4-1_i386 + libksane0_4:4.8.4-1_i386 + libksba-dev_1.2.0-2_i386 + libksba8_1.2.0-2_i386 + libkscreensaver5_4:4.8.4-6_i386 + libksgrd4_4:4.8.4-6_i386 + libksieve4_4:4.4.11.1+l10n-3+b1_i386 + libksignalplotter4_4:4.8.4-6_i386 + libkst2core2_2.0.3-1.3_i386 + libkst2math2_2.0.3-1.3_i386 + libkst2widgets2_2.0.3-1.3_i386 + libktexteditor4_4:4.8.4-4_i386 + libktnef4_4:4.8.4-2_i386 + libktoblzcheck-dbg_1.39-1_i386 + libktoblzcheck1-dev_1.39-1_i386 + libktoblzcheck1c2a_1.39-1_i386 + libktorrent-dbg_1.2.1-1_i386 + libktorrent-dev_1.2.1-1_i386 + libktorrent4_1.2.1-1_i386 + libktpchat0_0.4.0-1_i386 + libktpcommoninternalsprivate-dbg_0.4.0-1_i386 + libktpcommoninternalsprivate-dev_0.4.0-1_i386 + libktpcommoninternalsprivate1_0.4.0-1_i386 + libkunitconversion4_4:4.8.4-4_i386 + libkutils4_4:4.8.4-4_i386 + libkvilib4_4:4.1.3+20111124.svn5988-2_i386 + libkvutils-dev_2.9.0-1_i386 + libkvutils10_2.9.0-1_i386 + libkwineffects1abi3_4:4.8.4-6_i386 + libkwinglutils1_4:4.8.4-6_i386 + libkwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libkwnn0_1.1.1~a021+cvs20100325-6_i386 + libkworkspace4abi1_4:4.8.4-6_i386 + libkwwidgets1-dev_1.0.0~cvs20100930-8_i386 + libkwwidgets1.0.1009_1.0.0~cvs20100930-8_i386 + libkxl0_1.1.7-16_i386 + libkxl0-dev_1.1.7-16_i386 + libkxmlrpcclient4_4:4.8.4-2_i386 + liblablgl-ocaml_1.04-5+b3_i386 + liblablgl-ocaml-dev_1.04-5+b3_i386 + liblablgtk-extras-ocaml-dev_1.0-1+b2_i386 + liblablgtk2-gl-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gl-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-gnome-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml_2.14.2+dfsg-3_i386 + liblablgtk2-ocaml-dev_2.14.2+dfsg-3_i386 + liblablgtkmathview-ocaml_0.7.8-6+b1_i386 + liblablgtkmathview-ocaml-dev_0.7.8-6+b1_i386 + liblablgtksourceview2-ocaml_2.14.2+dfsg-3_i386 + liblablgtksourceview2-ocaml-dev_2.14.2+dfsg-3_i386 + libladr-dev_0.0.200902a-2.1_i386 + libladr4_0.0.200902a-2.1_i386 + libladspa-ocaml_0.1.4-1+b1_i386 + libladspa-ocaml-dev_0.1.4-1+b1_i386 + liblam4_7.1.4-3_i386 + liblangscan-ruby_1.2+cvs20070125-1.1_i386 + liblapack-dev_3.4.1+dfsg-1+deb70u1_i386 + liblapack-pic_3.4.1+dfsg-1+deb70u1_i386 + liblapack-test_3.4.1+dfsg-1+deb70u1_i386 + liblapack3_3.4.1+dfsg-1+deb70u1_i386 + liblapacke_3.4.1+dfsg-1+deb70u1_i386 + liblapacke-dev_3.4.1+dfsg-1+deb70u1_i386 + liblas-bin_1.2.1-5+b1_i386 + liblas-dev_1.2.1-5+b1_i386 + liblas1_1.2.1-5+b1_i386 + liblash-compat-1debian0_1+dfsg0-3_i386 + liblasi-dev_1.1.0-1_i386 + liblasi0_1.1.0-1_i386 + liblasso-perl_2.3.6-2_i386 + liblasso3_2.3.6-2_i386 + liblasso3-dev_2.3.6-2_i386 + liblastfm-dbg_0.4.0~git20090710-2_i386 + liblastfm-dev_0.4.0~git20090710-2_i386 + liblastfm-fingerprint0_0.4.0~git20090710-2_i386 + liblastfm-ocaml-dev_0.3.0-2+b6_i386 + liblastfm0_0.4.0~git20090710-2_i386 + liblcgdm-dev_1.8.2-1+b2_i386 + liblcgdm1_1.8.2-1+b2_i386 + liblchown-perl_1.01-1+b2_i386 + liblcms-utils_1.19.dfsg-1.2_i386 + liblcms1_1.19.dfsg-1.2_i386 + liblcms1-dev_1.19.dfsg-1.2_i386 + liblcms2-2_2.2+git20110628-2.2_i386 + liblcms2-dev_2.2+git20110628-2.2_i386 + liblcms2-utils_2.2+git20110628-2.2_i386 + libldap-2.4-2_2.4.31-1+nmu2_i386 + libldap-2.4-2-dbg_2.4.31-1+nmu2_i386 + libldap-ocaml-dev_2.1.8-8+b9_i386 + libldap2-dev_2.4.31-1+nmu2_i386 + libldb-dev_1:1.1.6-1_i386 + libldb1_1:1.1.6-1_i386 + libldb1-dbg_1:1.1.6-1_i386 + libldl2.0.1_1:3.4.0-3_i386 + libldns-dev_1.6.13-1_i386 + libldns1_1.6.13-1_i386 + libldns1-dbg_1.6.13-1_i386 + libledit-ocaml-dev_2.03-1+b2_i386 + liblensfun-dev_0.2.5-2_i386 + liblensfun0_0.2.5-2_i386 + liblept3_1.69-3.1_i386 + libleptonica-dev_1.69-3.1_i386 + libleveldb-dev_0+20120530.gitdd0d562-1_i386 + libleveldb1_0+20120530.gitdd0d562-1_i386 + liblexical-sealrequirehints-perl_0.007-1_i386 + liblfc-dev_1.8.2-1+b2_i386 + liblfc-perl_1.8.2-1+b2_i386 + liblfc1_1.8.2-1+b2_i386 + liblhapdf-dev_5.8.7+repack-1_i386 + liblhapdf0_5.8.7+repack-1_i386 + liblhasa-dev_0.0.7-2_i386 + liblhasa0_0.0.7-2_i386 + liblicense-cli_0.8.1-3_i386 + liblicense-dev_0.8.1-3_i386 + liblicense3_0.8.1-3_i386 + liblightdm-gobject-1-0_1.2.2-4_i386 + liblightdm-gobject-dev_1.2.2-4_i386 + liblightdm-qt-2-0_1.2.2-4_i386 + liblightdm-qt-dev_1.2.2-4_i386 + liblilv-0-0_0.14.2~dfsg0-4_i386 + liblilv-dev_0.14.2~dfsg0-4_i386 + liblinear-dbg_1.8+dfsg-1_i386 + liblinear-dev_1.8+dfsg-1_i386 + liblinear-tools_1.8+dfsg-1_i386 + liblinear1_1.8+dfsg-1_i386 + liblinebreak2_2.1-1_i386 + liblinebreak2-dev_2.1-1_i386 + liblingua-stem-snowball-perl_0.952-2+b2_i386 + liblink-grammar4_4.7.4-2_i386 + liblink-grammar4-dev_4.7.4-2_i386 + liblink-grammar4-java_4.7.4-2_i386 + liblinphone-dev_3.5.2-10_i386 + liblinphone4_3.5.2-10_i386 + liblinux-dvb-perl_1.01-2+b2_i386 + liblinux-inotify2-perl_1:1.22-0.2+b1_i386 + liblip-dev_2.0.0-1.1_i386 + liblip2_2.0.0-1.1_i386 + liblircclient-dev_0.9.0~pre1-1_i386 + liblircclient0_0.9.0~pre1-1_i386 + liblist-moreutils-perl_0.33-1+b1_i386 + liblistaller-glib-dev_0.5.5-2_i386 + liblistaller-glib0_0.5.5-2_i386 + liblivemedia-dev_2012.05.17-1_i386 + libllvm-2.9-ocaml-dev_2.9+dfsg-7_i386 + libllvm-3.0-ocaml-dev_3.0-10_i386 + libllvm-3.1-ocaml-dev_3.1-1_i386 + libllvm-ocaml-dev_1:3.0-14+nmu2_i386 + libllvm2.9_2.9+dfsg-7_i386 + libllvm3.0_3.0-10_i386 + libllvm3.1_3.1-1_i386 + liblo-dev_0.26~repack-7_i386 + liblo-ocaml_0.1.0-1+b1_i386 + liblo-ocaml-dev_0.1.0-1+b1_i386 + liblo-tools_0.26~repack-7_i386 + liblo10k1-0_1.0.25-2_i386 + liblo10k1-dev_1.0.25-2_i386 + liblo7_0.26~repack-7_i386 + libloadpng4-dev_2:4.4.2-2.1_i386 + libloadpng4.4_2:4.4.2-2.1_i386 + liblocale-gettext-perl_1.05-7+b1_i386 + liblocale-hebrew-perl_1.04-1+b2_i386 + liblockdev1_1.0.3-1.5_i386 + liblockdev1-dbg_1.0.3-1.5_i386 + liblockdev1-dev_1.0.3-1.5_i386 + liblockdev1-perl_1.0.3-1.5_i386 + liblockfile-bin_1.09-5_i386 + liblockfile-dev_1.09-5_i386 + liblockfile1_1.09-5_i386 + liblodo3.0_3.0.2+dfsg-4+b1_i386 + liblodo3.0-dev_3.0.2+dfsg-4+b1_i386 + liblog4ada-dbg_1.2-3_i386 + liblog4ada1_1.2-3_i386 + liblog4ada2-dev_1.2-3_i386 + liblog4c-dev_1.2.1-3_i386 + liblog4c3_1.2.1-3_i386 + liblog4cplus-1.0-4_1.0.4-1_i386 + liblog4cplus-dbg_1.0.4-1_i386 + liblog4cplus-dev_1.0.4-1_i386 + liblog4cpp5_1.0-4_i386 + liblog4cpp5-dev_1.0-4_i386 + liblog4cxx10_0.10.0-1.2_i386 + liblog4cxx10-dev_0.10.0-1.2_i386 + liblog4shib-dev_1.0.4-1_i386 + liblog4shib1_1.0.4-1_i386 + liblog4tango4_7.2.6+dfsg-14_i386 + liblog4tango4-dbg_7.2.6+dfsg-14_i386 + liblog4tango4-dev_7.2.6+dfsg-14_i386 + liblogforwarderutils2_2.7-1_i386 + liblogforwarderutils2-dev_2.7-1_i386 + liblognorm-dev_0.3.4-1_i386 + liblognorm0_0.3.4-1_i386 + liblogservicecomponentbase2_2.7-1_i386 + liblogservicecomponentbase2-dev_2.7-1_i386 + liblogservicetoolbase2_2.7-1_i386 + liblogservicetoolbase2-dev_2.7-1_i386 + liblogsys-dev_1.4.2-3_i386 + liblogsys4_1.4.2-3_i386 + liblogthread-dev_3.0.12-3.2+deb7u2_i386 + liblogthread3_3.0.12-3.2+deb7u2_i386 + libloki-dev_0.1.7-3_i386 + libloki0.1.7_0.1.7-3_i386 + libloki0.1.7-dbg_0.1.7-3_i386 + libloudmouth1-0_1.4.3-9_i386 + libloudmouth1-0-dbg_1.4.3-9_i386 + libloudmouth1-dev_1.4.3-9_i386 + liblouis-bin_2.4.1-1_i386 + liblouis-dev_2.4.1-1_i386 + liblouis2_2.4.1-1_i386 + liblouisutdml-bin_2.2.0-1_i386 + liblouisutdml-dev_2.2.0-1_i386 + liblouisutdml6_2.2.0-1_i386 + liblouisxml-bin_2.4.0-3_i386 + liblouisxml-dev_2.4.0-3_i386 + liblouisxml1_2.4.0-3_i386 + liblpsolve55-dev_5.5.0.13-7_i386 + liblqr-1-0_0.4.1-2_i386 + liblqr-1-0-dbg_0.4.1-2_i386 + liblqr-1-0-dev_0.4.1-2_i386 + liblrdf0_0.4.0-5_i386 + liblrdf0-dev_0.4.0-5_i386 + liblrm2_1.0.9+hg2665-1_i386 + liblrm2-dev_1.0.9+hg2665-1_i386 + liblrs-dev_0.42c-1+b1_i386 + liblrs0d_0.42c-1+b1_i386 + liblscp-dbg_0.5.6-6_i386 + liblscp-dev_0.5.6-6_i386 + liblscp6_0.5.6-6_i386 + liblsofui4_4:4.8.4-6_i386 + libltcsmpte-dev_0.4.4-1_i386 + libltcsmpte1_0.4.4-1_i386 + libltdl-dev_2.4.2-1.1_i386 + libltdl7_2.4.2-1.1_i386 + liblttctl-dev_0.89-05122011-1_i386 + liblttctl0_0.89-05122011-1_i386 + liblttd-dev_0.89-05122011-1_i386 + liblttd0_0.89-05122011-1_i386 + liblttng-ust-dev_2.0.4-1_i386 + liblttng-ust0_2.0.4-1_i386 + liblttoolbox3-3.1-0_3.1.0-1.1_i386 + liblttoolbox3-3.1-0-dev_3.1.0-1.1_i386 + liblttvtraceread-2.6_0.12.38-21032011-1+b1_i386 + liblttvtraceread-2.6-dev_0.12.38-21032011-1+b1_i386 + liblttvtraceread-loader-2.6_0.12.38-21032011-1+b1_i386 + liblua5.1-0_5.1.5-4_i386 + liblua5.1-0-dbg_5.1.5-4_i386 + liblua5.1-0-dev_5.1.5-4_i386 + liblua5.1-luacsnd5.2_1:5.17.11~dfsg-3_i386 + liblua5.1-oocairo-dev_1.4-1.2_i386 + liblua5.1-oocairo0_1.4-1.2_i386 + liblua5.1-oopango-dev_1.1-1_i386 + liblua5.1-oopango0_1.1-1_i386 + liblua5.1-rrd-dev_1.4.7-2_i386 + liblua5.1-rrd0_1.4.7-2_i386 + liblua5.2-0_5.2.1-3_i386 + liblua5.2-0-dbg_5.2.1-3_i386 + liblua5.2-dev_5.2.1-3_i386 + liblua50_5.0.3-6_i386 + liblua50-dev_5.0.3-6_i386 + libluabind-dbg_0.9.1+dfsg-5_i386 + libluabind-dev_0.9.1+dfsg-5_i386 + libluabind0.9.1_0.9.1+dfsg-5_i386 + libluabridge-ruby1.8_0.7.0-1.1_i386 + liblualib50_5.0.3-6_i386 + liblualib50-dev_5.0.3-6_i386 + liblunar-1-0_2.0.1-2.2_i386 + liblunar-1-0-dbg_2.0.1-2.2_i386 + liblunar-1-dev_2.0.1-2.2_i386 + liblunar-date-2.0-0_2.4.0-1_i386 + liblunar-date-dbg_2.4.0-1_i386 + liblunar-date-dev_2.4.0-1_i386 + liblv2dynparam1-dev_2-5_i386 + liblv2dynparamhost1-1_2-5_i386 + liblv2dynparamplugin1-0_2-5_i386 + liblvm2-dev_2.02.95-8_i386 + liblvm2app2.2_2.02.95-8_i386 + liblvm2cmd2.02_2.02.95-8_i386 + liblwipv6-2_1.5a-2_i386 + liblwipv6-dev_1.5a-2_i386 + liblwjgl-java-jni_2.7.1+dfsg-3_i386 + liblwres80_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + liblwt-glib-ocaml_2.3.2-1+b3_i386 + liblwt-glib-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ocaml_2.3.2-1+b3_i386 + liblwt-ocaml-dev_2.3.2-1+b3_i386 + liblwt-ssl-ocaml_2.3.2-1+b3_i386 + liblwt-ssl-ocaml-dev_2.3.2-1+b3_i386 + liblz-dbg_1.3-2_i386 + liblz-dev_1.3-2_i386 + liblz1_1.3-2_i386 + liblzma-dev_5.1.1alpha+20120614-2_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + liblzo2-2_2.06-1_i386 + liblzo2-dev_2.06-1_i386 + libm17n-0_1.6.3-2_i386 + libm17n-0-dbg_1.6.3-2_i386 + libm17n-dev_1.6.3-2_i386 + libm17n-im-config-dev_0.9.0-3_i386 + libm17n-im-config0_0.9.0-3_i386 + libm4ri-0.0.20080521_0.0.20080521-2_i386 + libm4ri-dev_0.0.20080521-2_i386 + libmaa-dev_1.3.1-1_i386 + libmaa3_1.3.1-1_i386 + libmad-ocaml_0.4.4-1+b1_i386 + libmad-ocaml-dev_0.4.4-1+b1_i386 + libmad0_0.15.1b-7_i386 + libmad0-dev_0.15.1b-7_i386 + libmadlib_1.3.0-2.1_i386 + libmadlib-dbg_1.3.0-2.1_i386 + libmadlib-dev_1.3.0-2.1_i386 + libmagic-dev_5.11-2_i386 + libmagic-ocaml_0.7.3-5+b3_i386 + libmagic-ocaml-dev_0.7.3-5+b3_i386 + libmagic1_5.11-2_i386 + libmagick++-dev_8:6.7.7.10-5+deb7u2_i386 + libmagick++5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5_8:6.7.7.10-5+deb7u2_i386 + libmagickcore5-extra_8:6.7.7.10-5+deb7u2_i386 + libmagickwand-dev_8:6.7.7.10-5+deb7u2_i386 + libmagickwand5_8:6.7.7.10-5+deb7u2_i386 + libmagics++-dev_2.14.11-4_i386 + libmagplus3_2.14.11-4_i386 + libmail-cclient-perl_1.12-11+b1_i386 + libmail-pop3client-perl_2.17-1_i386 + libmailtransport4_4:4.8.4-2_i386 + libmailutils-dev_1:2.99.97-3_i386 + libmailutils4_1:2.99.97-3_i386 + libmalaga-dev_7.12-4_i386 + libmalaga7_7.12-4_i386 + libmaloc-dev_0.2-2.3_i386 + libmaloc1_0.2-2.3_i386 + libmapi-dev_1:1.0-3_i386 + libmapi0_1:1.0-3_i386 + libmapiadmin-dev_1:1.0-3_i386 + libmapiadmin0_1:1.0-3_i386 + libmapipp-dev_1:1.0-3_i386 + libmapipp0_1:1.0-3_i386 + libmapiproxy-dev_1:1.0-3_i386 + libmapiproxy0_1:1.0-3_i386 + libmapistore-dev_1:1.0-3_i386 + libmapistore0_1:1.0-3_i386 + libmapnik2-2.0_2.0.0+ds1-3+b4_i386 + libmapnik2-dev_2.0.0+ds1-3+b4_i386 + libmapscript-perl_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.8_6.0.1-3.2+deb7u2_i386 + libmapscript-ruby1.9.1_6.0.1-3.2+deb7u2_i386 + libmarble-dev_4:4.8.4-3_i386 + libmarblewidget13_4:4.8.4-3_i386 + libmarc-charset-perl_1.33-1_i386 + libmarkdown2_2.1.3-3_i386 + libmarkdown2-dbg_2.1.3-3_i386 + libmarkdown2-dev_2.1.3-3_i386 + libmatchbox-dev_1.9-osso8-3_i386 + libmatchbox1_1.9-osso8-3_i386 + libmath++-dev_0.0.4-4_i386 + libmath++0c2a_0.0.4-4_i386 + libmath-bigint-gmp-perl_1.37-1+b1_i386 + libmath-gmp-perl_2.06-1+b2_i386 + libmath-random-isaac-xs-perl_1.003-1+b2_i386 + libmath-random-mt-perl_1.15-2_i386 + libmath-random-tt800-perl_1.01-2+b2_i386 + libmath-tamuanova-perl_1.0.2-1_i386 + libmatheval-dev_1.1.8-1_i386 + libmatheval1_1.1.8-1_i386 + libmathlib2-dev_20061220+dfsg3-2_i386 + libmathlib2-gfortran_20061220+dfsg3-2_i386 + libmatio-dev_1.3.4-4_i386 + libmatio0_1.3.4-4_i386 + libmatio0-dbg_1.3.4-4_i386 + libmatrixssl1.8_1.8.8-1_i386 + libmatrixssl1.8-dev_1.8.8-1_i386 + libmatroska-dev_1.3.0-2_i386 + libmatroska5_1.3.0-2_i386 + libmbt0_3.2.8-1_i386 + libmbt0-dev_3.2.8-1_i386 + libmcpp-dev_2.7.2-1.1_i386 + libmcpp0_2.7.2-1.1_i386 + libmcrypt-dev_2.5.8-3.1_i386 + libmcrypt4_2.5.8-3.1_i386 + libmcs-backend-gconf_0.7.2-2.1_i386 + libmcs-dev_0.7.2-2.1_i386 + libmcs-utils_0.7.2-2.1_i386 + libmcs1_0.7.2-2.1_i386 + libmd3-1_0.1.92-4_i386 + libmd3-dev_0.1.92-4_i386 + libmdb2_0.7-1+deb7u1_i386 + libmdbodbc1_0.7-1+deb7u1_i386 + libmdbsql2_0.7-1+deb7u1_i386 + libmdc2_0.10.7-1+b2_i386 + libmdc2-dev_0.10.7-1+b2_i386 + libmdsp-dev_0.11-10_i386 + libmeanwhile-dev_1.0.2-4_i386 + libmeanwhile1_1.0.2-4_i386 + libmecab-dev_0.99.3-3_i386 + libmecab-jni_0.99.3-1_i386 + libmecab-perl_0.99.3-1_i386 + libmecab2_0.99.3-3_i386 + libmed-dev_3.0.3-3_i386 + libmed-tools_3.0.3-3_i386 + libmed1_3.0.3-3_i386 + libmedc-dev_3.0.3-3_i386 + libmedc1_3.0.3-3_i386 + libmediainfo-dev_0.7.58-1_i386 + libmediainfo0_0.7.58-1_i386 + libmediastreamer-dev_3.5.2-10_i386 + libmediastreamer1_3.5.2-10_i386 + libmedimport-dev_3.0.3-3_i386 + libmedimport0_3.0.3-3_i386 + libmeep-dev_1.1.1-8_i386 + libmeep-lam4-6_1.1.1-10~deb7u1_i386 + libmeep-lam4-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default-dev_1.1.1-10~deb7u1_i386 + libmeep-mpi-default6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-6_1.1.1-10~deb7u1_i386 + libmeep-mpich2-dev_1.1.1-10~deb7u1_i386 + libmeep-openmpi-dev_1.1.1-9~deb7u1_i386 + libmeep-openmpi6_1.1.1-9~deb7u1_i386 + libmeep6_1.1.1-8_i386 + libmelt-ocaml-dev_1.4.0-1_i386 + libmemcache-dev_1.4.0.rc2-1_i386 + libmemcache0_1.4.0.rc2-1_i386 + libmemcached-dbg_1.0.8-1_i386 + libmemcached-dev_1.0.8-1_i386 + libmemcached-tools_1.0.8-1_i386 + libmemcached10_1.0.8-1_i386 + libmemcachedprotocol0_1.0.8-1_i386 + libmemcachedutil2_1.0.8-1_i386 + libmemphis-0.2-0_0.2.3-2_i386 + libmemphis-0.2-dbg_0.2.3-2_i386 + libmemphis-0.2-dev_0.2.3-2_i386 + libmenhir-ocaml-dev_20120123.dfsg-1_i386 + libmenu-cache1_0.3.3-1_i386 + libmenu-cache1-dev_0.3.3-1_i386 + libmercator-0.3-1_0.3.0-2_i386 + libmercator-0.3-1-dbg_0.3.0-2_i386 + libmercator-0.3-dev_0.3.0-2_i386 + libmeschach-dev_1.2b-13_i386 + libmeschach1.2_1.2b-13_i386 + libmessagecore4_4:4.4.11.1+l10n-3+b1_i386 + libmessagelist4_4:4.4.11.1+l10n-3+b1_i386 + libmessageviewer0_4:4.4.11.1+l10n-3+b1_i386 + libmetacity-dev_1:2.34.3-4_i386 + libmetacity-private0a_1:2.34.3-4_i386 + libmgl-dev_1.11.2-17_i386 + libmgl-fltk5_1.11.2-17_i386 + libmgl-glut5_1.11.2-17_i386 + libmgl-qt5_1.11.2-17_i386 + libmgl-wx5_1.11.2-17_i386 + libmgl5_1.11.2-17_i386 + libmhash-dev_0.9.9.9-1.1_i386 + libmhash2_0.9.9.9-1.1_i386 + libmicroblog4_4:4.8.4-2_i386 + libmicrohttpd-dbg_0.9.20-1+deb7u1_i386 + libmicrohttpd-dev_0.9.20-1+deb7u1_i386 + libmicrohttpd10_0.9.20-1+deb7u1_i386 + libmigemo-dbg_20110227-7_i386 + libmigemo-dev_20110227-7_i386 + libmigemo1_20110227-7_i386 + libmikmatch-ocaml_1.0.4-1+b1_i386 + libmikmatch-ocaml-dev_1.0.4-1+b1_i386 + libmikmod2_3.1.12-5_i386 + libmikmod2-dev_3.1.12-5_i386 + libmilter-dev_8.14.4-4_i386 + libmilter1.0.1_8.14.4-4_i386 + libmilter1.0.1-dbg_8.14.4-4_i386 + libmime-explode-perl_0.39-2+b1_i386 + libmimedir-dev_0.5.1-4_i386 + libmimedir-gnome-dev_0.4.2-5_i386 + libmimedir-gnome0.4_0.4.2-5_i386 + libmimedir0_0.5.1-4_i386 + libmimelib1-dev_5:1.1.4-2_i386 + libmimelib1c2a_5:1.1.4-2_i386 + libmimelib4_4:4.4.11.1+l10n-3+b1_i386 + libmimetic-dev_0.9.7-3_i386 + libmimetic0_0.9.7-3_i386 + libmimetic0-dbg_0.9.7-3_i386 + libmimic-dev_1.0.4-2.1_i386 + libmimic0_1.0.4-2.1_i386 + libminc-dev_2.1.10-1+b1_i386 + libminc2-1_2.1.10-1+b1_i386 + libming-dev_1:0.4.4-1.1_i386 + libming-util_1:0.4.4-1.1_i386 + libming1_1:0.4.4-1.1_i386 + libmini18n-dev_0.2.1-1_i386 + libmini18n1_0.2.1-1_i386 + libmini18n1-dbg_0.2.1-1_i386 + libminidjvu-dev_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminidjvu0_0.8.svn.2010.05.06+dfsg-0.2_i386 + libminiupnpc-dev_1.5-2_i386 + libminiupnpc5_1.5-2_i386 + libminpack1_19961126+dfsg1-1_i386 + libmission-control-plugins-dev_1:5.12.3-1_i386 + libmission-control-plugins0_1:5.12.3-1_i386 + libmkv-dev_0.6.5.1-1_i386 + libmkv0_0.6.5.1-1_i386 + libmlnlffi-smlnj_110.74-2_i386 + libmlpcap-ocaml_0.9-16_i386 + libmlpcap-ocaml-dev_0.9-16_i386 + libmlpost-ocaml-dev_0.8.1-3_i386 + libmlrisctools-smlnj_110.74-2_i386 + libmlt++-dev_0.8.0-4_i386 + libmlt++3_0.8.0-4_i386 + libmlt-dbg_0.8.0-4_i386 + libmlt-dev_0.8.0-4_i386 + libmlt5_0.8.0-4_i386 + libmlx4-1_1.0.4-1_i386 + libmlx4-1-dbg_1.0.4-1_i386 + libmlx4-dev_1.0.4-1_i386 + libmm-dbg_1.4.2-4_i386 + libmm-dev_1.4.2-4_i386 + libmm-ocaml_0.2.0-1+b1_i386 + libmm-ocaml-dev_0.2.0-1+b1_i386 + libmm14_1.4.2-4_i386 + libmmpong0.9_0.9.1-2.1_i386 + libmmpong0.9-dev_0.9.1-2.1_i386 + libmms-dev_0.6.2-3_i386 + libmms0_0.6.2-3_i386 + libmng-dev_1.0.10-3_i386 + libmng1_1.0.10-3_i386 + libmnl-dev_1.0.3-3_i386 + libmnl0_1.0.3-3_i386 + libmodbus-dev_3.0.3-1_i386 + libmodbus5_3.0.3-1_i386 + libmodglue1_1.17-2.1_i386 + libmodplug1_1:0.8.8.4-3+deb7u1+git20130828_i386 + libmoe-dev_1.5.8-1_i386 + libmoe1.5_1.5.8-1_i386 + libmongo-client-dev_0.1.5-1+deb7u1_i386 + libmongo-client0_0.1.5-1+deb7u1_i386 + libmongo-client0-dbg_0.1.5-1+deb7u1_i386 + libmongodb-perl_0.45-1+b1_i386 + libmono-2.0-1_2.10.8.1-8_i386 + libmono-2.0-1-dbg_2.10.8.1-8_i386 + libmono-2.0-dev_2.10.8.1-8_i386 + libmono-fuse-cil_0.4.2+dfsg-3+b1_i386 + libmono-profiler_2.10.8.1-8_i386 + libmono-uia-atkbridge1.0-cil_2.1-2_i386 + libmoose-perl_2.0603-1_i386 + libmoosex-role-withoverloading-perl_0.09-1+b2_i386 + libmopac7-1gf_1.15-5_i386 + libmopac7-dev_1.15-5_i386 + libmorph_1:20090926_i386 + libmorph-dev_1:20090926_i386 + libmosquitto0_0.15-2_i386 + libmosquittopp0_0.15-2_i386 + libmount-dev_2.20.1-5.3_i386 + libmount1_2.20.1-5.3_i386 + libmouse-perl_0.99-1_i386 + libmowgli-dev_1.0.0-1_i386 + libmowgli2_1.0.0-1_i386 + libmowgli2-dbg_1.0.0-1_i386 + libmozilla-ldap-perl_1.5.3-1_i386 + libmozjs-dev_17.0.10esr-1~deb7u1_i386 + libmozjs10d_10.0.12esr-1_i386 + libmozjs10d-dbg_10.0.12esr-1_i386 + libmozjs17d_17.0.10esr-1~deb7u1_i386 + libmozjs17d-dbg_17.0.10esr-1~deb7u1_i386 + libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_i386 + libmozjs185-dev_1.8.5-1.0.0+dfsg-4_i386 + libmp3lame-dev_3.99.5+repack1-3_i386 + libmp3lame-ocaml_0.3.1-1+b1_i386 + libmp3lame-ocaml-dev_0.3.1-1+b1_i386 + libmp3lame0_3.99.5+repack1-3_i386 + libmp3splt-dev_0.7.2-2_i386 + libmp3splt0_0.7.2-2_i386 + libmp3splt0-mp3_0.7.2-2_i386 + libmp3splt0-ogg_0.7.2-2_i386 + libmp4v2-2_2.0.0~dfsg0-1_i386 + libmp4v2-dev_2.0.0~dfsg0-1_i386 + libmpc-dev_0.9-4_i386 + libmpc2_0.9-4_i386 + libmpcdec-dev_2:0.1~r459-4_i386 + libmpcdec6_2:0.1~r459-4_i386 + libmpd-dev_0.20.0-1.1_i386 + libmpd1_0.20.0-1.1_i386 + libmpd1-dbg_0.20.0-1.1_i386 + libmpdclient-dev_2.3-1_i386 + libmpdclient2_2.3-1_i386 + libmpdclient2-dbg_2.3-1_i386 + libmpeg2-4_0.4.1-3_i386 + libmpeg2-4-dev_0.4.1-3_i386 + libmpeg3-1_1.5.4-5_i386 + libmpeg3-dev_1.5.4-5_i386 + libmpfi-dev_1.5.1-1_i386 + libmpfi0_1.5.1-1_i386 + libmpfr-dev_3.1.0-5_i386 + libmpfr4_3.1.0-5_i386 + libmpfr4-dbg_3.1.0-5_i386 + libmpg123-0_1.14.4-1_i386 + libmpg123-dev_1.14.4-1_i386 + libmpich2-3_1.4.1-4.2_i386 + libmpich2-dev_1.4.1-4.2_i386 + libmpikmeans-dbg_1.5-1+b1_i386 + libmpikmeans-dev_1.5-1+b1_i386 + libmpikmeans1_1.5-1+b1_i386 + libmpj-java_0.38~dfsg-1_i386 + libmrml1-dev_0.1.14-12_i386 + libmrml1c2a_0.1.14-12_i386 + libmrmpi-dev_1.0~20110620.dfsg-2_i386 + libmrmpi1_1.0~20110620.dfsg-2_i386 + libmrss0_0.19.2-3_i386 + libmrss0-dbg_0.19.2-3_i386 + libmrss0-dev_0.19.2-3_i386 + libmsgcat-perl_1.03-5+b2_i386 + libmsgpack-dev_0.5.7-2_i386 + libmsgpack3_0.5.7-2_i386 + libmsgpackc2_0.5.7-2_i386 + libmsn-dev_4.2-2_i386 + libmsn0.3_4.2-2_i386 + libmsn0.3-dbg_4.2-2_i386 + libmsv-dev_0.0.0-1_i386 + libmsv0_0.0.0-1_i386 + libmtbl-dev_0.2-1_i386 + libmtbl0_0.2-1_i386 + libmtbl0-dbg_0.2-1_i386 + libmtcp-dev_1.2.5-1_i386 + libmtcp1_1.2.5-1_i386 + libmtdev-dev_1.1.2-1_i386 + libmtdev1_1.1.2-1_i386 + libmthca-dev_1.0.6-1_i386 + libmthca1_1.0.6-1_i386 + libmthca1-dbg_1.0.6-1_i386 + libmtp-dbg_1.1.3-35-g0ece104-5_i386 + libmtp-dev_1.1.3-35-g0ece104-5_i386 + libmtp-runtime_1.1.3-35-g0ece104-5_i386 + libmtp9_1.1.3-35-g0ece104-5_i386 + libmudflap0_4.7.2-5_i386 + libmudflap0-4.4-dev_4.4.7-2_i386 + libmudflap0-4.6-dev_4.6.3-14_i386 + libmudflap0-4.7-dev_4.7.2-5_i386 + libmudflap0-dbg_4.7.2-5_i386 + libmulticobex1_0.23-1.1_i386 + libmulticobex1-dev_0.23-1.1_i386 + libmultidimensional-perl_0.010-1_i386 + libmumps-4.10.0_4.10.0.dfsg-3_i386 + libmumps-dev_4.10.0.dfsg-3_i386 + libmumps-ptscotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-ptscotch-dev_4.10.0.dfsg-3_i386 + libmumps-scotch-4.10.0_4.10.0.dfsg-3_i386 + libmumps-scotch-dev_4.10.0.dfsg-3_i386 + libmumps-seq-4.10.0_4.10.0.dfsg-3_i386 + libmumps-seq-dev_4.10.0.dfsg-3_i386 + libmunge-dev_0.5.10-1_i386 + libmunge2_0.5.10-1_i386 + libmuparser-dev_2.1.0-3_i386 + libmuparser2_2.1.0-3_i386 + libmupdf-dev_0.9-2_i386 + libmupen64plus2_1.99.5-6_i386 + libmupen64plus2-dbg_1.99.5-6_i386 + libmuroar-dev_0.1.8-2_i386 + libmuroar0_0.1.8-2_i386 + libmuroar0-dbg_0.1.8-2_i386 + libmuroard3_0.1.10-2_i386 + libmusic-dev_1.0.7-1.2_i386 + libmusic1_1.0.7-1.2_i386 + libmusicbrainz-discid-perl_0.03-1+b2_i386 + libmusicbrainz3-6_3.0.2-2.1_i386 + libmusicbrainz3-dev_3.0.2-2.1_i386 + libmusicbrainz5-0_5.0.1-2_i386 + libmusicbrainz5-dev_5.0.1-2_i386 + libmutter-dev_3.4.1-5_i386 + libmutter0_3.4.1-5_i386 + libmx-1.0-2_1.4.6-1_i386 + libmx-1.0-2-dbg_1.4.6-1_i386 + libmx-bin_1.4.6-1_i386 + libmx-dev_1.4.6-1_i386 + libmxml-dev_2.6-2_i386 + libmxml1_2.6-2_i386 + libmyodbc_5.1.10-2+deb7u1_i386 + libmyproxy-dev_5.6-1_i386 + libmyproxy5_5.6-1_i386 + libmysql++-dev_3.1.0-2+b1_i386 + libmysql++3_3.1.0-2+b1_i386 + libmysql-ocaml_1.1.1-1_i386 + libmysql-ocaml-dev_1.1.1-1_i386 + libmysqlclient-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqlclient18_5.5.33+dfsg-0+wheezy1_i386 + libmysqlcppconn-dev_1.1.0-4+b1_i386 + libmysqlcppconn5_1.1.0-4+b1_i386 + libmysqld-dev_5.5.33+dfsg-0+wheezy1_i386 + libmysqld-pic_5.5.33+dfsg-0+wheezy1_i386 + libmythes-1.2-0_2:1.2.2-1_i386 + libmythes-dev_2:1.2.2-1_i386 + libnabrit-dbg_0.4.1-1_i386 + libnabrit-dev_0.4.1-1_i386 + libnabrit3_0.4.1-1_i386 + libnacl-dev_20110221-4_i386 + libnacore-dev_0.4.0-3_i386 + libnacore5_0.4.0-3_i386 + libnanohttp-dev_1.1.0-17.1_i386 + libnanohttp1_1.1.0-17.1_i386 + libnanohttp1-dbg_1.1.0-17.1_i386 + libnatpmp-dev_20110808-3_i386 + libnatpmp1_20110808-3_i386 + libnautilus-extension-dev_3.4.2-1+build1_i386 + libnautilus-extension1a_3.4.2-1+build1_i386 + libnbio-dev_0.30-1_i386 + libnbio0_0.30-1_i386 + libncap-dev_1.9.2-1+b2_i386 + libncap44_1.9.2-1+b2_i386 + libncbi6_6.1.20120620-2_i386 + libncbi6-dbg_6.1.20120620-2_i386 + libncbi6-dev_6.1.20120620-2_i386 + libncp_2.2.6-9_i386 + libncp-dev_2.2.6-9_i386 + libncurses5_5.9-10_i386 + libncurses5-dbg_5.9-10_i386 + libncurses5-dev_5.9-10_i386 + libncursesada-dbg_5.9.20110404-7_i386 + libncursesada2_5.9.20110404-7_i386 + libncursesada2-dev_5.9.20110404-7_i386 + libncursesw5_5.9-10_i386 + libncursesw5-dbg_5.9-10_i386 + libncursesw5-dev_5.9-10_i386 + libndr-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard-dev_4.0.0~beta2+dfsg1-3.2_i386 + libndr-standard0_4.0.0~beta2+dfsg1-3.2_i386 + libndr0_4.0.0~beta2+dfsg1-3.2_i386 + libnecpp-dev_1.5.0+cvs20101003-2.1_i386 + libnecpp0_1.5.0+cvs20101003-2.1_i386 + libneko0_1.8.1-6+b1_i386 + libnemesis3_5.14.dfsg.1-2+b1_i386 + libneon27_0.29.6-3_i386 + libneon27-dbg_0.29.6-3_i386 + libneon27-dev_0.29.6-3_i386 + libneon27-gnutls_0.29.6-3_i386 + libneon27-gnutls-dbg_0.29.6-3_i386 + libneon27-gnutls-dev_0.29.6-3_i386 + libnepomuk4_4:4.8.4-4_i386 + libnepomukquery4a_4:4.8.4-4_i386 + libnepomukutils4_4:4.8.4-4_i386 + libnes-dev_1.1.3-1_i386 + libnes1_1.1.3-1_i386 + libnes1-dbg_1.1.3-1_i386 + libnet-arp-perl_1.0.4-1+b2_i386 + libnet-bluetooth-perl_0.40-2+b4_i386 + libnet-cups-perl_0.60-1+b2_i386 + libnet-dbus-glib-perl_0.33.0-1+b2_i386 + libnet-dbus-perl_1.0.0-1+b1_i386 + libnet-dns-perl_0.66-2+b2_i386 + libnet-freedb-perl_0.08-2+b1_i386 + libnet-handlersocket-perl_1.1.0-7-g1044a28-1_i386 + libnet-jabber-loudmouth-perl_0.07-2+b2_i386 + libnet-ldapapi-perl_3.0.3-7+b2_i386 + libnet-libdnet-perl_0.96-1_i386 + libnet-libidn-perl_0.12.ds-1+b3_i386 + libnet-nis-perl_0.43-1+b3_i386 + libnet-oping-perl_1.6.2-1.21-1_i386 + libnet-patricia-perl_1.19-1+b2_i386 + libnet-pcap-perl_0.16-3+b1_i386 + libnet-rawip-perl_0.25-1+b2_i386 + libnet-remctl-perl_3.2-4_i386 + libnet-ssh2-perl_0.44-1_i386 + libnet-ssleay-perl_1.48-1+b1_i386 + libnet-tclink-perl_3.4.0-5+b3_i386 + libnet-z3950-simpleserver-perl_1.15-1_i386 + libnet-z3950-zoom-perl_1.26-1+b2_i386 + libnet1_1.1.4-2.1_i386 + libnet1-dbg_1.1.4-2.1_i386 + libnet1-dev_1.1.4-2.1_i386 + libnet6-1.3-0_1:1.3.14-1_i386 + libnet6-1.3-0-dbg_1:1.3.14-1_i386 + libnet6-1.3-dev_1:1.3.14-1_i386 + libnetaddr-ip-perl_4.062+dfsg-1_i386 + libnetcdf-dev_1:4.1.3-6+b1_i386 + libnetcdfc++4_1:4.1.3-6+b1_i386 + libnetcdfc7_1:4.1.3-6+b1_i386 + libnetcdff5_1:4.1.3-6+b1_i386 + libnetcf-dev_0.1.9-2_i386 + libnetcf1_0.1.9-2_i386 + libnetcf1-dbg_0.1.9-2_i386 + libnetclasses-dev_1.06.dfsg-5+b3_i386 + libnetclasses0_1.06.dfsg-5+b3_i386 + libnetfilter-conntrack-dev_1.0.1-1_i386 + libnetfilter-conntrack3_1.0.1-1_i386 + libnetfilter-conntrack3-dbg_1.0.1-1_i386 + libnetfilter-cttimeout-dev_1.0.0-1_i386 + libnetfilter-cttimeout1_1.0.0-1_i386 + libnetfilter-cttimeout1-dbg_1.0.0-1_i386 + libnetfilter-log-dev_1.0.0-1_i386 + libnetfilter-log1_1.0.0-1_i386 + libnetfilter-log1-dbg_1.0.0-1_i386 + libnetfilter-queue-dev_0.0.17-1_i386 + libnetfilter-queue1_0.0.17-1_i386 + libnetfilter-queue1-dbg_0.0.17-1_i386 + libnethttpd-ocaml-dev_3.5.1-1_i386 + libnetpbm10_2:10.0-15+b1_i386 + libnetpbm10-dev_2:10.0-15+b1_i386 + libnetpbm9_2:10.0-15+b1_i386 + libnetpbm9-dev_2:10.0-15+b1_i386 + libnetsvcs-6.0.3_6.0.3+dfsg-0.1_i386 + libnetsvcs-dev_6.0.3+dfsg-0.1_i386 + libnettle4_2.4-3_i386 + libnewlib-dev_1.18.0-6.2_i386 + libnewlib0_1.18.0-6.2_i386 + libnewmat10-dev_1.10.4-5_i386 + libnewmat10ldbl_1.10.4-5_i386 + libnewt-dev_0.52.14-11.1_i386 + libnewt-pic_0.52.14-11.1_i386 + libnewt0.52_0.52.14-11.1_i386 + libnexus0_4.2.1-svn1614-1+b2_i386 + libnexus0-dev_4.2.1-svn1614-1+b2_i386 + libnexus0-java_4.2.1-svn1614-1+b2_i386 + libnexus0-python_4.2.1-svn1614-1+b2_i386 + libnflog-perl_0.2-3_i386 + libnfnetlink-dev_1.0.0-1.1_i386 + libnfnetlink0_1.0.0-1.1_i386 + libnfnetlink0-dbg_1.0.0-1.1_i386 + libnfo-dev_1.0.1-1_i386 + libnfo1_1.0.1-1_i386 + libnfo1-bin_1.0.1-1_i386 + libnfo1-dbg_1.0.1-1_i386 + libnfqueue-perl_0.4-3_i386 + libnfs-dev_1.3.0-2_i386 + libnfs1_1.3.0-2_i386 + libnfsidmap-dev_0.25-4_i386 + libnfsidmap2_0.25-4_i386 + libnice-dbg_0.1.2-1_i386 + libnice-dev_0.1.2-1_i386 + libnice10_0.1.2-1_i386 + libnids-dev_1.23-2_i386 + libnids1.21_1.23-2_i386 + libnifti-dev_2.0.0-1_i386 + libnifti2_2.0.0-1_i386 + libnih-dbus-dev_1.0.3-4.1_i386 + libnih-dbus1_1.0.3-4.1_i386 + libnih-dev_1.0.3-4.1_i386 + libnih1_1.0.3-4.1_i386 + libnjb-dev_2.2.7~dfsg0-3_i386 + libnjb-tools_2.2.7~dfsg0-3_i386 + libnjb5_2.2.7~dfsg0-3_i386 + libnkf-perl_2.12-1_i386 + libnl-3-200_3.2.7-4_i386 + libnl-3-200-dbg_3.2.7-4_i386 + libnl-3-dev_3.2.7-4_i386 + libnl-cli-3-200_3.2.7-4_i386 + libnl-cli-3-dev_3.2.7-4_i386 + libnl-dev_1.1-7_i386 + libnl-genl-3-200_3.2.7-4_i386 + libnl-genl-3-dev_3.2.7-4_i386 + libnl-nf-3-200_3.2.7-4_i386 + libnl-nf-3-dev_3.2.7-4_i386 + libnl-route-3-200_3.2.7-4_i386 + libnl-route-3-dev_3.2.7-4_i386 + libnl-utils_3.2.7-4_i386 + libnl1_1.1-7_i386 + libnm-glib-dev_0.9.4.0-10_i386 + libnm-glib-vpn-dev_0.9.4.0-10_i386 + libnm-glib-vpn1_0.9.4.0-10_i386 + libnm-glib4_0.9.4.0-10_i386 + libnm-gtk-dev_0.9.4.1-5_i386 + libnm-gtk0_0.9.4.1-5_i386 + libnm-util-dev_0.9.4.0-10_i386 + libnm-util2_0.9.4.0-10_i386 + libnmz7_2.0.21-6_i386 + libnmz7-dev_2.0.21-6_i386 + libnoise-dev_1.0.0+nmu1_i386 + libnoise0_1.0.0+nmu1_i386 + libnotify-bin_0.7.5-1_i386 + libnotify-dev_0.7.5-1_i386 + libnotify4_0.7.5-1_i386 + libnotmuch-dev_0.13.2-1_i386 + libnotmuch3_0.13.2-1_i386 + libnova-0.14-0_0.14.0-2_i386 + libnova-dev_0.14.0-2_i386 + libnpth0_0.90-2_i386 + libnpth0-dbg_0.90-2_i386 + libnpth0-dev_0.90-2_i386 + libnsbmp0_0.0.1-1.1_i386 + libnsbmp0-dbg_0.0.1-1.1_i386 + libnsbmp0-dev_0.0.1-1.1_i386 + libnsgif0_0.0.1-1.1_i386 + libnsgif0-dbg_0.0.1-1.1_i386 + libnsgif0-dev_0.0.1-1.1_i386 + libnspr4_2:4.9.2-1+deb7u1_i386 + libnspr4-0d_2:4.9.2-1+deb7u1_i386 + libnspr4-dbg_2:4.9.2-1+deb7u1_i386 + libnspr4-dev_2:4.9.2-1+deb7u1_i386 + libnss-cache_0.10.2-1_i386 + libnss-db_2.2.3pre1-4_i386 + libnss-extrausers_0.6-3_i386 + libnss-gw-name_0.2.1-1_i386 + libnss-ldap_264-2.5_i386 + libnss-ldapd_0.8.10-4_i386 + libnss-lwres_0.93-7_i386 + libnss-mdns_0.10-3.2_i386 + libnss-myhostname_0.3-5~deb7u1_i386 + libnss-mysql-bg_1.5-3+b1_i386 + libnss-pgsql2_1.4.0debian-5_i386 + libnss-rainbow2_0.8.6-1_i386 + libnss-sss_1.8.4-2_i386 + libnss-winbind_2:3.6.6-6+deb7u2_i386 + libnss3_2:3.14.5-1_i386 + libnss3-1d_2:3.14.5-1_i386 + libnss3-dbg_2:3.14.5-1_i386 + libnss3-dev_2:3.14.5-1_i386 + libnss3-tools_2:3.14.5-1_i386 + libntfs-dev_2.0.0-1+b1_i386 + libntfs-gnomevfs_2.0.0-1+b1_i386 + libntfs10_2.0.0-1+b1_i386 + libntl-dev_5.5.2-2_i386 + libntl0_5.5.2-2_i386 + libntlm0_1.2-1_i386 + libntlm0-dev_1.2-1_i386 + libntrack-dev_016-1.1_i386 + libntrack-glib-dev_016-1.1_i386 + libntrack-glib2_016-1.1_i386 + libntrack-gobject-dev_016-1.1_i386 + libntrack-gobject1_016-1.1_i386 + libntrack-qt4-1_016-1.1_i386 + libntrack-qt4-dev_016-1.1_i386 + libntrack0_016-1.1_i386 + libnuclient-dev_2.4.3-2.2_i386 + libnuclient4_2.4.3-2.2_i386 + libnuma-dbg_2.0.8~rc4-1_i386 + libnuma-dev_2.0.8~rc4-1_i386 + libnuma1_2.0.8~rc4-1_i386 + libnussl-dev_2.4.3-2.2_i386 + libnussl1_2.4.3-2.2_i386 + libnvtt-bin_2.0.8-1+dfsg-2_i386 + libnvtt-dev_2.0.8-1+dfsg-2_i386 + libnvtt2_2.0.8-1+dfsg-2_i386 + libnxcl-bin_0.9-3.1_i386 + libnxcl-dev_0.9-3.1_i386 + libnxcl1_0.9-3.1_i386 + libnxml0_0.18.3-4_i386 + libnxml0-dbg_0.18.3-4_i386 + libnxml0-dev_0.18.3-4_i386 + libnzb-dev_0.0.20050629-6.1_i386 + libnzb0c2a_0.0.20050629-6.1_i386 + liboar-perl_2.5.2-3_i386 + liboasis-ocaml_0.2.0-6_i386 + liboasis-ocaml-dev_0.2.0-6_i386 + liboasis3-0d_3.3.beta.dfsg.1-8+b1_i386 + liboasis3-dev_3.3.beta.dfsg.1-8+b1_i386 + liboath-dev_1.12.4-1_i386 + liboath0_1.12.4-1_i386 + liboauth-dev_0.9.4-3.1_i386 + liboauth0_0.9.4-3.1_i386 + libobby-0.4-1_0.4.8-1_i386 + libobby-0.4-1-dbg_0.4.8-1_i386 + libobby-0.4-dev_0.4.8-1_i386 + libobexftp-perl_0.23-1.1_i386 + libobexftp-ruby_0.23-1.1_i386 + libobexftp0_0.23-1.1_i386 + libobexftp0-dev_0.23-1.1_i386 + libobjc3_4.6.3-14_i386 + libobjc3-dbg_4.6.3-14_i386 + libobjc4_4.7.2-5_i386 + libobjc4-dbg_4.7.2-5_i386 + libobrender27_3.5.0-7_i386 + libobrowser-ocaml-dev_1.1.1+dfsg-1+b9_i386 + libobt0_3.5.0-7_i386 + libobus-ocaml_1.1.3-1+b8_i386 + libobus-ocaml-bin_1.1.3-1+b8_i386 + libobus-ocaml-dev_1.1.3-1+b8_i386 + libocamlbricks-ocaml-dev_0.50.1-4+b5_i386 + libocamlgraph-ocaml-dev_1.8.2-2_i386 + libocamlgraph-viewer-ocaml-dev_1.8.2-2_i386 + libocamlgsl-ocaml_0.6.0-7+b2_i386 + libocamlgsl-ocaml-dev_0.6.0-7+b2_i386 + libocamlnet-gtk2-ocaml-dev_3.5.1-1_i386 + libocamlnet-ocaml_3.5.1-1_i386 + libocamlnet-ocaml-bin_3.5.1-1_i386 + libocamlnet-ocaml-dev_3.5.1-1_i386 + libocamlnet-ssl-ocaml_3.5.1-1_i386 + libocamlnet-ssl-ocaml-dev_3.5.1-1_i386 + libocamlodbc-ocaml-dev_2.15-5+b3_i386 + libocamlviz-ocaml-dev_1.01-2+b2_i386 + libocas-dbg_0.93-1_i386 + libocas-dev_0.93-1_i386 + libocas-tools_0.93-1_i386 + libocas0_0.93-1_i386 + liboce-foundation-dev_0.9.1-3_i386 + liboce-foundation2_0.9.1-3_i386 + liboce-modeling2_0.9.1-3_i386 + liboce-ocaf-lite2_0.9.1-3_i386 + liboce-ocaf2_0.9.1-3_i386 + liboce-visualization2_0.9.1-3_i386 + libocpf-dev_1:1.0-3_i386 + libocpf0_1:1.0-3_i386 + libocrad-dev_0.22~rc1-2_i386 + libocsigen-ocaml_1.3.4-2+b12_i386 + libocsigen-ocaml-dev_1.3.4-2+b12_i386 + libocsigen-xhtml-ocaml-dev_1.3.4-2+b12_i386 + libocsigenserver-ocaml_2.1-1_i386 + libocsigenserver-ocaml-dev_2.1-1_i386 + liboctave-dev_3.6.2-5+deb7u1_i386 + liboctave1_3.6.2-5+deb7u1_i386 + libodbc1_2.2.14p2-5_i386 + libodbcinstq4-1_2.3.0-3_i386 + libode-dev_2:0.11.1-4_i386 + libode-sp-dev_2:0.11.1-4_i386 + libode1_2:0.11.1-4_i386 + libode1sp_2:0.11.1-4_i386 + libodin-dev_1.8.5-2_i386 + libodn-ocaml_0.0.8-1_i386 + libodn-ocaml-dev_0.0.8-1_i386 + libofa0_0.9.3-5_i386 + libofa0-dev_0.9.3-5_i386 + libofapi-dev_0git20070620-6_i386 + libofapi0_0git20070620-6_i386 + libofdt-dev_1.3.6-1_i386 + libofdt1_1.3.6-1_i386 + libofetion-dev_2.2.2-1_i386 + libofetion1_2.2.2-1_i386 + libofx-dev_1:0.9.4-2.1_i386 + libofx4_1:0.9.4-2.1_i386 + libofx4-dbg_1:0.9.4-2.1_i386 + libogdf-tulip-3.7.0_3.7.0dfsg-4_i386 + libogdi3.2_3.2.0~beta2-7_i386 + libogdi3.2-dev_3.2.0~beta2-7_i386 + libogg-dbg_1.3.0-4_i386 + libogg-dev_1.3.0-4_i386 + libogg-ocaml_0.4.3-1+b1_i386 + libogg-ocaml-dev_0.4.3-1+b1_i386 + libogg-vorbis-decoder-perl_0.9-1+b2_i386 + libogg0_1.3.0-4_i386 + liboggkate-dev_0.4.1-1_i386 + liboggkate1_0.4.1-1_i386 + liboggplay1_0.2.1~git20091227-1.2_i386 + liboggplay1-dbg_0.2.1~git20091227-1.2_i386 + liboggplay1-dev_0.2.1~git20091227-1.2_i386 + liboggz2_1.1.1-1_i386 + liboggz2-dbg_1.1.1-1_i386 + liboggz2-dev_1.1.1-1_i386 + liboglappth-dev_1.0.0-2_i386 + liboglappth2_1.0.0-2_i386 + libogre-1.7.4_1.7.4+dfsg1-7_i386 + libogre-1.7.4-dbg_1.7.4+dfsg1-7_i386 + libogre-1.8-dev_1.8.0+dfsg1-3_i386 + libogre-1.8.0_1.8.0+dfsg1-3_i386 + libogre-1.8.0-dbg_1.8.0+dfsg1-3_i386 + libogre-dev_1.7.4+dfsg1-7_i386 + libogre-perl_0.50-2+b2_i386 + liboil0.3_0.3.17-2_i386 + liboil0.3-dbg_0.3.17-2_i386 + liboil0.3-dev_0.3.17-2_i386 + libois-1.3.0_1.3.0+dfsg0-5_i386 + libois-dev_1.3.0+dfsg0-5_i386 + libois-perl_0.05-3_i386 + libokteta1core1_4:4.8.4+dfsg-1_i386 + libokteta1gui1_4:4.8.4+dfsg-1_i386 + libokularcore1_4:4.8.4-3_i386 + libomhacks-dev_0.16-1_i386 + libomhacks0_0.16-1_i386 + libomnievents-dbg_1:2.6.2-2_i386 + libomnievents-dev_1:2.6.2-2_i386 + libomnievents2_1:2.6.2-2_i386 + libomniorb4-1_4.1.6-2_i386 + libomniorb4-1-dbg_4.1.6-2_i386 + libomniorb4-dev_4.1.6-2_i386 + libomnithread3-dev_4.1.6-2_i386 + libomnithread3c2_4.1.6-2_i386 + libomnithread3c2-dbg_4.1.6-2_i386 + libomxil-bellagio-dev_0.9.3-1+b1_i386 + libomxil-bellagio0_0.9.3-1+b1_i386 + libomxil-bellagio0-components-alsa_0.1-2_i386 + libomxil-bellagio0-components-base_0.9.3-1+b1_i386 + libomxil-bellagio0-components-base-dbg_0.9.3-1+b1_i386 + libomxil-bellagio0-components-camera_0.1-2_i386 + libomxil-bellagio0-components-fbdevsink_0.1-2_i386 + libomxil-bellagio0-components-mad_0.1-1_i386 + libomxil-bellagio0-components-videosrc_0.1-1_i386 + libomxil-bellagio0-components-vorbis_0.1-3_i386 + libomxil-bellagio0-components-xvideo_0.1-2_i386 + libomxil-bellagio0-dbg_0.9.3-1+b1_i386 + libonig-dev_5.9.1-1_i386 + libonig2_5.9.1-1_i386 + libonig2-dbg_5.9.1-1_i386 + liboobs-1-5_3.0.0-1_i386 + liboobs-1-5-dbg_3.0.0-1_i386 + liboobs-1-dev_3.0.0-1_i386 + liboop-dbg_1.0-9_i386 + liboop-dev_1.0-9_i386 + liboop4_1.0-9_i386 + libooptools-dev_2.7-1_i386 + libopal-dbg_3.10.4~dfsg-3_i386 + libopal-dev_3.10.4~dfsg-3_i386 + libopal3.10.4_3.10.4~dfsg-3_i386 + libopenafs-dev_1.6.1-3+deb7u1_i386 + libopenais-dev_1.1.4-4.1_i386 + libopenais3_1.1.4-4.1_i386 + libopenal-dev_1:1.14-4_i386 + libopenal1_1:1.14-4_i386 + libopenbabel-dev_2.3.1+dfsg-4_i386 + libopenbabel4_2.3.1+dfsg-4_i386 + libopenblas-base_0.1.1-6+deb7u2_i386 + libopenblas-dev_0.1.1-6+deb7u2_i386 + libopencc-dbg_0.3.0-3_i386 + libopencc-dev_0.3.0-3_i386 + libopencc1_0.3.0-3_i386 + libopenconnect-dev_3.20-4_i386 + libopenconnect1_3.20-4_i386 + libopencore-amrnb-dev_0.1.3-2_i386 + libopencore-amrnb0_0.1.3-2_i386 + libopencore-amrnb0-dbg_0.1.3-2_i386 + libopencore-amrwb-dev_0.1.3-2_i386 + libopencore-amrwb0_0.1.3-2_i386 + libopencore-amrwb0-dbg_0.1.3-2_i386 + libopencryptoki-dev_2.3.1+dfsg-3_i386 + libopencryptoki0_2.3.1+dfsg-3_i386 + libopencsg-dev_1.3.2-2_i386 + libopencsg-example_1.3.2-2_i386 + libopencsg1_1.3.2-2_i386 + libopencsg1-dbg_1.3.2-2_i386 + libopenct1_0.6.20-1.2_i386 + libopenct1-dbg_0.6.20-1.2_i386 + libopenct1-dev_0.6.20-1.2_i386 + libopencv-calib3d-dev_2.3.1-11_i386 + libopencv-calib3d2.3_2.3.1-11_i386 + libopencv-contrib-dev_2.3.1-11_i386 + libopencv-contrib2.3_2.3.1-11_i386 + libopencv-core-dev_2.3.1-11_i386 + libopencv-core2.3_2.3.1-11_i386 + libopencv-dev_2.3.1-11_i386 + libopencv-features2d-dev_2.3.1-11_i386 + libopencv-features2d2.3_2.3.1-11_i386 + libopencv-flann-dev_2.3.1-11_i386 + libopencv-flann2.3_2.3.1-11_i386 + libopencv-gpu-dev_2.3.1-11_i386 + libopencv-gpu2.3_2.3.1-11_i386 + libopencv-highgui-dev_2.3.1-11_i386 + libopencv-highgui2.3_2.3.1-11_i386 + libopencv-imgproc-dev_2.3.1-11_i386 + libopencv-imgproc2.3_2.3.1-11_i386 + libopencv-legacy-dev_2.3.1-11_i386 + libopencv-legacy2.3_2.3.1-11_i386 + libopencv-ml-dev_2.3.1-11_i386 + libopencv-ml2.3_2.3.1-11_i386 + libopencv-objdetect-dev_2.3.1-11_i386 + libopencv-objdetect2.3_2.3.1-11_i386 + libopencv-video-dev_2.3.1-11_i386 + libopencv-video2.3_2.3.1-11_i386 + libopendkim-dev_2.6.8-4_i386 + libopendkim7_2.6.8-4_i386 + libopenexr-dev_1.6.1-6_i386 + libopenexr6_1.6.1-6_i386 + libopengl-perl_0.66+dfsg-1_i386 + libopengl-xscreensaver-perl_0.04-1+b2_i386 + libopenhpi-dev_2.14.1-1.2_i386 + libopenhpi2_2.14.1-1.2_i386 + libopenigtlink1-dev_1.9.2~svn7468-1_i386 + libopenigtlink1.9_1.9.2~svn7468-1_i386 + libopenigtlink1.9-dbg_1.9.2~svn7468-1_i386 + libopenimageio-dev_1.0.5+dfsg0-1_i386 + libopenimageio1.0_1.0.5+dfsg0-1_i386 + libopenipmi-dev_2.0.16-1.3_i386 + libopenipmi0_2.0.16-1.3_i386 + libopenjpeg-dev_1.3+dfsg-4.7_i386 + libopenjpeg2_1.3+dfsg-4.7_i386 + libopenjpeg2-dbg_1.3+dfsg-4.7_i386 + libopenmeeg-dev_2.0.0.dfsg-5_i386 + libopenmeeg1_2.0.0.dfsg-5_i386 + libopenmpi-dbg_1.4.5-1_i386 + libopenmpi-dev_1.4.5-1_i386 + libopenmpi1.3_1.4.5-1_i386 + libopenobex1_1.5-2_i386 + libopenobex1-dev_1.5-2_i386 + libopenr2-3_1.3.2-1.1_i386 + libopenr2-bin_1.3.2-1.1_i386 + libopenr2-dev_1.3.2-1.1_i386 + libopenraw-dev_0.0.9-3+b1_i386 + libopenraw1_0.0.9-3+b1_i386 + libopenraw1-dbg_0.0.9-3+b1_i386 + libopenrawgnome-dev_0.0.9-3+b1_i386 + libopenrawgnome1_0.0.9-3+b1_i386 + libopenscap-dev_0.8.0-4+b1_i386 + libopenscap-perl_0.8.0-4+b1_i386 + libopenscap1_0.8.0-4+b1_i386 + libopenscap1-dbg_0.8.0-4+b1_i386 + libopenscenegraph-dev_3.0.1-4_i386 + libopenscenegraph80_3.0.1-4_i386 + libopenslide-dev_3.2.6-2_i386 + libopenslide0_3.2.6-2_i386 + libopensm2_3.2.6-20090317-2.1_i386 + libopensm2-dev_3.2.6-20090317-2.1_i386 + libopenthreads-dev_3.0.1-4_i386 + libopenthreads14_3.0.1-4_i386 + libopentoken-dbg_4.0b-3_i386 + libopentoken3-dev_4.0b-3_i386 + libopentoken6_4.0b-3_i386 + libopenturns-dbg_1.0-4_i386 + libopenturns-dev_1.0-4_i386 + libopenturns0.1_1.0-4_i386 + libopenusb-dev_1.1.0-2_i386 + libopenusb0_1.1.0-2_i386 + libopenvg1-mesa_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dbg_8.0.5-4+deb7u2_i386 + libopenvg1-mesa-dev_8.0.5-4+deb7u2_i386 + libopenvrml-dev_0.18.9-5+deb7u1_i386 + libopenvrml9_0.18.9-5+deb7u1_i386 + libopenwalnut1_1.2.5-1.1+b1_i386 + libopenwalnut1-dev_1.2.5-1.1+b1_i386 + liboping-dev_1.6.2-1_i386 + liboping0_1.6.2-1_i386 + libopkele-dev_2.0.4-5.3_i386 + libopkele3_2.0.4-5.3_i386 + libopts25_1:5.12-0.1_i386 + libopts25-dev_1:5.12-0.1_i386 + libopus-dbg_0.9.14+20120615-1+nmu1_i386 + libopus-dev_0.9.14+20120615-1+nmu1_i386 + libopus0_0.9.14+20120615-1+nmu1_i386 + liborange-dev_0.4-2_i386 + liborange0_0.4-2_i386 + liborbit2_1:2.14.19-0.1_i386 + liborbit2-dev_1:2.14.19-0.1_i386 + liborc-0.4-0_1:0.4.16-2_i386 + liborc-0.4-0-dbg_1:0.4.16-2_i386 + liborc-0.4-dev_1:0.4.16-2_i386 + liborigin-dev_20080225-2.1_i386 + liborigin0_20080225-2.1_i386 + liborigin2-1_2:20110117-1+b2_i386 + liborigin2-dev_2:20110117-1+b2_i386 + libortp-dev_3.5.2-10_i386 + libortp8_3.5.2-10_i386 + liboscpack-dbg_1.0.2-1_i386 + liboscpack-dev_1.0.2-1_i386 + liboscpack1_1.0.2-1_i386 + libosgearth-dev_2.0+dfsg-4+b3_i386 + libosgearth1_2.0+dfsg-4+b3_i386 + libosinfo-1.0-0_0.1.1-1_i386 + libosinfo-1.0-0-dbg_0.1.1-1_i386 + libosinfo-1.0-dev_0.1.1-1_i386 + libosinfo-bin_0.1.1-1_i386 + libosip2-7_3.6.0-4_i386 + libosip2-dev_3.6.0-4_i386 + libosl-dev_0.5.0-1_i386 + libosl1_0.5.0-1_i386 + libosl1-dbg_0.5.0-1_i386 + libosmesa6_8.0.5-4+deb7u2_i386 + libosmesa6-dev_8.0.5-4+deb7u2_i386 + libosmgpsmap-dev_0.7.3-3_i386 + libosmgpsmap2_0.7.3-3_i386 + libosmgpsmap2-dbg_0.7.3-3_i386 + libosmium-dev_0.0~20111213-g7f3500a-3+b2_i386 + libosmpbf-dev_1.2.1-3_i386 + libosp-dev_1.5.2-10_i386 + libosp5_1.5.2-10_i386 + libosptk3_3.4.2-1+b1_i386 + libosptk3-dbg_3.4.2-1+b1_i386 + libosptk3-dev_3.4.2-1+b1_i386 + liboss4-salsa-asound2_4.2-build2006-2+deb7u1_i386 + liboss4-salsa2_4.2-build2006-2+deb7u1_i386 + libossim-dev_1.7.21-4_i386 + libossim1_1.7.21-4_i386 + libossp-sa-dev_1.2.6-1_i386 + libossp-sa12_1.2.6-1_i386 + libossp-uuid-dev_1.6.2-1.3_i386 + libossp-uuid-perl_1.6.2-1.3_i386 + libossp-uuid16_1.6.2-1.3_i386 + libostyle-dev_1.4devel1-20.1+b1_i386 + libostyle1c2_1.4devel1-20.1+b1_i386 + libotcl1_1.14+dfsg-2_i386 + libotcl1-dev_1.14+dfsg-2_i386 + libotf-bin_0.9.12-2_i386 + libotf-dev_0.9.12-2_i386 + libotf-trace-dev_1.10.2+dfsg-2_i386 + libotf-trace1_1.10.2+dfsg-2_i386 + libotf0_0.9.12-2_i386 + libotf0-dbg_0.9.12-2_i386 + libotfaux0_1.10.2+dfsg-2_i386 + libotp0-heimdal_1.6~git20120403+dfsg1-2_i386 + libotpw-dev_1.3-2_i386 + libotr2_3.2.1-1+deb7u1_i386 + libotr2-bin_3.2.1-1+deb7u1_i386 + libotr2-dev_3.2.1-1+deb7u1_i386 + libots-dev_0.5.0-2.1_i386 + libots0_0.5.0-2.1_i386 + libounit-ocaml-dev_1.1.1-1_i386 + libow-2.8-15_2.8p15-1_i386 + libow-dev_2.8p15-1_i386 + libow-perl_2.8p15-1_i386 + libow-php5_2.8p15-1_i386 + libow-tcl_2.8p15-1_i386 + libowcapi-2.8-15_2.8p15-1_i386 + libowfat-dev_0.28-6_i386 + libowfat-dietlibc-dev_0.28-6_i386 + libowfat0_0.28-6_i386 + libownet-2.8-15_2.8p15-1_i386 + libownet-dev_2.8p15-1_i386 + libp11-2_0.2.8-2_i386 + libp11-2-dbg_0.2.8-2_i386 + libp11-dev_0.2.8-2_i386 + libp11-kit-dev_0.12-3_i386 + libp11-kit0_0.12-3_i386 + libpackage-stash-xs-perl_0.24-1+b1_i386 + libpackagekit-glib2-14_0.7.6-3_i386 + libpackagekit-glib2-dev_0.7.6-3_i386 + libpackagekit-qt2-2_0.7.6-3_i386 + libpackagekit-qt2-dev_0.7.6-3_i386 + libpacketdump3_3.0.14-1_i386 + libpacketdump3-dev_3.0.14-1_i386 + libpacklib-lesstif1-dev_20061220+dfsg3-2_i386 + libpacklib-lesstif1-gfortran_20061220+dfsg3-2_i386 + libpacklib1-dev_20061220+dfsg3-2_i386 + libpacklib1-gfortran_20061220+dfsg3-2_i386 + libpacparser-dev_1.3.0-2_i386 + libpacparser1_1.3.0-2_i386 + libpadwalker-perl_1.94-1_i386 + libpam-abl_0.4.3-1_i386 + libpam-afs-session_2.5-2_i386 + libpam-alreadyloggedin_0.3-4_i386 + libpam-apparmor_2.7.103-4_i386 + libpam-barada_0.5-3.1_i386 + libpam-blue_0.9.0-3_i386 + libpam-cap_1:2.22-1.2_i386 + libpam-ccreds_10-5+b1_i386 + libpam-cgroup_0.38-1_i386 + libpam-chroot_0.9-4.1_i386 + libpam-ck-connector_0.4.5-3.1_i386 + libpam-cracklib_1.1.3-7.1_i386 + libpam-dbus_0.2.1-1_i386 + libpam-duo_1.8-1_i386 + libpam-encfs_0.1.4.4-6_i386 + libpam-fprintd_0.4.1-5-g73edad0-3_i386 + libpam-gnome-keyring_3.4.1-5_i386 + libpam-heimdal_4.6-1_i386 + libpam-krb5_4.6-1_i386 + libpam-krb5-migrate-heimdal_0.0.10-1_i386 + libpam-ldap_184-8.6_i386 + libpam-ldapd_0.8.10-4_i386 + libpam-modules_1.1.3-7.1_i386 + libpam-modules-bin_1.1.3-7.1_i386 + libpam-mount_2.14~git+d1d6f871-1_i386 + libpam-mysql_0.7~RC1-4+b3_i386 + libpam-ncp_2.2.6-9_i386 + libpam-nufw_2.4.3-2.2_i386 + libpam-oath_1.12.4-1_i386 + libpam-ocaml_1.1-4+b3_i386 + libpam-ocaml-dev_1.1-4+b3_i386 + libpam-openafs-kaserver_1.6.1-3+deb7u1_i386 + libpam-otpw_1.3-2_i386 + libpam-p11_0.1.5-2_i386 + libpam-passwdqc_1.2.0-1_i386 + libpam-pgsql_0.7.3.1-4_i386 + libpam-pkcs11_0.6.8-1_i386 + libpam-poldi_0.4.1-2.1_i386 + libpam-pwdfile_0.99-5_i386 + libpam-python_1.0.2-1_i386 + libpam-radius-auth_1.3.16-4.4_i386 + libpam-script_1.1.5-1_i386 + libpam-shield_0.9.2-3.3_i386 + libpam-shishi_1.0.1-2_i386 + libpam-slurm_2.3.4-2+b1_i386 + libpam-smbpass_2:3.6.6-6+deb7u2_i386 + libpam-ssh_1.92-15_i386 + libpam-sss_1.8.4-2_i386 + libpam-systemd_44-11+deb7u4_i386 + libpam-tacplus_1.3.6-1_i386 + libpam-tmpdir_0.09_i386 + libpam-unix2_1:2.4.1-6_i386 + libpam-usb_0.5.0-4_i386 + libpam-winbind_2:3.6.6-6+deb7u2_i386 + libpam-yubico_2.12-1_i386 + libpam0g_1.1.3-7.1_i386 + libpam0g-dev_1.1.3-7.1_i386 + libpanel-applet-4-0_3.4.2.1-4_i386 + libpanel-applet-4-dev_3.4.2.1-4_i386 + libpango-perl_1.222-1+b1_i386 + libpango1.0-0_1.30.0-1_i386 + libpango1.0-0-dbg_1.30.0-1_i386 + libpango1.0-dev_1.30.0-1_i386 + libpangomm-1.4-1_2.28.4-1_i386 + libpangomm-1.4-dbg_2.28.4-1_i386 + libpangomm-1.4-dev_2.28.4-1_i386 + libpano13-2_2.9.18+dfsg-5_i386 + libpano13-bin_2.9.18+dfsg-5_i386 + libpano13-dev_2.9.18+dfsg-5_i386 + libpantomime1.2_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpantomime1.2-dev_1.2.0~pre3+snap20071004+dfsg-4+b1_i386 + libpaper-dev_1.1.24+nmu2_i386 + libpaper-utils_1.1.24+nmu2_i386 + libpaper1_1.1.24+nmu2_i386 + libpaps-dev_0.6.8-6_i386 + libpaps0_0.6.8-6_i386 + libpaq-dev_1.0.4-3+b1_i386 + libpaq0_1.0.4-3+b1_i386 + libpar-packer-perl_1.012-1_i386 + libpar2-0_0.2.1-1_i386 + libpar2-0-dbg_0.2.1-1_i386 + libpar2-0-dev_0.2.1-1_i386 + libparams-classify-perl_0.013-4_i386 + libparams-util-perl_1.07-1_i386 + libparams-validate-perl_1.06-1_i386 + libpari-dbg_2.5.1-2_i386 + libpari-dev_2.5.1-2_i386 + libpari-gmp3_2.5.1-2_i386 + libparpack2_3.1.1-2.1_i386 + libparpack2-dbg_3.1.1-2.1_i386 + libparpack2-dev_3.1.1-2.1_i386 + libparrot-dev_4.0.0-3_i386 + libparrot4.0.0_4.0.0-3_i386 + libparse-exuberantctags-perl_1.01-1+b2_i386 + libparse-pidl-perl_4.0.0~beta2+dfsg1-3.2_i386 + libparted0_2.3-12_i386 + libparted0-dev_2.3-12_i386 + libparted0debian1_2.3-12_i386 + libparted0debian1-dbg_2.3-12_i386 + libpasswdqc0_1.2.0-1_i386 + libpath-utils-dev_0.1.3-2_i386 + libpath-utils1_0.1.3-2_i386 + libpathfinder-dev_1.1.3-0.4+b1_i386 + libpathfinder-nss-1_1.1.3-0.4+b1_i386 + libpathfinder-openssl-1_1.1.3-0.4+b1_i386 + libpathplan4_2.26.3-14+deb7u1_i386 + libpawlib-lesstif3-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib-lesstif3-gfortran_1:2.14.04.dfsg.2-8_i386 + libpawlib2-dev_1:2.14.04.dfsg.2-8_i386 + libpawlib2-gfortran_1:2.14.04.dfsg.2-8_i386 + libpcap0.8_1.3.0-1_i386 + libpcap0.8-dbg_1.3.0-1_i386 + libpcap0.8-dev_1.3.0-1_i386 + libpcapnav0_0.8-1_i386 + libpcapnav0-dev_0.8-1_i386 + libpci-dev_1:3.1.9-6_i386 + libpci3_1:3.1.9-6_i386 + libpciaccess-dev_0.13.1-2_i386 + libpciaccess0_0.13.1-2_i386 + libpcl1_1.6-1_i386 + libpcl1-dev_1.6-1_i386 + libpcre++-dev_0.9.5-5.1_i386 + libpcre++0_0.9.5-5.1_i386 + libpcre-ocaml_6.2.5-1_i386 + libpcre-ocaml-dev_6.2.5-1_i386 + libpcre3_1:8.30-5_i386 + libpcre3-dbg_1:8.30-5_i386 + libpcre3-dev_1:8.30-5_i386 + libpcrecpp0_1:8.30-5_i386 + libpcsc-perl_1.4.12-1+b2_i386 + libpcscada0.7.1_0.7.1-4_i386 + libpcscada2-dev_0.7.1-4_i386 + libpcsclite-dbg_1.8.4-1+deb7u1_i386 + libpcsclite-dev_1.8.4-1+deb7u1_i386 + libpcsclite1_1.8.4-1+deb7u1_i386 + libpda-pilot-perl_0.12.5-5_i386 + libpdflib804-2-dev_20061220+dfsg3-2_i386 + libpdflib804-2-gfortran_20061220+dfsg3-2_i386 + libpdl-io-hdf5-perl_0.63-3_i386 + libpdl-netcdf-perl_4.16-3_i386 + libpdl-stats-perl_0.6.2-1_i386 + libpe-rules2_1.1.7-1_i386 + libpe-rules2-dev_1.1.7-1_i386 + libpe-status3_1.1.7-1_i386 + libpe-status3-dev_1.1.7-1_i386 + libpeas-1.0-0_1.4.0-2_i386 + libpeas-dev_1.4.0-2_i386 + libpeas-doc_1.4.0-2_i386 + libpengine3_1.1.7-1_i386 + libpengine3-dev_1.1.7-1_i386 + libperl-destruct-level-perl_0.02-1+b2_i386 + libperl-dev_5.14.2-21+deb7u1_i386 + libperl4caml-ocaml_0.9.5-4+b4_i386 + libperl4caml-ocaml-dev_0.9.5-4+b4_i386 + libperl5.14_5.14.2-21+deb7u1_i386 + libperl5i-perl_2.9.1-2_i386 + libperlbal-xs-httpheaders-perl_0.20-2_i386 + libperlio-eol-perl_0.14-1+b3_i386 + libperlio-gzip-perl_0.18-1+b2_i386 + libpetsc3.2_3.2.dfsg-6_i386 + libpetsc3.2-dbg_3.2.dfsg-6_i386 + libpetsc3.2-dev_3.2.dfsg-6_i386 + libpfqueue-dev_0.5.6-8_i386 + libpfqueue0_0.5.6-8_i386 + libpfs-1.2-0_1.8.5-1_i386 + libpfs-dev_1.8.5-1_i386 + libpg-perl_1:2.1.1-4+b2_i386 + libpgapack-mpi1_1.1.1-3_i386 + libpgapack-serial1_1.1.1-3_i386 + libpgm-5.1-0_5.1.118-1~dfsg-0.1_i386 + libpgm-dbg_5.1.118-1~dfsg-0.1_i386 + libpgm-dev_5.1.118-1~dfsg-0.1_i386 + libpgocaml-ocaml_1.5-2_i386 + libpgocaml-ocaml-dev_1.5-2_i386 + libpgpool-dev_3.1.3-5_i386 + libpgpool0_3.1.3-5_i386 + libpgraphutil-smlnj_110.74-2_i386 + libpgtcl-dev_1:1.5-6_i386 + libpgtcl1.5_1:1.5-6_i386 + libpgtypes3_9.1.11-0wheezy1_i386 + libphash0_0.9.4-1.2_i386 + libphash0-dev_0.9.4-1.2_i386 + libphat-dev_0.4.1-5_i386 + libphat-tools_0.4.1-5_i386 + libphat0_0.4.1-5_i386 + libphobos-4.4-dev_1.063-4.4.7-1_i386 + libphobos2-4.6-dev_0.29.1-4.6.3-2_i386 + libphone-ui-20110825_1:0.0.1+git20110825-3_i386 + libphone-ui-20110825-dbg_1:0.0.1+git20110825-3_i386 + libphone-ui-dev_1:0.0.1+git20110825-3_i386 + libphone-ui-shr_0.1+git20110827-3+b1_i386 + libphone-ui-shr-data_0.1+git20110827-3+b1_i386 + libphone-ui-shr-dbg_0.1+git20110827-3+b1_i386 + libphone-utils-dev_0.1+git20110523-2.1_i386 + libphone-utils0_0.1+git20110523-2.1_i386 + libphone-utils0-dbg_0.1+git20110523-2.1_i386 + libphonon-dev_4:4.6.0.0-3_i386 + libphonon4_4:4.6.0.0-3_i386 + libphononexperimental-dev_4:4.6.0.0-3_i386 + libphononexperimental4_4:4.6.0.0-3_i386 + libphotos202-1-gfortran_20061220+dfsg3-2_i386 + libphotos202-dev_20061220+dfsg3-2_i386 + libphp5-embed_5.4.4-14+deb7u7_i386 + libphtools2-dev_20061220+dfsg3-2_i386 + libphtools2-gfortran_20061220+dfsg3-2_i386 + libphysfs-dev_2.0.2-6_i386 + libphysfs1_2.0.2-6_i386 + libphysfs1-dbg_2.0.2-6_i386 + libpiano-dev_2012.05.06-2_i386 + libpiano0_2012.05.06-2_i386 + libpigment-dbg_0.3.17-1_i386 + libpigment0.3-11_0.3.17-1_i386 + libpigment0.3-dev_0.3.17-1_i386 + libpils2_1.0.9+hg2665-1_i386 + libpils2-dev_1.0.9+hg2665-1_i386 + libpinyin-dbg_0.6.91-1_i386 + libpinyin-utils_0.6.91-1_i386 + libpinyin0_0.6.91-1_i386 + libpinyin0-dev_0.6.91-1_i386 + libpion-common-4.0_4.0.7+dfsg-3.1_i386 + libpion-common-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-common-dev_4.0.7+dfsg-3.1_i386 + libpion-net-4.0_4.0.7+dfsg-3.1_i386 + libpion-net-4.0-dbg_4.0.7+dfsg-3.1_i386 + libpion-net-dev_4.0.7+dfsg-3.1_i386 + libpion-net-plugins_4.0.7+dfsg-3.1_i386 + libpion-net-plugins-dbg_4.0.7+dfsg-3.1_i386 + libpipeline-dev_1.2.1-1_i386 + libpipeline1_1.2.1-1_i386 + libpisock-dev_0.12.5-5_i386 + libpisock9_0.12.5-5_i386 + libpisync1_0.12.5-5_i386 + libpixman-1-0_0.26.0-4+deb7u1_i386 + libpixman-1-0-dbg_0.26.0-4+deb7u1_i386 + libpixman-1-dev_0.26.0-4+deb7u1_i386 + libpkcs11-helper1_1.09-1_i386 + libpkcs11-helper1-dev_1.09-1_i386 + libplasma-geolocation-interface4_4:4.8.4-6_i386 + libplasma3_4:4.8.4-4_i386 + libplasmaclock4abi3_4:4.8.4-6_i386 + libplasmagenericshell4_4:4.8.4-6_i386 + libplayer-bin_2.0.1-2.1_i386 + libplayer-dev_2.0.1-2.1_i386 + libplayer2_2.0.1-2.1_i386 + libplayer2-dbg_2.0.1-2.1_i386 + libplayerc++3.0_3.0.2+dfsg-4+b1_i386 + libplayerc++3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerc3.0_3.0.2+dfsg-4+b1_i386 + libplayerc3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0_3.0.2+dfsg-4+b1_i386 + libplayercommon3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayercore3.0_3.0.2+dfsg-4+b1_i386 + libplayercore3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0_3.0.2+dfsg-4+b1_i386 + libplayerdrivers3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0_3.0.2+dfsg-4+b1_i386 + libplayerinterface3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0_3.0.2+dfsg-4+b1_i386 + libplayerjpeg3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0_3.0.2+dfsg-4+b1_i386 + libplayertcp3.0-dev_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0_3.0.2+dfsg-4+b1_i386 + libplayerwkb3.0-dev_3.0.2+dfsg-4+b1_i386 + libplib-dev_1.8.5-6_i386 + libplib1_1.8.5-6_i386 + libplist++-dev_1.8-1_i386 + libplist++1_1.8-1_i386 + libplist-dbg_1.8-1_i386 + libplist-dev_1.8-1_i386 + libplist-utils_1.8-1_i386 + libplist1_1.8-1_i386 + libpload-dev_1.4.2-3_i386 + libpload4_1.4.2-3_i386 + libplot-dev_2.6-3_i386 + libplot2c2_2.6-3_i386 + libploticus0_2.41-5_i386 + libploticus0-dev_2.41-5_i386 + libplotmm-dbg_0.1.2-2_i386 + libplotmm-dev_0.1.2-2_i386 + libplotmm0_0.1.2-2_i386 + libplplot-ada0_5.9.9-5_i386 + libplplot-ada0-dev_5.9.9-5_i386 + libplplot-c++10_5.9.9-5_i386 + libplplot-d_5.9.9-5_i386 + libplplot-dev_5.9.9-5_i386 + libplplot-fortran9_5.9.9-5_i386 + libplplot-java_5.9.9-5_i386 + libplplot-lua_5.9.9-5_i386 + libplplot-ocaml_5.9.9-5_i386 + libplplot11_5.9.9-5_i386 + libplumb2_1.0.9+hg2665-1_i386 + libplumb2-dev_1.0.9+hg2665-1_i386 + libplumbgpl2_1.0.9+hg2665-1_i386 + libplumbgpl2-dev_1.0.9+hg2665-1_i386 + libpmap3.0_3.0.2+dfsg-4+b1_i386 + libpmap3.0-dev_3.0.2+dfsg-4+b1_i386 + libpmi0_2.3.4-2+b1_i386 + libpmi0-dev_2.3.4-2+b1_i386 + libpmount-dev_0.0.16_i386 + libpmount0.0_0.0.16_i386 + libpng12-0_1.2.49-1_i386 + libpng12-dev_1.2.49-1_i386 + libpng3_1.2.49-1_i386 + libpnglite-dev_0.1.17-1_i386 + libpoco-dev_1.3.6p1-4_i386 + libpococrypto9_1.3.6p1-4_i386 + libpococrypto9-dbg_1.3.6p1-4_i386 + libpocodata9_1.3.6p1-4_i386 + libpocodata9-dbg_1.3.6p1-4_i386 + libpocofoundation9_1.3.6p1-4_i386 + libpocofoundation9-dbg_1.3.6p1-4_i386 + libpocomysql9_1.3.6p1-4_i386 + libpocomysql9-dbg_1.3.6p1-4_i386 + libpoconet9_1.3.6p1-4_i386 + libpoconet9-dbg_1.3.6p1-4_i386 + libpoconetssl9_1.3.6p1-4_i386 + libpoconetssl9-dbg_1.3.6p1-4_i386 + libpocoodbc9_1.3.6p1-4_i386 + libpocoodbc9-dbg_1.3.6p1-4_i386 + libpocosqlite9_1.3.6p1-4_i386 + libpocosqlite9-dbg_1.3.6p1-4_i386 + libpocoutil9_1.3.6p1-4_i386 + libpocoutil9-dbg_1.3.6p1-4_i386 + libpocoxml9_1.3.6p1-4_i386 + libpocoxml9-dbg_1.3.6p1-4_i386 + libpocozip9_1.3.6p1-4_i386 + libpocozip9-dbg_1.3.6p1-4_i386 + libpodofo-dev_0.9.0-1.1+b1_i386 + libpodofo-utils_0.9.0-1.1+b1_i386 + libpodofo0.9.0_0.9.0-1.1+b1_i386 + libpoker-eval_138.0-1_i386 + libpoker-eval-dev_138.0-1_i386 + libpolarssl-dev_1.2.9-1~deb7u1_i386 + libpolarssl-runtime_1.2.9-1~deb7u1_i386 + libpolarssl0_1.2.9-1~deb7u1_i386 + libpoldiff-dev_3.3.7-3_i386 + libpoldiff1_3.3.7-3_i386 + libpolkit-agent-1-0_0.105-3_i386 + libpolkit-agent-1-dev_0.105-3_i386 + libpolkit-backend-1-0_0.105-3_i386 + libpolkit-backend-1-dev_0.105-3_i386 + libpolkit-gobject-1-0_0.105-3_i386 + libpolkit-gobject-1-dev_0.105-3_i386 + libpolkit-qt-1-1_0.103.0-1_i386 + libpolkit-qt-1-dev_0.103.0-1_i386 + libpolybori-0.5.0-0_0.5~rc1-2.2_i386 + libpolybori-dev_0.5~rc1-2.2_i386 + libpolylib64-8_5.22.5-3+dfsg_i386 + libpolylib64-8-dbg_5.22.5-3+dfsg_i386 + libpolylib64-dev_5.22.5-3+dfsg_i386 + libpolyml-dev_5.2.1-1.1_i386 + libpolyml1_5.2.1-1.1_i386 + libpolyorb-dbg_2.8~20110207-5.1_i386 + libpolyorb2-dev_2.8~20110207-5.1_i386 + libpolyorb3_2.8~20110207-5.1_i386 + libpomp-dev_1.1+dfsg-2_i386 + libpomp0_1.1+dfsg-2_i386 + libpoppler-cpp-dev_0.18.4-6_i386 + libpoppler-cpp0_0.18.4-6_i386 + libpoppler-dev_0.18.4-6_i386 + libpoppler-glib-dev_0.18.4-6_i386 + libpoppler-glib8_0.18.4-6_i386 + libpoppler-private-dev_0.18.4-6_i386 + libpoppler-qt4-3_0.18.4-6_i386 + libpoppler-qt4-dev_0.18.4-6_i386 + libpoppler19_0.18.4-6_i386 + libpopplerkit-dev_0.0.20051227svn-7+b1_i386 + libpopplerkit0_0.0.20051227svn-7+b1_i386 + libpopt-dev_1.16-7_i386 + libpopt0_1.16-7_i386 + libportaudio-dev_18.1-7.1_i386 + libportaudio-ocaml_0.2.0-1+b1_i386 + libportaudio-ocaml-dev_0.2.0-1+b1_i386 + libportaudio0_18.1-7.1_i386 + libportaudio2_19+svn20111121-1_i386 + libportaudiocpp0_19+svn20111121-1_i386 + libportmidi-dev_1:184-2.1_i386 + libportmidi0_1:184-2.1_i386 + libportsmf-dev_0.1~svn20101010-3_i386 + libportsmf0_0.1~svn20101010-3_i386 + libposix-strptime-perl_0.10-1+b2_i386 + libposixlock-ruby1.8_0.0.1-2_i386 + libpostgresql-ocaml_1.18.0-1_i386 + libpostgresql-ocaml-dev_1.18.0-1_i386 + libpostproc-dev_6:0.8.9-1_i386 + libpostproc52_6:0.8.9-1_i386 + libpotrace-dev_1.10-1_i386 + libpotrace0_1.10-1_i386 + libpowerman0_2.3.5-1_i386 + libpowerman0-dev_2.3.5-1_i386 + libppd-dev_2:0.10-7.1_i386 + libppd0_2:0.10-7.1_i386 + libppi-xs-perl_0.901-1+b2_i386 + libppl-c4_0.11.2-8_i386 + libppl-swi_0.11.2-8_i386 + libppl0.11-dev_0.11.2-8_i386 + libppl9_0.11.2-8_i386 + libpq-dev_9.1.11-0wheezy1_i386 + libpq5_9.1.11-0wheezy1_i386 + libpqxx-3.1_3.1-1.1_i386 + libpqxx-3.1-dbg_3.1-1.1_i386 + libpqxx3-dev_3.1-1.1_i386 + libprelude-dev_1.0.0-9_i386 + libprelude-perl_1.0.0-9_i386 + libprelude2_1.0.0-9_i386 + libprelude2-dbg_1.0.0-9_i386 + libpreludedb-dev_1.0.0-1.1+b2_i386 + libpreludedb-perl_1.0.0-1.1+b2_i386 + libpreludedb0_1.0.0-1.1+b2_i386 + libpresage-dev_0.8.8-1_i386 + libpresage1_0.8.8-1_i386 + libpresage1-dbg_0.8.8-1_i386 + libpri-dev_1.4.12-2_i386 + libpri1.4_1.4.12-2_i386 + libprima-perl_1.28-1.1+b1_i386 + libprinterconf-dev_0.5-12_i386 + libprinterconf0c2a_0.5-12_i386 + libprintsys_0.6-13_i386 + libprintsys-dev_0.6-13_i386 + libprison-dbg_1.0+dfsg-1_i386 + libprison-dev_1.0+dfsg-1_i386 + libprison0_1.0+dfsg-1_i386 + libproc-processtable-perl_0.45-6_i386 + libprocesscore4abi1_4:4.8.4-6_i386 + libprocessui4a_4:4.8.4-6_i386 + libprocps0_1:3.3.3-3_i386 + libprocps0-dev_1:3.3.3-3_i386 + libproj-dev_4.7.0-2_i386 + libproj0_4.7.0-2_i386 + libprojectm-dev_2.1.0+dfsg-1_i386 + libprojectm-qt-dev_2.1.0+dfsg-1_i386 + libprojectm-qt1_2.1.0+dfsg-1_i386 + libprojectm2_2.1.0+dfsg-1_i386 + libprotobuf-c0_0.14-1+b1_i386 + libprotobuf-c0-dev_0.14-1+b1_i386 + libprotobuf-dev_2.4.1-3_i386 + libprotobuf-lite7_2.4.1-3_i386 + libprotobuf7_2.4.1-3_i386 + libprotoc-dev_2.4.1-3_i386 + libprotoc7_2.4.1-3_i386 + libproxy-dev_0.3.1-6_i386 + libproxy-tools_0.3.1-6_i386 + libproxy0_0.3.1-6_i386 + libproxychains-dev_3.1-3_i386 + libproxychains3_3.1-3_i386 + libpspell-dev_0.60.7~20110707-1_i386 + libpst-dev_0.6.54-4.1_i386 + libpst4_0.6.54-4.1_i386 + libpst4-dbg_0.6.54-4.1_i386 + libpstoedit-dev_3.60-2+b1_i386 + libpstoedit0c2a_3.60-2+b1_i386 + libpt-dbg_2.10.4~dfsg-1_i386 + libpt-dev_2.10.4~dfsg-1_i386 + libpt2.10.4_2.10.4~dfsg-1_i386 + libptexenc-dev_2012.20120628-4_i386 + libptexenc1_2012.20120628-4_i386 + libpth-dev_2.0.7-16_i386 + libpth20_2.0.7-16_i386 + libpthread-stubs0_0.3-3_i386 + libpthread-stubs0-dev_0.3-3_i386 + libpthread-workqueue-dev_0.8.2-1_i386 + libpthread-workqueue0_0.8.2-1_i386 + libptscotch-5.1_5.1.12b.dfsg-1.2_i386 + libptscotch-dbg_5.1.12b.dfsg-1.2_i386 + libptscotch-dev_5.1.12b.dfsg-1.2_i386 + libpugl-0-0_0~svn32+dfsg0-1_i386 + libpugl-dbg_0~svn32+dfsg0-1_i386 + libpugl-dev_0~svn32+dfsg0-1_i386 + libpulse-dev_2.0-6.1_i386 + libpulse-mainloop-glib0_2.0-6.1_i386 + libpulse-mainloop-glib0-dbg_2.0-6.1_i386 + libpulse-ocaml_0.1.2-1+b1_i386 + libpulse-ocaml-dev_0.1.2-1+b1_i386 + libpulse0_2.0-6.1_i386 + libpulse0-dbg_2.0-6.1_i386 + libpuma-dev_1:1.1+svn20120529-2_i386 + libpurelibc-dev_0.4.1-1_i386 + libpurelibc1_0.4.1-1_i386 + libpurple0_2.10.6-3_i386 + libpuzzle-bin_0.9-5_i386 + libpuzzle-dev_0.9-5_i386 + libpuzzle-php_0.9-5_i386 + libpuzzle1_0.9-5_i386 + libpvm3_3.4.5-12.5_i386 + libpwl-dev_0.11.2-8_i386 + libpwl5_0.11.2-8_i386 + libpxp-ocaml-dev_1.2.2-1+b4_i386 + libpycaml-ocaml_0.82-14+b2_i386 + libpycaml-ocaml-dev_0.82-14+b2_i386 + libpyside-dev_1.1.1-3_i386 + libpyside-py3-1.1_1.1.1-3_i386 + libpyside1.1_1.1.1-3_i386 + libpythia8_8.1.65-1_i386 + libpythia8-dev_8.1.65-1_i386 + libpython2.6_2.6.8-1.1_i386 + libpython2.7_2.7.3-6_i386 + libpython3.2_3.2.3-7_i386 + libpythonqt2-dev_2.0.1-1.1_i386 + libpythonqt2.0_2.0.1-1.1_i386 + libqalculate-dev_0.9.7-8_i386 + libqalculate5_0.9.7-8_i386 + libqapt-dev_1.3.0-2_i386 + libqapt-runtime_1.3.0-2_i386 + libqapt1_1.3.0-2_i386 + libqb-dev_0.11.1-2_i386 + libqb0_0.11.1-2_i386 + libqca2_2.0.3-4_i386 + libqca2-dbg_2.0.3-4_i386 + libqca2-dev_2.0.3-4_i386 + libqca2-plugin-cyrus-sasl_2.0.0-beta3-2_i386 + libqca2-plugin-gnupg_2.0.0~beta3-2_i386 + libqca2-plugin-ossl_2.0.0~beta3-2_i386 + libqd-dev_2.3.11.dfsg-2.1_i386 + libqd0_2.3.11.dfsg-2.1_i386 + libqdaccolib-dev_0.8.2-1_i386 + libqdaccolib0.7_0.8.2-1_i386 + libqdbm++-dev_1.8.78-2_i386 + libqdbm-dev_1.8.78-2_i386 + libqdbm-java_1.8.78-2_i386 + libqdbm-perl_1.8.78-2_i386 + libqdbm-ruby1.8_1.8.78-2_i386 + libqdbm-ruby1.9.1_1.8.78-2_i386 + libqdbm14_1.8.78-2_i386 + libqdbm3++c2_1.8.78-2_i386 + libqdjango-db0_0.2.5-2_i386 + libqdjango-dev_0.2.5-2_i386 + libqdjango-http0_0.2.5-2_i386 + libqdjango-script0_0.2.5-2_i386 + libqedje-dev_0.4.0+lgpl-3_i386 + libqedje0a_0.4.0+lgpl-3_i386 + libqfits-dev_6.2.0-5_i386 + libqfits0_6.2.0-5_i386 + libqgis-dev_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqgis1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + libqglviewer-qt4-2_2.3.4-4.2_i386 + libqglviewer-qt4-dev_2.3.4-4.2_i386 + libqgpgme1_4:4.8.4-2_i386 + libqgpsmm-dev_3.6-4+deb7u1_i386 + libqgpsmm20_3.6-4+deb7u1_i386 + libqhull-dev_2009.1-3_i386 + libqhull5_2009.1-3_i386 + libqimageblitz-dbg_1:0.0.6-4_i386 + libqimageblitz-dev_1:0.0.6-4_i386 + libqimageblitz4_1:0.0.6-4_i386 + libqjson-dbg_0.7.1-7_i386 + libqjson-dev_0.7.1-7_i386 + libqjson0_0.7.1-7_i386 + libqmf-dev_0.16-6+deb7u1_i386 + libqmf1_0.16-6+deb7u1_i386 + libqmf2-1_0.16-6+deb7u1_i386 + libqmf2-dev_0.16-6+deb7u1_i386 + libqmfclient1_1.0.7~2011w23.2-2.1_i386 + libqmfconsole2_0.16-6+deb7u1_i386 + libqmfconsole2-dev_0.16-6+deb7u1_i386 + libqmfengine1_0.16-6+deb7u1_i386 + libqmfengine1-dev_0.16-6+deb7u1_i386 + libqmfmessageserver1_1.0.7~2011w23.2-2.1_i386 + libqmfutil1_1.0.7~2011w23.2-2.1_i386 + libqmmp-dev_0.5.5-1+b1_i386 + libqmmp-misc_0.5.5-1+b1_i386 + libqmmp0_0.5.5-1+b1_i386 + libqmmpui-dev_0.5.5-1+b1_i386 + libqmmpui0_0.5.5-1+b1_i386 + libqoauth-dev_1.0.1-1_i386 + libqoauth1_1.0.1-1_i386 + libqof-dev_0.8.6-1_i386 + libqof2_0.8.6-1_i386 + libqof2-backend-qsf_0.8.6-1_i386 + libqof2-backend-sqlite_0.8.6-1_i386 + libqof2-dbg_0.8.6-1_i386 + libqofexpensesobjects-dev_0.1.9-2_i386 + libqofexpensesobjects1_0.1.9-2_i386 + libqofexpensesobjects1-dbg_0.1.9-2_i386 + libqpdf-dev_2.3.1-4_i386 + libqpdf3_2.3.1-4_i386 + libqpid-perl_0.16-6+deb7u1_i386 + libqpid-ruby1.8_0.16-6+deb7u1_i386 + libqpidbroker2_0.16-6+deb7u1_i386 + libqpidbroker2-dev_0.16-6+deb7u1_i386 + libqpidclient2_0.16-6+deb7u1_i386 + libqpidclient2-dev_0.16-6+deb7u1_i386 + libqpidcommon2_0.16-6+deb7u1_i386 + libqpidcommon2-dev_0.16-6+deb7u1_i386 + libqpidmessaging2_0.16-6+deb7u1_i386 + libqpidmessaging2-dev_0.16-6+deb7u1_i386 + libqpidtypes1_0.16-6+deb7u1_i386 + libqpidtypes1-dev_0.16-6+deb7u1_i386 + libqpol-dev_3.3.7-3_i386 + libqpol1_3.3.7-3_i386 + libqpx-dev_0.7.1.002-5_i386 + libqpx0_0.7.1.002-5_i386 + libqrencode-dev_3.3.0-2_i386 + libqrencode3_3.3.0-2_i386 + libqrupdate-dev_1.1.1-1_i386 + libqrupdate1_1.1.1-1_i386 + libqsastime-dev_5.9.9-5_i386 + libqsastime0_5.9.9-5_i386 + libqscintilla2-8_2.6.2-2_i386 + libqscintilla2-designer_2.6.2-2_i386 + libqt4-assistant_4:4.8.2+dfsg-11_i386 + libqt4-core_4:4.8.2+dfsg-11_i386 + libqt4-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dbus_4:4.8.2+dfsg-11_i386 + libqt4-declarative_4:4.8.2+dfsg-11_i386 + libqt4-declarative-folderlistmodel_4:4.8.2+dfsg-11_i386 + libqt4-declarative-gestures_4:4.8.2+dfsg-11_i386 + libqt4-declarative-particles_4:4.8.2+dfsg-11_i386 + libqt4-declarative-shaders_4:4.8.2+dfsg-11_i386 + libqt4-designer_4:4.8.2+dfsg-11_i386 + libqt4-designer-dbg_4:4.8.2+dfsg-11_i386 + libqt4-dev_4:4.8.2+dfsg-11_i386 + libqt4-dev-bin_4:4.8.2+dfsg-11_i386 + libqt4-gui_4:4.8.2+dfsg-11_i386 + libqt4-help_4:4.8.2+dfsg-11_i386 + libqt4-network_4:4.8.2+dfsg-11_i386 + libqt4-opengl_4:4.8.2+dfsg-11_i386 + libqt4-opengl-dev_4:4.8.2+dfsg-11_i386 + libqt4-phonon_4:4.8.2+dfsg-11_i386 + libqt4-private-dev_4:4.8.2+dfsg-11_i386 + libqt4-qt3support_4:4.8.2+dfsg-11_i386 + libqt4-qt3support-dbg_4:4.8.2+dfsg-11_i386 + libqt4-script_4:4.8.2+dfsg-11_i386 + libqt4-script-dbg_4:4.8.2+dfsg-11_i386 + libqt4-scripttools_4:4.8.2+dfsg-11_i386 + libqt4-sql_4:4.8.2+dfsg-11_i386 + libqt4-sql-ibase_4:4.8.2+dfsg-11_i386 + libqt4-sql-mysql_4:4.8.2+dfsg-11_i386 + libqt4-sql-odbc_4:4.8.2+dfsg-11_i386 + libqt4-sql-psql_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite_4:4.8.2+dfsg-11_i386 + libqt4-sql-sqlite2_4:4.8.2+dfsg-11_i386 + libqt4-sql-tds_4:4.8.2+dfsg-11_i386 + libqt4-svg_4:4.8.2+dfsg-11_i386 + libqt4-test_4:4.8.2+dfsg-11_i386 + libqt4-webkit_4:4.8.2+dfsg-11_i386 + libqt4-webkit-dbg_4:4.8.2+dfsg-11_i386 + libqt4-xml_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns_4:4.8.2+dfsg-11_i386 + libqt4-xmlpatterns-dbg_4:4.8.2+dfsg-11_i386 + libqt4pas-dev_2.5-6_i386 + libqt4pas5_2.5-6_i386 + libqtassistantclient-dev_4.6.3-4_i386 + libqtassistantclient4_4.6.3-4_i386 + libqtconnectivity1_1.2.0-3_i386 + libqtcontacts1_1.2.0-3_i386 + libqtcore4_4:4.8.2+dfsg-11_i386 + libqtcore4-perl_4.8.4-1_i386 + libqtdbus4_4:4.8.2+dfsg-11_i386 + libqtexengine-dev_0.3-3_i386 + libqtexengine1_0.3-3_i386 + libqtfeedback1_1.2.0-3_i386 + libqtgallery1_1.2.0-3_i386 + libqtglib-2.0-0_0.10.2-2_i386 + libqtgstreamer-0.10-0_0.10.2-2_i386 + libqtgstreamer-dev_0.10.2-2_i386 + libqtgstreamerui-0.10-0_0.10.2-2_i386 + libqtgstreamerutils-0.10-0_0.10.2-2_i386 + libqtgui4_4:4.8.2+dfsg-11_i386 + libqtgui4-perl_4.8.4-1_i386 + libqthreads-12_1.6.8-10.3_i386 + libqtlocation1_1.2.0-3_i386 + libqtmessaging1_1.2.0-3_i386 + libqtmultimediakit1_1.2.0-3_i386 + libqtnetwork4-perl_4.8.4-1_i386 + libqtorganizer1_1.2.0-3_i386 + libqtpublishsubscribe1_1.2.0-3_i386 + libqtruby4shared-dev_4:4.8.4-1_i386 + libqtruby4shared2_4:4.8.4-1_i386 + libqtscript4-core_0.2.0-1_i386 + libqtscript4-gui_0.2.0-1_i386 + libqtscript4-network_0.2.0-1_i386 + libqtscript4-opengl_0.2.0-1_i386 + libqtscript4-phonon_0.2.0-1_i386 + libqtscript4-qtbindings_0.2.0-1_i386 + libqtscript4-sql_0.2.0-1_i386 + libqtscript4-svg_0.2.0-1_i386 + libqtscript4-uitools_0.2.0-1_i386 + libqtscript4-webkit_0.2.0-1_i386 + libqtscript4-xml_0.2.0-1_i386 + libqtscript4-xmlpatterns_0.2.0-1_i386 + libqtsensors1_1.2.0-3_i386 + libqtserviceframework1_1.2.0-3_i386 + libqtsysteminfo1_1.2.0-3_i386 + libqttest4-perl_4.8.4-1_i386 + libqtversit1_1.2.0-3_i386 + libqtversitorganizer1_1.2.0-3_i386 + libqtwebkit-dev_2.2.1-5_i386 + libqtwebkit-qmlwebkitplugin_2.2.1-5_i386 + libqtwebkit4_2.2.1-5_i386 + libqtwebkit4-dbg_2.2.1-5_i386 + libqtxml4-perl_4.8.4-1_i386 + libquadmath0_4.7.2-5_i386 + libquadmath0-dbg_4.7.2-5_i386 + libquantlib-1.2_1.2-2+b1_i386 + libquantlib0-dev_1.2-2+b1_i386 + libquantum-dev_1.1.0-3_i386 + libquantum7_1.1.0-3_i386 + libquicktime-dev_2:1.2.4-3_i386 + libquicktime2_2:1.2.4-3_i386 + libquorum-dev_1.4.2-3_i386 + libquorum4_1.4.2-3_i386 + libquota-perl_1.6.6+dfsg-2+b1_i386 + libquvi-dev_0.4.1-1_i386 + libquvi7_0.4.1-1_i386 + libqwt-dev_6.0.0-1.2_i386 + libqwt5-qt4_5.2.2-3_i386 + libqwt5-qt4-dev_5.2.2-3_i386 + libqwt6_6.0.0-1.2_i386 + libqwtplot3d-qt4-0_0.2.7+svn191-7_i386 + libqwtplot3d-qt4-dev_0.2.7+svn191-7_i386 + libqxmlrpc-dev_0.0.svn6-2_i386 + libqxmlrpc1_0.0.svn6-2_i386 + libqxmpp-dev_0.4.92-1_i386 + libqxmpp0_0.4.92-1_i386 + libqxt-berkeley0_0.6.1-6_i386 + libqxt-core0_0.6.1-6_i386 + libqxt-designer0_0.6.1-6_i386 + libqxt-dev_0.6.1-6_i386 + libqxt-gui0_0.6.1-6_i386 + libqxt-network0_0.6.1-6_i386 + libqxt-sql0_0.6.1-6_i386 + libqxt-web0_0.6.1-6_i386 + libqxt-zeroconf0_0.6.1-6_i386 + libqzeitgeist-dbg_0.7.0-1+b1_i386 + libqzeitgeist-dev_0.7.0-1+b1_i386 + libqzeitgeist0_0.7.0-1+b1_i386 + libqzion-dev_0.4.0+lgpl-4_i386 + libqzion0a_0.4.0+lgpl-4_i386 + librabbitmq-dbg_0.0.1.hg216-1_i386 + librabbitmq-dev_0.0.1.hg216-1_i386 + librabbitmq0_0.0.1.hg216-1_i386 + libradare2-0.9_0.9-3_i386 + libradare2-0.9-dbg_0.9-3_i386 + libradare2-dev_0.9-3_i386 + libradius1_0.3.2-14_i386 + libradius1-dev_0.3.2-14_i386 + libradiusclient-ng-dev_0.5.6-1.1_i386 + libradiusclient-ng2_0.5.6-1.1_i386 + libranlip-dev_1.0-4.1_i386 + libranlip1c2_1.0-4.1_i386 + librapi2_0.15-2.1_i386 + librapi2-dbg_0.15-2.1_i386 + librapi2-dev_0.15-2.1_i386 + librapi2-tools_0.15-2.1_i386 + libraptor1_1.4.21-7.1_i386 + libraptor1-dbg_1.4.21-7.1_i386 + libraptor1-dev_1.4.21-7.1_i386 + libraptor2-0_2.0.8-2_i386 + libraptor2-0-dbg_2.0.8-2_i386 + libraptor2-dev_2.0.8-2_i386 + librarian-dev_0.8.1-5_i386 + librarian0_0.8.1-5_i386 + libraspell-ruby1.8_1.2-2_i386 + libraspell-ruby1.9.1_1.2-2_i386 + librasqal3_0.9.29-1_i386 + librasqal3-dbg_0.9.29-1_i386 + librasqal3-dev_0.9.29-1_i386 + librasterlite-dev_1.1~svn11-2_i386 + librasterlite1_1.1~svn11-2_i386 + libraul-dev_0.8.0+dfsg0-0.1+b1_i386 + libraul10_0.8.0+dfsg0-0.1+b1_i386 + libraw-bin_0.14.6-2_i386 + libraw-dev_0.14.6-2_i386 + libraw1394-11_2.0.9-1_i386 + libraw1394-dev_2.0.9-1_i386 + libraw1394-tools_2.0.9-1_i386 + libraw5_0.14.6-2_i386 + librcc-dev_0.2.9-3_i386 + librcc0_0.2.9-3_i386 + librccgtk2-0_0.2.9-3_i386 + librcd-dev_0.1.13-3_i386 + librcd0_0.1.13-3_i386 + librdf-perl_1.0.14.1-1_i386 + librdf-ruby_1.0.14.1-1_i386 + librdf-storage-mysql_1.0.15-1+b1_i386 + librdf-storage-postgresql_1.0.15-1+b1_i386 + librdf-storage-sqlite_1.0.15-1+b1_i386 + librdf0_1.0.15-1+b1_i386 + librdf0-dev_1.0.15-1+b1_i386 + librdkit-dev_201203-3_i386 + librdkit1_201203-3_i386 + librdmacm-dev_1.0.15-1+deb7u1_i386 + librdmacm1_1.0.15-1+deb7u1_i386 + librdmacm1-dbg_1.0.15-1+deb7u1_i386 + librdmawrap2_0.16-6+deb7u1_i386 + librdmawrap2-dev_0.16-6+deb7u1_i386 + libreact-ocaml_0.9.3-1_i386 + libreact-ocaml-dev_0.9.3-1_i386 + libreadline-dev_6.2+dfsg-0.1_i386 + libreadline-gplv2-dev_5.2+dfsg-2~deb7u1_i386 + libreadline-java_0.8.0.1+dfsg-2+b1_i386 + libreadline5_5.2+dfsg-2~deb7u1_i386 + libreadline5-dbg_5.2+dfsg-2~deb7u1_i386 + libreadline6_6.2+dfsg-0.1_i386 + libreadline6-dbg_6.2+dfsg-0.1_i386 + libreadline6-dev_6.2+dfsg-0.1_i386 + libreadonly-xs-perl_1.04-2+b3_i386 + librec-dev_1.5-1_i386 + librec0_1.5-1_i386 + librecad_1.0.2+nolibs-1_i386 + librecode-dev_3.6-20_i386 + librecode0_3.6-20_i386 + libref-array-dev_0.1.3-2_i386 + libref-array1_0.1.3-2_i386 + libregina3_3.6-2_i386 + libregina3-dev_3.6-2_i386 + libregistry-dev_4.0.0~beta2+dfsg1-3.2_i386 + libregistry0_4.0.0~beta2+dfsg1-3.2_i386 + libreins-ocaml-dev_0.1a-4+b1_i386 + libreiser4-dev_1.0.7-6.3_i386 + librelp-dev_1.0.0-1_i386 + librelp0_1.0.0-1_i386 + libremctl-dev_3.2-4_i386 + libremctl-ruby_3.2-4_i386 + libremctl-ruby1.8_3.2-4_i386 + libremctl-ruby1.9.1_3.2-4_i386 + libremctl1_3.2-4_i386 + librenaissance0_0.9.0-4+b3_i386 + librenaissance0-dev_0.9.0-4+b3_i386 + libreoffice_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-base-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-calc_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-core_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dbg_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-dev_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-draw_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-evolution_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-filter-binfilter_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gnome_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-gtk3_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-impress_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-kde_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-math_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-mysql-connector_1.0.1+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-officebean_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-ogltrans_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-pdfimport_1.0.5+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presentation-minimizer_1.0.3+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-presenter-console_1.1.0+LibO3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-report-builder-bin_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-sdbc-postgresql_1:3.5.4+dfsg2-0+deb7u2_i386 + libreoffice-voikko_3.3-3_i386 + libreoffice-writer_1:3.5.4+dfsg2-0+deb7u2_i386 + librep-dbg_0.90.2-1.3_i386 + librep-dev_0.90.2-1.3_i386 + librep9_0.90.2-1.3_i386 + libreplaygain-dev_1.0~r475-1_i386 + libreplaygain1_1.0~r475-1_i386 + libres-ocaml-dev_3.2.0-2+b3_i386 + libresample1_0.1.3-4_i386 + libresample1-dev_0.1.3-4_i386 + libresid-builder-dev_2.1.1-14_i386 + libresid-builder0c2a_2.1.1-14_i386 + libresiprocate-1.8_1.8.5-4_i386 + libresiprocate-1.8-dev_1.8.5-4_i386 + libresiprocate-turn-client-1.8_1.8.5-4_i386 + libresiprocate-turn-client-1.8-dev_1.8.5-4_i386 + librest-0.7-0_0.7.12-3_i386 + librest-0.7-0-dbg_0.7.12-3_i386 + librest-dev_0.7.12-3_i386 + librest-extras-0.7-0_0.7.12-3_i386 + librest-extras-dev_0.7.12-3_i386 + librg-blast-parser-perl_0.02-2_i386 + librhash-dev_1.2.9-8+deb7u1_i386 + librhash-java_1.2.9-8+deb7u1_i386 + librhash-perl_1.2.9-8+deb7u1_i386 + librhash0_1.2.9-8+deb7u1_i386 + librhash0-dbg_1.2.9-8+deb7u1_i386 + librheolef-dev_6.1-2.1_i386 + librheolef1_6.1-2.1_i386 + librhythmbox-core6_2.97-2.1_i386 + librivet-dev_1.8.0-1_i386 + librivet11_1.8.0-1_i386 + librlog-dev_1.4-2_i386 + librlog5_1.4-2_i386 + libroar-compat2_1.0~beta2-3_i386 + libroar-dev_1.0~beta2-3_i386 + libroar-plugins-universal_1.0~beta2-3_i386 + libroar2_1.0~beta2-3_i386 + libroken18-heimdal_1.6~git20120403+dfsg1-2_i386 + libroot-bindings-python-dev_5.34.00-2_i386 + libroot-bindings-python5.34_5.34.00-2_i386 + libroot-bindings-ruby-dev_5.34.00-2_i386 + libroot-bindings-ruby5.34_5.34.00-2_i386 + libroot-core-dev_5.34.00-2_i386 + libroot-core5.34_5.34.00-2_i386 + libroot-geom-dev_5.34.00-2_i386 + libroot-geom5.34_5.34.00-2_i386 + libroot-graf2d-gpad-dev_5.34.00-2_i386 + libroot-graf2d-gpad5.34_5.34.00-2_i386 + libroot-graf2d-graf-dev_5.34.00-2_i386 + libroot-graf2d-graf5.34_5.34.00-2_i386 + libroot-graf2d-postscript-dev_5.34.00-2_i386 + libroot-graf2d-postscript5.34_5.34.00-2_i386 + libroot-graf3d-eve-dev_5.34.00-2_i386 + libroot-graf3d-eve5.34_5.34.00-2_i386 + libroot-graf3d-g3d-dev_5.34.00-2_i386 + libroot-graf3d-g3d5.34_5.34.00-2_i386 + libroot-graf3d-gl-dev_5.34.00-2_i386 + libroot-graf3d-gl5.34_5.34.00-2_i386 + libroot-gui-dev_5.34.00-2_i386 + libroot-gui-ged-dev_5.34.00-2_i386 + libroot-gui-ged5.34_5.34.00-2_i386 + libroot-gui5.34_5.34.00-2_i386 + libroot-hist-dev_5.34.00-2_i386 + libroot-hist-spectrum-dev_5.34.00-2_i386 + libroot-hist-spectrum5.34_5.34.00-2_i386 + libroot-hist5.34_5.34.00-2_i386 + libroot-html-dev_5.34.00-2_i386 + libroot-html5.34_5.34.00-2_i386 + libroot-io-dev_5.34.00-2_i386 + libroot-io-xmlparser-dev_5.34.00-2_i386 + libroot-io-xmlparser5.34_5.34.00-2_i386 + libroot-io5.34_5.34.00-2_i386 + libroot-math-foam-dev_5.34.00-2_i386 + libroot-math-foam5.34_5.34.00-2_i386 + libroot-math-genvector-dev_5.34.00-2_i386 + libroot-math-genvector5.34_5.34.00-2_i386 + libroot-math-mathcore-dev_5.34.00-2_i386 + libroot-math-mathcore5.34_5.34.00-2_i386 + libroot-math-mathmore-dev_5.34.00-2_i386 + libroot-math-mathmore5.34_5.34.00-2_i386 + libroot-math-matrix-dev_5.34.00-2_i386 + libroot-math-matrix5.34_5.34.00-2_i386 + libroot-math-minuit-dev_5.34.00-2_i386 + libroot-math-minuit5.34_5.34.00-2_i386 + libroot-math-mlp-dev_5.34.00-2_i386 + libroot-math-mlp5.34_5.34.00-2_i386 + libroot-math-physics-dev_5.34.00-2_i386 + libroot-math-physics5.34_5.34.00-2_i386 + libroot-math-quadp-dev_5.34.00-2_i386 + libroot-math-quadp5.34_5.34.00-2_i386 + libroot-math-smatrix-dev_5.34.00-2_i386 + libroot-math-smatrix5.34_5.34.00-2_i386 + libroot-math-splot-dev_5.34.00-2_i386 + libroot-math-splot5.34_5.34.00-2_i386 + libroot-math-unuran-dev_5.34.00-2_i386 + libroot-math-unuran5.34_5.34.00-2_i386 + libroot-misc-memstat-dev_5.34.00-2_i386 + libroot-misc-memstat5.34_5.34.00-2_i386 + libroot-misc-minicern-dev_5.34.00-2_i386 + libroot-misc-minicern5.34_5.34.00-2_i386 + libroot-misc-table-dev_5.34.00-2_i386 + libroot-misc-table5.34_5.34.00-2_i386 + libroot-montecarlo-eg-dev_5.34.00-2_i386 + libroot-montecarlo-eg5.34_5.34.00-2_i386 + libroot-montecarlo-vmc-dev_5.34.00-2_i386 + libroot-montecarlo-vmc5.34_5.34.00-2_i386 + libroot-net-auth-dev_5.34.00-2_i386 + libroot-net-auth5.34_5.34.00-2_i386 + libroot-net-bonjour-dev_5.34.00-2_i386 + libroot-net-bonjour5.34_5.34.00-2_i386 + libroot-net-dev_5.34.00-2_i386 + libroot-net-ldap-dev_5.34.00-2_i386 + libroot-net-ldap5.34_5.34.00-2_i386 + libroot-net5.34_5.34.00-2_i386 + libroot-proof-clarens-dev_5.34.00-2_i386 + libroot-proof-clarens5.34_5.34.00-2_i386 + libroot-proof-dev_5.34.00-2_i386 + libroot-proof-proofplayer-dev_5.34.00-2_i386 + libroot-proof-proofplayer5.34_5.34.00-2_i386 + libroot-proof5.34_5.34.00-2_i386 + libroot-roofit-dev_5.34.00-2_i386 + libroot-roofit5.34_5.34.00-2_i386 + libroot-static_5.34.00-2_i386 + libroot-tmva-dev_5.34.00-2_i386 + libroot-tmva5.34_5.34.00-2_i386 + libroot-tree-dev_5.34.00-2_i386 + libroot-tree-treeplayer-dev_5.34.00-2_i386 + libroot-tree-treeplayer5.34_5.34.00-2_i386 + libroot-tree5.34_5.34.00-2_i386 + librostlab-blast0_1.0.0-2_i386 + librostlab-blast0-dbg_1.0.0-2_i386 + librostlab-blast0-dev_1.0.0-2_i386 + librostlab3_1.0.20-1_i386 + librostlab3-dbg_1.0.20-1_i386 + librostlab3-dev_1.0.20-1_i386 + librpcsecgss-dev_0.19-5_i386 + librpcsecgss3_0.19-5_i386 + librplay3_3.3.2-14_i386 + librplay3-dev_3.3.2-14_i386 + librpm-dbg_4.10.0-5+deb7u1_i386 + librpm-dev_4.10.0-5+deb7u1_i386 + librpm3_4.10.0-5+deb7u1_i386 + librpmbuild3_4.10.0-5+deb7u1_i386 + librpmio3_4.10.0-5+deb7u1_i386 + librpmsign1_4.10.0-5+deb7u1_i386 + librra-dbg_0.14-1.2_i386 + librra-dev_0.14-1.2_i386 + librra-tools_0.14-1.2_i386 + librra0_0.14-1.2_i386 + librrd-dev_1.4.7-2_i386 + librrd-ruby1.8_1.4.7-2_i386 + librrd-ruby1.9.1_1.4.7-2_i386 + librrd4_1.4.7-2_i386 + librrds-perl_1.4.7-2_i386 + librsl-dev_1.42-2_i386 + librsl1_1.42-2_i386 + librsskit-dev_0.3-2_i386 + librsskit0_0.3-2_i386 + librsskit0-dbg_0.3-2_i386 + librsvg2-2_2.36.1-2_i386 + librsvg2-bin_2.36.1-2_i386 + librsvg2-common_2.36.1-2_i386 + librsvg2-dbg_2.36.1-2_i386 + librsvg2-dev_2.36.1-2_i386 + librsync-dbg_0.9.7-9_i386 + librsync-dev_0.9.7-9_i386 + librsync1_0.9.7-9_i386 + librtai-dev_3.8.1-4_i386 + librtai1_3.8.1-4_i386 + librtas-dev_1.3.6-1_i386 + librtas1_1.3.6-1_i386 + librtasevent-dev_1.3.6-1_i386 + librtasevent1_1.3.6-1_i386 + librtaudio-dbg_4.0.10~ds0-2_i386 + librtaudio-dev_4.0.10~ds0-2_i386 + librtaudio4_4.0.10~ds0-2_i386 + librtfcomp-dbg_1.1-5+b1_i386 + librtfcomp-dev_1.1-5+b1_i386 + librtfcomp0_1.1-5+b1_i386 + librtfilter-dev_1.1-4_i386 + librtfilter1_1.1-4_i386 + librtfilter1-dbg_1.1-4_i386 + librtmidi-dbg_1.0.15~ds0-2_i386 + librtmidi-dev_1.0.15~ds0-2_i386 + librtmidi1_1.0.15~ds0-2_i386 + librtmp-dev_2.4+20111222.git4e06e21-1_i386 + librtmp0_2.4+20111222.git4e06e21-1_i386 + librubberband-dev_1.3-1.3_i386 + librubberband2_1.3-1.3_i386 + libruby1.8_1.8.7.358-7.1+deb7u1_i386 + libruby1.8-dbg_1.8.7.358-7.1+deb7u1_i386 + libruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libruby1.9.1-dbg_1.9.3.194-8.1+deb7u2_i386 + librudecgi-dev_5.0.0-1_i386 + librudecgi5_5.0.0-1_i386 + libruli-bin_0.33-1.1_i386 + libruli4_0.33-1.1_i386 + libruli4-dev_0.33-1.1_i386 + librxp-dev_1.5.0-1_i386 + librxp0_1.5.0-1_i386 + librxtx-java_2.2pre2-11_i386 + librxtx-java-dbg_2.2pre2-11_i386 + libs3-2_2.0-1_i386 + libs3-dev_2.0-1_i386 + libs3d-dev_0.2.2-8_i386 + libs3d2_0.2.2-8_i386 + libs3dw-dev_0.2.2-8_i386 + libs3dw2_0.2.2-8_i386 + libsaamf3_1.1.4-4.1_i386 + libsaamf3-dev_1.1.4-4.1_i386 + libsac-java-gcj_1.3-6_i386 + libsackpt3_1.1.4-4.1_i386 + libsackpt3-dev_1.1.4-4.1_i386 + libsaclm3_1.1.4-4.1_i386 + libsaclm3-dev_1.1.4-4.1_i386 + libsaevt3_1.1.4-4.1_i386 + libsaevt3-dev_1.1.4-4.1_i386 + libsafe-hole-perl_0.13-1+b1_i386 + libsage-dev_0.2.0-4.1_i386 + libsage2_0.2.0-4.1_i386 + libsalck3_1.1.4-4.1_i386 + libsalck3-dev_1.1.4-4.1_i386 + libsam-dev_1.4.2-3_i386 + libsam4_1.4.2-3_i386 + libsamba-credentials-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-credentials0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-hostconfig0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-policy0_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamba-util0_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsamdb0_4.0.0~beta2+dfsg1-3.2_i386 + libsaml2-dev_2.4.3-4_i386 + libsaml7_2.4.3-4_i386 + libsampleicc-dev_1.6.4-1+b1_i386 + libsampleicc2_1.6.4-1+b1_i386 + libsamplerate-ocaml_0.1.1-1+b3_i386 + libsamplerate-ocaml-dev_0.1.1-1+b3_i386 + libsamplerate0_0.1.8-5_i386 + libsamplerate0-dev_0.1.8-5_i386 + libsamsg4_1.1.4-4.1_i386 + libsamsg4-dev_1.1.4-4.1_i386 + libsane_1.0.22-7.4_i386 + libsane-common_1.0.22-7.4_i386 + libsane-dbg_1.0.22-7.4_i386 + libsane-dev_1.0.22-7.4_i386 + libsane-extras_1.0.22.2_i386 + libsane-extras-common_1.0.22.2_i386 + libsane-extras-dbg_1.0.22.2_i386 + libsane-extras-dev_1.0.22.2_i386 + libsane-hpaio_3.12.6-3.1+deb7u1_i386 + libsane-perl_0.05-2_i386 + libsanlock-client1_2.2-2_i386 + libsanlock-dev_2.2-2_i386 + libsary-dev_1:1.2.0-2.1_i386 + libsary-ruby1.8_1.2.0-3.1_i386 + libsary10_1:1.2.0-2.1_i386 + libsasl2-2_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-dev_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-ldap_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-otp_2.1.25.dfsg1-6+deb7u1_i386 + libsasl2-modules-sql_2.1.25.dfsg1-6+deb7u1_i386 + libsatmr3_1.1.4-4.1_i386 + libsatmr3-dev_1.1.4-4.1_i386 + libsaxon-java-gcj_1:6.5.5-8_i386 + libsb2_2.2.4-1debian1_i386 + libsbjson-dev_2.3.2-2_i386 + libsbjson2.3_2.3.2-2_i386 + libsbsms-dev_2.0.1-1_i386 + libsbsms10_2.0.1-1_i386 + libsbuf-dev_9.0+ds1-4_i386 + libsbuf6_9.0+ds1-4_i386 + libsbuild-dev_1.6.4-4_i386 + libsc-dev_2.3.1-14_i386 + libsc7_2.3.1-14_i386 + libscalapack-mpi-dev_1.8.0-9_i386 + libscalapack-mpi1_1.8.0-9_i386 + libscalapack-pvm-dev_1.8.0-9_i386 + libscalapack-pvm1_1.8.0-9_i386 + libscalar-list-utils-perl_1:1.25-1_i386 + libscalar-number-perl_0.006-1+b2_i386 + libscalar-string-perl_0.002-1+b2_i386 + libscalar-util-numeric-perl_0.22-1+b2_i386 + libscalc-dev_0.2.4-1_i386 + libscalc0_0.2.4-1_i386 + libscamperfile0_20111202b-1_i386 + libscamperfile0-dev_20111202b-1_i386 + libschroedinger-1.0-0_1.0.11-2_i386 + libschroedinger-dev_1.0.11-2_i386 + libschroedinger-ocaml_0.1.0-1+b3_i386 + libschroedinger-ocaml-dev_0.1.0-1+b3_i386 + libscilab-java_5.3.3-10_i386 + libscilab2-java_5.3.3-10_i386 + libscim-dev_1.4.13-5_i386 + libscim8c2a_1.4.13-5_i386 + libsclang1_1:3.4.5-1wheezy1_i386 + libscm-dev_5e5-3.2_i386 + libscope-upper-perl_0.18-1+b1_i386 + libscotch-5.1_5.1.12b.dfsg-1.2_i386 + libscotch-dbg_5.1.12b.dfsg-1.2_i386 + libscotch-dev_5.1.12b.dfsg-1.2_i386 + libscotchmetis-dev_5.1.12b.dfsg-1.2_i386 + libscotchparmetis-dev_5.1.12b.dfsg-1.2_i386 + libscsynth1_1:3.4.5-1wheezy1_i386 + libsctp-dev_1.0.11+dfsg-2_i386 + libsctp1_1.0.11+dfsg-2_i386 + libsdl-console_2.1-3_i386 + libsdl-console-dev_2.1-3_i386 + libsdl-gfx1.2-4_2.0.23-3_i386 + libsdl-gfx1.2-dev_2.0.23-3_i386 + libsdl-gst_3.2.4-2_i386 + libsdl-image1.2_1.2.12-2_i386 + libsdl-image1.2-dev_1.2.12-2_i386 + libsdl-mixer1.2_1.2.12-3_i386 + libsdl-mixer1.2-dev_1.2.12-3_i386 + libsdl-net1.2_1.2.8-2_i386 + libsdl-net1.2-dev_1.2.8-2_i386 + libsdl-ocaml_0.9.0-1_i386 + libsdl-ocaml-dev_0.9.0-1_i386 + libsdl-pango-dev_0.1.2-6_i386 + libsdl-pango1_0.1.2-6_i386 + libsdl-perl_2.540-1_i386 + libsdl-sge_030809dfsg-3_i386 + libsdl-sge-dev_030809dfsg-3_i386 + libsdl-sound1.2_1.0.3-6_i386 + libsdl-sound1.2-dev_1.0.3-6_i386 + libsdl-stretch-0-3_0.3.1-3_i386 + libsdl-stretch-dev_0.3.1-3_i386 + libsdl-ttf2.0-0_2.0.11-2_i386 + libsdl-ttf2.0-dev_2.0.11-2_i386 + libsdl1.2-dbg_1.2.15-5_i386 + libsdl1.2-dev_1.2.15-5_i386 + libsdl1.2debian_1.2.15-5_i386 + libsdp1_1.1.99-2.1_i386 + libsdpa-dev_7.3.8+dfsg-1_i386 + libsearch-xapian-perl_1.2.10.0-1_i386 + libsearchclient-dev_0.7.7-3_i386 + libsearchclient0_0.7.7-3_i386 + libseaudit-dev_3.3.7-3_i386 + libseaudit4_3.3.7-3_i386 + libseed-gtk3-0_3.2.0-2_i386 + libseed-gtk3-dev_3.2.0-2_i386 + libsefs-dev_3.3.7-3_i386 + libsefs4_3.3.7-3_i386 + libselinux1_2.1.9-5_i386 + libselinux1-dev_2.1.9-5_i386 + libsemanage1_2.1.6-6_i386 + libsemanage1-dev_2.1.6-6_i386 + libsendmail-milter-perl_0.18-7+b4_i386 + libsensors-applet-plugin-dev_3.0.0-0.2_i386 + libsensors-applet-plugin0_3.0.0-0.2_i386 + libsensors4_1:3.3.2-2+deb7u1_i386 + libsensors4-dev_1:3.3.2-2+deb7u1_i386 + libsepol1_2.1.4-3_i386 + libsepol1-dev_2.1.4-3_i386 + libserd-0-0_0.14.0~dfsg0-2_i386 + libserd-dev_0.14.0~dfsg0-2_i386 + libserf-dev_1.1.0-2_i386 + libserf1_1.1.0-2_i386 + libserf1-dbg_1.1.0-2_i386 + libservice-wrapper-jni_3.5.3+repack-0+nmu1_i386 + libset-object-perl_1.27-1+b2_i386 + libsetools-jni_3.3.7-3_i386 + libsetools-tcl_3.3.7-3_i386 + libsexplib-camlp4-dev_7.0.4-2_i386 + libsexy-dev_0.1.11-2+b1_i386 + libsexy2_0.1.11-2+b1_i386 + libsfml-audio1.6_1.6+dfsg2-2_i386 + libsfml-dev_1.6+dfsg2-2_i386 + libsfml-graphics1.6_1.6+dfsg2-2_i386 + libsfml-network1.6_1.6+dfsg2-2_i386 + libsfml-system1.6_1.6+dfsg2-2_i386 + libsfml-window1.6_1.6+dfsg2-2_i386 + libsfml1.6-dbg_1.6+dfsg2-2_i386 + libsfst1-1.2-0_1.2.0-1.2_i386 + libsfst1-1.2-0-dev_1.2.0-1.2_i386 + libsgml-parser-opensp-perl_0.994-2+b1_i386 + libsgutils2-2_1.33-1_i386 + libsgutils2-dev_1.33-1_i386 + libsha-ocaml_1.7-2+b2_i386 + libsha-ocaml-dev_1.7-2+b2_i386 + libshairport-dev_1.2.1~git20120110.aeb4987-2_i386 + libshairport1_1.2.1~git20120110.aeb4987-2_i386 + libshevek-dev_1.3-1_i386 + libshevek0_1.3-1_i386 + libshhmsg1_1.4.1-4.1_i386 + libshhmsg1-dev_1.4.1-4.1_i386 + libshhopt1_1.1.7-2.1_i386 + libshhopt1-dev_1.1.7-2.1_i386 + libshiboken-dev_1.1.1-1_i386 + libshiboken-py3-1.1_1.1.1-1_i386 + libshiboken1.1_1.1.1-1_i386 + libshibsp-dev_2.4.3+dfsg-5+b1_i386 + libshibsp5_2.4.3+dfsg-5+b1_i386 + libshisa-dev_1.0.1-2_i386 + libshisa0_1.0.1-2_i386 + libshishi-dev_1.0.1-2_i386 + libshishi0_1.0.1-2_i386 + libshout-ocaml_0.2.7-1+b3_i386 + libshout-ocaml-dev_0.2.7-1+b3_i386 + libshout3_2.2.2-8_i386 + libshout3-dev_2.2.2-8_i386 + libshp-dev_1.2.10-7_i386 + libshp1_1.2.10-7_i386 + libshr-glib-dbg_2011.03.08.2~git20110930-2_i386 + libshr-glib-dev_2011.03.08.2~git20110930-2_i386 + libshr-glib0_2011.03.08.2~git20110930-2_i386 + libsidl-1.4.0_1.4.0.dfsg-8.1_i386 + libsidl-dev_1.4.0.dfsg-8.1_i386 + libsidplay1_1.36.59-5_i386 + libsidplay1-dev_1.36.59-5_i386 + libsidplay2_2.1.1-14_i386 + libsidplay2-dev_2.1.1-14_i386 + libsidplayfp_0.3.5-1_i386 + libsidplayfp-dbg_0.3.5-1_i386 + libsidplayfp-dev_0.3.5-1_i386 + libsidutils-dev_2.1.1-14_i386 + libsidutils0_2.1.1-14_i386 + libsieve2-1_2.2.6-1.1_i386 + libsieve2-dev_2.2.6-1.1_i386 + libsigc++-1.2-5c2_1.2.7-2_i386 + libsigc++-1.2-dev_1.2.7-2_i386 + libsigc++-2.0-0c2a_2.2.10-0.2_i386 + libsigc++-2.0-dev_2.2.10-0.2_i386 + libsigc++-dev_1.0.4-9.4_i386 + libsigc++0c2_1.0.4-9.4_i386 + libsignatures-perl_0.06-1_i386 + libsigrok0_0.1.0-2_i386 + libsigrok0-dev_0.1.0-2_i386 + libsigrokdecode0_0.1.0-2_i386 + libsigrokdecode0-dev_0.1.0-2_i386 + libsigsegv-dev_2.9-4_i386 + libsigsegv2_2.9-4_i386 + libsikuli-script-jni_1.0~x~rc3.tesseract3-dfsg1-5_i386 + libsilly_0.1.0-3_i386 + libsilly-dev_0.1.0-3_i386 + libsilo-bin_4.8-13_i386 + libsilo-dev_4.8-13_i386 + libsiloh5-0_4.8-13_i386 + libsimage-dev_1.7.0-1.1+b1_i386 + libsimage20_1.7.0-1.1+b1_i386 + libsimplelist0_0.3.4-2_i386 + libsimplelist0-dev_0.3.4-2_i386 + libsipwitch-dev_1.2.4-1_i386 + libsipwitch1_1.2.4-1_i386 + libsipwitch1-dbg_1.2.4-1_i386 + libsiscone-dev_2.0.5-1_i386 + libsiscone-spherical-dev_2.0.5-1_i386 + libsiscone-spherical0_2.0.5-1_i386 + libsiscone0_2.0.5-1_i386 + libskk-dbg_0.0.12-3_i386 + libskk-dev_0.0.12-3_i386 + libskk0_0.0.12-3_i386 + libskstream-0.3-6_0.3.8-1_i386 + libskstream-0.3-6-dbg_0.3.8-1_i386 + libskstream-0.3-dev_0.3.8-1_i386 + libsl0-heimdal_1.6~git20120403+dfsg1-2_i386 + libslang2_2.2.4-15_i386 + libslang2-dev_2.2.4-15_i386 + libslang2-modules_2.2.4-15_i386 + libslang2-pic_2.2.4-15_i386 + libslepc3.2_3.2-p5-1_i386 + libslepc3.2-dbg_3.2-p5-1_i386 + libslepc3.2-dev_3.2-p5-1_i386 + libslice34_3.4.2-8.2_i386 + libslp-dev_1.2.1-9_i386 + libslp1_1.2.1-9_i386 + libslurm-dev_2.3.4-2+b1_i386 + libslurm-perl_2.3.4-2+b1_i386 + libslurm23_2.3.4-2+b1_i386 + libslurmdb-dev_2.3.4-2+b1_i386 + libslurmdb-perl_2.3.4-2+b1_i386 + libslurmdb23_2.3.4-2+b1_i386 + libslv2-9_0.6.6+dfsg1-2_i386 + libslv2-dev_0.6.6+dfsg1-2_i386 + libsm-dev_2:1.2.1-2_i386 + libsm6_2:1.2.1-2_i386 + libsm6-dbg_2:1.2.1-2_i386 + libsmbclient_2:3.6.6-6+deb7u2_i386 + libsmbclient-dev_2:3.6.6-6+deb7u2_i386 + libsmbclient-raw-dev_4.0.0~beta2+dfsg1-3.2_i386 + libsmbclient-raw0_4.0.0~beta2+dfsg1-3.2_i386 + libsmbios-bin_2.0.3.dfsg-1.1_i386 + libsmbios-dev_2.0.3.dfsg-1.1_i386 + libsmbios2_2.0.3.dfsg-1.1_i386 + libsmf-dev_1.3-2_i386 + libsmf0_1.3-2_i386 + libsmi2-dbg_0.4.8+dfsg2-7_i386 + libsmi2-dev_0.4.8+dfsg2-7_i386 + libsmi2ldbl_0.4.8+dfsg2-7_i386 + libsmlnj-smlnj_110.74-2_i386 + libsmltk0_3.4.0.16.7-1_i386 + libsmokeakonadi3_4:4.8.4-1_i386 + libsmokeattica3_4:4.8.4-1_i386 + libsmokebase3_4:4.8.4-1_i386 + libsmokekde-dev_4:4.8.4-1_i386 + libsmokekde4-dbg_4:4.8.4-1_i386 + libsmokekdecore4-3_4:4.8.4-1_i386 + libsmokekdeui4-3_4:4.8.4-1_i386 + libsmokekfile3_4:4.8.4-1_i386 + libsmokekhtml3_4:4.8.4-1_i386 + libsmokekio3_4:4.8.4-1_i386 + libsmokeknewstuff2-3_4:4.8.4-1_i386 + libsmokeknewstuff3-3_4:4.8.4-1_i386 + libsmokekparts3_4:4.8.4-1_i386 + libsmokektexteditor3_4:4.8.4-1_i386 + libsmokekutils3_4:4.8.4-1_i386 + libsmokenepomuk3_4:4.8.4-1_i386 + libsmokenepomukquery3_4:4.8.4-1_i386 + libsmokeokular3_4:4.8.4-1_i386 + libsmokephonon3_4:4.8.4-1_i386 + libsmokeplasma3_4:4.8.4-1_i386 + libsmokeqimageblitz3_4:4.8.4-1_i386 + libsmokeqsci3_4:4.8.4-1_i386 + libsmokeqt3support4-3_4:4.8.4-1_i386 + libsmokeqt4-dbg_4:4.8.4-1_i386 + libsmokeqt4-dev_4:4.8.4-1_i386 + libsmokeqtcore4-3_4:4.8.4-1_i386 + libsmokeqtdbus4-3_4:4.8.4-1_i386 + libsmokeqtdeclarative4-3_4:4.8.4-1_i386 + libsmokeqtgui4-3_4:4.8.4-1_i386 + libsmokeqthelp4-3_4:4.8.4-1_i386 + libsmokeqtnetwork4-3_4:4.8.4-1_i386 + libsmokeqtopengl4-3_4:4.8.4-1_i386 + libsmokeqtscript4-3_4:4.8.4-1_i386 + libsmokeqtsql4-3_4:4.8.4-1_i386 + libsmokeqtsvg4-3_4:4.8.4-1_i386 + libsmokeqttest4-3_4:4.8.4-1_i386 + libsmokeqtuitools4-3_4:4.8.4-1_i386 + libsmokeqtwebkit4-3_4:4.8.4-1_i386 + libsmokeqtxml4-3_4:4.8.4-1_i386 + libsmokeqtxmlpatterns4-3_4:4.8.4-1_i386 + libsmokesolid3_4:4.8.4-1_i386 + libsmokesoprano3_4:4.8.4-1_i386 + libsmokesopranoclient3_4:4.8.4-1_i386 + libsmokesopranoserver3_4:4.8.4-1_i386 + libsmpeg-dev_0.4.5+cvs20030824-5_i386 + libsmpeg0_0.4.5+cvs20030824-5_i386 + libsnacc-dev_1.3.1-1_i386 + libsnacc0c2_1.3.1-1_i386 + libsnack2_2.2.10-dfsg1-12.1_i386 + libsnack2-alsa_2.2.10-dfsg1-12.1_i386 + libsnack2-dev_2.2.10-dfsg1-12.1_i386 + libsnappy-dev_1.0.5-2_i386 + libsnappy1_1.0.5-2_i386 + libsndfile1_1.0.25-5_i386 + libsndfile1-dev_1.0.25-5_i386 + libsndobj-dev_2.6.6.1-3_i386 + libsndobj2c2_2.6.6.1-3_i386 + libsnmp-dev_5.4.3~dfsg-2.7_i386 + libsnmp-perl_5.4.3~dfsg-2.7_i386 + libsnmp-python_5.4.3~dfsg-2.7_i386 + libsnmp15_5.4.3~dfsg-2.7_i386 + libsnmp15-dbg_5.4.3~dfsg-2.7_i386 + libsnmpkit-dev_0.9-16_i386 + libsnmpkit2c2a_0.9-16_i386 + libsocialweb-client-dev_0.25.20-2.1_i386 + libsocialweb-client2_0.25.20-2.1_i386 + libsocialweb-client2-dbg_0.25.20-2.1_i386 + libsocialweb-dev_0.25.20-2.1_i386 + libsocialweb-service_0.25.20-2.1_i386 + libsocialweb0_0.25.20-2.1_i386 + libsocialweb0-dbg_0.25.20-2.1_i386 + libsocket-getaddrinfo-perl_0.22-1_i386 + libsocket-linux-perl_0.01-1+b1_i386 + libsocket-multicast6-perl_0.04-1+b2_i386 + libsocket-perl_2.002-1_i386 + libsocket6-perl_0.23-1+b2_i386 + libsocks4_4.3.beta2-18_i386 + libsocksd0_1.1.19.dfsg-3+b3_i386 + libsocksd0-dev_1.1.19.dfsg-3+b3_i386 + libsofa-c-dev_2012.03.01-1_i386 + libsofa-c0_2012.03.01-1_i386 + libsofa1_1.0~beta4-7_i386 + libsofa1-dev_1.0~beta4-7_i386 + libsofia-sip-ua-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib-dev_1.12.11+20110422-1_i386 + libsofia-sip-ua-glib3_1.12.11+20110422-1_i386 + libsofia-sip-ua0_1.12.11+20110422-1_i386 + libsofthsm_1.3.3-2_i386 + libsofthsm-dev_1.3.3-2_i386 + libsoil-dev_1.07~20080707.dfsg-2_i386 + libsoil1_1.07~20080707.dfsg-2_i386 + libsoil1-dbg_1.07~20080707.dfsg-2_i386 + libsolid4_4:4.8.4-4_i386 + libsolidcontrol4abi2_4:4.8.4-6_i386 + libsolidcontrolifaces4abi2_4:4.8.4-6_i386 + libsombok-dev_2.2.1-1_i386 + libsombok3_2.2.1-1_i386 + libsonic-dev_0.1.17-1.1_i386 + libsonic0_0.1.17-1.1_i386 + libsope-dev_1.3.16-1_i386 + libsope1_1.3.16-1_i386 + libsope1-dbg_1.3.16-1_i386 + libsoprano-dbg_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano-dev_2.7.6+dfsg.1-2wheezy1_i386 + libsoprano4_2.7.6+dfsg.1-2wheezy1_i386 + libsoqt-dev-common_1.5.0-2_i386 + libsoqt4-20_1.5.0-2_i386 + libsoqt4-dev_1.5.0-2_i386 + libsord-0-0_0.8.0~dfsg0-1_i386 + libsord-dev_0.8.0~dfsg0-1_i386 + libsort-key-perl_1.32-1_i386 + libsort-key-top-perl_0.06-1_i386 + libsoundgen-dbg_0.6-4_i386 + libsoundgen-dev_0.6-4_i386 + libsoundgen0_0.6-4_i386 + libsoundtouch-dev_1.6.0-3_i386 + libsoundtouch-ocaml_0.1.7-1+b1_i386 + libsoundtouch-ocaml-dev_0.1.7-1+b1_i386 + libsoundtouch0_1.6.0-3_i386 + libsoundtouch0-dbg_1.6.0-3_i386 + libsoup-gnome2.4-1_2.38.1-2_i386 + libsoup-gnome2.4-dev_2.38.1-2_i386 + libsoup2.4-1_2.38.1-2_i386 + libsoup2.4-dbg_2.38.1-2_i386 + libsoup2.4-dev_2.38.1-2_i386 + libsoupcutter-dev_1.1.7-1.2_i386 + libsoupcutter0_1.1.7-1.2_i386 + libsource-highlight-dev_3.1.6-1.1_i386 + libsource-highlight4_3.1.6-1.1_i386 + libsox-dev_14.4.0-3_i386 + libsox-fmt-all_14.4.0-3_i386 + libsox-fmt-alsa_14.4.0-3_i386 + libsox-fmt-ao_14.4.0-3_i386 + libsox-fmt-base_14.4.0-3_i386 + libsox-fmt-ffmpeg_14.4.0-3_i386 + libsox-fmt-mp3_14.4.0-3_i386 + libsox-fmt-oss_14.4.0-3_i386 + libsox-fmt-pulse_14.4.0-3_i386 + libsox2_14.4.0-3_i386 + libsp-gxmlcpp-dev_1.0.20040603-5_i386 + libsp-gxmlcpp1_1.0.20040603-5_i386 + libsp1-dev_1.3.4-1.2.1-47.1+b1_i386 + libsp1c2_1.3.4-1.2.1-47.1+b1_i386 + libspandsp-dev_0.0.6~pre20-3.1_i386 + libspandsp2_0.0.6~pre20-3.1_i386 + libsparskit-dev_2.0.0-2_i386 + libsparskit2.0_2.0.0-2_i386 + libspatialindex-dev_1.7.0-1_i386 + libspatialindex1_1.7.0-1_i386 + libspatialite-dev_3.0.0~beta20110817-3+deb7u1_i386 + libspatialite3_3.0.0~beta20110817-3+deb7u1_i386 + libspctag-dev_0.2-1_i386 + libspctag1_0.2-1_i386 + libspectre-dev_0.2.7-2_i386 + libspectre1_0.2.7-2_i386 + libspectre1-dbg_0.2.7-2_i386 + libspectrum-dev_1.0.0-3_i386 + libspectrum8_1.0.0-3_i386 + libspeechd-dev_0.7.1-6.2_i386 + libspeechd2_0.7.1-6.2_i386 + libspeex-dbg_1.2~rc1-7_i386 + libspeex-dev_1.2~rc1-7_i386 + libspeex-ocaml_0.2.0-1+b3_i386 + libspeex-ocaml-dev_0.2.0-1+b3_i386 + libspeex1_1.2~rc1-7_i386 + libspeexdsp-dev_1.2~rc1-7_i386 + libspeexdsp1_1.2~rc1-7_i386 + libspf2-2_1.2.9-7_i386 + libspf2-2-dbg_1.2.9-7_i386 + libspf2-dev_1.2.9-7_i386 + libsphere-dev_3.2-4_i386 + libsphere0d_3.2-4_i386 + libspice-client-glib-2.0-1_0.12-5_i386 + libspice-client-glib-2.0-dev_0.12-5_i386 + libspice-client-gtk-2.0-1_0.12-5_i386 + libspice-client-gtk-2.0-dev_0.12-5_i386 + libspice-client-gtk-3.0-1_0.12-5_i386 + libspice-client-gtk-3.0-dev_0.12-5_i386 + libspice-server-dev_0.11.0-1+deb7u1_i386 + libspice-server1_0.11.0-1+deb7u1_i386 + libspiro-dev_20071029-2_i386 + libspiro0_20071029-2_i386 + libspiro0-dbg_20071029-2_i386 + libspnav-dev_0.2.2-1_i386 + libspnav0_0.2.2-1_i386 + libspooles-dev_2.2-9_i386 + libspooles2.2_2.2-9_i386 + libsprng2_2.0a-8_i386 + libsprng2-dev_2.0a-8_i386 + libsqlexpr-ocaml_0.4.1-1+b5_i386 + libsqlexpr-ocaml-dev_0.4.1-1+b5_i386 + libsqlheavy-dev_0.1.1-1_i386 + libsqlheavy0.1-0_0.1.1-1_i386 + libsqlheavy0.1-dbg_0.1.1-1_i386 + libsqlheavygtk-dev_0.1.1-1_i386 + libsqlheavygtk0.1-0_0.1.1-1_i386 + libsqlite-tcl_2.8.17-7_i386 + libsqlite0_2.8.17-7_i386 + libsqlite0-dev_2.8.17-7_i386 + libsqlite3-0_3.7.13-1+deb7u1_i386 + libsqlite3-0-dbg_3.7.13-1+deb7u1_i386 + libsqlite3-dev_3.7.13-1+deb7u1_i386 + libsqlite3-gst_3.2.4-2_i386 + libsqlite3-mod-blobtoxy_0.91-3_i386 + libsqlite3-mod-impexp_0.91-3_i386 + libsqlite3-ocaml_1.6.1-1+b1_i386 + libsqlite3-ocaml-dev_1.6.1-1+b1_i386 + libsqlite3-tcl_3.7.13-1+deb7u1_i386 + libsqliteodbc_0.91-3_i386 + libsquizz_0.99a-2_i386 + libsquizz-dev_0.99a-2_i386 + libsratom-0-0_0.2.0~dfsg0-1_i386 + libsratom-dev_0.2.0~dfsg0-1_i386 + libsrecord-dev_1.58-1+b1_i386 + libsrecord0_1.58-1+b1_i386 + libsrecord0-dbg_1.58-1+b1_i386 + libsrf-dev_0.1+dfsg-1_i386 + libsrtp0_1.4.4+20100615~dfsg-2+deb7u1_i386 + libsrtp0-dev_1.4.4+20100615~dfsg-2+deb7u1_i386 + libss2_1.42.5-1.1_i386 + libss2-dbg_1.42.5-1.1_i386 + libss7-1_1.0.2-3_i386 + libss7-dbg_1.0.2-3_i386 + libss7-dev_1.0.2-3_i386 + libsscm-dev_0.8.5-2.1_i386 + libsscm3_0.8.5-2.1_i386 + libssh-4_0.5.4-1_i386 + libssh-dbg_0.5.4-1_i386 + libssh-dev_0.5.4-1_i386 + libssh2-1_1.4.2-1.1_i386 + libssh2-1-dbg_1.4.2-1.1_i386 + libssh2-1-dev_1.4.2-1.1_i386 + libssh2-php_0.11.3-0.1+b2_i386 + libssl-dev_1.0.1e-2+deb7u4_i386 + libssl-ocaml_0.4.6-1_i386 + libssl-ocaml-dev_0.4.6-1_i386 + libssl1.0.0_1.0.1e-2+deb7u4_i386 + libssl1.0.0-dbg_1.0.1e-2+deb7u4_i386 + libsslcommon2_0.16-6+deb7u1_i386 + libsslcommon2-dev_0.16-6+deb7u1_i386 + libssreflect-ocaml_1.3pl4-1_i386 + libssreflect-ocaml-dev_1.3pl4-1_i386 + libsss-sudo-dev_1.8.4-2_i386 + libsss-sudo0_1.8.4-2_i386 + libst-dev_1.9-3_i386 + libst1_1.9-3_i386 + libstaden-read-dev_1.12.4-1_i386 + libstaden-read1_1.12.4-1_i386 + libstarlink-ast-dev_7.0.4+dfsg-1_i386 + libstarlink-ast-err0_7.0.4+dfsg-1_i386 + libstarlink-ast-grf3d0_7.0.4+dfsg-1_i386 + libstarlink-ast0_7.0.4+dfsg-1_i386 + libstarlink-pal-dev_0.1.0-1_i386 + libstarlink-pal0_0.1.0-1_i386 + libstarpu-1.0_1.0.1+dfsg-1_i386 + libstarpu-dev_1.0.1+dfsg-1_i386 + libstarpufft-1.0_1.0.1+dfsg-1_i386 + libstarpumpi-1.0_1.0.1+dfsg-1_i386 + libstartup-notification0_0.12-1_i386 + libstartup-notification0-dev_0.12-1_i386 + libstatgrab-dev_0.17-1_i386 + libstatgrab6_0.17-1_i386 + libstdc++5_1:3.3.6-25_i386 + libstdc++6_4.7.2-5_i386 + libstdc++6-4.4-dbg_4.4.7-2_i386 + libstdc++6-4.4-dev_4.4.7-2_i386 + libstdc++6-4.4-pic_4.4.7-2_i386 + libstdc++6-4.6-dbg_4.6.3-14_i386 + libstdc++6-4.6-dev_4.6.3-14_i386 + libstdc++6-4.6-pic_4.6.3-14_i386 + libstdc++6-4.7-dbg_4.7.2-5_i386 + libstdc++6-4.7-dev_4.7.2-5_i386 + libstdc++6-4.7-pic_4.7.2-5_i386 + libstemmer-dev_0+svn546-2_i386 + libstemmer-tools_0+svn546-2_i386 + libstemmer0d_0+svn546-2_i386 + libstemmer0d-dbg_0+svn546-2_i386 + libsteptalk-dev_0.10.0-5+b1_i386 + libsteptalk0_0.10.0-5+b1_i386 + libstfl-dev_0.22-1+b1_i386 + libstfl-perl_0.22-1+b1_i386 + libstfl-ruby1.8_0.22-1+b1_i386 + libstfl-ruby1.9.1_0.22-1+b1_i386 + libstfl-spl_0.22-1+b1_i386 + libstfl0_0.22-1+b1_i386 + libstk0-dev_4.4.3-2_i386 + libstk0c2a_4.4.3-2_i386 + libstlport4.6-dev_4.6.2-7_i386 + libstlport4.6ldbl_4.6.2-7_i386 + libstonith1_1.0.9+hg2665-1_i386 + libstonith1-dev_1.0.9+hg2665-1_i386 + libstonithd1_1.1.7-1_i386 + libstonithd1-dev_1.1.7-1_i386 + libstreamanalyzer-dev_0.7.7-3_i386 + libstreamanalyzer0_0.7.7-3_i386 + libstreams-dev_0.7.7-3_i386 + libstreams0_0.7.7-3_i386 + libstrigihtmlgui-dev_0.7.7-3_i386 + libstrigihtmlgui0_0.7.7-3_i386 + libstrigiqtdbusclient-dev_0.7.7-3_i386 + libstrigiqtdbusclient0_0.7.7-3_i386 + libstring-approx-perl_3.26-1+b2_i386 + libstring-crc32-perl_1.4-2+b3_i386 + libstring-similarity-perl_1.04-1_i386 + libstroke0_0.5.1-6_i386 + libstroke0-dev_0.5.1-6_i386 + libstrongswan_4.5.2-1.5+deb7u2_i386 + libstxxl-dev_1.3.1-4_i386 + libstxxl1_1.3.1-4_i386 + libstxxl1-dbg_1.3.1-4_i386 + libstyx2_1.8.0-1.1_i386 + libsub-current-perl_0.02-1+b2_i386 + libsub-identify-perl_0.04-1+b2_i386 + libsub-name-perl_0.05-1+b2_i386 + libsub-prototype-perl_0.02-1+b2_i386 + libsublime-dev_1.3.1-2_i386 + libsublime5_1.3.1-2_i386 + libsubtitleeditor-dev_0.33.0-1_i386 + libsubtitleeditor0_0.33.0-1_i386 + libsubunit-dev_0.0.8+bzr176-1_i386 + libsubunit0_0.0.8+bzr176-1_i386 + libsugarext-dbg_0.96.1-2_i386 + libsugarext-dev_0.96.1-2_i386 + libsugarext0_0.96.1-2_i386 + libsuil-0-0_0.6.4~dfsg0-3_i386 + libsuil-dev_0.6.4~dfsg0-3_i386 + libsuitesparse-dbg_1:3.4.0-3_i386 + libsuitesparse-dev_1:3.4.0-3_i386 + libsundials-cvode1_2.5.0-3_i386 + libsundials-cvodes2_2.5.0-3_i386 + libsundials-ida2_2.5.0-3_i386 + libsundials-idas0_2.5.0-3_i386 + libsundials-kinsol1_2.5.0-3_i386 + libsundials-nvecserial0_2.5.0-3_i386 + libsundials-serial_2.5.0-3_i386 + libsundials-serial-dev_2.5.0-3_i386 + libsunpinyin-dev_2.0.3+git20120607-1_i386 + libsunpinyin3_2.0.3+git20120607-1_i386 + libsunpinyin3-dbg_2.0.3+git20120607-1_i386 + libsuperlu3_3.0+20070106-3_i386 + libsuperlu3-dev_3.0+20070106-3_i386 + libsvga1_1:1.4.3-33_i386 + libsvga1-dev_1:1.4.3-33_i386 + libsvm-dev_3.12-1_i386 + libsvm-tools_3.12-1_i386 + libsvm3_3.12-1_i386 + libsvn-dev_1.6.17dfsg-4+deb7u4_i386 + libsvn-java_1.6.17dfsg-4+deb7u4_i386 + libsvn-perl_1.6.17dfsg-4+deb7u4_i386 + libsvn-ruby1.8_1.6.17dfsg-4+deb7u4_i386 + libsvn1_1.6.17dfsg-4+deb7u4_i386 + libsvncpp-dev_0.12.0dfsg-6_i386 + libsvncpp3_0.12.0dfsg-6_i386 + libsvnqt-dev_1.5.5-4.1_i386 + libsvnqt6_1.5.5-4.1_i386 + libsvrcore-dev_1:4.0.4-15_i386 + libsvrcore0_1:4.0.4-15_i386 + libsvrcore0-dbg_1:4.0.4-15_i386 + libswami-dev_2.0.0+svn389-2_i386 + libswami0_2.0.0+svn389-2_i386 + libswe-dev_1.77.00.0005-2_i386 + libswe0_1.77.00.0005-2_i386 + libswf-perl_1:0.4.4-1.1_i386 + libswiften-dev_2.0~beta1+dev47-1_i386 + libswiften2_2.0~beta1+dev47-1_i386 + libsword-dbg_1.6.2+dfsg-5_i386 + libsword-dev_1.6.2+dfsg-5_i386 + libsword-utils_1.6.2+dfsg-5_i386 + libsword9_1.6.2+dfsg-5_i386 + libswscale-dev_6:0.8.9-1_i386 + libswscale2_6:0.8.9-1_i386 + libswt-cairo-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-glx-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gnome-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-gtk-3-java_3.8.0~rc4-1_i386 + libswt-gtk-3-java-gcj_3.8.0~rc4-1_i386 + libswt-gtk-3-jni_3.8.0~rc4-1_i386 + libswt-webkit-gtk-3-jni_3.8.0~rc4-1_i386 + libsx-dev_2.05-3_i386 + libsx0_2.05-3_i386 + libsybdb5_0.91-2+deb7u1_i386 + libsyfi1.0_1.0.0.dfsg-1_i386 + libsyfi1.0-dbg_1.0.0.dfsg-1_i386 + libsyfi1.0-dev_1.0.0.dfsg-1_i386 + libsylph-dev_1.1.0-8_i386 + libsylph1_1.1.0-8_i386 + libsymmetrica-2.0_2.0-1_i386 + libsymmetrica-dev_2.0-1_i386 + libsynce-dbg_0.15-1.1_i386 + libsynce0_0.15-1.1_i386 + libsynce0-dev_0.15-1.1_i386 + libsyncevo-dbus0_1.2.99.1-1.1_i386 + libsyncevolution0_1.2.99.1-1.1_i386 + libsyncml-dev_0.5.4-2.1_i386 + libsyncml-utils_0.5.4-2.1_i386 + libsyncml2_0.5.4-2.1_i386 + libsyncml2-dbg_0.5.4-2.1_i386 + libsyndication4_4:4.8.4-2_i386 + libsynfig-dev_0.63.05-1_i386 + libsynfig0_0.63.05-1_i386 + libsynopsis0.12_0.12-8_i386 + libsynopsis0.12-dev_0.12-8_i386 + libsynthesis-dbg_3.4.0.16.7-1_i386 + libsynthesis-dev_3.4.0.16.7-1_i386 + libsynthesis0_3.4.0.16.7-1_i386 + libsys-cpu-perl_0.52-3_i386 + libsys-cpuload-perl_0.03-6+b3_i386 + libsys-gamin-perl_0.1-1+b2_i386 + libsys-mmap-perl_0.16-1+b1_i386 + libsys-syslog-perl_0.29-1+b2_i386 + libsys-utmp-perl_1.6-4+b3_i386 + libsys-virt-perl_0.9.12-2_i386 + libsysactivity-dev_0.6.4-1_i386 + libsysactivity1_0.6.4-1_i386 + libsysactivity1-dbg_0.6.4-1_i386 + libsysfs-dev_2.1.0+repack-2_i386 + libsysfs2_2.1.0+repack-2_i386 + libsyslog-ng-3.3.5_3.3.5-4_i386 + libsyslog-ng-dev_3.3.5-4_i386 + libsyslog-ocaml_1.4-6+b2_i386 + libsyslog-ocaml-dev_1.4-6+b2_i386 + libsystemd-daemon-dev_44-11+deb7u4_i386 + libsystemd-daemon0_44-11+deb7u4_i386 + libsystemd-id128-0_44-11+deb7u4_i386 + libsystemd-id128-dev_44-11+deb7u4_i386 + libsystemd-journal-dev_44-11+deb7u4_i386 + libsystemd-journal0_44-11+deb7u4_i386 + libsystemd-login-dev_44-11+deb7u4_i386 + libsystemd-login0_44-11+deb7u4_i386 + libt1-5_5.1.2-3.6_i386 + libt1-5-dbg_5.1.2-3.6_i386 + libt1-dev_5.1.2-3.6_i386 + libtacacs+1_4.0.4.19-11_i386 + libtachyon-0.99_0.99~b2+dfsg-0.4_i386 + libtachyon-dev_0.99~b2+dfsg-0.4_i386 + libtag-extras-dev_1.0.1-3_i386 + libtag-extras1_1.0.1-3_i386 + libtag1-dev_1.7.2-1_i386 + libtag1-rusxmms_1.7.2-1_i386 + libtag1-vanilla_1.7.2-1_i386 + libtag1c2a_1.7.2-1_i386 + libtagc0_1.7.2-1_i386 + libtagc0-dev_1.7.2-1_i386 + libtagcoll2-dev_2.0.13-1.1_i386 + libtaglib-ocaml_0.2.0-1+b1_i386 + libtaglib-ocaml-dev_0.2.0-1+b1_i386 + libtaint-util-perl_0.08-1+b2_i386 + libtaktuk-1-dev_3.7.4-1_i386 + libtaktuk3_3.7.4-1_i386 + libtalloc-dev_2.0.7+git20120207-1_i386 + libtalloc2_2.0.7+git20120207-1_i386 + libtalloc2-dbg_2.0.7+git20120207-1_i386 + libtamuanova-0.2_0.2-2_i386 + libtamuanova-dev_0.2-2_i386 + libtango-tools_7.2.6+dfsg-14_i386 + libtango7_7.2.6+dfsg-14_i386 + libtango7-dbg_7.2.6+dfsg-14_i386 + libtango7-dev_7.2.6+dfsg-14_i386 + libtaningia-dev_0.2.2-1_i386 + libtaningia0_0.2.2-1_i386 + libtar-dev_1.2.16-1+deb7u1_i386 + libtar0_1.2.16-1+deb7u1_i386 + libtarantool-dev_1.4.6+20120629+2158-1_i386 + libtarantool1_1.4.6+20120629+2158-1_i386 + libtarantool1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolnet1_1.4.6+20120629+2158-1_i386 + libtarantoolnet1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1_1.4.6+20120629+2158-1_i386 + libtarantoolrpl1-dbg_1.4.6+20120629+2158-1_i386 + libtarantoolsql1_1.4.6+20120629+2158-1_i386 + libtarantoolsql1-dbg_1.4.6+20120629+2158-1_i386 + libtaskmanager4abi3_4:4.8.4-6_i386 + libtasn1-3_2.13-2_i386 + libtasn1-3-bin_2.13-2_i386 + libtasn1-3-dbg_2.13-2_i386 + libtasn1-3-dev_2.13-2_i386 + libtbb-dev_4.0+r233-1_i386 + libtbb2_4.0+r233-1_i386 + libtbb2-dbg_4.0+r233-1_i386 + libtcc-dev_0.9.26~git20120612.ad5f375-6_i386 + libtcd-dev_2.2.2-1_i386 + libtcd0_2.2.2-1_i386 + libtcl-chiark-1_1.1.1_i386 + libtclap-dev_1.2.1-1_i386 + libtclcl1_1.20-6_i386 + libtclcl1-dev_1.20-6_i386 + libtcltk-ruby1.8_1.8.7.358-7.1+deb7u1_i386 + libtcltk-ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + libtcmalloc-minimal4_2.0-2_i386 + libtcmalloc-minimal4-dbg_2.0-2_i386 + libtcnative-1_1.1.24-1_i386 + libtdb-dev_1.2.10-2_i386 + libtdb1_1.2.10-2_i386 + libtdb1-dbg_1.2.10-2_i386 + libtecla1_1.6.1-5_i386 + libtecla1-dev_1.6.1-5_i386 + libteem-dev_1.11.0~svn5226-1_i386 + libteem2_1.11.0~svn5226-1_i386 + libteem2-dbg_1.11.0~svn5226-1_i386 + libtelepathy-farstream-dev_0.4.0-3_i386 + libtelepathy-farstream2_0.4.0-3_i386 + libtelepathy-farstream2-dbg_0.4.0-3_i386 + libtelepathy-glib-dev_0.18.2-2_i386 + libtelepathy-glib0_0.18.2-2_i386 + libtelepathy-glib0-dbg_0.18.2-2_i386 + libtelepathy-logger-dev_0.4.0-1_i386 + libtelepathy-logger-qt4-1_0.4.0-1_i386 + libtelepathy-logger-qt4-1-dbg_0.4.0-1_i386 + libtelepathy-logger-qt4-dev_0.4.0-1_i386 + libtelepathy-logger2_0.4.0-1_i386 + libtelepathy-logger2-dbg_0.4.0-1_i386 + libtelepathy-qt4-2_0.9.1-4_i386 + libtelepathy-qt4-dbg_0.9.1-4_i386 + libtelepathy-qt4-dev_0.9.1-4_i386 + libtelepathy-qt4-farstream2_0.9.1-4_i386 + libtelnet-dev_0.21-1_i386 + libtelnet-utils_0.21-1_i386 + libtelnet2_0.21-1_i386 + libtemplate-perl_2.24-1_i386 + libtemplates-parser11.6_11.6-2_i386 + libtemplates-parser11.6-dbg_11.6-2_i386 + libtemplates-parser11.6-dev_11.6-2_i386 + libterm-readkey-perl_2.30-4+b2_i386 + libterm-readline-gnu-perl_1.20-2+b1_i386 + libterm-size-perl_0.207-1_i386 + libterm-size-perl-perl_0.029-1_i386 + libterm-slang-perl_0.07-11+b3_i386 + libterralib_4.0.0-4_i386 + libterralib-dev_4.0.0-4_i386 + libtesseract-dev_3.02.01-6_i386 + libtesseract3_3.02.01-6_i386 + libtest-leaktrace-perl_0.14-1+b1_i386 + libtest-taint-perl_1.04-1+b2_i386 + libtevent-dev_0.9.16-1_i386 + libtevent0_0.9.16-1_i386 + libtevent0-dbg_0.9.16-1_i386 + libtext-aligner-perl_0.07-1_i386 + libtext-aspell-perl_0.09-1+b2_i386 + libtext-bibtex-perl_0.63-1_i386 + libtext-bidi-perl_0.03-5+b2_i386 + libtext-charwidth-perl_0.04-7+b1_i386 + libtext-chasen-perl_1.04-3+b5_i386 + libtext-csv-xs-perl_0.90-1_i386 + libtext-hunspell-perl_2.03-1_i386 + libtext-iconv-perl_1.7-5_i386 + libtext-kakasi-perl_2.04-1+b3_i386 + libtext-levenshteinxs-perl_0.03-3+b2_i386 + libtext-markdown-discount-perl_0.02-1_i386 + libtext-mecab-perl_0.20013-2_i386 + libtext-ngram-perl_0.14-1_i386 + libtext-ocaml_0.5-1+b2_i386 + libtext-ocaml-dev_0.5-1+b2_i386 + libtext-qrcode-perl_0.01-1+b2_i386 + libtext-reflow-perl_1.09-1+b2_i386 + libtext-table-perl_1.123-1_i386 + libtext-unaccent-perl_1.08-1+b3_i386 + libtext-vimcolor-perl_0.11-2_i386 + libtextwrap-dev_0.1-13_i386 + libtextwrap1_0.1-13_i386 + libtfbs-perl_0.5.svn.20100421-1+b1_i386 + libthai-dev_0.1.18-2_i386 + libthai0_0.1.18-2_i386 + libtheora-bin_1.1.1+dfsg.1-3.1_i386 + libtheora-dbg_1.1.1+dfsg.1-3.1_i386 + libtheora-dev_1.1.1+dfsg.1-3.1_i386 + libtheora-ocaml_0.3.0-1+b3_i386 + libtheora-ocaml-dev_0.3.0-1+b3_i386 + libtheora0_1.1.1+dfsg.1-3.1_i386 + libthepeg-dev_1.8.0-1_i386 + libthepeg15_1.8.0-1_i386 + libthreads-perl_1.85-1+b1_i386 + libthreads-shared-perl_1.40-1+b1_i386 + libthreadweaver4_4:4.8.4-4_i386 + libthunar-vfs-1-2_1.2.0-3+b1_i386 + libthunar-vfs-1-2-dbg_1.2.0-3+b1_i386 + libthunar-vfs-1-dev_1.2.0-3+b1_i386 + libthunarx-2-0_1.2.3-4+b1_i386 + libthunarx-2-dev_1.2.3-4+b1_i386 + libticables-dev_1.2.0-2_i386 + libticables2-1_1.2.0-2_i386 + libticalcs-dev_1.1.3+dfsg1-1_i386 + libticalcs2-7_1.1.3+dfsg1-1_i386 + libticonv-dev_1.1.0-1.1_i386 + libticonv3_1.1.0-1.1_i386 + libtidy-0.99-0_20091223cvs-1.2_i386 + libtidy-dev_20091223cvs-1.2_i386 + libtiff-opengl_4.0.2-6+deb7u2_i386 + libtiff-tools_4.0.2-6+deb7u2_i386 + libtiff4_3.9.6-11_i386 + libtiff4-dev_3.9.6-11_i386 + libtiff5_4.0.2-6+deb7u2_i386 + libtiff5-alt-dev_4.0.2-6+deb7u2_i386 + libtiff5-dev_4.0.2-6+deb7u2_i386 + libtiffxx0c2_3.9.6-11_i386 + libtiffxx5_4.0.2-6+deb7u2_i386 + libtifiles-dev_1.1.1-1_i386 + libtifiles2-5_1.1.1-1_i386 + libtimbl3_6.4.2-1_i386 + libtimbl3-dev_6.4.2-1_i386 + libtimblserver2_1.4-2_i386 + libtimblserver2-dev_1.4-2_i386 + libtime-warp-perl_0.5-1+b2_i386 + libtime-y2038-perl_20100403-2+b2_i386 + libtinfo-dev_5.9-10_i386 + libtinfo5_5.9-10_i386 + libtinfo5-dbg_5.9-10_i386 + libtinyxml-dev_2.6.2-1_i386 + libtinyxml2-0.0.0_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2-dev_0~git20120518.1.a2ae54e-1_i386 + libtinyxml2.6.2_2.6.2-1_i386 + libtinyxml2.6.2-dbg_2.6.2-1_i386 + libtirpc-dev_0.2.2-5_i386 + libtirpc1_0.2.2-5_i386 + libtk-img_1:1.3-release-12_i386 + libtk-img-dev_1:1.3-release-12_i386 + libtk-tablematrix-perl_1.23-6+b1_i386 + libtntdb-dev_1.2-2+b1_i386 + libtntdb3_1.2-2+b1_i386 + libtntnet-dev_2.1-2+deb7u1_i386 + libtntnet10_2.1-2+deb7u1_i386 + libtododb-dev_0.11-3_i386 + libtododb0_0.11-3_i386 + libtododb0-dbg_0.11-3_i386 + libtogl1_1.7-12_i386 + libtokyocabinet-dbg_1.4.47-2_i386 + libtokyocabinet-dev_1.4.47-2_i386 + libtokyocabinet-perl_1.34-1+b3_i386 + libtokyocabinet9_1.4.47-2_i386 + libtokyotyrant-dev_1.1.40-4.1+b1_i386 + libtokyotyrant3_1.1.40-4.1+b1_i386 + libtolua++5.1-dev_1.0.93-3_i386 + libtolua-dev_5.2.0-1_i386 + libtomcatjss-java_6.0.1-1_i386 + libtomcrypt-dev_1.17-3.2_i386 + libtomcrypt0_1.17-3.2_i386 + libtommath-dev_0.42.0-1_i386 + libtommath0_0.42.0-1_i386 + libtomoe-dev_0.6.0-1.3_i386 + libtomoe0_0.6.0-1.3_i386 + libtomoyotools3_2.5.0-20120414-2_i386 + libtonezone-dev_1:2.5.0.1-2_i386 + libtonezone2.0_1:2.5.0.1-2_i386 + libtool_2.4.2-1.1_i386 + libtorch3-dev_3.1-2.1_i386 + libtorch3c2_3.1-2.1_i386 + libtorque2_2.4.16+dfsg-1+deb7u2_i386 + libtorque2-dev_2.4.16+dfsg-1+deb7u2_i386 + libtorrent-dev_0.13.2-1_i386 + libtorrent-rasterbar-dbg_0.15.10-1+b1_i386 + libtorrent-rasterbar-dev_0.15.10-1+b1_i386 + libtorrent-rasterbar6_0.15.10-1+b1_i386 + libtorrent14_0.13.2-1_i386 + libtorture-dev_4.0.0~beta2+dfsg1-3.2_i386 + libtorture0_4.0.0~beta2+dfsg1-3.2_i386 + libtotem-dev_3.0.1-8_i386 + libtotem-pg-dev_1.4.2-3_i386 + libtotem-pg4_1.4.2-3_i386 + libtotem-plparser-dbg_3.4.2-1_i386 + libtotem-plparser-dev_3.4.2-1_i386 + libtotem-plparser17_3.4.2-1_i386 + libtotem0_3.0.1-8_i386 + libtowitoko-dev_2.0.7-8.3_i386 + libtowitoko2_2.0.7-8.3_i386 + libtpl0_1.5-2_i386 + libtpm-unseal-dev_1.3.7-1_i386 + libtpm-unseal1_1.3.7-1_i386 + libtqsllib1_2.2-5_i386 + libtrace-tools_3.0.14-1_i386 + libtrace3_3.0.14-1_i386 + libtrace3-dev_3.0.14-1_i386 + libtracker-extract-0.14-0_0.14.1-3_i386 + libtracker-extract-0.14-dev_0.14.1-3_i386 + libtracker-miner-0.14-0_0.14.1-3_i386 + libtracker-miner-0.14-dev_0.14.1-3_i386 + libtracker-sparql-0.14-0_0.14.1-3_i386 + libtracker-sparql-0.14-dev_0.14.1-3_i386 + libtransitioner1_1.1.7-1_i386 + libtransitioner1-dev_1.1.7-1_i386 + libtre-dev_0.8.0-3_i386 + libtre5_0.8.0-3_i386 + libtreil-dev_1.8-1.1_i386 + libtreil0_1.8-1.1_i386 + libtritonus-jni_20070428-9_i386 + libtrue-perl_0.18-1+b2_i386 + libtrycatch-perl_1.003000-1+b1_i386 + libts-0.0-0_1.0-11_i386 + libts-0.0-0-dbg_1.0-11_i386 + libts-bin_1.0-11_i386 + libts-dev_1.0-11_i386 + libtse3-0.3.1c2a_0.3.1-4.3_i386 + libtse3-dev_0.3.1-4.3_i386 + libtsk-dev_3.2.3-2_i386 + libtsk3-3_3.2.3-2_i386 + libtsk3-3-dbg_3.2.3-2_i386 + libtspi-dev_0.3.9-3+wheezy1_i386 + libtspi1_0.3.9-3+wheezy1_i386 + libtulip-3.7_3.7.0dfsg-4_i386 + libtulip-dev_3.7.0dfsg-4_i386 + libtulip-ogdf-3.7_3.7.0dfsg-4_i386 + libtulip-ogl-3.7_3.7.0dfsg-4_i386 + libtulip-qt4-3.7_3.7.0dfsg-4_i386 + libtumbler-1-0_0.1.25-1+b1_i386 + libtumbler-1-dbg_0.1.25-1+b1_i386 + libtumbler-1-dev_0.1.25-1+b1_i386 + libtuxcap-dev_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0_1.4.0.dfsg2-2.1_i386 + libtuxcap4.0-dbg_1.4.0.dfsg2-2.1_i386 + libtwin-dev_12.04.13.17.57-g130ee5f-2_i386 + libtwin0_12.04.13.17.57-g130ee5f-2_i386 + libtwofish-dev_0.3-3_i386 + libtwofish0_0.3-3_i386 + libtwolame-dev_0.3.13-1_i386 + libtwolame0_0.3.13-1_i386 + libtxc-dxtn-s2tc-bin_0~git20110809-3_i386 + libtxc-dxtn-s2tc-dev_0~git20110809-3_i386 + libtxc-dxtn-s2tc0_0~git20110809-3_i386 + libtype-conv-camlp4-dev_3.0.4-1_i386 + libtyxml-ocaml_2.1-1_i386 + libtyxml-ocaml-dev_2.1-1_i386 + libuchardet-dev_0.0.1-1_i386 + libuchardet0_0.0.1-1_i386 + libucimf-dev_2.3.8-4_i386 + libucimf0_2.3.8-4_i386 + libucl-dev_1.03-5_i386 + libucl1_1.03-5_i386 + libuclmmbase1_1.2.16.0-1_i386 + libuclmmbase1-dev_1.2.16.0-1_i386 + libucommon-dev_5.2.2-4_i386 + libucommon5_5.2.2-4_i386 + libucommon5-dbg_5.2.2-4_i386 + libucto1_0.5.2-2_i386 + libucto1-dev_0.5.2-2_i386 + libudev-dev_175-7.2_i386 + libudev0_175-7.2_i386 + libudf-dev_0.83-4_i386 + libudf0_0.83-4_i386 + libudp-tcl_1.0.8-6_i386 + libudt-dev_4.10+dfsg-1_i386 + libudt0_4.10+dfsg-1_i386 + libudunits2-0_2.1.23-3_i386 + libudunits2-dev_2.1.23-3_i386 + libuhd-dev_3.4.2-1_i386 + libuhd003_3.4.2-1_i386 + libuim-custom2_1:1.8.1-4_i386 + libuim-data_1:1.8.1-4_i386 + libuim-dev_1:1.8.1-4_i386 + libuim-scm0_1:1.8.1-4_i386 + libuim8_1:1.8.1-4_i386 + libumad2sim0_0.5-1.1_i386 + libumfpack5.4.0_1:3.4.0-3_i386 + libumlib-dev_0.8.2-1_i386 + libumlib0_0.8.2-1_i386 + libunac1_1.8.0-6_i386 + libunac1-dev_1.8.0-6_i386 + libunbound-dev_1.4.17-3_i386 + libunbound2_1.4.17-3_i386 + libunicap2_0.9.12-2_i386 + libunicap2-dev_0.9.12-2_i386 + libunicode-collate-perl_0.89-1_i386 + libunicode-japanese-perl_0.47-1+b2_i386 + libunicode-linebreak-perl_0.0.20120401-1_i386 + libunicode-map-perl_0.112-10+b3_i386 + libunicode-map8-perl_0.13+dfsg-3+b2_i386 + libunicode-string-perl_2.09-5_i386 + libuniconf4.6_4.6.1-5_i386 + libuninameslist-dev_0.0.20091231-1.1_i386 + libuninameslist0_0.0.20091231-1.1_i386 + libuninum-dev_2.7-1.1_i386 + libuninum5_2.7-1.1_i386 + libunique-1.0-0_1.1.6-4_i386 + libunique-3.0-0_3.0.2-1_i386 + libunique-3.0-dev_3.0.2-1_i386 + libunique-dev_1.1.6-4_i386 + libunistring-dev_0.9.3-5_i386 + libunistring0_0.9.3-5_i386 + libunittest++-dev_1.4.0-3_i386 + libunix-mknod-perl_0.04-1+b1_i386 + libunix-syslog-perl_1.1-2+b2_i386 + libunixsocket-java_0.7.3-1_i386 + libunshield-dev_0.6-3_i386 + libunshield0_0.6-3_i386 + libunwind-setjmp0_0.99-0.3_i386 + libunwind-setjmp0-dev_0.99-0.3_i386 + libunwind7_0.99-0.3_i386 + libunwind7-dev_0.99-0.3_i386 + libupnp4_1.8.0~svn20100507-1.2_i386 + libupnp4-dbg_1.8.0~svn20100507-1.2_i386 + libupnp4-dev_1.8.0~svn20100507-1.2_i386 + libupnp6_1:1.6.17-1.2_i386 + libupnp6-dbg_1:1.6.17-1.2_i386 + libupnp6-dev_1:1.6.17-1.2_i386 + libupower-glib-dev_0.9.17-1_i386 + libupower-glib1_0.9.17-1_i386 + libupsclient1_2.6.4-2.3+deb7u1_i386 + libupsclient1-dev_2.6.4-2.3+deb7u1_i386 + libupse-dev_1.0.0-1_i386 + libupse2_1.0.0-1_i386 + libuptimed-dev_1:0.3.17-3.1_i386 + libuptimed0_1:0.3.17-3.1_i386 + liburcu-dev_0.6.7-2_i386 + liburcu1_0.6.7-2_i386 + liburfkill-glib-dev_0.3.0-1_i386 + liburfkill-glib0_0.3.0-1_i386 + liburfkill-glib0-dbg_0.3.0-1_i386 + liburg0_0.8.12-4_i386 + liburg0-dev_0.8.12-4_i386 + liburiparser-dev_0.7.5-1_i386 + liburiparser1_0.7.5-1_i386 + libusb++-0.1-4c2_2:0.1.12-20+nmu1_i386 + libusb++-dev_2:0.1.12-20+nmu1_i386 + libusb-0.1-4_2:0.1.12-20+nmu1_i386 + libusb-1.0-0_2:1.0.11-1_i386 + libusb-1.0-0-dev_2:1.0.11-1_i386 + libusb-dev_2:0.1.12-20+nmu1_i386 + libusb-ocaml_1.2.0-2+b7_i386 + libusb-ocaml-dev_1.2.0-2+b7_i386 + libusbip-dev_1.1.1+3.2.17-1_i386 + libusbmuxd-dev_1.0.7-2_i386 + libusbmuxd1_1.0.7-2_i386 + libusbmuxd1-dbg_1.0.7-2_i386 + libusbprog-dev_0.2.0-2_i386 + libusbprog0_0.2.0-2_i386 + libusbredirhost-dev_0.4.3-2_i386 + libusbredirhost1_0.4.3-2_i386 + libusbredirparser-dev_0.4.3-2_i386 + libusbredirparser0_0.4.3-2_i386 + libusbtc08-1_1.7.2-1_i386 + libusbtc08-dev_1.7.2-1_i386 + libuser_1:0.56.9.dfsg.1-1.2_i386 + libuser1_1:0.56.9.dfsg.1-1.2_i386 + libuser1-dev_1:0.56.9.dfsg.1-1.2_i386 + libust-dev_2.0.4-1_i386 + libust0_2.0.4-1_i386 + libustr-1.0-1_1.0.4-3_i386 + libustr-1.0-1-dbg_1.0.4-3_i386 + libustr-dev_1.0.4-3_i386 + libutempter-dev_1.1.5-4_i386 + libutempter0_1.1.5-4_i386 + libuu-dev_0.5.20-3.3_i386 + libuu0_0.5.20-3.3_i386 + libuuid-perl_0.02-5_i386 + libuuid1_2.20.1-5.3_i386 + libuuidm-ocaml-dev_0.9.4-1_i386 + libv4l-0_0.8.8-3_i386 + libv4l-dev_0.8.8-3_i386 + libv4lconvert0_0.8.8-3_i386 + libv8-3.8.9.20_3.8.9.20-2_i386 + libv8-dbg_3.8.9.20-2_i386 + libv8-dev_3.8.9.20-2_i386 + libv8-i18n-dev_0~0.svn7-3_i386 + libv8-i18n0.0.0_0~0.svn7-3_i386 + libv8-i18n0.0.0-dbg_0~0.svn7-3_i386 + libva-dev_1.0.15-4_i386 + libva-egl1_1.0.15-4_i386 + libva-glx1_1.0.15-4_i386 + libva-tpi1_1.0.15-4_i386 + libva-x11-1_1.0.15-4_i386 + libva1_1.0.15-4_i386 + libvala-0.14-0_0.14.2-2_i386 + libvala-0.14-0-dbg_0.14.2-2_i386 + libvala-0.14-dev_0.14.2-2_i386 + libvala-0.16-0_0.16.1-2_i386 + libvala-0.16-0-dbg_0.16.1-2_i386 + libvala-0.16-dev_0.16.1-2_i386 + libvaladoc-dev_0.3.2~git20120227-1_i386 + libvaladoc1_0.3.2~git20120227-1_i386 + libvalhalla-bin_2.0.0-4+b1_i386 + libvalhalla-dev_2.0.0-4+b1_i386 + libvalhalla2_2.0.0-4+b1_i386 + libvalhalla2-dbg_2.0.0-4+b1_i386 + libvamp-hostsdk3_2.1-1_i386 + libvamp-sdk2_2.1-1_i386 + libvanessa-adt-dev_0.0.9-1_i386 + libvanessa-adt1_0.0.9-1_i386 + libvanessa-logger-dev_0.0.10-1.1_i386 + libvanessa-logger-sample_0.0.10-1.1_i386 + libvanessa-logger0_0.0.10-1.1_i386 + libvanessa-socket-dev_0.0.12-1_i386 + libvanessa-socket-pipe_0.0.12-1_i386 + libvanessa-socket2_0.0.12-1_i386 + libvarconf-1.0-7_0.6.7-2_i386 + libvarconf-1.0-7-dbg_0.6.7-2_i386 + libvarconf-dev_0.6.7-2_i386 + libvariable-magic-perl_0.50-1_i386 + libvarnishapi-dev_3.0.2-2+deb7u1_i386 + libvarnishapi1_3.0.2-2+deb7u1_i386 + libvbr-dev_2.6.8-4_i386 + libvbr2_2.6.8-4_i386 + libvc-dev_003.dfsg.1-12_i386 + libvc0_003.dfsg.1-12_i386 + libvcdinfo-dev_0.7.24+dfsg-0.1_i386 + libvcdinfo0_0.7.24+dfsg-0.1_i386 + libvde-dev_2.3.2-4_i386 + libvde0_2.3.2-4_i386 + libvdeplug-dev_2.3.2-4_i386 + libvdeplug2_2.3.2-4_i386 + libvdk2-2c2_2.4.0-5.3_i386 + libvdk2-dbg_2.4.0-5.3_i386 + libvdk2-dev_2.4.0-5.3_i386 + libvdkbuilder2-dev_2.4.0-4.3_i386 + libvdkbuilder2c2_2.4.0-4.3_i386 + libvdkxdb2-2c2_2.4.0-3.4_i386 + libvdkxdb2-dev_2.4.0-3.4_i386 + libvdpau-dev_0.4.1-7_i386 + libvdpau1_0.4.1-7_i386 + libventrilo-dev_1.2.4-1_i386 + libventrilo3-0_1.2.4-1_i386 + libverbiste-0.1-0_0.1.34-1_i386 + libverbiste-dev_0.1.34-1_i386 + libverilog-perl_3.315-1_i386 + libversion-perl_1:0.9900-1_i386 + libverto-dev_0.2.2-1_i386 + libverto-glib1_0.2.2-1_i386 + libverto-libev1_0.2.2-1_i386 + libverto1_0.2.2-1_i386 + libvformat-dev_1.13-10_i386 + libvformat0_1.13-10_i386 + libvhd0_2.0.90-1_i386 + libvhdio-2.0.90_2.0.90-1_i386 + libvia-dev_2.0.4-2_i386 + libvia2_2.0.4-2_i386 + libvibrant6-dev_6.1.20120620-2_i386 + libvibrant6a_6.1.20120620-2_i386 + libvibrant6a-dbg_6.1.20120620-2_i386 + libvideo-capture-v4l-perl_0.902-3+b2_i386 + libvideo-ivtv-perl_0.13-7_i386 + libview-dev_0.6.6-2.1_i386 + libview2_0.6.6-2.1_i386 + libview2-dbg_0.6.6-2.1_i386 + libvigraimpex-dev_1.7.1+dfsg1-3_i386 + libvigraimpex3_1.7.1+dfsg1-3_i386 + libvips-dev_7.28.5-1+deb7u1_i386 + libvips-tools_7.28.5-1+deb7u1_i386 + libvips15_7.28.5-1+deb7u1_i386 + libvirt-bin_0.9.12.3-1_i386 + libvirt-dev_0.9.12.3-1_i386 + libvirt-glib-1.0-0_0.0.8-1_i386 + libvirt-glib-1.0-0-dbg_0.0.8-1_i386 + libvirt-glib-1.0-dev_0.0.8-1_i386 + libvirt-ocaml_0.6.1.2-1_i386 + libvirt-ocaml-dev_0.6.1.2-1_i386 + libvirt0_0.9.12.3-1_i386 + libvirt0-dbg_0.9.12.3-1_i386 + libvirtodbc0_6.1.4+dfsg1-7_i386 + libvirtuoso5.5-cil_6.1.4+dfsg1-7_i386 + libvisca-dev_1.0.1-1_i386 + libvisca0_1.0.1-1_i386 + libvisio-0.0-0_0.0.17-1_i386 + libvisio-dev_0.0.17-1_i386 + libvisio-tools_0.0.17-1_i386 + libvisual-0.4-0_0.4.0-5_i386 + libvisual-0.4-dev_0.4.0-5_i386 + libvisual-0.4-plugins_0.4.0.dfsg.1-7_i386 + libvisual-projectm_2.1.0+dfsg-1_i386 + libvlc-dev_2.0.3-5_i386 + libvlc5_2.0.3-5_i386 + libvlccore-dev_2.0.3-5_i386 + libvlccore5_2.0.3-5_i386 + libvncserver-config_0.9.9+dfsg-1_i386 + libvncserver-dev_0.9.9+dfsg-1_i386 + libvncserver0_0.9.9+dfsg-1_i386 + libvncserver0-dbg_0.9.9+dfsg-1_i386 + libvo-aacenc-dev_0.1.2-1_i386 + libvo-aacenc0_0.1.2-1_i386 + libvo-amrwbenc-dev_0.1.2-1_i386 + libvo-amrwbenc0_0.1.2-1_i386 + libvoaacenc-ocaml_0.1.0-1+b1_i386 + libvoaacenc-ocaml-dev_0.1.0-1+b1_i386 + libvoikko-dev_3.5-1.1_i386 + libvoikko1_3.5-1.1_i386 + libvolk0.0.0_3.5.3.2-1_i386 + libvolpack1_1.0b3-3_i386 + libvolpack1-dev_1.0b3-3_i386 + libvomsapi1_2.0.8-1_i386 + libvorbis-dbg_1.3.2-1.3_i386 + libvorbis-dev_1.3.2-1.3_i386 + libvorbis-ocaml_0.6.1-1+b1_i386 + libvorbis-ocaml-dev_0.6.1-1+b1_i386 + libvorbis0a_1.3.2-1.3_i386 + libvorbisenc2_1.3.2-1.3_i386 + libvorbisfile-ruby_0.2-8.1_i386 + libvorbisfile-ruby1.8_0.2-8.1_i386 + libvorbisfile3_1.3.2-1.3_i386 + libvorbisidec-dev_1.0.2+svn18153-0.2_i386 + libvorbisidec1_1.0.2+svn18153-0.2_i386 + libvotequorum-dev_1.4.2-3_i386 + libvotequorum4_1.4.2-3_i386 + libvpb-dbg_4.2.55-1_i386 + libvpb-dev_4.2.55-1_i386 + libvpb0_4.2.55-1_i386 + libvpx-dev_1.1.0-1_i386 + libvpx1_1.1.0-1_i386 + libvpx1-dbg_1.1.0-1_i386 + libvrb0_0.5.1-5.1_i386 + libvrb0-dev_0.5.1-5.1_i386 + libvte-2.90-9_1:0.32.2-1_i386 + libvte-2.90-dev_1:0.32.2-1_i386 + libvte-dev_1:0.28.2-5_i386 + libvte0.16-cil_2.26.0-8_i386 + libvte0.16-cil-dev_2.26.0-8_i386 + libvte9_1:0.28.2-5_i386 + libvtk-java_5.8.0-13+b1_i386 + libvtk5-dev_5.8.0-13+b1_i386 + libvtk5-qt4-dev_5.8.0-13+b1_i386 + libvtk5.8_5.8.0-13+b1_i386 + libvtk5.8-qt4_5.8.0-13+b1_i386 + libvtkedge_0.2.0~20110819-2_i386 + libvtkedge-dev_0.2.0~20110819-2_i386 + libvtkgdcm-cil_2.2.0-14.1_i386 + libvtkgdcm-java_2.2.0-14.1_i386 + libvtkgdcm-tools_2.2.0-14.1_i386 + libvtkgdcm2-dev_2.2.0-14.1_i386 + libvtkgdcm2.2_2.2.0-14.1_i386 + libvxl1-dev_1.14.0-18_i386 + libvxl1.14_1.14.0-18_i386 + libwacom-dev_0.6-1_i386 + libwacom2_0.6-1_i386 + libwacom2-dbg_0.6-1_i386 + libwaei-dev_3.4.3-1_i386 + libwaei2_3.4.3-1_i386 + libwaili-dev_19990723-20_i386 + libwaili1c2_19990723-20_i386 + libwant-perl_0.21-1_i386 + libwavefront-standalone3.0_3.0.2+dfsg-4+b1_i386 + libwavefront-standalone3.0-dev_3.0.2+dfsg-4+b1_i386 + libwavpack-dev_4.60.1-3_i386 + libwavpack1_4.60.1-3_i386 + libwayland-dev_0.85.0-2_i386 + libwayland0_0.85.0-2_i386 + libwayland0-dbg_0.85.0-2_i386 + libwbclient-dev_2:3.6.6-6+deb7u2_i386 + libwbclient0_2:3.6.6-6+deb7u2_i386 + libwbxml2-0_0.10.7-1_i386 + libwbxml2-0-dbg_0.10.7-1_i386 + libwbxml2-dev_0.10.7-1_i386 + libwbxml2-utils_0.10.7-1_i386 + libwcs4_4.13.4-1_i386 + libwcstools-dev_3.8.5-1_i386 + libwcstools0_3.8.5-1_i386 + libweather-ion6_4:4.8.4-6_i386 + libwebauth-dev_4.1.1-2_i386 + libwebauth-perl_4.1.1-2_i386 + libwebauth6_4.1.1-2_i386 + libwebcam0_0.2.2-1_i386 + libwebcam0-dbg_0.2.2-1_i386 + libwebcam0-dev_0.2.2-1_i386 + libwebkit-dev_1.8.1-3.4_i386 + libwebkitgtk-1.0-0_1.8.1-3.4_i386 + libwebkitgtk-1.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-0_1.8.1-3.4_i386 + libwebkitgtk-3.0-0-dbg_1.8.1-3.4_i386 + libwebkitgtk-3.0-dev_1.8.1-3.4_i386 + libwebkitgtk-dev_1.8.1-3.4_i386 + libwebp-dev_0.1.3-3+nmu1_i386 + libwebp2_0.1.3-3+nmu1_i386 + libwebrtc-audio-processing-0_0.1-2_i386 + libwebrtc-audio-processing-dev_0.1-2_i386 + libweed-dbg_1.6.2~ds1-2_i386 + libweed-dev_1.6.2~ds1-2_i386 + libweed0_1.6.2~ds1-2_i386 + libwfmath-0.3-6_0.3.12-3_i386 + libwfmath-0.3-6-dbg_0.3.12-3_i386 + libwfmath-0.3-dev_0.3.12-3_i386 + libwfut-0.2-1_0.2.1-2_i386 + libwfut-0.2-1-dbg_0.2.1-2_i386 + libwfut-0.2-dev_0.2.1-2_i386 + libwibble-dev_0.1.28-1.1_i386 + libwildmidi-dev_0.2.3.4-2.1_i386 + libwildmidi1_0.2.3.4-2.1_i386 + libwin-hivex-perl_1.3.6-2_i386 + libwind0-heimdal_1.6~git20120403+dfsg1-2_i386 + libwine_1.4.1-4_i386 + libwine-alsa_1.4.1-4_i386 + libwine-bin_1.4.1-4_i386 + libwine-capi_1.4.1-4_i386 + libwine-cms_1.4.1-4_i386 + libwine-dbg_1.4.1-4_i386 + libwine-dev_1.4.1-4_i386 + libwine-gl_1.4.1-4_i386 + libwine-gphoto2_1.4.1-4_i386 + libwine-ldap_1.4.1-4_i386 + libwine-openal_1.4.1-4_i386 + libwine-oss_1.4.1-4_i386 + libwine-print_1.4.1-4_i386 + libwine-sane_1.4.1-4_i386 + libwings-dev_0.95.3-2_i386 + libwings2_0.95.3-2_i386 + libwireshark-dev_1.8.2-5wheezy9_i386 + libwireshark2_1.8.2-5wheezy9_i386 + libwiretap-dev_1.8.2-5wheezy9_i386 + libwiretap2_1.8.2-5wheezy9_i386 + libwmf-bin_0.2.8.4-10.3_i386 + libwmf-dev_0.2.8.4-10.3_i386 + libwmf0.2-7_0.2.8.4-10.3_i386 + libwnck-3-0_3.4.2-1_i386 + libwnck-3-dev_3.4.2-1_i386 + libwnck-dev_2.30.7-1_i386 + libwnck1.0-cil-dev_2.26.0-8_i386 + libwnck2.20-cil_2.26.0-8_i386 + libwnck22_2.30.7-1_i386 + libwnn-dev_1.1.1~a021+cvs20100325-6_i386 + libwnn0_1.1.1~a021+cvs20100325-6_i386 + libwnn6-1_1.0.0-14.2+b1_i386 + libwnn6-dev_1.0.0-14.2+b1_i386 + libwpd-0.9-9_0.9.4-3_i386 + libwpd-dev_0.9.4-3_i386 + libwpd-tools_0.9.4-3_i386 + libwpg-0.2-2_0.2.1-1_i386 + libwpg-dev_0.2.1-1_i386 + libwpg-tools_0.2.1-1_i386 + libwps-0.2-2_0.2.7-1_i386 + libwps-dev_0.2.7-1_i386 + libwps-tools_0.2.7-1_i386 + libwrap-ruby1.8_0.6-3_i386 + libwrap0_7.6.q-24_i386 + libwrap0-dev_7.6.q-24_i386 + libwraster3_0.95.3-2_i386 + libwraster3-dev_0.95.3-2_i386 + libwreport-dev_2.4-1_i386 + libwreport2_2.4-1_i386 + libwsutil-dev_1.8.2-5wheezy9_i386 + libwsutil2_1.8.2-5wheezy9_i386 + libwt-dbg_3.2.1-2_i386 + libwt-dev_3.2.1-2_i386 + libwt32_3.2.1-2_i386 + libwtdbo-dev_3.2.1-2_i386 + libwtdbo32_3.2.1-2_i386 + libwtdbofirebird-dev_3.2.1-2_i386 + libwtdbofirebird32_3.2.1-2_i386 + libwtdbopostgres-dev_3.2.1-2_i386 + libwtdbopostgres32_3.2.1-2_i386 + libwtdbosqlite-dev_3.2.1-2_i386 + libwtdbosqlite32_3.2.1-2_i386 + libwtext-dev_3.2.1-2_i386 + libwtext32_3.2.1-2_i386 + libwtfcgi-dev_3.2.1-2_i386 + libwtfcgi32_3.2.1-2_i386 + libwthttp-dev_3.2.1-2_i386 + libwthttp32_3.2.1-2_i386 + libwttest-dev_3.2.1-2_i386 + libwttest2_3.2.1-2_i386 + libwutil2_0.95.3-2_i386 + libwv-1.2-4_1.2.9-3_i386 + libwv-dev_1.2.9-3_i386 + libwv2-4_0.4.2.dfsg.2-1~deb7u1_i386 + libwv2-dev_0.4.2.dfsg.2-1~deb7u1_i386 + libwvstreams-dev_4.6.1-5_i386 + libwvstreams4.6-base_4.6.1-5_i386 + libwvstreams4.6-extras_4.6.1-5_i386 + libwww-curl-perl_4.15-1+b2_i386 + libwx-perl_1:0.9909-1_i386 + libwx-scintilla-perl_0.38-1_i386 + libwxbase2.8-0_2.8.12.1-12_i386 + libwxbase2.8-dbg_2.8.12.1-12_i386 + libwxbase2.8-dev_2.8.12.1-12_i386 + libwxgtk2.8-0_2.8.12.1-12_i386 + libwxgtk2.8-dbg_2.8.12.1-12_i386 + libwxgtk2.8-dev_2.8.12.1-12_i386 + libwxsmithlib-dev_10.05-2.1_i386 + libwxsmithlib0_10.05-2.1_i386 + libwxsmithlib0-dev_10.05-2.1_i386 + libwxsqlite3-2.8-0_3.0.0.1~dfsg0-2_i386 + libwxsqlite3-2.8-dev_3.0.0.1~dfsg0-2_i386 + libwxsvg-dbg_2:1.1.8~dfsg0-2_i386 + libwxsvg-dev_2:1.1.8~dfsg0-2_i386 + libwxsvg0_2:1.1.8~dfsg0-2_i386 + libx11-6_2:1.5.0-1+deb7u1_i386 + libx11-6-dbg_2:1.5.0-1+deb7u1_i386 + libx11-dev_2:1.5.0-1+deb7u1_i386 + libx11-guitest-perl_0.25-2_i386 + libx11-xcb-dev_2:1.5.0-1+deb7u1_i386 + libx11-xcb1_2:1.5.0-1+deb7u1_i386 + libx11-xcb1-dbg_2:1.5.0-1+deb7u1_i386 + libx264-123_2:0.123.2189+git35cf912-1_i386 + libx264-dev_2:0.123.2189+git35cf912-1_i386 + libx52pro-dev_0.1.1-2.1_i386 + libx52pro0_0.1.1-2.1_i386 + libx86-1_1.1+ds1-10_i386 + libx86-dbg_1.1+ds1-10_i386 + libx86-dev_1.1+ds1-10_i386 + libxalan110_1.10-6_i386 + libxalan110-dev_1.10-6_i386 + libxapian-dev_1.2.12-2_i386 + libxapian-ruby1.8_1.2.12-2_i386 + libxapian-ruby1.9.1_1.2.12-2_i386 + libxapian22_1.2.12-2_i386 + libxapian22-dbg_1.2.12-2_i386 + libxatracker-dev_8.0.5-4+deb7u2_i386 + libxatracker1_8.0.5-4+deb7u2_i386 + libxatracker1-dbg_8.0.5-4+deb7u2_i386 + libxau-dev_1:1.0.7-1_i386 + libxau6_1:1.0.7-1_i386 + libxau6-dbg_1:1.0.7-1_i386 + libxaw3dxft6_2.9.1.4-3+b2_i386 + libxaw7_2:1.0.10-2_i386 + libxaw7-dbg_2:1.0.10-2_i386 + libxaw7-dev_2:1.0.10-2_i386 + libxbae-dev_4.60.4-3_i386 + libxbae4_4.60.4-3_i386 + libxbase2.0-0_2.0.0-8.5_i386 + libxbase2.0-bin_2.0.0-8.5_i386 + libxbase2.0-dev_2.0.0-8.5_i386 + libxcb-composite0_1.8.1-2+deb7u1_i386 + libxcb-composite0-dbg_1.8.1-2+deb7u1_i386 + libxcb-composite0-dev_1.8.1-2+deb7u1_i386 + libxcb-damage0_1.8.1-2+deb7u1_i386 + libxcb-damage0-dbg_1.8.1-2+deb7u1_i386 + libxcb-damage0-dev_1.8.1-2+deb7u1_i386 + libxcb-dpms0_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dpms0-dev_1.8.1-2+deb7u1_i386 + libxcb-dri2-0_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dbg_1.8.1-2+deb7u1_i386 + libxcb-dri2-0-dev_1.8.1-2+deb7u1_i386 + libxcb-ewmh-dev_0.3.9-2_i386 + libxcb-ewmh2_0.3.9-2_i386 + libxcb-glx0_1.8.1-2+deb7u1_i386 + libxcb-glx0-dbg_1.8.1-2+deb7u1_i386 + libxcb-glx0-dev_1.8.1-2+deb7u1_i386 + libxcb-icccm4_0.3.9-2_i386 + libxcb-icccm4-dev_0.3.9-2_i386 + libxcb-image0_0.3.9-1_i386 + libxcb-image0-dev_0.3.9-1_i386 + libxcb-keysyms1_0.3.9-1_i386 + libxcb-keysyms1-dev_0.3.9-1_i386 + libxcb-randr0_1.8.1-2+deb7u1_i386 + libxcb-randr0-dbg_1.8.1-2+deb7u1_i386 + libxcb-randr0-dev_1.8.1-2+deb7u1_i386 + libxcb-record0_1.8.1-2+deb7u1_i386 + libxcb-record0-dbg_1.8.1-2+deb7u1_i386 + libxcb-record0-dev_1.8.1-2+deb7u1_i386 + libxcb-render-util0_0.3.8-1.1_i386 + libxcb-render-util0-dev_0.3.8-1.1_i386 + libxcb-render0_1.8.1-2+deb7u1_i386 + libxcb-render0-dbg_1.8.1-2+deb7u1_i386 + libxcb-render0-dev_1.8.1-2+deb7u1_i386 + libxcb-res0_1.8.1-2+deb7u1_i386 + libxcb-res0-dbg_1.8.1-2+deb7u1_i386 + libxcb-res0-dev_1.8.1-2+deb7u1_i386 + libxcb-screensaver0_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dbg_1.8.1-2+deb7u1_i386 + libxcb-screensaver0-dev_1.8.1-2+deb7u1_i386 + libxcb-shape0_1.8.1-2+deb7u1_i386 + libxcb-shape0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shape0-dev_1.8.1-2+deb7u1_i386 + libxcb-shm0_1.8.1-2+deb7u1_i386 + libxcb-shm0-dbg_1.8.1-2+deb7u1_i386 + libxcb-shm0-dev_1.8.1-2+deb7u1_i386 + libxcb-sync0_1.8.1-2+deb7u1_i386 + libxcb-sync0-dbg_1.8.1-2+deb7u1_i386 + libxcb-sync0-dev_1.8.1-2+deb7u1_i386 + libxcb-util0_0.3.8-2_i386 + libxcb-util0-dev_0.3.8-2_i386 + libxcb-xevie0_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xevie0-dev_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xf86dri0-dev_1.8.1-2+deb7u1_i386 + libxcb-xfixes0_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xfixes0-dev_1.8.1-2+deb7u1_i386 + libxcb-xinerama0_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xinerama0-dev_1.8.1-2+deb7u1_i386 + libxcb-xprint0_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xprint0-dev_1.8.1-2+deb7u1_i386 + libxcb-xtest0_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xtest0-dev_1.8.1-2+deb7u1_i386 + libxcb-xv0_1.8.1-2+deb7u1_i386 + libxcb-xv0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xv0-dev_1.8.1-2+deb7u1_i386 + libxcb-xvmc0_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dbg_1.8.1-2+deb7u1_i386 + libxcb-xvmc0-dev_1.8.1-2+deb7u1_i386 + libxcb1_1.8.1-2+deb7u1_i386 + libxcb1-dbg_1.8.1-2+deb7u1_i386 + libxcb1-dev_1.8.1-2+deb7u1_i386 + libxcomp-dev_3.5.0.12-1+b1_i386 + libxcomp3_3.5.0.12-1+b1_i386 + libxcomposite-dev_1:0.4.3-2_i386 + libxcomposite1_1:0.4.3-2_i386 + libxcomposite1-dbg_1:0.4.3-2_i386 + libxcp-ocaml_0.5.2-3+b1_i386 + libxcp-ocaml-dev_0.5.2-3+b1_i386 + libxcrypt-dev_1:2.4-3_i386 + libxcrypt1_1:2.4-3_i386 + libxcursor-dev_1:1.1.13-1+deb7u1_i386 + libxcursor1_1:1.1.13-1+deb7u1_i386 + libxcursor1-dbg_1:1.1.13-1+deb7u1_i386 + libxdamage-dev_1:1.1.3-2_i386 + libxdamage1_1:1.1.3-2_i386 + libxdamage1-dbg_1:1.1.3-2_i386 + libxdb-dev_1.2.0-7.2_i386 + libxdb1_1.2.0-7.2_i386 + libxdelta2_1.1.3-9_i386 + libxdelta2-dev_1.1.3-9_i386 + libxdffileio-dev_0.3-1_i386 + libxdffileio0_0.3-1_i386 + libxdffileio0-dbg_0.3-1_i386 + libxdg-basedir-dev_1.1.1-2_i386 + libxdg-basedir1_1.1.1-2_i386 + libxdg-basedir1-dbg_1.1.1-2_i386 + libxdmcp-dev_1:1.1.1-1_i386 + libxdmcp6_1:1.1.1-1_i386 + libxdmcp6-dbg_1:1.1.1-1_i386 + libxdmf-dev_2.1.dfsg.1-5_i386 + libxdmf2_2.1.dfsg.1-5_i386 + libxdo-dev_1:2.20100701.2961-3+deb7u3_i386 + libxdo2_1:2.20100701.2961-3+deb7u3_i386 + libxdot4_2.26.3-14+deb7u1_i386 + libxen-4.1_4.1.4-3+deb7u1_i386 + libxen-dev_4.1.4-3+deb7u1_i386 + libxen-ocaml_4.1.4-3+deb7u1_i386 + libxen-ocaml-dev_4.1.4-3+deb7u1_i386 + libxenapi-ocaml-dev_1.3.2-15_i386 + libxenomai-dev_2.6.0-2_i386 + libxenomai1_2.6.0-2_i386 + libxenstore3.0_4.1.4-3+deb7u1_i386 + libxerces-c-dev_3.1.1-3_i386 + libxerces-c-samples_3.1.1-3_i386 + libxerces-c2-dev_2.8.0+deb1-3_i386 + libxerces-c28_2.8.0+deb1-3_i386 + libxerces-c3.1_3.1.1-3_i386 + libxerces2-java-gcj_2.11.0-6_i386 + libxext-dev_2:1.3.1-2+deb7u1_i386 + libxext6_2:1.3.1-2+deb7u1_i386 + libxext6-dbg_2:1.3.1-2+deb7u1_i386 + libxfce4menu-0.1-0_4.6.2-1_i386 + libxfce4menu-0.1-dbg_4.6.2-1_i386 + libxfce4menu-0.1-dev_4.6.2-1_i386 + libxfce4ui-1-0_4.8.1-1_i386 + libxfce4ui-1-dbg_4.8.1-1_i386 + libxfce4ui-1-dev_4.8.1-1_i386 + libxfce4util-bin_4.8.2-1_i386 + libxfce4util-dev_4.8.2-1_i386 + libxfce4util4_4.8.2-1_i386 + libxfce4util4-dbg_4.8.2-1_i386 + libxfcegui4-4_4.8.1-5_i386 + libxfcegui4-4-dbg_4.8.1-5_i386 + libxfcegui4-dev_4.8.1-5_i386 + libxfconf-0-2_4.8.1-1_i386 + libxfconf-0-2-dbg_4.8.1-1_i386 + libxfconf-0-dev_4.8.1-1_i386 + libxfixes-dev_1:5.0-4+deb7u1_i386 + libxfixes3_1:5.0-4+deb7u1_i386 + libxfixes3-dbg_1:5.0-4+deb7u1_i386 + libxfont-dev_1:1.4.5-3_i386 + libxfont1_1:1.4.5-3_i386 + libxfont1-dbg_1:1.4.5-3_i386 + libxft-dev_2.3.1-1_i386 + libxft2_2.3.1-1_i386 + libxft2-dbg_2.3.1-1_i386 + libxi-dev_2:1.6.1-1+deb7u1_i386 + libxi6_2:1.6.1-1+deb7u1_i386 + libxi6-dbg_2:1.6.1-1+deb7u1_i386 + libxine-dev_1.1.21-1+b1_i386 + libxine1_1.1.21-1+b1_i386 + libxine1-bin_1.1.21-1+b1_i386 + libxine1-console_1.1.21-1+b1_i386 + libxine1-dbg_1.1.21-1+b1_i386 + libxine1-ffmpeg_1.1.21-1+b1_i386 + libxine1-gnome_1.1.21-1+b1_i386 + libxine1-misc-plugins_1.1.21-1+b1_i386 + libxine1-x_1.1.21-1+b1_i386 + libxine2_1.2.2-4_i386 + libxine2-bin_1.2.2-4_i386 + libxine2-console_1.2.2-4_i386 + libxine2-dbg_1.2.2-4_i386 + libxine2-dev_1.2.2-4_i386 + libxine2-ffmpeg_1.2.2-4_i386 + libxine2-gnome_1.2.2-4_i386 + libxine2-misc-plugins_1.2.2-4_i386 + libxine2-vdr_1.2.2-4_i386 + libxine2-x_1.2.2-4_i386 + libxine2-xvdr_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + libxineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + libxinerama-dev_2:1.1.2-1+deb7u1_i386 + libxinerama1_2:1.1.2-1+deb7u1_i386 + libxinerama1-dbg_2:1.1.2-1+deb7u1_i386 + libxkbfile-dev_1:1.0.8-1_i386 + libxkbfile1_1:1.0.8-1_i386 + libxkbfile1-dbg_1:1.0.8-1_i386 + libxklavier-dev_5.2.1-1_i386 + libxklavier16_5.2.1-1_i386 + libxml++2.6-2_2.34.2-1_i386 + libxml++2.6-dbg_2.34.2-1_i386 + libxml++2.6-dev_2.34.2-1_i386 + libxml-bare-perl_0.47-1_i386 + libxml-commons-resolver1.1-java-gcj_1.2-7_i386 + libxml-easy-perl_0.009-1+b1_i386 + libxml-libxml-perl_2.0001+dfsg-1_i386 + libxml-libxslt-perl_1.77-1_i386 + libxml-light-ocaml_2.2-15_i386 + libxml-light-ocaml-dev_2.2-15_i386 + libxml-parser-perl_2.41-1+b1_i386 + libxml-quote-perl_1.02-2+b2_i386 + libxml-sax-expatxs-perl_1.32-1+b2_i386 + libxml-security-c-dev_1.6.1-5+deb7u2_i386 + libxml-security-c16_1.6.1-5+deb7u2_i386 + libxml-xerces-perl_2.7.0-0+deb1-3_i386 + libxml2_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxml2-dev_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils_2.8.0+dfsg1-7+nmu2_i386 + libxml2-utils-dbg_2.8.0+dfsg1-7+nmu2_i386 + libxmlada4.1_4.1-2_i386 + libxmlada4.1-dbg_4.1-2_i386 + libxmlada4.1-dev_4.1-2_i386 + libxmlezout-dbg_1.06.1-5_i386 + libxmlezout1_1.06.1-5_i386 + libxmlezout2-dev_1.06.1-5_i386 + libxmlm-ocaml-dev_1.1.0-1_i386 + libxmlplaylist-ocaml-dev_0.1.3-1+b2_i386 + libxmlrpc-c++4_1.16.33-3.2_i386 + libxmlrpc-c++4-dev_1.16.33-3.2_i386 + libxmlrpc-core-c3_1.16.33-3.2_i386 + libxmlrpc-core-c3-dev_1.16.33-3.2_i386 + libxmlrpc-epi-dev_0.54.2-1_i386 + libxmlrpc-epi0_0.54.2-1_i386 + libxmlrpc-epi0-dbg_0.54.2-1_i386 + libxmlrpc-light-ocaml-dev_0.6.1-3+b5_i386 + libxmlsec1_1.2.18-2_i386 + libxmlsec1-dev_1.2.18-2_i386 + libxmlsec1-gcrypt_1.2.18-2_i386 + libxmlsec1-gnutls_1.2.18-2_i386 + libxmlsec1-nss_1.2.18-2_i386 + libxmlsec1-openssl_1.2.18-2_i386 + libxmltok1_1.2-3_i386 + libxmltok1-dev_1.2-3_i386 + libxmltooling-dev_1.4.2-5_i386 + libxmltooling5_1.4.2-5_i386 + libxmmsclient++-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib-dev_0.8+dfsg-4_i386 + libxmmsclient++-glib1_0.8+dfsg-4_i386 + libxmmsclient++4_0.8+dfsg-4_i386 + libxmmsclient-dev_0.8+dfsg-4_i386 + libxmmsclient-glib-dev_0.8+dfsg-4_i386 + libxmmsclient-glib1_0.8+dfsg-4_i386 + libxmmsclient6_0.8+dfsg-4_i386 + libxmpi4_2.2.3b8-13_i386 + libxmpi4-dev_2.2.3b8-13_i386 + libxmu-dev_2:1.1.1-1_i386 + libxmu6_2:1.1.1-1_i386 + libxmu6-dbg_2:1.1.1-1_i386 + libxmuu-dev_2:1.1.1-1_i386 + libxmuu1_2:1.1.1-1_i386 + libxmuu1-dbg_2:1.1.1-1_i386 + libxnee-dbg_3.13-1_i386 + libxnee-dev_3.13-1_i386 + libxnee0_3.13-1_i386 + libxneur_0.15.0-1.1_i386 + libxneur-dev_0.15.0-1.1_i386 + libxosd-dev_2.2.14-2_i386 + libxosd2_2.2.14-2_i386 + libxp-dev_1:1.0.1-2+deb7u1_i386 + libxp6_1:1.0.1-2+deb7u1_i386 + libxp6-dbg_1:1.0.1-2+deb7u1_i386 + libxpa-dev_2.1.14-2_i386 + libxpa1_2.1.14-2_i386 + libxplc0.3.13_0.3.13-3_i386 + libxplc0.3.13-dev_0.3.13-3_i386 + libxpm-dev_1:3.5.10-1_i386 + libxpm4_1:3.5.10-1_i386 + libxpm4-dbg_1:3.5.10-1_i386 + libxqdbm-dev_1.8.78-2_i386 + libxqdbm3c2_1.8.78-2_i386 + libxqilla-dev_2.3.0-1_i386 + libxqilla6_2.3.0-1_i386 + libxr1_1.0-2.1_i386 + libxr1-dbg_1.0-2.1_i386 + libxr1-dev_1.0-2.1_i386 + libxrandr-dev_2:1.3.2-2+deb7u1_i386 + libxrandr2_2:1.3.2-2+deb7u1_i386 + libxrandr2-dbg_2:1.3.2-2+deb7u1_i386 + libxrender-dev_1:0.9.7-1+deb7u1_i386 + libxrender1_1:0.9.7-1+deb7u1_i386 + libxrender1-dbg_1:0.9.7-1+deb7u1_i386 + libxres-dev_2:1.0.6-1+deb7u1_i386 + libxres1_2:1.0.6-1+deb7u1_i386 + libxres1-dbg_2:1.0.6-1+deb7u1_i386 + libxsettings-client-dev_0.17-6_i386 + libxsettings-client0_0.17-6_i386 + libxsettings-client0-dbg_0.17-6_i386 + libxsettings-dev_0.11-3_i386 + libxsettings0_0.11-3_i386 + libxsettings0-dbg_0.11-3_i386 + libxslt1-dbg_1.1.26-14.1_i386 + libxslt1-dev_1.1.26-14.1_i386 + libxslt1.1_1.1.26-14.1_i386 + libxss-dev_1:1.2.2-1_i386 + libxss1_1:1.2.2-1_i386 + libxss1-dbg_1:1.2.2-1_i386 + libxstr-ocaml-dev_0.2.1-21+b3_i386 + libxt-dev_1:1.1.3-1+deb7u1_i386 + libxt6_1:1.1.3-1+deb7u1_i386 + libxt6-dbg_1:1.1.3-1+deb7u1_i386 + libxtst-dev_2:1.2.1-1+deb7u1_i386 + libxtst6_2:1.2.1-1+deb7u1_i386 + libxtst6-dbg_2:1.2.1-1+deb7u1_i386 + libxv-dev_2:1.0.7-1+deb7u1_i386 + libxv1_2:1.0.7-1+deb7u1_i386 + libxv1-dbg_2:1.0.7-1+deb7u1_i386 + libxvidcore-dev_2:1.3.2-9_i386 + libxvidcore4_2:1.3.2-9_i386 + libxvmc-dev_2:1.0.7-1+deb7u2_i386 + libxvmc1_2:1.0.7-1+deb7u2_i386 + libxvmc1-dbg_2:1.0.7-1+deb7u2_i386 + libxxf86dga-dev_2:1.1.3-2+deb7u1_i386 + libxxf86dga1_2:1.1.3-2+deb7u1_i386 + libxxf86dga1-dbg_2:1.1.3-2+deb7u1_i386 + libxxf86vm-dev_1:1.1.2-1+deb7u1_i386 + libxxf86vm1_1:1.1.2-1+deb7u1_i386 + libxxf86vm1-dbg_1:1.1.2-1+deb7u1_i386 + libxy-bin_0.8-1+b1_i386 + libxy-dev_0.8-1+b1_i386 + libxy3_0.8-1+b1_i386 + libyahoo2-11_1.0.1-1_i386 + libyahoo2-dev_1.0.1-1_i386 + libyajl-dev_2.0.4-2_i386 + libyajl2_2.0.4-2_i386 + libyajl2-dbg_2.0.4-2_i386 + libyaml-0-2_0.1.4-2+deb7u2_i386 + libyaml-0-2-dbg_0.1.4-2+deb7u2_i386 + libyaml-cpp-dev_0.3.0-1_i386 + libyaml-cpp0.3_0.3.0-1_i386 + libyaml-dev_0.1.4-2+deb7u2_i386 + libyaml-libyaml-perl_0.38-3_i386 + libyaml-syck-perl_1.20-1_i386 + libyate4.1.0_4.1.0-1~dfsg-3_i386 + libyaz4_4.2.30-2_i386 + libyaz4-dev_4.2.30-2_i386 + libyelp-dev_3.4.2-1+b1_i386 + libyelp0_3.4.2-1+b1_i386 + libygl4_4.2e-4_i386 + libygl4-dev_4.2e-4_i386 + libykclient-dev_2.6-1_i386 + libykclient3_2.6-1_i386 + libykpers-1-1_1.7.0-1_i386 + libykpers-1-dev_1.7.0-1_i386 + libyojson-ocaml_1.0.3-1_i386 + libyojson-ocaml-dev_1.0.3-1_i386 + libytnef0_1.5-4_i386 + libytnef0-dev_1.5-4_i386 + libyubikey-dev_1.8-1_i386 + libyubikey0_1.8-1_i386 + libz80ex-dev_1.1.19-3_i386 + libz80ex1_1.1.19-3_i386 + libzarith-ocaml_1.1-2_i386 + libzarith-ocaml-dev_1.1-2_i386 + libzbar-dev_0.10+doc-8_i386 + libzbar0_0.10+doc-8_i386 + libzbargtk-dev_0.10+doc-8_i386 + libzbargtk0_0.10+doc-8_i386 + libzbarqt-dev_0.10+doc-8_i386 + libzbarqt0_0.10+doc-8_i386 + libzeep-dev_2.9.0-2_i386 + libzeep2.9_2.9.0-2_i386 + libzeitgeist-1.0-1_0.3.18-1_i386 + libzeitgeist-1.0-1-dbg_0.3.18-1_i386 + libzeitgeist-dev_0.3.18-1_i386 + libzen-dev_0.4.27-2_i386 + libzen0_0.4.27-2_i386 + libzephyr-dev_3.0.2-2_i386 + libzephyr4_3.0.2-2_i386 + libzephyr4-krb5_3.0.2-2_i386 + libzerg-perl_1.0.4-2+b1_i386 + libzerg0_1.0.7-3_i386 + libzerg0-dbg_1.0.7-3_i386 + libzerg0-dev_1.0.7-3_i386 + libzeroc-ice-ruby1.8_3.4.2-8.2_i386 + libzeroc-ice34_3.4.2-8.2_i386 + libzeroc-ice34-dbg_3.4.2-8.2_i386 + libzeroc-ice34-dev_3.4.2-8.2_i386 + libzinnia-dev_0.06-1+b1_i386 + libzinnia0_0.06-1+b1_i386 + libzinnia0-dbg_0.06-1+b1_i386 + libzip-dev_0.10.1-1.1_i386 + libzip-ocaml_1.04-6+b3_i386 + libzip-ocaml-dev_1.04-6+b3_i386 + libzip2_0.10.1-1.1_i386 + libzipios++-dev_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzipios++0c2a_0.1.5.9+cvs.2007.04.28-5.1_i386 + libzita-alsa-pcmi-dev_0.2.0-1_i386 + libzita-alsa-pcmi0_0.2.0-1_i386 + libzita-convolver-dev_3.1.0-2_i386 + libzita-convolver3_3.1.0-2_i386 + libzita-resampler-dev_1.1.0-3_i386 + libzita-resampler1_1.1.0-3_i386 + libzlcore-dev_0.12.10dfsg-8_i386 + libzlcore0.12_0.12.10dfsg-8_i386 + libzltext-dev_0.12.10dfsg-8_i386 + libzltext0.12_0.12.10dfsg-8_i386 + libzlui-gtk_0.12.10dfsg-8_i386 + libzlui-qt4_0.12.10dfsg-8_i386 + libzmq-dbg_2.2.0+dfsg-2_i386 + libzmq-dev_2.2.0+dfsg-2_i386 + libzmq1_2.2.0+dfsg-2_i386 + libzn-poly-0.8_0.8-1.1_i386 + libzn-poly-dev_0.8-1.1_i386 + libzookeeper-mt-dev_3.3.5+dfsg1-2_i386 + libzookeeper-mt2_3.3.5+dfsg1-2_i386 + libzookeeper-st-dev_3.3.5+dfsg1-2_i386 + libzookeeper-st2_3.3.5+dfsg1-2_i386 + libzookeeper2_3.3.5+dfsg1-2_i386 + libzorp-dev_3.9.5-4_i386 + libzorp3.9_3.9.5-4_i386 + libzorpll-dev_3.9.1.3-1_i386 + libzorpll3.9-1_3.9.1.3-1_i386 + libzorpll3.9-1-dbg_3.9.1.3-1_i386 + libzorpll3.9-1-memtrace_3.9.1.3-1_i386 + libzrtpcpp-dev_2.0.0-3_i386 + libzrtpcpp2_2.0.0-3_i386 + libzthread-2.3-2_2.3.2-7_i386 + libzthread-dev_2.3.2-7_i386 + libzvbi-dev_0.2.33-6_i386 + libzvbi0_0.2.33-6_i386 + libzzip-0-13_0.13.56-1.1_i386 + libzzip-dev_0.13.56-1.1_i386 + licq_1.6.1-3_i386 + licq-plugin-autoreply_1.6.1-3_i386 + licq-plugin-console_1.6.1-3_i386 + licq-plugin-forwarder_1.6.1-3_i386 + licq-plugin-jabber_1.6.1-3_i386 + licq-plugin-kde4_1.6.1-3_i386 + licq-plugin-msn_1.6.1-3_i386 + licq-plugin-osd_1.6.1-3_i386 + licq-plugin-qt4_1.6.1-3_i386 + licq-plugin-rms_1.6.1-3_i386 + lie_2.2.2+dfsg-2_i386 + liece-dcc_2.0+0.20030527cvs-11_i386 + lifelines_3.0.61-2_i386 + lifeograph_0.8.2.dfsg-1_i386 + liferea_1.8.6-1.1_i386 + liferea-dbg_1.8.6-1.1_i386 + liggghts_1.5.3-1_i386 + lightdm_1.2.2-4_i386 + lightdm-gtk-greeter_1.1.6-2_i386 + lightdm-vala_1.2.2-4_i386 + lightsoff_1:3.4.2-3_i386 + lightspark_0.6.0.1-2_i386 + lightspark-common_0.6.0.1-2_i386 + lightspark-dbg_0.6.0.1-2_i386 + lightspeed_1.2a-8+b1_i386 + lighttpd_1.4.31-4+deb7u2_i386 + lighttpd-mod-cml_1.4.31-4+deb7u2_i386 + lighttpd-mod-magnet_1.4.31-4+deb7u2_i386 + lighttpd-mod-mysql-vhost_1.4.31-4+deb7u2_i386 + lighttpd-mod-trigger-b4-dl_1.4.31-4+deb7u2_i386 + lighttpd-mod-webdav_1.4.31-4+deb7u2_i386 + lilo_1:23.2-4_i386 + lilv-utils_0.14.2~dfsg0-4_i386 + lilypond_2.14.2-4_i386 + linaro-image-tools_2012.06-1_i386 + lincity_1.13.1-11_i386 + lincity-ng_2.0-2+b2_i386 + lingot_0.9.1-2_i386 + link-grammar_4.7.4-2_i386 + link-monitor-applet_3.0-8_i386 + link-monitor-applet-dbg_3.0-8_i386 + linkchecker_7.9-2_i386 + links_2.7-1+deb7u1_i386 + links2_2.7-1+deb7u1_i386 + linphone_3.5.2-10_i386 + linphone-dbg_3.5.2-10_i386 + linphone-nogtk_3.5.2-10_i386 + linpsk_1.1-1.1_i386 + linsmith_0.99.21-1_i386 + lintex_1.11-1_i386 + linthesia_0.4.2-3_i386 + linux-headers-2.6-486_3.2+46_i386 + linux-headers-2.6-686-pae_3.2+46_i386 + linux-headers-2.6-amd64_3.2+46_i386 + linux-headers-3.2.0-4-486_3.2.54-2_i386 + linux-headers-3.2.0-4-686-pae_3.2.54-2_i386 + linux-headers-3.2.0-4-all_3.2.54-2_i386 + linux-headers-3.2.0-4-all-i386_3.2.54-2_i386 + linux-headers-3.2.0-4-amd64_3.2.54-2_i386 + linux-headers-3.2.0-4-common_3.2.54-2_i386 + linux-headers-3.2.0-4-common-rt_3.2.54-2_i386 + linux-headers-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-headers-486_3.2+46_i386 + linux-headers-686-pae_3.2+46_i386 + linux-headers-amd64_3.2+46_i386 + linux-headers-rt-686-pae_3.2+46_i386 + linux-igd_1.0+cvs20070630-4_i386 + linux-image-2.6-486_3.2+46_i386 + linux-image-2.6-686_3.2+46_i386 + linux-image-2.6-686-bigmem_3.2+46_i386 + linux-image-2.6-686-pae_3.2+46_i386 + linux-image-2.6-amd64_3.2+46_i386 + linux-image-3.2.0-4-486_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-686-pae-dbg_3.2.54-2_i386 + linux-image-3.2.0-4-amd64_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae_3.2.54-2_i386 + linux-image-3.2.0-4-rt-686-pae-dbg_3.2.54-2_i386 + linux-image-486_3.2+46_i386 + linux-image-686_3.2+46_i386 + linux-image-686-bigmem_3.2+46_i386 + linux-image-686-pae_3.2+46_i386 + linux-image-amd64_3.2+46_i386 + linux-image-rt-686-pae_3.2+46_i386 + linux-kbuild-3.2_3.2.17-1_i386 + linux-libc-dev_3.2.54-2_i386 + linux-tools-3.2_3.2.17-1_i386 + linux-wlan-ng_0.2.9+dfsg-5_i386 + linuxdcpp_1.1.0-1+b2_i386 + linuxdoc-tools_0.9.68+b1_i386 + linuxinfo_1.1.8-39_i386 + linuxlogo_5.11-1_i386 + linuxvnc_0.9.9+dfsg-1_i386 + lio-utils_3.1+git2.fd0b34fd-2_i386 + liquidsoap_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-all_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-alsa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ao_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-camlimages_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-dssi_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-faad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-flac_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gavl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gd_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-graphics_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-gstreamer_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-icecast_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-jack_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ladspa_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lame_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lastfm_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-lo_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-mad_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-ogg_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-oss_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-portaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-pulseaudio_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-samplerate_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-schroedinger_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-sdl_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-soundtouch_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-speex_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-taglib_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-theora_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-voaacenc_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-vorbis_1.0.1+repack1-1.1_i386 + liquidsoap-plugin-xmlplaylist_1.0.1+repack1-1.1_i386 + liquidwar_5.6.4-3+b1_i386 + liquidwar-server_5.6.4-3+b1_i386 + lirc_0.9.0~pre1-1_i386 + lirc-x_0.9.0~pre1-1_i386 + lisaac_1:0.39~rc1-1_i386 + listaller_0.5.5-2_i386 + listaller-devtools_0.5.5-2_i386 + listaller-libuild_0.5.5-2_i386 + literki_0.0.0+20100113.git1da40724-1_i386 + littler_0.1.5-1_i386 + littlewizard_1.2.2-1_i386 + live-f1_0.2.10-1_i386 + livemedia-utils_2012.05.17-1_i386 + lives_1.6.2~ds1-2_i386 + lives-dbg_1.6.2~ds1-2_i386 + liwc_1.21-1_i386 + lksctp-tools_1.0.11+dfsg-2_i386 + ll-scope_0.2.1-3_i386 + lldpad_0.9.44-1_i386 + lldpad-dev_0.9.44-1_i386 + lldpd_0.5.7-2_i386 + llvm_1:3.0-14+nmu2_i386 + llvm-2.9_2.9+dfsg-7_i386 + llvm-2.9-dev_2.9+dfsg-7_i386 + llvm-2.9-runtime_2.9+dfsg-7_i386 + llvm-3.0_3.0-10_i386 + llvm-3.0-dev_3.0-10_i386 + llvm-3.0-runtime_3.0-10_i386 + llvm-3.1_3.1-1_i386 + llvm-3.1-dev_3.1-1_i386 + llvm-3.1-runtime_3.1-1_i386 + llvm-dev_1:3.0-14+nmu2_i386 + llvm-runtime_1:3.0-14+nmu2_i386 + lm-sensors_1:3.3.2-2+deb7u1_i386 + lmarbles_1.0.7-1.1_i386 + lmemory_0.6c-6_i386 + lmms_0.4.10-2.3_i386 + lnpd_0.9.0-7_i386 + loadlin_1.6f-1_i386 + loadmeter_1.20-6_i386 + loadwatch_1.0+1.1alpha1-5_i386 + locales-all_2.13-38+deb7u1_i386 + locate_4.4.2-4_i386 + lockfile-progs_0.1.17_i386 + lockout_0.2.3-2_i386 + logapp_0.15-1_i386 + logcentral_2.7-1_i386 + logcentral-tools_2.7-1_i386 + logfs-tools_20110927-1_i386 + logfs-tools-dbg_20110927-1_i386 + login_1:4.1.5.1-1_i386 + login-duo_1.8-1_i386 + logjam_4.6.2-1_i386 + logrotate_3.8.1-4_i386 + logstalgia_1.0.3-3_i386 + logtool_1.2.8-8_i386 + logtools_0.13d_i386 + logtop_0.4.3-1_i386 + lokalize_4:4.8.4+dfsg-1_i386 + loki_2.4.7.4-4_i386 + longomatch_0.16.8+git20110626-1+b2_i386 + longrun_0.9-22_i386 + lookup_1.08b-11_i386 + looptools_2.7-1_i386 + loqui_0.5.3-3_i386 + lordsawar_0.2.0-2.1_i386 + lostirc_0.4.6-4_i386 + lout_3.39-1_i386 + love_0.8.0-1+deb7u1_i386 + love-dbg_0.8.0-1+deb7u1_i386 + lowpan-test-tools_0.2.2-2.1_i386 + lowpan-tools_0.2.2-2.1_i386 + lp-solve_5.5.0.13-7_i386 + lpe_1.2.6.13-0.1_i386 + lphdisk_0.9.1.ds1-1_i386 + lpr_1:2008.05.17+nmu1_i386 + lprng_3.8.B-2_i386 + lrslib_0.42c-1+b1_i386 + lrzip_0.608-2_i386 + lrzsz_0.12.21-5_i386 + lsat_0.9.7.1-2_i386 + lsb-core_4.1+Debian8+deb7u1_i386 + lsb-cxx_4.1+Debian8+deb7u1_i386 + lsb-desktop_4.1+Debian8+deb7u1_i386 + lsb-graphics_4.1+Debian8+deb7u1_i386 + lsb-languages_4.1+Debian8+deb7u1_i386 + lsb-multimedia_4.1+Debian8+deb7u1_i386 + lsb-printing_4.1+Debian8+deb7u1_i386 + lsb-security_4.1+Debian8+deb7u1_i386 + lsdvd_0.16-3+b1_i386 + lsh-client_2.0.4-dfsg-11_i386 + lsh-server_2.0.4-dfsg-11_i386 + lsh-utils_2.0.4-dfsg-11_i386 + lshw_02.16-1_i386 + lshw-gtk_02.16-1_i386 + lskat_4:4.8.4-3_i386 + lsmbox_2.1.2-1_i386 + lsof_4.86+dfsg-1_i386 + lsscsi_0.26-2_i386 + lswm_0.6.00+svn201-3+b1_i386 + lsyncd_2.0.7-3_i386 + ltpanel_0.2-5_i386 + ltrace_0.5.3-2.1_i386 + ltris_1.0.18-1_i386 + ltsp-client_5.4.2-6_i386 + ltsp-client-core_5.4.2-6_i386 + ltspfs_1.1-2_i386 + ltspfsd-core_1.1-2_i386 + ltt-bin_0.89-05122011-1_i386 + lttoolbox_3.1.0-1.1_i386 + lttv_0.12.38-21032011-1+b1_i386 + lttv-dev_0.12.38-21032011-1+b1_i386 + lua-apr_0.23.2-1_i386 + lua-apr-dev_0.23.2-1_i386 + lua-bitop_1.0.2-1_i386 + lua-bitop-dev_1.0.2-1_i386 + lua-curl_0.3.0-7_i386 + lua-curl-dev_0.3.0-7_i386 + lua-curses_5.1.19-2_i386 + lua-curses-dev_5.1.19-2_i386 + lua-cyrussasl_1.0.0-4_i386 + lua-cyrussasl-dev_1.0.0-4_i386 + lua-dbi-mysql_0.5+svn78-4_i386 + lua-dbi-mysql-dev_0.5+svn78-4_i386 + lua-dbi-postgresql_0.5+svn78-4_i386 + lua-dbi-postgresql-dev_0.5+svn78-4_i386 + lua-dbi-sqlite3_0.5+svn78-4_i386 + lua-dbi-sqlite3-dev_0.5+svn78-4_i386 + lua-event_0.4.1-2_i386 + lua-event-dev_0.4.1-2_i386 + lua-expat_1.2.0-5_i386 + lua-expat-dev_1.2.0-5_i386 + lua-filesystem_1.5.0+16+g84f1af5-1_i386 + lua-filesystem-dev_1.5.0+16+g84f1af5-1_i386 + lua-iconv_7-1_i386 + lua-iconv-dev_7-1_i386 + lua-ldap_1.1.0-1-geeac494-3_i386 + lua-ldap-dev_1.1.0-1-geeac494-3_i386 + lua-lgi_0.6.2-1_i386 + lua-lgi-dbg_0.6.2-1_i386 + lua-lgi-dev_0.6.2-1_i386 + lua-lpeg_0.10.2-5_i386 + lua-lpeg-dev_0.10.2-5_i386 + lua-md5_1.1.2-6_i386 + lua-md5-dev_1.1.2-6_i386 + lua-posix_5.1.19-2_i386 + lua-posix-dev_5.1.19-2_i386 + lua-rex-onig_2.6.0-2_i386 + lua-rex-onig-dev_2.6.0-2_i386 + lua-rex-pcre_2.6.0-2_i386 + lua-rex-pcre-dev_2.6.0-2_i386 + lua-rex-posix_2.6.0-2_i386 + lua-rex-posix-dev_2.6.0-2_i386 + lua-rex-tre_2.6.0-2_i386 + lua-rex-tre-dev_2.6.0-2_i386 + lua-rings_1.2.3-1_i386 + lua-rings-dev_1.2.3-1_i386 + lua-sec_0.4.1-1_i386 + lua-sec-dev_0.4.1-1_i386 + lua-socket_2.0.2-8_i386 + lua-socket-dev_2.0.2-8_i386 + lua-sql-mysql_2.3.0-1+build0_i386 + lua-sql-mysql-dev_2.3.0-1+build0_i386 + lua-sql-postgres_2.3.0-1+build0_i386 + lua-sql-postgres-dev_2.3.0-1+build0_i386 + lua-sql-sqlite3_2.3.0-1+build0_i386 + lua-sql-sqlite3-dev_2.3.0-1+build0_i386 + lua-svn_0.4.0-7_i386 + lua-svn-dev_0.4.0-7_i386 + lua-wsapi-fcgi_1.5-3_i386 + lua-wsapi-fcgi-dev_1.5-3_i386 + lua-zip_1.2.3-11_i386 + lua-zip-dev_1.2.3-11_i386 + lua-zlib_0.2-1_i386 + lua-zlib-dev_0.2-1_i386 + lua5.1_5.1.5-4_i386 + lua5.2_5.2.1-3_i386 + lua50_5.0.3-6_i386 + luakit_2012.03.25-1_i386 + luatex_0.70.1.20120524-3_i386 + luckybackup_0.4.7-2_i386 + luminance-hdr_2.2.1-3_i386 + lunar_2.2-3.1_i386 + lunzip_1.1-2_i386 + lunzip-dbg_1.1-2_i386 + luola_1.3.2-9_i386 + lurker_2.3-3_i386 + lusernet.app_0.4.2-6+b2_i386 + lush_1.2.1-9+cvs20110227+nmu1_i386 + lutefisk_1.0.5a.cleaned-1_i386 + luvcview_1:0.2.6-6_i386 + lv_4.51-2_i386 + lv2-c++-tools_1.0.4-3+b1_i386 + lv2-dev_1.0.0~dfsg2-2_i386 + lv2-examples_1.0.0~dfsg2-2_i386 + lv2fil_2.0+20100312.git18130f5a+dfsg0-2_i386 + lv2file_0.83-1_i386 + lv2proc_0.4.0-4_i386 + lv2vocoder_1-3_i386 + lvm2_2.02.95-8_i386 + lwatch_0.6-1_i386 + lwm_1.2.2-4_i386 + lwresd_1:9.8.4.dfsg.P1-6+nmu2+deb7u1_i386 + lx-gdb_1.03-14_i386 + lxappearance_0.5.2-1_i386 + lxappearance-dbg_0.5.2-1_i386 + lxappearance-obconf_0.2.0-4_i386 + lxappearance-obconf-dbg_0.2.0-4_i386 + lxc_0.8.0~rc1-8+deb7u2_i386 + lxc-dbg_0.8.0~rc1-8+deb7u2_i386 + lxc-dev_0.8.0~rc1-8+deb7u2_i386 + lxinput_0.3.2-1_i386 + lxinput-dbg_0.3.2-1_i386 + lxlauncher_0.2.2-3_i386 + lxlauncher-dbg_0.2.2-3_i386 + lxmms2_0.1.3-1_i386 + lxmusic_0.4.4+git20100802-3_i386 + lxpanel_0.5.10-1_i386 + lxpanel-dbg_0.5.10-1_i386 + lxpolkit_0.1.0-4_i386 + lxpolkit-dbg_0.1.0-4_i386 + lxrandr_0.1.2-3_i386 + lxrandr-dbg_0.1.2-3_i386 + lxsession_0.4.6.1-4_i386 + lxsession-dbg_0.4.6.1-4_i386 + lxsession-edit_0.2.0-3_i386 + lxsession-edit-dbg_0.2.0-3_i386 + lxshortcut_0.1.2-3_i386 + lxshortcut-dbg_0.1.2-3_i386 + lxtask_0.1.4-3_i386 + lxtask-dbg_0.1.4-3_i386 + lxterminal_0.1.11-4_i386 + lxterminal-dbg_0.1.11-4_i386 + lynkeos.app_1.2-6+b2_i386 + lynx-cur_2.8.8dev.12-2_i386 + lyskom-server_2.1.2-13_i386 + lyx_2.0.3-3_i386 + lyx-dbg_2.0.3-3_i386 + lzip_1.13-3_i386 + lzip-dbg_1.13-3_i386 + lziprecover_1.13-2_i386 + lziprecover-dbg_1.13-2_i386 + lzma_9.22-2_i386 + lzma-alone_9.22-2_i386 + lzop_1.03-3_i386 + m-tx_0.60d-5_i386 + m16c-flash_0.1-1.1_i386 + m17n-im-config_0.9.0-3_i386 + m17n-lib-bin_1.6.3-2_i386 + m17n-lib-mimx_1.6.3-2_i386 + m2vrequantiser_1.1-1_i386 + m4_1.4.16-3_i386 + macchanger_1.5.0-9_i386 + mace2_3.3f-1.1_i386 + mach_0.9.1-3.1_i386 + macopix-gtk2_1.7.4-4_i386 + mactelnet-client_0.3.4-1_i386 + mactelnet-server_0.3.4-1_i386 + macutils_2.0b3-16_i386 + madbomber_0.2.5-5_i386 + madplay_0.15.2b-8_i386 + madwimax_0.1.1-1_i386 + maelstrom_1.4.3-L3.0.6+main-2_i386 + mafft_6.864-1_i386 + magic_7.5.220-1_i386 + magicfilter_1.2-64_i386 + magicrescue_1.1.8-1_i386 + magics++_2.14.11-4_i386 + mah-jong_1.11-2_i386 + mahjongg_1:3.4.2-3_i386 + mail-notification_5.4.dfsg.1-6+b1_i386 + mail-notification-evolution_5.4.dfsg.1-6+b1_i386 + mailagent_1:3.1-74-0.2_i386 + mailavenger_0.8.3rc1-1_i386 + mailcheck_1.91.2-2_i386 + maildir-filter_1.20-3_i386 + maildir-utils_0.9.8.4-3+deb7u1_i386 + maildir-utils-extra_0.9.8.4-3+deb7u1_i386 + maildrop_2.5.5-2_i386 + mailfilter_0.8.2-4_i386 + mailfront_1.16-1_i386 + mailman_1:2.1.15-1_i386 + mailsync_5.2.2-3_i386 + mailtextbody_0.1.2-1_i386 + mailto_1.3.2-3_i386 + mailutils_1:2.99.97-3_i386 + mailutils-comsatd_1:2.99.97-3_i386 + mailutils-dbg_1:2.99.97-3_i386 + mailutils-guile_1:2.99.97-3_i386 + mailutils-imap4d_1:2.99.97-3_i386 + mailutils-mh_1:2.99.97-3_i386 + mailutils-pop3d_1:2.99.97-3_i386 + mairix_0.22-1_i386 + maitreya_6.0.5-2_i386 + make_3.81-8.2_i386 + makebootfat_1.4-5_i386 + makedic_6.5deb2-8_i386 + makedumpfile_1.4.3-1_i386 + makefs_20100306-3_i386 + makejvf_1.1a+0-2_i386 + makexvpics_1.0.1-2_i386 + maki_1.4.0+dfsg-1_i386 + maki-plugins_1.4.0+dfsg-1_i386 + malaga-bin_7.12-4_i386 + man-db_2.6.2-1_i386 + man2html_1.6g-6_i386 + man2html-base_1.6g-6_i386 + mana_0.6.1-2_i386 + mana-dbg_0.6.1-2_i386 + mancala_1.0.1-4_i386 + mandelbulber_1:1.11-1_i386 + mandos-client_1.5.5-1_i386 + mangler_1.2.4-1_i386 + mango-lassi_001+dfsg-5_i386 + mapnik-utils_2.0.0+ds1-3+b4_i386 + mapserver-bin_6.0.1-3.2+deb7u2_i386 + maptool_0.5.0~svn5126+dfsg.1-3_i386 + maq_0.7.1-5_i386 + maqview_0.2.5-4_i386 + maradns_1.4.12-5_i386 + maradns-zoneserver_1.4.12-5_i386 + marble_4:4.8.4-3_i386 + marble-dbg_4:4.8.4-3_i386 + marble-plugins_4:4.8.4-3_i386 + maria_1.3.5-4_i386 + masqmail_0.2.30-1_i386 + massxpert_3.2.3-1_i386 + massxpert-dbg_3.2.3-1_i386 + matanza_0.13+ds1-1_i386 + matchbox-desktop_2.0-4_i386 + matchbox-keyboard_0.1+svn20080916-9+b1_i386 + matchbox-keyboard-im_0.1+svn20080916-9+b1_i386 + matchbox-panel_0.9.3-8_i386 + matchbox-panel-manager_0.1-6_i386 + matchbox-window-manager_1.2-osso21-1+b1_i386 + mathgl_1.11.2-17_i386 + mathomatic_15.8.2-2_i386 + mathomatic-primes_15.8.2-2_i386 + mathtex_1.03-1_i386 + mathwar_0.2.5-2+b1_i386 + matita_0.99.1-1_i386 + matroxset_0.4-8_i386 + maude_2.6-2_i386 + mawk_1.3.3-17_i386 + maxima_5.27.0-3_i386 + maximus_0.4.14-3_i386 + mayavi2_4.1.0-1_i386 + mazeofgalious_0.62.dfsg2-3_i386 + mbmon_2.05-6_i386 + mboxgrep_0.7.9-1_i386 + mbr_1.1.11-5+b1_i386 + mbt_3.2.8-1_i386 + mbtserver_0.5-2_i386 + mbuffer_20110119-2_i386 + mbw_1.2.2-1_i386 + mc_3:4.8.3-10_i386 + mc-dbg_3:4.8.3-10_i386 + mcabber_0.10.1-3_i386 + mccs_1:1.1-2_i386 + mcdp_0.4-5_i386 + mcelog_1.0~pre3-72-gcbd4da4-1_i386 + mcl_1:12-068-1_i386 + mcp-plugins_0.4.0-2_i386 + mcpp_2.7.2-1.1_i386 + mcrl2_201202.0-2+b1_i386 + mcron_1.0.6-1+b1_i386 + mcrypt_2.6.8-1.3_i386 + md5deep_4.2-1_i386 + mda-lv2_1.0.0~dfsg0-1_i386 + mdadm_3.2.5-5_i386 + mdbtools_0.7-1+deb7u1_i386 + mdbtools-dbg_0.7-1+deb7u1_i386 + mdbtools-dev_0.7-1+deb7u1_i386 + mdbtools-gmdb_0.7-1+deb7u1_i386 + mdbus2_2.3.0-1_i386 + mdetect_0.5.2.3_i386 + mdf2iso_0.3.0-2_i386 + mdk_1.2.6+dfsg-1_i386 + mdm_0.1.3-2_i386 + mdns-scan_0.5-1_i386 + me-tv_1.3.7-0.2_i386 + mecab_0.99.3-3_i386 + mecab-utils_0.99.3-3_i386 + medcon_0.10.7-1+b2_i386 + mediainfo_0.7.58-1_i386 + mediainfo-gui_0.7.58-1_i386 + mediatomb-common_0.12.1-4+b1_i386 + mediatomb-dbg_0.12.1-4+b1_i386 + mediawiki-math_2:1.0+git20120528-6_i386 + mediawiki-math-texvc_2:1.0+git20120528-6_i386 + medit_1.0.93-1_i386 + mednafen_0.8.D.3-6_i386 + medusa_2.0-3.1_i386 + meep_1.1.1-8_i386 + meep-lam4_1.1.1-10~deb7u1_i386 + meep-mpi-default_1.1.1-10~deb7u1_i386 + meep-mpich2_1.1.1-10~deb7u1_i386 + meep-openmpi_1.1.1-9~deb7u1_i386 + megaglest_3.6.0.3-1.2_i386 + megaglest-dbg_3.6.0.3-1.2_i386 + melt_0.8.0-4_i386 + melting_4.3c-2_i386 + members_20080128-5_i386 + memcached_1.4.13-0.2+deb7u1_i386 + memcachedb_1.2.0-9_i386 + memdump_1.01-6.1_i386 + memlockd_1.1.1_i386 + memstat_0.9_i386 + memtest86_4.0s-1_i386 + memtest86+_4.20-1.1_i386 + memtester_4.2.2-1_i386 + mencoder_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mendexk_2.6e-3.2_i386 + menhir_20120123.dfsg-1_i386 + mensis_0.0.080507-3_i386 + menu_2.1.46_i386 + mercurial_2.2.2-3_i386 + mergelog_4.5.1-9_i386 + merkaartor_0.18.1-3_i386 + mesa-common-dev_8.0.5-4+deb7u2_i386 + mesa-utils_8.0.1-2+b3_i386 + meshlab_1.3.0a+dfsg1-3_i386 + meshs3d_0.2.2-8_i386 + metacam_1.2-5_i386 + metacity_1:2.34.3-4_i386 + metalink_0.3.6-2+b1_i386 + metapixel_1.0.2-7.1_i386 + metar_20061030.1-2+b3_i386 + metastore_1+20080623+debian-3_i386 + meterbridge_0.9.2-11_i386 + meterec_0.8~ds0-1+b1_i386 + mew-beta-bin_7.0.50~6.5~rc2+0.20120405-1_i386 + mew-bin_1:6.4-2_i386 + mffm-fftw-dev_1.7-3_i386 + mffm-fftw1_1.7-3_i386 + mftrace_1.2.17-1_i386 + mg_20110905-1.1_i386 + mga-vid-common_2.6.32-1_i386 + mga-vid-source_2.6.32-1_i386 + mgdiff_1.0-29_i386 + mgen_5.02+dfsg2-3_i386 + mgetty_1.1.36-1.6_i386 + mgetty-fax_1.1.36-1.6_i386 + mgetty-pvftools_1.1.36-1.6_i386 + mgetty-viewfax_1.1.36-1.6_i386 + mgetty-voice_1.1.36-1.6_i386 + mgp_1.13a+upstream20090219-6_i386 + mgt_2.31-6_i386 + mhc-utils_0.25.1+20120403-2_i386 + mhddfs_0.1.39_i386 + mhwaveedit_1.4.21-2_i386 + mic2_0.24.12-1_i386 + micro-httpd_20051212-15_i386 + micro-inetd_20050629-5_i386 + micro-proxy_20021030+debian-5_i386 + microcom_2012.06.0-2_i386 + microdc2_0.15.6-2_i386 + micropolis_0.0.20071228-5_i386 + midish_1.0.4-1.1_i386 + midori_0.4.3+dfsg-0.1_i386 + midori-dbg_0.4.3+dfsg-0.1_i386 + mig_1.3.1.99.git20120630-1_i386 + mii-diag_2.11-3+b1_i386 + mikmod_3.2.1-4_i386 + milkytracker_0.90.85+dfsg-2.2_i386 + milter-greylist_4.3.9-1_i386 + mimedefang_2.71-3_i386 + mimetex_1.73-2_i386 + minbar_0.2.1-7_i386 + minbif_1:1.0.5+git20120508-2.1_i386 + minbif-common_1:1.0.5+git20120508-2.1_i386 + minbif-dbg_1:1.0.5+git20120508-2.1_i386 + minc-tools_2.1.10-1+b1_i386 + minetest_0.3.1+dfsg-4_i386 + minetest-dbg_0.3.1+dfsg-4_i386 + minetest-server_0.3.1+dfsg-4_i386 + mingetty_1.08-2_i386 + mingw-ocaml_3.12.1+debian3_i386 + mingw-w64-tools_2.0.3-1_i386 + mingw32_4.2.1.dfsg-2_i386 + mingw32-binutils_2.20-0.2_i386 + mini-httpd_1.19-9.3_i386 + minicom_2.6.1-1_i386 + minidjvu_0.8.svn.2010.05.06+dfsg-0.2_i386 + minidlna_1.0.24+dfsg-1_i386 + minimodem_0.8.1-1_i386 + minisapserver_0.3.6-1_i386 + minisat_1:2.2.1-3_i386 + minisat+_1.0-2_i386 + minisat2_1:2.2.1-3_i386 + minissdpd_1.1.20120121-1_i386 + ministat_20100628-1_i386 + minit_0.10-5_i386 + miniupnpc_1.5-2_i386 + minpack-dev_19961126+dfsg1-1_i386 + mira-assembler_3.4.0.1-3_i386 + mirage_0.9.5.1-1.1+b1_i386 + miredo_1.2.3-1.1_i386 + miredo-server_1.2.3-1.1_i386 + miro_4.0.4-1_i386 + mirrormagic_2.0.2.0deb1-11_i386 + misery_0.2-1_i386 + missidentify_1.0-6_i386 + mistelix_0.33-3+b1_i386 + mit-scheme_9.1-1_i386 + mit-scheme-dbg_9.1-1_i386 + mitmproxy_0.8-2_i386 + mitools_1.8.5-2_i386 + miwm_1.1-3_i386 + mixal_1.08-11_i386 + mixer.app_1.8.0-5_i386 + mixmaster_3.0.0-6_i386 + mixxx_1.10.1~dfsg0-1_i386 + mkcue_1-2.1_i386 + mkelfimage_2.7-7_i386 + mklibs-copy_0.1.34_i386 + mknbi_1.4.4-9_i386 + mknfonts.tool_0.5-11+b3_i386 + mksh_40.9.20120630-7_i386 + mktorrent_1.0-4_i386 + mkvtoolnix_5.6.0-1_i386 + mkvtoolnix-gui_5.6.0-1_i386 + ml-burg_110.74-2_i386 + ml-lex_110.74-2_i386 + ml-lpt_110.74-2_i386 + ml-nlffigen_110.74-2_i386 + ml-yacc_110.74-2_i386 + mldonkey-gui_3.1.2-1_i386 + mldonkey-server_3.1.2-1_i386 + mlmmj_1.2.18.0-2_i386 + mlocate_0.23.1-1_i386 + mlock_8:2007f~dfsg-2_i386 + mlpost_0.8.1-3_i386 + mlterm_3.1.2-1.3_i386 + mlterm-common_3.1.2-1.3_i386 + mlterm-im-ibus_3.1.2-1.3_i386 + mlterm-im-m17nlib_3.1.2-1.3_i386 + mlterm-im-scim_3.1.2-1.3_i386 + mlterm-im-uim_3.1.2-1.3_i386 + mlterm-tiny_3.1.2-1.3_i386 + mlterm-tools_3.1.2-1.3_i386 + mlton-compiler_20100608-5_i386 + mlton-runtime-i486-linux-gnu_20100608-5_i386 + mlton-runtime-native_20100608-5_i386 + mlton-tools_20100608-5_i386 + mlv-smile_1.47-3_i386 + mm3d_1.3.7-1.4_i386 + mmass-modules_5.1.0-2_i386 + mmorph_2.3.4.2-12.1_i386 + mmpong-caca_0.9.1-2.1_i386 + mmpong-gl_0.9.1-2.1_i386 + mmpongd_0.9.1-2.1_i386 + mmv_1.01b-15_i386 + mobyle-utils_1.0.6~dfsg-1_i386 + moc_1:2.5.0~alpha4+svn20120224-1_i386 + moc-ffmpeg-plugin_1:2.5.0~alpha4+svn20120224-1_i386 + mod-gearman-module_1.3.6-1_i386 + mod-gearman-tools_1.3.6-1_i386 + mod-gearman-worker_1.3.6-1_i386 + modem-cmd_0.0.2_i386 + modemmanager_0.5.2.0-2_i386 + modemmanager-dbg_0.5.2.0-2_i386 + modplug-tools_0.5.3-1_i386 + mokomaze_0.5.5+git8+dfsg0-3_i386 + mon_1.2.0-6_i386 + mon-contrib_1.0+dfsg-2_i386 + mona_1.4-13-3_i386 + monav_0.3-6+b1_i386 + monav-client_0.3-6+b1_i386 + monav-preprocessor_0.3-6+b1_i386 + monav-routing-daemon_0.3-6+b1_i386 + mongodb_1:2.0.6-1.1_i386 + mongodb-clients_1:2.0.6-1.1_i386 + mongodb-dev_1:2.0.6-1.1_i386 + mongodb-server_1:2.0.6-1.1_i386 + monit_1:5.4-2_i386 + monkeystudio_1.9.0.2-2_i386 + monkeystudio-dbg_1.9.0.2-2_i386 + mono-complete_2.10.8.1-8_i386 + mono-jay_2.10.8.1-8_i386 + mono-runtime_2.10.8.1-8_i386 + mono-runtime-dbg_2.10.8.1-8_i386 + mono-runtime-sgen_2.10.8.1-8_i386 + mono-utils_2.10.8.1-8_i386 + monopd_0.9.3-6_i386 + monotone_1.0-6_i386 + monotone-viz_1.0.2-2+b2_i386 + monster-masher_1.8.1-6_i386 + monsterz_0.7.1-4_i386 + moodbar_0.1.2-3_i386 + moon-buggy_1.0.51-9.1_i386 + moon-buggy-esd_1.0.51-9.1_i386 + moon-lander_1:1.0-4.1_i386 + mooproxy_1.0.0-1_i386 + mopac7-bin_1.15-5_i386 + mopd_1:2.5.3-21_i386 + moreutils_0.47_i386 + moria_5.6-2_i386 + morla_0.16.1-1.1_i386 + morse_2.4-2_i386 + morse-simulator_0.5.2-1_i386 + morsegen_0.2.1-1_i386 + mosh_1.2.3-1_i386 + mosquitto_0.15-2_i386 + mosquitto-clients_0.15-2_i386 + most_5.0.0a-2.1_i386 + mothur_1.24.1-1_i386 + motion_3.2.12-3.4_i386 + mount_2.20.1-5.3_i386 + mountall_2.46_i386 + mountpy_0.8.1_i386 + mouseemu_0.15-9_i386 + mousepad_0.2.16-6_i386 + mousetrap_0.9-2.2_i386 + mousetweaks_3.4.2-1_i386 + mozart_1.4.0-8_i386 + mozc-server_1.5.1090.102-4+deb7u1_i386 + mozc-utils-gui_1.5.1090.102-4+deb7u1_i386 + mozilla-gtk-vnc_0.5.0-3.1_i386 + mozilla-plugin-vlc_2.0.0-2_i386 + mp_3.7.1-11_i386 + mp3blaster_1:3.2.5-3_i386 + mp3check_0.8.7-1_i386 + mp3diags_1.0.11.076-3_i386 + mp3fs_0.31-28-g7b30a54-1_i386 + mp3gain_1.5.2-r2-2_i386 + mp3info_0.8.5a-1_i386 + mp3info-gtk_0.8.5a-1_i386 + mp3rename_0.6-9_i386 + mp3splt_2.4.2-2_i386 + mp3splt-gtk_0.7.2-2_i386 + mp3val_0.1.8-1_i386 + mp3wrap_0.5-3_i386 + mp4h_1.3.1-6_i386 + mp4v2-dbg_2.0.0~dfsg0-1_i386 + mp4v2-utils_2.0.0~dfsg0-1_i386 + mpack_1.6-8_i386 + mpage_2.5.6-1_i386 + mpb_1.4.2-18_i386 + mpb-mpi_1.4.2-18_i386 + mpc_0.22-1_i386 + mpc123_0.2.4-2_i386 + mpd_0.16.7-2_i386 + mpd-dbg_0.16.7-2_i386 + mpdcon.app_1.1.99-5+b3_i386 + mpdcron_0.3+git20110303-3_i386 + mpdscribble_0.22-3_i386 + mpdscribble-dbg_0.22-3_i386 + mpeg2dec_0.4.1-3_i386 + mpeg3-utils_1.5.4-5_i386 + mpegdemux_0.1.4-3_i386 + mpg123_1.14.4-1_i386 + mpg321_0.3.2-1.1_i386 + mpgtx_1.3.1-5_i386 + mpi-default-bin_1.0.1_i386 + mpi-default-dev_1.0.1_i386 + mpich2_1.4.1-4.2_i386 + mpich2python_2.8-4_i386 + mpikmeans-tools_1.5-1+b1_i386 + mplayer_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-dbg_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer-gui_2:1.0~rc4.dfsg1+svn34540-1+b2_i386 + mplayer2_2.0-554-gf63dbad-1+b1_i386 + mplayer2-dbg_2.0-554-gf63dbad-1+b1_i386 + mplayerthumbs_4:4.8.4-2_i386 + mpop_1.0.27-1_i386 + mpop-gnome_1.0.27-1_i386 + mppenc_1.16-1.1_i386 + mpqc_2.3.1-14_i386 + mpqc-support_2.3.1-14_i386 + mpt-status_1.2.0-7_i386 + mrbayes_3.2.1+dfsg-1_i386 + mrbayes-dbg_3.2.1+dfsg-1_i386 + mrbayes-mpi_3.2.1+dfsg-1_i386 + mrd6_0.9.6-10_i386 + mriconvert_2.0.235-1_i386 + mricron_0.20120505.1~dfsg.1-1_i386 + mrtg_2.17.4-2_i386 + mrtgutils_0.8.1_i386 + mrtgutils-sensors_0.8.1_i386 + mrtrix_0.2.10-2_i386 + mrxvt_0.5.4-1.1_i386 + mrxvt-cjk_0.5.4-1.1_i386 + mrxvt-mini_0.5.4-1.1_i386 + mscgen_0.20-2_i386 + mscompress_0.3-4_i386 + msgpack-python_0.1.10-1_i386 + msmtp_1.4.28-1_i386 + msmtp-gnome_1.4.28-1_i386 + msn-pecan_0.1.3-1_i386 + msn-pecan-dbg_0.1.3-1_i386 + msort_8.52-1.3+b1_i386 + msp430-libc_20120224-1_i386 + mspdebug_0.19-1_i386 + msr-tools_1.2-3_i386 + msrtool_0.0+r4091-1_i386 + mssh_1.2-1.1+b1_i386 + mstflint_1.4-OFED-1.4.2-1_i386 + mswatch_1.2.0-2.1_i386 + mt-st_1.1-4_i386 + mtasc_1.14-2_i386 + mtbl-bin_0.2-1_i386 + mtd-utils_1:1.5.0-1_i386 + mtdev-tools_1.1.2-1_i386 + mtink_1.0.16-6_i386 + mtools_4.0.17-1_i386 + mtp-tools_1.1.3-35-g0ece104-5_i386 + mtpaint_3.40-1+b1_i386 + mtr_0.82-3_i386 + mtr-tiny_0.82-3_i386 + mtx_1.3.12-4_i386 + mu-cade_0.11.dfsg1-6_i386 + muddleftpd_1.3.13.1-4.3_i386 + mudita24_1.0.3+svn13-4_i386 + mudita24-dbg_1.0.3+svn13-4_i386 + mudlet_2.0-rc12-3_i386 + multiarch-support_2.13-38+deb7u1_i386 + multicat_2.0-3_i386 + multiget_1.2.0-3_i386 + multimail_0.49-2_i386 + multimon_1.0-5_i386 + multipath-tools_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multipath-tools-dbg_0.4.9+git0.4dfdaf2b-7~deb7u2_i386 + multitail_5.2.9-1_i386 + multitee_3.0-4_i386 + multiwatch_1.0.0-rc1-2_i386 + mumble_1.2.3-349-g315b5f5-2.2_i386 + mumble-dbg_1.2.3-349-g315b5f5-2.2_i386 + mumble-server_1.2.3-349-g315b5f5-2.2_i386 + mummer_3.23~dfsg-2_i386 + mummy_1.0.2-5_i386 + mumps-test_4.10.0.dfsg-3_i386 + mumudvb_1.7.1-1_i386 + munge_0.5.10-1_i386 + mupdf_0.9-2_i386 + mupdf-tools_0.9-2_i386 + mupen64plus-audio-sdl_1.99.5-2_i386 + mupen64plus-audio-sdl-dbg_1.99.5-2_i386 + mupen64plus-input-sdl_1.99.5-2_i386 + mupen64plus-input-sdl-dbg_1.99.5-2_i386 + mupen64plus-rsp-hle_1.99.5-3_i386 + mupen64plus-rsp-hle-dbg_1.99.5-3_i386 + mupen64plus-rsp-z64_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-rsp-z64-dbg_1.99.4+31+1374ffc147ad-4_i386 + mupen64plus-ui-console_1.99.5-3_i386 + mupen64plus-ui-console-dbg_1.99.5-3_i386 + mupen64plus-video-arachnoid_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-arachnoid-dbg_1.99.4+39+ada2d63714fd-3_i386 + mupen64plus-video-glide64_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-glide64-dbg_1.99.4+37+a1c35b79de0d-3_i386 + mupen64plus-video-rice_1.99.5-3_i386 + mupen64plus-video-rice-dbg_1.99.5-3_i386 + mupen64plus-video-z64_1.99.4+30+daa3f1b2fe76-3_i386 + mupen64plus-video-z64-dbg_1.99.4+30+daa3f1b2fe76-3_i386 + muroard_0.1.10-2_i386 + muroard-dbg_0.1.10-2_i386 + muroard-dev_0.1.10-2_i386 + muscle_1:3.8.31-1_i386 + muse_2.0-1_i386 + museekd_1:0.2+svn20100315.r1208-2_i386 + museeq_1:0.2+svn20100315.r1208-2_i386 + musepack-tools_2:0.1~r459-4_i386 + musescore_1.2+dfsg-1_i386 + music-bin_1.0.7-1.2_i386 + music123_16.3-3_i386 + musique_1.1-2.1_i386 + musixtex_1:0.115-4_i386 + mustang_3.2.1-3_i386 + mustang-plug_1.1-2_i386 + mutextrace_0.1-1_i386 + mutrace_0.2.0-2_i386 + mutt_1.5.21-6.2+deb7u1_i386 + mutt-dbg_1.5.21-6.2+deb7u1_i386 + mutt-patched_1.5.21-6.2+deb7u1_i386 + mutter_3.4.1-5_i386 + mutter-dbg_3.4.1-5_i386 + mwrap_0.33-1_i386 + mxallowd_1.9-1_i386 + mydumper_0.5.1-3_i386 + mypaint_1.0.0-1_i386 + myproxy_5.6-1_i386 + myproxy-admin_5.6-1_i386 + myproxy-dbg_5.6-1_i386 + myproxy-server_5.6-1_i386 + myrescue_0.9.4-5+b1_i386 + myspell-tools_1:3.1-24_i386 + mysql-client-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-proxy_0.8.1-1.1+b1_i386 + mysql-server-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-server-core-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-source-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-testsuite-5.5_5.5.33+dfsg-0+wheezy1_i386 + mysql-workbench_5.2.40+dfsg-2_i386 + mysqltcl_3.051-1+b1_i386 + mysqmail-courier-logger_0.4.9-10_i386 + mysqmail-dovecot-logger_0.4.9-10_i386 + mysqmail-postfix-logger_0.4.9-10_i386 + mysqmail-pure-ftpd-logger_0.4.9-10_i386 + mythtvfs_0.6.1-3_i386 + mz_0.40-1_i386 + n2n_1.3.1~svn3789-1_i386 + nabi_0.99.11-2_i386 + nacl-tools_20110221-4_i386 + nagios-nrpe-plugin_2.13-3_i386 + nagios-nrpe-server_2.13-3_i386 + nagios-plugins-basic_1.4.16-1_i386 + nagios-plugins-common_1.4.16-1_i386 + nagios-plugins-contrib_4.20120702_i386 + nagios-plugins-standard_1.4.16-1_i386 + nagios3_3.4.1-3+deb7u1_i386 + nagios3-cgi_3.4.1-3+deb7u1_i386 + nagios3-core_3.4.1-3+deb7u1_i386 + nagios3-dbg_3.4.1-3+deb7u1_i386 + nagiosgrapher_1.7.1-4_i386 + nagircbot_0.0.33-2_i386 + nailgun_0.7.1-3_i386 + nam_1.15-1_i386 + nam-dbg_1.15-1_i386 + namazu2_2.0.21-6_i386 + nana_2.5-12_i386 + nano_2.2.6-1+b1_i386 + nano-tiny_2.2.6-1+b1_i386 + nap_1.5.4-7.1_i386 + nas_1.9.3-5wheezy1_i386 + nas-bin_1.9.3-5wheezy1_i386 + nasm_2.10.01-1_i386 + naspro-bridges_0.4.1-1_i386 + nast_0.2.0-6_i386 + nasty_0.6-2_i386 + natpmp-utils_20110808-3_i386 + nautilus_3.4.2-1+build1_i386 + nautilus-actions_3.2.2-1_i386 + nautilus-dbg_3.4.2-1+build1_i386 + nautilus-filename-repairer_0.1.1-2_i386 + nautilus-gtkhash_0.6.0-4_i386 + nautilus-image-converter_0.3.1~git20110416-1_i386 + nautilus-open-terminal_0.19-2+b1_i386 + nautilus-sendto_3.0.3-2+b1_i386 + nautilus-sendto-empathy_3.4.2.3-2+deb7u1_i386 + nautilus-share_0.7.3-1+b1_i386 + nautilus-wipe_0.1.1-3_i386 + navit_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-gtk-drawing-area_0.5.0~svn5126+dfsg.1-3_i386 + navit-graphics-qt-qpainter_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-gtk_0.5.0~svn5126+dfsg.1-3_i386 + navit-gui-internal_0.5.0~svn5126+dfsg.1-3_i386 + nbd-client_1:3.2-4~deb7u4_i386 + nbd-server_1:3.2-4~deb7u4_i386 + nbibtex_0.9.18-10_i386 + nbtscan_1.5.1-6_i386 + ncaptool_1.9.2-1+b2_i386 + ncbi-blast+_2.2.26-3_i386 + ncbi-epcr_2.3.12-1-1_i386 + ncbi-tools-bin_6.1.20120620-2_i386 + ncbi-tools-x11_6.1.20120620-2_i386 + ncc_2.8-1_i386 + ncdt_2.1-3_i386 + ncdu_1.8-1_i386 + ncftp_2:3.2.5-1.1_i386 + ncmpc_0.17-1_i386 + ncmpcpp_0.5.10-1.1_i386 + nco_4.0.9-1+b1_i386 + ncoils_2002-3_i386 + ncompress_4.2.4.4-5_i386 + ncpfs_2.2.6-9_i386 + ncurses-bin_5.9-10_i386 + ncurses-examples_5.9-10_i386 + ncurses-hexedit_0.9.7-14.1_i386 + ncview_1.93g-1+b3_i386 + nd_0.8.2-6_i386 + ndisc6_1.0.1-1+b1_i386 + ndisgtk_0.8.5-1_i386 + ndiswrapper-utils-1.9_1.57-1_i386 + ndoutils-common_1.4b9-1.1+b1_i386 + ndoutils-nagios3-mysql_1.4b9-1.1+b1_i386 + ndpmon_1.4.0-2_i386 + ndtpd_1:1.0.dfsg.1-4.3_i386 + ne_2.4-1_i386 + nec_2-16_i386 + nec2c_0.8-3_i386 + necpp_1.5.0+cvs20101003-2.1_i386 + nedit_1:5.6~cvs20081118-7_i386 + nedit-dbg_1:5.6~cvs20081118-7_i386 + neko_1.8.1-6+b1_i386 + nekobee_0.1.7-3_i386 + nemiver_0.9.2-1_i386 + net-acct_0.71-9_i386 + net-tools_1.60-24.2_i386 + netanim_3.100-1_i386 + netatalk_2.2.2-1_i386 + netcat-openbsd_1.105-7_i386 + netcat-traditional_1.10-40_i386 + netcat6_1.0-8_i386 + netcdf-bin_1:4.1.3-6+b1_i386 + netcdf-dbg_1:4.1.3-6+b1_i386 + netcf_0.1.9-2_i386 + netdiag_1.1-1_i386 + netdiscover_0.3beta6+20080409-5_i386 + netdiscover-dbg_0.3beta6+20080409-5_i386 + netemul_1.0.0-2_i386 + netexpect_0.20-3_i386 + nethack-common_3.4.3-14_i386 + nethack-console_3.4.3-14_i386 + nethack-lisp_3.4.3-14_i386 + nethack-x11_3.4.3-14_i386 + nethogs_0.8.0-1_i386 + netmask_2.3.12_i386 + netmaze_0.81+jpg0.82-14_i386 + netmrg_0.20-6.1_i386 + netpanzer_0.8.4.debian.1-1.1_i386 + netpanzer-dbg_0.8.4.debian.1-1.1_i386 + netpbm_2:10.0-15+b1_i386 + netperfmeter_1.1.7-1.1_i386 + netpipe-lam_3.7.2-7_i386 + netpipe-mpich2_3.7.2-7_i386 + netpipe-openmpi_3.7.2-7_i386 + netpipe-pvm_3.7.2-7_i386 + netpipe-tcp_3.7.2-7_i386 + netpipes_4.2-6_i386 + netplan_1.10.1-2_i386 + netplug_1.2.9.2-1_i386 + netrek-client-cow_3.3.0-3_i386 + netrik_1.16.1-1.1_i386 + netris_0.52-9_i386 + netrw_1.3.2-2_i386 + netsed_1.00b-2.1_i386 + netselect_0.3.ds1-25_i386 + netsend_0.0~svnr250-1.1_i386 + netsniff-ng_0.5.7-1_i386 + netspeed_0.16-3_i386 + netstat-nat_1.4.10-2_i386 + netsurf-fb_2.9-2_i386 + netsurf-gtk_2.9-2_i386 + nettle-bin_2.4-3_i386 + nettle-dbg_2.4-3_i386 + nettle-dev_2.4-3_i386 + nettoe_1.3.2-1_i386 + network-manager_0.9.4.0-10_i386 + network-manager-dbg_0.9.4.0-10_i386 + network-manager-dev_0.9.4.0-10_i386 + network-manager-gnome_0.9.4.1-5_i386 + network-manager-iodine_0.0.3-1_i386 + network-manager-iodine-gnome_0.0.3-1_i386 + network-manager-kde_1:0.9.0.3-1_i386 + network-manager-openconnect_0.9.4.0-8_i386 + network-manager-openconnect-gnome_0.9.4.0-8_i386 + network-manager-openvpn_0.9.4.0-1_i386 + network-manager-openvpn-gnome_0.9.4.0-1_i386 + network-manager-pptp_0.9.4.0-2_i386 + network-manager-pptp-gnome_0.9.4.0-2_i386 + network-manager-strongswan_1.3.0-1_i386 + network-manager-vpnc_0.9.4.0-1_i386 + network-manager-vpnc-gnome_0.9.4.0-1_i386 + netwox_5.36.0-1.2_i386 + neverball_1.5.4-5_i386 + neverball-dbg_1.5.4-5_i386 + neverputt_1.5.4-5_i386 + newmail_0.5-2_i386 + newsbeuter_2.5-2_i386 + newt-tcl_0.52.14-11.1_i386 + nexus-tools_4.2.1-svn1614-1+b2_i386 + nfdump_1.6.6-1_i386 + nfdump-dbg_1.6.6-1_i386 + nfdump-flow-tools_1.6.6-1_i386 + nfdump-sflow_1.6.6-1_i386 + nfqueue-bindings-perl_0.4-3_i386 + nfqueue-bindings-python_0.4-3_i386 + nfs-common_1:1.2.6-4_i386 + nfs-kernel-server_1:1.2.6-4_i386 + nfs4-acl-tools_0.3.3-2_i386 + nfswatch_4.99.11-2_i386 + ng-cjk_1.5~beta1-3_i386 + ng-cjk-canna_1.5~beta1-3_i386 + ng-latin_1.5~beta1-3_i386 + ng-utils_0.7-1_i386 + nget_0.27.1-11_i386 + ngetty_1.0-1_i386 + nginx-extras_1.2.1-2.2+wheezy2_i386 + nginx-extras-dbg_1.2.1-2.2+wheezy2_i386 + nginx-full_1.2.1-2.2+wheezy2_i386 + nginx-full-dbg_1.2.1-2.2+wheezy2_i386 + nginx-light_1.2.1-2.2+wheezy2_i386 + nginx-light-dbg_1.2.1-2.2+wheezy2_i386 + nginx-naxsi_1.2.1-2.2+wheezy2_i386 + nginx-naxsi-dbg_1.2.1-2.2+wheezy2_i386 + ngircd_19.2-2_i386 + ngorca_1.0.2-2+b1_i386 + ngraph-gtk_6.06.06-1_i386 + ngraph-gtk-addins-base_6.06.06-1_i386 + ngrep_1.45.ds2-12_i386 + nickle_2.76-1_i386 + nictools-pci_1.3.8-1.2_i386 + nifti-bin_2.0.0-1_i386 + nih-dbus-tool_1.0.3-4.1_i386 + nikwi_0.0.20060823-2_i386 + nilfs-tools_2.1.3-1_i386 + nilfs-tools-dbg_2.1.3-1_i386 + ninix-aya_4.3.9-1_i386 + ninja_0.1.3-2_i386 + ninvaders_0.1.1-3_i386 + nip2_7.28.4-1_i386 + nis_3.17-32_i386 + nitpic_0.1-13_i386 + nitrogen_1.5.2-1_i386 + njam_1.25-5.2_i386 + njplot_2.4-1_i386 + nkf_2.12-1_i386 + nlkt_0.3.2.2-1_i386 + nload_0.7.4-1_i386 + nmap_6.00-0.3+deb7u1_i386 + nmapsi4_0.3.1-1_i386 + nmh_1.5-release-0.2_i386 + nmon_13g+debian-1_i386 + nmzmail_1.1-1_i386 + nn_6.7.3-8_i386 + nodau_0.3~rc6-1_i386 + nodm_0.11-1.3_i386 + noiz2sa_0.51a-9+b1_i386 + nomarch_1.4-3_i386 + nomnom_0.3.1-1_i386 + normalize-audio_0.7.7-11_i386 + notebook-gtk2_0.2rel-2.2_i386 + notification-daemon_0.7.6-1_i386 + notify-osd_0.9.34-2_i386 + notmuch_0.13.2-1_i386 + novnc_2012.1~e3+dfsg+1-4_i386 + noweb_2.11b-7.1_i386 + nowhere_110.74-2_i386 + nqc_3.1.r6-1_i386 + nqp_0.1~2012.01-5_i386 + nrg2iso_0.4-4_i386 + nrss_0.3.9-1_i386 + ns2_2.35+dfsg-1_i386 + ns2-dbg_2.35+dfsg-1_i386 + nsca_2.9.1-2_i386 + nsca-client_2.9.1-2_i386 + nscd_2.13-38+deb7u1_i386 + nsd3_3.2.12-3+deb7u1_i386 + nsis_2.46-7_i386 + nslcd_0.8.10-4_i386 + nslint_3.0a2-1.1_i386 + nss-passwords_0.1.1-1_i386 + nss-updatedb_10-2+b1_i386 + nstreams_1.0.3-2+b1_i386 + nted_1.10.18-4_i386 + ntfs-3g_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dbg_1:2012.1.15AR.5-2.1_i386 + ntfs-3g-dev_1:2012.1.15AR.5-2.1_i386 + ntfs-config_1.0.1-10_i386 + ntop_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntop-dbg_3:4.99.3+ndpi5517+dfsg3-1_i386 + ntp_1:4.2.6.p5+dfsg-2_i386 + ntpdate_1:4.2.6.p5+dfsg-2_i386 + ntrack-module-libnl-0_016-1.1_i386 + ntrack-module-rtnetlink-0_016-1.1_i386 + nuapplet_2.3.0-2_i386 + nuauth_2.4.3-2.2_i386 + nuauth-extra_2.4.3-2.2_i386 + nuauth-log-mysql_2.4.3-2.2_i386 + nuauth-log-pgsql_2.4.3-2.2_i386 + nufw_2.4.3-2.2_i386 + nullidentd_1.0-5_i386 + nullmailer_1:1.11-2_i386 + numactl_2.0.8~rc4-1_i386 + numconv_2.7-1.1_i386 + numdiff_5.6.0-1_i386 + numlockx_1.2-4_i386 + numptyphysics_0.2+svn156-1.1_i386 + nurpawiki_1.2.3-5+b17_i386 + nut-cgi_2.6.4-2.3+deb7u1_i386 + nut-client_2.6.4-2.3+deb7u1_i386 + nut-nutrition_15.5-1_i386 + nut-powerman-pdu_2.6.4-2.3+deb7u1_i386 + nut-server_2.6.4-2.3+deb7u1_i386 + nut-snmp_2.6.4-2.3+deb7u1_i386 + nut-xml_2.6.4-2.3+deb7u1_i386 + nutcpc_2.4.3-2.2_i386 + nuttcp_6.1.2-4_i386 + nvclock_0.8b4+cvs20100914-4_i386 + nvclock-gtk_0.8b4+cvs20100914-4_i386 + nvclock-qt_0.8b4+cvs20100914-4_i386 + nvi_1.81.6-8.2_i386 + nvram-wakeup_1.1-1_i386 + nvramtool_0.0+r3669-2.2_i386 + nvtv_0.4.7-7_i386 + nwall_1.32+debian-4.1_i386 + nwchem_6.1-6_i386 + nwrite_1.9.2-20.1_i386 + nxproxy_3.5.0.12-1+b1_i386 + nyancat_1.0+git20120523.99dc310-1_i386 + nypatchy_20061220+dfsg3-2_i386 + nyquist_3.05-2_i386 + nzb_0.2-1_i386 + nzbget_0.7.0-2_i386 + oaklisp_1.3.3-5_i386 + oar-admin_2.5.2-3_i386 + oar-common_2.5.2-3_i386 + oar-node_2.5.2-3_i386 + oar-restful-api_2.5.2-3_i386 + oar-server_2.5.2-3_i386 + oar-server-mysql_2.5.2-3_i386 + oar-server-pgsql_2.5.2-3_i386 + oar-user_2.5.2-3_i386 + oar-user-mysql_2.5.2-3_i386 + oar-user-pgsql_2.5.2-3_i386 + oasis3_3.3.beta.dfsg.1-8+b1_i386 + oasis3-examples_3.3.beta.dfsg.1-8+b1_i386 + oath-dbg_1.12.4-1_i386 + oathtool_1.12.4-1_i386 + obconf_1:2.0.3+20110805+debian-1_i386 + obdgpslogger_0.16-1.2_i386 + obex-data-server_0.4.5-1+b3_i386 + obexd-client_0.46-1+b1_i386 + obexd-server_0.46-1+b1_i386 + obexfs_0.11-1_i386 + obexftp_0.23-1.1_i386 + obexpushd_0.11.2-1_i386 + obfsproxy_0.1.4-2_i386 + objcryst-fox_1.9.6.0-2_i386 + obmenu_1.0-2+nmu1_i386 + obnam_1.1-1.1_i386 + ocaml_3.12.1-4_i386 + ocaml-base_3.12.1-4_i386 + ocaml-base-nox_3.12.1-4_i386 + ocaml-compiler-libs_3.12.1-4_i386 + ocaml-findlib_1.3.1-1_i386 + ocaml-findlib-wizard_1.3.1-1_i386 + ocaml-interp_3.12.1-4_i386 + ocaml-melt_1.4.0-1_i386 + ocaml-native-compilers_3.12.1-4_i386 + ocaml-nox_3.12.1-4_i386 + ocaml-ulex_1.1-2+b2_i386 + ocaml-ulex08_0.8-10+b2_i386 + ocamldsort_0.15.0-2_i386 + ocamlduce_3.12.1.0-1_i386 + ocamlduce-base_3.12.1.0-1_i386 + ocamlgraph-editor_1.8.2-2_i386 + ocamlmod_0.0.2-3_i386 + ocamlviz_1.01-2+b2_i386 + oce-draw_0.9.1-3_i386 + ocfs2-tools_1.6.4-1+deb7u1_i386 + ocfs2-tools-cman_1.6.4-1+deb7u1_i386 + ocfs2-tools-dev_1.6.4-1+deb7u1_i386 + ocfs2-tools-pacemaker_1.6.4-1+deb7u1_i386 + ocfs2console_1.6.4-1+deb7u1_i386 + ocl-icd-dev_1.3-3_i386 + ocl-icd-libopencl1_1.3-3_i386 + ocl-icd-opencl-dev_1.3-3_i386 + ocrad_0.22~rc1-2_i386 + ocsigen_1.3.4-2+b12_i386 + ocsigenserver_2.1-1_i386 + octave_3.6.2-5+deb7u1_i386 + octave-audio_1.1.4-4_i386 + octave-biosig_1.3.0-2_i386 + octave-communications_1.1.1-1_i386 + octave-control_2.3.52-1_i386 + octave-dbg_3.6.2-5+deb7u1_i386 + octave-econometrics_1:1.0.8-6_i386 + octave-fixed_0.7.10-5_i386 + octave-gdf_0.1.2-2_i386 + octave-general_1.3.1-1_i386 + octave-geometry_1.5.0-1_i386 + octave-gsl_1.0.8-5_i386 + octave-image_1.0.15-1_i386 + octave-io_1.0.19-1_i386 + octave-java_1.2.8-6_i386 + octave-lhapdf_5.8.7+repack-1_i386 + octave-linear-algebra_2.2.0-1_i386 + octave-miscellaneous_1.1.0-1_i386 + octave-nan_2.5.5-2_i386 + octave-nurbs_1.3.6-1_i386 + octave-ocs_0.1.3-1_i386 + octave-octcdf_1.1.4-2_i386 + octave-octgpr_1.2.0-3_i386 + octave-odepkg_0.8.2-2_i386 + octave-openmpi-ext_1.0.2-1_i386 + octave-optim_1.2.0-1_i386 + octave-optiminterp_0.3.3-2_i386 + octave-pfstools_1.8.5-1_i386 + octave-plplot_5.9.9-5_i386 + octave-psychtoolbox-3_3.0.9+svn2579.dfsg1-1_i386 + octave-quaternion_2.0.0-1_i386 + octave-secs1d_0.0.8-4_i386 + octave-secs2d_0.0.8-4_i386 + octave-signal_1.1.3-1_i386 + octave-sockets_1.0.8-1_i386 + octave-specfun_1.1.0-1_i386 + octave-strings_1.1.0-1_i386 + octave-struct_1.0.10-1_i386 + octave-sundials_2.5.0-3_i386 + octave-symbolic_1.1.0-1_i386 + octave-tsa_4.2.4-1_i386 + odbc-postgresql_1:09.01.0100-1+deb7u1_i386 + odbc-postgresql-dbg_1:09.01.0100-1+deb7u1_i386 + odbcinst_2.2.14p2-5_i386 + odbcinst1debian2_2.2.14p2-5_i386 + odin_1.8.5-2_i386 + odt2txt_0.4+git20100620-1+b1_i386 + ofono_1.6-2_i386 + ofono-dbg_1.6-2_i386 + ofono-phonesim_1.17-1_i386 + ofx_1:0.9.4-2.1_i386 + ogamesim_1.17-1_i386 + ogdi-bin_3.2.0~beta2-7_i386 + oggfwd_0.2-6_i386 + oggvideotools_0.8a-1_i386 + oggvideotools-dbg_0.8a-1_i386 + oggz-tools_1.1.1-1_i386 + ogmtools_1:1.5-3+b1_i386 + ogre-1.8-tools_1.8.0+dfsg1-3_i386 + ogre-tools_1.7.4+dfsg1-7_i386 + ohcount_3.0.0-6.1_i386 + oidentd_2.0.8-5_i386 + oidua_0.16.1-7_i386 + okteta_4:4.8.4+dfsg-1_i386 + okteta-dev_4:4.8.4+dfsg-1_i386 + okular_4:4.8.4-3_i386 + okular-backend-odp_1:2.4.4-3_i386 + okular-dbg_4:4.8.4-3_i386 + okular-dev_4:4.8.4-3_i386 + okular-extra-backends_4:4.8.4-3_i386 + olpc-kbdshim_27-1_i386 + olpc-powerd_23-2_i386 + olsrd_0.6.2-2.1_i386 + olsrd-gui_0.6.2-2.1_i386 + olsrd-plugins_0.6.2-2.1_i386 + olvwm_4.4.3.2p1.4-28.1_i386 + olwm_3.2p1.4-28.1_i386 + omake_0.9.8.5-3-8_i386 + omega-rpg_1:0.90-pa9-15_i386 + omhacks_0.16-1_i386 + omins_0.2.0-7.1_i386 + omnievents_1:2.6.2-2_i386 + omniidl_4.1.6-2_i386 + omniorb_4.1.6-2_i386 + omniorb-nameserver_4.1.6-2_i386 + onak_0.4.1-1_i386 + oneko_1.2.sakura.6-8_i386 + onesixtyone_0.3.2-1_i386 + onetime_1.122-1_i386 + onioncat_0.2.2+svn553-3_i386 + onscripter_20120531-2_i386 + ontv_3.2.0-1_i386 + oolite_1.76.1-2_i386 + opari_1.1+dfsg-2_i386 + open-axiom_1.4.1+svn~2626-2_i386 + open-axiom-graphics_1.4.1+svn~2626-2_i386 + open-axiom-hypertex_1.4.1+svn~2626-2_i386 + open-cobol_1.1-1_i386 + open-invaders_0.3-3.2_i386 + open-iscsi_2.0.873-3_i386 + open-jtalk_1.05-1_i386 + open-vm-toolbox_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + open-vm-tools-dbg_2:8.8.0+2012.05.21-724730-1+nmu2_i386 + openafs-client_1.6.1-3+deb7u1_i386 + openafs-dbg_1.6.1-3+deb7u1_i386 + openafs-dbserver_1.6.1-3+deb7u1_i386 + openafs-fileserver_1.6.1-3+deb7u1_i386 + openafs-fuse_1.6.1-3+deb7u1_i386 + openafs-kpasswd_1.6.1-3+deb7u1_i386 + openafs-krb5_1.6.1-3+deb7u1_i386 + openais_1.1.4-4.1_i386 + openais-dbg_1.1.4-4.1_i386 + openais-dev_1.1.4-4.1_i386 + openam_1.4.0-1+b2_i386 + openarena_0.8.8-5+deb7u2_i386 + openarena-dbg_0.8.8-5+deb7u2_i386 + openarena-server_0.8.8-5+deb7u2_i386 + openbabel_2.3.1+dfsg-4_i386 + openbabel-gui_2.3.1+dfsg-4_i386 + openbox_3.5.0-7_i386 + openbox-dev_3.5.0-7_i386 + openbsd-inetd_0.20091229-2_i386 + opencc_0.3.0-3_i386 + openchangeclient_1:1.0-3_i386 + openchangeproxy_1:1.0-3_i386 + openchangeserver_1:1.0-3_i386 + openchangeserver-dev_1:1.0-3_i386 + opencity_0.0.6.4stable-1.1_i386 + openconnect_3.20-4_i386 + opencryptoki_2.3.1+dfsg-3_i386 + opencryptoki-dbg_2.3.1+dfsg-3_i386 + openct_0.6.20-1.2_i386 + opencubicplayer_1:0.1.21-1.1_i386 + opendkim_2.6.8-4_i386 + opendkim-tools_2.6.8-4_i386 + opendnssec-dbg-mysql_1:1.3.9-5_i386 + opendnssec-dbg-sqlite3_1:1.3.9-5_i386 + opendnssec-enforcer-mysql_1:1.3.9-5_i386 + opendnssec-enforcer-sqlite3_1:1.3.9-5_i386 + opendnssec-signer_1:1.3.9-5_i386 + openexr_1.6.1-6_i386 + openexr-viewers_1.0.1-6_i386 + openfetion_2.2.1-3.2_i386 + openhpi-clients_2.14.1-1.2_i386 + openhpi-plugin-ilo2-ribcl_2.14.1-1.2_i386 + openhpi-plugin-ipmi_2.14.1-1.2_i386 + openhpi-plugin-ipmidirect_2.14.1-1.2_i386 + openhpi-plugin-oa-soap_2.14.1-1.2_i386 + openhpi-plugin-snmp-bc_2.14.1-1.2_i386 + openhpi-plugin-sysfs_2.14.1-1.2_i386 + openhpi-plugin-watchdog_2.14.1-1.2_i386 + openhpid_2.14.1-1.2_i386 + openimageio-tools_1.0.5+dfsg0-1_i386 + openipmi_2.0.16-1.3_i386 + openjade_1.4devel1-20.1+b1_i386 + openjade1.3_1.3.2-11.1+b1_i386 + openjdk-6-dbg_6b27-1.12.5-1_i386 + openjdk-6-demo_6b27-1.12.5-1_i386 + openjdk-6-jdk_6b27-1.12.5-1_i386 + openjdk-6-jre_6b27-1.12.5-1_i386 + openjdk-6-jre-headless_6b27-1.12.5-1_i386 + openjdk-6-jre-zero_6b27-1.12.5-1_i386 + openjdk-7-dbg_7u3-2.1.7-1_i386 + openjdk-7-demo_7u3-2.1.7-1_i386 + openjdk-7-jdk_7u3-2.1.7-1_i386 + openjdk-7-jre_7u3-2.1.7-1_i386 + openjdk-7-jre-headless_7u3-2.1.7-1_i386 + openjdk-7-jre-zero_7u3-2.1.7-1_i386 + openjpeg-tools_1.3+dfsg-4.7_i386 + openload_0.1.2-2_i386 + openmeeg-tools_2.0.0.dfsg-5_i386 + openmpi-bin_1.4.5-1_i386 + openmpi-checkpoint_1.4.5-1_i386 + openmpipython_2.8-4_i386 + openmsx_0.8.2-2.1_i386 + openmsx-catapult_0.8.2-1_i386 + openmsx-debugger_0.0.0.svn20110306-3_i386 + openmx_3.5-1_i386 + opennebula_3.4.1-3.1_i386 + openntpd_20080406p-4_i386 + openobex-apps_1.5-2_i386 + openocd_0.5.0-1_i386 + openpref_0.1.3-1_i386 + opensaml2-tools_2.4.3-4_i386 + opensc_0.12.2-3_i386 + openscad_2011.12-3_i386 + openscad-dbg_2011.12-3_i386 + openscad-testing_2011.12-3_i386 + openscenegraph_3.0.1-4_i386 + openscenegraph-plugin-citygml-shared_0.14+svn128-1+3p0p1+4_i386 + openscenegraph-plugin-citygml-static_0.14+svn128-1+3p0p1+4_i386 + openslide-tools_3.2.6-2_i386 + opensm_3.2.6-20090317-2.1_i386 + opensm-doc_3.2.6-20090317-2.1_i386 + opensp_1.5.2-10_i386 + openssh-client_1:6.0p1-4_i386 + openssh-server_1:6.0p1-4_i386 + openssl_1.0.1e-2+deb7u4_i386 + openssn_1.3-1_i386 + openssn-dbg_1.3-1_i386 + openswan_1:2.6.37-3_i386 + openswan-dbg_1:2.6.37-3_i386 + openswan-modules-dkms_1:2.6.37-3_i386 + openttd_1.2.1-3_i386 + openttd-dbg_1.2.1-3_i386 + openturns-examples_1.0-4_i386 + openuniverse_1.0beta3.1+dfsg-3_i386 + openvanilla-imgeneric_0.9.0a1.3+dfsg1-2.1_i386 + openvpn_2.2.1-8+deb7u2_i386 + openvpn-auth-ldap_2.0.3-5.1_i386 + openvpn-auth-radius_2.1-4_i386 + openvpn-auth-radius-dbg_2.1-4_i386 + openvrml-lookat_0.18.9-5+deb7u1_i386 + openvswitch-brcompat_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-common_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-controller_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-dbg_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-ipsec_1.4.2+git20120612-9.1~deb7u1_i386 + openvswitch-switch_1.4.2+git20120612-9.1~deb7u1_i386 + openwalnut-modules_1.2.5-1.1+b1_i386 + openwalnut-qt4_1.2.5-1.1+b1_i386 + openwince-include_0.3.2-3.1_i386 + openwince-jtag_0.5.1-6_i386 + openyahtzee_1.9.1-1+b1_i386 + ophcrack_3.4.0-2_i386 + ophcrack-cli_3.4.0-2_i386 + oping_1.6.2-1_i386 + opj2dat_20080225-2.1_i386 + opt_3.19-1.1_i386 + optgeo_2.11-3_i386 + optipng_0.6.4-1_i386 + opus-tools_0.1.2-1_i386 + opus-tools-dbg_0.1.2-1_i386 + orage_4.8.3-2_i386 + orange_0.4-2_i386 + orbit2_1:2.14.19-0.1_i386 + orbit2-nameserver_1:2.14.19-0.1_i386 + orbital-eunuchs-sniper_1.30+svn20070601-2_i386 + oregano_0.70-1_i386 + original-awk_2011-08-10-2_i386 + oroborus_2.0.20_i386 + orpie_1.5.1-10_i386 + orville-write_2.55-2.3_i386 + os-prober_1.58_i386 + osdclock_0.5-23_i386 + osdsh_0.7.0-10_i386 + osgearth_2.0+dfsg-4+b3_i386 + osm2pgsql_0.80.0+r27899-4_i386 + osmjs_0.0~20111213-g7f3500a-3+b2_i386 + osmo_0.2.10+svn922-2+b1_i386 + osmo-dbg_0.2.10+svn922-2+b1_i386 + osmpbf-bin_1.2.1-3_i386 + osptoolkit_3.4.2-1+b1_i386 + oss-compat_2_i386 + oss-preserve_1.1-6_i386 + oss4-base_4.2-build2006-2+deb7u1_i386 + oss4-dkms_4.2-build2006-2+deb7u1_i386 + oss4-gtk_4.2-build2006-2+deb7u1_i386 + oss4-source_4.2-build2006-2+deb7u1_i386 + ossim-core_1.7.21-4_i386 + otags_3.12.5-1_i386 + otcl-dbg_1.14+dfsg-2_i386 + otcl-shells_1.14+dfsg-2_i386 + otf-trace_1.10.2+dfsg-2_i386 + otf2bdf_3.1-2_i386 + otp_1:1.2.1-1_i386 + otpw-bin_1.3-2_i386 + otter_3.3f-1.1_i386 + outguess_1:0.2-7_i386 + overgod_1.0-1.1+b1_i386 + ovito_0.9.5-2_i386 + ow-shell_2.8p15-1_i386 + owfs-dbg_2.8p15-1_i386 + owfs-fuse_2.8p15-1_i386 + owftpd_2.8p15-1_i386 + owhttpd_2.8p15-1_i386 + owl_2.2.2-1.1+b3_i386 + owserver_2.8p15-1_i386 + owx_0~20110415-3.1_i386 + oxref_0.90.10-1_i386 + p0f_2.0.8-2_i386 + p11-kit_0.12-3_i386 + p3scan_2:2.3.2-8_i386 + p7zip_9.20.1~dfsg.1-4_i386 + p7zip-full_9.20.1~dfsg.1-4_i386 + p910nd_0.95-1_i386 + pacemaker_1.1.7-1_i386 + pacemaker-dev_1.1.7-1_i386 + pachi_1:1.0-6_i386 + packagekit_0.7.6-3_i386 + packagekit-backend-aptcc_0.7.6-3_i386 + packagekit-backend-smart_0.7.6-3_i386 + packagekit-dbg_0.7.6-3_i386 + packagekit-gtk3-module_0.7.6-3_i386 + packagekit-tools_0.7.6-3_i386 + packagesearch_2.7.3_i386 + packeth_1.6.5-2_i386 + packit_1.0-2_i386 + packup_0.6-1_i386 + pacman_10-17_i386 + pacman4console_1.2-2_i386 + paco_2.0.9-2_i386 + pads_1.2-11_i386 + paje.app_1.98-1+b1_i386 + pal_0.4.3-8_i386 + palapeli_4:4.8.4-3_i386 + palbart_2.4-7_i386 + palp_1.1-1.2_i386 + pam-pkcs11-dbg_0.6.8-1_i386 + paman_0.9.4-1_i386 + pamusb-common_0.5.0-4_i386 + pan_0.139-2_i386 + pandoc_1.9.4.2-2_i386 + pango-graphite_0.9.3-0.2_i386 + pango-graphite-dbg_0.9.3-0.2_i386 + paperkey_1.2-1_i386 + paprefs_0.9.10-1_i386 + paps_0.6.8-6_i386 + par_1.52-3_i386 + par2_0.4-11_i386 + paraview_3.14.1-6_i386 + paraview-dev_3.14.1-6_i386 + paraview-python_3.14.1-6_i386 + parcellite_1.0.2~rc5-1_i386 + parchive_1.1-4_i386 + pari-gp_2.5.1-2_i386 + pari-gp2c_0.0.7pl3-1_i386 + paris-traceroute_0.92-dev-2_i386 + parley_4:4.8.4-1_i386 + parole_0.2.0.6-1+b1_i386 + parole-dev_0.2.0.6-1+b1_i386 + parprouted_0.70-1_i386 + parrot_4.0.0-3_i386 + parrot-devel_4.0.0-3_i386 + parrot-minimal_4.0.0-3_i386 + parsec47_0.2.dfsg1-4_i386 + parser3-cgi_3.4.2-2_i386 + parser3-common_3.4.2-2_i386 + parser3-dev_3.4.2-2_i386 + parser3-mysql_10.4-1_i386 + partclone_0.2.48-1_i386 + parted_2.3-12_i386 + partimage_0.6.8-2.2_i386 + partimage-server_0.6.8-2.2_i386 + partitionmanager_1.0.2-1_i386 + pasco_1.0+20040505-5+b1_i386 + pasmo_0.5.3-6_i386 + passage_4+dfsg1-1_i386 + passepartout_0.7.1-1_i386 + passwd_1:4.1.5.1-1_i386 + passwdqc_1.2.0-1_i386 + passwordmaker-cli_1.5+dfsg-3_i386 + patch_2.6.1-3_i386 + patchage_0.5.0+dfsg0-0.1+b1_i386 + patchutils_0.3.2-1.1_i386 + pathfinder-utils_1.1.3-0.4+b1_i386 + pathfinderd_1.1.3-0.4+b1_i386 + pathogen_1.1.1-3_i386 + paulstretch_2.2-2-2_i386 + pavucontrol_1.0-1_i386 + pavuk_0.9.35-2.3_i386 + pavumeter_0.9.3-4_i386 + paw_1:2.14.04.dfsg.2-8_i386 + paw++_1:2.14.04.dfsg.2-8_i386 + pawserv_20061220+dfsg3-2_i386 + pax_1:20120606-2_i386 + pax-utils_0.2.3-2_i386 + paxctl_0.7-1_i386 + paxtest_1:0.9.9-1_i386 + pbs-drmaa-dev_1.0.10-3_i386 + pbs-drmaa1_1.0.10-3_i386 + pbuilder-uml_0.213_i386 + pbzip2_1.1.8-1_i386 + pcal_4.11.0-3_i386 + pcaputils_0.8-1_i386 + pcb-gtk_20110918-7_i386 + pcb-lesstif_20110918-7_i386 + pcb2gcode_1.1.4-git20110915-1+b1_i386 + pcb2gcode-dbg_1.1.4-git20110915-1+b1_i386 + pccts_1.33MR33-6_i386 + pcf2bdf_1.04-4_i386 + pchar_1.5-1_i386 + pciutils_1:3.1.9-6_i386 + pclock_0.13.1-6_i386 + pcmanfm_0.9.10-3_i386 + pcmanfm-dbg_0.9.10-3_i386 + pcmanx-gtk2_1.1-2_i386 + pcmciautils_018-8_i386 + pconf-detect_0.5-12_i386 + pconsole_1.0-9_i386 + pcregrep_1:8.30-5_i386 + pcsc-tools_1.4.20-1_i386 + pcscada-dbg_0.7.1-4_i386 + pcscd_1.8.4-1+deb7u1_i386 + pcsxr_1.9.92-4_i386 + pcsxr-dbg_1.9.92-4_i386 + pd-arraysize_0.1-1_i386 + pd-aubio_0.3.2-4.2+b1_i386 + pd-bassemu_0.3-3_i386 + pd-beatpipe_0.1-3_i386 + pd-boids_1.1.1-2_i386 + pd-bsaylor_0.1-2_i386 + pd-comport_0.1-3_i386 + pd-csound_1:5.17.11~dfsg-3_i386 + pd-cxc_0.5.1-2_i386 + pd-cyclone_0.1~alpha55-6_i386 + pd-earplug_0.2-3_i386 + pd-ekext_0.1.1-2_i386 + pd-ext13_0.17.1-2_i386 + pd-flite_0.02.3-1_i386 + pd-freeverb_1.2-3_i386 + pd-ggee_0.26-3_i386 + pd-hcs_0.1-2_i386 + pd-hid_0.7-1_i386 + pd-iemambi_0.1-2_i386 + pd-iemmatrix_0.2-1_i386 + pd-iemnet_0.1-3_i386 + pd-libdir_1.9-3_i386 + pd-markex_0.85-2_i386 + pd-maxlib_1.5.4-1_i386 + pd-mjlib_0.1.1-3_i386 + pd-moonlib_0.2-2_i386 + pd-motex_1.1.4-3_i386 + pd-osc_0.1-2_i386 + pd-pddp_0.2-1_i386 + pd-pdogg_0.25.1-1_i386 + pd-pdp_1:0.12.5-2_i386 + pd-plugin_0.2.1-3_i386 + pd-pmpd_0.9-4_i386 + pd-readanysf_0.42-1_i386 + pd-sigpack_0.0.4.2-2_i386 + pd-smlib_0.12.1-2_i386 + pd-vbap_1.0.3.2-1_i386 + pd-wiimote_0.3.2-2_i386 + pd-windowing_0.1-2_i386 + pd-zexy_2.2.5-1_i386 + pdb2pqr_1.8-1_i386 + pdf-presenter-console_3.1-1_i386 + pdf2djvu_0.7.12-2+b1_i386 + pdf2svg_0.2.1-2+b3_i386 + pdfchain_1:0.3.3-2_i386 + pdfcrack_0.11-1_i386 + pdfcube_0.0.4-2+b1_i386 + pdfcube-dbg_0.0.4-2+b1_i386 + pdfgrep_1.3.0-1_i386 + pdfresurrect_0.11-1_i386 + pdftk_1.44-7_i386 + pdftoipe_20110916-3+b1_i386 + pdl_1:2.4.11-4_i386 + pdlzip_1.3-2_i386 + pdlzip-dbg_1.3-2_i386 + pdmenu_1.3.2_i386 + pdns-backend-geo_3.1-4.1_i386 + pdns-backend-ldap_3.1-4.1_i386 + pdns-backend-lua_3.1-4.1_i386 + pdns-backend-mysql_3.1-4.1_i386 + pdns-backend-pgsql_3.1-4.1_i386 + pdns-backend-pipe_3.1-4.1_i386 + pdns-backend-sqlite_3.1-4.1_i386 + pdns-backend-sqlite3_3.1-4.1_i386 + pdns-recursor_3.3-3_i386 + pdns-recursor-dbg_3.3-3_i386 + pdns-server_3.1-4.1_i386 + pdns-server-dbg_3.1-4.1_i386 + pdnsd_1.2.8-par-3_i386 + pdsh_2.27-2_i386 + pearpc_0.4.0-5_i386 + pecomato_0.0.15-4_i386 + peg-e_1.1.0-1_i386 + peg-solitaire_1.2-1_i386 + pegasus-wms_4.0.1+dfsg-8_i386 + pegsolitaire_0.0.4-1_i386 + pekwm_0.1.14-2_i386 + pen_0.18.0-1_i386 + penguin-command_1.6.11-1_i386 + pennmush_1.8.2p8-1.1+b1_i386 + pennmush-mysql_1.8.2p8-1.1+b1_i386 + pente_2.2.5-7_i386 + pentobi_1.1-1+b1_i386 + perceptualdiff_1.1.1-1_i386 + perdition_1.19~rc5-1+b1_i386 + perdition-ldap_1.19~rc5-1+b1_i386 + perdition-mysql_1.19~rc5-1+b1_i386 + perdition-odbc_1.19~rc5-1+b1_i386 + perdition-postgresql_1.19~rc5-1+b1_i386 + perforate_1.2-5_i386 + performous_0.6.1-6_i386 + performous-dbg_0.6.1-6_i386 + performous-tools_0.6.1-6_i386 + perftest_1.2-OFED-1.4.2-2_i386 + perl_5.14.2-21+deb7u1_i386 + perl-base_5.14.2-21+deb7u1_i386 + perl-byacc_2.0-7_i386 + perl-debug_5.14.2-21+deb7u1_i386 + perl-tk_1:804.030-1_i386 + perlmagick_8:6.7.7.10-5+deb7u2_i386 + petitboot_12.03.29.20.47-g45e2534-2_i386 + petitboot-twin_12.03.29.20.47-g45e2534-2_i386 + petri-foo_0.1.5-1_i386 + petri-foo-dbg_0.1.5-1_i386 + petris_1.0.1-8_i386 + pev_0.40-1_i386 + pexec_1.0~rc8-2_i386 + pfb2t1c2pfb_0.3-9_i386 + pforth_21-11_i386 + pfqueue_0.5.6-8_i386 + pfqueue-dbg_0.5.6-8_i386 + pfsglview_1.8.5-1_i386 + pfstmo_1.4-1_i386 + pfstools_1.8.5-1_i386 + pfstools-dbg_1.8.5-1_i386 + pfsview_1.8.5-1_i386 + pgadmin3_1.14.2-2_i386 + pgadmin3-dbg_1.14.2-2_i386 + pgagent_3.2.1-1_i386 + pgapack_1.1.1-3_i386 + pgbouncer_1.5.2-4_i386 + pgdbf_0.5.5-1_i386 + pgn-extract_16.7-2_i386 + pgn2web_0.4-1_i386 + pgpdump_0.27-1_i386 + pgpgpg_0.13-9_i386 + pgpool2_3.1.3-5_i386 + phalanx_22+d051004-13.1_i386 + phasex_0.12.0+m1-6_i386 + phasex-dbg_0.12.0+m1-6_i386 + phlipple_0.8.2-1+b1_i386 + phlipple-dbg_0.8.2-1+b1_i386 + phnxdeco_0.33-3_i386 + phonefsod_0.1+git20110827-3_i386 + phoneui-apps_0.1+git20111214-2_i386 + phoneuid_0.1+git20110506-2+b1_i386 + phonon_4:4.6.0.0-3_i386 + phonon-backend-gstreamer_4:4.6.0.0-2_i386 + phonon-backend-gstreamer-dbg_4:4.6.0.0-2_i386 + phonon-backend-null_4:4.6.0.0-3_i386 + phonon-backend-vlc_0.6.0-1_i386 + phonon-backend-vlc-dbg_0.6.0-1_i386 + phonon-dbg_4:4.6.0.0-3_i386 + photopc_3.05-6_i386 + photoprint_0.4.2~pre2-2+b1_i386 + php-apc_3.1.13-1_i386 + php-imlib_0.7-4.1_i386 + php-wikidiff2_0.0.1+svn109581-1_i386 + php-zeroc-ice_3.4.2-8.2_i386 + php5-adodb_5.04-7+b1_i386 + php5-cgi_5.4.4-14+deb7u7_i386 + php5-cli_5.4.4-14+deb7u7_i386 + php5-common_5.4.4-14+deb7u7_i386 + php5-curl_5.4.4-14+deb7u7_i386 + php5-dbg_5.4.4-14+deb7u7_i386 + php5-dev_5.4.4-14+deb7u7_i386 + php5-enchant_5.4.4-14+deb7u7_i386 + php5-exactimage_0.8.5-5+deb7u3_i386 + php5-ffmpeg_0.6.0-2.2_i386 + php5-fpm_5.4.4-14+deb7u7_i386 + php5-gd_5.4.4-14+deb7u7_i386 + php5-gdcm_2.2.0-14.1_i386 + php5-geoip_1.0.7-8_i386 + php5-gmp_5.4.4-14+deb7u7_i386 + php5-imagick_3.1.0~rc1-1+b2_i386 + php5-imap_5.4.4-14+deb7u7_i386 + php5-interbase_5.4.4-14+deb7u7_i386 + php5-intl_5.4.4-14+deb7u7_i386 + php5-lasso_2.3.6-2_i386 + php5-ldap_5.4.4-14+deb7u7_i386 + php5-librdf_1.0.14.1-1_i386 + php5-mapscript_6.0.1-3.2+deb7u2_i386 + php5-mcrypt_5.4.4-14+deb7u7_i386 + php5-memcache_3.0.6-6_i386 + php5-memcached_2.0.1-6_i386 + php5-ming_1:0.4.4-1.1_i386 + php5-mysql_5.4.4-14+deb7u7_i386 + php5-mysqlnd_5.4.4-14+deb7u7_i386 + php5-odbc_5.4.4-14+deb7u7_i386 + php5-pgsql_5.4.4-14+deb7u7_i386 + php5-ps_1.3.7-1_i386 + php5-pspell_5.4.4-14+deb7u7_i386 + php5-radius_1.2.5-2.3+deb7u1_i386 + php5-recode_5.4.4-14+deb7u7_i386 + php5-remctl_3.2-4_i386 + php5-rrd_1.1.0-1_i386 + php5-sasl_0.1.0-1.2+b1_i386 + php5-snmp_5.4.4-14+deb7u7_i386 + php5-sqlite_5.4.4-14+deb7u7_i386 + php5-svn_1.0.1-1.2_i386 + php5-sybase_5.4.4-14+deb7u7_i386 + php5-tidy_5.4.4-14+deb7u7_i386 + php5-tokyo-tyrant_0.6.0-2+b1_i386 + php5-vtkgdcm_2.2.0-14.1_i386 + php5-xcache_2.0.0-4_i386 + php5-xdebug_2.2.1-2_i386 + php5-xmlrpc_5.4.4-14+deb7u7_i386 + php5-xsl_5.4.4-14+deb7u7_i386 + phyml_2:20110919-1_i386 + pi_1.3.2-1.2_i386 + pia_3.102-3_i386 + pianobar_2012.05.06-2_i386 + pianobooster_0.6.4-3.1_i386 + pianobooster-dbg_0.6.4-3.1_i386 + picard_1.0-1_i386 + picocom_1.7-1_i386 + picolisp_3.1.0.7-1_i386 + picosat_936-4_i386 + picprog_1.9.1-2_i386 + picviz_0.5-1+b1_i386 + pida_0.5.1-6_i386 + pidentd_3.0.19.ds1-7_i386 + pidgin_2.10.6-3_i386 + pidgin-audacious_2.0.0-3_i386 + pidgin-awayonlock_0.5.2-1_i386 + pidgin-blinklight_0.11.1-1_i386 + pidgin-dbg_2.10.6-3_i386 + pidgin-encryption_3.1-1_i386 + pidgin-extprefs_0.7-2_i386 + pidgin-festival_2.4-2_i386 + pidgin-gmchess_0.02-1_i386 + pidgin-guifications_2.16-2_i386 + pidgin-hotkeys_0.2.4-1.2_i386 + pidgin-latex_1.4.4-2_i386 + pidgin-librvp_0.9.7-2_i386 + pidgin-microblog_0.3.0-3_i386 + pidgin-microblog-dbg_0.3.0-3_i386 + pidgin-mpris_0.2.3-2_i386 + pidgin-mra_20100304-1_i386 + pidgin-mra-dbg_20100304-1_i386 + pidgin-musictracker_0.4.22-2_i386 + pidgin-nateon_0.0.0.svn147-1_i386 + pidgin-nateon-dbg_0.0.0.svn147-1_i386 + pidgin-openfetion_0.3-1_i386 + pidgin-otr_3.2.1-3+deb7u1_i386 + pidgin-plugin-pack_2.6.3-2_i386 + pidgin-privacy-please_0.7.1-1_i386 + pidgin-sipe_1.13.1-2_i386 + pidgin-twitter_0.9.2.1-3_i386 + pigz_2.2.4-3_i386 + pilot_2.02+dfsg-2_i386 + pilot-link_0.12.5-5_i386 + pimd_2.1.8-2_i386 + pinball_0.3.1-13.1_i386 + pinball-dev_0.3.1-13.1_i386 + pinentry-curses_0.8.1-1_i386 + pinentry-gtk2_0.8.1-1_i386 + pinentry-qt4_0.8.1-1_i386 + pinfo_0.6.9-5.1_i386 + pingus_0.7.6-1.1_i386 + pinot_1.0-1_i386 + pinpoint_1:0.1.5~20120318-1+b1_i386 + pioneers_14.1-1_i386 + pioneers-console_14.1-1_i386 + pioneers-meta-server_14.1-1_i386 + pipebench_0.40-3+b1_i386 + pipemeter_1.1.3-1_i386 + pipenightdreams_0.10.0-13_i386 + pipewalker_0.9.4-1_i386 + pixelize_1.0.0-1_i386 + pixmap_2.6pl4-18_i386 + pkcs11-data_0.7.4-1_i386 + pkcs11-dump_0.3.4-1_i386 + pkg-config_0.26-1_i386 + pkglab_1.4.2-13+b1_i386 + pktstat_1.8.5-3_i386 + plan_1.10.1-2_i386 + planner_0.14.6-1_i386 + planner-dev_0.14.6-1_i386 + plasma-containments-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-addons_4:4.8.4-1+b2_i386 + plasma-dataengines-workspace_4:4.8.4-6_i386 + plasma-dataengines-yawp_0.4.2-1_i386 + plasma-desktop_4:4.8.4-6_i386 + plasma-netbook_4:4.8.4-6_i386 + plasma-runner-installer_1.3.0-2_i386 + plasma-runners-addons_4:4.8.4-1+b2_i386 + plasma-scriptengine-javascript_4:4.8.4-2_i386 + plasma-scriptengine-superkaramba_4:4.8.4-3_i386 + plasma-scriptengine-webkit_4:4.8.4-6_i386 + plasma-wallpapers-addons_4:4.8.4-1+b2_i386 + plasma-widget-adjustableclock_2.6.1-1+b2_i386 + plasma-widget-amule_2.3.1-9_i386 + plasma-widget-cwp_1.6.11-1_i386 + plasma-widget-fastuserswitch_0.2.1-1+b1_i386 + plasma-widget-folderview_4:4.8.4-2_i386 + plasma-widget-kimpanel_4:4.8.4-1+b2_i386 + plasma-widget-ktorrent_4.2.1-1_i386 + plasma-widget-lancelot_4:4.8.4-1+b2_i386 + plasma-widget-menubar_0.1.17-1_i386 + plasma-widget-message-indicator_0.5.8-3_i386 + plasma-widget-networkmanagement_0.9.0.3-1_i386 + plasma-widget-networkmanagement-dbg_0.9.0.3-1_i386 + plasma-widget-smooth-tasks_1flupp0~hg20120610-2_i386 + plasma-widget-telepathy-chat_0.4.0-1_i386 + plasma-widget-telepathy-presence_0.4.0-1_i386 + plasma-widget-telepathy-presence-dbg_0.4.0-1_i386 + plasma-widget-translatoid_1.30+svn1226145-1_i386 + plasma-widget-uim_1:1.8.1-4_i386 + plasma-widget-yawp_0.4.2-1_i386 + plasma-widget-yawp-dbg_0.4.2-1_i386 + plasma-widgets-addons_4:4.8.4-1+b2_i386 + plasma-widgets-workspace_4:4.8.4-6_i386 + plastimatch_1.5.11+dfsg0-1_i386 + playmidi_2.4debian-9.2_i386 + plee-the-bear_0.6.0-1+b1_i386 + plink_1.07-3_i386 + plopfolio.app_0.1.0-6+b3_i386 + plotdrop_0.5.2-3_i386 + ploticus_2.41-5_i386 + plotmm-examples_0.1.2-2_i386 + plotutils_2.6-3_i386 + plplot-tcl_5.9.9-5_i386 + plplot-tcl-dev_5.9.9-5_i386 + plplot11-driver-cairo_5.9.9-5_i386 + plplot11-driver-gd_5.9.9-5_i386 + plplot11-driver-qt_5.9.9-5_i386 + plplot11-driver-wxwidgets_5.9.9-5_i386 + plplot11-driver-xwin_5.9.9-5_i386 + plptools_1.0.9-2.4_i386 + plptools-dev_1.0.9-2.4_i386 + plucker_1.8-34_i386 + plymouth_0.8.5.1-5_i386 + plymouth-dev_0.8.5.1-5_i386 + plymouth-drm_0.8.5.1-5_i386 + plymouth-x11_0.8.5.1-5_i386 + plzip_0.9-2_i386 + plzip-dbg_0.9-2_i386 + pmacct_0.14.0-1.1_i386 + pmake_1.111-3.2_i386 + pmccabe_2.6_i386 + pmidi_1.6.0-5_i386 + pmk_0.10.4-1_i386 + pmount_0.9.23-2_i386 + pms_0.41-1_i386 + pmw_1:4.24-1_i386 + pmx_2.6.18-2_i386 + png23d_1.10-1_i386 + png2html_1.1-5_i386 + pngcheck_2.3.0-5_i386 + pngcrush_1.7.9-1_i386 + pngmeta_1.11-6_i386 + pngnq_1.0-2_i386 + pngphoon_1.1-2_i386 + pngquant_1.0-4.1_i386 + pngtools_0.4-1_i386 + pnp4nagios-bin_0.6.16-2_i386 + pnscan_1.11-6_i386 + poa_2.0+20060928-3_i386 + poc-streamer_0.4.2-3_i386 + poe.app_0.5.1-5+b3_i386 + poedit_1.4.6.1-5.1_i386 + poedit-dbg_1.4.6.1-5.1_i386 + pokerth_0.9.5-1_i386 + pokerth-server_0.9.5-1_i386 + policycoreutils_2.1.10-9_i386 + policykit-1_0.105-3_i386 + policykit-1-gnome_0.105-2_i386 + polipo_1.0.4.1-1.2_i386 + polkit-kde-1_0.99.0-3_i386 + polyglot_1.4.67b-1_i386 + polygraph_4.3.2-1.1_i386 + polylib-utils_5.22.5-3+dfsg_i386 + polyml_5.2.1-1.1_i386 + polyorb-servers_2.8~20110207-5.1_i386 + pommed_1.39~dfsg-2+b1_i386 + pong2_0.1.3-1_i386 + popa3d_1.0.2-7_i386 + poppassd_1.8.5-4_i386 + poppler-dbg_0.18.4-6_i386 + poppler-utils_0.18.4-6_i386 + populations_1.2.33+svn0120106-2.1_i386 + pork_0.99.8.1-2.1_i386 + portabase_2.0+git20110117-1_i386 + portaudio19-dev_19+svn20111121-1_i386 + portreserve_0.0.4-1_i386 + portsentry_1.2-13_i386 + portslave_2010.04.19.1_i386 + posh_0.10.2_i386 + posixtestsuite_1.5.2-4_i386 + postal_0.73_i386 + poster_1:20050907-1_i386 + posterazor_1.5.1-2_i386 + postfix_2.9.6-2_i386 + postfix-cdb_2.9.6-2_i386 + postfix-gld_1.7-3+b1_i386 + postfix-ldap_2.9.6-2_i386 + postfix-mysql_2.9.6-2_i386 + postfix-pcre_2.9.6-2_i386 + postfix-pgsql_2.9.6-2_i386 + postgis_1.5.3-2_i386 + postgresql-9.1_9.1.11-0wheezy1_i386 + postgresql-9.1-dbg_9.1.11-0wheezy1_i386 + postgresql-9.1-debversion_1.0.6-1+b1_i386 + postgresql-9.1-ip4r_1.05-0.1_i386 + postgresql-9.1-orafce_3.0.4-1_i386 + postgresql-9.1-pgfincore_1.1-1_i386 + postgresql-9.1-pgmemcache_2.0.6-1.1+b1_i386 + postgresql-9.1-pgmp_1.0.0-4_i386 + postgresql-9.1-pgpool2_3.1.3-5_i386 + postgresql-9.1-pljava-gcj_1.4.3-2_i386 + postgresql-9.1-pllua_1:0.3.2-4_i386 + postgresql-9.1-plproxy_2.4-1_i386 + postgresql-9.1-plr_1:8.3.0.13-1_i386 + postgresql-9.1-plsh_1.3-5_i386 + postgresql-9.1-postgis_1.5.3-2_i386 + postgresql-9.1-prefix_1.1.1-1_i386 + postgresql-9.1-preprepare_0.5-1_i386 + postgresql-client-9.1_9.1.11-0wheezy1_i386 + postgresql-contrib-9.1_9.1.11-0wheezy1_i386 + postgresql-filedump_9.1.0-1_i386 + postgresql-plperl-8.4_8.4.19-0wheezy1_i386 + postgresql-plperl-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython-9.1_9.1.11-0wheezy1_i386 + postgresql-plpython3-9.1_9.1.11-0wheezy1_i386 + postgresql-pltcl-9.1_9.1.11-0wheezy1_i386 + postgresql-server-dev-9.1_9.1.11-0wheezy1_i386 + postmark_1.51-7_i386 + postpone_0.2_i386 + potool_0.12-1_i386 + potrace_1.10-1_i386 + pound_2.6-2_i386 + powerman_2.3.5-1_i386 + powermanga_0.90-dfsg-2_i386 + powermgmt-base_1.31_i386 + powertop_2.0-0.3_i386 + powstatd_1.5.1-9.1_i386 + poxml_4:4.8.4+dfsg-1_i386 + pp-popularity-contest_1.0.5-1_i386 + pp-popularity-contest-dbg_1.0.5-1_i386 + ppdfilt_2:0.10-7.1_i386 + pperl_0.25-6+b1_i386 + ppl-dev_0.11.2-8_i386 + ppmd_10.1-5_i386 + ppp_2.4.5-5.1+b1_i386 + pppdcapiplugin_1:3.25+dfsg1-3.3~deb7u1_i386 + pppoe_3.8-3_i386 + pps-tools_0.20120406+g0deb9c7e-2_i386 + ppsh_1.1.1-4+b1_i386 + ppthtml_0.5.1-6_i386 + pptp-linux_1.7.2-7_i386 + pptpd_1.3.4-5.2_i386 + pqiv_0.12-1_i386 + praat_5.3.16-1_i386 + prads_0.3.0-1_i386 + prayer_1.3.4-dfsg1-1_i386 + prayer-accountd_1.3.4-dfsg1-1_i386 + prayer-templates-dev_1.3.4-dfsg1-1_i386 + prboom_2:2.5.0+dfsg1-6_i386 + predict_2.2.3-3.1_i386 + predict-gsat_2.2.3-3.1_i386 + prelink_0.0.20090925-6_i386 + preload_0.6.4-2_i386 + prelude-lml_1.0.0-4_i386 + prelude-manager_1.0.1-4_i386 + premake_3.7-1_i386 + prerex_6.4.0-3_i386 + presage_0.8.8-1_i386 + presage-dbg_0.8.8-1_i386 + pretzel_2.0n-2-0.3_i386 + preview.app_0.8.5-9_i386 + price.app_1.1.0-1_i386 + primaxscan_0.93beta3-10+b1_i386 + primer3_2.2.3-1_i386 + primrose_6+dfsg1-2_i386 + printer-driver-c2050_0.3b-4_i386 + printer-driver-c2esp_24-2_i386 + printer-driver-cjet_0.8.9-3_i386 + printer-driver-escpr_1.1.1-2_i386 + printer-driver-foo2zjs_20120510dfsg0-1_i386 + printer-driver-gutenprint_5.2.9-1_i386 + printer-driver-hpcups_3.12.6-3.1+deb7u1_i386 + printer-driver-hpijs_3.12.6-3.1+deb7u1_i386 + printer-driver-m2300w_0.51-7_i386 + printer-driver-min12xxw_0.0.9-6_i386 + printer-driver-pnm2ppa_1.13-4_i386 + printer-driver-ptouch_1.3-4_i386 + printer-driver-pxljr_1.3+repack0-2_i386 + printer-driver-splix_2.0.0+svn306-2_i386 + printfilters-ppd_2.13-11.1_i386 + prips_0.9.9-1_i386 + pristine-tar_1.25+deb7u1_i386 + privbind_1.2-1.1_i386 + privoxy_3.0.19-2_i386 + probalign_1.4-2_i386 + probcons_1.12-9_i386 + probcons-extra_1.12-9_i386 + procinfo_1:2.0.304-1_i386 + procmail_3.22-20_i386 + procmeter3_3.5d-1_i386 + procps_1:3.3.3-3_i386 + procserv_2.6.0-1_i386 + proda_1.0-8_i386 + profnet-bval_1.0.21-1+wheezy1_i386 + profnet-chop_1.0.21-1+wheezy1_i386 + profnet-con_1.0.21-1+wheezy1_i386 + profnet-dbg_1.0.21-1+wheezy1_i386 + profnet-isis_1.0.21-1+wheezy1_i386 + profnet-md_1.0.21-1+wheezy1_i386 + profnet-norsnet_1.0.21-1+wheezy1_i386 + profnet-prof_1.0.21-1+wheezy1_i386 + profnet-snapfun_1.0.21-1+wheezy1_i386 + profphd-net_1.0.21-1+wheezy1_i386 + profphd-utils_1.0.9-1_i386 + proftmb_1.1.10-1_i386 + proftpd-basic_1.3.4a-5+deb7u1_i386 + proftpd-dev_1.3.4a-5+deb7u1_i386 + proftpd-mod-autohost_0.4-1+b1_i386 + proftpd-mod-case_0.7-1_i386 + proftpd-mod-clamav_0.10-1+b1_i386 + proftpd-mod-dnsbl_0.1.5-3+b2_i386 + proftpd-mod-fsync_0.2-1+b1_i386 + proftpd-mod-geoip_0.3-1+b1_i386 + proftpd-mod-ldap_1.3.4a-5+deb7u1_i386 + proftpd-mod-msg_0.4.1-1.1_i386 + proftpd-mod-mysql_1.3.4a-5+deb7u1_i386 + proftpd-mod-odbc_1.3.4a-5+deb7u1_i386 + proftpd-mod-pgsql_1.3.4a-5+deb7u1_i386 + proftpd-mod-sqlite_1.3.4a-5+deb7u1_i386 + proftpd-mod-tar_0.3.3-1+b1_i386 + proftpd-mod-vroot_0.9.2-2+b2_i386 + proj-bin_4.7.0-2_i386 + proj-data_4.7.0-2_i386 + projectcenter.app_0.6.0-2_i386 + projectl_1.001.dfsg1-4_i386 + projectm-dbg_2.1.0+dfsg-1_i386 + projectm-jack_2.1.0+dfsg-1_i386 + projectm-pulseaudio_2.1.0+dfsg-1_i386 + promoe_0.1.1-3+b1_i386 + prosody_0.8.2-4_i386 + protobuf-c-compiler_0.14-1+b1_i386 + protobuf-compiler_2.4.1-3_i386 + protoize_1:4.4.7-2_i386 + prover9_0.0.200902a-2.1_i386 + proxsmtp_1.10-1_i386 + proxycheck_0.49a-4_i386 + proxytrack_3.46.1-1_i386 + proxytunnel_1.9.0-5_i386 + ps2eps_1.68-1_i386 + psad_2.2-3.1_i386 + pscan_1.2-9_i386 + psensor_0.6.2.17-2+b1_i386 + psensor-server_0.6.2.17-2+b1_i386 + psi_0.14-3_i386 + psi-plus_0.15.5338-1_i386 + psi-plus-content-downloader_0.15.5338-1_i386 + psi-plus-dbg_0.15.5338-1_i386 + psi-plus-plugin-psimedia_1.0.3-git20120506-fb54b6e-1_i386 + psi-plus-plugins_0.15.5338-1_i386 + psi-plus-plugins-dbg_0.15.5338-1_i386 + psi-plus-webkit_0.15.5338-1_i386 + psi-plus-webkit-dbg_0.15.5338-1_i386 + psi3_3.4.0-4_i386 + psignifit_2.5.6-3_i386 + pslib-dev_0.4.5-3_i386 + pslib1_0.4.5-3_i386 + pslib1-dbg_0.4.5-3_i386 + pslist_1.3-2_i386 + psmisc_22.19-1+deb7u1_i386 + pspp_0.7.9+git20120620-1.1_i386 + pspresent_1.3-4_i386 + pst-utils_0.6.54-4.1_i386 + pstack_1.3.1-1_i386 + pstoedit_3.60-2+b1_i386 + pstotext_1.9-6_i386 + psutils_1.17.dfsg-1_i386 + psychtoolbox-3-dbg_3.0.9+svn2579.dfsg1-1_i386 + psychtoolbox-3-lib_3.0.9+svn2579.dfsg1-1_i386 + pterm_0.62-9+deb7u1_i386 + pth-dbg_2.0.7-16_i386 + ptop_3.6.2-5_i386 + ptpd_2.1.0-debian1-2_i386 + ptscotch_5.1.12b.dfsg-1.2_i386 + ptscotch-dbg_5.1.12b.dfsg-1.2_i386 + ptunnel_0.71-2_i386 + publib-dev_0.40-1_i386 + puf_1.0.0-7_i386 + pulseaudio_2.0-6.1_i386 + pulseaudio-dbg_2.0-6.1_i386 + pulseaudio-esound-compat_2.0-6.1_i386 + pulseaudio-esound-compat-dbg_2.0-6.1_i386 + pulseaudio-module-bluetooth_2.0-6.1_i386 + pulseaudio-module-bluetooth-dbg_2.0-6.1_i386 + pulseaudio-module-gconf_2.0-6.1_i386 + pulseaudio-module-gconf-dbg_2.0-6.1_i386 + pulseaudio-module-jack_2.0-6.1_i386 + pulseaudio-module-jack-dbg_2.0-6.1_i386 + pulseaudio-module-lirc_2.0-6.1_i386 + pulseaudio-module-lirc-dbg_2.0-6.1_i386 + pulseaudio-module-raop_2.0-6.1_i386 + pulseaudio-module-raop-dbg_2.0-6.1_i386 + pulseaudio-module-x11_2.0-6.1_i386 + pulseaudio-module-x11-dbg_2.0-6.1_i386 + pulseaudio-module-zeroconf_2.0-6.1_i386 + pulseaudio-module-zeroconf-dbg_2.0-6.1_i386 + pulseaudio-utils_2.0-6.1_i386 + pulseaudio-utils-dbg_2.0-6.1_i386 + pump_0.8.24-7_i386 + pure-ftpd_1.0.36-1.1_i386 + pure-ftpd-ldap_1.0.36-1.1_i386 + pure-ftpd-mysql_1.0.36-1.1_i386 + pure-ftpd-postgresql_1.0.36-1.1_i386 + puredata-core_0.43.2-5_i386 + puredata-extra_0.43.2-5_i386 + puredata-import_1.3-3_i386 + puredata-utils_0.43.2-5_i386 + purity_1-18_i386 + purity-ng_0.2.0-2_i386 + putty_0.62-9+deb7u1_i386 + putty-tools_0.62-9+deb7u1_i386 + pv_1.2.0-1_i386 + pvm_3.4.5-12.5_i386 + pvm-dev_3.4.5-12.5_i386 + pvm-examples_3.4.5-12.5_i386 + pvrg-jpeg_1.2.1+dfsg1-2_i386 + pwauth_2.3.8-1_i386 + pwgen_2.06-1+b2_i386 + pwget_2010.1012+git5feaa59-1_i386 + pxe_1.4.2-7_i386 + pxe-kexec_0.2.4-3_i386 + pxfw_0.7.1.002-5_i386 + pxlib-dev_0.6.5-1_i386 + pxlib1_0.6.5-1_i386 + pxsl-tools_1.0-5_i386 + pybik_0.5-1_i386 + pyfai_0.3.5-1_i386 + pyformex-lib_0.8.6-4_i386 + pyg_0.9.7+b2_i386 + pylucene_3.5.0-1.1_i386 + pymca_4.6.0-2_i386 + pymol_1.5.0.1-2_i386 + pyqt4-dev-tools_4.9.3-4_i386 + pyrit_0.4.0-2_i386 + pyrite-publisher_2.1.1-7.1_i386 + pyside-tools_0.2.13-3_i386 + python-adns_1.2.1-5+b1_i386 + python-alsaaudio_0.5+svn36-1+b2_i386 + python-appindicator_0.4.92-2_i386 + python-apsw_3.7.6.3-r1-1_i386 + python-apsw-dbg_3.7.6.3-r1-1_i386 + python-apt_0.8.8.2_i386 + python-apt-dbg_0.8.8.2_i386 + python-async_0.6.1-1_i386 + python-at-spi_0.6.1-1.3+b2_i386 + python-aubio_0.3.2-4.2+b1_i386 + python-audit_1:1.7.18-1.1_i386 + python-avahi_0.6.31-2_i386 + python-avogadro_1.0.3-5_i386 + python-ball_1.4.1+20111206-4_i386 + python-ballview_1.4.1+20111206-4_i386 + python-bibtex_1.2.5-1+b1_i386 + python-biopython_1.59-1_i386 + python-biosig_1.3.0-2_i386 + python-bitarray_0.8.0-2_i386 + python-blist_1.3.4-2_i386 + python-bluez_0.18-2_i386 + python-box2d_2.0.2+svn20100109.244-1+b1_i386 + python-brian-lib_1.3.1-1+b1_i386 + python-brlapi_4.4-10+deb7u1_i386 + python-bsddb3_5.2.0-1+b1_i386 + python-bsddb3-dbg_5.2.0-1+b1_i386 + python-bson_2.2-4+deb7u1_i386 + python-bson-ext_2.2-4+deb7u1_i386 + python-buffy_0.13+b1_i386 + python-bzrlib_2.6.0~bzr6526-1_i386 + python-bzrlib-dbg_2.6.0~bzr6526-1_i386 + python-cairo_1.8.8-1+b2_i386 + python-cairo-dbg_1.8.8-1+b2_i386 + python-cap-ng_0.6.6-2_i386 + python-carquinyol-0.84_0.84.1-3+b1_i386 + python-carquinyol-0.88_0.88.0-3+b1_i386 + python-carquinyol-0.96_0.96.0-1_i386 + python-cddb_1.4-5.1+b3_i386 + python-chaco_4.1.0-1_i386 + python-cheetah_2.4.4-3_i386 + python-chemfp_1.0-1_i386 + python-chm_0.8.4-1+b2_i386 + python-cjson_1.0.5-4+b1_i386 + python-cjson-dbg_1.0.5-4+b1_i386 + python-ckanclient_0.9-1_i386 + python-clearsilver_0.10.5-1.3_i386 + python-cmor_2.8.0-2+b1_i386 + python-cogent_1.5.1-2_i386 + python-cogent-dbg_1.5.1-2_i386 + python-comedilib_0.10.0-3_i386 + python-coverage_3.4-3_i386 + python-coverage-dbg_3.4-3_i386 + python-cpl_0.3.6-1_i386 + python-cqmf2_0.16-6+deb7u1_i386 + python-cqpid_0.16-6+deb7u1_i386 + python-cracklib_2.8.19-3_i386 + python-crypto_2.6-4+deb7u3_i386 + python-crypto-dbg_2.6-4+deb7u3_i386 + python-csound_1:5.17.11~dfsg-3_i386 + python-csoundac_1:5.17.11~dfsg-3_i386 + python-cups_1.9.48-1.1_i386 + python-cvxopt_1.1.4-1_i386 + python-cwiid_0.6.00+svn201-3+b1_i386 + python-daap_0.7.1-3+b2_i386 + python-dballe_5.18-1_i386 + python-dbus_1.1.1-1_i386 + python-dbus-dbg_1.1.1-1_i386 + python-demgengeo_0.99~bzr106-1+b1_i386 + python-desktop-agnostic_0.3.92+dfsg-1_i386 + python-dipy-lib_0.5.0-3_i386 + python-django-classy-tags_0.3.4.1-1_i386 + python-djvu_0.3.9-1_i386 + python-djvu-dbg_0.3.9-1_i386 + python-dmidecode_3.10.13-1.1_i386 + python-dmidecode-dbg_3.10.13-1.1_i386 + python-dolfin_1.0.0-7_i386 + python-dpm_1.8.2-1+b2_i386 + python-drizzle_1.0-3.1_i386 + python-drizzle-dbg_1.0-3.1_i386 + python-drslib_0.3.0a3-3_i386 + python-dulwich_0.8.5-2_i386 + python-dulwich-dbg_0.8.5-2_i386 + python-dumbnet_1.12-3.1_i386 + python-ecryptfs_99-1_i386 + python-edbus_0.5.0+r49577-1+b2_i386 + python-egenix-mx-base-dbg_3.2.1-1.1_i386 + python-egenix-mxbeebase_3.2.1-1.1_i386 + python-egenix-mxdatetime_3.2.1-1.1_i386 + python-egenix-mxproxy_3.2.1-1.1_i386 + python-egenix-mxqueue_3.2.1-1.1_i386 + python-egenix-mxstack_3.2.1-1.1_i386 + python-egenix-mxtexttools_3.2.1-1.1_i386 + python-egenix-mxtools_3.2.1-1.1_i386 + python-egenix-mxuid_3.2.1-1.1_i386 + python-egenix-mxurl_3.2.1-1.1_i386 + python-eggtrayicon_2.25.3-12_i386 + python-elementtidy_1.0-7+b2_i386 + python-enable_4.1.0-1_i386 + python-enet_0.0~svn24-1_i386 + python-epr_0.6.1-2_i386 + python-epr-dbg_0.6.1-2_i386 + python-espeak_0.4-1_i386 + python-ethos_0.2.2-3_i386 + python-ethtool_0.7-1.1_i386 + python-evolution_2.32.0+dfsg-2+b1_i386 + python-exactimage_0.8.5-5+deb7u3_i386 + python-fabio_0.0.8-1_i386 + python-factory-boy_1.1.3-1_i386 + python-farstream_0.1.2-1_i386 + python-faulthandler_2.0-1_i386 + python-fdsend_0.2.1-2_i386 + python-fftw_0.2.2-1_i386 + python-fife_0.3.3+r3-3_i386 + python-fiu_0.90-3_i386 + python-fltk_1.3.0-1_i386 + python-fltk-dbg_1.3.0-1_i386 + python-fontforge_0.0.20120101+git-2_i386 + python-formalchemy_1.4.2-1_i386 + python-freenect_1:0.1.2+dfsg-6_i386 + python-ftdi_0.20-1+b1_i386 + python-fuse_2:0.2.1-7_i386 + python-gamera_3.3.3-2_i386 + python-gamera-dbg_3.3.3-2_i386 + python-gamin_0.1.10-4.1_i386 + python-gammu_1.31.90-1+b1_i386 + python-gammu-dbg_1.31.90-1+b1_i386 + python-gconf_2.28.1+dfsg-1_i386 + python-gd_0.56+dfsg-3_i386 + python-gd-dbg_0.56+dfsg-3_i386 + python-gdal_1.9.0-3.1_i386 + python-gdbm_2.7.3-1_i386 + python-gdbm-dbg_2.7.3-1_i386 + python-gdchart2_0.beta1-3.4+b4_i386 + python-gdcm_2.2.0-14.1_i386 + python-gearman.libgearman_0.13.2-2.1_i386 + python-genshi_0.6-3_i386 + python-geographiclib_1.21-1_i386 + python-geohash_0.8.3-1+b1_i386 + python-geohash-dbg_0.8.3-1+b1_i386 + python-geoip_1.2.4-2+b2_i386 + python-getfem++_4.1.1+dfsg1-11_i386 + python-gevent_0.13.6-1+nmu3_i386 + python-gevent-dbg_0.13.6-1+nmu3_i386 + python-gi_3.2.2-2_i386 + python-gi-cairo_3.2.2-2_i386 + python-gi-dbg_3.2.2-2_i386 + python-gitdb_0.5.4-1_i386 + python-glade2_2.24.0-3+b1_i386 + python-glpk_0.4.45-1_i386 + python-gmenu_3.0.1-4_i386 + python-gmpy_1.15-1_i386 + python-gnatpython_54-3_i386 + python-gnome2_2.28.1+dfsg-1_i386 + python-gnomedesktop_2.32.0+dfsg-2+b1_i386 + python-gnomekeyring_2.32.0+dfsg-2+b1_i386 + python-gnucash_1:2.4.10-6_i386 + python-gnutls_1.2.4-1_i386 + python-gobject-2_2.28.6-10_i386 + python-gobject-2-dbg_2.28.6-10_i386 + python-gpgme_0.2-3_i386 + python-gpgme-dbg_0.2-3_i386 + python-gpiv_2.0.0-4.1_i386 + python-gpod_0.8.2-7_i386 + python-gps_3.6-4+deb7u1_i386 + python-greenlet_0.3.1-2.5_i386 + python-greenlet-dbg_0.3.1-2.5_i386 + python-greenlet-dev_0.3.1-2.5_i386 + python-grib_1.9.3-1_i386 + python-gst0.10_0.10.22-3_i386 + python-gst0.10-dbg_0.10.22-3_i386 + python-gst0.10-dev_0.10.22-3_i386 + python-gst0.10-rtsp_0.10.8-3_i386 + python-gtk-gnash_0.8.11~git20120629-1+deb7u1_i386 + python-gtk-vnc_0.5.0-3.1_i386 + python-gtk2_2.24.0-3+b1_i386 + python-gtk2-dbg_2.24.0-3+b1_i386 + python-gtkglext1_1.1.0-9.1_i386 + python-gtksourceview2_2.10.1-2_i386 + python-gtkspell_2.25.3-12_i386 + python-gudev_147.2-3_i386 + python-guestfs_1:1.18.1-1+deb7u3_i386 + python-guiqwt_2.1.6-4_i386 + python-gupnp-igd_0.2.1-2_i386 + python-h5py_2.0.1-2+b1_i386 + python-hdate_1.6-1_i386 + python-hippocanvas_0.3.1-1.1_i386 + python-hivex_1.3.6-2_i386 + python-http-parser_0.7.5-1_i386 + python-ieee1284_0.2.11-10_i386 + python-igraph_0.5.4-2_i386 + python-imaging_1.1.7-4_i386 + python-imaging-dbg_1.1.7-4_i386 + python-imaging-sane_1.1.7-4_i386 + python-imaging-sane-dbg_1.1.7-4_i386 + python-imaging-tk_1.1.7-4_i386 + python-imaging-tk-dbg_1.1.7-4_i386 + python-imdbpy_4.9-1_i386 + python-imobiledevice_1.1.1-4_i386 + python-imposm_2.4.0+dfsg-0.1_i386 + python-imposm-parser_1.0.3-1_i386 + python-indicate_0.6.92-1_i386 + python-initgroups_2.13.0-1+b1_i386 + python-inotifyx_0.2.0-1_i386 + python-input-pad_1.0.1-2_i386 + python-iptcdata_1.0.4-3_i386 + python-jinja2_2.6-1_i386 + python-jinja2-dbg_2.6-1_i386 + python-jpype_0.5.4.2-2_i386 + python-jswebkit_0.0.3-2_i386 + python-kaa-base_0.6.0+svn4596-1_i386 + python-kaa-imlib2_0.2.3+svn4596-2_i386 + python-kaa-metadata_0.7.7+svn4596-4_i386 + python-kde4_4:4.8.4-1_i386 + python-kde4-dbg_4:4.8.4-1_i386 + python-kerberos_1.1+svn4895-1+b2_i386 + python-keybinder_0.2.2-4_i386 + python-kinterbasdb_3.3.0-3_i386 + python-kinterbasdb-dbg_3.3.0-3_i386 + python-kjbuckets_1:1.0.0-15.1_i386 + python-kml_1.3.0~r863-4.1_i386 + python-krbv_1.0.90-1_i386 + python-kwwidgets_1.0.0~cvs20100930-8_i386 + python-lasso_2.3.6-2_i386 + python-ldap_2.4.10-1_i386 + python-ldap-dbg_2.4.10-1_i386 + python-ldb_1:1.1.6-1_i386 + python-ldb-dbg_1:1.1.6-1_i386 + python-ldb-dev_1:1.1.6-1_i386 + python-ldns_1.6.13-1_i386 + python-leveldb_0~svn51-1_i386 + python-levenshtein_0.10.1-2_i386 + python-levenshtein-dbg_0.10.1-2_i386 + python-lfc_1.8.2-1+b2_i386 + python-lhapdf_5.8.7+repack-1_i386 + python-libapparmor_2.7.103-4_i386 + python-libavg_1.7.1-1_i386 + python-libhamlib2_1.2.15.1-1_i386 + python-libipa-hbac_1.8.4-2_i386 + python-liblcms_1.19.dfsg-1.2_i386 + python-liblicense_0.8.1-3_i386 + python-liblinear_1.8+dfsg-1_i386 + python-liblo_0.9.1-2+b1_i386 + python-libmimic_1.0.4-2.1_i386 + python-libpcap_0.6.2-0.2_i386 + python-librdf_1.0.14.1-1_i386 + python-libssh2_1.0.0-1.1_i386 + python-libsvm_3.12-1_i386 + python-libtorrent_0.15.10-1+b1_i386 + python-libtorrent-dbg_0.15.10-1+b1_i386 + python-libuser_1:0.56.9.dfsg.1-1.2_i386 + python-libvirt_0.9.12.3-1_i386 + python-libxml2_2.8.0+dfsg1-7+nmu2_i386 + python-libxml2-dbg_2.8.0+dfsg1-7+nmu2_i386 + python-libxslt1_1.1.26-14.1_i386 + python-libxslt1-dbg_1.1.26-14.1_i386 + python-lightblue_0.3.2-1+b3_i386 + python-lilv_0.14.2~dfsg0-4_i386 + python-llfuse_0.37.1-2_i386 + python-llfuse-dbg_0.37.1-2_i386 + python-llvm_0.6+svn105-2_i386 + python-llvm-dbg_0.6+svn105-2_i386 + python-louis_2.4.1-1_i386 + python-lucene_3.5.0-1.1_i386 + python-lucene-dbg_3.5.0-1.1_i386 + python-lunar_2.0.1-2.2_i386 + python-lxml_2.3.2-1_i386 + python-lxml-dbg_2.3.2-1_i386 + python-lzma_0.5.3-2+b1_i386 + python-lzma-dbg_0.5.3-2+b1_i386 + python-lzo_1.08-1_i386 + python-m2crypto_0.21.1-2_i386 + python-magic_5.11-2_i386 + python-magic-dbg_5.11-2_i386 + python-magics++_2.14.11-4_i386 + python-mailutils_1:2.99.97-3_i386 + python-mapnik2_2.0.0+ds1-3+b4_i386 + python-mapscript_6.0.1-3.2+deb7u2_i386 + python-markupsafe_0.15-1_i386 + python-markupsafe-dbg_0.15-1_i386 + python-mathgl_1.11.2-17_i386 + python-matplotlib_1.1.1~rc2-1_i386 + python-matplotlib-dbg_1.1.1~rc2-1_i386 + python-mecab_0.99.3-1_i386 + python-meld3_0.6.5-3.1_i386 + python-meliae_0.4.0-1_i386 + python-meliae-dbg_0.4.0-1_i386 + python-metaconfig_0.1.4a1-1_i386 + python-mhash_1.4-1+b2_i386 + python-mhash-dbg_1.4-1+b2_i386 + python-mididings_0~20120419~ds0-1_i386 + python-milter_0.9.5-3_i386 + python-ming_1:0.4.4-1.1_i386 + python-mlpy-lib_2.2.0~dfsg1-2+b1_i386 + python-mlt5_0.8.0-4_i386 + python-mmkeys_1.6.2.1-5_i386 + python-mpi4py_1.3+hg20120611-3_i386 + python-mpi4py-dbg_1.3+hg20120611-3_i386 + python-mpikmeans_1.5-1+b1_i386 + python-mpltoolkits.basemap_1.0.3+dfsg-2_i386 + python-mtbl_0.1-2_i386 + python-museek_1:0.2+svn20100315.r1208-2_i386 + python-mvpa-lib_0.4.8-1_i386 + python-mvpa2-lib_2.1.0-1_i386 + python-mysqldb_1.2.3-2_i386 + python-mysqldb-dbg_1.2.3-2_i386 + python-nautilus_1.1-3_i386 + python-ncap_1.9.2-1+b2_i386 + python-necpp_1.5.0+cvs20101003-2.1_i386 + python-netcdf_2.8-4_i386 + python-netifaces_0.8-1_i386 + python-netifaces-dbg_0.8-1_i386 + python-neuroshare_0.8.5-1_i386 + python-newt_0.52.14-11.1_i386 + python-newt-dbg_0.52.14-11.1_i386 + python-nflog_0.2-3_i386 + python-nfqueue_0.4-3_i386 + python-nids_0.6.1-1+b1_i386 + python-nifti_0.20100607.1-4_i386 + python-notify_0.1.1-3_i386 + python-nss_0.12-1_i386 + python-numexpr_2.0.1-3_i386 + python-numexpr-dbg_2.0.1-3_i386 + python-numpy_1:1.6.2-1.2_i386 + python-numpy-dbg_1:1.6.2-1.2_i386 + python-obexftp_0.23-1.1_i386 + python-ogg_1.3+repack-5+b2_i386 + python-ogg-dbg_1.3+repack-5+b2_i386 + python-omniorb_3.6-1_i386 + python-omniorb-dbg_3.6-1_i386 + python-openbabel_2.3.1+dfsg-4_i386 + python-opencv_2.3.1-11_i386 + python-openmeeg_2.0.0.dfsg-5_i386 + python-openscap_0.8.0-4+b1_i386 + python-openssl_0.13-2+deb7u1_i386 + python-openssl-dbg_0.13-2+deb7u1_i386 + python-openstack-common_0.1+git20120203-1_i386 + python-openturns_1.0-4_i386 + python-openturns-dev_1.0-4_i386 + python-osmgpsmap_0.7.3-3_i386 + python-otr_0.2.1-1+b2_i386 + python-otr-dbg_0.2.1-1+b2_i386 + python-ow_2.8p15-1_i386 + python-pacparser_1.3.0-2_i386 + python-pam_0.4.2-13_i386 + python-pandas-lib_0.8.0-2_i386 + python-parted_3.6-6_i386 + python-parted-dbg_3.6-6_i386 + python-passfd_0.2-1_i386 + python-pcapy_0.10.8-1_i386 + python-pebl_1.0.2-2_i386 + python-pebl-dbg_1.0.2-2_i386 + python-pgm_0.3.12-2+b4_i386 + python-pgmagick_0.5.1-1+b1_i386 + python-phoneutils_0.1+git20100219-1+b1_i386 + python-pisock_0.12.5-5_i386 + python-pisock-dbg_0.12.5-5_i386 + python-pivy_0.5.0~v609hg-1_i386 + python-playerc_3.0.2+dfsg-4+b1_i386 + python-plist_1.8-1_i386 + python-plplot_5.9.9-5_i386 + python-plplot-qt_5.9.9-5_i386 + python-polybori_0.5~rc1-2.2_i386 + python-poppler_0.12.1-8+b1_i386 + python-poppler-dbg_0.12.1-8+b1_i386 + python-poppler-qt4_0.16.2-2_i386 + python-pqueue_0.2-7.1+b2_i386 + python-prctl_1.1.1-1.1_i386 + python-prelude_1.0.0-9_i386 + python-preludedb_1.0.0-1.1+b2_i386 + python-presage_0.8.8-1_i386 + python-presage-dbg_0.8.8-1_i386 + python-protobuf_2.4.1-3_i386 + python-protocols_1.0a.svn20070625-5+b2_i386 + python-psutil_0.5.1-1_i386 + python-psycopg2_2.4.5-1_i386 + python-psycopg2-dbg_2.4.5-1_i386 + python-py++_1.0.0-1_i386 + python-pyalsa_1.0.25-1_i386 + python-pyamf_0.6.1+dfsg-3_i386 + python-pyamf-dbg_0.6.1+dfsg-3_i386 + python-pyao_0.82-5_i386 + python-pyao-dbg_0.82-5_i386 + python-pyaudio_0.2.4-2+b1_i386 + python-pybiggles_1.6.6-1+b1_i386 + python-pyclamav_0.4.1-7_i386 + python-pycryptopp_0.5.29-1_i386 + python-pycryptopp-dbg_0.5.29-1_i386 + python-pycurl_7.19.0-5_i386 + python-pycurl-dbg_7.19.0-5_i386 + python-pydds_2.1.2+ddd105-1_i386 + python-pyepl_1.1.0-3.1_i386 + python-pyexiv2_0.3.2-5_i386 + python-pyfann_2.1.0~beta~dfsg-8_i386 + python-pyfann-dbg_2.1.0~beta~dfsg-8_i386 + python-pyfits_1:3.0.8-2_i386 + python-pyfribidi_0.11.0+repack-1_i386 + python-pyfribidi-dbg_0.11.0+repack-1_i386 + python-pygame_1.9.1release+dfsg-8_i386 + python-pygetdata_0.7.3-6_i386 + python-pygoocanvas_0.14.1-1+b3_i386 + python-pygraphviz_1.1-2_i386 + python-pygraphviz-dbg_1.1-2_i386 + python-pygresql_1:4.0-3_i386 + python-pygresql-dbg_1:4.0-3_i386 + python-pyicu_1.4-1_i386 + python-pyicu-dbg_1.4-1_i386 + python-pyisomd5sum_1:1.0.7+git.20110618.6c9cd2f-1_i386 + python-pykaraoke_0.7.5-1_i386 + python-pykcs11_1.2.4-1_i386 + python-pylibacl_0.5.1-1.1_i386 + python-pylibacl-dbg_0.5.1-1.1_i386 + python-pylibmc_1.2.2-1+b2_i386 + python-pylibmc-dbg_1.2.2-1+b2_i386 + python-pylirc_0.0.5-3_i386 + python-pymad_0.6-1.2+b1_i386 + python-pyme_1:0.8.1-2_i386 + python-pymongo_2.2-4+deb7u1_i386 + python-pymongo-ext_2.2-4+deb7u1_i386 + python-pymssql_1.0.2+dfsg-1+b2_i386 + python-pyo_0.6.1-1_i386 + python-pyodbc_2.1.7-1+b1_i386 + python-pyodbc-dbg_2.1.7-1+b1_i386 + python-pyode_1.2.0-4+cvs20090320+b2_i386 + python-pyorbit_2.24.0-6+b1_i386 + python-pyosd_0.2.14-5.1_i386 + python-pypcap_1.1.2+debian-2.2_i386 + python-pypm_0.0.7-7_i386 + python-pyproj_1.8.9-1+b1_i386 + python-pypsignifit_3.0~beta.20120611.1-1_i386 + python-pyscard_1.6.12.1-3_i386 + python-pyside.phonon_1.1.1-3_i386 + python-pyside.qtcore_1.1.1-3_i386 + python-pyside.qtdeclarative_1.1.1-3_i386 + python-pyside.qtgui_1.1.1-3_i386 + python-pyside.qthelp_1.1.1-3_i386 + python-pyside.qtnetwork_1.1.1-3_i386 + python-pyside.qtopengl_1.1.1-3_i386 + python-pyside.qtscript_1.1.1-3_i386 + python-pyside.qtsql_1.1.1-3_i386 + python-pyside.qtsvg_1.1.1-3_i386 + python-pyside.qttest_1.1.1-3_i386 + python-pyside.qtuitools_1.1.1-3_i386 + python-pyside.qtwebkit_1.1.1-3_i386 + python-pyside.qtxml_1.1.1-3_i386 + python-pyspatialite_3.0.1-2_i386 + python-pysqlite1.1_1.1.8a-6_i386 + python-pysqlite1.1-dbg_1.1.8a-6_i386 + python-pysqlite2_2.6.3-3_i386 + python-pysqlite2-dbg_2.6.3-3_i386 + python-pytango_7.2.3-2_i386 + python-pytc_0.8-1+b2_i386 + python-pytc-dbg_0.8-1+b2_i386 + python-pythonmagick_0.9.7-2+b1_i386 + python-pytyrant_1.1.17-1_i386 + python-pyvorbis_1.5-1_i386 + python-pyvorbis-dbg_1.5-1_i386 + python-pywcs_1.11-1_i386 + python-pywt_0.2.0-5_i386 + python-pyx_0.11.1-2+b1_i386 + python-pyxattr_0.5.1-1.1_i386 + python-pyxattr-dbg_0.5.1-1.1_i386 + python-pyxine_0.1alpha2-7+b1_i386 + python-pyxine-dbg_0.1alpha2-7+b1_i386 + python-pyxmpp_1.1.2-1_i386 + python-qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + python-qmf_0.16-6+deb7u1_i386 + python-qmf2_0.16-6+deb7u1_i386 + python-qrencode_1.01-2+b1_i386 + python-qscintilla2_2.6.2-2_i386 + python-qt4_4.9.3-4_i386 + python-qt4-dbg_4.9.3-4_i386 + python-qt4-dbus_4.9.3-4_i386 + python-qt4-dbus-dbg_4.9.3-4_i386 + python-qt4-gl_4.9.3-4_i386 + python-qt4-gl-dbg_4.9.3-4_i386 + python-qt4-phonon_4.9.3-4_i386 + python-qt4-phonon-dbg_4.9.3-4_i386 + python-qt4-sql_4.9.3-4_i386 + python-qt4-sql-dbg_4.9.3-4_i386 + python-quixote_2.7~b2-1+b2_i386 + python-quixote1_1.2-4.1+b2_i386 + python-qwt3d-qt4_0.1.7~cvs20090625-9_i386 + python-qwt5-qt4_5.2.1~cvs20091107+dfsg-6+b2_i386 + python-rabbyt_0.8.1-1+b2_i386 + python-radare2_0.9-1_i386 + python-radix_0.5-3_i386 + python-rapi2_0.15-2.1_i386 + python-rdflib_2.4.2-1+b2_i386 + python-rdkit_201203-3_i386 + python-recoll_1.17.3-2_i386 + python-regex_0.1.20120613-1_i386 + python-regex-dbg_0.1.20120613-1_i386 + python-remctl_3.2-4_i386 + python-renderpm_2.5-1.1_i386 + python-renderpm-dbg_2.5-1.1_i386 + python-renpy_6.13.12-1_i386 + python-reportlab-accel_2.5-1.1_i386 + python-reportlab-accel-dbg_2.5-1.1_i386 + python-rfoo_1.3.0-2_i386 + python-rivet_1.8.0-1_i386 + python-rpm_4.10.0-5+deb7u1_i386 + python-rpy_1.0.3-22_i386 + python-rpy2_2.2.6-1_i386 + python-rra_0.14-1.2_i386 + python-rrdtool_1.4.7-2_i386 + python-rsvg_2.32.0+dfsg-2+b1_i386 + python-rtfcomp_1.1-5+b1_i386 + python-samba_4.0.0~beta2+dfsg1-3.2_i386 + python-scgi_1.13-1+b2_i386 + python-scipy_0.10.1+dfsg2-1_i386 + python-scipy-dbg_0.10.1+dfsg2-1_i386 + python-sciscipy_0.3.0-3_i386 + python-selinux_2.1.9-5_i386 + python-semanage_2.1.6-6_i386 + python-sendfile_1.2.4-1+b2_i386 + python-sendfile-dbg_1.2.4-1+b2_i386 + python-setools_3.3.7-3_i386 + python-setproctitle_1.0.1-1+b1_i386 + python-setproctitle-dbg_1.0.1-1+b1_i386 + python-sfml_1.5-2+b1_i386 + python-shapely_1.2.14-1_i386 + python-sidl_1.4.0.dfsg-8.1_i386 + python-sigmask_2.4.1-1+b2_i386 + python-silo_4.8-13_i386 + python-simplejson_2.5.2-1_i386 + python-simpleparse-mxtexttools_2.1.0a1-6_i386 + python-sip_4.13.3-2_i386 + python-sip-dbg_4.13.3-2_i386 + python-sip-dev_4.13.3-2_i386 + python-skimage-lib_0.6.1-1_i386 + python-sklearn-lib_0.11.0-2+deb7u1_i386 + python-smartpm_1.4-2_i386 + python-smbc_1.0.6-1+b1_i386 + python-smbpasswd_1.0.1-1.2+b2_i386 + python-smbus_3.1.0-2_i386 + python-snappy_0.4-1_i386 + python-soya_0.15~rc1-8_i386 + python-soya-dbg_0.15~rc1-8_i386 + python-sparse_1.1-1+b2_i386 + python-sphere_3.2-4_i386 + python-spice-client-gtk_0.12-5_i386 + python-sqlalchemy-ext_0.7.8-1_i386 + python-sqlite_1.0.1-9_i386 + python-sqlite-dbg_1.0.1-9_i386 + python-sqlitecachec_1.1.2-1+b2_i386 + python-sss_1.8.4-2_i386 + python-statgrab_0.5-4_i386 + python-statsmodels-lib_0.4.2-1_i386 + python-stemmer_1.2.0+dfsg-1_i386 + python-stemmer-dbg_1.2.0+dfsg-1_i386 + python-stfio_0.10.18-1.1+b1_i386 + python-stfl_0.22-1+b1_i386 + python-storm_0.19-1_i386 + python-storm-dbg_0.19-1_i386 + python-subnettree_0.12-4+b1_i386 + python-subversion_1.6.17dfsg-4+deb7u4_i386 + python-subvertpy_0.8.10-2_i386 + python-subvertpy-dbg_0.8.10-2_i386 + python-sugar-0.84_0.84.2-4_i386 + python-sugar-0.88_0.88.0-4_i386 + python-sugar-0.96_0.96.0-1_i386 + python-sugar-toolkit-0.84_0.84.17-1_i386 + python-sugar-toolkit-0.88_0.88.1-3+b1_i386 + python-sugar-toolkit-0.96_0.96.1-1_i386 + python-sugar3_0.96.1-2_i386 + python-svipc_0.14-2_i386 + python-svn_1.7.5-1.1_i386 + python-svn-dbg_1.7.5-1.1_i386 + python-swiginac_1.5.1.1-1+b2_i386 + python-syfi_1.0.0.dfsg-1_i386 + python-tables_2.3.1-3_i386 + python-tables-dbg_2.3.1-3_i386 + python-tagpy_0.94.8-4_i386 + python-talloc_2.0.7+git20120207-1_i386 + python-talloc-dbg_2.0.7+git20120207-1_i386 + python-talloc-dev_2.0.7+git20120207-1_i386 + python-tau_2.16.4-1.4+b1_i386 + python-tcpwrap_0.2-2.1+b3_i386 + python-tdb_1.2.10-2_i386 + python-tdb-dbg_1.2.10-2_i386 + python-tk_2.7.3-1_i386 + python-tk-dbg_2.7.3-1_i386 + python-tomoe_0.6.0-1.3_i386 + python-traits_4.1.0-1_i386 + python-twisted-bin_12.0.0-1_i386 + python-twisted-bin-dbg_12.0.0-1_i386 + python-twisted-runner_12.0.0-1_i386 + python-twisted-runner-dbg_12.0.0-1_i386 + python-ufc_2.0.5-3_i386 + python-unac_1.7.0-1+b2_i386 + python-unbound_1.4.17-3_i386 + python-uniconvertor_1.1.4-1+b2_i386 + python-uniconvertor-dbg_1.1.4-1+b2_i386 + python-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python-unshare_0.1-2_i386 + python-urwid_1.0.1-2_i386 + python-usb_0.4.3-1_i386 + python-usbtc08_0.1.1-2_i386 + python-utmp_0.8+nmu1+b1_i386 + python-vigra_1.7.1+dfsg1-3_i386 + python-vipscc_7.28.5-1+deb7u1_i386 + python-visual_1:5.12-1.5_i386 + python-vte_1:0.28.2-5_i386 + python-vtk_5.8.0-13+b1_i386 + python-vtkgdcm_2.2.0-14.1_i386 + python-webkit_1.1.8-2_i386 + python-wimpiggy_0.3.11+dfsg-1_i386 + python-wnck_2.32.0+dfsg-2+b1_i386 + python-workqueue_3.5.1-2_i386 + python-wxgtk2.8_2.8.12.1-12_i386 + python-wxgtk2.8-dbg_2.8.12.1-12_i386 + python-xapian_1.2.12-2_i386 + python-xattr_0.6.4-2_i386 + python-xdelta3_3.0.0.dfsg-1_i386 + python-xklavier_0.4-4_i386 + python-xmmsclient_0.8+dfsg-4_i386 + python-xpyb_1.3.1-1_i386 + python-yaml_3.10-4_i386 + python-yaml-dbg_3.10-4_i386 + python-yenc_0.3+debian-2+b2_i386 + python-zbar_0.10+doc-8_i386 + python-zbarpygtk_0.10+doc-8_i386 + python-zeroc-ice_3.4.2-8.2_i386 + python-zfec_1.4.5-2_i386 + python-zinnia_0.06-1+b1_i386 + python-zmq_2.2.0-1_i386 + python-zmq-dbg_2.2.0-1_i386 + python-zodb_1:3.9.7-2_i386 + python-zookeeper_3.3.5+dfsg1-2_i386 + python-zope.hookable_3.4.1-8_i386 + python-zope.i18nmessageid_3.5.3-2_i386 + python-zope.interface_3.6.1-3_i386 + python-zope.interface-dbg_3.6.1-3_i386 + python-zope.proxy_3.6.1-2_i386 + python-zope.security_3.8.3-2_i386 + python2.6_2.6.8-1.1_i386 + python2.6-dbg_2.6.8-1.1_i386 + python2.6-dev_2.6.8-1.1_i386 + python2.6-minimal_2.6.8-1.1_i386 + python2.7_2.7.3-6_i386 + python2.7-dbg_2.7.3-6_i386 + python2.7-dev_2.7.3-6_i386 + python2.7-minimal_2.7.3-6_i386 + python3-apt_0.8.8.2_i386 + python3-apt-dbg_0.8.8.2_i386 + python3-bitarray_0.8.0-2_i386 + python3-bsddb3_5.2.0-1+b1_i386 + python3-bsddb3-dbg_5.2.0-1+b1_i386 + python3-cairo_1.10.0+dfsg-2_i386 + python3-cracklib_2.8.19-3_i386 + python3-crypto_2.6-4+deb7u3_i386 + python3-crypto-dbg_2.6-4+deb7u3_i386 + python3-dbus_1.1.1-1_i386 + python3-dbus-dbg_1.1.1-1_i386 + python3-dbus.mainloop.qt_4.9.3-4_i386 + python3-dbus.mainloop.qt-dbg_4.9.3-4_i386 + python3-drizzle_1.0-3.1_i386 + python3-drizzle-dbg_1.0-3.1_i386 + python3-epr_0.6.1-2_i386 + python3-epr-dbg_0.6.1-2_i386 + python3-gdbm_3.2.3-1_i386 + python3-gdbm-dbg_3.2.3-1_i386 + python3-gearman.libgearman_0.13.2-2.1_i386 + python3-gi_3.2.2-2_i386 + python3-gi-cairo_3.2.2-2_i386 + python3-gi-dbg_3.2.2-2_i386 + python3-jinja2_2.6-1_i386 + python3-jinja2-dbg_2.6-1_i386 + python3-leveldb_0~svn51-1_i386 + python3-llfuse_0.37.1-2_i386 + python3-llfuse-dbg_0.37.1-2_i386 + python3-lxml_2.3.2-1_i386 + python3-lxml-dbg_2.3.2-1_i386 + python3-markupsafe_0.15-1_i386 + python3-markupsafe-dbg_0.15-1_i386 + python3-mpi4py_1.3+hg20120611-3_i386 + python3-mpi4py-dbg_1.3+hg20120611-3_i386 + python3-numpy_1:1.6.2-1.2_i386 + python3-numpy-dbg_1:1.6.2-1.2_i386 + python3-openssl_0.13-2+deb7u1_i386 + python3-openssl-dbg_0.13-2+deb7u1_i386 + python3-postgresql_1.0.2-1+b1_i386 + python3-psycopg2_2.4.5-1_i386 + python3-psycopg2-dbg_2.4.5-1_i386 + python3-pyfits_1:3.0.8-2_i386 + python3-pykde4_4:4.8.4-1_i386 + python3-pykde4-dbg_4:4.8.4-1_i386 + python3-pylibacl_0.5.1-1.1_i386 + python3-pylibacl-dbg_0.5.1-1.1_i386 + python3-pyqt4_4.9.3-4_i386 + python3-pyqt4-dbg_4.9.3-4_i386 + python3-pyqt4.phonon_4.9.3-4_i386 + python3-pyqt4.phonon-dbg_4.9.3-4_i386 + python3-pyqt4.qsci_2.6.2-2_i386 + python3-pyqt4.qtopengl_4.9.3-4_i386 + python3-pyqt4.qtopengl-dbg_4.9.3-4_i386 + python3-pyqt4.qtsql_4.9.3-4_i386 + python3-pyqt4.qtsql-dbg_4.9.3-4_i386 + python3-pyside.phonon_1.1.1-3_i386 + python3-pyside.qtcore_1.1.1-3_i386 + python3-pyside.qtdeclarative_1.1.1-3_i386 + python3-pyside.qtgui_1.1.1-3_i386 + python3-pyside.qthelp_1.1.1-3_i386 + python3-pyside.qtnetwork_1.1.1-3_i386 + python3-pyside.qtopengl_1.1.1-3_i386 + python3-pyside.qtscript_1.1.1-3_i386 + python3-pyside.qtsql_1.1.1-3_i386 + python3-pyside.qtsvg_1.1.1-3_i386 + python3-pyside.qttest_1.1.1-3_i386 + python3-pyside.qtuitools_1.1.1-3_i386 + python3-pyside.qtwebkit_1.1.1-3_i386 + python3-pyside.qtxml_1.1.1-3_i386 + python3-pyxattr_0.5.1-1.1_i386 + python3-pyxattr-dbg_0.5.1-1.1_i386 + python3-regex_0.1.20120613-1_i386 + python3-regex-dbg_0.1.20120613-1_i386 + python3-scipy_0.10.1+dfsg2-1_i386 + python3-scipy-dbg_0.10.1+dfsg2-1_i386 + python3-sip_4.13.3-2_i386 + python3-sip-dbg_4.13.3-2_i386 + python3-sip-dev_4.13.3-2_i386 + python3-stemmer_1.2.0+dfsg-1_i386 + python3-stemmer-dbg_1.2.0+dfsg-1_i386 + python3-svipc_0.14-2_i386 + python3-tk_3.2.3-1_i386 + python3-tk-dbg_3.2.3-1_i386 + python3-uno_1:3.5.4+dfsg2-0+deb7u2_i386 + python3-urwid_1.0.1-2_i386 + python3-yaml_3.10-4_i386 + python3-yaml-dbg_3.10-4_i386 + python3-zmq_2.2.0-1_i386 + python3-zmq-dbg_2.2.0-1_i386 + python3-zope.interface_3.6.1-3_i386 + python3-zope.interface-dbg_3.6.1-3_i386 + python3.2_3.2.3-7_i386 + python3.2-dbg_3.2.3-7_i386 + python3.2-dev_3.2.3-7_i386 + python3.2-minimal_3.2.3-7_i386 + pythontracer_8.10.16-1.1_i386 + pytone_3.0.0-1+b4_i386 + pyxplot_0.8.4-5+b1_i386 + q4wine_0.121-4_i386 + qalc_0.9.7-8_i386 + qalculate-gtk_0.9.7-3_i386 + qantenna_0.2.3-2_i386 + qapt-batch_1.3.0-2_i386 + qapt-dbg_1.3.0-2_i386 + qapt-deb-installer_1.3.0-2_i386 + qapt-utils_1.3.0-2_i386 + qasconfig_0.17.2-2_i386 + qashctl_0.17.2-2_i386 + qasmixer_0.17.2-2_i386 + qbankmanager_0.9.55beta-3_i386 + qbittorrent_2.9.8-1_i386 + qbittorrent-dbg_2.9.8-1_i386 + qbittorrent-nox_2.9.8-1_i386 + qbrew_0.4.1-3_i386 + qca2-utils_2.0.3-4_i386 + qcomicbook_0.8.2-1_i386 + qconf_1.4-3_i386 + qdacco_0.8.2-1_i386 + qdbm-cgi_1.8.78-2_i386 + qdbm-util_1.8.78-2_i386 + qdbus_4:4.8.2+dfsg-11_i386 + qelectrotech_0.22+svn897-1_i386 + qemu_1.1.2+dfsg-6a_i386 + qemu-kvm_1.1.2+dfsg-6_i386 + qemu-kvm-dbg_1.1.2+dfsg-6_i386 + qemu-system_1.1.2+dfsg-6a_i386 + qemu-user_1.1.2+dfsg-6a_i386 + qemu-user-static_1.1.2+dfsg-6a_i386 + qemu-utils_1.1.2+dfsg-6a_i386 + qemubuilder_0.70_i386 + qfits-tools_6.2.0-5_i386 + qgis_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-mapserver_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-plugin-grass_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-providers_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgis-sqlanywhere1.7.5_1.7.4+1.7.5~20120320-1.1+b1_i386 + qgit_2.4-1_i386 + qgo_2~svn764-1_i386 + qhull-bin_2009.1-3_i386 + qiime_1.4.0-2_i386 + qimhangul-qt4_0.2.0-2_i386 + qingy_0.9.7-2_i386 + qiv_2.2.4-1_i386 + qjackctl_0.3.9-2_i386 + qjackrcd_1.0.6~ds0-1_i386 + qlandkartegt_1.5.0~dfsg1-1_i386 + qlandkartegt-garmin_0.3.4-2_i386 + qliss3d_1.4-1_i386 + qlvnictools_0.0.1-1_i386 + qmail_1.06-5_i386 + qmc_0.94-3+b1_i386 + qmf-dbg_1.0.7~2011w23.2-2.1_i386 + qmf-dev_1.0.7~2011w23.2-2.1_i386 + qmf-examples_1.0.7~2011w23.2-2.1_i386 + qmf-tests_1.0.7~2011w23.2-2.1_i386 + qmfgen_0.16-6+deb7u1_i386 + qmidiarp_0.5.0-1_i386 + qmidiarp-dbg_0.5.0-1_i386 + qmidinet_0.1.2-1_i386 + qmidinet-dbg_0.1.2-1_i386 + qmidiroute_0.3.0-1_i386 + qmmp_0.5.5-1+b1_i386 + qmmp-plugin-projectm_0.5.5-1+b1_i386 + qmpdclient_1.2.2-2_i386 + qnapi_0.1.5-9_i386 + qonk_0.3.1-3.1+b1_i386 + qpdf_2.3.1-4_i386 + qpdfview_0.3.1-1_i386 + qpid-client_0.16-6+deb7u1_i386 + qpidd_0.16-6+deb7u1_i386 + qprint_1.0.dfsg.2-2_i386 + qprogram-starter_1.6.4-1_i386 + qpxtool_0.7.1.002-5_i386 + qrencode_3.3.0-2_i386 + qrfcview_0.62-5.1_i386 + qrq_0.3.0-2_i386 + qsampler_0.2.2-5_i386 + qsapecng_2.0.0-5_i386 + qsf_1.2.7-1+b2_i386 + qshutdown_1.6.4-1_i386 + qsstv_7.1.7-3_i386 + qstardict_0.12.9-1.1_i386 + qstat_2.11-3_i386 + qsynth_0.3.6-2_i386 + qt-assistant-compat_4.6.3-4_i386 + qt-at-spi_0.3.1-3_i386 + qt4-bin-dbg_4:4.8.2+dfsg-11_i386 + qt4-demos_4:4.8.2+dfsg-11_i386 + qt4-demos-dbg_4:4.8.2+dfsg-11_i386 + qt4-designer_4:4.8.2+dfsg-11_i386 + qt4-dev-tools_4:4.8.2+dfsg-11_i386 + qt4-linguist-tools_4:4.8.2+dfsg-11_i386 + qt4-qmake_4:4.8.2+dfsg-11_i386 + qt4-qmlviewer_4:4.8.2+dfsg-11_i386 + qt4-qtconfig_4:4.8.2+dfsg-11_i386 + qtads_2.1.3-1_i386 + qtcreator_2.5.0-2_i386 + qtcreator-dbg_2.5.0-2_i386 + qtcurve_1.8.12-2_i386 + qtemu_1.0.5-2_i386 + qterm_1:0.5.12-1.1_i386 + qtgstreamer-dbg_0.10.2-2_i386 + qtgstreamer-declarative_0.10.2-2_i386 + qtgstreamer-plugins_0.10.2-2_i386 + qthid-fcd-controller_3.1-5_i386 + qtikz_0.10-3_i386 + qtiplot_0.9.8.8-5+b1_i386 + qtm_1.3.6-1_i386 + qtmobility-dbg_1.2.0-3_i386 + qtmobility-dev_1.2.0-3_i386 + qtmobility-examples_1.2.0-3_i386 + qtoctave_0.10.1-3_i386 + qtractor_0.5.5-1_i386 + qtractor-dbg_0.5.5-1_i386 + qtscript-tools_0.2.0-1_i386 + qtscrob_0.10-4_i386 + qtsmbstatus-client_2.2.1-2_i386 + qtsmbstatus-light_2.2.1-2_i386 + qtsmbstatus-server_2.2.1-2_i386 + quadrapassel_1:3.4.2-3_i386 + quagga_0.99.22.4-1+wheezy1_i386 + quagga-dbg_0.99.22.4-1+wheezy1_i386 + quakespasm_0.85.7-1_i386 + quakespasm-dbg_0.85.7-1_i386 + quantlib-examples_1.2-2+b1_i386 + quantlib-python_1.2-2_i386 + quantum-espresso_5.0-1_i386 + quarry_0.2.0.dfsg.1-4_i386 + quassel_0.8.0-1_i386 + quassel-client_0.8.0-1_i386 + quassel-client-kde4_0.8.0-1_i386 + quassel-core_0.8.0-1_i386 + quassel-kde4_0.8.0-1_i386 + quelcom_0.4.0-13_i386 + quickplot_0.10.3-1_i386 + quicksynergy_0.9-1_i386 + quicktime-utils_2:1.2.4-3_i386 + quicktime-x11utils_2:1.2.4-3_i386 + quisk_3.6.2-1_i386 + quitcount_2.0-1_i386 + quixote1-doc_1.2-4.1+b2_i386 + quota_4.00-4+deb7u1_i386 + quotatool_1.4.12-1_i386 + qutecom_2.2.1+dfsg1-3+b1_i386 + qutecom-dbg_2.2.1+dfsg1-3+b1_i386 + qutecsound_0.6.1-2_i386 + qutemol_0.4.1~cvs20081111-2+b2_i386 + quvi_0.4.2-1_i386 + qv4l2_0.8.8-3_i386 + qviaggiatreno_2010.11.1-1_i386 + qwbfsmanager_1.1.0-1.1_i386 + qwo_0.5-2+b1_i386 + qxw_20110923-1_i386 + r-base-core_2.15.1-4_i386 + r-base-core-dbg_2.15.1-4_i386 + r-bioc-biobase_2.14.0-1_i386 + r-bioc-biocgenerics_0.2.0-1_i386 + r-bioc-hilbertvis_1.14.0-1_i386 + r-bioc-limma_3.12.0~dfsg-1_i386 + r-cran-amore_0.2-12-2_i386 + r-cran-bayesm_2.2-4-1_i386 + r-cran-bitops_1.0-4.1-2_i386 + r-cran-cairodevice_2.19-1_i386 + r-cran-catools_1.12-2_i386 + r-cran-chron_2.3-42-1_i386 + r-cran-class_7.3-4-1_i386 + r-cran-cluster_1.14.2-1_i386 + r-cran-colorspace_1.0.1-1+b1_i386 + r-cran-date_1.2.32-1_i386 + r-cran-dbi_0.2-5-2_i386 + r-cran-deal_1.2.34-1_i386 + r-cran-digest_0.5.2-1_i386 + r-cran-eco_3.1-4-2_i386 + r-cran-epi_1.1.33-1_i386 + r-cran-epibasix_1.1-3_i386 + r-cran-erm_0.14-0-2_i386 + r-cran-evd_2.2-4-2_i386 + r-cran-fasianoptions_2160.77-1_i386 + r-cran-fassets_2100.78-3_i386 + r-cran-fbasics_2160.81-2_i386 + r-cran-fbonds_2100.75-3_i386 + r-cran-fcopulae_2110.78-1_i386 + r-cran-fgarch_2110.80.1-1_i386 + r-cran-fnonlinear_2100.76-4_i386 + r-cran-foptions_2160.81-1_i386 + r-cran-foreign_0.8.50-1_i386 + r-cran-fportfolio_2130.80-1_i386 + r-cran-fregression_2100.76-4_i386 + r-cran-funitroots_2100.76-3_i386 + r-cran-gam_1.06.2-1_i386 + r-cran-genabel_1.7-0-3_i386 + r-cran-getopt_1.17-1_i386 + r-cran-gtools_2.7.0-1_i386 + r-cran-haplo.stats_1.5.5-1_i386 + r-cran-hdf5_1.6.10-1+b1_i386 + r-cran-hmisc_3.9-3-1_i386 + r-cran-int64_1.1.2-1_i386 + r-cran-kernsmooth_2.23-8-1_i386 + r-cran-lattice_0.20-6-1_i386 + r-cran-latticeextra_0.6-19-1_i386 + r-cran-lme4_0.999999-0-1_i386 + r-cran-lmtest_0.9.30-1_i386 + r-cran-lpsolve_5.6.6-1_i386 + r-cran-mapdata_2.2-1-1_i386 + r-cran-mapproj_1.1-8.3-2_i386 + r-cran-maps_2.2-5-1_i386 + r-cran-mass_7.3-19-1_i386 + r-cran-matrix_1.0-6-1_i386 + r-cran-mcmcpack_1.2-3-1_i386 + r-cran-medadherence_1.02-1_i386 + r-cran-mgcv_1.7-13-1_i386 + r-cran-mnormt_1.4-5-1_i386 + r-cran-mnp_2.6-2-1_i386 + r-cran-msm_1.1-1_i386 + r-cran-multicore_0.1-7-1_i386 + r-cran-mvtnorm_0.9-9992-1_i386 + r-cran-nlme_3.1.104-1_i386 + r-cran-nnet_7.3-4-1_i386 + r-cran-plyr_1.7.1-1_i386 + r-cran-polspline_1.1.5-5_i386 + r-cran-proto_0.3-9.2-1_i386 + r-cran-pscl_1.03.5-1+deb70u1_i386 + r-cran-qtl_1.23-16-1_i386 + r-cran-quadprog_1.5-4-1_i386 + r-cran-randomforest_4.6-6-1_i386 + r-cran-raschsampler_0.8-5-1_i386 + r-cran-rcmdr_1.8-4-1_i386 + r-cran-rcpp_0.9.13-1_i386 + r-cran-reshape_0.8.4-1_i386 + r-cran-rggobi_2.1.17-1_i386 + r-cran-rgl_0.92.798-1+deb7u1_i386 + r-cran-rglpk_0.3-8-1_i386 + r-cran-rgtk2_2.20.24-1_i386 + r-cran-rjags_3.3-1_i386 + r-cran-rjava_0.9-3-1_i386 + r-cran-rmpi_0.5-9-3_i386 + r-cran-rms_3.5-0-1_i386 + r-cran-rmysql_0.9-3-1+b1_i386 + r-cran-robustbase_0.8-1-1-1_i386 + r-cran-rodbc_1.3-6-1_i386 + r-cran-rpart_3.1.54-1_i386 + r-cran-rquantlib_0.3.8-2_i386 + r-cran-rserve_0.6-8-1_i386 + r-cran-rsprng_1.0-2_i386 + r-cran-rsqlite_0.11.1-1_i386 + r-cran-rsymphony_0.1-14-1_i386 + r-cran-scatterplot3d_0.3-33-1_i386 + r-cran-slam_0.1-24-1_i386 + r-cran-sm_2.2-4.1-1_i386 + r-cran-sn_0.4-17-1_i386 + r-cran-sp_1:0.9-81-1_i386 + r-cran-spatial_7.3-4-1_i386 + r-cran-spc_1:0.4.1-1_i386 + r-cran-survival_2.36-14-1_i386 + r-cran-timedate_2160.95-1_i386 + r-cran-timeseries_2160.94-1_i386 + r-cran-tkrplot_0.0.23-1_i386 + r-cran-tseries_0.10-28-1_i386 + r-cran-urca_1.2-6-1_i386 + r-cran-vegan_2.0-3-1_i386 + r-cran-vgam_0.8-7-1_i386 + r-cran-xml_3.9-4-1_i386 + r-cran-zoo_1.7-7-1_i386 + r-mathlib_2.15.1-4_i386 + r-other-mott-happy_2.1-7_i386 + r-other-rot_1.0-4_i386 + rabbitsign_2.1+dmca1-1+b1_i386 + racket_5.2.1+g6~92c8784+dfsg2-2+deb7u1_i386 + racoon_1:0.8.0-14_i386 + radare2_0.9-3_i386 + radeontool_1.6.2-1.1_i386 + radiance_4R1+20120125-1+b1_i386 + radiance-sse3_4R1+20120125-1+b1_i386 + radio_3.102-3_i386 + radioclk_1.0.ds1-12_i386 + radiotray_0.7.2-1_i386 + radiusclient1_0.3.2-14_i386 + radiusd-livingston_2.1-20_i386 + radsecproxy_1.6.2-1_i386 + radvd_1:1.8.5-1_i386 + rafkill_1.2.2-3.3+b1_i386 + ragel_6.7-1.1_i386 + raidutils_0.0.6-19_i386 + raincat_1.1-3_i386 + raincat-dbg_1.1-3_i386 + rakarrack_0.6.1-4_i386 + rakudo_0.1~2012.01-1_i386 + ramond_0.5-4_i386 + rancid_2.3.8-3_i386 + randomize-lines_0.2.7_i386 + randomsound_0.2-5_i386 + randtype_1.13-10_i386 + rapidsvn_0.12.0dfsg-6_i386 + raptor-utils_1.4.21-7.1_i386 + raptor2-utils_2.0.8-2_i386 + rarian-compat_0.8.1-5_i386 + rarpd_0.981107-8_i386 + rasmol_2.7.5.2-1_i386 + rasqal-utils_0.9.29-1_i386 + raster3d_3.0-2-4_i386 + rasterlite-bin_1.1~svn11-2_i386 + rasterlite-dbg_1.1~svn11-2_i386 + rat_4.2.22-2.1_i386 + ratbox-services-common_1.2.4-2+b1_i386 + ratbox-services-mysql_1.2.4-2+b1_i386 + ratbox-services-pgsql_1.2.4-2+b1_i386 + ratbox-services-sqlite_1.2.4-2+b1_i386 + ratfor_1.0-15_i386 + ratmenu_2.3.20_i386 + ratpoison_1.4.5-4_i386 + ratproxy_1.58+dfsg-3+b1_i386 + rats_2.3-1_i386 + rawstudio_2.0-1.1_i386 + rawstudio-dbg_2.0-1.1_i386 + rawtherapee_4.0.9-4_i386 + raxml_7.2.8-2_i386 + razor_1:2.85-4+b1_i386 + rblcheck_20020316-7_i386 + rbldnsd_0.996b_i386 + rbootd_2.0-10_i386 + rc_1.7.1-4_i386 + rcov_1.0-2_i386 + rcs_5.8.1-1_i386 + rcs-blame_1.3.1-2_i386 + rdate_1:1.2-5_i386 + rdd_2.0.7-2+b1_i386 + rdesktop_1.7.1-1_i386 + rdfind_1.3.1-1_i386 + rdiff_0.9.7-9_i386 + rdiff-backup_1.2.8-7_i386 + rdiff-backup-fs_1.0.0-4_i386 + rdist_6.1.5-18_i386 + rdmacm-utils_1.0.15-1+deb7u1_i386 + rdnssd_1.0.1-1+b1_i386 + rds-tools_1.4.1-OFED-1.4.2-1_i386 + rdup_1.1.11-1+b1_i386 + re_0.1-5+b1_i386 + re2c_0.13.5-1_i386 + read-edid_2.0.0-3.1_i386 + readahead-fedora_2:1.5.6-4_i386 + readseq_1-9_i386 + realpath_1.18_i386 + realtimebattle_1.0.8-13_i386 + reaver_1.4-2_i386 + recite_1.0-8.2_i386 + recode_3.6-20_i386 + recoll_1.17.3-2_i386 + recordmydesktop_0.3.8.1+svn602-1+b1_i386 + recover_1.3c-11_i386 + recoverdm_0.20-2+b1_i386 + recoverjpeg_2.0-3.1_i386 + recutils_1.5-1_i386 + redir_2.2.1-10_i386 + redis-server_2:2.4.14-1_i386 + redland-utils_1.0.15-1+b1_i386 + redmine-plugin-botsfilter_1.02-2_i386 + redshift_1.7-2_i386 + redsocks_0.4+dfsg-1_i386 + ree_1.3-2.1_i386 + referencer_1.1.6-2+b4_i386 + refit_0.14-2_i386 + regexxer_0.9-2.1_i386 + regina-normal_4.93-1_i386 + regina-normal-dev_4.93-1_i386 + regina-normal-mpi_4.93-1_i386 + regina-rexx_3.6-2_i386 + regionset_0.1-3_i386 + registry-tools_4.0.0~beta2+dfsg1-3.2_i386 + reglookup_0.12.0-1_i386 + reiser4progs_1.0.7-6.3_i386 + reiserfsprogs_1:3.6.21-1_i386 + rekonq_0.9.2-1_i386 + rekonq-dbg_0.9.2-1_i386 + remake_3.81+dbg0.2~dfsg.1-1_i386 + remctl-client_3.2-4_i386 + remctl-server_3.2-4_i386 + remembrance-agent_2.12-7_i386 + remind_03.01.12-1_i386 + remmina_1.0.0-4+deb7u1_i386 + remmina-plugin-gnome_1.0.0-4+deb7u1_i386 + remmina-plugin-nx_1.0.0-4+deb7u1_i386 + remmina-plugin-rdp_1.0.0-4+deb7u1_i386 + remmina-plugin-telepathy_1.0.0-4+deb7u1_i386 + remmina-plugin-vnc_1.0.0-4+deb7u1_i386 + remmina-plugin-xdmcp_1.0.0-4+deb7u1_i386 + remote-tty_4.0-13_i386 + renameutils_0.12.0-1_i386 + renattach_1.2.4-3_i386 + rep_0.90.2-1.3_i386 + rep-gtk_1:0.90.0-2_i386 + rephrase_0.1-3_i386 + reprepro_4.12.5-1_i386 + repro_1.8.5-4_i386 + reptyr_0.3-2_i386 + resample_1.8.1-1_i386 + resiprocate-turn-server_1.8.5-4_i386 + resource-agents_1:3.9.2-5+deb7u1_i386 + resource-agents-dev_1:3.9.2-5+deb7u1_i386 + restartd_0.2.2_i386 + retty_1.0-2_i386 + rev-plugins_0.3.1-2_i386 + revelation_0.4.13-1.2_i386 + rexima_1.4-7_i386 + rfdump_1.6-2_i386 + rfkill_0.4-1_i386 + rgbpaint_0.8.7-3_i386 + rgmanager_3.0.12-3.2+deb7u2_i386 + rhash_1.2.9-8+deb7u1_i386 + rheolef_6.1-2.1_i386 + rhn-client-tools_1.8.9-3_i386 + rhythmbox_2.97-2.1_i386 + rhythmbox-dbg_2.97-2.1_i386 + rhythmbox-dev_2.97-2.1_i386 + rhythmbox-plugin-cdrecorder_2.97-2.1_i386 + rhythmbox-plugins_2.97-2.1_i386 + ri-li_2.0.1-2_i386 + rifiuti_1.0+20040505-4+b1_i386 + rifiuti2_0.5.1-3+b1_i386 + rig_1.11-1_i386 + rinetd_0.62-5.1_i386 + rio_1.07-11.1_i386 + ripole_0.2.0+20081101.0215-1_i386 + ripperx_2.7.3-1_i386 + ristretto_0.3.7-1_i386 + rivet-plugins_1.8.0-1_i386 + rkward_0.5.7-2+deb7u1_i386 + rlfe_6.2+dfsg-0.1_i386 + rlinetd_0.8.2-2_i386 + rlplot_1.5-2_i386 + rlpr_2.05-4_i386 + rlvm_0.12-4_i386 + rlwrap_0.37-3_i386 + rmail_8.14.4-4_i386 + rman_3.2-6_i386 + rnahybrid_2.1.1-1_i386 + rng-tools_2-unofficial-mt.14-1_i386 + roaraudio_1.0~beta2-3_i386 + roaraudio-dbg_1.0~beta2-3_i386 + roarclients_1.0~beta2-3_i386 + roarplaylistd_0.1.1-2_i386 + roarplaylistd-dbg_0.1.1-2_i386 + robocut_1.0.8-1_i386 + robojournal_0.2.1-1_i386 + robot-player_3.0.2+dfsg-4+b1_i386 + robotfindskitten_1.7320508.406-3_i386 + rockdodger_0.6.0a-7_i386 + rocs_4:4.8.4-1_i386 + rofs_2006.11.28-2.1_i386 + rolldice_1.10-5_i386 + root-plugin-geom-gdml_5.34.00-2_i386 + root-plugin-geom-geombuilder_5.34.00-2_i386 + root-plugin-geom-geompainter_5.34.00-2_i386 + root-plugin-graf2d-asimage_5.34.00-2_i386 + root-plugin-graf2d-qt_5.34.00-2_i386 + root-plugin-graf2d-x11_5.34.00-2_i386 + root-plugin-graf3d-x3d_5.34.00-2_i386 + root-plugin-gui-fitpanel_5.34.00-2_i386 + root-plugin-gui-guibuilder_5.34.00-2_i386 + root-plugin-gui-qt_5.34.00-2_i386 + root-plugin-gui-sessionviewer_5.34.00-2_i386 + root-plugin-hist-hbook_5.34.00-2_i386 + root-plugin-hist-histpainter_5.34.00-2_i386 + root-plugin-hist-spectrumpainter_5.34.00-2_i386 + root-plugin-io-sql_5.34.00-2_i386 + root-plugin-io-xml_5.34.00-2_i386 + root-plugin-math-fftw3_5.34.00-2_i386 + root-plugin-math-fumili_5.34.00-2_i386 + root-plugin-math-minuit2_5.34.00-2_i386 + root-plugin-montecarlo-pythia8_5.34.00-2_i386 + root-plugin-net-globus_5.34.00-2_i386 + root-plugin-net-krb5_5.34.00-2_i386 + root-plugin-proof-peac_5.34.00-2_i386 + root-plugin-sql-mysql_5.34.00-2_i386 + root-plugin-sql-odbc_5.34.00-2_i386 + root-plugin-sql-pgsql_5.34.00-2_i386 + root-plugin-tree-treeviewer_5.34.00-2_i386 + root-system-bin_5.34.00-2_i386 + root-system-proofd_5.34.00-2_i386 + root-system-rootd_5.34.00-2_i386 + root-tail_1.2-3_i386 + rootstrap_0.3.25-1_i386 + rosegarden_1:12.04-1_i386 + rosegarden-dbg_1:12.04-1_i386 + rotix_0.83-4_i386 + rotter_0.9-3_i386 + routino_2.2-4+deb7u1_i386 + rovclock_0.6e-7_i386 + rox-filer_2.10-3_i386 + roxterm-gtk2_2.6.5-1_i386 + roxterm-gtk3_2.6.5-1_i386 + rpcbind_0.2.0-8_i386 + rplay-client_3.3.2-14_i386 + rplay-contrib_3.3.2-14_i386 + rplay-server_3.3.2-14_i386 + rpm_4.10.0-5+deb7u1_i386 + rpm-common_4.10.0-5+deb7u1_i386 + rpm2cpio_4.10.0-5+deb7u1_i386 + rpm2html_1.11.2-3_i386 + rrdcached_1.4.7-2_i386 + rrdcollect_0.2.10-2_i386 + rrdcollect-dbg_0.2.10-2_i386 + rrdtool_1.4.7-2_i386 + rrdtool-dbg_1.4.7-2_i386 + rrdtool-tcl_1.4.7-2_i386 + rrep_1.3.3-2_i386 + rrootage_0.23a-9_i386 + rs_20120414-1_i386 + rsakeyfind_1:1.0-2.1_i386 + rsh-client_0.17-15_i386 + rsh-redone-client_85-1_i386 + rsh-redone-server_85-1_i386 + rsh-server_0.17-15_i386 + rsibreak_4:0.11-2_i386 + rsrce_0.2.2_i386 + rss-glx_0.9.1-5+b3_i386 + rss2irc_0.4.2-4_i386 + rssh_2.3.3-6_i386 + rsstail_1.8-1_i386 + rstat-client_4.0.1-8_i386 + rstatd_4.0.1-8_i386 + rsync_3.0.9-4_i386 + rsyncrypto_1.12-1+b1_i386 + rsyslog_7.4.4-1~bpo70+1_i386 + rsyslog-gnutls_5.8.11-3_i386 + rsyslog-gssapi_5.8.11-3_i386 + rsyslog-mysql_5.8.11-3_i386 + rsyslog-pgsql_5.8.11-3_i386 + rsyslog-relp_5.8.11-3_i386 + rt-tests_0.83-1+deb7u1_i386 + rt4-extension-authenexternalauth_0.10-4_i386 + rtai_3.8.1-4_i386 + rtai-source_3.8.1-4_i386 + rtgui_0.2.81-4_i386 + rtkit_0.10-2+wheezy1_i386 + rtmpdump_2.4+20111222.git4e06e21-1_i386 + rtorrent_0.9.2-1_i386 + rtpproxy_1.2.1-1.1_i386 + rubberband-cli_1.3-1.3_i386 + rubberband-ladspa_1.3-1.3_i386 + rubberband-vamp_1.3-1.3_i386 + rubrica_2.0-1.3_i386 + ruby-akonadi_4:4.8.4-1_i386 + ruby-atk_1.1.3-2+b1_i386 + ruby-atk-dbg_1.1.3-2+b1_i386 + ruby-bcrypt_3.0.1-2_i386 + ruby-bdb_0.6.5-7_i386 + ruby-bluecloth_2.2.0-3_i386 + ruby-cairo_1.12.2-2_i386 + ruby-dataobjects-mysql_0.10.8-4_i386 + ruby-dataobjects-postgres_0.10.8-2_i386 + ruby-dataobjects-sqlite3_0.10.8-3_i386 + ruby-debian_0.3.8+b1_i386 + ruby-dep-selector_0.0.8-1_i386 + ruby-eb_2.6-2_i386 + ruby-em-http-request_0.3.0-1_i386 + ruby-escape-utils_0.2.4-3_i386 + ruby-eventmachine_0.12.10-3_i386 + ruby-exif_0.1.2-20_i386 + ruby-fast-stemmer_1.0.1-1_i386 + ruby-fast-xs_0.8.0-3_i386 + ruby-ferret_0.11.8.4+debian-2_i386 + ruby-ffi_1.0.11debian-5_i386 + ruby-fftw3_0.4-4_i386 + ruby-fftw3-dbg_0.4-4_i386 + ruby-fssm_0.2.9-2_i386 + ruby-fusefs_0.7.0-3_i386 + ruby-gd_0.8.0-3_i386 + ruby-gdk-pixbuf2_1.1.3-2+b1_i386 + ruby-gdk-pixbuf2-dbg_1.1.3-2+b1_i386 + ruby-gherkin_2.4.6-1_i386 + ruby-gio2_1.1.3-2+b1_i386 + ruby-gio2-dbg_1.1.3-2+b1_i386 + ruby-glib2_1.1.3-2+b1_i386 + ruby-glib2-dbg_1.1.3-2+b1_i386 + ruby-globalhotkeys_0.3.2-3_i386 + ruby-gnome2-dev_1.1.3-2+b1_i386 + ruby-god_0.12.1-1_i386 + ruby-goocanvas_1.1.3-2+b1_i386 + ruby-goocanvas-dbg_1.1.3-2+b1_i386 + ruby-gpgme_2.0.0-2_i386 + ruby-grib_0.2.2-3_i386 + ruby-grib-dbg_0.2.2-3_i386 + ruby-gsl_1.14.7+dfsg-1_i386 + ruby-gsl-dbg_1.14.7+dfsg-1_i386 + ruby-gstreamer_1.1.3-2+b1_i386 + ruby-gstreamer-dbg_1.1.3-2+b1_i386 + ruby-gtk2_1.1.3-2+b1_i386 + ruby-gtk2-dbg_1.1.3-2+b1_i386 + ruby-gtksourceview2_1.1.3-2+b1_i386 + ruby-gtksourceview2-dbg_1.1.3-2+b1_i386 + ruby-guestfs_1:1.18.1-1+deb7u3_i386 + ruby-hivex_1.3.6-2_i386 + ruby-hpricot_0.8.6-3_i386 + ruby-inotify_0.0.2-6_i386 + ruby-json_1.7.3-3_i386 + ruby-kakasi_2002.09.28-3_i386 + ruby-kde4_4:4.8.4-1_i386 + ruby-kde4-dbg_4:4.8.4-1_i386 + ruby-kgio_2.7.3-1_i386 + ruby-krb5-auth_0.7-4_i386 + ruby-lapack_1.5-1_i386 + ruby-lapack-dbg_1.5-1_i386 + ruby-ldap_0.9.12-2_i386 + ruby-libvirt_0.4.0-1_i386 + ruby-libxml_2.3.2-1_i386 + ruby-mecab_0.99.3-2_i386 + ruby-msgpack_0.4.6-4_i386 + ruby-multibitnums_0.1.4-1_i386 + ruby-multibitnums-dbg_0.1.4-1_i386 + ruby-mysql_2.8.2+gem2deb-3_i386 + ruby-narray_0.6.0.1-1_i386 + ruby-narray-dbg_0.6.0.1-1_i386 + ruby-ncurses_1.3.1-2_i386 + ruby-netcdf_0.6.6-1_i386 + ruby-netcdf-dbg_0.6.6-1_i386 + ruby-nokogiri_1.5.5-1_i386 + ruby-nora_1:0.0.20041021-5.1_i386 + ruby-odbc_0.99994-4_i386 + ruby-odbc-dbg_0.99994-4_i386 + ruby-oily-png_1.0.2-2_i386 + ruby-okular_4:4.8.4-1_i386 + ruby-opengl_0.60.1+dfsg2-1~wheezy1_i386 + ruby-pango_1.1.3-2+b1_i386 + ruby-pango-dbg_1.1.3-2+b1_i386 + ruby-passenger_3.0.13debian-1+deb7u1_i386 + ruby-password_0.5.3-3_i386 + ruby-pcap_0.7.0-2_i386 + ruby-pg_0.13.2-2_i386 + ruby-phonon_4:4.8.4-1_i386 + ruby-plasma_4:4.8.4-1_i386 + ruby-playerc_3.0.2+dfsg-4+b1_i386 + ruby-poppler_1.1.3-2+b1_i386 + ruby-poppler-dbg_1.1.3-2+b1_i386 + ruby-posix-spawn_0.3.6-1_i386 + ruby-prof_0.7.3-1.1_i386 + ruby-qdbm_1.8.78-2_i386 + ruby-qpid_0.16-6+deb7u1_i386 + ruby-qscintilla2_4:4.8.4-1_i386 + ruby-qt4_4:4.8.4-1_i386 + ruby-qt4-dbg_4:4.8.4-1_i386 + ruby-qt4-declarative_4:4.8.4-1_i386 + ruby-qt4-script_4:4.8.4-1_i386 + ruby-qt4-test_4:4.8.4-1_i386 + ruby-qt4-uitools_4:4.8.4-1_i386 + ruby-qt4-webkit_4:4.8.4-1_i386 + ruby-raindrops_0.9.0-1_i386 + ruby-rdiscount_1.6.8-3_i386 + ruby-redcarpet_2.1.1-3_i386 + ruby-redcloth_4.2.9-2_i386 + ruby-remctl_3.2-4_i386 + ruby-revolution_0.5-8_i386 + ruby-rhash_1.2.9-8+deb7u1_i386 + ruby-rmagick_2.13.1-6_i386 + ruby-rsvg2_1.1.3-2+b1_i386 + ruby-rsvg2-dbg_1.1.3-2+b1_i386 + ruby-sdl_2.1.2-3_i386 + ruby-sdl-dbg_2.1.2-3_i386 + ruby-selinux_2.1.9-5_i386 + ruby-semanage_2.1.6-6_i386 + ruby-sequel-pg_1.4.0-1_i386 + ruby-serialport_1.1.0-1_i386 + ruby-shadow_2.1.4-2_i386 + ruby-sigar_0.7.2-1_i386 + ruby-soprano_4:4.8.4-1_i386 + ruby-sqlite3_1.3.6-2_i386 + ruby-systemtimer_1.2.3-1_i386 + ruby-taglib2_0.1.3-1_i386 + ruby-termios_0.9.6-2_i386 + ruby-tioga_1.14-3_i386 + ruby-tmail_1.2.7.1-3+deb7u1_i386 + ruby-tokyocabinet_1.31-2+b1_i386 + ruby-tomoe_0.6.0-1.3_i386 + ruby-uconv_0.5.3-2_i386 + ruby-unf-ext_0.0.5-2_i386 + ruby-usb_0.2.1-2_i386 + ruby-vte_1.1.3-2+b1_i386 + ruby-vte-dbg_1.1.3-2+b1_i386 + ruby-xmlparser_0.7.2-2_i386 + ruby-xmmsclient_0.8+dfsg-4_i386 + ruby-yajl_1.1.0-2_i386 + ruby-zoom_0.4.1-5_i386 + ruby1.8_1.8.7.358-7.1+deb7u1_i386 + ruby1.8-dev_1.8.7.358-7.1+deb7u1_i386 + ruby1.9.1_1.9.3.194-8.1+deb7u2_i386 + ruby1.9.1-dev_1.9.3.194-8.1+deb7u2_i386 + rumor_1.0.5-1_i386 + rungetty_1.2-15_i386 + runit_2.1.1-6.2_i386 + runlim_1.7-1_i386 + rusers_0.17-8_i386 + rusersd_0.17-8_i386 + rush_1.7+dfsg-1+deb7u1_i386 + rwall_0.17-7_i386 + rwalld_0.17-7_i386 + rwho_0.17-12_i386 + rwhod_0.17-12_i386 + rxp_1.5.0-1_i386 + rxvt_1:2.6.4-14_i386 + rxvt-beta_2.7.10-6_i386 + rxvt-ml_1:2.6.4-14_i386 + rxvt-unicode_9.15-2_i386 + rxvt-unicode-256color_9.15-2_i386 + rxvt-unicode-lite_9.15-2_i386 + rxvt-unicode-ml_9.15-2_i386 + rygel_0.14.3-2+deb7u1_i386 + rygel-1.0-dev_0.14.3-2+deb7u1_i386 + rygel-dbg_0.14.3-2+deb7u1_i386 + rygel-gst-launch_0.14.3-2+deb7u1_i386 + rygel-mediathek_0.14.3-2+deb7u1_i386 + rygel-playbin_0.14.3-2+deb7u1_i386 + rygel-preferences_0.14.3-2+deb7u1_i386 + rygel-tracker_0.14.3-2+deb7u1_i386 + rzip_2.1-1_i386 + s3d_0.2.2-8_i386 + s3d-dbg_0.2.2-8_i386 + s3dfm_0.2.2-8_i386 + s3dosm_0.2.2-8_i386 + s3dvt_0.2.2-8_i386 + s3dx11gate_0.2.2-8_i386 + s3ql_1.11.1-3_i386 + s3ql-dbg_1.11.1-3_i386 + s3switch_0.1-1_i386 + s51dude_0.2.0-1.1_i386 + sa-exim_4.2.1-14_i386 + sac_1.9b5-3_i386 + safecat_1.13-2_i386 + safecopy_1.6-1_i386 + sagan_0.2.1.r1-1+b1_i386 + sagasu_2.0.10-1_i386 + saidar_0.17-1_i386 + sailcut_1.3.5-2_i386 + saint_2.3.3-1_i386 + sakura_3.0.4-2_i386 + sam2p_0.49.1-1_i386 + samba_2:3.6.6-6+deb7u2_i386 + samba-common-bin_2:3.6.6-6+deb7u2_i386 + samba-dbg_2:3.6.6-6+deb7u2_i386 + samba-dsdb-modules_4.0.0~beta2+dfsg1-3.2_i386 + samba-tools_2:3.6.6-6+deb7u2_i386 + samba4_4.0.0~beta2+dfsg1-3.2_i386 + samba4-clients_4.0.0~beta2+dfsg1-3.2_i386 + samba4-common-bin_4.0.0~beta2+dfsg1-3.2_i386 + samba4-dev_4.0.0~beta2+dfsg1-3.2_i386 + samba4-testsuite_4.0.0~beta2+dfsg1-3.2_i386 + samdump2_1.1.1-1.1_i386 + samhain_2.8.3a-1+deb7u1_i386 + sampleicc-tools_1.6.4-1+b1_i386 + samplerate-programs_0.1.8-5_i386 + samtools_0.1.18-1_i386 + sanduhr_1.93-4_i386 + sane_1.0.14-9_i386 + sane-utils_1.0.22-7.4_i386 + sanlock_2.2-2_i386 + saods9_7.0.1+dfsg-1_i386 + saods9-blt_7.0.1+dfsg-1_i386 + sapphire_0.15.8-9_i386 + sarg_2.3.2-2_i386 + sary_1:1.2.0-2.1_i386 + sash_3.7-12_i386 + sasl2-bin_2.1.25.dfsg1-6+deb7u1_i386 + savi_1.4.5-4_i386 + sawfish_1:1.5.3-2.1+b1_i386 + sawfish-dbg_1:1.5.3-2.1+b1_i386 + saytime_1.0-24_i386 + sb16ctrl-bochs_2.4.6-5_i386 + sbcl_2:1.0.57.0-2_i386 + sbnc_1.2-26_i386 + sbnc-dbg_1.2-26_i386 + sbnc-mysql_1.2-26_i386 + sbnc-tcl_1.2-26_i386 + sbox-dtc_1.11.6-1_i386 + sbrsh_7.6.1_i386 + sbrshd_7.6.1_i386 + sc_7.16-3_i386 + scalapack-mpi-test_1.8.0-9_i386 + scalapack-pvm-test_1.8.0-9_i386 + scalpel_1.60-1_i386 + scamper_20111202b-1_i386 + scanbuttond_0.2.3.cvs20090713-8_i386 + scanlogd_2.2.5-3.1_i386 + scanmem_0.12-2_i386 + scanssh_2.0-4+b3_i386 + scantool_1.21+dfsg-3_i386 + scantv_3.102-3_i386 + scdaemon_2.0.19-2+deb7u1_i386 + schedtool_1.3.0-1_i386 + scheme2c_2011.07.26-5_i386 + scheme48_1.8+dfsg-1_i386 + scheme9_2010.11.13-2_i386 + schism_2:0+20110101-1_i386 + schroot_1.6.4-4_i386 + schroot-dbg_1.6.4-4_i386 + scid_1:4.3.0.cvs20120311-1_i386 + scidavis_0.2.4-3.3_i386 + scilab-full-bin_5.3.3-10_i386 + scilab-full-bin-dbg_5.3.3-10_i386 + scilab-getfem++_4.1.1+dfsg1-11_i386 + scilab-include_5.3.3-10_i386 + scilab-jims_1.0-1_i386 + scilab-minimal-bin_5.3.3-10_i386 + scilab-minimal-bin-dbg_5.3.3-10_i386 + scilab-scimysql_0.1.1-5_i386 + scim_1.4.13-5_i386 + scim-canna_1.0.0-4.2_i386 + scim-chewing_0.3.4-1.2_i386 + scim-gtk-immodule_1.4.13-5_i386 + scim-kmfl-imengine_0.9.8-1.1_i386 + scim-m17n_0.2.3-3_i386 + scim-modules-socket_1.4.13-5_i386 + scim-modules-table_0.5.9-2_i386 + scim-mozc_1.5.1090.102-4+deb7u1_i386 + scim-skk_0.5.2-7.2_i386 + scim-thai_0.1.3-1_i386 + scim-unikey_0.3.1+debian-3.1_i386 + sciplot-dev_1.36-15_i386 + sciplot1_1.36-15_i386 + scite_3.0.2-3_i386 + sciteproj_0.7.05-2_i386 + scli_0.4.0-2_i386 + scm_5e5-3.2_i386 + scmxx_0.9.0-2.3_i386 + scorched3d_43.2a.dfsg-6.1_i386 + scorched3d-dbg_43.2a.dfsg-6.1_i386 + scotch_5.1.12b.dfsg-1.2_i386 + scotch-dbg_5.1.12b.dfsg-1.2_i386 + scottfree_1.14-9_i386 + scratchbox2_2.2.4-1debian1_i386 + screader_1.8-7_i386 + screen_4.1.0~20120320gitdb59704-7_i386 + screenie-qt_0.0~git20100701-1_i386 + screentest_2.0-2.1_i386 + scribus_1.4.0.dfsg+r17300-1.1_i386 + scrobble-cli_0.10-4_i386 + scrollz_2.1-1.1_i386 + scrot_0.8-13_i386 + scrounge-ntfs_0.9-6+b1_i386 + scrub_2.4.1-1_i386 + scrypt_1.1.6-3_i386 + scsh-0.6_0.6.7-8_i386 + scsitools_0.12-2.1_i386 + scummvm_1.4.1-1_i386 + scute_1.4.0-4_i386 + sdate_0.3.1+nmu1_i386 + sdcc_3.1.0+dfsg-1_i386 + sdcc-ucsim_3.1.0+dfsg-1_i386 + sdcv_0.4.2-16_i386 + sdl-ball_1.01-3_i386 + sdlbasic_0.0.20070714-4_i386 + sdlbasic-dbg_0.0.20070714-4_i386 + sdlbrt_0.0.20070714-4_i386 + sdop_0.71-1_i386 + sdpa_7.3.8+dfsg-1_i386 + sdpam_7.3.8+dfsg-1_i386 + sdparm_1.07-1_i386 + sdpnetstat_1.60-1_i386 + seahorse_3.4.1-2_i386 + seahorse-daemon_3.2.2-1_i386 + searchandrescue_1.4.0-2_i386 + searchmonkey_0.8.1-8_i386 + seccure_0.3-3_i386 + secure-delete_3.1-5_i386 + sed_4.2.1-10_i386 + seed_3.2.0-2_i386 + seesat5_0.90.10-1.1_i386 + seetxt_0.72-4_i386 + selinux-utils_2.1.9-5_i386 + sendfile_2.1b.20080616-5.2_i386 + sendip_2.5-5_i386 + sendmail-bin_8.14.4-4_i386 + sensible-mda_8.14.4-4_i386 + sensord_1:3.3.2-2+deb7u1_i386 + sensors-applet_3.0.0-0.2_i386 + sentinella_0.9.0-3_i386 + sepol-utils_2.1.4-3_i386 + seq24_0.9.2-2_i386 + seqan-apps_1.3.1-1_i386 + ser2net_2.6-1_i386 + serd-dbg_0.14.0~dfsg0-2_i386 + serdi_0.14.0~dfsg0-2_i386 + service-wrapper_3.5.3+repack-0+nmu1_i386 + servicefw_1.2.0-3_i386 + set6x86_1.5-14_i386 + setcd_1.5-6_i386 + setools_3.3.7-3_i386 + setpwc_1.2-3.1_i386 + setserial_2.17-47_i386 + sextractor_2.8.6+dfsg-1_i386 + seyon_2.20c-31_i386 + sfftobmp_3.1.3-1+b1_i386 + sfftw-dev_2.1.5-1_i386 + sfftw2_2.1.5-1_i386 + sffview_0.4.1-2+b1_i386 + sflphone-daemon_1.1.0-2+b1_i386 + sflphone-evolution_1.1.0-2+b1_i386 + sflphone-gnome_1.1.0-2+b1_i386 + sfront_0.98-1_i386 + sfst_1.2.0-1.2_i386 + sg3-utils_1.33-1_i386 + sgf2dg_4.026-10_i386 + sgrep_1.94a-4_i386 + sgt-puzzles_9411-1_i386 + shapelib_1.2.10-7_i386 + shaperd_0.2.1-5.2_i386 + shapetools_1.4pl6-11_i386 + shared-mime-info_1.0-1+b1_i386 + sharutils_1:4.11.1-1_i386 + shed_1.15-2+b1_i386 + shell-fm_0.7+git20100414-1_i386 + shellinabox_2.14-1_i386 + shelltestrunner_1.2.1-3_i386 + shelxle_1.0.564-1_i386 + shiboken_1.1.1-1_i386 + shiboken-dbg_1.1.1-1_i386 + shisa_1.0.1-2_i386 + shisen.app_1.2.1-1+b5_i386 + shishi_1.0.1-2_i386 + shishi-dbg_1.0.1-2_i386 + shishi-kdc_1.0.1-2_i386 + shntool_3.0.7-1_i386 + shoes_0.r396-5.3_i386 + shotdetect_1.0.86-1_i386 + shotwell_0.12.3-2+deb7u1_i386 + shotwell-dbg_0.12.3-2+deb7u1_i386 + showfoto_4:2.6.0-1+b2_i386 + showq_0.4.1+git20090622+dfsg0-1+b1_i386 + showq-dbg_0.4.1+git20090622+dfsg0-1+b1_i386 + shush_1.2.3-2_i386 + sibsim4_0.20-1_i386 + sic_1.1-5_i386 + sidplay_2.0.9-6_i386 + sidplay-base_1.0.9-6_i386 + sidplayfp_0.3.1-1_i386 + siege_2.70-3_i386 + siggen_2.3.10-5_i386 + sigma-align_1.1.3-3_i386 + signing-party_1.1.4-1_i386 + sigrok-cli_0.3.0-2_i386 + sigscheme_0.8.5-2.1_i386 + sigviewer_0.5.1+svn556-1+b2_i386 + silentjack_0.3-2_i386 + sim4_0.0.20030921-3_i386 + simgrid_3.7.1-1_i386 + simh_3.8.1-5_i386 + simhash_0.0.20110213-1_i386 + similarity-tester_2.62-1_i386 + simple-scan_3.4.2-1_i386 + simpleopal_3.10.4~dfsg-3_i386 + simpleproxy_3.4-5_i386 + simulavr_0.1.2.2-6.2_i386 + simulpic_1:2005-1-28-8_i386 + simutrans_111.2.2-1_i386 + simutrans-makeobj_111.2.2-1_i386 + since_1.1-2_i386 + sineshaper_0.4.2-7_i386 + sinfo_0.0.46-2_i386 + sip-tester_1:3.2-1_i386 + sipcalc_1.1.5-1_i386 + sipcrack_0.2-2+b1_i386 + sipdialer_1.8.5-4_i386 + siproxd_1:0.8.1-3+b1_i386 + sipsak_0.9.6-2.1+b1_i386 + sipwitch_1.2.4-1_i386 + sipwitch-cgi_1.2.4-1_i386 + sispmctl_3.1-1_i386 + sitecopy_1:0.16.6-4_i386 + sitplus_1.0.3-3_i386 + sjeng_11.2-8_i386 + skalibs-dev_0.47-1_i386 + skanlite_0.8-2_i386 + skanlite-dbg_0.8-2_i386 + sketch_1:0.3.7-1_i386 + skipfish_2.05b-1_i386 + skksearch_0.0-21_i386 + skktools_1.3.2-3_i386 + skrooge_1.3.0-1_i386 + sks_1.1.3-2_i386 + sks-ecc_0.93-2_i386 + skyeye_1.2.5-2.1_i386 + skytools_2.1.13-2_i386 + skytools-modules-9.1_2.1.13-2_i386 + sl_3.03-17_i386 + slang-cfitsio_0.3.8+nosvn-4.1_i386 + slang-curl_0.2.1-4.2_i386 + slang-expat_0.5.0-2_i386 + slang-gdbm_1.7.1-4_i386 + slang-gsl_0.7.0-5.1_i386 + slang-histogram_0.3.2a-3.1_i386 + slang-pvm_0.1.5-12.1_i386 + slang-sqlite_0.4.0-3.1_i386 + slang-wildcard_0.5.0-2_i386 + slang-xfig_0.2.0~.35-1.1_i386 + slapd_2.4.31-1+nmu2_i386 + slapd-dbg_2.4.31-1+nmu2_i386 + slapd-smbk5pwd_2.4.31-1+nmu2_i386 + slashem_0.0.7E7F3-6_i386 + slashem-common_0.0.7E7F3-6_i386 + slashem-gtk_0.0.7E7F3-6_i386 + slashem-sdl_0.0.7E7F3-6_i386 + slashem-x11_0.0.7E7F3-6_i386 + sleepd_2.04_i386 + sleepenh_1.3-1_i386 + sleuthkit_3.2.3-2_i386 + slim_1.3.4-2_i386 + slimevolley_2.4.2+dfsg-1_i386 + slirp_1:1.0.17-6_i386 + slmon_0.5.13-2.2_i386 + sloccount_2.26-5_i386 + slpd_1.2.1-9_i386 + slptool_1.2.1-9_i386 + slrn_1.0.0~pre18-1.3_i386 + slrnface_2.1.1-6_i386 + slrnpull_1.0.0~pre18-1.3_i386 + slsh_2.2.4-15_i386 + sludge-compiler_2.2-1_i386 + sludge-devkit_2.2-1_i386 + sludge-engine_2.2-1_i386 + slurm_0.4.0-1_i386 + slurm-drmaa-dev_1.0.4-3_i386 + slurm-drmaa1_1.0.4-3_i386 + slurm-llnl_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins_2.3.4-2+b1_i386 + slurm-llnl-basic-plugins-dev_2.3.4-2+b1_i386 + slurm-llnl-slurmdbd_2.3.4-2+b1_i386 + slurm-llnl-sview_2.3.4-2+b1_i386 + slv2-jack_0.6.6+dfsg1-2_i386 + sm_0.19-1_i386 + sm-archive_1.7-1_i386 + sma_1.4-2_i386 + smartdimmer_0.8b4+cvs20100914-4_i386 + smartlist_3.15-22_i386 + smartmontools_5.41+svn3365-1_i386 + smartpm-core_1.4-2_i386 + smb-nat_1:1.0-4_i386 + smb4k_1.0.1-1_i386 + smbc_1.2.2-3_i386 + smbclient_2:3.6.6-6+deb7u2_i386 + smbnetfs_0.5.3a-1_i386 + smc_1.9+git20120222-1+b1_i386 + smcroute_0.95-1+deb7u1_i386 + smf-utils_1.3-2_i386 + smitools_0.4.8+dfsg2-7_i386 + smlnj_110.74-2_i386 + smlnj-runtime_110.74-2_i386 + smoke-dev-tools_4:4.8.4-1_i386 + smokegen-dbg_4:4.8.4-1_i386 + smp-utils_0.96-1_i386 + smpeg-gtv_0.4.5+cvs20030824-5_i386 + smpeg-plaympeg_0.4.5+cvs20030824-5_i386 + smplayer_0.8.0-1+deb7u1_i386 + smsclient_2.0.8z-10_i386 + smstools_3.1.14-1.2_i386 + sn_0.3.8-10.1_i386 + snacc_1.3.1-1_i386 + snake4_1.0.12-14_i386 + snappea_3.0d3-22_i386 + snappea-dev_3.0d3-22_i386 + snappy_0.2-1_i386 + snarf_7.0-5_i386 + snd-gtk-jack_11.7-2_i386 + snd-gtk-pulse_11.7-2_i386 + snd-nox_11.7-2_i386 + sndfile-programs_1.0.25-5_i386 + sndfile-tools_1.03-2+b1_i386 + sng_1.0.2-7_i386 + sniffit_0.3.7.beta-16.1_i386 + snimpy_0.6.3-1_i386 + snmp_5.4.3~dfsg-2.7_i386 + snmpd_5.4.3~dfsg-2.7_i386 + snmptrapfmt_1.14+nmu1_i386 + snooper_19991202-7.1_i386 + snoopy_1.8.0-5_i386 + snort_2.9.2.2-3_i386 + snort-common-libraries_2.9.2.2-3_i386 + snort-mysql_2.9.2.2-3_i386 + snort-pgsql_2.9.2.2-3_i386 + snowdrop_0.02b-10_i386 + sntop_1.4.3-4_i386 + so-synth-lv2_1.4-2_i386 + sobby_0.4.8-1_i386 + socat_1.7.1.3-1.4_i386 + socket_1.1-10_i386 + socklog_2.1.0-8_i386 + socks4-clients_4.3.beta2-18_i386 + socks4-server_4.3.beta2-18_i386 + sockstat_0.3-1.1_i386 + socnetv_0.90-3_i386 + sofa-apps_1.0~beta4-7_i386 + sofia-sip-bin_1.12.11+20110422-1_i386 + softflowd_0.9.9-1_i386 + softhsm_1.3.3-2_i386 + softhsm-common_1.3.3-2_i386 + softhsm-dbg_1.3.3-2_i386 + sogo_1.3.16-1_i386 + sogo-dbg_1.3.16-1_i386 + solarpowerlog_0.23a-2_i386 + solfege-oss_3.20.6-1_i386 + solid-pop3d_0.15-26_i386 + sonic_0.1.17-1.1_i386 + sooperlooper_1.6.18~dfsg0-1_i386 + soprano-daemon_2.7.6+dfsg.1-2wheezy1_i386 + sopwith_1.7.4-6_i386 + sord-dbg_0.8.0~dfsg0-1_i386 + sordi_0.8.0~dfsg0-1_i386 + sortmail_1:2.4-1_i386 + sound-juicer_3.4.0-3_i386 + soundkonverter_1.5.0-1_i386 + soundmodem_0.16-1+b1_i386 + soundstretch_1.6.0-3_i386 + soundstretch-dbg_1.6.0-3_i386 + source-highlight_3.1.6-1.1_i386 + sox_14.4.0-3_i386 + sp_1.3.4-1.2.1-47.1+b1_i386 + spacearyarya_1.0.2-7_i386 + spacenavd_0.5-1_i386 + spacezero_0.80.06-1_i386 + spamass-milter_0.3.2-1_i386 + spamc_3.3.2-5_i386 + spamoracle_1.4-14_i386 + spamprobe_1.4d-11_i386 + spark_2011.0.deb-5_i386 + spass_3.7-3_i386 + spatialite-bin_3.0.0~beta20110817-3+deb7u1_i386 + spawn-fcgi_1.6.3-1_i386 + spd_1.3.0-1_i386 + specimen_0.5.2rc3-5_i386 + spectools_201108r1-2_i386 + spectrwm_1.0.0-1_i386 + speech-dispatcher_0.7.1-6.2_i386 + speech-dispatcher-dbg_0.7.1-6.2_i386 + speech-tools_1:2.1~release-5_i386 + speechd-up_0.5~20110719-2_i386 + speedcrunch_0.10.1-4_i386 + speedy-cgi-perl_2.22-13+b2_i386 + speex_1.2~rc1-7_i386 + spek_0.7-3_i386 + spell_1.0-24_i386 + spellutils_0.7-5_i386 + spew_1.0.8-1_i386 + spfquery_1.2.9-7_i386 + sphinxsearch_2.0.4-1.1_i386 + spice-client_0.11.0-1+deb7u1_i386 + spice-client-gtk_0.12-5_i386 + spice-vdagent_0.10.1-1_i386 + spidermonkey-bin_17.0.10esr-1~deb7u1_i386 + spim_8.0+dfsg-5.1_i386 + spinner_1.2.4-3_i386 + spl-core_1.0~pre6-3.1+b1_i386 + spl-curl_1.0~pre6-3.1+b1_i386 + spl-dev_1.0~pre6-3.1+b1_i386 + spl-mysql_1.0~pre6-3.1+b1_i386 + spl-postgres_1.0~pre6-3.1+b1_i386 + spl-sdl_1.0~pre6-3.1+b1_i386 + spl-sqlite_1.0~pre6-3.1+b1_i386 + spl-webspl_1.0~pre6-3.1+b1_i386 + spl-xml_1.0~pre6-3.1+b1_i386 + splat_1.4.0-2_i386 + splay_0.9.5.2-13_i386 + spline_1.2-1_i386 + splint_3.1.2.dfsg1-2_i386 + splitvt_1.6.6-11_i386 + spotlighter_0.1-1_i386 + spout_1.3-2_i386 + spring_88.0+dfsg1-1.1_i386 + spring-dbg_88.0+dfsg1-1.1_i386 + springlobby_0.147-1_i386 + springlobby-dbg_0.147-1_i386 + sqcwa_0.3-3.1_i386 + sqlheavy-utils_0.1.1-1_i386 + sqlite_2.8.17-7_i386 + sqlite3_3.7.13-1+deb7u1_i386 + sqlitebrowser_2.0.0~beta1+ds.1-3_i386 + sqsh_2.1.7-1_i386 + squashfs-tools_1:4.2-5_i386 + squashfs-tools-dbg_1:4.2-5_i386 + squeak-plugins-scratch_1.4.0.2~svn.r83-1_i386 + squeak-plugins-scratch-dbg_1.4.0.2~svn.r83-1_i386 + squeak-vm_1:4.4.7.2357-1.1_i386 + squeeze_0.2.3-12_i386 + squid_2.7.STABLE9-4.1_i386 + squid-cgi_3.1.20-2.2_i386 + squid3_3.1.20-2.2_i386 + squid3-dbg_3.1.20-2.2_i386 + squidclient_3.1.20-2.2_i386 + squidguard_1.5-1_i386 + squidview_0.79-2_i386 + squizz_0.99a-2_i386 + sqwebmail_0.68.2-1_i386 + sra-toolkit_2.1.7a-1_i386 + sra-toolkit-libs-dev_2.1.7a-1_i386 + sra-toolkit-libs0_2.1.7a-1_i386 + src2tex_2.12h-8_i386 + srecord_1.58-1+b1_i386 + sredird_2.2.1-1.1_i386 + srg_1.3.6-1_i386 + srptools_0.0.4-1.2_i386 + srtp-utils_1.4.4+20100615~dfsg-2+deb7u1_i386 + ss-dev_2.0-1.42.5-1.1_i386 + ssdeep_2.7-2_i386 + ssed_3.62-7_i386 + ssh-askpass_1:1.2.4.1-9_i386 + ssh-askpass-fullscreen_0.3-3.1_i386 + ssh-askpass-gnome_1:6.0p1-4_i386 + ssh-contact-client_0.7-1_i386 + ssh-contact-service_0.7-1_i386 + sshfs_2.4-1_i386 + sshfs-dbg_2.4-1_i386 + sshguard_1.5-5_i386 + sshpass_1.05-1_i386 + ssldump_0.9b3-4.1_i386 + sslh_1.13b-3.2_i386 + sslscan_1.8.2-2_i386 + sslsniff_0.8-3+b1_i386 + ssmping_0.9.1-3_i386 + ssmtp_2.64-7_i386 + sssd_1.8.4-2_i386 + sssd-tools_1.8.4-2_i386 + ssss_0.5-2+b1_i386 + ssvnc_1.0.29-2_i386 + staden-io-lib-utils_1.12.4-1_i386 + stalin_0.11-5_i386 + stalonetray_0.8.1-1_i386 + stardata-common_0.8_i386 + stardict-gnome_3.0.1-9.2_i386 + stardict-gtk_3.0.1-9.2_i386 + stardict-plugin_3.0.1-9.2_i386 + stardict-plugin-espeak_3.0.1-9.2_i386 + stardict-plugin-festival_3.0.1-9.2_i386 + stardict-plugin-spell_3.0.1-9.2_i386 + stardict-tools_3.0.2-3+b1_i386 + starfighter_1.2-2_i386 + starplot_0.95.5-4_i386 + starpu-examples_1.0.1+dfsg-1_i386 + starpu-tools_1.0.1+dfsg-1_i386 + starpu-top_1.0.1+dfsg-1_i386 + starvoyager_0.4.4-5.1_i386 + statgrab_0.17-1_i386 + statserial_1.1-22_i386 + stax_1.0-13+b1_i386 + steadyflow_0.2.0-1_i386 + stealth_2.10.00-1_i386 + steghide_0.5.1-9+b2_i386 + stella_3.7.2-1_i386 + stellarium_0.11.3-1+deb7u1_i386 + step_4:4.8.4-1_i386 + stepbill.app_2.4-5+b5_i386 + steptalk_0.10.0-5+b1_i386 + stimfit_0.10.18-1.1+b1_i386 + stimfit-dbg_0.10.18-1.1+b1_i386 + stk_4.4.3-2_i386 + stockfish_2.1.1+git20111006-2_i386 + stone_2.3.e-2+b1_i386 + stopmotion_0.6.2+git.1.10d2ea43-1.1_i386 + stormbaancoureur_2.1.6-1_i386 + strace_4.5.20-2.3_i386 + strace64_4.5.20-2.3_i386 + streamer_3.102-3_i386 + streamripper_1.64.6-1_i386 + stress_1.0.1-1_i386 + stressapptest_1.0.4-2_i386 + stretchplayer_0.503-2_i386 + stretchplayer-dbg_0.503-2_i386 + strigi-client_0.7.7-3_i386 + strigi-daemon_0.7.7-3_i386 + strigi-dbg_0.7.7-3_i386 + strigi-utils_0.7.7-3_i386 + strongswan-dbg_4.5.2-1.5+deb7u2_i386 + strongswan-ikev1_4.5.2-1.5+deb7u2_i386 + strongswan-ikev2_4.5.2-1.5+deb7u2_i386 + strongswan-nm_4.5.2-1.5+deb7u2_i386 + strongswan-starter_4.5.2-1.5+deb7u2_i386 + structure-synth_1.5.0-1.1_i386 + structure-synth-dbg_1.5.0-1.1_i386 + stterm_0.0~20120124+hg226-2_i386 + stud_0.3-3_i386 + stun_0.96.dfsg-6_i386 + stunnel4_3:4.53-1.1_i386 + stx-btree-demo_0.8.6-1_i386 + stymulator_0.21a~dfsg-1_i386 + styx_1.8.0-1.1_i386 + styx-dev_1.8.0-1.1_i386 + subcommander_2.0.0~b5p2-5_i386 + subnetcalc_2.1.3-1_i386 + subsurface_1.2-1_i386 + subtitlecomposer_0.5.3-3+b1_i386 + subtitleeditor_0.33.0-1_i386 + subtle_0.11.3224-xi-1_i386 + subversion_1.6.17dfsg-4+deb7u4_i386 + suck_4.3.2-11_i386 + suckless-tools_38-2_i386 + sucrack_1.2.3-0.9_i386 + sudo_1.8.5p2-1+nmu1_i386 + sudo-ldap_1.8.5p2-1+nmu1_i386 + sudoku_1.0.1-4_i386 + sugar-artwork-0.84_0.84.4-3_i386 + sugar-artwork-0.88_0.88.1-4_i386 + sugar-artwork-0.96_0.96.2-1_i386 + suil-dbg_0.6.4~dfsg0-3_i386 + summain_0.14-1_i386 + sumo_0.15.0~dfsg-2_i386 + sunclock_3.57-2_i386 + sunpinyin-data_0.1.22+20120112-1_i386 + sunpinyin-utils_2.0.3+git20120607-1_i386 + sup_20100519-1_i386 + super_3.30.0-6_i386 + supercat_0.5.5-4_i386 + supercollider_1:3.4.5-1wheezy1_i386 + supercollider-dev_1:3.4.5-1wheezy1_i386 + supercollider-server_1:3.4.5-1wheezy1_i386 + superiotool_0.0+r6637-1_i386 + supertransball2_1.5-4_i386 + supertux_0.1.3-3_i386 + supertuxkart_0.7.3-2+b1_i386 + suphp-common_0.7.1-3_i386 + surf_0.4.1-8_i386 + suricata_1.2.1-2_i386 + survex_1.2.6-4_i386 + survex-aven_1.2.6-4_i386 + svgalib-bin_1:1.4.3-33_i386 + svgpart_4:4.8.4-1_i386 + svgtoipe_20100608-1_i386 + svn-all-fast-export_1.0.5-1_i386 + swac-explore_0.2-1.2_i386 + swac-get_0.3-2.1_i386 + swami_2.0.0+svn389-2_i386 + swami-dbg_2.0.0+svn389-2_i386 + swapspace_1.10-4_i386 + swat_2:3.6.6-6+deb7u2_i386 + swath_0.4.3-3_i386 + sweep_0.9.3-6_i386 + sweeper_4:4.8.4-1_i386 + swell-foop_1:3.4.2-3_i386 + swfmill_0.3.2-1_i386 + swftools_0.9.2+ds1-3_i386 + swh-lv2_1.0.15+20111107.gitec6b85e-1_i386 + swh-plugins_0.4.15+1-6_i386 + swi-prolog_5.10.4-5_i386 + swi-prolog-java_5.10.4-5_i386 + swi-prolog-nox_5.10.4-5_i386 + swi-prolog-odbc_5.10.4-5_i386 + swi-prolog-x_5.10.4-5_i386 + swift-im_2.0~beta1+dev47-1_i386 + swift-im-dbg_2.0~beta1+dev47-1_i386 + swig_2.0.7-3_i386 + swig2.0_2.0.7-3_i386 + swish++_6.1.5-2.2_i386 + swish-e_2.4.7-3_i386 + swish-e-dev_2.4.7-3_i386 + swisswatch_0.6-14_i386 + switchsh_0~20070801-3_i386 + sxid_4.2-1_i386 + sxiv_1.0-1_i386 + sylph-searcher_1.2.0-7_i386 + sylpheed_3.2.0-1_i386 + sylpheed-dbg_3.2.0-1_i386 + sylpheed-plugins_3.2.0-1_i386 + symlinks_1.4-1_i386 + sympa_6.1.11~dfsg-5_i386 + sympow_1.019-4_i386 + synaesthesia_2.4-3_i386 + synapse_0.2.10-2_i386 + synapse-dbg_0.2.10-2_i386 + synaptic_0.75.13_i386 + sync-ui_1.2.99.1-1.1_i386 + synce-gnomevfs_0.13-2.1_i386 + synce-hal_0.15-1.1_i386 + synce-hal-bluetooth_0.15-1.1_i386 + synce-serial_0.11-5.3_i386 + synce-trayicon_0.15-1.2_i386 + syncevolution_1.2.99.1-1.1_i386 + syncevolution-dbg_1.2.99.1-1.1_i386 + syncevolution-dbus_1.2.99.1-1.1_i386 + syncevolution-libs_1.2.99.1-1.1_i386 + syncmaildir_1.2.5-1_i386 + syncmaildir-applet_1.2.5-1_i386 + synergy_1.3.8-2_i386 + synfig_0.63.05-1_i386 + synfig-dbg_0.63.05-1_i386 + synfigstudio_0.63.05-1_i386 + synfigstudio-dbg_0.63.05-1_i386 + synopsis_0.12-8_i386 + synopsis-idl_0.12-8_i386 + syrep_0.9-4.1_i386 + syrthes_3.4.3-dfsg1-6_i386 + sysbench_0.4.12-1+b1_i386 + sysconftool_0.16-1_i386 + sysfsutils_2.1.0+repack-2_i386 + syslinux_2:4.05+dfsg-6+deb7u1_i386 + syslog-ng-core_3.3.5-4_i386 + syslog-ng-dbg_3.3.5-4_i386 + syslog-ng-mod-json_3.3.5-4_i386 + syslog-ng-mod-mongodb_3.3.5-4_i386 + syslog-ng-mod-sql_3.3.5-4_i386 + sysnews_0.9-17_i386 + sysprof_1.1.8-2_i386 + sysrqd_14-1_i386 + sysstat_10.0.5-1_i386 + system-config-audit_1:1.7.18-1.1_i386 + system-config-printer-udev_1.3.7-4_i386 + system-tools-backends_2.10.2-1_i386 + systemd_44-11+deb7u4_i386 + systemd-gui_44-11+deb7u4_i386 + systemd-sysv_44-11+deb7u4_i386 + systempreferences.app_1.1.0-2+b3_i386 + systemsettings_4:4.8.4-6_i386 + systemtap_1.7-1+deb7u1_i386 + systemtap-client_1.7-1+deb7u1_i386 + systemtap-grapher_1.7-1+deb7u1_i386 + systemtap-runtime_1.7-1+deb7u1_i386 + systemtap-sdt-dev_1.7-1+deb7u1_i386 + systemtap-server_1.7-1+deb7u1_i386 + sysvbanner_1.0.15_i386 + sysvinit_2.88dsf-41+deb7u1_i386 + sysvinit-utils_2.88dsf-41+deb7u1_i386 + t-coffee_9.02.r1228-2_i386 + t1lib-bin_5.1.2-3.6_i386 + t1utils_1.37-1_i386 + t38modem_2.0.0-3_i386 + tabble_0.43-1_i386 + tabix_0.2.6-1_i386 + tableau-parm_0.2.0-1_i386 + tablix2_0.3.5-2_i386 + tacacs+_4.0.4.19-11_i386 + tachyon_0.99~b2+dfsg-0.4_i386 + tack_1.07-1_i386 + tack-dbg_1.07-1_i386 + tagainijisho_0.9.4-1_i386 + tagcoll_2.0.13-1.1_i386 + taggrepper_0.03.1-3_i386 + tagtool_0.12.3-8.1_i386 + tagua_1.0~alpha2-10_i386 + talk_0.17-15_i386 + talkd_0.17-15_i386 + talksoup.app_1.0alpha-32-g55b4d4e-1.2+b1_i386 + tamil-gtk2im_2.2-4.4_i386 + tangerine_0.3.4-3_i386 + tangerine-dbg_0.3.4-3_i386 + tanglet_1.1.1-1.1_i386 + tango-accesscontrol_7.2.6+dfsg-14_i386 + tango-accesscontrol-dbg_7.2.6+dfsg-14_i386 + tango-db_7.2.6+dfsg-14_i386 + tango-db-dbg_7.2.6+dfsg-14_i386 + tango-starter_7.2.6+dfsg-14_i386 + tango-starter-dbg_7.2.6+dfsg-14_i386 + tango-test_7.2.6+dfsg-14_i386 + tango-test-dbg_7.2.6+dfsg-14_i386 + tap-plugins_0.7.2-1_i386 + tapecalc_20070214-2_i386 + tar_1.26+dfsg-0.1_i386 + tarantool_1.4.6+20120629+2158-1_i386 + tarantool-client_1.4.6+20120629+2158-1_i386 + tarantool-client-dbg_1.4.6+20120629+2158-1_i386 + tarantool-dbg_1.4.6+20120629+2158-1_i386 + tardy_1.25-1_i386 + tart_3.09-1_i386 + task_2.0.0-1_i386 + task-spooler_0.7.3-1_i386 + tasks_0.20-1+b2_i386 + tatan_1.0.dfsg1-3_i386 + tau_2.16.4-1.4+b1_i386 + tayga_0.9.2-4_i386 + tcc_0.9.26~git20120612.ad5f375-6_i386 + tcd-utils_20061127-2_i386 + tcl-funtools_1.4.4-3_i386 + tcl-memchan_2.3-2_i386 + tcl-memchan-dev_2.3-2_i386 + tcl-signal_1.4-1_i386 + tcl-tclreadline_2.1.0-12_i386 + tcl-tls_1.6+dfsg-3_i386 + tcl-trf_2.1.4-dfsg1-1_i386 + tcl-trf-dev_2.1.4-dfsg1-1_i386 + tcl-vfs_1.3-20080503-3_i386 + tcl-vtk_5.8.0-13+b1_i386 + tcl-xpa_2.1.14-2_i386 + tcl8.4_8.4.19-5_i386 + tcl8.4-dev_8.4.19-5_i386 + tcl8.5_8.5.11-2_i386 + tcl8.5-dev_8.5.11-2_i386 + tcl8.5-kwwidgets_1.0.0~cvs20100930-8_i386 + tclcl_1.20-6_i386 + tclcl-dbg_1.20-6_i386 + tclcsound_1:5.17.11~dfsg-3_i386 + tclcurl_7.22.0-1_i386 + tclex_1.2a1-15_i386 + tclgeoip_0.2-1_i386 + tclodbc_2.5.1-1.1_i386 + tclthread_1:2.6.7-1_i386 + tclx8.4_8.4.0-3_i386 + tclx8.4-dev_8.4.0-3_i386 + tclxapian_1.2.12-2_i386 + tclxml_3.3~svn11-2_i386 + tclxml-dev_3.3~svn11-2_i386 + tcm_2.20+TSQD-4.2_i386 + tcng_10b-4_i386 + tcpd_7.6.q-24_i386 + tcpdump_4.3.0-1_i386 + tcpflow_0.21.ds1-7_i386 + tcpick_0.2.1-6_i386 + tcpreen_1.4.4-2_i386 + tcpreplay_3.4.3-2+wheezy1_i386 + tcpser_1.0rc12-1_i386 + tcpslice_1.2a3-4_i386 + tcpspy_1.7d-4_i386 + tcpstat_1.5-7_i386 + tcptrace_6.6.7-4.1_i386 + tcptraceroute_1.5beta7+debian-4_i386 + tcptrack_1.4.2-1_i386 + tcputils_0.6.2-9_i386 + tcpxtract_1.0.1-8_i386 + tcs_1-11_i386 + tcsh_6.18.01-2_i386 + tdb-tools_1.2.10-2_i386 + tdc_1.2-1_i386 + tdfsb_0.0.10-1.1_i386 + tdl_1.5.2-3.1_i386 + tdom_0.8.3~20080525-3+nmu2_i386 + tdom-dev_0.8.3~20080525-3+nmu2_i386 + tdsodbc_0.91-2+deb7u1_i386 + tea_33.1.0-1_i386 + tecnoballz_0.92-5_i386 + teem-apps_1.11.0~svn5226-1_i386 + teeworlds_0.6.1+dfsg-1_i386 + teeworlds-server_0.6.1+dfsg-1_i386 + teg_0.11.2+debian-3_i386 + telak_0.6-1_i386 + telegnome_0.1.1-5_i386 + telepathy-gabble_0.16.7-0+deb7u1_i386 + telepathy-gabble-dbg_0.16.7-0+deb7u1_i386 + telepathy-haze_0.6.0-1_i386 + telepathy-idle_0.1.11-2+deb7u1_i386 + telepathy-logger_0.4.0-1_i386 + telepathy-mission-control-5_1:5.12.3-1_i386 + telepathy-mission-control-5-dbg_1:5.12.3-1_i386 + telepathy-rakia_0.7.4-1_i386 + telepathy-salut_0.8.1-1_i386 + teleport_0.34-7_i386 + tellico_2.3.5+dfsg.1-4_i386 + telnet_0.17-36_i386 + telnet-ssl_0.17.24+0.1-23_i386 + telnetd_0.17-36_i386 + telnetd-ssl_0.17.24+0.1-23_i386 + tempest-for-eliza_1.0.5-1_i386 + tenace_0.12-1_i386 + tenmado_0.10-1_i386 + tennix_1.1-2_i386 + terminal.app_0.9.4+cvs20051125-6.1+b2_i386 + terminatorx_3.84-2_i386 + termit_2.9.4-2_i386 + teseq_1.0.0-2.1_i386 + tessa_0.3.1-6+b1_i386 + tessa-mpi_0.3.1-6+b1_i386 + tesseract-ocr_3.02.01-6_i386 + testdisk_6.13-1_i386 + testdisk-dbg_6.13-1_i386 + tetradraw_2.0.3-8.2_i386 + tetraproc_0.8.2-2_i386 + tetrinet-client_0.11+CVS20070911-1_i386 + tetrinet-server_0.11+CVS20070911-1_i386 + tetrinetx_1.13.16-14_i386 + tetzle_2.0.1-1_i386 + tex4ht_20090611-1.1+b1_i386 + texinfo_4.13a.dfsg.1-10_i386 + texlive-binaries_2012.20120628-4_i386 + texmacs_1:1.0.7.15-2_i386 + texmaker_3.3.4-1_i386 + texstudio_2.3+debian-3_i386 + texstudio-dbg_2.3+debian-3_i386 + textdraw_0.2-2_i386 + textedit.app_4.0+20061029-3.4_i386 + texworks_0.5~svn1007-1_i386 + texworks-scripting-lua_0.5~svn1007-1_i386 + texworks-scripting-python_0.5~svn1007-1_i386 + tf_1:4.0s1-17_i386 + tf5_5.0beta8-4+b1_i386 + tfdocgen_1.0-1_i386 + tftp_0.17-18_i386 + tftp-hpa_5.2-4_i386 + tftpd_0.17-18_i386 + tftpd-hpa_5.2-4_i386 + tgif_1:4.2.5-1.2_i386 + tgn_0.20-3_i386 + tgt_1:1.0.17-1_i386 + the_3.3~rc1-2_i386 + thepeg_1.8.0-1_i386 + therion_5.3.9-4_i386 + therion-viewer_5.3.9-4_i386 + theseus_1.6.2-2_i386 + thewidgetfactory_0.2.1-2_i386 + thin_1.3.1-3_i386 + thinkfan_0.8.1-1_i386 + threadscope_0.2.1-1_i386 + thrust_0.89c-3.5_i386 + thuban_1.2.2-3+b1_i386 + thunar_1.2.3-4+b1_i386 + thunar-archive-plugin_0.3.0-4_i386 + thunar-dbg_1.2.3-4+b1_i386 + thunar-gtkhash_0.6.0-4_i386 + thunar-media-tags-plugin_0.2.0-1_i386 + thunar-vcs-plugin_0.1.4-1_i386 + thunar-volman_0.6.1-1_i386 + ticker_1.9_i386 + tickr_0.6.1-1_i386 + tidy_20091223cvs-1.2_i386 + tiemu_3.02-1.2_i386 + tiemu-skinedit_1.27-2_i386 + tifffile_20120421-1_i386 + tig_1.0-2_i386 + tiger_1:3.2.3-10_i386 + tiger-otheros_1:3.2.3-10_i386 + tightvncserver_1.3.9-6.4_i386 + tigr-glimmer_3.02-2_i386 + tilda_0.09.6-2_i386 + tiled_0.8.1-1_i386 + tilp2_1.12-1_i386 + timbl_6.4.2-1_i386 + timblserver_1.4-2_i386 + time_1.7-24_i386 + timelimit_1.8-1_i386 + timemachine_0.3.3-1_i386 + timemon.app_4.1-2+b3_i386 + timidity_2.13.2-40.1_i386 + timidity-interfaces-extra_2.13.2-40.1_i386 + timps_0.25-4_i386 + tin_1:2.1.1-1_i386 + tina_0.1.11-3_i386 + tinc_1.0.19-3_i386 + tint_0.04+nmu1_i386 + tint2_0.11+svn20111022-3_i386 + tint2-dbg_0.11+svn20111022-3_i386 + tintii_2.6.1-1_i386 + tintin++_2.00.8-1_i386 + tinycdb_0.78_i386 + tinydyndns_0.4.2.debian1-1_i386 + tinyeartrainer_0.1.0-2_i386 + tinyhoneypot_0.4.6-9_i386 + tinyirc_1:1.1.dfsg.1-2_i386 + tinymux_2.6.5.28-1_i386 + tinyproxy_1.8.3-3_i386 + tinyscheme_1.37-3.1_i386 + tinywm_1.3-9_i386 + tiobench_0.3.3-5_i386 + titanion_0.3.dfsg1-4_i386 + tix_8.4.3-4_i386 + tix-dev_8.4.3-4_i386 + tk-html3_3.0~fossil20110109-2_i386 + tk-table_2.10-1_i386 + tk-tktray_1.3.9-2_i386 + tk707_0.7.21-9.1_i386 + tk8.4_8.4.19-5_i386 + tk8.4-dev_8.4.19-5_i386 + tk8.5_8.5.11-2_i386 + tk8.5-dev_8.5.11-2_i386 + tkdesk_2.0-9.1_i386 + tkgate_1.8.7-4_i386 + tkpng_0.9-1_i386 + tkremind_03.01.12-1_i386 + tktreectrl_2.2.8-1_i386 + tla_1.3.5+dfsg-18_i386 + tm-align_20120507-1_i386 + tmake_1.8-1.1_i386 + tmispell-voikko_0.7.1-3_i386 + tmpreaper_1.6.13+nmu1_i386 + tmux_1.6-2_i386 + tnat64_0.05-1_i386 + tnef_1.4.9-1_i386 + tnftp_20100108-3_i386 + tntdb-mysql3_1.2-2+b1_i386 + tntdb-postgresql3_1.2-2+b1_i386 + tntdb-sqlite3_1.2-2+b1_i386 + tntnet_2.1-2+deb7u1_i386 + tntnet-demos_2.1-2+deb7u1_i386 + tntnet-runtime_2.1-2+deb7u1_i386 + tofrodos_1.7.9.debian.1-1_i386 + toga2_1.4.1.1SE1-4_i386 + toilet_0.3-1_i386 + tokyocabinet-bin_1.4.47-2_i386 + tokyotyrant_1.1.40-4.1+b1_i386 + tokyotyrant-dbg_1.1.40-4.1+b1_i386 + tokyotyrant-utils_1.1.40-4.1+b1_i386 + tomatoes_1.55-5_i386 + tomboy_1.10.0-2_i386 + tomoyo-tools_2.5.0-20120414-2_i386 + toonloop_2.2.0-1+b1_i386 + topal_75-1_i386 + toppler_1.1.5-2_i386 + tor_0.2.3.25-1_i386 + tor-dbg_0.2.3.25-1_i386 + tora_2.1.3-2_i386 + tora-dbg_2.1.3-2_i386 + torcs_1.3.3+dfsg-0.1_i386 + torque-client_2.4.16+dfsg-1+deb7u2_i386 + torque-client-x11_2.4.16+dfsg-1+deb7u2_i386 + torque-common_2.4.16+dfsg-1+deb7u2_i386 + torque-mom_2.4.16+dfsg-1+deb7u2_i386 + torque-pam_2.4.16+dfsg-1+deb7u2_i386 + torque-scheduler_2.4.16+dfsg-1+deb7u2_i386 + torque-server_2.4.16+dfsg-1+deb7u2_i386 + torsocks_1.2-3_i386 + torus-trooper_0.22.dfsg1-8_i386 + torus-trooper-pure_0.22.dfsg1-8_i386 + toshset_1.76-4_i386 + totem_3.0.1-8_i386 + totem-dbg_3.0.1-8_i386 + totem-mozilla_3.0.1-8_i386 + totem-plugin-arte_3.1.2-1_i386 + totem-plugins_3.0.1-8_i386 + tpb_0.6.4-8_i386 + tpconfig_3.1.3-15_i386 + tpm-tools_1.3.7-1_i386 + tpm-tools-dbg_1.3.7-1_i386 + tqsllib-dev_2.2-5_i386 + traceroute_1:2.0.18-3_i386 + trackballs_1.1.4-4.1_i386 + trackballs-dbg_1.1.4-4.1_i386 + tracker_0.14.1-3_i386 + tracker-dbg_0.14.1-3_i386 + tracker-explorer_0.14.1-3_i386 + tracker-extract_0.14.1-3_i386 + tracker-gui_0.14.1-3_i386 + tracker-miner-fs_0.14.1-3_i386 + tracker-utils_0.14.1-3_i386 + trafficserver_3.0.5-1_i386 + trafficserver-dev_3.0.5-1_i386 + trafficserver-plugin-conf-remap_3.0.5-1_i386 + tralics_2.14.4-2_i386 + transcalc_0.14-5_i386 + transcend_0.3.dfsg2-2_i386 + transcode_3:1.1.7-3_i386 + transcode-dbg_3:1.1.7-3_i386 + transfermii_1:0.6.1-2.1_i386 + transfermii-gui_1:0.6.1-2.1_i386 + transfig_1:3.2.5.d-3_i386 + transgui_4.0.3-2_i386 + transmission-cli_2.52-3+nmu1_i386 + transmission-daemon_2.52-3+nmu1_i386 + transmission-dbg_2.52-3+nmu1_i386 + transmission-gtk_2.52-3+nmu1_i386 + transmission-qt_2.52-3+nmu1_i386 + transtermhp_2.09-1_i386 + traverso_0.49.2-5_i386 + trayer_1.1.4-2_i386 + tre-agrep_0.8.0-3_i386 + tree_1.6.0-1_i386 + tree-ppuzzle_5.2-7_i386 + tree-puzzle_5.2-7_i386 + treeviewx_0.5.1+20100823-1_i386 + treil_1.8-1.1_i386 + trend_1.2-1_i386 + trickle_1.07-9+b1_i386 + trigger-rally_0.6.0-1+b2_i386 + triggerhappy_0.3.4-2_i386 + triplane_1.0.7-1_i386 + tripwire_2.4.2.2-2_i386 + troffcvt_1.04-21_i386 + trophy_2.0.2-2_i386 + trophy-dbg_2.0.2-2_i386 + trousers_0.3.9-3+wheezy1_i386 + trousers-dbg_0.3.9-3+wheezy1_i386 + trovacap_0.2.2-1_i386 + trueprint_5.3-4_i386 + trustedqsl_1.13-3_i386 + tsdecrypt_8.1-1_i386 + tse3play_0.3.1-4.3_i386 + tshark_1.8.2-5wheezy9_i386 + tsocks_1.8beta5-9.2_i386 + tstools_1.11-1_i386 + tsung_1.4.2-1.1_i386 + ttf2ufm_3.4.4~r2-1_i386 + ttfautohint_0.9-1_i386 + tth_4.03+ds-2_i386 + tth-common_4.03+ds-2_i386 + tthsum_1.1.0-1_i386 + ttm_4.03+ds-2_i386 + ttt_1.7-3.3_i386 + tttprobe_1.7-3.3_i386 + tttview_1.7-3.3_i386 + ttv_3.102-3_i386 + tty-clock_1.1-1_i386 + ttyload_0.5-7_i386 + ttylog_0.1.d-2_i386 + ttylog-dbg_0.1.d-2_i386 + ttyrec_1.0.8-5_i386 + ttysnoop_0.12d-5_i386 + tua_4.3-11_i386 + tucnak2_2.47-2+deb7u1_i386 + tudu_0.8.1-1_i386 + tulip_3.7.0dfsg-4_i386 + tumbler_0.1.25-1+b1_i386 + tumbler-plugins-extra_0.1.25-1+b1_i386 + tumiki-fighters_0.2.dfsg1-5_i386 + tupi_0.1+git12-6_i386 + tupi-dbg_0.1+git12-6_i386 + tuxcmd_0.6.70+dfsg-1_i386 + tuxcmd-modules_0.6.70+ds-4_i386 + tuxfootball_0.3.1-2_i386 + tuxguitar-alsa_1.2-13+deb7u1_i386 + tuxguitar-fluidsynth_1.2-13+deb7u1_i386 + tuxguitar-jack_1.2-13+deb7u1_i386 + tuxguitar-oss_1.2-13+deb7u1_i386 + tuxmath_1.8.0-4_i386 + tuxonice-userui_1.1-1_i386 + tuxpaint_1:0.9.21-1.1_i386 + tuxpaint-config_0.0.12-3_i386 + tuxpaint-plugins-default_1:0.9.21-1.1_i386 + tuxpuck_0.8.2-2.2_i386 + tuxtype_1.8.1-5_i386 + tvflash_0.9.0-1_i386 + tvtime_1.0.2-10_i386 + twclock_3.1-1_i386 + tweak_3.01-8_i386 + twm_1:1.0.6-1_i386 + twoftpd_1.41-1_i386 + twolame_0.3.13-1_i386 + tworld_1.3.0-6_i386 + twpsk_4.0-1_i386 + txt2pdbdoc_1.4.4-6_i386 + txtreader_0.6.5-1_i386 + typespeed_0.6.5-1.1_i386 + tzc_2.6.15-5.2_i386 + u-boot_2012.04.01-2_i386 + u-boot-tools_2012.04.01-2_i386 + u3-tool_0.3-1.1_i386 + uanytun_0.3.3-1_i386 + uapevent_1.4-2_i386 + uaputl_1.12-2_i386 + ucarp_1.5.2-1+nmu1_i386 + ucblogo_5.5-2.1_i386 + uchardet_0.0.1-1_i386 + ucimf_2.3.8-4_i386 + ucimf-chewing_0.3-1+build1_i386 + ucimf-openvanilla_2.10.11-2_i386 + ucimf-sunpinyin_0.4-2_i386 + ucommon-utils_5.2.2-4_i386 + ucspi-proxy_0.98-1_i386 + ucspi-tcp_1:0.88-3_i386 + ucspi-tcp-ipv6_1:0.88-3_i386 + ucspi-unix_0.36-4_i386 + ucto_0.5.2-2_i386 + udav_0.7.1.2-3+b1_i386 + udev_175-7.2_i386 + udftools_1.0.0b3-14.2_i386 + udhcpc_1:1.20.0-7_i386 + udhcpd_1:1.20.0-7_i386 + udisks_1.0.4-7_i386 + udisks-glue_1.3.4-1_i386 + udo_6.4.1-1_i386 + udpcast_20100130-3_i386 + udptunnel_1.1-4_i386 + udunits-bin_2.1.23-3_i386 + ufiformat_0.9.8-1_i386 + ufraw_0.18-2_i386 + ufraw-batch_0.18-2_i386 + ufsutils_8.2-3_i386 + uget_1.8.2-1_i386 + uhd-host_3.4.2-1_i386 + uhub_0.3.2-1_i386 + uif2iso_0.1.7a-1_i386 + uim-anthy_1:1.8.1-4_i386 + uim-applet-gnome_1:1.8.1-4_i386 + uim-chewing_0.1.0-3_i386 + uim-dbg_1:1.8.1-4_i386 + uim-dict-gtk_1:1.8.1-4_i386 + uim-dict-gtk3_1:1.8.1-4_i386 + uim-el_1:1.8.1-4_i386 + uim-fep_1:1.8.1-4_i386 + uim-gtk2.0_1:1.8.1-4_i386 + uim-gtk3_1:1.8.1-4_i386 + uim-m17nlib_1:1.8.1-4_i386 + uim-mozc_1.5.1090.102-4+deb7u1_i386 + uim-qt_1:1.8.1-4_i386 + uim-skk_1:1.8.1-4_i386 + uim-utils_1:1.8.1-4_i386 + uim-xim_1:1.8.1-4_i386 + uisp_20050207-4.2_i386 + ukopp_4.4-1_i386 + ulatency_0.5.0-7_i386 + ulatencyd_0.5.0-7_i386 + ulogd_1.24-3.3_i386 + ulogd-mysql_1.24-3.3_i386 + ulogd-pcap_1.24-3.3_i386 + ulogd-pgsql_1.24-3.3_i386 + ulogd-sqlite3_1.24-3.3_i386 + umbrello_4:4.8.4+dfsg-1_i386 + uml-utilities_20070815-1.3_i386 + umview_0.8.2-1_i386 + umview-mod-umdevtap_0.8.2-1_i386 + umview-mod-umfuseext2_0.4-1_i386 + umview-mod-umfusefat_0.1a-1_i386 + umview-mod-umfuseiso9660_0.3-1_i386 + umview-mod-umlwip_0.8.2-1_i386 + umview-mod-viewfs_0.8.2-1_i386 + unaccent_1.8.0-6_i386 + unace_1.2b-10_i386 + unadf_0.7.11a-3_i386 + unagi_0.3.3-2_i386 + unagi-dbg_0.3.3-2_i386 + unagi-dev_0.3.3-2_i386 + unalz_0.65-3_i386 + unar_1.1-2_i386 + unbound_1.4.17-3_i386 + unbound-anchor_1.4.17-3_i386 + unbound-host_1.4.17-3_i386 + unclutter_8-18_i386 + uncrustify_0.59-2_i386 + undbx_0.20-1_i386 + undertaker_1.3b-1_i386 + unetbootin_575-1_i386 + unhide_20110113-4_i386 + unhtml_2.3.9-3_i386 + uni2ascii_4.18-2_i386 + unicode-screensaver_0.4-1_i386 + unicon-imc2_3.0.4-13_i386 + uniconf-tools_4.6.1-5_i386 + uniconfd_4.6.1-5_i386 + unicorn_4.3.1-4_i386 + unifdef_2.6-1_i386 + unifont-bin_1:5.1.20080914-1.3_i386 + unionfs-fuse_0.24-2.2_i386 + unison_2.40.65-2_i386 + unison-gtk_2.40.65-2_i386 + unison2.27.57_2.27.57-7_i386 + unison2.27.57-gtk_2.27.57-7_i386 + unison2.32.52_2.32.52-6_i386 + unison2.32.52-gtk_2.32.52-6_i386 + units_1.88-1_i386 + units-filter_3.5-2_i386 + uniutils_2.27-1_i386 + universalindentgui_1.2.0-1_i386 + unixodbc_2.2.14p2-5_i386 + unixodbc-bin_2.3.0-3_i386 + unixodbc-dev_2.2.14p2-5_i386 + unmass_0.9-3_i386 + unmo3_0.6-1_i386 + uno-libs3_3.5.4+dfsg2-0+deb7u2_i386 + uno-libs3-dbg_3.5.4+dfsg2-0+deb7u2_i386 + unpaper_0.4.2-1_i386 + unrar-free_1:0.0.1+cvs20071127-2_i386 + unrtf_0.19.3-1.1+b1_i386 + unscd_0.48-2_i386 + unshield_0.6-3_i386 + unsort_1.1.2-1_i386 + untex_1:1.2-4_i386 + unworkable_0.53-3_i386 + unzip_6.0-8_i386 + update-notifier_0.99.3debian11_i386 + update-notifier-kde_1.2.4_i386 + uphpmvault_0.8_i386 + upnp-router-control_0.2-1+b1_i386 + upower_0.9.17-1_i386 + upse123_1.0.0-1_i386 + upslug2_11-3_i386 + upstart_1.6.1-1_i386 + uptimed_1:0.3.17-3.1_i386 + upx-ucl_3.08-2_i386 + uqwk_2.21-15_i386 + uqwk-spool_2.21-15_i386 + ure_3.5.4+dfsg2-0+deb7u2_i386 + ure-dbg_3.5.4+dfsg2-0+deb7u2_i386 + urfkill_0.3.0-1_i386 + urg-utils_0.8.12-4_i386 + urjtag_0.10+r2007-1_i386 + urlview_0.9-19_i386 + usb-modeswitch_1.2.3+repack0-1_i386 + usbip_1.1.1+3.2.17-1_i386 + usbmuxd_1.0.7-2_i386 + usbprog_0.2.0-2_i386 + usbprog-gui_0.2.0-2_i386 + usbredirserver_0.4.3-2_i386 + usbutils_1:005-3_i386 + usbview_1.1-1_i386 + usepackage_1.8-1_i386 + user-mode-linux_3.2-2um-1+deb7u2+b2_i386 + userinfo_2.2-3_i386 + usermode_1.109-1_i386 + userv_1.1.1_i386 + ussp-push_0.11-1_i386 + ust-bin_2.0.4-1_i386 + uswsusp_1.0+20110509-3_i386 + utalk_1.0.1.beta-7_i386 + util-linux_2.20.1-5.3_i386 + uuagc_0.9.40.3-2_i386 + uucp_1.07-20_i386 + uucpsend_1.1-4_i386 + uudeview_0.5.20-3.3_i386 + uuid_1.6.2-1.3_i386 + uuid-dev_2.20.1-5.3_i386 + uuid-runtime_2.20.1-5.3_i386 + uuidcdef_0.3.13-3_i386 + uvccapture_0.5-2_i386 + uvcdynctrl_0.2.2-1_i386 + uvcdynctrl-dbg_0.2.2-1_i386 + uw-mailutils_8:2007f~dfsg-2_i386 + uwsgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-app-integration-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-core_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-dbg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-infrastructure-plugins_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-admin_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cache_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-carbon_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-cgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-echo_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-erlang_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fastrouter_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-fiber_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-graylog2_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-greenlet-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-http_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jvm-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-jwsgi-openjdk-6_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-logsocket_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-lua5.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-nagios_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ping_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probeconnect_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-probepg_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-psgi_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-pyerl-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-python3_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.8_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rack-ruby1.9.1_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rpc_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rrdtool_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-rsyslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-signal_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-symcall_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-syslog_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugin-ugreen_1.2.3+dfsg-5+deb7u1_i386 + uwsgi-plugins-all_1.2.3+dfsg-5+deb7u1_i386 + uzbl_0.0.0~git.20120514-1.1_i386 + v-sim_3.6.0-2+b2_i386 + v-sim-plugins_3.6.0-2+b2_i386 + v4l-conf_3.102-3_i386 + v4l-utils_0.8.8-3_i386 + v4l2ucp_2.0.2-4_i386 + v86d_0.1.10-1_i386 + vacation_3.3.0-0.4_i386 + vagalume_0.8.5-4_i386 + vainfo_1.0.15-4_i386 + val-and-rick_0.1a.dfsg1-3_i386 + vala-dbus-binding-tool_0.3.3~git20110523-2_i386 + vala-gen-project_0.12.1-3_i386 + vala-gen-project-dbg_0.12.1-3_i386 + vala-terminal_1.3-3_i386 + valabind_0.6.4-1_i386 + valac-0.14_0.14.2-2_i386 + valac-0.14-dbg_0.14.2-2_i386 + valac-0.16_0.16.1-2_i386 + valac-0.16-dbg_0.16.1-2_i386 + valadoc_0.3.2~git20120227-1_i386 + valgrind_1:3.7.0-6_i386 + valgrind-dbg_1:3.7.0-6_i386 + valgrind-mpi_1:3.7.0-6_i386 + valknut_0.4.9-2_i386 + valkyrie_2.0.0-1_i386 + vamp-examples_2.1-1_i386 + vamp-plugin-sdk_2.1-1_i386 + vamps_0.99.2-4_i386 + varmon_1.2.1-1_i386 + varnish_3.0.2-2+deb7u1_i386 + varnish-dbg_3.0.2-2+deb7u1_i386 + vavoom_1.33-4_i386 + vbetool_1.1-2_i386 + vbindiff_3.0-beta3-1_i386 + vblade_20-1_i386 + vbrfix_0.24-7_i386 + vbuf_0.5.1-5.1_i386 + vcdimager_0.7.24+dfsg-0.1_i386 + vcftools_0.1.9-1_i386 + vco-plugins_0.3.0-2_i386 + vde2_2.3.2-4_i386 + vde2-cryptcab_2.3.2-4_i386 + vdesk_1.2-3.1_i386 + vdetelweb_1.2.1-1_i386 + vdkbuilder2_2.4.0-4.3_i386 + vdmfec_1.0-2_i386 + vdpau-va-driver_0.7.3-2_i386 + vdpauinfo_0.0.6-1_i386 + vdr_1.7.28-1_i386 + vdr-dbg_1.7.28-1_i386 + vdr-plugin-dvbhddevice_1.7.28-1_i386 + vdr-plugin-dvbsddevice_1.7.28-1_i386 + vdr-plugin-dvd_0.3.6~b03+cvs20090426.0013-14_i386 + vdr-plugin-epgsearch_1.0.0+git20120325-4_i386 + vdr-plugin-epgsync_0.0.4-12_i386 + vdr-plugin-examples_1.7.28-1_i386 + vdr-plugin-femon_1.7.17-3_i386 + vdr-plugin-fritzbox_1.4.3-2_i386 + vdr-plugin-games_0.6.3-39_i386 + vdr-plugin-infosatepg_0.0.11-10_i386 + vdr-plugin-live_0.2.0+git20120428-3_i386 + vdr-plugin-mp3_0.10.2-14_i386 + vdr-plugin-mplayer_0.10.2-14_i386 + vdr-plugin-osdserver_0.1.3-7_i386 + vdr-plugin-osdteletext_0.9.3-2_i386 + vdr-plugin-prefermenu_0.6.6-37_i386 + vdr-plugin-remote_0.4.0-31_i386 + vdr-plugin-remoteosd_0.1.1-5_i386 + vdr-plugin-skinenigmang_0.1.2+git20120628-1_i386 + vdr-plugin-spider_0.2.2-14_i386 + vdr-plugin-streamdev-client_0.6.0-2_i386 + vdr-plugin-streamdev-server_0.6.0-2_i386 + vdr-plugin-sudoku_0.3.5-12_i386 + vdr-plugin-svdrposd_0.1.1-8_i386 + vdr-plugin-svdrpservice_0.0.4-14_i386 + vdr-plugin-vcd_0.9-22_i386 + vdr-plugin-weather_0.2.1e-63_i386 + vdr-plugin-xine_0.9.4-7_i386 + vdr-plugin-xineliboutput_1.0.7+cvs20120609.1902-1_i386 + vectoroids_1.1.0-11_i386 + velvet_1.2.03~nozlibcopy-1_i386 + verbiste_0.1.34-1_i386 + verbiste-gnome_0.1.34-1_i386 + verilator_3.833-1_i386 + verse_0.22.6_i386 + veusz-helpers_1.15-1_i386 + veusz-helpers-dbg_1.15-1_i386 + vflib3_3.6.14.dfsg-3+b1_i386 + vflib3-bin_3.6.14.dfsg-3+b1_i386 + vflib3-dev_3.6.14.dfsg-3+b1_i386 + vftool_2.0alpha-4.1_i386 + vfu_4.10-1.1_i386 + vgrabbj_0.9.6-5.1_i386 + via-bin_2.0.4-2_i386 + vidalia_0.2.20-2_i386 + videocut_0.2.0-11_i386 + videogen_0.32-5_i386 + viewmol_2.4.1-18_i386 + viewpdf.app_1:0.2dfsg1-4_i386 + vifm_0.4-1_i386 + vigor_0.016-19_i386 + viking_1.3-1_i386 + vile_9.8g-2_i386 + vile-filters_9.8g-2_i386 + vilistextum_2.6.9-1.1_i386 + vim_2:7.3.547-7_i386 + vim-athena_2:7.3.547-7_i386 + vim-common_2:7.3.547-7_i386 + vim-dbg_2:7.3.547-7_i386 + vim-gnome_2:7.3.547-7_i386 + vim-gtk_2:7.3.547-7_i386 + vim-nox_2:7.3.547-7_i386 + vim-tiny_2:7.3.547-7_i386 + vinagre_3.4.2-2_i386 + vino_3.4.2-1+b1_i386 + virt-top_1.0.7-1+b1_i386 + virt-viewer_0.5.3-1_i386 + virt-what_1.12-1_i386 + virtualbox_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-dbg_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-fuse_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-utils_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-guest-x11_4.1.18-dfsg-2+deb7u1_i386 + virtualbox-qt_4.1.18-dfsg-2+deb7u1_i386 + virtuoso-opensource-6.1_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_i386 + virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_i386 + viruskiller_1.03-1+dfsg1-1_i386 + visitors_0.7-9_i386 + visualboyadvance_1.8.0.dfsg-1_i386 + visualboyadvance-gtk_1.8.0.dfsg-1_i386 + vite_1.2+svn1347-3_i386 + vkeybd_1:0.1.18d-2_i386 + vlan_1.9-3_i386 + vlc_2.0.3-5_i386 + vlc-dbg_2.0.3-5_i386 + vlc-nox_2.0.3-5_i386 + vlc-plugin-fluidsynth_2.0.3-5_i386 + vlc-plugin-jack_2.0.3-5_i386 + vlc-plugin-notify_2.0.3-5_i386 + vlc-plugin-pulse_2.0.3-5_i386 + vlc-plugin-sdl_2.0.3-5_i386 + vlc-plugin-svg_2.0.3-5_i386 + vlc-plugin-zvbi_2.0.3-5_i386 + vlock_2.2.2-3_i386 + vmfs-tools_0.2.5-1_i386 + vmpk_0.4.0-3_i386 + vnc4server_4.1.1+X4.3.0-37.1_i386 + vncsnapshot_1.2a-5.1_i386 + vnstat_1.11-1_i386 + vnstati_1.11-1_i386 + vo-aacenc-dbg_0.1.2-1_i386 + vo-amrwbenc-dbg_0.1.2-1_i386 + vobcopy_1.2.0-2_i386 + vocproc_0.2-3_i386 + vodovod_1.10-2_i386 + voikko-fi_1.12-1_i386 + volumecontrol.app_0.5-3.1+b1_i386 + volumeicon-alsa_0.4.6-1_i386 + volview_3.4-3_i386 + voms-clients_2.0.8-1_i386 + voms-dbg_2.0.8-1_i386 + voms-dev_2.0.8-1_i386 + voms-mysql-plugin_3.1.6-1+b1_i386 + voms-mysql-plugin-dbg_3.1.6-1+b1_i386 + voms-server_2.0.8-1_i386 + vorbis-tools_1.4.0-1_i386 + vorbis-tools-dbg_1.4.0-1_i386 + vorbisgain_0.37-2_i386 + vowpal-wabbit_6.1-1_i386 + voxbo_1.8.5~svn1246-1+b1_i386 + vpb-utils_4.2.55-1_i386 + vpnc_0.5.3r512-2_i386 + vprerex_6.4.0-3_i386 + vpx-tools_1.1.0-1_i386 + vrfy_990522-8_i386 + vrrpd_1.0-2_i386 + vsd2odg_0.8.1-4_i386 + vsdump_0.0.45-1_i386 + vsftpd_2.3.5-3_i386 + vstream-client_1.2-6.1_i386 + vstream-client-dev_1.2-6.1_i386 + vtgrab_0.1.8-3_i386 + vtprint_2.0.2-12_i386 + vttest_2.7+20120603-1_i386 + vtun_3.0.2-4+b1_i386 + vtwm_5.4.7-2.2+b1_i386 + vym_2.2.0-1_i386 + vzctl_3.0.30.2-4_i386 + vzquota_3.0.12-3_i386 + w-scan_20120605-1_i386 + w3cam_0.7.2-6.2_i386 + w3m_0.5.3-8_i386 + w3m-img_0.5.3-8_i386 + w9wm_0.4.2-7_i386 + wah-plugins_0.0.2-2_i386 + warmux_1:11.04.1+repack-4_i386 + warmux-dbg_1:11.04.1+repack-4_i386 + warmux-servers_1:11.04.1+repack-4_i386 + watch-maildirs_1.2.0-2.1_i386 + watchdog_5.12-1_i386 + wav2cdr_2.3.4-1_i386 + wavbreaker_0.11-1_i386 + wavemon_0.7.5-3_i386 + wavpack_4.60.1-3_i386 + wayv_0.3-5_i386 + wbar_1.3.3+dfsg2-1_i386 + wbox_5-1_i386 + wcalc_2.4-1.1_i386 + wcd_5.2.1-2_i386 + wcslib-dev_4.13.4-1_i386 + wcslib-tools_4.13.4-1_i386 + wcstools_3.8.5-1_i386 + wdiff_1.1.2-1_i386 + wdm_1.28-13+deb7u1_i386 + webalizer_2.23.05-1_i386 + webauth-utils_4.1.1-2_i386 + webcam_3.102-3_i386 + webcit-dbg_8.14-dfsg-1_i386 + webdruid_0.5.4-12.1_i386 + webfs_1.21+ds1-8.1_i386 + webhttrack_3.46.1-1_i386 + webissues_1.0.2-1_i386 + webissues-dbg_1.0.2-1_i386 + webkit-image-gtk_0.0.svn25399-3_i386 + webkit-image-qt_0.0.svn25399-3_i386 + webkit2pdf_0.2-4_i386 + weborf_0.13-3_i386 + webp_0.1.3-3+nmu1_i386 + weechat-core_0.3.8-1+deb7u1_i386 + weechat-curses_0.3.8-1+deb7u1_i386 + weechat-dbg_0.3.8-1+deb7u1_i386 + weechat-plugins_0.3.8-1+deb7u1_i386 + weex_2.6.1-8_i386 + welcome2l_3.04-25_i386 + weplab_0.1.5-2_i386 + wesnoth-1.10-core_1:1.10.3-3_i386 + wesnoth-1.10-dbg_1:1.10.3-3_i386 + wesnoth-1.10-server_1:1.10.3-3_i386 + west-chamber-common_20100405+svn20111107.r124-1_i386 + wfut_0.2.1-2_i386 + wget_1.13.4-3+deb7u1_i386 + whichman_2.4-7_i386 + whiptail_0.52.14-11.1_i386 + whitedune_0.30.10-1.1_i386 + whois_5.1.1~deb7u1_i386 + whowatch_1.6.0a-2_i386 + why_2.30+dfsg-5+b1_i386 + whysynth_20090403-1.2_i386 + wicd-kde_0.3.0-2_i386 + wide-dhcpv6-client_20080615-11.1_i386 + wide-dhcpv6-relay_20080615-11.1_i386 + wide-dhcpv6-server_20080615-11.1_i386 + widelands_1:17-3_i386 + widelands-dbg_1:17-3_i386 + wiggle_0.8+dfsg1-1_i386 + wiipdf_1.4-2_i386 + wildmidi_0.2.3.4-2.1_i386 + wily_0.13.41-7.2_i386 + winbind_2:3.6.6-6+deb7u2_i386 + winbind4_4.0.0~beta2+dfsg1-3.2_i386 + windowlab_1.40-1_i386 + wine_1.4.1-4_i386 + wine-bin_1.4.1-4_i386 + winff_1.4.2-3_i386 + winff-dbg_1.4.2-3_i386 + wing_0.7-27.1+b1_i386 + wings3d_1.4.1-4_i386 + wininfo_0.7-5_i386 + winwrangler_0.2.4-3_i386 + wipe_0.22-1_i386 + wireless-tools_30~pre9-8_i386 + wireshark_1.8.2-5wheezy9_i386 + wireshark-common_1.8.2-5wheezy9_i386 + wireshark-dbg_1.8.2-5wheezy9_i386 + wireshark-dev_1.8.2-5wheezy9_i386 + wise_2.4.1-10_i386 + witty-examples_3.2.1-2_i386 + wizznic_0.9.2-preview2+dfsg-1.1_i386 + wkhtmltopdf_0.9.9-4_i386 + wm2_4+svn20090216-2_i386 + wmacpi_2.2~rc5-1_i386 + wmail_2.0-3_i386 + wmaker_0.95.3-2_i386 + wmaker-dbg_0.95.3-2_i386 + wmaloader_0.1-5.1+b1_i386 + wmanager_0.2.1-11_i386 + wmauda_0.8-2_i386 + wmbattery_2.41_i386 + wmbiff_0.4.27-2.1_i386 + wmbubble_1.46-3_i386 + wmbutton_0.6.1-3.1_i386 + wmcalclock_1.25-15_i386 + wmcdplay_1.0beta1-10_i386 + wmclock_1.0.14-1_i386 + wmclockmon_0.8.1-2_i386 + wmcoincoin_2.5.1e-1_i386 + wmcpu_1.4-4_i386 + wmcpuload_1.0.1-3.2_i386 + wmctrl_1.07-7_i386 + wmdate_0.7-4_i386 + wmdiskmon_0.0.2-2_i386 + wmdrawer_0.10.5-1.1_i386 + wmf_1.0.5-6_i386 + wmforkplop_0.9.3-2_i386 + wmfrog_0.2.0-4_i386 + wmgui_0.6.00+svn201-3+b1_i386 + wmhdplop_0.9.9-2.1_i386 + wmifinfo_0.09-5_i386 + wmifs_1.3b1-20_i386 + wmii_3.9.2+debian-4_i386 + wminput_0.6.00+svn201-3+b1_i386 + wmitime_0.3-11_i386 + wmix_3.1-5_i386 + wml_2.0.12ds1-3_i386 + wmlongrun_0.3.0-pre1-4.2_i386 + wmmatrix_0.2-12_i386 + wmmemload_0.1.6-7_i386 + wmmixer_1.7-1_i386 + wmmon_1.1+20120402-1_i386 + wmmoonclock_1.28-1_i386 + wmnd_0.4.16-1.1_i386 + wmnd-snmp_0.4.16-1.1_i386 + wmnet_1.06-1_i386 + wmnut_0.64-1_i386 + wmpinboard_1.0-11_i386 + wmpomme_1.39~dfsg-2+b1_i386 + wmppp.app_1.3.0-8_i386 + wmpuzzle_0.5.1-1_i386 + wmrack_1.4-2_i386 + wmressel_0.8-5_i386 + wmshutdown_0.2-9_i386 + wmtemp_0.0.6-3.3_i386 + wmtime_1.0b2-10_i386 + wmtv_0.6.5-16.1_i386 + wmwave_0.4-9+b1_i386 + wmweather_2.4.5-1_i386 + wmweather+_2.13-1_i386 + wmwork_0.2.5-4_i386 + wmxmms2_0.6-6_i386 + wmxres_1.2-10_i386 + wodim_9:1.1.11-2_i386 + wordgrinder_0.3.3-1_i386 + wordnet_1:3.0-29_i386 + wordnet-dev_1:3.0-29_i386 + wordnet-grind_1:3.0-29_i386 + wordnet-gui_1:3.0-29_i386 + wordplay_7.22-17_i386 + worker_2.19.2-2_i386 + worklog_1.8-6_i386 + workrave_1.9.909+abc941eb70-1_i386 + wp2x_2.5-mhi-10.1_i386 + wpagui_1.0-3+b1_i386 + wpasupplicant_1.0-3+b1_i386 + wpd2odt_0.8.1-4_i386 + wpg2odg_0.8.1-4_i386 + wps2odt_0.8.1-4_i386 + wput_0.6.2-3_i386 + wraplinux_1.7-7_i386 + wraplinux-dbg_1.7-7_i386 + wrapperfactory.app_0.1.0-4+b3_i386 + wrapsrv_0.2-1_i386 + wreport-common_2.4-1_i386 + wsjt_5.9.7.r383-1.6_i386 + wsynth-dssi_0.1.3-4_i386 + wuzzah_0.53-2_i386 + wv_1.2.9-3_i386 + wvdial_1.61-4.1_i386 + wwl_1.3+db-1.1_i386 + wx-common_2.8.12.1-12_i386 + wx2.8-headers_2.8.12.1-12_i386 + wxmaxima_12.04.0-1_i386 + wxsqlite3-2.8-dbg_3.0.0.1~dfsg0-2_i386 + wyrd_1.4.4-1_i386 + wysihtml-el_0.13-5.1_i386 + wzdftpd_0.8.3-6.2_i386 + wzdftpd-back-mysql_0.8.3-6.2_i386 + wzdftpd-back-pgsql_0.8.3-6.2_i386 + wzdftpd-dev_0.8.3-6.2_i386 + wzdftpd-mod-avahi_0.8.3-6.2_i386 + wzdftpd-mod-perl_0.8.3-6.2_i386 + wzdftpd-mod-tcl_0.8.3-6.2_i386 + wzip_1.1.3_i386 + x11-apps_7.7~2_i386 + x11-session-utils_7.6+2_i386 + x11-utils_7.7~1_i386 + x11-xfs-utils_7.7~1_i386 + x11-xkb-utils_7.7~1_i386 + x11-xserver-utils_7.7~3_i386 + x11vnc_0.9.13-1_i386 + x2_1.1.0-1_i386 + x264_2:0.123.2189+git35cf912-1_i386 + x2goclient_3.99.2.1-5_i386 + x2goplugin_3.99.2.1-5_i386 + x2vnc_1.7.2-5_i386 + x2x_1.27.svn.20060501-4_i386 + x86dis_0.23-5_i386 + x86info_1.30-2_i386 + xa65_2.3.5-1_i386 + xabacus_7.6.8-3_i386 + xacobeo_0.13-2+b1_i386 + xalan_1.10-6_i386 + xaos_3.5+ds1-1_i386 + xapian-examples_1.2.12-2_i386 + xapian-omega_1.2.12-1_i386 + xapian-tools_1.2.12-2_i386 + xapm_3.2.2-14_i386 + xara-gtk_1.0.31_i386 + xarchiver_1:0.5.2+20090319+dfsg-4.1_i386 + xarclock_1.0-13_i386 + xauth_1:1.0.7-1_i386 + xautolock_1:2.2-3_i386 + xautomation_1.03-1.1_i386 + xaw3dg_1.5+E-18.2_i386 + xaw3dg-dev_1.5+E-18.2_i386 + xawtv_3.102-3_i386 + xawtv-plugin-qt_3.102-3_i386 + xawtv-plugins_3.102-3_i386 + xawtv-tools_3.102-3_i386 + xbacklight_1.1.2-1_i386 + xball_3.0.1-1.1_i386 + xbattbar_1.4.3-1_i386 + xbattle_5.4.1-15_i386 + xbill_2.1-8_i386 + xbindkeys_1.8.5-1_i386 + xbindkeys-config_0.1.3-2_i386 + xblast-tnt_2.10.4-3_i386 + xbmc-bin_2:11.0~git20120510.82388d5-1+b1_i386 + xbmc-eventclients-wiiremote_2:11.0~git20120510.82388d5-1+b1_i386 + xboard_4.6.2-1_i386 + xboing_2.4-31_i386 + xbomb_2.2a-1_i386 + xboxdrv_0.8.4-1_i386 + xbrlapi_4.4-10+deb7u1_i386 + xbs_0-8_i386 + xbubble_0.5.11.2-3.2_i386 + xbuffy_3.3.bl.3.dfsg-8_i386 + xca_0.9.3-1_i386 + xcal_4.1-19_i386 + xcalib_0.8.dfsg1-2_i386 + xcb_2.4-4.3_i386 + xcfa_4.3.1-1_i386 + xcfa-dbg_4.3.1-1_i386 + xcftools_1.0.7-4_i386 + xchain_1.0.1-6_i386 + xchat_2.8.8-7.1_i386 + xchat-gnome_1:0.30.0~git20110821.e2a400-0.2+b2_i386 + xchat-guile_0.3-2_i386 + xchat-xsys_2.2.0-2+b1_i386 + xchm_2:1.20-1_i386 + xcircuit_3.7.40.dfsg-1_i386 + xclip_0.12+svn84-2_i386 + xcolmix_1.07-10_i386 + xcolors_1.5a-7_i386 + xcolorsel_1.1a-17_i386 + xcompmgr_1.1.5-1_i386 + xcowsay_1.2-1_i386 + xcp-fe_0.5.2-3+b1_i386 + xcp-guest-templates_0.1-4_i386 + xcp-networkd_1.3.2-15_i386 + xcp-squeezed_1.3.2-15_i386 + xcp-storage-managers_0.1.1-3_i386 + xcp-v6d_1.3.2-15_i386 + xcp-vncterm_0.1-2_i386 + xcp-xapi_1.3.2-15_i386 + xcp-xapi-debug_1.3.2-15_i386 + xcp-xe_1.3.2-15_i386 + xcrysden_1.5.53-1_i386 + xcwcp_3.0.2-1_i386 + xd_3.22.04-1_i386 + xdaliclock_2.36+debian-1_i386 + xdelta_1.1.3-9_i386 + xdelta3_3.0.0.dfsg-1_i386 + xdemineur_2.1.1-17_i386 + xdemorse_1.3-6_i386 + xdesktopwaves_1.3-3_i386 + xdeview_0.5.20-3.3_i386 + xdg-user-dirs_0.14-1_i386 + xdg-user-dirs-gtk_0.9-1_i386 + xdiskusage_1.48-10.1_i386 + xdm_1:1.1.11-1_i386 + xdms_1.3.2-4_i386 + xdmx_2:1.12.4-6+deb7u2_i386 + xdmx-tools_2:1.12.4-6+deb7u2_i386 + xdotool_1:2.20100701.2961-3+deb7u3_i386 + xdrawchem_2.0-2_i386 + xdu_3.0-18_i386 + xdvik-ja_22.84.16-j1.40+t1lib-1_i386 + xen-hypervisor-4.1-amd64_4.1.4-3+deb7u1_i386 + xen-hypervisor-4.1-i386_4.1.4-3+deb7u1_i386 + xen-linux-system-2.6-xen-686_3.2+46_i386 + xen-linux-system-3.2.0-4-686-pae_3.2.54-2_i386 + xen-linux-system-3.2.0-4-amd64_3.2.54-2_i386 + xen-linux-system-686-pae_3.2+46_i386 + xen-linux-system-amd64_3.2+46_i386 + xen-system-amd64_4.1.4-3+deb7u1_i386 + xen-system-i386_4.1.4-3+deb7u1_i386 + xen-utils-4.1_4.1.4-3+deb7u1_i386 + xenomai-runtime_2.6.0-2_i386 + xenstore-utils_4.1.4-3+deb7u1_i386 + xenwatch_0.5.4-3_i386 + xevil_2.02r2-10_i386 + xfaces_3.3-28_i386 + xfburn_0.4.3-5_i386 + xfce4-appfinder_4.8.0-3_i386 + xfce4-battery-plugin_1.0.5-1+b1_i386 + xfce4-cellmodem-plugin_0.0.5-3+b1_i386 + xfce4-clipman_2:1.2.3-1+b1_i386 + xfce4-clipman-plugin_2:1.2.3-1+b1_i386 + xfce4-cpufreq-plugin_1.0.0-4+b1_i386 + xfce4-cpugraph-plugin_1.0.3-1+b1_i386 + xfce4-datetime-plugin_0.6.1-3+b1_i386 + xfce4-dev-tools_4.10.0-2_i386 + xfce4-dict_0.6.0-5+b1_i386 + xfce4-diskperf-plugin_2.5.4-1+b1_i386 + xfce4-fsguard-plugin_1.0.1-1+b1_i386 + xfce4-genmon-plugin_3.4.0-1+b1_i386 + xfce4-goodies_4.8.2_i386 + xfce4-hdaps_0.0.9-1+b1_i386 + xfce4-indicator-plugin_0.5.0-1+b2_i386 + xfce4-linelight-plugin_0.1.7-2+b1_i386 + xfce4-mailwatch-plugin_1.1.0-5+b1_i386 + xfce4-messenger-plugin_0.1.0-5+b1_i386 + xfce4-mixer_4.8.0-3+b1_i386 + xfce4-mount-plugin_0.6.4-1+b1_i386 + xfce4-mpc-plugin_0.4.4-1+b1_i386 + xfce4-netload-plugin_1.1.0-1+b1_i386 + xfce4-notes_1.7.7-2+b1_i386 + xfce4-notes-plugin_1.7.7-2+b1_i386 + xfce4-notifyd_0.2.2-2_i386 + xfce4-panel_4.8.6-4_i386 + xfce4-panel-dbg_4.8.6-4_i386 + xfce4-panel-dev_4.8.6-4_i386 + xfce4-places-plugin_1.3.0-1+b1_i386 + xfce4-power-manager_1.0.11-2+b1_i386 + xfce4-power-manager-plugins_1.0.11-2+b1_i386 + xfce4-quicklauncher-plugin_1.9.4-9+b1_i386 + xfce4-radio-plugin_0.5.1-1+b1_i386 + xfce4-screenshooter_1.8.1-1+b1_i386 + xfce4-sensors-plugin_1.2.5-1+b1_i386 + xfce4-session_4.8.3-3_i386 + xfce4-session-dbg_4.8.3-3_i386 + xfce4-settings_4.8.3-2_i386 + xfce4-smartbookmark-plugin_0.4.4-1+b1_i386 + xfce4-systemload-plugin_1.1.1-1+b1_i386 + xfce4-taskmanager_1.0.0-2_i386 + xfce4-terminal_0.4.8-1+b1_i386 + xfce4-terminal-dbg_0.4.8-1+b1_i386 + xfce4-timer-plugin_0.6.3-1+b1_i386 + xfce4-utils_4.8.3-2_i386 + xfce4-verve-plugin_1.0.0-1+b1_i386 + xfce4-volumed_0.1.13-3_i386 + xfce4-wavelan-plugin_0.5.11-1+b1_i386 + xfce4-weather-plugin_0.7.4-5_i386 + xfce4-wmdock-plugin_0.3.4-1+b1_i386 + xfce4-xkb-plugin_0.5.4.3-1+b1_i386 + xfconf_4.8.1-1_i386 + xfdesktop4_4.8.3-2_i386 + xfdesktop4-dbg_4.8.3-2_i386 + xfe_1.32.5-2_i386 + xfig_1:3.2.5.b-3_i386 + xfingerd_0.6-5.1_i386 + xfireworks_1.3-8_i386 + xfishtank_2.2-26_i386 + xflip_1.01-25_i386 + xflr5_6.07+svn513-1_i386 + xfm_1.5.4-3_i386 + xfmpc_0.2.2-1_i386 + xfoil_6.97.dfsg-5_i386 + xfonts-utils_1:7.7~1_i386 + xfprint4_4.6.1-3_i386 + xfpt_0.09-1_i386 + xfrisk_1.2-3_i386 + xfs_1:1.0.8-7_i386 + xfsdump_3.0.6_i386 + xfslibs-dev_3.1.7+b1_i386 + xfsprogs_3.1.7+b1_i386 + xfstt_1.9-2_i386 + xfswitch-plugin_0.0.1-3+b1_i386 + xfwm4_4.8.3-2_i386 + xfwm4-dbg_4.8.3-2_i386 + xgalaga_2.1.1.0-4_i386 + xgalaga++_0.8.3-1_i386 + xgammon_0.99.1128-3_i386 + xgnokii_0.6.30+dfsg-1+b1_i386 + xgraph_12.1-16_i386 + xicc_0.2-3_i386 + xindy_2.4-1.1_i386 + xine-console_0.99.7-1_i386 + xine-dbg_0.99.7-1_i386 + xine-plugin_1.0.2-4_i386 + xine-ui_0.99.7-1_i386 + xineliboutput-fbfe_1.0.7+cvs20120609.1902-1_i386 + xineliboutput-sxfe_1.0.7+cvs20120609.1902-1_i386 + xinetd_1:2.3.14-7.1+deb7u1_i386 + xinit_1.3.2-1_i386 + xinput_1.6.0-1_i386 + xinv3d_1.3.6-6_i386 + xiphos_3.1.5+dfsg-1+b2_i386 + xiphos-dbg_3.1.5+dfsg-1+b2_i386 + xipmsg_0.8088-2.1_i386 + xiterm+thai_1.10-2_i386 + xjadeo_0.6.4-1_i386 + xjdic_24-8_i386 + xjed_1:0.99.19-2.1_i386 + xjig_2.4-13+b2_i386 + xjobs_20110730-1_i386 + xjokes_1.0-13_i386 + xjump_2.7.5-6.1_i386 + xkbind_2010.05.20-1_i386 + xkbset_0.5-5.1_i386 + xkeycaps_2.47-4_i386 + xl2tpd_1.3.1+dfsg-1_i386 + xlassie_1.8-21_i386 + xlbiff_4.1-7_i386 + xless_1.7-14.1_i386 + xletters_1.1.1-4.1_i386 + xlhtml_0.5.1-6_i386 + xli_1.17.0+20061110-4_i386 + xloadimage_4.1-19_i386 + xlog_2.0.5-2_i386 + xmabacus_7.6.8-3_i386 + xmacro_0.3pre-20000911-6_i386 + xmahjongg_3.7-3_i386 + xmail_1.27-1.1+b1_i386 + xmakemol_5.16-6_i386 + xmakemol-gl_5.16-6_i386 + xmaxima_5.27.0-3_i386 + xmbmon_2.05-6_i386 + xmds_1.6.6-7_i386 + xmedcon_0.10.7-1+b2_i386 + xmem_1.20-27.2_i386 + xmhtml1_1.1.7-18_i386 + xmhtml1-dev_1.1.7-18_i386 + xmille_2.0-13_i386 + xmix_2.1-6_i386 + xml2_0.4-3.1_i386 + xmlcopyeditor_1.2.0.6-2+b1_i386 + xmlcopyeditor-dbg_1.2.0.6-2+b1_i386 + xmldiff_0.6.10-2+b1_i386 + xmlindent_0.2.17-2_i386 + xmlroff_0.6.2-1.1_i386 + xmlrpc-api-utils_1.16.33-3.2_i386 + xmlsec1_1.2.18-2_i386 + xmlstarlet_1.3.1-3_i386 + xmlto_0.0.25-2_i386 + xmms2_0.8+dfsg-4_i386 + xmms2-client-avahi_0.8+dfsg-4_i386 + xmms2-client-cli_0.8+dfsg-4_i386 + xmms2-client-medialib-updater_0.8+dfsg-4_i386 + xmms2-client-nycli_0.8+dfsg-4_i386 + xmms2-core_0.8+dfsg-4_i386 + xmms2-plugin-airplay_0.8+dfsg-4_i386 + xmms2-plugin-all_0.8+dfsg-4_i386 + xmms2-plugin-alsa_0.8+dfsg-4_i386 + xmms2-plugin-ao_0.8+dfsg-4_i386 + xmms2-plugin-apefile_0.8+dfsg-4_i386 + xmms2-plugin-asf_0.8+dfsg-4_i386 + xmms2-plugin-asx_0.8+dfsg-4_i386 + xmms2-plugin-avcodec_0.8+dfsg-4_i386 + xmms2-plugin-cdda_0.8+dfsg-4_i386 + xmms2-plugin-cue_0.8+dfsg-4_i386 + xmms2-plugin-curl_0.8+dfsg-4_i386 + xmms2-plugin-daap_0.8+dfsg-4_i386 + xmms2-plugin-faad_0.8+dfsg-4_i386 + xmms2-plugin-flac_0.8+dfsg-4_i386 + xmms2-plugin-flv_0.8+dfsg-4_i386 + xmms2-plugin-gme_0.8+dfsg-4_i386 + xmms2-plugin-gvfs_0.8+dfsg-4_i386 + xmms2-plugin-html_0.8+dfsg-4_i386 + xmms2-plugin-ices_0.8+dfsg-4_i386 + xmms2-plugin-icymetaint_0.8+dfsg-4_i386 + xmms2-plugin-id3v2_0.8+dfsg-4_i386 + xmms2-plugin-jack_0.8+dfsg-4_i386 + xmms2-plugin-karaoke_0.8+dfsg-4_i386 + xmms2-plugin-m3u_0.8+dfsg-4_i386 + xmms2-plugin-mad_0.8+dfsg-4_i386 + xmms2-plugin-mms_0.8+dfsg-4_i386 + xmms2-plugin-modplug_0.8+dfsg-4_i386 + xmms2-plugin-mp4_0.8+dfsg-4_i386 + xmms2-plugin-mpg123_0.8+dfsg-4_i386 + xmms2-plugin-musepack_0.8+dfsg-4_i386 + xmms2-plugin-normalize_0.8+dfsg-4_i386 + xmms2-plugin-ofa_0.8+dfsg-4_i386 + xmms2-plugin-oss_0.8+dfsg-4_i386 + xmms2-plugin-pls_0.8+dfsg-4_i386 + xmms2-plugin-pulse_0.8+dfsg-4_i386 + xmms2-plugin-rss_0.8+dfsg-4_i386 + xmms2-plugin-sid_0.8+dfsg-4_i386 + xmms2-plugin-smb_0.8+dfsg-4_i386 + xmms2-plugin-sndfile_0.8+dfsg-4_i386 + xmms2-plugin-speex_0.8+dfsg-4_i386 + xmms2-plugin-tta_0.8+dfsg-4_i386 + xmms2-plugin-vocoder_0.8+dfsg-4_i386 + xmms2-plugin-vorbis_0.8+dfsg-4_i386 + xmms2-plugin-wavpack_0.8+dfsg-4_i386 + xmms2-plugin-xml_0.8+dfsg-4_i386 + xmms2-plugin-xspf_0.8+dfsg-4_i386 + xmms2-scrobbler_0.4.0-3_i386 + xmobar_0.14-4_i386 + xmonad_0.10-4+b2_i386 + xmorph_1:20090926_i386 + xmotd_1.17.3b-5_i386 + xmoto_0.5.10+dfsg-1_i386 + xmount_0.5.0-2_i386 + xmountains_2.9-2_i386 + xmp_3.4.0-1.1_i386 + xmp-audacious_3.4.0-1.1_i386 + xmpi_2.2.3b8-13_i386 + xmpuzzles_7.6.3-1+b1_i386 + xnbd-client_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnbd-server_0.1.0-pre-hg20-e75b93a47722-3_i386 + xnec2c_1:1.4-1_i386 + xnecview_1.35-7.1_i386 + xnest_2:1.12.4-6+deb7u2_i386 + xneur_0.15.0-1.1_i386 + xneur-dbg_0.15.0-1.1_i386 + xonix_1.4-29_i386 + xoo_0.8-1.1_i386 + xorg_1:7.7+3~deb7u1_i386 + xorp_1.8.5-1.1_i386 + xorriso_1.2.2-2_i386 + xoscope_2.0-3.2_i386 + xosd-bin_2.2.14-2_i386 + xosview_1.9.3-3_i386 + xotcl_1.6.7-2_i386 + xotcl-dev_1.6.7-2_i386 + xotcl-shells_1.6.7-2_i386 + xournal_0.4.6~pre20110721-1+b1_i386 + xpa-tools_2.1.14-2_i386 + xpad_4.1-1_i386 + xpaint_2.9.1.4-3+b2_i386 + xpaint-dev_2.9.1.4-3+b2_i386 + xpat2_1.07-18_i386 + xpdf_3.03-10_i386 + xpenguins_2.2-8_i386 + xphoon_20000613+0-1_i386 + xpilot-ng-client-sdl_1:4.7.3-1.4_i386 + xpilot-ng-client-x11_1:4.7.3-1.4_i386 + xpilot-ng-server_1:4.7.3-1.4_i386 + xpilot-ng-utils_1:4.7.3-1.4_i386 + xplanet_1.2.1-4.1+b1_i386 + xplot_1.19-9_i386 + xplot-xplot.org_0.90.7.1-2_i386 + xpmutils_1:3.5.10-1_i386 + xpp_1.5-cvs20050828-1.2_i386 + xppaut_6.11b+1.dfsg-1_i386 + xpra_0.3.11+dfsg-1_i386 + xprintidle_0.2-5_i386 + xprobe_0.3-1.1_i386 + xpuzzles_7.6.3-1+b1_i386 + xqf_1.0.5-2_i386 + xqilla_2.3.0-1_i386 + xracer_0.96.9.1-6_i386 + xrdp_0.5.0-2_i386 + xresprobe_0.4.23debian1-1_i386 + xrestop_0.4-7_i386 + xringd_1.20-25.2_i386 + xrootconsole_1:0.6-2_i386 + xsane_0.998-3+b1_i386 + xscavenger_1.4.4-8_i386 + xscorch_0.2.1-1_i386 + xscreensaver_5.15-3_i386 + xscreensaver-data_5.15-3_i386 + xscreensaver-data-extra_5.15-3_i386 + xscreensaver-gl_5.15-3_i386 + xscreensaver-gl-extra_5.15-3_i386 + xscreensaver-screensaver-bsod_5.15-3_i386 + xscreensaver-screensaver-webcollage_5.15-3_i386 + xsdcxx_3.3.0.1-1.3_i386 + xsel_1.2.0-1_i386 + xsensors_0.70-2_i386 + xserver-xephyr_2:1.12.4-6+deb7u2_i386 + xserver-xfbdev_2:1.12.4-6+deb7u2_i386 + xserver-xorg_1:7.7+3~deb7u1_i386 + xserver-xorg-core_2:1.12.4-6+deb7u2_i386 + xserver-xorg-core-dbg_2:1.12.4-6+deb7u2_i386 + xserver-xorg-dev_2:1.12.4-6+deb7u2_i386 + xserver-xorg-input-acecad_1:1.5.0-1+b2_i386 + xserver-xorg-input-aiptek_1:1.4.1-1+b2_i386 + xserver-xorg-input-all_1:7.7+3~deb7u1_i386 + xserver-xorg-input-elographics_1:1.4.1-1_i386 + xserver-xorg-input-evdev_1:2.7.0-1+b1_i386 + xserver-xorg-input-joystick_1:1.6.1-1+b1_i386 + xserver-xorg-input-kbd_1:1.6.1-1+b1_i386 + xserver-xorg-input-mouse_1:1.7.2-3_i386 + xserver-xorg-input-mtrack_0.2.0-3_i386 + xserver-xorg-input-multitouch_1.0~rc2+git20110312-2+b1_i386 + xserver-xorg-input-mutouch_1:1.3.0-1+b2_i386 + xserver-xorg-input-synaptics_1.6.2-2_i386 + xserver-xorg-input-vmmouse_1:12.9.0-1_i386 + xserver-xorg-input-void_1:1.4.0-1+b1_i386 + xserver-xorg-input-wacom_0.15.0+20120515-2_i386 + xserver-xorg-video-all_1:7.7+3~deb7u1_i386 + xserver-xorg-video-apm_1:1.2.3-3_i386 + xserver-xorg-video-ark_1:0.7.4-1+b1_i386 + xserver-xorg-video-ati_1:6.14.4-8_i386 + xserver-xorg-video-ati-dbg_1:6.14.4-8_i386 + xserver-xorg-video-chips_1:1.2.4-2_i386 + xserver-xorg-video-cirrus_1:1.4.0-2_i386 + xserver-xorg-video-dummy_1:0.3.5-2+b1_i386 + xserver-xorg-video-fbdev_1:0.4.2-4+b3_i386 + xserver-xorg-video-geode_2.11.13-3_i386 + xserver-xorg-video-geode-dbg_2.11.13-3_i386 + xserver-xorg-video-glamo_0.0.0+20100630.git16af3c00-3.1_i386 + xserver-xorg-video-glide_1.2.0-1+b1_i386 + xserver-xorg-video-glint_1:1.2.7-1+b1_i386 + xserver-xorg-video-i128_1:1.3.5-1+b1_i386 + xserver-xorg-video-i740_1:1.3.2-4+b3_i386 + xserver-xorg-video-intel_2:2.19.0-6_i386 + xserver-xorg-video-intel-dbg_2:2.19.0-6_i386 + xserver-xorg-video-mach64_6.9.1-2_i386 + xserver-xorg-video-mach64-dbg_6.9.1-2_i386 + xserver-xorg-video-mga_1:1.5.0-3_i386 + xserver-xorg-video-modesetting_0.3.0-1_i386 + xserver-xorg-video-modesetting-dbg_0.3.0-1_i386 + xserver-xorg-video-neomagic_1:1.2.6-1_i386 + xserver-xorg-video-nouveau_1:1.0.1-5_i386 + xserver-xorg-video-nouveau-dbg_1:1.0.1-5_i386 + xserver-xorg-video-openchrome_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-openchrome-dbg_1:0.2.906-2+deb7u1_i386 + xserver-xorg-video-qxl_0.0.17-2+b1_i386 + xserver-xorg-video-qxl-dbg_0.0.17-2+b1_i386 + xserver-xorg-video-r128_6.8.2-1_i386 + xserver-xorg-video-r128-dbg_6.8.2-1_i386 + xserver-xorg-video-radeon_1:6.14.4-8_i386 + xserver-xorg-video-radeon-dbg_1:6.14.4-8_i386 + xserver-xorg-video-rendition_1:4.2.4-3_i386 + xserver-xorg-video-s3_1:0.6.3-5_i386 + xserver-xorg-video-s3virge_1:1.10.4-5_i386 + xserver-xorg-video-savage_1:2.3.4-1_i386 + xserver-xorg-video-siliconmotion_1:1.7.6-1_i386 + xserver-xorg-video-sis_1:0.10.4-1_i386 + xserver-xorg-video-sisusb_1:0.9.4-3_i386 + xserver-xorg-video-tdfx_1:1.4.4-1_i386 + xserver-xorg-video-tga_1:1.2.1-4+b3_i386 + xserver-xorg-video-trident_1:1.3.5-1_i386 + xserver-xorg-video-tseng_1:1.2.4-3_i386 + xserver-xorg-video-vesa_1:2.3.1-1+b1_i386 + xserver-xorg-video-vmware_1:12.0.2-1+b1_i386 + xserver-xorg-video-voodoo_1:1.2.4-2+b3_i386 + xsettings-kde_0.9-2_i386 + xshisen_1:1.51-3.3_i386 + xshogi_1.3.2-9_i386 + xskat_4.0-5_i386 + xsltproc_1.1.26-14.1_i386 + xsmc-calc_1.0.0-6.1_i386 + xsok_1.02-17_i386 + xsol_0.31-9_i386 + xsoldier_1:1.8-2_i386 + xstarfish_1.1-11_i386 + xstow_1.0.0-2_i386 + xsunpinyin_2.0.3-4_i386 + xsynth-dssi_0.9.4-2_i386 + xsysinfo_1.7-9_i386 + xsystem35_1.7.3-pre5-5_i386 + xtables-addons-common_1.42-2+b1_i386 + xtail_2.1-5_i386 + xteddy_2.2-2_i386 + xtel_3.3.0-14_i386 + xtell_2.10.7_i386 + xterm_278-4_i386 + xtermcontrol_2.10-1_i386 + xtermset_0.5.2-5_i386 + xtide_2.11-1_i386 + xtightvncviewer_1.3.9-6.4_i386 + xtrace_1.3.1-1_i386 + xtrkcad_1:4.0.2-2+b1_i386 + xtrlock_2.2_i386 + xtron_1.1a-14_i386 + xttitle_1.0-5_i386 + xtux_0.2.030306-12_i386 + xtux-client_0.2.030306-12_i386 + xtux-server_0.2.030306-12_i386 + xtv_1.1-12_i386 + xul-ext-zarafa-drag-n-drop_1.2-1_i386 + xulrunner-10.0_10.0.12esr-1_i386 + xulrunner-10.0-dbg_10.0.12esr-1_i386 + xulrunner-17.0_17.0.10esr-1~deb7u1_i386 + xulrunner-17.0-dbg_17.0.10esr-1~deb7u1_i386 + xulrunner-dev_17.0.10esr-1~deb7u1_i386 + xutils-dev_1:7.7~1_i386 + xvfb_2:1.12.4-6+deb7u2_i386 + xvier_1.0-7.5_i386 + xview-clients_3.2p1.4-28.1_i386 + xview-examples_3.2p1.4-28.1_i386 + xviewg_3.2p1.4-28.1_i386 + xviewg-dev_3.2p1.4-28.1_i386 + xvile_9.8g-2_i386 + xvkbd_3.0-1_i386 + xvnc4viewer_4.1.1+X4.3.0-37.1_i386 + xvt_2.1-20.1_i386 + xwatch_2.11-15_i386 + xwax_0.9-2_i386 + xwelltris_1.0.1-14_i386 + xwit_3.4-14_i386 + xwpe_1.5.30a-2.1_i386 + xwrits_2.21-6.1_i386 + xxgdb_1.12-17_i386 + xxkb_1.11-2.1_i386 + xxxterm_1:1.11.3-1_i386 + xye_0.12.1+dfsg-4_i386 + xymon_4.3.0~beta2.dfsg-9.1_i386 + xymon-client_4.3.0~beta2.dfsg-9.1_i386 + xyscan_3.31-3_i386 + xz-utils_5.1.1alpha+20120614-2_i386 + xzdec_5.1.1alpha+20120614-2_i386 + xzgv_0.9+svn40-1_i386 + xzip_1:1.8.2-3_i386 + xzoom_0.3-23_i386 + yabause-gtk_0.9.11.1-1_i386 + yabause-qt_0.9.11.1-1_i386 + yacas_1.3.2-1_i386 + yacpi_3.0-2_i386 + yade_0.80.1-2_i386 + yafaray_0.1.2+really0.1.2~beta5-2_i386 + yafc_1.1.3-2_i386 + yagf_0.9.1-3_i386 + yagiuda_1.19-8_i386 + yajl-tools_2.0.4-2_i386 + yakuake_2.9.8-1_i386 + yamdi_1.4-2_i386 + yap_5.1.3-6_i386 + yapet_0.8~pre2-2_i386 + yardradius_1.1.2-4_i386 + yash_2.30-2_i386 + yaskkserv_0.5.2-3_i386 + yasm_1.1.0-1_i386 + yasnippet_0.6.1c-1_i386 + yasr_0.6.9-3_i386 + yate_4.1.0-1~dfsg-3_i386 + yate-alsa_4.1.0-1~dfsg-3_i386 + yate-core_4.1.0-1~dfsg-3_i386 + yate-dahdi_4.1.0-1~dfsg-3_i386 + yate-dev_4.1.0-1~dfsg-3_i386 + yate-mysql_4.1.0-1~dfsg-3_i386 + yate-pgsql_4.1.0-1~dfsg-3_i386 + yate-qt4_4.1.0-1~dfsg-3_i386 + yate-scripts_4.1.0-1~dfsg-3_i386 + yate-sctp_4.1.0-1~dfsg-3_i386 + yatm_0.6-1+b2_i386 + yauap_0.2.4-3_i386 + yauap-dbg_0.2.4-3_i386 + yaz_4.2.30-2_i386 + yaz-icu_4.2.30-2_i386 + yaz-illclient_4.2.30-2_i386 + yc-el_5.0.0-1_i386 + yeahconsole_0.3.4-2.1_i386 + yelp_3.4.2-1+b1_i386 + yersinia_0.7.1-1.1_i386 + yesod_1.0.1.6-2+b3_i386 + yforth_0.1beta-23_i386 + ygraph_0.16~cvs20090218-1.1+b1_i386 + yics_0.1.2-3_i386 + yiyantang_0.7.0-3.1_i386 + yodl_3.00.0-6_i386 + yorick_2.2.02+dfsg-6_i386 + yorick-av_0.0.1-2_i386 + yorick-curses_0.1-6_i386 + yorick-dbg_2.2.02+dfsg-6_i386 + yorick-dev_2.2.02+dfsg-6_i386 + yorick-full_2.2.02+dfsg-6_i386 + yorick-gl_1.1+cvs20070922+dfsg-6_i386 + yorick-gyoto_0.0.3-5_i386 + yorick-hdf5_0.8.0-4_i386 + yorick-imutil_0.5.7-3_i386 + yorick-ml4_0.6.0-3_i386 + yorick-mpeg_0.1-2_i386 + yorick-mpy-mpich2_2.2.02+dfsg-6_i386 + yorick-mpy-openmpi_2.2.02+dfsg-6_i386 + yorick-optimpack_1.3.2+dfsg-1_i386 + yorick-soy_1.4.0-3_i386 + yorick-svipc_0.14-2_i386 + yorick-yao_4.9.1-2_i386 + yorick-yeti_6.3.2-3_i386 + yorick-yeti-fftw_6.3.2-3_i386 + yorick-yeti-gsl_6.3.2-3_i386 + yorick-yeti-regex_6.3.2-3_i386 + yorick-yeti-tiff_6.3.2-3_i386 + yorick-z_1.2.0+cvs20080115-5_i386 + yoshimi_0.060.12-2_i386 + yoshimi-dbg_0.060.12-2_i386 + ytalk_3.3.0-5_i386 + ytree_1.94-1.1_i386 + yubikey-personalization_1.7.0-1_i386 + yubikey-personalization-gui_3.0.6-1_i386 + yubikey-server-c_0.5-1+b1_i386 + yubiserver_0.2-2_i386 + yudit_2.8.1-4_i386 + z80asm_1.8-1_i386 + z80dasm_1.1.3-1_i386 + z8530-utils2_3.0-1-6.1_i386 + z88_13.0.0+dfsg2-3_i386 + z88dk_1.8.ds1-10_i386 + z88dk-bin_1.8.ds1-10_i386 + zanshin_0.2.1-1+b1_i386 + zapping_0.10~cvs6-8_i386 + zapping-dbg_0.10~cvs6-8_i386 + zatacka_0.1.8-2_i386 + zathura_0.1.2-4_i386 + zathura-djvu_0.1-1_i386 + zathura-ps_0.1-1_i386 + zaz_1.0.0~dfsg1-1_i386 + zaz-dbg_1.0.0~dfsg1-1_i386 + zbar-dbg_0.10+doc-8_i386 + zbar-tools_0.10+doc-8_i386 + zeitgeist-core_0.9.0.1-1_i386 + zeitgeist-datahub_0.8.2-1_i386 + zenity_3.4.0-2_i386 + zenmap_6.00-0.3+deb7u1_i386 + zephyr-clients_3.0.2-2_i386 + zephyr-server_3.0.2-2_i386 + zephyr-server-krb5_3.0.2-2_i386 + zerofree_1.0.2-1_i386 + zfs-fuse_0.7.0-8_i386 + zftp_20061220+dfsg3-2_i386 + zgv_5.9-4+b1_i386 + zh-autoconvert_0.3.16-3_i386 + zhcon_1:0.2.6-10_i386 + zile_2.3.21-1_i386 + zimpl_3.2.0+dfsg-2_i386 + zinnia-utils_0.06-1+b1_i386 + zip_3.0-6_i386 + zipcmp_0.10.1-1.1_i386 + zipmerge_0.10.1-1.1_i386 + zipper.app_1.3-2.1_i386 + ziproxy_3.2.0-2_i386 + ziptorrent_0.10.1-1.1_i386 + zita-ajbridge_0.2.2-1_i386 + zita-alsa-pcmi-utils_0.2.0-1_i386 + zita-at1_0.2.3-2_i386 + zita-lrx_0.1.0-1_i386 + zita-resampler_1.1.0-3_i386 + zita-resampler-dbg_1.1.0-3_i386 + zita-rev1_0.2.1-2_i386 + zivot_20013101-3+b1_i386 + zlib-bin_1:1.2.7.dfsg-13_i386 + zlib-gst_3.2.4-2_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + zlib1g-dbg_1:1.2.7.dfsg-13_i386 + zlib1g-dev_1:1.2.7.dfsg-13_i386 + zlibc_0.9k-4.1_i386 + zmakebas_1.2-1.1_i386 + znc_0.206-2_i386 + znc-dbg_0.206-2_i386 + znc-dev_0.206-2_i386 + znc-extra_0.206-2_i386 + znc-perl_0.206-2_i386 + znc-python_0.206-2_i386 + znc-tcl_0.206-2_i386 + zoem_11-166-1_i386 + zomg_0.5.14-2_i386 + zoneminder_1.25.0-4_i386 + zoo_2.10-27_i386 + zookeeper-bin_3.3.5+dfsg1-2_i386 + zope2.12_2.12.26-1_i386 + zorp_3.9.5-4_i386 + zorp-dbg_3.9.5-4_i386 + zorp-modules_3.9.5-4_i386 + zorp-modules-dbg_3.9.5-4_i386 + zp_1.0-1_i386 + zpaq_1.10-1_i386 + zpspell_0.4.3-4.1_i386 + zsh_4.3.17-1_i386 + zsh-beta_4.3.17-dev-0+20120621-1_i386 + zsh-dbg_4.3.17-1_i386 + zsh-dev_4.3.17-1_i386 + zsh-static_4.3.17-1_i386 + zsnes_1.510+bz2-5_i386 + zssh_1.5c.debian.1-3.1_i386 + zsync_0.6.2-1_i386 + zutils_0.9-6_i386 + zutils-dbg_0.9-6_i386 + zvbi_0.2.33-6_i386 + zynadd_1+git.20100609+dfsg0-2_i386 + zynaddsubfx_2.4.0-2_i386 + zynjacku_6-4_i386 + zziplib-bin_0.13.56-1.1_i386 + zzuf_0.13.svn20100215-4_i386 + init-system-helpers_1.11~bpo70.1_source + libestr_0.1.9-1~bpo70+1_source + rsyslog_7.4.4-1~bpo70+1_source diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot1Test_gold new file mode 100644 index 00000000..416a0dcf --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot1Test_gold @@ -0,0 +1,666 @@ +Name: snap1 +Created At: 2014-02-27 13:00:51 MSK +Description: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +Number of packages: 661 +Packages: + abs-guide_6.5-1_all + album_4.06-2_all + album-data_4.05-2_all + alien-arena-data_7.53-1_all + amoeba-data_1.1-6_all + assaultcube-data_1.1.0.4+repack1-2.1~deb7u1_all + asterisk-prompt-es_1.4-1_all + atmel-firmware_1.3-4_all + autodocktools_1.5.6~rc3~cvs.20120206-1_all + automake1.9-doc_1.9.6-1_all + bison-doc_1:2.5-1_all + bluez-firmware_1.2-3_all + broadcom-sta-common_5.100.82.112-8_all + broadcom-sta-dkms_5.100.82.112-8_all + broadcom-sta-source_5.100.82.112-8_all + cclib-data_1.0.1-3_all + celestia-common-nonfree_1.6.1-1_all + context-doc-nonfree_2012.06.27-2_all + context-nonfree_2007.03.22-1_all + coq-doc_8.3pl4-1_all + coq-doc-html_8.3pl4-1_all + coq-doc-pdf_8.3pl4-1_all + cpp-4.4-doc_4.4.7-3_all + cpp-4.6-doc_4.6.3-2_all + cpp-4.7-doc_4.7.2-2_all + crash-whitepaper_1.0-1.1_all + cuneiform-common_1.1.0+dfsg-4_all + dahdi-firmware-nonfree_2.6.1-1_all + doc-rfc_20120225-2_all + doc-rfc-experimental_20120225-2_all + doc-rfc-fyi-bcp_20120225-2_all + doc-rfc-informational_20120225-2_all + doc-rfc-misc_20120225-2_all + doc-rfc-old-std_20120225-2_all + doc-rfc-others_20120225-2_all + doc-rfc-std_20120225-2_all + doc-rfc-std-proposed_20120225-2_all + doom-wad-shareware_1.9.fixed-2_all + eagle-data_5.12.0-3_all + ebook-dev-alp_200407-1_all + elmer-doc_2011.09.06-1_all + emacs23-common-non-dfsg_23.4+1-1_all + emacs24-common-non-dfsg_24.1+1-1_all + etoys_4.0.2340-1_all + etoys-doc_4.0.2340-1_all + festlex-oald_1.4.0-3.1_all + festvox-ellpc11k_1.4.0-3_all + firmware-atheros_0.36+wheezy.1_all + firmware-bnx2_0.36+wheezy.1_all + firmware-bnx2x_0.36+wheezy.1_all + firmware-brcm80211_0.36+wheezy.1_all + firmware-intelwimax_0.36+wheezy.1_all + firmware-ipw2x00_0.36+wheezy.1_all + firmware-ivtv_0.36+wheezy.1_all + firmware-iwlwifi_0.36+wheezy.1_all + firmware-libertas_0.36+wheezy.1_all + firmware-linux_0.36+wheezy.1_all + firmware-linux-nonfree_0.36+wheezy.1_all + firmware-myricom_0.36+wheezy.1_all + firmware-netxen_0.36+wheezy.1_all + firmware-qlogic_0.36+wheezy.1_all + firmware-ralink_0.36+wheezy.1_all + firmware-realtek_0.36+wheezy.1_all + foiltex_2.1.4b-3_all + fonts-ipafont-nonfree-jisx0208_00103-19_all + fonts-ipafont-nonfree-uigothic_00203-21_all + fonts-larabie-deco_1:20011216-4_all + fonts-larabie-straight_1:20011216-4_all + fonts-larabie-uncommon_1:20011216-4_all + fonts-mikachan_9.1-8_all + fonts-moe-standard-kai_20120530-1_all + fonts-moe-standard-song_20120530-1_all + frogatto-data_1.2+dfsg-1_all + fsl_4.1.9-7_all + fsl-doc-4.1_4.1.9-7_all + gawk-doc_4.0.1+ds-1_all + gcc-4.4-doc_4.4.7-3_all + gcc-4.6-doc_4.6.3-2_all + gcc-4.7-doc_4.7.2-2_all + gcc-doc-base_4.7.2-2_all + gccgo-4.6-doc_4.6.3-2_all + gccgo-4.7-doc_4.7.2-2_all + gcj-4.6-doc_4.6.3-2_all + gcj-4.7-doc_4.7.2-2_all + gdb-doc_7.4.1-2_all + gfortran-4.4-doc_4.4.7-3_all + gfortran-4.6-doc_4.6.3-2_all + gfortran-4.7-doc_4.7.2-2_all + glibc-doc-reference_2.13-1_all + gliese_3.0.95-2_all + gmp-doc_5.0.5-1_all + gnat-4.4-doc_4.4.7-3_all + gnat-4.6-doc_4.6.3-2_all + gsfonts-other_6.0-4_all + gsl-doc-info_1.15-1_all + gsl-doc-pdf_1.15-1_all + gsl-ref-html_1.15-1_all + gsl-ref-psdoc_1.15-1_all + guile-1.8-doc-non-dfsg_1.8.8+1-1.1_all + hevea-doc_1.10-3_all + hijra-applet_0.2.1-1_all + human-icon-theme_0.28.debian-3.3_all + hwb_1:040412-3_all + icc-profiles_2.0.1-1_all + igv_2.0.30-1_all + jhove_1.6+dfsg-1_all + kstars-data-extra-tycho2_1.1r1-9_all + libcolt-java_1.2.0~nojar-2_all + libcolt-java-doc_1.2.0~nojar-2_all + libcore++-demo_1.7-12_all + libcore++-doc_1.7-12_all + libcupti-doc_4.2.9-2_all + libcwd-doc_1.0.4-1_all + libertas-firmware_9.70.7.p0.0-2_all + libf2j-java_0.8.1-2_all + libgeotiff-epsg_1.3.0-1_all + libjabsorb-java_1.3-2_all + libjai-core-java-doc_1.1.4-3_all + libjai-imageio-core-java-doc_1.2-3_all + libmail-sender-perl_0.8.16-2_all + libstar-parser-perl_0.59-3_all + libttspico-data_1.0+git20110131-2_all + libvideo-info-perl_0.993-2_all + libworldwind-java_0.5.0-10_all + lugaru-data_0~20110520.1+hge4354-1_all + make-doc_3.81-5.1_all + manpages-posix_2.16-1_all + manpages-posix-dev_2.16-1_all + mbrola-af1_0.0.20040426-2_all + mbrola-br1_2.021-1_all + mbrola-br3_2.021-2_all + mbrola-cr1_0.0.19981028-2_all + mbrola-cz2_0.2-2_all + mbrola-de4_0.0.20020812-1_all + mbrola-de5_1.0-1_all + mbrola-de6_0.0.20021125-2_all + mbrola-de7_0.0.20030404-2_all + mbrola-ee1_0.0.20020407-1_all + mbrola-en1_19980910-2_all + mbrola-es1_0.0.19980610-2_all + mbrola-es2_2.069-1_all + mbrola-fr1_2.050-1_all + mbrola-fr4_0.0.19990521-2_all + mbrola-gr1_19990610-1_all + mbrola-gr2_0.0.20010521-2_all + mbrola-hu1_1.002-2_all + mbrola-id1_1-2_all + mbrola-it3_0.1-2_all + mbrola-it4_0.1-2_all + mbrola-la1_0.0.20050615-2_all + mbrola-mx2_0.1-1_all + mbrola-nl2_0.5-2_all + mbrola-pl1_0.1-2_all + mbrola-pt1_1.0-2_all + mbrola-ro1_1.00-2_all + mbrola-sw1_1.00-2_all + mbrola-sw2_1.0-2_all + mbrola-us1_0.3-2_all + mbrola-us2_0.1-2_all + mbrola-us3_0.1-1_all + mbrola-vz1_2-1_all + mess-data_0.146-4_all + mgltools-cadd_1.5.6~rc3~cvs.20120206-1_all + mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all + mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all + mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all + mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv_1.5.6~rc3~cvs.20120206-1_all + mgltools-pmv-test_1.5.6~rc3~cvs.20120206-1_all + mgltools-pyautodock_1.5.6~rc3~cvs.20120206-1_all + mgltools-pybabel_1.5.6~rc3~cvs.20120206-1_all + mgltools-scenario2_1.5.6~rc3~cvs.20120206-1_all + mgltools-support_1.5.6~rc3~cvs.20120206-1_all + mgltools-symserv_1.5.6~rc3~cvs.20120206-1_all + mgltools-viewerframework_1.5.6~rc3~cvs.20120206-2_all + mgltools-vision_1.5.6~rc3~cvs.20120601-1_all + mgltools-visionlibraries_1.5.6~rc3~cvs.20120601-1_all + mgltools-volume_1.5.6~rc3~cvs.20120206-1_all + mgltools-webservices_1.5.6~rc3~cvs.20120206-1_all + midisport-firmware_1.2-4_all + mpi-specs_20040719-2_all + ngspice-doc_24-1_all + nikto_1:2.1.4-2_all + noshell_4.0.11+notdfsg1-5_all + notion-dev_3+2012042300-1_all + nvidia-cg-doc_3.1.0013-1_all + nvidia-cuda-doc_4.2.9-2_all + ocaml-book-en_1.0-5_all + ocaml-book-fr_1.0-5_all + ocaml-doc_3.12-2_all + ooohg_09.12a-8_all + openttd-opensfx_0.2.3-3_all + os8_2.1-4_all + othman_0.2.7-1_all + out-of-order_1.0-2_all + paml-doc_4.5-1_all + parmetis-doc_3.1.1-4_all + phy-spread_1.0.3-1_all + phylip-doc_1:3.69-1_all + picon-domains_2012.05.09-1_all + picon-misc_2010.01.02-1_all + picon-news_2010.01.02-1_all + picon-unknown_2010.01.02-1_all + picon-usenix_1995.04.13-8_all + picon-users_2012.05.14-1_all + picon-weather_2010.01.02-1_all + ptex-jtex_1.7+1-13_all + python-hijra_0.2.1-1_all + python-okasha_0.2.4-1_all + python-okasha-examples_0.2.4-1_all + python-othman_0.2.7-1_all + redeclipse-data_1.2-1_all + rubybook_0.2.1-1_all + sauerbraten-data_0.0.20100728+repack-1_all + scribus-doc_1.4.0+r17300-1_all + scribus-ng-doc_1.4.0+r17300-1_all + selfhtml_8.1.2-1_all + sgb-doc_1:20090810-1_all + shapetools-tutorial_1.3-3.1_all + sisu-markup-samples_3.0.1-1_all + sl-modem-source_2.9.11~20110321-8+deb7u1_all + snmp-mibs-downloader_1.1_all + spectrum-roms_20081224-3_all + spellcast-doc_1.5_all + stardict-english-czech_20120601-1_all + stardict-german-czech_20120201-1_all + t1-xfree86-nonfree_4.2.1-3.1_all + tads3-common_1:0.13-2_all + tangerine-icon-theme_0.26.debian-3_all + tar-doc_1.26-2_all + texinfo-doc-nonfree_4.13a-1_all + thawab_3.0.13-1_all + ttf-ipafont-jisx0208_00103-19_all + ttf-ipafont-uigothic_00203-21_all + ttf-kochi-gothic-naga10_20030809-14_all + ttf-kochi-mincho-naga10_20030809-14_all + ttf-larabie-deco_1:20011216-4_all + ttf-larabie-straight_1:20011216-4_all + ttf-larabie-uncommon_1:20011216-4_all + ttf-mikachan_9.1-8_all + ttf-xfree86-nonfree_4.2.1-3.1_all + ttf-xfree86-nonfree-syriac_4.2.1-3.1_all + ttytter_2.1.0-1~deb7u1_all + uqm-content_0.6.0+deb1-6_all + uqm-music_0.6.0+deb1-6_all + uqm-voice_0.6.0+deb1-6_all + virtualbox-guest-additions_4.1.18-1_all + virtualbox-guest-additions-iso_4.1.18-1_all + vmtk_1.0.1-1_all + w3-recs_20110107-1_all + worldwind_0.5.0-10_all + worldwind-doc_0.5.0-10_all + xfonts-naga10_1.1-13.1_all + xfonts-x3270-misc_3.3.10ga4-2_all + xmame-sdl_0.146-5_all + xmame-tools_0.146-4_all + xmame-x_0.146-5_all + xmess-sdl_0.146-4_all + xmess-x_0.146-4_all + xml2rfc_1.36-5_all + xtide-data-nonfree_20100529-1_all + yale_5.0.95-2_all + zangband-data_1:2.7.5pre1-8_all + zd1211-firmware_2.21.0.0-1_all + zekr_1.0.0+repack-7_all + zeroc-ice-manual_3.4.2-1_all + 3270-common_3.3.10ga4-2+b1_amd64 + abyss_1.3.4-3_amd64 + agrep_4.17-9_amd64 + amd-clinfo_1:12-6+point-3_amd64 + amd-libopencl1_1:12-6+point-3_amd64 + amd-opencl-dev_1:12-6+point-3_amd64 + amd-opencl-icd_1:12-6+point-3_amd64 + amd64-microcode_1.20120910-2_amd64 + amiwm_0.20.48-8_amd64 + blimps-examples_3.9-1_amd64 + blimps-utils_3.9-1_amd64 + bsdgames-nonfree_2.17-5_amd64 + bugsx_1.08-12_amd64 + c3270_3.3.10ga4-2+b1_amd64 + clustalw-mpi_0.15-2_amd64 + conserver-client_8.1.18-2.2_amd64 + conserver-server_8.1.18-2.2_amd64 + crafty_23.4-6_amd64 + cufflinks_1.3.0-2_amd64 + cuneiform_1.1.0+dfsg-4_amd64 + dynamips_0.2.7-0.2.8RC2-5.1_amd64 + embassy-phylip_3.69+20110714-1_amd64 + f2j_0.8.1-2_amd64 + fatrat-unpack_1.1.3-2_amd64 + fglrx-atieventsd_1:12-6+point-3_amd64 + fglrx-control_1:12-6+point-3_amd64 + fglrx-driver_1:12-6+point-3_amd64 + fglrx-glx_1:12-6+point-3_amd64 + fglrx-glx-ia32_1:12-6+point-3_amd64 + fglrx-modules-dkms_1:12-6+point-3_amd64 + fglrx-source_1:12-6+point-3_amd64 + frobtads_1:0.13-2_amd64 + fsl-4.1_4.1.9-7_amd64 + gmap_2012-06-12-1_amd64 + intel-microcode_1.20130906.1_amd64 + iozone3_397-2_amd64 + kic_2.4a-1.1_amd64 + libapache2-mod-fastcgi_2.4.7~0910052141-1_amd64 + libblimps3_3.9-1_amd64 + libblimps3-dev_3.9-1_amd64 + libcamlpdf-ocaml-dev_0.5-1+b2_amd64 + libcg_3.1.0013-1_amd64 + libcggl_3.1.0013-1_amd64 + libclamunrar6_0.96.4-1_amd64 + libcore++-dev_1.7-12_amd64 + libcore++1c2_1.7-12_amd64 + libcublas4_4.2.9-2_amd64 + libcuda1_304.88-1+deb7u1_amd64 + libcuda1-ia32_304.88-1+deb7u1_amd64 + libcudart4_4.2.9-2_amd64 + libcufft4_4.2.9-2_amd64 + libcuinj4_4.2.9-2_amd64 + libcuneiform-dev_1.1.0+dfsg-4_amd64 + libcuneiform0_1.1.0+dfsg-4_amd64 + libcupti-dev_4.2.9-2_amd64 + libcupti4_4.2.9-2_amd64 + libcurand4_4.2.9-2_amd64 + libcusparse4_4.2.9-2_amd64 + libcwd_1.0.4-1_amd64 + libfglrx_1:12-6+point-3_amd64 + libfglrx-amdxvba1_1:12-6+point-3_amd64 + libfglrx-ia32_1:12-6+point-3_amd64 + libgl1-fglrx-glx_1:12-6+point-3_amd64 + libgl1-nvidia-alternatives_304.88-1+deb7u1_amd64 + libgl1-nvidia-alternatives-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx_304.88-1+deb7u1_amd64 + libgl1-nvidia-glx-ia32_304.88-1+deb7u1_amd64 + libgl1-nvidia-legacy-173xx-glx_173.14.35-4_amd64 + libgl1-nvidia-legacy-173xx-glx-ia32_173.14.35-4_amd64 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_amd64 + libgl1-nvidia-legacy-71xx-glx-ia32_71.86.15-3_amd64 + libgl1-nvidia-legacy-96xx-glx_96.43.23-3_amd64 + libgl1-nvidia-legacy-96xx-glx-ia32_96.43.23-3_amd64 + libglx-nvidia-alternatives_304.88-1+deb7u1_amd64 + libjai-core-java_1.1.4-3_amd64 + libjai-imageio-core-java_1.2-3_amd64 + libmath-random-perl_0.71-3+b1_amd64 + libmetis-edf-dev_4.1-2-3_amd64 + libmetis-edf4.1_4.1-2-3_amd64 + libmotif-dev_2.3.3-8_amd64 + libmotif4_2.3.3-8_amd64 + libmotif4-dbg_2.3.3-8_amd64 + libnauty-dev_2.4r2-1_amd64 + libnauty1d_2.4r2-1_amd64 + libnpp4_4.2.9-2_amd64 + libnvcuvid1_304.88-1+deb7u1_amd64 + libnvidia-compiler_304.88-1+deb7u1_amd64 + libnvidia-compiler-ia32_304.88-1+deb7u1_amd64 + libnvidia-ml1_304.88-1+deb7u1_amd64 + libparmetis-dev_3.1.1-4_amd64 + libparmetis3.1_3.1.1-4_amd64 + libtet1.4_1.4.3-1_amd64 + libtet1.4-dev_1.4.3-1_amd64 + libtriangle-1.6_1.6-2_amd64 + libtriangle-dev_1.6-2_amd64 + libttspico-dev_1.0+git20110131-2_amd64 + libttspico-utils_1.0+git20110131-2_amd64 + libttspico0_1.0+git20110131-2_amd64 + libvmtk-dev_1.0.1-1_amd64 + libvmtk1.0_1.0.1-1_amd64 + libxvbaw-dev_1:12-6+point-3_amd64 + libxvmcnvidia1_304.88-1+deb7u1_amd64 + madfuload_1.2-4_amd64 + mame_0.146-5_amd64 + mame-tools_0.146-4_amd64 + mbrola_3.01h-6_amd64 + mess_0.146-4_amd64 + metis-edf_4.1-2-3_amd64 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_amd64 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_amd64 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_amd64 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_amd64 + motif-clients_2.3.3-8_amd64 + mssstest_3.0-3_amd64 + nautilus-dropbox_1.4.0-3_amd64 + nauty_2.4r2-1_amd64 + netperf_2.4.4-6.1_amd64 + ngspice_24-1_amd64 + notion_3+2012042300-1_amd64 + nttcp_1.47-13_amd64 + nvidia-alternative_304.88-1+deb7u1_amd64 + nvidia-alternative-legacy-173xx_173.14.35-4_amd64 + nvidia-alternative-legacy-71xx_71.86.15-3_amd64 + nvidia-alternative-legacy-96xx_96.43.23-3_amd64 + nvidia-cg-dev_3.1.0013-1_amd64 + nvidia-cg-toolkit_3.1.0013-1_amd64 + nvidia-cuda-dev_4.2.9-2_amd64 + nvidia-cuda-gdb_4.2.9-2_amd64 + nvidia-cuda-toolkit_4.2.9-2_amd64 + nvidia-detect_304.88-1+deb7u1_amd64 + nvidia-glx_304.88-1+deb7u1_amd64 + nvidia-glx-ia32_304.88-1+deb7u1_amd64 + nvidia-glx-legacy_71.86.15-3_amd64 + nvidia-glx-legacy-173xx_173.14.35-4_amd64 + nvidia-glx-legacy-173xx-ia32_173.14.35-4_amd64 + nvidia-glx-legacy-71xx_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-dev_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-ia32_71.86.15-3_amd64 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_amd64 + nvidia-glx-legacy-96xx_96.43.23-3_amd64 + nvidia-glx-legacy-96xx-ia32_96.43.23-3_amd64 + nvidia-glx-legacy-dev_71.86.15-3_amd64 + nvidia-glx-legacy-ia32_71.86.15-3_amd64 + nvidia-kernel-2.6-amd64_304.88+1_amd64 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_amd64 + nvidia-kernel-amd64_304.88+1_amd64 + nvidia-kernel-dkms_304.88-1+deb7u1_amd64 + nvidia-kernel-legacy-173xx-dkms_173.14.35-4_amd64 + nvidia-kernel-legacy-173xx-source_173.14.35-4_amd64 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_amd64 + nvidia-kernel-legacy-71xx-source_71.86.15-3_amd64 + nvidia-kernel-legacy-96xx-dkms_96.43.23-3_amd64 + nvidia-kernel-legacy-96xx-source_96.43.23-3_amd64 + nvidia-kernel-legacy-source_71.86.15-3_amd64 + nvidia-kernel-source_304.88-1+deb7u1_amd64 + nvidia-libopencl1_304.88-1+deb7u1_amd64 + nvidia-libopencl1-ia32_304.88-1+deb7u1_amd64 + nvidia-opencl-common_304.88-1+deb7u1_amd64 + nvidia-opencl-dev_4.2.9-2_amd64 + nvidia-opencl-icd_304.88-1+deb7u1_amd64 + nvidia-opencl-icd-ia32_304.88-1+deb7u1_amd64 + nvidia-smi_304.88-1+deb7u1_amd64 + nvidia-vdpau-driver_304.88-1+deb7u1_amd64 + nvidia-vdpau-driver-ia32_304.88-1+deb7u1_amd64 + nvidia-visual-profiler_4.2.9-2_amd64 + p7zip-rar_9.20.1~ds.1-3_amd64 + paml_4.5-1_amd64 + parmetis-test_3.1.1-4_amd64 + pgplot5_5.2.2-19_amd64 + phylip_1:3.69-1_amd64 + powder_117-1_amd64 + pptview_8.0-7_amd64 + pr3287_3.3.10ga4-2+b1_amd64 + python-vmtk_1.0.1-1_amd64 + r-cran-maptools_1:0.7-38-1_amd64 + rar_2:4.0.b3-1_amd64 + s3270_3.3.10ga4-2+b1_amd64 + sdlmame_0.146-5_amd64 + sdlmame-tools_0.146-4_amd64 + seaview_1:4.3.3-3_amd64 + seq-gen_1.3.3-1_amd64 + sgb_1:20090810-1_amd64 + sift_4.0.3b-3_amd64 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_amd64 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_amd64 + sparse_0.4.3+20110419-1_amd64 + tads2-dev_1:0.13-2_amd64 + tads3-dev_1:0.13-2_amd64 + tclspice_24-1_amd64 + teamspeak-client_2.0.32-3.1_amd64 + tetgen_1.4.3-1_amd64 + titantools_4.0.11+notdfsg1-5_amd64 + tome_2.3.5-2_amd64 + triangle-bin_1.6-2_amd64 + trn4_4.0-test77-6_amd64 + unace-nonfree_2.5-7_amd64 + unrar_1:4.1.4-1_amd64 + wap-wml-tools_0.0.4-6_amd64 + x3270_3.3.10ga4-2+b1_amd64 + xfractint_20.4.10-2_amd64 + xserver-xorg-video-nvidia_304.88-1+deb7u1_amd64 + xserver-xorg-video-nvidia-legacy-173xx_173.14.35-4_amd64 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_amd64 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-3_amd64 + xsnow_1:1.42-9_amd64 + zangband_1:2.7.5pre1-8_amd64 + 3270-common_3.3.10ga4-2+b1_i386 + amd-clinfo_1:12-6+point-3_i386 + amd-libopencl1_1:12-6+point-3_i386 + amd-opencl-dev_1:12-6+point-3_i386 + amd-opencl-icd_1:12-6+point-3_i386 + amd64-microcode_1.20120910-2_i386 + amiwm_0.20.48-8_i386 + axe_6.1.2-15.1_i386 + bsdgames-nonfree_2.17-5_i386 + bugsx_1.08-12_i386 + c3270_3.3.10ga4-2+b1_i386 + conserver-client_8.1.18-2.2_i386 + conserver-server_8.1.18-2.2_i386 + crafty_23.4-6_i386 + cuneiform_1.1.0+dfsg-4_i386 + dgen_1.23-12_i386 + drdsl_1.2.0-1_i386 + dynamips_0.2.7-0.2.8RC2-5.1_i386 + eagle_5.12.0-3_i386 + f2j_0.8.1-2_i386 + fatrat-unpack_1.1.3-2_i386 + fglrx-atieventsd_1:12-6+point-3_i386 + fglrx-control_1:12-6+point-3_i386 + fglrx-driver_1:12-6+point-3_i386 + fglrx-glx_1:12-6+point-3_i386 + fglrx-modules-dkms_1:12-6+point-3_i386 + fglrx-source_1:12-6+point-3_i386 + fsl-4.1_4.1.9-7_i386 + intel-microcode_1.20130906.1_i386 + iozone3_397-2_i386 + irpas_0.10-4.1_i386 + lgrind_3.67-3_i386 + libapache2-mod-fastcgi_2.4.7~0910052141-1_i386 + libcamlpdf-ocaml-dev_0.5-1+b2_i386 + libcg_3.1.0013-1_i386 + libcggl_3.1.0013-1_i386 + libclamunrar6_0.96.4-1_i386 + libcore++-dev_1.7-12_i386 + libcore++1c2_1.7-12_i386 + libcublas4_4.2.9-2_i386 + libcuda1_304.88-1+deb7u1_i386 + libcudart4_4.2.9-2_i386 + libcufft4_4.2.9-2_i386 + libcuinj4_4.2.9-2_i386 + libcuneiform-dev_1.1.0+dfsg-4_i386 + libcuneiform0_1.1.0+dfsg-4_i386 + libcupti-dev_4.2.9-2_i386 + libcupti4_4.2.9-2_i386 + libcurand4_4.2.9-2_i386 + libcusparse4_4.2.9-2_i386 + libcwd_1.0.4-1_i386 + libfglrx_1:12-6+point-3_i386 + libfglrx-amdxvba1_1:12-6+point-3_i386 + libgl1-fglrx-glx_1:12-6+point-3_i386 + libgl1-nvidia-alternatives_304.88-1+deb7u1_i386 + libgl1-nvidia-glx_304.88-1+deb7u1_i386 + libgl1-nvidia-legacy-173xx-glx_173.14.35-4_i386 + libgl1-nvidia-legacy-71xx-glx_71.86.15-3_i386 + libgl1-nvidia-legacy-96xx-glx_96.43.23-3_i386 + libglx-nvidia-alternatives_304.88-1+deb7u1_i386 + libgpcl-dev_2.32-1_i386 + libgpcl0_2.32-1_i386 + libmath-random-perl_0.71-3+b1_i386 + libmotif-dev_2.3.3-8_i386 + libmotif4_2.3.3-8_i386 + libmotif4-dbg_2.3.3-8_i386 + libnauty-dev_2.4r2-1_i386 + libnauty1d_2.4r2-1_i386 + libnpp4_4.2.9-2_i386 + libnvcuvid1_304.88-1+deb7u1_i386 + libnvidia-compiler_304.88-1+deb7u1_i386 + libnvidia-ml1_304.88-1+deb7u1_i386 + libparmetis-dev_3.1.1-4_i386 + libparmetis3.1_3.1.1-4_i386 + libtet1.4_1.4.3-1_i386 + libtet1.4-dev_1.4.3-1_i386 + libtriangle-1.6_1.6-2_i386 + libtriangle-dev_1.6-2_i386 + libttspico-dev_1.0+git20110131-2_i386 + libttspico-utils_1.0+git20110131-2_i386 + libttspico0_1.0+git20110131-2_i386 + libvmtk-dev_1.0.1-1_i386 + libvmtk1.0_1.0.1-1_i386 + libxvbaw-dev_1:12-6+point-3_i386 + libxvmcnvidia1_304.88-1+deb7u1_i386 + madfuload_1.2-4_i386 + mame_0.146-5_i386 + mame-tools_0.146-4_i386 + martian-modem_20080625-2_i386 + martian-modem-source_20080625-2_i386 + mbrola_3.01h-6_i386 + mess_0.146-4_i386 + mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-geomutils_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-gle_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-opengltk_1.5.6~rc3~cvs.20120601-2_i386 + mgltools-pyglf_1.5.6~rc3~cvs.20120601-1_i386 + mgltools-sff_1.5.6~rc3~cvs.20120206-1_i386 + mgltools-utpackages_1.5.6~rc3~cvs.20120601-1_i386 + motif-clients_2.3.3-8_i386 + mssstest_3.0-3_i386 + nautilus-dropbox_1.4.0-3_i386 + nauty_2.4r2-1_i386 + netperf_2.4.4-6.1_i386 + notion_3+2012042300-1_i386 + nvidia-alternative_304.88-1+deb7u1_i386 + nvidia-alternative-legacy-173xx_173.14.35-4_i386 + nvidia-alternative-legacy-71xx_71.86.15-3_i386 + nvidia-alternative-legacy-96xx_96.43.23-3_i386 + nvidia-cg-dev_3.1.0013-1_i386 + nvidia-cg-toolkit_3.1.0013-1_i386 + nvidia-cuda-dev_4.2.9-2_i386 + nvidia-cuda-gdb_4.2.9-2_i386 + nvidia-cuda-toolkit_4.2.9-2_i386 + nvidia-detect_304.88-1+deb7u1_i386 + nvidia-glx_304.88-1+deb7u1_i386 + nvidia-glx-legacy_71.86.15-3_i386 + nvidia-glx-legacy-173xx_173.14.35-4_i386 + nvidia-glx-legacy-71xx_71.86.15-3_i386 + nvidia-glx-legacy-71xx-dev_71.86.15-3_i386 + nvidia-glx-legacy-71xx-unsupported_71.86.15-3_i386 + nvidia-glx-legacy-96xx_96.43.23-3_i386 + nvidia-glx-legacy-dev_71.86.15-3_i386 + nvidia-kernel-2.6-486_304.88+1_i386 + nvidia-kernel-2.6-686-pae_304.88+1_i386 + nvidia-kernel-2.6-amd64_304.88+1_i386 + nvidia-kernel-3.2.0-4-486_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-686-pae_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-3.2.0-4-amd64_304.88+1+1+3.2.41-2_i386 + nvidia-kernel-486_304.88+1_i386 + nvidia-kernel-686-pae_304.88+1_i386 + nvidia-kernel-amd64_304.88+1_i386 + nvidia-kernel-dkms_304.88-1+deb7u1_i386 + nvidia-kernel-legacy-173xx-dkms_173.14.35-4_i386 + nvidia-kernel-legacy-173xx-source_173.14.35-4_i386 + nvidia-kernel-legacy-71xx-dkms_71.86.15-3_i386 + nvidia-kernel-legacy-71xx-source_71.86.15-3_i386 + nvidia-kernel-legacy-96xx-dkms_96.43.23-3_i386 + nvidia-kernel-legacy-96xx-source_96.43.23-3_i386 + nvidia-kernel-legacy-source_71.86.15-3_i386 + nvidia-kernel-source_304.88-1+deb7u1_i386 + nvidia-libopencl1_304.88-1+deb7u1_i386 + nvidia-opencl-common_304.88-1+deb7u1_i386 + nvidia-opencl-dev_4.2.9-2_i386 + nvidia-opencl-icd_304.88-1+deb7u1_i386 + nvidia-smi_304.88-1+deb7u1_i386 + nvidia-vdpau-driver_304.88-1+deb7u1_i386 + nvidia-visual-profiler_4.2.9-2_i386 + p7zip-rar_9.20.1~ds.1-3_i386 + parmetis-test_3.1.1-4_i386 + pgplot5_5.2.2-19_i386 + phylip_1:3.69-1_i386 + pptview_8.0-7_i386 + pr3287_3.3.10ga4-2+b1_i386 + python-vmtk_1.0.1-1_i386 + r-cran-maptools_1:0.7-38-1_i386 + rar_2:4.0.b3-1_i386 + s3270_3.3.10ga4-2+b1_i386 + sdlmame_0.146-5_i386 + sdlmame-tools_0.146-4_i386 + seaview_1:4.3.3-3_i386 + seq-gen_1.3.3-1_i386 + sgb_1:20090810-1_i386 + sl-modem-daemon_2.9.11~20110321-8+deb7u1_i386 + sl-modem-dkms_2.9.11~20110321-8+deb7u1_i386 + sparse_0.4.3+20110419-1_i386 + spellcast_1.0-21_i386 + teamspeak-client_2.0.32-3.1_i386 + teamspeak-server_2.0.24.1+debian-1.1_i386 + tetgen_1.4.3-1_i386 + titantools_4.0.11+notdfsg1-5_i386 + tome_2.3.5-2_i386 + triangle-bin_1.6-2_i386 + trn_3.6-23_i386 + trn4_4.0-test77-6_i386 + unace-nonfree_2.5-7_i386 + unrar_1:4.1.4-1_i386 + wap-wml-tools_0.0.4-6_i386 + x3270_3.3.10ga4-2+b1_i386 + xfractint_20.4.10-2_i386 + xmame-svga_0.146-5_i386 + xserver-xorg-video-nvidia_304.88-1+deb7u1_i386 + xserver-xorg-video-nvidia-legacy-173xx_173.14.35-4_i386 + xserver-xorg-video-nvidia-legacy-71xx_71.86.15-3_i386 + xserver-xorg-video-nvidia-legacy-96xx_96.43.23-3_i386 + zangband_1:2.7.5pre1-8_i386 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot2Test_gold new file mode 100644 index 00000000..a52af7fd --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot2Test_gold @@ -0,0 +1 @@ +ERROR: unable to show: snapshot with name no-such-snapshot not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot3Test_gold new file mode 100644 index 00000000..c7c8b4b9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/ShowSnapshot3Test_gold @@ -0,0 +1,4 @@ +Name: snap1 +Created At: 2014-01-24 13:06:43 MSK +Description: Snapshot from mirror [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy +Number of packages: 661 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot10Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot10Test_gold new file mode 100644 index 00000000..711b7254 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot10Test_gold @@ -0,0 +1,14 @@ +Loading packages... +Verifying... +Missing dependencies (11): + fenix [amd64] + fenix-plugins-system [amd64] + ia32-libs-gtk-i386 [amd64] + ia32-libs-i386 [amd64] + kbdcontrol [amd64] + kbdcontrol [i386] + mozart (>= 1.4.0) [amd64] + scsh-0.6 (>= 0.6.6) [amd64] + scsh-0.6 [amd64] + vidcontrol [amd64] + vidcontrol [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot1Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot1Test_gold new file mode 100644 index 00000000..711b7254 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot1Test_gold @@ -0,0 +1,14 @@ +Loading packages... +Verifying... +Missing dependencies (11): + fenix [amd64] + fenix-plugins-system [amd64] + ia32-libs-gtk-i386 [amd64] + ia32-libs-i386 [amd64] + kbdcontrol [amd64] + kbdcontrol [i386] + mozart (>= 1.4.0) [amd64] + scsh-0.6 (>= 0.6.6) [amd64] + scsh-0.6 [amd64] + vidcontrol [amd64] + vidcontrol [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot2Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot2Test_gold new file mode 100644 index 00000000..cdededd9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot2Test_gold @@ -0,0 +1 @@ +ERROR: unable to verify: snapshot with name no-such-snapshot not found diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot3Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot3Test_gold new file mode 100644 index 00000000..1e01856f --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot3Test_gold @@ -0,0 +1,5 @@ +Loading packages... +Verifying... +Missing dependencies (2): + kbdcontrol [i386] + vidcontrol [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot4Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot4Test_gold new file mode 100644 index 00000000..620ccc19 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot4Test_gold @@ -0,0 +1,1745 @@ +Loading packages... +Verifying... +Missing dependencies (1742): + 915resolution [i386] + 9fonts [i386] + abakus [i386] + abyss [i386] + acl-installer [i386] + acl-pro-installer [i386] + act [i386] + ada-reference-manual-html [i386] + ada-reference-manual-info [i386] + ada-reference-manual-pdf [i386] + ada-reference-manual-text [i386] + adept [i386] + adore-doris [i386] + afio [i386] + afni [i386] + agrep [i386] + alcovebook-sgml [i386] + amos-assembler [i386] + amoscmp [i386] + anagramarama [i386] + anfo [i386] + angband-audio [i386] + aolserver-doc (>= 4.0.1-1) [i386] + apache [i386] + apache-ssl [i386] + ape [i386] + apollo [i386] + apport [i386] + arachne [i386] + arb [i386] + arc-brave [i386] + arc-colors [i386] + arc-dust [i386] + arc-human [i386] + arc-illustrious [i386] + arc-noble [i386] + arc-wine [i386] + arc-wise [i386] + arrayprobe [i386] + artemis [i386] + asap [i386] + asiya24-vfont (>> 1-6.6) [i386] + asiya24-vfont [i386] + atlantik [i386] + atlantikdesigner [i386] + atompaw [i386] + audiooss [i386] + aufs-modules [i386] + augustus [i386] + autodocktools [i386] + automake1.9-doc [i386] + avant-window-navigator [i386] + avida-base [i386] + avl [i386] + ax25-apps [i386] + axparafit [i386] + axpcoords [i386] + babel-1.4.0-doc [i386] + bagphenotype [i386] + bambus [i386] + bamtools [i386] + bastille [i386] + bazaar [i386] + bbkeys (>= 0.9) [i386] + beads [i386] + beagle [i386] + beast-mcmc [i386] + best [i386] + bestgui [i386] + bgoffice-dict-downloader [i386] + big-blast [i386] + bigdft [i386] + bigsdb [i386] + bind [i386] + bioclipse [i386] + bioimagesuite [i386] + bioimagexd [i386] + biosig [i386] + biostrings [i386] + bison-doc [i386] + blimps-utils [i386] + blixem [i386] + blox [i386] + bluespike [i386] + blzpack [i386] + boinc-app-milkyway [i386] + boinc-app-seti [i386] + boot-floppies [i386] + bpalogin [i386] + brainvisa [i386] + brlcad [i386] + browser-plugin-libreoffice [i386] + btk-core [i386] + cactus [i386] + caftools [i386] + camitk-imp [i386] + cap3 [i386] + capaware [i386] + caret-data (>= 5.6.2~dfsg.1~) [i386] + casacore-dev [i386] + casacore-tools [i386] + cascadenik [i386] + cassandra [i386] + cclib-data [i386] + cdbfasta [i386] + cdmedicpacs [i386] + cdna-db [i386] + celestia-common-nonfree [i386] + celestia-kde [i386] + cellprofiler [i386] + cgiwrap [i386] + chronus [i386] + cinema [i386] + cinepaint [i386] + clearhealth [i386] + clhep [i386] + clonalorigin [i386] + clustalw-mpi [i386] + cluster3 [i386] + clustlaw [i386] + cmap [i386] + cnrun [i386] + coalesce [i386] + code-aster-gui [i386] + codonw [i386] + comedi-source [i386] + compclust [i386] + compiz [i386] + concavity [i386] + conquest-dicom-server [i386] + conservation-code [i386] + context-doc-nonfree [i386] + context-nonfree [i386] + contralign [i386] + coot [i386] + copycat [i386] + coq-doc [i386] + cpp-doc [i386] + crafty [i386] + crea [i386] + crossbow [i386] + crossfire-edit [i386] + cufflinks [i386] + cuneiform [i386] + cupsomatic-ppd [i386] + cweb [i386] + cyrus21-imapd (>= 2.1.11) [i386] + cytoscape [i386] + d-collide [i386] + das-proserver [i386] + datafreedom-doc [i386] + datafreedom-qsfxsl [i386] + dazzle [i386] + db4.2-util [i386] + dbdesigner [i386] + dcm4chee [i386] + debian-edu-fr-all [i386] + debian-edu-fr-skels [i386] + debruijn [i386] + decipher [i386] + device3dfx-module [i386] + devide [i386] + di-packages-build [i386] + dicom4j [i386] + dicoogle [i386] + digikamimageplugins [i386] + distmp3 [i386] + dmalloc [i386] + doc-html-w3 [i386] + doc-rfc [i386] + docbook5-defguide [i386] + doom-wad [i386] + doris [i386] + dpkg-doc [i386] + dpt-raidutil [i386] + drb [i386] + drbd8-module-source (>= 8.0.7) [i386] + drift (>= 2.2.0) [i386] + drjekyll [i386] + drugref.org [i386] + dti-query [i386] + dtitk [i386] + dumputils [i386] + dvips [i386] + dynare-matlab [i386] + e-hive [i386] + earth3d [i386] + easyspice [i386] + ecell [i386] + ecg2png [i386] + ecs [i386] + edict-fpw [i386] + edtsurf [i386] + eeglab [i386] + eegview [i386] + egroupware [i386] + eieio [i386] + eigensoft [i386] + ejs [i386] + elementalclinic [i386] + elexis [i386] + elmer-doc [i386] + elph [i386] + emacs-wiki [i386] + emacs22 [i386] + emacs23-common-non-dfsg [i386] + emacspeak-ss [i386] + embassy [i386] + embassy-phylip [i386] + emokit [i386] + ensembl [i386] + entangle [i386] + eolisa [i386] + epics [i386] + eprover [i386] + esound-clients [i386] + espresso++ [i386] + est-db [i386] + estferret [i386] + estscan [i386] + etoys [i386] + etoys-doc [i386] + ettercap [i386] + exalt [i386] + excavator [i386] + exciting [i386] + exe [i386] + expectk [i386] + ezmlm [i386] + ezmlm-idx [i386] + faac [i386] + falcon-dev (= 0.9.6.9-git20120606-2) [i386] + fas [i386] + fasta [i386] + fastqc [i386] + fbxine [i386] + fdmnes [i386] + ferret-vis [i386] + fflas-ffpack [i386] + fflas-ffpack-dev-doc [i386] + fflas-ffpack-user-doc [i386] + fglrx [i386] + fglrx-glx [i386] + fglrx-updates [i386] + fieldtrip [i386] + figaro [i386] + fiji [i386] + finex [i386] + firmware-bnx2 [i386] + firmware-crystalhd [i386] + firmware-ipw2x00 [i386] + firmware-iwlwifi [i386] + firmware-linux [i386] + firmware-qlogic [i386] + flann [i386] + flashkard [i386] + flashplugin-nonfree [i386] + flashplugin-nonfree-pulse [i386] + fluctuate [i386] + fonts-larabie-deco [i386] + fonts-mikachan [i386] + fonty [i386] + foomatic-gui [i386] + forester [i386] + forge [i386] + fortunes-mod [i386] + freeb [i386] + freecad [i386] + freecell-solver [i386] + freefoam [i386] + freefoam-dev [i386] + freeicd [i386] + freemed [i386] + freeshim [i386] + freesurfer [i386] + fsl [i386] + fslview [i386] + ftools-fv [i386] + fvwm-themes [i386] + galaxy [i386] + gambas2 [i386] + game-data-packager [i386] + ganttproject [i386] + gassst [i386] + gate [i386] + gawk-doc [i386] + gazpacho (>= 0.7.1) [i386] + gbioseq [i386] + gbrowse-syn [i386] + gcc-4.2 [i386] + gcc-4.4-doc (>= 4.4.6-15) [i386] + gcc-4.6-doc (>= 4.6.3-1) [i386] + gcc-4.7-doc (>= 4.7.2) [i386] + gcc-doc (>= 4:4.0.2-1) [i386] + gcc-doc [i386] + gccgo-4.7-doc [i386] + gcj [i386] + gdb-doc [i386] + gdm [i386] + geant4 [i386] + gebabbel [i386] + geg [i386] + genemark [i386] + genesis [i386] + genesplicer [i386] + genetrack [i386] + genezilla [i386] + genographer [i386] + genometools [i386] + geoip-database-contrib [i386] + geonetwork [i386] + geonext [i386] + gerris [i386] + getdp [i386] + getorb [i386] + gfortran-4.4-doc [i386] + gfortran-4.6-doc [i386] + gfortran-4.7-doc [i386] + gfortran-doc [i386] + gfxboot-themes [i386] + ggradebook [i386] + ghdl [i386] + giant [i386] + gimageview [i386] + gimias [i386] + gimp-svg [i386] + gimp1.2-perl [i386] + givaro-dev-doc [i386] + givaro-users-doc [i386] + glibc-doc-reference [i386] + gliese [i386] + glimmerhmm [i386] + gmap [i386] + gmsh [i386] + gmtsar [i386] + gmv [i386] + gnat-4.6-doc [i386] + gnatsweb [i386] + gnochm [i386] + gnome-pilot [i386] + gnome-utils [i386] + gnome-web-photo [i386] + gnus [i386] + gok [i386] + goldedplus [i386] + google-earth [i386] + googleearth-package [i386] + gosa-si-server [i386] + gpapers [i386] + gpaw [i386] + gpsdrive [i386] + gpsim-lcd [i386] + gpsim-lded [i386] + gpsim-led [i386] + gpsim-logic [i386] + gpsmanshp (>= 2.2) [i386] + gpsshogi [i386] + grace6 [i386] + griffith-extra-artwork (>= 0.9) [i386] + grits [i386] + grogui [i386] + gromacs-lam [i386] + gs [i386] + gs-common [i386] + gsdview [i386] + gsl-doc-info [i386] + gsl-doc-pdf [i386] + gsl-ref-html [i386] + gsl-ref-psdoc [i386] + gspiceui [i386] + gstreamer0.10-esd [i386] + gstreamer0.10-espeak [i386] + gstreamer0.10-fluendo-mpegdemux [i386] + gstreamer0.10-lame [i386] + gstreamer0.10-plugins-really-bad [i386] + gtablix [i386] + gtk-qt-engine [i386] + guile-1.8-doc-non-dfsg [i386] + guile-2.0-doc-non-dfsg [i386] + hannah-foo2zjs [i386] + hanzim [i386] + haploview [i386] + hart [i386] + haskell-language-c-doc (= 0.4.2-2) [i386] + hawkeye [i386] + hbf-cns40-b5 [i386] + hbf-jfs56 [i386] + hbf-kanji48 [i386] + hdf-eos4 [i386] + hdf-eos5 [i386] + heasoft-fv [i386] + hepmc-example [i386] + herb [i386] + herwig++ [i386] + herwig++-dev [i386] + hevea-doc [i386] + hexamer [i386] + hid [i386] + hilbertvisgui [i386] + hmmer2 [i386] + horae [i386] + hotplug [i386] + hpoj [i386] + hts-voice-nitech-jp-atr503-m001 [i386] + hunspell-dictionary-as [i386] + hunspell-dictionary-ast [i386] + hunspell-dictionary-bn [i386] + hunspell-dictionary-br [i386] + hunspell-dictionary-bs [i386] + hunspell-dictionary-cy [i386] + hunspell-dictionary-dz [i386] + hunspell-dictionary-gu [i386] + hunspell-dictionary-hi [i386] + hunspell-dictionary-id [i386] + hunspell-dictionary-is [i386] + hunspell-dictionary-ja [i386] + hunspell-dictionary-ka [i386] + hunspell-dictionary-km [i386] + hunspell-dictionary-mk [i386] + hunspell-dictionary-ml [i386] + hunspell-dictionary-mn [i386] + hunspell-dictionary-mr [i386] + hunspell-dictionary-nr [i386] + hunspell-dictionary-nso [i386] + hunspell-dictionary-oc [i386] + hunspell-dictionary-om [i386] + hunspell-dictionary-or [i386] + hunspell-dictionary-pa-in [i386] + hunspell-dictionary-rw [i386] + hunspell-dictionary-si [i386] + hunspell-dictionary-sl [i386] + hunspell-dictionary-ss [i386] + hunspell-dictionary-st [i386] + hunspell-dictionary-ta [i386] + hunspell-dictionary-te [i386] + hunspell-dictionary-tg [i386] + hunspell-dictionary-tn [i386] + hunspell-dictionary-ts [i386] + hunspell-dictionary-ug [i386] + hunspell-dictionary-ve [i386] + hunspell-dictionary-xh [i386] + hunspell-dictionary-zh-cn [i386] + hunspell-dictionary-zh-tw [i386] + hunspell-dictionary-zu [i386] + hunspell-en-med [i386] + hwtools [i386] + hybserv [i386] + hyperestraier [i386] + hypermail [i386] + hyphen-ar [i386] + hyphen-ast [i386] + hyphen-be [i386] + hyphen-bg [i386] + hyphen-br [i386] + hyphen-bs [i386] + hyphen-cs [i386] + hyphen-cy [i386] + hyphen-da [i386] + hyphen-dz [i386] + hyphen-el [i386] + hyphen-en-gb [i386] + hyphen-en-za [i386] + hyphen-eo [i386] + hyphen-es [i386] + hyphen-eu [i386] + hyphen-fa [i386] + hyphen-fi [i386] + hyphen-ga [i386] + hyphen-gl [i386] + hyphen-he [i386] + hyphen-id [i386] + hyphen-is [i386] + hyphen-ja [i386] + hyphen-ka [i386] + hyphen-km [i386] + hyphen-ko [i386] + hyphen-ku [i386] + hyphen-lt [i386] + hyphen-mk [i386] + hyphen-ml [i386] + hyphen-mn [i386] + hyphen-nb [i386] + hyphen-ne [i386] + hyphen-nl [i386] + hyphen-nn [i386] + hyphen-nr [i386] + hyphen-nso [i386] + hyphen-oc [i386] + hyphen-om [i386] + hyphen-or [i386] + hyphen-pa-in [i386] + hyphen-pt [i386] + hyphen-pt-br [i386] + hyphen-ru [i386] + hyphen-rw [i386] + hyphen-si [i386] + hyphen-sk [i386] + hyphen-ss [i386] + hyphen-st [i386] + hyphen-sv [i386] + hyphen-tg [i386] + hyphen-th [i386] + hyphen-tn [i386] + hyphen-tr [i386] + hyphen-ts [i386] + hyphen-ug [i386] + hyphen-uk [i386] + hyphen-uz [i386] + hyphen-ve [i386] + hyphen-vi [i386] + hyphen-xh [i386] + hyphen-zh-cn [i386] + hyphen-zh-tw [i386] + i2e [i386] + ibkohana2-php [i386] + icc-profiles [i386] + iceme [i386] + icepref [i386] + iceweasel-gnome-support [i386] + iceweasel-l10n-cy-gb [i386] + iceweasel-l10n-dz-bt [i386] + iceweasel-l10n-et-ee [i386] + iceweasel-l10n-fa-ir [i386] + iceweasel-l10n-fur-it [i386] + iceweasel-l10n-ka [i386] + iceweasel-l10n-mn [i386] + iceweasel-l10n-roa-es-val [i386] + iceweasel-l10n-uk-ua [i386] + iceweasel-torbutton [i386] + icewm-themes [i386] + ids [i386] + ifeffit [i386] + igv [i386] + ilisp [i386] + illuminator-doc [i386] + imagemagickb [i386] + imcorr [i386] + imhangul-status-applet [i386] + imview [i386] + incf-nidash-oneclick-clients [i386] + insightapplications [i386] + invesalius [i386] + invt [i386] + iqr [i386] + iranges [i386] + ironpython [i386] + isabelle [i386] + isdnactivecards [i386] + isdnutils [i386] + isis [i386] + jabber [i386] + jamnntpd [i386] + jbibtex [i386] + jbibtex-bin [i386] + jbrowse [i386] + jcgui [i386] + jchempaint [i386] + jemris [i386] + jfreemesh [i386] + jigsaw [i386] + jist [i386] + jmapviewer [i386] + jstreeview [i386] + k3dsurf [i386] + kaddressbook-plugins [i386] + kaffeine-mozilla [i386] + kartofel [i386] + kasteroids [i386] + kate-plugins [i386] + kayali [i386] + kbabel [i386] + kbackgammon [i386] + kbdcontrol [i386] + kchart [i386] + kde [i386] + kde-icons-crystal [i386] + kde-icons-oxygen [i386] + kde-l10n (>= 4:4.8.4) [i386] + kde-l10n [i386] + kde-l10n-se [i386] + kdeaddons-kfile-plugins [i386] + kdebase [i386] + kdebluetooth [i386] + kdelibs-data [i386] + kdelibs5-doc [i386] + kdenetwork-kfile-plugins [i386] + kdepim-kfile-plugins [i386] + kdissert [i386] + kdnssd [i386] + kedit [i386] + keduca [i386] + kempbasu [i386] + kernel-patch-badram [i386] + kernel-patch-lkcd [i386] + kernel-patch-openvz [i386] + keuklid [i386] + kformula [i386] + kfouleggs [i386] + kgeo [i386] + kgraph [i386] + kguitar [i386] + khelpcenter [i386] + kiconedit [i386] + kiosktool [i386] + kivio [i386] + klatin [i386] + klearnspelling [i386] + klogic [i386] + klone-doc [i386] + kmessedwords [i386] + kmid [i386] + kmidi [i386] + kmrml [i386] + kmultiply [i386] + knorskverbs [i386] + kolourpaint [i386] + kontour [i386] + koshell [i386] + kpaint [i386] + kpercentage [i386] + kpilot [i386] + kpm [i386] + kpoker [i386] + kradview [i386] + krecord [i386] + kregexpeditor [i386] + kschoolmenu [i386] + kseg [i386] + ksensors [i386] + ksimus [i386] + ksimus-boolean [i386] + ksimus-datarecorder [i386] + ksimus-floatingpoint [i386] + ksirtet [i386] + ksmiletris [i386] + ksnake [i386] + ksociograma [i386] + ksokoban [i386] + kstreamripper [i386] + ksvg [i386] + ktechlab [i386] + ktimetrace [i386] + kugar [i386] + kverbos [i386] + kview [i386] + kvm-qemu [i386] + kworldclock [i386] + labplot [i386] + lagan [i386] + lamarc [i386] + lapack3-dev [i386] + lbkohana3.1-php [i386] + lenmus [i386] + lha [i386] + libacovea-dev [i386] + libantlr3-java [i386] + libapache-mod-ruby [i386] + libapache-ssi-perl [i386] + libarchive1 [i386] + libasis-doc [i386] + libaudio-flac-perl [i386] + libavcodec-extra-52 [i386] + libavformat-extra-52 [i386] + libavutil-extra-50 [i386] + libbamtools-dev [i386] + libbio-das-perl [i386] + libbio-formats-java [i386] + libbiojava3-java-demos [i386] + libbiosig0 [i386] + libcamitk3-dev [i386] + libccaudio2-doc [i386] + libcegui-mk2-0.7.6-doc [i386] + libcfitsio-dev [i386] + libclamunrar6 [i386] + libcneartree3-dev [i386] + libcomplearn-dev [i386] + libcrypt-cfb-perl [i386] + libcrypt-eax-perl [i386] + libcrypt-rc6-perl [i386] + libcrypt-ripemd160-perl [i386] + libcrypt-serpent-perl [i386] + libctk-dev [i386] + libcuda1 [i386] + libdbd-oracle-perl (>= 0.90) [i386] + libdbi-ruby1.9 [i386] + libdcm4che-java [i386] + libdeal.ii-dev [i386] + libdigest-cmac-perl [i386] + libdrmaa1.0 [i386] + libdspam7-drv (= 3.10.1+dfsg-11) [i386] + libdvdcss [i386] + libdvdcss-dev [i386] + libdvdcss2 [i386] + libegad [i386] + libestraier-ruby1.8 [i386] + libextractor-java [i386] + libflashsupport [i386] + libforester-java [i386] + libfox95 [i386] + libfvm-dev [i386] + libgbfp-dev [i386] + libgenometools0-dev [i386] + libgeotiff-epsg [i386] + libgeronimo-jta-java [i386] + libgeronimo-jta-java-doc [i386] + libgff-perl [i386] + libghc-hdbc-missingh-dev [i386] + libghc-hsql-sqlite-dev [i386] + libghc-mongodb-dev [i386] + libghc-persistent-mongodb-dev [i386] + libghc-persistent-mysql-dev [i386] + libghc-persistent-postgresql-dev [i386] + libghc-yesod-platform-dev [i386] + libgivaro-dev [i386] + libgivaro0 [i386] + libgluegen2 [i386] + libgpib-bin [i386] + libgsmme1c102 [i386] + libgtk-perl [i386] + libgtk2-mozembed-perl [i386] + libgtkdataboxmm-dev [i386] + libhe4-hdfeos-dev [i386] + libhepmcinterface-dev [i386] + libhsqldb-java-gcj [i386] + libint [i386] + libjai-imageio-core-java [i386] + libjetty-extras-java [i386] + libjlatexmath [i386] + libjs-leaflet [i386] + libjs-query [i386] + liblevmar-dev [i386] + liblife-dev [i386] + liblinc1 [i386] + libluminate-dev [i386] + libmath-random-perl [i386] + libmath-vector-real-random-perl [i386] + libmcpanel-dev [i386] + libmei-dev [i386] + libmemcached [i386] + libmems-1.5-1 [i386] + libmesh-dev [i386] + libmia-2.0-dev [i386] + libmni-perllib-perl [i386] + libmpich1.0gf [i386] + libmpich2-1.2 [i386] + libnarval1-dev [i386] + libnauty-dev [i386] + libnbc [i386] + libnet-openssh-gateway-perl [i386] + libnet-twitter-perl [i386] + libnetcdf-java [i386] + libnetcdf4 [i386] + libnglib-dev [i386] + libnhgri-blastall-perl [i386] + libnl3-doc [i386] + libopenal0a [i386] + libopencascade-dev [i386] + libopenigtlink1 [i386] + libopenmm4-dev [i386] + libopenslide-java [i386] + libpgplot-perl [i386] + libplack-middleware-debug-perl [i386] + libplexus-compiler-java-doc [i386] + libpolybori-groebner-dev [i386] + libppl-c2 [i386] + libppl7 [i386] + libpspio [i386] + libqsearch-dev [i386] + libqt-dev [i386] + libqt-perl [i386] + libqttestrunner1c2a (= 1.12.1-4) [i386] + librcsb-core-wrapper0-dev [i386] + libreadosm-dev [i386] + libreoffice-gcj [i386] + libreoffice-grammarcheck-af [i386] + libreoffice-grammarcheck-ar [i386] + libreoffice-grammarcheck-as [i386] + libreoffice-grammarcheck-ast [i386] + libreoffice-grammarcheck-be [i386] + libreoffice-grammarcheck-bg [i386] + libreoffice-grammarcheck-bn [i386] + libreoffice-grammarcheck-br [i386] + libreoffice-grammarcheck-bs [i386] + libreoffice-grammarcheck-ca [i386] + libreoffice-grammarcheck-cs [i386] + libreoffice-grammarcheck-cy [i386] + libreoffice-grammarcheck-da [i386] + libreoffice-grammarcheck-de [i386] + libreoffice-grammarcheck-dz [i386] + libreoffice-grammarcheck-el [i386] + libreoffice-grammarcheck-eo [i386] + libreoffice-grammarcheck-es [i386] + libreoffice-grammarcheck-et [i386] + libreoffice-grammarcheck-eu [i386] + libreoffice-grammarcheck-fa [i386] + libreoffice-grammarcheck-fi [i386] + libreoffice-grammarcheck-fr [i386] + libreoffice-grammarcheck-ga [i386] + libreoffice-grammarcheck-gl [i386] + libreoffice-grammarcheck-gu [i386] + libreoffice-grammarcheck-he [i386] + libreoffice-grammarcheck-hi [i386] + libreoffice-grammarcheck-hr [i386] + libreoffice-grammarcheck-id [i386] + libreoffice-grammarcheck-is [i386] + libreoffice-grammarcheck-it [i386] + libreoffice-grammarcheck-ja [i386] + libreoffice-grammarcheck-ka [i386] + libreoffice-grammarcheck-km [i386] + libreoffice-grammarcheck-ko [i386] + libreoffice-grammarcheck-ku [i386] + libreoffice-grammarcheck-lt [i386] + libreoffice-grammarcheck-lv [i386] + libreoffice-grammarcheck-mk [i386] + libreoffice-grammarcheck-ml [i386] + libreoffice-grammarcheck-mn [i386] + libreoffice-grammarcheck-mr [i386] + libreoffice-grammarcheck-nb [i386] + libreoffice-grammarcheck-ne [i386] + libreoffice-grammarcheck-nl [i386] + libreoffice-grammarcheck-nn [i386] + libreoffice-grammarcheck-nr [i386] + libreoffice-grammarcheck-nso [i386] + libreoffice-grammarcheck-oc [i386] + libreoffice-grammarcheck-om [i386] + libreoffice-grammarcheck-or [i386] + libreoffice-grammarcheck-pa-in [i386] + libreoffice-grammarcheck-pl [i386] + libreoffice-grammarcheck-pt [i386] + libreoffice-grammarcheck-pt-br [i386] + libreoffice-grammarcheck-ro [i386] + libreoffice-grammarcheck-rw [i386] + libreoffice-grammarcheck-si [i386] + libreoffice-grammarcheck-sk [i386] + libreoffice-grammarcheck-sl [i386] + libreoffice-grammarcheck-sr [i386] + libreoffice-grammarcheck-ss [i386] + libreoffice-grammarcheck-st [i386] + libreoffice-grammarcheck-sv [i386] + libreoffice-grammarcheck-ta [i386] + libreoffice-grammarcheck-te [i386] + libreoffice-grammarcheck-tg [i386] + libreoffice-grammarcheck-th [i386] + libreoffice-grammarcheck-tn [i386] + libreoffice-grammarcheck-tr [i386] + libreoffice-grammarcheck-ts [i386] + libreoffice-grammarcheck-ug [i386] + libreoffice-grammarcheck-uk [i386] + libreoffice-grammarcheck-uz [i386] + libreoffice-grammarcheck-ve [i386] + libreoffice-grammarcheck-vi [i386] + libreoffice-grammarcheck-xh [i386] + libreoffice-grammarcheck-zh-cn [i386] + libreoffice-grammarcheck-zh-tw [i386] + libreoffice-grammarcheck-zu [i386] + libreoffice-help-af [i386] + libreoffice-help-ar [i386] + libreoffice-help-as [i386] + libreoffice-help-ast [i386] + libreoffice-help-be [i386] + libreoffice-help-bg [i386] + libreoffice-help-bn [i386] + libreoffice-help-br [i386] + libreoffice-help-bs [i386] + libreoffice-help-cy [i386] + libreoffice-help-en [i386] + libreoffice-help-en-za [i386] + libreoffice-help-eo [i386] + libreoffice-help-fa [i386] + libreoffice-help-ga [i386] + libreoffice-help-gu [i386] + libreoffice-help-he [i386] + libreoffice-help-hr [i386] + libreoffice-help-id [i386] + libreoffice-help-is [i386] + libreoffice-help-ka [i386] + libreoffice-help-ku [i386] + libreoffice-help-lt [i386] + libreoffice-help-lv [i386] + libreoffice-help-mk [i386] + libreoffice-help-ml [i386] + libreoffice-help-mn [i386] + libreoffice-help-mr [i386] + libreoffice-help-nb [i386] + libreoffice-help-ne [i386] + libreoffice-help-nn [i386] + libreoffice-help-nr [i386] + libreoffice-help-nso [i386] + libreoffice-help-oc [i386] + libreoffice-help-or [i386] + libreoffice-help-pa-in [i386] + libreoffice-help-ro [i386] + libreoffice-help-rw [i386] + libreoffice-help-si [i386] + libreoffice-help-sr [i386] + libreoffice-help-ss [i386] + libreoffice-help-st [i386] + libreoffice-help-ta [i386] + libreoffice-help-te [i386] + libreoffice-help-tg [i386] + libreoffice-help-th [i386] + libreoffice-help-tn [i386] + libreoffice-help-tr [i386] + libreoffice-help-ts [i386] + libreoffice-help-ug [i386] + libreoffice-help-uk [i386] + libreoffice-help-uz [i386] + libreoffice-help-ve [i386] + libreoffice-help-vi [i386] + libreoffice-help-xh [i386] + libreoffice-help-zu [i386] + libreoffice-kab [i386] + libreoffice-l10n-common [i386] + libsafe [i386] + libsbml5-dev [i386] + libshark-dev [i386] + libshib2-doc (= 2.4.3+dfsg-5) [i386] + libshogun-dev [i386] + libslepc3.0.0-dev [i386] + libsolr-java-doc [i386] + libspherepack-dev [i386] + libspooles2.2-dev [i386] + libssl0.9.8-dbg [i386] + libswarm2-dev [i386] + libsys-info-os-perl [i386] + libtagsoup-java [i386] + libtao-2.0.3 [i386] + libtao-dev [i386] + libtao-orbsvcs-2.0.3 [i386] + libteem1 [i386] + libtet1.4.2-dev [i386] + libtext-balanced-perl [i386] + libtext-wrap-perl [i386] + libtrilinos-dev [i386] + libtrilinos-doc [i386] + libttspico-utils [i386] + libvalhalla-doc (= 2.0.0-4+b1) [i386] + libvdk1-dev [i386] + libvisad-java [i386] + libvistaio-dev [i386] + libvtk5.4 [i386] + libwhy-coq (= 2.30+dfsg-5+b1) [i386] + libworldwind-java [i386] + libxc [i386] + libxc-dev [i386] + libxml-libxml-devel-setlinenumber-perl [i386] + life-apps [i386] + linoccult [i386] + linux-debug [i386] + linux-image-2.4 [i386] + linux-image-2.6 [i386] + linux-image-2.6-rt [i386] + linuxprinting.org-ppds [i386] + linuxsampler [i386] + lipsia [i386] + logol-bin [i386] + logomat-m [i386] + lsb-rpm [i386] + ltrsift [i386] + lua-torch5 [i386] + lua5.1-zlib [i386] + lucy [i386] + lum [i386] + luma [i386] + macs [i386] + mage2tab [i386] + magicsquare [i386] + magnus [i386] + make-doc [i386] + maker2 [i386] + malted [i386] + mapnik-viewer [i386] + mapready [i386] + mapserver [i386] + maris [i386] + martj [i386] + matlab-spm8 [i386] + matlab-support [i386] + matlab2tikz [i386] + matrox-tools [i386] + mauvealigner [i386] + maxd [i386] + mayam [i386] + mbrola [i386] + mclust [i386] + meabench [i386] + mediaproxy [i386] + medintux [i386] + medisnap [i386] + meego-packaging-tools [i386] + mek [i386] + meme [i386] + mercurial-buildpackage [i386] + mesa-test-tools [i386] + mesquite [i386] + metamail [i386] + metarep [i386] + mha4mysql-master [i386] + mia-tools [i386] + mialmpick [i386] + microbiomeutil [i386] + micromanager [i386] + midas [i386] + migrate [i386] + minimus [i386] + mipav [i386] + mirbase [i386] + mirrormed [i386] + mirth [i386] + miscpsycho [i386] + miview [i386] + mixminion [i386] + mjpegtools (>= 1:1.8.0) [i386] + mjpegtools [i386] + mni-autoreg [i386] + mni-colin27-nifti [i386] + mni-icbm152-nlin-2009 [i386] + mni-n3 [i386] + modconf [i386] + molden [i386] + molekel [i386] + molphy [i386] + monkeys-audio [i386] + monodoc-gecko-manual [i386] + monodoc-gtk-manual [i386] + moose [i386] + mosaik-aligner [i386] + mozart-gtk [i386] + mozilla-browser (>= 2:1.7) [i386] + mozilla-mailnews (>= 2:1.7) [i386] + mozilla-mplayer [i386] + mozilla-spellchecker [i386] + mozilla-thunderbird [i386] + mozplugger [i386] + mpi-default [i386] + mpi-defaults-bin [i386] + mpi-doc [i386] + mpich-bin [i386] + mpsqed [i386] + mrisim [i386] + msatfinder [i386] + mssstest [i386] + msttcorefonts [i386] + mueller7-mova [i386] + mueller7accent-mova [i386] + mugsy [i386] + muine [i386] + mule-ucs [i386] + mumble-server-web [i386] + mummergpu [i386] + murasaki [i386] + musmap [i386] + mview [i386] + mx-dataacquisition [i386] + myspell-dictionary-as [i386] + myspell-dictionary-ast [i386] + myspell-dictionary-bn [i386] + myspell-dictionary-br [i386] + myspell-dictionary-bs [i386] + myspell-dictionary-cy [i386] + myspell-dictionary-dz [i386] + myspell-dictionary-gu [i386] + myspell-dictionary-hi [i386] + myspell-dictionary-id [i386] + myspell-dictionary-is [i386] + myspell-dictionary-ja [i386] + myspell-dictionary-ka [i386] + myspell-dictionary-km [i386] + myspell-dictionary-mk [i386] + myspell-dictionary-ml [i386] + myspell-dictionary-mn [i386] + myspell-dictionary-mr [i386] + myspell-dictionary-nr [i386] + myspell-dictionary-nso [i386] + myspell-dictionary-oc [i386] + myspell-dictionary-om [i386] + myspell-dictionary-or [i386] + myspell-dictionary-pa-in [i386] + myspell-dictionary-rw [i386] + myspell-dictionary-si [i386] + myspell-dictionary-sl [i386] + myspell-dictionary-ss [i386] + myspell-dictionary-st [i386] + myspell-dictionary-ta [i386] + myspell-dictionary-te [i386] + myspell-dictionary-tg [i386] + myspell-dictionary-tn [i386] + myspell-dictionary-ts [i386] + myspell-dictionary-ug [i386] + myspell-dictionary-ve [i386] + myspell-dictionary-xh [i386] + myspell-dictionary-zh-cn [i386] + myspell-dictionary-zh-tw [i386] + myspell-dictionary-zu [i386] + mythes-af [i386] + mythes-ar [i386] + mythes-as [i386] + mythes-ast [i386] + mythes-be [i386] + mythes-bg [i386] + mythes-bn [i386] + mythes-br [i386] + mythes-bs [i386] + mythes-cy [i386] + mythes-da [i386] + mythes-dz [i386] + mythes-el [i386] + mythes-en-za [i386] + mythes-eo [i386] + mythes-es [i386] + mythes-et [i386] + mythes-eu [i386] + mythes-fa [i386] + mythes-fi [i386] + mythes-ga [i386] + mythes-gl [i386] + mythes-gu [i386] + mythes-he [i386] + mythes-hi [i386] + mythes-hr [i386] + mythes-id [i386] + mythes-is [i386] + mythes-ja [i386] + mythes-ka [i386] + mythes-km [i386] + mythes-ko [i386] + mythes-ku [i386] + mythes-lt [i386] + mythes-lv [i386] + mythes-mk [i386] + mythes-ml [i386] + mythes-mn [i386] + mythes-mr [i386] + mythes-nb [i386] + mythes-nl [i386] + mythes-nn [i386] + mythes-nr [i386] + mythes-nso [i386] + mythes-oc [i386] + mythes-om [i386] + mythes-or [i386] + mythes-pa-in [i386] + mythes-pt [i386] + mythes-pt-br [i386] + mythes-rw [i386] + mythes-si [i386] + mythes-sl [i386] + mythes-sr [i386] + mythes-ss [i386] + mythes-st [i386] + mythes-sv [i386] + mythes-ta [i386] + mythes-te [i386] + mythes-tg [i386] + mythes-th [i386] + mythes-tn [i386] + mythes-tr [i386] + mythes-ts [i386] + mythes-ug [i386] + mythes-uk [i386] + mythes-uz [i386] + mythes-ve [i386] + mythes-vi [i386] + mythes-xh [i386] + mythes-zh-cn [i386] + mythes-zh-tw [i386] + mythes-zu [i386] + narval-utils [i386] + nauty [i386] + ncbi-seg [i386] + ncl [i386] + neo [i386] + nest [i386] + netdisco-mibs-installer [i386] + netepi-analysis [i386] + netepi-collection [i386] + netgen [i386] + netgen-doc [i386] + neurodata [i386] + ngila [i386] + ngspice [i386] + nictools-nopci [i386] + nipy-suite [i386] + nmoldyn [i386] + noatun [i386] + noatun-plugins [i386] + nordugrid-arc-nox [i386] + norsnet [i386] + norsp [i386] + noteedit [i386] + nrec [i386] + nspike [i386] + nvidia-cuda-toolkit [i386] + nvidia-current [i386] + nvidia-current-updates [i386] + nvidia-glx [i386] + nvidia-glx-any [i386] + nvidia-libopencl1-dev [i386] + nvidia-settings [i386] + nvidia-vdpau-driver [i386] + nw-align [i386] + nxml-mode [i386] + oases [i386] + obo-edit [i386] + ocaml-doc [i386] + octace-bioinfo [i386] + octave-bioinfo [i386] + octave-dicom [i386] + octavede [i386] + octaviz [i386] + octopus [i386] + ogle-gui [i386] + ohphone [i386] + ohphone-basic [i386] + oligoarrayaux [i386] + omegamap [i386] + omero [i386] + omninotify [i386] + opencascade-draw [i386] + openchrom [i386] + opencl-icd [i386] + opencpn [i386] + opendap [i386] + opendicom.net [i386] + openelectrophy [i386] + openemr [i386] + openev [i386] + openfoam [i386] + openjump [i386] + openmolar [i386] + openmovieeditor [i386] + openoffice.org-core (>= 1:2.4) [i386] + openoffice.org-core (>= 2.0.2) [i386] + openoffice.org-hunspell [i386] + openpms [i386] + openrep [i386] + openser [i386] + opensesame [i386] + opensourcepacs [i386] + opensync-plugin-gpe [i386] + openthesaurus-de-kword [i386] + openttd-opensfx [i386] + openturns-wrapper [i386] + openvas-client [i386] + openvas-scanner [i386] + openvas-server [i386] + openvibe [i386] + openvswitch-datapath-module [i386] + openwalnut [i386] + operondb [i386] + oprofile (>= 0.9) [i386] + opticks [i386] + orbfit [i386] + orca [i386] + orfeo [i386] + orocos-bfl [i386] + orocos-kdl [i386] + orocos-ocl [i386] + orocos-rtt [i386] + orthanc [i386] + osh [i386] + osmembrane [i386] + osmosis-plugin-borderextract [i386] + osra [i386] + osrm [i386] + p7zip-rar [i386] + packaging-tools [i386] + pal2nal [i386] + paml [i386] + pandas [i386] + panorama [i386] + partigene [i386] + partlibrary [i386] + passivetex (>> 1.25-2) [i386] + patchclamp [i386] + patman [i386] + patristic [i386] + pcma [i386] + pcmcia-cs [i386] + pcsim [i386] + pebl [i386] + pencil [i386] + perlsgml [i386] + pessulus [i386] + petsc-dbg (= 3.2.dfsg-6) [i386] + petsc-dbg [i386] + pfaat [i386] + pftools [i386] + pgdesigner [i386] + pgfplots [i386] + pgp-i [i386] + pgplot5 [i386] + phagefinder [i386] + phonon-backend-mplayer [i386] + php-crypt-gpg [i386] + php-gdcm [i386] + php5-suhosin [i386] + phpbb2 [i386] + phpphylotree [i386] + phpunit-dbunit [i386] + phy-spread [i386] + phylip [i386] + phylographer [i386] + phyloviz-core [i386] + phylowin [i386] + piano [i386] + picon-domains [i386] + picons [i386] + pike [i386] + pike7.6 [i386] + pike7.8 [i386] + pilot-qof [i386] + pinentry-x2go [i386] + planunc [i386] + plasma-scriptengine-kimono [i386] + platinumarts-sandbox [i386] + plato [i386] + plot-digitizer [i386] + pm-utils-light [i386] + points2grid [i386] + polsarpro [i386] + polybori-gui [i386] + postgresql-8.4 [i386] + postgresql-server [i386] + potassco-guide [i386] + povray [i386] + prank [i386] + predictnls [i386] + predictprotein [i386] + proalign [i386] + profbval [i386] + profisis [i386] + profit [i386] + proj [i386] + proofgeneral-coq [i386] + proofgeneral-minlog [i386] + prot4est [i386] + proteus [i386] + pscan-tfbs [i386] + psignifit3 [i386] + psipred [i386] + psom [i386] + psych [i386] + psychlops [i386] + psychometric [i386] + psychotree [i386] + psyphy [i386] + psytoolkit [i386] + pyaps [i386] + pybrain [i386] + pycgns [i386] + pydap [i386] + pymarc [i386] + pymeg [i386] + pynn [i386] + pyode [i386] + pyrophosphate-tools [i386] + pysurfer [i386] + python-4suite-xml [i386] + python-astropy-legacy [i386] + python-biom-format [i386] + python-casmoothing [i386] + python-clips [i386] + python-elemental [i386] + python-faulthandler-dbg (= 2.0-1) [i386] + python-flaskext.babel [i386] + python-gdchart [i386] + python-gettext [i386] + python-gnome2-extras [i386] + python-iolabs [i386] + python-jppy [i386] + python-ldap-doc [i386] + python-librcsb-core-wrapper [i386] + python-libxmp [i386] + python-mapnik [i386] + python-maxdb [i386] + python-mmtk [i386] + python-mzml [i386] + python-mzml-doc [i386] + python-netcdf4 [i386] + python-neuron [i386] + python-nipy [i386] + python-openslide [i386] + python-orange [i386] + python-pandas-doc [i386] + python-pgsql (>= 2.5.1-1) [i386] + python-poker-network [i386] + python-psyco [i386] + python-psycopg [i386] + python-pymc [i386] + python-pysam [i386] + python-pysqlite [i386] + python-qt3 (>= 3.0) [i386] + python-qt3 [i386] + python-reaper [i386] + python-restrictedpython [i386] + python-sardana [i386] + python-scikits-optimization [i386] + python-sexy [i386] + python-spherepack [i386] + python-spykeutils [i386] + python-stats [i386] + python-tamtam-data [i386] + python-timbl [i386] + python-tk (= 2.7.3-4+deb7u1) [i386] + python-visa [i386] + python-xml [i386] + python-xmms [i386] + python-z3c.recipe.sphinxdoc [i386] + python-zope.browserpage [i386] + python-zope.browserresource [i386] + python-zope.container [i386] + python-zope.pagetemplate [i386] + python-zope.site [i386] + python-zope.tal (>= 3.5.0) [i386] + python-zsync [i386] + python2.3-xml [i386] + python3-tk (>= 3.2.3-6) [i386] + python3-wxgtk [i386] + python3-wxgtk2.8 [i386] + pywps [i386] + pyxid [i386] + qmapcontrol [i386] + qpopper-drac [i386] + qrisk2 [i386] + qrtailab [i386] + qtdmm [i386] + qtlcart [i386] + quack-el [i386] + quaneko [i386] + quanta [i386] + qucs [i386] + r-ape [i386] + r-cran-acepack [i386] + r-cran-aplpack [i386] + r-cran-beeswarm [i386] + r-cran-bigmemory [i386] + r-cran-fcalendar [i386] + r-cran-fecofin [i386] + r-cran-fseries [i386] + r-cran-maptools [i386] + r-cran-ncdf [i386] + r-cran-rmetrics [i386] + r-cran-rpvm [i386] + r-cran-surveillance [i386] + r-cran-testthat [i386] + r-other-gking-matchit [i386] + r-other-valdar-bagphenotype.library [i386] + raccoon [i386] + rar [i386] + ratfor77 [i386] + ray-denovoassembler [i386] + rbs-finder [i386] + rdp-classifier [i386] + readom [i386] + realplayer [i386] + recombine [i386] + relacs [i386] + remitt [i386] + repast [i386] + repeatmasker [i386] + resmedicinae [i386] + rmblast [i386] + roadmap-gtk2 [i386] + roadmap-qt [i386] + roboop [i386] + roche454ace2caf [i386] + roeadmap [i386] + roipac [i386] + root-plugin-net-netx [i386] + root-plugin-proof-xproof [i386] + rose [i386] + rosetta [i386] + rtnet [i386] + rtxi [i386] + ruby-fastgettext [i386] + ruby-fcgi [i386] + run-one [i386] + runit-run [i386] + sabnzbdplus (>= 0.5.2) [i386] + sabnzbdplus [i386] + saga [i386] + sagemath [i386] + salome [i386] + samba-gtk [i386] + sap [i386] + science-bci [i386] + scilab-overload [i386] + scilab-scimax [i386] + scilab-sivp [i386] + scilab-swt [i386] + scim-anthy [i386] + scim-hangul [i386] + scim-pinyin [i386] + scim-prime [i386] + scim-uim [i386] + score-reading-trainer [i386] + sdm [i386] + sdr [i386] + seaview [i386] + sensible-browser [i386] + seq-gen [i386] + seqtk [i386] + sequenceconverter.app [i386] + ser [i386] + sessioninstaller [i386] + sga [i386] + sheepdog [i386] + shogun-python-modular [i386] + shorlfilter [i386] + sidplay2fp [i386] + sift [i386] + simph323 [i386] + simplythml [i386] + singular [i386] + sixpack [i386] + sjjb-map-icons [i386] + skencil [i386] + slang-gtk [i386] + slicer [i386] + slony1-bin [i386] + smalt [i386] + smlnj-doc [i386] + sms-pl [i386] + snap [i386] + snaphu [i386] + snmp-mibs-downloader [i386] + snpeff [i386] + soapdenovo [i386] + sodipodi [i386] + solid [i386] + spacechart [i386] + spatialite-gui [i386] + spectrum-roms [i386] + speedbar [i386] + spglib [i386] + spice [i386] + spider [i386] + spike [i386] + spis [i386] + splitstree [i386] + spm8 [i386] + spread-phy [i386] + spring-map [i386] + spring-maps-deltasiege [i386] + spring-mod [i386] + spring-mods-kernelpanic [i386] + spykeview [i386] + sqlclinic [i386] + sra-sdk [i386] + ssaha [i386] + ssystem [i386] + stabilitycalc [i386] + star [i386] + stars [i386] + starttls [i386] + stegavorto [i386] + stir [i386] + strap [i386] + streamtuner [i386] + strigi-plugins [i386] + sucrose-0.88 [i386] + sufary [i386] + sugar-0.84 [i386] + sugar-0.88 [i386] + sugar-0.96 [i386] + sugar-browse-activity [i386] + sugar-browse-activity-0.86 [i386] + sugar-chat-activity [i386] + sugar-chat-activity-0.86 [i386] + sugar-doc [i386] + sugar-emulator-0.88 [i386] + sugar-etoys-activity [i386] + sugar-imageviewer-activity [i386] + sugar-imageviewer-activity-0.96 [i386] + sugar-jukebox-activity [i386] + sugar-jukebox-activity-0.96 [i386] + sugar-log-activity [i386] + sugar-log-activity-0.86 [i386] + sugar-read-activity-0.86 [i386] + sugar-session [i386] + sugar-session-0.88 [i386] + sugar-write-activity [i386] + sugar-write-activity-0.86 [i386] + sugar-write-activity-0.88 [i386] + sun-java6-fonts [i386] + svgcairo [i386] + swat2 [i386] + swfupload [i386] + swi-prolog-clib [i386] + swi-prolog-http [i386] + swi-prolog-semweb [i386] + swi-prolog-sgml [i386] + swi-prolog-table [i386] + swi-prolog-xpce [i386] + systemc [i386] + t-gnus [i386] + tac-plus [i386] + tacg [i386] + tads-dev [i386] + tandem-mass [i386] + task-c-devel [i386] + task-devel-common [i386] + taverna [i386] + taxinspector [i386] + tc-utils [i386] + tempo [i386] + tetra [i386] + texinfo-doc-nonfree [i386] + texlive-base-recommended [i386] + thera-pi [i386] + thunar-thumbnailers [i386] + tightvnc-java [i386] + tigr-assembler [i386] + tigr-glimmer-mg [i386] + tilemill [i386] + tinker [i386] + tinyheb [i386] + tinyows [i386] + tipcutils [i386] + tkdvi [i386] + tkman [i386] + tkosm [i386] + tochnog [i386] + toolame [i386] + tophat [i386] + totalopenstation [i386] + touchfreeze [i386] + trac-spamfilter [i386] + trac-wikirename [i386] + trace2dbest [i386] + tracetuner [i386] + treebuilder3d [i386] + treetime [i386] + treetool [i386] + treeview [i386] + trellis-neuro [i386] + tripal [i386] + trnascan-se [i386] + tscope [i386] + ttf-larabie-deco [i386] + ttf-larabie-straight [i386] + ttf-mscorefonts-installer [i386] + ttf-thryomanes [i386] + ttf-ubuntu-font-family (>= 0.80-0ubuntu1~medium) [i386] + ttf2pt1 [i386] + tuxpaint (= 1:0.9.21) [i386] + twain [i386] + twlog [i386] + uae [i386] + ubuntu-system-service [i386] + ugene [i386] + uhd-contrib-images [i386] + ultrastar-ng-xine [i386] + unionfs-modules [i386] + uniprime [i386] + unrar [i386] + update-cluster [i386] + util-vserver [i386] + uw-prism [i386] + vala [i386] + varkon [i386] + varres [i386] + vbpp [i386] + vbs [i386] + vcf [i386] + vcg [i386] + vdpau-driver [i386] + vdr-enigmang-icons [i386] + vegan [i386] + vidcontrol [i386] + vienna-rna [i386] + vipec [i386] + virtualbox-guest-additions-iso [i386] + virtuoso-vad-dbpedia [i386] + virtuoso-vad-facetedbrowser [i386] + visionegg [i386] + visit [i386] + visualvm [i386] + vmd [i386] + vmtk [i386] + vnc-java [i386] + vtp [i386] + w3-recs [i386] + wanna-build [i386] + wannier90 [i386] + wannier90-dev [i386] + wap-wml-tools [i386] + watanabe-vfont (>> 1-6.6) [i386] + wdg-html-reference [i386] + wgs-assembler [i386] + wims [i386] + wmii2 [i386] + wmsun [i386] + wnsqlbuilder [i386] + wordtrans-console [i386] + wordtrans-data [i386] + wordtrans-kde [i386] + worldwind [i386] + x-tandem-pipeline [i386] + x-www-browser [i386] + x3270 [i386] + xarith [i386] + xastir [i386] + xcin (>= 2.5.0-0.2) [i386] + xdialog [i386] + xem [i386] + xemacs21-bin [i386] + xenomai [i386] + xephem [i386] + xfce4-xfapplet-plugin [i386] + xfonts-base-transcoded [i386] + xfonts-biznet-iso-8859-2-100dpi [i386] + xfonts-biznet-iso-8859-2-75dpi [i386] + xfonts-biznet-iso-8859-2-base [i386] + xfonts-cjk [i386] + xfree86-common [i386] + xfreerdp [i386] + xgdvi [i386] + xlispstat [i386] + xlockmore [i386] + xmcd [i386] + xmind [i386] + xnat [i386] + xorsa [i386] + xpdf-reader [i386] + xsidplay [i386] + xtranslate [i386] + xul-ext-gnome-keyring [i386] + xul-ext-torbutton [i386] + xvid4conf [i386] + xvidcap [i386] + xvidtune [i386] + y4mscaler [i386] + yale [i386] + youtube-dl [i386] + zalign [i386] + zcode-game [i386] + zodiac-zeden [i386] + zorp-doc [i386] + zotero [i386] + zygrib [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot5Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot5Test_gold new file mode 100644 index 00000000..6f4c5393 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot5Test_gold @@ -0,0 +1,1625 @@ +Loading packages... +Verifying... +Missing dependencies (1622): + 915resolution [i386] + 9fonts [i386] + abakus [i386] + abyss [i386] + acl-installer [i386] + acl-pro-installer [i386] + act [i386] + ada-reference-manual-html [i386] + ada-reference-manual-info [i386] + ada-reference-manual-pdf [i386] + ada-reference-manual-text [i386] + adept [i386] + adore-doris [i386] + afio [i386] + afni [i386] + agrep [i386] + alcovebook-sgml [i386] + amos-assembler [i386] + amoscmp [i386] + anagramarama [i386] + anfo [i386] + angband-audio [i386] + aolserver-doc (>= 4.0.1-1) [i386] + apache [i386] + apache-ssl [i386] + ape [i386] + apollo [i386] + apport [i386] + arachne [i386] + arb [i386] + arc-brave [i386] + arc-colors [i386] + arc-dust [i386] + arc-human [i386] + arc-illustrious [i386] + arc-noble [i386] + arc-wine [i386] + arc-wise [i386] + arrayprobe [i386] + artemis [i386] + asap [i386] + asiya24-vfont (>> 1-6.6) [i386] + asiya24-vfont [i386] + atlantik [i386] + atlantikdesigner [i386] + atompaw [i386] + audiooss [i386] + aufs-modules [i386] + augustus [i386] + avant-window-navigator [i386] + avida-base [i386] + avl [i386] + ax25-apps [i386] + axparafit [i386] + axpcoords [i386] + babel-1.4.0-doc [i386] + bagphenotype [i386] + bambus [i386] + bamtools [i386] + bastille [i386] + bazaar [i386] + bbkeys (>= 0.9) [i386] + beads [i386] + beagle [i386] + beast-mcmc [i386] + best [i386] + bestgui [i386] + big-blast [i386] + bigdft [i386] + bigsdb [i386] + bind [i386] + bioclipse [i386] + bioimagesuite [i386] + bioimagexd [i386] + biosig [i386] + biostrings [i386] + blimps-utils [i386] + blixem [i386] + blox [i386] + bluespike [i386] + blzpack [i386] + boinc-app-milkyway [i386] + boinc-app-seti [i386] + boot-floppies [i386] + bpalogin [i386] + brainvisa [i386] + brlcad [i386] + browser-plugin-libreoffice [i386] + btk-core [i386] + cactus [i386] + caftools [i386] + camitk-imp [i386] + cap3 [i386] + capaware [i386] + caret-data (>= 5.6.2~dfsg.1~) [i386] + casacore-dev [i386] + casacore-tools [i386] + cascadenik [i386] + cassandra [i386] + cdbfasta [i386] + cdmedicpacs [i386] + cdna-db [i386] + celestia-kde [i386] + cellprofiler [i386] + cgiwrap [i386] + chronus [i386] + cinema [i386] + cinepaint [i386] + clearhealth [i386] + clhep [i386] + clonalorigin [i386] + clustalw-mpi [i386] + cluster3 [i386] + clustlaw [i386] + cmap [i386] + cnrun [i386] + coalesce [i386] + code-aster-gui [i386] + codonw [i386] + comedi-source [i386] + compclust [i386] + compiz [i386] + concavity [i386] + conquest-dicom-server [i386] + conservation-code [i386] + contralign [i386] + coot [i386] + copycat [i386] + crea [i386] + crossbow [i386] + crossfire-edit [i386] + cufflinks [i386] + cupsomatic-ppd [i386] + cweb [i386] + cyrus21-imapd (>= 2.1.11) [i386] + cytoscape [i386] + d-collide [i386] + das-proserver [i386] + datafreedom-doc [i386] + datafreedom-qsfxsl [i386] + dazzle [i386] + db4.2-util [i386] + dbdesigner [i386] + dcm4chee [i386] + debian-edu-fr-all [i386] + debian-edu-fr-skels [i386] + debruijn [i386] + decipher [i386] + device3dfx-module [i386] + devide [i386] + di-packages-build [i386] + dicom4j [i386] + dicoogle [i386] + digikamimageplugins [i386] + distmp3 [i386] + dmalloc [i386] + doc-html-w3 [i386] + docbook5-defguide [i386] + doris [i386] + dpkg-doc [i386] + dpt-raidutil [i386] + drb [i386] + drbd8-module-source (>= 8.0.7) [i386] + drift (>= 2.2.0) [i386] + drjekyll [i386] + drugref.org [i386] + dti-query [i386] + dtitk [i386] + dumputils [i386] + dvips [i386] + e-hive [i386] + earth3d [i386] + ecell [i386] + ecg2png [i386] + ecs [i386] + edict-fpw [i386] + edtsurf [i386] + eeglab [i386] + eegview [i386] + egroupware [i386] + eieio [i386] + eigensoft [i386] + ejs [i386] + elementalclinic [i386] + elexis [i386] + elph [i386] + emacs-wiki [i386] + emacs22 [i386] + emacspeak-ss [i386] + embassy [i386] + embassy-phylip [i386] + emokit [i386] + ensembl [i386] + entangle [i386] + eolisa [i386] + epics [i386] + eprover [i386] + esound-clients [i386] + espresso++ [i386] + est-db [i386] + estferret [i386] + estscan [i386] + ettercap [i386] + exalt [i386] + excavator [i386] + exciting [i386] + exe [i386] + expectk [i386] + ezmlm [i386] + ezmlm-idx [i386] + faac [i386] + falcon-dev (= 0.9.6.9-git20120606-2) [i386] + fas [i386] + fasta [i386] + fastqc [i386] + fbxine [i386] + fdmnes [i386] + ferret-vis [i386] + fflas-ffpack [i386] + fflas-ffpack-dev-doc [i386] + fflas-ffpack-user-doc [i386] + fglrx [i386] + fglrx-updates [i386] + fieldtrip [i386] + figaro [i386] + fiji [i386] + finex [i386] + firmware-crystalhd [i386] + flann [i386] + flashkard [i386] + flashplugin-nonfree-pulse [i386] + fluctuate [i386] + fonty [i386] + foomatic-gui [i386] + forester [i386] + forge [i386] + fortunes-mod [i386] + freeb [i386] + freecad [i386] + freecell-solver [i386] + freefoam [i386] + freefoam-dev [i386] + freeicd [i386] + freemed [i386] + freeshim [i386] + freesurfer [i386] + fslview [i386] + ftools-fv [i386] + fvwm-themes [i386] + galaxy [i386] + gambas2 [i386] + ganttproject [i386] + gassst [i386] + gate [i386] + gazpacho (>= 0.7.1) [i386] + gbioseq [i386] + gbrowse-syn [i386] + gcc-4.2 [i386] + gcj [i386] + gdm [i386] + geant4 [i386] + gebabbel [i386] + geg [i386] + genemark [i386] + genesis [i386] + genesplicer [i386] + genetrack [i386] + genezilla [i386] + genographer [i386] + genometools [i386] + geonetwork [i386] + geonext [i386] + gerris [i386] + getdp [i386] + getorb [i386] + gfxboot-themes [i386] + ggradebook [i386] + ghdl [i386] + giant [i386] + gimageview [i386] + gimias [i386] + gimp-svg [i386] + gimp1.2-perl [i386] + givaro-dev-doc [i386] + givaro-users-doc [i386] + glimmerhmm [i386] + gmap [i386] + gmsh [i386] + gmtsar [i386] + gmv [i386] + gnatsweb [i386] + gnochm [i386] + gnome-pilot [i386] + gnome-utils [i386] + gnome-web-photo [i386] + gnus [i386] + gok [i386] + goldedplus [i386] + google-earth [i386] + gosa-si-server [i386] + gpapers [i386] + gpaw [i386] + gpsdrive [i386] + gpsim-lcd [i386] + gpsim-lded [i386] + gpsim-led [i386] + gpsim-logic [i386] + gpsmanshp (>= 2.2) [i386] + gpsshogi [i386] + grace6 [i386] + griffith-extra-artwork (>= 0.9) [i386] + grits [i386] + grogui [i386] + gromacs-lam [i386] + gs [i386] + gs-common [i386] + gsdview [i386] + gspiceui [i386] + gstreamer0.10-esd [i386] + gstreamer0.10-espeak [i386] + gstreamer0.10-fluendo-mpegdemux [i386] + gstreamer0.10-lame [i386] + gstreamer0.10-plugins-really-bad [i386] + gtablix [i386] + gtk-qt-engine [i386] + guile-2.0-doc-non-dfsg [i386] + hanzim [i386] + haploview [i386] + hart [i386] + haskell-language-c-doc (= 0.4.2-2) [i386] + hawkeye [i386] + hbf-cns40-b5 [i386] + hbf-jfs56 [i386] + hbf-kanji48 [i386] + hdf-eos4 [i386] + hdf-eos5 [i386] + heasoft-fv [i386] + hepmc-example [i386] + herb [i386] + herwig++ [i386] + herwig++-dev [i386] + hexamer [i386] + hid [i386] + hilbertvisgui [i386] + hmmer2 [i386] + hotplug [i386] + hpoj [i386] + hunspell-dictionary-as [i386] + hunspell-dictionary-ast [i386] + hunspell-dictionary-bn [i386] + hunspell-dictionary-br [i386] + hunspell-dictionary-bs [i386] + hunspell-dictionary-cy [i386] + hunspell-dictionary-dz [i386] + hunspell-dictionary-gu [i386] + hunspell-dictionary-hi [i386] + hunspell-dictionary-id [i386] + hunspell-dictionary-is [i386] + hunspell-dictionary-ja [i386] + hunspell-dictionary-ka [i386] + hunspell-dictionary-km [i386] + hunspell-dictionary-mk [i386] + hunspell-dictionary-ml [i386] + hunspell-dictionary-mn [i386] + hunspell-dictionary-mr [i386] + hunspell-dictionary-nr [i386] + hunspell-dictionary-nso [i386] + hunspell-dictionary-oc [i386] + hunspell-dictionary-om [i386] + hunspell-dictionary-or [i386] + hunspell-dictionary-pa-in [i386] + hunspell-dictionary-rw [i386] + hunspell-dictionary-si [i386] + hunspell-dictionary-sl [i386] + hunspell-dictionary-ss [i386] + hunspell-dictionary-st [i386] + hunspell-dictionary-ta [i386] + hunspell-dictionary-te [i386] + hunspell-dictionary-tg [i386] + hunspell-dictionary-tn [i386] + hunspell-dictionary-ts [i386] + hunspell-dictionary-ug [i386] + hunspell-dictionary-ve [i386] + hunspell-dictionary-xh [i386] + hunspell-dictionary-zh-cn [i386] + hunspell-dictionary-zh-tw [i386] + hunspell-dictionary-zu [i386] + hunspell-en-med [i386] + hwtools [i386] + hybserv [i386] + hyperestraier [i386] + hypermail [i386] + hyphen-ar [i386] + hyphen-ast [i386] + hyphen-be [i386] + hyphen-bg [i386] + hyphen-br [i386] + hyphen-bs [i386] + hyphen-cs [i386] + hyphen-cy [i386] + hyphen-da [i386] + hyphen-dz [i386] + hyphen-el [i386] + hyphen-en-gb [i386] + hyphen-en-za [i386] + hyphen-eo [i386] + hyphen-es [i386] + hyphen-eu [i386] + hyphen-fa [i386] + hyphen-fi [i386] + hyphen-ga [i386] + hyphen-gl [i386] + hyphen-he [i386] + hyphen-id [i386] + hyphen-is [i386] + hyphen-ja [i386] + hyphen-ka [i386] + hyphen-km [i386] + hyphen-ko [i386] + hyphen-ku [i386] + hyphen-lt [i386] + hyphen-mk [i386] + hyphen-ml [i386] + hyphen-mn [i386] + hyphen-nb [i386] + hyphen-ne [i386] + hyphen-nl [i386] + hyphen-nn [i386] + hyphen-nr [i386] + hyphen-nso [i386] + hyphen-oc [i386] + hyphen-om [i386] + hyphen-or [i386] + hyphen-pa-in [i386] + hyphen-pt [i386] + hyphen-pt-br [i386] + hyphen-ru [i386] + hyphen-rw [i386] + hyphen-si [i386] + hyphen-sk [i386] + hyphen-ss [i386] + hyphen-st [i386] + hyphen-sv [i386] + hyphen-tg [i386] + hyphen-th [i386] + hyphen-tn [i386] + hyphen-tr [i386] + hyphen-ts [i386] + hyphen-ug [i386] + hyphen-uk [i386] + hyphen-uz [i386] + hyphen-ve [i386] + hyphen-vi [i386] + hyphen-xh [i386] + hyphen-zh-cn [i386] + hyphen-zh-tw [i386] + i2e [i386] + ibkohana2-php [i386] + iceme [i386] + icepref [i386] + iceweasel-gnome-support [i386] + iceweasel-l10n-cy-gb [i386] + iceweasel-l10n-dz-bt [i386] + iceweasel-l10n-et-ee [i386] + iceweasel-l10n-fa-ir [i386] + iceweasel-l10n-fur-it [i386] + iceweasel-l10n-ka [i386] + iceweasel-l10n-mn [i386] + iceweasel-l10n-roa-es-val [i386] + iceweasel-l10n-uk-ua [i386] + iceweasel-torbutton [i386] + icewm-themes [i386] + ids [i386] + ilisp [i386] + illuminator-doc [i386] + imagemagickb [i386] + imcorr [i386] + imhangul-status-applet [i386] + imview [i386] + incf-nidash-oneclick-clients [i386] + insightapplications [i386] + invesalius [i386] + invt [i386] + iqr [i386] + iranges [i386] + ironpython [i386] + isabelle [i386] + isdnutils [i386] + isis [i386] + jabber [i386] + jamnntpd [i386] + jbibtex [i386] + jbibtex-bin [i386] + jbrowse [i386] + jcgui [i386] + jchempaint [i386] + jemris [i386] + jfreemesh [i386] + jigsaw [i386] + jist [i386] + jmapviewer [i386] + jstreeview [i386] + k3dsurf [i386] + kaddressbook-plugins [i386] + kaffeine-mozilla [i386] + kartofel [i386] + kasteroids [i386] + kate-plugins [i386] + kayali [i386] + kbabel [i386] + kbackgammon [i386] + kbdcontrol [i386] + kchart [i386] + kde [i386] + kde-icons-crystal [i386] + kde-icons-oxygen [i386] + kde-l10n (>= 4:4.8.4) [i386] + kde-l10n [i386] + kde-l10n-se [i386] + kdeaddons-kfile-plugins [i386] + kdebase [i386] + kdebluetooth [i386] + kdelibs-data [i386] + kdelibs5-doc [i386] + kdenetwork-kfile-plugins [i386] + kdepim-kfile-plugins [i386] + kdissert [i386] + kdnssd [i386] + kedit [i386] + keduca [i386] + kempbasu [i386] + kernel-patch-badram [i386] + kernel-patch-lkcd [i386] + kernel-patch-openvz [i386] + keuklid [i386] + kformula [i386] + kfouleggs [i386] + kgeo [i386] + kgraph [i386] + kguitar [i386] + khelpcenter [i386] + kiconedit [i386] + kiosktool [i386] + kivio [i386] + klatin [i386] + klearnspelling [i386] + klogic [i386] + klone-doc [i386] + kmessedwords [i386] + kmid [i386] + kmidi [i386] + kmrml [i386] + kmultiply [i386] + knorskverbs [i386] + kolourpaint [i386] + kontour [i386] + koshell [i386] + kpaint [i386] + kpercentage [i386] + kpilot [i386] + kpm [i386] + kpoker [i386] + kradview [i386] + krecord [i386] + kregexpeditor [i386] + kschoolmenu [i386] + kseg [i386] + ksensors [i386] + ksimus [i386] + ksimus-boolean [i386] + ksimus-datarecorder [i386] + ksimus-floatingpoint [i386] + ksirtet [i386] + ksmiletris [i386] + ksnake [i386] + ksociograma [i386] + ksokoban [i386] + kstreamripper [i386] + ksvg [i386] + ktechlab [i386] + ktimetrace [i386] + kugar [i386] + kverbos [i386] + kview [i386] + kvm-qemu [i386] + kworldclock [i386] + labplot [i386] + lagan [i386] + lamarc [i386] + lapack3-dev [i386] + lbkohana3.1-php [i386] + lenmus [i386] + lha [i386] + libacovea-dev [i386] + libantlr3-java [i386] + libapache-mod-ruby [i386] + libapache-ssi-perl [i386] + libarchive1 [i386] + libasis-doc [i386] + libaudio-flac-perl [i386] + libavcodec-extra-52 [i386] + libavformat-extra-52 [i386] + libavutil-extra-50 [i386] + libbamtools-dev [i386] + libbio-das-perl [i386] + libbio-formats-java [i386] + libbiojava3-java-demos [i386] + libbiosig0 [i386] + libcamitk3-dev [i386] + libccaudio2-doc [i386] + libcegui-mk2-0.7.6-doc [i386] + libcfitsio-dev [i386] + libcneartree3-dev [i386] + libcomplearn-dev [i386] + libcrypt-cfb-perl [i386] + libcrypt-eax-perl [i386] + libcrypt-rc6-perl [i386] + libcrypt-ripemd160-perl [i386] + libcrypt-serpent-perl [i386] + libctk-dev [i386] + libdbi-ruby1.9 [i386] + libdcm4che-java [i386] + libdeal.ii-dev [i386] + libdigest-cmac-perl [i386] + libdrmaa1.0 [i386] + libdspam7-drv (= 3.10.1+dfsg-11) [i386] + libdvdcss [i386] + libdvdcss-dev [i386] + libdvdcss2 [i386] + libegad [i386] + libestraier-ruby1.8 [i386] + libextractor-java [i386] + libflashsupport [i386] + libforester-java [i386] + libfox95 [i386] + libfvm-dev [i386] + libgbfp-dev [i386] + libgenometools0-dev [i386] + libgeronimo-jta-java [i386] + libgeronimo-jta-java-doc [i386] + libgff-perl [i386] + libghc-hdbc-missingh-dev [i386] + libghc-hsql-sqlite-dev [i386] + libghc-mongodb-dev [i386] + libghc-persistent-mongodb-dev [i386] + libghc-persistent-mysql-dev [i386] + libghc-persistent-postgresql-dev [i386] + libghc-yesod-platform-dev [i386] + libgivaro-dev [i386] + libgivaro0 [i386] + libgluegen2 [i386] + libgpib-bin [i386] + libgsmme1c102 [i386] + libgtk-perl [i386] + libgtk2-mozembed-perl [i386] + libgtkdataboxmm-dev [i386] + libhe4-hdfeos-dev [i386] + libhepmcinterface-dev [i386] + libhsqldb-java-gcj [i386] + libint [i386] + libjai-imageio-core-java [i386] + libjetty-extras-java [i386] + libjlatexmath [i386] + libjs-leaflet [i386] + libjs-query [i386] + liblevmar-dev [i386] + liblife-dev [i386] + liblinc1 [i386] + libluminate-dev [i386] + libmath-vector-real-random-perl [i386] + libmcpanel-dev [i386] + libmei-dev [i386] + libmemcached [i386] + libmems-1.5-1 [i386] + libmesh-dev [i386] + libmia-2.0-dev [i386] + libmni-perllib-perl [i386] + libmpich1.0gf [i386] + libmpich2-1.2 [i386] + libnarval1-dev [i386] + libnbc [i386] + libnet-openssh-gateway-perl [i386] + libnet-twitter-perl [i386] + libnetcdf-java [i386] + libnetcdf4 [i386] + libnglib-dev [i386] + libnhgri-blastall-perl [i386] + libnl3-doc [i386] + libopenal0a [i386] + libopencascade-dev [i386] + libopenigtlink1 [i386] + libopenmm4-dev [i386] + libopenslide-java [i386] + libplack-middleware-debug-perl [i386] + libplexus-compiler-java-doc [i386] + libpolybori-groebner-dev [i386] + libppl-c2 [i386] + libppl7 [i386] + libpspio [i386] + libqsearch-dev [i386] + libqt-dev [i386] + libqt-perl [i386] + libqttestrunner1c2a (= 1.12.1-4) [i386] + librcsb-core-wrapper0-dev [i386] + libreadosm-dev [i386] + libreoffice-gcj [i386] + libreoffice-grammarcheck-af [i386] + libreoffice-grammarcheck-ar [i386] + libreoffice-grammarcheck-as [i386] + libreoffice-grammarcheck-ast [i386] + libreoffice-grammarcheck-be [i386] + libreoffice-grammarcheck-bg [i386] + libreoffice-grammarcheck-bn [i386] + libreoffice-grammarcheck-br [i386] + libreoffice-grammarcheck-bs [i386] + libreoffice-grammarcheck-ca [i386] + libreoffice-grammarcheck-cs [i386] + libreoffice-grammarcheck-cy [i386] + libreoffice-grammarcheck-da [i386] + libreoffice-grammarcheck-de [i386] + libreoffice-grammarcheck-dz [i386] + libreoffice-grammarcheck-el [i386] + libreoffice-grammarcheck-eo [i386] + libreoffice-grammarcheck-es [i386] + libreoffice-grammarcheck-et [i386] + libreoffice-grammarcheck-eu [i386] + libreoffice-grammarcheck-fa [i386] + libreoffice-grammarcheck-fi [i386] + libreoffice-grammarcheck-fr [i386] + libreoffice-grammarcheck-ga [i386] + libreoffice-grammarcheck-gl [i386] + libreoffice-grammarcheck-gu [i386] + libreoffice-grammarcheck-he [i386] + libreoffice-grammarcheck-hi [i386] + libreoffice-grammarcheck-hr [i386] + libreoffice-grammarcheck-id [i386] + libreoffice-grammarcheck-is [i386] + libreoffice-grammarcheck-it [i386] + libreoffice-grammarcheck-ja [i386] + libreoffice-grammarcheck-ka [i386] + libreoffice-grammarcheck-km [i386] + libreoffice-grammarcheck-ko [i386] + libreoffice-grammarcheck-ku [i386] + libreoffice-grammarcheck-lt [i386] + libreoffice-grammarcheck-lv [i386] + libreoffice-grammarcheck-mk [i386] + libreoffice-grammarcheck-ml [i386] + libreoffice-grammarcheck-mn [i386] + libreoffice-grammarcheck-mr [i386] + libreoffice-grammarcheck-nb [i386] + libreoffice-grammarcheck-ne [i386] + libreoffice-grammarcheck-nl [i386] + libreoffice-grammarcheck-nn [i386] + libreoffice-grammarcheck-nr [i386] + libreoffice-grammarcheck-nso [i386] + libreoffice-grammarcheck-oc [i386] + libreoffice-grammarcheck-om [i386] + libreoffice-grammarcheck-or [i386] + libreoffice-grammarcheck-pa-in [i386] + libreoffice-grammarcheck-pl [i386] + libreoffice-grammarcheck-pt [i386] + libreoffice-grammarcheck-pt-br [i386] + libreoffice-grammarcheck-ro [i386] + libreoffice-grammarcheck-rw [i386] + libreoffice-grammarcheck-si [i386] + libreoffice-grammarcheck-sk [i386] + libreoffice-grammarcheck-sl [i386] + libreoffice-grammarcheck-sr [i386] + libreoffice-grammarcheck-ss [i386] + libreoffice-grammarcheck-st [i386] + libreoffice-grammarcheck-sv [i386] + libreoffice-grammarcheck-ta [i386] + libreoffice-grammarcheck-te [i386] + libreoffice-grammarcheck-tg [i386] + libreoffice-grammarcheck-th [i386] + libreoffice-grammarcheck-tn [i386] + libreoffice-grammarcheck-tr [i386] + libreoffice-grammarcheck-ts [i386] + libreoffice-grammarcheck-ug [i386] + libreoffice-grammarcheck-uk [i386] + libreoffice-grammarcheck-uz [i386] + libreoffice-grammarcheck-ve [i386] + libreoffice-grammarcheck-vi [i386] + libreoffice-grammarcheck-xh [i386] + libreoffice-grammarcheck-zh-cn [i386] + libreoffice-grammarcheck-zh-tw [i386] + libreoffice-grammarcheck-zu [i386] + libreoffice-help-af [i386] + libreoffice-help-ar [i386] + libreoffice-help-as [i386] + libreoffice-help-ast [i386] + libreoffice-help-be [i386] + libreoffice-help-bg [i386] + libreoffice-help-bn [i386] + libreoffice-help-br [i386] + libreoffice-help-bs [i386] + libreoffice-help-cy [i386] + libreoffice-help-en [i386] + libreoffice-help-en-za [i386] + libreoffice-help-eo [i386] + libreoffice-help-fa [i386] + libreoffice-help-ga [i386] + libreoffice-help-gu [i386] + libreoffice-help-he [i386] + libreoffice-help-hr [i386] + libreoffice-help-id [i386] + libreoffice-help-is [i386] + libreoffice-help-ka [i386] + libreoffice-help-ku [i386] + libreoffice-help-lt [i386] + libreoffice-help-lv [i386] + libreoffice-help-mk [i386] + libreoffice-help-ml [i386] + libreoffice-help-mn [i386] + libreoffice-help-mr [i386] + libreoffice-help-nb [i386] + libreoffice-help-ne [i386] + libreoffice-help-nn [i386] + libreoffice-help-nr [i386] + libreoffice-help-nso [i386] + libreoffice-help-oc [i386] + libreoffice-help-or [i386] + libreoffice-help-pa-in [i386] + libreoffice-help-ro [i386] + libreoffice-help-rw [i386] + libreoffice-help-si [i386] + libreoffice-help-sr [i386] + libreoffice-help-ss [i386] + libreoffice-help-st [i386] + libreoffice-help-ta [i386] + libreoffice-help-te [i386] + libreoffice-help-tg [i386] + libreoffice-help-th [i386] + libreoffice-help-tn [i386] + libreoffice-help-tr [i386] + libreoffice-help-ts [i386] + libreoffice-help-ug [i386] + libreoffice-help-uk [i386] + libreoffice-help-uz [i386] + libreoffice-help-ve [i386] + libreoffice-help-vi [i386] + libreoffice-help-xh [i386] + libreoffice-help-zu [i386] + libreoffice-kab [i386] + libreoffice-l10n-common [i386] + libsafe [i386] + libsbml5-dev [i386] + libshark-dev [i386] + libshib2-doc (= 2.4.3+dfsg-5) [i386] + libshogun-dev [i386] + libslepc3.0.0-dev [i386] + libsolr-java-doc [i386] + libspherepack-dev [i386] + libspooles2.2-dev [i386] + libssl0.9.8-dbg [i386] + libswarm2-dev [i386] + libsys-info-os-perl [i386] + libtagsoup-java [i386] + libtao-2.0.3 [i386] + libtao-dev [i386] + libtao-orbsvcs-2.0.3 [i386] + libteem1 [i386] + libtet1.4.2-dev [i386] + libtext-balanced-perl [i386] + libtext-wrap-perl [i386] + libtrilinos-dev [i386] + libtrilinos-doc [i386] + libvalhalla-doc (= 2.0.0-4+b1) [i386] + libvdk1-dev [i386] + libvisad-java [i386] + libvistaio-dev [i386] + libvtk5.4 [i386] + libwhy-coq (= 2.30+dfsg-5+b1) [i386] + libxc [i386] + libxc-dev [i386] + libxml-libxml-devel-setlinenumber-perl [i386] + life-apps [i386] + linoccult [i386] + linux-debug [i386] + linux-image-2.4 [i386] + linux-image-2.6 [i386] + linux-image-2.6-rt [i386] + linuxprinting.org-ppds [i386] + linuxsampler [i386] + lipsia [i386] + logol-bin [i386] + logomat-m [i386] + lsb-rpm [i386] + ltrsift [i386] + lua-torch5 [i386] + lua5.1-zlib [i386] + lucy [i386] + lum [i386] + luma [i386] + macs [i386] + mage2tab [i386] + magicsquare [i386] + magnus [i386] + maker2 [i386] + malted [i386] + mapnik-viewer [i386] + mapready [i386] + mapserver [i386] + maris [i386] + martj [i386] + matlab-spm8 [i386] + matlab2tikz [i386] + matrox-tools [i386] + mauvealigner [i386] + maxd [i386] + mayam [i386] + mclust [i386] + meabench [i386] + mediaproxy [i386] + medintux [i386] + medisnap [i386] + meego-packaging-tools [i386] + mek [i386] + meme [i386] + mercurial-buildpackage [i386] + mesa-test-tools [i386] + mesquite [i386] + metamail [i386] + metarep [i386] + mha4mysql-master [i386] + mia-tools [i386] + mialmpick [i386] + microbiomeutil [i386] + micromanager [i386] + midas [i386] + migrate [i386] + minimus [i386] + mipav [i386] + mirbase [i386] + mirrormed [i386] + mirth [i386] + miscpsycho [i386] + miview [i386] + mixminion [i386] + mjpegtools (>= 1:1.8.0) [i386] + mjpegtools [i386] + mni-autoreg [i386] + mni-colin27-nifti [i386] + mni-icbm152-nlin-2009 [i386] + mni-n3 [i386] + modconf [i386] + molden [i386] + molekel [i386] + molphy [i386] + monkeys-audio [i386] + monodoc-gecko-manual [i386] + monodoc-gtk-manual [i386] + moose [i386] + mosaik-aligner [i386] + mozart-gtk [i386] + mozilla-browser (>= 2:1.7) [i386] + mozilla-mailnews (>= 2:1.7) [i386] + mozilla-mplayer [i386] + mozilla-spellchecker [i386] + mozilla-thunderbird [i386] + mozplugger [i386] + mpi-default [i386] + mpi-defaults-bin [i386] + mpi-doc [i386] + mpich-bin [i386] + mpsqed [i386] + mrisim [i386] + msatfinder [i386] + mueller7-mova [i386] + mueller7accent-mova [i386] + mugsy [i386] + muine [i386] + mule-ucs [i386] + mumble-server-web [i386] + mummergpu [i386] + murasaki [i386] + musmap [i386] + mview [i386] + mx-dataacquisition [i386] + myspell-dictionary-as [i386] + myspell-dictionary-ast [i386] + myspell-dictionary-bn [i386] + myspell-dictionary-br [i386] + myspell-dictionary-bs [i386] + myspell-dictionary-cy [i386] + myspell-dictionary-dz [i386] + myspell-dictionary-gu [i386] + myspell-dictionary-hi [i386] + myspell-dictionary-id [i386] + myspell-dictionary-is [i386] + myspell-dictionary-ja [i386] + myspell-dictionary-ka [i386] + myspell-dictionary-km [i386] + myspell-dictionary-mk [i386] + myspell-dictionary-ml [i386] + myspell-dictionary-mn [i386] + myspell-dictionary-mr [i386] + myspell-dictionary-nr [i386] + myspell-dictionary-nso [i386] + myspell-dictionary-oc [i386] + myspell-dictionary-om [i386] + myspell-dictionary-or [i386] + myspell-dictionary-pa-in [i386] + myspell-dictionary-rw [i386] + myspell-dictionary-si [i386] + myspell-dictionary-sl [i386] + myspell-dictionary-ss [i386] + myspell-dictionary-st [i386] + myspell-dictionary-ta [i386] + myspell-dictionary-te [i386] + myspell-dictionary-tg [i386] + myspell-dictionary-tn [i386] + myspell-dictionary-ts [i386] + myspell-dictionary-ug [i386] + myspell-dictionary-ve [i386] + myspell-dictionary-xh [i386] + myspell-dictionary-zh-cn [i386] + myspell-dictionary-zh-tw [i386] + myspell-dictionary-zu [i386] + mythes-af [i386] + mythes-ar [i386] + mythes-as [i386] + mythes-ast [i386] + mythes-be [i386] + mythes-bg [i386] + mythes-bn [i386] + mythes-br [i386] + mythes-bs [i386] + mythes-cy [i386] + mythes-da [i386] + mythes-dz [i386] + mythes-el [i386] + mythes-en-za [i386] + mythes-eo [i386] + mythes-es [i386] + mythes-et [i386] + mythes-eu [i386] + mythes-fa [i386] + mythes-fi [i386] + mythes-ga [i386] + mythes-gl [i386] + mythes-gu [i386] + mythes-he [i386] + mythes-hi [i386] + mythes-hr [i386] + mythes-id [i386] + mythes-is [i386] + mythes-ja [i386] + mythes-ka [i386] + mythes-km [i386] + mythes-ko [i386] + mythes-ku [i386] + mythes-lt [i386] + mythes-lv [i386] + mythes-mk [i386] + mythes-ml [i386] + mythes-mn [i386] + mythes-mr [i386] + mythes-nb [i386] + mythes-nl [i386] + mythes-nn [i386] + mythes-nr [i386] + mythes-nso [i386] + mythes-oc [i386] + mythes-om [i386] + mythes-or [i386] + mythes-pa-in [i386] + mythes-pt [i386] + mythes-pt-br [i386] + mythes-rw [i386] + mythes-si [i386] + mythes-sl [i386] + mythes-sr [i386] + mythes-ss [i386] + mythes-st [i386] + mythes-sv [i386] + mythes-ta [i386] + mythes-te [i386] + mythes-tg [i386] + mythes-th [i386] + mythes-tn [i386] + mythes-tr [i386] + mythes-ts [i386] + mythes-ug [i386] + mythes-uk [i386] + mythes-uz [i386] + mythes-ve [i386] + mythes-vi [i386] + mythes-xh [i386] + mythes-zh-cn [i386] + mythes-zh-tw [i386] + mythes-zu [i386] + narval-utils [i386] + ncbi-seg [i386] + ncl [i386] + neo [i386] + nest [i386] + netepi-analysis [i386] + netepi-collection [i386] + netgen [i386] + netgen-doc [i386] + neurodata [i386] + ngila [i386] + ngspice [i386] + nictools-nopci [i386] + nipy-suite [i386] + nmoldyn [i386] + noatun [i386] + noatun-plugins [i386] + nordugrid-arc-nox [i386] + norsnet [i386] + norsp [i386] + noteedit [i386] + nrec [i386] + nspike [i386] + nvidia-current [i386] + nvidia-current-updates [i386] + nvidia-libopencl1-dev [i386] + nw-align [i386] + nxml-mode [i386] + oases [i386] + obo-edit [i386] + octace-bioinfo [i386] + octave-bioinfo [i386] + octave-dicom [i386] + octavede [i386] + octaviz [i386] + octopus [i386] + ogle-gui [i386] + ohphone [i386] + ohphone-basic [i386] + oligoarrayaux [i386] + omegamap [i386] + omero [i386] + omninotify [i386] + opencascade-draw [i386] + openchrom [i386] + opencpn [i386] + opendap [i386] + opendicom.net [i386] + openelectrophy [i386] + openemr [i386] + openev [i386] + openfoam [i386] + openjump [i386] + openmolar [i386] + openmovieeditor [i386] + openoffice.org-core (>= 1:2.4) [i386] + openoffice.org-core (>= 2.0.2) [i386] + openoffice.org-hunspell [i386] + openpms [i386] + openrep [i386] + openser [i386] + opensesame [i386] + opensourcepacs [i386] + opensync-plugin-gpe [i386] + openthesaurus-de-kword [i386] + openturns-wrapper [i386] + openvas-client [i386] + openvas-scanner [i386] + openvas-server [i386] + openvibe [i386] + openvswitch-datapath-module [i386] + openwalnut [i386] + operondb [i386] + oprofile (>= 0.9) [i386] + opticks [i386] + orbfit [i386] + orca [i386] + orfeo [i386] + orocos-bfl [i386] + orocos-kdl [i386] + orocos-ocl [i386] + orocos-rtt [i386] + orthanc [i386] + osh [i386] + osmembrane [i386] + osmosis-plugin-borderextract [i386] + osra [i386] + osrm [i386] + packaging-tools [i386] + pal2nal [i386] + paml [i386] + pandas [i386] + panorama [i386] + partigene [i386] + partlibrary [i386] + passivetex (>> 1.25-2) [i386] + patchclamp [i386] + patman [i386] + patristic [i386] + pcma [i386] + pcmcia-cs [i386] + pcsim [i386] + pebl [i386] + pencil [i386] + perlsgml [i386] + pessulus [i386] + petsc-dbg (= 3.2.dfsg-6) [i386] + petsc-dbg [i386] + pfaat [i386] + pftools [i386] + pgdesigner [i386] + pgfplots [i386] + pgp-i [i386] + phagefinder [i386] + phonon-backend-mplayer [i386] + php-crypt-gpg [i386] + php-gdcm [i386] + php5-suhosin [i386] + phpbb2 [i386] + phpphylotree [i386] + phpunit-dbunit [i386] + phylographer [i386] + phyloviz-core [i386] + phylowin [i386] + piano [i386] + pike [i386] + pike7.6 [i386] + pike7.8 [i386] + pilot-qof [i386] + pinentry-x2go [i386] + planunc [i386] + plasma-scriptengine-kimono [i386] + platinumarts-sandbox [i386] + plato [i386] + plot-digitizer [i386] + pm-utils-light [i386] + points2grid [i386] + polsarpro [i386] + polybori-gui [i386] + postgresql-8.4 [i386] + postgresql-server [i386] + potassco-guide [i386] + povray [i386] + prank [i386] + predictnls [i386] + predictprotein [i386] + proalign [i386] + profbval [i386] + profisis [i386] + profit [i386] + proj [i386] + proofgeneral-coq [i386] + proofgeneral-minlog [i386] + prot4est [i386] + proteus [i386] + pscan-tfbs [i386] + psignifit3 [i386] + psipred [i386] + psom [i386] + psych [i386] + psychlops [i386] + psychometric [i386] + psychotree [i386] + psyphy [i386] + psytoolkit [i386] + pyaps [i386] + pybrain [i386] + pycgns [i386] + pydap [i386] + pymarc [i386] + pymeg [i386] + pynn [i386] + pyode [i386] + pyrophosphate-tools [i386] + pysurfer [i386] + python-4suite-xml [i386] + python-astropy-legacy [i386] + python-biom-format [i386] + python-casmoothing [i386] + python-clips [i386] + python-elemental [i386] + python-faulthandler-dbg (= 2.0-1) [i386] + python-flaskext.babel [i386] + python-gdchart [i386] + python-gettext [i386] + python-gnome2-extras [i386] + python-iolabs [i386] + python-jppy [i386] + python-librcsb-core-wrapper [i386] + python-libxmp [i386] + python-mapnik [i386] + python-maxdb [i386] + python-mmtk [i386] + python-mzml [i386] + python-mzml-doc [i386] + python-netcdf4 [i386] + python-neuron [i386] + python-nipy [i386] + python-openslide [i386] + python-orange [i386] + python-pandas-doc [i386] + python-pgsql (>= 2.5.1-1) [i386] + python-poker-network [i386] + python-psyco [i386] + python-psycopg [i386] + python-pymc [i386] + python-pysam [i386] + python-pysqlite [i386] + python-qt3 (>= 3.0) [i386] + python-qt3 [i386] + python-reaper [i386] + python-restrictedpython [i386] + python-sardana [i386] + python-scikits-optimization [i386] + python-sexy [i386] + python-spherepack [i386] + python-spykeutils [i386] + python-stats [i386] + python-tamtam-data [i386] + python-timbl [i386] + python-tk (= 2.7.3-4+deb7u1) [i386] + python-visa [i386] + python-xml [i386] + python-xmms [i386] + python-z3c.recipe.sphinxdoc [i386] + python-zope.browserpage [i386] + python-zope.browserresource [i386] + python-zope.container [i386] + python-zope.pagetemplate [i386] + python-zope.site [i386] + python-zope.tal (>= 3.5.0) [i386] + python-zsync [i386] + python2.3-xml [i386] + python3-tk (>= 3.2.3-6) [i386] + python3-wxgtk [i386] + python3-wxgtk2.8 [i386] + pywps [i386] + pyxid [i386] + qmapcontrol [i386] + qpopper-drac [i386] + qrisk2 [i386] + qrtailab [i386] + qtdmm [i386] + qtlcart [i386] + quack-el [i386] + quaneko [i386] + quanta [i386] + qucs [i386] + r-ape [i386] + r-cran-acepack [i386] + r-cran-aplpack [i386] + r-cran-beeswarm [i386] + r-cran-bigmemory [i386] + r-cran-fcalendar [i386] + r-cran-fecofin [i386] + r-cran-fseries [i386] + r-cran-ncdf [i386] + r-cran-rmetrics [i386] + r-cran-rpvm [i386] + r-cran-testthat [i386] + r-other-gking-matchit [i386] + r-other-valdar-bagphenotype.library [i386] + ratfor77 [i386] + ray-denovoassembler [i386] + rbs-finder [i386] + rdp-classifier [i386] + readom [i386] + realplayer [i386] + recombine [i386] + relacs [i386] + remitt [i386] + repast [i386] + repeatmasker [i386] + resmedicinae [i386] + rmblast [i386] + roadmap-gtk2 [i386] + roadmap-qt [i386] + roboop [i386] + roche454ace2caf [i386] + roeadmap [i386] + roipac [i386] + root-plugin-net-netx [i386] + root-plugin-proof-xproof [i386] + rose [i386] + rosetta [i386] + rtnet [i386] + rtxi [i386] + ruby-fastgettext [i386] + ruby-fcgi [i386] + run-one [i386] + runit-run [i386] + saga [i386] + sagemath [i386] + salome [i386] + samba-gtk [i386] + sap [i386] + science-bci [i386] + scilab-overload [i386] + scilab-scimax [i386] + scilab-sivp [i386] + scilab-swt [i386] + scim-anthy [i386] + scim-hangul [i386] + scim-pinyin [i386] + scim-prime [i386] + scim-uim [i386] + score-reading-trainer [i386] + sdm [i386] + sdr [i386] + sensible-browser [i386] + seqtk [i386] + sequenceconverter.app [i386] + ser [i386] + sessioninstaller [i386] + sga [i386] + sheepdog [i386] + shogun-python-modular [i386] + shorlfilter [i386] + sidplay2fp [i386] + sift [i386] + simph323 [i386] + simplythml [i386] + singular [i386] + sjjb-map-icons [i386] + skencil [i386] + slang-gtk [i386] + slicer [i386] + slony1-bin [i386] + smalt [i386] + smlnj-doc [i386] + sms-pl [i386] + snap [i386] + snaphu [i386] + snpeff [i386] + soapdenovo [i386] + sodipodi [i386] + solid [i386] + spacechart [i386] + spatialite-gui [i386] + speedbar [i386] + spglib [i386] + spice [i386] + spider [i386] + spike [i386] + spis [i386] + splitstree [i386] + spm8 [i386] + spread-phy [i386] + spring-map [i386] + spring-maps-deltasiege [i386] + spring-mod [i386] + spring-mods-kernelpanic [i386] + spykeview [i386] + sqlclinic [i386] + sra-sdk [i386] + ssaha [i386] + ssystem [i386] + stabilitycalc [i386] + star [i386] + stars [i386] + starttls [i386] + stegavorto [i386] + stir [i386] + strap [i386] + streamtuner [i386] + strigi-plugins [i386] + sucrose-0.88 [i386] + sufary [i386] + sugar-0.84 [i386] + sugar-0.88 [i386] + sugar-0.96 [i386] + sugar-browse-activity [i386] + sugar-browse-activity-0.86 [i386] + sugar-chat-activity [i386] + sugar-chat-activity-0.86 [i386] + sugar-doc [i386] + sugar-emulator-0.88 [i386] + sugar-imageviewer-activity [i386] + sugar-imageviewer-activity-0.96 [i386] + sugar-jukebox-activity [i386] + sugar-jukebox-activity-0.96 [i386] + sugar-log-activity [i386] + sugar-log-activity-0.86 [i386] + sugar-read-activity-0.86 [i386] + sugar-session [i386] + sugar-session-0.88 [i386] + sugar-write-activity [i386] + sugar-write-activity-0.86 [i386] + sugar-write-activity-0.88 [i386] + sun-java6-fonts [i386] + svgcairo [i386] + swat2 [i386] + swfupload [i386] + swi-prolog-clib [i386] + swi-prolog-http [i386] + swi-prolog-semweb [i386] + swi-prolog-sgml [i386] + swi-prolog-table [i386] + swi-prolog-xpce [i386] + systemc [i386] + t-gnus [i386] + tac-plus [i386] + tacg [i386] + tads-dev [i386] + tandem-mass [i386] + task-c-devel [i386] + task-devel-common [i386] + taverna [i386] + taxinspector [i386] + tc-utils [i386] + tempo [i386] + tetra [i386] + texlive-base-recommended [i386] + thera-pi [i386] + thunar-thumbnailers [i386] + tigr-assembler [i386] + tigr-glimmer-mg [i386] + tilemill [i386] + tinker [i386] + tinyheb [i386] + tinyows [i386] + tipcutils [i386] + tkdvi [i386] + tkman [i386] + tkosm [i386] + tochnog [i386] + toolame [i386] + tophat [i386] + totalopenstation [i386] + touchfreeze [i386] + trac-spamfilter [i386] + trac-wikirename [i386] + trace2dbest [i386] + tracetuner [i386] + treebuilder3d [i386] + treetime [i386] + treetool [i386] + treeview [i386] + trellis-neuro [i386] + tripal [i386] + trnascan-se [i386] + tscope [i386] + ttf-thryomanes [i386] + ttf-ubuntu-font-family (>= 0.80-0ubuntu1~medium) [i386] + ttf2pt1 [i386] + tuxpaint (= 1:0.9.21) [i386] + twain [i386] + twlog [i386] + ubuntu-system-service [i386] + ugene [i386] + uhd-contrib-images [i386] + ultrastar-ng-xine [i386] + unionfs-modules [i386] + uniprime [i386] + update-cluster [i386] + util-vserver [i386] + uw-prism [i386] + vala [i386] + varkon [i386] + varres [i386] + vbpp [i386] + vbs [i386] + vcf [i386] + vcg [i386] + vdr-enigmang-icons [i386] + vegan [i386] + vidcontrol [i386] + vienna-rna [i386] + vipec [i386] + virtuoso-vad-dbpedia [i386] + virtuoso-vad-facetedbrowser [i386] + visionegg [i386] + visit [i386] + visualvm [i386] + vmd [i386] + vtp [i386] + wanna-build [i386] + wannier90 [i386] + wannier90-dev [i386] + watanabe-vfont (>> 1-6.6) [i386] + wdg-html-reference [i386] + wgs-assembler [i386] + wims [i386] + wmii2 [i386] + wmsun [i386] + wnsqlbuilder [i386] + wordtrans-console [i386] + wordtrans-data [i386] + wordtrans-kde [i386] + x-tandem-pipeline [i386] + x-www-browser [i386] + xarith [i386] + xastir [i386] + xcin (>= 2.5.0-0.2) [i386] + xdialog [i386] + xem [i386] + xemacs21-bin [i386] + xenomai [i386] + xephem [i386] + xfce4-xfapplet-plugin [i386] + xfonts-base-transcoded [i386] + xfonts-biznet-iso-8859-2-100dpi [i386] + xfonts-biznet-iso-8859-2-75dpi [i386] + xfonts-biznet-iso-8859-2-base [i386] + xfonts-cjk [i386] + xfree86-common [i386] + xfreerdp [i386] + xgdvi [i386] + xlispstat [i386] + xlockmore [i386] + xmcd [i386] + xmind [i386] + xnat [i386] + xorsa [i386] + xpdf-reader [i386] + xsidplay [i386] + xtranslate [i386] + xul-ext-gnome-keyring [i386] + xul-ext-torbutton [i386] + xvid4conf [i386] + xvidcap [i386] + xvidtune [i386] + y4mscaler [i386] + youtube-dl [i386] + zalign [i386] + zcode-game [i386] + zodiac-zeden [i386] + zorp-doc [i386] + zotero [i386] + zygrib [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot6Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot6Test_gold new file mode 100644 index 00000000..0cd55905 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot6Test_gold @@ -0,0 +1,3800 @@ +Loading packages... +Verifying... +Missing dependencies (3797): + 915resolution [amd64] + 915resolution [i386] + 9fonts [amd64] + 9fonts [i386] + abakus [amd64] + abakus [i386] + abyss [amd64] + abyss [i386] + acl-installer [amd64] + acl-installer [i386] + acl-pro-installer [amd64] + acl-pro-installer [i386] + act [amd64] + act [i386] + ada-reference-manual [amd64] + ada-reference-manual [i386] + ada-reference-manual-html [amd64] + ada-reference-manual-html [i386] + ada-reference-manual-info [amd64] + ada-reference-manual-info [i386] + ada-reference-manual-pdf [amd64] + ada-reference-manual-pdf [i386] + ada-reference-manual-text [amd64] + ada-reference-manual-text [i386] + adept [amd64] + adept [i386] + adore-doris [amd64] + adore-doris [i386] + aeskeyfinder [amd64] + aeskeyfinder [i386] + afio [amd64] + afio [i386] + afni [amd64] + afni [i386] + agrep [amd64] + agrep [i386] + alcovebook-sgml [amd64] + alcovebook-sgml [i386] + amos-assembler [amd64] + amos-assembler [i386] + amoscmp [amd64] + amoscmp [i386] + anagramarama [amd64] + anagramarama [i386] + anfo [amd64] + anfo [i386] + angband-audio [amd64] + angband-audio [i386] + aolserver-doc (>= 4.0.1-1) [amd64] + aolserver-doc (>= 4.0.1-1) [i386] + apache [amd64] + apache [i386] + apache-ssl [amd64] + apache-ssl [i386] + ape [amd64] + ape [i386] + apollo [amd64] + apollo [i386] + apport [amd64] + apport [i386] + apport-gtk [amd64] + apport-gtk [i386] + apt-howto-fr [amd64] + apt-howto-fr [i386] + apt-spacewalk [amd64] + apt-spacewalk [i386] + apturl [amd64] + apturl [i386] + arachne [amd64] + arachne [i386] + arb [amd64] + arb [i386] + arc-brave [amd64] + arc-brave [i386] + arc-colors [amd64] + arc-colors [i386] + arc-dust [amd64] + arc-dust [i386] + arc-human [amd64] + arc-human [i386] + arc-illustrious [amd64] + arc-illustrious [i386] + arc-noble [amd64] + arc-noble [i386] + arc-wine [amd64] + arc-wine [i386] + arc-wise [amd64] + arc-wise [i386] + arrayprobe [amd64] + arrayprobe [i386] + artemis [amd64] + artemis [i386] + asap [amd64] + asap [i386] + asiya24-vfont (>> 1-6.6) [amd64] + asiya24-vfont (>> 1-6.6) [i386] + asiya24-vfont [amd64] + asiya24-vfont [i386] + atlantik [amd64] + atlantik [i386] + atlantikdesigner [amd64] + atlantikdesigner [i386] + atompaw [amd64] + atompaw [i386] + audiooss [amd64] + audiooss [i386] + aufs-modules [amd64] + aufs-modules [i386] + augustus [amd64] + augustus [i386] + autodocktools [amd64] + autodocktools [i386] + automake1.9-doc [amd64] + automake1.9-doc [i386] + avant-window-navigator [amd64] + avant-window-navigator [i386] + avida-base [amd64] + avida-base [i386] + avl [amd64] + avl [i386] + ax25-apps [amd64] + ax25-apps [i386] + axparafit [amd64] + axparafit [i386] + axpcoords [amd64] + axpcoords [i386] + babel-1.4.0-doc [amd64] + babel-1.4.0-doc [i386] + bagphenotype [amd64] + bagphenotype [i386] + bambus [amd64] + bambus [i386] + bamtools [amd64] + bamtools [i386] + bastille [amd64] + bastille [i386] + bazaar [amd64] + bazaar [i386] + bbkeys (>= 0.9) [amd64] + bbkeys (>= 0.9) [i386] + beads [amd64] + beads [i386] + beagle [amd64] + beagle [i386] + beast-mcmc [amd64] + beast-mcmc [i386] + best [amd64] + best [i386] + bestgui [amd64] + bestgui [i386] + bglibs-doc [amd64] + bglibs-doc [i386] + bgoffice-dict-downloader [amd64] + bgoffice-dict-downloader [i386] + big-blast [amd64] + big-blast [i386] + bigdft [amd64] + bigdft [i386] + bigsdb [amd64] + bigsdb [i386] + bind [amd64] + bind [i386] + bioclipse [amd64] + bioclipse [i386] + bioimagesuite [amd64] + bioimagesuite [i386] + bioimagexd [amd64] + bioimagexd [i386] + biosig [amd64] + biosig [i386] + biostrings [amd64] + biostrings [i386] + bison-doc [amd64] + bison-doc [i386] + blimps-utils [amd64] + blimps-utils [i386] + blixem [amd64] + blixem [i386] + blox [amd64] + blox [i386] + bluespike [amd64] + bluespike [i386] + blzpack [amd64] + blzpack [i386] + boinc-app-milkyway [amd64] + boinc-app-milkyway [i386] + boinc-app-seti [amd64] + boinc-app-seti [i386] + boot-floppies [amd64] + boot-floppies [i386] + bpalogin [amd64] + bpalogin [i386] + brainvisa [amd64] + brainvisa [i386] + brlcad [amd64] + brlcad [i386] + browser-plugin-libreoffice [amd64] + browser-plugin-libreoffice [i386] + btk-core [amd64] + btk-core [i386] + bve-route [amd64] + bve-route [i386] + bve-train [amd64] + bve-train [i386] + cactus [amd64] + cactus [i386] + caftools [amd64] + caftools [i386] + cairo-dock-plugins (>= 2.1.3.10) [amd64] + cairo-dock-plugins (>= 2.1.3.10) [i386] + camitk-imp [amd64] + camitk-imp [i386] + cap3 [amd64] + cap3 [i386] + capaware [amd64] + capaware [i386] + caret-data (>= 5.6.2~dfsg.1~) [amd64] + caret-data (>= 5.6.2~dfsg.1~) [i386] + casacore-dev [amd64] + casacore-dev [i386] + casacore-tools [amd64] + casacore-tools [i386] + cascadenik [amd64] + cascadenik [i386] + cassandra [amd64] + cassandra [i386] + cclib-data [amd64] + cclib-data [i386] + cdbfasta [amd64] + cdbfasta [i386] + cdda2wav [amd64] + cdda2wav [i386] + cdmedicpacs [amd64] + cdmedicpacs [i386] + cdna-db [amd64] + cdna-db [i386] + celestia-common-nonfree [amd64] + celestia-common-nonfree [i386] + celestia-kde [amd64] + celestia-kde [i386] + cellprofiler [amd64] + cellprofiler [i386] + cgiwrap [amd64] + cgiwrap [i386] + checkmp3 [amd64] + checkmp3 [i386] + chimeraslayer [amd64] + chimeraslayer [i386] + chronus [amd64] + chronus [i386] + cinema [amd64] + cinema [i386] + cinepaint [amd64] + cinepaint [i386] + clacks-common [amd64] + clacks-common [i386] + clearhealth [amd64] + clearhealth [i386] + clhep [amd64] + clhep [i386] + clojure [amd64] + clojure [i386] + clonalorigin [amd64] + clonalorigin [i386] + clustalw-mpi [amd64] + clustalw-mpi [i386] + cluster3 [amd64] + cluster3 [i386] + clustlaw [amd64] + clustlaw [i386] + cmap [amd64] + cmap [i386] + cnrun [amd64] + cnrun [i386] + coalesce [amd64] + coalesce [i386] + code-aster-gui [amd64] + code-aster-gui [i386] + codonw [amd64] + codonw [i386] + comedi-source [amd64] + comedi-source [i386] + compclust [amd64] + compclust [i386] + compiz [amd64] + compiz [i386] + concavity [amd64] + concavity [i386] + conquest-dicom-server [amd64] + conquest-dicom-server [i386] + conservation-code [amd64] + conservation-code [i386] + context-doc-nonfree [amd64] + context-doc-nonfree [i386] + context-nonfree [amd64] + context-nonfree [i386] + contralign [amd64] + contralign [i386] + coot [amd64] + coot [i386] + copycat [amd64] + copycat [i386] + coq-doc [amd64] + coq-doc [i386] + cpp-doc [amd64] + cpp-doc [i386] + crafty [amd64] + crafty [i386] + crea [amd64] + crea [i386] + crossbow [amd64] + crossbow [i386] + crossfire-edit [amd64] + crossfire-edit [i386] + cufflinks [amd64] + cufflinks [i386] + cuneiform [amd64] + cuneiform [i386] + cupsomatic-ppd [amd64] + cupsomatic-ppd [i386] + cweb [amd64] + cweb [i386] + cyrus21-imapd (>= 2.1.11) [amd64] + cyrus21-imapd (>= 2.1.11) [i386] + cytoscape [amd64] + cytoscape [i386] + d-collide [amd64] + d-collide [i386] + das-proserver [amd64] + das-proserver [i386] + datafreedom-doc [amd64] + datafreedom-doc [i386] + datafreedom-qsfxsl [amd64] + datafreedom-qsfxsl [i386] + dazzle [amd64] + dazzle [i386] + db4.2-util [amd64] + db4.2-util [i386] + db4.6-util [amd64] + db4.6-util [i386] + dbdesigner [amd64] + dbdesigner [i386] + dcm4chee [amd64] + dcm4chee [i386] + debian-edu-fr-all [amd64] + debian-edu-fr-all [i386] + debian-edu-fr-skels [amd64] + debian-edu-fr-skels [i386] + debian-reference-es [amd64] + debian-reference-es [i386] + debruijn [amd64] + debruijn [i386] + decipher [amd64] + decipher [i386] + device3dfx-module [i386] + devide [amd64] + devide [i386] + di-packages-build [amd64] + di-packages-build [i386] + dicom4j [amd64] + dicom4j [i386] + dicoogle [amd64] + dicoogle [i386] + digikamimageplugins [amd64] + digikamimageplugins [i386] + distmp3 [amd64] + distmp3 [i386] + djbdns [amd64] + djbdns [i386] + dmalloc [amd64] + dmalloc [i386] + doc-debian-uk [amd64] + doc-debian-uk [i386] + doc-html-w3 [amd64] + doc-html-w3 [i386] + doc-linux-de [amd64] + doc-linux-de [i386] + doc-linux-it [amd64] + doc-linux-it [i386] + doc-linux-it-text [amd64] + doc-linux-it-text [i386] + doc-rfc [amd64] + doc-rfc [i386] + docbook5-defguide [amd64] + docbook5-defguide [i386] + dockmanager [amd64] + dockmanager [i386] + doom-wad [amd64] + doom-wad [i386] + doris [amd64] + doris [i386] + dot [amd64] + dot [i386] + dpkg-doc [amd64] + dpkg-doc [i386] + dpt-raidutil [amd64] + dpt-raidutil [i386] + drb [amd64] + drb [i386] + drbd8-module-source (>= 8.0.7) [amd64] + drbd8-module-source (>= 8.0.7) [i386] + drift (>= 2.2.0) [amd64] + drift (>= 2.2.0) [i386] + drjekyll [amd64] + drjekyll [i386] + drugref.org [amd64] + drugref.org [i386] + dti-query [amd64] + dti-query [i386] + dtitk [amd64] + dtitk [i386] + dumputils [amd64] + dumputils [i386] + dvips [amd64] + dvips [i386] + dynare-matlab [amd64] + dynare-matlab [i386] + e-hive [amd64] + e-hive [i386] + earth3d [amd64] + earth3d [i386] + easyspice [amd64] + easyspice [i386] + ecell [amd64] + ecell [i386] + ecg2png [amd64] + ecg2png [i386] + ecs [amd64] + ecs [i386] + edict-fpw [amd64] + edict-fpw [i386] + edtsurf [amd64] + edtsurf [i386] + education-networked-common [amd64] + education-networked-common [i386] + eeglab [amd64] + eeglab [i386] + eegview [amd64] + eegview [i386] + egroupware [amd64] + egroupware [i386] + eieio [amd64] + eieio [i386] + eigensoft [amd64] + eigensoft [i386] + ejs [amd64] + ejs [i386] + elementalclinic [amd64] + elementalclinic [i386] + elexis [amd64] + elexis [i386] + elmer-doc [amd64] + elmer-doc [i386] + elph [amd64] + elph [i386] + emacs-wiki [amd64] + emacs-wiki [i386] + emacs22 [amd64] + emacs22 [i386] + emacs23-common-non-dfsg [amd64] + emacs23-common-non-dfsg [i386] + emacspeak-ss [amd64] + emacspeak-ss [i386] + embassy [amd64] + embassy [i386] + embassy-phylip [amd64] + embassy-phylip [i386] + emokit [amd64] + emokit [i386] + ensembl [amd64] + ensembl [i386] + entangle [amd64] + entangle [i386] + eolisa [amd64] + eolisa [i386] + epics [amd64] + epics [i386] + eprover [amd64] + eprover [i386] + esound-clients [amd64] + esound-clients [i386] + espresso++ [amd64] + espresso++ [i386] + est-db [amd64] + est-db [i386] + estferret [amd64] + estferret [i386] + estscan [amd64] + estscan [i386] + etoys [amd64] + etoys [i386] + etoys-doc [amd64] + etoys-doc [i386] + ettercap [amd64] + ettercap [i386] + exalt [amd64] + exalt [i386] + excavator [amd64] + excavator [i386] + exciting [amd64] + exciting [i386] + exe [amd64] + exe [i386] + expectk [amd64] + expectk [i386] + ezmlm [amd64] + ezmlm [i386] + ezmlm-idx [amd64] + ezmlm-idx [i386] + faac [amd64] + faac [i386] + falcon-dev (= 0.9.6.9-git20120606-2) [amd64] + falcon-dev (= 0.9.6.9-git20120606-2) [i386] + fas [amd64] + fas [i386] + fasta [amd64] + fasta [i386] + fastqc [amd64] + fastqc [i386] + fbxine [amd64] + fbxine [i386] + fdmnes [amd64] + fdmnes [i386] + fenix [amd64] + fenix-plugins-system [amd64] + ferret-vis [amd64] + ferret-vis [i386] + fflas-ffpack [amd64] + fflas-ffpack [i386] + fflas-ffpack-dev-doc [amd64] + fflas-ffpack-dev-doc [i386] + fflas-ffpack-user-doc [amd64] + fflas-ffpack-user-doc [i386] + fglrx [amd64] + fglrx [i386] + fglrx-glx [amd64] + fglrx-glx [i386] + fglrx-updates [amd64] + fglrx-updates [i386] + fieldtrip [amd64] + fieldtrip [i386] + figaro [amd64] + figaro [i386] + fiji [amd64] + fiji [i386] + finex [amd64] + finex [i386] + firmware-bnx2 [amd64] + firmware-bnx2 [i386] + firmware-crystalhd [amd64] + firmware-crystalhd [i386] + firmware-ipw2x00 [amd64] + firmware-ipw2x00 [i386] + firmware-iwlwifi [amd64] + firmware-iwlwifi [i386] + firmware-linux [amd64] + firmware-linux [i386] + firmware-qlogic [amd64] + firmware-qlogic [i386] + flann [amd64] + flann [i386] + flashkard [amd64] + flashkard [i386] + flashplugin-nonfree [amd64] + flashplugin-nonfree [i386] + flashplugin-nonfree-pulse [amd64] + flashplugin-nonfree-pulse [i386] + flightgear (>= 2.0.0) [amd64] + flightgear (>= 2.0.0) [i386] + fluctuate [amd64] + fluctuate [i386] + font-maitreya [amd64] + font-maitreya [i386] + fonts-larabie-deco [amd64] + fonts-larabie-deco [i386] + fonts-mikachan [amd64] + fonts-mikachan [i386] + fonty [amd64] + fonty [i386] + foomatic-gui [amd64] + foomatic-gui [i386] + forester [amd64] + forester [i386] + forge [amd64] + forge [i386] + fortunes-mod [amd64] + fortunes-mod [i386] + fp-units-i386 [amd64] + freeb [amd64] + freeb [i386] + freecad [amd64] + freecad [i386] + freecell-solver [amd64] + freecell-solver [i386] + freefoam [amd64] + freefoam [i386] + freefoam-dev [amd64] + freefoam-dev [i386] + freeicd [amd64] + freeicd [i386] + freemed [amd64] + freemed [i386] + freeshim [amd64] + freeshim [i386] + freesurfer [amd64] + freesurfer [i386] + fsl [amd64] + fsl [i386] + fslview [amd64] + fslview [i386] + fso-deviced-ezx [amd64] + fso-deviced-ezx [i386] + fso-deviced-gta04 [amd64] + fso-deviced-gta04 [i386] + fso-deviced-htc [amd64] + fso-deviced-htc [i386] + fso-deviced-openmoko [amd64] + fso-deviced-openmoko [i386] + fso-deviced-platform [amd64] + fso-deviced-platform [i386] + fso-usaged-platform [amd64] + fso-usaged-platform [i386] + ftools-fv [amd64] + ftools-fv [i386] + fvwm-themes [amd64] + fvwm-themes [i386] + galaxy [amd64] + galaxy [i386] + gambas2 [amd64] + gambas2 [i386] + game-data-packager [amd64] + game-data-packager [i386] + ganttproject [amd64] + ganttproject [i386] + gassst [amd64] + gassst [i386] + gate [amd64] + gate [i386] + gawk-doc [amd64] + gawk-doc [i386] + gazpacho (>= 0.7.1) [amd64] + gazpacho (>= 0.7.1) [i386] + gbioseq [amd64] + gbioseq [i386] + gbrowse-syn [amd64] + gbrowse-syn [i386] + gcc-4.2 [amd64] + gcc-4.2 [i386] + gcc-4.4-doc (>= 4.4.6-15) [amd64] + gcc-4.4-doc (>= 4.4.6-15) [i386] + gcc-4.6-doc (>= 4.6.3-1) [amd64] + gcc-4.6-doc (>= 4.6.3-1) [i386] + gcc-4.7-doc (>= 4.7.2) [amd64] + gcc-4.7-doc (>= 4.7.2) [i386] + gcc-doc (>= 4:4.0.2-1) [amd64] + gcc-doc (>= 4:4.0.2-1) [i386] + gcc-doc [amd64] + gcc-doc [i386] + gccgo-4.7-doc [amd64] + gccgo-4.7-doc [i386] + gcj [amd64] + gcj [i386] + gdb-doc [amd64] + gdb-doc [i386] + gdm [amd64] + gdm [i386] + geant4 [amd64] + geant4 [i386] + gebabbel [amd64] + gebabbel [i386] + geg [amd64] + geg [i386] + genemark [amd64] + genemark [i386] + genesis [amd64] + genesis [i386] + genesplicer [amd64] + genesplicer [i386] + genetrack [amd64] + genetrack [i386] + genezilla [amd64] + genezilla [i386] + genographer [amd64] + genographer [i386] + genometools [amd64] + genometools [i386] + geoip-database-contrib [amd64] + geoip-database-contrib [i386] + geonetwork [amd64] + geonetwork [i386] + geonext [amd64] + geonext [i386] + gerris [amd64] + gerris [i386] + getdp [amd64] + getdp [i386] + getlive [amd64] + getlive [i386] + getorb [amd64] + getorb [i386] + gfortran-4.4-doc [amd64] + gfortran-4.4-doc [i386] + gfortran-4.6-doc [amd64] + gfortran-4.6-doc [i386] + gfortran-4.7-doc [amd64] + gfortran-4.7-doc [i386] + gfortran-doc [amd64] + gfortran-doc [i386] + gfxboot-themes [amd64] + gfxboot-themes [i386] + ggradebook [amd64] + ggradebook [i386] + ghdl [amd64] + ghdl [i386] + giant [amd64] + giant [i386] + gifscale [amd64] + gifscale [i386] + gimageview [amd64] + gimageview [i386] + gimias [amd64] + gimias [i386] + gimp-svg [amd64] + gimp-svg [i386] + gimp1.2-perl [amd64] + gimp1.2-perl [i386] + gir1.2-launchpad-integration-3.0 [amd64] + gir1.2-launchpad-integration-3.0 [i386] + givaro-dev-doc [amd64] + givaro-dev-doc [i386] + givaro-users-doc [amd64] + givaro-users-doc [i386] + glibc-doc-reference [amd64] + glibc-doc-reference [i386] + gliese [amd64] + gliese [i386] + glimmerhmm [amd64] + glimmerhmm [i386] + gmap [amd64] + gmap [i386] + gmerlin-encoders [amd64] + gmerlin-encoders [i386] + gmsh [amd64] + gmsh [i386] + gmtsar [amd64] + gmtsar [i386] + gmv [amd64] + gmv [i386] + gnat-4.6-doc [amd64] + gnat-4.6-doc [i386] + gnatsweb [amd64] + gnatsweb [i386] + gnochm [amd64] + gnochm [i386] + gnome-pilot [amd64] + gnome-pilot [i386] + gnome-themes-more [amd64] + gnome-themes-more [i386] + gnome-utils [amd64] + gnome-utils [i386] + gnome-web-photo [amd64] + gnome-web-photo [i386] + gnumail.app [amd64] + gnumail.app [i386] + gnus [amd64] + gnus [i386] + gok [amd64] + gok [i386] + goldedplus [amd64] + goldedplus [i386] + google-earth [amd64] + google-earth [i386] + googleearth-package [amd64] + googleearth-package [i386] + gosa-si-server [amd64] + gosa-si-server [i386] + gpapers [amd64] + gpapers [i386] + gpaw [amd64] + gpaw [i386] + gpg-agent [amd64] + gpg-agent [i386] + gpsdrive [amd64] + gpsdrive [i386] + gpsim-lcd [amd64] + gpsim-lcd [i386] + gpsim-lded [amd64] + gpsim-lded [i386] + gpsim-led [amd64] + gpsim-led [i386] + gpsim-logic [amd64] + gpsim-logic [i386] + gpsmanshp (>= 2.2) [amd64] + gpsmanshp (>= 2.2) [i386] + gpsshogi [amd64] + gpsshogi [i386] + gr-fcd [amd64] + gr-fcd [i386] + grace6 [amd64] + grace6 [i386] + griffith-extra-artwork (>= 0.9) [amd64] + griffith-extra-artwork (>= 0.9) [i386] + grits [amd64] + grits [i386] + grogui [amd64] + grogui [i386] + gromacs-lam [amd64] + gromacs-lam [i386] + gs [amd64] + gs [i386] + gs-common [amd64] + gs-common [i386] + gsdview [amd64] + gsdview [i386] + gsl-doc-info [amd64] + gsl-doc-info [i386] + gsl-doc-pdf [amd64] + gsl-doc-pdf [i386] + gsl-ref-html [amd64] + gsl-ref-html [i386] + gsl-ref-psdoc [amd64] + gsl-ref-psdoc [i386] + gspiceui [amd64] + gspiceui [i386] + gstreamer0.10-esd [amd64] + gstreamer0.10-esd [i386] + gstreamer0.10-espeak [amd64] + gstreamer0.10-espeak [i386] + gstreamer0.10-fluendo-mpegdemux [amd64] + gstreamer0.10-fluendo-mpegdemux [i386] + gstreamer0.10-lame [amd64] + gstreamer0.10-lame [i386] + gstreamer0.10-plugins-really-bad [amd64] + gstreamer0.10-plugins-really-bad [i386] + gtablix [amd64] + gtablix [i386] + gtk-qt-engine [amd64] + gtk-qt-engine [i386] + gtkwhiteboard [amd64] + gtkwhiteboard [i386] + guile-1.8-doc-non-dfsg [amd64] + guile-1.8-doc-non-dfsg [i386] + guile-2.0-doc-non-dfsg [amd64] + guile-2.0-doc-non-dfsg [i386] + hal-cups-utils [amd64] + hal-cups-utils [i386] + hannah-foo2zjs [amd64] + hannah-foo2zjs [i386] + hanzim [amd64] + hanzim [i386] + haploview [amd64] + haploview [i386] + hart [amd64] + hart [i386] + haskell-language-c-doc (= 0.4.2-2) [amd64] + haskell-language-c-doc (= 0.4.2-2) [i386] + hawkeye [amd64] + hawkeye [i386] + hbf-cns40-b5 [amd64] + hbf-cns40-b5 [i386] + hbf-jfs56 [amd64] + hbf-jfs56 [i386] + hbf-kanji48 [amd64] + hbf-kanji48 [i386] + hdf-eos4 [amd64] + hdf-eos4 [i386] + hdf-eos5 [amd64] + hdf-eos5 [i386] + heasoft-fv [amd64] + heasoft-fv [i386] + hepmc-example [amd64] + hepmc-example [i386] + herb [amd64] + herb [i386] + herwig++ [amd64] + herwig++ [i386] + herwig++-dev [amd64] + herwig++-dev [i386] + hevea-doc [amd64] + hevea-doc [i386] + hexamer [amd64] + hexamer [i386] + hhsuite [i386] + hid [amd64] + hid [i386] + hilbertvisgui [amd64] + hilbertvisgui [i386] + hindent [amd64] + hindent [i386] + hmmer2 [amd64] + hmmer2 [i386] + honeyd [amd64] + honeyd [i386] + horae [amd64] + horae [i386] + hotplug [amd64] + hotplug [i386] + hpoj [amd64] + hpoj [i386] + hts-voice-nitech-jp-atr503-m001 [amd64] + hts-voice-nitech-jp-atr503-m001 [i386] + hunspell-dictionary-as [amd64] + hunspell-dictionary-as [i386] + hunspell-dictionary-ast [amd64] + hunspell-dictionary-ast [i386] + hunspell-dictionary-bn [amd64] + hunspell-dictionary-bn [i386] + hunspell-dictionary-br [amd64] + hunspell-dictionary-br [i386] + hunspell-dictionary-bs [amd64] + hunspell-dictionary-bs [i386] + hunspell-dictionary-cy [amd64] + hunspell-dictionary-cy [i386] + hunspell-dictionary-dz [amd64] + hunspell-dictionary-dz [i386] + hunspell-dictionary-gu [amd64] + hunspell-dictionary-gu [i386] + hunspell-dictionary-hi [amd64] + hunspell-dictionary-hi [i386] + hunspell-dictionary-id [amd64] + hunspell-dictionary-id [i386] + hunspell-dictionary-is [amd64] + hunspell-dictionary-is [i386] + hunspell-dictionary-ja [amd64] + hunspell-dictionary-ja [i386] + hunspell-dictionary-ka [amd64] + hunspell-dictionary-ka [i386] + hunspell-dictionary-km [amd64] + hunspell-dictionary-km [i386] + hunspell-dictionary-mk [amd64] + hunspell-dictionary-mk [i386] + hunspell-dictionary-ml [amd64] + hunspell-dictionary-ml [i386] + hunspell-dictionary-mn [amd64] + hunspell-dictionary-mn [i386] + hunspell-dictionary-mr [amd64] + hunspell-dictionary-mr [i386] + hunspell-dictionary-nr [amd64] + hunspell-dictionary-nr [i386] + hunspell-dictionary-nso [amd64] + hunspell-dictionary-nso [i386] + hunspell-dictionary-oc [amd64] + hunspell-dictionary-oc [i386] + hunspell-dictionary-om [amd64] + hunspell-dictionary-om [i386] + hunspell-dictionary-or [amd64] + hunspell-dictionary-or [i386] + hunspell-dictionary-pa-in [amd64] + hunspell-dictionary-pa-in [i386] + hunspell-dictionary-rw [amd64] + hunspell-dictionary-rw [i386] + hunspell-dictionary-si [amd64] + hunspell-dictionary-si [i386] + hunspell-dictionary-sl [amd64] + hunspell-dictionary-sl [i386] + hunspell-dictionary-ss [amd64] + hunspell-dictionary-ss [i386] + hunspell-dictionary-st [amd64] + hunspell-dictionary-st [i386] + hunspell-dictionary-ta [amd64] + hunspell-dictionary-ta [i386] + hunspell-dictionary-te [amd64] + hunspell-dictionary-te [i386] + hunspell-dictionary-tg [amd64] + hunspell-dictionary-tg [i386] + hunspell-dictionary-tn [amd64] + hunspell-dictionary-tn [i386] + hunspell-dictionary-ts [amd64] + hunspell-dictionary-ts [i386] + hunspell-dictionary-ug [amd64] + hunspell-dictionary-ug [i386] + hunspell-dictionary-ve [amd64] + hunspell-dictionary-ve [i386] + hunspell-dictionary-xh [amd64] + hunspell-dictionary-xh [i386] + hunspell-dictionary-zh-cn [amd64] + hunspell-dictionary-zh-cn [i386] + hunspell-dictionary-zh-tw [amd64] + hunspell-dictionary-zh-tw [i386] + hunspell-dictionary-zu [amd64] + hunspell-dictionary-zu [i386] + hunspell-en-med [amd64] + hunspell-en-med [i386] + hwtools [amd64] + hwtools [i386] + hybserv [amd64] + hybserv [i386] + hyperestraier [amd64] + hyperestraier [i386] + hypermail [amd64] + hypermail [i386] + hyphen-ar [amd64] + hyphen-ar [i386] + hyphen-ast [amd64] + hyphen-ast [i386] + hyphen-be [amd64] + hyphen-be [i386] + hyphen-bg [amd64] + hyphen-bg [i386] + hyphen-br [amd64] + hyphen-br [i386] + hyphen-bs [amd64] + hyphen-bs [i386] + hyphen-cs [amd64] + hyphen-cs [i386] + hyphen-cy [amd64] + hyphen-cy [i386] + hyphen-da [amd64] + hyphen-da [i386] + hyphen-dz [amd64] + hyphen-dz [i386] + hyphen-el [amd64] + hyphen-el [i386] + hyphen-en-gb [amd64] + hyphen-en-gb [i386] + hyphen-en-za [amd64] + hyphen-en-za [i386] + hyphen-eo [amd64] + hyphen-eo [i386] + hyphen-es [amd64] + hyphen-es [i386] + hyphen-eu [amd64] + hyphen-eu [i386] + hyphen-fa [amd64] + hyphen-fa [i386] + hyphen-fi [amd64] + hyphen-fi [i386] + hyphen-ga [amd64] + hyphen-ga [i386] + hyphen-gl [amd64] + hyphen-gl [i386] + hyphen-he [amd64] + hyphen-he [i386] + hyphen-id [amd64] + hyphen-id [i386] + hyphen-is [amd64] + hyphen-is [i386] + hyphen-ja [amd64] + hyphen-ja [i386] + hyphen-ka [amd64] + hyphen-ka [i386] + hyphen-km [amd64] + hyphen-km [i386] + hyphen-ko [amd64] + hyphen-ko [i386] + hyphen-ku [amd64] + hyphen-ku [i386] + hyphen-lt [amd64] + hyphen-lt [i386] + hyphen-mk [amd64] + hyphen-mk [i386] + hyphen-ml [amd64] + hyphen-ml [i386] + hyphen-mn [amd64] + hyphen-mn [i386] + hyphen-nb [amd64] + hyphen-nb [i386] + hyphen-ne [amd64] + hyphen-ne [i386] + hyphen-nl [amd64] + hyphen-nl [i386] + hyphen-nn [amd64] + hyphen-nn [i386] + hyphen-nr [amd64] + hyphen-nr [i386] + hyphen-nso [amd64] + hyphen-nso [i386] + hyphen-oc [amd64] + hyphen-oc [i386] + hyphen-om [amd64] + hyphen-om [i386] + hyphen-or [amd64] + hyphen-or [i386] + hyphen-pa-in [amd64] + hyphen-pa-in [i386] + hyphen-pt [amd64] + hyphen-pt [i386] + hyphen-pt-br [amd64] + hyphen-pt-br [i386] + hyphen-ru [amd64] + hyphen-ru [i386] + hyphen-rw [amd64] + hyphen-rw [i386] + hyphen-si [amd64] + hyphen-si [i386] + hyphen-sk [amd64] + hyphen-sk [i386] + hyphen-ss [amd64] + hyphen-ss [i386] + hyphen-st [amd64] + hyphen-st [i386] + hyphen-sv [amd64] + hyphen-sv [i386] + hyphen-tg [amd64] + hyphen-tg [i386] + hyphen-th [amd64] + hyphen-th [i386] + hyphen-tn [amd64] + hyphen-tn [i386] + hyphen-tr [amd64] + hyphen-tr [i386] + hyphen-ts [amd64] + hyphen-ts [i386] + hyphen-ug [amd64] + hyphen-ug [i386] + hyphen-uk [amd64] + hyphen-uk [i386] + hyphen-uz [amd64] + hyphen-uz [i386] + hyphen-ve [amd64] + hyphen-ve [i386] + hyphen-vi [amd64] + hyphen-vi [i386] + hyphen-xh [amd64] + hyphen-xh [i386] + hyphen-zh-cn [amd64] + hyphen-zh-cn [i386] + hyphen-zh-tw [amd64] + hyphen-zh-tw [i386] + i2e [amd64] + i2e [i386] + ia32-libs-gtk-i386 [amd64] + ia32-libs-i386 [amd64] + iaxclient-tcl [amd64] + iaxclient-tcl [i386] + ibkohana2-php [amd64] + ibkohana2-php [i386] + icc-profiles [amd64] + icc-profiles [i386] + iceme [amd64] + iceme [i386] + icepref [amd64] + icepref [i386] + iceweasel-gnome-support [amd64] + iceweasel-gnome-support [i386] + iceweasel-l10n-cy-gb [amd64] + iceweasel-l10n-cy-gb [i386] + iceweasel-l10n-dz-bt [amd64] + iceweasel-l10n-dz-bt [i386] + iceweasel-l10n-et-ee [amd64] + iceweasel-l10n-et-ee [i386] + iceweasel-l10n-fa-ir [amd64] + iceweasel-l10n-fa-ir [i386] + iceweasel-l10n-fur-it [amd64] + iceweasel-l10n-fur-it [i386] + iceweasel-l10n-ka [amd64] + iceweasel-l10n-ka [i386] + iceweasel-l10n-mn [amd64] + iceweasel-l10n-mn [i386] + iceweasel-l10n-ne-np [amd64] + iceweasel-l10n-ne-np [i386] + iceweasel-l10n-roa-es-val [amd64] + iceweasel-l10n-roa-es-val [i386] + iceweasel-l10n-uk-ua [amd64] + iceweasel-l10n-uk-ua [i386] + iceweasel-torbutton [amd64] + iceweasel-torbutton [i386] + icewm-themes [amd64] + icewm-themes [i386] + iconv [amd64] + iconv [i386] + ids [amd64] + ids [i386] + ifeffit [amd64] + ifeffit [i386] + igv [amd64] + igv [i386] + ilisp [i386] + illuminator-doc [amd64] + illuminator-doc [i386] + imagemagickb [amd64] + imagemagickb [i386] + imcorr [amd64] + imcorr [i386] + imhangul-status-applet [amd64] + imhangul-status-applet [i386] + imview [amd64] + imview [i386] + incf-nidash-oneclick-clients [amd64] + incf-nidash-oneclick-clients [i386] + indicator-appmenu [amd64] + indicator-appmenu [i386] + indicator-sound [amd64] + indicator-sound [i386] + insightapplications [amd64] + insightapplications [i386] + invesalius [amd64] + invesalius [i386] + invt [amd64] + invt [i386] + iqr [amd64] + iqr [i386] + iranges [amd64] + iranges [i386] + ironpython [amd64] + ironpython [i386] + isabelle [amd64] + isabelle [i386] + iscsitarget-module [amd64] + iscsitarget-module [i386] + isdnactivecards [amd64] + isdnactivecards [i386] + isdnutils [amd64] + isdnutils [i386] + isis [amd64] + isis [i386] + jabber [amd64] + jabber [i386] + jamnntpd [amd64] + jamnntpd [i386] + java-gcj-compat (>= 1.0.69) [amd64] + java-gcj-compat (>= 1.0.69) [i386] + jbibtex [amd64] + jbibtex [i386] + jbibtex-bin [amd64] + jbibtex-bin [i386] + jbrowse [amd64] + jbrowse [i386] + jcgui [amd64] + jcgui [i386] + jchempaint [amd64] + jchempaint [i386] + jellyfish [i386] + jemris [amd64] + jemris [i386] + jfreemesh [amd64] + jfreemesh [i386] + jigsaw [amd64] + jigsaw [i386] + jist [amd64] + jist [i386] + jlatex209-bin [amd64] + jlatex209-bin [i386] + jmapviewer [amd64] + jmapviewer [i386] + jstreeview [amd64] + jstreeview [i386] + jtex-bin [amd64] + jtex-bin [i386] + k3dsurf [amd64] + k3dsurf [i386] + kaddressbook-plugins [amd64] + kaddressbook-plugins [i386] + kaffeine-mozilla [amd64] + kaffeine-mozilla [i386] + kartofel [amd64] + kartofel [i386] + kasteroids [amd64] + kasteroids [i386] + kate-plugins [amd64] + kate-plugins [i386] + kayali [amd64] + kayali [i386] + kbabel [amd64] + kbabel [i386] + kbackgammon [amd64] + kbackgammon [i386] + kbdcontrol [amd64] + kbdcontrol [i386] + kchart [amd64] + kchart [i386] + kde [amd64] + kde [i386] + kde-i18n-he [amd64] + kde-i18n-he [i386] + kde-icons-crystal [amd64] + kde-icons-crystal [i386] + kde-icons-oxygen [amd64] + kde-icons-oxygen [i386] + kde-l10n (>= 4:4.8.4) [amd64] + kde-l10n (>= 4:4.8.4) [i386] + kde-l10n [amd64] + kde-l10n [i386] + kde-l10n-eo [amd64] + kde-l10n-eo [i386] + kde-l10n-gu [amd64] + kde-l10n-gu [i386] + kde-l10n-hi [amd64] + kde-l10n-hi [i386] + kde-l10n-kn [amd64] + kde-l10n-kn [i386] + kde-l10n-mk [amd64] + kde-l10n-mk [i386] + kde-l10n-ml [amd64] + kde-l10n-ml [i386] + kde-l10n-se [amd64] + kde-l10n-se [i386] + kdeaddons-kfile-plugins [amd64] + kdeaddons-kfile-plugins [i386] + kdebase [amd64] + kdebase [i386] + kdebluetooth [amd64] + kdebluetooth [i386] + kdelibs-data [amd64] + kdelibs-data [i386] + kdelibs5-doc [amd64] + kdelibs5-doc [i386] + kdenetwork-kfile-plugins [amd64] + kdenetwork-kfile-plugins [i386] + kdepim-kfile-plugins [amd64] + kdepim-kfile-plugins [i386] + kdissert [amd64] + kdissert [i386] + kdnssd [amd64] + kdnssd [i386] + kedit [amd64] + kedit [i386] + keduca [amd64] + keduca [i386] + kempbasu [amd64] + kempbasu [i386] + kernel-patch-badram [amd64] + kernel-patch-badram [i386] + kernel-patch-lkcd [amd64] + kernel-patch-lkcd [i386] + kernel-patch-openvz [amd64] + kernel-patch-openvz [i386] + keuklid [amd64] + keuklid [i386] + kformula [amd64] + kformula [i386] + kfouleggs [amd64] + kfouleggs [i386] + kgeo [amd64] + kgeo [i386] + kgraph [amd64] + kgraph [i386] + kguitar [amd64] + kguitar [i386] + khelpcenter [amd64] + khelpcenter [i386] + kiconedit [amd64] + kiconedit [i386] + kiosktool [amd64] + kiosktool [i386] + kivio [amd64] + kivio [i386] + klatin [amd64] + klatin [i386] + klearnspelling [amd64] + klearnspelling [i386] + klogic [amd64] + klogic [i386] + klone-doc [amd64] + klone-doc [i386] + kmessedwords [amd64] + kmessedwords [i386] + kmid [amd64] + kmid [i386] + kmidi [amd64] + kmidi [i386] + kmrml [amd64] + kmrml [i386] + kmultiply [amd64] + kmultiply [i386] + knorskverbs [amd64] + knorskverbs [i386] + kolourpaint [amd64] + kolourpaint [i386] + kompozer [amd64] + kompozer [i386] + kontour [amd64] + kontour [i386] + koshell [amd64] + koshell [i386] + kpaint [amd64] + kpaint [i386] + kpercentage [amd64] + kpercentage [i386] + kpilot [amd64] + kpilot [i386] + kpm [amd64] + kpm [i386] + kpoker [amd64] + kpoker [i386] + kradview [amd64] + kradview [i386] + krecord [amd64] + krecord [i386] + kregexpeditor [amd64] + kregexpeditor [i386] + kschoolmenu [amd64] + kschoolmenu [i386] + kseg [amd64] + kseg [i386] + ksensors [amd64] + ksensors [i386] + ksimus [amd64] + ksimus [i386] + ksimus-boolean [amd64] + ksimus-boolean [i386] + ksimus-datarecorder [amd64] + ksimus-datarecorder [i386] + ksimus-floatingpoint [amd64] + ksimus-floatingpoint [i386] + ksirtet [amd64] + ksirtet [i386] + ksmiletris [amd64] + ksmiletris [i386] + ksnake [amd64] + ksnake [i386] + ksociograma [amd64] + ksociograma [i386] + ksokoban [amd64] + ksokoban [i386] + kstreamripper [amd64] + kstreamripper [i386] + ksvg [amd64] + ksvg [i386] + ktechlab [amd64] + ktechlab [i386] + ktimetrace [amd64] + ktimetrace [i386] + ktoon [amd64] + ktoon [i386] + kugar [amd64] + kugar [i386] + kverbos [amd64] + kverbos [i386] + kview [amd64] + kview [i386] + kvm-qemu [amd64] + kvm-qemu [i386] + kworldclock [amd64] + kworldclock [i386] + labplot [amd64] + labplot [i386] + lagan [amd64] + lagan [i386] + lamarc [amd64] + lamarc [i386] + lapack3-dev [amd64] + lapack3-dev [i386] + latex.service [amd64] + latex.service [i386] + lavaps [amd64] + lavaps [i386] + lbkohana3.1-php [amd64] + lbkohana3.1-php [i386] + lenmus [amd64] + lenmus [i386] + lha [amd64] + lha [i386] + libacovea-dev [amd64] + libacovea-dev [i386] + libantlr3-java [amd64] + libantlr3-java [i386] + libapache-mod-ruby [amd64] + libapache-mod-ruby [i386] + libapache-ssi-perl [amd64] + libapache-ssi-perl [i386] + libapreq2-dev (= 2.13-1) [amd64] + libapreq2-dev (= 2.13-1) [i386] + libapreq2-doc (= 2.13-1+b2) [amd64] + libapreq2-doc (= 2.13-1+b2) [i386] + libarchive1 [amd64] + libarchive1 [i386] + libasis-doc [amd64] + libasis-doc [i386] + libaudio-flac-perl [amd64] + libaudio-flac-perl [i386] + libavcodec-extra-52 [amd64] + libavcodec-extra-52 [i386] + libavformat-extra-52 [amd64] + libavformat-extra-52 [i386] + libavutil-extra-50 [amd64] + libavutil-extra-50 [i386] + libbamtools-dev [amd64] + libbamtools-dev [i386] + libbio-das-perl [amd64] + libbio-das-perl [i386] + libbio-formats-java [amd64] + libbio-formats-java [i386] + libbiojava3-java-demos [amd64] + libbiojava3-java-demos [i386] + libbiosig0 [amd64] + libbiosig0 [i386] + libc0.1-i686 [i386] + libcamitk3-dev [amd64] + libcamitk3-dev [i386] + libccaudio2-doc [amd64] + libccaudio2-doc [i386] + libcegui-mk2-0.7.6-doc [amd64] + libcegui-mk2-0.7.6-doc [i386] + libcfitsio-dev [amd64] + libcfitsio-dev [i386] + libcgi-application-plugin-json-bundle-perl [amd64] + libcgi-application-plugin-json-bundle-perl [i386] + libclamunrar6 [amd64] + libclamunrar6 [i386] + libcneartree3-dev [amd64] + libcneartree3-dev [i386] + libcomplearn-dev [amd64] + libcomplearn-dev [i386] + libcrypt-cfb-perl [amd64] + libcrypt-cfb-perl [i386] + libcrypt-eax-perl [amd64] + libcrypt-eax-perl [i386] + libcrypt-rc6-perl [amd64] + libcrypt-rc6-perl [i386] + libcrypt-ripemd160-perl [amd64] + libcrypt-ripemd160-perl [i386] + libcrypt-serpent-perl [amd64] + libcrypt-serpent-perl [i386] + libctk-dev [amd64] + libctk-dev [i386] + libcuda1 [amd64] + libcuda1 [i386] + libcuda1-ia32 [amd64] + libdbd-oracle-perl (>= 0.90) [amd64] + libdbd-oracle-perl (>= 0.90) [i386] + libdbi-ruby1.9 [amd64] + libdbi-ruby1.9 [i386] + libdcm4che-java [amd64] + libdcm4che-java [i386] + libdcmtk1-dev [amd64] + libdcmtk1-dev [i386] + libdeal.ii-dev [amd64] + libdeal.ii-dev [i386] + libdigest-cmac-perl [amd64] + libdigest-cmac-perl [i386] + libdrmaa1.0 [amd64] + libdrmaa1.0 [i386] + libdspam7-drv (= 3.10.1+dfsg-11) [amd64] + libdspam7-drv (= 3.10.1+dfsg-11) [i386] + libdvdcss [amd64] + libdvdcss [i386] + libdvdcss-dev [amd64] + libdvdcss-dev [i386] + libdvdcss2 [amd64] + libdvdcss2 [i386] + libegad [amd64] + libegad [i386] + libestraier-ruby1.8 [amd64] + libestraier-ruby1.8 [i386] + libextractor-java [amd64] + libextractor-java [i386] + libflashsupport [amd64] + libflashsupport [i386] + libforester-java [amd64] + libforester-java [i386] + libfox95 [amd64] + libfox95 [i386] + libfvm-dev [amd64] + libfvm-dev [i386] + libgbfp-dev [amd64] + libgbfp-dev [i386] + libgdata-google1.2-1 [amd64] + libgdata-google1.2-1 [i386] + libgenometools0-dev [amd64] + libgenometools0-dev [i386] + libgeotiff-epsg [amd64] + libgeotiff-epsg [i386] + libgeronimo-jta-java [amd64] + libgeronimo-jta-java [i386] + libgeronimo-jta-java-doc [amd64] + libgeronimo-jta-java-doc [i386] + libgff-perl [amd64] + libgff-perl [i386] + libghc-hdbc-missingh-dev [amd64] + libghc-hdbc-missingh-dev [i386] + libghc-hsql-sqlite-dev [amd64] + libghc-hsql-sqlite-dev [i386] + libghc-mongodb-dev [amd64] + libghc-mongodb-dev [i386] + libghc-persistent-mongodb-dev [amd64] + libghc-persistent-mongodb-dev [i386] + libghc-persistent-mysql-dev [amd64] + libghc-persistent-mysql-dev [i386] + libghc-persistent-postgresql-dev [amd64] + libghc-persistent-postgresql-dev [i386] + libghc-yesod-platform-dev [amd64] + libghc-yesod-platform-dev [i386] + libgivaro-dev [amd64] + libgivaro-dev [i386] + libgivaro0 [amd64] + libgivaro0 [i386] + libgluegen2 [amd64] + libgluegen2 [i386] + libgluezilla (>= 2.6) [amd64] + libgluezilla (>= 2.6) [i386] + libgpib-bin [amd64] + libgpib-bin [i386] + libgsmme1c102 [amd64] + libgsmme1c102 [i386] + libgtk-perl [amd64] + libgtk-perl [i386] + libgtk2-mozembed-perl [amd64] + libgtk2-mozembed-perl [i386] + libgtkdataboxmm-dev [amd64] + libgtkdataboxmm-dev [i386] + libhe4-hdfeos-dev [amd64] + libhe4-hdfeos-dev [i386] + libhepmcfio [amd64] + libhepmcfio [i386] + libhepmcinterface-dev [amd64] + libhepmcinterface-dev [i386] + libhsqldb-java-gcj [amd64] + libhsqldb-java-gcj [i386] + libint [amd64] + libint [i386] + libjai-imageio-core-java [amd64] + libjai-imageio-core-java [i386] + libjakarta-poi-java (>= 3.2) [amd64] + libjakarta-poi-java (>= 3.2) [i386] + libjavascript-perl [amd64] + libjavascript-perl [i386] + libjdom-java [amd64] + libjdom-java [i386] + libjetty-extras-java [amd64] + libjetty-extras-java [i386] + libjlatexmath [amd64] + libjlatexmath [i386] + libjodatime-java [amd64] + libjodatime-java [i386] + libjs-json [amd64] + libjs-json [i386] + libjs-leaflet [amd64] + libjs-leaflet [i386] + libjs-query [amd64] + libjs-query [i386] + libjs-yui2 (= 2.9.0.dfsg.0.1-0.1) [amd64] + libjs-yui2 (= 2.9.0.dfsg.0.1-0.1) [i386] + liblevmar-dev [amd64] + liblevmar-dev [i386] + liblife-dev [amd64] + liblife-dev [i386] + liblinc1 [amd64] + liblinc1 [i386] + libluminate-dev [amd64] + libluminate-dev [i386] + libmath-random-perl [amd64] + libmath-random-perl [i386] + libmath-vector-real-random-perl [amd64] + libmath-vector-real-random-perl [i386] + libmcpanel-dev [amd64] + libmcpanel-dev [i386] + libmei-dev [amd64] + libmei-dev [i386] + libmemcached [amd64] + libmemcached [i386] + libmems-1.5-1 [amd64] + libmems-1.5-1 [i386] + libmesh-dev [amd64] + libmesh-dev [i386] + libmia-2.0-dev [amd64] + libmia-2.0-dev [i386] + libmni-perllib-perl [amd64] + libmni-perllib-perl [i386] + libmodule-list-pluggable-perl [amd64] + libmodule-list-pluggable-perl [i386] + libmpich1.0gf [amd64] + libmpich1.0gf [i386] + libmpich2-1.2 [amd64] + libmpich2-1.2 [i386] + libmythtv-perl [amd64] + libmythtv-perl [i386] + libnarval1-dev [amd64] + libnarval1-dev [i386] + libnauty-dev [amd64] + libnauty-dev [i386] + libnbc [amd64] + libnbc [i386] + libnet-openssh-gateway-perl [amd64] + libnet-openssh-gateway-perl [i386] + libnet-patricial-perl [amd64] + libnet-patricial-perl [i386] + libnet-twitter-perl [amd64] + libnet-twitter-perl [i386] + libnetcdf-java [amd64] + libnetcdf-java [i386] + libnetcdf4 [amd64] + libnetcdf4 [i386] + libnglib-dev [amd64] + libnglib-dev [i386] + libnhgri-blastall-perl [amd64] + libnhgri-blastall-perl [i386] + libnl3-doc [amd64] + libnl3-doc [i386] + libnotify1 [amd64] + libnotify1 [i386] + libofx4-dev (>= 1:0.9.4-2.1) [amd64] + libofx4-dev (>= 1:0.9.4-2.1) [i386] + libopenal0a [amd64] + libopenal0a [i386] + libopencascade-dev [amd64] + libopencascade-dev [i386] + libopenigtlink1 [amd64] + libopenigtlink1 [i386] + libopenmm4-dev [amd64] + libopenmm4-dev [i386] + libopenslide-java [amd64] + libopenslide-java [i386] + libpgplot-perl [amd64] + libpgplot-perl [i386] + libphone-ui [amd64] + libphone-ui [i386] + libplack-middleware-debug-perl [amd64] + libplack-middleware-debug-perl [i386] + libplexus-compiler-java-doc [amd64] + libplexus-compiler-java-doc [i386] + libpolybori-groebner-dev [amd64] + libpolybori-groebner-dev [i386] + libppl-c2 [amd64] + libppl-c2 [i386] + libppl7 [amd64] + libppl7 [i386] + libpspio [amd64] + libpspio [i386] + libqsearch-dev [amd64] + libqsearch-dev [i386] + libqt-dev [amd64] + libqt-dev [i386] + libqt-perl [amd64] + libqt-perl [i386] + libqt3-mt (>= 3:3.3.6) [amd64] + libqt3-mt (>= 3:3.3.6) [i386] + libqttestrunner1c2a (= 1.12.1-4) [amd64] + libqttestrunner1c2a (= 1.12.1-4) [i386] + librcsb-core-wrapper0-dev [amd64] + librcsb-core-wrapper0-dev [i386] + libreadosm-dev [amd64] + libreadosm-dev [i386] + libreoffice-gcj [amd64] + libreoffice-gcj [i386] + libreoffice-grammarcheck-af [amd64] + libreoffice-grammarcheck-af [i386] + libreoffice-grammarcheck-ar [amd64] + libreoffice-grammarcheck-ar [i386] + libreoffice-grammarcheck-as [amd64] + libreoffice-grammarcheck-as [i386] + libreoffice-grammarcheck-ast [amd64] + libreoffice-grammarcheck-ast [i386] + libreoffice-grammarcheck-be [amd64] + libreoffice-grammarcheck-be [i386] + libreoffice-grammarcheck-bg [amd64] + libreoffice-grammarcheck-bg [i386] + libreoffice-grammarcheck-bn [amd64] + libreoffice-grammarcheck-bn [i386] + libreoffice-grammarcheck-br [amd64] + libreoffice-grammarcheck-br [i386] + libreoffice-grammarcheck-bs [amd64] + libreoffice-grammarcheck-bs [i386] + libreoffice-grammarcheck-ca [amd64] + libreoffice-grammarcheck-ca [i386] + libreoffice-grammarcheck-cs [amd64] + libreoffice-grammarcheck-cs [i386] + libreoffice-grammarcheck-cy [amd64] + libreoffice-grammarcheck-cy [i386] + libreoffice-grammarcheck-da [amd64] + libreoffice-grammarcheck-da [i386] + libreoffice-grammarcheck-de [amd64] + libreoffice-grammarcheck-de [i386] + libreoffice-grammarcheck-dz [amd64] + libreoffice-grammarcheck-dz [i386] + libreoffice-grammarcheck-el [amd64] + libreoffice-grammarcheck-el [i386] + libreoffice-grammarcheck-eo [amd64] + libreoffice-grammarcheck-eo [i386] + libreoffice-grammarcheck-es [amd64] + libreoffice-grammarcheck-es [i386] + libreoffice-grammarcheck-et [amd64] + libreoffice-grammarcheck-et [i386] + libreoffice-grammarcheck-eu [amd64] + libreoffice-grammarcheck-eu [i386] + libreoffice-grammarcheck-fa [amd64] + libreoffice-grammarcheck-fa [i386] + libreoffice-grammarcheck-fi [amd64] + libreoffice-grammarcheck-fi [i386] + libreoffice-grammarcheck-fr [amd64] + libreoffice-grammarcheck-fr [i386] + libreoffice-grammarcheck-ga [amd64] + libreoffice-grammarcheck-ga [i386] + libreoffice-grammarcheck-gl [amd64] + libreoffice-grammarcheck-gl [i386] + libreoffice-grammarcheck-gu [amd64] + libreoffice-grammarcheck-gu [i386] + libreoffice-grammarcheck-he [amd64] + libreoffice-grammarcheck-he [i386] + libreoffice-grammarcheck-hi [amd64] + libreoffice-grammarcheck-hi [i386] + libreoffice-grammarcheck-hr [amd64] + libreoffice-grammarcheck-hr [i386] + libreoffice-grammarcheck-id [amd64] + libreoffice-grammarcheck-id [i386] + libreoffice-grammarcheck-is [amd64] + libreoffice-grammarcheck-is [i386] + libreoffice-grammarcheck-it [amd64] + libreoffice-grammarcheck-it [i386] + libreoffice-grammarcheck-ja [amd64] + libreoffice-grammarcheck-ja [i386] + libreoffice-grammarcheck-ka [amd64] + libreoffice-grammarcheck-ka [i386] + libreoffice-grammarcheck-km [amd64] + libreoffice-grammarcheck-km [i386] + libreoffice-grammarcheck-ko [amd64] + libreoffice-grammarcheck-ko [i386] + libreoffice-grammarcheck-ku [amd64] + libreoffice-grammarcheck-ku [i386] + libreoffice-grammarcheck-lt [amd64] + libreoffice-grammarcheck-lt [i386] + libreoffice-grammarcheck-lv [amd64] + libreoffice-grammarcheck-lv [i386] + libreoffice-grammarcheck-mk [amd64] + libreoffice-grammarcheck-mk [i386] + libreoffice-grammarcheck-ml [amd64] + libreoffice-grammarcheck-ml [i386] + libreoffice-grammarcheck-mn [amd64] + libreoffice-grammarcheck-mn [i386] + libreoffice-grammarcheck-mr [amd64] + libreoffice-grammarcheck-mr [i386] + libreoffice-grammarcheck-nb [amd64] + libreoffice-grammarcheck-nb [i386] + libreoffice-grammarcheck-ne [amd64] + libreoffice-grammarcheck-ne [i386] + libreoffice-grammarcheck-nl [amd64] + libreoffice-grammarcheck-nl [i386] + libreoffice-grammarcheck-nn [amd64] + libreoffice-grammarcheck-nn [i386] + libreoffice-grammarcheck-nr [amd64] + libreoffice-grammarcheck-nr [i386] + libreoffice-grammarcheck-nso [amd64] + libreoffice-grammarcheck-nso [i386] + libreoffice-grammarcheck-oc [amd64] + libreoffice-grammarcheck-oc [i386] + libreoffice-grammarcheck-om [amd64] + libreoffice-grammarcheck-om [i386] + libreoffice-grammarcheck-or [amd64] + libreoffice-grammarcheck-or [i386] + libreoffice-grammarcheck-pa-in [amd64] + libreoffice-grammarcheck-pa-in [i386] + libreoffice-grammarcheck-pl [amd64] + libreoffice-grammarcheck-pl [i386] + libreoffice-grammarcheck-pt [amd64] + libreoffice-grammarcheck-pt [i386] + libreoffice-grammarcheck-pt-br [amd64] + libreoffice-grammarcheck-pt-br [i386] + libreoffice-grammarcheck-ro [amd64] + libreoffice-grammarcheck-ro [i386] + libreoffice-grammarcheck-rw [amd64] + libreoffice-grammarcheck-rw [i386] + libreoffice-grammarcheck-si [amd64] + libreoffice-grammarcheck-si [i386] + libreoffice-grammarcheck-sk [amd64] + libreoffice-grammarcheck-sk [i386] + libreoffice-grammarcheck-sl [amd64] + libreoffice-grammarcheck-sl [i386] + libreoffice-grammarcheck-sr [amd64] + libreoffice-grammarcheck-sr [i386] + libreoffice-grammarcheck-ss [amd64] + libreoffice-grammarcheck-ss [i386] + libreoffice-grammarcheck-st [amd64] + libreoffice-grammarcheck-st [i386] + libreoffice-grammarcheck-sv [amd64] + libreoffice-grammarcheck-sv [i386] + libreoffice-grammarcheck-ta [amd64] + libreoffice-grammarcheck-ta [i386] + libreoffice-grammarcheck-te [amd64] + libreoffice-grammarcheck-te [i386] + libreoffice-grammarcheck-tg [amd64] + libreoffice-grammarcheck-tg [i386] + libreoffice-grammarcheck-th [amd64] + libreoffice-grammarcheck-th [i386] + libreoffice-grammarcheck-tn [amd64] + libreoffice-grammarcheck-tn [i386] + libreoffice-grammarcheck-tr [amd64] + libreoffice-grammarcheck-tr [i386] + libreoffice-grammarcheck-ts [amd64] + libreoffice-grammarcheck-ts [i386] + libreoffice-grammarcheck-ug [amd64] + libreoffice-grammarcheck-ug [i386] + libreoffice-grammarcheck-uk [amd64] + libreoffice-grammarcheck-uk [i386] + libreoffice-grammarcheck-uz [amd64] + libreoffice-grammarcheck-uz [i386] + libreoffice-grammarcheck-ve [amd64] + libreoffice-grammarcheck-ve [i386] + libreoffice-grammarcheck-vi [amd64] + libreoffice-grammarcheck-vi [i386] + libreoffice-grammarcheck-xh [amd64] + libreoffice-grammarcheck-xh [i386] + libreoffice-grammarcheck-zh-cn [amd64] + libreoffice-grammarcheck-zh-cn [i386] + libreoffice-grammarcheck-zh-tw [amd64] + libreoffice-grammarcheck-zh-tw [i386] + libreoffice-grammarcheck-zu [amd64] + libreoffice-grammarcheck-zu [i386] + libreoffice-help-af [amd64] + libreoffice-help-af [i386] + libreoffice-help-ar [amd64] + libreoffice-help-ar [i386] + libreoffice-help-as [amd64] + libreoffice-help-as [i386] + libreoffice-help-ast [amd64] + libreoffice-help-ast [i386] + libreoffice-help-be [amd64] + libreoffice-help-be [i386] + libreoffice-help-bg [amd64] + libreoffice-help-bg [i386] + libreoffice-help-bn [amd64] + libreoffice-help-bn [i386] + libreoffice-help-br [amd64] + libreoffice-help-br [i386] + libreoffice-help-bs [amd64] + libreoffice-help-bs [i386] + libreoffice-help-cy [amd64] + libreoffice-help-cy [i386] + libreoffice-help-en [amd64] + libreoffice-help-en [i386] + libreoffice-help-en-za [amd64] + libreoffice-help-en-za [i386] + libreoffice-help-eo [amd64] + libreoffice-help-eo [i386] + libreoffice-help-fa [amd64] + libreoffice-help-fa [i386] + libreoffice-help-ga [amd64] + libreoffice-help-ga [i386] + libreoffice-help-gu [amd64] + libreoffice-help-gu [i386] + libreoffice-help-he [amd64] + libreoffice-help-he [i386] + libreoffice-help-hr [amd64] + libreoffice-help-hr [i386] + libreoffice-help-id [amd64] + libreoffice-help-id [i386] + libreoffice-help-is [amd64] + libreoffice-help-is [i386] + libreoffice-help-ka [amd64] + libreoffice-help-ka [i386] + libreoffice-help-ku [amd64] + libreoffice-help-ku [i386] + libreoffice-help-lt [amd64] + libreoffice-help-lt [i386] + libreoffice-help-lv [amd64] + libreoffice-help-lv [i386] + libreoffice-help-mk [amd64] + libreoffice-help-mk [i386] + libreoffice-help-ml [amd64] + libreoffice-help-ml [i386] + libreoffice-help-mn [amd64] + libreoffice-help-mn [i386] + libreoffice-help-mr [amd64] + libreoffice-help-mr [i386] + libreoffice-help-nb [amd64] + libreoffice-help-nb [i386] + libreoffice-help-ne [amd64] + libreoffice-help-ne [i386] + libreoffice-help-nn [amd64] + libreoffice-help-nn [i386] + libreoffice-help-nr [amd64] + libreoffice-help-nr [i386] + libreoffice-help-nso [amd64] + libreoffice-help-nso [i386] + libreoffice-help-oc [amd64] + libreoffice-help-oc [i386] + libreoffice-help-or [amd64] + libreoffice-help-or [i386] + libreoffice-help-pa-in [amd64] + libreoffice-help-pa-in [i386] + libreoffice-help-ro [amd64] + libreoffice-help-ro [i386] + libreoffice-help-rw [amd64] + libreoffice-help-rw [i386] + libreoffice-help-si [amd64] + libreoffice-help-si [i386] + libreoffice-help-sr [amd64] + libreoffice-help-sr [i386] + libreoffice-help-ss [amd64] + libreoffice-help-ss [i386] + libreoffice-help-st [amd64] + libreoffice-help-st [i386] + libreoffice-help-ta [amd64] + libreoffice-help-ta [i386] + libreoffice-help-te [amd64] + libreoffice-help-te [i386] + libreoffice-help-tg [amd64] + libreoffice-help-tg [i386] + libreoffice-help-th [amd64] + libreoffice-help-th [i386] + libreoffice-help-tn [amd64] + libreoffice-help-tn [i386] + libreoffice-help-tr [amd64] + libreoffice-help-tr [i386] + libreoffice-help-ts [amd64] + libreoffice-help-ts [i386] + libreoffice-help-ug [amd64] + libreoffice-help-ug [i386] + libreoffice-help-uk [amd64] + libreoffice-help-uk [i386] + libreoffice-help-uz [amd64] + libreoffice-help-uz [i386] + libreoffice-help-ve [amd64] + libreoffice-help-ve [i386] + libreoffice-help-vi [amd64] + libreoffice-help-vi [i386] + libreoffice-help-xh [amd64] + libreoffice-help-xh [i386] + libreoffice-help-zu [amd64] + libreoffice-help-zu [i386] + libreoffice-kab [amd64] + libreoffice-kab [i386] + libreoffice-l10n-common [amd64] + libreoffice-l10n-common [i386] + libreoffice-thesausus-hu [amd64] + libreoffice-thesausus-hu [i386] + librepository-java-gcj [amd64] + librepository-java-gcj [i386] + libsafe [amd64] + libsafe [i386] + libsbml5-dev [amd64] + libsbml5-dev [i386] + libshark-dev [amd64] + libshark-dev [i386] + libshib2-doc (= 2.4.3+dfsg-5) [amd64] + libshib2-doc (= 2.4.3+dfsg-5) [i386] + libshogun-dev [amd64] + libshogun-dev [i386] + libslepc3.0.0-dev [amd64] + libslepc3.0.0-dev [i386] + libsolr-java-doc [amd64] + libsolr-java-doc [i386] + libspherepack-dev [amd64] + libspherepack-dev [i386] + libspooles2.2-dev [amd64] + libspooles2.2-dev [i386] + libssl0.9.8-dbg [amd64] + libssl0.9.8-dbg [i386] + libswarm2-dev [amd64] + libswarm2-dev [i386] + libsys-info-os-perl [amd64] + libsys-info-os-perl [i386] + libtagsoup-java [amd64] + libtagsoup-java [i386] + libtao-2.0.3 [amd64] + libtao-2.0.3 [i386] + libtao-dev [amd64] + libtao-dev [i386] + libtao-orbsvcs-2.0.3 [amd64] + libtao-orbsvcs-2.0.3 [i386] + libteem1 [amd64] + libteem1 [i386] + libtet1.4.2-dev [amd64] + libtet1.4.2-dev [i386] + libtext-balanced-perl [amd64] + libtext-balanced-perl [i386] + libtext-wrap-perl [amd64] + libtext-wrap-perl [i386] + libtextcat0 (>= 2.2-8) [amd64] + libtextcat0 (>= 2.2-8) [i386] + libtiff [amd64] + libtiff [i386] + libtrilinos-dev [amd64] + libtrilinos-dev [i386] + libtrilinos-doc [amd64] + libtrilinos-doc [i386] + libttspico-utils [amd64] + libttspico-utils [i386] + libvalhalla-doc (= 2.0.0-4+b1) [amd64] + libvalhalla-doc (= 2.0.0-4+b1) [i386] + libvdk1-dev [amd64] + libvdk1-dev [i386] + libvisad-java [amd64] + libvisad-java [i386] + libvistaio-dev [amd64] + libvistaio-dev [i386] + libvtk5.4 [amd64] + libvtk5.4 [i386] + libwhy-coq (= 2.30+dfsg-5+b1) [amd64] + libwhy-coq (= 2.30+dfsg-5+b1) [i386] + libwine-alsa [amd64] + libwine-oss [amd64] + libworldwind-java [amd64] + libworldwind-java [i386] + libxc [amd64] + libxc [i386] + libxc-dev [amd64] + libxc-dev [i386] + libxml-libxml-devel-setlinenumber-perl [amd64] + libxml-libxml-devel-setlinenumber-perl [i386] + libxmlada-dev (= 4.1-2) [amd64] + libxmlada-dev (= 4.1-2) [i386] + libxmms-perl [amd64] + libxmms-perl [i386] + life-apps [amd64] + life-apps [i386] + linoccult [amd64] + linoccult [i386] + linux-debug [amd64] + linux-debug [i386] + linux-image-2.4 [amd64] + linux-image-2.4 [i386] + linux-image-2.6 [amd64] + linux-image-2.6 [i386] + linux-image-2.6-rt [amd64] + linux-image-2.6-rt [i386] + linux-patch-debian-3.2 [amd64] + linux-patch-debian-3.2 [i386] + linuxprinting.org-ppds [amd64] + linuxprinting.org-ppds [i386] + linuxsampler [amd64] + linuxsampler [i386] + lipsia [amd64] + lipsia [i386] + lletters [amd64] + lletters [i386] + logol-bin [amd64] + logol-bin [i386] + logomat-m [amd64] + logomat-m [i386] + lsb-rpm [amd64] + lsb-rpm [i386] + ltrsift [amd64] + ltrsift [i386] + lua-torch5 [amd64] + lua-torch5 [i386] + lua5.1-zlib [amd64] + lua5.1-zlib [i386] + lucy [amd64] + lucy [i386] + lum [amd64] + lum [i386] + luma [amd64] + luma [i386] + macs [amd64] + macs [i386] + mage2tab [amd64] + mage2tab [i386] + magicsquare [amd64] + magicsquare [i386] + magnus [amd64] + magnus [i386] + make-doc [amd64] + make-doc [i386] + maker2 [amd64] + maker2 [i386] + malted [amd64] + malted [i386] + mapnik-viewer [amd64] + mapnik-viewer [i386] + mapready [amd64] + mapready [i386] + mapserver [amd64] + mapserver [i386] + maris [amd64] + maris [i386] + martj [amd64] + martj [i386] + matlab-spm8 [amd64] + matlab-spm8 [i386] + matlab-support [amd64] + matlab-support [i386] + matlab2tikz [amd64] + matlab2tikz [i386] + matrox-tools [amd64] + matrox-tools [i386] + mauvealigner [amd64] + mauvealigner [i386] + maxd [amd64] + maxd [i386] + mayam [amd64] + mayam [i386] + mbrola [amd64] + mbrola [i386] + mclust [amd64] + mclust [i386] + mctools-lite [amd64] + mctools-lite [i386] + meabench [amd64] + meabench [i386] + mediaproxy [amd64] + mediaproxy [i386] + medintux [amd64] + medintux [i386] + medisnap [amd64] + medisnap [i386] + meego-packaging-tools [amd64] + meego-packaging-tools [i386] + mek [amd64] + mek [i386] + meme [amd64] + meme [i386] + mercurial-buildpackage [amd64] + mercurial-buildpackage [i386] + mesa-test-tools [amd64] + mesa-test-tools [i386] + mesquite [amd64] + mesquite [i386] + metadisorder [amd64] + metadisorder [i386] + metamail [amd64] + metamail [i386] + metarep [amd64] + metarep [i386] + mga-vid-module [amd64] + mga-vid-module [i386] + mha4mysql-master [amd64] + mha4mysql-master [i386] + mia-tools [amd64] + mia-tools [i386] + mialmpick [amd64] + mialmpick [i386] + microbiomeutil [amd64] + microbiomeutil [i386] + micromanager [amd64] + micromanager [i386] + midas [amd64] + midas [i386] + migrate [amd64] + migrate [i386] + minimus [amd64] + minimus [i386] + mipav [amd64] + mipav [i386] + mirbase [amd64] + mirbase [i386] + mirrormed [amd64] + mirrormed [i386] + mirth [amd64] + mirth [i386] + miscpsycho [amd64] + miscpsycho [i386] + miview [amd64] + miview [i386] + mixminion [amd64] + mixminion [i386] + mjpegtools (>= 1:1.8.0) [amd64] + mjpegtools (>= 1:1.8.0) [i386] + mjpegtools [amd64] + mjpegtools [i386] + mni-autoreg [amd64] + mni-autoreg [i386] + mni-colin27-nifti [amd64] + mni-colin27-nifti [i386] + mni-icbm152-nlin-2009 [amd64] + mni-icbm152-nlin-2009 [i386] + mni-n3 [amd64] + mni-n3 [i386] + modconf [amd64] + modconf [i386] + molden [amd64] + molden [i386] + molekel [amd64] + molekel [i386] + molphy [amd64] + molphy [i386] + monkeys-audio [amd64] + monkeys-audio [i386] + mono-debugger [amd64] + mono-debugger [i386] + monodoc-gecko-manual [amd64] + monodoc-gecko-manual [i386] + monodoc-gtk-manual [amd64] + monodoc-gtk-manual [i386] + moose [amd64] + moose [i386] + mosaik-aligner [amd64] + mosaik-aligner [i386] + mozart (>= 1.3.0) [amd64] + mozart (>= 1.4.0) [amd64] + mozart-gtk [i386] + mozilla-browser (>= 2:1.7) [amd64] + mozilla-browser (>= 2:1.7) [i386] + mozilla-mailnews (>= 2:1.7) [amd64] + mozilla-mailnews (>= 2:1.7) [i386] + mozilla-mplayer [amd64] + mozilla-mplayer [i386] + mozilla-spellchecker [amd64] + mozilla-spellchecker [i386] + mozilla-thunderbird [amd64] + mozilla-thunderbird [i386] + mozplugger [amd64] + mozplugger [i386] + mpi-default [amd64] + mpi-default [i386] + mpi-defaults-bin [amd64] + mpi-defaults-bin [i386] + mpi-doc [amd64] + mpi-doc [i386] + mpich-bin [amd64] + mpich-bin [i386] + mpsqed [amd64] + mpsqed [i386] + mrisim [amd64] + mrisim [i386] + msatfinder [amd64] + msatfinder [i386] + mssstest [amd64] + mssstest [i386] + msttcorefonts [amd64] + msttcorefonts [i386] + mueller7-mova [amd64] + mueller7-mova [i386] + mueller7accent-mova [amd64] + mueller7accent-mova [i386] + mugsy [amd64] + mugsy [i386] + muine [amd64] + muine [i386] + mule-ucs [amd64] + mule-ucs [i386] + multex-bin [amd64] + multex-bin [i386] + mumble-server-web [amd64] + mumble-server-web [i386] + mummergpu [amd64] + mummergpu [i386] + murasaki [amd64] + murasaki [i386] + musixlyr (>= 1.10-4) [amd64] + musixlyr (>= 1.10-4) [i386] + musmap [amd64] + musmap [i386] + mview [amd64] + mview [i386] + mx-dataacquisition [amd64] + mx-dataacquisition [i386] + myspell-dictionary-as [amd64] + myspell-dictionary-as [i386] + myspell-dictionary-ast [amd64] + myspell-dictionary-ast [i386] + myspell-dictionary-bn [amd64] + myspell-dictionary-bn [i386] + myspell-dictionary-br [amd64] + myspell-dictionary-br [i386] + myspell-dictionary-bs [amd64] + myspell-dictionary-bs [i386] + myspell-dictionary-cy [amd64] + myspell-dictionary-cy [i386] + myspell-dictionary-dz [amd64] + myspell-dictionary-dz [i386] + myspell-dictionary-gu [amd64] + myspell-dictionary-gu [i386] + myspell-dictionary-hi [amd64] + myspell-dictionary-hi [i386] + myspell-dictionary-id [amd64] + myspell-dictionary-id [i386] + myspell-dictionary-is [amd64] + myspell-dictionary-is [i386] + myspell-dictionary-ja [amd64] + myspell-dictionary-ja [i386] + myspell-dictionary-ka [amd64] + myspell-dictionary-ka [i386] + myspell-dictionary-km [amd64] + myspell-dictionary-km [i386] + myspell-dictionary-mk [amd64] + myspell-dictionary-mk [i386] + myspell-dictionary-ml [amd64] + myspell-dictionary-ml [i386] + myspell-dictionary-mn [amd64] + myspell-dictionary-mn [i386] + myspell-dictionary-mr [amd64] + myspell-dictionary-mr [i386] + myspell-dictionary-nr [amd64] + myspell-dictionary-nr [i386] + myspell-dictionary-nso [amd64] + myspell-dictionary-nso [i386] + myspell-dictionary-oc [amd64] + myspell-dictionary-oc [i386] + myspell-dictionary-om [amd64] + myspell-dictionary-om [i386] + myspell-dictionary-or [amd64] + myspell-dictionary-or [i386] + myspell-dictionary-pa-in [amd64] + myspell-dictionary-pa-in [i386] + myspell-dictionary-rw [amd64] + myspell-dictionary-rw [i386] + myspell-dictionary-si [amd64] + myspell-dictionary-si [i386] + myspell-dictionary-sl [amd64] + myspell-dictionary-sl [i386] + myspell-dictionary-ss [amd64] + myspell-dictionary-ss [i386] + myspell-dictionary-st [amd64] + myspell-dictionary-st [i386] + myspell-dictionary-ta [amd64] + myspell-dictionary-ta [i386] + myspell-dictionary-te [amd64] + myspell-dictionary-te [i386] + myspell-dictionary-tg [amd64] + myspell-dictionary-tg [i386] + myspell-dictionary-tn [amd64] + myspell-dictionary-tn [i386] + myspell-dictionary-ts [amd64] + myspell-dictionary-ts [i386] + myspell-dictionary-ug [amd64] + myspell-dictionary-ug [i386] + myspell-dictionary-ve [amd64] + myspell-dictionary-ve [i386] + myspell-dictionary-xh [amd64] + myspell-dictionary-xh [i386] + myspell-dictionary-zh-cn [amd64] + myspell-dictionary-zh-cn [i386] + myspell-dictionary-zh-tw [amd64] + myspell-dictionary-zh-tw [i386] + myspell-dictionary-zu [amd64] + myspell-dictionary-zu [i386] + mythes-af [amd64] + mythes-af [i386] + mythes-ar [amd64] + mythes-ar [i386] + mythes-as [amd64] + mythes-as [i386] + mythes-ast [amd64] + mythes-ast [i386] + mythes-be [amd64] + mythes-be [i386] + mythes-bg [amd64] + mythes-bg [i386] + mythes-bn [amd64] + mythes-bn [i386] + mythes-br [amd64] + mythes-br [i386] + mythes-bs [amd64] + mythes-bs [i386] + mythes-cy [amd64] + mythes-cy [i386] + mythes-da [amd64] + mythes-da [i386] + mythes-dz [amd64] + mythes-dz [i386] + mythes-el [amd64] + mythes-el [i386] + mythes-en-za [amd64] + mythes-en-za [i386] + mythes-eo [amd64] + mythes-eo [i386] + mythes-es [amd64] + mythes-es [i386] + mythes-et [amd64] + mythes-et [i386] + mythes-eu [amd64] + mythes-eu [i386] + mythes-fa [amd64] + mythes-fa [i386] + mythes-fi [amd64] + mythes-fi [i386] + mythes-ga [amd64] + mythes-ga [i386] + mythes-gl [amd64] + mythes-gl [i386] + mythes-gu [amd64] + mythes-gu [i386] + mythes-he [amd64] + mythes-he [i386] + mythes-hi [amd64] + mythes-hi [i386] + mythes-hr [amd64] + mythes-hr [i386] + mythes-id [amd64] + mythes-id [i386] + mythes-is [amd64] + mythes-is [i386] + mythes-ja [amd64] + mythes-ja [i386] + mythes-ka [amd64] + mythes-ka [i386] + mythes-km [amd64] + mythes-km [i386] + mythes-ko [amd64] + mythes-ko [i386] + mythes-ku [amd64] + mythes-ku [i386] + mythes-lt [amd64] + mythes-lt [i386] + mythes-lv [amd64] + mythes-lv [i386] + mythes-mk [amd64] + mythes-mk [i386] + mythes-ml [amd64] + mythes-ml [i386] + mythes-mn [amd64] + mythes-mn [i386] + mythes-mr [amd64] + mythes-mr [i386] + mythes-nb [amd64] + mythes-nb [i386] + mythes-nl [amd64] + mythes-nl [i386] + mythes-nn [amd64] + mythes-nn [i386] + mythes-nr [amd64] + mythes-nr [i386] + mythes-nso [amd64] + mythes-nso [i386] + mythes-oc [amd64] + mythes-oc [i386] + mythes-om [amd64] + mythes-om [i386] + mythes-or [amd64] + mythes-or [i386] + mythes-pa-in [amd64] + mythes-pa-in [i386] + mythes-pt [amd64] + mythes-pt [i386] + mythes-pt-br [amd64] + mythes-pt-br [i386] + mythes-rw [amd64] + mythes-rw [i386] + mythes-si [amd64] + mythes-si [i386] + mythes-sl [amd64] + mythes-sl [i386] + mythes-sr [amd64] + mythes-sr [i386] + mythes-ss [amd64] + mythes-ss [i386] + mythes-st [amd64] + mythes-st [i386] + mythes-sv [amd64] + mythes-sv [i386] + mythes-ta [amd64] + mythes-ta [i386] + mythes-te [amd64] + mythes-te [i386] + mythes-tg [amd64] + mythes-tg [i386] + mythes-th [amd64] + mythes-th [i386] + mythes-tn [amd64] + mythes-tn [i386] + mythes-tr [amd64] + mythes-tr [i386] + mythes-ts [amd64] + mythes-ts [i386] + mythes-ug [amd64] + mythes-ug [i386] + mythes-uk [amd64] + mythes-uk [i386] + mythes-uz [amd64] + mythes-uz [i386] + mythes-ve [amd64] + mythes-ve [i386] + mythes-vi [amd64] + mythes-vi [i386] + mythes-xh [amd64] + mythes-xh [i386] + mythes-zh-cn [amd64] + mythes-zh-cn [i386] + mythes-zh-tw [amd64] + mythes-zh-tw [i386] + mythes-zu [amd64] + mythes-zu [i386] + narval-utils [amd64] + narval-utils [i386] + nauty [amd64] + nauty [i386] + ncbi-seg [amd64] + ncbi-seg [i386] + ncl [amd64] + ncl [i386] + neo [amd64] + neo [i386] + nest [amd64] + nest [i386] + netdisco-mibs-installer [amd64] + netdisco-mibs-installer [i386] + netepi-analysis [amd64] + netepi-analysis [i386] + netepi-collection [amd64] + netepi-collection [i386] + netgen [amd64] + netgen [i386] + netgen-doc [amd64] + netgen-doc [i386] + neurodata [amd64] + neurodata [i386] + ngila [amd64] + ngila [i386] + ngspice [amd64] + ngspice [i386] + nictools-nopci [amd64] + nictools-nopci [i386] + nipy-suite [amd64] + nipy-suite [i386] + nmoldyn [amd64] + nmoldyn [i386] + noatun [amd64] + noatun [i386] + noatun-plugins [amd64] + noatun-plugins [i386] + nordugrid-arc-nox [amd64] + nordugrid-arc-nox [i386] + norsnet [amd64] + norsnet [i386] + norsp [amd64] + norsp [i386] + noteedit [amd64] + noteedit [i386] + nrec [amd64] + nrec [i386] + nspike [amd64] + nspike [i386] + nvidia-cuda-toolkit [amd64] + nvidia-cuda-toolkit [i386] + nvidia-current [amd64] + nvidia-current [i386] + nvidia-current-updates [amd64] + nvidia-current-updates [i386] + nvidia-glx [amd64] + nvidia-glx [i386] + nvidia-glx-any [amd64] + nvidia-glx-any [i386] + nvidia-libopencl1-dev [amd64] + nvidia-libopencl1-dev [i386] + nvidia-settings [amd64] + nvidia-settings [i386] + nvidia-vdpau-driver [amd64] + nvidia-vdpau-driver [i386] + nw-align [amd64] + nw-align [i386] + nxml-mode [amd64] + nxml-mode [i386] + oaklisp [amd64] + oases [amd64] + oases [i386] + obo-edit [amd64] + obo-edit [i386] + ocaml-doc [amd64] + ocaml-doc [i386] + ocropus (>= 0.3.1) [amd64] + ocropus (>= 0.3.1) [i386] + octace-bioinfo [amd64] + octace-bioinfo [i386] + octave-bioinfo [amd64] + octave-bioinfo [i386] + octave-dicom [amd64] + octave-dicom [i386] + octavede [amd64] + octavede [i386] + octaviz [amd64] + octaviz [i386] + octopus [amd64] + octopus [i386] + ogle-gui [amd64] + ogle-gui [i386] + ohphone [amd64] + ohphone [i386] + ohphone-basic [amd64] + ohphone-basic [i386] + oligoarrayaux [amd64] + oligoarrayaux [i386] + omegamap [amd64] + omegamap [i386] + omero [amd64] + omero [i386] + omninotify [amd64] + omninotify [i386] + opencascade-draw [amd64] + opencascade-draw [i386] + openchrom [amd64] + openchrom [i386] + opencl-icd [amd64] + opencl-icd [i386] + opencpn [amd64] + opencpn [i386] + opendap [amd64] + opendap [i386] + opendicom.net [amd64] + opendicom.net [i386] + openelectrophy [amd64] + openelectrophy [i386] + openemr [amd64] + openemr [i386] + openev [amd64] + openev [i386] + openfoam [amd64] + openfoam [i386] + openjump [amd64] + openjump [i386] + openmolar [amd64] + openmolar [i386] + openmovieeditor [amd64] + openmovieeditor [i386] + openoffice.org-core (>= 1:2.4) [amd64] + openoffice.org-core (>= 1:2.4) [i386] + openoffice.org-core (>= 2.0.2) [amd64] + openoffice.org-core (>= 2.0.2) [i386] + openoffice.org-hunspell [amd64] + openoffice.org-hunspell [i386] + openpms [amd64] + openpms [i386] + openrep [amd64] + openrep [i386] + openser [amd64] + openser [i386] + opensesame [amd64] + opensesame [i386] + opensourcepacs [amd64] + opensourcepacs [i386] + opensync-plugin-gpe [amd64] + opensync-plugin-gpe [i386] + openthesaurus-de-kword [amd64] + openthesaurus-de-kword [i386] + openttd-opensfx [amd64] + openttd-opensfx [i386] + openturns-wrapper [amd64] + openturns-wrapper [i386] + openvas-client [amd64] + openvas-client [i386] + openvas-scanner [amd64] + openvas-scanner [i386] + openvas-server [amd64] + openvas-server [i386] + openvibe [amd64] + openvibe [i386] + openvswitch-datapath-module [amd64] + openvswitch-datapath-module [i386] + openwalnut [amd64] + openwalnut [i386] + operondb [amd64] + operondb [i386] + oprofile (>= 0.9) [amd64] + oprofile (>= 0.9) [i386] + opticks [amd64] + opticks [i386] + orbfit [amd64] + orbfit [i386] + orca [amd64] + orca [i386] + orfeo [amd64] + orfeo [i386] + orocos-bfl [amd64] + orocos-bfl [i386] + orocos-kdl [amd64] + orocos-kdl [i386] + orocos-ocl [amd64] + orocos-ocl [i386] + orocos-rtt [amd64] + orocos-rtt [i386] + orthanc [amd64] + orthanc [i386] + osh [amd64] + osh [i386] + osmembrane [amd64] + osmembrane [i386] + osmosis-plugin-borderextract [amd64] + osmosis-plugin-borderextract [i386] + osra [amd64] + osra [i386] + osrm [amd64] + osrm [i386] + p7zip-rar [amd64] + p7zip-rar [i386] + packaging-tools [amd64] + packaging-tools [i386] + pal2nal [amd64] + pal2nal [i386] + paml [amd64] + paml [i386] + pandas [amd64] + pandas [i386] + pangographite [amd64] + pangographite [i386] + panorama [amd64] + panorama [i386] + partigene [amd64] + partigene [i386] + partlibrary [amd64] + partlibrary [i386] + passivetex (>> 1.25-2) [amd64] + passivetex (>> 1.25-2) [i386] + patchclamp [amd64] + patchclamp [i386] + patman [amd64] + patman [i386] + patristic [amd64] + patristic [i386] + pcma [amd64] + pcma [i386] + pcmcia-cs [amd64] + pcmcia-cs [i386] + pcsim [amd64] + pcsim [i386] + pdfedit [amd64] + pdfedit [i386] + pdns-doc [amd64] + pdns-doc [i386] + pebl [amd64] + pebl [i386] + pencil [amd64] + pencil [i386] + perlsgml [amd64] + perlsgml [i386] + pessulus [amd64] + pessulus [i386] + petsc-dbg (= 3.2.dfsg-6) [amd64] + petsc-dbg (= 3.2.dfsg-6) [i386] + petsc-dbg [amd64] + petsc-dbg [i386] + pfaat [amd64] + pfaat [i386] + pftools [amd64] + pftools [i386] + pgdesigner [amd64] + pgdesigner [i386] + pgfplots [amd64] + pgfplots [i386] + pgp-i [amd64] + pgp-i [i386] + pgplot5 [amd64] + pgplot5 [i386] + phagefinder [amd64] + phagefinder [i386] + phonon-backend-mplayer [amd64] + phonon-backend-mplayer [i386] + php-crypt-gpg [amd64] + php-crypt-gpg [i386] + php-gdcm [amd64] + php-gdcm [i386] + php5-suhosin [amd64] + php5-suhosin [i386] + phpbb2 [amd64] + phpbb2 [i386] + phpphylotree [amd64] + phpphylotree [i386] + phpunit-dbunit [amd64] + phpunit-dbunit [i386] + phy-spread [amd64] + phy-spread [i386] + phylip [amd64] + phylip [i386] + phylographer [amd64] + phylographer [i386] + phyloviz-core [amd64] + phyloviz-core [i386] + phylowin [amd64] + phylowin [i386] + piano [amd64] + piano [i386] + picon-domains [amd64] + picon-domains [i386] + picons [amd64] + picons [i386] + pike [amd64] + pike [i386] + pike7.6 [amd64] + pike7.6 [i386] + pike7.8 [amd64] + pike7.8 [i386] + pilot-qof [amd64] + pilot-qof [i386] + pinentry-x2go [amd64] + pinentry-x2go [i386] + planunc [amd64] + planunc [i386] + plasma-scriptengine-kimono [amd64] + plasma-scriptengine-kimono [i386] + platinumarts-sandbox [amd64] + platinumarts-sandbox [i386] + plato [amd64] + plato [i386] + plot-digitizer [amd64] + plot-digitizer [i386] + plotmtv [amd64] + plotmtv [i386] + pm-utils-light [amd64] + pm-utils-light [i386] + points2grid [amd64] + points2grid [i386] + polsarpro [amd64] + polsarpro [i386] + polybori-gui [amd64] + polybori-gui [i386] + postgresql-8.4 [amd64] + postgresql-8.4 [i386] + postgresql-server [amd64] + postgresql-server [i386] + potassco-guide [amd64] + potassco-guide [i386] + povray [amd64] + povray [i386] + prank [amd64] + prank [i386] + predictnls [amd64] + predictnls [i386] + predictprotein [amd64] + predictprotein [i386] + preferences.app [amd64] + preferences.app [i386] + proalign [amd64] + proalign [i386] + profbval [amd64] + profbval [i386] + profchop [amd64] + profchop [i386] + profcon [amd64] + profcon [i386] + profisis [amd64] + profisis [i386] + profit [amd64] + profit [i386] + proj [amd64] + proj [i386] + proofgeneral-coq [amd64] + proofgeneral-coq [i386] + proofgeneral-minlog [amd64] + proofgeneral-minlog [i386] + prot4est [amd64] + prot4est [i386] + proteus [amd64] + proteus [i386] + pscan-tfbs [amd64] + pscan-tfbs [i386] + psi-plus-i18n [amd64] + psi-plus-i18n [i386] + psignifit3 [amd64] + psignifit3 [i386] + psipred [amd64] + psipred [i386] + psom [amd64] + psom [i386] + psych [amd64] + psych [i386] + psychlops [amd64] + psychlops [i386] + psychometric [amd64] + psychometric [i386] + psychotree [amd64] + psychotree [i386] + psyphy [amd64] + psyphy [i386] + psytoolkit [amd64] + psytoolkit [i386] + pyaps [amd64] + pyaps [i386] + pybrain [amd64] + pybrain [i386] + pycgns [amd64] + pycgns [i386] + pydap [amd64] + pydap [i386] + pymarc [amd64] + pymarc [i386] + pymeg [amd64] + pymeg [i386] + pynn [amd64] + pynn [i386] + pyode [amd64] + pyode [i386] + pyrophosphate-tools [amd64] + pyrophosphate-tools [i386] + pysurfer [amd64] + pysurfer [i386] + python-4suite-xml [amd64] + python-4suite-xml [i386] + python-astropy-legacy [amd64] + python-astropy-legacy [i386] + python-biom-format [amd64] + python-biom-format [i386] + python-casmoothing [amd64] + python-casmoothing [i386] + python-celementtree [amd64] + python-celementtree [i386] + python-clips [amd64] + python-clips [i386] + python-ctypes (>= 1.0.1) [amd64] + python-ctypes (>= 1.0.1) [i386] + python-dev-all (>= 2.6) [amd64] + python-dev-all (>= 2.6) [i386] + python-elemental [amd64] + python-elemental [i386] + python-elementtree [amd64] + python-elementtree [i386] + python-faulthandler-dbg (= 2.0-1) [amd64] + python-faulthandler-dbg (= 2.0-1) [i386] + python-flaskext.babel [amd64] + python-flaskext.babel [i386] + python-gdchart [amd64] + python-gdchart [i386] + python-gettext [amd64] + python-gettext [i386] + python-gnome2-extras (<< 2.19) [amd64] + python-gnome2-extras (<< 2.19) [i386] + python-gnome2-extras [amd64] + python-gnome2-extras [i386] + python-gtkmozembed [amd64] + python-gtkmozembed [i386] + python-guppy [amd64] + python-guppy [i386] + python-iolabs [amd64] + python-iolabs [i386] + python-jarabe-0.84 [amd64] + python-jarabe-0.84 [i386] + python-jarabe-0.88 [amd64] + python-jarabe-0.88 [i386] + python-jppy [amd64] + python-jppy [i386] + python-ldap-doc [amd64] + python-ldap-doc [i386] + python-librcsb-core-wrapper [amd64] + python-librcsb-core-wrapper [i386] + python-libxmp [amd64] + python-libxmp [i386] + python-mapnik [amd64] + python-mapnik [i386] + python-maxdb [amd64] + python-maxdb [i386] + python-mmtk [amd64] + python-mmtk [i386] + python-mzml [amd64] + python-mzml [i386] + python-mzml-doc [amd64] + python-mzml-doc [i386] + python-netcdf4 [amd64] + python-netcdf4 [i386] + python-neuron [amd64] + python-neuron [i386] + python-nipy [amd64] + python-nipy [i386] + python-numpy-ext [amd64] + python-numpy-ext [i386] + python-openslide [amd64] + python-openslide [i386] + python-orange [amd64] + python-orange [i386] + python-pandas-doc [amd64] + python-pandas-doc [i386] + python-pgsql (>= 2.5.1-1) [amd64] + python-pgsql (>= 2.5.1-1) [i386] + python-pgsql [amd64] + python-pgsql [i386] + python-poker-network [amd64] + python-poker-network [i386] + python-psyco [amd64] + python-psyco [i386] + python-psycopg [amd64] + python-psycopg [i386] + python-pymc [amd64] + python-pymc [i386] + python-pysam [amd64] + python-pysam [i386] + python-pysqlite [amd64] + python-pysqlite [i386] + python-qt3 (>= 3.0) [amd64] + python-qt3 (>= 3.0) [i386] + python-qt3 [amd64] + python-qt3 [i386] + python-rackspace-cloudfiles [amd64] + python-rackspace-cloudfiles [i386] + python-reaper [amd64] + python-reaper [i386] + python-restrictedpython [amd64] + python-restrictedpython [i386] + python-rtc [amd64] + python-rtc [i386] + python-sardana [amd64] + python-sardana [i386] + python-scikits-optimization [amd64] + python-scikits-optimization [i386] + python-sexy [amd64] + python-sexy [i386] + python-spherepack [amd64] + python-spherepack [i386] + python-spykeutils [amd64] + python-spykeutils [i386] + python-stats [amd64] + python-stats [i386] + python-tamtam-data [amd64] + python-tamtam-data [i386] + python-timbl [amd64] + python-timbl [i386] + python-tk (= 2.7.3-4+deb7u1) [amd64] + python-tk (= 2.7.3-4+deb7u1) [i386] + python-visa [amd64] + python-visa [i386] + python-vlc [amd64] + python-vlc [i386] + python-xml [amd64] + python-xml [i386] + python-xmms [amd64] + python-xmms [i386] + python-z3c.recipe.sphinxdoc [amd64] + python-z3c.recipe.sphinxdoc [i386] + python-zope.browserpage [amd64] + python-zope.browserpage [i386] + python-zope.browserresource [amd64] + python-zope.browserresource [i386] + python-zope.container [amd64] + python-zope.container [i386] + python-zope.pagetemplate [amd64] + python-zope.pagetemplate [i386] + python-zope.site [amd64] + python-zope.site [i386] + python-zope.tal (>= 3.5.0) [amd64] + python-zope.tal (>= 3.5.0) [i386] + python-zsync [amd64] + python-zsync [i386] + python2.3-xml [amd64] + python2.3-xml [i386] + python3-imaging [amd64] + python3-imaging [i386] + python3-tk (>= 3.2.3-6) [amd64] + python3-tk (>= 3.2.3-6) [i386] + python3-wxgtk [amd64] + python3-wxgtk [i386] + python3-wxgtk2.8 [amd64] + python3-wxgtk2.8 [i386] + pywps [amd64] + pywps [i386] + pyxid [amd64] + pyxid [i386] + qmapcontrol [amd64] + qmapcontrol [i386] + qpopper-drac [amd64] + qpopper-drac [i386] + qrisk2 [amd64] + qrisk2 [i386] + qrtailab [amd64] + qrtailab [i386] + qtdmm [amd64] + qtdmm [i386] + qtlcart [amd64] + qtlcart [i386] + quack-el [amd64] + quack-el [i386] + quaneko [amd64] + quaneko [i386] + quanta [amd64] + quanta [i386] + qucs [amd64] + qucs [i386] + r-ape [amd64] + r-ape [i386] + r-cran-acepack [amd64] + r-cran-acepack [i386] + r-cran-aplpack [amd64] + r-cran-aplpack [i386] + r-cran-beeswarm [amd64] + r-cran-beeswarm [i386] + r-cran-bigmemory [amd64] + r-cran-bigmemory [i386] + r-cran-fcalendar [amd64] + r-cran-fcalendar [i386] + r-cran-fecofin [amd64] + r-cran-fecofin [i386] + r-cran-fseries [amd64] + r-cran-fseries [i386] + r-cran-maptools [amd64] + r-cran-maptools [i386] + r-cran-ncdf [amd64] + r-cran-ncdf [i386] + r-cran-rmetrics [amd64] + r-cran-rmetrics [i386] + r-cran-rpvm [amd64] + r-cran-rpvm [i386] + r-cran-surveillance [amd64] + r-cran-surveillance [i386] + r-cran-testthat [amd64] + r-cran-testthat [i386] + r-other-gking-matchit [amd64] + r-other-gking-matchit [i386] + r-other-tcltk [amd64] + r-other-tcltk [i386] + r-other-valdar-bagphenotype.library [amd64] + r-other-valdar-bagphenotype.library [i386] + raccoon [amd64] + raccoon [i386] + rar [amd64] + rar [i386] + ratfor77 [amd64] + ratfor77 [i386] + ray-denovoassembler [amd64] + ray-denovoassembler [i386] + rbs-finder [amd64] + rbs-finder [i386] + rdp-classifier [amd64] + rdp-classifier [i386] + readom [amd64] + readom [i386] + realplayer [amd64] + realplayer [i386] + recombine [amd64] + recombine [i386] + redhat-cluster-modules [amd64] + redhat-cluster-modules [i386] + relacs [amd64] + relacs [i386] + remitt [amd64] + remitt [i386] + repast [amd64] + repast [i386] + repeatmasker [amd64] + repeatmasker [i386] + resmedicinae [amd64] + resmedicinae [i386] + rhnsd [amd64] + rhnsd [i386] + rmblast [amd64] + rmblast [i386] + roadmap-gtk2 [amd64] + roadmap-gtk2 [i386] + roadmap-qt [amd64] + roadmap-qt [i386] + roboop [amd64] + roboop [i386] + roche454ace2caf [amd64] + roche454ace2caf [i386] + roeadmap [amd64] + roeadmap [i386] + roipac [amd64] + roipac [i386] + root-plugin-graf2d-gviz (>= 5.34.00-2) [amd64] + root-plugin-graf2d-gviz (>= 5.34.00-2) [i386] + root-plugin-net-netx [amd64] + root-plugin-net-netx [i386] + root-plugin-proof-xproof [amd64] + root-plugin-proof-xproof [i386] + root-vmc [amd64] + root-vmc [i386] + rose [amd64] + rose [i386] + rosetta [amd64] + rosetta [i386] + rsbep (>= 0.0.5) [amd64] + rsbep (>= 0.0.5) [i386] + rsplib-tools [amd64] + rsplib-tools [i386] + rtf2xml [amd64] + rtf2xml [i386] + rtnet [amd64] + rtnet [i386] + rtxi [amd64] + rtxi [i386] + ruby-coffee-rails [amd64] + ruby-coffee-rails [i386] + ruby-fastgettext [amd64] + ruby-fastgettext [i386] + ruby-fcgi [amd64] + ruby-fcgi [i386] + ruby-uglifier [amd64] + ruby-uglifier [i386] + run-one [amd64] + run-one [i386] + runit-run [amd64] + runit-run [i386] + sabnzbdplus (>= 0.5.2) [amd64] + sabnzbdplus (>= 0.5.2) [i386] + sabnzbdplus [amd64] + sabnzbdplus [i386] + saga [amd64] + saga [i386] + sagemath [amd64] + sagemath [i386] + salome [amd64] + salome [i386] + samba-gtk [amd64] + samba-gtk [i386] + sap [amd64] + sap [i386] + science-bci [amd64] + science-bci [i386] + scilab-overload [amd64] + scilab-overload [i386] + scilab-scimax [amd64] + scilab-scimax [i386] + scilab-sivp (>= 0.5.2) [amd64] + scilab-sivp (>= 0.5.2) [i386] + scilab-sivp [amd64] + scilab-sivp [i386] + scilab-swt [amd64] + scilab-swt [i386] + scim-anthy [amd64] + scim-anthy [i386] + scim-bridge-agent [amd64] + scim-bridge-agent [i386] + scim-hangul [amd64] + scim-hangul [i386] + scim-pinyin [amd64] + scim-pinyin [i386] + scim-prime [amd64] + scim-prime [i386] + scim-qt-immodule [amd64] + scim-qt-immodule [i386] + scim-uim [amd64] + scim-uim [i386] + score-reading-trainer [amd64] + score-reading-trainer [i386] + scsh-0.6 (>= 0.6.6) [amd64] + scsh-0.6 [amd64] + sdm [amd64] + sdm [i386] + sdr [amd64] + sdr [i386] + seaview [amd64] + seaview [i386] + sensible-browser [amd64] + sensible-browser [i386] + seq-gen [amd64] + seq-gen [i386] + seqtk [amd64] + seqtk [i386] + sequenceconverter.app [amd64] + sequenceconverter.app [i386] + ser [amd64] + ser [i386] + sessioninstaller [amd64] + sessioninstaller [i386] + sga [amd64] + sga [i386] + sheepdog [amd64] + sheepdog [i386] + shogun-python-modular [amd64] + shogun-python-modular [i386] + shorlfilter [amd64] + shorlfilter [i386] + sidplay2fp [amd64] + sidplay2fp [i386] + sift [amd64] + sift [i386] + simph323 [amd64] + simph323 [i386] + simplythml [amd64] + simplythml [i386] + singular [amd64] + singular [i386] + sixpack [amd64] + sixpack [i386] + sjjb-map-icons [amd64] + sjjb-map-icons [i386] + skencil [amd64] + skencil [i386] + slang-gtk [amd64] + slang-gtk [i386] + slicer [amd64] + slicer [i386] + slony1-bin [amd64] + slony1-bin [i386] + smalt [amd64] + smalt [i386] + smlnj-doc [amd64] + smlnj-doc [i386] + sms-pl [amd64] + sms-pl [i386] + snap [amd64] + snap [i386] + snapfun [amd64] + snapfun [i386] + snaphu [amd64] + snaphu [i386] + snmp-mibs-downloader [amd64] + snmp-mibs-downloader [i386] + snpeff [amd64] + snpeff [i386] + soapdenovo [amd64] + soapdenovo [i386] + sodipodi [amd64] + sodipodi [i386] + solid [amd64] + solid [i386] + spacechart [amd64] + spacechart [i386] + spatialite-gui [amd64] + spatialite-gui [i386] + spectrum-roms [amd64] + spectrum-roms [i386] + speedbar [amd64] + speedbar [i386] + spglib [amd64] + spglib [i386] + spice [amd64] + spice [i386] + spider [amd64] + spider [i386] + spike [amd64] + spike [i386] + spis [amd64] + spis [i386] + splitstree [amd64] + splitstree [i386] + spm8 [amd64] + spm8 [i386] + spread-phy [amd64] + spread-phy [i386] + spring-map [amd64] + spring-map [i386] + spring-maps-deltasiege [amd64] + spring-maps-deltasiege [i386] + spring-mod [amd64] + spring-mod [i386] + spring-mods-kernelpanic [amd64] + spring-mods-kernelpanic [i386] + spykeview [amd64] + spykeview [i386] + sqlclinic [amd64] + sqlclinic [i386] + sra-sdk [amd64] + sra-sdk [i386] + sri24-atlas [amd64] + sri24-atlas [i386] + ssaha [amd64] + ssaha [i386] + ssystem [amd64] + ssystem [i386] + stabilitycalc [amd64] + stabilitycalc [i386] + star [amd64] + star [i386] + stars [amd64] + stars [i386] + starttls [amd64] + starttls [i386] + stegavorto [amd64] + stegavorto [i386] + stir [amd64] + stir [i386] + strap [amd64] + strap [i386] + streamtuner [amd64] + streamtuner [i386] + strigi-plugins [amd64] + strigi-plugins [i386] + sucrose-0.88 [amd64] + sucrose-0.88 [i386] + sufary [amd64] + sufary [i386] + sugar-0.84 [amd64] + sugar-0.84 [i386] + sugar-0.88 [amd64] + sugar-0.88 [i386] + sugar-0.96 [amd64] + sugar-0.96 [i386] + sugar-browse-activity [amd64] + sugar-browse-activity [i386] + sugar-browse-activity-0.86 [amd64] + sugar-browse-activity-0.86 [i386] + sugar-chat-activity [amd64] + sugar-chat-activity [i386] + sugar-chat-activity-0.86 [amd64] + sugar-chat-activity-0.86 [i386] + sugar-doc [amd64] + sugar-doc [i386] + sugar-emulator-0.88 [amd64] + sugar-emulator-0.88 [i386] + sugar-etoys-activity [amd64] + sugar-etoys-activity [i386] + sugar-imageviewer-activity [amd64] + sugar-imageviewer-activity [i386] + sugar-imageviewer-activity-0.96 [amd64] + sugar-imageviewer-activity-0.96 [i386] + sugar-jukebox-activity [amd64] + sugar-jukebox-activity [i386] + sugar-jukebox-activity-0.96 [amd64] + sugar-jukebox-activity-0.96 [i386] + sugar-log-activity [amd64] + sugar-log-activity [i386] + sugar-log-activity-0.86 [amd64] + sugar-log-activity-0.86 [i386] + sugar-presence-service-0.96 [amd64] + sugar-presence-service-0.96 [i386] + sugar-read-activity-0.86 [amd64] + sugar-read-activity-0.86 [i386] + sugar-session [amd64] + sugar-session [i386] + sugar-session-0.88 [amd64] + sugar-session-0.88 [i386] + sugar-write-activity [amd64] + sugar-write-activity [i386] + sugar-write-activity-0.86 [amd64] + sugar-write-activity-0.86 [i386] + sugar-write-activity-0.88 [amd64] + sugar-write-activity-0.88 [i386] + sun-java6-fonts [amd64] + sun-java6-fonts [i386] + svgcairo [amd64] + svgcairo [i386] + swat2 [amd64] + swat2 [i386] + swfupload [amd64] + swfupload [i386] + swi-prolog-clib [amd64] + swi-prolog-clib [i386] + swi-prolog-http [amd64] + swi-prolog-http [i386] + swi-prolog-semweb [amd64] + swi-prolog-semweb [i386] + swi-prolog-sgml [amd64] + swi-prolog-sgml [i386] + swi-prolog-table [amd64] + swi-prolog-table [i386] + swi-prolog-xpce [amd64] + swi-prolog-xpce [i386] + systemc [amd64] + systemc [i386] + t-gnus [amd64] + t-gnus [i386] + tac-plus [amd64] + tac-plus [i386] + tacg [amd64] + tacg [i386] + tads-dev [amd64] + tads-dev [i386] + tandem-mass [amd64] + tandem-mass [i386] + tao-ifr [amd64] + tao-ifr [i386] + task-c-devel [amd64] + task-c-devel [i386] + task-devel-common [amd64] + task-devel-common [i386] + taverna [amd64] + taverna [i386] + taxinspector [amd64] + taxinspector [i386] + tc-utils [amd64] + tc-utils [i386] + tempo [amd64] + tempo [i386] + tetex-bin [amd64] + tetex-bin [i386] + tetra [amd64] + tetra [i386] + texinfo-doc-nonfree [amd64] + texinfo-doc-nonfree [i386] + texlive-base-recommended [amd64] + texlive-base-recommended [i386] + texlive-bin [amd64] + texlive-bin [i386] + thera-pi [amd64] + thera-pi [i386] + thunar-thumbnailers [amd64] + thunar-thumbnailers [i386] + tightvnc-java [amd64] + tightvnc-java [i386] + tigr-assembler [amd64] + tigr-assembler [i386] + tigr-glimmer-mg [amd64] + tigr-glimmer-mg [i386] + tilemill [amd64] + tilemill [i386] + tinker [amd64] + tinker [i386] + tinyheb [amd64] + tinyheb [i386] + tinyows [amd64] + tinyows [i386] + tipcutils [amd64] + tipcutils [i386] + tk-tile (>= 0.8.0) [amd64] + tk-tile (>= 0.8.0) [i386] + tkdvi [amd64] + tkdvi [i386] + tkman [amd64] + tkman [i386] + tkosm [amd64] + tkosm [i386] + tochnog [amd64] + tochnog [i386] + toolame [amd64] + toolame [i386] + tophat [amd64] + tophat [i386] + totalopenstation [amd64] + totalopenstation [i386] + touchfreeze [amd64] + touchfreeze [i386] + trac-spamfilter [amd64] + trac-spamfilter [i386] + trac-wikirename [amd64] + trac-wikirename [i386] + trace2dbest [amd64] + trace2dbest [i386] + tracetuner [amd64] + tracetuner [i386] + treebuilder3d [amd64] + treebuilder3d [i386] + treetime [amd64] + treetime [i386] + treetool [amd64] + treetool [i386] + treeview [amd64] + treeview [i386] + trellis-neuro [amd64] + trellis-neuro [i386] + tripal [amd64] + tripal [i386] + trnascan-se [amd64] + trnascan-se [i386] + tsclient [amd64] + tsclient [i386] + tscope [amd64] + tscope [i386] + ttf-arhangai [amd64] + ttf-arhangai [i386] + ttf-larabie-deco [amd64] + ttf-larabie-deco [i386] + ttf-larabie-straight [amd64] + ttf-larabie-straight [i386] + ttf-mscorefonts-installer [amd64] + ttf-mscorefonts-installer [i386] + ttf-thryomanes [amd64] + ttf-thryomanes [i386] + ttf-ubuntu-font-family (>= 0.80-0ubuntu1~medium) [amd64] + ttf-ubuntu-font-family (>= 0.80-0ubuntu1~medium) [i386] + ttf2pt1 [amd64] + ttf2pt1 [i386] + tuxpaint (= 1:0.9.21) [amd64] + tuxpaint (= 1:0.9.21) [i386] + twain [amd64] + twain [i386] + twlog [amd64] + twlog [i386] + uae [amd64] + uae [i386] + ubuntu-keyring [amd64] + ubuntu-keyring [i386] + ubuntu-system-service [amd64] + ubuntu-system-service [i386] + ugene [amd64] + ugene [i386] + uhd-contrib-images [amd64] + uhd-contrib-images [i386] + ultrastar-ng-xine [amd64] + ultrastar-ng-xine [i386] + unionfs-modules [amd64] + unionfs-modules [i386] + uniprime [amd64] + uniprime [i386] + unrar [amd64] + unrar [i386] + update-cluster [amd64] + update-cluster [i386] + util-vserver [amd64] + util-vserver [i386] + uw-prism [amd64] + uw-prism [i386] + vala [amd64] + vala [i386] + varkon [amd64] + varkon [i386] + varres [amd64] + varres [i386] + vbpp [amd64] + vbpp [i386] + vbs [amd64] + vbs [i386] + vcf [amd64] + vcf [i386] + vcg [amd64] + vcg [i386] + vdpau-driver [amd64] + vdpau-driver [i386] + vdr-enigmang-icons [amd64] + vdr-enigmang-icons [i386] + vegan [amd64] + vegan [i386] + vidcontrol [amd64] + vidcontrol [i386] + vienna-rna [amd64] + vienna-rna [i386] + vipec [amd64] + vipec [i386] + virtualbox-guest-additions-iso [amd64] + virtualbox-guest-additions-iso [i386] + virtuoso-vad-dbpedia [amd64] + virtuoso-vad-dbpedia [i386] + virtuoso-vad-facetedbrowser [amd64] + virtuoso-vad-facetedbrowser [i386] + visionegg [amd64] + visionegg [i386] + visit [amd64] + visit [i386] + visualvm [amd64] + visualvm [i386] + vmd [amd64] + vmd [i386] + vmtk [amd64] + vmtk [i386] + vnc-java [amd64] + vnc-java [i386] + vorbistools [amd64] + vorbistools [i386] + vtp [amd64] + vtp [i386] + w3-recs [amd64] + w3-recs [i386] + wanna-build [amd64] + wanna-build [i386] + wannier90 [amd64] + wannier90 [i386] + wannier90-dev [amd64] + wannier90-dev [i386] + wap-wml-tools [amd64] + wap-wml-tools [i386] + watanabe-vfont (>> 1-6.6) [amd64] + watanabe-vfont (>> 1-6.6) [i386] + wdg-html-reference [amd64] + wdg-html-reference [i386] + wgs-assembler [amd64] + wgs-assembler [i386] + wims [amd64] + wims [i386] + wmii2 [amd64] + wmii2 [i386] + wmsun [amd64] + wmsun [i386] + wnsqlbuilder [amd64] + wnsqlbuilder [i386] + wordtrans-console [amd64] + wordtrans-console [i386] + wordtrans-data [amd64] + wordtrans-data [i386] + wordtrans-kde [amd64] + wordtrans-kde [i386] + worldwind [amd64] + worldwind [i386] + x-tandem-pipeline [amd64] + x-tandem-pipeline [i386] + x-www-browser [amd64] + x-www-browser [i386] + x3270 [amd64] + x3270 [i386] + xarith [amd64] + xarith [i386] + xastir [amd64] + xastir [i386] + xcin (>= 2.5.0-0.2) [amd64] + xcin (>= 2.5.0-0.2) [i386] + xdialog [amd64] + xdialog [i386] + xem [amd64] + xem [i386] + xemacs21-bin [amd64] + xemacs21-bin [i386] + xenomai [amd64] + xenomai [i386] + xephem [amd64] + xephem [i386] + xfce4-xfapplet-plugin [amd64] + xfce4-xfapplet-plugin [i386] + xfonts-base-transcoded [amd64] + xfonts-base-transcoded [i386] + xfonts-biznet-iso-8859-2-100dpi [amd64] + xfonts-biznet-iso-8859-2-100dpi [i386] + xfonts-biznet-iso-8859-2-75dpi [amd64] + xfonts-biznet-iso-8859-2-75dpi [i386] + xfonts-biznet-iso-8859-2-base [amd64] + xfonts-biznet-iso-8859-2-base [i386] + xfonts-cjk [amd64] + xfonts-cjk [i386] + xfree86-common [amd64] + xfree86-common [i386] + xfreerdp [amd64] + xfreerdp [i386] + xgd-open [amd64] + xgd-open [i386] + xgdvi [amd64] + xgdvi [i386] + xlispstat [amd64] + xlispstat [i386] + xlockmore [amd64] + xlockmore [i386] + xmcd [amd64] + xmcd [i386] + xmind [amd64] + xmind [i386] + xnat [amd64] + xnat [i386] + xorsa [amd64] + xorsa [i386] + xpdf-reader [amd64] + xpdf-reader [i386] + xsidplay [amd64] + xsidplay [i386] + xtranslate [amd64] + xtranslate [i386] + xul-ext-gnome-keyring [amd64] + xul-ext-gnome-keyring [i386] + xul-ext-torbutton [amd64] + xul-ext-torbutton [i386] + xvid4conf [amd64] + xvid4conf [i386] + xvidcap [amd64] + xvidcap [i386] + xvidtune [amd64] + xvidtune [i386] + xxdiff [amd64] + xxdiff [i386] + y4mscaler [amd64] + y4mscaler [i386] + yafray [amd64] + yafray [i386] + yale [amd64] + yale [i386] + youtube-dl [amd64] + youtube-dl [i386] + zalign [amd64] + zalign [i386] + zcode-game [amd64] + zcode-game [i386] + zodiac-zeden [amd64] + zodiac-zeden [i386] + zorp-doc [amd64] + zorp-doc [i386] + zotero [amd64] + zotero [i386] + zygrib [amd64] + zygrib [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot7Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot7Test_gold new file mode 100644 index 00000000..350f583f --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot7Test_gold @@ -0,0 +1,676 @@ +Loading packages... +Verifying... +Missing dependencies (673): + abrowser [amd64] + abrowser [i386] + apache [amd64] + apache [i386] + apache-perl [amd64] + apache-perl [i386] + apache-ssl [amd64] + apache-ssl [i386] + apt-rpm-client (>= 0.5.5cnc2) [amd64] + apt-rpm-client (>= 0.5.5cnc2) [i386] + asterisk-config-custom [amd64] + asterisk-config-custom [i386] + bbchess [amd64] + bbchess [i386] + belocs-locales-data [amd64] + belocs-locales-data [i386] + bind [amd64] + bind [i386] + bladeenc [amd64] + bladeenc [i386] + busybox-cvs [amd64] + busybox-cvs [i386] + busybox-cvs-static [amd64] + busybox-cvs-static [i386] + busybox-initramfs [amd64] + busybox-initramfs [i386] + cacao-oj6-jre [amd64] + cacao-oj6-jre [i386] + cdda2wav [amd64] + cdda2wav [i386] + cli-uno-bridge (= 1:3.5.4+dfsg2-0+deb7u2) [amd64] + cli-uno-bridge (= 1:3.5.4+dfsg2-0+deb7u2) [i386] + cmail [amd64] + cmail [i386] + conky-all [amd64] + conky-all [i386] + crafty [amd64] + crafty [i386] + cuneiform [amd64] + cuneiform [i386] + cupsys-bsd [i386] + custom-icewm-font [amd64] + custom-icewm-font [i386] + deliver [amd64] + deliver [i386] + dhcp [amd64] + dhcp [i386] + djbdns [amd64] + djbdns [i386] + djbdns-installer [amd64] + djbdns-installer [i386] + dpkg-maintscript-helper [amd64] + dpkg-maintscript-helper [i386] + dwm-tools [amd64] + dwm-tools [i386] + emacs-snapshot [amd64] + emacs-snapshot [i386] + emacs-snapshot-gtk [amd64] + emacs-snapshot-gtk [i386] + emacs-snapshot-lucid [amd64] + emacs-snapshot-lucid [i386] + emacs-snapshot-nox [amd64] + emacs-snapshot-nox [i386] + emacs21 [amd64] + emacs21 [i386] + emacs22 [amd64] + emacs22 [i386] + emacs22-gtk [amd64] + emacs22-gtk [i386] + emacs22-nox [amd64] + emacs22-nox [i386] + emacs24 [amd64] + emacs24 [i386] + exim [amd64] + exim [i386] + exim4-daemon-custom [amd64] + exim4-daemon-custom [i386] + faac [amd64] + faac [i386] + fcron [amd64] + fcron [i386] + fenix [amd64] + fenix-plugins-system [amd64] + fglrx-glx [amd64] + fglrx-glx [i386] + fileutils (>= 4.0-5) [amd64] + fileutils (>= 4.0-5) [i386] + findutils (<< 4.2.31-2) [amd64] + findutils (<< 4.2.31-2) [i386] + firefox (>= 3.5) [amd64] + firefox (>= 3.5) [i386] + firefox [amd64] + firefox [i386] + freebsd-net-tools [amd64] + freebsd-net-tools [i386] + fvwm-gnome (>= 1:2.5.13) [amd64] + fvwm-gnome (>= 1:2.5.13) [i386] + gcc-mingw-w64 (<< 4.6.3-3+4) [amd64] + gcc-mingw-w64 (<< 4.6.3-3+4) [i386] + gdm [amd64] + gdm [i386] + ghostcript-cups (= 9.05~dfsg-6.3+deb7u1) [amd64] + ghostcript-cups (= 9.05~dfsg-6.3+deb7u1) [i386] + ghostcript-x (= 9.05~dfsg-6.3+deb7u1) [amd64] + ghostcript-x (= 9.05~dfsg-6.3+deb7u1) [i386] + gij [amd64] + gij [i386] + git-core (<= 1:1.7.0.4-1) [amd64] + git-core (<= 1:1.7.0.4-1) [i386] + gkrellm2 [amd64] + gkrellm2 [i386] + gnome-themes-more [amd64] + gnome-themes-more [i386] + gnus [amd64] + gnus [i386] + graphicsmagick-im-compat [amd64] + graphicsmagick-im-compat [i386] + grep-dctrl (>= 0.11) [amd64] + grep-dctrl (>= 0.11) [i386] + gstreamer0.10-plugins-good (<= 0.10.28-2) [amd64] + gstreamer0.10-plugins-good (<= 0.10.28-2) [i386] + gstreamer0.10-videomixer2 [amd64] + gstreamer0.10-videomixer2 [i386] + gstreamer0.8-tools [amd64] + gstreamer0.8-tools [i386] + habak [amd64] + habak [i386] + humanity-icon-theme [amd64] + humanity-icon-theme [i386] + hurd [amd64] + hurd [i386] + ia32-libs-gtk-i386 [amd64] + ia32-libs-i386 [amd64] + iceape (>= 2.0) [amd64] + iceape (>= 2.0) [i386] + iceape (>= 2.0~a) [amd64] + iceape (>= 2.0~a) [i386] + iceape (>= 2.0~a1) [amd64] + iceape (>= 2.0~a1) [i386] + iceape (>= 2.0~a1~pre) [amd64] + iceape (>= 2.0~a1~pre) [i386] + iceape (>= 2.0~b2) [amd64] + iceape (>= 2.0~b2) [i386] + iceape (>= 2.1) [amd64] + iceape (>= 2.1) [i386] + iceape (>= 2.2) [amd64] + iceape (>= 2.2) [i386] + iceape (>= 2.5) [amd64] + iceape (>= 2.5) [i386] + iceape (>= 2.7) [amd64] + iceape (>= 2.7) [i386] + iceape [amd64] + iceape [i386] + iceape-browser (>= 2.0) [amd64] + iceape-browser (>= 2.0) [i386] + iceape-browser [amd64] + iceape-browser [i386] + icecat [amd64] + icecat [i386] + ids [amd64] + ids [i386] + ipxe (<< 1.0.0+git-20120202.f6840ba-2) [amd64] + ipxe (<< 1.0.0+git-20120202.f6840ba-2) [i386] + isdnutils [amd64] + isdnutils [i386] + java-6-runtime [amd64] + java-6-runtime [i386] + java-gcj-compat (>= 1.0.77-4) [amd64] + java-gcj-compat (>= 1.0.77-4) [i386] + java7-sdk [amd64] + java7-sdk [i386] + joystick (<< 20051019-6) [amd64] + joystick (<< 20051019-6) [i386] + jre [amd64] + jre [i386] + kbdcontrol [amd64] + kbdcontrol [i386] + kdebase-bin (<< 4:4.4.0-1) [amd64] + kdebase-bin (<< 4:4.4.0-1) [i386] + kolab-cyrus-imapd [amd64] + kolab-cyrus-imapd [i386] + ktsuss [amd64] + ktsuss [i386] + language-support-en [amd64] + language-support-en [i386] + language-support-translations-ca [amd64] + language-support-translations-ca [i386] + language-support-translations-cs [amd64] + language-support-translations-cs [i386] + language-support-translations-da [amd64] + language-support-translations-da [i386] + language-support-translations-de [amd64] + language-support-translations-de [i386] + language-support-translations-dz [amd64] + language-support-translations-dz [i386] + language-support-translations-el [amd64] + language-support-translations-el [i386] + language-support-translations-en [amd64] + language-support-translations-en [i386] + language-support-translations-es [amd64] + language-support-translations-es [i386] + language-support-translations-et [amd64] + language-support-translations-et [i386] + language-support-translations-eu [amd64] + language-support-translations-eu [i386] + language-support-translations-fi [amd64] + language-support-translations-fi [i386] + language-support-translations-fr [amd64] + language-support-translations-fr [i386] + language-support-translations-gl [amd64] + language-support-translations-gl [i386] + language-support-translations-hi [amd64] + language-support-translations-hi [i386] + language-support-translations-hu [amd64] + language-support-translations-hu [i386] + language-support-translations-it [amd64] + language-support-translations-it [i386] + language-support-translations-ja [amd64] + language-support-translations-ja [i386] + language-support-translations-km [amd64] + language-support-translations-km [i386] + language-support-translations-ko [amd64] + language-support-translations-ko [i386] + language-support-translations-nl [amd64] + language-support-translations-nl [i386] + language-support-translations-om [amd64] + language-support-translations-om [i386] + language-support-translations-pl [amd64] + language-support-translations-pl [i386] + language-support-translations-pt [amd64] + language-support-translations-pt [i386] + language-support-translations-ru [amd64] + language-support-translations-ru [i386] + language-support-translations-sk [amd64] + language-support-translations-sk [i386] + language-support-translations-sl [amd64] + language-support-translations-sl [i386] + language-support-translations-sv [amd64] + language-support-translations-sv [i386] + language-support-translations-zh [amd64] + language-support-translations-zh [i386] + libapache-mod-perl [amd64] + libapache-mod-perl [i386] + libapache-mod-php4 (>= 4:4.1) [amd64] + libapache-mod-php4 (>= 4:4.1) [i386] + libapache-mod-php5 [amd64] + libapache-mod-php5 [i386] + libapache-request-perl [amd64] + libapache-request-perl [i386] + libapache2-mod-fastcgi [amd64] + libapache2-mod-fastcgi [i386] + libapache2-mod-php4 (>= 4:4.1) [amd64] + libapache2-mod-php4 (>= 4:4.1) [i386] + libapache2-mod-php4 [amd64] + libapache2-mod-php4 [i386] + libatlas-3dnow-dev [amd64] + libatlas-3dnow-dev [i386] + libatlas-sse-dev [amd64] + libatlas-sse-dev [i386] + libatlas-sse2-dev [amd64] + libatlas-sse2-dev [i386] + libblas-3.so [amd64] + libblas-3.so [i386] + libboost-python1.35-dev [amd64] + libboost-python1.35-dev [i386] + libboost1.35-dev [amd64] + libboost1.35-dev [i386] + libboost1.37-dev [amd64] + libboost1.37-dev [i386] + libboost1.38-dev [amd64] + libboost1.38-dev [i386] + libc0.1 (>= 2.13) [amd64] + libc0.1 (>= 2.13) [i386] + libc0.1-dev [amd64] + libc0.1-dev [i386] + libc6.1 (>= 2.13) [amd64] + libc6.1 (>= 2.13) [i386] + libc6.1-dev [amd64] + libc6.1-dev [i386] + libcgi-perl [amd64] + libcgi-perl [i386] + libclass-mop-perl (>= 0.80) [amd64] + libclass-mop-perl (>= 0.80) [i386] + libclass-mop-perl (>= 0.84) [amd64] + libclass-mop-perl (>= 0.84) [i386] + libclass-mop-perl (>= 0.93) [amd64] + libclass-mop-perl (>= 0.93) [i386] + libclass-mop-perl [amd64] + libclass-mop-perl [i386] + libcupt-perl (>= 1.4) [amd64] + libcupt-perl (>= 1.4) [i386] + libdbd-informix-perl [amd64] + libdbd-informix-perl [i386] + libdc1394-dev [amd64] + libdc1394-dev [i386] + libdvdplay0 [amd64] + libdvdplay0 [i386] + libemail-mime-creator-perl (>= 1.453) [amd64] + libemail-mime-creator-perl (>= 1.453) [i386] + libemail-mime-modifier-perl (>= 1.441) [amd64] + libemail-mime-modifier-perl (>= 1.441) [i386] + libesd-alsa0 (>= 0.2.35) [amd64] + libesd-alsa0 (>= 0.2.35) [i386] + libextutils-install-perl (>= 1.52) [amd64] + libextutils-install-perl (>= 1.52) [i386] + libfile-path-perl (>= 2.06) [amd64] + libfile-path-perl (>= 2.06) [i386] + libfile-temp-perl (>= 0.19) [amd64] + libfile-temp-perl (>= 0.19) [i386] + libgd-noxpm-perl [amd64] + libgd-noxpm-perl [i386] + libgd2-dev [amd64] + libgd2-dev [i386] + libgl1-mesa-glide3 [amd64] + libgl1-mesa-glide3 [i386] + libgnomeprint-data [amd64] + libgnomeprint-data [i386] + libgtk2.0-dev (<< 2.21) [amd64] + libgtk2.0-dev (<< 2.21) [i386] + libhaml-ruby (<< 3.1) [amd64] + libhaml-ruby (<< 3.1) [i386] + libicu36-dev [amd64] + libicu36-dev [i386] + libio-compress-bzip2-perl (>= 2.008) [amd64] + libio-compress-bzip2-perl (>= 2.008) [i386] + libio-compress-zlib-perl (>= 2.011) [amd64] + libio-compress-zlib-perl (>= 2.011) [i386] + libio-zlib-perl (>= 1.04) [amd64] + libio-zlib-perl (>= 1.04) [i386] + libjasper-1.701-dev [amd64] + libjasper-1.701-dev [i386] + libjibx-java (<< 1.2) [amd64] + libjibx-java (<< 1.2) [i386] + liblocale-maketext-simple-perl (>= 0.19) [amd64] + liblocale-maketext-simple-perl (>= 0.19) [i386] + libmaildir4 (= 4:4.4.11.1+l10n-3+b1) [amd64] + libmaildir4 (= 4:4.4.11.1+l10n-3+b1) [i386] + libmime-perl (>= 5.108) [amd64] + libmime-perl (>= 5.108) [i386] + libmodule-metatadata-perl [amd64] + libmodule-metatadata-perl [i386] + libmodule-pluggable-perl (>= 3.9) [amd64] + libmodule-pluggable-perl (>= 3.9) [i386] + libmotif-dev [amd64] + libmotif-dev [i386] + libnet-perl (>= 1.12) [amd64] + libnet-perl (>= 1.12) [i386] + libparent (>= 0.223) [amd64] + libparent (>= 0.223) [i386] + libparent-perl (>= 0.221) [amd64] + libparent-perl (>= 0.221) [i386] + libpng2-dev [amd64] + libpng2-dev [i386] + libreadline5-dev [amd64] + libreadline5-dev [i386] + libreoffice-gcj (= 1:3.5.4+dfsg2-0+deb7u2) [amd64] + libreoffice-gcj (= 1:3.5.4+dfsg2-0+deb7u2) [i386] + libstdc++6-4.3-dev [amd64] + libstdc++6-4.3-dev [i386] + libsvn-core-perl [amd64] + libsvn-core-perl [i386] + libswt-mozilla-gtk-3-jni [amd64] + libswt-mozilla-gtk-3-jni [i386] + libtest-harness-perl (= 3.23-1) [amd64] + libtest-harness-perl (= 3.23-1) [i386] + libwww-perl (<< 6) [amd64] + libwww-perl (<< 6) [i386] + libzephyr4-krb (= 3.0.2-2) [amd64] + libzephyr4-krb (= 3.0.2-2) [i386] + libzephyr4-krb45 (= 3.0.2-2) [amd64] + libzephyr4-krb45 (= 3.0.2-2) [i386] + linux-headers-2.6-686 [amd64] + linux-headers-2.6-686 [i386] + linux-headers-686-pae [amd64] + linux-headers-generic [amd64] + linux-headers-generic [i386] + lpr-ppd [amd64] + lpr-ppd [i386] + mffm-fftw1c2 [amd64] + mffm-fftw1c2 [i386] + mozart (>= 1.4.0) [amd64] + mozilla [amd64] + mozilla [i386] + mozilla-browser [amd64] + mozilla-browser [i386] + mozilla-browser-snapshot [amd64] + mozilla-browser-snapshot [i386] + mozilla-firefox [amd64] + mozilla-firefox [i386] + mozilla-libreoffice (= 1:3.5.4+dfsg2-0+deb7u2) [amd64] + mozilla-libreoffice (= 1:3.5.4+dfsg2-0+deb7u2) [i386] + mysql-client-5.0 [amd64] + mysql-client-5.0 [i386] + mysql-server-5.0 [amd64] + mysql-server-5.0 [i386] + nagios [amd64] + nagios [i386] + nagios2 [amd64] + nagios2 [i386] + ndoutils-nagios3 [amd64] + ndoutils-nagios3 [i386] + netbase (<< 4.00) [amd64] + netbase (<< 4.00) [i386] + netsaint [amd64] + netsaint [i386] + openjdk-7 [amd64] + openjdk-7 [i386] + openjdk-jre [amd64] + openjdk-jre [i386] + openoffice.org-core (>= 1.9) [amd64] + openoffice.org-core (>= 1.9) [i386] + openoffice.org-core (>= 3.0~) [amd64] + openoffice.org-core (>= 3.0~) [i386] + osh [amd64] + osh [i386] + perl (<< 5.10.1-13) [amd64] + perl (<< 5.10.1-13) [i386] + perl (<< 5.12.3-7) [amd64] + perl (<< 5.12.3-7) [i386] + perl (>= 5.15.3) [amd64] + perl (>= 5.15.3) [i386] + perl (>= 5.15.6) [amd64] + perl (>= 5.15.6) [i386] + perl (>= 5.15.9) [amd64] + perl (>= 5.15.9) [i386] + perl (>= 5.16.0) [amd64] + perl (>= 5.16.0) [i386] + perl-5.004 [amd64] + perl-5.004 [i386] + perl-5.005 [amd64] + perl-5.005 [i386] + perl-modules (<< 5.12) [amd64] + perl-modules (<< 5.12) [i386] + php4 (>= 4.1.0) [amd64] + php4 (>= 4.1.0) [i386] + php4 [amd64] + php4 [i386] + php4-cgi (>= 4:4.1) [amd64] + php4-cgi (>= 4:4.1) [i386] + php4-cgi [amd64] + php4-cgi [i386] + php4-cli [amd64] + php4-cli [i386] + php4-gd [amd64] + php4-gd [i386] + php4-mysql [amd64] + php4-mysql [i386] + php5-mysqli [amd64] + php5-mysqli [i386] + pilot-link-perl [amd64] + pilot-link-perl [i386] + policykit-1-kde [amd64] + policykit-1-kde [i386] + postgresql-8.4 [amd64] + postgresql-8.4 [i386] + postgresql-client-8.3 [amd64] + postgresql-client-8.3 [i386] + puredata (<< 0.43) [amd64] + puredata (<< 0.43) [i386] + pykickstart (>= 0.96) [amd64] + pykickstart (>= 0.96) [i386] + python-celementtree [amd64] + python-celementtree [i386] + python-codespeak-lib (<< 1.0) [amd64] + python-codespeak-lib (<< 1.0) [i386] + python-ctypes (>= 1.0.0) [amd64] + python-ctypes (>= 1.0.0) [i386] + python-elementtree (>= 1.2) [amd64] + python-elementtree (>= 1.2) [i386] + python-elementtree [amd64] + python-elementtree [i386] + python-gnome2 (<= 2.22.3-2) [amd64] + python-gnome2 (<= 2.22.3-2) [i386] + python-gnome2-desktop (<= 2.24.0-1) [amd64] + python-gnome2-desktop (<= 2.24.0-1) [i386] + python-gnome2-desktop [amd64] + python-gnome2-desktop [i386] + python-gnome2-extras (<< 2.25) [amd64] + python-gnome2-extras (<< 2.25) [i386] + python-gtk2 (<< 2.10) [amd64] + python-gtk2 (<< 2.10) [i386] + python-mlt2 [amd64] + python-mlt2 [i386] + python-mlt3 [amd64] + python-mlt3 [i386] + python-multiprocessing [amd64] + python-multiprocessing [i386] + python-pkg-resources (<< 0.6.15) [amd64] + python-pkg-resources (<< 0.6.15) [i386] + python-psycopg (<< 1.1.21) [amd64] + python-psycopg (<< 1.1.21) [i386] + python-psycopg (>= 1.1.21-14) [amd64] + python-psycopg (>= 1.1.21-14) [i386] + python-pynast (>= 1.1) [amd64] + python-pynast (>= 1.1) [i386] + python-qt4 (<< 4.7.5) [amd64] + python-qt4 (<< 4.7.5) [i386] + python-sqlalchemy (<< 0.6.3-2) [amd64] + python-sqlalchemy (<< 0.6.3-2) [i386] + python-traits4 [amd64] + python-traits4 [i386] + python-wxgtk2.6 [amd64] + python-wxgtk2.6 [i386] + python-zope-interface [amd64] + python-zope-interface [i386] + root-ttf [amd64] + root-ttf [i386] + ruby-htree [amd64] + ruby-htree [i386] + samba-common (<< 2:3.4.0~pre2-1~0) [amd64] + samba-common (<< 2:3.4.0~pre2-1~0) [i386] + scsh-0.6 (>= 0.6.6) [amd64] + scsh-0.6 [amd64] + skim [amd64] + skim [i386] + slocate [amd64] + slocate [i386] + spectrum-roms [amd64] + spectrum-roms [i386] + ssh (<< 1:3.8.1p1-9) [amd64] + ssh (<< 1:3.8.1p1-9) [i386] + sun-java5-jre [amd64] + sun-java5-jre [i386] + sun-java6-bin [amd64] + sun-java6-bin [i386] + sun-java6-jre [amd64] + sun-java6-jre [i386] + sysklogd (>= 1.3-27) [amd64] + sysklogd (>= 1.3-27) [i386] + tcl8.3 [amd64] + tcl8.3 [i386] + tetex-base [amd64] + tetex-base [i386] + tetex-bin (>= 2.0.2-11) [amd64] + tetex-bin (>= 2.0.2-11) [i386] + tetex-bin [amd64] + tetex-bin [i386] + tetex-extra [amd64] + tetex-extra [i386] + texlive-texinfo [amd64] + texlive-texinfo [i386] + thunderbird (>= 10.0.12-1) [amd64] + thunderbird (>= 10.0.12-1) [i386] + timeout [amd64] + timeout [i386] + tk8.3 [amd64] + tk8.3 [i386] + tk8.6 [amd64] + tk8.6 [i386] + ttf-unfonts [amd64] + ttf-unfonts [i386] + udev (<< 146-1) [amd64] + udev (<< 146-1) [i386] + update-manager [amd64] + update-manager [i386] + urxvt [amd64] + urxvt [i386] + vidcontrol [amd64] + vidcontrol [i386] + w3m-el (>= 1.4.5) [amd64] + w3m-el (>= 1.4.5) [i386] + w3m-ssl (>= 0.3) [amd64] + w3m-ssl (>= 0.3) [i386] + w3mmee (>= 0.3) [amd64] + w3mmee (>= 0.3) [i386] + w3mmee [amd64] + w3mmee [i386] + warmux-server (= 1:11.04.1+repack-4) [amd64] + warmux-server (= 1:11.04.1+repack-4) [i386] + wenglish [amd64] + wenglish [i386] + whiptail-provider [amd64] + whiptail-provider [i386] + wine-bin (>= 1.4.1-4) [amd64] + wine-bin [amd64] + wine-bin-unstable [amd64] + wine-bin-unstable [i386] + wine1.2 [amd64] + wine1.2 [i386] + wine1.3 [amd64] + wine1.3 [i386] + wine1.4 [amd64] + wine1.4 [i386] + wine1.5 [amd64] + wine1.5 [i386] + wine64-bin (>= 1.4.1-4) [i386] + wish (>= 8.4) [amd64] + wish (>= 8.4) [i386] + x-www-browser [amd64] + x-www-browser [i386] + xcontrib [i386] + xdriinfo [amd64] + xdriinfo [i386] + xemacs21 [amd64] + xemacs21 [i386] + xemacs21-basesupport (>= 2003.11.13-1) [amd64] + xemacs21-basesupport (>= 2003.11.13-1) [i386] + xemacs21-basesupport (>= 2004.02.02) [amd64] + xemacs21-basesupport (>= 2004.02.02) [i386] + xemacs21-gnome-mule [amd64] + xemacs21-gnome-mule [i386] + xemacs21-gnome-mule-canna-wnn [amd64] + xemacs21-gnome-mule-canna-wnn [i386] + xemacs21-mule [amd64] + xemacs21-mule [i386] + xemacs21-mule-canna-wnn [amd64] + xemacs21-mule-canna-wnn [i386] + xen-hypervisor-4.1-i386 [amd64] + xen-utils-4.0 [amd64] + xen-utils-4.0 [i386] + xkeyboard-config [amd64] + xkeyboard-config [i386] + xlibmesa-dev [amd64] + xlibmesa-dev [i386] + xlibmesa3-gl [amd64] + xlibmesa3-gl [i386] + xlibs (>> 4.1.0) [i386] + xlibs [amd64] + xlibs [i386] + xmessage [amd64] + xmessage [i386] + xpdf-reader (<< 3.02-2) [amd64] + xpdf-reader (<< 3.02-2) [i386] + xpdf-utils (>= 3.02-2) [amd64] + xpdf-utils (>= 3.02-2) [i386] + xrandr [amd64] + xrandr [i386] + xulrunner-1.9 [amd64] + xulrunner-1.9 [i386] + xulrunner-1.9.1 [amd64] + xulrunner-1.9.1 [i386] + xulrunner-1.9.2 [amd64] + xulrunner-1.9.2 [i386] + xulrunner-11.0 [amd64] + xulrunner-11.0 [i386] + xulrunner-12.0 [amd64] + xulrunner-12.0 [i386] + xulrunner-13.0 [amd64] + xulrunner-13.0 [i386] + xulrunner-2.0 [amd64] + xulrunner-2.0 [i386] + xulrunner-24.0 [amd64] + xulrunner-24.0 [i386] + xulrunner-5.0 [amd64] + xulrunner-5.0 [i386] + xulrunner-6.0 [amd64] + xulrunner-6.0 [i386] + xulrunner-7.0 [amd64] + xulrunner-7.0 [i386] + xulrunner-8.0 [amd64] + xulrunner-8.0 [i386] + xulrunner-9.0 [amd64] + xulrunner-9.0 [i386] + znc-webadmin (= 0.206-2) [amd64] + znc-webadmin (= 0.206-2) [i386] + zope2.10 [amd64] + zope2.10 [i386] + zope2.11 [amd64] + zope2.11 [i386] + zope2.13 [amd64] + zope2.13 [i386] + zope2.14 [amd64] + zope2.14 [i386] + zope2.6 [amd64] + zope2.6 [i386] + zope2.7 [amd64] + zope2.7 [i386] + zope2.8 [amd64] + zope2.8 [i386] + zope2.9 [amd64] + zope2.9 [i386] + zope3 [amd64] + zope3 [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot8Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot8Test_gold new file mode 100644 index 00000000..16c7c3a4 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot8Test_gold @@ -0,0 +1,35 @@ +Loading packages... +Verifying... +Missing dependencies (32): + dpkg (>= 1.15.4) [amd64] + dpkg (>= 1.15.4) [i386] + gnuplot (= 4.6.1-1~maverick2) [source] + gnuplot (= 4.6.1-1~maverick2) [source] + install-info [amd64] + install-info [i386] + libc6 (>= 2.11) [amd64] + libc6 (>= 2.11) [i386] + libcairo2 (>= 1.6.0) [amd64] + libcairo2 (>= 1.6.0) [i386] + libedit2 (>= 2.5.cvs.20010821-1) [amd64] + libedit2 (>= 2.5.cvs.20010821-1) [i386] + libgcc1 (>= 1:4.1.1) [amd64] + libgcc1 (>= 1:4.1.1) [i386] + libgd2-noxpm (>= 2.0.36~rc1~dfsg) [amd64] + libgd2-noxpm (>= 2.0.36~rc1~dfsg) [i386] + libgd2-xpm (>= 2.0.36~rc1~dfsg) [amd64] + libgd2-xpm (>= 2.0.36~rc1~dfsg) [i386] + libglib2.0-0 (>= 2.12.0) [amd64] + libglib2.0-0 (>= 2.12.0) [i386] + liblua5.1-0 [amd64] + liblua5.1-0 [i386] + libpango1.0-0 (>= 1.14.0) [amd64] + libpango1.0-0 (>= 1.14.0) [i386] + libstdc++6 (>= 4.1.1) [amd64] + libstdc++6 (>= 4.1.1) [i386] + libwxbase2.8-0 (>= 2.8.11.0) [amd64] + libwxbase2.8-0 (>= 2.8.11.0) [i386] + libwxgtk2.8-0 (>= 2.8.11.0) [amd64] + libwxgtk2.8-0 (>= 2.8.11.0) [i386] + libx11-6 [amd64] + libx11-6 [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot9Test_gold b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot9Test_gold new file mode 100644 index 00000000..6bccc866 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/VerifySnapshot9Test_gold @@ -0,0 +1,33 @@ +Loading packages... +Verifying... +Missing dependencies (30): + dpkg (>= 1.15.4) [amd64] + dpkg (>= 1.15.4) [i386] + install-info [amd64] + install-info [i386] + libc6 (>= 2.11) [amd64] + libc6 (>= 2.11) [i386] + libcairo2 (>= 1.6.0) [amd64] + libcairo2 (>= 1.6.0) [i386] + libedit2 (>= 2.5.cvs.20010821-1) [amd64] + libedit2 (>= 2.5.cvs.20010821-1) [i386] + libgcc1 (>= 1:4.1.1) [amd64] + libgcc1 (>= 1:4.1.1) [i386] + libgd2-noxpm (>= 2.0.36~rc1~dfsg) [amd64] + libgd2-noxpm (>= 2.0.36~rc1~dfsg) [i386] + libgd2-xpm (>= 2.0.36~rc1~dfsg) [amd64] + libgd2-xpm (>= 2.0.36~rc1~dfsg) [i386] + libglib2.0-0 (>= 2.12.0) [amd64] + libglib2.0-0 (>= 2.12.0) [i386] + liblua5.1-0 [amd64] + liblua5.1-0 [i386] + libpango1.0-0 (>= 1.14.0) [amd64] + libpango1.0-0 (>= 1.14.0) [i386] + libstdc++6 (>= 4.1.1) [amd64] + libstdc++6 (>= 4.1.1) [i386] + libwxbase2.8-0 (>= 2.8.11.0) [amd64] + libwxbase2.8-0 (>= 2.8.11.0) [i386] + libwxgtk2.8-0 (>= 2.8.11.0) [amd64] + libwxgtk2.8-0 (>= 2.8.11.0) [i386] + libx11-6 [amd64] + libx11-6 [i386] diff --git a/src/github.com/smira/aptly/system/t05_snapshot/__init__.py b/src/github.com/smira/aptly/system/t05_snapshot/__init__.py new file mode 100644 index 00000000..7ac35896 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/__init__.py @@ -0,0 +1,12 @@ +""" +Testing snapshot management +""" + +from .create import * +from .show import * +from .list import * +from .verify import * +from .pull import * +from .diff import * +from .merge import * +from .drop import * diff --git a/src/github.com/smira/aptly/system/t05_snapshot/create.py b/src/github.com/smira/aptly/system/t05_snapshot/create.py new file mode 100644 index 00000000..ec641613 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/create.py @@ -0,0 +1,109 @@ +from lib import BaseTest +import re + + +class CreateSnapshot1Test(BaseTest): + """ + create snapshot: from mirror + """ + fixtureDB = True + runCmd = "aptly snapshot create snap1 from mirror wheezy-main" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap1", "snapshot_show", match_prepare=remove_created_at) + + +class CreateSnapshot2Test(BaseTest): + """ + create snapshot: no mirror + """ + fixtureDB = True + runCmd = "aptly snapshot create snap1 from mirror no-such-mirror" + expectedCode = 1 + + +class CreateSnapshot3Test(BaseTest): + """ + create snapshot: duplicate name + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-main"] + runCmd = "aptly snapshot create snap1 from mirror wheezy-contrib" + expectedCode = 1 + + +class CreateSnapshot4Test(BaseTest): + """ + create snapshot: empty + """ + runCmd = "aptly snapshot create snap4 empty" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap4", "snapshot_show", match_prepare=remove_created_at) + + +class CreateSnapshot5Test(BaseTest): + """ + create snapshot: empty duplicate name + """ + fixtureCmds = ["aptly snapshot create snap5 empty"] + runCmd = "aptly snapshot create snap5 empty" + expectedCode = 1 + + +class CreateSnapshot6Test(BaseTest): + """ + create snapshot: from repo + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}" + ] + runCmd = "aptly snapshot create snap6 from repo local-repo" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap6", "snapshot_show", match_prepare=remove_created_at) + + +class CreateSnapshot7Test(BaseTest): + """ + create snapshot: no repo + """ + runCmd = "aptly snapshot create snap1 from repo no-such-repo" + expectedCode = 1 + + +class CreateSnapshot8Test(BaseTest): + """ + create snapshot: duplicate name from repo + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap8 from repo local-repo" + ] + runCmd = "aptly snapshot create snap8 from repo local-repo" + expectedCode = 1 + + +class CreateSnapshot9Test(BaseTest): + """ + create snapshot: from empty repo + """ + fixtureCmds = [ + "aptly repo create local-repo", + ] + runCmd = "aptly snapshot create snap9 from repo local-repo" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/diff.py b/src/github.com/smira/aptly/system/t05_snapshot/diff.py new file mode 100644 index 00000000..570c3047 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/diff.py @@ -0,0 +1,81 @@ +import re +from lib import BaseTest + + +class DiffSnapshot1Test(BaseTest): + """ + diff two snapshots: normal diff + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + "aptly snapshot pull snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + ] + runCmd = "aptly snapshot diff snap1 snap3" + # trim trailing whitespace + outputMatchPrepare = lambda _, s: re.sub(r'\s*$', '', s, flags=re.MULTILINE) + + +class DiffSnapshot2Test(BaseTest): + """ + diff two snapshots: normal diff II + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot diff snap1 snap2" + # trim trailing whitespace + outputMatchPrepare = lambda _, s: re.sub(r'\s*$', '', s, flags=re.MULTILINE) + + +class DiffSnapshot3Test(BaseTest): + """ + diff two snapshots: normal diff II + only-matching + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot diff -only-matching snap1 snap2" + # trim trailing whitespace + outputMatchPrepare = lambda _, s: re.sub(r'\s*$', '', s, flags=re.MULTILINE) + + +class DiffSnapshot4Test(BaseTest): + """ + diff two snapshots: doesn't exist + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + ] + runCmd = "aptly snapshot diff -only-matching snap1 snap-no" + expectedCode = 1 + + +class DiffSnapshot5Test(BaseTest): + """ + diff two snapshots: doesn't exist + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap2 from mirror wheezy-main", + ] + runCmd = "aptly snapshot diff -only-matching snap-no snap2" + expectedCode = 1 + + +class DiffSnapshot6Test(BaseTest): + """ + diff two snapshots: identical snapshots + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-main", + ] + runCmd = "aptly snapshot diff snap1 snap2" diff --git a/src/github.com/smira/aptly/system/t05_snapshot/drop.py b/src/github.com/smira/aptly/system/t05_snapshot/drop.py new file mode 100644 index 00000000..80cb4beb --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/drop.py @@ -0,0 +1,94 @@ +from lib import BaseTest + + +class DropSnapshot1Test(BaseTest): + """ + drop snapshot: just drop + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-non-free"] + runCmd = "aptly snapshot drop snap1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly snapshot show snap1", "snapshot_show", expected_code=1) + + +class DropSnapshot2Test(BaseTest): + """ + drop snapshot: used as source + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-non-free", + "aptly snapshot merge snap2 snap1", + ] + runCmd = "aptly snapshot drop snap1" + expectedCode = 1 + + +class DropSnapshot3Test(BaseTest): + """ + drop snapshot: -force + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-non-free", + "aptly snapshot merge snap2 snap1", + ] + runCmd = "aptly snapshot drop -force snap1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly snapshot show snap1", "snapshot_show", expected_code=1) + + +class DropSnapshot4Test(BaseTest): + """ + drop snapshot: already published + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1" + ] + runCmd = "aptly snapshot drop snap1" + expectedCode = 1 + + +class DropSnapshot5Test(BaseTest): + """ + drop snapshot: already published with -force + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1" + ] + runCmd = "aptly snapshot drop --force snap1" + expectedCode = 1 + + +class DropSnapshot6Test(BaseTest): + """ + drop snapshot: no such snapshot + """ + fixtureDB = True + runCmd = "aptly snapshot drop no-such-snapshot" + expectedCode = 1 + + +class DropSnapshot7Test(BaseTest): + """ + drop snapshot: publish, drop publish, drop snapshot + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1", + "aptly publish drop maverick", + ] + runCmd = "aptly snapshot drop snap1" diff --git a/src/github.com/smira/aptly/system/t05_snapshot/list.py b/src/github.com/smira/aptly/system/t05_snapshot/list.py new file mode 100644 index 00000000..8d135d15 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/list.py @@ -0,0 +1,49 @@ +from lib import BaseTest + + +class ListSnapshot1Test(BaseTest): + """ + list snapshots: regular list + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-contrib", + "aptly snapshot merge snap3 snap1 snap2", + "aptly snapshot pull snap1 snap2 snap4 mame unrar", + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap5 from repo local-repo", + ] + runCmd = "aptly snapshot list" + + +class ListSnapshot2Test(BaseTest): + """ + list snapshots: empty list + """ + runCmd = "aptly snapshot list" + + +class ListSnapshot3Test(BaseTest): + """ + list snapshots: raw regular list + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-contrib", + "aptly snapshot merge snap3 snap1 snap2", + "aptly snapshot pull snap1 snap2 snap4 mame unrar", + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap5 from repo local-repo", + ] + runCmd = "aptly -raw snapshot list" + + +class ListSnapshot4Test(BaseTest): + """ + list snapshots: raw empty list + """ + runCmd = "aptly snapshot -raw list" diff --git a/src/github.com/smira/aptly/system/t05_snapshot/merge.py b/src/github.com/smira/aptly/system/t05_snapshot/merge.py new file mode 100644 index 00000000..78034844 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/merge.py @@ -0,0 +1,138 @@ +from lib import BaseTest +import re + + +class MergeSnapshot1Test(BaseTest): + """ + merge snapshots: two snapshots + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + ] + runCmd = "aptly snapshot merge snap3 snap1 snap2" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class MergeSnapshot2Test(BaseTest): + """ + merge snapshots: one snapshot + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + ] + runCmd = "aptly snapshot merge snap2 snap1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly snapshot diff snap1 snap2", "snapshot_diff") + + +class MergeSnapshot3Test(BaseTest): + """ + merge snapshots: three snapshots + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + "aptly snapshot create snap3 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot merge snap4 snap1 snap2 snap3" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap4", "snapshot_show", match_prepare=remove_created_at) + + +class MergeSnapshot4Test(BaseTest): + """ + merge snapshots: no such snapshot + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + ] + runCmd = "aptly snapshot merge snap3 snap1 snap2" + expectedCode = 1 + + +class MergeSnapshot5Test(BaseTest): + """ + merge snapshots: duplicate snapshot + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + ] + runCmd = "aptly snapshot merge snap1 snap1" + expectedCode = 1 + + +class MergeSnapshot6Test(BaseTest): + """ + merge snapshots: use latest versions only + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + "aptly snapshot create snap3 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot merge -latest snap4 snap1 snap2 snap3" + expectedCode = 0 + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap4", "snapshot_show", match_prepare=remove_created_at) + + +class MergeSnapshot7Test(BaseTest): + """ + merge snapshots: in reverse order + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + "aptly snapshot create snap3 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot merge snap4 snap3 snap2 snap1" + expectedCode = 0 + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap4", "snapshot_show", match_prepare=remove_created_at) + + +class MergeSnapshot8Test(BaseTest): + """ + merge snapshots: compare -latest and regular + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + "aptly snapshot create snap3 from mirror wheezy-backports", + "aptly snapshot merge snap4 snap3 snap2 snap1", + "aptly snapshot merge -latest snap5 snap3 snap2 snap1", + ] + runCmd = "aptly snapshot diff snap4 snap5" + expectedCode = 0 diff --git a/src/github.com/smira/aptly/system/t05_snapshot/pull.py b/src/github.com/smira/aptly/system/t05_snapshot/pull.py new file mode 100644 index 00000000..0e658f30 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/pull.py @@ -0,0 +1,197 @@ +from lib import BaseTest +import re + + +class PullSnapshot1Test(BaseTest): + """ + pull snapshot: simple conditions + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + ] + runCmd = "aptly snapshot pull snap1 snap2 snap3 mame unrar" + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class PullSnapshot2Test(BaseTest): + """ + pull snapshot: play with versions + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class PullSnapshot3Test(BaseTest): + """ + pull snapshot: play with versions + no-deps + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull -no-deps snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class PullSnapshot4Test(BaseTest): + """ + pull snapshot: dry-run + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull -dry-run snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + def check(self): + self.check_output() + self.check_cmd_output("aptly snapshot list", "snapshot_list") + + +class PullSnapshot5Test(BaseTest): + """ + pull snapshot: no such snapshot + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull snap1 snap-no snap3 'rsyslog (>= 7.4.4)'" + expectedCode = 1 + + +class PullSnapshot6Test(BaseTest): + """ + pull snapshot: no such snapshot + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull snap-no snap2 snap3 'rsyslog (>= 7.4.4)'" + expectedCode = 1 + + +class PullSnapshot7Test(BaseTest): + """ + pull snapshot: duplicate snapshot + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull snap1 snap2 snap1 'rsyslog (>= 7.4.4)'" + expectedCode = 1 + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + +class PullSnapshot8Test(BaseTest): + """ + pull snapshot: missing dependencies + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-non-free", + ] + runCmd = "aptly snapshot pull snap1 snap2 snap3 lunar-landing 'mars-landing (>= 1.0)'" + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show --with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class PullSnapshot9Test(BaseTest): + """ + pull snapshot: follow sources + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports-src", + ] + runCmd = "aptly -dep-follow-source snapshot pull snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show --with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class PullSnapshot10Test(BaseTest): + """ + pull snapshot: follow sources + replace sources + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main-src", + "aptly snapshot create snap2 from mirror wheezy-backports-src", + ] + runCmd = "aptly -dep-follow-source snapshot pull snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show --with-packages snap3", "snapshot_show", match_prepare=remove_created_at) + + +class PullSnapshot11Test(BaseTest): + """ + pull snapshot: -no-remove + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-backports", + ] + runCmd = "aptly snapshot pull -no-remove snap1 snap2 snap3 'rsyslog (>= 7.4.4)'" + outputMatchPrepare = lambda _, output: "\n".join(sorted(output.split("\n"))) + + def check(self): + def remove_created_at(s): + return re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + self.check_output() + self.check_cmd_output("aptly snapshot show -with-packages snap3", "snapshot_show", match_prepare=remove_created_at) diff --git a/src/github.com/smira/aptly/system/t05_snapshot/show.py b/src/github.com/smira/aptly/system/t05_snapshot/show.py new file mode 100644 index 00000000..20380175 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/show.py @@ -0,0 +1,31 @@ +from lib import BaseTest +import re + + +class ShowSnapshot1Test(BaseTest): + """ + show snapshot: from mirror + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-non-free"] + runCmd = "aptly snapshot show --with-packages snap1" + outputMatchPrepare = lambda _, s: re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) + + +class ShowSnapshot2Test(BaseTest): + """ + show snapshot: no snapshot + """ + fixtureDB = True + runCmd = "aptly snapshot show no-such-snapshot" + expectedCode = 1 + + +class ShowSnapshot3Test(BaseTest): + """ + show snapshot: from mirror w/o packages + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-non-free"] + runCmd = "aptly snapshot show snap1" + outputMatchPrepare = lambda _, s: re.sub(r"Created At: [0-9:A-Za-z -]+\n", "", s) diff --git a/src/github.com/smira/aptly/system/t05_snapshot/verify.py b/src/github.com/smira/aptly/system/t05_snapshot/verify.py new file mode 100644 index 00000000..5eee3fb3 --- /dev/null +++ b/src/github.com/smira/aptly/system/t05_snapshot/verify.py @@ -0,0 +1,99 @@ +from lib import BaseTest + + +class VerifySnapshot1Test(BaseTest): + """ + verify snapshot: from wheezy + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-main"] + runCmd = "aptly snapshot verify snap1" + + +class VerifySnapshot2Test(BaseTest): + """ + verify snapshot: no snapshot + """ + fixtureDB = True + runCmd = "aptly snapshot verify no-such-snapshot" + expectedCode = 1 + + +class VerifySnapshot3Test(BaseTest): + """ + verify snapshot: limited architectues + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-main"] + runCmd = "aptly -architectures=i386 snapshot verify snap1" + + +class VerifySnapshot4Test(BaseTest): + """ + verify snapshot: limited architectues + suggests + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-main"] + runCmd = "aptly -architectures=i386 -dep-follow-suggests snapshot verify snap1" + + +class VerifySnapshot5Test(BaseTest): + """ + verify snapshot: limited architectues + suggests + multiple sources + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main", + "aptly snapshot create snap2 from mirror wheezy-contrib", + "aptly snapshot create snap3 from mirror wheezy-non-free", + ] + runCmd = "aptly -architectures=i386 -dep-follow-suggests snapshot verify snap1 snap2 snap3" + + +class VerifySnapshot6Test(BaseTest): + """ + verify snapshot: suggests + recommends + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-main"] + runCmd = "aptly -dep-follow-recommends -dep-follow-suggests snapshot verify snap1" + + +class VerifySnapshot7Test(BaseTest): + """ + verify snapshot: follow-all-variants + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror wheezy-main"] + runCmd = "aptly -dep-follow-all-variants snapshot verify snap1" + + +class VerifySnapshot8Test(BaseTest): + """ + verify snapshot: follow-source w/o sources + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror gnuplot-maverick"] + runCmd = "aptly -dep-follow-source snapshot verify snap1" + + +class VerifySnapshot9Test(BaseTest): + """ + verify snapshot: follow-source w sources + """ + fixtureDB = True + fixtureCmds = ["aptly snapshot create snap1 from mirror gnuplot-maverick-src"] + runCmd = "aptly -dep-follow-source snapshot verify snap1" + + +class VerifySnapshot10Test(BaseTest): + """ + verify snapshot: follow-source on whole wheezy + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror wheezy-main-src", + "aptly snapshot create snap2 from mirror wheezy-contrib-src", + "aptly snapshot create snap3 from mirror wheezy-non-free-src", + ] + runCmd = "aptly -dep-follow-source snapshot verify snap1 snap2 snap3" diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishDrop1Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishDrop1Test_gold new file mode 100644 index 00000000..b1deb597 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishDrop1Test_gold @@ -0,0 +1,4 @@ +Removing ${HOME}/.aptly/public/dists... +Removing ${HOME}/.aptly/public/pool... + +Published repository has been removed successfully. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishDrop2Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishDrop2Test_gold new file mode 100644 index 00000000..c3758e10 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishDrop2Test_gold @@ -0,0 +1,4 @@ +Removing ${HOME}/.aptly/public/ppa/smira/dists... +Removing ${HOME}/.aptly/public/ppa/smira/pool... + +Published repository has been removed successfully. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishDrop3Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishDrop3Test_gold new file mode 100644 index 00000000..6479ce64 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishDrop3Test_gold @@ -0,0 +1,4 @@ +Removing ${HOME}/.aptly/public/dists/sq1... +Cleaning up prefix "." component "main"... + +Published repository has been removed successfully. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishDrop4Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishDrop4Test_gold new file mode 100644 index 00000000..66bca004 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishDrop4Test_gold @@ -0,0 +1,4 @@ +Removing ${HOME}/.aptly/public/dists/sq1... +Removing ${HOME}/.aptly/public/pool/contrib... + +Published repository has been removed successfully. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishDrop5Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishDrop5Test_gold new file mode 100644 index 00000000..d43ac80d --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishDrop5Test_gold @@ -0,0 +1,4 @@ +Removing ${HOME}/.aptly/public/dists/sq2... +Cleaning up prefix "." component "main"... + +Published repository has been removed successfully. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishDrop6Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishDrop6Test_gold new file mode 100644 index 00000000..e4ec5e71 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishDrop6Test_gold @@ -0,0 +1 @@ +ERROR: unable to remove: published repo with prefix/distribution ./sq1 not found diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishList1Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishList1Test_gold new file mode 100644 index 00000000..20741e25 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishList1Test_gold @@ -0,0 +1 @@ +No snapshots/local repos have been published. Publish a snapshot by running `aptly publish snapshot ...`. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishList2Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishList2Test_gold new file mode 100644 index 00000000..dc3e083c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishList2Test_gold @@ -0,0 +1,5 @@ +Published repositories: + * ./maverick (main) [amd64, i386] publishes [snap1]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick + * ppa/smira/wheezy (contrib) [amd64] publishes [snap2]: Merged from sources: 'snap1' + * ppa/tr1/maverick (main, origin: origin1) [amd64, i386] publishes [snap2]: Merged from sources: 'snap1' + * ppa/tr2/maverick (main, label: label1) [amd64, i386] publishes [snap2]: Merged from sources: 'snap1' diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishList3Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishList3Test_gold new file mode 100644 index 00000000..ac663dae --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishList3Test_gold @@ -0,0 +1,4 @@ +. maverick +ppa/smira wheezy +ppa/tr1 maverick +ppa/tr2 maverick diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo10Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo10Test_gold new file mode 100644 index 00000000..ae6c8aed --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo10Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: invalid prefix ../la diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo11Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo11Test_gold new file mode 100644 index 00000000..3d7221a4 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo11Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: local repo with name local-repo not found diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo12Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo12Test_gold new file mode 100644 index 00000000..bee36b01 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo12Test_gold @@ -0,0 +1,11 @@ +Loading packages... +Generating metadata files and linking package files... + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo12Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishRepo12Test_release new file mode 100644 index 00000000..dfeaa969 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo12Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo13Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo13Test_gold new file mode 100644 index 00000000..bac3c4a7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo13Test_gold @@ -0,0 +1,2 @@ +Loading packages... +ERROR: unable to publish: source is empty diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo14Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo14Test_gold new file mode 100644 index 00000000..c4e1f06a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo14Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick contrib + deb-src http://your-server/ maverick contrib +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo15Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo15Test_gold new file mode 100644 index 00000000..c4e1f06a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo15Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick contrib + deb-src http://your-server/ maverick contrib +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo15Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishRepo15Test_release new file mode 100644 index 00000000..3a7b34c2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo15Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: label15 +Codename: maverick +Architectures: i386 +Components: contrib +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_binary b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_binary new file mode 100644 index 00000000..ae94c343 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_binary @@ -0,0 +1,26 @@ + + + (name, value) pairs from the user, via conventional methods such as + . + . + Boost version (currently 1.49). + Library to let program developers obtain program options, that is + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default + command line and config file. +Architecture: i386 +Depends: libboost-program-options1.49-dev +Description: program options library for C++ (default version) +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 26 +MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +Maintainer: Debian Boost Team +Package: libboost-program-options-dev +Priority: optional +SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +Section: libdevel +Size: 2738 +Source: boost-defaults +Version: 1.49.0.1 \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_gold new file mode 100644 index 00000000..33433621 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_release new file mode 100644 index 00000000..dfeaa969 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_sources b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_sources new file mode 100644 index 00000000..63cdaa3b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo1Test_sources @@ -0,0 +1,42 @@ +Package: pyspi +Version: 0.6.1-1.3 +Maintainer: Jose Carlos Garcia Sogo +Architecture: any +Homepage: http://people.redhat.com/zcerza/dogtail +Binary: python-at-spi +Directory: pool/main/p/pyspi +Checksums-Sha1: 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz + 56c8a9b1f4ab636052be8966690998cbe865cd6c 1782 pyspi_0.6.1-1.3.dsc + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz +Checksums-Sha256: 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz + d494aaf526f1ec6b02f14c2f81e060a5722d6532ddc760ec16972e45c2625989 1782 pyspi_0.6.1-1.3.dsc + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz +Format: 1.0 +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Files: 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz + b72cb94699298a117b7c82641c68b6fd 1782 pyspi_0.6.1-1.3.dsc + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz + +Package: pyspi +Version: 0.6.1-1.4 +Maintainer: Jose Carlos Garcia Sogo +Architecture: any +Binary: python-at-spi +Format: 1.0 +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Homepage: http://people.redhat.com/zcerza/dogtail +Standards-Version: 3.7.3 +Directory: pool/main/p/pyspi +Files: 2f5bd47cf38852b6fc927a50f98c1448 893 pyspi-0.6.1-1.3.stripped.dsc + 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz +Checksums-Sha256: 289d3aefa970876e9c43686ce2b02f478d7f3ed35a713928464a98d54ae4fca3 893 pyspi-0.6.1-1.3.stripped.dsc + 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Checksums-Sha1: 5005fbd1f30637edc1d380b30f45db9b79100d07 893 pyspi-0.6.1-1.3.stripped.dsc + 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz + diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo2Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo2Test_gold new file mode 100644 index 00000000..c4e1f06a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo2Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick contrib + deb-src http://your-server/ maverick contrib +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo3Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo3Test_gold new file mode 100644 index 00000000..21bdc19f --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo3Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick contrib +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo4Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo4Test_gold new file mode 100644 index 00000000..a6f94cdc --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo4Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/ppa/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/ppa/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Local repo local-repo has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ppa/ maverick main + deb-src http://your-server/ppa/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo5Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo5Test_gold new file mode 100644 index 00000000..f6e05973 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo5Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: unable to guess distribution name, please specify explicitly diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo6Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo6Test_gold new file mode 100644 index 00000000..781e1fdc --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo6Test_gold @@ -0,0 +1 @@ +ERROR: prefix/distribution already used by another published repo: ./maverick (main) [i386, source] publishes [local-repo] diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo7Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo7Test_gold new file mode 100644 index 00000000..939dfbb8 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo7Test_gold @@ -0,0 +1 @@ +ERROR: prefix/distribution already used by another published repo: ppa/maverick (main) [i386, source] publishes [local-repo] diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo8Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo8Test_gold new file mode 100644 index 00000000..7b46847b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo8Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: invalid prefix ppa/dists/la diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishRepo9Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishRepo9Test_gold new file mode 100644 index 00000000..d7774b5a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishRepo9Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: invalid prefix ppa/pool/la diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot10Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot10Test_gold new file mode 100644 index 00000000..d7774b5a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot10Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: invalid prefix ppa/pool/la diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot11Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot11Test_gold new file mode 100644 index 00000000..ae6c8aed --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot11Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: invalid prefix ../la diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot12Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot12Test_gold new file mode 100644 index 00000000..7a9daa12 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot12Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: snapshot with name snap12 not found diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot13Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot13Test_gold new file mode 100644 index 00000000..848cd407 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot13Test_gold @@ -0,0 +1,10 @@ +Loading packages... +Generating metadata files and linking package files... + +Snapshot snap13 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot13Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot13Test_release new file mode 100644 index 00000000..9444c59b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot13Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot14Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot14Test_gold new file mode 100644 index 00000000..bac3c4a7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot14Test_gold @@ -0,0 +1,2 @@ +Loading packages... +ERROR: unable to publish: source is empty diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot15Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot15Test_gold new file mode 100644 index 00000000..e0fafd8c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot15Test_gold @@ -0,0 +1,10 @@ +Loading packages... +Generating metadata files and linking package files... + +Snapshot snap15 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot15Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot15Test_release new file mode 100644 index 00000000..9444c59b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot15Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_gold new file mode 100644 index 00000000..8c57a81c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap16 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_release new file mode 100644 index 00000000..9444c59b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_sources b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_sources new file mode 100644 index 00000000..aaac2603 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot16Test_sources @@ -0,0 +1,27 @@ +Package: gnuplot +Version: 4.6.1-1~maverick2 +Section: math +Maintainer: Debian Science Team +Architecture: any all +Package-List: gnuplot deb math optional + gnuplot-doc deb doc optional + gnuplot-nox deb math optional + gnuplot-x11 deb math optional +Dm-Upload-Allowed: yes +Checksums-Sha1: 2dd7bd3ee9abf89a0c2d518dfea56e7cbf01e0c2 18955 gnuplot_4.6.1-1~maverick2.debian.tar.gz + 1ea21a628223159b0297ae65fe8293afd5aab3c0 4959670 gnuplot_4.6.1.orig.tar.gz +Binary: gnuplot, gnuplot-nox, gnuplot-x11, gnuplot-doc +Directory: pool/main/g/gnuplot +Vcs-Browser: http://git.debian.org/?p=debian-science/packages/gnuplot.git +Vcs-Git: git://git.debian.org/git/debian-science/packages/gnuplot.git +Format: 3.0 (quilt) +Files: 103201f00bd80a7408dfb0e0b630eb14 18955 gnuplot_4.6.1-1~maverick2.debian.tar.gz + 021df43737184e40b1ef8cef3cbd18b9 2431 gnuplot_4.6.1-1~maverick2.dsc + 4c9a06461f402482c30cf94e267eb877 4959670 gnuplot_4.6.1.orig.tar.gz +Homepage: http://gnuplot.sourceforge.net/ +Standards-Version: 3.8.4 +Uploaders: Bradley Smith , Anton Gladky +Checksums-Sha256: e1e3ad5ad145cf7909a029a4dba6b9fffb5faabc3bc6b5099a3d6a92c7b5da2c 18955 gnuplot_4.6.1-1~maverick2.debian.tar.gz + f4bf99907d0fea7db90b6e50147f1730b5bde2fbb93d9e58478b6b94409eebc6 4959670 gnuplot_4.6.1.orig.tar.gz +Build-Depends: debhelper (>= 7), libpng-dev, libx11-dev, libxt-dev, pkg-config, texinfo (>= 4.8), texlive-latex-base, texlive-latex-recommended, texlive-latex-extra, liblua5.1-dev, zlib1g-dev, libgd2-noxpm-dev, quilt, libwxgtk2.8-dev, libcairo2-dev, libpango1.0-dev, libedit-dev, autoconf, automake + diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_binary b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_binary new file mode 100644 index 00000000..ae94c343 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_binary @@ -0,0 +1,26 @@ + + + (name, value) pairs from the user, via conventional methods such as + . + . + Boost version (currently 1.49). + Library to let program developers obtain program options, that is + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default + command line and config file. +Architecture: i386 +Depends: libboost-program-options1.49-dev +Description: program options library for C++ (default version) +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 26 +MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +Maintainer: Debian Boost Team +Package: libboost-program-options-dev +Priority: optional +SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +Section: libdevel +Size: 2738 +Source: boost-defaults +Version: 1.49.0.1 \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_gold new file mode 100644 index 00000000..b5812293 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_gold @@ -0,0 +1,13 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap17 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_release new file mode 100644 index 00000000..dfeaa969 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_sources b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_sources new file mode 100644 index 00000000..63cdaa3b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot17Test_sources @@ -0,0 +1,42 @@ +Package: pyspi +Version: 0.6.1-1.3 +Maintainer: Jose Carlos Garcia Sogo +Architecture: any +Homepage: http://people.redhat.com/zcerza/dogtail +Binary: python-at-spi +Directory: pool/main/p/pyspi +Checksums-Sha1: 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz + 56c8a9b1f4ab636052be8966690998cbe865cd6c 1782 pyspi_0.6.1-1.3.dsc + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz +Checksums-Sha256: 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz + d494aaf526f1ec6b02f14c2f81e060a5722d6532ddc760ec16972e45c2625989 1782 pyspi_0.6.1-1.3.dsc + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz +Format: 1.0 +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Files: 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz + b72cb94699298a117b7c82641c68b6fd 1782 pyspi_0.6.1-1.3.dsc + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz + +Package: pyspi +Version: 0.6.1-1.4 +Maintainer: Jose Carlos Garcia Sogo +Architecture: any +Binary: python-at-spi +Format: 1.0 +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Homepage: http://people.redhat.com/zcerza/dogtail +Standards-Version: 3.7.3 +Directory: pool/main/p/pyspi +Files: 2f5bd47cf38852b6fc927a50f98c1448 893 pyspi-0.6.1-1.3.stripped.dsc + 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz +Checksums-Sha256: 289d3aefa970876e9c43686ce2b02f478d7f3ed35a713928464a98d54ae4fca3 893 pyspi-0.6.1-1.3.stripped.dsc + 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Checksums-Sha1: 5005fbd1f30637edc1d380b30f45db9b79100d07 893 pyspi-0.6.1-1.3.stripped.dsc + 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz + diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot18Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot18Test_gold new file mode 100644 index 00000000..f6e05973 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot18Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: unable to guess distribution name, please specify explicitly diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot19Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot19Test_gold new file mode 100644 index 00000000..17f563c4 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot19Test_gold @@ -0,0 +1,10 @@ +Loading packages... +Generating metadata files and linking package files... + +Snapshot snap5 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot1Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot1Test_gold new file mode 100644 index 00000000..c5129aed --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot1Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap1 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot1Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot1Test_release new file mode 100644 index 00000000..76006ae6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot1Test_release @@ -0,0 +1,10 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Date: Fri, 31 Jan 2014 14:18:52 UTC +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot20Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot20Test_gold new file mode 100644 index 00000000..1ff04477 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot20Test_gold @@ -0,0 +1,11 @@ +Loading packages... +Generating metadata files and linking package files... + +Snapshot snap3 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot21Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot21Test_gold new file mode 100644 index 00000000..f6e05973 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot21Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: unable to guess distribution name, please specify explicitly diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot22Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot22Test_gold new file mode 100644 index 00000000..1ff04477 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot22Test_gold @@ -0,0 +1,11 @@ +Loading packages... +Generating metadata files and linking package files... + +Snapshot snap3 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot23Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot23Test_gold new file mode 100644 index 00000000..1ff04477 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot23Test_gold @@ -0,0 +1,11 @@ +Loading packages... +Generating metadata files and linking package files... + +Snapshot snap3 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ maverick main + deb-src http://your-server/ maverick main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot24Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot24Test_gold new file mode 100644 index 00000000..061ae688 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot24Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap24 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ squeeze main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot24Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot24Test_release new file mode 100644 index 00000000..a65af0db --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot24Test_release @@ -0,0 +1,9 @@ +Origin: aptly24 +Label: . squeeze +Codename: squeeze +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot2Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot2Test_gold new file mode 100644 index 00000000..684a8a5f --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot2Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap2 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ squeeze main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot2Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot2Test_release new file mode 100644 index 00000000..4bbc2f0c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot2Test_release @@ -0,0 +1,9 @@ +Origin: . squeeze +Label: . squeeze +Codename: squeeze +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot3Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot3Test_gold new file mode 100644 index 00000000..01578782 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot3Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap3 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ squeeze contrib +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot3Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot3Test_release new file mode 100644 index 00000000..2e61a552 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot3Test_release @@ -0,0 +1,9 @@ +Origin: . squeeze +Label: . squeeze +Codename: squeeze +Architectures: amd64 i386 +Components: contrib +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot4Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot4Test_gold new file mode 100644 index 00000000..ca6f235a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot4Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap4 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ squeeze main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot4Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot4Test_release new file mode 100644 index 00000000..4141caef --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot4Test_release @@ -0,0 +1,9 @@ +Origin: . squeeze +Label: . squeeze +Codename: squeeze +Architectures: i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot5Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot5Test_gold new file mode 100644 index 00000000..e5b0a8c2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot5Test_gold @@ -0,0 +1,12 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/ppa/smira/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/ppa/smira/dists/squeeze/Release' with gpg, please enter your passphrase when prompted: + +Snapshot snap5 has been successfully published. +Please setup your webserver to serve directory '${HOME}/.aptly/public' with autoindexing. +Now you can add following line to apt sources: + deb http://your-server/ppa/smira/ squeeze main +Don't forget to add your GPG key to apt with apt-key. + +You can also use `aptly serve` to publish your repositories over HTTP quickly. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot6Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot6Test_gold new file mode 100644 index 00000000..f6e05973 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot6Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: unable to guess distribution name, please specify explicitly diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot7Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot7Test_gold new file mode 100644 index 00000000..ef0b8bab --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot7Test_gold @@ -0,0 +1 @@ +ERROR: prefix/distribution already used by another published repo: ./maverick (main) [amd64, i386] publishes [snap7]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot8Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot8Test_gold new file mode 100644 index 00000000..44f95584 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot8Test_gold @@ -0,0 +1 @@ +ERROR: prefix/distribution already used by another published repo: ppa/maverick (main) [amd64, i386] publishes [snap8]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot9Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot9Test_gold new file mode 100644 index 00000000..7b46847b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSnapshot9Test_gold @@ -0,0 +1 @@ +ERROR: unable to publish: invalid prefix ppa/dists/la diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_binary b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_binary new file mode 100644 index 00000000..70d9c276 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_binary @@ -0,0 +1,29 @@ + + . + . + C-like language. Can perform smoothing, spline-fitting, or nonlinear fits, + Data files and self-defined functions can be manipulated by the internal + Gnuplot is a portable command-line driven interactive data and function + This package contains the terminal driver that enables gnuplot to plot + and can work with complex numbers. + for many printers, (La)TeX, (x)fig, Postscript, and so on. The X11-output + gnuplot. + images interactively under X11. Most users will want this, it is however + is packaged in gnuplot-x11. + packaged separately so that low-end systems don't need X installed to use + plotting utility that supports lots of output formats, including drivers +Architecture: i386 +Depends: gnuplot-nox (>= 4.6.1-1~maverick2), libc6 (>= 2.11), libcairo2 (>= 1.6.0), libedit2 (>= 2.5.cvs.20010821-1), libgcc1 (>= 1:4.1.1), libgd2-noxpm (>= 2.0.36~rc1~dfsg) | libgd2-xpm (>= 2.0.36~rc1~dfsg), libglib2.0-0 (>= 2.12.0), liblua5.1-0, libpango1.0-0 (>= 1.14.0), libstdc++6 (>= 4.1.1), libwxbase2.8-0 (>= 2.8.11.0), libwxgtk2.8-0 (>= 2.8.11.0), libx11-6 +Description: Command-line driven interactive plotting program +Filename: pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb +Installed-Size: 1604 +MD5sum: fcad938905d0ace50a6ce0c73b2c6583 +Maintainer: Debian Science Team +Package: gnuplot-x11 +Priority: optional +Replaces: gnuplot (<< 4.0.0) +SHA1: 02f9a93097a8f798a054e26154dbe5789088c069 +Section: math +Size: 724388 +Source: gnuplot +Version: 4.6.1-1~maverick2 diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_gold new file mode 100644 index 00000000..97dcedfd --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "." component "main"... + +Publish for snapshot ./maverick (main) [amd64, i386] publishes [snap3]: Pulled into 'snap2' with 'snap1' as source, pull request was: 'gnuplot-x11' has been successfully switched to new snapshot. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_release new file mode 100644 index 00000000..9444c59b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch1Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: amd64 i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch2Test_binary b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch2Test_binary new file mode 100644 index 00000000..9224d25c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch2Test_binary @@ -0,0 +1,109 @@ + + + + + . + . + . + . + . + . + . + . + C-like language. Can perform smoothing, spline-fitting, or nonlinear fits, + C-like language. Can perform smoothing, spline-fitting, or nonlinear fits, + C-like language. Can perform smoothing, spline-fitting, or nonlinear fits, + C-like language. Can perform smoothing, spline-fitting, or nonlinear fits, + Data files and self-defined functions can be manipulated by the internal + Data files and self-defined functions can be manipulated by the internal + Data files and self-defined functions can be manipulated by the internal + Data files and self-defined functions can be manipulated by the internal + Gnuplot is a portable command-line driven interactive data and function + Gnuplot is a portable command-line driven interactive data and function + Gnuplot is a portable command-line driven interactive data and function + Gnuplot is a portable command-line driven interactive data and function + This package contains the additional documentation. + This package contains the terminal driver that enables gnuplot to plot + This package is for transition and to install a full-featured gnuplot + This package is for working without an X server. + and can work with complex numbers. + and can work with complex numbers. + and can work with complex numbers. + and can work with complex numbers. + for many printers, (La)TeX, (x)fig, Postscript, and so on. The X11-output + for many printers, (La)TeX, (x)fig, Postscript, and so on. The X11-output + for many printers, (La)TeX, (x)fig, Postscript, and so on. The X11-output + for many printers, (La)TeX, (x)fig, Postscript, and so on. The X11-output + gnuplot. + images interactively under X11. Most users will want this, it is however + is packaged in gnuplot-x11. + is packaged in gnuplot-x11. + is packaged in gnuplot-x11. + is packaged in gnuplot-x11. + packaged separately so that low-end systems don't need X installed to use + plotting utility that supports lots of output formats, including drivers + plotting utility that supports lots of output formats, including drivers + plotting utility that supports lots of output formats, including drivers + plotting utility that supports lots of output formats, including drivers + supporting the X11-output. +Architecture: all +Architecture: all +Architecture: i386 +Architecture: i386 +Depends: dpkg (>= 1.15.4) | install-info +Depends: gnuplot-nox (>= 4.6.1-1~maverick2), gnuplot-x11 (>= 4.6.1-1~maverick2) +Depends: gnuplot-nox (>= 4.6.1-1~maverick2), libc6 (>= 2.11), libcairo2 (>= 1.6.0), libedit2 (>= 2.5.cvs.20010821-1), libgcc1 (>= 1:4.1.1), libgd2-noxpm (>= 2.0.36~rc1~dfsg) | libgd2-xpm (>= 2.0.36~rc1~dfsg), libglib2.0-0 (>= 2.12.0), liblua5.1-0, libpango1.0-0 (>= 1.14.0), libstdc++6 (>= 4.1.1), libwxbase2.8-0 (>= 2.8.11.0), libwxgtk2.8-0 (>= 2.8.11.0), libx11-6 +Depends: libc6 (>= 2.11), libcairo2 (>= 1.6.0), libedit2 (>= 2.5.cvs.20010821-1), libgd2-noxpm (>= 2.0.36~rc1~dfsg) | libgd2-xpm (>= 2.0.36~rc1~dfsg), libglib2.0-0 (>= 2.12.0), liblua5.1-0, libpango1.0-0 (>= 1.14.0) +Description: Command-line driven interactive plotting program +Description: Command-line driven interactive plotting program +Description: Command-line driven interactive plotting program +Description: Command-line driven interactive plotting program +Filename: pool/main/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb +Filename: pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb +Filename: pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb +Filename: pool/main/g/gnuplot/gnuplot_4.6.1-1~maverick2_all.deb +Installed-Size: 1604 +Installed-Size: 20 +Installed-Size: 2536 +Installed-Size: 5572 +MD5sum: 25a5028811171f2f1fa157a2f6953e82 +MD5sum: 4912a4464d5588f685c4aa6cfc6be46c +MD5sum: a7ef16004b62fd78acb77edb058ea1c1 +MD5sum: fcad938905d0ace50a6ce0c73b2c6583 +Maintainer: Debian Science Team +Maintainer: Debian Science Team +Maintainer: Debian Science Team +Maintainer: Debian Science Team +Package: gnuplot +Package: gnuplot-doc +Package: gnuplot-nox +Package: gnuplot-x11 +Priority: optional +Priority: optional +Priority: optional +Priority: optional +Recommends: groff, ttf-liberation +Replaces: gnuplot (<< 4.0.0) +Replaces: gnuplot (<< 4.0.0) +SHA1: 02f9a93097a8f798a054e26154dbe5789088c069 +SHA1: 4a50deb413e05f77b31687405465b1229b3be328 +SHA1: 629c3e62f787b0af47b184beb0460dd261c9ca4d +SHA1: 837dd002143054ca01d3b01cae410cc4b4fe10c4 +Section: doc +Section: math +Section: math +Section: math +Size: 1046 +Size: 1046496 +Size: 2675242 +Size: 724388 +Source: +Source: gnuplot +Source: gnuplot +Source: gnuplot +Suggests: gnuplot-doc (>= 4.6.1-1~maverick2) +Suggests: gnuplot-x11 (>= 4.6.1-1~maverick2), gnuplot-doc (>= 4.6.1-1~maverick2) +Version: 4.6.1-1~maverick2 +Version: 4.6.1-1~maverick2 +Version: 4.6.1-1~maverick2 +Version: 4.6.1-1~maverick2 diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch2Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch2Test_gold new file mode 100644 index 00000000..0968fa7c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch2Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/ppa/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/ppa/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "ppa" component "main"... + +Publish for snapshot ppa/maverick (main) [amd64, i386] publishes [snap1]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick has been successfully switched to new snapshot. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch3Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch3Test_gold new file mode 100644 index 00000000..97dcedfd --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch3Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "." component "main"... + +Publish for snapshot ./maverick (main) [amd64, i386] publishes [snap3]: Pulled into 'snap2' with 'snap1' as source, pull request was: 'gnuplot-x11' has been successfully switched to new snapshot. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch4Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch4Test_gold new file mode 100644 index 00000000..14f8c4c9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch4Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/ppa/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/ppa/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "ppa" component "main"... + +Publish for snapshot ppa/maverick (main) [i386] publishes [snap1]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick has been successfully switched to new snapshot. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch5Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch5Test_gold new file mode 100644 index 00000000..00bd6beb --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch5Test_gold @@ -0,0 +1 @@ +ERROR: unable to update: published repo with prefix/distribution ppa/maverick not found diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch6Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch6Test_gold new file mode 100644 index 00000000..bb45822f --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch6Test_gold @@ -0,0 +1 @@ +ERROR: unable to update: not a snapshot publish diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishSwitch7Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch7Test_gold new file mode 100644 index 00000000..b6f22570 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishSwitch7Test_gold @@ -0,0 +1 @@ +ERROR: unable to switch: snapshot with name snap3 not found diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_binary b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_binary new file mode 100644 index 00000000..ae94c343 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_binary @@ -0,0 +1,26 @@ + + + (name, value) pairs from the user, via conventional methods such as + . + . + Boost version (currently 1.49). + Library to let program developers obtain program options, that is + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default + command line and config file. +Architecture: i386 +Depends: libboost-program-options1.49-dev +Description: program options library for C++ (default version) +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 26 +MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +Maintainer: Debian Boost Team +Package: libboost-program-options-dev +Priority: optional +SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +Section: libdevel +Size: 2738 +Source: boost-defaults +Version: 1.49.0.1 \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_gold new file mode 100644 index 00000000..c6c998ef --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "." component "main"... + +Publish for local repo ./maverick (main) [i386, source] publishes [local-repo] has been successfully updated. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_release b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_release new file mode 100644 index 00000000..dfeaa969 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_release @@ -0,0 +1,9 @@ +Origin: . maverick +Label: . maverick +Codename: maverick +Architectures: i386 +Components: main +Description: Generated by aptly +MD5Sum: +SHA1: +SHA256: diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_sources b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate1Test_sources new file mode 100644 index 00000000..e69de29b diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_binary b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_binary new file mode 100644 index 00000000..8f5a0d4a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_binary @@ -0,0 +1,25 @@ + + (name, value) pairs from the user, via conventional methods such as + . + . + Boost version (currently 1.49). + Library to let program developers obtain program options, that is + This package forms part of the Boost C++ Libraries collection. + This package is a dependency package, which depends on Debian's default + command line and config file. +Architecture: i386 +Depends: libboost-program-options1.49-dev +Description: program options library for C++ (default version) +Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb +Homepage: http://www.boost.org/libs/program_options/ +Installed-Size: 26 +MD5sum: 0035d7822b2f8f0ec4013f270fd650c2 +Maintainer: Debian Boost Team +Package: libboost-program-options-dev +Priority: optional +SHA1: 36895eb64cfe89c33c0a2f7ac2f0c6e0e889e04b +SHA256: c76b4bd12fd92e4dfe1b55b18a67a669d92f62985d6a96c8a21d96120982cf12 +Section: libdevel +Size: 2738 +Source: boost-defaults +Version: 1.49.0.1 diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_gold new file mode 100644 index 00000000..c6c998ef --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "." component "main"... + +Publish for local repo ./maverick (main) [i386, source] publishes [local-repo] has been successfully updated. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_sources b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_sources new file mode 100644 index 00000000..f1c4cf3c --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate2Test_sources @@ -0,0 +1,42 @@ + + + 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz + 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz + 56c8a9b1f4ab636052be8966690998cbe865cd6c 1782 pyspi_0.6.1-1.3.dsc + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz + 64069ee828c50b1c597d10a3fefbba279f093a4723965388cdd0ac02f029bfb9 29063 pyspi_0.6.1.orig.tar.gz + 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz + 9694b80acc171c0a5bc99f707933864edfce555e 29063 pyspi_0.6.1.orig.tar.gz + b72cb94699298a117b7c82641c68b6fd 1782 pyspi_0.6.1-1.3.dsc + d494aaf526f1ec6b02f14c2f81e060a5722d6532ddc760ec16972e45c2625989 1782 pyspi_0.6.1-1.3.dsc + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz + def336bd566ea688a06ec03db7ccf1f4 29063 pyspi_0.6.1.orig.tar.gz +Architecture: any +Architecture: any +Binary: python-at-spi +Binary: python-at-spi +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Checksums-Sha1: 5005fbd1f30637edc1d380b30f45db9b79100d07 893 pyspi-0.6.1-1.3.stripped.dsc +Checksums-Sha1: 95a2468e4bbce730ba286f2211fa41861b9f1d90 3456 pyspi_0.6.1-1.3.diff.gz +Checksums-Sha256: 289d3aefa970876e9c43686ce2b02f478d7f3ed35a713928464a98d54ae4fca3 893 pyspi-0.6.1-1.3.stripped.dsc +Checksums-Sha256: 2e770b28df948f3197ed0b679bdea99f3f2bf745e9ddb440c677df9c3aeaee3c 3456 pyspi_0.6.1-1.3.diff.gz +Directory: pool/main/p/pyspi +Directory: pool/main/p/pyspi +Files: 22ff26db69b73d3438fdde21ab5ba2f1 3456 pyspi_0.6.1-1.3.diff.gz +Files: 2f5bd47cf38852b6fc927a50f98c1448 893 pyspi-0.6.1-1.3.stripped.dsc +Format: 1.0 +Format: 1.0 +Homepage: http://people.redhat.com/zcerza/dogtail +Homepage: http://people.redhat.com/zcerza/dogtail +Maintainer: Jose Carlos Garcia Sogo +Maintainer: Jose Carlos Garcia Sogo +Package: pyspi +Package: pyspi +Standards-Version: 3.7.3 +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Version: 0.6.1-1.3 +Version: 0.6.1-1.4 diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate3Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate3Test_gold new file mode 100644 index 00000000..c6c998ef --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate3Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "." component "main"... + +Publish for local repo ./maverick (main) [i386, source] publishes [local-repo] has been successfully updated. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate4Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate4Test_gold new file mode 100644 index 00000000..9018773e --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate4Test_gold @@ -0,0 +1,7 @@ +Loading packages... +Generating metadata files and linking package files... +Signing file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Clearsigning file '${HOME}/.aptly/public/dists/maverick/Release.tmp' with gpg, please enter your passphrase when prompted: +Cleaning up prefix "." component "main"... + +Publish for local repo ./maverick (main) [source] publishes [local-repo] has been successfully updated. diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate5Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate5Test_gold new file mode 100644 index 00000000..00bd6beb --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate5Test_gold @@ -0,0 +1 @@ +ERROR: unable to update: published repo with prefix/distribution ppa/maverick not found diff --git a/src/github.com/smira/aptly/system/t06_publish/PublishUpdate6Test_gold b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate6Test_gold new file mode 100644 index 00000000..98523831 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/PublishUpdate6Test_gold @@ -0,0 +1 @@ +ERROR: unable to update: not a local repository publish diff --git a/src/github.com/smira/aptly/system/t06_publish/__init__.py b/src/github.com/smira/aptly/system/t06_publish/__init__.py new file mode 100644 index 00000000..55e1dd3b --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/__init__.py @@ -0,0 +1,10 @@ +""" +Testing publishing snapshots +""" + +from .drop import * +from .list import * +from .repo import * +from .snapshot import * +from .switch import * +from .update import * diff --git a/src/github.com/smira/aptly/system/t06_publish/drop.py b/src/github.com/smira/aptly/system/t06_publish/drop.py new file mode 100644 index 00000000..31e656c4 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/drop.py @@ -0,0 +1,124 @@ +from lib import BaseTest + + +class PublishDrop1Test(BaseTest): + """ + publish drop: existing snapshot + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1", + ] + runCmd = "aptly publish drop maverick" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishDrop1Test, self).check() + + self.check_not_exists('public/dists/') + self.check_not_exists('public/pool/') + + +class PublishDrop2Test(BaseTest): + """ + publish drop: under prefix + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1 ppa/smira", + ] + runCmd = "aptly publish drop maverick ppa/smira" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishDrop2Test, self).check() + + self.check_not_exists('public/ppa/smira/dists/') + self.check_not_exists('public/ppa/smira/pool/') + self.check_exists('public/ppa/smira/') + + +class PublishDrop3Test(BaseTest): + """ + publish drop: drop one distribution + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq1 snap1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq2 snap1", + ] + runCmd = "aptly publish drop sq1" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishDrop3Test, self).check() + + self.check_not_exists('public/dists/sq1') + self.check_exists('public/dists/sq2') + self.check_exists('public/pool/main/') + + +class PublishDrop4Test(BaseTest): + """ + publish drop: drop one of components + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq1 -component=contrib snap1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq2 snap1", + ] + runCmd = "aptly publish drop sq1" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishDrop4Test, self).check() + + self.check_not_exists('public/dists/sq1') + self.check_exists('public/dists/sq2') + self.check_not_exists('public/pool/contrib/') + self.check_exists('public/pool/main/') + + +class PublishDrop5Test(BaseTest): + """ + publish drop: component cleanup + """ + fixtureCmds = [ + "aptly repo create local1", + "aptly repo create local2", + "aptly repo add local1 ${files}/libboost-program-options-dev_1.49.0.1_i386.deb", + "aptly repo add local2 ${files}", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq1 local1", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=sq2 local2", + ] + runCmd = "aptly publish drop sq2" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishDrop5Test, self).check() + + self.check_exists('public/dists/sq1') + self.check_not_exists('public/dists/sq2') + self.check_exists('public/pool/main/') + + self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_not_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishDrop6Test(BaseTest): + """ + publish drop: no publish + """ + runCmd = "aptly publish drop sq1" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t06_publish/list.py b/src/github.com/smira/aptly/system/t06_publish/list.py new file mode 100644 index 00000000..6c173132 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/list.py @@ -0,0 +1,42 @@ +from lib import BaseTest + + +class PublishList1Test(BaseTest): + """ + publish list: empty list + """ + runCmd = "aptly publish list" + + +class PublishList2Test(BaseTest): + """ + publish list: several repos list + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot merge snap2 snap1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1", + "aptly -architectures=amd64 publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=wheezy -component=contrib snap2 ppa/smira", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -origin=origin1 snap2 ppa/tr1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -label=label1 snap2 ppa/tr2", + ] + runCmd = "aptly publish list" + + +class PublishList3Test(BaseTest): + """ + publish list: several repos list, raw + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot merge snap2 snap1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1", + "aptly -architectures=amd64 publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=wheezy -component=contrib snap2 ppa/smira", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -origin=origin1 snap2 ppa/tr1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -label=label1 snap2 ppa/tr2", + ] + runCmd = "aptly publish list -raw" diff --git a/src/github.com/smira/aptly/system/t06_publish/repo.py b/src/github.com/smira/aptly/system/t06_publish/repo.py new file mode 100644 index 00000000..8f08e7fe --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/repo.py @@ -0,0 +1,358 @@ +import os +import hashlib +import inspect +from lib import BaseTest + + +def strip_processor(output): + return "\n".join([l for l in output.split("\n") if not l.startswith(' ') and not l.startswith('Date:')]) + + +class PublishRepo1Test(BaseTest): + """ + publish repo: default + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo1Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + self.check_file_contents('public/dists/maverick/main/source/Sources', 'sources', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + self.check_file_contents('public/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + # verify signatures + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')]) + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'), + os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')]) + + # verify sums + release = self.read_file('public/dists/maverick/Release').split("\n") + release = [l for l in release if l.startswith(" ")] + pathsSeen = set() + for l in release: + fileHash, fileSize, path = l.split() + pathsSeen.add(path) + + fileSize = int(fileSize) + + st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/', path)) + if fileSize != st.st_size: + raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size)) + + if len(fileHash) == 32: + h = hashlib.md5() + elif len(fileHash) == 40: + h = hashlib.sha1() + else: + h = hashlib.sha256() + + h.update(self.read_file(os.path.join('public/dists/maverick', path))) + + if h.hexdigest() != fileHash: + raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest())) + + if pathsSeen != set(['main/binary-i386/Packages', 'main/binary-i386/Packages.bz2', 'main/binary-i386/Packages.gz', + 'main/source/Sources', 'main/source/Sources.gz', 'main/source/Sources.bz2']): + raise Exception("path seen wrong: %r" % (pathsSeen, )) + + +class PublishRepo2Test(BaseTest): + """ + publish repo: different component + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick -component=contrib local-repo" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo2Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages') + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/contrib/source/Sources') + self.check_exists('public/dists/maverick/contrib/source/Sources.gz') + self.check_exists('public/dists/maverick/contrib/source/Sources.bz2') + + self.check_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/pool/contrib/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/contrib/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishRepo3Test(BaseTest): + """ + publish repo: different architectures + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly -architectures=i386 publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick -component=contrib local-repo" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo3Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages') + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages.bz2') + self.check_not_exists('public/dists/maverick/contrib/source/Sources') + self.check_not_exists('public/dists/maverick/contrib/source/Sources.gz') + self.check_not_exists('public/dists/maverick/contrib/source/Sources.bz2') + + self.check_not_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_not_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_not_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_not_exists('public/pool/contrib/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/contrib/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishRepo4Test(BaseTest): + """ + publish repo: under prefix + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo ppa" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo4Test, self).check() + + self.check_exists('public/ppa/dists/maverick/InRelease') + self.check_exists('public/ppa/dists/maverick/Release') + self.check_exists('public/ppa/dists/maverick/Release.gpg') + + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/ppa/dists/maverick/main/source/Sources') + self.check_exists('public/ppa/dists/maverick/main/source/Sources.gz') + self.check_exists('public/ppa/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/ppa/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/ppa/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/ppa/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/ppa/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/ppa/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishRepo5Test(BaseTest): + """ + publish repo: specify distribution + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo local-repo" + expectedCode = 1 + + +class PublishRepo6Test(BaseTest): + """ + publish repo: double publish under root + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo", + ] + runCmd = "aptly publish repo -distribution=maverick local-repo" + expectedCode = 1 + + +class PublishRepo7Test(BaseTest): + """ + publish repo: double publish under prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo ./ppa", + ] + runCmd = "aptly publish repo -distribution=maverick local-repo ppa" + expectedCode = 1 + + +class PublishRepo8Test(BaseTest): + """ + publish repo: wrong prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -distribution=maverick local-repo ppa/dists/la" + expectedCode = 1 + + +class PublishRepo9Test(BaseTest): + """ + publish repo: wrong prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -distribution=maverick local-repo ppa/pool/la" + expectedCode = 1 + + +class PublishRepo10Test(BaseTest): + """ + publish repo: wrong prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -distribution=maverick local-repo ../la" + expectedCode = 1 + + +class PublishRepo11Test(BaseTest): + """ + publish repo: no snapshot + """ + runCmd = "aptly publish repo local-repo" + expectedCode = 1 + + +class PublishRepo12Test(BaseTest): + """ + publish repo: -skip-signing + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -skip-signing -distribution=maverick local-repo" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo12Test, self).check() + + self.check_not_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_not_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + + +class PublishRepo13Test(BaseTest): + """ + publish repo: empty repo is not publishable + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create local-repo", + ] + runCmd = "aptly publish repo --distribution=mars --skip-signing local-repo" + expectedCode = 1 + + +class PublishRepo14Test(BaseTest): + """ + publish repo: publishing defaults from local repo + """ + fixtureCmds = [ + "aptly repo create -distribution=maverick -component=contrib local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec local-repo" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo14Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages') + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/contrib/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/contrib/source/Sources') + self.check_exists('public/dists/maverick/contrib/source/Sources.gz') + self.check_exists('public/dists/maverick/contrib/source/Sources.bz2') + + self.check_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/contrib/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/pool/contrib/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/contrib/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishRepo15Test(BaseTest): + """ + publish repo: custom label + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick -component=contrib -label=label15 local-repo" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishRepo15Test, self).check() + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) diff --git a/src/github.com/smira/aptly/system/t06_publish/snapshot.py b/src/github.com/smira/aptly/system/t06_publish/snapshot.py new file mode 100644 index 00000000..c6eca345 --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/snapshot.py @@ -0,0 +1,577 @@ +import os +import hashlib +import inspect +from lib import BaseTest + + +def strip_processor(output): + return "\n".join([l for l in output.split("\n") if not l.startswith(' ') and not l.startswith('Date:')]) + + +class PublishSnapshot1Test(BaseTest): + """ + publish snapshot: defaults + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot1Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2') + + self.check_exists('public/pool/main/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + + # verify signatures + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')]) + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'), + os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')]) + + # verify sums + release = self.read_file('public/dists/maverick/Release').split("\n") + release = [l for l in release if l.startswith(" ")] + pathsSeen = set() + for l in release: + fileHash, fileSize, path = l.split() + pathsSeen.add(path) + + fileSize = int(fileSize) + + st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/', path)) + if fileSize != st.st_size: + raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size)) + + if len(fileHash) == 32: + h = hashlib.md5() + elif len(fileHash) == 40: + h = hashlib.sha1() + else: + h = hashlib.sha256() + + h.update(self.read_file(os.path.join('public/dists/maverick', path))) + + if h.hexdigest() != fileHash: + raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest())) + + if pathsSeen != set(['main/binary-amd64/Packages', 'main/binary-i386/Packages', 'main/binary-i386/Packages.gz', + 'main/binary-amd64/Packages.gz', 'main/binary-amd64/Packages.bz2', 'main/binary-i386/Packages.bz2']): + raise Exception("path seen wrong: %r" % (pathsSeen, )) + + +class PublishSnapshot2Test(BaseTest): + """ + publish snapshot: different distribution + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap2 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=squeeze snap2" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot2Test, self).check() + + self.check_exists('public/dists/squeeze/InRelease') + self.check_exists('public/dists/squeeze/Release') + self.check_exists('public/dists/squeeze/Release.gpg') + + self.check_exists('public/dists/squeeze/main/binary-i386/Packages') + self.check_exists('public/dists/squeeze/main/binary-i386/Packages.gz') + self.check_exists('public/dists/squeeze/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/squeeze/main/binary-amd64/Packages') + self.check_exists('public/dists/squeeze/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/squeeze/main/binary-amd64/Packages.bz2') + + self.check_exists('public/pool/main/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/squeeze/Release', 'release', match_prepare=strip_processor) + + +class PublishSnapshot3Test(BaseTest): + """ + publish snapshot: different distribution and component + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap3 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=squeeze -component=contrib snap3" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot3Test, self).check() + + self.check_exists('public/dists/squeeze/InRelease') + self.check_exists('public/dists/squeeze/Release') + self.check_exists('public/dists/squeeze/Release.gpg') + + self.check_exists('public/dists/squeeze/contrib/binary-i386/Packages') + self.check_exists('public/dists/squeeze/contrib/binary-i386/Packages.gz') + self.check_exists('public/dists/squeeze/contrib/binary-i386/Packages.bz2') + self.check_exists('public/dists/squeeze/contrib/binary-amd64/Packages') + self.check_exists('public/dists/squeeze/contrib/binary-amd64/Packages.gz') + self.check_exists('public/dists/squeeze/contrib/binary-amd64/Packages.bz2') + + self.check_exists('public/pool/contrib/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/squeeze/Release', 'release', match_prepare=strip_processor) + + +class PublishSnapshot4Test(BaseTest): + """ + publish snapshot: limit architectures + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap4 from mirror gnuplot-maverick", + ] + runCmd = "aptly -architectures=i386 publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=squeeze snap4" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot4Test, self).check() + + self.check_exists('public/dists/squeeze/InRelease') + self.check_exists('public/dists/squeeze/Release') + self.check_exists('public/dists/squeeze/Release.gpg') + + self.check_exists('public/dists/squeeze/main/binary-i386/Packages') + self.check_exists('public/dists/squeeze/main/binary-i386/Packages.gz') + self.check_exists('public/dists/squeeze/main/binary-i386/Packages.bz2') + self.check_not_exists('public/dists/squeeze/main/binary-amd64/Packages') + self.check_not_exists('public/dists/squeeze/main/binary-amd64/Packages.gz') + self.check_not_exists('public/dists/squeeze/main/binary-amd64/Packages.bz2') + + self.check_exists('public/pool/main/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/squeeze/Release', 'release', match_prepare=strip_processor) + + +class PublishSnapshot5Test(BaseTest): + """ + publish snapshot: under prefix + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap5 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=squeeze snap5 ppa/smira" + + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot5Test, self).check() + + self.check_exists('public/ppa/smira/dists/squeeze/InRelease') + self.check_exists('public/ppa/smira/dists/squeeze/Release') + self.check_exists('public/ppa/smira/dists/squeeze/Release.gpg') + + self.check_exists('public/ppa/smira/dists/squeeze/main/binary-i386/Packages') + self.check_exists('public/ppa/smira/dists/squeeze/main/binary-i386/Packages.gz') + self.check_exists('public/ppa/smira/dists/squeeze/main/binary-i386/Packages.bz2') + self.check_exists('public/ppa/smira/dists/squeeze/main/binary-amd64/Packages') + self.check_exists('public/ppa/smira/dists/squeeze/main/binary-amd64/Packages.gz') + self.check_exists('public/ppa/smira/dists/squeeze/main/binary-amd64/Packages.bz2') + + self.check_exists('public/ppa/smira/pool/main/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb') + + +class PublishSnapshot6Test(BaseTest): + """ + publish snapshot: specify distribution + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap from mirror gnuplot-maverick", + "aptly snapshot create snap2 from mirror wheezy-main", + "aptly snapshot merge snap6 snap2 snap" + ] + runCmd = "aptly publish snapshot snap6" + expectedCode = 1 + + +class PublishSnapshot7Test(BaseTest): + """ + publish snapshot: double publish under root + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap7 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap7", + ] + runCmd = "aptly publish snapshot snap7" + expectedCode = 1 + + +class PublishSnapshot8Test(BaseTest): + """ + publish snapshot: double publish under prefix + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap8 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap8 ./ppa", + ] + runCmd = "aptly publish snapshot snap8 ppa" + expectedCode = 1 + + +class PublishSnapshot9Test(BaseTest): + """ + publish snapshot: wrong prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap9 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot snap9 ppa/dists/la" + expectedCode = 1 + + +class PublishSnapshot10Test(BaseTest): + """ + publish snapshot: wrong prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap10 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot snap10 ppa/pool/la" + expectedCode = 1 + + +class PublishSnapshot11Test(BaseTest): + """ + publish snapshot: wrong prefix + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap11 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot snap11 ../la" + expectedCode = 1 + + +class PublishSnapshot12Test(BaseTest): + """ + publish snapshot: no snapshot + """ + fixtureDB = True + runCmd = "aptly publish snapshot snap12" + expectedCode = 1 + + +class PublishSnapshot13Test(BaseTest): + """ + publish snapshot: -skip-signing + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap13 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot -skip-signing snap13" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot13Test, self).check() + + self.check_not_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_not_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + + +class PublishSnapshot14Test(BaseTest): + """ + publish snapshot: empty snapshot is not publishable + """ + fixtureDB = True + fixtureCmds = [ + "aptly snapshot create snap14 empty", + ] + runCmd = "aptly publish snapshot --distribution=mars --skip-signing snap14" + expectedCode = 1 + + +class PublishSnapshot15Test(BaseTest): + """ + publish snapshot: skip signing via config + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap15 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot snap15" + configOverride = {"gpgDisableSign": True} + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot15Test, self).check() + + self.check_not_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_not_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + + +class PublishSnapshot16Test(BaseTest): + """ + publish snapshot: with sources + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap16 from mirror gnuplot-maverick-src", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap16" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot16Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/pool/main/g/gnuplot/gnuplot-doc_4.6.1-1~maverick2_all.deb') + self.check_exists('public/pool/main/g/gnuplot/gnuplot_4.6.1-1~maverick2.debian.tar.gz') + self.check_exists('public/pool/main/g/gnuplot/gnuplot_4.6.1-1~maverick2.dsc') + self.check_exists('public/pool/main/g/gnuplot/gnuplot_4.6.1.orig.tar.gz') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + self.check_file_contents('public/dists/maverick/main/source/Sources', 'sources', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + # verify signatures + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')]) + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'), + os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')]) + + +class PublishSnapshot17Test(BaseTest): + """ + publish snapshot: from local repo + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap17 from repo local-repo", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap17" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot17Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + self.check_file_contents('public/dists/maverick/main/source/Sources', 'sources', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + self.check_file_contents('public/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + # verify signatures + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')]) + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'), + os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')]) + + +class PublishSnapshot18Test(BaseTest): + """ + publish snapshot: specify distribution from local repo + """ + fixtureCmds = [ + "aptly repo create repo1", + "aptly repo add repo1 ${files}", + "aptly snapshot create snap1 from repo repo1", + ] + runCmd = "aptly publish snapshot snap1" + expectedCode = 1 + + +class PublishSnapshot19Test(BaseTest): + """ + publish snapshot: guess distribution from long chain + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot create snap2 from mirror gnuplot-maverick", + "aptly snapshot create snap3 from mirror gnuplot-maverick", + "aptly snapshot merge snap4 snap1 snap2", + "aptly snapshot pull snap4 snap1 snap5 gnuplot", + + ] + runCmd = "aptly publish snapshot -skip-signing snap5" + gold_processor = BaseTest.expand_environ + + +class PublishSnapshot20Test(BaseTest): + """ + publish snapshot: guess distribution from long chain including local repo + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly repo create -distribution=maverick local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap2 from repo local-repo", + "aptly snapshot merge snap3 snap1 snap2", + + ] + runCmd = "aptly publish snapshot -skip-signing snap3" + gold_processor = BaseTest.expand_environ + + +class PublishSnapshot21Test(BaseTest): + """ + publish snapshot: conflict in distributions + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly repo create -distribution=squeeze local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap2 from repo local-repo", + "aptly snapshot merge snap3 snap1 snap2", + + ] + runCmd = "aptly publish snapshot -skip-signing snap3" + gold_processor = BaseTest.expand_environ + expectedCode = 1 + + +class PublishSnapshot22Test(BaseTest): + """ + publish snapshot: conflict in components + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly repo create -component=contrib -distribution=maverick local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap2 from repo local-repo", + "aptly snapshot merge snap3 snap1 snap2", + + ] + runCmd = "aptly publish snapshot -skip-signing snap3" + gold_processor = BaseTest.expand_environ + + +class PublishSnapshot23Test(BaseTest): + """ + publish snapshot: distribution empty plus distribution maverick + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly snapshot create snap2 from repo local-repo", + "aptly snapshot merge snap3 snap1 snap2", + + ] + runCmd = "aptly publish snapshot -skip-signing snap3" + gold_processor = BaseTest.expand_environ + + +class PublishSnapshot24Test(BaseTest): + """ + publish snapshot: custom origin + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap24 from mirror gnuplot-maverick", + ] + runCmd = "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=squeeze -origin=aptly24 snap24" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSnapshot24Test, self).check() + + # verify contents except of sums + self.check_file_contents('public/dists/squeeze/Release', 'release', match_prepare=strip_processor) diff --git a/src/github.com/smira/aptly/system/t06_publish/switch.py b/src/github.com/smira/aptly/system/t06_publish/switch.py new file mode 100644 index 00000000..0303c2cb --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/switch.py @@ -0,0 +1,228 @@ +import os +import hashlib +import inspect +from lib import BaseTest + + +def strip_processor(output): + return "\n".join([l for l in output.split("\n") if not l.startswith(' ') and not l.startswith('Date:')]) + + +class PublishSwitch1Test(BaseTest): + """ + publish switch: removed some packages + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot create snap2 empty", + "aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1", + ] + runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap3" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSwitch1Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2') + + self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb') + self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb') + self.check_not_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb') + self.check_not_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + self.check_file_contents('public/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + # verify signatures + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')]) + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'), + os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')]) + + # verify sums + release = self.read_file('public/dists/maverick/Release').split("\n") + release = [l for l in release if l.startswith(" ")] + pathsSeen = set() + for l in release: + fileHash, fileSize, path = l.split() + pathsSeen.add(path) + + fileSize = int(fileSize) + + st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/', path)) + if fileSize != st.st_size: + raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size)) + + if len(fileHash) == 32: + h = hashlib.md5() + elif len(fileHash) == 40: + h = hashlib.sha1() + else: + h = hashlib.sha256() + + h.update(self.read_file(os.path.join('public/dists/maverick', path))) + + if h.hexdigest() != fileHash: + raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest())) + + if pathsSeen != set(['main/binary-amd64/Packages', 'main/binary-i386/Packages', 'main/binary-i386/Packages.gz', + 'main/binary-amd64/Packages.gz', 'main/binary-amd64/Packages.bz2', 'main/binary-i386/Packages.bz2']): + raise Exception("path seen wrong: %r" % (pathsSeen, )) + + +class PublishSwitch2Test(BaseTest): + """ + publish switch: added some packages + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot create snap2 empty", + "aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap3 ppa", + ] + runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick ppa snap1" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSwitch2Test, self).check() + + self.check_exists('public/ppa/dists/maverick/InRelease') + self.check_exists('public/ppa/dists/maverick/Release') + self.check_exists('public/ppa/dists/maverick/Release.gpg') + + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/ppa/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.bz2') + + self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb') + self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb') + self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb') + self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb') + + # verify contents except of sums + self.check_file_contents('public/ppa/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + +class PublishSwitch3Test(BaseTest): + """ + publish switch: removed some packages, files occupied by another package + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot create snap2 empty", + "aptly snapshot pull -no-deps -architectures=i386,amd64 snap2 snap1 snap3 gnuplot-x11", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick2 snap1", + ] + runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap3" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSwitch3Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-amd64/Packages.bz2') + + self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb') + self.check_exists('public/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb') + self.check_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb') + self.check_exists('public/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb') + + +class PublishSwitch4Test(BaseTest): + """ + publish switch: added some packages, but list of published archs doesn't change + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot create snap2 empty", + "aptly snapshot pull -no-deps -architectures=i386 snap2 snap1 snap3 gnuplot-x11", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap3 ppa", + ] + runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick ppa snap1" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishSwitch4Test, self).check() + + self.check_exists('public/ppa/dists/maverick/InRelease') + self.check_exists('public/ppa/dists/maverick/Release') + self.check_exists('public/ppa/dists/maverick/Release.gpg') + + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/ppa/dists/maverick/main/binary-i386/Packages.bz2') + self.check_not_exists('public/ppa/dists/maverick/main/binary-amd64/Packages') + self.check_not_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.gz') + self.check_not_exists('public/ppa/dists/maverick/main/binary-amd64/Packages.bz2') + + self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_i386.deb') + self.check_not_exists('public/ppa/pool/main/g/gnuplot/gnuplot-x11_4.6.1-1~maverick2_amd64.deb') + self.check_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_i386.deb') + self.check_not_exists('public/ppa/pool/main/g/gnuplot/gnuplot-nox_4.6.1-1~maverick2_amd64.deb') + + +class PublishSwitch5Test(BaseTest): + """ + publish switch: no such publish + """ + fixtureCmds = [ + "aptly snapshot create snap1 empty", + ] + runCmd = "aptly publish switch maverick ppa snap1" + expectedCode = 1 + + +class PublishSwitch6Test(BaseTest): + """ + publish switch: not a snapshot + """ + fixtureCmds = [ + "aptly snapshot create snap1 empty", + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo", + ] + runCmd = "aptly publish switch maverick snap1" + expectedCode = 1 + + +class PublishSwitch7Test(BaseTest): + """ + publish switch: no snapshot + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick snap1", + ] + runCmd = "aptly publish switch -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick snap3" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t06_publish/update.py b/src/github.com/smira/aptly/system/t06_publish/update.py new file mode 100644 index 00000000..8516ae1a --- /dev/null +++ b/src/github.com/smira/aptly/system/t06_publish/update.py @@ -0,0 +1,212 @@ +import os +import hashlib +import inspect +from lib import BaseTest + + +def strip_processor(output): + return "\n".join([l for l in output.split("\n") if not l.startswith(' ') and not l.startswith('Date:')]) + + +class PublishUpdate1Test(BaseTest): + """ + publish update: removed some packages + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}/", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo", + "aptly repo remove local-repo pyspi" + ] + runCmd = "aptly publish update -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishUpdate1Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_not_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_not_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/Release', 'release', match_prepare=strip_processor) + self.check_file_contents('public/dists/maverick/main/source/Sources', 'sources', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + self.check_file_contents('public/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + # verify signatures + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/InRelease')]) + self.run_cmd(["gpg", "--no-auto-check-trustdb", "--keyring", os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "aptly.pub"), + "--verify", os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release.gpg'), + os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/Release')]) + + # verify sums + release = self.read_file('public/dists/maverick/Release').split("\n") + release = [l for l in release if l.startswith(" ")] + pathsSeen = set() + for l in release: + fileHash, fileSize, path = l.split() + pathsSeen.add(path) + + fileSize = int(fileSize) + + st = os.stat(os.path.join(os.environ["HOME"], ".aptly", 'public/dists/maverick/', path)) + if fileSize != st.st_size: + raise Exception("file size doesn't match for %s: %d != %d" % (path, fileSize, st.st_size)) + + if len(fileHash) == 32: + h = hashlib.md5() + elif len(fileHash) == 40: + h = hashlib.sha1() + else: + h = hashlib.sha256() + + h.update(self.read_file(os.path.join('public/dists/maverick', path))) + + if h.hexdigest() != fileHash: + raise Exception("file hash doesn't match for %s: %s != %s" % (path, fileHash, h.hexdigest())) + + if pathsSeen != set(['main/binary-i386/Packages', 'main/binary-i386/Packages.bz2', 'main/binary-i386/Packages.gz', + 'main/source/Sources', 'main/source/Sources.gz', 'main/source/Sources.bz2']): + raise Exception("path seen wrong: %r" % (pathsSeen, )) + + +class PublishUpdate2Test(BaseTest): + """ + publish update: added some packages + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}/libboost-program-options-dev_1.49.0.1_i386.deb ${files}/pyspi_0.6.1-1.3.dsc", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo", + "aptly repo add local-repo ${files}/pyspi-0.6.1-1.3.stripped.dsc" + ] + runCmd = "aptly publish update -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishUpdate2Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + # verify contents except of sums + self.check_file_contents('public/dists/maverick/main/source/Sources', 'sources', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + self.check_file_contents('public/dists/maverick/main/binary-i386/Packages', 'binary', match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + +class PublishUpdate3Test(BaseTest): + """ + publish update: removed some packages, files occupied by another package + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}/", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick2 local-repo", + "aptly repo remove local-repo pyspi" + ] + runCmd = "aptly publish update -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishUpdate3Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi-0.6.1-1.3.stripped.dsc') + self.check_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishUpdate4Test(BaseTest): + """ + publish update: added some packages, but list of published archs doesn't change + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}/pyspi_0.6.1-1.3.dsc", + "aptly publish repo -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec -distribution=maverick local-repo", + "aptly repo add local-repo ${files}/libboost-program-options-dev_1.49.0.1_i386.deb" + ] + runCmd = "aptly publish update -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec maverick" + gold_processor = BaseTest.expand_environ + + def check(self): + super(PublishUpdate4Test, self).check() + + self.check_exists('public/dists/maverick/InRelease') + self.check_exists('public/dists/maverick/Release') + self.check_exists('public/dists/maverick/Release.gpg') + + self.check_not_exists('public/dists/maverick/main/binary-i386/Packages') + self.check_not_exists('public/dists/maverick/main/binary-i386/Packages.gz') + self.check_not_exists('public/dists/maverick/main/binary-i386/Packages.bz2') + self.check_exists('public/dists/maverick/main/source/Sources') + self.check_exists('public/dists/maverick/main/source/Sources.gz') + self.check_exists('public/dists/maverick/main/source/Sources.bz2') + + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.dsc') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('public/pool/main/p/pyspi/pyspi_0.6.1.orig.tar.gz') + self.check_not_exists('public/pool/main/b/boost-defaults/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class PublishUpdate5Test(BaseTest): + """ + publish update: no such publish + """ + runCmd = "aptly publish update maverick ppa" + expectedCode = 1 + + +class PublishUpdate6Test(BaseTest): + """ + publish update: not a local repo + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1", + ] + runCmd = "aptly publish update maverick" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t07_serve/Serve1Test_gold b/src/github.com/smira/aptly/system/t07_serve/Serve1Test_gold new file mode 100644 index 00000000..4a90d469 --- /dev/null +++ b/src/github.com/smira/aptly/system/t07_serve/Serve1Test_gold @@ -0,0 +1,9 @@ +Serving published repositories, recommended apt sources list: + +# ./maverick (main) [amd64, i386] publishes [snap1]: Snapshot from mirror [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick +deb http://127.0.0.1:8765/ maverick main +# debian/maverick (main) [amd64, i386, source] publishes [snap2]: Snapshot from mirror [gnuplot-maverick-src]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick [src] +deb http://127.0.0.1:8765/debian/ maverick main +deb-src http://127.0.0.1:8765/debian/ maverick main + +Starting web server at: 127.0.0.1:8765 (press Ctrl+C to quit)... diff --git a/src/github.com/smira/aptly/system/t07_serve/Serve1Test_http b/src/github.com/smira/aptly/system/t07_serve/Serve1Test_http new file mode 100644 index 00000000..ebe82606 --- /dev/null +++ b/src/github.com/smira/aptly/system/t07_serve/Serve1Test_http @@ -0,0 +1,5 @@ +
    +debian/
    +dists/
    +pool/
    +
    diff --git a/src/github.com/smira/aptly/system/t07_serve/Serve2Test_gold b/src/github.com/smira/aptly/system/t07_serve/Serve2Test_gold new file mode 100644 index 00000000..e67c3515 --- /dev/null +++ b/src/github.com/smira/aptly/system/t07_serve/Serve2Test_gold @@ -0,0 +1 @@ +No published repositories, unable to serve. diff --git a/src/github.com/smira/aptly/system/t07_serve/__init__.py b/src/github.com/smira/aptly/system/t07_serve/__init__.py new file mode 100644 index 00000000..f986a710 --- /dev/null +++ b/src/github.com/smira/aptly/system/t07_serve/__init__.py @@ -0,0 +1,64 @@ +""" +Testing serving public repo +""" + +import httplib +import os +import signal +import subprocess +import shlex +import time + +from lib import BaseTest + + +class Serve1Test(BaseTest): + """ + serve public: two publishes, verify HTTP + """ + fixtureDB = True + fixturePool = True + fixtureCmds = [ + "aptly snapshot create snap1 from mirror gnuplot-maverick", + "aptly snapshot create snap2 from mirror gnuplot-maverick-src", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap1", + "aptly publish snapshot -keyring=${files}/aptly.pub -secret-keyring=${files}/aptly.sec snap2 debian", + ] + runCmd = "aptly serve -listen=127.0.0.1:8765" + + def run(self): + try: + proc = subprocess.Popen(shlex.split(self.runCmd), stderr=subprocess.STDOUT, stdout=subprocess.PIPE, bufsize=0) + + try: + time.sleep(1) + + conn = httplib.HTTPConnection("127.0.0.1", 8765) + conn.request("GET", "/") + r = conn.getresponse() + if r.status != 200: + raise Exception("Expected status 200 != %d" % r.status) + self.http_response = r.read() + + output = os.read(proc.stdout.fileno(), 8192) + + finally: + proc.send_signal(signal.SIGINT) + proc.wait() + + if proc.returncode != 2: + raise Exception("exit code %d != %d (output: %s)" % (proc.returncode, 2, output)) + self.output = output + except Exception, e: + raise Exception("Running command %s failed: %s" % (self.runCmd, str(e))) + + def check(self): + self.check_output() + self.verify_match(self.get_gold('http'), self.http_response, match_prepare=lambda s: "\n".join(sorted(s.split("\n")))) + + +class Serve2Test(BaseTest): + """ + serve public: no publishes + """ + runCmd = "aptly serve -listen=127.0.0.1:8765" diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB1Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB1Test_gold new file mode 100644 index 00000000..1816ebdd --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB1Test_gold @@ -0,0 +1,7 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (0)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (0)... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB2Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB2Test_gold new file mode 100644 index 00000000..051152a6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB2Test_gold @@ -0,0 +1,7 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (73295)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (0)... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB3Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB3Test_gold new file mode 100644 index 00000000..5f9cd0eb --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB3Test_gold @@ -0,0 +1,8 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (7)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (9)... +Disk space freed: 10.85 MiB... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB4Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB4Test_gold new file mode 100644 index 00000000..1816ebdd --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB4Test_gold @@ -0,0 +1,7 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (0)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (0)... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB5Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB5Test_gold new file mode 100644 index 00000000..5f9cd0eb --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB5Test_gold @@ -0,0 +1,8 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (7)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (9)... +Disk space freed: 10.85 MiB... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB6Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB6Test_gold new file mode 100644 index 00000000..1816ebdd --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB6Test_gold @@ -0,0 +1,7 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (0)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (0)... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB7Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB7Test_gold new file mode 100644 index 00000000..1816ebdd --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB7Test_gold @@ -0,0 +1,7 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (0)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (0)... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/CleanupDB8Test_gold b/src/github.com/smira/aptly/system/t08_db/CleanupDB8Test_gold new file mode 100644 index 00000000..d5a2e771 --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/CleanupDB8Test_gold @@ -0,0 +1,8 @@ +Loading mirrors, local repos and snapshots... +Loading list of all packages... +Deleting unreferenced packages (3)... +Building list of files referenced by packages... +Building list of files in package pool... +Deleting unreferenced files (5)... +Disk space freed: 37.04 KiB... +Compacting database... diff --git a/src/github.com/smira/aptly/system/t08_db/RecoverDB1Test_gold b/src/github.com/smira/aptly/system/t08_db/RecoverDB1Test_gold new file mode 100644 index 00000000..f5e3851c --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/RecoverDB1Test_gold @@ -0,0 +1 @@ +Recovering database... diff --git a/src/github.com/smira/aptly/system/t08_db/RecoverDB2Test_gold b/src/github.com/smira/aptly/system/t08_db/RecoverDB2Test_gold new file mode 100644 index 00000000..f5e3851c --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/RecoverDB2Test_gold @@ -0,0 +1 @@ +Recovering database... diff --git a/src/github.com/smira/aptly/system/t08_db/RecoverDB2Test_mirror_list b/src/github.com/smira/aptly/system/t08_db/RecoverDB2Test_mirror_list new file mode 100644 index 00000000..115473ba --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/RecoverDB2Test_mirror_list @@ -0,0 +1,15 @@ +List of mirrors: + * [gnuplot-maverick-src]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick [src] + * [gnuplot-maverick]: http://ppa.launchpad.net/gladky-anton/gnuplot/ubuntu/ maverick + * [wheezy-backports-src]: http://mirror.yandex.ru/debian/ wheezy-backports [src] + * [wheezy-backports]: http://mirror.yandex.ru/debian/ wheezy-backports + * [wheezy-contrib-src]: http://mirror.yandex.ru/debian/ wheezy [src] + * [wheezy-contrib]: http://mirror.yandex.ru/debian/ wheezy + * [wheezy-main-src]: http://mirror.yandex.ru/debian/ wheezy [src] + * [wheezy-main]: http://mirror.yandex.ru/debian/ wheezy + * [wheezy-non-free-src]: http://mirror.yandex.ru/debian/ wheezy [src] + * [wheezy-non-free]: http://mirror.yandex.ru/debian/ wheezy + * [wheezy-updates-src]: http://mirror.yandex.ru/debian/ wheezy-updates [src] + * [wheezy-updates]: http://mirror.yandex.ru/debian/ wheezy-updates + +To get more information about mirror, run `aptly mirror show `. diff --git a/src/github.com/smira/aptly/system/t08_db/__init__.py b/src/github.com/smira/aptly/system/t08_db/__init__.py new file mode 100644 index 00000000..8e1d52bb --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/__init__.py @@ -0,0 +1,6 @@ +""" +Testing DB operations +""" + +from .cleanup import * +from .recover import * diff --git a/src/github.com/smira/aptly/system/t08_db/cleanup.py b/src/github.com/smira/aptly/system/t08_db/cleanup.py new file mode 100644 index 00000000..0003d16e --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/cleanup.py @@ -0,0 +1,94 @@ +from lib import BaseTest + + +class CleanupDB1Test(BaseTest): + """ + cleanup db: no DB + """ + runCmd = "aptly db cleanup" + + +class CleanupDB2Test(BaseTest): + """ + cleanup db: deleting packages when mirrors are missing + """ + fixtureDB = True + fixtureCmds = [ + "aptly mirror drop wheezy-main-src", + "aptly mirror drop wheezy-main", + "aptly mirror drop wheezy-contrib", + ] + runCmd = "aptly db cleanup" + + +class CleanupDB3Test(BaseTest): + """ + cleanup db: deleting packages and files + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly mirror drop gnuplot-maverick-src", + "aptly mirror drop gnuplot-maverick", + ] + runCmd = "aptly db cleanup" + + +class CleanupDB4Test(BaseTest): + """ + cleanup db: deleting a mirror, but still referenced by snapshot + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly snapshot create gnuplot from mirror gnuplot-maverick", + "aptly mirror drop -force gnuplot-maverick", + ] + runCmd = "aptly db cleanup" + + +class CleanupDB5Test(BaseTest): + """ + cleanup db: create/delete snapshot, drop mirror + """ + fixtureDB = True + fixturePoolCopy = True + fixtureCmds = [ + "aptly mirror drop gnuplot-maverick-src", + "aptly snapshot create gnuplot from mirror gnuplot-maverick", + "aptly snapshot drop gnuplot", + "aptly mirror drop gnuplot-maverick", + ] + runCmd = "aptly db cleanup" + + +class CleanupDB6Test(BaseTest): + """ + cleanup db: db is full + """ + fixtureDB = True + fixturePoolCopy = True + runCmd = "aptly db cleanup" + + +class CleanupDB7Test(BaseTest): + """ + cleanup db: local repos + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + ] + runCmd = "aptly db cleanup" + + +class CleanupDB8Test(BaseTest): + """ + cleanup db: local repos dropped + """ + fixtureCmds = [ + "aptly repo create local-repo", + "aptly repo add local-repo ${files}", + "aptly repo drop local-repo", + ] + runCmd = "aptly db cleanup" diff --git a/src/github.com/smira/aptly/system/t08_db/recover.py b/src/github.com/smira/aptly/system/t08_db/recover.py new file mode 100644 index 00000000..c78c7798 --- /dev/null +++ b/src/github.com/smira/aptly/system/t08_db/recover.py @@ -0,0 +1,25 @@ +from lib import BaseTest + + +class RecoverDB1Test(BaseTest): + """ + recover db: no DB + """ + runCmd = "aptly db recover" + + +class RecoverDB2Test(BaseTest): + """ + recover db: without CURRENT files + """ + fixtureDB = True + runCmd = "aptly db recover" + + def prepare(self): + super(RecoverDB2Test, self).prepare() + + self.delete_file("db/CURRENT") + + def check(self): + self.check_output() + self.check_cmd_output("aptly mirror list", "mirror_list") diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo10Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo10Test_gold new file mode 100644 index 00000000..1897e606 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo10Test_gold @@ -0,0 +1,2 @@ +Loading packages... +[+] pyspi_0.6.1-1.3_source added diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo10Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo10Test_repo_show new file mode 100644 index 00000000..7b2c2599 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo10Test_repo_show @@ -0,0 +1,9 @@ +Name: repo10 +Comment: Repo10 +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo1Test_gold new file mode 100644 index 00000000..d08ab1e1 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo1Test_gold @@ -0,0 +1,2 @@ +Loading packages... +[+] libboost-program-options-dev_1.49.0.1_i386 added diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo1Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo1Test_repo_show new file mode 100644 index 00000000..e639adb9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo1Test_repo_show @@ -0,0 +1,7 @@ +Name: repo1 +Comment: Repo1 +Default Distribution: squeeze +Default Component: main +Number of packages: 1 +Packages: + libboost-program-options-dev_1.49.0.1_i386 diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo2Test_gold new file mode 100644 index 00000000..16574a08 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo2Test_gold @@ -0,0 +1,3 @@ +Loading packages... +[+] pyspi_0.6.1-1.4_source added +[+] pyspi_0.6.1-1.3_source added diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo2Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo2Test_repo_show new file mode 100644 index 00000000..2a71d953 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo2Test_repo_show @@ -0,0 +1,8 @@ +Name: repo2 +Comment: Repo2 +Default Distribution: squeeze +Default Component: main +Number of packages: 2 +Packages: + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo3Test_gold new file mode 100644 index 00000000..f52ec7eb --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo3Test_gold @@ -0,0 +1,4 @@ +Loading packages... +[+] libboost-program-options-dev_1.49.0.1_i386 added +[+] pyspi_0.6.1-1.4_source added +[+] pyspi_0.6.1-1.3_source added diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo3Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo3Test_repo_show new file mode 100644 index 00000000..b2ad2a14 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo3Test_repo_show @@ -0,0 +1,9 @@ +Name: repo3 +Comment: Repo3 +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo4Test_gold new file mode 100644 index 00000000..fc99dc82 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo4Test_gold @@ -0,0 +1,3 @@ +Loading packages... +[+] libboost-program-options-dev_1.49.0.1_i386 added +[+] pyspi_0.6.1-1.3_source added diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo4Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo4Test_repo_show new file mode 100644 index 00000000..86e4e292 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo4Test_repo_show @@ -0,0 +1,8 @@ +Name: repo4 +Comment: Repo4 +Default Distribution: squeeze +Default Component: main +Number of packages: 2 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo5Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo5Test_gold new file mode 100644 index 00000000..cd36b8a3 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo5Test_gold @@ -0,0 +1,2 @@ +Loading packages... +[!] Unable to import file /02/03/pyspi_0.6.1-1.3.diff.gz into pool: open /02/03/pyspi_0.6.1-1.3.diff.gz: no such file or directory diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo5Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo5Test_repo_show new file mode 100644 index 00000000..dc2a40aa --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo5Test_repo_show @@ -0,0 +1,5 @@ +Name: repo5 +Comment: Repo5 +Default Distribution: squeeze +Default Component: main +Number of packages: 0 diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo6Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo6Test_gold new file mode 100644 index 00000000..d198de1f --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo6Test_gold @@ -0,0 +1,2 @@ +Loading packages... +[!] Unable to process no-such-file: stat no-such-file: no such file or directory diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo7Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo7Test_gold new file mode 100644 index 00000000..c589daef --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo7Test_gold @@ -0,0 +1 @@ +ERROR: unable to add: local repo with name repo7 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test/pyspi_0.6.1-1.3.conflict.dsc b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test/pyspi_0.6.1-1.3.conflict.dsc new file mode 100644 index 00000000..21a67a86 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test/pyspi_0.6.1-1.3.conflict.dsc @@ -0,0 +1,12 @@ +Format: 1.0 +Source: pyspi +Binary: python-at-spi +Architecture: any +Version: 0.6.1-1.3 +Maintainer: Jose Carlos Garcia Sogo +Homepage: http://people.redhat.com/zcerza/dogtail +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.tribulaciones.org/srv/svn/pyspi/trunk +Build-Depends: debhelper (>= 5), cdbs, libatspi-dev, python-pyrex, python-support (>= 0.4), python-all-dev, libx11-dev +Files: + d41d8cd98f00b204e9800998ecf8427e 0 pyspi_0.6.1.orig.tar.gz diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test/pyspi_0.6.1.orig.tar.gz b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test/pyspi_0.6.1.orig.tar.gz new file mode 100644 index 00000000..e69de29b diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test_gold new file mode 100644 index 00000000..d4342f06 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test_gold @@ -0,0 +1,2 @@ +Loading packages... +[!] Unable to save package pyspi_0.6.1-1.3_source: unable to save: pyspi_0.6.1-1.3_source, conflict with existing packge diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test_repo_show new file mode 100644 index 00000000..98331aa1 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo8Test_repo_show @@ -0,0 +1,7 @@ +Name: repo8 +Comment: Repo8 +Default Distribution: squeeze +Default Component: main +Number of packages: 1 +Packages: + pyspi_0.6.1-1.3_source diff --git a/src/github.com/smira/aptly/system/t09_repo/AddRepo9Test_gold b/src/github.com/smira/aptly/system/t09_repo/AddRepo9Test_gold new file mode 100644 index 00000000..a6c11ac5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/AddRepo9Test_gold @@ -0,0 +1,2 @@ +Loading packages... +[!] Unable to import file /pyspi_0.6.1.orig.tar.gz into pool: unable to import into pool: file ${HOME}/.aptly/pool/de/f3/pyspi_0.6.1.orig.tar.gz already exists diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_gold new file mode 100644 index 00000000..aaa300ff --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[o] libboost-program-options-dev_1.49.0.1_i386 copied +[o] pyspi_0.6.1-1.4_source copied \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_repo1_show b/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_repo1_show new file mode 100644 index 00000000..befd722f --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_repo1_show @@ -0,0 +1,9 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_repo2_show b/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_repo2_show new file mode 100644 index 00000000..46be9461 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo1Test_repo2_show @@ -0,0 +1,8 @@ +Name: repo2 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 2 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_gold new file mode 100644 index 00000000..aaa300ff --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[o] libboost-program-options-dev_1.49.0.1_i386 copied +[o] pyspi_0.6.1-1.4_source copied \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_repo1_show b/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_repo1_show new file mode 100644 index 00000000..befd722f --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_repo1_show @@ -0,0 +1,9 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_repo2_show b/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_repo2_show new file mode 100644 index 00000000..46be9461 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo2Test_repo2_show @@ -0,0 +1,8 @@ +Name: repo2 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 2 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo3Test_gold new file mode 100644 index 00000000..0c767403 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo3Test_gold @@ -0,0 +1,3 @@ + +ERROR: unable to determine list of architectures, please specify explicitly +Loading packages... \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_gold new file mode 100644 index 00000000..81f87de1 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_gold @@ -0,0 +1,6 @@ + + +Changes not saved, as dry run has been requested. +Loading packages... +[o] libboost-program-options-dev_1.49.0.1_i386 copied +[o] pyspi_0.6.1-1.4_source copied \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_repo1_show b/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_repo1_show new file mode 100644 index 00000000..befd722f --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_repo1_show @@ -0,0 +1,9 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_repo2_show b/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_repo2_show new file mode 100644 index 00000000..3ac51462 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo4Test_repo2_show @@ -0,0 +1,6 @@ +Name: repo2 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 0 +Packages: diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo5Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo5Test_gold new file mode 100644 index 00000000..104aa34d --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo5Test_gold @@ -0,0 +1,3 @@ + +ERROR: unable to copy: unable to parse dependency: pyspi >> 0.6.1-1.3) +Loading packages... \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo6Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo6Test_gold new file mode 100644 index 00000000..0eb99e85 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo6Test_gold @@ -0,0 +1 @@ +ERROR: unable to copy: source and destination are the same diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo7Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo7Test_gold new file mode 100644 index 00000000..bc525469 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo7Test_gold @@ -0,0 +1 @@ +ERROR: unable to copy: local repo with name repo2 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/CopyRepo8Test_gold b/src/github.com/smira/aptly/system/t09_repo/CopyRepo8Test_gold new file mode 100644 index 00000000..7d1f8136 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CopyRepo8Test_gold @@ -0,0 +1 @@ +ERROR: unable to copy: local repo with name repo1 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/CreateRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/CreateRepo1Test_gold new file mode 100644 index 00000000..941ce9ec --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CreateRepo1Test_gold @@ -0,0 +1,3 @@ + +Local repo [repo1] successfully added. +You can run 'aptly repo add repo1 ...' to add packages to repository. diff --git a/src/github.com/smira/aptly/system/t09_repo/CreateRepo1Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/CreateRepo1Test_repo_show new file mode 100644 index 00000000..29af285b --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CreateRepo1Test_repo_show @@ -0,0 +1,5 @@ +Name: repo1 +Comment: +Default Distribution: +Default Component: main +Number of packages: 0 diff --git a/src/github.com/smira/aptly/system/t09_repo/CreateRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/CreateRepo2Test_gold new file mode 100644 index 00000000..b5933ca7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CreateRepo2Test_gold @@ -0,0 +1,3 @@ + +Local repo [repo2]: Repository2 successfully added. +You can run 'aptly repo add repo2 ...' to add packages to repository. diff --git a/src/github.com/smira/aptly/system/t09_repo/CreateRepo2Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/CreateRepo2Test_repo_show new file mode 100644 index 00000000..8ef8c898 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CreateRepo2Test_repo_show @@ -0,0 +1,5 @@ +Name: repo2 +Comment: Repository2 +Default Distribution: maverick +Default Component: non-free +Number of packages: 0 diff --git a/src/github.com/smira/aptly/system/t09_repo/CreateRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/CreateRepo3Test_gold new file mode 100644 index 00000000..3ad700be --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/CreateRepo3Test_gold @@ -0,0 +1 @@ +ERROR: unable to add local repo: local repo with name repo3 already exists diff --git a/src/github.com/smira/aptly/system/t09_repo/DropRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/DropRepo1Test_gold new file mode 100644 index 00000000..eba27ffe --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/DropRepo1Test_gold @@ -0,0 +1 @@ +Local repo `repo1` has been removed. diff --git a/src/github.com/smira/aptly/system/t09_repo/DropRepo1Test_repo-show b/src/github.com/smira/aptly/system/t09_repo/DropRepo1Test_repo-show new file mode 100644 index 00000000..01631ec5 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/DropRepo1Test_repo-show @@ -0,0 +1 @@ +ERROR: unable to show: local repo with name repo1 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/DropRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/DropRepo2Test_gold new file mode 100644 index 00000000..49fd5f44 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/DropRepo2Test_gold @@ -0,0 +1,3 @@ +Local repo `repo2` was used to create following snapshots: + * [local]: Snapshot from local repo [repo2] +ERROR: won't delete local repo with snapshots, use -force to override diff --git a/src/github.com/smira/aptly/system/t09_repo/DropRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/DropRepo3Test_gold new file mode 100644 index 00000000..db9e12e9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/DropRepo3Test_gold @@ -0,0 +1 @@ +Local repo `repo3` has been removed. diff --git a/src/github.com/smira/aptly/system/t09_repo/DropRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/DropRepo4Test_gold new file mode 100644 index 00000000..ffa95b2c --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/DropRepo4Test_gold @@ -0,0 +1 @@ +ERROR: unable to drop: local repo with name repo4 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/DropRepo5Test_gold b/src/github.com/smira/aptly/system/t09_repo/DropRepo5Test_gold new file mode 100644 index 00000000..beff54c3 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/DropRepo5Test_gold @@ -0,0 +1,3 @@ +Local repo `repo5` is published currently: + * ./squeeze (main) [i386, source] publishes [repo5] +ERROR: unable to drop: local repo is published diff --git a/src/github.com/smira/aptly/system/t09_repo/EditRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/EditRepo1Test_gold new file mode 100644 index 00000000..38fe2835 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/EditRepo1Test_gold @@ -0,0 +1 @@ +Local repo [repo1]: Lala successfully updated. diff --git a/src/github.com/smira/aptly/system/t09_repo/EditRepo1Test_repo-show b/src/github.com/smira/aptly/system/t09_repo/EditRepo1Test_repo-show new file mode 100644 index 00000000..10265f58 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/EditRepo1Test_repo-show @@ -0,0 +1,5 @@ +Name: repo1 +Comment: Lala +Default Distribution: +Default Component: main +Number of packages: 0 diff --git a/src/github.com/smira/aptly/system/t09_repo/EditRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/EditRepo2Test_gold new file mode 100644 index 00000000..cda99d7c --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/EditRepo2Test_gold @@ -0,0 +1 @@ +Local repo [repo2]: Lala successfully updated. diff --git a/src/github.com/smira/aptly/system/t09_repo/EditRepo2Test_repo-show b/src/github.com/smira/aptly/system/t09_repo/EditRepo2Test_repo-show new file mode 100644 index 00000000..3b1ad4a7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/EditRepo2Test_repo-show @@ -0,0 +1,5 @@ +Name: repo2 +Comment: Lala +Default Distribution: wheezy +Default Component: contrib +Number of packages: 0 diff --git a/src/github.com/smira/aptly/system/t09_repo/EditRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/EditRepo3Test_gold new file mode 100644 index 00000000..3d837834 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/EditRepo3Test_gold @@ -0,0 +1 @@ +ERROR: unable to edit: local repo with name repo3 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo1Test_gold new file mode 100644 index 00000000..c4fa29ca --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo1Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[o] nginx_1.2.1-2.2+wheezy2_all imported +[o] unpaper_0.4.2-1_amd64 imported \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo1Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/ImportRepo1Test_repo_show new file mode 100644 index 00000000..761f8689 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo1Test_repo_show @@ -0,0 +1,11 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 5 +Packages: + nginx_1.2.1-2.2+wheezy2_all + unpaper_0.4.2-1_amd64 + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo2Test_gold new file mode 100644 index 00000000..cf233081 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo2Test_gold @@ -0,0 +1,19 @@ + +Loading packages... +[o] dpkg_1.16.12_i386 imported +[o] gcc-4.7-base_4.7.2-5_amd64 imported +[o] gcc-4.7-base_4.7.2-5_i386 imported +[o] libbz2-1.0_1.0.6-4_i386 imported +[o] libc-bin_2.13-38+deb7u1_amd64 imported +[o] libc-bin_2.13-38+deb7u1_i386 imported +[o] libc6_2.13-38+deb7u1_amd64 imported +[o] libc6_2.13-38+deb7u1_i386 imported +[o] libgcc1_1:4.7.2-5_amd64 imported +[o] libgcc1_1:4.7.2-5_i386 imported +[o] liblzma5_5.1.1alpha+20120614-2_i386 imported +[o] libselinux1_2.1.9-5_i386 imported +[o] multiarch-support_2.13-38+deb7u1_amd64 imported +[o] multiarch-support_2.13-38+deb7u1_i386 imported +[o] tar_1.26+dfsg-0.1_i386 imported +[o] userinfo_2.2-3_amd64 imported +[o] zlib1g_1:1.2.7.dfsg-13_i386 imported \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo2Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/ImportRepo2Test_repo_show new file mode 100644 index 00000000..379d95ef --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo2Test_repo_show @@ -0,0 +1,26 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 20 +Packages: + gcc-4.7-base_4.7.2-5_amd64 + libc-bin_2.13-38+deb7u1_amd64 + libc6_2.13-38+deb7u1_amd64 + libgcc1_1:4.7.2-5_amd64 + multiarch-support_2.13-38+deb7u1_amd64 + userinfo_2.2-3_amd64 + dpkg_1.16.12_i386 + gcc-4.7-base_4.7.2-5_i386 + libboost-program-options-dev_1.49.0.1_i386 + libbz2-1.0_1.0.6-4_i386 + libc-bin_2.13-38+deb7u1_i386 + libc6_2.13-38+deb7u1_i386 + libgcc1_1:4.7.2-5_i386 + liblzma5_5.1.1alpha+20120614-2_i386 + libselinux1_2.1.9-5_i386 + multiarch-support_2.13-38+deb7u1_i386 + tar_1.26+dfsg-0.1_i386 + zlib1g_1:1.2.7.dfsg-13_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo3Test_gold new file mode 100644 index 00000000..0c767403 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo3Test_gold @@ -0,0 +1,3 @@ + +ERROR: unable to determine list of architectures, please specify explicitly +Loading packages... \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo4Test_gold new file mode 100644 index 00000000..85290c3e --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo4Test_gold @@ -0,0 +1,8 @@ + + +Changes not saved, as dry run has been requested. +Loading packages... +[o] redeclipse-dbg_1.2-3_amd64 imported +[o] redeclipse-dbg_1.2-3_i386 imported +[o] redeclipse_1.2-3_amd64 imported +[o] redeclipse_1.2-3_i386 imported \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo4Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/ImportRepo4Test_repo_show new file mode 100644 index 00000000..856d5638 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo4Test_repo_show @@ -0,0 +1,6 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 0 +Packages: diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo5Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo5Test_gold new file mode 100644 index 00000000..ebf8bd64 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo5Test_gold @@ -0,0 +1,3 @@ + +ERROR: unable to import: unable to parse dependency: pyspi >> 0.6.1-1.3) +Loading packages... \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo6Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo6Test_gold new file mode 100644 index 00000000..c861cbfe --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo6Test_gold @@ -0,0 +1 @@ +ERROR: unable to import: mirror not updated diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo7Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo7Test_gold new file mode 100644 index 00000000..320b873e --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo7Test_gold @@ -0,0 +1 @@ +ERROR: unable to import: local repo with name repo1 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/ImportRepo8Test_gold b/src/github.com/smira/aptly/system/t09_repo/ImportRepo8Test_gold new file mode 100644 index 00000000..02e7161c --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ImportRepo8Test_gold @@ -0,0 +1 @@ +ERROR: unable to import: mirror with name wheezy-main not found diff --git a/src/github.com/smira/aptly/system/t09_repo/ListRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/ListRepo1Test_gold new file mode 100644 index 00000000..cadf7747 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ListRepo1Test_gold @@ -0,0 +1 @@ +No local repositories found, create one with `aptly repo create ...`. diff --git a/src/github.com/smira/aptly/system/t09_repo/ListRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/ListRepo2Test_gold new file mode 100644 index 00000000..9d8914c2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ListRepo2Test_gold @@ -0,0 +1,6 @@ +List of local repos: + * [repo1] (packages: 0) + * [repo2]: Cool2 (packages: 0) + * [repo3]: Cool3 (packages: 0) + +To get more information about local repository, run `aptly repo show `. diff --git a/src/github.com/smira/aptly/system/t09_repo/ListRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/ListRepo3Test_gold new file mode 100644 index 00000000..e69de29b diff --git a/src/github.com/smira/aptly/system/t09_repo/ListRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/ListRepo4Test_gold new file mode 100644 index 00000000..3fc9dcf4 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ListRepo4Test_gold @@ -0,0 +1,3 @@ +repo1 +repo2 +repo3 diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_gold new file mode 100644 index 00000000..ebdba53e --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[o] libboost-program-options-dev_1.49.0.1_i386 moved +[o] pyspi_0.6.1-1.4_source moved \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_repo1_show b/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_repo1_show new file mode 100644 index 00000000..4f96e299 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_repo1_show @@ -0,0 +1,7 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 1 +Packages: + pyspi_0.6.1-1.3_source diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_repo2_show b/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_repo2_show new file mode 100644 index 00000000..46be9461 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo1Test_repo2_show @@ -0,0 +1,8 @@ +Name: repo2 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 2 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_gold new file mode 100644 index 00000000..ebdba53e --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[o] libboost-program-options-dev_1.49.0.1_i386 moved +[o] pyspi_0.6.1-1.4_source moved \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_repo1_show b/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_repo1_show new file mode 100644 index 00000000..4f96e299 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_repo1_show @@ -0,0 +1,7 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 1 +Packages: + pyspi_0.6.1-1.3_source diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_repo2_show b/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_repo2_show new file mode 100644 index 00000000..46be9461 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo2Test_repo2_show @@ -0,0 +1,8 @@ +Name: repo2 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 2 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo3Test_gold new file mode 100644 index 00000000..0c767403 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo3Test_gold @@ -0,0 +1,3 @@ + +ERROR: unable to determine list of architectures, please specify explicitly +Loading packages... \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_gold new file mode 100644 index 00000000..4ecfb126 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_gold @@ -0,0 +1,6 @@ + + +Changes not saved, as dry run has been requested. +Loading packages... +[o] libboost-program-options-dev_1.49.0.1_i386 moved +[o] pyspi_0.6.1-1.4_source moved \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_repo1_show b/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_repo1_show new file mode 100644 index 00000000..befd722f --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_repo1_show @@ -0,0 +1,9 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_repo2_show b/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_repo2_show new file mode 100644 index 00000000..3ac51462 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo4Test_repo2_show @@ -0,0 +1,6 @@ +Name: repo2 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 0 +Packages: diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo5Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo5Test_gold new file mode 100644 index 00000000..b6e1e736 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo5Test_gold @@ -0,0 +1,3 @@ + +ERROR: unable to move: unable to parse dependency: pyspi >> 0.6.1-1.3) +Loading packages... \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo6Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo6Test_gold new file mode 100644 index 00000000..403c7cff --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo6Test_gold @@ -0,0 +1 @@ +ERROR: unable to move: source and destination are the same diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo7Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo7Test_gold new file mode 100644 index 00000000..f3600da9 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo7Test_gold @@ -0,0 +1 @@ +ERROR: unable to move: local repo with name repo2 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/MoveRepo8Test_gold b/src/github.com/smira/aptly/system/t09_repo/MoveRepo8Test_gold new file mode 100644 index 00000000..399aef54 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/MoveRepo8Test_gold @@ -0,0 +1 @@ +ERROR: unable to move: local repo with name repo1 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo1Test_gold new file mode 100644 index 00000000..5f2155af --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo1Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[-] pyspi_0.6.1-1.3_source removed +[-] pyspi_0.6.1-1.4_source removed \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo1Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo1Test_repo_show new file mode 100644 index 00000000..402c9357 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo1Test_repo_show @@ -0,0 +1,7 @@ +Name: local-repo +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 1 +Packages: + libboost-program-options-dev_1.49.0.1_i386 diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo2Test_gold new file mode 100644 index 00000000..c57440f7 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo2Test_gold @@ -0,0 +1,4 @@ + +Loading packages... +[-] libboost-program-options-dev_1.49.0.1_i386 removed +[-] pyspi_0.6.1-1.4_source removed \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo2Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo2Test_repo_show new file mode 100644 index 00000000..f5d2f977 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo2Test_repo_show @@ -0,0 +1,7 @@ +Name: local-repo +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 1 +Packages: + pyspi_0.6.1-1.3_source diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo3Test_gold new file mode 100644 index 00000000..69be2a97 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo3Test_gold @@ -0,0 +1 @@ +ERROR: unable to remove: local repo with name local-repo not found diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo4Test_gold b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo4Test_gold new file mode 100644 index 00000000..a4c1b93a --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo4Test_gold @@ -0,0 +1,6 @@ + + +Changes not saved, as dry run has been requested. +Loading packages... +[-] libboost-program-options-dev_1.49.0.1_i386 removed +[-] pyspi_0.6.1-1.4_source removed \ No newline at end of file diff --git a/src/github.com/smira/aptly/system/t09_repo/RemoveRepo4Test_repo_show b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo4Test_repo_show new file mode 100644 index 00000000..578b176b --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/RemoveRepo4Test_repo_show @@ -0,0 +1,9 @@ +Name: local-repo +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/ShowRepo1Test_gold b/src/github.com/smira/aptly/system/t09_repo/ShowRepo1Test_gold new file mode 100644 index 00000000..7ba8039a --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ShowRepo1Test_gold @@ -0,0 +1,5 @@ +Name: repo1 +Comment: Cool +Default Distribution: squeeze +Default Component: main +Number of packages: 0 diff --git a/src/github.com/smira/aptly/system/t09_repo/ShowRepo2Test_gold b/src/github.com/smira/aptly/system/t09_repo/ShowRepo2Test_gold new file mode 100644 index 00000000..f6a52f90 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ShowRepo2Test_gold @@ -0,0 +1,9 @@ +Name: repo2 +Comment: Cool +Default Distribution: wheezy +Default Component: contrib +Number of packages: 3 +Packages: + libboost-program-options-dev_1.49.0.1_i386 + pyspi_0.6.1-1.3_source + pyspi_0.6.1-1.4_source diff --git a/src/github.com/smira/aptly/system/t09_repo/ShowRepo3Test_gold b/src/github.com/smira/aptly/system/t09_repo/ShowRepo3Test_gold new file mode 100644 index 00000000..28d2a94b --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/ShowRepo3Test_gold @@ -0,0 +1 @@ +ERROR: unable to show: local repo with name repo3 not found diff --git a/src/github.com/smira/aptly/system/t09_repo/__init__.py b/src/github.com/smira/aptly/system/t09_repo/__init__.py new file mode 100644 index 00000000..fb029c46 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/__init__.py @@ -0,0 +1,14 @@ +""" +Testing local repo management +""" + +from .add import * +from .copy import * +from .create import * +from .drop import * +from .edit import * +from .cmdimport import * +from .list import * +from .move import * +from .remove import * +from .show import * diff --git a/src/github.com/smira/aptly/system/t09_repo/add.py b/src/github.com/smira/aptly/system/t09_repo/add.py new file mode 100644 index 00000000..436d3063 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/add.py @@ -0,0 +1,213 @@ +import tempfile +import shutil +import os +import inspect +from lib import BaseTest + + +class AddRepo1Test(BaseTest): + """ + add package to local repo: .deb file + """ + fixtureCmds = [ + "aptly repo create -comment=Repo1 -distribution=squeeze repo1", + ] + runCmd = "aptly repo add repo1 ${files}/libboost-program-options-dev_1.49.0.1_i386.deb" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo_show") + + # check pool + self.check_exists('pool/00/35/libboost-program-options-dev_1.49.0.1_i386.deb') + + +class AddRepo2Test(BaseTest): + """ + add package to local repo: .dsc file + """ + fixtureCmds = [ + "aptly repo create -comment=Repo2 -distribution=squeeze repo2", + ] + runCmd = "aptly repo add repo2 ${files}/pyspi_0.6.1-1.3.dsc ${files}/pyspi-0.6.1-1.3.stripped.dsc" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo2", "repo_show") + + # check pool + self.check_exists('pool/22/ff/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('pool/b7/2c/pyspi_0.6.1-1.3.dsc') + self.check_exists('pool/de/f3/pyspi_0.6.1.orig.tar.gz') + self.check_exists('pool/2f/5b/pyspi-0.6.1-1.3.stripped.dsc') + + +class AddRepo3Test(BaseTest): + """ + add package to local repo: directory + """ + fixtureCmds = [ + "aptly repo create -comment=Repo3 -distribution=squeeze repo3", + ] + runCmd = "aptly repo add repo3 ${files}" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo3", "repo_show") + + # check pool + self.check_exists('pool/00/35/libboost-program-options-dev_1.49.0.1_i386.deb') + self.check_exists('pool/22/ff/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('pool/b7/2c/pyspi_0.6.1-1.3.dsc') + self.check_exists('pool/de/f3/pyspi_0.6.1.orig.tar.gz') + self.check_exists('pool/2f/5b/pyspi-0.6.1-1.3.stripped.dsc') + + +class AddRepo4Test(BaseTest): + """ + add package to local repo: complex directory + remove + """ + fixtureCmds = [ + "aptly repo create -comment=Repo4 -distribution=squeeze repo4", + ] + runCmd = "aptly repo add -remove-files repo4 " + + def prepare(self): + super(AddRepo4Test, self).prepare() + + self.tempSrcDir = tempfile.mkdtemp() + os.makedirs(os.path.join(self.tempSrcDir, "01"), 0755) + os.makedirs(os.path.join(self.tempSrcDir, "02", "03"), 0755) + + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "libboost-program-options-dev_1.49.0.1_i386.deb"), + os.path.join(self.tempSrcDir, "01")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "pyspi_0.6.1-1.3.dsc"), + os.path.join(self.tempSrcDir, "02", "03")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "pyspi_0.6.1.orig.tar.gz"), + os.path.join(self.tempSrcDir, "02", "03")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "pyspi_0.6.1-1.3.diff.gz"), + os.path.join(self.tempSrcDir, "02", "03")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "pyspi_0.6.1-1.3.diff.gz"), + os.path.join(self.tempSrcDir, "02", "03", "other.file")) + + self.runCmd += self.tempSrcDir + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo4", "repo_show") + + # check pool + self.check_exists('pool/00/35/libboost-program-options-dev_1.49.0.1_i386.deb') + self.check_exists('pool/22/ff/pyspi_0.6.1-1.3.diff.gz') + self.check_exists('pool/b7/2c/pyspi_0.6.1-1.3.dsc') + self.check_exists('pool/de/f3/pyspi_0.6.1.orig.tar.gz') + + path = os.path.join(self.tempSrcDir, "01", "libboost-program-options-dev_1.49.0.1_i386.deb") + if os.path.exists(path): + raise Exception("path %s shouldn't exist" % (path, )) + path = os.path.join(self.tempSrcDir, "02", "03", "pyspi_0.6.1.orig.tar.gz") + if os.path.exists(path): + raise Exception("path %s shouldn't exist" % (path, )) + + path = os.path.join(self.tempSrcDir, "02", "03", "other.file") + if not os.path.exists(path): + raise Exception("path %s doesn't exist" % (path, )) + + shutil.rmtree(self.tempSrcDir) + + +class AddRepo5Test(BaseTest): + """ + add package to local repo: some source files missing + """ + fixtureCmds = [ + "aptly repo create -comment=Repo5 -distribution=squeeze repo5", + ] + runCmd = "aptly repo add repo5 " + outputMatchPrepare = lambda self, s: s.replace(self.tempSrcDir, "") + + def prepare(self): + super(AddRepo5Test, self).prepare() + + self.tempSrcDir = tempfile.mkdtemp() + os.makedirs(os.path.join(self.tempSrcDir, "02", "03"), 0755) + + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "pyspi_0.6.1-1.3.dsc"), + os.path.join(self.tempSrcDir, "02", "03")) + shutil.copy(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files", "pyspi_0.6.1.orig.tar.gz"), + os.path.join(self.tempSrcDir, "02", "03")) + + self.runCmd += self.tempSrcDir + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show repo5", "repo_show") + + shutil.rmtree(self.tempSrcDir) + + +class AddRepo6Test(BaseTest): + """ + add package to local repo: missing file + """ + fixtureCmds = [ + "aptly repo create -comment=Repo6 -distribution=squeeze repo6", + ] + runCmd = "aptly repo add repo6 no-such-file" + + +class AddRepo7Test(BaseTest): + """ + add package to local repo: missing repo + """ + runCmd = "aptly repo add repo7 ${files}" + expectedCode = 1 + + +class AddRepo8Test(BaseTest): + """ + add package to local repo: conflict in packages + """ + fixtureCmds = [ + "aptly repo create -comment=Repo8 -distribution=squeeze repo8", + "aptly repo add repo8 ${files}/pyspi_0.6.1-1.3.dsc", + ] + runCmd = "aptly repo add repo8 ${testfiles}/pyspi_0.6.1-1.3.conflict.dsc" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo8", "repo_show") + + +class AddRepo9Test(BaseTest): + """ + add package to local repo: conflict in files + """ + fixtureCmds = [ + "aptly repo create -comment=Repo9 -distribution=squeeze repo9", + ] + runCmd = "aptly repo add repo9 ${files}/pyspi_0.6.1-1.3.dsc" + outputMatchPrepare = lambda self, s: s.replace(os.path.join(os.path.dirname(inspect.getsourcefile(BaseTest)), "files"), "") + gold_processor = BaseTest.expand_environ + + def prepare(self): + super(AddRepo9Test, self).prepare() + + os.makedirs(os.path.join(os.environ["HOME"], ".aptly", "pool/de/f3/")) + with open(os.path.join(os.environ["HOME"], ".aptly", "pool/de/f3/pyspi_0.6.1.orig.tar.gz"), "w") as f: + f.write("abcd") + + +class AddRepo10Test(BaseTest): + """ + add package to local repo: double import + """ + fixtureCmds = [ + "aptly repo create -comment=Repo10 -distribution=squeeze repo10", + "aptly repo add repo10 ${files}", + ] + runCmd = "aptly repo add repo10 ${files}/pyspi_0.6.1-1.3.dsc" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo10", "repo_show") diff --git a/src/github.com/smira/aptly/system/t09_repo/cmdimport.py b/src/github.com/smira/aptly/system/t09_repo/cmdimport.py new file mode 100644 index 00000000..f680a13d --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/cmdimport.py @@ -0,0 +1,121 @@ +from lib import BaseTest + + +class ImportRepo1Test(BaseTest): + """ + import to local repo: simple import + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo import wheezy-main repo1 nginx unpaper_0.4.2-1_amd64" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class ImportRepo2Test(BaseTest): + """ + import to local repo: import w/deps + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly -architectures=i386,amd64 repo import -with-deps wheezy-main repo1 dpkg_1.16.12_i386 userinfo_2.2-3_amd64" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class ImportRepo3Test(BaseTest): + """ + import to local repo: simple move w/deps but w/o archs + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo import -with-deps wheezy-contrib repo1 redeclipse" + expectedCode = 1 + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class ImportRepo4Test(BaseTest): + """ + import to local repo: dry run + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly -architectures=i386,amd64 repo import -dry-run -with-deps wheezy-contrib repo1 redeclipse-dbg" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class ImportRepo5Test(BaseTest): + """ + import to local repo: wrong dep + """ + fixtureDB = True + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo import wheezy-contrib repo1 'pyspi >> 0.6.1-1.3)'" + expectedCode = 1 + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class ImportRepo6Test(BaseTest): + """ + import to local repo: non-updated mirror + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly mirror create --ignore-signatures mirror1 http://mirror.yandex.ru/debian/ wheezy", + ] + runCmd = "aptly repo import mirror1 repo1 nginx" + expectedCode = 1 + + +class ImportRepo7Test(BaseTest): + """ + import to local repo: no dst + """ + fixtureDB = True + fixtureCmds = [ + ] + runCmd = "aptly repo import wheezy-contrib repo1 nginx" + expectedCode = 1 + + +class ImportRepo8Test(BaseTest): + """ + import to local repo: no src + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo import wheezy-main repo1 pyspi" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t09_repo/copy.py b/src/github.com/smira/aptly/system/t09_repo/copy.py new file mode 100644 index 00000000..9280f61c --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/copy.py @@ -0,0 +1,126 @@ +from lib import BaseTest + + +class CopyRepo1Test(BaseTest): + """ + copy in local repo: simple copy + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo copy repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo1_show") + self.check_cmd_output("aptly repo show -with-packages repo2", "repo2_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class CopyRepo2Test(BaseTest): + """ + copy in local repo: simple copy w/deps + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly -architectures=i386,amd64 repo copy -with-deps repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo1_show") + self.check_cmd_output("aptly repo show -with-packages repo2", "repo2_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class CopyRepo3Test(BaseTest): + """ + copy in local repo: simple copy w/deps but w/o archs + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo copy -with-deps repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + expectedCode = 1 + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class CopyRepo4Test(BaseTest): + """ + copy in local repo: dry run + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo copy -dry-run repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo1_show") + self.check_cmd_output("aptly repo show -with-packages repo2", "repo2_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class CopyRepo5Test(BaseTest): + """ + copy in local repo: wrong dep + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo copy repo1 repo2 'pyspi >> 0.6.1-1.3)'" + expectedCode = 1 + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class CopyRepo6Test(BaseTest): + """ + copy in local repo: same src and dest + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo copy repo1 repo1 pyspi" + expectedCode = 1 + + +class CopyRepo7Test(BaseTest): + """ + copy in local repo: no dst + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo copy repo1 repo2 pyspi" + expectedCode = 1 + + +class CopyRepo8Test(BaseTest): + """ + copy in local repo: no src + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo2", + ] + runCmd = "aptly repo copy repo1 repo2 pyspi" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t09_repo/create.py b/src/github.com/smira/aptly/system/t09_repo/create.py new file mode 100644 index 00000000..3abd9c6f --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/create.py @@ -0,0 +1,32 @@ +from lib import BaseTest + + +class CreateRepo1Test(BaseTest): + """ + create local repo: regular repo + """ + runCmd = "aptly repo create repo1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show repo1", "repo_show") + + +class CreateRepo2Test(BaseTest): + """ + create local repo: regular repo with comment & publishing defaults + """ + runCmd = "aptly repo create -comment=Repository2 -distribution=maverick -component=non-free repo2" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show repo2", "repo_show") + + +class CreateRepo3Test(BaseTest): + """ + create local repo: duplicate name + """ + fixtureCmds = ["aptly repo create repo3"] + runCmd = "aptly repo create -comment=Repository3 repo3" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t09_repo/drop.py b/src/github.com/smira/aptly/system/t09_repo/drop.py new file mode 100644 index 00000000..f7ee4e5c --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/drop.py @@ -0,0 +1,61 @@ +from lib import BaseTest + + +class DropRepo1Test(BaseTest): + """ + drop repo: regular drop + """ + fixtureCmds = [ + "aptly repo create repo1", + ] + runCmd = "aptly repo drop repo1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show repo1", "repo-show", expected_code=1) + + +class DropRepo2Test(BaseTest): + """ + drop repo: in use by snapshots + """ + fixtureCmds = [ + "aptly repo create repo2", + "aptly repo add repo2 ${files}", + "aptly snapshot create local from repo repo2", + ] + runCmd = "aptly repo drop repo2" + expectedCode = 1 + + +class DropRepo3Test(BaseTest): + """ + drop repo: force + """ + fixtureCmds = [ + "aptly repo create repo3", + "aptly repo add repo3 ${files}", + "aptly snapshot create local from repo repo3", + ] + runCmd = "aptly repo drop --force repo3" + + +class DropRepo4Test(BaseTest): + """ + drop repo: no such repo + """ + runCmd = "aptly repo drop repo4" + expectedCode = 1 + + +class DropRepo5Test(BaseTest): + """ + drop repo: published + """ + fixtureCmds = [ + "aptly repo create repo5", + "aptly repo add repo5 ${files}", + "aptly publish repo -skip-signing -distribution=squeeze repo5", + ] + runCmd = "aptly repo drop repo5" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t09_repo/edit.py b/src/github.com/smira/aptly/system/t09_repo/edit.py new file mode 100644 index 00000000..075fcf89 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/edit.py @@ -0,0 +1,37 @@ +from lib import BaseTest + + +class EditRepo1Test(BaseTest): + """ + edit repo: change comment + """ + fixtureCmds = [ + "aptly repo create repo1", + ] + runCmd = "aptly repo edit -comment=Lala repo1" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show repo1", "repo-show") + + +class EditRepo2Test(BaseTest): + """ + edit repo: change distribution & component + """ + fixtureCmds = [ + "aptly repo create -comment=Lala -component=non-free repo2", + ] + runCmd = "aptly repo edit -distribution=wheezy -component=contrib repo2" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show repo2", "repo-show") + + +class EditRepo3Test(BaseTest): + """ + edit repo: no such repo + """ + runCmd = "aptly repo edit repo3" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t09_repo/list.py b/src/github.com/smira/aptly/system/t09_repo/list.py new file mode 100644 index 00000000..9be862a2 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/list.py @@ -0,0 +1,39 @@ +from lib import BaseTest + + +class ListRepo1Test(BaseTest): + """ + list local repos: no repos + """ + runCmd = "aptly repo list" + + +class ListRepo2Test(BaseTest): + """ + list local repo: normal + """ + fixtureCmds = [ + "aptly repo create -comment=Cool3 repo3", + "aptly repo create -comment=Cool2 repo2", + "aptly repo create repo1", + ] + runCmd = "aptly repo list" + + +class ListRepo3Test(BaseTest): + """ + list local repos: raw no repos + """ + runCmd = "aptly -raw repo list" + + +class ListRepo4Test(BaseTest): + """ + list local repo: raw normal + """ + fixtureCmds = [ + "aptly repo create -comment=Cool3 repo3", + "aptly repo create -comment=Cool2 repo2", + "aptly repo create repo1", + ] + runCmd = "aptly repo list -raw" diff --git a/src/github.com/smira/aptly/system/t09_repo/move.py b/src/github.com/smira/aptly/system/t09_repo/move.py new file mode 100644 index 00000000..301369dc --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/move.py @@ -0,0 +1,126 @@ +from lib import BaseTest + + +class MoveRepo1Test(BaseTest): + """ + move in local repo: simple move + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo move repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo1_show") + self.check_cmd_output("aptly repo show -with-packages repo2", "repo2_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class MoveRepo2Test(BaseTest): + """ + move in local repo: simple move w/deps + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly -architectures=i386,amd64 repo move -with-deps repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo1_show") + self.check_cmd_output("aptly repo show -with-packages repo2", "repo2_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class MoveRepo3Test(BaseTest): + """ + move in local repo: simple move w/deps but w/o archs + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo move -with-deps repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + expectedCode = 1 + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class MoveRepo4Test(BaseTest): + """ + move in local repo: dry run + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo move -dry-run repo1 repo2 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages repo1", "repo1_show") + self.check_cmd_output("aptly repo show -with-packages repo2", "repo2_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class MoveRepo5Test(BaseTest): + """ + move in local repo: wrong dep + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + "aptly repo create -comment=Cool -distribution=squeeze repo2", + "aptly repo add repo1 ${files}" + ] + runCmd = "aptly repo move repo1 repo2 'pyspi >> 0.6.1-1.3)'" + expectedCode = 1 + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class MoveRepo6Test(BaseTest): + """ + move in local repo: same src and dest + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo move repo1 repo1 pyspi" + expectedCode = 1 + + +class MoveRepo7Test(BaseTest): + """ + move in local repo: no dst + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo1", + ] + runCmd = "aptly repo move repo1 repo2 pyspi" + expectedCode = 1 + + +class MoveRepo8Test(BaseTest): + """ + move in local repo: no src + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze repo2", + ] + runCmd = "aptly repo move repo1 repo2 pyspi" + expectedCode = 1 diff --git a/src/github.com/smira/aptly/system/t09_repo/remove.py b/src/github.com/smira/aptly/system/t09_repo/remove.py new file mode 100644 index 00000000..0dac69d6 --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/remove.py @@ -0,0 +1,64 @@ +from lib import BaseTest + + +class RemoveRepo1Test(BaseTest): + """ + remove from local repo: as dep + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze local-repo", + "aptly repo add local-repo ${files}" + ] + runCmd = "aptly repo remove local-repo pyspi some" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages local-repo", "repo_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class RemoveRepo2Test(BaseTest): + """ + remove from local repo: as dep with version, key + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze local-repo", + "aptly repo add local-repo ${files}" + ] + runCmd = "aptly repo remove local-repo 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages local-repo", "repo_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + + +class RemoveRepo3Test(BaseTest): + """ + remove from local repo: no such repo + """ + runCmd = "aptly repo remove local-repo 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + expectedCode = 1 + + +class RemoveRepo4Test(BaseTest): + """ + remove from local repo: dry run + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=squeeze local-repo", + "aptly repo add local-repo ${files}" + ] + runCmd = "aptly repo remove -dry-run local-repo 'pyspi (>> 0.6.1-1.3)' libboost-program-options-dev_1.49.0.1_i386" + + def check(self): + self.check_output() + self.check_cmd_output("aptly repo show -with-packages local-repo", "repo_show") + + def output_processor(self, output): + return "\n".join(sorted(output.split("\n"))) + diff --git a/src/github.com/smira/aptly/system/t09_repo/show.py b/src/github.com/smira/aptly/system/t09_repo/show.py new file mode 100644 index 00000000..c275c7fc --- /dev/null +++ b/src/github.com/smira/aptly/system/t09_repo/show.py @@ -0,0 +1,28 @@ +from lib import BaseTest + + +class ShowRepo1Test(BaseTest): + """ + show local repo: regular + """ + fixtureCmds = ["aptly repo create -comment=Cool -distribution=squeeze repo1"] + runCmd = "aptly repo show repo1" + + +class ShowRepo2Test(BaseTest): + """ + show local repo: -with-packages + """ + fixtureCmds = [ + "aptly repo create -comment=Cool -distribution=wheezy -component=contrib repo2", + "aptly repo add repo2 ${files}" + ] + runCmd = "aptly repo show -with-packages repo2" + + +class ShowRepo3Test(BaseTest): + """ + show local repo: not found + """ + expectedCode = 1 + runCmd = "aptly repo show repo3" diff --git a/src/github.com/smira/aptly/utils/checksum.go b/src/github.com/smira/aptly/utils/checksum.go new file mode 100644 index 00000000..d3a9feb7 --- /dev/null +++ b/src/github.com/smira/aptly/utils/checksum.go @@ -0,0 +1,77 @@ +package utils + +import ( + "crypto/md5" + "crypto/sha1" + "crypto/sha256" + "fmt" + "hash" + "io" + "os" +) + +// ChecksumInfo represents checksums for a single file +type ChecksumInfo struct { + Size int64 + MD5 string + SHA1 string + SHA256 string +} + +// ChecksumsForFile generates size, MD5, SHA1 & SHA256 checksums for given file +func ChecksumsForFile(path string) (ChecksumInfo, error) { + file, err := os.Open(path) + if err != nil { + return ChecksumInfo{}, err + } + defer file.Close() + + w := NewChecksumWriter() + + _, err = io.Copy(w, file) + if err != nil { + return ChecksumInfo{}, err + } + + return w.Sum(), nil +} + +// ChecksumWriter is a writer that does checksum calculation on the fly passing data +// to real writer +type ChecksumWriter struct { + w io.Writer + sum ChecksumInfo + hashes []hash.Hash +} + +// Interface check +var ( + _ io.Writer = &ChecksumWriter{} +) + +// NewChecksumWriter creates checksum calculator for given writer w +func NewChecksumWriter() *ChecksumWriter { + return &ChecksumWriter{ + hashes: []hash.Hash{md5.New(), sha1.New(), sha256.New()}, + } +} + +// Write implememnts pass-through writing with checksum calculation on the fly +func (c *ChecksumWriter) Write(p []byte) (n int, err error) { + c.sum.Size += int64(len(p)) + + for _, h := range c.hashes { + h.Write(p) + } + + return len(p), nil +} + +// Sum returns caculated ChecksumInfo +func (c *ChecksumWriter) Sum() ChecksumInfo { + c.sum.MD5 = fmt.Sprintf("%x", c.hashes[0].Sum(nil)) + c.sum.SHA1 = fmt.Sprintf("%x", c.hashes[1].Sum(nil)) + c.sum.SHA256 = fmt.Sprintf("%x", c.hashes[2].Sum(nil)) + + return c.sum +} diff --git a/src/github.com/smira/aptly/utils/checksum_test.go b/src/github.com/smira/aptly/utils/checksum_test.go new file mode 100644 index 00000000..5b1cfd5c --- /dev/null +++ b/src/github.com/smira/aptly/utils/checksum_test.go @@ -0,0 +1,32 @@ +package utils + +import ( + "io/ioutil" + . "launchpad.net/gocheck" + "os" +) + +type ChecksumSuite struct { + tempfile *os.File +} + +var _ = Suite(&ChecksumSuite{}) + +func (s *ChecksumSuite) SetUpTest(c *C) { + s.tempfile, _ = ioutil.TempFile(c.MkDir(), "aptly-test") + s.tempfile.WriteString(testString) +} + +func (s *ChecksumSuite) TearDownTest(c *C) { + s.tempfile.Close() +} + +func (s *ChecksumSuite) TestChecksumsForFile(c *C) { + info, err := ChecksumsForFile(s.tempfile.Name()) + + c.Assert(err, IsNil) + c.Check(info.Size, Equals, int64(83)) + c.Check(info.MD5, Equals, "43470766afbfdca292440eecdceb80fb") + c.Check(info.SHA1, Equals, "1743f8408261b4f1eff88e0fca15a7077223fa79") + c.Check(info.SHA256, Equals, "f2775692fd3b70bd0faa4054b7afa92d427bf994cd8629741710c4864ee4dc95") +} diff --git a/src/github.com/smira/aptly/utils/compress.go b/src/github.com/smira/aptly/utils/compress.go new file mode 100644 index 00000000..1570e92c --- /dev/null +++ b/src/github.com/smira/aptly/utils/compress.go @@ -0,0 +1,33 @@ +package utils + +import ( + "compress/gzip" + "io" + "os" + "os/exec" +) + +// CompressFile compresses file specified by source to .gz & .bz2 +// +// It uses internal gzip and external bzip2, see: +// https://code.google.com/p/go/issues/detail?id=4828 +func CompressFile(source *os.File) error { + gzPath := source.Name() + ".gz" + gzFile, err := os.Create(gzPath) + if err != nil { + return err + } + defer gzFile.Close() + + gzWriter := gzip.NewWriter(gzFile) + defer gzWriter.Close() + + source.Seek(0, 0) + _, err = io.Copy(gzWriter, source) + if err != nil { + return err + } + + cmd := exec.Command("bzip2", "-k", "-f", source.Name()) + return cmd.Run() +} diff --git a/src/github.com/smira/aptly/utils/compress_test.go b/src/github.com/smira/aptly/utils/compress_test.go new file mode 100644 index 00000000..3763a167 --- /dev/null +++ b/src/github.com/smira/aptly/utils/compress_test.go @@ -0,0 +1,59 @@ +package utils + +import ( + "compress/bzip2" + "compress/gzip" + "io/ioutil" + . "launchpad.net/gocheck" + "os" +) + +type CompressSuite struct { + tempfile *os.File +} + +var _ = Suite(&CompressSuite{}) + +const testString = "Quick brown fox jumps over black dog and runs away... Really far away... who knows?" + +func (s *CompressSuite) SetUpTest(c *C) { + s.tempfile, _ = ioutil.TempFile(c.MkDir(), "aptly-test") + s.tempfile.WriteString(testString) +} + +func (s *CompressSuite) TearDownTest(c *C) { + s.tempfile.Close() +} + +func (s *CompressSuite) TestCompress(c *C) { + err := CompressFile(s.tempfile) + c.Assert(err, IsNil) + + buf := make([]byte, len(testString)) + + file, err := os.Open(s.tempfile.Name() + ".gz") + c.Assert(err, IsNil) + + gzReader, err := gzip.NewReader(file) + c.Assert(err, IsNil) + + _, err = gzReader.Read(buf) + c.Assert(err, IsNil) + + gzReader.Close() + file.Close() + + c.Check(string(buf), Equals, testString) + + file, err = os.Open(s.tempfile.Name() + ".bz2") + c.Assert(err, IsNil) + + bzReader := bzip2.NewReader(file) + + _, err = bzReader.Read(buf) + c.Assert(err, IsNil) + + file.Close() + + c.Check(string(buf), Equals, testString) +} diff --git a/src/github.com/smira/aptly/utils/config.go b/src/github.com/smira/aptly/utils/config.go new file mode 100644 index 00000000..61253a96 --- /dev/null +++ b/src/github.com/smira/aptly/utils/config.go @@ -0,0 +1,68 @@ +package utils + +import ( + "encoding/json" + "os" + "path/filepath" +) + +// ConfigStructure is structure of main configuration +type ConfigStructure struct { + RootDir string `json:"rootDir"` + DownloadConcurrency int `json:"downloadConcurrency"` + Architectures []string `json:"architectures"` + DepFollowSuggests bool `json:"dependencyFollowSuggests"` + DepFollowRecommends bool `json:"dependencyFollowRecommends"` + DepFollowAllVariants bool `json:"dependencyFollowAllVariants"` + DepFollowSource bool `json:"dependencyFollowSource"` + GpgDisableSign bool `json:"gpgDisableSign"` + GpgDisableVerify bool `json:"gpgDisableVerify"` + DownloadSourcePackages bool `json:"downloadSourcePackages"` + PpaDistributorID string `json:"ppaDistributorID"` + PpaCodename string `json:"ppaCodename"` +} + +// Config is configuration for aptly, shared by all modules +var Config = ConfigStructure{ + RootDir: filepath.Join(os.Getenv("HOME"), ".aptly"), + DownloadConcurrency: 4, + Architectures: []string{}, + DepFollowSuggests: false, + DepFollowRecommends: false, + DepFollowAllVariants: false, + DepFollowSource: false, + GpgDisableSign: false, + GpgDisableVerify: false, + DownloadSourcePackages: false, + PpaDistributorID: "ubuntu", + PpaCodename: "", +} + +// LoadConfig loads configuration from json file +func LoadConfig(filename string, config *ConfigStructure) error { + f, err := os.Open(filename) + if err != nil { + return err + } + defer f.Close() + + dec := json.NewDecoder(f) + return dec.Decode(&config) +} + +// SaveConfig write configuration to json file +func SaveConfig(filename string, config *ConfigStructure) error { + f, err := os.Create(filename) + if err != nil { + return err + } + defer f.Close() + + encoded, err := json.MarshalIndent(&config, "", " ") + if err != nil { + return err + } + + _, err = f.Write(encoded) + return err +} diff --git a/src/github.com/smira/aptly/utils/config_test.go b/src/github.com/smira/aptly/utils/config_test.go new file mode 100644 index 00000000..962a4a58 --- /dev/null +++ b/src/github.com/smira/aptly/utils/config_test.go @@ -0,0 +1,60 @@ +package utils + +import ( + . "launchpad.net/gocheck" + "os" + "path/filepath" +) + +type ConfigSuite struct { + config ConfigStructure +} + +var _ = Suite(&ConfigSuite{}) + +func (s *ConfigSuite) TestLoadConfig(c *C) { + configname := filepath.Join(c.MkDir(), "aptly.json") + f, _ := os.Create(configname) + f.WriteString(configFile) + f.Close() + + err := LoadConfig(configname, &s.config) + c.Assert(err, IsNil) + c.Check(s.config.RootDir, Equals, "/opt/aptly/") + c.Check(s.config.DownloadConcurrency, Equals, 33) +} + +func (s *ConfigSuite) TestSaveConfig(c *C) { + configname := filepath.Join(c.MkDir(), "aptly.json") + + s.config.RootDir = "/tmp/aptly" + s.config.DownloadConcurrency = 5 + + err := SaveConfig(configname, &s.config) + c.Assert(err, IsNil) + + f, _ := os.Open(configname) + defer f.Close() + + st, _ := f.Stat() + buf := make([]byte, st.Size()) + f.Read(buf) + + c.Check(string(buf), Equals, ""+ + "{\n"+ + " \"rootDir\": \"/tmp/aptly\",\n"+ + " \"downloadConcurrency\": 5,\n"+ + " \"architectures\": null,\n"+ + " \"dependencyFollowSuggests\": false,\n"+ + " \"dependencyFollowRecommends\": false,\n"+ + " \"dependencyFollowAllVariants\": false,\n"+ + " \"dependencyFollowSource\": false,\n"+ + " \"gpgDisableSign\": false,\n"+ + " \"gpgDisableVerify\": false,\n"+ + " \"downloadSourcePackages\": false,\n"+ + " \"ppaDistributorID\": \"\",\n"+ + " \"ppaCodename\": \"\"\n"+ + "}") +} + +const configFile = `{"rootDir": "/opt/aptly/", "downloadConcurrency": 33}` diff --git a/src/github.com/smira/aptly/utils/gpg.go b/src/github.com/smira/aptly/utils/gpg.go new file mode 100644 index 00000000..efe152e0 --- /dev/null +++ b/src/github.com/smira/aptly/utils/gpg.go @@ -0,0 +1,300 @@ +package utils + +import ( + "bytes" + "fmt" + "io" + "io/ioutil" + "os" + "os/exec" + "regexp" + "strings" +) + +// Signer interface describes facility implementing signing of files +type Signer interface { + Init() error + SetKey(keyRef string) + SetKeyRing(keyring, secretKeyring string) + DetachedSign(source string, destination string) error + ClearSign(source string, destination string) error +} + +// Verifier interface describes signature verification factility +type Verifier interface { + InitKeyring() error + AddKeyring(keyring string) + VerifyDetachedSignature(signature, cleartext io.Reader) error + VerifyClearsigned(clearsigned io.Reader) error + ExtractClearsigned(clearsigned io.Reader) (text *os.File, err error) +} + +// Test interface +var ( + _ Signer = &GpgSigner{} + _ Verifier = &GpgVerifier{} +) + +// GpgSigner is implementation of Signer interface using gpg +type GpgSigner struct { + keyRef string + keyring, secretKeyring string +} + +// SetKey sets key ID to use when signing files +func (g *GpgSigner) SetKey(keyRef string) { + g.keyRef = keyRef +} + +// SetKeyRing allows to set custom keyring and secretkeyring +func (g *GpgSigner) SetKeyRing(keyring, secretKeyring string) { + g.keyring, g.secretKeyring = keyring, secretKeyring +} + +func (g *GpgSigner) gpgArgs() []string { + args := []string{} + if g.keyring != "" { + args = append(args, "--no-auto-check-trustdb", "--no-default-keyring", "--keyring", g.keyring) + } + if g.secretKeyring != "" { + args = append(args, "--secret-keyring", g.secretKeyring) + } + + if g.keyRef != "" { + args = append(args, "-u", g.keyRef) + } + + return args +} + +// Init verifies availability of gpg & presence of keys +func (g *GpgSigner) Init() error { + output, err := exec.Command("gpg", "--list-keys", "--dry-run", "--no-auto-check-trustdb").CombinedOutput() + if err != nil { + return fmt.Errorf("unable to execute gpg: %s (is gpg installed?): %s", err, string(output)) + } + + if g.keyring == "" && g.secretKeyring == "" && len(output) == 0 { + return fmt.Errorf("looks like there are no keys in gpg, please create one (official manual: http://www.gnupg.org/gph/en/manual.html)") + } + + return err +} + +// DetachedSign signs file with detached signature in ASCII format +func (g *GpgSigner) DetachedSign(source string, destination string) error { + fmt.Printf("Signing file '%s' with gpg, please enter your passphrase when prompted:\n", source) + + args := []string{"-o", destination, "--armor", "--yes"} + args = append(args, g.gpgArgs()...) + args = append(args, "--detach-sign", source) + cmd := exec.Command("gpg", args...) + cmd.Stdin = os.Stdin + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + return cmd.Run() +} + +// ClearSign clear-signs the file +func (g *GpgSigner) ClearSign(source string, destination string) error { + fmt.Printf("Clearsigning file '%s' with gpg, please enter your passphrase when prompted:\n", source) + args := []string{"-o", destination, "--yes"} + args = append(args, g.gpgArgs()...) + args = append(args, "--clearsign", source) + cmd := exec.Command("gpg", args...) + cmd.Stdin = os.Stdin + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + return cmd.Run() +} + +// GpgVerifier is implementation of Verifier interface using gpgv +type GpgVerifier struct { + keyRings []string +} + +// InitKeyring verifies that gpg is installed and some keys are trusted +func (g *GpgVerifier) InitKeyring() error { + err := exec.Command("gpgv", "--version").Run() + if err != nil { + return fmt.Errorf("unable to execute gpgv: %s (is gpg installed?)", err) + } + + if len(g.keyRings) == 0 { + // using default keyring + output, err := exec.Command("gpg", "--no-default-keyring", "--no-auto-check-trustdb", "--keyring", "trustedkeys.gpg", "--list-keys").Output() + if err == nil && len(output) == 0 { + fmt.Printf("\nLooks like your keyring with trusted keys is empty. You might consider importing some keys.\n") + fmt.Printf("If you're running Debian or Ubuntu, it's a good idea to import current archive keys by running:\n\n") + fmt.Printf(" gpg --keyring /usr/share/keyrings/debian-archive-keyring.gpg --export | gpg --no-default-keyring --keyring trustedkeys.gpg --import\n") + fmt.Printf("\n(for Ubuntu, use /usr/share/keyrings/ubuntu-archive-keyring.gpg)\n\n") + } + } + + return nil +} + +// AddKeyring adds custom keyring to GPG parameters +func (g *GpgVerifier) AddKeyring(keyring string) { + g.keyRings = append(g.keyRings, keyring) +} + +func (g *GpgVerifier) argsKeyrings() (args []string) { + if len(g.keyRings) > 0 { + args = make([]string, 0, 2*len(g.keyRings)) + for _, keyring := range g.keyRings { + args = append(args, "--keyring", keyring) + } + } else { + args = []string{"--keyring", "trustedkeys.gpg"} + } + return +} + +func (g *GpgVerifier) runGpgv(args []string, context string) error { + cmd := exec.Command("gpgv", args...) + + stderr, err := cmd.StderrPipe() + if err != nil { + return err + } + defer stderr.Close() + + err = cmd.Start() + if err != nil { + return err + } + + buffer := &bytes.Buffer{} + + _, err = io.Copy(io.MultiWriter(os.Stderr, buffer), stderr) + if err != nil { + return err + } + + matches := regexp.MustCompile("ID ([0-9A-F]{8})").FindAllStringSubmatch(buffer.String(), -1) + + err = cmd.Wait() + if err != nil { + if len(g.keyRings) == 0 && len(matches) > 0 { + fmt.Printf("\nLooks like some keys are missing in your trusted keyring, you may consider importing them from keyserver:\n\n") + + keyIDs := []string{} + for _, match := range matches { + keyIDs = append(keyIDs, match[1]) + } + fmt.Printf("gpg --no-default-keyring --keyring trustedkeys.gpg --keyserver keys.gnupg.net --recv-keys %s\n\n", + strings.Join(keyIDs, " ")) + + fmt.Printf("Sometimes keys are stored in repository root in file named Release.key, to import such key:\n\n") + fmt.Printf("wget -O - http://some.repo/repository/Release.key | gpg --no-default-keyring --keyring trustedkeys.gpg --import\n\n") + } + return fmt.Errorf("verification of %s failed: %s", context, err) + } + return nil +} + +// VerifyDetachedSignature verifies combination of signature and cleartext using gpgv +func (g *GpgVerifier) VerifyDetachedSignature(signature, cleartext io.Reader) error { + args := g.argsKeyrings() + + sigf, err := ioutil.TempFile("", "aptly-gpg") + if err != nil { + return err + } + defer os.Remove(sigf.Name()) + defer sigf.Close() + + _, err = io.Copy(sigf, signature) + if err != nil { + return err + } + + clearf, err := ioutil.TempFile("", "aptly-gpg") + if err != nil { + return err + } + defer os.Remove(clearf.Name()) + defer clearf.Close() + + _, err = io.Copy(clearf, cleartext) + if err != nil { + return err + } + + args = append(args, sigf.Name(), clearf.Name()) + return g.runGpgv(args, "detached signature") +} + +// VerifyClearsigned verifies clearsigned file using gpgv +func (g *GpgVerifier) VerifyClearsigned(clearsigned io.Reader) error { + args := g.argsKeyrings() + + clearf, err := ioutil.TempFile("", "aptly-gpg") + if err != nil { + return err + } + defer os.Remove(clearf.Name()) + defer clearf.Close() + + _, err = io.Copy(clearf, clearsigned) + if err != nil { + return err + } + + args = append(args, clearf.Name()) + return g.runGpgv(args, "clearsigned file") +} + +// ExtractClearsigned extracts cleartext from clearsigned file WITHOUT signature verification +func (g *GpgVerifier) ExtractClearsigned(clearsigned io.Reader) (text *os.File, err error) { + clearf, err := ioutil.TempFile("", "aptly-gpg") + if err != nil { + return + } + defer os.Remove(clearf.Name()) + defer clearf.Close() + + _, err = io.Copy(clearf, clearsigned) + if err != nil { + return + } + + text, err = ioutil.TempFile("", "aptly-gpg") + if err != nil { + return + } + defer os.Remove(text.Name()) + + args := []string{"--no-auto-check-trustdb", "--decrypt", "--batch", "--skip-verify", "--output", "-", clearf.Name()} + + cmd := exec.Command("gpg", args...) + stdout, err := cmd.StdoutPipe() + if err != nil { + return nil, err + } + defer stdout.Close() + + err = cmd.Start() + if err != nil { + return nil, err + } + + _, err = io.Copy(text, stdout) + if err != nil { + return nil, err + } + + err = cmd.Wait() + + if err != nil { + return nil, fmt.Errorf("extraction of clearsigned file failed: %s", err) + } + + _, err = text.Seek(0, 0) + if err != nil { + return nil, err + } + + return +} diff --git a/src/github.com/smira/aptly/utils/human.go b/src/github.com/smira/aptly/utils/human.go new file mode 100644 index 00000000..8f2eeaff --- /dev/null +++ b/src/github.com/smira/aptly/utils/human.go @@ -0,0 +1,22 @@ +package utils + +import ( + "fmt" +) + +// HumanBytes converts bytes to human readable string +func HumanBytes(i int64) (result string) { + switch { + case i > (512 * 1024 * 1024 * 1024): + result = fmt.Sprintf("%#.02f TiB", float64(i)/1024/1024/1024/1024) + case i > (512 * 1024 * 1024): + result = fmt.Sprintf("%#.02f GiB", float64(i)/1024/1024/1024) + case i > (512 * 1024): + result = fmt.Sprintf("%#.02f MiB", float64(i)/1024/1024) + case i > 512: + result = fmt.Sprintf("%#.02f KiB", float64(i)/1024) + default: + result = fmt.Sprintf("%d B", i) + } + return +} diff --git a/src/github.com/smira/aptly/utils/human_test.go b/src/github.com/smira/aptly/utils/human_test.go new file mode 100644 index 00000000..3be6d385 --- /dev/null +++ b/src/github.com/smira/aptly/utils/human_test.go @@ -0,0 +1,21 @@ +package utils + +import ( + . "launchpad.net/gocheck" +) + +type HumanSuite struct{} + +var _ = Suite(&HumanSuite{}) + +func (s *HumanSuite) TestHumanBytes(c *C) { + c.Check(HumanBytes(50), Equals, "50 B") + c.Check(HumanBytes(968), Equals, "0.95 KiB") + c.Check(HumanBytes(20480), Equals, "20.00 KiB") + c.Check(HumanBytes(700480), Equals, "0.67 MiB") + c.Check(HumanBytes(7000480), Equals, "6.68 MiB") + c.Check(HumanBytes(824000480), Equals, "0.77 GiB") + c.Check(HumanBytes(82400000480), Equals, "76.74 GiB") + c.Check(HumanBytes(824000000480), Equals, "0.75 TiB") + c.Check(HumanBytes(824000000000480), Equals, "749.42 TiB") +} diff --git a/src/github.com/smira/aptly/utils/list.go b/src/github.com/smira/aptly/utils/list.go new file mode 100644 index 00000000..86891501 --- /dev/null +++ b/src/github.com/smira/aptly/utils/list.go @@ -0,0 +1,140 @@ +package utils + +import ( + "fmt" + "sort" +) + +// StringsIsSubset checks that subset is strict subset of full, and returns +// error formatted with errorFmt otherwise +func StringsIsSubset(subset, full []string, errorFmt string) error { + for _, checked := range subset { + found := false + for _, s := range full { + if checked == s { + found = true + break + } + } + if !found { + return fmt.Errorf(errorFmt, checked) + } + } + return nil +} + +// StrSlicesEqual compares two slices for equality +func StrSlicesEqual(s1, s2 []string) bool { + if len(s1) != len(s2) { + return false + } + + for i, s := range s1 { + if s != s2[i] { + return false + } + } + + return true +} + +// StrMapsEqual compares two map[string]string +func StrMapsEqual(m1, m2 map[string]string) bool { + if len(m1) != len(m2) { + return false + } + + for k, v := range m1 { + v2, ok := m2[k] + if !ok || v != v2 { + return false + } + } + + return true +} + +// StrSliceHasItem checks item for presence in slice +func StrSliceHasItem(s []string, item string) bool { + for _, v := range s { + if v == item { + return true + } + } + return false +} + +// StrMapSortedKeys returns keys of map[string]string sorted +func StrMapSortedKeys(m map[string]string) []string { + keys := make([]string, len(m)) + i := 0 + for k := range m { + keys[i] = k + i++ + } + sort.Strings(keys) + return keys +} + +// StrSliceDeduplicate removes dups in slice +func StrSliceDeduplicate(s []string) []string { + l := len(s) + if l < 2 { + return s + } + if l == 2 { + if s[0] == s[1] { + return s[0:1] + } + return s + } + + found := make(map[string]bool, l) + j := 0 + for i, x := range s { + if !found[x] { + found[x] = true + s[j] = s[i] + j++ + } + } + + return s[:j] +} + +// StrSlicesSubstract finds all the strings which are in l but not in r, both slices shoult be sorted +func StrSlicesSubstract(l, r []string) []string { + result := make([]string, 0) + + // pointer to left and right reflists + il, ir := 0, 0 + // length of reflists + ll, lr := len(l), len(r) + + for il < ll || ir < lr { + if il == ll { + // left list exhausted, we got the result + break + } + if ir == lr { + // right list exhausted, append what is left to result + result = append(result, l[il:]...) + break + } + + if l[il] == r[ir] { + // r contains entry from l, so we skip it + il++ + ir++ + } else if l[il] < r[ir] { + // item il is not in r, append + result = append(result, l[il]) + il++ + } else { + // skip over to next item in r + ir++ + } + } + + return result +} diff --git a/src/github.com/smira/aptly/utils/list_test.go b/src/github.com/smira/aptly/utils/list_test.go new file mode 100644 index 00000000..f8165555 --- /dev/null +++ b/src/github.com/smira/aptly/utils/list_test.go @@ -0,0 +1,74 @@ +package utils + +import ( + . "launchpad.net/gocheck" +) + +type ListSuite struct { +} + +var _ = Suite(&ListSuite{}) + +func (s *ListSuite) TestStringsIsSubset(c *C) { + err := StringsIsSubset([]string{"a", "b"}, []string{"a", "b", "c"}, "[%s]") + c.Assert(err, IsNil) + + err = StringsIsSubset([]string{"b", "a"}, []string{"b", "c"}, "[%s]") + c.Assert(err, ErrorMatches, "\\[a\\]") +} + +func (s *ListSuite) TestStrSlicesEqual(c *C) { + c.Check(StrSlicesEqual(nil, nil), Equals, true) + c.Check(StrSlicesEqual(nil, []string{}), Equals, true) + c.Check(StrSlicesEqual([]string{}, nil), Equals, true) + c.Check(StrSlicesEqual([]string{"a", "b"}, []string{"a", "b"}), Equals, true) + + c.Check(StrSlicesEqual(nil, []string{"a"}), Equals, false) + c.Check(StrSlicesEqual([]string{"a", "c"}, []string{"a", "b"}), Equals, false) +} + +func (s *ListSuite) TestStrMapsEqual(c *C) { + c.Check(StrMapsEqual(map[string]string{}, nil), Equals, true) + c.Check(StrMapsEqual(nil, map[string]string{}), Equals, true) + c.Check(StrMapsEqual(nil, nil), Equals, true) + c.Check(StrMapsEqual(map[string]string{"a": "1", "b": "2"}, map[string]string{"a": "1", "b": "2"}), Equals, true) + + c.Check(StrMapsEqual(map[string]string{"a": "1", "b": "2"}, map[string]string{"a": "1", "b": "3"}), Equals, false) + c.Check(StrMapsEqual(map[string]string{"a": "1", "b": "2"}, map[string]string{"a": "1", "c": "2"}), Equals, false) + c.Check(StrMapsEqual(map[string]string{"a": "1", "b": "2"}, map[string]string{"a": "1"}), Equals, false) +} + +func (s *ListSuite) TestStrSliceHasIteml(c *C) { + c.Check(StrSliceHasItem([]string{"a", "b"}, "b"), Equals, true) + c.Check(StrSliceHasItem([]string{"a", "b"}, "c"), Equals, false) +} + +func (s *ListSuite) TestStrMapSortedKeys(c *C) { + c.Check(StrMapSortedKeys(map[string]string{}), DeepEquals, []string{}) + c.Check(StrMapSortedKeys(map[string]string{"x": "1", "a": "3", "y": "4"}), DeepEquals, []string{"a", "x", "y"}) +} + +func (s *ListSuite) TestStrSliceDeduplicate(c *C) { + c.Check(StrSliceDeduplicate([]string{}), DeepEquals, []string{}) + c.Check(StrSliceDeduplicate([]string{"a"}), DeepEquals, []string{"a"}) + c.Check(StrSliceDeduplicate([]string{"a", "b"}), DeepEquals, []string{"a", "b"}) + c.Check(StrSliceDeduplicate([]string{"a", "a"}), DeepEquals, []string{"a"}) + c.Check(StrSliceDeduplicate([]string{"a", "b", "c", "a", "a", "b"}), DeepEquals, []string{"a", "b", "c"}) + c.Check(StrSliceDeduplicate([]string{"a", "b", "c", "d", "e", "f"}), DeepEquals, []string{"a", "b", "c", "d", "e", "f"}) +} + +func (s *ListSuite) TestStrSlicesSubstract(c *C) { + empty := []string{} + l1 := []string{"r1", "r2", "r3", "r4"} + l2 := []string{"r1", "r3"} + l3 := []string{"r2", "r4"} + l4 := []string{"r4", "r5"} + l5 := []string{"r1", "r2", "r3"} + + c.Check(StrSlicesSubstract(l1, empty), DeepEquals, l1) + c.Check(StrSlicesSubstract(l1, l2), DeepEquals, l3) + c.Check(StrSlicesSubstract(l1, l3), DeepEquals, l2) + c.Check(StrSlicesSubstract(l1, l4), DeepEquals, l5) + c.Check(StrSlicesSubstract(empty, l1), DeepEquals, empty) + c.Check(StrSlicesSubstract(l2, l3), DeepEquals, l2) +} diff --git a/src/github.com/smira/aptly/utils/utils.go b/src/github.com/smira/aptly/utils/utils.go new file mode 100644 index 00000000..d4d17a23 --- /dev/null +++ b/src/github.com/smira/aptly/utils/utils.go @@ -0,0 +1,2 @@ +// Package utils collects various services: simple operations, compression, etc. +package utils diff --git a/src/github.com/smira/aptly/utils/utils_test.go b/src/github.com/smira/aptly/utils/utils_test.go new file mode 100644 index 00000000..164a64ef --- /dev/null +++ b/src/github.com/smira/aptly/utils/utils_test.go @@ -0,0 +1,11 @@ +package utils + +import ( + . "launchpad.net/gocheck" + "testing" +) + +// Launch gocheck tests +func Test(t *testing.T) { + TestingT(t) +}